commit 178416acce7fd43a0c918c61041db0703cbf84f5 Author: Relationship <139162359+Relationship-OctoWoW@users.noreply.github.com> Date: Mon Jul 13 13:14:55 2026 +0100 Add files via upload diff --git a/RelationshipsQuestAndItemBrowser.lua b/RelationshipsQuestAndItemBrowser.lua new file mode 100644 index 0000000..4e78aa5 --- /dev/null +++ b/RelationshipsQuestAndItemBrowser.lua @@ -0,0 +1,2618 @@ +-- Relationships Quest And Item Browser + +local RelationshipsQuestAndItemBrowser = CreateFrame("Frame", "RelationshipsQuestAndItemBrowserCore") +RelationshipsQuestAndItemBrowser:RegisterEvent("PLAYER_LOGIN") +RelationshipsQuestAndItemBrowser:RegisterEvent("ADDON_LOADED") +RelationshipsQuestAndItemBrowser:RegisterEvent("PLAYER_LOGOUT") + +RelationshipsQuestAndItemBrowserDB = RelationshipsQuestAndItemBrowserDB or {} + +local RQL_ORIGINAL_SET_ITEM_REF = nil +local RQL_ORIGINAL_CHAT_HYPERLINK_SHOW = nil +local RQL_INDEX_READY = nil +local RQL_SEARCH_RESULTS = {} +local RQL_SELECTED_QUEST_ID = nil +local RQL_MODE = "browser" +local RQL_SEARCH_TEXT = "" +local RQL_LEVEL_FILTER = 0 +local RQL_TYPE_FILTER = 0 +local RQL_FACTION_FILTER = 0 +local RQL_SOURCE_FILTER = 0 +local RQL_MAX_RESULTS = 5000 +local RQL_ROWS_VISIBLE = 16 +local RQL_ROW_HEIGHT = 20 +local RQL_PAGE = 1 +local RQL_DEFAULT_BACKGROUND = "Light Sepia" +local RQL_SUPPRESS_SETITEMREF_ROUTE = nil +local RQL_SUPPRESS_CHATFRAME_ROUTE = nil + +local function RQL_GetStartupBackground() + local saved = RelationshipsQuestAndItemBrowserDB and RelationshipsQuestAndItemBrowserDB.bgColor + if saved and saved ~= "" then return saved end + return RQL_DEFAULT_BACKGROUND +end + +-- Item browser state (Item tab) +local RQL_TAB = "quests" -- "quests" | "items" +local RQL_ITEM_SEARCH_TEXT = "" +local RQL_ITEM_SOURCE_FILTER = 0 +local RQL_ITEM_SEARCH_RESULTS = {} +local RQL_ITEM_INDEX_READY = nil +local RQL_ITEM_PAGE = 1 +local RQL_SELECTED_ITEM_ID = nil + +local RQL_LEVELS = { + "All levels", "1-9", "10-19", "20-29", "30-39", "40-49", "50-59", "60+" +} +local RQL_TYPES = { + "All types", "Normal", "Elite/Group", "Dungeon/Raid", "PvP", "Class", "Profession", "Seasonal/Event" +} +local RQL_FACTIONS = { "All factions", "Alliance", "Horde", "Neutral/Both" } +local RQL_SOURCES = { "All sources", "Vanilla", "Turtle/OctoWoW" } + +-- --------------------------------------------------------------------------- +-- Dungeon / Raid classification +-- --------------------------------------------------------------------------- +-- Keyword-based detection is far more reliable than zone-id lookups because +-- pfQuest coord data for dungeon quests is inconsistent, and Turtle/OctoWoW +-- adds new dungeons/raids that aren't in vanilla's AreaTable at all. +-- +-- A quest is considered Dungeon/Raid if its title, objective text or +-- description contains any of these keywords. Keywords are matched with +-- plain (non-pattern) string.find and are lower-case. +-- +-- Sources: Wowhead Classic dungeon/raid quest lists, the Turtle WoW wiki +-- (turtle-wow.fandom.com) custom dungeon/raid pages, and OctoWoW patch notes. +local RQL_DUNGEON_KEYWORDS = { + -- Vanilla dungeons + "ragefire chasm", + "wailing caverns", + "the deadmines", "deadmines", + "shadowfang keep", + "blackfathom deeps", + "the stockade", "the stockades", "stormwind stockade", + "gnomeregan", + "razorfen kraul", + "razorfen downs", + "scarlet monastery", + "uldaman", + "zul'farrak", "zulfarrak", "zul\'farrak", + "maraudon", + "sunken temple", "temple of atal'hakkar", "atal\'hakkar", "atalhakkar", + "blackrock depths", + "lower blackrock spire", "upper blackrock spire", "blackrock spire", "lbrs", "ubrs", + "dire maul", + "stratholme", + "scholomance", + -- Vanilla raids + "molten core", + "onyxia's lair", "onyxia\'s lair", "onyxias lair", "lair of onyxia", + "blackwing lair", "nefarian", + "zul'gurub", "zul\'gurub", "zulgurub", + "ruins of ahn'qiraj", "ruins of ahn\'qiraj", "aq20", + "temple of ahn'qiraj", "temple of ahn\'qiraj", "aq40", "ahn'qiraj", "ahn\'qiraj", + "naxxramas", + -- Turtle WoW / OctoWoW dungeons & raids + "emerald sanctum", + "karazhan crypt", "karazhan halls", "lower karazhan", "upper karazhan", "karazhan", + "hateforge quarry", "hateforge", + "gilneas city", "gilneas", + "stormwind vault", + "crescent grove", + "black morass", + "caverns of time", + "tower of karazhan", + "kara10", "kara40", +} + +-- ---------- helpers ---------- + +local function RQL_TableSize(t) + local n = 0 + if type(t) == "table" then for _ in pairs(t) do n = n + 1 end end + return n +end + +local function RQL_GetDB(section, key) + if RelationshipsQuestAndItemBrowserData and RelationshipsQuestAndItemBrowserData[section] then + return RelationshipsQuestAndItemBrowserData[section][key] + end + return nil +end + +local function RQL_PatchTable(base, diff) + if type(diff) ~= "table" then return base end + if type(base) ~= "table" then base = {} end + for k, v in pairs(diff) do + if type(v) == "string" and v == "_" then + base[k] = nil + elseif type(v) == "table" and type(base[k]) == "table" then + RQL_PatchTable(base[k], v) + else + base[k] = v + end + end + return base +end + +local function RQL_CopyTable(source) + local dest = {} + if type(source) ~= "table" then return dest end + for k, v in pairs(source) do + if type(v) == "table" then dest[k] = RQL_CopyTable(v) else dest[k] = v end + end + return dest +end + +local function RQL_CleanText(text) + if not text then return "" end + text = tostring(text) + text = string.gsub(text, "%$B", "\n") + text = string.gsub(text, "%$N", UnitName("player") or "player") + text = string.gsub(text, "%$C", UnitClass("player") or "class") + text = string.gsub(text, "%$R", UnitRace("player") or "race") + text = string.gsub(text, "%$G([^:;]*):([^;]*);", "%1/%2") + text = string.gsub(text, "%$T", "") + text = string.gsub(text, "\\'", "'") + text = string.gsub(text, '\\"', '"') + return text +end + +local function RQL_ParseQuestLink(link) + if not link then return nil end + local _, _, qid, qlevel, qname = string.find(link, "quest:(%d+):([%-%d]*)|h%[(.-)%]|h") + if qid then return tonumber(qid), tonumber(qlevel) or 0, qname end + _, _, qid = string.find(link, "quest:(%d+)") + if qid then return tonumber(qid), 0, nil end + return nil +end + +local function RQL_ColorByLevel(questLevel) + if not questLevel or questLevel == 0 then return "|cFFFFFFFF" end + local playerLevel = UnitLevel("player") or 1 + local diff = questLevel - playerLevel + if diff >= 5 then return "|cFFFF0000" + elseif diff >= 3 then return "|cFFFF8040" + elseif diff >= -2 then return "|cFFFFFF00" + elseif diff >= -4 then return "|cFF40BF40" end + return "|cFF808080" +end + +local function RQL_EntryIsDeleted(v) + return type(v) == "string" and v == "_" +end + +-- Detect dev/test/unused quest titles that should not appear in the browser. +local function RQL_IsDevQuestTitle(title) + if not title or title == "" then return 1 end + local low = string.lower(title) + if string.find(low, "%[dep%]", 1) then return 1 end + if string.find(low, "%[dev%]", 1) then return 1 end + if string.find(low, "%[nyi%]", 1) then return 1 end + if string.find(low, "%[phase", 1) then return 1 end + if string.find(low, "%(dev%)", 1) then return 1 end + if string.find(low, "%(test%)", 1) then return 1 end + if string.find(low, "test quest", 1, true) then return 1 end + if string.find(low, "internal", 1, true) then return 1 end + if string.find(low, "unused", 1, true) then return 1 end + if string.find(low, "deprecated", 1, true) then return 1 end + if string.find(low, "placeholder", 1, true) then return 1 end + if string.find(low, "^qa ", 1) then return 1 end + if string.find(low, "^gm ", 1) then return 1 end + if string.find(low, "do not use", 1, true) then return 1 end + if string.find(low, "debug", 1, true) then return 1 end + if title == "NYI" or title == "TEST" or title == "OLD" then return 1 end + return nil +end + +local function RQL_GetQuestLocale(id) + local vanilla = RQL_GetDB("quests", "enUS") + local turtle = RQL_GetDB("quests", "enUS-turtle") + local base = nil + if vanilla and type(vanilla[id]) == "table" then base = RQL_CopyTable(vanilla[id]) end + if turtle then + local tv = turtle[id] + if RQL_EntryIsDeleted(tv) then base = nil + elseif type(tv) == "table" then base = RQL_PatchTable(base, tv) end + end + return base +end + +local function RQL_GetQuestMeta(id) + local vanilla = RQL_GetDB("quests", "data") + local turtle = RQL_GetDB("quests", "data-turtle") + local base = nil + if vanilla and type(vanilla[id]) == "table" then base = RQL_CopyTable(vanilla[id]) end + if turtle then + local tv = turtle[id] + if RQL_EntryIsDeleted(tv) then base = nil + elseif type(tv) == "table" then base = RQL_PatchTable(base, tv) end + end + return base +end + +local function RQL_GetName(section, id) + local vanilla = RQL_GetDB(section, "enUS") + local turtle = RQL_GetDB(section, "enUS-turtle") + local name = nil + if vanilla and vanilla[id] and vanilla[id] ~= "_" then name = vanilla[id] end + if turtle and turtle[id] then + if turtle[id] == "_" then name = nil else name = turtle[id] end + end + if type(name) ~= "string" then return nil end + return name +end + +local function RQL_GetData(section, id) + local vanilla = RQL_GetDB(section, "data") + local turtle = RQL_GetDB(section, "data-turtle") + local base = nil + if vanilla and type(vanilla[id]) == "table" then base = RQL_CopyTable(vanilla[id]) end + if turtle then + local tv = turtle[id] + if RQL_EntryIsDeleted(tv) then base = nil + elseif type(tv) == "table" then base = RQL_PatchTable(base, tv) end + end + return base +end + +local function RQL_GetZoneName(zoneId) + if not zoneId then return "Unknown zone" end + return RQL_GetName("zones", zoneId) or ("Zone #" .. zoneId) +end + +local function RQL_GetFirstCoord(section, id) + local data = RQL_GetData(section, id) + if data and type(data.coords) == "table" then + for _, coord in pairs(data.coords) do + if type(coord) == "table" and coord[1] and coord[2] and coord[3] then + return coord[1], coord[2], coord[3] + end + end + end + return nil +end + +local function RQL_FormatCoord(section, id) + local x, y, zone = RQL_GetFirstCoord(section, id) + if x and y and zone then + return RQL_GetZoneName(zone) .. " " .. string.format("%.1f, %.1f", x, y) + end + return "Location unknown" +end + +local function RQL_FormatEntityLines(section, ids, limit) + local out = {} + if type(ids) ~= "table" then return out end + local count = 0 + local shown = 0 + for _, id in pairs(ids) do + count = count + 1 + if shown < (limit or 12) then + shown = shown + 1 + local prefix + if section == "units" then prefix = "NPC #" + elseif section == "objects" then prefix = "Object #" + else prefix = "Item #" end + local name = RQL_GetName(section, id) or (prefix .. id) + local coord = "" + if section == "units" or section == "objects" then + coord = " |cFF808080" .. RQL_FormatCoord(section, id) .. "|r" + end + table.insert(out, " |cFFFFFFFF" .. name .. "|r|cFF808080 (" .. id .. ")|r" .. coord) + end + end + if count > shown then + table.insert(out, " |cFF808080...and " .. (count - shown) .. " more.|r") + end + return out +end + +local function RQL_GetQuestSource(id) + local turtleLocale = RQL_GetDB("quests", "enUS-turtle") + local turtleData = RQL_GetDB("quests", "data-turtle") + if (turtleLocale and type(turtleLocale[id]) == "table") or (turtleData and type(turtleData[id]) == "table") then + return "Turtle/OctoWoW" + end + return "Vanilla" +end + +-- Text-based dungeon detection: check title / objective / description +-- against a curated keyword list covering every vanilla dungeon + raid +-- and every Turtle/OctoWoW custom dungeon/raid. +local function RQL_TextMentionsDungeon(searchable) + if not searchable or searchable == "" then return nil end + for _, kw in ipairs(RQL_DUNGEON_KEYWORDS) do + if string.find(searchable, kw, 1, true) then return 1 end + end + return nil +end + +local function RQL_GetQuestFlags(id, meta) + local flags = {} + local isElite, isDungeon, isPvp, isClass, isProfession, isEvent = nil,nil,nil,nil,nil,nil + if meta then + if meta.class then isClass = 1 end + if meta.skill then isProfession = 1 end + if meta.event then isEvent = 1 end + local function checkUnits(ids) + if type(ids) ~= "table" then return end + for _, uid in pairs(ids) do + local u = RQL_GetData("units", uid) + if u and u.rnk and tonumber(u.rnk) and tonumber(u.rnk) >= 1 then isElite = 1 end + end + end + if type(meta.start) == "table" then checkUnits(meta.start.U) end + if type(meta["end"]) == "table" then checkUnits(meta["end"].U) end + if type(meta.obj) == "table" then checkUnits(meta.obj.U) end + end + + -- Text search over title + objectives + description for PvP/dungeon + local loc = RQL_GetQuestLocale(id) + local searchable = "" + if loc then + searchable = string.lower((loc.T or "") .. " " .. (loc.O or "") .. " " .. (loc.D or "")) + end + if string.find(searchable, "warsong gulch", 1, true) + or string.find(searchable, "arathi basin", 1, true) + or string.find(searchable, "alterac valley", 1, true) + or string.find(searchable, "battleground", 1, true) then + isPvp = 1 + end + if RQL_TextMentionsDungeon(searchable) then + isDungeon = 1 + end + + -- PvP wins over Dungeon (Alterac Valley grave quests etc. are PvP) + if isPvp then isDungeon = nil end + + if isDungeon then table.insert(flags, "Dungeon/Raid") end + if isElite and not isDungeon then table.insert(flags, "Elite/Group") end + if isPvp then table.insert(flags, "PvP") end + if isClass then table.insert(flags, "Class") end + if isProfession then table.insert(flags, "Profession") end + if isEvent then table.insert(flags, "Event") end + if table.getn(flags) == 0 then table.insert(flags, "Normal") end + return flags, isElite, isDungeon, isPvp, isClass, isProfession, isEvent +end + +local function RQL_JoinFlags(flags) + local text = "" + for _, value in ipairs(flags) do + if text ~= "" then text = text .. ", " end + text = text .. value + end + return text +end + +local function RQL_GetFaction(meta) + if not meta or not meta.race then return "Neutral/Both" end + local race = tonumber(meta.race) or 0 + local ALLIANCE = 77 + local HORDE = 178 + if race == ALLIANCE then return "Alliance" end + if race == HORDE then return "Horde" end + if race == (ALLIANCE + HORDE) or race == 255 then return "Neutral/Both" end + return "Faction/race locked" +end + +local function RQL_GetQuestData(id, linkLevel, linkName) + local locale = RQL_GetQuestLocale(id) + local meta = RQL_GetQuestMeta(id) + local data = {} + data.id = id + data.title = linkName or (locale and locale.T) or ("Quest #" .. id) + data.objectives = locale and locale.O or nil + data.description = locale and locale.D or nil + data.level = (meta and meta.lvl) or linkLevel or 0 + data.min = (meta and meta.min) or 0 + data.meta = meta + data.locale = locale + data.source = RQL_GetQuestSource(id) + data.flags = RQL_GetQuestFlags(id, meta) + data.faction = RQL_GetFaction(meta) + return data +end + +-- ---------- indexing / filtering ---------- + +local function RQL_IndexQuests() + if RQL_INDEX_READY then return end + RQL_INDEX_READY = {} + local vanilla = RQL_GetDB("quests", "enUS") or {} + local turtle = RQL_GetDB("quests", "enUS-turtle") or {} + local ids = {} + for id, v in pairs(vanilla) do if type(v) == "table" then ids[id] = 1 end end + for id, v in pairs(turtle) do if type(v) == "table" then ids[id] = 1 end end + for id in pairs(ids) do + local loc = RQL_GetQuestLocale(id) + local meta = RQL_GetQuestMeta(id) + if loc and loc.T and loc.T ~= "_" then + local title = RQL_CleanText(loc.T) + if not RQL_IsDevQuestTitle(title) then + local obj = RQL_CleanText(loc.O or "") + local flags, isElite, isDungeon, isPvp, isClass, isProfession, isEvent = RQL_GetQuestFlags(id, meta) + table.insert(RQL_INDEX_READY, { + id = id, title = title, + lower = string.lower(title .. " " .. obj .. " " .. id), + level = (meta and meta.lvl) or 0, + min = (meta and meta.min) or 0, + flags = flags, + faction = RQL_GetFaction(meta), + source = RQL_GetQuestSource(id), + isElite = isElite, isDungeon = isDungeon, isPvp = isPvp, + isClass = isClass, isProfession = isProfession, isEvent = isEvent + }) + end + end + end + table.sort(RQL_INDEX_READY, function(a, b) + if a.level == b.level then return a.title < b.title end + return a.level < b.level + end) +end + +local function RQL_LevelMatches(level) + if RQL_LEVEL_FILTER == 0 then return 1 end + level = tonumber(level) or 0 + if RQL_LEVEL_FILTER == 1 then return level >= 1 and level <= 9 end + if RQL_LEVEL_FILTER == 2 then return level >= 10 and level <= 19 end + if RQL_LEVEL_FILTER == 3 then return level >= 20 and level <= 29 end + if RQL_LEVEL_FILTER == 4 then return level >= 30 and level <= 39 end + if RQL_LEVEL_FILTER == 5 then return level >= 40 and level <= 49 end + if RQL_LEVEL_FILTER == 6 then return level >= 50 and level <= 59 end + if RQL_LEVEL_FILTER == 7 then return level >= 60 end + return 1 +end + +local function RQL_TypeMatches(row) + if RQL_TYPE_FILTER == 0 then return 1 end + if RQL_TYPE_FILTER == 1 then return not row.isElite and not row.isDungeon and not row.isPvp and not row.isClass and not row.isProfession and not row.isEvent end + if RQL_TYPE_FILTER == 2 then return row.isElite and not row.isDungeon end + if RQL_TYPE_FILTER == 3 then return row.isDungeon end + if RQL_TYPE_FILTER == 4 then return row.isPvp end + if RQL_TYPE_FILTER == 5 then return row.isClass end + if RQL_TYPE_FILTER == 6 then return row.isProfession end + if RQL_TYPE_FILTER == 7 then return row.isEvent end + return 1 +end + +local function RQL_FactionMatches(row) + if RQL_FACTION_FILTER == 0 then return 1 end + if RQL_FACTION_FILTER == 1 then return row.faction == "Alliance" or row.faction == "Neutral/Both" end + if RQL_FACTION_FILTER == 2 then return row.faction == "Horde" or row.faction == "Neutral/Both" end + if RQL_FACTION_FILTER == 3 then return row.faction == "Neutral/Both" end + return 1 +end + +local function RQL_SourceMatches(row) + if RQL_SOURCE_FILTER == 0 then return 1 end + if RQL_SOURCE_FILTER == 1 then return row.source == "Vanilla" end + if RQL_SOURCE_FILTER == 2 then return row.source == "Turtle/OctoWoW" end + return 1 +end + +local function RQL_SearchQuests() + RQL_IndexQuests() + RQL_SEARCH_RESULTS = {} + local query = string.lower(RQL_SEARCH_TEXT or "") + for _, row in ipairs(RQL_INDEX_READY) do + if (query == "" or string.find(row.lower, query, 1, true)) + and RQL_LevelMatches(row.level) and RQL_TypeMatches(row) + and RQL_FactionMatches(row) and RQL_SourceMatches(row) then + table.insert(RQL_SEARCH_RESULTS, row) + if table.getn(RQL_SEARCH_RESULTS) >= RQL_MAX_RESULTS then break end + end + end + RQL_PAGE = 1 +end + + +local RQL_UI = RQL_UI or {} +-- ---------- Item metadata / tooltip scanner ---------- +-- Vanilla 1.12: GetItemInfo returns name, link, quality, minLevel, itemType, +-- itemSubType, maxStack, itemEquipLoc, itemTexture. Uncached items return nil; +-- probing via a hidden tooltip warms the client-side cache. +local RQL_ITEM_META_CACHE = {} + +local function RQL_EnsureScanTip() + if not RQL_UI.scanTip then + RQL_UI.scanTip = CreateFrame("GameTooltip", "RelationshipsQuestAndItemBrowserScanTip", UIParent, "GameTooltipTemplate") + end + -- IMPORTANT: re-owner every call. In 1.12 a GameTooltip that has been + -- hidden / cleared returns 0 lines from SetHyperlink until SetOwner runs + -- again, which was the root cause of "item details never show" even after + -- the client had cached the item. + RQL_UI.scanTip:SetOwner(UIParent, "ANCHOR_NONE") + return RQL_UI.scanTip +end + +local RQL_QUALITY_HEX = { + [0] = "|cff9d9d9d", [1] = "|cffffffff", [2] = "|cff1eff00", + [3] = "|cff0070dd", [4] = "|cffa335ee", [5] = "|cffff8000", + [6] = "|cffe6cc80", [7] = "|cffe6cc80", +} + +local function RQL_GetItemMeta(id) + if not id then return nil end + local cached = RQL_ITEM_META_CACHE[id] + if cached and cached.name then return cached end + -- Warm the cache via the scanning tooltip. + local tip = RQL_EnsureScanTip() + tip:ClearLines() + tip:SetHyperlink("item:" .. id .. ":0:0:0") + + -- GetItemInfo return order differs across 1.12-based clients: + -- * Vanilla 1.12 (9 values): + -- name, link, quality, minLevel, iType, iSubType, stack, equipLoc, texture + -- * Turtle / OctoWoW / TBC-onward (10 values, adds iLevel): + -- name, link, quality, iLevel, minLevel, iType, iSubType, stack, equipLoc, texture + -- If we blindly unpack 10 vars on a 9-value client, every field after + -- `quality` shifts left by one and `texture` receives `equipLoc` + -- (e.g. "INVTYPE_WEAPON"), which SetTexture renders as the red "?" + -- placeholder. Detect the shape from the last argument instead. + local r1, r2, r3, r4, r5, r6, r7, r8, r9, r10 = GetItemInfo(id) + local name, link, quality = r1, r2, r3 + if not name then + if not cached then RQL_ITEM_META_CACHE[id] = { pending = 1 } end + return RQL_ITEM_META_CACHE[id] + end + local function RQL_IsTexturePath(v) + if type(v) ~= "string" then return nil end + if string.find(v, "\\") then return 1 end + local lv = string.lower(v) + if string.find(lv, "^interface") then return 1 end + return nil + end + local minLevel, iType, iSubType, maxStack, equipLoc, texture + if RQL_IsTexturePath(r10) then + -- 10-value form (has iLevel we don't need) + minLevel, iType, iSubType, maxStack, equipLoc, texture = r5, r6, r7, r8, r9, r10 + elseif RQL_IsTexturePath(r9) then + -- 9-value vanilla form + minLevel, iType, iSubType, maxStack, equipLoc, texture = r4, r5, r6, r7, r8, r9 + else + -- Unknown shape: prefer 9-value defaults, leave texture nil so the + -- caller falls back to the question-mark placeholder. + minLevel, iType, iSubType, maxStack, equipLoc = r4, r5, r6, r7, r8 + texture = nil + end + if texture and not RQL_IsTexturePath(texture) then texture = nil end + local m = { + name = name, link = link, quality = quality or 1, + minLevel = minLevel or 0, iType = iType, iSubType = iSubType, + equipLoc = equipLoc, texture = texture, + } + RQL_ITEM_META_CACHE[id] = m + return m +end + +local function RQL_ScanItemTooltipLines(id) + local tip = RQL_EnsureScanTip() + tip:ClearLines() + tip:SetHyperlink("item:" .. id .. ":0:0:0") + local n = tip:NumLines() or 0 + local out = {} + -- We already display the weapon/armor subtype ("Axe", "Bow", ...) in + -- the meta header line, and vanilla renders that same word on the right + -- side of the slot line AND the "Binds when picked up/equipped" line. + -- Without suppression the panel reads: "Binds when picked up Axe" and + -- "Two-Hand Bow" on every weapon, which duplicates the header. + -- + -- Suppress when the right-side text matches meta.iSubType / meta.iType + -- (case-insensitive) OR any known weapon/armor subtype word, so it works + -- even when the meta cache hasn't populated yet on the first scan. + local meta = RQL_ITEM_META_CACHE[id] + local dupA = meta and meta.iSubType or nil + local dupB = meta and meta.iType or nil + local dupSet = { + ["axe"]=1,["axes"]=1,["bow"]=1,["bows"]=1,["gun"]=1,["guns"]=1, + ["mace"]=1,["maces"]=1,["polearm"]=1,["polearms"]=1, + ["staff"]=1,["staves"]=1,["sword"]=1,["swords"]=1, + ["dagger"]=1,["daggers"]=1,["fist weapon"]=1,["fist weapons"]=1, + ["crossbow"]=1,["crossbows"]=1,["wand"]=1,["wands"]=1, + ["thrown"]=1,["cloth"]=1,["leather"]=1,["mail"]=1,["plate"]=1, + ["shield"]=1,["shields"]=1,["idol"]=1,["libram"]=1,["totem"]=1, + ["miscellaneous"]=1, + } + for i = 1, n do + local lfs = _G and _G["RelationshipsQuestAndItemBrowserScanTipTextLeft" .. i] + or getglobal("RelationshipsQuestAndItemBrowserScanTipTextLeft" .. i) + local rfs = _G and _G["RelationshipsQuestAndItemBrowserScanTipTextRight" .. i] + or getglobal("RelationshipsQuestAndItemBrowserScanTipTextRight" .. i) + local ltext = lfs and lfs:GetText() or "" + local rtext = rfs and rfs:GetText() or "" + local r, g, b = 1, 1, 1 + if lfs and lfs.GetTextColor then r, g, b = lfs:GetTextColor() end + local hex = string.format("|cff%02x%02x%02x", math.floor((r or 1)*255), math.floor((g or 1)*255), math.floor((b or 1)*255)) + local line = hex .. (ltext or "") .. "|r" + local rtrim = rtext and string.gsub(rtext, "^%s*(.-)%s*$", "%1") or "" + local rlow = string.lower(rtrim) + local isDup = (rtrim == "") + or (dupA and rlow == string.lower(dupA)) + or (dupB and rlow == string.lower(dupB)) + or dupSet[rlow] + if not isDup then + local rr, gg, bb = 1, 1, 1 + if rfs and rfs.GetTextColor then rr, gg, bb = rfs:GetTextColor() end + local rhex = string.format("|cff%02x%02x%02x", math.floor((rr or 1)*255), math.floor((gg or 1)*255), math.floor((bb or 1)*255)) + line = line .. " " .. rhex .. rtext .. "|r" + end + table.insert(out, line) + end + return out +end + +-- ---------- Item browser (Items tab) ---------- + +local function RQL_GetItemSource(id) + local turtle = RQL_GetDB("items", "enUS-turtle") + if turtle and turtle[id] and turtle[id] ~= "_" then return "Turtle/OctoWoW" end + return "Vanilla" +end + +-- Detect dev/test/unused item names that should be hidden from the browser. +local function RQL_IsDevItemName(name) + if not name or name == "" then return 1 end + local low = string.lower(name) + if string.find(low, "monster %-", 1) then return 1 end + if string.find(low, "qatest", 1, true) then return 1 end + if string.find(low, "^old", 1) then return 1 end + if string.find(low, "%[dep%]", 1) then return 1 end + if string.find(low, "%[dev%]", 1) then return 1 end + if string.find(low, "%[nyi%]", 1) then return 1 end + if string.find(low, "test item", 1, true) then return 1 end + if string.find(low, "unused", 1, true) then return 1 end + if string.find(low, "deprecated", 1, true) then return 1 end + if string.find(low, "placeholder", 1, true) then return 1 end + if string.find(low, "debug", 1, true) then return 1 end + return nil +end + +-- Find quests that reference an item (as start / turn-in / objective). +local function RQL_ItemFindQuests(itemId) + local out = {} + local seen = {} + local function scan(dbKey) + local db = RQL_GetDB("quests", dbKey) + if type(db) ~= "table" then return end + for qid, meta in pairs(db) do + if type(meta) == "table" then + local hit + local function has(list) + if type(list) ~= "table" then return nil end + for _, v in pairs(list) do + if v == itemId then return 1 end + end + return nil + end + if type(meta.start) == "table" and has(meta.start.I) then hit = "Starts" end + if not hit and type(meta["end"]) == "table" and has(meta["end"].I) then hit = "Turn-in" end + if not hit and type(meta.obj) == "table" and has(meta.obj.I) then hit = "Objective" end + if hit and not seen[qid] then + seen[qid] = 1 + table.insert(out, { id = qid, role = hit }) + end + end + end + end + scan("data") + scan("data-turtle") + return out +end + +local function RQL_IndexItems() + if RQL_ITEM_INDEX_READY then return end + RQL_ITEM_INDEX_READY = {} + local vanilla = RQL_GetDB("items", "enUS") or {} + local turtle = RQL_GetDB("items", "enUS-turtle") or {} + local ids = {} + for id, v in pairs(vanilla) do if type(v) == "string" and v ~= "_" then ids[id] = 1 end end + for id, v in pairs(turtle) do + if v == "_" then ids[id] = nil + elseif type(v) == "string" then ids[id] = 1 end + end + for id in pairs(ids) do + local name = RQL_GetName("items", id) + if name and not RQL_IsDevItemName(name) then + table.insert(RQL_ITEM_INDEX_READY, { + id = id, + name = name, + lower = string.lower(name .. " " .. id), + source = RQL_GetItemSource(id), + }) + end + end + table.sort(RQL_ITEM_INDEX_READY, function(a, b) return a.name < b.name end) +end + +local function RQL_ItemSourceMatches(row) + if RQL_ITEM_SOURCE_FILTER == 0 then return 1 end + if RQL_ITEM_SOURCE_FILTER == 1 then return row.source == "Vanilla" end + if RQL_ITEM_SOURCE_FILTER == 2 then return row.source == "Turtle/OctoWoW" end + return 1 +end + +local function RQL_SearchItems() + RQL_IndexItems() + RQL_ITEM_SEARCH_RESULTS = {} + local query = string.lower(RQL_ITEM_SEARCH_TEXT or "") + for _, row in ipairs(RQL_ITEM_INDEX_READY) do + if (query == "" or string.find(row.lower, query, 1, true)) + and RQL_ItemSourceMatches(row) then + table.insert(RQL_ITEM_SEARCH_RESULTS, row) + if table.getn(RQL_ITEM_SEARCH_RESULTS) >= RQL_MAX_RESULTS then break end + end + end + RQL_ITEM_PAGE = 1 +end + +-- ---------- UI ---------- + +function RQL_LinkQuestToChat(id, level, title) + if not id then return end + local meta = RQL_GetQuestMeta(id) + local loc = RQL_GetQuestLocale(id) + local lvl = tonumber(level) or (meta and tonumber(meta.lvl)) or 0 + local name = title or (loc and loc.T) or ("Quest #" .. id) + local link = "|cffffff00|Hquest:" .. id .. ":" .. lvl .. "|h[" .. name .. "]|h|r" + + if not ChatFrameEditBox then return end + if not ChatFrameEditBox:IsVisible() then + ChatFrameEditBox:Show() + end + ChatFrameEditBox:SetFocus() + ChatFrameEditBox:Insert(link) +end + + +local function RQL_TotalPages() + local results = (RQL_TAB == "items") and RQL_ITEM_SEARCH_RESULTS or RQL_SEARCH_RESULTS + local n = table.getn(results) + if n <= 0 then return 1 end + return math.floor((n - 1) / RQL_ROWS_VISIBLE) + 1 +end + +local function RQL_CurrentPage() + if RQL_TAB == "items" then return RQL_ITEM_PAGE end + return RQL_PAGE +end + +local function RQL_SetCurrentPage(p) + if RQL_TAB == "items" then RQL_ITEM_PAGE = p else RQL_PAGE = p end +end + +local function RQL_UpdateStatus() + if RQL_TAB == "items" then + if RQL_UI.itemStatus then + local total = RQL_ITEM_INDEX_READY and table.getn(RQL_ITEM_INDEX_READY) or 0 + local n = table.getn(RQL_ITEM_SEARCH_RESULTS) + RQL_UI.itemStatus:SetText("Matches: " .. n .. " / " .. total .. " items") + end + else + if RQL_UI.status then + local total = RQL_INDEX_READY and table.getn(RQL_INDEX_READY) or 0 + local n = table.getn(RQL_SEARCH_RESULTS) + RQL_UI.status:SetText("Matches: " .. n .. " / " .. total .. " quests") + end + end + if RQL_UI.pageLabel then + RQL_UI.pageLabel:SetText("Page " .. RQL_CurrentPage() .. " / " .. RQL_TotalPages()) + end +end + +local function RQL_UpdateList() + if not RQL_UI.rows then return end + local total = RQL_TotalPages() + local page = RQL_CurrentPage() + if page < 1 then page = 1 end + if page > total then page = total end + RQL_SetCurrentPage(page) + local offset = (page - 1) * RQL_ROWS_VISIBLE + local results = (RQL_TAB == "items") and RQL_ITEM_SEARCH_RESULTS or RQL_SEARCH_RESULTS + for i = 1, RQL_ROWS_VISIBLE do + local row = RQL_UI.rows[i] + local idx = i + offset + local r = results[idx] + if r then + if RQL_TAB == "items" then + local meta = RQL_GetItemMeta(r.id) + local qcol = "|cFFFFFFFF" + local lvlText = "?" + if meta and meta.name then + qcol = RQL_QUALITY_HEX[meta.quality or 1] or "|cFFFFFFFF" + local minLvl = tonumber(meta.minLevel) + lvlText = (minLvl and minLvl > 0) and tostring(minLvl) or "-" + end + row.left:SetText(qcol .. "[" .. lvlText .. "] " .. r.name .. "|r") + row.right:SetText("|cFF808080(#" .. r.id .. ", " .. r.source .. ")|r") + row.itemId = r.id + row.itemName = r.name + row.questId = nil + else + local lvlNum = tonumber(r.level) + local lvl = lvlNum and lvlNum > 0 and tostring(lvlNum) or "?" + local color = RQL_ColorByLevel(r.level) + row.left:SetText(color .. "[" .. lvl .. "]|r " .. r.title) + row.right:SetText("|cFF808080(" .. RQL_JoinFlags(r.flags) .. ", " .. r.source .. ")|r") + row.questId = r.id + row.questLevel = r.level + row.questTitle = r.title + row.itemId = nil + end + row:Show() + else + row:Hide() + row.questId = nil + row.itemId = nil + end + end + if RQL_UI.pageLabel then + RQL_UI.pageLabel:SetText("Page " .. page .. " / " .. total) + end + if RQL_UI.btnPrev then + if page <= 1 then RQL_UI.btnPrev:Disable() else RQL_UI.btnPrev:Enable() end + end + if RQL_UI.btnNext then + if page >= total then RQL_UI.btnNext:Disable() else RQL_UI.btnNext:Enable() end + end +end + +-- ---------- Detail view (Quest-log style) ---------- + +-- Header gap (space above a section header) and body gap (space between the +-- header and its body text) are separated so titles never sit tight against +-- the previous paragraph, matching the real quest log layout. +local RQL_HEADER_GAP = 20 -- space above a section header +local RQL_BODY_GAP = 8 -- space between header and its body +local RQL_DETAIL_PAD = 18 -- inner left/right/top padding of the parchment + +local function RQL_DetailSetSection(fs, label, body, prev) + if not body or body == "" then + fs.header:Hide(); fs.text:Hide() + return prev + end + fs.header:SetText(label) + fs.text:SetText(body) + fs.header:ClearAllPoints() + if prev then + fs.header:SetPoint("TOPLEFT", prev, "BOTTOMLEFT", 0, -RQL_HEADER_GAP) + else + fs.header:SetPoint("TOPLEFT", RQL_UI.detailContent, "TOPLEFT", 0, 0) + end + fs.text:ClearAllPoints() + fs.text:SetPoint("TOPLEFT", fs.header, "BOTTOMLEFT", 0, -RQL_BODY_GAP) + fs.text:SetWidth(RQL_UI.detailContent:GetWidth()) + fs.header:Show(); fs.text:Show() + return fs.text +end + +local function RQL_MakeDetailSection(parent) + -- Header: gold quest-log header font + local h = parent:CreateFontString(nil, "OVERLAY", "QuestTitleFont") + h:SetJustifyH("LEFT"); h:Hide() + -- Body: the standard quest-log body font + local b = parent:CreateFontString(nil, "OVERLAY", "QuestFont") + b:SetJustifyH("LEFT"); b:SetJustifyV("TOP"); b:SetSpacing(2); b:Hide() + return { header = h, text = b } +end + +local RQL_ShowQuest -- forward declaration; defined below +local function RQL_RenderQuestDetail(id, linkLevel, linkName) + local data = RQL_GetQuestData(id, linkLevel, linkName) + + -- Title + RQL_UI.dTitle:SetText(data.title) + RQL_UI.dTitle:SetWidth(RQL_UI.detailContent:GetWidth()) + + -- Meta line under title (with a bit of breathing room below the title) + local color = RQL_ColorByLevel(data.level) + local lvlText = (data.level and data.level > 0) and tostring(data.level) or "?" + local minText = (data.min and data.min > 0) and tostring(data.min) or "any" + local metaLine = color .. "Level " .. lvlText .. "|r" + .. " |cFFFFD100Requires:|r " .. minText + .. " |cFFFFD100Type:|r " .. RQL_JoinFlags(data.flags) + .. " |cFFFFD100Faction:|r " .. data.faction + .. " |cFFFFD100Source:|r " .. data.source + .. " |cFF808080#" .. id .. "|r" + RQL_UI.dMeta:SetText(metaLine) + RQL_UI.dMeta:SetWidth(RQL_UI.detailContent:GetWidth()) + RQL_UI.dMeta:ClearAllPoints() + RQL_UI.dMeta:SetPoint("TOPLEFT", RQL_UI.dTitle, "BOTTOMLEFT", 0, -10) + + local prev = RQL_UI.dMeta + + prev = RQL_DetailSetSection(RQL_UI.dObjSection, "Objective", + data.objectives and RQL_CleanText(data.objectives) or nil, prev) + + prev = RQL_DetailSetSection(RQL_UI.dDescSection, "Description", + data.description and RQL_CleanText(data.description) or nil, prev) + + -- Start / End / Objective NPC + Object lists (items handled separately below) + local locBody = "" + if data.meta then + local function add(label, lines) + if table.getn(lines) == 0 then return end + if locBody ~= "" then locBody = locBody .. "\n\n" end + locBody = locBody .. "|cFFFFD100" .. label .. "|r\n\n" .. table.concat(lines, "\n") + end + if type(data.meta.start) == "table" then + add("Quest Giver (NPC)", RQL_FormatEntityLines("units", data.meta.start.U)) + add("Quest Giver (Object)", RQL_FormatEntityLines("objects", data.meta.start.O)) + end + if type(data.meta["end"]) == "table" then + add("Turn-in (NPC)", RQL_FormatEntityLines("units", data.meta["end"].U)) + add("Turn-in (Object)", RQL_FormatEntityLines("objects", data.meta["end"].O)) + end + if type(data.meta.obj) == "table" then + add("Objective NPCs", RQL_FormatEntityLines("units", data.meta.obj.U)) + add("Objective Objects", RQL_FormatEntityLines("objects", data.meta.obj.O)) + end + end + prev = RQL_DetailSetSection(RQL_UI.dLocSection, "Locations", + locBody ~= "" and locBody or nil, prev) + + -- ---------- Clickable Items section ---------- + RQL_UI.dItemButtons = RQL_UI.dItemButtons or {} + for i = 1, table.getn(RQL_UI.dItemButtons) do RQL_UI.dItemButtons[i]:Hide() end + + local itemEntries = {} + local seenItem = {} + local function collectItems(label, ids) + if type(ids) ~= "table" then return end + for _, iid in pairs(ids) do + if iid and not seenItem[iid] then + seenItem[iid] = 1 + local name = RQL_GetName("items", iid) or ("Item #" .. iid) + table.insert(itemEntries, { id = iid, name = name, role = label }) + end + end + end + if data.meta then + if type(data.meta.start) == "table" then collectItems("Starts quest", data.meta.start.I) end + if type(data.meta["end"]) == "table" then collectItems("Turn-in", data.meta["end"].I) end + if type(data.meta.obj) == "table" then collectItems("Objective", data.meta.obj.I) end + end + + if table.getn(itemEntries) > 0 then + local sec = RQL_UI.dItemSection + sec.header:SetText("Items (click to open)") + sec.header:ClearAllPoints() + sec.header:SetPoint("TOPLEFT", prev, "BOTTOMLEFT", 0, -RQL_HEADER_GAP) + sec.header:Show() + sec.text:Hide() + + local anchor = sec.header + local gap = RQL_BODY_GAP + for i = 1, table.getn(itemEntries) do + local entry = itemEntries[i] + local btn = RQL_UI.dItemButtons[i] + if not btn then + btn = CreateFrame("Button", nil, RQL_UI.detailContent) + btn:SetHeight(16) + local fs = btn:CreateFontString(nil, "OVERLAY", "QuestFont") + fs:SetPoint("LEFT", btn, "LEFT", 0, 0) + fs:SetJustifyH("LEFT") + btn.fs = fs + local hl = btn:CreateTexture(nil, "HIGHLIGHT") + hl:SetTexture("Interface\\QuestFrame\\UI-QuestTitleHighlight") + hl:SetBlendMode("ADD") + hl:SetAllPoints(btn) + btn:SetScript("OnEnter", function() + if this.fs then this.fs:SetTextColor(1, 1, 0.4) end + end) + btn:SetScript("OnLeave", function() + if this.fs then this.fs:SetTextColor(1, 1, 1) end + end) + btn:RegisterForClicks("LeftButtonUp", "RightButtonUp") + btn:SetScript("OnClick", function() + if this.itemId then + RQL_ShowItem(this.itemId, this.itemName) + if RQL_UI.detailScroll then RQL_UI.detailScroll:SetVerticalScroll(0) end + end + end) + RQL_UI.dItemButtons[i] = btn + end + btn.itemId = entry.id + btn.itemName = entry.name + btn.fs:SetText(" |cFFFFFFFF" .. entry.name .. "|r |cFF808080(#" .. entry.id .. ", " .. entry.role .. ")|r |cFFAAAAFF[click to open]|r") + btn.fs:SetTextColor(1, 1, 1) + btn:SetWidth(RQL_UI.detailContent:GetWidth()) + btn:ClearAllPoints() + btn:SetPoint("TOPLEFT", anchor, (anchor == sec.header) and "BOTTOMLEFT" or "BOTTOMLEFT", 0, -gap) + btn:Show() + anchor = btn + gap = 4 + end + prev = anchor + else + RQL_UI.dItemSection.header:Hide() + RQL_UI.dItemSection.text:Hide() + end + + -- Prerequisites (clickable — jump straight to the required quest) + RQL_UI.dPreButtons = RQL_UI.dPreButtons or {} + -- Hide any previously-shown prereq buttons before re-rendering + for i = 1, table.getn(RQL_UI.dPreButtons) do + RQL_UI.dPreButtons[i]:Hide() + end + + local preList = (data.meta and type(data.meta.pre) == "table") and data.meta.pre or nil + if preList and table.getn(preList) > 0 then + local sec = RQL_UI.dPreSection + sec.header:SetText("Prerequisites (click to open)") + sec.header:ClearAllPoints() + sec.header:SetPoint("TOPLEFT", prev, "BOTTOMLEFT", 0, -RQL_HEADER_GAP) + sec.header:Show() + sec.text:Hide() + + local anchor = sec.header + local gap = RQL_BODY_GAP + for i = 1, table.getn(preList) do + local preId = preList[i] + local preLocale = RQL_GetQuestLocale(preId) + local name = (preLocale and preLocale.T) or ("Quest #" .. preId) + + local btn = RQL_UI.dPreButtons[i] + if not btn then + btn = CreateFrame("Button", nil, RQL_UI.detailContent) + btn:SetHeight(16) + local fs = btn:CreateFontString(nil, "OVERLAY", "QuestFont") + fs:SetPoint("LEFT", btn, "LEFT", 0, 0) + fs:SetJustifyH("LEFT") + btn.fs = fs + local hl = btn:CreateTexture(nil, "HIGHLIGHT") + hl:SetTexture("Interface\\QuestFrame\\UI-QuestTitleHighlight") + hl:SetBlendMode("ADD") + hl:SetAllPoints(btn) + btn:SetScript("OnEnter", function() + if this.fs then this.fs:SetTextColor(1, 1, 0.4) end + end) + btn:SetScript("OnLeave", function() + if this.fs then this.fs:SetTextColor(1, 1, 1) end + end) + btn:RegisterForClicks("LeftButtonUp", "RightButtonUp") + btn:SetScript("OnClick", function() + if this.preId then + RQL_ShowQuest(this.preId, 0, this.preName) + if RQL_UI.detailScroll then RQL_UI.detailScroll:SetVerticalScroll(0) end + end + end) + RQL_UI.dPreButtons[i] = btn + end + btn.preId = preId + btn.preName = name + btn.fs:SetText(" " .. name .. " |cFF808080(#" .. preId .. ")|r |cFFAAAAFF[click to open]|r") + btn.fs:SetTextColor(1, 1, 1) + btn:SetWidth(RQL_UI.detailContent:GetWidth()) + btn:ClearAllPoints() + btn:SetPoint("TOPLEFT", anchor, (anchor == sec.header) and "BOTTOMLEFT" or "BOTTOMLEFT", 0, -gap) + btn:Show() + anchor = btn + gap = 4 + end + prev = anchor + else + -- No prerequisites — hide the section entirely. + RQL_UI.dPreSection.header:Hide() + RQL_UI.dPreSection.text:Hide() + end + + if not data.meta then + RQL_UI.dFooter:SetText("|cFFFF8080No bundled database entry found. Showing link-only data.|r") + RQL_UI.dFooter:ClearAllPoints() + RQL_UI.dFooter:SetPoint("TOPLEFT", prev, "BOTTOMLEFT", 0, -RQL_HEADER_GAP) + RQL_UI.dFooter:SetWidth(RQL_UI.detailContent:GetWidth()) + RQL_UI.dFooter:Show() + else + RQL_UI.dFooter:Hide() + end + + -- Recompute scroll-child height so the ScrollFrame knows how far to scroll. + -- Without this the child stays at its initial height (1) and the wheel / + -- scrollbar have no range on longer quests. + local function _rql_h(fs) + if not fs then return 0 end + if fs.IsShown and not fs:IsShown() then return 0 end + -- GetStringHeight may be missing on some 1.12 clients / non-FontString + -- regions. Guard the call and fall back to GetHeight so a nil method + -- can't abort the whole layout (which would leave the ScrollFrame + -- with a stale/zero range and break the scrollbar). + local h + if type(fs.GetStringHeight) == "function" then + local ok, v = pcall(fs.GetStringHeight, fs) + if ok and v and v > 0 then h = v end + end + if (not h) and type(fs.GetHeight) == "function" then + local ok, v = pcall(fs.GetHeight, fs) + if ok and v then h = v end + end + return h or 0 + end + local total = _rql_h(RQL_UI.dTitle) + 10 + _rql_h(RQL_UI.dMeta) + local function _rql_addSec(sec) + if sec and sec.header and sec.header:IsShown() then + total = total + RQL_HEADER_GAP + _rql_h(sec.header) + if sec.text and sec.text:IsShown() then + total = total + RQL_BODY_GAP + _rql_h(sec.text) + end + end + end + _rql_addSec(RQL_UI.dObjSection) + _rql_addSec(RQL_UI.dDescSection) + _rql_addSec(RQL_UI.dLocSection) + if RQL_UI.dPreSection and RQL_UI.dPreSection.header:IsShown() then + total = total + RQL_HEADER_GAP + _rql_h(RQL_UI.dPreSection.header) + local btns = RQL_UI.dPreButtons or {} + local shown = 0 + for i = 1, table.getn(btns) do + if btns[i]:IsShown() then + total = total + (shown == 0 and RQL_BODY_GAP or 4) + (btns[i]:GetHeight() or 16) + shown = shown + 1 + end + end + end + if RQL_UI.dItemSection and RQL_UI.dItemSection.header:IsShown() then + total = total + RQL_HEADER_GAP + _rql_h(RQL_UI.dItemSection.header) + local btns = RQL_UI.dItemButtons or {} + local shown = 0 + for i = 1, table.getn(btns) do + if btns[i]:IsShown() then + total = total + (shown == 0 and RQL_BODY_GAP or 4) + (btns[i]:GetHeight() or 16) + shown = shown + 1 + end + end + end + if RQL_UI.dFooter:IsShown() then + total = total + RQL_HEADER_GAP + _rql_h(RQL_UI.dFooter) + end + RQL_UI.detailContent:SetHeight(total + 24) + if RQL_UI.detailScroll and RQL_UI.detailScroll.UpdateScrollChildRect then + RQL_UI.detailScroll:UpdateScrollChildRect() + -- Nudge the scroll position so the ScrollFrame recomputes its + -- vertical range immediately. Without this, the scrollbar thumb + -- occasionally stays disabled on longer quests until the user + -- resizes or reopens the frame. + local cur = RQL_UI.detailScroll:GetVerticalScroll() or 0 + local maxs = RQL_UI.detailScroll:GetVerticalScrollRange() or 0 + if cur > maxs then cur = maxs end + RQL_UI.detailScroll:SetVerticalScroll(cur) + end +end + +-- ---------- Show/hide screens ---------- + +local function RQL_UpdateTabVisuals() + if RQL_UI.tabQuests and RQL_UI.tabItems then + if RQL_TAB == "items" then + RQL_UI.tabItems:LockHighlight() + RQL_UI.tabQuests:UnlockHighlight() + else + RQL_UI.tabQuests:LockHighlight() + RQL_UI.tabItems:UnlockHighlight() + end + end +end + +local function RQL_ShowBrowser() + RQL_TAB = "quests" + RQL_MODE = "browser" + RQL_UI.iRetryFor = nil + if RelationshipsQuestAndItemBrowserFrameTitle then RelationshipsQuestAndItemBrowserFrameTitle:SetText("Relationships Quest And Item Browser") end + if RQL_UI.detail then RQL_UI.detail:Hide() end + if RQL_UI.itemDetail then RQL_UI.itemDetail:Hide() end + if RQL_UI.itemControls then RQL_UI.itemControls:Hide() end + if RQL_UI.listArea then RQL_UI.listArea:Show() end + if RQL_UI.controls then RQL_UI.controls:Show() end + if RQL_UI.pager then RQL_UI.pager:Show() end + RQL_UpdateTabVisuals() + RQL_SearchQuests() + RQL_UpdateStatus() + RQL_UpdateList() + RelationshipsQuestAndItemBrowserFrame:Show() +end + +local function RQL_ShowItemBrowser() + RQL_TAB = "items" + RQL_MODE = "browser" + RQL_UI.iRetryFor = nil + if RelationshipsQuestAndItemBrowserFrameTitle then RelationshipsQuestAndItemBrowserFrameTitle:SetText("Relationships Quest And Item Browser") end + if RQL_UI.detail then RQL_UI.detail:Hide() end + if RQL_UI.itemDetail then RQL_UI.itemDetail:Hide() end + if RQL_UI.controls then RQL_UI.controls:Hide() end + if RQL_UI.itemControls then RQL_UI.itemControls:Show() end + if RQL_UI.listArea then RQL_UI.listArea:Show() end + if RQL_UI.pager then RQL_UI.pager:Show() end + RQL_UpdateTabVisuals() + RQL_SearchItems() + RQL_UpdateStatus() + RQL_UpdateList() + RelationshipsQuestAndItemBrowserFrame:Show() +end + +function RQL_ShowQuest(id, level, name) + RQL_MODE = "details" + RQL_SELECTED_QUEST_ID = id + -- Cancel any pending item-detail tooltip retry from a previous screen. + RQL_UI.iRetryFor = nil + if RelationshipsQuestAndItemBrowserFrameTitle then RelationshipsQuestAndItemBrowserFrameTitle:SetText("Quest Details") end + if RQL_UI.controls then RQL_UI.controls:Hide() end + if RQL_UI.listArea then RQL_UI.listArea:Hide() end + if RQL_UI.pager then RQL_UI.pager:Hide() end + -- Hide item screens too, otherwise navigating quest -> item -> related + -- quest leaves the item detail rendered underneath the quest text. + if RQL_UI.itemControls then RQL_UI.itemControls:Hide() end + if RQL_UI.itemDetail then RQL_UI.itemDetail:Hide() end + RQL_RenderQuestDetail(id, level, name) + if RQL_UI.detailScroll then RQL_UI.detailScroll:SetVerticalScroll(0) end + if RQL_UI.detail then RQL_UI.detail:Show() end + RelationshipsQuestAndItemBrowserFrame:Show() +end + +-- Item detail renderer + shower +function RQL_ShowItem(id, name) + if not id then return end + RQL_MODE = "itemDetails" + RQL_SELECTED_ITEM_ID = id + if not RQL_UI.itemDetail then return end + if RelationshipsQuestAndItemBrowserFrameTitle then RelationshipsQuestAndItemBrowserFrameTitle:SetText("Item Details") end + if RQL_UI.controls then RQL_UI.controls:Hide() end + if RQL_UI.itemControls then RQL_UI.itemControls:Hide() end + if RQL_UI.listArea then RQL_UI.listArea:Hide() end + if RQL_UI.pager then RQL_UI.pager:Hide() end + if RQL_UI.detail then RQL_UI.detail:Hide() end + + local resolvedName = name or RQL_GetName("items", id) or ("Item #" .. id) + local source = RQL_GetItemSource(id) + + local meta = RQL_GetItemMeta(id) + local qcol = "|cFFFFFFFF" + local lvlText = "-" + local extra = "" + if meta and meta.name then + qcol = RQL_QUALITY_HEX[meta.quality or 1] or "|cFFFFFFFF" + local ml = tonumber(meta.minLevel) + if ml and ml > 0 then lvlText = tostring(ml) end + if meta.iType then + extra = " |cFFFFD100Type:|r " .. meta.iType + if meta.iSubType and meta.iSubType ~= "" then extra = extra .. " (" .. meta.iSubType .. ")" end + end + end + RQL_UI.iTitle:SetText(qcol .. "[" .. lvlText .. "] " .. resolvedName .. "|r") + RQL_UI.iMeta:SetText("|cFFFFD100Item ID:|r " .. id .. " |cFFFFD100Source:|r " .. source .. extra) + + -- Icon: use GetItemInfo texture when we have it; fall back to the + -- vanilla question-mark placeholder so the slot is never empty. Keep + -- it on top of the decorative slot art; UI-EmptySlot-Disabled is not + -- just a border and can otherwise cover the icon on 1.12 clients. + if RQL_UI.iIcon then + if meta and meta.texture then + RQL_UI.iIcon:SetTexture(meta.texture) + else + RQL_UI.iIcon:SetTexture("Interface\\Icons\\INV_Misc_QuestionMark") + end + RQL_UI.iIcon:Show() + end + + -- Scan full tooltip and render into the description FontString. + if not RQL_UI.iDesc then + -- Use the standard quest-log body font (larger + more legible than + -- GameFontHighlightSmall) and add generous line spacing so each + -- stat / enchant / requirement row is clearly separated. + RQL_UI.iDesc = RQL_UI.itemDetailContent:CreateFontString(nil, "OVERLAY", "QuestFont") + RQL_UI.iDesc:SetJustifyH("LEFT") + RQL_UI.iDesc:SetJustifyV("TOP") + RQL_UI.iDesc:SetSpacing(7) + end + RQL_UI.iDesc:ClearAllPoints() + -- Anchor description strictly BELOW the icon + meta block. Icon is 44 + -- tall at y=0, meta line sits under the title to its right, so the + -- guaranteed clearance point is icon-height + a comfortable gap. + RQL_UI.iDesc:SetPoint("TOPLEFT", RQL_UI.itemDetailContent, "TOPLEFT", + 0, -(44 + RQL_HEADER_GAP + 6)) + RQL_UI.iDesc:SetWidth(RQL_UI.itemDetailContent:GetWidth()) + local lines = RQL_ScanItemTooltipLines(id) + local desc + if lines and table.getn(lines) > 0 then + desc = table.concat(lines, "\n") + else + -- Fall back to whatever GetItemInfo gave us so the panel is never + -- empty. An OnUpdate retry (below) will replace this once the + -- client-side item cache is warm. + local parts = {} + table.insert(parts, qcol .. resolvedName .. "|r") + if meta and meta.name then + if meta.iType then + local t = meta.iType + if meta.iSubType and meta.iSubType ~= "" then t = t .. " (" .. meta.iSubType .. ")" end + table.insert(parts, "|cFFFFFFFF" .. t .. "|r") + end + if meta.minLevel and meta.minLevel > 0 then + table.insert(parts, "|cFFFFFFFFRequires Level " .. meta.minLevel .. "|r") + end + end + table.insert(parts, "|cFF808080Loading full item data from the server... this will refresh in a moment.|r") + desc = table.concat(parts, "\n") + -- Schedule a re-scan; the OnUpdate ticker in RQL_UI.retryTicker will + -- keep probing SetHyperlink until GameTooltip returns real lines. + RQL_UI.iRetryFor = id + RQL_UI.iRetryElapsed = 0 + RQL_UI.iRetryTries = 0 + end + RQL_UI.iDesc:SetText(desc) + RQL_UI.iDesc:Show() + local descH = RQL_UI.iDesc:GetHeight() or 0 + + -- Clear previous quest buttons + for i = 1, table.getn(RQL_UI.iQuestButtons) do RQL_UI.iQuestButtons[i]:Hide() end + + local relatedQuests = RQL_ItemFindQuests(id) + local sec = RQL_UI.iQuestSection + local totalHeight = 40 + 20 + RQL_HEADER_GAP + descH + if table.getn(relatedQuests) > 0 then + sec.header:SetText("Related Quests (click to open)") + sec.header:ClearAllPoints() + sec.header:SetPoint("TOPLEFT", RQL_UI.iDesc, "BOTTOMLEFT", 0, -RQL_HEADER_GAP) + sec.header:Show() + sec.text:Hide() + totalHeight = totalHeight + RQL_HEADER_GAP + 20 + + local anchor = sec.header + local gap = RQL_BODY_GAP + for i = 1, table.getn(relatedQuests) do + local entry = relatedQuests[i] + local loc = RQL_GetQuestLocale(entry.id) + local meta = RQL_GetQuestMeta(entry.id) + local title = (loc and loc.T) or ("Quest #" .. entry.id) + local lvl = (meta and meta.lvl) or 0 + + local btn = RQL_UI.iQuestButtons[i] + if not btn then + btn = CreateFrame("Button", nil, RQL_UI.itemDetailContent) + btn:SetHeight(16) + local fs = btn:CreateFontString(nil, "OVERLAY", "QuestFont") + fs:SetPoint("LEFT", btn, "LEFT", 0, 0) + fs:SetJustifyH("LEFT") + btn.fs = fs + local hl = btn:CreateTexture(nil, "HIGHLIGHT") + hl:SetTexture("Interface\\QuestFrame\\UI-QuestTitleHighlight") + hl:SetBlendMode("ADD") + hl:SetAllPoints(btn) + btn:SetScript("OnEnter", function() if this.fs then this.fs:SetTextColor(1, 1, 0.4) end end) + btn:SetScript("OnLeave", function() if this.fs then this.fs:SetTextColor(1, 1, 1) end end) + btn:RegisterForClicks("LeftButtonUp", "RightButtonUp") + btn:SetScript("OnClick", function() + if this.qid then RQL_ShowQuest(this.qid, this.qlvl, this.qtitle) end + end) + RQL_UI.iQuestButtons[i] = btn + end + btn.qid = entry.id + btn.qlvl = lvl + btn.qtitle = title + local lvlText = (lvl and lvl > 0) and tostring(lvl) or "?" + local color = RQL_ColorByLevel(lvl) + btn.fs:SetText(" " .. color .. "[" .. lvlText .. "]|r " .. title .. " |cFF808080(#" .. entry.id .. ", " .. entry.role .. ")|r |cFFAAAAFF[click to open]|r") + btn.fs:SetTextColor(1, 1, 1) + btn:SetWidth(RQL_UI.itemDetailContent:GetWidth()) + btn:ClearAllPoints() + btn:SetPoint("TOPLEFT", anchor, "BOTTOMLEFT", 0, -gap) + btn:Show() + anchor = btn + gap = 4 + totalHeight = totalHeight + gap + 16 + end + else + sec.header:SetText("Related Quests") + sec.header:ClearAllPoints() + sec.header:SetPoint("TOPLEFT", RQL_UI.iDesc, "BOTTOMLEFT", 0, -RQL_HEADER_GAP) + sec.header:Show() + sec.text:SetText("|cFF808080No quests reference this item in the bundled database.|r") + sec.text:ClearAllPoints() + sec.text:SetPoint("TOPLEFT", sec.header, "BOTTOMLEFT", 0, -RQL_BODY_GAP) + sec.text:SetWidth(RQL_UI.itemDetailContent:GetWidth()) + sec.text:Show() + totalHeight = totalHeight + RQL_HEADER_GAP + RQL_BODY_GAP + 40 + end + + RQL_UI.itemDetailContent:SetHeight(totalHeight + 24) + if RQL_UI.itemDetailScroll and RQL_UI.itemDetailScroll.UpdateScrollChildRect then + RQL_UI.itemDetailScroll:UpdateScrollChildRect() + RQL_UI.itemDetailScroll:SetVerticalScroll(0) + end + + RQL_UI.itemDetail:Show() + RelationshipsQuestAndItemBrowserFrame:Show() +end + +-- Dropdown helper +local function RQL_MakeDropdown(name, parent, x, y, width, labelText, items, getIndex, setIndex) + local dd = CreateFrame("Frame", name, parent, "UIDropDownMenuTemplate") + dd:SetPoint("TOPLEFT", parent, "TOPLEFT", x, y) + local label = dd:CreateFontString(nil, "OVERLAY", "GameFontNormalSmall") + label:SetPoint("BOTTOMLEFT", dd, "TOPLEFT", 18, 2) + label:SetText(labelText) + UIDropDownMenu_SetWidth(width, dd) + local function init() + for i, txt in ipairs(items) do + local info = {} + info.text = txt + info.value = i - 1 + info.checked = nil + info.func = function() + setIndex(this.value) + UIDropDownMenu_SetSelectedValue(dd, this.value) + UIDropDownMenu_SetText(items[this.value + 1], dd) + RQL_ShowBrowser() + end + UIDropDownMenu_AddButton(info) + end + end + UIDropDownMenu_Initialize(dd, init) + UIDropDownMenu_SetSelectedValue(dd, getIndex()) + UIDropDownMenu_SetText(items[getIndex() + 1], dd) + return dd +end + +local function RQL_BuildUI() + if RQL_UI.built then return end + RQL_UI.built = 1 + local parent = RelationshipsQuestAndItemBrowserFrame + + -- ---------- Tab bar (Quests / Items) ---------- + local tabQuests = CreateFrame("Button", "RelationshipsQuestAndItemBrowserTabQuests", parent, "UIPanelButtonTemplate") + tabQuests:SetWidth(90) tabQuests:SetHeight(22) + tabQuests:SetPoint("TOPLEFT", parent, "TOPLEFT", 22, -42) + tabQuests:SetText("Quests") + tabQuests:SetScript("OnClick", function() RQL_ShowBrowser() end) + RQL_UI.tabQuests = tabQuests + + local tabItems = CreateFrame("Button", "RelationshipsQuestAndItemBrowserTabItems", parent, "UIPanelButtonTemplate") + tabItems:SetWidth(90) tabItems:SetHeight(22) + tabItems:SetPoint("LEFT", tabQuests, "RIGHT", 6, 0) + tabItems:SetText("Items") + tabItems:SetScript("OnClick", function() RQL_ShowItemBrowser() end) + RQL_UI.tabItems = tabItems + + -- ---------- Parchment background (quest-log style) ---------- + -- The vanilla client ships Interface\QuestFrame\QuestBG as a 512x512 + -- parchment. We tile a 2x2 grid so it covers the whole frame interior + -- regardless of frame size. Layered in BACKGROUND so it renders over + -- the plain dialog backdrop but under all content. + -- Darker parchment-brown background for better text contrast. + local bg = parent:CreateTexture(nil, "BACKGROUND") + -- Dark gold solid fill for the "Default" background. Chosen for good + -- contrast against white/yellow text without relying on a texture path + -- (some 1.12 clients fail to load Interface\QuestFrame\QuestBG and + -- would render fully transparent). + bg:SetTexture(0.32, 0.24, 0.10) + bg:SetPoint("TOPLEFT", parent, "TOPLEFT", 12, -12) + bg:SetPoint("BOTTOMRIGHT", parent, "BOTTOMRIGHT", -12, 12) + RQL_UI.bgParchment = bg + + + -- controls container + local controls = CreateFrame("Frame", nil, parent) + controls:SetPoint("TOPLEFT", parent, "TOPLEFT", 22, -84) + controls:SetPoint("TOPRIGHT", parent, "TOPRIGHT", -22, -84) + controls:SetHeight(132) + RQL_UI.controls = controls + + local searchLabel = controls:CreateFontString(nil, "OVERLAY", "GameFontNormalSmall") + searchLabel:SetPoint("TOPLEFT", controls, "TOPLEFT", 0, 0) + searchLabel:SetText("Search:") + local edit = CreateFrame("EditBox", "RelationshipsQuestAndItemBrowserSearchBox", controls, "InputBoxTemplate") + edit:SetHeight(20) + edit:SetWidth(380) + edit:SetPoint("TOPLEFT", controls, "TOPLEFT", 60, 2) + edit:SetAutoFocus(nil) + edit:SetScript("OnEnterPressed", function() + RQL_SEARCH_TEXT = this:GetText() or "" + this:ClearFocus() + RQL_ShowBrowser() + end) + edit:SetScript("OnEscapePressed", function() this:ClearFocus() end) + edit:SetScript("OnTextChanged", function() + RQL_SEARCH_TEXT = this:GetText() or "" + RQL_SearchQuests() + RQL_UpdateStatus() + RQL_UpdateList() + end) + RQL_UI.search = edit + + local btnSearch = CreateFrame("Button", nil, controls, "UIPanelButtonTemplate") + btnSearch:SetWidth(70) btnSearch:SetHeight(22) + btnSearch:SetPoint("LEFT", edit, "RIGHT", 8, 0) + btnSearch:SetText("Search") + btnSearch:SetScript("OnClick", function() + RQL_SEARCH_TEXT = edit:GetText() or "" + RQL_ShowBrowser() + end) + + local btnReset = CreateFrame("Button", nil, controls, "UIPanelButtonTemplate") + btnReset:SetWidth(70) btnReset:SetHeight(22) + btnReset:SetPoint("LEFT", btnSearch, "RIGHT", 4, 0) + btnReset:SetText("Reset") + btnReset:SetScript("OnClick", function() + RQL_SEARCH_TEXT = "" + RQL_LEVEL_FILTER = 0; RQL_TYPE_FILTER = 0 + RQL_FACTION_FILTER = 0; RQL_SOURCE_FILTER = 0 + edit:SetText("") + UIDropDownMenu_SetSelectedValue(RQL_UI.ddLevel, 0); UIDropDownMenu_SetText(RQL_LEVELS[1], RQL_UI.ddLevel) + UIDropDownMenu_SetSelectedValue(RQL_UI.ddType, 0); UIDropDownMenu_SetText(RQL_TYPES[1], RQL_UI.ddType) + UIDropDownMenu_SetSelectedValue(RQL_UI.ddFaction, 0); UIDropDownMenu_SetText(RQL_FACTIONS[1], RQL_UI.ddFaction) + UIDropDownMenu_SetSelectedValue(RQL_UI.ddSource, 0); UIDropDownMenu_SetText(RQL_SOURCES[1], RQL_UI.ddSource) + RQL_ShowBrowser() + end) + + -- ---------- Options: background color ---------- + -- Colored overlay approach: leave the parchment backdrop untouched + -- (so "Default" is truly the original look) and lay a solid-color + -- texture over it inside the border. Hidden when Default is chosen. + RQL_BG_PRESETS = { + { name = "Parchment", r = 0.00, g = 0.00, b = 0.00, a = 0.00 }, + +{ name = "Light Sepia", r = 0.8428, g = 0.7448, b = 0.5880, a = 1.00 }, +{ name = "Sepia", r = 0.38, g = 0.29, b = 0.20, a = 1.00 }, + +{ name = "Charcoal", r = 0.25, g = 0.25, b = 0.26, a = 1.00 }, +{ name = "Black", r = 0.14, g = 0.14, b = 0.15, a = 1.00 }, + +{ name = "Midnight Blue", r = 0.13, g = 0.20, b = 0.36, a = 1.00 }, +{ name = "Forest Green", r = 0.12, g = 0.28, b = 0.18, a = 1.00 }, +{ name = "Deep Red", r = 0.40, g = 0.13, b = 0.13, a = 1.00 }, +{ name = "Royal Purple", r = 0.31, g = 0.15, b = 0.42, a = 1.00 }, + } + + -- Create the overlay once, parented to the main frame, sitting just + -- inside the DialogBox border insets (11/12/12/11) and BELOW all UI + -- content by using the BACKGROUND layer with a low sublevel. + if RelationshipsQuestAndItemBrowserFrame and not RQL_UI.bgOverlay then + -- Draw on BORDER layer (above the DialogBox parchment backdrop, below + -- ARTWORK/OVERLAY content) so the selected color fully covers the + -- parchment. Earlier this sat on BACKGROUND at sublevel 0, where on + -- some 1.12 / Turtle builds it rendered UNDER the parchment bgFile + -- and blended through it, making colors look muddy / "combined". + local ov = RelationshipsQuestAndItemBrowserFrame:CreateTexture(nil, "BORDER") + ov:SetTexture(0, 0, 0, 0) + ov:SetPoint("TOPLEFT", RelationshipsQuestAndItemBrowserFrame, "TOPLEFT", 11, -12) + ov:SetPoint("BOTTOMRIGHT", RelationshipsQuestAndItemBrowserFrame, "BOTTOMRIGHT", -12, 11) + ov:Hide() + RQL_UI.bgOverlay = ov + end + + function RQL_ApplyBackground(name) + local preset = RQL_BG_PRESETS[1] + for i = 1, table.getn(RQL_BG_PRESETS) do + if RQL_BG_PRESETS[i].name == name then preset = RQL_BG_PRESETS[i] break end + end + local ov = RQL_UI.bgOverlay + if ov then + if preset.a and preset.a > 0 then + ov:SetTexture(preset.r, preset.g, preset.b, preset.a) + -- Belt-and-braces: some 1.12 clients cache the previous + -- color when SetTexture is called with new r,g,b on an + -- already-solid texture, producing a blended / wrong hue. + if ov.SetVertexColor then + ov:SetVertexColor(preset.r, preset.g, preset.b, preset.a) + end + ov:Show() + else + ov:Hide() + end + end + RelationshipsQuestAndItemBrowserDB = RelationshipsQuestAndItemBrowserDB or {} + RelationshipsQuestAndItemBrowserDB.bgColor = preset.name + end + + local btnOptions = CreateFrame("Button", "RelationshipsQuestAndItemBrowserOptionsBtn", controls, "UIPanelButtonTemplate") + btnOptions:SetWidth(80) btnOptions:SetHeight(22) + btnOptions:SetPoint("LEFT", btnReset, "RIGHT", 4, 0) + btnOptions:SetText("Options") + + -- A tiny custom menu is more reliable than UIDropDownMenu for this client. + -- Some 1.12/Turtle builds reuse dropdown button state in a way that makes + -- color clicks intermittently miss or call the wrong handler. + local optMenu = CreateFrame("Frame", "RelationshipsQuestAndItemBrowserOptionsMenu", parent) + optMenu:SetWidth(170) + optMenu:SetHeight(30 + (table.getn(RQL_BG_PRESETS) * 20)) + optMenu:SetPoint("TOPLEFT", btnOptions, "BOTTOMLEFT", 0, -2) + optMenu:SetFrameStrata("DIALOG") + optMenu:SetBackdrop({ + bgFile = "Interface\\DialogFrame\\UI-DialogBox-Background", + edgeFile = "Interface\\DialogFrame\\UI-DialogBox-Border", + tile = true, + tileSize = 32, + edgeSize = 16, + insets = { left = 5, right = 5, top = 5, bottom = 5 } + }) + optMenu:EnableMouse(true) + optMenu:Hide() + RQL_UI.optionsMenu = optMenu + + local optTitle = optMenu:CreateFontString(nil, "OVERLAY", "GameFontNormalSmall") + optTitle:SetPoint("TOPLEFT", optMenu, "TOPLEFT", 12, -10) + optTitle:SetText("Background Color") + + for i = 1, table.getn(RQL_BG_PRESETS) do + local preset = RQL_BG_PRESETS[i] + local row = CreateFrame("Button", nil, optMenu) + row:SetWidth(146) + row:SetHeight(18) + row:SetPoint("TOPLEFT", optMenu, "TOPLEFT", 12, -10 - (i * 20)) + row.presetName = preset.name + + local swatch = row:CreateTexture(nil, "ARTWORK") + swatch:SetWidth(12) + swatch:SetHeight(12) + swatch:SetPoint("LEFT", row, "LEFT", 0, 0) + if preset.a and preset.a > 0 then + swatch:SetTexture(preset.r, preset.g, preset.b) + else + swatch:SetTexture(0.32, 0.24, 0.10) + end + + local text = row:CreateFontString(nil, "OVERLAY", "GameFontHighlightSmall") + text:SetPoint("LEFT", swatch, "RIGHT", 6, 0) + text:SetText(preset.name) + row.text = text + + row:SetScript("OnEnter", function() + if this.text then this.text:SetTextColor(1, 1, 0.4) end + end) + row:SetScript("OnLeave", function() + if this.text then this.text:SetTextColor(1, 1, 1) end + end) + row:SetScript("OnClick", function() + if this.presetName then RQL_ApplyBackground(this.presetName) end + if RQL_UI.optionsMenu then RQL_UI.optionsMenu:Hide() end + end) + end + + btnOptions:SetScript("OnClick", function() + if RQL_UI.optionsMenu and RQL_UI.optionsMenu:IsShown() then + RQL_UI.optionsMenu:Hide() + elseif RQL_UI.optionsMenu then + RQL_UI.optionsMenu:Show() + end + end) + + -- Filter dropdowns — spaced to fit inside a 720-wide frame + RQL_UI.ddLevel = RQL_MakeDropdown("RelationshipsQuestAndItemBrowserDDLevel", controls, -12, -72, 90, "Level", RQL_LEVELS, function() return RQL_LEVEL_FILTER end, function(v) RQL_LEVEL_FILTER = v end) + RQL_UI.ddType = RQL_MakeDropdown("RelationshipsQuestAndItemBrowserDDType", controls, 128, -72, 130, "Type", RQL_TYPES, function() return RQL_TYPE_FILTER end, function(v) RQL_TYPE_FILTER = v end) + RQL_UI.ddFaction = RQL_MakeDropdown("RelationshipsQuestAndItemBrowserDDFaction", controls, 298, -72, 120, "Faction", RQL_FACTIONS, function() return RQL_FACTION_FILTER end, function(v) RQL_FACTION_FILTER = v end) + RQL_UI.ddSource = RQL_MakeDropdown("RelationshipsQuestAndItemBrowserDDSource", controls, 458, -72, 130, "Source", RQL_SOURCES, function() return RQL_SOURCE_FILTER end, function(v) RQL_SOURCE_FILTER = v end) + + local status = controls:CreateFontString(nil, "OVERLAY", "GameFontHighlightSmall") + status:SetPoint("TOPLEFT", controls, "TOPLEFT", 0, -114) + status:SetText("") + RQL_UI.status = status + + -- pager (bottom) + local pager = CreateFrame("Frame", nil, parent) + pager:SetPoint("BOTTOMLEFT", parent, "BOTTOMLEFT", 22, 16) + pager:SetPoint("BOTTOMRIGHT", parent, "BOTTOMRIGHT", -22, 16) + pager:SetHeight(24) + RQL_UI.pager = pager + + local btnPrev = CreateFrame("Button", nil, pager, "UIPanelButtonTemplate") + btnPrev:SetWidth(110) btnPrev:SetHeight(22) + btnPrev:SetPoint("LEFT", pager, "LEFT", 0, 0) + btnPrev:SetText("<< Prev Page") + btnPrev:SetScript("OnClick", function() + RQL_SetCurrentPage(RQL_CurrentPage() - 1) + RQL_UpdateList() + RQL_UpdateStatus() + end) + RQL_UI.btnPrev = btnPrev + + local btnNext = CreateFrame("Button", nil, pager, "UIPanelButtonTemplate") + btnNext:SetWidth(110) btnNext:SetHeight(22) + btnNext:SetPoint("RIGHT", pager, "RIGHT", 0, 0) + btnNext:SetText("Next Page >>") + btnNext:SetScript("OnClick", function() + RQL_SetCurrentPage(RQL_CurrentPage() + 1) + RQL_UpdateList() + RQL_UpdateStatus() + end) + RQL_UI.btnNext = btnNext + + local pageLabel = pager:CreateFontString(nil, "OVERLAY", "GameFontHighlight") + pageLabel:SetPoint("CENTER", pager, "CENTER", 0, 0) + pageLabel:SetText("Page 1 / 1") + RQL_UI.pageLabel = pageLabel + + -- list area + local listArea = CreateFrame("Frame", nil, parent) + listArea:SetPoint("TOPLEFT", parent, "TOPLEFT", 22, -224) + listArea:SetPoint("BOTTOMRIGHT", parent, "BOTTOMRIGHT", -22, 48) + RQL_UI.listArea = listArea + + RQL_UI.rows = {} + for i = 1, RQL_ROWS_VISIBLE do + local row = CreateFrame("Button", nil, listArea) + row:SetHeight(RQL_ROW_HEIGHT) + if i == 1 then + row:SetPoint("TOPLEFT", listArea, "TOPLEFT", 0, 0) + row:SetPoint("TOPRIGHT", listArea, "TOPRIGHT", 0, 0) + else + row:SetPoint("TOPLEFT", RQL_UI.rows[i-1], "BOTTOMLEFT", 0, 0) + row:SetPoint("TOPRIGHT", RQL_UI.rows[i-1], "BOTTOMRIGHT", 0, 0) + end + local hl = row:CreateTexture(nil, "HIGHLIGHT") + hl:SetTexture("Interface\\QuestFrame\\UI-QuestTitleHighlight") + hl:SetBlendMode("ADD") + hl:SetAllPoints(row) + row:SetHighlightTexture(hl) + + local right = row:CreateFontString(nil, "OVERLAY", "GameFontNormalSmall") + right:SetPoint("RIGHT", row, "RIGHT", -4, 0) + right:SetJustifyH("RIGHT") + right:SetHeight(RQL_ROW_HEIGHT) + right:SetWidth(240) + right:SetNonSpaceWrap(false) + row.right = right + + local left = row:CreateFontString(nil, "OVERLAY", "GameFontNormal") + left:SetPoint("LEFT", row, "LEFT", 4, 0) + left:SetPoint("RIGHT", right, "LEFT", -8, 0) + left:SetJustifyH("LEFT") + left:SetHeight(RQL_ROW_HEIGHT) + left:SetNonSpaceWrap(false) + row.left = left + + row:RegisterForClicks("LeftButtonUp", "RightButtonUp") + row:SetScript("OnClick", function() + if this.itemId then + RQL_ShowItem(this.itemId, this.itemName) + return + end + if not this.questId then return end + RQL_ShowQuest(this.questId, this.questLevel, this.questTitle) + end) + RQL_UI.rows[i] = row + end + + -- ---------- Detail view (quest-log style) ---------- + local detail = CreateFrame("Frame", nil, parent) + detail:SetPoint("TOPLEFT", parent, "TOPLEFT", 22, -84) + detail:SetPoint("BOTTOMRIGHT", parent, "BOTTOMRIGHT", -22, 48) + detail:Hide() + RQL_UI.detail = detail + + local dscroll = CreateFrame("ScrollFrame", "RelationshipsQuestAndItemBrowserDetailScroll", detail, "UIPanelScrollFrameTemplate") + dscroll:SetPoint("TOPLEFT", detail, "TOPLEFT", RQL_DETAIL_PAD, -RQL_DETAIL_PAD) + dscroll:SetPoint("BOTTOMRIGHT", detail, "BOTTOMRIGHT", -(RQL_DETAIL_PAD + 24), RQL_DETAIL_PAD) + RQL_UI.detailScroll = dscroll + dscroll:EnableMouseWheel(true) + dscroll:SetScript("OnMouseWheel", function() + local step = 24 + local cur = this:GetVerticalScroll() + local maxs = this:GetVerticalScrollRange() + local nv = cur - (arg1 * step) + if nv < 0 then nv = 0 end + if nv > maxs then nv = maxs end + this:SetVerticalScroll(nv) + end) + + local dcontent = CreateFrame("Frame", nil, dscroll) + -- Inner width: frame(720) - 2*margin(22) - 2*pad(18) - scrollbar(24) ≈ 616 + dcontent:SetWidth(612) dcontent:SetHeight(1) + dscroll:SetScrollChild(dcontent) + RQL_UI.detailContent = dcontent + + -- Title + local dTitle = dcontent:CreateFontString(nil, "OVERLAY", "QuestTitleFont") + dTitle:SetPoint("TOPLEFT", dcontent, "TOPLEFT", 0, 0) + dTitle:SetWidth(612) + dTitle:SetJustifyH("LEFT") + RQL_UI.dTitle = dTitle + + -- Meta line + local dMeta = dcontent:CreateFontString(nil, "OVERLAY", "GameFontHighlightSmall") + dMeta:SetPoint("TOPLEFT", dTitle, "BOTTOMLEFT", 0, -10) + dMeta:SetWidth(612) + dMeta:SetJustifyH("LEFT") + RQL_UI.dMeta = dMeta + + -- Sections + RQL_UI.dObjSection = RQL_MakeDetailSection(dcontent) + RQL_UI.dDescSection = RQL_MakeDetailSection(dcontent) + RQL_UI.dLocSection = RQL_MakeDetailSection(dcontent) + RQL_UI.dPreSection = RQL_MakeDetailSection(dcontent) + RQL_UI.dItemSection = RQL_MakeDetailSection(dcontent) + + local dFooter = dcontent:CreateFontString(nil, "OVERLAY", "QuestFont") + dFooter:SetWidth(612) + dFooter:SetJustifyH("LEFT") + dFooter:Hide() + RQL_UI.dFooter = dFooter + + local btnBack = CreateFrame("Button", nil, parent, "UIPanelButtonTemplate") + btnBack:SetWidth(90) btnBack:SetHeight(22) + btnBack:SetPoint("BOTTOMLEFT", parent, "BOTTOMLEFT", 22, 16) + btnBack:SetText("Back") + btnBack:SetScript("OnClick", function() + local savedPage = RQL_PAGE + RQL_ShowBrowser() + RQL_PAGE = savedPage + RQL_UpdateList() + end) + + local btnLink = CreateFrame("Button", nil, parent, "UIPanelButtonTemplate") + btnLink:SetWidth(130) btnLink:SetHeight(22) + btnLink:SetPoint("LEFT", btnBack, "RIGHT", 6, 0) + btnLink:SetText("Link to Chat") + btnLink:SetScript("OnClick", function() + if RQL_SELECTED_QUEST_ID then + RQL_LinkQuestToChat(RQL_SELECTED_QUEST_ID, nil, nil) + end + end) + btnLink:SetScript("OnEnter", function() + GameTooltip:SetOwner(this, "ANCHOR_TOP") + GameTooltip:AddLine("Insert a clickable quest link into the chat edit box.") + GameTooltip:AddLine("Tip: shift-click a quest in the list to link it directly.", 1,1,1) + GameTooltip:Show() + end) + btnLink:SetScript("OnLeave", function() GameTooltip:Hide() end) + + detail:SetScript("OnShow", function() btnBack:Show(); btnLink:Show() end) + detail:SetScript("OnHide", function() btnBack:Hide(); btnLink:Hide() end) + btnBack:Hide() + btnLink:Hide() + + -- ---------- Item controls (separate search bar for items) ---------- + local iControls = CreateFrame("Frame", nil, parent) + iControls:SetPoint("TOPLEFT", parent, "TOPLEFT", 22, -84) + iControls:SetPoint("TOPRIGHT", parent, "TOPRIGHT", -22, -84) + iControls:SetHeight(132) + iControls:Hide() + RQL_UI.itemControls = iControls + + local iSearchLabel = iControls:CreateFontString(nil, "OVERLAY", "GameFontNormalSmall") + iSearchLabel:SetPoint("TOPLEFT", iControls, "TOPLEFT", 0, 0) + iSearchLabel:SetText("Item Search:") + + local iEdit = CreateFrame("EditBox", "RelationshipsQuestAndItemBrowserItemSearchBox", iControls, "InputBoxTemplate") + iEdit:SetHeight(20) + iEdit:SetWidth(380) + iEdit:SetPoint("TOPLEFT", iControls, "TOPLEFT", 78, 2) + iEdit:SetAutoFocus(nil) + iEdit:SetScript("OnEnterPressed", function() + RQL_ITEM_SEARCH_TEXT = this:GetText() or "" + this:ClearFocus() + RQL_ShowItemBrowser() + end) + iEdit:SetScript("OnEscapePressed", function() this:ClearFocus() end) + iEdit:SetScript("OnTextChanged", function() + RQL_ITEM_SEARCH_TEXT = this:GetText() or "" + RQL_SearchItems() + RQL_UpdateStatus() + RQL_UpdateList() + end) + RQL_UI.itemSearch = iEdit + + local iBtnSearch = CreateFrame("Button", nil, iControls, "UIPanelButtonTemplate") + iBtnSearch:SetWidth(70) iBtnSearch:SetHeight(22) + iBtnSearch:SetPoint("LEFT", iEdit, "RIGHT", 8, 0) + iBtnSearch:SetText("Search") + iBtnSearch:SetScript("OnClick", function() + RQL_ITEM_SEARCH_TEXT = iEdit:GetText() or "" + RQL_ShowItemBrowser() + end) + + local iBtnReset = CreateFrame("Button", nil, iControls, "UIPanelButtonTemplate") + iBtnReset:SetWidth(70) iBtnReset:SetHeight(22) + iBtnReset:SetPoint("LEFT", iBtnSearch, "RIGHT", 4, 0) + iBtnReset:SetText("Reset") + iBtnReset:SetScript("OnClick", function() + RQL_ITEM_SEARCH_TEXT = "" + RQL_ITEM_SOURCE_FILTER = 0 + iEdit:SetText("") + if RQL_UI.ddItemSource then + UIDropDownMenu_SetSelectedValue(RQL_UI.ddItemSource, 0) + UIDropDownMenu_SetText(RQL_SOURCES[1], RQL_UI.ddItemSource) + end + RQL_ShowItemBrowser() + end) + + RQL_UI.ddItemSource = RQL_MakeDropdown( + "RelationshipsQuestAndItemBrowserDDItemSource", iControls, -12, -72, 130, "Source", RQL_SOURCES, + function() return RQL_ITEM_SOURCE_FILTER end, + function(v) RQL_ITEM_SOURCE_FILTER = v end) + + -- The RQL_MakeDropdown reset flow calls RQL_ShowBrowser after selection. + -- Rewrite the item-source dropdown init so it refreshes the ITEM browser. + UIDropDownMenu_Initialize(RQL_UI.ddItemSource, function() + for i, txt in ipairs(RQL_SOURCES) do + local info = {} + info.text = txt + info.value = i - 1 + info.func = function() + RQL_ITEM_SOURCE_FILTER = this.value + UIDropDownMenu_SetSelectedValue(RQL_UI.ddItemSource, this.value) + UIDropDownMenu_SetText(RQL_SOURCES[this.value + 1], RQL_UI.ddItemSource) + RQL_ShowItemBrowser() + end + UIDropDownMenu_AddButton(info) + end + end) + UIDropDownMenu_SetSelectedValue(RQL_UI.ddItemSource, 0) + UIDropDownMenu_SetText(RQL_SOURCES[1], RQL_UI.ddItemSource) + + local iStatus = iControls:CreateFontString(nil, "OVERLAY", "GameFontHighlightSmall") + iStatus:SetPoint("TOPLEFT", iControls, "TOPLEFT", 0, -114) + iStatus:SetText("") + RQL_UI.itemStatus = iStatus + + -- ---------- Item detail view ---------- + local iDetail = CreateFrame("Frame", nil, parent) + iDetail:SetPoint("TOPLEFT", parent, "TOPLEFT", 22, -84) + iDetail:SetPoint("BOTTOMRIGHT", parent, "BOTTOMRIGHT", -22, 48) + iDetail:Hide() + RQL_UI.itemDetail = iDetail + + local iScroll = CreateFrame("ScrollFrame", "RelationshipsQuestAndItemBrowserItemDetailScroll", iDetail, "UIPanelScrollFrameTemplate") + iScroll:SetPoint("TOPLEFT", iDetail, "TOPLEFT", RQL_DETAIL_PAD, -RQL_DETAIL_PAD) + iScroll:SetPoint("BOTTOMRIGHT", iDetail, "BOTTOMRIGHT", -(RQL_DETAIL_PAD + 24), RQL_DETAIL_PAD) + iScroll:EnableMouseWheel(true) + iScroll:SetScript("OnMouseWheel", function() + local step = 24 + local cur = this:GetVerticalScroll() + local maxs = this:GetVerticalScrollRange() + local nv = cur - (arg1 * step) + if nv < 0 then nv = 0 end + if nv > maxs then nv = maxs end + this:SetVerticalScroll(nv) + end) + RQL_UI.itemDetailScroll = iScroll + + local iContent = CreateFrame("Frame", nil, iScroll) + iContent:SetWidth(612) iContent:SetHeight(1) + iScroll:SetScrollChild(iContent) + RQL_UI.itemDetailContent = iContent + + -- Slot art goes behind the item icon. UI-EmptySlot-Disabled is a full + -- empty-slot texture (not just a transparent border), so using OVERLAY + -- made the icon area look like a blank box on Turtle/OctoWoW. + local iIconBorder = iContent:CreateTexture(nil, "BACKGROUND") + iIconBorder:SetTexture("Interface\\Buttons\\UI-EmptySlot-Disabled") + iIconBorder:SetWidth(66) iIconBorder:SetHeight(66) + iIconBorder:SetPoint("TOPLEFT", iContent, "TOPLEFT", -11, 11) + RQL_UI.iIconBorder = iIconBorder + + -- Icon (populated from GetItemInfo in RQL_ShowItem). Sits top-left. + local iIcon = iContent:CreateTexture(nil, "ARTWORK") + iIcon:SetWidth(44) iIcon:SetHeight(44) + iIcon:SetPoint("TOPLEFT", iContent, "TOPLEFT", 0, 0) + iIcon:SetTexCoord(0.08, 0.92, 0.08, 0.92) + iIcon:SetTexture("Interface\\Icons\\INV_Misc_QuestionMark") + RQL_UI.iIcon = iIcon + + local iTitle = iContent:CreateFontString(nil, "OVERLAY", "QuestTitleFont") + iTitle:SetPoint("TOPLEFT", iIcon, "TOPRIGHT", 14, -2) + iTitle:SetWidth(612 - 60) + iTitle:SetJustifyH("LEFT") + RQL_UI.iTitle = iTitle + + local iMeta = iContent:CreateFontString(nil, "OVERLAY", "GameFontHighlight") + iMeta:SetPoint("TOPLEFT", iTitle, "BOTTOMLEFT", 0, -8) + iMeta:SetWidth(612 - 60) + iMeta:SetJustifyH("LEFT") + RQL_UI.iMeta = iMeta + + RQL_UI.iQuestSection = RQL_MakeDetailSection(iContent) + RQL_UI.iQuestButtons = {} + + local iBtnBack = CreateFrame("Button", nil, parent, "UIPanelButtonTemplate") + iBtnBack:SetWidth(90) iBtnBack:SetHeight(22) + iBtnBack:SetPoint("BOTTOMLEFT", parent, "BOTTOMLEFT", 22, 16) + iBtnBack:SetText("Back") + iBtnBack:SetScript("OnClick", function() + local savedPage = RQL_ITEM_PAGE + RQL_ShowItemBrowser() + RQL_ITEM_PAGE = savedPage + RQL_UpdateList() + end) + + local iBtnLink = CreateFrame("Button", nil, parent, "UIPanelButtonTemplate") + iBtnLink:SetWidth(130) iBtnLink:SetHeight(22) + iBtnLink:SetPoint("LEFT", iBtnBack, "RIGHT", 6, 0) + iBtnLink:SetText("Link to Chat") + iBtnLink:SetScript("OnClick", function() + if RQL_SELECTED_ITEM_ID then RQL_LinkItemToChat(RQL_SELECTED_ITEM_ID) end + end) + + iDetail:SetScript("OnShow", function() iBtnBack:Show(); iBtnLink:Show() end) + iDetail:SetScript("OnHide", function() iBtnBack:Hide(); iBtnLink:Hide() end) + iBtnBack:Hide() + iBtnLink:Hide() +end + +-- ---------- Item-detail async cache retry ---------- +-- Vanilla 1.12 clients populate the item cache asynchronously the first +-- time an item is referenced. We keep probing GameTooltip for up to a few +-- seconds after opening an item panel and refresh the description as soon +-- as real tooltip lines come back. +function RQL_ItemDetailRetryTick(elapsed) + -- Deferred chat-link insertion: poll GetItemInfo until the client has + -- cached the real signed hyperlink, then drop it into the edit box. + if RQL_UI.iLinkPendingFor then + RQL_UI.iLinkPendingElapsed = (RQL_UI.iLinkPendingElapsed or 0) + (elapsed or 0) + if RQL_UI.iLinkPendingElapsed >= 0.2 then + RQL_UI.iLinkPendingElapsed = 0 + RQL_UI.iLinkPendingTries = (RQL_UI.iLinkPendingTries or 0) + 1 + local pid = RQL_UI.iLinkPendingFor + if RQL_TryInsertItemLink(pid) then + RQL_UI.iLinkPendingFor = nil + elseif RQL_UI.iLinkPendingTries >= 25 then + RQL_UI.iLinkPendingFor = nil + if DEFAULT_CHAT_FRAME then + DEFAULT_CHAT_FRAME:AddMessage("|cFFFF6060RQL|r Could not fetch item link from server. Try again in a moment.") + end + end + end + end + + if not RQL_UI.iRetryFor then return end + RQL_UI.iRetryElapsed = (RQL_UI.iRetryElapsed or 0) + (elapsed or 0) + if RQL_UI.iRetryElapsed < 0.25 then return end + RQL_UI.iRetryElapsed = 0 + RQL_UI.iRetryTries = (RQL_UI.iRetryTries or 0) + 1 + local id = RQL_UI.iRetryFor + local lines = RQL_ScanItemTooltipLines(id) + if lines and table.getn(lines) > 0 then + RQL_UI.iRetryFor = nil + if RQL_UI.iDesc and RQL_UI.itemDetail and RQL_UI.itemDetail:IsShown() + and RQL_SELECTED_ITEM_ID == id then + RQL_UI.iDesc:SetText(table.concat(lines, "\n")) + if RQL_UI.itemDetailContent and RQL_UI.itemDetailScroll + and RQL_UI.itemDetailScroll.UpdateScrollChildRect then + local h = 40 + 20 + RQL_HEADER_GAP + (RQL_UI.iDesc:GetHeight() or 0) + 60 + local btns = RQL_UI.iQuestButtons or {} + for i = 1, table.getn(btns) do + if btns[i]:IsShown() then h = h + 20 end + end + RQL_UI.itemDetailContent:SetHeight(h + 24) + RQL_UI.itemDetailScroll:UpdateScrollChildRect() + end + end + elseif RQL_UI.iRetryTries >= 20 then + RQL_UI.iRetryFor = nil + end +end + +-- ---------- Item chat linking ---------- +-- Insert a genuine client-cached item link into chat. Vanilla WoW strips +-- user-typed |Hitem:...|h strings before send -- ONLY the |cXXXX|Hitem:... +-- link that GetItemInfo returns after the client has cached the item is +-- treated as a real hyperlink. We warm the cache via SetHyperlink and +-- retry for a few seconds if needed. +local function RQL_TryInsertItemLink(id) + local name, link, quality = GetItemInfo(id) + if not name then return nil end + -- On some 1.12-based clients (Turtle WoW / OctoWoW) GetItemInfo can + -- return the bare itemString ("item:12345:0:0:0") instead of the fully + -- signed "|cXXXXXXXX|Hitem:...|h[Name]|h|r" hyperlink. If we don't + -- detect that we would drop raw text into chat that looks like + -- "item:0:0:0:12345" and is not clickable. Rebuild a proper hyperlink + -- from the pieces we do have. + if not link or not string.find(link, "|H") then + local color = RQL_QUALITY_HEX[quality or 1] or "|cffffffff" + link = color .. "|Hitem:" .. id .. ":0:0:0|h[" .. name .. "]|h|r" + end + if not ChatFrameEditBox then return 1 end + if not ChatFrameEditBox:IsVisible() then ChatFrameEditBox:Show() end + ChatFrameEditBox:SetFocus() + ChatFrameEditBox:Insert(link) + return 1 +end + +function RQL_LinkItemToChat(id) + if not id then return end + -- Force the client to cache the item so GetItemInfo returns the real + -- signed link on the next tick. + RQL_EnsureScanTip() + RQL_UI.scanTip:ClearLines() + RQL_UI.scanTip:SetHyperlink("item:" .. id .. ":0:0:0") + + if RQL_TryInsertItemLink(id) then return end + + -- Not cached yet -- schedule delayed insertion. + RQL_UI.iLinkPendingFor = id + RQL_UI.iLinkPendingElapsed = 0 + RQL_UI.iLinkPendingTries = 0 + if DEFAULT_CHAT_FRAME then + DEFAULT_CHAT_FRAME:AddMessage("|cFF33FF99RQL|r Fetching item data from server, link will drop into chat in a moment...") + end +end + +-- ---------- minimap button ---------- + +local function RQL_SaveMinimapPos() + if not RQL_UI.minimap then return end + RelationshipsQuestAndItemBrowserDB.minimap = RelationshipsQuestAndItemBrowserDB.minimap or {} + local x, y = RQL_UI.minimap:GetCenter() + if x and y then + RelationshipsQuestAndItemBrowserDB.minimap.x = x + RelationshipsQuestAndItemBrowserDB.minimap.y = y + end +end + +local function RQL_RestoreMinimapPos() + if not RQL_UI.minimap then return end + local pos = RelationshipsQuestAndItemBrowserDB.minimap + RQL_UI.minimap:ClearAllPoints() + if pos and pos.x and pos.y then + RQL_UI.minimap:SetPoint("CENTER", UIParent, "BOTTOMLEFT", pos.x, pos.y) + else + RQL_UI.minimap:SetPoint("TOPLEFT", Minimap, "TOPLEFT", -8, -8) + end +end + +local function RQL_BuildMinimapButton() + if RQL_UI.minimap then return end + local btn = CreateFrame("Button", "RelationshipsQuestAndItemBrowserMinimap", UIParent) + btn:SetFrameStrata("MEDIUM") + btn:SetWidth(32) btn:SetHeight(32) + btn:SetMovable(true) + btn:EnableMouse(true) + btn:RegisterForClicks("LeftButtonUp", "RightButtonUp") + btn:RegisterForDrag("LeftButton") + + local icon = btn:CreateTexture(nil, "BACKGROUND") + icon:SetTexture("Interface\\Icons\\INV_Misc_Book_09") + icon:SetWidth(20) icon:SetHeight(20) + icon:SetPoint("CENTER", btn, "CENTER", 0, 1) + + local border = btn:CreateTexture(nil, "OVERLAY") + border:SetTexture("Interface\\Minimap\\MiniMap-TrackingBorder") + border:SetWidth(54) border:SetHeight(54) + border:SetPoint("TOPLEFT", btn, "TOPLEFT", 0, 0) + + local hl = btn:CreateTexture(nil, "HIGHLIGHT") + hl:SetTexture("Interface\\Minimap\\UI-Minimap-ZoomButton-Highlight") + hl:SetBlendMode("ADD") + hl:SetAllPoints(btn) + btn:SetHighlightTexture(hl) + + btn:SetScript("OnClick", function() + if arg1 == "RightButton" then + RelationshipsQuestAndItemBrowserDB.minimap = nil + RQL_RestoreMinimapPos() + else + if RelationshipsQuestAndItemBrowserFrame:IsVisible() then + RelationshipsQuestAndItemBrowserFrame:Hide() + else + RQL_ShowBrowser() + end + end + end) + btn:SetScript("OnDragStart", function() this:StartMoving() end) + btn:SetScript("OnDragStop", function() this:StopMovingOrSizing(); RQL_SaveMinimapPos() end) + btn:SetScript("OnEnter", function() + GameTooltip:SetOwner(this, "ANCHOR_LEFT") + GameTooltip:AddLine("Relationships Quest And Item Browser") + GameTooltip:AddLine("Left-click: open browser", 1,1,1) + GameTooltip:AddLine("Right-click: reset icon to minimap", 1,1,1) + GameTooltip:AddLine("Drag: move anywhere", 1,1,1) + GameTooltip:Show() + end) + btn:SetScript("OnLeave", function() GameTooltip:Hide() end) + RQL_UI.minimap = btn + RQL_RestoreMinimapPos() +end + +-- ---------- chat link plus-button overlay ---------- +-- +-- Behaviour: +-- * A tiny green [+] Button is overlaid directly on top of every quest / +-- item hyperlink that is currently visible in a chat frame. +-- * The [+] tracks the link as chat scrolls: it appears when the message +-- is on screen and hides when it scrolls off. Switching chat tabs also +-- hides / shows it, since inactive tabs' frames are hidden. +-- * Clicking the [+] opens the quest / item in the RQL browser. +-- * The original chat link is untouched, so default Blizzard tooltip, +-- quest popup and shift-insert still work. +-- +-- Why an overlay button instead of an inline "|Hrqlopen:..." link: +-- Some Turtle / OctoWoW builds don't dispatch clicks for unknown link +-- types AND refuse to let addons attach an OnHyperlinkShow script to +-- chat frames. A real Button widget floated over the FontString is the +-- only mechanism that reliably works on those clients. + +local RQL_PLUS_BTN_SIZE = 12 +local RQL_PLUS_POOL = {} +local RQL_PoolIndex = 0 +local RQL_PLUS_MEASURE -- hidden FontString reused to measure prefix widths + +local function RQL_GetMeasurer(refFontString) + if not RQL_PLUS_MEASURE then + RQL_PLUS_MEASURE = UIParent:CreateFontString(nil, "BACKGROUND") + RQL_PLUS_MEASURE:Hide() + end + local obj = refFontString and refFontString.GetFontObject and refFontString:GetFontObject() + if obj then + RQL_PLUS_MEASURE:SetFontObject(obj) + else + -- Fall back to font path / size directly. + local path, size, flags + if refFontString and refFontString.GetFont then path, size, flags = refFontString:GetFont() end + if path and size then RQL_PLUS_MEASURE:SetFont(path, size, flags) end + end + return RQL_PLUS_MEASURE +end + +local function RQL_StripCodes(s) + if type(s) ~= "string" then return "" end + s = string.gsub(s, "|c%x%x%x%x%x%x%x%x", "") + s = string.gsub(s, "|r", "") + s = string.gsub(s, "|T[^|]*|t", "") + -- Strip hyperlink openers/closers but keep the display text between them, + -- since that text renders and consumes width in the source FontString. + s = string.gsub(s, "|H[^|]*|h", "") + s = string.gsub(s, "|h", "") + return s +end + +local function RQL_PlusOnClick() + local e = this and this.rqlEntry + if not e then return end + if e.kind == "quest" then + RQL_ShowQuest(e.id, e.level or 0, e.name) + elseif e.kind == "item" then + RQL_ShowItem(e.id, e.name) + end +end + +local function RQL_PlusOnEnter() + if not (this and this.rqlEntry) then return end + GameTooltip:SetOwner(this, "ANCHOR_RIGHT") + if this.rqlEntry.kind == "quest" then + GameTooltip:AddLine("Open quest in RQL browser") + else + GameTooltip:AddLine("Open item in RQL browser") + end + if this.rqlEntry.name then + GameTooltip:AddLine(this.rqlEntry.name, 1, 1, 1) + end + GameTooltip:Show() +end + +local function RQL_PlusOnLeave() GameTooltip:Hide() end + +local function RQL_AcquirePlusButton() + RQL_PoolIndex = RQL_PoolIndex + 1 + local btn = RQL_PLUS_POOL[RQL_PoolIndex] + if not btn then + btn = CreateFrame("Button", "RQL_PlusButton" .. RQL_PoolIndex, UIParent) + btn:SetFrameStrata("HIGH") + btn:SetWidth(RQL_PLUS_BTN_SIZE) + btn:SetHeight(RQL_PLUS_BTN_SIZE) + local fs = btn:CreateFontString(nil, "OVERLAY", "GameFontNormalSmall") + fs:SetAllPoints(btn) + fs:SetText("|cff33ff99+|r") + btn:SetFontString(fs) + local bg = btn:CreateTexture(nil, "BACKGROUND") + bg:SetAllPoints(btn) + bg:SetTexture(0, 0, 0, 0.6) + local hl = btn:CreateTexture(nil, "HIGHLIGHT") + hl:SetAllPoints(btn) + hl:SetTexture(1, 1, 1, 0.30) + btn:SetHighlightTexture(hl) + btn:SetScript("OnClick", RQL_PlusOnClick) + btn:SetScript("OnEnter", RQL_PlusOnEnter) + btn:SetScript("OnLeave", RQL_PlusOnLeave) + RQL_PLUS_POOL[RQL_PoolIndex] = btn + end + return btn +end + +local function RQL_HideUnusedButtons() + local i = RQL_PoolIndex + 1 + while RQL_PLUS_POOL[i] do + RQL_PLUS_POOL[i]:Hide() + RQL_PLUS_POOL[i].rqlEntry = nil + i = i + 1 + end +end + +-- Word-wrap `plain` using the same width the FontString wraps at, and +-- return (lineCount, lastLineWidth, lineHeight). Used so the [+] follows a +-- message onto its wrapped continuation line instead of flying off the right +-- edge of the chat frame at the end of the (never-rendered) full-width line. +local function RQL_WrapMetrics(fs, plain) + local measurer = RQL_GetMeasurer(fs) + local _, fontSize = fs:GetFont() + fontSize = fontSize or 12 + local spacing = 0 + if fs.GetSpacing then spacing = fs:GetSpacing() or 0 end + local lineHeight = fontSize + spacing + + local maxW = 0 + if fs.GetWidth then maxW = fs:GetWidth() or 0 end + if maxW <= 0 then + local L, R = fs:GetLeft(), fs:GetRight() + if L and R then maxW = R - L end + end + + measurer:SetText(plain or "") + local totalW = measurer:GetStringWidth() or 0 + if maxW <= 0 or totalW <= maxW then + return 1, totalW, lineHeight + end + + local lines = 1 + local lineText = "" + local lineW = totalW + local i = 1 + local len = string.len(plain) + while i <= len do + local sp = string.find(plain, " ", i, true) + local word + if sp then + word = string.sub(plain, i, sp) + i = sp + 1 + else + word = string.sub(plain, i) + i = len + 1 + end + local candidate = lineText .. word + measurer:SetText(candidate) + local cw = measurer:GetStringWidth() or 0 + if cw > maxW and lineText ~= "" then + lines = lines + 1 + lineText = word + measurer:SetText(lineText) + lineW = measurer:GetStringWidth() or 0 + else + lineText = candidate + lineW = cw + end + end + return lines, lineW, lineHeight +end + +-- Place a [+] button at the end of the message's LAST rendered line (which +-- may be a wrapped continuation, not the source string's true end). Multiple +-- [+] icons for a message stagger horizontally past that anchor, and wrap +-- down to a further line if they would otherwise exit the chat frame's +-- right edge, so nothing gets clipped or pushed off the frame. +local function RQL_PlaceButton(fs, anchorText, entry, frame, stagger) + if not fs or not fs.GetLeft then return end + local left = fs:GetLeft() + local top = fs:GetTop() + if not left or not top then return end + + local frameLeft = frame and frame:GetLeft() + local frameRight = frame and frame:GetRight() + + local plain = RQL_StripCodes(anchorText) + local lines, lastW, lineH = RQL_WrapMetrics(fs, plain) + + local gap = 2 + local step = RQL_PLUS_BTN_SIZE + 2 + local baseX = left + lastW + gap + local baseY = top - 1 - (lines - 1) * lineH + + local x = baseX + (stagger or 0) * step + local y = baseY + + -- If the staggered [+] would run past the chat frame's right edge, + -- wrap it to a new line beneath the message rather than clipping it. + if frameRight and (x + RQL_PLUS_BTN_SIZE) > frameRight then + local firstRowSlots = math.floor((frameRight - baseX) / step) + if firstRowSlots < 0 then firstRowSlots = 0 end + local wrapLeft = frameLeft or left + local wrapRowSlots = math.floor((frameRight - wrapLeft) / step) + if wrapRowSlots < 1 then wrapRowSlots = 1 end + local s = stagger or 0 + if s < firstRowSlots then + x = baseX + s * step + y = baseY + else + local over = s - firstRowSlots + local row = 1 + math.floor(over / wrapRowSlots) + local col = over - (row - 1) * wrapRowSlots + x = wrapLeft + col * step + y = baseY - row * step + end + end + + if frameLeft and x < frameLeft then x = frameLeft end + + local btn = RQL_AcquirePlusButton() + btn:ClearAllPoints() + -- Position from UIParent BOTTOMLEFT using the FontString's absolute top. + btn:SetPoint("TOPLEFT", UIParent, "BOTTOMLEFT", x, y) + btn.rqlEntry = entry + btn:Show() +end + +local function RQL_ProcessChatFrame(frame) + if not frame or not frame.IsVisible or not frame:IsVisible() then return end + if not frame.GetRegions then return end + local regions = { frame:GetRegions() } + local n = table.getn(regions) + for i = 1, n do + local r = regions[i] + if r and r.GetObjectType and r:GetObjectType() == "FontString" + and r.IsVisible and r:IsVisible() then + local t = r:GetText() + if t and string.find(t, "|H", 1, 1) then + -- Collect every quest/item link with its span in `t`, then + -- place one [+] per link. Position rule: + -- * link is followed by more text in the same line -> put + -- the [+] after the FULL message text (last character) + -- * link is at the very end of the message -> put + -- the [+] immediately after the link's display text + local matches = {} + local pos = 1 + while 1 do + local s, e, id, lvl, name = string.find(t, + "|Hquest:(%d+):(%-?%d+)|h%[([^%]]*)%]|h", pos) + if not s then break end + table.insert(matches, { + s = s, e = e, + entry = { kind = "quest", id = tonumber(id), + level = tonumber(lvl), name = name }, + }) + pos = e + 1 + end + pos = 1 + while 1 do + local s, e, id, name = string.find(t, + "|Hitem:(%d+)[^|]*|h%[([^%]]*)%]|h", pos) + if not s then break end + table.insert(matches, { + s = s, e = e, + entry = { kind = "item", id = tonumber(id), name = name }, + }) + pos = e + 1 + end + table.sort(matches, function(a, b) return a.s < b.s end) + + -- Place all [+] buttons grouped together at the end of the + -- message (after the last character / link) so multiple linked + -- quests / items get a run of plus icons like "+++" rather + -- than being spread throughout the line. `stagger` shifts each + -- subsequent button one icon-width to the right. + for j = 1, table.getn(matches) do + RQL_PlaceButton(r, t, matches[j].entry, frame, j - 1) + end + end + end + end +end + +local RQL_PLUS_TIMER = 0 +function RQL_PlusTick(elapsed) + RQL_PLUS_TIMER = RQL_PLUS_TIMER + (elapsed or 0) + if RQL_PLUS_TIMER < 0.03 then return end + RQL_PLUS_TIMER = 0 + RQL_PoolIndex = 0 + local maxFrames = NUM_CHAT_WINDOWS or 7 + for i = 1, maxFrames do + local f = getglobal("ChatFrame" .. i) + if f then RQL_ProcessChatFrame(f) end + end + RQL_HideUnusedButtons() +end + +local function RQL_HookChatLinks() + -- Nothing to hook up-front; the OnUpdate ticker in the event handler + -- calls RQL_PlusTick() every frame and it drives everything else. +end +-- ---------- events / slash ---------- + +RelationshipsQuestAndItemBrowser:SetScript("OnEvent", function() + if event == "ADDON_LOADED" and arg1 == "RelationshipsQuestAndItemBrowser" then + RelationshipsQuestAndItemBrowserDB = RelationshipsQuestAndItemBrowserDB or {} + elseif event == "PLAYER_LOGOUT" then + if RQL_UI and RQL_UI.minimap then + RelationshipsQuestAndItemBrowserDB = RelationshipsQuestAndItemBrowserDB or {} + RelationshipsQuestAndItemBrowserDB.minimap = RelationshipsQuestAndItemBrowserDB.minimap or {} + local cx, cy = RQL_UI.minimap:GetCenter() + if cx and cy then + RelationshipsQuestAndItemBrowserDB.minimap.x = cx + RelationshipsQuestAndItemBrowserDB.minimap.y = cy + end + end + elseif event == "PLAYER_LOGIN" then + RQL_HookChatLinks() + RQL_BuildUI() + RQL_BuildMinimapButton() + -- Item-detail async tooltip retry ticker. + RelationshipsQuestAndItemBrowser:SetScript("OnUpdate", function() + RQL_ItemDetailRetryTick(arg1) + if RQL_PlusTick then RQL_PlusTick(arg1) end + end) + if RQL_ApplyBackground then + RQL_ApplyBackground(RQL_GetStartupBackground()) + end + if DEFAULT_CHAT_FRAME then + DEFAULT_CHAT_FRAME:AddMessage("|cFF33FF99Relationships Quest And Item Browser|r loaded. Click quest links, /rql, or use the minimap book icon.") + end + end +end) + +local function RQL_SetFilterFromWord(kind, value) + value = string.lower(value or "") + if kind == "level" then + RQL_LEVEL_FILTER = 0 + if value == "1-9" or value == "1" then RQL_LEVEL_FILTER = 1 + elseif value == "10-19" or value == "10" then RQL_LEVEL_FILTER = 2 + elseif value == "20-29" or value == "20" then RQL_LEVEL_FILTER = 3 + elseif value == "30-39" or value == "30" then RQL_LEVEL_FILTER = 4 + elseif value == "40-49" or value == "40" then RQL_LEVEL_FILTER = 5 + elseif value == "50-59" or value == "50" then RQL_LEVEL_FILTER = 6 + elseif value == "60" or value == "60+" then RQL_LEVEL_FILTER = 7 end + elseif kind == "type" then + RQL_TYPE_FILTER = 0 + if value == "normal" then RQL_TYPE_FILTER = 1 + elseif value == "elite" or value == "group" then RQL_TYPE_FILTER = 2 + elseif value == "dungeon" or value == "raid" then RQL_TYPE_FILTER = 3 + elseif value == "pvp" then RQL_TYPE_FILTER = 4 + elseif value == "class" then RQL_TYPE_FILTER = 5 + elseif value == "profession" or value == "skill" then RQL_TYPE_FILTER = 6 + elseif value == "event" or value == "seasonal" then RQL_TYPE_FILTER = 7 end + elseif kind == "faction" then + RQL_FACTION_FILTER = 0 + if value == "alliance" or value == "a" then RQL_FACTION_FILTER = 1 + elseif value == "horde" or value == "h" then RQL_FACTION_FILTER = 2 + elseif value == "neutral" or value == "n" or value == "both" then RQL_FACTION_FILTER = 3 end + elseif kind == "source" then + RQL_SOURCE_FILTER = 0 + if value == "vanilla" then RQL_SOURCE_FILTER = 1 + elseif value == "turtle" or value == "octo" or value == "octowow" then RQL_SOURCE_FILTER = 2 end + end +end + +SLASH_RELATIONSHIPSQUESTANDITEMBROWSER1 = "/rql" +SLASH_RELATIONSHIPSQUESTANDITEMBROWSER2 = "/questbrowser" +SLASH_RELATIONSHIPSQUESTANDITEMBROWSER3 = "/rqib" +SLASH_RELATIONSHIPSQUESTANDITEMBROWSER4 = "/questitembrowser" +SlashCmdList["RELATIONSHIPSQUESTANDITEMBROWSER"] = function(msg) + msg = msg or "" + local _, _, cmd, rest = string.find(msg, "^%s*(%S+)%s*(.-)%s*$") + cmd = cmd and string.lower(cmd) or "" + if cmd == "" then + RQL_ShowBrowser() + elseif cmd == "close" or cmd == "hide" then + RelationshipsQuestAndItemBrowserFrame:Hide() + elseif cmd == "search" then + RQL_SEARCH_TEXT = rest or "" + if RQL_UI.search then RQL_UI.search:SetText(RQL_SEARCH_TEXT) end + RQL_ShowBrowser() + elseif cmd == "level" or cmd == "type" or cmd == "faction" or cmd == "source" then + RQL_SetFilterFromWord(cmd, rest) + RQL_ShowBrowser() + elseif cmd == "reset" then + RQL_SEARCH_TEXT = "" + RQL_LEVEL_FILTER = 0; RQL_TYPE_FILTER = 0 + RQL_FACTION_FILTER = 0; RQL_SOURCE_FILTER = 0 + if RQL_UI.search then RQL_UI.search:SetText("") end + RQL_ShowBrowser() + elseif cmd == "quest" and rest then + local id = tonumber(rest) + if id then RQL_ShowQuest(id, 0, nil) end + elseif cmd == "items" then + RQL_ITEM_SEARCH_TEXT = rest or "" + if RQL_UI.itemSearch then RQL_UI.itemSearch:SetText(RQL_ITEM_SEARCH_TEXT) end + RQL_ShowItemBrowser() + elseif cmd == "item" and rest then + local id = tonumber(rest) + if id then RQL_ShowItem(id, nil) end + else + DEFAULT_CHAT_FRAME:AddMessage("|cFF33FF99RQL|r usage:") + DEFAULT_CHAT_FRAME:AddMessage(" /rql open browser") + DEFAULT_CHAT_FRAME:AddMessage(" /rql search search") + DEFAULT_CHAT_FRAME:AddMessage(" /rql level 20-29 filter level") + DEFAULT_CHAT_FRAME:AddMessage(" /rql type dungeon filter type") + DEFAULT_CHAT_FRAME:AddMessage(" /rql faction alliance filter faction") + DEFAULT_CHAT_FRAME:AddMessage(" /rql source turtle filter source") + DEFAULT_CHAT_FRAME:AddMessage(" /rql quest show a specific quest") + DEFAULT_CHAT_FRAME:AddMessage(" /rql items open item browser and search") + DEFAULT_CHAT_FRAME:AddMessage(" /rql item show a specific item") + DEFAULT_CHAT_FRAME:AddMessage(" /rql reset reset filters") + end +end diff --git a/RelationshipsQuestAndItemBrowser.toc b/RelationshipsQuestAndItemBrowser.toc new file mode 100644 index 0000000..1107b21 --- /dev/null +++ b/RelationshipsQuestAndItemBrowser.toc @@ -0,0 +1,14 @@ +## Interface: 11200 +## Title: Relationships Quest And Item Browser +## Notes: Click quest and item links in chat, browse and search the full quest and item database. +## Author: Relationship +## Version: 1.0 +## SavedVariables: RelationshipsQuestAndItemBrowserDB +RelationshipsQuestAndItemBrowser.xml +RelationshipsQuestAndItemBrowserData_Init.lua +RelationshipsQuestAndItemBrowserData_Quests.lua +RelationshipsQuestAndItemBrowserData_Units.lua +RelationshipsQuestAndItemBrowserData_Objects.lua +RelationshipsQuestAndItemBrowserData_Items.lua +RelationshipsQuestAndItemBrowserData_Zones.lua +RelationshipsQuestAndItemBrowser.lua diff --git a/RelationshipsQuestAndItemBrowser.xml b/RelationshipsQuestAndItemBrowser.xml new file mode 100644 index 0000000..70140bd --- /dev/null +++ b/RelationshipsQuestAndItemBrowser.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + if arg1 == "LeftButton" then this:StartMoving() end + if arg1 == "LeftButton" then this:StopMovingOrSizing() end + this:StopMovingOrSizing() + + + diff --git a/RelationshipsQuestAndItemBrowserData_Init.lua b/RelationshipsQuestAndItemBrowserData_Init.lua new file mode 100644 index 0000000..7e5af31 --- /dev/null +++ b/RelationshipsQuestAndItemBrowserData_Init.lua @@ -0,0 +1,7 @@ +-- Database root for bundled vanilla/Turtle quest data. +RelationshipsQuestAndItemBrowserData = RelationshipsQuestAndItemBrowserData or {} +RelationshipsQuestAndItemBrowserData["quests"] = RelationshipsQuestAndItemBrowserData["quests"] or {} +RelationshipsQuestAndItemBrowserData["units"] = RelationshipsQuestAndItemBrowserData["units"] or {} +RelationshipsQuestAndItemBrowserData["objects"] = RelationshipsQuestAndItemBrowserData["objects"] or {} +RelationshipsQuestAndItemBrowserData["items"] = RelationshipsQuestAndItemBrowserData["items"] or {} +RelationshipsQuestAndItemBrowserData["zones"] = RelationshipsQuestAndItemBrowserData["zones"] or {} \ No newline at end of file diff --git a/RelationshipsQuestAndItemBrowserData_Items.lua b/RelationshipsQuestAndItemBrowserData_Items.lua new file mode 100644 index 0000000..c099306 --- /dev/null +++ b/RelationshipsQuestAndItemBrowserData_Items.lua @@ -0,0 +1,26018 @@ +-- Relationships Quest And Item Browser bundled quest database. +-- Source data: pfQuest and pfQuest-turtle (MIT). + +-- Source: https://raw.githubusercontent.com/shagu/pfQuest/master/db/enUS/items.lua +RelationshipsQuestAndItemBrowserData["items"]["enUS"] = { + [17] = "Martin Fury", + [25] = "Worn Shortsword", + [35] = "Bent Staff", + [36] = "Worn Mace", + [37] = "Worn Axe", + [38] = "Recruit\'s Shirt", + [39] = "Recruit\'s Pants", + [40] = "Recruit\'s Boots", + [41] = "OLDRecruit\'s Belt", + [42] = "OLDSquire\'s Belt", + [43] = "Squire\'s Boots", + [44] = "Squire\'s Pants", + [45] = "Squire\'s Shirt", + [46] = "OLDFootpad\'s Belt", + [47] = "Footpad\'s Shoes", + [48] = "Footpad\'s Pants", + [49] = "Footpad\'s Shirt", + [50] = "OLDInitiate\'s Belt", + [51] = "Neophyte\'s Boots", + [52] = "Neophyte\'s Pants", + [53] = "Neophyte\'s Shirt", + [54] = "OLDNovice\'s Belt", + [55] = "Apprentice\'s Boots", + [56] = "Apprentice\'s Robe", + [57] = "Acolyte\'s Robe", + [58] = "OLDAcolyte\'s Belt", + [59] = "Acolyte\'s Shoes", + [60] = "Layered Tunic", + [61] = "Dwarven Leather Pants", + [77] = "Deprecated Outfitter Cloth Armor", + [79] = "Dwarven Cloth Britches", + [80] = "Soft Fur-lined Shoes", + [85] = "Dirty Leather Vest", + [86] = "Deprecated Old Belt", + [87] = "Deprecated Old Boots", + [88] = "Deprecated Old Pants", + [89] = "OLDThick Trapper\'s Shirt", + [90] = "OLDDwarven Initiate\'s Belt", + [91] = "OLDDwarven Initiate\'s Pants", + [92] = "OLDDwarven Initiate\'s Boots", + [93] = "OLDDwarven Initiate\'s Shirt", + [94] = "Deprecated Dwarven Novice\'s Belt", + [95] = "Deprecated Dwarven Novice\'s Boots", + [97] = "Deprecated Dwarven Novice\'s Robe", + [98] = "Deprecated Dwarven Squire\'s Belt", + [99] = "Deprecated Dwarven Squire\'s Boots", + [100] = "Deprecated Dwarven Squire\'s Pants", + [101] = "Deprecated Dwarven Squire\'s Shirt", + [102] = "Deprecated Dwarven Recruit\'s Belt", + [103] = "Deprecated Dwarven Recruit\'s Boots", + [104] = "Deprecated Sturdy Brown Pants", + [105] = "Deprecated Dwarven Recruit\'s Shirt", + [113] = "Deprecated Dwarven Apprentice Pants", + [114] = "Deprecated Dwarven Apprentice Boots", + [115] = "Deprecated Dwarven Apprentice Belt", + [117] = "Tough Jerky", + [118] = "Minor Healing Potion", + [119] = "Deprecated Rogue\'s Vest", + [120] = "Thug Pants", + [121] = "Thug Boots", + [122] = "OLDThug Belt", + [123] = "Deprecated Orc Apprentice Shirt", + [124] = "Deprecated Orc Apprentice Pants", + [125] = "Deprecated Orc Apprentice Boots", + [126] = "Deprecated Orc Apprentice Belt", + [127] = "Trapper\'s Shirt", + [128] = "Deprecated Tauren Trapper\'s Pants", + [129] = "Rugged Trapper\'s Boots", + [130] = "Deprecated Tauren Trapper\'s Belt", + [131] = "Deprecated Orc Acolyte\'s Belt", + [132] = "Deprecated Orc Acolyte\'s Boots", + [133] = "Deprecated Orc Acolyte\'s Shirt", + [134] = "Deprecated Stiff Leather Shirt", + [135] = "Deprecated Stiff Leather Pants", + [136] = "Deprecated Old Leather Boots", + [137] = "OLDNeophyte\'s Belt", + [138] = "Deprecated War Harness", + [139] = "Brawler\'s Pants", + [140] = "Brawler\'s Boots", + [141] = "OLDBrawler\'s Belt", + [143] = "Monster - Shield, Stormwind Guard", + [146] = "OLDRugged Trapper\'s Belt", + [147] = "Rugged Trapper\'s Pants", + [148] = "Rugged Trapper\'s Shirt", + [149] = "Deprecated Tauren Apprentice Belt", + [150] = "Deprecated Tauren Apprentice Pants", + [151] = "Deprecated Tauren Apprentice Shirt", + [152] = "OLDPrimitive Leather Belt", + [153] = "Primitive Kilt", + [154] = "Primitive Mantle", + [155] = "Deprecated Tauren Recruit\'s Belt", + [156] = "Deprecated Tauren Recruit\'s Pants", + [157] = "Deprecated Tauren Recruit\'s Shirt", + [159] = "Refreshing Spring Water", + [182] = "Garrick\'s Head", + [184] = "Deprecated Small Brown Pouch", + [192] = "Martin Thunder", + [193] = "Tattered Cloth Vest", + [194] = "Tattered Cloth Pants", + [195] = "Tattered Cloth Boots", + [200] = "Thick Cloth Vest", + [201] = "Thick Cloth Pants", + [202] = "Thick Cloth Shoes", + [203] = "Thick Cloth Gloves", + [209] = "Dirty Leather Pants", + [210] = "Dirty Leather Boots", + [236] = "Cured Leather Armor", + [237] = "Cured Leather Pants", + [238] = "Cured Leather Boots", + [239] = "Cured Leather Gloves", + [285] = "Scalemail Vest", + [286] = "Scalemail Pants", + [287] = "Scalemail Boots", + [414] = "Dalaran Sharp", + [422] = "Dwarven Mild", + [527] = "Deprecated Gnoll War Beads", + [537] = "Dull Frenzy Scale", + [555] = "Rough Vulture Feathers", + [556] = "Buzzard Beak", + [647] = "Destiny", + [710] = "Bracers of the People\'s Militia", + [711] = "Tattered Cloth Gloves", + [714] = "Dirty Leather Gloves", + [718] = "Scalemail Gloves", + [719] = "Rabbit Handler Gloves", + [720] = "Brawler Gloves", + [723] = "Goretusk Liver", + [724] = "Goretusk Liver Pie", + [725] = "Gnoll Paw", + [727] = "Notched Shortsword", + [728] = "Recipe: Westfall Stew", + [729] = "Stringy Vulture Meat", + [730] = "Murloc Eye", + [731] = "Goretusk Snout", + [732] = "Okra", + [733] = "Westfall Stew", + [734] = "Deprecated Malakai\'s Medallion", + [735] = "Rolf and Malakai\'s Medallions", + [737] = "Holy Spring Water", + [738] = "Sack of Barley", + [739] = "Sack of Corn", + [740] = "Sack of Rye", + [741] = "Deprecated Copper Ingot", + [742] = "A Sycamore Branch", + [743] = "Bundle of Charred Oak", + [744] = "Thunderbrew\'s Boot Flask", + [745] = "Marshal McBride\'s Documents", + [746] = "Lord Brandon\'s Tabard (Test)", + [748] = "Stormwind Armor Marker", + [750] = "Tough Wolf Meat", + [751] = "Deprecated Wolf Femur", + [752] = "Red Burlap Bandana", + [753] = "Dragonmaw Shortsword", + [754] = "Shortsword of Vengeance", + [755] = "Melted Candle", + [756] = "Tunnel Pick", + [761] = "Deprecated Elwynn Trout", + [763] = "Ice-covered Bracers", + [765] = "Silverleaf", + [766] = "Flanged Mace", + [767] = "Long Bo Staff", + [768] = "Lumberjack Axe", + [769] = "Chunk of Boar Meat", + [770] = "Pointy Crocolisk Tooth", + [771] = "Chipped Boar Tusk", + [772] = "Large Candle", + [773] = "Gold Dust", + [774] = "Malachite", + [776] = "Vendetta", + [777] = "Prowler Teeth", + [778] = "Kobold Excavation Pick", + [779] = "Shiny Seashell", + [780] = "Torn Murloc Fin", + [781] = "Stone Gnoll Hammer", + [782] = "Painted Gnoll Armband", + [783] = "Light Hide", + [784] = "Deprecated Tiny Flame Sac", + [785] = "Mageroyal", + [786] = "Deprecated Pure Copper Ingot", + [787] = "Slitherskin Mackerel", + [788] = "Test Fire Sword", + [789] = "Stout Battlehammer", + [790] = "Forester\'s Axe", + [791] = "Gnarled Ash Staff", + [792] = "Knitted Sandals", + [793] = "Knitted Gloves", + [794] = "Knitted Pants", + [795] = "Knitted Tunic", + [796] = "Rough Leather Boots", + [797] = "Rough Leather Gloves", + [798] = "Rough Leather Pants", + [799] = "Rough Leather Vest", + [804] = "Large Blue Sack", + [805] = "Small Red Pouch", + [806] = "Deprecated Brown Leather Satchel", + [807] = "Deprecated Iron Ingot", + [808] = "Deprecated Malachite", + [809] = "Bloodrazor", + [810] = "Hammer of the Northern Wind", + [811] = "Axe of the Deep Woods", + [812] = "Glowing Brightwood Staff", + [813] = "Broken Cog", + [814] = "Flask of Oil", + [816] = "Small Hand Blade", + [818] = "Tigerseye", + [820] = "Slicer Blade", + [821] = "Riverpaw Leather Vest", + [823] = "Deprecated Horse Summoning (Mount)", + [826] = "Brutish Riverpaw Axe", + [827] = "Wicked Blackjack", + [828] = "Small Blue Pouch", + [829] = "Red Leather Bandana", + [832] = "Silver Defias Belt", + [833] = "Lifestone", + [835] = "Large Rope Net", + [836] = "Deprecated Heavy Net", + [837] = "Heavy Weave Armor", + [838] = "Heavy Weave Pants", + [839] = "Heavy Weave Gloves", + [840] = "Heavy Weave Shoes", + [841] = "Furlbrow\'s Pocket Watch", + [842] = "Deprecated Wolf Summoning (Mount)", + [843] = "Tanned Leather Boots", + [844] = "Tanned Leather Gloves", + [845] = "Tanned Leather Pants", + [846] = "Tanned Leather Jerkin", + [847] = "Chainmail Armor", + [848] = "Chainmail Pants", + [849] = "Chainmail Boots", + [850] = "Chainmail Gloves", + [851] = "Cutlass", + [852] = "Mace", + [853] = "Hatchet", + [854] = "Quarter Staff", + [855] = "Deprecated White Leather Satchel", + [856] = "Blue Leather Bag", + [857] = "Large Red Sack", + [858] = "Lesser Healing Potion", + [859] = "Fine Cloth Shirt", + [860] = "Cavalier\'s Boots", + [862] = "Runed Ring", + [863] = "Gloom Reaper", + [864] = "Knightly Longsword", + [865] = "Leaden Mace", + [866] = "Monk\'s Staff", + [867] = "Gloves of Holy Might", + [868] = "Ardent Custodian", + [869] = "Dazzling Longsword", + [870] = "Fiery War Axe", + [871] = "Flurry Axe", + [872] = "Rockslicer", + [873] = "Staff of Jordan", + [875] = "Brown Horse Summoning", + [876] = "Worn Wooden Buckler", + [877] = "Deprecated Old Skull", + [878] = "Fist-sized Spinneret", + [880] = "Staff of Horrors", + [883] = "Deprecated Fire Eyed Skull", + [884] = "Ghoul Rib", + [885] = "Black Metal Axe", + [886] = "Black Metal Shortsword", + [887] = "Pound of Flesh", + [888] = "Naga Battle Gloves", + [889] = "A Dusty Unsent Letter", + [890] = "Twisted Chanter\'s Staff", + [892] = "Gnoll Casting Gloves", + [893] = "Dire Wolf Fang", + [894] = "Deprecated Ravager Claw", + [895] = "Worgen Skull", + [896] = "Worgen Fang", + [897] = "Madwolf Bracers", + [898] = "Deprecated Broken Venomweb Fang", + [899] = "Venom Web Fang", + [900] = "Deprecated Nightmare Summoning (Mount)", + [901] = "Deptecated White Stallion Summoning (Mount)", + [902] = "Deprecated Palomino Summoning (Mount)", + [903] = "Deprecated Pinto Summoning (Mount)", + [905] = "Brown Leather Shoulderpads (Test)", + [906] = "Tan Leather Shoulderpads (Test)", + [907] = "Black Mail Shoulderpads of might (Test)", + [908] = "Plate Shoulderpad (Test)", + [909] = "Silver Mail Shoulderpads (Test)", + [910] = "An Undelivered Letter", + [911] = "Ironwood Treebranch", + [913] = "Huge Ogre Sword", + [914] = "Large Ogre Chain Armor", + [915] = "Red Silk Bandana", + [916] = "A Torn Journal Page", + [917] = "Deprecated Shadow Leather Armor", + [918] = "Deviate Hide Pack", + [920] = "Wicked Spiked Mace", + [921] = "A Faded Journal Page", + [922] = "Dacian Falx", + [923] = "Longsword", + [924] = "Maul", + [925] = "Flail", + [926] = "Battle Axe", + [927] = "Double Axe", + [928] = "Long Staff", + [929] = "Healing Potion", + [930] = "Deprecated Deep Pocket Pouch", + [931] = "Deprecated Heavy Brown Sack", + [932] = "Fel Steed Saddlebags", + [933] = "Large Rucksack", + [934] = "Stalvan\'s Reaper", + [935] = "Night Watch Shortsword", + [936] = "Midnight Mace", + [937] = "Black Duskwood Staff", + [938] = "Muddy Journal Pages", + [939] = "A Bloodstained Journal Page", + [940] = "Robes of Insight", + [941] = "Deprecated Speedstone", + [942] = "Freezing Band", + [943] = "Warden Staff", + [944] = "Elemental Mage Staff", + [945] = "Shadow Sword", + [948] = "Nature Sword", + [951] = "Tome of Whirlwind (TEST)", + [954] = "Scroll of Strength", + [955] = "Scroll of Intellect", + [956] = "Deprecated Area Trigger Flag - Jasperlode mine", + [957] = "William\'s Shipment", + [958] = "Deprecated Area Trigger Flag - Darkhollow Mine", + [960] = "Deprecated Area Trigger Flag - Fargodeep", + [961] = "Healing Herb", + [962] = "Pork Belly Pie", + [964] = "Deprecated Red Linen Shirt", + [965] = "Deprecated Red Linen Sack", + [966] = "Tome of Frost Shield", + [967] = "Tome of Frost Ward", + [968] = "Tome of Fire Blast", + [973] = "Tome of Fireball II", + [974] = "Tome of Frost Armor II", + [975] = "Tome of Chains of Ice", + [976] = "Tome of Remove Curse", + [980] = "Tome of Frost Shield II", + [981] = "Bernice\'s Necklace", + [983] = "Red Linen Sash", + [985] = "Tome of Khadgar\'s Unlocking", + [986] = "Tome of Frostbolt II", + [989] = "Tome of Frost Nova", + [992] = "Tome of Fireball III", + [994] = "Tome of Ice Armor", + [996] = "Ring of Righteous Flame (TEST)", + [997] = "Fire Sword of Crippling", + [1002] = "Tome of Lesser Invisibility", + [1004] = "Tome of Chains of Ice II", + [1006] = "Brass Collar", + [1008] = "Well-used Sword", + [1009] = "Compact Hammer", + [1010] = "Gnarled Short Staff", + [1011] = "Sharp Axe", + [1013] = "Iron Rivet", + [1014] = "Large Moneybag (old)", + [1015] = "Lean Wolf Flank", + [1016] = "Deprecated Lurker Leg", + [1017] = "Seasoned Wolf Kabob", + [1018] = "Chows Blade of DOOM! (Test)", + [1019] = "Red Linen Bandana", + [1020] = "Leather Helmet D (Test)", + [1021] = "Leather Helmet A (test)", + [1022] = "Mail Helmet D (test)", + [1023] = "Mail Helmet C (test)", + [1024] = "Plate Helmet D2 (test)", + [1025] = "Plate Helmet D1 (Test)", + [1026] = "Plate Helmet D3 (test)", + [1027] = "Mail Helmet A (Test)", + [1028] = "Deprecated Dented Skullcap", + [1029] = "Tablet of Serpent Totem", + [1030] = "Tablet of Unyielding Will", + [1031] = "Tablet of Molten Blast", + [1032] = "Tablet of Agitating Totem", + [1033] = "Tablet of Nullify Poison", + [1034] = "Tablet of Undying Strength", + [1035] = "Tablet of Call Spirit", + [1036] = "Tablet of Nullify Disease", + [1037] = "Tablet of Lightning Bolt II", + [1038] = "Tablet of Restoration II", + [1041] = "Horn of the Black Wolf", + [1042] = "Deprecated Summon Winter Wolf (Mount)", + [1043] = "Deprecated Summon Redwolf (Mount)", + [1044] = "Deprecated Summon Brown Wolf (Mount)", + [1046] = "Deprecated Light Blunderbuss", + [1047] = "Deprecated Heavy Blunderbuss", + [1048] = "Tablet of Lightning Shield II", + [1049] = "Tablet of Purge", + [1052] = "Tablet of Spirit Armor II", + [1053] = "Tablet of Molten Blast II", + [1057] = "Tablet of Restoration III", + [1058] = "Tablet of Lightning Bolt III", + [1061] = "Tablet of Nullify Poison II", + [1063] = "Tablet of Nullify Disease II", + [1072] = "Full Moonshine", + [1074] = "Hard Spider Leg Tip", + [1075] = "Shadowhide Pendant", + [1076] = "Defias Renegade Ring", + [1077] = "Defias Mage Ring", + [1078] = "Deprecated Writ of Lakeshire", + [1080] = "Tough Condor Meat", + [1081] = "Crisp Spider Meat", + [1082] = "Redridge Goulash", + [1083] = "Glyph of Azora", + [1084] = "Codex of Renew", + [1085] = "Codex of Mind Vision", + [1086] = "Codex of Inner Fire", + [1087] = "Codex of Shadow Word: Pain", + [1088] = "Codex of Renew II", + [1089] = "Codex of Nullify Disease", + [1090] = "Codex of Resurrection", + [1091] = "Codex of Holy Smite II", + [1092] = "Codex of Lesser Heal II", + [1093] = "Codex of Remove Curse", + [1095] = "Codex of Dispel Magic", + [1096] = "Codex of Shadow Word: Pain II", + [1099] = "Deprecated Codex of Sustenance II", + [1100] = "Codex of Holy Smite III", + [1101] = "Codex of Renew V", + [1102] = "Codex of Lesser Heal III", + [1105] = "Codex of Renew VI", + [1108] = "Codex of Renew III", + [1109] = "Codex of Dominate", + [1111] = "Codex of Sleep", + [1112] = "Codex of Holy Word: Fortitude II", + [1113] = "Conjured Bread", + [1114] = "Conjured Rye", + [1115] = "Deprecated Ragged Scalp", + [1116] = "Ring of Pure Silver", + [1117] = "Monster - Item, Fishing Pole", + [1119] = "Bottled Spirits", + [1121] = "Feet of the Lynx", + [1122] = "Deprecated Amulet of the White Stallion", + [1123] = "Deprecated Amulet of the Pinto", + [1124] = "Deprecated Amulet of the Palomino", + [1125] = "Deprecated Amulet of the Nightmare", + [1127] = "Flash Bundle", + [1128] = "Deprecated [PH] Redridge Rye", + [1129] = "Ghoul Fang", + [1130] = "Vial of Spider Venom", + [1131] = "Totem of Infliction", + [1132] = "Horn of the Timber Wolf", + [1133] = "Horn of the Winter Wolf", + [1134] = "Horn of the Gray Wolf", + [1136] = "Libram: Divine Favor II", + [1138] = "Libram: Divine Favor", + [1139] = "Libram: Cleanse", + [1141] = "Libram: Holy Light II", + [1144] = "Libram: Divine Shield", + [1146] = "Libram: Resurrection", + [1149] = "Libram: Seal of Might II", + [1150] = "Libram: Purify", + [1151] = "Libram: Holy Light III", + [1154] = "Belt of the People\'s Militia", + [1155] = "Rod of the Sleepwalker", + [1156] = "Lavishly Jeweled Ring", + [1157] = "Deprecated Militia Handaxe", + [1158] = "Solid Metal Club", + [1159] = "Militia Quarterstaff", + [1161] = "Militia Shortsword", + [1162] = "Pirates Patch (Test)", + [1163] = "Dwarven Explorer\'s Monocle (Test)", + [1164] = "Sam\'s Tome", + [1165] = "Test Food", + [1166] = "Dented Buckler", + [1167] = "Small Targe", + [1168] = "Skullflame Shield", + [1169] = "Blackskull Shield", + [1170] = "Deprecated Brown Leather Vest", + [1171] = "Well-stitched Robe", + [1172] = "Grayson\'s Torch", + [1173] = "Weather-worn Boots", + [1174] = "Deprecated Light Soldier Boots", + [1175] = "A Gold Tooth", + [1176] = "Smelling Salts", + [1177] = "Oil of Olaf", + [1178] = "Explosive Rocket", + [1179] = "Ice Cold Milk", + [1180] = "Scroll of Stamina", + [1181] = "Scroll of Spirit", + [1182] = "Brass-studded Bracers", + [1183] = "Elastic Wristguards", + [1184] = "Deprecated Scarlet Badge", + [1186] = "Deprecated Gnoll Taskmaster Whip", + [1187] = "Spiked Collar", + [1189] = "Overseer\'s Ring", + [1190] = "Overseer\'s Cloak", + [1191] = "Bag of Marbles", + [1192] = "Deprecated Overseer\'s Helm", + [1193] = "Banded Buckler", + [1194] = "Bastard Sword", + [1195] = "Kobold Mining Shovel", + [1196] = "Tabar", + [1197] = "Giant Mace", + [1198] = "Claymore", + [1199] = "Charged Soulstone", + [1200] = "Large Wooden Shield", + [1201] = "Dull Heater Shield", + [1202] = "Wall Shield", + [1203] = "Aegis of Stormwind", + [1204] = "The Green Tower", + [1205] = "Melon Juice", + [1206] = "Moss Agate", + [1207] = "Murphstar", + [1208] = "Maybell\'s Love Letter", + [1210] = "Shadowgem", + [1211] = "Gnoll War Harness", + [1212] = "Gnoll Spittle", + [1213] = "Gnoll Kindred Bracers", + [1214] = "Gnoll Punisher", + [1215] = "Support Girdle", + [1216] = "Frost Bracers", + [1217] = "Unknown Reward", + [1218] = "Heavy Gnoll War Club", + [1219] = "Redridge Machete", + [1220] = "Lupine Axe", + [1221] = "Underbelly Whelp Scale", + [1222] = "Broken Tooth", + [1224] = "Grimoire of Sense Demons", + [1228] = "Grimoire of Blood Boil", + [1229] = "Grimoire of Create Soulstone", + [1231] = "Grimoire of Shadow Bolt II", + [1232] = "Grimoire of Demon Skin II", + [1238] = "Grimoire of Fear", + [1239] = "Grimoire of Siphon Mana", + [1243] = "Grimoire of Shadow Bolt III", + [1244] = "Grimoire of Demon Armor", + [1245] = "Grimoire of Immolate II", + [1246] = "Grimoire of Demon Breath", + [1250] = "Grimoire of Detect Lesser Invisibility", + [1251] = "Linen Bandage", + [1252] = "Gramma Stonefield\'s Note", + [1253] = "Deprecated Summoned Lockpick", + [1254] = "Lesser Firestone", + [1255] = "Deprecated Conjured Mana Gem", + [1256] = "Crystal Kelp Frond", + [1257] = "Invisibility Liquor", + [1258] = "Bind On Use Test Item", + [1259] = "JYoo test item", + [1260] = "Tharil\'zun\'s Head", + [1261] = "Midnight Orb", + [1262] = "Keg of Thunderbrew Lager", + [1263] = "Brain Hacker", + [1264] = "Headbasher", + [1265] = "Scorpion Sting", + [1266] = "Deprecated Orcslayer", + [1267] = "Deprecated Cask of Merlot", + [1268] = "Deprecated Bottle of Moonshine", + [1269] = "Deprecated Skin of Sweet Rum", + [1270] = "Finely Woven Cloak", + [1272] = "Deprecated Fine Spun Mantle", + [1273] = "Forest Chain", + [1274] = "Hops", + [1275] = "Deputy Chain Coat", + [1276] = "Fire Hardened Buckler", + [1279] = "Deprecated Soft Leather Hood", + [1280] = "Cloaked Hood", + [1281] = "Deprecated Quiver (TEST)", + [1282] = "Sparkmetal Coif", + [1283] = "Verner\'s Note", + [1284] = "Crate of Horseshoes", + [1287] = "Giant Tarantula Fang", + [1288] = "Large Venom Sac", + [1292] = "Butcher\'s Cleaver", + [1293] = "The State of Lakeshire", + [1294] = "The General\'s Response", + [1296] = "Blackrock Mace", + [1297] = "Robes of the Shadowcaster", + [1298] = "Deprecated Night Mage Wristguards", + [1299] = "Lesser Belt of the Spire", + [1300] = "Lesser Staff of the Spire", + [1302] = "Black Whelp Gloves", + [1303] = "Bridgeworker\'s Gloves", + [1304] = "Riding Gloves", + [1306] = "Wolfmane Wristguards", + [1307] = "Gold Pickup Schedule", + [1309] = "Oslow\'s Toolbox", + [1310] = "Smith\'s Trousers", + [1311] = "Deprecated Oslow\'s Wood Cutter", + [1312] = "Deprecated Oslow\'s Hammer", + [1313] = "Deprecated Oslow\'s Ice Pick", + [1314] = "Ghoul Fingers", + [1315] = "Lei of Lilies", + [1317] = "Hardened Root Staff", + [1318] = "Night Reaver", + [1319] = "Ring of Iron Will", + [1321] = "Deprecated Broiled Sunfish", + [1322] = "Fishliver Oil", + [1323] = "Deprecated [PH] Recipe: Broiled Sunfish", + [1324] = "Deprecated Parker\'s Lunch", + [1325] = "Daffodil Bouquet", + [1326] = "Sauteed Sunfish", + [1327] = "Wiley\'s Note", + [1328] = "Book of Faerie Fire", + [1332] = "Book of Cure Poison", + [1334] = "Book of Rejuvenation II", + [1335] = "Deprecated Book of Nullify Disease", + [1339] = "Book of Entangling Roots", + [1341] = "Book of Moonfire", + [1349] = "Abercrombie\'s Crate", + [1350] = "Deprecated Hex Doll", + [1351] = "Fingerbone Bracers", + [1352] = "Cracked Skull Mortar", + [1353] = "Shaw\'s Report", + [1354] = "Deprecated Homespun Shawl", + [1355] = "Buckskin Cape", + [1356] = "Commendation - Elwynn Forest", + [1357] = "Captain Sander\'s Treasure Map", + [1358] = "A Clue to Sander\'s Treasure", + [1359] = "Lion-stamped Gloves", + [1360] = "Stormwind Chain Gloves", + [1361] = "Another Clue to Sander\'s Treasure", + [1362] = "Final Clue to Sander\'s Treasure", + [1363] = "Deprecated Captain Sander\'s Eyepatch", + [1364] = "Ragged Leather Vest", + [1366] = "Ragged Leather Pants", + [1367] = "Ragged Leather Boots", + [1368] = "Ragged Leather Gloves", + [1369] = "Ragged Leather Belt", + [1370] = "Ragged Leather Bracers", + [1371] = "Deprecated Ragged Leather Shoulderpads", + [1372] = "Ragged Cloak", + [1374] = "Frayed Shoes", + [1376] = "Frayed Cloak", + [1377] = "Frayed Gloves", + [1378] = "Frayed Pants", + [1379] = "Deprecated Frayed Shoulderpads", + [1380] = "Frayed Robe", + [1381] = "A Mysterious Message", + [1382] = "Rock Mace", + [1383] = "Stone Tomahawk", + [1384] = "Dull Blade", + [1385] = "Deprecated Farmer\'s Maul", + [1386] = "Thistlewood Axe", + [1387] = "Ghoulfang", + [1388] = "Crooked Staff", + [1389] = "Kobold Mining Mallet", + [1391] = "Riverpaw Mystic Staff", + [1392] = "Deprecated Wristguards of the Fen Warden", + [1394] = "Driftwood Club", + [1395] = "Apprentice\'s Pants", + [1396] = "Acolyte\'s Pants", + [1397] = "Deprecated Orc Acolyte\'s Pants", + [1398] = "Deprecated Dwarven Novice\'s Pants", + [1399] = "Magic Candle", + [1400] = "Swiftfeather Token", + [1401] = "Green Tea Leaf", + [1402] = "Brimstone", + [1403] = "Deprecated Capstone", + [1404] = "Tidal Charm", + [1405] = "Foamspittle Staff", + [1406] = "Pearl-encrusted Spear", + [1407] = "Solomon\'s Plea to Westfall", + [1408] = "Stoutmantle\'s Response to Solomon", + [1409] = "Solomon\'s Plea to Darkshire", + [1410] = "Ebonlocke\'s Response to Solomon", + [1411] = "Withered Staff", + [1412] = "Crude Bastard Sword", + [1413] = "Feeble Sword", + [1414] = "Cracked Sledge", + [1415] = "Carpenter\'s Mallet", + [1416] = "Rusty Hatchet", + [1417] = "Beaten Battle Axe", + [1418] = "Worn Leather Belt", + [1419] = "Worn Leather Boots", + [1420] = "Worn Leather Bracers", + [1421] = "Worn Hide Cloak", + [1422] = "Worn Leather Gloves", + [1423] = "Worn Leather Pants", + [1424] = "Deprecated Worn Leather Shoulderpads", + [1425] = "Worn Leather Vest", + [1427] = "Patchwork Shoes", + [1429] = "Patchwork Cloak", + [1430] = "Patchwork Gloves", + [1431] = "Patchwork Pants", + [1432] = "Deprecated Patchwork Cloth Shoulderpads", + [1433] = "Patchwork Armor", + [1434] = "Glowing Wax Stick", + [1435] = "Deprecated Bridge Worker\'s Yoke", + [1436] = "Frontier Britches", + [1438] = "Warrior\'s Shield", + [1440] = "Gnoll Skull Basher", + [1443] = "Jeweled Amulet of Cainwyn", + [1444] = "Deprecated Inferno Stone", + [1445] = "Blackrock Pauldrons", + [1446] = "Blackrock Boots", + [1447] = "Ring of Saviors", + [1448] = "Blackrock Gauntlets", + [1449] = "Minor Channeling Ring", + [1450] = "Potion of Fervor", + [1451] = "Bottle of Zombie Juice", + [1453] = "Spectral Comb", + [1454] = "Axe of the Enforcer", + [1455] = "Blackrock Champion\'s Axe", + [1457] = "Shadowhide Mace", + [1458] = "Shadowhide Maul", + [1459] = "Shadowhide Scalper", + [1460] = "Shadowhide Two-handed Sword", + [1461] = "Slayer\'s Battle Axe", + [1462] = "Ring of the Shadow", + [1464] = "Buzzard Talon", + [1465] = "Tigerbane", + [1467] = "Spotted Sunfish", + [1468] = "Murloc Fin", + [1469] = "Scimitar of Atun", + [1470] = "Murloc Skin Bag", + [1472] = "Deprecated Polished Lakestone Charm", + [1473] = "Riverside Staff", + [1475] = "Small Venom Sac", + [1476] = "Snapped Spider Limb", + [1477] = "Scroll of Agility II", + [1478] = "Scroll of Protection II", + [1479] = "Salma\'s Oven Mitts", + [1480] = "Fist of the People\'s Militia", + [1481] = "Grimclaw", + [1482] = "Shadowfang", + [1483] = "Face Smasher", + [1484] = "Witching Stave", + [1485] = "Pitchfork", + [1486] = "Tree Bark Jacket", + [1487] = "Conjured Pumpernickel", + [1488] = "Avenger\'s Armor", + [1489] = "Gloomshroud Armor", + [1490] = "Guardian Talisman", + [1491] = "Ring of Precision", + [1492] = "Deprecated Recipe: Murloc Fin Soup", + [1493] = "Heavy Marauder Scimitar", + [1495] = "Calico Shoes", + [1497] = "Calico Cloak", + [1498] = "Calico Gloves", + [1499] = "Calico Pants", + [1500] = "Deprecated Calico Shoulderpads", + [1501] = "Calico Tunic", + [1502] = "Warped Leather Belt", + [1503] = "Warped Leather Boots", + [1504] = "Warped Leather Bracers", + [1505] = "Warped Cloak", + [1506] = "Warped Leather Gloves", + [1507] = "Warped Leather Pants", + [1508] = "Deprecated Patched Leather Shoulderpads", + [1509] = "Warped Leather Vest", + [1510] = "Heavy Hammer", + [1511] = "Commoner\'s Sword", + [1512] = "Crude Battle Axe", + [1513] = "Old Greatsword", + [1514] = "Rusty Warhammer", + [1515] = "Rough Wooden Staff", + [1516] = "Worn Hatchet", + [1518] = "Ghost Hair Comb", + [1519] = "Bloodscalp Ear", + [1520] = "Troll Sweat", + [1521] = "Lumbering Ogre Axe", + [1522] = "Headhunting Spear", + [1523] = "Huge Stone Club", + [1524] = "Skullsplitter Tusk", + [1527] = "Deprecated Fistful of Hay", + [1528] = "Handful of Oats", + [1529] = "Jade", + [1532] = "Shrunken Head", + [1533] = "Deprecated Bloodscalp Idol", + [1534] = "Libram: Holy Light IV", + [1535] = "Deprecated Bloodscalp Vest", + [1536] = "Libram: Seal of Wrath", + [1537] = "Old Blanchy\'s Feed Pouch", + [1539] = "Gnarled Hermit\'s Staff", + [1544] = "Deprecated Candle of Black Smoke", + [1545] = "Deprecated Mantle of the Seas", + [1547] = "Shield of the Faith", + [1554] = "Tome of Frostbolt III", + [1557] = "Buckler of the Seas", + [1559] = "Tome of Arcane Missiles II", + [1560] = "Bluegill Sandals", + [1561] = "Harvester\'s Robe", + [1566] = "Edge of the People\'s Militia", + [1567] = "Tome of Khadgar\'s Unlocking II", + [1568] = "Tome of Water Elemental", + [1571] = "Tome of Frost Nova II", + [1574] = "Tome of Fire Ward", + [1588] = "Tablet of Molten Blast III", + [1589] = "Tablet of Spirit Armor III", + [1591] = "Tablet of Lightning Shield III", + [1596] = "Ghost Hair Thread", + [1597] = "Tablet of Lightning Storm", + [1598] = "Rot Blossom", + [1599] = "Deprecated [PH] Recipe: Zombie Juice", + [1602] = "Sickle Axe", + [1603] = "Tablet of Call Spirit II", + [1604] = "Chromatic Sword", + [1607] = "Soulkeeper", + [1608] = "Skullcrusher Mace", + [1612] = "Deprecated Skullsplitter Idol", + [1613] = "Spiritchaser Staff", + [1619] = "Tablet of Lightning Storm II", + [1622] = "Deprecated Foreman\'s Whip", + [1623] = "Raptor Skin Pouch", + [1624] = "Skullsplitter Helm", + [1625] = "Exquisite Flamberge", + [1630] = "Broken Electro-lantern", + [1637] = "Letter to Ello", + [1638] = "Deprecated Thornstone Chunk", + [1639] = "Grinning Axe", + [1640] = "Monstrous War Axe", + [1641] = "Codex of Shadow Word: Pain III", + [1645] = "Moonberry Juice", + [1648] = "Codex of Heal IV", + [1649] = "Deprecated Ham Sandwich", + [1651] = "Codex of Holy Word: Shield VI", + [1652] = "Sturdy Lunchbox", + [1654] = "Deprecated Strangleslash Metal", + [1655] = "Deprecated Codex of Sustenance III", + [1656] = "Translated Letter", + [1657] = "Codex of Resurrection II", + [1658] = "Codex of Shadow Word: Pain IV", + [1659] = "Engineering Gloves", + [1663] = "Deprecated Stranglethorn Mine Map", + [1664] = "Spellforce Rod", + [1672] = "Deprecated Ogre Head", + [1676] = "Codex of Sleep II", + [1677] = "Drake-scale Vest", + [1678] = "Black Ogre Kickers", + [1679] = "Korg Bat", + [1680] = "Headchopper", + [1681] = "Grimoire of Cripple", + [1684] = "Deprecated Totemic Headpiece", + [1685] = "Troll-hide Bag", + [1686] = "Bristly Whisker", + [1687] = "Retractable Claw", + [1688] = "Long Soft Tail", + [1689] = "Deprecated Medium Tiger Pelt", + [1690] = "Deprecated Fine Panther Whisker", + [1691] = "Deprecated Ebony Panther Claw", + [1692] = "Deprecated Shadowmaw Fang", + [1693] = "Deprecated Shadowmaw Pelt", + [1694] = "Deprecated Lashtail Hide", + [1695] = "Deprecated Jungle Stalker Pelt", + [1696] = "Curved Raptor Talon", + [1697] = "Keen Raptor Tooth", + [1698] = "Deprecated Lashtail Claw", + [1699] = "Deprecated Jungle Stalker Tail", + [1700] = "Deprecated Blood Totem", + [1701] = "Curved Basilisk Claw", + [1702] = "Intact Basilisk Spine", + [1703] = "Crystal Basilisk Spine", + [1704] = "Deprecated Cold Basilisk Eye", + [1705] = "Lesser Moonstone", + [1706] = "Azuredeep Shards", + [1707] = "Stormwind Brie", + [1708] = "Sweet Nectar", + [1710] = "Greater Healing Potion", + [1711] = "Scroll of Stamina II", + [1712] = "Scroll of Spirit II", + [1713] = "Ankh of Life", + [1714] = "Necklace of Calisea", + [1715] = "Polished Jazeraint Armor", + [1716] = "Robe of the Magi", + [1717] = "Double Link Tunic", + [1718] = "Basilisk Hide Pants", + [1719] = "Deprecated Flint Troll Axe", + [1720] = "Tanglewood Staff", + [1721] = "Viking Warhammer", + [1722] = "Thornstone Sledgehammer", + [1724] = "Deprecated Jungle Trail Pack", + [1725] = "Large Knapsack", + [1726] = "Poison-tipped Bone Spear", + [1727] = "Sword of Decay", + [1728] = "Teebu\'s Blazing Longsword", + [1729] = "Gunnysack of the Night Watch", + [1730] = "Worn Mail Belt", + [1731] = "Worn Mail Boots", + [1732] = "Worn Mail Bracers", + [1733] = "Worn Cloak", + [1734] = "Worn Mail Gloves", + [1735] = "Worn Mail Pants", + [1736] = "Deprecated Worn Mail Shoulderpads", + [1737] = "Worn Mail Vest", + [1738] = "Laced Mail Belt", + [1739] = "Laced Mail Boots", + [1740] = "Laced Mail Bracers", + [1741] = "Laced Cloak", + [1742] = "Laced Mail Gloves", + [1743] = "Laced Mail Pants", + [1744] = "Laced Mail Shoulderpads", + [1745] = "Laced Mail Vest", + [1746] = "Linked Chain Belt", + [1747] = "Linked Chain Boots", + [1748] = "Linked Chain Bracers", + [1749] = "Linked Chain Cloak", + [1750] = "Linked Chain Gloves", + [1751] = "Linked Chain Pants", + [1752] = "Linked Chain Shoulderpads", + [1753] = "Linked Chain Vest", + [1754] = "Reinforced Chain Belt", + [1755] = "Reinforced Chain Boots", + [1756] = "Reinforced Chain Bracers", + [1757] = "Reinforced Chain Cloak", + [1758] = "Reinforced Chain Gloves", + [1759] = "Reinforced Chain Pants", + [1760] = "Reinforced Chain Shoulderpads", + [1761] = "Reinforced Chain Vest", + [1764] = "Canvas Shoes", + [1766] = "Canvas Cloak", + [1767] = "Canvas Gloves", + [1768] = "Canvas Pants", + [1769] = "Canvas Shoulderpads", + [1770] = "Canvas Vest", + [1772] = "Brocade Shoes", + [1774] = "Brocade Cloak", + [1775] = "Brocade Gloves", + [1776] = "Brocade Pants", + [1777] = "Brocade Shoulderpads", + [1778] = "Brocade Vest", + [1780] = "Cross-stitched Sandals", + [1782] = "Cross-stitched Cloak", + [1783] = "Cross-stitched Gloves", + [1784] = "Cross-stitched Pants", + [1785] = "Cross-stitched Shoulderpads", + [1786] = "Cross-stitched Vest", + [1787] = "Patched Leather Belt", + [1788] = "Patched Leather Boots", + [1789] = "Patched Leather Bracers", + [1790] = "Patched Cloak", + [1791] = "Patched Leather Gloves", + [1792] = "Patched Leather Pants", + [1793] = "Patched Leather Shoulderpads", + [1794] = "Patched Leather Jerkin", + [1795] = "Rawhide Belt", + [1796] = "Rawhide Boots", + [1797] = "Rawhide Bracers", + [1798] = "Rawhide Cloak", + [1799] = "Rawhide Gloves", + [1800] = "Rawhide Pants", + [1801] = "Rawhide Shoulderpads", + [1802] = "Rawhide Tunic", + [1803] = "Tough Leather Belt", + [1804] = "Tough Leather Boots", + [1805] = "Tough Leather Bracers", + [1806] = "Tough Cloak", + [1807] = "Tough Leather Gloves", + [1808] = "Tough Leather Pants", + [1809] = "Tough Leather Shoulderpads", + [1810] = "Tough Leather Armor", + [1811] = "Blunt Claymore", + [1812] = "Short-handled Battle Axe", + [1813] = "Chipped Quarterstaff", + [1814] = "Battered Mallet", + [1815] = "Ornamental Mace", + [1816] = "Unbalanced Axe", + [1817] = "Stock Shortsword", + [1818] = "Standard Claymore", + [1819] = "Gouging Pick", + [1820] = "Wooden Maul", + [1821] = "Warped Blade", + [1822] = "Cedar Walking Stick", + [1823] = "Bludgeoning Cudgel", + [1824] = "Shiny War Axe", + [1825] = "Bulky Bludgeon", + [1826] = "Rock Maul", + [1827] = "Meat Cleaver", + [1828] = "Stone War Axe", + [1829] = "Short Cutlass", + [1830] = "Long Bastard Sword", + [1831] = "Oaken War Staff", + [1832] = "Lucky Trousers", + [1835] = "Dirty Leather Belt", + [1836] = "Dirty Leather Bracers", + [1839] = "Rough Leather Belt", + [1840] = "Rough Leather Bracers", + [1843] = "Tanned Leather Belt", + [1844] = "Tanned Leather Bracers", + [1845] = "Chainmail Belt", + [1846] = "Chainmail Bracers", + [1849] = "Cured Leather Belt", + [1850] = "Cured Leather Bracers", + [1851] = "Cleansing Water", + [1852] = "Scalemail Bracers", + [1853] = "Scalemail Belt", + [1854] = "Deprecated Brooch of the Night Watch", + [1875] = "Thistlenettle\'s Badge", + [1877] = "Book of Rejuvenation III", + [1878] = "Deprecated Book of Nullify Poison II", + [1880] = "Deprecated Book of Nullify Disease II", + [1882] = "Book of Moonfire III", + [1886] = "Book of Moonfire II", + [1893] = "Miner\'s Revenge", + [1894] = "Miners\' Union Card", + [1895] = "Monster - Sword, Short Rusty", + [1896] = "Monster - Sword, Short Basic", + [1897] = "Monster - Sword, Scimitar Basic", + [1899] = "Monster - Sword, Long Basic", + [1900] = "Monster - Thieves Blade", + [1901] = "Monster - Mace, Basic Stone Hammer", + [1902] = "Monster - Mace, Basic Wooden Hammer", + [1903] = "Monster - Mace, Basic Metal Hammer", + [1904] = "Monster - Axe, Stone Basic", + [1905] = "Monster - Axe, Metal Basic", + [1906] = "Monster - Torch", + [1907] = "Monster - Staff, Basic", + [1908] = "Monster - Staff, Crooked", + [1909] = "Monster - Axe, Large Basic", + [1910] = "Monster - Item, Pick", + [1911] = "Monster - Tool, Wrench Small", + [1912] = "Deprecated Reed Pipe", + [1913] = "Studded Blackjack", + [1914] = "Deprecated Miniature Silver Hammer", + [1915] = "Deprecated Bag of Teeth", + [1917] = "Jeweled Dagger", + [1918] = "Deprecated Lockpick", + [1922] = "Supplies for Sven", + [1923] = "Ambassador\'s Satchel", + [1924] = "Deprecated Hollowed Wooden Tube", + [1925] = "Defias Rapier", + [1926] = "Weighted Sap", + [1927] = "Deadmines Cleaver", + [1928] = "Defias Mage Staff", + [1929] = "Silk-threaded Trousers", + [1930] = "Stonemason Cloak", + [1931] = "Huge Gnoll Claw", + [1933] = "Staff of Conjuring", + [1934] = "Stonemason Trousers", + [1935] = "Assassin\'s Blade", + [1936] = "Goblin Screwdriver", + [1937] = "Buzz Saw", + [1938] = "Block Mallet", + [1939] = "Skin of Sweet Rum", + [1940] = "Deprecated Skin of Sweet Rum", + [1941] = "Cask of Merlot", + [1942] = "Bottle of Moonshine", + [1943] = "Goblin Mail Leggings", + [1944] = "Metalworking Gloves", + [1945] = "Woodworking Gloves", + [1946] = "Mary\'s Looking Glass", + [1948] = "Deprecated Large Broom", + [1950] = "Deprecated Gold Ingot", + [1951] = "Blackwater Cutlass", + [1955] = "Dragonmaw Chain Boots", + [1956] = "Faded Shadowhide Pendant", + [1957] = "Monster - Shield, Small Wooden", + [1958] = "Petrified Shinbone", + [1959] = "Cold Iron Pick", + [1960] = "Deprecated Ironforge Chain Pauldrons", + [1961] = "Monster - Shield, Buckler Wooden", + [1962] = "Glowing Shadowhide Pendant", + [1963] = "Deprecated Bone Chips", + [1965] = "White Wolf Gloves", + [1968] = "Ogre\'s Monocle", + [1969] = "Deprecated Stormwind Guard Belt", + [1970] = "Restoring Balm", + [1971] = "Furlbrow\'s Deed", + [1972] = "Westfall Deed", + [1973] = "Orb of Deception", + [1974] = "Mindthrust Bracers", + [1975] = "Pysan\'s Old Greatsword", + [1976] = "Slaghammer", + [1977] = "20-slot Bag", + [1978] = "Wolfclaw Gloves", + [1979] = "Wall of the Dead", + [1980] = "Underworld Band", + [1981] = "Icemail Jerkin", + [1982] = "Nightblade", + [1983] = "Monster - Sword2H, Basic", + [1984] = "Monster - Shield, Kite Metal", + [1985] = "Monster - Shield, Large Wooden", + [1986] = "Gutrender", + [1987] = "Krazek\'s Fixed Pot", + [1988] = "Chief Brigadier Gauntlets", + [1990] = "Ballast Maul", + [1991] = "Goblin Power Shovel", + [1992] = "Swampchill Fetish", + [1993] = "Ogremind Ring", + [1994] = "Ebonclaw Reaver", + [1995] = "Deprecated Cat\'s Paw", + [1996] = "Voodoo Band", + [1997] = "Pressed Felt Robe", + [1998] = "Bloodscalp Channeling Staff", + [1999] = "Deprecated Torn Leather Harness", + [2000] = "Archeus", + [2002] = "Deprecated Jordan\'s Quiver", + [2003] = "Deprecated Big Quiver", + [2004] = "Grelin Whitebeard\'s Journal", + [2005] = "The First Troll Legend", + [2006] = "The Second Troll Legend", + [2007] = "The Third Troll Legend", + [2008] = "The Fourth Troll Legend", + [2011] = "Twisted Sabre", + [2012] = "Deprecated Phylactery of Rot", + [2013] = "Cryptbone Staff", + [2014] = "Black Metal Greatsword", + [2015] = "Black Metal War Axe", + [2016] = "Dusty Chain Armor", + [2017] = "Glowing Leather Bracers", + [2018] = "Skeletal Longsword", + [2020] = "Hollowfang Blade", + [2021] = "Green Carapace Shield", + [2023] = "Monster - Spear, Rusty", + [2024] = "Espadon", + [2025] = "Bearded Axe", + [2026] = "Rock Hammer", + [2027] = "Scimitar", + [2028] = "Hammer", + [2029] = "Cleaver", + [2030] = "Gnarled Staff", + [2032] = "Gallan Cuffs", + [2033] = "Ambassador\'s Boots", + [2034] = "Scholarly Robes", + [2035] = "Sword of the Night Sky", + [2036] = "Dusty Mining Gloves", + [2037] = "Tunneler\'s Boots", + [2038] = "Deprecated Cougar Head Cap", + [2039] = "Plains Ring", + [2040] = "Troll Protector", + [2041] = "Tunic of Westfall", + [2042] = "Staff of Westfall", + [2043] = "Ring of Forlorn Spirits", + [2044] = "Crescent of Forlorn Spirits", + [2045] = "Deprecated Cowl of Forlorn Spirits", + [2046] = "Bluegill Kukri", + [2047] = "Anvilmar Hand Axe", + [2048] = "Anvilmar Hammer", + [2050] = "Deprecated Silver Ingot", + [2051] = "Monster - Shield, Small Wooden Damaged", + [2052] = "Monster - Shield, Small Metal Damaged", + [2053] = "Monster - Shield, Buckler Metal Damaged", + [2054] = "Trogg Hand Axe", + [2055] = "Small Wooden Hammer", + [2056] = "The Velvet Hammer", + [2057] = "Pitted Defias Shortsword", + [2058] = "Kazon\'s Maul", + [2059] = "Sentry Cloak", + [2060] = "Deprecated Chunk of Boar Meat", + [2064] = "Trogg Club", + [2065] = "Rockjaw Blade", + [2066] = "Skull Hatchet", + [2067] = "Frostbit Staff", + [2069] = "Black Bear Hide Vest", + [2070] = "Darnassian Bleu", + [2071] = "Deprecated Mountain Spring Water", + [2072] = "Dwarven Magestaff", + [2073] = "Dwarven Hatchet", + [2074] = "Solid Shortblade", + [2075] = "Priest\'s Mace", + [2077] = "Magician Staff", + [2078] = "Northern Shortsword", + [2079] = "Sergeant\'s Warhammer", + [2080] = "Hillborne Axe", + [2081] = "Monster - Torch, Offhand", + [2082] = "Wizbang\'s Gunnysack", + [2084] = "Darksteel Bastard Sword", + [2085] = "Chunk of Flesh", + [2087] = "Hard Crawler Carapace", + [2088] = "Long Crawler Limb", + [2089] = "Scrimshaw Dagger", + [2091] = "Magic Dust", + [2092] = "Worn Dagger", + [2098] = "Double-barreled Shotgun", + [2099] = "Dwarven Hand Cannon", + [2100] = "Precisely Calibrated Boomstick", + [2101] = "Light Quiver", + [2102] = "Small Ammo Pouch", + [2103] = "Test Arrow", + [2104] = "Deprecated Standard Shot", + [2105] = "Thug Shirt", + [2106] = "Deprecated Worn Pants", + [2107] = "Deprecated Travel-worn Boots", + [2108] = "Frostmane Leather Vest", + [2109] = "Frostmane Chain Vest", + [2110] = "Light Magesmith Robe", + [2112] = "Lumberjack Jerkin", + [2113] = "Calor\'s Note", + [2114] = "Snowy Robe", + [2115] = "Deprecated Small White Pouch", + [2117] = "Thin Cloth Shoes", + [2119] = "Thin Cloth Gloves", + [2120] = "Thin Cloth Pants", + [2121] = "Thin Cloth Armor", + [2122] = "Cracked Leather Belt", + [2123] = "Cracked Leather Boots", + [2124] = "Cracked Leather Bracers", + [2125] = "Cracked Leather Gloves", + [2126] = "Cracked Leather Pants", + [2127] = "Cracked Leather Vest", + [2128] = "Scratched Claymore", + [2129] = "Large Round Shield", + [2130] = "Club", + [2131] = "Shortsword", + [2132] = "Short Staff", + [2133] = "Small Shield", + [2134] = "Hand Axe", + [2136] = "Conjured Purified Water", + [2137] = "Whittling Knife", + [2138] = "Sharpened Letter Opener", + [2139] = "Dirk", + [2140] = "Carving Knife", + [2141] = "Cuirboulli Vest", + [2142] = "Cuirboulli Belt", + [2143] = "Cuirboulli Boots", + [2144] = "Cuirboulli Bracers", + [2145] = "Cuirboulli Gloves", + [2146] = "Cuirboulli Pants", + [2147] = "Monster - Sword, Falchion", + [2148] = "Polished Scale Belt", + [2149] = "Polished Scale Boots", + [2150] = "Polished Scale Bracers", + [2151] = "Polished Scale Gloves", + [2152] = "Polished Scale Leggings", + [2153] = "Polished Scale Vest", + [2154] = "The Story of Morgan Ladimore", + [2156] = "Padded Boots", + [2158] = "Padded Gloves", + [2159] = "Padded Pants", + [2160] = "Padded Armor", + [2161] = "Book from Sven\'s Farm", + [2162] = "Sarah\'s Ring", + [2163] = "Shadowblade", + [2164] = "Gut Ripper", + [2165] = "Old Blanchy\'s Blanket", + [2166] = "Foreman\'s Leggings", + [2167] = "Foreman\'s Gloves", + [2168] = "Foreman\'s Boots", + [2169] = "Buzzer Blade", + [2170] = "Deprecated Shield of the Spider Princess", + [2172] = "Rustic Belt", + [2173] = "Old Leather Belt", + [2175] = "Shadowhide Battle Axe", + [2176] = "Monster - Staff, Ornate Priest Staff", + [2177] = "Monster - Staff, Ornate Mage Staff", + [2178] = "Monster - Sword, Long Ornate", + [2179] = "Monster - Sword, Scimitar Badass", + [2180] = "Monster - Sword, Short Ornate", + [2181] = "Monster - Sword2H, Baron Rivendare", + [2182] = "Monster - Mace, Ornate Metal Hammer", + [2183] = "Monster - Axe, Metal Badass", + [2184] = "Monster - Dagger Basic", + [2186] = "Outfitter Belt", + [2187] = "A Stack of Letters", + [2188] = "A Letter to Grelin Whitebeard", + [2189] = "Tigole\'s Boomstick (TEST)", + [2191] = "Deprecated End Spawn Ticket", + [2194] = "Diamond Hammer", + [2195] = "Anvilmar Knife", + [2196] = "Monster - Item, Mutton", + [2197] = "Monster - Item, Bread", + [2198] = "Monster - Item, Potion Blue", + [2199] = "Monster - Item, Vial Purple", + [2200] = "Monster - Item, Potion Green", + [2201] = "Monster - Item, Vial Black", + [2202] = "Monster - Item, Mutton with Bite", + [2203] = "Brashclaw\'s Chopper", + [2204] = "Brashclaw\'s Skewer", + [2205] = "Duskbringer", + [2206] = "Deprecated Fine Pointed Dagger", + [2207] = "Jambiya", + [2208] = "Poniard", + [2209] = "Kris", + [2210] = "Battered Buckler", + [2211] = "Bent Large Shield", + [2212] = "Cracked Buckler", + [2213] = "Worn Large Shield", + [2214] = "Wooden Buckler", + [2215] = "Wooden Shield", + [2216] = "Simple Buckler", + [2217] = "Rectangular Shield", + [2218] = "Craftsman\'s Dagger", + [2219] = "Small Round Shield", + [2220] = "Box Shield", + [2221] = "Targe Shield", + [2222] = "Tower Shield", + [2223] = "The Collector\'s Schedule", + [2224] = "Militia Dagger", + [2225] = "Sharp Kitchen Knife", + [2226] = "Ogremage Staff", + [2227] = "Heavy Ogre War Axe", + [2230] = "Gloves of Brawn", + [2231] = "Inferno Robe", + [2232] = "Dark Runner Boots", + [2233] = "Shadow Weaver Leggings", + [2234] = "Nightwalker Armor", + [2235] = "Brackclaw", + [2236] = "Blackfang", + [2237] = "Patched Pants", + [2238] = "Urchin\'s Pants", + [2239] = "The Collector\'s Ring", + [2240] = "Rugged Cape", + [2241] = "Desperado Cape", + [2243] = "Hand of Edward the Odd", + [2244] = "Krol Blade", + [2245] = "Helm of Narv", + [2246] = "Myrmidon\'s Signet", + [2248] = "Martin Fury", + [2249] = "Militia Buckler", + [2250] = "Dusky Crab Cakes", + [2251] = "Gooey Spider Leg", + [2252] = "Miscellaneous Goblin Supplies", + [2254] = "Icepane Warhammer", + [2255] = "Deprecated Thick Leather Gloves", + [2256] = "Skeletal Club", + [2257] = "Frostmane Staff", + [2258] = "Frostmane Shortsword", + [2259] = "Frostmane Club", + [2260] = "Frostmane Hand Axe", + [2262] = "Mark of Kern", + [2263] = "Phytoblade", + [2264] = "Mantle of Thieves", + [2265] = "Stonesplinter Axe", + [2266] = "Stonesplinter Dagger", + [2267] = "Stonesplinter Mace", + [2268] = "Stonesplinter Blade", + [2271] = "Staff of the Blessed Seer", + [2273] = "Guerrilla Armor", + [2274] = "Sapper\'s Gloves", + [2275] = "Deprecated Sentinel Coif", + [2276] = "Swampwalker Boots", + [2277] = "Necromancer Leggings", + [2278] = "Forest Tracker Epaulets", + [2280] = "Kam\'s Walking Stick", + [2281] = "Rodentia Flint Axe", + [2282] = "Rodentia Shortsword", + [2283] = "Rat Cloth Belt", + [2284] = "Rat Cloth Cloak", + [2287] = "Haunch of Meat", + [2288] = "Conjured Fresh Water", + [2289] = "Scroll of Strength II", + [2290] = "Scroll of Intellect II", + [2291] = "Kang the Decapitator", + [2292] = "Necrology Robes", + [2295] = "Large Boar Tusk", + [2296] = "Great Goretusk Snout", + [2299] = "Burning War Axe", + [2300] = "Embossed Leather Vest", + [2301] = "Light Hide Soft Boots", + [2302] = "Handstitched Leather Boots", + [2303] = "Handstitched Leather Pants", + [2304] = "Light Armor Kit", + [2305] = "Deprecated Light Winter Cloak", + [2306] = "Deprecated Light Winter Boots", + [2307] = "Fine Leather Boots", + [2308] = "Fine Leather Cloak", + [2309] = "Embossed Leather Boots", + [2310] = "Embossed Leather Cloak", + [2311] = "White Leather Jerkin", + [2312] = "Fine Leather Gloves", + [2313] = "Medium Armor Kit", + [2314] = "Toughened Leather Armor", + [2315] = "Dark Leather Boots", + [2316] = "Dark Leather Cloak", + [2317] = "Dark Leather Tunic", + [2318] = "Light Leather", + [2319] = "Medium Leather", + [2320] = "Coarse Thread", + [2321] = "Fine Thread", + [2322] = "Deprecated Crag Boar Hide", + [2323] = "Deprecated Longsnout Hide", + [2324] = "Bleach", + [2325] = "Black Dye", + [2326] = "Ivy-weave Bracers", + [2327] = "Sturdy Leather Bracers", + [2361] = "Battleworn Hammer", + [2362] = "Worn Wooden Shield", + [2363] = "Deprecated Skeleton Key", + [2364] = "Woven Vest", + [2366] = "Woven Pants", + [2367] = "Woven Boots", + [2369] = "Woven Gloves", + [2370] = "Battered Leather Harness", + [2371] = "Battered Leather Belt", + [2372] = "Battered Leather Pants", + [2373] = "Battered Leather Boots", + [2374] = "Battered Leather Bracers", + [2375] = "Battered Leather Gloves", + [2376] = "Worn Heater Shield", + [2377] = "Round Buckler", + [2378] = "Skeleton Finger", + [2379] = "Tarnished Chain Vest", + [2380] = "Tarnished Chain Belt", + [2381] = "Tarnished Chain Leggings", + [2382] = "The Embalmer\'s Heart", + [2383] = "Tarnished Chain Boots", + [2384] = "Tarnished Chain Bracers", + [2385] = "Tarnished Chain Gloves", + [2386] = "Rusted Chain Vest", + [2387] = "Rusted Chain Belt", + [2388] = "Rusted Chain Leggings", + [2389] = "Rusted Chain Boots", + [2390] = "Rusted Chain Bracers", + [2391] = "Rusted Chain Gloves", + [2392] = "Light Mail Armor", + [2393] = "Light Mail Belt", + [2394] = "Light Mail Leggings", + [2395] = "Light Mail Boots", + [2396] = "Light Mail Bracers", + [2397] = "Light Mail Gloves", + [2398] = "Light Chain Armor", + [2399] = "Light Chain Belt", + [2400] = "Light Chain Leggings", + [2401] = "Light Chain Boots", + [2402] = "Light Chain Bracers", + [2403] = "Light Chain Gloves", + [2404] = "Deprecated Pattern: Light Winter Cloak", + [2405] = "Deprecated Pattern: Light Winter Boots", + [2406] = "Pattern: Fine Leather Boots", + [2407] = "Pattern: White Leather Jerkin", + [2408] = "Pattern: Fine Leather Gloves", + [2409] = "Pattern: Dark Leather Tunic", + [2410] = "Smoky Torch", + [2411] = "Black Stallion Bridle", + [2412] = "Deprecated Nightmare Bridle", + [2413] = "Palomino", + [2414] = "Pinto Bridle", + [2415] = "White Stallion", + [2417] = "Augmented Chain Vest", + [2418] = "Augmented Chain Leggings", + [2419] = "Augmented Chain Belt", + [2420] = "Augmented Chain Boots", + [2421] = "Augmented Chain Bracers", + [2422] = "Augmented Chain Gloves", + [2423] = "Brigandine Vest", + [2424] = "Brigandine Belt", + [2425] = "Brigandine Leggings", + [2426] = "Brigandine Boots", + [2427] = "Brigandine Bracers", + [2428] = "Brigandine Gloves", + [2429] = "Russet Vest", + [2431] = "Russet Pants", + [2432] = "Russet Boots", + [2434] = "Russet Gloves", + [2435] = "Embroidered Armor", + [2437] = "Embroidered Pants", + [2438] = "Embroidered Boots", + [2440] = "Embroidered Gloves", + [2441] = "Ringed Buckler", + [2442] = "Reinforced Targe", + [2443] = "Metal Buckler", + [2444] = "Ornate Buckler", + [2445] = "Large Metal Shield", + [2446] = "Kite Shield", + [2447] = "Peacebloom", + [2448] = "Heavy Pavise", + [2449] = "Earthroot", + [2450] = "Briarthorn", + [2451] = "Crested Heater Shield", + [2452] = "Swiftthistle", + [2453] = "Bruiseweed", + [2454] = "Elixir of Lion\'s Strength", + [2455] = "Minor Mana Potion", + [2456] = "Minor Rejuvenation Potion", + [2457] = "Elixir of Minor Agility", + [2458] = "Elixir of Minor Fortitude", + [2459] = "Swiftness Potion", + [2460] = "Elixir of Tongues (NYI)", + [2461] = "Deprecated Elemental Resistance Potion", + [2462] = "Deprecated Potion of Lesser Invulnerability (Fix)", + [2463] = "Studded Doublet", + [2464] = "Studded Belt", + [2465] = "Studded Pants", + [2466] = "Skullsplitter Fetish", + [2467] = "Studded Boots", + [2468] = "Studded Bracers", + [2469] = "Studded Gloves", + [2470] = "Reinforced Leather Vest", + [2471] = "Reinforced Leather Belt", + [2472] = "Reinforced Leather Pants", + [2473] = "Reinforced Leather Boots", + [2474] = "Reinforced Leather Bracers", + [2475] = "Reinforced Leather Gloves", + [2476] = "Chilled Basilisk Haunch", + [2477] = "Ravager\'s Skull", + [2478] = "Deprecated Replenishing Font", + [2479] = "Broad Axe", + [2480] = "Large Club", + [2481] = "Peon Sword", + [2482] = "Inferior Tomahawk", + [2483] = "Rough Broad Axe", + [2484] = "Small Knife", + [2485] = "Splintered Board", + [2486] = "Large Stone Mace", + [2487] = "Acolyte Staff", + [2488] = "Gladius", + [2489] = "Two-handed Sword", + [2490] = "Tomahawk", + [2491] = "Large Axe", + [2492] = "Cudgel", + [2493] = "Wooden Mallet", + [2494] = "Stiletto", + [2495] = "Walking Stick", + [2496] = "Raider Shortsword", + [2497] = "Rusted Claymore", + [2498] = "Small Tomahawk", + [2499] = "Double-bladed Axe", + [2500] = "Light Hammer", + [2501] = "Wooden Warhammer", + [2502] = "Scuffed Dagger", + [2503] = "Adept Short Staff", + [2504] = "Worn Shortbow", + [2505] = "Polished Shortbow", + [2506] = "Hornwood Recurve Bow", + [2507] = "Laminated Recurve Bow", + [2508] = "Old Blunderbuss", + [2509] = "Ornate Blunderbuss", + [2510] = "Solid Blunderbuss", + [2511] = "Hunter\'s Boomstick", + [2512] = "Rough Arrow", + [2513] = "Deprecated Iron Shot", + [2514] = "Depricated Sharp Arrow", + [2515] = "Sharp Arrow", + [2516] = "Light Shot", + [2517] = "Deprecated Standard Arrow", + [2518] = "Deprecated Solid Shot", + [2519] = "Heavy Shot", + [2520] = "Broadsword", + [2521] = "Flamberge", + [2522] = "Crescent Axe", + [2523] = "Bullova", + [2524] = "Truncheon", + [2525] = "War Hammer", + [2526] = "Main Gauche", + [2527] = "Battle Staff", + [2528] = "Falchion", + [2529] = "Zweihander", + [2530] = "Francisca", + [2531] = "Great Axe", + [2532] = "Morning Star", + [2533] = "War Maul", + [2534] = "Rondel", + [2535] = "War Staff", + [2536] = "Trogg Stone Tooth", + [2543] = "Militia Pants", + [2545] = "Malleable Chain Leggings", + [2546] = "Royal Frostmane Girdle", + [2547] = "Boar Handler Gloves", + [2548] = "Barrel of Barleybrew Scalder", + [2549] = "Staff of the Shade", + [2550] = "Monster - Bow, Short", + [2551] = "Monster - Crossbow", + [2552] = "Monster - Gun", + [2553] = "Recipe: Elixir of Minor Agility", + [2554] = "Deprecated Recipe: Elixir of Fortitude", + [2555] = "Recipe: Swiftness Potion", + [2556] = "Recipe: Elixir of Tongues", + [2557] = "Monster - Mace2H, Ornate Metal Hammer", + [2558] = "Monster - Mace, Good Wooden Hammer", + [2559] = "Monster - Staff, Ornate Warlock Staff", + [2560] = "Jitters\' Completed Journal", + [2561] = "Chok\'sul\'s Head", + [2562] = "Bouquet of Scarlet Begonias", + [2563] = "Strange Smelling Powder", + [2564] = "Elven Spirit Claws", + [2565] = "Rod of Molten Fire", + [2566] = "Sacrificial Robes", + [2567] = "Evocator\'s Blade", + [2568] = "Brown Linen Vest", + [2569] = "Linen Boots", + [2570] = "Linen Cloak", + [2571] = "Viny Wrappings", + [2572] = "Red Linen Robe", + [2573] = "Deprecated Forest Silk Gloves", + [2574] = "Deprecated Trogg Vest", + [2575] = "Red Linen Shirt", + [2576] = "White Linen Shirt", + [2577] = "Blue Linen Shirt", + [2578] = "Barbaric Linen Vest", + [2579] = "Green Linen Shirt", + [2580] = "Reinforced Linen Cape", + [2581] = "Heavy Linen Bandage", + [2582] = "Green Woolen Vest", + [2583] = "Woolen Boots", + [2584] = "Woolen Cape", + [2585] = "Gray Woolen Robe", + [2586] = "Gamemaster\'s Robe", + [2587] = "Gray Woolen Shirt", + [2588] = "Deprecated Red Leather Mask", + [2589] = "Linen Cloth", + [2590] = "Forest Spider Webbing", + [2591] = "Dirty Trogg Cloth", + [2592] = "Wool Cloth", + [2593] = "Flask of Port", + [2594] = "Flagon of Mead", + [2595] = "Jug of Bourbon", + [2596] = "Skin of Dwarven Stout", + [2598] = "Pattern: Red Linen Robe", + [2599] = "Deprecated Pattern: Forest Silk Gloves", + [2600] = "Deprecated Pattern: Trogg Vest", + [2601] = "Pattern: Gray Woolen Robe", + [2602] = "Deprecated Pattern: Feathered Robe", + [2604] = "Red Dye", + [2605] = "Green Dye", + [2606] = "Lurker Venom", + [2607] = "Mo\'grosh Crystal", + [2608] = "Threshadon Ambergris", + [2609] = "Disarming Colloid", + [2610] = "Disarming Mixture", + [2611] = "Crude Flint", + [2612] = "Plain Robe", + [2613] = "Double-stitched Robes", + [2614] = "Robe of Apprenticeship", + [2615] = "Chromatic Robe", + [2616] = "Shimmering Silk Robes", + [2617] = "Burning Robes", + [2618] = "Silver Dress Robes", + [2619] = "Grelin\'s Report", + [2620] = "Augural Shroud", + [2621] = "Cowl of Necromancy", + [2622] = "Nimar\'s Tribal Headdress", + [2623] = "Holy Diadem", + [2624] = "Thinking Cap", + [2625] = "Menethil Statuette", + [2628] = "Senir\'s Report", + [2629] = "Intrepid Strongbox Key", + [2632] = "Curved Dagger", + [2633] = "Jungle Remedy", + [2634] = "Venom Fern Extract", + [2635] = "Loose Chain Belt", + [2636] = "Carved Stone Idol", + [2637] = "Ironband\'s Progress Report", + [2638] = "Deprecated Ironband\'s Powder Approval", + [2639] = "Merrin\'s Letter", + [2640] = "Miners\' Gear", + [2642] = "Loose Chain Boots", + [2643] = "Loose Chain Bracers", + [2644] = "Loose Chain Cloak", + [2645] = "Loose Chain Gloves", + [2646] = "Loose Chain Pants", + [2647] = "Deprecated Loose Chain Shoulderpads", + [2648] = "Loose Chain Vest", + [2649] = "Flimsy Chain Belt", + [2650] = "Flimsy Chain Boots", + [2651] = "Flimsy Chain Bracers", + [2652] = "Flimsy Chain Cloak", + [2653] = "Flimsy Chain Gloves", + [2654] = "Flimsy Chain Pants", + [2655] = "Deprecated Flimsy Chain Shoulderpads", + [2656] = "Flimsy Chain Vest", + [2657] = "Red Leather Bag", + [2658] = "Ados Fragment", + [2659] = "Modr Fragment", + [2660] = "Golm Fragment", + [2661] = "Neru Fragment", + [2662] = "Ribbly\'s Quiver", + [2663] = "Ribbly\'s Bandolier", + [2664] = "Spinner Fang", + [2665] = "Stormwind Seasoning Herbs", + [2666] = "Barrel of Thunder Ale", + [2667] = "MacGrann\'s Dried Meats", + [2668] = "Threshadon Tooth", + [2669] = "Threshadon Claw", + [2671] = "Wendigo Mane", + [2672] = "Stringy Wolf Meat", + [2673] = "Coyote Meat", + [2674] = "Crawler Meat", + [2675] = "Crawler Claw", + [2676] = "Shimmerweed", + [2677] = "Boar Ribs", + [2678] = "Mild Spices", + [2679] = "Charred Wolf Meat", + [2680] = "Spiced Wolf Meat", + [2681] = "Roasted Boar Meat", + [2682] = "Cooked Crab Claw", + [2683] = "Crab Cake", + [2684] = "Coyote Steak", + [2685] = "Succulent Pork Ribs", + [2686] = "Thunder Ale", + [2687] = "Dry Pork Ribs", + [2688] = "Squirrel Nut", + [2690] = "Latched Belt", + [2691] = "Outfitter Boots", + [2692] = "Hot Spices", + [2693] = "OLD Stormwind Seasoning Salts ", + [2694] = "Settler\'s Leggings", + [2695] = "Monster - Mace, Spiked Club", + [2696] = "Cask of Evershine", + [2697] = "Recipe: Goretusk Liver Pie", + [2698] = "Recipe: Cooked Crab Claw", + [2699] = "Recipe: Redridge Goulash", + [2700] = "Recipe: Succulent Pork Ribs", + [2701] = "Recipe: Seasoned Wolf Kabob", + [2702] = "Lightforge Ingot", + [2703] = "Monster - Item, Tankard Wooden", + [2704] = "Monster - Item, Tankard Dirty", + [2705] = "Monster - Item, Tankard Metal", + [2706] = "Monster - Item, Flower - Red", + [2707] = "Monster - Item, Flower - Yellow", + [2708] = "Monster - Item, Bouquet - White & Purple", + [2709] = "Monster - Item, Flower - Rose", + [2710] = "Monster - Item, Bouquet - Roses", + [2711] = "Monster - Dagger Badass", + [2712] = "Crate of Lightforge Ingots", + [2713] = "Ol\' Sooty\'s Head", + [2714] = "Monster - Item, Lantern - Square", + [2715] = "Monster - Item, Lantern - Round", + [2716] = "Monster - Item, Bottle - Green", + [2717] = "Monster - Item, Bottle - Black", + [2718] = "Monster - Item, Glass - Clear", + [2719] = "Small Brass Key", + [2720] = "Muddy Note", + [2721] = "Holy Shroud", + [2722] = "Wine Ticket", + [2723] = "Bottle of Pinot Noir", + [2724] = "Cloth Request", + [2725] = "Green Hills of Stranglethorn - Page 1", + [2728] = "Green Hills of Stranglethorn - Page 4", + [2730] = "Green Hills of Stranglethorn - Page 6", + [2732] = "Green Hills of Stranglethorn - Page 8", + [2734] = "Green Hills of Stranglethorn - Page 10", + [2735] = "Green Hills of Stranglethorn - Page 11", + [2738] = "Green Hills of Stranglethorn - Page 14", + [2740] = "Green Hills of Stranglethorn - Page 16", + [2742] = "Green Hills of Stranglethorn - Page 18", + [2744] = "Green Hills of Stranglethorn - Page 20", + [2745] = "Green Hills of Stranglethorn - Page 21", + [2748] = "Green Hills of Stranglethorn - Page 24", + [2749] = "Green Hills of Stranglethorn - Page 25", + [2750] = "Green Hills of Stranglethorn - Page 26", + [2751] = "Green Hills of Stranglethorn - Page 27", + [2754] = "Tarnished Bastard Sword", + [2755] = "Green Hills of Stranglethorn", + [2756] = "Green Hills of Stranglethorn - Chapter I", + [2757] = "Green Hills of Stranglethorn - Chapter II", + [2758] = "Green Hills of Stranglethorn - Chapter III", + [2759] = "Green Hills of Stranglethorn - Chapter IV", + [2760] = "Thurman\'s Sewing Kit", + [2763] = "Fisherman Knife", + [2764] = "Small Dagger", + [2765] = "Hunting Knife", + [2766] = "Deft Stiletto", + [2770] = "Copper Ore", + [2771] = "Tin Ore", + [2772] = "Iron Ore", + [2773] = "Cracked Shortbow", + [2774] = "Rust-covered Blunderbuss", + [2775] = "Silver Ore", + [2776] = "Gold Ore", + [2777] = "Feeble Shortbow", + [2778] = "Cheap Blunderbuss", + [2779] = "Tear of Tilloa", + [2780] = "Light Hunting Bow", + [2781] = "Dirty Blunderbuss", + [2782] = "Mishandled Recurve Bow", + [2783] = "Shoddy Blunderbuss", + [2784] = "Musquash Root", + [2785] = "Stiff Recurve Bow", + [2786] = "Oiled Blunderbuss", + [2787] = "Trogg Dagger", + [2788] = "Black Claw Stout", + [2789] = "Deprecated Bent Copper Lockpick", + [2790] = "Deprecated Straight Copper Lockpick", + [2791] = "Deprecated Fine Copper Lockpick", + [2792] = "Deprecated Worn Bronze Lockpick", + [2793] = "Deprecated Book: The History of Stormwind", + [2794] = "An Old History Book", + [2795] = "Book: Stresses of Iron", + [2797] = "Heart of Mokk", + [2798] = "Rethban Ore", + [2799] = "Gorilla Fang", + [2800] = "Black Velvet Robes", + [2801] = "Blade of Hanna", + [2802] = "Blazing Emblem", + [2803] = "Deprecated Static Charm", + [2804] = "Deprecated Freezing Talisman", + [2805] = "Yeti Fur Cloak", + [2806] = "Package for Stormpike", + [2807] = "Guillotine Axe", + [2808] = "Torch of Flame", + [2809] = "Monster - Mace, Spiked Basic", + [2810] = "Monster - Mace, Standard Serpent", + [2811] = "Deprecated Lightforge Staff", + [2812] = "Deprecated Lightforge Dagger", + [2813] = "Monster - Mace, Standard Basic", + [2814] = "Deprecated Lightforge Hammer", + [2815] = "Curve-bladed Ripper", + [2816] = "Death Speaker Scepter", + [2817] = "Soft Leather Tunic", + [2818] = "Stretched Leather Trousers", + [2819] = "Cross Dagger", + [2820] = "Nifty Stopwatch", + [2821] = "Mo\'grosh Masher", + [2822] = "Mo\'grosh Toothpick", + [2823] = "Mo\'grosh Can Opener", + [2824] = "Hurricane", + [2825] = "Bow of Searing Arrows", + [2826] = "Deprecated Medal of Fortitude", + [2827] = "Monster - Cleaver", + [2828] = "Nissa\'s Remains", + [2829] = "Gregor\'s Remains", + [2830] = "Thurman\'s Remains", + [2831] = "Devlin\'s Remains", + [2832] = "Verna\'s Westfall Stew Recipe", + [2833] = "The Lich\'s Spellbook", + [2834] = "Embalming Ichor", + [2835] = "Rough Stone", + [2836] = "Coarse Stone", + [2837] = "Thurman\'s Letter", + [2838] = "Heavy Stone", + [2839] = "A Letter to Yvette", + [2840] = "Copper Bar", + [2841] = "Bronze Bar", + [2842] = "Silver Bar", + [2843] = "Dirty Knucklebones", + [2844] = "Copper Mace", + [2845] = "Copper Axe", + [2846] = "Tirisfal Pumpkin", + [2847] = "Copper Shortsword", + [2848] = "Bronze Mace", + [2849] = "Bronze Axe", + [2850] = "Bronze Shortsword", + [2851] = "Copper Chain Belt", + [2852] = "Copper Chain Pants", + [2853] = "Copper Bracers", + [2854] = "Runed Copper Bracers", + [2855] = "Putrid Claw", + [2856] = "Iron Pike", + [2857] = "Runed Copper Belt", + [2858] = "Darkhound Blood", + [2859] = "Vile Fin Scale", + [2862] = "Rough Sharpening Stone", + [2863] = "Coarse Sharpening Stone", + [2864] = "Runed Copper Breastplate", + [2865] = "Rough Bronze Leggings", + [2866] = "Rough Bronze Cuirass", + [2867] = "Rough Bronze Bracers", + [2868] = "Patterned Bronze Bracers", + [2869] = "Silvered Bronze Breastplate", + [2870] = "Shining Silver Breastplate", + [2871] = "Heavy Sharpening Stone", + [2872] = "Vicious Night Web Spider Venom", + [2874] = "An Unsent Letter", + [2875] = "Scarlet Insignia Ring", + [2876] = "Duskbat Pelt", + [2877] = "Combatant Claymore", + [2878] = "Bearded Boneaxe", + [2879] = "Antipodean Rod", + [2880] = "Weak Flux", + [2881] = "Plans: Runed Copper Breastplate", + [2882] = "Plans: Silvered Bronze Shoulders", + [2883] = "Plans: Deadly Bronze Poniard", + [2884] = "Monster - Dynamite, Lit", + [2885] = "Scarlet Crusade Documents", + [2886] = "Crag Boar Rib", + [2887] = "Ruined Wolf Pelt", + [2888] = "Beer Basted Boar Ribs", + [2889] = "Recipe: Beer Basted Boar Ribs", + [2890] = "Ruined Boar Pelt", + [2891] = "Letter to the City Architect", + [2892] = "Deadly Poison", + [2893] = "Deadly Poison II", + [2894] = "Rhapsody Malt", + [2895] = "Creeping Pain", + [2896] = "Creeping Anguish", + [2898] = "Mountaineer Chestpiece", + [2899] = "Wendigo Collar", + [2900] = "Stone Buckler", + [2901] = "Mining Pick", + [2902] = "Cloak of the Faith", + [2903] = "Daryl\'s Hunting Bow", + [2904] = "Daryl\'s Hunting Rifle", + [2905] = "Goat Fur Cloak", + [2906] = "Darkshire Mail Leggings", + [2907] = "Dwarven Tree Chopper", + [2908] = "Thornblade", + [2909] = "Red Wool Bandana", + [2910] = "Gold Militia Boots", + [2911] = "Keller\'s Girdle", + [2912] = "Claw of the Shadowmancer", + [2913] = "Silk Mantle of Gamn", + [2915] = "Taran Icebreaker", + [2916] = "Gold Lion Shield", + [2917] = "Tranquil Ring", + [2918] = "Deprecated Coif of Inner Strength", + [2919] = "Relic of the Ancients", + [2920] = "Sacred Relic", + [2921] = "Blessed Relic", + [2922] = "Spirit Relic", + [2923] = "Relic of Righteousness", + [2924] = "Crocolisk Meat", + [2925] = "Crocolisk Skin", + [2926] = "Head of Bazil Thredd", + [2927] = "Creeping Torment", + [2928] = "Dust of Decay", + [2929] = "Tomb Rot", + [2930] = "Essence of Pain", + [2931] = "Maiden\'s Anguish", + [2932] = "Torment Vine", + [2933] = "Seal of Wrynn", + [2934] = "Ruined Leather Scraps", + [2939] = "Crocolisk Tear", + [2940] = "Bloody Bear Paw", + [2941] = "Prison Shank", + [2942] = "Iron Knuckles", + [2943] = "Eye of Paleth", + [2944] = "Cursed Eye of Paleth", + [2945] = "(OLD)Medium Throwing Knife", + [2946] = "Balanced Throwing Dagger", + [2947] = "Small Throwing Knife", + [2948] = "Deprecated Talisman of Cleansing", + [2949] = "Mariner Boots", + [2950] = "Icicle Rod", + [2951] = "Ring of the Underwood", + [2952] = "Fine Light Hide Jerkin", + [2953] = "Watch Master\'s Cloak", + [2954] = "Night Watch Pantaloons", + [2955] = "First Mate Hat", + [2956] = "Report on the Defias Brotherhood", + [2957] = "Journeyman\'s Vest", + [2958] = "Journeyman\'s Pants", + [2959] = "Journeyman\'s Boots", + [2960] = "Journeyman\'s Gloves", + [2961] = "Burnt Leather Vest", + [2962] = "Burnt Leather Breeches", + [2963] = "Burnt Leather Boots", + [2964] = "Burnt Leather Gloves", + [2965] = "Warrior\'s Tunic", + [2966] = "Warrior\'s Pants", + [2967] = "Warrior\'s Boots", + [2968] = "Warrior\'s Gloves", + [2969] = "Spellbinder Vest", + [2970] = "Spellbinder Pants", + [2971] = "Spellbinder Boots", + [2972] = "Spellbinder Gloves", + [2973] = "Hunting Tunic", + [2974] = "Hunting Pants", + [2975] = "Hunting Boots", + [2976] = "Hunting Gloves", + [2977] = "Veteran Armor", + [2978] = "Veteran Leggings", + [2979] = "Veteran Boots", + [2980] = "Veteran Gloves", + [2981] = "Seer\'s Robe", + [2982] = "Seer\'s Pants", + [2983] = "Seer\'s Boots", + [2984] = "Seer\'s Gloves", + [2985] = "Inscribed Leather Breastplate", + [2986] = "Inscribed Leather Pants", + [2987] = "Inscribed Leather Boots", + [2988] = "Inscribed Leather Gloves", + [2989] = "Burnished Tunic", + [2990] = "Burnished Leggings", + [2991] = "Burnished Boots", + [2992] = "Burnished Gloves", + [2993] = "Deprecated Inscribed Leather Helm", + [2994] = "Deprecated Seer\'s Monocle", + [2995] = "Deprecated Burnished Chain Coif", + [2996] = "Bolt of Linen Cloth", + [2997] = "Bolt of Woolen Cloth", + [2998] = "A Simple Compass", + [2999] = "Steelgrill\'s Tools", + [3000] = "Brood Mother Carapace", + [3001] = "Deprecated Medivh\'s Folly", + [3002] = "Relic Horn of Justice", + [3003] = "Relic of the Eye", + [3004] = "Relic of the Dead", + [3005] = "Relic of Truth", + [3006] = "Holy Relic Shard", + [3007] = "Deprecated Dark Iron Pauldrons", + [3008] = "Wendigo Fur Cloak", + [3010] = "Fine Sand", + [3011] = "Feathered Headdress", + [3012] = "Scroll of Agility", + [3013] = "Scroll of Protection", + [3014] = "Battleworn Axe", + [3015] = "Deprecated Chatter\'s Rock", + [3016] = "Gunther\'s Spellbook", + [3017] = "Sevren\'s Orders", + [3018] = "Hide of Lupos", + [3019] = "Noble\'s Robe", + [3020] = "Enduring Cap", + [3021] = "Ranger Bow", + [3022] = "Bluegill Breeches", + [3023] = "Large Bore Blunderbuss", + [3024] = "BKP 2700 \"Enforcer\"", + [3025] = "BKP 42 \"Ultra\"", + [3026] = "Reinforced Bow", + [3027] = "Heavy Recurve Bow", + [3028] = "Longbow", + [3029] = "Depricated Whipwood Arrow", + [3030] = "Razor Arrow", + [3031] = "Depricated Razor Arrow", + [3032] = "Deprecated Impact Shot", + [3033] = "Solid Shot", + [3034] = "BKP \"Impact\" Shot", + [3035] = "Laced Pumpkin", + [3036] = "Heavy Shortbow", + [3037] = "Whipwood Recurve Bow", + [3038] = "Archer\'s Longbow", + [3039] = "Short Ash Bow", + [3040] = "Hunter\'s Muzzle Loader", + [3041] = "\"Mage-Eye\" Blunderbuss", + [3042] = "BKP \"Sparrow\" Smallbore", + [3043] = "Elven Arrow", + [3044] = "OLDMonster - Mace, Standard Basic Offhand", + [3045] = "Lambent Scale Boots", + [3046] = "Deprecated Glinting Scale Crown", + [3047] = "Lambent Scale Gloves", + [3048] = "Lambent Scale Legguards", + [3049] = "Lambent Scale Breastplate", + [3050] = "Deprecated Winter Mail Leggings", + [3051] = "Deprecated Winter Mail Gloves", + [3052] = "Deprecated Winter Mail Coif", + [3053] = "Humbert\'s Chestpiece", + [3054] = "Deprecated Winter Mail Boots", + [3055] = "Forest Leather Chestpiece", + [3056] = "Forest Leather Pants", + [3057] = "Forest Leather Boots", + [3058] = "Forest Leather Gloves", + [3059] = "Deprecated Forest Leather Helm", + [3060] = "Deprecated Deepwood Boots", + [3061] = "Deprecated Deepwood Breastplate", + [3062] = "Deprecated Deepwood Gloves", + [3063] = "Deprecated Deepwood Helm", + [3064] = "Deprecated Deepwood Pants", + [3065] = "Bright Boots", + [3066] = "Bright Gloves", + [3067] = "Bright Pants", + [3068] = "Deprecated Silver-thread Cowl", + [3069] = "Bright Robe", + [3070] = "Ensign Cloak", + [3071] = "Striking Hatchet", + [3072] = "Smoldering Robe", + [3073] = "Smoldering Pants", + [3074] = "Smoldering Gloves", + [3075] = "Eye of Flame", + [3076] = "Smoldering Boots", + [3077] = "Deprecated Stonecloth Cowl", + [3078] = "Naga Heartpiercer", + [3079] = "Skorn\'s Rifle", + [3080] = "Candle of Beckoning", + [3081] = "Nether Gem", + [3082] = "Dargol\'s Skull", + [3083] = "Restabilization Cog", + [3084] = "Gyromechanic Gear", + [3085] = "Barrel of Shimmer Stout", + [3086] = "Cask of Shimmer Stout", + [3087] = "Mug of Shimmer Stout", + [3088] = "Book of Rejuvenation IV", + [3089] = "Tome of Flamestrike", + [3090] = "Tome of Frostbolt", + [3091] = "Tome of Arcane Intellect II", + [3092] = "Tome of Flamestrike III", + [3093] = "Tome of Flamestrike II", + [3094] = "Tome of Fire Blast II", + [3095] = "Tome of Fire Blast III", + [3096] = "Tome of Feather Fall", + [3097] = "Tome of Conjure Water II", + [3098] = "Tome of Slow", + [3099] = "Tome of Ice Armor II", + [3100] = "Tome of Blizzard II", + [3101] = "Tome of Frost Nova III", + [3102] = "Tome of Arcane Intellect III", + [3103] = "Coldridge Hammer", + [3104] = "Keen Throwing Knife", + [3105] = "Large Throwing Knife", + [3106] = "Wicked Throwing Dagger", + [3107] = "Keen Throwing Knife", + [3108] = "Heavy Throwing Dagger", + [3109] = "(OLD)Wicked Throwing Dagger", + [3110] = "Tunnel Rat Ear", + [3111] = "Crude Throwing Axe", + [3113] = "Codex of Holy Word: Shield", + [3114] = "Codex of Shadow Word: Befuddle", + [3115] = "Codex of Renew IV", + [3116] = "Codex of Holy Word: Shield II", + [3117] = "Hildelve\'s Journal", + [3118] = "Codex of Greater Heal", + [3119] = "Codex of Holy Word: Shield V", + [3120] = "Codex of Holy Smite IV", + [3121] = "Codex of Levitate", + [3122] = "Codex of Holy Word: Shield III", + [3123] = "Codex of Holy Word: Fortitude III", + [3124] = "Codex of Inner Fire III", + [3125] = "Tablet of Serpent Totem II", + [3126] = "Tablet of Shock II", + [3127] = "Tablet of Shock III", + [3128] = "(OLD)Medium Throwing Axe", + [3129] = "Tablet of Lightning Bolt IV", + [3130] = "Tablet of Restoration IV", + [3131] = "Weighted Throwing Axe", + [3132] = "Tablet of Molten Blast IV", + [3133] = "Tablet of Mana Totem", + [3134] = "Grimoire of Curse of Mannoroth", + [3135] = "Sharp Throwing Axe", + [3136] = "(OLD)Heavy Throwing Axe", + [3137] = "Deadly Throwing Axe", + [3138] = "Grimoire of Shadow Bolt IV", + [3139] = "Grimoire of Demon Armor II", + [3140] = "Grimoire of Blood Boil II", + [3141] = "Grimoire of Life Drain", + [3142] = "Grimoire of Curse of Sargeras", + [3143] = "Grimoire of Burning Spirit", + [3144] = "Grimoire of Burning Spirit II", + [3145] = "Off Hand Test Dagger", + [3146] = "Grimoire of Burning Spirit III", + [3147] = "Deprecated Tattered Shirt", + [3148] = "Work Shirt", + [3149] = "Deprecated Ripped Vest", + [3150] = "Deprecated Tattered Pants", + [3151] = "Siege Brigade Vest", + [3152] = "Driving Gloves", + [3153] = "Oil-stained Cloak", + [3154] = "Thelsamar Axe", + [3155] = "Remedy of Arugal", + [3156] = "Glutton Shackle", + [3157] = "Darksoul Shackle", + [3158] = "Burnt Hide Bracers", + [3159] = "Deprecated Crusader\'s Mantle", + [3160] = "Ironplate Buckler", + [3161] = "Robe of the Keeper", + [3162] = "Notched Rib", + [3163] = "Blackened Skull", + [3164] = "Discolored Worg Heart", + [3165] = "Quinn\'s Potion", + [3166] = "Ironheart Chain", + [3167] = "Thick Spider Hair", + [3168] = "Chipped Scale", + [3169] = "Chipped Bear Tooth", + [3170] = "Large Bear Tooth", + [3171] = "Broken Boar Tusk", + [3172] = "Boar Intestines", + [3173] = "Bear Meat", + [3174] = "Spider Ichor", + [3175] = "Ruined Dragonhide", + [3176] = "Small Claw", + [3177] = "Tiny Fang", + [3179] = "Cracked Dragon Molting", + [3180] = "Flecked Raptor Scale", + [3181] = "Partially Digested Meat", + [3182] = "Spider\'s Silk", + [3183] = "Mangy Claw", + [3184] = "Hook Dagger", + [3185] = "Acrobatic Staff", + [3186] = "Viking Sword", + [3187] = "Sacrificial Kris", + [3188] = "Coral Claymore", + [3189] = "Wood Chopper", + [3190] = "Beatstick", + [3191] = "Arced War Axe", + [3192] = "Short Bastard Sword", + [3193] = "Oak Mallet", + [3194] = "Black Malice", + [3195] = "Barbaric Battle Axe", + [3196] = "Edged Bastard Sword", + [3197] = "Stonecutter Claymore", + [3198] = "Battering Hammer", + [3199] = "Battle Slayer", + [3200] = "Burnt Leather Bracers", + [3201] = "Barbarian War Axe", + [3202] = "Forest Leather Bracers", + [3203] = "Dense Triangle Mace", + [3204] = "Deepwood Bracers", + [3205] = "Inscribed Leather Bracers", + [3206] = "Cavalier Two-hander", + [3207] = "Hunting Bracers", + [3208] = "Conk Hammer", + [3209] = "Ancient War Sword", + [3210] = "Brutal War Axe", + [3211] = "Burnished Bracers", + [3212] = "Lambent Scale Bracers", + [3213] = "Veteran Bracers", + [3214] = "Warrior\'s Bracers", + [3215] = "Deprecated Winter Mail Bracers", + [3216] = "Warm Winter Robe", + [3217] = "Foreman Belt", + [3218] = "Pyrewood Shackle", + [3219] = "Deprecated Mantle of Nobility", + [3220] = "Blood Sausage", + [3221] = "Deprecated Sage Mantle", + [3222] = "Wicked Dagger", + [3223] = "Frostmane Scepter", + [3224] = "Silver-lined Bracers", + [3225] = "Bloodstained Knife", + [3226] = "Deprecated Watchman Pauldrons", + [3227] = "Nightbane Staff", + [3228] = "Jimmied Handcuffs", + [3229] = "Tarantula Silk Sash", + [3230] = "Black Wolf Bracers", + [3231] = "Cutthroat Pauldrons", + [3232] = "Deprecated Drake-scale Leggings", + [3233] = "Gnoll Hide Sack", + [3234] = "Deliah\'s Ring", + [3235] = "Ring of Scorn", + [3236] = "Rot Hide Ichor", + [3237] = "Sample Ichor", + [3238] = "Johaan\'s Findings", + [3239] = "Rough Weightstone", + [3240] = "Coarse Weightstone", + [3241] = "Heavy Weightstone", + [3242] = "OLDMonster - Chest, Plate Silver", + [3243] = "OLDMonster - Legs, Plate Silver", + [3244] = "OLDMonster - Feet, Plate Silver", + [3245] = "OLDMonster - Hands, Plate Silver", + [3246] = "OLDMonster - Shoulder, Plate Silver", + [3247] = "OLDMonster - Waist, Plate Silver", + [3248] = "Translated Letter from The Embalmer", + [3249] = "Conjured test Item", + [3250] = "Bethor\'s Scroll", + [3251] = "Bethor\'s Potion", + [3252] = "Deathstalker Report", + [3253] = "Grizzled Bear Heart", + [3254] = "Skittering Blood", + [3255] = "Berard\'s Journal", + [3256] = "Lake Skulker Moss", + [3257] = "Lake Creeper Moss", + [3258] = "Hardened Tumor", + [3259] = "Ruined Bat Hide", + [3260] = "Scarlet Initiate Robes", + [3261] = "Webbed Cloak", + [3262] = "Putrid Wooden Hammer", + [3263] = "Webbed Pants", + [3264] = "Duskbat Wing", + [3265] = "Scavenger Paw", + [3266] = "Scarlet Armband", + [3267] = "Forsaken Shortsword", + [3268] = "Forsaken Dagger", + [3269] = "Forsaken Maul", + [3270] = "Flax Vest", + [3271] = "Deprecated Flax Mantle", + [3272] = "Zombie Skin Leggings", + [3273] = "Rugged Mail Vest", + [3274] = "Flax Boots", + [3275] = "Flax Gloves", + [3276] = "Deathguard Buckler", + [3277] = "Executor Staff", + [3278] = "Aura Proc Damage Sword", + [3279] = "Battle Chain Boots", + [3280] = "Battle Chain Bracers", + [3281] = "Battle Chain Gloves", + [3282] = "Battle Chain Pants", + [3283] = "Battle Chain Tunic", + [3284] = "Tribal Boots", + [3285] = "Tribal Bracers", + [3286] = "Tribal Gloves", + [3287] = "Tribal Pants", + [3288] = "Tribal Vest", + [3289] = "Ancestral Boots", + [3290] = "Ancestral Gloves", + [3291] = "Ancestral Woollies", + [3292] = "Ancestral Tunic", + [3293] = "Deadman Cleaver", + [3294] = "Deadman Club", + [3295] = "Deadman Blade", + [3296] = "Deadman Dagger", + [3297] = "Fel Moss", + [3298] = "Deprecated Grizzled Bearskin Pouch", + [3299] = "Fractured Canine", + [3300] = "Rabbit\'s Foot", + [3301] = "Sharp Canine", + [3302] = "Brackwater Boots", + [3303] = "Brackwater Bracers", + [3304] = "Brackwater Gauntlets", + [3305] = "Brackwater Leggings", + [3306] = "Brackwater Vest", + [3307] = "Barbaric Cloth Boots", + [3308] = "Barbaric Cloth Gloves", + [3309] = "Barbaric Loincloth", + [3310] = "Barbaric Cloth Vest", + [3311] = "Ceremonial Leather Ankleguards", + [3312] = "Ceremonial Leather Bracers", + [3313] = "Ceremonial Leather Harness", + [3314] = "Ceremonial Leather Gloves", + [3315] = "Ceremonial Leather Loincloth", + [3316] = "Alaric\'s Head", + [3317] = "A Talking Head", + [3318] = "Alaric\'s Remains", + [3319] = "Short Sabre", + [3320] = "Bonecaster Sash", + [3321] = "Gray Fur Booties", + [3322] = "Wispy Cloak", + [3323] = "Ghostly Bracers", + [3324] = "Ghostly Mantle", + [3325] = "Vile Fin Battle Axe", + [3326] = "Monster - Mace2H, Basic Stone Hammer", + [3327] = "Vile Fin Oracle Staff", + [3328] = "Spider Web Robe", + [3329] = "Spiked Wooden Plank", + [3330] = "Dargol\'s Hauberk", + [3331] = "Melrache\'s Cape", + [3332] = "Perrine\'s Boots", + [3333] = "Deprecated Scarlet Captain\'s Pauldrons", + [3334] = "Farmer\'s Shovel", + [3335] = "Farmer\'s Broom", + [3336] = "Flesh Piercer", + [3337] = "Dragonmaw War Banner", + [3338] = "Deprecated Obsidian Stone", + [3339] = "Dwarven Tinder", + [3340] = "Incendicite Ore", + [3341] = "Gauntlets of Ogre Strength", + [3342] = "Captain Sander\'s Shirt", + [3343] = "Captain Sander\'s Booty Bag", + [3344] = "Captain Sander\'s Sash", + [3345] = "Silk Wizard Hat", + [3346] = "Monster - Item, Shovel", + [3347] = "Bundle of Crocolisk Skins", + [3348] = "Giant Crocolisk Skin", + [3349] = "Sida\'s Bag", + [3350] = "Monster - Item, Bone", + [3351] = "Monster - Item, Rolling Pin", + [3352] = "Ooze-covered Bag", + [3353] = "Rune-inscribed Pendant", + [3354] = "Dalaran Pendant", + [3355] = "Wild Steelbloom", + [3356] = "Kingsblood", + [3357] = "Liferoot", + [3358] = "Khadgar\'s Whisker", + [3359] = "Martin Thunder3.1.2", + [3360] = "Stitches\' Femur", + [3361] = "Monster - Mace, Spiked Heavy", + [3362] = "Monster - Item, Broom", + [3363] = "Frayed Belt", + [3364] = "Monster - Sword, Rapier", + [3365] = "Frayed Bracers", + [3366] = "Monster - Sword2H, Katana", + [3367] = "Monster - Item, Pitchfork", + [3368] = "Monster - Item, Harpoon", + [3369] = "Grave Moss", + [3370] = "Patchwork Belt", + [3371] = "Empty Vial", + [3372] = "Leaded Vial", + [3373] = "Patchwork Bracers", + [3374] = "Calico Belt", + [3375] = "Calico Bracers", + [3376] = "Canvas Belt", + [3377] = "Canvas Bracers", + [3378] = "Brocade Belt", + [3379] = "Brocade Bracers", + [3380] = "Cross-stitched Belt", + [3381] = "Cross-stitched Bracers", + [3382] = "Weak Troll\'s Blood Potion", + [3383] = "Elixir of Wisdom", + [3384] = "Minor Magic Resistance Potion", + [3385] = "Lesser Mana Potion", + [3386] = "Elixir of Poison Resistance", + [3387] = "Limited Invulnerability Potion", + [3388] = "Strong Troll\'s Blood Potion", + [3389] = "Elixir of Defense", + [3390] = "Elixir of Lesser Agility", + [3391] = "Elixir of Ogre\'s Strength", + [3392] = "Ringed Helm", + [3393] = "Recipe: Minor Magic Resistance Potion", + [3394] = "Recipe: Elixir of Poison Resistance", + [3395] = "Recipe: Limited Invulnerability Potion", + [3396] = "Recipe: Elixir of Lesser Agility", + [3397] = "Young Crocolisk Skin", + [3398] = "Martin Thunder3 jesse test", + [3399] = "Vulture Talon", + [3400] = "Lucine Longsword", + [3401] = "Rough Crocolisk Scale", + [3402] = "Soft Patch of Fur", + [3403] = "Ivory Boar Tusk", + [3404] = "Buzzard Wing", + [3405] = "Raven Claw Talisman", + [3406] = "Black Feather Quill", + [3407] = "Sapphire of Sky", + [3408] = "Rune of Nesting", + [3409] = "Nightsaber Fang", + [3410] = "Deprecated Glade Bear Fang", + [3411] = "Strigid Owl Feather", + [3412] = "Webwood Spider Silk", + [3413] = "Doomspike", + [3414] = "Crested Scepter", + [3415] = "Staff of the Friar", + [3416] = "Martyr\'s Chain", + [3417] = "Onyx Claymore", + [3418] = "Fel Cone", + [3419] = "Red Rose", + [3420] = "Black Rose", + [3421] = "Simple Wildflowers", + [3422] = "Beautiful Wildflowers", + [3423] = "Bouquet of White Roses", + [3424] = "Bouquet of Black Roses", + [3425] = "Woven Wand", + [3426] = "Bold Yellow Shirt", + [3427] = "Stylish Black Shirt", + [3428] = "Common Gray Shirt", + [3429] = "Guardsman Belt", + [3430] = "Sniper Rifle", + [3431] = "Bone-studded Leather", + [3432] = "Monster - Glaive - 1 Blade Basic", + [3433] = "Monster - Spear, Badass", + [3434] = "Slumber Sand", + [3435] = "Zombie Skin Bracers", + [3436] = "Deprecated Quilted Mantle", + [3437] = "Clasped Belt", + [3438] = "Ankh of Resurrection", + [3439] = "Zombie Skin Boots", + [3440] = "Bonecracker", + [3441] = "Deprecated Crippling Agent", + [3442] = "Apprentice Sash", + [3443] = "Ceremonial Tomahawk", + [3444] = "Tiller\'s Vest", + [3445] = "Ceremonial Knife", + [3446] = "Darkwood Staff", + [3447] = "Cryptwalker Boots", + [3448] = "Senggin Root", + [3449] = "Mystic Shawl", + [3450] = "Faerleia\'s Shield", + [3451] = "Nightglow Concoction", + [3452] = "Ceranium Rod", + [3453] = "Quilted Bracers", + [3454] = "Reconnaissance Boots", + [3455] = "Deathstalker Shortsword", + [3456] = "Dog Whistle", + [3457] = "Stamped Trousers", + [3458] = "Rugged Mail Gloves", + [3459] = "Deprecated Weathered Shoulderpads", + [3460] = "Johaan\'s Special Drink", + [3461] = "High Robe of the Adjudicator", + [3462] = "Talonstrike", + [3463] = "Silver Star", + [3464] = "Feathered Arrow", + [3465] = "Exploding Shot", + [3466] = "Strong Flux", + [3467] = "Dull Iron Key", + [3468] = "Renferrel\'s Findings", + [3469] = "Copper Chain Boots", + [3470] = "Rough Grinding Stone", + [3471] = "Copper Chain Vest", + [3472] = "Runed Copper Gauntlets", + [3473] = "Runed Copper Pants", + [3474] = "Gemmed Copper Gauntlets", + [3475] = "Cloak of Flames", + [3476] = "Gray Bear Tongue", + [3477] = "Creeper Ichor", + [3478] = "Coarse Grinding Stone", + [3479] = "Bronze Scale Curiass", + [3480] = "Rough Bronze Shoulders", + [3481] = "Silvered Bronze Shoulders", + [3482] = "Silvered Bronze Boots", + [3483] = "Silvered Bronze Gauntlets", + [3484] = "Green Iron Boots", + [3485] = "Green Iron Gauntlets", + [3486] = "Heavy Grinding Stone", + [3487] = "Heavy Copper Broadsword", + [3488] = "Copper Battle Axe", + [3489] = "Thick War Axe", + [3490] = "Deadly Bronze Poniard", + [3491] = "Heavy Bronze Mace", + [3492] = "Mighty Iron Hammer", + [3493] = "Raptor\'s End", + [3494] = "Monster - Claw", + [3495] = "Elixir of Suffering", + [3496] = "Mountain Lion Blood", + [3497] = "Elixir of Pain", + [3498] = "Taretha\'s Necklace", + [3499] = "Burnished Gold Key", + [3500] = "Deprecated Battered Lock", + [3501] = "Deprecated Rusted Lock", + [3502] = "Mudsnout Blossoms", + [3503] = "Deprecated Forboding Document", + [3504] = "Deprecated Encrypted Letterr", + [3505] = "Alterac Signet Ring", + [3506] = "Mudsnout Composite", + [3507] = "Deprecated Test Fishliver Oil", + [3508] = "Mudsnout Mixture", + [3509] = "Daggerspine Scale", + [3510] = "Torn Fin Eye", + [3511] = "Cloak of the People\'s Militia", + [3513] = "Deprecated Contract for the Magistrate", + [3514] = "Mor\'Ladim\'s Skull", + [3515] = "Ataeric\'s Staff", + [3516] = "Lescovar\'s Head", + [3517] = "Keg of Shindigger Stout", + [3518] = "Decrypted Letter", + [3519] = "Deprecated DEFAULT QUEST ITEM - Scroll", + [3520] = "Tainted Keg", + [3521] = "Cleverly Encrypted Letter", + [3522] = "Black Night Elf Breastplate", + [3523] = "Unused Black Night Elf Pants", + [3524] = "Unused Black Night Elf Boots", + [3525] = "Unused Black Night Elf Bracers", + [3526] = "Black Night Elf Gloves", + [3527] = "White Night Elf Breastplate", + [3528] = "Red Leather C03 Breastplate", + [3529] = "Black Night Elf Helm", + [3530] = "Wool Bandage", + [3531] = "Heavy Wool Bandage", + [3532] = "Unused Red Leather C03 Pants", + [3533] = "Red Leather C03 Boots", + [3534] = "Unused Red Leather C03 Gloves", + [3535] = "Red Leather C03 Bracers", + [3536] = "Demon Hunter Blindfold", + [3537] = "Black Leather D02 Breastplate", + [3538] = "Gray Leather D02 Breastplate", + [3539] = "Unused Black Leather D02 Pants", + [3540] = "Unused Gray Leather D02 Pants", + [3541] = "Black Leather D02 Boots", + [3542] = "Gray Leather D02 Boots", + [3543] = "Unused Black Leather D02 Gloves", + [3544] = "Unused Gray Leather D02 Gloves", + [3545] = "Black Leather D02 Bracers", + [3546] = "Gray Leather D02 Bracers", + [3547] = "White Leather D03 Breastplate", + [3548] = "Unused White Leather D03 Pants", + [3549] = "Unused White Leather D03 Gloves", + [3550] = "Targ\'s Head", + [3551] = "Muckrake\'s Head", + [3552] = "Glommus\'s Head", + [3553] = "Mug\'thol\'s Head", + [3554] = "Crown of Will", + [3555] = "Robe of Solomon", + [3556] = "Dread Mage Hat", + [3557] = "Unused Tabard of Chow", + [3558] = "Fen Keeper Robe", + [3559] = "Night Watch Gauntlets", + [3560] = "Mantle of Honor", + [3561] = "Resilient Poncho", + [3562] = "Belt of Vindication", + [3563] = "Seafarer\'s Pantaloons", + [3564] = "Shipment of Iron", + [3565] = "Beerstained Gloves", + [3566] = "Raptorbane Armor", + [3567] = "Dwarven Fishing Pole", + [3568] = "Deprecated Oslow\'s Toolbox", + [3569] = "Vicar\'s Robe", + [3570] = "Bonegrinding Pestle", + [3571] = "Trogg Beater", + [3572] = "Daryl\'s Shortsword", + [3573] = "Hunting Quiver", + [3574] = "Hunting Ammo Sack", + [3575] = "Iron Bar", + [3576] = "Tin Bar", + [3577] = "Gold Bar", + [3578] = "Harvester\'s Pants", + [3579] = "Ornate Copper Shoulders", + [3580] = "Deprecated Iron Key", + [3581] = "Serrated Knife", + [3582] = "Acidproof Cloak", + [3583] = "Weathered Belt", + [3584] = "Deprecated Perenolde\'s Head", + [3585] = "Camouflaged Tunic", + [3586] = "Logsplitter", + [3587] = "Embroidered Belt", + [3588] = "Embroidered Bracers", + [3589] = "Heavy Weave Belt", + [3590] = "Heavy Weave Bracers", + [3591] = "Padded Belt", + [3592] = "Padded Bracers", + [3593] = "Russet Belt", + [3594] = "Russet Bracers", + [3595] = "Tattered Cloth Belt", + [3596] = "Tattered Cloth Bracers", + [3597] = "Thick Cloth Belt", + [3598] = "Thick Cloth Bracers", + [3599] = "Thin Cloth Belt", + [3600] = "Thin Cloth Bracers", + [3601] = "Syndicate Missive", + [3602] = "Knitted Belt", + [3603] = "Knitted Bracers", + [3604] = "Bandolier of the Night Watch", + [3605] = "Quiver of the Night Watch", + [3606] = "Woven Belt", + [3607] = "Woven Bracers", + [3608] = "Plans: Mighty Iron Hammer", + [3609] = "Plans: Copper Chain Vest", + [3610] = "Plans: Gemmed Copper Gauntlets", + [3611] = "Plans: Green Iron Boots", + [3612] = "Plans: Green Iron Gauntlets", + [3613] = "Valdred\'s Hands", + [3614] = "Yowler\'s Paw", + [3615] = "Kurzen\'s Head", + [3616] = "Mind\'s Eye", + [3617] = "Pendant of Shadow", + [3618] = "Gobbler\'s Head", + [3619] = "Snellig\'s Snuffbox", + [3620] = "Lillith\'s Remains", + [3621] = "Ivar\'s Head", + [3622] = "Essence of Nightlash", + [3623] = "Thule\'s Head", + [3624] = "Deprecated QDROP - Ma\'ruk Wyrmscale", + [3625] = "Nek\'rosh\'s Head", + [3626] = "Head of Baron Vardus", + [3627] = "Fang of Vagash", + [3628] = "Hand of Dextren Ward", + [3629] = "Mistmantle Family Ring", + [3630] = "Head of Targorr", + [3631] = "Bellygrub\'s Tusk", + [3632] = "Fangore\'s Paw", + [3633] = "Head of Gath\'Ilzogg", + [3634] = "Head of Grimson", + [3635] = "Maggot Eye\'s Paw", + [3636] = "Scale of Old Murk-Eye", + [3637] = "Head of VanCleef", + [3638] = "Sarltooth\'s Talon", + [3639] = "Ear of Balgaras", + [3640] = "Head of Deepfury", + [3641] = "Journeyman\'s Bracers", + [3642] = "Ancestral Bracers", + [3643] = "Spellbinder Bracers", + [3644] = "Barbaric Cloth Bracers", + [3645] = "Seer\'s Cuffs", + [3646] = "Deprecated Stonecloth Bracers", + [3647] = "Bright Bracers", + [3648] = "Warrior\'s Buckler", + [3649] = "Tribal Buckler", + [3650] = "Battle Shield", + [3651] = "Veteran Shield", + [3652] = "Hunting Buckler", + [3653] = "Ceremonial Buckler", + [3654] = "Brackwater Shield", + [3655] = "Burnished Shield", + [3656] = "Lambent Scale Shield", + [3657] = "Hillsbrad Town Registry", + [3658] = "Recovered Tome", + [3659] = "Worn Leather Book", + [3660] = "Tomes of Alterac", + [3661] = "Handcrafted Staff", + [3662] = "Crocolisk Steak", + [3663] = "Murloc Fin Soup", + [3664] = "Crocolisk Gumbo", + [3665] = "Curiously Tasty Omelet", + [3666] = "Gooey Spider Cake", + [3667] = "Tender Crocolisk Meat", + [3668] = "Assassin\'s Contract", + [3669] = "Gelatinous Goo", + [3670] = "Large Slimy Bone", + [3671] = "Lifeless Skull", + [3672] = "Head of Nagaz", + [3673] = "Broken Arrow", + [3674] = "Decomposed Boot", + [3675] = "Burnt Out Torch", + [3676] = "Slimy Ichor", + [3677] = "Deprecated Remington\'s List", + [3678] = "Recipe: Crocolisk Steak", + [3679] = "Recipe: Blood Sausage", + [3680] = "Recipe: Murloc Fin Soup", + [3681] = "Recipe: Crocolisk Gumbo", + [3682] = "Recipe: Curiously Tasty Omelet", + [3683] = "Recipe: Gooey Spider Cake", + [3684] = "Perenolde Tiara", + [3685] = "Raptor Egg", + [3686] = "Deprecated Jkaplan TEST", + [3687] = "Deprecated Unholy Avenger", + [3688] = "Bloodstone Oval", + [3689] = "Bloodstone Marble", + [3690] = "Bloodstone Shard", + [3691] = "Bloodstone Wedge", + [3692] = "Hillsbrad Human Skull", + [3693] = "Humbert\'s Sword", + [3694] = "Monster - Item, Vial Black Offhand", + [3695] = "Monster - Item, Vial Purple Offhand", + [3696] = "Monster - Item, Vial Yellow", + [3697] = "Monster - Item, Potion Blue Offhand", + [3698] = "Monster - Item, Potion Green Offhand", + [3699] = "Monster - Item, Potion Red", + [3701] = "Darthalia\'s Sealed Commendation", + [3702] = "Bear Gall Bladder", + [3703] = "Southshore Stout", + [3704] = "Rusted Iron Key", + [3705] = "Deprecated Rabid Fang", + [3706] = "Ensorcelled Parchment", + [3707] = "Nagaz Parchment", + [3708] = "Helcular\'s Rod", + [3710] = "Rod of Helcular", + [3711] = "Belamoore\'s Research Journal", + [3712] = "Turtle Meat", + [3713] = "Soothing Spices", + [3714] = "Worn Stone Token", + [3715] = "Bracers of Earth Binding", + [3716] = "Murloc Head", + [3717] = "Sack of Murloc Heads", + [3718] = "Foreboding Plans", + [3719] = "Hillman\'s Cloak", + [3720] = "Yeti Fur", + [3721] = "Farren\'s Report", + [3722] = "Familiar Hide", + [3723] = "Familiar Fang", + [3724] = "Familiar Claw", + [3725] = "Familiar Horn", + [3726] = "Big Bear Steak", + [3727] = "Hot Lion Chops", + [3728] = "Tasty Lion Steak", + [3729] = "Soothing Turtle Bisque", + [3730] = "Big Bear Meat", + [3731] = "Lion Meat", + [3732] = "Hooded Cowl", + [3733] = "Orcish War Chain", + [3734] = "Recipe: Big Bear Steak", + [3735] = "Recipe: Hot Lion Chops", + [3736] = "Recipe: Tasty Lion Steak", + [3737] = "Recipe: Soothing Turtle Bisque", + [3738] = "Brewing Rod", + [3739] = "Skull Ring", + [3740] = "Decapitating Sword", + [3741] = "Stomping Boots", + [3742] = "Bow of Plunder", + [3743] = "Sentry Buckler", + [3744] = "Bloodstone Pendant", + [3745] = "Rune of Opening", + [3746] = "Deprecated Test Strongbox", + [3747] = "Meditative Sash", + [3748] = "Feline Mantle", + [3749] = "High Apothecary Cloak", + [3750] = "Ribbed Breastplate", + [3751] = "Mercenary Leggings", + [3752] = "Grunt Vest", + [3753] = "Shepherd\'s Girdle", + [3754] = "Shepherd\'s Gloves", + [3755] = "Fish Gutter", + [3756] = "Monster - Item, Bottle - Black Offhand", + [3757] = "Monster - Item, Bottle - Green Offhand", + [3758] = "Crusader Belt", + [3759] = "Insulated Sage Gloves", + [3760] = "Band of the Undercity", + [3761] = "Deadskull Shield", + [3762] = "Librarian\'s Satchel", + [3763] = "Lunar Buckler", + [3764] = "Mantis Boots", + [3765] = "Brigand\'s Pauldrons", + [3766] = "Gryphon Feather Quill", + [3767] = "Fine Parchment", + [3768] = "Deprecated Anti-magic Potion", + [3769] = "Broken Wand", + [3770] = "Mutton Chop", + [3771] = "Wild Hog Shank", + [3772] = "Conjured Spring Water", + [3773] = "Deprecated Murkwood Sap", + [3774] = "Monster - Dynamite, Unlit", + [3775] = "Crippling Poison", + [3776] = "Crippling Poison II", + [3777] = "Lethargy Root", + [3778] = "Taut Compound Bow", + [3779] = "Hefty War Axe", + [3780] = "Long-barreled Musket", + [3781] = "Broad Claymore", + [3782] = "Large War Club", + [3783] = "Light Scimitar", + [3784] = "Metal Stave", + [3785] = "Keen Axe", + [3786] = "Shiny Dirk", + [3787] = "Stone Club", + [3788] = "Soul Crystal Relic", + [3789] = "Relic Stone of Piety", + [3790] = "Consecrated Relic Parchment", + [3791] = "Relic of the Light", + [3792] = "Interlaced Belt", + [3793] = "Interlaced Boots", + [3794] = "Interlaced Bracers", + [3795] = "Interlaced Cloak", + [3796] = "Interlaced Gloves", + [3797] = "Interlaced Pants", + [3798] = "Interlaced Shoulderpads", + [3799] = "Interlaced Vest", + [3800] = "Hardened Leather Belt", + [3801] = "Hardened Leather Boots", + [3802] = "Hardened Leather Bracers", + [3803] = "Hardened Cloak", + [3804] = "Hardened Leather Gloves", + [3805] = "Hardened Leather Pants", + [3806] = "Hardened Leather Shoulderpads", + [3807] = "Hardened Leather Tunic", + [3808] = "Double Mail Belt", + [3809] = "Double Mail Boots", + [3810] = "Double Mail Bracers", + [3811] = "Double-stitched Cloak", + [3812] = "Double Mail Gloves", + [3813] = "Double Mail Pants", + [3814] = "Double Mail Shoulderpads", + [3815] = "Double Mail Vest", + [3816] = "Reflective Heater", + [3817] = "Reinforced Buckler", + [3818] = "Fadeleaf", + [3819] = "Wintersbite", + [3820] = "Stranglekelp", + [3821] = "Goldthorn", + [3822] = "Runic Darkblade", + [3823] = "Lesser Invisibility Potion", + [3824] = "Shadow Oil", + [3825] = "Elixir of Fortitude", + [3826] = "Mighty Troll\'s Blood Potion", + [3827] = "Mana Potion", + [3828] = "Elixir of Detect Lesser Invisibility", + [3829] = "Frost Oil", + [3830] = "Recipe: Elixir of Fortitude", + [3831] = "Recipe: Mighty Troll\'s Blood Potion", + [3832] = "Recipe: Elixir of Detect Lesser Invisibility", + [3833] = "Adept\'s Cloak", + [3834] = "Sturdy Cloth Trousers", + [3835] = "Green Iron Bracers", + [3836] = "Green Iron Helm", + [3837] = "Golden Scale Coif", + [3838] = "Shadowmaw Claw", + [3839] = "Pristine Tigress Fang", + [3840] = "Green Iron Shoulders", + [3841] = "Golden Scale Shoulders", + [3842] = "Green Iron Leggings", + [3843] = "Golden Scale Leggings", + [3844] = "Green Iron Hauberk", + [3845] = "Golden Scale Cuirass", + [3846] = "Polished Steel Boots", + [3847] = "Golden Scale Boots", + [3848] = "Big Bronze Knife", + [3849] = "Hardened Iron Shortsword", + [3850] = "Jade Serpentblade", + [3851] = "Solid Iron Maul", + [3852] = "Golden Iron Destroyer", + [3853] = "Moonsteel Broadsword", + [3854] = "Frost Tiger Blade", + [3855] = "Massive Iron Axe", + [3856] = "Shadow Crescent Axe", + [3857] = "Coal", + [3858] = "Mithril Ore", + [3859] = "Steel Bar", + [3860] = "Mithril Bar", + [3861] = "Blacksteel Bar", + [3862] = "Aged Gorilla Sinew", + [3863] = "Jungle Stalker Feather", + [3864] = "Citrine", + [3865] = "Test Offhand Weapon", + [3866] = "Plans: Jade Serpentblade", + [3867] = "Plans: Golden Iron Destroyer", + [3868] = "Plans: Frost Tiger Blade", + [3869] = "Plans: Shadow Crescent Axe", + [3870] = "Plans: Green Iron Shoulders", + [3871] = "Plans: Golden Scale Shoulders", + [3872] = "Plans: Golden Scale Leggings", + [3873] = "Plans: Golden Scale Cuirass", + [3874] = "Plans: Polished Steel Boots", + [3875] = "Plans: Golden Scale Boots", + [3876] = "Fang of Bhag\'thera", + [3877] = "Talon of Tethis", + [3878] = "Deprecated Conjured Mana Jewel", + [3879] = "Paw of Sin\'Dall", + [3880] = "Head of Bangalash", + [3881] = "Deprecated Kurzen\'s Head", + [3882] = "Buzzard Feather", + [3883] = "Deprecated Thick Cloth Hat", + [3884] = "Deprecated Cured Leather Cap", + [3885] = "Deprecated Scalemail Cap", + [3886] = "Deprecated Padded Cloth Hat", + [3887] = "Deprecated Cuirboulli Cap", + [3888] = "Deprecated Polished Scale Cap", + [3889] = "Russet Hat", + [3890] = "Studded Hat", + [3891] = "Augmented Chain Helm", + [3892] = "Embroidered Hat", + [3893] = "Reinforced Leather Cap", + [3894] = "Brigandine Helm", + [3895] = "TEST Legendary", + [3896] = "Twain Test", + [3897] = "Dizzy\'s Eye", + [3898] = "Library Scrip", + [3899] = "Legends of the Gurubashi, Volume 3", + [3900] = "Pupellyverbos Port", + [3901] = "Bloodscalp Tusk", + [3902] = "Staff of Nobles", + [3904] = "Gan\'zulah\'s Head", + [3905] = "Nezzliok\'s Head", + [3906] = "Balia\'mah Trophy", + [3907] = "Ziata\'jai Trophy", + [3908] = "Zul\'Mamwe Trophy", + [3909] = "Broken Armor of Ana\'thek", + [3910] = "Snuff", + [3911] = "Pulsing Blue Shard", + [3912] = "Soul Gem", + [3913] = "Filled Soul Gem", + [3914] = "Journeyman\'s Backpack", + [3915] = "Bloody Bone Necklace", + [3916] = "Split Bone Necklace", + [3917] = "Singing Blue Crystal", + [3918] = "Singing Crystal Shard", + [3919] = "Mistvale Giblets", + [3920] = "Bloodsail Charts", + [3921] = "Bloodsail Orders", + [3922] = "Shaky\'s Payment", + [3923] = "Water Elemental Bracers", + [3924] = "Maury\'s Clubbed Foot", + [3925] = "Jon-Jon\'s Golden Spyglass", + [3926] = "Chucky\'s Huge Ring", + [3927] = "Fine Aged Cheddar", + [3928] = "Superior Healing Potion", + [3929] = "Maury\'s Loot", + [3930] = "Maury\'s Key", + [3931] = "Poisoned Spider Fang", + [3932] = "Smotts\' Chest", + [3933] = "Deprecated Moon Glaive", + [3934] = "Deprecated Warden Blade", + [3935] = "Smotts\' Cutlass", + [3936] = "Crochet Belt", + [3937] = "Crochet Boots", + [3938] = "Crochet Bracers", + [3939] = "Crochet Cloak", + [3940] = "Crochet Gloves", + [3941] = "Crochet Pants", + [3942] = "Crochet Shoulderpads", + [3943] = "Crochet Vest", + [3944] = "Twill Belt", + [3945] = "Twill Boots", + [3946] = "Twill Bracers", + [3947] = "Twill Cloak", + [3948] = "Twill Gloves", + [3949] = "Twill Pants", + [3950] = "Twill Shoulderpads", + [3951] = "Twill Vest", + [3952] = "Mesh Belt", + [3953] = "Mesh Boots", + [3954] = "Mesh Bracers", + [3955] = "Mesh Cloak", + [3956] = "Mesh Gloves", + [3957] = "Mesh Pants", + [3958] = "Mesh Mantle", + [3959] = "Mesh Armor", + [3960] = "Bag of Water Elemental Bracers", + [3961] = "Thick Leather Belt", + [3962] = "Thick Leather Boots", + [3963] = "Thick Leather Bracers", + [3964] = "Thick Cloak", + [3965] = "Thick Leather Gloves", + [3966] = "Thick Leather Pants", + [3967] = "Thick Leather Shoulderpads", + [3968] = "Thick Leather Tunic", + [3969] = "Smooth Leather Belt", + [3970] = "Smooth Leather Boots", + [3971] = "Smooth Leather Bracers", + [3972] = "Smooth Cloak", + [3973] = "Smooth Leather Gloves", + [3974] = "Smooth Leather Pants", + [3975] = "Smooth Leather Shoulderpads", + [3976] = "Smooth Leather Armor", + [3977] = "Strapped Belt", + [3978] = "Strapped Boots", + [3979] = "Strapped Bracers", + [3980] = "Strapped Cloak", + [3981] = "Strapped Gloves", + [3982] = "Strapped Pants", + [3983] = "Strapped Shoulderpads", + [3984] = "Strapped Armor", + [3985] = "Monogrammed Sash", + [3986] = "Protective Pavise", + [3987] = "Deflecting Tower", + [3988] = "Plate Wall Shield", + [3989] = "Blocking Targe", + [3990] = "Crested Buckler", + [3991] = "Plated Buckler", + [3992] = "Laminated Scale Belt", + [3993] = "Laminated Scale Boots", + [3994] = "Laminated Scale Bracers", + [3995] = "Laminated Scale Cloak", + [3996] = "Laminated Scale Gloves", + [3997] = "Laminated Scale Pants", + [3998] = "Laminated Scale Shoulderpads", + [3999] = "Laminated Scale Armor", + [4000] = "Overlinked Chain Belt", + [4001] = "Overlinked Chain Boots", + [4002] = "Overlinked Chain Bracers", + [4003] = "Overlinked Chain Cloak", + [4004] = "Overlinked Chain Gloves", + [4005] = "Overlinked Chain Pants", + [4006] = "Overlinked Chain Shoulderpads", + [4007] = "Overlinked Chain Armor", + [4008] = "Sterling Chain Belt", + [4009] = "Sterling Chain Boots", + [4010] = "Sterling Chain Bracers", + [4011] = "Sterling Chain Cloak", + [4012] = "Sterling Chain Gloves", + [4013] = "Sterling Chain Pants", + [4014] = "Sterling Chain Shoulderpads", + [4015] = "Sterling Chain Armor", + [4016] = "Zanzil\'s Mixture", + [4017] = "Sharp Shortsword", + [4018] = "Whetted Claymore", + [4019] = "Heavy Flint Axe", + [4020] = "Splintering Battle Axe", + [4021] = "Blunting Mace", + [4022] = "Crushing Maul", + [4023] = "Fine Pointed Dagger", + [4024] = "Heavy War Staff", + [4025] = "Balanced Long Bow", + [4026] = "Sentinel Musket", + [4027] = "Catelyn\'s Blade", + [4028] = "Bundle of Akiris Reeds", + [4029] = "Akiris Reed", + [4030] = "Holy Relic Water", + [4031] = "Hallowed Relic Charm", + [4032] = "Radiant Relic Hammer", + [4033] = "Dawn\'s Glow", + [4034] = "Stone of the Tides", + [4035] = "Silver-thread Robe", + [4036] = "Silver-thread Cuffs", + [4037] = "Silver-thread Pants", + [4038] = "Nightsky Robe", + [4039] = "Nightsky Cowl", + [4040] = "Nightsky Gloves", + [4041] = "Aurora Cowl", + [4042] = "Aurora Gloves", + [4043] = "Aurora Bracers", + [4044] = "Aurora Pants", + [4045] = "Mistscape Bracers", + [4046] = "Mistscape Pants", + [4047] = "Mistscape Boots", + [4048] = "Emblazoned Hat", + [4049] = "Emblazoned Bracers", + [4050] = "Emblazoned Leggings", + [4051] = "Emblazoned Boots", + [4052] = "Insignia Cap", + [4053] = "Large River Crocolisk Skin", + [4054] = "Insignia Leggings", + [4055] = "Insignia Boots", + [4056] = "Cortello\'s Riddle", + [4057] = "Insignia Chestguard", + [4058] = "Glyphed Breastplate", + [4059] = "Glyphed Bracers", + [4060] = "Glyphed Leggings", + [4061] = "Imperial Leather Bracers", + [4062] = "Imperial Leather Pants", + [4063] = "Imperial Leather Gloves", + [4064] = "Emblazoned Buckler", + [4065] = "Combat Shield", + [4066] = "Insignia Buckler", + [4067] = "Glyphed Buckler", + [4068] = "Chief Brigadier Shield", + [4069] = "Blackforge Buckler", + [4070] = "Jouster\'s Crest", + [4071] = "Glimmering Mail Breastplate", + [4072] = "Glimmering Mail Gauntlets", + [4073] = "Glimmering Mail Greaves", + [4074] = "Mail Combat Armor", + [4075] = "Mail Combat Gauntlets", + [4076] = "Mail Combat Boots", + [4077] = "Mail Combat Headguard", + [4078] = "Chief Brigadier Coif", + [4079] = "Chief Brigadier Leggings", + [4080] = "Blackforge Cowl", + [4081] = "Blackforge Leggings", + [4082] = "Blackforge Breastplate", + [4083] = "Blackforge Gauntlets", + [4084] = "Blackforge Leggings", + [4085] = "Krazek\'s Crock Pot", + [4086] = "Flash Rifle", + [4087] = "Trueshot Bow", + [4088] = "Dreadblade", + [4089] = "Ricochet Blunderbuss", + [4090] = "Mug O\' Hurt", + [4091] = "Widowmaker", + [4092] = "Prismatic Basilisk Scale", + [4093] = "Large Basilisk Tail", + [4094] = "Tablet Shard", + [4095] = "Deprecate Snare Kit", + [4096] = "Coarse Gorilla Hair", + [4097] = "Chipped Gorilla Tooth", + [4098] = "Carefully Folded Note", + [4099] = "Tuft of Gorilla Hair", + [4100] = "Crumpled Note", + [4101] = "Ripped Note", + [4102] = "Torn Note", + [4103] = "Shackle Key", + [4104] = "Snapjaw Crocolisk Skin", + [4105] = "Elder Crocolisk Skin", + [4106] = "Tumbled Crystal", + [4107] = "Tiger Hunter Gloves", + [4108] = "Panther Hunter Leggings", + [4109] = "Excelsior Boots", + [4110] = "Master Hunter\'s Bow", + [4111] = "Master Hunter\'s Rifle", + [4112] = "Choker of the High Shaman", + [4113] = "Medicine Blanket", + [4114] = "Darktide Cape", + [4115] = "Grom\'gol Buckler", + [4116] = "Olmann Sewar", + [4117] = "Scorching Sash", + [4118] = "Poobah\'s Nose Ring", + [4119] = "Raptor Hunter Tunic", + [4120] = "Robe of Crystal Waters", + [4121] = "Gemmed Gloves", + [4122] = "Bookmaker\'s Scepter", + [4123] = "Frost Metal Pauldrons", + [4124] = "Cap of Harmony", + [4125] = "Tranquil Orb", + [4126] = "Guerrilla Cleaver", + [4127] = "Shrapnel Blaster", + [4128] = "Silver Spade", + [4129] = "Collection Plate", + [4130] = "Smotts\' Compass", + [4131] = "Belt of Corruption", + [4132] = "Darkspear Armsplints", + [4133] = "Darkspear Cuffs", + [4134] = "Nimboya\'s Mystical Staff", + [4135] = "Bloodbone Band", + [4136] = "Darkspear Boots", + [4137] = "Darkspear Shoes", + [4138] = "Blackwater Tunic", + [4139] = "Junglewalker Sandals", + [4140] = "Palm Frond Mantle", + [4141] = "Tome of Conjure Food", + [4142] = "Tome of Polymorph: Pig", + [4143] = "Tome of Conjure Food II", + [4144] = "Tome of Polymorph: Cow", + [4145] = "Tome of Conjure Mana Gem", + [4146] = "Tome of Polymorph: Sheep", + [4147] = "Tome of Conjure Food III", + [4148] = "Tome of Counterspell", + [4149] = "Tome of Frost Shield III", + [4150] = "Tome of Conjure Water IV", + [4151] = "Tome of Frostbolt IV", + [4152] = "Tome of Conjure Food IV", + [4153] = "Tome of Arcane Missiles III", + [4154] = "Tome of Slow II", + [4155] = "Tome of Water Elemental II", + [4156] = "Deprecated Tome of Conjure Mana Jewel", + [4157] = "Tome of Dampen Magic", + [4158] = "Tome of Khadgar\'s Unlocking III", + [4159] = "Tome of Arcane Missiles", + [4160] = "Tome of Invisibility", + [4161] = "Tome of Fireball IV", + [4162] = "Tome of Blink II", + [4163] = "Deprecated Libram: Seal of Fury", + [4164] = "Libram: Holy Light V", + [4165] = "Libram: Holy Light VI", + [4166] = "Libram: Seal of Protection", + [4167] = "Libram: Judgement", + [4168] = "Tablet of Ensnaring Totem", + [4169] = "Tablet of Unyielding Will II", + [4170] = "Tablet of Astral Recall", + [4171] = "Tablet of Agitating Totem III", + [4172] = "Tablet of Thunderclap II", + [4173] = "Tablet of Shock IV", + [4174] = "Tablet of Shock V", + [4175] = "Tablet of Lightning Shield IV", + [4176] = "Tablet of Undying Strength II", + [4177] = "Tablet of Nature Resistance", + [4178] = "Tablet of Lightning Bolt V", + [4179] = "Tablet of Restoration V", + [4180] = "Tablet of Ethereal Form II", + [4181] = "Tablet of Agitating Totem IV", + [4182] = "Tablet of Unyielding Will III", + [4183] = "Tablet of Healing Totem V", + [4184] = "Tablet of Molten Blast V", + [4185] = "Tablet of Group Astral Recall", + [4186] = "Tablet of Fire Resistance", + [4187] = "Tablet of Serpent Totem V", + [4188] = "Tablet of Invisibility Totem", + [4189] = "Tablet of Chain Lightning", + [4190] = "Feathered Armor", + [4191] = "Unused Feathered Leggings", + [4192] = "Unused Feathered Gauntlets", + [4193] = "Deprecated Feathered Helm", + [4194] = "Feathered Bracers", + [4195] = "Feathered Boots", + [4196] = "Feathered Mantle", + [4197] = "Berylline Pads", + [4198] = "Grimoire of Soul Funnel", + [4199] = "Grimoire of Soul Funnel II", + [4200] = "Grimoire of Immolate III", + [4201] = "Grimoire of Eye of Kilrogg", + [4202] = "Grimoire of Fear II", + [4203] = "Grimoire of Pestilence II", + [4204] = "Grimoire of Soul Funnel III", + [4205] = "Grimoire of Immolate IV", + [4206] = "Grimoire of Curse of Sargeras II", + [4207] = "Grimoire of Curse of Archimonde", + [4208] = "Grimoire of Mind Bomb", + [4209] = "Grimoire of Shadow Ward", + [4210] = "Grimoire of Create Lesser Bloodstone", + [4211] = "Grimoire of Pestilence", + [4212] = "Grimoire of Curse of Mannoroth III", + [4213] = "Grimoire of Doom", + [4214] = "Grimoire of Life Drain III", + [4215] = "Grimoire of Rain of Fire", + [4216] = "Grimoire of Holy Ward", + [4217] = "Grimoire of Soul Funnel IV", + [4218] = "Grimoire of Create Bloodstone", + [4219] = "Grimoire of Burning Spirit IV", + [4220] = "Grimoire of Blood Boil III", + [4221] = "Grimoire of Detect Invisibility", + [4222] = "Deprecated Book of Rejuvenation V", + [4223] = "Book of Abolish Magic", + [4224] = "Deprecated Book of Nullify Disease III", + [4225] = "Book of Entangling Roots III", + [4226] = "Book of Wrath VI", + [4227] = "Deprecated Book of Nullify Poison III", + [4228] = "Book of Moonfire IV", + [4229] = "Deprecated Book of Rejuvenation VI", + [4230] = "Book of Healing Touch VI", + [4231] = "Cured Light Hide", + [4232] = "Medium Hide", + [4233] = "Cured Medium Hide", + [4234] = "Heavy Leather", + [4235] = "Heavy Hide", + [4236] = "Cured Heavy Hide", + [4237] = "Handstitched Leather Belt", + [4238] = "Linen Bag", + [4239] = "Embossed Leather Gloves", + [4240] = "Woolen Bag", + [4241] = "Green Woolen Bag", + [4242] = "Embossed Leather Pants", + [4243] = "Fine Leather Tunic", + [4244] = "Hillman\'s Leather Vest", + [4245] = "Small Silk Pack", + [4246] = "Fine Leather Belt", + [4247] = "Hillman\'s Leather Gloves", + [4248] = "Dark Leather Gloves", + [4249] = "Dark Leather Belt", + [4250] = "Hillman\'s Belt", + [4251] = "Hillman\'s Shoulders", + [4252] = "Dark Leather Shoulders", + [4253] = "Toughened Leather Gloves", + [4254] = "Barbaric Gloves", + [4255] = "Green Leather Armor", + [4256] = "Guardian Armor", + [4257] = "Green Leather Belt", + [4258] = "Guardian Belt", + [4259] = "Green Leather Bracers", + [4260] = "Guardian Leather Bracers", + [4261] = "Solliden\'s Trousers", + [4262] = "Gem-studded Leather Belt", + [4263] = "Standard Issue Shield", + [4264] = "Barbaric Belt", + [4265] = "Heavy Armor Kit", + [4266] = "Codex of Inner Fire II", + [4267] = "Codex of Shadow Word: Fumble", + [4268] = "Codex of Heal II", + [4269] = "Codex of Prayer of Healing", + [4270] = "Codex of Heal III", + [4271] = "Codex of Holy Smite V", + [4272] = "Codex of Holy Protection", + [4273] = "Codex of Heal", + [4274] = "Codex of Divine Escape", + [4275] = "Codex of Mind Rot", + [4276] = "Codex of Shadow Word: Fumble II", + [4277] = "Codex of Shadow Word: Befuddle II", + [4278] = "Lesser Bloodstone Ore", + [4279] = "Codex of Shadow Word: Pain V", + [4280] = "Codex of Holy Word: Shield IV", + [4281] = "Codex of Shadow Protection", + [4282] = "Codex of Dispel Magic II", + [4283] = "Codex of Sleep III", + [4284] = "Codex of Holy Smite VI", + [4285] = "Codex of Holy Word: Fortitude IV", + [4286] = "Codex of Prayer of Healing II", + [4287] = "Codex of Nullify Disease II", + [4288] = "Codex of Remove Curse II", + [4289] = "Salt", + [4290] = "Dust Bowl", + [4291] = "Silken Thread", + [4292] = "Pattern: Green Woolen Bag", + [4293] = "Pattern: Hillman\'s Leather Vest", + [4294] = "Pattern: Hillman\'s Belt", + [4295] = "Pattern: Double-stitched Leather Gloves OLD", + [4296] = "Pattern: Dark Leather Shoulders", + [4297] = "Pattern: Barbaric Gloves", + [4298] = "Pattern: Guardian Belt", + [4299] = "Pattern: Guardian Armor", + [4300] = "Pattern: Guardian Leather Bracers", + [4301] = "Pattern: Barbaric Belt", + [4302] = "Small Green Dagger", + [4303] = "Cranial Thumper", + [4304] = "Thick Leather", + [4305] = "Bolt of Silk Cloth", + [4306] = "Silk Cloth", + [4307] = "Heavy Linen Gloves", + [4308] = "Green Linen Bracers", + [4309] = "Handstitched Linen Britches", + [4310] = "Heavy Woolen Gloves", + [4311] = "Heavy Woolen Cloak", + [4312] = "Soft-soled Linen Boots", + [4313] = "Red Woolen Boots", + [4314] = "Double-stitched Woolen Shoulders", + [4315] = "Reinforced Woolen Shoulders", + [4316] = "Heavy Woolen Pants", + [4317] = "Phoenix Pants", + [4318] = "Gloves of Meditation", + [4319] = "Azure Silk Gloves", + [4320] = "Spidersilk Boots", + [4321] = "Spider Silk Slippers", + [4322] = "Enchanter\'s Cowl", + [4323] = "Shadow Hood", + [4324] = "Azure Silk Vest", + [4325] = "Boots of the Enchanter", + [4326] = "Long Silken Cloak", + [4327] = "Icy Cloak", + [4328] = "Spider Belt", + [4329] = "Star Belt", + [4330] = "Stylish Red Shirt", + [4331] = "Phoenix Gloves", + [4332] = "Bright Yellow Shirt", + [4333] = "Dark Silk Shirt", + [4334] = "Formal White Shirt", + [4335] = "Rich Purple Silk Shirt", + [4336] = "Black Swashbuckler\'s Shirt", + [4337] = "Thick Spider\'s Silk", + [4338] = "Mageweave Cloth", + [4339] = "Bolt of Mageweave", + [4340] = "Gray Dye", + [4341] = "Yellow Dye", + [4342] = "Purple Dye", + [4343] = "Brown Linen Pants", + [4344] = "Brown Linen Shirt", + [4345] = "Pattern: Red Woolen Boots", + [4346] = "Pattern: Heavy Woolen Cloak", + [4347] = "Pattern: Reinforced Woolen Shoulders", + [4348] = "Pattern: Phoenix Gloves", + [4349] = "Pattern: Phoenix Pants", + [4350] = "Pattern: Spider Silk Slippers", + [4351] = "Pattern: Shadow Hood", + [4352] = "Pattern: Boots of the Enchanter", + [4353] = "Pattern: Spider Belt", + [4354] = "Pattern: Rich Purple Silk Shirt", + [4355] = "Pattern: Icy Cloak", + [4356] = "Pattern: Star Belt", + [4357] = "Rough Blasting Powder", + [4358] = "Rough Dynamite", + [4359] = "Handful of Copper Bolts", + [4360] = "Rough Copper Bomb", + [4361] = "Copper Tube", + [4362] = "Rough Boomstick", + [4363] = "Copper Modulator", + [4364] = "Coarse Blasting Powder", + [4365] = "Coarse Dynamite", + [4366] = "Target Dummy", + [4367] = "Small Seaforium Charge", + [4368] = "Flying Tiger Goggles", + [4369] = "Deadly Blunderbuss", + [4370] = "Large Copper Bomb", + [4371] = "Bronze Tube", + [4372] = "Lovingly Crafted Boomstick", + [4373] = "Shadow Goggles", + [4374] = "Small Bronze Bomb", + [4375] = "Whirring Bronze Gizmo", + [4376] = "Flame Deflector", + [4377] = "Heavy Blasting Powder", + [4378] = "Heavy Dynamite", + [4379] = "Silver-plated Shotgun", + [4380] = "Big Bronze Bomb", + [4381] = "Minor Recombobulator", + [4382] = "Bronze Framework", + [4383] = "Moonsight Rifle", + [4384] = "Explosive Sheep", + [4385] = "Green Tinted Goggles", + [4386] = "Ice Deflector", + [4387] = "Iron Strut", + [4388] = "Discombobulator Ray", + [4389] = "Gyrochronatom", + [4390] = "Iron Grenade", + [4391] = "Compact Harvest Reaper Kit", + [4392] = "Advanced Target Dummy", + [4393] = "Craftsman\'s Monocle", + [4394] = "Big Iron Bomb", + [4395] = "Goblin Land Mine", + [4396] = "Mechanical Dragonling", + [4397] = "Gnomish Cloaking Device", + [4398] = "Large Seaforium Charge", + [4399] = "Wooden Stock", + [4400] = "Heavy Stock", + [4401] = "Mechanical Squirrel Box", + [4402] = "Small Flame Sac", + [4403] = "Portable Bronze Mortar", + [4404] = "Silver Contact", + [4405] = "Crude Scope", + [4406] = "Standard Scope", + [4407] = "Accurate Scope", + [4408] = "Schematic: Mechanical Squirrel", + [4409] = "Schematic: Small Seaforium Charge", + [4410] = "Schematic: Shadow Goggles", + [4411] = "Schematic: Flame Deflector", + [4412] = "Schematic: Moonsight Rifle", + [4413] = "Schematic: Discombobulator Ray", + [4414] = "Schematic: Portable Bronze Mortar", + [4415] = "Schematic: Craftsman\'s Monocle", + [4416] = "Schematic: Goblin Land Mine", + [4417] = "Schematic: Large Seaforium Charge", + [4418] = "Deprecated Creeper Cakes", + [4419] = "Scroll of Intellect III", + [4421] = "Scroll of Protection III", + [4422] = "Scroll of Stamina III", + [4424] = "Scroll of Spirit III", + [4425] = "Scroll of Agility III", + [4426] = "Scroll of Strength III", + [4427] = "Deprecated Scroll of Spirit Armor V", + [4428] = "Spider Palp", + [4429] = "Deepfury\'s Orders", + [4430] = "Ethereal Talisman", + [4431] = "Deprecated Shard of Myzrael", + [4432] = "Sully Balloo\'s Letter", + [4433] = "Waterlogged Envelope", + [4434] = "Scarecrow Trousers", + [4435] = "Mote of Myzrael", + [4436] = "Jewel-encrusted Sash", + [4437] = "Channeler\'s Staff", + [4438] = "Pugilist Bracers", + [4439] = "Bruiser Club", + [4440] = "Sigil of Strom", + [4441] = "MacKreel\'s Moonshine", + [4442] = "Deprecated Dark Mantle", + [4443] = "Grim Pauldrons", + [4444] = "Black Husk Shield", + [4445] = "Flesh Carver", + [4446] = "Blackvenom Blade", + [4447] = "Cloak of Night", + [4448] = "Husk of Naraxis", + [4449] = "Naraxis\' Fang", + [4450] = "Sigil Fragment", + [4451] = "Deprecated Stasis Totem", + [4452] = "Deprecated Resonant Gem", + [4453] = "Sigil of Thoradin", + [4454] = "Talon of Vultros", + [4455] = "Raptor Hide Harness", + [4456] = "Raptor Hide Belt", + [4457] = "Barbecued Buzzard Wing", + [4458] = "Sigil of Arathor", + [4459] = "Brittle Dragon Bone", + [4460] = "Ripped Wing Webbing", + [4461] = "Raptor Hide", + [4462] = "Cloak of Rot", + [4463] = "Beaded Raptor Collar", + [4464] = "Trouncing Boots", + [4465] = "Bonefist Gauntlets", + [4466] = "Sigil of Trollbane", + [4467] = "Sigil of Ignaeus", + [4468] = "Sheathed Trol\'kalar", + [4469] = "Rod of Order", + [4470] = "Simple Wood", + [4471] = "Flint and Tinder", + [4472] = "Scroll of Myzrael", + [4473] = "Eldritch Shackles", + [4474] = "Ravenwood Bow", + [4475] = "Deprecated The Southern Kingdoms", + [4476] = "Beastwalker Robe", + [4477] = "Nefarious Buckler", + [4478] = "Iridescent Scale Leggings", + [4479] = "Burning Charm", + [4480] = "Thundering Charm", + [4481] = "Cresting Charm", + [4482] = "Sealed Folder", + [4483] = "Burning Key", + [4484] = "Cresting Key", + [4485] = "Thundering Key", + [4486] = "Deprecated Jorell\'s Head", + [4487] = "Maiden\'s Folly Charts", + [4488] = "Spirit of Silverpine Charts", + [4489] = "Maiden\'s Folly Log", + [4490] = "Spirit of Silverpine Log", + [4491] = "Goggles of Gem Hunting", + [4492] = "Elven Gem", + [4493] = "Elven Gems", + [4494] = "Seahorn\'s Sealed Letter", + [4495] = "Bloodstone Amulet", + [4496] = "Small Brown Pouch", + [4497] = "Heavy Brown Bag", + [4498] = "Brown Leather Satchel", + [4499] = "Huge Brown Sack", + [4500] = "Traveler\'s Backpack", + [4501] = "Deprecated Brown Wayfarer\'s Knapsack", + [4502] = "Sample Elven Gem", + [4503] = "Witherbark Tusk", + [4504] = "Dwarven Guard Cloak", + [4505] = "Swampland Trousers", + [4506] = "Stromgarde Badge", + [4507] = "Pit Fighter\'s Shield", + [4508] = "Blood-tinged Armor", + [4509] = "Seawolf Gloves", + [4510] = "Befouled Bloodstone Orb", + [4511] = "Black Water Hammer", + [4512] = "Highland Raptor Eye", + [4513] = "Raptor Heart", + [4514] = "Sara Balloo\'s Plea", + [4515] = "Marez\'s Head", + [4516] = "Otto\'s Head", + [4517] = "Falconcrest\'s Head", + [4518] = "Torn Scroll Fragment", + [4519] = "Crumpled Scroll Fragment", + [4520] = "Singed Scroll Fragment", + [4521] = "Alterac Granite", + [4522] = "Witherbark Medicine Pouch", + [4523] = "Deprecated Shadow Hunter Knife", + [4524] = "Balloo\'s Memorial", + [4525] = "Trelane\'s Wand of Invocation", + [4526] = "Raptor Talon Amulet", + [4527] = "Azure Agate", + [4528] = "Tor\'gan\'s Orb", + [4529] = "Enchanted Agate", + [4530] = "Trelane\'s Phylactery", + [4531] = "Trelane\'s Orb", + [4532] = "Trelane\'s Ember Agate", + [4533] = "Sealed Letter to Archmage Malin", + [4534] = "Steel-clasped Bracers", + [4535] = "Ironforge Memorial Ring", + [4536] = "Shiny Red Apple", + [4537] = "Tel\'Abim Banana", + [4538] = "Snapvine Watermelon", + [4539] = "Goldenbark Apple", + [4540] = "Tough Hunk of Bread", + [4541] = "Freshly Baked Bread", + [4542] = "Moist Cornbread", + [4543] = "White Drakeskin Cap", + [4544] = "Mulgore Spice Bread", + [4545] = "Radiant Silver Bracers", + [4546] = "Call of the Raptor", + [4547] = "Gnomish Zapper", + [4548] = "Servomechanic Sledgehammer", + [4549] = "Seafire Band", + [4550] = "Coldwater Ring", + [4551] = "Or\'Kalar\'s Head", + [4552] = "Smooth Stone Chip", + [4553] = "Jagged Piece of Stone", + [4554] = "Shiny Polished Stone", + [4555] = "Thick Scaly Tail", + [4556] = "Speckled Shell Fragment", + [4557] = "Fiery Gland", + [4558] = "Empty Barrel", + [4559] = "CHU\'s QUEST ITEM", + [4560] = "Fine Scimitar", + [4561] = "Scalping Tomahawk", + [4562] = "Severing Axe", + [4563] = "Billy Club", + [4564] = "Spiked Club", + [4565] = "Simple Dagger", + [4566] = "Sturdy Quarterstaff", + [4567] = "Merc Sword", + [4568] = "Grunt Axe", + [4569] = "Staunch Hammer", + [4570] = "Birchwood Maul", + [4571] = "War Knife", + [4573] = "Deprecated Pat\'s Test Strongbox", + [4574] = "Destroy Me", + [4575] = "Medicine Staff", + [4576] = "Light Bow", + [4577] = "Compact Shotgun", + [4578] = "Deprecated Long Panther Tail", + [4579] = "Deprecated Spotted Panther Skin", + [4580] = "Sabertooth Fang", + [4581] = "Patch of Fine Fur", + [4582] = "Soft Bushy Tail", + [4583] = "Thick Furry Mane", + [4584] = "Large Trophy Paw", + [4585] = "Dripping Spider Mandible", + [4586] = "Smooth Raptor Skin", + [4587] = "Tribal Raptor Feathers", + [4588] = "Pristine Raptor Skull", + [4589] = "Long Elegant Feather", + [4590] = "Curved Yellow Bill", + [4591] = "Eagle Eye", + [4592] = "Longjaw Mud Snapper", + [4593] = "Bristle Whisker Catfish", + [4594] = "Rockscale Cod", + [4595] = "Junglevine Wine", + [4596] = "Discolored Healing Potion", + [4597] = "Recipe: Discolored Healing Potion", + [4598] = "Goblin Fishing Pole", + [4599] = "Cured Ham Steak", + [4600] = "Cherry Grog", + [4601] = "Soft Banana Bread", + [4602] = "Moon Harvest Pumpkin", + [4603] = "Raw Spotted Yellowtail", + [4604] = "Forest Mushroom Cap", + [4605] = "Red-speckled Mushroom", + [4606] = "Spongy Morel", + [4607] = "Delicious Cave Mold", + [4608] = "Raw Black Truffle", + [4609] = "Recipe: Barbecued Buzzard Wing", + [4610] = "Carved Stone Urn", + [4611] = "Blue Pearl", + [4612] = "Black Drake\'s Heart", + [4613] = "Corroded Black Box", + [4614] = "Pendant of Myzrael", + [4615] = "Blacklash\'s Bindings", + [4616] = "Ryedol\'s Lucky Pick", + [4620] = "Deprecated Scribbled Note", + [4621] = "Ambassador Infernus\' Bracer", + [4622] = "Sealed Note to Advisor Belgrum", + [4623] = "Lesser Stoneshield Potion", + [4624] = "Recipe: Lesser Stoneshield Potion", + [4625] = "Firebloom", + [4626] = "Small Stone Shard", + [4627] = "Large Stone Slab", + [4628] = "Bracers of Rock Binding", + [4629] = "Supply Crate", + [4630] = "Scrap Metal", + [4631] = "Tablet of Ryun\'eh", + [4632] = "Ornate Bronze Lockbox", + [4633] = "Heavy Bronze Lockbox", + [4634] = "Iron Lockbox", + [4635] = "Hammertoe\'s Amulet", + [4636] = "Strong Iron Lockbox", + [4637] = "Steel Lockbox", + [4638] = "Reinforced Steel Lockbox", + [4639] = "Enchanted Sea Kelp", + [4640] = "Sign of the Earth", + [4641] = "Hand of Dagun", + [4642] = "Star of Xil\'yeh", + [4643] = "Grimsteel Cape", + [4644] = "The Legacy Heart", + [4645] = "Chains of Hematus", + [4646] = "Star of Xil\'yeh", + [4647] = "Yagyin\'s Digest", + [4648] = "Sigil of the Hammer", + [4649] = "Bonegrip\'s Note", + [4650] = "Bel\'dugur\'s Note", + [4652] = "Salbac Shield", + [4653] = "Ironheel Boots", + [4654] = "Mysterious Fossil", + [4655] = "Giant Clam Meat", + [4656] = "Small Pumpkin", + [4657] = "Deprecated Warrior\'s Pauldrons", + [4658] = "Warrior\'s Cloak", + [4659] = "Warrior\'s Girdle", + [4660] = "Walking Boots", + [4661] = "Bright Mantle", + [4662] = "Journeyman\'s Cloak", + [4663] = "Journeyman\'s Belt", + [4664] = "Deprecated Burnt Leather Shoulderpads", + [4665] = "Burnt Cloak", + [4666] = "Burnt Leather Belt", + [4667] = "Deprecated Battle Chain Pauldrons", + [4668] = "Battle Chain Cloak", + [4669] = "Battle Chain Girdle", + [4670] = "Deprecated Ancestral Mantle", + [4671] = "Ancestral Cloak", + [4672] = "Ancestral Belt", + [4673] = "Deprecated Tribal Mantle", + [4674] = "Tribal Cloak", + [4675] = "Tribal Belt", + [4676] = "Skeletal Gauntlets", + [4677] = "Veteran Cloak", + [4678] = "Veteran Girdle", + [4679] = "Deprecated Brackwater Pauldrons", + [4680] = "Brackwater Cloak", + [4681] = "Brackwater Girdle", + [4682] = "Deprecated Magister\'s Mantle", + [4683] = "Spellbinder Cloak", + [4684] = "Spellbinder Belt", + [4685] = "Deprecated Runic Cloth Shoulderpads", + [4686] = "Barbaric Cloth Cloak", + [4687] = "Barbaric Cloth Belt", + [4688] = "Deprecated Hunting Spaulders", + [4689] = "Hunting Cloak", + [4690] = "Hunting Belt", + [4691] = "Deprecated Ceremonial Leather Mantle", + [4692] = "Ceremonial Cloak", + [4693] = "Ceremonial Leather Belt", + [4694] = "Burnished Pauldrons", + [4695] = "Burnished Cloak", + [4696] = "Lapidis Tankard of Tidesippe", + [4697] = "Burnished Girdle", + [4698] = "Seer\'s Mantle", + [4699] = "Seer\'s Belt", + [4700] = "Inscribed Leather Spaulders", + [4701] = "Inscribed Cloak", + [4702] = "Prospector\'s Pick", + [4703] = "Broken Tools", + [4704] = "OLDCeremonial Club", + [4705] = "Lambent Scale Pauldrons", + [4706] = "Lambent Scale Cloak", + [4707] = "Lambent Scale Girdle", + [4708] = "Bright Belt", + [4709] = "Forest Leather Mantle", + [4710] = "Forest Cloak", + [4711] = "Glimmering Cloak", + [4712] = "Glimmering Mail Girdle", + [4713] = "Silver-thread Cloak", + [4714] = "Silver-thread Sash", + [4715] = "Emblazoned Cloak", + [4716] = "Combat Cloak", + [4717] = "Mail Combat Belt", + [4718] = "Nightsky Mantle", + [4719] = "Nightsky Cloak", + [4720] = "Nightsky Sash", + [4721] = "Insignia Mantle", + [4722] = "Insignia Cloak", + [4723] = "Humbert\'s Pants", + [4724] = "Humbert\'s Helm", + [4725] = "Chief Brigadier Pauldrons", + [4726] = "Chief Brigadier Cloak", + [4727] = "Chief Brigadier Girdle", + [4728] = "Twain\'s Shoulder", + [4729] = "Aurora Mantle", + [4730] = "Deprecated Prospector\'s Pick", + [4731] = "Glyphed Epaulets", + [4732] = "Glyphed Cloak", + [4733] = "Blackforge Pauldrons", + [4734] = "Mistscape Mantle", + [4735] = "Mistscape Cloak", + [4736] = "Mistscape Sash", + [4737] = "Imperial Leather Spaulders", + [4738] = "Imperial Leather Belt", + [4739] = "Plainstrider Meat", + [4740] = "Plainstrider Feather", + [4741] = "Stromgarde Cavalry Leggings", + [4742] = "Mountain Cougar Pelt", + [4743] = "Pulsating Crystalline Shard", + [4744] = "Arcane Runed Bracers", + [4745] = "War Rider Bracers", + [4746] = "Doomsayer\'s Robe", + [4747] = "Stormbull Well Water", + [4748] = "Redhorn Well Water", + [4749] = "Wildmane Well Water", + [4750] = "OLDWinterhoof Cleansing Totem", + [4751] = "Windfury Talon", + [4752] = "Azure Feather", + [4753] = "Bronze Feather", + [4754] = "Deprecated Empty Skin", + [4755] = "Water Pitcher", + [4756] = "Ruined Cat Pelt", + [4757] = "Cracked Egg Shells", + [4758] = "Prairie Wolf Paw", + [4759] = "Plainstrider Talon", + [4760] = "OLDThunderhorn Cleansing Totem", + [4761] = "Deprecated Pearled Chain Pants", + [4762] = "OLDWildmane Cleansing Totem", + [4763] = "Blackwood Recurve Bow", + [4764] = "Deprecated Avenger Shoulders", + [4765] = "Enamelled Broadsword", + [4766] = "Feral Blade", + [4767] = "Coppercloth Gloves", + [4768] = "Adept\'s Gloves", + [4769] = "Trophy Swoop Quill", + [4770] = "Bristleback Belt", + [4771] = "Harvest Cloak", + [4772] = "Warm Cloak", + [4773] = "Deprecated Blessed Bracers", + [4774] = "Deprecated Heavy Bracers", + [4775] = "Cracked Bill", + [4776] = "Ruffled Feather", + [4777] = "Ironwood Maul", + [4778] = "Heavy Spiked Mace", + [4779] = "Dull Kodo Tooth", + [4780] = "Kodo Horn Fragment", + [4781] = "Whispering Vest", + [4782] = "Solstice Robe", + [4783] = "Totem of Hawkwind", + [4784] = "Lifeless Stone", + [4785] = "Brimstone Belt", + [4786] = "Wise Man\'s Belt", + [4787] = "Burning Pitch", + [4788] = "Agile Boots", + [4789] = "Stable Boots", + [4790] = "Inferno Cloak", + [4791] = "Enchanted Water", + [4792] = "Spirit Cloak", + [4793] = "Sylvan Cloak", + [4794] = "Wolf Bracers", + [4795] = "Bear Bracers", + [4796] = "Owl Bracers", + [4797] = "Fiery Cloak", + [4798] = "Heavy Runed Cloak", + [4799] = "Antiquated Cloak", + [4800] = "Mighty Chain Pants", + [4801] = "Stalker Claws", + [4802] = "Cougar Claws", + [4803] = "Prairie Alpha Tooth", + [4804] = "Prairie Wolf Heart", + [4805] = "Flatland Cougar Femur", + [4806] = "Plainstrider Scale", + [4807] = "Swoop Gizzard", + [4808] = "Well Stone", + [4809] = "Ambercorn", + [4810] = "Boulder Pads", + [4811] = "Deprecated Studded Shoulders", + [4812] = "Deprecated Crimson Shoulders", + [4813] = "Small Leather Collar", + [4814] = "Discolored Fang", + [4815] = "Deprecated Heavy Brass Shoulder", + [4816] = "Legionnaire\'s Leggings", + [4817] = "Blessed Claymore", + [4818] = "Executioner\'s Sword", + [4819] = "Fizsprocket\'s Clipboard", + [4820] = "Guardian Buckler", + [4821] = "Bear Buckler", + [4822] = "Owl\'s Disk", + [4823] = "Water of the Seers", + [4824] = "Blurred Axe", + [4825] = "Callous Axe", + [4826] = "Marauder Axe", + [4827] = "Wizard\'s Belt", + [4828] = "Nightwind Belt", + [4829] = "Dreamer\'s Belt", + [4830] = "Saber Leggings", + [4831] = "Stalking Pants", + [4832] = "Mystic Sarong", + [4833] = "Glorious Shoulders", + [4834] = "Venture Co. Documents", + [4835] = "Elite Shoulders", + [4836] = "Fireproof Orb", + [4837] = "Strength of Will", + [4838] = "Orb of Power", + [4839] = "Deprecated Demon Scarred Pelt", + [4840] = "Long Bayonet", + [4841] = "Horn of Arra\'chea", + [4842] = "test", + [4843] = "Amethyst Runestone", + [4844] = "Opal Runestone", + [4845] = "Diamond Runestone", + [4846] = "Cog #5", + [4847] = "Lotwil\'s Shackles of Elemental Binding", + [4848] = "Battleboar Snout", + [4849] = "Battleboar Flank", + [4850] = "Bristleback Attack Plans", + [4851] = "Dirt-stained Map", + [4852] = "Flash Bomb", + [4853] = "TEST QUEST HELM", + [4854] = "Demon Scarred Cloak", + [4855] = "Unused Cloth Shoulder A01 Gray", + [4856] = "Unused Cloth Shoulder A02 Yellow", + [4857] = "Unused Cloth Shoulder B01 Silver", + [4858] = "Unused Cloth Shoulder B02 Black", + [4859] = "Burning Blade Medallion", + [4860] = "Glistening Frenzy Scale", + [4861] = "Sleek Feathered Tunic", + [4862] = "Scorpid Worker Tail", + [4863] = "Gnomish Tools", + [4864] = "Minshina\'s Skull", + [4865] = "Ruined Pelt", + [4866] = "Zalazane\'s Head", + [4867] = "Broken Scorpid Leg", + [4868] = "Deprecated Scorched Heart", + [4869] = "Fizzle\'s Claw", + [4870] = "Canvas Scraps", + [4871] = "Searing Collar", + [4872] = "Dry Scorpid Eye", + [4873] = "Dry Hardened Barnacle", + [4874] = "Clean Fishbones", + [4875] = "Slimy Bone", + [4876] = "Bloody Leather Boot", + [4877] = "Stone Arrowhead", + [4878] = "Broken Bloodstained Bow", + [4879] = "Squashed Rabbit Carcass", + [4880] = "Broken Spear", + [4881] = "Aged Envelope", + [4882] = "Benedict\'s Key", + [4883] = "Admiral Proudmoore\'s Orders", + [4884] = "Deprecated Small Scorpid Carapace", + [4885] = "Deprecated Large Scorpid Carapace", + [4886] = "Venomtail Poison Sac", + [4887] = "Intact Makrura Eye", + [4888] = "Crawler Mucus", + [4889] = "Deprecated Mottled Boar Steaks", + [4890] = "Taillasher Egg", + [4891] = "Kron\'s Amulet", + [4892] = "Durotar Tiger Fur", + [4893] = "Savannah Lion Tusk", + [4894] = "Plainstrider Kidney", + [4895] = "Thunder Lizard Horn", + [4896] = "Kodo Liver", + [4897] = "Thunderhawk Saliva Gland", + [4898] = "Lightning Gland", + [4899] = "Test Crossbow", + [4900] = "Test Spear", + [4901] = "Test Polearm", + [4902] = "Deprecated Apprentice Wand", + [4903] = "Eye of Burning Shadow", + [4904] = "Venomtail Antidote", + [4905] = "Sarkoth\'s Mangled Claw", + [4906] = "Rainwalker Boots", + [4907] = "Woodland Tunic", + [4908] = "Nomadic Bracers", + [4909] = "Kodo Hunter\'s Leggings", + [4910] = "Painted Chain Gloves", + [4911] = "Thick Bark Buckler", + [4912] = "Test Wand JChow", + [4913] = "Painted Chain Belt", + [4914] = "Battleworn Leather Gloves", + [4915] = "Soft Wool Boots", + [4916] = "Soft Wool Vest", + [4917] = "Battleworn Chain Leggings", + [4918] = "Sack of Supplies", + [4919] = "Soft Wool Belt", + [4920] = "Battleworn Cape", + [4921] = "Dust-covered Leggings", + [4922] = "Jagged Chain Vest", + [4923] = "Primitive Hatchet", + [4924] = "Primitive Club", + [4925] = "Primitive Hand Blade", + [4926] = "Chen\'s Empty Keg", + [4927] = "Deprecated Keg of Chen\'s Stormstout", + [4928] = "Sandrunner Wristguards", + [4929] = "Light Scorpid Armor", + [4930] = "Handmade Leather Bag", + [4931] = "Hickory Shortbow", + [4932] = "Harpy Wing Clipper", + [4933] = "Seasoned Fighter\'s Cloak", + [4934] = "Deprecated Heavy Cord Shoulderpads", + [4935] = "Wide Metal Girdle", + [4936] = "Dirt-trodden Boots", + [4937] = "Charging Buckler", + [4938] = "Blemished Wooden Staff", + [4939] = "Steady Bastard Sword", + [4940] = "Veiled Grips", + [4941] = "Really Sticky Glue", + [4942] = "Tiger Hide Boots", + [4943] = "Torka\'s Egg Cracker [UNUSED]", + [4944] = "Handsewn Cloak", + [4945] = "Faintly Glowing Skull", + [4946] = "Lightweight Boots", + [4947] = "Jagged Dagger", + [4948] = "Stinging Mace", + [4949] = "Orcish Cleaver", + [4950] = "Deprecated Orc Protector", + [4951] = "Squealer\'s Belt", + [4952] = "Stormstout", + [4953] = "Trogg Ale", + [4954] = "Nomadic Belt", + [4955] = "Deprecated Nomadic Shoulderpads", + [4956] = "Test Totem", + [4957] = "Old Moneybag", + [4958] = "Sun-beaten Cloak", + [4959] = "Throwing Tomahawk", + [4960] = "Flash Pellet", + [4961] = "Dreamwatcher Staff", + [4962] = "Double-layered Gloves", + [4963] = "Thunderhorn Cloak", + [4964] = "Goblin Smasher", + [4965] = "Bloodhoof Hand Axe", + [4966] = "Mazzranache\'s Head", + [4967] = "Tribal Warrior\'s Shield", + [4968] = "Bound Harness", + [4969] = "Fortified Bindings", + [4970] = "Rough-hewn Kodo Leggings", + [4971] = "Skorn\'s Hammer", + [4972] = "Cliff Runner Boots", + [4973] = "Plains Hunter Wristguards", + [4974] = "Compact Fighting Knife", + [4975] = "Vigilant Buckler", + [4976] = "Mistspray Kilt", + [4977] = "Sword of Hammerfall", + [4978] = "Ryedol\'s Hammer", + [4979] = "Enchanted Stonecloth Bracers", + [4980] = "Prospector Gloves", + [4981] = "Agmond\'s Belt Pouch", + [4982] = "Ripped Prospector Belt", + [4983] = "Rock Pulverizer", + [4984] = "Skull of Impending Doom", + [4985] = "Test Proc Wand", + [4986] = "Flawed Power Stone", + [4987] = "Dwarf Captain\'s Sword", + [4988] = "Burning Obsidian Band", + [4989] = "Mage Dragon Robe", + [4990] = "Scorched Bands", + [4991] = "Monster - Sword2H, Broadsword", + [4992] = "Recruitment Letter", + [4993] = "Monster - Item, Skull", + [4994] = "Monster - Item, Gizmo", + [4995] = "Signed Recruitment Letter", + [4996] = "Test Item 1", + [4997] = "Deprecated Recipe: Kodo Skin Bag", + [4998] = "Blood Ring", + [4999] = "Azora\'s Will", + [5000] = "Coral Band", + [5001] = "Heart Ring", + [5002] = "Glowing Green Talisman", + [5003] = "Crystal Starfire Medallion", + [5004] = "Mark of the Kirin Tor", + [5005] = "Emberspark Pendant", + [5006] = "Khazgorm\'s Journal", + [5007] = "Band of Thorns", + [5008] = "Quicksilver Ring", + [5009] = "Mindbender Loop", + [5010] = "Inscribed Gold Ring", + [5011] = "Welken Ring", + [5012] = "Fungal Spores", + [5013] = "Fertile Bulb", + [5014] = "Wrapping Paper (PT)", + [5015] = "Wrapped Item (PT)", + [5016] = "Artisan\'s Trousers", + [5017] = "Nitroglycerin", + [5018] = "Wood Pulp", + [5019] = "Sodium Nitrate", + [5020] = "Kolkar Booty Key", + [5021] = "Explosive Stick of Gann", + [5022] = "Barak\'s Head", + [5023] = "Verog\'s Head", + [5024] = "Frost Vial", + [5025] = "Hezrul\'s Head", + [5026] = "Fire Tar", + [5027] = "Rendered Spores", + [5028] = "Lord Sakrasis\' Scepter", + [5029] = "Talisman of the Naga Lord", + [5030] = "Centaur Bracers", + [5031] = "ZZZZZZZZ", + [5032] = "ZZZZZ sword", + [5033] = "ZZZZZ sword 2", + [5034] = "ZZZZZ sword 3", + [5035] = "ZZZZZ sword 4", + [5036] = "ZZZZZ", + [5037] = "ZZZZZ sword 5", + [5038] = "Tear of the Moons", + [5039] = "ZZZZZ sword 6", + [5040] = "Shadow Hunter Knife", + [5041] = "TEST Translation: Taurahe", + [5042] = "Red Ribboned Wrapping Paper", + [5043] = "Red Ribboned Gift", + [5044] = "Blue Ribboned Gift", + [5045] = "Skull Gift", + [5046] = "Locked Gift", + [5047] = "Skull Wrapping Paper", + [5048] = "Blue Ribboned Wrapping Paper", + [5049] = "Self-locking Ironpaper", + [5050] = "Ignition Key", + [5051] = "Dig Rat", + [5052] = "Unconscious Dig Rat", + [5053] = "Deprecated Plain Brown Robe", + [5054] = "Samophlange", + [5055] = "Intact Raptor Horn", + [5056] = "Root Sample", + [5057] = "Ripe Watermelon", + [5058] = "Silithid Egg", + [5059] = "Digging Claw", + [5060] = "Thieves\' Tools", + [5061] = "Stolen Silver", + [5062] = "Raptor Head", + [5063] = "Kreenig Snarlsnout\'s Tusk", + [5064] = "Witchwing Talon", + [5065] = "Harpy Lieutenant Ring", + [5066] = "Fissure Plant", + [5067] = "Serena\'s Head", + [5068] = "Dried Seeds", + [5069] = "Fire Wand", + [5070] = "Worn Shadow Wand", + [5071] = "Shadow Wand", + [5072] = "Lok\'s Skull", + [5073] = "Nak\'s Skull", + [5074] = "Kuz\'s Skull", + [5075] = "Blood Shard", + [5076] = "Shipment of Boots", + [5077] = "Telescopic Lens", + [5078] = "Theramore Medal", + [5079] = "Cold Basilisk Eye", + [5080] = "Gazlowe\'s Ledger", + [5081] = "Kodo Hide Bag", + [5082] = "Thin Kodo Leather", + [5083] = "Pattern: Kodo Hide Bag", + [5084] = "Baron Longshore\'s Head", + [5085] = "Bristleback Quilboar Tusk", + [5086] = "Zhevra Hooves", + [5087] = "Plainstrider Beak", + [5088] = "Control Console Operating Manual", + [5089] = "Console Key", + [5090] = "Deprecated Torn Shirt", + [5091] = "test Eric Shirt", + [5092] = "Charred Razormane Wand", + [5093] = "Razormane Backstabber", + [5094] = "Razormane War Shield", + [5095] = "Rainbow Fin Albacore", + [5096] = "Prowler Claws", + [5097] = "Cats Eye Emerald", + [5098] = "Altered Snapjaw Shell", + [5099] = "Hoof of Lakota\'mani", + [5100] = "Echeyakee\'s Hide", + [5101] = "Ishamuhale\'s Fang", + [5102] = "Owatanka\'s Tailspike", + [5103] = "Washte Pawne\'s Feather", + [5104] = "Heart of Isha Awak", + [5105] = "Explosive Shell", + [5106] = "Deprecated Red Mask", + [5107] = "Deckhand\'s Shirt", + [5108] = "Dark Iron Leather", + [5109] = "Stonesplinter Rags", + [5110] = "Dalaran Wizard\'s Robe", + [5111] = "Rathorian\'s Cape", + [5112] = "Ritual Blade", + [5113] = "Mark of the Syndicate", + [5114] = "Severed Talon", + [5115] = "Broken Wishbone", + [5116] = "Long Tail Feather", + [5117] = "Vibrant Plume", + [5118] = "Large Flat Tooth", + [5119] = "Fine Loose Hair", + [5120] = "Long Tail Hair", + [5121] = "Dirty Kodo Scale", + [5122] = "Thick Kodo Hair", + [5123] = "Steel Arrowhead", + [5124] = "Small Raptor Tooth", + [5125] = "Charged Scale", + [5126] = "Knowledge: Defias Disguise", + [5127] = "Knowledge: South Seas Pirate Disguise", + [5128] = "Shed Lizard Skin", + [5129] = "Knowledge: Dark Iron Dwarf Disguise", + [5130] = "Knowledge: Dalaran Wizard Disguise", + [5131] = "Knowledge: Stonesplinter Disguise", + [5132] = "Knowledge: Syndicate Disguise", + [5133] = "Seeping Gizzard", + [5134] = "Small Furry Paw", + [5135] = "Thin Black Claw", + [5136] = "Torn Furry Ear", + [5137] = "Bright Eyeball", + [5138] = "Harvester\'s Head", + [5139] = "Book of Thorns", + [5140] = "Flash Powder", + [5141] = "Book of Regrowth", + [5142] = "Book of Wrath II", + [5143] = "Thunder Lizard Blood", + [5144] = "Deprecated Book of Cyclone", + [5145] = "Book of Healing Touch II", + [5146] = "Deprecated Book of Barkskin", + [5147] = "Book of Entangling Roots II", + [5148] = "Book of Thorns II", + [5149] = "Book of Wrath III", + [5150] = "Book of Healing Touch III", + [5151] = "Book of Wrath IV", + [5152] = "Book of Healing Touch IV", + [5153] = "Book of Mark of the Wild IV", + [5154] = "Book of Thorns III", + [5155] = "Book of Mark of the Wild II", + [5156] = "Book of Wrath V", + [5157] = "Deprecated Book of Cyclone II", + [5158] = "Book of Tranquility", + [5159] = "Deprecated Book of Entangling Roots IV", + [5160] = "Book of Healing Touch V", + [5161] = "Deprecated Book of Barkskin II", + [5162] = "Deprecated Book of Battle Roar II", + [5163] = "Book of Mark of the Wild III", + [5164] = "Thunderhawk Wings", + [5165] = "Sunscale Feather", + [5166] = "Webwood Venom Sac", + [5167] = "Webwood Egg", + [5168] = "Timberling Seed", + [5169] = "Timberling Sprout", + [5170] = "Mossy Tumor", + [5171] = "Deprecated Neeru\'s Power Stone", + [5172] = "Death Capsule", + [5173] = "Deathweed", + [5174] = "Note from Neeru", + [5175] = "Earth Totem", + [5176] = "Fire Totem", + [5177] = "Water Totem", + [5178] = "Air Totem", + [5179] = "Moss-twined Heart", + [5180] = "Necklace of Harmony", + [5181] = "Vibrant Silk Cape", + [5182] = "Shiver Blade", + [5183] = "Pulsating Hydra Heart", + [5184] = "Filled Crystal Phial", + [5185] = "Crystal Phial", + [5186] = "Partially Filled Vessel", + [5187] = "Rhahk\'Zor\'s Hammer", + [5188] = "Filled Vessel", + [5189] = "Glowing Fruit", + [5190] = "Shimmering Frond", + [5191] = "Cruel Barb", + [5192] = "Thief\'s Blade", + [5193] = "Cape of the Brotherhood", + [5194] = "Taskmaster Axe", + [5195] = "Gold-flecked Gloves", + [5196] = "Smite\'s Reaver", + [5197] = "Cookie\'s Tenderizer", + [5198] = "Cookie\'s Stirring Rod", + [5199] = "Smelting Pants", + [5200] = "Impaling Harpoon", + [5201] = "Emberstone Staff", + [5202] = "Corsair\'s Overshirt", + [5203] = "Flatland Prowler Claw", + [5204] = "Bloodfeather Belt", + [5205] = "Sprouted Frond", + [5206] = "Bogling Root", + [5207] = "Opaque Wand", + [5208] = "Smoldering Wand", + [5209] = "Gloom Wand", + [5210] = "Burning Wand", + [5211] = "Dusk Wand", + [5212] = "Blazing Wand", + [5213] = "Scorching Wand", + [5214] = "Wand of Eventide", + [5215] = "Ember Wand", + [5216] = "Umbral Wand", + [5217] = "Tainted Heart", + [5218] = "Cleansed Timberling Heart", + [5219] = "Inscribed Bark", + [5220] = "Gnarlpine Fang", + [5221] = "Melenas\' Head", + [5222] = "Deprecated Mana Gem", + [5223] = "Empty Mana Gem", + [5226] = "Deprecated Conjured Mana Jewel", + [5227] = "Empty Mana Jewel", + [5228] = "Deprecated Empty Bloodstone", + [5229] = "Empty Greater Bloodstone", + [5230] = "Deprecated Bloodstone", + [5231] = "Deprecated Greater Bloodstone", + [5232] = "Minor Soulstone", + [5233] = "Stone of Relu", + [5234] = "Flagongut\'s Fossil", + [5235] = "Alchemist\'s Wand", + [5236] = "Combustible Wand", + [5237] = "Mind-numbing Poison", + [5238] = "Pitchwood Wand", + [5239] = "Blackbone Wand", + [5240] = "Torchlight Wand", + [5241] = "Dwarven Flamestick", + [5242] = "Cinder Wand", + [5243] = "Firebelcher", + [5244] = "Consecrated Wand", + [5245] = "Summoner\'s Wand", + [5246] = "Excavation Rod", + [5247] = "Rod of Sorrow", + [5248] = "Flash Wand", + [5249] = "Burning Sliver", + [5250] = "Charred Wand", + [5251] = "Phial of Scrying", + [5252] = "Wand of Decay", + [5253] = "Goblin Igniter", + [5254] = "Rugged Spaulders", + [5255] = "Quilboar Tomahawk", + [5256] = "Kovork\'s Rattle", + [5257] = "Dark Hooded Cape", + [5258] = "Monster - Bow, Black", + [5259] = "Monster - Bow, Red", + [5260] = "Monster - Bow, Brown", + [5261] = "Monster - Bow, Gray", + [5262] = "Monster - Bow, Dark Brown", + [5263] = "Pocket Lint", + [5264] = "Complimentary Beer Token", + [5265] = "Watered-down Beer", + [5266] = "Eye of Adaegus", + [5267] = "Scarlet Kris", + [5268] = "Cracked Silithid Shell", + [5269] = "Silithid Ichor", + [5270] = "Death Cap", + [5271] = "Scaber Stalk", + [5272] = "Insane Scribbles", + [5273] = "Mathystra Relic", + [5274] = "Rose Mantle", + [5275] = "Binding Girdle", + [5276] = "Monster - Staff, 3 Piece Taped Staff", + [5277] = "Monster - Staff, Metal /w Spike Crystal", + [5278] = "Monster - Dagger, Bowie Knife", + [5279] = "Harpy Skinner", + [5280] = "Monster - Dagger, Gold Blade", + [5281] = "Monster - Dagger, Broad/Flat Blade", + [5282] = "Monster - Dagger, Fang Hook Curve", + [5283] = "Monster - Dagger, Ornate Spikey Base", + [5284] = "Monster - Dagger, Jeweled Hilt", + [5285] = "Monster - Dagger, Curvey Blue Hilt", + [5286] = "Monster - Axe, One-Handed Double Axe", + [5287] = "Monster - Axe, 2H Large Double Bladed", + [5288] = "Monster - Axe, 2H Rev. Bearded Single Bladed", + [5289] = "Monster - Axe, 2H Single Bladed /w Pick", + [5290] = "Monster - Bow, Black Bow White Grip", + [5291] = "Monster - Mace, Jeweled Club", + [5292] = "Monster - Mace2H, Basic Wooden Hammer", + [5293] = "Monster - Mace2H, Wood Handle Spiked Head", + [5294] = "Deprecated Hands of the New Moon", + [5295] = "Deprecated Hands of the Crescent Moon", + [5296] = "Deprecated Hands of the Quarter Moon", + [5297] = "Deprecated Hands of the Gibbous Moon", + [5298] = "Deprecated Hands of the Full Moon", + [5299] = "Gloves of the Moon", + [5300] = "Monster - Mace2H, Wood Handle Large Spiked Head", + [5301] = "Monster - Mace2H, Huge Wooden Maul", + [5302] = "Cobalt Buckler", + [5303] = "Monster - Staff, Wooden Handle Rounded Head", + [5304] = "Monster - Staff, Large Metal Shaft", + [5305] = "Monster - Sword, Broadsword Silver Hilt", + [5306] = "Wind Rider Staff", + [5307] = "Deprecated Skipper\'s Hat", + [5308] = "Deprecated Deckhand Gloves", + [5309] = "Privateer Musket", + [5310] = "Sea Dog Britches", + [5311] = "Buckled Boots", + [5312] = "Riveted Gauntlets", + [5313] = "Totemic Clan Ring", + [5314] = "Boar Hunter\'s Cape", + [5315] = "Timberland Armguards", + [5316] = "Barkshell Tunic", + [5317] = "Dry Moss Tunic", + [5318] = "Zhovur Axe", + [5319] = "Bashing Pauldrons", + [5320] = "Padded Lamellar Boots", + [5321] = "Elegant Shortsword", + [5322] = "Demolition Hammer", + [5323] = "Everglow Lantern", + [5324] = "Engineer\'s Hammer", + [5325] = "Welding Shield", + [5326] = "Flaring Baton", + [5327] = "Greasy Tinker\'s Pants", + [5328] = "Cinched Belt", + [5329] = "Cat Figurine", + [5330] = "Elven Cup Relic", + [5331] = "OLDBlackfathom MAGIC Relic", + [5332] = "Glowing Cat Figurine", + [5333] = "Deprecated Mathystra Relic", + [5334] = "99-Year-Old Port", + [5335] = "A Sack of Coins", + [5336] = "Grell Earring", + [5337] = "Wayfaring Gloves", + [5338] = "Ancient Moonstone Seal", + [5339] = "Serpentbloom", + [5340] = "Cauldron Stirrer", + [5341] = "Spore-covered Tunic", + [5342] = "Raptor Punch", + [5343] = "Barkeeper\'s Cloak", + [5344] = "Pointed Axe", + [5345] = "Stonewood Hammer", + [5346] = "Orcish Battle Bow", + [5347] = "Pestilent Wand", + [5348] = "Worn Parchment", + [5349] = "Conjured Muffin", + [5350] = "Conjured Water", + [5351] = "Bounty Hunter\'s Ring", + [5352] = "Book: The Powers Below", + [5353] = "Message for Elissa Starbreeze", + [5354] = "Letter to Delgren", + [5355] = "Beastmaster\'s Girdle", + [5356] = "Branding Rod", + [5357] = "Ward of the Vale", + [5358] = "Deprecated Whisperwind Headdress", + [5359] = "Lorgalis Manuscript", + [5360] = "Highborne Relic", + [5361] = "Fishbone Toothpick", + [5362] = "Chew Toy", + [5363] = "Folded Handkerchief", + [5364] = "Dry Salt Lick", + [5365] = "Deprecated Pickpocket", + [5366] = "Glowing Soul Gem", + [5367] = "Primitive Rock Tool", + [5368] = "Empty Wallet", + [5369] = "Gnawed Bone", + [5370] = "Bent Spoon", + [5371] = "Piece of Coral", + [5372] = "Deprecated Glowing Shrunken Skull", + [5373] = "Lucky Charm", + [5374] = "Small Pocket Watch", + [5375] = "Scratching Stick", + [5376] = "Broken Mirror", + [5377] = "Scallop Shell", + [5378] = "Shane Test (DELETE ME)", + [5379] = "Boot Knife", + [5380] = "Sealed Letter to Elissa", + [5381] = "Sealed Letter to Balthule", + [5382] = "Anaya\'s Pendant", + [5383] = "Athrikus Narassin\'s Head", + [5384] = "Deprecated Tower of Althalaxx Key", + [5385] = "Crawler Leg", + [5386] = "Fine Moonstalker Pelt", + [5387] = "Enchanted Moonstalker Cloak", + [5388] = "Ran Bloodtooth\'s Skull", + [5389] = "Corrupted Furbolg Totem", + [5390] = "Fandral\'s Message", + [5391] = "Rare Earth", + [5392] = "Thistlewood Dagger", + [5393] = "Thistlewood Staff", + [5394] = "Archery Training Gloves", + [5395] = "Woodland Shield", + [5396] = "Key to Searing Gorge", + [5397] = "Defias Gunpowder", + [5398] = "Canopy Leggings", + [5399] = "Tracking Boots", + [5400] = "Blood of Cobrahn", + [5401] = "Blood of Pythas", + [5402] = "Blood of Anacondra", + [5403] = "Blood of Serpentis", + [5404] = "Serpent\'s Shoulders", + [5405] = "Draped Cloak", + [5406] = "Empty Minor Bloodstone", + [5407] = "Deprecated Empty Lesser Bloodstone", + [5408] = "Deprecated Minor Bloodstone", + [5409] = "Deprecated Lesser Bloodstone", + [5410] = "OLDCeremonial Club", + [5411] = "Winterhoof Cleansing Totem", + [5412] = "Thresher Eye", + [5413] = "Moonstalker Fang", + [5414] = "Grizzled Scalp", + [5415] = "Thunderhorn Cleansing Totem", + [5416] = "Wildmane Cleansing Totem", + [5417] = "Weapon of Massive Destruction (test)", + [5418] = "Weapon of Mass Destruction (test)", + [5419] = "Feral Bracers", + [5420] = "Banshee Armor", + [5421] = "Fiery Blaze Enchantment", + [5422] = "Brambleweed Leggings", + [5423] = "Boahn\'s Fang", + [5424] = "Ancient Statuette", + [5425] = "Runescale Girdle", + [5426] = "Serpent\'s Kiss", + [5427] = "Crude Pocket Watch", + [5428] = "An Exotic Cookbook", + [5429] = "A Pretty Rock", + [5430] = "Intricate Bauble", + [5431] = "Empty Hip Flask", + [5432] = "Hickory Pipe", + [5433] = "Rag Doll", + [5434] = "Deprecated Pickpocket Water 31-40", + [5435] = "Shiny Dinglehopper", + [5436] = "Deprecated Pickpocket Undead 41-50", + [5437] = "Bathran\'s Hair", + [5438] = "OLDPlague Vials", + [5439] = "Small Quiver", + [5440] = "Bottle of Disease", + [5441] = "Small Shot Pouch", + [5442] = "Head of Arugal", + [5443] = "Gold-plated Buckler", + [5444] = "Miner\'s Cape", + [5445] = "Ring of Zoram", + [5446] = "Broken Elemental Bracer", + [5447] = "Damaged Elemental Bracer", + [5448] = "Fractured Elemental Bracer", + [5449] = "Deprecated Cracked Elemental Bracer", + [5450] = "Deprecated Busted Elemental Bracer", + [5451] = "Crushed Elemental Bracer", + [5453] = "Deprecated Shattered Elemental Bracer", + [5454] = "Deprecated Split Elemental Bracer", + [5455] = "Divined Scroll", + [5456] = "Divining Scroll", + [5457] = "Severed Voodoo Claw", + [5458] = "Dirtwood Belt", + [5459] = "Defender Axe", + [5460] = "Orendil\'s Cure", + [5461] = "Branch of Cenarius", + [5462] = "Dartol\'s Rod of Transformation", + [5463] = "Glowing Gem", + [5464] = "Iron Shaft", + [5465] = "Small Spider Leg", + [5466] = "Scorpid Stinger", + [5467] = "Kodo Meat", + [5468] = "Soft Frenzy Flesh", + [5469] = "Strider Meat", + [5470] = "Thunder Lizard Tail", + [5471] = "Stag Meat", + [5472] = "Kaldorei Spider Kabob", + [5473] = "Scorpid Surprise", + [5474] = "Roasted Kodo Meat", + [5475] = "Wooden Key", + [5476] = "Fillet of Frenzy", + [5477] = "Strider Stew", + [5478] = "Dig Rat Stew", + [5479] = "Crispy Lizard Tail", + [5480] = "Lean Venison", + [5481] = "Satyr Horns", + [5482] = "Recipe: Kaldorei Spider Kabob", + [5483] = "Recipe: Scorpid Surprise", + [5484] = "Recipe: Roasted Kodo Meat", + [5485] = "Recipe: Fillet of Frenzy", + [5486] = "Recipe: Strider Stew", + [5487] = "Recipe: Dig Rat Stew", + [5488] = "Recipe: Crispy Lizard Tail", + [5489] = "Recipe: Lean Venison", + [5490] = "Wrathtail Head", + [5491] = "Monster - Mace2H, Large Metal", + [5493] = "Elune\'s Tear", + [5494] = "Handful of Stardust", + [5495] = "Monster - Mace2H, Large Metal (1H, Special)", + [5498] = "Small Lustrous Pearl", + [5500] = "Iridescent Pearl", + [5502] = "Monster - Sword2H, Broadsword (1H, Special)", + [5503] = "Clam Meat", + [5504] = "Tangy Clam Meat", + [5505] = "Teronis\' Journal", + [5506] = "Beady Eye Stalk", + [5507] = "Ornate Spyglass", + [5508] = "Fallen Moonstone", + [5509] = "Healthstone", + [5510] = "Greater Healthstone", + [5511] = "Lesser Healthstone", + [5512] = "Minor Healthstone", + [5513] = "Mana Jade", + [5514] = "Mana Agate", + [5515] = "Deprecated Iron Pummel", + [5516] = "Threshadon Fang", + [5517] = "Tiny Bronze Key", + [5518] = "Tiny Iron Key", + [5519] = "Iron Pommel", + [5520] = "Velinde\'s Journal", + [5521] = "Velinde\'s Key", + [5522] = "Spellstone", + [5523] = "Small Barnacled Clam", + [5524] = "Thick-shelled Clam", + [5525] = "Boiled Clams", + [5526] = "Clam Chowder", + [5527] = "Goblin Deviled Clams", + [5528] = "Recipe: Clam Chowder", + [5529] = "Tomb Dust", + [5530] = "Blinding Powder", + [5531] = "Deprecated Brakgul Deathbringer\'s Head", + [5532] = "Monster - Hot Iron Poker", + [5533] = "Ilkrud Magthrull\'s Tome", + [5534] = "Parker\'s Lunch", + [5535] = "Compendium of the Fallen", + [5536] = "Mythology of the Titans", + [5537] = "Sarilus Foulborne\'s Head", + [5538] = "Vorrel\'s Wedding Ring", + [5539] = "Letter of Commendation", + [5540] = "Pearl-handled Dagger", + [5541] = "Iridescent Hammer", + [5542] = "Pearl-clasped Cloak", + [5543] = "Plans: Iridescent Hammer", + [5544] = "Dal Bloodclaw\'s Skull", + [5545] = "Fast Test Polearm", + [5546] = "Fast Test Crossbow", + [5547] = "Reconstructed Rod", + [5548] = "Fast Test Bow", + [5549] = "Fast Test Dagger", + [5550] = "Fast Test Gun", + [5551] = "Fast Test 1H Axe", + [5552] = "Fast Test 2H Axe", + [5553] = "Fast Test 1H Mace", + [5554] = "Fast Test 2H Mace", + [5555] = "Fast Test 1H Sword", + [5556] = "Fast Test 2H Sword", + [5557] = "Fast Test Spear", + [5558] = "Fast Test Staff", + [5559] = "Fast Test Thrown", + [5560] = "Fast Test Wand", + [5561] = "Fast Test Generic", + [5562] = "Voidstone (Deprecated)", + [5563] = "Succubi Stone (Deprecated)", + [5564] = "Felstone (Deprecated)", + [5565] = "Infernal Stone", + [5566] = "Broken Antler", + [5567] = "Silver Hook", + [5568] = "Smooth Pebble", + [5569] = "Seaweed", + [5570] = "Deepmoss Egg", + [5571] = "Small Black Pouch", + [5572] = "Small Green Pouch", + [5573] = "Green Leather Bag", + [5574] = "White Leather Bag", + [5575] = "Large Green Sack", + [5576] = "Large Brown Sack", + [5577] = "Plans: Rough Bronze Bracers", + [5578] = "Plans: Silvered Bronze Breastplate", + [5579] = "Militia Warhammer", + [5580] = "Militia Hammer", + [5581] = "Smooth Walking Staff", + [5582] = "Stonetalon Sap", + [5583] = "Fey Dragon Scale", + [5584] = "Twilight Whisker", + [5585] = "Courser Eye", + [5586] = "Thistlewood Blade", + [5587] = "Thornroot Club", + [5588] = "Lydon\'s Toxin", + [5589] = "Moss-covered Gauntlets", + [5590] = "Cord Bracers", + [5591] = "Rain-spotted Cape", + [5592] = "Shackled Girdle", + [5593] = "Crag Buckler", + [5594] = "Letter to Jin\'Zil", + [5595] = "Thicket Hammer", + [5596] = "Ashwood Bow", + [5597] = "Monster - Glaive - 2 Blade Red", + [5598] = "Monster - Glaive - 3 Blade", + [5599] = "Monster - Glaive - 4 Blade", + [5600] = "Monster - Claw - Bear", + [5601] = "Hatched Egg Sac", + [5602] = "Sticky Spider Webbing", + [5603] = "Wizbang\'s Gunnysack", + [5604] = "Elven Wand", + [5605] = "Pruning Knife", + [5606] = "Gardening Gloves", + [5607] = "Deprecated Graystone Shoulders", + [5608] = "Living Cowl", + [5609] = "Steadfast Cinch", + [5610] = "Gustweald Cloak", + [5611] = "Tear of Grief", + [5612] = "Ivy Cuffs", + [5613] = "Staff of the Purifier", + [5614] = "Seraph\'s Strike", + [5615] = "Woodsman Sword", + [5616] = "Gutwrencher", + [5617] = "Vagabond Leggings", + [5618] = "Scout\'s Cloak", + [5619] = "Jade Phial", + [5620] = "Vial of Innocent Blood", + [5621] = "Tourmaline Phial", + [5622] = "Clergy Ring", + [5623] = "Amethyst Phial", + [5624] = "Circlet of the Order", + [5625] = "Deprecated Band of the Order", + [5626] = "Skullchipper", + [5627] = "Relic Blade", + [5628] = "Zamah\'s Note", + [5629] = "Hammerfist Gloves", + [5630] = "Windfelt Gloves", + [5631] = "Rage Potion", + [5632] = "Cowardly Flight Potion", + [5633] = "Great Rage Potion", + [5634] = "Free Action Potion", + [5635] = "Sharp Claw", + [5636] = "Delicate Feather", + [5637] = "Large Fang", + [5638] = "Toxic Fogger", + [5639] = "Filled Jade Phial", + [5640] = "Recipe: Rage Potion", + [5641] = "Recipe: Cowardly Flight Potion", + [5642] = "Recipe: Free Action Potion", + [5643] = "Recipe: Great Rage Potion", + [5644] = "Tome of Conjure Water", + [5645] = "Filled Tourmaline Phial", + [5646] = "Vial of Blessed Water", + [5647] = "Tome of Blink", + [5648] = "Tome of Frost Armor III", + [5649] = "Tome of Blizzard", + [5650] = "Tome of Conjure Water III", + [5651] = "Deprecated Dull Razormane Backstabber", + [5652] = "Deprecated Cracked Razormane Wand", + [5653] = "Deprecated Broken Razormane War Shield", + [5654] = "Instant Toxin", + [5655] = "Chestnut Mare Bridle", + [5656] = "Brown Horse Bridle", + [5657] = "Recipe: Instant Toxin", + [5658] = "Libram: Seal of Might", + [5659] = "Smoldering Embers", + [5660] = "Libram: Seal of Righteousness", + [5661] = "Libram: Seal of Righteousness II", + [5662] = "Libram: Seal of Righteousness III", + [5663] = "Horn of the Red Wolf", + [5664] = "Corroded Shrapnel", + [5665] = "Horn of the Dire Wolf", + [5666] = "Libram: Seal of Wrath II", + [5667] = "Libram: Seal of Wisdom II", + [5668] = "Horn of the Brown Wolf", + [5669] = "Dust Devil Debris", + [5670] = "Libram: Seal of Wrath IV", + [5671] = "Libram: Seal of Might III", + [5672] = "Libram: Exorcism", + [5673] = "Libram: Exorcism II", + [5674] = "Libram: Exorcism III", + [5675] = "Crystalized Scales", + [5676] = "Libram: Sense Undead", + [5677] = "Libram: Turn Undead", + [5678] = "Libram: Seal of Sacrifice", + [5679] = "Libram: Seal of Wisdom III", + [5680] = "Libram: Seal of Protection II", + [5681] = "Corrosive Sap", + [5682] = "Libram: Turn Undead II", + [5683] = "Libram: Divine Shield II", + [5684] = "Libram: Seal of Salvation", + [5685] = "Libram: Redemption", + [5686] = "Ordanus\' Head", + [5687] = "Gatekeeper\'s Key", + [5688] = "Test Language Item", + [5689] = "Sleepers\' Key", + [5690] = "Claw Key", + [5691] = "Barrow Key", + [5692] = "Remote Detonator (Red)", + [5693] = "Remote Detonator (Blue)", + [5694] = "NG-5 Explosives (Red)", + [5695] = "NG-5 Explosives (Blue)", + [5696] = "Tablet of Shock", + [5697] = "Tablet of Healing Totem", + [5698] = "Tablet of Lightning Shield", + [5699] = "Tablet of Ghost Wolf", + [5700] = "Tablet of Healing Totem II", + [5701] = "Tablet of Sentry Totem", + [5702] = "Tablet of Agitating Totem II", + [5703] = "Tablet of Thunderclap", + [5704] = "Tablet of Water Breathing", + [5705] = "Tablet of Healing Totem III", + [5706] = "Tablet of Serpent Totem III", + [5707] = "Tablet of Far Sight", + [5708] = "Tablet of Ethereal Form", + [5709] = "Tablet of Water Walking", + [5710] = "Tablet of Healing Totem IV", + [5711] = "Tablet of Ghost Wolf II", + [5712] = "Tablet of Serpent Totem IV", + [5713] = "Tablet of Thunderbolt", + [5714] = "Tablet of Ensnaring Totem II", + [5715] = "Tablet of Lightning Storm III", + [5716] = "Tablet of Restoration VI", + [5717] = "Venture Co. Letters", + [5718] = "Venture Co. Engineering Plans", + [5719] = "Grimoire of Life Drain II", + [5720] = "Grimoire of Curse of Mannoroth II", + [5721] = "Grimoire of Create Spellstone", + [5722] = "Grimoire of Siphon Mana II", + [5723] = "Grimoire of Curse of Sargeras III", + [5724] = "Grimoire of Curse of Tongues", + [5725] = "Grimoire of Pestilence III", + [5726] = "Grimoire of Create Greater Bloodstone", + [5727] = "Grimoire of Mana Funnel", + [5728] = "Grimoire of Rain of Fire II", + [5729] = "Grimoire of Fear III", + [5730] = "Book of Rejuvenation", + [5731] = "Scroll of Messaging", + [5732] = "NG-5", + [5733] = "Unidentified Ore", + [5734] = "Super Reaper 6000 Blueprints", + [5735] = "Sealed Envelope", + [5736] = "Gerenzo\'s Mechanical Arm", + [5737] = "Covert Ops Plans: Alpha & Beta", + [5738] = "Covert Ops Pack", + [5739] = "Barbaric Harness", + [5740] = "Red Fireworks Rocket", + [5741] = "Rock Chip", + [5742] = "Gemstone Dagger", + [5743] = "Prismstone Ring", + [5744] = "Pale Skinner", + [5745] = "Monster - Trident, Wood Handle", + [5746] = "Monster - Trident, Copper", + [5747] = "Monster - Trident, Ornate", + [5748] = "Centaur Longbow", + [5749] = "Scythe Axe", + [5750] = "Warchief\'s Girdle", + [5751] = "Webwing Cloak", + [5752] = "Wyvern Tailspike", + [5753] = "Ruffled Chaplet", + [5754] = "Wolfpack Medallion", + [5755] = "Onyx Shredder Plate", + [5756] = "Sliverblade", + [5757] = "Hardwood Cudgel", + [5758] = "Mithril Lockbox", + [5759] = "Thorium Lockbox", + [5760] = "Eternium Lockbox", + [5761] = "Anvilmar Sledge", + [5762] = "Red Linen Bag", + [5763] = "Red Woolen Bag", + [5764] = "Green Silk Pack", + [5765] = "Black Silk Pack", + [5766] = "Lesser Wizard\'s Robe", + [5767] = "Violet Robes", + [5768] = "Gnome Race Ticket", + [5769] = "Goblin Race Ticket", + [5770] = "Robes of Arcana", + [5771] = "Pattern: Red Linen Bag", + [5772] = "Pattern: Red Woolen Bag", + [5773] = "Pattern: Robes of Arcana", + [5774] = "Pattern: Green Silk Pack", + [5775] = "Pattern: Black Silk Pack", + [5776] = "Elder\'s Cane", + [5777] = "Brave\'s Axe", + [5778] = "Primitive Walking Stick", + [5779] = "Forsaken Bastard Sword", + [5780] = "Murloc Scale Belt", + [5781] = "Murloc Scale Breastplate", + [5782] = "Thick Murloc Armor", + [5783] = "Murloc Scale Bracers", + [5784] = "Slimy Murloc Scale", + [5785] = "Thick Murloc Scale", + [5786] = "Pattern: Murloc Scale Belt", + [5787] = "Pattern: Murloc Scale Breastplate", + [5788] = "Pattern: Thick Murloc Armor", + [5789] = "Pattern: Murloc Scale Bracers", + [5790] = "Lonebrow\'s Journal", + [5791] = "Henrig Lonebrow\'s Journal", + [5792] = "Razorflank\'s Medallion", + [5793] = "Razorflank\'s Heart", + [5794] = "Salty Scorpid Venom", + [5795] = "Hardened Tortoise Shell", + [5796] = "Encrusted Tail Fin", + [5797] = "Indurium Flake", + [5798] = "Rocket Car Parts", + [5799] = "Kravel\'s Parts Order", + [5800] = "Kravel\'s Parts", + [5801] = "Kraul Guano", + [5802] = "Delicate Car Parts", + [5803] = "Speck of Dream Dust", + [5804] = "Goblin Rumors", + [5805] = "Heart of Zeal", + [5806] = "Fool\'s Stout", + [5807] = "Fool\'s Stout Report", + [5808] = "Pridewing Venom Sac", + [5809] = "Highperch Venom Sac", + [5810] = "Fresh Carcass", + [5811] = "Frostmaw\'s Mane", + [5812] = "Robes of Antiquity", + [5813] = "Emil\'s Brand", + [5814] = "Snapbrook Armor", + [5815] = "Glacial Stone", + [5816] = "Light of Elune", + [5817] = "Lunaris Bow", + [5818] = "Moonbeam Wand", + [5819] = "Sunblaze Coif", + [5820] = "Faerie Mantle", + [5821] = "Darkstalker Boots", + [5822] = "Hedgeseed Gauntlets", + [5823] = "Poisonous Mushroom", + [5824] = "Tablet of Will", + [5825] = "Treshala\'s Pendant", + [5826] = "Kravel\'s Scheme", + [5827] = "Fizzle Brassbolts\' Letter", + [5828] = "Ring of Uber Resists (TEST)", + [5829] = "Razor-sharp Beak", + [5830] = "Kenata\'s Head", + [5831] = "Fardel\'s Head", + [5832] = "Marcel\'s Head", + [5833] = "Indurium Ore", + [5834] = "Mok\'Morokk\'s Snuff", + [5835] = "Mok\'Morokk\'s Grog", + [5836] = "Mok\'Morokk\'s Strongbox", + [5837] = "Steelsnap\'s Rib", + [5838] = "Kodo Skin Scroll", + [5839] = "Journal Page", + [5840] = "Searing Tongue", + [5841] = "Searing Heart", + [5842] = "Unrefined Ore Sample", + [5843] = "Grenka\'s Claw", + [5844] = "Fragments of Rok\'Alim", + [5845] = "Flank of Meat", + [5846] = "Korran\'s Sealed Note", + [5847] = "Mirefin Head", + [5848] = "Hollow Vulture Bone", + [5849] = "Crate of Crash Helmets", + [5850] = "Belgrom\'s Sealed Note", + [5851] = "Cozzle\'s Key", + [5852] = "Fuel Regulator Blueprints", + [5853] = "Intact Silithid Carapace", + [5854] = "Silithid Talon", + [5855] = "Silithid Heart", + [5856] = "Monster - Throwing Axe", + [5857] = "Gnome Prize Box", + [5858] = "Goblin Prize Box", + [5859] = "Party Grenade", + [5860] = "Legacy of the Aspects", + [5861] = "Beginnings of the Undead Threat", + [5862] = "Seaforium Booster", + [5863] = "Guild Charter", + [5864] = "Gray Ram", + [5865] = "Modified Seaforium Booster", + [5866] = "Sample of Indurium Ore", + [5867] = "Etched Phial", + [5868] = "Filled Etched Phial", + [5869] = "Cloven Hoof", + [5870] = "Monster - Throwing Spear", + [5871] = "Large Hoof", + [5872] = "Brown Ram", + [5873] = "White Ram", + [5874] = "Harness: Black Ram", + [5875] = "Harness: Blue Ram", + [5876] = "Blueleaf Tuber", + [5877] = "Cracked Silithid Carapace", + [5878] = "Super Snuff", + [5879] = "Twilight Pendant", + [5880] = "Crate With Holes", + [5881] = "Head of Kelris", + [5882] = "Captain\'s Documents", + [5883] = "Forked Mudrock Tongue", + [5884] = "Unpopped Darkmist Eye", + [5896] = "Theramore Guard Medallion UNUSED", + [5897] = "Snufflenose Owner\'s Manual", + [5916] = "Gnome Camera Key", + [5917] = "Spy\'s Report", + [5918] = "Defiant Orc Head", + [5919] = "Blackened Iron Shield", + [5936] = "Animal Skin Belt", + [5937] = "Goblin Camera Key", + [5938] = "Pristine Crawler Leg", + [5939] = "Sewing Gloves", + [5940] = "Bone Buckler", + [5941] = "Brass Scale Pants", + [5942] = "Jeweled Pendant", + [5943] = "Rift Bracers", + [5944] = "Greaves of the People\'s Militia", + [5945] = "Deadmire\'s Tooth", + [5946] = "Sealed Note to Elling", + [5947] = "Defias Docket", + [5948] = "Letter to Jorgen", + [5949] = "Scrap of Paper", + [5950] = "Reethe\'s Badge", + [5951] = "Moist Towelette", + [5952] = "Corrupted Brain Stem", + [5953] = "TEST SWORD", + [5954] = "TEST SWORD 2", + [5956] = "Blacksmith Hammer", + [5957] = "Handstitched Leather Vest", + [5958] = "Fine Leather Pants", + [5959] = "Acidic Venom Sac", + [5960] = "Sealed Note to Watcher Backus", + [5961] = "Dark Leather Pants", + [5962] = "Guardian Pants", + [5963] = "Barbaric Leggings", + [5964] = "Barbaric Shoulders", + [5965] = "Guardian Cloak", + [5966] = "Guardian Gloves", + [5967] = "Girdle of Nobility", + [5968] = "Rugged Boots", + [5969] = "Regent\'s Cloak", + [5970] = "Serpent Gloves", + [5971] = "Feathered Cape", + [5972] = "Pattern: Fine Leather Pants", + [5973] = "Pattern: Barbaric Leggings", + [5974] = "Pattern: Guardian Cloak", + [5975] = "Ruffian Belt", + [5976] = "Guild Tabard", + [5996] = "Elixir of Water Breathing", + [5997] = "Elixir of Minor Defense", + [5998] = "Stormpike\'s Request", + [6016] = "Wolf Heart Sample", + [6036] = "Rogue Test Dagger", + [6037] = "Truesilver Bar", + [6038] = "Giant Clam Scorcho", + [6039] = "Recipe: Giant Clam Scorcho", + [6040] = "Golden Scale Bracers", + [6041] = "Steel Weapon Chain", + [6042] = "Iron Shield Spike", + [6043] = "Iron Counterweight", + [6044] = "Plans: Iron Shield Spike", + [6045] = "Plans: Iron Counterweight", + [6046] = "Plans: Steel Weapon Chain", + [6047] = "Plans: Golden Scale Coif", + [6048] = "Shadow Protection Potion", + [6049] = "Fire Protection Potion", + [6050] = "Frost Protection Potion", + [6051] = "Holy Protection Potion", + [6052] = "Nature Protection Potion", + [6053] = "Recipe: Holy Protection Potion", + [6054] = "Recipe: Shadow Protection Potion", + [6055] = "Recipe: Fire Protection Potion", + [6056] = "Recipe: Frost Protection Potion", + [6057] = "Recipe: Nature Protection Potion", + [6058] = "Blackened Leather Belt", + [6059] = "Nomadic Vest", + [6060] = "Flax Bracers", + [6061] = "Graystone Bracers", + [6062] = "Heavy Cord Bracers", + [6063] = "Cold Steel Gauntlets", + [6064] = "Miniature Platinum Discs", + [6065] = "Khadgar\'s Essays on Dimensional Convergence", + [6066] = "Khan Dez\'hepah\'s Head", + [6067] = "Centaur Ear", + [6068] = "Recipe: Shadow Oil", + [6069] = "Crudely Dried Meat", + [6070] = "Wolfskin Bracers", + [6071] = "Draenethyst Crystal", + [6072] = "Khan Jehn\'s Head", + [6073] = "Khan Shaka\'s Head", + [6074] = "War Horn Mouthpiece", + [6075] = "Vimes\'s Report", + [6076] = "Tapered Pants", + [6077] = "Maraudine Key Fragment", + [6078] = "Pikeman Shield", + [6079] = "Crude Charm", + [6080] = "Shadow Panther Heart", + [6081] = "Mire Lord Fungus", + [6082] = "Deepstrider Tumor", + [6083] = "Broken Tears", + [6084] = "Stormwind Guard Leggings", + [6085] = "Footman Tunic", + [6086] = "Faustin\'s Truth Serum", + [6087] = "Chausses of Westfall", + [6088] = "Monster - Torch, Ranged", + [6089] = "Zraedus\'s Brew", + [6090] = "OLDNoboru\'s Cudgel", + [6091] = "Crate of Power Stones", + [6092] = "Black Whelp Boots", + [6093] = "Orc Crusher", + [6094] = "Piercing Axe", + [6095] = "Wandering Boots", + [6096] = "Apprentice\'s Shirt", + [6097] = "Acolyte\'s Shirt", + [6098] = "Neophyte\'s Robe", + [6116] = "Apprentice\'s Robe", + [6117] = "Squire\'s Shirt", + [6118] = "Squire\'s Pants", + [6119] = "Neophyte\'s Robe", + [6120] = "Recruit\'s Shirt", + [6121] = "Recruit\'s Pants", + [6122] = "Recruit\'s Boots", + [6123] = "Novice\'s Robe", + [6124] = "Novice\'s Pants", + [6125] = "Brawler\'s Harness", + [6126] = "Trapper\'s Pants", + [6127] = "Trapper\'s Boots", + [6128] = "Primitive Robe", + [6129] = "Acolyte\'s Robe", + [6130] = "Trapper\'s Shirt", + [6131] = "Trapper\'s Pants", + [6132] = "Libram: Seal of Wisdom", + [6133] = "Libram: Seal of Fury", + [6134] = "Primitive Mantle", + [6135] = "Primitive Kilt", + [6136] = "Thug Shirt", + [6137] = "Thug Pants", + [6138] = "Thug Boots", + [6139] = "Novice\'s Robe", + [6140] = "Apprentice\'s Robe", + [6141] = "Stalker\'s Pants", + [6142] = "Stalker\'s Harness", + [6143] = "Stalker\'s Shoes", + [6144] = "Neophyte\'s Robe", + [6145] = "Clarice\'s Pendant", + [6146] = "Sundried Driftwood", + [6147] = "Ratty Old Belt", + [6148] = "Web-covered Boots", + [6149] = "Greater Mana Potion", + [6150] = "A Frayed Knot", + [6166] = "Coyote Jawbone", + [6167] = "Neeka\'s Report", + [6168] = "Sawtooth Snapper Claw", + [6169] = "Unprepared Sawtooth Flank", + [6170] = "Wizards\' Reagents", + [6171] = "Wolf Handler Gloves", + [6172] = "Lost Supplies", + [6173] = "Snow Boots", + [6174] = "Twain Random Sword", + [6175] = "Atal\'ai Artifact", + [6176] = "Dwarven Kite Shield", + [6177] = "Ironwrought Bracers", + [6178] = "Shipment to Nethergarde", + [6179] = "Privateer\'s Cape", + [6180] = "Slarkskin", + [6181] = "Fetish of Hakkar", + [6182] = "Dim Torch", + [6183] = "Unlit Poor Torch", + [6184] = "Monstrous Crawler Leg", + [6185] = "Bear Shawl", + [6186] = "Trogg Slicer", + [6187] = "Dwarven Defender", + [6188] = "Mud Stompers", + [6189] = "Durable Chain Shoulders", + [6190] = "Draenethyst Shard", + [6191] = "Kimbra Boots", + [6192] = "Khan Hratha\'s Head", + [6193] = "Bundle of Atal\'ai Artifacts", + [6194] = "Barreling Reaper", + [6195] = "Wax-polished Armor", + [6196] = "Noboru\'s Cudgel", + [6197] = "Loch Croc Hide Vest", + [6198] = "Jurassic Wristguards", + [6199] = "Black Widow Band", + [6200] = "Garneg\'s War Belt", + [6201] = "Lithe Boots", + [6202] = "Fingerless Gloves", + [6203] = "Thuggish Shield", + [6204] = "Tribal Worg Helm", + [6205] = "Burrowing Shovel", + [6206] = "Rock Chipper", + [6207] = "PVP - Horde Tower Plans", + [6208] = "PVP - Alliance Tower Plans", + [6209] = "PVP - Horde Mine Deed", + [6210] = "PVP - Alliance Mine Deed", + [6211] = "Recipe: Elixir of Ogre\'s Strength", + [6212] = "Head of Jammal\'an", + [6213] = "Test Sharpening Stone", + [6214] = "Heavy Copper Maul", + [6215] = "Balanced Fighting Stick", + [6216] = "Mystical Powder", + [6217] = "Copper Rod", + [6218] = "Runed Copper Rod", + [6219] = "Arclight Spanner", + [6220] = "Meteor Shard", + [6222] = "Formula: Imbue Chest - Minor Spirit", + [6223] = "Crest of Darkshire", + [6224] = "Monster - Sword2H, Black Metal Hilt", + [6225] = "Monster - Item, Fish - Blue", + [6226] = "Bloody Apron", + [6227] = "Monster - Item, Fish - Green", + [6228] = "Monster - Item, Fish - Orange", + [6229] = "Monster - Item, Fish - Purple", + [6230] = "Monster - Wand, Basic", + [6231] = "Monster - Wand, Jeweled - Green", + [6232] = "Monster - Item, Flowers - Boquet Roses", + [6233] = "Monster - Item, Flowers - Boquet Wildflowers", + [6234] = "Monster - Item, Flower - Long Blue", + [6235] = "Monster - Item, Flower - Rose (Black)", + [6236] = "Monster - Item, Flower - Rose (White)", + [6237] = "Monster - Item, Flowers - Boquet Roses (Black)", + [6238] = "Brown Linen Robe", + [6239] = "Red Linen Vest", + [6240] = "Blue Linen Vest", + [6241] = "White Linen Robe", + [6242] = "Blue Linen Robe", + [6243] = "Green Woolen Robe", + [6244] = "ggggfg", + [6245] = "Karnitol\'s Satchel", + [6246] = "Hatefury Claw", + [6247] = "Hatefury Horn", + [6248] = "Scorpashi Venom", + [6249] = "Aged Kodo Hide", + [6250] = "Felhound Brain", + [6251] = "Nether Wing", + [6252] = "Doomwarder Blood", + [6253] = "Leftwitch\'s Package", + [6254] = "Monster - Shield, Ironforge", + [6255] = "Fishing Pole (JEFFTEST)", + [6256] = "Fishing Pole", + [6257] = "Roc Gizzard", + [6258] = "Ironfur Liver", + [6259] = "Groddoc Liver", + [6260] = "Blue Dye", + [6261] = "Orange Dye", + [6262] = "Galen\'s Journal", + [6263] = "Blue Overalls", + [6264] = "Greater Adept\'s Robe", + [6265] = "Soul Shard", + [6266] = "Disciple\'s Vest", + [6267] = "Disciple\'s Pants", + [6268] = "Pioneer Tunic", + [6269] = "Pioneer Trousers", + [6270] = "Pattern: Blue Linen Vest", + [6271] = "Pattern: Red Linen Vest", + [6272] = "Pattern: Blue Linen Robe", + [6273] = "Pattern: Green Woolen Robe", + [6274] = "Pattern: Blue Overalls", + [6275] = "Pattern: Greater Adept\'s Robe", + [6276] = "Musty Note", + [6277] = "Musty Parchment", + [6278] = "Musty Scroll", + [6279] = "Musty Letter", + [6280] = "Musty Missive", + [6281] = "Rattlecage Skull", + [6282] = "Sacred Burial Trousers", + [6283] = "The Book of Ur", + [6284] = "Runes of Summoning", + [6285] = "Egalin\'s Grimoire", + [6286] = "Pure Hearts", + [6287] = "Atal\'ai Tablet Fragment", + [6288] = "Atal\'ai Tablet", + [6289] = "Raw Longjaw Mud Snapper", + [6290] = "Brilliant Smallfish", + [6291] = "Raw Brilliant Smallfish", + [6292] = "10 Pound Mud Snapper", + [6293] = "Dried Bat Blood", + [6294] = "12 Pound Mud Snapper", + [6295] = "15 Pound Mud Snapper", + [6296] = "Patch of Bat Hair", + [6297] = "Old Skull", + [6298] = "Bloody Bat Fang", + [6299] = "Sickly Looking Fish", + [6300] = "Husk Fragment", + [6301] = "Old Teamster\'s Skull", + [6302] = "Delicate Insect Wing", + [6303] = "Raw Slitherskin Mackerel", + [6304] = "Damp Diary Page (Day 4)", + [6305] = "Damp Diary Page (Day 87)", + [6306] = "Damp Diary Page (Day 512)", + [6307] = "Message in a Bottle", + [6308] = "Raw Bristle Whisker Catfish", + [6309] = "17 Pound Catfish", + [6310] = "19 Pound Catfish", + [6311] = "22 Pound Catfish", + [6312] = "Dalin\'s Heart", + [6313] = "Comar\'s Heart", + [6314] = "Wolfmaster Cape", + [6315] = "Steelarrow Crossbow", + [6316] = "Loch Frenzy Delight", + [6317] = "Raw Loch Frenzy", + [6318] = "Odo\'s Ley Staff", + [6319] = "Girdle of the Blindwatcher", + [6320] = "Commander\'s Crest", + [6321] = "Silverlaine\'s Family Seal", + [6322] = "Monster - Staff, Arugal", + [6323] = "Baron\'s Scepter", + [6324] = "Robes of Arugal", + [6325] = "Recipe: Brilliant Smallfish", + [6326] = "Recipe: Slitherskin Mackerel", + [6327] = "The Pacifier", + [6328] = "Recipe: Longjaw Mud Snapper", + [6329] = "Recipe: Loch Frenzy Delight", + [6330] = "Recipe: Bristle Whisker Catfish", + [6331] = "Howling Blade", + [6332] = "Black Pearl Ring", + [6333] = "Spikelash Dagger", + [6334] = "Monster - Mace, Green", + [6335] = "Grizzled Boots", + [6336] = "Infantry Tunic", + [6337] = "Infantry Leggings", + [6338] = "Silver Rod", + [6339] = "Runed Silver Rod", + [6340] = "Fenrus\' Hide", + [6341] = "Eerie Stable Lantern", + [6342] = "Formula: Enchant Chest - Minor Mana", + [6343] = "Formula: Imbue Chest - Spirit", + [6344] = "Formula: Enchant Bracer - Minor Spirit", + [6345] = "Formula: Imbue Cloak - Protection", + [6346] = "Formula: Enchant Chest - Lesser Mana", + [6347] = "Formula: Enchant Bracer - Minor Strength", + [6348] = "Formula: Enchant Weapon - Minor Beastslayer", + [6349] = "Formula: Enchant 2H Weapon - Lesser Intellect", + [6350] = "Rough Bronze Boots", + [6351] = "Dented Crate", + [6352] = "Waterlogged Crate", + [6353] = "Small Chest", + [6354] = "Small Locked Chest", + [6355] = "Sturdy Locked Chest", + [6356] = "Battered Chest", + [6357] = "Sealed Crate", + [6358] = "Oily Blackmouth", + [6359] = "Firefin Snapper", + [6360] = "Steelscale Crushfish", + [6361] = "Raw Rainbow Fin Albacore", + [6362] = "Raw Rockscale Cod", + [6363] = "26 Pound Catfish", + [6364] = "32 Pound Catfish", + [6365] = "Strong Fishing Pole", + [6366] = "Darkwood Fishing Pole", + [6367] = "Big Iron Fishing Pole", + [6368] = "Recipe: Rainbow Fin Albacore", + [6369] = "Recipe: Rockscale Cod", + [6370] = "Blackmouth Oil", + [6371] = "Fire Oil", + [6372] = "Swim Speed Potion", + [6373] = "Elixir of Firepower", + [6374] = "Enchanted Powder", + [6375] = "Formula: Enchant Bracer - Lesser Spirit", + [6376] = "Formula: Enchant Boots - Minor Stamina", + [6377] = "Formula: Enchant Boots - Minor Agility", + [6378] = "Seer\'s Cape", + [6379] = "Inscribed Leather Belt", + [6380] = "Inscribed Buckler", + [6381] = "Bright Cloak", + [6382] = "Forest Leather Belt", + [6383] = "Forest Buckler", + [6384] = "Stylish Blue Shirt", + [6385] = "Stylish Green Shirt", + [6386] = "Glimmering Mail Legguards", + [6387] = "Glimmering Mail Bracers", + [6388] = "Glimmering Mail Pauldrons", + [6389] = "Glimmering Mail Coif", + [6390] = "Pattern: Stylish Blue Shirt", + [6391] = "Pattern: Stylish Green Shirt", + [6392] = "Belt of Arugal", + [6393] = "Silver-thread Gloves", + [6394] = "Silver-thread Boots", + [6395] = "Silver-thread Amice", + [6396] = "Emblazoned Chestpiece", + [6397] = "Emblazoned Gloves", + [6398] = "Emblazoned Belt", + [6399] = "Emblazoned Shoulders", + [6400] = "Glimmering Shield", + [6401] = "Pattern: Dark Silk Shirt", + [6402] = "Mail Combat Leggings", + [6403] = "Mail Combat Armguards", + [6404] = "Mail Combat Spaulders", + [6405] = "Nightsky Trousers", + [6406] = "Nightsky Boots", + [6407] = "Nightsky Wristbands", + [6408] = "Insignia Gloves", + [6409] = "Insignia Belt", + [6410] = "Insignia Bracers", + [6411] = "Chief Brigadier Armor", + [6412] = "Chief Brigadier Boots", + [6413] = "Chief Brigadier Bracers", + [6414] = "Seal of Sylvanas", + [6415] = "Aurora Robe", + [6416] = "Aurora Boots", + [6417] = "Aurora Cloak", + [6418] = "Aurora Sash", + [6419] = "Glyphed Mitts", + [6420] = "Glyphed Boots", + [6421] = "Glyphed Belt", + [6422] = "Glyphed Helm", + [6423] = "Blackforge Greaves", + [6424] = "Blackforge Cape", + [6425] = "Blackforge Girdle", + [6426] = "Blackforge Bracers", + [6427] = "Mistscape Robe", + [6428] = "Mistscape Gloves", + [6429] = "Mistscape Wizard Hat", + [6430] = "Imperial Leather Breastplate", + [6431] = "Imperial Leather Boots", + [6432] = "Imperial Cloak", + [6433] = "Imperial Leather Helm", + [6434] = "Monster - Shield, Stromgarde", + [6435] = "Infused Burning Gem", + [6436] = "Burning Gem", + [6437] = "Flayed Demon Skin (old)", + [6438] = "Dull Elemental Bracer", + [6439] = "Broken Binding Bracer", + [6440] = "Brainlash", + [6441] = "Shadowstalker Scalp", + [6442] = "Oracle Crystal", + [6443] = "Deviate Hide", + [6444] = "Forked Tongue", + [6445] = "Brittle Molting", + [6446] = "Snakeskin Bag", + [6447] = "Worn Turtle Shell Shield", + [6448] = "Tail Spike", + [6449] = "Glowing Lizardscale Cloak", + [6450] = "Silk Bandage", + [6451] = "Heavy Silk Bandage", + [6452] = "Anti-Venom", + [6453] = "Strong Anti-Venom", + [6454] = "Manual: Strong Anti-Venom", + [6455] = "Old Wagonwheel", + [6456] = "Acidic Slime", + [6457] = "Rusted Engineering Parts", + [6458] = "Oil Covered Fish", + [6459] = "Savage Trodders", + [6460] = "Cobrahn\'s Grasp", + [6461] = "Slime-encrusted Pads", + [6462] = "Secure Crate", + [6463] = "Deep Fathom Ring", + [6464] = "Wailing Essence", + [6465] = "Robe of the Moccasin", + [6466] = "Deviate Scale Cloak", + [6467] = "Deviate Scale Gloves", + [6468] = "Deviate Scale Belt", + [6469] = "Venomstrike", + [6470] = "Deviate Scale", + [6471] = "Perfect Deviate Scale", + [6472] = "Stinging Viper", + [6473] = "Armor of the Fang", + [6474] = "Pattern: Deviate Scale Cloak", + [6475] = "Pattern: Deviate Scale Gloves", + [6476] = "Pattern: Deviate Scale Belt", + [6477] = "Grassland Sash", + [6478] = "Rat Stompers", + [6479] = "Malem Pendant", + [6480] = "Slick Deviate Leggings", + [6481] = "Dagmire Gauntlets", + [6482] = "Firewalker Boots", + [6486] = "Singed Scale", + [6487] = "Vile Familiar Head", + [6488] = "Simple Tablet", + [6489] = "Weatherworn Parchment", + [6490] = "Dark Parchment", + [6491] = "Heavy Parchment", + [6492] = "Sooty Parchment", + [6493] = "Tattered Parchment", + [6494] = "Scrawled Parchment", + [6495] = "Weatherbeaten Parchment", + [6496] = "Detailed Parchment", + [6497] = "Simple Parchment", + [6498] = "Inscribed Kodo Leather", + [6499] = "Inscribed Kodo Leather", + [6500] = "Inscribed Kodo Leather", + [6501] = "Inscribed Kodo Leather", + [6502] = "Violet Scale Armor", + [6503] = "Harlequin Robes", + [6504] = "Wingblade", + [6505] = "Crescent Staff", + [6506] = "Infantry Boots", + [6507] = "Infantry Bracers", + [6508] = "Infantry Cloak", + [6509] = "Infantry Belt", + [6510] = "Infantry Gauntlets", + [6511] = "Journeyman\'s Robe", + [6512] = "Disciple\'s Robe", + [6513] = "Disciple\'s Sash", + [6514] = "Disciple\'s Cloak", + [6515] = "Disciple\'s Gloves", + [6516] = "Imp Summoning Scroll", + [6517] = "Pioneer Belt", + [6518] = "Pioneer Boots", + [6519] = "Pioneer Bracers", + [6520] = "Pioneer Cloak", + [6521] = "Pioneer Gloves", + [6522] = "Deviate Fish", + [6523] = "Buckled Harness", + [6524] = "Studded Leather Harness", + [6525] = "Grunt\'s Harness", + [6526] = "Battle Harness", + [6527] = "Ancestral Robe", + [6528] = "Spellbinder Robe", + [6529] = "Shiny Bauble", + [6530] = "Nightcrawlers", + [6531] = "Barbaric Cloth Robe", + [6532] = "Bright Baubles", + [6533] = "Aquadynamic Fish Attractor", + [6534] = "Forged Steel Bars", + [6535] = "Tablet of Verga", + [6536] = "Willow Vest", + [6537] = "Willow Boots", + [6538] = "Willow Robe", + [6539] = "Willow Belt", + [6540] = "Willow Pants", + [6541] = "Willow Gloves", + [6542] = "Willow Cape", + [6543] = "Willow Bracers", + [6544] = "Voidwalker Summoning Scroll", + [6545] = "Soldier\'s Armor", + [6546] = "Soldier\'s Leggings", + [6547] = "Soldier\'s Gauntlets", + [6548] = "Soldier\'s Girdle", + [6549] = "Soldier\'s Cloak", + [6550] = "Soldier\'s Wristguards", + [6551] = "Soldier\'s Boots", + [6552] = "Bard\'s Tunic", + [6553] = "Bard\'s Trousers", + [6554] = "Bard\'s Gloves", + [6555] = "Bard\'s Cloak", + [6556] = "Bard\'s Bracers", + [6557] = "Bard\'s Boots", + [6558] = "Bard\'s Belt", + [6559] = "Bard\'s Buckler", + [6560] = "Soldier\'s Shield", + [6561] = "Seer\'s Padded Armor", + [6562] = "Shimmering Boots", + [6563] = "Shimmering Bracers", + [6564] = "Shimmering Cloak", + [6565] = "Shimmering Gloves", + [6566] = "Shimmering Amice", + [6567] = "Shimmering Armor", + [6568] = "Shimmering Trousers", + [6569] = "Shimmering Robe", + [6570] = "Shimmering Sash", + [6571] = "Scouting Buckler", + [6572] = "Defender Shield", + [6573] = "Defender Boots", + [6574] = "Defender Bracers", + [6575] = "Defender Cloak", + [6576] = "Defender Girdle", + [6577] = "Defender Gauntlets", + [6578] = "Defender Leggings", + [6579] = "Defender Spaulders", + [6580] = "Defender Tunic", + [6581] = "Scouting Belt", + [6582] = "Scouting Boots", + [6583] = "Scouting Bracers", + [6584] = "Scouting Tunic", + [6585] = "Scouting Cloak", + [6586] = "Scouting Gloves", + [6587] = "Scouting Trousers", + [6588] = "Scouting Spaulders", + [6589] = "Viridian Band", + [6590] = "Battleforge Boots", + [6591] = "Battleforge Wristguards", + [6592] = "Battleforge Armor", + [6593] = "Battleforge Cloak", + [6594] = "Battleforge Girdle", + [6595] = "Battleforge Gauntlets", + [6596] = "Battleforge Legguards", + [6597] = "Battleforge Shoulderguards", + [6598] = "Dervish Buckler", + [6599] = "Battleforge Shield", + [6600] = "Dervish Belt", + [6601] = "Dervish Boots", + [6602] = "Dervish Bracers", + [6603] = "Dervish Tunic", + [6604] = "Dervish Cape", + [6605] = "Dervish Gloves", + [6606] = "Dervish Mantle", + [6607] = "Dervish Leggings", + [6608] = "Bright Armor", + [6609] = "Sage\'s Cloth", + [6610] = "Sage\'s Robe", + [6611] = "Sage\'s Sash", + [6612] = "Sage\'s Boots", + [6613] = "Sage\'s Bracers", + [6614] = "Sage\'s Cloak", + [6615] = "Sage\'s Gloves", + [6616] = "Sage\'s Pants", + [6617] = "Sage\'s Mantle", + [6618] = "Monster - Orb", + [6619] = "Manual: The Path of Defense", + [6620] = "Elaborate Parchment", + [6621] = "Manual of Taunt", + [6622] = "Sword of Zeal", + [6623] = "Succubus Summoning Scroll", + [6624] = "Ken\'zigla\'s Draught", + [6625] = "Dirt-caked Pendant", + [6626] = "Dogran\'s Pendant", + [6627] = "Mutant Scale Breastplate", + [6628] = "Raven\'s Claws", + [6629] = "Sporid Cape", + [6630] = "Seedcloud Buckler", + [6631] = "Living Root", + [6632] = "Feyscale Cloak", + [6633] = "Butcher\'s Slicer", + [6634] = "Ritual Salve", + [6635] = "Earth Sapta", + [6636] = "Fire Sapta", + [6637] = "Water Sapta", + [6638] = "Air Sapta", + [6639] = "Deprecated Rough Pebble", + [6640] = "Felstalker Hoof", + [6641] = "Haunting Blade", + [6642] = "Phantom Armor", + [6643] = "Bloated Smallfish", + [6644] = "Bloated Mackerel", + [6645] = "Bloated Mud Snapper", + [6646] = "Bloated Albacore", + [6647] = "Bloated Catfish", + [6648] = "Stoneskin Totem Scroll", + [6649] = "Searing Totem Scroll", + [6650] = "Healing Stream Totem Scroll", + [6651] = "Broken Wine Bottle", + [6652] = "Reagent Pouch", + [6653] = "Torch of the Dormant Flame", + [6654] = "Torch of the Eternal Flame", + [6655] = "Glowing Ember", + [6656] = "Rough Quartz", + [6657] = "Savory Deviate Delight", + [6658] = "Example Collar", + [6659] = "Scarab Trousers", + [6660] = "Julie\'s Dagger", + [6661] = "Recipe: Savory Deviate Delight", + [6662] = "Elixir of Giant Growth", + [6663] = "Recipe: Elixir of Giant Growth", + [6664] = "Voodoo Mantle", + [6665] = "Hexed Bracers", + [6666] = "Dredge Boots", + [6667] = "Engineer\'s Cloak", + [6668] = "Draftsman Boots", + [6669] = "Sacred Band", + [6670] = "Panther Armor", + [6671] = "Juggernaut Leggings", + [6672] = "Schematic: Flash Bomb", + [6673] = "Test HP Ring", + [6674] = "Test MP Ring", + [6675] = "Tempered Bracers", + [6676] = "Constable Buckler", + [6677] = "Spellcrafter Wand", + [6678] = "Band of Elven Grace", + [6679] = "Armor Piercer", + [6680] = "Monster - Spear, Sharp Thin", + [6681] = "Thornspike", + [6682] = "Death Speaker Robes", + [6683] = "Tyranis\' Pendant (old)", + [6684] = "Snufflenose Command Stick", + [6685] = "Death Speaker Mantle", + [6686] = "Tusken Helm", + [6687] = "Corpsemaker", + [6688] = "Whisperwind Headdress", + [6689] = "Wind Spirit Staff", + [6690] = "Ferine Leggings", + [6691] = "Swinetusk Shank", + [6692] = "Pronged Reaver", + [6693] = "Agamaggan\'s Clutch", + [6694] = "Heart of Agamaggan", + [6695] = "Stygian Bone Amulet", + [6696] = "Nightstalker Bow", + [6697] = "Batwing Mantle", + [6698] = "Stone of Pierce", + [6707] = "Stone of Lapidis", + [6708] = "Stone of Goodman", + [6709] = "Moonglow Vest", + [6710] = "Pattern: Moonglow Vest", + [6711] = "Stone of Kurtz", + [6712] = "Practice Lock", + [6713] = "Ripped Pants", + [6714] = "Ez-Thro Dynamite", + [6715] = "Ruined Jumper Cables", + [6716] = "Schematic: EZ-Thro Dynamite", + [6717] = "Gaffer Jack", + [6718] = "Electropeller", + [6719] = "Windborne Belt", + [6720] = "Spirit Hunter Headdress", + [6721] = "Chestplate of Kor", + [6722] = "Beastial Manacles", + [6723] = "Medal of Courage", + [6724] = "Stone of Backus", + [6725] = "Marbled Buckler", + [6726] = "Razzeric\'s Customized Seatbelt", + [6727] = "Razzeric\'s Racing Grips", + [6728] = "Stone of Brownell", + [6729] = "Fizzle\'s Zippy Lighter", + [6730] = "Ironforge Chain", + [6731] = "Ironforge Breastplate", + [6732] = "Gnomish Mechanic\'s Gloves", + [6733] = "Ironforge Gauntlets", + [6734] = "Plans: Ironforge Chain", + [6735] = "Plans: Ironforge Breastplate", + [6736] = "Plans: Ironforge Gauntlets", + [6737] = "Dryleaf Pants", + [6738] = "Bleeding Crescent", + [6739] = "Cliffrunner\'s Aim", + [6740] = "Azure Sash", + [6741] = "Orcish War Sword", + [6742] = "Stonefist Girdle", + [6743] = "Sustaining Ring", + [6744] = "Gloves of Kapelan", + [6745] = "Swiftrunner Cape", + [6746] = "Basalt Buckler", + [6747] = "Enforcer Pauldrons", + [6748] = "Monkey Ring", + [6749] = "Tiger Band", + [6750] = "Snake Hoop", + [6751] = "Mourning Shawl", + [6752] = "Lancer Boots", + [6753] = "Feather Charm", + [6754] = "Large Moneybag", + [6755] = "A Small Container of Gems", + [6756] = "Jewelry Box", + [6757] = "Jaina\'s Signet Ring", + [6766] = "Flayed Demon Skin", + [6767] = "Tyranis\' Pendant", + [6773] = "Gelkis Marauder Chain", + [6774] = "Uthek\'s Finger", + [6775] = "Tome of Divinity", + [6776] = "Tome of Valor", + [6777] = "Tome of Righteousness", + [6778] = "Tome of Justice", + [6779] = "Tome of Nobility", + [6780] = "Lilac Sash", + [6781] = "Bartleby\'s Mug", + [6782] = "Marshal Haggard\'s Badge", + [6783] = "Dead-tooth\'s Key", + [6784] = "Braced Handguards", + [6785] = "Powers of the Void", + [6786] = "Simple Dress", + [6787] = "White Woolen Dress", + [6788] = "Magram Hunter\'s Belt", + [6789] = "Ceremonial Centaur Blanket", + [6790] = "Ring of Calm", + [6791] = "Hellion Boots", + [6792] = "Sanguine Pauldrons", + [6793] = "Auric Bracers", + [6794] = "Stormfire Gauntlets", + [6795] = "White Swashbuckler\'s Shirt", + [6796] = "Red Swashbuckler\'s Shirt", + [6797] = "Eyepoker", + [6798] = "Blasting Hackbut", + [6799] = "Vejrek\'s Head", + [6800] = "Umbral Ore", + [6801] = "Baroque Apron", + [6802] = "Sword of Omen", + [6803] = "Prophetic Cane", + [6804] = "Windstorm Hammer", + [6805] = "Horn of Vorlus", + [6806] = "Dancing Flame", + [6807] = "Frog Leg Stew", + [6808] = "Elunite Ore", + [6809] = "Elura\'s Medallion", + [6810] = "Surena\'s Choker", + [6811] = "Aquadynamic Fish Lens", + [6812] = "Case of Elunite", + [6826] = "Brilliant Scale", + [6827] = "Box of Supplies", + [6828] = "Visionary Buckler", + [6829] = "Sword of Serenity", + [6830] = "Bonebiter", + [6831] = "Black Menace", + [6832] = "Cloak of Blight", + [6833] = "White Tuxedo Shirt", + [6834] = "Black Tuxedo", + [6835] = "Black Tuxedo Pants", + [6836] = "Dress Shoes", + [6837] = "Wedding Dress", + [6838] = "Scorched Spider Fang", + [6839] = "Charred Horn", + [6840] = "Galvanized Horn", + [6841] = "Vial of Phlogiston", + [6842] = "Furen\'s Instructions", + [6843] = "Cask of Scalder", + [6844] = "Burning Blood", + [6845] = "Burning Rock", + [6846] = "Defias Script", + [6847] = "Dark Iron Script", + [6848] = "Searing Coral", + [6849] = "Sunscorched Shell", + [6850] = "Bloodscalp Scalp", + [6851] = "Essence of the Exile", + [6852] = "Eternal Eye", + [6866] = "Symbol of Life", + [6886] = "Monster - Throwing Knife", + [6887] = "Spotted Yellowtail", + [6888] = "Herb Baked Egg", + [6889] = "Small Egg", + [6890] = "Smoked Bear Meat", + [6891] = "Recipe: Herb Baked Egg", + [6892] = "Recipe: Smoked Bear Meat", + [6893] = "Workshop Key", + [6894] = "Whirlwind Heart", + [6895] = "Jordan\'s Smithing Hammer", + [6896] = "Twain Component Test", + [6897] = "Manual: Path of the Berserker", + [6898] = "Orb of Soran\'ruk", + [6899] = "Warlock Orb 35", + [6900] = "Enchanted Gold Bloodrobe", + [6901] = "Glowing Thresher Cape", + [6902] = "Bands of Serra\'kis", + [6903] = "Gaze Dreamer Pants", + [6904] = "Bite of Serra\'kis", + [6905] = "Reef Axe", + [6906] = "Algae Fists", + [6907] = "Tortoise Armor", + [6908] = "Ghamoo-ra\'s Bind", + [6909] = "Strike of the Hydra", + [6910] = "Leech Pants", + [6911] = "Moss Cinch", + [6912] = "Heartswood", + [6913] = "Heartswood Core", + [6914] = "Soran\'ruk Fragment", + [6915] = "Large Soran\'ruk Fragment", + [6916] = "Tome of Divinity", + [6926] = "Furen\'s Notes", + [6927] = "Big Will\'s Ear", + [6928] = "Bloodstone Choker", + [6929] = "Bath\'rah\'s Parchment", + [6930] = "Rod of Channeling", + [6931] = "Moldy Tome", + [6946] = "Monster - Gun, Club", + [6947] = "Instant Poison", + [6948] = "Hearthstone", + [6949] = "Instant Poison II", + [6950] = "Instant Poison III", + [6951] = "Mind-numbing Poison II", + [6952] = "Thick Bear Fur", + [6953] = "Verigan\'s Fist", + [6966] = "Elunite Axe", + [6967] = "Elunite Sword", + [6968] = "Elunite Hammer", + [6969] = "Elunite Dagger", + [6970] = "Furen\'s Favor", + [6971] = "Fire Hardened Coif", + [6972] = "Fire Hardened Hauberk", + [6973] = "Fire Hardened Leggings", + [6974] = "Fire Hardened Gauntlets", + [6975] = "Whirlwind Axe", + [6976] = "Whirlwind Warhammer", + [6977] = "Whirlwind Sword", + [6978] = "Umbral Axe", + [6979] = "Haggard\'s Axe", + [6980] = "Haggard\'s Dagger", + [6981] = "Umbral Dagger", + [6982] = "Umbral Mace", + [6983] = "Haggard\'s Hammer", + [6984] = "Umbral Sword", + [6985] = "Haggard\'s Sword", + [6986] = "Crimson Lotus", + [6987] = "Fish Scale", + [6988] = "Felhunter Summoning Scroll", + [6989] = "Vial of Hatefury Blood", + [6990] = "Lesser Infernal Stone", + [6991] = "Smoldering Coal", + [6992] = "Jordan\'s Ore Shipment", + [6993] = "Jordan\'s Refined Ore Shipment", + [6994] = "Whitestone Oak Lumber", + [6995] = "Corrupted Kor Gem", + [6996] = "Jordan\'s Weapon Notes", + [6997] = "Tattered Manuscript", + [6998] = "Nimbus Boots", + [6999] = "Tome of the Cabal", + [7000] = "Heartwood Girdle", + [7001] = "Gravestone Scepter", + [7002] = "Arctic Buckler", + [7003] = "Beetle Clasps", + [7004] = "Prelacy Cape", + [7005] = "Skinning Knife", + [7006] = "Reconstructed Tome", + [7007] = "Backus\' Phat Lewt", + [7026] = "Linen Belt", + [7027] = "Boots of Darkness", + [7046] = "Azure Silk Pants", + [7047] = "Hands of Darkness", + [7048] = "Azure Silk Hood", + [7049] = "Truefaith Gloves", + [7050] = "Silk Headband", + [7051] = "Earthen Vest", + [7052] = "Azure Silk Belt", + [7053] = "Azure Silk Cloak", + [7054] = "Robe of Power", + [7055] = "Crimson Silk Belt", + [7056] = "Crimson Silk Cloak", + [7057] = "Green Silken Shoulders", + [7058] = "Crimson Silk Vest", + [7059] = "Crimson Silk Shoulders", + [7060] = "Azure Shoulders", + [7061] = "Earthen Silk Belt", + [7062] = "Crimson Silk Pantaloons", + [7063] = "Crimson Silk Robe", + [7064] = "Crimson Silk Gloves", + [7065] = "Green Silk Armor", + [7066] = "Exotic Silk Dress", + [7067] = "Elemental Earth", + [7068] = "Elemental Fire", + [7069] = "Elemental Air", + [7070] = "Elemental Water", + [7071] = "Iron Buckle", + [7072] = "Naga Scale", + [7073] = "Broken Fang", + [7074] = "Chipped Claw", + [7075] = "Core of Earth", + [7076] = "Essence of Earth", + [7077] = "Heart of Fire", + [7078] = "Essence of Fire", + [7079] = "Globe of Water", + [7080] = "Essence of Water", + [7081] = "Breath of Wind", + [7082] = "Essence of Air", + [7083] = "Purified Kor Gem", + [7084] = "Pattern: Crimson Silk Shoulders", + [7085] = "Pattern: Azure Shoulders", + [7086] = "Pattern: Earthen Silk Belt", + [7087] = "Pattern: Crimson Silk Cloak", + [7088] = "Pattern: Crimson Silk Robe", + [7089] = "Pattern: Azure Silk Cloak", + [7090] = "Pattern: Green Silk Armor", + [7091] = "Pattern: Truefaith Gloves", + [7092] = "Pattern: Hands of Darkness", + [7093] = "Pattern: Boots of Darkness", + [7094] = "Driftwood Branch", + [7095] = "Bog Boots", + [7096] = "Plucked Feather", + [7097] = "Leg Meat", + [7098] = "Splintered Tusk", + [7099] = "Severed Pincer", + [7100] = "Sticky Ichor", + [7101] = "Bug Eye", + [7106] = "Zodiac Gloves", + [7107] = "Belt of the Stars", + [7108] = "Infantry Shield", + [7109] = "Pioneer Buckler", + [7110] = "Silver-thread Armor", + [7111] = "Nightsky Armor", + [7112] = "Aurora Armor", + [7113] = "Mistscape Armor", + [7114] = "Pattern: Azure Silk Gloves", + [7115] = "Heirloom Axe", + [7116] = "Heirloom Dagger", + [7117] = "Heirloom Hammer", + [7118] = "Heirloom Sword", + [7119] = "Twitching Antenna", + [7120] = "Ruga\'s Bulwark", + [7126] = "Smoky Iron Ingot", + [7127] = "Powdered Azurite", + [7128] = "Uncloven Satyr Hoof", + [7129] = "Brutal Gauntlets", + [7130] = "Brutal Helm", + [7131] = "Dragonmaw Shinbone", + [7132] = "Brutal Legguards", + [7133] = "Brutal Hauberk", + [7134] = "Sturdy Dragonmaw Shinbone", + [7135] = "Broken Dragonmaw Shinbone", + [7146] = "The Scarlet Key", + [7148] = "Goblin Jumper Cables", + [7166] = "Copper Dagger", + [7167] = "Test Copper Dagger", + [7169] = "Test COpper Dagger", + [7170] = "Twain Random Sword FOO", + [7171] = "TWAIN TEST ITEM VISUAL SWORD", + [7187] = "VanCleef\'s Boots", + [7188] = "Stormwind Guard Shield", + [7189] = "Goblin Rocket Boots", + [7190] = "Scorched Rocket Boots", + [7191] = "Fused Wiring", + [7192] = "Schematic: Goblin Rocket Boots", + [7206] = "Mirror Lake Water Sample", + [7207] = "Jennea\'s Flask", + [7208] = "Tazan\'s Key", + [7209] = "Tazan\'s Satchel", + [7226] = "Mage-tastic Gizmonitor", + [7227] = "Balnir Snapdragons", + [7228] = "Tigule and Foror\'s Strawberry Ice Cream", + [7229] = "Explorer\'s Vest", + [7230] = "Smite\'s Mighty Hammer", + [7231] = "Astor\'s Letter of Introduction", + [7247] = "Chest of Containment Coffers", + [7248] = "Twain TEST Cloak", + [7249] = "Charged Rift Gem", + [7266] = "Ur\'s Treatise on Shadow Magic", + [7267] = "Pristine Spider Silk", + [7268] = "Xavian Water Sample", + [7269] = "Deino\'s Flask", + [7270] = "Laughing Sister\'s Hair", + [7271] = "Flawless Ivory Tusk", + [7272] = "Bolt Charged Bramble", + [7273] = "Witherbark Totem Stick", + [7274] = "Rituals of Power", + [7275] = "The Agamaggan Scrolls", + [7276] = "Handstitched Leather Cloak", + [7277] = "Handstitched Leather Bracers", + [7278] = "Light Leather Quiver", + [7279] = "Small Leather Ammo Pouch", + [7280] = "Rugged Leather Pants", + [7281] = "Light Leather Bracers", + [7282] = "Light Leather Pants", + [7283] = "Black Whelp Cloak", + [7284] = "Red Whelp Gloves", + [7285] = "Nimble Leather Gloves", + [7286] = "Black Whelp Scale", + [7287] = "Red Whelp Scale", + [7288] = "Pattern: Rugged Leather Pants", + [7289] = "Pattern: Black Whelp Cloak", + [7290] = "Pattern: Red Whelp Gloves", + [7291] = "Infernal Orb", + [7292] = "Filled Containment Coffer", + [7293] = "Dalaran Mana Gem", + [7294] = "Andron\'s Ledger", + [7295] = "Tazan\'s Logbook", + [7296] = "Extinguished Torch", + [7297] = "Morbent\'s Bane", + [7298] = "Blade of Cunning", + [7299] = "Test - Magic Stone Helmet", + [7306] = "Fenwick\'s Head", + [7307] = "Flesh Eating Worm", + [7308] = "Cantation of Manifestation", + [7309] = "Dalaran Status Report", + [7326] = "Thun\'grim\'s Axe", + [7327] = "Thun\'grim\'s Dagger", + [7328] = "Thun\'grim\'s Mace", + [7329] = "Thun\'grim\'s Sword", + [7330] = "Infiltrator Buckler", + [7331] = "Phalanx Shield", + [7332] = "Regal Armor", + [7333] = "Overseer\'s Whistle", + [7334] = "Efflorescent Robe", + [7335] = "Grizzly Tunic", + [7336] = "Wildwood Chain", + [7337] = "The Rock", + [7338] = "Mood Ring", + [7339] = "Miniscule Diamond Ring", + [7340] = "Flawless Diamond Solitaire", + [7341] = "Cubic Zirconia Ring", + [7342] = "Silver Piffeny Band", + [7343] = "Bingles\' Wrench", + [7344] = "Torch of Holy Flame", + [7345] = "Bingles\' Screwdriver", + [7346] = "Bingles\' Hammer", + [7347] = "Bingles\' Cog Inverter", + [7348] = "Fletcher\'s Gloves", + [7349] = "Herbalist\'s Gloves", + [7350] = "Disciple\'s Bracers", + [7351] = "Disciple\'s Boots", + [7352] = "Earthen Leather Shoulders", + [7353] = "Elder\'s Padded Armor", + [7354] = "Elder\'s Boots", + [7355] = "Elder\'s Bracers", + [7356] = "Elder\'s Cloak", + [7357] = "Elder\'s Hat", + [7358] = "Pilferer\'s Gloves", + [7359] = "Heavy Earthen Gloves", + [7360] = "Pattern: Dark Leather Gloves", + [7361] = "Pattern: Herbalist\'s Gloves", + [7362] = "Pattern: Earthen Leather Shoulders", + [7363] = "Pattern: Pilferer\'s Gloves", + [7364] = "Pattern: Heavy Earthen Gloves", + [7365] = "Gnoam Sprecklesprocket", + [7366] = "Elder\'s Gloves", + [7367] = "Elder\'s Mantle", + [7368] = "Elder\'s Pants", + [7369] = "Elder\'s Robe", + [7370] = "Elder\'s Sash", + [7371] = "Heavy Quiver", + [7372] = "Heavy Leather Ammo Pouch", + [7373] = "Dusky Leather Leggings", + [7374] = "Dusky Leather Armor", + [7375] = "Green Whelp Armor", + [7376] = "Bingles\' Blastencapper", + [7377] = "Frost Leather Cloak", + [7378] = "Dusky Bracers", + [7386] = "Green Whelp Bracers", + [7387] = "Dusky Belt", + [7388] = "Skull Key", + [7389] = "Venture Co. Ledger", + [7390] = "Dusky Boots", + [7391] = "Swift Boots", + [7392] = "Green Whelp Scale", + [7406] = "Infiltrator Cord", + [7407] = "Infiltrator Armor", + [7408] = "Infiltrator Shoulders", + [7409] = "Infiltrator Boots", + [7410] = "Infiltrator Bracers", + [7411] = "Infiltrator Cloak", + [7412] = "Infiltrator Gloves", + [7413] = "Infiltrator Cap", + [7414] = "Infiltrator Pants", + [7415] = "Dervish Spaulders", + [7416] = "Phalanx Bracers", + [7417] = "Phalanx Boots", + [7418] = "Phalanx Breastplate", + [7419] = "Phalanx Cloak", + [7420] = "Phalanx Headguard", + [7421] = "Phalanx Gauntlets", + [7422] = "Phalanx Girdle", + [7423] = "Phalanx Leggings", + [7424] = "Phalanx Spaulders", + [7425] = "Cyrik\'s Head", + [7426] = "Cerulean Ring", + [7427] = "Cerulean Talisman", + [7428] = "Shadowcat Hide", + [7429] = "Twilight Armor", + [7430] = "Twilight Robe", + [7431] = "Twilight Pants", + [7432] = "Twilight Cowl", + [7433] = "Twilight Gloves", + [7434] = "Twilight Boots", + [7435] = "Twilight Mantle", + [7436] = "Twilight Cape", + [7437] = "Twilight Cuffs", + [7438] = "Twilight Belt", + [7439] = "Sentinel Breastplate", + [7440] = "Sentinel Trousers", + [7441] = "Sentinel Cap", + [7442] = "Gyromast\'s Key", + [7443] = "Sentinel Gloves", + [7444] = "Sentinel Boots", + [7445] = "Sentinel Shoulders", + [7446] = "Sentinel Cloak", + [7447] = "Sentinel Bracers", + [7448] = "Sentinel Girdle", + [7449] = "Pattern: Dusky Leather Leggings", + [7450] = "Pattern: Green Whelp Armor", + [7451] = "Pattern: Green Whelp Bracers", + [7452] = "Pattern: Dusky Boots", + [7453] = "Pattern: Swift Boots", + [7454] = "Knight\'s Breastplate", + [7455] = "Knight\'s Legguards", + [7456] = "Knight\'s Headguard", + [7457] = "Knight\'s Gauntlets", + [7458] = "Knight\'s Boots", + [7459] = "Knight\'s Pauldrons", + [7460] = "Knight\'s Cloak", + [7461] = "Knight\'s Bracers", + [7462] = "Knight\'s Girdle", + [7463] = "Sentinel Buckler", + [7464] = "Glyphs of Summoning", + [7465] = "Knight\'s Crest", + [7466] = "Vermilion Band", + [7467] = "Vermilion Necklace", + [7468] = "Regal Robe", + [7469] = "Regal Leggings", + [7470] = "Regal Wizard Hat", + [7471] = "Regal Gloves", + [7472] = "Regal Boots", + [7473] = "Regal Mantle", + [7474] = "Regal Cloak", + [7475] = "Regal Cuffs", + [7476] = "Regal Sash", + [7477] = "Ranger Tunic", + [7478] = "Ranger Leggings", + [7479] = "Ranger Helm", + [7480] = "Ranger Gloves", + [7481] = "Ranger Boots", + [7482] = "Ranger Shoulders", + [7483] = "Ranger Cloak", + [7484] = "Ranger Wristguards", + [7485] = "Ranger Cord", + [7486] = "Captain\'s Breastplate", + [7487] = "Captain\'s Leggings", + [7488] = "Captain\'s Circlet", + [7489] = "Captain\'s Gauntlets", + [7490] = "Captain\'s Boots", + [7491] = "Captain\'s Shoulderguards", + [7492] = "Captain\'s Cloak", + [7493] = "Captain\'s Bracers", + [7494] = "Captain\'s Waistguard", + [7495] = "Captain\'s Buckler", + [7496] = "Field Plate Shield", + [7497] = "Ivory Band", + [7498] = "Top of Gelkak\'s Key", + [7499] = "Middle of Gelkak\'s Key", + [7500] = "Bottom of Gelkak\'s Key", + [7506] = "Gnomish Universal Remote", + [7507] = "Arcane Orb", + [7508] = "Ley Orb", + [7509] = "Manaweave Robe", + [7510] = "Lesser Spellfire Robes", + [7511] = "Astral Knot Robe", + [7512] = "Nether-lace Robe", + [7513] = "Ragefire Wand", + [7514] = "Icefury Wand", + [7515] = "Celestial Orb", + [7516] = "Tabetha\'s Instructions", + [7517] = "Gossamer Tunic", + [7518] = "Gossamer Robe", + [7519] = "Gossamer Pants", + [7520] = "Gossamer Headpiece", + [7521] = "Gossamer Gloves", + [7522] = "Gossamer Boots", + [7523] = "Gossamer Shoulderpads", + [7524] = "Gossamer Cape", + [7525] = "Gossamer Bracers", + [7526] = "Gossamer Belt", + [7527] = "Cabalist Chestpiece", + [7528] = "Cabalist Leggings", + [7529] = "Cabalist Helm", + [7530] = "Cabalist Gloves", + [7531] = "Cabalist Boots", + [7532] = "Cabalist Spaulders", + [7533] = "Cabalist Cloak", + [7534] = "Cabalist Bracers", + [7535] = "Cabalist Belt", + [7536] = "Champion\'s Wall Shield", + [7537] = "Gothic Shield", + [7538] = "Champion\'s Armor", + [7539] = "Champion\'s Leggings", + [7540] = "Champion\'s Helmet", + [7541] = "Champion\'s Gauntlets", + [7542] = "Champion\'s Greaves", + [7543] = "Champion\'s Pauldrons", + [7544] = "Champion\'s Cape", + [7545] = "Champion\'s Bracers", + [7546] = "Champion\'s Girdle", + [7547] = "Onyx Ring", + [7548] = "Onyx Choker", + [7549] = "Fairy\'s Embrace", + [7550] = "Warrior\'s Honor", + [7551] = "Entwined Opaline Talisman", + [7552] = "Falcon\'s Hook", + [7553] = "Band of the Unicorn", + [7554] = "Willow Branch", + [7555] = "Regal Star", + [7556] = "Twilight Orb", + [7557] = "Gossamer Rod", + [7558] = "Shimmering Stave", + [7559] = "Runic Cane", + [7560] = "Schematic: Gnomish Universal Remote", + [7561] = "Schematic: Goblin Jumper Cables", + [7566] = "Agamand Family Sword", + [7567] = "Agamand Family Axe", + [7568] = "Agamand Family Dagger", + [7569] = "Agamand Family Mace", + [7586] = "Tharnariun\'s Hope", + [7587] = "Thun\'grim\'s Instructions", + [7606] = "Polar Gauntlets", + [7607] = "Sable Wand", + [7608] = "Seer\'s Fine Stein", + [7609] = "Elder\'s Amber Stave", + [7610] = "Aurora Sphere", + [7611] = "Mistscape Stave", + [7612] = "Monster - Axe, 2H Special NPC (Herod)", + [7613] = "Pattern: Green Leather Armor", + [7626] = "Bundle of Furs", + [7627] = "Dolanaar Delivery", + [7628] = "Nondescript Letter", + [7629] = "Ukor\'s Burden", + [7646] = "Crate of Inn Supplies", + [7666] = "Shattered Necklace", + [7667] = "Talvash\'s Phial of Scrying", + [7668] = "Bloodstained Journal", + [7669] = "Shattered Necklace Ruby", + [7670] = "Shattered Necklace Sapphire", + [7671] = "Shattered Necklace Topaz", + [7672] = "Shattered Necklace Power Source", + [7673] = "Talvash\'s Enhancing Necklace", + [7674] = "Delivery to Mathias", + [7675] = "Defias Shipping Schedule", + [7676] = "Thistle Tea", + [7677] = "Black Metal Greatsword", + [7678] = "Recipe: Thistle Tea", + [7679] = "Shrike Bat Fang", + [7680] = "Jadespine Basilisk Scale", + [7681] = "Obsidian Golem Shard", + [7682] = "Torturing Poker", + [7683] = "Bloody Brass Knuckles", + [7684] = "Bloodmage Mantle", + [7685] = "Orb of the Forgotten Seer", + [7686] = "Ironspine\'s Eye", + [7687] = "Ironspine\'s Fist", + [7688] = "Ironspine\'s Ribcage", + [7689] = "Morbid Dawn", + [7690] = "Ebon Vise", + [7691] = "Embalmed Shroud", + [7706] = "Monster - Mace2H, Special NPC (Mograine)", + [7707] = "Twain Test", + [7708] = "Necrotic Wand", + [7709] = "Blighted Leggings", + [7710] = "Loksey\'s Training Stick", + [7711] = "Robe of Doan", + [7712] = "Mantle of Doan", + [7713] = "Illusionary Rod", + [7714] = "Hypnotic Blade", + [7715] = "Onin\'s Report", + [7716] = "Shattered Necklace", + [7717] = "Ravager", + [7718] = "Herod\'s Shoulder", + [7719] = "Raging Berserker\'s Helm", + [7720] = "Whitemane\'s Chapeau", + [7721] = "Hand of Righteousness", + [7722] = "Triune Amulet", + [7723] = "Mograine\'s Might", + [7724] = "Gauntlets of Divinity", + [7725] = "Tabard of the Scarlet Crusade", + [7726] = "Aegis of the Scarlet Commander", + [7727] = "Watchman Pauldrons", + [7728] = "Beguiler Robes", + [7729] = "Chesterfall Musket", + [7730] = "Cobalt Crusher", + [7731] = "Ghostshard Talisman", + [7733] = "Staff of Prehistoria", + [7734] = "Six Demon Bag", + [7735] = "Jannok\'s Rose", + [7736] = "Fight Club", + [7737] = "Sethir\'s Journal", + [7738] = "Evergreen Gloves", + [7739] = "Timberland Cape", + [7740] = "Gni\'kiv Medallion", + [7741] = "The Shaft of Tsol", + [7742] = "Schematic: Gnomish Cloaking Device", + [7746] = "Explorers\' League Commendation", + [7747] = "Vile Protector", + [7748] = "Forcestone Buckler", + [7749] = "Omega Orb", + [7750] = "Mantle of Woe", + [7751] = "Vorrel\'s Boots", + [7752] = "Dreamslayer", + [7753] = "Bloodspiller", + [7754] = "Harbinger Boots", + [7755] = "Flintrock Shoulders", + [7756] = "Dog Training Gloves", + [7757] = "Windweaver Staff", + [7758] = "Ruthless Shiv", + [7759] = "Archon Chestpiece", + [7760] = "Warchief Kilt", + [7761] = "Steelclaw Reaver", + [7766] = "Empty Brown Waterskin", + [7767] = "Empty Blue Waterskin", + [7768] = "Empty Red Waterskin", + [7769] = "Filled Brown Waterskin", + [7770] = "Filled Blue Waterskin", + [7771] = "Filled Red Waterskin", + [7786] = "Headsplitter", + [7787] = "Resplendent Guardian", + [7806] = "Lollipop", + [7807] = "Candy Bar", + [7808] = "Chocolate Square", + [7809] = "Easter Dress", + [7810] = "Vial of Purest Water", + [7811] = "Remaining Drops of Purest Water", + [7812] = "Corrupt Manifestation\'s Bracers", + [7813] = "Shard of Water", + [7826] = "Monster - Staff, Special NPC (Whitemane)", + [7846] = "Crag Coyote Fang", + [7847] = "Buzzard Gizzard", + [7848] = "Rock Elemental Shard", + [7866] = "Empty Thaumaturgy Vessel", + [7867] = "Vessel of Dragon\'s Blood", + [7868] = "Thieven\' Kit", + [7869] = "Lucius\'s Lockbox", + [7870] = "Thaumaturgy Vessel Lockbox", + [7871] = "Token of Thievery", + [7872] = "Rusty Thieves\' Tools", + [7886] = "Untranslated Journal", + [7887] = "Necklace and Gem Salvage", + [7888] = "Jarkal\'s Enhancing Necklace", + [7906] = "Horns of Nez\'ra", + [7907] = "Certificate of Thievery", + [7908] = "Klaven Mortwake\'s Journal", + [7909] = "Aquamarine", + [7910] = "Star Ruby", + [7911] = "Truesilver Ore", + [7912] = "Solid Stone", + [7913] = "Barbaric Iron Shoulders", + [7914] = "Barbaric Iron Breastplate", + [7915] = "Barbaric Iron Helm", + [7916] = "Barbaric Iron Boots", + [7917] = "Barbaric Iron Gloves", + [7918] = "Heavy Mithril Shoulder", + [7919] = "Heavy Mithril Gauntlet", + [7920] = "Mithril Scale Pants", + [7921] = "Heavy Mithril Pants", + [7922] = "Steel Plate Helm", + [7923] = "Defias Tower Key", + [7924] = "Mithril Scale Bracers", + [7925] = "Mithril Scale Gloves", + [7926] = "Ornate Mithril Pants", + [7927] = "Ornate Mithril Gloves", + [7928] = "Ornate Mithril Shoulder", + [7929] = "Orcish War Leggings", + [7930] = "Heavy Mithril Breastplate", + [7931] = "Mithril Coif", + [7932] = "Mithril Scale Shoulders", + [7933] = "Heavy Mithril Boots", + [7934] = "Heavy Mithril Helm", + [7935] = "Ornate Mithril Breastplate", + [7936] = "Ornate Mithril Boots", + [7937] = "Ornate Mithril Helm", + [7938] = "Truesilver Gauntlets", + [7939] = "Truesilver Breastplate", + [7940] = "Heavy Mithril Axe", + [7941] = "Heavy Mithril Axe", + [7942] = "Blue Glittering Axe", + [7943] = "Wicked Mithril Blade", + [7944] = "Dazzling Mithril Rapier", + [7945] = "Big Black Mace", + [7946] = "Runed Mithril Hammer", + [7947] = "Ebon Shiv", + [7948] = "Girdle of Thero-shan", + [7949] = "Leggings of Thero-shan", + [7950] = "Armor of Thero-shan", + [7951] = "Hands of Thero-shan", + [7952] = "Boots of Thero-shan", + [7953] = "Mask of Thero-shan", + [7954] = "The Shatterer", + [7955] = "Copper Claymore", + [7956] = "Bronze Warhammer", + [7957] = "Bronze Greatsword", + [7958] = "Bronze Battle Axe", + [7959] = "Blight", + [7960] = "Truesilver Champion", + [7961] = "Phantom Blade", + [7963] = "Steel Breastplate", + [7964] = "Solid Sharpening Stone", + [7965] = "Solid Weightstone", + [7966] = "Solid Grinding Stone", + [7967] = "Mithril Shield Spike", + [7968] = "Southsea Treasure", + [7969] = "Mithril Spurs", + [7970] = "E.C.A.C.", + [7971] = "Black Pearl", + [7972] = "Ichor of Undeath", + [7973] = "Big-mouth Clam", + [7974] = "Zesty Clam Meat", + [7975] = "Plans: Heavy Mithril Pants", + [7976] = "Plans: Mithril Shield Spike", + [7977] = "Plans: Mithril Scale Gloves", + [7978] = "Plans: Barbaric Iron Shoulders", + [7979] = "Plans: Barbaric Iron Breastplate", + [7980] = "Plans: Barbaric Iron Helm", + [7981] = "Plans: Barbaric Iron Boots", + [7982] = "Plans: Barbaric Iron Gloves", + [7983] = "Plans: Ornate Mithril Pants", + [7984] = "Plans: Ornate Mithril Gloves", + [7985] = "Plans: Ornate Mithril Shoulder", + [7986] = "Plans: Ornate Mithril Breastplate", + [7987] = "Plans: Ornate Mithril Helm", + [7988] = "Plans: Ornate Mithril Boots", + [7989] = "Plans: Mithril Spurs", + [7990] = "Plans: Heavy Mithril Helm", + [7991] = "Plans: Mithril Scale Shoulders", + [7992] = "Plans: Blue Glittering Axe", + [7993] = "Plans: Dazzling Mithril Rapier", + [7994] = "Plans: Orcish War Leggings", + [7995] = "Plans: Mithril Scale Bracers", + [7996] = "Lucky Fishing Hat", + [7997] = "Red Defias Mask", + [8006] = "The Ziggler", + [8007] = "Mana Citrine", + [8008] = "Mana Ruby", + [8009] = "Dentrium Power Stone", + [8026] = "Garrett Family Treasure", + [8027] = "Krom Stoutarm\'s Treasure", + [8028] = "Plans: Runed Mithril Hammer", + [8029] = "Plans: Wicked Mithril Blade", + [8030] = "Plans: Ebon Shiv", + [8046] = "Kearnen\'s Journal", + [8047] = "Magenta Fungus Cap", + [8048] = "Emerald Dreamcatcher", + [8049] = "Gnarlpine Necklace", + [8050] = "Tallonkai\'s Jewel", + [8051] = "Flare Gun", + [8052] = "An\'Alleum Power Stone", + [8053] = "Obsidian Power Source", + [8066] = "Fizzule\'s Whistle", + [8067] = "Crafted Light Shot", + [8068] = "Crafted Heavy Shot", + [8069] = "Crafted Solid Shot", + [8070] = "Reward Voucher", + [8071] = "Sizzle Stick", + [8072] = "Silixiz\'s Tower Key", + [8073] = "Cache of Zanzil\'s Altered Mixture", + [8074] = "Gallywix\'s Head", + [8075] = "Conjured Sourdough", + [8076] = "Conjured Sweet Roll", + [8077] = "Conjured Mineral Water", + [8078] = "Conjured Sparkling Water", + [8079] = "Conjured Crystal Water", + [8080] = "Light Plate Chestpiece", + [8081] = "Light Plate Belt", + [8082] = "Light Plate Boots", + [8083] = "Light Plate Bracers", + [8084] = "Light Plate Gloves", + [8085] = "Light Plate Pants", + [8086] = "Light Plate Shoulderpads", + [8087] = "Sample of Zanzil\'s Altered Mixture", + [8088] = "Platemail Belt", + [8089] = "Platemail Boots", + [8090] = "Platemail Bracers", + [8091] = "Platemail Gloves", + [8092] = "Platemail Helm", + [8093] = "Platemail Leggings", + [8094] = "Platemail Armor", + [8095] = "Hinott\'s Oil", + [8106] = "Hibernal Armor", + [8107] = "Hibernal Boots", + [8108] = "Hibernal Bracers", + [8109] = "Hibernal Cloak", + [8110] = "Hibernal Gloves", + [8111] = "Hibernal Mantle", + [8112] = "Hibernal Pants", + [8113] = "Hibernal Robe", + [8114] = "Hibernal Sash", + [8115] = "Hibernal Cowl", + [8116] = "Heraldic Belt", + [8117] = "Heraldic Boots", + [8118] = "Heraldic Bracers", + [8119] = "Heraldic Breastplate", + [8120] = "Heraldic Cloak", + [8121] = "Heraldic Gloves", + [8122] = "Heraldic Headpiece", + [8123] = "Heraldic Leggings", + [8124] = "Heraldic Spaulders", + [8125] = "Myrmidon\'s Bracers", + [8126] = "Myrmidon\'s Breastplate", + [8127] = "Myrmidon\'s Cape", + [8128] = "Myrmidon\'s Gauntlets", + [8129] = "Myrmidon\'s Girdle", + [8130] = "Myrmidon\'s Greaves", + [8131] = "Myrmidon\'s Helm", + [8132] = "Myrmidon\'s Leggings", + [8133] = "Myrmidon\'s Pauldrons", + [8134] = "Myrmidon\'s Defender", + [8135] = "Chromite Shield", + [8136] = "Gargantuan Tumor", + [8137] = "Chromite Bracers", + [8138] = "Chromite Chestplate", + [8139] = "Chromite Gauntlets", + [8140] = "Chromite Girdle", + [8141] = "Chromite Greaves", + [8142] = "Chromite Barbute", + [8143] = "Chromite Legplates", + [8144] = "Chromite Pauldrons", + [8146] = "Wicked Claw", + [8147] = "Tiny Copper Key", + [8148] = "Tiny Silver Key", + [8149] = "Voodoo Charm", + [8150] = "Deeprock Salt", + [8151] = "Flask of Mojo", + [8152] = "Flask of Big Mojo", + [8153] = "Wildvine", + [8154] = "Scorpid Scale", + [8155] = "Sathrah\'s Sacrifice", + [8156] = "Jouster\'s Wristguards", + [8157] = "Jouster\'s Chestplate", + [8158] = "Jouster\'s Gauntlets", + [8159] = "Jouster\'s Girdle", + [8160] = "Jouster\'s Greaves", + [8161] = "Jouster\'s Visor", + [8162] = "Jouster\'s Legplates", + [8163] = "Jouster\'s Pauldrons", + [8164] = "Test Stationery", + [8165] = "Worn Dragonscale", + [8167] = "Turtle Scale", + [8168] = "Jet Black Feather", + [8169] = "Thick Hide", + [8170] = "Rugged Leather", + [8171] = "Rugged Hide", + [8172] = "Cured Thick Hide", + [8173] = "Thick Armor Kit", + [8174] = "Comfortable Leather Hat", + [8175] = "Nightscape Tunic", + [8176] = "Nightscape Headband", + [8177] = "Practice Sword", + [8178] = "Training Sword", + [8179] = "Cadet\'s Bow", + [8180] = "Hunting Bow", + [8181] = "Hunting Rifle", + [8182] = "Pellet Rifle", + [8183] = "Precision Bow", + [8184] = "Firestarter", + [8185] = "Turtle Scale Leggings", + [8186] = "Dire Wand", + [8187] = "Turtle Scale Gloves", + [8188] = "Explosive Shotgun", + [8189] = "Turtle Scale Breastplate", + [8190] = "Hanzo Sword", + [8191] = "Turtle Scale Helm", + [8192] = "Nightscape Shoulders", + [8193] = "Nightscape Pants", + [8194] = "Goblin Nutcracker", + [8195] = "Nightscape Cloak", + [8196] = "Ebon Scimitar", + [8197] = "Nightscape Boots", + [8198] = "Turtle Scale Bracers", + [8199] = "Battlefield Destroyer", + [8200] = "Big Voodoo Robe", + [8201] = "Big Voodoo Mask", + [8202] = "Big Voodoo Pants", + [8203] = "Tough Scorpid Breastplate", + [8204] = "Tough Scorpid Gloves", + [8205] = "Tough Scorpid Bracers", + [8206] = "Tough Scorpid Leggings", + [8207] = "Tough Scorpid Shoulders", + [8208] = "Tough Scorpid Helm", + [8209] = "Tough Scorpid Boots", + [8210] = "Wild Leather Shoulders", + [8211] = "Wild Leather Vest", + [8212] = "Wild Leather Leggings", + [8213] = "Wild Leather Boots", + [8214] = "Wild Leather Helmet", + [8215] = "Wild Leather Cloak", + [8216] = "Big Voodoo Cloak", + [8217] = "Quickdraw Quiver", + [8218] = "Thick Leather Ammo Pouch", + [8223] = "Blade of the Basilisk", + [8224] = "Silithid Ripper", + [8225] = "Tainted Pierce", + [8226] = "The Butcher", + [8243] = "Scooby Snack", + [8244] = "Flawless Draenethyst Sphere", + [8245] = "Imperial Red Tunic", + [8246] = "Imperial Red Boots", + [8247] = "Imperial Red Bracers", + [8248] = "Imperial Red Cloak", + [8249] = "Imperial Red Gloves", + [8250] = "Imperial Red Mantle", + [8251] = "Imperial Red Pants", + [8252] = "Imperial Red Robe", + [8253] = "Imperial Red Sash", + [8254] = "Imperial Red Circlet", + [8255] = "Serpentskin Girdle", + [8256] = "Serpentskin Boots", + [8257] = "Serpentskin Bracers", + [8258] = "Serpentskin Armor", + [8259] = "Serpentskin Cloak", + [8260] = "Serpentskin Gloves", + [8261] = "Serpentskin Helm", + [8262] = "Serpentskin Leggings", + [8263] = "Serpentskin Spaulders", + [8264] = "Ebonhold Wristguards", + [8265] = "Ebonhold Armor", + [8266] = "Ebonhold Cloak", + [8267] = "Ebonhold Gauntlets", + [8268] = "Ebonhold Girdle", + [8269] = "Ebonhold Boots", + [8270] = "Ebonhold Helmet", + [8271] = "Ebonhold Leggings", + [8272] = "Ebonhold Shoulderpads", + [8273] = "Valorous Wristguards", + [8274] = "Valorous Chestguard", + [8275] = "Ebonhold Buckler", + [8276] = "Valorous Gauntlets", + [8277] = "Valorous Girdle", + [8278] = "Valorous Greaves", + [8279] = "Valorous Helm", + [8280] = "Valorous Legguards", + [8281] = "Valorous Pauldrons", + [8282] = "Valorous Shield", + [8283] = "Arcane Armor", + [8284] = "Arcane Boots", + [8285] = "Arcane Bands", + [8286] = "Arcane Cloak", + [8287] = "Arcane Gloves", + [8288] = "Arcane Pads", + [8289] = "Arcane Leggings", + [8290] = "Arcane Robe", + [8291] = "Arcane Sash", + [8292] = "Arcane Cover", + [8293] = "Traveler\'s Belt", + [8294] = "Traveler\'s Boots", + [8295] = "Traveler\'s Bracers", + [8296] = "Traveler\'s Jerkin", + [8297] = "Traveler\'s Cloak", + [8298] = "Traveler\'s Gloves", + [8299] = "Traveler\'s Helm", + [8300] = "Traveler\'s Leggings", + [8301] = "Traveler\'s Spaulders", + [8302] = "Hero\'s Bracers", + [8303] = "Hero\'s Breastplate", + [8304] = "Hero\'s Cape", + [8305] = "Hero\'s Gauntlets", + [8306] = "Hero\'s Belt", + [8307] = "Hero\'s Boots", + [8308] = "Hero\'s Band", + [8309] = "Hero\'s Leggings", + [8310] = "Hero\'s Pauldrons", + [8311] = "Alabaster Plate Vambraces", + [8312] = "Alabaster Breastplate", + [8313] = "Hero\'s Buckler", + [8314] = "Alabaster Plate Gauntlets", + [8315] = "Alabaster Plate Girdle", + [8316] = "Alabaster Plate Greaves", + [8317] = "Alabaster Plate Helmet", + [8318] = "Alabaster Plate Leggings", + [8319] = "Alabaster Plate Pauldrons", + [8320] = "Alabaster Shield", + [8343] = "Heavy Silken Thread", + [8344] = "Silvery Spinnerets", + [8345] = "Wolfshead Helm", + [8346] = "Gauntlets of the Sea", + [8347] = "Dragonscale Gauntlets", + [8348] = "Helm of Fire", + [8349] = "Feathered Breastplate", + [8350] = "The 1 Ring", + [8363] = "Shaman Voodoo Charm", + [8364] = "Mithril Head Trout", + [8365] = "Raw Mithril Head Trout", + [8366] = "Bloated Trout", + [8367] = "Dragonscale Breastplate", + [8368] = "Thick Wolfhide", + [8383] = "Plain Letter", + [8384] = "Pattern: Comfortable Leather Hat", + [8385] = "Pattern: Turtle Scale Gloves", + [8386] = "Pattern: Big Voodoo Robe", + [8387] = "Pattern: Big Voodoo Mask", + [8388] = "Pattern: Nightscape Cloak", + [8389] = "Pattern: Big Voodoo Pants", + [8390] = "Pattern: Big Voodoo Cloak", + [8391] = "Snickerfang Jowl", + [8392] = "Blasted Boar Lung", + [8393] = "Scorpok Pincer", + [8394] = "Basilisk Brain", + [8395] = "Pattern: Tough Scorpid Breastplate", + [8396] = "Vulture Gizzard", + [8397] = "Pattern: Tough Scorpid Bracers", + [8398] = "Pattern: Tough Scorpid Gloves", + [8399] = "Pattern: Tough Scorpid Boots", + [8400] = "Pattern: Tough Scorpid Shoulders", + [8401] = "Pattern: Tough Scorpid Leggings", + [8402] = "Pattern: Tough Scorpid Helm", + [8403] = "Pattern: Wild Leather Shoulders", + [8404] = "Pattern: Wild Leather Vest", + [8405] = "Pattern: Wild Leather Helmet", + [8406] = "Pattern: Wild Leather Boots", + [8407] = "Pattern: Wild Leather Leggings", + [8408] = "Pattern: Wild Leather Cloak", + [8409] = "Pattern: Nightscape Shoulders", + [8410] = "R.O.I.D.S.", + [8411] = "Lung Juice Cocktail", + [8412] = "Ground Scorpok Assay", + [8423] = "Cerebral Cortex Compound", + [8424] = "Gizzard Gum", + [8425] = "Parrot Droppings", + [8426] = "Large Ruffled Feather", + [8427] = "Mutilated Rat Carcass", + [8428] = "Laden Dew Gland", + [8429] = "Punctured Dew Gland", + [8430] = "Empty Dew Gland", + [8431] = "Spool of Light Chartreuse Silk Thread", + [8432] = "Eau de Mixilpixil", + [8443] = "Gahz\'ridian Ornament", + [8444] = "Executioner\'s Key", + [8463] = "Warchief\'s Orders", + [8483] = "Wastewander Water Pouch", + [8484] = "Gadgetzan Water Co. Care Package", + [8485] = "Cat Carrier (Bombay)", + [8486] = "Cat Carrier (Cornish Rex)", + [8487] = "Cat Carrier (Orange Tabby)", + [8488] = "Cat Carrier (Silver Tabby)", + [8489] = "Cat Carrier (White Kitten)", + [8490] = "Cat Carrier (Siamese)", + [8491] = "Cat Carrier (Maine Coon)", + [8492] = "Parrot Cage (Green Wing Macaw)", + [8493] = "Weegli\'s Barrel", + [8494] = "Parrot Cage (Hyacinth Macaw)", + [8495] = "Parrot Cage (Senegal)", + [8496] = "Parrot Cage (Cockatiel)", + [8497] = "Rabbit Crate (Snowshoe)", + [8498] = "Tiny Emerald Whelpling", + [8499] = "Tiny Crimson Whelpling", + [8500] = "Great Horned Owl", + [8501] = "Hawk Owl", + [8502] = "Bronze Lotterybox", + [8503] = "Heavy Bronze Lotterybox", + [8504] = "Iron Lotterybox", + [8505] = "Heavy Iron Lotterybox", + [8506] = "Mithril Lotterybox", + [8507] = "Heavy Mithril Lotterybox", + [8508] = "Large Fin", + [8523] = "Field Testing Kit", + [8524] = "Model 4711-FTZ Power Source", + [8525] = "Zinge\'s Purchase Order", + [8526] = "Violet Tragan", + [8527] = "Sealed Field Testing Kit", + [8528] = "Violet Powder", + [8529] = "Noggenfogger Elixir", + [8543] = "Underwater Mushroom Cap", + [8544] = "Mageweave Bandage", + [8545] = "Heavy Mageweave Bandage", + [8546] = "Powerful Smelling Salts", + [8547] = "Formula: Powerful Smelling Salts ", + [8548] = "Divino-matic Rod", + [8563] = "Red Mechanostrider", + [8564] = "Hippogryph Egg", + [8583] = "Horn of the Skeletal Mount", + [8584] = "Untapped Dowsing Widget", + [8585] = "Tapped Dowsing Widget", + [8586] = "Whistle of the Mottled Red Raptor", + [8587] = "Centipaar Insect Parts", + [8588] = "Whistle of the Emerald Raptor", + [8589] = "Old Whistle of the Ivory Raptor", + [8590] = "Old Whistle of the Obsidian Raptor", + [8591] = "Whistle of the Turquoise Raptor", + [8592] = "Whistle of the Violet Raptor", + [8593] = "Scrimshank\'s Surveying Gear", + [8594] = "Insect Analysis Report", + [8595] = "Blue Mechanostrider", + [8603] = "Thistleshrub Dew", + [8623] = "OOX-17/TN Distress Beacon", + [8624] = "Red Sparkler", + [8625] = "White Sparkler", + [8626] = "Blue Sparkler", + [8627] = "Reins of the Nightsaber", + [8628] = "Reins of the Spotted Nightsaber", + [8629] = "Reins of the Striped Nightsaber", + [8630] = "Reins of the Bengal Tiger", + [8631] = "Reins of the Striped Frostsaber", + [8632] = "Reins of the Spotted Frostsaber", + [8633] = "Reins of the Leopard", + [8643] = "Extraordinary Egg", + [8644] = "Fine Egg", + [8645] = "Ordinary Egg", + [8646] = "Bad Egg", + [8647] = "Egg Crate", + [8663] = "Mithril Insignia", + [8683] = "Clara\'s Fresh Apple", + [8684] = "Hinterlands Honey Ripple", + [8685] = "Dran\'s Ripple Delivery", + [8686] = "Mithril Pendant", + [8687] = "Sealed Description of Thredd\'s Visitor", + [8688] = "Bind On Acquire Test Item", + [8703] = "Signet of Expertise", + [8704] = "OOX-09/HL Distress Beacon", + [8705] = "OOX-22/FE Distress Beacon", + [8707] = "Gahz\'rilla\'s Electrified Scale", + [8708] = "Hammer of Expertise", + [8723] = "Caliph Scorpidsting\'s Head", + [8724] = "Rin\'ji\'s Secret", + [8743] = "Book of Mark of the Wild", + [8744] = "Book of Wrath", + [8745] = "Book of Healing Touch", + [8746] = "Interlaced Cowl", + [8747] = "Hardened Leather Helm", + [8748] = "Double Mail Coif", + [8749] = "Crochet Hat", + [8750] = "Thick Leather Hat", + [8751] = "Overlinked Coif", + [8752] = "Laminated Scale Circlet", + [8753] = "Smooth Leather Helmet", + [8754] = "Twill Cover", + [8755] = "Light Plate Helmet", + [8756] = "Book of Regrowth II", + [8757] = "Book of Starfire", + [8758] = "Book of Remove Curse", + [8759] = "Book of Regrowth III", + [8760] = "Book of Abolish Poison", + [8761] = "Book of Starfire II", + [8762] = "Book of Rejuvenation V", + [8763] = "Book of Moonfire V", + [8764] = "Book of Faerie Fire II", + [8765] = "Book of Regrowth IV", + [8766] = "Morning Glory Dew", + [8768] = "Book of Starfire III", + [8769] = "Book of Thorns IV", + [8770] = "Book of Moonfire VI", + [8771] = "Book of Rejuvenation VI", + [8772] = "Book of Regrowth V", + [8773] = "Book of Entangling Roots V", + [8774] = "Book of Healing Touch VII", + [8775] = "Book of Tranquility II", + [8776] = "Book of Mark of the Wild VI", + [8777] = "Book of Moonfire IX", + [8778] = "Book of Rejuvenation VII", + [8779] = "Book of Faerie Fire III", + [8780] = "Book of Starfire V", + [8781] = "Book of Regrowth VII", + [8782] = "Book of Thorns V", + [8783] = "Book of Healing Touch IX", + [8784] = "Book of Wrath VII", + [8785] = "Book of Rejuvenation IX", + [8786] = "Book of Tranquility III", + [8787] = "Book of Soothe Animal", + [8788] = "Book of Soothe Animal II", + [8789] = "Book of Soothe Animal III", + [8790] = "Book of Faerie Fire IV", + [8791] = "Book of Regrowth VIII", + [8792] = "Book of Thorns VI", + [8793] = "Book of Wrath VIII", + [8794] = "Book of Healing Touch X", + [8795] = "Book of Entangling Roots VI", + [8796] = "Book of Moonfire X", + [8797] = "Book of Rejuvenation X", + [8798] = "Book of Starfire VI", + [8799] = "Book of Mark of the Wild VII", + [8800] = "Book of Regrowth IX", + [8801] = "Book of Tranquility IV", + [8802] = "Tome of Arcane Intellect", + [8803] = "Tome of Fireball", + [8804] = "Tome of Arcane Explosion", + [8805] = "Tome of Detect Magic", + [8806] = "Tome of Remove Lesser Curse", + [8807] = "Tome of Amplify Magic", + [8808] = "Tome of Mana Shield", + [8809] = "Tome of Sleep", + [8810] = "Tome of Sleep II", + [8811] = "Tome of Scorch", + [8812] = "Tome of Arcane Explosion II", + [8813] = "Tome of Dampen Magic II", + [8814] = "Tome of Fireball V", + [8815] = "Tome of Cone of Cold", + [8816] = "Tome of Frostbolt V", + [8818] = "Tome of Mana Shield II", + [8819] = "Tome of Scorch II", + [8820] = "Tome of Fire Ward II", + [8821] = "Tome of Amplify Magic II", + [8822] = "Tome of Arcane Explosion III", + [8823] = "Tome of Fire Blast IV", + [8824] = "Tome of Fireball VI", + [8825] = "Tome of Frost Ward III", + [8826] = "Tome of Arcane Missiles IV", + [8827] = "Elixir of Water Walking", + [8828] = "Tome of Frostbolt VI", + [8829] = "Tome of Cone of Cold II", + [8830] = "Tome of Scorch III", + [8831] = "Purple Lotus", + [8832] = "Tome of Blizzard III", + [8833] = "Tome of Mana Shield III", + [8834] = "Tome of Dampen Magic III", + [8835] = "Tome of Fireball VII", + [8836] = "Arthas\' Tears", + [8837] = "Tome of Arcane Explosion V", + [8838] = "Sungrass", + [8839] = "Blindweed", + [8840] = "Tome of Conjure Mana Gem II", + [8841] = "Tome of Fire Blast V", + [8842] = "Tome of Frostbolt VII", + [8843] = "Tome of Fire Ward III", + [8844] = "Tome of Sleep III", + [8845] = "Ghost Mushroom", + [8846] = "Gromsblood", + [8847] = "Tome of Scorch V", + [8848] = "Tome of Flamestrike IV", + [8849] = "Tome of Arcane Missiles V", + [8850] = "Tome of Conjure Water V", + [8851] = "Tome of Fireball VIII", + [8852] = "Tome of Arcane Intellect IV", + [8853] = "Tome of Conjure Food V", + [8854] = "Tome of Cone of Cold III", + [8855] = "Tome of Amplify Magic III", + [8856] = "Tome of Frostbolt VIII", + [8857] = "Tome of Blizzard IV", + [8858] = "Tome of Mana Shield IV", + [8859] = "Tome of Fire Blast VI", + [8860] = "Tome of Fireball IX", + [8861] = "Tome of Conjure Mana Gem III", + [8862] = "Tome of Arcane Missiles VI", + [8863] = "Tome of Dampen Magic IV", + [8864] = "Tome of Flamestrike V", + [8865] = "Tome of Ice Armor III", + [8866] = "Tome of Cone of Cold IV", + [8867] = "Tome of Frostbolt IX", + [8868] = "Tome of Conjure Water VI", + [8869] = "Tome of Fire Ward IV", + [8870] = "Tome of Greater Invisibility", + [8871] = "Tome of Conjure Food VI", + [8872] = "Tome of Blizzard V", + [8873] = "Tome of Mana Shield V", + [8874] = "Tome of Scorch VI", + [8875] = "Tome of Frost Ward IV", + [8876] = "Tome of Frost Ward II", + [8877] = "Tome of Fireball X", + [8878] = "Tome of Fire Blast VII", + [8879] = "Tome of Frost Nova IV", + [8880] = "Tome of Arcane Explosion VI", + [8881] = "Tome of Khadgar\'s Unlocking IV", + [8882] = "Tome of Amplify Magic IV", + [8883] = "Tome of Arcane Intellect V", + [8884] = "Tome of Frostbolt X", + [8885] = "Tome of Arcane Missiles VII", + [8886] = "Tome of Flamestrike VI", + [8887] = "Tome of Scorch VII", + [8888] = "Tome of Cone of Cold V", + [8889] = "Tome of Conjure Mana Gem IV", + [8890] = "Tome of Fireball XI", + [8891] = "Tome of Ice Armor IV", + [8892] = "Tome of Conjure Water VII", + [8893] = "Tome of Sleep IV", + [8894] = "Tome of Dampen Magic V", + [8895] = "Tome of Blizzard VI", + [8896] = "Tome of Mana Shield VI", + [8897] = "Tome of Fire Ward V", + [8898] = "Tome of Arcane Explosion IV", + [8899] = "Tome of Scorch IV", + [8900] = "Book of Entangling Roots IV", + [8901] = "Book of Healing Touch VIII", + [8902] = "Book of Mark of the Wild V", + [8903] = "Book of Moonfire VII", + [8904] = "Book of Moonfire VIII", + [8905] = "Book of Regrowth VI", + [8906] = "Book of Rejuvenation VIII", + [8907] = "Book of Starfire IV", + [8909] = "Libram: Holy Strike II", + [8910] = "Libram: Lay on Hands", + [8911] = "Libram: Fist of Justice", + [8912] = "Libram: Crusader Strike", + [8913] = "Libram: Holy Strike III", + [8914] = "Libram: Crusader Strike II", + [8915] = "Libram: Holy Strike IV", + [8916] = "Libram: Fist of Justice II", + [8917] = "Libram: Lay on Hands II", + [8918] = "Libram: Seal of Protection III", + [8919] = "Libram: Holy Strike V", + [8920] = "Libram: Crusader Strike III", + [8921] = "Libram: Fist of Justice III", + [8922] = "Libram: Holy Strike VI", + [8923] = "Essence of Agony", + [8924] = "Dust of Deterioration", + [8925] = "Crystal Vial", + [8926] = "Instant Poison IV", + [8927] = "Instant Poison V", + [8928] = "Instant Poison VI", + [8929] = "Libram: Exorcism IV", + [8930] = "Libram: Seal of Righteousness IV", + [8931] = "Libram: Crusader Strike IV", + [8932] = "Alterac Swiss", + [8933] = "Libram: Holy Light VII", + [8934] = "Libram: Holy Strike VII", + [8935] = "Libram: Judgement II", + [8936] = "Libram: Seal of Wrath III", + [8937] = "Libram: Lay on Hands III", + [8938] = "Libram: Turn Undead III", + [8939] = "Libram: Exorcism V", + [8940] = "Libram: Fist of Justice IV", + [8941] = "Libram: Holy Light VIII", + [8942] = "Libram: Seal of Righteousness V", + [8943] = "Libram: Holy Strike VIII", + [8944] = "Libram: Crusader Strike V", + [8945] = "Libram: Judgement III", + [8947] = "Libram: Exorcism VI", + [8948] = "Dried King Bolete", + [8949] = "Elixir of Agility", + [8950] = "Homemade Cherry Pie", + [8951] = "Elixir of Greater Defense", + [8952] = "Roasted Quail", + [8953] = "Deep Fried Plantains", + [8954] = "Codex of Holy Word: Fortitude", + [8955] = "Codex of Fade", + [8956] = "Oil of Immolation", + [8957] = "Spinefin Halibut", + [8958] = "Codex of Mind Blast", + [8959] = "Raw Spinefin Halibut", + [8960] = "Codex of Cure Disease", + [8961] = "Codex of Psychic Scream", + [8962] = "Codex of Mind Blast II", + [8963] = "Codex of Mind Soothe", + [8964] = "Codex of Flash Heal", + [8965] = "Codex of Fade II", + [8966] = "Codex of Shackle Undead", + [8967] = "Codex of Mind Blast III", + [8968] = "Codex of Mana Burn", + [8969] = "Codex of Flash Heal II", + [8971] = "Codex of Psychic Scream II", + [8972] = "Codex of Mind Blast IV", + [8973] = "Thick Yeti Hide", + [8974] = "Codex of Mind Control", + [8975] = "Codex of Fade III", + [8976] = "Codex of Abolish Disease", + [8977] = "Codex of Mana Burn II", + [8978] = "Codex of Flash Heal III", + [8980] = "Codex of Mind Blast V", + [8981] = "Codex of Mind Soothe II", + [8983] = "Codex of Flash Heal IV", + [8984] = "Deadly Poison III", + [8985] = "Deadly Poison IV", + [8986] = "Codex of Shackle Undead II", + [8987] = "Codex of Holy Protection II", + [8988] = "Codex of Mana Burn III", + [8989] = "Codex of Fade IV", + [8990] = "Codex of Mind Blast VI", + [8991] = "Codex of Inner Fire IV", + [8992] = "Codex of Psychic Scream III", + [8993] = "Codex of Shadow Protection II", + [8994] = "Codex of Shadow Word: Pain VI", + [8995] = "Codex of Holy Word: Shield VII", + [8996] = "Codex of Resurrection III", + [8997] = "Codex of Mind Control II", + [8998] = "Codex of Mind Vision II", + [8999] = "Codex of Flash Heal V", + [9000] = "Codex of Renew VII", + [9001] = "Codex of Greater Heal II", + [9002] = "Codex of Mind Blast VII", + [9003] = "Codex of Holy Smite VII", + [9004] = "Codex of Holy Word: Fortitude V", + [9005] = "Codex of Mana Burn IV", + [9006] = "Codex of Holy Word: Shield VIII", + [9007] = "Codex of Fade V", + [9008] = "Codex of Prayer of Healing III", + [9009] = "Codex of Inner Fire V", + [9010] = "Codex of Flash Heal VI", + [9011] = "Codex of Shadow Word: Pain VII", + [9012] = "Codex of Renew VIII", + [9013] = "Codex of Greater Heal III", + [9014] = "Codex of Mind Soothe III", + [9015] = "Codex of Mind Blast VIII", + [9016] = "Codex of Holy Smite VIII", + [9017] = "Codex of Holy Protection III", + [9018] = "Codex of Holy Word: Shield IX", + [9019] = "Codex of Renew IX", + [9020] = "Codex of Psychic Scream IV", + [9021] = "Codex of Mana Burn V", + [9022] = "Codex of Flash Heal VII", + [9023] = "Codex of Shadow Protection III", + [9024] = "Codex of Mind Control III", + [9025] = "Codex of Greater Heal IV", + [9026] = "Codex of Resurrection IV", + [9027] = "Codex of Mind Blast IX", + [9028] = "Codex of Shadow Word: Pain VIII", + [9029] = "Codex of Fade VI", + [9030] = "Restorative Elixir", + [9031] = "Codex of Shackle Undead III", + [9032] = "Codex of Prayer of Healing IV", + [9033] = "Codex of Inner Fire VI", + [9034] = "Codex of Holy Word: Fortitude VI", + [9035] = "Codex of Holy Word: Shield X", + [9036] = "Magic Resistance Potion", + [9037] = "Tablet of Rockbiter Weapon", + [9039] = "Tablet of Earth Shock", + [9040] = "Tablet of Healing Wave II", + [9041] = "Tablet of Earthbind Totem", + [9042] = "Monster - Claw Offhand", + [9043] = "Tablet of Stoneclaw Totem", + [9044] = "Tablet of Earth Shock II", + [9046] = "Tablet of Strength of Earth Totem", + [9047] = "Tablet of Flame Shock", + [9048] = "Tablet of Rebirth", + [9049] = "Tablet of Fire Nova Totem", + [9050] = "Tablet of Healing Wave III", + [9051] = "Tablet of Earth Shock III", + [9052] = "Tablet of Stoneskin Totem II", + [9053] = "Tablet of Rockbiter Weapon II", + [9054] = "Tablet of Flame Shock II", + [9055] = "Tablet of Stoneclaw Totem II", + [9056] = "Tablet of Healing Wave IV", + [9057] = "Tablet of Frostbrand Weapon", + [9058] = "Tablet of Frost Shock", + [9059] = "Tablet of Flametongue Weapon", + [9060] = "Inlaid Mithril Cylinder", + [9061] = "Goblin Rocket Fuel", + [9062] = "Tablet of Cure Disease", + [9063] = "Tablet of Poison Cleansing Totem", + [9064] = "Tablet of Flametongue Weapon II", + [9065] = "Tablet of Fire Nova Totem II", + [9066] = "Tablet of Frost Resistance Totem", + [9067] = "Tablet of Strength of Earth Totem II", + [9068] = "Tablet of Stoneskin Totem III", + [9069] = "Tablet of Earth Shock IV", + [9070] = "Tablet of Healing Wave V", + [9071] = "Tablet of Mana Font Totem", + [9072] = "Tablet of Flametongue Totem", + [9073] = "Tablet of Windfury Weapon", + [9074] = "Tablet of Flame Shock III", + [9075] = "Tablet of Fire Resistance Totem", + [9076] = "Tablet of Magma Totem", + [9077] = "Tablet of Stoneclaw Totem III", + [9078] = "Tablet of Grounding Totem", + [9079] = "Tablet of Lightning Shock", + [9080] = "Tablet of Nature Resistance Totem", + [9081] = "Tablet of Healing Stream Totem II", + [9082] = "Tablet of Rockbiter Weapon III", + [9083] = "Tablet of Searing Totem III", + [9084] = "Tablet of Windfury Totem", + [9085] = "Tablet of Fire Nova Totem III", + [9086] = "Tablet of Healing Wave VI", + [9087] = "Tablet of Purge II", + [9088] = "Gift of Arthas", + [9089] = "Tablet of Frost Shock II", + [9090] = "Tablet of Frostbrand Weapon II", + [9091] = "Tablet of Stoneskin Totem IV", + [9092] = "Tablet of Sentry Totem", + [9093] = "Tablet of Mana Font Totem II", + [9094] = "Tablet of Flametongue Weapon III", + [9095] = "Tablet of Earth Shock V", + [9096] = "Tablet of Disease Cleansing Totem", + [9097] = "Tablet of Magma Totem II", + [9098] = "Tablet of Strength of Earth Totem III", + [9099] = "Tablet of Stoneclaw Totem IV", + [9100] = "Tablet of Lightning Shield V", + [9101] = "Tablet of Windfury Weapon II", + [9102] = "Tablet of Chain Lightning II", + [9103] = "Tablet of Healing Stream Totem III", + [9104] = "Tablet of Searing Totem IV", + [9105] = "Tablet of Healing Wave VII", + [9123] = "Tablet of Lightning Bolt VI", + [9124] = "Tablet of Lightning Shock II", + [9125] = "Tablet of Grace of Air Totem", + [9126] = "Tablet of Flametongue Totem II", + [9127] = "Tablet of Fire Resistance Totem II", + [9128] = "Tablet of Fire Nova Totem IV", + [9129] = "Tablet of Rockbiter Weapon IV", + [9130] = "Tablet of Nature Resistance Totem II", + [9131] = "Tablet of Stoneskin Totem V", + [9132] = "Tablet of Molten Blast VI", + [9133] = "Tablet of Chain Heal II", + [9134] = "Tablet of Windfury Totem II", + [9135] = "Tablet of Frost Shock III", + [9136] = "Tablet of Mana Font Totem III", + [9137] = "Tablet of Lightning Shield VI", + [9138] = "Tablet of Magma Totem III", + [9139] = "Tablet of Frostbrand Weapon III", + [9140] = "Tablet of Chain Lightning III", + [9141] = "Tablet of Stoneclaw Totem V", + [9142] = "Tablet of Earth Shock VI", + [9143] = "Tablet of Healing Wave VIII", + [9144] = "Wildvine Potion", + [9145] = "Tablet of Lightning Bolt VII", + [9146] = "Tablet of Searing Totem V", + [9147] = "Tablet of Healing Stream Totem IV", + [9148] = "Tablet of Flametongue Weapon IV", + [9149] = "Philosopher\'s Stone", + [9150] = "Tablet of Strength of Earth Totem IV", + [9151] = "Tablet of Flame Shock V", + [9152] = "Tablet of Fire Nova Totem V", + [9153] = "Rig Blueprints", + [9154] = "Elixir of Detect Undead", + [9155] = "Arcane Elixir", + [9156] = "Tablet of Molten Blast VII", + [9157] = "Tablet of Chain Heal III", + [9158] = "Tablet of Frost Resistance Totem III", + [9159] = "Tablet of Lightning Shock III", + [9160] = "Tablet of Windfury Weapon III", + [9161] = "Tablet of Stoneskin Totem VI", + [9162] = "Tablet of Lightning Shield VII", + [9164] = "Tablet of Grace of Air Totem II", + [9165] = "Tablet of Flametongue Totem III", + [9166] = "Tablet of Mana Font Totem IV", + [9167] = "Tablet of Chain Lightning IV", + [9168] = "Tablet of Healing Wave IX", + [9169] = "Tablet of Lightning Bolt VIII", + [9170] = "Tablet of Fire Resistance Totem III", + [9171] = "Tablet of Magma Totem IV", + [9172] = "Invisibility Potion", + [9173] = "Goblin Transponder", + [9174] = "Tablet of Frost Shock IV", + [9175] = "Tablet of Rockbiter Weapon V", + [9176] = "Tablet of Stoneclaw Totem VI", + [9177] = "Tablet of Earth Shock VII", + [9178] = "Tablet of Nature Resistance Totem III", + [9179] = "Elixir of Greater Intellect", + [9180] = "Tablet of Windfury Totem III", + [9181] = "Tablet of Healing Stream Totem V", + [9182] = "Tablet of Searing Totem VI", + [9183] = "Tablet of Chain Heal", + [9184] = "Tablet of Flame Shock IV", + [9185] = "Tablet of Frost Resistance Totem II", + [9186] = "Mind-numbing Poison III", + [9187] = "Elixir of Greater Agility", + [9188] = "Tablet of Searing Totem II", + [9189] = "Shay\'s Bell", + [9190] = "Grimoire of Immolate", + [9191] = "Grimoire of Curse of Weakness", + [9192] = "Grimoire of Corruption", + [9193] = "Grimoire of Life Tap", + [9194] = "Grimoire of Curse of Agony", + [9195] = "Grimoire of Drain Soul", + [9197] = "Elixir of Dream Vision", + [9198] = "Grimoire of Health Funnel", + [9199] = "Grimoire of Curse of Recklessness", + [9200] = "Grimoire of Curse of Weakness II", + [9201] = "Grimoire of Corruption II", + [9202] = "Grimoire of Life Tap II", + [9203] = "Grimoire of Ritual of Summoning", + [9204] = "Grimoire of Health Funnel II", + [9205] = "Grimoire of Curse of Agony II", + [9206] = "Elixir of Giants", + [9207] = "Grimoire of Create Bloodstone II", + [9208] = "Grimoire of Drain Soul II", + [9209] = "Grimoire of Curse of Weakness III", + [9210] = "Ghost Dye", + [9211] = "Grimoire of Curse of Recklessness II", + [9212] = "Grimoire of Shadow Bolt V", + [9214] = "Grimoire of Inferno", + [9215] = "Grimoire of Health Funnel III", + [9216] = "Grimoire of Corruption III", + [9217] = "Grimoire of Life Tap III", + [9218] = "Grimoire of Enslave Demon", + [9219] = "Grimoire of Hellfire", + [9221] = "Grimoire of Curse of Agony III", + [9222] = "Grimoire of Curse of the Elements", + [9223] = "Grimoire of Curse of Weakness IV", + [9224] = "Elixir of Demonslaying", + [9225] = "Grimoire of Shadow Bolt VI", + [9226] = "Grimoire of Health Funnel IV", + [9227] = "Grimoire of Drain Soul III", + [9228] = "Grimoire of Create Bloodstone III", + [9229] = "Grimoire of Life Drain IV", + [9230] = "Grimoire of Curse of Recklessness III", + [9231] = "Grimoire of Corruption IV", + [9233] = "Elixir of Detect Demon", + [9234] = "Tiara of the Deep", + [9235] = "Pratt\'s Letter", + [9236] = "Jangdor\'s Letter", + [9237] = "Woodpaw Gnoll Mane", + [9238] = "Uncracked Scarab Shell", + [9239] = "Mallet of Zul\'Farrak", + [9240] = "Mallet of Zul\'Farrak", + [9241] = "Sacred Mallet", + [9242] = "Ancient Tablet", + [9243] = "Shriveled Heart", + [9244] = "Stoley\'s Shipment", + [9245] = "Stoley\'s Bottle", + [9246] = "Firebeard\'s Head", + [9247] = "Hatecrest Naga Scale", + [9248] = "Mysterious Relic", + [9249] = "Captain\'s Key", + [9250] = "Ship Schedule", + [9251] = "Upper Map Fragment", + [9252] = "Lower Map Fragment", + [9253] = "Middle Map Fragment", + [9254] = "Cuergo\'s Treasure Map", + [9255] = "Lahassa Essence", + [9256] = "Imbel Essence", + [9257] = "Samha Essence", + [9258] = "Byltan Essence", + [9259] = "Troll Tribal Necklace", + [9260] = "Volatile Rum", + [9261] = "Lead Ore", + [9262] = "Black Vitriol", + [9263] = "Troyas\' Stave", + [9264] = "Elixir of Shadow Power", + [9265] = "Cuergo\'s Hidden Treasure", + [9266] = "Woodpaw Battle Plans", + [9275] = "Cuergo\'s Key", + [9276] = "Pirate\'s Footlocker", + [9277] = "Techbot\'s Memory Core", + [9278] = "Essential Artificial", + [9279] = "White Punch Card", + [9280] = "Yellow Punch Card", + [9281] = "Red Punch Card", + [9282] = "Blue Punch Card", + [9283] = "Empty Leaden Collection Phial", + [9284] = "Full Leaden Collection Phial", + [9285] = "Field Plate Vambraces", + [9286] = "Field Plate Armor", + [9287] = "Field Plate Gauntlets", + [9288] = "Field Plate Girdle", + [9289] = "Field Plate Boots", + [9290] = "Field Plate Helmet", + [9291] = "Field Plate Leggings", + [9292] = "Field Plate Pauldrons", + [9293] = "Recipe: Magic Resistance Potion", + [9294] = "Recipe: Wildvine Potion", + [9295] = "Recipe: Invisibility Potion", + [9296] = "Recipe: Gift of Arthas", + [9297] = "Recipe: Elixir of Dream Vision", + [9298] = "Recipe: Elixir of Giants", + [9299] = "Thermaplugg\'s Safe Combination", + [9300] = "Recipe: Elixir of Demonslaying", + [9301] = "Recipe: Elixir of Shadow Power", + [9302] = "Recipe: Ghost Dye", + [9303] = "Recipe: Philosopher\'s Stone", + [9304] = "Recipe: Transmute Iron to Gold", + [9305] = "Recipe: Transmute Mithril to Truesilver", + [9306] = "Stave of Equinex", + [9307] = "A Sparkling Stone", + [9308] = "Grime-Encrusted Object", + [9309] = "Robo-mechanical Guts", + [9311] = "Default Stationery", + [9312] = "Blue Firework", + [9313] = "Green Firework", + [9314] = "Red Streaks Firework", + [9315] = "Yellow Rose Firework", + [9316] = "Prismatic Punch Card", + [9317] = "Red, White and Blue Firework", + [9318] = "Red Firework", + [9319] = "Nimboya\'s Laden Pike", + [9320] = "Witherbark Skull", + [9321] = "Venom Bottle", + [9322] = "Undamaged Venom Sac", + [9323] = "Gadrin\'s Parchment", + [9324] = "Shadra\'s Venom", + [9325] = "A Small Stave", + [9326] = "Grime-Encrusted Ring", + [9327] = "Security DELTA Data Access Card", + [9328] = "Super Snapper FX", + [9329] = "A Short Note", + [9330] = "Snapshot of Gammerita", + [9331] = "Feralas: A History", + [9332] = "Crusted Bandages", + [9333] = "Tarnished Silver Necklace", + [9334] = "Cracked Pottery", + [9335] = "Broken Obsidian Club", + [9336] = "Gold-capped Troll Tusk", + [9355] = "Hoop Earring", + [9356] = "A Wooden Leg", + [9357] = "A Parrot Skeleton", + [9358] = "A Head Rag", + [9359] = "Wirt\'s Third Leg", + [9360] = "Cuergo\'s Gold", + [9361] = "Cuergo\'s Gold with Worm", + [9362] = "Brilliant Gold Ring", + [9363] = "Sparklematic-Wrapped Box", + [9364] = "Heavy Leaden Collection Phial", + [9365] = "High Potency Radioactive Fallout", + [9366] = "Golden Scale Gauntlets", + [9367] = "Plans: Golden Scale Gauntlets", + [9368] = "Jer\'kai\'s Signet Ring", + [9369] = "Iridescent Sprite Darter Wing", + [9370] = "Gordunni Scroll", + [9371] = "Gordunni Orb", + [9372] = "Sul\'thraze the Lasher", + [9375] = "Expert Goldminer\'s Helmet", + [9376] = "Jang\'thraze", + [9377] = "Sang\'thraze", + [9378] = "Shovelphlange\'s Mining Axe", + [9379] = "Sang\'thraze the Deflector", + [9380] = "Jang\'thraze the Protector", + [9381] = "Earthen Rod", + [9382] = "Tromping Miner\'s Boots", + [9383] = "Obsidian Cleaver", + [9384] = "Stonevault Shiv", + [9385] = "Archaic Defender", + [9386] = "Excavator\'s Brand", + [9387] = "Revelosh\'s Boots", + [9388] = "Revelosh\'s Armguards", + [9389] = "Revelosh\'s Spaulders", + [9390] = "Revelosh\'s Gloves", + [9391] = "The Shoveler", + [9392] = "Annealed Blade", + [9393] = "Beacon of Hope", + [9394] = "Horned Viking Helmet", + [9395] = "Gloves of Old", + [9396] = "Legguards of the Vault", + [9397] = "Energy Cloak", + [9398] = "Worn Running Boots", + [9399] = "Precision Arrow", + [9400] = "Baelog\'s Shortbow", + [9401] = "Nordic Longshank", + [9402] = "Earthborn Kilt", + [9403] = "Battered Viking Shield", + [9404] = "Olaf\'s All Purpose Shield", + [9405] = "Girdle of Golem Strength", + [9406] = "Spirewind Fetter", + [9407] = "Stoneweaver Leggings", + [9408] = "Ironshod Bludgeon", + [9409] = "Ironaya\'s Bracers", + [9410] = "Cragfists", + [9411] = "Rockshard Pauldrons", + [9412] = "Galgann\'s Fireblaster", + [9413] = "The Rockpounder", + [9414] = "Oilskin Leggings", + [9415] = "Grimlok\'s Tribal Vestments", + [9416] = "Grimlok\'s Charge", + [9417] = "Archaedic Shard", + [9418] = "Stoneslayer", + [9419] = "Galgann\'s Firehammer", + [9420] = "Adventurer\'s Pith Helmet", + [9421] = "Major Healthstone", + [9422] = "Shadowforge Bushmaster", + [9423] = "The Jackhammer", + [9424] = "Ginn-su Sword", + [9425] = "Pendulum of Doom", + [9426] = "Monolithic Bow", + [9427] = "Stonevault Bonebreaker", + [9428] = "Unearthed Bands", + [9429] = "Miner\'s Hat of the Deep", + [9430] = "Spaulders of a Lost Age", + [9431] = "Papal Fez", + [9432] = "Skullplate Bracers", + [9433] = "Forgotten Wraps", + [9434] = "Elemental Raiment", + [9435] = "Reticulated Bone Gauntlets", + [9436] = "Faranell\'s Parcel", + [9437] = "Untested Basilisk Sample", + [9438] = "Acceptable Scorpid Sample", + [9439] = "Untested Hyena Sample", + [9440] = "Acceptable Basilisk Sample", + [9441] = "Acceptable Hyena Sample", + [9442] = "Untested Scorpid Sample", + [9443] = "Used Monster Sample", + [9444] = "Techbot CPU Shell", + [9445] = "Grubbis Paws", + [9446] = "Electrocutioner Leg", + [9447] = "Electrocutioner Lagnut", + [9448] = "Spidertank Oilrag", + [9449] = "Manual Crowd Pummeler", + [9450] = "Gnomebot Operating Boots", + [9451] = "Bubbling Water", + [9452] = "Hydrocane", + [9453] = "Toxic Revenger", + [9454] = "Acidic Walkers", + [9455] = "Emissary Cuffs", + [9456] = "Glass Shooter", + [9457] = "Royal Diplomatic Scepter", + [9458] = "Thermaplugg\'s Central Core", + [9459] = "Thermaplugg\'s Left Arm", + [9460] = "Grimtotem Horn", + [9461] = "Charged Gear", + [9462] = "Crate of Grimtotem Horns", + [9463] = "Gordunni Cobalt", + [9464] = "Deprecated Orwin\'s Shovel", + [9465] = "Digmaster 5000", + [9466] = "Orwin\'s Shovel", + [9467] = "Gahz\'rilla Fang", + [9468] = "Sharpbeak\'s Feather", + [9469] = "Gahz\'rilla Scale Armor", + [9470] = "Bad Mojo Mask", + [9471] = "Nekrum\'s Medallion", + [9472] = "Hexx\'s Key", + [9473] = "Jinxed Hoodoo Skin", + [9474] = "Jinxed Hoodoo Kilt", + [9475] = "Diabolic Skiver", + [9476] = "Big Bad Pauldrons", + [9477] = "The Chief\'s Enforcer", + [9478] = "Ripsaw", + [9479] = "Embrace of the Lycan", + [9480] = "Eyegouger", + [9481] = "The Minotaur", + [9482] = "Witch Doctor\'s Cane", + [9483] = "Flaming Incinerator", + [9484] = "Spellshock Leggings", + [9485] = "Vibroblade", + [9486] = "Supercharger Battle Axe", + [9487] = "Hi-tech Supergun", + [9488] = "Oscillating Power Hammer", + [9489] = "Gyromatic Icemaker", + [9490] = "Gizmotron Megachopper", + [9491] = "Hotshot Pilot\'s Gloves", + [9492] = "Electromagnetic Gigaflux Reactivator", + [9507] = "A Carefully-packed Crate", + [9508] = "Mechbuilder\'s Overalls", + [9509] = "Petrolspill Leggings", + [9510] = "Caverndeep Trudgers", + [9511] = "Bloodletter Scalpel", + [9512] = "Blackmetal Cape", + [9513] = "Ley Staff", + [9514] = "Arcane Staff", + [9515] = "Nether-lace Tunic", + [9516] = "Astral Knot Blouse", + [9517] = "Celestial Stave", + [9518] = "Mud\'s Crushers", + [9519] = "Durtfeet Stompers", + [9520] = "Silent Hunter", + [9521] = "Skullsplitter", + [9522] = "Energized Stone Circle", + [9523] = "Troll Temper", + [9527] = "Spellshifter Rod", + [9528] = "Edana\'s Dark Heart", + [9529] = "Internal Warrior Equipment Kit L25", + [9530] = "Horn of Hatetalon", + [9531] = "Gemshale Pauldrons", + [9532] = "Internal Warrior Equipment Kit L30", + [9533] = "Masons Fraternity Ring", + [9534] = "Engineer\'s Guild Headpiece", + [9535] = "Fire-welded Bracers", + [9536] = "Fairywing Mantle", + [9537] = "Neatly Wrapped Box", + [9538] = "Talvash\'s Gold Ring", + [9539] = "Box of Rations", + [9540] = "Box of Spells", + [9541] = "Box of Goodies", + [9542] = "Simple Letter", + [9543] = "Simple Rune", + [9544] = "Simple Memorandum", + [9545] = "Simple Sigil", + [9546] = "Simple Scroll", + [9547] = "Simple Note", + [9548] = "Hallowed Letter", + [9550] = "Encrypted Rune", + [9551] = "Encrypted Sigil", + [9552] = "Rune-Inscribed Note", + [9553] = "Etched Parchment", + [9554] = "Encrypted Tablet", + [9555] = "Encrypted Letter", + [9556] = "Hallowed Rune", + [9557] = "Hallowed Sigil", + [9558] = "Encrypted Memorandum", + [9559] = "Encrypted Scroll", + [9560] = "Encrypted Parchment", + [9561] = "Hallowed Tablet", + [9562] = "Rune-Inscribed Tablet", + [9563] = "Consecrated Rune", + [9564] = "Etched Tablet", + [9565] = "Etched Note", + [9566] = "Etched Rune", + [9567] = "Etched Sigil", + [9568] = "Rune-Inscribed Parchment", + [9569] = "Hallowed Scroll", + [9570] = "Consecrated Letter", + [9571] = "Glyphic Letter", + [9572] = "Glyphic Rune", + [9573] = "Glyphic Memorandum", + [9574] = "Glyphic Scroll", + [9575] = "Glyphic Tablet", + [9576] = "Tainted Letter", + [9577] = "Tainted Memorandum", + [9578] = "Tainted Scroll", + [9579] = "Tainted Parchment", + [9580] = "Verdant Sigil", + [9581] = "Verdant Note", + [9587] = "Thawpelt Sack", + [9588] = "Nogg\'s Gold Ring", + [9589] = "Encrusted Minerals", + [9590] = "Splintered Log", + [9591] = "Resilient Sinew", + [9592] = "Metallic Fragments", + [9593] = "Treant Muisek", + [9594] = "Wildkin Muisek", + [9595] = "Hippogryph Muisek", + [9596] = "Faerie Dragon Muisek", + [9597] = "Mountain Giant Muisek", + [9598] = "Sleeping Robes", + [9599] = "Barkmail Leggings", + [9600] = "Lace Pants", + [9601] = "Cushioned Boots", + [9602] = "Brushwood Blade", + [9603] = "Gritroot Staff", + [9604] = "Mechanic\'s Pipehammer", + [9605] = "Repairman\'s Cape", + [9606] = "Treant Muisek Vessel", + [9607] = "Bastion of Stormwind", + [9608] = "Shoni\'s Disarming Tool", + [9609] = "Shilly Mitts", + [9618] = "Wildkin Muisek Vessel", + [9619] = "Hippogryph Muisek Vessel", + [9620] = "Faerie Dragon Muisek Vessel", + [9621] = "Mountain Giant Muisek Vessel", + [9622] = "Reedknot Ring", + [9623] = "Civinad Robes", + [9624] = "Triprunner Dungarees", + [9625] = "Dual Reinforced Leggings", + [9626] = "Dwarven Charge", + [9627] = "Explorer\'s League Lodestar", + [9628] = "Neeru\'s Herb Pouch", + [9629] = "A Shrunken Head", + [9630] = "Pratt\'s Handcrafted Boots", + [9631] = "Pratt\'s Handcrafted Gloves", + [9632] = "Jangdor\'s Handcrafted Gloves", + [9633] = "Jangdor\'s Handcrafted Boots", + [9634] = "Skilled Handling Gloves", + [9635] = "Master Apothecary Cape", + [9636] = "Swashbuckler Sash", + [9637] = "Shinkicker Boots", + [9638] = "Chelonian Cuffs", + [9639] = "The Hand of Antu\'sul", + [9640] = "Vice Grips", + [9641] = "Lifeblood Amulet", + [9642] = "Band of the Great Tortoise", + [9643] = "Optomatic Deflector", + [9644] = "Thermotastic Egg Timer", + [9645] = "Gnomish Inventor Boots", + [9646] = "Gnomish Water Sinking Device", + [9647] = "Failed Flying Experiment", + [9648] = "Chainlink Towel", + [9649] = "Royal Highmark Vestments", + [9650] = "Honorguard Chestpiece", + [9651] = "Gryphon Rider\'s Stormhammer", + [9652] = "Gryphon Rider\'s Leggings", + [9653] = "Speedy Racer Goggles", + [9654] = "Cairnstone Sliver", + [9655] = "Seedtime Hoop", + [9656] = "Granite Grips", + [9657] = "Vinehedge Cinch", + [9658] = "Boots of the Maharishi", + [9659] = "Monster - Mace, Tauren Spiked", + [9660] = "Stargazer Cloak", + [9661] = "Earthclasp Barrier", + [9662] = "Rushridge Boots", + [9663] = "Dawnrider\'s Chestpiece", + [9664] = "Sentinel\'s Guard", + [9665] = "Wingcrest Gloves", + [9666] = "Stronghorn Girdle", + [9678] = "Tok\'kar\'s Murloc Basher", + [9679] = "Tok\'kar\'s Murloc Chopper", + [9680] = "Tok\'kar\'s Murloc Shanker", + [9681] = "Grilled King Crawler Legs", + [9682] = "Leather Chef\'s Belt", + [9683] = "Strength of the Treant", + [9684] = "Force of the Hippogryph", + [9685] = "Will of the Mountain Giant", + [9686] = "Spirit of the Faerie Dragon", + [9687] = "Grappler\'s Belt", + [9698] = "Gloves of Insight", + [9699] = "Garrison Cloak", + [9700] = "Monster - Item, Sparkler Blue", + [9701] = "Monster - Item, Sparkler Red", + [9702] = "Monster - Item, Sparkler White", + [9703] = "Scorched Cape", + [9704] = "Rustler Gloves", + [9705] = "Tharg\'s Shoelace", + [9706] = "Tharg\'s Disk", + [9718] = "Reforged Blade of Heroes", + [9719] = "Broken Blade of Heroes", + [9738] = "Gem of Cobrahn", + [9739] = "Gem of Anacondra", + [9740] = "Gem of Pythas", + [9741] = "Gem of Serpentis", + [9742] = "Simple Cord", + [9743] = "Simple Shoes", + [9744] = "Simple Bands", + [9745] = "Simple Cape", + [9746] = "Simple Gloves", + [9747] = "Simple Britches", + [9748] = "Simple Robe", + [9749] = "Simple Blouse", + [9750] = "Gypsy Sash", + [9751] = "Gypsy Sandals", + [9752] = "Gypsy Bands", + [9753] = "Gypsy Buckler", + [9754] = "Gypsy Cloak", + [9755] = "Gypsy Gloves", + [9756] = "Gypsy Trousers", + [9757] = "Gypsy Tunic", + [9758] = "Cadet Belt", + [9759] = "Cadet Boots", + [9760] = "Cadet Bracers", + [9761] = "Cadet Cloak", + [9762] = "Cadet Gauntlets", + [9763] = "Cadet Leggings", + [9764] = "Cadet Shield", + [9765] = "Cadet Vest", + [9766] = "Greenweave Sash", + [9767] = "Greenweave Sandals", + [9768] = "Greenweave Bracers", + [9769] = "Greenweave Branch", + [9770] = "Greenweave Cloak", + [9771] = "Greenweave Gloves", + [9772] = "Greenweave Leggings", + [9773] = "Greenweave Robe", + [9774] = "Greenweave Vest", + [9775] = "Bandit Cinch", + [9776] = "Bandit Boots", + [9777] = "Bandit Bracers", + [9778] = "Bandit Buckler", + [9779] = "Bandit Cloak", + [9780] = "Bandit Gloves", + [9781] = "Bandit Pants", + [9782] = "Bandit Jerkin", + [9783] = "Raider\'s Chestpiece", + [9784] = "Raider\'s Boots", + [9785] = "Raider\'s Bracers", + [9786] = "Raider\'s Cloak", + [9787] = "Raider\'s Gauntlets", + [9788] = "Raider\'s Belt", + [9789] = "Raider\'s Legguards", + [9790] = "Raider\'s Shield", + [9791] = "Ivycloth Tunic", + [9792] = "Ivycloth Boots", + [9793] = "Ivycloth Bracelets", + [9794] = "Ivycloth Cloak", + [9795] = "Ivycloth Gloves", + [9796] = "Ivycloth Mantle", + [9797] = "Ivycloth Pants", + [9798] = "Ivycloth Robe", + [9799] = "Ivycloth Sash", + [9800] = "Ivy Orb", + [9801] = "Superior Belt", + [9802] = "Superior Boots", + [9803] = "Superior Bracers", + [9804] = "Superior Buckler", + [9805] = "Superior Cloak", + [9806] = "Superior Gloves", + [9807] = "Superior Shoulders", + [9808] = "Superior Leggings", + [9809] = "Superior Tunic", + [9810] = "Fortified Boots", + [9811] = "Fortified Bracers", + [9812] = "Fortified Cloak", + [9813] = "Fortified Gauntlets", + [9814] = "Fortified Belt", + [9815] = "Fortified Leggings", + [9816] = "Fortified Shield", + [9817] = "Fortified Spaulders", + [9818] = "Fortified Chain", + [9819] = "Durable Tunic", + [9820] = "Durable Boots", + [9821] = "Durable Bracers", + [9822] = "Durable Cape", + [9823] = "Durable Gloves", + [9824] = "Durable Shoulders", + [9825] = "Durable Pants", + [9826] = "Durable Robe", + [9827] = "Scaled Leather Belt", + [9828] = "Scaled Leather Boots", + [9829] = "Scaled Leather Bracers", + [9830] = "Scaled Shield", + [9831] = "Scaled Cloak", + [9832] = "Scaled Leather Gloves", + [9833] = "Scaled Leather Leggings", + [9834] = "Scaled Leather Shoulders", + [9835] = "Scaled Leather Tunic", + [9836] = "Banded Armor", + [9837] = "Banded Bracers", + [9838] = "Banded Cloak", + [9839] = "Banded Gauntlets", + [9840] = "Banded Girdle", + [9841] = "Banded Leggings", + [9842] = "Banded Pauldrons", + [9843] = "Banded Shield", + [9844] = "Conjurer\'s Vest", + [9845] = "Conjurer\'s Shoes", + [9846] = "Conjurer\'s Bracers", + [9847] = "Conjurer\'s Cloak", + [9848] = "Conjurer\'s Gloves", + [9849] = "Conjurer\'s Hood", + [9850] = "Conjurer\'s Mantle", + [9851] = "Conjurer\'s Breeches", + [9852] = "Conjurer\'s Robe", + [9853] = "Conjurer\'s Cinch", + [9854] = "Archer\'s Jerkin", + [9855] = "Archer\'s Belt", + [9856] = "Archer\'s Boots", + [9857] = "Archer\'s Bracers", + [9858] = "Archer\'s Buckler", + [9859] = "Archer\'s Cap", + [9860] = "Archer\'s Cloak", + [9861] = "Archer\'s Gloves", + [9862] = "Archer\'s Trousers", + [9863] = "Archer\'s Shoulderpads", + [9864] = "Renegade Boots", + [9865] = "Renegade Bracers", + [9866] = "Renegade Chestguard", + [9867] = "Renegade Cloak", + [9868] = "Renegade Gauntlets", + [9869] = "Renegade Belt", + [9870] = "Renegade Circlet", + [9871] = "Renegade Leggings", + [9872] = "Renegade Pauldrons", + [9873] = "Renegade Shield", + [9874] = "Sorcerer Drape", + [9875] = "Sorcerer Sash", + [9876] = "Sorcerer Slippers", + [9877] = "Sorcerer Cloak", + [9878] = "Sorcerer Hat", + [9879] = "Sorcerer Bracelets", + [9880] = "Sorcerer Gloves", + [9881] = "Sorcerer Mantle", + [9882] = "Sorcerer Sphere", + [9883] = "Sorcerer Pants", + [9884] = "Sorcerer Robe", + [9885] = "Huntsman\'s Boots", + [9886] = "Huntsman\'s Bands", + [9887] = "Huntsman\'s Armor", + [9888] = "Deprecated Elven Protector", + [9889] = "Huntsman\'s Cap", + [9890] = "Huntsman\'s Cape", + [9891] = "Huntsman\'s Belt", + [9892] = "Huntsman\'s Gloves", + [9893] = "Huntsman\'s Leggings", + [9894] = "Huntsman\'s Shoulders", + [9895] = "Jazeraint Boots", + [9896] = "Jazeraint Bracers", + [9897] = "Jazeraint Chestguard", + [9898] = "Jazeraint Cloak", + [9899] = "Jazeraint Shield", + [9900] = "Jazeraint Gauntlets", + [9901] = "Jazeraint Belt", + [9902] = "Jazeraint Helm", + [9903] = "Jazeraint Leggings", + [9904] = "Jazeraint Pauldrons", + [9905] = "Royal Blouse", + [9906] = "Royal Sash", + [9907] = "Royal Boots", + [9908] = "Royal Cape", + [9909] = "Royal Bands", + [9910] = "Royal Gloves", + [9911] = "Royal Trousers", + [9912] = "Royal Amice", + [9913] = "Royal Gown", + [9914] = "Royal Scepter", + [9915] = "Royal Headband", + [9916] = "Tracker\'s Belt", + [9917] = "Tracker\'s Boots", + [9918] = "Brigade Defender", + [9919] = "Tracker\'s Cloak", + [9920] = "Tracker\'s Gloves", + [9921] = "Tracker\'s Headband", + [9922] = "Tracker\'s Leggings", + [9923] = "Tracker\'s Shoulderpads", + [9924] = "Tracker\'s Tunic", + [9925] = "Tracker\'s Wristguards", + [9926] = "Brigade Boots", + [9927] = "Brigade Bracers", + [9928] = "Brigade Breastplate", + [9929] = "Brigade Cloak", + [9930] = "Brigade Gauntlets", + [9931] = "Brigade Girdle", + [9932] = "Brigade Circlet", + [9933] = "Brigade Leggings", + [9934] = "Brigade Pauldrons", + [9935] = "Embossed Plate Shield", + [9936] = "Abjurer\'s Boots", + [9937] = "Abjurer\'s Bands", + [9938] = "Abjurer\'s Cloak", + [9939] = "Abjurer\'s Gloves", + [9940] = "Abjurer\'s Hood", + [9941] = "Abjurer\'s Mantle", + [9942] = "Abjurer\'s Pants", + [9943] = "Abjurer\'s Robe", + [9944] = "Abjurer\'s Crystal", + [9945] = "Abjurer\'s Sash", + [9946] = "Abjurer\'s Tunic", + [9947] = "Chieftain\'s Belt", + [9948] = "Chieftain\'s Boots", + [9949] = "Chieftain\'s Bracers", + [9950] = "Chieftain\'s Breastplate", + [9951] = "Chieftain\'s Cloak", + [9952] = "Chieftain\'s Gloves", + [9953] = "Chieftain\'s Headdress", + [9954] = "Chieftain\'s Leggings", + [9955] = "Chieftain\'s Shoulders", + [9956] = "Warmonger\'s Bracers", + [9957] = "Warmonger\'s Chestpiece", + [9958] = "Warmonger\'s Buckler", + [9959] = "Warmonger\'s Cloak", + [9960] = "Warmonger\'s Gauntlets", + [9961] = "Warmonger\'s Belt", + [9962] = "Warmonger\'s Greaves", + [9963] = "Warmonger\'s Circlet", + [9964] = "Warmonger\'s Leggings", + [9965] = "Warmonger\'s Pauldrons", + [9966] = "Embossed Plate Armor", + [9967] = "Embossed Plate Gauntlets", + [9968] = "Embossed Plate Girdle", + [9969] = "Embossed Plate Helmet", + [9970] = "Embossed Plate Leggings", + [9971] = "Embossed Plate Pauldrons", + [9972] = "Embossed Plate Bracers", + [9973] = "Embossed Plate Boots", + [9974] = "Overlord\'s Shield", + [9978] = "Gahz\'ridian Detector", + [9998] = "Black Mageweave Vest", + [9999] = "Black Mageweave Leggings", + [10000] = "Margol\'s Horn", + [10001] = "Black Mageweave Robe", + [10002] = "Shadoweave Pants", + [10003] = "Black Mageweave Gloves", + [10004] = "Shadoweave Robe", + [10005] = "Margol\'s Gigantic Horn", + [10006] = "Red Mageweave Vest", + [10007] = "Red Mageweave Vest", + [10008] = "White Bandit Mask", + [10009] = "Red Mageweave Pants", + [10010] = "Stormcloth Pants", + [10011] = "Stormcloth Gloves", + [10018] = "Red Mageweave Gloves", + [10019] = "Dreamweave Gloves", + [10020] = "Stormcloth Vest", + [10021] = "Dreamweave Vest", + [10022] = "Proof of Deed", + [10023] = "Shadoweave Gloves", + [10024] = "Black Mageweave Headband", + [10025] = "Shadoweave Mask", + [10026] = "Black Mageweave Boots", + [10027] = "Black Mageweave Shoulders", + [10028] = "Shadoweave Shoulders", + [10029] = "Red Mageweave Shoulders", + [10030] = "Admiral\'s Hat", + [10031] = "Shadoweave Boots", + [10032] = "Stormcloth Headband", + [10033] = "Red Mageweave Headband", + [10034] = "Tuxedo Shirt", + [10035] = "Tuxedo Pants", + [10036] = "Tuxedo Jacket", + [10037] = "Shadoweave Mask", + [10038] = "Stormcloth Shoulders", + [10039] = "Stormcloth Boots", + [10040] = "White Wedding Dress", + [10041] = "Dreamweave Circlet", + [10042] = "Cindercloth Robe", + [10043] = "Pious Legwraps", + [10044] = "Cindercloth Boots", + [10045] = "Simple Linen Pants", + [10046] = "Simple Linen Boots", + [10047] = "Simple Kilt", + [10048] = "Colorful Kilt", + [10049] = "Diabolist\'s Blade", + [10050] = "Mageweave Bag", + [10051] = "Red Mageweave Bag", + [10052] = "Orange Martial Shirt", + [10053] = "Simple Black Dress", + [10054] = "Lavender Mageweave Shirt", + [10055] = "Pink Mageweave Shirt", + [10056] = "Orange Mageweave Shirt", + [10057] = "Duskwoven Tunic", + [10058] = "Duskwoven Sandals", + [10059] = "Duskwoven Bracers", + [10060] = "Duskwoven Cape", + [10061] = "Duskwoven Turban", + [10062] = "Duskwoven Gloves", + [10063] = "Duskwoven Amice", + [10064] = "Duskwoven Pants", + [10065] = "Duskwoven Robe", + [10066] = "Duskwoven Sash", + [10067] = "Righteous Waistguard", + [10068] = "Righteous Boots", + [10069] = "Righteous Bracers", + [10070] = "Righteous Armor", + [10071] = "Righteous Cloak", + [10072] = "Righteous Gloves", + [10073] = "Righteous Helmet", + [10074] = "Righteous Leggings", + [10075] = "Righteous Spaulders", + [10076] = "Lord\'s Armguards", + [10077] = "Lord\'s Breastplate", + [10078] = "Lord\'s Crest", + [10079] = "Lord\'s Cape", + [10080] = "Lord\'s Gauntlets", + [10081] = "Lord\'s Girdle", + [10082] = "Lord\'s Boots", + [10083] = "Lord\'s Crown", + [10084] = "Lord\'s Legguards", + [10085] = "Lord\'s Pauldrons", + [10086] = "Gothic Plate Armor", + [10087] = "Gothic Plate Gauntlets", + [10088] = "Gothic Plate Girdle", + [10089] = "Gothic Sabatons", + [10090] = "Gothic Plate Helmet", + [10091] = "Gothic Plate Leggings", + [10092] = "Gothic Plate Spaulders", + [10093] = "Revenant Deflector", + [10094] = "Gothic Plate Vambraces", + [10095] = "Councillor\'s Boots", + [10096] = "Councillor\'s Cuffs", + [10097] = "Councillor\'s Circlet", + [10098] = "Councillor\'s Cloak", + [10099] = "Councillor\'s Gloves", + [10100] = "Councillor\'s Shoulders", + [10101] = "Councillor\'s Pants", + [10102] = "Councillor\'s Robes", + [10103] = "Councillor\'s Sash", + [10104] = "Councillor\'s Tunic", + [10105] = "Wanderer\'s Armor", + [10106] = "Wanderer\'s Boots", + [10107] = "Wanderer\'s Bracers", + [10108] = "Wanderer\'s Cloak", + [10109] = "Wanderer\'s Belt", + [10110] = "Wanderer\'s Gloves", + [10111] = "Wanderer\'s Hat", + [10112] = "Wanderer\'s Leggings", + [10113] = "Wanderer\'s Shoulders", + [10118] = "Ornate Breastplate", + [10119] = "Ornate Greaves", + [10120] = "Ornate Cloak", + [10121] = "Ornate Gauntlets", + [10122] = "Ornate Girdle", + [10123] = "Ornate Circlet", + [10124] = "Ornate Legguards", + [10125] = "Ornate Pauldrons", + [10126] = "Ornate Bracers", + [10127] = "Revenant Bracers", + [10128] = "Revenant Chestplate", + [10129] = "Revenant Gauntlets", + [10130] = "Revenant Girdle", + [10131] = "Revenant Boots", + [10132] = "Revenant Helmet", + [10133] = "Revenant Leggings", + [10134] = "Revenant Shoulders", + [10135] = "High Councillor\'s Tunic", + [10136] = "High Councillor\'s Bracers", + [10137] = "High Councillor\'s Boots", + [10138] = "High Councillor\'s Cloak", + [10139] = "High Councillor\'s Circlet", + [10140] = "High Councillor\'s Gloves", + [10141] = "High Councillor\'s Pants", + [10142] = "High Councillor\'s Mantle", + [10143] = "High Councillor\'s Robe", + [10144] = "High Councillor\'s Sash", + [10145] = "Mighty Girdle", + [10146] = "Mighty Boots", + [10147] = "Mighty Armsplints", + [10148] = "Mighty Cloak", + [10149] = "Mighty Gauntlets", + [10150] = "Mighty Helmet", + [10151] = "Mighty Tunic", + [10152] = "Mighty Leggings", + [10153] = "Mighty Spaulders", + [10154] = "Mercurial Girdle", + [10155] = "Mercurial Greaves", + [10156] = "Mercurial Bracers", + [10157] = "Mercurial Breastplate", + [10158] = "Mercurial Guard", + [10159] = "Mercurial Cloak", + [10160] = "Mercurial Circlet", + [10161] = "Mercurial Gauntlets", + [10162] = "Mercurial Legguards", + [10163] = "Mercurial Pauldrons", + [10164] = "Templar Chestplate", + [10165] = "Templar Gauntlets", + [10166] = "Templar Girdle", + [10167] = "Templar Boots", + [10168] = "Templar Crown", + [10169] = "Templar Legplates", + [10170] = "Templar Pauldrons", + [10171] = "Templar Bracers", + [10172] = "Mystical Mantle", + [10173] = "Mystical Bracers", + [10174] = "Mystical Cape", + [10175] = "Mystical Headwrap", + [10176] = "Mystical Gloves", + [10177] = "Mystical Leggings", + [10178] = "Mystical Robe", + [10179] = "Mystical Boots", + [10180] = "Mystical Belt", + [10181] = "Mystical Armor", + [10182] = "Swashbuckler\'s Breastplate", + [10183] = "Swashbuckler\'s Boots", + [10184] = "Swashbuckler\'s Bracers", + [10185] = "Swashbuckler\'s Cape", + [10186] = "Swashbuckler\'s Gloves", + [10187] = "Swashbuckler\'s Eyepatch", + [10188] = "Swashbuckler\'s Leggings", + [10189] = "Swashbuckler\'s Shoulderpads", + [10190] = "Swashbuckler\'s Belt", + [10191] = "Crusader\'s Armguards", + [10192] = "Crusader\'s Boots", + [10193] = "Crusader\'s Armor", + [10194] = "Crusader\'s Cloak", + [10195] = "Crusader\'s Shield", + [10196] = "Crusader\'s Gauntlets", + [10197] = "Crusader\'s Belt", + [10198] = "Crusader\'s Helm", + [10199] = "Crusader\'s Leggings", + [10200] = "Crusader\'s Pauldrons", + [10201] = "Overlord\'s Greaves", + [10202] = "Overlord\'s Vambraces", + [10203] = "Overlord\'s Chestplate", + [10204] = "Heavy Lamellar Shield", + [10205] = "Overlord\'s Gauntlets", + [10206] = "Overlord\'s Girdle", + [10207] = "Overlord\'s Crown", + [10208] = "Overlord\'s Legplates", + [10209] = "Overlord\'s Spaulders", + [10210] = "Elegant Mantle", + [10211] = "Elegant Boots", + [10212] = "Elegant Cloak", + [10213] = "Elegant Bracers", + [10214] = "Elegant Gloves", + [10215] = "Elegant Robes", + [10216] = "Elegant Belt", + [10217] = "Elegant Leggings", + [10218] = "Elegant Tunic", + [10219] = "Elegant Circlet", + [10220] = "Nightshade Tunic", + [10221] = "Nightshade Girdle", + [10222] = "Nightshade Boots", + [10223] = "Nightshade Armguards", + [10224] = "Nightshade Cloak", + [10225] = "Nightshade Gloves", + [10226] = "Nightshade Helmet", + [10227] = "Nightshade Leggings", + [10228] = "Nightshade Spaulders", + [10229] = "Engraved Bracers", + [10230] = "Engraved Breastplate", + [10231] = "Engraved Cape", + [10232] = "Engraved Gauntlets", + [10233] = "Engraved Girdle", + [10234] = "Engraved Boots", + [10235] = "Engraved Helm", + [10236] = "Engraved Leggings", + [10237] = "Engraved Pauldrons", + [10238] = "Heavy Lamellar Boots", + [10239] = "Heavy Lamellar Vambraces", + [10240] = "Heavy Lamellar Chestpiece", + [10241] = "Heavy Lamellar Helm", + [10242] = "Heavy Lamellar Gauntlets", + [10243] = "Heavy Lamellar Girdle", + [10244] = "Heavy Lamellar Leggings", + [10245] = "Heavy Lamellar Pauldrons", + [10246] = "Master\'s Vest", + [10247] = "Master\'s Boots", + [10248] = "Master\'s Bracers", + [10249] = "Master\'s Cloak", + [10250] = "Master\'s Hat", + [10251] = "Master\'s Gloves", + [10252] = "Master\'s Leggings", + [10253] = "Master\'s Mantle", + [10254] = "Master\'s Robe", + [10255] = "Master\'s Belt", + [10256] = "Adventurer\'s Bracers", + [10257] = "Adventurer\'s Boots", + [10258] = "Adventurer\'s Cape", + [10259] = "Adventurer\'s Belt", + [10260] = "Adventurer\'s Gloves", + [10261] = "Adventurer\'s Bandana", + [10262] = "Adventurer\'s Legguards", + [10263] = "Adventurer\'s Shoulders", + [10264] = "Adventurer\'s Tunic", + [10265] = "Masterwork Bracers", + [10266] = "Masterwork Breastplate", + [10267] = "Masterwork Cape", + [10268] = "Masterwork Gauntlets", + [10269] = "Masterwork Girdle", + [10270] = "Masterwork Boots", + [10271] = "Masterwork Shield", + [10272] = "Masterwork Circlet", + [10273] = "Masterwork Legplates", + [10274] = "Masterwork Pauldrons", + [10275] = "Emerald Breastplate", + [10276] = "Emerald Sabatons", + [10277] = "Emerald Gauntlets", + [10278] = "Emerald Girdle", + [10279] = "Emerald Helm", + [10280] = "Emerald Legplates", + [10281] = "Emerald Pauldrons", + [10282] = "Emerald Vambraces", + [10283] = "Wolf Heart Samples", + [10285] = "Shadow Silk", + [10286] = "Heart of the Wild", + [10287] = "Greenweave Mantle", + [10288] = "Sage\'s Circlet", + [10289] = "Durable Hat", + [10290] = "Pink Dye", + [10298] = "Gnomeregan Band", + [10299] = "Gnomeregan Amulet", + [10300] = "Pattern: Red Mageweave Vest", + [10301] = "Pattern: White Bandit Mask", + [10302] = "Pattern: Red Mageweave Pants", + [10303] = "Pattern: Stormcloth Pants", + [10304] = "Pattern: Stormcloth Gloves", + [10305] = "Scroll of Protection IV", + [10306] = "Scroll of Spirit IV", + [10307] = "Scroll of Stamina IV", + [10308] = "Scroll of Intellect IV", + [10309] = "Scroll of Agility IV", + [10310] = "Scroll of Strength IV", + [10311] = "Pattern: Orange Martial Shirt", + [10312] = "Pattern: Red Mageweave Gloves", + [10313] = "Pattern: Stormcloth Vest", + [10314] = "Pattern: Lavender Mageweave Shirt", + [10315] = "Pattern: Red Mageweave Shoulders", + [10316] = "Pattern: Colorful Kilt", + [10317] = "Pattern: Pink Mageweave Shirt", + [10318] = "Pattern: Admiral\'s Hat", + [10319] = "Pattern: Stormcloth Headband", + [10320] = "Pattern: Red Mageweave Headband", + [10321] = "Pattern: Tuxedo Shirt", + [10322] = "Pattern: Stormcloth Shoulders", + [10323] = "Pattern: Tuxedo Pants", + [10324] = "Pattern: Stormcloth Boots", + [10325] = "Pattern: White Wedding Dress", + [10326] = "Pattern: Tuxedo Jacket", + [10327] = "Horn of Echeyakee", + [10328] = "Scarlet Chestpiece", + [10329] = "Scarlet Belt", + [10330] = "Scarlet Leggings", + [10331] = "Scarlet Gauntlets", + [10332] = "Scarlet Boots", + [10333] = "Scarlet Wristguards", + [10338] = "Fresh Zhevra Carcass", + [10358] = "Duracin Bracers", + [10359] = "Everlast Boots", + [10360] = "Black Kingsnake", + [10361] = "Brown Snake", + [10362] = "Ornate Shield", + [10363] = "Engraved Wall", + [10364] = "Templar Shield", + [10365] = "Emerald Shield", + [10366] = "Demon Guard", + [10367] = "Hyperion Shield", + [10368] = "Imbued Plate Armor", + [10369] = "Imbued Plate Gauntlets", + [10370] = "Imbued Plate Girdle", + [10371] = "Imbued Plate Greaves", + [10372] = "Imbued Plate Helmet", + [10373] = "Imbued Plate Leggings", + [10374] = "Imbued Plate Pauldrons", + [10375] = "Imbued Plate Vambraces", + [10376] = "Commander\'s Boots", + [10377] = "Commander\'s Vambraces", + [10378] = "Commander\'s Armor", + [10379] = "Commander\'s Helm", + [10380] = "Commander\'s Gauntlets", + [10381] = "Commander\'s Girdle", + [10382] = "Commander\'s Leggings", + [10383] = "Commander\'s Pauldrons", + [10384] = "Hyperion Armor", + [10385] = "Hyperion Greaves", + [10386] = "Hyperion Gauntlets", + [10387] = "Hyperion Girdle", + [10388] = "Hyperion Helm", + [10389] = "Hyperion Legplates", + [10390] = "Hyperion Pauldrons", + [10391] = "Hyperion Vambraces", + [10392] = "Crimson Snake", + [10393] = "Cockroach", + [10394] = "Prairie Dog Whistle", + [10398] = "Mechanical Chicken", + [10399] = "Blackened Defias Armor", + [10400] = "Blackened Defias Leggings", + [10401] = "Blackened Defias Gloves", + [10402] = "Blackened Defias Boots", + [10403] = "Blackened Defias Belt", + [10404] = "Durable Belt", + [10405] = "Bandit Shoulders", + [10406] = "Scaled Leather Headband", + [10407] = "Raider\'s Shoulderpads", + [10408] = "Banded Helm", + [10409] = "Banded Boots", + [10410] = "Leggings of the Fang", + [10411] = "Footpads of the Fang", + [10412] = "Belt of the Fang", + [10413] = "Gloves of the Fang", + [10414] = "Sample Snapjaw Shell", + [10418] = "Glimmering Mithril Insignia", + [10420] = "Skull of the Coldbringer", + [10421] = "Rough Copper Vest", + [10422] = "Silvered Bronze Pants", + [10423] = "Silvered Bronze Leggings", + [10424] = "Plans: Silvered Bronze Leggings", + [10438] = "Felix\'s Box", + [10439] = "Durnan\'s Scalding Mornbrew", + [10440] = "Nori\'s Mug", + [10441] = "Glowing Shard", + [10442] = "Mysterious Artifact", + [10443] = "Singed Letter", + [10444] = "Standard Issue Flare Gun", + [10445] = "Drawing Kit", + [10446] = "Heart of Obsidion", + [10447] = "Head of Lathoric the Black", + [10450] = "Undamaged Hippogryph Feather", + [10454] = "Essence of Eranikus", + [10455] = "Chained Essence of Eranikus", + [10456] = "A Bulging Coin Purse", + [10457] = "Empty Sea Snail Shell", + [10458] = "Prayer to Elune", + [10459] = "Chief Sharptusk Thornmantle\'s Head", + [10460] = "Hakkari Blood", + [10461] = "Shadowy Bracers", + [10462] = "Shadowy Belt", + [10463] = "Pattern: Shadoweave Mask", + [10464] = "Staff of Command", + [10465] = "Egg of Hakkar", + [10466] = "Atal\'ai Stone Circle", + [10467] = "Trader\'s Satchel", + [10478] = "Roland\'s Mana Gem", + [10479] = "Kovic\'s Trading Satchel", + [10498] = "Gyromatic Micro-Adjustor", + [10499] = "Bright-Eye Goggles", + [10500] = "Fire Goggles", + [10501] = "Catseye Ultra Goggles", + [10502] = "Spellpower Goggles Xtreme", + [10503] = "Rose Colored Goggles", + [10504] = "Green Lens", + [10505] = "Solid Blasting Powder", + [10506] = "Deepdive Helmet", + [10507] = "Solid Dynamite", + [10508] = "Mithril Blunderbuss", + [10509] = "Heart of Flame", + [10510] = "Mithril Heavy-bore Rifle", + [10511] = "Golem Oil", + [10512] = "Hi-Impact Mithril Slugs", + [10513] = "Mithril Gyro-Shot", + [10514] = "Mithril Frag Bomb", + [10515] = "Torch of Retribution", + [10518] = "Parachute Cloak", + [10538] = "Tablet of Beth\'Amara", + [10539] = "Tablet of Jin\'yael", + [10540] = "Tablet of Markri", + [10541] = "Tablet of Sael\'hai", + [10542] = "Goblin Mining Helmet", + [10543] = "Goblin Construction Helmet", + [10544] = "Thistlewood Maul", + [10545] = "Gnomish Goggles", + [10546] = "Deadly Scope", + [10547] = "Camping Knife", + [10548] = "Sniper Scope", + [10549] = "Rancher\'s Trousers", + [10550] = "Wooly Mittens", + [10551] = "Thorium Plated Dagger", + [10552] = "Symbol of Ragnaros", + [10553] = "Foreman Vest", + [10554] = "Foreman Pants", + [10555] = "Resist Test Item", + [10556] = "Stone Circle", + [10558] = "Gold Power Core", + [10559] = "Mithril Tube", + [10560] = "Unstable Trigger", + [10561] = "Mithril Casing", + [10562] = "Hi-Explosive Bomb", + [10563] = "Rubbing: Rune of Beth\'Amara", + [10564] = "Rubbing: Rune of Jin\'yael", + [10565] = "Rubbing: Rune of Markri", + [10566] = "Rubbing: Rune of Sael\'hai", + [10567] = "Quillshooter", + [10568] = "Monster - Mace2H, Pacifier", + [10569] = "Hoard of the Black Dragonflight", + [10570] = "Manslayer", + [10571] = "Ebony Boneclub", + [10572] = "Freezing Shard", + [10573] = "Boneslasher", + [10574] = "Corpseshroud", + [10575] = "Black Dragonflight Molt", + [10576] = "Mithril Mechanical Dragonling", + [10577] = "Goblin Mortar", + [10578] = "Thoughtcast Boots", + [10579] = "Explosive Arrow", + [10580] = "Goblin \"Boom\" Box", + [10581] = "Death\'s Head Vestment", + [10582] = "Briar Tredders", + [10583] = "Quillward Harness", + [10584] = "Stormgale Fists", + [10585] = "Goblin Radio", + [10586] = "The Big One", + [10587] = "Goblin Bomb Dispenser", + [10588] = "Goblin Rocket Helmet", + [10589] = "Oathstone of Ysera\'s Dragonflight", + [10590] = "Pocked Black Box", + [10591] = "Monster - Mace, Stormhammer", + [10592] = "Catseye Elixir", + [10593] = "Imperfect Draenethyst Fragment", + [10594] = "[PH] Hakkar\'i Urn", + [10595] = "Kum\'isha\'s Junk", + [10596] = "Deprecated Rose Colored Goggles", + [10597] = "Head of Magus Rimtori", + [10598] = "Hetaera\'s Bloodied Head", + [10599] = "Hetaera\'s Beaten Head", + [10600] = "Hetaera\'s Bruised Head", + [10601] = "Schematic: Bright-Eye Goggles", + [10602] = "Schematic: Deadly Scope", + [10603] = "Schematic: Catseye Ultra Goggles", + [10604] = "Schematic: Mithril Heavy-bore Rifle", + [10605] = "Schematic: Spellpower Goggles Xtreme", + [10606] = "Schematic: Parachute Cloak", + [10607] = "Schematic: Deepdive Helmet", + [10608] = "Schematic: Sniper Scope", + [10609] = "Schematic: Mithril Mechanical Dragonling", + [10610] = "Hetaera\'s Blood", + [10611] = "Monster - Axe, Horde Badass 01", + [10612] = "Monster - Axe, Horde Badass 02 ", + [10613] = "Monster - Sword, Katana", + [10614] = "Monster - Sword, Horde Sword Black", + [10615] = "Monster - Sword, Horde Sword Red", + [10616] = "Monster - Dagger, Curvey Silver", + [10617] = "Monster - Dagger, Curved Bone Bloody", + [10618] = "Monster - Dagger, Tanto Blade", + [10619] = "Monster - Dagger, Badass Red", + [10620] = "Thorium Ore", + [10621] = "Runed Scroll", + [10622] = "Kadrak\'s Flag", + [10623] = "Winter\'s Bite", + [10624] = "Stinging Bow", + [10625] = "Stealthblade", + [10626] = "Ragehammer", + [10627] = "Bludgeon of the Grinning Dog", + [10628] = "Deathblow", + [10629] = "Mistwalker Boots", + [10630] = "Soulcatcher Halo", + [10631] = "Murkwater Gauntlets", + [10632] = "Slimescale Bracers", + [10633] = "Silvershell Leggings", + [10634] = "Mindseye Circle", + [10635] = "Painted Chain Leggings", + [10636] = "Nomadic Gloves", + [10637] = "Brewer\'s Gloves", + [10638] = "Long Draping Cape", + [10639] = "Hyacinth Mushroom", + [10640] = "Webwood Ichor", + [10641] = "Moonpetal Lily", + [10642] = "Iverron\'s Antidote", + [10643] = "Sealed Letter to Ag\'tor", + [10644] = "Recipe: Goblin Rocket Fuel", + [10645] = "Gnomish Death Ray", + [10646] = "Goblin Sapper Charge", + [10647] = "Engineer\'s Ink", + [10648] = "Blank Parchment", + [10649] = "Nightmare Shard", + [10650] = "Plague-Infested Quilboar Mane", + [10651] = "Cracked Arcane Focusing Crystal", + [10652] = "Will of the Mountain Giant", + [10653] = "Trailblazer Boots", + [10654] = "Jutebraid Gloves", + [10655] = "Sedgeweed Britches", + [10656] = "Barkmail Vest", + [10657] = "Talbar Mantle", + [10658] = "Quagmire Galoshes", + [10659] = "Shard of Afrasa", + [10660] = "First Mosh\'aru Tablet", + [10661] = "Second Mosh\'aru Tablet", + [10662] = "Filled Egg of Hakkar", + [10663] = "Essence of Hakkar", + [10664] = "A Note to Magus Rimtori", + [10678] = "Magatha\'s Note", + [10679] = "Andron\'s Note", + [10680] = "Jes\'rimon\'s Note", + [10681] = "Xylem\'s Note", + [10682] = "Belnistrasz\'s Oathstone", + [10683] = "Explorer\'s Knapsack", + [10684] = "Colossal Parachute", + [10685] = "Monster - Mace2H, Kazon\'s Maul", + [10686] = "Aegis of Battle", + [10687] = "Empty Vial Labeled #1", + [10688] = "Empty Vial Labeled #2", + [10689] = "Empty Vial Labeled #3", + [10690] = "Empty Vial Labeled #4", + [10691] = "Filled Vial Labeled #1", + [10692] = "Filled Vial Labeled #2", + [10693] = "Filled Vial Labeled #3", + [10694] = "Filled Vial Labeled #4", + [10695] = "Box of Empty Vials", + [10696] = "Enchanted Azsharite Felbane Sword", + [10697] = "Enchanted Azsharite Felbane Dagger", + [10698] = "Enchanted Azsharite Felbane Staff", + [10699] = "Yeh\'kinya\'s Bramble", + [10700] = "Encarmine Boots", + [10701] = "Boots of Zua\'tec", + [10702] = "Enormous Ogre Boots", + [10703] = "Fiendish Skiv", + [10704] = "Chillnail Splinter", + [10705] = "Firwillow Wristbands", + [10706] = "Nightscale Girdle", + [10707] = "Steelsmith Greaves", + [10708] = "Skullspell Orb", + [10709] = "Pyrestone Orb", + [10710] = "Dragonclaw Ring", + [10711] = "Dragon\'s Blood Necklace", + [10712] = "Cuely\'s Elixir", + [10713] = "Plans: Inlaid Mithril Cylinder", + [10714] = "Crystallized Azsharite", + [10715] = "Kim\'Jael\'s Scope", + [10716] = "Gnomish Shrink Ray", + [10717] = "Kim\'Jael\'s Compass", + [10718] = "Kim\'Jael\'s Wizzlegoober", + [10719] = "Mobile Alarm", + [10720] = "Gnomish Net-o-Matic Projector", + [10721] = "Gnomish Harm Prevention Belt", + [10722] = "Kim\'Jael\'s Stuffed Chicken", + [10723] = "Gnomish Ham Radio", + [10724] = "Gnomish Rocket Boots", + [10725] = "Gnomish Battle Chicken", + [10726] = "Gnomish Mind Control Cap", + [10727] = "Goblin Dragon Gun", + [10728] = "Pattern: Black Swashbuckler\'s Shirt", + [10738] = "Shipment to Galvan", + [10739] = "Ring of Fortitude", + [10740] = "Centurion Legplates", + [10741] = "Lordrec Helmet", + [10742] = "Dragonflight Leggings", + [10743] = "Drakefire Headguard", + [10744] = "Axe of the Ebon Drake", + [10745] = "Kaylari Shoulders", + [10746] = "Runesteel Vambraces", + [10747] = "Teacher\'s Sash", + [10748] = "Wanderlust Boots", + [10749] = "Avenguard Helm", + [10750] = "Lifeforce Dirk", + [10751] = "Gemburst Circlet", + [10752] = "Emerald Encrusted Chest", + [10753] = "Amulet of Grol", + [10754] = "Amulet of Sevine", + [10755] = "Amulet of Allistarj", + [10756] = "Monster - Mace2H, Smite\'s Mighty Hammer", + [10757] = "Ward of the Defiler", + [10758] = "X\'caliboar", + [10759] = "Severed Horn of the Defiler", + [10760] = "Swine Fists", + [10761] = "Coldrage Dagger", + [10762] = "Robes of the Lich", + [10763] = "Icemetal Barbute", + [10764] = "Deathchill Armor", + [10765] = "Bonefingers", + [10766] = "Plaguerot Sprig", + [10767] = "Savage Boar\'s Guard", + [10768] = "Boar Champion\'s Belt", + [10769] = "Glowing Eye of Mordresh", + [10770] = "Mordresh\'s Lifeless Skull", + [10771] = "Deathmage Sash", + [10772] = "Glutton\'s Cleaver", + [10773] = "Hakkari Urn", + [10774] = "Fleshhide Shoulders", + [10775] = "Carapace of Tuten\'kash", + [10776] = "Silky Spider Cape", + [10777] = "Arachnid Gloves", + [10778] = "Necklace of Sanctuary", + [10779] = "Demon\'s Blood", + [10780] = "Mark of Hakkar", + [10781] = "Hakkari Breastplate", + [10782] = "Hakkari Shroud", + [10783] = "Atal\'ai Spaulders", + [10784] = "Atal\'ai Breastplate", + [10785] = "Atal\'ai Leggings", + [10786] = "Atal\'ai Boots", + [10787] = "Atal\'ai Gloves", + [10788] = "Atal\'ai Girdle", + [10789] = "Manual of Engineering Disciplines", + [10790] = "Gnome Engineer Membership Card", + [10791] = "Goblin Engineer Membership Card", + [10792] = "Nixx\'s Pledge of Secrecy", + [10793] = "Overspark\'s Pledge of Secrecy", + [10794] = "Oglethorpe\'s Pledge of Secrecy", + [10795] = "Drakeclaw Band", + [10796] = "Drakestone", + [10797] = "Firebreather", + [10798] = "Atal\'alarion\'s Tusk Ring", + [10799] = "Headspike", + [10800] = "Darkwater Bracers", + [10801] = "Slitherscale Boots", + [10802] = "Wingveil Cloak", + [10803] = "Blade of the Wretched", + [10804] = "Fist of the Damned", + [10805] = "Eater of the Dead", + [10806] = "Vestments of the Atal\'ai Prophet", + [10807] = "Kilt of the Atal\'ai Prophet", + [10808] = "Gloves of the Atal\'ai Prophet", + [10818] = "Yeh\'kinya\'s Scroll", + [10819] = "Wildkin Feather", + [10820] = "Jackseed Belt", + [10821] = "Sower\'s Cloak", + [10822] = "Tiny Black Whelpling", + [10823] = "Vanquisher\'s Sword", + [10824] = "Amberglow Talisman", + [10825] = "Monster - Sword, Red Long", + [10826] = "Staff of Lore", + [10827] = "Surveyor\'s Tunic", + [10828] = "Dire Nail", + [10829] = "Dragon\'s Eye", + [10830] = "M73 Frag Grenade", + [10831] = "Fel Orb", + [10832] = "Fel Tracker Owner\'s Manual", + [10833] = "Horns of Eranikus", + [10834] = "Felhound Tracker Kit", + [10835] = "Crest of Supremacy", + [10836] = "Rod of Corrosion", + [10837] = "Tooth of Eranikus", + [10838] = "Might of Hakkar", + [10839] = "Crystallized Note", + [10840] = "Crystallized Note", + [10841] = "Goldthorn Tea", + [10842] = "Windscale Sarong", + [10843] = "Featherskin Cape", + [10844] = "Spire of Hakkar", + [10845] = "Warrior\'s Embrace", + [10846] = "Bloodshot Greaves", + [10847] = "Dragon\'s Call", + [10858] = "Plans: Solid Iron Maul", + [10878] = "Monster - Sword, Horde Jagged Green", + [10898] = "Monster - Sword, Horde Sword Centurion", + [10918] = "Wound Poison", + [10919] = "Apothecary Gloves", + [10920] = "Wound Poison II", + [10921] = "Wound Poison III", + [10922] = "Wound Poison IV", + [10938] = "Lesser Magic Essence", + [10939] = "Greater Magic Essence", + [10940] = "Strange Dust", + [10958] = "Hilary\'s Necklace", + [10959] = "Demon Hide Sack", + [10978] = "Small Glimmering Shard", + [10998] = "Lesser Astral Essence", + [10999] = "Ironfel", + [11000] = "Shadowforge Key", + [11018] = "Un\'Goro Soil", + [11019] = "Monster - Sword, Horde Jagged Bloody", + [11020] = "Evergreen Pouch", + [11021] = "Monster - Big Sniper Gun", + [11022] = "Packet of Tharlendris Seeds", + [11023] = "Ancona Chicken", + [11024] = "Evergreen Herb Casing", + [11025] = "Monster - Sword, Katana 2H", + [11026] = "Tree Frog Box", + [11027] = "Wood Frog Box", + [11038] = "Formula: Enchant 2H Weapon - Lesser Spirit", + [11039] = "Formula: Enchant Cloak - Minor Agility", + [11040] = "Morrowgrain", + [11041] = "Monster - Shield, Kite Metal Gold", + [11042] = "Monster - Sword, Horde Jagged w/ Bolts", + [11058] = "Sha\'ni\'s Nose-Ring", + [11078] = "Relic Coffer Key", + [11079] = "Gor\'tesh\'s Lopped Off Head", + [11080] = "Gor\'tesh\'s Lopped Off Head", + [11081] = "Formula: Enchant Shield - Lesser Protection", + [11082] = "Greater Astral Essence", + [11083] = "Soul Dust", + [11084] = "Large Glimmering Shard", + [11085] = "Customer of the Month Coffer Key", + [11086] = "Jang\'thraze the Protector", + [11087] = "Monster - Sword2H, Ragglesnout X\'Caliboar", + [11098] = "Formula: Enchant Cloak - Lesser Shadow Resistance", + [11099] = "Dark Iron Ore", + [11101] = "Formula: Enchant Bracer - Lesser Strength", + [11102] = "Unhatched Sprite Darter Egg", + [11103] = "Seed Voucher", + [11104] = "Large Compass", + [11105] = "Curled Map Parchment", + [11106] = "Lion-headed Key", + [11107] = "A Small Pack", + [11108] = "Faded Photograph", + [11109] = "Special Chicken Feed", + [11110] = "Chicken Egg", + [11111] = "Broken Sprite Darter Egg", + [11112] = "Research Equipment", + [11113] = "Crate of Foodstuffs", + [11114] = "Dinosaur Bone", + [11115] = "Secret Safe Key", + [11116] = "A Mangled Journal", + [11118] = "Archaedic Stone", + [11119] = "Milly\'s Harvest", + [11120] = "Belgrom\'s Hammer", + [11121] = "Darkwater Talwar", + [11122] = "Carrot on a Stick", + [11123] = "Rainstrider Leggings", + [11124] = "Helm of Exile", + [11125] = "Grape Manifest", + [11126] = "Tablet of Kurniya", + [11127] = "Scavenged Goods", + [11128] = "Golden Rod", + [11129] = "Essence of the Elements", + [11130] = "Runed Golden Rod", + [11131] = "Hive Wall Sample", + [11132] = "Unused Scraping Vial", + [11133] = "Linken\'s Training Sword", + [11134] = "Lesser Mystic Essence", + [11135] = "Greater Mystic Essence", + [11136] = "Linken\'s Tempered Sword", + [11137] = "Vision Dust", + [11138] = "Small Glowing Shard", + [11139] = "Large Glowing Shard", + [11140] = "Prison Cell Key", + [11141] = "Bait", + [11142] = "Broken Samophlange", + [11143] = "Nugget Slug", + [11144] = "Truesilver Rod", + [11145] = "Runed Truesilver Rod", + [11146] = "Broken and Battered Samophlange", + [11147] = "Samophlange Manual Cover", + [11148] = "Samophlange Manual Page", + [11149] = "Samophlange Manual", + [11150] = "Formula: Enchant Gloves - Mining", + [11151] = "Formula: Enchant Gloves - Herbalism", + [11152] = "Formula: Enchant Gloves - Fishing", + [11162] = "Linken\'s Superior Sword", + [11163] = "Formula: Enchant Bracer - Lesser Deflection", + [11164] = "Formula: Enchant Weapon - Lesser Beastslayer", + [11165] = "Formula: Enchant Weapon - Lesser Elemental Slayer", + [11166] = "Formula: Enchant Gloves - Skinning", + [11167] = "Formula: Enchant Boots - Lesser Spirit", + [11168] = "Formula: Enchant Shield - Lesser Block", + [11169] = "Book of Aquor", + [11170] = "Deprecated Silver Totem of Aquementas", + [11171] = "Fel Iron", + [11172] = "Silvery Claws", + [11173] = "Irontree Heart", + [11174] = "Lesser Nether Essence", + [11175] = "Greater Nether Essence", + [11176] = "Dream Dust", + [11177] = "Small Radiant Shard", + [11178] = "Large Radiant Shard", + [11179] = "Golden Flame", + [11182] = "gfdgdf", + [11183] = "xdds", + [11184] = "Blue Power Crystal", + [11185] = "Green Power Crystal", + [11186] = "Red Power Crystal", + [11187] = "Stemleaf Bracers", + [11188] = "Yellow Power Crystal", + [11189] = "Woodland Robes", + [11190] = "Viny Gloves", + [11191] = "Farmer\'s Boots", + [11192] = "Outfitter Gloves", + [11193] = "Blazewind Breastplate", + [11194] = "Prismscale Hauberk", + [11195] = "Warforged Chestplate", + [11196] = "Mindburst Medallion", + [11197] = "Dark Keeper Key", + [11198] = "Rune of Escape", + [11199] = "Engineer\'s Shield 1", + [11200] = "Engineer\'s Shield 2", + [11201] = "Engineer\'s Shield 3", + [11202] = "Formula: Enchant Shield - Stamina", + [11203] = "Formula: Enchant Gloves - Advanced Mining", + [11204] = "Formula: Enchant Bracer - Greater Spirit", + [11205] = "Formula: Enchant Gloves - Advanced Herbalism", + [11206] = "Formula: Enchant Cloak - Lesser Agility", + [11207] = "Formula: Enchant Weapon - Fiery Weapon", + [11208] = "Formula: Enchant Weapon - Demonslaying", + [11222] = "Head of Krom\'zar", + [11223] = "Formula: Enchant Bracer - Deflection", + [11224] = "Formula: Enchant Shield - Frost Resistance", + [11225] = "Formula: Enchant Bracer - Greater Stamina", + [11226] = "Formula: Enchant Gloves - Riding Skill", + [11227] = "Piece of Krom\'zar\'s Banner", + [11228] = "Frenzied Dragonflight Molt", + [11229] = "Brightscale Girdle", + [11230] = "Encased Fiery Essence", + [11231] = "Altered Black Dragonflight Molt", + [11242] = "Evoroot", + [11243] = "Videre Elixir", + [11262] = "Orb of Lorica", + [11263] = "Nether Force Wand", + [11264] = "Monster - Mace, Baron Silverlaine", + [11265] = "Cragwood Maul", + [11266] = "Fractured Elemental Shard", + [11267] = "Elemental Shard Sample", + [11268] = "Head of Argelmach", + [11269] = "Intact Elemental Core", + [11270] = "Nixx\'s Signed Pledge", + [11282] = "Oglethorpe\'s Signed Pledge", + [11283] = "Overspark\'s Signed Pledge", + [11284] = "Accurate Slugs", + [11285] = "Jagged Arrow", + [11286] = "Thorium Shackles", + [11287] = "Lesser Magic Wand", + [11288] = "Greater Magic Wand", + [11289] = "Lesser Mystic Wand", + [11290] = "Greater Mystic Wand", + [11291] = "Star Wood", + [11302] = "Uther\'s Strength", + [11303] = "Fine Shortbow", + [11304] = "Fine Longbow", + [11305] = "Dense Shortbow", + [11306] = "Sturdy Recurve", + [11307] = "Massive Longbow", + [11308] = "Sylvan Shortbow", + [11309] = "The Heart of the Mountain", + [11310] = "Flameseer Mantle", + [11311] = "Emberscale Cape", + [11312] = "Lost Thunderbrew Recipe", + [11313] = "Ribbly\'s Head", + [11314] = "Monster - Claw Insect", + [11315] = "Bloodpetal Sprout", + [11316] = "Bloodpetal", + [11317] = "Monster - Axe, 2H War C01 Blue Limited", + [11318] = "Atal\'ai Haze", + [11319] = "Unloaded Zapper", + [11320] = "Bloodpetal Zapper", + [11321] = "Monster - Sword2H, Horde Massive", + [11322] = "Monster - Sword2H, Horde Broad", + [11323] = "Monster - Sword2H, Horde Jagged", + [11324] = "Explorer\'s Knapsack", + [11325] = "Dark Iron Ale Mug", + [11342] = "Monster - Axe, 2H Pendulum of Doom", + [11343] = "Monster - Staff, Jeweled Red Staff", + [11344] = "Big Voodoo Test", + [11345] = "Barbaric Kilt", + [11362] = "Medium Quiver", + [11363] = "Medium Shot Pouch", + [11364] = "Tabard of Stormwind", + [11365] = "Monster - Staff, Badass Red Staff", + [11366] = "Helendis Riverhorn\'s Letter", + [11367] = "Solomon\'s Plea to Bolvar", + [11368] = "Bolvar\'s Decree", + [11369] = "Monster - Mace, Thaurissan Hammer", + [11370] = "Dark Iron Ore", + [11371] = "Dark Iron Bar", + [11382] = "Blood of the Mountain", + [11383] = "Monster - Mace, Green Scepter", + [11384] = "Broken Basilisk Teeth", + [11385] = "Basilisk Scale", + [11386] = "Squishy Basilisk Eye", + [11387] = "Basilisk Heart", + [11388] = "Basilisk Venom", + [11389] = "Shimmering Basilisk Skin", + [11390] = "Broken Bat Fang", + [11391] = "Spined Bat Wing", + [11392] = "Severed Bat Claw", + [11393] = "Small Bat Skull", + [11394] = "Bat Heart", + [11395] = "Bat Ear", + [11402] = "Sleek Bat Pelt", + [11403] = "Large Bat Fang", + [11404] = "Evil Bat Eye", + [11405] = "Giant Silver Vein", + [11406] = "Rotting Bear Carcass", + [11407] = "Torn Bear Pelt", + [11408] = "Bear Jaw", + [11409] = "Bear Flank", + [11410] = "Savage Bear Claw", + [11411] = "Large Bear Bone", + [11412] = "Nagmara\'s Vial", + [11413] = "Nagmara\'s Filled Vial", + [11414] = "Grizzled Mane", + [11415] = "Mixed Berries", + [11416] = "Delicate Ribcage", + [11417] = "Feathery Wing", + [11418] = "Hollow Wing Bone", + [11419] = "Mysterious Unhatched Egg", + [11420] = "Elegant Writing Tool", + [11422] = "Goblin Engineer\'s Renewal Gift", + [11423] = "Gnome Engineer\'s Renewal Gift", + [11424] = "Monster - Staff, Wooden Handle Spiral Head", + [11442] = "Stormwind Deputy Kit", + [11443] = "Deprecated Grim Guzzler Boar", + [11444] = "Grim Guzzler Boar", + [11445] = "Flute of the Ancients", + [11446] = "A Crumpled Up Note", + [11462] = "Discarded Knife", + [11463] = "Undelivered Parcel", + [11464] = "Marshal Windsor\'s Lost Information", + [11465] = "Marshal Windsor\'s Lost Information", + [11466] = "Raschal\'s Report", + [11467] = "Blackrock Medallion", + [11468] = "Dark Iron Fanny Pack", + [11469] = "Bloodband Bracers", + [11470] = "Tablet Transcript", + [11471] = "Fragile Sprite Darter Egg", + [11472] = "Silvermane Stalker Flank", + [11473] = "PX83-Enigmatron", + [11474] = "Sprite Darter Egg", + [11475] = "Wine-stained Cloak", + [11476] = "U\'cha\'s Pelt", + [11477] = "White Ravasaur Claw", + [11478] = "Un\'Goro Gorilla Pelt", + [11479] = "Un\'Goro Stomper Pelt", + [11480] = "Un\'Goro Thunderer Pelt", + [11482] = "Crystal Pylon User\'s Manual", + [11502] = "Loreskin Shoulders", + [11503] = "Blood Amber", + [11504] = "Piece of Threshadon Carcass", + [11505] = "Monster - Claw - Bear Offhand", + [11506] = "Monster - Claw Offhand", + [11507] = "Spotted Hyena Pelt", + [11508] = "Gamemaster\'s Slippers", + [11509] = "Ravasaur Pheromone Gland", + [11510] = "Lar\'korwi\'s Head", + [11511] = "Cenarion Beacon", + [11512] = "Patch of Tainted Skin", + [11513] = "Tainted Vitriol", + [11514] = "Fel Creep", + [11515] = "Corrupted Soul Shard", + [11516] = "Cenarion Plant Salve", + [11522] = "Silver Totem of Aquementas", + [11542] = "Monster - Staff, Red Feathered", + [11562] = "Crystal Restore", + [11563] = "Crystal Force", + [11564] = "Crystal Ward", + [11565] = "Crystal Yield", + [11566] = "Crystal Charge", + [11567] = "Crystal Spire", + [11568] = "Torwa\'s Pouch", + [11569] = "Preserved Threshadon Meat", + [11570] = "Preserved Pheromone Mixture", + [11582] = "Fel Salve", + [11583] = "Cactus Apple", + [11584] = "Cactus Apple Surprise", + [11585] = "Monster - Shield, Engineer A01", + [11586] = "Monster - Shield, Engineer B01", + [11587] = "Monster - Shield, Engineer C01", + [11588] = "Monster - Staff, Jeweled D01 Green", + [11589] = "Monster - Shield, Orange Skull", + [11590] = "Mechanical Repair Kit", + [11591] = "Monster - Sword2H, Battlefield Destroyer", + [11602] = "Grim Guzzler Key", + [11603] = "Vilerend Slicer", + [11604] = "Dark Iron Plate", + [11605] = "Dark Iron Shoulders", + [11606] = "Dark Iron Mail", + [11607] = "Dark Iron Sunderer", + [11608] = "Dark Iron Pulverizer", + [11609] = "Altered Black Dragonflight Molt", + [11610] = "Plans: Dark Iron Pulverizer", + [11611] = "Plans: Dark Iron Sunderer", + [11612] = "Plans: Dark Iron Plate", + [11613] = "DEBUG Samophlange Manual Cover", + [11614] = "Plans: Dark Iron Mail", + [11615] = "Plans: Dark Iron Shoulders", + [11616] = "DEBUG Samophlange Manual Page", + [11617] = "Eridan\'s Supplies", + [11622] = "Lesser Arcanum of Rumination", + [11623] = "Spritecaster Cape", + [11624] = "Kentic Amice", + [11625] = "Enthralled Sphere", + [11626] = "Blackveil Cape", + [11627] = "Fleetfoot Greaves", + [11628] = "Houndmaster\'s Bow", + [11629] = "Houndmaster\'s Rifle", + [11630] = "Rockshard Pellets", + [11631] = "Stoneshell Guard", + [11632] = "Earthslag Shoulders", + [11633] = "Spiderfang Carapace", + [11634] = "Silkweb Gloves", + [11635] = "Hookfang Shanker", + [11642] = "Lesser Arcanum of Constitution", + [11643] = "Lesser Arcanum of Tenacity", + [11644] = "Lesser Arcanum of Resilience", + [11645] = "Lesser Arcanum of Voracity", + [11646] = "Lesser Arcanum of Voracity", + [11647] = "Lesser Arcanum of Voracity", + [11648] = "Lesser Arcanum of Voracity", + [11649] = "Lesser Arcanum of Voracity", + [11662] = "Ban\'thok Sash", + [11663] = "[PH] Greater Arcane Amalgamation (MANA/FR)", + [11664] = "[PH] Greater Arcane Amalgamation (HP/FR)", + [11665] = "Ogreseer Fists", + [11666] = "[PH] Greater Arcane Amalgamation (AC/FR)", + [11667] = "[PH] Greater Arcane Amalgamation (STR/FR)", + [11668] = "Flute of Xavaric", + [11669] = "Naglering", + [11670] = "[PH] Greater Arcane Amalgamation (STA/FR)", + [11671] = "[PH] Greater Arcane Amalgamation (AGI/FR)", + [11672] = "[PH] Greater Arcane Amalgamation (SPI/FR)", + [11673] = "[PH] Greater Arcane Amalgamation (INT/FR)", + [11674] = "Jadefire Felbind", + [11675] = "Shadefiend Boots", + [11676] = "[PH] Legendary Arcane Amalgamation (Melee)", + [11677] = "Graverot Cape", + [11678] = "Carapace of Anub\'shiah", + [11679] = "Rubicund Armguards", + [11682] = "Eridan\'s Vial", + [11683] = "[PH] Legendary Arcane Amalgamation (Caster)", + [11684] = "Ironfoe", + [11685] = "Splinthide Shoulders", + [11686] = "Girdle of Beastial Fury", + [11702] = "Grizzle\'s Skinner", + [11703] = "Stonewall Girdle", + [11722] = "Dregmetal Spaulders", + [11723] = "Goodsteel\'s Balanced Flameberge", + [11724] = "Overdue Package", + [11725] = "Solid Crystal Leg Shaft", + [11726] = "Savage Gladiator Chain", + [11727] = "Goodsteel Ledger", + [11728] = "Savage Gladiator Leggings", + [11729] = "Savage Gladiator Helm", + [11730] = "Savage Gladiator Grips", + [11731] = "Savage Gladiator Greaves", + [11732] = "Libram of Rumination", + [11733] = "Libram of Constitution", + [11734] = "Libram of Tenacity", + [11735] = "Ragefury Eyepatch", + [11736] = "Libram of Resilience", + [11737] = "Libram of Voracity", + [11742] = "Wayfarer\'s Knapsack", + [11743] = "Rockfist", + [11744] = "Bloodfist", + [11745] = "Fists of Phalanx", + [11746] = "Golem Skull Helm", + [11747] = "Flamestrider Robes", + [11748] = "Pyric Caduceus", + [11749] = "Searingscale Leggings", + [11750] = "Kindling Stave", + [11751] = "Burning Essence", + [11752] = "Black Blood of the Tormented", + [11753] = "Eye of Kajal", + [11754] = "Black Diamond", + [11755] = "Verek\'s Collar", + [11762] = "Monster - Axe, Hatchet Gold", + [11763] = "Monster - Axe, Hatchet Red", + [11764] = "Cinderhide Armsplints", + [11765] = "Pyremail Wristguards", + [11766] = "Flameweave Cuffs", + [11767] = "Emberplate Armguards", + [11768] = "Incendic Bracers", + [11782] = "Boreal Mantle", + [11783] = "Chillsteel Girdle", + [11784] = "Arbiter\'s Blade", + [11785] = "Rock Golem Bulwark", + [11786] = "Stone of the Earth", + [11787] = "Shalehusk Boots", + [11802] = "Lavacrest Leggings", + [11803] = "Force of Magma", + [11804] = "Spraggle\'s Canteen", + [11805] = "Rubidium Hammer", + [11807] = "Sash of the Burning Heart", + [11808] = "Circle of Flame", + [11809] = "Flame Wrath", + [11810] = "Force of Will", + [11811] = "Smoking Heart of the Mountain", + [11812] = "Cape of the Fire Salamander", + [11813] = "Formula: Smoking Heart of the Mountain", + [11814] = "Molten Fists", + [11815] = "Hand of Justice", + [11816] = "Angerforge\'s Battle Axe", + [11817] = "Lord General\'s Sword", + [11818] = "Grimesilt Outhouse Key", + [11819] = "Second Wind", + [11820] = "Royal Decorated Armor", + [11821] = "Warstrife Leggings", + [11822] = "Omnicast Boots", + [11823] = "Luminary Kilt", + [11824] = "Cyclopean Band", + [11825] = "Pet Bombling", + [11826] = "Lil\' Smoky", + [11827] = "Schematic: Lil\' Smoky", + [11828] = "Schematic: Pet Bombling", + [11829] = "Un\'Goro Ash", + [11830] = "Webbed Diemetradon Scale", + [11831] = "Webbed Pterrordax Scale", + [11832] = "Burst of Knowledge", + [11833] = "Gorishi Queen Lure", + [11834] = "Super Sticky Tar", + [11835] = "Gorishi Queen Brain", + [11837] = "Gorishi Scent Gland", + [11838] = "Monster - Trident, Flame Wrath", + [11839] = "Chief Architect\'s Monocle", + [11840] = "Master Builder\'s Shirt", + [11841] = "Senior Designer\'s Pantaloons", + [11842] = "Lead Surveyor\'s Mantle", + [11843] = "Bank Voucher", + [11844] = "Pestlezugg\'s Un\'Goro Report", + [11845] = "Handmade Leather Bag", + [11846] = "Wizbang\'s Special Brew", + [11847] = "Battered Cloak", + [11848] = "Flax Belt", + [11849] = "Rustmetal Bracers", + [11850] = "Short Duskbat Cape", + [11851] = "Scavenger Tunic", + [11852] = "Roamer\'s Leggings", + [11853] = "Rambling Boots", + [11854] = "Samophlange Screwdriver", + [11855] = "Tork Wrench", + [11856] = "Ceremonial Elven Blade", + [11857] = "Sanctimonial Rod", + [11858] = "Battlehard Cape", + [11859] = "Jademoon Orb", + [11860] = "Charged Lightning Rod", + [11861] = "Girdle of Reprisal", + [11862] = "White Bone Band", + [11863] = "White Bone Shredder", + [11864] = "White Bone Spear", + [11865] = "Rancor Boots", + [11866] = "Nagmara\'s Whipping Belt", + [11867] = "Maddening Gauntlets", + [11868] = "Choking Band", + [11869] = "Sha\'ni\'s Ring", + [11870] = "Oblivion Orb", + [11871] = "Snarkshaw Spaulders", + [11872] = "Eschewal Greaves", + [11873] = "Ethereal Mist Cape", + [11874] = "Clouddrift Mantle", + [11875] = "Breezecloud Bracers", + [11876] = "Plainstalker Tunic", + [11882] = "Outrider Leggings", + [11883] = "A Dingy Fanny Pack", + [11884] = "Moonlit Amice", + [11885] = "Shadowforge Torch", + [11886] = "Urgent Message", + [11887] = "Cenarion Circle Cache", + [11888] = "Quintis\' Research Gloves", + [11889] = "Bark Iron Pauldrons", + [11902] = "Linken\'s Sword of Mastery", + [11903] = "Cat Carrier (Corrupted Kitten)", + [11904] = "Spirit of Aquementas", + [11905] = "Linken\'s Boomerang", + [11906] = "Beastsmasher", + [11907] = "Beastslayer", + [11908] = "Archaeologist\'s Quarry Boots", + [11909] = "Excavator\'s Utility Belt", + [11910] = "Bejeweled Legguards", + [11911] = "Treetop Leggings", + [11912] = "Package of Empty Ooze Containers", + [11913] = "Clayridge Helm", + [11914] = "Empty Cursed Ooze Jar", + [11915] = "Shizzle\'s Drizzle Blocker", + [11916] = "Shizzle\'s Muzzle", + [11917] = "Shizzle\'s Nozzle Wiper", + [11918] = "Grotslab Gloves", + [11919] = "Cragplate Greaves", + [11920] = "Wraith Scythe", + [11921] = "Impervious Giant", + [11922] = "Blood-etched Blade", + [11923] = "The Hammer of Grace", + [11924] = "Robes of the Royal Crown", + [11925] = "Ghostshroud", + [11926] = "Deathdealer Breastplate", + [11927] = "Legplates of the Eternal Guardian", + [11928] = "Thaurissan\'s Royal Scepter", + [11929] = "Haunting Specter Leggings", + [11930] = "The Emperor\'s New Cape", + [11931] = "Dreadforge Retaliator", + [11932] = "Guiding Stave of Wisdom", + [11933] = "Imperial Jewel", + [11934] = "Emperor\'s Seal", + [11935] = "Magmus Stone", + [11936] = "Relic Hunter Belt", + [11937] = "Fat Sack of Coins", + [11938] = "Sack of Gems", + [11939] = "Shiny Bracelet", + [11940] = "Sparkly Necklace", + [11941] = "False Documents", + [11942] = "Legal Documents", + [11943] = "Deed to Thandol Span", + [11944] = "Dark Iron Baby Booties", + [11945] = "Dark Iron Ring", + [11946] = "Fire Opal Necklace", + [11947] = "Filled Cursed Ooze Jar", + [11948] = "Empty Tainted Ooze Jar", + [11949] = "Filled Tainted Ooze Jar", + [11950] = "Windblossom Berries", + [11951] = "Whipper Root Tuber", + [11952] = "Night Dragon\'s Breath", + [11953] = "Empty Pure Sample Jar", + [11954] = "Filled Pure Sample Jar", + [11955] = "Bag of Empty Ooze Containers", + [11962] = "Manacle Cuffs", + [11963] = "Penance Spaulders", + [11964] = "Swiftstrike Cudgel", + [11965] = "Quartz Ring", + [11966] = "Small Sack of Coins", + [11967] = "Zircon Band", + [11968] = "Amber Hoop", + [11969] = "Jacinth Circle", + [11970] = "Spinel Ring", + [11971] = "Amethyst Band", + [11972] = "Carnelian Loop", + [11973] = "Hematite Link", + [11974] = "Aquamarine Ring", + [11975] = "Topaz Ring", + [11976] = "Sardonyx Knuckle", + [11977] = "Serpentine Loop", + [11978] = "Jasper Link", + [11979] = "Perdiot Circle", + [11980] = "Opal Ring", + [11981] = "Lead Band", + [11982] = "Viridian Band", + [11983] = "Chrome Ring", + [11984] = "Cobalt Ring", + [11985] = "Cerulean Ring", + [11986] = "Thallium Hoop", + [11987] = "Iridium Circle", + [11988] = "Tellurium Band", + [11989] = "Vanadium Loop", + [11990] = "Selenium Loop", + [11991] = "Quicksilver Ring", + [11992] = "Vermilion Band", + [11993] = "Clay Ring", + [11994] = "Coral Band", + [11995] = "Ivory Band", + [11996] = "Basalt Ring", + [11997] = "Greenstone Circle", + [11998] = "Jet Loop", + [11999] = "Lodestone Hoop", + [12000] = "Limb Cleaver", + [12001] = "Onyx Ring", + [12002] = "Marble Circle", + [12003] = "Dark Dwarven Lager", + [12004] = "Obsidian Band", + [12005] = "Granite Ring", + [12006] = "Meadow Ring", + [12007] = "Prairie Ring", + [12008] = "Savannah Ring", + [12009] = "Tundra Ring", + [12010] = "Fen Ring", + [12011] = "Forest Hoop", + [12012] = "Marsh Ring", + [12013] = "Desert Ring", + [12014] = "Arctic Ring", + [12015] = "Swamp Ring", + [12016] = "Jungle Ring", + [12017] = "Prismatic Band", + [12018] = "Conservator Helm", + [12019] = "Cerulean Talisman", + [12020] = "Thallium Choker", + [12021] = "Shieldplate Sabatons", + [12022] = "Iridium Chain", + [12023] = "Tellurium Necklace", + [12024] = "Vanadium Talisman", + [12025] = "Selenium Chain", + [12026] = "Quicksilver Pendant", + [12027] = "Vermilion Necklace", + [12028] = "Basalt Necklace", + [12029] = "Greenstone Talisman", + [12030] = "Jet Chain", + [12031] = "Lodestone Necklace", + [12032] = "Onyx Choker", + [12033] = "Thaurissan Family Jewels", + [12034] = "Marble Necklace", + [12035] = "Obsidian Pendant", + [12036] = "Granite Necklace", + [12037] = "Mystery Meat", + [12038] = "Lagrave\'s Seal", + [12039] = "Tundra Necklace", + [12040] = "Forest Pendant", + [12041] = "Windshear Leggings", + [12042] = "Marsh Chain", + [12043] = "Desert Choker", + [12044] = "Arctic Pendant", + [12045] = "Swamp Pendant", + [12046] = "Jungle Necklace", + [12047] = "Spectral Necklace", + [12048] = "Prismatic Pendant", + [12049] = "Splintsteel Armor", + [12050] = "Hazecover Boots", + [12051] = "Brazen Gauntlets", + [12052] = "Ring of the Moon", + [12053] = "Volcanic Rock Ring", + [12054] = "Demon Band", + [12055] = "Stardust Band", + [12056] = "Ring of the Heavens", + [12057] = "Dragonscale Band", + [12058] = "Demonic Bone Ring", + [12059] = "Conqueror\'s Medallion", + [12060] = "Shindrell\'s Note", + [12061] = "Blade of Reckoning", + [12062] = "Skilled Fighting Blade", + [12063] = "Monster - Trident, Wicked", + [12064] = "Gamemaster Hood", + [12065] = "Ward of the Elements", + [12066] = "Shaleskin Cape", + [12082] = "Wyrmhide Spaulders", + [12083] = "Valconian Sash", + [12102] = "Ring of the Aristocrat", + [12103] = "Star of Mystaria", + [12104] = "Brindlethorn Tunic", + [12105] = "Pridemail Leggings", + [12106] = "Boulderskin Breastplate", + [12107] = "Whispersilk Leggings", + [12108] = "Basaltscale Armor", + [12109] = "Azure Moon Amice", + [12110] = "Raincaster Drape", + [12111] = "Lavaplate Gauntlets", + [12112] = "Crypt Demon Bracers", + [12113] = "Sunborne Cape", + [12114] = "Nightfall Gloves", + [12115] = "Stalwart Clutch", + [12122] = "Kum\'isha\'s Junk", + [12142] = "Monster - Sword, Thick/Fat Blade", + [12143] = "Dragonspine Key", + [12144] = "Eggscilloscope", + [12162] = "Plans: Hardened Iron Shortsword", + [12163] = "Plans: Moonsteel Broadsword", + [12164] = "Plans: Massive Iron Axe", + [12182] = "Monster - Staff of Jordan", + [12183] = "Monster - Mace, Thrall\'s Hammer", + [12184] = "Raptor Flesh", + [12185] = "Bloodsail Admiral\'s Hat", + [12186] = "Drakefire Amulet (OLD) (UNUSED)", + [12187] = "Test Defense Chest", + [12188] = "Test Armor Chest", + [12189] = "Test Strength Chest", + [12190] = "Dreamless Sleep Potion", + [12191] = "Silver Dawning\'s Lockbox", + [12192] = "Mist Veil\'s Lockbox", + [12202] = "Tiger Meat", + [12203] = "Red Wolf Meat", + [12204] = "Heavy Kodo Meat", + [12205] = "White Spider Meat", + [12206] = "Tender Crab Meat", + [12207] = "Giant Egg", + [12208] = "Tender Wolf Meat", + [12209] = "Lean Wolf Steak", + [12210] = "Roast Raptor", + [12211] = "Spiced Wolf Ribs", + [12212] = "Jungle Stew", + [12213] = "Carrion Surprise", + [12214] = "Mystery Stew", + [12215] = "Heavy Kodo Stew", + [12216] = "Spiced Chili Crab", + [12217] = "Dragonbreath Chili", + [12218] = "Monster Omelet", + [12219] = "Unadorned Seal of Ascension", + [12220] = "Intact Elemental Bracer", + [12221] = "Blump Family Fishing Pole", + [12222] = "Blump Family Fishing Hat", + [12223] = "Meaty Bat Wing", + [12224] = "Crispy Bat Wing", + [12225] = "Blump Family Fishing Pole", + [12226] = "Recipe: Crispy Bat Wing", + [12227] = "Recipe: Lean Wolf Steak", + [12228] = "Recipe: Roast Raptor", + [12229] = "Recipe: Hot Wolf Ribs", + [12230] = "Felwood Slime Sample", + [12231] = "Recipe: Jungle Stew", + [12232] = "Recipe: Carrion Surprise", + [12233] = "Recipe: Mystery Stew", + [12234] = "Corrupted Felwood Sample", + [12235] = "Un\'Goro Slime Sample", + [12236] = "Pure Un\'Goro Sample", + [12237] = "Fine Crab Chunks", + [12238] = "Darkshore Grouper", + [12239] = "Recipe: Dragonbreath Chili", + [12240] = "Recipe: Heavy Kodo Stew", + [12241] = "Collected Dragon Egg", + [12242] = "Sea Creature Bones", + [12243] = "Smoldering Claw", + [12244] = "Test Agility Chest", + [12245] = "Test Spirit Chest", + [12246] = "test thing", + [12247] = "Broad Bladed Knife", + [12248] = "Daring Dirk", + [12249] = "Merciless Axe", + [12250] = "Midnight Axe", + [12251] = "Big Stick", + [12252] = "Staff of Protection", + [12253] = "Brilliant Red Cloak", + [12254] = "Well Oiled Cloak", + [12255] = "Pale Leggings", + [12256] = "Cindercloth Leggings", + [12257] = "Heavy Notched Belt", + [12258] = "Serpent Clasp Belt", + [12259] = "Glinting Steel Dagger", + [12260] = "Searing Golden Blade", + [12261] = "Plans: Searing Golden Blade", + [12262] = "Empty Worg Pup Cage", + [12263] = "Caged Worg Pup", + [12264] = "Worg Carrier", + [12282] = "Worn Battleaxe", + [12283] = "Broodling Essence", + [12284] = "Draco-Incarcinatrix 900", + [12285] = "Monster - Axe, 2H Rev. Bearded Single Bladed - Red", + [12286] = "Eggscilloscope Prototype", + [12287] = "Collectronic Module", + [12288] = "Encased Corrupt Ooze", + [12289] = "Sea Turtle Remains", + [12290] = "Monster - Axe, Horde Badass Copper 01", + [12291] = "Merged Ooze Sample", + [12292] = "Strangely Marked Box", + [12293] = "Fine Gold Thread", + [12294] = "Monster - Axe, 2H Horde Green War Axe", + [12295] = "Leggings of the People\'s Militia", + [12296] = "Spark of the People\'s Militia", + [12297] = "Monster - Sword, Horde Jagged Brown", + [12298] = "Monster - Dagger, Dark Pronged", + [12299] = "Netted Gloves", + [12300] = "Orb of Draconic Energy", + [12301] = "Bamboo Cage Key", + [12302] = "Reins of the Frostsaber", + [12303] = "Reins of the Nightsaber", + [12304] = "Monster - Sword, Horde Broad Pointed", + [12322] = "Monster - Staff, Green Feathered", + [12323] = "Unforged Seal of Ascension", + [12324] = "Forged Seal of Ascension", + [12325] = "Reins of the Primal Leopard", + [12326] = "Reins of the Tawny Sabercat", + [12327] = "Reins of the Golden Sabercat", + [12328] = "Monster - Staff, 3 Piece Taped Staff Green", + [12329] = "Monster - Staff, Crooked Green", + [12330] = "Horn of the Red Wolf", + [12331] = "Monster - Sword2H, Horde Massive Green", + [12332] = "Monster - Dagger, Green Pronged", + [12333] = "Monster - Polearm, Horde", + [12334] = "Frostmaul Shards", + [12335] = "Gemstone of Smolderthorn", + [12336] = "Gemstone of Spirestone", + [12337] = "Gemstone of Bloodaxe", + [12338] = "Monster - Polearm, Rend Blackhand", + [12339] = "Vaelan\'s Gift", + [12341] = "Blackwood Fruit Sample", + [12342] = "Blackwood Grain Sample", + [12343] = "Blackwood Nut Sample", + [12344] = "Seal of Ascension", + [12345] = "Bijou\'s Belongings", + [12346] = "Empty Cleansing Bowl", + [12347] = "Filled Cleansing Bowl", + [12348] = "Monster - Axe, Horde Badass Copper 01 (Special1H)", + [12349] = "Cliffspring River Sample", + [12350] = "Empty Sampling Tube", + [12351] = "Horn of the Arctic Wolf", + [12352] = "Doomrigger\'s Clasp", + [12353] = "White Stallion Bridle", + [12354] = "Palomino Bridle", + [12355] = "Talisman of Corruption", + [12356] = "Highperch Wyvern Egg", + [12358] = "Darkstone Tablet", + [12359] = "Thorium Bar", + [12360] = "Arcanite Bar", + [12361] = "Blue Sapphire", + [12363] = "Arcane Crystal", + [12364] = "Huge Emerald", + [12365] = "Dense Stone", + [12366] = "Thick Yeti Fur", + [12367] = "Pristine Yeti Horn", + [12368] = "Dawn\'s Gambit", + [12369] = "Scepter of Vectus", + [12382] = "Key to the City", + [12383] = "Moontouched Feather", + [12384] = "Cache of Mau\'ari", + [12385] = "test", + [12402] = "Ancient Egg", + [12403] = "Monster - Polearm, Black", + [12404] = "Dense Sharpening Stone", + [12405] = "Thorium Armor", + [12406] = "Thorium Belt", + [12407] = "Thorium Shoulders", + [12408] = "Thorium Bracers", + [12409] = "Thorium Boots", + [12410] = "Thorium Helm", + [12411] = "Third Mosh\'aru Tablet", + [12412] = "Fourth Mosh\'aru Tablet", + [12413] = "Thorium Leggings", + [12414] = "Thorium Leggings", + [12415] = "Radiant Breastplate", + [12416] = "Radiant Belt", + [12417] = "Radiant Circlet", + [12418] = "Radiant Gloves", + [12419] = "Radiant Boots", + [12420] = "Radiant Leggings", + [12421] = "Monster - Staff, White Jeweled", + [12422] = "Imperial Plate Chest", + [12423] = "Imperial Plate Helmet", + [12424] = "Imperial Plate Belt", + [12425] = "Imperial Plate Bracers", + [12426] = "Imperial Plate Boots", + [12427] = "Imperial Plate Helm", + [12428] = "Imperial Plate Shoulders", + [12429] = "Imperial Plate Leggings", + [12430] = "Frostsaber E\'ko", + [12431] = "Winterfall E\'ko", + [12432] = "Shardtooth E\'ko", + [12433] = "Wildkin E\'ko", + [12434] = "Chillwind E\'ko", + [12435] = "Ice Thistle E\'ko", + [12436] = "Frostmaul E\'ko", + [12437] = "Ridgewell\'s Crate", + [12438] = "Tinkee\'s Letter", + [12440] = "Magic Knucklebone (DND)", + [12442] = "Charm Pouch (DND)", + [12443] = "Knucklebone Pouch (DND)", + [12444] = "Uncracked Chillwind Horn", + [12445] = "Felnok\'s Package", + [12446] = "Anvilmar Musket", + [12447] = "Thistlewood Bow", + [12448] = "Light Hunting Rifle", + [12449] = "Primitive Bow", + [12450] = "Juju Flurry", + [12451] = "Juju Power", + [12452] = "Monster - Shield, Horde A02 Silver", + [12453] = "Monster - Shield, Horde A03 Triangle", + [12454] = "Monster - Shield, Horde B01 Brown", + [12455] = "Juju Ember", + [12456] = "Monster - Shield, Horde B02 Brown", + [12457] = "Juju Chill", + [12458] = "Juju Guile", + [12459] = "Juju Escape", + [12460] = "Juju Might", + [12461] = "Monster - Axe, 2H Horde Brown Tombstone", + [12462] = "Embrace of the Wind Serpent", + [12463] = "Drakefang Butcher", + [12464] = "Bloodfire Talons", + [12465] = "Nightfall Drape", + [12466] = "Dawnspire Cord", + [12467] = "Alien Egg", + [12468] = "Chilton Wand", + [12469] = "Mutilator", + [12470] = "Sandstalker Ankleguards", + [12471] = "Desertwalker Cane", + [12472] = "Krakle\'s Thermometer", + [12482] = "Monster - Glaive - Demonhunter Black", + [12502] = "Monster - Glaive - Demonhunter Black Offhand", + [12522] = "Bingles\' Flying Gloves", + [12523] = "Monster - Gun, Silver Musket", + [12524] = "Blue-feathered Amulet", + [12525] = "Jaron\'s Supplies", + [12526] = "TEST Challenge to Urok", + [12527] = "Ribsplitter", + [12528] = "The Judge\'s Gavel", + [12529] = "Smolderweb Carrier", + [12530] = "Spire Spider Egg", + [12531] = "Searing Needle", + [12532] = "Spire of the Stoneshaper", + [12533] = "Roughshod Pike", + [12534] = "Omokk\'s Head", + [12535] = "Doomforged Straightedge", + [12542] = "Funeral Pyre Vestment", + [12543] = "Songstone of Ironforge", + [12544] = "Thrall\'s Resolve", + [12545] = "Eye of Orgrimmar", + [12546] = "Aristocratic Cuffs", + [12547] = "Mar Alom\'s Grip", + [12548] = "Magni\'s Will", + [12549] = "Braincage", + [12550] = "Runed Golem Shackles", + [12551] = "Stoneshield Cloak", + [12552] = "Blisterbane Wrap", + [12553] = "Swiftwalker Boots", + [12554] = "Hands of the Exalted Herald", + [12555] = "Battlechaser\'s Greaves", + [12556] = "High Priestess Boots", + [12557] = "Ebonsteel Spaulders", + [12558] = "Blue-feathered Necklace", + [12562] = "Important Blackrock Documents", + [12563] = "Warlord Goretooth\'s Command", + [12564] = "Assassination Note", + [12565] = "Winna\'s Kitten Carrier", + [12566] = "Hardened Flasket", + [12567] = "Filled Flasket", + [12582] = "Keris of Zul\'Serak", + [12583] = "Blackhand Doomsaw", + [12584] = "Grand Marshal\'s Longsword", + [12585] = "Stormwind Medallion", + [12586] = "Immature Venom Sac", + [12587] = "Eye of Rend", + [12588] = "Bonespike Shoulder", + [12589] = "Dustfeather Sash", + [12590] = "Deathstriker", + [12591] = "Monster - Staff, Holy Staff", + [12592] = "Blackblade of Shahram", + [12593] = "Monster - Sword, Horde Sword Bronze", + [12602] = "Draconian Deflector", + [12603] = "Nightbrace Tunic", + [12604] = "Starfire Tiara", + [12605] = "Serpentine Skuller", + [12606] = "Crystallized Girdle", + [12607] = "Brilliant Chromatic Scale", + [12608] = "Butcher\'s Apron", + [12609] = "Polychromatic Visionwrap", + [12610] = "Runic Plate Shoulders", + [12611] = "Runic Plate Boots", + [12612] = "Runic Plate Helm", + [12613] = "Runic Breastplate", + [12614] = "Runic Plate Leggings", + [12615] = "Savage Mail Tunic", + [12616] = "Savage Mail Boots", + [12617] = "Savage Mail Shoulders", + [12618] = "Enchanted Thorium Breastplate", + [12619] = "Enchanted Thorium Leggings", + [12620] = "Enchanted Thorium Helm", + [12621] = "Demonfork", + [12622] = "Shardtooth Meat", + [12623] = "Chillwind Meat", + [12624] = "Wildthorn Mail", + [12625] = "Dawnbringer Shoulders", + [12626] = "Funeral Cuffs", + [12627] = "Temporal Displacer", + [12628] = "Demon Forged Breastplate", + [12629] = "Monster - Axe, Horde Hatchet 01", + [12630] = "Head of Rend Blackhand", + [12631] = "Fiery Plate Gauntlets", + [12632] = "Storm Gauntlets", + [12633] = "Whitesoul Helm", + [12634] = "Chiselbrand Girdle", + [12635] = "Simple Parchment", + [12636] = "Helm of the Great Chief", + [12637] = "Backusarian Gauntlets", + [12638] = "Andorhal Watch", + [12639] = "Stronghold Gauntlets", + [12640] = "Lionheart Helm", + [12641] = "Invulnerable Mail", + [12642] = "Cleansed Infernal Orb", + [12643] = "Dense Weightstone", + [12644] = "Dense Grinding Stone", + [12645] = "Thorium Shield Spike", + [12646] = "Infus Emerald", + [12647] = "Felhas Ruby", + [12648] = "Imprisoned Felhound Spirit", + [12649] = "Imprisoned Infernal Spirit", + [12650] = "Attuned Dampener", + [12651] = "Blackcrow", + [12652] = "Bijou\'s Reconnaissance Report", + [12653] = "Riphook", + [12654] = "Doomshot", + [12655] = "Enchanted Thorium Bar", + [12662] = "Demonic Rune", + [12663] = "Glyphed Oaken Branch", + [12682] = "Plans: Thorium Armor", + [12683] = "Plans: Thorium Belt", + [12684] = "Plans: Thorium Bracers", + [12685] = "Plans: Radiant Belt", + [12686] = "Finkle\'s Skinner", + [12687] = "Plans: Imperial Plate Shoulders", + [12688] = "Plans: Imperial Plate Belt", + [12689] = "Plans: Radiant Breastplate", + [12690] = "Plans: Imperial Plate Bracers", + [12691] = "Plans: Wildthorn Mail", + [12692] = "Plans: Thorium Shield Spike", + [12693] = "Plans: Thorium Boots", + [12694] = "Plans: Thorium Helm", + [12695] = "Plans: Radiant Gloves", + [12696] = "Plans: Demon Forged Breastplate", + [12697] = "Plans: Radiant Boots", + [12698] = "Plans: Dawnbringer Shoulders", + [12699] = "Plans: Fiery Plate Gauntlets", + [12700] = "Plans: Imperial Plate Boots", + [12701] = "Plans: Imperial Plate Helm", + [12702] = "Plans: Radiant Circlet", + [12703] = "Plans: Storm Gauntlets", + [12704] = "Plans: Thorium Leggings", + [12705] = "Plans: Imperial Plate Chest", + [12706] = "Plans: Runic Plate Shoulders", + [12707] = "Plans: Runic Plate Boots", + [12708] = "Crossroads\' Supply Crates", + [12709] = "Finkle\'s Skinner", + [12710] = "Glowing Hunk of the Beast\'s Flesh", + [12711] = "Plans: Whitesoul Helm", + [12712] = "Warosh\'s Mojo", + [12713] = "Plans: Radiant Leggings", + [12714] = "Plans: Runic Plate Helm", + [12715] = "Plans: Imperial Plate Leggings", + [12716] = "Plans: Helm of the Great Chief", + [12717] = "Plans: Lionheart Helm", + [12718] = "Plans: Runic Breastplate", + [12719] = "Plans: Runic Plate Leggings", + [12720] = "Plans: Stronghold Gauntlets", + [12721] = "Good Luck Half-Charm", + [12722] = "Good Luck Other-Half-Charm", + [12723] = "Good Luck Charm", + [12724] = "Janice\'s Parcel", + [12725] = "Plans: Enchanted Thorium Helm", + [12726] = "Plans: Enchanted Thorium Leggings", + [12727] = "Plans: Enchanted Thorium Breastplate", + [12728] = "Plans: Invulnerable Mail", + [12729] = "Viagra", + [12730] = "Warosh\'s Scroll", + [12731] = "Pristine Hide of the Beast", + [12732] = "Incendia Agave", + [12733] = "Sacred Frostsaber Meat", + [12734] = "Enchanted Scarlet Thread", + [12735] = "Frayed Abomination Stitching", + [12736] = "Frostwhisper\'s Embalming Fluid", + [12737] = "Gloom Weed", + [12738] = "Dalson Outhouse Key", + [12739] = "Dalson Cabinet Key", + [12740] = "Fifth Mosh\'aru Tablet", + [12741] = "Sixth Mosh\'aru Tablet", + [12742] = "Monster - Item, Book - Brown", + [12743] = "Monster - Item, Book - Brown Offhand", + [12744] = "Monster - Item, Bag - Brown", + [12745] = "Monster - Item, Bag - Brown Offhand", + [12746] = "Monster - Item, Orb - Lava", + [12747] = "Monster - Item, Orb - Lava Offhand", + [12748] = "Monster - Item, Scepter - Gold", + [12749] = "Monster - Item, Scepter - Gold Offhand", + [12750] = "Monster - Item, Book - Black Skull Glowing", + [12751] = "Monster - Item, Book - Blue", + [12752] = "Cap of the Scarlet Savant", + [12753] = "Skin of Shadow", + [12754] = "Monster - Axe, 2H War Green - Mulgore Protector", + [12755] = "Monster - Sword2H, Blackblade of Shahram", + [12756] = "Leggings of Arcana", + [12757] = "Breastplate of Bloodthirst", + [12762] = "Secrecy of Plans", + [12763] = "Un\'Goro Etherfruit", + [12764] = "Thorium Greatsword", + [12765] = "Secret Note #1", + [12766] = "Secret Note #2", + [12767] = "Thorium Stiletto", + [12768] = "Secret Note #3", + [12769] = "Bleakwood Hew", + [12770] = "Bijou\'s Information", + [12771] = "Empty Firewater Flask", + [12772] = "Inlaid Thorium Hammer", + [12773] = "Ornate Thorium Handaxe", + [12774] = "Dawn\'s Edge", + [12775] = "Huge Thorium Battleaxe", + [12776] = "Enchanted Battlehammer", + [12777] = "Blazing Rapier", + [12778] = "Document Chest", + [12779] = "Rune Edge", + [12780] = "General Drakkisath\'s Command", + [12781] = "Serenity", + [12782] = "Corruption", + [12783] = "Heartseeker", + [12784] = "Arcanite Reaper", + [12785] = "Incendia Powder", + [12786] = "Monster - Mace, Horde Skull Club", + [12787] = "Monster - Mace, Horde Bone Claw Hammer", + [12788] = "Monster - Mace, Horde Bone Spike Hammer", + [12789] = "Horn of Uber Buffing (test)", + [12790] = "Arcanite Champion", + [12791] = "Barman Shanker", + [12792] = "Volcanic Hammer", + [12793] = "Mixologist\'s Tunic", + [12794] = "Masterwork Stormhammer", + [12795] = "Blood Talon", + [12796] = "Hammer of the Titans", + [12797] = "Frostguard", + [12798] = "Annihilator", + [12799] = "Large Opal", + [12800] = "Azerothian Diamond", + [12801] = "Monster - Item, Bucket - Wood", + [12802] = "Darkspear", + [12803] = "Living Essence", + [12804] = "Powerful Mojo", + [12805] = "Orb of Fire", + [12806] = "Unforged Rune Covered Breastplate", + [12807] = "Scourge Banner", + [12808] = "Essence of Undeath", + [12809] = "Guardian Stone", + [12810] = "Enchanted Leather", + [12811] = "Righteous Orb", + [12812] = "Unfired Plate Gauntlets", + [12813] = "Flask of Mystery Goo", + [12814] = "Flame in a Bottle", + [12815] = "Beacon Torch", + [12816] = "Plans: Thorium Greatsword", + [12817] = "Plans: Bleakwood Hew", + [12818] = "Plans: Inlaid Thorium Hammer", + [12819] = "Plans: Ornate Thorium Handaxe", + [12820] = "Winterfall Firewater", + [12821] = "Plans: Dawn\'s Edge", + [12822] = "Toxic Horror Droplet", + [12823] = "Plans: Huge Thorium Battleaxe", + [12824] = "Plans: Enchanted Battlehammer", + [12825] = "Plans: Blazing Rapier", + [12826] = "Plans: Rune Edge", + [12827] = "Plans: Serenity", + [12828] = "Plans: Volcanic Hammer", + [12829] = "Winterfall Crate", + [12830] = "Plans: Corruption", + [12831] = "Plans: Blood Talon", + [12832] = "Plans: Darkspear", + [12833] = "Plans: Hammer of the Titans", + [12834] = "Plans: Arcanite Champion", + [12835] = "Plans: Annihilator", + [12836] = "Plans: Frostguard", + [12837] = "Plans: Masterwork Stormhammer", + [12838] = "Plans: Arcanite Reaper", + [12839] = "Plans: Heartseeker", + [12840] = "Minion\'s Scourgestone", + [12841] = "Invader\'s Scourgestone", + [12842] = "Crudely-written Log", + [12843] = "Corruptor\'s Scourgestone", + [12844] = "Argent Dawn Valor Token", + [12845] = "Medallion of Faith", + [12846] = "Argent Dawn Commission", + [12847] = "Soul Stained Pike", + [12848] = "Blood Stained Pike", + [12849] = "Demon Kissed Sack", + [12850] = "Monster - Item, Bag - Black", + [12851] = "Monster - Item, Bag - Black Offhand", + [12852] = "Monster - Item, Bag - Gray", + [12853] = "Monster - Item, Bag - Gray Offhand", + [12854] = "Monster - Item, Bag - Green", + [12855] = "Monster - Item, Bag - Green Offhand", + [12856] = "Monster - Item, Bag - Red", + [12857] = "Monster - Item, Bag - Red Offhand", + [12858] = "Monster - Item, Bag - White", + [12859] = "Monster - Item, Bag - White Offhand", + [12860] = "Monster - Item, Book - Blue Offhand", + [12861] = "Monster - Item, Book - Black Skull Glowing Offhand", + [12862] = "Monster - Item, Book - Black Simple", + [12863] = "Monster - Item, Book - Black Simple Offhand", + [12864] = "Monster - Item, Book - B01 Black Glowing", + [12865] = "Monster - Item, Book - B01 Black Glowing Offhand", + [12866] = "Monster - Item, Book - B02 Black Glowing", + [12867] = "Monster - Item, Book - B02 Black Glowing Offhand", + [12868] = "Monster - Item, Book - B02 Blue Glowing", + [12869] = "Monster - Item, Book - B02 Blue Glowing Offhand", + [12870] = "Monster - Item, Potion Red Offhand", + [12871] = "Chromatic Carapace", + [12882] = "Monster - Sword2H, Horde Curved Silver", + [12883] = "Monster - Mace, Thaurissan Silver", + [12884] = "Arnak\'s Hoof", + [12885] = "Pamela\'s Doll", + [12886] = "Pamela\'s Doll\'s Head", + [12887] = "Pamela\'s Doll\'s Left Side", + [12888] = "Pamela\'s Doll\'s Right Side", + [12889] = "Monster - Sword2H, Horde Curved Black", + [12890] = "Monster - Sword, Militia Long Sword", + [12891] = "Jaron\'s Pick", + [12892] = "Monster - Sword1H, Dark Short Sword", + [12893] = "Monster - Shield, Black Skull", + [12894] = "Joseph\'s Wedding Ring", + [12895] = "Breastplate of the Chromatic Flight", + [12896] = "First Relic Fragment", + [12897] = "Second Relic Fragment", + [12898] = "Third Relic Fragment", + [12899] = "Fourth Relic Fragment", + [12900] = "Annals of Darrowshire", + [12901] = "Monster - Mace2H, Golden Stone Hammer", + [12902] = "Monster - Sword2H, Luminous Evil Blade", + [12903] = "Legguards of the Chromatic Defier", + [12904] = "Shawn\'s Super Special Swami Hat", + [12905] = "Wildfire Cape", + [12906] = "Purified Moonwell Water", + [12907] = "Corrupt Moonwell Water", + [12922] = "Empty Canteen", + [12923] = "Awbee\'s Scale", + [12924] = "Ritual Candle", + [12925] = "Arikara Serpent Skin", + [12926] = "Flaming Band", + [12927] = "Truestrike Shoulders", + [12928] = "Umi\'s Mechanical Yeti", + [12929] = "Emberfury Talisman", + [12930] = "Briarwood Reed", + [12931] = "Monster - Shield, Scarlet Crusade A01/A02 Model", + [12932] = "Monster - Shield, Scarlet Crusade A02", + [12933] = "Monster - Shield, Scarlet Crusade B03", + [12934] = "Monster - Mace, Maul B03 Red", + [12935] = "Warmaster Legguards", + [12936] = "Battleborn Armbraces", + [12937] = "Monster - Staff, Basic Red", + [12938] = "Blood of Heroes", + [12939] = "Dal\'Rend\'s Tribal Guardian", + [12940] = "Dal\'Rend\'s Sacred Charge", + [12941] = "Monster - Wand, Jeweled - B02 Red", + [12942] = "Panther Cage Key", + [12943] = "Monster - Staff, 3 Piece Taped Staff Red", + [12944] = "Monster - Sword, Golden Long", + [12945] = "Legplates of the Chromatic Defier", + [12946] = "Hypercapacitor Gizmo", + [12947] = "Alex\'s Ring of Audacity", + [12948] = "Monster - Item, Handheld Holy Symbol ", + [12949] = "Monster - Sword2H, Red White Broad", + [12950] = "Monster - Mace2H, Warhammer Ebony", + [12951] = "Monster - Axe, 2H War - Red", + [12952] = "Skull of Gyth", + [12953] = "Dragoneye Coif", + [12954] = "Davil\'s Libram", + [12955] = "Redpath\'s Shield", + [12956] = "Skull of Horgus", + [12957] = "Shattered Sword of Marduk", + [12958] = "Recipe: Transmute Arcanite", + [12959] = "Monster - Staff, Demon Skull Staff", + [12960] = "Tribal War Feathers", + [12961] = "JEFF TEST SHIELD", + [12962] = "JEFF TEST GLOVES", + [12963] = "Blademaster Leggings", + [12964] = "Tristam Legguards", + [12965] = "Spiritshroud Leggings", + [12966] = "Blackmist Armguards", + [12967] = "Bloodmoon Cloak", + [12968] = "Frostweaver Cape", + [12969] = "Seeping Willow", + [12970] = "General\'s Ceremonial Plate", + [12971] = "JEFF TEST SWORD", + [12972] = "JEFF TEST SWORD II", + [12973] = "Scarlet Cannonball", + [12974] = "The Black Knight", + [12975] = "Prospector Axe", + [12976] = "Ironpatch Blade", + [12977] = "Magefist Gloves", + [12978] = "Stormbringer Belt", + [12979] = "Firebane Cloak", + [12980] = "Monster - Shield, Wall Metal Silver", + [12981] = "Monster - Shield, Wall Metal Gold", + [12982] = "Silver-linked Footguards", + [12983] = "Rakzur Club", + [12984] = "Skycaller", + [12985] = "Ring of Defense", + [12986] = "Monster - Spear, Broad Notched", + [12987] = "Darkweave Breeches", + [12988] = "Starsight Tunic", + [12989] = "Gargoyle\'s Bite", + [12990] = "Razor\'s Edge", + [12991] = "Monster - Dagger, Curvey Green Blade", + [12992] = "Searing Blade", + [12993] = "Monster - Sword, Green Gold Scimitar", + [12994] = "Thorbia\'s Gauntlets", + [12995] = "Monster - Shield, Wall Metal Red", + [12996] = "Band of Purification", + [12997] = "Redbeard Crest", + [12998] = "Magician\'s Mantle", + [12999] = "Drakewing Bands", + [13000] = "Staff of Hale Magefire", + [13001] = "Maiden\'s Circle", + [13002] = "Lady Alizabeth\'s Pendant", + [13003] = "Lord Alexander\'s Battle Axe", + [13004] = "Torch of Austen", + [13005] = "Amy\'s Blanket", + [13006] = "Mass of McGowan", + [13007] = "Mageflame Cloak", + [13008] = "Dalewind Trousers", + [13009] = "Cow King\'s Hide", + [13010] = "Dreamsinger Legguards", + [13011] = "Silver-lined Belt", + [13012] = "Yorgen Bracers", + [13013] = "Elder Wizard\'s Mantle", + [13014] = "Axe of Rin\'ji", + [13015] = "Serathil", + [13016] = "Killmaim", + [13017] = "Hellslayer Battle Axe", + [13018] = "Executioner\'s Cleaver", + [13019] = "Harpyclaw Short Bow", + [13020] = "Skystriker Bow", + [13021] = "Needle Threader", + [13022] = "Gryphonwing Long Bow", + [13023] = "Eaglehorn Long Bow", + [13024] = "Beazel\'s Basher", + [13025] = "Deadwood Sledge", + [13026] = "Heaven\'s Light", + [13027] = "Bonesnapper", + [13028] = "Bludstone Hammer", + [13029] = "Umbral Crystal", + [13030] = "Basilisk Bone", + [13031] = "Orb of Mistmantle", + [13032] = "Sword of Corruption", + [13033] = "Zealot Blade", + [13034] = "Speedsteel Rapier", + [13035] = "Serpent Slicer", + [13036] = "Assassination Blade", + [13037] = "Crystalpine Stinger", + [13038] = "Swiftwind", + [13039] = "Skull Splitting Crossbow", + [13040] = "Heartseeking Crossbow", + [13041] = "Guardian Blade", + [13042] = "Sword of the Magistrate", + [13043] = "Blade of the Titans", + [13044] = "Demonslayer", + [13045] = "Viscous Hammer", + [13046] = "Blanchard\'s Stout", + [13047] = "Twig of the World Tree", + [13048] = "Looming Gavel", + [13049] = "Deanship Claymore", + [13050] = "Monster - Staff, Ornate Jeweled Staff - Red", + [13051] = "Witchfury", + [13052] = "Warmonger", + [13053] = "Doombringer", + [13054] = "Grim Reaper", + [13055] = "Bonechewer", + [13056] = "Frenzied Striker", + [13057] = "Bloodpike", + [13058] = "Khoo\'s Point", + [13059] = "Stoneraven", + [13060] = "The Needler", + [13061] = "Monster - Staff, Green Crystal Sphere", + [13062] = "Thunderwood", + [13063] = "Starfaller", + [13064] = "Jaina\'s Firestarter", + [13065] = "Wand of Allistarj", + [13066] = "Wyrmslayer Spaulders", + [13067] = "Hydralick Armor", + [13068] = "Obsidian Greaves", + [13069] = "Monster - Staff, D01 Flaming Red", + [13070] = "Sapphiron\'s Scale Boots", + [13071] = "Plated Fist of Hakoo", + [13072] = "Stonegrip Gauntlets", + [13073] = "Mugthol\'s Helm", + [13074] = "Golem Shard Leggings", + [13075] = "Direwing Legguards", + [13076] = "Giantslayer Bracers", + [13077] = "Girdle of Uther", + [13078] = "Monster - Staff, Pointed Red Crystal", + [13079] = "Shield of Thorsen", + [13080] = "Widow\'s Clutch", + [13081] = "Skullance Shield", + [13082] = "Mountainside Buckler", + [13083] = "Garrett Family Crest", + [13084] = "Kaleidoscope Chain", + [13085] = "Horizon Choker", + [13086] = "Reins of the Winterspring Frostsaber", + [13087] = "River Pride Choker", + [13088] = "Gazlowe\'s Charm", + [13089] = "Skibi\'s Pendant", + [13090] = "Breastplate of the Chosen", + [13091] = "Medallion of Grand Marshal Morris", + [13092] = "Deprecated Dragonstalker Tunic", + [13093] = "Blush Ember Ring", + [13094] = "The Queen\'s Jewel", + [13095] = "Assault Band", + [13096] = "Band of the Hierophant", + [13097] = "Thunderbrow Ring", + [13098] = "Painweaver Band", + [13099] = "Moccasins of the White Hare", + [13100] = "Furen\'s Boots", + [13101] = "Wolfrunner Shoes", + [13102] = "Cassandra\'s Grace", + [13103] = "Pads of the Venom Spider", + [13104] = "Monster - Axe, Hatchet C03 Red", + [13105] = "Sutarn\'s Ring", + [13106] = "Glowing Magical Bracelets", + [13107] = "Magiskull Cuffs", + [13108] = "Tigerstrike Mantle", + [13109] = "Blackflame Cape", + [13110] = "Wolffear Harness", + [13111] = "Sandals of the Insurgent", + [13112] = "Winged Helm", + [13113] = "Feathermoon Headdress", + [13114] = "Troll\'s Bane Leggings", + [13115] = "Sheepshear Mantle", + [13116] = "Spaulders of the Unseen", + [13117] = "Ogron\'s Sash", + [13118] = "Serpentine Sash", + [13119] = "Enchanted Kodo Bracers", + [13120] = "Deepfury Bracers", + [13121] = "Wing of the Whelpling", + [13122] = "Dark Phantom Cape", + [13123] = "Dreamwalker Armor", + [13124] = "Ravasaur Scale Boots", + [13125] = "Elven Chain Boots", + [13126] = "Battlecaller Gauntlets", + [13127] = "Frostreaver Crown", + [13128] = "High Bergg Helm", + [13129] = "Firemane Leggings", + [13130] = "Windrunner Legguards", + [13131] = "Sparkleshell Mantle", + [13132] = "Skeletal Shoulders", + [13133] = "Drakesfire Epaulets", + [13134] = "Belt of the Gladiator", + [13135] = "Lordly Armguards", + [13136] = "Lil Timmy\'s Peashooter", + [13137] = "Ironweaver", + [13138] = "The Silencer", + [13139] = "Guttbuster", + [13140] = "Blood Red Key", + [13141] = "Tooth of Gnarr", + [13142] = "Brigam Girdle", + [13143] = "Mark of the Dragon Lord", + [13144] = "Serenity Belt", + [13145] = "Enormous Ogre Belt", + [13146] = "Shell Launcher Shotgun", + [13147] = "Monster - Bow, White", + [13148] = "Chillpike", + [13149] = "Eldarathian Tome of Summoning Vol. 1", + [13150] = "Monster - Sword2H, Claymore Blue", + [13151] = "The Mystic Studies of Hor\'ank", + [13152] = "The Story With No Conclusion", + [13153] = "Tome of Mal\'cin Vorail", + [13154] = "Jael\'marin\'s Studies of the Arcane", + [13155] = "Resonating Skull", + [13156] = "Mystic Crystal", + [13157] = "Fetid Skull", + [13158] = "Words of the High Chief", + [13159] = "Bone Dust", + [13160] = "Monster - Sword2H, Claymore Silver", + [13161] = "Trindlehaven Staff", + [13162] = "Reiver Claws", + [13163] = "Relentless Scythe", + [13164] = "Heart of the Scale", + [13165] = "Monster - Sword, Long Silver - Green Pommel", + [13166] = "Slamshot Shoulders", + [13167] = "Fist of Omokk", + [13168] = "Plate of the Shaman King", + [13169] = "Tressermane Leggings", + [13170] = "Skyshroud Leggings", + [13171] = "Smokey\'s Lighter", + [13172] = "Siabi\'s Premium Tobacco", + [13173] = "Flightblade Throwing Axe", + [13174] = "Plagued Flesh Sample", + [13175] = "Voone\'s Twitchbow", + [13176] = "Scourge Data", + [13177] = "Talisman of Evasion", + [13178] = "Rosewine Circle", + [13179] = "Brazecore Armguards", + [13180] = "Stratholme Holy Water", + [13181] = "Demonskin Gloves", + [13182] = "Phase Blade", + [13183] = "Venomspitter", + [13184] = "Fallbrush Handgrips", + [13185] = "Sunderseer Mantle", + [13186] = "Empty Felstone Field Bottle", + [13187] = "Empty Dalson\'s Tears Bottle", + [13188] = "Empty Writhing Haunt Bottle", + [13189] = "Empty Gahrron\'s Withering Bottle", + [13190] = "Filled Felstone Field Bottle", + [13191] = "Filled Dalson\'s Tears Bottle", + [13192] = "Filled Writhing Haunt Bottle", + [13193] = "Filled Gahrron\'s Withering Bottle", + [13194] = "Felstone Field Cauldron Key", + [13195] = "Dalson\'s Tears Cauldron Key", + [13196] = "Gahrron\'s Withering Cauldron Key", + [13197] = "Writhing Haunt Cauldron Key", + [13198] = "Hurd Smasher", + [13199] = "Crushridge Bindings", + [13202] = "Extended Annals of Darrowshire", + [13203] = "Armswake Cloak", + [13204] = "Bashguuder", + [13205] = "Rhombeard Protector", + [13206] = "Wolfshear Leggings", + [13207] = "Shadow Lord Fel\'dan\'s Head", + [13208] = "Bleak Howler Armguards", + [13209] = "Seal of the Dawn", + [13210] = "Pads of the Dread Wolf", + [13211] = "Slashclaw Bracers", + [13212] = "Halycon\'s Spiked Collar", + [13213] = "Smolderweb\'s Eye", + [13214] = "TestBoots - Puffed Mail Green", + [13216] = "Crown of the Penitent", + [13217] = "Band of the Penitent", + [13218] = "Fang of the Crystal Spider", + [13219] = "Monster - Item, Holy Symbol Offhand", + [13220] = "Monster - Item, Holy Symbol", + [13221] = "Monster - Item, Staff Glowing Jeweled B01 Red Offhand", + [13222] = "Monster - Sword, Flaming Crimson Battlemage Longsword", + [13223] = "Stratholme Courier\'s Pouch", + [13242] = "Deprecated Stormrage Boots", + [13243] = "Argent Defender", + [13244] = "Gilded Gauntlets", + [13245] = "Kresh\'s Back", + [13246] = "Argent Avenger", + [13247] = "Quartermaster Zigris\' Footlocker", + [13248] = "Burstshot Harquebus", + [13249] = "Argent Crusader", + [13250] = "Head of Balnazzar", + [13251] = "Head of Baron Rivendare", + [13252] = "Cloudrunner Girdle", + [13253] = "Hands of Power", + [13254] = "Astral Guard", + [13255] = "Trueaim Gauntlets", + [13256] = "Egan\'s Blaster", + [13257] = "Demonic Runed Spaulders", + [13258] = "Slaghide Gauntlets", + [13259] = "Ribsteel Footguards", + [13260] = "Wind Dancer Boots", + [13261] = "Globe of D\'sak", + [13262] = "Ashbringer", + [13282] = "Ogreseer Tower Boots", + [13283] = "Magus Ring", + [13284] = "Swiftdart Battleboots", + [13285] = "The Nicker", + [13286] = "Rivenspike", + [13287] = "Pattern: Raptor Hide Harness", + [13288] = "Pattern: Raptor Hide Belt", + [13289] = "Egan\'s Blaster", + [13290] = "Monster - Wand, Horde Purple Orb", + [13291] = "Monster - Wand, Horde Red Feathered", + [13292] = "Monster - Wand, Horde Demon Skull", + [13293] = "Monster - Wand, Horde Dark Skull", + [13294] = "dsds", + [13302] = "Market Row Postbox Key", + [13303] = "Crusaders\' Square Postbox Key", + [13304] = "Festival Lane Postbox Key", + [13305] = "Elders\' Square Postbox Key", + [13306] = "King\'s Square Postbox Key", + [13307] = "Fras Siabi\'s Postbox Key", + [13308] = "Schematic: Ice Deflector", + [13309] = "Schematic: Lovingly Crafted Boomstick", + [13310] = "Schematic: Accurate Scope", + [13311] = "Schematic: Mechanical Dragonling", + [13312] = "Monster - Mace, Hammer Gold Orange", + [13313] = "Sacred Highborne Writings", + [13314] = "Alanna\'s Embrace", + [13315] = "Testament of Hope", + [13316] = "Monster - Sword2H, Claymore Silver Yellow Glow", + [13317] = "Whistle of the Ivory Raptor", + [13318] = "Monster - Shield, Horde A01 Red", + [13319] = "Monster - Shield, Horde B03", + [13320] = "Arcane Quickener", + [13321] = "Green Mechanostrider", + [13322] = "Unpainted Mechanostrider", + [13323] = "Purple Mechanostrider", + [13324] = "Red and Blue Mechanostrider", + [13325] = "Fluorescent Green Mechanostrider", + [13326] = "White Mechanostrider Mod A", + [13327] = "Icy Blue Mechanostrider Mod A", + [13328] = "Black Ram", + [13329] = "Frost Ram", + [13330] = "Dereks Radish Bag", + [13331] = "Red Skeletal Horse", + [13332] = "Blue Skeletal Horse", + [13333] = "Brown Skeletal Horse", + [13334] = "Green Skeletal Warhorse", + [13335] = "Deathcharger\'s Reins", + [13336] = "Monster - Staff, Feathered Black", + [13337] = "Monster - Staff, Feathered Gold", + [13338] = "Monster - Staff, Feathered Invert", + [13339] = "Monster - Staff, Feathered Silver", + [13340] = "Cape of the Black Baron", + [13341] = "Monster - Item, Vial Yellow Offhand", + [13342] = "Pet Fish", + [13343] = "Pet Stone", + [13344] = "Dracorian Gauntlets", + [13345] = "Seal of Rivendare", + [13346] = "Robes of the Exalted", + [13347] = "Crystal of Zin-Malor", + [13348] = "Demonshear", + [13349] = "Scepter of the Unholy", + [13350] = "Insignia of the Black Guard", + [13351] = "Crimson Hammersmith\'s Apron", + [13352] = "Vosh\'gajin\'s Snakestone", + [13353] = "Book of the Dead", + [13354] = "Ectoplasmic Resonator", + [13356] = "Somatic Intensifier", + [13357] = "Osseous Agitator", + [13358] = "Wyrmtongue Shoulders", + [13359] = "Crown of Tyranny", + [13360] = "Gift of the Elven Magi", + [13361] = "Skullforge Reaver", + [13362] = "Letter from the Front", + [13363] = "Municipal Proclamation", + [13364] = "Fras Siabi\'s Advertisement", + [13365] = "Town Meeting Notice", + [13366] = "Ingenious Toy", + [13367] = "Wrapped Gift", + [13368] = "Bonescraper", + [13369] = "Fire Striders", + [13370] = "Vitreous Focuser", + [13371] = "Father Flame", + [13372] = "Slavedriver\'s Cane", + [13373] = "Band of Flesh", + [13374] = "Soulstealer Mantle", + [13375] = "Crest of Retribution", + [13376] = "Royal Tribunal Cloak", + [13377] = "Miniature Cannon Balls", + [13378] = "Songbird Blouse", + [13379] = "Piccolo of the Flaming Fire", + [13380] = "Willey\'s Portable Howitzer", + [13381] = "Master Cannoneer Boots", + [13382] = "Cannonball Runner", + [13383] = "Woollies of the Prancing Minstrel", + [13384] = "Rainbow Girdle", + [13385] = "Tome of Knowledge", + [13386] = "Archivist Cape", + [13387] = "Foresight Girdle", + [13388] = "The Postmaster\'s Tunic", + [13389] = "The Postmaster\'s Trousers", + [13390] = "The Postmaster\'s Band", + [13391] = "The Postmaster\'s Treads", + [13392] = "The Postmaster\'s Seal", + [13393] = "Malown\'s Slam", + [13394] = "Skul\'s Cold Embrace", + [13395] = "Skul\'s Fingerbone Claws", + [13396] = "Skul\'s Ghastly Touch", + [13397] = "Stoneskin Gargoyle Cape", + [13398] = "Boots of the Shrieker", + [13399] = "Gargoyle Shredder Talons", + [13400] = "Vambraces of the Sadist", + [13401] = "The Cruel Hand of Timmy", + [13402] = "Timmy\'s Galoshes", + [13403] = "Grimgore Noose", + [13404] = "Mask of the Unforgiven", + [13405] = "Wailing Nightbane Pauldrons", + [13406] = "Monster - Item, Mutton Offhand", + [13407] = "Monster - Item, Mutton with Bite Offhand", + [13408] = "Soul Breaker", + [13409] = "Tearfall Bracers", + [13422] = "Stonescale Eel", + [13423] = "Stonescale Oil", + [13442] = "Mighty Rage Potion", + [13443] = "Superior Mana Potion", + [13444] = "Major Mana Potion", + [13445] = "Elixir of Superior Defense", + [13446] = "Major Healing Potion", + [13447] = "Elixir of the Sages", + [13448] = "The Deed to Caer Darrow", + [13450] = "The Deed to Southshore", + [13451] = "The Deed to Tarren Mill", + [13452] = "Elixir of the Mongoose", + [13453] = "Elixir of Brute Force", + [13454] = "Greater Arcane Elixir", + [13455] = "Greater Stoneshield Potion", + [13456] = "Greater Frost Protection Potion", + [13457] = "Greater Fire Protection Potion", + [13458] = "Greater Nature Protection Potion", + [13459] = "Greater Shadow Protection Potion", + [13460] = "Greater Holy Protection Potion", + [13461] = "Greater Arcane Protection Potion", + [13462] = "Purification Potion", + [13463] = "Dreamfoil", + [13464] = "Golden Sansam", + [13465] = "Mountain Silversage", + [13466] = "Plaguebloom", + [13467] = "Icecap", + [13468] = "Black Lotus", + [13469] = "Head of Weldon Barov", + [13470] = "Head of Alexi Barov", + [13471] = "The Deed to Brill", + [13472] = "Onyxia Scale Cloak", + [13473] = "Felstone Good Luck Charm", + [13474] = "Farmer Dalson\'s Shotgun", + [13475] = "Dalson Family Wedding Ring", + [13476] = "Recipe: Mighty Rage Potion", + [13477] = "Recipe: Superior Mana Potion", + [13478] = "Recipe: Elixir of Superior Defense", + [13479] = "Recipe: Elixir of the Sages", + [13480] = "Recipe: Major Healing Potion", + [13481] = "Recipe: Elixir of Brute Force", + [13482] = "Recipe: Transmute Air to Fire", + [13483] = "Recipe: Transmute Fire to Earth", + [13484] = "Recipe: Transmute Earth to Water", + [13485] = "Recipe: Transmute Water to Air", + [13486] = "Recipe: Transmute Undeath to Water", + [13487] = "Recipe: Transmute Water to Undeath", + [13488] = "Recipe: Transmute Life to Earth", + [13489] = "Recipe: Transmute Earth to Life", + [13490] = "Recipe: Greater Stoneshield Potion", + [13491] = "Recipe: Elixir of the Mongoose", + [13492] = "Recipe: Purification Potion", + [13493] = "Recipe: Greater Arcane Elixir", + [13494] = "Recipe: Greater Fire Protection Potion", + [13495] = "Recipe: Greater Frost Protection Potion", + [13496] = "Recipe: Greater Nature Protection Potion", + [13497] = "Recipe: Greater Arcane Protection Potion", + [13498] = "Handcrafted Mastersmith Leggings", + [13499] = "Recipe: Greater Shadow Protection Potion", + [13500] = "Recipe: Greater Holy Protection Potion", + [13501] = "Recipe: Major Mana Potion", + [13502] = "Handcrafted Mastersmith Girdle", + [13503] = "Alchemists\' Stone", + [13504] = "Monster - Sword, Doomguard", + [13505] = "Runeblade of Baron Rivendare", + [13506] = "Flask of Petrification", + [13507] = "Cliffwatcher Longhorn Report", + [13508] = "Eye of Arachnida", + [13509] = "Clutch of Foresight", + [13510] = "Flask of the Titans", + [13511] = "Flask of Distilled Wisdom", + [13512] = "Flask of Supreme Power", + [13513] = "Flask of Chromatic Resistance", + [13514] = "Wail of the Banshee", + [13515] = "Ramstein\'s Lightning Bolts", + [13516] = "Onyxia\'s Cloak of C-Blockage", + [13517] = "Recipe: Alchemists\' Stone", + [13518] = "Recipe: Flask of Petrification", + [13519] = "Recipe: Flask of the Titans", + [13520] = "Recipe: Flask of Distilled Wisdom", + [13521] = "Recipe: Flask of Supreme Power", + [13522] = "Recipe: Flask of Chromatic Resistance", + [13523] = "Blood of Innocents", + [13524] = "Skull of Burning Shadows", + [13525] = "Darkbind Fingers", + [13526] = "Flamescarred Girdle", + [13527] = "Lavawalker Greaves", + [13528] = "Twilight Void Bracers", + [13529] = "Husk of Nerub\'enkan", + [13530] = "Fangdrip Runners", + [13531] = "Crypt Stalker Leggings", + [13532] = "Darkspinner Claws", + [13533] = "Acid-etched Pauldrons", + [13534] = "Banshee Finger", + [13535] = "Coldtouch Phantom Wraps", + [13536] = "Horn of Awakening", + [13537] = "Chillhide Bracers", + [13538] = "Windshrieker Pauldrons", + [13539] = "Banshee\'s Touch", + [13542] = "Demon Box", + [13543] = "Krastinov\'s Bag of Horrors UNUSED", + [13544] = "Spectral Essence", + [13545] = "Shellfish", + [13546] = "Bloodbelly Fish", + [13562] = "Remains of Trey Lightforge", + [13582] = "Zergling Leash", + [13583] = "Panda Collar", + [13584] = "Diablo Stone", + [13585] = "Keepsake of Remembrance", + [13586] = "Test Crit Chest", + [13602] = "Greater Spellstone", + [13603] = "Major Spellstone", + [13604] = "Monster - Item, Bucket - Wood Offhand", + [13605] = "Monster - Item, Bucket - Metal Dirty Offhand", + [13606] = "Monster - Item, Bucket - Metal Offhand", + [13607] = "Monster - Item, Bucket - Metal", + [13608] = "Monster - Item, Bucket - Metal Dirty", + [13609] = "Monster - Item, Lantern - Round Offhand", + [13610] = "Monster - Item, Lantern - Square Offhand", + [13611] = "Monster - Hot Iron Poker Offhand", + [13612] = "Monster - Item, Glass - Purple Wine", + [13622] = "Monster - Staff, D01 Circling Black Skull", + [13623] = "Monster - Sword2H, Horde Skull Blue Flame", + [13624] = "Soulbound Keepsake", + [13625] = "Monster - Axe, Horde B03 Copper", + [13626] = "Human Head of Ras Frostwhisper", + [13627] = "Monster - Sword, Horde Jagged Blue", + [13628] = "Monster - Shield, Horde B04", + [13629] = "Monster - Shield, Horde C02", + [13630] = "Monster - Shield, Horde C03", + [13631] = "Monster - Spear, Badass Red", + [13632] = "Monster - Spear, Badass Blue", + [13642] = "Level 15 Test Gear Cloth - Mage/Priest/Warlock", + [13643] = "Level 15 Test Gear Leather - Druid/Shaman", + [13644] = "Level 15 Test Gear Leather - Hunter/Rogue", + [13645] = "Level 15 Test Gear Mail - Paladin/Warrior", + [13646] = "Level 20 Test Gear Cloth - Mage/Priest/Warlock", + [13647] = "Level 25 Test Gear Cloth - Mage/Priest/Warlock", + [13648] = "Level 30 Test Gear Cloth - Mage/Priest/Warlock", + [13649] = "Level 35 Test Gear Cloth - Mage/Priest/Warlock", + [13650] = "Level 40 Test Gear Cloth - Mage/Priest/Warlock", + [13651] = "Level 45 Test Gear Cloth - Mage/Priest/Warlock", + [13652] = "Level 50 Test Gear Cloth - Mage/Priest/Warlock", + [13653] = "Level 55 Test Gear Cloth - Mage/Priest/Warlock", + [13654] = "Level 60 Test Gear Cloth - Mage/Priest/Warlock", + [13655] = "Level 65 Test Gear Cloth - Mage", + [13656] = "Level 20 Test Gear Mail - Paladin/Warrior", + [13657] = "Level 25 Test Gear Mail - Paladin/Warrior", + [13658] = "Level 30 Test Gear Mail - Paladin/Warrior", + [13659] = "Level 35 Test Gear Mail - Paladin/Warrior", + [13660] = "Level 20 Test Gear Leather - Druid/Shaman", + [13661] = "Level 25 Test Gear Leather - Druid/Shaman", + [13662] = "Level 30 Test Gear Leather - Druid/Shaman", + [13663] = "Level 35 Test Gear Leather - Druid/Shaman", + [13664] = "Level 20 Test Gear Leather - Hunter/Rogue", + [13665] = "Level 25 Test Gear Leather - Hunter/Rogue", + [13666] = "Level 30 Test Gear Leather - Hunter/Rogue", + [13667] = "Level 35 Test Gear Leather - Hunter/Rogue", + [13668] = "Level 40 Test Gear Leather - Druid", + [13669] = "Level 45 Test Gear Leather - Druid", + [13670] = "Level 50 Test Gear Leather - Druid", + [13671] = "Level 55 Test Gear Leather - Druid", + [13672] = "Level 60 Test Gear Leather - Druid", + [13673] = "Level 65 Test Gear Leather - Druid", + [13674] = "Level 40 Test Gear Leather - Rogue", + [13675] = "Level 45 Test Gear Leather - Rogue", + [13676] = "Level 50 Test Gear Leather - Rogue", + [13677] = "Level 55 Test Gear Leather - Rogue", + [13678] = "Level 60 Test Gear Leather - Rogue", + [13679] = "Level 65 Test Gear Leather - Rogue", + [13680] = "Level 40 Test Gear Plate - Paladin/Warrior", + [13681] = "Level 45 Test Gear Plate - Paladin/Warrior", + [13682] = "Level 50 Test Gear Plate - Paladin/Warrior", + [13683] = "Level 55 Test Gear Plate - Paladin/Warrior", + [13684] = "Level 60 Test Gear Plate - Paladin/Warrior", + [13685] = "Level 65 Test Gear Plate - Paladin", + [13686] = "Level 40 Test Gear Mail - Hunter", + [13687] = "Level 45 Test Gear Mail - Hunter", + [13688] = "Level 50 Test Gear Mail - Hunter", + [13689] = "Level 55 Test Gear Mail - Hunter", + [13690] = "Level 60 Test Gear Mail - Hunter", + [13691] = "Level 65 Test Gear Mail - Hunter", + [13692] = "Level 40 Test Gear Mail - Shaman", + [13693] = "Level 45 Test Gear Mail - Shaman", + [13694] = "Level 50 Test Gear Mail - Shaman", + [13695] = "Level 55 Test Gear Mail - Shaman", + [13696] = "Level 60 Test Gear Mail - Shaman", + [13697] = "Level 65 Test Gear Mail - Shaman", + [13698] = "Monster - Staff, Ornate Warlock Staff Black Glow Low", + [13699] = "Firestone", + [13700] = "Greater Firestone", + [13701] = "Major Firestone", + [13702] = "Doom Weed", + [13703] = "Kodo Bone", + [13704] = "Skeleton Key", + [13705] = "Monster - Staff, Yellow Jeweled with Low Purple Glow", + [13706] = "Monster - Axe, 2H Horde Black Tombstone", + [13707] = "Monster - Sword, Horde Sword B04 Black", + [13708] = "Monster - Sword2H, Horde Massive Blue", + [13709] = "Monster - Staff Green Sphere Glowing", + [13710] = "Test Stamina Chest", + [13711] = "Test Attack Power Chest", + [13712] = "Test Sword Chest", + [13713] = "Test Dodge Chest", + [13714] = "Test Parry Chest", + [13715] = "Test Block Chest", + [13716] = "Test Haste Chest", + [13717] = "Test Hit Chance Chest", + [13718] = "Monster - Sword, Horde Jagged Red", + [13719] = "Monster - Sword, Horde Jagged Red w/ Low Yellow Glow", + [13720] = "Monster - Staff, Feathered Invert - Glow Black High", + [13721] = "Monster - Staff, Wooden Handle Spiral Head White", + [13722] = "Monster - Staff, Demon Skull Staff Low Purple Flame", + [13723] = "Monster - Staff, Wood w/ Spiral Head White Low Purple Glow", + [13724] = "Enriched Manna Biscuit", + [13725] = "Krastinov\'s Bag of Horrors", + [13726] = "[PH] Rising Dawn Gloves", + [13727] = "[PH] Brilliant Dawn Gloves", + [13728] = "[PH] Shining Dawn Gloves", + [13729] = "[PH] Brilliant Dawn Mitts", + [13730] = "[PH] Brilliant Dawn Fists", + [13731] = "[PH] Brilliant Dawn Gauntlets", + [13732] = "[PH] Rising Dawn Mitts", + [13733] = "[PH] Rising Dawn Fists", + [13734] = "[PH] Rising Dawn Gauntlets", + [13735] = "[PH] Shining Dawn Mitts", + [13736] = "[PH] Shining Dawn Fists", + [13737] = "[PH] Shining Dawn Gauntlets", + [13738] = "[PH] Cloth Bracers of the Brilliant Dawn", + [13739] = "[PH] Cloth Bracers of the Rising Dawn", + [13740] = "[PH] Cloth Bracers of the Shining Dawn", + [13741] = "[PH] Leather Bracers of the Brilliant Dawn", + [13742] = "[PH] Mail Bracers of the Brilliant Dawn", + [13743] = "[PH] Plate Bracers of the Brilliant Dawn", + [13744] = "[PH] Plate Bracers of the Rising Dawn", + [13745] = "[PH] Plate Bracers of the Shining Dawn", + [13746] = "[PH] Mail Bracers of the Rising Dawn", + [13747] = "[PH] Mail Bracers of the Shining Dawn", + [13748] = "[PH] Leather Bracers of the Shining Dawn", + [13749] = "[PH] Leather Bracers of the Rising Dawn", + [13750] = "Monster - Staff, Jeweled Blue Staff", + [13751] = "Monster - Staff, Jeweled Yellow Staff", + [13752] = "Soulbound Keepsake", + [13753] = "Monster - Staff, Jeweled Green Staff", + [13754] = "Raw Glossy Mightfish", + [13755] = "Winter Squid", + [13756] = "Raw Summer Bass", + [13757] = "Lightning Eel", + [13758] = "Raw Redgill", + [13759] = "Raw Nightfin Snapper", + [13760] = "Raw Sunscale Salmon", + [13761] = "Frozen Eggs", + [13762] = "[PH] Robe of the Brilliant Dawn", + [13763] = "[PH] Robe of the Rising Dawn", + [13764] = "[PH] Robe of the Shining Dawn", + [13765] = "[PH] Leather Chestguard of the Brilliant Dawn", + [13766] = "[PH] Leather Chestguard of the Shining Dawn", + [13767] = "[PH] Leather Chestguard of the Rising Dawn", + [13768] = "[PH] Mail Chestguard of the Brilliant Dawn", + [13769] = "[PH] Mail Chestguard of the Shining Dawn", + [13770] = "[PH] Mail Chestguard of the Rising Dawn", + [13771] = "[PH] Plate Chestguard of the Brilliant Dawn", + [13772] = "[PH] Plate Chestguard of the Rising Dawn", + [13773] = "[PH] Plate Chestguard of the Shining Dawn", + [13774] = "[PH] Cloth Leggings of the Brilliant Dawn", + [13775] = "[PH] Cloth Leggings of the Rising Dawn", + [13776] = "[PH] Cloth Leggings of the Shining Dawn", + [13777] = "[PH] Leather Leggings of the Brilliant Dawn", + [13778] = "[PH] Leather Leggings of the Rising Dawn", + [13779] = "[PH] Leather Leggings of the Shining Dawn", + [13780] = "[PH] Mail Leggings of the Brilliant Dawn", + [13781] = "[PH] Mail Leggings of the Rising Dawn", + [13782] = "[PH] Mail Leggings of the Shining Dawn", + [13783] = "[PH] Plate Leggings of the Brilliant Dawn", + [13784] = "[PH] Plate Leggings of the Rising Dawn", + [13785] = "[PH] Plate Leggings of the Shining Dawn", + [13786] = "[PH] Brilliant Dawn Hat", + [13787] = "[PH] Rising Dawn Hat", + [13788] = "[PH] Shining Dawn Hat", + [13789] = "[PH] Brilliant Dawn Cap", + [13790] = "[PH] Rising Dawn Cap", + [13791] = "[PH] Shining Dawn Cap", + [13792] = "[PH] Brilliant Dawn Coif", + [13793] = "[PH] Rising Dawn Coif", + [13794] = "[PH] Shining Dawn Coif", + [13795] = "[PH] Brilliant Dawn Helm", + [13796] = "[PH] Rising Dawn Helm", + [13797] = "[PH] Shining Dawn Helm", + [13798] = "[PH] Cloth Boots of the Brilliant Dawn", + [13799] = "[PH] Cloth Boots of the Rising Dawn", + [13800] = "[PH] Cloth Boots of the Shining Dawn", + [13801] = "[PH] Leather Boots of the Brilliant Dawn", + [13802] = "[PH] Leather Boots of the Rising Dawn", + [13803] = "[PH] Leather Boots of the Shining Dawn", + [13804] = "[PH] Mail Boots of the Brilliant Dawn", + [13805] = "[PH] Mail Boots of the Rising Dawn", + [13806] = "[PH] Mail Boots of the Shining Dawn", + [13807] = "[PH] Plate Boots of the Brilliant Dawn", + [13808] = "[PH] Plate Boots of the Rising Dawn", + [13809] = "[PH] Plate Boots of the Shining Dawn", + [13810] = "Blessed Sunfruit", + [13811] = "Necklace of the Dawn", + [13812] = "Ring of the Dawn", + [13813] = "Blessed Sunfruit Juice", + [13814] = "Monster - Shield, Stromgarde B03", + [13815] = "Some Rune", + [13816] = "Fine Longsword", + [13817] = "Tapered Greatsword", + [13818] = "Jagged Axe", + [13819] = "Balanced War Axe", + [13820] = "Clout Mace", + [13821] = "Bulky Maul", + [13822] = "Spiked Dagger", + [13823] = "Stout War Staff", + [13824] = "Recurve Long Bow", + [13825] = "Primed Musket", + [13842] = "Fall/Winter Morning", + [13843] = "Fall/Winter Afternoon", + [13844] = "Fall/Winter Evening", + [13845] = "Fall/Winter Night", + [13846] = "Spring/Summer Morning", + [13847] = "Spring/Summer Afternoon", + [13848] = "Spring/Summer Evening", + [13849] = "Spring/Summer Night", + [13850] = "Rumbleshot\'s Ammo", + [13851] = "Hot Wolf Ribs", + [13852] = "The Grand Crusader\'s Command", + [13853] = "Slab of Carrion Worm Meat", + [13854] = "Monster - Item, Tankard Dirty Offhand", + [13855] = "Monster - Item, Tankard Metal Offhand", + [13856] = "Runecloth Belt", + [13857] = "Runecloth Tunic", + [13858] = "Runecloth Robe", + [13859] = "Monster - Item, Tankard Wooden Offhand", + [13860] = "Runecloth Cloak", + [13861] = "Monster - Item, Tankard Gold", + [13862] = "Monster - Item, Tankard Gold Offhand", + [13863] = "Runecloth Gloves", + [13864] = "Runecloth Boots", + [13865] = "Runecloth Pants", + [13866] = "Runecloth Headband", + [13867] = "Runecloth Shoulders", + [13868] = "Frostweave Robe", + [13869] = "Frostweave Tunic", + [13870] = "Frostweave Gloves", + [13871] = "Frostweave Pants", + [13872] = "Bundle of Wood", + [13873] = "Viewing Room Key", + [13874] = "Heavy Crate", + [13875] = "Ironbound Locked Chest", + [13876] = "40 Pound Grouper", + [13877] = "47 Pound Grouper", + [13878] = "53 Pound Grouper", + [13879] = "59 Pound Grouper", + [13880] = "68 Pound Grouper", + [13881] = "Bloated Redgill", + [13882] = "42 Pound Redgill", + [13883] = "45 Pound Redgill", + [13884] = "49 Pound Redgill", + [13885] = "34 Pound Redgill", + [13886] = "37 Pound Redgill", + [13887] = "52 Pound Redgill", + [13888] = "Darkclaw Lobster", + [13889] = "Raw Whitescale Salmon", + [13890] = "Plated Armorfish", + [13891] = "Bloated Salmon", + [13892] = "Kodo Kombobulator", + [13893] = "Large Raw Mightfish", + [13894] = "Monster - Mace, Standard B01 White", + [13895] = "Formal Dangui", + [13896] = "Blue Wedding Hanbok", + [13897] = "White Traditional Hanbok", + [13898] = "Royal Dangui", + [13899] = "Red Traditional Hanbok", + [13900] = "Green Wedding Hanbok", + [13901] = "15 Pound Salmon", + [13902] = "18 Pound Salmon", + [13903] = "22 Pound Salmon", + [13904] = "25 Pound Salmon", + [13905] = "29 Pound Salmon", + [13906] = "32 Pound Salmon", + [13907] = "7 Pound Lobster", + [13908] = "9 Pound Lobster", + [13909] = "12 Pound Lobster", + [13910] = "15 Pound Lobster", + [13911] = "19 Pound Lobster", + [13912] = "21 Pound Lobster", + [13913] = "22 Pound Lobster", + [13914] = "70 Pound Mightfish", + [13915] = "85 Pound Mightfish", + [13916] = "92 Pound Mightfish", + [13917] = "103 Pound Mightfish", + [13918] = "Reinforced Locked Chest", + [13919] = "Monster - Polearm, Black - Black Flame", + [13920] = "Healthy Dragon Scale", + [13922] = "Monster - Shield, B01 WoodSteelCap", + [13923] = "Monster - Gun, Tauren Blade Silver", + [13924] = "Monster - Gun, Tauren Scope Blade Feathered Silver Deluxe", + [13925] = "Monster - Mace2H, Maul B02 Silver", + [13926] = "Golden Pearl", + [13927] = "Cooked Glossy Mightfish", + [13928] = "Grilled Squid", + [13929] = "Hot Smoked Bass", + [13930] = "Filet of Redgill", + [13931] = "Nightfin Soup", + [13932] = "Poached Sunscale Salmon", + [13933] = "Lobster Stew", + [13934] = "Mightfish Steak", + [13935] = "Baked Salmon", + [13936] = "Deprecated Dreadmaster\'s Shroud", + [13937] = "Headmaster\'s Charge", + [13938] = "Bonecreeper Stylus", + [13939] = "Recipe: Spotted Yellowtail", + [13940] = "Recipe: Cooked Glossy Mightfish", + [13941] = "Recipe: Filet of Redgill", + [13942] = "Recipe: Grilled Squid", + [13943] = "Recipe: Hot Smoked Bass", + [13944] = "Tombstone Breastplate", + [13945] = "Recipe: Nightfin Soup", + [13946] = "Recipe: Poached Sunscale Salmon", + [13947] = "Recipe: Lobster Stew", + [13948] = "Recipe: Mightfish Steak", + [13949] = "Recipe: Baked Salmon", + [13950] = "Detention Strap", + [13951] = "Vigorsteel Vambraces", + [13952] = "Iceblade Hacker", + [13953] = "Silent Fang", + [13954] = "Verdant Footpads", + [13955] = "Stoneform Shoulders", + [13956] = "Clutch of Andros", + [13957] = "Gargoyle Slashers", + [13958] = "Wyrmthalak\'s Shackles", + [13959] = "Omokk\'s Girth Restrainer", + [13960] = "Heart of the Fiend", + [13961] = "Halycon\'s Muzzle", + [13962] = "Vosh\'gajin\'s Strand", + [13963] = "Voone\'s Vice Grips", + [13964] = "Witchblade", + [13965] = "Blackhand\'s Breadth", + [13966] = "Mark of Tyranny", + [13967] = "Windreaver Greaves", + [13968] = "Eye of the Beast", + [13969] = "Loomguard Armbraces", + [13982] = "Warblade of Caer Darrow", + [13983] = "Gravestone War Axe", + [13984] = "Darrowspike", + [13986] = "Crown of Caer Darrow", + [14002] = "Darrowshire Strongguard", + [14022] = "Barov Peasant Caller", + [14023] = "Barov Peasant Caller", + [14024] = "Frightalon", + [14025] = "Mystic\'s Belt", + [14042] = "Cindercloth Vest", + [14043] = "Cindercloth Gloves", + [14044] = "Cindercloth Cloak", + [14045] = "Cindercloth Pants", + [14046] = "Runecloth Bag", + [14047] = "Runecloth", + [14048] = "Bolt of Runecloth", + [14062] = "Kodo Mount", + [14082] = "Monster - Mace2H, Tirion Fordring", + [14083] = "Tyrande\'s Staff", + [14084] = "Monster - Mace2H, Cairne Totem", + [14085] = "Monster - Glaive Vol\'jin", + [14086] = "Beaded Sandals", + [14087] = "Beaded Cuffs", + [14088] = "Beaded Cloak", + [14089] = "Beaded Gloves", + [14090] = "Beaded Britches", + [14091] = "Beaded Robe", + [14092] = "Monster - Staff, Holy Staff Archbishop Benedictus", + [14093] = "Beaded Cord", + [14094] = "Beaded Wraps", + [14095] = "Native Bands", + [14096] = "Native Vest", + [14097] = "Native Pants", + [14098] = "Native Cloak", + [14099] = "Native Sash", + [14100] = "Brightcloth Robe", + [14101] = "Brightcloth Gloves", + [14102] = "Native Handwraps", + [14103] = "Brightcloth Cloak", + [14104] = "Brightcloth Pants", + [14105] = "Monster - Bow, C01/B02 White", + [14106] = "Felcloth Robe", + [14107] = "Felcloth Pants", + [14108] = "Felcloth Boots", + [14109] = "Native Robe", + [14110] = "Native Sandals", + [14111] = "Felcloth Hood", + [14112] = "Felcloth Shoulders", + [14113] = "Aboriginal Sash", + [14114] = "Aboriginal Footwraps", + [14115] = "Aboriginal Bands", + [14116] = "Aboriginal Cape", + [14117] = "Aboriginal Gloves", + [14118] = "Monster - Bow, C02/B02 Black", + [14119] = "Aboriginal Loincloth", + [14120] = "Aboriginal Robe", + [14121] = "Aboriginal Vest", + [14122] = "Ritual Bands", + [14123] = "Ritual Cape", + [14124] = "Ritual Gloves", + [14125] = "Ritual Leggings", + [14126] = "Ritual Amice", + [14127] = "Ritual Shroud", + [14128] = "Wizardweave Robe", + [14129] = "Ritual Sandals", + [14130] = "Wizardweave Turban", + [14131] = "Ritual Belt", + [14132] = "Wizardweave Leggings", + [14133] = "Ritual Tunic", + [14134] = "Cloak of Fire", + [14136] = "Robe of Winter Night", + [14137] = "Mooncloth Leggings", + [14138] = "Mooncloth Vest", + [14139] = "Mooncloth Shoulders", + [14140] = "Mooncloth Circlet", + [14141] = "Ghostweave Vest", + [14142] = "Ghostweave Gloves", + [14143] = "Ghostweave Belt", + [14144] = "Ghostweave Pants", + [14145] = "Cursed Felblade", + [14146] = "Gloves of Spell Mastery", + [14147] = "Cavedweller Bracers", + [14148] = "Crystalline Cuffs", + [14149] = "Subterranean Cape", + [14150] = "Robe of Evocation", + [14151] = "Chanting Blade", + [14152] = "Robe of the Archmage", + [14153] = "Robe of the Void", + [14154] = "Truefaith Vestments", + [14155] = "Mooncloth Bag", + [14156] = "Bottomless Bag", + [14157] = "Pagan Mantle", + [14158] = "Pagan Vest", + [14159] = "Pagan Shoes", + [14160] = "Pagan Bands", + [14161] = "Pagan Cape", + [14162] = "Pagan Mitts", + [14163] = "Pagan Wraps", + [14164] = "Pagan Belt", + [14165] = "Pagan Britches", + [14166] = "Buccaneer\'s Bracers", + [14167] = "Buccaneer\'s Cape", + [14168] = "Buccaneer\'s Gloves", + [14169] = "Aboriginal Shoulder Pads", + [14170] = "Buccaneer\'s Mantle", + [14171] = "Buccaneer\'s Pants", + [14172] = "Buccaneer\'s Robes", + [14173] = "Buccaneer\'s Cord", + [14174] = "Buccaneer\'s Boots", + [14175] = "Buccaneer\'s Vest", + [14176] = "Watcher\'s Boots", + [14177] = "Watcher\'s Cuffs", + [14178] = "Watcher\'s Cap", + [14179] = "Watcher\'s Cape", + [14180] = "Watcher\'s Jerkin", + [14181] = "Watcher\'s Handwraps", + [14182] = "Watcher\'s Mantle", + [14183] = "Watcher\'s Leggings", + [14184] = "Watcher\'s Robes", + [14185] = "Watcher\'s Cinch", + [14186] = "Raincaller Mantle", + [14187] = "Raincaller Cuffs", + [14188] = "Raincaller Cloak", + [14189] = "Raincaller Cap", + [14190] = "Raincaller Vest", + [14191] = "Raincaller Mitts", + [14192] = "Raincaller Robes", + [14193] = "Raincaller Pants", + [14194] = "Raincaller Cord", + [14195] = "Raincaller Boots", + [14196] = "Thistlefur Sandals", + [14197] = "Thistlefur Bands", + [14198] = "Thistlefur Cloak", + [14199] = "Thistlefur Gloves", + [14200] = "Thistlefur Cap", + [14201] = "Thistlefur Mantle", + [14202] = "Thistlefur Jerkin", + [14203] = "Thistlefur Pants", + [14204] = "Thistlefur Robe", + [14205] = "Thistlefur Belt", + [14206] = "Vital Bracelets", + [14207] = "Vital Leggings", + [14208] = "Vital Headband", + [14209] = "Vital Sash", + [14210] = "Vital Cape", + [14211] = "Vital Handwraps", + [14212] = "Vital Shoulders", + [14213] = "Vital Raiment", + [14214] = "Vital Boots", + [14215] = "Vital Tunic", + [14216] = "Geomancer\'s Jerkin", + [14217] = "Geomancer\'s Cord", + [14218] = "Geomancer\'s Boots", + [14219] = "Geomancer\'s Cloak", + [14220] = "Geomancer\'s Cap", + [14221] = "Geomancer\'s Bracers", + [14222] = "Geomancer\'s Gloves", + [14223] = "Geomancer\'s Spaulders", + [14224] = "Geomancer\'s Trousers", + [14225] = "Geomancer\'s Wraps", + [14226] = "Embersilk Bracelets", + [14227] = "Ironweb Spider Silk", + [14228] = "Embersilk Coronet", + [14229] = "Embersilk Cloak", + [14230] = "Embersilk Tunic", + [14231] = "Embersilk Mitts", + [14232] = "Embersilk Mantle", + [14233] = "Embersilk Leggings", + [14234] = "Embersilk Robes", + [14235] = "Embersilk Cord", + [14236] = "Embersilk Boots", + [14237] = "Darkmist Armor", + [14238] = "Darkmist Boots", + [14239] = "Darkmist Cape", + [14240] = "Darkmist Bands", + [14241] = "Darkmist Handguards", + [14242] = "Darkmist Pants", + [14243] = "Darkmist Mantle", + [14244] = "Darkmist Wraps", + [14245] = "Darkmist Girdle", + [14246] = "Darkmist Wizard Hat", + [14247] = "Lunar Mantle", + [14248] = "Lunar Bindings", + [14249] = "Lunar Vest", + [14250] = "Lunar Slippers", + [14251] = "Lunar Cloak", + [14252] = "Lunar Coronet", + [14253] = "Lunar Handwraps", + [14254] = "Lunar Raiment", + [14255] = "Lunar Belt", + [14256] = "Felcloth", + [14257] = "Lunar Leggings", + [14258] = "Bloodwoven Cord", + [14259] = "Bloodwoven Boots", + [14260] = "Bloodwoven Bracers", + [14261] = "Bloodwoven Cloak", + [14262] = "Bloodwoven Mitts", + [14263] = "Bloodwoven Mask", + [14264] = "Bloodwoven Pants", + [14265] = "Bloodwoven Wraps", + [14266] = "Bloodwoven Pads", + [14267] = "Bloodwoven Jerkin", + [14268] = "Gaea\'s Cuffs", + [14269] = "Gaea\'s Slippers", + [14270] = "Gaea\'s Cloak", + [14271] = "Gaea\'s Circlet", + [14272] = "Gaea\'s Handwraps", + [14273] = "Gaea\'s Amice", + [14274] = "Gaea\'s Leggings", + [14275] = "Gaea\'s Raiment", + [14276] = "Gaea\'s Belt", + [14277] = "Gaea\'s Tunic", + [14278] = "Opulent Mantle", + [14279] = "Opulent Bracers", + [14280] = "Opulent Cape", + [14281] = "Opulent Crown", + [14282] = "Opulent Gloves", + [14283] = "Opulent Leggings", + [14284] = "Opulent Robes", + [14285] = "Opulent Boots", + [14286] = "Opulent Belt", + [14287] = "Opulent Tunic", + [14288] = "Arachnidian Armor", + [14289] = "Arachnidian Girdle", + [14290] = "Arachnidian Footpads", + [14291] = "Arachnidian Bracelets", + [14292] = "Arachnidian Cape", + [14293] = "Arachnidian Circlet", + [14294] = "Arachnidian Gloves", + [14295] = "Arachnidian Legguards", + [14296] = "Arachnidian Pauldrons", + [14297] = "Arachnidian Robes", + [14298] = "Bonecaster\'s Spaulders", + [14299] = "Bonecaster\'s Boots", + [14300] = "Bonecaster\'s Cape", + [14301] = "Bonecaster\'s Bindings", + [14302] = "Bonecaster\'s Gloves", + [14303] = "Bonecaster\'s Shroud", + [14304] = "Bonecaster\'s Belt", + [14305] = "Bonecaster\'s Sarong", + [14306] = "Bonecaster\'s Vest", + [14307] = "Bonecaster\'s Crown", + [14308] = "Celestial Tunic", + [14309] = "Celestial Belt", + [14310] = "Celestial Slippers", + [14311] = "Celestial Bindings", + [14312] = "Celestial Crown", + [14313] = "Celestial Cape", + [14314] = "Celestial Handwraps", + [14315] = "Celestial Kilt", + [14316] = "Celestial Pauldrons", + [14317] = "Celestial Silk Robes", + [14318] = "Resplendent Tunic", + [14319] = "Resplendent Boots", + [14320] = "Resplendent Bracelets", + [14321] = "Resplendent Cloak", + [14322] = "Resplendent Circlet", + [14323] = "Resplendent Gauntlets", + [14324] = "Resplendent Sarong", + [14325] = "Resplendent Epaulets", + [14326] = "Resplendent Robes", + [14327] = "Resplendent Belt", + [14328] = "Eternal Chestguard", + [14329] = "Eternal Boots", + [14330] = "Eternal Bindings", + [14331] = "Eternal Cloak", + [14332] = "Eternal Crown", + [14333] = "Eternal Gloves", + [14334] = "Eternal Sarong", + [14335] = "Eternal Spaulders", + [14336] = "Eternal Wraps", + [14337] = "Eternal Cord", + [14338] = "Empty Water Tube", + [14339] = "Moonwell Water Tube", + [14340] = "Freezing Lich Robes", + [14341] = "Rune Thread", + [14342] = "Mooncloth", + [14343] = "Small Brilliant Shard", + [14344] = "Large Brilliant Shard", + [14363] = "Deprecated Runic Cloth Pants", + [14364] = "Mystic\'s Slippers", + [14365] = "Mystic\'s Cape", + [14366] = "Mystic\'s Bracelets", + [14367] = "Mystic\'s Gloves", + [14368] = "Mystic\'s Shoulder Pads", + [14369] = "Mystic\'s Wrap", + [14370] = "Mystic\'s Woolies", + [14371] = "Mystic\'s Robe", + [14372] = "Sanguine Armor", + [14373] = "Sanguine Belt", + [14374] = "Sanguine Sandals", + [14375] = "Sanguine Cuffs", + [14376] = "Sanguine Cape", + [14377] = "Sanguine Handwraps", + [14378] = "Sanguine Mantle", + [14379] = "Sanguine Trousers", + [14380] = "Sanguine Robe", + [14381] = "Grimtotem Satchel", + [14382] = "Durability Chestpiece", + [14383] = "Durability Bracers", + [14384] = "Durability Boots", + [14385] = "Durability Cloak", + [14386] = "Durability Hat", + [14387] = "Durability Gloves", + [14388] = "Durability Leggings", + [14389] = "Durability Shoulderpads", + [14390] = "Durability Belt", + [14391] = "Durability Sword", + [14392] = "Durability Staff", + [14393] = "Durability Shield", + [14394] = "Durability Bow", + [14395] = "Spells of Shadow", + [14396] = "Incantations from the Nether", + [14397] = "Resilient Mantle", + [14398] = "Resilient Tunic", + [14399] = "Resilient Boots", + [14400] = "Resilient Cape", + [14401] = "Resilient Cap", + [14402] = "Resilient Bands", + [14403] = "Resilient Handgrips", + [14404] = "Resilient Leggings", + [14405] = "Resilient Robe", + [14406] = "Resilient Cord", + [14407] = "Stonecloth Vest", + [14408] = "Stonecloth Boots", + [14409] = "Stonecloth Cape", + [14410] = "Stonecloth Circlet", + [14411] = "Stonecloth Gloves", + [14412] = "Stonecloth Epaulets", + [14413] = "Stonecloth Robe", + [14414] = "Stonecloth Belt", + [14415] = "Stonecloth Britches", + [14416] = "Stonecloth Bindings", + [14417] = "Silksand Tunic", + [14418] = "Silksand Boots", + [14419] = "Silksand Bracers", + [14420] = "Silksand Cape", + [14421] = "Silksand Circlet", + [14422] = "Silksand Gloves", + [14423] = "Silksand Shoulder Pads", + [14424] = "Silksand Legwraps", + [14425] = "Silksand Wraps", + [14426] = "Silksand Girdle", + [14427] = "Windchaser Wraps", + [14428] = "Windchaser Footpads", + [14429] = "Windchaser Cuffs", + [14430] = "Windchaser Cloak", + [14431] = "Windchaser Handguards", + [14432] = "Windchaser Amice", + [14433] = "Windchaser Woolies", + [14434] = "Windchaser Robes", + [14435] = "Windchaser Cinch", + [14436] = "Windchaser Coronet", + [14437] = "Venomshroud Vest", + [14438] = "Venomshroud Boots", + [14439] = "Venomshroud Armguards", + [14440] = "Venomshroud Cape", + [14441] = "Venomshroud Mask", + [14442] = "Venomshroud Mitts", + [14443] = "Venomshroud Mantle", + [14444] = "Venomshroud Leggings", + [14445] = "Venomshroud Silk Robes", + [14446] = "Venomshroud Belt", + [14447] = "Highborne Footpads", + [14448] = "Highborne Bracelets", + [14449] = "Highborne Crown", + [14450] = "Highborne Cloak", + [14451] = "Highborne Gloves", + [14452] = "Highborne Pauldrons", + [14453] = "Highborne Robes", + [14454] = "Highborne Cord", + [14455] = "Highborne Padded Armor", + [14456] = "Elunarian Vest", + [14457] = "Elunarian Cuffs", + [14458] = "Elunarian Boots", + [14459] = "Elunarian Cloak", + [14460] = "Elunarian Diadem", + [14461] = "Elunarian Handgrips", + [14462] = "Elunarian Sarong", + [14463] = "Elunarian Spaulders", + [14464] = "Elunarian Silk Robes", + [14465] = "Elunarian Belt", + [14466] = "Pattern: Frostweave Tunic", + [14467] = "Pattern: Frostweave Robe", + [14468] = "Pattern: Runecloth Bag", + [14469] = "Pattern: Runecloth Robe", + [14470] = "Pattern: Runecloth Tunic", + [14471] = "Pattern: Cindercloth Vest", + [14472] = "Pattern: Runecloth Cloak", + [14473] = "Pattern: Ghostweave Belt", + [14474] = "Pattern: Frostweave Gloves", + [14475] = "Monster - Axe, 2H War A03 White", + [14476] = "Pattern: Cindercloth Gloves", + [14477] = "Pattern: Ghostweave Gloves", + [14478] = "Pattern: Brightcloth Robe", + [14479] = "Pattern: Brightcloth Gloves", + [14480] = "Pattern: Ghostweave Vest", + [14481] = "Pattern: Runecloth Gloves", + [14482] = "Pattern: Cindercloth Cloak", + [14483] = "Pattern: Felcloth Pants", + [14484] = "Pattern: Brightcloth Cloak", + [14485] = "Pattern: Wizardweave Leggings", + [14486] = "Pattern: Cloak of Fire", + [14487] = "Bonechill Hammer", + [14488] = "Pattern: Runecloth Boots", + [14489] = "Pattern: Frostweave Pants", + [14490] = "Pattern: Cindercloth Pants", + [14491] = "Pattern: Runecloth Pants", + [14492] = "Pattern: Felcloth Boots", + [14493] = "Pattern: Robe of Winter Night", + [14494] = "Pattern: Brightcloth Pants", + [14495] = "Pattern: Ghostweave Pants", + [14496] = "Pattern: Felcloth Hood", + [14497] = "Pattern: Mooncloth Leggings", + [14498] = "Pattern: Runecloth Headband", + [14499] = "Pattern: Mooncloth Bag", + [14500] = "Pattern: Wizardweave Robe", + [14501] = "Pattern: Mooncloth Vest", + [14502] = "Frostbite Girdle", + [14503] = "Death\'s Clutch", + [14504] = "Pattern: Runecloth Shoulders", + [14505] = "Pattern: Wizardweave Turban", + [14506] = "Pattern: Felcloth Robe", + [14507] = "Pattern: Mooncloth Shoulders", + [14508] = "Pattern: Felcloth Shoulders", + [14509] = "Pattern: Mooncloth Circlet", + [14510] = "Pattern: Bottomless Bag", + [14511] = "Pattern: Gloves of Spell Mastery", + [14512] = "Pattern: Truefaith Vestments", + [14513] = "Pattern: Robe of the Archmage", + [14514] = "Pattern: Robe of the Void", + [14522] = "Maelstrom Leggings", + [14523] = "Demon Pick", + [14524] = "Monster - Sword, Katana 2H Gold", + [14525] = "Boneclenched Gauntlets", + [14526] = "Pattern: Purify Mooncloth", + [14527] = "Monster - Mace2H, Horde Hammer A03 Dark", + [14528] = "Rattlecage Buckler", + [14529] = "Runecloth Bandage", + [14530] = "Heavy Runecloth Bandage", + [14531] = "Frightskull Shaft", + [14532] = "Monster - Mace2H, Warhammer Jade", + [14533] = "Monster - Mace, Hammer Blue Mighty", + [14534] = "Monster - Axe, Metal Blue Badass", + [14535] = "Monster - Spear, Cool Blue", + [14536] = "Bonebrace Hauberk", + [14537] = "Corpselight Greaves", + [14538] = "Deadwalker Mantle", + [14539] = "Bone Ring Helm", + [14540] = "Taragaman the Hungerer\'s Heart", + [14541] = "Barovian Family Sword", + [14542] = "Kravel\'s Crate", + [14543] = "Darkshade Gloves", + [14544] = "Lieutenant\'s Insignia", + [14545] = "Ghostloom Leggings", + [14546] = "Roon\'s Kodo Horn", + [14547] = "Hand of Iruxos", + [14548] = "Royal Cap Spaulders", + [14549] = "Boots of Avoidance", + [14550] = "Bladebane Armguards", + [14551] = "Edgemaster\'s Handguards", + [14552] = "Stockade Pauldrons", + [14553] = "Sash of Mercy", + [14554] = "Cloudkeeper Legplates", + [14555] = "Alcor\'s Sunrazor", + [14557] = "The Lion Horn of Stormwind", + [14558] = "Lady Maye\'s Pendant", + [14559] = "Prospector\'s Sash", + [14560] = "Prospector\'s Boots", + [14561] = "Prospector\'s Cuffs", + [14562] = "Prospector\'s Chestpiece", + [14563] = "Prospector\'s Cloak", + [14564] = "Prospector\'s Mitts", + [14565] = "Prospector\'s Woolies", + [14566] = "Prospector\'s Pads", + [14567] = "Bristlebark Belt", + [14568] = "Bristlebark Boots", + [14569] = "Bristlebark Bindings", + [14570] = "Bristlebark Blouse", + [14571] = "Bristlebark Cape", + [14572] = "Bristlebark Gloves", + [14573] = "Bristlebark Amice", + [14574] = "Bristlebark Britches", + [14575] = "Monster - Mace, Bashguud\'s Hammer", + [14576] = "Ebon Hilt of Marduk", + [14577] = "Skullsmoke Pants", + [14578] = "Dokebi Cord", + [14579] = "Dokebi Boots", + [14580] = "Dokebi Bracers", + [14581] = "Dokebi Chestguard", + [14582] = "Dokebi Cape", + [14583] = "Dokebi Gloves", + [14584] = "Dokebi Hat", + [14585] = "Dokebi Leggings", + [14586] = "Monster - Mace2H, Fist of Omokk", + [14587] = "Dokebi Mantle", + [14588] = "Hawkeye\'s Cord", + [14589] = "Hawkeye\'s Shoes", + [14590] = "Hawkeye\'s Bracers", + [14591] = "Hawkeye\'s Helm", + [14592] = "Hawkeye\'s Tunic", + [14593] = "Hawkeye\'s Cloak", + [14594] = "Hawkeye\'s Gloves", + [14595] = "Hawkeye\'s Breeches", + [14596] = "Hawkeye\'s Epaulets", + [14597] = "Deprecated Warden\'s Buckler", + [14598] = "Warden\'s Waistband", + [14599] = "Warden\'s Footpads", + [14600] = "Warden\'s Wristbands", + [14601] = "Warden\'s Wraps", + [14602] = "Warden\'s Cloak", + [14603] = "Warden\'s Mantle", + [14604] = "Warden\'s Wizard Hat", + [14605] = "Warden\'s Woolies", + [14606] = "Warden\'s Gloves", + [14607] = "Hawkeye\'s Buckler", + [14608] = "Dokebi Buckler", + [14609] = "Deprecated Ceremonial Buckler", + [14610] = "Araj\'s Scarab", + [14611] = "Bloodmail Hauberk", + [14612] = "Bloodmail Legguards", + [14613] = "Taelan\'s Hammer", + [14614] = "Bloodmail Belt", + [14615] = "Bloodmail Gauntlets", + [14616] = "Bloodmail Boots", + [14617] = "Sawbones Shirt", + [14618] = "Monster - Staff, Jeweled Red Staff Low Red Flame", + [14619] = "Skeletal Fragments", + [14620] = "Deathbone Girdle", + [14621] = "Deathbone Sabatons", + [14622] = "Deathbone Gauntlets", + [14623] = "Deathbone Legguards", + [14624] = "Deathbone Chestplate", + [14625] = "Symbol of Lost Honor", + [14626] = "Necropile Robe", + [14627] = "Pattern: Bright Yellow Shirt", + [14628] = "Imbued Skeletal Fragments", + [14629] = "Necropile Cuffs", + [14630] = "Pattern: Enchanter\'s Cowl", + [14631] = "Necropile Boots", + [14632] = "Necropile Leggings", + [14633] = "Necropile Mantle", + [14634] = "Recipe: Frost Oil", + [14635] = "Pattern: Gem-studded Leather Belt", + [14636] = "Cadaverous Belt", + [14637] = "Cadaverous Armor", + [14638] = "Cadaverous Leggings", + [14639] = "Schematic: Minor Recombobulator", + [14640] = "Cadaverous Gloves", + [14641] = "Cadaverous Walkers", + [14642] = "Monster - Gun, Tauren Feathers Silver", + [14643] = "Monster - Axe, 2H Battle A03 Red", + [14644] = "Skeleton Key Mold", + [14645] = "Unfinished Skeleton Key", + [14646] = "Northshire Gift Voucher", + [14647] = "Coldridge Valley Gift Voucher", + [14648] = "Shadowglen Gift Voucher", + [14649] = "Valley of Trials Gift Voucher", + [14650] = "Camp Narache Gift Voucher", + [14651] = "Deathknell Gift Voucher", + [14652] = "Scorpashi Sash", + [14653] = "Scorpashi Slippers", + [14654] = "Scorpashi Wristbands", + [14655] = "Scorpashi Breastplate", + [14656] = "Scorpashi Cape", + [14657] = "Scorpashi Gloves", + [14658] = "Scorpashi Skullcap", + [14659] = "Scorpashi Leggings", + [14660] = "Scorpashi Shoulder Pads", + [14661] = "Keeper\'s Cord", + [14662] = "Keeper\'s Hooves", + [14663] = "Keeper\'s Bindings", + [14664] = "Keeper\'s Armor", + [14665] = "Keeper\'s Cloak", + [14666] = "Keeper\'s Gloves", + [14667] = "Keeper\'s Wreath", + [14668] = "Keeper\'s Woolies", + [14669] = "Keeper\'s Mantle", + [14670] = "Pridelord Armor", + [14671] = "Pridelord Boots", + [14672] = "Pridelord Bands", + [14673] = "Pridelord Cape", + [14674] = "Pridelord Girdle", + [14675] = "Pridelord Gloves", + [14676] = "Pridelord Halo", + [14677] = "Pridelord Pants", + [14678] = "Pridelord Pauldrons", + [14679] = "Of Love and Family", + [14680] = "Indomitable Vest", + [14681] = "Indomitable Boots", + [14682] = "Indomitable Armguards", + [14683] = "Indomitable Cloak", + [14684] = "Indomitable Belt", + [14685] = "Indomitable Gauntlets", + [14686] = "Indomitable Headdress", + [14687] = "Indomitable Leggings", + [14688] = "Indomitable Epaulets", + [14689] = "Battle Chain Boots", + [14690] = "Battle Chain Armguards", + [14691] = "Deprecated Battle Chain Buckler", + [14692] = "Battle Chain Cape", + [14693] = "Battle Chain Belt", + [14694] = "Battle Chain Gloves", + [14695] = "Battle Chain Leggings", + [14696] = "Deprecated Battle Chain Shield", + [14697] = "Battle Chain Chestguard", + [14698] = "Brackwater Chain Surcoat", + [14699] = "Brackwater Chain Greaves", + [14700] = "Brackwater Chain Bindings", + [14701] = "Brackwater Chain Cloak", + [14702] = "Brackwater Chain Girdle", + [14703] = "Brackwater Chain Handgrips", + [14704] = "Brackwater Chain Legguards", + [14705] = "Brackwater Chain Shield", + [14706] = "Monster - Staff, 3 Piece Taped Staff Purple", + [14707] = "Monster - Staff, 3 Piece Taped Staff Blue", + [14722] = "War Paint Anklewraps", + [14723] = "War Paint Bindings", + [14724] = "War Paint Cloak", + [14725] = "War Paint Waistband", + [14726] = "War Paint Gloves", + [14727] = "War Paint Legguards", + [14728] = "War Paint Shoulder Pads", + [14729] = "War Paint Shield", + [14730] = "War Paint Chestpiece", + [14742] = "Hulking Boots", + [14743] = "Hulking Bands", + [14744] = "Hulking Chestguard", + [14745] = "Hulking Cloak", + [14746] = "Hulking Belt", + [14747] = "Hulking Gauntlets", + [14748] = "Hulking Leggings", + [14749] = "Hulking Spaulders", + [14750] = "Slayer\'s Cuffs", + [14751] = "Slayer\'s Surcoat", + [14752] = "Slayer\'s Cape", + [14753] = "Slayer\'s Skullcap", + [14754] = "Slayer\'s Gloves", + [14755] = "Slayer\'s Sash", + [14756] = "Slayer\'s Slippers", + [14757] = "Slayer\'s Pants", + [14758] = "Slayer\'s Shoulder Pads", + [14759] = "Enduring Bracers", + [14760] = "Enduring Breastplate", + [14761] = "Enduring Belt", + [14762] = "Enduring Boots", + [14763] = "Enduring Cape", + [14764] = "Enduring Gauntlets", + [14765] = "Enduring Circlet", + [14766] = "Enduring Breeches", + [14767] = "Enduring Pauldrons", + [14768] = "Ravager\'s Armor", + [14769] = "Ravager\'s Sandals", + [14770] = "Ravager\'s Armguards", + [14771] = "Ravager\'s Cloak", + [14772] = "Ravager\'s Handwraps", + [14773] = "Ravager\'s Cord", + [14774] = "Ravager\'s Crown", + [14775] = "Ravager\'s Woolies", + [14776] = "Ravager\'s Mantle", + [14777] = "Ravager\'s Shield", + [14778] = "Khan\'s Bindings", + [14779] = "Khan\'s Chestpiece", + [14780] = "Khan\'s Buckler", + [14781] = "Khan\'s Cloak", + [14782] = "Khan\'s Gloves", + [14783] = "Khan\'s Belt", + [14784] = "Khan\'s Greaves", + [14785] = "Khan\'s Helmet", + [14786] = "Khan\'s Legguards", + [14787] = "Khan\'s Mantle", + [14788] = "Protector Armguards", + [14789] = "Protector Breastplate", + [14790] = "Protector Buckler", + [14791] = "Protector Cape", + [14792] = "Protector Gauntlets", + [14793] = "Protector Waistband", + [14794] = "Protector Ankleguards", + [14795] = "Protector Helm", + [14796] = "Protector Legguards", + [14797] = "Protector Pads", + [14798] = "Bloodlust Breastplate", + [14799] = "Bloodlust Boots", + [14800] = "Bloodlust Buckler", + [14801] = "Bloodlust Cape", + [14802] = "Bloodlust Gauntlets", + [14803] = "Bloodlust Belt", + [14804] = "Bloodlust Helm", + [14805] = "Bloodlust Britches", + [14806] = "Bloodlust Epaulets", + [14807] = "Bloodlust Bracelets", + [14808] = "Warstrike Belt", + [14809] = "Warstrike Sabatons", + [14810] = "Warstrike Armsplints", + [14811] = "Warstrike Chestguard", + [14812] = "Warstrike Buckler", + [14813] = "Warstrike Cape", + [14814] = "Warstrike Helmet", + [14815] = "Warstrike Gauntlets", + [14816] = "Warstrike Legguards", + [14817] = "Warstrike Shoulder Pads", + [14818] = "Monster - Mace2H, Horde Spiked Maul", + [14819] = "Monster - Mace2H, Horde Stump Maul", + [14820] = "Monster - Mace2H, Horde Skull Maul", + [14821] = "Symbolic Breastplate", + [14822] = "Monster - Mace2H, Horde Metal Spiked Maul", + [14823] = "Monster - Mace2H, Horde Red Spiked Badass", + [14824] = "Monster - Mace2H, Horde Black Spiked Badass", + [14825] = "Symbolic Crest", + [14826] = "Symbolic Gauntlets", + [14827] = "Symbolic Belt", + [14828] = "Symbolic Greaves", + [14829] = "Symbolic Legplates", + [14830] = "Symbolic Pauldrons", + [14831] = "Symbolic Crown", + [14832] = "Symbolic Vambraces", + [14833] = "Tyrant\'s Gauntlets", + [14834] = "Tyrant\'s Armguards", + [14835] = "Tyrant\'s Chestpiece", + [14836] = "Monster - Staff, Ornate Jeweled Staff - Purple", + [14837] = "Monster - Staff, Ornate Jeweled Staff - Purple Low Purple Glow", + [14838] = "Tyrant\'s Belt", + [14839] = "Tyrant\'s Greaves", + [14840] = "Tyrant\'s Legplates", + [14841] = "Tyrant\'s Epaulets", + [14842] = "Tyrant\'s Shield", + [14843] = "Tyrant\'s Helm", + [14844] = "Sunscale Chestguard", + [14845] = "Monster - Staff, Wooden Handle Rounded Head Low Yellow Glow", + [14846] = "Sunscale Gauntlets", + [14847] = "Sunscale Belt", + [14848] = "Sunscale Sabatons", + [14849] = "Sunscale Helmet", + [14850] = "Sunscale Legplates", + [14851] = "Sunscale Spaulders", + [14852] = "Sunscale Shield", + [14853] = "Sunscale Wristguards", + [14854] = "Vanguard Breastplate", + [14855] = "Vanguard Gauntlets", + [14856] = "Vanguard Girdle", + [14857] = "Vanguard Sabatons", + [14858] = "Vanguard Headdress", + [14859] = "Vanguard Legplates", + [14860] = "Vanguard Pauldrons", + [14861] = "Vanguard Vambraces", + [14862] = "Warleader\'s Breastplate", + [14863] = "Warleader\'s Gauntlets", + [14864] = "Warleader\'s Belt", + [14865] = "Warleader\'s Greaves", + [14866] = "Warleader\'s Crown", + [14867] = "Warleader\'s Leggings", + [14868] = "Warleader\'s Shoulders", + [14869] = "Warleader\'s Bracers", + [14870] = "Monster - Axe, 2H Horde Massive Spiked", + [14871] = "Monster - Sword, Horde C02 Purple", + [14872] = "Tirion\'s Gift", + [14873] = "Monster - Staff, Ornate Jeweled Staff - Blue", + [14874] = "Monster - Axe, Horde C02 Black", + [14875] = "Monster - Axe, Horde Double Blade A02", + [14876] = "Monster - Axe, Horde Crystal Blade A03", + [14877] = "Monster - Axe, Horde Spiked A04", + [14878] = "Monster - Sword2H, Katana B01 Red", + [14879] = "Monster - Polearm, Blademaster", + [14880] = "Monster - Axe, Wide Blade Silver", + [14881] = "Monster - Glaive - 3 Blade Black", + [14882] = "Monster - Glaive - 2 Blade Silver", + [14883] = "Test Glaive A", + [14884] = "Test Glaive B", + [14885] = "Test Glaive C", + [14886] = "Test Glaive D", + [14887] = "Test Glaive E", + [14888] = "Test Glaive F", + [14889] = "Test Glaive G", + [14890] = "Test Glaive H", + [14891] = "Test Glaive I", + [14892] = "Test Glaive J", + [14893] = "Monster - Axe, Horde C01 Gold", + [14894] = "Lily Root", + [14895] = "Saltstone Surcoat", + [14896] = "Saltstone Sabatons", + [14897] = "Saltstone Gauntlets", + [14898] = "Saltstone Girdle", + [14899] = "Saltstone Helm", + [14900] = "Saltstone Legplates", + [14901] = "Saltstone Shoulder Pads", + [14902] = "Saltstone Shield", + [14903] = "Saltstone Armsplints", + [14904] = "Brutish Breastplate", + [14905] = "Brutish Gauntlets", + [14906] = "Brutish Belt", + [14907] = "Brutish Helmet", + [14908] = "Brutish Legguards", + [14909] = "Brutish Shoulders", + [14910] = "Brutish Armguards", + [14911] = "Brutish Boots", + [14912] = "Brutish Shield", + [14913] = "Jade Greaves", + [14914] = "Jade Bracers", + [14915] = "Jade Breastplate", + [14916] = "Jade Deflector", + [14917] = "Jade Gauntlets", + [14918] = "Jade Belt", + [14919] = "Jade Circlet", + [14920] = "Jade Legplates", + [14921] = "Jade Epaulets", + [14922] = "Lofty Sabatons", + [14923] = "Lofty Armguards", + [14924] = "Lofty Breastplate", + [14925] = "Lofty Helm", + [14926] = "Lofty Gauntlets", + [14927] = "Lofty Belt", + [14928] = "Lofty Legguards", + [14929] = "Lofty Shoulder Pads", + [14930] = "Lofty Shield", + [14931] = "Heroic Armor", + [14932] = "Heroic Greaves", + [14933] = "Heroic Gauntlets", + [14934] = "Heroic Girdle", + [14935] = "Heroic Skullcap", + [14936] = "Heroic Legplates", + [14937] = "Heroic Pauldrons", + [14938] = "Heroic Bracers", + [14939] = "Warbringer\'s Chestguard", + [14940] = "Warbringer\'s Sabatons", + [14941] = "Warbringer\'s Armsplints", + [14942] = "Warbringer\'s Gauntlets", + [14943] = "Warbringer\'s Belt", + [14944] = "Warbringer\'s Crown", + [14945] = "Warbringer\'s Legguards", + [14946] = "Warbringer\'s Spaulders", + [14947] = "Warbringer\'s Shield", + [14948] = "Bloodforged Chestpiece", + [14949] = "Bloodforged Gauntlets", + [14950] = "Bloodforged Belt", + [14951] = "Bloodforged Sabatons", + [14952] = "Bloodforged Helmet", + [14953] = "Bloodforged Legplates", + [14954] = "Bloodforged Shield", + [14955] = "Bloodforged Shoulder Pads", + [14956] = "Bloodforged Bindings", + [14957] = "High Chief\'s Sabatons", + [14958] = "High Chief\'s Armor", + [14959] = "High Chief\'s Gauntlets", + [14960] = "High Chief\'s Belt", + [14961] = "High Chief\'s Crown", + [14962] = "High Chief\'s Legguards", + [14963] = "High Chief\'s Pauldrons", + [14964] = "High Chief\'s Shield", + [14965] = "High Chief\'s Bindings", + [14966] = "Glorious Breastplate", + [14967] = "Glorious Gauntlets", + [14968] = "Glorious Belt", + [14969] = "Glorious Headdress", + [14970] = "Glorious Legplates", + [14971] = "Glorious Shoulder Pads", + [14972] = "Glorious Sabatons", + [14973] = "Glorious Shield", + [14974] = "Glorious Bindings", + [14975] = "Exalted Harness", + [14976] = "Exalted Gauntlets", + [14977] = "Exalted Girdle", + [14978] = "Exalted Sabatons", + [14979] = "Exalted Helmet", + [14980] = "Exalted Legplates", + [14981] = "Exalted Epaulets", + [14982] = "Exalted Shield", + [14983] = "Exalted Armsplints", + [15002] = "Nimboya\'s Pike", + [15003] = "Primal Belt", + [15004] = "Primal Boots", + [15005] = "Primal Bands", + [15006] = "Primal Buckler", + [15007] = "Primal Cape", + [15008] = "Primal Mitts", + [15009] = "Primal Leggings", + [15010] = "Primal Wraps", + [15011] = "Lupine Cord", + [15012] = "Lupine Slippers", + [15013] = "Lupine Cuffs", + [15014] = "Lupine Buckler", + [15015] = "Lupine Cloak", + [15016] = "Lupine Handwraps", + [15017] = "Lupine Leggings", + [15018] = "Lupine Vest", + [15019] = "Lupine Mantle", + [15042] = "Empty Termite Jar", + [15043] = "Plagueland Termites", + [15044] = "Barrel of Plagueland Termites", + [15045] = "Green Dragonscale Breastplate", + [15046] = "Green Dragonscale Leggings", + [15047] = "Red Dragonscale Breastplate", + [15048] = "Blue Dragonscale Breastplate", + [15049] = "Blue Dragonscale Shoulders", + [15050] = "Black Dragonscale Breastplate", + [15051] = "Black Dragonscale Shoulders", + [15052] = "Black Dragonscale Leggings", + [15053] = "Volcanic Breastplate", + [15054] = "Volcanic Leggings", + [15055] = "Volcanic Shoulders", + [15056] = "Stormshroud Armor", + [15057] = "Stormshroud Pants", + [15058] = "Stormshroud Shoulders", + [15059] = "Living Breastplate", + [15060] = "Living Leggings", + [15061] = "Living Shoulders", + [15062] = "Devilsaur Leggings", + [15063] = "Devilsaur Gauntlets", + [15064] = "Warbear Harness", + [15065] = "Warbear Woolies", + [15066] = "Ironfeather Breastplate", + [15067] = "Ironfeather Shoulders", + [15068] = "Frostsaber Tunic", + [15069] = "Frostsaber Leggings", + [15070] = "Frostsaber Gloves", + [15071] = "Frostsaber Boots", + [15072] = "Chimeric Leggings", + [15073] = "Chimeric Boots", + [15074] = "Chimeric Gloves", + [15075] = "Chimeric Vest", + [15076] = "Heavy Scorpid Vest", + [15077] = "Heavy Scorpid Bracers", + [15078] = "Heavy Scorpid Gauntlet", + [15079] = "Heavy Scorpid Leggings", + [15080] = "Heavy Scorpid Helm", + [15081] = "Heavy Scorpid Shoulders", + [15082] = "Heavy Scorpid Belt", + [15083] = "Wicked Leather Gauntlets", + [15084] = "Wicked Leather Bracers", + [15085] = "Wicked Leather Armor", + [15086] = "Wicked Leather Headband", + [15087] = "Wicked Leather Pants", + [15088] = "Wicked Leather Belt", + [15089] = "Wicked Leather Armor", + [15090] = "Runic Leather Armor", + [15091] = "Runic Leather Gauntlets", + [15092] = "Runic Leather Bracers", + [15093] = "Runic Leather Belt", + [15094] = "Runic Leather Headband", + [15095] = "Runic Leather Pants", + [15096] = "Runic Leather Shoulders", + [15102] = "Un\'Goro Tested Sample", + [15103] = "Corrupt Tested Sample", + [15104] = "Wingborne Boots", + [15105] = "Staff of Noh\'Orahil", + [15106] = "Staff of Dar\'Orahil", + [15107] = "Orb of Noh\'Orahil", + [15108] = "Orb of Dar\'Orahil", + [15109] = "Staff of Soran\'ruk", + [15110] = "Rigid Belt", + [15111] = "Rigid Moccasins", + [15112] = "Rigid Bracelets", + [15113] = "Rigid Buckler", + [15114] = "Rigid Cape", + [15115] = "Rigid Gloves", + [15116] = "Rigid Shoulders", + [15117] = "Rigid Leggings", + [15118] = "Rigid Tunic", + [15119] = "Highborne Pants", + [15120] = "Robust Girdle", + [15121] = "Robust Boots", + [15122] = "Robust Bracers", + [15123] = "Robust Buckler", + [15124] = "Robust Cloak", + [15125] = "Robust Gloves", + [15126] = "Robust Leggings", + [15127] = "Robust Shoulders", + [15128] = "Robust Tunic", + [15129] = "Robust Helm", + [15130] = "Cutthroat\'s Vest", + [15131] = "Cutthroat\'s Boots", + [15132] = "Cutthroat\'s Armguards", + [15133] = "Cutthroat\'s Buckler", + [15134] = "Cutthroat\'s Hat", + [15135] = "Cutthroat\'s Cape", + [15136] = "Cutthroat\'s Belt", + [15137] = "Cutthroat\'s Mitts", + [15138] = "Onyxia Scale Cloak", + [15139] = "Cutthroat\'s Pants", + [15140] = "Cutthroat\'s Mantle", + [15141] = "Onyxia Scale Breastplate", + [15142] = "Ghostwalker Boots", + [15143] = "Ghostwalker Bindings", + [15144] = "Ghostwalker Rags", + [15145] = "Ghostwalker Buckler", + [15146] = "Ghostwalker Crown", + [15147] = "Ghostwalker Cloak", + [15148] = "Ghostwalker Belt", + [15149] = "Ghostwalker Gloves", + [15150] = "Ghostwalker Pads", + [15151] = "Ghostwalker Legguards", + [15152] = "Nocturnal Shoes", + [15153] = "Nocturnal Cloak", + [15154] = "Nocturnal Sash", + [15155] = "Nocturnal Gloves", + [15156] = "Nocturnal Cap", + [15157] = "Nocturnal Leggings", + [15158] = "Nocturnal Shoulder Pads", + [15159] = "Nocturnal Tunic", + [15160] = "Nocturnal Wristbands", + [15161] = "Imposing Belt", + [15162] = "Imposing Boots", + [15163] = "Imposing Bracers", + [15164] = "Imposing Vest", + [15165] = "Imposing Cape", + [15166] = "Imposing Gloves", + [15167] = "Imposing Bandana", + [15168] = "Imposing Pants", + [15169] = "Imposing Shoulders", + [15170] = "Potent Armor", + [15171] = "Potent Boots", + [15172] = "Potent Bands", + [15173] = "Potent Cape", + [15174] = "Potent Gloves", + [15175] = "Potent Helmet", + [15176] = "Potent Pants", + [15177] = "Potent Shoulders", + [15178] = "Potent Belt", + [15179] = "Praetorian Padded Armor", + [15180] = "Praetorian Girdle", + [15181] = "Praetorian Boots", + [15182] = "Praetorian Wristbands", + [15183] = "Praetorian Cloak", + [15184] = "Praetorian Gloves", + [15185] = "Praetorian Coif", + [15186] = "Praetorian Leggings", + [15187] = "Praetorian Pauldrons", + [15188] = "Grand Armguards", + [15189] = "Grand Boots", + [15190] = "Grand Cloak", + [15191] = "Grand Belt", + [15192] = "Grand Gauntlets", + [15193] = "Grand Crown", + [15194] = "Grand Legguards", + [15195] = "Grand Breastplate", + [15196] = "Private\'s Tabard", + [15197] = "Scout\'s Tabard", + [15198] = "Knight\'s Colors", + [15199] = "Stone Guard\'s Herald", + [15200] = "Senior Sergeant\'s Insignia", + [15202] = "Wildkeeper Leggings", + [15203] = "Guststorm Legguards", + [15204] = "Moonstone Wand", + [15205] = "Owlsight Rifle", + [15206] = "Jadefinger Baton", + [15207] = "Steelcap Shield", + [15208] = "Cenarion Moondust", + [15209] = "Relic Bundle", + [15210] = "Raider Shortsword", + [15211] = "Militant Shortsword", + [15212] = "Fighter Broadsword", + [15213] = "Mercenary Blade", + [15214] = "Nobles Brand", + [15215] = "Furious Falchion", + [15216] = "Rune Sword", + [15217] = "Widow Blade", + [15218] = "Crystal Sword", + [15219] = "Dimensional Blade", + [15220] = "Battlefell Sabre", + [15221] = "Holy War Sword", + [15222] = "Barbed Club", + [15223] = "Jagged Star", + [15224] = "Battlesmasher", + [15225] = "Sequoia Hammer", + [15226] = "Giant Club", + [15227] = "Diamond-Tip Bludgeon", + [15228] = "Smashing Star", + [15229] = "Blesswind Hammer", + [15230] = "Ridge Cleaver", + [15231] = "Splitting Hatchet", + [15232] = "Hacking Cleaver", + [15233] = "Savage Axe", + [15234] = "Greater Scythe", + [15235] = "Crescent Edge", + [15236] = "Moon Cleaver", + [15237] = "Corpse Harvester", + [15238] = "Warlord\'s Axe", + [15239] = "Felstone Reaver", + [15240] = "Demon\'s Claw", + [15241] = "Battle Knife", + [15242] = "Honed Stiletto", + [15243] = "Deadly Kris", + [15244] = "Razor Blade", + [15245] = "Vorpal Dagger", + [15246] = "Demon Blade", + [15247] = "Bloodstrike Dagger", + [15248] = "Gleaming Claymore", + [15249] = "Polished Zweihander", + [15250] = "Glimmering Flamberge", + [15251] = "Headstriker Sword", + [15252] = "Tusker Sword", + [15253] = "Beheading Blade", + [15254] = "Dark Espadon", + [15255] = "Gallant Flamberge", + [15256] = "Massacre Sword", + [15257] = "Shin Blade", + [15258] = "Divine Warblade", + [15259] = "Hefty Battlehammer", + [15260] = "Stone Hammer", + [15261] = "Sequoia Branch", + [15262] = "Greater Maul", + [15263] = "Royal Mallet", + [15264] = "Backbreaker", + [15265] = "Painbringer", + [15266] = "Fierce Mauler", + [15267] = "Brutehammer", + [15268] = "Twin-bladed Axe", + [15269] = "Massive Battle Axe", + [15270] = "Gigantic War Axe", + [15271] = "Colossal Great Axe", + [15272] = "Razor Axe", + [15273] = "Death Striker", + [15274] = "Diviner Long Staff", + [15275] = "Thaumaturgist Staff", + [15276] = "Magus Long Staff", + [15277] = "Gray Kodo", + [15278] = "Solstice Staff", + [15279] = "Ivory Wand", + [15280] = "Wizard\'s Hand", + [15281] = "Glowstar Rod", + [15282] = "Dragon Finger", + [15283] = "Lunar Wand", + [15284] = "Long Battle Bow", + [15285] = "Archer\'s Longbow", + [15286] = "Long Redwood Bow", + [15287] = "Crusader Bow", + [15288] = "Blasthorn Bow", + [15289] = "Archstrike Bow", + [15290] = "Brown Kodo", + [15291] = "Harpy Needler", + [15292] = "Green Kodo", + [15293] = "Teal Kodo", + [15294] = "Siege Bow", + [15295] = "Quillfire Bow", + [15296] = "Hawkeye Bow", + [15297] = "Grizzly Bracers", + [15298] = "Grizzly Buckler", + [15299] = "Grizzly Cape", + [15300] = "Grizzly Gloves", + [15301] = "Grizzly Slippers", + [15302] = "Grizzly Belt", + [15303] = "Grizzly Pants", + [15304] = "Grizzly Jerkin", + [15305] = "Feral Shoes", + [15306] = "Feral Bindings", + [15307] = "Feral Buckler", + [15308] = "Feral Cord", + [15309] = "Feral Cloak", + [15310] = "Feral Gloves", + [15311] = "Feral Harness", + [15312] = "Feral Leggings", + [15313] = "Feral Shoulder Pads", + [15314] = "Bundle of Relics", + [15322] = "Smoothbore Gun", + [15323] = "Percussion Shotgun", + [15324] = "Burnside Rifle", + [15325] = "Sharpshooter Harquebus", + [15326] = "Gleaming Throwing Axe", + [15327] = "Wicked Throwing Dagger", + [15328] = "Joseph\'s Key", + [15329] = "Wrangler\'s Belt", + [15330] = "Wrangler\'s Boots", + [15331] = "Wrangler\'s Wristbands", + [15332] = "Wrangler\'s Buckler", + [15333] = "Wrangler\'s Cloak", + [15334] = "Wrangler\'s Gloves", + [15335] = "Briarsteel Shortsword", + [15336] = "Wrangler\'s Leggings", + [15337] = "Wrangler\'s Wraps", + [15338] = "Wrangler\'s Mantle", + [15339] = "Pathfinder Hat", + [15340] = "Pathfinder Cloak", + [15341] = "Pathfinder Footpads", + [15342] = "Pathfinder Guard", + [15343] = "Pathfinder Gloves", + [15344] = "Pathfinder Pants", + [15345] = "Pathfinder Shoulder Pads", + [15346] = "Pathfinder Vest", + [15347] = "Pathfinder Belt", + [15348] = "Pathfinder Bracers", + [15349] = "Headhunter\'s Belt", + [15350] = "Headhunter\'s Slippers", + [15351] = "Headhunter\'s Bands", + [15352] = "Headhunter\'s Buckler", + [15353] = "Headhunter\'s Headdress", + [15354] = "Headhunter\'s Cloak", + [15355] = "Headhunter\'s Mitts", + [15356] = "Headhunter\'s Armor", + [15357] = "Headhunter\'s Spaulders", + [15358] = "Headhunter\'s Woolies", + [15359] = "Trickster\'s Vest", + [15360] = "Trickster\'s Bindings", + [15361] = "Trickster\'s Sash", + [15362] = "Trickster\'s Boots", + [15363] = "Trickster\'s Headdress", + [15364] = "Trickster\'s Cloak", + [15365] = "Trickster\'s Handwraps", + [15366] = "Trickster\'s Leggings", + [15367] = "Trickster\'s Protector", + [15368] = "Trickster\'s Pauldrons", + [15369] = "Wolf Rider\'s Belt", + [15370] = "Wolf Rider\'s Boots", + [15371] = "Wolf Rider\'s Cloak", + [15372] = "Wolf Rider\'s Gloves", + [15373] = "Wolf Rider\'s Headgear", + [15374] = "Wolf Rider\'s Leggings", + [15375] = "Wolf Rider\'s Shoulder Pads", + [15376] = "Wolf Rider\'s Padded Armor", + [15377] = "Wolf Rider\'s Wristbands", + [15378] = "Rageclaw Belt", + [15379] = "Rageclaw Boots", + [15380] = "Rageclaw Bracers", + [15381] = "Rageclaw Chestguard", + [15382] = "Rageclaw Cloak", + [15383] = "Rageclaw Gloves", + [15384] = "Rageclaw Helm", + [15385] = "Rageclaw Leggings", + [15386] = "Rageclaw Shoulder Pads", + [15387] = "Jadefire Bracelets", + [15388] = "Jadefire Belt", + [15389] = "Jadefire Sabatons", + [15390] = "Jadefire Chestguard", + [15391] = "Jadefire Cap", + [15392] = "Jadefire Cloak", + [15393] = "Jadefire Gloves", + [15394] = "Jadefire Pants", + [15395] = "Jadefire Epaulets", + [15396] = "Curvewood Dagger", + [15397] = "Oakthrush Staff", + [15398] = "Sandcomber Boots", + [15399] = "Dryweed Belt", + [15400] = "Clamshell Bracers", + [15401] = "Welldrip Gloves", + [15402] = "Noosegrip Gauntlets", + [15403] = "Ridgeback Bracers", + [15404] = "Breakwater Girdle", + [15405] = "Shucking Gloves", + [15406] = "Crustacean Boots", + [15407] = "Cured Rugged Hide", + [15408] = "Heavy Scorpid Scale", + [15409] = "Refined Deeprock Salt", + [15410] = "Onyxia Scale", + [15411] = "Mark of Fordring", + [15412] = "Green Dragonscale", + [15413] = "Ornate Adamantium Breastplate", + [15414] = "Red Dragonscale", + [15415] = "Blue Dragonscale", + [15416] = "Black Dragonscale", + [15417] = "Devilsaur Leather", + [15418] = "Shimmering Platinum Warhammer", + [15419] = "Warbear Leather", + [15420] = "Ironfeather", + [15421] = "Shroud of the Exile", + [15422] = "Frostsaber Leather", + [15423] = "Chimera Leather", + [15424] = "Axe of Orgrimmar", + [15425] = "Peerless Bracers", + [15426] = "Peerless Boots", + [15427] = "Peerless Cloak", + [15428] = "Peerless Belt", + [15429] = "Peerless Gloves", + [15430] = "Peerless Headband", + [15431] = "Peerless Leggings", + [15432] = "Peerless Shoulders", + [15433] = "Peerless Armor", + [15434] = "Supreme Sash", + [15435] = "Supreme Shoes", + [15436] = "Supreme Bracers", + [15437] = "Supreme Cape", + [15438] = "Supreme Gloves", + [15439] = "Supreme Crown", + [15440] = "Supreme Leggings", + [15441] = "Supreme Shoulders", + [15442] = "Supreme Breastplate", + [15443] = "Kris of Orgrimmar", + [15444] = "Staff of Orgrimmar", + [15445] = "Hammer of Orgrimmar", + [15446] = "Stormwind Deputy Kit", + [15447] = "Living Rot", + [15448] = "Coagulated Rot", + [15449] = "Ghastly Trousers", + [15450] = "Dredgemire Leggings", + [15451] = "Gargoyle Leggings", + [15452] = "Featherbead Bracers", + [15453] = "Savannah Bracers", + [15454] = "Mortar and Pestle", + [15455] = "Dustfall Robes", + [15456] = "Lightstep Leggings", + [15457] = "Desert Shoulders", + [15458] = "Tundra Boots", + [15459] = "Grimtoll Wristguards", + [15460] = "Monster - Gun, Shotgun", + [15461] = "Lightheel Boots", + [15462] = "Loamflake Bracers", + [15463] = "Palestrider Gloves", + [15464] = "Brute Hammer", + [15465] = "Stingshot Wand", + [15466] = "Clink Shield", + [15467] = "Inventor\'s League Ring", + [15468] = "Windsong Drape", + [15469] = "Windsong Cinch", + [15470] = "Plainsguard Leggings", + [15471] = "Brawnhide Armor", + [15472] = "Charger\'s Belt", + [15473] = "Charger\'s Boots", + [15474] = "Charger\'s Bindings", + [15475] = "Charger\'s Cloak", + [15476] = "Charger\'s Handwraps", + [15477] = "Charger\'s Pants", + [15478] = "Charger\'s Shield", + [15479] = "Charger\'s Armor", + [15480] = "War Torn Girdle", + [15481] = "War Torn Greaves", + [15482] = "War Torn Bands", + [15483] = "War Torn Cape", + [15484] = "War Torn Handgrips", + [15485] = "War Torn Pants", + [15486] = "War Torn Shield", + [15487] = "War Torn Tunic", + [15488] = "Bloodspattered Surcoat", + [15489] = "Bloodspattered Sabatons", + [15490] = "Bloodspattered Cloak", + [15491] = "Bloodspattered Gloves", + [15492] = "Bloodspattered Sash", + [15493] = "Bloodspattered Loincloth", + [15494] = "Bloodspattered Shield", + [15495] = "Bloodspattered Wristbands", + [15496] = "Bloodspattered Shoulder Pads", + [15497] = "Outrunner\'s Cord", + [15498] = "Outrunner\'s Slippers", + [15499] = "Outrunner\'s Cuffs", + [15500] = "Outrunner\'s Chestguard", + [15501] = "Outrunner\'s Cloak", + [15502] = "Outrunner\'s Gloves", + [15503] = "Outrunner\'s Legguards", + [15504] = "Outrunner\'s Shield", + [15505] = "Outrunner\'s Pauldrons", + [15506] = "Grunt\'s AnkleWraps", + [15507] = "Grunt\'s Bracers", + [15508] = "Grunt\'s Cape", + [15509] = "Grunt\'s Handwraps", + [15510] = "Grunt\'s Belt", + [15511] = "Grunt\'s Legguards", + [15512] = "Grunt\'s Shield", + [15513] = "Grunt\'s Pauldrons", + [15514] = "Grunt\'s Chestpiece", + [15515] = "Spiked Chain Belt", + [15516] = "Spiked Chain Slippers", + [15517] = "Spiked Chain Wristbands", + [15518] = "Spiked Chain Breastplate", + [15519] = "Spiked Chain Cloak", + [15520] = "Spiked Chain Gauntlets", + [15521] = "Spiked Chain Leggings", + [15522] = "Spiked Chain Shield", + [15523] = "Spiked Chain Shoulder Pads", + [15524] = "Sentry\'s Surcoat", + [15525] = "Sentry\'s Slippers", + [15526] = "Sentry\'s Cape", + [15527] = "Sentry\'s Gloves", + [15528] = "Sentry\'s Sash", + [15529] = "Sentry\'s Leggings", + [15530] = "Sentry\'s Shield", + [15531] = "Sentry\'s Shoulderguards", + [15532] = "Sentry\'s Armsplints", + [15533] = "Sentry\'s Headdress", + [15534] = "Wicked Chain Boots", + [15535] = "Wicked Chain Bracers", + [15536] = "Wicked Chain Chestpiece", + [15537] = "Wicked Chain Cloak", + [15538] = "Wicked Chain Gauntlets", + [15539] = "Wicked Chain Waistband", + [15540] = "Wicked Chain Helmet", + [15541] = "Wicked Chain Legguards", + [15542] = "Wicked Chain Shoulder Pads", + [15543] = "Wicked Chain Shield", + [15544] = "Thick Scale Sabatons", + [15545] = "Thick Scale Bracelets", + [15546] = "Thick Scale Breastplate", + [15547] = "Thick Scale Cloak", + [15548] = "Thick Scale Gauntlets", + [15549] = "Thick Scale Belt", + [15550] = "Thick Scale Crown", + [15551] = "Thick Scale Legguards", + [15552] = "Thick Scale Shield", + [15553] = "Thick Scale Shoulder Pads", + [15554] = "Pillager\'s Girdle", + [15555] = "Pillager\'s Boots", + [15556] = "Pillager\'s Bracers", + [15557] = "Pillager\'s Chestguard", + [15558] = "Pillager\'s Crown", + [15559] = "Pillager\'s Cloak", + [15560] = "Pillager\'s Gloves", + [15561] = "Pillager\'s Leggings", + [15562] = "Pillager\'s Pauldrons", + [15563] = "Pillager\'s Shield", + [15564] = "Rugged Armor Kit", + [15565] = "Marauder\'s Boots", + [15566] = "Marauder\'s Bracers", + [15567] = "Marauder\'s Tunic", + [15568] = "Marauder\'s Cloak", + [15569] = "Marauder\'s Crest", + [15570] = "Marauder\'s Gauntlets", + [15571] = "Marauder\'s Belt", + [15572] = "Marauder\'s Circlet", + [15573] = "Marauder\'s Leggings", + [15574] = "Marauder\'s Shoulder Pads", + [15575] = "Sparkleshell Belt", + [15576] = "Sparkleshell Sabatons", + [15577] = "Sparkleshell Bracers", + [15578] = "Sparkleshell Breastplate", + [15579] = "Sparkleshell Cloak", + [15580] = "Sparkleshell Headwrap", + [15581] = "Sparkleshell Gauntlets", + [15582] = "Sparkleshell Legguards", + [15583] = "Sparkleshell Shoulder Pads", + [15584] = "Sparkleshell Shield", + [15585] = "Pardoc Grips", + [15586] = "Fast-growing Flower", + [15587] = "Ringtail Girdle", + [15588] = "Bracesteel Belt", + [15589] = "Steadfast Stompers", + [15590] = "Steadfast Bracelets", + [15591] = "Steadfast Breastplate", + [15592] = "Steadfast Buckler", + [15593] = "Steadfast Coronet", + [15594] = "Steadfast Cloak", + [15595] = "Steadfast Gloves", + [15596] = "Steadfast Legplates", + [15597] = "Steadfast Shoulders", + [15598] = "Steadfast Girdle", + [15599] = "Ancient Greaves", + [15600] = "Ancient Vambraces", + [15601] = "Ancient Chestpiece", + [15602] = "Ancient Crown", + [15603] = "Ancient Cloak", + [15604] = "Ancient Defender", + [15605] = "Ancient Gauntlets", + [15606] = "Ancient Belt", + [15607] = "Ancient Legguards", + [15608] = "Ancient Pauldrons", + [15609] = "Bonelink Armor", + [15610] = "Bonelink Bracers", + [15611] = "Bonelink Cape", + [15612] = "Bonelink Gauntlets", + [15613] = "Bonelink Belt", + [15614] = "Bonelink Sabatons", + [15615] = "Bonelink Helmet", + [15616] = "Bonelink Legplates", + [15617] = "Bonelink Epaulets", + [15618] = "Bonelink Wall Shield", + [15619] = "Gryphon Mail Belt", + [15620] = "Gryphon Mail Bracelets", + [15621] = "Gryphon Mail Buckler", + [15622] = "Gryphon Mail Breastplate", + [15623] = "Gryphon Mail Crown", + [15624] = "Gryphon Cloak", + [15625] = "Gryphon Mail Gauntlets", + [15626] = "Gryphon Mail Greaves", + [15627] = "Gryphon Mail Legguards", + [15628] = "Gryphon Mail Pauldrons", + [15629] = "Formidable Bracers", + [15630] = "Formidable Sabatons", + [15631] = "Formidable Chestpiece", + [15632] = "Formidable Cape", + [15633] = "Formidable Crest", + [15634] = "Formidable Circlet", + [15635] = "Formidable Gauntlets", + [15636] = "Formidable Belt", + [15637] = "Formidable Legguards", + [15638] = "Formidable Shoulder Pads", + [15639] = "Ironhide Bracers", + [15640] = "Ironhide Breastplate", + [15641] = "Ironhide Belt", + [15642] = "Ironhide Greaves", + [15643] = "Ironhide Cloak", + [15644] = "Ironhide Gauntlets", + [15645] = "Ironhide Helmet", + [15646] = "Ironhide Legguards", + [15647] = "Ironhide Pauldrons", + [15648] = "Ironhide Shield", + [15649] = "Merciless Bracers", + [15650] = "Merciless Surcoat", + [15651] = "Merciless Crown", + [15652] = "Merciless Cloak", + [15653] = "Merciless Gauntlets", + [15654] = "Merciless Belt", + [15655] = "Merciless Legguards", + [15656] = "Merciless Epaulets", + [15657] = "Merciless Shield", + [15658] = "Impenetrable Sabatons", + [15659] = "Impenetrable Bindings", + [15660] = "Impenetrable Breastplate", + [15661] = "Impenetrable Cloak", + [15662] = "Impenetrable Gauntlets", + [15663] = "Impenetrable Belt", + [15664] = "Impenetrable Helmet", + [15665] = "Impenetrable Legguards", + [15666] = "Impenetrable Pauldrons", + [15667] = "Impenetrable Wall", + [15668] = "Magnificent Bracers", + [15669] = "Magnificent Breastplate", + [15670] = "Magnificent Helmet", + [15671] = "Magnificent Cloak", + [15672] = "Magnificent Gauntlets", + [15673] = "Magnificent Belt", + [15674] = "Magnificent Greaves", + [15675] = "Magnificent Guard", + [15676] = "Magnificent Leggings", + [15677] = "Magnificent Shoulders", + [15678] = "Triumphant Sabatons", + [15679] = "Triumphant Bracers", + [15680] = "Triumphant Chestpiece", + [15681] = "Triumphant Cloak", + [15682] = "Triumphant Gauntlets", + [15683] = "Triumphant Girdle", + [15684] = "Triumphant Skullcap", + [15685] = "Triumphant Legplates", + [15686] = "Triumphant Shoulder Pads", + [15687] = "Triumphant Shield", + [15688] = "Magic Beans", + [15689] = "Trader\'s Ring", + [15690] = "Kodobone Necklace", + [15691] = "Sidegunner Shottie", + [15692] = "Kodo Brander", + [15693] = "Grand Shoulders", + [15694] = "Merciless Greaves", + [15695] = "Studded Ring Shield", + [15696] = "Ruined Tome", + [15697] = "Kodo Rustler Boots", + [15698] = "Wrangling Spaulders", + [15699] = "Small Brown-wrapped Package", + [15702] = "Chemist\'s Ring", + [15703] = "Chemist\'s Smock", + [15704] = "Hunter\'s Insignia Medal", + [15705] = "Tidecrest Blade", + [15706] = "Hunt Tracker Blade", + [15707] = "Brantwood Sash", + [15708] = "Blight Leather Gloves", + [15709] = "Gearforge Girdle", + [15710] = "Cenarion Lunardust", + [15722] = "Spraggle\'s Canteen", + [15723] = "Tea with Sugar", + [15724] = "Pattern: Heavy Scorpid Bracers", + [15725] = "Pattern: Wicked Leather Gauntlets", + [15726] = "Pattern: Green Dragonscale Breastplate", + [15727] = "Pattern: Heavy Scorpid Vest", + [15728] = "Pattern: Wicked Leather Bracers", + [15729] = "Pattern: Chimeric Gloves", + [15730] = "Pattern: Red Dragonscale Breastplate", + [15731] = "Pattern: Runic Leather Gauntlets", + [15732] = "Pattern: Volcanic Leggings", + [15733] = "Pattern: Green Dragonscale Leggings", + [15734] = "Pattern: Living Shoulders", + [15735] = "Pattern: Ironfeather Shoulders", + [15736] = "Smokey\'s Special Compound", + [15737] = "Pattern: Chimeric Boots", + [15738] = "Pattern: Heavy Scorpid Gauntlets", + [15739] = "Pattern: Runic Leather Bracers", + [15740] = "Pattern: Frostsaber Boots", + [15741] = "Pattern: Stormshroud Pants", + [15742] = "Pattern: Warbear Harness", + [15743] = "Pattern: Heavy Scorpid Belt", + [15744] = "Pattern: Wicked Leather Headband", + [15745] = "Pattern: Runic Leather Belt", + [15746] = "Pattern: Chimeric Leggings", + [15747] = "Pattern: Frostsaber Leggings", + [15748] = "Pattern: Heavy Scorpid Leggings", + [15749] = "Pattern: Volcanic Breastplate", + [15750] = "Sceptre of Light", + [15751] = "Pattern: Blue Dragonscale Breastplate", + [15752] = "Pattern: Living Leggings", + [15753] = "Pattern: Stormshroud Armor", + [15754] = "Pattern: Warbear Woolies", + [15755] = "Pattern: Chimeric Vest", + [15756] = "Pattern: Runic Leather Headband", + [15757] = "Pattern: Wicked Leather Pants", + [15758] = "Pattern: Devilsaur Gauntlets", + [15759] = "Pattern: Black Dragonscale Breastplate", + [15760] = "Pattern: Ironfeather Breastplate", + [15761] = "Pattern: Frostsaber Gloves", + [15762] = "Pattern: Heavy Scorpid Helm", + [15763] = "Pattern: Blue Dragonscale Shoulders", + [15764] = "Pattern: Stormshroud Shoulders", + [15765] = "Pattern: Runic Leather Pants", + [15766] = "Gem of the Serpent", + [15767] = "Hameya\'s Key", + [15768] = "Pattern: Wicked Leather Belt", + [15769] = "Pattern: Onyxia Scale Cloak", + [15770] = "Pattern: Black Dragonscale Shoulders", + [15771] = "Pattern: Living Breastplate", + [15772] = "Pattern: Devilsaur Leggings", + [15773] = "Pattern: Wicked Leather Armor", + [15774] = "Pattern: Heavy Scorpid Shoulders", + [15775] = "Pattern: Volcanic Shoulders", + [15776] = "Pattern: Runic Leather Armor", + [15777] = "Pattern: Runic Leather Shoulders", + [15778] = "Mechanical Yeti", + [15779] = "Pattern: Frostsaber Tunic", + [15780] = "Pattern: Onyxia Scale Breastplate", + [15781] = "Pattern: Black Dragonscale Leggings", + [15782] = "Beaststalker Blade", + [15783] = "Beasthunter Dagger", + [15784] = "Crystal Breeze Mantle", + [15785] = "Zaeldarr\'s Head", + [15786] = "Fernpulse Jerkin", + [15787] = "Willow Band Hauberk", + [15788] = "Everlook Report", + [15789] = "Deep River Cloak", + [15790] = "Studies in Spirit Speaking", + [15791] = "Turquoise Sash", + [15792] = "Plow Wood Spaulders", + [15793] = "A Chewed Bone", + [15794] = "Ripped Ogre Loincloth", + [15795] = "Emerald Mist Gauntlets", + [15796] = "Seaspray Bracers", + [15797] = "Shining Armplates", + [15798] = "Chipped Ogre Teeth", + [15799] = "Heroic Commendation Medal", + [15800] = "Intrepid Shortsword", + [15801] = "Valiant Shortsword", + [15802] = "Mooncloth Boots", + [15803] = "Book of the Ancients", + [15804] = "Cerise Drape", + [15805] = "Penelope\'s Rose", + [15806] = "Mirah\'s Song", + [15807] = "Light Crossbow", + [15808] = "Fine Light Crossbow", + [15809] = "Heavy Crossbow", + [15810] = "Short Spear", + [15811] = "Heavy Spear", + [15812] = "Orchid Amice", + [15813] = "Gold Link Belt", + [15814] = "Hameya\'s Slayer", + [15815] = "Hameya\'s Cloak", + [15822] = "Shadowskin Spaulders", + [15823] = "Bricksteel Gauntlets", + [15824] = "Astoria Robes", + [15825] = "Traphook Jerkin", + [15826] = "Curative Animal Salve", + [15827] = "Jadescale Breastplate", + [15842] = "Empty Dreadmist Peak Sampler", + [15843] = "Filled Dreadmist Peak Sampler", + [15844] = "Empty Cliffspring Falls Sampler", + [15845] = "Filled Cliffspring Falls Sampler", + [15846] = "Salt Shaker", + [15847] = "Quel\'Thalas Registry", + [15848] = "Crate of Ghost Magnets", + [15849] = "Ghost-o-plasm", + [15850] = "Patch of Duskwing\'s Fur", + [15851] = "Lunar Fungus", + [15852] = "Kodo Horn", + [15853] = "Windreaper", + [15854] = "Dancing Sliver", + [15855] = "Ring of Protection", + [15856] = "Archlight Talisman", + [15857] = "Magebane Scion", + [15858] = "Freewind Gloves", + [15859] = "Seapost Girdle", + [15860] = "Blinkstrike Armguards", + [15861] = "Swiftfoot Treads", + [15862] = "Blitzcleaver", + [15863] = "Grave Scepter", + [15864] = "Condor Bracers", + [15865] = "Anchorhold Buckler", + [15866] = "Veildust Medicine Bag", + [15867] = "Prismcharm", + [15868] = "The Grand Crusader\'s Command", + [15869] = "Silver Skeleton Key", + [15870] = "Golden Skeleton Key", + [15871] = "Truesilver Skeleton Key", + [15872] = "Arcanite Skeleton Key", + [15873] = "Ragged John\'s Neverending Cup", + [15874] = "Soft-shelled Clam", + [15875] = "Rotten Apple", + [15876] = "Nathanos\' Chest", + [15877] = "Shrine Bauble", + [15878] = "Rackmore\'s Silver Key", + [15879] = "Overlord Ror\'s Claw", + [15880] = "Head of Ramstein the Gorger", + [15881] = "Rackmore\'s Golden Key", + [15882] = "Half Pendant of Aquatic Endurance", + [15883] = "Half Pendant of Aquatic Agility", + [15884] = "Augustus\' Receipt Book", + [15885] = "Pendant of the Sea Lion", + [15886] = "Timolain\'s Phylactery", + [15887] = "Heroic Guard", + [15888] = "Deprecated Glorious Shield", + [15889] = "Deprecated Jademir Scale Shield", + [15890] = "Vanguard Shield", + [15891] = "Hulking Shield", + [15892] = "Slayer\'s Shield", + [15893] = "Prospector\'s Buckler", + [15894] = "Bristlebark Buckler", + [15895] = "Burnt Buckler", + [15902] = "A Crazy Grab Bag", + [15903] = "Right-Handed Claw", + [15904] = "Right-Handed Blades", + [15905] = "Right-Handed Brass Knuckles", + [15906] = "Left-Handed Brass Knuckles", + [15907] = "Left-Handed Claw", + [15908] = "Taming Rod", + [15909] = "Left-Handed Blades", + [15910] = "Monster - Trident, Dark Ornate", + [15911] = "Taming Rod", + [15912] = "Buccaneer\'s Orb", + [15913] = "Taming Rod", + [15914] = "Taming Rod", + [15915] = "Taming Rod", + [15916] = "Taming Rod", + [15917] = "Taming Rod", + [15918] = "Conjurer\'s Sphere", + [15919] = "Taming Rod", + [15920] = "Taming Rod", + [15921] = "Taming Rod", + [15922] = "Taming Rod", + [15923] = "Taming Rod", + [15924] = "Soft-shelled Clam Meat", + [15925] = "Journeyman\'s Stave", + [15926] = "Spellbinder Orb", + [15927] = "Bright Sphere", + [15928] = "Silver-thread Rod", + [15929] = "Nightsky Orb", + [15930] = "Imperial Red Scepter", + [15931] = "Arcane Star", + [15932] = "Disciple\'s Stein", + [15933] = "Simple Branch", + [15934] = "Sage\'s Stave", + [15935] = "Durable Rod", + [15936] = "Duskwoven Branch", + [15937] = "Hibernal Sphere", + [15938] = "Mystical Orb", + [15939] = "Councillor\'s Scepter", + [15940] = "Elegant Scepter", + [15941] = "High Councillor\'s Scepter", + [15942] = "Master\'s Rod", + [15943] = "Imbued Shield", + [15944] = "Ancestral Orb", + [15945] = "Runic Stave", + [15946] = "Mystic\'s Sphere", + [15947] = "Sanguine Star", + [15962] = "Satyr\'s Rod", + [15963] = "Stonecloth Branch", + [15964] = "Silksand Star", + [15965] = "Windchaser Orb", + [15966] = "Venomshroud Orb", + [15967] = "Highborne Star", + [15968] = "Elunarian Sphere", + [15969] = "Beaded Orb", + [15970] = "Native Branch", + [15971] = "Aboriginal Rod", + [15972] = "Ritual Stein", + [15973] = "Watcher\'s Star", + [15974] = "Pagan Rod", + [15975] = "Raincaller Scepter", + [15976] = "Thistlefur Branch", + [15977] = "Vital Orb", + [15978] = "Geomancer\'s Rod", + [15979] = "Embersilk Stave", + [15980] = "Darkmist Orb", + [15981] = "Lunar Sphere", + [15982] = "Bloodwoven Rod", + [15983] = "Gaea\'s Scepter", + [15984] = "Opulent Scepter", + [15985] = "Arachnidian Branch", + [15986] = "Bonecaster\'s Star", + [15987] = "Astral Orb", + [15988] = "Resplendent Orb", + [15989] = "Eternal Rod", + [15990] = "Enduring Shield", + [15991] = "Warleader\'s Shield", + [15992] = "Dense Blasting Powder", + [15993] = "Thorium Grenade", + [15994] = "Thorium Widget", + [15995] = "Thorium Rifle", + [15996] = "Lifelike Mechanical Toad", + [15997] = "Thorium Shells", + [15998] = "Lewis\' Note", + [15999] = "Spellpower Goggles Xtreme Plus", + [16000] = "Thorium Tube", + [16001] = "SI:7 Insignia (Fredo)", + [16002] = "SI:7 Insignia (Turyen)", + [16003] = "SI:7 Insignia (Rutger)", + [16004] = "Dark Iron Rifle", + [16005] = "Dark Iron Bomb", + [16006] = "Delicate Arcanite Converter", + [16007] = "Flawless Arcanite Rifle", + [16008] = "Master Engineer\'s Goggles", + [16009] = "Voice Amplification Modulator", + [16022] = "Arcanite Mechanical Dragonling", + [16023] = "Masterwork Target Dummy", + [16024] = "Ashbringer Test 001", + [16025] = "Ashbringer Test 002", + [16026] = "PVP Plate Helm Alliance", + [16027] = "PVP Plate Breastplate Alliance", + [16028] = "PVP Plate Legplates Alliance", + [16029] = "PVP Plate Gauntlets Alliance", + [16030] = "PVP Plate Boots Alliance", + [16031] = "PVP Plate Shoulder Alliance", + [16033] = "PVP Plate Wrist Alliance", + [16034] = "PVP Plate Cloak Alliance", + [16035] = "PVP Cloth Helm Horde", + [16036] = "PVP Cloth Robe Horde", + [16037] = "PVP Cloth Legs Horde", + [16038] = "PVP Cloth Shoulder Horde", + [16039] = "Ta\'Kierthan Songblade", + [16040] = "Arcane Bomb", + [16041] = "Schematic: Thorium Grenade", + [16042] = "Schematic: Thorium Widget", + [16043] = "Schematic: Thorium Rifle", + [16044] = "Schematic: Lifelike Mechanical Toad", + [16045] = "Schematic: Spellpower Goggles Xtreme Plus", + [16046] = "Schematic: Masterwork Target Dummy", + [16047] = "Schematic: Thorium Tube", + [16048] = "Schematic: Dark Iron Rifle", + [16049] = "Schematic: Dark Iron Bomb", + [16050] = "Schematic: Delicate Arcanite Converter", + [16051] = "Schematic: Thorium Shells", + [16052] = "Schematic: Voice Amplification Modulator", + [16053] = "Schematic: Master Engineer\'s Goggles", + [16054] = "Schematic: Arcanite Dragonling", + [16055] = "Schematic: Arcane Bomb", + [16056] = "Schematic: Flawless Arcanite Rifle", + [16057] = "Explorer\'s Knapsack", + [16058] = "Fordring\'s Seal", + [16059] = "Common Brown Shirt", + [16060] = "Common White Shirt", + [16061] = "Test Fire Res Shoulders Cloth", + [16062] = "Test Fire Res Waist Cloth", + [16063] = "Test Fire Res Hands Cloth", + [16064] = "Test Fire Res Waist Mail", + [16065] = "Test Fire Res Feet Leather", + [16066] = "Test Fire Res Feet Mail", + [16067] = "Test Fire Res Ring", + [16068] = "Test Fire Resist Cloth LockBox", + [16069] = "Test Fire Resist Leather LockBox", + [16070] = "Test Fire Resist Mail LockBox", + [16071] = "Test Fire Resist Plate LockBox", + [16072] = "Expert Cookbook", + [16073] = "Artisan Cookbook", + [16074] = "Test Potion LockBox (Warrior)", + [16075] = "Test Potion LockBox (Rogue)", + [16076] = "Test Potion LockBox (Paladin)", + [16077] = "Test Potion LockBox (Hunter)", + [16078] = "Test Potion LockBox (Druid)", + [16079] = "Test Potion LockBox (Shaman)", + [16080] = "Test Potion LockBox (Mage/Priest/Warlock)", + [16081] = "Test Potion LockBox (Raid)", + [16082] = "Artisan Fishing - The Way of the Lure", + [16083] = "Expert Fishing - The Bass and You", + [16084] = "Expert First Aid - Under Wraps", + [16085] = "Artisan First Aid - Heal Thyself", + [16086] = "Test Enchant Chest Health", + [16102] = "Test Enchant Chest Mana", + [16103] = "Test Enchant Boots Stamina", + [16104] = "QAEnchhelp Cloak +7 Fire Resistance", + [16105] = "Test Enchant Bracer Greater Stamina", + [16106] = "Test Enchant Weapon Greater Striking", + [16107] = "Test Enchant Bracer Greater Spirit", + [16108] = "Test Enchant 2H Weapon Greater Impact", + [16109] = "Test Enchantments LockBox (Enchanting Items)", + [16110] = "Recipe: Monster Omelet", + [16111] = "Recipe: Spiced Chili Crab", + [16112] = "Manual: Heavy Silk Bandage", + [16113] = "Manual: Mageweave Bandage", + [16114] = "Foreman\'s Blackjack", + [16115] = "Osric\'s Crate", + [16116] = "Test Nature Res Cloak Cloth", + [16117] = "Test Nature Res Hands Cloth", + [16118] = "Test Nature Res Legs Cloth", + [16119] = "Test Nature Res Wrist Cloth", + [16120] = "Test Nature Res Waist Cloth", + [16121] = "Test Nature Res Head Cloth", + [16122] = "Test Nature Res Shoulders Cloth", + [16123] = "Test Nature Res Neck", + [16124] = "Test Frost Res Neck", + [16125] = "Test Arcane Res Neck", + [16126] = "Test Nature Res Waist Leather", + [16127] = "Test Nature Res Wrist Leather", + [16128] = "Test Nature Res Head Leather", + [16129] = "Test Nature Res Feet Mail", + [16130] = "Test Nature Res Head Plate", + [16131] = "Test Nature Res Waist Mail", + [16132] = "Test Nature Res Wrist Mail", + [16133] = "Test Nature Res Head Mail", + [16134] = "Test Nature Res Shoulders Mail", + [16135] = "Test Frost Res Feet Cloth", + [16136] = "Test Frost Res Waist Cloth", + [16137] = "Test Frost Res Wrist Cloth", + [16138] = "Test Frost Res Head Cloth", + [16139] = "Test Frost Res Head Leather", + [16140] = "Test Nature Res Head Leather", + [16141] = "Test Nature Res Head Mail", + [16142] = "Test Frost Res Wrist Mail", + [16143] = "Test Frost Res Shoulder Mail", + [16144] = "Test Frost Res Shoulders Leather", + [16145] = "Test Shadow Res Waist Cloth", + [16146] = "Test Shadow Res Head Cloth", + [16147] = "Test Shadow Res Shoulders Cloth", + [16148] = "Test Shadow Res Shoulders Leather", + [16149] = "Test Shadow Res Shoulder Mail", + [16150] = "Test Shadow Res Waist Leather", + [16151] = "Test Arcane Res Feet Cloth", + [16152] = "Test Arcane Res Waist Cloth", + [16153] = "Test Arcane Res Wrist Cloth", + [16154] = "Test Arcane Res Shoulders Cloth", + [16155] = "Test Arcane Res Waist Leather", + [16156] = "Test Arcane Res Head Leather", + [16157] = "Test Arcane Res Feet Mail", + [16158] = "Test Arcane Res Wrist Mail", + [16159] = "Test Arcane Res Head Mail", + [16160] = "Test Arcane Res Shoulders Plate", + [16161] = "Test Shadow Res Hands Plate", + [16162] = "Test Frost Res Shoulders Plate", + [16163] = "Test Arcane Res Waist Mail", + [16164] = "Test Arcane Res Hands Mail", + [16165] = "Test Arcane Res Legs Mail", + [16166] = "Bean Soup", + [16167] = "Versicolor Treat", + [16168] = "Heaven Peach", + [16169] = "Wild Ricecake", + [16170] = "Steamed Mandu", + [16171] = "Shinsollo", + [16172] = "Test Nature Res Hands Plate", + [16173] = "Test Frost Resist Cloth LockBox", + [16174] = "Test Frost Resist Leather LockBox", + [16175] = "Test Frost Resist Mail LockBox", + [16176] = "Test Frost Resist Plate LockBox", + [16177] = "Test Nature Resist Plate LockBox", + [16178] = "Test Nature Resist Leather LockBox", + [16179] = "Test Nature Resist Mail LockBox", + [16180] = "Test Nature Resist Cloth LockBox", + [16181] = "Test Shadow Resist Cloth LockBox", + [16182] = "Test Shadow Resist Leather LockBox", + [16183] = "Test Shadow Resist Mail LockBox", + [16184] = "Test Shadow Resist Plate LockBox", + [16185] = "Test Arcane Resist Plate LockBox", + [16186] = "Test Arcane Resist Cloth LockBox", + [16187] = "Test Arcane Resist Leather LockBox", + [16188] = "Test Arcane Resist Mail LockBox", + [16189] = "Maggran\'s Reserve Letter", + [16190] = "Bloodfury Ripper\'s Remains", + [16191] = "Ornate Mirror", + [16192] = "Besseleth\'s Fang", + [16202] = "Lesser Eternal Essence", + [16203] = "Greater Eternal Essence", + [16204] = "Illusion Dust", + [16205] = "Gaea Seed", + [16206] = "Arcanite Rod", + [16207] = "Runed Arcanite Rod", + [16208] = "Enchanted Gaea Seeds", + [16209] = "Podrig\'s Order", + [16210] = "Gordon\'s Crate", + [16211] = "Test Quality Modifier Chest", + [16212] = "TEST SWORD 3", + [16213] = "Test Quality Modifier Chest", + [16214] = "Formula: Enchant Bracer - Greater Intellect", + [16215] = "Formula: Enchant Boots - Greater Stamina", + [16216] = "Formula: Enchant Cloak - Greater Resistance", + [16217] = "Formula: Enchant Shield - Greater Stamina", + [16218] = "Formula: Enchant Bracer - Superior Spirit", + [16219] = "Formula: Enchant Gloves - Greater Agility", + [16220] = "Formula: Enchant Boots - Spirit", + [16221] = "Formula: Enchant Chest - Major Health", + [16222] = "Formula: Enchant Shield - Superior Spirit", + [16223] = "Formula: Enchant Weapon - Icy Chill", + [16224] = "Formula: Enchant Cloak - Superior Defense", + [16242] = "Formula: Enchant Chest - Major Mana", + [16243] = "Formula: Runed Arcanite Rod", + [16244] = "Formula: Enchant Gloves - Greater Strength", + [16245] = "Formula: Enchant Boots - Greater Agility", + [16246] = "Formula: Enchant Bracer - Superior Strength", + [16247] = "Formula: Enchant 2H Weapon - Superior Impact", + [16248] = "Formula: Enchant Weapon - Unholy", + [16249] = "Formula: Enchant 2H Weapon - Major Intellect", + [16250] = "Formula: Enchant Weapon - Superior Striking", + [16251] = "Formula: Enchant Bracer - Superior Stamina", + [16252] = "Formula: Enchant Weapon - Crusader", + [16253] = "Formula: Enchant Chest - Greater Stats", + [16254] = "Formula: Enchant Weapon - Lifestealing", + [16255] = "Formula: Enchant 2H Weapon - Major Spirit", + [16262] = "Nessa\'s Collection", + [16263] = "Laird\'s Response", + [16282] = "Bundle of Hides", + [16283] = "Ahanu\'s Leather Goods", + [16302] = "Grimoire of Firebolt (Rank 2)", + [16303] = "Ursangous\'s Paw", + [16304] = "Shadumbra\'s Head", + [16305] = "Sharptalon\'s Claw", + [16306] = "Zargh\'s Meats", + [16307] = "Gryshka\'s Letter", + [16308] = "Northridge Crowbar", + [16309] = "Drakefire Amulet", + [16310] = "Brock\'s List", + [16311] = "Honorary Picks", + [16312] = "Incendrites", + [16313] = "Felix\'s Chest", + [16314] = "Felix\'s Bucket of Bolts", + [16315] = "Sergeant Major\'s Cape", + [16316] = "Grimoire of Firebolt (Rank 3)", + [16317] = "Grimoire of Firebolt (Rank 4)", + [16318] = "Grimoire of Firebolt (Rank 5)", + [16319] = "Grimoire of Firebolt (Rank 6)", + [16320] = "Grimoire of Firebolt (Rank 7)", + [16321] = "Grimoire of Blood Pact (Rank 1)", + [16322] = "Grimoire of Blood Pact (Rank 2)", + [16323] = "Grimoire of Blood Pact (Rank 3)", + [16324] = "Grimoire of Blood Pact (Rank 4)", + [16325] = "Grimoire of Blood Pact (Rank 5)", + [16326] = "Grimoire of Fire Shield (Rank 1)", + [16327] = "Grimoire of Fire Shield (Rank 2)", + [16328] = "Grimoire of Fire Shield (Rank 3)", + [16329] = "Grimoire of Fire Shield (Rank 4)", + [16330] = "Grimoire of Fire Shield (Rank 5)", + [16331] = "Grimoire of Phase Shift", + [16332] = "Thazz\'ril\'s Pick", + [16333] = "Samuel\'s Remains", + [16334] = "Sergeant\'s Insignia", + [16335] = "Senior Sergeant\'s Insignia", + [16336] = "Sergeant Major\'s Cape", + [16337] = "Sergeant Major\'s Cape", + [16338] = "Knight-Lieutenant\'s Steed", + [16339] = "Commander\'s Steed", + [16340] = "First Sergeant\'s Cloak", + [16341] = "Sergeant\'s Cloak", + [16342] = "Sergeant\'s Cape", + [16343] = "Blood Guard\'s Mount", + [16344] = "Lieutenant General\'s Mount", + [16345] = "High Warlord\'s Blade", + [16346] = "Grimoire of Torment (Rank 2)", + [16347] = "Grimoire of Torment (Rank 3)", + [16348] = "Grimoire of Torment (Rank 4)", + [16349] = "Grimoire of Torment (Rank 5)", + [16350] = "Grimoire of Torment (Rank 6)", + [16351] = "Grimoire of Sacrifice (Rank 1)", + [16352] = "Grimoire of Sacrifice (Rank 2)", + [16353] = "Grimoire of Sacrifice (Rank 3)", + [16354] = "Grimoire of Sacrifice (Rank 4)", + [16355] = "Grimoire of Sacrifice (Rank 5)", + [16356] = "Grimoire of Sacrifice (Rank 6)", + [16357] = "Grimoire of Consume Shadows (Rank 1)", + [16358] = "Grimoire of Consume Shadows (Rank 2)", + [16359] = "Grimoire of Consume Shadows (Rank 3)", + [16360] = "Grimoire of Consume Shadows (Rank 4)", + [16361] = "Grimoire of Consume Shadows (Rank 5)", + [16362] = "Grimoire of Consume Shadows (Rank 6)", + [16363] = "Grimoire of Suffering (Rank 1)", + [16364] = "Grimoire of Suffering (Rank 2)", + [16365] = "Grimoire of Suffering (Rank 3)", + [16366] = "Grimoire of Suffering (Rank 4)", + [16367] = "Knight-Captain\'s Silk Sash", + [16368] = "Grimoire of Lash of Pain (Rank 2)", + [16369] = "Knight-Lieutenant\'s Silk Boots", + [16370] = "Knight-Captain\'s Silk Cuffs", + [16371] = "Grimoire of Lash of Pain (Rank 3)", + [16372] = "Grimoire of Lash of Pain (Rank 4)", + [16373] = "Grimoire of Lash of Pain (Rank 5)", + [16374] = "Grimoire of Lash of Pain (Rank 6)", + [16375] = "Grimoire of Soothing Kiss (Rank 1)", + [16376] = "Grimoire of Soothing Kiss (Rank 2)", + [16377] = "Grimoire of Soothing Kiss (Rank 3)", + [16378] = "Grimoire of Soothing Kiss (Rank 4)", + [16379] = "Grimoire of Seduction", + [16380] = "Grimoire of Lesser Invisibility", + [16381] = "Grimoire of Devour Magic (Rank 2)", + [16382] = "Grimoire of Devour Magic (Rank 3)", + [16383] = "Grimoire of Devour Magic (Rank 4)", + [16384] = "Grimoire of Tainted Blood (Rank 1)", + [16385] = "Grimoire of Tainted Blood (Rank 2)", + [16386] = "Grimoire of Tainted Blood (Rank 3)", + [16387] = "Grimoire of Tainted Blood (Rank 4)", + [16388] = "Grimoire of Spell Lock (Rank 1)", + [16389] = "Grimoire of Spell Lock (Rank 2)", + [16390] = "Grimoire of Paranoia", + [16391] = "Knight-Lieutenant\'s Silk Gloves", + [16392] = "Knight-Lieutenant\'s Leather Boots", + [16393] = "Knight-Lieutenant\'s Dragonhide Footwraps", + [16394] = "Knight-Captain\'s Leather Bracers", + [16395] = "Knight-Captain\'s Dragonhide Armsplints", + [16396] = "Knight-Lieutenant\'s Leather Gauntlets", + [16397] = "Knight-Lieutenant\'s Dragonhide Gloves", + [16398] = "Knight-Captain\'s Leather Belt", + [16399] = "Knight-Captain\'s Dragonhide Girdle", + [16400] = "Knight-Captain\'s Chain Girdle", + [16401] = "Knight-Lieutenant\'s Chain Boots", + [16402] = "Knight-Captain\'s Chain Armguards", + [16403] = "Knight-Lieutenant\'s Chain Gauntlets", + [16404] = "Knight-Captain\'s Plate Wristguards", + [16405] = "Knight-Lieutenant\'s Plate Boots", + [16406] = "Knight-Lieutenant\'s Plate Gauntlets", + [16407] = "Knight-Captain\'s Plate Girdle", + [16408] = "Befouled Water Globe", + [16409] = "Knight-Lieutenant\'s Lamellar Sabatons", + [16410] = "Knight-Lieutenant\'s Lamellar Gauntlets", + [16411] = "Knight-Captain\'s Lamellar Cinch", + [16412] = "Knight-Captain\'s Lamellar Armsplints", + [16413] = "Knight-Captain\'s Silk Raiment", + [16414] = "Knight-Captain\'s Silk Leggings", + [16415] = "Lieutenant Commander\'s Silk Spaulders", + [16416] = "Lieutenant Commander\'s Crown", + [16417] = "Knight-Captain\'s Leather Armor", + [16418] = "Lieutenant Commander\'s Leather Veil", + [16419] = "Knight-Captain\'s Leather Legguards", + [16420] = "Lieutenant Commander\'s Leather Spaulders", + [16421] = "Knight-Captain\'s Dragonhide Tunic", + [16422] = "Knight-Captain\'s Dragonhide Leggings", + [16423] = "Lieutenant Commander\'s Dragonhide Epaulets", + [16424] = "Lieutenant Commander\'s Dragonhide Shroud", + [16425] = "Knight-Captain\'s Chain Hauberk", + [16426] = "Knight-Captain\'s Chain Leggings", + [16427] = "Lieutenant Commander\'s Chain Pauldrons", + [16428] = "Lieutenant Commander\'s Chain Helmet", + [16429] = "Lieutenant Commander\'s Plate Helm", + [16430] = "Knight-Captain\'s Plate Chestguard", + [16431] = "Knight-Captain\'s Plate Leggings", + [16432] = "Lieutenant Commander\'s Plate Pauldrons", + [16433] = "Knight-Captain\'s Lamellar Breastplate", + [16434] = "Lieutenant Commander\'s Lamellar Headguard", + [16435] = "Knight-Captain\'s Lamellar Leggings", + [16436] = "Lieutenant Commander\'s Lamellar Shoulders", + [16437] = "Marshal\'s Silk Footwraps", + [16438] = "Marshal\'s Silk Bracers", + [16439] = "Marshal\'s Silk Sash", + [16440] = "Marshal\'s Silk Gloves", + [16441] = "Field Marshal\'s Coronet", + [16442] = "Marshal\'s Silk Leggings", + [16443] = "Field Marshal\'s Silk Vestments", + [16444] = "Field Marshal\'s Silk Spaulders", + [16445] = "Marshal\'s Dragonhide Bracers", + [16446] = "Marshal\'s Leather Footguards", + [16447] = "Marshal\'s Dragonhide Waistguard", + [16448] = "Marshal\'s Dragonhide Gauntlets", + [16449] = "Field Marshal\'s Dragonhide Spaulders", + [16450] = "Marshal\'s Dragonhide Legguards", + [16451] = "Field Marshal\'s Dragonhide Helmet", + [16452] = "Field Marshal\'s Dragonhide Breastplate", + [16453] = "Field Marshal\'s Leather Chestpiece", + [16454] = "Marshal\'s Leather Handgrips", + [16455] = "Field Marshal\'s Leather Mask", + [16456] = "Marshal\'s Leather Leggings", + [16457] = "Field Marshal\'s Leather Epaulets", + [16458] = "Marshal\'s Leather Cinch", + [16459] = "Marshal\'s Dragonhide Boots", + [16460] = "Marshal\'s Leather Armsplints", + [16461] = "Marshal\'s Chain Bracers", + [16462] = "Marshal\'s Chain Boots", + [16463] = "Marshal\'s Chain Grips", + [16464] = "Marshal\'s Chain Girdle", + [16465] = "Field Marshal\'s Chain Helm", + [16466] = "Field Marshal\'s Chain Breastplate", + [16467] = "Marshal\'s Chain Legguards", + [16468] = "Field Marshal\'s Chain Spaulders", + [16469] = "Marshal\'s Lamellar Armguards", + [16470] = "Marshal\'s Lamellar Belt", + [16471] = "Marshal\'s Lamellar Gloves", + [16472] = "Marshal\'s Lamellar Boots", + [16473] = "Field Marshal\'s Lamellar Chestplate", + [16474] = "Field Marshal\'s Lamellar Faceguard", + [16475] = "Marshal\'s Lamellar Legplates", + [16476] = "Field Marshal\'s Lamellar Pauldrons", + [16477] = "Field Marshal\'s Plate Armor", + [16478] = "Field Marshal\'s Plate Helm", + [16479] = "Marshal\'s Plate Legguards", + [16480] = "Field Marshal\'s Plate Shoulderguards", + [16481] = "Marshal\'s Plate Bracers", + [16482] = "Marshal\'s Plate Girdle", + [16483] = "Marshal\'s Plate Boots", + [16484] = "Marshal\'s Plate Gauntlets", + [16485] = "Blood Guard\'s Silk Footwraps", + [16486] = "First Sergeant\'s Silk Cuffs", + [16487] = "Blood Guard\'s Silk Gloves", + [16488] = "Legionnaire\'s Silk Belt", + [16489] = "Champion\'s Silk Hood", + [16490] = "Legionnaire\'s Silk Pants", + [16491] = "Legionnaire\'s Silk Robes", + [16492] = "Champion\'s Silk Shoulderpads", + [16493] = "Legionnaire\'s Dragonhide Armguards", + [16494] = "Blood Guard\'s Dragonhide Boots", + [16495] = "Legionnaire\'s Dragonhide Waistband", + [16496] = "Blood Guard\'s Dragonhide Gauntlets", + [16497] = "First Sergeant\'s Leather Armguards", + [16498] = "Blood Guard\'s Leather Treads", + [16499] = "Blood Guard\'s Leather Vices", + [16500] = "Legionnaire\'s Leather Girdle", + [16501] = "Champion\'s Dragonhide Spaulders", + [16502] = "Legionnaire\'s Dragonhide Trousers", + [16503] = "Champion\'s Dragonhide Helm", + [16504] = "Legionnaire\'s Dragonhide Breastplate", + [16505] = "Legionnaire\'s Leather Hauberk", + [16506] = "Champion\'s Leather Headguard", + [16507] = "Champion\'s Leather Mantle", + [16508] = "Legionnaire\'s Leather Leggings", + [16509] = "Blood Guard\'s Plate Boots", + [16510] = "Blood Guard\'s Plate Gloves", + [16511] = "Legionnaire\'s Plate Cinch", + [16512] = "Legionnaire\'s Plate Bracers", + [16513] = "Legionnaire\'s Plate Armor", + [16514] = "Champion\'s Plate Headguard", + [16515] = "Legionnaire\'s Plate Legguards", + [16516] = "Champion\'s Plate Pauldrons", + [16517] = "Legionnaire\'s Chain Bracers", + [16518] = "Blood Guard\'s Mail Walkers", + [16519] = "Blood Guard\'s Mail Grips", + [16520] = "Legionnaire\'s Mail Cinch", + [16521] = "Champion\'s Mail Helm", + [16522] = "Legionnaire\'s Mail Chestpiece", + [16523] = "Legionnaire\'s Mail Leggings", + [16524] = "Champion\'s Mail Shoulders", + [16525] = "Legionnaire\'s Chain Breastplate", + [16526] = "Champion\'s Chain Headguard", + [16527] = "Legionnaire\'s Chain Leggings", + [16528] = "Champion\'s Chain Pauldrons", + [16529] = "Legionnaire\'s Chain Girdle", + [16530] = "Blood Guard\'s Chain Gauntlets", + [16531] = "Blood Guard\'s Chain Boots", + [16532] = "First Sergeant\'s Mail Wristguards", + [16533] = "Warlord\'s Silk Cowl", + [16534] = "General\'s Silk Trousers", + [16535] = "Warlord\'s Silk Raiment", + [16536] = "Warlord\'s Silk Amice", + [16537] = "General\'s Silk Sash", + [16538] = "General\'s Silk Cuffs", + [16539] = "General\'s Silk Boots", + [16540] = "General\'s Silk Handguards", + [16541] = "Warlord\'s Plate Armor", + [16542] = "Warlord\'s Plate Headpiece", + [16543] = "General\'s Plate Leggings", + [16544] = "Warlord\'s Plate Shoulders", + [16545] = "General\'s Plate Boots", + [16546] = "General\'s Plate Armguards", + [16547] = "General\'s Plate Girdle", + [16548] = "General\'s Plate Gauntlets", + [16549] = "Warlord\'s Dragonhide Hauberk", + [16550] = "Warlord\'s Dragonhide Helmet", + [16551] = "Warlord\'s Dragonhide Epaulets", + [16552] = "General\'s Dragonhide Leggings", + [16553] = "General\'s Dragonhide Bracers", + [16554] = "General\'s Dragonhide Boots", + [16555] = "General\'s Dragonhide Gloves", + [16556] = "General\'s Dragonhide Belt", + [16557] = "General\'s Leather Girdle", + [16558] = "General\'s Leather Treads", + [16559] = "General\'s Leather Armsplints", + [16560] = "General\'s Leather Mitts", + [16561] = "Warlord\'s Leather Helm", + [16562] = "Warlord\'s Leather Spaulders", + [16563] = "Warlord\'s Leather Breastplate", + [16564] = "General\'s Leather Legguards", + [16565] = "Warlord\'s Chain Chestpiece", + [16566] = "Warlord\'s Chain Helmet", + [16567] = "General\'s Chain Legguards", + [16568] = "Warlord\'s Chain Shoulders", + [16569] = "General\'s Chain Boots", + [16570] = "General\'s Chain Wristguards", + [16571] = "General\'s Chain Gloves", + [16572] = "General\'s Chain Girdle", + [16573] = "General\'s Mail Boots", + [16574] = "General\'s Mail Gauntlets", + [16575] = "General\'s Mail Waistband", + [16576] = "General\'s Mail Bracers", + [16577] = "Warlord\'s Mail Armor", + [16578] = "Warlord\'s Mail Helm", + [16579] = "General\'s Mail Leggings", + [16580] = "Warlord\'s Mail Spaulders", + [16581] = "Resonite Crystal", + [16582] = "Monster - Wand, Horde Green Feathered", + [16583] = "Demonic Figurine", + [16602] = "Troll Charm", + [16603] = "Enchanted Resonite Crystal", + [16604] = "Moon Robes of Elune", + [16605] = "Friar\'s Robes of the Light", + [16606] = "Juju Hex Robes", + [16607] = "Acolyte\'s Sacrificial Robes", + [16608] = "Aquarius Belt", + [16622] = "Thornflinger", + [16623] = "Opaline Medallion", + [16642] = "Shredder Operating Manual - Chapter 1", + [16643] = "Shredder Operating Manual - Chapter 2", + [16644] = "Shredder Operating Manual - Chapter 3", + [16645] = "Shredder Operating Manual - Page 1", + [16646] = "Shredder Operating Manual - Page 2", + [16647] = "Shredder Operating Manual - Page 3", + [16648] = "Shredder Operating Manual - Page 4", + [16649] = "Shredder Operating Manual - Page 5", + [16650] = "Shredder Operating Manual - Page 6", + [16651] = "Shredder Operating Manual - Page 7", + [16652] = "Shredder Operating Manual - Page 8", + [16653] = "Shredder Operating Manual - Page 9", + [16654] = "Shredder Operating Manual - Page 10", + [16655] = "Shredder Operating Manual - Page 11", + [16656] = "Shredder Operating Manual - Page 12", + [16658] = "Wildhunter Cloak", + [16659] = "Deftkin Belt", + [16660] = "Driftmire Shield", + [16661] = "Soft Willow Cape", + [16662] = "Fragment of the Dragon\'s Eye", + [16663] = "Blood of the Black Dragon Champion", + [16664] = "Ornate Bracers", + [16665] = "Tome of Tranquilizing Shot", + [16666] = "Vest of Elements", + [16667] = "Coif of Elements", + [16668] = "Leggings of Elements", + [16669] = "Pauldrons of Elements", + [16670] = "Boots of Elements", + [16671] = "Bindings of Elements", + [16672] = "Gauntlets of Elements", + [16673] = "Cord of Elements", + [16674] = "Beaststalker\'s Tunic", + [16675] = "Beaststalker\'s Boots", + [16676] = "Beaststalker\'s Gloves", + [16677] = "Beaststalker\'s Cap", + [16678] = "Beaststalker\'s Pants", + [16679] = "Beaststalker\'s Mantle", + [16680] = "Beaststalker\'s Belt", + [16681] = "Beaststalker\'s Bindings", + [16682] = "Magister\'s Boots", + [16683] = "Magister\'s Bindings", + [16684] = "Magister\'s Gloves", + [16685] = "Magister\'s Belt", + [16686] = "Magister\'s Crown", + [16687] = "Magister\'s Leggings", + [16688] = "Magister\'s Robes", + [16689] = "Magister\'s Mantle", + [16690] = "Devout Robe", + [16691] = "Devout Boots", + [16692] = "Devout Gloves", + [16693] = "Devout Crown", + [16694] = "Devout Pants", + [16695] = "Devout Mantle", + [16696] = "Devout Belt", + [16697] = "Devout Bracers", + [16698] = "Dreadmist Mask", + [16699] = "Dreadmist Leggings", + [16700] = "Dreadmist Robe", + [16701] = "Dreadmist Mantle", + [16702] = "Dreadmist Belt", + [16703] = "Dreadmist Bracers", + [16704] = "Dreadmist Sandals", + [16705] = "Dreadmist Wraps", + [16706] = "Wildheart Vest", + [16707] = "Shadowcraft Cap", + [16708] = "Shadowcraft Spaulders", + [16709] = "Shadowcraft Pants", + [16710] = "Shadowcraft Bracers", + [16711] = "Shadowcraft Boots", + [16712] = "Shadowcraft Gloves", + [16713] = "Shadowcraft Belt", + [16714] = "Wildheart Bracers", + [16715] = "Wildheart Boots", + [16716] = "Wildheart Belt", + [16717] = "Wildheart Gloves", + [16718] = "Wildheart Spaulders", + [16719] = "Wildheart Kilt", + [16720] = "Wildheart Cowl", + [16721] = "Shadowcraft Tunic", + [16722] = "Lightforge Bracers", + [16723] = "Lightforge Belt", + [16724] = "Lightforge Gauntlets", + [16725] = "Lightforge Boots", + [16726] = "Lightforge Breastplate", + [16727] = "Lightforge Helm", + [16728] = "Lightforge Legplates", + [16729] = "Lightforge Spaulders", + [16730] = "Breastplate of Valor", + [16731] = "Helm of Valor", + [16732] = "Legplates of Valor", + [16733] = "Spaulders of Valor", + [16734] = "Boots of Valor", + [16735] = "Bracers of Valor", + [16736] = "Belt of Valor", + [16737] = "Gauntlets of Valor", + [16738] = "Witherseed Gloves", + [16739] = "Rugwood Mantle", + [16740] = "Shredder Operating Gloves", + [16741] = "Oilrag Handwraps", + [16742] = "Warsong Saw Blades", + [16743] = "Logging Rope", + [16744] = "Warsong Oil", + [16745] = "Warsong Axe Shipment", + [16746] = "Warsong Report", + [16747] = "Broken Lock", + [16748] = "Padded Lining", + [16762] = "Fathom Core", + [16763] = "Warsong Runner Update", + [16764] = "Warsong Scout Update", + [16765] = "Warsong Outrider Update", + [16766] = "Undermine Clam Chowder", + [16767] = "Recipe: Undermine Clam Chowder", + [16768] = "Furbolg Medicine Pouch", + [16769] = "Furbolg Medicine Totem", + [16782] = "Strange Water Globe", + [16783] = "Bundle of Reports", + [16784] = "Sapphire of Aku\'Mai", + [16785] = "Rexxar\'s Testament", + [16786] = "Black Dragonspawn Eye", + [16787] = "Amulet of Draconic Subversion", + [16788] = "Captain Rackmore\'s Wheel", + [16789] = "Captain Rackmore\'s Tiller", + [16790] = "Damp Note", + [16791] = "Silkstream Cuffs", + [16792] = "Giant Club", + [16793] = "Arcmetal Shoulders", + [16794] = "Gripsteel Wristguards", + [16795] = "Arcanist Crown", + [16796] = "Arcanist Leggings", + [16797] = "Arcanist Mantle", + [16798] = "Arcanist Robes", + [16799] = "Arcanist Bindings", + [16800] = "Arcanist Slippers", + [16801] = "Arcanist Gloves", + [16802] = "Arcanist Belt", + [16803] = "Felheart Slippers", + [16804] = "Felheart Bracers", + [16805] = "Felheart Gloves", + [16806] = "Felheart Belt", + [16807] = "Felheart Shoulder Pads", + [16808] = "Felheart Skullcap", + [16809] = "Felheart Robes", + [16810] = "Felheart Pants", + [16811] = "Boots of Prophecy", + [16812] = "Gloves of Prophecy", + [16813] = "Circlet of Prophecy", + [16814] = "Pants of Prophecy", + [16815] = "Robes of Prophecy", + [16816] = "Mantle of Prophecy", + [16817] = "Girdle of Prophecy", + [16818] = "Netherwind Belt", + [16819] = "Vambraces of Prophecy", + [16820] = "Nightslayer Chestpiece", + [16821] = "Nightslayer Cover", + [16822] = "Nightslayer Pants", + [16823] = "Nightslayer Shoulder Pads", + [16824] = "Nightslayer Boots", + [16825] = "Nightslayer Bracelets", + [16826] = "Nightslayer Gloves", + [16827] = "Nightslayer Belt", + [16828] = "Cenarion Belt", + [16829] = "Cenarion Boots", + [16830] = "Cenarion Bracers", + [16831] = "Cenarion Gloves", + [16832] = "Bloodfang Spaulders", + [16833] = "Cenarion Vestments", + [16834] = "Cenarion Helm", + [16835] = "Cenarion Leggings", + [16836] = "Cenarion Spaulders", + [16837] = "Earthfury Boots", + [16838] = "Earthfury Belt", + [16839] = "Earthfury Gauntlets", + [16840] = "Earthfury Bracers", + [16841] = "Earthfury Breastplate", + [16842] = "Earthfury Helmet", + [16843] = "Earthfury Legguards", + [16844] = "Earthfury Epaulets", + [16845] = "Giantstalker\'s Breastplate", + [16846] = "Giantstalker\'s Helmet", + [16847] = "Giantstalker\'s Leggings", + [16848] = "Giantstalker\'s Epaulets", + [16849] = "Giantstalker\'s Boots", + [16850] = "Giantstalker\'s Bracers", + [16851] = "Giantstalker\'s Belt", + [16852] = "Giantstalker\'s Gloves", + [16853] = "Lawbringer Chestguard", + [16854] = "Lawbringer Helm", + [16855] = "Lawbringer Legplates", + [16856] = "Lawbringer Spaulders", + [16857] = "Lawbringer Bracers", + [16858] = "Lawbringer Belt", + [16859] = "Lawbringer Boots", + [16860] = "Lawbringer Gauntlets", + [16861] = "Bracers of Might", + [16862] = "Sabatons of Might", + [16863] = "Gauntlets of Might", + [16864] = "Belt of Might", + [16865] = "Breastplate of Might", + [16866] = "Helm of Might", + [16867] = "Legplates of Might", + [16868] = "Pauldrons of Might", + [16869] = "The Skull of Scryer", + [16870] = "The Skull of Somnus", + [16871] = "The Skull of Chronalis", + [16872] = "The Skull of Axtroz", + [16873] = "Braidfur Gloves", + [16882] = "Battered Junkbox", + [16883] = "Worn Junkbox", + [16884] = "Sturdy Junkbox", + [16885] = "Heavy Junkbox", + [16886] = "Outlaw Sabre", + [16887] = "Witch\'s Finger", + [16888] = "Dull Drakefire Amulet", + [16889] = "Polished Walking Staff", + [16890] = "Slatemetal Cutlass", + [16891] = "Claystone Shortsword", + [16892] = "Lesser Soulstone", + [16893] = "Soulstone", + [16894] = "Clear Crystal Rod", + [16895] = "Greater Soulstone", + [16896] = "Major Soulstone", + [16897] = "Stormrage Chestguard", + [16898] = "Stormrage Boots", + [16899] = "Stormrage Handguards", + [16900] = "Stormrage Cover", + [16901] = "Stormrage Legguards", + [16902] = "Stormrage Pauldrons", + [16903] = "Stormrage Belt", + [16904] = "Stormrage Bracers", + [16905] = "Bloodfang Chestpiece", + [16906] = "Bloodfang Boots", + [16907] = "Bloodfang Gloves", + [16908] = "Bloodfang Hood", + [16909] = "Bloodfang Pants", + [16910] = "Bloodfang Belt", + [16911] = "Bloodfang Bracers", + [16912] = "Netherwind Boots", + [16913] = "Netherwind Gloves", + [16914] = "Netherwind Crown", + [16915] = "Netherwind Pants", + [16916] = "Netherwind Robes", + [16917] = "Netherwind Mantle", + [16918] = "Netherwind Bindings", + [16919] = "Boots of Transcendence", + [16920] = "Handguards of Transcendence", + [16921] = "Halo of Transcendence", + [16922] = "Leggings of Transcendence", + [16923] = "Robes of Transcendence", + [16924] = "Pauldrons of Transcendence", + [16925] = "Belt of Transcendence", + [16926] = "Bindings of Transcendence", + [16927] = "Nemesis Boots", + [16928] = "Nemesis Gloves", + [16929] = "Nemesis Skullcap", + [16930] = "Nemesis Leggings", + [16931] = "Nemesis Robes", + [16932] = "Nemesis Spaulders", + [16933] = "Nemesis Belt", + [16934] = "Nemesis Bracers", + [16935] = "Dragonstalker\'s Bracers", + [16936] = "Dragonstalker\'s Belt", + [16937] = "Dragonstalker\'s Spaulders", + [16938] = "Dragonstalker\'s Legguards", + [16939] = "Dragonstalker\'s Helm", + [16940] = "Dragonstalker\'s Gauntlets", + [16941] = "Dragonstalker\'s Greaves", + [16942] = "Dragonstalker\'s Breastplate", + [16943] = "Bracers of Ten Storms", + [16944] = "Belt of Ten Storms", + [16945] = "Epaulets of Ten Storms", + [16946] = "Legplates of Ten Storms", + [16947] = "Helmet of Ten Storms", + [16948] = "Gauntlets of Ten Storms", + [16949] = "Greaves of Ten Storms", + [16950] = "Breastplate of Ten Storms", + [16951] = "Judgement Bindings", + [16952] = "Judgement Belt", + [16953] = "Judgement Spaulders", + [16954] = "Judgement Legplates", + [16955] = "Judgement Crown", + [16956] = "Judgement Gauntlets", + [16957] = "Judgement Sabatons", + [16958] = "Judgement Breastplate", + [16959] = "Bracelets of Wrath", + [16960] = "Waistband of Wrath", + [16961] = "Pauldrons of Wrath", + [16962] = "Legplates of Wrath", + [16963] = "Helm of Wrath", + [16964] = "Gauntlets of Wrath", + [16965] = "Sabatons of Wrath", + [16966] = "Breastplate of Wrath", + [16967] = "Feralas Ahi", + [16968] = "Sar\'theris Striker", + [16969] = "Savage Coast Blue Sailfin", + [16970] = "Misty Reed Mahi Mahi", + [16971] = "Clamlette Surprise", + [16972] = "Karang\'s Banner", + [16973] = "Vial of Dire Water", + [16974] = "Empty Water Vial", + [16975] = "Warsong Sash", + [16976] = "Murgut\'s Totem", + [16977] = "Warsong Boots", + [16978] = "Warsong Gauntlets", + [16979] = "Flarecore Gloves", + [16980] = "Flarecore Mantle", + [16981] = "Owlbeard Bracers", + [16982] = "Corehound Boots", + [16983] = "Molten Helm", + [16984] = "Black Dragonscale Boots", + [16985] = "Windseeker Boots", + [16986] = "Sandspire Gloves", + [16987] = "Screecher Belt", + [16988] = "Fiery Chain Shoulders", + [16989] = "Fiery Chain Girdle", + [16990] = "Spritekin Cloak", + [16991] = "Triage Bandage", + [16992] = "Smokey\'s Explosive Launcher", + [16993] = "Smokey\'s Fireshooter", + [16994] = "Duskwing Gloves", + [16995] = "Duskwing Mantle", + [16996] = "Gorewood Bow", + [16997] = "Stormrager", + [16998] = "Sacred Protector", + [16999] = "Royal Seal of Alexis", + [17000] = "Band of the Wraith", + [17001] = "Elemental Circle", + [17002] = "Ichor Spitter", + [17003] = "Skullstone Hammer", + [17004] = "Sarah\'s Guide", + [17005] = "Boorguard Tunic", + [17006] = "Cobalt Legguards", + [17007] = "Stonerender Gauntlets", + [17008] = "Small Scroll", + [17009] = "Ambassador Malcin\'s Head", + [17010] = "Fiery Core", + [17011] = "Lava Core", + [17012] = "Core Leather", + [17013] = "Dark Iron Leggings", + [17014] = "Dark Iron Bracers", + [17015] = "Dark Iron Reaver", + [17016] = "Dark Iron Destroyer", + [17017] = "Pattern: Flarecore Mantle", + [17018] = "Pattern: Flarecore Gloves", + [17019] = "Arcane Dust", + [17020] = "Arcane Powder", + [17021] = "Wild Berries", + [17022] = "Pattern: Corehound Boots", + [17023] = "Pattern: Molten Helm", + [17024] = "Wild Root", + [17025] = "Pattern: Black Dragonscale Boots", + [17026] = "Wild Thornroot", + [17027] = "Scented Candle", + [17028] = "Holy Candle", + [17029] = "Sacred Candle", + [17030] = "Ankh", + [17031] = "Rune of Teleportation", + [17032] = "Rune of Portals", + [17033] = "Symbol of Divinity", + [17034] = "Maple Seed", + [17035] = "Stranglethorn Seed", + [17036] = "Ashwood Seed", + [17037] = "Hornbeam Seed", + [17038] = "Ironwood Seed", + [17039] = "Skullbreaker", + [17040] = "Monster - Mace, Frying Pan", + [17041] = "Monster - Mace, Frying Pan w/ Eggs", + [17042] = "Nail Spitter", + [17043] = "Zealot\'s Robe", + [17044] = "Will of the Martyr", + [17045] = "Blood of the Martyr", + [17046] = "Gutterblade", + [17047] = "Luminescent Amice", + [17048] = "Rumsey Rum", + [17049] = "Plans: Fiery Chain Girdle", + [17050] = "Chan\'s Imperial Robes", + [17051] = "Plans: Dark Iron Bracers", + [17052] = "Plans: Dark Iron Leggings", + [17053] = "Plans: Fiery Chain Shoulders", + [17054] = "Joonho\'s Mercy", + [17055] = "Changuk Smasher", + [17056] = "Light Feather", + [17057] = "Shiny Fish Scales", + [17058] = "Fish Oil", + [17059] = "Plans: Dark Iron Reaver", + [17060] = "Plans: Dark Iron Destroyer", + [17061] = "Juno\'s Shadow", + [17062] = "Recipe: Mithril Head Trout", + [17063] = "Band of Accuria", + [17064] = "Shard of the Scale", + [17065] = "Medallion of Steadfast Might", + [17066] = "Drillborer Disk", + [17067] = "Ancient Cornerstone Grimoire", + [17068] = "Deathbringer", + [17069] = "Striker\'s Mark", + [17070] = "Fang of the Mystics", + [17071] = "Gutgore Ripper", + [17072] = "Blastershot Launcher", + [17073] = "Earthshaker", + [17074] = "Shadowstrike", + [17075] = "Vis\'kag the Bloodletter", + [17076] = "Bonereaver\'s Edge", + [17077] = "Crimson Shocker", + [17078] = "Sapphiron Drape", + [17082] = "Shard of the Flame", + [17102] = "Cloak of the Shrouded Mists", + [17103] = "Azuresong Mageblade", + [17104] = "Spinal Reaper", + [17105] = "Aurastone Hammer", + [17106] = "Malistar\'s Defender", + [17107] = "Dragon\'s Blood Cape", + [17108] = "Mark of Deflection", + [17109] = "Choker of Enlightenment", + [17110] = "Seal of the Archmagus", + [17111] = "Blazefury Medallion", + [17112] = "Empyrean Demolisher", + [17113] = "Amberseal Keeper", + [17114] = "Araj\'s Phylactery Shard", + [17115] = "Squirrel Token", + [17116] = "Squirrel Token", + [17117] = "Rat Catcher\'s Flute", + [17118] = "Carton of Mystery Meat", + [17119] = "Deeprun Rat Kabob", + [17122] = "ALEX BUG TEST ITEM", + [17123] = "Monster - Sword, Horde Troll", + [17124] = "Syndicate Emblem", + [17125] = "Seal of Ravenholdt", + [17126] = "Elegant Letter", + [17142] = "Shard of the Defiler", + [17162] = "Eric Test Item A", + [17163] = "Eric Test Item B", + [17182] = "Sulfuras, Hand of Ragnaros", + [17183] = "Dented Buckler", + [17184] = "Small Shield", + [17185] = "Round Buckler", + [17186] = "Small Targe", + [17187] = "Banded Buckler", + [17188] = "Ringed Buckler", + [17189] = "Metal Buckler", + [17190] = "Ornate Buckler", + [17191] = "Scepter of Celebras", + [17192] = "Reinforced Targe", + [17193] = "Sulfuron Hammer", + [17194] = "Holiday Spices", + [17195] = "Mistletoe", + [17196] = "Holiday Spirits", + [17197] = "Gingerbread Cookie", + [17198] = "Egg Nog", + [17199] = "Bad Egg Nog", + [17200] = "Recipe: Gingerbread Cookie", + [17201] = "Recipe: Egg Nog", + [17202] = "Snowball", + [17203] = "Sulfuron Ingot", + [17204] = "Eye of Sulfuras", + [17222] = "Spider Sausage", + [17223] = "Thunderstrike", + [17224] = "Scrying Scope", + [17242] = "Key to Salem\'s Chest", + [17262] = "James\' Key", + [17282] = "Monster - Dagger, Exotic B01 Green", + [17283] = "Monster - Dagger, Exotic B01 Red", + [17302] = "Blue Ribboned Holiday Gift", + [17303] = "Blue Ribboned Wrapping Paper", + [17304] = "Green Ribboned Wrapping Paper", + [17305] = "Green Ribboned Holiday Gift", + [17306] = "Stormpike Soldier\'s Blood", + [17307] = "Purple Ribboned Wrapping Paper", + [17308] = "Purple Ribboned Holiday Gift", + [17309] = "Discordant Bracers", + [17310] = "Aspect of Neptulon", + [17322] = "Eye of the Emberseer", + [17323] = "Mulverick\'s Beacon", + [17324] = "Guse\'s Beacon", + [17325] = "Jeztor\'s Beacon", + [17326] = "Stormpike Soldier\'s Flesh", + [17327] = "Stormpike Lieutenant\'s Flesh", + [17328] = "Stormpike Commander\'s Flesh", + [17329] = "Hand of Lucifron", + [17330] = "Hand of Sulfuron", + [17331] = "Hand of Gehennas", + [17332] = "Hand of Shazzrah", + [17333] = "Aqual Quintessence", + [17342] = "JYoo Random Item Test", + [17343] = "Test Random Chest", + [17344] = "Candy Cane", + [17345] = "Silithid Goo", + [17346] = "Encrusted Silithid Object", + [17347] = "Syndicate Man Tracker (MURP)", + [17348] = "Major Healing Draught", + [17349] = "Superior Healing Draught", + [17351] = "Major Mana Draught", + [17352] = "Superior Mana Draught", + [17353] = "Stormpike Assault Orders", + [17354] = "Master Ryson\'s All Seeing Eye", + [17355] = "Rabine\'s Letter", + [17362] = "Ryson\'s Beacon", + [17363] = "Ryson\'s Beacon", + [17364] = "Scrying Scope", + [17382] = "Monster - Glaive - 2 Blade Purple", + [17383] = "Monster - Axe, 2H Horde Black War Axe", + [17384] = "Zinfizzlex\'s Portable Shredder Unit", + [17402] = "Greatfather\'s Winter Ale", + [17403] = "Steamwheedle Fizzy Spirits", + [17404] = "Blended Bean Brew", + [17405] = "Green Garden Tea", + [17406] = "Holiday Cheesewheel", + [17407] = "Graccu\'s Homemade Meat Pie", + [17408] = "Spicy Beefstick", + [17409] = "Encrusted Crystal Fragment", + [17410] = "Zinfizzlex\'s Portable Shredder Unit", + [17411] = "Steamsaw", + [17412] = "zzOLDCodex of Prayer of Fortitude", + [17413] = "Codex: Prayer of Fortitude", + [17414] = "Codex: Prayer of Fortitude II", + [17422] = "Armor Scraps", + [17423] = "Storm Crystal", + [17442] = "Frostwolf Assault Orders", + [17462] = "Monster - Axe, Horde B02 Silver", + [17463] = "Monster - Axe, 2H Horde Blue War Axe", + [17482] = "Monster - Shield, B01 WoodCopperCap", + [17502] = "Frostwolf Soldier\'s Medal", + [17503] = "Frostwolf Lieutenant\'s Medal", + [17504] = "Frostwolf Commander\'s Medal", + [17505] = "Ichman\'s Beacon", + [17506] = "Vipore\'s Beacon", + [17507] = "Slidore\'s Beacon", + [17508] = "Forcestone Buckler", + [17522] = "Irondeep Supplies", + [17523] = "Smokey\'s Drape", + [17542] = "Coldtooth Supplies", + [17562] = "Knight-Lieutenant\'s Dreadweave Boots", + [17563] = "Knight-Captain\'s Dreadweave Bracers", + [17564] = "Knight-Lieutenant\'s Dreadweave Gloves", + [17565] = "Knight-Captain\'s Dreadweave Belt", + [17566] = "Lieutenant Commander\'s Headguard", + [17567] = "Knight-Captain\'s Dreadweave Leggings", + [17568] = "Knight-Captain\'s Dreadweave Robe", + [17569] = "Lieutenant Commander\'s Dreadweave Mantle", + [17570] = "Champion\'s Dreadweave Hood", + [17571] = "Legionnaire\'s Dreadweave Leggings", + [17572] = "Legionnaire\'s Dreadweave Robe", + [17573] = "Champion\'s Dreadweave Shoulders", + [17574] = "Legionnaire\'s Dreadweave Belt", + [17575] = "Legionnaire\'s Dreadweave Bracers", + [17576] = "Blood Guard\'s Dreadweave Boots", + [17577] = "Blood Guard\'s Dreadweave Gloves", + [17578] = "Field Marshal\'s Coronal", + [17579] = "Marshal\'s Dreadweave Leggings", + [17580] = "Field Marshal\'s Dreadweave Shoulders", + [17581] = "Field Marshal\'s Dreadweave Robe", + [17582] = "Marshal\'s Dreadweave Cuffs", + [17583] = "Marshal\'s Dreadweave Boots", + [17584] = "Marshal\'s Dreadweave Gloves", + [17585] = "Marshal\'s Dreadweave Sash", + [17586] = "General\'s Dreadweave Boots", + [17587] = "General\'s Dreadweave Bracers", + [17588] = "General\'s Dreadweave Gloves", + [17589] = "General\'s Dreadweave Belt", + [17590] = "Warlord\'s Dreadweave Mantle", + [17591] = "Warlord\'s Dreadweave Hood", + [17592] = "Warlord\'s Dreadweave Robe", + [17593] = "General\'s Dreadweave Pants", + [17594] = "Knight-Lieutenant\'s Satin Boots", + [17595] = "Knight-Captain\'s Satin Cuffs", + [17596] = "Knight-Lieutenant\'s Satin Gloves", + [17597] = "Knight-Captain\'s Satin Cord", + [17598] = "Lieutenant Commander\'s Diadem", + [17599] = "Knight-Captain\'s Satin Leggings", + [17600] = "Knight-Captain\'s Satin Robes", + [17601] = "Lieutenant Commander\'s Satin Amice", + [17602] = "Field Marshal\'s Headdress", + [17603] = "Marshal\'s Satin Pants", + [17604] = "Field Marshal\'s Satin Mantle", + [17605] = "Field Marshal\'s Satin Vestments", + [17606] = "Marshal\'s Satin Bracers", + [17607] = "Marshal\'s Satin Sandals", + [17608] = "Marshal\'s Satin Gloves", + [17609] = "Marshal\'s Satin Sash", + [17610] = "Champion\'s Satin Cowl", + [17611] = "Legionnaire\'s Satin Trousers", + [17612] = "Legionnaire\'s Satin Vestments", + [17613] = "Champion\'s Satin Shoulderpads", + [17614] = "Legionnaire\'s Satin Sash", + [17615] = "Legionnaire\'s Satin Cuffs", + [17616] = "Blood Guard\'s Satin Boots", + [17617] = "Blood Guard\'s Satin Gloves", + [17618] = "General\'s Satin Boots", + [17619] = "General\'s Satin Bracers", + [17620] = "General\'s Satin Gloves", + [17621] = "General\'s Satin Cinch", + [17622] = "Warlord\'s Satin Mantle", + [17623] = "Warlord\'s Satin Cowl", + [17624] = "Warlord\'s Satin Robes", + [17625] = "General\'s Satin Leggings", + [17626] = "Frostwolf Muzzle", + [17642] = "Alterac Ram Hide", + [17643] = "Frostwolf Hide", + [17662] = "Stolen Treats", + [17682] = "Book: Gift of the Wild", + [17683] = "Book: Gift of the Wild II", + [17684] = "Theradric Crystal Carving", + [17685] = "Smokywood Pastures Sampler", + [17686] = "Master Hunter\'s Bow", + [17687] = "Master Hunter\'s Rifle", + [17688] = "Jungle Boots", + [17689] = "Stormpike Training Collar", + [17690] = "Frostwolf Insignia Rank 1", + [17691] = "Stormpike Insignia Rank 1", + [17692] = "Horn Ring", + [17693] = "Coated Cerulean Vial", + [17694] = "Band of the Fist", + [17695] = "Chestnut Mantle", + [17696] = "Filled Cerulean Vial", + [17702] = "Celebrian Rod", + [17703] = "Celebrian Diamond", + [17704] = "Edge of Winter", + [17705] = "Thrash Blade", + [17706] = "Plans: Edge of Winter", + [17707] = "Gemshard Heart", + [17708] = "Elixir of Frost Power", + [17709] = "Recipe: Elixir of Frost Power", + [17710] = "Charstone Dirk", + [17711] = "Elemental Rockridge Leggings", + [17712] = "Winter Veil Disguise Kit", + [17713] = "Blackstone Ring", + [17714] = "Bracers of the Stone Princess", + [17715] = "Eye of Theradras", + [17716] = "SnowMaster 9000", + [17717] = "Megashot Rifle", + [17718] = "Gizlock\'s Hypertech Buckler", + [17719] = "Inventor\'s Focal Sword", + [17720] = "Schematic: Snowmaster 9000", + [17721] = "Gloves of the Greatfather", + [17722] = "Pattern: Gloves of the Greatfather", + [17723] = "Green Holiday Shirt", + [17724] = "Pattern: Green Holiday Shirt", + [17725] = "Formula: Enchant Weapon - Winter\'s Might", + [17726] = "Smokywood Pastures Special Gift", + [17727] = "Smokywood Pastures Gift Pack", + [17728] = "Albino Crocscale Boots", + [17730] = "Gatorbite Axe", + [17731] = "Scroll of Celebras", + [17732] = "Rotgrip Mantle", + [17733] = "Fist of Stone", + [17734] = "Helm of the Mountain", + [17735] = "The Feast of Winter Veil", + [17736] = "Rockgrip Gauntlets", + [17737] = "Cloud Stone", + [17738] = "Claw of Celebras", + [17739] = "Grovekeeper\'s Drape", + [17740] = "Soothsayer\'s Headdress", + [17741] = "Nature\'s Embrace", + [17742] = "Fungus Shroud Armor", + [17743] = "Resurgence Rod", + [17744] = "Heart of Noxxion", + [17745] = "Noxious Shooter", + [17746] = "Noxxion\'s Shackles", + [17747] = "Razorlash Root", + [17748] = "Vinerot Sandals", + [17749] = "Phytoskin Spaulders", + [17750] = "Chloromesh Girdle", + [17751] = "Brusslehide Leggings", + [17752] = "Satyr\'s Lash", + [17753] = "Verdant Keeper\'s Aim", + [17754] = "Infernal Trickster Leggings", + [17755] = "Satyrmane Sash", + [17756] = "Shadowshard Fragment", + [17757] = "Amulet of Spirits", + [17758] = "Amulet of Union", + [17759] = "Mark of Resolution", + [17760] = "Seed of Life", + [17761] = "Gem of the First Khan", + [17762] = "Gem of the Second Khan", + [17763] = "Gem of the Third Khan", + [17764] = "Gem of the Fourth Khan", + [17765] = "Gem of the Fifth Khan", + [17766] = "Princess Theradras\' Scepter", + [17767] = "Bloomsprout Headpiece", + [17768] = "Woodseed Hoop", + [17769] = "Sagebrush Spaulders", + [17770] = "Branchclaw Gauntlets", + [17771] = "Elementium Bar", + [17772] = "Zealous Shadowshard Pendant", + [17773] = "Prodigious Shadowshard Pendant", + [17774] = "Mark of the Chosen", + [17775] = "Acumen Robes", + [17776] = "Sprightring Helm", + [17777] = "Relentless Chain", + [17778] = "Sagebrush Girdle", + [17779] = "Hulkstone Pauldrons", + [17780] = "Blade of Eternal Darkness", + [17781] = "The Pariah\'s Instructions", + [17782] = "Talisman of Binding Shard", + [17783] = "Talisman of Binding Fragment", + [17802] = "Thunderfury, Blessed Blade of the Windseeker DEPRECATED", + [17822] = "Frostwolf Maps", + [17823] = "Stormpike Battle Plans", + [17824] = "Level 65 Test Gear Cloth - Priest", + [17825] = "Level 65 Test Gear Cloth - Warlock", + [17826] = "Level 65 Test Gear Plate - Warrior", + [17827] = "QAEnchant Bracer +9 Strength", + [17828] = "QAEnchant Bracer +9 Stamina", + [17829] = "QAEnchant Bracer +9 Spirit", + [17830] = "QAEnchant Bracer +7 Intellect", + [17831] = "Level 60 Test Gear Cloth - Mage/Priest/Warlock 2", + [17832] = "Level 60 Test Gear Leather - Druid 2", + [17833] = "Level 60 Test Gear Leather - Rogue 2", + [17834] = "Level 60 Test Gear Mail - Hunter 2", + [17835] = "Level 60 Test Gear Mail - Shaman 2", + [17836] = "Level 60 Test Gear Plate - Paladin/Warrior 2", + [17837] = "Level 55 Test Gear Cloth - Mage/Priest/Warlock 2", + [17838] = "Level 55 Test Gear Leather - Druid 2", + [17839] = "Level 55 Test Gear Leather - Rogue 2", + [17840] = "Level 55 Test Gear Mail - Hunter 2", + [17841] = "Level 55 Test Gear Mail - Shaman 2", + [17842] = "Level 55 Test Gear Plate - Paladin/Warrior 2", + [17843] = "Level 50 Test Gear Cloth - Mage/Priest/Warlock 2", + [17844] = "Level 50 Test Gear Leather - Druid 2", + [17845] = "Level 50 Test Gear Leather - Rogue 2", + [17846] = "Level 50 Test Gear Mail - Hunter 2", + [17847] = "Level 50 Test Gear Mail - Shaman 2", + [17848] = "Level 50 Test Gear Plate - Paladin/Warrior 2", + [17849] = "Stormpike Banner", + [17850] = "Frostwolf Banner", + [17851] = "Level 65 Test Gear Cloth - Mage 2", + [17852] = "Level 65 Test Gear Cloth - Priest 2", + [17853] = "Level 65 Test Gear Cloth - Warlock 2", + [17854] = "Level 65 Test Gear Leather - Druid 2", + [17855] = "Level 65 Test Gear Leather - Rogue 2", + [17856] = "Level 65 Test Gear Leather - Rogue 3", + [17857] = "Level 65 Test Gear Mail - Hunter 2", + [17858] = "Level 65 Test Gear Mail - Hunter 3", + [17859] = "Level 65 Test Gear Mail - Shaman 2", + [17860] = "Level 65 Test Gear Plate - Paladin 2", + [17861] = "Level 65 Test Gear Plate - Warrior 2", + [17862] = "Level 65 Test Gear Plate - Warrior 3", + [17882] = "QAEnchant Chest +100 Health", + [17883] = "QAEnchant Chest +100 Mana", + [17884] = "QAEnchant Cloak +5 Resistances", + [17885] = "QAEnchant Cloak +70 Armor", + [17886] = "zzOLD - QAEnchant Weapon Winter\'s Might", + [17887] = "QAEnchant 2H Weapon +9 Damage", + [17888] = "QAEnchant Weapon +5 Damage", + [17889] = "zzOLD - QAEnchant 2H Weapon Major Intellect", + [17890] = "zzOLD - QAEnchant Shield +7 Spirit", + [17891] = "QAEnchant Shield +7 Stamina", + [17892] = "QAEnchant Shield +8 Frost Resistance", + [17893] = "QAEnchant Shield +9 Spirit", + [17894] = "QAEnchant Boots +7 Agility", + [17895] = "QAEnchant Boots +5 Spirit", + [17896] = "QAEnchant Boots +7 Stamina", + [17897] = "QAEnchant Gloves +7 Strength", + [17898] = "QAEnchant Gloves +7 Agility", + [17899] = "QAEnchant Gloves +1% Haste", + [17900] = "Stormpike Insignia Rank 2", + [17901] = "Stormpike Insignia Rank 3", + [17902] = "Stormpike Insignia Rank 4", + [17903] = "Stormpike Insignia Rank 5", + [17904] = "Stormpike Insignia Rank 6", + [17905] = "Frostwolf Insignia Rank 2", + [17906] = "Frostwolf Insignia Rank 3", + [17907] = "Frostwolf Insignia Rank 4", + [17908] = "Frostwolf Insignia Rank 5", + [17909] = "Frostwolf Insignia Rank 6", + [17910] = "Test Enchantments LockBox (Enchanting Items) 2", + [17911] = "Test Enchantments LockBox (Enchanting Items) 3", + [17922] = "Lionfur Armor", + [17942] = "Monster - Mace2H, War Maul", + [17943] = "Fist of Stone", + [17962] = "Blue Sack of Gems", + [17963] = "Green Sack of Gems", + [17964] = "Gray Sack of Gems", + [17965] = "Yellow Sack of Gems", + [17966] = "Onyxia Hide Backpack", + [17967] = "Refined Scale of Onyxia", + [17968] = "Charged Scale of Onyxia", + [17969] = "Red Sack of Gems", + [17982] = "Ragnaros Core", + [18002] = "Monster - Axe, 2H Horde Massive Spiked Blue", + [18022] = "Royal Seal of Alexis", + [18023] = "Blood Ruby Pendant", + [18042] = "Thorium Headed Arrow", + [18043] = "Coal Miner Boots", + [18044] = "Hurley\'s Tankard", + [18045] = "Tender Wolf Steak", + [18046] = "Recipe: Tender Wolf Steak", + [18047] = "Flame Walkers", + [18048] = "Mastersmith\'s Hammer", + [18062] = "Monster - Mace2H, Horde Hammer A03/C01Black", + [18063] = "Test Epic Mount", + [18082] = "Zum\'rah\'s Vexing Cane", + [18083] = "Jumanza Grips", + [18102] = "Dragonrider Boots", + [18103] = "Band of Rumination", + [18104] = "Feralsurge Girdle", + [18105] = "PVP TEST Alliance Ear", + [18106] = "PVP TEST Horde Ear", + [18122] = "Monster - Staff, Ornate Jeweled Staff - Blue High Blue Glow", + [18123] = "Monster - Staff, Feathered Silver Glow", + [18142] = "Severed Night Elf Head", + [18143] = "Tuft of Gnome Hair", + [18144] = "Human Bone Chip", + [18145] = "Tauren Hoof", + [18146] = "Darkspear Troll Mojo", + [18147] = "Forsaken Heart", + [18148] = "Skull of Korrak", + [18149] = "Rune of Recall", + [18150] = "Rune of Recall", + [18151] = "Filled Amethyst Phial", + [18152] = "Amethyst Phial", + [18153] = "Red Moro\'gai Gem", + [18154] = "Blizzard Stationery", + [18155] = "Blue Moro\'gai Gem", + [18156] = "Green Moro\'gai Gem", + [18157] = "Black Moro\'gai Gem", + [18158] = "Gold Moro\'gai Gem", + [18159] = "White Moro\'gai Gem", + [18160] = "Recipe: Thistle Tea", + [18161] = "5% Test Speed Boots", + [18162] = "8% Test Speed Boots", + [18163] = "10% Test Speed Boots", + [18164] = "13% Test Speed Boots", + [18165] = "15% Test Speed Boots", + [18166] = "Monster - Shield, Royal Dreadguard", + [18167] = "Monster - Sword, Machete C01", + [18168] = "Force Reactive Disk", + [18169] = "Flame Mantle of the Dawn", + [18170] = "Frost Mantle of the Dawn", + [18171] = "Arcane Mantle of the Dawn", + [18172] = "Nature Mantle of the Dawn", + [18173] = "Shadow Mantle of the Dawn", + [18182] = "Chromatic Mantle of the Dawn", + [18202] = "Eskhandar\'s Left Claw", + [18203] = "Eskhandar\'s Right Claw", + [18204] = "Eskhandar\'s Pelt", + [18205] = "Eskhandar\'s Collar", + [18206] = "Dwarf Spine", + [18207] = "Orc Tooth", + [18208] = "Drape of Benediction", + [18209] = "Energized Sparkplug", + [18222] = "Thorny Vine", + [18223] = "Serrated Petal", + [18224] = "Lasher Root", + [18225] = "Worn Running Shoes", + [18226] = "A Sealed Pact", + [18227] = "Nubless Pacifier", + [18228] = "Autographed Picture of Foror & Tigule", + [18229] = "Nat Pagle\'s Guide to Extreme Anglin\'", + [18230] = "Broken I.W.I.N. Button", + [18231] = "Sleeveless T-Shirt", + [18232] = "Field Repair Bot 74A", + [18233] = "Tear Stained Handkerchief", + [18234] = "Document from Boomstick Imports", + [18235] = "Schematic: Field Repair Bot 74A", + [18236] = "Gordok Chew Toy", + [18237] = "Mastiff Jawbone", + [18238] = "Shadowskin Gloves", + [18239] = "Pattern: Shadowskin Gloves", + [18240] = "Ogre Tannin", + [18241] = "Black War Steed Bridle", + [18242] = "Reins of the Black War Tiger", + [18243] = "Black Battlestrider", + [18244] = "Black War Ram", + [18245] = "Horn of the Black War Wolf", + [18246] = "Whistle of the Black War Raptor", + [18247] = "Black War Kodo", + [18248] = "Red Skeletal Warhorse", + [18249] = "Crescent Key", + [18250] = "Gordok Shackle Key", + [18251] = "Core Armor Kit", + [18252] = "Pattern: Core Armor Kit", + [18253] = "Major Rejuvenation Potion", + [18254] = "Runn Tum Tuber Surprise", + [18255] = "Runn Tum Tuber", + [18256] = "Imbued Vial", + [18257] = "Recipe: Major Rejuvenation Potion", + [18258] = "Gordok Ogre Suit", + [18259] = "Formula: Enchant Weapon - Spell Power", + [18260] = "Formula: Enchant Weapon - Healing Power", + [18261] = "Book of Incantations", + [18262] = "Elemental Sharpening Stone", + [18263] = "Flarecore Wraps", + [18264] = "Plans: Elemental Sharpening Stone", + [18265] = "Pattern: Flarecore Wraps", + [18266] = "Gordok Courtyard Key", + [18267] = "Recipe: Runn Tum Tuber Surprise", + [18268] = "Gordok Inner Door Key", + [18269] = "Gordok Green Grog", + [18282] = "Core Marksman Rifle", + [18283] = "Biznicks 247x128 Accurascope", + [18284] = "Kreeg\'s Stout Beatdown", + [18285] = "Crystallized Mana Shard", + [18286] = "Condensed Mana Fragment", + [18287] = "Evermurky", + [18288] = "Molasses Firewater", + [18289] = "Barbed Thorn Necklace", + [18290] = "Schematic: Biznicks 247x128 Accurascope", + [18291] = "Schematic: Force Reactive Disk", + [18292] = "Schematic: Core Marksman Rifle", + [18293] = "Monster - Glaive - 2 Blade B03 Green", + [18294] = "Elixir of Greater Water Breathing", + [18295] = "Phasing Boots", + [18296] = "Marksman Bands", + [18297] = "Thornling Seed", + [18298] = "Unbridled Leggings", + [18299] = "Hydrospawn Essence", + [18300] = "Hyjal Nectar", + [18301] = "Lethtendris\'s Wand", + [18302] = "Band of Vigor", + [18303] = "Nimble Buckler", + [18304] = "Greenroot Mail", + [18305] = "Breakwater Legguards", + [18306] = "Gloves of Shadowy Mist", + [18307] = "Riptide Shoes", + [18308] = "Clever Hat", + [18309] = "Gloves of Restoration", + [18310] = "Fiendish Machete", + [18311] = "Quel\'dorai Channeling Rod", + [18312] = "Energized Chestplate", + [18313] = "Helm of Awareness", + [18314] = "Ring of Demonic Guile", + [18315] = "Ring of Demonic Potency", + [18316] = "Obsidian Bauble", + [18317] = "Tempest Talisman", + [18318] = "Merciful Greaves", + [18319] = "Fervent Helm", + [18320] = "Demonheart Spaulders", + [18321] = "Energetic Rod", + [18322] = "Waterspout Boots", + [18323] = "Satyr\'s Bow", + [18324] = "Waveslicer", + [18325] = "Felhide Cap", + [18326] = "Razor Gauntlets", + [18327] = "Whipvine Cord", + [18328] = "Shadewood Cloak", + [18329] = "Arcanum of Rapidity", + [18330] = "Arcanum of Focus", + [18331] = "Arcanum of Protection", + [18332] = "Libram of Rapidity", + [18333] = "Libram of Focus", + [18334] = "Libram of Protection", + [18335] = "Pristine Black Diamond", + [18336] = "Gauntlet of Gordok Might", + [18337] = "Orphic Bracers", + [18338] = "Wand of Arcane Potency", + [18339] = "Eidolon Cloak", + [18340] = "Eidolon Talisman", + [18341] = "Quel\'dorai Sash", + [18342] = "Quel\'dorai Guard", + [18343] = "Petrified Band", + [18344] = "Stonebark Gauntlets", + [18345] = "Murmuring Ring", + [18346] = "Threadbare Trousers", + [18347] = "Well Balanced Axe", + [18348] = "Quel\'Serrar", + [18349] = "Gauntlets of Accuracy", + [18350] = "Amplifying Cloak", + [18351] = "Magically Sealed Bracers", + [18352] = "Petrified Bark Shield", + [18353] = "Stoneflower Staff", + [18354] = "Pimgib\'s Collar", + [18355] = "Ferra\'s Collar", + [18356] = "Garona: A Study on Stealth and Treachery", + [18357] = "Codex of Defense", + [18358] = "The Arcanist\'s Cookbook", + [18359] = "The Light and How to Swing It", + [18360] = "Harnessing Shadows", + [18361] = "The Greatest Race of Hunters", + [18362] = "Holy Bologna: What the Light Won\'t Tell You", + [18363] = "Frost Shock and You", + [18364] = "The Emerald Dream", + [18365] = "A Thoroughly Read Copy of \"Nat Pagle\'s Extreme\' Anglin.\"", + [18366] = "Gordok\'s Handguards", + [18367] = "Gordok\'s Gauntlets", + [18368] = "Gordok\'s Gloves", + [18369] = "Gordok\'s Handwraps", + [18370] = "Vigilance Charm", + [18371] = "Mindtap Talisman", + [18372] = "Blade of the New Moon", + [18373] = "Chestplate of Tranquility", + [18374] = "Flamescarred Shoulders", + [18375] = "Bracers of the Eclipse", + [18376] = "Timeworn Mace", + [18377] = "Quickdraw Gloves", + [18378] = "Silvermoon Leggings", + [18379] = "Odious Greaves", + [18380] = "Eldritch Reinforced Legplates", + [18381] = "Evil Eye Pendant", + [18382] = "Fluctuating Cloak", + [18383] = "Force Imbued Gauntlets", + [18384] = "Bile-etched Spaulders", + [18385] = "Robe of Everlasting Night", + [18386] = "Padre\'s Trousers", + [18387] = "Brightspark Gloves", + [18388] = "Stoneshatter", + [18389] = "Cloak of the Cosmos", + [18390] = "Tanglemoss Leggings", + [18391] = "Eyestalk Cord", + [18392] = "Distracting Dagger", + [18393] = "Warpwood Binding", + [18394] = "Demon Howl Wristguards", + [18395] = "Emerald Flame Ring", + [18396] = "Mind Carver", + [18397] = "Elder Magus Pendant", + [18398] = "Tidal Loop", + [18399] = "Ocean\'s Breeze", + [18400] = "Ring of Living Stone", + [18401] = "Foror\'s Compendium of Dragon Slaying", + [18402] = "Glowing Crystal Ring", + [18403] = "Dragonslayer\'s Signet", + [18404] = "Onyxia Tooth Pendant", + [18405] = "Belt of the Archmage", + [18406] = "Onyxia Blood Talisman", + [18407] = "Felcloth Gloves", + [18408] = "Inferno Gloves", + [18409] = "Mooncloth Gloves", + [18410] = "Sprinter\'s Sword", + [18411] = "Spry Boots", + [18412] = "Core Fragment", + [18413] = "Cloak of Warding", + [18414] = "Pattern: Belt of the Archmage", + [18415] = "Pattern: Felcloth Gloves", + [18416] = "Pattern: Inferno Gloves", + [18417] = "Pattern: Mooncloth Gloves", + [18418] = "Pattern: Cloak of Warding", + [18419] = "Monster - Axe, 2H Horde Red War Axe", + [18420] = "Bonecrusher", + [18421] = "Backwood Helm", + [18422] = "Head of Onyxia", + [18423] = "Head of Onyxia", + [18424] = "Sedge Boots", + [18425] = "Kreeg\'s Mug", + [18426] = "Lethtendris\'s Web", + [18427] = "Sergeant\'s Cloak", + [18428] = "Senior Sergeant\'s Insignia", + [18429] = "First Sergeant\'s Plate Bracers", + [18430] = "First Sergeant\'s Plate Bracers", + [18432] = "First Sergeant\'s Mail Wristguards", + [18434] = "First Sergeant\'s Dragonhide Armguards", + [18435] = "First Sergeant\'s Leather Armguards", + [18436] = "First Sergeant\'s Dragonhide Armguards", + [18437] = "First Sergeant\'s Silk Cuffs", + [18438] = "Sergeant\'s Mark", + [18439] = "Corporal\'s Cloak", + [18440] = "Sergeant\'s Cape", + [18441] = "Sergeant\'s Cape", + [18442] = "Master Sergeant\'s Insignia", + [18443] = "Master Sergeant\'s Insignia", + [18444] = "Master Sergeant\'s Insignia", + [18445] = "Sergeant Major\'s Plate Wristguards", + [18447] = "Sergeant Major\'s Plate Wristguards", + [18448] = "Sergeant Major\'s Chain Armguards", + [18449] = "Sergeant Major\'s Chain Armguards", + [18450] = "Robe of Combustion", + [18451] = "Hyena Hide Belt", + [18452] = "Sergeant Major\'s Leather Armsplints", + [18453] = "Sergeant Major\'s Leather Armsplints", + [18454] = "Sergeant Major\'s Dragonhide Armsplints", + [18455] = "Sergeant Major\'s Dragonhide Armsplints", + [18456] = "Sergeant Major\'s Silk Cuffs", + [18457] = "Sergeant Major\'s Silk Cuffs", + [18458] = "Modest Armguards", + [18459] = "Gallant\'s Wristguards", + [18460] = "Unsophisticated Hand Cannon", + [18461] = "Sergeant\'s Cloak", + [18462] = "Jagged Bone Fist", + [18463] = "Ogre Pocket Knife", + [18464] = "Gordok Nose Ring", + [18465] = "Royal Seal of Eldre\'Thalas", + [18466] = "Royal Seal of Eldre\'Thalas", + [18467] = "Royal Seal of Eldre\'Thalas", + [18468] = "Royal Seal of Eldre\'Thalas", + [18469] = "Royal Seal of Eldre\'Thalas", + [18470] = "Royal Seal of Eldre\'Thalas", + [18471] = "Royal Seal of Eldre\'Thalas", + [18472] = "Royal Seal of Eldre\'Thalas", + [18473] = "Royal Seal of Eldre\'Thalas", + [18475] = "Oddly Magical Belt", + [18476] = "Mud Stained Boots", + [18477] = "Shaggy Leggings", + [18478] = "Hyena Hide Jerkin", + [18479] = "Carrion Scorpid Helm", + [18480] = "Scarab Plate Helm", + [18481] = "Skullcracking Mace", + [18482] = "Ogre Toothpick Shooter", + [18483] = "Mana Channeling Wand", + [18484] = "Cho\'Rush\'s Blade", + [18485] = "Observer\'s Shield", + [18486] = "Mooncloth Robe", + [18487] = "Pattern: Mooncloth Robe", + [18488] = "Heated Ancient Blade", + [18489] = "Unfired Ancient Blade", + [18490] = "Insightful Hood", + [18491] = "Lorespinner", + [18492] = "Treated Ancient Blade", + [18493] = "Bulky Iron Spaulders", + [18494] = "Denwatcher\'s Shoulders", + [18495] = "Redoubt Cloak", + [18496] = "Heliotrope Cloak", + [18497] = "Sublime Wristguards", + [18498] = "Hedgecutter", + [18499] = "Barrier Shield", + [18500] = "Tarnished Elven Ring", + [18501] = "Felvine Shard", + [18502] = "Monstrous Glaive", + [18503] = "Kromcrush\'s Chestplate", + [18504] = "Girdle of Insight", + [18505] = "Mugger\'s Belt", + [18506] = "Mongoose Boots", + [18507] = "Boots of the Full Moon", + [18508] = "Swift Flight Bracers", + [18509] = "Chromatic Cloak", + [18510] = "Hide of the Wild", + [18511] = "Shifting Cloak", + [18512] = "Larval Acid", + [18513] = "A Dull and Flat Elven Blade", + [18514] = "Pattern: Girdle of Insight", + [18515] = "Pattern: Mongoose Boots", + [18516] = "Pattern: Swift Flight Bracers", + [18517] = "Pattern: Chromatic Cloak", + [18518] = "Pattern: Hide of the Wild", + [18519] = "Pattern: Shifting Cloak", + [18520] = "Barbarous Blade", + [18521] = "Grimy Metal Boots", + [18522] = "Band of the Ogre King", + [18523] = "Brightly Glowing Stone", + [18524] = "Leggings of Destruction", + [18525] = "Bracers of Prosperity", + [18526] = "Crown of the Ogre King", + [18527] = "Harmonious Gauntlets", + [18528] = "Cyclone Spaulders", + [18529] = "Elemental Plate Girdle", + [18530] = "Ogre Forged Hauberk", + [18531] = "Unyielding Maul", + [18532] = "Mindsurge Robe", + [18533] = "Gordok Bracers of Power", + [18534] = "Rod of the Ogre Magi", + [18535] = "Milli\'s Shield", + [18536] = "Milli\'s Lexicon", + [18537] = "Counterattack Lodestone", + [18538] = "Treant\'s Bane", + [18539] = "Reliquary of Purity", + [18540] = "Sealed Reliquary of Purity", + [18541] = "Puissant Cape", + [18542] = "Typhoon", + [18543] = "Ring of Entropy", + [18544] = "Doomhide Gauntlets", + [18545] = "Leggings of Arcane Supremacy", + [18546] = "Infernal Headcage", + [18547] = "Unmelting Ice Girdle", + [18562] = "Elementium Ore", + [18563] = "Bindings of the Windseeker", + [18564] = "Bindings of the Windseeker", + [18565] = "Band of Allegiance", + [18566] = "Lonetree\'s Circle", + [18567] = "Elemental Flux", + [18582] = "The Twin Blades of Azzinoth", + [18583] = "Warglaive of Azzinoth (Right)", + [18584] = "Warglaive of Azzinoth (Left)", + [18585] = "Band of Allegiance", + [18586] = "Lonetree\'s Circle", + [18587] = "Goblin Jumper Cables XL", + [18588] = "Ez-Thro Dynamite II", + [18589] = "Dormant Wind Kissed Blade DEPRECATED", + [18590] = "Raging Beast\'s Blood", + [18591] = "Case of Blood", + [18592] = "Plans: Sulfuron Hammer", + [18593] = "Thorium Brotherhood Contract (OLD)", + [18594] = "Powerful Seaforium Charge", + [18595] = "Blood Opal", + [18596] = "Monster - Axe, Horde B01 Green", + [18597] = "Orcish Orphan Whistle", + [18598] = "Human Orphan Whistle", + [18599] = "QAEnchant 2H Weapon +25 Agility", + [18600] = "Tome of Arcane Brilliance", + [18601] = "Glowing Crystal Prison", + [18602] = "Tome of Sacrifice", + [18603] = "Satyr Blood", + [18604] = "Tears of the Hederine", + [18605] = "Imprisoned Doomguard", + [18606] = "Alliance Battle Standard", + [18607] = "Horde Battle Standard", + [18608] = "Benediction", + [18609] = "Anathema", + [18610] = "Keen Machete", + [18611] = "Gnarlpine Leggings", + [18612] = "Bloody Chain Boots", + [18622] = "Flawless Fel Essence (Jaedenar)", + [18623] = "Flawless Fel Essence (Dark Portal)", + [18624] = "Flawless Fel Essence (Azshara)", + [18625] = "Kroshius\' Infernal Core", + [18626] = "Fel Fire", + [18627] = "Gong of Dethmoora", + [18628] = "Thorium Brotherhood Contract", + [18629] = "Black Lodestone", + [18630] = "Doomsday Flare", + [18631] = "Truesilver Transformer", + [18632] = "Moonbrook Riot Taffy", + [18633] = "Styleen\'s Sour Suckerpop", + [18634] = "Gyrofreeze Ice Reflector", + [18635] = "Bellara\'s Nutterbar", + [18636] = "Ruined Jumper Cables XL", + [18637] = "Major Recombobulator", + [18638] = "Hyper-Radiant Flame Reflector", + [18639] = "Ultra-Flash Shadow Reflector", + [18640] = "Happy Fun Rock", + [18641] = "Dense Dynamite", + [18642] = "Jaina\'s Autograph", + [18643] = "Cairne\'s Hoofprint", + [18644] = "Monster - Staff, Ornate Jeweled Staff - Red Low Red Flame", + [18645] = "Alarm-O-Bot", + [18646] = "The Eye of Divinity", + [18647] = "Schematic: Red Firework", + [18648] = "Schematic: Green Firework", + [18649] = "Schematic: Blue Firework", + [18650] = "Schematic: EZ-Thro Dynamite II", + [18651] = "Schematic: Truesilver Transformer", + [18652] = "Schematic: Gyrofreeze Ice Reflector", + [18653] = "Schematic: Goblin Jumper Cables XL", + [18654] = "Schematic: Gnomish Alarm-O-Bot", + [18655] = "Schematic: Major Recombobulator", + [18656] = "Schematic: Powerful Seaforium Charge", + [18657] = "Schematic: Hyper-Radiant Flame Reflector", + [18658] = "Schematic: Ultra-Flash Shadow Reflector", + [18659] = "Splinter of Nordrassil", + [18660] = "World Enlarger", + [18661] = "Schematic: World Enlarger", + [18662] = "Heavy Leather Ball", + [18663] = "J\'eevee\'s Jar", + [18664] = "A Treatise on Military Ranks", + [18665] = "The Eye of Shadow", + [18666] = "QAEnchant Weapon Crusader", + [18667] = "QAEnchant Weapon Icy Chill", + [18668] = "QAEnchant Weapon Spell Power", + [18669] = "QAEnchant Weapon Healing Power", + [18670] = "Xorothian Glyphs", + [18671] = "Baron Charr\'s Sceptre", + [18672] = "Elemental Ember", + [18673] = "Avalanchion\'s Stony Hide", + [18674] = "Hardened Stone Band", + [18675] = "Military Ranks of the Horde & Alliance", + [18676] = "Sash of the Windreaver", + [18677] = "Zephyr Cloak", + [18678] = "Tempestria\'s Frozen Necklace", + [18679] = "Frigid Ring", + [18680] = "Ancient Bone Bow", + [18681] = "Burial Shawl", + [18682] = "Ghoul Skin Leggings", + [18683] = "Hammer of the Vesper", + [18684] = "Dimly Opalescent Ring", + [18685] = "Shadowy Potion OLD", + [18686] = "Bone Golem Shoulders", + [18687] = "Xorothian Stardust", + [18688] = "Imp in a Jar", + [18689] = "Phantasmal Cloak", + [18690] = "Wraithplate Leggings", + [18691] = "Dark Advisor\'s Pendant", + [18692] = "Death Knight Sabatons", + [18693] = "Shivery Handwraps", + [18694] = "Shadowy Mail Greaves", + [18695] = "Spellbound Tome", + [18696] = "Intricately Runed Shield", + [18697] = "Coldstone Slippers", + [18698] = "Tattered Leather Hood", + [18699] = "Icy Tomb Spaulders", + [18700] = "Malefic Bracers", + [18701] = "Innervating Band", + [18702] = "Belt of the Ordained", + [18703] = "Ancient Petrified Leaf", + [18704] = "Mature Blue Dragon Sinew", + [18705] = "Mature Black Dragon Sinew", + [18706] = "Arena Master", + [18707] = "Ancient Rune Etched Stave", + [18708] = "Petrified Bark", + [18709] = "Arena Wristguards", + [18710] = "Arena Bracers", + [18711] = "Arena Bands", + [18712] = "Arena Vambraces", + [18713] = "Rhok\'delar, Longbow of the Ancient Keepers", + [18714] = "Ancient Sinew Wrapped Lamina", + [18715] = "Lok\'delar, Stave of the Ancient Keepers", + [18716] = "Ash Covered Boots", + [18717] = "Hammer of the Grand Crusader", + [18718] = "Grand Crusader\'s Helm", + [18719] = "The Traitor\'s Heart", + [18720] = "Shroud of the Nathrezim", + [18721] = "Barrage Girdle", + [18722] = "Death Grips", + [18723] = "Animated Chain Necklace", + [18724] = "Enchanted Black Dragon Sinew", + [18725] = "Peacemaker", + [18726] = "Magistrate\'s Cuffs", + [18727] = "Crimson Felt Hat", + [18728] = "Anastari Heirloom", + [18729] = "Screeching Bow", + [18730] = "Shadowy Laced Handwraps", + [18731] = "Pattern: Heavy Leather Ball", + [18732] = "Officer\'s Tabard", + [18733] = "Officer\'s Tabard", + [18734] = "Pale Moon Cloak", + [18735] = "Maleki\'s Footwraps", + [18736] = "Plaguehound Leggings", + [18737] = "Bone Slicing Hatchet", + [18738] = "Carapace Spine Crossbow", + [18739] = "Chitinous Plate Legguards", + [18740] = "Thuzadin Sash", + [18741] = "Morlune\'s Bracer", + [18742] = "Stratholme Militia Shoulderguard", + [18743] = "Gracious Cape", + [18744] = "Plaguebat Fur Gloves", + [18745] = "Sacred Cloth Leggings", + [18746] = "Divination Scryer", + [18747] = "Item Properties Test", + [18749] = "Charger\'s Lost Soul", + [18752] = "Exorcism Censer", + [18753] = "Arcanite Barding", + [18754] = "Fel Hardened Bracers", + [18755] = "Xorothian Firestick", + [18756] = "Dreadguard\'s Protector", + [18757] = "Diabolic Mantle", + [18758] = "Specter\'s Blade", + [18759] = "Malicious Axe", + [18760] = "Necromantic Band", + [18761] = "Oblivion\'s Touch", + [18762] = "Shard of the Green Flame", + [18763] = "TEST GUN Alliance20 ", + [18764] = "TEST GUN Raid", + [18765] = "TEST GUN Horde50", + [18766] = "Reins of the Swift Frostsaber", + [18767] = "Reins of the Swift Mistsaber", + [18768] = "Reins of the Swift Dawnsaber", + [18769] = "Enchanted Thorium Platemail", + [18770] = "Enchanted Thorium Platemail", + [18771] = "Enchanted Thorium Platemail", + [18772] = "Swift Green Mechanostrider", + [18773] = "Swift White Mechanostrider", + [18774] = "Swift Yellow Mechanostrider", + [18775] = "Manna-Enriched Horse Feed", + [18776] = "Swift Palomino", + [18777] = "Swift Brown Steed", + [18778] = "Swift White Steed", + [18779] = "Bottom Half of Advanced Armorsmithing: Volume I", + [18780] = "Top Half of Advanced Armorsmithing: Volume I", + [18781] = "Bottom Half of Advanced Armorsmithing: Volume II", + [18782] = "Top Half of Advanced Armorsmithing: Volume II", + [18783] = "Bottom Half of Advanced Armorsmithing: Volume III", + [18784] = "Top Half of Advanced Armorsmithing: Volume III", + [18785] = "Swift White Ram", + [18786] = "Swift Brown Ram", + [18787] = "Swift Gray Ram", + [18788] = "Swift Blue Raptor", + [18789] = "Swift Green Raptor", + [18790] = "Swift Orange Raptor", + [18791] = "Purple Skeletal Warhorse", + [18792] = "Blessed Arcanite Barding", + [18793] = "Great White Kodo", + [18794] = "Great Brown Kodo", + [18795] = "Great Gray Kodo", + [18796] = "Horn of the Swift Brown Wolf", + [18797] = "Horn of the Swift Timber Wolf", + [18798] = "Horn of the Swift Gray Wolf", + [18799] = "Charger\'s Redeemed Soul", + [18800] = "TEST 1H Amberseal Keeper", + [18801] = "TEST 1H Benediction", + [18802] = "Shadowy Potion", + [18803] = "Finkle\'s Lava Dredger", + [18804] = "Lord Grayson\'s Satchel", + [18805] = "Core Hound Tooth", + [18806] = "Core Forged Greaves", + [18807] = "Helm of Latent Power", + [18808] = "Gloves of the Hypnotic Flame", + [18809] = "Sash of Whispered Secrets", + [18810] = "Wild Growth Spaulders", + [18811] = "Fireproof Cloak", + [18812] = "Wristguards of True Flight", + [18813] = "Ring of Binding", + [18814] = "Choker of the Fire Lord", + [18815] = "Essence of the Pure Flame", + [18816] = "Perdition\'s Blade", + [18817] = "Crown of Destruction", + [18818] = "Mor\'zul\'s Instructions", + [18819] = "Rohan\'s Exorcism Censer", + [18820] = "Talisman of Ephemeral Power", + [18821] = "Quick Strike Ring", + [18822] = "Obsidian Edged Blade", + [18823] = "Aged Core Leather Gloves", + [18824] = "Magma Tempered Boots", + [18825] = "Grand Marshal\'s Aegis", + [18826] = "High Warlord\'s Shield Wall", + [18827] = "Grand Marshal\'s Handaxe", + [18828] = "High Warlord\'s Cleaver", + [18829] = "Deep Earth Spaulders", + [18830] = "Grand Marshal\'s Sunderer", + [18831] = "High Warlord\'s Battle Axe", + [18832] = "Brutality Blade", + [18833] = "Grand Marshal\'s Bullseye", + [18834] = "Insignia of the Horde", + [18835] = "High Warlord\'s Recurve", + [18836] = "Grand Marshal\'s Repeater", + [18837] = "High Warlord\'s Crossbow", + [18838] = "Grand Marshal\'s Dirk", + [18839] = "Combat Healing Potion", + [18840] = "High Warlord\'s Razor", + [18841] = "Combat Mana Potion", + [18842] = "Staff of Dominance", + [18843] = "Grand Marshal\'s Right Knuckles", + [18844] = "High Warlord\'s Right Claw", + [18845] = "Insignia of the Horde", + [18846] = "Insignia of the Horde", + [18847] = "Grand Marshal\'s Left Knuckles", + [18848] = "High Warlord\'s Left Claw", + [18849] = "Insignia of the Horde", + [18850] = "Insignia of the Horde", + [18851] = "Insignia of the Horde", + [18852] = "Insignia of the Horde", + [18853] = "Insignia of the Horde", + [18854] = "Insignia of the Alliance", + [18855] = "Grand Marshal\'s Hand Cannon", + [18856] = "Insignia of the Alliance", + [18857] = "Insignia of the Alliance", + [18858] = "Insignia of the Alliance", + [18859] = "Insignia of the Alliance", + [18860] = "High Warlord\'s Street Sweeper", + [18861] = "Flamewaker Legplates", + [18862] = "Insignia of the Alliance", + [18863] = "Insignia of the Alliance", + [18864] = "Insignia of the Alliance", + [18865] = "Grand Marshal\'s Punisher", + [18866] = "High Warlord\'s Bludgeon", + [18867] = "Grand Marshal\'s Battle Hammer", + [18868] = "High Warlord\'s Pulverizer", + [18869] = "Grand Marshal\'s Glaive", + [18870] = "Helm of the Lifegiver", + [18871] = "High Warlord\'s Pig Sticker", + [18872] = "Manastorm Leggings", + [18873] = "Grand Marshal\'s Stave", + [18874] = "High Warlord\'s War Staff", + [18875] = "Salamander Scale Pants", + [18876] = "Grand Marshal\'s Claymore", + [18877] = "High Warlord\'s Greatsword", + [18878] = "Sorcerous Dagger", + [18879] = "Heavy Dark Iron Ring", + [18880] = "Darkreaver\'s Head", + [18881] = "TEST Ragnaros Hammer", + [18882] = "TEST Level 80 Epic", + [18902] = "Reins of the Swift Stormsaber", + [18904] = "Zorbin\'s Ultra-Shrinker", + [18922] = "Secret Plans: Fiery Flux", + [18942] = "Fiery Flux", + [18943] = "Dark Iron Pillow", + [18944] = "Incendosaur Scale", + [18945] = "Dark Iron Residue", + [18946] = "Head of Overseer Maltorius", + [18947] = "Rage Scar Yeti Hide", + [18948] = "Barbaric Bracers", + [18949] = "Pattern: Barbaric Bracers", + [18950] = "Chambermaid Pillaclencher\'s Pillow", + [18951] = "Evonice\'s Landin\' Pilla", + [18952] = "Simone\'s Head", + [18953] = "Klinfran\'s Head", + [18954] = "Solenor\'s Head", + [18955] = "Artorius\'s Head", + [18956] = "Miniaturization Residue", + [18957] = "Brushwood Blade", + [18958] = "Water Elemental Core", + [18959] = "Smithing Tuyere", + [18960] = "Lookout\'s Spyglass", + [18961] = "Zukk\'ash Carapace", + [18962] = "Stinglasher\'s Glands", + [18963] = "Turtle Egg (Albino)", + [18964] = "Turtle Egg (Loggerhead)", + [18965] = "Turtle Egg (Hawksbill)", + [18966] = "Turtle Egg (Leatherback)", + [18967] = "Turtle Egg (Olive)", + [18968] = "Ring of Critical Testing", + [18969] = "Pristine Yeti Hide", + [18970] = "Ring of Critical Testing 2", + [18971] = "Ring of Critical Testing 3", + [18972] = "Perfect Yeti Hide", + [18982] = "Ring of Critical Testing 4", + [18983] = "Monster - Sword, Longsword Exotic Black - Low Red Flame", + [18984] = "Dimensional Ripper - Everlook", + [18985] = "Monster - Sword, Long Silver - Green Pommel - High Black Glow", + [18986] = "Ultrasafe Transporter: Gadgetzan", + [18987] = "Blackhand\'s Command", + [19002] = "Head of Nefarian", + [19003] = "Head of Nefarian", + [19004] = "Minor Healthstone", + [19005] = "Minor Healthstone", + [19006] = "Lesser Healthstone", + [19007] = "Lesser Healthstone", + [19008] = "Healthstone", + [19009] = "Healthstone", + [19010] = "Greater Healthstone", + [19011] = "Greater Healthstone", + [19012] = "Major Healthstone", + [19013] = "Major Healthstone", + [19014] = "Monster - Item, 2H Horde Wood Axe", + [19015] = "Monster - Item, 2H Alliance Wood Axe", + [19016] = "Vessel of Rebirth", + [19017] = "Essence of the Firelord", + [19018] = "Dormant Wind Kissed Blade", + [19019] = "Thunderfury, Blessed Blade of the Windseeker", + [19020] = "Camp Mojache Zukk\'ash Report", + [19022] = "Nat Pagle\'s Extreme Angler FC-5000", + [19023] = "Katoom\'s Best Lure", + [19024] = "Arena Grand Master", + [19025] = "Skylord Plume", + [19026] = "Snake Burst Firework", + [19027] = "Schematic: Snake Burst Firework", + [19028] = "Elegant Dress", + [19029] = "Horn of the Frostwolf Howler", + [19030] = "Stormpike Battle Charger", + [19031] = "Frostwolf Battle Tabard", + [19032] = "Stormpike Battle Tabard", + [19033] = "Slagtree\'s Lost Tools", + [19034] = "Lard\'s Lunch", + [19035] = "Lard\'s Special Picnic Basket", + [19036] = "Final Message to the Wildhammer", + [19037] = "Emerald Peak Spaulders", + [19038] = "Ring of Subtlety", + [19039] = "Zorbin\'s Water Resistant Hat", + [19040] = "Zorbin\'s Mega-Slicer", + [19041] = "Pratt\'s Handcrafted Tunic", + [19042] = "Jangdor\'s Handcrafted Tunic", + [19043] = "Heavy Timbermaw Belt", + [19044] = "Might of the Timbermaw", + [19045] = "Stormpike Battle Standard", + [19046] = "Frostwolf Battle Standard", + [19047] = "Wisdom of the Timbermaw", + [19048] = "Heavy Timbermaw Boots", + [19049] = "Timbermaw Brawlers", + [19050] = "Mantle of the Timbermaw", + [19051] = "Girdle of the Dawn", + [19052] = "Dawn Treaders", + [19053] = "Monster - Item, Orb - A01 Blue", + [19054] = "Red Dragon Orb", + [19055] = "Green Dragon Orb", + [19056] = "Argent Boots", + [19057] = "Gloves of the Dawn", + [19058] = "Golden Mantle of the Dawn", + [19059] = "Argent Shoulders", + [19060] = "Warsong Gulch Enriched Ration", + [19061] = "Warsong Gulch Iron Ration", + [19062] = "Warsong Gulch Field Ration", + [19064] = "Shackle Key", + [19065] = "Emerald Circle", + [19066] = "Warsong Gulch Runecloth Bandage", + [19067] = "Warsong Gulch Mageweave Bandage", + [19068] = "Warsong Gulch Silk Bandage", + [19069] = "Huntsman Malkhor\'s Skull", + [19070] = "Huntsman Malkhor\'s Bones", + [19071] = "Vessel of Tainted Blood", + [19082] = "Monster - Fire Arrow", + [19083] = "Frostwolf Legionnaire\'s Cloak", + [19084] = "Stormpike Soldier\'s Cloak", + [19085] = "Frostwolf Advisor\'s Cloak", + [19086] = "Stormpike Sage\'s Cloak", + [19087] = "Frostwolf Plate Belt", + [19088] = "Frostwolf Mail Belt", + [19089] = "Frostwolf Leather Belt", + [19090] = "Frostwolf Cloth Belt", + [19091] = "Stormpike Plate Girdle", + [19092] = "Stormpike Mail Girdle", + [19093] = "Stormpike Leather Girdle", + [19094] = "Stormpike Cloth Girdle", + [19095] = "Frostwolf Legionnaire\'s Pendant", + [19096] = "Frostwolf Advisor\'s Pendant", + [19097] = "Stormpike Soldier\'s Pendant", + [19098] = "Stormpike Sage\'s Pendant", + [19099] = "Glacial Blade", + [19100] = "Electrified Dagger", + [19101] = "Whiteout Staff", + [19102] = "Crackling Staff", + [19103] = "Frostbite", + [19104] = "Stormstrike Hammer", + [19105] = "Frost Runed Headdress", + [19106] = "Ice Barbed Spear", + [19107] = "Bloodseeker", + [19108] = "Wand of Biting Cold", + [19109] = "Deep Rooted Ring", + [19110] = "Cold Forged Blade", + [19111] = "Winteraxe Epaulets", + [19112] = "Frozen Steel Vambraces", + [19113] = "Yeti Hide Bracers", + [19114] = "Highland Bow", + [19115] = "Flask of Forest Mojo", + [19116] = "Greenleaf Handwraps", + [19117] = "Laquered Wooden Plate Legplates", + [19118] = "Nature\'s Breath", + [19119] = "Owlbeast Hide Gloves", + [19120] = "Rune of the Guard Captain", + [19121] = "Deep Woodlands Cloak", + [19122] = "Woven Ivy Necklace DEPRECATED", + [19123] = "Everwarm Handwraps", + [19124] = "Slagplate Leggings", + [19125] = "Seared Mail Girdle", + [19126] = "Slagplate Gauntlets", + [19127] = "Charred Leather Tunic", + [19128] = "Seared Mail Vest", + [19129] = "Everglowing Robe", + [19130] = "Cold Snap", + [19131] = "Snowblind Shoes", + [19132] = "Crystal Adorned Crown", + [19133] = "Fel Infused Leggings", + [19134] = "Flayed Doomguard Belt", + [19135] = "Blacklight Bracer", + [19136] = "Mana Igniting Cord", + [19137] = "Onslaught Girdle", + [19138] = "Band of Sulfuras", + [19139] = "Fireguard Shoulders", + [19140] = "Cauterizing Band", + [19141] = "Luffa", + [19142] = "Fire Runed Grimoire", + [19143] = "Flameguard Gauntlets", + [19144] = "Sabatons of the Flamewalker", + [19145] = "Robe of Volatile Power", + [19146] = "Wristguards of Stability", + [19147] = "Ring of Spell Power", + [19148] = "Dark Iron Helm", + [19149] = "Lava Belt", + [19150] = "Sentinel Basic Care Package", + [19151] = "Sentinel Standard Care Package", + [19152] = "Sentinel Advanced Care Package", + [19153] = "Outrider Advanced Care Package", + [19154] = "Outrider Basic Care Package", + [19155] = "Outrider Standard Care Package", + [19156] = "Flarecore Robe", + [19157] = "Chromatic Gauntlets", + [19158] = "TEST Sulfuras, Hand of Ragnaros", + [19159] = "Woven Ivy Necklace", + [19160] = "Contest Winner\'s Tabard", + [19162] = "Corehound Belt", + [19163] = "Molten Belt", + [19164] = "Dark Iron Gauntlets", + [19165] = "Flarecore Leggings", + [19166] = "Black Amnesty", + [19167] = "Blackfury", + [19168] = "Blackguard", + [19169] = "Nightfall", + [19170] = "Ebon Hand", + [19182] = "Darkmoon Faire Prize Ticket", + [19183] = "Hourglass Sand", + [19184] = "3800 Test 2h Axe 63 blue", + [19185] = "2100 Test 2h Axe 63 blue", + [19186] = "2700 Test 2h Axe 63 blue", + [19187] = "3200 Test 2h Axe 63 blue", + [19188] = "2200 Test 2h Axe 63 blue", + [19189] = "2300 Test 2h Axe 63 blue", + [19190] = "2400 Test 2h Axe 63 blue", + [19191] = "2500 Test 2h Axe 63 blue", + [19192] = "2600 Test 2h Axe 63 blue", + [19193] = "2800 Test 2h Axe 63 blue", + [19194] = "2900 Test 2h Axe 63 blue", + [19195] = "3000 Test 2h Axe 63 blue", + [19196] = "3100 Test 2h Axe 63 blue", + [19197] = "3300 Test 2h Axe 63 blue", + [19198] = "3400 Test 2h Axe 63 blue", + [19199] = "3500 Test 2h Axe 63 blue", + [19200] = "3600 Test 2h Axe 63 blue", + [19201] = "3700 Test 2h Axe 63 blue", + [19202] = "Plans: Heavy Timbermaw Belt", + [19203] = "Plans: Girdle of the Dawn", + [19204] = "Plans: Heavy Timbermaw Boots", + [19205] = "Plans: Gloves of the Dawn", + [19206] = "Plans: Dark Iron Helm", + [19207] = "Plans: Dark Iron Gauntlets", + [19208] = "Plans: Black Amnesty", + [19209] = "Plans: Blackfury", + [19210] = "Plans: Ebon Hand", + [19211] = "Plans: Blackguard", + [19212] = "Plans: Nightfall", + [19213] = "Silverwing Talisman of Merit", + [19214] = "Monster - Staff, Wooden Handle Spiral Head Dark", + [19215] = "Pattern: Wisdom of the Timbermaw", + [19216] = "Pattern: Argent Boots", + [19217] = "Pattern: Argent Shoulders", + [19218] = "Pattern: Mantle of the Timbermaw", + [19219] = "Pattern: Flarecore Robe", + [19220] = "Pattern: Flarecore Leggings", + [19221] = "Darkmoon Special Reserve", + [19222] = "Cheap Beer", + [19223] = "Darkmoon Dog", + [19224] = "Red Hot Wings", + [19225] = "Deep Fried Candybar", + [19226] = "Fast Test Fist", + [19227] = "Ace of Beasts", + [19228] = "Beasts Deck", + [19229] = "Sayge\'s Fortune #1", + [19230] = "Two of Beasts", + [19231] = "Three of Beasts", + [19232] = "Four of Beasts", + [19233] = "Five of Beasts", + [19234] = "Six of Beasts", + [19235] = "Seven of Beasts", + [19236] = "Eight of Beasts", + [19237] = "Sayge\'s Fortune #19", + [19238] = "Sayge\'s Fortune #3", + [19239] = "Sayge\'s Fortune #4", + [19240] = "Sayge\'s Fortune #5", + [19241] = "Sayge\'s Fortune #6", + [19242] = "Sayge\'s Fortune #7", + [19243] = "Sayge\'s Fortune #8", + [19244] = "Sayge\'s Fortune #9", + [19245] = "Sayge\'s Fortune #10", + [19246] = "Sayge\'s Fortune #11", + [19247] = "Sayge\'s Fortune #12", + [19248] = "Sayge\'s Fortune #13", + [19249] = "Sayge\'s Fortune #14", + [19250] = "Sayge\'s Fortune #15", + [19251] = "Sayge\'s Fortune #16", + [19252] = "Sayge\'s Fortune #18", + [19253] = "Sayge\'s Fortune #17", + [19254] = "Sayge\'s Fortune #21", + [19255] = "Sayge\'s Fortune #22", + [19256] = "Sayge\'s Fortune #2", + [19257] = "Warlords Deck", + [19258] = "Ace of Warlords", + [19259] = "Two of Warlords", + [19260] = "Three of Warlords", + [19261] = "Four of Warlords", + [19262] = "Five of Warlords", + [19263] = "Six of Warlords", + [19264] = "Seven of Warlords", + [19265] = "Eight of Warlords", + [19266] = "Sayge\'s Fortune #20", + [19267] = "Elementals Deck", + [19268] = "Ace of Elementals", + [19269] = "Two of Elementals", + [19270] = "Three of Elementals", + [19271] = "Four of Elementals", + [19272] = "Five of Elementals", + [19273] = "Six of Elementals", + [19274] = "Seven of Elementals", + [19275] = "Eight of Elementals", + [19276] = "Ace of Portals", + [19277] = "Portals Deck", + [19278] = "Two of Portals", + [19279] = "Three of Portals", + [19280] = "Four of Portals", + [19281] = "Five of Portals", + [19282] = "Six of Portals", + [19283] = "Seven of Portals", + [19284] = "Eight of Portals", + [19285] = "Fast Test Ammo", + [19286] = "Fast Test Ammo", + [19287] = "Darkmoon Card: Heroism", + [19288] = "Darkmoon Card: Blue Dragon", + [19289] = "Darkmoon Card: Maelstrom", + [19290] = "Darkmoon Card: Twisting Nether", + [19291] = "Darkmoon Storage Box", + [19292] = "Last Month\'s Mutton", + [19293] = "Last Year\'s Mutton", + [19294] = "Darkmoon Boquet", + [19295] = "Darkmoon Flower", + [19296] = "Greater Darkmoon Prize", + [19297] = "Lesser Darkmoon Prize", + [19298] = "Minor Darkmoon Prize", + [19299] = "Fizzy Faire Drink", + [19300] = "Bottled Winterspring Water", + [19301] = "Alterac Manna Biscuit", + [19302] = "Darkmoon Ring", + [19303] = "Darkmoon Necklace", + [19304] = "Spiced Beef Jerky", + [19305] = "Pickled Kodo Foot", + [19306] = "Crunchy Frog", + [19307] = "Alterac Heavy Runecloth Bandage", + [19308] = "Tome of Arcane Domination", + [19309] = "Tome of Shadow Force", + [19310] = "Tome of the Ice Lord", + [19311] = "Tome of Fiery Arcana", + [19312] = "Lei of the Lifegiver", + [19313] = "1300 Test Dagger 63 blue", + [19314] = "2000 Test Dagger 63 blue", + [19315] = "Therazane\'s Touch", + [19316] = "Ice Threaded Arrow", + [19317] = "Ice Threaded Bullet", + [19318] = "Bottled Alterac Spring Water", + [19319] = "Harpy Hide Quiver", + [19320] = "Gnoll Skin Bandolier", + [19321] = "The Immovable Object", + [19322] = "Warsong Mark of Honor", + [19323] = "The Unstoppable Force", + [19324] = "The Lobotomizer", + [19325] = "Don Julio\'s Band", + [19326] = "Pattern: Might of the Timbermaw", + [19327] = "Pattern: Timbermaw Brawlers", + [19328] = "Pattern: Dawn Treaders", + [19329] = "Pattern: Golden Mantle of the Dawn", + [19330] = "Pattern: Lava Belt", + [19331] = "Pattern: Chromatic Gauntlets", + [19332] = "Pattern: Corehound Belt", + [19333] = "Pattern: Molten Belt", + [19334] = "The Untamed Blade", + [19335] = "Spineshatter", + [19336] = "Arcane Infused Gem", + [19337] = "The Black Book", + [19338] = "Free Ticket Voucher", + [19339] = "Mind Quickening Gem", + [19340] = "Rune of Metamorphosis", + [19341] = "Lifegiving Gem", + [19342] = "Venomous Totem", + [19343] = "Scrolls of Blinding Light", + [19344] = "Natural Alignment Crystal", + [19345] = "Aegis of Preservation", + [19346] = "Dragonfang Blade", + [19347] = "Claw of Chromaggus", + [19348] = "Red Dragonscale Protector", + [19349] = "Elementium Reinforced Bulwark", + [19350] = "Heartstriker", + [19351] = "Maladath, Runed Blade of the Black Flight", + [19352] = "Chromatically Tempered Sword", + [19353] = "Drake Talon Cleaver", + [19354] = "Draconic Avenger", + [19355] = "Shadow Wing Focus Staff", + [19356] = "Staff of the Shadow Flame", + [19357] = "Herald of Woe", + [19358] = "Draconic Maul", + [19359] = "Blackwing Mace1H[PH]", + [19360] = "Lok\'amir il Romathis", + [19361] = "Ashjre\'thul, Crossbow of Smiting", + [19362] = "Doom\'s Edge", + [19363] = "Crul\'shorukh, Edge of Chaos", + [19364] = "Ashkandi, Greatsword of the Brotherhood", + [19365] = "Claw of the Black Drake", + [19366] = "Master Dragonslayer\'s Orb", + [19367] = "Dragon\'s Touch", + [19368] = "Dragonbreath Hand Cannon", + [19369] = "Gloves of Rapid Evolution", + [19370] = "Mantle of the Blackwing Cabal", + [19371] = "Pendant of the Fallen Dragon", + [19372] = "Helm of Endless Rage", + [19373] = "Black Brood Pauldrons", + [19374] = "Bracers of Arcane Accuracy", + [19375] = "Mish\'undare, Circlet of the Mind Flayer", + [19376] = "Archimtiros\' Ring of Reckoning", + [19377] = "Prestor\'s Talisman of Connivery", + [19378] = "Cloak of the Brood Lord", + [19379] = "Neltharion\'s Tear", + [19380] = "Therazane\'s Link", + [19381] = "Boots of the Shadow Flame", + [19382] = "Pure Elementium Band", + [19383] = "Master Dragonslayer\'s Medallion", + [19384] = "Master Dragonslayer\'s Ring", + [19385] = "Empowered Leggings", + [19386] = "Elementium Threaded Cloak", + [19387] = "Chromatic Boots", + [19388] = "Angelista\'s Grasp", + [19389] = "Taut Dragonhide Shoulderpads", + [19390] = "Taut Dragonhide Gloves", + [19391] = "Shimmering Geta", + [19392] = "Girdle of the Fallen Crusader", + [19393] = "Primalist\'s Linked Waistguard", + [19394] = "Drake Talon Pauldrons", + [19395] = "Rejuvenating Gem", + [19396] = "Taut Dragonhide Belt", + [19397] = "Ring of Blackrock", + [19398] = "Cloak of Firemaw", + [19399] = "Black Ash Robe", + [19400] = "Firemaw\'s Clutch", + [19401] = "Primalist\'s Linked Legguards", + [19402] = "Legguards of the Fallen Crusader", + [19403] = "Band of Forced Concentration", + [19404] = "Monster - Mace, The Hand of Nefarius", + [19405] = "Malfurion\'s Blessed Bulwark", + [19406] = "Drake Fang Talisman", + [19407] = "Ebony Flame Gloves", + [19422] = "Darkmoon Faire Fortune", + [19423] = "Sayge\'s Fortune #23", + [19424] = "Sayge\'s Fortune #24", + [19425] = "Mysterious Lockbox", + [19426] = "Orb of the Darkmoon", + [19427] = "1500 Test sword 63 blue", + [19428] = "2900 Test sword 63 blue", + [19430] = "Shroud of Pure Thought", + [19431] = "Styleen\'s Impeding Scarab", + [19432] = "Circle of Applied Force", + [19433] = "Emberweave Leggings", + [19434] = "Band of Dark Dominion", + [19435] = "Essence Gatherer", + [19436] = "Cloak of Draconic Might", + [19437] = "Boots of Pure Thought", + [19438] = "Ringo\'s Blizzard Boots", + [19439] = "Interlaced Shadow Jerkin", + [19440] = "Powerful Anti-Venom", + [19441] = "Huge Venom Sac", + [19442] = "Formula: Powerful Anti-Venom", + [19443] = "Sayge\'s Fortune #25", + [19444] = "Formula: Enchant Weapon - Strength", + [19445] = "Formula: Enchant Weapon - Agility", + [19446] = "Formula: Enchant Bracer - Mana Regeneration", + [19447] = "Formula: Enchant Bracer - Healing", + [19448] = "Formula: Enchant Weapon - Mighty Spirit", + [19449] = "Formula: Enchant Weapon - Mighty Intellect", + [19450] = "A Jubling\'s Tiny Home", + [19451] = "Sayge\'s Fortune #26", + [19452] = "Sayge\'s Fortune #27", + [19453] = "Sayge\'s Fortune #28", + [19454] = "Sayge\'s Fortune #29", + [19455] = "3500 Test 2h Axe 70 purple", + [19456] = "2900 Test sword 80 purple", + [19457] = "1500 Test sword 80 purple", + [19462] = "Unhatched Jubling Egg", + [19482] = "LeCraft Rabbit Pelt", + [19483] = "Peeling the Onion", + [19484] = "The Frostwolf Artichoke", + [19485] = "Monster - Item, Fish - Blue Offhand", + [19486] = "Monster - Item, Fish - Green Offhand", + [19487] = "Monster - Item, Fish - Orange Offhand", + [19488] = "Monster - Item, Fish - Purple Offhand", + [19489] = "3300 Test Crossbow 63 blue", + [19490] = "2800 Test Bow 63 Blue", + [19491] = "Amulet of the Darkmoon", + [19502] = "2200 Test sword 63 blue", + [19503] = "2200 Test sword 80 purple", + [19504] = "2200 Test sword 70 purple", + [19505] = "Warsong Battle Tabard", + [19506] = "Silverwing Battle Tabard", + [19507] = "Inquisitor\'s Shawl", + [19508] = "Branded Leather Bracers", + [19509] = "Dusty Mail Boots", + [19510] = "Legionnaire\'s Band", + [19511] = "Legionnaire\'s Band", + [19512] = "Legionnaire\'s Band", + [19513] = "Legionnaire\'s Band", + [19514] = "Protector\'s Band", + [19515] = "Protector\'s Band", + [19516] = "Protector\'s Band", + [19517] = "Protector\'s Band", + [19518] = "Advisor\'s Ring", + [19519] = "Advisor\'s Ring", + [19520] = "Advisor\'s Ring", + [19521] = "Advisor\'s Ring", + [19522] = "Lorekeeper\'s Ring", + [19523] = "Lorekeeper\'s Ring", + [19524] = "Lorekeeper\'s Ring", + [19525] = "Lorekeeper\'s Ring", + [19526] = "Battle Healer\'s Cloak", + [19527] = "Battle Healer\'s Cloak", + [19528] = "Battle Healer\'s Cloak", + [19529] = "Battle Healer\'s Cloak", + [19530] = "Caretaker\'s Cape", + [19531] = "Caretaker\'s Cape", + [19532] = "Caretaker\'s Cape", + [19533] = "Caretaker\'s Cape", + [19534] = "Scout\'s Medallion", + [19535] = "Scout\'s Medallion", + [19536] = "Scout\'s Medallion", + [19537] = "Scout\'s Medallion", + [19538] = "Sentinel\'s Medallion", + [19539] = "Sentinel\'s Medallion", + [19540] = "Sentinel\'s Medallion", + [19541] = "Sentinel\'s Medallion", + [19542] = "Scout\'s Blade", + [19543] = "Scout\'s Blade", + [19544] = "Scout\'s Blade", + [19545] = "Scout\'s Blade", + [19546] = "Sentinel\'s Blade", + [19547] = "Sentinel\'s Blade", + [19548] = "Sentinel\'s Blade", + [19549] = "Sentinel\'s Blade", + [19550] = "Legionnaire\'s Sword", + [19551] = "Legionnaire\'s Sword", + [19552] = "Legionnaire\'s Sword", + [19553] = "Legionnaire\'s Sword", + [19554] = "Protector\'s Sword", + [19555] = "Protector\'s Sword", + [19556] = "Protector\'s Sword", + [19557] = "Protector\'s Sword", + [19558] = "Outrider\'s Bow", + [19559] = "Outrider\'s Bow", + [19560] = "Outrider\'s Bow", + [19561] = "Outrider\'s Bow", + [19562] = "Outrunner\'s Bow", + [19563] = "Outrunner\'s Bow", + [19564] = "Outrunner\'s Bow", + [19565] = "Outrunner\'s Bow", + [19566] = "Advisor\'s Gnarled Staff", + [19567] = "Advisor\'s Gnarled Staff", + [19568] = "Advisor\'s Gnarled Staff", + [19569] = "Advisor\'s Gnarled Staff", + [19570] = "Lorekeeper\'s Staff", + [19571] = "Lorekeeper\'s Staff", + [19572] = "Lorekeeper\'s Staff", + [19573] = "Lorekeeper\'s Staff", + [19574] = "Strength of Mugamba", + [19575] = "Strength of Mugamba", + [19576] = "Strength of Mugamba", + [19577] = "Rage of Mugamba", + [19578] = "Berserker Bracers", + [19579] = "Heathen\'s Brand", + [19580] = "Berserker Bracers", + [19581] = "Berserker Bracers", + [19582] = "Windtalker\'s Wristguards", + [19583] = "Windtalker\'s Wristguards", + [19584] = "Windtalker\'s Wristguards", + [19585] = "Heathen\'s Brand", + [19586] = "Heathen\'s Brand", + [19587] = "Forest Stalker\'s Bracers", + [19588] = "Hero\'s Brand", + [19589] = "Forest Stalker\'s Bracers", + [19590] = "Forest Stalker\'s Bracers", + [19591] = "The Eye of Zuldazar", + [19592] = "The Eye of Zuldazar", + [19593] = "The Eye of Zuldazar", + [19594] = "The All-Seeing Eye of Zuldazar", + [19595] = "Dryad\'s Wrist Bindings", + [19596] = "Dryad\'s Wrist Bindings", + [19597] = "Dryad\'s Wrist Bindings", + [19598] = "Pebble of Kajaro", + [19599] = "Pebble of Kajaro", + [19600] = "Pebble of Kajaro", + [19601] = "Jewel of Kajaro", + [19602] = "Kezan\'s Taint", + [19603] = "Kezan\'s Taint", + [19604] = "Kezan\'s Taint", + [19605] = "Kezan\'s Unstoppable Taint", + [19606] = "Vision of Voodress", + [19607] = "Vision of Voodress", + [19608] = "Vision of Voodress", + [19609] = "Unmarred Vision of Voodress", + [19610] = "Enchanted South Seas Kelp", + [19611] = "Enchanted South Seas Kelp", + [19612] = "Enchanted South Seas Kelp", + [19613] = "Pristine Enchanted South Seas Kelp", + [19614] = "Zandalarian Shadow Talisman", + [19615] = "Zandalarian Shadow Talisman", + [19616] = "Zandalarian Shadow Talisman", + [19617] = "Zandalarian Shadow Mastery Talisman", + [19618] = "Maelstrom\'s Tendril", + [19619] = "Maelstrom\'s Tendril", + [19620] = "Maelstrom\'s Tendril", + [19621] = "Maelstrom\'s Wrath", + [19622] = "1800 Test Dagger 63 blue", + [19623] = "Monster - Mace2H, Horde B01/B01 Orange", + [19642] = "iCoke Prize Voucher", + [19662] = "3500 Test 2h Axe 80 purple", + [19682] = "Bloodvine Vest", + [19683] = "Bloodvine Leggings", + [19684] = "Bloodvine Boots", + [19685] = "Primal Batskin Jerkin", + [19686] = "Primal Batskin Gloves", + [19687] = "Primal Batskin Bracers", + [19688] = "Blood Tiger Breastplate", + [19689] = "Blood Tiger Shoulders", + [19690] = "Bloodsoul Breastplate", + [19691] = "Bloodsoul Shoulders", + [19692] = "Bloodsoul Gauntlets", + [19693] = "Darksoul Breastplate", + [19694] = "Darksoul Leggings", + [19695] = "Darksoul Shoulders", + [19696] = "Harvest Bread", + [19697] = "Bounty of the Harvest", + [19698] = "Zulian Coin", + [19699] = "Razzashi Coin", + [19700] = "Hakkari Coin", + [19701] = "Gurubashi Coin", + [19702] = "Vilebranch Coin", + [19703] = "Witherbark Coin", + [19704] = "Sandfury Coin", + [19705] = "Skullsplitter Coin", + [19706] = "Bloodscalp Coin", + [19707] = "Red Hakkari Bijou", + [19708] = "Blue Hakkari Bijou", + [19709] = "Yellow Hakkari Bijou", + [19710] = "Orange Hakkari Bijou", + [19711] = "Green Hakkari Bijou", + [19712] = "Purple Hakkari Bijou", + [19713] = "Bronze Hakkari Bijou", + [19714] = "Silver Hakkari Bijou", + [19715] = "Gold Hakkari Bijou", + [19716] = "Primal Hakkari Bindings", + [19717] = "Primal Hakkari Armsplint", + [19718] = "Primal Hakkari Stanchion", + [19719] = "Primal Hakkari Girdle", + [19720] = "Primal Hakkari Sash", + [19721] = "Primal Hakkari Shawl", + [19722] = "Primal Hakkari Tabard", + [19723] = "Primal Hakkari Kossack", + [19724] = "Primal Hakkari Aegis", + [19725] = "Arathi Resource Crate", + [19726] = "Bloodvine", + [19727] = "Blood Scythe", + [19742] = "Earthborn Kilt TEST", + [19743] = "Cloaked Hood TEST", + [19762] = "Monster - Axe, Horde C04 Purple", + [19763] = "Monster - Shield, Round A01/Buckler Damaged A02Black", + [19764] = "Pattern: Bloodvine Vest", + [19765] = "Pattern: Bloodvine Leggings", + [19766] = "Pattern: Bloodvine Boots", + [19767] = "Primal Bat Leather", + [19768] = "Primal Tiger Leather", + [19769] = "Pattern: Primal Batskin Jerkin", + [19770] = "Pattern: Primal Batskin Gloves", + [19771] = "Pattern: Primal Batskin Bracers", + [19772] = "Pattern: Blood Tiger Breastplate", + [19773] = "Pattern: Blood Tiger Shoulders", + [19774] = "Souldarite", + [19775] = "Sealed Azure Bag", + [19776] = "Plans: Bloodsoul Breastplate", + [19777] = "Plans: Bloodsoul Shoulders", + [19778] = "Plans: Bloodsoul Gauntlets", + [19779] = "Plans: Darksoul Breastplate", + [19780] = "Plans: Darksoul Leggings", + [19781] = "Plans: Darksoul Shoulders", + [19782] = "Presence of Might", + [19783] = "Syncretist\'s Sigil", + [19784] = "Death\'s Embrace", + [19785] = "Falcon\'s Call", + [19786] = "Vodouisant\'s Vigilant Embrace", + [19787] = "Presence of Sight", + [19788] = "Hoodoo Hex", + [19789] = "Prophetic Aura", + [19790] = "Animist\'s Caress", + [19802] = "Heart of Hakkar", + [19803] = "Brownell\'s Blue Striped Racer", + [19804] = "Pale Ghoulfish", + [19805] = "Keefer\'s Angelfish", + [19806] = "Dezian Queenfish", + [19807] = "Speckled Tastyfish", + [19808] = "Rockhide Strongfish", + [19809] = "2500 Test 2h Axe 60 blue", + [19810] = "1000 Test dagger 60 blue", + [19811] = "2500 Test 2h Axe 60 blue (bear)", + [19812] = "Rune of the Dawn", + [19813] = "Punctured Voodoo Doll", + [19814] = "Punctured Voodoo Doll", + [19815] = "Punctured Voodoo Doll", + [19816] = "Punctured Voodoo Doll", + [19817] = "Punctured Voodoo Doll", + [19818] = "Punctured Voodoo Doll", + [19819] = "Punctured Voodoo Doll", + [19820] = "Punctured Voodoo Doll", + [19821] = "Punctured Voodoo Doll", + [19822] = "Zandalar Vindicator\'s Breastplate", + [19823] = "Zandalar Vindicator\'s Belt", + [19824] = "Zandalar Vindicator\'s Armguards", + [19825] = "Zandalar Freethinker\'s Breastplate", + [19826] = "Zandalar Freethinker\'s Belt", + [19827] = "Zandalar Freethinker\'s Armguards", + [19828] = "Zandalar Augur\'s Hauberk", + [19829] = "Zandalar Augur\'s Belt", + [19830] = "Zandalar Augur\'s Bracers", + [19831] = "Zandalar Predator\'s Mantle", + [19832] = "Zandalar Predator\'s Belt", + [19833] = "Zandalar Predator\'s Bracers", + [19834] = "Zandalar Madcap\'s Tunic", + [19835] = "Zandalar Madcap\'s Mantle", + [19836] = "Zandalar Madcap\'s Bracers", + [19837] = "Test Ranged Slot", + [19838] = "Zandalar Haruspex\'s Tunic", + [19839] = "Zandalar Haruspex\'s Belt", + [19840] = "Zandalar Haruspex\'s Bracers", + [19841] = "Zandalar Confessor\'s Mantle", + [19842] = "Zandalar Confessor\'s Bindings", + [19843] = "Zandalar Confessor\'s Wraps", + [19844] = "Zandalar Illusionist\'s Robe DEPRECATED", + [19845] = "Zandalar Illusionist\'s Mantle", + [19846] = "Zandalar Illusionist\'s Wraps", + [19847] = "Zandalar Demoniac\'s Robe DEPRECATED", + [19848] = "Zandalar Demoniac\'s Wraps", + [19849] = "Zandalar Demoniac\'s Mantle", + [19850] = "Uther\'s Tribute", + [19851] = "Grom\'s Tribute", + [19852] = "Ancient Hakkari Manslayer", + [19853] = "Gurubashi Dwarf Destroyer", + [19854] = "Zin\'rokh, Destroyer of Worlds", + [19855] = "Bloodsoaked Legplates", + [19856] = "The Eye of Hakkar", + [19857] = "Cloak of Consumption", + [19858] = "Zandalar Honor Token", + [19859] = "Fang of the Faceless", + [19861] = "Touch of Chaos", + [19862] = "Aegis of the Blood God", + [19863] = "Primalist\'s Seal", + [19864] = "Bloodcaller", + [19865] = "Warblade of the Hakkari", + [19866] = "Warblade of the Hakkari", + [19867] = "Bloodlord\'s Defender", + [19868] = "Mandokir\'s Sting DEPRECATED", + [19869] = "Blooddrenched Grips", + [19870] = "Hakkari Loa Cloak", + [19871] = "Talisman of Protection", + [19872] = "Swift Razzashi Raptor", + [19873] = "Overlord\'s Crimson Band", + [19874] = "Halberd of Smiting", + [19875] = "Bloodstained Coif", + [19876] = "Soul Corrupter\'s Necklace", + [19877] = "Animist\'s Leggings", + [19878] = "Bloodsoaked Pauldrons", + [19879] = "Alex\'s Test Beatdown Staff", + [19880] = "Gurubashi Head Collection", + [19881] = "Channeler\'s Head", + [19882] = "The Hexxer\'s Head", + [19883] = "Sacred Cord", + [19884] = "Jin\'do\'s Judgement", + [19885] = "Jin\'do\'s Evil Eye", + [19886] = "The Hexxer\'s Cover", + [19887] = "Bloodstained Legplates", + [19888] = "Overlord\'s Embrace", + [19889] = "Blooddrenched Leggings", + [19890] = "Jin\'do\'s Hexxer", + [19891] = "Jin\'do\'s Bag of Whammies", + [19892] = "Animist\'s Boots", + [19893] = "Zanzil\'s Seal", + [19894] = "Bloodsoaked Gauntlets", + [19895] = "Bloodtinged Kilt", + [19896] = "Thekal\'s Grasp", + [19897] = "Betrayer\'s Boots", + [19898] = "Seal of Jin", + [19899] = "Ritualistic Legguards", + [19900] = "Zulian Stone Axe", + [19901] = "Zulian Slicer", + [19902] = "Swift Zulian Tiger", + [19903] = "Fang of Venoxis", + [19904] = "Runed Bloodstained Hauberk", + [19905] = "Zanzil\'s Band", + [19906] = "Blooddrenched Footpads", + [19907] = "Zulian Tigerhide Cloak", + [19908] = "Sceptre of Smiting", + [19909] = "Will of Arlokk", + [19910] = "Arlokk\'s Grasp", + [19911] = "Whipweed Heart", + [19912] = "Overlord\'s Onyx Band", + [19913] = "Bloodsoaked Greaves", + [19914] = "Panther Hide Sack", + [19915] = "Zulian Defender", + [19916] = "Monster - Mace, Standard Serpent Green", + [19917] = "Monster - Wand, Horde A01 Green", + [19918] = "Jeklik\'s Crusher", + [19919] = "Bloodstained Greaves", + [19920] = "Primalist\'s Band", + [19921] = "Zulian Hacker", + [19922] = "Arlokk\'s Hoodoo Stick", + [19923] = "Jeklik\'s Opaline Talisman", + [19924] = "Monster - Dagger, Fang Hook Curve Dark", + [19925] = "Band of Jin", + [19926] = "Flowing Ritual Robes DEPRECATED", + [19927] = "Mar\'li\'s Touch", + [19928] = "Animist\'s Spaulders", + [19929] = "Bloodtinged Gloves", + [19930] = "Mar\'li\'s Eye", + [19931] = "Gurubashi Mojo Madness", + [19932] = "UNUSED Empowered Mojo Bundle", + [19933] = "Glowing Scorpid Blood", + [19934] = "Large Scorpid Claw", + [19935] = "Empty Venom Sac", + [19936] = "Dried Scorpid Carapace", + [19937] = "Small Scorpid Claw", + [19938] = "Heavy Scorpid Leg", + [19939] = "Gri\'lek\'s Blood", + [19940] = "Renataki\'s Tooth", + [19941] = "Wushoolay\'s Mane", + [19942] = "Hazza\'rah\'s Dream Thread", + [19943] = "Massive Mojo", + [19944] = "Nat Pagle\'s Fish Terminator", + [19945] = "Foror\'s Eyepatch", + [19946] = "Tigule\'s Harpoon", + [19947] = "Nat Pagle\'s Broken Reel", + [19948] = "Zandalarian Hero Badge", + [19949] = "Zandalarian Hero Medallion", + [19950] = "Zandalarian Hero Charm", + [19951] = "Gri\'lek\'s Charm of Might", + [19952] = "Gri\'lek\'s Charm of Valor", + [19953] = "Renataki\'s Charm of Beasts", + [19954] = "Renataki\'s Charm of Trickery", + [19955] = "Wushoolay\'s Charm of Nature", + [19956] = "Wushoolay\'s Charm of Spirits", + [19957] = "Hazza\'rah\'s Charm of Destruction", + [19958] = "Hazza\'rah\'s Charm of Healing", + [19959] = "Hazza\'rah\'s Charm of Magic", + [19960] = "Crystalized Honey", + [19961] = "Gri\'lek\'s Grinder", + [19962] = "Gri\'lek\'s Carver", + [19963] = "Pitchfork of Madness", + [19964] = "Renataki\'s Soul Conduit", + [19965] = "Wushoolay\'s Poker", + [19966] = "Thrice Strung Longbow DEPRECATED", + [19967] = "Thoughtblighter", + [19968] = "Fiery Retributer", + [19969] = "Nat Pagle\'s Extreme Anglin\' Boots", + [19970] = "Arcanite Fishing Pole", + [19971] = "High Test Eternium Fishing Line", + [19972] = "Lucky Fishing Hat", + [19973] = "Nat\'s Measuring Tape", + [19974] = "Mudskunk Lure", + [19975] = "Zulian Mudskunk", + [19978] = "Fishing Tournament!", + [19979] = "Hook of the Master Angler", + [19980] = "Monster - Dagger, Ornate Spikey Base Red", + [19981] = "Monster - Sword2H, Claymore B01/Broadsword A03 Black Sharpened", + [19982] = "Duskbat Drape", + [19983] = "Monster - Wand, Horde Demon Skull Red", + [19984] = "Ebon Mask", + [19985] = "Highlander\'s Plate Girdle", + [19986] = "Pirate\'s Eye Patch", + [19987] = "Monster - Dagger, Vulture Black", + [19988] = "Monster - Mace2H, Horde C01 Steel (Green)", + [19989] = "Tome of Devouring Shadows", + [19990] = "Blessed Prayer Beads", + [19991] = "Devilsaur Eye", + [19992] = "Devilsaur Tooth", + [19993] = "Hoodoo Hunting Bow", + [19994] = "Harvest Fruit", + [19995] = "Harvest Boar", + [19996] = "Harvest Fish", + [19997] = "Harvest Nectar", + [19998] = "Bloodvine Lens", + [19999] = "Bloodvine Goggles", + [20000] = "Schematic: Bloodvine Goggles", + [20001] = "Schematic: Bloodvine Lens", + [20002] = "Greater Dreamless Sleep Potion", + [20003] = "Devilsaur Claws", + [20004] = "Major Troll\'s Blood Potion", + [20005] = "Devilsaur Claws", + [20006] = "Circle of Hope", + [20007] = "Mageblood Potion", + [20008] = "Living Action Potion", + [20009] = "For the Light!", + [20010] = "The Horde\'s Hellscream", + [20011] = "Recipe: Mageblood Potion", + [20012] = "Recipe: Greater Dreamless Sleep", + [20013] = "Recipe: Living Action Potion", + [20014] = "Recipe: Major Troll\'s Blood Potion", + [20015] = "Elder Raptor Feathers", + [20016] = "Trophy Raptor Skull", + [20017] = "Perfect Courser Antler", + [20018] = "Angerclaw Grizzly Hide", + [20019] = "Tooth of Morphaz", + [20020] = "Bundle of Goods", + [20021] = "Gold Pirate Earring", + [20022] = "Azure Key", + [20023] = "Encoded Fragment", + [20024] = "Putrid Bile Duct", + [20025] = "Blood of Morphaz", + [20026] = "Rotting Flesh", + [20027] = "Healthy Courser Gland", + [20028] = "Glittering Dust", + [20029] = "Enchanted Coral", + [20030] = "Pet Rock", + [20031] = "Essence Mango", + [20032] = "Flowing Ritual Robes", + [20033] = "Zandalar Demoniac\'s Robe", + [20034] = "Zandalar Illusionist\'s Robe", + [20035] = "Glacial Spike", + [20036] = "Fire Ruby", + [20037] = "Arcane Crystal Pendant", + [20038] = "Mandokir\'s Sting", + [20039] = "Dark Iron Boots", + [20040] = "Plans: Dark Iron Boots", + [20041] = "Highlander\'s Plate Girdle", + [20042] = "Highlander\'s Lamellar Girdle", + [20043] = "Highlander\'s Chain Girdle", + [20044] = "Highlander\'s Mail Girdle", + [20045] = "Highlander\'s Leather Girdle", + [20046] = "Highlander\'s Lizardhide Girdle", + [20047] = "Highlander\'s Cloth Girdle", + [20048] = "Highlander\'s Plate Greaves", + [20049] = "Highlander\'s Lamellar Greaves", + [20050] = "Highlander\'s Chain Greaves", + [20051] = "Highlander\'s Mail Greaves", + [20052] = "Highlander\'s Leather Boots", + [20053] = "Highlander\'s Lizardhide Boots", + [20054] = "Highlander\'s Cloth Boots", + [20055] = "Highlander\'s Chain Pauldrons", + [20056] = "Highlander\'s Mail Pauldrons", + [20057] = "Highlander\'s Plate Spaulders", + [20058] = "Highlander\'s Lamellar Spaulders", + [20059] = "Highlander\'s Leather Shoulders", + [20060] = "Highlander\'s Lizardhide Shoulders", + [20061] = "Highlander\'s Epaulets", + [20062] = "Arathi Basin Enriched Ration", + [20063] = "Arathi Basin Field Ration", + [20064] = "Arathi Basin Iron Ration", + [20065] = "Arathi Basin Mageweave Bandage", + [20066] = "Arathi Basin Runecloth Bandage", + [20067] = "Arathi Basin Silk Bandage", + [20068] = "Deathguard\'s Cloak", + [20069] = "Ironbark Staff", + [20070] = "Sageclaw", + [20071] = "Talisman of Arathor", + [20072] = "Defiler\'s Talisman", + [20073] = "Cloak of the Honor Guard", + [20074] = "Heavy Crocolisk Stew", + [20075] = "Recipe: Heavy Crocolisk Stew", + [20076] = "Zandalar Signet of Mojo", + [20077] = "Zandalar Signet of Might", + [20078] = "Zandalar Signet of Serenity", + [20079] = "Spirit of Zanza", + [20080] = "Sheen of Zanza", + [20081] = "Swiftness of Zanza", + [20082] = "Woestave", + [20083] = "Hunting Spear", + [20084] = "Hunting Net", + [20085] = "Arcane Shard", + [20086] = "Dusksteel Throwing Knife", + [20087] = "Wavethrasher Scales", + [20088] = "Highlander\'s Chain Girdle", + [20089] = "Highlander\'s Chain Girdle", + [20090] = "Highlander\'s Chain Girdle", + [20091] = "Highlander\'s Chain Greaves", + [20092] = "Highlander\'s Chain Greaves", + [20093] = "Highlander\'s Chain Greaves", + [20094] = "Highlander\'s Cloth Boots", + [20095] = "Highlander\'s Cloth Boots", + [20096] = "Highlander\'s Cloth Boots", + [20097] = "Highlander\'s Cloth Girdle", + [20098] = "Highlander\'s Cloth Girdle", + [20099] = "Highlander\'s Cloth Girdle", + [20100] = "Highlander\'s Lizardhide Boots", + [20101] = "Highlander\'s Lizardhide Boots", + [20102] = "Highlander\'s Lizardhide Boots", + [20103] = "Highlander\'s Lizardhide Girdle", + [20104] = "Highlander\'s Lizardhide Girdle", + [20105] = "Highlander\'s Lizardhide Girdle", + [20106] = "Highlander\'s Lamellar Girdle", + [20107] = "Highlander\'s Lamellar Girdle", + [20108] = "Highlander\'s Lamellar Girdle", + [20109] = "Highlander\'s Lamellar Greaves", + [20110] = "Highlander\'s Lamellar Greaves", + [20111] = "Highlander\'s Lamellar Greaves", + [20112] = "Highlander\'s Leather Boots", + [20113] = "Highlander\'s Leather Boots", + [20114] = "Highlander\'s Leather Boots", + [20115] = "Highlander\'s Leather Girdle", + [20116] = "Highlander\'s Leather Girdle", + [20117] = "Highlander\'s Leather Girdle", + [20118] = "Highlander\'s Mail Girdle", + [20119] = "Highlander\'s Mail Girdle", + [20120] = "Highlander\'s Mail Girdle", + [20121] = "Highlander\'s Mail Greaves", + [20122] = "Highlander\'s Mail Greaves", + [20123] = "Highlander\'s Mail Greaves", + [20124] = "Highlander\'s Plate Girdle", + [20125] = "Highlander\'s Plate Girdle", + [20126] = "Highlander\'s Plate Girdle", + [20127] = "Highlander\'s Plate Greaves", + [20128] = "Highlander\'s Plate Greaves", + [20129] = "Highlander\'s Plate Greaves", + [20130] = "Diamond Flask", + [20131] = "Battle Tabard of the Defilers", + [20132] = "Arathor Battle Tabard", + [20133] = "Skyfury Gauntlets", + [20134] = "Skyfury Helm", + [20135] = "90 Epic Warrior Bracelets", + [20136] = "90 Epic Warrior Breastplate", + [20137] = "90 Epic Warrior Gauntlets", + [20138] = "90 Epic Warrior Helm", + [20139] = "90 Epic Warrior Legplates", + [20140] = "90 Epic Warrior Pauldrons", + [20141] = "90 Epic Warrior Sabatons", + [20142] = "90 Epic Warrior Waistband", + [20143] = "90 Epic Warrior Neck", + [20144] = "90 Epic Warrior Ring", + [20145] = "90 Epic Warrior Cloak", + [20146] = "90 Epic Warrior Gun", + [20149] = "90 Epic Warrior Axe", + [20150] = "Defiler\'s Chain Girdle", + [20151] = "Defiler\'s Chain Girdle", + [20152] = "Defiler\'s Chain Girdle", + [20153] = "Defiler\'s Chain Girdle", + [20154] = "Defiler\'s Chain Greaves", + [20155] = "Defiler\'s Chain Greaves", + [20156] = "Defiler\'s Chain Greaves", + [20157] = "Defiler\'s Chain Greaves", + [20158] = "Defiler\'s Chain Pauldrons", + [20159] = "Defiler\'s Cloth Boots", + [20160] = "Defiler\'s Cloth Boots", + [20161] = "Defiler\'s Cloth Boots", + [20162] = "Defiler\'s Cloth Boots", + [20163] = "Defiler\'s Cloth Girdle", + [20164] = "Defiler\'s Cloth Girdle", + [20165] = "Defiler\'s Cloth Girdle", + [20166] = "Defiler\'s Cloth Girdle", + [20167] = "Defiler\'s Lizardhide Boots", + [20168] = "Defiler\'s Lizardhide Boots", + [20169] = "Defiler\'s Lizardhide Boots", + [20170] = "Defiler\'s Lizardhide Boots", + [20171] = "Defiler\'s Lizardhide Girdle", + [20172] = "Defiler\'s Lizardhide Girdle", + [20173] = "Defiler\'s Lizardhide Girdle", + [20174] = "Defiler\'s Lizardhide Girdle", + [20175] = "Defiler\'s Lizardhide Shoulders", + [20176] = "Defiler\'s Epaulets", + [20177] = "Defiler\'s Lamellar Girdle", + [20178] = "Defiler\'s Lamellar Girdle", + [20179] = "Defiler\'s Lamellar Girdle", + [20180] = "Defiler\'s Lamellar Girdle", + [20181] = "Defiler\'s Lamellar Greaves", + [20182] = "Defiler\'s Lamellar Greaves", + [20183] = "Defiler\'s Lamellar Greaves", + [20184] = "Defiler\'s Lamellar Spaulders", + [20185] = "Defiler\'s Lamellar Greaves", + [20186] = "Defiler\'s Leather Boots", + [20187] = "Defiler\'s Leather Boots", + [20188] = "Defiler\'s Leather Boots", + [20189] = "Defiler\'s Leather Boots", + [20190] = "Defiler\'s Leather Girdle", + [20191] = "Defiler\'s Leather Girdle", + [20192] = "Defiler\'s Leather Girdle", + [20193] = "Defiler\'s Leather Girdle", + [20194] = "Defiler\'s Leather Shoulders", + [20195] = "Defiler\'s Mail Girdle", + [20196] = "Defiler\'s Mail Girdle", + [20197] = "Defiler\'s Mail Girdle", + [20198] = "Defiler\'s Mail Girdle", + [20199] = "Defiler\'s Mail Greaves", + [20200] = "Defiler\'s Mail Greaves", + [20201] = "Defiler\'s Mail Greaves", + [20202] = "Defiler\'s Mail Greaves", + [20203] = "Defiler\'s Mail Pauldrons", + [20204] = "Defiler\'s Plate Girdle", + [20205] = "Defiler\'s Plate Girdle", + [20206] = "Defiler\'s Plate Girdle", + [20207] = "Defiler\'s Plate Girdle", + [20208] = "Defiler\'s Plate Greaves", + [20209] = "Defiler\'s Plate Greaves", + [20210] = "Defiler\'s Plate Greaves", + [20211] = "Defiler\'s Plate Greaves", + [20212] = "Defiler\'s Plate Spaulders", + [20213] = "Belt of Shrunken Heads", + [20214] = "Mindfang", + [20215] = "Belt of Shriveled Heads", + [20216] = "Belt of Preserved Heads", + [20217] = "Belt of Tiny Heads", + [20218] = "Faded Hakkari Cloak", + [20219] = "Tattered Hakkari Cape", + [20220] = "Ironbark Staff", + [20221] = "Foror\'s Fabled Steed", + [20222] = "Defiler\'s Enriched Ration", + [20223] = "Defiler\'s Field Ration", + [20224] = "Defiler\'s Iron Ration", + [20225] = "Highlander\'s Enriched Ration", + [20226] = "Highlander\'s Field Ration", + [20227] = "Highlander\'s Iron Ration", + [20228] = "Defiler\'s Advanced Care Package", + [20229] = "Defiler\'s Basic Care Package", + [20230] = "Defiler\'s Standard Care Package", + [20231] = "Arathor Advanced Care Package", + [20232] = "Defiler\'s Mageweave Bandage", + [20233] = "Arathor Basic Care Package", + [20234] = "Defiler\'s Runecloth Bandage", + [20235] = "Defiler\'s Silk Bandage", + [20236] = "Arathor Standard Care Package", + [20237] = "Highlander\'s Mageweave Bandage", + [20238] = "90 Green Warrior Axe", + [20239] = "90 Green Warrior Bracelets", + [20240] = "90 Green Warrior Breastplate", + [20241] = "90 Green Warrior Cloak", + [20242] = "90 Green Warrior Gauntlets", + [20243] = "Highlander\'s Runecloth Bandage", + [20244] = "Highlander\'s Silk Bandage", + [20245] = "90 Green Warrior Gun", + [20246] = "90 Green Warrior Helm", + [20247] = "90 Green Warrior Legplates", + [20248] = "90 Green Warrior Neck", + [20249] = "90 Green Warrior Pauldrons", + [20250] = "90 Green Warrior Ring", + [20251] = "90 Green Warrior Sabatons", + [20252] = "90 Green Warrior Waistband", + [20253] = "Pattern: Warbear Harness", + [20254] = "Pattern: Warbear Woolies", + [20255] = "Whisperwalk Boots", + [20256] = "Warsong Gulch Ribbon of Sacrifice", + [20257] = "Seafury Gauntlets", + [20258] = "Zulian Ceremonial Staff", + [20259] = "Shadow Panther Hide Gloves", + [20260] = "Seafury Leggings", + [20261] = "Shadow Panther Hide Belt", + [20262] = "Seafury Boots", + [20263] = "Gurubashi Helm", + [20264] = "Peacekeeper Gauntlets", + [20265] = "Peacekeeper Boots", + [20266] = "Peacekeeper Leggings", + [20267] = "90 Epic Rogue Belt", + [20268] = "90 Epic Rogue Boots", + [20269] = "90 Epic Rogue Bracers", + [20270] = "90 Epic Rogue Cap", + [20271] = "90 Epic Rogue Gloves", + [20272] = "90 Epic Rogue Pants", + [20273] = "90 Epic Rogue Spaulders", + [20274] = "90 Epic Rogue Tunic", + [20275] = "90 Epic Rogue Neck", + [20276] = "90 Epic Rogue Cloak", + [20277] = "90 Epic Rogue Ring", + [20278] = "90 Epic Rogue Bow", + [20279] = "90 Epic Rogue Dagger", + [20280] = "63 Green Warrior Axe", + [20281] = "63 Green Warrior Bracelets", + [20282] = "63 Green Warrior Breastplate", + [20283] = "63 Green Warrior Cloak", + [20284] = "63 Green Warrior Gauntlets", + [20285] = "63 Green Warrior Gun", + [20286] = "63 Green Warrior Helm", + [20287] = "63 Green Warrior Legplates", + [20288] = "63 Green Warrior Neck", + [20289] = "63 Green Warrior Pauldrons", + [20290] = "63 Green Warrior Ring", + [20291] = "63 Green Warrior Sabatons", + [20292] = "63 Green Warrior Waistband", + [20294] = "90 Green Rogue Boots", + [20295] = "Blue Dragonscale Leggings", + [20296] = "Green Dragonscale Gauntlets", + [20297] = "90 Green Rogue Belt", + [20298] = "90 Green Rogue Boots", + [20299] = "90 Green Rogue Bow", + [20300] = "90 Green Rogue Bracers", + [20301] = "90 Green Rogue Cap", + [20302] = "90 Green Rogue Cloak", + [20303] = "90 Green Rogue Dagger", + [20304] = "90 Green Rogue Gloves", + [20305] = "90 Green Rogue Neck", + [20306] = "90 Green Rogue Pants", + [20307] = "90 Green Rogue Ring", + [20308] = "90 Green Rogue Spaulders", + [20309] = "90 Green Rogue Tunic", + [20310] = "Flayed Demon Skin", + [20311] = "63 Green Rogue Belt", + [20312] = "63 Green Rogue Boots", + [20313] = "63 Green Rogue Bow", + [20314] = "63 Green Rogue Bracers", + [20315] = "63 Green Rogue Cap", + [20316] = "63 Green Rogue Cloak", + [20317] = "63 Green Rogue Dagger", + [20318] = "63 Green Rogue Gloves", + [20319] = "63 Green Rogue Neck", + [20320] = "63 Green Rogue Pants", + [20321] = "63 Green Rogue Ring", + [20322] = "63 Green Rogue Spaulders", + [20323] = "63 Green Rogue Tunic", + [20324] = "90 Epic Frost Belt", + [20325] = "90 Epic Frost Bindings", + [20326] = "90 Epic Frost Boots", + [20327] = "90 Epic Frost Crown", + [20328] = "90 Epic Frost Gloves", + [20329] = "90 Epic Frost Leggings", + [20330] = "90 Epic Frost Mantle", + [20331] = "90 Epic Frost Robes", + [20332] = "90 Epic Frost Neck", + [20333] = "90 Epic Frost Ring", + [20334] = "90 Epic Frost Staff", + [20335] = "90 Epic Frost Wand", + [20336] = "90 Epic Frost Shroud", + [20337] = "Gnome Head on a Stick", + [20338] = "90 Green Frost Belt", + [20339] = "90 Green Frost Bindings", + [20340] = "90 Green Frost Boots", + [20341] = "90 Green Frost Crown", + [20342] = "90 Green Frost Gloves", + [20343] = "90 Green Frost Leggings", + [20344] = "90 Green Frost Mantle", + [20345] = "90 Green Frost Neck", + [20346] = "90 Green Frost Ring", + [20347] = "90 Green Frost Robes", + [20348] = "90 Green Frost Shroud", + [20349] = "90 Green Frost Staff", + [20350] = "90 Green Frost Wand", + [20351] = "63 Green Frost Belt", + [20352] = "63 Green Frost Bindings", + [20353] = "63 Green Frost Boots", + [20354] = "63 Green Frost Crown", + [20355] = "63 Green Frost Gloves", + [20356] = "63 Green Frost Leggings", + [20357] = "63 Green Frost Mantle", + [20358] = "63 Green Frost Neck", + [20359] = "63 Green Frost Ring", + [20360] = "63 Green Frost Robes", + [20361] = "63 Green Frost Shroud", + [20362] = "63 Green Frost Staff", + [20363] = "63 Green Frost Wand", + [20364] = "Test Ammo Lockbox", + [20367] = "Hunting Gear", + [20368] = "Bland Bow of Steadiness", + [20369] = "Azurite Fists", + [20370] = "Test Staff 90 epic", + [20371] = "Blue Murloc Egg", + [20372] = "Test Staff 77 epic", + [20373] = "Stonelash Scorpid Stinger", + [20374] = "Stonelash Pincer Stinger", + [20375] = "Stonelash Flayer Stinger", + [20376] = "Sand Skitterer Fang", + [20377] = "Rock Stalker Fang", + [20378] = "Twilight Tablet Fragment", + [20379] = "Noggle\'s Satchel", + [20380] = "Dreamscale Breastplate", + [20381] = "Dreamscale", + [20382] = "Pattern: Dreamscale Breastplate", + [20383] = "Head of the Broodlord Lashlayer", + [20384] = "Silithid Carapace Fragment", + [20385] = "Deathclasp\'s Pincer", + [20386] = "Dummy Mask", + [20387] = "Forsaken Stink Bomb Cluster", + [20388] = "Lollipop", + [20389] = "Candy Corn", + [20390] = "Candy Bar", + [20391] = "Flimsy Male Gnome Mask", + [20392] = "Flimsy Female Gnome Mask", + [20393] = "Treat Bag", + [20394] = "Twilight Lexicon - Chapter 1", + [20395] = "Twilight Lexicon - Chapter 2", + [20396] = "Twilight Lexicon - Chapter 3", + [20397] = "Hallowed Wand - Pirate", + [20398] = "Hallowed Wand - Ninja", + [20399] = "Hallowed Wand - Leper Gnome", + [20400] = "Pumpkin Bag", + [20401] = "Restored Twilight Tablet", + [20402] = "Agent of Nozdormu", + [20403] = "Proxy of Nozdormu", + [20404] = "Encrypted Twilight Text", + [20405] = "Decoded Tablet Transcription", + [20406] = "Twilight Cultist Mantle", + [20407] = "Twilight Cultist Robe", + [20408] = "Twilight Cultist Cowl", + [20409] = "Hallowed Wand - Ghost", + [20410] = "Hallowed Wand - Bat", + [20411] = "Hallowed Wand - Skeleton", + [20412] = "Monster - Polearm, PVPAlliance_A01", + [20413] = "Hallowed Wand - Random", + [20414] = "Hallowed Wand - Wisp", + [20415] = "The War of the Shifting Sands", + [20416] = "Crest of Beckoning: Fire", + [20417] = "Monster - Glaive - 2 Blade Silver (offhand)", + [20418] = "Crest of Beckoning: Thunder", + [20419] = "Crest of Beckoning: Stone", + [20420] = "Crest of Beckoning: Water", + [20422] = "Twilight Cultist Medallion of Station", + [20423] = "Sandy Scorpid Claw", + [20424] = "Sandworm Meat", + [20425] = "Advisor\'s Gnarled Staff", + [20426] = "Advisor\'s Ring", + [20427] = "Battle Healer\'s Cloak", + [20428] = "Caretaker\'s Cape", + [20429] = "Legionnaire\'s Band", + [20430] = "Legionnaire\'s Sword", + [20431] = "Lorekeeper\'s Ring", + [20432] = "Signet of Beckoning: Fire", + [20433] = "Signet of Beckoning: Thunder", + [20434] = "Lorekeeper\'s Staff", + [20435] = "Signet of Beckoning: Stone", + [20436] = "Signet of Beckoning: Water", + [20437] = "Outrider\'s Bow", + [20438] = "Outrunner\'s Bow", + [20439] = "Protector\'s Band", + [20440] = "Protector\'s Sword", + [20441] = "Scout\'s Blade", + [20442] = "Scout\'s Medallion", + [20443] = "Sentinel\'s Blade", + [20444] = "Sentinel\'s Medallion", + [20445] = "Test Defense Ring +120", + [20446] = "Test Defense Ring +80", + [20447] = "Scepter of Beckoning: Fire", + [20448] = "Scepter of Beckoning: Thunder", + [20449] = "Scepter of Beckoning: Stone", + [20450] = "Scepter of Beckoning: Water", + [20451] = "Twilight Cultist Ring of Lordship", + [20452] = "Smoked Desert Dumplings", + [20453] = "Geologist\'s Transcription Kit", + [20454] = "Hive\'Zora Rubbing", + [20455] = "Hive\'Ashi Rubbing", + [20456] = "Hive\'Regal Rubbing", + [20457] = "Hive\'Ashi Silithid Brain", + [20458] = "Hive\'Zora Silithid Brain", + [20459] = "Hive\'Regal Silithid Brain", + [20460] = "Brann Bronzebeard\'s Lost Letter", + [20461] = "Brann Bronzebeard\'s Lost Letter", + [20462] = "Hallow\'s End Medallion", + [20463] = "Glyphed Crystal Prism", + [20464] = "Glyphs of Calling", + [20465] = "Crystal Unlocking Mechanism", + [20466] = "Vyral\'s Signet Ring", + [20467] = "Torn Recipe Page", + [20468] = "Monster - Item, Orb - A01 Green", + [20469] = "Decoded True Believer Clippings", + [20470] = "Solanian\'s Scrying Orb", + [20472] = "Solanian\'s Journal", + [20474] = "Sunstrider Book Satchel", + [20475] = "Soul Gem", + [20476] = "Sandstalker Bracers", + [20477] = "Sandstalker Gauntlets", + [20478] = "Sandstalker Breastplate", + [20479] = "Spitfire Breastplate", + [20480] = "Spitfire Gauntlets", + [20481] = "Spitfire Bracers", + [20482] = "Arcane Sliver", + [20483] = "Tainted Arcane Sliver", + [20485] = "Duke\'s Seal", + [20487] = "Lok\'delar, Stave of the Ancient Keepers DEP", + [20488] = "Rhok\'delar, Longbow of the Ancient Keepers DEP", + [20489] = "Crown of the Council", + [20490] = "Ironforge Mint", + [20491] = "Undercity Mint", + [20492] = "Stormwind Nougat", + [20493] = "Orgrimmar Nougat", + [20494] = "Gnomeregan Gumdrop", + [20495] = "Darkspear Gumdrop", + [20496] = "Darnassus Marzipan", + [20497] = "Thunder Bluff Marzipan", + [20498] = "Silithid Chitin", + [20499] = "Broken Silithid Chitin", + [20500] = "Light Silithid Carapace", + [20501] = "Heavy Silithid Carapace", + [20502] = "Ironbark Shield", + [20503] = "Enamored Water Spirit", + [20504] = "Lightforged Blade", + [20505] = "Chivalrous Signet", + [20506] = "Pattern: Spitfire Bracers", + [20507] = "Pattern: Spitfire Gauntlets", + [20508] = "Pattern: Spitfire Breastplate", + [20509] = "Pattern: Sandstalker Bracers", + [20510] = "Pattern: Sandstalker Gauntlets", + [20511] = "Pattern: Sandstalker Breastplate", + [20512] = "Sanctified Orb", + [20513] = "Abyssal Crest", + [20514] = "Abyssal Signet", + [20515] = "Abyssal Scepter", + [20516] = "Bobbing Apple", + [20517] = "Razorsteel Shoulders", + [20518] = "Scroll: Create Crest of Beckoning", + [20519] = "Southsea Pirate Hat", + [20520] = "Dark Rune", + [20521] = "Fury Visor", + [20522] = "Feral Staff", + [20523] = "Shadowhide Leggings", + [20524] = "Shadowhide Leggings", + [20525] = "Earthen Sigil", + [20526] = "Scroll: Create Crest of Beckoning", + [20527] = "Scroll: Create Crest of Beckoning", + [20528] = "Scroll: Create Crest of Beckoning", + [20529] = "Robes of Servitude", + [20530] = "Robes of Servitude", + [20531] = "Scroll: Create Signet of Beckoning", + [20532] = "Scroll: Create Signet of Beckoning", + [20533] = "Scroll: Create Signet of Beckoning", + [20534] = "Abyss Shard", + [20535] = "Scroll: Create Signet of Beckoning", + [20536] = "Soul Harvester", + [20537] = "Runed Stygian Boots", + [20538] = "Runed Stygian Leggings", + [20539] = "Runed Stygian Belt", + [20540] = "Scroll: Create Scepter of Beckoning", + [20541] = "Decoded Twilight Text", + [20542] = "Scroll: Create Scepter of Beckoning", + [20543] = "Scroll: Create Scepter of Beckoning", + [20544] = "Scroll: Create Scepter of Beckoning", + [20545] = "Decoded Twilight Text", + [20546] = "Pattern: Runed Stygian Leggings", + [20547] = "Pattern: Runed Stygian Boots", + [20548] = "Pattern: Runed Stygian Belt", + [20549] = "Darkrune Gauntlets", + [20550] = "Darkrune Breastplate", + [20551] = "Darkrune Helm", + [20552] = "Decoded Twilight Text", + [20553] = "Plans: Darkrune Gauntlets", + [20554] = "Plans: Darkrune Breastplate", + [20555] = "Plans: Darkrune Helm", + [20556] = "Wildstaff", + [20557] = "Hallow\'s End Pumpkin Treat", + [20558] = "Warsong Gulch Mark of Honor", + [20559] = "Arathi Basin Mark of Honor", + [20560] = "Alterac Valley Mark of Honor", + [20561] = "Flimsy Male Dwarf Mask", + [20562] = "Flimsy Female Dwarf Mask", + [20563] = "Flimsy Female Nightelf Mask", + [20564] = "Flimsy Male Nightelf Mask", + [20565] = "Flimsy Female Human Mask", + [20566] = "Flimsy Male Human Mask", + [20567] = "Flimsy Female Troll Mask", + [20568] = "Flimsy Male Troll Mask", + [20569] = "Flimsy Female Orc Mask", + [20570] = "Flimsy Male Orc Mask", + [20571] = "Flimsy Female Tauren Mask", + [20572] = "Flimsy Male Tauren Mask", + [20573] = "Flimsy Male Undead Mask", + [20574] = "Flimsy Female Undead Mask", + [20575] = "Black Whelp Tunic", + [20576] = "Pattern: Black Whelp Tunic", + [20577] = "Nightmare Blade", + [20578] = "Emerald Dragonfang", + [20579] = "Green Dragonskin Cloak", + [20580] = "Hammer of Bestial Fury", + [20581] = "Staff of Rampant Growth", + [20582] = "Trance Stone", + [20583] = "Sturdy Female Dwarf Mask", + [20584] = "Sturdy Female Gnome Mask", + [20585] = "Sturdy Female Human Mask", + [20586] = "Sturdy Female Nightelf Mask", + [20587] = "Sturdy Female Orc Mask", + [20588] = "Sturdy Female Tauren Mask", + [20589] = "Sturdy Female Troll Mask", + [20590] = "Sturdy Female Undead Mask", + [20591] = "Sturdy Male Dwarf Mask", + [20592] = "Sturdy Male Gnome Mask", + [20593] = "Sturdy Male Human Mask", + [20594] = "Sturdy Male Nightelf Mask", + [20595] = "Sturdy Male Orc Mask", + [20596] = "Sturdy Male Tauren Mask", + [20597] = "Sturdy Male Troll Mask", + [20598] = "Sturdy Male Undead Mask", + [20599] = "Polished Ironwood Crossbow", + [20600] = "Malfurion\'s Signet Ring", + [20601] = "Sack of Spoils", + [20602] = "Chest of Spoils", + [20603] = "Bag of Spoils", + [20604] = "Stink Bomb Cleaner", + [20605] = "Rotten Eggs", + [20606] = "Amber Voodoo Feather", + [20607] = "Blue Voodoo Feather", + [20608] = "Green Voodoo Feather", + [20609] = "Voodoo Feathers", + [20610] = "Bloodshot Spider Eye", + [20611] = "Thick Black Claw", + [20612] = "Inert Scourgestone", + [20613] = "Rotting Wood", + [20614] = "Bloodvenom Essence", + [20615] = "Dragonspur Wraps", + [20616] = "Dragonbone Wristguards", + [20617] = "Ancient Corroded Leggings", + [20618] = "Gloves of Delusional Power", + [20619] = "Acid Inscribed Greaves", + [20620] = "Holy Mightstone", + [20621] = "Boots of the Endless Moor", + [20622] = "Dragonheart Necklace", + [20623] = "Circlet of Restless Dreams", + [20624] = "Ring of the Unliving", + [20625] = "Belt of the Dark Bog", + [20626] = "Black Bark Wristbands", + [20627] = "Dark Heart Pants", + [20628] = "Deviate Growth Cap", + [20629] = "Malignant Footguards", + [20630] = "Gauntets of the Shining Light", + [20631] = "Mendicant\'s Slippers", + [20632] = "Mindtear Band", + [20633] = "Unnatural Leather Spaulders", + [20634] = "Boots of Fright", + [20635] = "Jade Inlaid Vestments", + [20636] = "Hibernation Crystal", + [20637] = "Acid Inscribed Pauldrons", + [20638] = "Leggings of the Demented Mind", + [20639] = "Strangely Glyphed Legplates", + [20640] = "Southsea Head Bucket", + [20641] = "Southsea Mojo Boots", + [20642] = "Antiquated Nobleman\'s Tunic", + [20643] = "Undercity Reservist\'s Cap", + [20644] = "Nightmare Engulfed Object", + [20645] = "Nature\'s Whisper", + [20646] = "Sandstrider\'s Mark", + [20647] = "Black Crystal Dagger", + [20648] = "Cold Forged Hammer", + [20649] = "Sunprism Pendant", + [20650] = "Desert Wind Gauntlets", + [20651] = "Orange Murloc Egg", + [20652] = "Abyssal Cloth Slippers", + [20653] = "Abyssal Plate Gauntlets", + [20654] = "Amethyst War Staff", + [20655] = "Abyssal Cloth Handwraps", + [20656] = "Abyssal Mail Sabatons", + [20657] = "Crystal Tipped Stiletto", + [20658] = "Abyssal Leather Boots", + [20659] = "Abyssal Mail Handguards", + [20660] = "Stonecutting Glaive", + [20661] = "Abyssal Leather Gloves", + [20662] = "Abyssal Plate Greaves", + [20663] = "Deep Strike Bow", + [20664] = "Abyssal Cloth Sash", + [20665] = "Abyssal Leather Leggings", + [20666] = "Hardened Steel Warhammer", + [20667] = "Abyssal Leather Belt", + [20668] = "Abyssal Mail Legguards", + [20669] = "Darkstone Claymore", + [20670] = "Abyssal Mail Clutch", + [20671] = "Abyssal Plate Legplates", + [20672] = "Sparkling Crystal Wand", + [20673] = "Abyssal Plate Girdle", + [20674] = "Abyssal Cloth Pants", + [20675] = "Soulrender", + [20676] = "Decoded Twilight Text", + [20677] = "Decoded Twilight Text", + [20678] = "Decoded Twilight Text", + [20679] = "Decoded Twilight Text", + [20680] = "Abyssal Mail Pauldrons", + [20681] = "Abyssal Leather Bracers", + [20682] = "Elemental Focus Band", + [20683] = "Abyssal Plate Epaulets", + [20684] = "Abyssal Mail Armguards", + [20685] = "Wavefront Necklace", + [20686] = "Abyssal Cloth Amice", + [20687] = "Abyssal Plate Vambraces", + [20688] = "Earthen Guard", + [20689] = "Abyssal Leather Shoulders", + [20690] = "Abyssal Cloth Wristbands", + [20691] = "Windshear Cape", + [20692] = "Multicolored Band", + [20693] = "Weighted Cloak", + [20694] = "Glowing Black Orb", + [20695] = "Abyssal War Beads", + [20696] = "Crystal Spiked Maul", + [20697] = "Crystalline Threaded Cape", + [20698] = "Elemental Attuned Blade", + [20699] = "Cenarion Reservist\'s Legplates", + [20700] = "Cenarion Reservist\'s Legplates", + [20701] = "Cenarion Reservist\'s Legguards", + [20702] = "Cenarion Reservist\'s Legguards", + [20703] = "Cenarion Reservist\'s Leggings", + [20704] = "Cenarion Reservist\'s Leggings", + [20705] = "Cenarion Reservist\'s Pants", + [20706] = "Cenarion Reservist\'s Pants", + [20707] = "Cenarion Reservist\'s Pants", + [20708] = "Tightly Sealed Trunk", + [20709] = "Rumsey Rum Light", + [20710] = "Crystal Encrusted Greaves", + [20711] = "Crystal Lined Greaves", + [20712] = "Wastewalker\'s Gauntlets", + [20713] = "Desertstalkers\'s Gauntlets", + [20714] = "Sandstorm Boots", + [20715] = "Dunestalker\'s Boots", + [20716] = "Sandworm Skin Gloves", + [20717] = "Desert Bloom Gloves", + [20718] = "Monster - Staff, Jeweled Yellow Staff w/Low Purple Glow", + [20719] = "Monster - Staff, Jeweled D01/B02 Yellow w/Low Red Flame", + [20720] = "Dark Whisper Blade", + [20721] = "Band of the Cultist", + [20722] = "Crystal Slugthrower", + [20723] = "Brann\'s Trusty Pick", + [20724] = "Corrupted Blackwood Staff", + [20725] = "Nexus Crystal", + [20726] = "Formula: Enchant Gloves - Threat", + [20727] = "Formula: Enchant Gloves - Shadow Power", + [20728] = "Formula: Enchant Gloves - Frost Power", + [20729] = "Formula: Enchant Gloves - Fire Power", + [20730] = "Formula: Enchant Gloves - Healing Power", + [20731] = "Formula: Enchant Gloves - Superior Agility", + [20732] = "Formula: Enchant Cloak - Greater Fire Resistance", + [20733] = "Formula: Enchant Cloak - Greater Nature Resistance", + [20734] = "Formula: Enchant Cloak - Stealth", + [20735] = "Formula: Enchant Cloak - Subtlety", + [20736] = "Formula: Enchant Cloak - Dodge", + [20737] = "Singed Corestone", + [20738] = "Monster - Mace, Scepter of the Shifting Sands", + [20739] = "Deadwood Headdress Feather DEPRECATED", + [20740] = "Winterfall Spirit Beads DEPRECATED", + [20741] = "Deadwood Ritual Totem", + [20742] = "Winterfall Ritual Totem", + [20744] = "Minor Wizard Oil", + [20745] = "Minor Mana Oil", + [20746] = "Lesser Wizard Oil", + [20747] = "Lesser Mana Oil", + [20748] = "Brilliant Mana Oil", + [20749] = "Brilliant Wizard Oil", + [20750] = "Wizard Oil", + [20752] = "Formula: Minor Mana Oil", + [20753] = "Formula: Lesser Wizard Oil", + [20754] = "Formula: Lesser Mana Oil", + [20755] = "Formula: Wizard Oil", + [20756] = "Formula: Brilliant Wizard Oil", + [20757] = "Formula: Brilliant Mana Oil", + [20758] = "Formula: Minor Wizard Oil", + [20761] = "Recipe: Transmute Elemental Fire", + [20763] = "Broken Weapon", + [20766] = "Slimy Bag", + [20767] = "Scum Covered Bag", + [20768] = "Oozing Bag", + [20769] = "Disgusting Oozeling", + [20770] = "Bubbling Green Ichor", + [20800] = "Cenarion Logistics Badge", + [20801] = "Cenarion Tactical Badge", + [20802] = "Cenarion Combat Badge", + [20803] = "Twilight Battle Orders", + [20805] = "Followup Logistics Assignment", + [20806] = "Logistics Task Briefing X", + [20807] = "Logistics Task Briefing I", + [20808] = "Combat Assignment", + [20809] = "Tactical Assignment", + [20810] = "Signed Field Duty Papers", + [20814] = "Master\'s Throwing Dagger", + [20834] = "Ornate Spyglass XT", + [20844] = "Deadly Poison V", + [20858] = "Stone Scarab", + [20859] = "Gold Scarab", + [20860] = "Silver Scarab", + [20861] = "Bronze Scarab", + [20862] = "Crystal Scarab", + [20863] = "Clay Scarab", + [20864] = "Bone Scarab", + [20865] = "Ivory Scarab", + [20866] = "Azure Idol", + [20867] = "Onyx Idol", + [20868] = "Lambent Idol", + [20869] = "Amber Idol", + [20870] = "Jasper Idol", + [20871] = "Obsidian Idol", + [20872] = "Vermillion Idol", + [20873] = "Alabaster Idol", + [20874] = "Idol of the Sun", + [20875] = "Idol of Night", + [20876] = "Idol of Death", + [20877] = "Idol of the Sage", + [20878] = "Idol of Rebirth", + [20879] = "Idol of Life", + [20880] = "Golden Token", + [20881] = "Idol of Strife", + [20882] = "Idol of War", + [20883] = "Qiraji Glyphed Jewel", + [20884] = "Qiraji Magisterial Ring", + [20885] = "Qiraji Martial Drape", + [20886] = "Qiraji Spiked Hilt", + [20887] = "Qiraji Engraved Jewel", + [20888] = "Qiraji Ceremonial Ring", + [20889] = "Qiraji Regal Drape", + [20890] = "Qiraji Ornate Hilt", + [20905] = "Festival of Nian Firework", + [20908] = "Festival of Nian Firework", + [20926] = "Vek\'nilash\'s Circlet", + [20927] = "Ouro\'s Intact Hide", + [20928] = "Qiraji Bindings of Command", + [20929] = "Carapace of the Old God", + [20930] = "Vek\'lor\'s Diadem", + [20931] = "Skin of the Great Sandworm", + [20932] = "Qiraji Bindings of Dominance", + [20933] = "Husk of the Old God", + [20936] = "Qiraji Blessed Jewel", + [20937] = "Qiraji Encased Jewel", + [20939] = "Logistics Task Briefing II", + [20940] = "Logistics Task Briefing III", + [20941] = "Combat Task Briefing XII", + [20942] = "Combat Task Briefing III", + [20943] = "Tactical Task Briefing X", + [20944] = "Tactical Task Briefing IX", + [20945] = "Tactical Task Briefing II", + [20946] = "Tactical Task Briefing III", + [20947] = "Tactical Task Briefing IV", + [20948] = "Tactical Task Briefing V", + [20949] = "Magical Ledger", + [20951] = "Narain\'s Scrying Goggles", + [21023] = "Dirge\'s Kickin\' Chimaerok Chops", + [21024] = "Chimaerok Tenderloin", + [21025] = "Recipe: Dirge\'s Kickin\' Chimaerok Chops", + [21027] = "Lakmaeran\'s Carcass", + [21028] = "500 Pound Chicken", + [21029] = "Ransom Letter", + [21030] = "Darnassus Kimchi Pie", + [21031] = "Cabbage Kimchi", + [21032] = "Meridith\'s Love Letter", + [21033] = "Radish Kimchi", + [21037] = "Crude Map", + [21038] = "Hardpacked Snowball", + [21039] = "Narain\'s Turban", + [21040] = "Narain\'s Robe", + [21041] = "Bag of Gold", + [21042] = "Narain\'s Special Kit", + [21043] = "Mysterious Envelope", + [21044] = "Reindeer Reins", + [21071] = "Raw Sagefish", + [21072] = "Smoked Sagefish", + [21099] = "Recipe: Smoked Sagefish", + [21100] = "Coin of Ancestry", + [21101] = "Staff of Spell Penetration - Fire (TEST)", + [21102] = "Staff of Spell Penetration - Frost (TEST)", + [21103] = "Draconic for Dummies", + [21104] = "Draconic for Dummies", + [21105] = "Draconic for Dummies", + [21106] = "Draconic for Dummies", + [21107] = "Draconic for Dummies", + [21108] = "Draconic for Dummies", + [21109] = "Draconic for Dummies", + [21110] = "Draconic for Dummies", + [21111] = "Draconic For Dummies: Volume II", + [21112] = "Magical Book Binding", + [21113] = "Watertight Trunk", + [21114] = "Rumsey Rum Dark", + [21115] = "Defiler\'s Talisman", + [21116] = "Defiler\'s Talisman", + [21117] = "Talisman of Arathor", + [21118] = "Talisman of Arathor", + [21119] = "Talisman of Arathor", + [21120] = "Defiler\'s Talisman", + [21121] = "Monster - Item, Flower - Purple", + [21122] = "Monster - Dagger, Korean A01 Black", + [21123] = "Monster - Item, Flower - White", + [21124] = "Ahn\'Qiraj Wand [PH]", + [21125] = "Ahn\'Qiraj Staff [PH]", + [21126] = "Death\'s Sting", + [21127] = "Ahn\'Qiraj Mace [PH]", + [21128] = "Staff of the Qiraji Prophets", + [21129] = "Monster - Axe, Doctor Weavil", + [21130] = "Diary of Weavil", + [21131] = "Followup Combat Assignment", + [21132] = "Logistics Assignment", + [21133] = "Followup Tactical Assignment", + [21134] = "Dark Edge of Insanity", + [21135] = "Assassin\'s Throwing Axe", + [21136] = "Arcanite Buoy", + [21137] = "Blue Scepter Shard", + [21138] = "Red Scepter Shard", + [21139] = "Green Scepter Shard", + [21140] = "Auction Stationery", + [21141] = "Destroyed Red Scepter Shard", + [21142] = "From the Desk of Lord Victor Nefarius", + [21143] = "Unsigned Field Duty Papers", + [21144] = "Demon Summoning Torch", + [21145] = "Essence of Xandivious", + [21146] = "Fragment of the Nightmare\'s Corruption", + [21147] = "Fragment of the Nightmare\'s Corruption", + [21148] = "Fragment of the Nightmare\'s Corruption", + [21149] = "Fragment of the Nightmare\'s Corruption", + [21150] = "Iron Bound Trunk", + [21151] = "Rumsey Rum Black Label", + [21152] = "The Nightmare\'s Corruption", + [21153] = "Raw Greater Sagefish", + [21154] = "Festival Dress", + [21155] = "Timbermaw Offering of Peace", + [21156] = "Scarab Bag", + [21157] = "Festive Green Dress", + [21158] = "Hive\'Zora Scout Report", + [21159] = "Hive\'Zora Scout Orders", + [21160] = "Hive\'Regal Scout Report", + [21161] = "Hive\'Ashi Scout Report", + [21162] = "Bloated Oily Blackmouth", + [21163] = "Bloated Firefin", + [21164] = "Bloated Rockscale Cod", + [21165] = "Tactical Task Briefing VI", + [21166] = "Tactical Task Briefing VII", + [21167] = "Tactical Task Briefing VIII", + [21168] = "Baby Shark", + [21169] = "Empty Festive Mug", + [21170] = "Filled Festive Mug", + [21171] = "Filled Festive Mug", + [21172] = "Empty Festive Mugg", + [21173] = "Empty Festive Mug", + [21174] = "Empty Festive Mug", + [21175] = "The Scepter of the Shifting Sands", + [21176] = "Black Qiraji Resonating Crystal", + [21177] = "Symbol of Kings", + [21178] = "Gloves of Earthen Power", + [21179] = "Band of Earthen Wrath", + [21180] = "Earthstrike", + [21181] = "Grace of Earth", + [21182] = "Band of Earthen Might", + [21183] = "Earthpower Vest", + [21184] = "Deeprock Bracers", + [21185] = "Earthcalm Orb", + [21186] = "Rockfury Bracers", + [21187] = "Earthweave Cloak", + [21188] = "Fist of Cenarius", + [21189] = "Might of Cenarius", + [21190] = "Wrath of Cenarius", + [21191] = "Carefully Wrapped Present", + [21192] = "Monster - Axe, 2H UBER Blackwing", + [21193] = "D\'Sak\'s Sack", + [21194] = "D\'Sak\'s Big Sack", + [21195] = "D\'Sak\'s Sacktastic", + [21196] = "Signet Ring of the Bronze Dragonflight", + [21197] = "Signet Ring of the Bronze Dragonflight", + [21198] = "Signet Ring of the Bronze Dragonflight", + [21199] = "Signet Ring of the Bronze Dragonflight", + [21200] = "Signet Ring of the Bronze Dragonflight", + [21201] = "Signet Ring of the Bronze Dragonflight", + [21202] = "Signet Ring of the Bronze Dragonflight", + [21203] = "Signet Ring of the Bronze Dragonflight", + [21204] = "Signet Ring of the Bronze Dragonflight", + [21205] = "Signet Ring of the Bronze Dragonflight", + [21206] = "Signet Ring of the Bronze Dragonflight", + [21207] = "Signet Ring of the Bronze Dragonflight", + [21208] = "Signet Ring of the Bronze Dragonflight", + [21209] = "Signet Ring of the Bronze Dragonflight", + [21210] = "Signet Ring of the Bronze Dragonflight", + [21211] = "Pouch of Reindeer Dust", + [21212] = "Fresh Holly", + [21213] = "Preserved Holly", + [21214] = "Tome of Frostbolt XI", + [21215] = "Graccu\'s Mince Meat Fruitcake", + [21216] = "Smokywood Pastures Extra-Special Gift", + [21217] = "Sagefish Delight", + [21218] = "Blue Qiraji Resonating Crystal", + [21219] = "Recipe: Sagefish Delight", + [21220] = "Head of Ossirian the Unscarred", + [21221] = "Eye of C\'Thun", + [21222] = "Armored Chitin", + [21223] = "Black Stone", + [21224] = "Ancient Armor Fragment", + [21225] = "Heavy Silithid Husk", + [21226] = "Runic Stone", + [21227] = "Ancient Hero\'s Skull", + [21228] = "Mithril Bound Trunk", + [21229] = "Qiraji Lord\'s Insignia", + [21230] = "Ancient Qiraji Artifact", + [21232] = "Imperial Qiraji Armaments", + [21235] = "Winter Veil Roast", + [21236] = "Winter Veil Loaf", + [21237] = "Imperial Qiraji Regalia", + [21238] = "Winter Veil Cookie UNUSED", + [21240] = "Winter Veil Candy", + [21241] = "Winter Veil Eggnog", + [21242] = "Blessed Qiraji War Axe", + [21243] = "Bloated Mightfish", + [21244] = "Blessed Qiraji Pugio", + [21245] = "Tactical Task Briefing I", + [21246] = "Combat Task Briefing I", + [21247] = "Combat Task Briefing II", + [21248] = "Combat Task Briefing IV", + [21249] = "Combat Task Briefing V", + [21250] = "Combat Task Briefing VI", + [21251] = "Combat Task Briefing VII", + [21252] = "Combat Task Briefing VIII", + [21253] = "Combat Task Briefing IX", + [21254] = "Winter Veil Cookie", + [21255] = "Combat Task Briefing X", + [21256] = "Combat Task Briefing XI", + [21257] = "Logistics Task Briefing IV", + [21258] = "Logistics Task Briefing IV", + [21259] = "Logistics Task Briefing V", + [21260] = "Logistics Task Briefing VI", + [21261] = "Logistics Task Briefing VI", + [21262] = "Logistics Task Briefing VIII", + [21263] = "Logistics Task Briefing VII", + [21264] = "Logistics Task Briefing VII", + [21265] = "Logistics Task Briefing IX", + [21266] = "Logistics Assignment", + [21267] = "Toasting Goblet", + [21268] = "Blessed Qiraji War Hammer", + [21269] = "Blessed Qiraji Bulwark", + [21270] = "Gently Shaken Gift", + [21271] = "Gently Shaken Gift", + [21272] = "Blessed Qiraji Musket", + [21273] = "Blessed Qiraji Acolyte Staff", + [21274] = "Test Stackable Items", + [21275] = "Blessed Qiraji Augur Staff", + [21276] = "Blessed Qiraji Naturalist Staff UNUSED", + [21277] = "Tranquil Mechanical Yeti", + [21278] = "Stormshroud Gloves", + [21279] = "Tome of Fireball XII", + [21280] = "Tome of Arcane Missiles VIII", + [21281] = "Grimoire of Shadow Bolt X", + [21282] = "Grimoire of Immolate VIII", + [21283] = "Grimoire of Corruption VII", + [21284] = "Codex of Greater Heal V", + [21285] = "Codex of Renew X", + [21286] = "Monster - Axe, 2H Large Double Bladed, Gold", + [21287] = "Codex of Prayer of Healing V", + [21288] = "Libram: Blessing of Wisdom VI", + [21289] = "Libram: Blessing of Might VII", + [21290] = "Libram: Holy Light IX", + [21291] = "Tablet of Healing Wave X", + [21292] = "Tablet of Strength of Earth Totem V", + [21293] = "Tablet of Grace of Air Totem III", + [21294] = "Book of Healing Touch XI", + [21295] = "Book of Starfire VII", + [21296] = "Book of Rejuvenation XI", + [21297] = "Manual of Heroic Strike IX", + [21298] = "Manual of Battle Shout VII", + [21299] = "Manual of Revenge VI", + [21300] = "Handbook of Backstab IX", + [21301] = "Green Helper Box", + [21302] = "Handbook of Deadly Poison V", + [21303] = "Handbook of Feint V", + [21304] = "Guide: Multi-Shot V", + [21305] = "Red Helper Box", + [21306] = "Guide: Serpent Sting IX", + [21307] = "Guide: Aspect of the Hawk VII", + [21308] = "Jingling Bell", + [21309] = "Snowman Kit", + [21310] = "Gaily Wrapped Present", + [21311] = "Earth Warder\'s Vest", + [21312] = "Belt of the Den Watcher", + [21313] = "D\'Sak\'s Small bag", + [21314] = "Metzen\'s Letters and Notes", + [21315] = "Smokywood Satchel", + [21316] = "Leggings of the Ursa", + [21317] = "Helm of the Pathfinder", + [21318] = "Earth Warder\'s Gloves", + [21319] = "Gloves of the Pathfinder", + [21320] = "Vest of the Den Watcher", + [21321] = "Red Qiraji Resonating Crystal", + [21322] = "Ursa\'s Embrace", + [21323] = "Green Qiraji Resonating Crystal", + [21324] = "Yellow Qiraji Resonating Crystal", + [21325] = "Mechanical Greench", + [21326] = "Defender of the Timbermaw", + [21327] = "Ticking Present", + [21328] = "Wand of Holiday Cheer", + [21329] = "Conqueror\'s Crown", + [21330] = "Conqueror\'s Spaulders", + [21331] = "Conqueror\'s Breastplate", + [21332] = "Conqueror\'s Legguards", + [21333] = "Conqueror\'s Greaves", + [21334] = "Doomcaller\'s Robes", + [21335] = "Doomcaller\'s Mantle", + [21336] = "Doomcaller\'s Trousers", + [21337] = "Doomcaller\'s Circlet", + [21338] = "Doomcaller\'s Footwraps", + [21339] = "Doomcaller\'s Handwraps [PH]", + [21340] = "Soul Pouch", + [21341] = "Felcloth Bag", + [21342] = "Core Felcloth Bag", + [21343] = "Enigma Robes", + [21344] = "Enigma Boots", + [21345] = "Enigma Shoulderpads", + [21346] = "Enigma Leggings", + [21347] = "Enigma Circlet", + [21348] = "Tiara of the Oracle", + [21349] = "Footwraps of the Oracle", + [21350] = "Mantle of the Oracle", + [21351] = "Vestments of the Oracle", + [21352] = "Trousers of the Oracle", + [21353] = "Genesis Helm", + [21354] = "Genesis Shoulderpads", + [21355] = "Genesis Boots", + [21356] = "Genesis Trousers", + [21357] = "Genesis Vest", + [21358] = "Pattern: Soul Pouch", + [21359] = "Deathdealer\'s Boots", + [21360] = "Deathdealer\'s Helm", + [21361] = "Deathdealer\'s Spaulders", + [21362] = "Deathdealer\'s Leggings", + [21363] = "Festive Gift", + [21364] = "Deathdealer\'s Vest", + [21365] = "Striker\'s Footguards", + [21366] = "Striker\'s Diadem", + [21367] = "Striker\'s Pauldrons", + [21368] = "Striker\'s Leggings", + [21369] = "Pattern: Felcloth Bag", + [21370] = "Striker\'s Hauberk", + [21371] = "Pattern: Core Felcloth Bag", + [21372] = "Stormcaller\'s Diadem", + [21373] = "Stormcaller\'s Footguards", + [21374] = "Stormcaller\'s Hauberk", + [21375] = "Stormcaller\'s Leggings", + [21376] = "Stormcaller\'s Pauldrons", + [21377] = "Deadwood Headdress Feather", + [21378] = "Logistics Task Briefing I", + [21379] = "Logistics Task Briefing II", + [21380] = "Logistics Task Briefing III", + [21381] = "Logistics Task Briefing IX", + [21382] = "Logistics Task Briefing V", + [21383] = "Winterfall Spirit Beads", + [21384] = "Logistics Task Briefing VIII", + [21385] = "Logistics Task Briefing X", + [21386] = "Followup Logistics Assignment", + [21387] = "Avenger\'s Crown", + [21388] = "Avenger\'s Greaves", + [21389] = "Avenger\'s Breastplate", + [21390] = "Avenger\'s Legguards", + [21391] = "Avenger\'s Pauldrons", + [21392] = "Sickle of Unyielding Strength", + [21393] = "Signet of Unyielding Strength", + [21394] = "Drape of Unyielding Strength", + [21395] = "Blade of Eternal Justice", + [21396] = "Ring of Eternal Justice", + [21397] = "Cape of Eternal Justice", + [21398] = "Hammer of the Gathering Storm", + [21399] = "Ring of the Gathering Storm", + [21400] = "Cloak of the Gathering Storm", + [21401] = "Scythe of the Unseen Path", + [21402] = "Signet of the Unseen Path", + [21403] = "Cloak of the Unseen Path", + [21404] = "Dagger of Veiled Shadows", + [21405] = "Band of Veiled Shadows", + [21406] = "Cloak of Veiled Shadows", + [21407] = "Mace of Unending Life", + [21408] = "Band of Unending Life", + [21409] = "Cloak of Unending Life", + [21410] = "Gavel of Infinite Wisdom", + [21411] = "Ring of Infinite Wisdom", + [21412] = "Shroud of Infinite Wisdom", + [21413] = "Blade of Vaulted Secrets", + [21414] = "Band of Vaulted Secrets", + [21415] = "Drape of Vaulted Secrets", + [21416] = "Kris of Unspoken Names", + [21417] = "Ring of Unspoken Names", + [21418] = "Shroud of Unspoken Names", + [21419] = "AHNQIRAJ TEST ITEM A CLOTH LEGS", + [21420] = "AHNQIRAJ TEST ITEM B LEATHER CHEST", + [21421] = "AHNQIRAJ TEST ITEM C MAIL CHEST", + [21422] = "AHNQIRAJ TEST ITEM D PLATE CHEST", + [21423] = "AHNQIRAJ TEST ITEM B LEATHER PANTS", + [21424] = "AHNQIRAJ TEST ITEM B LEATHER SHOULDER", + [21425] = "AHNQIRAJ TEST ITEM B LEATHER BELT", + [21426] = "AHNQIRAJ TEST ITEM B LEATHER HELM", + [21427] = "AHNQIRAJ TEST ITEM B LEATHER BOOTS", + [21428] = "AHNQIRAJ TEST ITEM B LEATHER GAUNTLETS", + [21429] = "AHNQIRAJ TEST ITEM A CLOTH BELT", + [21430] = "AHNQIRAJ TEST ITEM A CLOTH ROBE", + [21431] = "AHNQIRAJ TEST ITEM A CLOTH FEET", + [21432] = "AHNQIRAJ TEST ITEM B LEATHER BRACER", + [21433] = "AHNQIRAJ TEST ITEM A CLOTH BRACER", + [21434] = "AHNQIRAJ TEST ITEM A CLOTH HELM", + [21435] = "AHNQIRAJ TEST ITEM A CLOTH SHOULDERS", + [21436] = "Alliance Commendation Signet", + [21437] = "AHNQIRAJ TEST ITEM A CLOTH GLOVES", + [21438] = "Horde Commendation Signet", + [21439] = "AHNQIRAJ TEST ITEM D PLATE HELM", + [21440] = "AHNQIRAJ TEST ITEM D PLATE LEGS", + [21441] = "AHNQIRAJ TEST ITEM D PLATE BELT", + [21442] = "AHNQIRAJ TEST ITEM D PLATE BOOTS", + [21443] = "AHNQIRAJ TEST ITEM D PLATE SHOULDERS", + [21444] = "AHNQIRAJ TEST ITEM D PLATE GLOVES", + [21445] = "AHNQIRAJ TEST ITEM D PLATE BRACER", + [21446] = "AHNQIRAJ TEST ITEM C MAIL HELM", + [21447] = "AHNQIRAJ TEST ITEM C MAIL SHOULDERS", + [21448] = "AHNQIRAJ TEST ITEM C MAIL LEGS", + [21449] = "AHNQIRAJ TEST ITEM C MAIL BOOTS", + [21450] = "AHNQIRAJ TEST ITEM C MAIL GLOVES", + [21451] = "AHNQIRAJ TEST ITEM C MAIL BELT", + [21452] = "Staff of the Ruins", + [21453] = "Mantle of the Horusath", + [21454] = "Runic Stone Shoulders", + [21455] = "Southwind Helm", + [21456] = "Sandstorm Cloak", + [21457] = "Bracers of Brutality", + [21458] = "Gauntlets of New Life", + [21459] = "Crossbow of Imminent Doom", + [21460] = "Helm of Domination", + [21461] = "Leggings of the Black Blizzard", + [21462] = "Gloves of Dark Wisdom", + [21463] = "Ossirian\'s Binding", + [21464] = "Shackles of the Unscarred", + [21465] = "Monster - Axe, Insano", + [21466] = "Stinger of Ayamiss", + [21467] = "Thick Silithid Chestguard", + [21468] = "Mantle of Maz\'Nadir", + [21469] = "Gauntlets of Southwind", + [21470] = "Cloak of the Savior", + [21471] = "Talon of Furious Concentration", + [21472] = "Dustwind Turban", + [21473] = "Eye of Moam", + [21474] = "Chitinous Shoulderguards", + [21475] = "Legplates of the Destroyer", + [21476] = "Obsidian Scaled Leggings", + [21477] = "Ring of Fury", + [21478] = "Bow of Taut Sinew", + [21479] = "Gauntlets of the Immovable", + [21480] = "Scaled Silithid Gauntlets", + [21481] = "Boots of the Desert Protector", + [21482] = "Boots of the Fiery Sands", + [21483] = "Ring of the Desert Winds", + [21484] = "Helm of Regrowth", + [21485] = "Buru\'s Skull Fragment", + [21486] = "Gloves of the Swarm", + [21487] = "Slimy Scaled Gauntlets", + [21488] = "Fetish of Chitinous Spikes", + [21489] = "Quicksand Waders", + [21490] = "Slime Kickers", + [21491] = "Scaled Bracers of the Gorger", + [21492] = "Manslayer of the Qiraji", + [21493] = "Boots of the Vanguard", + [21494] = "Southwind\'s Grasp", + [21495] = "Legplates of the Qiraji Command", + [21496] = "Bracers of Qiraji Command", + [21497] = "Boots of the Qiraji General", + [21498] = "Qiraji Sacrificial Dagger", + [21499] = "Vestments of the Shifting Sands", + [21500] = "Belt of the Inquisition", + [21501] = "Toughened Silithid Hide Gloves", + [21502] = "Sand Reaver Wristguards", + [21503] = "Belt of the Sand Reaver", + [21504] = "Charm of the Shifting Sands", + [21505] = "Choker of the Shifting Sands", + [21506] = "Pendant of the Shifting Sands", + [21507] = "Amulet of the Shifting Sands", + [21508] = "Mark of Cenarius", + [21509] = "Ahn\'Qiraj War Effort Supplies", + [21510] = "Ahn\'Qiraj War Effort Supplies", + [21511] = "Ahn\'Qiraj War Effort Supplies", + [21512] = "Ahn\'Qiraj War Effort Supplies", + [21513] = "Ahn\'Qiraj War Effort Supplies", + [21514] = "Logistics Task Briefing XI", + [21515] = "Mark of Remulos", + [21516] = "Dagger of Spell Penetration - Fire 150 Resist (TEST)", + [21517] = "Gnomish Turban of Psychic Might", + [21518] = "Dagger of Spell Penetration - Frost 150 Resist (TEST)", + [21519] = "Mistletoe", + [21520] = "Ravencrest\'s Legacy", + [21521] = "Runesword of the Red", + [21522] = "Shadowsong\'s Sorrow", + [21523] = "Fang of Korialstrasz", + [21524] = "Red Winter Hat", + [21525] = "Green Winter Hat", + [21526] = "Band of Icy Depths", + [21527] = "Darkwater Robes", + [21528] = "Colossal Bag of Loot", + [21529] = "Amulet of Shadow Shielding", + [21530] = "Onyx Embedded Leggings", + [21531] = "Drake Tooth Necklace", + [21532] = "Drudge Boots", + [21533] = "Colossus of Zora\'s Husk", + [21534] = "Colossus of Ashi\'s Husk", + [21535] = "Colossus of Regal\'s Husk", + [21536] = "Elune Stone", + [21537] = "Festival Dumplings", + [21538] = "Festive Pink Dress", + [21539] = "Festive Purple Dress", + [21540] = "Elune\'s Lantern", + [21541] = "Festive Black Pant Suit", + [21542] = "Festival Suit", + [21543] = "Festive Teal Pant Suit", + [21544] = "Festive Blue Pant Suit", + [21545] = "Smokywood Supplies", + [21546] = "Elixir of Greater Firepower", + [21547] = "Recipe: Elixir of Greater Firepower", + [21548] = "Pattern: Stormshroud Gloves", + [21549] = "Monster - Shield, Shieldguard", + [21550] = "Monster - Bow, Kaldorei", + [21551] = "Monster - Dagger, Alliance PvP", + [21552] = "Striped Yellowtail", + [21553] = "Monster - Sword2H, Alliance PvP", + [21554] = "Monster - Gun, PvP Horde", + [21555] = "Monster - Mace2H, Alliance PvP", + [21557] = "Small Red Rocket", + [21558] = "Small Blue Rocket", + [21559] = "Small Green Rocket", + [21560] = "Small Purple Rocket", + [21561] = "Small White Rocket", + [21562] = "Small Yellow Rocket", + [21563] = "Don Rodrigo\'s Band", + [21564] = "Monster - Gun, Kaldorei PVP Alliance", + [21565] = "Rune of Perfection", + [21566] = "Rune of Perfection", + [21567] = "Rune of Duty", + [21568] = "Rune of Duty", + [21569] = "Firework Launcher", + [21570] = "Cluster Launcher", + [21571] = "Blue Rocket Cluster", + [21572] = "Monster - Shield, Alliance PVP", + [21573] = "Monster - Sword, 1H Alliance PvP", + [21574] = "Green Rocket Cluster", + [21575] = "Purple Rocket Cluster", + [21576] = "Red Rocket Cluster", + [21577] = "White Rocket Cluster", + [21578] = "Yellow Rocket Cluster", + [21579] = "Vanquished Tentacle of C\'Thun", + [21580] = "Monster - 2H Axe, Horde PvP", + [21581] = "Gauntlets of Annihilation", + [21582] = "Grasp of the Old God", + [21583] = "Cloak of Clarity", + [21584] = "Bracers of Eternal Reckoning", + [21585] = "Dark Storm Gauntlets", + [21586] = "Belt of Never-ending Agony", + [21587] = "Wristguards of Castigation", + [21588] = "Wristguards of Elemental Fury", + [21589] = "Large Blue Rocket", + [21590] = "Large Green Rocket", + [21591] = "Large Purple Rocket", + [21592] = "Large Red Rocket", + [21593] = "Large White Rocket", + [21594] = "Bracers of the Fallen Son", + [21595] = "Large Yellow Rocket", + [21596] = "Ring of the Godslayer", + [21597] = "Royal Scepter of Vek\'lor", + [21598] = "Royal Qiraji Belt", + [21599] = "Vek\'lor\'s Gloves of Devastation", + [21600] = "Boots of Epiphany", + [21601] = "Ring of Emperor Vek\'lor", + [21602] = "Qiraji Execution Bracers", + [21603] = "Wand of Qiraji Nobility", + [21604] = "Bracelets of Royal Redemption", + [21605] = "Gloves of the Hidden Temple", + [21606] = "Belt of the Fallen Emperor", + [21607] = "Grasp of the Fallen Emperor", + [21608] = "Amulet of Vek\'nilash", + [21609] = "Regenerating Belt of Vek\'nilash", + [21610] = "Wormscale Blocker", + [21611] = "Burrower Bracers", + [21612] = "Wormscale Stompers", + [21613] = "Wormhide Boots", + [21614] = "Wormhide Protector", + [21615] = "Don Rigoberto\'s Lost Hat", + [21616] = "Huhuran\'s Stinger", + [21617] = "Wasphide Gauntlets", + [21618] = "Hive Defiler Wristguards", + [21619] = "Gloves of the Messiah", + [21620] = "Ring of the Martyr", + [21621] = "Cloak of the Golden Hive", + [21622] = "Sharpened Silithid Femur", + [21623] = "Gauntlets of the Righteous Champion", + [21624] = "Gauntlets of Kalimdor", + [21625] = "Scarab Brooch", + [21626] = "Slime-coated Leggings", + [21627] = "Cloak of Untold Secrets", + [21628] = "Test AQ Resource - Copper", + [21629] = "Test AQ Resource - Iron", + [21630] = "Test AQ Resource - Thorium", + [21631] = "Test AQ Resource - Light Leather", + [21632] = "Test AQ Resource - Medium Leather", + [21633] = "Test AQ Resource - Thick Leather", + [21634] = "Test AQ Resource - Linen Bandage", + [21635] = "Barb of the Sand Reaver", + [21636] = "Test AQ Resource - Silk Bandage", + [21637] = "Test AQ Resource - Runecloth Bandage", + [21638] = "Test AQ Resource - Spotted Yellowtail", + [21639] = "Pauldrons of the Unrelenting", + [21640] = "Lunar Festival Fireworks Pack", + [21641] = "Test AQ Resource - Rainbow Fin Albacore", + [21642] = "Test AQ Resource - Roast Raptor", + [21643] = "Test AQ Resource - Arthas\' Tear", + [21644] = "Test AQ Resource - Stranglekelp", + [21645] = "Hive Tunneler\'s Boots", + [21646] = "Test AQ Resource - Purple Lotus", + [21647] = "Fetish of the Sand Reaver", + [21648] = "Recomposed Boots", + [21649] = "Test AQ Resource - Tin", + [21650] = "Ancient Qiraji Ripper", + [21651] = "Scaled Sand Reaver Leggings", + [21652] = "Silithid Carapace Chestguard", + [21653] = "Test AQ Resource - Mithril", + [21655] = "Test AQ Resource - Heavy Leather", + [21656] = "Test AQ Resource - Rugged Leather", + [21657] = "Test AQ Resource - Wool Bandages", + [21658] = "Test AQ Resource - Mageweave Bandages", + [21659] = "Test AQ Resource - Lean Wolf Steak", + [21660] = "Test AQ Resource - Baked Salmon", + [21661] = "Test AQ Resource - Firebloom", + [21662] = "Test AQ Resource - Peacebloom", + [21663] = "Robes of the Guardian Saint", + [21664] = "Barbed Choker", + [21665] = "Mantle of Wicked Revenge", + [21666] = "Sartura\'s Might", + [21667] = "Legplates of Blazing Light", + [21668] = "Scaled Leggings of Qiraji Fury", + [21669] = "Creeping Vine Helm", + [21670] = "Badge of the Swarmguard", + [21671] = "Robes of the Battleguard", + [21672] = "Gloves of Enforcement", + [21673] = "Silithid Claw", + [21674] = "Gauntlets of Steadfast Determination", + [21675] = "Thick Qirajihide Belt", + [21676] = "Leggings of the Festering Swarm", + [21677] = "Ring of the Qiraji Fury", + [21678] = "Necklace of Purity", + [21679] = "Kalimdor\'s Revenge", + [21680] = "Vest of Swift Execution", + [21681] = "Ring of the Devoured", + [21682] = "Bile-Covered Gauntlets", + [21683] = "Mantle of the Desert Crusade", + [21684] = "Mantle of the Desert\'s Fury", + [21685] = "Petrified Scarab", + [21686] = "Mantle of Phrenic Power", + [21687] = "Ukko\'s Ring of Darkness", + [21688] = "Boots of the Fallen Hero", + [21689] = "Gloves of Ebru", + [21690] = "Angelista\'s Charm", + [21691] = "Ooze-ridden Gauntlets", + [21692] = "Triad Girdle", + [21693] = "Guise of the Devourer", + [21694] = "Ternary Mantle", + [21695] = "Angelista\'s Touch", + [21696] = "Robes of the Triumvirate", + [21697] = "Cape of the Trinity", + [21698] = "Leggings of Immersion", + [21699] = "Barrage Shoulders", + [21700] = "Pendant of the Qiraji Guardian", + [21701] = "Cloak of Concentrated Hatred", + [21702] = "Amulet of Foul Warding", + [21703] = "Hammer of Ji\'zhi", + [21704] = "Boots of the Redeemed Prophecy", + [21705] = "Boots of the Fallen Prophet", + [21706] = "Boots of the Unwavering Will", + [21707] = "Ring of Swarming Thought", + [21708] = "Beetle Scaled Wristguards", + [21709] = "Ring of the Fallen God", + [21710] = "Cloak of the Fallen God", + [21711] = "Lunar Festival Invitation", + [21712] = "Amulet of the Fallen God", + [21713] = "Elune\'s Candle", + [21714] = "Large Blue Rocket Cluster", + [21715] = "Sand Polished Hammer", + [21716] = "Large Green Rocket Cluster", + [21717] = "Large Purple Rocket Cluster", + [21718] = "Large Red Rocket Cluster", + [21719] = "Large White Rocket Cluster", + [21720] = "Large Yellow Rocket Cluster", + [21721] = "Moonglow", + [21722] = "Pattern: Festival Dress", + [21723] = "Pattern: Festival Suit", + [21724] = "Schematic: Small Blue Rocket", + [21725] = "Schematic: Small Green Rocket", + [21726] = "Schematic: Small Red Rocket", + [21727] = "Schematic: Large Blue Rocket", + [21728] = "Schematic: Large Green Rocket", + [21729] = "Schematic: Large Red Rocket", + [21730] = "Schematic: Blue Rocket Cluster", + [21731] = "Schematic: Green Rocket Cluster", + [21732] = "Schematic: Red Rocket Cluster", + [21733] = "Schematic: Large Blue Rocket Cluster", + [21734] = "Schematic: Large Green Rocket Cluster", + [21735] = "Schematic: Large Red Rocket Cluster", + [21736] = "Riding Gryphon Reins", + [21737] = "Schematic: Cluster Launcher", + [21738] = "Schematic: Firework Launcher", + [21739] = "Lunar Festival Invitation DEBUG", + [21740] = "Small Rocket Recipes", + [21741] = "Cluster Rocket Recipes", + [21742] = "Large Rocket Recipes", + [21743] = "Large Cluster Rocket Recipes", + [21744] = "Lucky Rocket Cluster", + [21745] = "Elder\'s Moonstone", + [21746] = "Lucky Red Envelope", + [21747] = "Festival Firecracker", + [21749] = "Combat Task Briefing I", + [21750] = "Combat Task Briefing II", + [21751] = "Tactical Task Briefing III", + [21761] = "Scarab Coffer Key", + [21762] = "Greater Scarab Coffer Key", + [21782] = "2000 Test sword 63 blue", + [21794] = "Monster - Sword2H, Ahn\'Qiraj", + [21795] = "Monster - Staff, Ahn\'Qiraj", + [21796] = "Monster - Item, Ahn\'Qiraj Held Scepter", + [21797] = "Indalamar\'s Sword of Pwnage", + [21798] = "Indalamar\'s Sword of Perpetual Winter\'s Night", + [21799] = "Indalamar\'s Sword of Pwnage", + [21800] = "Silithid Husked Launcher", + [21801] = "Antenna of Invigoration", + [21802] = "The Lost Kris of Zedd", + [21803] = "Helm of the Holy Avenger", + [21804] = "Coif of Elemental Fury", + [21805] = "Polished Obsidian Pauldrons", + [21806] = "Gavel of Qiraji Authority", + [21809] = "Fury of the Forgotten Swarm", + [21810] = "Treads of the Wandering Nomad", + [21811] = "[PH] Object of Affection", + [21812] = "Box of Chocolates", + [21813] = "Bag of Candies", + [21814] = "Breastplate of Annihilation", + [21815] = "Love Token", + [21816] = "Heart Candy", + [21817] = "Heart Candy", + [21818] = "Heart Candy", + [21819] = "Heart Candy", + [21820] = "Heart Candy", + [21821] = "Heart Candy", + [21822] = "Heart Candy", + [21823] = "Heart Candy", + [21829] = "Perfume Bottle", + [21830] = "Empty Wrapper", + [21831] = "Wrappered Gift", + [21832] = "Mercer\'s Hat", + [21833] = "Cologne Bottle", + [21836] = "Ritssyn\'s Ring of Chaos", + [21837] = "Anubisath Warhammer", + [21838] = "Garb of Royal Ascension", + [21839] = "Scepter of the False Prophet", + [21856] = "Neretzek, The Blood Drinker", + [21857] = "Test Herb Bag", + [21888] = "Gloves of the Immortal", + [21889] = "Gloves of the Redeemed Prophecy", + [21890] = "Gloves of the Fallen Prophet", + [21891] = "Shard of the Fallen Star", + [21920] = "Creased Letter", + [21921] = "Carefully Penned Note", + [21923] = "[PH] Picnic Parcel", + [21925] = "Immaculate Letter", + [21926] = "Slightly Creased Note", + [21928] = "Winterspring Blood Sample", + [21930] = "[PH] Valentine Lockbox, Quest, Common", + [21935] = "Stable Ectoplasm", + [21936] = "Frozen Ectoplasm", + [21937] = "Scorched Ectoplasm", + [21938] = "Magma Core", + [21939] = "Fel Elemental Rod", + [21946] = "Ectoplasmic Distiller", + [21960] = "Handmade Woodcraft", + [21962] = "[PH] Valentine Quest Item, UncommonStormwind", + [21963] = "[PH] Valentine Quest Item, UncommonIronforge", + [21964] = "[PH] Valentine Quest Item, UncommonDarnassus", + [21975] = "Pledge of Adoration: Stormwind", + [21979] = "Gift of Adoration: Darnassus", + [21980] = "Gift of Adoration: Ironforge", + [21981] = "Gift of Adoration: Stormwind", + [21982] = "Ogre Warbeads", + [21983] = "Incomplete Banner of Provocation", + [21984] = "Left Piece of Lord Valthalak\'s Amulet", + [21985] = "Sealed Blood Container", + [21986] = "Banner of Provocation", + [21987] = "Incendicite of Incendius", + [21988] = "Ember of Emberseer", + [21989] = "Cinder of Cynders", + [21994] = "Belt of Heroism", + [21995] = "Boots of Heroism", + [21996] = "Bracers of Heroism", + [21997] = "Breastplate of Heroism", + [21998] = "Gauntlets of Heroism", + [21999] = "Helm of Heroism", + [22000] = "Legplates of Heroism", + [22001] = "Spaulders of Heroism", + [22002] = "Darkmantle Belt", + [22003] = "Darkmantle Boots", + [22004] = "Darkmantle Bracers", + [22005] = "Darkmantle Cap", + [22006] = "Darkmantle Gloves", + [22007] = "Darkmantle Pants", + [22008] = "Darkmantle Spaulders", + [22009] = "Darkmantle Tunic", + [22010] = "Beastmaster\'s Belt", + [22011] = "Beastmaster\'s Bindings", + [22013] = "Beastmaster\'s Cap", + [22014] = "Hallowed Brazier", + [22015] = "Beastmaster\'s Gloves", + [22016] = "Beastmaster\'s Mantle", + [22017] = "Beastmaster\'s Pants", + [22020] = "QAEnchant Weapon +15 Agility", + [22021] = "QAEnchant Weapon +22 Intellect", + [22022] = "QAEnchant Weapon +15 Strength", + [22023] = "QAEnchant Weapon +20 Spirit", + [22024] = "QAEnchant Weapon Unholy", + [22025] = "QAEnchant Weapon Lifestealing", + [22026] = "zzOLD - QAEnchant 2H Weapon +9 Damage", + [22027] = "zzOLD - QAEnchant Weapon +5 Damage", + [22028] = "QAEnchant Chest +4 Stats", + [22029] = "QAEnchant Gloves +20 Frost Damage", + [22030] = "QAEnchant Gloves +20 Fire Damage", + [22031] = "QAEnchant Gloves +20 Shadow Damage", + [22032] = "QAEnchant Gloves +30 Healing", + [22033] = "QAEnchant Gloves +15 Agility", + [22034] = "QAEnchant Gloves +2% Threat", + [22035] = "QAEnchant Gloves +5 Skinning", + [22036] = "QAEnchant Bracer +4 Mana5", + [22037] = "QAEnchant Bracer +24 Healing", + [22038] = "QAEnchant Shield +2% Block Chance", + [22039] = "QAEnchant Cloak +15 Fire Resistance", + [22040] = "QAEnchant Cloak +15 Nature Resistance", + [22041] = "QAEnchant Cloak +8 Stealth", + [22042] = "QAEnchant Cloak -2% Threat", + [22043] = "QAEnchant Cloak +1% Dodge", + [22045] = "Test QARaid Uber Ammo Lockbox", + [22046] = "Right Piece of Lord Valthalak\'s Amulet", + [22047] = "Top Piece of Lord Valthalak\'s Amulet", + [22048] = "Lord Valthalak\'s Amulet", + [22049] = "Brazier of Beckoning", + [22050] = "Brazier of Beckoning", + [22051] = "Brazier of Beckoning", + [22052] = "Brazier of Beckoning", + [22056] = "Brazier of Beckoning", + [22057] = "Brazier of Invocation", + [22058] = "Valentine\'s Day Stationery", + [22059] = "Valentine\'s Day Card", + [22060] = "Beastmaster\'s Tunic", + [22061] = "Beastmaster\'s Boots", + [22062] = "Sorcerer\'s Belt", + [22063] = "Sorcerer\'s Bindings", + [22064] = "Sorcerer\'s Boots", + [22065] = "Sorcerer\'s Crown", + [22066] = "Sorcerer\'s Gloves", + [22067] = "Sorcerer\'s Leggings", + [22068] = "Sorcerer\'s Mantle", + [22069] = "Sorcerer\'s Robes", + [22070] = "Deathmist Belt", + [22071] = "Deathmist Bracers", + [22072] = "Deathmist Leggings", + [22073] = "Deathmist Mantle", + [22074] = "Deathmist Mask", + [22075] = "Deathmist Robe", + [22076] = "Deathmist Sandals", + [22077] = "Deathmist Wraps", + [22078] = "Virtuous Belt", + [22079] = "Virtuous Bracers", + [22080] = "Virtuous Crown", + [22081] = "Virtuous Gloves", + [22082] = "Virtuous Mantle", + [22083] = "Virtuous Robe", + [22084] = "Virtuous Sandals", + [22085] = "Virtuous Skirt", + [22086] = "Soulforge Belt", + [22087] = "Soulforge Boots", + [22088] = "Soulforge Bracers", + [22089] = "Soulforge Breastplate", + [22090] = "Soulforge Gauntlets", + [22091] = "Soulforge Helm", + [22092] = "Soulforge Legplates", + [22093] = "Soulforge Spaulders", + [22094] = "Bloodkelp", + [22095] = "Bindings of The Five Thunders", + [22096] = "Boots of The Five Thunders", + [22097] = "Coif of The Five Thunders", + [22098] = "Cord of The Five Thunders", + [22099] = "Gauntlets of The Five Thunders", + [22100] = "Kilt of The Five Thunders", + [22101] = "Pauldrons of The Five Thunders", + [22102] = "Vest of The Five Thunders", + [22106] = "Feralheart Belt", + [22107] = "Feralheart Boots", + [22108] = "Feralheart Bracers", + [22109] = "Feralheart Cowl", + [22110] = "Feralheart Gloves", + [22111] = "Feralheart Kilt", + [22112] = "Feralheart Spaulders", + [22113] = "Feralheart Vest", + [22114] = "Pink Murloc Egg", + [22115] = "Extra-Dimensional Ghost Revealer", + [22117] = "Pledge of Loyalty: Stormwind", + [22119] = "Pledge of Loyalty: Ironforge", + [22120] = "Pledge of Loyalty: Darnassus", + [22121] = "Pledge of Loyalty: Undercity", + [22122] = "Pledge of Loyalty: Thunder Bluff", + [22123] = "Pledge of Loyalty: Orgrimmar", + [22130] = "Symbol of Love", + [22131] = "Stormwind Gift Collection", + [22132] = "Ironforge Gift Collection", + [22133] = "Darnassus Gift Collection", + [22134] = "Undercity Gift Collection", + [22135] = "Thunder Bluff Gift Collection", + [22136] = "Orgrimmar Gift Collection", + [22137] = "Ysida\'s Satchel", + [22138] = "Blackrock Bracer", + [22139] = "Ysida\'s Locket", + [22140] = "Sentinel\'s Card", + [22141] = "Ironforge Guard\'s Card", + [22142] = "Grunt\'s Card", + [22143] = "Stormwind Guard\'s Card", + [22144] = "Bluffwatcher\'s Card", + [22145] = "Guardian\'s Moldy Card", + [22149] = "Beads of Ogre Mojo", + [22150] = "Beads of Ogre Might", + [22151] = "Anthion\'s Holy Water", + [22152] = "Anthion\'s Pouch", + [22154] = "Pledge of Adoration: Ironforge", + [22155] = "Pledge of Adoration: Darnassus", + [22156] = "Pledge of Adoration: Orgrimmar", + [22157] = "Pledge of Adoration: Undercity", + [22158] = "Pledge of Adoration: Thunder Bluff", + [22159] = "Pledge of Friendship: Darnassus", + [22160] = "Pledge of Friendship: Ironforge", + [22161] = "Pledge of Friendship: Orgrimmar", + [22162] = "Pledge of Friendship: Thunder Bluff", + [22163] = "Pledge of Friendship: Undercity", + [22164] = "Gift of Adoration: Orgrimmar", + [22165] = "Gift of Adoration: Thunder Bluff", + [22166] = "Gift of Adoration: Undercity", + [22167] = "Gift of Friendship: Darnassus", + [22168] = "Gift of Friendship: Ironforge", + [22169] = "Gift of Friendship: Orgrimmar", + [22170] = "Gift of Friendship: Stormwind", + [22171] = "Gift of Friendship: Thunder Bluff", + [22172] = "Gift of Friendship: Undercity", + [22173] = "Dwarven Homebrew", + [22174] = "Romantic Poem", + [22175] = "Freshly Baked Pie", + [22176] = "Homemade Bread", + [22177] = "Freshly Picked Flowers", + [22178] = "Pledge of Friendship: Stormwind", + [22191] = "Obsidian Mail Tunic", + [22192] = "Bloodkelp Elixir of Dodging", + [22193] = "Bloodkelp Elixir of Resistance", + [22194] = "Black Grasp of the Destroyer", + [22195] = "Light Obsidian Belt", + [22196] = "Thick Obsidian Breastplate", + [22197] = "Heavy Obsidian Belt", + [22198] = "Jagged Obsidian Shield", + [22199] = "Monster - Axe, 2H Arcanite Reaper", + [22200] = "Silver Shafted Arrow", + [22201] = "Reliquary of Purity", + [22202] = "Small Obsidian Shard", + [22203] = "Large Obsidian Shard", + [22204] = "Wristguards of Renown", + [22205] = "Black Steel Bindings", + [22206] = "Bouquet of Red Roses", + [22207] = "Sash of the Grand Hunt", + [22208] = "Lavastone Hammer", + [22209] = "Plans: Heavy Obsidian Belt", + [22210] = "Monster - Knuckle, B01 Red", + [22211] = "Monster - Knuckle, B01 Red Offhand", + [22212] = "Golem Fitted Pauldrons", + [22213] = "Monster - Mace, Hand of Edward the Odd", + [22214] = "Plans: Light Obsidian Belt", + [22215] = "Monster - Dagger, Bonescraper", + [22216] = "Venoxis\'s Venom Sac", + [22217] = "Kurinnaxx\'s Venom Sac", + [22218] = "Handful of Rose Petals", + [22219] = "Plans: Jagged Obsidian Shield", + [22220] = "Plans: Black Grasp of the Destroyer", + [22221] = "Plans: Obsidian Mail Tunic", + [22222] = "Plans: Thick Obsidian Breastplate", + [22223] = "Foreman\'s Head Protector", + [22224] = "Jeering Spectre\'s Essence", + [22225] = "Dragonskin Cowl", + [22226] = "Druidical Remains", + [22227] = "Starbreeze Village Relic", + [22228] = "Brilliant Sword of Zealotry", + [22229] = "Soul Ashes of the Banished", + [22230] = "Frightmaw Hide", + [22231] = "Kayser\'s Boots of Precision", + [22232] = "Marksman\'s Girdle", + [22233] = "Zigris\' Footlocker", + [22234] = "Mantle of Lost Hope", + [22235] = "Truesilver Shafted Arrow", + [22236] = "Buttermilk Delight", + [22237] = "Dark Desire", + [22238] = "Very Berry Cream", + [22239] = "Sweet Surprise", + [22240] = "Greaves of Withering Despair", + [22241] = "Dark Warder\'s Pauldrons", + [22242] = "Verek\'s Leash", + [22243] = "Small Soul Pouch", + [22244] = "Box of Souls", + [22245] = "Soot Encrusted Footwear", + [22246] = "Enchanted Mageweave Pouch", + [22247] = "Faith Healer\'s Boots", + [22248] = "Enchanted Runecloth Bag", + [22249] = "Big Bag of Enchantment", + [22250] = "Herb Pouch", + [22251] = "Cenarion Herb Bag", + [22252] = "Satchel of Cenarius", + [22253] = "Tome of the Lost", + [22254] = "Wand of Eternal Light", + [22255] = "Magma Forged Band", + [22256] = "Mana Shaping Handwraps", + [22257] = "Bloodclot Band", + [22258] = "Love Potion", + [22259] = "Unbestowed Friendship Bracelet", + [22260] = "Friendship Bracelet", + [22261] = "Love Fool", + [22262] = "Alliance Gift Collection", + [22263] = "Horde Gift Collection", + [22264] = "Carefully Written Letter", + [22265] = "Lovingly Composed Letter", + [22266] = "Flarethorn", + [22267] = "Spellweaver\'s Turban", + [22268] = "Draconic Infused Emblem", + [22269] = "Shadow Prowler\'s Cloak", + [22270] = "Entrenching Boots", + [22271] = "Leggings of Frenzied Magic", + [22272] = "Forest\'s Embrace", + [22273] = "Moonshadow Hood", + [22274] = "Grizzled Pelt", + [22275] = "Firemoss Boots", + [22276] = "Lovely Red Dress", + [22277] = "Red Dinner Suit", + [22278] = "Lovely Blue Dress", + [22279] = "Lovely Black Dress", + [22280] = "Lovely Purple Dress", + [22281] = "Blue Dinner Suit", + [22282] = "Purple Dinner Suit", + [22283] = "Sack of Homemade Bread", + [22284] = "Bundle of Cards", + [22285] = "Stormwind Pledge Collection", + [22286] = "Ironforge Pledge Collection", + [22287] = "Parcel of Cards", + [22288] = "Case of Homebrew", + [22289] = "Stack of Cards", + [22290] = "Darnassus Pledge Collection", + [22291] = "Box of Woodcrafts", + [22292] = "Box of Fresh Pies", + [22293] = "Package of Cards", + [22294] = "Orgrimmar Pledge Collection", + [22295] = "Satchel of Cards", + [22296] = "Basket of Flowers", + [22297] = "Thunder Bluff Pledge Collection", + [22298] = "Book of Romantic Poems", + [22299] = "Sheaf of Cards", + [22300] = "Undercity Pledge Collection", + [22301] = "Ironweave Robe", + [22302] = "Ironweave Cowl", + [22303] = "Ironweave Pants", + [22304] = "Ironweave Gloves", + [22305] = "Ironweave Mantle", + [22306] = "Ironweave Belt", + [22307] = "Pattern: Enchanted Mageweave Pouch", + [22308] = "Pattern: Enchanted Runecloth Bag", + [22309] = "Pattern: Big Bag of Enchantment", + [22310] = "Pattern: Cenarion Herb Bag", + [22311] = "Ironweave Boots", + [22312] = "Pattern: Satchel of Cenarius", + [22313] = "Ironweave Bracers", + [22314] = "Huntsman\'s Harpoon", + [22315] = "Hammer of Revitalization", + [22316] = "Test Relic", + [22317] = "Lefty\'s Brass Knuckle", + [22318] = "Malgen\'s Long Bow", + [22319] = "Tome of Divine Right", + [22320] = "Mux\'s Quality Goods", + [22321] = "Heart of Wyrmthalak", + [22322] = "The Jaw Breaker", + [22324] = "Winter Kimchi", + [22325] = "Belt of the Trickster", + [22326] = "Amalgam\'s Band", + [22327] = "Amulet of the Redeemed", + [22328] = "Legplates of Vigilance", + [22329] = "Scepter of Interminable Focus", + [22330] = "Shroud of Arcane Mastery", + [22331] = "Band of the Steadfast Hero", + [22332] = "Blade of Necromancy", + [22333] = "Hammer of Divine Might", + [22334] = "Band of Mending", + [22335] = "Lord Valthalak\'s Staff of Command", + [22336] = "Draconian Aegis of the Legion", + [22337] = "Shroud of Domination", + [22338] = "Volcanic Ash", + [22339] = "Rune Band of Wizardry", + [22340] = "Pendant of Celerity", + [22341] = "Monster - Mace, Horde A04 Pale - Bone Wrench", + [22342] = "Leggings of Torment", + [22343] = "Handguards of Savagery", + [22344] = "Brazier of Invocation: User\'s Manual", + [22345] = "Totem of Rebirth", + [22346] = "Monster - Mace2H, Unstoppable Force", + [22347] = "Fahrad\'s Reloading Repeater", + [22348] = "Doomulus Prime", + [22349] = "Desecrated Breastplate", + [22350] = "Desecrated Tunic", + [22351] = "Desecrated Robe", + [22352] = "Desecrated Legplates", + [22353] = "Desecrated Helmet", + [22354] = "Desecrated Pauldrons", + [22355] = "Desecrated Bracers", + [22356] = "Desecrated Waistguard", + [22357] = "Desecrated Gauntlets", + [22358] = "Desecrated Sabatons", + [22359] = "Desecrated Legguards", + [22360] = "Desecrated Headpiece", + [22361] = "Desecrated Spaulders", + [22362] = "Desecrated Wristguards", + [22363] = "Desecrated Girdle", + [22364] = "Desecrated Handguards", + [22365] = "Desecrated Boots", + [22366] = "Desecrated Leggings", + [22367] = "Desecrated Circlet", + [22368] = "Desecrated Shoulderpads", + [22369] = "Desecrated Bindings", + [22370] = "Desecrated Belt", + [22371] = "Desecrated Gloves", + [22372] = "Desecrated Sandals", + [22373] = "Wartorn Leather Scrap", + [22374] = "Wartorn Chain Scrap", + [22375] = "Wartorn Plate Scrap", + [22376] = "Wartorn Cloth Scrap", + [22377] = "The Thunderwood Poker", + [22378] = "Ravenholdt Slicer", + [22379] = "Shivsprocket\'s Shiv", + [22380] = "Simone\'s Cultivating Hammer", + [22381] = "Silithus Venom Sample", + [22382] = "Sealed Venom Container", + [22383] = "Sageblade", + [22384] = "Persuader", + [22385] = "Titanic Leggings", + [22386] = "Head of Instructor Razuvious DEP", + [22387] = "Heart of Anub\'Rekhan", + [22388] = "Plans: Titanic Leggings", + [22389] = "Plans: Sageblade", + [22390] = "Plans: Persuader", + [22391] = "Monster - Staff, Lord Valthalak", + [22392] = "Formula: Enchant 2H Weapon - Agility", + [22393] = "Codex: Prayer of Shadow Protection", + [22394] = "Staff of Metanoia", + [22395] = "Totem of Rage", + [22396] = "Totem of Life", + [22397] = "Idol of Ferocity", + [22398] = "Idol of Rejuvenation", + [22399] = "Idol of Health", + [22400] = "Libram of Truth", + [22401] = "Libram of Hope", + [22402] = "Libram of Grace", + [22403] = "Diana\'s Pearl Necklace", + [22404] = "Willey\'s Back Scratcher", + [22405] = "Mantle of the Scarlet Crusade", + [22406] = "Redemption", + [22407] = "Helm of the New Moon", + [22408] = "Ritssyn\'s Wand of Bad Mojo", + [22409] = "Tunic of the Crescent Moon", + [22410] = "Gauntlets of Deftness", + [22411] = "Helm of the Executioner", + [22412] = "Thuzadin Mantle", + [22416] = "Dreadnaught Breastplate", + [22417] = "Dreadnaught Legplates", + [22418] = "Dreadnaught Helmet", + [22419] = "Dreadnaught Pauldrons", + [22420] = "Dreadnaught Sabatons", + [22421] = "Dreadnaught Gauntlets", + [22422] = "Dreadnaught Waistguard", + [22423] = "Dreadnaught Bracers", + [22424] = "Redemption Wristguards", + [22425] = "Redemption Tunic", + [22426] = "Redemption Handguards", + [22427] = "Redemption Legguards", + [22428] = "Redemption Headpiece", + [22429] = "Redemption Spaulders", + [22430] = "Redemption Boots", + [22431] = "Redemption Girdle", + [22432] = "Devilsaur Barb", + [22433] = "Don Mauricio\'s Band of Domination", + [22434] = "Bloodcap", + [22435] = "Gorishi Sting", + [22436] = "Cryptstalker Tunic", + [22437] = "Cryptstalker Legguards", + [22438] = "Cryptstalker Headpiece", + [22439] = "Cryptstalker Spaulders", + [22440] = "Cryptstalker Boots", + [22441] = "Cryptstalker Handguards", + [22442] = "Cryptstalker Girdle", + [22443] = "Cryptstalker Wristguards", + [22444] = "Putrid Vine", + [22458] = "Moonshadow Stave", + [22464] = "Earthshatter Tunic", + [22465] = "Earthshatter Legguards", + [22466] = "Earthshatter Headpiece", + [22467] = "Earthshatter Spaulders", + [22468] = "Earthshatter Boots", + [22469] = "Earthshatter Handguards", + [22470] = "Earthshatter Girdle", + [22471] = "Earthshatter Wristguards", + [22472] = "Boots of Ferocity", + [22476] = "Bonescythe Breastplate", + [22477] = "Bonescythe Legplates", + [22478] = "Bonescythe Helmet", + [22479] = "Bonescythe Pauldrons", + [22480] = "Bonescythe Sabatons", + [22481] = "Bonescythe Gauntlets", + [22482] = "Bonescythe Waistguard", + [22483] = "Bonescythe Bracers", + [22484] = "Necrotic Rune", + [22485] = "[UNUSED] Scourge Invasion Focus Object", + [22486] = "[UNUSED] Scourge Invasion Boss Summoner", + [22488] = "Dreamwalker Tunic", + [22489] = "Dreamwalker Legguards", + [22490] = "Dreamwalker Headpiece", + [22491] = "Dreamwalker Spaulders", + [22492] = "Dreamwalker Boots", + [22493] = "Dreamwalker Handguards", + [22494] = "Dreamwalker Girdle", + [22495] = "Dreamwalker Wristguards", + [22496] = "Frostfire Robe", + [22497] = "Frostfire Leggings", + [22498] = "Frostfire Circlet", + [22499] = "Frostfire Shoulderpads", + [22500] = "Frostfire Sandals", + [22501] = "Frostfire Gloves", + [22502] = "Frostfire Belt", + [22503] = "Frostfire Bindings", + [22504] = "Plagueheart Robe", + [22505] = "Plagueheart Leggings", + [22506] = "Plagueheart Circlet", + [22507] = "Plagueheart Shoulderpads", + [22508] = "Plagueheart Sandals", + [22509] = "Plagueheart Gloves", + [22510] = "Plagueheart Belt", + [22511] = "Plagueheart Bindings", + [22512] = "Robe of Faith", + [22513] = "Leggings of Faith", + [22514] = "Circlet of Faith", + [22515] = "Shoulderpads of Faith", + [22516] = "Sandals of Faith", + [22517] = "Gloves of Faith", + [22518] = "Belt of Faith", + [22519] = "Bindings of Faith", + [22520] = "The Phylactery of Kel\'Thuzad", + [22523] = "Insignia of the Dawn", + [22524] = "Insignia of the Crusade", + [22525] = "Crypt Fiend Parts", + [22526] = "Bone Fragments", + [22527] = "Core of Elements", + [22528] = "Dark Iron Scraps", + [22529] = "Savage Frond", + [22568] = "Sealed Craftsman\'s Writ", + [22584] = "QAEnchant Cloak +3 Agility", + [22585] = "QAEnchant Gloves +5 Mining", + [22586] = "QAEnchant Gloves +5 Herbalism", + [22587] = "QAEnchant Boots +8% Speed", + [22588] = "QAEnchant Cloak +10 Shadow Resistance", + [22589] = "Atiesh, Greatstaff of the Guardian", + [22593] = "Writ of Safe Passage", + [22595] = "Call to Arms Announcement", + [22596] = "Monster - Sword2H, Horde A02", + [22600] = "Craftsman\'s Writ - Dense Weightstone", + [22601] = "Craftsman\'s Writ - Imperial Plate Chest", + [22602] = "Craftsman\'s Writ - Volcanic Hammer", + [22603] = "Craftsman\'s Writ - Huge Thorium Battleaxe", + [22604] = "Craftsman\'s Writ - Radiant Circlet", + [22605] = "Craftsman\'s Writ - Wicked Leather Headband", + [22606] = "Craftsman\'s Writ - Rugged Armor Kit", + [22607] = "Craftsman\'s Writ - Wicked Leather Belt", + [22608] = "Craftsman\'s Writ - Runic Leather Pants", + [22609] = "Craftsman\'s Writ - Brightcloth Pants", + [22610] = "Craftsman\'s Writ - Runecloth Boots", + [22611] = "Craftsman\'s Writ - Runecloth Bag", + [22612] = "Craftsman\'s Writ - Runecloth Robe", + [22613] = "Craftsman\'s Writ - Goblin Sapper Charge", + [22614] = "Craftsman\'s Writ - Thorium Grenade", + [22615] = "Craftsman\'s Writ - Gnomish Battle Chicken", + [22616] = "Craftsman\'s Writ - Thorium Tube", + [22617] = "Craftsman\'s Writ - Major Mana Potion", + [22618] = "Craftsman\'s Writ - Major Healing Potion", + [22619] = "Craftsman\'s Writ - Greater Frost Protection Potion", + [22620] = "Craftsman\'s Writ - Greater Arcane Protection Potion", + [22621] = "Craftsman\'s Writ - Flask of Petrification", + [22622] = "Craftsman\'s Writ - Stonescale Eel", + [22623] = "Craftsman\'s Writ - Plated Armorfish", + [22624] = "Craftsman\'s Writ - Lightning Eel", + [22625] = "Craftsman\'s Writ - Baked Salmon", + [22626] = "Craftsman\'s Writ - Runn Tum Tuber Surprise", + [22630] = "Atiesh, Greatstaff of the Guardian", + [22631] = "Atiesh, Greatstaff of the Guardian", + [22632] = "Atiesh, Greatstaff of the Guardian", + [22635] = "Savage Guard", + [22636] = "Ice Guard", + [22637] = "Primal Hakkari Idol", + [22638] = "Shadow Guard", + [22648] = "Hive\'Ashi Dossier", + [22649] = "Hive\'Regal Dossier", + [22650] = "Hive\'Zora Dossier", + [22651] = "Outrider\'s Plate Legguards", + [22652] = "Glacial Vest", + [22654] = "Glacial Gloves", + [22655] = "Glacial Wrists", + [22656] = "The Purifier", + [22657] = "Amulet of the Dawn", + [22658] = "Glacial Cloak", + [22659] = "Medallion of the Dawn", + [22660] = "Gaea\'s Embrace", + [22661] = "Polar Tunic", + [22662] = "Polar Gloves", + [22663] = "Polar Bracers", + [22664] = "Icy Scale Breastplate", + [22665] = "Icy Scale Bracers", + [22666] = "Icy Scale Gauntlets", + [22667] = "Bracers of Hope", + [22668] = "Bracers of Subterfuge", + [22669] = "Icebane Breastplate", + [22670] = "Icebane Gauntlets", + [22671] = "Icebane Bracers", + [22672] = "Sentinel\'s Plate Legguards", + [22673] = "Outrider\'s Chain Leggings", + [22676] = "Outrider\'s Mail Leggings", + [22678] = "Talisman of Ascendance", + [22679] = "Supply Bag", + [22680] = "Band of Resolution", + [22681] = "Band of Piety", + [22682] = "Frozen Rune", + [22683] = "Pattern: Gaea\'s Embrace", + [22684] = "Pattern: Glacial Gloves", + [22685] = "Pattern: Glacial Cloak", + [22686] = "Pattern: Glacial Vest", + [22687] = "Pattern: Glacial Wrists", + [22688] = "Verimonde\'s Last Resort", + [22689] = "Sanctified Leather Helm", + [22690] = "Leggings of the Plague Hunter", + [22691] = "Corrupted Ashbringer", + [22692] = "Pattern: Polar Tunic", + [22694] = "Pattern: Polar Gloves", + [22695] = "Pattern: Polar Bracers", + [22696] = "Pattern: Icy Scale Breastplate", + [22697] = "Pattern: Icy Scale Gauntlets", + [22698] = "Pattern: Icy Scale Bracers", + [22699] = "Icebane Leggings", + [22700] = "Glacial Leggings", + [22701] = "Polar Leggings", + [22702] = "Icy Scale Leggings", + [22703] = "Plans: Icebane Breastplate", + [22704] = "Plans: Icebane Gauntlets", + [22705] = "Plans: Icebane Bracers", + [22707] = "Ramaladni\'s Icy Grasp", + [22708] = "Fate of Ramaladni", + [22709] = "Monster - Sword2H, Corrupted Ashbringer", + [22711] = "Cloak of the Hakkari Worshipers", + [22712] = "Might of the Tribe", + [22713] = "Zulian Scepter of Rites", + [22714] = "Sacrificial Gauntlets", + [22715] = "Gloves of the Tormented", + [22716] = "Belt of Untapped Power", + [22718] = "Blooddrenched Mask", + [22719] = "Omarion\'s Handbook", + [22720] = "Zulian Headdress", + [22721] = "Band of Servitude", + [22722] = "Seal of the Gurubashi Berserker", + [22723] = "A Letter from the Keeper of the Rolls", + [22724] = "Monster - Mace1H, Korth\'azz", + [22725] = "Band of Cenarius", + [22726] = "Splinter of Atiesh", + [22727] = "Frame of Atiesh", + [22728] = "Steam Tonk Controller", + [22729] = "Schematic: Steam Tonk Controller", + [22730] = "Eyestalk Waist Cord", + [22731] = "Cloak of the Devoured", + [22732] = "Mark of C\'Thun", + [22733] = "Staff Head of Atiesh", + [22734] = "Base of Atiesh", + [22736] = "Andonisus, Reaper of Souls", + [22737] = "Atiesh, Greatstaff of the Guardian", + [22738] = "Monster - Sword, 1H Uber Demon Blade", + [22739] = "Tome of Polymorph: Turtle", + [22740] = "Outrider\'s Leather Pants", + [22741] = "Outrider\'s Lizardhide Pants", + [22742] = "Bloodsail Shirt", + [22743] = "Bloodsail Sash", + [22744] = "Bloodsail Boots", + [22745] = "Bloodsail Pants", + [22746] = "Buccaneer\'s Uniform", + [22747] = "Outrider\'s Silk Leggings", + [22748] = "Sentinel\'s Chain Leggings", + [22749] = "Sentinel\'s Leather Pants", + [22750] = "Sentinel\'s Lizardhide Pants", + [22751] = "Sentinel\'s Plate Legguards", + [22752] = "Sentinel\'s Silk Leggings", + [22753] = "Sentinel\'s Lamellar Legguards", + [22754] = "Eternal Quintessence", + [22756] = "Sylvan Vest", + [22757] = "Sylvan Crown", + [22758] = "Sylvan Shoulders", + [22759] = "Bramblewood Helm", + [22760] = "Bramblewood Boots", + [22761] = "Bramblewood Belt", + [22762] = "Ironvine Breastplate", + [22763] = "Ironvine Gloves", + [22764] = "Ironvine Belt", + [22765] = "Mildewed Letter", + [22766] = "Plans: Ironvine Breastplate", + [22767] = "Plans: Ironvine Gloves", + [22768] = "Plans: Ironvine Belt", + [22769] = "Pattern: Bramblewood Belt", + [22770] = "Pattern: Bramblewood Boots", + [22771] = "Pattern: Bramblewood Helm", + [22772] = "Pattern: Sylvan Shoulders", + [22773] = "Pattern: Sylvan Crown", + [22774] = "Pattern: Sylvan Vest", + [22780] = "White Murloc Egg", + [22781] = "Polar Bear Collar", + [22798] = "Might of Menethil", + [22799] = "Soulseeker", + [22800] = "Brimstone Staff", + [22801] = "Spire of Twilight", + [22802] = "Kingsfall", + [22803] = "Midnight Haze", + [22804] = "Maexxna\'s Fang", + [22805] = "Naxxramas Sword 1H 1 [PH]", + [22806] = "Widow\'s Remorse", + [22807] = "Wraith Blade", + [22808] = "The Castigator", + [22809] = "Maul of the Redeemed Crusader", + [22810] = "Toxin Injector", + [22811] = "Soulstring", + [22812] = "Nerubian Slavemaker", + [22813] = "Claymore of Unholy Might", + [22814] = "Naxxramas Sword 2H 2 [PH]", + [22815] = "Severance", + [22816] = "Hatchet of Sundered Bone", + [22817] = "Naxxramas Polearm [PH]", + [22818] = "The Plague Bearer", + [22819] = "Shield of Condemnation", + [22820] = "Wand of Fates", + [22821] = "Doomfinger", + [22822] = "iCoke Prize Voucher", + [22843] = "Blood Guard\'s Chain Greaves", + [22852] = "Blood Guard\'s Dragonhide Treads", + [22855] = "Blood Guard\'s Dreadweave Walkers", + [22856] = "Blood Guard\'s Leather Walkers", + [22857] = "Blood Guard\'s Mail Greaves", + [22858] = "Blood Guard\'s Plate Greaves", + [22859] = "Blood Guard\'s Satin Walkers", + [22860] = "Blood Guard\'s Silk Walkers", + [22862] = "Blood Guard\'s Chain Vices", + [22863] = "Blood Guard\'s Dragonhide Grips", + [22864] = "Blood Guard\'s Leather Grips", + [22865] = "Blood Guard\'s Dreadweave Handwraps", + [22867] = "Blood Guard\'s Mail Vices", + [22868] = "Blood Guard\'s Plate Gauntlets", + [22869] = "Blood Guard\'s Satin Handwraps", + [22870] = "Blood Guard\'s Silk Handwraps", + [22872] = "Legionnaire\'s Plate Hauberk", + [22873] = "Legionnaire\'s Plate Leggings", + [22874] = "Legionnaire\'s Chain Hauberk", + [22875] = "Legionnaire\'s Chain Legguards", + [22876] = "Legionnaire\'s Mail Hauberk", + [22877] = "Legionnaire\'s Dragonhide Chestpiece", + [22878] = "Legionnaire\'s Dragonhide Leggings", + [22879] = "Legionnaire\'s Leather Chestpiece", + [22880] = "Legionnaire\'s Leather Legguards", + [22881] = "Legionnaire\'s Dreadweave Legguards", + [22882] = "Legionnaire\'s Satin Legguards", + [22883] = "Legionnaire\'s Silk Legguards", + [22884] = "Legionnaire\'s Dreadweave Tunic", + [22885] = "Legionnaire\'s Satin Tunic", + [22886] = "Legionnaire\'s Silk Tunic", + [22887] = "Legionnaire\'s Mail Legguards", + [22890] = "Tome of Frost Ward V", + [22891] = "Grimoire of Shadow Ward IV", + [22892] = "Dim Necrotic Stone", + [22895] = "Conjured Cinnamon Roll", + [22897] = "Tome of Conjure Food VII", + [22930] = "A Bloodstained Envelope", + [22932] = "A Torn Letter", + [22933] = "[UNUSED] Abom Stoone", + [22935] = "Touch of Frost", + [22936] = "Wristguards of Vengeance", + [22937] = "Gem of Nerubis", + [22938] = "Cryptfiend Silk Cloak", + [22939] = "Band of Unanswered Prayers", + [22940] = "Icebane Pauldrons", + [22941] = "Polar Shoulder Pads", + [22942] = "The Widow\'s Embrace", + [22943] = "Malice Stone Pendant", + [22944] = "A Crumpled Missive", + [22945] = "A Careworn Note", + [22946] = "A Ragged Page", + [22947] = "Pendant of Forgotten Names", + [22948] = "A Smudged Document", + [22949] = "Cracked Necrotic Crystal", + [22950] = "Faint Necrotic Crystal", + [22954] = "Kiss of the Spider", + [22960] = "Cloak of Suturing", + [22961] = "Band of Reanimation", + [22967] = "Icy Scale Spaulders", + [22968] = "Glacial Mantle", + [22970] = "A Bloodstained Envelope", + [22972] = "A Careworn Note", + [22973] = "A Crumpled Missive", + [22974] = "A Ragged Page", + [22975] = "A Smudged Document", + [22977] = "A Torn Letter", + [22981] = "Gluth\'s Missing Collar", + [22983] = "Rime Covered Mantle", + [22988] = "The End of Dreams", + [22994] = "Digested Hand of Power", + [22999] = "Tabard of the Argent Dawn", + [23000] = "Plated Abomination Ribcage", + [23001] = "Eye of Diminution", + [23002] = "Turtle Box", + [23004] = "Idol of Longevity", + [23005] = "Totem of Flowing Water", + [23006] = "Libram of Light", + [23007] = "Piglet\'s Collar", + [23008] = "Sealed Research Report", + [23009] = "Wand of the Whispering Dead", + [23010] = "Sealed Research Report", + [23011] = "Sealed Research Report", + [23012] = "Sealed Research Report", + [23013] = "Sealed Research Report", + [23014] = "Iblis, Blade of the Fallen Seraph", + [23015] = "Rat Cage", + [23016] = "Sealed Research Report", + [23017] = "Veil of Eclipse", + [23018] = "Signet of the Fallen Defender", + [23019] = "Icebane Helmet", + [23020] = "Polar Helmet", + [23021] = "The Soul Harvester\'s Bindings", + [23022] = "Curmudgeon\'s Payoff", + [23023] = "Sadist\'s Collar", + [23024] = "Prepared Field Duty Papers", + [23025] = "Seal of the Damned", + [23027] = "Warmth of Forgiveness", + [23028] = "Hailstone Band", + [23029] = "Noth\'s Frigid Heart", + [23030] = "Cloak of the Scourge", + [23031] = "Band of the Inevitable", + [23032] = "Glacial Headdress", + [23033] = "Icy Scale Coif", + [23034] = "Nax PH Crit Plate Shoulders", + [23035] = "Preceptor\'s Hat", + [23036] = "Necklace of Necropsy", + [23037] = "Ring of Spiritual Fervor", + [23038] = "Band of Unnatural Forces", + [23039] = "The Eye of Nerub", + [23040] = "Glyph of Deflection", + [23041] = "Slayer\'s Crest", + [23042] = "Loatheb\'s Reflection", + [23043] = "The Face of Death", + [23044] = "Harbinger of Doom", + [23045] = "Shroud of Dominion", + [23046] = "The Restrained Essence of Sapphiron", + [23047] = "Eye of the Dead", + [23048] = "Sapphiron\'s Right Eye", + [23049] = "Sapphiron\'s Left Eye", + [23050] = "Cloak of the Necropolis", + [23051] = "Glaive of the Defender", + [23053] = "Stormrage\'s Talisman of Seething", + [23054] = "Gressil, Dawn of Ruin", + [23055] = "Word of Thawing", + [23056] = "Hammer of the Twisting Nether", + [23057] = "Gem of Trapped Innocents", + [23058] = "Life Channeling Necklace", + [23059] = "Ring of the Dreadnaught", + [23060] = "Bonescythe Ring", + [23061] = "Ring of Faith", + [23062] = "Frostfire Ring", + [23063] = "Plagueheart Ring", + [23064] = "Ring of The Dreamwalker", + [23065] = "Ring of the Earthshatterer", + [23066] = "Ring of Redemption", + [23067] = "Ring of the Cryptstalker", + [23068] = "Legplates of Carnage", + [23069] = "Necro-Knight\'s Garb", + [23070] = "Leggings of Polarity", + [23071] = "Leggings of Apocalypse", + [23072] = "Fists of the Unrelenting", + [23073] = "Boots of Displacement", + [23075] = "Death\'s Bargain", + [23078] = "Gauntlets of Undead Slaying", + [23081] = "Handwraps of Undead Slaying", + [23082] = "Handguards of Undead Slaying", + [23083] = "Captured Flame", + [23084] = "Gloves of Undead Cleansing", + [23085] = "Robe of Undead Cleansing", + [23086] = "[UNUSED] Letter Cookie", + [23087] = "Breastplate of Undead Slaying", + [23088] = "Chestguard of Undead Slaying", + [23089] = "Tunic of Undead Slaying", + [23090] = "Bracers of Undead Slaying", + [23091] = "Bracers of Undead Cleansing", + [23092] = "Wristguards of Undead Slaying", + [23093] = "Wristwraps of Undead Slaying", + [23122] = "Consecrated Sharpening Stone", + [23123] = "Blessed Wizard Oil", + [23124] = "Staff of Balzaphon", + [23125] = "Chains of the Lich", + [23126] = "Waistband of Balzaphon", + [23127] = "Cloak of Revanchion", + [23128] = "The Shadow\'s Grasp", + [23129] = "Bracers of Mending", + [23132] = "Lord Blackwood\'s Blade", + [23139] = "Lord Blackwood\'s Buckler", + [23156] = "Blackwood\'s Thigh", + [23160] = "Friendship Bread", + [23161] = "Freshly-Squeezed Lemonade", + [23162] = "Foror\'s Crate of Endless Resist Gear Storage", + [23163] = "Performer\'s Wand", + [23164] = "Bubbly Beverage", + [23168] = "Scorn\'s Focal Dagger", + [23169] = "Scorn\'s Icy Choker", + [23170] = "The Frozen Clutch", + [23171] = "The Axe of Severing", + [23172] = "Refreshing Red Apple", + [23173] = "Abomination Skin Leggings", + [23175] = "Tasty Summer Treat", + [23176] = "Fizzy Energy Drink", + [23177] = "Lady Falther\'ess\' Finger", + [23178] = "Mantle of Lady Falther\'ess", + [23179] = "Flame of Orgrimmar", + [23180] = "Flame of Thunder Bluff", + [23181] = "Flame of the Undercity", + [23182] = "Flame of Stormwind", + [23183] = "Flame of Ironforge", + [23184] = "Flame of Darnassus", + [23192] = "Tabard of the Scarlet Crusade", + [23193] = "Skeletal Steed Reins", + [23194] = "Lesser Mark of the Dawn", + [23195] = "Mark of the Dawn", + [23196] = "Greater Mark of the Dawn", + [23197] = "Idol of the Moon", + [23198] = "Idol of Brutality", + [23199] = "Totem of the Storm", + [23200] = "Totem of Sustaining", + [23201] = "Libram of Divinity", + [23203] = "Libram of Fervor", + [23206] = "Mark of the Champion", + [23207] = "Mark of the Champion", + [23211] = "Toasted Smorc", + [23215] = "Bag of Smorc Ingredients", + [23219] = "Girdle of the Mentor", + [23220] = "Crystal Webbed Robe", + [23221] = "Misplaced Servo Arm", + [23224] = "Summer Gift Package", + [23226] = "Ghoul Skin Tunic", + [23227] = "iCoke Gift Box Voucher", + [23237] = "Ring of the Eternal Flame", + [23238] = "Stygian Buckler", + [23242] = "Claw of the Frost Wyrm", + [23243] = "Champion\'s Plate Shoulders", + [23244] = "Champion\'s Plate Helm", + [23245] = "[PH] Everburning Elixir", + [23246] = "Fiery Festival Brew", + [23247] = "Burning Blossom", + [23250] = "Prismatic Shell", + [23251] = "Champion\'s Chain Helm", + [23252] = "Champion\'s Chain Shoulders", + [23253] = "Champion\'s Dragonhide Headguard", + [23254] = "Champion\'s Dragonhide Shoulders", + [23255] = "Champion\'s Dreadweave Cowl", + [23256] = "Champion\'s Dreadweave Spaulders", + [23257] = "Champion\'s Leather Helm", + [23258] = "Champion\'s Leather Shoulders", + [23259] = "Champion\'s Mail Headguard", + [23260] = "Champion\'s Mail Pauldrons", + [23261] = "Champion\'s Satin Hood", + [23262] = "Champion\'s Satin Mantle", + [23263] = "Champion\'s Silk Cowl", + [23264] = "Champion\'s Silk Mantle", + [23271] = "QATest Darkmoon Faire Tickets", + [23272] = "Knight-Captain\'s Lamellar Breastplate", + [23273] = "Knight-Captain\'s Lamellar Leggings", + [23274] = "Knight-Lieutenant\'s Lamellar Gauntlets", + [23275] = "Knight-Lieutenant\'s Lamellar Sabatons", + [23276] = "Lieutenant Commander\'s Lamellar Headguard", + [23277] = "Lieutenant Commander\'s Lamellar Shoulders", + [23278] = "Knight-Lieutenant\'s Chain Greaves", + [23279] = "Knight-Lieutenant\'s Chain Vices", + [23280] = "Knight-Lieutenant\'s Dragonhide Grips", + [23281] = "Knight-Lieutenant\'s Dragonhide Treads", + [23282] = "Knight-Lieutenant\'s Dreadweave Handwraps", + [23283] = "Knight-Lieutenant\'s Dreadweave Walkers", + [23284] = "Knight-Lieutenant\'s Leather Grips", + [23285] = "Knight-Lieutenant\'s Leather Walkers", + [23286] = "Knight-Lieutenant\'s Plate Gauntlets", + [23287] = "Knight-Lieutenant\'s Plate Greaves", + [23288] = "Knight-Lieutenant\'s Satin Handwraps", + [23289] = "Knight-Lieutenant\'s Satin Walkers", + [23290] = "Knight-Lieutenant\'s Silk Handwraps", + [23291] = "Knight-Lieutenant\'s Silk Walkers", + [23292] = "Knight-Captain\'s Chain Hauberk", + [23293] = "Knight-Captain\'s Chain Legguards", + [23294] = "Knight-Captain\'s Dragonhide Chestpiece", + [23295] = "Knight-Captain\'s Dragonhide Leggings", + [23296] = "Knight-Captain\'s Dreadweave Legguards", + [23297] = "Knight-Captain\'s Dreadweave Tunic", + [23298] = "Knight-Captain\'s Leather Chestpiece", + [23299] = "Knight-Captain\'s Leather Legguards", + [23300] = "Knight-Captain\'s Plate Hauberk", + [23301] = "Knight-Captain\'s Plate Leggings", + [23302] = "Knight-Captain\'s Satin Legguards", + [23303] = "Knight-Captain\'s Satin Tunic", + [23304] = "Knight-Captain\'s Silk Legguards", + [23305] = "Knight-Captain\'s Silk Tunic", + [23306] = "Lieutenant Commander\'s Chain Helm", + [23307] = "Lieutenant Commander\'s Chain Shoulders", + [23308] = "Lieutenant Commander\'s Dragonhide Headguard", + [23309] = "Lieutenant Commander\'s Dragonhide Shoulders", + [23310] = "Lieutenant Commander\'s Dreadweave Cowl", + [23311] = "Lieutenant Commander\'s Dreadweave Spaulders", + [23312] = "Lieutenant Commander\'s Leather Helm", + [23313] = "Lieutenant Commander\'s Leather Shoulders", + [23314] = "Lieutenant Commander\'s Plate Helm", + [23315] = "Lieutenant Commander\'s Plate Shoulders", + [23316] = "Lieutenant Commander\'s Satin Hood", + [23317] = "Lieutenant Commander\'s Satin Mantle", + [23318] = "Lieutenant Commander\'s Silk Cowl", + [23319] = "Lieutenant Commander\'s Silk Mantle", + [23320] = "Tablet of Flame Shock VI", + [23323] = "Crown of the Fire Festival", + [23324] = "Mantle of the Fire Festival", + [23325] = "[PH] Picnic Parcel", + [23326] = "Midsummer Sausage", + [23327] = "Fire-toasted Bun", + [23328] = "Monster - Sword2H, Instructor Razuvious", + [23356] = "Monster - Shield, Skullflame", + [23360] = "Head of Instructor Razuvious", + [23369] = "Monster - Dagger, Claw of Chromaggus", + [23379] = "Cinder Bracers", + [23418] = "Test Sapper Charge", + [23435] = "Elderberry Pie", + [23451] = "Grand Marshal\'s Mageblade", + [23452] = "Grand Marshal\'s Tome of Power", + [23453] = "Grand Marshal\'s Tome of Restoration", + [23454] = "Grand Marshal\'s Warhammer", + [23455] = "Grand Marshal\'s Demolisher", + [23456] = "Grand Marshal\'s Swiftblade", + [23464] = "High Warlord\'s Battle Mace", + [23465] = "High Warlord\'s Destroyer", + [23466] = "High Warlord\'s Spellblade", + [23467] = "High Warlord\'s Quickblade", + [23468] = "High Warlord\'s Tome of Destruction", + [23469] = "High Warlord\'s Tome of Mending", + [23545] = "Power of the Scourge", + [23547] = "Resilience of the Scourge", + [23548] = "Might of the Scourge", + [23549] = "Fortitude of the Scourge", + [23557] = "Larvae of the Great Worm", + [23558] = "The Burrower\'s Shell", + [23567] = "[PH] Silithus PvP Dust [DEP]", + [23570] = "Jom Gabbar", + [23577] = "The Hungering Cold", + [23578] = "Diet McWeaksauce", + [23579] = "The McWeaksauce Classic", + [23582] = "Monster - Lady Blameux", + [23583] = "Monster - Sir Zeliek", + [23656] = "Promotion Test Item", + [23663] = "Girdle of Elemental Fury", + [23664] = "Pauldrons of Elemental Fury", + [23665] = "Leggings of Elemental Fury", + [23666] = "Belt of the Grand Crusader", + [23667] = "Spaulders of the Grand Crusader", + [23668] = "Leggings of the Grand Crusader", + [23683] = "Crystal Flake Throat Lozenge", + [23684] = "Crystal Infused Bandage", + [23689] = "Manual: Crystal Infused Bandage", + [23690] = "Recipe: Crystal Flake Throat Lozenge", + [23696] = "[PH] Potion of Heightened Senses [DEP]", + [23698] = "[PH] Nature Resist Potion [DEP]", + [23699] = "[PH] Light Consumable [DEP]", + [23700] = "[PH] Glorious Standard of the Alliance [DEP]", + [23701] = "[PH] Victorious Standard of the Horde [DEP]", + [23705] = "Tabard of Flame", + [23709] = "Tabard of Frost", + [23710] = "Upperdeck Tabard #3", + [23712] = "White Tiger Cub", + [23713] = "Hippogryph Hatchling", + [23714] = "Perpetual Purple Firework", + [23715] = "Permanent Lung Juice Cocktail", + [23716] = "Carved Ogre Idol", + [23718] = "Permanent Ground Scorpok Assay", + [23719] = "Permanent Cerebral Cortex Compound", + [23720] = "Riding Turtle", + [23721] = "Permanent Gizzard Gum", + [23722] = "Permanent R.O.I.D.S.", + [23725] = "QAEnchant Fiery Weapon", + [23727] = "QAEnchant Gloves +5 Fishing", + [23728] = "QAEnchant Gloves Riding Skill", + [23743] = "Monster - Sword 1H - Widow\'s Remorse", + [23794] = "Permanent Sheen of Zanza", + [23795] = "Permanent Spirit of Zanza", + [23796] = "Permanent Swiftness of Zanza", + [24071] = "Bland Dagger", + [24101] = "Book of Ferocious Bite V", + [24102] = "Manual of Eviscerate IX", + [24222] = "The Shadowfoot Stabber", + [24231] = "Coarse Snuff", + [24232] = "Shabby Knot", + [24281] = "Carved Ivory Bone", + [24282] = "Rogue\'s Diary", + [24283] = "An Antique Gun", + [24358] = "QATest +1000 Spell Dmg Ring", + [24418] = "Monster - Dagger Badass Naxx", + [25818] = "Monster - Shield, Legion", +} + +-- Source: https://raw.githubusercontent.com/shagu/pfQuest-turtle/master/db/enUS/items-turtle.lua +RelationshipsQuestAndItemBrowserData["items"]["enUS-turtle"] = { + [1] = "Spring White Rabbit Headband", + [2] = "Ebon Gryphon", + [3] = "Snowy Gryphon", + [4] = "Armored Snowy Gryphon", + [5] = "Armored Ebon Gryphon", + [6] = "Argent Hippogryph", + [7] = "The Greatest Wizzard Hat", + [8] = "The Greatest Wizzard Hat", + [9] = "Spring Pink Rabbit Headband", + [10] = "Gamemaster\'s Broom of Doom", + [11] = "Spring Yellow Rabbit Headband", + [12] = "Tome of Disguise: Forest Dryad", + [13] = "N.E.R.F. (Nefarious Efficiency Reduction Formula)", + [14] = "Spring Brown Rabbit Headband", + [15] = "Tome of Disguise: Frost Dryad", + [16] = "Pattern: Harness of the High Thane", + [17] = "Sunsworn Cape", + [18] = "Revantusk Cape", + [19] = "Alah\'Thalas Cape", + [20] = "Sun-Lute of the Phoenix King", + [21] = "Arcanite Ripper", + [22] = "Spring Blue Rabbit Headband", + [23] = "Tome of Disguise: Mirkfallon Dryad", + [24] = "Formula: Enchant Bracer - Agility", + [26] = "Thalassian Staff", + [27] = "Thalassian Dagger", + [28] = "Thalassian Mace", + [29] = "Spring Black Rabbit Headband", + [30] = "Tome of Disguise: Twisted Grove Dryad", + [31] = "Formula: Enchant Boots - Lesser Intellect", + [32] = "Everlook Broadcasting Co. Airtime Voucher", + [33] = "Spring Butterfly Crown", + [34] = "Tome of Disguise: Amberleaf Dryad", + [41] = "Forest Wisp", + [62] = "Azure Rose Garland Crown", + [63] = "Tome of Disguise: Lunar Dryad", + [64] = "Fiery Cloak", + [65] = "Dragonmaw Armor Kit", + [66] = "Gold Belt Buckle", + [67] = "Dragonscale Belt Buckle", + [68] = "The Great Goo\'dini Elixir", + [69] = "Pattern: Dragonmaw Armor Kit", + [70] = "Plans: Steel Belt Buckle", + [71] = "Plans: Gold Belt Buckle", + [72] = "Flame Keeper\'s Shirt", + [73] = "Shirt of the Midsummer Solstice", + [74] = "Pattern: Dragonmaw Gloves", + [75] = "Pattern: Stormreaver Gloves", + [76] = "Plans: Refined Dwarven Necklace", + [77] = "Plans: Ancient Dwarven Gemstone", + [78] = "Web-Wrapped Shirt of Misfortune", + [81] = "Rose Garland Crown", + [82] = "Dark Iron Belt Buckle", + [83] = "Recipe: Elixir of Rapid Growth", + [84] = "Flame Keeper\'s Crown", + [86] = "Rose Bow Corset Shirt", + [87] = "Enchanted Thorium Belt Buckle", + [88] = "Plans: Dragonscale Belt Buckle", + [94] = "Lavender Bow Corset Shirt", + [95] = "Darkspear Cape", + [96] = "Darnassus Cape", + [97] = "Gnomeregan Cape", + [98] = "Orgrimmar Cape", + [99] = "Sunstrider Cape", + [100] = "Stormwind Cape", + [101] = "Thunder Bluff Cape", + [102] = "Undercity Cape", + [103] = "Obsidian Belt Buckle", + [104] = "Plans: Dark Iron Belt Buckle", + [105] = "_", + [111] = "The Lunatic King\'s Crown", + [112] = "Mint Bow Corset Shirt", + [113] = "Plans: Truesilver Belt Buckle", + [114] = "_", + [115] = "_", + [119] = "Onyx Bow Corset Shirt", + [123] = "Gardenia Bow Corset Shirt", + [124] = "Plans: Enchanted Thorium Belt Buckle", + [125] = "_", + [126] = "_", + [128] = "Lemon Bow Corset Shirt", + [130] = "Peach Bow Corset Shirt", + [131] = "Steel Belt Buckle", + [132] = "Plans: Obsidian Belt Buckle", + [133] = "_", + [134] = "_", + [135] = "_", + [136] = "_", + [138] = "New Leaf Bow Corset Shirt", + [142] = "Bluebell Bow Corset Shirt", + [144] = "Rose Spring Shorts", + [149] = "Bluebell Spring Shorts", + [150] = "_", + [151] = "Truesilver Belt Buckle", + [155] = "Lavender Spring Shorts", + [156] = "Refined Dwarven Necklace", + [157] = "_", + [160] = "Mint Spring Shorts", + [161] = "Angered Crustacean", + [183] = "Gardenia Spring Shorts", + [184] = "_", + [192] = "_", + [196] = "Lemon Spring Shorts", + [204] = "Peach Spring Shorts", + [211] = "New Leaf Spring Shorts", + [212] = "Assassin\'s Guild Shroud", + [240] = "Lavender Spring Ritual Robes", + [288] = "Peach Spring Ritual Robes", + [289] = "Tome of the Wild Path", + [415] = "Yellow Spring Ritual Robes", + [423] = "Spring Night Ritual Robes", + [446] = "New Leaf Spring Blouse", + [527] = "_", + [538] = "Rose Spring Blouse", + [557] = "Bluebell Spring Blouse", + [648] = "Lavender Spring Blouse", + [712] = "Mint Spring Blouse", + [715] = "Onyx Spring Blouse", + [734] = "Gardenia Spring Blouse", + [736] = "Lemon Spring Blouse", + [741] = "Peach Spring Blouse", + [746] = "_", + [749] = "Shirt of the Midsummer Sunset", + [751] = "Shirt of the Midsummer Twilight", + [761] = "_", + [784] = "Tome of Disguise: Keeper of the Grove", + [786] = "_", + [788] = "_", + [806] = "_", + [807] = "_", + [808] = "_", + [823] = "_", + [836] = "_", + [842] = "_", + [855] = "_", + [875] = "_", + [877] = "_", + [883] = "_", + [894] = "_", + [898] = "_", + [900] = "_", + [901] = "_", + [902] = "_", + [903] = "_", + [905] = "_", + [906] = "_", + [907] = "_", + [908] = "_", + [909] = "_", + [917] = "_", + [930] = "_", + [931] = "_", + [941] = "_", + [949] = "Tome of Disguise: Forest Warden", + [950] = "Stormwrought Deathsteed", + [951] = "Tome of Disguise: Winter Forest Warden", + [952] = "Tome of Disguise: Mirkfallon Warden", + [953] = "Tome of Disguise: Twisted Grove Warden", + [956] = "Tome of Disguise: Amberleaf Protector", + [958] = "_", + [960] = "_", + [964] = "Finely-Tailored Linen Shirt", + [965] = "_", + [996] = "_", + [1014] = "_", + [1016] = "_", + [1018] = "_", + [1020] = "_", + [1021] = "_", + [1022] = "_", + [1023] = "_", + [1024] = "_", + [1025] = "_", + [1026] = "_", + [1027] = "_", + [1028] = "_", + [1041] = "Ancient Black Wolf", + [1042] = "_", + [1043] = "_", + [1044] = "_", + [1046] = "_", + [1047] = "_", + [1078] = "_", + [1099] = "_", + [1115] = "_", + [1122] = "_", + [1123] = "_", + [1124] = "_", + [1125] = "_", + [1128] = "_", + [1132] = "Timber Wolf", + [1133] = "_", + [1134] = "Gray Wolf", + [1157] = "_", + [1162] = "_", + [1163] = "_", + [1165] = "_", + [1170] = "_", + [1174] = "_", + [1184] = "_", + [1186] = "_", + [1192] = "_", + [1253] = "_", + [1255] = "_", + [1258] = "_", + [1259] = "_", + [1266] = "_", + [1267] = "_", + [1268] = "_", + [1269] = "_", + [1272] = "_", + [1279] = "_", + [1281] = "_", + [1298] = "_", + [1311] = "_", + [1312] = "_", + [1313] = "_", + [1321] = "_", + [1323] = "_", + [1324] = "_", + [1335] = "_", + [1350] = "_", + [1354] = "_", + [1363] = "_", + [1371] = "_", + [1379] = "_", + [1385] = "_", + [1392] = "_", + [1397] = "_", + [1398] = "_", + [1403] = "_", + [1424] = "_", + [1432] = "_", + [1435] = "_", + [1444] = "_", + [1460] = "Black Stallion", + [1472] = "_", + [1492] = "_", + [1500] = "_", + [1508] = "_", + [1527] = "_", + [1533] = "_", + [1535] = "_", + [1544] = "_", + [1545] = "_", + [1599] = "_", + [1612] = "_", + [1622] = "_", + [1638] = "_", + [1649] = "_", + [1654] = "_", + [1655] = "_", + [1663] = "_", + [1672] = "_", + [1684] = "_", + [1689] = "_", + [1690] = "_", + [1691] = "_", + [1692] = "_", + [1693] = "_", + [1694] = "_", + [1695] = "_", + [1698] = "_", + [1699] = "_", + [1700] = "_", + [1704] = "_", + [1719] = "_", + [1724] = "_", + [1736] = "_", + [1854] = "_", + [1878] = "_", + [1880] = "_", + [1912] = "_", + [1914] = "_", + [1915] = "_", + [1918] = "_", + [1924] = "_", + [1940] = "_", + [1948] = "_", + [1950] = "_", + [1960] = "_", + [1963] = "_", + [1969] = "_", + [1977] = "_", + [1995] = "_", + [1999] = "_", + [2002] = "_", + [2003] = "_", + [2012] = "_", + [2038] = "_", + [2045] = "_", + [2050] = "_", + [2060] = "_", + [2071] = "_", + [2090] = "The Angler\'s Throne", + [2103] = "_", + [2104] = "_", + [2106] = "_", + [2107] = "_", + [2115] = "_", + [2170] = "_", + [2189] = "_", + [2191] = "_", + [2197] = "Dwarven Battle Loaf", + [2206] = "_", + [2248] = "_", + [2255] = "_", + [2275] = "_", + [2301] = "_", + [2305] = "_", + [2306] = "_", + [2322] = "_", + [2323] = "_", + [2363] = "_", + [2404] = "_", + [2405] = "_", + [2410] = "Smoky Wooden Torch", + [2411] = "Black Stallion", + [2412] = "_", + [2414] = "Pinto", + [2415] = "_", + [2461] = "_", + [2462] = "_", + [2478] = "_", + [2513] = "_", + [2514] = "_", + [2517] = "_", + [2518] = "_", + [2540] = "Gamemaster\'s Blade of Silence", + [2541] = "Gamemaster\'s Blade of Frost", + [2543] = "Gamemaster\'s Medallion", + [2554] = "_", + [2573] = "_", + [2574] = "_", + [2588] = "_", + [2599] = "_", + [2600] = "_", + [2602] = "_", + [2638] = "_", + [2647] = "_", + [2655] = "_", + [2714] = "Iron Lantern", + [2789] = "_", + [2790] = "_", + [2791] = "_", + [2792] = "_", + [2793] = "_", + [2803] = "_", + [2804] = "_", + [2811] = "_", + [2812] = "_", + [2814] = "_", + [2826] = "_", + [2884] = "Goblin\'s Party Fizzler", + [2918] = "_", + [2945] = "_", + [2948] = "_", + [2952] = "_", + [2993] = "_", + [2994] = "_", + [2995] = "_", + [3001] = "_", + [3007] = "_", + [3015] = "_", + [3029] = "_", + [3031] = "_", + [3032] = "_", + [3038] = "_", + [3043] = "_", + [3046] = "_", + [3050] = "_", + [3051] = "_", + [3052] = "_", + [3054] = "_", + [3059] = "_", + [3060] = "_", + [3061] = "_", + [3062] = "_", + [3063] = "_", + [3064] = "_", + [3068] = "_", + [3077] = "_", + [3104] = "_", + [3105] = "_", + [3106] = "_", + [3109] = "_", + [3128] = "_", + [3136] = "_", + [3145] = "_", + [3147] = "_", + [3148] = "_", + [3149] = "_", + [3150] = "_", + [3159] = "_", + [3215] = "_", + [3219] = "_", + [3221] = "_", + [3226] = "_", + [3232] = "_", + [3242] = "Ebon Reaver\'s Attire", + [3249] = "_", + [3271] = "_", + [3298] = "_", + [3333] = "_", + [3338] = "_", + [3359] = "_", + [3367] = "Farmer\'s Pitchfork", + [3398] = "_", + [3410] = "_", + [3436] = "_", + [3441] = "_", + [3459] = "_", + [3479] = "_", + [3500] = "_", + [3501] = "_", + [3503] = "_", + [3504] = "_", + [3507] = "_", + [3513] = "_", + [3519] = "_", + [3523] = "_", + [3524] = "_", + [3525] = "_", + [3532] = "_", + [3534] = "_", + [3539] = "_", + [3540] = "_", + [3543] = "_", + [3544] = "_", + [3548] = "_", + [3549] = "_", + [3557] = "_", + [3568] = "_", + [3579] = "_", + [3580] = "_", + [3584] = "_", + [3624] = "_", + [3646] = "_", + [3677] = "_", + [3686] = "_", + [3687] = "_", + [3705] = "_", + [3746] = "_", + [3762] = "Adventurer\'s Satchel", + [3768] = "_", + [3773] = "_", + [3865] = "_", + [3878] = "_", + [3881] = "_", + [3883] = "_", + [3884] = "_", + [3885] = "_", + [3886] = "_", + [3887] = "_", + [3888] = "_", + [3895] = "_", + [3896] = "_", + [3933] = "_", + [3934] = "_", + [4081] = "_", + [4095] = "_", + [4156] = "_", + [4163] = "_", + [4191] = "_", + [4192] = "_", + [4193] = "_", + [4222] = "_", + [4224] = "_", + [4227] = "_", + [4229] = "_", + [4260] = "Guardian Bracers", + [4300] = "Pattern: Guardian Bracers", + [4418] = "_", + [4427] = "_", + [4431] = "_", + [4442] = "_", + [4451] = "_", + [4452] = "_", + [4475] = "_", + [4486] = "_", + [4501] = "_", + [4523] = "_", + [4559] = "_", + [4573] = "_", + [4574] = "_", + [4578] = "_", + [4579] = "_", + [4620] = "_", + [4642] = "_", + [4657] = "_", + [4664] = "_", + [4667] = "_", + [4670] = "_", + [4673] = "_", + [4679] = "_", + [4682] = "_", + [4685] = "_", + [4688] = "_", + [4691] = "_", + [4730] = "_", + [4754] = "_", + [4761] = "_", + [4764] = "_", + [4773] = "_", + [4774] = "_", + [4811] = "_", + [4812] = "_", + [4815] = "_", + [4839] = "_", + [4842] = "_", + [4853] = "_", + [4855] = "_", + [4856] = "_", + [4857] = "_", + [4858] = "_", + [4868] = "Scorched Heart", + [4884] = "_", + [4885] = "_", + [4889] = "_", + [4899] = "_", + [4900] = "_", + [4901] = "_", + [4902] = "_", + [4912] = "_", + [4927] = "_", + [4934] = "_", + [4943] = "_", + [4950] = "Dustwrought Cleaver", + [4955] = "_", + [4956] = "_", + [4981] = "Adventurer\'s Belt Pouch", + [4985] = "_", + [4996] = "_", + [4997] = "_", + [5015] = "_", + [5031] = "_", + [5032] = "_", + [5033] = "_", + [5034] = "_", + [5035] = "_", + [5036] = "_", + [5037] = "_", + [5039] = "_", + [5041] = "_", + [5053] = "_", + [5070] = "_", + [5090] = "_", + [5091] = "_", + [5106] = "_", + [5144] = "_", + [5146] = "_", + [5157] = "_", + [5159] = "_", + [5161] = "_", + [5162] = "_", + [5171] = "_", + [5222] = "_", + [5226] = "_", + [5228] = "_", + [5230] = "_", + [5231] = "_", + [5235] = "Cultist\'s Firestick", + [5290] = "_", + [5294] = "_", + [5295] = "_", + [5296] = "_", + [5297] = "_", + [5298] = "_", + [5307] = "_", + [5308] = "_", + [5333] = "_", + [5358] = "_", + [5365] = "_", + [5372] = "_", + [5378] = "_", + [5384] = "_", + [5407] = "_", + [5408] = "_", + [5409] = "_", + [5417] = "_", + [5418] = "_", + [5434] = "_", + [5436] = "_", + [5438] = "Grelda\'s Poison Vial", + [5449] = "_", + [5450] = "_", + [5453] = "_", + [5454] = "_", + [5515] = "_", + [5531] = "_", + [5545] = "_", + [5546] = "Medivh\'s Cozy Pajamas", + [5548] = "_", + [5549] = "_", + [5550] = "_", + [5551] = "_", + [5552] = "_", + [5553] = "_", + [5554] = "_", + [5555] = "_", + [5556] = "_", + [5557] = "_", + [5558] = "_", + [5559] = "_", + [5560] = "_", + [5561] = "_", + [5562] = "_", + [5563] = "_", + [5564] = "_", + [5607] = "_", + [5625] = "_", + [5651] = "_", + [5652] = "_", + [5653] = "_", + [5655] = "Chestnut Mare", + [5656] = "Brown Horse", + [5663] = "Ancient Red Wolf", + [5665] = "Dire Wolf", + [5668] = "Brown Wolf", + [5688] = "_", + [5828] = "_", + [5874] = "_", + [5875] = "_", + [5896] = "_", + [5953] = "_", + [5954] = "_", + [6036] = "_", + [6128] = "_", + [6141] = "_", + [6142] = "_", + [6143] = "_", + [6196] = "Noboru\'s Truncheon", + [6213] = "_", + [6255] = "_", + [6437] = "_", + [6589] = "Glimmering Ring", + [6606] = "_", + [6639] = "_", + [6673] = "_", + [6674] = "_", + [6683] = "_", + [6698] = "_", + [6707] = "_", + [6708] = "_", + [6711] = "_", + [6724] = "_", + [6728] = "_", + [6766] = "Flayed Demon Skin (old2)", + [6896] = "_", + [7009] = "Survivalist\'s Skinning Knife", + [7010] = "Driftwood Fishing Pole", + [7011] = "Rugged String", + [7012] = "Liferoot Healing Brew", + [7013] = "Croak Cannon", + [7066] = "_", + [7167] = "_", + [7169] = "_", + [7171] = "_", + [7248] = "_", + [7299] = "_", + [7677] = "_", + [7707] = "_", + [7743] = "Dragon Boat Festival Souvenirs", + [7762] = "Dragon-Shaped Cookie", + [7788] = "Dragon-Shaped Cookie", + [7814] = "Dragon-Shaped Cookie", + [7849] = "Dragon-Shaped Cookie", + [7873] = "Dragon-Shaped Cookie", + [7940] = "Dragon-Shaped Cookie", + [7996] = "Worn Fishing Hat", + [8000] = "Rustic Coil Ring", + [8164] = "_", + [8227] = "Dragon-Shaped Cookie", + [8485] = "Bombay", + [8486] = "Cornish Rex", + [8487] = "Orange Tabby", + [8488] = "Silver Tabby", + [8489] = "White Kitten", + [8490] = "Siamese", + [8491] = "Black Tabby", + [8492] = "Green Wing Macaw", + [8494] = "Hyacinth Macaw", + [8495] = "Senegal", + [8496] = "Cockatiel", + [8497] = "Snowshoe", + [8498] = "Emerald Whelpling", + [8499] = "Crimson Whelpling", + [8547] = "Formula: Powerful Smelling Salts", + [8583] = "_", + [8586] = "_", + [8588] = "Emerald Raptor", + [8590] = "_", + [8591] = "Turquoise Raptor", + [8592] = "Violet Raptor", + [8627] = "_", + [8628] = "_", + [8629] = "Striped Nightsaber", + [8630] = "Stranglethorn Tiger", + [8631] = "Striped Frostsaber", + [8632] = "Spotted Frostsaber", + [8633] = "_", + [8635] = "Ancient Nightsaber", + [8688] = "_", + [8795] = "Azure Silk Shoulders", + [9030] = "Restorative Potion", + [9042] = "_", + [9239] = "_", + [9338] = "Murloc Eye on a String", + [9376] = "_", + [9377] = "_", + [9464] = "_", + [9496] = "Defias Mage Drape", + [9888] = "_", + [10006] = "_", + [10037] = "_", + [10393] = "Undercity Cockroach", + [10422] = "_", + [10555] = "_", + [10585] = "Goblin Radio KABOOM-Box X23B76", + [10594] = "_", + [10596] = "_", + [10683] = "Adventurer\'s Knapsack", + [10822] = "Dark Whelpling", + [11026] = "Tree Frog", + [11027] = "Wood Frog", + [11110] = "Westfall Chicken", + [11170] = "_", + [11182] = "_", + [11183] = "_", + [11344] = "_", + [11345] = "_", + [11443] = "_", + [11474] = "Sprite Darter Hatchling", + [11613] = "_", + [11616] = "_", + [11663] = "_", + [11664] = "_", + [11666] = "_", + [11667] = "_", + [11670] = "_", + [11671] = "_", + [11672] = "_", + [11673] = "_", + [11676] = "_", + [11683] = "_", + [11825] = "Tiny Walking Bombling", + [11903] = "Corrupted Kitten", + [11979] = "Peridot Circle", + [12186] = "_", + [12187] = "_", + [12188] = "_", + [12189] = "_", + [12221] = "_", + [12222] = "_", + [12244] = "_", + [12245] = "_", + [12246] = "_", + [12264] = "Worg Pup", + [12302] = "Ancient Frostsaber", + [12303] = "Black Zulian Panther", + [12325] = "Spotted Leopard", + [12326] = "Tawny Leopard", + [12327] = "Golden Leopard", + [12330] = "_", + [12333] = "_", + [12351] = "Ancient Arctic Wolf", + [12353] = "White Stallion", + [12354] = "Palomino Stallion", + [12385] = "_", + [12407] = "_", + [12413] = "_", + [12423] = "_", + [12526] = "_", + [12529] = "Smolderweb Hatchling", + [12590] = "Felstriker", + [12686] = "Einhorn\'s Skinner", + [12767] = "_", + [12789] = "_", + [12860] = "Alah\'Thalas Library Book", + [12862] = "Burning Blade Grimoire", + [12895] = "Chestplate of the Chromatic Flight", + [12932] = "Scarlet Crusade Defender\'s Shield", + [12947] = "_", + [12948] = "_", + [12952] = "Gyth\'s Skull", + [12961] = "_", + [12962] = "_", + [12971] = "_", + [12972] = "_", + [13086] = "Winterspring Frostsaber", + [13092] = "_", + [13214] = "_", + [13242] = "_", + [13256] = "_", + [13285] = "The Blackrock Slicer", + [13294] = "_", + [13317] = "_", + [13324] = "Red & Blue Mechanostrider", + [13328] = "Ancient Black Ram", + [13334] = "Armored Green Deathcharger", + [13335] = "Rivendare\'s Deathcharger", + [13472] = "_", + [13516] = "_", + [13517] = "Recipe: Alchemist\'s Stone", + [13543] = "_", + [13586] = "_", + [13609] = "Simple Round Lantern", + [13610] = "Square Lantern", + [13642] = "_", + [13643] = "_", + [13644] = "_", + [13645] = "_", + [13646] = "_", + [13647] = "_", + [13648] = "_", + [13649] = "_", + [13650] = "_", + [13651] = "_", + [13652] = "_", + [13653] = "_", + [13654] = "_", + [13655] = "_", + [13656] = "_", + [13657] = "_", + [13658] = "_", + [13659] = "_", + [13660] = "_", + [13661] = "_", + [13662] = "_", + [13663] = "_", + [13664] = "_", + [13665] = "_", + [13666] = "_", + [13667] = "_", + [13668] = "_", + [13669] = "_", + [13670] = "_", + [13671] = "_", + [13672] = "_", + [13673] = "_", + [13674] = "_", + [13675] = "_", + [13676] = "_", + [13677] = "_", + [13678] = "_", + [13679] = "_", + [13680] = "_", + [13681] = "_", + [13682] = "_", + [13683] = "_", + [13684] = "_", + [13685] = "_", + [13686] = "_", + [13687] = "_", + [13688] = "_", + [13689] = "_", + [13690] = "_", + [13691] = "_", + [13692] = "_", + [13693] = "_", + [13694] = "_", + [13695] = "_", + [13696] = "_", + [13697] = "_", + [13710] = "_", + [13711] = "_", + [13712] = "_", + [13713] = "_", + [13714] = "_", + [13715] = "_", + [13716] = "_", + [13717] = "_", + [13726] = "_", + [13727] = "_", + [13728] = "_", + [13729] = "_", + [13730] = "_", + [13731] = "_", + [13732] = "_", + [13733] = "_", + [13734] = "_", + [13735] = "_", + [13736] = "_", + [13737] = "_", + [13738] = "_", + [13739] = "_", + [13740] = "_", + [13741] = "_", + [13742] = "_", + [13743] = "_", + [13744] = "_", + [13745] = "_", + [13746] = "_", + [13747] = "_", + [13748] = "_", + [13749] = "_", + [13762] = "_", + [13763] = "_", + [13764] = "_", + [13765] = "_", + [13766] = "_", + [13767] = "_", + [13768] = "_", + [13769] = "_", + [13770] = "_", + [13771] = "_", + [13772] = "_", + [13773] = "_", + [13774] = "_", + [13775] = "_", + [13776] = "_", + [13777] = "_", + [13778] = "_", + [13779] = "_", + [13780] = "_", + [13781] = "_", + [13782] = "_", + [13783] = "_", + [13784] = "_", + [13785] = "_", + [13786] = "_", + [13787] = "_", + [13788] = "_", + [13789] = "_", + [13790] = "_", + [13791] = "_", + [13792] = "_", + [13793] = "_", + [13794] = "_", + [13795] = "_", + [13796] = "_", + [13797] = "_", + [13798] = "_", + [13799] = "_", + [13800] = "_", + [13801] = "_", + [13802] = "_", + [13803] = "_", + [13804] = "_", + [13805] = "_", + [13806] = "_", + [13807] = "_", + [13808] = "_", + [13809] = "_", + [13896] = "Dark Green Wedding Hanbok", + [13919] = "_", + [13936] = "_", + [14062] = "_", + [14363] = "_", + [14389] = "Tattered Gnomish Shoulders", + [14526] = "Pattern: Mooncloth", + [14597] = "_", + [14609] = "_", + [14689] = "_", + [14690] = "_", + [14691] = "_", + [14692] = "_", + [14693] = "_", + [14694] = "_", + [14695] = "_", + [14696] = "_", + [14697] = "_", + [14698] = "_", + [14699] = "_", + [14700] = "_", + [14701] = "_", + [14702] = "_", + [14703] = "_", + [14704] = "_", + [14705] = "_", + [14819] = "_", + [14883] = "_", + [14884] = "_", + [14885] = "_", + [14886] = "_", + [14887] = "_", + [14888] = "_", + [14889] = "_", + [14890] = "_", + [14891] = "_", + [14892] = "_", + [15089] = "_", + [15292] = "Ancient Green Kodo", + [15293] = "Ancient Teal Kodo", + [15410] = "Scale of Onyxia", + [15506] = "Grunt\'s Anklewraps", + [15888] = "_", + [15889] = "_", + [16022] = "Arcanite Dragonling", + [16024] = "_", + [16025] = "_", + [16061] = "_", + [16062] = "_", + [16063] = "_", + [16064] = "_", + [16065] = "_", + [16066] = "_", + [16067] = "_", + [16068] = "_", + [16069] = "_", + [16070] = "_", + [16071] = "_", + [16074] = "_", + [16075] = "_", + [16076] = "_", + [16077] = "_", + [16078] = "_", + [16079] = "_", + [16080] = "_", + [16081] = "_", + [16086] = "_", + [16102] = "_", + [16103] = "_", + [16104] = "_", + [16105] = "_", + [16106] = "_", + [16107] = "_", + [16108] = "_", + [16109] = "_", + [16116] = "_", + [16117] = "_", + [16118] = "_", + [16119] = "_", + [16120] = "_", + [16121] = "_", + [16122] = "_", + [16123] = "_", + [16124] = "_", + [16125] = "_", + [16126] = "_", + [16127] = "_", + [16128] = "_", + [16129] = "_", + [16130] = "_", + [16131] = "_", + [16132] = "_", + [16133] = "_", + [16134] = "_", + [16135] = "_", + [16136] = "_", + [16137] = "_", + [16138] = "_", + [16139] = "_", + [16140] = "_", + [16141] = "_", + [16142] = "_", + [16143] = "_", + [16144] = "_", + [16145] = "_", + [16146] = "_", + [16147] = "_", + [16148] = "_", + [16149] = "_", + [16150] = "_", + [16151] = "_", + [16152] = "_", + [16153] = "_", + [16154] = "_", + [16155] = "_", + [16156] = "_", + [16157] = "_", + [16158] = "_", + [16159] = "_", + [16160] = "_", + [16161] = "_", + [16162] = "_", + [16163] = "_", + [16164] = "_", + [16165] = "_", + [16172] = "_", + [16173] = "_", + [16174] = "_", + [16175] = "_", + [16176] = "_", + [16177] = "_", + [16178] = "_", + [16179] = "_", + [16180] = "_", + [16181] = "_", + [16182] = "_", + [16183] = "_", + [16184] = "_", + [16185] = "_", + [16186] = "_", + [16187] = "_", + [16188] = "_", + [16211] = "_", + [16212] = "_", + [16213] = "_", + [16334] = "_", + [16338] = "_", + [16340] = "_", + [16343] = "_", + [16344] = "_", + [16668] = "Kilt of Elements", + [16691] = "Devout Sandals", + [16694] = "Devout Skirt", + [16800] = "Arcanist Boots", + [16808] = "Felheart Horns", + [16839] = "Earthfury Gloves", + [16841] = "Earthfury Chestpiece", + [16843] = "Earthfury Pants", + [16844] = "Earthfury Spaulders", + [16853] = "Lawbringer Breastplate", + [16860] = "Lawbringer Gloves", + [16899] = "Stormrage Gloves", + [16927] = "Nemesis Slippers", + [16930] = "Nemesis Pants", + [16943] = "Bindings of Ten Storms", + [16944] = "Sash of Ten Storms", + [16947] = "Visor of Ten Storms", + [16950] = "Raiments of Ten Storms", + [16951] = "Judgement Bracers", + [16955] = "Judgement Helm", + [16956] = "Judgement Gloves", + [16957] = "Judgement Boots", + [17041] = "The Blazing Pan", + [17122] = "_", + [17162] = "_", + [17163] = "_", + [17195] = "Fake Mistletoe", + [17342] = "_", + [17343] = "_", + [17382] = "Moonshadow Glaive", + [17412] = "_", + [17802] = "_", + [17824] = "_", + [17825] = "_", + [17826] = "_", + [17827] = "_", + [17828] = "_", + [17829] = "_", + [17830] = "_", + [17831] = "_", + [17832] = "_", + [17833] = "_", + [17834] = "_", + [17835] = "_", + [17836] = "_", + [17837] = "_", + [17838] = "_", + [17839] = "_", + [17840] = "_", + [17841] = "_", + [17842] = "_", + [17843] = "_", + [17844] = "_", + [17845] = "_", + [17846] = "_", + [17847] = "_", + [17848] = "_", + [17851] = "_", + [17852] = "_", + [17853] = "_", + [17854] = "_", + [17855] = "_", + [17856] = "_", + [17857] = "_", + [17858] = "_", + [17859] = "_", + [17860] = "_", + [17861] = "_", + [17862] = "_", + [17882] = "_", + [17883] = "_", + [17884] = "_", + [17885] = "_", + [17886] = "_", + [17887] = "_", + [17888] = "_", + [17889] = "_", + [17890] = "_", + [17891] = "_", + [17892] = "_", + [17893] = "_", + [17894] = "_", + [17895] = "_", + [17896] = "_", + [17897] = "_", + [17898] = "_", + [17899] = "_", + [17910] = "_", + [17911] = "_", + [18063] = "_", + [18105] = "_", + [18106] = "_", + [18161] = "_", + [18162] = "_", + [18163] = "_", + [18164] = "_", + [18165] = "_", + [18241] = "Black War Steed", + [18242] = "Black War Tiger", + [18245] = "Black War Wolf", + [18246] = "Black War Raptor", + [18248] = "Armored Red Deathcharger", + [18311] = "Quel\'dorei Channeling Rod", + [18422] = "Head of Onyxia (Horde)", + [18423] = "Head of Onyxia (Alliance)", + [18439] = "_", + [18565] = "_", + [18566] = "_", + [18589] = "_", + [18593] = "_", + [18599] = "_", + [18645] = "Gnomish Alarm-O-Bot", + [18666] = "_", + [18667] = "_", + [18668] = "_", + [18669] = "_", + [18732] = "_", + [18733] = "_", + [18747] = "_", + [18763] = "_", + [18764] = "_", + [18765] = "_", + [18766] = "Armored Frostsaber", + [18767] = "Armored Mistsaber", + [18768] = "Armored Dawnsaber", + [18772] = "Armored Green Mechanostrider", + [18773] = "Armored White Mechanostrider", + [18774] = "Armored Yellow Mechanostrider", + [18776] = "Armored Swift Palomino", + [18777] = "Armored Brown Steed", + [18778] = "Armored White Steed", + [18785] = "Armored White Ram", + [18786] = "Armored Brown Ram", + [18787] = "Armored Gray Ram", + [18788] = "Armored Blue Raptor", + [18789] = "Armored Olive Raptor", + [18790] = "Armored Orange Raptor", + [18791] = "Armored Purple Deathcharger", + [18793] = "Armored White Kodo", + [18794] = "Armored Brown Kodo", + [18795] = "Armored Gray Kodo", + [18796] = "Armored Brown Wolf", + [18797] = "Armored Timber Wolf", + [18798] = "Armored Gray Wolf", + [18800] = "_", + [18801] = "_", + [18843] = "Grand Marshal\'s Right Hand Blade", + [18847] = "Grand Marshal\'s Left Hand Blade", + [18881] = "_", + [18882] = "_", + [18902] = "Armored Stormsaber", + [18963] = "Albino Snapjaw", + [18964] = "Loggerhead Snapjaw", + [18965] = "Hawksbill Snapjaw", + [18966] = "Leatherback Snapjaw", + [18967] = "Olive Snapjaw", + [18968] = "_", + [18970] = "_", + [18971] = "_", + [18982] = "_", + [19002] = "Head of Nefarian (Horde)", + [19003] = "Head of Nefarian (Alliance)", + [19029] = "Frostwolf Howler", + [19055] = "Tiny Green Dragon", + [19122] = "_", + [19158] = "_", + [19160] = "Turtle WoW Tabard", + [19184] = "_", + [19185] = "_", + [19186] = "_", + [19187] = "_", + [19188] = "_", + [19189] = "_", + [19190] = "_", + [19191] = "_", + [19192] = "_", + [19193] = "_", + [19194] = "_", + [19195] = "_", + [19196] = "_", + [19197] = "_", + [19198] = "_", + [19199] = "_", + [19200] = "_", + [19201] = "_", + [19226] = "_", + [19285] = "_", + [19286] = "_", + [19294] = "_", + [19313] = "_", + [19314] = "_", + [19359] = "_", + [19427] = "_", + [19428] = "_", + [19455] = "_", + [19456] = "_", + [19457] = "_", + [19470] = "Emerald Key", + [19489] = "_", + [19490] = "_", + [19502] = "_", + [19503] = "_", + [19504] = "_", + [19622] = "_", + [19662] = "_", + [19670] = "Recipe: Ambersap Glazed Boar Ribs", + [19671] = "Recipe: Crawford Apple Tarte", + [19742] = "_", + [19743] = "_", + [19809] = "_", + [19810] = "_", + [19811] = "_", + [19837] = "_", + [19844] = "_", + [19847] = "_", + [19868] = "_", + [19872] = "Armored Razzashi Raptor", + [19879] = "_", + [19926] = "_", + [19932] = "_", + [19966] = "_", + [19985] = "_", + [20133] = "_", + [20135] = "_", + [20136] = "_", + [20137] = "_", + [20138] = "_", + [20139] = "_", + [20140] = "_", + [20141] = "_", + [20142] = "_", + [20143] = "_", + [20144] = "_", + [20145] = "_", + [20146] = "_", + [20149] = "_", + [20221] = "_", + [20267] = "_", + [20268] = "_", + [20269] = "_", + [20270] = "_", + [20271] = "_", + [20272] = "_", + [20273] = "_", + [20274] = "_", + [20275] = "_", + [20276] = "_", + [20277] = "_", + [20278] = "_", + [20279] = "_", + [20294] = "_", + [20324] = "_", + [20325] = "_", + [20326] = "_", + [20327] = "_", + [20328] = "_", + [20329] = "_", + [20330] = "_", + [20331] = "_", + [20332] = "_", + [20333] = "_", + [20334] = "_", + [20335] = "_", + [20336] = "_", + [20364] = "_", + [20370] = "_", + [20371] = "Murky", + [20372] = "_", + [20386] = "_", + [20445] = "_", + [20446] = "_", + [20470] = "_", + [20472] = "_", + [20474] = "_", + [20482] = "_", + [20483] = "_", + [20523] = "_", + [20529] = "_", + [20630] = "Gauntlets of the Shining Light", + [20651] = "_", + [20739] = "Mechanical Horse", + [20740] = "_", + [20880] = "_", + [20891] = "Neophyte\'s Robe", + [20893] = "Apprentice\'s Robe", + [20895] = "Apprentice\'s Boots", + [20896] = "Lookout\'s Pants", + [20897] = "Lookout\'s Shirt", + [20898] = "Lookout\'s Boots", + [20899] = "Warder\'s Pants", + [20900] = "Warder\'s Boots", + [20901] = "Warder\'s Shirt", + [20905] = "_", + [20952] = "Tome of Disguise: Bishop", + [20953] = "Tome of Disguise: King", + [20954] = "Tome of Disguise: Rook", + [21044] = "Winter Veil Reindeer", + [21101] = "_", + [21102] = "_", + [21124] = "_", + [21125] = "_", + [21127] = "_", + [21169] = "_", + [21170] = "_", + [21172] = "_", + [21193] = "_", + [21194] = "_", + [21195] = "_", + [21238] = "_", + [21274] = "_", + [21276] = "_", + [21302] = "Handbook of Lethal Poisons", + [21309] = "Tiny Snowman", + [21339] = "_", + [21353] = "Genesis Circlet", + [21354] = "Genesis Mantle", + [21355] = "Genesis Slippers", + [21373] = "Stormcaller\'s Greaves", + [21375] = "Stormcaller\'s Legplates", + [21376] = "Stormcaller\'s Epaulets", + [21388] = "Avenger\'s Sabatons", + [21389] = "Avenger\'s Chestplate", + [21390] = "Avenger\'s Leggings", + [21419] = "_", + [21420] = "_", + [21421] = "_", + [21422] = "_", + [21423] = "_", + [21424] = "_", + [21425] = "_", + [21426] = "_", + [21427] = "_", + [21428] = "_", + [21429] = "_", + [21430] = "_", + [21431] = "_", + [21432] = "_", + [21433] = "_", + [21434] = "_", + [21435] = "_", + [21437] = "_", + [21439] = "_", + [21440] = "_", + [21441] = "_", + [21442] = "_", + [21443] = "_", + [21444] = "_", + [21445] = "_", + [21446] = "_", + [21447] = "_", + [21448] = "_", + [21449] = "_", + [21450] = "_", + [21451] = "_", + [21516] = "_", + [21518] = "_", + [21628] = "_", + [21629] = "_", + [21630] = "_", + [21631] = "_", + [21632] = "_", + [21633] = "_", + [21634] = "_", + [21636] = "_", + [21637] = "_", + [21638] = "_", + [21641] = "_", + [21642] = "_", + [21643] = "_", + [21644] = "_", + [21646] = "_", + [21649] = "_", + [21653] = "_", + [21655] = "_", + [21656] = "_", + [21657] = "_", + [21658] = "_", + [21659] = "_", + [21660] = "_", + [21661] = "_", + [21662] = "_", + [21683] = "Mantle of the Redeemed Prophecy", + [21684] = "Mantle of the Fallen Prophet", + [21736] = "_", + [21739] = "_", + [21782] = "_", + [21797] = "_", + [21798] = "_", + [21799] = "_", + [21811] = "_", + [21832] = "_", + [21857] = "_", + [21923] = "_", + [21930] = "Juicy Kezan Fruitcake", + [21962] = "_", + [21963] = "_", + [21964] = "_", + [22020] = "_", + [22021] = "_", + [22022] = "_", + [22023] = "_", + [22024] = "_", + [22025] = "_", + [22026] = "_", + [22027] = "_", + [22028] = "_", + [22029] = "_", + [22030] = "_", + [22031] = "_", + [22032] = "_", + [22033] = "_", + [22034] = "_", + [22035] = "_", + [22036] = "_", + [22037] = "_", + [22038] = "_", + [22039] = "_", + [22040] = "_", + [22041] = "_", + [22042] = "_", + [22043] = "_", + [22045] = "_", + [22106] = "Moonheart Belt", + [22107] = "Moonheart Boots", + [22108] = "Moonheart Bracers", + [22109] = "Moonheart Cowl", + [22110] = "Moonheart Gloves", + [22111] = "Moonheart Kilt", + [22112] = "Moonheart Spaulders", + [22113] = "Moonheart Vest", + [22114] = "Gurky", + [22233] = "_", + [22235] = "Peddlefeet", + [22316] = "_", + [22424] = "Redemption Bracers", + [22426] = "Redemption Gloves", + [22427] = "Redemption Pants", + [22428] = "Redemption Helm", + [22431] = "Redemption Belt", + [22470] = "Earthshatter Belt", + [22485] = "_", + [22486] = "_", + [22494] = "Dreamwalker Belt", + [22495] = "Dreamwalker Bracers", + [22505] = "Plagueheart Pants", + [22511] = "Plagueheart Bracers", + [22515] = "Mantle of Faith", + [22584] = "_", + [22585] = "_", + [22586] = "_", + [22587] = "_", + [22588] = "_", + [22751] = "_", + [22780] = "Terky", + [22781] = "Poley", + [22805] = "_", + [22814] = "_", + [22817] = "_", + [22933] = "_", + [23002] = "Speedy", + [23015] = "Whiskers the Rat", + [23051] = "_", + [23083] = "Spirit of Summer", + [23086] = "_", + [23100] = "Idol of Fluidity", + [23162] = "_", + [23193] = "Black Deathcharger", + [23245] = "_", + [23271] = "_", + [23325] = "Shangtest Test Helmet", + [23418] = "_", + [23556] = "Worn Thalassian Sword", + [23567] = "_", + [23656] = "_", + [23696] = "_", + [23698] = "_", + [23699] = "_", + [23700] = "_", + [23701] = "_", + [23710] = "Darkmoon Faire Tabard", + [23714] = "Everlasting Firework", + [23720] = "Swift Riding Turtle", + [23725] = "_", + [23727] = "_", + [23728] = "_", + [23800] = "Violet Feral Raptor", + [23801] = "Obsidian Feral Raptor", + [23802] = "Blue Feral Raptor", + [23803] = "Red Feral Raptor", + [23804] = "Corrupted Feral Raptor", + [24101] = "Book of Ferocious Bite VI", + [24143] = "Initiate\'s Shirt", + [24145] = "Initiate\'s Pants", + [24146] = "Initiate\'s Boots", + [24358] = "_", + [26322] = "Blackened Leather Spaulders", + [29478] = "Black Unicorn", + [29939] = "Lucky Ring", + [29940] = "Swashbuckler\'s Signet", + [29941] = "Band of Sudden Wisdom", + [29950] = "Shadowgloss Lacquer", + [29951] = "Azureveil Tint", + [29952] = "Verdant Gleam", + [29953] = "Mossbloom Coating", + [29954] = "Frostleaf Shine", + [29955] = "Amethyst Pearl Gloss", + [29956] = "Rosepetal Varnish", + [29957] = "Twilight Enamel", + [29958] = "Crimson Kiss Stain", + [29959] = "Deepwater Sapphire Polish", + [29960] = "Sunstone Sheen", + [29980] = "Broken Stonemason\'s Guild Signet", + [30000] = "Black Tournament Charger", + [30001] = "Gilded Scarlet Charger", + [30002] = "Albino Riding Crocolisk", + [30003] = "Marsh Riding Crocolisk", + [30004] = "River Riding Crocolisk", + [30005] = "Swamp Riding Crocolisk", + [30006] = "Bronze Riding Crab", + [30007] = "Sandy Riding Crab ", + [30008] = "Dark Riding Crab", + [30009] = "Vermillion Riding Crab", + [30010] = "Infinite Crustacean", + [30011] = "Diamond Crustacean", + [30012] = "Black Thunder Lizard", + [30013] = "Azure Thunder Lizard", + [30014] = "Green Thunder Lizard", + [30015] = "Pale Thunder Lizard", + [30016] = "Red Thunder Lizard", + [30017] = "Onyxian Drake", + [30018] = "Emerald Drake", + [30019] = "Beige Riding Scorpid", + [30020] = "Black Riding Scorpid", + [30021] = "Blue Riding Scorpid", + [30022] = "Dark Iron Scorpid", + [30023] = "Golden Riding Scorpid", + [30024] = "Red Riding Scorpid", + [30025] = "Silver Riding Scorpid", + [30026] = "Desert Riding Scorpid", + [30040] = "Admiral Grumbleshell", + [30284] = "Toy Knight", + [30405] = "Southsea Reserve", + [30817] = "Simple Flour", + [30818] = "Maritime Gumbo", + [30819] = "Recipe: Maritime Gumbo", + [31825] = "Blazing Forge Kit", + [31826] = "Tome of Tactical Escape I", + [31827] = "Sacred Chalice", + [31828] = "Craftmaster\'s Toolbox", + [31829] = "Billy", + [36000] = "Kazgrim Test Druid Chest 1", + [36001] = "Kazgrim Test Druid Chest 2", + [36002] = "Kazgrim Test Druid Chest 3", + [36003] = "Kazgrim Test Druid Chest 4", + [36004] = "Shadow Lace Camisole", + [36005] = "kazgrim test troll voodoo mask", + [36006] = "Kazgrim Test Troll red Chest", + [36007] = "Kazgrim Test Troll red Boots", + [36008] = "Kazgrim Test Troll red Pants", + [36009] = "Kazgrim Test Troll red Gloves", + [36010] = "kazgrim test totem a", + [36011] = "kazgrim test totem b", + [36012] = "kazgrim test totem c", + [36013] = "kazgrim test totem d", + [36014] = "White Lace Camisole", + [36015] = "kazgrim test dk sword", + [36016] = "kazgrim test dk helm c blue", + [36017] = "Outland Exile Hood", + [36018] = "Draenic Wanderer Harness", + [36019] = "Harborage War-Mace", + [36500] = "Sunfire Fox", + [36501] = "Tangerine Wind Serpent", + [36502] = "Dark Wind Serpent", + [36503] = "Emerald Wind Serpent", + [36504] = "Azure Wind Serpent", + [36505] = "Crimson Sabercat Cub", + [36506] = "Alliance Lion Cub", + [36507] = "Spot", + [36508] = "Twilight Paws", + [36509] = "Black Panther Cub", + [36510] = "Tawny", + [36511] = "Nightsaber Cub", + [36512] = "Snow Cub", + [36513] = "Stangletorn Tiger Cub", + [36514] = "Frostsaber Cub", + [36515] = "Cheetah Cub", + [36516] = "Chestnut", + [36520] = "Heavenly War Dragon", + [36521] = "Swift War Turtle", + [36522] = "Despair", + [36523] = "Ruin", + [36524] = "Mayhem", + [36525] = "Rampage", + [36526] = "Swift Vermilion Serpent", + [36527] = "Swift Onyx Serpent", + [36528] = "Swift Azure Serpent", + [36529] = "Swift Jade Serpent", + [36530] = "Swift White Serpent", + [36531] = "Swift Golden Serpent", + [36532] = "Blazewing", + [36533] = "Swift Feylord", + [36534] = "White Living Statue", + [36535] = "Jade Living Statue", + [36536] = "Golden Living Statue", + [36537] = "Azure Living Statue", + [36538] = "Heavenly Onyx Serpent", + [36539] = "Heavenly Azure Serpent", + [36540] = "Heavenly Jade Serpent", + [36541] = "Heavenly Vermillion Serpent", + [36542] = "Lord of Ravens", + [36543] = "Galleon of the Drowned", + [36544] = "Swift Azshari Saber", + [36545] = "Infernal Fire", + [36546] = "Swift Nerubian Warspider", + [36550] = "Spotted Qiraji Battle Tank", + [36551] = "Black Drake", + [36552] = "Red Nerubian Bloodfeaster", + [36553] = "Green Nerubian Bloodfeaster", + [36554] = "White Nerubian Bloodfeaster", + [36555] = "Black Nerubian Bloodfeaster", + [36556] = "Sunwarmed Furline", + [36557] = "Arcane Furline", + [36558] = "Titanic Wombat", + [36559] = "Void-Infused Felbeast", + [36560] = "Anu\'relos, Flame\'s Guidance", + [36561] = "Armored War Lion", + [36562] = "Alliance Charger", + [36563] = "Victorious Horde Wolf", + [36564] = "Grey Marshjumper", + [36565] = "Blue Marshjumper", + [36566] = "Green Marshjumper", + [36567] = "Swamper", + [36568] = "Black War Scorpion", + [36569] = "Ember War Scorpion", + [36570] = "Emerald War Scorpion", + [36571] = "Treebeard the Ancient", + [36572] = "Squeakers", + [36573] = "Aquamarine Greatwyrm", + [36574] = "Golden Koi", + [36575] = "Enraged Bloodbeast", + [36576] = "Mossy Bloodbeast", + [36577] = "D.L.U. Rocket", + [36578] = "Golden Yak", + [36579] = "Nert\'s Steampounder", + [36580] = "Sewer Rat", + [36581] = "Blue Snapback Scuttler", + [36582] = "Orange Snapback Scuttler", + [36583] = "Reanimated Amani Raptor", + [36584] = "Gilded Zandalari Raptor", + [36585] = "Pig of Fortune", + [36586] = "Green Gargantuan Murloc", + [36587] = "Black Gargantuan Murloc", + [36588] = "Blue Gargantuan Murloc", + [36589] = "Orange Gargantuan Murloc", + [36590] = "Purple Gargantuan Murloc", + [36591] = "Black Crane", + [36592] = "Ivory Crane", + [36593] = "Pink Crane", + [36594] = "D.L.U. Zeppelin", + [36595] = "Golden Foxwyvern", + [36596] = "Essence of Zalmos", + [36597] = "Serpent of Ula-Tek", + [36598] = "Serpent of C\'Thun", + [36599] = "Serpent of Yogg-Saron", + [36600] = "Serpent of the Unknown Gods", + [36601] = "Hand of Icecrown", + [36602] = "Hand of Menethil", + [36603] = "Hand of Death", + [36604] = "Shu-Zen, Faithful Companion", + [36605] = "Celestial Fox", + [36606] = "Celestial Rabbit", + [36607] = "Loremaster\'s Mouse", + [36608] = "Celestial Tiger", + [36609] = "Honeyback Harvester", + [36610] = "Red Thalassian Hawkstrider", + [36611] = "Black Thalassian Hawkstrider", + [36612] = "Azure Thalassian Hawkstrider", + [36613] = "Green Thalassian Hawkstrider", + [36614] = "Violet Thalassian Hawkstrider", + [36615] = "Ivory Thalassian Hawkstrider", + [36616] = "Victorious Thalassian Hawkstrider", + [36617] = "Grey Riding Elekk", + [36618] = "Purple Riding Elekk", + [36619] = "Blue Wind Rider", + [36620] = "Tawny Wind Rider", + [36621] = "Green Wind Rider", + [36622] = "Outlandish Nether Ray", + [36623] = "Draenic Nether Ray", + [36650] = "Satchel of Many Journeys", + [36651] = "Satchel of Many Journeys", + [36652] = "Satchel of Many Journeys", + [36653] = "Satchel of Many Journeys", + [36654] = "Satchel of Many Journeys", + [36655] = "Satchel of Many Journeys", + [36656] = "Fashion Week Giftbox", + [36657] = "Fashion Week Giftbox", + [36658] = "Fashion Week Giftbox", + [36659] = "Fashion Week Giftbox", + [36660] = "Fashion Week Giftbox", + [36661] = "Fashion Week Giftbox", + [36662] = "Fashion Week Giftbox", + [36665] = "Winter Veil Hippogryph", + [36666] = "Plagued Riding Spider", + [36667] = "Cave Riding Spider", + [36669] = "Amberwood Chest", + [37000] = "Webwood Hatchling", + [37001] = "Wildthorn Hatchling", + [37002] = "Lava Hatchling", + [37003] = "Tarantula Hatchling", + [37004] = "Timberweb Hatchling", + [37005] = "Mistbark Hatchling", + [37006] = "Skitterweb Hatchling", + [37007] = "Black Widow Hatchling", + [37008] = "Night Web Hatchling", + [37009] = "Cavernweb Hatchling", + [37010] = "Razzashi Hatchling", + [37011] = "Araxxna\'s Hatchling", + [37012] = "Maexxna\'s Hatchling", + [37013] = "Darkmist Hatchling", + [37014] = "Magus Alfred Wartbeard", + [40000] = "Tomato", + [40001] = "Delicious Pizza", + [40002] = "Bag of Snakes", + [40003] = "Vault\'s Defender", + [40061] = "Rethress Tide Crest", + [40062] = "Stolen Weapon Plans", + [40063] = "Long Kolkar Bone", + [40064] = "Stolen Tombstone", + [40065] = "Horde Defender\'s Axe", + [40070] = "Arcane Sliver", + [40071] = "Wraith Remains", + [40072] = "Manaborne Heart", + [40073] = "Arcane Golem Splinter", + [40074] = "Thalassian Plating", + [40075] = "Drained Manacrystal", + [40076] = "Tattered Crimson Cloth", + [40077] = "Empty Wine Bottle", + [40078] = "Memento of Quel\'Thalas", + [40079] = "Shattered Illidari Crest", + [40080] = "Thunderforge Lance", + [40082] = "Schematic: Jewelry Lens", + [40083] = "Schematic: Jewelry Scope", + [40084] = "Schematic: Precision Jewelers Kit", + [40998] = "Boar\'s Honor Pack", + [41000] = "Etched Mithril Shard", + [41001] = "Glowing Mineral", + [41002] = "Heart of Landslide", + [41003] = "Essence of Corrosis", + [41004] = "Red Owlbeast Feather", + [41005] = "Black Owlbeast Feather", + [41006] = "Brown Owlbeast Feather", + [41007] = "Drakk\'s Skinning Knife", + [41008] = "Silvermane Hide", + [41009] = "Headdress Framing", + [41010] = "Wildhammer Feather Headdress", + [41011] = "Wooden Gryphon Carving", + [41012] = "Defunct Mainframe", + [41013] = "Coal Drudgers", + [41014] = "Ash Covered Shackles", + [41015] = "Advanced Processing Unit", + [41016] = "Old Venture Co. Pants", + [41017] = "Dust-covered Robe", + [41018] = "Ash Shawl", + [41019] = "Coal Miner Gloves", + [41020] = "Hauling Belt", + [41021] = "Blackstone Work Boots", + [41022] = "Coal", + [41023] = "Water-logged Musket", + [41024] = "Barnacle-covered Scimitar", + [41025] = "Rusted Pirate Dagger", + [41026] = "Deckman\'s Cudgel", + [41027] = "Hangmans Plunder\'s Logbook", + [41028] = "Green Stash of Gold", + [41029] = "Shoreman\'s Staff", + [41030] = "Supercutter 1500 Remote", + [41031] = "Rustgate Tool", + [41032] = "Crate of Rebalanced Frameworks", + [41033] = "Muckfin Scale", + [41034] = "Rakklan\'s Targe", + [41035] = "Dirty Trousers", + [41036] = "Makrura Leg", + [41037] = "Rustgate\'s Business Report", + [41038] = "Venture Co. Logbook", + [41039] = "Venture Co. Medallion", + [41040] = "Moonclaw", + [41041] = "Moonfeather Cloak", + [41042] = "Arcane-infused Branch", + [41043] = "Bark Buckler", + [41044] = "Staff of Withering Power", + [41045] = "Enchanted Scalemail", + [41046] = "Pincer Mitts", + [41047] = "Barnacle Targe", + [41048] = "Whirring Shredder Saw", + [41049] = "Cracked Tin Boots", + [41050] = "Pouch of Good Fortune", + [41051] = "Snitch Shank", + [41052] = "Gelwex\' Head", + [41053] = "Dex\' Head", + [41054] = "Bruiser\'s Chainmail", + [41055] = "Labor Union Tunic", + [41056] = "Robe of the Obedient", + [41057] = "Mining Supplies", + [41058] = "Blackstone Sea Shell", + [41059] = "Counterfeit Shellcoin", + [41060] = "Refined Plague Strain", + [41061] = "Frozen Rune of Naxxramas", + [41062] = "Peering Eyeball", + [41063] = "Doctor\'s Labcoat", + [41064] = "Taming Rod", + [41065] = "Taming Rod", + [41066] = "Taming Rod", + [41067] = "Mudpaw Oracle Orb", + [41068] = "Hydrophus\' Shackles", + [41069] = "Ashpaw Pelt", + [41070] = "Ashpaw Mantle", + [41071] = "Rustgate\'s Water Shipment", + [41072] = "Mudpaw Armband", + [41073] = "Paw of Grabb Mudhide", + [41074] = "Dusty Cuffs", + [41075] = "Rusty Chain Belt", + [41076] = "Aspect of Seradane", + [41077] = "Yshgo\'lar, Cowl of Fanatical Devotion", + [41078] = "Holly King\'s Raiment", + [41079] = "Raiment of the Frost King", + [41080] = "Raiment of the Long Night", + [41081] = "Vestments of the Long Night", + [41082] = "Winter Veil Velvet Gown", + [41083] = "Holiday Velvet Gown", + [41084] = "Wassailing Gown", + [41085] = "Gown of the Holly Queen", + [41086] = "Mistletoe Gown", + [41087] = "Evergreen Gown", + [41088] = "Fur-Trimmed Fir Gown", + [41089] = "Snow Queen\'s Gown", + [41090] = "Gown of the Frost Queen", + [41091] = "Apparel of the Bells", + [41092] = "Jingle Belle Frock", + [41093] = "Gown of the Long Night", + [41094] = "Winter Night\'s Gown", + [41095] = "Gown of the Winter Queen", + [41096] = "Greatfather\'s Boots", + [41097] = "Candy Cane Boots", + [41098] = "Icefur Boots", + [41099] = "Red Winter Slippers", + [41100] = "Green Winter Slippers", + [41101] = "Frosty Winter Slippers", + [41102] = "Winter Night Slippers", + [41103] = "Refugee\'s Bracers", + [41104] = "Ranger Training Gloves", + [41105] = "Refugee\'s Sash", + [41106] = "Ranger Training Boots", + [41107] = "Thalassian Sentinel Boots", + [41108] = "Ranger Leggings", + [41109] = "Arcanist Dagger", + [41110] = "Ley-Technician Staff", + [41111] = "Marauder Blade", + [41112] = "Royalist Robe", + [41113] = "Royalist Chain Armor", + [41114] = "Royalist Ranger Chestpiece", + [41115] = "Thalassian Handguards", + [41116] = "Sunstrider Leather Belt", + [41117] = "Withered Wand", + [41118] = "Young Thalassian Boar Flank", + [41119] = "Forest Hawkstrider Leg", + [41120] = "Lynx Steak", + [41121] = "Thalassian Daisies", + [41122] = "Feltouched Letter", + [41123] = "Charged Arcane Crystal", + [41124] = "Wildhammer Supply Package", + [41125] = "Breaches of Commitment", + [41126] = "Energized Shackles", + [41127] = "Belt of Forgiving", + [41128] = "Resilient Loop", + [41129] = "Miriam\'s Skull", + [41130] = "Miriam\'s Upper Body", + [41131] = "Miriam\'s Lower Body", + [41132] = "Tarnished Mace", + [41133] = "Mudpaw Hammer", + [41134] = "Enforcer\'s Fist", + [41135] = "Blackstone Basher", + [41136] = "Labor Union Defender", + [41137] = "Ashcovered Letter", + [41138] = "Glyphcovered Letter", + [41139] = "Mudcovered Letter", + [41140] = "Mudcovered Letter", + [41141] = "Singed Letter", + [41142] = "Beating Makrura Heart", + [41143] = "Venture Company Documents", + [41145] = "Venture Company Evidence", + [41146] = "Deepmoss Lurker Brain", + [41147] = "Venture Company Armbands", + [41148] = "Sootstone Shackles", + [41149] = "Mort\'s Backup Belt", + [41150] = "Flame-retardant Britches", + [41151] = "Amice of Eternal Autumn", + [41152] = "Royalist Leggings", + [41153] = "Winestained Bracers", + [41154] = "Thalassian Sentinel Belt", + [41155] = "Lynx Sword", + [41156] = "Mana Wyrm Cape", + [41157] = "Vest of the Covenant", + [41158] = "Sash of Vengeance", + [41159] = "Handguards of Vengeance", + [41160] = "Thalassian Primal Heart", + [41161] = "Autumnal Primal Heart", + [41162] = "Bright Lynx Fur", + [41163] = "Fang of Shar\'lan", + [41164] = "Bucket of Grapes", + [41165] = "Mana Wyrm Eye", + [41166] = "Chunks of Stallhorn Meat", + [41167] = "Crimson Hawkstrider Wing", + [41168] = "Liadrin\'s Letter", + [41169] = "Party Supplies", + [41170] = "Fox Fur", + [41171] = "Fox Fur Stole", + [41172] = "Magically Sealed Letter", + [41173] = "Elegant Letter", + [41174] = "Blessed Elegant Letter", + [41175] = "Shady Letter", + [41176] = "Plain Letter", + [41177] = "Feathered Letter", + [41179] = "Hawkstrider Heart", + [41180] = "Autumnal Leaves", + [41181] = "Mana Core", + [41182] = "Withered Bracers", + [41183] = "Withered Gloves", + [41184] = "Blade of the Warden", + [41185] = "Signet of Themar", + [41186] = "Reefscale Robe", + [41187] = "Reefscale Pantaloons", + [41188] = "Autumnal Chestplate", + [41189] = "Manacore Belt", + [41190] = "Bow of Alah\'Thalas", + [41191] = "Hawkstrider Boots", + [41192] = "Royalist Legguards", + [41193] = "Royalist Wraps", + [41194] = "Deepmurk Cloak", + [41195] = "Ancient Branch", + [41196] = "Rommath\'s Orders", + [41197] = "Moonwell Water", + [41198] = "Reefscale Naga Scale", + [41199] = "Sunstrider Family Signet", + [41200] = "Fel Crystal", + [41201] = "Saelyn\'s Shipment", + [41202] = "Autumn Ancient Acorns", + [41203] = "Ivory Hawkstrider Bone", + [41204] = "Greatfather\'s Garb", + [41205] = "Holly King\'s Habit", + [41206] = "Father Frost\'s Finery", + [41207] = "Greatfather\'s Raiment", + [41208] = "Ozzick\'s Report", + [41209] = "Chunk of Felstone", + [41210] = "Black Dress Coat", + [41211] = "Navy Dress Coat", + [41212] = "Brown Dress Coat", + [41213] = "Cream Dress Coat", + [41214] = "Green Dress Coat", + [41215] = "Grey Dress Coat", + [41216] = "Plum Dress Coat", + [41217] = "Tan Dress Coat", + [41218] = "Red Dress Coat", + [41219] = "Teal Dress Coat", + [41220] = "Black Full Embroidered Waistcoat", + [41221] = "Blue Full Embroidered Waistcoat", + [41222] = "Plum Full Embroidered Waistcoat", + [41223] = "Green Full Embroidered Waistcoat", + [41224] = "Red Full Embroidered Waistcoat", + [41225] = "Black Vert Embroidered Waistcoat", + [41226] = "Blue Vert Embroidered Waistcoat", + [41227] = "Plum Vert Embroidered Waistcoat", + [41228] = "Green Vert Embroidered Waistcoat", + [41229] = "Black Hem Embroidered Waistcoat", + [41230] = "Blue Hem Embroidered Waistcoat", + [41231] = "Red Hem Embroidered Waistcoat", + [41232] = "Green Hem Embroidered", + [41233] = "Plain Black Waistcoat", + [41234] = "Plain Blue Waistcoat", + [41235] = "Plain Red Waistcoat", + [41236] = "Plain Purple Waistcoat", + [41237] = "Plain Green Waistcoat", + [41238] = "Plain Grey Waistcoat", + [41239] = "Plain Brown Waistcoat", + [41240] = "Plain White Waistcoat", + [41241] = "Formal Light Blue Waistcoat", + [41242] = "Formal Black Waistcoat", + [41243] = "Formal Blue Waistcoat", + [41244] = "Formal Brown Waistcoat", + [41245] = "Formal Green Waistcoat", + [41246] = "Formal Lavender Waistcoat", + [41247] = "Formal Mint Waistcoat", + [41248] = "Formal Grey Waistcoat", + [41249] = "Formal Tan Waistcoat", + [41250] = "Formal Pink Waistcoat", + [41251] = "Formal Plum Waistcoat", + [41252] = "Formal Purple Waistcoat", + [41253] = "Formal Red Waistcoat", + [41254] = "Formal Spring Green Waistcoat", + [41255] = "Formal Teal Waistcoat", + [41256] = "Formal White Waistcoat", + [41257] = "Formal Yellow Waistcoat", + [41258] = "Black Riding Boots", + [41259] = "Brown-Topped Riding Boots", + [41260] = "White Fall-Front Trousers", + [41261] = "Tan Fall-Front Trousers", + [41262] = "Grey Fall-Front Trousers", + [41263] = "Navy Fall-Front Trousers", + [41264] = "Brown Fall-Front Trousers", + [41265] = "Black Fall-Front Trousers", + [41266] = "White Dress Shirt", + [41267] = "Rolled-Sleeve White Dress Shirt", + [41268] = "Black Dress Shirt", + [41269] = "Rolled-Sleeve Black Dress Shirt", + [41270] = "White Darcy Shirt", + [41271] = "Black Darcy Shirt", + [41272] = "Rolled-Sleeve White Darcy Shirt", + [41273] = "Rolled-Sleeve Black Darcy Shirt", + [41274] = "White Shirt with Black Cravat", + [41275] = "Rolled-Sleeve White Shirt with Black Cravat", + [41276] = "Black Tie Light Blue Waistcoat", + [41277] = "Black Tie Black Waistcoat", + [41278] = "Black Tie Blue Waistcoat", + [41279] = "Black Tie Brown Waistcoat", + [41280] = "Black Tie Green Waistcoat", + [41281] = "Black Tie Grey Waistcoat", + [41282] = "Black Tie Lavender Waistcoat", + [41283] = "Black Tie Mint Waistcoat", + [41284] = "Black Tie Pink Waistcoat", + [41285] = "Black Tie Plum Waistcoat", + [41286] = "Black Tie Purple Waistcoat", + [41287] = "Black Tie Red Waistcoat", + [41288] = "Black Tie Spring Green Waistcoat", + [41289] = "Black Tie Tan Waistcoat", + [41290] = "Black Tie Teal Waistcoat", + [41291] = "Black Tie White Waistcoat", + [41292] = "Black Tie Yellow Waistcoat", + [41293] = "All Black Waistcoat Set", + [41294] = "Fine Free-Range Alterac Yeti Hide", + [41295] = "Lost Excavation Pickaxe", + [41296] = "Damp Pauldrons", + [41297] = "Corrosive Sabatons", + [41298] = "Overloaded Heating Coil", + [41299] = "Whitemane\'s Bracelet of Friendship", + [41300] = "Mordresh\'s Tempered Groove", + [41301] = "A\'lathea\'s Vow To Elune", + [41302] = "Ladimore\'s Wedding Ring", + [41303] = "Lavishly Decorated Container", + [41308] = "Shimmering Bronze Ring", + [41309] = "Amber Orb", + [41310] = "Bronze Cuffed Bangles", + [41311] = "Shadowgem Band", + [41312] = "Pendant of Midnight", + [41313] = "Bronze Scepter", + [41314] = "Agatestone Crown", + [41315] = "Moonlight Staff", + [41316] = "Binding Signet", + [41317] = "Reinforced Thorium Ring", + [41318] = "Enchanted Bracelets", + [41319] = "Rough Silver Ring", + [41320] = "Coarse Gemstone Cluster", + [41321] = "Rough Thorium Ring", + [41322] = "Rough Mithril Ring", + [41323] = "Emberstone Studded Ring", + [41324] = "Mithril Blackstone Necklace", + [41325] = "Silver Medallion", + [41326] = "Jewelry Lens", + [41327] = "Jewelry Scope", + [41328] = "Precision Jewelers Kit", + [41329] = "Ring of Purified Silver", + [41330] = "Pendant of Arcane Radiance", + [41331] = "Rough Gold Ring", + [41332] = "Rough Iron Ring", + [41340] = "Shimmering Gold Necklace", + [41341] = "Rough Truesilver Ring", + [41342] = "Ironbloom Ring", + [41343] = "Ornate Mithril Scepter", + [41344] = "Heavy Gemstone Cluster", + [41345] = "Royal Gemstone Staff", + [41346] = "Greater Binding Signet", + [41347] = "Runed Truesilver Ring", + [41348] = "Band of Searing Ember", + [41349] = "Emberstone Idol", + [41350] = "Pristine Quartz", + [41351] = "Gleaming Jade", + [41352] = "Sharpened Citrine", + [41353] = "Mayva\'s Crystal", + [41354] = "Gulmire\'s Crystal", + [41355] = "Lifeblood Gem", + [41356] = "Marbled Stone Slab", + [41357] = "Tarnished Citrine Choker", + [41358] = "Thegren\'s Box", + [41359] = "Gilnean Jewelry: A Compendium", + [41360] = "Ancient Elven Jeweler\'s Kit", + [41361] = "Rummaged Chest", + [41362] = "Head of Mato\'gar", + [41363] = "Kum\'isha\'s Scroll", + [41364] = "Lightweight Money Bag", + [41365] = "Venture Co. Contract", + [41366] = "Giant Scarlet Ruby", + [41367] = "Etched Gemstone", + [41368] = "Steeljaw Gland", + [41369] = "Zalashji\'s Gemstone Oil", + [41370] = "Khadgar\'s Journal", + [41371] = "Clutch of Thanlar", + [41372] = "Sceptre Head of Medivh", + [41373] = "Draconic Focus", + [41374] = "Azure Crystal", + [41375] = "Vermillion Crystal", + [41376] = "Xylem\'s Focus Orb", + [41377] = "Drained Crystal Remains", + [41378] = "Glimmering Shard", + [41379] = "Dark Iron Prospecting Lens", + [41380] = "Siren Brain", + [41381] = "Zesty Makrura Claw", + [41382] = "Timbermaw Herb Bundle", + [41383] = "Akh Z\'ador\'s Riftwalker Cane", + [41384] = "Mojo of Jammal\'an", + [41385] = "Pure Draenethyst Gemstone", + [41386] = "Rune of Ferh", + [41387] = "Bough of Cenarius", + [41388] = "Jade Scale of the Dreamer", + [41389] = "Crystalline Ray of Moonlight", + [41390] = "Rod of Remembrance", + [41391] = "Malorne\'s Spirit Fragment", + [41392] = "Comically Large Candle", + [41393] = "Tattered Journal", + [41394] = "Broken Lordaeroni Sword", + [41395] = "Immaculate Diamond Necklace", + [41396] = "Jeweled Ruby Ring", + [41397] = "Gemstone of Kara", + [41398] = "Expensive Gold Ring", + [41399] = "Expensive Gold Ring", + [41400] = "Ramblings of Ol\' Gazeno", + [41401] = "Broken Arrow", + [41402] = "Shabby Contract of Fatality ", + [41403] = "Enchanted Amethyst", + [41404] = "Magical Telescope", + [41405] = "Pristine Azure Scale", + [41406] = "Core of Arc\'Tiras", + [41407] = "Glimmering Shard", + [41408] = "Overgrowth Sample", + [41409] = "Podrig\'s Report", + [41410] = "Zandara\'s Head", + [41411] = "Journal of Basil Frye", + [41412] = "Cosmic Residue", + [41413] = "Scepter Rod of Medivh", + [41414] = "Anima of the Guardian", + [41415] = "The Scepter of Medivh", + [41416] = "Crumpled Paper", + [41417] = "of Ancient and Treants", + [41418] = "Blue Leaf", + [41419] = "Shadowbane Blood", + [41420] = "Shadowfang Blood", + [41421] = "Darkpelt Blood", + [41422] = "Pure Worgen Blood", + [41423] = "Dreamwind\'s Box", + [41424] = "Orb of Vorgendor", + [41425] = "Ironvine Root", + [41426] = "Glass Marble", + [41427] = "Testimony of Resolve", + [41428] = "Order of Alchemical Compounds", + [41429] = "Voss\' Sizzling Brew", + [41430] = "Searing Eye of Rholgast", + [41431] = "Filigrane Sapphire Band", + [41432] = "Noblewoman\'s Dagger", + [41433] = "Palatinate Shard", + [41434] = "Small Rusty Key", + [41435] = "Comfortable Fuzzy Coat", + [41436] = "Arcane Intricacies: How To Manipulate The Flow Of Mana", + [41437] = "Engraved Magnifying Glass", + [41438] = "Stone Tooth", + [41439] = "Cobalt Shard", + [41440] = "Ash Covered Crystal", + [41441] = "Tiny Silver Key", + [41442] = "Century Old Pinot Noir", + [41443] = "Foul Eggs", + [41444] = "Cardinal Shard", + [41445] = "Gemstone of Zhan", + [41446] = "Dreamwind\'s Box", + [41447] = "Soul of the Dreadlord", + [41448] = "Viridian Mushroom", + [41449] = "Flickering Emerald Stone", + [41450] = "Viridian Incense", + [41451] = "Slumbering Dreamveil", + [41452] = "Orb of Whisperwind Grove", + [41453] = "Staff of Chen", + [41454] = "Throwing Axes of the Amani", + [41455] = "Blackrock Powder", + [41456] = "Willey Family Crossbow", + [41457] = "Bow of Oaks", + [41458] = "Time-Worn Spear", + [41459] = "Mournblade", + [41460] = "Fingerbreaker", + [41461] = "Jar of Dirt", + [41462] = "Branch of Eskhandar", + [41463] = "Pouch of Surgical Daggers", + [41464] = "Hornfang Specialty Mug", + [41465] = "Thunderbrew Specialty Mug", + [41466] = "Goldthorn Grog", + [41467] = "Hornbeard Reserve", + [41468] = "Thundercrest Lager", + [41469] = "Ale-Stained Anniversary Shirt", + [41470] = "Scarlet Schnapps", + [41471] = "Silver Hops", + [41472] = "Red Hops", + [41473] = "Black Hops", + [41474] = "Yellow Hops", + [41475] = "Hillsbrad Hops", + [41476] = "Stout Hops", + [41477] = "Upper Half of the Thunderbrew Golden Lager Plans", + [41478] = "Lower Half of the Thunderbrew Golden Lager Plans", + [41479] = "The Golden Hops", + [41480] = "The Nobles of Northwind", + [41481] = "The Greatest Minds of Azeroth - Gnomish Inventors", + [41482] = "The Hag of the Woods", + [41483] = "Monster - Sword2H", + [41484] = "Razorfen Grog", + [41485] = "Pristine Ley Crystal", + [41486] = "Cerement of the Black Rose", + [41487] = "Pall of the Black Rose", + [41488] = "Tread of the Black Rose", + [41489] = "Grip of the Black Rose", + [41490] = "Bands of the Black Rose", + [41491] = "Black Widow\'s Guise", + [41492] = "Black Widow\'s Treads", + [41493] = "Black Widow\'s Clutch", + [41494] = "Mantle of the Night Lord", + [41495] = "Tortoise-shell Tint", + [41496] = "Mid-Autumn Festival Hanfu", + [41497] = "Brown Top Hat", + [41498] = "Navy Top Hat", + [41499] = "Cordovan Top Hat", + [41500] = "Ale-Stained Anniversary Shirt", + [41501] = "Brown Banded Top Hat", + [41502] = "Green Banded Top Hat", + [41503] = "Black Banded Top Hat", + [41504] = "Pumpkin/Hallowed/Jack-o-lantern Helm", + [41505] = "Lady Cavatica\'s Gown", + [41506] = "Lady Cavatica\'s Clutch", + [41507] = "Frock of Thirty-Two Fouettes", + [41508] = "Thirty-Two Fouette Pointe Shoes", + [41509] = "Hallow\'s End Suit", + [41510] = "Mummy 5wraps", + [41511] = "Mummy Legwraps", + [41512] = "Mummy Footwraps", + [41513] = "Mummy Handwraps", + [41514] = "Azure Silk Skirt", + [41515] = "Crimson Silk Skirt", + [41516] = "Emerald Silk Skirt", + [41517] = "Green Silk Skirt", + [41518] = "Indigo Silk Skirt", + [41519] = "Maroon Silk Skirt", + [41520] = "Mint Silk Skirt", + [41521] = "Pink Silk Skirt", + [41522] = "Red Silk Skirt", + [41523] = "Sapphire Silk Skirt", + [41524] = "Spring Green Silk Skirt", + [41525] = "Teal Silk Skirt", + [41526] = "White Silk Skirt", + [41527] = "Yellow Silk Skirt", + [41528] = "Purple Silk Skirt", + [41529] = "Lavender Silk Skirt", + [41530] = "Black Formal Suit", + [41531] = "Blue Formal Suit", + [41532] = "Green Formal Suit", + [41533] = "Purple Formal Suit", + [41534] = "Black Evening Gloves", + [41535] = "White Evening Gloves", + [41536] = "Black Dress Gloves", + [41537] = "Blue Dress Gloves", + [41538] = "Green Dress Gloves", + [41539] = "Teal Dress Gloves", + [41540] = "White Dress Gloves", + [41541] = "Vestments of Three Virtues", + [41542] = "Fingerguards of Three Virtues", + [41543] = "Slippers of Three Virtues", + [41544] = "Raiment of Scarlet Zeal", + [41545] = "Fingerguards of Scarlet Zeal", + [41546] = "Slippers of Scarlet Zeal", + [41547] = "Elune Adornments", + [41548] = "Array of the Eclipsed Moon", + [41549] = "Black Robes of Insight", + [41550] = "Black & Silver Robes of Insight", + [41551] = "Blue Robes of Insight", + [41552] = "Green Robes of Insight", + [41553] = "Purple Robes of Insight", + [41554] = "Red Robes of Insight", + [41555] = "White Robes of Insight", + [41556] = "White & Silver Robes of Insight", + [41557] = "Curative Animal Salve", + [41558] = "The Slagbinder", + [41559] = "Rock Carver", + [41560] = "Shalestone Amulet", + [41561] = "Flame of Eternal Searing", + [41562] = "Flamescale Pike", + [41563] = "Flamelash Boots", + [41564] = "Emberclaw", + [41565] = "Cloak of Draconic Madness", + [41566] = "Webmaster\'s Ring", + [41567] = "Cavernrock Stompers", + [41568] = "Torkon\'s Belt", + [41569] = "Tattered Orcish Shawl", + [41570] = "Idol of Nethalakk", + [41571] = "Snickerclaw", + [41572] = "Gowlfang\'s Collar", + [41573] = "Mosshide Trousers", + [41574] = "Gnoll Battle Gloves", + [41575] = "Gnoll Hide Cuffs", + [41576] = "Dragonmaw Relic", + [41577] = "Orcish War Trophy", + [41578] = "Flamekeeper\'s Robe", + [41579] = "Sash of Flamebinding", + [41580] = "Udor\'s Pendant", + [41581] = "The Bane of Althazz", + [41600] = "Black Top Hat", + [41601] = "Amberglaze Donut Box", + [41602] = "Sir Amberwood Figurine", + [41603] = "Sparkling Residue", + [41604] = "Magilou\'s Almanac", + [41605] = "Head of Red Jenny", + [41606] = "Crate of Donated Books", + [41607] = "Dusty Urn", + [41608] = "Intact Boar Eye", + [41609] = "Dripping Bear Liver", + [41610] = "Wolf Tongue", + [41611] = "Cloak of the Long Night", + [41612] = "Cloak of Winter Nights", + [41613] = "Holly Cloak", + [41614] = "Mistletoe Cloak", + [41615] = "Greatfather\'s Cloak", + [41616] = "Holiday Velvet Cloak", + [41617] = "Frosty Cloak", + [41618] = "Wintry Cloak", + [41619] = "Fur-trimmed Fir Cloak", + [41620] = "Evergreen Cloak", + [41621] = "Mantle of the Long Night", + [41622] = "Mantle of Winter Nights", + [41623] = "Greatfather\'s Mantle", + [41624] = "Holiday Velvet Mantle", + [41625] = "Frosty Mantle", + [41626] = "Wintry Mantle", + [41627] = "Fur-trimmed Fir Mantle", + [41628] = "Evergreen Mantle", + [41629] = "Hood of the Long Night", + [41630] = "Hood of Winter", + [41631] = "Greatfather\'s Hood", + [41632] = "Holiday Velvet Hood", + [41633] = "Frosty Hood", + [41634] = "Wintry Hood", + [41635] = "Fur-trimmed Fir Hood", + [41636] = "Evergreen Hood", + [41637] = "Festive Top Hat", + [41638] = "Gold Jingle Bell Bracelet", + [41639] = "Silver Jingle Bell Bracelet", + [41640] = "Fur Wrist Cuffs", + [41641] = "Wintry Fur Wrist Cuffs", + [41642] = "Solstice Bands", + [41643] = "Festive Frostwolf Bands", + [41644] = "Bands of the Winter Hunter", + [41645] = "Winter Veil Bands", + [41646] = "Balsam Tree Bands", + [41647] = "Gold Jingle Bell Anklet", + [41648] = "Silver Jingle Bell Anklet", + [41649] = "Fur Ankle Cuffs", + [41650] = "Wintry Fur Ankle Cuffs", + [41651] = "Robe of the Festive Spirit", + [41652] = "Solstice Vest", + [41653] = "Festive Frostwolf Vest", + [41654] = "Vest of the Winter Hunter", + [41655] = "Winter Veil Vest", + [41656] = "Balsam Tree Vest", + [41657] = "Jolly Green Bodysuit", + [41658] = "Jolly Blue Bodysuit", + [41659] = "Jolly Red Bodysuit", + [41660] = "Maid\'s Attire", + [41661] = "Krampus\'s Little Helper Suit", + [41662] = "Solstice Kilt", + [41663] = "Festive Frostwolf Kilt", + [41664] = "Kilt of the Winter Hunter", + [41665] = "Winter Veil Kilt", + [41666] = "Balsam Tree Kilt", + [41667] = "Winter Veil Tree", + [41668] = "Winter Shepherd\'s Cane", + [41669] = "Sweet Winter Cane", + [41670] = "Gingerbread Bulwark", + [41671] = "Amberale", + [41672] = "Crawford Wine", + [41673] = "Crawford Apple Tarte", + [41674] = "Ambersap Glazed Boar Ribs", + [41675] = "Ambersap", + [41676] = "Winery Key", + [41677] = "Northwind Flour", + [41678] = "Perfumed Letter #1", + [41679] = "Perfumed Letter #2", + [41680] = "Perfumed Letter #3", + [41681] = "Perfumed Letter #4", + [41682] = "Violet Key", + [41683] = "Lady Selind\'s Purse", + [41684] = "Lavishly Crafted Purse", + [41685] = "Flame of Farrak", + [41686] = "Durmir\'s Belongings", + [41687] = "Broken Locket", + [41688] = "Inconspicuous Documents", + [41689] = "VanCleef\'s Orders", + [41690] = "Maltorius\' Missive", + [41691] = "Throkk\'s Command", + [41692] = "Blackrock Coffer Key", + [41693] = "Deathcap", + [41694] = "Widow\'s Frill", + [41695] = "Sara\'s Comb", + [41696] = "Signed Zappo Zapblast Autograph", + [41697] = "Bizzbang\'s Journal", + [41698] = "Everlook Broadcasting Co. Backpack", + [41699] = "Boar Carcass", + [41700] = "Lunar Token", + [41701] = "Elune\'s Gift", + [41702] = "Dress of Lunar Blessing", + [41703] = "Robes of Lunar Eve", + [41704] = "Lunar Festival Gift Box", + [41707] = "Satchel of Lunar Giving", + [41708] = "Dragonmaw Medallion", + [41709] = "Shatterblade Gauntlets", + [41710] = "Noblegarden Basket", + [41711] = "Letter from Korlag Doomsong", + [41712] = "Head of Korlag Doomsong", + [41713] = "Doomsong Cuffs", + [41714] = "Sash of Zarm\'geth", + [41715] = "Legging\'s of Geth\'kar", + [41716] = "Shadowforge Signet", + [41717] = "Dark Iron Bludgeon", + [41718] = "Drape of Groldan", + [41719] = "Stonelink Leggings", + [41720] = "Earthweaver Kilt", + [41721] = "Bulwark of the Old Horde", + [41722] = "Rockspeaker Bracers", + [41723] = "Cudgel of Binding", + [41724] = "Dragonmaw Shoulders", + [41725] = "Dragonmaw Battle Bow", + [41726] = "Slaver\'s Gauntlets", + [41727] = "Blackheart Armor", + [41728] = "Leon\'s Ring", + [41729] = "Carefully Sealed Scroll", + [41730] = "Damning Document", + [41731] = "Duke Sherwood\'s Invitation", + [41732] = "Yeast", + [41733] = "Honey", + [41734] = "Sparkling Water", + [41735] = "Enchanted Horse Shoes", + [41736] = "Pack of Amberglaze Donuts", + [41737] = "Bundle of Apples", + [41738] = "Ingvild\'s Pie", + [41739] = "Goody Bag", + [41740] = "Amber Candle", + [41741] = "Northwind Necrology", + [41742] = "Amber Pearl", + [41743] = "Northwind Amber", + [41744] = "Chalice of Light", + [41745] = "Charred Bone", + [41746] = "Red Leaf", + [41747] = "Tattered Missive", + [41748] = "Hawthorne\'s Journal", + [41749] = "Stolen Sack of Horse Feed", + [41750] = "Grimmen Greens", + [41751] = "Northwind Quacker", + [41752] = "Winter\'s Kiss", + [41753] = "Stormreaver Cell Key", + [41754] = "Stormreaver Scroll", + [41755] = "Stormreaver Scroll", + [41756] = "Stormreaver Writing", + [41757] = "Rune-carved Tablet", + [41758] = "Verix\' Spoils", + [41759] = "Makrua Eye Stalk", + [41760] = "Murloc Tail Fin", + [41761] = "Tidelord\'s Claw", + [41762] = "Tidecaller\'s Head", + [41763] = "Crate of Foodstuffs", + [41764] = "Spare Sail Canvas", + [41765] = "Zeppelin Motor", + [41766] = "Wooden Plank", + [41767] = "Etched Porcellain Doll", + [41768] = "Foul Essences", + [41769] = "Enriched Spore", + [41770] = "Writhing Mushroom Mycelia", + [41771] = "Mistbark Venom Sac", + [41772] = "Enormous Venom Sac", + [41773] = "Pearlescent Shard", + [41774] = "Finnigan\'s Notebook", + [41775] = "Reflecting Crystal", + [41776] = "Dusty Letter", + [41777] = "Groceries List", + [41778] = "Sir Edrin Vellas, the Gallant Knight - Beginnings", + [41779] = "Sir Edrin Vellas, the Gallant Knight - Trials", + [41780] = "Sir Edrin Vellas, the Gallant Knight - Legacy", + [41781] = "Solution To Arcane Resonance", + [41782] = "Dragonmaw Orders", + [41783] = "Head of Geshgan", + [41784] = "Stolgaz Documents", + [41785] = "Reachhide Harness", + [41786] = "Scarweave Leggings", + [41787] = "Shatterblade Pauldrons", + [41788] = "Recluse Leg", + [41789] = "Renegade Battle Boots", + [41790] = "Mirefang Staff", + [41791] = "Dark Iron Component", + [41792] = "Intricate Part", + [41793] = "Harlekk\'s Battle Wrench", + [41794] = "Siege Engineer Goggles", + [41795] = "Vial of Entranced Blood", + [41796] = "Dark Essence", + [41797] = "The Pendant of Uth\'okk", + [41798] = "The Pendant of Uth\'okk", + [41799] = "Damaged Relic Mechanism", + [41800] = "Ancient Power Module", + [41801] = "Energized Relic Mechanism", + [41802] = "Damaged Relic Mechanism", + [41803] = "Buzzard Blood", + [41804] = "Ancient Power Module", + [41805] = "Stonehide Flank", + [41806] = "Reachroot", + [41807] = "Lingering Corruption", + [41808] = "Ornate Feather", + [41809] = "Binding Flame", + [41810] = "Pristine Stonehide Heart", + [41811] = "Ensorcelled Whelp Scale", + [41812] = "Dust of Conjuration", + [41813] = "Lingering Fel Energy", + [41814] = "Crystal Spine Scale", + [41815] = "Farseer\'s Loop", + [41816] = "Scarforged Hauberk", + [41817] = "Hood of Foresight", + [41818] = "Scepter of Yor\'thegg", + [41819] = "Tempered Blade", + [41820] = "Favor of Fallwind", + [41821] = "Lesser Arcane Residue", + [41822] = "Shipment of Scrolls", + [41823] = "Necklace of Azora", + [41824] = "Ring of Theocritus", + [41825] = "Stone Golem Runestone", + [41826] = "Mosshide Cinch", + [41827] = "Fenwater Gloves", + [41828] = "Mosschain Bracers", + [41829] = "Head of Gowlfang", + [41830] = "Mosshide Ring", + [41831] = "Runebound Dagger", + [41832] = "Flameweave Sash", + [41833] = "Cuffs of Burning Rage", + [41834] = "Broodmother\'s Sac", + [41835] = "Eternal Flame", + [41836] = "Ancient Flame Pendant", + [41837] = "Redbrand Tablet", + [41838] = "Gravelweave Pantaloons", + [41839] = "Defender of Dorgal", + [41840] = "Gemlaced Sash", + [41841] = "Blackheart\'s Head", + [41842] = "Menethil Greaves", + [41843] = "Stoutheart Shawl", + [41844] = "Torwyll\'s Cuffs", + [41845] = "Algo\'rath the Unbinder", + [41846] = "Cindermaw Leggings", + [41847] = "Chieftain\'s Baton", + [41848] = "Dragontrance Ring", + [41849] = "Lesser Binding Shackle", + [41850] = "Fragmented Arcane", + [41851] = "Expedition Boots", + [41852] = "Monster - Mace, Red Jenny", + [41853] = "Tainted Brambleheart", + [41854] = "Wildbranch Leggings", + [41855] = "Fenweave Gloves", + [41856] = "Gnarled Brambleroot", + [41857] = "Balor Sigil Ring", + [41858] = "Stormreaver Insignia", + [41859] = "Supercharger V2.10.3", + [41860] = "Kwabit\'s Salacious Pictorial", + [41861] = "Shrillfluke\'s Logbook", + [41862] = "Boss Slickwick\'s Report", + [41864] = "Lord Amberwood\'s Report", + [41865] = "Sir Amberwood\'s Report", + [41866] = "Bailiff Lancaster\'s Report", + [41867] = "Nearly Hatching Ravasaur Egg", + [41868] = "Cold Ravasaur Egg", + [41869] = "Foul Ravasaur Egg", + [41870] = "Ravasaur Tooth", + [41871] = "Primordial Meat", + [41872] = "Stegodon Gland", + [41873] = "Devilsaur Heart", + [41874] = "Fragment of Algoron", + [41875] = "Fragment of Dathronag", + [41876] = "Lower Reserve Key", + [41877] = "Studies on Cosmic Materialization", + [41878] = "Trashed Book", + [41879] = "Pebbles", + [41880] = "The Boulder", + [41881] = "Shale-a", + [41882] = "Rocky", + [41883] = "Sermon of the Church", + [41884] = "Tremond\'s Journal", + [41885] = "Grahan Records", + [41886] = "Half-eaten Fish", + [41887] = "Stinking Undergarments", + [41888] = "Shiny Green Shard", + [41889] = "Lock of Saint Mara Fordragon", + [41890] = "Gnoll Paw for Good Luck", + [41891] = "Murloc Bladder", + [41892] = "Can of Worms", + [41893] = "Snail Shells", + [41894] = "Button from a Noble\'s Overcoat", + [41895] = "Shard of the Demon Soul", + [41896] = "Ursan Charm", + [41897] = "Head of Arkod the White", + [41898] = "Ursan Trousers", + [41899] = "Mournshade Sandals", + [41900] = "Steamed Hog", + [41901] = "Mok\'thardin\'s Potion", + [41902] = "Farwind Scarf", + [41903] = "Avette\'s Letter", + [41904] = "Darkedged Bone", + [41905] = "Kwabit\'s Chest Key", + [41906] = "Memorials of the Battle of Grim Batol", + [41907] = "Intact Fire Gland", + [41908] = "Heat-resistant Trigger", + [41909] = "Dragonfire Bomb", + [41910] = "Tor Nagaz", + [41911] = "Robe of the Skardyn Darkcaster", + [41912] = "Hollowed Handguards", + [41913] = "Key to Stormwrought Castle", + [41914] = "Shadowlord\'s Research", + [41915] = "Verdant Rune", + [41916] = "Dune Wanderer\'s Hauberk", + [41917] = "Desert Seeker\'s Pants", + [41918] = "Seed of Bloom", + [41919] = "Starbloom Ring", + [41920] = "Crate of Balor Moonshine", + [41921] = "Crown of Balor", + [41922] = "Bilgerat Weapon", + [41923] = "Crocolisk Tail", + [41924] = "Soaked Scroll", + [41925] = "Vegetative Sample", + [41926] = "Heart of Mycellakos", + [41927] = "Stormreaver Warlock Eye", + [41928] = "Harelyss\' Soul", + [41929] = "Rusty Sealed Lockbox", + [41930] = "Sausaged Cheese Bread Classico", + [41931] = "Corn-Ham-Mushroom Symphony", + [41932] = "Folded Kezan Gumbo Roll", + [41933] = "Spicy Afterburner Deluxe", + [41934] = "Whole-Lobster-Bread", + [41935] = "Sweet \'N Crunchy Fruit Bread", + [41936] = "Nuddok\'s Freefall Parachute", + [41937] = "Balor Sigil Ring", + [41938] = "Etched Toy Sword", + [41939] = "Broken Bloodstone Pendant", + [41940] = "Compendium of Successful Trade", + [41941] = "Balorian Treasure", + [41942] = "Arthur\'s Soul Fragment", + [41943] = "Mildenhall Voucher", + [41944] = "Balor Moonshine", + [41945] = "Replenishable Mana Crystal", + [41946] = "Farstrider Chestpiece", + [41947] = "Farstrider Leggings", + [41948] = "Left Part of Gemstone of Naraz", + [41949] = "Right Part of Gemstone of Naraz", + [41950] = "Earthen Relic", + [41951] = "Shadowforge Dwarf Head", + [41952] = "Shoulderpads of Dun Kithas", + [41953] = "Grim Mantle", + [41954] = "Groldan\'s Stash", + [41955] = "Helmet of Dun Kithas", + [41956] = "Grim Girdle", + [41957] = "Miregill Scale", + [41958] = "Hollowgrip Gloves", + [41959] = "Legguards of Dun Kithas", + [41960] = "Scruffy Pendant", + [41961] = "Fluidity Potion", + [41962] = "Dragonmaw Sigil", + [41963] = "Banner of Baggoth", + [41964] = "Shield of Baggoth", + [41965] = "Dragonmaw Supply Crate", + [41966] = "Chestguard of Dun Kithas", + [41967] = "Magistrate\'s Brim Hat", + [41968] = "Stolgaz Shoulderpads", + [41969] = "Shadow-Cursed Sample", + [41970] = "Shadow-Cursed Residuum", + [41971] = "Trashtalon", + [41972] = "Stonehide Boar Flank", + [41973] = "Brangar\'s Grain Crate", + [41974] = "Brangar\'s Journal", + [41975] = "Brangar\'s Folly", + [41976] = "Wildhammer Archive Book", + [41977] = "Destroyed Wildhammer Book", + [41978] = "Stone Brick", + [41979] = "Stormwrought Crystal", + [41980] = "Slatebeard Amulet", + [41981] = "Letter from Korlag Doomsong", + [41982] = "Letter from Korlag Doomsong", + [41983] = "Second Key Fragment", + [41984] = "Monster - Sword1H, Doomguard Sword", + [41985] = "Crest of Valor", + [41986] = "War Supplies Cache", + [41987] = "Crest of Heroism", + [41988] = "Molten Scale", + [41989] = "Signet of Thaurissan", + [41990] = "Molten Supplies Cache", + [41991] = "Ancient Wildhammer Tome", + [41992] = "Chromatic Servo-Motor", + [41993] = "Forest Ichor", + [41994] = "Corrupted Miregill Fin", + [41995] = "Kalke\'s Energy Regulator", + [45001] = "Delicious Pizza", + [46600] = "Lordaeron Breastplate", + [46601] = "Scroll of Return", + [46602] = "Guild Quarters Deed", + [47000] = "Lawbringer Helmet", + [47001] = "Lawbringer Shoulderguards", + [47002] = "Lawbringer Chestguard", + [47003] = "Lawbringer Wristguards", + [47004] = "Lawbringer Handguards", + [47005] = "Lawbringer Waistguard", + [47006] = "Lawbringer Legguards", + [47007] = "Lawbringer Greaves", + [47008] = "Lawbringer Crown", + [47009] = "Lawbringer Pauldrons", + [47010] = "Lawbringer Chestplate", + [47011] = "Lawbringer Bindings", + [47012] = "Lawbringer Gauntlets", + [47013] = "Lawbringer Girdle", + [47014] = "Lawbringer Leggings", + [47015] = "Lawbringer Sabatons", + [47016] = "Judgement Helmet", + [47017] = "Judgement Shoulderguards", + [47018] = "Judgement Chestguard", + [47019] = "Judgement Wristguards", + [47020] = "Judgement Handguards", + [47021] = "Judgement Waistguard", + [47022] = "Judgement Legguards", + [47023] = "Judgement Greaves", + [47024] = "Judgement Crown", + [47025] = "Judgement Pauldrons", + [47026] = "Judgement Chestplate", + [47027] = "Judgement Bindings", + [47028] = "Judgement Gauntlets", + [47029] = "Judgement Girdle", + [47030] = "Judgement Leggings", + [47031] = "Judgement Sabatons", + [47032] = "Avenger\'s Helmet", + [47033] = "Avenger\'s Shoulderguards", + [47034] = "Avenger\'s Chestguard", + [47035] = "Avenger\'s Legguards", + [47036] = "Avenger\'s Greaves", + [47037] = "Avenger\'s Helm", + [47038] = "Avenger\'s Spaulders", + [47039] = "Avenger\'s Breastplate", + [47040] = "Avenger\'s Legplates", + [47041] = "Avenger\'s Boots", + [47042] = "Redemption Helmet", + [47043] = "Redemption Shoulderguards", + [47044] = "Redemption Chestguard", + [47045] = "Redemption Wristguards", + [47046] = "Redemption Handguards", + [47047] = "Redemption Waistguard", + [47048] = "Redemption Legguards", + [47049] = "Redemption Greaves", + [47050] = "Signet of Redemption", + [47051] = "Redemption Crown", + [47052] = "Redemption Pauldrons", + [47053] = "Redemption Chestplate", + [47054] = "Redemption Bindings", + [47055] = "Redemption Gauntlets", + [47056] = "Redemption Girdle", + [47057] = "Redemption Leggings", + [47058] = "Redemption Sabatons", + [47059] = "Band of Redemption", + [47060] = "Lionheart Headpiece", + [47061] = "Lionheart Spaulders", + [47062] = "Lionheart Breastplate", + [47063] = "Lionheart Legplates", + [47064] = "Lionheart Boots", + [47065] = "Lionheart Amulet", + [47066] = "Lionheart Helmet", + [47067] = "Lionheart Shoulderguards", + [47068] = "Lionheart Chestguard", + [47069] = "Lionheart Legguards", + [47070] = "Lionheart Greaves", + [47071] = "Lionheart Pendant", + [47072] = "Lionheart Crown", + [47073] = "Lionheart Pauldrons", + [47074] = "Lionheart Chestplate", + [47075] = "Lionheart Leggings", + [47076] = "Lionheart Sabatons", + [47077] = "Lionheart Choker", + [47078] = "Arcanist Circlet", + [47079] = "Arcanist Epaulets", + [47080] = "Arcanist Vestments", + [47081] = "Arcanist Wristbands", + [47082] = "Arcanist Handwraps", + [47083] = "Arcanist Cord", + [47084] = "Arcanist Trousers", + [47085] = "Arcanist Slippers", + [47086] = "Netherwind Circlet", + [47087] = "Netherwind Epaulets", + [47088] = "Netherwind Vestments", + [47089] = "Netherwind Wristbands", + [47090] = "Netherwind Handwraps", + [47091] = "Netherwind Cord", + [47092] = "Netherwind Trousers", + [47093] = "Netherwind Slippers", + [47094] = "Enigma Crown", + [47095] = "Enigma Epaulets", + [47096] = "Enigma Vestments", + [47097] = "Enigma Trousers", + [47098] = "Enigma Slippers", + [47099] = "Frostfire Crown", + [47100] = "Frostfire Epaulets", + [47101] = "Frostfire Vestments", + [47102] = "Frostfire Bracers", + [47103] = "Frostfire Handwraps", + [47104] = "Frostfire Cord", + [47105] = "Frostfire Trousers", + [47106] = "Frostfire Slippers", + [47107] = "Frostfire Signet", + [47108] = "Crown of the Guardian", + [47109] = "Mantle of the Guardian", + [47110] = "Robes of the Guardian", + [47111] = "Leggings of the Guardian", + [47112] = "Boots of the Guardian", + [47113] = "Pendant of the Guardian", + [47114] = "Circlet of the Guardian", + [47115] = "Epaulets of the Guardian", + [47116] = "Vestments of the Guardian", + [47117] = "Trousers of the Guardian", + [47118] = "Slippers of the Guardian", + [47119] = "Amulet of the Guardian", + [47120] = "Earthfury Crown", + [47121] = "Earthfury Pauldrons", + [47122] = "Earthfury Breastplate", + [47123] = "Earthfury Bracelets", + [47124] = "Earthfury Fists", + [47125] = "Earthfury Girdle", + [47126] = "Earthfury Leggings", + [47127] = "Earthfury Sabatons", + [47128] = "Earthfury Visor", + [47129] = "Earthfury Epaulets", + [47130] = "Earthfury Raiments", + [47131] = "Earthfury Bindings", + [47132] = "Earthfury Gauntlets", + [47133] = "Earthfury Sash", + [47134] = "Earthfury Legplates", + [47135] = "Earthfury Greaves", + [47136] = "Crown of Ten Storms", + [47137] = "Pauldrons of Ten Storms", + [47138] = "Breastplate of Ten Storms", + [47139] = "Bracelets of Ten Storms", + [47140] = "Fists of Ten Storms", + [47141] = "Girdle of Ten Storms", + [47142] = "Leggings of Ten Storms", + [47143] = "Sabatons of Ten Storms", + [47144] = "Helmet of Ten Storms", + [47145] = "Spaulders of Ten Storms", + [47146] = "Chestpiece of Ten Storms", + [47147] = "Bracers of Ten Storms", + [47148] = "Gloves of Ten Storms", + [47149] = "Belt of Ten Storms", + [47150] = "Pants of Ten Storms", + [47151] = "Boots of Ten Storms", + [47152] = "Stormcaller\'s Crown", + [47153] = "Stormcaller\'s Pauldrons", + [47154] = "Stormcaller\'s Breastplate", + [47155] = "Stormcaller\'s Leggings", + [47156] = "Stormcaller\'s Sabatons", + [47157] = "Stormcaller\'s Helmet", + [47158] = "Stormcaller\'s Spaulders", + [47159] = "Stormcaller\'s Chestpiece", + [47160] = "Stormcaller\'s Pants", + [47161] = "Stormcaller\'s Boots", + [47162] = "Earthshatter Crown", + [47163] = "Earthshatter Pauldrons", + [47164] = "Earthshatter Breastplate", + [47165] = "Earthshatter Bracelets", + [47166] = "Earthshatter Fists", + [47167] = "Earthshatter Girdle", + [47168] = "Earthshatter Leggings", + [47169] = "Earthshatter Sabatons", + [47170] = "Signet of the Earthshatterer", + [47171] = "Earthshatter Helmet", + [47172] = "Earthshatter Epaulets", + [47173] = "Earthshatter Raiments", + [47174] = "Earthshatter Bindings", + [47175] = "Earthshatter Gauntlets", + [47176] = "Earthshatter Sash", + [47177] = "Earthshatter Legplates", + [47178] = "Earthshatter Greaves", + [47179] = "Loop of the Earthshatterer", + [47180] = "Stormhowl Crown", + [47181] = "Stormhowl Pauldrons", + [47182] = "Stormhowl Breastplate", + [47183] = "Stormhowl Leggings", + [47184] = "Stormhowl Sabatons", + [47185] = "Choker of the Stormhowl", + [47186] = "Stormhowl Helmet", + [47187] = "Stormhowl Epaulets", + [47188] = "Stormhowl Raiments", + [47189] = "Stormhowl Legplates", + [47190] = "Stormhowl Greaves", + [47191] = "Pendant of the Stormhowl", + [47192] = "Stormhowl Headpiece", + [47193] = "Stormhowl Spaulders", + [47194] = "Stormhowl Tunic", + [47195] = "Stormhowl Legguards", + [47196] = "Stormhowl Boots", + [47197] = "Amulet of the Stormhowl", + [47198] = "Coronet of Prophecy", + [47199] = "Shoulderpads of Prophecy", + [47200] = "Raiments of Prophecy", + [47201] = "Bracers of Prophecy", + [47202] = "Handguards of Prophecy", + [47203] = "Sash of Prophecy", + [47204] = "Pants of Prophecy", + [47205] = "Sandals of Prophecy", + [47206] = "Coronet of Transcendence", + [47207] = "Shoulderpads of Transcendence", + [47208] = "Raiments of Transcendence", + [47209] = "Bracers of Transcendence", + [47210] = "Handguards of Transcendence", + [47211] = "Sash of Transcendence", + [47212] = "Pants of Transcendence", + [47213] = "Sandals of Transcendence", + [47214] = "Tiara of the Oracle", + [47215] = "Spaulders of the Oracle", + [47216] = "Vestments of the Oracle", + [47217] = "Trousers of the Oracle", + [47218] = "Treads of the Oracle", + [47219] = "Coronet of Faith", + [47220] = "Shoulderpads of Faith", + [47221] = "Raiments of Faith", + [47222] = "Bracers of Faith", + [47223] = "Handguards of Faith", + [47224] = "Sash of Faith", + [47225] = "Pants of Faith", + [47226] = "Sandals of Faith", + [47227] = "Ring of Faith", + [47228] = "Crown of Pestilence", + [47229] = "Mantle of Pestilence", + [47230] = "Robes of Pestilence", + [47231] = "Leggings of Pestilence", + [47232] = "Boots of Pestilence", + [47233] = "Amulet of Pestilence", + [47234] = "Coronet of Pestilence", + [47235] = "Shoulderpads of Pestilence", + [47236] = "Raiments of Pestilence", + [47237] = "Pants of Pestilence", + [47238] = "Sandals of Pestilence", + [47239] = "Pendant of Pestilence", + [47240] = "Crown of Might", + [47241] = "Pauldrons of Might", + [47242] = "Chestplate of Might", + [47243] = "Bracers of Might", + [47244] = "Gloves of Might", + [47245] = "Girdle of Might", + [47246] = "Leggings of Might", + [47247] = "Sabatons of Might", + [47248] = "Crown of Wrath", + [47249] = "Pauldrons of Wrath", + [47250] = "Chestplate of Wrath", + [47251] = "Bindings of Wrath", + [47252] = "Gloves of Wrath", + [47253] = "Girdle of Wrath", + [47254] = "Leggings of Wrath", + [47255] = "Sabatons of Wrath", + [47256] = "Conqueror\'s Crown", + [47257] = "Conqueror\'s Pauldrons", + [47258] = "Conqueror\'s Chestplate", + [47259] = "Conqueror\'s Leggings", + [47260] = "Conqueror\'s Sabatons", + [47261] = "Dreadnaught Crown", + [47262] = "Dreadnaught Pauldrons", + [47263] = "Dreadnaught Chestplate", + [47264] = "Dreadnaught Bindings", + [47265] = "Dreadnaught Gloves", + [47266] = "Dreadnaught Girdle", + [47267] = "Dreadnaught Leggings", + [47268] = "Dreadnaught Sabatons", + [47269] = "Ring of the Dreadnaught", + [47270] = "Helmet of the Brotherhood", + [47271] = "Shoulderguards of the Brotherhood", + [47272] = "Chestguard of the Brotherhood", + [47273] = "Legguards of the Brotherhood", + [47274] = "Greaves of the Brotherhood", + [47275] = "Choker of the Brotherhood", + [47276] = "Felheart Crown", + [47277] = "Felheart Mantle", + [47278] = "Felheart Raiments", + [47279] = "Felheart Bindings", + [47280] = "Felheart Handwraps", + [47281] = "Felheart Sash", + [47282] = "Felheart Leggings", + [47283] = "Felheart Boots", + [47284] = "Nemesis Crown", + [47285] = "Nemesis Mantle", + [47286] = "Nemesis Raiments", + [47287] = "Nemesis Bindings", + [47288] = "Nemesis Handwraps", + [47289] = "Nemesis Sash", + [47290] = "Nemesis Leggings", + [47291] = "Nemesis Slippers", + [47292] = "Doomcaller\'s Crown", + [47293] = "Doomcaller\'s Spaulders", + [47294] = "Doomcaller\'s Raiments", + [47295] = "Doomcaller\'s Leggings", + [47296] = "Doomcaller\'s Slippers", + [47297] = "Plagueheart Crown", + [47298] = "Plagueheart Mantle", + [47299] = "Plagueheart Raiments", + [47300] = "Plagueheart Bindings", + [47301] = "Plagueheart Handwraps", + [47302] = "Plagueheart Sash", + [47303] = "Plagueheart Leggings", + [47304] = "Plagueheart Boots", + [47305] = "Plagueheart Signet", + [47306] = "Nathrezim Crown", + [47307] = "Nathrezim Mantle", + [47308] = "Nathrezim Raiments", + [47309] = "Nathrezim Leggings", + [47310] = "Nathrezim Boots", + [47311] = "Nathrezim Amulet", + [47312] = "Nathrezim Skullcap", + [47313] = "Nathrezim Spaulders", + [47314] = "Nathrezim Robes", + [47315] = "Nathrezim Pants", + [47316] = "Nathrezim Slippers", + [47317] = "Nathrezim Pendant", + [47318] = "Ravenstalker Headpiece", + [47319] = "Ravenstalker Spaulders", + [47320] = "Ravenstalker Tunic", + [47321] = "Ravenstalker Legguards", + [47322] = "Ravenstalker Boots", + [47323] = "Ravenstalker Choker", + [47324] = "Trickster Helmet", + [47325] = "Trickster Pauldrons", + [47326] = "Trickster Breastplate", + [47327] = "Trickster Leggings", + [47328] = "Trickster Sabatons", + [47329] = "Trickster Choker", + [47330] = "Cenarion Circlet", + [47331] = "Cenarion Mantle", + [47332] = "Cenarion Vest", + [47333] = "Cenarion Wristbands", + [47334] = "Cenarion Handwraps", + [47335] = "Cenarion Sash", + [47336] = "Cenarion Trousers", + [47337] = "Cenarion Slippers", + [47338] = "Cenarion Helmet", + [47339] = "Cenarion Shoulderpads", + [47340] = "Cenarion Raiments", + [47341] = "Cenarion Wristguards", + [47342] = "Cenarion Handguards", + [47343] = "Cenarion Girdle", + [47344] = "Cenarion Pants", + [47345] = "Cenarion Treads", + [47346] = "Stormrage Circlet", + [47347] = "Stormrage Mantle", + [47348] = "Stormrage Vest", + [47349] = "Stormrage Wristbands", + [47350] = "Stormrage Handwraps", + [47351] = "Stormrage Sash", + [47352] = "Stormrage Trousers", + [47353] = "Stormrage Slippers", + [47354] = "Stormrage Helmet", + [47355] = "Stormrage Shoulderpads", + [47356] = "Stormrage Raiments", + [47357] = "Stormrage Wristguards", + [47358] = "Stormrage Handguards", + [47359] = "Stormrage Girdle", + [47360] = "Stormrage Pants", + [47361] = "Stormrage Treads", + [47362] = "Genesis Helm", + [47363] = "Genesis Spaulders", + [47364] = "Genesis Vestments", + [47365] = "Genesis Leggings", + [47366] = "Genesis Boots", + [47367] = "Genesis Helmet", + [47368] = "Genesis Shoulderpads", + [47369] = "Genesis Raiments", + [47370] = "Genesis Pants", + [47371] = "Genesis Treads", + [47372] = "Dreamwalker Circlet", + [47373] = "Dreamwalker Mantle", + [47374] = "Dreamwalker Vest", + [47375] = "Dreamwalker Wristbands", + [47376] = "Dreamwalker Handwraps", + [47377] = "Dreamwalker Sash", + [47378] = "Dreamwalker Trousers", + [47379] = "Dreamwalker Slippers", + [47380] = "Signet of the Dreamwalker", + [47381] = "Dreamwalker Helmet", + [47382] = "Dreamwalker Shoulderpads", + [47383] = "Dreamwalker Raiments", + [47384] = "Dreamwalker Wristguards", + [47385] = "Dreamwalker Handwraps", + [47386] = "Dreamwalker Girdle", + [47387] = "Dreamwalker Pants", + [47388] = "Dreamwalker Treads", + [47389] = "Band of the Dreamwalker", + [47390] = "Helm of the Talon", + [47391] = "Spaulders of the Talon", + [47392] = "Vestments of the Talon", + [47393] = "Leggings of the Talon", + [47394] = "Boots of the Talon", + [47395] = "Amulet of the Talon", + [47396] = "Circlet of the Talon", + [47397] = "Mantle of the Talon", + [47398] = "Vest of the Talon", + [47399] = "Trousers of the Talon", + [47400] = "Slippers of the Talon", + [47401] = "Pendant of the Talon", + [47402] = "Helmet of the Talon", + [47403] = "Shoulderpads of the Talon", + [47404] = "Raiments of the Talon", + [47405] = "Pants of the Talon", + [47406] = "Treads of the Talon", + [47407] = "Choker of the Talon", + [47408] = "Corrosive Poison", + [47409] = "Corrosive Poison II", + [47410] = "Concoction of the Emerald Mongoose", + [47411] = "Recipe: Concoction of the Emerald Mongoose", + [47412] = "Concoction of the Arcane Giant", + [47413] = "Recipe: Concoction of the Arcane Giant", + [47414] = "Concoction of the Dreamwater", + [47415] = "Recipe: Concoction of the Dreamwater", + [48298] = "Shadowtooth Memento", + [48600] = "Frosty Hedgehog", + [48601] = "Northwind Hedgehog", + [48602] = "Frosty Vulpen", + [48603] = "Crimson Vulpen", + [48604] = "Emerald Vulpen", + [48605] = "Arcane Vulpen", + [48606] = "Son of Deathwing", + [48607] = "Infernal Beast", + [48608] = "Moonwhisper Moth", + [48609] = "Winterspring Moth", + [48610] = "Azure Slitherer", + [48611] = "Olive Slitherer", + [48612] = "Orange Slitherer", + [48613] = "Celestial Construct", + [48614] = "Abyssal Construct", + [48615] = "Nimble Skitterer", + [48616] = "Frozen Skitterer", + [48617] = "Tropical Skitterer", + [48618] = "Fiery Skitterer", + [48619] = "Fel-Powered Chopper", + [48620] = "Infernal Chopper", + [48621] = "Voidborne Chopper", + [48622] = "Jade Slug", + [48623] = "Crimson Slug", + [48624] = "Tanaris Alpaca", + [48625] = "Sandy Alpaca", + [48626] = "Frosty Alpaca", + [48627] = "Nazjatar Shark", + [48628] = "Northrend Moose", + [48629] = "Festival Rocket", + [48630] = "Polly", + [48631] = "Lapidis Parrot", + [48632] = "Gillijim’s Parrot", + [48633] = "Tuskarr Ottuk", + [48634] = "Icepoint Ottuk", + [48635] = "Snowstorm", + [48636] = "Dark Riding Hound", + [48637] = "Brown Riding Hound", + [48638] = "Snowy Riding Hound", + [48639] = "Feralas Chimaera", + [48640] = "Nordrassil Drake", + [48641] = "Lunar Serpent", + [48642] = "Cloudy Red Panda", + [48643] = "Sunset Red Panda", + [48644] = "Dreamy Red Panda", + [48645] = "Mechano-Rex", + [48646] = "Voidborne Tiger", + [48647] = "Infernal Steed", + [48648] = "Skeletal Raptor", + [48649] = "Gnomeregan Chopper", + [49000] = "Glyph of the Bacon Quest", + [49990] = "Turtle Shell Pauldrons", + [49991] = "Sea Turtle Shell Pauldrons", + [49992] = "Sea Turtle Shell", + [49995] = "Famous Fashionista Glitterglam", + [50000] = "Character Name Change", + [50003] = "Loremaster\'s Backpack", + [50004] = "Portable Pocket Dimension", + [50005] = "Field Repair Bot 75B", + [50007] = "Forworn Mule", + [50009] = "Mechanical Auctioneer", + [50010] = "[Deprecated] Glyph of the Turtle", + [50011] = "MOLL-E, Remote Mail Terminal", + [50013] = "Bone Golem", + [50014] = "Blitzen", + [50015] = "Bloody Coin", + [50016] = "Broken Meeting Stone", + [50017] = "Tome of Disguise: Blood Elf", + [50018] = "Wanderer\'s Pouch", + [50019] = "Moonkin Hatchling", + [50020] = "Magic Muffin", + [50021] = "Strange Bottle", + [50024] = "Sandfury Sash", + [50025] = "Heavy Desert Leggings", + [50028] = "Simple Red Blindfold", + [50029] = "Black Mageweave Blindfold", + [50030] = "Zaman\'s Claw", + [50031] = "Raytaf\'s Claw", + [50032] = "Demon Hunter Sandals", + [50033] = "Demon Hunter Kilt", + [50034] = "Demon Hunter Harness", + [50035] = "Demon Hunter Bracers", + [50036] = "High Inquisitor\'s Chapeau", + [50037] = "High Inquisitor\'s Chest", + [50038] = "Red Mageweave Tabard", + [50039] = "High Inquisitor\'s Boots", + [50040] = "High Inquisitor\'s Shoulders", + [50041] = "High Inquisitor\'s Pants", + [50042] = "High Inquisitor\'s Gloves", + [50043] = "High Inquisitors Staff", + [50044] = "Gold Mageweave Tabard", + [50045] = "Goldweave Vest", + [50046] = "Dress of the Fire Festival", + [50047] = "Sandals of Summer", + [50048] = "Right Juggling Torch", + [50049] = "Treasure Seeking Torch", + [50050] = "Speedy\'s Starter Pack", + [50051] = "Speedy\'s Momentum Bundle", + [50052] = "Speedy\'s Steady Supply", + [50053] = "Speedy\'s Endurance Crate", + [50054] = "Speedy\'s Patience Package", + [50055] = "Speedy\'s Victory Chest", + [50056] = "City Protector\'s Medallion", + [50058] = "Black Piglet", + [50059] = "Green Winter Vest", + [50060] = "Green Winter Pants", + [50061] = "Red Winter Vest", + [50062] = "Half-Eaten Mutton Chop", + [50063] = "Intact Human Head", + [50064] = "Intact Orc Head", + [50065] = "Anatomy Class Notes", + [50066] = "Steel Mechanostrider", + [50067] = "Albino Snake", + [50068] = "Green Water Snake", + [50069] = "Scarlet Snake", + [50070] = "Bronze Whelpling", + [50071] = "Ivory Tallstrider", + [50072] = "Brown Tallstrider", + [50073] = "Gray Tallstrider", + [50074] = "Pink Tallstrider", + [50075] = "Purple Tallstrider", + [50076] = "Turquoise Tallstrider", + [50077] = "Brightwing", + [50078] = "Dart Frog", + [50079] = "Island Frog", + [50080] = "Eagle Owl", + [50081] = "Cottontail Rabbit", + [50082] = "Snowy Owl", + [50083] = "Azure Whelpling", + [50084] = "Kirin Tor Familiar", + [50085] = "Frostwolf Ghostpup", + [50086] = "Stromgarde Tabard", + [50087] = "Tabard of Kul Tiras", + [50088] = "Theramore Tabard", + [50089] = "Pilfered Dalaran Tabard", + [50090] = "White Tabard of Stormwind", + [50091] = "Black Mageweave Tabard", + [50092] = "Tabard of the Crimson Legion", + [50093] = "Tabard of Hearthglen", + [50094] = "Sword of a Thousand Truths", + [50095] = "Scholomance Academy Hood", + [50096] = "Scholomance Academy Vest", + [50097] = "Scholomance Academy Gloves", + [50098] = "Scholomance Academy Boots", + [50099] = "Scholomance Academy Shoulders", + [50100] = "Scholomance Academy Pants", + [50102] = "Scholomance Academy Belt", + [50103] = "Scholomance Academy Robe", + [50104] = "Scholomance Academy Staff", + [50105] = "Mark of the Scarlet Crusade", + [50106] = "Mark of Necromancy I", + [50107] = "Sapling\'s Secret", + [50108] = "Root Awakening", + [50109] = "Emerald Dream", + [50110] = "Moonwater Aqua", + [50111] = "Winterspring White", + [50112] = "Deep Azure", + [50113] = "Sapphire Shade", + [50114] = "Wisteria Bloom", + [50115] = "Darkshire Black", + [50116] = "Chestnut", + [50117] = "Old Copper", + [50118] = "Fireball Ginger", + [50119] = "Cuergo\'s Copper", + [50120] = "Stormwind Gold", + [50121] = "Morning Sun", + [50122] = "Wheat Blonde", + [50123] = "Battle-Worn Grey", + [50124] = "Silver Fox", + [50125] = "Explodo Black", + [50126] = "Boombrew Brown", + [50127] = "Gizmo Gold", + [50128] = "Diamond Disassemble", + [50129] = "Diggy Diggy Coal", + [50130] = "Gnomeflare Red", + [50131] = "Zapforge Blue", + [50132] = "Verdant Blunder", + [50133] = "Circuit Shock Pink", + [50134] = "Forgefire Copper", + [50135] = "Amber Mead", + [50136] = "Molten Ember", + [50137] = "Ashen Stone", + [50138] = "Bronzebeard Rust", + [50139] = "Dwarven Hair Dye: Black", + [50140] = "Ironbark Shine", + [50141] = "Mountain Grey", + [50142] = "Ironhide Grey", + [50143] = "Zulian Purple", + [50144] = "Bloodstained Red", + [50145] = "Sunscorched Orange", + [50146] = "Voodoo Gold", + [50147] = "Jungle Grass Green", + [50148] = "Aquatic Mint Blue", + [50149] = "Wavecrest Light Blue", + [50150] = "Deep Sea Dark Blue", + [50151] = "Ashen Mist Grey", + [50152] = "Frostbite Snow White", + [50153] = "Brawler\'s Blue", + [50154] = "Warsong Oak", + [50155] = "Twilight Whispers", + [50156] = "Darkspear Purple", + [50157] = "Warlock\'s Violet", + [50158] = "Blackrock Black", + [50159] = "Desolace Grey", + [50160] = "Ashes of Draenor", + [50161] = "Grave Moss", + [50162] = "Funereal Rose", + [50163] = "Plagueland Mud Brown", + [50164] = "Maggotetic Attraction", + [50165] = "Ashes to Ashes", + [50166] = "Banshee Blue", + [50167] = "Putrefaction", + [50168] = "Cyanosis", + [50169] = "Livor mortis", + [50170] = "Shroud Black", + [50171] = "Undead Hair Dye: Ash Black", + [50172] = "Sentinel War Package", + [50173] = "Outrider War Package", + [50174] = "Sentinel War Package", + [50175] = "Outrider War Package", + [50176] = "Sentinel War Package", + [50177] = "Outrider War Package", + [50178] = "Sentinel War Package", + [50179] = "Outrider War Package", + [50180] = "Sentinel War Package", + [50181] = "Outrider War Package", + [50182] = "Arathi Basin Resource Crate", + [50183] = "Arathi Basin Resource Crate", + [50184] = "Arathi Basin Resource Crate", + [50185] = "Arathi Basin Resource Crate", + [50186] = "Demoralization Club", + [50187] = "Cursed Shinbone", + [50188] = "Deathforge Belt", + [50189] = "Ring of Authority", + [50190] = "Boots of the Holy Mentor", + [50191] = "Frostchain Gauntlets", + [50192] = "Band of Arcane Dampening", + [50193] = "Gravewalker Pauldrons", + [50200] = "Darkmoon Tonk", + [50201] = "Expired Winter Veil Party Invitation", + [50202] = "Egg of Turtlhu", + [50203] = "Corrupted Sand", + [50204] = "Mark of the Wildhammer Clan I", + [50205] = "Mark of the Dark Iron Clan", + [50206] = "Mark of the Earthen Dwarves", + [50207] = "Mark of Blackrock Clan I", + [50208] = "Mark of the Burning Blade", + [50209] = "Mark of the Mag\'har Heritage", + [50210] = "Forest Troll", + [50211] = "Sandfury Trolls", + [50212] = "Mark of Radioactive Fallout", + [50220] = "Orc: Blackrock II", + [50221] = "Mark of the Blackrock Clan II", + [50223] = "Mark of the Dreadskull Clan I", + [50224] = "Mark of the Dreadskull Clan II", + [50225] = "Forest Troll II", + [50230] = "Erlgadin\'s Survival Guide", + [50231] = "Sturdy Rope", + [50232] = "Cheap Goblin\'s Oil", + [50233] = "Wooden Club", + [50234] = "Torn Outline: Traveler\'s Tent", + [50235] = "Torn Outline: Fishing Boat", + [50236] = "Stormborn\'s Cape", + [50237] = "Elixir of Greater Nature Power", + [50238] = "Torn Outline: Simple Wooden Planter", + [50243] = "Pompa\'s Scratching Stick", + [50244] = "Vampire Heart", + [50245] = "Crystal of Vengeance", + [50246] = "Concentrated Power of Will", + [50247] = "Superconducting Magnet", + [50248] = "Black Widow Eggs", + [50250] = "Mark of the Wildhammer Clan II", + [50251] = "Mark of the Wildhammer Clan III", + [50252] = "Mark of the Wildhammer Clan IV", + [50256] = "Fractured Sword", + [50257] = "Eel Fishing Guide", + [50290] = "Mark of Azotha", + [50291] = "Mark of Fel Power", + [50292] = "Mark of the Arcane Binder", + [50298] = "Plans: Minor Trollblood Ring", + [50300] = "Ironforge Guard\'s Chest", + [50301] = "Ironforge Guard\'s Waistguard", + [50302] = "Ironforge Guard\'s Pants", + [50303] = "Ironforge Guard\'s Boots", + [50304] = "Ironforge Guard\'s Gloves", + [50305] = "Ironforge Guard\'s Shoulders", + [50306] = "Ironforge Guard\'s Helmet", + [50307] = "Ironforge Guard\'s Shield", + [50308] = "Stormwind Guard\'s Chestplate", + [50309] = "Stormwind Guard\'s Waistguard", + [50310] = "Stormwind Guard\'s Greaves", + [50311] = "Stormwind Guard\'s Sabatons", + [50312] = "Stormwind Guard\'s Gauntlets", + [50313] = "Stormwind Guard\'s Shoulders", + [50314] = "Stormwind Guard\'s Helmet", + [50315] = "Stormwind Guard\'s Shield", + [50316] = "Kul Tiras Marine Chestplate", + [50317] = "Kul Tiras Marine Girgle", + [50318] = "Kul Tiras Marine Breeches", + [50319] = "Kul Tiras Marine Boots", + [50320] = "Kul Tiras Marine Gauntlets", + [50321] = "Kul Tiras Marine Shoulders", + [50322] = "Kul Tiras Marine Helmet", + [50323] = "Theramore Guard\'s Chestplate", + [50324] = "Theramore Guard\'s Waistguard", + [50325] = "Theramore Guard\'s Greaves", + [50326] = "Theramore Guard\'s Sabatons", + [50327] = "Theramore Guard\'s Gauntlets", + [50328] = "Theramore Guard\'s Shoulders", + [50329] = "Theramore Guard\'s Helmet", + [50330] = "Stromgarde Guard\'s Chestplate", + [50331] = "Stromgarde Guard\'s Waistguard", + [50332] = "Stromgarde Guard\'s Greaves", + [50333] = "Stromgarde Guard\'s Sabatons", + [50334] = "Stromgarde Guard\'s Gauntlets", + [50335] = "Stromgarde Guard\'s Shoulders", + [50336] = "Stromgarde Guard\'s Helmet", + [50337] = "Darnassus Sentinel Chestguard", + [50338] = "Darnassus Sentinel Leggings", + [50339] = "Darnassus Sentinel Boots", + [50340] = "Darnassus Sentinel Gloves", + [50341] = "Darnassus Sentinel Faceguard", + [50342] = "Darnassus Sentinel Glaive", + [50343] = "Dun Morogh Mountaineer Chestguard", + [50344] = "Dun Morogh Mountaineer Waistcoat", + [50345] = "Dun Morogh Mountaineer Breeches", + [50346] = "Dun Morogh Mountaineer Snowboots", + [50347] = "Dun Morogh Mountaineer Handguards", + [50348] = "Dun Morogh Mountaineer Armplates", + [50349] = "Dun Morogh Mountaineer Hood", + [50350] = "Deathguard\'s Chestpiece", + [50351] = "Deathguard\'s Belt", + [50352] = "Deathguard\'s Pants", + [50353] = "Deathguard\'s Boots", + [50354] = "Deathguard\'s Gloves", + [50355] = "Deathguard\'s Bracers", + [50356] = "Deathguard\'s Hood", + [50357] = "Night Watch Guard Chestpiece", + [50358] = "Night Watch Guard Waist", + [50359] = "Night Watch Guard Breeches", + [50360] = "Night Watch Guard Boots", + [50361] = "Night Watch Guard Gloves", + [50362] = "Orgrimmar Grunt Harness", + [50363] = "Orgrimmar Grunt Girdle", + [50364] = "Orgrimmar Grunt Pants", + [50365] = "Orgrimmar Grunt Boots", + [50366] = "Orgrimmar Grunt Gauntlets", + [50367] = "Orgrimmar Grunt Pauldrons", + [50368] = "Thunder Bluff Guard\'s Chestpiece", + [50369] = "Thunder Bluff Guard\'s Belt", + [50370] = "Thunder Bluff Guard\'s Pants", + [50371] = "Thunder Bluff Guard\'s Boots", + [50372] = "Thunder Bluff Guard\'s Bracers", + [50373] = "Thunder Bluff Guard\'s Shoulders", + [50374] = "Thunder Bluff Guard\'s Totem", + [50376] = "Hillsbrad Tabard", + [50377] = "Wanderer\'s Pants", + [50378] = "Stromgarde Guard\'s Shield", + [50379] = "Forsaken Guard\'s Shield", + [50390] = "Darnassus Sentinel Shoulderpads", + [50391] = "Summer Collection of Unseen Fashion: Leggings", + [50392] = "Gnomeregan Guard\'s Chestpiece", + [50393] = "Gnomeregan Guard\'s Belt", + [50394] = "Gnomeregan Guard\'s Pants", + [50395] = "Gnomeregan Guard\'s Boots", + [50396] = "Gnomeregan Guard\'s Gloves", + [50397] = "Goldweave Shoes", + [50398] = "Goldweave Pants", + [50399] = "White Unicorn", + [50400] = "Zhevra", + [50401] = "Armored Ivory Raptor", + [50402] = "Armored Violet Raptor", + [50403] = "Armored Red Raptor", + [50404] = "Armored Obsidian Raptor", + [50405] = "Spectral Gryphon Essence", + [50406] = "Shadowhorn Stag", + [50407] = "Twilight Unicorn", + [50408] = "Tome of Disguise: Dryad", + [50409] = "Sen\'jin Guard\'s Harness", + [50410] = "Sen\'jin Guard\'s Belt", + [50411] = "Sen\'jin Guard\'s Pants", + [50412] = "Sen\'jin Guard\'s Anklets", + [50413] = "Sen\'jin Guard\'s Bracers", + [50414] = "Sen\'jin Guard\'s Shoulders", + [50415] = "Sen\'jin Guard\'s Mask", + [50417] = "Time-shifting Wheel", + [50418] = "Corrupted Plate Pauldrons", + [50420] = "Thrall\'s Shoulders", + [50421] = "Thrall\'s Belt", + [50422] = "Thrall\'s Boots", + [50423] = "Thrall\'s Leggings", + [50424] = "Thrall\'s Handguards", + [50425] = "Thrall\'s Chestguard", + [50426] = "Zebra", + [50427] = "Time-blackened Chestpiece", + [50428] = "Ancient Clutch", + [50429] = "Spear of the Endless Hunt", + [50430] = "Magic-infused Cloak", + [50431] = "Extremely Well Crafted Cuffs", + [50432] = "Bracers of the Inevitable Fate", + [50433] = "Monster, Sword Spear Red", + [50435] = "Tome of Disguise: Dreadlord", + [50436] = "Tome of Disguise: Smolderthorn Berserker", + [50437] = "Tome of Disguise: Naga Explorer", + [50438] = "Tome of Disguise: Naga Siren", + [50439] = "Tome of Disguise: Harpy", + [50440] = "Cracked Scarlet Crusade Insignia", + [50445] = "Taming Rod", + [50446] = "Taming Rod", + [50447] = "Taming Rod", + [50452] = "Belt of the Fire Festival", + [50480] = "Summer Collection of Unseen Fashion: Chest", + [50481] = "Summer Collection of Unseen Fashion: Bracers", + [50500] = "Darkmaster\'s Cuirass", + [50501] = "Darkmaster\'s Belt", + [50502] = "Darkmaster\'s Pants", + [50503] = "Darkmaster\'s Boots", + [50504] = "Darkmaster\'s Gloves", + [50505] = "Darkmaster\'s Shoulders", + [50506] = "Darkmaster\'s Helmet (Human Male Only)", + [50507] = "Darkmaster\'s Cowl", + [50508] = "Darkmaster\'s Shirt", + [50512] = "Goldweave Sash", + [50514] = "Necromancer\'s Cuirass", + [50515] = "Necromancer\'s Belt", + [50516] = "Necromancer\'s Pants", + [50517] = "Necromancer\'s Boots", + [50518] = "Necromancer\'s Shoulders", + [50519] = "Necromancer\'s Cowl", + [50520] = "Glyph of Exhaustion", + [50521] = "[Deprecated] Glyph of Exhaustion", + [50522] = "Goblin Race Car Manual", + [50523] = "Gnome Race Car Manual", + [50524] = "Gnome Car Key", + [50525] = "Goblin Car Key", + [50527] = "Medic\'s Cane", + [50528] = "Tempered Defender", + [50529] = "Rod of Charring", + [50531] = "Glyphed Baton", + [50535] = "Nordrassil Stag", + [50536] = "Twilight", + [50545] = "Gemstone of Ysera", + [50600] = "Summon: Barber", + [50601] = "Summon: Surgeon", + [50602] = "Summon: Auctioneer", + [50603] = "Race Change Token: Human", + [50604] = "Race Change Token: Gnome", + [50605] = "Race Change Token: Dwarf", + [50606] = "Race Change Token: Night Elf", + [50607] = "Race Change Token: Orc", + [50608] = "Race Change Token: Troll", + [50609] = "Race Change Token: Tauren", + [50610] = "Race Change Token: Undead", + [50612] = "Race Change Token: High Elf", + [50613] = "Race Change Token: Goblin", + [50703] = "Dreambough Satchel", + [50708] = "Tiny Turtle Figurine", + [50739] = "Roasted Tauren", + [50740] = "Winterax Rope", + [50741] = "Gnome Stew", + [50742] = "Winterax Rope", + [50743] = "Winterax Ritual Dagger", + [50744] = "Winterax Disguise", + [50745] = "Glyph of Self-Restraint", + [50746] = "Glyph of the Honorless", + [50747] = "Dreamsight Gem", + [50800] = "Bramblethorn Girdle", + [51000] = "Small Scorpid Carapace", + [51001] = "Large Scorpid Carapace", + [51002] = "Green Steam Tonk", + [51003] = "Purple Steam Tonk", + [51004] = "Goblin Prize Box", + [51005] = "Gnome Prize Box", + [51006] = "Gadgetzan Times Issue #1", + [51007] = "Teldrassil Sproutling", + [51008] = "Sentinel\'s Sholders", + [51009] = "Daisy\'s Gift Box", + [51010] = "Mark of the Dark Trolls", + [51011] = "Mark of the Frozen Trolls", + [51013] = "Hauberk of the Templar", + [51014] = "Girdle of the Templar", + [51015] = "Chausses of the Templar", + [51016] = "Sabatons of the Templar", + [51017] = "Gauntlets of the Templar ", + [51018] = "Pauldrons of the Templar", + [51019] = "Armet of the Templar", + [51020] = "Strawberry Schnapps", + [51021] = "Speedy\'s Jukebox", + [51022] = "Carefully Written Birthday Card", + [51023] = "Vilebranch Grips", + [51024] = "Cursed Idol", + [51025] = "Vilebranch Seer\'s Dress", + [51029] = "Glyph of the Vagrant", + [51030] = "Trade Co. Standard-Issue Breastplate", + [51031] = "Trade Co. Standard-Issue Belt", + [51032] = "Trade Co. Standard-Issue Leggings", + [51033] = "Trade Co. Standard-Issue Greaves", + [51034] = "Trade Co. Standard-Issue Gauntlets", + [51035] = "Trade Co. Standard-Issue Pauldrons", + [51036] = "Trade Co. Standard-Issue Helmet", + [51037] = "Trade Co. Standard-Issue Vambraces", + [51038] = "Trade Co. Standard-Issue Rifle", + [51039] = "Trade Co. Standard-Issue Spear", + [51040] = "Claymore of the Templar", + [51041] = "Falchion of the Templar", + [51042] = "Heater Shield of the Templar", + [51043] = "Void-Linked Satchel", + [51044] = "Antnormi\'s Head", + [51045] = "Toxic Talisman", + [51046] = "Call of Shadow", + [51047] = "Sacrosanct Epaulets", + [51048] = "The Veil of Hatred", + [51050] = "S.W.A.G Goggles", + [51051] = "Daisy Hot Pants", + [51052] = "Blue Summer Shirt", + [51055] = "Glyph of the Oak", + [51056] = "Glyph of the Forest Stag", + [51057] = "Glyph of the Frostsaber", + [51058] = "Weird Snowball", + [51060] = "Winter Veil Gift Box", + [51061] = "Red Winter Pants", + [51062] = "Winter Boots", + [51064] = "Glyph of the White Stag", + [51065] = "Tome of Disguise: Wraith", + [51066] = "Tome of Disguise: Flamewaker", + [51067] = "Tome of Disguise: Bone Serpent", + [51070] = "Glyph of the Arcane Treant", + [51200] = "Tome of Disguise: Goblin", + [51201] = "Tome of Disguise: Worgen", + [51203] = "Tome of Disguise: High Elf", + [51205] = "Tome of Disguise: Ghost", + [51206] = "Tome of Disguise: Banshee", + [51207] = "Tome of Disguise: Serpent Lord", + [51208] = "Tome of Disguise: Succubus", + [51209] = "Tome of Disguise: Rat", + [51210] = "Tome of Disguise: Green Dragonkin", + [51215] = "Tome of Disguise: Satyr", + [51217] = "Fashion Coin", + [51218] = "Delicious Elwynn Truffle", + [51219] = "Woolen Cowl", + [51220] = "Lost Farm Sheep", + [51221] = "Lulu", + [51223] = "Flock of Wool", + [51224] = "Warm Woolen Drape", + [51230] = "Glyph of the Turtle", + [51240] = "Master Dragonslayer\'s Shirt", + [51245] = "Torta\'s Voodoo Doll", + [51246] = "Sarah Sadwhistle\'s Garments", + [51247] = "Chromie\'s Eighth Spare Pocketwatch", + [51248] = "Snow Covered Feather", + [51249] = "Snowball", + [51250] = "Miniature Winter Veil Tree", + [51251] = "Hedwig", + [51252] = "Bronze Drake", + [51253] = "Tome of Disguise: Furbolg", + [51254] = "Empty Festive Bag", + [51255] = "Toy Train Set", + [51256] = "Gloves of Manathirst", + [51257] = "Lovely Heart-Shaped Box", + [51258] = "Large Lovely Hand-Made Bag", + [51259] = "Little Pony", + [51260] = "Prince Herman II", + [51261] = "Little Cow", + [51262] = "Volatile Concoction", + [51263] = "Recipe: Volatile Concoction", + [51264] = "Blast Shield", + [51265] = "Plans: Blast Shield", + [51266] = "Glyph of the Ice Bear", + [51267] = "Spicy Beef Burrito", + [51268] = "Unstable Mining Dynamite", + [51269] = "Schematic: Unstable Mining Dynamite", + [51270] = "Libram: Holy Strike II", + [51271] = "Libram: Holy Strike III", + [51272] = "Libram: Holy Strike IV", + [51273] = "Libram: Holy Strike V", + [51274] = "Libram: Holy Strike VI", + [51275] = "Libram: Holy Strike VII", + [51276] = "Libram: Holy Strike VIII", + [51277] = "Pattern: Gloves of Manathirst", + [51278] = "Bad Troll Love Poetry, page I", + [51279] = "Bad Troll Love Poetry, page II", + [51280] = "Bad Troll Love Poetry, page III", + [51281] = "Bad Troll Love Poetry, page IV", + [51282] = "Fishing Boat", + [51283] = "Traveler\'s Tent", + [51284] = "Lynxstep Boots", + [51285] = "Pattern: Lynxstep Boots", + [51286] = "Formula: Enchant 2H Weapon - Minor Intellect", + [51300] = "Oakweave Vestments", + [51301] = "Shard of Beth\'Amara", + [51305] = "Small Pouch of Fashion Coins", + [51306] = "Large Pouch of Fashion Coins", + [51310] = "Broken Portable Wormhole Generator", + [51312] = "Portable Wormhole Generator: Stormwind", + [51313] = "Portable Wormhole Generator: Orgrimmar", + [51320] = "Smashed Pumpkin", + [51325] = "Elwynn Pumpkin", + [51326] = "Scribbled Cooking Notes", + [51330] = "Delicious Pumpkin Pie", + [51332] = "Gramma Stonefield\'s Lantern", + [51356] = "Karazhan Crypt Key", + [51360] = "Glyph of the Emerald Bear", + [51361] = "Glyph of the Dreamkin", + [51362] = "Glyph of the Dream Panther", + [51400] = "Farmer\'s Gloves", + [51401] = "Farmer\'s Sash", + [51403] = "Brown Lumberjack Vest", + [51410] = "Raid Management: Purple Rune", + [51411] = "Raid Management: Green Rune", + [51412] = "Raid Management: Blue Rune", + [51420] = "Lovingly Crafted Chocolate Cake", + [51421] = "Caravan Kodo", + [51425] = "Teresa\'s Copper Coin", + [51431] = "Glyph of the Frostkin", + [51432] = "Glyph of Stars", + [51433] = "Little Fawn", + [51435] = "Old-Fashioned Loose Shirt", + [51600] = "Ancient Spell Locket", + [51601] = "Othmar Garithos\' Coin", + [51602] = "Nathanos Marris\' Coin", + [51603] = "Arthas\' Gold Coin", + [51604] = "Speedy\'s Gold Coin", + [51605] = "Vaedath\'s Silver Coin", + [51606] = "Felicia\'s Silver Coin", + [51607] = "Sinrek\'s Silver Coin", + [51608] = "King Mrgl-Mrgl\'s Coin", + [51609] = "Barthilas\' Copper Coin", + [51610] = "Murky\'s Coin", + [51611] = "Eitrigg\'s Copper Coin", + [51612] = "A Peasant\'s Silver Coin", + [51613] = "Kryll\'s Copper Coin", + [51614] = "Medivh\'s Silver Coin", + [51615] = "Muradin Bronzebeard\'s Silver Coin", + [51616] = "Fandral Staghelm\'s Silver Coin", + [51617] = "Tyrande\'s Coin", + [51618] = "Malfurion\'s Coin", + [51619] = "Uther Lightbringer\'s Gold Coin", + [51620] = "Anduin Wrynn\'s Gold Coin", + [51621] = "Tirion Fordring\'s Gold Coin", + [51622] = "Alonsus Faol\'s Copper Coin", + [51623] = "Antonidas\' Silver Coin", + [51624] = "Lady Katrana Prestor\'s Gold Coin", + [51625] = "Princess Calia Menethil\'s Copper Coin", + [51626] = "Private Marcus Jonathan\'s Copper Coin", + [51627] = "Er\'s Coin", + [51628] = "Torta\'s Gold Coin", + [51629] = "Aurelian\'s Silver Coin", + [51630] = "Gifted\'s Silver Coin", + [51631] = "Smultron\'s Silver Coin", + [51632] = "Momo\'s Silver Coin", + [51633] = "Chlo\'s Silver Coin", + [51634] = "Marta\'s Silver Coin", + [51635] = "Pompa\'s Rubber Duck", + [51636] = "Chomper\'s Lost Tooth", + [51637] = "Inflatable Thunderfury, Blessed Blade of the Windseeker", + [51638] = "King Llane\'s Silver Coin", + [51639] = "Smultron\'s Shades", + [51640] = "Engie\'s Coin", + [51641] = "Momo\'s Coin", + [51642] = "Herczeg\'s Silver Coin", + [51643] = "Marta\'s Silver Coin", + [51644] = "Kazgrim\'s Silver Coin", + [51645] = "Dragunovi\'s Silver Coin", + [51646] = "Skadi\'s Gold Coin", + [51660] = "Gheor\'s Silver Coin", + [51700] = "Cracked Raptor Egg", + [51701] = "Blessed Seed", + [51702] = "Glyph of Blazing Wings", + [51705] = "Simple Wooden Planter", + [51706] = "Country Pumpkin Seeds", + [51707] = "Mountain Berry Bush Seeds", + [51708] = "Striped Melon Seeds", + [51709] = "Farmer\'s Guidebook: Surviving on the Land!", + [51710] = "Plump Country Pumpkin", + [51711] = "Sour Mountain Berry", + [51712] = "Juicy Watermelon", + [51713] = "Plump Country Pumpkin", + [51714] = "Sweet Mountain Berry", + [51715] = "Goblin Brainwashing Device", + [51716] = "Magic Mushroom Spores", + [51717] = "Hardened Mushroom", + [51718] = "Sweet Watermelon", + [51719] = "Garden Shovel", + [51720] = "Power Mushroom", + [51725] = "Silky Webbing", + [51730] = "Shawl of Nerubian Silk", + [51731] = "Venom Covered Cloak", + [51732] = "Silken Mantle of Dying Hope", + [51733] = "Shadow-Weaver\'s Cape", + [51734] = "Shawl of Haunted Memories", + [51735] = "Scourgelord\'s Fang", + [51736] = "Plague-Infected Robe", + [51737] = "Vestments of Eternal Autumn", + [51738] = "Tunnel Fiend Carapace", + [51739] = "Little Ball of Spider Web", + [51740] = "Crown of Skittering Shadows", + [51741] = "Cryptbone Hauberk", + [51742] = "Necrotic Mantle", + [51743] = "Lost Templar\'s Artifact", + [51744] = "Rothide Armguards", + [51745] = "Blighted Mind Leggings", + [51746] = "Shadowblaster", + [51747] = "Mindpiercer Band", + [51748] = "Necromancer\'s Skullcap", + [51749] = "Stonescale Girdle", + [51750] = "Trepp\'s Taco", + [51751] = "Bone Chew Toy", + [51752] = "Crusader\'s Redemption", + [51753] = "Archaic Slicer", + [51754] = "Lodestone Blade", + [51755] = "Rune of the Wildhammer Clan", + [51756] = "Pendant of the Deep Woodlands", + [51757] = "Woven Ivy Cloak", + [51758] = "Siege Golem Core", + [51759] = "Siege Bomber", + [51760] = "Marksman\'s Band", + [51761] = "Shadowforge Runed Gauntlets", + [51762] = "Blazerunner Boots", + [51763] = "Burnout Leggings", + [51764] = "Staff of Spreading Twilight", + [51765] = "Highlord\'s Grasp", + [51766] = "Greatblade of Quel\'Danil", + [51767] = "Dagger of Quel\'Danil", + [51768] = "Bow of Quel\'Danil", + [51769] = "Crown of the Dark Reaver", + [51770] = "Shoulderguards of the Dark Reaver", + [51771] = "Chestplate of the Dark Reaver", + [51772] = "Grasp of the Dark Reaver", + [51773] = "Girdle of the Dark Reaver", + [51774] = "Sabatons of the Dark Reaver", + [51775] = "Legguards of the Dark Reaver", + [51776] = "Plagued Mind Leggings", + [51777] = "Necromancer\'s Visage", + [51778] = "Lost Crusader\'s Artifact", + [51779] = "Greataxe of the Decrepit Crypt", + [51780] = "Ghoulslayer Shotgun", + [51781] = "Necrotic Wake Mantle", + [51782] = "Mindpiercer Band", + [51783] = "Shadowskin Bracers", + [51784] = "Belt of Archaic Power", + [51785] = "Stoneslate Belt", + [51786] = "Cryptbone Hauberk", + [51787] = "Spaulders of Insight", + [51788] = "Visage of the Forgotten", + [51789] = "Circlet of Forlorn Spirits", + [51790] = "Stormpike", + [51791] = "Mountaineer\'s Boots", + [51792] = "Otherworldly Robe", + [51793] = "Otherworldly Blade", + [51794] = "Otherworldly Rifle", + [51795] = "Warm Pants", + [51796] = "Shield of Consuming Darkness", + [51797] = "Claw of the Wildshifter", + [51798] = "Idol of the Wildshifter", + [51799] = "Libram of Veracity", + [51800] = "Totem of Earthstorm", + [51801] = "Schematic: Hypertech Battery Pack", + [51802] = "Idol of Evergrowth", + [51803] = "Totem of the Endless Flicker", + [51804] = "Libram of the Resolute", + [51805] = "Signet of Arugal", + [51807] = "Gretchen\'s Slippers", + [51808] = "Experimental Portable Wormhole Generator", + [51809] = "Schematic: Hypertech Essentials", + [51810] = "Gnoll Slammer", + [51812] = "Ashwood Spear", + [51815] = "Githyiss\'s Venom Sac", + [51816] = "Webwood Branch", + [51817] = "Woodland Boots", + [51818] = "Agal\'s Ambusher", + [51819] = "Greenpaw\'s Sash", + [51820] = "Bhartec\'s Lost Wand", + [51821] = "Decaying Pouch", + [51822] = "Human Blood", + [51823] = "Old Icebeard\'s Beard", + [51824] = "Trogg Kickers", + [51825] = "Beer-Stained Tunic", + [51826] = "\"Squealer\" Thornmantle\'s Mane", + [51827] = "Thornmantle Harness", + [51828] = "Hawkwind Rifle", + [51829] = "Windfeather Poncho", + [51830] = "Glyph of the Orca", + [51831] = "Glyph of the Spectral Wolf", + [51832] = "Nathrezim Wedge", + [51833] = "Femur Staff", + [51834] = "Scarlet Pillar", + [51835] = "Speedy\'s Energy Drink", + [51836] = "Tome of Disguise: Tiny Murloc", + [51837] = "Syndicate Amulet", + [51840] = "Inflatable Woman", + [51841] = "Rabbit\'s Foot", + [51842] = "The Dark Knife", + [51843] = "Pennyworth Cane", + [51844] = "Stunning Crossbow", + [51845] = "Kaja\'s Ammo", + [51846] = "Rezlak\'s Shipment", + [51848] = "Ancient Elven Robes", + [51849] = "Thunderhorn", + [51850] = "Greenweave Sash", + [51851] = "Verdant Boots", + [51855] = "Dirty Old Ring", + [51856] = "Gold Ring", + [51857] = "Blackrock\'s Lord Shirt", + [51858] = "Tirisfal Bat", + [51860] = "Sickly Gazelle Flesh Sample", + [51861] = "Waters of Vision", + [51862] = "Brave\'s Rifle", + [51864] = "Ring of Lingering Ancestors", + [51865] = "Emblazoned Kodo Horn", + [51868] = "Rockhide Boar Meat", + [51869] = "Tog\'s Letter", + [51870] = "Brannol\'s Sewing Kit", + [51875] = "Tapered Belt", + [51876] = "Wolfskin Boots", + [51877] = "Copper Scale Leggings", + [51880] = "Grunt\'s Belt", + [51881] = "Hardlink Boots", + [51882] = "Demon Skin Boots", + [51885] = "Web Covered Shoes", + [51886] = "Deathguard Boots", + [51887] = "Nomadic Pants", + [51888] = "Painted Chain Boots", + [51889] = "Hyjal Bear Cub", + [51890] = "Adventurer\'s Shirt", + [51891] = "Mysterious Fortune Teller", + [51892] = "The Reaver", + [51893] = "Open House 2021 Gift Box", + [51894] = "Free T-Shirt", + [51895] = "Ironpatch\'s Head", + [51896] = "Pearled Necklace", + [51897] = "Bloodsail Eyepatch", + [51898] = "Fearless Traveler\'s Shirt", + [51899] = "Frostweave Shirt of Frozen Souls", + [51900] = "Depleted Stone of Ahn\'Qiraj", + [51901] = "Scarab Lord\'s Garments", + [51902] = "Chillin\' Like a Lich Club T-Shirt", + [51904] = "Frayed Tunic of Unrelenting Food Crumbs", + [51909] = "Glyph of the Penguin", + [51920] = "Mark of Darkness", + [51921] = "Undead: Blood Widow", + [51930] = "Caretaker Brambleclaw", + [51931] = "Squire Boltfling", + [51932] = "Firestone", + [51933] = "Spellstone", + [51934] = "Felstone", + [51935] = "Wrathstone", + [51936] = "Voidstone", + [51944] = "Black Bear Cub", + [53000] = "Sealed Letter", + [53001] = "Mathias Shaw\'s Ring", + [53002] = "Scarlet Recruit\'s Insignia Ring", + [53003] = "[Deprecated] Tome of Disguise: Scarlet Crusade", + [53004] = "Undead\'s Rotten Brain", + [53005] = "Scarlet Crusade Insignia", + [53008] = "Tome of Disguise: Two-headed Ogre", + [53010] = "Vial of Mysterious Concoction", + [53011] = "Gunther\'s Scroll", + [53012] = "Gunther\'s Locket", + [53013] = "Varimathras\'s Report", + [53014] = "Scarlet Initiate Uniform", + [53015] = "Gurubashi Gumbo", + [53016] = "Recipe: Gurubashi Gumbo", + [53017] = "Formula: Enchant Gloves - Major Strength", + [54000] = "Azure Frog", + [54001] = "Dream Frog", + [54002] = "Bullfrog", + [54003] = "Infinite Frog", + [54004] = "Poison Frog", + [54005] = "Snow Frog", + [54006] = "Pink Frog", + [54007] = "Golden Frog", + [54008] = "Pond Frog", + [54009] = "Dissolvent Poison", + [54010] = "Dissolvent Poison II", + [55000] = "Test Helm 1", + [55001] = "Test Helm 2", + [55002] = "Test Chest 1", + [55003] = "Test Chest 2", + [55004] = "Shattered Burning Blade Medallion", + [55005] = "Test Shoulder 2", + [55006] = "Test Legs 1", + [55007] = "Test Legs 2", + [55008] = "Test Belt 1", + [55009] = "Test Belt 2", + [55010] = "Test Boots 1", + [55011] = "Test Boots 2", + [55012] = "Test Bracers 1", + [55013] = "Test Bracers 2", + [55014] = "Test Gloves 1", + [55015] = "Test Gloves 2", + [55016] = "Test Cloak 1", + [55017] = "Test Cloak 2", + [55018] = "Yellowed Mask", + [55019] = "Enforcer Guard Belt", + [55020] = "Faithful Loop", + [55021] = "Alvelo\'s Reinforced Bludgeon", + [55022] = "Bishop Miranda\'s Rosary", + [55023] = "Hath\'s Stalwart Defense", + [55024] = "Arnella\'s Silken Trousers", + [55025] = "Trand\'s Lightweight Shoulder Pads", + [55026] = "Alteraci Hunting Spear", + [55027] = "Snowpeak Eagle", + [55028] = "Kavdan\'s Patient Watch", + [55029] = "Valea\'s Alacrity", + [55030] = "Aliden\'s Prejudice", + [55031] = "Pattern: Royal Robes of the Alteraci Princess", + [55032] = "Royal Robes of the Alteraci Princess", + [55033] = "Mystic\'s Feather Headdress", + [55034] = "Grim Batol Mountaineer Pauldrons", + [55035] = "Derelict Family Clan Totem", + [55036] = "Lorekeeper Cuffs", + [55037] = "Gryphon Tamer Longstaff", + [55038] = "Fallen Heroes\' Hymnal", + [55039] = "Sharpshooter\'s Boots", + [55040] = "Skyfall Mantle", + [55041] = "Wildhammer Stormcaller", + [55042] = "Pattern: Harness of the High Thanes", + [55043] = "Harness of the High Thane", + [55044] = "Formula: Enchant Boots - Major Intellect", + [55045] = "Recipe: Elixir of Greater Frost Power", + [55046] = "Elixir of Greater Frost Power", + [55047] = "Recipe: Elixir of Greater Arcane Power", + [55048] = "Elixir of Greater Arcane Power", + [55049] = "Pattern: Essence Infused Leather Gloves", + [55050] = "Essence Infused Leather Gloves", + [55051] = "Pattern: Astronomer Raiments", + [55052] = "Astronomer Raiments", + [55053] = "Pattern: Prismatic Scale Barbute", + [55054] = "Prismatic Scale Barbute", + [55055] = "Pattern: Spellwoven Nobility Drape", + [55056] = "Spellwoven Nobility Drape", + [55057] = "Plans: Rune-Inscribed Plate Leggings", + [55058] = "Rune-Inscribed Plate Leggings", + [55059] = "Plans: Grandstaff of the Shen\'dralar Elder", + [55060] = "Grandstaff of the Shen\'dralar Elder", + [55061] = "Shadowed Mask", + [55062] = "Ravenholdt Guard Belt", + [55063] = "Floral Loop", + [55064] = "Ol\' Biggin\'s Substitute Broom", + [55065] = "Smudge\'s Necklace of Good Fortune", + [55066] = "Master Kang\'s Inner Focus", + [55067] = "Simone\'s Dainty Boquet of Begonias", + [55068] = "Zan\'s Leperification Blaster", + [55069] = "Pattern: Mantle of Falling Knives", + [55070] = "Mantle of Falling Knives", + [55071] = "Ravenholdt Raven", + [55072] = "Fahrad\'s Silent Nails", + [55073] = "Myrokos\' Philosophical Dissertation", + [55074] = "Plans: The Frigid Whisper", + [55075] = "The Frigid Whisper", + [55076] = "Design: Carnelia\'s Sunset", + [55077] = "Carnelia\'s Sunset", + [55078] = "Ley-attuned Choker", + [55079] = "Ravenkeeper\'s Frenzied Embrace", + [55080] = "Bloodmoon, Sickle of the Murderous Flight", + [55081] = "Manadrenched Feather Slippers", + [55082] = "Idol of Laceration", + [55083] = "Crown of the Wildpack", + [55084] = "Torn Wings of Midnight", + [55085] = "Magispark Leggings", + [55086] = "Magehunter Belt", + [55087] = "Jewel of Wild Magics", + [55088] = "Dragonclaw Gauntlets", + [55089] = "Bands of the Surgebreaker", + [55090] = "Scaleshield of Azure Flight", + [55091] = "Loop of Infused Renewal", + [55092] = "Manahide Slippers", + [55093] = "Remains of Overwhelming Power", + [55094] = "Medivh\'s Hindsight", + [55095] = "Cloak of the Bloody Ravager", + [55096] = "Phase-shifting Crossbow", + [55097] = "Choker of Chromatic Power", + [55098] = "Gloves of Nourishment", + [55099] = "Leysteel Legplates", + [55100] = "Checkmate", + [55101] = "King\'s Edict", + [55102] = "Insomnius\' Retribution", + [55103] = "Royal Seal of Greymane", + [55104] = "Pawn\'s Advance", + [55105] = "Bishop\'s Reverence", + [55106] = "Bindings of Contained Magic", + [55107] = "Gloves of Leyline Convergence", + [55108] = "Dreadslayer Shoulderblades", + [55109] = "Legwraps of Meticulous Planning", + [55110] = "Libram of the Eternal Tower", + [55111] = "Eye of Dormant Corruption", + [55112] = "Pendant of Forgiven Mistakes", + [55113] = "Dreadslayer Horns", + [55114] = "Totem of Broken Earth", + [55115] = "Riftcarver\'s Implement", + [55116] = "Raka\'shishi, Spear of the Adrift Hunt", + [55117] = "Girdle of the Faded Primals", + [55118] = "Kum\'isha\'s Tattered Drape", + [55119] = "Forgotten Hide Helm", + [55120] = "Al\'Kazeth, Claw of Ruptured Elements", + [55121] = "Bulwark of Enduring Earth", + [55122] = "Earthquake Leggings", + [55123] = "Loop of Hardened Slate", + [55124] = "Pure Jewel of Draenor", + [55125] = "Handwraps of Dead Winds", + [55126] = "Mantle of the Drifting Stars", + [55127] = "Shar\'tateth, the Shattered Edge", + [55128] = "Comet Signaller", + [55129] = "Desecration", + [55130] = "Wristwraps of Exiled Radiance", + [55131] = "Shieldrender Talisman", + [55132] = "Pendant of Purified Demon\'s Blood", + [55133] = "Claw of the Mageweaver", + [55134] = "Rod of Permafrost", + [55135] = "Shard of Leyflow", + [55141] = "Ironsun Citrine Ring", + [55142] = "Quartz Halo", + [55143] = "Jade Harmony Circlet", + [55144] = "Goldfire Crystal Bracelet", + [55145] = "Goldenshade Quartz Crown", + [55146] = "The Golden Goblet", + [55147] = "Powerful Citrine Pendant", + [55148] = "Staff of Blossomed Jade", + [55150] = "Rough Gritted Paper", + [55151] = "Coarse Gritted Paper", + [55152] = "Heavy Gritted Paper", + [55153] = "Solid Gritted Paper", + [55154] = "Dense Gritted Paper", + [55155] = "Jewelers Kit", + [55156] = "Rough Copper Ring", + [55157] = "Copper Bangle", + [55158] = "Bright Copper Ring", + [55159] = "Sturdy Copper Ring", + [55160] = "Inlaid Copper Ring", + [55161] = "Encrusted Copper Bangle", + [55162] = "Lesser Fortification Ring", + [55163] = "Tigercrest Ring", + [55164] = "Minor Trollblood Ring", + [55165] = "Small Pearlstone Staff", + [55166] = "Amber Ring", + [55167] = "Azure Ring", + [55168] = "Softglow Ring", + [55169] = "Small Pearl Ring", + [55170] = "Topaz Studded Ring", + [55171] = "Lavish Gemmed Necklace", + [55172] = "Amberstone Pendant", + [55173] = "Deepmist Choker", + [55174] = "Rough Bronze Ring", + [55175] = "Encrusted Bronze Staff", + [55176] = "Earthrock Loop", + [55177] = "Faceted Armcuffs", + [55178] = "Stellar Gemguards", + [55179] = "Luminescent Cufflinks", + [55180] = "Crystalfire Armlets", + [55181] = "Moonlit Gemchains", + [55182] = "Ogre Rings of Might", + [55183] = "Crystalfall Cap", + [55184] = "Radiant Veil", + [55185] = "Jeweled Helm", + [55186] = "Gemfire Visage", + [55187] = "Facetop Crown", + [55188] = "Crest of Elemental Harmony", + [55189] = "Blood Crown", + [55190] = "Radiant Crown of the Elders", + [55191] = "Sunset Tiara", + [55192] = "Citrine Pendant", + [55193] = "Stormy Necklace", + [55194] = "Nature Shard", + [55195] = "Astral Amulet", + [55196] = "Aquamarine Pendant", + [55197] = "Starforge Amulet", + [55198] = "Moonlit Charm", + [55199] = "Prism Amulet", + [55200] = "Voidheart Charm", + [55201] = "Enigma Pendant", + [55202] = "Gemmed Citrine Pendant", + [55203] = "Reinforced Aquamarine Pendant", + [55204] = "Runebound Amulet", + [55205] = "Sunburst Collar", + [55206] = "Onyx Locket", + [55207] = "Pure Uplifting Choker", + [55208] = "Choker Of The Judged", + [55209] = "Medallion Of The Lost", + [55210] = "Facetted Moonstone Brooch", + [55211] = "Obsidian Brooch", + [55212] = "Smoldering Brooch", + [55213] = "Vitriol Brooch", + [55214] = "Rough Citrine RIng", + [55215] = "Citrine Fireflare Ring", + [55216] = "Radiant Citrine Band", + [55217] = "Citrine Ember Ring", + [55218] = "Vitrol Riddled Ember Band", + [55219] = "Rough Aquamarine Ring", + [55220] = "Mariner\'s Aquamarine Ring", + [55221] = "Whispering Tides Band", + [55222] = "Ocean\'s Embrace Ring", + [55223] = "Aquabreeze Band", + [55224] = "Unpolished Emberstone RIng", + [55225] = "Emberheart Band", + [55226] = "Molten Ember Loop", + [55227] = "Inferno Emberstone Ring", + [55228] = "Cinderfall Band", + [55229] = "Emberstorm Loop", + [55230] = "Firestorm Lava Loop", + [55231] = "Unpolished Moonstone Ring", + [55232] = "Moonlit Band", + [55233] = "Moonlit Radiance Band", + [55234] = "Astral Moonstone Band", + [55235] = "Moon\'s Embrace Band", + [55236] = "Lunar Loop", + [55237] = "Crystal Clear Moon Loop", + [55238] = "Earthen Advisor Cane", + [55239] = "Jeweled Magiwand", + [55240] = "Topaz Tempest Rod", + [55241] = "Garnet Guardian Stave", + [55242] = "Opaline Illuminator", + [55243] = "Gemkeeper\'s Folio", + [55244] = "Gemstone Compendium", + [55245] = "Polishing Oil", + [55246] = "Shimmering Oil", + [55247] = "Gemstone Oil", + [55248] = "Enchanted Gemstone Oil", + [55249] = "Crystal Quartz", + [55250] = "Emberstone", + [55251] = "Pure Moonstone", + [55252] = "Imperial Topaz", + [55254] = "Ember Circlet", + [55255] = "Skyfire Jewel", + [55256] = "Radiant Thorium Twilight", + [55257] = "Moonstone Ember Veil", + [55258] = "Blue Starfire", + [55259] = "Sapphire Luminescence", + [55260] = "Starry Thorium Band", + [55261] = "Stellar Ruby Ring", + [55262] = "Opaline Ember", + [55263] = "Twilight Opal Cascade", + [55264] = "Massive Jewel Circlet", + [55265] = "Emerald Monarch\'s Glow", + [55266] = "Sunburst Tiara", + [55267] = "Ethereal Frostspark Crown", + [55268] = "Quicksilver Whirl", + [55269] = "Glyph Codex", + [55270] = "Elixir Vessel", + [55271] = "Spellweaver Rod", + [55272] = "Arcanum Baton", + [55273] = "Crystalweft Braces", + [55274] = "Chain-Cloak of the Rookguard", + [55275] = "Slivers of Nullification", + [55276] = "Forgotten Raven\'s Mallet", + [55277] = "The End of All Ambitions", + [55278] = "Ques\' Gauntlets of Precision", + [55279] = "Branch of Resolute Defense", + [55280] = "Boots of Elemental Fury", + [55281] = "Gauntlets of Elemental Fury", + [55282] = "Boots of the Grand Crusader", + [55283] = "Gauntlets of the Grand Crusader", + [55284] = "Dragunovi\'s Sash of Domination", + [55285] = "Crite\'s Holy Hands", + [55286] = "Ring of Holy Light", + [55287] = "Invocation of Shadow Resistance", + [55288] = "Invocation of Greater Constitution", + [55289] = "Invocation of Greater Voracity", + [55316] = "Ebon Ring", + [55317] = "The King\'s Conviction", + [55318] = "Shadowfall Jewel", + [55319] = "Ocean\'s Wrath", + [55320] = "Dazzling Moonstone Band", + [55321] = "Harpy Talon Ring", + [55322] = "Centaur Hoof Circlet", + [55323] = "Ogre Bone Band", + [55324] = "Spectre Shade Ring", + [55325] = "Marine\'s Demise", + [55326] = "Serpent\'s Coil Staff", + [55327] = "Farraki Ceremony Totem", + [55328] = "Sphinx\'s Wisdom Staff", + [55329] = "Gloomweed Bindings", + [55330] = "Hydrathorn Bracers", + [55331] = "Blackrock Ironclamps", + [55332] = "Monastery Emberbrace", + [55333] = "Shadowmoon Orb", + [55334] = "Fangclaw Relic", + [55335] = "Netherbane Rod", + [55336] = "Marine Root", + [55337] = "Mistwood Tiara", + [55338] = "Venomspire Diadem", + [55339] = "Bloodfire Circlet", + [55340] = "Shadowforged Eye", + [55341] = "Totem of Self Preservation", + [55342] = "Cherry Spring Vest", + [55343] = "Lilac Spring Vest", + [55344] = "Willow Spring Vest", + [55345] = "Sage Spring Vest", + [55346] = "Rain of Spiders", + [55347] = "Thunderfall, Stormhammer of the Chief Thane", + [55348] = "Kirel\'narak, the Death Sentence", + [55349] = "Nethraka, Wing of Oblivion", + [55350] = "Censer of Soulwarding", + [55351] = "Turalyon\'s Hope", + [55352] = "Cloak of Rapid Regeneration", + [55353] = "Mephistroth\'s Cunning", + [55354] = "Khadgar\'s Guidance", + [55355] = "Memory of the Last Guardian", + [55356] = "Netherwrought Bracers", + [55357] = "Sash of the Grand Betrayal", + [55359] = "Blazefury Circlet", + [55360] = "Ring of Unleashed Potential", + [55361] = "Empowered Domination Rod", + [55362] = "Orb of Clairvoyance", + [55363] = "Grail of Forgotten Memories", + [55364] = "Guardbreaker Charm", + [55365] = "Rudeus\' Focusing Cane", + [55366] = "Spire of Channeled Power", + [55367] = "Bindings of Luminance", + [55368] = "Crown of the Illustrious Queen", + [55369] = "Kolkar Marauder Gauntlets", + [55370] = "Totem of Static Charge", + [55371] = "Windborne Sash", + [55372] = "Band of the Claw", + [55373] = "Idol of the Apex Predator", + [55374] = "Enraging Waistwraps", + [55375] = "Corrosive Vial", + [55376] = "Mixologist", + [55377] = "Chemist\'s Shawl", + [55378] = "Inventor\'s Mitts", + [55379] = "Slag Slugger", + [55380] = "Craftsman\'s Pants", + [55381] = "Phytolance", + [55382] = "Mitre of the First Light", + [55383] = "Prelate\'s Sigil", + [55384] = "Hilt of Radiance", + [55385] = "Signet of Faded Sermons", + [55386] = "Harbinger Girdle", + [55387] = "Introduction to the Dark Arts", + [55388] = "Slain Sentry\'s Ring", + [55389] = "Ghoulskin Treads", + [55470] = "Libram of Radiance", + [55471] = "Wystan\'s Steel Fist", + [55472] = "Swiftstrike Kilt", + [55473] = "Pendant of Scarlet Rage", + [55474] = "Balanced Razor Shivs", + [55475] = "Cuffs of Evocation", + [55476] = "Treads of Renewal", + [55477] = "Loop of Focused Magic", + [55478] = "Garbs of the Riftwalker", + [55479] = "Nethershard Band", + [55480] = "Harborage Defender Pauldrons", + [55481] = "Draenethyst Pendant", + [55482] = "Ephemeral Pendant", + [55483] = "Ethereal Boots of Conquest", + [55484] = "Ethereal Boots of Ascendancy", + [55485] = "Shifting Mantle of Conquest", + [55486] = "Shifting Mantle of Ascendancy", + [55487] = "Fractured Crown of Conquest", + [55488] = "Fractured Crown of Ascendancy", + [55489] = "Brutal Leggings of Conquest", + [55490] = "Brutal Leggings of Ascendancy", + [55491] = "Nathrezim Armor of Treachery", + [55492] = "Nathrezim Armor of Deceit", + [55494] = "The Abyssal Pincer", + [55495] = "Zandalar Predator\'s Glaive", + [55496] = "Polychromatic Pearl Necklace", + [55497] = "Idol of Ebb and Flow", + [55498] = "Clamshell of the Depths", + [55499] = "Primal Murloc Scale Belt", + [55500] = "Barnacle Vambraces", + [55501] = "Sphere of the Endless Gulch", + [55502] = "Iceplated Leggings", + [55503] = "Loop of Unceasing Frost", + [55504] = "Anchor of the Wavecutter", + [55505] = "The Scythe of Elune", + [55506] = "Worldbreaker Girdle", + [55507] = "Choker of Terminal Arcanum", + [55508] = "Brand of Karazhan", + [55509] = "Deepsea Lobster", + [55510] = "Fragments of Aldrach", + [55511] = "Hellflame", + [55512] = "Forgotten Hide Pauldrons", + [55513] = "Tunic of Demonic Deception", + [55514] = "Clam Shield", + [55515] = "Felforged Nathrezan Veil", + [55516] = "Felforged Nathrezan Circlet", + [55517] = "Felforged Nathrezan Aureole", + [55518] = "Cosmic Headdress", + [55519] = "Cosmic Mantle", + [55520] = "Cosmic Vest", + [55521] = "Cosmic Leggings", + [55522] = "Ethereal Helmet", + [55523] = "Ethereal Shoulder Pads", + [55524] = "Ethereal Tunic", + [55525] = "Ethereal Leggings", + [55526] = "Otherworldly Coif", + [55527] = "Otherworldly Spaulders", + [55528] = "Otherworldly Breastplate", + [55529] = "Otherworldly Leggings", + [55530] = "Reflective Helmet", + [55531] = "Reflective Pauldrons", + [55532] = "Reflective Breastplate", + [55533] = "Reflective Leggings", + [55534] = "Ley-Kissed Drape", + [55535] = "Pattern: Cosmic Headdress", + [55536] = "Pattern: Cosmic Mantle", + [55537] = "Pattern: Cosmic Vest", + [55538] = "Pattern: Cosmic Leggings", + [55539] = "Pattern: Ethereal Helmet", + [55540] = "Pattern: Ethereal Shoulder Pads", + [55541] = "Pattern: Ethereal Tunic", + [55542] = "Pattern: Ethereal Leggings", + [55543] = "Plans: Otherworldly Coif", + [55544] = "Plans: Otherworldly Spaulders", + [55545] = "Plans: Otherworldly Breastplate", + [55546] = "Plans: Otherworldly Leggings", + [55547] = "Plans: Reflective Helmet", + [55548] = "Plans: Reflective Pauldrons", + [55549] = "Plans: Reflective Breastplate", + [55550] = "Plans: Reflective Leggings", + [55551] = "Pattern: Ley-Kissed Drape", + [55552] = "Guide: Aspect of the Wolf VII", + [55553] = "Gloves of the Primordial Burrower", + [55554] = "Carapace Handguards", + [55555] = "Ivonor, Maiden\'s Mallet", + [55556] = "Unused AQ40 Mail Helm Test", + [55557] = "Unused AQ40 Mail Chest Test", + [55558] = "Unused AQ40 Mail Shoulders Test", + [55559] = "Unused AQ40 Mail Legs Test", + [55560] = "Unused AQ40 Mail Boots Test", + [55561] = "Unused AQ40 Mail Gloves Test", + [55562] = "Unused AQ40 Mail Bracers Test", + [55563] = "Unused AQ40 Mail Belt Test", + [55564] = "Unused AQ40 Leather Helm Test", + [55565] = "Unused AQ40 Leather Chest Test", + [55566] = "Unused AQ40 Leather Shoulders Test", + [55567] = "Unused AQ40 Leather Legs Test", + [55568] = "Unused AQ40 Leather Boots Test", + [55569] = "Unused AQ40 Leather Belt Test", + [55570] = "Unused AQ40 Leather Gloves Test", + [55571] = "Unused AQ40 Leather Bracers Test", + [55572] = "Unused AQ40 Cloth Helm Test", + [55573] = "Unused AQ40 Cloth Chest Test", + [55574] = "Unused AQ40 Cloth Shoulders Test", + [55575] = "Unused AQ40 Cloth Legs Test", + [55576] = "Unused AQ40 Cloth Boots Test", + [55577] = "Unused AQ40 Cloth Gloves Test", + [55578] = "Turalyon\'s Lost Sash", + [55579] = "Heart of Mephistroth", + [55580] = "Codex of Searing Shot V", + [55581] = "Desecrated Ring", + [55582] = "Desecrated Loop", + [55583] = "Desecrated Signet", + [56000] = "Pristine Crystal Gemstone", + [56001] = "Gleaming Jade Gemstone", + [56002] = "Sharpened Citrine Gemstone", + [56003] = "Shimmering Aqua Gemstone", + [56004] = "Radiant Ember Gemstone", + [56005] = "Illuminated Gemstone", + [56006] = "Glowing Ruby Gemstone", + [56007] = "Shining Sapphire Gemstone", + [56008] = "Brilliant Opal Gemstone", + [56009] = "Elegant Emerald Gemstone", + [56010] = "Beautiful Diamond Gemstone", + [56011] = "Unstable Arcane Gemstone", + [56012] = "Gloomy Diamond Gemstone", + [56013] = "Flawless Black Gemstone", + [56014] = "Stunning Imperial Gemstone", + [56015] = "Azerothian Ruby Gemstone", + [56016] = "Arcane Emerald Gemstone", + [56017] = "Tempered Azerothian Gemstone", + [56018] = "Enchanted Emerald Gemstone", + [56019] = "Dense Gemstone Cluster", + [56020] = "Solid Gemstone Cluster", + [56021] = "Plans: Small Pearl Ring", + [56022] = "Plans: Bulky Copper Ring", + [56023] = "Ocean\'s Gaze", + [56024] = "Plans: Blue Starfire", + [56025] = "Plans: Emerald Monarch\'s Glow", + [56026] = "Plans: Sapphire Luminescence", + [56027] = "Plans: Arcanum Baton", + [56028] = "Plans: Sunburst Tiara", + [56029] = "Plans: Ocean\'s Gaze", + [56030] = "Plans: Starry Thorium Band", + [56031] = "Encrusted Gemstone Ring", + [56032] = "Ruby Ring of Ruin", + [56033] = "Pure Gold Ring", + [56034] = "Shimmering Moonstone Tablet", + [56035] = "Stormcloud Sigil", + [56036] = "Golden Scepter of Authority", + [56037] = "Gleaming Chain", + [56038] = "Talisman of Stone", + [56039] = "Medallion of Flame", + [56040] = "Gleaming Silver Necklace", + [56041] = "Ring of The Turtle", + [56042] = "Gem Encrusted Choker", + [56043] = "Goldcrest Amulet", + [56044] = "Shining Copper Cuffs", + [56045] = "Dawnbright Cuffs", + [56046] = "Circlet of Dampening", + [56047] = "Crystal Earring", + [56048] = "Dazzling Aquamarine Loop", + [56049] = "Alluring Citrine Choker", + [56050] = "Elaborate Golden Bracelets", + [56051] = "Heart of the Sea", + [56052] = "Staff of Gallitrea", + [56053] = "Golden Jade Ring", + [56054] = "Delicate Mithril Amulet", + [56055] = "Draenethyst Baton", + [56056] = "Burning Star Gemstone", + [56057] = "Glittering Sapphire Gemstone", + [56058] = "Pure Shining Moonstone", + [56059] = "Shimmering Diamond Band", + [56060] = "Crown of Molten Ascension", + [56061] = "Embergem Cuffs", + [56062] = "Blackwing Signet of Command", + [56063] = "Talisman of Hinderance", + [56064] = "Mastercrafted Diamond Crown", + [56065] = "Opalstone Circle", + [56066] = "Deep Sapphire Circlet", + [56067] = "Dark Iron Signet Ring", + [56068] = "Opal Guided Bangles", + [56069] = "Crown of Elegance", + [56070] = "Ornate Mithril Bracelets", + [56071] = "Regal Twilight Staff", + [56072] = "Pendant of Instability", + [56073] = "Ornament of Restraint", + [56074] = "Graceful Agate Gemstone", + [56075] = "Dreary Opal Gemstone", + [56076] = "Resilient Arcane Gemstone", + [56077] = "Resurged Topaz Gemstone", + [56078] = "Marbled Stone Slab", + [56079] = "Unrefined Lifeblood Gem", + [56080] = "Silken Cloth", + [56081] = "Thegren\'s Gritted Paper", + [56082] = "Perfect Lifeblood Gem", + [56083] = "Top Piece of an Ancient Idol", + [56084] = "Middle Piece of an Ancient Idol", + [56085] = "Bottom Piece of an Ancient Idol", + [56086] = "Glowing Arctic Grayling", + [56087] = "Barnacle Covered Key", + [56088] = "Ancient Idol of Cla\'ckora", + [56089] = "Ornate Mithril Crown", + [56090] = "Spellweaver Pendant", + [56091] = "Ring of Midnight", + [56092] = "Stormcloud Shackles", + [56093] = "Stormcloud Signet", + [56094] = "Golden Runed Ring", + [56095] = "Mana Binding Signet", + [56096] = "Mastercrafted Diamond Bangles", + [56097] = "Top Half of Advanced Jewelcrafting XI: Hard as Diamonds", + [56098] = "Bottom Half of Advanced Jewelcrafting XI: Hard as Diamonds", + [56099] = "Advanced Jewelcrafting XI: Hard as Diamonds", + [56100] = "Top Half of Advanced Goldsmithing I", + [56101] = "Bottom Half of Advanced Goldsmithing I", + [56102] = "Top Half of Advanced Goldsmithing II", + [56103] = "Bottom Half of Advanced Goldsmithing II", + [56104] = "Bottom Half of Advanced Gemology I", + [56105] = "Top Half of Advanced Gemology I", + [56106] = "Top Half of Advanced Gemology II", + [56107] = "Bottom Half of Advanced Gemology II", + [56108] = "Advanced Gemology II", + [56109] = "Advanced Gemology I", + [56110] = "Advanced Goldsmithing I", + [56111] = "Advanced Goldsmithing II", + [56112] = "Ancient Dwarven Gemstone", + [56113] = "Elixir of Rapid Growth", + [58000] = "Boarhide Leggings", + [58001] = "The Goldtusk", + [58002] = "Honeypot", + [58003] = "Big Scary Mittens", + [58004] = "Slick Scale Cloak", + [58005] = "Heart of a Cryptid", + [58006] = "Tattered Gnoll Bandana", + [58007] = "Obedient Whacker", + [58008] = "Defias Amice", + [58009] = "Quistis\' Wand", + [58010] = "Psalm of Righteous Fire", + [58011] = "Friar\'s Signet", + [58012] = "Magilou\'s Tarot Compendium", + [58013] = "Academy Dropout Slippers", + [58014] = "Scolding Rod", + [58015] = "Blackrock Cleaver", + [58016] = "Ashwood Bow", + [58017] = "Shiv of Nobility", + [58018] = "Inheritance Blade", + [58019] = "Mace of Devotion", + [58020] = "Lumberjack Vest", + [58021] = "Belt of Compassion", + [58022] = "SI:7 Honorary Medal", + [58023] = "Loop of the Assassin", + [58024] = "Operative Cape", + [58025] = "Duel of Leaves", + [58026] = "Rod of Stromgarde", + [58027] = "Almanac of Prayer", + [58028] = "Robes of the Wailing Nun", + [58029] = "Hood of the Pyremaster", + [58030] = "Crawford Hauberk", + [58031] = "Amberwood Bracers", + [58032] = "Dark Iron Gloves", + [58033] = "Amber Shawl", + [58034] = "Leafsguard", + [58035] = "Amberwood Great-Axe", + [58036] = "Blade of the Overlord", + [58037] = "Ozuk\'s Piercer", + [58038] = "Steeltooth", + [58039] = "Fang of the Broodmother", + [58040] = "Cavernweb Cuffs", + [58041] = "Fangmother Essence", + [58042] = "Venomtouched Gloves", + [58043] = "Cavern Silk Trousers", + [58044] = "Ceremonial Dwarven Staff", + [58045] = "Ancient Legplates", + [58046] = "Shield of Galoraz", + [58047] = "Grasp of Ancestors", + [58048] = "Shovel of Loneliness", + [58049] = "Charred Candle", + [58050] = "Dangling Toad Eye", + [58051] = "Slimy Wristbands", + [58052] = "Royal Saddle Pouch", + [58053] = "Tattered Crimson Shabrack", + [58054] = "Scepter of Nazjatar", + [58055] = "Translucent Pearls", + [58056] = "Robes of Creeping Tendrils", + [58057] = "Drenched Demon Treads", + [58058] = "Harpoon of Ahab", + [58059] = "Razertooth Fetish", + [58061] = "Sharkskin Sash", + [58062] = "Half-dissolved Wedding Ring", + [58063] = "Pantaloons of Torture", + [58064] = "Harelyss\' Whip", + [58065] = "Clasps of Subterfuge", + [58066] = "Seabreeze Mantle", + [58067] = "Verix\' Navigator Cloak", + [58068] = "Goblin Nose Ring", + [58069] = "Penny\'s Crabcracker", + [58070] = "Tidecaller Chestpiece", + [58071] = "Plundered Pirate Hat", + [58072] = "Tarred Shoulderpads", + [58073] = "Grahan Family Seal", + [58074] = "Lightfooted Mokassins", + [58075] = "Grips of Mending", + [58076] = "Archivist\'s Belt", + [58077] = "Hydromancer Cowl", + [58078] = "Choker of Insight", + [58079] = "Pearlescent Shard", + [58080] = "Rufus\' Trusty Tankard", + [58081] = "Kinrial\'s Scalpel", + [58082] = "Noppsy\'s Compendium", + [58083] = "Nippsy\'s Precision Rifle", + [58084] = "Mudpaw Slammer", + [58085] = "Mudpaw Cane", + [58086] = "Standard Grade Rifle", + [58087] = "Drifter\'s Knife", + [58088] = "True Band of Sulfuras", + [58089] = "Thornlash Branch", + [58090] = "Seed of Writhing Growth", + [58091] = "Idol of the Thorned Grove", + [58092] = "Champion\'s Sandhelm", + [58093] = "Libram of the Farraki Zealot", + [58094] = "Gilded Blade of Razjal", + [58095] = "Talisman of the Sandborn", + [58096] = "Soulgem of the Chained Wyrm", + [58097] = "Tyrant General\'s Ring", + [58098] = "The Chainsplitter", + [58099] = "Dragonmaw Helmet", + [58100] = "Drakebone War Core", + [58101] = "Stormfang Cleaver", + [58102] = "Dragonmaw Bulwark", + [58103] = "Drakeflame Girdle", + [58104] = "Magmascarred Cloak", + [58105] = "Bindings of the Forebearer", + [58106] = "Coal-Dusted Worker\'s Vest", + [58107] = "Ancestor\'s Wisdom", + [58108] = "Drakeskin Gloves", + [58109] = "Kindling Signet", + [58110] = "Lantern-Helm of the Deep", + [58111] = "Dragonmaw Hauberk", + [58112] = "Dragonmaw Gloves", + [58113] = "Dragonmaw Bracers", + [58114] = "Dragonmaw Leggings", + [58115] = "Dragonmaw Greaves", + [58116] = "Bloodstained Fangblade", + [58117] = "Staff of the Bloodbound", + [58118] = "Sash of Ritual Scars", + [58119] = "Bracers of the Bloodbound", + [58120] = "Cowl of Whispering Shadows", + [58121] = "Totem of the Corrupted Current", + [58122] = "Bracers of Sinister Rites", + [58123] = "Felhoof Sabatons", + [58124] = "Mountaineer\'s Breaches", + [58125] = "Cinderfist Treads", + [58126] = "Snow Wanderer\'s Staff", + [58127] = "Hammer of Earthfury", + [58128] = "Axe of Raging Winds", + [58129] = "Claw of Tempered Fire", + [58130] = "Maneater Cleaver", + [58131] = "Stormreaver Belt", + [58132] = "Gluttonous Buckle", + [58133] = "Handmaiden\'s Bracelet", + [58134] = "Stormreaver Gloves", + [58135] = "Dagger of Whispered Madness", + [58136] = "Shadeweave Drape", + [58137] = "Netherbranch", + [58138] = "Librarian\'s Encyclopedia", + [58139] = "Libram of Virtue", + [58140] = "Broken Goldrimmed Monocle", + [58141] = "Boots of Silence", + [58142] = "Robes of the Dukedom", + [58143] = "Kelpie\'s Legacy", + [58144] = "Vander Legguards", + [58145] = "Light\'s Sermon", + [58146] = "Totem of Tides", + [58147] = "Stormreaver Mantle", + [58148] = "Treads of the Unknown", + [58149] = "Band of Subservience", + [58150] = "Deathedge Sabre", + [58151] = "Salt-encrusted Compass", + [58152] = "Cloak of Black Fortitude", + [58153] = "Shattered Soul Ring", + [58154] = "Brand of Lohengrin", + [58155] = "Rotten Dwarven Shinbone", + [58156] = "Bonesplitter Loincloth", + [58157] = "Girdle of Venoms", + [58158] = "Husk of Arashna", + [58159] = "Hood of Lifebinding", + [58160] = "Firebound Skull", + [58161] = "Grim Claws", + [58162] = "Horn of Razorscale", + [58163] = "Headsplitter Axe", + [58164] = "Pauldrons of War", + [58165] = "Shadowforge Loop", + [58166] = "Grips of the Overseer", + [58167] = "Kalke\'s Slicked Mitts", + [58168] = "Slickwick Wicker Box", + [58169] = "Remodeled Venture Co. Shiv", + [58170] = "Scrap Metal Pauldrons", + [58171] = "Chief Bruiser Choker", + [58172] = "Thornspine", + [58173] = "Thorngorged Fleshgloves", + [58174] = "Totem of the Rotten Roots", + [58175] = "Blood-etched Fetish", + [58176] = "Stormreaver Hood", + [58177] = "Stormreaver Robe", + [58178] = "Stormreaver Boots", + [58179] = "Idol of Propagation", + [58180] = "Core of Mycellakos", + [58181] = "Fungal Threads", + [58182] = "Rusted Anchor", + [58183] = "Rod of Subjugation", + [58184] = "Obedient Shackles", + [58185] = "Leechmist Vine", + [58186] = "Crown of Oppression", + [58187] = "Primordial Pauldrons", + [58188] = "Jaw of the Ancient", + [58189] = "Pants of Forgotten Ages", + [58190] = "Razorskin Cape", + [58191] = "Whip of Shared Secrets", + [58192] = "Vest of Dark Desires", + [58193] = "Demon Hair Bow", + [58194] = "Nethershard Sickle", + [58195] = "Tiny Bracelet", + [58196] = "Bloodied Almanac", + [58197] = "Northwind Guard Breaches", + [58198] = "Dissolved Hookblade", + [58199] = "Spine of Dentarg", + [58200] = "Eyes of the Beholder", + [58201] = "Mantle of the Disciple", + [58202] = "Twisted Demon Crystal", + [58203] = "Chainmail of Writhing Miasma", + [58204] = "Treads of Forgotten Empathy", + [58205] = "Primal Flameslinger", + [58206] = "Idol of the Forgotten Wilds", + [58207] = "Fist of the Flamewaker", + [58208] = "Shroud of Flowing Magma", + [58209] = "Sizzling Pyrestone Aureole", + [58210] = "Grasps of Sundering Power", + [58211] = "Molten Emberstone", + [58212] = "Treads of Scalding Rage", + [58213] = "Smoldaris’ Fractured Eye", + [58214] = "Modrag\'zan, Heart of the Mountain", + [58215] = "Ash-Forged Greaves", + [58216] = "Hansel\'s Gavel", + [58217] = "Lookout\'s Illuminator", + [58218] = "Sootsoaked Sash", + [58219] = "Magmascale Shackles", + [58220] = "Golem Stompers", + [58221] = "Flameseeker Necklace", + [58222] = "Ring of the Brotherhood", + [58223] = "Molten Tempered Gloves", + [58224] = "Cloak of Flowing Fire", + [58225] = "Blade of Purity", + [58226] = "Cowl of Resolve", + [58227] = "Band of Vitality", + [58228] = "Leggings of the Redeemer", + [58229] = "Hierophant Gloves", + [58230] = "Plaguewalker Boots", + [58231] = "Penchant of Humility", + [58232] = "Demonbane", + [58233] = "Bulwark of Holy Resolve", + [58234] = "Pendant of Ember Blood", + [58235] = "Pendant of Ember Blessing", + [58236] = "Pendant of Ember Hatred", + [58237] = "Emberwoven Binding Garments", + [58238] = "Runed Wardstone", + [58239] = "Overheated Skyrazors", + [58240] = "Libram of Final Judgement", + [58241] = "Totem of Eruption", + [58242] = "Sulfuron Aegis", + [58243] = "Leggings of the Deep Delve", + [58244] = "Sigil of Ancient Accord", + [58245] = "Monster - Dummy One-Handed Mace", + [58246] = "Tablet of Molten Blast VI", + [58247] = "Champion\'s Insignia", + [58248] = "Sparked Sash", + [58249] = "Defunct Hole Puncher", + [58250] = "\'Borrowed\' Kul Tiran Signet", + [58251] = "Wristbands of Excellency", + [58252] = "Coalescing Sabatons", + [58253] = "Lector\'s Baton", + [58254] = "Miniature Astrolabium", + [58255] = "Crystal Pauldrons", + [58256] = "Band of Eldretharr", + [58257] = "Noble\'s Letter Opener", + [58258] = "Royal Guard Chain Cloak", + [58259] = "Advisor\'s Trousers of the Eldreth", + [58260] = "Fang of Alichos", + [58261] = "Drinking Halfhorn", + [58262] = "Enchanted Glass Kopis", + [58263] = "Wolfbrother", + [58264] = "Memory of Fenris", + [58265] = "Ashkin", + [58266] = "Vial of Darkspear Mojo", + [58267] = "Sunkissed Shoulderpads", + [58268] = "Left", + [58269] = "Right", + [58270] = "Totem of An\'she", + [58271] = "Repurposed Si:7 Dagger", + [58272] = "Kor\'kron Crown", + [58273] = "Voodoo Jerkin", + [58274] = "Totemic Headdress", + [58275] = "Handbook of Noxious Assault IV", + [58276] = "Hull of Forlorn Souls", + [58277] = "Lady Winter\'s Touch", + [58278] = "Ring of Judgement", + [58279] = "Antiquated Slasher", + [58280] = "Chainmail of Many Pockets", + [58281] = "Trusty Goblin Shiv", + [58282] = "Mariner\'s Cutlass", + [58283] = "Encrusted Ring", + [58284] = "Waterlogged Blunderbuss", + [58285] = "Golden Effigy", + [58286] = "Stormreaver Fang", + [58287] = "Bracers of the Binding Rune", + [58288] = "Stormshade Spaulders", + [58289] = "Thunder-Bound Signet", + [58290] = "Watchtower Signet", + [58291] = "Orcbone Loop", + [58292] = "Stormreaver Warhatchet", + [58293] = "Wardwalker\'s Treads", + [58294] = "Sporeblight Talons", + [58295] = "Fel-Touched Crown", + [58296] = "Boots of the Slime Path", + [58297] = "Mindburrow Girdle", + [58298] = "Eye of the Forgotten Depths", + [58299] = "Invoker\'s Hollow Mantle", + [58300] = "Whispershard Ring", + [58301] = "Shadowbind Sigil", + [58302] = "Deflecting Poniards", + [58304] = "Voltage-Neutralizing Nature Reflector", + [58305] = "Giga-Charged Arcane Reflector", + [58400] = "Schematic: Voltage-Neutralizing Nature Reflector", + [58401] = "Schematic: Giga-Charged Arcane Reflector", + [59290] = "Golden Lenses", + [59291] = "Dusksilver Lenses", + [59292] = "Nocturnal Lenses", + [59990] = "Shabby Letter", + [59993] = "Weak Voodoo Ring", + [59994] = "Brawler\'s Ring", + [59995] = "Makasgar\'s Head", + [59996] = "Zalazane\'s Mojo", + [59997] = "Dwarven Writings", + [60000] = "Satchel of Mixed Herbs", + [60001] = "Cleaning Cloth", + [60002] = "Torn Outline: Cleaning Cloth", + [60003] = "Remnants of an Old God", + [60004] = "Loop of Triage", + [60005] = "Signet of the Battlecaster", + [60006] = "Ring of Blood", + [60007] = "Towerforge Crown", + [60008] = "Towerforge Breastplate", + [60009] = "Towerforge Pauldrons", + [60010] = "Towerforge Demolisher", + [60098] = "Hypertech Battery Pack", + [60099] = "Battery-Powered Crowd Pummeler", + [60100] = "Family Locket", + [60101] = "Sealed Scroll", + [60102] = "Plate of Uldum", + [60103] = "Second Plate of Uldum", + [60104] = "Wolf Totem", + [60105] = "Inscribed Boar Pelt", + [60108] = "Gortog\'s Beads", + [60109] = "Greater Venom Sacs", + [60110] = "Ghostpaw Pelt", + [60111] = "Ghoststalker\'s Paw", + [60112] = "Evermoon Staff", + [60113] = "Bromley\'s Dispelling Scroll", + [60114] = "Crate of Ley-Shards", + [60115] = "Archmage Ansirem\'s Letter", + [60116] = "Dalaran Wizard\'s Hat", + [60117] = "Cuirass of the Kirin-Eye", + [60118] = "Kirin Tor Watch Grips", + [60119] = "Arathi Raptor Hide", + [60120] = "Wildtusk Charm", + [60121] = "The Chief\'s Necklace", + [60122] = "Head of Speaker Gan\'to", + [60123] = "Skull of Kintoza", + [60124] = "Axe of the Wildtusk", + [60125] = "Inner Binding Bracer", + [60126] = "The Signet of Stone", + [60127] = "Sanv Charm", + [60128] = "Horn of Garek\'sa", + [60129] = "Draenic Hunter Ring", + [60130] = "Noboru\'s Cudgel", + [60131] = "Scepter of Aka\'sha", + [60132] = "Talisman of Kar\'noom", + [60133] = "Sawtooth Leather", + [60134] = "Tangled Essence", + [60135] = "Marsh Murloc Eye", + [60136] = "Rethress Spoils", + [60137] = "Myrmidon Signet", + [60138] = "Rethress Myrmidon Trident", + [60139] = "Head of Mmrmglul", + [60140] = "Rethress Tide Scepter", + [60141] = "Mistwing Horn", + [60142] = "Gigno\'s Shipment", + [60143] = "Letter for Gigno", + [60144] = "Analyzation Chip", + [60145] = "Flight Logbook", + [60146] = "Gigno\'s Report", + [60147] = "Tinkermaster Oversparks Response", + [60148] = "Dra\'lox\'s Horn", + [60149] = "Mysterious Cow Scroll", + [60150] = "Scroll of Cow Portal", + [60151] = "Tinkerspark Transponder", + [60152] = "Gigno\'s Spanner", + [60153] = "Gigno\'s Overalls", + [60154] = "Sealed Writ", + [60155] = "Darnassian Endorsement", + [60156] = "Missive to Vestia Moonspear", + [60157] = "Heart of Naszharr", + [60158] = "Azure Scale", + [60159] = "Sprugbolt", + [60160] = "Gyronautical Compass", + [60161] = "Flaxwhisker Sash", + [60162] = "Turbo-Charged Wobblefree Fizz-disk", + [60163] = "Fendo\'s Spanner", + [60164] = "Turbo-Charged Fizz-Ring", + [60165] = "Wobblefree Fizz-rifle", + [60166] = "Biggs Report", + [60167] = "Areyntall Strongbox", + [60168] = "Delivery of Swords", + [60169] = "Sorrowguard Shortsword", + [60170] = "Heavy Jaguar Flank", + [60171] = "Sorrowmoss Mushroom", + [60172] = "Sharn\'s Head", + [60173] = "Ring of Darlthos", + [60174] = "Letter from Duke", + [60175] = "Signet of Darlthos", + [60176] = "Groveweald Badge", + [60177] = "Paw of Elder \'One Eye\'", + [60178] = "Paw of Elder Blackmaw", + [60179] = "Grol\'s Band", + [60180] = "Sentinel Chain", + [60181] = "Groveweave Cloak", + [60182] = "Epaulets of Forest Wisdom", + [60183] = "Bushstalker Mask", + [60184] = "Rusted Compass", + [60185] = "Tidemaster Logbook", + [60186] = "Head of Jorgy", + [60187] = "Jorgy\'s Golden Ear-Ring", + [60188] = "Forgotten Tome", + [60189] = "Darlthos\' Jewelry Box", + [60190] = "Nargelas\'s letter", + [60191] = "Melenas\' Belongings", + [60192] = "Automaton Arm", + [60193] = "Automaton Leg", + [60194] = "Automaton Head", + [60195] = "Intact Power Core", + [60196] = "Chunk of Meat", + [60197] = "Storn\'s Head", + [60198] = "Acolyte\'s Staff", + [60199] = "Duskmind Boots", + [60200] = "Infantry Shortblade", + [60201] = "Tattered Banner of Lordaeron", + [60202] = "Letter from Karl", + [60203] = "Letter from Samual", + [60204] = "Letter to Karl", + [60205] = "Letter to Samual", + [60206] = "Juicy Crawler Leg", + [60207] = "Pinch of Salt", + [60208] = "Southsea Sash", + [60209] = "Fleet Pauldrons", + [60210] = "Hydromancer Sash", + [60211] = "Rowdy Sailor Wraps", + [60212] = "Feran\'s Report", + [60213] = "Outrider Chain", + [60214] = "Strongwind Cloak", + [60215] = "Foreststrider Spaulders", + [60216] = "Hat of Forest Medicine", + [60217] = "Southsea Reserve Recipe", + [60218] = "Logbook of the Rotten", + [60219] = "Deeptide Bracelet", + [60220] = "Tidehunter Greaves", + [60221] = "Tidehunter Girdle", + [60222] = "Aqua Stone", + [60223] = "Aquaweave Leggings", + [60224] = "Waveguard Gauntlets", + [60225] = "Great Virtue", + [60226] = "Wallowfin Claw", + [60227] = "Tyrant\'s Crown", + [60228] = "Mantle of the Ogre Slayer", + [60229] = "Tyrant Cuffs", + [60230] = "Hazzuri Dark Vessel", + [60231] = "Pristine Thunderhead Horn", + [60232] = "Pure Volcanic Ember", + [60233] = "Hazzuri Primalist Headdress", + [60234] = "Hazzuri Primalist Defender", + [60235] = "Bengal Fang", + [60236] = "Hazu Leaf", + [60237] = "Shawl of the Hazu Leaf", + [60238] = "Lovely Shell Necklace", + [60239] = "Murloc Shell Necklace", + [60240] = "Shimmering Brass Key", + [60241] = "Pure Aqua Orb", + [60242] = "Enchanted Brass Key", + [60243] = "Pethax\'s Horn", + [60244] = "Attuned Brass Key", + [60245] = "Blackwater Weapon Crate", + [60246] = "Oversized Lugnut Ring", + [60247] = "\'Rightful\' Jade", + [60248] = "Junglepaw Fang", + [60249] = "Creeper Root", + [60250] = "Jungle Venom Gland", + [60251] = "Gobcrank Flazwanger", + [60252] = "Strong Poison Dust", + [60253] = "Morgan\'s Severed Head", + [60254] = "Jolly Roger Gift", + [60255] = "McGillicuddy\'s Head", + [60256] = "Magical Compass", + [60257] = "Torch", + [60258] = "Crown of Corruption", + [60259] = "Uncracked Turtle Shell", + [60260] = "Ghostly Charm", + [60261] = "Furbolg Clue #1", + [60262] = "Furbolg Clue #2", + [60263] = "Furbolg Clue #3", + [60264] = "Faldan\'s Message", + [60265] = "Tainted Mojo", + [60266] = "Skull of Ujuwa", + [60267] = "Skull of Imaz\'ul", + [60268] = "Razzari Tribal Slacks", + [60269] = "Razzari Battle Gauntlets", + [60270] = "Barrel of Steamwheedle Wine", + [60271] = "Jug of Orgrimmar Brown", + [60272] = "Smuggler\'s Sash", + [60273] = "Heart of Tanglemoss", + [60274] = "Maul\'ogg Thighguards", + [60275] = "Blatarg\'s Mantle", + [60276] = "Withered Roots", + [60277] = "Deepfrond Leggings", + [60278] = "Deepfrond Gloves", + [60279] = "Adaena\'s Loop", + [60280] = "Deathstrike Venom", + [60281] = "Glittering Green Scale", + [60282] = "Paw of Sorrowclaw", + [60283] = "Swamphunter\'s Eye", + [60284] = "Swamplink Harness", + [60285] = "Swampguard Girdle", + [60286] = "Swampseeker\'s Kilt", + [60287] = "Rune-Etched Grips", + [60288] = "Rune-Etched Greaves", + [60289] = "Rune-Etched Legplates", + [60290] = "Rune-Etched Breastplate", + [60291] = "Rune-Etched Crown", + [60292] = "Rune-Etched Mantle", + [60293] = "Untempered Runeblade", + [60294] = "Bloodstone Warblade", + [60295] = "Jadefire Felhorn", + [60296] = "Necklace of Insomnius", + [60297] = "Hazzuri Charm", + [60298] = "The Glass Eye", + [60299] = "Star Emerald", + [60300] = "Maul\'ogg Beads of Rage", + [60301] = "Batskin Letter", + [60302] = "Lapidis Tower Key", + [60303] = "Refined Gem Shipment", + [60304] = "Mysterious Shipment", + [60305] = "Goods for Oilfuse", + [60306] = "Large Looped Earring", + [60307] = "The \'Slip\' Dagger", + [60308] = "Oilfused Gloves", + [60309] = "\'Jadewood\' Longbow", + [60310] = "Pristine Twilight Fang", + [60311] = "Shadowforge Shackle", + [60312] = "Greenblade Book", + [60313] = "Saltspittle Fin", + [60314] = "Scroll of Blessing", + [60315] = "Orb of Kaladus", + [60316] = "Truthkeeper Mantle", + [60317] = "Lightgraced Mallet", + [60318] = "Sorrowguard Clutch", + [60319] = "Secrets of Darkforging", + [60320] = "Fire Beckoning and Command", + [60321] = "Deciphered Script", + [60322] = "Rage Talon Charm", + [60323] = "Gordok Beads", + [60324] = "Doomforge Rod", + [60325] = "Pristine Lurker Shell", + [60326] = "Eldara Relay-Orb", + [60327] = "Eldarath Harmonization Gem", + [60328] = "Aged Deep-Rod", + [60329] = "Taming Rod", + [60330] = "Taming Rod", + [60331] = "Taming Rod", + [60332] = "Pure Ley Essence", + [60333] = "Azshara Keeper\'s Staff", + [60334] = "Ring of Eldara", + [60335] = "Blackrock Signet", + [60336] = "The Maul Orb", + [60337] = "Boltrus\'s Head", + [60338] = "Lordaeron Rusty Crossbow", + [60339] = "High Elven Rotten Bow", + [60340] = "Saltsnap Tail", + [60341] = "Basilisk Eye", + [60342] = "Crawler Pincer", + [60343] = "Gorilla Ligment", + [60344] = "Atal\'ai Rod", + [60345] = "The Elixir of Insom\'ni", + [60346] = "The Ogre Mantle", + [60347] = "Staff of the Ogre Seer", + [60348] = "Favor of Cruk\'Zogg", + [60349] = "Uncommon Journal", + [60350] = "Bloody Gladiator\'s Cord", + [60351] = "Bloody Gladiator\'s Handguards", + [60352] = "Bloody Gladiator\'s Leggings", + [60353] = "Bloody Gladiator\'s Trudgeons", + [60354] = "Bloody Gladiator\'s Wristguards", + [60355] = "Bloody Gladiator\'s Armor", + [60356] = "Bloody Gladiator\'s Pauldrons", + [60357] = "Bloody Gladiator\'s Helmet", + [60358] = "Bloody Gladiator\'s Girdle", + [60359] = "Bloody Gladiator\'s Gauntlets", + [60360] = "Bloody Gladiator\'s Legguards", + [60361] = "Bloody Gladiator\'s Greaves", + [60362] = "Bloody Gladiator\'s Bracers", + [60363] = "Bloody Gladiator\'s Breastplate", + [60364] = "Bloody Gladiator\'s Spaulders", + [60365] = "Bloody Gladiator\'s Helm", + [60366] = "Gore Ring of the Gladiator", + [60367] = "Auspicious Ring of the Seer", + [60368] = "Loop of Field Medicine", + [60369] = "Farmhand\'s Cloak", + [60370] = "Ring of Expertise", + [60371] = "Digger\'s Gloves", + [60372] = "Staff of Eldara", + [60373] = "Special Water", + [60374] = "Volgrin\'s Parcel", + [60375] = "Ragged Armband", + [60376] = "Paw of Chief Rnarl", + [60377] = "Paw of Belgar", + [60378] = "Salorn\'s Ring", + [60379] = "Whispering Cuffs", + [60380] = "Sash of Upperson", + [60381] = "Arcane Goods", + [60382] = "Marlow\'s Ore Shipment", + [60383] = "Fleetmaster\'s Cane", + [60384] = "Fleet Scimitar", + [60385] = "Westwind\'s Bicorne", + [60386] = "Sash of the Northrend Expedition", + [60387] = "Sivaxis Tundra Shard", + [60388] = "Mariner\'s Cuffs", + [60389] = "The Frigid Star Ring", + [60390] = "Jacket of the Scarlet Admiral", + [60391] = "Pierce\'s Instructions", + [60392] = "Sword of Laneron", + [60393] = "Shield of Mathela", + [60394] = "Crown of Unstable Nature", + [60395] = "Bloodfist Vambraces", + [60396] = "Legashi Horns", + [60397] = "Broken Blademaster\'s Sword", + [60398] = "Broken Blademaster\'s Edge", + [60399] = "Fel Conduit", + [60400] = "Blademaster\'s Binding", + [60401] = "Stag Flank", + [60402] = "Thunderhead Claw", + [60403] = "Mosshoof Antler", + [60404] = "Highborne Essence", + [60405] = "Mantle of Dag\'grak", + [60406] = "Spiritual Mitts", + [60407] = "Legplates of the Raider", + [60408] = "Crown of Lost Memories", + [60409] = "Banshee\'s Veil", + [60410] = "Willbreaker", + [60411] = "Boots of Crying Rivers", + [60412] = "Blackteeth Necklace", + [60413] = "The Cruel Blade", + [60414] = "Blademaster\'s Blindfold", + [60415] = "Ring of Twin Regeneration", + [60416] = "Skull of Grarr", + [60417] = "Skull of Tham", + [60418] = "Sealbreaker Staff", + [60419] = "Necrolyte\'s Visage", + [60420] = "Amulet of Warding", + [60421] = "Damien\'s Sorrow", + [60422] = "The Ripper", + [60423] = "Bracers of Lost Souls", + [60424] = "Grellskin Gloves", + [60425] = "Shadowguard Robe", + [60426] = "Guard-Captain\'s Chestplate", + [60427] = "Skullrattler", + [60428] = "Felguard\'s Visage", + [60429] = "Arcanite Shackles", + [60430] = "Runewarder\'s Boots", + [60431] = "Almanac of Savagery", + [60432] = "Gauntlets of the Elite Guard", + [60433] = "Pauldrons of the Elite Guard", + [60434] = "Greaves of the Elite Guard", + [60435] = "Sabatons of the Elite Guard", + [60436] = "Sightless Leather Hood", + [60437] = "Righteous Crusader\'s Helmet", + [60438] = "Vambraces of Kin\'Tozo", + [60439] = "Chieftain\'s Mantle", + [60440] = "Bloodscalp Longbow", + [60441] = "The Mojo Ring", + [60442] = "Hak\'thalz of Legacy", + [60443] = "Perfectly Wrapped Gift", + [60444] = "Sack of Flour", + [60445] = "Torta\'s Egg", + [60446] = "Groveweald Mark", + [60447] = "Withered Bone", + [60448] = "Rusty Amulet", + [60449] = "Faded Ghostly Essence", + [60450] = "Head of Lapidis", + [60451] = "Kul Tiras Marine Helmet", + [60452] = "Hydromancer\'s Peak", + [60453] = "Sailor\'s Headband", + [60454] = "Pendant of Ardan", + [60455] = "Ghostly Substance", + [60456] = "Kor\'gan\'s Crate", + [60457] = "Mark of Karazhan", + [60458] = "Old Crypt Key", + [60459] = "Charged Arcane Ring", + [60460] = "Tusk of Gardon", + [60461] = "Blackfire Orb", + [60462] = "Ariden\'s Crate", + [60463] = "Arcane Charged Pendant", + [60464] = "Orb of Kaladoon", + [60465] = "Arcane Strengthened Band", + [60466] = "Captain Silas\' Letter", + [60467] = "Marcus Jonathan\'s Letter", + [60468] = "Graypaw Flank", + [60469] = "Ice Crawler Claw", + [60470] = "Ice Pearl of Kaneq\'nuun", + [60471] = "Whiteclaw Pelt", + [60472] = "Kalanar\'s Mallet", + [60473] = "Venture Co. Equipment", + [60474] = "Naga Trident", + [60475] = "Bronze Naga Trident", + [60476] = "Pristine Gorilla Pelt", + [60477] = "Bloodsail Supply Crate", + [60478] = "Potent Scorpid Venom", + [60479] = "Willy\'s Letter", + [60480] = "Sea Brigand\'s Grips", + [60481] = "Corsair\'s Leggings", + [60482] = "General Good Crate", + [60483] = "Highborne Necklace", + [60484] = "Banana", + [60485] = "Sealed Diablo II Lord of Destruction Collectors Edition", + [60486] = "Fishbringer", + [60487] = "Cloak of the Moo Lord", + [60488] = "Drape of the Herd", + [60489] = "Cap of the Cow Savant", + [60490] = "Cowskin Chapeau", + [60491] = "The Moo Stone", + [60492] = "Graypaw Leggings", + [60493] = "Graypaw Boots", + [60494] = "Grash\'s Staff", + [60495] = "Powered Iron Staff", + [60496] = "Head of Chronar", + [60497] = "Pendant of Tyvadrius", + [60498] = "Halberd of the Bronze Defender", + [60499] = "Ring of Tyvadrius", + [60500] = "Cloak of Atonement", + [60501] = "Whip of Encouragement", + [60502] = "Unstable Belt", + [60503] = "Leggings of Alacrity", + [60504] = "Dreadskin Gloves", + [60505] = "Ring of the Elder Warden", + [60506] = "Vigilance", + [60507] = "Spiritleaf", + [60508] = "Skullsplitter Mojo", + [60509] = "Bom\'bay\'s Serum", + [60510] = "Arcanist Sovatir\'s Torn Notes", + [60511] = "Fazgel\'s Shrink Ray", + [60512] = "Highborne Golden Statue", + [60513] = "Prairie Stalker Pelt", + [60514] = "Bundle of Enchanted Pelts", + [60515] = "Sprig of Auribloom", + [60516] = "Fine Crab Carcass", + [60517] = "Tarnished Necklace", + [60518] = "Broken Core Pendant", + [60519] = "Vestia\'s Missive", + [60520] = "Razormane Orders", + [60521] = "Warlord Kolkanis\' Head", + [60522] = "Hexxer Staff", + [60523] = "Sen\'jin Buckler", + [60524] = "Horseskin Boots", + [60525] = "Creeper Fang Necklace", + [60526] = "Grayson\'s Pendant", + [60527] = "Coldheart Icicle", + [60528] = "Cloak of Arctic Winds", + [60529] = "Frostlink Shoulders", + [60530] = "Shattering Band", + [60531] = "Chillhide Leggings", + [60532] = "Felwood Satyr Horn", + [60533] = "Head of Pustax", + [60534] = "Gemstone of Salthax", + [60535] = "Heart of Hazzas", + [60536] = "Darkwind Glaive", + [60537] = "Inner Heat Conductor", + [60538] = "Damaged Components", + [60539] = "Decoy Dragonling Remote", + [60540] = "The Creator\'s Goggles", + [60541] = "Electroconductive Mitts", + [60542] = "Figgle\'s Coveralls", + [60543] = "Wrench of Creation", + [60544] = "Wrench of Creation", + [60545] = "Techrifle X-TREME 5200", + [60546] = "Doomcaller Staff", + [60547] = "Band of Calamity", + [60548] = "Cuffs of Dawnfall", + [60549] = "Shawl of End Times", + [60550] = "Shadowruned Girdle", + [60551] = "Pendant of the Faceless", + [60552] = "Dig Master\'s Pick", + [60553] = "The Soot Boots", + [60554] = "Quarry Miner\'s Cap", + [60555] = "Cloudweaver Mantle", + [60556] = "Cloudweaver Vest", + [60557] = "Cloudweaver Kilt", + [60558] = "Cloudweaver Gloves", + [60559] = "Hatereaver Cog", + [60560] = "Steamrigged Servohammer", + [60561] = "Flameforged Lugnut", + [60562] = "Ragereaver\'s Helm", + [60563] = "Blackstone Stompers", + [60564] = "Empowered Power Core", + [60565] = "Hateforged Cleaver", + [60566] = "Visor of Command", + [60567] = "Blackhammer Pauldrons", + [60568] = "Incendosaur Skin Boots", + [60569] = "Taskmaster\'s Tag", + [60570] = "Dark Iron Hooked Net", + [60571] = "Scepter of the Molten Flame", + [60572] = "Incendosaur Skin Pauldrons", + [60573] = "Hateforge Helmet", + [60574] = "Hateforge Cuirass", + [60575] = "Hateforge Leggings", + [60576] = "Hateforge Belt", + [60577] = "Hateforge Grips", + [60578] = "Hateforge Boots", + [60579] = "Bronze Dragonscale Breastplate", + [60580] = "Bronze Dragonscale Leggings", + [60581] = "Bronze Dragonscale Gloves", + [60582] = "Incendosaur Skin Gloves", + [60583] = "Bloodfen Claw", + [60584] = "Tharg\'s Gift", + [60585] = "Crocolisk Tear Grog", + [60586] = "\"Big Sack of Big Lizard Meat\"", + [60587] = "Tharg\'s Rock of Friendship", + [60588] = "Withervine Mire Beast Core", + [60589] = "Mannoroc Demonic Sigil", + [60590] = "Isle Watcher\'s Sash", + [60591] = "Hallister\'s Cuffs", + [60592] = "Extra Juicy Darkfang Leg", + [60593] = "Jarl\'s Juicy Jumbly", + [60594] = "Mirefin Claw", + [60595] = "Lighthouse Oil Barrel", + [60596] = "Lighthouse Keeper Boots", + [60597] = "\'The Good Snuff\'", + [60598] = "Jarl\'s Package", + [60599] = "Bryan\'s Food Delivery", + [60600] = "Head of Marglum Blood-eye", + [60601] = "The Murloc Clubber", + [60602] = "Sentry Point Report", + [60603] = "North Point Report", + [60604] = "Wallace\'s Letter", + [60605] = "Bryan\'s Fireheated Shield", + [60606] = "Dreadmaul Head", + [60607] = "Blasted Lands Report", + [60608] = "Leggings of Stonard", + [60609] = "Vest of the Messenger", + [60610] = "Ogre-Head Pauldrons", + [60611] = "Dark Iron Wardguard", + [60612] = "Mixologist Goggles", + [60613] = "The Backup", + [60614] = "Emissary\'s Cap", + [60615] = "Stoneforge Girdle", + [60616] = "Shadowcaller Axe", + [60617] = "Hatefury Mantle", + [60618] = "The Obsidian Oppressor", + [60620] = "Mining Helmet", + [60621] = "Tome of Arcane Intricacies and Magical Phenomenon IX", + [60622] = "Ring of the Academy", + [60623] = "Runic Shackle", + [60624] = "Goldplated Royal Crossbow", + [60625] = "Golden Gauntlets of Stormwind", + [60626] = "Regal Goldthreaded Sash", + [60627] = "Garrison Supply Cache", + [60628] = "Dreadmaul Skull", + [60629] = "The Skull Smasher", + [60630] = "Shadowsworn Pendant", + [60631] = "Riftwatcher Gloves", + [60632] = "Riftseeker Gloves", + [60633] = "Claw of Gorlush", + [60634] = "Claw of Kroshmak", + [60635] = "Report from Burnside", + [60636] = "Helm of Nethergarde", + [60637] = "Pristine Helboar Brain", + [60638] = "Holson\'s Amulet", + [60639] = "Holson\'s Amulet", + [60640] = "Engineer Wigglestip\'s Report", + [60641] = "Sealed Nethergarde Report", + [60642] = "Magically Sealed Dalaran Report", + [60643] = "Felguard Cuff", + [60644] = "Felhound Claw", + [60645] = "Dreadlord Heart", + [60646] = "Kirin Tor Shawl of Potency", + [60647] = "Kirin Tor Shawl of Authority", + [60648] = "Kirin Tor Shawl of Persecution", + [60649] = "Kirin Tor Shawl of Oppresion", + [60650] = "Highmane Shawl", + [60651] = "Silver Hawk Feather", + [60652] = "Spirit Beads", + [60653] = "Drum of Passing", + [60654] = "Spiritual Feather", + [60655] = "Packed Goods for Brian", + [60656] = "Livingstone Pitchfork", + [60657] = "Troll Hunter\'s Axe", + [60658] = "Boulderfist Truncheon", + [60659] = "Strom Defender\'s Vest", + [60660] = "Farwell Ring", + [60661] = "Gadgetzan Times Issue #2", + [60662] = "Hateforge Brew Filled Flask", + [60663] = "Sternrock Stash", + [60664] = "Senate\'s Orders", + [60665] = "Deepblaze Signet", + [60666] = "Sternrock Trudgers", + [60667] = "Firepike\'s Lucky Trousers", + [60668] = "Badge of Shadowforge", + [60669] = "Golem Core", + [60670] = "Arcane Golem Core Information", + [60671] = "Arcane Golem Core", + [60672] = "Energized Golem Core", + [60673] = "Cuffs of Justice", + [60674] = "Head of Vilegrip", + [60675] = "Anvilrage Shroud", + [60676] = "Cracked Animation Rune", + [60677] = "Intact Animation Rune", + [60678] = "Westfall Hauberk", + [60679] = "Westfall Rancher Boots", + [60680] = "The Harvester Blueprint", + [60681] = "Old Engineering Tools", + [60682] = "Jangolode Mine Shipment", + [60683] = "Gold Coast Shipment", + [60684] = "Tinkering Belt", + [60685] = "Safety Wraps", + [60686] = "Harvest Golem Arm", + [60687] = "Encrypted Note", + [60688] = "Moonlight Silk", + [60689] = "Lordaeron Needles", + [60690] = "Eye of Farad", + [60691] = "Shoulderpads of Gazzirik", + [60692] = "Golemslayer Mitts", + [60693] = "The Hateforge Report", + [60694] = "Crown of Grobi", + [60695] = "Sigil of Heritage", + [60696] = "Rubyheart Mallet", + [60697] = "Dark Iron Vial", + [60698] = "Hateforge Chemistry Documents", + [60699] = "Varlag\'s Clutches", + [60700] = "Scrapforged Helmet", + [60701] = "Scrapforged Greataxe", + [60702] = "Broken Flask", + [60703] = "Torn Union Flyer", + [60704] = "Worn Gear", + [60705] = "Cracked Power Core", + [60706] = "Ash-Covered Scroll", + [60708] = "Battered Horn", + [60709] = "Ashen Tinderbox", + [60710] = "Battered Horn", + [60711] = "Thaurissan Badge", + [60712] = "Scalding Flamekin Heart", + [60713] = "Large Felguard Heart", + [60714] = "War Master Voone\'s Tusks", + [60715] = "Taskmaster Whip", + [60716] = "Blackrock Head", + [60717] = "Worg Rider Sash", + [60718] = "Sootwalker Sandals", + [60719] = "Axe of Fargosh", + [60720] = "Worg Trap", + [60721] = "Deathlash Venom Gland", + [60722] = "Venomtip Venom Gland", + [60723] = "Stronghold Documents", + [60724] = "Dalarani Conjurer\'s Hat", + [60725] = "Ring of Flowing Leylines", + [60726] = "Spellguard\'s Shield", + [60727] = "Pauldrons of Sealed Magics", + [60728] = "Boots of the Hermit Magi", + [60729] = "Skulker\'s Gloves", + [60730] = "Girdle of the Warden", + [60731] = "Captured Blackrock Worg", + [60732] = "Karfang Missive", + [60733] = "Warchief\'s Response", + [60734] = "Blade of the Warleader", + [60735] = "Obsidian Gem Choker", + [60736] = "Battlemaster Helm", + [60737] = "Garrison and Supply Documents", + [60738] = "The Deadtusk Blade", + [60739] = "Tarnished Lancelot Ring", + [60740] = "Robotic Broodling Guts", + [60741] = "Magical Grains", + [60742] = "Darkseer Acolyte Robe", + [60743] = "Demonblood Dirk", + [60744] = "Azureborn Ring", + [60745] = "Smashed Azureborn Ring", + [60746] = "Sentinel\'s Breastplate", + [60747] = "Sentinel\'s Boots", + [60748] = "Sentinel\'s Crown", + [60749] = "Sentinel\'s Leggings", + [60750] = "Sentinel\'s Gauntlets", + [60751] = "Sentinel\'s Pauldrons", + [60752] = "Sentinel\'s Glaive", + [60753] = "Meldralis\'s Pamphlet", + [60754] = "Thalestien\'s Notes", + [60755] = "Elven Repair Gloves", + [60756] = "Ramolus Gem", + [60757] = "Dawnshield Mace", + [60758] = "Ancient Troll Remains", + [60759] = "Southmoon Pendant", + [60760] = "Roc Meat", + [60761] = "Hyena Skin", + [60762] = "Sandwalker Shawl", + [60763] = "Ancient Loa Charm", + [60764] = "The Dune Blade", + [60765] = "Sandmoon Greaves", + [60766] = "Sandfury Garnet", + [60767] = "Letter from Maltimor", + [60768] = "Pristine Wolf Tooth", + [60769] = "Pristine Harpy Feather", + [60770] = "Wyvern Roost Hatchling", + [60771] = "Pyrehand Gloves", + [60772] = "Fur of Navakesh", + [60773] = "Blackrock Authority", + [60774] = "Girdle of Galron", + [60775] = "Manual: Intervene", + [60776] = "Pattern: Flamewrath Leggings", + [60777] = "Pattern: Earthguard Tunic", + [60778] = "Pattern: Windwalker Boots", + [60779] = "Pattern: Depthstalker Helm", + [60780] = "Pattern: Breastplate of the Earth", + [60781] = "Pattern: Boots of the Wind", + [60782] = "Shieldbreaker Arbalest", + [60783] = "Orb of Purified Light", + [60784] = "Breastplate of Beast Mastery", + [60785] = "Choker of Cauterization", + [60786] = "The Night Watchman", + [60787] = "Scythe of the Harvest", + [60788] = "Sandals of Inner Peace", + [60789] = "Finkle\'s Accelerator", + [60790] = "Memento of the Lost", + [60791] = "Skullcrushing Gauntlets", + [60792] = "Pauldrons of Elusiveness", + [60793] = "Signet of Expertise", + [60794] = "Battle Bishop\'s Robe", + [60795] = "Naturalist Wristbands", + [60796] = "Blade of Rotting", + [60797] = "Rotskin Leggings", + [60798] = "Loop of the Lost", + [60799] = "Gauntlets of the Lost Crusader", + [60800] = "Femur Club", + [60801] = "Tome of Dark Powers", + [60802] = "Shawl of the Forgotten", + [60803] = "Claw of Darkness", + [60804] = "Shade of Reminisce", + [60805] = "Clutch of the Damned", + [60806] = "Coldheart Icicle", + [60807] = "Grave Robber\'s Treads", + [60808] = "Bone Fracture", + [60809] = "Remains of the Lost", + [60810] = "Quillboar Tablet", + [60811] = "Strange Blue Shard", + [60812] = "Kul Tiran Badge", + [60813] = "Hidden Weapons", + [60814] = "Letter to Voss", + [60815] = "Arcane Resonator", + [60816] = "Swamp Ooze Ichor", + [60817] = "Medallion of Voss", + [60818] = "Garran\'s Pike", + [60819] = "Dustwallow Defender", + [60820] = "Ornate Dagger of Jalvan", + [60821] = "Theramore Arbalest", + [60822] = "Leech Stalker Venom", + [60823] = "Lesser Felguard Heart", + [60824] = "Felbound Pendant", + [60825] = "Hedania\'s Heart", + [60826] = "Discarded Engagement Ring", + [60827] = "Satin Blindfold", + [60828] = "Jeweled Letter Opener", + [60829] = "Saltstone Eye", + [60830] = "Mysterious Leaf", + [60831] = "Cottontail Sprig", + [60832] = "Turbo-Scan Filtronomitor", + [60833] = "Golden Glasshide Scale", + [60834] = "Sea Giant Eyeball", + [60835] = "Gelwig\'s Ring", + [60836] = "Harmonized Sand", + [60837] = "Dunewind Sash", + [60838] = "Abandoned Letter", + [60839] = "Greater Tarantula Venom", + [60840] = "Deed to Easton Fields", + [60841] = "Deed to Molsen Farm", + [60842] = "Westfall Church Key", + [60843] = "Drape of Westfall", + [60844] = "The People\'s Defender", + [60845] = "Blade of Sentinel Hill", + [60846] = "Letter to Brother Neals", + [60847] = "Darkbrow Scepter", + [60848] = "Redbrand Archive", + [60849] = "Witherbark Tablet", + [60850] = "Bundled Crop Harvest", + [60851] = "Almaudrak\'s Heart", + [60852] = "Smouldering Infernal Head", + [60853] = "Dyad of Twitching Elven Ears", + [60854] = "Blood of the First Khan", + [60855] = "Ritual Dust of Satiation", + [60856] = "Maraudine Bracer", + [60857] = "Airy Core", + [60858] = "Core of Fontenus", + [60859] = "Theradras\' Shed Tear", + [60860] = "Triskelion of Roving Elements", + [60861] = "Box of Spare Parts", + [60862] = "Electrical Coil", + [60863] = "Wet Socks", + [60864] = "Half-O-Staff", + [60865] = "Goblin Chain Hauberk", + [60867] = "Foreman\'s Instructions", + [60868] = "Discrete Orders", + [60869] = "RESPECT.THE.RULES", + [60870] = "Electric Scale", + [60871] = "Auto Shrunken B-33 Shredder", + [60872] = "Firecracker Trousers", + [60873] = "Powder Town Sash", + [60874] = "Higgle Wirefuse\'s Head", + [60875] = "Vermintooth\'s Candle", + [60876] = "Fusemaster Mitts", + [60877] = "Barrel of Blacksand Oil", + [60878] = "Decaying Roots", + [60879] = "Centaur Stompers", + [60880] = "Packrunner Harness", + [60881] = "Windwatcher Sash", + [60882] = "Magram Windstriker", + [60883] = "Gauntlets of the Khan", + [60884] = "Ceremonial Magram Dagger", + [60885] = "Dar\'kar of the Third Khan", + [60886] = "Jewel of Draconic Guile", + [60887] = "Inlaid Wristwraps", + [60888] = "Whelpling Tiara", + [60889] = "Speckled Sapphire Sash", + [60890] = "Golem Heart Starter", + [60891] = "Life-Forged Heart", + [60892] = "Dusty Relic", + [60893] = "Pristine Relic", + [60894] = "Dusty Coin", + [60895] = "Razor-Sharp Knife", + [60896] = "Shadowforge Skinner", + [60897] = "Charys\' Response", + [60898] = "Silvermane Pelt", + [60899] = "Grips of the Unified Storm", + [60900] = "Warleader Sash", + [60901] = "Centaur Skullcap", + [60902] = "Gelkis Earthbinder", + [60903] = "Ceremonial Centaur Ring", + [60904] = "Maraudine Oath Pauldrons", + [60905] = "Batu\'kar of the Second Khan", + [60907] = "Windbinder Gloves", + [60908] = "Mantle of Centaur Authority", + [60909] = "Dustguider Sash", + [60910] = "Centaur Battle Harness", + [60911] = "Bundle of Expedition Supply", + [60912] = "Warbringer\'s Commendation", + [60913] = "Vial of Sunscale Blood", + [60914] = "Head of Alverold", + [60915] = "Band of Durotar", + [60916] = "Signet of Durotar", + [60917] = "Ring of Durotar", + [60918] = "Alor\'el", + [60919] = "Mashan\'she Silversage", + [60920] = "Oaken Braid Bands", + [60921] = "Prancing Dryad Dress-Skirt", + [60923] = "Sagepaw\'s Paw", + [60924] = "Razormaw Talon", + [60925] = "Stormstout Surprise Stein", + [60926] = "Targos Hatewind\'s Head", + [60927] = "Breen\'s Girdle", + [60928] = "Bogplate Shackles", + [60929] = "Quagmire Shawl", + [60930] = "Battlebeard Axe", + [60931] = "Grumnir\'s Hauberk", + [60932] = "Ornate Windshear Gemstone", + [60933] = "Prospect Leggings", + [60934] = "Prospector Battle Boots", + [60935] = "Sputtervalve Conductor", + [60936] = "Pristine Deepmoss Brain", + [60937] = "Flickering Flame", + [60938] = "Drape of Flickering Flame", + [60939] = "Truthforge Handaxe", + [60940] = "Disturbed Elemental Cuff", + [60941] = "Stolen Crate", + [60942] = "Blacksand Badge", + [60943] = "Ancient Dust", + [60944] = "Mallet of Zeth", + [60945] = "The History of Corthan", + [60946] = "Crown of Corthan", + [60947] = "Blade of Marauder Kings", + [60948] = "Vira\'s Antidote", + [60949] = "Pristine Flame Sac", + [60950] = "Wattapo\'s Bulwark", + [60951] = "Krog\'s Pike", + [60952] = "Stonemaul Seer Club", + [60953] = "Brackenwall Longbow", + [60954] = "Ripe Tel\'Abim Banana", + [60955] = "Gargantuan Tel\'Abim Banana", + [60956] = "Highvale Paw", + [60957] = "Spitefin Claw", + [60958] = "Backup Seal-Valve", + [60959] = "Wazlon\'s Tools", + [60960] = "Wazlon\'s Lucky Ring", + [60961] = "Strange Tel\'Abim Banana", + [60962] = "Venomflayer Sac", + [60963] = "Gargantuan Banana", + [60964] = "Plans: Mantle of Centaur Authority", + [60965] = "Pattern: Windbinder Gloves", + [60966] = "Formula: Enchant Bracer - Spell Power", + [60967] = "Pattern: Dustguider Sash", + [60968] = "Pattern: Centaur Battle Harness", + [60969] = "Formula: Enchant Bracer - Greater Agility", + [60970] = "Fizzwack\'s Gloves of Enforcement", + [60972] = "Tel Co. Jungle Pants", + [60973] = "Tel Co. Vest", + [60974] = "Tel Co. Protective Helmet", + [60975] = "Tel Co. Huntsman Pauldrons", + [60976] = "Danonzo\'s Tel\'Abim Surprise", + [60977] = "Danonzo\'s Tel\'Abim Delight", + [60978] = "Danonzo\'s Tel\'Abim Medley", + [60979] = "Recipe: Danonzo\'s Tel\'Abim Surprise", + [60980] = "Recipe: Danonzo\'s Tel\'Abim Delight", + [60981] = "Recipe: Danonzo\'s Tel\'Abim Medley", + [60982] = "Programmer Socks", + [60983] = "Winter Veil Brew", + [60984] = "Icepaw Cookie", + [60985] = "Icepaw Talisman", + [60986] = "Carus\' Gift", + [60987] = "Winter Veil Keg", + [60988] = "Bomarn\'s Lucky Socks", + [60989] = "A Strange Parchment", + [60990] = "Senshi Bones", + [60991] = "Screwfuse 1000", + [60992] = "Bixxle\'s Item List", + [60993] = "\'Extremely Potent Snuff\'", + [60994] = "Blighted Essence", + [60995] = "Bixxle\'s Expensive Parts", + [60996] = "Bixxle\'s Necklace of Control", + [60997] = "Bixxle\'s Necklace of Mastery", + [60998] = "Plans: Dark Iron Desecrator", + [60999] = "Magma Condensor", + [61000] = "Time-Worn Rune", + [61001] = "Claw of the Infinite", + [61002] = "Robe of the Custodian", + [61003] = "Timeskipper\'s Helm of Alacrity", + [61004] = "Sandswept Ring of Arcanum", + [61005] = "Boots of Flowing Sands", + [61006] = "Blade of Infinite Mysteries", + [61007] = "Temporal Bronze Boots", + [61009] = "Time-Shifting Wheel", + [61010] = "Wing of the Time-Lord", + [61011] = "Flintlocke\'s Hand Cannon", + [61012] = "Shard of Eternity", + [61013] = "Gauntlets of Temporal Guidance", + [61014] = "Temporal Anomaly", + [61015] = "Hollowbone Choker", + [61016] = "Time-Lost Claymore", + [61017] = "Shoulderguards of the Defiler", + [61018] = "Cloak of Elemental Warding", + [61019] = "Wand of the Eclipse", + [61020] = "Lodestone", + [61021] = "Shadowshifter Armguards", + [61022] = "Dagger of the Currents", + [61023] = "Breastplate of the Wild Hunt", + [61024] = "Greaves of the Elusive", + [61025] = "Pyreflame Lantern", + [61027] = "Epaulets of the Forgotten Past", + [61028] = "Bulwark of the Crimson Guard", + [61029] = "Crocolisk Tooth Necklace", + [61030] = "The Murkfisher", + [61031] = "Riftweaver", + [61032] = "Band of Infinite Possibilities", + [61033] = "Nightwind Leggings", + [61034] = "Band of the Marsh Bog", + [61035] = "Legguards of the Last Stand", + [61036] = "Boots of the Riftwalker", + [61037] = "Breastplate of the Lost Champion", + [61038] = "Pauldrons of the Timeless", + [61039] = "Timeless Artificier\'s Optics", + [61040] = "Gloves of the Unknown", + [61041] = "Imbued Planar Belt", + [61042] = "Stormfist", + [61043] = "Eye of the Abyss", + [61044] = "Gavel of the Northwind", + [61045] = "Nexus Shoulderpads", + [61046] = "Shadowreaper", + [61047] = "Monolith Headguard", + [61048] = "Girdle of Distant Stars", + [61049] = "Chronobreaker", + [61050] = "Gauntlets of the Bogbeast", + [61051] = "Blackthorn Band", + [61052] = "Infinite Scale Bracers", + [61053] = "Timeloop Headguard", + [61054] = "Azurite Legguards", + [61055] = "Tome of Riftmancy", + [61056] = "Arcanoweave Boots", + [61057] = "Arcanic Gloves", + [61058] = "Leggings of the Nullifier", + [61059] = "Mossheart\'s Heart", + [61060] = "Thornweave Mask", + [61061] = "Regenerating Robe", + [61062] = "Corroded Plate Belt", + [61063] = "Rotmaw\'s Tooth", + [61064] = "Eldreth Band", + [61065] = "Hellfire Sabatons", + [61066] = "Intricate Arcanite Barrel", + [61067] = "Molten Fragment", + [61068] = "Dark Iron Desecrator", + [61069] = "Kabuto of the Senshi", + [61070] = "Kabuto of the Protector", + [61071] = "Ancient Troll Tablet", + [61072] = "Azotha Ritual Cache", + [61073] = "Bixxle\'s Report", + [61074] = "Enforcer\'s Maul", + [61075] = "Hatecrest Scale", + [61076] = "Sash of Goblin Luck", + [61077] = "Island Dungarees", + [61078] = "Frostwoven Chillwind Horn", + [61079] = "Chillwind Armor", + [61080] = "Ebu\'s Lucky Banana", + [61081] = "Gift of Ferocity", + [61082] = "Coldhowl\'s Necklace", + [61083] = "Blood Elf Badge", + [61084] = "Tainted Ooze Sludge", + [61085] = "Sack of Stolen Gifts", + [61086] = "Reveler\'s Hat", + [61087] = "Winter Veil Branch", + [61088] = "Greatfather Winter\'s Belt", + [61089] = "The Great Sack of Winter Veil", + [61090] = "Morogo\'s \'Thunderfoot\'", + [61091] = "Telraz\'s Jeweled Staff", + [61092] = "The Golden Tel Co. Coin", + [61093] = "Twisted Basilisk Heart", + [61094] = "Darkwind Star", + [61095] = "Boon of Niremius", + [61096] = "Heavy Earthen Core", + [61097] = "The Deeds of Sir Danuvis", + [61098] = "Smuggled Gunpowder", + [61099] = "Smuggled Procurements", + [61100] = "Deckmaster\'s Commendation", + [61101] = "Refined Aqua Core", + [61102] = "Dragonmaw Head", + [61103] = "Sealed Kul Tiran Letter", + [61104] = "Night Elf: Demon", + [61105] = "Mark of the Demon Hunter", + [61106] = "Mark of the Necromancy II", + [61107] = "Extravagant Red Firework", + [61108] = "Extravagant Green Firework", + [61109] = "Extravagant Yellow Firework", + [61110] = "Mark of Enchantress", + [61111] = "Mark of Sorcery", + [61112] = "Mark of the Grand Destiny", + [61150] = "Bleakheart Horn", + [61151] = "Xavian Horn", + [61152] = "Felmusk Horn", + [61153] = "Foul Effigy", + [61154] = "Savage Spear", + [61155] = "Primitive Bead Necklace", + [61156] = "Headband of a Hundred Feathers", + [61157] = "Chunk of Crawler Marrow", + [61158] = "Heaven Peach", + [61159] = "Bear Viscera", + [61160] = "Giant Strider Wing", + [61161] = "Sealed Forest Song Report", + [61162] = "Fandral\'s Letter", + [61163] = "Kaldorei Side-Blade", + [61164] = "Priestess of Elune\'s Staff", + [61165] = "Bow of the Night Huntress", + [61166] = "Captain\'s Moonglaive", + [61167] = "Sealed Forest Song Report", + [61168] = "Tyrande\'s Message", + [61173] = "Premium Chocolate", + [61174] = "Medivh\'s Merlot", + [61175] = "Medivh\'s Merlot Blue", + [61176] = "The First Greymane", + [61177] = "Recipe: Potion of Quickness", + [61178] = "Plans: Thorium Spurs", + [61179] = "Pattern: Enchanted Armor Kit", + [61180] = "Formula: Enchant Cloak - Greater Arcane Resistance", + [61181] = "Potion of Quickness", + [61182] = "Thorium Spurs", + [61183] = "Enchanted Armor Kit", + [61184] = "The Scythe of Elune", + [61185] = "Dawnstone Hammer", + [61186] = "Gloves of Unwinding Mystery", + [61187] = "Intricate Gyroscope Goggles", + [61188] = "Inscribed Runic Bracers", + [61189] = "Plans: Dawnstone Hammer", + [61190] = "Pattern: Gloves of Unwinding Mystery", + [61191] = "Schematic: Intricate Gyroscope Goggles", + [61192] = "Pattern: Inscribed Runic Bracers", + [61193] = "Verdant Eye Necklace", + [61194] = "The Heart of Dreams", + [61195] = "Ring of Nordrassil", + [61196] = "Bag of Vast Consciousness", + [61197] = "Fading Dream Fragment", + [61198] = "Small Dream Shard", + [61199] = "Bright Dream Shard", + [61200] = "Chronicles of the National Emblem", + [61201] = "The Tale of Warmongerer", + [61202] = "Aldrin, Protector of the Realm", + [61203] = "Libram of the Dreamguard", + [61204] = "Totem of the Stonebreaker", + [61205] = "Ring of Nature\'s Duality", + [61206] = "Robe of the Dreamways", + [61207] = "Jadestone Helmet", + [61208] = "Staff of the Dreamer", + [61209] = "Shard of Nightmare", + [61210] = "Veil of Nightmare", + [61211] = "Sandals of Lucidity", + [61212] = "Sanctum Bark Wraps", + [61213] = "Talonwind Gauntlets", + [61214] = "Mantle of the Wakener", + [61215] = "Head of Solnius", + [61216] = "Dreamsteel Bar", + [61217] = "Formula: Enchant Chest - Mighty Mana", + [61218] = "Recipe: Elixir of Greater Nature Power", + [61219] = "Formula: Enchant Boots - Superior Stamina", + [61220] = "Formula: Enchant Boots - Greater Spirit", + [61221] = "Formula: Enchant Bracer - Greater Deflection", + [61222] = "Recipe: Dreamshard Elixir", + [61223] = "Recipe: Lucidity Potion", + [61224] = "Dreamshard Elixir", + [61225] = "Lucidity Potion", + [61226] = "Book: Smelt Dreamsteel", + [61227] = "Book: Craft Dreamthread", + [61228] = "Book: Craft Dreamhide", + [61229] = "Dreamhide", + [61230] = "Dreamthread", + [61231] = "Key to the Upper Chambers", + [61232] = "Arcanized Gems", + [61233] = "Treatise on Magical Locks and Keys", + [61234] = "Upper Karazhan Tower Key", + [61235] = "The Silverpine Wars", + [61236] = "The Silverline Raven", + [61237] = "Mallet of the Awakening", + [61238] = "Scaleshield of Emerald Flight", + [61239] = "Ancient Jade Leggings", + [61240] = "Greymane Shield - Monster", + [61241] = "Gilneas Rebel Shield - Monster", + [61242] = "Monster - Sword2H, Blackwald Sword", + [61243] = "Vial of Potent Venoms", + [61244] = "Leggings of Shrouding Winds", + [61245] = "Bracers of Brambled Vines", + [61246] = "Sabatons of the Endless March", + [61247] = "Shadowbringer", + [61248] = "Beasthunter\'s Blunderbuss", + [61249] = "Pelt of the Great Howler", + [61250] = "Reedwoven Tunic", + [61251] = "Medivh\'s Foresight", + [61252] = "Red Hat of Destruction", + [61253] = "Aetherforged Gauntlets", + [61254] = "Reedmesh Belt", + [61255] = "Tuning Fork of Charged Lightning", + [61256] = "Leggings of the Misty Marsh", + [61257] = "Cloudplate Wristguards", + [61258] = "Greyshire Manuscripts", + [61259] = "Cuffs of Sanctitude", + [61260] = "Flamescorched Hood", + [61261] = "Battlescarred Cloak", + [61262] = "Royal Signet of Blackwald II", + [61263] = "Tooth of the Packlord", + [61264] = "Ansirem\'s Runeweaver", + [61265] = "Leggings of the Inferno", + [61266] = "Rune Infused Gauntlets", + [61267] = "Sparkgrasp Gloves", + [61268] = "Sigil of the Brood", + [61269] = "Clutchweave Robe", + [61270] = "Pendant of Shadra\'s Chosen", + [61271] = "Boots of Blazing Steps", + [61272] = "Deepstone Boots", + [61273] = "Earthbreaker Belt", + [61274] = "Pulverizer Gauntlets", + [61275] = "Breastplate of Earthen Might", + [61276] = "Hyperchromatic Deflector", + [61277] = "Fist of the Forgotten Order", + [61278] = "Vampiric Kris", + [61279] = "Slateplate Leggings", + [61280] = "Granitized Bracers", + [61281] = "Shadeweave Boots", + [61282] = "Deepshadow Bracers", + [61283] = "Darkgrasp Gloves", + [61284] = "Vest of Encroaching Darkness", + [61285] = "Duskwrapped Leggings", + [61286] = "Bloodfang Effigy", + [61287] = "Gusthewn Chestplate", + [61288] = "Nightwoven Belt", + [61289] = "Aurious Boots", + [61290] = "Zephyrian Girdle", + [61291] = "Darkflame Helm", + [61292] = "Totem of Crackling Thunder", + [61293] = "Idol of the Moonfang", + [61294] = "Dark Rider\'s Signet", + [61295] = "Dawnstone Bludgeon", + [61297] = "Marshtreader Slippers", + [61298] = "Overgrown Gloves", + [61299] = "Shawl of the Castellan", + [61300] = "Packmaster Gloves", + [61301] = "Shaderun Boots", + [61302] = "Wolfheart Necklace", + [61303] = "Orb of Aka\'thar", + [61304] = "Gilneas Shackles", + [61305] = "Darkwatch Pants", + [61306] = "Worgen Hunter Grips", + [61307] = "Worgen Hunter Musket", + [61308] = "Gavel of Gilnean Justice", + [61309] = "Mantle of Law", + [61310] = "Sash of Conviction", + [61311] = "Sutherland\'s Cuffs", + [61312] = "The Black Pendant", + [61313] = "Greymane Helmet", + [61314] = "Marshal\'s Blocker", + [61315] = "Band of Piercing Shadows", + [61316] = "Chainlinked Cloak", + [61317] = "Scriptures of Blood", + [61318] = "Fleshslasher", + [61319] = "Regal Robes of the Regent", + [61320] = "Ashen Leggings", + [61321] = "Wildfeather Bracers", + [61322] = "Resurging Necklace", + [61323] = "Swiftcaster\'s Chapeau", + [61324] = "Greymane Shoulders", + [61325] = "Regal Goldforged Breastplate", + [61326] = "Robe of Light\'s Ambassador", + [61327] = "Boots of Espionage", + [61328] = "Wolfblood", + [61329] = "Sack of Gruesome Eminence", + [61330] = "Dagger of Sinister Secrets", + [61331] = "Blackcowl Sash", + [61332] = "Ring of Electrical Binding", + [61333] = "Hookblade Cleaver", + [61334] = "Cloak of the Dark Veil", + [61335] = "Dragonbane Pauldrons", + [61336] = "Knife Juggler Gloves", + [61337] = "Libram of the Justicar", + [61338] = "Staff of Ushered Ruination", + [61339] = "Pauldrons of the Justicar", + [61340] = "Murloc Oil", + [61341] = "Mudrock Meat", + [61342] = "Darkfang Silk", + [61343] = "Fox Pendant", + [61344] = "Slitherblade Head", + [61345] = "Kimono of the Sea", + [61346] = "Katana of the Senshi", + [61347] = "Dawnstone Plans", + [61348] = "Inlaid Plate Boots", + [61349] = "Dwarven Battle Bludgeon", + [61350] = "Sack of Mithril Ore", + [61351] = "Sealed Report to Livia", + [61352] = "Genn Greymane\'s Head", + [61353] = "Blackthorn Gauntlets", + [61354] = "Banshee\'s Tear", + [61355] = "Dark Footpad Belt", + [61356] = "Dreamhide Mantle", + [61357] = "Dreamhide Bracers", + [61358] = "Dreamhide Leggings", + [61359] = "Dreamhide Belt", + [61360] = "Dreamthread Mantle", + [61361] = "Dreamthread Kilt", + [61362] = "Dreamthread Bracers", + [61363] = "Dreamthread Gloves", + [61364] = "Dreamsteel Mantle", + [61365] = "Dreamsteel Leggings", + [61366] = "Dreamsteel Bracers", + [61367] = "Dreamsteel Boots", + [61368] = "Greymane Tabard", + [61369] = "Ravenshire Tabard", + [61370] = "Bristlehide Buckler", + [61371] = "Pious Blade", + [61372] = "Bloody Pick", + [61373] = "Venom Infused Blade", + [61374] = "Grungy Firestick", + [61375] = "Crossguarded Blade", + [61376] = "Greymane Gauntlets", + [61377] = "Greymane Sabatons", + [61378] = "Greymane Legplates", + [61379] = "Greymane Vambraces", + [61380] = "Brol\'ok Ogre Head", + [61381] = "Staff of Shinban", + [61382] = "Crown of Maulfist", + [61383] = "Intricate Gnomish Blunderbuss", + [61384] = "Ionized Metal Grips", + [61385] = "Magnetic Band", + [61386] = "Gubblewire Shield", + [61388] = "Hydrocondensor Modulator", + [61389] = "Stormlight Boots", + [61390] = "Dawnstone Ore", + [61391] = "Servocharged Wrench", + [61392] = "Schematic: High Energy Regulator", + [61393] = "Low Energy Regulator", + [61394] = "Spare Parts", + [61395] = "The Mercy of Humility", + [61396] = "Robe of Humility", + [61397] = "Chemical Processing Membrane", + [61398] = "Gnomish Chemistry Belt", + [61399] = "Xtra-Protective Gloves", + [61400] = "Dark Iron Technology", + [61401] = "Pure Aqua Sample", + [61402] = "Snowvale Root", + [61403] = "Shipment of Gol\'Bolar Ore", + [61404] = "Corrosion Resistant Ring", + [61405] = "Rust Resistant Ring", + [61406] = "Mark of the Worgen", + [61407] = "The Raven\'s Sentence and the First Rebellion", + [61408] = "Volatile Aqua", + [61409] = "Hyjalroot", + [61410] = "Favor of Enthos", + [61411] = "Moonseeker Staff", + [61412] = "Greathorn Beak", + [61413] = "Vilemusk Horn", + [61414] = "Moontouched Amulet", + [61415] = "Bracing of Nature", + [61416] = "Vilewing Blood Vial", + [61417] = "Gilnean Blood Vial", + [61418] = "Worgen Blood Vial", + [61419] = "Sash of Innocent Blood", + [61420] = "Wreath of Worgen Blood", + [61421] = "\'On the Powers of Blood\'", + [61422] = "Pure Bloodvial Pendant", + [61423] = "Dreamtonic", + [61424] = "Plans: Dreamsteel Mantle", + [61425] = "Plans: Dreamsteel Leggings", + [61426] = "Plans: Dreamsteel Bracers", + [61427] = "Plans: Dreamsteel Boots", + [61428] = "Pattern: Dreamhide Mantle", + [61429] = "Pattern: Dreamhide Bracers", + [61430] = "Pattern: Dreamhide Leggings", + [61431] = "Pattern: Dreamhide Belt", + [61432] = "Pattern: Dreamthread Mantle", + [61433] = "Pattern: Dreamthread Kilt", + [61434] = "Pattern: Dreamthread Bracers", + [61435] = "Pattern: Dreamthread Gloves", + [61436] = "Sigil of Leeching", + [61437] = "Sigil of Quickness", + [61438] = "Sigil of Penetration", + [61439] = "Rod of Nargg", + [61440] = "Barkskin Elder Cuffs", + [61441] = "Ursa Battlehammer", + [61442] = "Barkskin Pendant", + [61443] = "Libram of the Faithful", + [61444] = "Smoldering Dream Essence", + [61445] = "Purified Emerald Essence", + [61446] = "Aliattan Anderson\'s Journal", + [61447] = "Mossgrove Family Broom", + [61448] = "Axe of Dormant Slumber", + [61449] = "Searhide Bracers", + [61450] = "The Mind\'s Key", + [61451] = "Sliver of Hope", + [61452] = "Skycleaver", + [61453] = "Anasterian\'s Legacy", + [61454] = "Rod of Resuscitation", + [61455] = "Idol of the Emerald Rot", + [61456] = "Timbermaw Battle Vest", + [61457] = "A Mysterious Missive", + [61458] = "52nd Package", + [61459] = "Eye of Wyrmthalak", + [61460] = "Necromantic Potion", + [61461] = "Arcane Focus", + [61462] = "Hammer of Hate", + [61463] = "Hammer of the Depths", + [61464] = "Dragonblood Heart", + [61465] = "Pendant of Mortality", + [61466] = "Signet of Silverlaine", + [61467] = "Blade of Caliban", + [61468] = "Medallion of Silverlaine", + [61469] = "Hollow Web Silk", + [61470] = "Bloodclaw Pelt", + [61471] = "Gilneas Brigade Leggings", + [61472] = "Brigade Rifle", + [61473] = "Foulhide Armband", + [61474] = "Stolen Oil Shipment", + [61475] = "The Light of Elaroth", + [61476] = "Lightkeeping Boots", + [61477] = "Spare Wagon Wheel", + [61478] = "Ring of Holy Sacrament", + [61479] = "Vagrant Supplies", + [61480] = "Nighthowl Shackle", + [61481] = "Vagrant Coif", + [61482] = "Duskpelt Meat", + [61483] = "Velden\'s Backup Cleaver", + [61484] = "Font of Arcana", + [61485] = "Potent Draconic Jewel", + [61486] = "Violet Sash", + [61487] = "Gauntlets of Insight", + [61488] = "Snarlclaw\'s Mane", + [61489] = "Ravenwood Shield", + [61490] = "Hollow-Thread Trousers", + [61491] = "Spitecrest Scale", + [61492] = "Fisherman\'s Shawl", + [61493] = "Dockmaster Cuffs", + [61494] = "Rust-Covered Key", + [61495] = "Vial of Blood", + [61496] = "The Greymane Crown", + [61497] = "Ravenwood Belt", + [61498] = "Signet of Gilneas", + [61499] = "Ravenshire Gloves", + [61500] = "Shadestaff", + [61501] = "Silent Sneakers", + [61502] = "Earthcaller Staff", + [61503] = "Rezengal\'s Robe", + [61504] = "Wildfire Girdle", + [61505] = "Leggings of Fiery Temper", + [61506] = "Shard of Wild Hexes", + [61507] = "Pendant of Wilderness", + [61508] = "Thorned Branch", + [61509] = "Stoneshell Shield", + [61510] = "Stonehewn Pauldrons", + [61511] = "Scale of the Makrura", + [61512] = "Feralkin Necklace", + [61513] = "Savage Helmet", + [61514] = "Camouflaged Vest", + [61515] = "Leafcovered Leggings", + [61516] = "Corrupt Chainmail", + [61517] = "Chimaera\'s Eye", + [61518] = "Apefist Pummelers", + [61519] = "Tel Co. Chestguard", + [61520] = "The Golden Banana", + [61521] = "Strongstep Boots", + [61522] = "Choker of the Emerald Lord", + [61523] = "Crystal Sword of the Blossom", + [61524] = "Naturecaller\'s Tunic", + [61525] = "Nature\'s Call", + [61526] = "Jadestone Protector", + [61527] = "Breath of Solnius", + [61528] = "Aquis\' Bindings", + [61529] = "Pirate\'s Scimitar", + [61530] = "Ring of the Deep Sea", + [61531] = "Glowing Black Pearl", + [61532] = "Grand Slammer", + [61533] = "Ring of the Forgotten Hero", + [61534] = "Fisher\'s Harpoon", + [61535] = "Outlaw\'s Pirate Hat", + [61536] = "Mystical Girdle", + [61537] = "Ripjaw\'s Tooth", + [61538] = "Moonsteel Zweihander", + [61539] = "Scaleshard Shoulders", + [61540] = "Emberscale Shield", + [61541] = "Letashaz\'s Right Claw", + [61542] = "Dwarven Pickaxe", + [61543] = "Miner\'s Vest", + [61544] = "Shawl of the Magician", + [61545] = "Shadeflayer\'s Sigil", + [61546] = "Leggings of the Fallen Knight", + [61547] = "Totem of Bad Mojo", + [61548] = "Witch Doctor\'s Mask", + [61549] = "Swiftfeather Quiver", + [61550] = "Sanctified Helm", + [61551] = "Mathrengyl\'s Lost Staff", + [61552] = "Corrupted Sword", + [61553] = "Satyrkin Leggings", + [61554] = "Crescent Band", + [61555] = "Ancient Grove Reed", + [61556] = "Nightmare Effigy", + [61557] = "Slumberer\'s Shard", + [61558] = "Binding Fragment", + [61559] = "Overloaded Arcane Prism", + [61560] = "Itharius\' Command", + [61561] = "Charge of Ysera", + [61562] = "Bandit\'s Throwing Axe", + [61563] = "Grimoire of Grells", + [61564] = "Chromie\'s Broken Pocket Watch", + [61565] = "Crochide Wrists", + [61566] = "Windchanneler", + [61567] = "Timewarper\'s Staff", + [61568] = "Overcharged Belt", + [61569] = "Time Frozen Bow", + [61570] = "Old Champion\'s Helmet", + [61571] = "Leeching Fang", + [61572] = "Gartside Family Wrench", + [61573] = "Scrapmetal Helm", + [61574] = "Polished Gear", + [61575] = "Forgotten Veil", + [61576] = "Lover\'s Ring", + [61577] = "Lieutenant\'s Sword", + [61578] = "Old Knight\'s Leggings", + [61579] = "Old Knight\'s Sabatons", + [61580] = "Wolf\'s Skull", + [61581] = "Wolffur Armor", + [61582] = "Sharp Teeth Necklace", + [61583] = "Light Ogre Belt", + [61584] = "Ogre Fighter\'s Bracers", + [61585] = "Brawling Trophy", + [61586] = "Explorer\'s Shoulders", + [61587] = "Old Hunter\'s Boots", + [61588] = "Arugal Family Sigil", + [61589] = "Widow\'s Kiss", + [61590] = "Helmet of the Elite Guard", + [61591] = "Leggings of the Elite Guard", + [61592] = "Arcanic Bracers", + [61593] = "Shadow Silk Cloak", + [61594] = "Magus Blade", + [61595] = "Sharpened Iron Bar", + [61596] = "Defender\'s Glaive", + [61597] = "Conspirator\'s Trickpockets", + [61598] = "Wraps of the Pauper", + [61599] = "Greater Vilewing Meat", + [61600] = "Deed to Ravenshire", + [61601] = "Ebonmere Axe", + [61602] = "Gilneas Brigade Helmet", + [61603] = "Robes of Ravenshire", + [61604] = "Greyshire Pauldrons", + [61605] = "Ravenwood Signet", + [61606] = "Crystalvein Ore", + [61607] = "Crystalvein Shipment", + [61608] = "Crystaltouched Breastplate", + [61609] = "Crystalforged Leggings", + [61610] = "Old Farmer\'s Pitchfork", + [61611] = "Emerald Pendant", + [61612] = "Holy Sword", + [61613] = "Burnt Explorer\'s Tunic", + [61614] = "Ruk\'thok Slippers", + [61615] = "Burning Torch", + [61616] = "Boldercrest Breastplate", + [61617] = "Iron-plated Defender", + [61618] = "Paw of Snarlclaw", + [61619] = "Worgen Cleaver", + [61620] = "Glaymore Family Breastplate", + [61621] = "Ceremonial Gilnean Pike", + [61622] = "Glaymore Shawl", + [61623] = "Deathstalker Band", + [61624] = "Bloodclaw Pelt", + [61625] = "Nighthowl Pelt", + [61626] = "Ebonmere Deed", + [61627] = "Ebonmere Reaver", + [61628] = "Clutch of Joshua", + [61629] = "Farmer\'s Musket", + [61630] = "Ebonmere Vambraces", + [61631] = "Greymane Signet", + [61632] = "Blackheart Necklace", + [61633] = "Bleaktalon", + [61634] = "Blackheart Boots", + [61635] = "Report from Endaras", + [61636] = "Barkskin Spirit Bead", + [61637] = "Misthoof Antler", + [61638] = "Shimmering Ooze", + [61639] = "Rod of \'Ath", + [61640] = "Rod of \'Ere", + [61641] = "Rod of \'Lex", + [61642] = "Imbued Stone", + [61643] = "Runestone Chunk", + [61644] = "Runestone Scepter", + [61645] = "Clutch of Renewal", + [61646] = "Gladeforge Breastplate", + [61647] = "Cuffs of Nordanaar", + [61648] = "Fury of the Timbermaw", + [61649] = "Pauldrons of the Timbermaw", + [61650] = "Jadestone Skewer", + [61651] = "Jadestone Mallet", + [61652] = "Claw of Erennius", + [61653] = "Hand of Corthan", + [61654] = "Foulhide Paw", + [61655] = "Eye of Xythos", + [61656] = "Ravenwood Scepter", + [61657] = "Obsidian Phylactery", + [61658] = "Shard of Midnight", + [61659] = "Scepter of Garalon", + [61660] = "Garalon\'s Might", + [61661] = "Varimathras\' Cunning", + [61662] = "Stillward Amulet", + [61663] = "Engraved Golden Bracelet", + [61664] = "Rothlen Family Brooch", + [61665] = "Charge of Karazhan", + [61666] = "Recipe: Le Fishe Au Chocolat", + [61667] = "Branch of the Great Tree", + [61668] = "Dawnstone Sabatons", + [61669] = "Flameforged Handaxe", + [61670] = "Smuggled Greymane Protector", + [61671] = "Thief\'s Mitts", + [61672] = "Thinker\'s Shoulders", + [61673] = "Arcane Essence", + [61674] = "Overcharged Ley Energy", + [61675] = "Nordanaar Herbal Tea", + [61676] = "Recipe: Gilneas Hot Stew", + [61677] = "Foulhide Cuffs", + [61678] = "Gnoll Seer Belt", + [61679] = "Rusted Battle Boots", + [61680] = "Rusted Pocket Watch", + [61681] = "Torn Handkerchief", + [61682] = "Broken Walking Cane", + [61683] = "Battered Arbalest", + [61684] = "Tuft of Worgen Hair", + [61685] = "Punctured Quiver", + [61686] = "Broken Protector", + [61687] = "Noble\'s Pendant", + [61688] = "Worgen Claw", + [61689] = "Worn Tome", + [61690] = "Cleric\'s Bent Staff", + [61692] = "Broken Helmet", + [61693] = "Dragonkin Charge", + [61694] = "Fragment of Earth", + [61695] = "Supercharged Arcane Resonation", + [61696] = "The Upper Binding of Xanthar", + [61697] = "The Lower Binding of Xanthar", + [61698] = "Totem of the Calming River", + [61699] = "Idol of Savagery", + [61700] = "Fabric of Time", + [61701] = "Wraps of the Transmogrified", + [61702] = "Head of Alzzin the Wildshaper", + [61703] = "Talisman of the Dreamshaper", + [61704] = "Vilemusk Hoof", + [61705] = "Dreamwind Sigil", + [61706] = "Corrupt Dream Shard", + [61707] = "Shadeflayer Tribal Bracelet", + [61708] = "Dreamwind Spaulders", + [61709] = "Windtalker Cape", + [61710] = "Defender of Nordrassil", + [61711] = "Great Beak", + [61712] = "Misthoof Hide", + [61713] = "Enchanted Sludge", + [61714] = "Sludge Sample", + [61715] = "Imbued Sludge", + [61716] = "Canos\' Report", + [61717] = "Groveslicer Glaive", + [61718] = "Fang of Loresh", + [61719] = "Hollow Web Venom", + [61720] = "Witherbark Blood", + [61721] = "Vilewing Pelt", + [61722] = "Duskpelt Fur", + [61723] = "Bearbane Cuffs", + [61724] = "Haunted Memento", + [61725] = "Cowl of Memento", + [61726] = "Wolf Serpent Ring", + [61727] = "Wolfwood Sash", + [61728] = "Foulhide Talisman", + [61729] = "Staff of Shackled Lightning", + [61730] = "Copper Infused Bludgeon", + [61731] = "The Binding of Xanthar", + [61732] = "Eternal Dreamstone Shard", + [61733] = "Formula: Eternal Dreamstone Shard", + [61734] = "Horsemaster Belt", + [61735] = "Stablehand Broom", + [61736] = "Horse Rustler Drape", + [61737] = "Stablemaster\'s Nightlight", + [61738] = "Formula: Enchant Bracer - Vampirism", + [61739] = "Formula: Enchant Boots - Vampirism", + [61740] = "Claw of Senthos", + [61741] = "Chunk of Wolf Meat", + [61742] = "Grim Mallet", + [61743] = "Tear of Zalmos", + [61744] = "Serpentroot", + [61745] = "Fang of Zalmos", + [61746] = "Soulgem of Zalmos", + [61747] = "Chunk of Hippogryph Meat", + [61748] = "Harness of Chimaeran", + [61749] = "Centaur Missive", + [61750] = "Galak Bracer", + [61751] = "Monster - Item, Sword - Kheyna", + [61752] = "Monster - Item, Sword - Kheyna", + [61753] = "Drape of Nordrassil", + [61754] = "Deepwood Pipe", + [61755] = "Stagwood Grasp", + [61756] = "Nordanaar Guardian Spaulders", + [61757] = "Dreambreeze Cowl", + [61758] = "Cloverlink Belt", + [61759] = "The Scythe of Elune", + [61760] = "Burnt Copy of \"Vorgendor\"", + [61761] = "Unhallowed Branch", + [61762] = "Gladewind Gloves", + [61763] = "Marlonias\' Notes", + [61764] = "A Page from Marlonias\' Notes", + [61765] = "Ironwood Vest", + [61766] = "Morrowgrain Seed", + [61767] = "Feathermoon Runners", + [61768] = "Heart of Xanvarak", + [61769] = "Comfortable Pillow", + [61770] = "Spectral Wine", + [61771] = "Obsidian Rod", + [61772] = "Vorgendor: Myths from the Blood Dimension", + [61773] = "Monster - Kamio Fan", + [61774] = "Sample of Hyjal Flora", + [61775] = "Demonic Missive", + [61776] = "Cipher Rune", + [61777] = "Translated Missive", + [61778] = "Mojo of Dreams", + [61779] = "Copper Belt Buckle", + [61780] = "Bronze Belt Buckle", + [61781] = "Iron Belt Buckle", + [61782] = "Mithril Belt Buckle", + [61783] = "Thorium Belt Buckle", + [61784] = "Arcanite Belt Buckle", + [61785] = "Dreamsteel Belt Buckle", + [61786] = "Plans: Copper Belt Buckle", + [61787] = "Plans: Bronze Belt Buckle", + [61788] = "Plans: Iron Belt Buckle", + [61789] = "Plans: Mithril Belt Buckle", + [61790] = "Plans: Thorium Belt Buckle", + [61791] = "Plans: Arcanite Belt Buckle", + [61792] = "Plans: Dreamsteel Belt Buckle", + [61793] = "Arena Mark of Honor", + [61794] = "Token of Blood", + [61795] = "Book of Ur: Volume Two", + [61796] = "Portrait of Mia Greymane", + [61797] = "Manuscript on Hydromancy II", + [61798] = "Tablet of Zef\'ek", + [61799] = "Plans: Ornate Bloodstone Dagger", + [61800] = "Dossier: Isiden Perenolde", + [61801] = "Spirit Talisman", + [61802] = "Celia\'s Journal", + [61803] = "Plans: Bloody Belt Buckle", + [61804] = "Sigil of Resilience", + [61805] = "Plans: Towerforge Demolisher", + [61806] = "Plans: Towerforge Pauldrons", + [61807] = "Plans: Towerforge Breastplate", + [61808] = "Plans: Towerforge Crown", + [61809] = "Plans: Towerforge Crown", + [61810] = "Bloody Belt Buckle", + [61811] = "Leather Letter", + [61812] = "Taming Rod", + [61813] = "Taming Rod", + [61814] = "Taming Rod", + [61815] = "Tainted Tablet", + [61816] = "Araxxna\'s Husk", + [61817] = "Dawnstone Chunk", + [61818] = "Gorgeous Mountain Gemstone", + [61819] = "Pumpkin", + [61820] = "Biscuit", + [62000] = "Pattern: Blue Dragonscale Boots", + [62001] = "Plans: Fury of the Timbermaw", + [62002] = "Plans: Pauldrons of the Timbermaw", + [62003] = "Pattern: Corehound Gloves", + [62004] = "Plans: Fiery Chain Breastplate", + [62005] = "Pattern: Flarecore Boots", + [62006] = "Pattern: Chromatic Leggings", + [62007] = "Pattern: Molten Leggings", + [62008] = "Thornpod", + [62511] = "Polished Iron Key", + [65000] = "Red Dragonscale Leggings", + [65001] = "Red Dragonscale Shoulders", + [65002] = "Red Dragonscale Boots", + [65003] = "Robe of Sacrifice", + [65004] = "Ornate Bloodstone Dagger", + [65005] = "Bloodletter Razor", + [65006] = "Stormscale Leggings", + [65007] = "Imperial Plate Gauntlets", + [65008] = "Dream\'s Herald", + [65009] = "Shadowskin Boots", + [65010] = "Copper Knuckles", + [65011] = "Sharpened Claw", + [65012] = "Bronze Bruiser", + [65013] = "Frostbound Slasher", + [65014] = "Pauldron of Deflection", + [65015] = "Blue Dragonscale Boots", + [65016] = "Scroll of Thorns", + [65017] = "Scroll of Empowered Protection", + [65018] = "Scroll of Magic Warding", + [65019] = "Dragonscale Leggings", + [65020] = "Amani Whistle", + [65021] = "Verdant Dreamer\'s Breastplate", + [65022] = "Breastplate of the Earth", + [65023] = "Boots of the Wind", + [65024] = "Earthguard Tunic", + [65025] = "Flamewrath Leggings", + [65026] = "Depthstalker Helm", + [65027] = "Windwalker Boots", + [65028] = "Murloc\'s Flippers", + [65029] = "Torn Outline: Murloc Flippers", + [65030] = "Repaired Electro-Lantern", + [65031] = "Torn Outline: Repaired Electro-Lantern", + [65032] = "Agitating Poison", + [65033] = "Zandalar Signet of Tenacity", + [65035] = "Flarecore Boots", + [65036] = "Chromatic Leggings", + [65037] = "Molten Leggings", + [65038] = "Corehound Gloves", + [65039] = "Fiery Chain Breastplate", + [65100] = "Dragonspur Boots", + [65101] = "Dragonbone Waistguard", + [65102] = "Hood of Delusional Power", + [65103] = "Shell of the Great Sleeper", + [65104] = "Ancient Corroded Chainmail", + [65105] = "Scale of the Wakener", + [67000] = "Lovely Pink Fox", + [67001] = "Anniversary Gift (4 years online)", + [67004] = "Decorative Flail", + [67005] = "Anniversary Gift (5 years online)", + [68068] = "Romantic Royal Suit", + [68069] = "Romantic Royal Gown", + [68070] = "Robes of the Moonless Night", + [69000] = "Gilnean Raven", + [69001] = "Tiny Warp Stalker", + [69002] = "Scotty", + [69003] = "Flipper", + [69004] = "Pengu", + [69006] = "Glitterwing", + [69100] = "Illidari Warbrands", + [69101] = "Crimson Warbrands", + [69102] = "Voidbound Warbrands", + [69103] = "Netherforged Warbrands", + [69104] = "Spectral Warbrands", + [69105] = "Bloodscale Markings", + [69106] = "Nightscale Markings", + [69107] = "Sigil of the Air Elemental", + [69108] = "Sigil of the Earth Elemental", + [69109] = "Fresh Bandages", + [69110] = "Old Bandages", + [69111] = "Bloodied Bandages", + [69112] = "Worryingly Bloodied Bandages", + [69113] = "Fresh Bandage Gloves", + [69114] = "Old Bandage Gloves", + [69115] = "Bloodied Bandage Gloves", + [69116] = "Worryingly Bloodied Bandage Gloves", + [69117] = "Jaina Proudmoore Robe", + [69118] = "Gilnean Archmage Robe", + [69119] = "Stormwind Archmage Robe", + [69120] = "Tirisfal Archmage Robe", + [69121] = "Scarlet Archmage Robe", + [69122] = "Kul Tiras Archmage Robe", + [69123] = "Dalaran Archmage Robe", + [69124] = "Lordaeron Archmage Robe", + [69125] = "Theramore Archmage Robe", + [69126] = "Theramore Archmage Robe", + [69127] = "Robes of the Lotus Pond", + [69128] = "Robes of Spring", + [69129] = "Year of the Dragon Robes", + [69130] = "Traditional New Year Robes", + [69131] = "Peach Garden Robes", + [69132] = "Blooming Wisteria Robes", + [69133] = "Alseid Gown", + [69134] = "Meliae Gown", + [69135] = "Naiad Gown", + [69136] = "Silver Naiad Gown", + [69137] = "Nephelae Gown", + [69138] = "Silver Nephelae Gown", + [69139] = "Asteriae Gown", + [69140] = "Silver Asteriae Gown", + [69141] = "Nereid Gown", + [69142] = "Hesperide Gown", + [69143] = "Silver Hesperide Gown", + [69144] = "Ophne Gown", + [69145] = "Silver Orphne Gown", + [69146] = "Midnight Star Gown", + [69147] = "Evening Star Gown", + [69148] = "Twilight Star Gown", + [69149] = "Dusk Star Gown", + [69150] = "Dawn Star Gown", + [69151] = "Morning Star Gown", + [69152] = "Silver Star Sandals", + [69153] = "Alseid Slippers", + [69154] = "Meliae Slippers", + [69155] = "Naiad Slippers", + [69156] = "Silver Nalad Slippers", + [69157] = "Nephelae Slippers", + [69158] = "Silver Nephelae Slippers", + [69159] = "Asteriae Slippers", + [69160] = "Silver Asteriae Slippers", + [69161] = "Nereid Slippers", + [69162] = "Hesperide Slippers", + [69163] = "Silver Hesperide Slippers", + [69164] = "Orphne Slippers", + [69165] = "Silver Orphne Slippers", + [69170] = "Ivory Boar", + [69171] = "Plagued Boar", + [69172] = "Armored Brown Boar", + [69173] = "Black Boar", + [69990] = "Sigil of the Fire Elemental", + [69991] = "Sigil of the Water Elemental", + [69992] = "Sigil of the Scarlet Viper", + [69994] = "Sigil of the Albino Viper", + [69999] = "Sigil of the Black Viper", + [70000] = "Formula: Enchant Gloves - Nature Power", + [70001] = "Formula: Enchant Gloves - Arcane Power", + [70002] = "Formula: Enchant Gloves - Holy Power", + [70003] = "Hawkspear\'s Necklace", + [70004] = "Stalker\'s Bands", + [70005] = "Ceremonial Robes", + [70006] = "Leafcovered Spaulders", + [70008] = "Ashenvale Shawl", + [70009] = "Frog Juice", + [70010] = "Infused Briarwood Staff", + [70011] = "Baneful Edge", + [70012] = "Fel-Infused Ring", + [70014] = "Hawkspear\'s Ceremonial Headdress", + [70016] = "Infinite Whelpling", + [70021] = "Bog Creature Core", + [70022] = "Ashenvale Bear Pelt", + [70023] = "Commander Grushak\'s Report", + [70024] = "Farseer Grimeye\'s Letter", + [70025] = "Jin\'Zil\'s Mojo", + [70026] = "Diathorus\'s Head", + [70027] = "Broken Spear", + [70030] = "Wood", + [70031] = "Oil Canister", + [70032] = "Scruffy Cloth Hat", + [70033] = "Tazan\'s Tusk", + [70034] = "Threshadon Trophy", + [70035] = "Rusty Shovel", + [70036] = "Tattered Defias Mask", + [70037] = "Defias Enforcer Shoulderguards", + [70038] = "Sturdy Tent Cloth", + [70040] = "Summer Dew", + [70041] = "Life\'s Dawn", + [70042] = "Vulpa Bloom", + [70043] = "Music: Winds of Kamio", + [70044] = "Watcher Paige\'s Report", + [70045] = "Rusty Shovel", + [70046] = "Silver Ring", + [70047] = "Smoldering Brand", + [70048] = "Surgeon\'s Gloves", + [70049] = "Worn Crossbow", + [70050] = "Shoulderplates of Misfortune", + [70051] = "Gauntlets of Wrangling", + [70052] = "Skorgrim\'s Lost Belt", + [70053] = "Rotworm Legplates", + [70054] = "Wyrmheart Boots", + [70055] = "Breastplate of Forgotten Valor", + [70056] = "Horned Helm of Ancient Kings", + [70057] = "Crown of Eternal Sacrifice", + [70058] = "Breastplate of Fortitutde", + [70059] = "Sabatons of Protection", + [70060] = "Greaves of Servitude", + [70062] = "Gauntlets of Force", + [70063] = "Girdle of Hope", + [70064] = "Epaulets of Courage", + [70070] = "Grayson\'s Hat", + [70080] = "Music: Emerald Dream", + [70081] = "Music: Bells of the Dawn", + [70082] = "Music: Hourglass of Eternity", + [70083] = "Music: Hyjal Summit", + [70084] = "Music: Jaguero Isle", + [70085] = "Music: Stratholme\'s Best Days", + [70086] = "Music: Titanic Mystery", + [70087] = "Music: Aerie Peak", + [70088] = "Music: Hateforge Quarry Interior", + [70090] = "Music: Bastion", + [70091] = "Music: Hateforge Quarry Exterior", + [70092] = "Music: Stormwind Vault", + [70094] = "Music: Dun Argath", + [70095] = "Music: Snowing in the Vale", + [70101] = "Plans: Ruby Ring of Ruin", + [70102] = "Plans: Encrusted Gemstone Ring", + [70103] = "Plans: Prism Amulet", + [70104] = "Plans: Gemmed Citrine Pendant", + [70105] = "Plans: Starforge Amulet", + [70106] = "Plans: Voidheart Charm", + [70107] = "Plans: Runebound Amulet", + [70108] = "Plans: Shimmering Moonstone Tablet", + [70109] = "Plans: Stormcloud Sigil", + [70110] = "Plans: Gleaming Chain", + [70111] = "Plans: Talisman of Stone", + [70112] = "Plans: Medallion of Flame", + [70113] = "Plans: Gleaming Silver Necklace", + [70114] = "Plans: Ring of The Turtle", + [70115] = "Plans: Goldcrest Amulet", + [70116] = "Plans: Gem Encrusted Choker", + [70117] = "Plans: Shining Copper Cuffs", + [70118] = "Plans: Dawnbright Cuffs", + [70119] = "Plans: Circlet of Dampening", + [70120] = "[DEPRECATED] Plans: Eternal Jade Crown", + [70125] = "Plans: Crystalfire Armlets", + [70126] = "Plans: Cinderfall Band", + [70127] = "Plans: Opaline Illuminator", + [70128] = "Plans: Skyfire Jewel", + [70129] = "Plans: Gemstone Compendium", + [70132] = "Plans: Dazzling Aquamarine Loop", + [70133] = "Plans: Crystal Earring", + [70134] = "Plans: Alluring Citrine Choker", + [70135] = "Plans: Elaborate Golden Bracelets", + [70136] = "Plans: Heart of the Sea", + [70137] = "Plans: Staff of Gallitrea", + [70138] = "Plans: Golden Jade Ring", + [70139] = "Plans: Delicate Mithril Amulet", + [70140] = "Plans: Draenethyst Baton", + [70141] = "Plans: Ebon Ring", + [70142] = "Plans: The King\'s Conviction", + [70143] = "Plans: Shadowfall Jewel", + [70144] = "Plans: Ocean\'s Wrath", + [70145] = "Plans: Dazzling Moonstone Band", + [70146] = "Plans: Harpy Talon Ring", + [70147] = "Plans: Centaur Hoof Circlet", + [70148] = "Plans: Ogre Bone Band", + [70149] = "Plans: Spectre Shade Ring", + [70150] = "Plans: Malachite Ring", + [70151] = "Plans: Marine\'s Demise", + [70152] = "Plans: Serpent\'s Coil Staff", + [70153] = "Plans: Farraki Ceremony Totem", + [70154] = "Plans: Sphinx\'s Wisdom Staff", + [70155] = "Plans: Gloomweed Bindings", + [70156] = "Plans: Sharpened Citrine Gemstone", + [70157] = "Plans: Radiant Ember Gemstone", + [70158] = "Plans: Glowing Ruby Gemstone", + [70159] = "Plans: Shimmering Aqua Gemstone", + [70160] = "Plans: Azerothian Ruby Gemstone", + [70161] = "Plans: Gloomy Diamond Gemstone", + [70162] = "Plans: Flawless Black Gemstone", + [70163] = "Plans: Arcane Emerald Gemstone", + [70164] = "Plans: Tempered Azerothian Gemstone", + [70166] = "Plans: Stunning Imperial Gemstone", + [70167] = "Plans: Enchanted Emerald Gemstone", + [70168] = "Plans: Pure Shining Moonstone", + [70169] = "Plans: Beautiful Diamond Gemstone", + [70170] = "Plans: Shimmering Diamond Band", + [70171] = "Plans: Crown of Molten Ascension", + [70172] = "Plans: Embergem Cuffs", + [70173] = "Plans: Blackwing Signet of Command", + [70174] = "Plans: Talisman of Hinderance", + [70175] = "Plans: Mastercrafted Diamond Crown", + [70176] = "Plans: Opalstone Circle", + [70177] = "Plans: Deep Sapphire Circlet", + [70178] = "Plans: Dark Iron Signet Ring", + [70179] = "Plans: Opal Guided Bangles", + [70180] = "Plans: Crown of Elegance", + [70181] = "Plans: Ornate Mithril Bracelets", + [70182] = "Plans: Regal Twilight Staff", + [70183] = "Plans: Pendant of Instability", + [70184] = "Plans: Ornament of Restraint", + [70185] = "Plans: Hydrathorn Bracers", + [70186] = "Plans: Blackrock Ironclamps", + [70187] = "Plans: Monastery Emberbrace", + [70188] = "Plans: Shadowmoon Orb", + [70189] = "Plans: Fangclaw Relic", + [70190] = "Plans: Netherbane Rod", + [70191] = "Plans: Marine Root", + [70192] = "Plans: Mistwood Tiara", + [70193] = "Plans: Venomspire Diadem", + [70194] = "Plans: Facetted Moonstone Brooch", + [70195] = "Plans: Obsidian Brooch", + [70196] = "Plans: Smoldering Brooch", + [70197] = "Plans: Vitriol Brooch", + [70198] = "Formula: Enchanted Gemstone Oil", + [70199] = "Plans: Graceful Agate Gemstone", + [70200] = "Plans: Dreary Opal Gemstone", + [70201] = "Plans: Resurged Topaz Gemstone", + [70202] = "Plans: Resilient Arcane Gemstone", + [70203] = "Plans: Bloodfire Circlet", + [70204] = "Plans: Shadowforged Eye", + [70205] = "Plans: Totem of Self Preservation", + [70206] = "Plans: Ornate Mithril Crown", + [70207] = "Plans: Spellweaver Pendant", + [70208] = "Plans: Ring of Midnight", + [70209] = "Plans: Gorgeous Mountain Gemstone", + [70210] = "Plans: Stormcloud Signet", + [70211] = "Plans: Golden Runed Ring", + [70212] = "Plans: Mana Binding Signet", + [70213] = "Plans: Blazefury Circlet", + [70214] = "Plans: Ring of Unleashed Potential", + [70215] = "Plans: Empowered Domination Rod", + [70216] = "Plans: Orb of Clairvoyance", + [70217] = "Plans: Grail of Forgotten Memories", + [70218] = "Plans: Guardbreaker Charm", + [70219] = "Plans: Rudeus\' Focusing Cane", + [70220] = "Plans: Spire of Channeled Power", + [70221] = "Plans: Bindings of Luminance", + [70222] = "Plans: Crown of the Illustrious Queen", + [70223] = "Plans: Mastercrafted Diamond Bangles", + [70224] = "Kolkar Drape", + [70225] = "Necklace of Redemption", + [70226] = "Ancient Warfare Text", + [70227] = "Mastery of Axes", + [70228] = "Mastery of Swords", + [70229] = "Mastery of Hammers", + [70230] = "Mastery of Fist Weapons", + [70231] = "Mastery of Polearms", + [70232] = "Mastery of Staves", + [70233] = "Mastery of Thrown", + [70234] = "Mastery of Bows", + [70235] = "Mastery of Crossbows", + [70236] = "Mastery of Daggers", + [70237] = "Mastery of Fist Weapons", + [70238] = "Mastery of Guns", + [70239] = "Operative Cloak", + [70240] = "Cuffs of Integrity", + [70241] = "Amberglaze Donut", + [70597] = "Arcanist Coronet", + [70598] = "Arcanist Shoulderpads", + [70599] = "Arcanist Raiments", + [70600] = "Arcanist Bracers", + [70601] = "Arcanist Handguards", + [70602] = "Arcanist Sash", + [70603] = "Arcanist Pants", + [70604] = "Arcanist Sandals", + [70613] = "Netherwind Coronet", + [70614] = "Netherwind Shoulderpads", + [70615] = "Netherwind Raiments", + [70616] = "Netherwind Bracers", + [70617] = "Netherwind Handguards", + [70618] = "Netherwind Sash", + [70619] = "Netherwind Pants", + [70620] = "Netherwind Sandals", + [70626] = "Enigma Coronet", + [70627] = "Enigma Shoulderpads", + [70628] = "Enigma Raiments", + [70629] = "Enigma Pants", + [70630] = "Enigma Sandals", + [70640] = "Frostfire Coronet", + [70641] = "Frostfire Shoulderpads", + [70642] = "Frostfire Raiments", + [70643] = "Frostfire Wristbands", + [70644] = "Frostfire Handguards", + [70645] = "Frostfire Cord", + [70646] = "Frostfire Pants", + [70647] = "Frostfire Sandals", + [70648] = "Frostfire Ring", + [70732] = "Coronet of the Oracle", + [70733] = "Shoulderpads of the Oracle", + [70734] = "Raiments of the Oracle", + [70735] = "Pants of the Oracle", + [70736] = "Sandals of the Oracle", + [70739] = "Dreadnaught Chestplate", + [70744] = "Dreadnaught Sabatons", + [70783] = "Dreadnaught Pauldrons", + [80000] = "Golden Dragonhawk Hatchling", + [80001] = "Thalassian Tender", + [80003] = "Black-Footed Fox", + [80004] = "Cheeky Monkey", + [80006] = "Arcane Elemental", + [80007] = "Enchanted Broom", + [80008] = "Temporal Bronze Disc", + [80010] = "Midnight", + [80060] = "Glyph of War", + [80100] = "Whirling Whizmagig", + [80101] = "Mud Covered Gloves", + [80102] = "Torn Pants", + [80103] = "Plateau Vulture Meat", + [80104] = "Sprat\'s Crunchy Vulture Surprise", + [80105] = "Bruiser Club", + [80106] = "Miscalibrated Rifle", + [80107] = "Smooth Wooden Staff", + [80108] = "Charred Chainmail", + [80109] = "Oil-splattered Robe", + [80110] = "Scorched Vest", + [80111] = "Ash-Covered Tunic", + [80112] = "Living Petroleum", + [80113] = "Pocket Knife", + [80114] = "Oil-scorched Note", + [80115] = "Frayed Sash", + [80116] = "Studded Bracers", + [80117] = "Charred Boots", + [80118] = "Scrapmetal Boots", + [80119] = "Mechanical Drumstick", + [80120] = "Oil Splattered Gloves", + [80121] = "Scorched Gloves", + [80122] = "Oil Splattered Boots", + [80123] = "Oilrag Boots", + [80124] = "Scorched Belt", + [80125] = "Charred Belt", + [80126] = "Sharpened Bastard Sword", + [80127] = "Polished Boomstick", + [80128] = "Pearltip Staff", + [80129] = "Balanced Hand Blade", + [80130] = "Torka\'s Boarbecue Ribs", + [80131] = "Tanned Hide Vest", + [80132] = "Chainmail Harness", + [80133] = "Bloodstained Robe", + [80150] = "Grease-stained Letter", + [80151] = "Ooze-covered Letter", + [80152] = "Leather-Covered Letter", + [80153] = "Fancy Letter", + [80154] = "Awful-looking Letter", + [80155] = "Trash", + [80156] = "Highpeak Thistle", + [80157] = "Withered Root", + [80158] = "Loose Cog", + [80159] = "Rusty Screw", + [80160] = "Broken Beak", + [80161] = "Ruffled Feather", + [80162] = "Ash", + [80163] = "Smoldering Ember", + [80164] = "Rusty Sawblade", + [80165] = "Smoking Gizmo", + [80166] = "Bone Shards", + [80167] = "Kaja\'Cola", + [80168] = "Crunchy Murloc Fin", + [80170] = "Howling Crystal", + [80175] = "Tome of Disguise: Chromie", + [80180] = "Crown of the Damned", + [80181] = "Bulwark of the Damned", + [80182] = "Sabatons of the Damned", + [80183] = "Chausses of the Damned", + [80184] = "Girdle of the Damned", + [80185] = "Grasps of the Damned", + [80186] = "Epaulets of the Damned", + [80187] = "Tabard of the Immortal Guardian", + [80189] = "Lockbox of the Immortal Soul", + [80200] = "Bundle of Wood", + [80202] = "Worn Gloves", + [80203] = "Ragged Cloth Pants", + [80204] = "Ragged Cloth Sash", + [80205] = "Studded Bracers", + [80206] = "Rusted Bastard Sword", + [80207] = "Worn Wooden Bow", + [80208] = "Crooked Tree Branch", + [80209] = "Empty Barrel", + [80210] = "Filled Barrel of Water", + [80211] = "Camping Knife", + [80212] = "Polished Scalemail", + [80213] = "Comfy Robe", + [80214] = "Stitched Leather Vest", + [80215] = "Ragged Cloth Vest", + [80216] = "Dark Key", + [80217] = "Stitched Leather Boots", + [80218] = "Polished Scale Boots", + [80219] = "Ragged Cloth Gloves", + [80220] = "Stitched Leather Gloves", + [80221] = "Forever-Lovely Rose", + [80222] = "Farstrider Lodge Protector\'s Sword", + [80223] = "Farstrider Lodge Protector\'s Bow", + [80224] = "Loch Modan Pumpkin", + [80225] = "Loch Modan Berries", + [80226] = "Ranger\'s Letter", + [80227] = "Magister\'s Letter", + [80228] = "Paladin\'s Letter", + [80229] = "Priest\'s Letter", + [80230] = "Shady Letter", + [80231] = "Swordsman\'s Letter", + [80232] = "Young Boar Meat", + [80233] = "Young Bear Pelt", + [80234] = "Bear Hide Cape", + [80240] = "Arcane Crystal", + [80241] = "Arcane Artifact", + [80245] = "Poppy", + [80250] = "Sun-Parched Waterskin", + [80251] = "Crusty Flatbread", + [80300] = "Time Warden\'s Tabard", + [80301] = "Cenarion Circle Tabard", + [80302] = "Illidari Tabard", + [80303] = "Ironforge Tabard", + [80304] = "Darkspear Tribe Tabard", + [80305] = "Darnassus Tabard", + [80306] = "Gnomeregan Tabard", + [80307] = "Orgrimmar Tabard", + [80308] = "Thunder Bluff Tabard", + [80309] = "Undercity Tabard", + [80310] = "Sin\'dorei Tabard", + [80311] = "Silverhand Tabard", + [80312] = "Wildhammer Tabard", + [80314] = "Tabard of the Scourge", + [80315] = "[REUSE ME] Grim Batol Tabard", + [80316] = "Steamwheedle Cartel Tabard", + [80317] = "Quel\'Thalas Tabard", + [80318] = "Warden Tabard", + [80320] = "Stormwind Tabard", + [80400] = "Quark\'s Shack Membership Card", + [80401] = "Tobacco Crate", + [80402] = "Sturk\'s Income Book", + [80403] = "Bloodsail Marked Letter", + [80410] = "High Elf Orphan Whistle", + [80420] = "Rosemary Flower", + [80421] = "Toad Oil", + [80422] = "Juju of Kimbul", + [80423] = "Zol\'majin\'s Voodoo Doll", + [80425] = "White Stag", + [80430] = "Azure Spectral Tiger", + [80431] = "Magic Rooster", + [80432] = "Magic Broom", + [80433] = "Black Bear", + [80438] = "Brown Bear", + [80443] = "Armored Brewfest Ram", + [80446] = "Armored Nightsaber", + [80447] = "Horde Worg", + [80449] = "Armored Black Steed", + [80450] = "Zephyr", + [80455] = "Brewfest Kodo", + [80456] = "Swift Blood Kodo", + [80457] = "Armored Thalassian Unicorn", + [80458] = "Ornate Thalassian Unicorn", + [80459] = "White Thalassian Unicorn", + [80460] = "Red Rocket Car", + [80461] = "Green Rocket Car", + [80462] = "Blue Rocket Car", + [80463] = "Summer Collection of Unseen Fashion: Waist", + [80464] = "Hidden Leather Belt", + [80465] = "Hidden Mail Belt", + [80466] = "Hidden Plate Belt", + [80480] = "Spirit Worg", + [80481] = "Black Armored Talbuk", + [80482] = "Cobalt Talbuk", + [80483] = "Cobalt Armored Talbuk", + [80499] = "Guild Name Change Token", + [80500] = "Tempered Argus Mace", + [80501] = "Sturdy Broadsword", + [80502] = "Curved Ceremonial Staff", + [80503] = "Well-balanced Short Bow", + [80504] = "Hardened Root Staff", + [80505] = "Quel\'dorei Hero\'s Cape", + [80506] = "Quel\'dorei Hero\'s Cloak", + [80507] = "Quel\'dorei Guardian\'s Chestplate", + [80508] = "Quel\'dorei Guardian\'s Boots", + [80509] = "Quel\'dorei Guardian\'s Girdle", + [80510] = "Quel\'dorei Guardian\'s Handguards", + [80511] = "Quel\'dorei Guardian\'s Legplates", + [80512] = "Quel\'dorei Magister\'s Robe", + [80513] = "Quel\'dorei Magister\'s Boots", + [80514] = "Quel\'dorei Magister\'s Belt", + [80515] = "Quel\'dorei Magister\'s Gloves", + [80516] = "Quel\'dorei Magister\'s Leggings", + [80517] = "Quel\'dorei Assassin\'s Tunic", + [80518] = "Quel\'dorei Assassin\'s Boots", + [80519] = "Quel\'dorei Assassin\'s Belt", + [80520] = "Quel\'dorei Assassin\'s Vices", + [80521] = "Quel\'dorei Assassin\'s Leggings", + [80522] = "Quel\'dorei Ranger\'s Hauberk", + [80523] = "Quel\'dorei Ranger\'s Boots", + [80524] = "Quel\'dorei Ranger\'s Belt", + [80525] = "Quel\'dorei Ranger\'s Gauntlets", + [80526] = "Quel\'dorei Ranger\'s Legguards", + [80527] = "Quel\'dorei Hero\'s Drape", + [80528] = "Quel\'dorei Assassin\'s Kris", + [80529] = "Quel\'dorei Magister\'s Channeling Blade", + [80530] = "Quel\'dorei Guardian\'s Mace", + [80531] = "Quel\'dorei Guardian\'s Warhammer", + [80532] = "Quel\'dorei Cleric\'s Hammer", + [80533] = "Quel\'dorei Guardian\'s Handaxe", + [80534] = "Quel\'dorei Guardian\'s Battle Glaive", + [80535] = "Quel\'dorei Defender\'s Deflector", + [80536] = "Quel\'dorei Assassin\'s Sword", + [80537] = "Quel\'dorei Guardian\'s Twinblade", + [80538] = "Quel\'dorei Ranger\'s Spear", + [80539] = "Quel\'dorei Magister\'s Focus", + [80540] = "Quel\'dorei Cleric\'s Tome", + [80541] = "Quel\'dorei Magister\'s Staff", + [80542] = "Quel\'dorei Cleric\'s Staff", + [80543] = "Quel\'dorei Defender\'s Bulwark", + [80544] = "Quel\'dorei Magister\'s Spellflinger", + [80545] = "Quel\'dorei Cleric\'s Wand", + [80546] = "Quel\'dorei Ranger\'s Longbow", + [80547] = "Quel\'dorei Guardian\'s Battle Axe", + [80555] = "Pet Name Change Token", + [80600] = "Rockslicer", + [80601] = "Flesh Cutter", + [80602] = "Crude Channeling Staff", + [80603] = "Sturdy Short Bow", + [80604] = "Withered Root Staff", + [80605] = "Revantusk Hero\'s Cape", + [80606] = "Revantusk Hero\'s Cloak", + [80607] = "Revantusk Watcher\'s Chestplate", + [80608] = "Revantusk Watcher\'s Boots", + [80609] = "Revantusk Watcher\'s Girdle", + [80610] = "Revantusk Watcher\'s Handguards", + [80611] = "Revantusk Watcher\'s Legplates", + [80612] = "Revantusk Mystic\'s Robe", + [80613] = "Revantusk Mystic\'s Boots", + [80614] = "Revantusk Mystic\'s Belt", + [80615] = "Revantusk Mystic\'s Gloves", + [80616] = "Revantusk Mystic\'s Leggings", + [80617] = "Revantusk Stalker\'s Tunic", + [80618] = "Revantusk Stalker\'s Boots", + [80619] = "Revantusk Stalker\'s Belt", + [80620] = "Revantusk Stalker\'s Vices", + [80621] = "Revantusk Stalker\'s Leggings", + [80622] = "Revantusk Shadow Hunter\'s Hauberk", + [80623] = "Revantusk Shadow Hunter\'s Boots", + [80624] = "Revantusk Shadow Hunter\'s Belt", + [80625] = "Revantusk Shadow Hunter\'s Gauntlets", + [80626] = "Revantusk Shadow Hunter\'s Legguards", + [80627] = "Revantusk Hero\'s Drape", + [80628] = "Revantusk Stalker\'s Kris", + [80629] = "Revantusk Mystic\'s Chanting Blade", + [80630] = "Revantusk Watcher\'s Mace", + [80631] = "Revantusk Watcher\'s Maul", + [80632] = "Revantusk Mender\'s Scepter", + [80633] = "Revantusk Watcher\'s Slicer", + [80634] = "Revantusk Watcher\'s Carver", + [80635] = "Revantusk Defender\'s Deflector", + [80636] = "Revantusk Stalker\'s Blade", + [80637] = "Revantusk Watcher\'s Warblade", + [80638] = "Revantusk Shadow Hunter\'s Striker", + [80639] = "Revantusk Mystic\'s Hex Skull", + [80640] = "Revantusk Mender\'s Mojo", + [80641] = "Revantusk Mystic\'s Staff", + [80642] = "Revantusk Mender\'s Cane", + [80643] = "Revantusk Defender\'s Bulwark", + [80644] = "Revantusk Mystic\'s Mojobender", + [80645] = "Revantusk Mender\'s Wand", + [80646] = "Revantusk Shadow Hunter\'s Longbow", + [80648] = "Tome of Disguise: Gnoll", + [80649] = "Vile Sting", + [80650] = "Sunwell\'s Echo", + [80651] = "Crystal Veil Platinum", + [80652] = "Fading Glory Red", + [80653] = "Autumn Auburn", + [80654] = "Sunlit Path", + [80655] = "Too Bright Blonde", + [80656] = "Burnt Promise Red", + [80657] = "Last Hope Honey", + [80658] = "Midnight Mist", + [80659] = "Regretful Rouge", + [80660] = "Short-Circuit Copper", + [80661] = "Explodium Crimson", + [80662] = "Big Badda Boom Red", + [80663] = "Gadgetzan Purple", + [80664] = "Charcoal Profit", + [80665] = "Arcane Eclipse", + [80670] = "Sludge-drenched Sabatons", + [80671] = "Toxic Ripper", + [80672] = "Venomsight Mask", + [80673] = "Murkwater Leggings", + [80674] = "Corrosive Core", + [80690] = "Gazlowe\'s Letter", + [80691] = "Lieren\'s Package", + [80692] = "Immortal Champion\'s Charger", + [80694] = "Tome of Disguise: Scourge Warrior", + [80699] = "Appearance Change Token", + [80700] = "Tribal Trogg Club", + [80701] = "Dusty Leather Pants", + [80702] = "Stitched Cloth Vest", + [80703] = "Heated Leather Belt", + [80704] = "Lavadrenched Chainmail", + [80705] = "Satyr Poker", + [80706] = "Ogremight Gauntlets", + [80707] = "Operator Boots", + [80708] = "Cookie\'s Apron", + [80709] = "Guardian Staff", + [80710] = "Turtle Scale Shoulderguards", + [80711] = "Bracers of Wild Growth", + [80712] = "Charged Leggings", + [80713] = "Padded Keeper Tunic", + [80714] = "Binding Chain", + [80715] = "Gloves of the Lifted Cup", + [80716] = "Claw of the Worgen", + [80717] = "Commander\'s Greaves", + [80718] = "Ghamoo-ra\'s Guard", + [80719] = "Pendant of the Deeps", + [80720] = "Deep Striders", + [80721] = "Heavy Prison Cuffs", + [80722] = "Dreadskull Pauldrons", + [80723] = "Nail on a Plank", + [80724] = "Cell Heater", + [80725] = "Hamhock\'s Nose Ring", + [80726] = "Gravedigger Boots", + [80727] = "Broken Bottle", + [80728] = "Stormwind Guard Spear", + [80729] = "Standard Issue Tunic", + [80730] = "Convict Moccasins", + [80731] = "Runed Hookblade", + [80732] = "Boar Tamer Gloves", + [80733] = "Cursed Thornblade", + [80734] = "Quilguard Legguards", + [80735] = "Warded Boarleather Belt", + [80736] = "Rageboar Harness", + [80737] = "Irradiated Ring", + [80738] = "Basilisk Scale Boots", + [80739] = "Rockbiter", + [80740] = "Pummeler Gauntlet", + [80741] = "Torturer\'s Girdle", + [80742] = "Searing Cowl", + [80743] = "Darkcaster Gloves", + [80744] = "Plaguemaw\'s Staff of Rotting", + [80745] = "Abomination Crossbow", + [80746] = "Rockshard Guard", + [80747] = "Electrified Gloves", + [80748] = "Corrupter\'s Focus", + [80749] = "Pysan\'s Lost Girdle", + [80750] = "Thornfist", + [80751] = "Thornclad Warhammer", + [80752] = "Cape of Unbridled Growth", + [80753] = "Vileplate Pauldrons", + [80754] = "Earthsong Treaders", + [80755] = "Befouled Handwraps", + [80756] = "Vinebound Headband", + [80758] = "Carapace of the Spider Queen", + [80759] = "Cloak of the Protector", + [80760] = "Spireblade Band", + [80761] = "Crown of Flowers", + [80763] = "Willbreaker", + [80765] = "Blackteeth Necklace", + [80766] = "Highmaul Ring", + [80767] = "Skull of Grarr", + [80769] = "Necrolyte Boots", + [80770] = "Necrolyte Skullcap", + [80771] = "Dark Paladin\'s Gauntlets", + [80772] = "Twisted Draenei Rib", + [80773] = "Damien\'s Sorrow", + [80774] = "Arcanite Shackles", + [80775] = "The Ripper", + [80776] = "Robes of the Eredar", + [80777] = "Impskin Gloves", + [80778] = "Tome of Feral Rage", + [80779] = "Blackened Scale Leggings", + [80780] = "Runed Ring of Protection", + [80781] = "Experiment D2X3", + [80782] = "Sash of Burning Vengeance", + [80783] = "Warder\'s Chestplate", + [80784] = "Unbroken Prisoner\'s Cuffs", + [80785] = "Bottle of Good Mojo", + [80786] = "Pendant of Kindred Spirit", + [80787] = "Pendant of Eternal Servitute", + [80789] = "Sharpsight Eyepatch", + [80790] = "Attuned Shoulders", + [80791] = "Robe of Divinity", + [80792] = "Hushblade", + [80793] = "The Wolf Horn of Orgrimmar", + [80794] = "Ironfist", + [80795] = "Burstshot Harquebus", + [80796] = "Tattered Cloak of the Insurgency", + [80797] = "Pendant of Troll Regeneration", + [80798] = "Charged Servo Arm", + [80799] = "Wand of Divine Justice", + [80801] = "Cowl of Terror", + [80802] = "Goblin Mail Boots", + [80803] = "Goblin Mail Hauberk", + [80804] = "Arcane Core", + [80805] = "Prismatic Crystal", + [80806] = "Healing Ward", + [80807] = "Serpent\'s Bite", + [80809] = "Bloodhowler", + [80810] = "Lost Defender\'s Helmet", + [80811] = "Energized Spear", + [80812] = "Gift of the Spider God", + [80813] = "Piercing Spear", + [80814] = "Rusty Spear", + [80815] = "Silithid Egg", + [80816] = "Robe of the Burning Blade", + [80817] = "Scorched Bastard Sword", + [80818] = "Boarskin Cape", + [80819] = "Serrated Handaxe", + [80820] = "Quilflinger", + [80821] = "Hatetalon", + [80822] = "Prismstone Ring", + [80823] = "Gemstone Dagger", + [80824] = "Narillasanz\'s Tooth", + [80825] = "Flamestring Bow", + [80826] = "Scale of the Red Drake", + [80827] = "Withered Band", + [80828] = "Ironbark Branch", + [80829] = "Moonbeam", + [80830] = "Fey Dreamcatcher", + [80831] = "Battlemaster\'s Gloves", + [80832] = "Steelscale Shoulders", + [80833] = "Hellcaller\'s Diadem", + [80834] = "Satyr Claw", + [80835] = "Nagascale Cloak", + [80836] = "Staff of the Zephyr", + [80837] = "Hardened Scorpid Boots", + [80838] = "Hardened Scorpid Boots", + [80839] = "Frozen Obsidian Ring", + [80840] = "Obsidian Sphere", + [80841] = "Frostbitten Shoulders", + [80842] = "Scale of the Blue Drake", + [80843] = "Tideturner Boots", + [80844] = "Tempestria\'s Frozen Heart", + [80845] = "Arena Girdle", + [80846] = "Arena Belt", + [80847] = "Arena Cord", + [80848] = "Arena Sash", + [80849] = "Living Ember Pendant", + [80850] = "Circlet of the Living Volcano", + [80851] = "Earthclad Bracers", + [80852] = "Earthshard Necklace", + [80853] = "Thunderstruck Talisman", + [80854] = "Wind Kissed Crystal", + [80860] = "Staff of the Arcane Path", + [80861] = "Spellweaving Dagger", + [80862] = "Moontouched Wood", + [80863] = "Crystal of the Serpent", + [80864] = "Everchanging Essence", + [80865] = "Healing Balm", + [80866] = "Lovely Apple", + [80868] = "Knobby\'s Belt", + [80876] = "Silvermoon Bow", + [80878] = "Amani Eagle", + [80880] = "Winterspring Tea Leaf", + [81003] = "Ancient Hakkari Flayer", + [81004] = "Sandswept Obsidian Dagger", + [81005] = "Spiked Defias Spaulders", + [81006] = "Cowl of the Fang", + [81007] = "Blackened Defias Mask", + [81008] = "Codex: Sun\'s Embrace (Rank 1)", + [81009] = "Codex: Sun\'s Embrace (Rank 2)", + [81010] = "Codex: Sun\'s Embrace (Rank 3)", + [81011] = "Codex: Sun\'s Embrace (Rank 4)", + [81012] = "Codex: Grace of the Sunwell", + [81013] = "Southern Sand Crawler Leg", + [81014] = "Crab Catcher\'s Hat", + [81015] = "Cook\'s Apron", + [81016] = "Bleeding Heart Talisman", + [81017] = "Girdle of Fading Hope", + [81018] = "Crimson Spellblade", + [81019] = "Gauntlets of Myrmidon", + [81020] = "Orb of Mending Mists", + [81021] = "Flashfreeze Robe", + [81024] = "Dawnbreaker\'s Wedding Ring", + [81025] = "Morbide\'s Wedding Ring", + [81030] = "Malachite Ring", + [81031] = "Bright Copper Necklace", + [81032] = "Rough Gemstone Cluster", + [81050] = "Crown of the Dark Reaver", + [81051] = "Epaulets of the Dark Reaver", + [81052] = "Breastplate of the Dark Reaver", + [81053] = "Grasps of the Dark Reaver", + [81054] = "Girdle of the Dark Reaver", + [81055] = "Sabatons of the Dark Reaver", + [81056] = "Greaves of the Dark Reaver", + [81057] = "Dark Reaver", + [81059] = "Fox\'s Spirit Stone", + [81060] = "Tempered Runeblade", + [81061] = "Primalist\'s Gloves", + [81062] = "Primalist\'s Shoulders", + [81063] = "Primalist\'s Headdress", + [81064] = "Primalist\'s Pants", + [81065] = "Primalist\'s Boots", + [81066] = "Primalist\'s Vest", + [81077] = "Theramore Tabard", + [81079] = "Gilded Scarlet Crusade Tabard", + [81080] = "Syndicate Mask", + [81081] = "Tabard of Fury", + [81082] = "Tabard of Brilliance", + [81083] = "Tabard of Void", + [81084] = "Tabard of Arcane", + [81085] = "Tabard of Nature", + [81086] = "Competition Tabard", + [81087] = "Tabard of Summer Flames", + [81088] = "Tabard of the Midsummer Solstice", + [81089] = "Durotar Labor Union Tabard", + [81091] = "Big Blizzard Bear", + [81092] = "Copper Staff", + [81093] = "Bulky Copper Ring", + [81094] = "Amber Topaz", + [81095] = "Worn Thalassian Shield", + [81098] = "Revantusk Tabard", + [81100] = "Raven Lord", + [81101] = "Dreamless Sleep", + [81102] = "Darkmoon Dancing Bear", + [81110] = "Flourishing Lovely Rose", + [81111] = "Pants of the Midsummer Solstice", + [81112] = "Pants of the Fire Festival", + [81113] = "Blue Summer Shirt", + [81114] = "Red Summer Shirt", + [81115] = "Shoes of the Fire Festival", + [81116] = "Picnic Basket", + [81117] = "Shimmering Shell", + [81118] = "Shellcoin", + [81119] = "Plane Ticket", + [81120] = "Long-Forgotten Hippogryph", + [81121] = "Cenarion Hippogryph", + [81122] = "Bloodfallen Cloak", + [81123] = "Crimson Defender\'s Leggings", + [81124] = "Helmet of the Scarlet Avenger", + [81125] = "Inquisitor\'s Orb", + [81131] = "Helmet of the Scarlet Avenger", + [81140] = "Steamwheedle Limited Edition Wormhole", + [81142] = "Qiraji Ceremonial Shirt", + [81143] = "Plates of Uldum", + [81145] = "Tome of Disguise: Pandaren", + [81150] = "Phoenix Hatchling", + [81151] = "Spectral Faeling", + [81152] = "Tiny Pterodactyl", + [81153] = "Armored Purple Bear", + [81154] = "Armored Black Bear", + [81155] = "Armored Red Bear", + [81156] = "Blackstone Dragon Guard", + [81158] = "Armored Frostmane Bear", + [81159] = "Tiny Shore Crab", + [81160] = "[Deprecated] Tome of Expertise: Bows", + [81167] = "Chieftain\'s Ceremonial Mantle", + [81181] = "Crab Shell", + [81182] = "Armored Darkspear Raptor", + [81183] = "Sunscale Hatchling", + [81185] = "Wildhammer Gryphon", + [81186] = "Armored Wildhammer Gryphon", + [81187] = "Torn Outline: Iron Lantern", + [81190] = "Red Shredder X-0524A", + [81191] = "Green Shredder X-0524B", + [81192] = "Black Scrapforged Mechaspider", + [81193] = "Blue Scrapforged Mechaspider", + [81194] = "Green Scrapforged Mechaspider", + [81195] = "Red Scrapforged Mechaspider", + [81196] = "Schematic: Goblin Radio", + [81198] = "Armored Thunder Bluff Kodo", + [81199] = "Ancestral War Totem", + [81201] = "Mag\'har Tabardd", + [81202] = "Moro\'gai Tabard", + [81203] = "Violet Eye Tabard", + [81204] = "Illidari Tabard", + [81205] = "Tabard of Discovery", + [81206] = "Mark of the Dark Ranger", + [81207] = "Dalaran Cloud Familiar", + [81208] = "Mark of Zul\'Farrak Curse", + [81209] = "Mark of Magic Addiction", + [81210] = "Mark of Death I", + [81211] = "Boots of Anvilmar", + [81212] = "Tunic of Anvilmar", + [81213] = "Pants of Anvilmar", + [81214] = "Girdle of Anvilmar", + [81215] = "Armguards of Anvilmar", + [81216] = "Fur-Lined Orcish Helm", + [81217] = "Protective Orcish Helm", + [81218] = "Chieftain\'s Ceremonial Harness", + [81219] = "Chieftain\'s Ceremonial Anklewraps", + [81220] = "Chieftain\'s Ceremonial Legwraps", + [81221] = "Chieftain\'s Ceremonial Belt", + [81222] = "Chieftain\'s Ceremonial Handwraps", + [81223] = "Chieftain\'s Ceremonial Headdress", + [81224] = "Dalaran Warhorse", + [81225] = "Armored Stormwind Warhorse", + [81226] = "Armored Brown Bear", + [81227] = "Striped Dawnsaber", + [81228] = "Mark of the Spirit Walker", + [81229] = "Mark of Death II", + [81230] = "Mark of Necromancy III", + [81231] = "Tamed Rak\'Shiri", + [81232] = "Azure Frostsaber", + [81233] = "Armored Ironforge Ram", + [81234] = "Brewfest Ram", + [81235] = "Vermilion Deathcharger", + [81236] = "Armored Grey Steed", + [81237] = "Chieftain\'s Kodo", + [81238] = "Turbo-Charged Flying Machine", + [81239] = "Happy Dalaran Cloud", + [81240] = "Dalaran Rain Cloud", + [81241] = "Armored Orgrimmar Wolf", + [81242] = "Cloudwing Hippogryph", + [81243] = "Beaky", + [81244] = "Armored Ebon Deathcharger", + [81245] = "Armored Crimson Deathcharger", + [81246] = "Armored Emerald Deathcharger", + [81247] = "Armored Ivory Deathcharger", + [81248] = "Finn the Shark", + [81250] = "Reinforced Black Pounder", + [81251] = "Reinforced Blue Pounder", + [81252] = "Reinforced Green Pounder", + [81253] = "Reinforced Red Pounder", + [81254] = "Water Waveling", + [81255] = "Mark of the Dreadskull Clan III", + [81256] = "Mark of the Grim Totem", + [81257] = "Basic Guide on Necromancy", + [81258] = "Spectral Cub", + [81260] = "Lavashard Axe", + [81261] = "Boots of Blistering Flames", + [81262] = "Core Forged Helmet", + [81263] = "Lost Dark Iron Chain", + [81264] = "Shoulderpads of True Flight", + [81265] = "Ashskin Belt", + [81266] = "Demonic Scimitar", + [81267] = "Flameskin Gloves", + [81268] = "Orb of the Hellcaller", + [81269] = "Araga\'s Tail", + [81270] = "Araga\'s Pelt", + [81271] = "Acolyte\'s Visage", + [81272] = "Dreadguard\'s Shawl", + [81275] = "Intact Pounder Mainframe", + [81276] = "Monster - Item, Sword - Kheyna", + [81280] = "Thorium Tuned Servo", + [81281] = "Perfect Golem Core", + [81282] = "Adamantite Rod", + [81283] = "Mr. Bigglesworth", + [81284] = "Zeppelin Cargo", + [81285] = "Barrel of Oil", + [81286] = "Freshly Cut Wood", + [81287] = "Smooth Ogre Brain", + [81288] = "Mechanist\'s Bonechopper Replica", + [81289] = "Dalaran Tabard", + [81290] = "Diathorus\' Claw", + [81291] = "Razlik\'s Tools", + [81292] = "Energized Scale", + [81293] = "Sealed Trade Goods", + [81294] = "Technician\'s Field Gloves", + [81295] = "Energy Resistant Belt", + [81296] = "Sparkwater Special", + [81297] = "Gnomeregan Gear", + [81298] = "\"Genuine\" Dragon\'s Claw", + [81299] = "\"Kilrogg\'s\" Eye", + [81300] = "Ancient Troll Tablet", + [81301] = "Tel\'Abim Sand", + [81302] = "Third War Footmans Insignia", + [81303] = "\'Shard of Elune\'", + [81304] = "\'Queen Azshara\'s Crown\'", + [81305] = "Rusty Coghammer", + [81306] = "Petrolspill Boots", + [81307] = "Cursed Tome", + [81308] = "Thunder Lizard\'s Hide", + [81309] = "Tinkerer\'s Mechanical Fire Flinger", + [81310] = "Backwater Bruiser\'s Cuirass", + [81311] = "Technician\'s Servoshield", + [81312] = "Goblin Surveying Gear", + [81313] = "Intense Ethereal Essence", + [81314] = "Skystormer Antler", + [81315] = "Prototype Shredder X0-1 Schematic", + [81316] = "Foe Chopper", + [81317] = "Shining Electro-lantern", + [81318] = "Megaflux Capacitor", + [81319] = "Razorblade Buckler", + [81320] = "Crackling Zapper", + [81321] = "Frix\'s Necklace", + [81322] = "Sack of Coins", + [81323] = "Intense Ethereal Essence", + [81324] = "Eldarath Ley-Shard", + [81325] = "Skystormer Axe", + [81326] = "Gazztoggle\'s Report", + [81327] = "Staff of Azsalus", + [81328] = "Energyseekers Cover", + [81329] = "Spark-Charged Cuirass", + [81330] = "Quick-Surge Gloves", + [81331] = "Rugnar\'s Letter", + [81332] = "Zuul\'s Note", + [81334] = "Salt Tooth\'s Head", + [81335] = "Mosshide Gnoll Armband", + [81336] = "Tarlo\'s Crate", + [81337] = "Rock Elemental Mastery: Compendium III", + [81338] = "Water-Weaving and Command", + [81339] = "Brightwater Cutlass", + [81340] = "Greenpaw Medallion", + [81341] = "Gowlfang\'s Vest", + [81342] = "Archivist Mantle", + [81343] = "Wisdom of the Sages", + [81344] = "Klix\'s Studded Ring", + [81345] = "Brightwater Logbook", + [81346] = "Agon Ore", + [81347] = "Fraggle\'s Lucky Boots", + [81348] = "Grizlik\'s Letter", + [81349] = "Squeak\'s Cage", + [81350] = "The Longshank", + [81351] = "Grips of the Scorpid King", + [81352] = "Executioner\'s Cowl", + [81353] = "Executioner\'s Cowl", + [81354] = "Mantle of Arcane Art", + [81355] = "Fallen Crusader Legguards", + [81356] = "Shackles of Arcana", + [81357] = "Karnag\'s Old Mug", + [81358] = "Ancient Thalassian Tablet", + [81360] = "Claw of Taranassz", + [81361] = "Dampener\'s Pauldrons", + [81362] = "Azure-Scale Sabatons", + [81363] = "Staff of Azure Domination", + [81364] = "Scale of Malygos", + [81365] = "Kargron\'s Leggings", + [81366] = "Blackrock Clan Mantle", + [81367] = "Band of the Old Horde", + [81368] = "Blackshackle Bracers", + [81369] = "Blade of the Blademaster", + [81370] = "Footpads of the Corruptor", + [81371] = "Gnarltwist Vest", + [81372] = "The Black Claw", + [81373] = "Shawl of the Satyr", + [81374] = "Trickster\'s Necklace", + [81375] = "Staff of the Lost Druid", + [81376] = "Moontouched Girdle", + [81377] = "Enfused Moon Crown", + [81378] = "Eveningstar Gloves", + [81379] = "Shard of the Moon", + [81380] = "Gordunni War Harness", + [81381] = "Isildien Ley-Stave", + [81382] = "Gordunni War Beads", + [81383] = "The Ogre Truncheon", + [81384] = "Grug\'thok\'s Sash", + [81390] = "Flickering Time Spark", + [81400] = "Sticky Ooze-Tar", + [81401] = "Mottled Talon", + [81402] = "Mountain Watcher\'s Crown", + [81403] = "Hargin\'s Keg", + [81404] = "Shipment of Lumber", + [81405] = "Stoutfist\'s Report", + [81406] = "Snowbeard\'s Report", + [81407] = "Heidi\'s Homecooked Pie", + [81408] = "Swiftgear\'s Engineering Schematics", + [81409] = "Barthos\' Engineering Notes", + [81410] = "Barthos\' Engineering Supplies", + [81411] = "Oscilation Inhibited Disk", + [81412] = "Robb Dursley\'s Sealed Report", + [81413] = "Martin Corinth\'s Information", + [81414] = "Martin\'s Unsent Letter", + [81415] = "Mathias\' Letter", + [81416] = "Valiant Medallion", + [81417] = "Ambient Talisman", + [81418] = "Magnificent Necklace", + [81500] = "Pendant of the Sunwell", + [81501] = "Amulet of Thas\'alah", + [81502] = "Sun-Blessed Shard of Renewal", + [81503] = "Thalassian Defender\'s Gorget", + [82001] = "Cape of Alexandros", + [82002] = "Tabard of the Ashbringer", + [82950] = "X-51 Arcane Ocular Implants", + [82951] = "X-52 Stealth Ocular Implants", + [82952] = "X-53 Ranger Ocular Implants", + [82953] = "X-54 Guardian Ocular Implants", + [82954] = "Explorer\'s League Signet Ring", + [82955] = "Explorer\'s League Cinch", + [83000] = "Chronoboon Displacer", + [83001] = "Supercharged Chronoboon Displacer", + [83002] = "Tome of Refreshment Ritual", + [83003] = "Grimoire of Ritual of Souls", + [83004] = "Conjured Mana Orange", + [83005] = "Perfect Obsidian Shard", + [83006] = "Well Essence", + [83007] = "Monster - Item, Frostmourne", + [83008] = "Thunder Ale Special Reserve", + [83009] = "Monster - Kael\'Thas Staff", + [83012] = "Sealed Missive to Stormwind", + [83013] = "Sealed Missive to Ironforge", + [83014] = "Sealed Missive to Darnassus", + [83015] = "Sealed Missive to Gnomeregan", + [83016] = "Sealed Response from Stormwind", + [83017] = "Sealed Response from Ironforge", + [83018] = "Sealed Response from Darnassus", + [83019] = "Sealed Response from Gnomeregan", + [83020] = "Well Sealed Parchment", + [83021] = "Sealed Response from Orgrimmar", + [83022] = "Sealed Response from Thunder Bluff", + [83023] = "Sealed Response from Darkspear Tribe", + [83024] = "Sealed Response from Undercity", + [83025] = "Kazgrim Goggle Scarf Test Helm 4", + [83026] = "Mellow Woolen Dress", + [83027] = "Kazgrim Mask Scarf Test Helm 1", + [83028] = "Shadow Lace Blouse", + [83029] = "Pink Lace Skirt", + [83030] = "Pink Lace Camisole", + [83036] = "Icy Lace Skirt", + [83037] = "Vibrant Spring Dress", + [83038] = "Kazgrim Test Goblin Pants", + [83039] = "Kazgrim Test Goblin Belt", + [83040] = "Kazgrim Test Goblin Gloves", + [83041] = "Shadow Lace Skirt", + [83042] = "Kazgrim Test Orc Belt 2", + [83043] = "Kazgrim Test Orc Belt 3", + [83045] = "Icy Lace Camisole", + [83046] = "Kazgrim Test Defias Boots", + [83047] = "Shadow Lace Bodice", + [83048] = "White Lace Skirt", + [83049] = "Kazgrim Test Troll Chest", + [83050] = "Kazgrim Test Troll Boots", + [83051] = "Kazgrim Test Troll Gloves", + [83052] = "Kazgrim Test Troll Feather Chest", + [83053] = "Kazgrim Test Troll Feather Boots", + [83055] = "Kazgrim Test Troll Feather Gloves", + [83056] = "Kazgrim Test Troll Pants", + [83060] = "Carved Ragetotem", + [83061] = "Carved Grimtotem", + [83062] = "Carved Runetotem", + [83063] = "Bloodhoof Totem", + [83064] = "Hexed Voodoo Pads", + [83065] = "Brave\'s Feathered Mantle", + [83066] = "Brave\'s Battle Harness", + [83067] = "Brave\'s Beaded Anklewraps", + [83068] = "Brave\'s War Leggings", + [83069] = "Brave\'s Leather Belt", + [83070] = "Brave\'s Fitted Gloves", + [83071] = "Brave\'s Tribal Headdress", + [83072] = "Seer\'s Feathered Mantle", + [83073] = "Seer\'s Mystical Harness", + [83074] = "Seer\'s Blessed Wrappings", + [83075] = "Seer\'s Ceremonial Loincloth", + [83076] = "Seer\'s Adorned Girdle", + [83077] = "Seer\'s Runed Handwraps", + [83078] = "Seer\'s Headdress of Visions", + [83079] = "Robes of the Archdruid", + [83080] = "Vestments of Druidic Power", + [83081] = "Vestments of Natural Prowess", + [83082] = "Enchanted Keeper\'s Robes", + [83090] = "Mark of the Dalaran Legacy", + [83091] = "Mark of Frost Affinity", + [83092] = "Mark of Nature I", + [83093] = "Monster - Staff2H, Outerend", + [83094] = "Monster - Rifle2H, Mechagnome", + [83095] = "Mechanical Head", + [83099] = "Mark of Nature II", + [83100] = "Mark of Nature III", + [83150] = "Big Turtle WoW Bear", + [83151] = "Black Spectral Tiger", + [83152] = "Green Spectral Tiger", + [83153] = "Ice Raptor", + [83154] = "Armored Ice Raptor", + [83155] = "Scarlet Charger", + [83156] = "Kul Tiran Warhorse", + [83157] = "Greymane Charger", + [83158] = "Brown Zhevra", + [83159] = "Grim Totem Kodo", + [83200] = "Verdant Cane", + [83201] = "Grizzlehide Brawlers", + [83202] = "Grizzlehide Belt", + [83203] = "Lifeflow Necklace", + [83204] = "Canopy Cloak", + [83205] = "Thornwood Claw", + [83206] = "Living Moss Gauntlets", + [83207] = "Feymist Robe", + [83208] = "Circlet of the Crescent Moon", + [83209] = "Sentinel\'s Moonslicer", + [83210] = "Crescent Sigil", + [83211] = "Moontouched Shoulders", + [83212] = "Felflame Shard", + [83213] = "Trickster\'s Wraps", + [83214] = "Betrayer", + [83215] = "Blackflame Wand", + [83216] = "Blood-Spattered Helm", + [83217] = "Ring of Demonic Fury", + [83218] = "Shadowthread Cloak", + [83219] = "Slayer\'s Edge", + [83220] = "Groveweald Tribal Necklace", + [83221] = "Thornroot Maul", + [83222] = "Groveweald Elder Cuffs", + [83223] = "Furbolg Battle Grips", + [83224] = "Horn of Engryss", + [83225] = "Bow of the Grove", + [83226] = "Bands of Ranathos", + [83227] = "Glademender\'s Robes", + [83228] = "Treads of the Keeper", + [83229] = "Circlet of Cenarius", + [83230] = "Warden\'s Vest", + [83231] = "Crescent Grove Staff", + [83232] = "Thornstrand Sash", + [83233] = "Charm of Dark Domination", + [83234] = "Voidclaw Choker", + [83235] = "Ancient Locking Mechanism", + [83236] = "Void-Linked Satchel of Goods", + [83237] = "Band of Ancient Lethality", + [83238] = "Ring of the Abyss Watcher", + [83239] = "Signet of the Voidwalker", + [83240] = "Ring of the Whispering Mist", + [83241] = "Freebooter\'s Footpads", + [83242] = "Freebooter\'s Pantaloons", + [83243] = "Freebooter\'s Loop", + [83244] = "Freebooter\'s Pirate Hat", + [83250] = "Grifter\'s Cover", + [83251] = "Grifter\'s Tunic", + [83253] = "Grifter\'s Belt", + [83254] = "Grifter\'s Gauntlets", + [83255] = "Grifter\'s Boots", + [83256] = "Explorer\'s League Wristprotectors", + [83257] = "Caer Darrow Reserve Rifle", + [83258] = "Coif of the Lost Soul", + [83259] = "Old Knighthood Blade", + [83260] = "Footman\'s Breastplate", + [83261] = "Tome of the First Scripture", + [83262] = "Scarlet Wanderer\'s Hammer", + [83263] = "Cuffs of the Justicar", + [83264] = "Ring of Sacrifice", + [83265] = "Demon Hunter\'s Blindfold", + [83266] = "Sandals of the Demon Stalker", + [83267] = "Bracers of the Demonic Hunt", + [83268] = "Demon Watcher\'s Ring", + [83269] = "Terrorblade Glaive", + [83270] = "Anniversary Gift (3 years online)", + [83271] = "Delicious Birthday Cake", + [83272] = "Mr. Tails", + [83273] = "The Dire Clasp", + [83274] = "Charmed Voodoo Collar", + [83275] = "Ashbeard\'s Lucky Telescope", + [83276] = "Lens of the Gorge Explorer", + [83277] = "Dark Iron Adventurer Shawl", + [83278] = "Ash Explorer Pauldrons", + [83279] = "Everflame Torch", + [83280] = "Diviner\'s Pantaloons", + [83281] = "Diviner\'s Robe", + [83282] = "Diviner\'s Cowl", + [83283] = "Diviner\'s Boots", + [83284] = "Diviner\'s Mitts", + [83285] = "Diviner\'s Epaulets", + [83286] = "Augerer\'s Hat", + [83287] = "Augerer\'s Robe", + [83288] = "Augerer\'s Boots", + [83289] = "Augerer\'s Gloves", + [83290] = "Augerer\'s Mantle", + [83291] = "Augerer\'s Trousers", + [83292] = "Pillager\'s Hood", + [83293] = "Pillager\'s Amice", + [83294] = "Pillager\'s Robe", + [83295] = "Pillager\'s Grips", + [83296] = "Pillager\'s Shoes", + [83297] = "Pillager\'s Pantaloons", + [83300] = "Lil\' K.T.", + [83301] = "Core Hound Pup", + [83302] = "Lil\' Ragnaros", + [83309] = "Empowering Herbal Salad", + [83400] = "Grifter\'s Cover", + [83401] = "Grifter\'s Tunic", + [83402] = "Grifter\'s Leggings", + [83403] = "Grifter\'s Belt", + [83404] = "Grifter\'s Gauntlets", + [83405] = "Grifter\'s Boots", + [83406] = "Kodo Hide Boots", + [83407] = "Kodo Hide Vest", + [83408] = "Kodo Hide Gloves", + [83409] = "Kodo Hide Leggings", + [83410] = "Steel Plate Boots", + [83411] = "Steel Plate Gauntlets", + [83412] = "Steel Plate Legguards", + [83413] = "Steel Plate Armor", + [83414] = "Steel Plate Pauldrons", + [83415] = "Steel Plate Barbute", + [83416] = "Breastplate of the Chromatic Flight", + [83417] = "Shoulderguards of the Lightbringer", + [83420] = "Bloody Gladiator\'s Sash", + [83421] = "Bloody Gladiator\'s Handwraps", + [83423] = "Bloody Gladiator\'s Britches", + [83424] = "Bloody Gladiator\'s Footwraps", + [83425] = "Bloody Gladiator\'s Wraps", + [83426] = "Bloody Gladiator\'s Vestments", + [83427] = "Bloody Gladiator\'s Amice", + [83428] = "Bloody Gladiator\'s Circlet", + [83429] = "Bloody Gladiator\'s Belt", + [83430] = "Bloody Gladiator\'s Gloves", + [83431] = "Bloody Gladiator\'s Pants", + [83432] = "Bloody Gladiator\'s Boots", + [83433] = "Bloody Gladiator\'s Bands", + [83434] = "Bloody Gladiator\'s Tunic", + [83435] = "Bloody Gladiator\'s Shoulders", + [83436] = "Bloody Gladiator\'s Headband", + [83440] = "Boneshatter Maul", + [83441] = "Splintercage Breastplate", + [83442] = "Miasma Walkers", + [83443] = "The Crown of Shattering", + [83444] = "Bonewall", + [83445] = "Marrowclaw Knuckles", + [83446] = "Venom\'s Touch", + [83447] = "Clutch of Hivaxxis", + [83448] = "Amice of the Webweaver", + [83449] = "Darksoul Band", + [83450] = "Soul of the Spider", + [83451] = "Cowl of Mivax", + [83452] = "Windbreaker", + [83453] = "Tome of Shivering Secrets", + [83454] = "Deathrune Leggings", + [83455] = "Frostchain Greaves", + [83456] = "Shroud of the Archlich", + [83457] = "Glacier Pendant", + [83458] = "Wormheart", + [83459] = "Consumer Shackles", + [83460] = "Deepearth Signet", + [83461] = "Cryptkeeper\'s Pike", + [83462] = "Cadaverlink Vest", + [83463] = "Rotworm Grips", + [83464] = "Mantle of Twisted Damnation", + [83465] = "Shroud of Haunted Torment", + [83466] = "Baneforged Leggings", + [83467] = "Cryptwatcher\'s Call", + [83468] = "Corpsekeeper\'s Charge", + [83469] = "Cryptstone Circlet", + [83470] = "Wraithscale Leggings", + [83471] = "Staff of Alarus", + [83472] = "Cover of the Necromancer", + [83475] = "Lovely Pink Pony", + [83476] = "Lovely Pink Furline", + [83477] = "Lovely Pink Talbuk", + [83478] = "Romantic Red Corset Dress", + [83479] = "Romantic Pink Corset Dress", + [83480] = "Tome of Infalliable Truth", + [83481] = "Failsafe Activation Key", + [83482] = "Distress Signal Pulser", + [83483] = "Crown of Divine Justice", + [83484] = "Desert Wind Talisman", + [83485] = "Fists of the Makers", + [83486] = "Sandstalker\'s Shroud", + [83487] = "Blade of the Fallen Star", + [83488] = "Uldum Construct Stompers", + [83490] = "Pillager Captain\'s Hat", + [83491] = "Swashbuckler Captain\'s Hat", + [83492] = "Raider Captain\'s Hat", + [83493] = "Enforcer Captain\'s Hat", + [83494] = "Captain\'s Overcoat", + [83495] = "Rogue Magus\' Boots", + [83496] = "Enforcer\'s Blackjack", + [83500] = "Plans: Untempered Runeblade", + [83501] = "Plans: Rune-Etched Greaves", + [83502] = "Plans: Rune-Etched Legplates", + [83503] = "Plans: Rune-Etched Breastplate", + [83504] = "Plans: Rune-Etched Crown", + [83505] = "Plans: Rune-Etched Mantle", + [83506] = "Plans: Rune-Etched Grips", + [83507] = "Plans: Bloodstone Warblade", + [83510] = "Schematic: Portable Wormhole Generator: Stormwind", + [83511] = "Schematic: Portable Wormhole Generator: Orgrimmar", + [83513] = "Insomnius\' Wrath", + [83514] = "Hermit\'s Mantle", + [83515] = "Band of the Exile", + [83517] = "Balanced Light Crossbow", + [83518] = "Plans: Imperial Plate Gauntlets", + [83519] = "Plans: Lordaeron Breastplate", + [83520] = "Marshmallow", + [83530] = "Turban of Veiled Mists", + [83531] = "Clutch of Mending Winds", + [83532] = "Bracers of the Crescent Moon", + [83533] = "Pattern: Red Dragonscale Boots", + [83534] = "Pattern: Dragonscale Leggings", + [83535] = "Plans: Bloodletter Razor", + [83536] = "Pattern: Shadowskin Boots", + [83537] = "Pattern: Red Dragonscale Shoulders", + [83538] = "Pattern: Red Dragonscale Leggings", + [83540] = "Summer Collection of Unseen Fashion: Shoulders", + [83541] = "Hidden Leather Shoulders", + [83542] = "Hidden Mail Shoulders", + [83543] = "Hidden Plate Shoulders", + [83544] = "Pattern: Stormscale Leggings", + [83545] = "Pattern: Robe of Sacrifice", + [83546] = "Pattern: Verdant Dreamer\'s Breastplate", + [83547] = "Plans: Pauldron of Deflection", + [83548] = "Plans: Dream\'s Herald", + [83549] = "Plans: Frostbound Slasher", + [83550] = "Primordial Flame", + [83551] = "Evershifting Stone", + [83552] = "Unmelting Ice", + [83553] = "Unyielding Gust", + [83554] = "Abyssal Flame", + [83555] = "Abyssal Slate", + [83556] = "Abyssal Wind", + [83557] = "Abyssal Wave", + [83558] = "Pattern: Flamewrath Leggings", + [83559] = "Pattern: Earthguard Tunic", + [83560] = "Pattern: Windwalker Boots", + [83561] = "Pattern: Depthstalker Helm", + [83562] = "Skaldrenox\'s Rage", + [83563] = "Pearl of the Tides", + [83564] = "Tempest\'s Rage", + [83565] = "Blackstone Crown", + [83570] = "Technique: Die by the Sword", + [83571] = "Codex: Shadow Mend", + [83572] = "Grimoire of Demon Gate", + [83573] = "Book of Shred VI", + [83574] = "Book of Wrath IX", + [83575] = "Codex of Smite IX", + [83584] = "Grimoire of Avoidance", + [84000] = "Pulseseeker", + [84001] = "Rose of Sanguine Rage", + [84002] = "Headguard of the Scarlet Bastion", + [84003] = "Signet of the Broken Oath", + [84004] = "Subjugator\'s Boots", + [84005] = "Blindfold of the Scarlet Marksman", + [84006] = "Banner of the Scarlet Crusade", + [84010] = "Plans: Hateforge Belt", + [84011] = "Plans: Hateforge Boots", + [84012] = "Plans: Hateforge Grips", + [84013] = "Plans: Hateforge Cuirass", + [84014] = "Plans: Hateforge Helmet", + [84015] = "Plans: Hateforge Leggings", + [84017] = "Monster - Fist Weapon, Zul\'jin ", + [84030] = "Gauntlet of a Thousand Cuts", + [84031] = "Consecrated Sigil", + [84032] = "Kilt of the Devoted", + [84033] = "Bulwark of the Light", + [84034] = "Girdle of the Insane Zealot", + [84035] = "Fists of the Red Dawn", + [84036] = "Loop of Acceleration", + [84037] = "Undercity Bucket Hat", + [84038] = "Mini Krampus", + [84039] = "Tinsel\'s Carrot", + [84040] = "Le Fishe Au Chocolat", + [84041] = "Gilneas Hot Stew", + [84500] = "Lucid Nightmare", + [84501] = "Corrupted Reed", + [84502] = "Verdant Dreamer\'s Boots", + [84503] = "Nature\'s Gift", + [84504] = "Lasher\'s Whip", + [84505] = "Infused Wildthorn Bracers", + [84506] = "Sleeper\'s Ring", + [84507] = "Barkskin Fisher", + [84509] = "Emerald Rod", + [84600] = "Blackthorn\'s Blackjack", + [84601] = "Grass of Eternity", + [84602] = "Consecrated Caduceus", + [84603] = "Rod of the Churning Hourglass", + [84604] = "Aurastone Bracers", + [84605] = "Mysterious Floater", + [91761] = "Black Rogue Mask", + [91762] = "Wavecrest Scale", + [91763] = "Pattern: Boots of the Wind", + [91765] = "Rounded Petrified Bark", + [91770] = "Taming Rod", + [91771] = "Taming Rod", + [91772] = "Taming Rod", + [91773] = "Taming Rod", + [91774] = "Taming Rod", + [91775] = "Taming Rod", + [91777] = "Araxxna\'s Husk", + [91780] = "Lovely Green Shirt", + [91781] = "Carefully Wrapped Gift", + [91785] = "Carefully Wrapped Gift", + [91790] = "Dragon\'s Year Gift", + [91791] = "Dragon\'s Year Shirt", + [91792] = "Tome of Disguise: Tiny Celestial Dragon", + [91793] = "Mysterious Red Envelope", + [91794] = "Lunar Festival Lantern", + [91795] = "Dragon Firework", + [91796] = "Recipe: Transmute Elemental Earth", + [91797] = "Recipe: Transmute Elemental Water", + [92000] = "Tinyhoof\'s Shrinking Balm", + [92001] = "Tome of Teleportation: Theramore", + [92002] = "Tome of Portals: Theramore", + [92003] = "Tome of Teleportation: Stonard", + [92004] = "Tome of Portals: Stonard", + [92005] = "Invocation of Shattering", + [92006] = "Invocation of Greater Protection", + [92007] = "Invocation of Expansive Mind", + [92008] = "Invocation of Greater Arcane Fortitude", + [92010] = "Giant Noblegarden Egg", + [92011] = "Lavender Spring Shirt", + [92012] = "Mint Spring Shirt", + [92013] = "Pink Spring Shirt", + [92014] = "Spring Chemise", + [92015] = "Traditional Spring Fan", + [92016] = "Spotted Rabbit", + [92017] = "White Riding Talbuk", + [92018] = "Dark Riding Talbuk", + [92019] = "Green Spring Shirt ", + [92020] = "Spawn of Cla\'ckora", + [92025] = "Tome of Polymorph: Rodent", + [92030] = "Tome of Disguise: Felguard", + [92031] = "Tome of Disguise: Prismatic Dragonkin", + [92032] = "Tome of Disguise: Chromatic Dragonkin", + [92033] = "Tome of Disguise: Infinite Dragonkin", + [92034] = "Tome of Disguise: Bronze Dragonkin", + [92035] = "Tome of Disguise: Blue Dragonkin", + [92036] = "Tome of Disguise: Murloc", + [92037] = "Tome of Disguise: Gilnean Worgen", + [92038] = "Tome of Disguise: Zombie", + [92039] = "Tome of Disguise: Ghoul", + [92040] = "Tome of Disguise: Scourge Mage", + [92041] = "Tome of Disguise: Incubus", + [92042] = "Glyph of the Autumn Treant", + [92043] = "Glyph of the Golden Treant", + [92044] = "Glyph of the Withered Treant", + [92045] = "Recipe: Empowering Herbal Salad", + [92046] = "Medivh\'s Ghostly Dust", + [92050] = "Celestial Steed", + [92051] = "Invincible", + [92052] = "Crimson Spectral Tiger", + [92053] = "Traveler\'s Backpack", + [92054] = "Thalassian Emberfox", + [92055] = "Glyph of the Beastkeeper", + [92060] = "Delicious Mooncake", + [92061] = "Lantern of the Autumn Moon", + [92062] = "Glyph of the Artisan", + [92070] = "Anniversary Gift (1 year in Asia)", + [92071] = "Mysterious Warp Stalker", + [92072] = "Riding Green Drake", + [92073] = "Riding Red Drake", + [92074] = "Brave Adventurer\'s Shirt", + [92075] = "Jingling Sack", + [92076] = "Adventurer\'s Lucky Tabard", + [92077] = "Token of Accelerated Learning", + [92078] = "Token of Esteemed Favor", + [92079] = "Traveler\'s Sealed Cache", + [92080] = "Molten Corehound", + [92081] = "Tel\'Abim Gorilla", + [92082] = "Felforged Dreadhound", + [92090] = "Dream Treasure", + [92110] = "Epic Noblegarden Egg", + [93061] = "Glyph of the Wee Warlord", + [93075] = "Tome of the Wild Ride", + [93080] = "Sack of Winter Veil Presents", + [93088] = "Red Serpent Warbrands", + [93090] = "Wood Snake\'s Year Shirt", + [93091] = "Flamewoven Ceremonial Mask", + [93092] = "Wood Snake\'s Year Gift", + [93093] = "Snake Year Auspicious Treasure Box", + [93094] = "Crisantine\'s Wedding Ring", + [93095] = "Emmilove\'s Wedding Ring", + [93096] = "Big Wood Snake\'s Year Gift", + [93098] = "Bel\'dorei Tabard", + [93099] = "Tabard of Defender", + [93100] = "Tabard of the Sunsworn", + [93116] = "Sons of Lothar Tabard", +} + diff --git a/RelationshipsQuestAndItemBrowserData_Objects.lua b/RelationshipsQuestAndItemBrowserData_Objects.lua new file mode 100644 index 0000000..a67fe39 --- /dev/null +++ b/RelationshipsQuestAndItemBrowserData_Objects.lua @@ -0,0 +1,229780 @@ +-- Relationships Quest And Item Browser bundled quest database. +-- Source data: pfQuest and pfQuest-turtle (MIT). + +-- Source: https://raw.githubusercontent.com/shagu/pfQuest/master/db/enUS/objects.lua +RelationshipsQuestAndItemBrowserData["objects"]["enUS"] = { + [4] = "Bonfire Damage", + [31] = "Old Lion Statue", + [32] = "Sunken Chest", + [33] = "Locked Chest", + [34] = "Old Jug", + [35] = "Captain\'s Footlocker", + [36] = "Broken Barrel", + [37] = "Eliza\'s Tombstone", + [41] = "Ambassador\'s Locker", + [47] = "Wanted: Lieutenant Fangore", + [52] = "Fall of Gurubashi", + [54] = "The Emperor\'s Tomb", + [55] = "A half-eaten body", + [56] = "Rolf\'s corpse", + [57] = "Moon Over the Vale", + [58] = "Gri\'lek the Wanderer", + [59] = "Mound of loose dirt", + [60] = "Wanted: Gath\'Ilzogg", + [61] = "A Weathered Grave", + [68] = "Wanted Poster", + [76] = "An Empty Jar", + [80] = "Old Coast Road", + [81] = "Sentinel Hill", + [82] = "Elwynn Forest", + [83] = "Jangolode Mine", + [84] = "Old Coast Road", + [85] = "Duskwood", + [86] = "Elwynn Forest", + [87] = "Moonbrook", + [88] = "Duskwood", + [89] = "Northshire Abbey", + [90] = "Stormwind City", + [91] = "Northshire Abbey", + [92] = "Stormwind City", + [93] = "Westbrook Garrison", + [94] = "Westfall", + [95] = "Eastvale Logging Camp", + [96] = "Redridge", + [97] = "Goldshire", + [98] = "Stormwind City", + [99] = "Redridge", + [100] = "Eastvale Logging Camp", + [101] = "Stranglethorn", + [102] = "Raven Hill", + [103] = "Deadwind Pass", + [104] = "Redridge", + [105] = "Stranglethorn", + [106] = "Westfall", + [107] = "Darkshire", + [108] = "Raven Hill", + [109] = "Westfall", + [110] = "Stranglethorn", + [111] = "Raven Hill", + [112] = "Darkshire", + [113] = "Duskwood", + [114] = "Lakeshire", + [115] = "Elwynn", + [116] = "Stonewatch Keep", + [117] = "Lakeshire", + [118] = "Stonewatch Keep", + [119] = "Abercrombie\'s Crate", + [121] = "Duskwood", + [122] = "Sentinel Hill", + [123] = "Elwynn Forest", + [124] = "Moonbrook", + [167] = "Abercrombie\'s Crate", + [249] = "Crate of Foodstuffs", + [251] = "Research Equipment", + [254] = "Wanted: Chok\'Sul", + [256] = "WANTED", + [257] = "Suspicious Barrel", + [259] = "Half-buried Barrel", + [261] = "Damaged Crate", + [263] = "Kurzen Supplies", + [264] = "Kurzen Supplies", + [269] = "Guarded Thunder Ale Barrel", + [270] = "Unguarded Thunder Ale Barrel", + [271] = "Miners\' League Crates", + [272] = "MacGrann\'s Meat Locker", + [276] = "Shimmerweed Basket", + [287] = "Bookie Herod\'s Records", + [288] = "Bookie Herod\'s Strongbox", + [290] = "Furlbrow\'s Wardrobe", + [298] = "Thelsamar", + [299] = "Searing Gorge", + [301] = "Wetlands", + [302] = "Dun Morogh", + [303] = "Dun Morogh", + [304] = "Wetlands", + [305] = "Thelsamar", + [306] = "Thelsamar", + [307] = "Searing Gorge", + [308] = "Dun Morogh", + [309] = "Anvilmar", + [310] = "Ironforge", + [311] = "Loch Modan", + [312] = "Kharanos", + [313] = "Anvilmar", + [314] = "Ironforge", + [315] = "Ironforge", + [316] = "Kharanos", + [317] = "Anvilmar", + [318] = "Loch Modan", + [321] = "Tear of Tilloa", + [324] = "Small Thorium Vein", + [331] = "Loose Soil", + [333] = "Ancient Relic", + [334] = "Ancient Relic", + [337] = "Water Pitcher", + [369] = "Thunder Ale", + [372] = "Battleground Shield", + [375] = "Tirisfal Pumpkin", + [376] = "Dun Modr", + [377] = "Menethil", + [378] = "Loch Modan", + [379] = "Loch Modan", + [380] = "Menethil", + [381] = "Grim Batol", + [382] = "Dun Modr", + [386] = "Metal Mace", + [387] = "Loch Modan", + [388] = "Arathi Highlands", + [389] = "Dun Modr", + [711] = "Wanted!", + [759] = "The Holy Spring", + [965] = "Black Smoke - scale 2", + [1162] = "Menethil Harbor", + [1165] = "Gunther\'s Books", + [1166] = "Alexston\'s Chest", + [1557] = "Lillith\'s Dinner Table", + [1558] = "Candle of Beckoning", + [1560] = "Storage Chest", + [1561] = "Sealed Crate", + [1562] = "Marshal Haggard\'s Chest", + [1564] = "Ironforge", + [1565] = "Loch Modan", + [1566] = "Kharanos", + [1567] = "Loch Modan", + [1568] = "Loch Modan", + [1569] = "Ironforge", + [1570] = "Kharanos", + [1571] = "Dusty Spellbooks", + [1572] = "Kharanos", + [1573] = "Kharanos", + [1585] = "Explosive Charge", + [1586] = "Crate of Candles", + [1587] = "Turkey Leg", + [1593] = "Corpse Laden Boat", + [1594] = "Berard\'s Bookshelf", + [1595] = "Westbrook Garrison", + [1596] = "Westfall", + [1597] = "Stormwind City", + [1598] = "Goldshire", + [1599] = "Shallow Grave", + [1604] = "Black Smoke Emitter", + [1605] = "White Smoke Emitter", + [1607] = "Big Flame Emitter", + [1609] = "Dragonmaw Catapult", + [1610] = "Incendicite Mineral Vein", + [1617] = "Silverleaf", + [1618] = "Peacebloom", + [1619] = "Earthroot", + [1620] = "Mageroyal", + [1621] = "Briarthorn", + [1622] = "Bruiseweed", + [1623] = "Wild Steelbloom", + [1624] = "Kingsblood", + [1627] = "Dalaran Crate", + [1628] = "Grave Moss", + [1630] = "Brill", + [1631] = "Agamand Mills", + [1632] = "Brill", + [1633] = "Brill", + [1634] = "Agamand Mills", + [1638] = "Deathknell", + [1639] = "Deathknell", + [1643] = "Brill", + [1644] = "Agamand Mills", + [1645] = "Deathknell", + [1646] = "Silverpine", + [1647] = "Deathknell", + [1648] = "Agamand Mills", + [1649] = "Monastery", + [1650] = "Plaguelands", + [1651] = "Deathknell", + [1652] = "Brill", + [1653] = "Silverpine", + [1654] = "Silverpine", + [1655] = "Monastery", + [1656] = "Plaguelands", + [1657] = "Monastery", + [1658] = "Brill", + [1659] = "Plaguelands", + [1660] = "Silverpine", + [1661] = "The Undercity", + [1662] = "The Undercity", + [1663] = "The Undercity", + [1664] = "The Undercity", + [1665] = "The Undercity", + [1666] = "The Undercity", + [1667] = "Incendicite Mineral Vein", + [1668] = "Dun Algaz", + [1669] = "Dun Algaz", + [1673] = "Fel Cone", + [1674] = "Gnomeregan", + [1675] = "The Sepulcher", + [1676] = "Pyrewood Village", + [1677] = "Tirisfal", + [1678] = "Ambermill", + [1679] = "Pyrewood Village", + [1680] = "Shadowfang Keep", + [1681] = "Tirisfal", + [1685] = "Forge", + [1686] = "The Sepulcher", + [1687] = "The Sepulcher", + [1688] = "Tirisfal", + [1689] = "Ambermill", + [1690] = "Pyrewood", + [1691] = "Shadowfang Keep", + [1692] = "Deep Elem Mine", + [1693] = "Ambermill", + [1694] = "The Sepulcher", + [1695] = "Pyrewood Village", + [1696] = "Shadowfang Keep", + [1697] = "Tirisfal", + [1698] = "Gilneas", + [1699] = "Hillsbrad Plains", + [1700] = "Pyrewood Village", + [1701] = "Shadowfang Keep", + [1702] = "The Sepulcher", + [1703] = "Gilneas", + [1704] = "Hillsbrad Plains", + [1705] = "Pyrewood Village", + [1706] = "Shadowfang Keep", + [1707] = "Gilneas", + [1708] = "Ambermill", + [1709] = "The Sepulcher", + [1710] = "Hillsbrad Foothills", + [1711] = "Gilneas", + [1712] = "Ambermill", + [1713] = "Hillsbrad Plains", + [1714] = "Pyrewood Village", + [1715] = "Shadowfang Keep", + [1720] = "Stanley\'s Dish", + [1721] = "Locked ball and chain", + [1722] = "Locked ball and chain", + [1723] = "Mudsnout Blossom", + [1726] = "Missing: Corporal Keeshan", + [1727] = "Keg of Shindigger Stout", + [1728] = "Dusty Rug", + [1729] = "Tainted Keg", + [1730] = "Tainted Keg Smoke", + [1731] = "Copper Vein", + [1732] = "Tin Vein", + [1733] = "Silver Vein", + [1734] = "Gold Vein", + [1735] = "Iron Deposit", + [1736] = "Shipment of Iron", + [1738] = "Syndicate Documents", + [1739] = "Syndicate Documents", + [1740] = "Syndicate Documents", + [1743] = "Forge", + [1744] = "Anvil", + [1745] = "Forge", + [1748] = "Anvil", + [1749] = "Forge", + [1752] = "Anvil", + [1753] = "Forge", + [1754] = "Anvil", + [1755] = "Forge", + [1759] = "Hillsbrad Town Registry", + [1760] = "Weathered Bookcase", + [1761] = "Hillsbrad Proclamation", + [1763] = "WANTED", + [1764] = "Locked ball and chain", + [1765] = "Worn Wooden Chest", + [1766] = "Fire", + [1767] = "Helcular\'s Grave", + [1768] = "Flame of Azel", + [1769] = "Flame of Veraz", + [1770] = "Flame of Uzel", + [1771] = "Southshore", + [1772] = "Tarren Mill", + [1773] = "Hillsbrad", + [1774] = "Silverpine Forest", + [1775] = "Tarren Mill", + [1776] = "Durnholde Keep", + [1777] = "Silverpine Forest", + [1778] = "Hillsbrad", + [1779] = "Southshore", + [1780] = "Tarren Mill", + [1781] = "Alterac Mountains", + [1782] = "Hillsbrad", + [1783] = "Southshore", + [1784] = "Dun Garok", + [1785] = "Durnholde Keep", + [1786] = "Dun Garok", + [1787] = "Arathi Highlands", + [1788] = "Southshore", + [1789] = "Tarren Mill", + [1790] = "Durnholde Keep", + [1791] = "Arathi Highlands", + [1792] = "Durnholde Keep", + [1793] = "Dun Garok", + [1794] = "Tarren Mill", + [1795] = "Southshore", + [1796] = "Anvil", + [1797] = "Forge", + [1798] = "Campfire", + [1799] = "Campfire", + [1801] = "Campfire", + [1802] = "Campfire", + [1803] = "Campfire", + [1804] = "Campfire", + [1805] = "Campfire", + [1806] = "Campfire", + [1807] = "Campfire", + [1808] = "Campfire", + [1809] = "Campfire", + [1810] = "Campfire", + [1811] = "Campfire", + [1812] = "Campfire", + [1813] = "Campfire", + [1814] = "Campfire", + [1815] = "Campfire", + [1816] = "Campfire", + [1817] = "Campfire", + [1818] = "Campfire", + [1819] = "Campfire", + [1820] = "Campfire", + [1821] = "Campfire", + [1822] = "Campfire", + [1824] = "Campfire", + [1825] = "Campfire", + [1826] = "Campfire", + [1827] = "Campfire", + [1828] = "Campfire", + [1829] = "Campfire", + [1830] = "Campfire", + [1831] = "Bonfire", + [1832] = "Bonfire", + [1833] = "Campfire", + [1834] = "Campfire", + [1835] = "Campfire", + [1836] = "Campfire", + [1837] = "Campfire", + [1838] = "Campfire", + [1839] = "Campfire", + [1840] = "Campfire", + [1841] = "Campfire", + [1842] = "Campfire", + [1843] = "Campfire", + [1844] = "Campfire", + [1845] = "Campfire", + [1846] = "Campfire", + [1847] = "Campfire", + [1848] = "Campfire", + [1849] = "Campfire", + [1850] = "Campfire", + [1851] = "Campfire", + [1852] = "Campfire", + [1853] = "Campfire", + [1854] = "Campfire", + [1855] = "Campfire", + [1856] = "Campfire", + [1857] = "Campfire", + [1858] = "Campfire", + [1859] = "Campfire", + [1860] = "Campfire", + [1864] = "Campfire", + [1865] = "Campfire", + [1866] = "Campfire", + [1867] = "Campfire", + [1868] = "Campfire", + [1869] = "Campfire", + [1870] = "Campfire", + [1871] = "Campfire", + [1872] = "Campfire", + [1873] = "Campfire", + [1874] = "Campfire", + [1875] = "Campfire", + [1876] = "Campfire", + [1877] = "Campfire", + [1878] = "Campfire", + [1879] = "Campfire", + [1880] = "Campfire", + [1881] = "Campfire", + [1882] = "Campfire", + [1883] = "Bonfire", + [1884] = "Bonfire", + [1885] = "Bonfire", + [1886] = "Bonfire", + [1887] = "Bonfire", + [1888] = "Campfire", + [1889] = "Campfire", + [1890] = "Campfire", + [1891] = "Campfire", + [1892] = "Campfire", + [1893] = "Campfire", + [1894] = "Campfire", + [1895] = "Campfire", + [1896] = "Forge", + [1897] = "Anvil", + [1898] = "Campfire", + [1901] = "Campfire", + [1902] = "Campfire", + [1903] = "Campfire", + [1904] = "Campfire", + [1905] = "Campfire", + [1906] = "Campfire", + [1908] = "Campfire", + [1909] = "Campfire", + [1911] = "Campfire", + [1912] = "Campfire", + [1914] = "Campfire", + [1915] = "Cooking Fire", + [1916] = "Campfire", + [1917] = "Campfire", + [1921] = "Campfire", + [1922] = "Campfire", + [1923] = "Campfire", + [1926] = "Campfire", + [1927] = "Campfire", + [1928] = "Bonfire", + [1930] = "Campfire", + [1931] = "Campfire", + [1932] = "Campfire", + [1935] = "Campfire", + [1936] = "Campfire", + [1937] = "Campfire", + [1938] = "Campfire", + [1939] = "Campfire", + [1940] = "Campfire", + [1941] = "Campfire", + [1942] = "Campfire", + [1943] = "Campfire", + [1944] = "Campfire", + [1945] = "Campfire", + [1946] = "Campfire", + [1947] = "Campfire", + [1948] = "Campfire", + [1949] = "Campfire", + [1950] = "Campfire", + [1951] = "Campfire", + [1952] = "Campfire", + [1953] = "Campfire", + [1954] = "Campfire", + [1957] = "Campfire", + [1958] = "Campfire", + [1959] = "Campfire", + [1960] = "Campfire", + [1961] = "Campfire", + [1962] = "Campfire", + [1964] = "Campfire", + [1965] = "Campfire", + [1967] = "Firepit", + [1968] = "Campfire", + [1969] = "Campfire", + [1970] = "Campfire", + [1971] = "Campfire", + [1972] = "Campfire", + [1973] = "Campfire", + [1975] = "Campfire", + [1976] = "Campfire", + [1977] = "Campfire", + [1979] = "Campfire", + [1981] = "Campfire", + [1984] = "Campfire", + [1985] = "Campfire", + [1986] = "Campfire", + [1987] = "Campfire", + [1988] = "Campfire", + [1989] = "Campfire", + [1990] = "Campfire", + [1991] = "Campfire", + [1992] = "Campfire", + [1993] = "Campfire", + [1994] = "Campfire", + [1995] = "Campfire", + [1996] = "Campfire", + [1997] = "Campfire", + [1998] = "Campfire", + [1999] = "Campfire", + [2000] = "Campfire", + [2001] = "Campfire", + [2002] = "Campfire", + [2003] = "Campfire", + [2004] = "Smoldering Fire", + [2005] = "Campfire", + [2006] = "Campfire", + [2007] = "Campfire", + [2008] = "Dangerous!", + [2010] = "Anvil", + [2014] = "Anvil", + [2015] = "Forge", + [2016] = "Tarren Mill", + [2017] = "Alterac Mountains", + [2018] = "Alterac City", + [2019] = "Strahnbrad", + [2020] = "Durnholde Keep", + [2021] = "Hillsbrad", + [2022] = "Southshore", + [2023] = "Strahnbrad", + [2024] = "Andorhal", + [2025] = "Alterac City", + [2026] = "Hillsbrad Foothills", + [2027] = "Andorhal", + [2028] = "Strahnbrad", + [2029] = "Alterac City", + [2030] = "Alterac City", + [2031] = "Andorhal", + [2032] = "Warning!!!! Plaguelands", + [2033] = "Agamand Mills", + [2034] = "Brill", + [2035] = "Deathknell", + [2036] = "Agamand Mills", + [2037] = "Deathknell", + [2038] = "Brill", + [2039] = "Hidden Strongbox", + [2040] = "Mithril Deposit", + [2041] = "Liferoot", + [2042] = "Fadeleaf", + [2043] = "Khadgar\'s Whisker", + [2044] = "Wintersbite", + [2045] = "Stranglekelp", + [2046] = "Goldthorn", + [2047] = "Truesilver Deposit", + [2048] = "Hillsbrad Foothills", + [2049] = "Gilneas", + [2050] = "Pyrewood Village", + [2051] = "Shadowfang Keep", + [2052] = "Ambermill", + [2054] = "Tin Vein", + [2055] = "Copper Vein", + [2056] = "Campfire", + [2057] = "Campfire", + [2059] = "A Dwarven Corpse", + [2061] = "Campfire", + [2062] = "Campfire", + [2066] = "Bonfire Damage", + [2068] = "Pupellyverbos Port", + [2076] = "Bubbling Cauldron", + [2082] = "Uther the Lightbringer", + [2083] = "Bloodsail Correspondence", + [2084] = "Musquash Root", + [2086] = "Bloodsail Charts", + [2087] = "Bloodsail Orders", + [2096] = "Trade District", + [2098] = "Cathedral Square", + [2099] = "Cathedral Square", + [2100] = "Old Town", + [2101] = "Mage Quarter", + [2102] = "Cathedral Square", + [2105] = "Cathedral Square", + [2106] = "Cathedral Square", + [2108] = "Trade District", + [2109] = "Fragrant Flowers", + [2110] = "Cathedral Square", + [2111] = "Trade District", + [2112] = "Old Town", + [2113] = "Old Town", + [2115] = "Trade District", + [2116] = "Cathedral Square", + [2117] = "Stormwind Keep", + [2119] = "Old Town", + [2120] = "Stormwind Keep", + [2122] = "Trade District", + [2123] = "Old Town", + [2124] = "Mage Quarter", + [2125] = "Trade District", + [2127] = "Mage Quarter", + [2128] = "Trade District", + [2129] = "Cathedral Square", + [2130] = "The Wine Cask", + [2131] = "Cathedral Square", + [2133] = "Trade District", + [2134] = "Cathedral Square", + [2136] = "Old Town", + [2138] = "The Empty Quiver", + [2139] = "Weller\'s Arsenal", + [2140] = "Cathedral Square", + [2141] = "Mage Quarter", + [2142] = "Goldshire", + [2143] = "Old Town", + [2145] = "Stormwind Counting House", + [2146] = "Everyday Merchandise", + [2148] = "The Cheese Cutters", + [2149] = "The Seven Deadly Venoms", + [2150] = "The Silver Shield", + [2151] = "Thane\'s Boots and Shoulderpads", + [2152] = "Pig and Whistle Tavern", + [2153] = "Heavy Handed Weapons", + [2154] = "The Protective Hide", + [2155] = "Honest Blades", + [2156] = "Limited Immunity", + [2157] = "Just Maces", + [2158] = "Righteous Plates", + [2159] = "City Hall", + [2160] = "The Argent Dawn", + [2161] = "Duncan\'s Textiles", + [2162] = "Stormwind Staves", + [2163] = "Essential Components", + [2164] = "The Slaughtered Lamb", + [2165] = "Pyrotechnics", + [2166] = "Alchemy Needs", + [2167] = "Ancient Curios", + [2169] = "The Blue Recluse", + [2171] = "Mage Quarter", + [2173] = "Cathedral Square", + [2175] = "Cathedral Square", + [2176] = "Trade District", + [2177] = "The Finest Thread", + [2178] = "Mage Quarter", + [2179] = "Cathedral Square", + [2181] = "Mage Quarter", + [2182] = "Trade District", + [2186] = "Cathedral Square", + [2187] = "Trade District", + [2188] = "Mage Quarters", + [2189] = "Old Town", + [2190] = "Cathedral Square", + [2191] = "Trade District", + [2289] = "Ruined Lifeboat", + [2332] = "Barbequed Buzzard Wings", + [2333] = "Stranglevine Wine", + [2334] = "campfire", + [2335] = "Bonfire", + [2336] = "Campfire", + [2371] = "Headhunter Skull", + [2413] = "Wooden Chair", + [2414] = "Need Name", + [2489] = "Chair", + [2551] = "Boiled Skull", + [2552] = "Cauldron Steam", + [2553] = "A Soggy Scroll", + [2554] = "Cortello\'s Riddle", + [2555] = "Musty Scroll", + [2556] = "Cortello\'s Treasure", + [2558] = "Test", + [2560] = "Half-Buried Bottle", + [2561] = "Freezing Trap", + [2562] = "Baked Bread", + [2563] = "Altar of the Tides - Focused", + [2572] = "Anvil", + [2573] = "Forge", + [2574] = "Anvil", + [2575] = "Forge", + [2576] = "Altar of the Tides", + [2649] = "Anvil", + [2650] = "Forge", + [2652] = "Ebenezer Rustlocke\'s Corpse", + [2653] = "Lesser Bloodstone Deposit", + [2656] = "Waterlogged Letter", + [2657] = "Legends of the Earth", + [2658] = "Bonfire", + [2661] = "Campfire", + [2663] = "Campfire", + [2664] = "Campfire", + [2665] = "Bonfire", + [2666] = "Bonfire", + [2667] = "Campfire", + [2670] = "Wetlands", + [2672] = "Stromgarde", + [2673] = "Thandol Span", + [2674] = "Wetlands", + [2675] = "Stromgarde", + [2676] = "Thandol Span", + [2677] = "Wetlands", + [2678] = "Hillsbrad Plains", + [2679] = "Stromgarde", + [2680] = "Hammerfall", + [2681] = "Hammerfall", + [2682] = "Stromgarde", + [2683] = "Hammerfall", + [2684] = "Stromgarde", + [2685] = "Refuge Pointe", + [2687] = "Bottle", + [2688] = "Keystone", + [2689] = "Stone of West Binding", + [2690] = "Stone of Outer Binding", + [2691] = "Stone of East Binding", + [2695] = "Book", + [2701] = "Iridescent Shards", + [2702] = "Stone of Inner Binding", + [2703] = "Trollbane\'s Tomb", + [2704] = "Cache of Explosives", + [2705] = "Shards of Myzrael", + [2707] = "Maiden\'s Folly Charts", + [2708] = "Spirit of Silverpine Charts", + [2709] = "Maiden\'s Folly Log", + [2710] = "Spirit of Silverpine Log", + [2711] = "Charging Stone", + [2712] = "Calcified Elven Gem", + [2713] = "Wanted Board", + [2714] = "Alterac Granite", + [2715] = "Runed Pedestal", + [2716] = "Trelane\'s Chest", + [2717] = "Trelane\'s Footlocker", + [2718] = "Trelane\'s Lockbox", + [2719] = "Bubbling Cauldron", + [2722] = "Floating Sparkles", + [2724] = "Sack of Oats", + [2726] = "Anvil", + [2727] = "Forge", + [2728] = "Forge", + [2729] = "Anvil", + [2732] = "Campfire", + [2734] = "Waterlogged Chest", + [2739] = "Chest of the Black Feather", + [2740] = "Chest of the Raven Claw", + [2741] = "Chest of the Sky", + [2742] = "Chest of Nesting", + [2743] = "Carved Stone Urn", + [2744] = "Giant Clam", + [2842] = "Pillar of Diamond", + [2843] = "Battered Chest", + [2848] = "Pillar of Opal", + [2849] = "Battered Chest", + [2850] = "Solid Chest", + [2852] = "Solid Chest", + [2855] = "Solid Chest", + [2857] = "Solid Chest", + [2858] = "Pillar of Amethyst", + [2866] = "Firebloom", + [2867] = "Excavation Supply Crate", + [2868] = "Crumpled Map", + [2870] = "Yellow aura, very tall column", + [2871] = "Seaworn Altar", + [2872] = "Enchanted Sea Kelp", + [2875] = "Battered Dwarven Skeleton", + [2883] = "Ripe Pumpkin", + [2891] = "Balia\'mah Trophy Skulls", + [2892] = "Ziata\'jai Trophy Skulls", + [2893] = "Zul\'Mamwe Trophy Skulls", + [2904] = "Water Well Cleansing Aura", + [2907] = "Water Pitcher", + [2908] = "Sealed Supply Crate", + [2909] = "Wildmane Water Pump", + [2910] = "Well Stone", + [2911] = "Stormbull Water Well", + [2912] = "Ambercorn", + [2913] = "Winterhoof Water Well", + [2914] = "Tribal Fire", + [2933] = "Seal of the Earth", + [2968] = "Bloodhoof Village", + [2969] = "Thunder Bluff", + [2970] = "Bloodhoof Village", + [2971] = "The Barrens", + [2972] = "Camp Narache", + [2973] = "Camp Narache", + [2974] = "Thunder Bluff", + [2975] = "Bloodhoof Village", + [2976] = "The Barrens", + [2977] = "Camp Narache", + [2978] = "Bloodhoof Village", + [3076] = "Dirt-stained Map", + [3084] = "Fire", + [3085] = "Campfire", + [3089] = "Campfire", + [3187] = "Anvil", + [3189] = "Attack Plan: Valley of Trials", + [3190] = "Attack Plan: Sen\'jin Village", + [3192] = "Attack Plan: Orgrimmar", + [3194] = "Bloodhoof Village", + [3195] = "Thunder Bluff", + [3196] = "Thunder Bluff", + [3197] = "Bloodhoof Village", + [3198] = "Bloodhoof Village", + [3199] = "The Barrens", + [3200] = "Campfire", + [3201] = "Campfire", + [3202] = "Grom\'gol", + [3203] = "Arena", + [3204] = "Booty Bay", + [3205] = "Arena", + [3206] = "Booty Bay", + [3207] = "Duskwood", + [3208] = "Booty Bay", + [3209] = "Grom\'Gol", + [3210] = "Arena", + [3211] = "Duskwood", + [3212] = "Booty Bay", + [3213] = "Arena", + [3214] = "Arena", + [3215] = "Grom\'Gol", + [3216] = "Arena", + [3217] = "Duskwood", + [3220] = "Campfire", + [3222] = "Anvil", + [3223] = "Forge", + [3224] = "Razor Hill", + [3225] = "Razor Hill", + [3226] = "Orgrimmar", + [3227] = "The Den", + [3228] = "The Barrens", + [3229] = "The Den", + [3230] = "Razor Hill", + [3231] = "Razor Hill", + [3232] = "Razor Hill", + [3233] = "The Den", + [3234] = "Orgrimmar", + [3235] = "Orgrimmar", + [3236] = "Gnomish Toolbox", + [3237] = "Imprisoned Darkspear", + [3238] = "Chen\'s Empty Keg", + [3239] = "Benedict\'s Chest", + [3240] = "Taillasher Eggs", + [3246] = "Campfire", + [3249] = "Campfire", + [3251] = "Campfire", + [3252] = "Campfire", + [3253] = "Campfire", + [3254] = "Campfire", + [3256] = "Campfire", + [3258] = "Campfire", + [3260] = "Campfire", + [3262] = "Campfire", + [3264] = "Campfire", + [3266] = "Cauldron", + [3270] = "Campfire", + [3276] = "Sen\'jin Village", + [3286] = "Roaring Fire", + [3290] = "Stolen Supply Sack", + [3296] = "Scorching Fire", + [3298] = "Blazing Fire", + [3301] = "Burning Embers", + [3303] = "Warm Fire", + [3306] = "Campfire", + [3307] = "Campfire", + [3308] = "Bonfire", + [3310] = "Campfire", + [3311] = "Campfire", + [3314] = "The Barrens", + [3315] = "Boiling Cauldron", + [3523] = "TEST Circle of Flame", + [3524] = "The Demon Seed", + [3525] = "The Altar of Fire", + [3636] = "Campfire", + [3637] = "Campfire", + [3638] = "Campfire", + [3639] = "Campfire", + [3640] = "Laden Mushroom", + [3642] = "Kolkars\' Booty", + [3643] = "Old Footlocker", + [3644] = "Bael Modan Flying Machine", + [3646] = "General Twinbraid\'s Strongbox", + [3656] = "Bonfire", + [3658] = "Water Barrel", + [3659] = "Barrel of Melon Juice", + [3660] = "Armor Crate", + [3661] = "Weapon Crate", + [3662] = "Food Crate", + [3685] = "Silithid Mound", + [3689] = "Weapon Crate", + [3690] = "Food Crate", + [3691] = "Food Crate", + [3693] = "Food Crate", + [3694] = "Food Crate", + [3695] = "Food Crate", + [3702] = "Armor Crate", + [3703] = "Armor Crate", + [3704] = "Weapon Crate", + [3705] = "Barrel of Milk", + [3706] = "Barrel of Sweet Nectar", + [3707] = "Food Crate", + [3710] = "Food Crate", + [3714] = "Alliance Strongbox", + [3715] = "Alliance Chest", + [3716] = "Campfire", + [3717] = "Campfire", + [3718] = "Campfire", + [3719] = "Food Crate", + [3722] = "Campfire", + [3723] = "Campfire", + [3724] = "Peacebloom", + [3725] = "Silverleaf", + [3726] = "Earthroot", + [3727] = "Mageroyal", + [3729] = "Briarthorn", + [3730] = "Bruiseweed", + [3737] = "Bubbling Fissure", + [3740] = "Bubbling Fissure", + [3743] = "Fissure Plant", + [3760] = "Campfire", + [3761] = "Campfire", + [3763] = "Copper Vein", + [3764] = "Tin Vein", + [3767] = "Drizzlik\'s Emporium", + [3768] = "Fragile - Do Not Drop", + [3769] = "Potbelly Stove", + [3770] = "Potbelly Stove", + [3771] = "Potbelly Stove", + [3772] = "Potbelly Stove", + [3797] = "Cozy Fire", + [3798] = "Cozy Fire", + [3799] = "Cozy Fire", + [3800] = "Cozy Fire", + [3801] = "Cozy Fire", + [3802] = "Cozy Fire", + [3803] = "Cozy Fire", + [3804] = "Cozy Fire", + [3815] = "Warm Fire", + [3816] = "Warm Fire", + [3817] = "Blazing Fire", + [3818] = "Blazing Fire", + [3819] = "Blazing Fire", + [3832] = "Burning Embers", + [3833] = "Burning Embers", + [3834] = "Burning Embers", + [3835] = "Burning Embers", + [3836] = "Burning Embers", + [3837] = "Burning Embers", + [3838] = "Burning Embers", + [3839] = "Burning Embers", + [3840] = "Burning Embers", + [3841] = "Burning Embers", + [3842] = "Burning Embers", + [3843] = "Burning Embers", + [3844] = "Burning Embers", + [3845] = "Burning Embers", + [3847] = "Fierce Blaze", + [3848] = "Fierce Blaze", + [3849] = "Fierce Blaze", + [3850] = "Fierce Blaze", + [3851] = "Fierce Blaze", + [3852] = "Fierce Blaze", + [3853] = "Fierce Blaze", + [3855] = "Fierce Blaze", + [3856] = "Fierce Blaze", + [3857] = "Fierce Blaze", + [3888] = "Mighty Blaze", + [3890] = "Blazing Fire", + [3891] = "Mighty Blaze", + [3892] = "Mighty Blaze", + [3893] = "Mighty Blaze", + [3894] = "Mighty Blaze", + [3895] = "Mighty Blaze", + [3896] = "Mighty Blaze", + [3897] = "Mighty Blaze", + [3898] = "Blazing Fire", + [3899] = "Blazing Fire", + [3900] = "Blazing Fire", + [3901] = "Blazing Fire", + [3902] = "Blazing Fire", + [3903] = "Blazing Fire", + [3904] = "Blazing Fire", + [3905] = "Blazing Fire", + [3906] = "Blazing Fire", + [3907] = "Blazing Fire", + [3908] = "Blazing Fire", + [3909] = "Blazing Fire", + [3910] = "Blazing Fire", + [3911] = "Burning Embers", + [3936] = "Fierce Blaze", + [3937] = "Mighty Blaze", + [3938] = "Fierce Blaze", + [3939] = "Fierce Blaze", + [3940] = "Fierce Blaze", + [3941] = "Fierce Blaze", + [3942] = "Fierce Blaze", + [3943] = "Mighty Blaze", + [3944] = "Fierce Blaze", + [3945] = "Mighty Blaze", + [3946] = "Fierce Blaze", + [3947] = "Fierce Blaze", + [3948] = "Fierce Blaze", + [3949] = "Fierce Blaze", + [3950] = "Fierce Blaze", + [3951] = "Mighty Blaze", + [3960] = "Burning Embers", + [3962] = "Burning Embers", + [3963] = "Fierce Blaze", + [3964] = "Fierce Blaze", + [3967] = "Fierce Blaze", + [3968] = "Fierce Blaze", + [3972] = "WANTED", + [4004] = "Fire Plume Ridge Lava Lake", + [4005] = "Bank", + [4072] = "Main Control Valve", + [4087] = "Anvil", + [4088] = "Anvil", + [4089] = "Anvil", + [4090] = "Forge", + [4095] = "Alliance Strongbox", + [4096] = "Alliance Chest", + [4097] = "Ratchet", + [4098] = "Durotar", + [4099] = "Mulgore", + [4100] = "Stonetalon Mountains", + [4101] = "Crossroads", + [4102] = "The Crossroads", + [4103] = "Stonetalon Mountains", + [4104] = "Ashenvale", + [4105] = "Dustwallow Marsh", + [4106] = "Thousand Needles", + [4115] = "The Crossroads", + [4116] = "Dustwallow Marsh", + [4117] = "Mulgore", + [4118] = "Thousand Needles", + [4119] = "Durotar", + [4120] = "Mulgore", + [4121] = "Dustwallow Marsh", + [4122] = "Thousand Needles", + [4123] = "The Crossroads", + [4132] = "Ashenvale", + [4133] = "The Crossroads", + [4134] = "Durotar", + [4135] = "The Crossroads", + [4136] = "Durotar", + [4137] = "Mulgore", + [4138] = "Mulgore", + [4141] = "Control Console", + [4149] = "Solid Chest", + [4166] = "Alchemical Implements", + [4170] = "Mesa Elevator", + [4171] = "Mesa Elevator", + [4406] = "Webwood Eggs", + [4608] = "Timberling Sprout", + [5619] = "Flawed Power Stone", + [5620] = "Flawed Power Stones", + [5621] = "Flawed Power Stones", + [5622] = "Purple aura, short column, 0.6 scale", + [6288] = "Campfire", + [6289] = "Smoldering Blaze", + [6290] = "Smoldering Blaze", + [6291] = "Smoldering Brazier", + [6292] = "Smoldering Brazier", + [6293] = "Campfire", + [6294] = "Campfire", + [6295] = "Campfire", + [6751] = "Strange Fruited Plant", + [6752] = "Strange Fronded Plant", + [6906] = "Red Raptor Nest", + [6907] = "Blue Raptor Nest", + [6908] = "Yellow Raptor Nest", + [7510] = "Sprouted Frond", + [7923] = "Denalan\'s Planter", + [9630] = "Flagongut\'s Fossil", + [9847] = "Cooking Fire", + [10076] = "Scrying Bowl", + [10082] = "Stormwind", + [10083] = "Goldshire", + [10192] = "Wooden Chair", + [10193] = "Wooden Chair", + [10194] = "Wooden Chair", + [10195] = "Wooden Chair", + [10196] = "Wooden Chair", + [10197] = "Wooden Chair", + [10198] = "Wooden Chair", + [10199] = "Wooden Chair", + [10200] = "Wooden Chair", + [10201] = "Wooden Chair", + [10202] = "Wooden Chair", + [10203] = "Wooden Chair", + [10204] = "Wooden Chair", + [10205] = "Wooden Chair", + [10206] = "Wooden Chair", + [10207] = "Wooden Chair", + [10208] = "Wooden Chair", + [10209] = "Wooden Chair", + [10210] = "Wooden Chair", + [10211] = "Wooden Chair", + [10212] = "Wooden Chair", + [10213] = "Wooden Chair", + [10214] = "Wooden Chair", + [10215] = "Wooden Chair", + [10216] = "Wooden Chair", + [10217] = "Wooden Chair", + [10218] = "Wooden Chair", + [10219] = "Wooden Chair", + [10220] = "Wooden Chair", + [10221] = "Wooden Chair", + [10222] = "Wooden Chair", + [10223] = "Wooden Chair", + [10224] = "Wooden Chair", + [10388] = "Cooking Fire", + [11713] = "Death Cap", + [11714] = "Scaber Stalk", + [11898] = "Mesa Elevator", + [11899] = "Mesa Elevator", + [12144] = "Twilight Tome", + [12351] = "Dolanaar", + [12352] = "Starbreeze Village", + [12353] = "Shadowglen", + [12354] = "Aldrassil", + [12355] = "Starbreeze Village", + [12356] = "Dolanaar", + [12357] = "Darnassus", + [12358] = "Starbreeze Village", + [12359] = "Shadowglen", + [12360] = "The Oracle Glade", + [12361] = "Dolanaar", + [12362] = "Aldrassil", + [12363] = "Darnassus", + [12364] = "Dolanaar", + [12365] = "The Oracle Glade", + [12366] = "Darnassus", + [12654] = "Mathystra Relic", + [12665] = "Cooking Table", + [12666] = "Twilight Tome", + [12893] = "Grove of the Ancients", + [12894] = "Ameth\'Aran", + [12895] = "Ashenvale", + [12896] = "Auberdine", + [12897] = "Ameth\'Aran", + [12898] = "Grove of the Ancients", + [12899] = "Ashenvale", + [12900] = "Bashal\'Aran", + [12901] = "Auberdine", + [12902] = "Bashal\'Aran", + [12903] = "Mathystra", + [12904] = "Ashenvale", + [12907] = "Mathystra", + [12908] = "Auberdine", + [12909] = "Bashal\'Aran", + [13348] = "Darkshore", + [13349] = "Astranaar", + [13350] = "Astranaar", + [13351] = "Darkshore", + [13352] = "The Shrine of Aessina", + [13353] = "The Shrine of Aessina", + [13354] = "The Shrine of Aessina", + [13355] = "Darkshore", + [13356] = "The Barrens", + [13357] = "Felwood", + [13358] = "Azshara", + [13359] = "Cat Figurine", + [13360] = "Mathystra Relic", + [13405] = "Felwood", + [13406] = "Astranaar", + [13407] = "The Barrens", + [13408] = "Azshara", + [13409] = "Azshara", + [13410] = "The Barrens", + [13411] = "Felwood", + [13412] = "Astranaar", + [13756] = "Graveyard Banner", + [13872] = "Mathystra Relic", + [13873] = "Cat Figurine", + [13891] = "Serpentbloom", + [13949] = "Pitted Iron Chest", + [13952] = "Target", + [13965] = "Factory Door", + [15001] = "Mine Banner", + [15002] = "Lumber Mill Banner", + [15003] = "Farm Banner", + [15004] = "Blacksmith Banner", + [15005] = "Stable Banner", + [15068] = "Campfire", + [15069] = "Bonfire", + [16393] = "Ancient Flame", + [16394] = "Ancient Flame", + [16396] = "Moonbrook", + [16397] = "Iron Clad Door", + [16398] = "Defias Cannon", + [16399] = "Foundry Door", + [16400] = "Mast Room Door", + [16431] = "Cracked Necrotic Crystal", + [17153] = "Heavy Door", + [17154] = "Heavy Door", + [17155] = "Defias Gunpowder", + [17156] = "Door Lever", + [17157] = "Door Lever", + [17182] = "Buzzbox 827", + [17183] = "Buzzbox 411", + [17184] = "Buzzbox 323", + [17185] = "Buzzbox 525", + [17188] = "The Lay of Ameth\'Aran", + [17189] = "The Fall of Ameth\'Aran", + [17190] = "Forge", + [17191] = "Anvil", + [17249] = "Wooden Chair", + [17250] = "Wooden Chair", + [17251] = "Wooden Chair", + [17252] = "Wooden Chair", + [17253] = "Wooden Chair", + [17254] = "Wooden Chair", + [17255] = "Wooden Chair", + [17256] = "Wooden Chair", + [17257] = "Wooden Chair", + [17258] = "Wooden Chair", + [17259] = "Wooden Chair", + [17260] = "Wooden Chair", + [17261] = "Wooden Chair", + [17262] = "Wooden Chair", + [17263] = "Wooden Chair", + [17264] = "Wooden Chair", + [17265] = "Wooden Chair", + [17266] = "Wooden Chair", + [17267] = "Wooden Chair", + [17268] = "Wooden Chair", + [17269] = "Wooden Chair", + [17270] = "Wooden Chair", + [17271] = "Wooden Chair", + [17272] = "Wooden Chair", + [17273] = "Wooden Chair", + [17274] = "Wooden Chair", + [17275] = "Wooden Chair", + [17276] = "Wooden Chair", + [17277] = "Wooden Chair", + [17278] = "Wooden Chair", + [17279] = "Wooden Chair", + [17280] = "Wooden Chair", + [17281] = "Wooden Chair", + [17282] = "Plant Bundle", + [17284] = "Campfire", + [17783] = "Ancient Statuette", + [18033] = "Mulgore", + [18034] = "The Crossroads", + [18035] = "Tribal Fire", + [18036] = "Bottle of Disease", + [18043] = "Campfire", + [18045] = "Campfire", + [18046] = "Campfire", + [18063] = "Bonfire", + [18064] = "Campfire", + [18065] = "Campfire", + [18066] = "Campfire", + [18067] = "Campfire", + [18068] = "Campfire", + [18069] = "Campfire", + [18070] = "Campfire", + [18071] = "Campfire", + [18072] = "Campfire", + [18073] = "Campfire", + [18074] = "Campfire", + [18075] = "Cooking Table", + [18076] = "Campfire", + [18077] = "Smoking Rack", + [18079] = "Bubbling Cauldron", + [18083] = "Bubbling Cauldron", + [18084] = "Bubbling Cauldron", + [18085] = "Campfire", + [18087] = "Campfire", + [18089] = "Campfire", + [18090] = "Campfire", + [18340] = "Cauldron", + [18341] = "Bubbling Cauldron", + [18342] = "Boiling Cauldron", + [18343] = "Cooking Fire", + [18344] = "Campfire", + [18345] = "Bubbling Cauldron", + [18596] = "Crackling Campfire", + [18603] = "Ancient Statuette", + [18643] = "Campfire", + [18644] = "Campfire", + [18645] = "Campfire", + [18895] = "Courtyard Door", + [18899] = "Lever", + [18900] = "Lever", + [18901] = "Lever", + [18930] = "Campfire", + [18934] = "Cell Door", + [18935] = "Cell Door", + [18936] = "Cell Door", + [18971] = "Arugal\'s Lair", + [18972] = "Sorcerer\'s Gate", + [18973] = "Arugal\'s Focus", + [19015] = "Elune\'s Tear", + [19016] = "Stardust Covered Bush", + [19017] = "Giant Clam", + [19018] = "Giant Clam", + [19019] = "Box of Assorted Parts", + [19020] = "Box of Assorted Parts", + [19021] = "Rusty Chest", + [19022] = "Worn Chest", + [19023] = "House 2", + [19024] = "Hidden Shrine", + [19025] = "Ancient Inscription", + [19027] = "Tome of Mel\'Thandris", + [19028] = "Scarlet Watch Post", + [19030] = "Mound of Dirt", + [19033] = "The Barrens", + [19283] = "Compendium of the Fallen", + [19284] = "Mythology of the Titans", + [19463] = "Cliffspring Falls Cave Mouth", + [19464] = "Dreadmist Peak Pool", + [19534] = "Anton\'s Letter of Commendation", + [19535] = "Serpentbloom", + [19536] = "Crackling Campfire", + [19538] = "Small Wisp", + [19539] = "Medium Wisp", + [19540] = "Large Wisp", + [19541] = "Deepmoss Eggs", + [19542] = "Deepmoss Eggs", + [19543] = "Deepmoss Eggs trap", + [19544] = "Jin\'Zil\'s Smoke", + [19545] = "The Oracle Glade", + [19546] = "Dolanaar", + [19547] = "Venture Co. Explosives Wagon", + [19548] = "Eye of Azora", + [19549] = "Shadowglen Moonwell", + [19550] = "Starbreeze Moonwell", + [19551] = "Pools of Arlithrien Moonwell", + [19552] = "Oracle Glade Moonwell", + [19553] = "Greatwood Vale", + [19554] = "Stonetalon Peak", + [19555] = "Windshear Crag", + [19556] = "The Charred Vale", + [19557] = "Welcome", + [19558] = "Windshear Crag", + [19559] = "Sun Rock Retreat", + [19560] = "Stonetalon Peak", + [19561] = "Greatwood Vale", + [19562] = "The Barrens", + [19563] = "Windshear Crag", + [19564] = "Greatwood Vale", + [19565] = "Sun Rock Retreat", + [19566] = "Desolace", + [19567] = "Stonetalon Peak", + [19568] = "The Barrens", + [19569] = "End of Venture Co. Lands", + [19570] = "DANGER!", + [19571] = "KEEP OUT!", + [19572] = "Desolace", + [19573] = "Stonetalon Peak", + [19574] = "Windshear Crag", + [19575] = "Greatwood Vale", + [19576] = "The Barrens", + [19577] = "The Charred Vale", + [19578] = "Windshear Crag", + [19579] = "Desolace", + [19580] = "Greatwood Vale", + [19581] = "Stonetalon Peak", + [19582] = "Goblin Shredder Suit", + [19583] = "Sun Rock Retreat", + [19585] = "Venture Co. Stonetalon Mtns. Project", + [19587] = "Monestary Hall Door", + [19590] = "Venture Co. Wagon Trap", + [19591] = "Venture Co. Wagon (Blue)", + [19592] = "NG-5 Explosives (Red)", + [19594] = "Venture Co. Copter Pad", + [19595] = "Gatekeeper\'s Hold", + [19596] = "Sleepers\' Cache", + [19597] = "Druids\' Cache", + [19598] = "Barrow Cache", + [19599] = "Talon Den Hoard", + [19600] = "Venture Co. Wagon (Red)", + [19601] = "NG-5 Explosives (Blue)", + [19602] = "Venture Co. Engineering Plans", + [19603] = "Venture Co. Documents", + [19839] = "The Barrens", + [19840] = "Freewind Post", + [19841] = "The Shimmering Flats", + [19842] = "Feralas", + [19843] = "Freewind Post", + [19844] = "The Great Lift", + [19845] = "The Barrens", + [19846] = "The Shimmering Flats", + [19847] = "Thalanaar", + [19848] = "Freewind Post", + [19849] = "The Shimmering Flats", + [19850] = "Tanaris", + [19851] = "The Great Lift", + [19852] = "The Barrens", + [19853] = "Freewind Post", + [19854] = "The Barrens", + [19855] = "Tanaris", + [19856] = "The Barrens", + [19857] = "The Shimmering Flats", + [19858] = "Thalanaar", + [19859] = "Feralas", + [19861] = "Henrig Lonebrow\'s Journal", + [19862] = "Glowing Soulgem", + [19863] = "Maestra\'s Post", + [19868] = "Rocket Car Rubble", + [19869] = "Rocket Car Rubble", + [19870] = "Rocket Car Rubble", + [19871] = "Rocket Car Rubble", + [19872] = "Rocket Car Rubble", + [19873] = "Rocket Car Rubble", + [19874] = "Anvil", + [19875] = "Fresh Lion Carcass", + [19876] = "Flame of Uzel", + [19877] = "Velinde\'s Locker", + [19878] = "Parts Crate", + [19879] = "Red Soulgem", + [19897] = "Cask of Fool\'s Stout", + [19901] = "Circle of Imprisonment", + [19902] = "Forge", + [19903] = "Indurium Mineral Vein", + [19904] = "Mok\'Morokk\'s Snuff", + [19905] = "Mok\'Morokk\'s Grog", + [19906] = "Mok\'Morokk\'s Strongbox", + [20351] = "Blue Soulgem", + [20352] = "Circle of Imprisonment", + [20356] = "Campfire", + [20358] = "White Smoke Emitter - scale 0.2", + [20359] = "Egg of Onyxia", + [20447] = "Harpy Foodstuffs", + [20649] = "Undervator", + [20650] = "upperLdoor", + [20651] = "lowerLdoor", + [20652] = "Undervator", + [20653] = "upperLdoor", + [20654] = "lowerLdoor", + [20655] = "Undervator", + [20656] = "upperLdoor", + [20657] = "lowerLdoor", + [20668] = "TEST House", + [20689] = "Anvil", + [20691] = "Cozzle\'s Footlocker", + [20692] = "Campfire", + [20693] = "Campfire", + [20694] = "Campfire", + [20724] = "Dor\'Danil Pillar", + [20725] = "The Legacy of the Aspects", + [20726] = "Beginnings of the Undead Threat", + [20727] = "Gizmorium Shipping Crate", + [20737] = "Keenly Disguised Barrel", + [20738] = "Forge", + [20739] = "Anvil", + [20805] = "Rizzle\'s Unguarded Plans", + [20806] = "Ashenvale Moonwell", + [20807] = "Ancient Brazier", + [20808] = "TEST Ship", + [20810] = "Campfire", + [20811] = "Mine", + [20812] = "Orc Tower", + [20816] = "Guard Tower", + [20817] = "Holding Pen", + [20818] = "Night Elf Moon Well", + [20819] = "Moon Well 2", + [20820] = "Giant Sea Turtle", + [20821] = "Giant Turtle", + [20822] = "Landing Pad", + [20823] = "Player Housing", + [20824] = "Orc Tower", + [20827] = "Stormwind City", + [20829] = "Campfire", + [20830] = "Campfire", + [20831] = "Campfire", + [20849] = "Bonfire", + [20850] = "Crackling Campfire", + [20869] = "Cauldron", + [20870] = "Cauldron", + [20871] = "Cauldron", + [20872] = "Cauldron", + [20873] = "Smoldering Brazier", + [20874] = "Smoldering Brazier", + [20875] = "Smoldering Brazier", + [20876] = "Smoldering Brazier", + [20877] = "Cauldron", + [20878] = "Cauldron", + [20879] = "Crackling Campfire", + [20881] = "Flickering Campfire", + [20898] = "Burning Pile of Bones", + [20899] = "Venture Co. Explosives Wagon", + [20900] = "Anvil", + [20901] = "Gong of Zul\'Farrak", + [20917] = "Blue aura, short column, scale 3", + [20918] = "Campfire", + [20919] = "Tuber Node", + [20920] = "Blueleaf Tuber", + [20921] = "Campfire", + [20922] = "Campfire", + [20923] = "Stone of Remembrance", + [20924] = "Campfire", + [20925] = "Captain\'s Footlocker", + [20926] = "Flickering Campfire", + [20939] = "Bogbean Plant", + [20960] = "Campfire", + [20961] = "Campfire", + [20962] = "Campfire", + [20963] = "Campfire", + [20964] = "Campfire", + [20965] = "Campfire", + [20966] = "Campfire", + [20968] = "Campfire", + [20969] = "Scourge Campfire", + [20970] = "Bubbling Cauldron", + [20972] = "Campfire", + [20975] = "Brazier", + [20976] = "Campfire", + [20977] = "Troll Bonfire", + [20978] = "Troll Bonfire", + [20979] = "Troll Bonfire", + [20980] = "Troll Bonfire", + [20981] = "Campfire", + [20982] = "Campfire", + [20983] = "Campfire", + [20985] = "Loose Dirt", + [20986] = "Forge", + [20989] = "Campfire", + [20990] = "Campfire", + [20991] = "Campfire", + [20992] = "Black Shield", + [21004] = "Monument to Grom Hellscream", + [21007] = "Campfire", + [21008] = "Campfire", + [21009] = "Campfire", + [21015] = "Hoofprints", + [21016] = "Hoofprints", + [21042] = "Theramore Guard Badge", + [21052] = "Defias Strongbox", + [21053] = "Sentry Point", + [21054] = "North Point Tower", + [21055] = "The Barrens", + [21056] = "Theramore Isle", + [21057] = "Foothold Citadel", + [21058] = "The Docks", + [21059] = "Dustwallow Marsh", + [21060] = "The Docks", + [21061] = "Foothold Citadel", + [21062] = "Dustwallow Marsh", + [21063] = "Foothold Citadel", + [21064] = "Dustwallow Marsh", + [21065] = "The Docks", + [21066] = "The Docks", + [21067] = "Foothold Citadel", + [21068] = "Dustwallow Marsh", + [21069] = "Theramore Isle", + [21070] = "Sentry Point", + [21071] = "North Point Tower", + [21072] = "The Barrens", + [21073] = "Sentry Point", + [21074] = "Theramore Isle", + [21075] = "North Point Tower", + [21076] = "The Barrens", + [21077] = "Shady Rest Inn", + [21078] = "North Point Tower", + [21079] = "Theramore Isle", + [21080] = "Shady Rest Inn", + [21081] = "The Barrens", + [21082] = "Brackenwall Village", + [21083] = "The Barrens", + [21084] = "Stonemaul", + [21085] = "The Barrens", + [21086] = "Brackenwall Village", + [21087] = "Stonemaul", + [21088] = "BEWARE!", + [21089] = "You are entering the Dragonmurk", + [21099] = "ward", + [21117] = "Portal of Aku\'Mai", + [21118] = "Fire of Aku\'mai", + [21119] = "Fire of Aku\'mai", + [21120] = "Fire of Aku\'mai", + [21121] = "Fire of Aku\'mai", + [21127] = "Campfire", + [21128] = "Orc Spy Report", + [21145] = "Feast Boar", + [21146] = "Feast Fish", + [21147] = "Feast Fruit", + [21148] = "Feast Goblet", + [21277] = "Crate with Holes", + [21282] = "Campfire", + [21308] = "Campfire", + [21327] = "Campfire", + [21459] = "Campfire", + [21509] = "The Shady Rest Inn", + [21511] = "Lashh\'an Spell Circle", + [21530] = "Snufflenose Owner\'s Manual", + [21581] = "Aftermath of the Second War", + [21582] = "Beyond the Dark Portal", + [21583] = "The Kaldorei and the Well of Eternity", + [21628] = "Anvil", + [21629] = "Anvil", + [21630] = "Forge", + [21631] = "Forge", + [21653] = "unk", + [21654] = "unk", + [21655] = "unk", + [21656] = "unk", + [21678] = "Anvil", + [21679] = "Forge", + [21680] = "Duel Flag", + [21701] = "Anvil", + [22205] = "Dwarven Fire", + [22207] = "Dwarven Fire", + [22208] = "Dwarven Fire", + [22216] = "Dwarven Brazier", + [22217] = "Dwarven Brazier", + [22218] = "Dwarven Brazier", + [22219] = "Dwarven Brazier", + [22220] = "Dwarven Brazier", + [22221] = "Dwarven Brazier", + [22222] = "Dwarven Brazier", + [22223] = "Dwarven Fire", + [22224] = "Dwarven Fire", + [22225] = "Dwarven Fire", + [22226] = "Dwarven Fire", + [22229] = "Dwarven Fire", + [22230] = "Dwarven Fire", + [22231] = "Dwarven Fire", + [22234] = "Signal Torch", + [22245] = "Sack of Meat", + [22246] = "Tear of Theradras", + [22248] = "Merchant Chair", + [22249] = "Wooden Chair", + [22250] = "Wooden Seat", + [22251] = "Wooden Seat", + [22253] = "Head Chair", + [22254] = "Merchant Chair", + [22255] = "Merchant Chair", + [22256] = "Desk Chair", + [22257] = "War Room Chair", + [22258] = "War Room Chair", + [22259] = "War Room Chair", + [22260] = "War Room Chair", + [22261] = "War Room Chair", + [22262] = "War Room Chair", + [22530] = "Wooden Chair", + [22531] = "Wooden Chair", + [22533] = "Wooden Chair", + [22534] = "Wooden Chair", + [22535] = "Wooden Chair", + [22536] = "Wooden Chair", + [22537] = "Wooden Chair", + [22538] = "Wooden Chair", + [22540] = "Wooden Chair", + [22541] = "Wooden Chair", + [22542] = "Wooden Chair", + [22543] = "Wooden Chair", + [22544] = "Wooden Chair", + [22545] = "Wooden Chair", + [22546] = "Wooden Chair", + [22547] = "Wooden Chair", + [22549] = "Wooden Chair", + [22550] = "Draenethyst Crystals", + [22563] = "Cozy Fire", + [22564] = "Cozy Fire", + [22565] = "Cozy Fire", + [22566] = "Cozy Fire", + [22567] = "Cozy Fire", + [22569] = "Wooden Chair", + [22576] = "Wooden Chair", + [22577] = "Wooden Chair", + [22578] = "Wooden Chair", + [22579] = "Wooden Chair", + [22580] = "Wooden Chair", + [22581] = "Wooden Chair", + [22582] = "Wooden Chair", + [22587] = "Wooden Chair", + [22588] = "Wooden Chair", + [22589] = "Wooden Chair", + [22590] = "High Back Chair", + [22591] = "High Back Chair", + [22592] = "High Back Chair", + [22593] = "High Back Chair", + [22594] = "High Back Chair", + [22595] = "Wooden Chair", + [22598] = "Wooden Chair", + [22599] = "Wooden Chair", + [22600] = "Wooden Chair", + [22602] = "Cozy Fire", + [22603] = "Cozy Fire", + [22604] = "Cozy Fire", + [22605] = "Cozy Fire", + [22606] = "Cozy Fire", + [22615] = "Wooden Chair", + [22616] = "Wooden Chair", + [22617] = "Wooden Chair", + [22618] = "Wooden Chair", + [22619] = "Wooden Chair", + [22622] = "Wooden Chair", + [22623] = "Wooden Chair", + [22638] = "Wooden Chair", + [22639] = "Wooden Chair", + [22647] = "Wooden Chair", + [22648] = "Wooden Chair", + [22649] = "Wooden Chair", + [22650] = "Wooden Chair", + [22651] = "Wooden Chair", + [22652] = "Wooden Chair", + [22654] = "Wooden Chair", + [22658] = "Wooden Chair", + [22659] = "High Back Chair", + [22660] = "High Back Chair", + [22661] = "High Back Chair", + [22662] = "High Back Chair", + [22663] = "Wooden Chair", + [22664] = "Wooden Chair", + [22665] = "Wooden Chair", + [22666] = "Wooden Chair", + [22667] = "Wooden Chair", + [22668] = "Wooden Chair", + [22670] = "Cozy Fire", + [22671] = "Cozy Fire", + [22672] = "Cozy Fire", + [22673] = "Cozy Fire", + [22674] = "Cozy Fire", + [22684] = "Wooden Chair", + [22685] = "Wooden Chair", + [22706] = "Faustin\'s Alchemy Set", + [22707] = "Cozy Fire", + [22708] = "Cozy Fire", + [22709] = "Cozy Fire", + [22710] = "Cozy Fire", + [22711] = "Cozy Fire", + [22712] = "Cozy Fire", + [22719] = "Wooden Chair", + [22727] = "Wooden Chair", + [22732] = "Wooden Chair", + [22733] = "Wooden Chair", + [22734] = "Wooden Chair", + [22735] = "Wooden Chair", + [22736] = "High Back Chair", + [22737] = "High Back Chair", + [22738] = "High Back Chair", + [22739] = "Wooden Chair", + [22740] = "Wooden Chair", + [22741] = "Wooden Chair", + [22742] = "Wooden Chair", + [22743] = "Wooden Chair", + [22744] = "Wooden Chair", + [22745] = "Wooden Chair", + [22746] = "Wooden Chair", + [22747] = "Wooden Chair", + [22748] = "Wooden Chair", + [22749] = "Wooden Chair", + [22750] = "Wooden Chair", + [22751] = "Wooden Chair", + [22752] = "Wooden Chair", + [22753] = "High Back Chair", + [22754] = "High Back Chair", + [22755] = "High Back Chair", + [22772] = "Cozy Fire", + [22773] = "Cozy Fire", + [22774] = "Cozy Fire", + [22775] = "Cozy Fire", + [22776] = "Cozy Fire", + [22777] = "Cozy Fire", + [22783] = "Wooden Chair", + [22794] = "Wooden Chair", + [22795] = "Wooden Chair", + [22796] = "Wooden Chair", + [22797] = "Wooden Chair", + [22798] = "Wooden Chair", + [22799] = "Wooden Chair", + [22800] = "High Back Chair", + [22801] = "High Back Chair", + [22802] = "High Back Chair", + [22803] = "Wooden Chair", + [22804] = "Wooden Chair", + [22806] = "Wooden Chair", + [22808] = "Wooden Chair", + [22809] = "Wooden Chair", + [22810] = "Wooden Chair", + [22811] = "Wooden Chair", + [22812] = "Wooden Chair", + [22813] = "Wooden Chair", + [22816] = "Wooden Chair", + [22817] = "Wooden Chair", + [22831] = "Cozy Fire", + [22832] = "Cozy Fire", + [22833] = "Cozy Fire", + [22834] = "Cozy Fire", + [22835] = "Cozy Fire", + [22836] = "Cozy Fire", + [22849] = "Wooden Chair", + [22852] = "Wooden Chair", + [22853] = "Wooden Chair", + [22854] = "Wooden Chair", + [22855] = "Wooden Chair", + [22856] = "Wooden Chair", + [22858] = "Wooden Chair", + [22860] = "High Back Chair", + [22864] = "Wooden Chair", + [22865] = "Wooden Chair", + [22879] = "High Back Chair", + [22880] = "High Back Chair", + [22881] = "High Back Chair", + [22882] = "Cozy Fire", + [22883] = "Cozy Fire", + [22884] = "Cozy Fire", + [22885] = "Cozy Fire", + [22886] = "Cozy Fire", + [22887] = "Cozy Fire", + [22904] = "Wooden Chair", + [22908] = "Wooden Chair", + [22909] = "High Back Chair", + [22910] = "High Back Chair", + [22915] = "Wooden Chair", + [22916] = "Wooden Chair", + [22917] = "Wooden Chair", + [22918] = "Wooden Chair", + [22919] = "Wooden Chair", + [22920] = "Wooden Chair", + [22921] = "Wooden Chair", + [22922] = "Wooden Chair", + [22923] = "Wooden Chair", + [22924] = "Wooden Chair", + [22925] = "Wooden Chair", + [22926] = "Wooden Chair", + [22927] = "High Back Chair", + [23013] = "Wooden Chair", + [23014] = "Wooden Chair", + [23015] = "Wooden Chair", + [23016] = "Wooden Chair", + [23017] = "Wooden Chair", + [23018] = "Wooden Chair", + [23295] = "Canal Tailor and Fit Shop", + [23296] = "Larson Clothiers", + [23299] = "The Park", + [23300] = "The Park", + [23301] = "The Park", + [23302] = "Anvil", + [23303] = "Anvil", + [23304] = "Forge", + [23305] = "Forge", + [23505] = "Gizmorium Shipping Crate", + [23570] = "Bonfire", + [23571] = "Bonfire", + [23572] = "Bonfire", + [23573] = "Bonfire", + [23574] = "Bonfire", + [23575] = "Bonfire", + [23577] = "Bonfire", + [23879] = "Bonfire", + [23880] = "Bonfire", + [23881] = "Bonfire", + [24388] = "Stone Bench", + [24389] = "Stone Bench", + [24390] = "Highback Chair", + [24391] = "Highback Chair", + [24392] = "Stone Bench", + [24393] = "Stone Bench", + [24394] = "Stone Bench", + [24395] = "Stone Bench", + [24396] = "Stone Bench", + [24397] = "Stone Bench", + [24398] = "Stone Bench", + [24399] = "Stone Bench", + [24400] = "Stone Bench", + [24401] = "Stone Bench", + [24402] = "Stone Bench", + [24403] = "Stone Bench", + [24404] = "Wooden Chair", + [24405] = "Stone Bench", + [24406] = "Stone Bench", + [24407] = "Stone Bench", + [24408] = "Stone Bench", + [24409] = "Stone Bench", + [24410] = "Stone Bench", + [24411] = "Stone Bench", + [24412] = "Stone Bench", + [24413] = "Stone Bench", + [24414] = "Stone Bench", + [24415] = "Stone Bench", + [24416] = "Stone Bench", + [24417] = "Stone Bench", + [24418] = "Wooden Chair", + [24419] = "Wooden Chair", + [24420] = "Wooden Chair", + [24421] = "Wooden Chair", + [24422] = "Wooden Chair", + [24423] = "Wooden Chair", + [24424] = "Wooden Chair", + [24425] = "Wooden Chair", + [24426] = "Wooden Chair", + [24427] = "Wooden Chair", + [24428] = "Wooden Chair", + [24429] = "Wooden Chair", + [24430] = "Wooden Chair", + [24431] = "Wooden Chair", + [24432] = "Wooden Chair", + [24433] = "Wooden Chair", + [24434] = "Wooden Chair", + [24435] = "Wooden Chair", + [24436] = "Wooden Chair", + [24437] = "Wooden Chair", + [24438] = "Wooden Chair", + [24439] = "Wooden Chair", + [24440] = "Wooden Chair", + [24441] = "Wooden Chair", + [24442] = "Wooden Chair", + [24443] = "Wooden Chair", + [24444] = "Wooden Chair", + [24445] = "Wooden Chair", + [24446] = "Wooden Chair", + [24447] = "Wooden Chair", + [24448] = "Wooden Chair", + [24449] = "Wooden Chair", + [24450] = "Wooden Chair", + [24451] = "Stone Bench", + [24452] = "Stone Bench", + [24453] = "Stone Bench", + [24454] = "Wooden Chair", + [24455] = "Wooden Chair", + [24456] = "Wooden Chair", + [24457] = "Wooden Chair", + [24458] = "Wooden Chair", + [24459] = "Wooden Chair", + [24460] = "Stone Bench", + [24461] = "Stone Bench", + [24462] = "Stone Bench", + [24463] = "Stone Bench", + [24464] = "Stone Bench", + [24465] = "Stone Bench", + [24466] = "Stone Bench", + [24467] = "Stone Bench", + [24468] = "Wooden Chair", + [24469] = "Wooden Chair", + [24470] = "Wooden Chair", + [24471] = "Wooden Chair", + [24472] = "Wooden Chair", + [24473] = "Wooden Chair", + [24474] = "Wooden Chair", + [24475] = "Wooden Chair", + [24476] = "Wooden Chair", + [24477] = "Wooden Chair", + [24478] = "Wooden Chair", + [24479] = "Wooden Chair", + [24480] = "Wooden Chair", + [24481] = "Wooden Chair", + [24482] = "Wooden Chair", + [24483] = "Wooden Chair", + [24484] = "Wooden Chair", + [24485] = "Wooden Chair", + [24486] = "Wooden Chair", + [24487] = "Wooden Chair", + [24488] = "Wooden Chair", + [24489] = "Wooden Chair", + [24490] = "Wooden Chair", + [24491] = "Wooden Chair", + [24492] = "Wooden Chair", + [24493] = "Wooden Chair", + [24494] = "Stone Bench", + [24495] = "Stone Bench", + [24496] = "Stone Bench", + [24497] = "Stone Bench", + [24498] = "Stone Bench", + [24499] = "Stone Bench", + [24500] = "Wooden Chair", + [24501] = "Wooden Chair", + [24502] = "Wooden Chair", + [24503] = "Wooden Chair", + [24504] = "Wooden Chair", + [24505] = "Wooden Chair", + [24506] = "Wooden Chair", + [24507] = "Wooden Chair", + [24508] = "Wooden Chair", + [24509] = "Wooden Chair", + [24510] = "Wooden Chair", + [24511] = "Wooden Chair", + [24512] = "Wooden Chair", + [24513] = "Wooden Chair", + [24514] = "Wooden Chair", + [24515] = "Wooden Chair", + [24516] = "Wooden Chair", + [24517] = "Wooden Chair", + [24518] = "Wooden Chair", + [24519] = "Highback Chair", + [24520] = "Highback Chair", + [24521] = "Highback Chair", + [24522] = "Highback Chair", + [24523] = "Highback Chair", + [24524] = "Highback Chair", + [24525] = "Highback Chair", + [24526] = "Highback Chair", + [24527] = "Highback Chair", + [24528] = "Stone Bench", + [24529] = "Stone Bench", + [24530] = "Stone Bench", + [24531] = "Stone Bench", + [24532] = "Stone Bench", + [24533] = "Stone Bench", + [24534] = "Stone Bench", + [24535] = "Stone Bench", + [24536] = "Stone Bench", + [24537] = "Stone Bench", + [24538] = "Wooden Bench", + [24539] = "Wooden Bench", + [24540] = "Wooden Bench", + [24541] = "Wooden Bench", + [24542] = "Wooden Bench", + [24543] = "Wooden Bench", + [24544] = "Wooden Bench", + [24545] = "Wooden Bench", + [24546] = "Wooden Bench", + [24547] = "Wooden Bench", + [24548] = "Wooden Bench", + [24549] = "Wooden Bench", + [24550] = "Wooden Bench", + [24551] = "Wooden Bench", + [24552] = "Wooden Bench", + [24553] = "Wooden Bench", + [24554] = "Wooden Bench", + [24555] = "Wooden Bench", + [24556] = "Wooden Bench", + [24557] = "Highback Chair", + [24558] = "Highback Chair", + [24559] = "Highback Chair", + [24560] = "Highback Chair", + [24561] = "Highback Chair", + [24562] = "Highback Chair", + [24563] = "Highback Chair", + [24564] = "Highback Chair", + [24565] = "Highback Chair", + [24566] = "Highback Chair", + [24567] = "Highback Chair", + [24568] = "Highback Chair", + [24569] = "Highback Chair", + [24570] = "Highback Chair", + [24571] = "Highback Chair", + [24572] = "Highback Chair", + [24573] = "Highback Chair", + [24574] = "Highback Chair", + [24575] = "Highback Chair", + [24576] = "Highback Chair", + [24577] = "Highback Chair", + [24578] = "Highback Chair", + [24579] = "Highback Chair", + [24580] = "Highback Chair", + [24581] = "Highback Chair", + [24582] = "Highback Chair", + [24583] = "Highback Chair", + [24584] = "Highback Chair", + [24585] = "Highback Chair", + [24586] = "Highback Chair", + [24587] = "Highback Chair", + [24588] = "Highback Chair", + [24589] = "Highback Chair", + [24590] = "Highback Chair", + [24591] = "Highback Chair", + [24592] = "Highback Chair", + [24593] = "Highback Chair", + [24594] = "Highback Chair", + [24595] = "Highback Chair", + [24596] = "Highback Chair", + [24597] = "Wooden Chair", + [24598] = "Wooden Chair", + [24599] = "Wooden Chair", + [24600] = "Wooden Chair", + [24601] = "Wooden Chair", + [24602] = "Wooden Chair", + [24603] = "Wooden Chair", + [24604] = "Wooden Chair", + [24605] = "Wooden Chair", + [24606] = "Wooden Chair", + [24607] = "Wooden Chair", + [24608] = "Wooden Chair", + [24609] = "Highback Chair", + [24610] = "Highback Chair", + [24611] = "Stone Bench", + [24612] = "Stone Bench", + [24613] = "Stone Bench", + [24614] = "Stone Bench", + [24615] = "Stone Bench", + [24616] = "Stone Bench", + [24617] = "Stone Bench", + [24618] = "Stone Bench", + [24619] = "Stone Bench", + [24620] = "Stone Bench", + [24621] = "Stone Bench", + [24622] = "Stone Bench", + [24623] = "Wooden Chair", + [24624] = "Wooden Chair", + [24625] = "Wooden Chair", + [24626] = "Wooden Chair", + [24627] = "Wooden Chair", + [24628] = "Wooden Chair", + [24629] = "Wooden Chair", + [24630] = "Wooden Chair", + [24631] = "Wooden Chair", + [24632] = "Wooden Chair", + [24633] = "Wooden Chair", + [24634] = "Wooden Chair", + [24635] = "Wooden Chair", + [24636] = "Wooden Chair", + [24637] = "Wooden Chair", + [24638] = "Wooden Chair", + [24639] = "Wooden Chair", + [24640] = "Wooden Chair", + [24641] = "Wooden Chair", + [24642] = "Wooden Chair", + [24643] = "Wooden Chair", + [24644] = "Wooden Chair", + [24645] = "Wooden Chair", + [24646] = "Wooden Chair", + [24647] = "Wooden Chair", + [24648] = "Wooden Chair", + [24649] = "Wooden Chair", + [24650] = "Wooden Chair", + [24651] = "Wooden Chair", + [24652] = "Wooden Chair", + [24653] = "Wooden Chair", + [24654] = "Wooden Chair", + [24655] = "Wooden Chair", + [24656] = "Wooden Chair", + [24657] = "Highback Chair", + [24658] = "Highback Chair", + [24659] = "Wooden Chair", + [24660] = "Wooden Chair", + [24661] = "Wooden Chair", + [24662] = "Wooden Chair", + [24663] = "Wooden Chair", + [24664] = "Wooden Chair", + [24665] = "Wooden Chair", + [24666] = "Wooden Chair", + [24667] = "Wooden Chair", + [24668] = "Wooden Chair", + [24669] = "Wooden Chair", + [24670] = "Wooden Chair", + [24671] = "Wooden Chair", + [24672] = "Wooden Chair", + [24673] = "Wooden Chair", + [24674] = "Wooden Chair", + [24675] = "Wooden Chair", + [24676] = "Wooden Chair", + [24677] = "Wooden Chair", + [24678] = "Wooden Chair", + [24679] = "Wooden Chair", + [24680] = "Wooden Chair", + [24681] = "Wooden Chair", + [24682] = "Wooden Chair", + [24683] = "Wooden Chair", + [24684] = "Wooden Chair", + [24685] = "Wooden Chair", + [24686] = "Wooden Chair", + [24687] = "Wooden Chair", + [24688] = "Wooden Chair", + [24689] = "Wooden Chair", + [24690] = "Wooden Chair", + [24691] = "Wooden Chair", + [24692] = "Wooden Chair", + [24693] = "Wooden Chair", + [24694] = "Wooden Chair", + [24695] = "Wooden Chair", + [24696] = "Wooden Chair", + [24697] = "Wooden Chair", + [24698] = "Wooden Chair", + [24699] = "Wooden Chair", + [24700] = "Wooden Chair", + [24701] = "Wooden Chair", + [24702] = "Wooden Chair", + [24703] = "Wooden Chair", + [24704] = "Wooden Chair", + [24705] = "Wooden Chair", + [24706] = "Wooden Chair", + [24715] = "The Park", + [24717] = "The Park", + [24718] = "The Park", + [24719] = "The Park", + [24720] = "The Park", + [24721] = "The Park", + [24723] = "Bonfire", + [24724] = "Bonfire", + [24725] = "Bonfire", + [24726] = "Bonfire", + [24727] = "Bonfire", + [24728] = "Bonfire", + [24729] = "Bonfire", + [24745] = "Forge", + [24746] = "Forge", + [24758] = "Warm Fire", + [24759] = "Warm Fire", + [24760] = "Warm Fire", + [24761] = "Warm Fire", + [24762] = "Warm Fire", + [24763] = "Warm Fire", + [24764] = "Warm Fire", + [24765] = "Warm Fire", + [24776] = "Yuriv\'s Tombstone", + [24777] = "Yuriv\'s Tombstone", + [24798] = "Sundried Driftwood", + [25328] = "Pestle\'s Apothecary", + [25329] = "Kurdran Wildhammer", + [25330] = "General Turalyon", + [25331] = "Ranger Captain Alleria Windrunner", + [25332] = "Danath Trollbane", + [25333] = "Archmage Khadgar of the Kirin Tor", + [25334] = "Industrial District", + [25336] = "Old Town", + [25337] = "Old Town", + [25338] = "Cathedral Square", + [25339] = "Cathedral Square", + [25340] = "Cathedral Square", + [25341] = "The Park", + [25342] = "The Park", + [25346] = "Old Town", + [25347] = "Old Town", + [25348] = "Mage Quarter", + [25349] = "Mage Quarter", + [25350] = "Mage Quarter", + [25351] = "Mage Quarter", + [25352] = "The Park", + [25353] = "The Park", + [25354] = "The Park", + [25355] = "Cathedral Square", + [25356] = "Cathedral Square", + [25357] = "Cathedral Square", + [26449] = "Recombobulator", + [26480] = "Craghelm\'s Plate and Chain", + [26482] = "Goldfury\'s Hunting Supplies", + [26483] = "Fizzlespinner\'s General Goods", + [26485] = "Thundershot Guns \'n Ammo", + [26486] = "The Stonefire Tavern", + [26487] = "Barim\'s Reagents", + [26488] = "Timberline Arms", + [26489] = "Bruuk\'s Corner", + [26490] = "Ironforge Visitor\'s Center", + [26491] = "Pithwick\'s Bags and Supplies", + [26492] = "Farmountain Maps", + [26493] = "Stonebranch Herbalist", + [26494] = "Dwarven Brazier", + [26495] = "Dwarven Brazier", + [26496] = "Dwarven Brazier", + [26497] = "Deep Mountain Mining Guild", + [26498] = "The Bronze Kettle", + [26499] = "Dwarven Brazier", + [28024] = "Caravan Chest", + [28027] = "Dwarven District", + [28028] = "Dwarven District", + [28029] = "Dwarven District", + [28030] = "Dwarven District", + [28031] = "Dwarven District", + [28032] = "Dwarven District", + [28033] = "Dwarven District", + [28034] = "Dwarven District", + [28035] = "Stormwind Gate", + [28036] = "Stormwind Gate", + [28037] = "Stormwind Gate", + [28038] = "Stormwind Gate", + [28039] = "Stormwind Gate", + [28040] = "Stormwind Gate", + [28041] = "Stormwind Gate", + [28042] = "Stormwind Gate", + [28043] = "Stormwind Gate", + [28044] = "Dwarven District", + [28045] = "Dwarven District", + [28046] = "Dwarven District", + [28047] = "Dwarven District", + [28048] = "Wooden Chair", + [28049] = "Wooden Chair", + [28050] = "Wooden Chair", + [28051] = "Wooden Chair", + [28052] = "Wooden Chair", + [28053] = "Wooden Chair", + [28054] = "Wooden Chair", + [28055] = "Wooden Chair", + [28056] = "Wooden Chair", + [28069] = "Wooden Chair", + [28070] = "Wooden Chair", + [28071] = "Wooden Chair", + [28072] = "Wooden Chair", + [28073] = "Wooden Chair", + [28074] = "Wooden Chair", + [28075] = "Wooden Chair", + [28603] = "Wooden Chair", + [28604] = "Scattered Crate", + [28605] = "Wooden Chair", + [28606] = "Wooden Chair", + [28607] = "Wooden Chair", + [28608] = "Wooden Chair", + [28609] = "Wooden Chair", + [28610] = "Wooden Chair", + [28611] = "Dwarven High Back Chair", + [28612] = "Dwarven High Back Chair", + [28613] = "Wooden Chair", + [29150] = "Dwarven Fire", + [29151] = "Dwarven Fire", + [29152] = "Wooden Chair", + [29154] = "Wooden Chair", + [29155] = "Wooden Chair", + [29699] = "Wooden Chair", + [29700] = "Wooden Chair", + [29701] = "Wooden Chair", + [29702] = "Wooden Chair", + [29703] = "Wooden Chair", + [29704] = "Wooden Chair", + [29705] = "Wooden Chair", + [29706] = "Wooden Chair", + [29707] = "Wooden Chair", + [29715] = "Wooden Chair", + [29716] = "Wooden Chair", + [29717] = "Wooden Chair", + [29740] = "Wooden Chair", + [29741] = "Wooden Chair", + [29742] = "Wooden Chair", + [29743] = "Wooden Chair", + [29744] = "Wooden Chair", + [29745] = "Wooden Chair", + [29746] = "Wooden Chair", + [29747] = "Wooden Chair", + [29748] = "Wooden Chair", + [29749] = "Wooden Chair", + [29750] = "Wooden Chair", + [29751] = "Wooden Chair", + [29752] = "Wooden Chair", + [29753] = "Wooden Chair", + [29754] = "Wooden Chair", + [29755] = "Wooden Chair", + [29756] = "Wooden Chair", + [29757] = "Wooden Chair", + [29758] = "Wooden Chair", + [29759] = "Wooden Chair", + [29760] = "Wooden Chair", + [29761] = "Wooden Chair", + [29762] = "Wooden Chair", + [29763] = "Wooden Chair", + [29764] = "Wooden Chair", + [29765] = "Wooden Chair", + [29766] = "Wooden Chair", + [29767] = "Wooden Chair", + [29768] = "Wooden Chair", + [29769] = "Wooden Chair", + [29770] = "Wooden Chair", + [29771] = "Wooden Chair", + [29772] = "Wooden Chair", + [29773] = "Wooden Chair", + [29774] = "Wooden Chair", + [29775] = "Wooden Chair", + [29776] = "Wooden Chair", + [29777] = "Wooden Chair", + [29780] = "Wooden Chair", + [29781] = "Wooden Chair", + [29782] = "Wooden Chair", + [29783] = "Wooden Chair", + [29784] = "Basic Campfire", + [30854] = "Atal\'ai Artifact", + [30855] = "Atal\'ai Artifact", + [30856] = "Atal\'ai Artifact", + [31407] = "Roaring Bonfire", + [31408] = "Bonfire", + [31409] = "Raging Bonfire", + [31410] = "Bonfire", + [31411] = "Raging Bonfire", + [31442] = "Basic Campfire", + [31504] = "Wooden Chair", + [31507] = "Wooden Chair", + [31508] = "Wooden Chair", + [31509] = "Wooden Chair", + [31510] = "Bright Campfire", + [31511] = "Bright Campfire", + [31572] = "Medium Brazier", + [31573] = "Medium Brazier", + [31574] = "Smoking Rack", + [31575] = "Tall Brazier", + [31576] = "Medium Brazier", + [31577] = "Tall Brazier", + [31578] = "Tall Brazier", + [31579] = "Tall Brazier", + [31580] = "Bubbling Cauldron", + [32056] = "IronForge Elevator", + [32057] = "IronForge Elevator", + [32107] = "Roaring Fire", + [32109] = "Roaring Fire", + [32110] = "Bonfire", + [32348] = "Flinthammer\'s Armorer and Clothier", + [32349] = "Mailbox", + [32350] = "Finespindle\'s Leather Goods", + [32351] = "Stonebrow\'s Clothier", + [32352] = "Traveling Fisherman", + [32353] = "Springspindle\'s Gadgets", + [32354] = "Things That Go Boom!", + [32355] = "Ironforge Main Gate", + [32356] = "Hall of Explorers", + [32357] = "The Commerce Ward", + [32358] = "Dwarven Brazier", + [32359] = "The Military Ward", + [32360] = "Hall of Explorers", + [32361] = "The Commerce Ward", + [32362] = "The Mystic Ward", + [32363] = "Hall of Explorers", + [32364] = "Market Walk", + [32365] = "The Military Ward", + [32366] = "Market Walk", + [32367] = "Ironforge Main Gate", + [32368] = "Market Walk", + [32370] = "Ironforge Main Gate", + [32371] = "Hall of Explorers", + [32372] = "The Great Forge", + [32373] = "The Great Forge", + [32374] = "The Great Forge", + [32375] = "The Great Forge", + [32376] = "Market Walk", + [32377] = "Vault of Ironforge", + [32378] = "The Great Forge", + [32379] = "The Great Forge", + [32380] = "Vault of Ironforge", + [32381] = "The Forlorn Caverns", + [32383] = "The Forlorn Cavern", + [32384] = "Market Walk", + [32385] = "The Military Ward", + [32386] = "Hall of Mysteries", + [32388] = "Market Walk", + [32389] = "Dwarven Brazier", + [32390] = "Hall of Arms", + [32391] = "Dwarven Brazier", + [32392] = "The Great Forge", + [32393] = "Market Walk", + [32394] = "Market Walk", + [32395] = "The Great Forge", + [32396] = "Ironforge Main Gate", + [32397] = "Ironforge Main Gate", + [32398] = "Ironforge Main Gate", + [32399] = "Ironforge Main Gate", + [32400] = "The Commerce Ward", + [32401] = "The Commerce Ward", + [32402] = "Ironforge Main Gate", + [32403] = "The Commerce Ward", + [32404] = "Dwarven Brazier", + [32405] = "Ironforge Main Gate", + [32406] = "Market Walk", + [32407] = "Market Walk", + [32408] = "Hall of Explorers", + [32409] = "The Commerce Ward", + [32410] = "Ironforge Main Gate", + [32411] = "Ironforge Main Gate", + [32412] = "Market Walk", + [32413] = "Hall of Explorers", + [32414] = "The Commerce Ward", + [32416] = "Dwarven Brazier", + [32417] = "The Commerce Ward", + [32418] = "Hall of Explorers", + [32419] = "Gnomes", + [32420] = "The Commerce Ward", + [32421] = "Hall of Explorers", + [32423] = "Hall of Explorers", + [32424] = "The Great Forge", + [32425] = "Dwarven Brazier", + [32427] = "The Mystic Ward", + [32428] = "The Military Ward", + [32429] = "Dwarven Brazier", + [32430] = "Ironforge Main Gate", + [32431] = "The Great Forge", + [32434] = "The Military Ward", + [32436] = "The Great Forge", + [32438] = "The Mystic Ward", + [32440] = "Ironforge Main Gate", + [32569] = "Galen\'s Strongbox", + [32570] = "Anvil", + [32571] = "Anvil", + [32572] = "Anvil", + [32573] = "Anvil", + [32574] = "Anvil", + [32578] = "Anvil", + [32579] = "Anvil", + [32580] = "Anvil", + [32581] = "Anvil", + [32582] = "Anvil", + [32583] = "Anvil", + [32584] = "Anvil", + [32585] = "Anvil", + [32590] = "Anvil", + [32591] = "Anvil", + [32592] = "Anvil", + [32593] = "Anvil", + [32594] = "Anvil", + [32595] = "Anvil", + [32596] = "Anvil", + [32783] = "Market Walk", + [32784] = "Market Walk", + [32785] = "Market Walk", + [32786] = "Hall of Explorers", + [32787] = "Market Walk", + [32788] = "Hall of Explorers", + [32789] = "The Great Forge", + [32790] = "The Great Forge", + [32791] = "The Mystic Ward", + [32792] = "Market Walk", + [32793] = "Hall of Explorers", + [32833] = "Wooden Chair", + [32834] = "Wooden Chair", + [32835] = "Wooden Chair", + [32842] = "Wooden Chair", + [32843] = "Wooden Chair", + [32844] = "Wooden Chair", + [32845] = "Wooden Chair", + [32846] = "Wooden Chair", + [32847] = "Anvil", + [32848] = "Anvil", + [32849] = "Anvil", + [32850] = "Anvil", + [32851] = "Anvil", + [32852] = "Anvil", + [32853] = "Wooden Chair", + [32854] = "Wooden Chair", + [32855] = "Wooden Chair", + [32856] = "Wooden Chair", + [32857] = "Wooden Chair", + [32858] = "Wooden Chair", + [32859] = "Wooden Chair", + [32860] = "Wooden Chair", + [32861] = "Wooden Chair", + [32862] = "Wooden Chair", + [32863] = "Wooden Chair", + [32878] = "Bonfire", + [32879] = "Cauldron", + [32880] = "Cauldron", + [32881] = "Roaring Bonfire", + [32882] = "Raging Fire", + [32883] = "Bonfire", + [32884] = "Roaring Fire", + [32885] = "Raging Bonfire", + [33998] = "Sewers", + [33999] = "Sewers", + [34012] = "Sewers", + [34013] = "Sewers", + [34025] = "Anvil", + [34026] = "Anvil", + [34027] = "Anvil", + [34028] = "Anvil", + [34029] = "Anvil", + [34030] = "Anvil", + [34031] = "Anvil", + [34032] = "Anvil", + [34033] = "Anvil", + [34034] = "Anvil", + [34035] = "Anvil", + [34036] = "Anvil", + [34037] = "Anvil", + [34038] = "Anvil", + [34167] = "Wooden Chair", + [34168] = "Wooden Chair", + [34357] = "BerryFizz Potions and Mixed Drinks", + [34358] = "The Forlorn Cavern", + [34359] = "The Forlorn Cavern", + [34360] = "Dwarven Brazier", + [34361] = "The Forlorn Cavern", + [34362] = "The Forlorn Cavern", + [34363] = "The Forlorn Cavern", + [34571] = "Forge", + [34572] = "Forge", + [35251] = "Karnitol\'s Chest", + [35252] = "Ancient Relic", + [35572] = "Wooden Chair", + [35573] = "Wooden Chair", + [35574] = "Wooden Chair", + [35575] = "Wooden Chair", + [35576] = "Wooden Chair", + [35577] = "Dwarven High Back Chair", + [35578] = "Dwarven High Back Chair", + [35579] = "Wooden Chair", + [35580] = "Dwarven High Back Chair", + [35581] = "Dwarven High Back Chair", + [35582] = "Wooden Chair", + [35583] = "Wooden Chair", + [35584] = "Wooden Chair", + [35585] = "Wooden Chair", + [35588] = "Dwarven High Back Chair", + [35589] = "Dwarven High Back Chair", + [35591] = "Fishing Bobber", + [35593] = "Roaring Fire", + [35594] = "Roaring Fire", + [35595] = "Roaring Fire", + [35596] = "Roaring Fire", + [35597] = "Roaring Fire", + [35598] = "Roaring Fire", + [35844] = "Bonfire", + [36070] = "War Quarter", + [36071] = "War Quarter", + [36072] = "The Apothecarium", + [36073] = "Rogues\' Quarter", + [36077] = "The Apothecarium", + [36078] = "Trade Quarter", + [36079] = "The Apothecarium", + [36080] = "Trade Quarter", + [36082] = "Magic Quarter", + [36083] = "Trade Quarter", + [36085] = "Trade Quarter", + [36086] = "Magic Quarter", + [36090] = "Magic Quarter", + [36091] = "Trade Quarter", + [36092] = "Magic Quarter", + [36093] = "Magic Quarter", + [36094] = "The Apothecarium", + [36095] = "Trade Quarter", + [36096] = "Trade Quarter", + [36098] = "The Apothecarium", + [36102] = "Trade Quarter", + [36105] = "Trade Quarter", + [36113] = "Trade Quarter", + [36118] = "Trade Quarter", + [36126] = "Royal Quarter", + [36127] = "Royal Quarter", + [36396] = "Cauldron", + [36397] = "Royal Quarter", + [36398] = "Royal Quarter", + [36645] = "Bonfire", + [36727] = "Summoning Portal", + [36738] = "The Book of Ur", + [36977] = "Wooden Chair", + [36979] = "Wooden Chair", + [36980] = "Wooden Chair", + [36981] = "Wooden Chair", + [36982] = "Wooden Chair", + [36983] = "High Back Chair", + [36984] = "High Back Chair", + [36985] = "High Back Chair", + [36986] = "High Back Chair", + [36987] = "High Back Chair", + [36988] = "High Back Chair", + [36989] = "High Back Chair", + [36990] = "Dining Bench", + [36991] = "Dining Bench", + [36992] = "Dining Bench", + [36993] = "Dining Bench", + [36994] = "Dining Bench", + [36995] = "Dining Bench", + [36996] = "Wooden Chair", + [36997] = "Wooden Chair", + [36998] = "Wooden Chair", + [36999] = "Wooden Chair", + [37000] = "Wooden Chair", + [37001] = "Wooden Chair", + [37002] = "Wooden Chair", + [37003] = "Wooden Chair", + [37004] = "Wooden Chair", + [37005] = "Wooden Chair", + [37006] = "High Back Chair", + [37007] = "High Back Chair", + [37008] = "High Back Chair", + [37009] = "High Back Chair", + [37010] = "High Back Chair", + [37011] = "High Back Chair", + [37012] = "High Back Chair", + [37025] = "Wooden Chair", + [37026] = "Wooden Chair", + [37027] = "Wooden Chair", + [37028] = "Wooden Chair", + [37029] = "Wooden Chair", + [37030] = "Wooden Chair", + [37031] = "Wooden Chair", + [37032] = "High Back Chair", + [37033] = "High Back Chair", + [37034] = "High Back Chair", + [37035] = "High Back Chair", + [37036] = "High Back Chair", + [37037] = "High Back Chair", + [37038] = "High Back Chair", + [37051] = "War Room Chair", + [37089] = "Fiery Brazier", + [37090] = "Fiery Brazier", + [37091] = "Fiery Brazier", + [37092] = "Fiery Brazier", + [37093] = "Fiery Brazier", + [37094] = "Fiery Brazier", + [37095] = "Fiery Brazier", + [37096] = "Fiery Brazier", + [37097] = "Summoning Circle", + [37098] = "Perrine\'s Chest", + [37099] = "Atal\'ai Tablet", + [37118] = "Galen\'s Cage", + [37473] = "Wooden Chair", + [37474] = "Dwarven High Back Chair", + [37475] = "Dwarven High Back Chair", + [37476] = "Wooden Chair", + [37477] = "Wooden Chair", + [37478] = "Wooden Chair", + [37479] = "Wooden Chair", + [37480] = "Dwarven High Back Chair", + [37481] = "Dwarven High Back Chair", + [37482] = "Wooden Chair", + [37483] = "Dwarven High Back Chair", + [37484] = "Dwarven High Back Chair", + [37485] = "Wooden Chair", + [37486] = "Wooden Chair", + [37487] = "Wooden Chair", + [37488] = "Wooden Chair", + [37489] = "Wooden Chair", + [37490] = "Wooden Chair", + [37491] = "Wooden Chair", + [37492] = "Dwarven High Back Chair", + [37493] = "Dwarven High Back Chair", + [38019] = "Cookpot", + [38020] = "Potbelly Stove", + [38021] = "Wooden Chair", + [38022] = "Wooden Chair", + [38023] = "Wooden Chair", + [38024] = "Dwarven High Back Chair", + [38025] = "Dwarven High Back Chair", + [38026] = "Wooden Chair", + [38027] = "Wooden Chair", + [38028] = "Campfire", + [38029] = "Campfire", + [38030] = "Campfire", + [38147] = "Wooden Chair", + [38491] = "Forge", + [38492] = "Anvil", + [38493] = "Anvil", + [38494] = "Anvil", + [38495] = "Anvil", + [38927] = "Newman\'s Landing", + [40197] = "Campfire", + [40198] = "Fire", + [40199] = "Fire", + [40200] = "Fire", + [40201] = "Fire", + [40298] = "Campfire", + [40299] = "Campfire", + [40301] = "Campfire", + [40303] = "Anvil", + [41185] = "Campfire", + [41186] = "Campfire", + [41187] = "Campfire", + [41188] = "Campfire", + [41189] = "Campfire", + [41190] = "Campfire", + [41191] = "Campfire", + [41192] = "Campfire", + [41193] = "Campfire", + [41194] = "Campfire", + [41195] = "Southshore Town Hall", + [43116] = "Bone Fire", + [43117] = "Bone Fire", + [43118] = "Bone Fire", + [43119] = "Bone Fire", + [43120] = "Bone Fire", + [43121] = "Bone Fire", + [43122] = "Bone Fire", + [47296] = "Mesa Elevator", + [47297] = "Mesa Elevator", + [48403] = "Short Wooden Seat", + [48404] = "Campfire", + [48405] = "Short Wooden Seat", + [48406] = "Short Wooden Seat", + [48407] = "Short Wooden Seat", + [48408] = "Short Wooden Seat", + [48409] = "Short Wooden Seat", + [48410] = "Short Wooden Seat", + [48411] = "Dwarven Campfire", + [48412] = "Short Wooden Seat", + [48413] = "Short Wooden Seat", + [48414] = "Dwarven Campfire", + [48415] = "Short Wooden Seat", + [48416] = "Short Wooden Seat", + [48417] = "Short Wooden Seat", + [48418] = "Short Wooden Seat", + [48419] = "Dwarven Campfire", + [48420] = "Short Wooden Seat", + [48421] = "Short Wooden Seat", + [48422] = "Short Wooden Seat", + [48423] = "Short Wooden Seat", + [48424] = "Short Wooden Seat", + [48425] = "Short Wooden Seat", + [48426] = "Short Wooden Seat", + [48427] = "Short Wooden Seat", + [48428] = "Short Wooden Seat", + [48429] = "Dwarven Campfire", + [48430] = "Short Wooden Seat", + [48431] = "Dwarven Campfire", + [48432] = "Dwarven Campfire", + [48433] = "Short Wooden Seat", + [48434] = "Short Wooden Seat", + [48435] = "Short Wooden Seat", + [48436] = "Short Wooden Seat", + [48437] = "Dwarven Campfire", + [48438] = "Short Wooden Seat", + [48439] = "Short Wooden Seat", + [48440] = "Short Wooden Seat", + [48441] = "Short Wooden Seat", + [48442] = "Short Wooden Seat", + [48443] = "Dwarven Campfire", + [48444] = "Dwarven Campfire", + [48445] = "Short Wooden Seat", + [48446] = "Short Wooden Seat", + [48447] = "Short Wooden Seat", + [48448] = "Short Wooden Seat", + [48449] = "Short Wooden Seat", + [48450] = "Short Wooden Seat", + [48451] = "Dwarven Campfire", + [48452] = "Short Wooden Seat", + [48453] = "Short Wooden Seat", + [48454] = "Short Wooden Seat", + [48455] = "Dwarven Campfire", + [48457] = "Short Wooden Seat", + [48458] = "Short Wooden Seat", + [48459] = "Short Wooden Seat", + [48460] = "Dwarven Campfire", + [48461] = "Short Wooden Seat", + [48462] = "Short Wooden Seat", + [48463] = "Dwarven Campfire", + [48464] = "Short Wooden Seat", + [48465] = "Short Wooden Seat", + [48466] = "Dwarven Campfire", + [48467] = "Short Wooden Seat", + [48468] = "Short Wooden Seat", + [48469] = "Short Wooden Seat", + [48470] = "Short Wooden Seat", + [48471] = "Dwarven Campfire", + [48472] = "Dwarven Campfire", + [48473] = "Short Wooden Seat", + [48474] = "Short Wooden Seat", + [48475] = "Short Wooden Seat", + [48476] = "Dwarven Campfire", + [48477] = "Short Wooden Seat", + [48478] = "Short Wooden Seat", + [48479] = "Short Wooden Seat", + [48480] = "Dwarven Campfire", + [48481] = "Short Wooden Seat", + [48482] = "Short Wooden Seat", + [48483] = "Short Wooden Seat", + [48484] = "Short Wooden Seat", + [48485] = "Short Wooden Seat", + [48486] = "Short Wooden Seat", + [48487] = "Dwarven Campfire", + [48488] = "Short Wooden Seat", + [48489] = "Short Wooden Seat", + [48490] = "Dwarven Campfire", + [48491] = "Short Wooden Seat", + [48492] = "Dwarven Campfire", + [48493] = "Dwarven Campfire", + [48494] = "Dwarven Campfire", + [48495] = "Dwarven Campfire", + [48496] = "Dwarven Campfire", + [48497] = "Dwarven Campfire", + [48498] = "Short Wooden Seat", + [48499] = "Short Wooden Seat", + [48500] = "Short Wooden Seat", + [48501] = "Short Wooden Seat", + [48502] = "Short Wooden Seat", + [48503] = "Short Wooden Seat", + [48504] = "Short Wooden Seat", + [48505] = "Short Wooden Seat", + [48506] = "Short Wooden Seat", + [48507] = "Short Wooden Seat", + [48508] = "Dwarven Campfire", + [48509] = "Short Wooden Seat", + [48510] = "Short Wooden Seat", + [48511] = "Short Wooden Seat", + [48512] = "Dwarven Campfire", + [48513] = "Short Wooden Seat", + [48514] = "Short Wooden Seat", + [48515] = "Short Wooden Seat", + [48516] = "Master Control Program", + [48517] = "Dwarven Campfire", + [48518] = "Dwarven Campfire", + [48519] = "Dwarven Campfire", + [48520] = "Short Wooden Seat", + [48521] = "Short Wooden Seat", + [48522] = "Short Wooden Seat", + [48523] = "Short Wooden Seat", + [48524] = "Short Wooden Seat", + [48525] = "Short Wooden Seat", + [48526] = "Dwarven Campfire", + [48527] = "Short Wooden Seat", + [48528] = "Short Wooden Seat", + [48529] = "Short Wooden Seat", + [48530] = "Short Wooden Seat", + [48531] = "Dwarven Campfire", + [48532] = "Dwarven Campfire", + [48533] = "Short Wooden Seat", + [48534] = "Short Wooden Seat", + [48535] = "Dwarven Campfire", + [48536] = "Short Wooden Seat", + [48537] = "Dwarven Campfire", + [48538] = "Short Wooden Seat", + [48539] = "Short Wooden Seat", + [48540] = "Short Wooden Seat", + [48541] = "Short Wooden Seat", + [48542] = "Short Wooden Seat", + [48543] = "Campfire", + [48544] = "Campfire", + [48545] = "Short Wooden Seat", + [48546] = "Short Wooden Seat", + [48547] = "Dwarven Campfire", + [48548] = "Short Wooden Seat", + [48549] = "Short Wooden Seat", + [48550] = "Short Wooden Seat", + [48551] = "Short Wooden Seat", + [48552] = "Dwarven Campfire", + [48553] = "Short Wooden Seat", + [48554] = "Dwarven Campfire", + [48555] = "Dwarven Campfire", + [48556] = "Dwarven Campfire", + [48557] = "Dwarven Campfire", + [48558] = "Dwarven Campfire", + [48559] = "Dwarven Campfire", + [48560] = "Short Wooden Seat", + [48561] = "Short Wooden Seat", + [48562] = "Short Wooden Seat", + [48563] = "Short Wooden Seat", + [48564] = "Short Wooden Seat", + [48565] = "Short Wooden Seat", + [48566] = "Short Wooden Seat", + [48567] = "Short Wooden Seat", + [48568] = "Short Wooden Seat", + [48569] = "Short Wooden Seat", + [48570] = "Dwarven Campfire", + [48571] = "Short Wooden Seat", + [48572] = "Short Wooden Seat", + [48573] = "Short Wooden Seat", + [48574] = "Short Wooden Seat", + [48575] = "Short Wooden Seat", + [48576] = "Dwarven Campfire", + [49485] = "Warm Fire", + [49486] = "Warm Fire", + [49487] = "Burning Embers", + [50445] = "Burning Embers", + [50446] = "Burning Embers", + [50447] = "Burning Embers", + [50448] = "Burning Embers", + [50449] = "Burning Embers", + [50450] = "Burning Embers", + [50468] = "Anvil", + [50469] = "Thunder Bluff Forge", + [50484] = "Cloudweaver\'s Baskets", + [50485] = "Dawnstrider Enchanters", + [50486] = "Bena\'s Alchemy", + [50487] = "Holistic Herbalism", + [50488] = "Thunder Bluff Armorers", + [50489] = "Thunderhorn\'s Archery", + [50490] = "Fruits and Vegetables", + [50491] = "Breads and Grains", + [50492] = "Thunder Bluff Bank", + [50493] = "Karn\'s Smithy", + [50494] = "Hunter Rise", + [50495] = "Spirit Rise", + [50496] = "Elevator to Mulgore", + [50497] = "Spirit Rise", + [50498] = "Hunter Rise", + [50499] = "Elevator to Mulgore", + [50500] = "Spirit Rise", + [50501] = "Hunter Rise", + [50502] = "Elevator to Mulgore", + [50503] = "Thunder Bluff Weapons", + [50504] = "Stonehoof Geology", + [50505] = "Thunder Bluff Civic Information", + [50506] = "Elevator to Mulgore", + [50507] = "Elder Rise", + [50508] = "Elder Rise", + [50509] = "Elevator to Mulgore", + [50510] = "Spirit Rise", + [50511] = "Spirit Rise", + [50512] = "Elder Rise", + [50513] = "Elevator to Mulgore", + [50514] = "Spirit Rise", + [50515] = "Hunter Rise", + [50516] = "Elevator to Mulgore", + [50517] = "Elder Rise", + [50518] = "Spirit Rise", + [50519] = "Elder Rise", + [50520] = "Elder Rise Drums", + [50521] = "Kodo Steak and Ribs", + [50522] = "Mountaintop Bait & Tackle", + [50523] = "Winterhoof Totems", + [50524] = "Aska\'s Kitchen", + [50525] = "Thunderhoof\'s Firearms", + [50526] = "Spirit Rise", + [50527] = "Hunter Rise", + [50528] = "Elevator to Mulgore", + [50529] = "Elder Rise", + [50530] = "Hunter Rise", + [50531] = "Hunter Rise", + [50532] = "Elder Rise", + [50533] = "Hunter Rise", + [50534] = "Elder Rise", + [50535] = "Rainsticks", + [50536] = "Hunter\'s Hall", + [50537] = "Hall of Elders", + [50538] = "Hall of Spirits", + [50547] = "Burning Embers", + [50548] = "Burning Embers", + [50549] = "Burning Embers", + [50803] = "Burning Embers", + [50804] = "Burning Embers", + [50805] = "Burning Embers", + [50830] = "Stone Anvil", + [50831] = "Forge", + [50910] = "Bonfire", + [50935] = "Sack of Corn", + [50936] = "Sack of Barley", + [50937] = "Sack of Rye", + [50961] = "Malem Chest", + [50982] = "The Charred Oak", + [50983] = "Heated Forge", + [50984] = "Heated Forge", + [50985] = "Heated Forge", + [50986] = "Bonfire", + [50987] = "Bonfire", + [50988] = "Bonfire", + [50989] = "Bonfire", + [51681] = "Campfire", + [51702] = "Anvil", + [51703] = "Anvil", + [51704] = "Anvil", + [51705] = "Anvil", + [51706] = "Anvil", + [51707] = "Anvil", + [51708] = "Eliza\'s Grave Dirt", + [51948] = "Anvil", + [51949] = "Forge", + [51950] = "Bonfire", + [52175] = "Forge", + [52176] = "Forge", + [55250] = "Tall Brazier", + [55535] = "Campfire", + [55615] = "Campfire", + [55616] = "Bonfire", + [55774] = "Ragetotem Arms", + [56818] = "Campfire", + [56819] = "Campfire", + [56820] = "Campfire", + [56821] = "Campfire", + [56897] = "Forge", + [56898] = "Plate-n-Chain", + [56901] = "Tan-Your-Hide Leatherworks", + [56903] = "Good Food", + [56905] = "Swift Flights", + [56910] = "The Salty Sailor Tavern", + [56911] = "Stranglethorn Trust Bank", + [57708] = "Lamppost", + [57709] = "Lamppost", + [57710] = "Lamppost", + [57725] = "Lamppost", + [57726] = "Lamppost", + [57727] = "Lamppost", + [57748] = "Lamppost", + [57749] = "Lamppost", + [57750] = "Lamppost", + [57751] = "Lamppost", + [57752] = "Lamppost", + [57753] = "Lamppost", + [58369] = "Stolen Iron Chest", + [58388] = "Brazier", + [58389] = "Brazier", + [58595] = "Burning Blade Stash", + [58596] = "Weapons", + [58597] = "Bat Handler", + [58598] = "General Goods", + [58599] = "General Goods", + [58600] = "Light Armor", + [58601] = "Bank", + [58602] = "Bank", + [58603] = "Bank", + [58604] = "Bank", + [58605] = "Heavy Armor", + [58606] = "Cooking", + [58607] = "Tabards", + [58608] = "Guild Creation", + [58609] = "Engineering", + [58610] = "Alchemist", + [58611] = "Relic Vendor", + [58612] = "Reagent Vendor", + [58613] = "Alchemist", + [58614] = "Enchantment", + [58615] = "Herbalist", + [58616] = "Weapons Merchants", + [58617] = "Blacksmith", + [58618] = "Bow Merchant", + [58619] = "Gunsmith", + [58620] = "Mining", + [58621] = "Daggers", + [58622] = "Leather Work", + [58623] = "First Aid", + [58624] = "Bag Vendor", + [58625] = "Poison", + [58626] = "Cartography", + [58627] = "Book Dealer", + [58629] = "Staff Merchant", + [59517] = "All Things Flora", + [59518] = "Nautical Needs", + [59529] = "Cauldron", + [59530] = "Cauldron", + [59845] = "The Old Port Authority", + [59846] = "Kalimdor Airlines", + [59847] = "Cuts-N-Bruises Incorporated", + [59848] = "Southern Skies Platform", + [59850] = "Boucher\'s Cauldron", + [59851] = "A Tailor to Cities", + [59852] = "The Happy Bobber", + [59853] = "Stove", + [59854] = "Stove", + [59855] = "Stove", + [59856] = "Stove", + [59857] = "Stove", + [59858] = "Stove", + [59859] = "Stove", + [59860] = "Stove", + [59861] = "Stove", + [59862] = "Stove", + [59863] = "Stove", + [59864] = "Stove", + [59865] = "Stove", + [59990] = "Campfire", + [60393] = "Campfire", + [60394] = "Campfire", + [60395] = "Wooden Chair", + [60438] = "Wooden Chair", + [60439] = "Wooden Chair", + [60440] = "Wooden Chair", + [61035] = "Anvil", + [61036] = "Anvil", + [61037] = "Dwarven Fire", + [61038] = "Dwarven Fire", + [61039] = "Dwarven Fire", + [61040] = "Wooden Chair", + [61041] = "Wooden Chair", + [61042] = "Wooden Chair", + [61043] = "Wooden Chair", + [61044] = "Wooden Chair", + [61045] = "Wooden Chair", + [61046] = "Wooden Chair", + [61047] = "Wooden Chair", + [61048] = "Wooden Chair", + [61049] = "Wooden Chair", + [61050] = "Wooden Chair", + [61051] = "Wooden Chair", + [61052] = "Wooden Chair", + [61053] = "Wooden Chair", + [61054] = "Wooden Chair", + [61055] = "Wooden Chair", + [61056] = "Wooden Chair", + [61057] = "Wooden Chair", + [61058] = "Wooden Chair", + [61059] = "Wooden Chair", + [61060] = "Wooden Chair", + [61061] = "Wooden Chair", + [61062] = "Wooden Chair", + [61063] = "Wooden Chair", + [61064] = "Wooden Chair", + [61065] = "Wooden Chair", + [61066] = "Wooden Chair", + [61067] = "Wooden Chair", + [61068] = "Wooden Chair", + [61069] = "Wooden Chair", + [61070] = "Wooden Chair", + [61071] = "Wooden Chair", + [61072] = "Wooden Chair", + [61073] = "Wooden Chair", + [61074] = "Wooden Chair", + [61075] = "Wooden Chair", + [61076] = "Wooden Chair", + [61077] = "Wooden Chair", + [61078] = "Wooden Chair", + [61079] = "Wooden Chair", + [61080] = "Wooden Chair", + [61081] = "Wooden Chair", + [61082] = "Wooden Chair", + [61083] = "Wooden Chair", + [61084] = "Wooden Chair", + [61085] = "Wooden Chair", + [61086] = "Wooden Chair", + [61087] = "Wooden Chair", + [61088] = "Wooden Chair", + [61089] = "Wooden Chair", + [61090] = "Wooden Chair", + [61091] = "Wooden Chair", + [61092] = "Wooden Chair", + [61093] = "Wooden Chair", + [61094] = "Wooden Chair", + [61095] = "Mechanic Stool", + [61096] = "Mechanic Stool", + [61097] = "Mechanic Stool", + [61098] = "Mechanic Stool", + [61099] = "Mechanic Stool", + [61100] = "Mechanic Stool", + [61101] = "Mechanic Stool", + [61102] = "Mechanic Stool", + [61918] = "Deep South Tannery", + [61919] = "Wooden Chair", + [61920] = "Wooden Chair", + [61921] = "Wooden Chair", + [61922] = "Wooden Chair", + [61923] = "Wooden Chair", + [61924] = "Wooden Chair", + [61925] = "Wooden Chair", + [61927] = "Bonfire", + [61928] = "Bonfire", + [61929] = "Bonfire", + [61934] = "Brazier of the Dormant Flame", + [61935] = "Regulator Valve", + [61936] = "Fuel Control Valve", + [61952] = "Campfire", + [61953] = "Brazier", + [63195] = "Stormwind Visitor\'s Center", + [63196] = "Bonfire", + [63197] = "Cathedral Square", + [63198] = "Cathedral Square", + [63674] = "Shaman Shrine", + [64849] = "Bonfire", + [64850] = "Bonfire", + [64856] = "Wooden Chair", + [64857] = "Wooden Chair", + [64858] = "Wooden Chair", + [64859] = "Wooden Chair", + [64860] = "Wooden Chair", + [64861] = "Wooden Chair", + [64862] = "Wooden Chair", + [64863] = "Wooden Chair", + [65407] = "Graznab\'s Machine", + [66780] = "Lionheart Armory", + [67234] = "Fire Totem", + [68865] = "Snufflenose Command Sticks", + [69282] = "Campfire", + [69421] = "Campfire", + [69422] = "Bonfire", + [69423] = "Campfire", + [69424] = "Campfire", + [69425] = "Bonfire", + [69426] = "Bonfire", + [69427] = "Bonfire", + [69428] = "Bonfire", + [69429] = "Campfire", + [69430] = "Campfire", + [69431] = "Campfire", + [69432] = "Campfire", + [69433] = "Campfire", + [69434] = "Campfire", + [69435] = "Campfire", + [69436] = "Campfire", + [69437] = "Campfire", + [69438] = "Bonfire", + [70517] = "Lamppost", + [70518] = "Lamppost", + [70519] = "Lamppost", + [70520] = "Lamppost", + [70521] = "Lamppost", + [70522] = "Lamppost", + [70523] = "Lamppost", + [70524] = "Lamppost", + [70525] = "Lamppost", + [70526] = "Lamppost", + [70527] = "Lamppost", + [70528] = "Lamppost", + [70530] = "Lamppost", + [70531] = "Lamppost", + [70532] = "Lamppost", + [70533] = "Lamppost", + [70534] = "Lamppost", + [70535] = "Lamppost", + [70536] = "Lamppost", + [70537] = "Lamppost", + [70538] = "Lamppost", + [70539] = "Lamppost", + [70540] = "Lamppost", + [70541] = "Lamppost", + [70542] = "Lamppost", + [70543] = "Lamppost", + [70544] = "Lamppost", + [70545] = "Lamppost", + [70546] = "Lamppost", + [70547] = "Lamppost", + [70548] = "Lamppost", + [70549] = "Lamppost", + [70551] = "Lamppost", + [70552] = "Lamppost", + [70553] = "Lamppost", + [70554] = "Lamppost", + [70555] = "Lamppost", + [70556] = "Lamppost", + [70557] = "Lamppost", + [73939] = "Ooze Covered Iron Deposit", + [73940] = "Ooze Covered Silver Vein", + [73941] = "Ooze Covered Gold Vein", + [74075] = "Cauldron", + [74076] = "Cauldron", + [74077] = "Cauldron", + [74078] = "Cauldron", + [74091] = "The Salty Sailor Tavern", + [74135] = "Campfire", + [74138] = "Brazier", + [74146] = "Bonfire", + [74439] = "Brazier", + [74440] = "Brazier", + [74441] = "Brazier", + [74442] = "Brazier", + [74443] = "Smoked Meat Rack", + [74444] = "Brazier", + [74445] = "Smoked Meat Rack", + [74446] = "Smoked Meat Rack", + [74447] = "Large Iron Bound Chest", + [74448] = "Large Solid Chest", + [74727] = "Bonfire", + [74728] = "Smoked Meat Rack", + [74729] = "Brazier", + [74730] = "Brazier", + [75293] = "Large Battered Chest", + [75295] = "Large Iron Bound Chest", + [75296] = "Large Iron Bound Chest", + [75297] = "Large Iron Bound Chest", + [75298] = "Large Solid Chest", + [75299] = "Large Solid Chest", + [75300] = "Large Solid Chest", + [77813] = "Anvil", + [80022] = "Plunger", + [80023] = "Vator", + [80024] = "Rail", + [82136] = "Lamppost", + [82137] = "Lamppost", + [82138] = "Lamppost", + [82139] = "Lamppost", + [82140] = "Lamppost", + [83763] = "Stolen Books", + [85556] = "Vator2", + [85562] = "Ironband\'s Strongbox", + [85563] = "Dead-tooth\'s Strongbox", + [86492] = "Crate of Elunite", + [88496] = "Campfire", + [88497] = "Campfire", + [88498] = "Campfire", + [89634] = "Iron Coral", + [89635] = "Sunscorched Shell", + [89931] = "Bath\'rah\'s Cauldron", + [90000] = "Big house", + [90566] = "Workshop Door", + [90567] = "Lever", + [90858] = "Workshop Door", + [91138] = "Jordan\'s Hammer", + [91672] = "Wooden Chair", + [91673] = "Stove", + [91692] = "Boomstick Imports East", + [91706] = "Campfire", + [91737] = "Campfire", + [91738] = "Campfire", + [92011] = "Grimand\'s Anvil", + [92013] = "Tome of the Cabal", + [92015] = "Summoning Circle", + [92065] = "Campfire", + [92066] = "Bonfire", + [92067] = "Bonfire", + [92098] = "Bonfire", + [92099] = "Cauldron", + [92140] = "Campfire", + [92141] = "Campfire", + [92142] = "Campfire", + [92143] = "Campfire", + [92252] = "Strahad\'s Summoning Circle", + [92254] = "Bonfire", + [92388] = "Summoning Circle", + [92419] = "Anvil", + [92420] = "Bailor\'s Ore", + [92423] = "Damaged Chest", + [92424] = "Campfire", + [92425] = "Steaming Concoction", + [92426] = "Pickled Sludge", + [92427] = "Smoked Meat Rack", + [92458] = "Campfire", + [92489] = "Anvil", + [92490] = "Forge", + [92524] = "Guild", + [92525] = "Argent Dawn", + [92526] = "Alchemy", + [92527] = "Bags", + [92528] = "General Goods", + [92529] = "Enchanting", + [92530] = "Enchanting", + [92531] = "Robe", + [92532] = "Staff", + [92533] = "Leatherworking", + [92534] = "Tailoring", + [92535] = "General Trade", + [92536] = "General Trade", + [92537] = "First Aid", + [92538] = "Cooking", + [92539] = "Weapons", + [92540] = "Weapons", + [92541] = "Weapons", + [92542] = "Weapons", + [92543] = "Thrown Weapons", + [92544] = "Fletcher", + [92545] = "Mail Armor", + [92546] = "Shields", + [92547] = "Shields", + [92548] = "Mail Armor", + [92549] = "Cloth Armor", + [92550] = "Leather Armor", + [92551] = "Two Handed Weapons", + [92552] = "Two Handed Weapons", + [92693] = "General Goods", + [92694] = "Bags", + [92695] = "Fletcher", + [92696] = "Thrown Weapons", + [92699] = "Leatherworking", + [92700] = "Tailoring", + [92703] = "Bench", + [93192] = "Heartswood", + [94039] = "Shrine of Gelihast", + [94040] = "Altar of the Deeps", + [94183] = "Bonfire", + [94184] = "Bonfire", + [94185] = "Bonfire", + [94186] = "Bonfire", + [94187] = "Bonfire", + [94188] = "Bonfire", + [94189] = "Bonfire", + [94190] = "Bonfire", + [94191] = "Bonfire", + [95449] = "Cloth Armor", + [97700] = "Secret Door", + [97701] = "Torch", + [97801] = "Fine Chair", + [97802] = "Fine Chair", + [97803] = "Fine Chair", + [98343] = "War Quarter", + [98347] = "Trade Quarter", + [98348] = "Trade Quarter", + [98349] = "War Quarter", + [98350] = "Trade Quarter", + [98351] = "Magic Quarter", + [98354] = "Trade Quarter", + [100028] = "Shaman Shrine", + [100035] = "Shaman Shrine", + [101748] = "Shaman Shrine", + [101749] = "Shaman Shrine", + [101750] = "Shaman Shrine", + [101751] = "Shaman Shrine", + [101766] = "Wooden Chair", + [101767] = "Wooden Chair", + [101768] = "Wooden Chair", + [101769] = "Wooden Chair", + [101770] = "Wooden Chair", + [101771] = "Wooden Chair", + [101772] = "Wooden Chair", + [101773] = "Wooden Chair", + [101774] = "Wooden Chair", + [101775] = "Wooden Chair", + [101776] = "Wooden Chair", + [101777] = "Wooden Chair", + [101778] = "Wooden Chair", + [101779] = "Wooden Chair", + [101811] = "Lever", + [101812] = "Lever", + [101831] = "Door Lever", + [101832] = "Door Lever", + [101833] = "Door Lever", + [101834] = "Door Lever", + [101835] = "Wooden Chair", + [101836] = "Wooden Chair", + [101837] = "Wooden Chair", + [101838] = "Wooden Chair", + [101839] = "Wooden Chair", + [101840] = "Wooden Chair", + [101841] = "Wooden Chair", + [101842] = "Wooden Chair", + [101843] = "Wooden Chair", + [101844] = "Wooden Chair", + [101845] = "Wooden Chair", + [101846] = "Wooden Chair", + [101847] = "Wooden Chair", + [101848] = "Wooden Chair", + [101849] = "Wooden Chair", + [101850] = "Cathedral Door", + [101851] = "Armory Door", + [101852] = "Lever", + [101853] = "Lever", + [101854] = "Herod\'s Door", + [101855] = "Lever", + [102413] = "Verigan\'s Fist", + [102984] = "Bink\'s Toolbox", + [102985] = "Balnir Snapdragons", + [102986] = "Ju-Ju Heap", + [102988] = "Short Wooden Seat", + [102989] = "Short Wooden Seat", + [102990] = "Dwarven Campfire", + [102991] = "Short Wooden Seat", + [102992] = "Short Wooden Seat", + [102993] = "Dwarven Campfire", + [102994] = "Short Wooden Seat", + [102995] = "Short Wooden Seat", + [102996] = "Short Wooden Seat", + [102997] = "Short Wooden Seat", + [102998] = "Short Wooden Seat", + [102999] = "Short Wooden Seat", + [103000] = "Short Wooden Seat", + [103001] = "Short Wooden Seat", + [103002] = "Short Wooden Seat", + [103003] = "Dwarven Campfire", + [103004] = "Short Wooden Seat", + [103005] = "Short Wooden Seat", + [103006] = "Short Wooden Seat", + [103007] = "Short Wooden Seat", + [103009] = "Short Wooden Seat", + [103010] = "Short Wooden Seat", + [103011] = "Dwarven Campfire", + [103012] = "Short Wooden Seat", + [103015] = "Shrine of Gelihast", + [103016] = "Altar of the Deeps", + [103574] = "Filled Containment Coffer", + [103575] = "Containment Coffer TRAP", + [103600] = "Andron\'s Bookshelf", + [103628] = "Ur\'s Treatise on Shadow Magic", + [103660] = "Stone of Outer Binding Spell Focus", + [103661] = "Witherbark Totem Bundle TRAP", + [103662] = "Bolt Charged Bramble", + [103663] = "Cauldron", + [103664] = "Rituals of Power", + [103680] = "Mana Rift", + [103687] = "Campfire", + [103694] = "Campfire", + [103695] = "Campfire", + [103708] = "Mana Rift Disturbance", + [103711] = "Tin Vein", + [103713] = "Copper Vein", + [103727] = "Campfire", + [103728] = "Campfire", + [103729] = "Campfire", + [103748] = "Bonfire", + [103749] = "Bonfire", + [103750] = "Bonfire", + [103751] = "Bonfire", + [103770] = "Bonfire", + [103771] = "Bonfire", + [103772] = "Cauldron", + [103774] = "Standard Issue Tools", + [103793] = "Mage Quarter", + [103794] = "Cathedral Square", + [103795] = "Griffon Roost", + [103796] = "Old Town", + [103797] = "Wooden Chair", + [103798] = "Wooden Chair", + [103799] = "Wooden Chair", + [103800] = "Wooden Chair", + [103801] = "Wooden Chair", + [103802] = "Wooden Chair", + [103811] = "Wooden Chair", + [103812] = "Wooden Chair", + [103813] = "Mausoleum Seal", + [103815] = "Ambermill Strongbox", + [103819] = "Stone of Shy-Rotam", + [103820] = "Red Rocket", + [103821] = "Doan\'s Strongbox", + [104555] = "Anvil", + [104564] = "Bingles\'s Toolbucket", + [104569] = "Bingles\'s Toolbucket", + [104574] = "Bingles\'s Toolbucket", + [104575] = "Bingles\'s Blastencapper", + [104589] = "Lever", + [104591] = "Chapel Door", + [104592] = "Rituals of Power", + [104593] = "Mausoleum Trigger", + [104600] = "High Inquisitor\'s Door", + [105168] = "Skull Key", + [105169] = "Agamand Weapon Rack", + [105170] = "Agamand Weapon Rack", + [105171] = "Agamand Weapon Rack", + [105172] = "Agamand Weapon Rack", + [105173] = "Cauldron", + [105174] = "Chest of Containment Coffers", + [105175] = "Cantation of Manifestation", + [105176] = "Venture Co. Strongbox", + [105188] = "Trias\' Cheese", + [105568] = "Peasent Woodpile", + [105569] = "Silver Vein", + [105570] = "Alliance Strongbox", + [105576] = "Summoning Circle", + [105578] = "Horde Chest", + [105579] = "Alliance Chest", + [105581] = "Alliance Chest", + [106318] = "Battered Chest", + [106319] = "Battered Chest", + [106325] = "Blazing Fire", + [106326] = "Blazing Fire", + [106327] = "Blazing Fire", + [106335] = "Blazing Fire", + [106336] = "Blazing Fire", + [106528] = "Water Manifestation Effect", + [106529] = "Water Manifestation Aura", + [106638] = "Wooden Chair", + [106641] = "Wooden Chair", + [107037] = "Wooden Chair", + [107039] = "Wooden Chair", + [107040] = "Wooden Chair", + [107041] = "Wooden Chair", + [107042] = "Wooden Chair", + [107044] = "Shaman Holy Lake", + [107045] = "Spring Well", + [107046] = "Quilboar Watering Hole", + [107047] = "Ruins of Stardust Fountain", + [109515] = "Night Elven Bear Trap", + [110230] = "Bonfire", + [110231] = "Bonfire", + [110232] = "Bonfire", + [110233] = "Bonfire", + [110234] = "Bonfire", + [110235] = "Campfire", + [110236] = "Campfire", + [111094] = "Gallina Winery", + [111095] = "Alliance Chest", + [111148] = "Night Elven Bear Trap", + [111149] = "Campfire", + [111202] = "Dwarven Fire", + [111203] = "Dwarven Fire", + [111204] = "Dwarven Fire", + [111205] = "Dwarven Fire", + [111206] = "Dwarven Fire", + [111207] = "Dwarven Fire", + [111212] = "Wooden Chair", + [111215] = "Wooden Chair", + [111216] = "Wooden Chair", + [111217] = "Wooden Chair", + [111220] = "Wooden Chair", + [111221] = "Wooden Chair", + [111222] = "Wooden Chair", + [111223] = "Wooden Chair", + [111224] = "Wooden Chair", + [111225] = "Wooden Chair", + [111226] = "Wooden Chair", + [111227] = "Wooden Chair", + [111254] = "Dwarven Fire", + [111255] = "Dwarven Fire", + [111256] = "Dwarven Fire", + [111257] = "Dwarven Fire", + [111258] = "Dwarven Fire", + [111259] = "Dwarven Fire", + [111260] = "Wooden Chair", + [111261] = "Wooden Chair", + [111262] = "Wooden Chair", + [111265] = "Wooden Chair", + [111266] = "Wooden Chair", + [111268] = "Wooden Chair", + [111269] = "Wooden Chair", + [111271] = "Wooden Chair", + [111839] = "Bonfire", + [111942] = "Wooden Chair", + [111943] = "Wooden Chair", + [111945] = "Wooden Chair", + [111946] = "Wooden Chair", + [111948] = "Wooden Chair", + [111949] = "Wooden Chair", + [111950] = "Wooden Chair", + [111969] = "Wooden Chair", + [111973] = "Wooden Chair", + [111974] = "Wooden Chair", + [111979] = "Wooden Chair", + [111993] = "Wooden Chair", + [111994] = "Wooden Chair", + [111995] = "Wooden Chair", + [111996] = "Wooden Chair", + [111998] = "Wooden Chair", + [112000] = "Wooden Chair", + [112012] = "Wooden Chair", + [112015] = "Wooden Chair", + [112023] = "Wooden Chair", + [112024] = "Wooden Chair", + [112028] = "Wooden Chair", + [112042] = "Wooden Chair", + [112043] = "Wooden Chair", + [112044] = "Wooden Chair", + [112045] = "Wooden Chair", + [112048] = "Wooden Chair", + [112049] = "Wooden Chair", + [112050] = "Wooden Chair", + [112051] = "Wooden Chair", + [112052] = "Wooden Chair", + [112053] = "Wooden Chair", + [112054] = "Wooden Chair", + [112055] = "Wooden Chair", + [112058] = "Wooden Chair", + [112059] = "Wooden Chair", + [112060] = "Wooden Chair", + [112061] = "Wooden Chair", + [112062] = "Wooden Chair", + [112065] = "Wooden Chair", + [112066] = "Wooden Chair", + [112068] = "Wooden Chair", + [112070] = "Wooden Chair", + [112071] = "Wooden Chair", + [112072] = "Wooden Chair", + [112073] = "Wooden Chair", + [112074] = "Wooden Chair", + [112079] = "Wooden Chair", + [112192] = "Chair", + [112194] = "Chair", + [112195] = "Chair", + [112196] = "Chair", + [112197] = "Chair", + [112198] = "Chair", + [112199] = "Chair", + [112200] = "Chair", + [112201] = "Chair", + [112202] = "Chair", + [112204] = "Chair", + [112205] = "Chair", + [112214] = "Chair", + [112215] = "Chair", + [112216] = "Chair", + [112217] = "Chair", + [112223] = "Chair", + [112231] = "Chair", + [112232] = "Chair", + [112234] = "Chair", + [112235] = "Chair", + [112236] = "Chair", + [112237] = "Chair", + [112238] = "Chair", + [112239] = "Chair", + [112241] = "Chair", + [112301] = "Wooden Chair", + [112302] = "Wooden Chair", + [112303] = "Wooden Chair", + [112305] = "Wooden Chair", + [112308] = "Wooden Chair", + [112309] = "Wooden Chair", + [112310] = "Wooden Chair", + [112311] = "Wooden Chair", + [112312] = "Wooden Chair", + [112316] = "Wooden Chair", + [112317] = "Wooden Chair", + [112318] = "Wooden Chair", + [112319] = "Wooden Chair", + [112321] = "Wooden Chair", + [112322] = "Wooden Chair", + [112877] = "Talvash\'s Scrying Bowl", + [112879] = "Bonefire", + [112881] = "Cooking Fire", + [112888] = "Dusty Shelf", + [112898] = "The Gilded Rose", + [112899] = "Wooden Chair", + [112900] = "Wooden Chair", + [112901] = "Wooden Chair", + [112902] = "Wooden Chair", + [112903] = "Wooden Chair", + [112904] = "Wooden Chair", + [112905] = "Wooden Chair", + [112906] = "Wooden Chair", + [112907] = "Wooden Chair", + [112948] = "Intrepid\'s Locked Strongbox", + [113528] = "Spiritual Healing", + [113529] = "Arathi Cannon Fire", + [113531] = "Cannon", + [113540] = "Campfire", + [113568] = "Rogues\' Quarter", + [113569] = "Rogues\' Quarter", + [113570] = "The Apothecarium", + [113571] = "The Apothecarium", + [113572] = "War Quarter", + [113574] = "War Quarter", + [113575] = "Rogues\' Quarter", + [113576] = "Magic Quarter", + [113577] = "Rogues\' Quarter", + [113752] = "Inn", + [113753] = "Anvil", + [113754] = "Forge", + [113755] = "Rogues\' Quarter", + [113756] = "Rogues\' Quarter", + [113757] = "Shadowforge Cache", + [113768] = "Brightly Colored Egg", + [113769] = "Brightly Colored Egg", + [113770] = "Brightly Colored Egg", + [113771] = "Brightly Colored Egg", + [113772] = "Brightly Colored Egg", + [113791] = "Brazier of Everfount", + [120584] = "Campfire", + [121264] = "Lucius\'s Lockbox", + [122088] = "Containment Coffer", + [123207] = "Goblin Smelting Pot", + [123208] = "Goblin Smelting Pot", + [123209] = "Goblin Smelting Pot", + [123210] = "Goblin Smelting Pot", + [123211] = "Foundry Anvil", + [123212] = "Foundry Anvil", + [123213] = "Foundry Anvil", + [123214] = "Duskwood Chest", + [123215] = "This Way", + [123216] = "The Other Way", + [123217] = "That Way", + [123244] = "Anvil", + [123309] = "Ooze Covered Truesilver Deposit", + [123310] = "Ooze Covered Mithril Deposit", + [123328] = "Campfire", + [123329] = "Baelog\'s Chest", + [123330] = "Buccaneer\'s Strongbox", + [123331] = "Buccaneer\'s Strongbox", + [123332] = "Buccaneer\'s Strongbox", + [123333] = "Buccaneer\'s Strongbox", + [123334] = "The Punisher (DND)", + [123355] = "Rat Bomb Trap", + [123462] = "The Jewel of the Southsea", + [123463] = "Baelog\'s Journal", + [123848] = "Ooze Covered Thorium Vein", + [124072] = "Duskwood Chest", + [124367] = "Temple Door", + [124368] = "Temple Door", + [124369] = "The Ancient Vault", + [124370] = "Echomok Door", + [124371] = "Keystone", + [124372] = "Seal of Khaz\'Mul", + [124374] = "Horatio Montgomery, M.D.", + [124388] = "Garrett Family Chest", + [124389] = "Krom Stoutarm\'s Chest", + [125475] = "Bonfire", + [125477] = "Conspicuous Urn", + [126046] = "Dwarven District", + [126049] = "Magenta Cap Clusters", + [126050] = "Bench", + [126051] = "Bench", + [126052] = "Bench", + [126053] = "Bench", + [126158] = "Tallonkai\'s Dresser", + [126260] = "Ancient Chest", + [126312] = "Bonfire", + [126313] = "Bonfire", + [126314] = "Bonfire", + [126335] = "Bonfire", + [128196] = "Magenta Cap Clusters Trap", + [128293] = "Magenta Cap Clusters", + [128308] = "Shallow Grave", + [128403] = "Shallow Grave", + [128972] = "Shallow Grave TRAP", + [129127] = "Gallywix\'s Lockbox", + [129206] = "Campfire", + [130125] = "The Five Deadly Venoms", + [130126] = "Gallywix\'s Lockbox", + [130358] = "Chemical Bomb", + [130511] = "Altar of The Keepers", + [130666] = "Anvil", + [130667] = "Anvil", + [130668] = "Forge", + [131474] = "The Discs of Norgannon", + [131978] = "Large Mithril Bound Chest", + [131979] = "Large Darkwood Chest", + [133234] = "Altar of Archaedas", + [133466] = "Bench", + [133467] = "Bench", + [133468] = "Bench", + [133469] = "Bench", + [136101] = "Tailor", + [136922] = "Bonfire", + [136923] = "Bonfire", + [136925] = "Blazing Fire", + [136926] = "Blazing Fire", + [136927] = "Blazing Fire", + [136928] = "Blazing Fire", + [136929] = "Chair", + [136930] = "Chair", + [136931] = "Bench", + [136932] = "Chair", + [136933] = "Chair", + [136934] = "Chair", + [136935] = "Chair", + [136936] = "Bench", + [136937] = "Bench", + [136938] = "Bench", + [136939] = "Chair", + [136940] = "Chair", + [136941] = "Chair", + [136942] = "Chair", + [136943] = "Chair", + [136944] = "Chair", + [136945] = "Bench", + [136946] = "Bench", + [136947] = "Fire", + [136948] = "Fire", + [136949] = "Fire", + [136950] = "Fire", + [136951] = "Fire", + [136952] = "Fire", + [136954] = "Bonfire", + [136955] = "Fire", + [136957] = "Bonfire", + [136959] = "Bonfire", + [136961] = "Bonfire", + [136962] = "Bonfire", + [136963] = "Bonfire", + [136964] = "Bonfire", + [136965] = "Bonfire", + [136966] = "Bonfire", + [137167] = "Nether Rift", + [137644] = "The Forlorn Cavern", + [137646] = "The Military Ward", + [137647] = "Dwarven Brazier", + [138316] = "Anvil", + [138317] = "Forge", + [138318] = "Bonfire", + [138492] = "Shards of Myzrael", + [138493] = "Doors", + [138496] = "HornCover", + [138497] = "Mouthpiece Mount", + [138498] = "Temple of the Moon Fountain", + [138614] = "Wooden Chair", + [139852] = "Memorial to Sully Balloo", + [140105] = "Fierce Blaze", + [140106] = "Fierce Blaze", + [140107] = "Fierce Blaze", + [140108] = "Fierce Blaze", + [140109] = "Fierce Blaze", + [140110] = "Fierce Blaze", + [140111] = "Fierce Blaze", + [140112] = "Fierce Blaze", + [140113] = "Fierce Blaze", + [140211] = "Campfire", + [140212] = "Campfire", + [140213] = "Campfire", + [140214] = "Campfire", + [140357] = "Campfire", + [140358] = "Smoldering Coals", + [140359] = "Smoldering Coals", + [140360] = "Campfire", + [140372] = "Bench", + [140373] = "Bench", + [140374] = "Bench", + [140375] = "Bench", + [140376] = "Bench", + [140378] = "Bench", + [140379] = "Bench", + [140380] = "Bench", + [140381] = "Bench", + [140382] = "Bench", + [140383] = "Bench", + [140384] = "Bench", + [140385] = "Bench", + [140386] = "Bench", + [140387] = "Bench", + [140388] = "Bench", + [140389] = "Bench", + [140390] = "Bench", + [140391] = "Bench", + [140392] = "Bench", + [140393] = "Bench", + [140394] = "Bench", + [140395] = "Bench", + [140396] = "Bench", + [140397] = "Bench", + [140398] = "Bench", + [140399] = "Bench", + [140400] = "Bench", + [140401] = "Bench", + [140402] = "Bench", + [140403] = "Bench", + [140439] = "Chair", + [140908] = "Mailbox", + [140911] = "Spool of Light Chartreuse Silk Thread", + [140931] = "Bonfire", + [140971] = "Gahz\'ridian", + [141069] = "Campfire", + [141070] = "Troll Cage", + [141071] = "Troll Cage", + [141072] = "Troll Cage", + [141073] = "Troll Cage", + [141074] = "Troll Cage", + [141076] = "Sun Rock Retreat", + [141077] = "Greatwood Vale", + [141078] = "The Barrens", + [141596] = "Witch Doctor\'s Chest", + [141610] = "Bonfire", + [141611] = "Bonfire", + [141612] = "[PH] Weegli\'s Armed Barrel", + [141812] = "Stone of Binding", + [141813] = "Campfire", + [141832] = "Gong of Zul\'Farrak", + [141838] = "Forge", + [141839] = "Anvil", + [141840] = "Anvil", + [141841] = "Forge", + [141843] = "Bonfire", + [141844] = "Campfire", + [141845] = "Cauldron", + [141851] = "Cauldron", + [141852] = "Bonfire", + [141853] = "Violet Tragan", + [141857] = "Stone of Binding", + [141858] = "Stone of Binding", + [141859] = "Stone of Binding", + [141860] = "Cannon", + [141861] = "Cannon", + [141862] = "Cannon", + [141863] = "Cannon", + [141869] = "Temple Door", + [141870] = "Campfire", + [141871] = "Campfire", + [141891] = "Razelikh\'s Tear", + [141892] = "Razelikh\'s Tear II", + [141931] = "Hippogryph Egg", + [141971] = "Bonfire", + [141972] = "Bonfire", + [141979] = "Ancient Treasure", + [141980] = "Spectral Lockbox", + [141981] = "Spectral Lockbox Particles", + [142018] = "Campfire", + [142019] = "Campfire", + [142020] = "Campfire", + [142021] = "Campfire", + [142036] = "Rin\'ji\'s Cage", + [142071] = "Egg-O-Matic", + [142073] = "Campfire", + [142075] = "Mailbox", + [142076] = "Clara\'s Fresh Apples", + [142077] = "Anvil", + [142078] = "Forge", + [142079] = "Campfire", + [142088] = "Tablet of Will", + [142089] = "Mailbox", + [142090] = "Bonfire", + [142091] = "Bonfire", + [142093] = "Mailbox", + [142094] = "Mailbox", + [142095] = "Mailbox", + [142101] = "Bonfire", + [142102] = "Mailbox", + [142103] = "Mailbox", + [142109] = "Mailbox", + [142110] = "Mailbox", + [142111] = "Mailbox", + [142117] = "Mailbox", + [142118] = "Bubbling Cauldron", + [142119] = "Mailbox", + [142121] = "Campfire", + [142122] = "Wanted Poster", + [142123] = "Campfire", + [142124] = "Campfire", + [142127] = "Rin\'ji\'s Secret", + [142131] = "Campfire", + [142139] = "Crackling Campfire", + [142140] = "Purple Lotus", + [142141] = "Arthas\' Tears", + [142142] = "Sungrass", + [142143] = "Blindweed", + [142144] = "Ghost Mushroom", + [142145] = "Gromsblood", + [142151] = "Sealed Barrel", + [142172] = "Transpolyporter BB", + [142175] = "Transpolyporter", + [142176] = "Transpolyporter", + [142179] = "Solarsal Gazebo", + [142180] = "Jintha\'Alor Alter", + [142181] = "Stolen Cargo", + [142184] = "Captain\'s Chest", + [142185] = "Flame of Byltan", + [142186] = "Flame of Lahassa", + [142187] = "Flame of Imbel", + [142188] = "Flame of Samha", + [142189] = "Inconspicuous Landmark", + [142191] = "Horde Supply Crate", + [142194] = "Pirate\'s Treasure!", + [142195] = "Woodpaw Battle Map", + [142196] = "Campfire", + [142197] = "Campfire", + [142198] = "Campfire", + [142207] = "The Final Chamber", + [142208] = "Gnome Face 04", + [142209] = "Gnome Face 03", + [142210] = "Gnome Face 02", + [142211] = "Gnome Face 01", + [142212] = "Gnome Face 06", + [142213] = "Gnome Face 05", + [142214] = "Button", + [142215] = "Button", + [142216] = "Button", + [142217] = "Button", + [142218] = "Button", + [142219] = "Button", + [142339] = "The Mystic Ward", + [142340] = "Dwarven Brazier", + [142341] = "Maeva\'s Mystical Apparel", + [142342] = "Campfire", + [142343] = "Uldum Pedestal", + [142344] = "Artificial Extrapolator", + [142345] = "Matrix Punchograph 3005-A", + [142475] = "Matrix Punchograph 3005-B", + [142476] = "Matrix Punchograph 3005-C", + [142477] = "Thermaplugg\'s Safe", + [142487] = "The Sparklematic 5200", + [142488] = "Doodad_G_HologramTrogg01", + [142689] = "Campfire", + [142690] = "Bubbling Cauldron", + [142691] = "Campfire", + [142692] = "Campfire", + [142693] = "Bubbling Cauldron", + [142694] = "Campfire", + [142695] = "Campfire", + [142696] = "Matrix Punchograph 3005-D", + [142697] = "Nimboya\'s Pike", + [142698] = "Witherbark Village", + [142700] = "Witherbark Village Spell Focus 02", + [142702] = "Venom Bottle", + [142703] = "Venom Bottle", + [142704] = "Venom Bottle", + [142705] = "Venom Bottle", + [142706] = "Venom Bottle", + [142707] = "Venom Bottle", + [142708] = "Venom Bottle", + [142709] = "Venom Bottle", + [142710] = "Venom Bottle", + [142711] = "Venom Bottle", + [142712] = "Venom Bottle", + [142713] = "Venom Bottle", + [142714] = "Venom Bottle", + [142715] = "Tablet of Theka", + [142716] = "Shadra\'Alor Altar", + [142837] = "Campfire", + [142838] = "The Mystic Ward", + [142851] = "Wooden Chair", + [142871] = "Dwarven Brazier", + [142872] = "Dwarven Brazier", + [142873] = "Traveling Fisherman", + [142874] = "Stoneblade\'s", + [142911] = "Wooden Chair", + [142912] = "Wooden Chair", + [142914] = "Wooden Chair", + [142915] = "Wooden Chair", + [142916] = "Wooden Chair", + [142947] = "Stone Chair", + [142948] = "Stone Chair", + [142958] = "Feralas: A History", + [142959] = "Chair", + [142960] = "Chair", + [142961] = "Chair", + [142962] = "Chair", + [142963] = "Chair", + [142964] = "Chair", + [142965] = "Bonfire", + [142966] = "Bonfire", + [142967] = "Bonfire", + [142968] = "Campfire", + [142969] = "Smoked Meat Rack", + [142970] = "Smoked Meat Rack", + [142971] = "Campfire", + [142972] = "Smoked Meat Rack", + [142973] = "Campfire", + [142974] = "Smoked Meat Rack", + [142976] = "Campfire", + [142977] = "Campfire", + [142978] = "Campfire", + [142979] = "Smoked Meat Rack", + [142980] = "Bonfire", + [143230] = "Transpolyporter DRBB", + [143242] = "Dwarven Brazier", + [143243] = "Dwarven Brazier", + [143244] = "Dwarven Brazier", + [143245] = "Dwarven Brazier", + [143246] = "Dwarven Brazier", + [143247] = "Dwarven Brazier", + [143249] = "Craghelm\'s Plate and Chain", + [143250] = "Dwarven Brazier", + [143251] = "Goldfury\'s Hunting Supplies", + [143253] = "Barim\'s Reagents", + [143254] = "Timberline Arms", + [143255] = "Bruuk\'s Corner", + [143256] = "The Fighting Wizard", + [143273] = "Dwarven Brazier", + [143295] = "Dwarven Brazier", + [143296] = "Dwarven Brazier", + [143297] = "Wooden Chair", + [143298] = "Wooden Chair", + [143299] = "Wooden Chair", + [143301] = "Dwarven Brazier", + [143314] = "Dwarven Brazier", + [143317] = "The Stonefire Tavern", + [143318] = "Dwarven Brazier", + [143319] = "Dwarven Brazier", + [143320] = "Dwarven Brazier", + [143321] = "Fizzlespinner\'s General Goods", + [143322] = "Ironforge Visitor\'s Center", + [143323] = "Dwarven Brazier", + [143324] = "Steelfury\'s Weapon Emporium", + [143325] = "Dwarven Brazier", + [143326] = "Dwarven Brazier", + [143328] = "Dwarven Brazier", + [143332] = "Flinthammer\'s Armorer and Clothier", + [143333] = "The Bronze Kettle", + [143334] = "Finespindle\'s Leather Goods", + [143336] = "Ironforge Physician", + [143337] = "Dwarven Brazier", + [143338] = "Thistlefuzz Arcanery", + [143342] = "Dwarven Brazier", + [143343] = "Stonebrow\'s Clothier", + [143344] = "Deep Mountain Mining Guild", + [143345] = "Dwarven Brazier", + [143346] = "Dwarven Brazier", + [143347] = "Dwarven Brazier", + [143348] = "Dwarven Brazier", + [143349] = "Dwarven Brazier", + [143362] = "Dwarven Brazier", + [143363] = "Dwarven Brazier", + [143379] = "Need Name", + [143397] = "Campfire", + [143398] = "Stove", + [143399] = "Broken Keel Tavern", + [143979] = "Cage Door", + [143980] = "Gordunni Scroll", + [143981] = "Mailbox", + [143982] = "Mailbox", + [143983] = "Mailbox", + [143984] = "Mailbox", + [143985] = "Mailbox", + [143986] = "Mailbox", + [143987] = "Mailbox", + [143988] = "Mailbox", + [143989] = "Mailbox", + [143990] = "Mailbox", + [143991] = "Smoked Meat Rack", + [144011] = "Mailbox", + [144013] = "Equinex Monolith Spell Focus (DND)", + [144050] = "Gordunni Trap", + [144053] = "Scrimshank\'s Surveying Gear", + [144054] = "Shay\'s Chest", + [144055] = "Stove", + [144063] = "Equinex Monolith", + [144064] = "Gordunni Dirt Mound", + [144065] = "Explosive Charge", + [144066] = "First Witherbark Cage", + [144067] = "Second Witherbark Cage", + [144068] = "Third Witherbark Cage", + [144069] = "Grimshade\'s Vision", + [144070] = "Sharpbeak\'s Cage", + [144071] = "Highvale Records", + [144072] = "Highvale Notes", + [144073] = "Highvale Report", + [144111] = "Smite\'s Chest", + [144112] = "Mailbox", + [144125] = "Mailbox", + [144126] = "Mailbox", + [144127] = "Mailbox", + [144128] = "Mailbox", + [144129] = "Mailbox", + [144130] = "Mailbox", + [144131] = "Mailbox", + [144132] = "Anvil", + [144133] = "Forge", + [144159] = "Dwarven Brazier", + [144162] = "Springspindle\'s Gadgets", + [144179] = "Mailbox", + [144180] = "Campfire", + [144181] = "Sword of the Barbarian King", + [144569] = "Edana Hatetalon Spell Focus (DND)", + [144570] = "Mailbox", + [146079] = "Plaguelands", + [146080] = "Undercity", + [146081] = "Brill", + [146082] = "Equinex Monolith Lights 1", + [146083] = "Equinex Monolith Lights 2", + [146084] = "End Door", + [146085] = "Cave In", + [146086] = "Cave In", + [146088] = "Bonfire", + [146089] = "Bonfire", + [146090] = "Bonfire", + [146091] = "Bonfire", + [146096] = "Sentinel\'s Bunkhouse", + [146441] = "Anvil", + [147036] = "Anvil", + [147037] = "Anvil", + [147038] = "Anvil", + [147039] = "Anvil", + [147040] = "Anvil", + [147041] = "Anvil", + [147042] = "Anvil", + [147043] = "Anvil", + [147044] = "Anvil", + [147045] = "Anvil", + [147046] = "Anvil", + [147047] = "Anvil", + [147048] = "Anvil", + [147049] = "Anvil", + [147065] = "Campfire", + [147078] = "Wooden Chair", + [147079] = "Wooden Chair", + [147080] = "Wooden Chair", + [147136] = "Horn of Margol the Rager", + [147279] = "Anvil", + [147282] = "Anvil", + [147283] = "Anvil", + [147284] = "Anvil", + [147285] = "Forge", + [147435] = "Bench", + [147436] = "Bench", + [147437] = "Bench", + [147438] = "Bench", + [147439] = "Bench", + [147440] = "Bench", + [147441] = "Bench", + [147442] = "Bench", + [147443] = "Bench", + [147444] = "Bench", + [147445] = "Bench", + [147446] = "Bench", + [147447] = "Bench", + [147448] = "Bench", + [147449] = "Bench", + [147450] = "Bench", + [147516] = "Dark Iron", + [147517] = "Dark Iron", + [147536] = "Bonfire", + [147537] = "Fresh Zhevra Carcass", + [147557] = "Stolen Silver", + [147742] = "Crude Brazier", + [147743] = "Crude Brazier", + [147744] = "Crude Brazier", + [147745] = "Crude Brazier", + [147746] = "Crude Brazier", + [147747] = "Crude Brazier", + [147748] = "Crude Brazier", + [147749] = "Crude Brazier", + [147750] = "Crude Brazier", + [147751] = "Crude Brazier", + [147752] = "Crude Brazier", + [147753] = "Crude Brazier", + [147754] = "Crude Brazier", + [147755] = "Crude Brazier", + [147756] = "Crude Brazier", + [147757] = "Crude Brazier", + [147758] = "Crude Brazier", + [147759] = "Crude Brazier", + [147760] = "Crude Brazier", + [147761] = "Crude Brazier", + [147762] = "Crude Brazier", + [147763] = "Crude Brazier", + [147764] = "Crude Brazier", + [147765] = "Crude Brazier", + [147766] = "Crude Brazier", + [147767] = "Crude Brazier", + [147768] = "Crude Brazier", + [147769] = "Crude Brazier", + [147770] = "Crude Brazier", + [147771] = "Crude Brazier", + [147786] = "Anvil", + [147787] = "Anvil", + [147792] = "Anvil", + [147793] = "Anvil", + [147823] = "Wooden Chair", + [147824] = "Wooden Chair", + [147825] = "Wooden Chair", + [147826] = "Wooden Chair", + [147827] = "Wooden Chair", + [147828] = "Wooden Chair", + [147829] = "Wooden Chair", + [147830] = "Wooden Chair", + [148418] = "Eternal Flame", + [148419] = "Eternal Flame", + [148420] = "Eternal Flame", + [148421] = "Eternal Flame", + [148422] = "Evil God Spell Focus (DND)", + [148423] = "Inn", + [148424] = "Kuruk\'s Goods", + [148425] = "Trade Goods and Supplies", + [148426] = "Hewa\'s Armory", + [148436] = "Campfire", + [148437] = "Campfire", + [148498] = "Altar of Suntara", + [148499] = "Felix\'s Box", + [148501] = "Corrupted Moonwell Spell Focus (DND)", + [148503] = "Fire Plume Ridge Hot Spot", + [148504] = "A Conspicuous Gravestone", + [148506] = "Twilight Artifact", + [148507] = "Circle of Aquementas", + [148511] = "Cauldron", + [148512] = "Essence Font", + [148513] = "Tablet of Jin\'yael", + [148514] = "Tablet of Markri", + [148515] = "Tablet of Sael\'hai", + [148516] = "Tablet of Beth\'Amara", + [148540] = "Wooden Chair", + [148544] = "Wooden Chair", + [148547] = "Wooden Chair", + [148549] = "Wooden Chair", + [148550] = "Wooden Chair", + [148551] = "Wooden Chair", + [148554] = "Wooden Chair", + [148556] = "Wooden Chair", + [148557] = "Wooden Chair", + [148567] = "Wooden Chair", + [148658] = "Chair", + [148659] = "Chair", + [148660] = "Chair", + [148661] = "Chair", + [148662] = "Chair", + [148663] = "Chair", + [148664] = "Chair", + [148665] = "Chair", + [148666] = "Chair", + [148668] = "Chair", + [148669] = "Chair", + [148670] = "Chair", + [148671] = "Chair", + [148672] = "Chair", + [148673] = "Chair", + [148674] = "Chair", + [148675] = "Chair", + [148676] = "Chair", + [148677] = "Chair", + [148679] = "Chair", + [148680] = "Chair", + [148681] = "Chair", + [148682] = "Chair", + [148683] = "Chair", + [148684] = "Chair", + [148685] = "Chair", + [148686] = "Chair", + [148687] = "Chair", + [148688] = "Chair", + [148689] = "Chair", + [148691] = "Chair", + [148692] = "Chair", + [148693] = "Chair", + [148694] = "Chair", + [148695] = "Chair", + [148696] = "Chair", + [148697] = "Chair", + [148707] = "Chair", + [148714] = "Chair", + [148725] = "Chair", + [148728] = "Wooden Chair", + [148729] = "Wooden Chair", + [148730] = "Wooden Chair", + [148731] = "Wooden Chair", + [148732] = "Wooden Chair", + [148733] = "Wooden Chair", + [148734] = "Wooden Chair", + [148736] = "Wooden Chair", + [148737] = "Wooden Chair", + [148738] = "Wooden Chair", + [148739] = "Wooden Chair", + [148740] = "Wooden Chair", + [148741] = "Wooden Chair", + [148742] = "Wooden Chair", + [148743] = "Wooden Chair", + [148744] = "Wooden Chair", + [148745] = "Wooden Chair", + [148748] = "Wooden Chair", + [148749] = "Wooden Chair", + [148751] = "Wooden Chair", + [148752] = "Wooden Chair", + [148754] = "Wooden Chair", + [148755] = "Wooden Chair", + [148758] = "Wooden Chair", + [148761] = "Wooden Chair", + [148762] = "Wooden Chair", + [148764] = "Wooden Chair", + [148765] = "Wooden Chair", + [148766] = "Wooden Chair", + [148767] = "Wooden Chair", + [148768] = "Wooden Chair", + [148769] = "Wooden Chair", + [148771] = "Wooden Chair", + [148772] = "Wooden Chair", + [148773] = "Wooden Chair", + [148774] = "Wooden Chair", + [148781] = "Wooden Chair", + [148782] = "Wooden Chair", + [148790] = "Wooden Chair", + [148795] = "Wooden Chair", + [148796] = "Wooden Chair", + [148801] = "Wooden Chair", + [148807] = "Wooden Chair", + [148811] = "Wooden Chair", + [148812] = "Wooden Chair", + [148813] = "Wooden Chair", + [148814] = "Wooden Chair", + [148815] = "Wooden Chair", + [148816] = "Wooden Chair", + [148817] = "Wooden Chair", + [148818] = "Wooden Chair", + [148830] = "Atal\'ai Statue", + [148831] = "Atal\'ai Statue", + [148832] = "Atal\'ai Statue", + [148833] = "Atal\'ai Statue", + [148834] = "Atal\'ai Statue", + [148835] = "Atal\'ai Statue", + [148836] = "Altar of Hakkar", + [148837] = "Atal\'ai Statue", + [148838] = "Idol of Hakkar", + [148840] = "Bonfire", + [148841] = "Bonfire", + [148842] = "Roland\'s Mana Gem", + [148843] = "Fire", + [148844] = "Fire", + [148845] = "Fire", + [148846] = "Fire", + [148847] = "Fire", + [148848] = "Fire", + [148849] = "Fire", + [148850] = "Fire", + [148851] = "Fire", + [148852] = "Fire", + [148853] = "Fire", + [148854] = "Fire", + [148855] = "Fire", + [148856] = "Fire", + [148857] = "Fire", + [148858] = "Fire", + [148859] = "Fire", + [148860] = "Fire", + [148861] = "Fire", + [148862] = "Fire", + [148863] = "Fire", + [148864] = "Fire", + [148865] = "Campfire", + [148866] = "Wooden Chair", + [148876] = "Campfire", + [148877] = "Campfire", + [148878] = "Campfire", + [148879] = "Campfire", + [148880] = "Campfire", + [148883] = "Atal\'ai Light SMALL (DND)", + [148884] = "Wooden Chair", + [148885] = "Wooden Chair", + [148886] = "Wooden Chair", + [148887] = "Wooden Chair", + [148888] = "Wooden Chair", + [148889] = "Wooden Chair", + [148890] = "Wooden Chair", + [148891] = "Wooden Chair", + [148892] = "Wooden Chair", + [148893] = "Wooden Chair", + [148894] = "Wooden Chair", + [148895] = "Wooden Chair", + [148896] = "Wooden Chair", + [148897] = "Wooden Chair", + [148898] = "Wooden Chair", + [148899] = "Wooden Chair", + [148900] = "Wooden Chair", + [148901] = "Wooden Chair", + [148902] = "Wooden Chair", + [148903] = "Wooden Chair", + [148904] = "Wooden Chair", + [148905] = "Wooden Chair", + [148906] = "Wooden Chair", + [148907] = "Wooden Chair", + [148908] = "Wooden Chair", + [148909] = "Wooden Chair", + [148910] = "Wooden Chair", + [148911] = "Wooden Chair", + [148912] = "Wooden Chair", + [148913] = "Wooden Chair", + [148914] = "Wooden Chair", + [148915] = "Wooden Chair", + [148917] = "Gong", + [148937] = "Atal\'ai Light BIG (DND)", + [148956] = "Anvil", + [148957] = "Anvil", + [148958] = "Anvil", + [148959] = "Anvil", + [148960] = "Forge", + [148976] = "Fire", + [148996] = "Tower Fire", + [148997] = "Tower Smoke", + [148998] = "Evil God Summoning Circle", + [149017] = "Tower Fire", + [149018] = "Tower Smoke", + [149019] = "Tower Fire", + [149020] = "Tower Fire", + [149021] = "Tower Smoke", + [149022] = "Tower Smoke", + [149024] = "Gol\'Bolar Quarry", + [149025] = "Sentry Brazier", + [149026] = "Bonfire", + [149027] = "Meat Rack", + [149028] = "Meat Rack", + [149029] = "Cauldron", + [149030] = "Sentry Brazier", + [149031] = "Sentry Brazier", + [149032] = "Sentry Brazier", + [149036] = "Marvon\'s Chest", + [149038] = "Table Cooker", + [149045] = "Scaffold Cars", + [149046] = "Scaffold Cars", + [149047] = "Torch of Retribution", + [149048] = "Wooden Bench", + [149049] = "Wooden Bench", + [149410] = "Light of Retribution", + [149412] = "Dwarven Brazier", + [149413] = "Dwarven Brazier", + [149417] = "Dwarven Brazier", + [149418] = "Dwarven Brazier", + [149419] = "Meat Smoker", + [149420] = "Ani", + [149424] = "Wooden Chair", + [149431] = "forcefield", + [149432] = "DOOR1", + [149433] = "DOOR2", + [149480] = "Rune of Jin\'yael", + [149481] = "Rune of Beth\'Amara", + [149482] = "Rune of Markri", + [149483] = "Rune of Sael\'hai", + [149502] = "Hoard of the Black Dragonflight", + [150075] = "Wanted Poster", + [150079] = "Mithril Deposit", + [150080] = "Gold Vein", + [150081] = "Truesilver Deposit", + [150082] = "Small Thorium Vein", + [150086] = "Makeshift Helipad", + [150087] = "Burbik\'s Supplies", + [150137] = "Door", + [150138] = "Door", + [150140] = "Arcane Focusing Crystal", + [150713] = "Campfire", + [151286] = "Kaldorei Tome of Summoning", + [151951] = "Idol Oven Fire", + [151952] = "Idol Cup Fire", + [151953] = "Wooden Bench", + [151954] = "Wooden Bench", + [151955] = "Wooden Bench", + [151956] = "Wooden Bench", + [151957] = "Wooden Bench", + [151958] = "Wooden Bench", + [151959] = "Wooden Bench", + [151960] = "Wooden Bench", + [151961] = "Wooden Bench", + [151962] = "Wooden Bench", + [151963] = "Wooden Bench", + [151964] = "Wooden Bench", + [151965] = "Wooden Bench", + [151966] = "Wooden Bench", + [151967] = "Wooden Bench", + [151968] = "Wooden Bench", + [151969] = "Wooden Bench", + [151970] = "Wooden Bench", + [151971] = "Wooden Bench", + [151972] = "Wooden Bench", + [151973] = "Idol Mouth Fire", + [151974] = "Gadgetzan", + [151975] = "Steamwheedle Port", + [151976] = "Shimmering Flats", + [151977] = "Shimmering Flats", + [151978] = "Gadgetzan", + [151979] = "Steamwheedle Port", + [151980] = "Shimmering Flats", + [151981] = "Steamwheedle Port", + [151982] = "Gadgetzan", + [151983] = "Gadgetzan", + [151984] = "Steamwheedle Port", + [151992] = "auctionhouse", + [152032] = "Anvil", + [152033] = "Stone Anvil", + [152034] = "Forge", + [152035] = "Campfire", + [152036] = "Campfire", + [152037] = "Campfire", + [152038] = "Campfire", + [152039] = "Campfire", + [152040] = "Campfire", + [152041] = "Stone Anvil", + [152042] = "Forge", + [152043] = "Campfire", + [152044] = "Campfire", + [152045] = "Forge", + [152046] = "Stone Anvil", + [152080] = "Kadrak\'s Flag", + [152093] = "Talon Den", + [152094] = "Hyacinth Mushroom", + [152095] = "Moonpetal Lily", + [152097] = "Belnistrasz\'s Brazier", + [152098] = "Magus Rimtori\'s Journal", + [152324] = "Campfire", + [152325] = "Fiery Brazier", + [152326] = "Fiery Brazier", + [152327] = "Fiery Brazier", + [152328] = "Fiery Brazier", + [152329] = "Fiery Brazier", + [152330] = "Fiery Brazier", + [152331] = "Fiery Brazier", + [152332] = "Fiery Brazier", + [152574] = "The Twin Colossals", + [152575] = "Desolace", + [152576] = "Feathermoon Stronghold", + [152577] = "High Wilderness", + [152578] = "Lower Wilds", + [152579] = "Thousand Needles", + [152580] = "Ravenwind", + [152581] = "Feathermoon Stronghold", + [152582] = "Desolace", + [152583] = "AuctionNode", + [152584] = "High Wilderness", + [152585] = "The Twin Colossals", + [152586] = "Desolace", + [152587] = "Thousand Needles", + [152598] = "the First Tide Pool", + [152604] = "the Second Tide Pool", + [152605] = "the Third Tide Pool", + [152606] = "the Fourth Tide Pool", + [152608] = "Kolkar\'s Booty", + [152614] = "Elevator", + [152618] = "Kolkar\'s Booty", + [152619] = "Campfire", + [152620] = "Azsharite Formation", + [152621] = "Azsharite Formation", + [152622] = "Azsharite Formation", + [152631] = "Azsharite Formation", + [153113] = "Darnassus Auction House", + [153123] = "Kim\'jael\'s Equipment", + [153124] = "Cauldron", + [153125] = "Cauldron", + [153126] = "Bonfire", + [153157] = "Charred Dark Iron Remains", + [153158] = "Mutilated Dark Iron Remains", + [153159] = "Mutilated Dark Iron Remains", + [153160] = "Charred Dark Iron Remains", + [153203] = "Rune of the Defiler", + [153204] = "Rune of the Defiler", + [153205] = "Altar of the Defiler", + [153220] = "Cauldron", + [153221] = "Campfire", + [153239] = "Wildkin Feather", + [153240] = "Stone Anvil", + [153241] = "Campfire", + [153242] = "Campfire", + [153350] = "Campfire", + [153359] = "Rune of Return", + [153360] = "Rune of Return", + [153399] = "Campfire", + [153400] = "Campfire", + [153402] = "Campfire", + [153451] = "Solid Chest", + [153453] = "Solid Chest", + [153454] = "Solid Chest", + [153459] = "Forge", + [153460] = "Anvil", + [153462] = "Large Solid Chest", + [153463] = "Large Solid Chest", + [153464] = "Large Solid Chest", + [153468] = "Large Mithril Bound Chest", + [153469] = "Large Mithril Bound Chest", + [153470] = "Food Crate", + [153471] = "Food Crate", + [153472] = "Food Crate", + [153473] = "Food Crate", + [153482] = "Campfire", + [153516] = "Campfire", + [153556] = "Thaurissan Relic", + [153576] = "Cauldron", + [153577] = "Cauldron", + [153578] = "Mailbox", + [153579] = "Cauldron", + [153580] = "Campfire", + [153581] = "Campfire", + [153582] = "Campfire", + [153583] = "Campfire", + [153584] = "Campfire", + [153695] = "Campfire", + [153716] = "Mailbox", + [153723] = "Bonfire", + [154357] = "Glinting Mud", + [156561] = "Wanted Poster", + [157636] = "Campfire", + [157637] = "Mailbox", + [157816] = "Holding Pen", + [157817] = "Holding Pen", + [157818] = "Holding Pen", + [157819] = "Holding Pen", + [157820] = "Holding Pen", + [157923] = "Giant Doors", + [157936] = "Un\'Goro Dirt Pile", + [157968] = "Campfire", + [157969] = "Cauldron", + [158545] = "Bench", + [158546] = "Bench", + [158547] = "Chair", + [158548] = "Bench", + [158549] = "Bench", + [158550] = "Bench", + [158551] = "Bench", + [158552] = "Bench", + [158553] = "Bench", + [158554] = "Bench", + [158555] = "Bench", + [158556] = "Bench", + [158557] = "Bench", + [158558] = "Bench", + [158559] = "Bench", + [158560] = "Bench", + [158561] = "Bench", + [158562] = "Bench", + [158563] = "Bench", + [158564] = "Bench", + [158565] = "Bench", + [158566] = "Bench", + [158567] = "Bench", + [158568] = "Bench", + [158569] = "Bench", + [158570] = "Bench", + [158571] = "Chair", + [158572] = "Bench", + [158576] = "Chair", + [158579] = "Chair", + [158580] = "Chair", + [158581] = "Chair", + [158582] = "Chair", + [158583] = "Bench", + [158584] = "Bench", + [158585] = "Bench", + [158599] = "Bench", + [158608] = "Bench", + [158674] = "Bench", + [158678] = "Chair", + [158679] = "Chair", + [158680] = "Chair", + [160409] = "Chair", + [160410] = "Chair", + [160411] = "Stove", + [160413] = "Chair", + [160414] = "Chair", + [160415] = "Chair", + [160416] = "Chair", + [160418] = "Chair", + [160419] = "Chair", + [160420] = "Stove", + [160421] = "Cauldron", + [160426] = "Brazier", + [160436] = "Wooden Chair", + [160437] = "Wooden Chair", + [160438] = "Wooden Chair", + [160439] = "Wooden Chair", + [160440] = "Wooden Chair", + [160441] = "Wooden Chair", + [160442] = "Wooden Chair", + [160443] = "Wooden Chair", + [160444] = "Wooden Chair", + [160445] = "Sha\'ni Proudtusk\'s Remains", + [160468] = "Bench", + [160469] = "Bench", + [160470] = "Cauldron", + [160836] = "Relic Coffer", + [160839] = "Gor\'tesh\'s Lopped Off Head", + [160840] = "Soft Dirt Mound", + [160842] = "Gor\'tesh\'s Lopped Off Head", + [160845] = "Dark Coffer", + [160866] = "Pew", + [160867] = "Pew", + [160868] = "Pew", + [160869] = "Pew", + [160870] = "Pew", + [160871] = "Pew", + [161456] = "Dark Keeper Portrait", + [161457] = "Dark Keeper Portrait", + [161458] = "Dark Keeper Portrait", + [161459] = "Dark Keeper Portrait", + [161460] = "The Shadowforge Lock", + [161461] = "Giant Door Mechanism", + [161462] = "Giant Door Fake Collision", + [161476] = "Wooden Chair", + [161477] = "Wooden Chair", + [161478] = "Wooden Chair", + [161479] = "Wooden Chair", + [161480] = "Wooden Chair", + [161487] = "Forge", + [161488] = "Bonfire", + [161489] = "Anvil", + [161495] = "Secret Safe", + [161504] = "A Small Pack", + [161505] = "A Wrecked Raft", + [161513] = "Farm Chicken Egg", + [161516] = "BigDoorDummyCollision02", + [161521] = "Research Equipment", + [161522] = "ArenaGate02", + [161523] = "ArenaGate04", + [161524] = "ArenaGate03", + [161525] = "ArenaGate01", + [161526] = "Crate of Foodstuffs", + [161527] = "Dinosaur Bone", + [161536] = "Quarry Gate", + [161557] = "Milly\'s Harvest", + [161752] = "Tool Bucket", + [162024] = "Samophlange", + [163313] = "Mailbox", + [163645] = "Mailbox", + [164618] = "Mailbox", + [164638] = "Immolation Trap", + [164639] = "Frost Trap", + [164644] = "The Dead Tree", + [164651] = "Echeyakee\'s Lair", + [164658] = "Blue Power Crystal", + [164659] = "Green Power Crystal", + [164660] = "Red Power Crystal", + [164661] = "Yellow Power Crystal", + [164662] = "Equipment Boxes", + [164688] = "Ironfel", + [164689] = "Monument of Franclorn Forgewright", + [164690] = "Krom\'zar\'s Banner", + [164699] = "Roaring Fire", + [164700] = "Roaring Fire", + [164701] = "Roaring Fire", + [164702] = "Blazing Fire", + [164703] = "Blazing Fire", + [164704] = "Blazing Fire", + [164705] = "Blazing Fire", + [164725] = "Dragonspine Door", + [164726] = "Doodad_PortcullisActive01", + [164728] = "Campfire", + [164729] = "Miblon\'s Door", + [164738] = "Miblon\'s Spell Focus (DND)", + [164758] = "Miblon\'s Bait", + [164759] = "Wooden Chair", + [164760] = "Wooden Chair", + [164761] = "Wooden Chair", + [164762] = "Wooden Chair", + [164763] = "Wooden Chair", + [164764] = "Wooden Chair", + [164765] = "Wooden Chair", + [164766] = "Wooden Chair", + [164767] = "Wooden Chair", + [164778] = "Blue Power Crystal", + [164779] = "Green Power Crystal", + [164780] = "Red Power Crystal", + [164781] = "Yellow Power Crystal", + [164798] = "Evoroot", + [164799] = "Videre Elixir Spell Focus (DND)", + [164818] = "Dark Keeper Portrait", + [164819] = "Dark Keeper Portrait", + [164820] = "Dark Keeper Nameplate", + [164821] = "Dark Keeper Nameplate", + [164822] = "Dark Keeper Nameplate", + [164823] = "Dark Keeper Nameplate", + [164824] = "Dark Keeper Nameplate", + [164825] = "Dark Keeper Nameplate", + [164826] = "Aura 1 - Linken", + [164827] = "Aura 2 - Linken", + [164838] = "JD Red Crystal 1", + [164839] = "Explosive Trap", + [164840] = "Mailbox", + [164867] = "WANTED", + [164868] = "KILL ON SIGHT", + [164869] = "Spectral Chalice", + [164870] = "Smoke Emitter 02", + [164871] = "Zeppelin - Orgrimmar to Undercity", + [164872] = "Immolation Trap II", + [164873] = "Immolation Trap III", + [164874] = "Immolation Trap IV", + [164875] = "Immolation Trap V", + [164876] = "Freezing Trap II", + [164877] = "Freezing Trap III", + [164879] = "Explosive Trap II", + [164880] = "Explosive Trap III", + [164881] = "Cleansed Night Dragon", + [164882] = "Cleansed Songflower", + [164883] = "Cleansed Whipper Root", + [164884] = "Cleansed Windblossom", + [164885] = "Corrupted Night Dragon", + [164886] = "Corrupted Songflower", + [164887] = "Corrupted Windblossom", + [164888] = "Corrupted Whipper Root", + [164890] = "Smoked Meat Rack", + [164891] = "Smoked Meat Rack", + [164908] = "Thane\'s Boots", + [164909] = "Wrecked Row Boat", + [164910] = "Ornate Chest", + [164911] = "Thunderbrew Lager Keg", + [164927] = "JD Yellow Crystal 1", + [164953] = "Large Leather Backpacks", + [164954] = "Zukk\'ash Pod", + [164955] = "Northern Crystal Pylon", + [164956] = "Western Crystal Pylon", + [164957] = "Eastern Crystal Pylon", + [164958] = "Bloodpetal Sprout", + [165549] = "Maiden\'s Fancy - Round trips to Booty Bay", + [165554] = "Heart of the Mountain", + [165557] = "Zeppelin Landing Tower", + [165558] = "Zeppelin Landing ", + [165559] = "Muigin\'s Sprout", + [165578] = "Dark Iron Ale TRAP", + [165587] = "Fire", + [165618] = "monastery chair", + [165619] = "monastery chair", + [165620] = "monastery chair", + [165621] = "monastery chair", + [165622] = "Chair", + [165623] = "Chair", + [165624] = "Chair", + [165625] = "Chair", + [165626] = "Chair", + [165627] = "Chair", + [165628] = "Chair", + [165629] = "Chair", + [165630] = "Chair", + [165631] = "Chair", + [165632] = "Chair", + [165633] = "Chair", + [165637] = "Table Cooker", + [165658] = "Dark Iron Deposit", + [165678] = "Golakka Crater", + [165738] = "Dark Iron Ale Mug", + [165739] = "Grim Guzzler Boar", + [165740] = "Crude Brazier", + [165741] = "Crude Brazier", + [165742] = "Crude Brazier", + [165743] = "Crude Brazier", + [165744] = "Crude Brazier", + [165745] = "Crude Brazier", + [165746] = "Crude Brazier", + [165747] = "Crude Brazier", + [165748] = "Crude Brazier", + [165749] = "Crude Brazier", + [165750] = "Crude Brazier", + [165751] = "Crude Brazier", + [165760] = "Arei Spell Focus", + [166807] = "Spell Focus: Tomb of the Seven (DND)", + [166863] = "Fresh Threshadon Carcass", + [166872] = "Supply Crate", + [167284] = "Bonfire", + [167285] = "Bonfire", + [167286] = "Bonfire", + [167287] = "Bonfire", + [167288] = "Bonfire", + [167289] = "Bonfire", + [167290] = "Bonfire", + [167291] = "Bonfire", + [169216] = "Preserved Threshadon Carcass", + [169217] = "Un\'Goro Flat Rock", + [169243] = "Chest of The Seven", + [169264] = "Wooden Chair", + [169265] = "Wooden Chair", + [169266] = "Wooden Chair", + [169267] = "Wooden Chair", + [169268] = "Wooden Chair", + [169269] = "Wooden Chair", + [169270] = "Wooden Chair", + [169271] = "Wooden Chair", + [169272] = "Wooden Chair", + [169273] = "Wooden Chair", + [169274] = "Wooden Chair", + [169275] = "Wooden Chair", + [169276] = "Wooden Chair", + [169277] = "Wooden Chair", + [169278] = "Wooden Chair", + [169279] = "Wooden Chair", + [169280] = "Wooden Chair", + [169281] = "Wooden Chair", + [169282] = "Wooden Chair", + [169283] = "Wooden Chair", + [169284] = "Wooden Chair", + [169285] = "Wooden Chair", + [169286] = "Wooden Chair", + [169287] = "Wooden Chair", + [169288] = "Wooden Chair", + [169289] = "Wooden Chair", + [169290] = "Wooden Chair", + [169291] = "Wooden Chair", + [169292] = "Wooden Chair", + [169293] = "Wooden Chair", + [169294] = "Tablet of the Seven", + [169966] = "Anvil", + [169967] = "Booty Bay Blacksmith", + [169968] = "Anvil", + [169969] = "Forge", + [169996] = "Wooden Chair", + [169997] = "Wooden Chair", + [169998] = "Wooden Chair", + [169999] = "Wooden Chair", + [170000] = "Wooden Chair", + [170001] = "Wooden Chair", + [170002] = "Wooden Chair", + [170033] = "Wooden Chair", + [170034] = "Doodad_GeneralChairLoEnd27", + [170035] = "Wooden Chair", + [170036] = "Wooden Chair", + [170037] = "Wooden Chair", + [170038] = "Wooden Chair", + [170039] = "Wooden Chair", + [170040] = "Wooden Chair", + [170041] = "Wooden Chair", + [170042] = "Wooden Chair", + [170043] = "Wooden Chair", + [170044] = "Wooden Chair", + [170045] = "Wooden Chair", + [170046] = "Wooden Chair", + [170047] = "Wooden Chair", + [170053] = "Wooden Chair", + [170054] = "Wooden Chair", + [170055] = "Wooden Chair", + [170056] = "Wooden Chair", + [170057] = "Wooden Chair", + [170058] = "Wooden Chair", + [170059] = "Wooden Chair", + [170060] = "Wooden Chair", + [170061] = "Wooden Chair", + [170062] = "Wooden Chair", + [170063] = "Wooden Chair", + [170064] = "Wooden Chair", + [170065] = "Wooden Chair", + [170066] = "Wooden Chair", + [170067] = "Wooden Chair", + [170073] = "Wooden Chair", + [170347] = "Chair", + [170348] = "Chair", + [170349] = "Chair", + [170350] = "Chair", + [170351] = "Chair", + [170353] = "Doodad_G_HologramDwarf01", + [170354] = "War Quarter", + [170355] = "Trade Quarter", + [170439] = "Bench", + [170440] = "Chair", + [170441] = "Chair", + [170442] = "Chair", + [170443] = "Chair", + [170444] = "Chair", + [170445] = "Chair", + [170446] = "Chair", + [170447] = "Chair", + [170448] = "Chair", + [170449] = "Chair", + [170450] = "Chair", + [170451] = "Chair", + [170452] = "Chair", + [170453] = "Chair", + [170454] = "Chair", + [170455] = "Chair", + [170456] = "Bench", + [170457] = "Bench", + [170458] = "Bench", + [170459] = "Bench", + [170460] = "Bench", + [170461] = "Bench", + [170462] = "Bench", + [170463] = "Bench", + [170464] = "Bench", + [170465] = "Bench", + [170466] = "Bench", + [170467] = "Bench", + [170468] = "Bench", + [170469] = "Chair", + [170470] = "Chair", + [170471] = "Chair", + [170472] = "Bench", + [170473] = "Chair", + [170474] = "Bench", + [170475] = "Bench", + [170476] = "Bench", + [170477] = "Bench", + [170478] = "Bench", + [170479] = "Bench", + [170480] = "Bench", + [170481] = "Bench", + [170482] = "Bench", + [170483] = "Bench", + [170484] = "Bench", + [170485] = "Chair", + [170486] = "Chair", + [170487] = "Bench", + [170488] = "Chair", + [170489] = "Chair", + [170490] = "Bench", + [170491] = "Chair", + [170492] = "Bench", + [170493] = "Bench", + [170494] = "Bench", + [170495] = "Bench", + [170496] = "Bench", + [170497] = "Bench", + [170498] = "Bench", + [170499] = "Bench", + [170500] = "Bench", + [170501] = "Bench", + [170502] = "Bench", + [170503] = "Bench", + [170504] = "Bench", + [170505] = "Bench", + [170506] = "Bench", + [170507] = "Bench", + [170508] = "Bench", + [170509] = "Bench", + [170510] = "Bench", + [170511] = "Bench", + [170512] = "Bench", + [170513] = "Bench", + [170514] = "Bench", + [170515] = "Bench", + [170516] = "Bench", + [170517] = "Bench", + [170518] = "Bench", + [170519] = "Bench", + [170520] = "Bench", + [170521] = "Bench", + [170522] = "Bench", + [170523] = "Bench", + [170524] = "Bench]", + [170525] = "Bench", + [170526] = "Bench", + [170527] = "Bench", + [170528] = "Bench", + [170529] = "Bench", + [170530] = "Bench", + [170531] = "Bench", + [170532] = "Bench", + [170533] = "Bench", + [170534] = "Bench", + [170535] = "Bench", + [170536] = "Bench", + [170537] = "Bench", + [170538] = "Bench", + [170539] = "Bench", + [170540] = "Bench", + [170541] = "Bench", + [170542] = "Bench", + [170543] = "Bench", + [170544] = "Bench", + [170545] = "Bench", + [170546] = "Bench", + [170547] = "Bench", + [170548] = "Bench", + [170549] = "Bench", + [170550] = "Bench", + [170551] = "Chair", + [170552] = "Chair", + [170553] = "Chair", + [170554] = "Chair", + [170555] = "Doodad_BurningGiantWheel01", + [170556] = "Doodad_BlackRockDoors01", + [170557] = "Doodad_BlackRockDoorSingle01", + [170558] = "The Lyceum", + [170559] = "Shadowforge Gate", + [170560] = "Shadowforge Gate", + [170561] = "Supply Room Door", + [170562] = "Cell Door", + [170563] = "Cell Door", + [170564] = "Cell Door", + [170565] = "Cell Door", + [170566] = "Cell Door", + [170567] = "Cell Door", + [170568] = "Cell Door", + [170569] = "Cell Door", + [170570] = "East Garrison Door", + [170571] = "Bar Door", + [170572] = "Doodad_BlackRockIronDoor02", + [170573] = "Golem Room North", + [170574] = "Golem Room South", + [170575] = "Thone Room Doors", + [170576] = "Doodad_BlackRockDoors02", + [170577] = "Doodad_BlackRockDoors03", + [170578] = "Doodad_DarkIronDwarfRune_A01", + [170579] = "Doodad_DarkIronDwarfRune_B01", + [170580] = "Doodad_DarkIronDwarfRune_C01", + [170581] = "Doodad_DarkIronDwarfRune_D01", + [170582] = "Doodad_DarkIronDwarfRune_E01", + [170583] = "Doodad_DarkIronDwarfRune_F01", + [170584] = "Doodad_DarkIronDwarfRune_G01", + [170592] = "Imperial Throne", + [170607] = "Dark Iron Keg Shotgun", + [171524] = "Tinker Town", + [171525] = "The Great Forge", + [171526] = "Ironforge Main Gate", + [171527] = "Tinker Town", + [171528] = "Tinker Town", + [171529] = "The Great Forge", + [171530] = "The Forlorn Cavern", + [171531] = "The Library", + [171532] = "Hall of Explorers", + [171533] = "The Military Ward", + [171534] = "The Mystic Ward", + [171535] = "Dwarven Brazier", + [171536] = "Dwarven Brazier", + [171537] = "Dwarven Brazier", + [171538] = "Dwarven Brazier", + [171539] = "Dwarven Brazier", + [171540] = "Dwarven Brazier", + [171541] = "Dwarven Brazier", + [171542] = "Dwarven Brazier", + [171543] = "Dwarven Brazier", + [171544] = "Dwarven Brazier", + [171545] = "Dwarven Brazier", + [171546] = "Dwarven Brazier", + [171547] = "Dwarven Brazier", + [171548] = "Dwarven Brazier", + [171549] = "Dwarven Brazier", + [171550] = "Dwarven Brazier", + [171551] = "Dwarven Brazier", + [171552] = "Hot Coals", + [171553] = "Dwarven Brazier", + [171554] = "Dwarven Brazier", + [171555] = "Dwarven Brazier", + [171556] = "Mailbox", + [171557] = "Dwarven Brazier", + [171558] = "Dwarven Brazier", + [171559] = "Dwarven Brazier", + [171560] = "Dwarven Brazier", + [171561] = "Dwarven Brazier", + [171562] = "Dwarven Brazier", + [171563] = "Dwarven Brazier", + [171564] = "Dwarven Brazier", + [171565] = "Dwarven Brazier", + [171566] = "Dwarven Brazier", + [171567] = "Stone Chair", + [171568] = "Stone Chair", + [171569] = "Wooden Chair", + [171570] = "Wooden Chair", + [171571] = "Wooden Chair", + [171572] = "Wooden Chair", + [171573] = "Wooden Chair", + [171574] = "Wooden Chair", + [171575] = "Wooden Chair", + [171576] = "Wooden Chair", + [171577] = "Wooden Chair", + [171578] = "Wooden Chair", + [171579] = "Wooden Chair", + [171580] = "Wooden Chair", + [171581] = "Wooden Chair", + [171582] = "Wooden Chair", + [171583] = "Wooden Chair", + [171584] = "Wooden Chair", + [171585] = "Wooden Chair", + [171586] = "Wooden Chair", + [171587] = "Dwarven High Back Chair", + [171588] = "Dwarven High Back Chair", + [171589] = "Wooden Chair", + [171590] = "Wooden Chair", + [171591] = "Wooden Chair", + [171592] = "Wooden Chair", + [171593] = "Wooden Chair", + [171594] = "Wooden Chair", + [171595] = "Wooden Chair", + [171596] = "Wooden Chair", + [171597] = "Wooden Chair", + [171598] = "Wooden Chair", + [171599] = "Wooden Chair", + [171600] = "Dwarven High Back Chair", + [171601] = "Dwarven High Back Chair", + [171602] = "Wooden Chair", + [171603] = "Wooden Chair", + [171604] = "Wooden Chair", + [171605] = "Wooden Chair", + [171606] = "Wooden Chair", + [171607] = "Wooden Chair", + [171608] = "Wooden Chair", + [171609] = "Wooden Chair", + [171610] = "Wooden Chair", + [171611] = "Wooden Chair", + [171612] = "Wooden Chair", + [171613] = "Wooden Chair", + [171614] = "Wooden Chair", + [171615] = "Dwarven High Back Chair", + [171616] = "Dwarven High Back Chair", + [171617] = "Dwarven High Back Chair", + [171618] = "Dwarven High Back Chair", + [171619] = "Wooden Chair", + [171620] = "Wooden Chair", + [171621] = "Wooden Chair", + [171622] = "Wooden Chair", + [171623] = "Dwarven Brazier", + [171624] = "Dwarven Brazier", + [171625] = "Dwarven Brazier", + [171626] = "Dwarven Brazier", + [171627] = "Dwarven Brazier", + [171628] = "Dwarven Brazier", + [171629] = "Wooden Chair", + [171630] = "Wooden Chair", + [171631] = "Wooden Chair", + [171632] = "Wooden Chair", + [171633] = "Dwarven Brazier", + [171634] = "Dwarven Brazier", + [171635] = "Dwarven Brazier", + [171636] = "Dwarven Brazier", + [171638] = "Dwarven Brazier", + [171639] = "Dwarven Brazier", + [171640] = "Dwarven Brazier", + [171641] = "Dwarven Brazier", + [171642] = "Dwarven Brazier", + [171643] = "Dwarven Brazier", + [171644] = "Dwarven Brazier", + [171645] = "Dwarven Brazier", + [171646] = "Wooden Chair", + [171647] = "Wooden Chair", + [171648] = "Dwarven High Back Chair", + [171649] = "Dwarven High Back Chair", + [171650] = "Wooden Chair", + [171651] = "Wooden Chair", + [171652] = "Dwarven High Back Chair", + [171653] = "Dwarven High Back Chair", + [171654] = "Wooden Chair", + [171655] = "Wooden Chair", + [171656] = "Wooden Chair", + [171657] = "Wooden Chair", + [171658] = "Wooden Chair", + [171659] = "Wooden Chair", + [171660] = "Wooden Chair", + [171661] = "Wooden Chair", + [171664] = "Wooden Chair", + [171665] = "Wooden Chair", + [171666] = "Wooden Chair", + [171667] = "Wooden Chair", + [171668] = "Wooden Chair", + [171669] = "Wooden Chair", + [171670] = "Wooden Chair", + [171671] = "Wooden Chair", + [171672] = "Wooden Chair", + [171673] = "Wooden Chair", + [171674] = "Stone Chair", + [171675] = "Stone Chair", + [171676] = "Stone Chair", + [171677] = "Stone Chair", + [171678] = "Wooden Chair", + [171679] = "Wooden Chair", + [171680] = "Dwarven High Back Chair", + [171681] = "Dwarven High Back Chair", + [171682] = "Wooden Chair", + [171683] = "Wooden Chair", + [171684] = "Wooden Chair", + [171685] = "Wooden Chair", + [171686] = "Wooden Chair", + [171687] = "Wooden Chair", + [171688] = "Wooden Chair", + [171689] = "Wooden Chair", + [171690] = "Wooden Chair", + [171691] = "Wooden Chair", + [171692] = "Dwarven Brazier", + [171693] = "Dwarven Brazier", + [171694] = "Dwarven Brazier", + [171695] = "Dwarven Brazier", + [171696] = "Dwarven Brazier", + [171697] = "Dwarven Brazier", + [171698] = "Dwarven Brazier", + [171699] = "Mailbox", + [171700] = "Dwarven Brazier", + [171701] = "Dwarven Brazier", + [171702] = "Dwarven Brazier", + [171703] = "Dwarven Brazier", + [171704] = "Ironforge Armory", + [171705] = "Dwarven Brazier", + [171706] = "Dwarven Brazier", + [171707] = "Dwarven Brazier", + [171708] = "The Military Ward", + [171709] = "The High Seat", + [171710] = "Hall of Explorers", + [171711] = "The High Seat", + [171712] = "Hall of Explorers", + [171713] = "Anvil", + [171714] = "Anvil", + [171715] = "The Great Anvil", + [171716] = "Forge", + [171717] = "Forge", + [171718] = "Stone Chair", + [171719] = "Stone Chair", + [171720] = "Stone Chair", + [171721] = "Stone Chair", + [171722] = "Wooden Chair", + [171723] = "Wooden Chair", + [171724] = "Wooden Chair", + [171725] = "Wooden Chair", + [171726] = "Wooden Chair", + [171727] = "Dwarven High Back Chair", + [171728] = "Dwarven High Back Chair", + [171729] = "Wooden Chair", + [171730] = "Wooden Chair", + [171731] = "Wooden Chair", + [171732] = "Wooden Chair", + [171733] = "Wooden Chair", + [171734] = "Wooden Chair", + [171735] = "Wooden Chair", + [171736] = "Wooden Chair", + [171737] = "Wooden Chair", + [171738] = "Wooden Chair", + [171739] = "Wooden Chair", + [171740] = "Wooden Chair", + [171741] = "Wooden Chair", + [171742] = "Potbelly Stove", + [171743] = "Potbelly Stove", + [171744] = "Wooden Chair", + [171745] = "Wooden Chair", + [171746] = "Wooden Chair", + [171747] = "Wooden Chair", + [171748] = "Berryfizz\'s Potions and Mixed Drinks", + [171749] = "Things That Go Boom!", + [171750] = "Dwarven Brazier", + [171751] = "Dwarven Brazier", + [171752] = "Mailbox", + [171753] = "Dwarven Brazier", + [171754] = "Dwarven Brazier", + [171755] = "Dwarven Brazier", + [171756] = "Dwarven Brazier", + [171757] = "Dwarven Brazier", + [171758] = "Dwarven Brazier", + [171759] = "Dwarven Brazier", + [171760] = "Dwarven Brazier", + [171761] = "Dwarven Brazier", + [171762] = "Dwarven Brazier", + [171763] = "Dwarven Brazier", + [171764] = "Dwarven Brazier", + [171765] = "Dwarven Brazier", + [171766] = "The Great Forge", + [171767] = "Dwarven Brazier", + [171768] = "Dwarven Brazier", + [171769] = "Dwarven Brazier", + [171770] = "Longberry\'s Reagents", + [171771] = "Wooden Chair", + [171772] = "Wooden Chair", + [171773] = "Wooden Chair", + [171774] = "Wooden Chair", + [171775] = "Wooden Chair", + [171776] = "Wooden Chair", + [171938] = "Cactus Apple", + [171939] = "Corrupted Songflower", + [171940] = "Cleansed Songflower", + [171941] = "Keg Trap", + [171942] = "Corrupted Songflower", + [171943] = "Cleansed Songflower", + [172619] = "Un\'Goro Flat Rock", + [172911] = "The Black Anvil", + [172941] = "Mighty Blaze", + [172942] = "Mighty Blaze", + [172943] = "Mighty Blaze", + [172944] = "Mighty Blaze", + [172945] = "Mighty Blaze", + [172946] = "Mighty Blaze", + [172947] = "Mighty Blaze", + [172948] = "Mighty Blaze", + [172949] = "Mighty Blaze", + [172950] = "Mighty Blaze", + [172951] = "Mighty Blaze", + [172952] = "Mighty Blaze", + [172953] = "Mighty Blaze", + [172954] = "Mighty Blaze", + [172955] = "Mighty Blaze", + [172956] = "Mighty Blaze", + [172957] = "Valley of Wisdom", + [172958] = "Valley of Honor", + [172959] = "The Drag", + [172960] = "Cleft of Shadow", + [172961] = "Valley of Spirits", + [172962] = "Valley of Wisdom", + [172963] = "The Drag", + [172964] = "Valley of Honor", + [172965] = "Valley of Spirits", + [172966] = "Valley of Spirits", + [172967] = "Valley of Spirits", + [172968] = "Valley of Spirits", + [172969] = "Valley of Spirits", + [172970] = "Valley of Spirits", + [172971] = "Talon Gate", + [172972] = "Talon Gate", + [172973] = "Cleft of Shadow", + [172974] = "Valley of Wisdom", + [172975] = "Cleft of Shadow", + [172976] = "Valley of Wisdom", + [172977] = "The Drag", + [172978] = "Thrall\'s Fortress", + [172979] = "The Drag", + [172980] = "Cleft of Shadow", + [172981] = "Valley of Honor", + [172982] = "Valley of Strength", + [172983] = "Cleft of Shadow", + [172984] = "Valley of Honor", + [172985] = "Valley of Wisdom", + [172986] = "Orgrimmar Main Gate", + [172987] = "Cleft of Shadow", + [172988] = "Valley of Strength", + [172989] = "Valley of Honor", + [172990] = "Valley of Wisdom", + [172991] = "Orgrimmar Main Gate", + [172992] = "The Drag", + [172993] = "Valley of Strength", + [172994] = "Orgrimmar Main Gate", + [172995] = "Valley of Spirits", + [172996] = "Valley of Strength", + [172997] = "Orgrimmar Main Gate", + [172998] = "Mighty Blaze", + [172999] = "Mighty Blaze", + [173000] = "Mighty Blaze", + [173001] = "Mighty Blaze", + [173002] = "Mighty Blaze", + [173003] = "Mighty Blaze", + [173004] = "Mighty Blaze", + [173005] = "Darkfire Enclave", + [173006] = "Spiritfury Reagents", + [173007] = "Mighty Blaze", + [173008] = "Mighty Blaze", + [173009] = "Mighty Blaze", + [173010] = "Mighty Blaze", + [173011] = "Mighty Blaze", + [173012] = "Mighty Blaze", + [173013] = "Mighty Blaze", + [173014] = "Meat Rack", + [173015] = "Meat Rack", + [173016] = "Borstan\'s Firepit", + [173017] = "Gotri\'s Travelling Gear", + [173018] = "Magar\'s Cloth Goods", + [173019] = "Mighty Blaze", + [173020] = "Jandi\'s Arboretum", + [173021] = "Yelmak\'s Alchemy and Potions", + [173022] = "Godan\'s Runeworks", + [173023] = "Mighty Blaze", + [173024] = "Droffers And Sons Salvage", + [173025] = "Stranglethorn Imported Fruits", + [173026] = "Meat Rack", + [173027] = "Mighty Blaze", + [173028] = "Mighty Blaze", + [173029] = "Mighty Blaze", + [173030] = "Mighty Blaze", + [173031] = "Mighty Blaze", + [173032] = "Mighty Blaze", + [173033] = "Mighty Blaze", + [173034] = "Mighty Blaze", + [173035] = "Mighty Blaze", + [173036] = "Mighty Blaze", + [173037] = "Mighty Blaze", + [173038] = "Mighty Blaze", + [173039] = "Mighty Blaze", + [173040] = "Mighty Blaze", + [173041] = "Mighty Blaze", + [173042] = "Mighty Blaze", + [173043] = "Mighty Blaze", + [173044] = "Kodohide Leatherworkers", + [173045] = "Mighty Blaze", + [173046] = "Mighty Blaze", + [173047] = "Mailbox", + [173048] = "Mighty Blaze", + [173049] = "Mighty Blaze", + [173050] = "Mighty Blaze", + [173051] = "Mighty Blaze", + [173052] = "Mighty Blaze", + [173053] = "Mighty Blaze", + [173054] = "Mighty Blaze", + [173055] = "Mighty Blaze", + [173056] = "Asoran\'s Market", + [173057] = "Mighty Blaze", + [173058] = "Mighty Blaze", + [173059] = "Mighty Blaze", + [173060] = "Mighty Blaze", + [173061] = "Mighty Blaze", + [173062] = "Mighty Blaze", + [173063] = "Forge", + [173064] = "Forge", + [173065] = "Anvil", + [173066] = "Anvil", + [173067] = "Mighty Blaze", + [173068] = "Mighty Blaze", + [173069] = "Mighty Blaze", + [173070] = "Mighty Blaze", + [173071] = "Mighty Blaze", + [173072] = "Mighty Blaze", + [173073] = "Mighty Blaze", + [173074] = "Mighty Blaze", + [173075] = "Mighty Blaze", + [173076] = "Mighty Blaze", + [173077] = "Mighty Blaze", + [173078] = "Arms of Legend", + [173079] = "Kiro\'s Harnesses", + [173080] = "Orgrimmar Bowyer", + [173081] = "Red Canyon Mining", + [173082] = "Nogg\'s Machine Shop", + [173083] = "The Burning Anvil", + [173084] = "Hall of the Brave", + [173085] = "Hunter\'s Hall", + [173086] = "Lumak\'s Fishing", + [173087] = "Mighty Blaze", + [173088] = "Mighty Blaze", + [173089] = "Mighty Blaze", + [173090] = "Mighty Blaze", + [173091] = "Mighty Blaze", + [173092] = "Mighty Blaze", + [173093] = "Mighty Blaze", + [173094] = "Anvil", + [173095] = "Forge", + [173096] = "Mighty Blaze", + [173097] = "Mighty Blaze", + [173098] = "Mighty Blaze", + [173099] = "Mighty Blaze", + [173100] = "Mighty Blaze", + [173101] = "Mighty Blaze", + [173102] = "Mighty Blaze", + [173103] = "Mighty Blaze", + [173104] = "Mighty Blaze", + [173105] = "Mighty Blaze", + [173106] = "Mighty Blaze", + [173107] = "Orc Cooker", + [173108] = "Meat Rack", + [173109] = "Meat Rack", + [173110] = "Mighty Blaze", + [173111] = "Mighty Blaze", + [173112] = "Mighty Blaze", + [173113] = "Mighty Blaze", + [173114] = "Mighty Blaze", + [173115] = "Mighty Blaze", + [173116] = "Mighty Blaze", + [173117] = "Mighty Blaze", + [173118] = "Mighty Blaze", + [173119] = "Mighty Blaze", + [173120] = "Mighty Blaze", + [173121] = "Mighty Blaze", + [173122] = "Mighty Blaze", + [173123] = "Mighty Blaze", + [173124] = "Mighty Blaze", + [173125] = "Mighty Blaze", + [173126] = "Mighty Blaze", + [173127] = "Mighty Blaze", + [173128] = "Mighty Blaze", + [173129] = "Mighty Blaze", + [173130] = "Mighty Blaze", + [173131] = "Mighty Blaze", + [173132] = "Mighty Blaze", + [173133] = "Mighty Blaze", + [173134] = "Mighty Blaze", + [173135] = "Mighty Blaze", + [173136] = "Mighty Blaze", + [173137] = "Mighty Blaze", + [173138] = "Mighty Blaze", + [173139] = "Mighty Blaze", + [173140] = "Mighty Blaze", + [173141] = "Mighty Blaze", + [173142] = "Mighty Blaze", + [173143] = "Mighty Blaze", + [173144] = "Mighty Blaze", + [173145] = "Mighty Blaze", + [173146] = "Mighty Blaze", + [173147] = "Mighty Blaze", + [173148] = "Mighty Blaze", + [173149] = "Mighty Blaze", + [173150] = "Mighty Blaze", + [173151] = "Mighty Blaze", + [173152] = "Mighty Blaze", + [173153] = "Mighty Blaze", + [173154] = "Mighty Blaze", + [173155] = "Mighty Blaze", + [173156] = "Mighty Blaze", + [173157] = "Skyfury Staves", + [173158] = "Mighty Blaze", + [173159] = "Mighty Blaze", + [173160] = "Spirit Lodge", + [173161] = "Darkbriar Lodge", + [173162] = "Survival of the Fittest", + [173163] = "Mighty Blaze", + [173164] = "Mighty Blaze", + [173165] = "Mighty Blaze", + [173166] = "Mighty Blaze", + [173167] = "Mighty Blaze", + [173168] = "The Slow Blade", + [173169] = "Rekkul\'s Poisons", + [173170] = "Shadowswift Brotherhood", + [173171] = "Mighty Blaze", + [173172] = "Mighty Blaze", + [173173] = "Shadowdeep Reagents", + [173174] = "Dark Earth Fungus and Mushrooms", + [173175] = "Mighty Blaze", + [173176] = "Mighty Blaze", + [173177] = "Ironwood Staves and Wands", + [173178] = "Mighty Blaze", + [173179] = "Mighty Blaze", + [173180] = "Mighty Blaze", + [173181] = "Mighty Blaze", + [173182] = "Mighty Blaze", + [173183] = "Mighty Blaze", + [173184] = "Mighty Blaze", + [173185] = "Mighty Blaze", + [173186] = "Mighty Blaze", + [173187] = "Mighty Blaze", + [173188] = "Mighty Blaze", + [173189] = "Mighty Blaze", + [173190] = "Mighty Blaze", + [173191] = "Mighty Blaze", + [173192] = "Mighty Blaze", + [173193] = "Mighty Blaze", + [173194] = "Mighty Blaze", + [173195] = "Mighty Blaze", + [173196] = "Mighty Blaze", + [173197] = "Mighty Blaze", + [173198] = "Mighty Blaze", + [173199] = "Mighty Blaze", + [173200] = "Mighty Blaze", + [173201] = "Mighty Blaze", + [173202] = "Soran\'s Leather and Steel Armory", + [173203] = "Orgrimmar General Store", + [173204] = "Mighty Blaze", + [173205] = "Mighty Blaze", + [173206] = "Mighty Blaze", + [173207] = "Mighty Blaze", + [173208] = "Meat Rack", + [173209] = "Meat Rack", + [173210] = "Mighty Blaze", + [173211] = "Mighty Blaze", + [173212] = "Mighty Blaze", + [173213] = "Mighty Blaze", + [173214] = "Mighty Blaze", + [173215] = "The Shattered Axe", + [173216] = "Bank of Orgrimmar", + [173217] = "The Chophouse", + [173218] = "Boomstick Imports", + [173219] = "The Skytower", + [173220] = "Horde Embassy", + [173221] = "Mailbox", + [173222] = "Orgrimmar Auction House", + [173223] = "Mighty Blaze", + [173224] = "Mighty Blaze", + [173225] = "Mighty Blaze", + [173226] = "Mighty Blaze", + [173227] = "AuctionNode", + [173228] = "Mighty Blaze", + [173229] = "Mighty Blaze", + [173230] = "Mighty Blaze", + [173231] = "Mighty Blaze", + [173232] = "Blacksmithing Plans", + [173234] = "Blacksmithing Plans", + [173265] = "Wooden Outhouse", + [173266] = "Goodsteel Ledger", + [173284] = "Corrupted Whipper Root", + [173324] = "Corrupted Night Dragon", + [173325] = "Cleansed Night Dragon", + [173326] = "Cleansed Windblossom", + [173327] = "Corrupted Windblossom", + [174045] = "The Black Forge", + [174407] = "Chair", + [174408] = "Chair", + [174409] = "Chair", + [174410] = "Chair", + [174411] = "Chair", + [174412] = "Chair", + [174413] = "Chair", + [174414] = "Chair", + [174415] = "Chair", + [174416] = "Chair", + [174417] = "Chair", + [174418] = "Chair", + [174419] = "Chair", + [174420] = "Chair", + [174421] = "Chair", + [174422] = "Chair", + [174423] = "Chair", + [174424] = "Chair", + [174425] = "Chair", + [174426] = "Chair", + [174427] = "Chair", + [174428] = "Chair", + [174429] = "Chair", + [174430] = "Chair", + [174431] = "Chair", + [174432] = "Chair", + [174433] = "Chair", + [174434] = "Chair", + [174435] = "Chair", + [174436] = "Chair", + [174437] = "Chair", + [174438] = "Chair", + [174439] = "Chair", + [174440] = "Chair", + [174441] = "Chair", + [174442] = "Chair", + [174443] = "Chair", + [174444] = "Chair", + [174445] = "Chair", + [174446] = "Chair", + [174447] = "Chair", + [174448] = "Chair", + [174449] = "Chair", + [174450] = "Chair", + [174451] = "Chair", + [174452] = "Chair", + [174453] = "Chair", + [174454] = "Chair", + [174455] = "Chair", + [174456] = "Chair", + [174457] = "Chair", + [174458] = "Chair", + [174459] = "Chair", + [174460] = "Chair", + [174461] = "Chair", + [174462] = "Chair", + [174463] = "Chair", + [174464] = "Chair", + [174465] = "Chair", + [174466] = "Chair", + [174467] = "Chair", + [174468] = "Chair", + [174469] = "Chair", + [174470] = "Chair", + [174471] = "Chair", + [174472] = "Chair", + [174473] = "Chair", + [174474] = "Chair", + [174475] = "Chair", + [174476] = "Chair", + [174477] = "Chair", + [174478] = "Chair", + [174479] = "Chair", + [174480] = "Chair", + [174481] = "Chair", + [174482] = "Chair", + [174483] = "Chair", + [174484] = "Chair", + [174485] = "Chair", + [174486] = "Chair", + [174487] = "Chair", + [174488] = "Chair", + [174489] = "Chair", + [174490] = "Chair", + [174491] = "Chair", + [174492] = "Chair", + [174493] = "Chair", + [174494] = "Chair", + [174495] = "Chair", + [174496] = "Chair", + [174497] = "Chair", + [174498] = "Chair", + [174499] = "Chair", + [174500] = "Chair", + [174501] = "Chair", + [174502] = "Chair", + [174503] = "Chair", + [174504] = "Chair", + [174505] = "Chair", + [174506] = "Chair", + [174507] = "Chair", + [174508] = "Chair", + [174509] = "Chair", + [174510] = "Chair", + [174511] = "Chair", + [174512] = "Chair", + [174513] = "Chair", + [174514] = "Chair", + [174515] = "Chair", + [174516] = "Chair", + [174517] = "Chair", + [174518] = "Chair", + [174519] = "Chair", + [174520] = "Chair", + [174521] = "Chair", + [174522] = "Chair", + [174523] = "Chair", + [174524] = "Chair", + [174525] = "Chair", + [174526] = "Chair", + [174527] = "Chair", + [174528] = "Chair", + [174529] = "Chair", + [174530] = "Chair", + [174531] = "Chair", + [174532] = "Chair", + [174533] = "Chair", + [174534] = "Chair", + [174535] = "Chair", + [174536] = "Chair", + [174537] = "Chair", + [174538] = "Chair", + [174539] = "Chair", + [174540] = "Chair", + [174541] = "Chair", + [174542] = "Chair", + [174543] = "Chair", + [174544] = "Chair", + [174545] = "Chair", + [174546] = "Chair", + [174547] = "Chair", + [174548] = "Chair", + [174549] = "Chair", + [174550] = "Chair", + [174551] = "Chair", + [174552] = "Chair", + [174553] = "Secret Door", + [174554] = "Relic Coffer Door", + [174555] = "Relic Coffer Door", + [174556] = "Relic Coffer Door", + [174557] = "Relic Coffer Door", + [174558] = "Relic Coffer Door", + [174559] = "Relic Coffer Door", + [174560] = "Relic Coffer Door", + [174561] = "Relic Coffer Door", + [174562] = "Relic Coffer Door", + [174563] = "Relic Coffer Door", + [174564] = "Relic Coffer Door", + [174565] = "Dark Coffer", + [174566] = "Relic Coffer Door", + [174594] = "Corrupted Songflower", + [174595] = "Corrupted Songflower", + [174596] = "Corrupted Songflower", + [174597] = "Corrupted Songflower", + [174598] = "Corrupted Songflower", + [174599] = "Corrupted Windblossom", + [174600] = "Corrupted Windblossom", + [174601] = "Corrupted Windblossom", + [174602] = "Corrupted Windblossom", + [174603] = "Corrupted Windblossom", + [174604] = "Corrupted Windblossom", + [174605] = "Corrupted Whipper Root", + [174606] = "Corrupted Whipper Root", + [174607] = "Corrupted Whipper Root", + [174608] = "Corrupted Night Dragon", + [174609] = "Cleansed Night Dragon", + [174610] = "Cleansed Songflower", + [174612] = "Cleansed Songflower", + [174613] = "Cleansed Songflower", + [174614] = "Cleansed Songflower", + [174615] = "Cleansed Songflower", + [174616] = "Cleansed Windblossom", + [174617] = "Cleansed Windblossom", + [174618] = "Cleansed Windblossom", + [174619] = "Cleansed Windblossom", + [174620] = "Cleansed Windblossom", + [174621] = "Cleansed Windblossom", + [174622] = "Cleansed Whipper Root", + [174623] = "Cleansed Whipper Root", + [174624] = "Cleansed Whipper Root", + [174625] = "Cleansed Whipper Root", + [174626] = "Scholomance Door", + [174682] = "Beware of Pterrordax", + [174683] = "J.D.\'s Manual", + [174684] = "Corrupted Night Dragon", + [174685] = "Cleansed Night Dragon", + [174686] = "Corrupted Whipper Root", + [174687] = "Cleansed Whipper Root", + [174698] = "Chair", + [174699] = "Chair", + [174700] = "Chair", + [174701] = "Chair", + [174702] = "Chair", + [174708] = "Corrupted Windblossom", + [174709] = "Corrupted Windblossom", + [174710] = "Cleansed Windblossom", + [174711] = "Cleansed Windblossom", + [174712] = "Corrupted Songflower", + [174713] = "Corrupted Songflower", + [174714] = "Cleansed Songflower", + [174715] = "Cleansed Songflower", + [174728] = "Damaged Crate", + [174729] = "Bonfire", + [174730] = "Bonfire", + [174744] = "Shadowforge Brazier", + [174745] = "Shadowforge Brazier", + [174746] = "Etched Note", + [174764] = "Witherbark Totem Bundle", + [174792] = "Gorishi Silithid Crystal", + [174793] = "Gorishi Hive Hatchery", + [174794] = "Mirror Lake Waterwall", + [174795] = "Auberdine Moonwell", + [174796] = "Sandsorrow Watch Water Hole", + [174797] = "Xavian Waterfall", + [174846] = "Fierce Blaze", + [174847] = "Mighty Blaze", + [174848] = "Testing Equipment", + [174857] = "Jazzik\'s General Goods", + [174858] = "Ironzar\'s Imported Weaponry", + [174859] = "Fierce Blaze", + [174862] = "Stove", + [174863] = "Stove", + [174864] = "Doodad_GeneralChairLoEnd75", + [174865] = "Doodad_GeneralChairLoEnd64", + [174866] = "Doodad_GeneralChairLoEnd72", + [174867] = "Doodad_GeneralChairLoEnd66", + [174868] = "Doodad_GeneralChairLoEnd76", + [174869] = "Doodad_GeneralChairLoEnd78", + [174870] = "Doodad_GeneralChairLoEnd79", + [174871] = "Doodad_GeneralChairLoEnd81", + [174872] = "Stove", + [174875] = "Chair", + [174876] = "Chair", + [174877] = "Chair", + [174878] = "Chair", + [174879] = "Chair", + [174880] = "Chair", + [174881] = "Chair", + [174882] = "Chair", + [174883] = "Chair", + [174884] = "Chair", + [174885] = "Chair", + [174886] = "Chair", + [174887] = "Chair", + [174888] = "Chair", + [174889] = "Chair", + [174890] = "Chair", + [174891] = "Chair", + [174892] = "Chair", + [174893] = "Chair", + [174894] = "Chair", + [174895] = "Chair", + [174896] = "Chair", + [174897] = "Chair", + [174898] = "Chair", + [174899] = "Chair", + [174900] = "Chair", + [174901] = "Chair", + [174902] = "Chair", + [174903] = "Chair", + [174904] = "Chair", + [174905] = "Chair", + [174906] = "Chair", + [174907] = "Chair", + [174908] = "Chair", + [174909] = "Chair", + [174910] = "Chair", + [174911] = "Chair", + [174932] = "Chair", + [174933] = "Chair", + [174934] = "Chair", + [174935] = "Chair", + [174936] = "Chair", + [174937] = "Chair", + [174938] = "Chair", + [174939] = "Chair", + [174940] = "Chair", + [174941] = "Chair", + [174942] = "Chair", + [174943] = "Chair", + [174944] = "Chair", + [174945] = "Chair", + [174946] = "Chair", + [174954] = "Wooden Chair", + [174955] = "Wooden Chair", + [174956] = "Wooden Chair", + [174957] = "Wooden Chair", + [174958] = "Wooden Chair", + [174959] = "Wooden Chair", + [174960] = "Wooden Chair", + [174961] = "Wooden Chair", + [174962] = "Wooden Chair", + [174963] = "Wooden Chair", + [174964] = "Wooden Chair", + [174965] = "Wooden Chair", + [174966] = "Wooden Chair", + [174967] = "Wooden Chair", + [174968] = "Wooden Chair", + [174994] = "Wooden Chair", + [174995] = "Wooden Chair", + [174996] = "Wooden Chair", + [174997] = "Wooden Chair", + [174998] = "Wooden Chair", + [175075] = "Brazier", + [175076] = "Brazier", + [175078] = "Anvil", + [175080] = "Zeppelin - Grom\'Gol-Orgrimar", + [175084] = "The Sparklematic 5200", + [175085] = "The Sparklematic 5200", + [175087] = "The Sparklematic 5200", + [175104] = "Campfire", + [175124] = "Rookery Egg", + [175144] = "Forge", + [175145] = "Anvil", + [175146] = "Cooking Brazier", + [175148] = "Doodad_UndeadCampFire25", + [175149] = "Doodad_GeneralMedChair02", + [175150] = "Doodad_GeneralMedChair03", + [175151] = "Doodad_GeneralMedChair04", + [175153] = "Emberseer Out", + [175165] = "Silver Dawning\'s Lockbox", + [175166] = "Mist Veil\'s Lockbox", + [175167] = "Viewing Room Door", + [175179] = "Campfire", + [175180] = "Campfire", + [175181] = "Campfire", + [175185] = "Doodad_Drake_Rider_portcullis", + [175186] = "Doodad_Portcullis_TOBOSSROOMS", + [175187] = "Doodad_DarkIronDwarfRune_A01", + [175194] = "Room 7 Rune", + [175195] = "Room 3 Rune", + [175196] = "Room 6 Rune", + [175197] = "Room 1 Rune", + [175198] = "Room 5 Rune", + [175199] = "Room 2 Rune", + [175200] = "Room 4 Rune", + [175207] = "Beached Sea Creature", + [175226] = "Beached Sea Creature", + [175227] = "Beached Sea Creature", + [175230] = "Beached Sea Creature", + [175233] = "Beached Sea Creature", + [175244] = "Emberseer In", + [175245] = "Father Flame", + [175246] = "Kibler\'s Cage", + [175247] = "Kibler\'s Cage", + [175248] = "Kibler\'s Cage", + [175249] = "Kibler\'s Cage", + [175264] = "Broodling Essence", + [175265] = "Testing Equipment", + [175266] = "Doodad_DarkIronDwarfRune_A01", + [175267] = "Doodad_DarkIronDwarfRune_B01", + [175268] = "Doodad_DarkIronDwarfRune_c01", + [175269] = "Doodad_DarkIronDwarfRune_d01", + [175270] = "Doodad_DarkIronDwarfRune_e01", + [175271] = "Doodad_DarkIronDwarfRune_f01", + [175272] = "Doodad_DarkIronDwarfRune_g01", + [175284] = "Campfire", + [175285] = "Campfire", + [175286] = "Campfire", + [175287] = "Doodad_SmallBrazierPurple03", + [175288] = "Doodad_SmallBrazierPurple05", + [175289] = "Doodad_MediumBrazierPurple05", + [175290] = "Doodad_MediumBrazierPurple06", + [175291] = "Doodad_MediumBrazierPurple07", + [175292] = "Doodad_MediumBrazierPurple08", + [175293] = "Doodad_MediumBrazierPurple09", + [175294] = "Doodad_OrcSign_DarkfireEnclave", + [175298] = "Doodad_SmallBrazierPurple04", + [175300] = "Doodad_MediumBrazierPurple03", + [175302] = "Doodad_OrcSign_theSlowBlade", + [175305] = "Doodad_MediumBrazierPurple10", + [175306] = "Doodad_MediumBrazierPurple11", + [175307] = "Doodad_OrcSign_ShadowdeepReagents", + [175308] = "Doodad_OrcSign_DarkEarth", + [175310] = "Doodad_MediumBrazierPurple13", + [175311] = "Doodad_OrcSign_IronwoodStavesandWands", + [175312] = "Mighty Blaze", + [175313] = "Mighty Blaze", + [175314] = "Mighty Blaze", + [175315] = "Mighty Blaze", + [175316] = "Mighty Blaze", + [175317] = "Mighty Blaze", + [175318] = "Mighty Blaze", + [175319] = "Darkfire Enclave", + [175320] = "WANTED: Murkdeep!", + [175321] = "Unforged Seal of Ascension", + [175322] = "Forged Seal of Ascension", + [175324] = "Frostmaul Shards", + [175329] = "Blackwood Nut Stores", + [175330] = "Blackwood Fruit Stores", + [175331] = "Blackwood Grain Stores", + [175334] = "Bijou\'s Belongings", + [175335] = "Bonfire", + [175336] = "Purified Food", + [175338] = "Blackwood Furbolg North Bonfire", + [175350] = "Doodad_SmallPortcullis04", + [175351] = "Doodad_SmallPortcullis03", + [175352] = "King\'s Square Gate", + [175353] = "King\'s Square Gate", + [175354] = "Doodad_SmallPortcullis09", + [175355] = "Doodad_SmallPortcullis08", + [175356] = "Gauntlet Gate", + [175357] = "Gauntlet Gate", + [175358] = "Slaughter Square Gate", + [175359] = "Doodad_SmallPortcullis11", + [175368] = "Service Entrance Gate", + [175369] = "Elders\' Square Service Entrance", + [175370] = "Doodad_SmallPortcullis05", + [175371] = "Cliffspring River Waterfall", + [175372] = "Doodad_LargePortcullis04", + [175373] = "Doodad_LargePortcullis05", + [175374] = "Doodad_LargePortcullis06", + [175375] = "Doodad_LargePortcullis01", + [175376] = "Doodad_LargePortcullis02", + [175377] = "Doodad_LargePortcullis03", + [175379] = "Doodad_ZigguratDoor02", + [175380] = "Doodad_ZigguratDoor01", + [175381] = "Doodad_ZigguratDoor03", + [175382] = "Doomrigger\'s Coffer", + [175383] = "Anvil", + [175384] = "Highperch Wyvern Egg", + [175385] = "Darkstone Tablet", + [175404] = "Rich Thorium Vein", + [175405] = "Doodad_ZigguratDoor04", + [175406] = "Bonfire", + [175407] = "Moontouched Feather", + [175424] = "Brazier", + [175425] = "Brazier", + [175426] = "Brazier", + [175427] = "Brazier", + [175428] = "Brazier", + [175429] = "Brazier", + [175430] = "Brazier", + [175431] = "Brazier", + [175433] = "Festival Lane", + [175434] = "Crusaders\' Square", + [175435] = "King\'s Square", + [175436] = "Festival Lane", + [175437] = "Crusaders\' Square", + [175438] = "Market Row", + [175439] = "King\'s Square", + [175440] = "Elders\' Square", + [175441] = "Elders\' Square", + [175442] = "Festival Lane", + [175443] = "Market Row", + [175444] = "Main Gate", + [175445] = "Market Row", + [175447] = "Main Gate", + [175449] = "Slaughter Square", + [175450] = "Elders\' Square", + [175454] = "Elders\' Square", + [175455] = "Slaughter Square", + [175457] = "Crusaders\' Square", + [175458] = "Market Row", + [175459] = "To Stranglethorn Vale", + [175460] = "Market Row", + [175461] = "Service Entrance", + [175462] = "The Gauntlet", + [175463] = "Festival Lane", + [175466] = "Kirtonos Bros. Funeral Home", + [175467] = "Goodman\'s General Store", + [175469] = "Pierce\'s Pistols", + [175470] = "Angelista\'s Boutique", + [175471] = "The Stone Crow Tavern", + [175472] = "Leeka\'s Shields & Maces", + [175474] = "The Bayberry Inn", + [175477] = "Enoyls Engineering, Inc.", + [175478] = "Chilton\'s Magic Shop", + [175479] = "Legacy of Steel - Fine Weaponry", + [175481] = "Cash & Sons - Pawn Brokers", + [175483] = "The Orphanage", + [175484] = "Fras Siabi\'s Premium Tobacco", + [175487] = "Third Mosh\'aru Tablet", + [175488] = "Fourth Mosh\'aru Tablet", + [175490] = "Ogre Poo 2", + [175491] = "Ogre Poo 1", + [175492] = "Ogre Poo 3", + [175524] = "Mysterious Red Crystal", + [175528] = "Doodad_DarkIronBrazier01", + [175529] = "Doodad_DarkIronBrazier02", + [175530] = "Doodad_DarkIronBrazier03", + [175531] = "Doodad_DarkIronBrazier04", + [175532] = "Doodad_DarkIronBrazier05", + [175533] = "Doodad_DarkIronBrazier06", + [175534] = "Supply Crate", + [175535] = "Supply Crate", + [175536] = "Supply Crate", + [175537] = "Supply Crate", + [175539] = "Ozzie Down", + [175544] = "Ball and chain", + [175545] = "Meat Smoker", + [175564] = "Brazier of the Herald", + [175565] = "Alien Egg", + [175566] = "Gloom Weed", + [175567] = "Alien Egg", + [175570] = "Gate", + [175571] = "Ogre Coup Summoning Circle", + [175584] = "Challenge to Urok", + [175586] = "Jaron\'s Wagon", + [175587] = "Damaged Crate", + [175588] = "Spire Spider Egg", + [175589] = "Challenge to Urok Trap", + [175590] = "Spire Spider Egg Trap", + [175591] = "Blazing Fire", + [175592] = "Cooking Fire", + [175593] = "Campfire", + [175594] = "Bonfire", + [175595] = "Campfire", + [175596] = "Small Fire", + [175597] = "Campfire", + [175598] = "Campfire", + [175599] = "Raging Fire", + [175600] = "Cooking Fire", + [175601] = "Small Fire", + [175602] = "Bonfire", + [175603] = "Campfire", + [175604] = "Cooking Fire", + [175605] = "Cooking Fire", + [175606] = "Spire Spider Egg", + [175607] = "Dark Iron Dwarf Corpse", + [175608] = "Dark Iron Dwarf Corpse", + [175609] = "Dark Iron Dwarf Corpse", + [175610] = "Door", + [175611] = "Iron Gate", + [175612] = "Iron Gate", + [175613] = "Iron Gate", + [175614] = "Iron Gate", + [175615] = "Iron Gate", + [175616] = "Iron Gate", + [175617] = "Iron Gate", + [175618] = "Iron Gate", + [175619] = "Door", + [175620] = "Iron Gate", + [175621] = "Urok\'s Tribute Pile", + [175622] = "Rookery Egg Spawner", + [175628] = "Jaron\'s Supplies", + [175629] = "Jaron\'s Supplies", + [175630] = "Campfire", + [175631] = "Campfire", + [175632] = "Campfire", + [175644] = "Doodad_RuinedSign02", + [175645] = "Doodad_RuinedSign03", + [175646] = "Doodad_RuinedSign05", + [175647] = "Doodad_WoodSignPointerNice03", + [175648] = "Doodad_WoodSignPointerNice05", + [175649] = "Doodad_WoodSignPointerNice04", + [175650] = "Doodad_WoodSignPointerNice06", + [175651] = "Doodad_WoodSignPointerNice07", + [175652] = "Doodad_WoodSignPointerNice08", + [175653] = "Doodad_WoodSignPointerNice09", + [175654] = "Doodad_RuinedSign06", + [175655] = "Doodad_RuinedSign07", + [175656] = "Doodad_WoodSignPointerNice10", + [175657] = "Doodad_WoodSignPointerNice11", + [175658] = "The Armor of Mannoroth", + [175659] = "Here Lies King Terenas Menethil II", + [175663] = "Doodad_GnomeSign_Engineer01", + [175664] = "Doodad_DwarfSign_Alchemist01", + [175665] = "Doodad_DwarfSign_Fireworks01", + [175666] = "Doodad_DwarvenBrazier196", + [175667] = "Doodad_DwarvenBrazier195", + [175668] = "Doodad_PostBoxGnome01", + [175669] = "Campfire", + [175670] = "Small Fire", + [175671] = "Bonfire", + [175672] = "Campfire", + [175673] = "Campfire", + [175674] = "Raging Fire", + [175675] = "Cooking Fire", + [175677] = "Anvil", + [175678] = "Forge", + [175679] = "The Skull of Tyrannistrasz", + [175680] = "Fossilized Egg", + [175681] = "Roc Talon", + [175682] = "Geru Strider", + [175683] = "Toothgnasher\'s Skeleton", + [175684] = "Saurial Egg", + [175685] = "Pteradon Skeleton", + [175686] = "Highborne Astrolabe", + [175687] = "Uldaman Relics", + [175688] = "Horde Catapult", + [175689] = "Uldaman Reliefs", + [175704] = "Singed Letter", + [175705] = "Doors", + [175706] = "Blackrock Altar", + [175707] = "Campfire", + [175708] = "Crossroads\' Supply Crates", + [175724] = "Sargeras and the Betrayal", + [175725] = "The Old Gods and the Ordering of Azeroth", + [175726] = "Charge of the Dragonflights", + [175727] = "The War of the Ancients", + [175729] = "Mount Hyjal and Illidan\'s Gift", + [175730] = "The World Tree and the Emerald Dream", + [175731] = "Exile of the High Elves", + [175732] = "The Sentinels and the Long Vigil", + [175733] = "The Founding of Quel\'Thalas", + [175734] = "Arathor and the Troll Wars", + [175735] = "The Guardians of Tirisfal", + [175736] = "Ironforge - the Awakening of the Dwarves", + [175737] = "The Seven Kingdoms", + [175738] = "Aegwynn and the Dragon Hunt", + [175739] = "War of the Three Hammers", + [175740] = "The Last Guardian", + [175741] = "Kil\'jaeden and the Shadow Pact", + [175742] = "Rise of the Horde", + [175743] = "Anvil", + [175744] = "Anvil", + [175745] = "The Dark Portal and the Fall of Stormwind", + [175746] = "The Alliance of Lordaeron", + [175747] = "The Invasion of Draenor", + [175748] = "The Birth of the Lich King", + [175749] = "Icecrown and the Frozen Throne", + [175750] = "The Battle of Grim Batol", + [175751] = "Lethargy of the Orcs", + [175752] = "The New Horde", + [175753] = "War of the Spider", + [175754] = "Kel\'Thuzad and the Forming of the Scourge", + [175756] = "The Scourge of Lordaeron", + [175757] = "Sunwell - The Fall of Quel\'Thalas", + [175758] = "Archimonde\'s Return and the Flight to Kalimdor", + [175759] = "The Betrayer Ascendant", + [175760] = "Rise of the Blood Elves", + [175761] = "Civil War in the Plaguelands", + [175762] = "The Lich King Triumphant", + [175763] = "Old Hatreds - The Colonization of Kalimdor", + [175764] = "Campfire", + [175765] = "Campfire", + [175766] = "Campfire", + [175767] = "Campfire", + [175771] = "Arellas Fireleaf", + [175772] = "Admiral Barean Westwind", + [175773] = "Dorgar Stoenbrow", + [175774] = "Fellari Swiftarrow", + [175775] = "Ferren Marcus", + [175776] = "Harthal Truesight", + [175777] = "Holia Sunshield", + [175778] = "Invar One-Arm", + [175779] = "Orman of Stromgarde", + [175780] = "Valea Twinblades", + [175781] = "Yana Bloodspear", + [175784] = "LumberPile", + [175785] = "Inconspicuous Documents", + [175787] = "Unadorned Stake", + [175788] = "Unadorned Stake", + [175789] = "Rend Head Event Timer", + [175791] = "Font of Power", + [175795] = "Andorhal Silo Temporal Rift", + [175796] = "Doodad_ZigguratDoor05", + [175797] = "Campfire", + [175798] = "Campfire", + [175799] = "Campfire", + [175800] = "Campfire", + [175801] = "Campfire", + [175802] = "Small Lockbox", + [175803] = "Bench", + [175804] = "Bench", + [175805] = "Bench", + [175806] = "Bench", + [175811] = "Stove", + [175824] = "Crusaders\' Square", + [175825] = "Crusaders\' Square", + [175844] = "Campfire", + [175845] = "Campfire", + [175846] = "Campfire", + [175847] = "Campfire", + [175848] = "Campfire", + [175849] = "Campfire", + [175850] = "Campfire", + [175851] = "Forge", + [175852] = "Anvil", + [175853] = "Meat Smoker", + [175854] = "The Twin Empires", + [175855] = "Empires\' Fall", + [175856] = "Wrath of Soulflayer", + [175857] = "Chair", + [175858] = "Chair", + [175864] = "Mailbox", + [175885] = "Horde Bell", + [175886] = "Roughshod Pike", + [175887] = "Finkle Trap", + [175888] = "Highborne Relic Fragment", + [175889] = "Ancient Egg", + [175890] = "Ancient Egg Aura", + [175891] = "Highborne Relic Fragment", + [175892] = "Highborne Relic Fragment", + [175893] = "Highborne Relic Fragment", + [175894] = "Janice\'s Parcel", + [175904] = "Gadgetzan Auction", + [175924] = "Locked Cabinet", + [175925] = "Outhouse", + [175926] = "Mrs. Dalson\'s Diary", + [175927] = "Malyfous\'s Catalogue", + [175928] = "Incendia Agave", + [175929] = "Campfire", + [175930] = "Campfire", + [175931] = "Campfire", + [175932] = "Campfire", + [175933] = "Decorated Headstone", + [175944] = "Sacred Fire of Life", + [175946] = "Doodad_BOSSGATE01", + [175947] = "Doodad_BOSSGATE02", + [175948] = "Booty Bay Alarm Bell", + [175949] = "Fifth Mosh\'aru Tablet", + [175950] = "Sixth Mosh\'aru Tablet", + [175964] = "Skin of Shadow", + [175965] = "Frostwhisper\'s Embalming Fluid", + [175966] = "Enchanted Scarlet Thread", + [175967] = "The Bastion Door", + [175968] = "Hoard Door", + [175969] = "Doodad_DwarvenTunnelPortcullis04", + [175970] = "Unforged Runic Breastplate", + [176004] = "Subway Bench", + [176005] = "Subway Bench", + [176006] = "Subway Bench", + [176007] = "Subway Bench", + [176008] = "Subway Bench", + [176009] = "Subway Bench", + [176010] = "Subway Bench", + [176011] = "Subway Bench", + [176012] = "Subway Bench", + [176013] = "Subway Bench", + [176014] = "Subway Bench", + [176015] = "Subway Bench", + [176016] = "Subway Bench", + [176017] = "Subway Bench", + [176018] = "Subway Bench", + [176019] = "Subway Bench", + [176020] = "Subway Bench", + [176021] = "Subway Bench", + [176022] = "Subway Bench", + [176023] = "Subway Bench", + [176024] = "Subway Bench", + [176025] = "Subway Bench", + [176026] = "Subway Bench", + [176027] = "Subway Bench", + [176028] = "Subway Bench", + [176029] = "Subway Bench", + [176030] = "Subway Bench", + [176031] = "Subway Bench", + [176032] = "Subway Bench", + [176033] = "Subway Bench", + [176034] = "Subway Bench", + [176035] = "Subway Bench", + [176036] = "Subway Bench", + [176037] = "Subway Bench", + [176038] = "Subway Bench", + [176039] = "Subway Bench", + [176040] = "Subway Bench", + [176041] = "Subway Bench", + [176042] = "Subway Bench", + [176043] = "Subway Bench", + [176044] = "Subway Bench", + [176045] = "Subway Bench", + [176046] = "Subway Bench", + [176047] = "Subway Bench", + [176048] = "Subway Bench", + [176049] = "Subway Bench", + [176050] = "Subway Bench", + [176051] = "Subway Bench", + [176052] = "Subway Bench", + [176053] = "Subway Bench", + [176054] = "Subway Bench", + [176055] = "Subway Bench", + [176056] = "Subway Bench", + [176057] = "Subway Bench", + [176058] = "Subway Bench", + [176059] = "Subway Bench", + [176060] = "Subway Bench", + [176061] = "Subway Bench", + [176062] = "Subway Bench", + [176063] = "Subway Bench", + [176064] = "Subway Bench", + [176065] = "Subway Bench", + [176066] = "Subway Bench", + [176067] = "Subway Bench", + [176068] = "Subway Bench", + [176069] = "Subway Bench", + [176070] = "Subway Bench", + [176071] = "Subway Bench", + [176072] = "Subway Bench", + [176073] = "Subway Bench", + [176074] = "Subway Bench", + [176075] = "Subway Bench", + [176076] = "Subway Bench", + [176077] = "Subway Bench", + [176078] = "Subway Bench", + [176079] = "Subway Bench", + [176080] = "Subway", + [176081] = "Subway", + [176082] = "Subway", + [176083] = "Subway", + [176084] = "Subway", + [176085] = "Subway", + [176086] = "Subway", + [176087] = "Scourge Banner", + [176088] = "Scarlet Crusade Forward Camp", + [176089] = "Unfired Plate Gauntlets", + [176090] = "Human Remains", + [176091] = "Deadwood Cauldron", + [176092] = "Box of Incendiaries", + [176093] = "Beacon Torch", + [176094] = "Andorhal Tower One", + [176095] = "Andorhal Tower", + [176096] = "Andorhal Tower Three", + [176097] = "Andorhal Tower Four", + [176098] = "Subway Bench", + [176099] = "Subway Bench", + [176100] = "Subway Bench", + [176101] = "Subway Bench", + [176102] = "Subway Bench", + [176103] = "Subway Bench", + [176104] = "Subway Bench", + [176105] = "Subway Bench", + [176106] = "Subway Bench", + [176107] = "Subway Bench", + [176108] = "Subway Bench", + [176109] = "Subway Bench", + [176110] = "Dawn\'s Gambit Trap", + [176111] = "Scholomance Viewing Room Spell Focus (DND)", + [176112] = "Malor\'s Strongbox", + [176113] = "Brazier", + [176115] = "Wanted Poster - Arnak Grimtotem", + [176116] = "Pamela\'s Doll\'s Head", + [176117] = "Pamela\'s Doll\'s Trap", + [176142] = "Pamela\'s Doll\'s Left Side", + [176143] = "Pamela\'s Doll\'s Right Side", + [176145] = "Joseph Redpath\'s Monument", + [176146] = "Gate of Ahn\'Qiraj", + [176147] = "Ahn\'Qiraj Gate Roots", + [176148] = "Ahn\'Qiraj Gate Runes", + [176149] = "Gate of Ahn\'Qiraj2", + [176150] = "Musty Tome", + [176151] = "Musty Tome", + [176152] = "Musty Tome Trap", + [176158] = "Brazier of Pain", + [176159] = "Brazier of Malice", + [176160] = "Brazier of Suffering", + [176161] = "Brazier of Hatred", + [176163] = "Rune of Mazthoril", + [176164] = "Rune of Mazthoril LT", + [176165] = "Rune of Mazthoril UT", + [176166] = "Rune of Mazthoril", + [176184] = "the Corrupt Jaedenar Moon Well", + [176186] = "Campfire", + [176187] = "Campfire", + [176188] = "Ritual Candle", + [176189] = "Skeletal Sea Turtle", + [176190] = "Beached Sea Turtle", + [176191] = "Beached Sea Turtle", + [176192] = "Catalogue of the Wayward", + [176193] = "Umi Friend Spell Focus (DND)", + [176194] = "Hall of the High Command", + [176195] = "Panther Cage", + [176196] = "Beached Sea Turtle", + [176197] = "Beached Sea Turtle", + [176198] = "Beached Sea Turtle", + [176200] = "Campfire", + [176201] = "Campfire", + [176202] = "Campfire", + [176203] = "Campfire", + [176204] = "Campfire", + [176206] = "Davil\'s Libram", + [176207] = "Redpath\'s Shield", + [176208] = "Horgus\' Skull", + [176209] = "Shattered Sword of Marduk", + [176210] = "Command Tent", + [176211] = "Cannonball", + [176213] = "Blood of Heroes", + [176214] = "Blood of Heroes", + [176215] = "Cannonball Stack", + [176216] = "Scarlet Cannon", + [176217] = "Scarlet Cannon", + [176224] = "Supply Crate", + [176225] = "Arko\'niran\'s Chest", + [176226] = "Campfire", + [176227] = "Campfire", + [176228] = "Campfire", + [176229] = "Campfire", + [176230] = "Campfire", + [176231] = "Proudmore\'s Treasure", + [176232] = "Wooden Chair", + [176233] = "Wooden Chair", + [176234] = "Wooden Chair", + [176235] = "Wooden Chair", + [176236] = "Wooden Chair", + [176237] = "Wooden Chair", + [176238] = "Wooden Chair", + [176239] = "Wooden Chair", + [176240] = "Wooden Chair", + [176241] = "Wooden Chair", + [176242] = "Wooden Chair", + [176243] = "Wooden Chair", + [176244] = "Moonspray", + [176245] = "Scarlet Archive", + [176247] = "Pamela\'s Doll", + [176248] = "Premium Siabi Tobacco", + [176249] = "Scourge Data", + [176264] = "Campfire", + [176265] = "Campfire", + [176266] = "Campfire", + [176267] = "Campfire", + [176268] = "Campfire", + [176269] = "Bonfire", + [176270] = "Campfire", + [176271] = "Campfire", + [176272] = "Campfire", + [176273] = "Bubbling Cauldron", + [176274] = "Campfire", + [176275] = "Bubbling Cauldron", + [176276] = "Campfire", + [176277] = "Campfire", + [176278] = "Cauldron", + [176279] = "Bonfire", + [176280] = "Bonfire", + [176281] = "Bonfire", + [176282] = "Bonfire", + [176283] = "Bonfire", + [176284] = "Cauldron", + [176285] = "Bonfire", + [176286] = "Bonfire", + [176287] = "Bonfire", + [176288] = "Bonfire", + [176289] = "Bonfire", + [176290] = "Campfire", + [176291] = "Bonfire", + [176292] = "Campfire", + [176293] = "Bonfire", + [176294] = "Bonfire", + [176295] = "Archive Fire", + [176296] = "Portal to Stormwind", + [176304] = "Supply Crate", + [176305] = "Brazier", + [176306] = "Cage", + [176307] = "Supply Crate", + [176308] = "Supply Crate", + [176309] = "Supply Crate", + [176310] = "Serenity\'s Shore", + [176311] = "Pew", + [176312] = "Pew", + [176313] = "Pew", + [176314] = "Pew", + [176315] = "Pew", + [176316] = "Pew", + [176317] = "The Argent Hold", + [176318] = "Bonfire", + [176319] = "Mailbox", + [176324] = "Mailbox", + [176325] = "Blacksmithing Plans", + [176327] = "Blacksmithing Plans", + [176344] = "Document Chest", + [176346] = "Market Row Postbox", + [176348] = "Styleen\'s Cart", + [176349] = "Crusaders\' Square Postbox", + [176350] = "Festival Lane Postbox", + [176351] = "Elders\' Square Postbox", + [176352] = "King\'s Square Postbox", + [176353] = "Fras Siabi\'s Postbox", + [176356] = "Sacred Highborne Writings", + [176360] = "Postbox Parcel", + [176361] = "Scourge Cauldron", + [176364] = "Boat to Menethil", + [176365] = "Boat to Teldrassil", + [176369] = "Boat to Theramore", + [176370] = "Boat to Auberdine", + [176371] = "Wooden Chair", + [176372] = "Wooden Chair", + [176373] = "Wooden Chair", + [176374] = "Wooden Chair", + [176375] = "Wooden Chair", + [176376] = "Wooden Chair", + [176377] = "Wooden Chair", + [176378] = "Wooden Chair", + [176379] = "Wooden Chair", + [176380] = "Wooden Chair", + [176381] = "Wooden Chair", + [176382] = "Wooden Chair", + [176383] = "Wooden Chair", + [176384] = "Wooden Chair", + [176385] = "Wooden Chair", + [176386] = "Wooden Chair", + [176387] = "Wooden Chair", + [176388] = "Wooden Chair", + [176389] = "Campfire", + [176390] = "Campfire", + [176392] = "Scourge Cauldron", + [176393] = "Scourge Cauldron", + [176404] = "Mailbox", + [176424] = "Doodad_GuildInstanceBLOCKER", + [176425] = "Bonfire", + [176426] = "Bonfire", + [176427] = "Fire", + [176428] = "Fire", + [176429] = "Fire", + [176430] = "Fire", + [176431] = "Fire", + [176432] = "Fire", + [176433] = "Fire", + [176434] = "Fire", + [176435] = "Fire", + [176436] = "Bonfire", + [176437] = "Fire", + [176438] = "Bonfire", + [176439] = "Bonfire", + [176440] = "Fire", + [176441] = "Fire", + [176442] = "Bonfire", + [176443] = "Fire", + [176444] = "Bonfire", + [176445] = "Bonfire", + [176446] = "Fire", + [176447] = "Bonfire", + [176448] = "Bonfire", + [176449] = "Bonfire", + [176450] = "Bonfire", + [176451] = "Bonfire", + [176452] = "Bonfire", + [176454] = "Meat Rack", + [176455] = "Meat Rack", + [176456] = "Meat Rack", + [176457] = "Fire", + [176458] = "Meat Rack", + [176459] = "Meat Rack", + [176460] = "Fire", + [176461] = "Meat Rack", + [176462] = "Cooking Table", + [176463] = "Cooking Table", + [176464] = "Campfire", + [176484] = "The Deed to Brill", + [176485] = "The Deed to Caer Darrow", + [176486] = "The Deed to Southshore", + [176487] = "The Deed to Tarren Mill", + [176488] = "Brazier", + [176489] = "Brazier", + [176490] = "Brazier", + [176491] = "Brazier", + [176492] = "Brazier", + [176493] = "Brazier", + [176495] = "Zeppelin - Grom\'Gol to Undercity", + [176496] = "Brazier", + [176497] = "Portal to Ironforge", + [176498] = "Portal to Darnassus", + [176499] = "Portal to Orgrimmar", + [176500] = "Portal to Thunder Bluff", + [176501] = "Portal to Undercity", + [176504] = "Campfire", + [176505] = "Bonfire", + [176506] = "Campfire", + [176507] = "Campfire", + [176508] = "Anvil", + [176509] = "Forge", + [176510] = "Onyxia Whelp Spawner", + [176511] = "Onyxia Egg", + [176513] = "Lava Fissure", + [176514] = "Lava Fissure", + [176515] = "Lava Fissure", + [176516] = "Doodad_SmallFirePit71", + [176517] = "Doodad_SmallFirePit72", + [176518] = "Doodad_SmallFirePit73", + [176519] = "Doodad_SmallFirePit74", + [176520] = "Doodad_SmallFirePit75", + [176521] = "Doodad_SmallFirePit76", + [176544] = "Remains of Eva Sarkhoff", + [176545] = "Remains of Lucien Sarkhoff", + [176546] = "Eva Remains Ablaze", + [176547] = "Lucien Remains Ablaze", + [176549] = "Brazier", + [176550] = "Brazier", + [176551] = "Brazier", + [176552] = "Brazier", + [176553] = "Brazier", + [176554] = "Brazier", + [176555] = "Brazier", + [176556] = "Brazier", + [176557] = "Mortar", + [176558] = "Bonfire", + [176559] = "Cauldron", + [176560] = "Bonfire", + [176561] = "Krastinov\'s Work Bench", + [176562] = "Officer\'s Door", + [176563] = "Mighty Blaze", + [176564] = "Mighty Blaze", + [176565] = "Mighty Blaze", + [176566] = "Officer\'s Door", + [176567] = "Mighty Blaze", + [176568] = "Mighty Blaze", + [176569] = "Mighty Blaze", + [176570] = "Mighty Blaze", + [176571] = "Mighty Blaze", + [176572] = "Mighty Blaze", + [176573] = "Alliance Bell", + [176574] = "Cauldron", + [176575] = "Officer\'s Door", + [176576] = "Officer\'s Door", + [176577] = "Gate", + [176578] = "Door", + [176579] = "Door", + [176580] = "Door", + [176581] = "Hand of Iruxos Crystal", + [176582] = "Shellfish Trap", + [176583] = "Golden Sansam", + [176584] = "Dreamfoil", + [176586] = "Mountain Silversage", + [176587] = "Plaguebloom", + [176588] = "Icecap", + [176589] = "Black Lotus", + [176591] = "Horgus\' Skull Trap", + [176592] = "Shellfish Trap", + [176594] = "Doors", + [176604] = "Bonfire", + [176605] = "Brazier", + [176606] = "Brazier", + [176607] = "Brazier", + [176608] = "Brazier", + [176609] = "Brazier", + [176610] = "Brazier", + [176611] = "Brazier", + [176612] = "Brazier", + [176617] = "Bonfire", + [176618] = "Bonfire", + [176619] = "Bonfire", + [176624] = "Dwarven Brazier", + [176625] = "Dwarven Brazier", + [176626] = "Dwarven Brazier", + [176627] = "Dwarven Brazier", + [176628] = "Dwarven Brazier", + [176629] = "Dwarven Brazier", + [176630] = "Keepsake of Remembrance", + [176631] = "Menethil\'s Gift", + [176632] = "Door", + [176633] = "Door", + [176634] = "Kerlonian\'s Chest", + [176635] = "Shellfish Trap", + [176636] = "Sungrass", + [176637] = "Gromsblood", + [176638] = "Golden Sansam", + [176639] = "Dreamfoil", + [176640] = "Mountain Silversage", + [176641] = "Plaguebloom", + [176642] = "Arthas\' Tears", + [176643] = "Small Thorium Vein", + [176645] = "Mithril Deposit", + [176665] = "Chair", + [176666] = "Chair", + [176667] = "Chair", + [176668] = "Chair", + [176669] = "Chair", + [176670] = "Chair", + [176671] = "Chair", + [176672] = "Chair", + [176673] = "Chair", + [176674] = "Chair", + [176675] = "Chair", + [176676] = "Chair", + [176677] = "Chair", + [176678] = "Chair", + [176679] = "Chair", + [176680] = "Chair", + [176681] = "Chair", + [176682] = "Chair", + [176683] = "Chair", + [176684] = "Chair", + [176685] = "Chair", + [176686] = "Chair", + [176687] = "Chair", + [176688] = "Chair", + [176689] = "Chair", + [176690] = "Chair", + [176691] = "Chair", + [176692] = "Chair", + [176693] = "Chair", + [176694] = "Gate", + [176705] = "Bonfire", + [176745] = "Caer Darrow Skeleton 001", + [176746] = "Big Barracks Flame", + [176747] = "Small Barracks Flame", + [176748] = "Bench", + [176749] = "Bench", + [176750] = "Kodo Bones Trap", + [176751] = "Kodo Bones", + [176752] = "Kodo Bones", + [176753] = "Doom Weed", + [176767] = "Torch", + [176768] = "Stove", + [176784] = "Bonfire", + [176785] = "Ammo Crate", + [176786] = "Campfire", + [176787] = "Bonfire", + [176789] = "Campfire", + [176790] = "Cooking Table", + [176791] = "Campfire", + [176792] = "Campfire", + [176793] = "Bundle of Wood", + [176794] = "Windshear Crag", + [176795] = "Stonetalon Peak", + [176796] = "Desolace", + [176797] = "The Charred Vale", + [176798] = "Sun Rock Retreat", + [176799] = "Sun Rock Retreat", + [176800] = "Windshear Crag", + [176801] = "Stonetalon Peak", + [176804] = "Campfire", + [176805] = "Bonfire", + [176806] = "Campfire", + [176807] = "Campfire", + [176808] = "Campfire", + [176809] = "Lava Fissure", + [176810] = "Lava Fissure", + [176811] = "Lava Fissure", + [176812] = "Lava Fissure", + [176813] = "Lava Fissure", + [176814] = "Lava Fissure", + [176815] = "Lava Fissure", + [176816] = "Lava Fissure", + [176817] = "Lava Fissure", + [176818] = "Lava Fissure", + [176819] = "Lava Fissure", + [176820] = "Lava Fissure", + [176821] = "Lava Fissure", + [176822] = "Lava Fissure", + [176823] = "Lava Fissure", + [176824] = "Lava Fissure", + [176825] = "Lava Fissure", + [176826] = "Lava Fissure", + [176827] = "Lava Fissure", + [176828] = "Lava Fissure", + [176829] = "Lava Fissure", + [176830] = "Lava Fissure", + [176831] = "Lava Fissure", + [176832] = "Lava Fissure", + [176833] = "Lava Fissure", + [176834] = "Lava Fissure", + [176835] = "Lava Fissure", + [176836] = "Lava Fissure", + [176837] = "Lava Fissure", + [176838] = "Lava Fissure", + [176839] = "Lava Fissure", + [176840] = "Lava Fissure", + [176841] = "Lava Fissure", + [176842] = "Lava Fissure", + [176843] = "Doodad_OnyziasLairFallingRocks01", + [176844] = "Doodad_OnyziasLairFallingRocks12", + [176845] = "Doodad_OnyziasLairFallingRocks09", + [176846] = "Doodad_OnyziasLairFallingRocks11", + [176847] = "Doodad_OnyziasLairFallingRocks04", + [176848] = "Doodad_OnyziasLairFallingRocks02", + [176849] = "Doodad_OnyziasLairFallingRocks08", + [176850] = "Doodad_OnyziasLairFallingRocks13", + [176851] = "Doodad_OnyziasLairFallingRocks10", + [176852] = "Doodad_OnyziasLairFallingRocks07", + [176853] = "Doodad_OnyziasLairFallingRocks06", + [176854] = "Doodad_OnyziasLairFallingRocks03", + [176855] = "Doodad_OnyziasLairFallingRocks05", + [176863] = "Campfire", + [176865] = "Sword of Marduk Trap", + [176885] = "Brazier", + [176886] = "Brazier", + [176887] = "Brazier", + [176888] = "Brazier", + [176889] = "Brazier", + [176890] = "Brazier", + [176891] = "Brazier", + [176892] = "Brazier", + [176894] = "Stone Anvil", + [176895] = "Forge", + [176896] = "Bonfire", + [176897] = "Cooking Fire", + [176898] = "Fire pit", + [176899] = "Cauldron", + [176901] = "Doodad_PortcullisActive02", + [176904] = "Campfire", + [176905] = "Smoldering Brazier", + [176906] = "Smoldering Brazier", + [176907] = "Conservatory Door", + [176908] = "Lava Fissure", + [176909] = "Lava Fissure", + [176910] = "Lava Fissure", + [176911] = "Lava Fissure", + [176912] = "Lava Fissure", + [176913] = "Lava Fissure", + [176914] = "Lava Fissure", + [176915] = "Lava Fissure", + [176916] = "Lava Fissure", + [176917] = "Lava Fissure", + [176918] = "Lava Fissure", + [176919] = "Lava Fissure", + [176920] = "Lava Fissure", + [176921] = "Lava Fissure", + [176922] = "Lava Fissure", + [176924] = "Ironforge Auction house", + [176944] = "Old Treasure Chest", + [176945] = "Camp Mojache", + [176946] = "Shadowprey Village", + [176947] = "Ghost Walker Post", + [176948] = "Nijel\'s Point", + [176949] = "Feathermoon Stronghold", + [176950] = "Ghost Walker Post", + [176951] = "Rune of Koro", + [176952] = "Rune of Zeth", + [176953] = "Rune of Mazj", + [176954] = "Rune of Theri", + [176955] = "Rune of Blaz", + [176956] = "Rune of Kress", + [176957] = "Rune of Mohn", + [176958] = "Nijel\'s Point", + [176959] = "Stonetalon Mountains", + [176960] = "Ghost Walker Post", + [176961] = "Shadowprey Village", + [176964] = "Portcullis", + [176965] = "Portcullis", + [176966] = "Portcullis", + [176967] = "Stratholme", + [176968] = "Terrordale", + [176969] = "Quel\'Thalas", + [176970] = "Corin\'s Crossing", + [176971] = "Quel\'Thalas", + [176972] = "Stratholme", + [176973] = "Tyr\'s Hand", + [176978] = "Quel\'Thalas", + [176979] = "Stratholme", + [176980] = "Tyr\'s Hand", + [176981] = "Darrowshire", + [176982] = "Andorhol", + [176983] = "Andorhol", + [176984] = "Corin\'s Crossing", + [176985] = "Stratholme", + [176986] = "Darrowshire", + [176987] = "Hearthglen", + [176988] = "Andorhal", + [176989] = "Tirisfal Glades", + [176990] = "Darrowshire", + [176991] = "Tirisfal", + [176992] = "Darrowshire", + [176993] = "Andorhal", + [176994] = "Hearthglenn", + [176996] = "CavernDoor01", + [176998] = "Campfire", + [176999] = "Campfire", + [177000] = "Hot Coal", + [177002] = "Bonfire", + [177003] = "Bonfire", + [177004] = "Bonfire", + [177005] = "Bonfire", + [177006] = "Bonfire", + [177007] = "Bonfire", + [177008] = "Bonfire", + [177009] = "Bonfire", + [177010] = "Bonfire", + [177011] = "Bonfire", + [177012] = "Bonfire", + [177013] = "Bonfire", + [177014] = "Bonfire", + [177015] = "Bonfire", + [177016] = "Bonfire", + [177017] = "Bonfire", + [177018] = "Bonfire", + [177019] = "Bonfire", + [177020] = "Bonfire", + [177021] = "Bonfire", + [177022] = "Bonfire", + [177023] = "Bonfire", + [177024] = "Bonfire", + [177025] = "Bonfire", + [177026] = "Bonfire", + [177044] = "Mailbox", + [177045] = "Haunted Trap", + [177047] = "Doodad_PortcullisActive05", + [177048] = "Doodad_PortcullisActive06", + [177049] = "Doodad_PortcullisActive07", + [177064] = "Mordan\'s Reagents", + [177084] = "Bonfire", + [177104] = "Ashenvale", + [177105] = "Jaedenar", + [177106] = "Talonbranch Glade", + [177107] = "Ashenvale", + [177108] = "Talonbranch Glade", + [177109] = "Moonglade", + [177110] = "Jaedenar", + [177111] = "Moonglade", + [177112] = "Winterspring", + [177113] = "Ashenvale", + [177114] = "Jaedenar", + [177115] = "Talonbranch Glade", + [177116] = "Stormrage Barrow Dens", + [177117] = "Shrine of Remulos", + [177118] = "Nighthaven", + [177119] = "Winterspring", + [177120] = "Felwood", + [177121] = "Nighthaven", + [177122] = "Shrine of Remulos", + [177123] = "Stormrage Barrow Dens", + [177124] = "Winterspring", + [177125] = "Felwood", + [177126] = "Winterspring", + [177127] = "Nighthaven", + [177128] = "Felwood", + [177129] = "Shrine of Remulos", + [177130] = "Stormrage Barrow Dens", + [177131] = "Kel\'Theril", + [177132] = "Starfall Village", + [177133] = "Everlook", + [177134] = "Moonglade", + [177135] = "Felwood", + [177136] = "Starfall Village", + [177137] = "Everlook", + [177138] = "Kel\'Theril", + [177139] = "Starfall Village", + [177140] = "Frostsaber Rock", + [177141] = "Kel\'Theril", + [177142] = "Moonglade", + [177143] = "Felwood", + [177144] = "Everlook", + [177145] = "Mount Hyjal", + [177146] = "Everlook", + [177147] = "Kel\'Theril", + [177148] = "Frostsaber Rock", + [177149] = "Starfall Village", + [177150] = "Mount Hyjal", + [177151] = "Starfall Village", + [177152] = "Kel\'Theril", + [177153] = "Everlook", + [177154] = "Moonglade", + [177155] = "Felwood", + [177164] = "Portcullis", + [177165] = "Portcullis", + [177184] = "ZulGurubMainDoor01", + [177185] = "Abandon hope, all ye who enter here.", + [177186] = "Turn Back!", + [177187] = "Tharnarun\'s Cure", + [177188] = "Door", + [177189] = "Door", + [177192] = "Door", + [177193] = "Doom Portal", + [177194] = "Campfire", + [177195] = "Campfire", + [177196] = "Campfire", + [177197] = "Campfire", + [177198] = "Door", + [177199] = "Archbishop Alonsus Faol", + [177200] = "King Llane I of the House of Wrynn", + [177201] = "Grand Admiral Daelin Proudmoore", + [177202] = "Lady Mara Fordragon", + [177203] = "Gate", + [177204] = "Sorrow of the Earthmother", + [177205] = "Forestlord and the first Druids", + [177207] = "Mists of Dawn", + [177208] = "The White Stag and the Moon", + [177209] = "Hatred of the Centaur", + [177211] = "Door", + [177212] = "Door", + [177213] = "Door", + [177215] = "Door", + [177217] = "Gordok Inner Door", + [177219] = "Gordok Courtyard Door", + [177220] = "Crumble Wall", + [177221] = "Door", + [177222] = "Pteradon Skeleton", + [177223] = "Ahn\'Qiraj Gong", + [177224] = "Troll Drum Sound Object", + [177225] = "Bonfire", + [177226] = "Book \"Soothsaying for Dummies\"", + [177227] = "Couch", + [177233] = "Feathermoon Ferry", + [177237] = "Vault Door", + [177238] = "Vault Door", + [177239] = "Tirion Fordring\'s Grave", + [177240] = "Loose Dirt Mound", + [177241] = "Araj\'s Phylactery", + [177243] = "Demon Portal", + [177244] = "Cauldron", + [177245] = "Doodad_WroughtIronDoor01", + [177246] = "Doodad_WroughtIronDoor02", + [177247] = "Doodad_WroughtIronDoor03", + [177248] = "Doodad_WroughtIronDoor04", + [177249] = "Doodad_WroughtIronDoor05", + [177250] = "Doodad_WroughtIronDoor06", + [177251] = "Doodad_WroughtIronDoor07", + [177252] = "Doodad_WroughtIronDoor08", + [177253] = "Doodad_WroughtIronDoor09", + [177254] = "Doodad_opendoor_01", + [177255] = "Doodad_opendoor_03", + [177256] = "Doodad_opendoor_02", + [177257] = "Doodad_DireMaulCrystalGenerator02", + [177258] = "Doodad_DireMaulCrystalGenerator03", + [177259] = "Doodad_DireMaulCrystalGenerator01", + [177261] = "Brazier", + [177262] = "Campfire", + [177263] = "Campfire", + [177264] = "Symbol of Lost Honor", + [177265] = "Bridge to Spirit Rise", + [177266] = "Bridge to Elder Rise", + [177267] = "Bridge to Elder Rise", + [177268] = "Bridge to Hunter Rise", + [177269] = "Bridge to Spirit Rise", + [177270] = "Bridge to Hunter Rise", + [177272] = "Moonwell", + [177273] = "Moonwell", + [177274] = "Moonwell", + [177275] = "Moonwell", + [177276] = "Moonwell", + [177277] = "Moonwell", + [177278] = "Moonwell", + [177279] = "Moonwell", + [177280] = "Moonwell", + [177281] = "Moonwell", + [177284] = "Cauldron", + [177285] = "Cauldron", + [177286] = "Cauldron", + [177287] = "Unfinished Painting", + [177288] = "Campfire", + [177289] = "Scourge Cauldron", + [177290] = "Brazier", + [177291] = "Brazier", + [177292] = "Brazier", + [177293] = "Brazier", + [177304] = "Dawn\'s Gambit", + [177307] = "Doodad_HyjalGate01", + [177324] = "Campfire", + [177325] = "Campfire", + [177326] = "Campfire", + [177327] = "Campfire", + [177364] = "Chair", + [177365] = "Demon Portal", + [177366] = "Demon Portal", + [177367] = "Demon Portal", + [177368] = "Demon Portal", + [177369] = "Demon Portal", + [177370] = "Door", + [177371] = "Gate", + [177372] = "Gate", + [177373] = "Gate", + [177374] = "Gate", + [177375] = "Gate", + [177376] = "Gate", + [177377] = "Gate", + [177378] = "Campfire", + [177379] = "Campfire", + [177380] = "Campfire", + [177381] = "Campfire", + [177382] = "Campfire", + [177383] = "Campfire", + [177384] = "Campfire", + [177385] = "Torch", + [177387] = "Alchemy Lab", + [177388] = "Ooze Covered Rich Thorium Vein", + [177396] = "Cauldron", + [177397] = "Demon Portal", + [177398] = "Demon Portal", + [177399] = "Demon Portal", + [177400] = "Demon Portal", + [177404] = "Altar of Elune", + [177405] = "Brazier", + [177406] = "Brazier", + [177408] = "Bonfire", + [177409] = "Brazier", + [177410] = "Brazier", + [177411] = "Brazier", + [177412] = "Brazier", + [177413] = "Brazier", + [177414] = "Gem of Elune", + [177415] = "Light of Elune", + [177416] = "Aura of Elune (SMALL)", + [177417] = "Fire of Elune", + [177418] = "Light of Elune (LARGE)", + [177419] = "Light of Elune (SMALL)", + [177424] = "Campfire", + [177425] = "Campfire", + [177444] = "Stone Door", + [177464] = "Large Termite Mound", + [177484] = "Atal\'ai Statue", + [177485] = "Atal\'ai Statue", + [177486] = "Aura of Elune (LARGE)", + [177490] = "Northridge Lumber Mill Crate", + [177491] = "Termite Barrel", + [177492] = "Northridge Lumber Mill Crate", + [177493] = "Fire of Elune (Trap)", + [177494] = "Wooden Chair", + [177495] = "Wooden Chair", + [177496] = "Wooden Chair", + [177497] = "Wooden Chair", + [177498] = "Wooden Chair", + [177499] = "Wooden Chair", + [177500] = "Wooden Chair", + [177501] = "Wooden Chair", + [177502] = "Wooden Chair", + [177503] = "Wooden Chair", + [177504] = "Wooden Chair", + [177505] = "Wooden Bench", + [177506] = "Wooden Chair", + [177507] = "Wooden Chair", + [177508] = "Wooden Chair", + [177509] = "Wooden Chair", + [177510] = "Wooden Chair", + [177511] = "Wooden Chair", + [177512] = "Wooden Chair", + [177513] = "Wooden Chair", + [177514] = "Wooden Chair", + [177524] = "Bubbly Fissure", + [177525] = "Moonkin Stone", + [177526] = "Relic Bundle", + [177527] = "Relic Bundle Aura", + [177528] = "Darrowshire Town Square spell focus (DND)", + [177529] = "Altar of Elune (Trap)", + [177544] = "Joseph\'s Chest", + [177564] = "Human Skull", + [177584] = "Light Beam Spell Focus (DND)", + [177586] = "Broodling Essence Aura", + [177604] = "Pile of Bones", + [177606] = "Father Flame Aura", + [177624] = "Xabraxxis\' Demon Bag", + [177644] = "Moonkin Stone Aura", + [177664] = "Rancid Meat", + [177665] = "Big Rancid Meat", + [177667] = "Torn Scroll", + [177668] = "Mark of Detonation", + [177669] = "Plaguewood Fire (Small)", + [177670] = "Plaguewood Fire (Large)", + [177671] = "Plaguewood Smoke", + [177672] = "Smokey\'s Special Compound", + [177673] = "Serpent Statue", + [177675] = "Mound of Dirt", + [177677] = "Shallow Grave", + [177681] = "Gordunni Dirt Mound", + [177683] = "Gordunni Cobalt Visual (DND)", + [177684] = "Stone of Shy-Rotam", + [177704] = "Lava Bomb", + [177705] = "Naga Beam", + [177706] = "Melizza\'s Cage", + [177724] = "Dredan\'s Table", + [177725] = "Dredan\'s Alchemy Tools", + [177726] = "Tool Bucket", + [177727] = "Dredan\'s Forge", + [177746] = "Ghost Magnet", + [177747] = "Quel\'Thalas Registry", + [177748] = "Ghost Magnet Spell Focus (DND)", + [177749] = "Ghost Magnet Aura", + [177750] = "Lunar Fungal Bloom", + [177764] = "Inferno", + [177784] = "Giant Softshell Clam", + [177785] = "Bauble Container", + [177786] = "Rackmore\'s Chest", + [177787] = "Rackmore\'s Log", + [177788] = "Shrine of Remulos", + [177789] = "Augustus\' Receipt Book", + [177790] = "Strange Lockbox", + [177791] = "Anchor", + [177792] = "Strange Lockbox", + [177793] = "Strange Lockbox Agility Trap", + [177794] = "Strange Lockbox", + [177804] = "Mangled Human Remains", + [177805] = "Mangled Human Remains", + [177806] = "Mangled Human Remains", + [177807] = "Black Dragon Egg", + [177808] = "Orb of Domination", + [177824] = "Altar", + [177844] = "Strange Lockbox", + [177884] = "Doodad_UndercityWorm01", + [177904] = "Wanted Poster: Besseleth", + [177905] = "Mercutio Post", + [177926] = "Gaea Seed", + [177927] = "Tammra Gaea Sapling", + [177928] = "Onyxia\'s Gate", + [177929] = "Gaea Dirt Mound", + [177964] = "Fathom Stone", + [177984] = "Doodad_OnyziasLairLavaTrap51", + [177985] = "Doodad_OnyziasLairLavaTrapMirror20", + [177986] = "Doodad_OnyziasLairLavaTrapMirror21", + [177987] = "Doodad_OnyziasLairLavaTrap52", + [177988] = "Doodad_OnyziasLairLavaTrap53", + [177989] = "Doodad_OnyziasLairLavaTrap54", + [177990] = "Doodad_OnyziasLairLavaTrap55", + [177991] = "Doodad_OnyziasLairLavaTrap56", + [177992] = "Doodad_OnyziasLairLavaTrap57", + [177993] = "Doodad_OnyziasLairLavaTrap58", + [177994] = "Doodad_OnyziasLairLavaTrap59", + [177995] = "Doodad_OnyziasLairLavaTrap60", + [177996] = "Doodad_OnyziasLairLavaTrap61", + [177997] = "Doodad_OnyziasLairLavaTrap62", + [177998] = "Doodad_OnyziasLairLavaTrap63", + [177999] = "Doodad_OnyziasLairLavaTrap64", + [178000] = "Doodad_OnyziasLairLavaTrap65", + [178001] = "Doodad_OnyziasLairLavaTrap66", + [178002] = "Doodad_OnyziasLairLavaTrap67", + [178003] = "Doodad_OnyziasLairLavaTrap68", + [178004] = "Doodad_OnyziasLairLavaTrapMirror22", + [178005] = "Doodad_OnyziasLairLavaTrap69", + [178006] = "Doodad_OnyziasLairLavaTrap70", + [178007] = "Doodad_OnyziasLairLavaTrap71", + [178008] = "Doodad_OnyziasLairLavaTrap72", + [178009] = "Doodad_OnyziasLairLavaTrapMirror23", + [178010] = "Doodad_OnyziasLairLavaTrapMirror24", + [178011] = "Doodad_OnyziasLairLavaTrapMirror25", + [178012] = "Doodad_OnyziasLairLavaTrapMirror26", + [178013] = "Doodad_OnyziasLairLavaTrapMirror27", + [178014] = "Doodad_OnyziasLairLavaTrapMirror28", + [178015] = "Doodad_OnyziasLairLavaTrapMirror29", + [178016] = "Doodad_OnyziasLairLavaTrapMirror30", + [178017] = "Doodad_OnyziasLairLavaTrapMirror31", + [178018] = "Doodad_OnyziasLairLavaTrapMirror32", + [178019] = "Doodad_OnyziasLairLavaTrapMirror33", + [178020] = "Doodad_OnyziasLairLavaTrapMirror34", + [178021] = "Doodad_OnyziasLairFallingRocks14", + [178022] = "Doodad_OnyziasLairFallingRocks15", + [178023] = "Doodad_OnyziasLairFallingRocks16", + [178024] = "Doodad_OnyziasLairFallingRocks17", + [178025] = "Doodad_OnyziasLairFallingRocks18", + [178026] = "Doodad_OnyziasLairFallingRocks19", + [178027] = "Doodad_OnyziasLairFallingRocks20", + [178028] = "Doodad_OnyziasLairFallingRocks21", + [178029] = "Doodad_OnyziasLairFallingRocks22", + [178030] = "Doodad_OnyziasLairFallingRocks23", + [178031] = "Doodad_OnyziasLairFallingRocks24", + [178032] = "Doodad_OnyziasLairFallingRocks25", + [178033] = "Doodad_OnyziasLairFallingRocks26", + [178034] = "Doodad_OnyziasLairLavaTrap73", + [178035] = "Doodad_OnyziasLairLavaTrap74", + [178036] = "Doodad_OnyziasLairLavaTrap75", + [178037] = "Doodad_OnyziasLairLavaTrap76", + [178038] = "Doodad_OnyziasLairLavaTrap77", + [178039] = "Doodad_OnyziasLairLavaTrap78", + [178040] = "Doodad_OnyziasLairLavaTrap79", + [178041] = "Doodad_OnyziasLairLavaTrap80", + [178042] = "Doodad_OnyziasLairLavaTrap81", + [178043] = "Doodad_OnyziasLairLavaTrap82", + [178044] = "Doodad_OnyziasLairLavaTrap83", + [178045] = "Doodad_OnyziasLairLavaTrapMirror35", + [178046] = "Doodad_OnyziasLairLavaTrapMirror36", + [178047] = "Doodad_OnyziasLairLavaTrapMirror37", + [178048] = "Doodad_OnyziasLairLavaTrapMirror38", + [178084] = "Felix\'s Chest", + [178085] = "Felix\'s Bucket of Bolts", + [178087] = "Thazz\'ril\'s Pick", + [178088] = "Ragnaros", + [178089] = "Thazz\'ril\'s Pick\'s Aura", + [178090] = "Marla\'s Grave", + [178104] = "Resonite Crystal", + [178105] = "Resonite Crystal", + [178106] = "Resonite Crystal", + [178107] = "Lava Steam", + [178108] = "Lava Splash", + [178124] = "Resonite Crystal (Trap", + [178125] = "Lotharian Lotus", + [178144] = "Troll Chest", + [178145] = "Resonite Cask", + [178146] = "Gurda\'s Shredder", + [178147] = "Ruul Snowhoof Cage", + [178164] = "Hot Coal", + [178184] = "Sapphire of Aku\'Mai", + [178185] = "Sapphire of Aku\'Mai", + [178186] = "Sapphire of Aku\'Mai", + [178187] = "Molten Core Circle SULFURON", + [178188] = "Molten Core Circle BARON", + [178189] = "Molten Core Circle SHAZZRAH", + [178190] = "Molten Core Circle GOLEMAGG", + [178191] = "Molten Core Circle GARR", + [178192] = "Molten Core Circle MAGMADAR", + [178193] = "Molten Core Circle GEHENNAS", + [178194] = "Lava Crack", + [178195] = "Warsong Oil", + [178204] = "Warsong Axe Shipment", + [178205] = "Karang\'s Banner", + [178206] = "Foulweald Totem Mound", + [178207] = "Karang\'s Banner Aura", + [178224] = "Dire Pool", + [178225] = "Dire Pool Spell Focus", + [178226] = "Hospital Bed", + [178227] = "Murgut\'s Totem Basket", + [178228] = "Murgut\'s Totem Basket Aura", + [178229] = "Aurora\'s Book", + [178230] = "Aurora\'s Aura", + [178244] = "Practice Lockbox", + [178245] = "Practice Lockbox", + [178246] = "Practice Lockbox", + [178247] = "Naga Brazier", + [178248] = "Naga Brazier (trap)", + [178264] = "Mercutio Post", + [178265] = "Mercutio Post", + [178304] = "Box o\' Squirrels", + [178324] = "DANGER! Do Not Open! Move Along!", + [178325] = "Open To Pass Your Rite.", + [178364] = "Horde Banner", + [178365] = "Alliance Banner", + [178386] = "Doodad_CentaurTeleporter01", + [178388] = "Horde Banner", + [178389] = "Alliance Banner", + [178393] = "Horde Banner", + [178394] = "Alliance Banner", + [178400] = "Maraudon Portal", + [178404] = "Portal to Inner Maraudon", + [178405] = "Maraudon Spell Focus", + [178425] = "Christmas Tree (Large)", + [178426] = "XMasTreeLargeHorde01", + [178427] = "Fountain of Elune", + [178428] = "XMasGift01", + [178429] = "XMasGift02", + [178430] = "XMasGift03", + [178431] = "XMasGift04", + [178432] = "XMasGift05", + [178433] = "XMasGift06", + [178434] = "XMasStocking01", + [178435] = "XMasStocking02", + [178436] = "XMasStocking03", + [178437] = "Wreath", + [178438] = "Lights", + [178439] = "Globe of Scrying", + [178442] = "Horde Supply Crate", + [178443] = "Small Forge Flame", + [178444] = "Shrine of Sha\'gri", + [178464] = "Dark Cleric Salem\'s Chest", + [178465] = "Altar of Summoning", + [178484] = "Tear in the Nether", + [178504] = "Stolen Chest", + [178524] = "Cauldron", + [178525] = "Campfire", + [178526] = "James\' Journal", + [178545] = "Guse\'s Beacon", + [178546] = "Guse\'s Beacon Spell Focus", + [178547] = "Jeztor\'s Beacon", + [178548] = "Jeztor\'s Beacon Spell Focus", + [178549] = "Mulverick\'s Beacon", + [178550] = "Mulverick\'s Beacon Spell Focus", + [178551] = "Lights, Broken", + [178553] = "Hive\'Ashi Pod", + [178554] = "Mistletoe", + [178556] = "Wreath scale 1.20", + [178557] = "Christmas Tree (Medium)", + [178558] = "Christmas Tree (Large Snowy)", + [178559] = "Larva Spewer", + [178560] = "Doodad_MaraudonStaffCreator01", + [178561] = "Spore Tree", + [178562] = "Spore Tree", + [178563] = "Spore Tree", + [178564] = "Spore Tree", + [178565] = "Spore Tree", + [178566] = "Spore Tree", + [178567] = "Spore Tree", + [178568] = "Spore Tree", + [178569] = "Spore Tree", + [178570] = "Corruption Spewer", + [178571] = "Bonfire", + [178572] = "Cauldron", + [178573] = "Cauldron", + [178584] = "Ryson\'s All Seeing Eye", + [178604] = "Globe of Scrying", + [178605] = "Ryson\'s Beacon", + [178606] = "Ryson\'s Beacon Spell Focus", + [178608] = "Ryson\'s Beacon Spell Focus", + [178609] = "Holiday Snow", + [178644] = "Ryson\'s All Seeing Eye Trap", + [178645] = "Lights x3", + [178646] = "Alliance Supply Crate", + [178647] = "Christmas Tree", + [178649] = "Wreath scale 0.75", + [178664] = "Steamsaw", + [178665] = "Steamsaw", + [178666] = "Gypsy Wagon", + [178667] = "Christmas Tree (Medium)", + [178668] = "Christmas Tree (Medium)", + [178669] = "Lights x3", + [178670] = "Circle of Calling", + [178671] = "Greatfather Winter\'s Chair", + [178684] = "Forge", + [178685] = "Anvil", + [178722] = "Alliance Blacksmith Smoke", + [178724] = "Vipore\'s Beacon", + [178725] = "Slidore\'s Beacon", + [178726] = "Ichman\'s Beacon", + [178727] = "Vipore\'s Beacon Spell Focus", + [178728] = "Slidore\'s Beacon Spell Focus", + [178729] = "Ichman\'s Beacon Spell Focus", + [178745] = "Lights x3, Broken", + [178746] = "Smokywood Pastures", + [178764] = "Rope Line", + [178765] = "Rope Line Pole", + [178784] = "Coldtooth Supplies", + [178785] = "Irondeep Supplies", + [178786] = "Coldtooth Supplies", + [178787] = "Coldtooth Supplies", + [178788] = "Irondeep Supplies", + [178789] = "Irondeep Supplies", + [178805] = "Christmas Tree (Medium)", + [178806] = "Stormpike Supplies", + [178807] = "Stormpike Supplies", + [178808] = "Stormpike Supplies", + [178824] = "Meeting Stone", + [178825] = "Meeting Stone", + [178826] = "Meeting Stone", + [178827] = "Meeting", + [178828] = "Meeting Stone", + [178829] = "Meeting Stone", + [178831] = "Meeting Stone", + [178832] = "Meeting Stone", + [178833] = "Meeting Stone", + [178834] = "Meeting Stone", + [178844] = "Meeting Stone", + [178845] = "Meeting Stone", + [178864] = "Mailbox", + [178884] = "Meeting Stone", + [178904] = "Healed Celebrian Vine", + [178905] = "Vylestem Vine", + [178907] = "Maraudon Orange Pool Spell Focus", + [178908] = "Vylestem Vine", + [178909] = "Frostwolf Supplies", + [178910] = "Frostwolf Supplies", + [178911] = "Frostwolf Supplies", + [178924] = "Lights", + [178925] = "Alliance Banner", + [178927] = "[PH] Alliance A1 Tower Banner BIG", + [178929] = "Alliance Banner", + [178932] = "[PH] Alliance A2 Tower Banner BIG", + [178934] = "The Chair", + [178935] = "Alliance Banner", + [178936] = "Alliance Banner", + [178940] = "Contested Banner", + [178943] = "Horde Banner", + [178944] = "Horde Banner", + [178945] = "Horde Banner", + [178946] = "Horde Banner", + [178947] = "[PH] Alliance A3 Tower Banner BIG", + [178948] = "[PH] Alliance A4 Tower Banner BIG", + [178955] = "[PH] Horde H1 Tower Banner BIG", + [178956] = "[PH] Horde H2 Tower Banner BIG", + [178957] = "[PH] Horde H3 Tower Banner BIG", + [178958] = "[PH] Horde H4 Tower Banner BIG", + [178963] = "Incantion of Celebras Trap", + [178964] = "Celebras Blue Aura", + [178965] = "Incantation of Celebras", + [178984] = "Bauble Aura", + [179004] = "Drek\'Thar\'s Scrolls", + [179005] = "Drek\'Thar\'s Scrolls", + [179006] = "Vanndar\'s Documents", + [179007] = "Vanndar\'s Documents", + [179008] = "Vanndar\'s Documents", + [179024] = "Stormpike Banner", + [179025] = "Frostwolf Banner", + [179044] = "[PH] Alliance Graveyard Mid Banner BIG", + [179064] = "[PH] Horde Graveyard Mid Banner BIG", + [179065] = "Roaring Flame", + [179066] = "Smoke Emitter, Large AOI, scale 2", + [179084] = "Campfire", + [179085] = "Campfire", + [179086] = "Campfire", + [179104] = "Chair", + [179105] = "Chair", + [179106] = "Bench", + [179107] = "Bench", + [179108] = "Bench", + [179109] = "Chair", + [179110] = "Chair", + [179111] = "Chair", + [179112] = "Chair", + [179113] = "Chair", + [179114] = "Bench", + [179115] = "Portcullis", + [179116] = "Portcullis", + [179117] = "Portcullis", + [179118] = "Throne", + [179119] = "Fire", + [179120] = "Fire", + [179121] = "Fire", + [179122] = "Fire", + [179125] = "Izzy\'s Holdings", + [179144] = "Danger! Crystalvein Mine closed!", + [179145] = "Campfire", + [179146] = "Campfire", + [179147] = "Campfire", + [179148] = "Lever", + [179224] = "Crystalvein Mine - Keep Out!", + [179264] = "Giant Clam", + [179284] = "Alliance Banner", + [179285] = "Horde Banner", + [179286] = "Contested Banner", + [179287] = "Contested Banner", + [179304] = "Contested Banner", + [179305] = "Contested Banner", + [179306] = "Contested Banner", + [179307] = "Contested Banner", + [179308] = "Contested Banner", + [179310] = "Contested Banner", + [179324] = "Frostwolf Landmine", + [179325] = "Stormpike Landmine", + [179344] = "Bonfire", + [179345] = "Deeprun Chest", + [179364] = "Portcullis", + [179365] = "Portcullis", + [179384] = "Chair", + [179385] = "Chair", + [179386] = "Chair", + [179387] = "Chair", + [179388] = "Chair", + [179389] = "Chair", + [179390] = "Chair", + [179391] = "Anvil", + [179392] = "Anvil", + [179393] = "Anvil", + [179394] = "Anvil", + [179395] = "Anvil", + [179396] = "Anvil", + [179397] = "Anvil", + [179419] = "Brazier", + [179424] = "[PH] Alliance Graveyard Mid Pre-Banner BIG", + [179425] = "[PH] Horde Graveyard Mid Pre-Banner BIG", + [179426] = "Gri\'lek the Wanderer", + [179435] = "Contested Banner", + [179436] = "[PH] Horde A1 Tower Pre-Banner BIG", + [179437] = "Wanted: ORCS!", + [179438] = "Wanted: DWARVES!", + [179439] = "Contested Banner", + [179440] = "[PH] Horde A2 Tower Pre-Banner BIG", + [179441] = "Contested Banner", + [179442] = "[PH] Horde A3 Tower Pre-Banner BIG", + [179443] = "Contested Banner", + [179444] = "[PH] Horde A4 Tower Pre-Banner BIG", + [179445] = "Contested Banner", + [179446] = "[PH] Alliance H1 Tower Pre-Banner BIG", + [179449] = "Contested Banner", + [179450] = "[PH] Alliance H2 Tower Pre-Banner BIG", + [179453] = "Contested Banner", + [179454] = "[PH] Alliance H3 Tower Pre-Banner BIG", + [179458] = "[PH] Alliance H4 Tower Pre-Banner BIG", + [179465] = "Alliance Banner", + [179466] = "Contested Banner", + [179467] = "Horde Banner", + [179468] = "Contested Banner", + [179469] = "Arena Door", + [179470] = "Alliance Banner", + [179471] = "Contested Banner", + [179472] = "Horde Banner", + [179473] = "Contested Banner", + [179481] = "Alliance Banner", + [179482] = "Contested Banner", + [179483] = "Horde Banner", + [179484] = "Contested Banner", + [179485] = "Broken Trap", + [179486] = "Battered Footlocker", + [179487] = "Waterlogged Footlocker", + [179488] = "Battered Footlocker", + [179489] = "Waterlogged Footlocker", + [179490] = "Battered Footlocker", + [179491] = "Waterlogged Footlocker", + [179492] = "Dented Footlocker", + [179493] = "Mossy Footlocker", + [179494] = "Dented Footlocker", + [179496] = "Dented Footlocker", + [179497] = "Mossy Footlocker", + [179498] = "Scarlet Footlocker", + [179499] = "Ogre Tannin Basket", + [179500] = "Campfire", + [179501] = "Knot Thimblejack\'s Cache", + [179502] = "Doodad_CorruptedCrystalVine01", + [179503] = "Doodad_DireMaulBossForceField01", + [179504] = "Doodad_DireMaulCrystalGenerator04", + [179505] = "Doodad_DireMaulCrystalGenerator05", + [179506] = "Doodad_DiremaulMagicVortex01", + [179507] = "Torch", + [179508] = "Torch", + [179509] = "Torch", + [179510] = "Torch", + [179511] = "Knot\'s Ball and Chain", + [179512] = "Fixed Trap", + [179513] = "Torch", + [179516] = "Fengus\'s Chest", + [179517] = "Treasure of the Shen\'dralar", + [179526] = "Warpwood Pod", + [179527] = "Warpwood Pod - Root", + [179528] = "Warpwood Pod", + [179530] = "Warpwood Pod - Spore", + [179531] = "Warpwood Pod - Summon", + [179532] = "Warpwood Pod", + [179533] = "Warpwood Pod", + [179544] = "Skeletal Remains of Kariel Winthalus", + [179545] = "The Prince\'s Chest", + [179547] = "A Dusty Tome", + [179548] = "A Dusty Tome", + [179549] = "Door", + [179550] = "Door", + [179551] = "Hydraxis\' Coffer", + [179552] = "Schematic: Field Repair Bot 74A", + [179553] = "Core Fragment", + [179554] = "Meeting Stone", + [179555] = "Meeting Stone", + [179556] = "The Severed Head of Onyxia", + [179557] = "Rallying Call", + [179558] = "The Severed Head of Onyxia", + [179559] = "Felvine Shard", + [179560] = "Rallying Call", + [179561] = "Ancient Unfired Sword", + [179562] = "Ancient Heated Blade", + [179563] = "Prince\'s Chest Aura", + [179564] = "Gordok Tribute", + [179565] = "Dusty Reliquary", + [179584] = "Meeting Stone", + [179585] = "Meeting Stone", + [179586] = "Meeting Stone", + [179587] = "Meeting Stone", + [179588] = "CavernDoor01", + [179595] = "Meeting Stone", + [179596] = "Meeting Stone", + [179597] = "Meetingstone01", + [179644] = "Imprisoned Doomguard", + [179664] = "Earth Elemental Rift", + [179665] = "Water Elemental Rift", + [179666] = "Fire Elemental Rift", + [179667] = "Air Elemental Rift", + [179668] = "Warlock Mount Ritual Circle", + [179669] = "Warlock Mount Quest Symbol 1", + [179670] = "Warlock Mount Quest Symbol 2", + [179671] = "Warlock Mount Quest Symbol 3", + [179672] = "Wheel of the Black March", + [179673] = "Doomsday Candle", + [179674] = "Bell of Dethmoora", + [179675] = "Warlock Mount Quest Portal Spell Focus", + [179676] = "Fel Fire", + [179677] = "Kroshius\' Remains", + [179681] = "Dreadsteed Portal", + [179682] = "Brazier", + [179688] = "Ritual Candle Aura", + [179693] = "Peasant Light Trap", + [179694] = "Death Post", + [179695] = "Slain Peasant", + [179696] = "Slain Peasant", + [179697] = "Arena Treasure Chest", + [179698] = "Slain Peasant", + [179699] = "Slain Peasant", + [179700] = "Cauldron", + [179701] = "Circle Loc (spell focus)", + [179703] = "Cache of the Firelord", + [179704] = "Cauldron", + [179706] = "A Treatise on Military Ranks", + [179707] = "Military Ranks of the Horde & Alliance", + [179708] = "Divination Scryer", + [179724] = "Doodad_PallyDoor01", + [179725] = "Champions\' Hall", + [179726] = "Champions\' Hall", + [179727] = "Champions\' Hall", + [179728] = "Champions\' Hall", + [179729] = "Command Center", + [179730] = "Command Center", + [179731] = "Command Center", + [179732] = "SI:7", + [179733] = "SI:7", + [179734] = "SI:7", + [179735] = "Alliance Military Ranks", + [179736] = "Champions\' Hall", + [179737] = "SI:7", + [179738] = "Command Center", + [179739] = "Hall of Legends", + [179740] = "Hall of Legends", + [179741] = "Horde Military Ranks", + [179742] = "Hall of Legends", + [179743] = "Command Center", + [179744] = "SI:7", + [179745] = "Divination Scryer Aura", + [179746] = "The Great Ossuary", + [179747] = "Terrordale Haunting Spirit", + [179748] = "Chair", + [179749] = "Brazier", + [179750] = "Brazier", + [179751] = "Brazier", + [179752] = "Brazier", + [179753] = "Brazier", + [179754] = "Brazier", + [179755] = "Brazier", + [179756] = "Brazier", + [179757] = "High Back Chair", + [179758] = "Chair", + [179759] = "Chair", + [179760] = "Chair", + [179761] = "Chair", + [179762] = "Chair", + [179763] = "Chair", + [179764] = "Chair", + [179765] = "Chair", + [179766] = "Chair", + [179767] = "Bench", + [179768] = "Bench", + [179769] = "Bench", + [179770] = "Bench", + [179771] = "Bench", + [179778] = "Chair", + [179779] = "Bench", + [179780] = "Bench", + [179781] = "Bench", + [179782] = "Alchemy Set", + [179784] = "Suppression Device", + [179785] = "Silverwing Flag", + [179786] = "Warsong Flag", + [179804] = "Drakonid Bones", + [179826] = "Secret Plans: Fiery Flux", + [179827] = "Wanted/Missing/Lost & Found", + [179828] = "Dark Iron Pillow", + [179830] = "Silverwing Flag", + [179831] = "Warsong Flag", + [179844] = "Forge", + [179846] = "Campfire", + [179862] = "Anvil", + [179863] = "Forge", + [179864] = "Anvil", + [179871] = "Speed Buff", + [179879] = "Orb of Command", + [179880] = "Drakkisath\'s Brand", + [179881] = "The Severed Head of Nefarian", + [179882] = "The Severed Head of Nefarian", + [179885] = "Campfire", + [179886] = "Forge", + [179887] = "Anvil", + [179888] = "Rizzle\'s Guarded Plans", + [179895] = "Mailbox", + [179896] = "Mailbox", + [179899] = "Speed Buff", + [179900] = "Big Bonfire Damage", + [179904] = "Food Buff", + [179905] = "Berserk Buff", + [179906] = "Food Buff", + [179907] = "Berserk Buff", + [179908] = "Slagtree\'s Lost Tools", + [179909] = "Rock of Durotan", + [179910] = "Lard\'s Picnic Basket", + [179911] = "Message to the Wildhammer", + [179912] = "Aerie Peak Town Center", + [179913] = "Call to Arms!", + [179914] = "Pile of Bones", + [179915] = "Pile of Skulls", + [179916] = "Doodad_RazorfenDoor01", + [179917] = "Doodad_RazorfenDoor02", + [179918] = "Doodad_PortcullisActive01", + [179919] = "Doodad_PortcullisActive02", + [179920] = "Doodad_PortcullisActive03", + [179921] = "Doodad_PortcullisActive04", + [179922] = "Vessel of Tainted Blood", + [179924] = "Forge", + [179944] = "Meeting Stone Summoning Portal", + [179945] = "Campfire", + [179963] = "OUT OF ORDER! Use Postman instead - your GM\'s", + [179964] = "DARKMOON FAIRE - Coming Soon!", + [179965] = "Darkmoon Faire Banner", + [179967] = "Barrel 01", + [179968] = "Haystack 01", + [179969] = "Replace Crate 01", + [179970] = "Replace Crate 02", + [179972] = "Stormwind Crate 01", + [179973] = "Inn Barrel", + [179975] = "Water Trough Small", + [179976] = "Beer Keg 01", + [179977] = "General Lantern 01", + [179984] = "Brazier", + [179985] = "Spider Egg", + [180005] = "Darkmoon Faire Wagon Loaded", + [180006] = "Outhouse", + [180007] = "Excavation Stake", + [180024] = "Mysterious Deadmines Chest", + [180025] = "Mysterious Eastvale Haystack", + [180026] = "Darkmoon Faire Signpost", + [180029] = "DARKMOON FAIRE", + [180030] = "Fortune Teller\'s Tent", + [180031] = "Food Tent", + [180032] = "Souvenir Tent", + [180034] = "Ticket Master Tent", + [180035] = "Fence", + [180036] = "Darkmoon Faire Wagon Unloaded", + [180037] = "Haybail 01", + [180038] = "Haybail 02", + [180039] = "Animal Trainer Tent", + [180040] = "G_Cage 02", + [180041] = "G_Cage 03", + [180042] = "Target Practice Tent", + [180043] = "Free Standing Torch 01", + [180044] = "Shoutbox", + [180045] = "Stormwind Gypsy Wagon", + [180046] = "Chair", + [180047] = "Westfall Chair", + [180048] = "Mug Foam 01", + [180049] = "Mug 01", + [180050] = "Bread French Half", + [180051] = "Bread French 01", + [180052] = "Deadmine Cargo Boxes", + [180053] = "Brazier", + [180055] = "Mysterious Wailing Caverns Chest", + [180056] = "Mysterious Tree Stump", + [180057] = "Bubbly Fissure", + [180058] = "Alliance Banner", + [180059] = "Contested Banner", + [180060] = "Horde Banner", + [180061] = "Contested Banner", + [180064] = "Alliance Banner", + [180065] = "Contested Banner", + [180066] = "Horde Banner", + [180067] = "Contested Banner", + [180068] = "Alliance Banner", + [180069] = "Contested Banner", + [180070] = "Horde Banner", + [180071] = "Contested Banner", + [180072] = "Alliance Banner", + [180073] = "Contested Banner", + [180074] = "Horde Banner", + [180075] = "Contested Banner", + [180076] = "Alliance Banner", + [180077] = "Contested Banner", + [180078] = "Horde Banner", + [180079] = "Contested Banner", + [180085] = "Contested Banner", + [180086] = "Contested Banner", + [180087] = "Stable Banner", + [180088] = "Blacksmith Banner", + [180089] = "Farm Banner", + [180090] = "Lumber Mill Banner", + [180091] = "Mine Banner", + [180092] = "Contested Banner", + [180093] = "Contested Banner", + [180094] = "Contested Banner", + [180095] = "Contested Banner", + [180096] = "Contested Banner", + [180097] = "Contested Banner", + [180098] = "Contested Banner", + [180099] = "Contested Banner", + [180100] = "Alliance Banner Aura", + [180101] = "Horde Banner Aura", + [180102] = "Neutral Banner Aura", + [180104] = "Zandalar Cage", + [180105] = "Circle of Binding", + [180124] = "Lighthouse Beam", + [180125] = "Liquid Fire", + [180144] = "Food Buff", + [180145] = "Food Buff", + [180146] = "Speed Buff", + [180147] = "Speed Buff", + [180148] = "Berserk Buff", + [180164] = "Sungrass", + [180165] = "Purple Lotus", + [180166] = "Mountain Silversage", + [180167] = "Golden Sansam", + [180168] = "Dreamfoil", + [180184] = "School of Fish", + [180204] = "Uther\'s Tomb Statue", + [180205] = "Grom\'s Monument", + [180206] = "Grom\'s Troll Tribute", + [180207] = "Grom\'s Orc Tribute", + [180208] = "Grom\'s Forsaken Tribute", + [180209] = "Grom\'s Tauren Tribute", + [180210] = "Uther\'s Human Tribute", + [180211] = "Uther\'s Gnome Tribute", + [180213] = "Uther\'s Night Elf Tribute", + [180214] = "Uther\'s Dwarf Tribute", + [180215] = "Hakkari Thorium Vein", + [180216] = "Whipweed", + [180217] = "Whipweed Entangle Trap", + [180218] = "Arathi Basin Pumpkin", + [180219] = "Arathi Basin Pumpkin Patch", + [180220] = "Arathi Basin Bone01", + [180222] = "Arathi Basin Bone02", + [180223] = "Arathi Basin BlastedLandsSkull01", + [180224] = "Arathi Basin BlastedLandsBonePile02", + [180225] = "Arathi Basin BlastedLandsBonePile03", + [180226] = "Arathi Basin Doomweed01", + [180227] = "Arathi Basin Gloomweed01", + [180228] = "Jinxed Hoodoo Pile", + [180229] = "Jinxed Hoodoo Pile", + [180244] = "Jinxed Hoodoo Pile", + [180245] = "Doodad_SmallBrazierNoOmni20", + [180246] = "Zul\'s Aura", + [180247] = "Jinxed Hoodoo Pile", + [180248] = "School of Tastyfish", + [180249] = "Heart of Hakkar Air Rift", + [180250] = "Heart of Hakkar Fire Rift", + [180252] = "Troll Hero Lightning", + [180253] = "Troll Hero Air Portal", + [180254] = "Troll Hero Fire Portal", + [180255] = "ALLIANCE DOOR", + [180256] = "HORDE DOOR", + [180322] = "Ghost Gate", + [180323] = "Gates of Zul\'Gurub", + [180324] = "Dwarven Table Ornate 01", + [180325] = "Chair", + [180326] = "OrcBench01", + [180327] = "Brazier of Madness", + [180328] = "General Candelabra 01", + [180329] = "Jar 01", + [180330] = "Jar 02", + [180331] = "Jar 03", + [180332] = "Jug 01", + [180333] = "Jug 02", + [180334] = "Stormwind Rug 02", + [180335] = "Darkmoon Faire Music Doodad", + [180337] = "Orc Table Cooker Fire 01", + [180338] = "Candle 01", + [180339] = "Candle 02", + [180340] = "Candle 03", + [180341] = "Jar Orc 01", + [180342] = "Jar Orc 02", + [180345] = "Jar Orc 03", + [180346] = "Mudskunk Lure", + [180347] = "Jar Orc 04", + [180348] = "Jar Orc 05", + [180349] = "Jar Orc 06", + [180350] = "Orc Jug 01", + [180351] = "Orc Jug 02", + [180352] = "General Torch 01", + [180353] = "Freestanding Torch 01", + [180358] = "Gri\'lek, with the Iron Blood", + [180362] = "Food Buff", + [180364] = "Hazza\'rah, the Dreamweaver", + [180365] = "Renataki, of the Thousand Blades", + [180366] = "Battered Tackle Box", + [180367] = "Altar of Zanza", + [180368] = "Tablet of Madness", + [180369] = "Muddy Churning Waters", + [180370] = "Harvest Fruit", + [180371] = "Harvest Fish", + [180372] = "Harvest Boar", + [180373] = "Harvest Nectar", + [180374] = "Harvest Nectar", + [180375] = "Altar of Zanza Spell Focus", + [180376] = "Berserk Buff", + [180377] = "Food Buff", + [180378] = "Berserk Buff", + [180379] = "Speed Buff", + [180380] = "Berserk Buff", + [180381] = "Speed Buff", + [180382] = "Berserk Buff", + [180383] = "Food Buff", + [180384] = "Speed Buff", + [180385] = "Troll Hero Portal Sound", + [180386] = "Gong", + [180391] = "Heart of Hakkar Spell Emitter", + [180392] = "Full Jug", + [180393] = "Wushoolay, the Storm Witch", + [180394] = "PVP HOLIDAY HORDE CTF", + [180395] = "PVP HOLIDAY HORDE AV", + [180396] = "PVP HOLIDAY HORDE ARATHI", + [180397] = "PVP HOLIDAY GENERIC SIGNPOST", + [180398] = "PVP HOLIDAY ALLIANCE ARATHI", + [180399] = "PVP HOLIDAY ALLIANCE AV", + [180400] = "PVP HOLIDAY ALLIANCE CTF", + [180401] = "Heart of Hakkar Portal Sound", + [180402] = "Heart of Hakkar Object", + [180403] = "Soapbox", + [180404] = "Servant of the Hand Summoning Circle", + [180405] = "G_Pumpkin_01", + [180406] = "G_Pumpkin_02", + [180407] = "G_Pumpkin_03", + [180408] = "G_WitchHat_01", + [180409] = "G_WitchBroom_01", + [180410] = "G_HangingSkeleton_01", + [180411] = "G_Ghost_01", + [180412] = "G_CandyBucket_01", + [180415] = "CandleBlack01", + [180417] = "Campfire", + [180418] = "Snowfall Banner", + [180419] = "Contested Banner", + [180420] = "Contested Banner", + [180421] = "Alliance Banner Aura, Large", + [180422] = "Horde Banner Aura, Large", + [180423] = "Neutral Banner Aura, Large", + [180424] = "Alterac Valley Gate", + [180425] = "SkullCandle01", + [180426] = "Bat01", + [180427] = "Bat02", + [180428] = "G_WitchBroom_01 scale 0.5", + [180429] = "G_WitchHat_01 scale 0.5", + [180430] = "Brazier of Madness - Inert", + [180431] = "G_Pumpkin_01 scale 4.0", + [180432] = "Forsaken Banner", + [180433] = "The Wickerman", + [180434] = "Bonfire", + [180435] = "Noggle\'s Satchel", + [180436] = "Twilight Tablet Fragment", + [180437] = "Wickerman Ember", + [180438] = "Bonfire", + [180439] = "Bonfire", + [180440] = "Bonfire", + [180441] = "Bonfire", + [180442] = "Bonfire", + [180443] = "Bonfire", + [180444] = "Bonfire", + [180448] = "Wanted Poster: Deathclasp", + [180449] = "Forsaken Stink Bomb", + [180450] = "Forsaken Stink Bomb Cloud", + [180451] = "Mailbox", + [180452] = "Blastenheimer 5000 Ultra Cannon", + [180453] = "Hive\'Regal Glyphed Crystal", + [180454] = "Hive\'Ashi Glyphed Crystal", + [180455] = "Hive\'Zora Glyphed Crystal", + [180456] = "Lesser Wind Stone", + [180461] = "Wind Stone", + [180466] = "Greater Wind Stone", + [180471] = "HangingSkullLight01", + [180472] = "HangingSkullLight02", + [180473] = "Brazier", + [180474] = "Brazier", + [180475] = "Brazier", + [180476] = "Brazier", + [180477] = "Brazier", + [180478] = "Brazier", + [180479] = "Brazier", + [180480] = "Brazier", + [180497] = "Forcefield", + [180501] = "Twilight Tablet Fragment", + [180502] = "Wind Stone", + [180503] = "Sandy Cookbook", + [180504] = "Southshore Spell Focus", + [180505] = "Bones of Grakkarond Spell Focus", + [180514] = "Glyphed Crystal Prism", + [180515] = "Blastenheimer 5000 Ultra Cannon", + [180517] = "Putrid Mushroom", + [180518] = "Lesser Wind Stone", + [180523] = "Apple Bob", + [180524] = "Tonk Control Console", + [180525] = "Tonk Control Console Trap", + [180526] = "Gong of Bethekk", + [180529] = "Lesser Wind Stone", + [180534] = "Wind Stone", + [180539] = "Greater Wind Stone", + [180544] = "Lesser Wind Stone", + [180549] = "Lesser Wind Stone", + [180554] = "Wind Stone", + [180559] = "Greater Wind Stone", + [180564] = "Lesser Wind Stone", + [180570] = "Keg", + [180573] = "Cannon Target", + [180574] = "Wickerman Guardian Ember", + [180582] = "Oily Blackmouth School", + [180583] = "Twilight Tablet Fragment", + [180598] = "AQWar - Resource, Bandages, Alliance, Initial", + [180601] = "Unstable Rift Crystal", + [180604] = "Merithra\'s Wake", + [180605] = "IronForgeSteamTank", + [180606] = "Prismatic Barrier", + [180607] = "Ancient Roots", + [180608] = "Glyphs of Warding", + [180619] = "Ossirian Crystal", + [180620] = "Music Box Silithus", + [180631] = "Alchemy Lab", + [180632] = "Alchemy Lab", + [180633] = "Crystalline Tear", + [180634] = "Door", + [180635] = "Door", + [180636] = "Door", + [180642] = "Inconspicuous Crate", + [180647] = "Sand Trap", + [180651] = "Shovel", + [180652] = "Freshly Dug Dirt", + [180653] = "Treasure Marker", + [180654] = "Hardpacked Snowdrift", + [180655] = "Floating Debris", + [180656] = "Sagefish School", + [180657] = "Firefin Snapper School", + [180658] = "School of Deviate Fish", + [180659] = "Drop-Off Point", + [180660] = "Sack of Gold", + [180661] = "Oil Spill", + [180662] = "Floating Wreckage", + [180663] = "Sagefish School", + [180664] = "Oily Blackmouth School", + [180665] = "Draconic for Dummies", + [180666] = "Draconic for Dummies", + [180667] = "Draconic for Dummies", + [180669] = "Swirling Maelstrom", + [180670] = "Bay of Storms Lightning Storm", + [180671] = "Xandivious\' Demon Bag", + [180672] = "Demon Summoning Torch", + [180673] = "High Chief Winterfall Cave Mouth Spell Focus", + [180674] = "AQWar - Resource, Bandages, Alliance, Tier 1", + [180675] = "AQWar - Resource, Bandages, Alliance, Tier 2", + [180676] = "AQWar - Resource, Bandages, Alliance, Tier 3", + [180677] = "AQWar - Resource, Bandages, Alliance, Tier 4", + [180678] = "AQWar - Resource, Bandages, Alliance, Tier 5", + [180679] = "AQWar - Resource, Cooking/Herbs, Alliance Initial", + [180680] = "AQWar - Resource, Bars, Alliance, Initial", + [180681] = "AQWar - Resource, Skins, Alliance, Initial", + [180682] = "Oily Blackmouth School", + [180683] = "Firefin Snapper School", + [180684] = "Greater Sagefish School", + [180685] = "Floating Wreckage", + [180687] = "Dream Rift", + [180688] = "Cooking Brazier", + [180689] = "Cooking Brazier", + [180690] = "Large Scarab Coffer", + [180691] = "Scarab Coffer", + [180692] = "AQWar - Resource, Skins, Alliance, Tier 1", + [180693] = "AQWar - Resource, Skins, Alliance, Tier 2", + [180694] = "AQWar - Resource, Skins, Alliance, Tier 3", + [180695] = "AQWar - Resource, Skins, Alliance, Tier 4", + [180696] = "AQWar - Resource, Skins, Alliance, Tier 5", + [180698] = "Party Table", + [180699] = "Festive Keg", + [180700] = "Hay Bale 1", + [180703] = "Firework, Show, Type 1 Red", + [180704] = "Firework, Show, Type 2 Red", + [180707] = "Firework, Show, Type 1, Red BIG", + [180708] = "Firework, Show, Type 2, Red BIG", + [180712] = "Stonescale Eel Swarm", + [180713] = "Light of Elune", + [180714] = "CrateAllianceFirstAid01", + [180715] = "Holly Preserver", + [180717] = "The Scarab Gong", + [180718] = "The Scarab Gong", + [180719] = "Metzen\'s Stable", + [180720] = "Firework, Show, Type 1 Blue", + [180721] = "Firework, Show, Type 2 Blue", + [180722] = "Firework, Show, Type 1 Blue BIG", + [180723] = "Firework, Show, Type 2 Blue BIG", + [180724] = "Firework, Show, Type 1 Green", + [180725] = "Firework, Show, Type 2 Green BIG", + [180726] = "Firework, Show, Type 1 Green BIG", + [180727] = "Firework, Show, Type 2 Green", + [180728] = "Firework, Show, Type 1 White", + [180729] = "Firework, Show, Type 1 White BIG", + [180730] = "Firework, Show, Type 2 White", + [180731] = "Firework, Show, Type 2 White BIG", + [180733] = "Firework, Show, Type 2 Purple BIG", + [180736] = "Firework, Show, Type 1 Yellow", + [180737] = "Firework, Show, Type 1 Yellow BIG", + [180738] = "Firework, Show, Type 2 Yellow", + [180739] = "Firework, Show, Type 2 Yellow BIG", + [180740] = "Firework, Show, Type 2 Purple", + [180741] = "Firework, Show, Type 1 Purple BIG", + [180742] = "Metzen\'s Fencing", + [180743] = "Carefully Wrapped Present", + [180744] = "Catapult", + [180745] = "Grasp of C\'Thun", + [180746] = "Gently Shaken Gift", + [180747] = "Gaily Wrapped Present", + [180748] = "Ticking Present", + [180749] = "Cheer Speaker", + [180750] = "Oily Blackmouth School", + [180751] = "Floating Wreckage", + [180752] = "Firefin Snapper School", + [180753] = "Patch of Elemental Water", + [180754] = "Toasting Goblet", + [180755] = "Dwarf Hero", + [180756] = "Gnome Hero", + [180757] = "Human Hero Portrait", + [180758] = "Night Elf Hero Portrait", + [180759] = "Orc Hero Portrait", + [180760] = "Forsaken Hero Portrait", + [180761] = "Tauren Hero Portrait", + [180762] = "Troll Hero Portrait", + [180763] = "Firecrackers", + [180764] = "Firecrackers", + [180765] = "Lantern", + [180766] = "Lantern", + [180767] = "Lantern", + [180768] = "Lantern", + [180769] = "Lights", + [180770] = "Lights", + [180771] = "Firework Launcher", + [180772] = "Cluster Launcher", + [180773] = "Banner", + [180774] = "Banner", + [180775] = "Banner", + [180776] = "Banner", + [180777] = "Banner", + [180778] = "Banner", + [180780] = "AQWar - Resource, Bars, Alliance, Tier 1", + [180781] = "AQWar - Resource, Bars, Alliance, Tier 2", + [180782] = "AQWar - Resource, Bars, Alliance, Tier 3", + [180783] = "AQWar - Resource, Bars, Alliance, Tier 4", + [180784] = "AQWar - Resource, Bars, Alliance, Tier 5", + [180788] = "AQDOORSOUND", + [180793] = "Festive Gift", + [180794] = "Journal of Jandice Barov", + [180795] = "Sandworm Base", + [180796] = "PX-238 Winter Wondervolt", + [180797] = "PX-238 Winter Wondervolt TRAP", + [180798] = "Present BIG", + [180799] = "Present BIG", + [180800] = "AQWar - Resource, Cooking, Alliance, Tier 1", + [180801] = "AQWar - Resource, Herbs, Alliance, Tier 1", + [180802] = "AQWar - Resource, Herbs, Alliance, Tier 2", + [180803] = "AQWar - Resource, Herbs, Alliance, Tier 3", + [180804] = "AQWar - Resource, Herbs, Alliance, Tier 4", + [180805] = "AQWar - Resource, Herbs, Alliance, Tier 5", + [180806] = "AQWar - Resource, Cooking, Alliance, Tier 2", + [180807] = "AQWar - Resource, Cooking, Alliance, Tier 3", + [180808] = "AQWar - Resource, Cooking, Alliance, Tier 4", + [180809] = "AQWar - Resource, Cooking, Alliance, Tier 5", + [180810] = "Resonating Crystal Formation", + [180811] = "Resonating Crystal Formation Glow", + [180812] = "AQWar - Resource, Skins, Horde, Initial", + [180813] = "AQWar - Resource, Skins, Horde, Tier 1", + [180814] = "AQWar - Resource, Skins, Horde, Tier 2", + [180815] = "AQWar - Resource, Skins, Horde, Tier 3", + [180816] = "AQWar - Resource, Skins, Horde, Tier 4", + [180817] = "AQWar - Resource, Skins, Horde, Tier 5", + [180818] = "AQWar - Resource, Herbs, Horde, Initial", + [180819] = "AQWar - Resource, Herbs, Horde, Tier 1", + [180820] = "AQWar - Resource, Herbs, Horde, Tier 2", + [180821] = "AQWar - Resource, Herbs, Horde, Tier 3", + [180822] = "AQWar - Resource, Herbs, Horde, Tier 4", + [180823] = "AQWar - Resource, Herbs, Horde, Tier 5", + [180826] = "AQWar - Resource, Bandages, Horde, Initial", + [180827] = "AQWar - Resource, Bandages, Horde, Tier 1", + [180828] = "AQWar - Resource, Bandages, Horde, Tier 2", + [180829] = "AQWar - Resource, Bandages, Horde, Tier 3", + [180830] = "AQWar - Resource, Bandages, Horde, Tier 4", + [180831] = "AQWar - Resource, Bandages, Horde, Tier 5", + [180832] = "AQWar - Resource, Cooking, Horde, Initial", + [180833] = "AQWar - Resource, Cooking, Horde, Tier 1", + [180834] = "AQWar - Resource, Cooking, Horde, Tier 2", + [180835] = "AQWar - Resource, Cooking, Horde, Tier 3", + [180836] = "AQWar - Resource, Cooking, Horde, Tier 4", + [180837] = "AQWar - Resource, Cooking, Horde, Tier 5", + [180838] = "AQWar - Resource, Bars, Horde, Initial", + [180839] = "AQWar - Resource, Bars, Horde, Tier 1", + [180840] = "AQWar - Resource, Bars, Horde, Tier 2", + [180841] = "AQWar - Resource, Bars, Horde, Tier 3", + [180842] = "AQWar - Resource, Bars, Horde, Tier 4", + [180843] = "AQWar - Resource, Bars, Horde, Tier 5", + [180844] = "Mistletoe", + [180850] = "Firework Launcher", + [180851] = "Firework Rocket, Type 1 Red", + [180852] = "War Map", + [180853] = "Duke\'s Box", + [180854] = "Firework Rocket, Type 1 Blue", + [180855] = "Firework Rocket, Type 1 Green", + [180856] = "Firework Rocket, Type 1 Purple", + [180857] = "Firework Rocket, Type 1 White", + [180858] = "Firework Rocket, Type 1 Yellow", + [180859] = "Cluster Launcher", + [180860] = "Firework Rocket, Type 1 Red BIG", + [180861] = "Firework Rocket, Type 1 Blue BIG", + [180862] = "Firework Rocket, Type 1 Green BIG", + [180864] = "Firework Rocket, Type 1 White BIG", + [180865] = "Firework Rocket, Type 1 Yellow BIG", + [180866] = "Event Generator Saurfang Pre-War", + [180867] = "Greater Moonlight Spell Focus", + [180868] = "Firework Launcher", + [180869] = "Cluster Launcher", + [180870] = "Firecrackers", + [180871] = "Firecrackers", + [180872] = "Firecrackers", + [180873] = "Firecrackers", + [180874] = "Cluster Launcher", + [180875] = "Boss Fight Altar", + [180876] = "Elune\'s Blessing TRAP FRIENDLY", + [180877] = "Elune\'s Blessing TRAP QUESTCREDIT", + [180878] = "GunShopFireworksBarrel", + [180879] = "ElvenWoodenTable", + [180880] = "AmmoBoxBlue", + [180881] = "AmmoBoxBlueBlock", + [180882] = "AmmoBoxRed", + [180883] = "AmmoBoxRedBlock", + [180884] = "DwarvenTableSmall", + [180885] = "InnTableTiny", + [180888] = "OrcTable01", + [180891] = "Port to Moonglade TRAP", + [180892] = "Port to StormwindTRAP", + [180893] = "Port to Ironforge TRAP", + [180894] = "Port to Darnassus TRAP", + [180895] = "Port to OrgrimmarTRAP", + [180896] = "Port to Undercity TRAP", + [180897] = "Port to Thunder Bluff TRAP", + [180898] = "AQRUNE", + [180899] = "AQROOT", + [180900] = "Oily Blackmouth School", + [180901] = "Floating Wreckage", + [180902] = "Firefin Snapper School", + [180904] = "Ancient Door", + [180905] = "Festive Mug", + [180909] = "Lucky Red Envelope", + [180910] = "Starsong Scroll", + [180913] = "Forge", + [180914] = "Anvil", + [180915] = "Cooking Brazier", + [181014] = "Hanging, Square, Large", + [181015] = "Standing, Large", + [181016] = "Standing, Medium, Exterior", + [181017] = "Hanging, Streamers, Medium", + [181018] = "Hanging, Tall/Thin, Medium", + [181019] = "Standing, Medium Interior", + [181020] = "Hanging, Square, Medium", + [181021] = "Hanging, Door", + [181022] = "Standing, Giant", + [181024] = "Hanging, Short/Squat, Large", + [181025] = "Hanging, Tall/Thin, Large", + [181027] = "Floating, medium", + [181029] = "Burning Coals", + [181045] = "Brazier of Beckoning", + [181046] = "Mor Grayhoof Brazier Spell Focus", + [181047] = "Isalien Brazier Spell Focus", + [181048] = "Jarien and Sothos Brazier Spell Focus", + [181049] = "Kormok Brazier Spell Focus", + [181050] = "Lord Valthalak Brazier Spell Focus", + [181051] = "Brazier of Invocation", + [181052] = "Brazier of Invocation Spell Focus 10 yd", + [181053] = "Basket of Bloodkelp", + [181054] = "Ectoplasmic Distiller Trap", + [181055] = "Hanging, Streamers, x3", + [181056] = "Naxxramas", + [181057] = "Ectoplasmic Distiller", + [181058] = "Banner of Provocation", + [181059] = "Blackrock Depths Arena Thelrin Focus", + [181060] = "Standing, small Interior", + [181062] = "In Loving Memory", + [181063] = "Flowers for Tony", + [181064] = "Flowers for Tony", + [181065] = "Flowers for Tony", + [181066] = "Flowers for Tony", + [181067] = "Flowers for Tony", + [181068] = "Small Obsidian Chunk", + [181069] = "Large Obsidian Chunk", + [181071] = "Ysida\'s Cage", + [181072] = "Ysida\'s Cagebase", + [181073] = "Fragrant Cauldron", + [181074] = "Arena Spoils", + [181075] = "Table", + [181076] = "Inigo\'s Chair", + [181077] = "Rug", + [181078] = "Marjhan\'s Chair", + [181079] = "Eligor\'s Chair", + [181080] = "Angela\'s Chair", + [181081] = "Map of the Eastern Plaguelands", + [181082] = "Candelabra", + [181083] = "Sothos and Jarien\'s Heirlooms", + [181085] = "Stratholme Supply Crate", + [181086] = "Valentine Arch", + [181087] = "Plant", + [181088] = "Event Trap, Thrall", + [181089] = "Event Trap, Bolvar", + [181090] = "Event Trap, Magni", + [181091] = "Event Trap, Tyrande", + [181092] = "Event Trap, Cairne", + [181093] = "Event Trap, Sylvanas", + [181094] = "Brazier of Invocation Spell Focus 40 yd", + [181096] = "Brazier of Invocation Spell Focus 20 yd", + [181098] = "Volcanic Ash", + [181099] = "Campfire", + [181102] = "Lightwell", + [181103] = "Flower", + [181104] = "Small Dirt Mound", + [181105] = "Lightwell", + [181106] = "Lightwell", + [181108] = "Truesilver Deposit", + [181109] = "Gold Vein", + [181113] = "Crystal Corpse", + [181119] = "Deathknight Door", + [181120] = "Gluth - Exit Door", + [181121] = "Thaddius Door", + [181123] = "Patchwork - Exit Door", + [181124] = "Vaccuum - Enter Gate", + [181125] = "Vaccuum - Exit Gate", + [181126] = "Anub\'Rekhan Door", + [181130] = "Forge", + [181131] = "Anvil", + [181134] = "Bonfire", + [181135] = "Bonfire", + [181136] = "Circle", + [181137] = "Ancient Door", + [181142] = "Summoner Shield", + [181143] = "Fish of the Day", + [181144] = "Bowl of Fruit", + [181145] = "Roast Boar Platter", + [181146] = "Portal to Karazhan", + [181154] = "Necropolis", + [181167] = "Grand Widow Faerlina Door", + [181168] = "Icebellow Furnace", + [181169] = "Icebellow Furnace", + [181170] = "Vaccuum - Combat Gate", + [181172] = "Necropolis City", + [181173] = "Undead Fire", + [181174] = "Undead Fire Aura", + [181191] = "Skullpile 01", + [181192] = "Skullpile 02", + [181193] = "Skullpile 03", + [181194] = "Skullpile 04", + [181195] = "Anub\'Rekhan Gate", + [181197] = "Maexxna - Inner Web Door", + [181198] = "Doodad_Nox_door_slime01", + [181199] = "Doodad_Nox_door_slime02", + [181200] = "Noth - Entry Door", + [181201] = "Noth - Exit Door", + [181202] = "Heigan the Unclean - Entry Door", + [181203] = "Heigan the Unclean - Exit Door", + [181206] = "Consecrated Earth", + [181207] = "Runed Demonic Blade", + [181209] = "Maexxna - Outer Web Door", + [181210] = "Deathknight Wing Eye Portal Ramp", + [181211] = "Plague Wing Eye Portal Ramp", + [181212] = "Spider Wing Eye Portal Ramp", + [181213] = "Abom Wing Eye Portal Ramp", + [181214] = "Necropolis critter spawner", + [181215] = "Necropolis (scale 2.5)", + [181223] = "Necropolis (scale 3.5)", + [181225] = "Frostwyrm Waterfall Door", + [181227] = "Circle", + [181228] = "KelThuzad Door", + [181229] = "Portal", + [181230] = "Deathknight Wing Eye Portal Boss", + [181231] = "Plague Wing Eye Portal Boss", + [181232] = "Abom Wing Eye Portal Boss", + [181233] = "Spider Wing Eye Portal Boss", + [181234] = "Icebellow Anvil", + [181235] = "Grand Widow Faerlina - Web", + [181236] = "Mailbox", + [181240] = "Loatheb Fight Door 01 (not used)", + [181241] = "Loatheb - Entrance Door", + [181242] = "Loatheb Fight Door 02 (not used)", + [181243] = "Loatheb Fight Door 03 (not used)", + [181247] = "Ice Block", + [181254] = "Argent Dawn Buffer Tent", + [181255] = "Argent Dawn Buffer Crate", + [181256] = "Argent Dawn Banner", + [181257] = "Argent Dawn Banner", + [181287] = "Frozen Rune", + [181288] = "Midsummer Bonfire", + [181290] = "Midsummer Bonfire Spawn Trap", + [181300] = "Standing, Large", + [181301] = "Camp Pavilion", + [181302] = "Camp Crate", + [181305] = "Camp Table", + [181306] = "Camp Jug", + [181307] = "Camp Mug", + [181332] = "Flame of Stormwind", + [181333] = "Flame of Ironforge", + [181334] = "Flame of Darnassus", + [181335] = "Flame of the Undercity", + [181336] = "Flame of Orgrimmar", + [181337] = "Flame of Thunder Bluff", + [181338] = "Flame of the Plaguelands", + [181339] = "Flame of Silithus", + [181340] = "Flame of Winterspring", + [181341] = "Flame of Searing Gorge", + [181342] = "Flame of Azshara", + [181343] = "Flame of Un\'Goro", + [181344] = "Flame of the Blasted Lands", + [181345] = "Flame of the Hinterlands", + [181346] = "Flame of Dire Maul", + [181347] = "Flame of Blackrock Spire", + [181348] = "Flame of Stratholme", + [181349] = "Flame of the Scholomance", + [181354] = "Floating, medium", + [181355] = "Standing, Medium, Exterior", + [181356] = "Sapphiron Birth", + [181358] = "Hanging, Square, Large", + [181366] = "Four Horsemen Chest", + [181371] = "Midsummer Bonfire Spell Focus", + [181373] = "Necropolis (scale 1.5)", + [181374] = "Necropolis (scale 2.0)", + [181375] = "Midsummer Bonfire Spawn Trap 2", + [181376] = "Midsummer Bonfire Campfire Damage Trap", + [181377] = "Midsummer Bonfire Campfire Spell Focus", + [181388] = "Standing, Medium Interior", + [181389] = "Hanging, Tall/Thin, Large", + [181390] = "Hanging, Square, Medium", + [181391] = "Standing, small Interior", + [181392] = "Hanging, Streamers, Medium", + [181393] = "Hanging, Tall/Thin, Medium", + [181401] = "Hanging, Streamers, x3", + [181402] = "Doodad_kelthuzad_window_portal01", + [181403] = "Doodad_kelthuzad_window_portal02", + [181404] = "Doodad_kelthuzad_window_portal03", + [181405] = "Doodad_kelthuzad_window_portal04", + [181431] = "Fire Festival Fury Trap", + [181444] = "Kel\'Thuzad Trigger", + [181476] = "Nox Portal Plaguewood", + [181477] = "Doodad_nox_tesla05", + [181478] = "Doodad_nox_tesla06", + [181488] = "Bonfire", + [181489] = "Bonfire", + [181495] = "Bonfire", + [181496] = "Heigan - Exit Door", + [181510] = "Plague Fissure", + [181511] = "Plague Fissure", + [181512] = "Plague Fissure", + [181513] = "Plague Fissure", + [181514] = "Plague Fissure", + [181515] = "Plague Fissure", + [181516] = "Plague Fissure", + [181517] = "Plague Fissure", + [181518] = "Plague Fissure", + [181519] = "Plague Fissure", + [181520] = "Plague Fissure", + [181521] = "Plague Fissure", + [181522] = "Plague Fissure", + [181523] = "Plague Fissure", + [181524] = "Plague Fissure", + [181525] = "Plague Fissure", + [181526] = "Plague Fissure", + [181527] = "Plague Fissure", + [181528] = "Plague Fissure", + [181529] = "Plague Fissure", + [181530] = "Plague Fissure", + [181531] = "Plague Fissure", + [181532] = "Plague Fissure", + [181533] = "Plague Fissure", + [181534] = "Plague Fissure", + [181535] = "Plague Fissure", + [181536] = "Plague Fissure", + [181537] = "Plague Fissure", + [181538] = "Plague Fissure", + [181539] = "Plague Fissure", + [181540] = "Plague Fissure", + [181541] = "Plague Fissure", + [181542] = "Plague Fissure", + [181543] = "Plague Fissure", + [181544] = "Plague Fissure", + [181545] = "Plague Fissure", + [181546] = "Plague Fissure", + [181547] = "Plague Fissure", + [181548] = "Plague Fissure", + [181549] = "Plague Fissure", + [181550] = "Plague Fissure", + [181551] = "Plague Fissure", + [181552] = "Plague Fissure", + [181560] = "Flame of the Barrens", + [181561] = "Flame of Ashenvale", + [181562] = "Flame of Stonetalon", + [181563] = "Flame of Darkshore", + [181564] = "Flame of Silverpine", + [181565] = "Flame of Westfall", + [181566] = "Flame of Hillsbrad", + [181567] = "Flame of the Wetlands", + [181575] = "Naxxramas Portal", + [181576] = "Naxxramas Portal", + [181577] = "Naxxramas Portal", + [181578] = "Naxxramas Portal", + [181596] = "Anvil", + [181597] = "Silithyst Mound", + [181598] = "Silithyst Geyser", + [181599] = "Rune", + [181603] = "Sillithus Flag Stand, Alliance", + [181604] = "TEST Ribbon Pole TRAP", + [181605] = "Ribbon Pole", + [181617] = "Sillithus Flag Stand, Horde", + [181618] = "ToWoW - Flag Cap Counter, Alliance", + [181619] = "ToWoW - Flag Cap Counter, Horde", + [181633] = "Bonfire", + [181634] = "Brazier", + [181635] = "Campfire", + [181639] = "Mailbox", + [181640] = "Doodad_kelthuzad_throne02", + [181676] = "Plague Fissure", + [181677] = "Plague Fissure", + [181678] = "Plague Fissure", + [181682] = "Curing Shrine", + [181695] = "Plague Fissure", + [181756] = "Stillpine Grain", + [181810] = "Summoning Portal", + [181852] = "Flag Flare, Alliance", + [181853] = "Flag Flare, Horde", + [181870] = "Campfire", + [181899] = "Doodad_BattlefieldBanner_State_Base_Plaguelands01", + [181955] = "Curing Shrine", + [181962] = "Dust Bag", + [181985] = "Boat to Auberdine", + [181987] = "Flare of Justice", + [182013] = "Dark Brazier", + [182014] = "Dark Brazier", + [182018] = "Dark Brazier", + [182020] = "Dark Brazier", + [182021] = "Dark Brazier", + [182022] = "Dark Brazier", + [182023] = "Dark Brazier", + [182028] = "Dark Brazier", + [182029] = "Dark Brazier", + [182075] = "ElvenWoodenTable", + [182076] = "Elf Crate", + [182077] = "Night Elf Stool", + [182078] = "Nightelf Glowing Bowl", + [182079] = "Nightelf Stone Rune", + [182080] = "Nightelf Stone Rune", + [182081] = "Nightelf Stone Rune", + [182088] = "Draenei Explosives", + [182089] = "Vector Coil Fire (S)", + [182091] = "Draenei Explosives", + [182096] = "Doodad_BattlefieldBanner_State_Base_Plaguelands02", + [182097] = "Doodad_BattlefieldBanner_State_Base_Plaguelands03", + [182098] = "Doodad_BattlefieldBanner_State_Base_Plaguelands04", + [182106] = "Tower Banner", + [182215] = "0", + [182216] = "Bonfire", + [182217] = "Bonfire", + [182218] = "Bonfire", + [182219] = "Bonfire", + [182220] = "Bonfire", + [182221] = "Bonfire", + [182506] = "Eye of Veil Skith", + [182507] = "Eye of Veil Reskk", + [182509] = "0", + [182526] = "Terokkar Chokeberry Bush", + [183314] = "Burning Fire", + [183315] = "Burning Fire", + [184057] = "Durnholde Keep", + [184058] = "Tarren Mill", + [184059] = "Southshore", + [184060] = "Tarren Mill", + [184061] = "Southshore", + [184067] = "Durnholde Keep", + [184161] = "Bonfire", + [184846] = "Legion Hold Forge", + [184847] = "Sealed Tome", + [184862] = "Fel Reaver Energy Matrix", + [184961] = "Felcannon Ammunition", + [184962] = "Felcannon Ammunition", + [184963] = "Felcannon Ammunition", + [185121] = "Eclipsion Communication Device", + [185493] = "Moonglade Fountain", + [186250] = "Beer Wagon", + [186263] = "Grimbooze\'s Secret Recipe", + [186265] = "Kyle\'s Lunch", + [186451] = "Cauldron", + [186881] = "Dark Iron Sabotage Plans", + [190396] = "Mug Smoke", + [193011] = "Cannon", + [194022] = "Doodad_Nox_door_spider02", + [200001] = "Shopping Centre", + [200002] = "Bubbly Fissure TRAP", + [210068] = "Warsong Clan Banner 07", + [210210] = "New Year Alliance Hanging Banner", + [210211] = "New Year Alliance Hanging Banner 02", + [210212] = "New Year Horde Hanging Banner", + [210213] = "New Year Horde Hanging Banner 02", + [210214] = "New Year Alliance Standing Banner", + [210215] = "New Year Horde Standing Banner", + [210286] = "Excavation Tent Pavillion", + [210312] = "Ahn\'Qiraj Ossirian Crystal", + [210313] = "Ahn\'Qiraj Ossirian Crystal", + [210327] = "Communication Crystal", + [210328] = "Communication Crystal", + [210329] = "Communication Crystal", + [210330] = "Communication Crystal", + [210331] = "Communication Crystal", + [210332] = "Communication Crystal", + [210334] = "Ahn\'Qiraj Gong", + [210335] = "Twilight Tablet", + [210336] = "Twilight Tablet", + [210337] = "Glyphed Crystal", + [210338] = "Gorishi Silithid Crystal", + [210339] = "Ahn\'Qiraj Sand Trap", + [210341] = "Hive Fireflies 01", + [210343] = "Sand Worm Rock Base", + [210344] = "Silithus Crystal Formation 03", + [210345] = "Floating Red Crystal Broken 03", + [210346] = "Floating Red Crystal Broken 01", + [210347] = "Ahn\'Qiraj Door 01", + [210348] = "Floating Purple Crystal Broken 01", + [210349] = "Gastric Exit", + [211016] = "Anvil", + [211017] = "Kre\'tal\'s Wagon", + [211018] = "Asheron\'s Tome of Summoning", + [211019] = "Altar of Hyjal", + [211020] = "Summoning Circle", + [211021] = "Eye of Asheron", + [211022] = "Commander\'s Tent", + [211023] = "Black Portal", + [211024] = "Black Portal", + [211029] = "Banner", + [211032] = "Gold Mine", + [211033] = "Aura", + [211034] = "Aura", + [211035] = "Lair Exit", + [211036] = "Fire Totem", + [211052] = "Tree Stump", + [211053] = "Mysterious Monument", + [211054] = "Lava Crack", + [211062] = "Elwynn Fence", + [211063] = "Elwynn Fence", + [211064] = "Rockwall Fence", + [211065] = "Grave", + [211067] = "Sarcophag", + [211068] = "Fire Totem", + [211084] = "Mephistroph\'s HellFire", + [300000] = "Gnomish Toolbox", + [300057] = "Swirling Maelstrom", + [300200] = "Porte de UBRS", + [300202] = "Porte de sortie de l\'arene UBRS", + [300203] = "Apple Bob", + [300400] = "Gordok Tribute", + [300401] = "Gordok Tribute", + [300402] = "Gordok Tribute", + [300403] = "Gordok Tribute", + [300404] = "Gordok Tribute", + [300405] = "Gordok Tribute", + [300601] = "Door", + [987658] = "Equipment Crates", + [3000491] = "Kroshius\' Remains", +} + +-- Source: https://raw.githubusercontent.com/shagu/pfQuest/master/db/objects.lua +RelationshipsQuestAndItemBrowserData["objects"]["data"] = { + [4] = { + ["coords"] = {}, + }, + [31] = { + ["coords"] = { + [1] = { 84.5, 46.8, 44, 10 }, + }, + ["fac"] = "A", + }, + [32] = { + ["coords"] = { + [1] = { 41.5, 54.7, 44, 0 }, + }, + ["fac"] = "A", + }, + [33] = { + ["coords"] = { + [1] = { 26, 16.9, 40, 10 }, + }, + }, + [34] = { + ["coords"] = { + [1] = { 40.6, 17, 40, 10 }, + }, + }, + [35] = { + ["coords"] = { + [1] = { 25.9, 47.8, 40, 10 }, + }, + }, + [36] = { + ["coords"] = { + [1] = { 40.5, 47.8, 40, 10 }, + }, + }, + [37] = { + ["coords"] = { + [1] = { 28.9, 30.5, 10, 10 }, + }, + ["fac"] = "A", + }, + [41] = { + ["coords"] = { + [1] = { 65, 66.1, 10, 600 }, + }, + }, + [47] = { + ["coords"] = { + [1] = { 26.8, 46.4, 44, 10 }, + }, + ["fac"] = "A", + }, + [52] = { + ["coords"] = { + [1] = { 22.9, 12, 33, 0 }, + }, + }, + [54] = { + ["coords"] = { + [1] = { 24.7, 8.9, 33, 0 }, + }, + }, + [55] = { + ["coords"] = { + [1] = { 72.7, 60.3, 12, 900 }, + }, + ["fac"] = "A", + }, + [56] = { + ["coords"] = { + [1] = { 79.8, 55.5, 12, 900 }, + }, + ["fac"] = "A", + }, + [57] = { + ["coords"] = { + [1] = { 29.5, 19.1, 33, 0 }, + }, + }, + [58] = { + ["coords"] = { + [1] = { 24.8, 22.9, 33, 0 }, + }, + }, + [59] = { + ["coords"] = { + [1] = { 49.9, 77.7, 10, 10 }, + }, + ["fac"] = "A", + }, + [60] = { + ["coords"] = { + [1] = { 29.6, 46.2, 44, 10 }, + }, + ["fac"] = "A", + }, + [61] = { + ["coords"] = { + [1] = { 17.7, 29.1, 10, 10 }, + }, + ["fac"] = "A", + }, + [68] = { + ["coords"] = { + [1] = { 24.5, 74.7, 12, 900 }, + }, + ["fac"] = "A", + }, + [76] = { + ["coords"] = { + [1] = { 63.2, 49.8, 44, 10 }, + }, + ["fac"] = "A", + }, + [80] = { + ["coords"] = { + [1] = { 57.4, 24.8, 40, 3600 }, + }, + }, + [81] = { + ["coords"] = { + [1] = { 57.4, 24.8, 40, 3600 }, + }, + }, + [82] = { + ["coords"] = { + [1] = { 57.4, 24.8, 40, 3600 }, + }, + }, + [83] = { + ["coords"] = { + [1] = { 57.3, 24.7, 40, 3600 }, + }, + }, + [84] = { + ["coords"] = { + [1] = { 45.6, 64.8, 40, 3600 }, + }, + }, + [85] = { + ["coords"] = { + [1] = { 45.6, 64.8, 40, 3600 }, + }, + }, + [86] = { + ["coords"] = { + [1] = { 57, 54.4, 40, 3600 }, + }, + }, + [87] = { + ["coords"] = { + [1] = { 57, 54.5, 40, 3600 }, + }, + }, + [88] = { + ["coords"] = { + [1] = { 57, 54.5, 40, 3600 }, + }, + }, + [89] = { + ["coords"] = { + [1] = { 42.4, 64.4, 12, 900 }, + }, + }, + [90] = { + ["coords"] = { + [1] = { 42.4, 64.4, 12, 900 }, + }, + }, + [91] = { + ["coords"] = { + [1] = { 42.3, 67.4, 12, 900 }, + }, + }, + [92] = { + ["coords"] = { + [1] = { 42.3, 67.4, 12, 900 }, + }, + }, + [93] = { + ["coords"] = { + [1] = { 42.3, 67.4, 12, 900 }, + }, + }, + [94] = { + ["coords"] = { + [1] = { 42.3, 67.4, 12, 900 }, + }, + }, + [95] = { + ["coords"] = { + [1] = { 42.3, 67.4, 12, 900 }, + }, + }, + [96] = { + ["coords"] = { + [1] = { 42.3, 67.4, 12, 900 }, + }, + }, + [97] = { + ["coords"] = { + [1] = { 82.7, 73.8, 12, 900 }, + }, + }, + [98] = { + ["coords"] = { + [1] = { 82.7, 73.8, 12, 900 }, + }, + }, + [99] = { + ["coords"] = { + [1] = { 82.8, 73.8, 12, 900 }, + }, + }, + [100] = { + ["coords"] = { + [1] = { 82.8, 73.8, 12, 900 }, + }, + }, + [101] = { + ["coords"] = { + [1] = { 74.6, 45.9, 10, 3600 }, + }, + }, + [102] = { + ["coords"] = { + [1] = { 74.6, 45.9, 10, 3600 }, + }, + }, + [103] = { + ["coords"] = { + [1] = { 74.6, 45.8, 10, 3600 }, + }, + }, + [104] = { + ["coords"] = { + [1] = { 74.6, 45.8, 10, 3600 }, + }, + }, + [105] = { + ["coords"] = { + [1] = { 19.6, 60.9, 10, 3600 }, + }, + }, + [106] = { + ["coords"] = { + [1] = { 19.5, 60.9, 10, 3600 }, + }, + }, + [107] = { + ["coords"] = { + [1] = { 19.6, 60.9, 10, 3600 }, + }, + }, + [108] = { + ["coords"] = { + [1] = { 19.5, 60.8, 10, 3600 }, + }, + }, + [109] = { + ["coords"] = { + [1] = { 44.4, 65.3, 10, 3600 }, + }, + }, + [110] = { + ["coords"] = { + [1] = { 44.5, 65.4, 10, 3600 }, + }, + }, + [111] = { + ["coords"] = { + [1] = { 44.4, 65.3, 10, 3600 }, + }, + }, + [112] = { + ["coords"] = { + [1] = { 44.5, 65.3, 10, 3600 }, + }, + }, + [113] = { + ["coords"] = { + [1] = { 16.5, 70.1, 44, 7200 }, + }, + }, + [114] = { + ["coords"] = { + [1] = { 16.5, 70.1, 44, 7200 }, + }, + }, + [115] = { + ["coords"] = { + [1] = { 16.5, 70, 44, 7200 }, + }, + }, + [116] = { + ["coords"] = { + [1] = { 16.5, 70.1, 44, 7200 }, + }, + }, + [117] = { + ["coords"] = { + [1] = { 23.8, 73.2, 44, 7200 }, + }, + }, + [118] = { + ["coords"] = { + [1] = { 23.7, 73.4, 44, 7200 }, + }, + }, + [119] = { + ["coords"] = { + [1] = { 33.4, 76.4, 10, 0 }, + }, + }, + [121] = { + ["coords"] = { + [1] = { 57.8, 65.3, 40, 3600 }, + }, + }, + [122] = { + ["coords"] = { + [1] = { 57.7, 65.4, 40, 3600 }, + }, + }, + [123] = { + ["coords"] = { + [1] = { 57.7, 65.3, 40, 3600 }, + }, + }, + [124] = { + ["coords"] = { + [1] = { 57.8, 65.4, 40, 3600 }, + }, + }, + [167] = { + ["coords"] = {}, + }, + [249] = { + ["coords"] = {}, + }, + [251] = { + ["coords"] = {}, + }, + [254] = { + ["coords"] = {}, + ["fac"] = "A", + }, + [256] = { + ["coords"] = { + [1] = { 37.3, 46.5, 38, 7200 }, + }, + ["fac"] = "A", + }, + [257] = { + ["coords"] = { + [1] = { 56.1, 13.2, 38, 10 }, + }, + ["fac"] = "A", + }, + [259] = { + ["coords"] = { + [1] = { 13.9, 34.8, 11, 10 }, + }, + ["fac"] = "A", + }, + [261] = { + ["coords"] = { + [1] = { 13.5, 41.4, 11, 10 }, + }, + ["fac"] = "A", + }, + [263] = { + ["coords"] = { + [1] = { 44.1, 9.5, 33, 300 }, + }, + }, + [264] = { + ["coords"] = { + [1] = { 44.5, 9.7, 33, 300 }, + }, + }, + [269] = { + ["coords"] = { + [1] = { 47.7, 52.7, 1, 60 }, + }, + ["fac"] = "A", + }, + [270] = { + ["coords"] = { + [1] = { 47.7, 52.7, 1, 0 }, + }, + ["fac"] = "A", + }, + [271] = { + ["coords"] = { + [1] = { 35.9, 27.7, 38, 60 }, + [2] = { 35.1, 26.9, 38, 60 }, + [3] = { 34.8, 26.7, 38, 60 }, + [4] = { 34.2, 26.5, 38, 60 }, + [5] = { 36.7, 26.1, 38, 60 }, + [6] = { 34.9, 24.9, 38, 60 }, + [7] = { 36.3, 24.8, 38, 60 }, + [8] = { 35.3, 24.4, 38, 60 }, + [9] = { 35.7, 24.3, 38, 60 }, + [10] = { 34.9, 23.4, 38, 60 }, + [11] = { 35.9, 22.1, 38, 60 }, + [12] = { 35.3, 22, 38, 60 }, + [13] = { 36.4, 20.7, 38, 60 }, + [14] = { 35.5, 19.9, 38, 60 }, + }, + }, + [272] = { + ["coords"] = { + [1] = { 38.5, 53.9, 1, 0 }, + }, + }, + [276] = { + ["coords"] = { + [1] = { 41.2, 44.9, 1, 180 }, + [2] = { 41, 44.7, 1, 180 }, + [3] = { 41.2, 44.5, 1, 180 }, + [4] = { 41.5, 44.4, 1, 180 }, + [5] = { 41.4, 44.2, 1, 180 }, + [6] = { 41.7, 44.2, 1, 180 }, + [7] = { 41.3, 43.8, 1, 180 }, + [8] = { 41.4, 43.8, 1, 180 }, + [9] = { 42.5, 36.4, 1, 180 }, + [10] = { 42, 36, 1, 180 }, + [11] = { 41.3, 35.9, 1, 180 }, + [12] = { 42, 35.8, 1, 180 }, + [13] = { 42.6, 35.6, 1, 180 }, + [14] = { 40.7, 35.2, 1, 180 }, + [15] = { 42.1, 35.2, 1, 180 }, + [16] = { 41.7, 35.1, 1, 180 }, + [17] = { 40.6, 34.9, 1, 180 }, + [18] = { 40.8, 34.9, 1, 180 }, + [19] = { 42.4, 34.8, 1, 180 }, + [20] = { 40.7, 34.8, 1, 180 }, + [21] = { 41.5, 34.6, 1, 180 }, + }, + }, + [287] = { + ["coords"] = { + [1] = { 43.7, 9.4, 33, 900 }, + }, + ["fac"] = "A", + }, + [288] = { + ["coords"] = { + [1] = { 49.6, 7.6, 33, 900 }, + }, + ["fac"] = "A", + }, + [290] = { + ["coords"] = { + [1] = { 49.3, 19.3, 40, 10 }, + }, + }, + [298] = { + ["coords"] = { + [1] = { 95.1, 46.7, 1, 7200 }, + [2] = { 32.1, 50.1, 38, 7200 }, + }, + }, + [299] = { + ["coords"] = { + [1] = { 95, 46.7, 1, 7200 }, + [2] = { 32.1, 50.1, 38, 7200 }, + }, + }, + [301] = { + ["coords"] = { + [1] = { 95, 46.6, 1, 7200 }, + [2] = { 32.1, 50, 38, 7200 }, + }, + }, + [302] = { + ["coords"] = { + [1] = { 95, 46.7, 1, 7200 }, + [2] = { 32.1, 50.1, 38, 7200 }, + }, + }, + [303] = { + ["coords"] = { + [1] = { 26.3, 22.4, 38, 7200 }, + }, + }, + [304] = { + ["coords"] = { + [1] = { 26.4, 22.3, 38, 7200 }, + }, + }, + [305] = { + ["coords"] = { + [1] = { 26.4, 22.4, 38, 7200 }, + }, + }, + [306] = { + ["coords"] = { + [1] = { 23, 71.1, 38, 7200 }, + }, + }, + [307] = { + ["coords"] = { + [1] = { 23, 71.2, 38, 7200 }, + }, + }, + [308] = { + ["coords"] = { + [1] = { 23, 71.1, 38, 7200 }, + }, + }, + [309] = { + ["coords"] = { + [1] = { 46.5, 52.3, 1, 180 }, + }, + }, + [310] = { + ["coords"] = { + [1] = { 46.5, 52.2, 1, 180 }, + }, + }, + [311] = { + ["coords"] = { + [1] = { 47.3, 45.1, 1, 180 }, + }, + }, + [312] = { + ["coords"] = { + [1] = { 47.3, 45.1, 1, 900 }, + }, + }, + [313] = { + ["coords"] = { + [1] = { 47.3, 45.1, 1, 900 }, + }, + }, + [314] = { + ["coords"] = { + [1] = { 47.3, 45.1, 1, 180 }, + }, + }, + [315] = { + ["coords"] = { + [1] = { 46.4, 42.2, 1, 900 }, + }, + }, + [316] = { + ["coords"] = { + [1] = { 46.4, 42.3, 1, 900 }, + }, + }, + [317] = { + ["coords"] = { + [1] = { 46.4, 42.3, 1, 900 }, + }, + }, + [318] = { + ["coords"] = { + [1] = { 46.4, 42.3, 1, 900 }, + }, + }, + [321] = { + ["coords"] = { + [1] = { 78.4, 35.9, 10, 10 }, + }, + }, + [324] = { + ["coords"] = { + [1] = { 57.6, 60.1, 4, 300 }, + [2] = { 64.8, 50.1, 4, 300 }, + [3] = { 49.4, 48, 4, 300 }, + [4] = { 48.7, 43.7, 4, 600 }, + [5] = { 51.4, 42.4, 4, 300 }, + [6] = { 64.6, 41.2, 4, 300 }, + [7] = { 57.4, 36.7, 4, 300 }, + [8] = { 43.2, 36.3, 4, 300 }, + [9] = { 51.1, 33.3, 4, 300 }, + [10] = { 38.2, 33.2, 4, 300 }, + [11] = { 67.1, 31.8, 4, 600 }, + [12] = { 61.6, 31.5, 4, 300 }, + [13] = { 69, 30.2, 4, 600 }, + [14] = { 66, 29.9, 4, 600 }, + [15] = { 66.8, 29.8, 4, 600 }, + [16] = { 45.9, 29.3, 4, 300 }, + [17] = { 64.2, 29.2, 4, 300 }, + [18] = { 39.2, 28.5, 4, 300 }, + [19] = { 41.7, 15.3, 4, 300 }, + [20] = { 44.4, 13.7, 4, 300 }, + [21] = { 42.5, 10.7, 4, 300 }, + [22] = { 19.3, 77.4, 8, 300 }, + [23] = { 61.2, 61.9, 28, 300 }, + [24] = { 65.2, 60.5, 28, 300 }, + [25] = { 55.2, 60.4, 28, 300 }, + [26] = { 51.9, 57.9, 28, 300 }, + [27] = { 66.9, 54.2, 28, 300 }, + [28] = { 54.3, 52.5, 28, 300 }, + [29] = { 59.6, 50.8, 28, 300 }, + [30] = { 44.6, 47.3, 28, 300 }, + [31] = { 55.8, 44.6, 28, 300 }, + [32] = { 44.6, 42.5, 28, 300 }, + [33] = { 53.2, 41.2, 28, 300 }, + [34] = { 49.7, 40.4, 28, 300 }, + [35] = { 65, 38.7, 28, 600 }, + [36] = { 47.2, 38.4, 28, 300 }, + [37] = { 62.8, 37.8, 28, 600 }, + [38] = { 64.9, 36.6, 28, 300 }, + [39] = { 54.7, 36.3, 28, 300 }, + [40] = { 50.6, 33.4, 28, 300 }, + [41] = { 43.5, 33.3, 28, 300 }, + [42] = { 47.4, 27.8, 28, 300 }, + [43] = { 50.2, 24.8, 28, 300 }, + [44] = { 52.9, 21.8, 28, 300 }, + [45] = { 48.6, 20.5, 28, 300 }, + [46] = { 77.9, 22.5, 45, 300 }, + [47] = { 80, 19.5, 45, 300 }, + [48] = { 31.3, 70.9, 46, 300 }, + [49] = { 87, 69.4, 46, 300 }, + [50] = { 55.7, 67.6, 46, 300 }, + [51] = { 37.4, 64.2, 46, 300 }, + [52] = { 27, 64.2, 46, 300 }, + [53] = { 72, 64.1, 46, 300 }, + [54] = { 91.5, 61.3, 46, 300 }, + [55] = { 47.2, 59.4, 46, 300 }, + [56] = { 16.9, 58.1, 46, 300 }, + [57] = { 65, 57.9, 46, 300 }, + [58] = { 40.2, 56.4, 46, 300 }, + [59] = { 75, 56, 46, 300 }, + [60] = { 62.2, 54.9, 46, 300 }, + [61] = { 34.6, 54, 46, 300 }, + [62] = { 80.9, 48.5, 46, 600 }, + [63] = { 81.5, 45.7, 46, 600 }, + [64] = { 79.7, 45.7, 46, 600 }, + [65] = { 80.9, 44.8, 46, 600 }, + [66] = { 77.5, 44, 46, 600 }, + [67] = { 64.6, 44, 46, 300 }, + [68] = { 92.5, 43.8, 46, 300 }, + [69] = { 49, 43.7, 46, 300 }, + [70] = { 80.2, 42.9, 46, 600 }, + [71] = { 20.8, 42.7, 46, 300 }, + [72] = { 82.8, 42.4, 46, 600 }, + [73] = { 83.6, 41.6, 46, 300 }, + [74] = { 78.3, 41, 46, 600 }, + [75] = { 81.3, 40.1, 46, 300 }, + [76] = { 57.5, 37.9, 46, 300 }, + [77] = { 42.5, 37.4, 46, 300 }, + [78] = { 72.8, 36.5, 46, 300 }, + [79] = { 64.5, 29.2, 46, 300 }, + [80] = { 91.6, 27.7, 46, 300 }, + [81] = { 72.5, 24.3, 46, 300 }, + [82] = { 63.7, 24, 46, 300 }, + [83] = { 54.5, 83.4, 47, 300 }, + [84] = { 56.4, 80.6, 47, 300 }, + [85] = { 55.3, 67.3, 47, 300 }, + [86] = { 54.5, 67.2, 47, 300 }, + [87] = { 52.7, 65.8, 47, 300 }, + [88] = { 64.9, 63.2, 47, 300 }, + [89] = { 72.6, 61.9, 47, 300 }, + [90] = { 77.8, 53, 47, 300 }, + [91] = { 66.8, 52.4, 47, 300 }, + [92] = { 65.5, 41.2, 47, 300 }, + [93] = { 21.6, 79.6, 51, 300 }, + [94] = { 26.5, 66.2, 51, 300 }, + [95] = { 38.6, 63.2, 51, 300 }, + [96] = { 23.7, 53.3, 51, 300 }, + [97] = { 23.3, 43.7, 51, 300 }, + [98] = { 12.9, 42.9, 51, 300 }, + [99] = { 34.2, 42.2, 51, 300 }, + [100] = { 41.7, 41.6, 51, 300 }, + [101] = { 16.9, 36.8, 51, 300 }, + [102] = { 24, 36.6, 51, 300 }, + [103] = { 15.7, 32.4, 51, 300 }, + [104] = { 41.9, 31, 51, 300 }, + [105] = { 22.5, 31, 51, 300 }, + [106] = { 32.1, 27.1, 51, 300 }, + [107] = { 22.5, 24.4, 51, 300 }, + [108] = { 43.8, 21.6, 51, 300 }, + [109] = { 66.2, 84.7, 139, 300 }, + [110] = { 46.7, 84.3, 139, 300 }, + [111] = { 59, 82.2, 139, 300 }, + [112] = { 51.3, 80.9, 139, 300 }, + [113] = { 75.6, 80.2, 139, 300 }, + [114] = { 55.7, 77.6, 139, 300 }, + [115] = { 46.7, 71.6, 139, 300 }, + [116] = { 69, 71.4, 139, 300 }, + [117] = { 55.2, 71.3, 139, 300 }, + [118] = { 75.6, 69.9, 139, 300 }, + [119] = { 37.8, 65.7, 139, 300 }, + [120] = { 30.5, 64.2, 139, 300 }, + [121] = { 25.1, 62.7, 139, 300 }, + [122] = { 67.3, 61, 139, 300 }, + [123] = { 58.5, 61, 139, 300 }, + [124] = { 51.7, 59.2, 139, 300 }, + [125] = { 57.8, 49.4, 139, 300 }, + [126] = { 52.3, 43.8, 139, 300 }, + [127] = { 44.9, 43.7, 139, 300 }, + [128] = { 32.5, 43, 139, 300 }, + [129] = { 39.1, 39.4, 139, 300 }, + [130] = { 22.7, 38.6, 139, 300 }, + [131] = { 33.1, 32.3, 139, 300 }, + [132] = { 28.4, 30, 139, 300 }, + [133] = { 23.2, 24.1, 139, 300 }, + [134] = { 36.3, 22.9, 139, 300 }, + [135] = { 45.4, 69.4, 357, 300 }, + [136] = { 63, 69.4, 357, 300 }, + [137] = { 62, 69.4, 357, 300 }, + [138] = { 62.4, 69.3, 357, 300 }, + [139] = { 64.1, 69, 357, 300 }, + [140] = { 62.2, 67.8, 357, 300 }, + [141] = { 47.2, 63.6, 357, 300 }, + [142] = { 37.8, 31.9, 357, 300 }, + [143] = { 34.7, 31.1, 357, 300 }, + [144] = { 56.6, 73.4, 440, 600 }, + [145] = { 55.4, 73, 440, 600 }, + [146] = { 27.3, 70.1, 440, 300 }, + [147] = { 29.7, 67.9, 440, 300 }, + [148] = { 56.9, 67.7, 440, 600 }, + [149] = { 26.8, 65.6, 440, 300 }, + [150] = { 29.4, 64.8, 440, 300 }, + [151] = { 31.2, 64.5, 440, 300 }, + [152] = { 64, 53.3, 440, 300 }, + [153] = { 62.7, 48.5, 440, 300 }, + [154] = { 64.4, 47.1, 440, 300 }, + [155] = { 35.1, 46.8, 440, 600 }, + [156] = { 30.9, 45.6, 440, 600 }, + [157] = { 32.2, 44.1, 440, 600 }, + [158] = { 30.9, 43.9, 440, 600 }, + [159] = { 32.8, 34.8, 440, 300 }, + [160] = { 31.5, 22.9, 440, 300 }, + [161] = { 55.5, 92.6, 490, 300 }, + [162] = { 50.7, 89.9, 490, 300 }, + [163] = { 49, 86.9, 490, 300 }, + [164] = { 54.4, 86.8, 490, 300 }, + [165] = { 61.7, 84.9, 490, 300 }, + [166] = { 78, 81.4, 490, 600 }, + [167] = { 64.8, 80.3, 490, 300 }, + [168] = { 77.9, 78.2, 490, 600 }, + [169] = { 50.6, 76, 490, 300 }, + [170] = { 73.6, 70.4, 490, 300 }, + [171] = { 48.7, 66.5, 490, 300 }, + [172] = { 63.1, 66.5, 490, 300 }, + [173] = { 59.4, 65.4, 490, 300 }, + [174] = { 55.4, 64.8, 490, 300 }, + [175] = { 45.5, 64.8, 490, 300 }, + [176] = { 76.5, 61.6, 490, 300 }, + [177] = { 81.5, 61.2, 490, 300 }, + [178] = { 76.8, 49.5, 490, 300 }, + [179] = { 75.3, 39.6, 490, 300 }, + [180] = { 79, 39.1, 490, 300 }, + [181] = { 9, 37.5, 490, 300 }, + [182] = { 37.8, 35.3, 490, 300 }, + [183] = { 55.4, 35.2, 490, 300 }, + [184] = { 45.4, 35.2, 490, 300 }, + [185] = { 63.1, 33.4, 490, 300 }, + [186] = { 75.5, 33.1, 490, 300 }, + [187] = { 52.2, 32, 490, 300 }, + [188] = { 11.8, 27.8, 490, 300 }, + [189] = { 69.8, 19.2, 490, 300 }, + [190] = { 68.9, 17.8, 490, 600 }, + [191] = { 66.2, 17.7, 490, 600 }, + [192] = { 67.7, 16.8, 490, 600 }, + [193] = { 63.8, 16.2, 490, 600 }, + [194] = { 68.6, 15.9, 490, 600 }, + [195] = { 66.7, 15.6, 490, 600 }, + [196] = { 69.2, 15.6, 490, 600 }, + [197] = { 39.1, 15.4, 490, 300 }, + [198] = { 68.3, 14.3, 490, 600 }, + [199] = { 65.3, 14.2, 490, 600 }, + [200] = { 66.3, 13.6, 490, 600 }, + [201] = { 67.4, 13.6, 490, 600 }, + [202] = { 50.1, 13.3, 490, 300 }, + [203] = { 56.6, 11.7, 490, 300 }, + [204] = { 60.6, 82, 618, 300 }, + [205] = { 59, 75.1, 618, 300 }, + [206] = { 57.4, 72.5, 618, 300 }, + [207] = { 66.1, 71.8, 618, 300 }, + [208] = { 66.2, 69.2, 618, 300 }, + [209] = { 56.9, 67.3, 618, 300 }, + [210] = { 57.8, 61.1, 618, 300 }, + [211] = { 65.5, 55.3, 618, 300 }, + [212] = { 56, 53.8, 618, 300 }, + [213] = { 55.2, 50.7, 618, 600 }, + [214] = { 55.7, 50.6, 618, 600 }, + [215] = { 54.1, 50.4, 618, 600 }, + [216] = { 56.9, 50.4, 618, 600 }, + [217] = { 55.7, 48.9, 618, 600 }, + [218] = { 58.4, 46.6, 618, 300 }, + [219] = { 67.7, 41.5, 618, 600 }, + [220] = { 70.9, 40.4, 618, 600 }, + [221] = { 69.1, 39.8, 618, 600 }, + [222] = { 70.2, 39.8, 618, 600 }, + [223] = { 57.3, 32.8, 618, 300 }, + [224] = { 64.6, 29.7, 618, 300 }, + [225] = { 63.6, 25.6, 618, 300 }, + [226] = { 56.3, 25.6, 618, 300 }, + [227] = { 50.6, 23.6, 618, 300 }, + [228] = { 55.1, 20.9, 618, 300 }, + [229] = { 66.2, 18.5, 618, 300 }, + [230] = { 60.6, 15.9, 618, 300 }, + [231] = { 55.9, 15.8, 618, 300 }, + [232] = { 33.3, 91.3, 1377, 300 }, + [233] = { 53.2, 90.8, 1377, 300 }, + [234] = { 40.4, 90.7, 1377, 300 }, + [235] = { 47.2, 90.2, 1377, 300 }, + [236] = { 17.1, 89.9, 1377, 300 }, + [237] = { 42.7, 83.8, 1377, 300 }, + [238] = { 32.3, 83.8, 1377, 300 }, + [239] = { 66.9, 81.5, 1377, 300 }, + [240] = { 40.4, 79.9, 1377, 300 }, + [241] = { 43.7, 78.5, 1377, 300 }, + [242] = { 44.2, 78, 1377, 300 }, + [243] = { 19.7, 76.1, 1377, 300 }, + [244] = { 65.8, 71, 1377, 300 }, + [245] = { 36.9, 71, 1377, 300 }, + [246] = { 23.1, 69.3, 1377, 300 }, + [247] = { 17.4, 66.8, 1377, 300 }, + [248] = { 41.5, 66.8, 1377, 300 }, + [249] = { 65.4, 65, 1377, 300 }, + [250] = { 48.2, 61.9, 1377, 300 }, + [251] = { 37.7, 61.1, 1377, 300 }, + [252] = { 54.7, 60.6, 1377, 300 }, + [253] = { 64.9, 58.4, 1377, 300 }, + [254] = { 18.8, 56.4, 1377, 300 }, + [255] = { 53.8, 51, 1377, 300 }, + [256] = { 49.5, 48.7, 1377, 300 }, + [257] = { 63.4, 48.3, 1377, 300 }, + [258] = { 33.4, 41.7, 1377, 300 }, + [259] = { 23.3, 40.8, 1377, 300 }, + [260] = { 67.1, 40.1, 1377, 300 }, + [261] = { 56.2, 38.1, 1377, 300 }, + [262] = { 42.6, 36.9, 1377, 300 }, + [263] = { 70.1, 29.9, 1377, 300 }, + [264] = { 21.1, 28, 1377, 300 }, + [265] = { 28.8, 22.6, 1377, 300 }, + [266] = { 58.3, 21.3, 1377, 300 }, + [267] = { 31.3, 20.1, 1377, 300 }, + [268] = { 52.2, 19.9, 1377, 300 }, + }, + }, + [331] = { + ["coords"] = { + [1] = { 35.2, 51.5, 11, 180 }, + [2] = { 33.3, 51.4, 11, 180 }, + [3] = { 32.8, 51.1, 11, 180 }, + [4] = { 34.2, 50.9, 11, 180 }, + [5] = { 32.3, 50.9, 11, 180 }, + [6] = { 34.8, 50.4, 11, 180 }, + [7] = { 36.2, 50, 11, 180 }, + [8] = { 34.1, 49.9, 11, 180 }, + [9] = { 33.3, 49.1, 11, 180 }, + [10] = { 35.2, 49, 11, 180 }, + [11] = { 36.1, 48.9, 11, 180 }, + [12] = { 33.8, 48.7, 11, 180 }, + [13] = { 32.3, 48.5, 11, 180 }, + [14] = { 35.6, 48, 11, 180 }, + [15] = { 35, 48, 11, 180 }, + [16] = { 34.2, 47.7, 11, 180 }, + [17] = { 33.4, 47.5, 11, 180 }, + [18] = { 34.9, 47, 11, 180 }, + [19] = { 33.9, 46.6, 11, 180 }, + [20] = { 33.1, 46.4, 11, 180 }, + [21] = { 35.5, 46.2, 11, 180 }, + [22] = { 34.3, 45.7, 11, 180 }, + [23] = { 34.7, 45.2, 11, 180 }, + [24] = { 35.5, 45.1, 11, 180 }, + [25] = { 33.7, 45.1, 11, 180 }, + [26] = { 34.4, 44.5, 11, 180 }, + [27] = { 35.2, 44.4, 11, 180 }, + [28] = { 36.5, 42.1, 11, 180 }, + }, + }, + [333] = { + ["coords"] = { + [1] = { 35.2, 51.5, 11, 180 }, + [2] = { 33.3, 51.4, 11, 180 }, + [3] = { 32.8, 51.1, 11, 180 }, + [4] = { 34.2, 50.9, 11, 180 }, + [5] = { 32.3, 50.9, 11, 180 }, + [6] = { 34.8, 50.4, 11, 180 }, + [7] = { 36.2, 50, 11, 180 }, + [8] = { 34.1, 49.9, 11, 180 }, + [9] = { 33.3, 49.1, 11, 180 }, + [10] = { 35.2, 49, 11, 180 }, + [11] = { 36.1, 48.9, 11, 180 }, + [12] = { 33.8, 48.7, 11, 180 }, + [13] = { 32.3, 48.5, 11, 180 }, + [14] = { 35.6, 48, 11, 180 }, + [15] = { 35, 48, 11, 180 }, + [16] = { 34.2, 47.7, 11, 180 }, + [17] = { 33.4, 47.5, 11, 180 }, + [18] = { 34.9, 47, 11, 180 }, + [19] = { 33.9, 46.6, 11, 180 }, + [20] = { 33.1, 46.4, 11, 180 }, + [21] = { 35.5, 46.2, 11, 180 }, + [22] = { 34.3, 45.7, 11, 180 }, + [23] = { 34.7, 45.2, 11, 180 }, + [24] = { 35.5, 45.1, 11, 180 }, + [25] = { 33.7, 45.1, 11, 180 }, + [26] = { 34.4, 44.5, 11, 180 }, + [27] = { 35.2, 44.4, 11, 180 }, + [28] = { 36.5, 42.1, 11, 180 }, + }, + }, + [334] = { + ["coords"] = { + [1] = { 35.2, 51.5, 11, 180 }, + [2] = { 33.3, 51.4, 11, 180 }, + [3] = { 32.8, 51.1, 11, 180 }, + [4] = { 34.2, 50.9, 11, 180 }, + [5] = { 32.3, 50.9, 11, 180 }, + [6] = { 34.8, 50.4, 11, 180 }, + [7] = { 36.2, 50, 11, 180 }, + [8] = { 34.1, 49.9, 11, 180 }, + [9] = { 33.3, 49.1, 11, 180 }, + [10] = { 35.2, 49, 11, 180 }, + [11] = { 36.1, 48.9, 11, 180 }, + [12] = { 33.8, 48.7, 11, 180 }, + [13] = { 32.3, 48.5, 11, 180 }, + [14] = { 35.6, 48, 11, 180 }, + [15] = { 35, 48, 11, 180 }, + [16] = { 34.2, 47.7, 11, 180 }, + [17] = { 33.4, 47.5, 11, 180 }, + [18] = { 34.9, 47, 11, 180 }, + [19] = { 33.9, 46.6, 11, 180 }, + [20] = { 33.1, 46.4, 11, 180 }, + [21] = { 35.5, 46.2, 11, 180 }, + [22] = { 34.3, 45.7, 11, 180 }, + [23] = { 34.7, 45.2, 11, 180 }, + [24] = { 35.5, 45.1, 11, 180 }, + [25] = { 33.7, 45.1, 11, 180 }, + [26] = { 34.4, 44.5, 11, 180 }, + [27] = { 35.2, 44.4, 11, 180 }, + [28] = { 36.5, 42.1, 11, 180 }, + }, + }, + [337] = { + ["coords"] = {}, + }, + [369] = { + ["coords"] = {}, + }, + [372] = { + ["coords"] = { + [1] = { 45.3, 51.8, 1, 900 }, + [2] = { 45.4, 51.8, 1, 900 }, + }, + }, + [375] = { + ["coords"] = { + [1] = { 35.5, 52.4, 85, 180 }, + [2] = { 34.4, 52.3, 85, 180 }, + [3] = { 37.2, 52.2, 85, 180 }, + [4] = { 36.1, 52, 85, 180 }, + [5] = { 36.9, 51.8, 85, 180 }, + [6] = { 35, 51.7, 85, 180 }, + [7] = { 35, 51.6, 85, 180 }, + [8] = { 34.6, 51.6, 85, 180 }, + [9] = { 35.7, 51.5, 85, 180 }, + [10] = { 36.2, 51.3, 85, 180 }, + [11] = { 34.4, 51.2, 85, 180 }, + [12] = { 36.3, 51.1, 85, 180 }, + [13] = { 35.2, 51, 85, 180 }, + [14] = { 37.2, 51, 85, 180 }, + [15] = { 35.3, 50.9, 85, 180 }, + [16] = { 34.4, 50.9, 85, 180 }, + [17] = { 37.3, 50.9, 85, 180 }, + [18] = { 34.5, 50.9, 85, 180 }, + [19] = { 37.1, 50.8, 85, 180 }, + [20] = { 35.9, 50.5, 85, 180 }, + [21] = { 36.2, 50.4, 85, 180 }, + [22] = { 36.6, 50.1, 85, 180 }, + [23] = { 35, 50, 85, 180 }, + [24] = { 34.4, 49.9, 85, 180 }, + [25] = { 35, 49.8, 85, 180 }, + [26] = { 35.1, 49.8, 85, 180 }, + [27] = { 34.3, 49.7, 85, 180 }, + [28] = { 37.4, 49.7, 85, 180 }, + [29] = { 37.2, 49.6, 85, 180 }, + [30] = { 36, 49.4, 85, 180 }, + [31] = { 37.8, 49.3, 85, 180 }, + [32] = { 37.3, 49.2, 85, 180 }, + [33] = { 36.2, 49, 85, 180 }, + [34] = { 36.1, 49, 85, 180 }, + [35] = { 34.5, 49, 85, 180 }, + [36] = { 36.3, 48.9, 85, 180 }, + [37] = { 37.3, 48.9, 85, 180 }, + [38] = { 31.9, 47.1, 85, 180 }, + [39] = { 32.6, 47, 85, 180 }, + [40] = { 31.9, 46.7, 85, 180 }, + }, + }, + [376] = { + ["coords"] = { + [1] = { 49.9, 39.3, 11, 7200 }, + }, + }, + [377] = { + ["coords"] = { + [1] = { 49.9, 39.3, 11, 7200 }, + }, + }, + [378] = { + ["coords"] = { + [1] = { 49.9, 39.3, 11, 7200 }, + }, + }, + [379] = { + ["coords"] = { + [1] = { 56.2, 52.6, 11, 7200 }, + }, + }, + [380] = { + ["coords"] = { + [1] = { 56.2, 52.6, 11, 7200 }, + }, + }, + [381] = { + ["coords"] = { + [1] = { 56.2, 52.7, 11, 7200 }, + }, + }, + [382] = { + ["coords"] = { + [1] = { 56.2, 52.6, 11, 7200 }, + }, + }, + [386] = { + ["coords"] = { + [1] = { 45.4, 51.9, 1, 900 }, + [2] = { 45.3, 51.9, 1, 900 }, + }, + }, + [387] = { + ["coords"] = { + [1] = { 50.8, 17.2, 11, 7200 }, + }, + }, + [388] = { + ["coords"] = { + [1] = { 50.8, 17.1, 11, 7200 }, + }, + }, + [389] = { + ["coords"] = { + [1] = { 50.8, 17.2, 11, 7200 }, + }, + }, + [711] = { + ["coords"] = { + [1] = { 60.7, 51.5, 85, 900 }, + }, + ["fac"] = "H", + }, + [759] = { + ["coords"] = { + [1] = { 29, 61.9, 33, 10 }, + }, + }, + [965] = { + ["coords"] = { + [1] = { 28.2, 32.2, 10, 0 }, + [2] = { 37.5, 66.3, 36, 0 }, + [3] = { 41.7, 6.4, 267, 0 }, + }, + }, + [1162] = { + ["coords"] = { + [1] = { 50.8, 17.2, 11, 7200 }, + }, + }, + [1165] = { + ["coords"] = { + [1] = { 68, 42.1, 85, 10 }, + }, + }, + [1166] = { + ["coords"] = { + [1] = { 36.2, 54.5, 40, 10 }, + }, + }, + [1557] = { + ["coords"] = { + [1] = { 66.6, 44.9, 85, 900 }, + }, + ["fac"] = "H", + }, + [1558] = { + ["coords"] = {}, + }, + [1560] = { + ["coords"] = { + [1] = { 44.3, 65.8, 12, 0 }, + }, + }, + [1561] = { + ["coords"] = { + [1] = { 29.4, 61.5, 1519, 180 }, + }, + ["fac"] = "A", + }, + [1562] = { + ["coords"] = { + [1] = { 85.7, 69.5, 12, 0 }, + }, + }, + [1564] = { + ["coords"] = { + [1] = { 78.2, 49.7, 1, 900 }, + }, + }, + [1565] = { + ["coords"] = { + [1] = { 78.2, 49.7, 1, 900 }, + }, + }, + [1566] = { + ["coords"] = { + [1] = { 78.2, 49.7, 1, 900 }, + }, + }, + [1567] = { + ["coords"] = { + [1] = { 46.5, 52.2, 1, 900 }, + }, + }, + [1568] = { + ["coords"] = { + [1] = { 67.1, 52.7, 1, 900 }, + }, + }, + [1569] = { + ["coords"] = { + [1] = { 67.1, 52.7, 1, 900 }, + }, + }, + [1570] = { + ["coords"] = { + [1] = { 67.1, 52.7, 1, 900 }, + }, + }, + [1571] = { + ["coords"] = { + [1] = { 52.8, 28.6, 130, 10 }, + }, + }, + [1572] = { + ["coords"] = { + [1] = { 30.2, 72, 1, 900 }, + }, + }, + [1573] = { + ["coords"] = { + [1] = { 35.4, 61.9, 1, 900 }, + }, + }, + [1585] = { + ["coords"] = { + [1] = { 50.6, 14.3, 38, 10 }, + }, + ["fac"] = "A", + }, + [1586] = { + ["coords"] = { + [1] = { 68.2, 42, 85, 900 }, + }, + ["fac"] = "H", + }, + [1587] = { + ["coords"] = { + [1] = { 68.4, 54.4, 1, 900 }, + }, + }, + [1593] = { + ["coords"] = { + [1] = { 58.4, 34.9, 130, 10 }, + }, + ["fac"] = "H", + }, + [1594] = { + ["coords"] = { + [1] = { 43, 73.2, 130, 10 }, + }, + }, + [1595] = { + ["coords"] = { + [1] = { 24.5, 78.3, 12, 900 }, + }, + }, + [1596] = { + ["coords"] = { + [1] = { 24.5, 78.4, 12, 900 }, + }, + }, + [1597] = { + ["coords"] = { + [1] = { 24.6, 78.3, 12, 900 }, + }, + }, + [1598] = { + ["coords"] = { + [1] = { 24.6, 78.3, 12, 900 }, + }, + }, + [1599] = { + ["coords"] = { + [1] = { 67.9, 24.9, 130, 10 }, + }, + ["fac"] = "H", + }, + [1604] = { + ["coords"] = { + [1] = { 28.1, 32.2, 10, 0 }, + [2] = { 47.6, 47.4, 11, 0 }, + [3] = { 47.5, 47, 11, 0 }, + }, + }, + [1605] = { + ["coords"] = { + [1] = { 47.6, 47.4, 11, 0 }, + [2] = { 47.6, 47.3, 11, 0 }, + [3] = { 47.5, 47.1, 11, 0 }, + [4] = { 47.5, 47, 11, 0 }, + [5] = { 47.4, 47, 11, 0 }, + }, + }, + [1607] = { + ["coords"] = { + [1] = { 47.6, 47.4, 11, 0 }, + [2] = { 47.6, 47.3, 11, 0 }, + [3] = { 47.5, 47, 11, 0 }, + [4] = { 47.4, 47, 11, 0 }, + [5] = { 47.5, 46.9, 11, 0 }, + }, + }, + [1609] = { + ["coords"] = { + [1] = { 47.5, 47, 11, 10 }, + }, + ["fac"] = "A", + }, + [1610] = { + ["coords"] = { + [1] = { 46.6, 64.7, 11, 300 }, + [2] = { 47.7, 63.4, 11, 300 }, + [3] = { 46.5, 63, 11, 300 }, + [4] = { 50.7, 62.7, 11, 300 }, + [5] = { 48.2, 62.5, 11, 300 }, + [6] = { 46.8, 62.3, 11, 300 }, + [7] = { 50.5, 62.2, 11, 300 }, + [8] = { 51.7, 61.3, 11, 300 }, + [9] = { 46.2, 61.2, 11, 300 }, + [10] = { 49.4, 61, 11, 300 }, + [11] = { 45.7, 60.4, 11, 300 }, + [12] = { 50.3, 60.1, 11, 300 }, + [13] = { 48.4, 59.9, 11, 300 }, + [14] = { 48, 59.4, 11, 300 }, + [15] = { 50, 58.4, 11, 300 }, + }, + }, + [1617] = { + ["coords"] = { + [1] = { 48.2, 64.2, 1, 300 }, + [2] = { 49.4, 63.3, 1, 300 }, + [3] = { 47, 62.9, 1, 300 }, + [4] = { 39.2, 62, 1, 300 }, + [5] = { 56.3, 61.3, 1, 300 }, + [6] = { 49, 61.2, 1, 300 }, + [7] = { 78.3, 60.6, 1, 300 }, + [8] = { 50.8, 60.4, 1, 300 }, + [9] = { 38, 60.3, 1, 300 }, + [10] = { 37, 60.2, 1, 300 }, + [11] = { 75.7, 60.2, 1, 300 }, + [12] = { 49.8, 59.9, 1, 300 }, + [13] = { 64.3, 59.7, 1, 300 }, + [14] = { 40.3, 59.6, 1, 300 }, + [15] = { 63.4, 59, 1, 300 }, + [16] = { 55.1, 59, 1, 300 }, + [17] = { 39.3, 59, 1, 300 }, + [18] = { 45.1, 58.9, 1, 300 }, + [19] = { 35.5, 58.3, 1, 300 }, + [20] = { 45.6, 58.1, 1, 300 }, + [21] = { 40.1, 58, 1, 300 }, + [22] = { 57.1, 57.9, 1, 300 }, + [23] = { 32.8, 57.8, 1, 300 }, + [24] = { 30.7, 57.8, 1, 300 }, + [25] = { 44.4, 57.4, 1, 300 }, + [26] = { 31.7, 57.3, 1, 300 }, + [27] = { 55.5, 57.2, 1, 300 }, + [28] = { 63.5, 57.2, 1, 300 }, + [29] = { 76.3, 57, 1, 300 }, + [30] = { 78.9, 56.9, 1, 300 }, + [31] = { 33.9, 56.8, 1, 300 }, + [32] = { 43.9, 56.7, 1, 300 }, + [33] = { 45.3, 56.6, 1, 300 }, + [34] = { 44.6, 56.5, 1, 300 }, + [35] = { 54.5, 56.2, 1, 300 }, + [36] = { 73.4, 56.1, 1, 300 }, + [37] = { 32.1, 55.6, 1, 300 }, + [38] = { 61.9, 55.3, 1, 300 }, + [39] = { 63.6, 55.3, 1, 300 }, + [40] = { 74.6, 55.1, 1, 300 }, + [41] = { 29.8, 55, 1, 300 }, + [42] = { 58.1, 54.6, 1, 300 }, + [43] = { 31.7, 54.3, 1, 300 }, + [44] = { 29.2, 53.9, 1, 300 }, + [45] = { 31, 52.7, 1, 300 }, + [46] = { 71.2, 52.6, 1, 300 }, + [47] = { 28.4, 52.6, 1, 300 }, + [48] = { 69.3, 51.7, 1, 300 }, + [49] = { 71, 51.1, 1, 300 }, + [50] = { 30.1, 50.5, 1, 300 }, + [51] = { 74.7, 50.5, 1, 300 }, + [52] = { 69.5, 50, 1, 300 }, + [53] = { 72.1, 49, 1, 300 }, + [54] = { 28.8, 47.9, 1, 300 }, + [55] = { 27.9, 47.4, 1, 300 }, + [56] = { 26.5, 45, 1, 300 }, + [57] = { 29.5, 44.7, 1, 300 }, + [58] = { 47.8, 44.7, 1, 300 }, + [59] = { 28.1, 44.1, 1, 300 }, + [60] = { 30.8, 43.4, 1, 300 }, + [61] = { 47.3, 43.2, 1, 300 }, + [62] = { 46.4, 43, 1, 300 }, + [63] = { 27.3, 41.7, 1, 300 }, + [64] = { 28.7, 41.7, 1, 300 }, + [65] = { 45.9, 41.4, 1, 300 }, + [66] = { 46.8, 41.2, 1, 300 }, + [67] = { 30.1, 40.7, 1, 300 }, + [68] = { 27.9, 40.2, 1, 300 }, + [69] = { 46.2, 40.1, 1, 300 }, + [70] = { 29.8, 38.5, 1, 300 }, + [71] = { 28.4, 37.3, 1, 300 }, + [72] = { 34.7, 36.9, 1, 300 }, + [73] = { 44, 36.6, 1, 300 }, + [74] = { 37.7, 36.3, 1, 300 }, + [75] = { 37.2, 34.7, 1, 300 }, + [76] = { 34.7, 33.7, 1, 300 }, + [77] = { 43.9, 33.5, 1, 300 }, + [78] = { 38, 33.4, 1, 300 }, + [79] = { 36.8, 32.3, 1, 300 }, + [80] = { 43.8, 31.9, 1, 300 }, + [81] = { 44.5, 31.4, 1, 300 }, + [82] = { 42.4, 30.9, 1, 300 }, + [83] = { 43.1, 30.1, 1, 300 }, + [84] = { 24.9, 92.4, 12, 300 }, + [85] = { 27.6, 91.9, 12, 300 }, + [86] = { 43.9, 90.8, 12, 300 }, + [87] = { 30.8, 89.4, 12, 300 }, + [88] = { 45.7, 89.2, 12, 300 }, + [89] = { 34.2, 88.1, 12, 300 }, + [90] = { 26.5, 87.9, 12, 300 }, + [91] = { 47, 84.5, 12, 300 }, + [92] = { 27, 84.5, 12, 300 }, + [93] = { 40.4, 84.2, 12, 300 }, + [94] = { 82.6, 84, 12, 300 }, + [95] = { 76.5, 83.9, 12, 300 }, + [96] = { 42.8, 83.9, 12, 300 }, + [97] = { 18.9, 83.4, 12, 300 }, + [98] = { 85.8, 83, 12, 300 }, + [99] = { 79.5, 82.7, 12, 300 }, + [100] = { 49.9, 80.9, 12, 300 }, + [101] = { 66.5, 80.9, 12, 300 }, + [102] = { 81.1, 80.6, 12, 300 }, + [103] = { 35, 80, 12, 300 }, + [104] = { 52.8, 79.8, 12, 300 }, + [105] = { 37.7, 79.7, 12, 300 }, + [106] = { 89.4, 79.7, 12, 300 }, + [107] = { 42.4, 79.4, 12, 300 }, + [108] = { 61.7, 78.9, 12, 300 }, + [109] = { 87.5, 78.5, 12, 300 }, + [110] = { 79, 77.8, 12, 300 }, + [111] = { 23.3, 77.7, 12, 300 }, + [112] = { 82.3, 76.6, 12, 300 }, + [113] = { 68.9, 76.2, 12, 300 }, + [114] = { 75.3, 75.8, 12, 300 }, + [115] = { 44.8, 75.7, 12, 300 }, + [116] = { 17.4, 75.7, 12, 300 }, + [117] = { 57.6, 75.5, 12, 300 }, + [118] = { 40.1, 74.8, 12, 300 }, + [119] = { 35.1, 74.5, 12, 300 }, + [120] = { 21.3, 73.6, 12, 300 }, + [121] = { 87.3, 72.9, 12, 300 }, + [122] = { 39, 72.7, 12, 300 }, + [123] = { 29.4, 71.5, 12, 300 }, + [124] = { 35.1, 70.7, 12, 300 }, + [125] = { 53.8, 70.3, 12, 300 }, + [126] = { 77.5, 70.1, 12, 300 }, + [127] = { 50.9, 69.2, 12, 300 }, + [128] = { 61.4, 68.5, 12, 300 }, + [129] = { 27.2, 68.3, 12, 300 }, + [130] = { 69, 68.1, 12, 300 }, + [131] = { 79.4, 68, 12, 300 }, + [132] = { 73.3, 67.4, 12, 300 }, + [133] = { 65.6, 67, 12, 300 }, + [134] = { 34.9, 66.9, 12, 300 }, + [135] = { 56.3, 66.9, 12, 300 }, + [136] = { 31.3, 66.8, 12, 300 }, + [137] = { 30.3, 66.6, 12, 300 }, + [138] = { 60.6, 65.4, 12, 300 }, + [139] = { 67.6, 65.1, 12, 300 }, + [140] = { 87.3, 64.9, 12, 300 }, + [141] = { 70.7, 63.2, 12, 300 }, + [142] = { 77.1, 63.1, 12, 300 }, + [143] = { 51.9, 63.1, 12, 300 }, + [144] = { 81.5, 62.9, 12, 300 }, + [145] = { 64.5, 62.6, 12, 300 }, + [146] = { 36, 61.9, 12, 300 }, + [147] = { 60.7, 60.9, 12, 300 }, + [148] = { 54.3, 60.3, 12, 300 }, + [149] = { 57.7, 60.2, 12, 300 }, + [150] = { 67.3, 60, 12, 300 }, + [151] = { 50.2, 59.1, 12, 300 }, + [152] = { 36.9, 58.1, 12, 300 }, + [153] = { 34, 58.1, 12, 300 }, + [154] = { 30.6, 57.7, 12, 300 }, + [155] = { 41.2, 57.6, 12, 300 }, + [156] = { 84.1, 56.7, 12, 300 }, + [157] = { 43.3, 56.7, 12, 300 }, + [158] = { 41.4, 55.3, 12, 300 }, + [159] = { 32.8, 54.5, 12, 300 }, + [160] = { 80.5, 54.4, 12, 300 }, + [161] = { 62.8, 53.9, 12, 300 }, + [162] = { 39.8, 53.4, 12, 300 }, + [163] = { 41.4, 52.1, 12, 300 }, + [164] = { 44.7, 51.3, 12, 300 }, + [165] = { 68.1, 50.8, 12, 300 }, + [166] = { 80.6, 46.8, 12, 300 }, + [167] = { 66.5, 42.8, 12, 300 }, + [168] = { 71.2, 42, 12, 300 }, + [169] = { 76.6, 41.1, 12, 300 }, + [170] = { 60.4, 90.7, 14, 300 }, + [171] = { 66.9, 86.6, 14, 300 }, + [172] = { 60.4, 83, 14, 300 }, + [173] = { 54.9, 80.5, 14, 300 }, + [174] = { 51.6, 77.6, 14, 300 }, + [175] = { 50.5, 75.1, 14, 300 }, + [176] = { 64.1, 75, 14, 300 }, + [177] = { 49.3, 74, 14, 300 }, + [178] = { 53.9, 73.5, 14, 300 }, + [179] = { 69, 70.9, 14, 300 }, + [180] = { 57.5, 70.2, 14, 300 }, + [181] = { 56.2, 68.6, 14, 300 }, + [182] = { 51, 66.8, 14, 300 }, + [183] = { 55, 65.9, 14, 300 }, + [184] = { 51.5, 65.4, 14, 300 }, + [185] = { 55, 63.3, 14, 300 }, + [186] = { 51.1, 62.9, 14, 300 }, + [187] = { 60.5, 60.8, 14, 300 }, + [188] = { 55.6, 59.6, 14, 300 }, + [189] = { 51.9, 58.5, 14, 300 }, + [190] = { 61.3, 58, 14, 300 }, + [191] = { 58.7, 57.7, 14, 300 }, + [192] = { 50.6, 56.8, 14, 300 }, + [193] = { 60.6, 56.1, 14, 300 }, + [194] = { 54.8, 54.7, 14, 300 }, + [195] = { 60.6, 54.6, 14, 300 }, + [196] = { 50, 54.4, 14, 300 }, + [197] = { 60.4, 53.1, 14, 300 }, + [198] = { 50.2, 51, 14, 300 }, + [199] = { 43.6, 50.7, 14, 300 }, + [200] = { 44.7, 49.6, 14, 300 }, + [201] = { 47.6, 49.5, 14, 300 }, + [202] = { 44.8, 49.5, 14, 300 }, + [203] = { 50.2, 48.7, 14, 300 }, + [204] = { 40.1, 48.4, 14, 300 }, + [205] = { 56.7, 48, 14, 300 }, + [206] = { 47.7, 47.4, 14, 300 }, + [207] = { 50.3, 47.2, 14, 300 }, + [208] = { 44.6, 42.9, 14, 300 }, + [209] = { 57.2, 41.9, 14, 300 }, + [210] = { 57.4, 41.9, 14, 300 }, + [211] = { 57.1, 41.8, 14, 300 }, + [212] = { 56.1, 41.3, 14, 300 }, + [213] = { 58.4, 40.9, 14, 300 }, + [214] = { 56, 40.5, 14, 300 }, + [215] = { 40.1, 40.4, 14, 300 }, + [216] = { 57, 39.1, 14, 300 }, + [217] = { 56.4, 37.7, 14, 300 }, + [218] = { 46.9, 36, 14, 300 }, + [219] = { 56, 35.7, 14, 300 }, + [220] = { 55.9, 35.6, 14, 300 }, + [221] = { 55.7, 32.7, 14, 300 }, + [222] = { 57.6, 31, 14, 300 }, + [223] = { 52.3, 29.8, 14, 300 }, + [224] = { 37.8, 29.6, 14, 300 }, + [225] = { 46.2, 29.3, 14, 300 }, + [226] = { 43.6, 28.8, 14, 300 }, + [227] = { 55.4, 28, 14, 300 }, + [228] = { 46.1, 26.9, 14, 300 }, + [229] = { 56.3, 26.3, 14, 300 }, + [230] = { 44.2, 21.4, 14, 300 }, + [231] = { 57.4, 21.3, 14, 300 }, + [232] = { 39, 20.1, 14, 300 }, + [233] = { 57, 17.4, 14, 300 }, + [234] = { 57, 17.3, 14, 300 }, + [235] = { 53.6, 16.8, 14, 300 }, + [236] = { 58.4, 16.5, 14, 300 }, + [237] = { 58.3, 16.3, 14, 300 }, + [238] = { 39.8, 14.8, 14, 300 }, + [239] = { 41.7, 14.6, 14, 300 }, + [240] = { 42.5, 14.3, 14, 300 }, + [241] = { 49.3, 12.8, 14, 300 }, + [242] = { 51.2, 11.5, 14, 300 }, + [243] = { 52.7, 10.8, 14, 300 }, + [244] = { 53.9, 10.8, 14, 300 }, + [245] = { 39.8, 62.5, 17, 300 }, + [246] = { 38.8, 60.1, 17, 300 }, + [247] = { 38.5, 57.1, 17, 300 }, + [248] = { 37.4, 56.3, 17, 300 }, + [249] = { 35.7, 52.2, 17, 300 }, + [250] = { 76.8, 44.4, 17, 300 }, + [251] = { 34.5, 43.2, 17, 300 }, + [252] = { 35.5, 43.1, 17, 300 }, + [253] = { 80.2, 42.3, 17, 300 }, + [254] = { 35.6, 41.1, 17, 300 }, + [255] = { 34.3, 37.7, 17, 300 }, + [256] = { 35.7, 37.3, 17, 300 }, + [257] = { 33.2, 35.5, 17, 300 }, + [258] = { 30.5, 32.1, 17, 300 }, + [259] = { 31.7, 31.5, 17, 300 }, + [260] = { 40.5, 17.1, 17, 300 }, + [261] = { 39.6, 14.7, 17, 300 }, + [262] = { 65, 12.6, 17, 300 }, + [263] = { 24.6, 61.5, 28, 300 }, + [264] = { 19.3, 59.2, 28, 300 }, + [265] = { 18.3, 53.3, 28, 300 }, + [266] = { 27.1, 52.7, 28, 300 }, + [267] = { 23.5, 48.9, 28, 300 }, + [268] = { 33.4, 26.2, 28, 300 }, + [269] = { 30.6, 80.2, 38, 300 }, + [270] = { 18.8, 75.8, 38, 300 }, + [271] = { 30, 75.8, 38, 300 }, + [272] = { 39.9, 73.9, 38, 300 }, + [273] = { 30, 71.6, 38, 300 }, + [274] = { 35.2, 70.9, 38, 300 }, + [275] = { 32.4, 68.9, 38, 300 }, + [276] = { 26.5, 57.9, 38, 300 }, + [277] = { 33.3, 55.7, 38, 300 }, + [278] = { 35.8, 52, 38, 300 }, + [279] = { 28.4, 43.9, 38, 300 }, + [280] = { 30.9, 43.1, 38, 300 }, + [281] = { 27.8, 40.3, 38, 300 }, + [282] = { 34.3, 40.2, 38, 300 }, + [283] = { 36.8, 36.5, 38, 300 }, + [284] = { 29.5, 36.4, 38, 300 }, + [285] = { 31.9, 35.5, 38, 300 }, + [286] = { 39, 34.7, 38, 300 }, + [287] = { 27.4, 34.4, 38, 300 }, + [288] = { 34.5, 33.7, 38, 300 }, + [289] = { 25.6, 32.9, 38, 300 }, + [290] = { 31.7, 31.6, 38, 300 }, + [291] = { 37, 30.4, 38, 300 }, + [292] = { 28.1, 30.2, 38, 300 }, + [293] = { 23.2, 29.3, 38, 300 }, + [294] = { 25.1, 28, 38, 300 }, + [295] = { 30.1, 27.8, 38, 300 }, + [296] = { 39, 26, 38, 300 }, + [297] = { 24.9, 23.8, 38, 300 }, + [298] = { 29, 23.3, 38, 300 }, + [299] = { 40.3, 21.6, 38, 300 }, + [300] = { 27.2, 19, 38, 300 }, + [301] = { 30.1, 17.7, 38, 300 }, + [302] = { 21.8, 16.6, 38, 300 }, + [303] = { 39.3, 14.2, 38, 300 }, + [304] = { 36.2, 13.3, 38, 300 }, + [305] = { 30.6, 11.2, 38, 300 }, + [306] = { 41.6, 80.9, 40, 300 }, + [307] = { 53.2, 79.5, 40, 300 }, + [308] = { 44.4, 79.1, 40, 300 }, + [309] = { 37, 78.9, 40, 300 }, + [310] = { 33.4, 77.8, 40, 300 }, + [311] = { 48.2, 77.2, 40, 300 }, + [312] = { 60.6, 75.8, 40, 300 }, + [313] = { 57.7, 72.5, 40, 300 }, + [314] = { 56.3, 70.3, 40, 300 }, + [315] = { 30, 68.4, 40, 300 }, + [316] = { 33.6, 63.5, 40, 300 }, + [317] = { 29.3, 61.4, 40, 300 }, + [318] = { 32.3, 47.8, 40, 300 }, + [319] = { 50.6, 40, 40, 300 }, + [320] = { 47.8, 38.9, 40, 300 }, + [321] = { 35.2, 38.8, 40, 300 }, + [322] = { 43, 37.6, 40, 300 }, + [323] = { 56.1, 35.3, 40, 300 }, + [324] = { 36.8, 32.8, 40, 300 }, + [325] = { 39.4, 32.5, 40, 300 }, + [326] = { 57.6, 31.2, 40, 300 }, + [327] = { 60.3, 27.6, 40, 300 }, + [328] = { 40.9, 26.8, 40, 300 }, + [329] = { 45.9, 25.6, 40, 300 }, + [330] = { 59, 24.8, 40, 300 }, + [331] = { 42.4, 20.8, 40, 300 }, + [332] = { 61.1, 20.1, 40, 300 }, + [333] = { 49.2, 17.8, 40, 300 }, + [334] = { 41.3, 17.3, 40, 300 }, + [335] = { 59.1, 15.3, 40, 300 }, + [336] = { 51.8, 14.4, 40, 300 }, + [337] = { 56.4, 14.1, 40, 300 }, + [338] = { 45.3, 13.5, 40, 300 }, + [339] = { 59.6, 12.5, 40, 300 }, + [340] = { 58.4, 8.5, 40, 300 }, + [341] = { 50.9, 77.4, 85, 300 }, + [342] = { 50.7, 77.3, 85, 300 }, + [343] = { 81.3, 74.1, 85, 300 }, + [344] = { 76.3, 71.9, 85, 300 }, + [345] = { 51.5, 70.9, 85, 300 }, + [346] = { 43.5, 69.8, 85, 300 }, + [347] = { 48.6, 68.7, 85, 300 }, + [348] = { 46, 68.6, 85, 300 }, + [349] = { 41.8, 67.3, 85, 300 }, + [350] = { 45.2, 66.7, 85, 300 }, + [351] = { 75.3, 66.4, 85, 300 }, + [352] = { 83.7, 65.8, 85, 300 }, + [353] = { 46.4, 65.7, 85, 300 }, + [354] = { 51.5, 65.7, 85, 300 }, + [355] = { 48.7, 64.8, 85, 300 }, + [356] = { 45.2, 63.8, 85, 300 }, + [357] = { 41.3, 63.7, 85, 300 }, + [358] = { 80.3, 62.1, 85, 300 }, + [359] = { 50.2, 61.6, 85, 300 }, + [360] = { 53.2, 61.5, 85, 300 }, + [361] = { 48.2, 61.1, 85, 300 }, + [362] = { 42.9, 61.1, 85, 300 }, + [363] = { 70.9, 60.4, 85, 300 }, + [364] = { 67, 59, 85, 300 }, + [365] = { 46.1, 58.9, 85, 300 }, + [366] = { 59.9, 58.8, 85, 300 }, + [367] = { 48.5, 58.8, 85, 300 }, + [368] = { 77.1, 58.6, 85, 300 }, + [369] = { 54.7, 58.5, 85, 300 }, + [370] = { 51.2, 58, 85, 300 }, + [371] = { 40.1, 56.9, 85, 300 }, + [372] = { 48.1, 56, 85, 300 }, + [373] = { 54.4, 55.3, 85, 300 }, + [374] = { 50.3, 55.1, 85, 300 }, + [375] = { 75.1, 54.5, 85, 300 }, + [376] = { 49.7, 54.3, 85, 300 }, + [377] = { 83.3, 54.2, 85, 300 }, + [378] = { 41.7, 53.4, 85, 300 }, + [379] = { 51.9, 53, 85, 300 }, + [380] = { 47.5, 52.5, 85, 300 }, + [381] = { 53.3, 52.5, 85, 300 }, + [382] = { 64.5, 52.4, 85, 300 }, + [383] = { 33.5, 52.2, 85, 300 }, + [384] = { 45.3, 52.2, 85, 300 }, + [385] = { 39.4, 51.4, 85, 300 }, + [386] = { 42.6, 51.2, 85, 300 }, + [387] = { 29.9, 50.5, 85, 300 }, + [388] = { 56.2, 50.5, 85, 300 }, + [389] = { 53.7, 49.9, 85, 300 }, + [390] = { 75, 49.7, 85, 300 }, + [391] = { 66.4, 49.1, 85, 300 }, + [392] = { 40.8, 49.1, 85, 300 }, + [393] = { 48.9, 48.9, 85, 300 }, + [394] = { 89.4, 48.9, 85, 300 }, + [395] = { 57.4, 48.6, 85, 300 }, + [396] = { 52.2, 48.1, 85, 300 }, + [397] = { 60.2, 47.2, 85, 300 }, + [398] = { 56.3, 47.2, 85, 300 }, + [399] = { 82.7, 47.1, 85, 300 }, + [400] = { 41.6, 46.5, 85, 300 }, + [401] = { 36.2, 46.3, 85, 300 }, + [402] = { 54, 46, 85, 300 }, + [403] = { 33.7, 45.7, 85, 300 }, + [404] = { 44.7, 45.5, 85, 300 }, + [405] = { 38.3, 45.4, 85, 300 }, + [406] = { 61, 44.2, 85, 300 }, + [407] = { 56.6, 44, 85, 300 }, + [408] = { 46, 43.7, 85, 300 }, + [409] = { 53.3, 43.3, 85, 300 }, + [410] = { 48.4, 43.2, 85, 300 }, + [411] = { 68.9, 43, 85, 300 }, + [412] = { 43.1, 42.3, 85, 300 }, + [413] = { 40.8, 42.1, 85, 300 }, + [414] = { 73.5, 42, 85, 300 }, + [415] = { 58.3, 41.7, 85, 300 }, + [416] = { 63.6, 40.8, 85, 300 }, + [417] = { 89.7, 40.6, 85, 300 }, + [418] = { 79.4, 40.1, 85, 300 }, + [419] = { 60, 38.8, 85, 300 }, + [420] = { 55.9, 38.8, 85, 300 }, + [421] = { 58, 38.6, 85, 300 }, + [422] = { 38.9, 38.1, 85, 300 }, + [423] = { 64.8, 38.1, 85, 300 }, + [424] = { 73.2, 37.2, 85, 300 }, + [425] = { 61.9, 37.2, 85, 300 }, + [426] = { 48.2, 37.1, 85, 300 }, + [427] = { 71.5, 36.8, 85, 300 }, + [428] = { 44.3, 36.5, 85, 300 }, + [429] = { 49.9, 35.5, 85, 300 }, + [430] = { 63.5, 35.5, 85, 300 }, + [431] = { 58, 33.9, 85, 300 }, + [432] = { 66.6, 33, 85, 300 }, + [433] = { 61.4, 32.8, 85, 300 }, + [434] = { 75.4, 32.7, 85, 300 }, + [435] = { 69.9, 31.9, 85, 300 }, + [436] = { 49.4, 30.2, 85, 300 }, + [437] = { 58.6, 30.2, 85, 300 }, + [438] = { 43.5, 29.9, 85, 300 }, + [439] = { 52.8, 29.7, 85, 300 }, + [440] = { 45.7, 28.1, 85, 300 }, + [441] = { 52.2, 26, 85, 300 }, + [442] = { 62.6, 81.6, 130, 300 }, + [443] = { 46.7, 75.6, 130, 300 }, + [444] = { 60.2, 74.1, 130, 300 }, + [445] = { 62.7, 69.1, 130, 300 }, + [446] = { 55.4, 40.1, 130, 300 }, + [447] = { 73.4, 35.3, 130, 300 }, + [448] = { 48.6, 31.5, 130, 300 }, + [449] = { 41.9, 31.2, 130, 300 }, + [450] = { 44.4, 31.1, 130, 300 }, + [451] = { 42.2, 29.5, 130, 300 }, + [452] = { 41.4, 29.3, 130, 300 }, + [453] = { 48.9, 27.5, 130, 300 }, + [454] = { 50.3, 27.5, 130, 300 }, + [455] = { 44.8, 27.4, 130, 300 }, + [456] = { 77.9, 26.9, 130, 300 }, + [457] = { 54.8, 25.6, 130, 300 }, + [458] = { 40.8, 25.1, 130, 300 }, + [459] = { 39.7, 24.5, 130, 300 }, + [460] = { 44.2, 24.1, 130, 300 }, + [461] = { 43, 23.5, 130, 300 }, + [462] = { 40.5, 22.9, 130, 300 }, + [463] = { 53.3, 22.7, 130, 300 }, + [464] = { 55.2, 22.5, 130, 300 }, + [465] = { 48.2, 21.8, 130, 300 }, + [466] = { 47.3, 21.7, 130, 300 }, + [467] = { 51.1, 21.2, 130, 300 }, + [468] = { 38.9, 21, 130, 300 }, + [469] = { 50.9, 20, 130, 300 }, + [470] = { 36.2, 19.9, 130, 300 }, + [471] = { 54.8, 19.6, 130, 300 }, + [472] = { 43, 19.4, 130, 300 }, + [473] = { 48.6, 19.3, 130, 300 }, + [474] = { 41.7, 19.2, 130, 300 }, + [475] = { 48.2, 19.2, 130, 300 }, + [476] = { 52.1, 18.8, 130, 300 }, + [477] = { 47.7, 18.8, 130, 300 }, + [478] = { 45.6, 18.5, 130, 300 }, + [479] = { 44.2, 18.5, 130, 300 }, + [480] = { 39.3, 17.6, 130, 300 }, + [481] = { 51.9, 17.4, 130, 300 }, + [482] = { 52.1, 16.5, 130, 300 }, + [483] = { 39.7, 16.5, 130, 300 }, + [484] = { 44.7, 16.3, 130, 300 }, + [485] = { 54.7, 14.6, 130, 300 }, + [486] = { 52.2, 11.9, 130, 300 }, + [487] = { 62.1, 11.5, 130, 300 }, + [488] = { 57.1, 10.9, 130, 300 }, + [489] = { 58.2, 9.6, 130, 300 }, + [490] = { 61.3, 8.8, 130, 300 }, + [491] = { 57.4, 8.8, 130, 300 }, + [492] = { 59.2, 8.7, 130, 300 }, + [493] = { 66.6, 8.4, 130, 300 }, + [494] = { 62.5, 8.4, 130, 300 }, + [495] = { 69.2, 8.3, 130, 300 }, + [496] = { 56.3, 8.2, 130, 300 }, + [497] = { 64.6, 5.8, 130, 300 }, + [498] = { 64.4, 5.7, 130, 300 }, + [499] = { 39.1, 80.4, 141, 300 }, + [500] = { 45.1, 79.3, 141, 300 }, + [501] = { 42.5, 78.7, 141, 300 }, + [502] = { 46.3, 78.5, 141, 300 }, + [503] = { 44, 78.1, 141, 300 }, + [504] = { 53.5, 77.3, 141, 300 }, + [505] = { 41.1, 77.3, 141, 300 }, + [506] = { 57.8, 77.2, 141, 300 }, + [507] = { 56, 77, 141, 300 }, + [508] = { 46.4, 76, 141, 300 }, + [509] = { 58.6, 75.6, 141, 300 }, + [510] = { 46.3, 74.3, 141, 300 }, + [511] = { 56.4, 74.1, 141, 300 }, + [512] = { 53.1, 74, 141, 300 }, + [513] = { 62.6, 73.7, 141, 300 }, + [514] = { 49.4, 73, 141, 300 }, + [515] = { 54.6, 72.7, 141, 300 }, + [516] = { 55.3, 72.6, 141, 300 }, + [517] = { 61.7, 72.3, 141, 300 }, + [518] = { 43.4, 71.1, 141, 300 }, + [519] = { 64.1, 70.9, 141, 300 }, + [520] = { 64.6, 70, 141, 300 }, + [521] = { 42.8, 69.4, 141, 300 }, + [522] = { 52, 69.2, 141, 300 }, + [523] = { 62.8, 67.8, 141, 300 }, + [524] = { 58.3, 66, 141, 300 }, + [525] = { 52.7, 65, 141, 300 }, + [526] = { 64.1, 65, 141, 300 }, + [527] = { 38.6, 64.9, 141, 300 }, + [528] = { 62.6, 64.3, 141, 300 }, + [529] = { 62.4, 63.8, 141, 300 }, + [530] = { 40.8, 63.4, 141, 300 }, + [531] = { 59.1, 62.8, 141, 300 }, + [532] = { 61.1, 62.3, 141, 300 }, + [533] = { 39.6, 61.9, 141, 300 }, + [534] = { 49.2, 61.6, 141, 300 }, + [535] = { 68.8, 61.6, 141, 300 }, + [536] = { 65.5, 61.3, 141, 300 }, + [537] = { 52, 60.5, 141, 300 }, + [538] = { 53.3, 60.2, 141, 300 }, + [539] = { 64, 59.9, 141, 300 }, + [540] = { 38.5, 59.5, 141, 300 }, + [541] = { 49, 58.3, 141, 300 }, + [542] = { 69.7, 58.1, 141, 300 }, + [543] = { 67.6, 58.1, 141, 300 }, + [544] = { 40.7, 57.5, 141, 300 }, + [545] = { 69.5, 55, 141, 300 }, + [546] = { 47.4, 54.7, 141, 300 }, + [547] = { 56.5, 54.7, 141, 300 }, + [548] = { 66, 54.4, 141, 300 }, + [549] = { 40.8, 54.1, 141, 300 }, + [550] = { 44.7, 54, 141, 300 }, + [551] = { 67.2, 53.8, 141, 300 }, + [552] = { 59.9, 53.7, 141, 300 }, + [553] = { 69.9, 53.5, 141, 300 }, + [554] = { 53, 53.2, 141, 300 }, + [555] = { 66.1, 52.7, 141, 300 }, + [556] = { 50.3, 52.7, 141, 300 }, + [557] = { 51.4, 52.4, 141, 300 }, + [558] = { 68.8, 51.2, 141, 300 }, + [559] = { 66.2, 50.9, 141, 300 }, + [560] = { 46.7, 47.1, 141, 300 }, + [561] = { 40.8, 46.5, 141, 300 }, + [562] = { 47, 46.1, 141, 300 }, + [563] = { 44.4, 45.5, 141, 300 }, + [564] = { 37.6, 45.5, 141, 300 }, + [565] = { 37.7, 42.4, 141, 300 }, + [566] = { 46.3, 42.2, 141, 300 }, + [567] = { 44.8, 42.2, 141, 300 }, + [568] = { 36.4, 40.7, 141, 300 }, + [569] = { 46.6, 39.7, 141, 300 }, + [570] = { 43.5, 39, 141, 300 }, + [571] = { 36.6, 37.3, 141, 300 }, + [572] = { 40.7, 36.8, 141, 300 }, + [573] = { 39.1, 36.2, 141, 300 }, + [574] = { 42, 35.2, 141, 300 }, + [575] = { 45.2, 32.8, 141, 300 }, + [576] = { 39.8, 32.3, 141, 300 }, + [577] = { 36.4, 32, 141, 300 }, + [578] = { 35.3, 31.7, 141, 300 }, + [579] = { 40.5, 30, 141, 300 }, + [580] = { 46.4, 29.8, 141, 300 }, + [581] = { 35.5, 28.5, 141, 300 }, + [582] = { 45.4, 27.7, 141, 300 }, + [583] = { 40.4, 27.1, 141, 300 }, + [584] = { 38, 25.8, 141, 300 }, + [585] = { 42.4, 25.1, 141, 300 }, + [586] = { 37.8, 88.8, 148, 300 }, + [587] = { 42.2, 88.1, 148, 300 }, + [588] = { 38.3, 84.7, 148, 300 }, + [589] = { 41.9, 84.5, 148, 300 }, + [590] = { 39.8, 82.4, 148, 300 }, + [591] = { 40.5, 77.2, 148, 300 }, + [592] = { 40.6, 71.8, 148, 300 }, + [593] = { 41.8, 65.5, 148, 300 }, + [594] = { 41.2, 59.3, 148, 300 }, + [595] = { 43.8, 57.2, 148, 300 }, + [596] = { 42.3, 54.5, 148, 300 }, + [597] = { 39.9, 52, 148, 300 }, + [598] = { 44.3, 50.3, 148, 300 }, + [599] = { 39.3, 49.5, 148, 300 }, + [600] = { 44.1, 45.3, 148, 300 }, + [601] = { 46.6, 42.7, 148, 300 }, + [602] = { 44, 41.2, 148, 300 }, + [603] = { 39.4, 38.7, 148, 300 }, + [604] = { 49.7, 35.9, 148, 300 }, + [605] = { 41, 34.5, 148, 300 }, + [606] = { 44, 33, 148, 300 }, + [607] = { 52.2, 32.8, 148, 300 }, + [608] = { 51.6, 30.8, 148, 300 }, + [609] = { 44.4, 30.2, 148, 300 }, + [610] = { 54.1, 29.9, 148, 300 }, + [611] = { 48.3, 27.9, 148, 300 }, + [612] = { 43.6, 27.4, 148, 300 }, + [613] = { 54.7, 26.3, 148, 300 }, + [614] = { 45.9, 25.7, 148, 300 }, + [615] = { 59, 25.6, 148, 300 }, + [616] = { 56.9, 25.1, 148, 300 }, + [617] = { 53.8, 23.7, 148, 300 }, + [618] = { 54.9, 22.5, 148, 300 }, + [619] = { 43.1, 22.4, 148, 300 }, + [620] = { 34.2, 80.9, 215, 300 }, + [621] = { 37.7, 77.8, 215, 300 }, + [622] = { 35.4, 77.1, 215, 300 }, + [623] = { 35.1, 74.2, 215, 300 }, + [624] = { 36.5, 73.4, 215, 300 }, + [625] = { 38.9, 71.6, 215, 300 }, + [626] = { 64, 71.2, 215, 300 }, + [627] = { 44.9, 70.3, 215, 300 }, + [628] = { 47.8, 68.5, 215, 300 }, + [629] = { 37.3, 68.4, 215, 300 }, + [630] = { 67.4, 68.2, 215, 300 }, + [631] = { 44.2, 67.3, 215, 300 }, + [632] = { 60.4, 67.2, 215, 300 }, + [633] = { 50.1, 66.6, 215, 300 }, + [634] = { 57.8, 64.5, 215, 300 }, + [635] = { 41.2, 64.3, 215, 300 }, + [636] = { 38.7, 63.9, 215, 300 }, + [637] = { 65.4, 63.4, 215, 300 }, + [638] = { 34.5, 62.4, 215, 300 }, + [639] = { 62, 61.9, 215, 300 }, + [640] = { 38.6, 59.6, 215, 300 }, + [641] = { 58.2, 58.9, 215, 300 }, + [642] = { 53.5, 58.4, 215, 300 }, + [643] = { 35.3, 57.9, 215, 300 }, + [644] = { 64.7, 57.6, 215, 300 }, + [645] = { 42, 56.1, 215, 300 }, + [646] = { 62.5, 56, 215, 300 }, + [647] = { 34.2, 55.7, 215, 300 }, + [648] = { 55.1, 54.8, 215, 300 }, + [649] = { 59.2, 54.8, 215, 300 }, + [650] = { 37.9, 52.9, 215, 300 }, + [651] = { 45.5, 51.9, 215, 300 }, + [652] = { 56.1, 50.5, 215, 300 }, + [653] = { 41.1, 49.3, 215, 300 }, + [654] = { 44.6, 49, 215, 300 }, + [655] = { 37.6, 48.5, 215, 300 }, + [656] = { 59.3, 48, 215, 300 }, + [657] = { 48.1, 47.2, 215, 300 }, + [658] = { 52.1, 47.1, 215, 300 }, + [659] = { 47, 45.3, 215, 300 }, + [660] = { 57.8, 44.4, 215, 300 }, + [661] = { 35.5, 43.5, 215, 300 }, + [662] = { 38.6, 42.8, 215, 300 }, + [663] = { 53.6, 42.3, 215, 300 }, + [664] = { 31.2, 42.2, 215, 300 }, + [665] = { 55.6, 41.7, 215, 300 }, + [666] = { 49.2, 40.8, 215, 300 }, + [667] = { 34.6, 40.6, 215, 300 }, + [668] = { 46, 38.4, 215, 300 }, + [669] = { 51.1, 37.9, 215, 300 }, + [670] = { 34, 37.5, 215, 300 }, + [671] = { 56.9, 36.5, 215, 300 }, + [672] = { 37.6, 36.5, 215, 300 }, + [673] = { 43.3, 36, 215, 300 }, + [674] = { 47.1, 33.9, 215, 300 }, + [675] = { 33.8, 33.6, 215, 300 }, + [676] = { 44.6, 32.8, 215, 300 }, + [677] = { 56.8, 30.2, 215, 300 }, + [678] = { 58.8, 30, 215, 300 }, + [679] = { 47.6, 29.4, 215, 300 }, + [680] = { 51, 28.3, 215, 300 }, + [681] = { 59, 26.1, 215, 300 }, + [682] = { 47.9, 25.8, 215, 300 }, + [683] = { 30.9, 25.4, 215, 300 }, + [684] = { 34.1, 24.3, 215, 300 }, + [685] = { 29.1, 23.6, 215, 300 }, + [686] = { 53.6, 19.7, 215, 300 }, + [687] = { 39.6, 19.5, 215, 300 }, + [688] = { 56.4, 19.3, 215, 300 }, + [689] = { 59.1, 18.6, 215, 300 }, + [690] = { 41.8, 18.5, 215, 300 }, + [691] = { 50.6, 16.7, 215, 300 }, + [692] = { 46.7, 16.6, 215, 300 }, + [693] = { 38.5, 16.3, 215, 300 }, + [694] = { 36.5, 16.1, 215, 300 }, + [695] = { 54.2, 14.9, 215, 300 }, + [696] = { 42.2, 11.9, 215, 300 }, + [697] = { 37.4, 11.3, 215, 300 }, + [698] = { 36.6, 9.2, 215, 300 }, + [699] = { 49, 8.3, 215, 300 }, + [700] = { 41.3, 7.9, 215, 300 }, + [701] = { 51.4, 7, 215, 300 }, + [702] = { 7.7, 47.8, 267, 300 }, + [703] = { 7.8, 31.3, 267, 300 }, + [704] = { 84.2, 72.4, 405, 300 }, + [705] = { 88.2, 70.6, 405, 300 }, + [706] = { 87.4, 67.1, 405, 300 }, + [707] = { 87.2, 62.5, 405, 300 }, + [708] = { 84, 53.2, 405, 300 }, + [709] = { 87.6, 51.9, 405, 300 }, + [710] = { 81.9, 51.1, 405, 300 }, + [711] = { 90.4, 34.7, 405, 300 }, + [712] = { 17.5, 27.5, 1497, 300 }, + }, + }, + [1618] = { + ["coords"] = { + [1] = { 43.5, 65.6, 1, 300 }, + [2] = { 46.1, 63.7, 1, 300 }, + [3] = { 48, 62.6, 1, 300 }, + [4] = { 49.6, 61.5, 1, 300 }, + [5] = { 75.9, 61.2, 1, 300 }, + [6] = { 39, 61.1, 1, 300 }, + [7] = { 36.8, 60.9, 1, 300 }, + [8] = { 40.1, 60.7, 1, 300 }, + [9] = { 34.6, 60.3, 1, 300 }, + [10] = { 59, 60.2, 1, 300 }, + [11] = { 35.4, 59.8, 1, 300 }, + [12] = { 50.6, 59.5, 1, 300 }, + [13] = { 46.4, 59.4, 1, 300 }, + [14] = { 78.4, 59, 1, 300 }, + [15] = { 62.3, 58.7, 1, 300 }, + [16] = { 48.8, 58.6, 1, 300 }, + [17] = { 44.4, 58.2, 1, 300 }, + [18] = { 34.3, 57.8, 1, 300 }, + [19] = { 54.3, 57.5, 1, 300 }, + [20] = { 59.6, 57.4, 1, 300 }, + [21] = { 79.7, 57, 1, 300 }, + [22] = { 42.2, 56.9, 1, 300 }, + [23] = { 75.5, 56.7, 1, 300 }, + [24] = { 61.9, 56.1, 1, 300 }, + [25] = { 63, 56, 1, 300 }, + [26] = { 40.8, 55.8, 1, 300 }, + [27] = { 42.3, 55.6, 1, 300 }, + [28] = { 57.3, 55.6, 1, 300 }, + [29] = { 55.1, 55.6, 1, 300 }, + [30] = { 48.1, 55.5, 1, 300 }, + [31] = { 43.5, 55.5, 1, 300 }, + [32] = { 74.2, 55.2, 1, 300 }, + [33] = { 72.9, 54.6, 1, 300 }, + [34] = { 27.6, 54.5, 1, 300 }, + [35] = { 66.2, 53.8, 1, 300 }, + [36] = { 50, 53.6, 1, 300 }, + [37] = { 28.7, 53.5, 1, 300 }, + [38] = { 56.7, 52.6, 1, 300 }, + [39] = { 70.6, 52.4, 1, 300 }, + [40] = { 29.8, 51.7, 1, 300 }, + [41] = { 50.5, 51.3, 1, 300 }, + [42] = { 73.8, 51.2, 1, 300 }, + [43] = { 66.3, 51.1, 1, 300 }, + [44] = { 58.3, 51, 1, 300 }, + [45] = { 65.5, 50.3, 1, 300 }, + [46] = { 45.4, 50, 1, 300 }, + [47] = { 48.4, 50, 1, 300 }, + [48] = { 29, 48.6, 1, 300 }, + [49] = { 27.7, 48.4, 1, 300 }, + [50] = { 56.2, 48.3, 1, 300 }, + [51] = { 49.6, 47.8, 1, 300 }, + [52] = { 55.1, 47.4, 1, 300 }, + [53] = { 43.3, 47, 1, 300 }, + [54] = { 44.7, 46.8, 1, 300 }, + [55] = { 26.1, 46.6, 1, 300 }, + [56] = { 50.2, 45.7, 1, 300 }, + [57] = { 51.6, 45.5, 1, 300 }, + [58] = { 29.1, 45.2, 1, 300 }, + [59] = { 29.2, 43.4, 1, 300 }, + [60] = { 28, 42.2, 1, 300 }, + [61] = { 25.9, 42.2, 1, 300 }, + [62] = { 45.4, 41.8, 1, 300 }, + [63] = { 30.8, 39.5, 1, 300 }, + [64] = { 29.3, 39.1, 1, 300 }, + [65] = { 31.9, 38.3, 1, 300 }, + [66] = { 38, 37.3, 1, 300 }, + [67] = { 27.6, 37, 1, 300 }, + [68] = { 33.9, 35.8, 1, 300 }, + [69] = { 37.3, 35.5, 1, 300 }, + [70] = { 35.1, 35.4, 1, 300 }, + [71] = { 33.5, 32.7, 1, 300 }, + [72] = { 40.4, 90.5, 12, 300 }, + [73] = { 25.7, 88.9, 12, 300 }, + [74] = { 35.6, 87.6, 12, 300 }, + [75] = { 38.8, 87.5, 12, 300 }, + [76] = { 46.2, 86.1, 12, 300 }, + [77] = { 84, 85.1, 12, 300 }, + [78] = { 25.9, 84.6, 12, 300 }, + [79] = { 53.3, 84, 12, 300 }, + [80] = { 73.9, 83.8, 12, 300 }, + [81] = { 49, 83.2, 12, 300 }, + [82] = { 71.7, 82.7, 12, 300 }, + [83] = { 26.2, 81.5, 12, 300 }, + [84] = { 68.5, 81.4, 12, 300 }, + [85] = { 88.4, 81.2, 12, 300 }, + [86] = { 47, 81, 12, 300 }, + [87] = { 60.5, 81, 12, 300 }, + [88] = { 55.4, 80.5, 12, 300 }, + [89] = { 78.8, 80.3, 12, 300 }, + [90] = { 65.8, 78.2, 12, 300 }, + [91] = { 62.9, 77.7, 12, 300 }, + [92] = { 88.5, 77.1, 12, 300 }, + [93] = { 39.9, 76.5, 12, 300 }, + [94] = { 77, 76.4, 12, 300 }, + [95] = { 22.7, 75.6, 12, 300 }, + [96] = { 60.1, 75.3, 12, 300 }, + [97] = { 46.8, 74.6, 12, 300 }, + [98] = { 27.9, 73.9, 12, 300 }, + [99] = { 87.1, 71, 12, 300 }, + [100] = { 43.8, 71, 12, 300 }, + [101] = { 40.9, 69.6, 12, 300 }, + [102] = { 35.6, 69.4, 12, 300 }, + [103] = { 64.1, 65.3, 12, 300 }, + [104] = { 86, 65.3, 12, 300 }, + [105] = { 63.9, 63.8, 12, 300 }, + [106] = { 45.2, 63.5, 12, 300 }, + [107] = { 66.5, 63.2, 12, 300 }, + [108] = { 62.1, 62.6, 12, 300 }, + [109] = { 70.6, 61.6, 12, 300 }, + [110] = { 85.9, 61, 12, 300 }, + [111] = { 42.8, 61, 12, 300 }, + [112] = { 37.1, 60.9, 12, 300 }, + [113] = { 49.5, 59.6, 12, 300 }, + [114] = { 78.8, 58.3, 12, 300 }, + [115] = { 35.2, 58.1, 12, 300 }, + [116] = { 62.5, 58.1, 12, 300 }, + [117] = { 44.7, 55.2, 12, 300 }, + [118] = { 74.6, 53.8, 12, 300 }, + [119] = { 40.9, 53.7, 12, 300 }, + [120] = { 60.1, 89.3, 14, 300 }, + [121] = { 67, 85.1, 14, 300 }, + [122] = { 60, 83.2, 14, 300 }, + [123] = { 52.5, 79.9, 14, 300 }, + [124] = { 54, 78.1, 14, 300 }, + [125] = { 64.2, 74.2, 14, 300 }, + [126] = { 51.2, 71.9, 14, 300 }, + [127] = { 53.9, 71.9, 14, 300 }, + [128] = { 69, 71.8, 14, 300 }, + [129] = { 57.8, 71.6, 14, 300 }, + [130] = { 54.5, 67.8, 14, 300 }, + [131] = { 54.1, 64.2, 14, 300 }, + [132] = { 52.2, 63.4, 14, 300 }, + [133] = { 52.7, 60.3, 14, 300 }, + [134] = { 55.8, 58.4, 14, 300 }, + [135] = { 52.4, 58, 14, 300 }, + [136] = { 36.4, 56.2, 14, 300 }, + [137] = { 54.6, 55.5, 14, 300 }, + [138] = { 52.1, 55.4, 14, 300 }, + [139] = { 56.2, 54.9, 14, 300 }, + [140] = { 36.4, 53.6, 14, 300 }, + [141] = { 58.6, 52.9, 14, 300 }, + [142] = { 38.9, 51.8, 14, 300 }, + [143] = { 55, 51.8, 14, 300 }, + [144] = { 58.9, 50.7, 14, 300 }, + [145] = { 37, 50.1, 14, 300 }, + [146] = { 41.4, 49.8, 14, 300 }, + [147] = { 43.2, 49, 14, 300 }, + [148] = { 54.7, 49, 14, 300 }, + [149] = { 38.7, 48.3, 14, 300 }, + [150] = { 57.7, 48.1, 14, 300 }, + [151] = { 51.5, 48, 14, 300 }, + [152] = { 46.4, 47.8, 14, 300 }, + [153] = { 36.4, 47.3, 14, 300 }, + [154] = { 42.1, 46, 14, 300 }, + [155] = { 59.1, 45.9, 14, 300 }, + [156] = { 39.5, 45.3, 14, 300 }, + [157] = { 44.2, 45.3, 14, 300 }, + [158] = { 58.3, 43.3, 14, 300 }, + [159] = { 38.2, 39.7, 14, 300 }, + [160] = { 42.8, 39.6, 14, 300 }, + [161] = { 49, 38.4, 14, 300 }, + [162] = { 55.4, 38.3, 14, 300 }, + [163] = { 36.4, 37.7, 14, 300 }, + [164] = { 45.6, 37.6, 14, 300 }, + [165] = { 40.1, 37.6, 14, 300 }, + [166] = { 42.1, 35.9, 14, 300 }, + [167] = { 45.8, 35.6, 14, 300 }, + [168] = { 50.7, 34.9, 14, 300 }, + [169] = { 38.8, 34.6, 14, 300 }, + [170] = { 55, 34.5, 14, 300 }, + [171] = { 44.6, 33.7, 14, 300 }, + [172] = { 36.8, 31.8, 14, 300 }, + [173] = { 42.5, 31.1, 14, 300 }, + [174] = { 54.6, 30.3, 14, 300 }, + [175] = { 44.9, 29.4, 14, 300 }, + [176] = { 35.7, 28.4, 14, 300 }, + [177] = { 57.6, 28.3, 14, 300 }, + [178] = { 37.1, 26.6, 14, 300 }, + [179] = { 50.6, 26.5, 14, 300 }, + [180] = { 57.1, 24.3, 14, 300 }, + [181] = { 37.1, 23.5, 14, 300 }, + [182] = { 45.4, 22.3, 14, 300 }, + [183] = { 56.9, 21.5, 14, 300 }, + [184] = { 42.5, 20.7, 14, 300 }, + [185] = { 40.6, 19.4, 14, 300 }, + [186] = { 48.6, 18.6, 14, 300 }, + [187] = { 44.4, 18.6, 14, 300 }, + [188] = { 56.1, 18.2, 14, 300 }, + [189] = { 38.7, 17.5, 14, 300 }, + [190] = { 42.4, 16.8, 14, 300 }, + [191] = { 50.6, 16.2, 14, 300 }, + [192] = { 54.8, 15.3, 14, 300 }, + [193] = { 57.2, 13.9, 14, 300 }, + [194] = { 53, 13, 14, 300 }, + [195] = { 39.5, 60.6, 17, 300 }, + [196] = { 39.2, 57.6, 17, 300 }, + [197] = { 76.6, 43.7, 17, 300 }, + [198] = { 80.2, 41.5, 17, 300 }, + [199] = { 34.9, 40.9, 17, 300 }, + [200] = { 76.5, 40.5, 17, 300 }, + [201] = { 35.6, 38.7, 17, 300 }, + [202] = { 33.7, 38.4, 17, 300 }, + [203] = { 33, 36.4, 17, 300 }, + [204] = { 32.3, 34.4, 17, 300 }, + [205] = { 32.2, 32.9, 17, 300 }, + [206] = { 64.2, 26.4, 17, 300 }, + [207] = { 64.3, 25.1, 17, 300 }, + [208] = { 64.2, 21.8, 17, 300 }, + [209] = { 64.2, 16.7, 17, 300 }, + [210] = { 63.9, 11.9, 17, 300 }, + [211] = { 64.6, 11, 17, 300 }, + [212] = { 64.6, 9.4, 17, 300 }, + [213] = { 65.4, 6.2, 17, 300 }, + [214] = { 24.9, 60.5, 28, 300 }, + [215] = { 19.8, 60.4, 28, 300 }, + [216] = { 21.5, 55.7, 28, 300 }, + [217] = { 16.7, 54.6, 28, 300 }, + [218] = { 24.6, 54.2, 28, 300 }, + [219] = { 22.5, 52.9, 28, 300 }, + [220] = { 22.7, 48.6, 28, 300 }, + [221] = { 20.8, 77.1, 38, 300 }, + [222] = { 58.4, 76.5, 38, 300 }, + [223] = { 33.4, 75, 38, 300 }, + [224] = { 51.6, 70.4, 38, 300 }, + [225] = { 49.1, 70.3, 38, 300 }, + [226] = { 46.8, 66.9, 38, 300 }, + [227] = { 61.9, 64.1, 38, 300 }, + [228] = { 43.8, 62.7, 38, 300 }, + [229] = { 61.1, 59.9, 38, 300 }, + [230] = { 63.6, 55, 38, 300 }, + [231] = { 42.6, 55, 38, 300 }, + [232] = { 40, 50.8, 38, 300 }, + [233] = { 67.9, 49.6, 38, 300 }, + [234] = { 64.6, 46.5, 38, 300 }, + [235] = { 29.2, 46.1, 38, 300 }, + [236] = { 67.9, 42.3, 38, 300 }, + [237] = { 37, 37.8, 38, 300 }, + [238] = { 28, 36.9, 38, 300 }, + [239] = { 36, 32.4, 38, 300 }, + [240] = { 26.8, 30.3, 38, 300 }, + [241] = { 60.7, 27.9, 38, 300 }, + [242] = { 39.6, 23.3, 38, 300 }, + [243] = { 25.4, 20.4, 38, 300 }, + [244] = { 24.5, 14.7, 38, 300 }, + [245] = { 28.7, 14.3, 38, 300 }, + [246] = { 64.4, 74.4, 40, 300 }, + [247] = { 36.8, 72.9, 40, 300 }, + [248] = { 68.3, 72.3, 40, 300 }, + [249] = { 53.2, 68.7, 40, 300 }, + [250] = { 57.4, 68.2, 40, 300 }, + [251] = { 51, 61.4, 40, 300 }, + [252] = { 55.5, 60.6, 40, 300 }, + [253] = { 64.3, 56.9, 40, 300 }, + [254] = { 45.2, 55.6, 40, 300 }, + [255] = { 62.4, 50.1, 40, 300 }, + [256] = { 45.3, 46, 40, 300 }, + [257] = { 39.6, 43, 40, 300 }, + [258] = { 59.6, 41.3, 40, 300 }, + [259] = { 30.9, 37.5, 40, 300 }, + [260] = { 35.6, 36.1, 40, 300 }, + [261] = { 59.2, 34.4, 40, 300 }, + [262] = { 43.3, 32.1, 40, 300 }, + [263] = { 35.3, 29.4, 40, 300 }, + [264] = { 46.3, 27.4, 40, 300 }, + [265] = { 56.8, 26.9, 40, 300 }, + [266] = { 53.7, 21, 40, 300 }, + [267] = { 51.3, 17, 40, 300 }, + [268] = { 45.9, 16.8, 40, 300 }, + [269] = { 81.6, 73.2, 85, 300 }, + [270] = { 76.8, 73.1, 85, 300 }, + [271] = { 52.8, 71.2, 85, 300 }, + [272] = { 50.8, 70, 85, 300 }, + [273] = { 78.3, 68.6, 85, 300 }, + [274] = { 73.8, 67.6, 85, 300 }, + [275] = { 81.3, 67.3, 85, 300 }, + [276] = { 79.3, 66, 85, 300 }, + [277] = { 50, 65.9, 85, 300 }, + [278] = { 72, 64.8, 85, 300 }, + [279] = { 69.5, 64.5, 85, 300 }, + [280] = { 50.9, 64.3, 85, 300 }, + [281] = { 49.4, 63.3, 85, 300 }, + [282] = { 55.3, 63.1, 85, 300 }, + [283] = { 79.5, 61.9, 85, 300 }, + [284] = { 45.3, 61.3, 85, 300 }, + [285] = { 57.6, 60.8, 85, 300 }, + [286] = { 51.8, 60.8, 85, 300 }, + [287] = { 53.7, 60.1, 85, 300 }, + [288] = { 73.7, 59.7, 85, 300 }, + [289] = { 69.2, 59.4, 85, 300 }, + [290] = { 42.3, 58.3, 85, 300 }, + [291] = { 57.1, 58.1, 85, 300 }, + [292] = { 43.8, 57.5, 85, 300 }, + [293] = { 60.6, 57.1, 85, 300 }, + [294] = { 65.5, 55.1, 85, 300 }, + [295] = { 46, 54.7, 85, 300 }, + [296] = { 69.2, 54.4, 85, 300 }, + [297] = { 51.5, 54.3, 85, 300 }, + [298] = { 57.4, 54.2, 85, 300 }, + [299] = { 39.5, 53.4, 85, 300 }, + [300] = { 48.4, 51.5, 85, 300 }, + [301] = { 46.1, 51.4, 85, 300 }, + [302] = { 51.6, 50.8, 85, 300 }, + [303] = { 64.9, 50.7, 85, 300 }, + [304] = { 66, 50.6, 85, 300 }, + [305] = { 32.7, 50.6, 85, 300 }, + [306] = { 85.3, 50.4, 85, 300 }, + [307] = { 71.8, 49.4, 85, 300 }, + [308] = { 45.4, 49, 85, 300 }, + [309] = { 38.4, 48.9, 85, 300 }, + [310] = { 50.1, 48.7, 85, 300 }, + [311] = { 47.2, 48.2, 85, 300 }, + [312] = { 31, 47.8, 85, 300 }, + [313] = { 36.1, 47.4, 85, 300 }, + [314] = { 72.6, 46.8, 85, 300 }, + [315] = { 76.2, 46.4, 85, 300 }, + [316] = { 53.2, 46.2, 85, 300 }, + [317] = { 88.1, 46.2, 85, 300 }, + [318] = { 62.9, 45.8, 85, 300 }, + [319] = { 29.2, 45.3, 85, 300 }, + [320] = { 40.1, 44.9, 85, 300 }, + [321] = { 37.7, 43.4, 85, 300 }, + [322] = { 84.5, 42.6, 85, 300 }, + [323] = { 46.8, 42.1, 85, 300 }, + [324] = { 64.7, 42, 85, 300 }, + [325] = { 60.9, 41.6, 85, 300 }, + [326] = { 39.6, 40.6, 85, 300 }, + [327] = { 44.3, 40.1, 85, 300 }, + [328] = { 46.8, 39.6, 85, 300 }, + [329] = { 56.9, 38.8, 85, 300 }, + [330] = { 66.6, 38.1, 85, 300 }, + [331] = { 77.2, 38, 85, 300 }, + [332] = { 49.9, 37.3, 85, 300 }, + [333] = { 73, 35.5, 85, 300 }, + [334] = { 67.9, 35.3, 85, 300 }, + [335] = { 46.8, 35, 85, 300 }, + [336] = { 65.5, 34.4, 85, 300 }, + [337] = { 72, 34, 85, 300 }, + [338] = { 62.8, 33.9, 85, 300 }, + [339] = { 44.1, 33.2, 85, 300 }, + [340] = { 50.8, 32.1, 85, 300 }, + [341] = { 48.2, 31.7, 85, 300 }, + [342] = { 44.2, 30.8, 85, 300 }, + [343] = { 70.4, 30.7, 85, 300 }, + [344] = { 76.5, 29.2, 85, 300 }, + [345] = { 48.7, 28.3, 85, 300 }, + [346] = { 49.4, 84.2, 130, 300 }, + [347] = { 45.6, 83.3, 130, 300 }, + [348] = { 61.3, 79.5, 130, 300 }, + [349] = { 43.5, 79.1, 130, 300 }, + [350] = { 52.5, 76.3, 130, 300 }, + [351] = { 55.5, 74.8, 130, 300 }, + [352] = { 62.6, 74.4, 130, 300 }, + [353] = { 52, 74.3, 130, 300 }, + [354] = { 49.6, 72.6, 130, 300 }, + [355] = { 54.9, 68.3, 130, 300 }, + [356] = { 59.5, 65.2, 130, 300 }, + [357] = { 55.2, 63.2, 130, 300 }, + [358] = { 58.3, 63.1, 130, 300 }, + [359] = { 51.8, 62.2, 130, 300 }, + [360] = { 51.3, 58.8, 130, 300 }, + [361] = { 53.6, 55.9, 130, 300 }, + [362] = { 65.9, 54, 130, 300 }, + [363] = { 66.5, 48, 130, 300 }, + [364] = { 39.6, 29.8, 130, 300 }, + [365] = { 38.8, 28.2, 130, 300 }, + [366] = { 38.2, 26.2, 130, 300 }, + [367] = { 47.2, 25, 130, 300 }, + [368] = { 56.6, 22.1, 130, 300 }, + [369] = { 42.1, 21.4, 130, 300 }, + [370] = { 52, 20.2, 130, 300 }, + [371] = { 47.4, 20.1, 130, 300 }, + [372] = { 56.7, 18.5, 130, 300 }, + [373] = { 58.7, 16.3, 130, 300 }, + [374] = { 59.9, 15.5, 130, 300 }, + [375] = { 57.8, 14.4, 130, 300 }, + [376] = { 61.6, 13.4, 130, 300 }, + [377] = { 54.7, 13.1, 130, 300 }, + [378] = { 56.3, 12.8, 130, 300 }, + [379] = { 58.2, 11.4, 130, 300 }, + [380] = { 59.9, 9.8, 130, 300 }, + [381] = { 41.2, 79, 141, 300 }, + [382] = { 49.7, 76.8, 141, 300 }, + [383] = { 53.1, 76.8, 141, 300 }, + [384] = { 45.2, 76, 141, 300 }, + [385] = { 57.6, 75.9, 141, 300 }, + [386] = { 60.8, 75.1, 141, 300 }, + [387] = { 54.8, 74.9, 141, 300 }, + [388] = { 43.1, 74, 141, 300 }, + [389] = { 52.6, 73.8, 141, 300 }, + [390] = { 45.6, 73.3, 141, 300 }, + [391] = { 58.2, 72.3, 141, 300 }, + [392] = { 60, 72.2, 141, 300 }, + [393] = { 56, 72, 141, 300 }, + [394] = { 63.1, 71.6, 141, 300 }, + [395] = { 47, 71, 141, 300 }, + [396] = { 57.6, 70.6, 141, 300 }, + [397] = { 44.4, 70.1, 141, 300 }, + [398] = { 40.1, 69.2, 141, 300 }, + [399] = { 49.6, 68.1, 141, 300 }, + [400] = { 38.6, 67.1, 141, 300 }, + [401] = { 55.3, 66.8, 141, 300 }, + [402] = { 61.4, 66.2, 141, 300 }, + [403] = { 60.6, 65.5, 141, 300 }, + [404] = { 57.5, 64.9, 141, 300 }, + [405] = { 59.4, 64.3, 141, 300 }, + [406] = { 54.8, 63.6, 141, 300 }, + [407] = { 63.7, 63.6, 141, 300 }, + [408] = { 51, 62.4, 141, 300 }, + [409] = { 53.1, 62.4, 141, 300 }, + [410] = { 64.9, 62.1, 141, 300 }, + [411] = { 67.6, 61.8, 141, 300 }, + [412] = { 61.8, 61.3, 141, 300 }, + [413] = { 60.1, 61.3, 141, 300 }, + [414] = { 63.7, 61.3, 141, 300 }, + [415] = { 40.5, 60.3, 141, 300 }, + [416] = { 67.1, 59.6, 141, 300 }, + [417] = { 51.5, 59.5, 141, 300 }, + [418] = { 69.6, 58.8, 141, 300 }, + [419] = { 61, 58.1, 141, 300 }, + [420] = { 40.1, 55.5, 141, 300 }, + [421] = { 49.3, 55.4, 141, 300 }, + [422] = { 60.9, 55.2, 141, 300 }, + [423] = { 44.6, 55.2, 141, 300 }, + [424] = { 57.8, 54.9, 141, 300 }, + [425] = { 64.4, 54.8, 141, 300 }, + [426] = { 53.2, 54.8, 141, 300 }, + [427] = { 68.1, 54.2, 141, 300 }, + [428] = { 60.6, 53.9, 141, 300 }, + [429] = { 46.3, 53.4, 141, 300 }, + [430] = { 41.6, 53.2, 141, 300 }, + [431] = { 65.5, 51.8, 141, 300 }, + [432] = { 67.9, 51.8, 141, 300 }, + [433] = { 41.1, 48.5, 141, 300 }, + [434] = { 37.9, 48, 141, 300 }, + [435] = { 43.8, 45.9, 141, 300 }, + [436] = { 46.5, 45.8, 141, 300 }, + [437] = { 38.3, 45, 141, 300 }, + [438] = { 41.8, 44.6, 141, 300 }, + [439] = { 44.1, 43.3, 141, 300 }, + [440] = { 37.9, 43.2, 141, 300 }, + [441] = { 45.9, 43, 141, 300 }, + [442] = { 46, 41.1, 141, 300 }, + [443] = { 37.3, 40.3, 141, 300 }, + [444] = { 44.2, 39.4, 141, 300 }, + [445] = { 39.3, 37.9, 141, 300 }, + [446] = { 45.9, 36.6, 141, 300 }, + [447] = { 36, 35.1, 141, 300 }, + [448] = { 43.6, 34.7, 141, 300 }, + [449] = { 41, 33.4, 141, 300 }, + [450] = { 36.7, 31.8, 141, 300 }, + [451] = { 45, 31.5, 141, 300 }, + [452] = { 44.2, 29.4, 141, 300 }, + [453] = { 41.7, 28.6, 141, 300 }, + [454] = { 38.1, 28.2, 141, 300 }, + [455] = { 46.5, 27.7, 141, 300 }, + [456] = { 47.7, 25.6, 141, 300 }, + [457] = { 44.3, 91.8, 148, 300 }, + [458] = { 43.1, 84, 148, 300 }, + [459] = { 37.7, 82.6, 148, 300 }, + [460] = { 43.4, 79.8, 148, 300 }, + [461] = { 39.1, 78, 148, 300 }, + [462] = { 45.2, 55.3, 148, 300 }, + [463] = { 43.5, 54.4, 148, 300 }, + [464] = { 46.5, 49, 148, 300 }, + [465] = { 43.4, 47.4, 148, 300 }, + [466] = { 38.9, 47.2, 148, 300 }, + [467] = { 43.3, 43, 148, 300 }, + [468] = { 47.6, 41.1, 148, 300 }, + [469] = { 41.7, 36.9, 148, 300 }, + [470] = { 50.8, 35.5, 148, 300 }, + [471] = { 49.8, 30.9, 148, 300 }, + [472] = { 55.1, 25.4, 148, 300 }, + [473] = { 56.7, 24.4, 148, 300 }, + [474] = { 46.3, 23.8, 148, 300 }, + [475] = { 56.2, 20.8, 148, 300 }, + [476] = { 57.6, 15.7, 148, 300 }, + [477] = { 61.2, 15.6, 148, 300 }, + [478] = { 60.8, 15.5, 148, 300 }, + [479] = { 61.1, 12.6, 148, 300 }, + [480] = { 62.8, 70.6, 215, 300 }, + [481] = { 52.5, 68.5, 215, 300 }, + [482] = { 66.1, 68.2, 215, 300 }, + [483] = { 58.3, 67.4, 215, 300 }, + [484] = { 41.4, 66.5, 215, 300 }, + [485] = { 37, 66.4, 215, 300 }, + [486] = { 62.8, 66.3, 215, 300 }, + [487] = { 66.7, 64.6, 215, 300 }, + [488] = { 55.1, 64.5, 215, 300 }, + [489] = { 36.8, 62.6, 215, 300 }, + [490] = { 40.7, 62.5, 215, 300 }, + [491] = { 59.6, 60.6, 215, 300 }, + [492] = { 66.2, 58.6, 215, 300 }, + [493] = { 55.7, 58.6, 215, 300 }, + [494] = { 62.3, 57.8, 215, 300 }, + [495] = { 40.9, 57.6, 215, 300 }, + [496] = { 36.9, 56.9, 215, 300 }, + [497] = { 59, 55.9, 215, 300 }, + [498] = { 35.8, 51.7, 215, 300 }, + [499] = { 38.9, 51.1, 215, 300 }, + [500] = { 58.9, 51, 215, 300 }, + [501] = { 42.2, 50.8, 215, 300 }, + [502] = { 46.7, 49, 215, 300 }, + [503] = { 34.3, 48.8, 215, 300 }, + [504] = { 38.9, 48.5, 215, 300 }, + [505] = { 43.5, 47.2, 215, 300 }, + [506] = { 57.5, 47, 215, 300 }, + [507] = { 51.3, 46.1, 215, 300 }, + [508] = { 36.9, 45.2, 215, 300 }, + [509] = { 41.5, 44.1, 215, 300 }, + [510] = { 53.8, 44.1, 215, 300 }, + [511] = { 56.3, 44, 215, 300 }, + [512] = { 46, 43.2, 215, 300 }, + [513] = { 34.4, 42.1, 215, 300 }, + [514] = { 51.2, 41.2, 215, 300 }, + [515] = { 38.3, 41.1, 215, 300 }, + [516] = { 43.5, 40.5, 215, 300 }, + [517] = { 36.3, 38.7, 215, 300 }, + [518] = { 36.6, 37.7, 215, 300 }, + [519] = { 54.4, 37.1, 215, 300 }, + [520] = { 45.4, 36.4, 215, 300 }, + [521] = { 49.2, 36.3, 215, 300 }, + [522] = { 56.2, 35.2, 215, 300 }, + [523] = { 35, 33.5, 215, 300 }, + [524] = { 51.9, 32.5, 215, 300 }, + [525] = { 46.7, 32.3, 215, 300 }, + [526] = { 44.9, 29.7, 215, 300 }, + [527] = { 55, 29.5, 215, 300 }, + [528] = { 33.6, 29.5, 215, 300 }, + [529] = { 49.4, 28.3, 215, 300 }, + [530] = { 46.6, 27.6, 215, 300 }, + [531] = { 34.3, 25.9, 215, 300 }, + [532] = { 52.5, 25.7, 215, 300 }, + [533] = { 57.7, 25.6, 215, 300 }, + [534] = { 31.7, 25.6, 215, 300 }, + [535] = { 30.5, 21.6, 215, 300 }, + [536] = { 59, 21.3, 215, 300 }, + [537] = { 55.2, 20.8, 215, 300 }, + [538] = { 38.3, 20.6, 215, 300 }, + [539] = { 32.5, 19, 215, 300 }, + [540] = { 51.7, 18.7, 215, 300 }, + [541] = { 42.7, 17.8, 215, 300 }, + [542] = { 45.2, 16.8, 215, 300 }, + [543] = { 53.8, 16.8, 215, 300 }, + [544] = { 37.6, 16.6, 215, 300 }, + [545] = { 48.6, 14.8, 215, 300 }, + [546] = { 38.1, 12.9, 215, 300 }, + [547] = { 52.6, 12.8, 215, 300 }, + [548] = { 38.9, 10.3, 215, 300 }, + [549] = { 41, 10.3, 215, 300 }, + [550] = { 52.4, 9.9, 215, 300 }, + [551] = { 48, 9.8, 215, 300 }, + [552] = { 44, 9.3, 215, 300 }, + [553] = { 6, 45, 267, 300 }, + [554] = { 7.7, 38.3, 267, 300 }, + [555] = { 12, 11.5, 267, 300 }, + [556] = { 87.9, 72.3, 405, 300 }, + [557] = { 88.6, 62.5, 405, 300 }, + [558] = { 87, 57.8, 405, 300 }, + [559] = { 87.8, 53.8, 405, 300 }, + [560] = { 84.9, 53.4, 405, 300 }, + [561] = { 83.4, 48.8, 405, 300 }, + [562] = { 85.7, 45.9, 405, 300 }, + [563] = { 23.7, 29.1, 1497, 300 }, + [564] = { 99.6, 5, 1657, 300 }, + }, + }, + [1619] = { + ["coords"] = { + [1] = { 49.2, 63.9, 1, 300 }, + [2] = { 59, 63, 1, 300 }, + [3] = { 39.4, 62.5, 1, 300 }, + [4] = { 47.1, 62, 1, 300 }, + [5] = { 37, 61.6, 1, 300 }, + [6] = { 66.8, 60.4, 1, 300 }, + [7] = { 55.5, 60.2, 1, 300 }, + [8] = { 34.1, 59.9, 1, 300 }, + [9] = { 70.2, 59.7, 1, 300 }, + [10] = { 47.7, 59.5, 1, 300 }, + [11] = { 70.7, 59.3, 1, 300 }, + [12] = { 44.8, 59.2, 1, 300 }, + [13] = { 66.9, 58.9, 1, 300 }, + [14] = { 57.9, 58.7, 1, 300 }, + [15] = { 67.3, 58.1, 1, 300 }, + [16] = { 68.3, 57.8, 1, 300 }, + [17] = { 49.6, 57.7, 1, 300 }, + [18] = { 61.4, 57.6, 1, 300 }, + [19] = { 58, 57.5, 1, 300 }, + [20] = { 35.5, 57.5, 1, 300 }, + [21] = { 62.7, 57.4, 1, 300 }, + [22] = { 71.1, 57.2, 1, 300 }, + [23] = { 69.4, 56.9, 1, 300 }, + [24] = { 72.6, 56.5, 1, 300 }, + [25] = { 58.7, 56.5, 1, 300 }, + [26] = { 63.9, 56.3, 1, 300 }, + [27] = { 69.2, 56.1, 1, 300 }, + [28] = { 48.7, 56.1, 1, 300 }, + [29] = { 40.3, 55.7, 1, 300 }, + [30] = { 69.6, 55.1, 1, 300 }, + [31] = { 70.5, 54.9, 1, 300 }, + [32] = { 65.3, 54.9, 1, 300 }, + [33] = { 66.4, 54.9, 1, 300 }, + [34] = { 59.1, 54.9, 1, 300 }, + [35] = { 69.4, 54.2, 1, 300 }, + [36] = { 49.4, 53.5, 1, 300 }, + [37] = { 72.9, 53.4, 1, 300 }, + [38] = { 64, 53.4, 1, 300 }, + [39] = { 60.7, 53.4, 1, 300 }, + [40] = { 61.6, 53.1, 1, 300 }, + [41] = { 65.2, 52.7, 1, 300 }, + [42] = { 74.5, 52.1, 1, 300 }, + [43] = { 68.7, 50.4, 1, 300 }, + [44] = { 67.1, 50.1, 1, 300 }, + [45] = { 70.5, 50.1, 1, 300 }, + [46] = { 73.4, 48.4, 1, 300 }, + [47] = { 76.1, 47.8, 1, 300 }, + [48] = { 50.7, 85.7, 12, 300 }, + [49] = { 50.2, 84.8, 12, 300 }, + [50] = { 50.7, 84.3, 12, 300 }, + [51] = { 55.7, 81.9, 12, 300 }, + [52] = { 84.4, 81.2, 12, 300 }, + [53] = { 51.5, 81.2, 12, 300 }, + [54] = { 85.8, 80.6, 12, 300 }, + [55] = { 82.9, 79.8, 12, 300 }, + [56] = { 58.8, 78.9, 12, 300 }, + [57] = { 84.9, 77.6, 12, 300 }, + [58] = { 79.4, 75.2, 12, 300 }, + [59] = { 50.6, 74, 12, 300 }, + [60] = { 65.2, 72.1, 12, 300 }, + [61] = { 66.2, 70.8, 12, 300 }, + [62] = { 67.5, 69.2, 12, 300 }, + [63] = { 25.2, 66.9, 12, 300 }, + [64] = { 28.2, 64.7, 12, 300 }, + [65] = { 88.5, 62.1, 12, 300 }, + [66] = { 85.1, 58.7, 12, 300 }, + [67] = { 28.9, 58.2, 12, 300 }, + [68] = { 52.5, 57.6, 12, 300 }, + [69] = { 55.3, 56.9, 12, 300 }, + [70] = { 58.7, 56.3, 12, 300 }, + [71] = { 30.8, 55.7, 12, 300 }, + [72] = { 50.7, 54.9, 12, 300 }, + [73] = { 73.6, 54.7, 12, 300 }, + [74] = { 82.1, 54.2, 12, 300 }, + [75] = { 84.7, 52.8, 12, 300 }, + [76] = { 62.9, 51.2, 12, 300 }, + [77] = { 37.8, 50.6, 12, 300 }, + [78] = { 82.3, 50.4, 12, 300 }, + [79] = { 48.1, 50.3, 12, 300 }, + [80] = { 40.2, 47.9, 12, 300 }, + [81] = { 66.2, 47.7, 12, 300 }, + [82] = { 64.2, 46.3, 12, 300 }, + [83] = { 63.9, 44.3, 12, 300 }, + [84] = { 78.3, 38.6, 12, 300 }, + [85] = { 65.3, 36.3, 12, 300 }, + [86] = { 76.5, 36.2, 12, 300 }, + [87] = { 68.9, 34.5, 12, 300 }, + [88] = { 72.3, 34.1, 12, 300 }, + [89] = { 53.8, 79.8, 14, 300 }, + [90] = { 52.3, 75.7, 14, 300 }, + [91] = { 51.2, 72.8, 14, 300 }, + [92] = { 57, 72.1, 14, 300 }, + [93] = { 54.1, 70.5, 14, 300 }, + [94] = { 52, 64.4, 14, 300 }, + [95] = { 54.8, 60.3, 14, 300 }, + [96] = { 54.4, 57.9, 14, 300 }, + [97] = { 51.7, 54.6, 14, 300 }, + [98] = { 36.6, 54.5, 14, 300 }, + [99] = { 60.2, 54, 14, 300 }, + [100] = { 53.7, 53.4, 14, 300 }, + [101] = { 56, 50.3, 14, 300 }, + [102] = { 38.2, 50.2, 14, 300 }, + [103] = { 49.6, 47.3, 14, 300 }, + [104] = { 37.2, 46.8, 14, 300 }, + [105] = { 46.8, 45.9, 14, 300 }, + [106] = { 57.8, 45, 14, 300 }, + [107] = { 42.9, 44.9, 14, 300 }, + [108] = { 60.1, 41.6, 14, 300 }, + [109] = { 42.4, 40, 14, 300 }, + [110] = { 37.7, 39, 14, 300 }, + [111] = { 48.4, 38.3, 14, 300 }, + [112] = { 37.2, 36.7, 14, 300 }, + [113] = { 43.3, 35, 14, 300 }, + [114] = { 40.2, 32.6, 14, 300 }, + [115] = { 53.8, 32.5, 14, 300 }, + [116] = { 47.7, 30, 14, 300 }, + [117] = { 36.1, 29.6, 14, 300 }, + [118] = { 45, 28, 14, 300 }, + [119] = { 39.2, 25.4, 14, 300 }, + [120] = { 37, 24.8, 14, 300 }, + [121] = { 46.2, 24.6, 14, 300 }, + [122] = { 56.5, 24.5, 14, 300 }, + [123] = { 42.9, 24.5, 14, 300 }, + [124] = { 39.6, 24.1, 14, 300 }, + [125] = { 44.8, 20.1, 14, 300 }, + [126] = { 48, 19.6, 14, 300 }, + [127] = { 55.6, 19, 14, 300 }, + [128] = { 41, 18.7, 14, 300 }, + [129] = { 41, 16.3, 14, 300 }, + [130] = { 51.5, 15.6, 14, 300 }, + [131] = { 56.1, 14, 14, 300 }, + [132] = { 40.2, 62.9, 17, 300 }, + [133] = { 40.6, 60.7, 17, 300 }, + [134] = { 40.6, 57.7, 17, 300 }, + [135] = { 37.6, 56.1, 17, 300 }, + [136] = { 36.6, 54.3, 17, 300 }, + [137] = { 37.1, 53.6, 17, 300 }, + [138] = { 36.3, 51.5, 17, 300 }, + [139] = { 35.8, 50.5, 17, 300 }, + [140] = { 35, 44.4, 17, 300 }, + [141] = { 36.2, 42.8, 17, 300 }, + [142] = { 36.4, 38.6, 17, 300 }, + [143] = { 36.9, 38.1, 17, 300 }, + [144] = { 37.2, 37.9, 17, 300 }, + [145] = { 34.5, 36.8, 17, 300 }, + [146] = { 33.7, 36.3, 17, 300 }, + [147] = { 33.6, 34.2, 17, 300 }, + [148] = { 33.3, 32.9, 17, 300 }, + [149] = { 32.6, 31.9, 17, 300 }, + [150] = { 64.3, 25.6, 17, 300 }, + [151] = { 64.1, 12.5, 17, 300 }, + [152] = { 64.6, 10, 17, 300 }, + [153] = { 25.6, 62.6, 28, 300 }, + [154] = { 16.5, 60.3, 28, 300 }, + [155] = { 26.9, 56, 28, 300 }, + [156] = { 25.6, 51.4, 28, 300 }, + [157] = { 24.2, 48.9, 28, 300 }, + [158] = { 35, 29.1, 28, 300 }, + [159] = { 32.2, 24.6, 28, 300 }, + [160] = { 30.2, 22.9, 28, 300 }, + [161] = { 27.8, 21.4, 28, 300 }, + [162] = { 5.1, 76.7, 36, 300 }, + [163] = { 28.4, 82, 38, 300 }, + [164] = { 36.4, 77.9, 38, 300 }, + [165] = { 39.5, 66.7, 38, 300 }, + [166] = { 40.2, 61.1, 38, 300 }, + [167] = { 27.2, 60.4, 38, 300 }, + [168] = { 32.7, 59, 38, 300 }, + [169] = { 37.6, 56.2, 38, 300 }, + [170] = { 25.9, 53.4, 38, 300 }, + [171] = { 25.1, 48.5, 38, 300 }, + [172] = { 24.7, 38.6, 38, 300 }, + [173] = { 22, 23.2, 38, 300 }, + [174] = { 44.2, 87.9, 40, 300 }, + [175] = { 32.8, 81.1, 40, 300 }, + [176] = { 29.9, 77.5, 40, 300 }, + [177] = { 30.4, 70.9, 40, 300 }, + [178] = { 27.6, 61.2, 40, 300 }, + [179] = { 29.4, 54.3, 40, 300 }, + [180] = { 27.8, 48.4, 40, 300 }, + [181] = { 28.1, 43.7, 40, 300 }, + [182] = { 32.4, 40.9, 40, 300 }, + [183] = { 39.9, 38.9, 40, 300 }, + [184] = { 30.5, 38.9, 40, 300 }, + [185] = { 39.4, 38.6, 40, 300 }, + [186] = { 39.1, 38.6, 40, 300 }, + [187] = { 37.9, 37.9, 40, 300 }, + [188] = { 38.9, 37.8, 40, 300 }, + [189] = { 40.4, 35.1, 40, 300 }, + [190] = { 41, 34.2, 40, 300 }, + [191] = { 44.5, 34.2, 40, 300 }, + [192] = { 41.7, 33.9, 40, 300 }, + [193] = { 42, 33.8, 40, 300 }, + [194] = { 42.2, 32.9, 40, 300 }, + [195] = { 41.8, 32.7, 40, 300 }, + [196] = { 28.3, 32.1, 40, 300 }, + [197] = { 32.6, 31.4, 40, 300 }, + [198] = { 46.4, 31.4, 40, 300 }, + [199] = { 46.1, 28.9, 40, 300 }, + [200] = { 45.5, 27.2, 40, 300 }, + [201] = { 36.8, 21.9, 40, 300 }, + [202] = { 40.9, 16.2, 40, 300 }, + [203] = { 50.3, 14.8, 40, 300 }, + [204] = { 55.6, 12.8, 40, 300 }, + [205] = { 53.2, 12.5, 40, 300 }, + [206] = { 44.1, 12.2, 40, 300 }, + [207] = { 57.9, 10.5, 40, 300 }, + [208] = { 33, 84.9, 44, 300 }, + [209] = { 65, 83.6, 44, 300 }, + [210] = { 48.5, 81.2, 44, 300 }, + [211] = { 75.7, 80.2, 44, 300 }, + [212] = { 60.8, 79.6, 44, 300 }, + [213] = { 40.4, 79, 44, 300 }, + [214] = { 20.7, 74.6, 44, 300 }, + [215] = { 64, 73.8, 44, 300 }, + [216] = { 27, 71.8, 44, 300 }, + [217] = { 52.9, 71.6, 44, 300 }, + [218] = { 78.8, 67.5, 44, 300 }, + [219] = { 25, 64.2, 44, 300 }, + [220] = { 86.2, 62.1, 44, 300 }, + [221] = { 15.4, 59.1, 44, 300 }, + [222] = { 71.4, 59, 44, 300 }, + [223] = { 14.6, 53.3, 44, 300 }, + [224] = { 68.8, 52.8, 44, 300 }, + [225] = { 78.8, 51.4, 44, 300 }, + [226] = { 85.6, 50.9, 44, 300 }, + [227] = { 57.3, 49.1, 44, 300 }, + [228] = { 69.2, 48.6, 44, 300 }, + [229] = { 76.8, 42.5, 44, 300 }, + [230] = { 74.4, 38, 44, 300 }, + [231] = { 82, 36.4, 44, 300 }, + [232] = { 20.2, 36.4, 44, 300 }, + [233] = { 74.3, 36.1, 44, 300 }, + [234] = { 50.9, 32.9, 44, 300 }, + [235] = { 19, 32.7, 44, 300 }, + [236] = { 37.7, 32.4, 44, 300 }, + [237] = { 24.6, 32.3, 44, 300 }, + [238] = { 44.8, 28.9, 44, 300 }, + [239] = { 28.9, 21, 44, 300 }, + [240] = { 41.7, 14.5, 44, 300 }, + [241] = { 48.2, 14.1, 44, 300 }, + [242] = { 37.4, 11.9, 44, 300 }, + [243] = { 34.9, 9.6, 44, 300 }, + [244] = { 70.4, 86.2, 46, 300 }, + [245] = { 82.3, 75.2, 85, 300 }, + [246] = { 73.6, 73, 85, 300 }, + [247] = { 83.5, 68.9, 85, 300 }, + [248] = { 48.3, 67.4, 85, 300 }, + [249] = { 71.5, 65.8, 85, 300 }, + [250] = { 43.8, 65.7, 85, 300 }, + [251] = { 82.2, 64.6, 85, 300 }, + [252] = { 41, 64.4, 85, 300 }, + [253] = { 81, 62.2, 85, 300 }, + [254] = { 66.6, 59.1, 85, 300 }, + [255] = { 81.8, 57, 85, 300 }, + [256] = { 74.9, 56.5, 85, 300 }, + [257] = { 86.9, 55.6, 85, 300 }, + [258] = { 91.3, 51.5, 85, 300 }, + [259] = { 62.4, 50, 85, 300 }, + [260] = { 48.9, 48.2, 85, 300 }, + [261] = { 75.4, 47, 85, 300 }, + [262] = { 35.2, 46.2, 85, 300 }, + [263] = { 51.7, 45.6, 85, 300 }, + [264] = { 59.8, 45.4, 85, 300 }, + [265] = { 31.2, 45, 85, 300 }, + [266] = { 48.5, 44.3, 85, 300 }, + [267] = { 79.1, 44.1, 85, 300 }, + [268] = { 51.2, 43.5, 85, 300 }, + [269] = { 91.2, 43.3, 85, 300 }, + [270] = { 53, 41.8, 85, 300 }, + [271] = { 36.8, 41.6, 85, 300 }, + [272] = { 78.9, 41.3, 85, 300 }, + [273] = { 74, 40.5, 85, 300 }, + [274] = { 54.7, 40.2, 85, 300 }, + [275] = { 37.4, 39.3, 85, 300 }, + [276] = { 88.6, 39.1, 85, 300 }, + [277] = { 43.5, 38.8, 85, 300 }, + [278] = { 79.9, 38.8, 85, 300 }, + [279] = { 86.6, 37.4, 85, 300 }, + [280] = { 39, 36.9, 85, 300 }, + [281] = { 51.5, 36.4, 85, 300 }, + [282] = { 84.3, 36, 85, 300 }, + [283] = { 56, 34.9, 85, 300 }, + [284] = { 76.1, 34.6, 85, 300 }, + [285] = { 50.8, 33.4, 85, 300 }, + [286] = { 42.4, 31.9, 85, 300 }, + [287] = { 75.9, 31.9, 85, 300 }, + [288] = { 82.5, 31.6, 85, 300 }, + [289] = { 78.8, 31.6, 85, 300 }, + [290] = { 74.4, 31.2, 85, 300 }, + [291] = { 55.3, 31, 85, 300 }, + [292] = { 57.4, 30.6, 85, 300 }, + [293] = { 74.8, 29.2, 85, 300 }, + [294] = { 63.1, 28.2, 85, 300 }, + [295] = { 57.4, 28.1, 85, 300 }, + [296] = { 47.5, 27.5, 85, 300 }, + [297] = { 49.9, 26.9, 85, 300 }, + [298] = { 80.1, 24.4, 85, 300 }, + [299] = { 48.6, 86.1, 130, 300 }, + [300] = { 53.3, 84.9, 130, 300 }, + [301] = { 60.7, 81.2, 130, 300 }, + [302] = { 64.3, 80.7, 130, 300 }, + [303] = { 58.4, 80, 130, 300 }, + [304] = { 62.2, 60.4, 130, 300 }, + [305] = { 66.9, 57.1, 130, 300 }, + [306] = { 63.4, 56, 130, 300 }, + [307] = { 64.6, 53.3, 130, 300 }, + [308] = { 51.4, 49.7, 130, 300 }, + [309] = { 54, 48.4, 130, 300 }, + [310] = { 65.2, 46.8, 130, 300 }, + [311] = { 54.7, 46, 130, 300 }, + [312] = { 50.2, 45, 130, 300 }, + [313] = { 55.8, 43.4, 130, 300 }, + [314] = { 49.8, 43, 130, 300 }, + [315] = { 46.1, 32.5, 130, 300 }, + [316] = { 46, 30.3, 130, 300 }, + [317] = { 50.6, 30, 130, 300 }, + [318] = { 52.2, 30, 130, 300 }, + [319] = { 54.2, 27.7, 130, 300 }, + [320] = { 47.3, 27.1, 130, 300 }, + [321] = { 40.8, 80, 141, 300 }, + [322] = { 38.3, 79.4, 141, 300 }, + [323] = { 44.9, 75.3, 141, 300 }, + [324] = { 41.9, 74.6, 141, 300 }, + [325] = { 58.8, 74.3, 141, 300 }, + [326] = { 50.3, 73.8, 141, 300 }, + [327] = { 51.7, 73, 141, 300 }, + [328] = { 44.4, 72.9, 141, 300 }, + [329] = { 61, 72, 141, 300 }, + [330] = { 53.8, 71.7, 141, 300 }, + [331] = { 39.7, 71.1, 141, 300 }, + [332] = { 50.3, 70.7, 141, 300 }, + [333] = { 62.7, 70.1, 141, 300 }, + [334] = { 41.6, 69.5, 141, 300 }, + [335] = { 38.7, 69, 141, 300 }, + [336] = { 51.1, 67.1, 141, 300 }, + [337] = { 37.1, 66, 141, 300 }, + [338] = { 52.2, 63.5, 141, 300 }, + [339] = { 40.4, 63.3, 141, 300 }, + [340] = { 49, 62.7, 141, 300 }, + [341] = { 50.5, 60.5, 141, 300 }, + [342] = { 39.8, 59.4, 141, 300 }, + [343] = { 48.5, 58.9, 141, 300 }, + [344] = { 47.9, 56.4, 141, 300 }, + [345] = { 41.1, 56.3, 141, 300 }, + [346] = { 45.1, 55.5, 141, 300 }, + [347] = { 42.6, 53.9, 141, 300 }, + [348] = { 45.1, 53.7, 141, 300 }, + [349] = { 44.3, 48.6, 141, 300 }, + [350] = { 40.1, 48, 141, 300 }, + [351] = { 44.8, 46.7, 141, 300 }, + [352] = { 48.1, 45.1, 141, 300 }, + [353] = { 36.3, 42.3, 141, 300 }, + [354] = { 47, 41.3, 141, 300 }, + [355] = { 35.1, 39.8, 141, 300 }, + [356] = { 38.7, 39.5, 141, 300 }, + [357] = { 44.7, 39.3, 141, 300 }, + [358] = { 35.1, 37.3, 141, 300 }, + [359] = { 46.3, 37.2, 141, 300 }, + [360] = { 39.9, 35.9, 141, 300 }, + [361] = { 34.7, 35.8, 141, 300 }, + [362] = { 41.3, 35.5, 141, 300 }, + [363] = { 47.8, 33.4, 141, 300 }, + [364] = { 44.4, 31.4, 141, 300 }, + [365] = { 41.4, 30.6, 141, 300 }, + [366] = { 39.6, 29.6, 141, 300 }, + [367] = { 37.6, 27.3, 141, 300 }, + [368] = { 40.1, 26.5, 141, 300 }, + [369] = { 45.6, 92, 148, 300 }, + [370] = { 35.1, 90.8, 148, 300 }, + [371] = { 32.4, 90, 148, 300 }, + [372] = { 38.4, 88.9, 148, 300 }, + [373] = { 44.4, 88.2, 148, 300 }, + [374] = { 34.1, 85.9, 148, 300 }, + [375] = { 43.6, 85.2, 148, 300 }, + [376] = { 32.9, 83.7, 148, 300 }, + [377] = { 44.6, 82.2, 148, 300 }, + [378] = { 39.2, 80.8, 148, 300 }, + [379] = { 39.7, 72, 148, 300 }, + [380] = { 42.6, 71.9, 148, 300 }, + [381] = { 42.1, 67.9, 148, 300 }, + [382] = { 43.1, 66.9, 148, 300 }, + [383] = { 44.4, 62.9, 148, 300 }, + [384] = { 42.2, 58.3, 148, 300 }, + [385] = { 45.4, 57.5, 148, 300 }, + [386] = { 47, 52.6, 148, 300 }, + [387] = { 47.3, 48.8, 148, 300 }, + [388] = { 42.7, 46.4, 148, 300 }, + [389] = { 41.4, 39.5, 148, 300 }, + [390] = { 41.5, 35.5, 148, 300 }, + [391] = { 54.9, 31.1, 148, 300 }, + [392] = { 59.6, 27.2, 148, 300 }, + [393] = { 56.2, 25.3, 148, 300 }, + [394] = { 61.6, 21.2, 148, 300 }, + [395] = { 60, 14.7, 148, 300 }, + [396] = { 55.8, 74.7, 215, 300 }, + [397] = { 54.1, 74.3, 215, 300 }, + [398] = { 52.8, 74.1, 215, 300 }, + [399] = { 47.7, 73.5, 215, 300 }, + [400] = { 46.1, 71.9, 215, 300 }, + [401] = { 52, 71.6, 215, 300 }, + [402] = { 66.3, 71, 215, 300 }, + [403] = { 34.8, 69.7, 215, 300 }, + [404] = { 68.1, 68.9, 215, 300 }, + [405] = { 34.5, 67, 215, 300 }, + [406] = { 34.8, 65.3, 215, 300 }, + [407] = { 68.9, 64.8, 215, 300 }, + [408] = { 35.3, 60.8, 215, 300 }, + [409] = { 69, 58.8, 215, 300 }, + [410] = { 34.5, 57.3, 215, 300 }, + [411] = { 63.1, 55.6, 215, 300 }, + [412] = { 34.8, 54.6, 215, 300 }, + [413] = { 61, 52.1, 215, 300 }, + [414] = { 34.1, 51.5, 215, 300 }, + [415] = { 62, 50.6, 215, 300 }, + [416] = { 32.5, 48.6, 215, 300 }, + [417] = { 33.4, 47.1, 215, 300 }, + [418] = { 60.4, 46.6, 215, 300 }, + [419] = { 59.5, 44.5, 215, 300 }, + [420] = { 57.6, 43.4, 215, 300 }, + [421] = { 56.7, 40.8, 215, 300 }, + [422] = { 32.7, 40.6, 215, 300 }, + [423] = { 34, 35.3, 215, 300 }, + [424] = { 57.9, 32.5, 215, 300 }, + [425] = { 60.2, 29.4, 215, 300 }, + [426] = { 28.5, 25.7, 215, 300 }, + [427] = { 60.6, 21.2, 215, 300 }, + [428] = { 61.6, 20.1, 215, 300 }, + [429] = { 62.3, 19.7, 215, 300 }, + [430] = { 56.8, 17.5, 215, 300 }, + [431] = { 55.2, 16.5, 215, 300 }, + [432] = { 55.1, 12.3, 215, 300 }, + [433] = { 36.3, 12.3, 215, 300 }, + [434] = { 54.5, 9.8, 215, 300 }, + [435] = { 36.9, 9.7, 215, 300 }, + [436] = { 53, 7.9, 215, 300 }, + [437] = { 38.3, 7.7, 215, 300 }, + [438] = { 40.9, 6.7, 215, 300 }, + [439] = { 39.2, 4.9, 215, 300 }, + [440] = { 10, 46.5, 267, 300 }, + [441] = { 13.3, 15.6, 267, 300 }, + [442] = { 29.4, 73.5, 361, 300 }, + [443] = { 30.9, 28.6, 361, 300 }, + [444] = { 86.7, 78, 405, 300 }, + [445] = { 86, 70.6, 405, 300 }, + [446] = { 87.4, 64.5, 405, 300 }, + [447] = { 81.1, 53.6, 405, 300 }, + [448] = { 95.9, 91.6, 1657, 300 }, + }, + }, + [1620] = { + ["coords"] = { + [1] = { 65, 76.4, 10, 300 }, + [2] = { 47.8, 76.1, 10, 300 }, + [3] = { 52.1, 75.8, 10, 300 }, + [4] = { 72.2, 73.9, 10, 300 }, + [5] = { 40.1, 73.6, 10, 300 }, + [6] = { 80.7, 73.6, 10, 300 }, + [7] = { 49.4, 73, 10, 300 }, + [8] = { 13, 70.6, 10, 300 }, + [9] = { 50.1, 70.6, 10, 300 }, + [10] = { 21.4, 68.7, 10, 300 }, + [11] = { 80.9, 66.8, 10, 300 }, + [12] = { 54.1, 60.8, 10, 300 }, + [13] = { 82.1, 60.7, 10, 300 }, + [14] = { 59.5, 59, 10, 300 }, + [15] = { 9.2, 45.4, 10, 300 }, + [16] = { 64.8, 36.9, 10, 300 }, + [17] = { 26.5, 35.5, 10, 300 }, + [18] = { 27.6, 26.5, 10, 300 }, + [19] = { 20.7, 24.4, 10, 300 }, + [20] = { 33.1, 23.9, 10, 300 }, + [21] = { 75, 17.1, 10, 300 }, + [22] = { 63.6, 16.9, 10, 300 }, + [23] = { 61.8, 76.9, 11, 300 }, + [24] = { 55.3, 75.6, 11, 300 }, + [25] = { 67.5, 71.7, 11, 300 }, + [26] = { 55.3, 66.8, 11, 300 }, + [27] = { 62, 66.6, 11, 300 }, + [28] = { 62.6, 66.2, 11, 300 }, + [29] = { 56.3, 64.2, 11, 300 }, + [30] = { 66.1, 64.2, 11, 300 }, + [31] = { 55.4, 61.7, 11, 300 }, + [32] = { 66.4, 57.6, 11, 300 }, + [33] = { 59.3, 53.3, 11, 300 }, + [34] = { 35.1, 51.7, 11, 300 }, + [35] = { 24.3, 51.1, 11, 300 }, + [36] = { 61.8, 50.9, 11, 300 }, + [37] = { 32.7, 49.1, 11, 300 }, + [38] = { 36.1, 48.2, 11, 300 }, + [39] = { 61, 47.8, 11, 300 }, + [40] = { 34, 44.1, 11, 300 }, + [41] = { 69.9, 43.5, 11, 300 }, + [42] = { 55.3, 42.4, 11, 300 }, + [43] = { 66.2, 41.1, 11, 300 }, + [44] = { 18.5, 40.5, 11, 300 }, + [45] = { 64.4, 36.2, 11, 300 }, + [46] = { 52.1, 36, 11, 300 }, + [47] = { 44.6, 34.5, 11, 300 }, + [48] = { 24.8, 33.6, 11, 300 }, + [49] = { 53, 33.3, 11, 300 }, + [50] = { 45.4, 32.1, 11, 300 }, + [51] = { 58.9, 30.5, 11, 300 }, + [52] = { 38.6, 30.2, 11, 300 }, + [53] = { 45.9, 30, 11, 300 }, + [54] = { 29.9, 29.9, 11, 300 }, + [55] = { 55.4, 29.6, 11, 300 }, + [56] = { 23, 27.9, 11, 300 }, + [57] = { 53.6, 26.8, 11, 300 }, + [58] = { 60.9, 25.2, 11, 300 }, + [59] = { 28.7, 24.7, 11, 300 }, + [60] = { 24.9, 23.9, 11, 300 }, + [61] = { 29.7, 20.5, 11, 300 }, + [62] = { 32.3, 15.5, 11, 300 }, + [63] = { 41.7, 97.4, 12, 300 }, + [64] = { 78.5, 90.1, 12, 300 }, + [65] = { 95.2, 74.8, 12, 300 }, + [66] = { 38.4, 55.8, 14, 300 }, + [67] = { 40.7, 50.9, 14, 300 }, + [68] = { 44.2, 49.6, 14, 300 }, + [69] = { 44.3, 49.5, 14, 300 }, + [70] = { 47.5, 47.8, 14, 300 }, + [71] = { 48.5, 34.1, 14, 300 }, + [72] = { 58.1, 29.6, 14, 300 }, + [73] = { 40.4, 28.1, 14, 300 }, + [74] = { 42.5, 26.7, 14, 300 }, + [75] = { 39.3, 24.9, 14, 300 }, + [76] = { 50, 24.8, 14, 300 }, + [77] = { 43.2, 24, 14, 300 }, + [78] = { 51.9, 23.8, 14, 300 }, + [79] = { 54.1, 22.9, 14, 300 }, + [80] = { 51.5, 19.2, 14, 300 }, + [81] = { 57.9, 17, 14, 300 }, + [82] = { 55.6, 10.1, 14, 300 }, + [83] = { 46.4, 35.2, 17, 300 }, + [84] = { 47.4, 34.2, 17, 300 }, + [85] = { 45.7, 34.1, 17, 300 }, + [86] = { 48.9, 33.5, 17, 604800 }, + [87] = { 49.4, 33.3, 17, 300 }, + [88] = { 45.9, 33.2, 17, 300 }, + [89] = { 47.2, 32.6, 17, 300 }, + [90] = { 48, 31.9, 17, 604800 }, + [91] = { 65.3, 26.2, 17, 300 }, + [92] = { 30.8, 25.1, 17, 300 }, + [93] = { 33.1, 23.3, 17, 300 }, + [94] = { 32.4, 23.2, 17, 300 }, + [95] = { 33.4, 22.4, 17, 300 }, + [96] = { 34.3, 21.7, 17, 300 }, + [97] = { 55.5, 88, 36, 300 }, + [98] = { 55.5, 84.7, 36, 300 }, + [99] = { 56.7, 79.3, 36, 300 }, + [100] = { 71.2, 76.1, 38, 300 }, + [101] = { 52.8, 74.4, 38, 300 }, + [102] = { 65.9, 72.5, 38, 300 }, + [103] = { 54.3, 66.8, 38, 300 }, + [104] = { 65.9, 60.6, 38, 300 }, + [105] = { 58.2, 60.5, 38, 300 }, + [106] = { 78.1, 57.7, 38, 300 }, + [107] = { 63.1, 56.7, 38, 300 }, + [108] = { 66.1, 56.2, 38, 300 }, + [109] = { 53.5, 55.2, 38, 300 }, + [110] = { 55, 53.5, 38, 300 }, + [111] = { 30.6, 53, 38, 300 }, + [112] = { 68.3, 51.3, 38, 300 }, + [113] = { 30.8, 50, 38, 300 }, + [114] = { 67.4, 47.3, 38, 300 }, + [115] = { 26.9, 47.2, 38, 300 }, + [116] = { 77.5, 46, 38, 300 }, + [117] = { 38, 45.6, 38, 300 }, + [118] = { 64, 45.1, 38, 300 }, + [119] = { 37, 44.9, 38, 300 }, + [120] = { 40.8, 42.3, 38, 300 }, + [121] = { 76.3, 41.7, 38, 300 }, + [122] = { 53.3, 40.6, 38, 300 }, + [123] = { 40.4, 37.5, 38, 300 }, + [124] = { 55.3, 36.8, 38, 300 }, + [125] = { 77.4, 36.3, 38, 300 }, + [126] = { 40.8, 35.1, 38, 300 }, + [127] = { 67.3, 34, 38, 300 }, + [128] = { 55.2, 33.5, 38, 300 }, + [129] = { 40.9, 33.2, 38, 300 }, + [130] = { 65.3, 31.8, 38, 300 }, + [131] = { 41.3, 31.4, 38, 300 }, + [132] = { 49.5, 30.1, 38, 300 }, + [133] = { 54.9, 28.5, 38, 300 }, + [134] = { 51.7, 28.1, 38, 300 }, + [135] = { 47.6, 27.5, 38, 300 }, + [136] = { 62.7, 25.5, 38, 300 }, + [137] = { 62.4, 25.3, 38, 300 }, + [138] = { 54.5, 25.1, 38, 300 }, + [139] = { 59, 24.9, 38, 300 }, + [140] = { 47.5, 22.3, 38, 300 }, + [141] = { 58.4, 21.9, 38, 300 }, + [142] = { 56, 19.1, 38, 300 }, + [143] = { 59.6, 18.7, 38, 300 }, + [144] = { 37, 17, 38, 300 }, + [145] = { 41.8, 14.3, 38, 300 }, + [146] = { 34.4, 83.3, 40, 300 }, + [147] = { 30.4, 78.7, 40, 300 }, + [148] = { 36.2, 78.1, 40, 300 }, + [149] = { 69.3, 75.2, 40, 300 }, + [150] = { 69.4, 74.9, 40, 300 }, + [151] = { 46.5, 72, 40, 300 }, + [152] = { 32.9, 71.5, 40, 300 }, + [153] = { 35.2, 70.7, 40, 300 }, + [154] = { 67.2, 70.3, 40, 300 }, + [155] = { 28.3, 69.4, 40, 300 }, + [156] = { 61.4, 68.6, 40, 300 }, + [157] = { 38, 68.3, 40, 300 }, + [158] = { 72.4, 68.1, 40, 300 }, + [159] = { 48.1, 65.7, 40, 300 }, + [160] = { 37.1, 65.1, 40, 300 }, + [161] = { 52.9, 64.3, 40, 300 }, + [162] = { 27.3, 60.2, 40, 300 }, + [163] = { 50, 58.7, 40, 300 }, + [164] = { 35, 56, 40, 300 }, + [165] = { 47.2, 55.7, 40, 300 }, + [166] = { 59.6, 55.7, 40, 300 }, + [167] = { 27.2, 50.1, 40, 300 }, + [168] = { 52.6, 48.2, 40, 300 }, + [169] = { 61.8, 47.3, 40, 300 }, + [170] = { 49.2, 44.8, 40, 300 }, + [171] = { 31.9, 44.1, 40, 300 }, + [172] = { 43, 42.2, 40, 300 }, + [173] = { 53.4, 42.1, 40, 300 }, + [174] = { 23.4, 41.9, 40, 300 }, + [175] = { 55.6, 41.5, 40, 300 }, + [176] = { 38.7, 40.6, 40, 300 }, + [177] = { 42.5, 40, 40, 300 }, + [178] = { 28.4, 38.6, 40, 300 }, + [179] = { 38.4, 36.7, 40, 300 }, + [180] = { 37.5, 34.5, 40, 300 }, + [181] = { 39.6, 33.2, 40, 300 }, + [182] = { 39.1, 32.7, 40, 300 }, + [183] = { 28.9, 32.3, 40, 300 }, + [184] = { 38.8, 32.1, 40, 300 }, + [185] = { 39.3, 31.9, 40, 300 }, + [186] = { 56.2, 31.5, 40, 300 }, + [187] = { 50.3, 31.5, 40, 300 }, + [188] = { 38.9, 31.2, 40, 300 }, + [189] = { 36.7, 31.2, 40, 300 }, + [190] = { 49.6, 31.1, 40, 300 }, + [191] = { 59.3, 30.5, 40, 300 }, + [192] = { 43, 29.7, 40, 300 }, + [193] = { 36.6, 26.5, 40, 300 }, + [194] = { 32.5, 25.5, 40, 300 }, + [195] = { 61.3, 25.5, 40, 300 }, + [196] = { 59, 25.4, 40, 300 }, + [197] = { 57.4, 24.9, 40, 300 }, + [198] = { 36.3, 22.3, 40, 300 }, + [199] = { 38.4, 17.3, 40, 300 }, + [200] = { 44.7, 16.4, 40, 300 }, + [201] = { 49.7, 12.8, 40, 300 }, + [202] = { 43.2, 11, 40, 300 }, + [203] = { 56.8, 9, 40, 300 }, + [204] = { 12.9, 83.6, 44, 300 }, + [205] = { 46, 77.8, 44, 300 }, + [206] = { 24.5, 76.9, 44, 300 }, + [207] = { 46.4, 76.8, 44, 300 }, + [208] = { 55.5, 76.6, 44, 300 }, + [209] = { 9.1, 75.6, 44, 300 }, + [210] = { 37.5, 75.4, 44, 300 }, + [211] = { 72.3, 73.7, 44, 300 }, + [212] = { 16.4, 64.7, 44, 300 }, + [213] = { 76.9, 64.4, 44, 300 }, + [214] = { 35.3, 63.6, 44, 300 }, + [215] = { 25, 58.2, 44, 300 }, + [216] = { 18.1, 55.7, 44, 300 }, + [217] = { 77.7, 54, 44, 300 }, + [218] = { 15.2, 52.1, 44, 300 }, + [219] = { 75, 49.2, 44, 300 }, + [220] = { 53.4, 48.9, 44, 300 }, + [221] = { 66.4, 42.2, 44, 300 }, + [222] = { 55.8, 40.3, 44, 300 }, + [223] = { 23.3, 38.2, 44, 300 }, + [224] = { 43.5, 38.2, 44, 300 }, + [225] = { 52.8, 35.6, 44, 300 }, + [226] = { 43.9, 32.5, 44, 300 }, + [227] = { 27.7, 27.7, 44, 300 }, + [228] = { 22.9, 26.6, 44, 300 }, + [229] = { 34, 24.6, 44, 300 }, + [230] = { 29.6, 24.5, 44, 300 }, + [231] = { 27.1, 21.7, 44, 300 }, + [232] = { 40.8, 11.7, 44, 300 }, + [233] = { 49.9, 81.5, 130, 300 }, + [234] = { 45.2, 80.1, 130, 300 }, + [235] = { 51.6, 78.7, 130, 300 }, + [236] = { 47.2, 78.1, 130, 300 }, + [237] = { 54.1, 75.9, 130, 300 }, + [238] = { 53, 73.7, 130, 300 }, + [239] = { 55.9, 71.7, 130, 300 }, + [240] = { 42.7, 70.6, 130, 300 }, + [241] = { 53.1, 70, 130, 300 }, + [242] = { 53.2, 68.1, 130, 300 }, + [243] = { 50.9, 65.1, 130, 300 }, + [244] = { 54.2, 55.5, 130, 300 }, + [245] = { 54.1, 53.5, 130, 300 }, + [246] = { 68.1, 37.4, 130, 300 }, + [247] = { 55.6, 37.1, 130, 300 }, + [248] = { 53.7, 37, 130, 300 }, + [249] = { 55.1, 35.8, 130, 300 }, + [250] = { 56.6, 35.6, 130, 300 }, + [251] = { 53.2, 35.4, 130, 300 }, + [252] = { 55.1, 35.1, 130, 300 }, + [253] = { 58.1, 34.7, 130, 300 }, + [254] = { 52.9, 34.2, 130, 300 }, + [255] = { 47.5, 33.9, 130, 300 }, + [256] = { 55.7, 31.6, 130, 300 }, + [257] = { 53.5, 31.3, 130, 300 }, + [258] = { 45.3, 30.8, 130, 300 }, + [259] = { 47, 30.6, 130, 300 }, + [260] = { 53.9, 29.9, 130, 300 }, + [261] = { 53.2, 29.8, 130, 300 }, + [262] = { 49.1, 29.7, 130, 300 }, + [263] = { 50.5, 29.5, 130, 300 }, + [264] = { 56.2, 29.4, 130, 300 }, + [265] = { 52.6, 29.2, 130, 300 }, + [266] = { 48.7, 29.1, 130, 300 }, + [267] = { 47.1, 28.6, 130, 300 }, + [268] = { 54.5, 28.5, 130, 300 }, + [269] = { 45.5, 27.9, 130, 300 }, + [270] = { 48.7, 27.2, 130, 300 }, + [271] = { 45.4, 25.8, 130, 300 }, + [272] = { 56.7, 25.3, 130, 300 }, + [273] = { 56.5, 24.1, 130, 300 }, + [274] = { 56.7, 23.2, 130, 300 }, + [275] = { 56.1, 20.7, 130, 300 }, + [276] = { 56.1, 19.4, 130, 300 }, + [277] = { 49.5, 18.4, 130, 300 }, + [278] = { 73, 17.2, 130, 300 }, + [279] = { 42, 17.1, 130, 300 }, + [280] = { 57.4, 17.1, 130, 300 }, + [281] = { 59.7, 16.7, 130, 300 }, + [282] = { 33.4, 16.4, 130, 300 }, + [283] = { 56.4, 16.2, 130, 300 }, + [284] = { 35.6, 16, 130, 300 }, + [285] = { 60.5, 13.6, 130, 300 }, + [286] = { 65.9, 12.5, 130, 300 }, + [287] = { 64.4, 11.8, 130, 300 }, + [288] = { 63.1, 11.7, 130, 300 }, + [289] = { 68.4, 8.9, 130, 300 }, + [290] = { 49.1, 78, 141, 300 }, + [291] = { 41.8, 76.1, 141, 300 }, + [292] = { 62.2, 73.4, 141, 300 }, + [293] = { 59.2, 72.8, 141, 300 }, + [294] = { 63.2, 72.4, 141, 300 }, + [295] = { 49.6, 72.2, 141, 300 }, + [296] = { 46, 71.5, 141, 300 }, + [297] = { 53.5, 70.5, 141, 300 }, + [298] = { 62.1, 69, 141, 300 }, + [299] = { 64.5, 66.9, 141, 300 }, + [300] = { 57.5, 66.3, 141, 300 }, + [301] = { 53.5, 66.1, 141, 300 }, + [302] = { 65.3, 64, 141, 300 }, + [303] = { 38.8, 61.5, 141, 300 }, + [304] = { 39.6, 60.5, 141, 300 }, + [305] = { 50, 57.6, 141, 300 }, + [306] = { 69.4, 56.4, 141, 300 }, + [307] = { 65.4, 53.4, 141, 300 }, + [308] = { 67.7, 53, 141, 300 }, + [309] = { 45.8, 53, 141, 300 }, + [310] = { 41.8, 34.1, 141, 300 }, + [311] = { 42.4, 28.5, 141, 300 }, + [312] = { 36.4, 91.6, 148, 300 }, + [313] = { 34.6, 89.9, 148, 300 }, + [314] = { 44, 89.8, 148, 300 }, + [315] = { 34.5, 88.8, 148, 300 }, + [316] = { 38.5, 87, 148, 300 }, + [317] = { 38.9, 86.7, 148, 300 }, + [318] = { 36.4, 86.3, 148, 300 }, + [319] = { 36.3, 86.1, 148, 300 }, + [320] = { 35.2, 84.8, 148, 300 }, + [321] = { 35.2, 84.7, 148, 300 }, + [322] = { 34.6, 81.8, 148, 300 }, + [323] = { 36.3, 80, 148, 300 }, + [324] = { 38.3, 77.4, 148, 300 }, + [325] = { 37, 74.1, 148, 300 }, + [326] = { 42, 72.7, 148, 300 }, + [327] = { 37.3, 70.6, 148, 300 }, + [328] = { 44.1, 70.3, 148, 300 }, + [329] = { 42.1, 67.3, 148, 300 }, + [330] = { 37.8, 66.9, 148, 300 }, + [331] = { 43.9, 64.2, 148, 300 }, + [332] = { 39.3, 62.9, 148, 300 }, + [333] = { 37.7, 61, 148, 300 }, + [334] = { 44.4, 60.9, 148, 300 }, + [335] = { 37.9, 57.2, 148, 300 }, + [336] = { 42.4, 56.5, 148, 300 }, + [337] = { 38.6, 55.4, 148, 300 }, + [338] = { 45.5, 52.3, 148, 300 }, + [339] = { 39.1, 51.2, 148, 300 }, + [340] = { 42, 50.5, 148, 300 }, + [341] = { 37.6, 50, 148, 300 }, + [342] = { 38.5, 49.2, 148, 300 }, + [343] = { 44.8, 49, 148, 300 }, + [344] = { 40.7, 40.5, 148, 300 }, + [345] = { 43.2, 38.7, 148, 300 }, + [346] = { 41, 38.5, 148, 300 }, + [347] = { 38.3, 36.6, 148, 300 }, + [348] = { 38, 36.5, 148, 300 }, + [349] = { 38.6, 33.8, 148, 300 }, + [350] = { 40.5, 33.5, 148, 300 }, + [351] = { 54.6, 28.3, 148, 300 }, + [352] = { 58, 26.4, 148, 300 }, + [353] = { 56.9, 26, 148, 300 }, + [354] = { 43.2, 24.1, 148, 300 }, + [355] = { 53.1, 23.3, 148, 300 }, + [356] = { 49.1, 23, 148, 300 }, + [357] = { 62, 22.3, 148, 300 }, + [358] = { 54.1, 20.9, 148, 300 }, + [359] = { 53.4, 20.9, 148, 300 }, + [360] = { 60.2, 18.7, 148, 300 }, + [361] = { 61.5, 18.1, 148, 300 }, + [362] = { 59.2, 17.9, 148, 300 }, + [363] = { 57.2, 17, 148, 300 }, + [364] = { 58.4, 13.5, 148, 300 }, + [365] = { 41.5, 56.3, 267, 300 }, + [366] = { 43.8, 56.3, 267, 300 }, + [367] = { 43.7, 53.9, 267, 300 }, + [368] = { 32.5, 53.9, 267, 300 }, + [369] = { 34.4, 53.8, 267, 300 }, + [370] = { 24, 53.1, 267, 300 }, + [371] = { 54.6, 52.3, 267, 300 }, + [372] = { 42.7, 51.6, 267, 300 }, + [373] = { 25, 51.6, 267, 300 }, + [374] = { 57.4, 25.4, 267, 300 }, + [375] = { 57.4, 22.6, 267, 300 }, + [376] = { 58.5, 17.8, 267, 300 }, + [377] = { 70.5, 85.2, 331, 300 }, + [378] = { 74.6, 77.4, 331, 300 }, + [379] = { 71.1, 76.5, 331, 300 }, + [380] = { 59.3, 72.8, 331, 300 }, + [381] = { 40.5, 72.3, 331, 300 }, + [382] = { 76.9, 71.3, 331, 300 }, + [383] = { 31.7, 65.1, 331, 300 }, + [384] = { 90.9, 64.1, 331, 300 }, + [385] = { 69.3, 63.6, 331, 300 }, + [386] = { 62.2, 62.4, 331, 300 }, + [387] = { 49.5, 59.9, 331, 300 }, + [388] = { 45.8, 59.7, 331, 300 }, + [389] = { 92.2, 55.9, 331, 300 }, + [390] = { 30.1, 53.5, 331, 300 }, + [391] = { 83.1, 49.9, 331, 300 }, + [392] = { 23.4, 46.9, 331, 300 }, + [393] = { 28.8, 46.8, 331, 300 }, + [394] = { 90.9, 45.1, 331, 300 }, + [395] = { 20.2, 44.6, 331, 300 }, + [396] = { 22.6, 40.4, 331, 300 }, + [397] = { 17, 38, 331, 300 }, + [398] = { 16.9, 36, 331, 300 }, + [399] = { 21.9, 33.9, 331, 300 }, + [400] = { 22.7, 32.9, 331, 300 }, + [401] = { 17.4, 31.3, 331, 300 }, + [402] = { 16.1, 27, 331, 300 }, + [403] = { 18.5, 26, 331, 300 }, + [404] = { 26.3, 18.8, 331, 300 }, + [405] = { 76.7, 92.1, 406, 300 }, + [406] = { 75.1, 90.9, 406, 300 }, + [407] = { 81.5, 88.3, 406, 300 }, + [408] = { 80, 88.2, 406, 300 }, + [409] = { 82.1, 86.5, 406, 300 }, + [410] = { 83.8, 85.1, 406, 300 }, + [411] = { 36.7, 72.7, 406, 300 }, + [412] = { 61.4, 62.2, 406, 300 }, + [413] = { 64.1, 55.8, 406, 300 }, + [414] = { 70, 53.5, 406, 300 }, + [415] = { 66.7, 50.6, 406, 300 }, + [416] = { 64.2, 47.6, 406, 300 }, + [417] = { 53.1, 43.1, 406, 300 }, + [418] = { 45.6, 21.1, 406, 300 }, + [419] = { 35.7, 18.7, 406, 300 }, + [420] = { 35.5, 14.4, 406, 300 }, + [421] = { 32.1, 10.5, 406, 300 }, + [422] = { 39.6, 7.3, 406, 300 }, + }, + }, + [1621] = { + ["coords"] = { + [1] = { 58, 77.2, 10, 300 }, + [2] = { 18.7, 75.8, 10, 300 }, + [3] = { 36, 74.4, 10, 300 }, + [4] = { 76.5, 72.4, 10, 300 }, + [5] = { 47, 72.3, 10, 300 }, + [6] = { 73.2, 69.7, 10, 300 }, + [7] = { 25.3, 68.7, 10, 300 }, + [8] = { 60.5, 68.6, 10, 300 }, + [9] = { 37.7, 68.5, 10, 300 }, + [10] = { 17.9, 67.6, 10, 300 }, + [11] = { 32.6, 66.6, 10, 300 }, + [12] = { 68.9, 65.4, 10, 300 }, + [13] = { 79.2, 65.2, 10, 300 }, + [14] = { 23.6, 65, 10, 300 }, + [15] = { 71.7, 64.5, 10, 300 }, + [16] = { 75.5, 64.2, 10, 300 }, + [17] = { 38.2, 59.2, 10, 300 }, + [18] = { 61.2, 57, 10, 300 }, + [19] = { 54.8, 57, 10, 300 }, + [20] = { 35.1, 56.2, 10, 300 }, + [21] = { 14.9, 56, 10, 300 }, + [22] = { 31.1, 55.5, 10, 300 }, + [23] = { 83.1, 55, 10, 300 }, + [24] = { 65.8, 54.9, 10, 300 }, + [25] = { 67.4, 53.8, 10, 300 }, + [26] = { 62.7, 52.2, 10, 300 }, + [27] = { 36.1, 51.6, 10, 300 }, + [28] = { 29.6, 50.4, 10, 300 }, + [29] = { 64.7, 50.1, 10, 300 }, + [30] = { 12.4, 49, 10, 300 }, + [31] = { 60.6, 47, 10, 300 }, + [32] = { 68, 46.2, 10, 300 }, + [33] = { 60.4, 44, 10, 300 }, + [34] = { 18.2, 43.2, 10, 300 }, + [35] = { 33.8, 42.1, 10, 300 }, + [36] = { 81.3, 40.7, 10, 300 }, + [37] = { 29.3, 39.9, 10, 300 }, + [38] = { 75, 37.3, 10, 300 }, + [39] = { 60.4, 37.2, 10, 300 }, + [40] = { 79.7, 36.5, 10, 300 }, + [41] = { 34, 36.1, 10, 300 }, + [42] = { 83.7, 33, 10, 300 }, + [43] = { 29.8, 32, 10, 300 }, + [44] = { 79.6, 31.7, 10, 300 }, + [45] = { 66, 31.4, 10, 300 }, + [46] = { 58.7, 30.9, 10, 300 }, + [47] = { 21, 30.5, 10, 300 }, + [48] = { 76.5, 29.8, 10, 300 }, + [49] = { 24.6, 29.7, 10, 300 }, + [50] = { 68, 28.1, 10, 300 }, + [51] = { 14.5, 27.6, 10, 300 }, + [52] = { 33.7, 27.4, 10, 300 }, + [53] = { 64.9, 25.7, 10, 300 }, + [54] = { 96.8, 11.1, 10, 300 }, + [55] = { 61.1, 78, 11, 300 }, + [56] = { 62.2, 72.8, 11, 300 }, + [57] = { 65.1, 71.1, 11, 300 }, + [58] = { 53.2, 64.5, 11, 300 }, + [59] = { 63.2, 59.9, 11, 300 }, + [60] = { 61.5, 59.4, 11, 300 }, + [61] = { 65.2, 56.3, 11, 300 }, + [62] = { 22.7, 56.3, 11, 300 }, + [63] = { 62.6, 52.9, 11, 300 }, + [64] = { 23.7, 52.8, 11, 300 }, + [65] = { 68.7, 51.3, 11, 300 }, + [66] = { 21.8, 51.2, 11, 300 }, + [67] = { 49.4, 50, 11, 300 }, + [68] = { 26.5, 48.9, 11, 300 }, + [69] = { 60.1, 48.4, 11, 300 }, + [70] = { 65.4, 47.6, 11, 300 }, + [71] = { 45.9, 46.6, 11, 300 }, + [72] = { 49.7, 45.8, 11, 300 }, + [73] = { 68.8, 45.5, 11, 300 }, + [74] = { 28.9, 45.4, 11, 300 }, + [75] = { 52.2, 44.7, 11, 300 }, + [76] = { 63.1, 43.2, 11, 300 }, + [77] = { 53.9, 43, 11, 300 }, + [78] = { 66.9, 42.8, 11, 300 }, + [79] = { 45.3, 42.2, 11, 300 }, + [80] = { 17.5, 37.6, 11, 300 }, + [81] = { 64.6, 37.2, 11, 300 }, + [82] = { 28.2, 36.7, 11, 300 }, + [83] = { 56.2, 36.7, 11, 300 }, + [84] = { 67.2, 36.6, 11, 300 }, + [85] = { 61, 36, 11, 300 }, + [86] = { 53.8, 35.3, 11, 300 }, + [87] = { 43.5, 34.8, 11, 300 }, + [88] = { 45.5, 34.3, 11, 300 }, + [89] = { 39.2, 34.1, 11, 300 }, + [90] = { 55.7, 33.4, 11, 300 }, + [91] = { 34, 33.2, 11, 300 }, + [92] = { 44.9, 32.2, 11, 300 }, + [93] = { 51.6, 31.8, 11, 300 }, + [94] = { 18.6, 31.2, 11, 300 }, + [95] = { 57.4, 28.7, 11, 300 }, + [96] = { 40.6, 28.4, 11, 300 }, + [97] = { 63.1, 28.4, 11, 300 }, + [98] = { 34.4, 27.9, 11, 300 }, + [99] = { 46.4, 27.6, 11, 300 }, + [100] = { 52.6, 27, 11, 300 }, + [101] = { 62.1, 25.4, 11, 300 }, + [102] = { 43.6, 25.3, 11, 300 }, + [103] = { 53.2, 25.1, 11, 300 }, + [104] = { 22.7, 24.9, 11, 300 }, + [105] = { 59.6, 24.7, 11, 300 }, + [106] = { 24, 24.4, 11, 300 }, + [107] = { 59.1, 24, 11, 300 }, + [108] = { 38, 20.5, 11, 300 }, + [109] = { 35.3, 19.7, 11, 300 }, + [110] = { 20.8, 85.9, 12, 300 }, + [111] = { 95.4, 77.9, 12, 300 }, + [112] = { 30.9, 27, 17, 300 }, + [113] = { 32.1, 25.4, 17, 300 }, + [114] = { 32.9, 21.4, 17, 300 }, + [115] = { 30.6, 20.7, 17, 300 }, + [116] = { 50.1, 98.4, 36, 300 }, + [117] = { 23.7, 97.4, 36, 300 }, + [118] = { 57.7, 96.5, 36, 300 }, + [119] = { 76.2, 92.6, 36, 300 }, + [120] = { 70.3, 86.3, 36, 300 }, + [121] = { 64.2, 80.3, 36, 300 }, + [122] = { 52.6, 80.1, 36, 300 }, + [123] = { 56.5, 74.9, 36, 300 }, + [124] = { 68, 73.3, 38, 300 }, + [125] = { 70.6, 72.4, 38, 300 }, + [126] = { 78.9, 71.8, 38, 300 }, + [127] = { 76.2, 71.6, 38, 300 }, + [128] = { 64.4, 71.3, 38, 300 }, + [129] = { 58, 66.8, 38, 300 }, + [130] = { 75.2, 66.7, 38, 300 }, + [131] = { 77.3, 65.9, 38, 300 }, + [132] = { 75.5, 64.1, 38, 300 }, + [133] = { 62, 57.3, 38, 300 }, + [134] = { 65.2, 53.1, 38, 300 }, + [135] = { 71.5, 53.1, 38, 300 }, + [136] = { 74.9, 51.7, 38, 300 }, + [137] = { 69.8, 51.2, 38, 300 }, + [138] = { 66.7, 48.4, 38, 300 }, + [139] = { 74.4, 46.3, 38, 300 }, + [140] = { 64, 43.4, 38, 300 }, + [141] = { 77.2, 43, 38, 300 }, + [142] = { 65.9, 42.3, 38, 300 }, + [143] = { 55.4, 42, 38, 300 }, + [144] = { 74, 41.6, 38, 300 }, + [145] = { 62, 40, 38, 300 }, + [146] = { 71, 38.5, 38, 300 }, + [147] = { 66.8, 37.8, 38, 300 }, + [148] = { 52.6, 37.5, 38, 300 }, + [149] = { 72.6, 37.2, 38, 300 }, + [150] = { 62.2, 36.3, 38, 300 }, + [151] = { 54.5, 35.9, 38, 300 }, + [152] = { 60.5, 32.2, 38, 300 }, + [153] = { 77.3, 31.3, 38, 300 }, + [154] = { 61.8, 29.4, 38, 300 }, + [155] = { 73.6, 26.7, 38, 300 }, + [156] = { 55, 26.1, 38, 300 }, + [157] = { 68.6, 23.6, 38, 300 }, + [158] = { 71.5, 22.1, 38, 300 }, + [159] = { 50, 21, 38, 300 }, + [160] = { 56.5, 15.2, 38, 300 }, + [161] = { 30.8, 86.1, 40, 300 }, + [162] = { 37.3, 85, 40, 300 }, + [163] = { 31.6, 79.5, 40, 300 }, + [164] = { 39.7, 79.4, 40, 300 }, + [165] = { 51.1, 77.6, 40, 300 }, + [166] = { 37.3, 76.1, 40, 300 }, + [167] = { 71.8, 75.7, 40, 300 }, + [168] = { 56, 74.4, 40, 300 }, + [169] = { 65.2, 73, 40, 300 }, + [170] = { 61.8, 72.5, 40, 300 }, + [171] = { 42, 71.7, 40, 300 }, + [172] = { 70.2, 71.6, 40, 300 }, + [173] = { 31.3, 71.6, 40, 300 }, + [174] = { 52, 70.8, 40, 300 }, + [175] = { 43.7, 70.4, 40, 300 }, + [176] = { 49.9, 69.3, 40, 300 }, + [177] = { 38.2, 68.9, 40, 300 }, + [178] = { 32.4, 68.7, 40, 300 }, + [179] = { 39.5, 68, 40, 300 }, + [180] = { 54.2, 67.8, 40, 300 }, + [181] = { 46.1, 67.4, 40, 300 }, + [182] = { 62.7, 64.7, 40, 300 }, + [183] = { 41.9, 64.7, 40, 300 }, + [184] = { 58.2, 64.7, 40, 300 }, + [185] = { 34.1, 64.1, 40, 300 }, + [186] = { 55.2, 63, 40, 300 }, + [187] = { 35.2, 61.2, 40, 300 }, + [188] = { 64.8, 58.7, 40, 300 }, + [189] = { 66.5, 57.3, 40, 300 }, + [190] = { 30.1, 56.1, 40, 300 }, + [191] = { 62.8, 56, 40, 300 }, + [192] = { 33.9, 55.8, 40, 300 }, + [193] = { 42.6, 55.4, 40, 300 }, + [194] = { 25.1, 55, 40, 300 }, + [195] = { 31.5, 53.1, 40, 300 }, + [196] = { 51.1, 51.7, 40, 300 }, + [197] = { 53.2, 50.8, 40, 300 }, + [198] = { 66.2, 50.1, 40, 300 }, + [199] = { 60.6, 49.7, 40, 300 }, + [200] = { 29.7, 49.2, 40, 300 }, + [201] = { 43.1, 46.5, 40, 300 }, + [202] = { 37.3, 46.1, 40, 300 }, + [203] = { 31.2, 42.8, 40, 300 }, + [204] = { 63.8, 41.2, 40, 300 }, + [205] = { 32.3, 39.4, 40, 300 }, + [206] = { 35.5, 39, 40, 300 }, + [207] = { 35.9, 38.7, 40, 300 }, + [208] = { 34.4, 38.3, 40, 300 }, + [209] = { 62.1, 37.4, 40, 300 }, + [210] = { 53.7, 36.6, 40, 300 }, + [211] = { 35.7, 36.6, 40, 300 }, + [212] = { 36.6, 36.3, 40, 300 }, + [213] = { 36.1, 36.1, 40, 300 }, + [214] = { 36.9, 35.6, 40, 300 }, + [215] = { 36.5, 34.9, 40, 300 }, + [216] = { 37.5, 34.7, 40, 300 }, + [217] = { 46.8, 32.3, 40, 300 }, + [218] = { 36.1, 31.6, 40, 300 }, + [219] = { 39, 31.5, 40, 300 }, + [220] = { 40.4, 29.7, 40, 300 }, + [221] = { 34.6, 26.3, 40, 300 }, + [222] = { 62.9, 22.6, 40, 300 }, + [223] = { 45.6, 19.8, 40, 300 }, + [224] = { 9.7, 92.6, 44, 300 }, + [225] = { 14.3, 91.8, 44, 300 }, + [226] = { 30, 82.5, 44, 300 }, + [227] = { 26.8, 81.8, 44, 300 }, + [228] = { 9.5, 80.6, 44, 300 }, + [229] = { 39.3, 77.2, 44, 300 }, + [230] = { 64.8, 77.1, 44, 300 }, + [231] = { 51.2, 76.2, 44, 300 }, + [232] = { 18.5, 75.9, 44, 300 }, + [233] = { 24.9, 74.8, 44, 300 }, + [234] = { 87.9, 74.7, 44, 300 }, + [235] = { 60.5, 74.4, 44, 300 }, + [236] = { 35.5, 74.1, 44, 300 }, + [237] = { 68.4, 73.3, 44, 300 }, + [238] = { 44.8, 72.6, 44, 300 }, + [239] = { 75.3, 72.2, 44, 300 }, + [240] = { 39.5, 71.4, 44, 300 }, + [241] = { 25.8, 68.6, 44, 300 }, + [242] = { 13.7, 68.2, 44, 300 }, + [243] = { 61.2, 67.7, 44, 300 }, + [244] = { 88.3, 65.5, 44, 300 }, + [245] = { 35.1, 65.4, 44, 300 }, + [246] = { 75.2, 63.6, 44, 300 }, + [247] = { 58.5, 63.5, 44, 300 }, + [248] = { 60.1, 62.6, 44, 300 }, + [249] = { 14, 62.5, 44, 300 }, + [250] = { 19.6, 61, 44, 300 }, + [251] = { 24.9, 58, 44, 300 }, + [252] = { 86.1, 57.6, 44, 300 }, + [253] = { 64.3, 55.9, 44, 300 }, + [254] = { 17.2, 55.6, 44, 300 }, + [255] = { 21, 55.1, 44, 300 }, + [256] = { 71, 53.2, 44, 300 }, + [257] = { 80, 52.4, 44, 300 }, + [258] = { 54.7, 48.2, 44, 300 }, + [259] = { 18.8, 47.5, 44, 300 }, + [260] = { 62.5, 45.6, 44, 300 }, + [261] = { 82.8, 44.9, 44, 300 }, + [262] = { 74.5, 40.2, 44, 300 }, + [263] = { 47.5, 36.3, 44, 300 }, + [264] = { 29.3, 35.1, 44, 300 }, + [265] = { 22.3, 34.4, 44, 300 }, + [266] = { 7.4, 49.5, 45, 300 }, + [267] = { 13.9, 38.4, 45, 300 }, + [268] = { 12.9, 30.7, 45, 300 }, + [269] = { 19.4, 20.8, 45, 300 }, + [270] = { 22.5, 15.4, 45, 300 }, + [271] = { 46.5, 82.4, 130, 300 }, + [272] = { 50.6, 80, 130, 300 }, + [273] = { 46.2, 79.8, 130, 300 }, + [274] = { 59.2, 79.8, 130, 300 }, + [275] = { 63.1, 79.2, 130, 300 }, + [276] = { 59.5, 79.2, 130, 300 }, + [277] = { 60.6, 78.9, 130, 300 }, + [278] = { 56.3, 78.8, 130, 300 }, + [279] = { 57.3, 78, 130, 300 }, + [280] = { 46, 77.5, 130, 300 }, + [281] = { 66.1, 77.3, 130, 300 }, + [282] = { 54.6, 77.2, 130, 300 }, + [283] = { 53.8, 77.2, 130, 300 }, + [284] = { 53.3, 77.1, 130, 300 }, + [285] = { 50.8, 76.7, 130, 300 }, + [286] = { 60.4, 76.4, 130, 300 }, + [287] = { 61.5, 76.4, 130, 300 }, + [288] = { 65, 76.3, 130, 300 }, + [289] = { 48.4, 75.9, 130, 300 }, + [290] = { 62, 75.5, 130, 300 }, + [291] = { 50, 74.1, 130, 300 }, + [292] = { 55.3, 73.6, 130, 300 }, + [293] = { 54.7, 71, 130, 300 }, + [294] = { 51.5, 69.4, 130, 300 }, + [295] = { 50, 68, 130, 300 }, + [296] = { 55.6, 66.9, 130, 300 }, + [297] = { 55.6, 66, 130, 300 }, + [298] = { 52.6, 64.6, 130, 300 }, + [299] = { 53.3, 64, 130, 300 }, + [300] = { 55.6, 62.4, 130, 300 }, + [301] = { 56.8, 60.9, 130, 300 }, + [302] = { 52, 60.7, 130, 300 }, + [303] = { 55.5, 60.2, 130, 300 }, + [304] = { 56.3, 59.2, 130, 300 }, + [305] = { 51.8, 57.4, 130, 300 }, + [306] = { 52, 57.1, 130, 300 }, + [307] = { 52.4, 56.7, 130, 300 }, + [308] = { 55.5, 55.9, 130, 300 }, + [309] = { 52, 55.3, 130, 300 }, + [310] = { 56.4, 53.5, 130, 300 }, + [311] = { 53.1, 52.8, 130, 300 }, + [312] = { 44.9, 52.4, 130, 300 }, + [313] = { 45.5, 52.1, 130, 300 }, + [314] = { 43.5, 51.6, 130, 300 }, + [315] = { 44.5, 49.1, 130, 300 }, + [316] = { 51.8, 49, 130, 300 }, + [317] = { 53.5, 46.5, 130, 300 }, + [318] = { 52, 44.2, 130, 300 }, + [319] = { 54, 44.2, 130, 300 }, + [320] = { 54.6, 42.5, 130, 300 }, + [321] = { 53.4, 41.6, 130, 300 }, + [322] = { 48.1, 40.5, 130, 300 }, + [323] = { 50.3, 39.6, 130, 300 }, + [324] = { 50.9, 39.4, 130, 300 }, + [325] = { 49.2, 36.3, 130, 300 }, + [326] = { 50, 35.7, 130, 300 }, + [327] = { 51.5, 34.8, 130, 300 }, + [328] = { 49.1, 33.6, 130, 300 }, + [329] = { 46.8, 33.5, 130, 300 }, + [330] = { 54.1, 32.7, 130, 300 }, + [331] = { 49, 31.2, 130, 300 }, + [332] = { 41.8, 96.2, 148, 300 }, + [333] = { 35.6, 90, 148, 300 }, + [334] = { 39.8, 89.5, 148, 300 }, + [335] = { 43.5, 88.1, 148, 300 }, + [336] = { 44.4, 87.3, 148, 300 }, + [337] = { 38.9, 82.3, 148, 300 }, + [338] = { 42.8, 81.8, 148, 300 }, + [339] = { 40.7, 80.4, 148, 300 }, + [340] = { 38.8, 74.2, 148, 300 }, + [341] = { 38.9, 70.9, 148, 300 }, + [342] = { 37.9, 70.3, 148, 300 }, + [343] = { 42.4, 69.8, 148, 300 }, + [344] = { 39.6, 68.9, 148, 300 }, + [345] = { 43.2, 66.1, 148, 300 }, + [346] = { 39.1, 65, 148, 300 }, + [347] = { 41.2, 62.5, 148, 300 }, + [348] = { 45.2, 59.3, 148, 300 }, + [349] = { 39.3, 58.9, 148, 300 }, + [350] = { 39.6, 54.9, 148, 300 }, + [351] = { 44.1, 53.1, 148, 300 }, + [352] = { 38.7, 51.6, 148, 300 }, + [353] = { 41.4, 47.6, 148, 300 }, + [354] = { 45.7, 42.7, 148, 300 }, + [355] = { 39.3, 39.7, 148, 300 }, + [356] = { 48.1, 38.6, 148, 300 }, + [357] = { 43.7, 38, 148, 300 }, + [358] = { 39.6, 37.1, 148, 300 }, + [359] = { 39.6, 34.3, 148, 300 }, + [360] = { 47.1, 34.3, 148, 300 }, + [361] = { 42.6, 33.8, 148, 300 }, + [362] = { 45.2, 32.7, 148, 300 }, + [363] = { 48.1, 31, 148, 300 }, + [364] = { 45.6, 29.4, 148, 300 }, + [365] = { 49.9, 27.5, 148, 300 }, + [366] = { 52.5, 27, 148, 300 }, + [367] = { 61, 24.6, 148, 300 }, + [368] = { 47, 24, 148, 300 }, + [369] = { 62.4, 20, 148, 300 }, + [370] = { 61.5, 12.9, 148, 300 }, + [371] = { 60.8, 12.4, 148, 300 }, + [372] = { 59.4, 11.8, 148, 300 }, + [373] = { 62.2, 10.7, 148, 300 }, + [374] = { 68.7, 80.7, 267, 300 }, + [375] = { 68.9, 75.9, 267, 300 }, + [376] = { 64.6, 74.3, 267, 300 }, + [377] = { 29.8, 73.2, 267, 300 }, + [378] = { 28.8, 68.8, 267, 300 }, + [379] = { 66.1, 68.3, 267, 300 }, + [380] = { 76.1, 68.1, 267, 300 }, + [381] = { 32.9, 67.1, 267, 300 }, + [382] = { 35.9, 65.9, 267, 300 }, + [383] = { 59.2, 64.5, 267, 300 }, + [384] = { 62.6, 63.8, 267, 300 }, + [385] = { 40.4, 63.5, 267, 300 }, + [386] = { 27.5, 63.4, 267, 300 }, + [387] = { 44, 62.4, 267, 300 }, + [388] = { 31, 62, 267, 300 }, + [389] = { 74.9, 59.5, 267, 300 }, + [390] = { 58.8, 59.2, 267, 300 }, + [391] = { 36.6, 58.9, 267, 300 }, + [392] = { 28.6, 57.7, 267, 300 }, + [393] = { 32.3, 57.4, 267, 300 }, + [394] = { 28.8, 57.4, 267, 300 }, + [395] = { 37.9, 57.1, 267, 300 }, + [396] = { 63.2, 54.7, 267, 300 }, + [397] = { 46.8, 54.4, 267, 300 }, + [398] = { 75.7, 52.7, 267, 300 }, + [399] = { 44.9, 49.6, 267, 300 }, + [400] = { 82.3, 48.4, 267, 300 }, + [401] = { 18.2, 48.1, 267, 300 }, + [402] = { 69.9, 47.9, 267, 300 }, + [403] = { 47.3, 45.3, 267, 300 }, + [404] = { 8.4, 44.6, 267, 300 }, + [405] = { 19.7, 43.3, 267, 300 }, + [406] = { 51.4, 43.2, 267, 300 }, + [407] = { 25.7, 42.5, 267, 300 }, + [408] = { 85.8, 42.3, 267, 300 }, + [409] = { 12.2, 42, 267, 300 }, + [410] = { 45.2, 40.9, 267, 300 }, + [411] = { 10.9, 40.7, 267, 300 }, + [412] = { 71.6, 40.5, 267, 300 }, + [413] = { 6.9, 39.7, 267, 300 }, + [414] = { 42, 39.6, 267, 300 }, + [415] = { 85.9, 36.8, 267, 300 }, + [416] = { 69, 36.6, 267, 300 }, + [417] = { 35.4, 35.9, 267, 300 }, + [418] = { 44.3, 35.5, 267, 300 }, + [419] = { 52.7, 34.5, 267, 300 }, + [420] = { 80.2, 34.3, 267, 300 }, + [421] = { 29.6, 33.7, 267, 300 }, + [422] = { 59.4, 32.8, 267, 300 }, + [423] = { 75.5, 29.5, 267, 300 }, + [424] = { 70.4, 23.9, 267, 300 }, + [425] = { 65.1, 18.7, 267, 300 }, + [426] = { 54.9, 18.5, 267, 300 }, + [427] = { 58.3, 13.9, 267, 300 }, + [428] = { 63.3, 84.5, 331, 300 }, + [429] = { 71.4, 83.1, 331, 300 }, + [430] = { 66.6, 81.9, 331, 300 }, + [431] = { 51.1, 76.2, 331, 300 }, + [432] = { 67.6, 75.9, 331, 300 }, + [433] = { 65, 74.6, 331, 300 }, + [434] = { 82, 71.8, 331, 300 }, + [435] = { 39.7, 71, 331, 300 }, + [436] = { 85.2, 70.3, 331, 300 }, + [437] = { 55.2, 70.1, 331, 300 }, + [438] = { 80, 69.8, 331, 300 }, + [439] = { 31, 69.3, 331, 300 }, + [440] = { 70.5, 68.9, 331, 300 }, + [441] = { 65.6, 68.3, 331, 300 }, + [442] = { 45.2, 67.7, 331, 300 }, + [443] = { 88.8, 67.3, 331, 300 }, + [444] = { 38.4, 66.4, 331, 300 }, + [445] = { 90.3, 66.2, 331, 300 }, + [446] = { 83.4, 65.3, 331, 300 }, + [447] = { 27.6, 64.7, 331, 300 }, + [448] = { 81.2, 64.3, 331, 300 }, + [449] = { 83.4, 63, 331, 300 }, + [450] = { 90.9, 60.9, 331, 300 }, + [451] = { 22.5, 59.1, 331, 300 }, + [452] = { 92.9, 56.8, 331, 300 }, + [453] = { 83.2, 54.9, 331, 300 }, + [454] = { 75.9, 54.3, 331, 300 }, + [455] = { 83.9, 49.8, 331, 300 }, + [456] = { 72.7, 49.7, 331, 300 }, + [457] = { 91.6, 49.1, 331, 300 }, + [458] = { 88.7, 47.6, 331, 300 }, + [459] = { 81.6, 46.2, 331, 300 }, + [460] = { 60, 45.9, 331, 300 }, + [461] = { 74, 45.5, 331, 300 }, + [462] = { 36.2, 44.8, 331, 300 }, + [463] = { 22.8, 44.5, 331, 300 }, + [464] = { 40.8, 44.3, 331, 300 }, + [465] = { 45.3, 42.7, 331, 300 }, + [466] = { 55.9, 39.8, 331, 300 }, + [467] = { 39.2, 37.6, 331, 300 }, + [468] = { 22.4, 36.2, 331, 300 }, + [469] = { 54.3, 35.6, 331, 300 }, + [470] = { 56.5, 31.6, 331, 300 }, + [471] = { 36.2, 31.5, 331, 300 }, + [472] = { 18.3, 28.3, 331, 300 }, + [473] = { 18.7, 19.6, 331, 300 }, + [474] = { 26, 14.1, 331, 300 }, + [475] = { 53.4, 99.9, 361, 300 }, + [476] = { 55.7, 95.9, 361, 300 }, + [477] = { 77, 96.1, 406, 300 }, + [478] = { 79.4, 92.7, 406, 300 }, + [479] = { 81.1, 84.5, 406, 300 }, + [480] = { 64.6, 83.2, 406, 300 }, + [481] = { 76.2, 83, 406, 300 }, + [482] = { 61.6, 80.8, 406, 300 }, + [483] = { 58.5, 77.8, 406, 300 }, + [484] = { 32.7, 73.7, 406, 300 }, + [485] = { 61, 71.9, 406, 300 }, + [486] = { 29, 70.3, 406, 300 }, + [487] = { 59.9, 69.7, 406, 300 }, + [488] = { 37.1, 68.7, 406, 300 }, + [489] = { 61.7, 64.9, 406, 300 }, + [490] = { 54.6, 64.1, 406, 300 }, + [491] = { 30.1, 63.6, 406, 300 }, + [492] = { 52.3, 63.1, 406, 300 }, + [493] = { 34.7, 61.7, 406, 300 }, + [494] = { 63.4, 60.2, 406, 300 }, + [495] = { 51.9, 58.6, 406, 300 }, + [496] = { 53.3, 56.5, 406, 300 }, + [497] = { 60.8, 55.9, 406, 300 }, + [498] = { 75, 55, 406, 300 }, + [499] = { 51.5, 52.6, 406, 300 }, + [500] = { 78.8, 51.9, 406, 300 }, + [501] = { 75.6, 50.9, 406, 300 }, + [502] = { 75.9, 47.5, 406, 300 }, + [503] = { 60.8, 46.2, 406, 300 }, + [504] = { 45.9, 45, 406, 300 }, + [505] = { 48.9, 44.3, 406, 300 }, + [506] = { 76.2, 43, 406, 300 }, + [507] = { 46.9, 33.1, 406, 300 }, + [508] = { 47.1, 31.3, 406, 300 }, + [509] = { 68.2, 27.9, 406, 300 }, + [510] = { 46.2, 27.6, 406, 300 }, + [511] = { 44.5, 24.2, 406, 300 }, + [512] = { 64.3, 22.5, 406, 300 }, + [513] = { 44, 21.7, 406, 300 }, + [514] = { 34.6, 18.6, 406, 300 }, + [515] = { 58.2, 15.8, 406, 300 }, + [516] = { 40.1, 13.2, 406, 300 }, + [517] = { 31.1, 10.6, 406, 300 }, + [518] = { 38.3, 8.7, 406, 300 }, + [519] = { 35.2, 4.9, 406, 300 }, + }, + }, + [1622] = { + ["coords"] = { + [1] = { 55, 80.4, 10, 300 }, + [2] = { 33.7, 78.5, 10, 300 }, + [3] = { 65.8, 76.6, 10, 300 }, + [4] = { 66.4, 75.7, 10, 300 }, + [5] = { 39.5, 75.4, 10, 300 }, + [6] = { 23.2, 73.8, 10, 300 }, + [7] = { 81.2, 72.5, 10, 300 }, + [8] = { 21.1, 72.2, 10, 300 }, + [9] = { 23.7, 72.1, 10, 300 }, + [10] = { 81.6, 71.4, 10, 300 }, + [11] = { 41.4, 71.1, 10, 300 }, + [12] = { 65.9, 69.9, 10, 300 }, + [13] = { 32.4, 69.4, 10, 300 }, + [14] = { 35.5, 67.6, 10, 300 }, + [15] = { 14.3, 67.4, 10, 300 }, + [16] = { 65.9, 67.4, 10, 300 }, + [17] = { 51.8, 61.9, 10, 300 }, + [18] = { 82.1, 61.2, 10, 300 }, + [19] = { 82, 59.7, 10, 300 }, + [20] = { 82.1, 58.9, 10, 300 }, + [21] = { 77.2, 58.3, 10, 300 }, + [22] = { 71.7, 56.5, 10, 300 }, + [23] = { 57.4, 53.6, 10, 300 }, + [24] = { 35.1, 44.7, 10, 300 }, + [25] = { 20, 44.3, 10, 300 }, + [26] = { 59.4, 42.2, 10, 300 }, + [27] = { 16.2, 38.8, 10, 300 }, + [28] = { 68.7, 38.8, 10, 300 }, + [29] = { 35.4, 37.3, 10, 300 }, + [30] = { 58.5, 35.5, 10, 300 }, + [31] = { 23.4, 35.4, 10, 300 }, + [32] = { 17.6, 34.5, 10, 300 }, + [33] = { 28.3, 31.7, 10, 300 }, + [34] = { 38.6, 30.3, 10, 300 }, + [35] = { 56.8, 29.7, 10, 300 }, + [36] = { 39, 26.2, 10, 300 }, + [37] = { 54.6, 79.2, 11, 300 }, + [38] = { 53.6, 76.1, 11, 300 }, + [39] = { 47.5, 74.9, 11, 300 }, + [40] = { 65.6, 74.1, 11, 300 }, + [41] = { 48.6, 73.8, 11, 300 }, + [42] = { 59.2, 73.2, 11, 300 }, + [43] = { 11.3, 67.5, 11, 300 }, + [44] = { 66.9, 67.4, 11, 300 }, + [45] = { 53.6, 66.7, 11, 300 }, + [46] = { 13.1, 65.5, 11, 300 }, + [47] = { 16, 64.3, 11, 300 }, + [48] = { 66.8, 63.9, 11, 300 }, + [49] = { 16.7, 63.1, 11, 300 }, + [50] = { 53.5, 62.6, 11, 300 }, + [51] = { 22.3, 61.1, 11, 300 }, + [52] = { 66.9, 59.9, 11, 300 }, + [53] = { 13.1, 57.7, 11, 300 }, + [54] = { 24.2, 55.8, 11, 300 }, + [55] = { 50.5, 51.8, 11, 300 }, + [56] = { 35.1, 47.7, 11, 300 }, + [57] = { 33.5, 47.6, 11, 300 }, + [58] = { 27.1, 47.5, 11, 300 }, + [59] = { 30.5, 45.1, 11, 300 }, + [60] = { 28.1, 44.6, 11, 300 }, + [61] = { 35.3, 44.6, 11, 300 }, + [62] = { 47.4, 44.3, 11, 300 }, + [63] = { 71.3, 43.3, 11, 300 }, + [64] = { 32.7, 41.1, 11, 300 }, + [65] = { 69.1, 34.8, 11, 300 }, + [66] = { 63.8, 30.9, 11, 300 }, + [67] = { 66, 30.3, 11, 300 }, + [68] = { 32.2, 29.6, 11, 300 }, + [69] = { 54, 29.3, 11, 300 }, + [70] = { 27.4, 26.4, 11, 300 }, + [71] = { 26.2, 25.8, 11, 300 }, + [72] = { 42.2, 21.5, 11, 300 }, + [73] = { 40.2, 20.5, 11, 300 }, + [74] = { 47.9, 18.1, 11, 300 }, + [75] = { 47.2, 17.9, 11, 300 }, + [76] = { 46.3, 16.2, 11, 300 }, + [77] = { 34.6, 16, 11, 300 }, + [78] = { 48.3, 15.9, 11, 300 }, + [79] = { 34.1, 11.2, 11, 300 }, + [80] = { 18.9, 82.8, 12, 300 }, + [81] = { 19.3, 81, 12, 300 }, + [82] = { 18.3, 80.1, 12, 300 }, + [83] = { 16.7, 78.4, 12, 300 }, + [84] = { 45, 97.4, 17, 300 }, + [85] = { 40.4, 93.1, 17, 300 }, + [86] = { 38.5, 92.7, 17, 300 }, + [87] = { 45.7, 35.3, 17, 300 }, + [88] = { 46.9, 34.8, 17, 604800 }, + [89] = { 46.3, 34.7, 17, 300 }, + [90] = { 46.6, 34.1, 17, 300 }, + [91] = { 45.9, 33.7, 17, 300 }, + [92] = { 45.7, 33.5, 17, 300 }, + [93] = { 47, 32.8, 17, 300 }, + [94] = { 45.9, 32.6, 17, 300 }, + [95] = { 30.8, 26.6, 17, 300 }, + [96] = { 31.7, 26.1, 17, 300 }, + [97] = { 32.5, 25.8, 17, 300 }, + [98] = { 33.2, 24.8, 17, 300 }, + [99] = { 31.2, 24.1, 17, 300 }, + [100] = { 32.9, 24, 17, 300 }, + [101] = { 30.5, 23.8, 17, 300 }, + [102] = { 34.5, 22.4, 17, 300 }, + [103] = { 31.9, 21.7, 17, 300 }, + [104] = { 33.7, 21.2, 17, 300 }, + [105] = { 34.3, 21.2, 17, 300 }, + [106] = { 59.2, 0.6, 17, 300 }, + [107] = { 32.6, 94.1, 28, 300 }, + [108] = { 40.6, 97.8, 36, 300 }, + [109] = { 17.8, 97.5, 36, 300 }, + [110] = { 73.7, 94.9, 36, 300 }, + [111] = { 20.4, 94.6, 36, 300 }, + [112] = { 50.4, 92.4, 36, 300 }, + [113] = { 71.1, 91.9, 36, 300 }, + [114] = { 79.1, 90.9, 36, 300 }, + [115] = { 27.5, 90, 36, 300 }, + [116] = { 19.2, 85.7, 36, 300 }, + [117] = { 17.5, 83.4, 36, 300 }, + [118] = { 73.9, 83.3, 36, 300 }, + [119] = { 12.3, 77.7, 36, 300 }, + [120] = { 65.1, 75.7, 36, 300 }, + [121] = { 64.6, 71.7, 36, 300 }, + [122] = { 65.5, 70.6, 36, 300 }, + [123] = { 68.4, 67.9, 36, 300 }, + [124] = { 19.9, 58.6, 36, 300 }, + [125] = { 20.8, 55.6, 36, 300 }, + [126] = { 35.9, 52.3, 36, 300 }, + [127] = { 40.3, 50.3, 36, 300 }, + [128] = { 63.2, 44.5, 36, 300 }, + [129] = { 61.3, 42.8, 36, 300 }, + [130] = { 39.3, 42.1, 36, 300 }, + [131] = { 42.1, 40.6, 36, 300 }, + [132] = { 79.6, 76.6, 38, 300 }, + [133] = { 81.6, 64.5, 38, 300 }, + [134] = { 73.5, 57.8, 38, 300 }, + [135] = { 70.5, 53.8, 38, 300 }, + [136] = { 69.5, 48.8, 38, 300 }, + [137] = { 73.2, 45.3, 38, 300 }, + [138] = { 70, 45.1, 38, 300 }, + [139] = { 71.5, 44.1, 38, 300 }, + [140] = { 80.8, 39.9, 38, 300 }, + [141] = { 69.3, 32.1, 38, 300 }, + [142] = { 67.6, 31.8, 38, 300 }, + [143] = { 72.1, 29.1, 38, 300 }, + [144] = { 70, 29, 38, 300 }, + [145] = { 68.1, 27.3, 38, 300 }, + [146] = { 77.8, 26.5, 38, 300 }, + [147] = { 65, 23.3, 38, 300 }, + [148] = { 71.5, 18.4, 38, 300 }, + [149] = { 71, 17.8, 38, 300 }, + [150] = { 70.5, 15.6, 38, 300 }, + [151] = { 39.2, 83.7, 40, 300 }, + [152] = { 45.5, 81.7, 40, 300 }, + [153] = { 30.7, 77.5, 40, 300 }, + [154] = { 65.8, 77.3, 40, 300 }, + [155] = { 61.9, 76.2, 40, 300 }, + [156] = { 33.6, 74, 40, 300 }, + [157] = { 42.6, 72.7, 40, 300 }, + [158] = { 44.2, 70.8, 40, 300 }, + [159] = { 63, 69.8, 40, 300 }, + [160] = { 42.2, 66.6, 40, 300 }, + [161] = { 60.1, 59.3, 40, 300 }, + [162] = { 61, 58.2, 40, 300 }, + [163] = { 39.1, 57.5, 40, 300 }, + [164] = { 36.9, 57.3, 40, 300 }, + [165] = { 36.9, 56.9, 40, 300 }, + [166] = { 43.3, 56.1, 40, 300 }, + [167] = { 54.3, 54.8, 40, 300 }, + [168] = { 43.6, 54.7, 40, 300 }, + [169] = { 35, 52.8, 40, 300 }, + [170] = { 56.6, 52.5, 40, 300 }, + [171] = { 57.4, 48.2, 40, 300 }, + [172] = { 41.1, 47.5, 40, 300 }, + [173] = { 37.2, 45.2, 40, 300 }, + [174] = { 31.5, 44.9, 40, 300 }, + [175] = { 59, 43.2, 40, 300 }, + [176] = { 41.5, 40.7, 40, 300 }, + [177] = { 55.8, 31.2, 40, 300 }, + [178] = { 56.2, 30.3, 40, 300 }, + [179] = { 55.7, 30.2, 40, 300 }, + [180] = { 55.1, 27.6, 40, 300 }, + [181] = { 43.2, 26.1, 40, 300 }, + [182] = { 61.8, 25.1, 40, 300 }, + [183] = { 48.3, 25, 40, 300 }, + [184] = { 45, 25, 40, 300 }, + [185] = { 45.3, 23.9, 40, 300 }, + [186] = { 44.8, 23.6, 40, 300 }, + [187] = { 60.8, 22.9, 40, 300 }, + [188] = { 60.4, 22.8, 40, 300 }, + [189] = { 59.6, 22.1, 40, 300 }, + [190] = { 58.4, 21.9, 40, 300 }, + [191] = { 48.6, 21.1, 40, 300 }, + [192] = { 61, 19.6, 40, 300 }, + [193] = { 56.3, 19.4, 40, 300 }, + [194] = { 56.8, 19.2, 40, 300 }, + [195] = { 49.4, 18.7, 40, 300 }, + [196] = { 61.5, 17.7, 40, 300 }, + [197] = { 40.7, 17.4, 40, 300 }, + [198] = { 60.5, 16.9, 40, 300 }, + [199] = { 43.4, 16.9, 40, 300 }, + [200] = { 58.9, 15.2, 40, 300 }, + [201] = { 65, 82.1, 44, 300 }, + [202] = { 38.5, 80.7, 44, 300 }, + [203] = { 69.3, 79.3, 44, 300 }, + [204] = { 61.5, 79, 44, 300 }, + [205] = { 73.8, 76.2, 44, 300 }, + [206] = { 27.9, 76.2, 44, 300 }, + [207] = { 58.5, 76.1, 44, 300 }, + [208] = { 77.8, 73.4, 44, 300 }, + [209] = { 73.6, 72.8, 44, 300 }, + [210] = { 56.8, 72.5, 44, 300 }, + [211] = { 59.8, 72.2, 44, 300 }, + [212] = { 32.2, 71.4, 44, 300 }, + [213] = { 37.2, 71, 44, 300 }, + [214] = { 70.3, 71, 44, 300 }, + [215] = { 44.5, 70.8, 44, 300 }, + [216] = { 63, 69.6, 44, 300 }, + [217] = { 59.3, 69.1, 44, 300 }, + [218] = { 23.6, 64.1, 44, 300 }, + [219] = { 59.8, 63.9, 44, 300 }, + [220] = { 68.4, 63.8, 44, 300 }, + [221] = { 75.7, 62, 44, 300 }, + [222] = { 67.1, 61.3, 44, 300 }, + [223] = { 84.5, 60, 44, 300 }, + [224] = { 69.5, 58.8, 44, 300 }, + [225] = { 81.3, 56.6, 44, 300 }, + [226] = { 75.4, 56.1, 44, 300 }, + [227] = { 67.6, 55.5, 44, 300 }, + [228] = { 65.5, 55.2, 44, 300 }, + [229] = { 80.8, 49.3, 44, 300 }, + [230] = { 61.7, 48.9, 44, 300 }, + [231] = { 84.4, 46.2, 44, 300 }, + [232] = { 77.3, 45.7, 44, 300 }, + [233] = { 51.4, 44.4, 44, 300 }, + [234] = { 37.8, 41.5, 44, 300 }, + [235] = { 40.2, 41.2, 44, 300 }, + [236] = { 49.3, 36.9, 44, 300 }, + [237] = { 81.2, 36.2, 44, 300 }, + [238] = { 49.4, 23.1, 44, 300 }, + [239] = { 41.1, 17.3, 44, 300 }, + [240] = { 47.5, 17.2, 44, 300 }, + [241] = { 38.8, 15.3, 44, 300 }, + [242] = { 34.1, 8.9, 44, 300 }, + [243] = { 26, 96.9, 45, 300 }, + [244] = { 18.3, 67.8, 45, 300 }, + [245] = { 26.8, 66.3, 45, 300 }, + [246] = { 25.1, 63.8, 45, 300 }, + [247] = { 29.2, 63.2, 45, 300 }, + [248] = { 24.6, 59.8, 45, 300 }, + [249] = { 21.9, 59.7, 45, 300 }, + [250] = { 57.1, 40.1, 45, 300 }, + [251] = { 53.6, 39.3, 45, 300 }, + [252] = { 31.8, 30.7, 45, 300 }, + [253] = { 33.4, 30.4, 45, 300 }, + [254] = { 31, 26.8, 45, 300 }, + [255] = { 69.8, 85.7, 46, 300 }, + [256] = { 67.3, 84.7, 130, 300 }, + [257] = { 69, 81.9, 130, 300 }, + [258] = { 47.9, 71.4, 130, 300 }, + [259] = { 47.4, 71, 130, 300 }, + [260] = { 46.7, 69.2, 130, 300 }, + [261] = { 45.7, 68.6, 130, 300 }, + [262] = { 47, 68.2, 130, 300 }, + [263] = { 45.8, 68.1, 130, 300 }, + [264] = { 58.5, 67.3, 130, 300 }, + [265] = { 59.2, 67.1, 130, 300 }, + [266] = { 59.4, 66.5, 130, 300 }, + [267] = { 59.9, 66.1, 130, 300 }, + [268] = { 62.8, 63.7, 130, 300 }, + [269] = { 61.4, 62.5, 130, 300 }, + [270] = { 59.8, 62.2, 130, 300 }, + [271] = { 58.3, 61.7, 130, 300 }, + [272] = { 64, 61.5, 130, 300 }, + [273] = { 49.3, 57.5, 130, 300 }, + [274] = { 64, 57.1, 130, 300 }, + [275] = { 50.5, 55.4, 130, 300 }, + [276] = { 47.6, 55.3, 130, 300 }, + [277] = { 46.2, 54.1, 130, 300 }, + [278] = { 46.9, 51.4, 130, 300 }, + [279] = { 48.9, 46.7, 130, 300 }, + [280] = { 36, 98.8, 148, 300 }, + [281] = { 33.2, 97.7, 148, 300 }, + [282] = { 34, 94.7, 148, 300 }, + [283] = { 31.4, 93.7, 148, 300 }, + [284] = { 33.7, 92.9, 148, 300 }, + [285] = { 30.8, 91.8, 148, 300 }, + [286] = { 38.6, 87.1, 148, 300 }, + [287] = { 36.2, 86.8, 148, 300 }, + [288] = { 36.1, 85.6, 148, 300 }, + [289] = { 36.3, 85.3, 148, 300 }, + [290] = { 35.5, 84.7, 148, 300 }, + [291] = { 42, 62.9, 148, 300 }, + [292] = { 43.5, 60.7, 148, 300 }, + [293] = { 43.2, 58, 148, 300 }, + [294] = { 42.4, 57.3, 148, 300 }, + [295] = { 45.5, 40, 148, 300 }, + [296] = { 45, 37.4, 148, 300 }, + [297] = { 47.9, 37.1, 148, 300 }, + [298] = { 46.3, 37, 148, 300 }, + [299] = { 47.9, 36.2, 148, 300 }, + [300] = { 56.8, 22, 148, 300 }, + [301] = { 59.6, 22, 148, 300 }, + [302] = { 57.6, 21.6, 148, 300 }, + [303] = { 61.7, 20.5, 148, 300 }, + [304] = { 66.6, 69.6, 267, 300 }, + [305] = { 39.3, 67.4, 267, 300 }, + [306] = { 41.4, 67.2, 267, 300 }, + [307] = { 71.1, 64.8, 267, 300 }, + [308] = { 69.1, 63.7, 267, 300 }, + [309] = { 45, 63.6, 267, 300 }, + [310] = { 37.9, 61.9, 267, 300 }, + [311] = { 41.9, 59.7, 267, 300 }, + [312] = { 58.5, 57.6, 267, 300 }, + [313] = { 69.9, 56.1, 267, 300 }, + [314] = { 71.4, 54.9, 267, 300 }, + [315] = { 27.5, 54.9, 267, 300 }, + [316] = { 17.5, 54.9, 267, 300 }, + [317] = { 36.1, 54.3, 267, 300 }, + [318] = { 64.8, 54.1, 267, 300 }, + [319] = { 16.4, 53.5, 267, 300 }, + [320] = { 37, 53.4, 267, 300 }, + [321] = { 57.7, 52.4, 267, 300 }, + [322] = { 13.8, 51.8, 267, 300 }, + [323] = { 18.5, 51.8, 267, 300 }, + [324] = { 48.5, 50.8, 267, 300 }, + [325] = { 44.2, 49.1, 267, 300 }, + [326] = { 16.1, 48.1, 267, 300 }, + [327] = { 44.4, 46.4, 267, 300 }, + [328] = { 79.5, 45.7, 267, 300 }, + [329] = { 29.3, 42, 267, 300 }, + [330] = { 41, 41, 267, 300 }, + [331] = { 22, 40.8, 267, 300 }, + [332] = { 77.4, 40.6, 267, 300 }, + [333] = { 30.9, 40.5, 267, 300 }, + [334] = { 40.3, 39.6, 267, 300 }, + [335] = { 41.1, 38.8, 267, 300 }, + [336] = { 44.4, 34, 267, 300 }, + [337] = { 24.4, 33.7, 267, 300 }, + [338] = { 73.3, 31.5, 267, 300 }, + [339] = { 26.7, 31.2, 267, 300 }, + [340] = { 81.5, 30.6, 267, 300 }, + [341] = { 52.9, 29.3, 267, 300 }, + [342] = { 71.1, 28.8, 267, 300 }, + [343] = { 78.1, 28, 267, 300 }, + [344] = { 32.9, 27.2, 267, 300 }, + [345] = { 8, 24.3, 267, 300 }, + [346] = { 25.7, 23.4, 267, 300 }, + [347] = { 24.2, 21.4, 267, 300 }, + [348] = { 9.5, 21.3, 267, 300 }, + [349] = { 73.5, 21.3, 267, 300 }, + [350] = { 19.7, 16.4, 267, 300 }, + [351] = { 9.5, 15.5, 267, 300 }, + [352] = { 65.8, 14.7, 267, 300 }, + [353] = { 65.4, 11.2, 267, 300 }, + [354] = { 66.2, 10.2, 267, 300 }, + [355] = { 68.7, 7.9, 267, 300 }, + [356] = { 88, 80.6, 331, 300 }, + [357] = { 81.8, 79.9, 331, 300 }, + [358] = { 61.4, 78.9, 331, 300 }, + [359] = { 84.7, 78.4, 331, 300 }, + [360] = { 57, 78.3, 331, 300 }, + [361] = { 82.9, 77.5, 331, 300 }, + [362] = { 88.4, 76.9, 331, 300 }, + [363] = { 85.3, 76.8, 331, 300 }, + [364] = { 75.6, 74.6, 331, 300 }, + [365] = { 72.1, 73.9, 331, 300 }, + [366] = { 69.7, 73.8, 331, 300 }, + [367] = { 60.6, 73.4, 331, 300 }, + [368] = { 53.2, 72, 331, 300 }, + [369] = { 59.2, 71.2, 331, 300 }, + [370] = { 55.6, 70.9, 331, 300 }, + [371] = { 77.6, 68.5, 331, 300 }, + [372] = { 57.9, 64.2, 331, 300 }, + [373] = { 54.5, 64, 331, 300 }, + [374] = { 56.4, 63.5, 331, 300 }, + [375] = { 39.6, 62.1, 331, 300 }, + [376] = { 55.3, 61.7, 331, 300 }, + [377] = { 47.1, 61.5, 331, 300 }, + [378] = { 79.6, 61.2, 331, 300 }, + [379] = { 62.2, 61.1, 331, 300 }, + [380] = { 53.9, 60.8, 331, 300 }, + [381] = { 32.5, 59.9, 331, 300 }, + [382] = { 92.3, 59.6, 331, 300 }, + [383] = { 50, 59.3, 331, 300 }, + [384] = { 58.3, 57.3, 331, 300 }, + [385] = { 66.6, 57.2, 331, 300 }, + [386] = { 67.5, 55.6, 331, 300 }, + [387] = { 66.6, 54, 331, 300 }, + [388] = { 34.6, 54, 331, 300 }, + [389] = { 92.5, 51.6, 331, 300 }, + [390] = { 81.8, 51.1, 331, 300 }, + [391] = { 25.8, 50.6, 331, 300 }, + [392] = { 24.5, 49.1, 331, 300 }, + [393] = { 81, 48.7, 331, 300 }, + [394] = { 90.1, 45.5, 331, 300 }, + [395] = { 30.3, 44.8, 331, 300 }, + [396] = { 77.8, 44.4, 331, 300 }, + [397] = { 77.8, 42.2, 331, 300 }, + [398] = { 18.8, 41.7, 331, 300 }, + [399] = { 31.3, 38.8, 331, 300 }, + [400] = { 38.1, 34.8, 331, 300 }, + [401] = { 31.7, 31.6, 331, 300 }, + [402] = { 15.1, 31.6, 331, 300 }, + [403] = { 22.5, 31.3, 331, 300 }, + [404] = { 13.3, 27, 331, 300 }, + [405] = { 15.3, 25.2, 331, 300 }, + [406] = { 13.9, 24.9, 331, 300 }, + [407] = { 19.4, 17, 331, 300 }, + [408] = { 16.2, 15.7, 331, 300 }, + [409] = { 17, 12.3, 331, 300 }, + [410] = { 14.1, 11.2, 331, 300 }, + [411] = { 16.8, 10.3, 331, 300 }, + [412] = { 13.5, 9, 331, 300 }, + [413] = { 91.9, 49.3, 357, 300 }, + [414] = { 92.8, 43.9, 357, 300 }, + [415] = { 91, 40.4, 357, 300 }, + [416] = { 76.7, 92.2, 400, 300 }, + [417] = { 67.9, 90.3, 400, 300 }, + [418] = { 82.5, 89.6, 400, 300 }, + [419] = { 69, 86.3, 400, 300 }, + [420] = { 86.5, 84.4, 400, 300 }, + [421] = { 68.3, 84.1, 400, 300 }, + [422] = { 66.4, 82.3, 400, 300 }, + [423] = { 69.7, 75.8, 400, 300 }, + [424] = { 69.8, 71.4, 400, 300 }, + [425] = { 68.3, 66.1, 400, 300 }, + [426] = { 67.4, 63.2, 400, 300 }, + [427] = { 88, 60.7, 400, 300 }, + [428] = { 51.8, 54.6, 400, 300 }, + [429] = { 71, 54.2, 400, 300 }, + [430] = { 34.5, 53.9, 400, 300 }, + [431] = { 59.2, 53.5, 400, 300 }, + [432] = { 80.8, 51.5, 400, 300 }, + [433] = { 64.9, 50.8, 400, 300 }, + [434] = { 55.8, 48.3, 400, 300 }, + [435] = { 51.9, 42.7, 400, 300 }, + [436] = { 46.2, 41.6, 400, 300 }, + [437] = { 27.8, 40.7, 400, 300 }, + [438] = { 21.7, 40.7, 400, 300 }, + [439] = { 36.5, 39.7, 400, 300 }, + [440] = { 42, 37, 400, 300 }, + [441] = { 34.2, 34.2, 400, 300 }, + [442] = { 15.2, 30.9, 400, 300 }, + [443] = { 14.1, 26.9, 400, 300 }, + [444] = { 23.7, 24.3, 400, 300 }, + [445] = { 19.3, 23.4, 400, 300 }, + [446] = { 11.6, 23.4, 400, 300 }, + [447] = { 16.3, 18.3, 400, 300 }, + [448] = { 13, 14.8, 400, 300 }, + [449] = { 10.2, 9.2, 400, 300 }, + [450] = { 48.6, 78.7, 405, 300 }, + [451] = { 50.5, 77.4, 405, 300 }, + [452] = { 50.4, 73.4, 405, 300 }, + [453] = { 52.4, 72.9, 405, 300 }, + [454] = { 50.1, 71, 405, 300 }, + [455] = { 51.5, 70.5, 405, 300 }, + [456] = { 51.7, 69.9, 405, 300 }, + [457] = { 62.2, 63.6, 405, 300 }, + [458] = { 39, 62, 405, 300 }, + [459] = { 29.6, 62, 405, 300 }, + [460] = { 35.3, 60.5, 405, 300 }, + [461] = { 34.2, 56.9, 405, 300 }, + [462] = { 34.4, 56.7, 405, 300 }, + [463] = { 29.6, 53.3, 405, 300 }, + [464] = { 29, 53.3, 405, 300 }, + [465] = { 64.3, 51.2, 405, 300 }, + [466] = { 64.2, 44.8, 405, 300 }, + [467] = { 61.3, 44.1, 405, 300 }, + [468] = { 51.9, 43.6, 405, 300 }, + [469] = { 55.2, 30.4, 405, 300 }, + [470] = { 53.2, 29.5, 405, 300 }, + [471] = { 52, 29.1, 405, 300 }, + [472] = { 53.2, 28.2, 405, 300 }, + [473] = { 55.9, 27.2, 405, 300 }, + [474] = { 53.7, 26.5, 405, 300 }, + [475] = { 75.9, 26, 405, 300 }, + [476] = { 79, 24.9, 405, 300 }, + [477] = { 78.7, 22.1, 405, 300 }, + [478] = { 72, 18.9, 405, 300 }, + [479] = { 74.8, 18.6, 405, 300 }, + [480] = { 77.3, 18.1, 405, 300 }, + [481] = { 76.6, 95.3, 406, 300 }, + [482] = { 78.5, 94.2, 406, 300 }, + [483] = { 75.6, 93.8, 406, 300 }, + [484] = { 80.1, 93.7, 406, 300 }, + [485] = { 81.7, 91.6, 406, 300 }, + [486] = { 69.4, 90.7, 406, 300 }, + [487] = { 77.5, 90, 406, 300 }, + [488] = { 81, 89.9, 406, 300 }, + [489] = { 74.1, 89.8, 406, 300 }, + [490] = { 76.1, 89.4, 406, 300 }, + [491] = { 84.2, 86.5, 406, 300 }, + [492] = { 64, 86.2, 406, 300 }, + [493] = { 78.9, 85.1, 406, 300 }, + [494] = { 60.9, 84.8, 406, 300 }, + [495] = { 82.7, 84, 406, 300 }, + [496] = { 84, 84, 406, 300 }, + [497] = { 59.1, 82.1, 406, 300 }, + [498] = { 58.4, 73.3, 406, 300 }, + [499] = { 28.2, 71.9, 406, 300 }, + [500] = { 27.5, 68.7, 406, 300 }, + [501] = { 27.9, 68.6, 406, 300 }, + [502] = { 34.9, 66.6, 406, 300 }, + [503] = { 38.6, 66.2, 406, 300 }, + [504] = { 36.7, 65.4, 406, 300 }, + [505] = { 31.3, 65.1, 406, 300 }, + [506] = { 63.4, 63.2, 406, 300 }, + [507] = { 28.6, 62.4, 406, 300 }, + [508] = { 35.5, 62.2, 406, 300 }, + [509] = { 32.8, 61.4, 406, 300 }, + [510] = { 60.1, 59.7, 406, 300 }, + [511] = { 30.5, 59.5, 406, 300 }, + [512] = { 74, 59.1, 406, 300 }, + [513] = { 73.3, 58.1, 406, 300 }, + [514] = { 30.9, 57.8, 406, 300 }, + [515] = { 66.9, 53.2, 406, 300 }, + [516] = { 74.2, 52.8, 406, 300 }, + [517] = { 78.4, 51.8, 406, 300 }, + [518] = { 36.3, 51.8, 406, 300 }, + [519] = { 66.5, 51.5, 406, 300 }, + [520] = { 37, 50.1, 406, 300 }, + [521] = { 65.4, 48.7, 406, 300 }, + [522] = { 61.9, 47.8, 406, 300 }, + [523] = { 72.2, 47.4, 406, 300 }, + [524] = { 73.8, 46.9, 406, 300 }, + [525] = { 45.6, 46.9, 406, 300 }, + [526] = { 53.5, 45.3, 406, 300 }, + [527] = { 76.9, 44.3, 406, 300 }, + [528] = { 73.9, 44.2, 406, 300 }, + [529] = { 40, 43.7, 406, 300 }, + [530] = { 51, 43.5, 406, 300 }, + [531] = { 44.2, 42.6, 406, 300 }, + [532] = { 70, 41.4, 406, 300 }, + [533] = { 50.4, 38.6, 406, 300 }, + [534] = { 49.1, 35.6, 406, 300 }, + [535] = { 53.6, 33.9, 406, 300 }, + [536] = { 49, 32.4, 406, 300 }, + [537] = { 36.6, 21.8, 406, 300 }, + [538] = { 36.8, 19.9, 406, 300 }, + [539] = { 39.7, 18.7, 406, 300 }, + [540] = { 35.1, 17.2, 406, 300 }, + [541] = { 37.4, 16.1, 406, 300 }, + [542] = { 29.7, 15, 406, 300 }, + [543] = { 32.5, 12.4, 406, 300 }, + [544] = { 32, 12.3, 406, 300 }, + [545] = { 36.8, 7.7, 406, 300 }, + [546] = { 34.3, 7.1, 406, 300 }, + [547] = { 31.6, 5.4, 406, 300 }, + }, + }, + [1623] = { + ["coords"] = { + [1] = { 10.8, 88.6, 3, 300 }, + [2] = { 15.6, 88.5, 3, 300 }, + [3] = { 42.3, 86.1, 3, 300 }, + [4] = { 57.1, 83.3, 3, 300 }, + [5] = { 4.4, 82.9, 3, 300 }, + [6] = { 54.1, 82.5, 3, 300 }, + [7] = { 44.8, 82.4, 3, 300 }, + [8] = { 6.3, 74.7, 3, 300 }, + [9] = { 51.8, 44.5, 3, 300 }, + [10] = { 22.6, 43, 3, 300 }, + [11] = { 18.5, 40.9, 3, 300 }, + [12] = { 53.6, 39.8, 3, 300 }, + [13] = { 12.8, 38, 3, 300 }, + [14] = { 72.2, 35.2, 3, 300 }, + [15] = { 15.9, 34.2, 3, 300 }, + [16] = { 68, 33, 3, 300 }, + [17] = { 43, 80.2, 10, 300 }, + [18] = { 36.8, 79.6, 10, 300 }, + [19] = { 76.5, 78.1, 10, 300 }, + [20] = { 29.9, 77.8, 10, 300 }, + [21] = { 78.8, 77.8, 10, 300 }, + [22] = { 43.9, 58, 10, 300 }, + [23] = { 40.8, 57.8, 10, 300 }, + [24] = { 53.1, 54.3, 10, 300 }, + [25] = { 84.6, 51.2, 10, 300 }, + [26] = { 56.9, 48.5, 10, 300 }, + [27] = { 37, 46.7, 10, 300 }, + [28] = { 87.7, 45.6, 10, 300 }, + [29] = { 57.5, 42.5, 10, 300 }, + [30] = { 35.8, 39.3, 10, 300 }, + [31] = { 86.1, 34.6, 10, 300 }, + [32] = { 37.2, 33.6, 10, 300 }, + [33] = { 56.5, 30.4, 10, 300 }, + [34] = { 54.8, 26, 10, 300 }, + [35] = { 45.1, 21.1, 10, 300 }, + [36] = { 47.1, 74.9, 11, 300 }, + [37] = { 68.3, 55.6, 11, 300 }, + [38] = { 52.5, 55.2, 11, 300 }, + [39] = { 53.8, 53.1, 11, 300 }, + [40] = { 49.5, 52.4, 11, 300 }, + [41] = { 36.4, 52.2, 11, 300 }, + [42] = { 33.3, 52, 11, 300 }, + [43] = { 49, 51.7, 11, 300 }, + [44] = { 73.7, 49.7, 11, 300 }, + [45] = { 39.3, 49.4, 11, 300 }, + [46] = { 30, 48.6, 11, 300 }, + [47] = { 52.6, 47.8, 11, 300 }, + [48] = { 40.9, 46.9, 11, 300 }, + [49] = { 31.2, 46.5, 11, 300 }, + [50] = { 37.9, 45.9, 11, 300 }, + [51] = { 50.6, 45.6, 11, 300 }, + [52] = { 74.4, 44.9, 11, 300 }, + [53] = { 32.8, 44.6, 11, 300 }, + [54] = { 81, 42.6, 11, 300 }, + [55] = { 37.6, 41.1, 11, 300 }, + [56] = { 37.7, 40.8, 11, 300 }, + [57] = { 44.5, 40.8, 11, 300 }, + [58] = { 77.2, 40.3, 11, 300 }, + [59] = { 66.6, 38.4, 11, 300 }, + [60] = { 73.9, 35.7, 11, 300 }, + [61] = { 66.6, 34.1, 11, 300 }, + [62] = { 69.2, 33.4, 11, 300 }, + [63] = { 61.9, 22.4, 11, 300 }, + [64] = { 58.7, 20.6, 11, 300 }, + [65] = { 40.1, 18.6, 11, 300 }, + [66] = { 48.5, 18.4, 11, 300 }, + [67] = { 37.1, 16.9, 11, 300 }, + [68] = { 26.6, 56.6, 15, 300 }, + [69] = { 26.6, 40, 15, 300 }, + [70] = { 45.9, 96.3, 17, 300 }, + [71] = { 45.3, 95.5, 17, 300 }, + [72] = { 40.8, 94.4, 17, 300 }, + [73] = { 41, 92.8, 17, 300 }, + [74] = { 39.1, 92.5, 17, 300 }, + [75] = { 45.1, 90, 17, 300 }, + [76] = { 48.3, 87.4, 17, 300 }, + [77] = { 46.5, 86.2, 17, 300 }, + [78] = { 43.5, 84.6, 17, 300 }, + [79] = { 49.3, 83.3, 17, 300 }, + [80] = { 44.7, 82.8, 17, 300 }, + [81] = { 49.6, 81, 17, 300 }, + [82] = { 39.9, 80.4, 17, 300 }, + [83] = { 40.9, 78.6, 17, 300 }, + [84] = { 43.1, 77.6, 17, 300 }, + [85] = { 43.2, 75.3, 17, 300 }, + [86] = { 49.3, 74.7, 17, 300 }, + [87] = { 43.4, 73.2, 17, 300 }, + [88] = { 48.5, 72.9, 17, 300 }, + [89] = { 42.3, 68.5, 17, 300 }, + [90] = { 48, 68.5, 17, 300 }, + [91] = { 45.8, 64.8, 17, 300 }, + [92] = { 49, 64.8, 17, 300 }, + [93] = { 53.7, 56.5, 17, 300 }, + [94] = { 60.1, 54.2, 17, 300 }, + [95] = { 54.5, 53.3, 17, 300 }, + [96] = { 51.9, 52.1, 17, 300 }, + [97] = { 42.4, 51.7, 17, 300 }, + [98] = { 59.4, 46.6, 17, 300 }, + [99] = { 31.4, 26.6, 17, 300 }, + [100] = { 34.1, 23.7, 17, 300 }, + [101] = { 31.5, 22.8, 17, 300 }, + [102] = { 32.7, 22.4, 17, 300 }, + [103] = { 35.1, 21.7, 17, 300 }, + [104] = { 33.1, 69.9, 33, 300 }, + [105] = { 33.6, 67.6, 33, 300 }, + [106] = { 27.5, 64.5, 33, 300 }, + [107] = { 28.5, 64.2, 33, 300 }, + [108] = { 35.6, 64.1, 33, 300 }, + [109] = { 32.4, 64, 33, 300 }, + [110] = { 26.1, 63.7, 33, 300 }, + [111] = { 25.4, 63.3, 33, 300 }, + [112] = { 27, 62.6, 33, 300 }, + [113] = { 28.1, 62.5, 33, 300 }, + [114] = { 32.5, 61.9, 33, 300 }, + [115] = { 34.8, 61.6, 33, 300 }, + [116] = { 28.2, 61.6, 33, 300 }, + [117] = { 26.7, 61.4, 33, 300 }, + [118] = { 38.3, 61.1, 33, 300 }, + [119] = { 26.7, 60.5, 33, 300 }, + [120] = { 29.3, 60.1, 33, 300 }, + [121] = { 34.6, 56.3, 33, 300 }, + [122] = { 31.8, 55.1, 33, 300 }, + [123] = { 27, 54.9, 33, 300 }, + [124] = { 30.2, 52.3, 33, 300 }, + [125] = { 38.2, 49, 33, 300 }, + [126] = { 46.4, 45.1, 33, 300 }, + [127] = { 42.3, 45, 33, 300 }, + [128] = { 49.8, 43.6, 33, 300 }, + [129] = { 42.9, 43.4, 33, 300 }, + [130] = { 48.4, 43.2, 33, 300 }, + [131] = { 41.5, 42, 33, 300 }, + [132] = { 49.4, 39.5, 33, 300 }, + [133] = { 45.8, 38.8, 33, 300 }, + [134] = { 38.1, 35.5, 33, 300 }, + [135] = { 51.5, 34.3, 33, 300 }, + [136] = { 50.8, 29.4, 33, 300 }, + [137] = { 49.9, 26.5, 33, 300 }, + [138] = { 35.3, 24.8, 33, 300 }, + [139] = { 51, 24.5, 33, 300 }, + [140] = { 33.6, 24.2, 33, 300 }, + [141] = { 48.7, 21.3, 33, 300 }, + [142] = { 51, 20.2, 33, 300 }, + [143] = { 51, 19.2, 33, 300 }, + [144] = { 26.9, 17.8, 33, 300 }, + [145] = { 28, 17.8, 33, 300 }, + [146] = { 32.3, 17.3, 33, 300 }, + [147] = { 25.6, 17.2, 33, 300 }, + [148] = { 34, 16.7, 33, 300 }, + [149] = { 24.1, 16.4, 33, 300 }, + [150] = { 46, 15.8, 33, 300 }, + [151] = { 24.2, 14.5, 33, 300 }, + [152] = { 29.7, 14.1, 33, 300 }, + [153] = { 23.1, 14, 33, 300 }, + [154] = { 50.5, 13.6, 33, 300 }, + [155] = { 27, 13.5, 33, 300 }, + [156] = { 46.1, 12.8, 33, 300 }, + [157] = { 18.6, 10.1, 33, 300 }, + [158] = { 26.6, 9.9, 33, 300 }, + [159] = { 20.7, 9.9, 33, 300 }, + [160] = { 31.1, 9.2, 33, 300 }, + [161] = { 49.4, 8.9, 33, 300 }, + [162] = { 26.9, 8.1, 33, 300 }, + [163] = { 29.6, 7, 33, 300 }, + [164] = { 40.4, 6.9, 33, 300 }, + [165] = { 33.6, 5.8, 33, 300 }, + [166] = { 46.1, 5.7, 33, 300 }, + [167] = { 47.7, 5.7, 33, 300 }, + [168] = { 17.1, 96.7, 36, 300 }, + [169] = { 65, 95.1, 36, 300 }, + [170] = { 35.7, 93.8, 36, 300 }, + [171] = { 71.5, 93.7, 36, 300 }, + [172] = { 77.2, 92, 36, 300 }, + [173] = { 90.7, 87.3, 36, 300 }, + [174] = { 51.8, 82.5, 36, 300 }, + [175] = { 75.7, 81.6, 36, 300 }, + [176] = { 50.9, 77.8, 36, 300 }, + [177] = { 72.7, 75.7, 36, 300 }, + [178] = { 64.4, 74.2, 36, 300 }, + [179] = { 51.2, 79.9, 45, 300 }, + [180] = { 52.7, 78.4, 45, 300 }, + [181] = { 41.8, 77.1, 45, 300 }, + [182] = { 69.3, 76, 45, 300 }, + [183] = { 21, 75.8, 45, 300 }, + [184] = { 59, 75.5, 45, 300 }, + [185] = { 63.7, 75.1, 45, 300 }, + [186] = { 66.5, 74.7, 45, 300 }, + [187] = { 22.1, 73.8, 45, 300 }, + [188] = { 24.2, 71.7, 45, 300 }, + [189] = { 17.6, 71.4, 45, 300 }, + [190] = { 58.7, 70.7, 45, 300 }, + [191] = { 26.1, 70.6, 45, 300 }, + [192] = { 37.2, 70.2, 45, 300 }, + [193] = { 30.3, 70.1, 45, 300 }, + [194] = { 16.1, 68.8, 45, 300 }, + [195] = { 34.1, 68.6, 45, 300 }, + [196] = { 73.8, 67.6, 45, 300 }, + [197] = { 16, 64.4, 45, 300 }, + [198] = { 73.6, 57.9, 45, 300 }, + [199] = { 8.8, 54.1, 45, 300 }, + [200] = { 6.4, 52.8, 45, 300 }, + [201] = { 9.5, 52.2, 45, 300 }, + [202] = { 27.4, 46.6, 45, 300 }, + [203] = { 35.3, 45.2, 45, 300 }, + [204] = { 32.2, 44.4, 45, 300 }, + [205] = { 32.8, 43.5, 45, 300 }, + [206] = { 34.9, 42.6, 45, 300 }, + [207] = { 82.7, 39.1, 45, 300 }, + [208] = { 80.4, 38.4, 45, 300 }, + [209] = { 81.6, 37.2, 45, 300 }, + [210] = { 81.7, 35.7, 45, 300 }, + [211] = { 48.7, 34, 45, 300 }, + [212] = { 79.6, 32.9, 45, 300 }, + [213] = { 49.3, 32.7, 45, 300 }, + [214] = { 55, 31.6, 45, 300 }, + [215] = { 46.2, 31.2, 45, 300 }, + [216] = { 43.8, 30.4, 45, 300 }, + [217] = { 62.3, 28.6, 45, 300 }, + [218] = { 42.9, 28, 45, 300 }, + [219] = { 40.9, 26.4, 45, 300 }, + [220] = { 67.2, 26.1, 45, 300 }, + [221] = { 39.6, 25.9, 45, 300 }, + [222] = { 70.7, 25.7, 45, 300 }, + [223] = { 36.7, 23.6, 45, 300 }, + [224] = { 37.7, 23.1, 45, 300 }, + [225] = { 35, 22.6, 45, 300 }, + [226] = { 35.1, 21.5, 45, 300 }, + [227] = { 33.2, 20.8, 45, 300 }, + [228] = { 38.1, 20.4, 45, 300 }, + [229] = { 32.2, 18.6, 45, 300 }, + [230] = { 97.8, 14.7, 46, 300 }, + [231] = { 47.7, 86.3, 47, 300 }, + [232] = { 17.2, 81.4, 47, 300 }, + [233] = { 4.8, 66.7, 47, 300 }, + [234] = { 4.7, 62.2, 47, 300 }, + [235] = { 83.6, 78.3, 51, 300 }, + [236] = { 72.3, 80.1, 215, 300 }, + [237] = { 70.3, 85.8, 267, 300 }, + [238] = { 67.7, 84.5, 267, 300 }, + [239] = { 17.1, 84.3, 267, 300 }, + [240] = { 71.1, 83.8, 267, 300 }, + [241] = { 17.6, 81.1, 267, 300 }, + [242] = { 64.2, 75.1, 267, 300 }, + [243] = { 62.6, 73.3, 267, 300 }, + [244] = { 60.3, 70.2, 267, 300 }, + [245] = { 69.5, 66.3, 267, 300 }, + [246] = { 71.1, 56.4, 267, 300 }, + [247] = { 64, 53.9, 267, 300 }, + [248] = { 63.2, 52.5, 267, 300 }, + [249] = { 70.3, 41.9, 267, 300 }, + [250] = { 69.4, 39.1, 267, 300 }, + [251] = { 69.3, 37.6, 267, 300 }, + [252] = { 88.7, 37, 267, 300 }, + [253] = { 86.3, 34.5, 267, 300 }, + [254] = { 23.8, 33.1, 267, 300 }, + [255] = { 65.8, 31.6, 267, 300 }, + [256] = { 40.1, 30.5, 267, 300 }, + [257] = { 71.4, 30.4, 267, 300 }, + [258] = { 88.4, 30.2, 267, 300 }, + [259] = { 76.4, 28.9, 267, 300 }, + [260] = { 88.2, 24.8, 267, 300 }, + [261] = { 54.2, 20.6, 267, 300 }, + [262] = { 75.1, 19.8, 267, 300 }, + [263] = { 53.4, 16.5, 267, 300 }, + [264] = { 72.5, 14.7, 267, 300 }, + [265] = { 65.2, 13.4, 267, 300 }, + [266] = { 84.4, 80.4, 331, 300 }, + [267] = { 88.1, 77, 331, 300 }, + [268] = { 85.6, 76.9, 331, 300 }, + [269] = { 90.2, 76.9, 331, 300 }, + [270] = { 82.2, 76.8, 331, 300 }, + [271] = { 67, 67, 331, 300 }, + [272] = { 25.1, 59.6, 331, 300 }, + [273] = { 18.1, 59.2, 331, 300 }, + [274] = { 72.9, 58.2, 331, 300 }, + [275] = { 73.1, 58.1, 331, 300 }, + [276] = { 43.2, 51.2, 331, 300 }, + [277] = { 68.9, 49, 331, 300 }, + [278] = { 15, 46.1, 331, 300 }, + [279] = { 79.6, 44.9, 331, 300 }, + [280] = { 47.1, 42.3, 331, 300 }, + [281] = { 54.2, 29, 331, 300 }, + [282] = { 94.3, 46.9, 357, 300 }, + [283] = { 92.1, 41.6, 357, 300 }, + [284] = { 53.3, 93.3, 361, 300 }, + [285] = { 65.7, 87.5, 400, 300 }, + [286] = { 88.8, 61.1, 400, 300 }, + [287] = { 65.1, 60.6, 400, 300 }, + [288] = { 61.3, 58.6, 400, 300 }, + [289] = { 38, 52.7, 400, 300 }, + [290] = { 83.1, 52.2, 400, 300 }, + [291] = { 29.8, 51.2, 400, 300 }, + [292] = { 63.2, 51.1, 400, 300 }, + [293] = { 74.7, 50.9, 400, 300 }, + [294] = { 35.5, 48.7, 400, 300 }, + [295] = { 59.6, 48.6, 400, 300 }, + [296] = { 52.2, 47.7, 400, 300 }, + [297] = { 27.8, 44.5, 400, 300 }, + [298] = { 48.7, 44.4, 400, 300 }, + [299] = { 18, 40.6, 400, 300 }, + [300] = { 9.9, 39.4, 400, 300 }, + [301] = { 27.3, 39, 400, 300 }, + [302] = { 14.5, 38.6, 400, 300 }, + [303] = { 12.7, 36.5, 400, 300 }, + [304] = { 21.5, 35.4, 400, 300 }, + [305] = { 18.6, 31.7, 400, 300 }, + [306] = { 36.1, 31.7, 400, 300 }, + [307] = { 13.9, 31.6, 400, 300 }, + [308] = { 10.9, 30.4, 400, 300 }, + [309] = { 34.9, 29.7, 400, 300 }, + [310] = { 24.5, 27.2, 400, 300 }, + [311] = { 25, 23.5, 400, 300 }, + [312] = { 20.5, 22.9, 400, 300 }, + [313] = { 15.4, 19.5, 400, 300 }, + [314] = { 34.4, 17.2, 400, 300 }, + [315] = { 12, 11.2, 400, 300 }, + [316] = { 34.7, 92.7, 405, 300 }, + [317] = { 52.5, 91.1, 405, 300 }, + [318] = { 32.5, 69.7, 405, 300 }, + [319] = { 75.8, 52.2, 405, 300 }, + [320] = { 75.5, 45.7, 405, 300 }, + [321] = { 52.5, 21.9, 405, 300 }, + [322] = { 90.7, 21.6, 405, 300 }, + [323] = { 47.1, 13.3, 405, 300 }, + [324] = { 72.6, 12.4, 405, 300 }, + [325] = { 50.9, 9.5, 405, 300 }, + [326] = { 61.5, 0.7, 405, 300 }, + [327] = { 63.3, 95.5, 406, 300 }, + [328] = { 77.9, 95.2, 406, 300 }, + [329] = { 73, 91.4, 406, 300 }, + [330] = { 83.6, 89.3, 406, 300 }, + [331] = { 72.4, 88.7, 406, 300 }, + [332] = { 75, 88.1, 406, 300 }, + [333] = { 74.9, 88, 406, 300 }, + [334] = { 78.2, 87.4, 406, 300 }, + [335] = { 46.6, 87.1, 406, 300 }, + [336] = { 80.5, 86.6, 406, 300 }, + [337] = { 85.5, 85.1, 406, 300 }, + [338] = { 58.5, 83.7, 406, 300 }, + [339] = { 75.4, 83.2, 406, 300 }, + [340] = { 66.2, 82.4, 406, 300 }, + [341] = { 36.4, 76.4, 406, 300 }, + [342] = { 31.7, 75.1, 406, 300 }, + [343] = { 62.1, 72.8, 406, 300 }, + [344] = { 57.1, 72.8, 406, 300 }, + [345] = { 25.8, 71, 406, 300 }, + [346] = { 62.7, 67.5, 406, 300 }, + [347] = { 25.8, 67.5, 406, 300 }, + [348] = { 38.5, 67.3, 406, 300 }, + [349] = { 53.7, 65.6, 406, 300 }, + [350] = { 37.4, 61.2, 406, 300 }, + [351] = { 72.7, 58.9, 406, 300 }, + [352] = { 32.8, 57.1, 406, 300 }, + [353] = { 54.4, 53.6, 406, 300 }, + [354] = { 58.1, 52.5, 406, 300 }, + [355] = { 38.8, 49.9, 406, 300 }, + [356] = { 48.5, 49.8, 406, 300 }, + [357] = { 57.8, 49.8, 406, 300 }, + [358] = { 78.3, 49.7, 406, 300 }, + [359] = { 45.4, 49.5, 406, 300 }, + [360] = { 34.9, 47.9, 406, 300 }, + [361] = { 79.5, 44.1, 406, 300 }, + [362] = { 68.4, 42.9, 406, 300 }, + [363] = { 73.6, 42, 406, 300 }, + [364] = { 37.4, 40.8, 406, 300 }, + [365] = { 64, 39.1, 406, 300 }, + [366] = { 44.4, 38.1, 406, 300 }, + [367] = { 45, 37.4, 406, 300 }, + [368] = { 53.5, 36.2, 406, 300 }, + [369] = { 44.5, 34.6, 406, 300 }, + [370] = { 43.7, 26.9, 406, 300 }, + [371] = { 36, 22.6, 406, 300 }, + [372] = { 38.3, 22.1, 406, 300 }, + [373] = { 46.8, 21.3, 406, 300 }, + [374] = { 38.8, 20.9, 406, 300 }, + [375] = { 33.1, 20.5, 406, 300 }, + [376] = { 40.4, 19.7, 406, 300 }, + [377] = { 31.9, 17.1, 406, 300 }, + [378] = { 53, 16, 406, 300 }, + [379] = { 44.4, 14.4, 406, 300 }, + [380] = { 29.3, 12.1, 406, 300 }, + [381] = { 42.2, 11.5, 406, 300 }, + [382] = { 30.1, 9, 406, 300 }, + [383] = { 36.7, 5.5, 406, 300 }, + [384] = { 31.4, 5.2, 406, 300 }, + }, + }, + [1624] = { + ["coords"] = { + [1] = { 14.7, 79.7, 3, 300 }, + [2] = { 13.4, 72.2, 3, 300 }, + [3] = { 31, 70, 3, 300 }, + [4] = { 38.8, 70, 3, 300 }, + [5] = { 54.9, 69.8, 3, 300 }, + [6] = { 60.4, 69.7, 3, 300 }, + [7] = { 17.5, 66.1, 3, 300 }, + [8] = { 10.9, 64, 3, 300 }, + [9] = { 29.7, 63.9, 3, 300 }, + [10] = { 35.1, 63.9, 3, 300 }, + [11] = { 75.2, 63.7, 3, 300 }, + [12] = { 59.1, 60.1, 3, 300 }, + [13] = { 37.7, 55.9, 3, 300 }, + [14] = { 32, 55.8, 3, 300 }, + [15] = { 24.3, 55.7, 3, 300 }, + [16] = { 41.9, 54.2, 3, 300 }, + [17] = { 79, 53.9, 3, 300 }, + [18] = { 81.9, 50, 3, 300 }, + [19] = { 47, 50, 3, 300 }, + [20] = { 25.6, 49.7, 3, 300 }, + [21] = { 33.8, 45.9, 3, 300 }, + [22] = { 48, 43.8, 3, 300 }, + [23] = { 80.7, 36, 3, 300 }, + [24] = { 49.7, 33.6, 3, 300 }, + [25] = { 64.7, 23.6, 3, 300 }, + [26] = { 53.7, 19.6, 3, 300 }, + [27] = { 49.7, 11.8, 3, 300 }, + [28] = { 74.6, 78.8, 8, 300 }, + [29] = { 86.4, 73.3, 8, 300 }, + [30] = { 69.2, 69.1, 8, 300 }, + [31] = { 76.9, 68.2, 8, 300 }, + [32] = { 82.6, 67.4, 8, 300 }, + [33] = { 61.3, 62.1, 8, 300 }, + [34] = { 80, 60, 8, 300 }, + [35] = { 90, 58.9, 8, 300 }, + [36] = { 38.7, 47.6, 8, 300 }, + [37] = { 87, 47, 8, 300 }, + [38] = { 55.5, 46.2, 8, 300 }, + [39] = { 81.8, 44.8, 8, 300 }, + [40] = { 90.7, 42.4, 8, 300 }, + [41] = { 61.5, 40.2, 8, 300 }, + [42] = { 48.4, 39.6, 8, 300 }, + [43] = { 75.6, 37.2, 8, 300 }, + [44] = { 59.5, 33, 8, 300 }, + [45] = { 64.7, 31.5, 8, 300 }, + [46] = { 39.4, 31.3, 8, 300 }, + [47] = { 70.2, 29.8, 8, 300 }, + [48] = { 75.6, 26.2, 8, 300 }, + [49] = { 84.7, 22.4, 8, 300 }, + [50] = { 68.4, 12.4, 8, 300 }, + [51] = { 21.9, 79.1, 10, 300 }, + [52] = { 62.9, 76.5, 10, 300 }, + [53] = { 61.3, 74.3, 10, 300 }, + [54] = { 49.2, 74, 10, 300 }, + [55] = { 56.6, 74, 10, 300 }, + [56] = { 66, 71.9, 10, 300 }, + [57] = { 62.7, 71.7, 10, 300 }, + [58] = { 62.9, 69.5, 10, 300 }, + [59] = { 21.8, 68.2, 10, 300 }, + [60] = { 55.6, 60.2, 10, 300 }, + [61] = { 56.4, 59.9, 10, 300 }, + [62] = { 14.5, 55.2, 10, 300 }, + [63] = { 25.3, 52.4, 10, 300 }, + [64] = { 32.7, 50.6, 10, 300 }, + [65] = { 33.4, 50.2, 10, 300 }, + [66] = { 66.2, 49, 10, 300 }, + [67] = { 28.2, 48.1, 10, 300 }, + [68] = { 61.3, 46, 10, 300 }, + [69] = { 64.6, 44.9, 10, 300 }, + [70] = { 66.7, 42.3, 10, 300 }, + [71] = { 62.9, 40.1, 10, 300 }, + [72] = { 32.6, 39.2, 10, 300 }, + [73] = { 31.9, 34.7, 10, 300 }, + [74] = { 64.8, 33.5, 10, 300 }, + [75] = { 33.5, 32, 10, 300 }, + [76] = { 60.6, 30.1, 10, 300 }, + [77] = { 13.2, 29.8, 10, 300 }, + [78] = { 63.6, 29.5, 10, 300 }, + [79] = { 16.6, 29.4, 10, 300 }, + [80] = { 32.1, 28.5, 10, 300 }, + [81] = { 61.5, 74.8, 11, 300 }, + [82] = { 58.1, 71.8, 11, 300 }, + [83] = { 60.7, 66.7, 11, 300 }, + [84] = { 55.2, 64.9, 11, 300 }, + [85] = { 64.7, 62.6, 11, 300 }, + [86] = { 65.2, 60.1, 11, 300 }, + [87] = { 63.8, 56, 11, 300 }, + [88] = { 60.7, 55.3, 11, 300 }, + [89] = { 65, 54.3, 11, 300 }, + [90] = { 67.2, 52.3, 11, 300 }, + [91] = { 65.9, 52.1, 11, 300 }, + [92] = { 63.3, 51.2, 11, 300 }, + [93] = { 67.7, 49.5, 11, 300 }, + [94] = { 64.1, 49, 11, 300 }, + [95] = { 23.5, 48.6, 11, 300 }, + [96] = { 56.4, 48.5, 11, 300 }, + [97] = { 49.7, 48.5, 11, 300 }, + [98] = { 45, 44.3, 11, 300 }, + [99] = { 66.1, 44.3, 11, 300 }, + [100] = { 58.4, 43.9, 11, 300 }, + [101] = { 43.1, 43.5, 11, 300 }, + [102] = { 30.9, 43.3, 11, 300 }, + [103] = { 65.4, 43.1, 11, 300 }, + [104] = { 62.1, 42.7, 11, 300 }, + [105] = { 60.2, 41.3, 11, 300 }, + [106] = { 63.5, 41.1, 11, 300 }, + [107] = { 62.4, 39.3, 11, 300 }, + [108] = { 61.7, 39.2, 11, 300 }, + [109] = { 70.8, 39, 11, 300 }, + [110] = { 59.3, 37.8, 11, 300 }, + [111] = { 13.6, 37.3, 11, 300 }, + [112] = { 18.3, 36.5, 11, 300 }, + [113] = { 31.5, 36.2, 11, 300 }, + [114] = { 57.9, 35, 11, 300 }, + [115] = { 27, 35, 11, 300 }, + [116] = { 44.7, 34.5, 11, 300 }, + [117] = { 62.8, 34.1, 11, 300 }, + [118] = { 41, 34, 11, 300 }, + [119] = { 15, 33.4, 11, 300 }, + [120] = { 60.7, 33.3, 11, 300 }, + [121] = { 60.9, 33.1, 11, 300 }, + [122] = { 59.3, 32.9, 11, 300 }, + [123] = { 18.5, 32.9, 11, 300 }, + [124] = { 37.1, 32.1, 11, 300 }, + [125] = { 35.2, 31.7, 11, 300 }, + [126] = { 56.5, 30.4, 11, 300 }, + [127] = { 28.2, 30.4, 11, 300 }, + [128] = { 20.2, 30.1, 11, 300 }, + [129] = { 60.4, 29.5, 11, 300 }, + [130] = { 42.6, 29.3, 11, 300 }, + [131] = { 51.5, 29, 11, 300 }, + [132] = { 24.7, 28.8, 11, 300 }, + [133] = { 23.2, 28.2, 11, 300 }, + [134] = { 37.4, 28, 11, 300 }, + [135] = { 32.9, 27.9, 11, 300 }, + [136] = { 21.8, 27.3, 11, 300 }, + [137] = { 19.2, 26.4, 11, 300 }, + [138] = { 56.4, 26.3, 11, 300 }, + [139] = { 46.5, 25.3, 11, 300 }, + [140] = { 41, 24.4, 11, 300 }, + [141] = { 38.6, 23.1, 11, 300 }, + [142] = { 34.5, 21.8, 11, 300 }, + [143] = { 53.3, 83.7, 15, 300 }, + [144] = { 42.3, 79.5, 15, 300 }, + [145] = { 57, 78.9, 15, 300 }, + [146] = { 52.6, 74.2, 15, 300 }, + [147] = { 39.6, 46.9, 15, 300 }, + [148] = { 47, 46.5, 15, 300 }, + [149] = { 35.5, 45.3, 15, 300 }, + [150] = { 37.4, 44, 15, 300 }, + [151] = { 45.4, 43.8, 15, 300 }, + [152] = { 41.4, 43.2, 15, 300 }, + [153] = { 43, 43.1, 15, 300 }, + [154] = { 40.9, 40.3, 15, 300 }, + [155] = { 41.2, 34.9, 15, 300 }, + [156] = { 53.2, 31.4, 15, 300 }, + [157] = { 58.2, 28.7, 15, 300 }, + [158] = { 52.3, 27.3, 15, 300 }, + [159] = { 38.4, 25.8, 15, 300 }, + [160] = { 41.5, 25.6, 15, 300 }, + [161] = { 35.2, 23, 15, 300 }, + [162] = { 42.9, 21.9, 15, 300 }, + [163] = { 51.3, 21.5, 15, 300 }, + [164] = { 38.8, 20.5, 15, 300 }, + [165] = { 49, 19.6, 15, 300 }, + [166] = { 47, 18.4, 15, 300 }, + [167] = { 39.6, 17.6, 15, 300 }, + [168] = { 37.5, 15.3, 15, 300 }, + [169] = { 41.4, 10.9, 15, 300 }, + [170] = { 47.7, 98.2, 17, 300 }, + [171] = { 41.6, 94.8, 17, 300 }, + [172] = { 45.4, 94.7, 17, 300 }, + [173] = { 45.2, 84.7, 17, 300 }, + [174] = { 43.5, 82.4, 17, 300 }, + [175] = { 46.8, 81.8, 17, 300 }, + [176] = { 43.3, 81.3, 17, 300 }, + [177] = { 47.9, 81.3, 17, 300 }, + [178] = { 47.4, 79.9, 17, 300 }, + [179] = { 42.2, 79.8, 17, 300 }, + [180] = { 49.3, 79.4, 17, 300 }, + [181] = { 43.9, 79.4, 17, 300 }, + [182] = { 44.8, 79.4, 17, 300 }, + [183] = { 48.1, 78.9, 17, 300 }, + [184] = { 46.6, 77.9, 17, 300 }, + [185] = { 53.9, 77.4, 17, 300 }, + [186] = { 54.9, 76.7, 17, 300 }, + [187] = { 49.6, 76, 17, 300 }, + [188] = { 44.9, 75.4, 17, 300 }, + [189] = { 44.5, 75, 17, 300 }, + [190] = { 47.4, 74.5, 17, 300 }, + [191] = { 47.2, 72.4, 17, 300 }, + [192] = { 44.6, 72, 17, 300 }, + [193] = { 43.6, 71.3, 17, 300 }, + [194] = { 42.4, 70.9, 17, 300 }, + [195] = { 47.9, 70.3, 17, 300 }, + [196] = { 48, 70, 17, 300 }, + [197] = { 43.6, 69.5, 17, 300 }, + [198] = { 55.4, 67.3, 17, 300 }, + [199] = { 45.5, 67, 17, 300 }, + [200] = { 53.8, 65.9, 17, 300 }, + [201] = { 45.2, 64, 17, 300 }, + [202] = { 48.7, 62.1, 17, 300 }, + [203] = { 54.9, 61.9, 17, 300 }, + [204] = { 56.9, 59.6, 17, 300 }, + [205] = { 48.5, 59.1, 17, 300 }, + [206] = { 49.7, 58.7, 17, 300 }, + [207] = { 50.1, 56.3, 17, 300 }, + [208] = { 44.9, 54.9, 17, 300 }, + [209] = { 53, 53.2, 17, 300 }, + [210] = { 59.5, 52.7, 17, 300 }, + [211] = { 57.8, 51.4, 17, 300 }, + [212] = { 56.3, 48.5, 17, 300 }, + [213] = { 47.9, 34.5, 17, 300 }, + [214] = { 49, 34, 17, 604800 }, + [215] = { 47.4, 33.4, 17, 300 }, + [216] = { 49.1, 32.8, 17, 604800 }, + [217] = { 48.2, 32.5, 17, 604800 }, + [218] = { 46.2, 32.3, 17, 300 }, + [219] = { 47.6, 32.2, 17, 604800 }, + [220] = { 48.6, 32, 17, 300 }, + [221] = { 32.4, 26.5, 17, 300 }, + [222] = { 33, 24.3, 17, 300 }, + [223] = { 37.8, 83.5, 33, 300 }, + [224] = { 39.1, 79.9, 33, 300 }, + [225] = { 40.8, 79.9, 33, 300 }, + [226] = { 32.2, 72.5, 33, 300 }, + [227] = { 31.6, 67.4, 33, 300 }, + [228] = { 33.1, 65.2, 33, 300 }, + [229] = { 33.6, 64.4, 33, 300 }, + [230] = { 26.3, 60.2, 33, 300 }, + [231] = { 31.3, 59.2, 33, 300 }, + [232] = { 32.3, 59, 33, 300 }, + [233] = { 35.9, 57.6, 33, 300 }, + [234] = { 36, 57.4, 33, 300 }, + [235] = { 35.6, 56.1, 33, 300 }, + [236] = { 36.4, 54.8, 33, 300 }, + [237] = { 24.3, 53.1, 33, 300 }, + [238] = { 32.4, 52.7, 33, 300 }, + [239] = { 32.2, 51, 33, 300 }, + [240] = { 40.8, 50.4, 33, 300 }, + [241] = { 40.2, 49.7, 33, 300 }, + [242] = { 29.5, 43.9, 33, 300 }, + [243] = { 30.1, 43.8, 33, 300 }, + [244] = { 31.6, 43.7, 33, 300 }, + [245] = { 28.2, 42.6, 33, 300 }, + [246] = { 36.4, 41.5, 33, 300 }, + [247] = { 40.5, 41.4, 33, 300 }, + [248] = { 32.5, 40.9, 33, 300 }, + [249] = { 41.3, 40.8, 33, 300 }, + [250] = { 36.5, 40, 33, 300 }, + [251] = { 34.3, 39.3, 33, 300 }, + [252] = { 41, 39.1, 33, 300 }, + [253] = { 36.5, 38, 33, 300 }, + [254] = { 47.9, 38, 33, 300 }, + [255] = { 45, 38, 33, 300 }, + [256] = { 36.4, 37.5, 33, 300 }, + [257] = { 46, 37.3, 33, 300 }, + [258] = { 47.2, 36.8, 33, 300 }, + [259] = { 48, 35.3, 33, 300 }, + [260] = { 45.6, 34.8, 33, 300 }, + [261] = { 38.2, 34.2, 33, 300 }, + [262] = { 48.9, 33.8, 33, 300 }, + [263] = { 43, 33.2, 33, 300 }, + [264] = { 39.8, 33.1, 33, 300 }, + [265] = { 48.4, 32.2, 33, 300 }, + [266] = { 45.5, 31.8, 33, 300 }, + [267] = { 35, 30.2, 33, 300 }, + [268] = { 37, 28.8, 33, 300 }, + [269] = { 47, 28.3, 33, 300 }, + [270] = { 41.1, 28.1, 33, 300 }, + [271] = { 42.2, 27, 33, 300 }, + [272] = { 35.7, 26.3, 33, 300 }, + [273] = { 34.1, 26.1, 33, 300 }, + [274] = { 41.4, 25.8, 33, 300 }, + [275] = { 46.6, 25.7, 33, 300 }, + [276] = { 45.4, 25.4, 33, 300 }, + [277] = { 32.6, 24.3, 33, 300 }, + [278] = { 49.8, 24.1, 33, 300 }, + [279] = { 46, 23, 33, 300 }, + [280] = { 44.2, 22.7, 33, 300 }, + [281] = { 31.8, 22.5, 33, 300 }, + [282] = { 43, 21.5, 33, 300 }, + [283] = { 46.5, 21.5, 33, 300 }, + [284] = { 30.5, 21.3, 33, 300 }, + [285] = { 31.8, 19.5, 33, 300 }, + [286] = { 48.2, 19.1, 33, 300 }, + [287] = { 33, 18.8, 33, 300 }, + [288] = { 33.7, 18.8, 33, 300 }, + [289] = { 47, 18.7, 33, 300 }, + [290] = { 44.1, 17.5, 33, 300 }, + [291] = { 45.5, 17, 33, 300 }, + [292] = { 37.6, 16.5, 33, 300 }, + [293] = { 43.4, 16.4, 33, 300 }, + [294] = { 31.2, 16.4, 33, 300 }, + [295] = { 31.2, 16.3, 33, 300 }, + [296] = { 26.7, 16.3, 33, 300 }, + [297] = { 25.5, 16.2, 33, 300 }, + [298] = { 28.5, 14.9, 33, 300 }, + [299] = { 45.2, 14.2, 33, 300 }, + [300] = { 28.3, 14.1, 33, 300 }, + [301] = { 47.7, 12.5, 33, 300 }, + [302] = { 47.6, 12.3, 33, 300 }, + [303] = { 35.3, 12.2, 33, 300 }, + [304] = { 42.9, 11.9, 33, 300 }, + [305] = { 33.7, 11.4, 33, 300 }, + [306] = { 34.2, 11.3, 33, 300 }, + [307] = { 30.2, 10.6, 33, 300 }, + [308] = { 28.9, 9.8, 33, 300 }, + [309] = { 48.7, 9.5, 33, 300 }, + [310] = { 61.9, 99.4, 36, 300 }, + [311] = { 48, 96.7, 36, 300 }, + [312] = { 32.6, 96.3, 36, 300 }, + [313] = { 45.3, 95.4, 36, 300 }, + [314] = { 51.1, 94.3, 36, 300 }, + [315] = { 25, 93.3, 36, 300 }, + [316] = { 56.5, 91.9, 36, 300 }, + [317] = { 39.4, 91.9, 36, 300 }, + [318] = { 19, 90.6, 36, 300 }, + [319] = { 73.9, 90.4, 36, 300 }, + [320] = { 49.5, 87.2, 36, 300 }, + [321] = { 15.5, 87.2, 36, 300 }, + [322] = { 39.1, 86.8, 36, 300 }, + [323] = { 30.1, 85.5, 36, 300 }, + [324] = { 34.9, 83.6, 36, 300 }, + [325] = { 47.8, 83.4, 36, 300 }, + [326] = { 32, 83, 36, 300 }, + [327] = { 23.8, 82.9, 36, 300 }, + [328] = { 20.1, 79.6, 36, 300 }, + [329] = { 43, 78.5, 36, 300 }, + [330] = { 46.4, 78.1, 36, 300 }, + [331] = { 26.1, 77.6, 36, 300 }, + [332] = { 29.8, 77.4, 36, 300 }, + [333] = { 48.8, 75.6, 36, 300 }, + [334] = { 26.4, 70.5, 36, 300 }, + [335] = { 58.5, 70.3, 36, 300 }, + [336] = { 49.5, 70.1, 36, 300 }, + [337] = { 64.9, 66.1, 36, 300 }, + [338] = { 55.7, 65.5, 36, 300 }, + [339] = { 49, 63.7, 36, 300 }, + [340] = { 28.7, 62, 36, 300 }, + [341] = { 58.2, 60, 36, 300 }, + [342] = { 62.2, 54.9, 36, 300 }, + [343] = { 57.4, 38.5, 36, 300 }, + [344] = { 51.1, 34.7, 36, 300 }, + [345] = { 58.5, 33.1, 36, 300 }, + [346] = { 53.4, 29.7, 36, 300 }, + [347] = { 51.4, 25.8, 36, 300 }, + [348] = { 39.1, 25.2, 36, 300 }, + [349] = { 44.6, 25.1, 36, 300 }, + [350] = { 50.2, 22.3, 36, 300 }, + [351] = { 44.9, 16.9, 36, 300 }, + [352] = { 47.9, 86.8, 38, 300 }, + [353] = { 56, 70.1, 45, 300 }, + [354] = { 61.4, 67.5, 45, 300 }, + [355] = { 51.5, 66.4, 45, 300 }, + [356] = { 53.1, 64.7, 45, 300 }, + [357] = { 42.9, 58.9, 45, 300 }, + [358] = { 55.1, 55, 45, 300 }, + [359] = { 59.6, 50.9, 45, 300 }, + [360] = { 18.9, 50.8, 45, 300 }, + [361] = { 67.2, 50.7, 45, 300 }, + [362] = { 61.5, 50.6, 45, 300 }, + [363] = { 41.9, 50.6, 45, 300 }, + [364] = { 31.7, 48, 45, 300 }, + [365] = { 52.4, 47.6, 45, 300 }, + [366] = { 39.2, 47.1, 45, 300 }, + [367] = { 73.5, 46.8, 45, 300 }, + [368] = { 55.9, 46.6, 45, 300 }, + [369] = { 69.9, 46.5, 45, 300 }, + [370] = { 22.4, 46.1, 45, 300 }, + [371] = { 58.8, 45.1, 45, 300 }, + [372] = { 64.1, 44.2, 45, 300 }, + [373] = { 9.6, 43.6, 45, 300 }, + [374] = { 18.4, 42.9, 45, 300 }, + [375] = { 39.5, 41.1, 45, 300 }, + [376] = { 48.4, 39.9, 45, 300 }, + [377] = { 62.3, 39.5, 45, 300 }, + [378] = { 66.2, 39.4, 45, 300 }, + [379] = { 46, 39.3, 45, 300 }, + [380] = { 29.1, 38.3, 45, 300 }, + [381] = { 25.6, 38.3, 45, 300 }, + [382] = { 31, 38.3, 45, 300 }, + [383] = { 12.8, 37.3, 45, 300 }, + [384] = { 39.8, 37.2, 45, 300 }, + [385] = { 68.9, 35.5, 45, 300 }, + [386] = { 42.2, 34, 45, 300 }, + [387] = { 65.3, 34, 45, 300 }, + [388] = { 14.3, 28.7, 45, 300 }, + [389] = { 18.4, 24.2, 45, 300 }, + [390] = { 42.4, 98.5, 148, 300 }, + [391] = { 67.9, 74.4, 267, 300 }, + [392] = { 71.3, 74, 267, 300 }, + [393] = { 64.3, 71.2, 267, 300 }, + [394] = { 68.4, 69.5, 267, 300 }, + [395] = { 68.7, 69.4, 267, 300 }, + [396] = { 74.8, 67, 267, 300 }, + [397] = { 29.7, 66.2, 267, 300 }, + [398] = { 66.4, 66.1, 267, 300 }, + [399] = { 33.7, 63.6, 267, 300 }, + [400] = { 60.5, 61.2, 267, 300 }, + [401] = { 72.8, 61.1, 267, 300 }, + [402] = { 33.8, 60.9, 267, 300 }, + [403] = { 36, 60.7, 267, 300 }, + [404] = { 71.4, 60, 267, 300 }, + [405] = { 39.8, 59.4, 267, 300 }, + [406] = { 30.6, 58.9, 267, 300 }, + [407] = { 76.5, 57.3, 267, 300 }, + [408] = { 45.5, 56.2, 267, 300 }, + [409] = { 66.7, 56, 267, 300 }, + [410] = { 23.5, 55.6, 267, 300 }, + [411] = { 39, 54.9, 267, 300 }, + [412] = { 29.6, 54, 267, 300 }, + [413] = { 25.4, 52.4, 267, 300 }, + [414] = { 73.3, 52.2, 267, 300 }, + [415] = { 81.2, 52.2, 267, 300 }, + [416] = { 71.9, 51.7, 267, 300 }, + [417] = { 38.8, 51.2, 267, 300 }, + [418] = { 69.3, 51.1, 267, 300 }, + [419] = { 26.7, 44.6, 267, 300 }, + [420] = { 38.3, 43.2, 267, 300 }, + [421] = { 26.5, 39.6, 267, 300 }, + [422] = { 43.4, 39.2, 267, 300 }, + [423] = { 71.6, 37, 267, 300 }, + [424] = { 46.5, 36.5, 267, 300 }, + [425] = { 63, 35.4, 267, 300 }, + [426] = { 81.6, 33.9, 267, 300 }, + [427] = { 50.9, 33.1, 267, 300 }, + [428] = { 37.3, 32.7, 267, 300 }, + [429] = { 76.8, 32.6, 267, 300 }, + [430] = { 48.5, 31.9, 267, 300 }, + [431] = { 53.6, 30.9, 267, 300 }, + [432] = { 30.7, 30.1, 267, 300 }, + [433] = { 58.3, 28.9, 267, 300 }, + [434] = { 43.3, 28.8, 267, 300 }, + [435] = { 25.5, 27.7, 267, 300 }, + [436] = { 73.5, 27.5, 267, 300 }, + [437] = { 52.2, 24.8, 267, 300 }, + [438] = { 22.4, 24.8, 267, 300 }, + [439] = { 43.1, 24.4, 267, 300 }, + [440] = { 35.2, 23.3, 267, 300 }, + [441] = { 39.4, 21.6, 267, 300 }, + [442] = { 50.7, 21.4, 267, 300 }, + [443] = { 36.9, 21.1, 267, 300 }, + [444] = { 29.7, 21, 267, 300 }, + [445] = { 26.4, 18.1, 267, 300 }, + [446] = { 46.4, 17.1, 267, 300 }, + [447] = { 49.4, 16.8, 267, 300 }, + [448] = { 31.7, 16.3, 267, 300 }, + [449] = { 34.9, 16.1, 267, 300 }, + [450] = { 51.5, 14.6, 267, 300 }, + [451] = { 60.1, 9.9, 267, 300 }, + [452] = { 52.1, 9.7, 267, 300 }, + [453] = { 65.6, 6.2, 267, 300 }, + [454] = { 57.6, 5.8, 267, 300 }, + [455] = { 51.7, 4.1, 267, 300 }, + [456] = { 59.8, 0.9, 267, 300 }, + [457] = { 72.6, 73.1, 331, 300 }, + [458] = { 54, 71, 331, 300 }, + [459] = { 82.4, 70.1, 331, 300 }, + [460] = { 44.1, 69.2, 331, 300 }, + [461] = { 88.5, 68.4, 331, 300 }, + [462] = { 77.1, 67.5, 331, 300 }, + [463] = { 47.1, 67.3, 331, 300 }, + [464] = { 81.8, 66.6, 331, 300 }, + [465] = { 40.1, 66.4, 331, 300 }, + [466] = { 81, 66.1, 331, 300 }, + [467] = { 41.4, 66.1, 331, 300 }, + [468] = { 46.3, 64.5, 331, 300 }, + [469] = { 27.5, 63.8, 331, 300 }, + [470] = { 42.7, 63.8, 331, 300 }, + [471] = { 39.5, 63.5, 331, 300 }, + [472] = { 51.7, 62, 331, 300 }, + [473] = { 81.9, 61.7, 331, 300 }, + [474] = { 45.9, 61.5, 331, 300 }, + [475] = { 50.8, 60.6, 331, 300 }, + [476] = { 34.8, 59.3, 331, 300 }, + [477] = { 58.6, 56.3, 331, 300 }, + [478] = { 29.3, 56, 331, 300 }, + [479] = { 63.7, 55.2, 331, 300 }, + [480] = { 54.7, 55, 331, 300 }, + [481] = { 52.6, 54.6, 331, 300 }, + [482] = { 63.9, 54.4, 331, 300 }, + [483] = { 51.1, 54.3, 331, 300 }, + [484] = { 47.4, 53.2, 331, 300 }, + [485] = { 69.7, 50.8, 331, 300 }, + [486] = { 68.5, 50.6, 331, 300 }, + [487] = { 67.2, 50.4, 331, 300 }, + [488] = { 50.4, 50, 331, 300 }, + [489] = { 18.6, 49.5, 331, 300 }, + [490] = { 83.4, 48.9, 331, 300 }, + [491] = { 63.9, 47.4, 331, 300 }, + [492] = { 43.1, 47.3, 331, 300 }, + [493] = { 73.2, 47.2, 331, 300 }, + [494] = { 89.5, 45.6, 331, 300 }, + [495] = { 61.5, 43.2, 331, 300 }, + [496] = { 57.2, 41.1, 331, 300 }, + [497] = { 34.3, 39.8, 331, 300 }, + [498] = { 32.8, 39.7, 331, 300 }, + [499] = { 38.9, 39.6, 331, 300 }, + [500] = { 60.9, 39.6, 331, 300 }, + [501] = { 21.4, 39.4, 331, 300 }, + [502] = { 18.1, 38.9, 331, 300 }, + [503] = { 21.2, 37.8, 331, 300 }, + [504] = { 37.3, 35.8, 331, 300 }, + [505] = { 22.7, 34.6, 331, 300 }, + [506] = { 19.2, 34.2, 331, 300 }, + [507] = { 58.1, 33.7, 331, 300 }, + [508] = { 18.8, 33.6, 331, 300 }, + [509] = { 30.5, 31.5, 331, 300 }, + [510] = { 28.9, 30.7, 331, 300 }, + [511] = { 16.7, 30.1, 331, 300 }, + [512] = { 32, 29.2, 331, 300 }, + [513] = { 22.8, 28.8, 331, 300 }, + [514] = { 30.7, 23.7, 331, 300 }, + [515] = { 26.6, 16.7, 331, 300 }, + [516] = { 92.6, 43.5, 357, 300 }, + [517] = { 57.3, 97.9, 361, 300 }, + [518] = { 71.6, 90.2, 400, 300 }, + [519] = { 77.6, 84.7, 400, 300 }, + [520] = { 70, 80.2, 400, 300 }, + [521] = { 83.1, 80, 400, 300 }, + [522] = { 70.9, 77.8, 400, 300 }, + [523] = { 86.7, 75.3, 400, 300 }, + [524] = { 71.5, 71.1, 400, 300 }, + [525] = { 76.4, 70.1, 400, 300 }, + [526] = { 79.9, 67.5, 400, 300 }, + [527] = { 83.6, 66.8, 400, 300 }, + [528] = { 87.6, 66.5, 400, 300 }, + [529] = { 70.7, 65.5, 400, 300 }, + [530] = { 84.4, 60.7, 400, 300 }, + [531] = { 73.2, 57.4, 400, 300 }, + [532] = { 82.9, 55.2, 400, 300 }, + [533] = { 47.6, 54.4, 400, 300 }, + [534] = { 77.5, 53.9, 400, 300 }, + [535] = { 33.5, 53.3, 400, 300 }, + [536] = { 41.4, 52.9, 400, 300 }, + [537] = { 36.5, 49.9, 400, 300 }, + [538] = { 56, 49.7, 400, 300 }, + [539] = { 27.6, 47.9, 400, 300 }, + [540] = { 63.7, 47.6, 400, 300 }, + [541] = { 31, 46.4, 400, 300 }, + [542] = { 54.5, 46.3, 400, 300 }, + [543] = { 48.8, 41.3, 400, 300 }, + [544] = { 45.8, 40.5, 400, 300 }, + [545] = { 17, 37, 400, 300 }, + [546] = { 40.4, 36, 400, 300 }, + [547] = { 26.4, 28, 400, 300 }, + [548] = { 35.2, 28, 400, 300 }, + [549] = { 12.8, 14.1, 400, 300 }, + [550] = { 46.2, 86.5, 405, 300 }, + [551] = { 40.4, 86, 405, 300 }, + [552] = { 56.8, 84.6, 405, 300 }, + [553] = { 29.1, 82.3, 405, 300 }, + [554] = { 37.5, 81.3, 405, 300 }, + [555] = { 31.6, 77.9, 405, 300 }, + [556] = { 62.3, 74.1, 405, 300 }, + [557] = { 42, 70, 405, 300 }, + [558] = { 68.1, 69.1, 405, 300 }, + [559] = { 42, 63.4, 405, 300 }, + [560] = { 43.2, 63.1, 405, 300 }, + [561] = { 61.9, 59, 405, 300 }, + [562] = { 45.2, 56.1, 405, 300 }, + [563] = { 73, 49, 405, 300 }, + [564] = { 56, 47.8, 405, 300 }, + [565] = { 47.8, 47.3, 405, 300 }, + [566] = { 41.9, 45.7, 405, 300 }, + [567] = { 69.9, 41.1, 405, 300 }, + [568] = { 45.2, 40, 405, 300 }, + [569] = { 49.3, 39.5, 405, 300 }, + [570] = { 64.2, 35, 405, 300 }, + [571] = { 74.6, 32.5, 405, 300 }, + [572] = { 50.8, 27.3, 405, 300 }, + [573] = { 41.1, 26.2, 405, 300 }, + [574] = { 69.3, 21.6, 405, 300 }, + [575] = { 58.3, 19.1, 405, 300 }, + [576] = { 80, 95, 406, 300 }, + [577] = { 81.2, 90.5, 406, 300 }, + [578] = { 68.2, 87.9, 406, 300 }, + [579] = { 71.4, 86.7, 406, 300 }, + [580] = { 60.1, 75.4, 406, 300 }, + [581] = { 31.6, 71.8, 406, 300 }, + [582] = { 35.1, 71.7, 406, 300 }, + [583] = { 35.5, 70.6, 406, 300 }, + [584] = { 31.7, 70.4, 406, 300 }, + [585] = { 29.6, 70.4, 406, 300 }, + [586] = { 33.1, 68.6, 406, 300 }, + [587] = { 35.1, 67.5, 406, 300 }, + [588] = { 29.4, 67.1, 406, 300 }, + [589] = { 31.9, 67, 406, 300 }, + [590] = { 34, 65.4, 406, 300 }, + [591] = { 28.6, 65.1, 406, 300 }, + [592] = { 33.7, 63.4, 406, 300 }, + [593] = { 30.7, 62.5, 406, 300 }, + [594] = { 52.5, 62.1, 406, 300 }, + [595] = { 29.8, 61.9, 406, 300 }, + [596] = { 34.5, 60.9, 406, 300 }, + [597] = { 32.1, 60.2, 406, 300 }, + [598] = { 65.3, 57.3, 406, 300 }, + [599] = { 66.7, 56.5, 406, 300 }, + [600] = { 71.4, 55.6, 406, 300 }, + [601] = { 52.3, 54.4, 406, 300 }, + [602] = { 60.5, 53.9, 406, 300 }, + [603] = { 36.8, 51.7, 406, 300 }, + [604] = { 74.5, 50.3, 406, 300 }, + [605] = { 72.7, 48.7, 406, 300 }, + [606] = { 36.6, 48.6, 406, 300 }, + [607] = { 48.4, 47.7, 406, 300 }, + [608] = { 64.9, 46.1, 406, 300 }, + [609] = { 51.7, 45.9, 406, 300 }, + [610] = { 64.4, 45.5, 406, 300 }, + [611] = { 71.7, 45.1, 406, 300 }, + [612] = { 37.8, 43.5, 406, 300 }, + [613] = { 71.3, 43.2, 406, 300 }, + [614] = { 44.2, 40.2, 406, 300 }, + [615] = { 50.3, 36.5, 406, 300 }, + [616] = { 47.9, 34.9, 406, 300 }, + [617] = { 46.4, 33.8, 406, 300 }, + [618] = { 45.2, 22.6, 406, 300 }, + [619] = { 64.1, 21.4, 406, 300 }, + [620] = { 33.1, 17.9, 406, 300 }, + [621] = { 34.2, 17.3, 406, 300 }, + [622] = { 36.6, 16.8, 406, 300 }, + [623] = { 43.6, 15.6, 406, 300 }, + [624] = { 33.1, 14.1, 406, 300 }, + [625] = { 40.1, 11.1, 406, 300 }, + [626] = { 34.8, 9.3, 406, 300 }, + [627] = { 39.4, 7.2, 406, 300 }, + }, + }, + [1627] = { + ["coords"] = { + [1] = { 49.9, 60.3, 130, 10 }, + }, + }, + [1628] = { + ["coords"] = { + [1] = { 79.8, 73.4, 10, 300 }, + [2] = { 78.8, 71.7, 10, 300 }, + [3] = { 78.3, 70.7, 10, 300 }, + [4] = { 78.8, 68.8, 10, 300 }, + [5] = { 16.5, 48.3, 10, 300 }, + [6] = { 22.4, 47.1, 10, 300 }, + [7] = { 20.9, 46.1, 10, 300 }, + [8] = { 14.5, 45.7, 10, 300 }, + [9] = { 16.1, 45.6, 10, 300 }, + [10] = { 23.1, 43.3, 10, 300 }, + [11] = { 14.9, 43.2, 10, 300 }, + [12] = { 22.6, 40.3, 10, 300 }, + [13] = { 16.8, 40.1, 10, 300 }, + [14] = { 24.4, 37.7, 10, 300 }, + [15] = { 16.5, 37.2, 10, 300 }, + [16] = { 22.5, 34.9, 10, 300 }, + [17] = { 43.6, 26.8, 11, 300 }, + [18] = { 44, 26.4, 11, 300 }, + [19] = { 43.5, 26.4, 11, 300 }, + [20] = { 43, 26, 11, 300 }, + [21] = { 43.6, 25.6, 11, 300 }, + [22] = { 44.6, 25.5, 11, 300 }, + [23] = { 43.8, 24.3, 11, 300 }, + [24] = { 44.5, 24.2, 11, 300 }, + [25] = { 44.8, 24, 11, 300 }, + [26] = { 43.3, 83.2, 17, 300 }, + [27] = { 44.3, 83, 17, 300 }, + [28] = { 42.1, 81.2, 17, 300 }, + [29] = { 41.6, 78.9, 17, 300 }, + [30] = { 39.2, 55, 36, 300 }, + [31] = { 39, 54.7, 36, 300 }, + [32] = { 38.9, 53.9, 36, 300 }, + [33] = { 29.3, 58.1, 45, 300 }, + [34] = { 29.2, 57.7, 45, 300 }, + [35] = { 28.7, 57.6, 45, 300 }, + [36] = { 28.3, 57, 45, 300 }, + [37] = { 26.9, 56.8, 45, 300 }, + [38] = { 27.5, 56.6, 45, 300 }, + [39] = { 27.9, 85.5, 139, 300 }, + [40] = { 27.2, 85.1, 139, 300 }, + [41] = { 28.1, 84.5, 139, 300 }, + [42] = { 61.4, 90.8, 405, 300 }, + [43] = { 64.7, 90.6, 405, 300 }, + [44] = { 58.5, 88.8, 405, 300 }, + [45] = { 65.3, 86.7, 405, 300 }, + [46] = { 38.6, 76, 405, 300 }, + [47] = { 63.5, 68.4, 405, 300 }, + [48] = { 54.6, 62.8, 405, 300 }, + [49] = { 53.4, 61.9, 405, 300 }, + [50] = { 52.3, 61.2, 405, 300 }, + [51] = { 72.7, 59.9, 405, 300 }, + [52] = { 54.4, 58.9, 405, 300 }, + [53] = { 49.8, 58.9, 405, 300 }, + [54] = { 48.6, 58.7, 405, 300 }, + [55] = { 51, 58.4, 405, 300 }, + [56] = { 51.9, 56.8, 405, 300 }, + [57] = { 52.9, 56.6, 405, 300 }, + [58] = { 50.1, 56.1, 405, 300 }, + [59] = { 44, 53.7, 405, 300 }, + [60] = { 72.3, 48.8, 405, 300 }, + [61] = { 39.7, 47.9, 405, 300 }, + [62] = { 41.4, 41.3, 405, 300 }, + [63] = { 46.1, 40.6, 405, 300 }, + [64] = { 55.1, 36.7, 405, 300 }, + [65] = { 60.4, 36.2, 405, 300 }, + }, + }, + [1630] = { + ["coords"] = { + [1] = { 32.1, 63, 85, 900 }, + }, + }, + [1631] = { + ["coords"] = { + [1] = { 41, 54.4, 85, 900 }, + }, + }, + [1632] = { + ["coords"] = { + [1] = { 41, 54.4, 85, 900 }, + }, + }, + [1633] = { + ["coords"] = { + [1] = { 43.8, 54.1, 85, 900 }, + }, + }, + [1634] = { + ["coords"] = { + [1] = { 43.8, 54, 85, 900 }, + }, + }, + [1638] = { + ["coords"] = { + [1] = { 40.9, 54.3, 85, 900 }, + }, + }, + [1639] = { + ["coords"] = { + [1] = { 43.8, 54.1, 85, 900 }, + }, + }, + [1643] = { + ["coords"] = { + [1] = { 52.5, 54.7, 85, 900 }, + }, + }, + [1644] = { + ["coords"] = { + [1] = { 52.5, 54.8, 85, 900 }, + }, + }, + [1645] = { + ["coords"] = { + [1] = { 52.5, 54.8, 85, 900 }, + }, + }, + [1646] = { + ["coords"] = { + [1] = { 61.4, 53.8, 85, 900 }, + }, + }, + [1647] = { + ["coords"] = { + [1] = { 61.4, 53.7, 85, 900 }, + }, + }, + [1648] = { + ["coords"] = { + [1] = { 61.4, 53.7, 85, 900 }, + }, + }, + [1649] = { + ["coords"] = { + [1] = { 63.7, 59.8, 85, 900 }, + }, + }, + [1650] = { + ["coords"] = { + [1] = { 63.7, 59.8, 85, 900 }, + }, + }, + [1651] = { + ["coords"] = { + [1] = { 63.7, 59.7, 85, 900 }, + }, + }, + [1652] = { + ["coords"] = { + [1] = { 63.6, 59.7, 85, 900 }, + }, + }, + [1653] = { + ["coords"] = { + [1] = { 63.6, 59.8, 85, 900 }, + }, + }, + [1654] = { + ["coords"] = { + [1] = { 65.9, 60, 85, 900 }, + }, + }, + [1655] = { + ["coords"] = { + [1] = { 66, 60, 85, 900 }, + }, + }, + [1656] = { + ["coords"] = { + [1] = { 66, 60, 85, 900 }, + }, + }, + [1657] = { + ["coords"] = { + [1] = { 81.3, 39.1, 85, 900 }, + }, + }, + [1658] = { + ["coords"] = { + [1] = { 61.6, 61.6, 85, 900 }, + }, + }, + [1659] = { + ["coords"] = { + [1] = { 61.6, 61.6, 85, 900 }, + }, + }, + [1660] = { + ["coords"] = { + [1] = { 61.6, 61.7, 85, 900 }, + }, + }, + [1661] = { + ["coords"] = { + [1] = { 43.8, 54.1, 85, 900 }, + }, + }, + [1662] = { + ["coords"] = { + [1] = { 52.5, 54.7, 85, 900 }, + }, + }, + [1663] = { + ["coords"] = { + [1] = { 61.4, 53.8, 85, 900 }, + }, + }, + [1664] = { + ["coords"] = { + [1] = { 63.6, 59.8, 85, 900 }, + }, + }, + [1665] = { + ["coords"] = { + [1] = { 65.9, 60, 85, 900 }, + }, + }, + [1666] = { + ["coords"] = { + [1] = { 61.6, 61.7, 85, 900 }, + }, + }, + [1667] = { + ["coords"] = { + [1] = { 46.6, 64.7, 11, 300 }, + [2] = { 47.7, 63.4, 11, 300 }, + [3] = { 46.5, 63, 11, 300 }, + [4] = { 50.7, 62.7, 11, 300 }, + [5] = { 48.2, 62.5, 11, 300 }, + [6] = { 46.8, 62.3, 11, 300 }, + [7] = { 50.5, 62.2, 11, 300 }, + [8] = { 51.7, 61.3, 11, 300 }, + [9] = { 46.2, 61.2, 11, 300 }, + [10] = { 49.4, 61, 11, 300 }, + [11] = { 45.7, 60.4, 11, 300 }, + [12] = { 50.3, 60.1, 11, 300 }, + [13] = { 48.4, 59.9, 11, 300 }, + [14] = { 48, 59.4, 11, 300 }, + [15] = { 50, 58.4, 11, 300 }, + }, + }, + [1668] = { + ["coords"] = { + [1] = { 56.2, 52.6, 11, 7200 }, + }, + }, + [1669] = { + ["coords"] = { + [1] = { 49.9, 39.3, 11, 7200 }, + }, + }, + [1673] = { + ["coords"] = { + [1] = { 41.5, 80.2, 141, 180 }, + [2] = { 45.5, 79.8, 141, 180 }, + [3] = { 48.2, 79.2, 141, 180 }, + [4] = { 47.6, 78.8, 141, 180 }, + [5] = { 44.9, 78, 141, 180 }, + [6] = { 49.8, 77.7, 141, 180 }, + [7] = { 50.6, 77.6, 141, 180 }, + [8] = { 47.8, 77.1, 141, 180 }, + [9] = { 53, 76.6, 141, 180 }, + [10] = { 52, 76.5, 141, 180 }, + [11] = { 58.6, 76.2, 141, 180 }, + [12] = { 44.6, 76, 141, 180 }, + [13] = { 55.6, 75.1, 141, 180 }, + [14] = { 52.5, 74.8, 141, 180 }, + [15] = { 48.8, 74.6, 141, 180 }, + [16] = { 59.9, 74.5, 141, 180 }, + [17] = { 62.3, 73.7, 141, 180 }, + [18] = { 49.6, 73.4, 141, 180 }, + [19] = { 45.8, 73.3, 141, 180 }, + [20] = { 44.1, 73.2, 141, 180 }, + [21] = { 56.8, 72.9, 141, 180 }, + [22] = { 54.2, 71.8, 141, 180 }, + [23] = { 54.2, 70.5, 141, 180 }, + [24] = { 55.8, 69.7, 141, 180 }, + [25] = { 62, 69.5, 141, 180 }, + [26] = { 41.6, 69, 141, 180 }, + [27] = { 60.3, 69, 141, 180 }, + [28] = { 37.2, 68.3, 141, 180 }, + [29] = { 49.9, 68.2, 141, 180 }, + [30] = { 52.6, 68, 141, 180 }, + [31] = { 53.7, 67.7, 141, 180 }, + [32] = { 52, 67.2, 141, 180 }, + [33] = { 54.2, 67.1, 141, 180 }, + [34] = { 49, 66.8, 141, 180 }, + [35] = { 62.8, 66.8, 141, 180 }, + [36] = { 41.3, 66.2, 141, 180 }, + [37] = { 55.4, 65.5, 141, 180 }, + [38] = { 54.2, 65.5, 141, 180 }, + [39] = { 56.4, 65.4, 141, 180 }, + [40] = { 54, 65.3, 141, 180 }, + [41] = { 50.3, 65.1, 141, 180 }, + [42] = { 65.1, 65, 141, 180 }, + [43] = { 52.9, 64.8, 141, 180 }, + [44] = { 51.7, 64.6, 141, 180 }, + [45] = { 56.2, 64, 141, 180 }, + [46] = { 62, 63.9, 141, 180 }, + [47] = { 56.9, 63.8, 141, 180 }, + [48] = { 57.5, 63.5, 141, 180 }, + [49] = { 38.3, 63.3, 141, 180 }, + [50] = { 50.5, 63.2, 141, 180 }, + [51] = { 66.3, 62.9, 141, 180 }, + [52] = { 57.2, 62.7, 141, 180 }, + [53] = { 63.6, 62.3, 141, 180 }, + [54] = { 60.2, 62.3, 141, 180 }, + [55] = { 59, 62.2, 141, 180 }, + [56] = { 65.6, 62, 141, 180 }, + [57] = { 54.3, 61.9, 141, 180 }, + [58] = { 66.9, 61.3, 141, 180 }, + [59] = { 52.3, 61.3, 141, 180 }, + [60] = { 59, 61.2, 141, 180 }, + [61] = { 66.2, 61, 141, 180 }, + [62] = { 50, 60.7, 141, 180 }, + [63] = { 52, 60.5, 141, 180 }, + [64] = { 69, 59.8, 141, 180 }, + [65] = { 53, 59.6, 141, 180 }, + [66] = { 50.2, 59.1, 141, 180 }, + [67] = { 49.3, 58.3, 141, 180 }, + [68] = { 51.9, 58.2, 141, 180 }, + [69] = { 38.9, 57.9, 141, 180 }, + [70] = { 68.6, 57.8, 141, 180 }, + [71] = { 69.7, 57.6, 141, 180 }, + [72] = { 52.4, 57.6, 141, 180 }, + [73] = { 69.7, 57.5, 141, 180 }, + [74] = { 49.2, 57.3, 141, 180 }, + [75] = { 50.5, 57, 141, 180 }, + [76] = { 50.2, 56.9, 141, 180 }, + [77] = { 59, 56.1, 141, 180 }, + [78] = { 40.8, 56.1, 141, 180 }, + [79] = { 44.3, 55.8, 141, 180 }, + [80] = { 68.8, 55.8, 141, 180 }, + [81] = { 58.8, 55.5, 141, 180 }, + [82] = { 58.1, 55.4, 141, 180 }, + [83] = { 41.4, 54, 141, 180 }, + [84] = { 64.3, 53.8, 141, 180 }, + [85] = { 66.7, 53.5, 141, 180 }, + [86] = { 61.6, 53.4, 141, 180 }, + [87] = { 45.1, 52.8, 141, 180 }, + [88] = { 47.6, 52.5, 141, 180 }, + [89] = { 64.8, 50.8, 141, 180 }, + }, + }, + [1674] = { + ["coords"] = { + [1] = { 46.4, 42.2, 1, 900 }, + }, + }, + [1675] = { + ["coords"] = { + [1] = { 56.5, 13.4, 130, 7200 }, + }, + }, + [1676] = { + ["coords"] = { + [1] = { 56.5, 13.4, 130, 7200 }, + }, + }, + [1677] = { + ["coords"] = { + [1] = { 56.5, 13.4, 130, 7200 }, + }, + }, + [1678] = { + ["coords"] = { + [1] = { 51.4, 36.7, 130, 7200 }, + }, + }, + [1679] = { + ["coords"] = { + [1] = { 51.4, 36.7, 130, 7200 }, + }, + }, + [1680] = { + ["coords"] = { + [1] = { 51.4, 36.7, 130, 7200 }, + }, + }, + [1681] = { + ["coords"] = { + [1] = { 51.4, 36.7, 130, 7200 }, + }, + }, + [1685] = { + ["coords"] = { + [1] = { 29.6, 56.4, 141, 900 }, + [2] = { 67.9, 46.8, 1537, 900 }, + [3] = { 59.6, 45.7, 1657, 900 }, + }, + }, + [1686] = { + ["coords"] = { + [1] = { 51.4, 36.7, 130, 7200 }, + }, + }, + [1687] = { + ["coords"] = { + [1] = { 52.4, 47.3, 130, 7200 }, + }, + }, + [1688] = { + ["coords"] = { + [1] = { 52.4, 47.3, 130, 7200 }, + }, + }, + [1689] = { + ["coords"] = { + [1] = { 52.4, 47.3, 130, 7200 }, + }, + }, + [1690] = { + ["coords"] = { + [1] = { 52.4, 47.3, 130, 7200 }, + }, + }, + [1691] = { + ["coords"] = { + [1] = { 52.4, 47.3, 130, 7200 }, + }, + }, + [1692] = { + ["coords"] = { + [1] = { 52.4, 47.4, 130, 7200 }, + }, + }, + [1693] = { + ["coords"] = { + [1] = { 54, 64.5, 130, 7200 }, + }, + }, + [1694] = { + ["coords"] = { + [1] = { 54, 64.5, 130, 7200 }, + }, + }, + [1695] = { + ["coords"] = { + [1] = { 54, 64.5, 130, 7200 }, + }, + }, + [1696] = { + ["coords"] = { + [1] = { 54, 64.5, 130, 7200 }, + }, + }, + [1697] = { + ["coords"] = { + [1] = { 54, 64.5, 130, 7200 }, + }, + }, + [1698] = { + ["coords"] = { + [1] = { 54, 64.5, 130, 7200 }, + }, + }, + [1699] = { + ["coords"] = { + [1] = { 54, 64.5, 130, 7200 }, + }, + }, + [1700] = { + ["coords"] = { + [1] = { 61.4, 64.5, 130, 7200 }, + }, + }, + [1701] = { + ["coords"] = { + [1] = { 61.4, 64.5, 130, 7200 }, + }, + }, + [1702] = { + ["coords"] = { + [1] = { 61.4, 64.5, 130, 7200 }, + }, + }, + [1703] = { + ["coords"] = { + [1] = { 61.4, 64.5, 130, 7200 }, + }, + }, + [1704] = { + ["coords"] = { + [1] = { 61.4, 64.5, 130, 7200 }, + }, + }, + [1705] = { + ["coords"] = { + [1] = { 53.9, 72.5, 130, 7200 }, + }, + }, + [1706] = { + ["coords"] = { + [1] = { 53.9, 72.5, 130, 7200 }, + }, + }, + [1707] = { + ["coords"] = { + [1] = { 53.9, 72.5, 130, 7200 }, + }, + }, + [1708] = { + ["coords"] = { + [1] = { 53.9, 72.5, 130, 7200 }, + }, + }, + [1709] = { + ["coords"] = { + [1] = { 53.9, 72.5, 130, 7200 }, + }, + }, + [1710] = { + ["coords"] = { + [1] = { 53.9, 72.5, 130, 7200 }, + }, + }, + [1711] = { + ["coords"] = { + [1] = { 50.9, 72.3, 130, 7200 }, + }, + }, + [1712] = { + ["coords"] = { + [1] = { 50.9, 72.3, 130, 7200 }, + }, + }, + [1713] = { + ["coords"] = { + [1] = { 50.9, 72.3, 130, 7200 }, + }, + }, + [1714] = { + ["coords"] = { + [1] = { 50.9, 72.3, 130, 7200 }, + }, + }, + [1715] = { + ["coords"] = { + [1] = { 50.9, 72.3, 130, 7200 }, + }, + }, + [1720] = { + ["coords"] = { + [1] = { 27.3, 99.2, 36, 7200 }, + [2] = { 32.7, 35.2, 267, 7200 }, + }, + ["fac"] = "H", + }, + [1721] = { + ["coords"] = { + [1] = { 75.3, 41.5, 267, 30 }, + }, + }, + [1722] = { + ["coords"] = { + [1] = { 79.8, 39.6, 267, 30 }, + }, + }, + [1723] = { + ["coords"] = { + [1] = { 64.9, 62.9, 267, 180 }, + [2] = { 64.1, 62.6, 267, 180 }, + [3] = { 65.1, 62.5, 267, 180 }, + [4] = { 63.5, 62.5, 267, 180 }, + [5] = { 62.9, 62.1, 267, 180 }, + [6] = { 64.6, 62, 267, 180 }, + [7] = { 64.7, 62, 267, 180 }, + [8] = { 63.8, 61.7, 267, 180 }, + [9] = { 64.2, 61.6, 267, 180 }, + [10] = { 65.9, 61.5, 267, 180 }, + [11] = { 65.4, 61.4, 267, 180 }, + [12] = { 64.8, 61.3, 267, 180 }, + [13] = { 64.6, 61.3, 267, 180 }, + [14] = { 63, 61.2, 267, 180 }, + [15] = { 63.7, 61.2, 267, 180 }, + [16] = { 63.4, 60.8, 267, 180 }, + [17] = { 65.5, 60.7, 267, 180 }, + [18] = { 64.8, 60.7, 267, 180 }, + [19] = { 65.3, 60.2, 267, 180 }, + [20] = { 64.1, 60.1, 267, 180 }, + [21] = { 64.7, 60, 267, 180 }, + [22] = { 64, 59.7, 267, 180 }, + }, + }, + [1726] = { + ["coords"] = { + [1] = { 26.5, 46.4, 44, 10 }, + }, + }, + [1727] = { + ["coords"] = { + [1] = { 10.3, 49.9, 45, 10 }, + [2] = { 9.9, 49.8, 45, 10 }, + [3] = { 9.9, 49.7, 45, 10 }, + [4] = { 10, 49, 45, 10 }, + [5] = { 10.9, 49, 45, 10 }, + [6] = { 10.7, 48.7, 45, 10 }, + [7] = { 72, 81.2, 267, 10 }, + [8] = { 71.6, 81, 267, 10 }, + [9] = { 71.5, 80.9, 267, 10 }, + [10] = { 71.6, 80.2, 267, 10 }, + [11] = { 72.7, 80.1, 267, 10 }, + [12] = { 72.4, 79.8, 267, 10 }, + }, + }, + [1728] = { + ["coords"] = { + [1] = { 61.7, 80.3, 36, 10 }, + [2] = { 62.8, 18.7, 267, 10 }, + }, + ["fac"] = "H", + }, + [1729] = { + ["coords"] = { + [1] = { 61.6, 80.3, 36, 0 }, + [2] = { 62.8, 18.7, 267, 0 }, + }, + }, + [1730] = { + ["coords"] = {}, + }, + [1731] = { + ["coords"] = { + [1] = { 43.5, 67.7, 1, 300 }, + [2] = { 48.3, 65.1, 1, 300 }, + [3] = { 38.9, 65, 1, 300 }, + [4] = { 77.5, 64.1, 1, 300 }, + [5] = { 36, 63.6, 1, 300 }, + [6] = { 42.8, 63.5, 1, 300 }, + [7] = { 50, 63.4, 1, 300 }, + [8] = { 73.7, 63.2, 1, 300 }, + [9] = { 50.3, 62.9, 1, 300 }, + [10] = { 71.2, 62.6, 1, 300 }, + [11] = { 57, 61.4, 1, 300 }, + [12] = { 43.1, 61.3, 1, 300 }, + [13] = { 65.7, 61, 1, 300 }, + [14] = { 67.5, 61, 1, 300 }, + [15] = { 68.4, 60.7, 1, 300 }, + [16] = { 38, 59.4, 1, 300 }, + [17] = { 70.8, 59.4, 1, 300 }, + [18] = { 75.6, 59.2, 1, 300 }, + [19] = { 63.6, 59.1, 1, 300 }, + [20] = { 32, 59, 1, 300 }, + [21] = { 45.2, 58.9, 1, 300 }, + [22] = { 28.6, 58.9, 1, 300 }, + [23] = { 67, 58.8, 1, 300 }, + [24] = { 52.5, 58.3, 1, 300 }, + [25] = { 72.4, 58.2, 1, 300 }, + [26] = { 49.9, 57.7, 1, 300 }, + [27] = { 80.9, 57.7, 1, 300 }, + [28] = { 61.2, 57.5, 1, 300 }, + [29] = { 68.9, 57.3, 1, 300 }, + [30] = { 71.2, 57.3, 1, 300 }, + [31] = { 66.3, 57.3, 1, 300 }, + [32] = { 69.3, 56.7, 1, 300 }, + [33] = { 58.8, 56.5, 1, 300 }, + [34] = { 70.3, 56.4, 1, 300 }, + [35] = { 56.4, 56.2, 1, 300 }, + [36] = { 65.6, 56, 1, 300 }, + [37] = { 39.9, 56, 1, 300 }, + [38] = { 82.5, 55.7, 1, 300 }, + [39] = { 71.6, 55.4, 1, 300 }, + [40] = { 70.4, 55.1, 1, 300 }, + [41] = { 21.2, 54.7, 1, 300 }, + [42] = { 29.2, 54.3, 1, 300 }, + [43] = { 33, 54.3, 1, 300 }, + [44] = { 70.6, 54.1, 1, 300 }, + [45] = { 37.6, 54, 1, 300 }, + [46] = { 44.3, 53.9, 1, 300 }, + [47] = { 84.6, 53.8, 1, 300 }, + [48] = { 23.3, 53.8, 1, 300 }, + [49] = { 73.5, 53.7, 1, 300 }, + [50] = { 71.2, 53.7, 1, 300 }, + [51] = { 76.3, 53.5, 1, 300 }, + [52] = { 72.1, 53.5, 1, 300 }, + [53] = { 78.9, 53.5, 1, 300 }, + [54] = { 37.9, 53.4, 1, 300 }, + [55] = { 56.1, 53.4, 1, 300 }, + [56] = { 70.1, 53.3, 1, 300 }, + [57] = { 72.2, 53, 1, 300 }, + [58] = { 70.4, 52.9, 1, 300 }, + [59] = { 68.9, 52.9, 1, 300 }, + [60] = { 71.4, 52.6, 1, 300 }, + [61] = { 41.7, 52.6, 1, 300 }, + [62] = { 72.4, 52.5, 1, 300 }, + [63] = { 51.7, 52.5, 1, 300 }, + [64] = { 24.2, 52.4, 1, 300 }, + [65] = { 75.1, 52.3, 1, 300 }, + [66] = { 23.6, 52.1, 1, 300 }, + [67] = { 70.6, 52.1, 1, 300 }, + [68] = { 21.4, 51.8, 1, 300 }, + [69] = { 71.2, 51.6, 1, 300 }, + [70] = { 23.1, 51.5, 1, 300 }, + [71] = { 73.1, 51.5, 1, 300 }, + [72] = { 71.6, 51.5, 1, 300 }, + [73] = { 42.8, 51.4, 1, 300 }, + [74] = { 64.9, 51.4, 1, 300 }, + [75] = { 81.6, 51.3, 1, 300 }, + [76] = { 23.4, 51.2, 1, 300 }, + [77] = { 32.8, 51.2, 1, 300 }, + [78] = { 42.4, 51, 1, 300 }, + [79] = { 72.7, 50.8, 1, 300 }, + [80] = { 70.8, 50.8, 1, 300 }, + [81] = { 43.6, 50.7, 1, 300 }, + [82] = { 67, 50.2, 1, 300 }, + [83] = { 53.4, 50, 1, 300 }, + [84] = { 43.9, 49.9, 1, 300 }, + [85] = { 72, 49.6, 1, 300 }, + [86] = { 42.2, 49.6, 1, 300 }, + [87] = { 40.8, 49.4, 1, 300 }, + [88] = { 27.1, 49, 1, 300 }, + [89] = { 38.5, 48.9, 1, 300 }, + [90] = { 68.2, 48.9, 1, 300 }, + [91] = { 34.4, 48.7, 1, 300 }, + [92] = { 38.9, 48.7, 1, 300 }, + [93] = { 40.3, 48.3, 1, 300 }, + [94] = { 43.1, 48.3, 1, 300 }, + [95] = { 72.3, 48.1, 1, 300 }, + [96] = { 42.3, 48, 1, 300 }, + [97] = { 77.7, 47.4, 1, 300 }, + [98] = { 42.9, 47.3, 1, 300 }, + [99] = { 62.5, 47.1, 1, 300 }, + [100] = { 81.7, 47, 1, 300 }, + [101] = { 41, 46.8, 1, 300 }, + [102] = { 27.5, 46.5, 1, 300 }, + [103] = { 39, 46.5, 1, 300 }, + [104] = { 42.3, 46, 1, 300 }, + [105] = { 24.3, 45.9, 1, 300 }, + [106] = { 40.6, 45.2, 1, 300 }, + [107] = { 45.2, 45.1, 1, 300 }, + [108] = { 42.9, 44.9, 1, 300 }, + [109] = { 26.8, 44.6, 1, 300 }, + [110] = { 50, 44.4, 1, 300 }, + [111] = { 51.7, 43.9, 1, 300 }, + [112] = { 37.8, 43, 1, 300 }, + [113] = { 53.7, 42.9, 1, 300 }, + [114] = { 38.2, 42.8, 1, 300 }, + [115] = { 57.9, 42, 1, 300 }, + [116] = { 40.4, 41.7, 1, 300 }, + [117] = { 34.5, 41.4, 1, 300 }, + [118] = { 36, 41.2, 1, 300 }, + [119] = { 79.8, 40.9, 1, 300 }, + [120] = { 29.7, 40.7, 1, 300 }, + [121] = { 82.4, 39.3, 1, 300 }, + [122] = { 43.2, 38.7, 1, 300 }, + [123] = { 78.4, 38.3, 1, 300 }, + [124] = { 38.9, 37.9, 1, 300 }, + [125] = { 42.1, 36.8, 1, 300 }, + [126] = { 39.7, 36.7, 1, 300 }, + [127] = { 48.5, 35.8, 1, 300 }, + [128] = { 41.3, 35.7, 1, 300 }, + [129] = { 27.1, 34.8, 1, 300 }, + [130] = { 36.5, 34.7, 1, 300 }, + [131] = { 42.5, 34.2, 1, 300 }, + [132] = { 30.8, 33.8, 1, 300 }, + [133] = { 80.1, 33.6, 1, 300 }, + [134] = { 41.3, 33.4, 1, 300 }, + [135] = { 40, 33.1, 1, 300 }, + [136] = { 33.5, 30.7, 1, 300 }, + [137] = { 38.7, 29.8, 1, 300 }, + [138] = { 44.1, 29.1, 1, 300 }, + [139] = { 41.3, 29, 1, 300 }, + [140] = { 39, 12.3, 3, 300 }, + [141] = { 20.1, 80.2, 10, 300 }, + [142] = { 65.1, 80.1, 10, 300 }, + [143] = { 64.4, 78.9, 10, 300 }, + [144] = { 59.6, 78.2, 10, 300 }, + [145] = { 40.3, 78.2, 10, 300 }, + [146] = { 52.3, 77.9, 10, 300 }, + [147] = { 68.5, 77.8, 10, 300 }, + [148] = { 38.1, 76.9, 10, 300 }, + [149] = { 57.9, 74.8, 10, 300 }, + [150] = { 69.1, 74.1, 10, 300 }, + [151] = { 42, 73.8, 10, 300 }, + [152] = { 46.4, 73.5, 10, 300 }, + [153] = { 74.6, 72.2, 10, 300 }, + [154] = { 70.9, 72.1, 10, 300 }, + [155] = { 28.1, 69.8, 10, 300 }, + [156] = { 37.6, 69.4, 10, 300 }, + [157] = { 78.4, 63.3, 10, 300 }, + [158] = { 66.6, 56.1, 10, 300 }, + [159] = { 84.1, 55.5, 10, 300 }, + [160] = { 37.8, 54.6, 10, 300 }, + [161] = { 82.4, 51.2, 10, 300 }, + [162] = { 59, 46.7, 10, 300 }, + [163] = { 5.8, 44.6, 10, 300 }, + [164] = { 33.6, 44.3, 10, 300 }, + [165] = { 29.3, 42.5, 10, 300 }, + [166] = { 66, 41.7, 10, 300 }, + [167] = { 68.3, 39.9, 10, 300 }, + [168] = { 60.1, 35.7, 10, 300 }, + [169] = { 27.8, 34.7, 10, 300 }, + [170] = { 56.8, 25.5, 10, 300 }, + [171] = { 43.5, 22.6, 10, 300 }, + [172] = { 47.5, 20.6, 10, 300 }, + [173] = { 66.1, 90.8, 11, 300 }, + [174] = { 51.3, 79.6, 11, 300 }, + [175] = { 63.6, 77, 11, 300 }, + [176] = { 50.4, 75.1, 11, 300 }, + [177] = { 47.9, 73, 11, 300 }, + [178] = { 64.1, 72.8, 11, 300 }, + [179] = { 50.4, 72.4, 11, 300 }, + [180] = { 61, 70.1, 11, 300 }, + [181] = { 61.8, 68.2, 11, 300 }, + [182] = { 59.9, 61.2, 11, 300 }, + [183] = { 24, 59.9, 11, 300 }, + [184] = { 60.2, 56.9, 11, 300 }, + [185] = { 25.4, 54.3, 11, 300 }, + [186] = { 25.8, 50.2, 11, 300 }, + [187] = { 30.3, 46.8, 11, 300 }, + [188] = { 31.8, 43.2, 11, 300 }, + [189] = { 22.8, 38.9, 11, 300 }, + [190] = { 27.7, 37.2, 11, 300 }, + [191] = { 25.7, 35.7, 11, 300 }, + [192] = { 20.7, 35.2, 11, 300 }, + [193] = { 31.1, 34.7, 11, 300 }, + [194] = { 37.3, 33.3, 11, 300 }, + [195] = { 27.5, 32.3, 11, 300 }, + [196] = { 23.4, 31.8, 11, 300 }, + [197] = { 34.3, 29.1, 11, 300 }, + [198] = { 29.5, 28.1, 11, 300 }, + [199] = { 31, 22.1, 11, 300 }, + [200] = { 29.2, 88.1, 12, 300 }, + [201] = { 50.5, 87.2, 12, 300 }, + [202] = { 38.3, 86.7, 12, 300 }, + [203] = { 75.4, 85.7, 12, 300 }, + [204] = { 52.5, 85.6, 12, 300 }, + [205] = { 50.1, 84.7, 12, 300 }, + [206] = { 77.4, 84.6, 12, 300 }, + [207] = { 24.2, 84.4, 12, 300 }, + [208] = { 51.5, 83.6, 12, 300 }, + [209] = { 39.8, 83.1, 12, 300 }, + [210] = { 37.3, 82.8, 12, 300 }, + [211] = { 41.1, 82.7, 12, 300 }, + [212] = { 54.1, 82.2, 12, 300 }, + [213] = { 40.7, 82.1, 12, 300 }, + [214] = { 38.3, 81.9, 12, 300 }, + [215] = { 38.9, 81.6, 12, 300 }, + [216] = { 85.4, 81.3, 12, 300 }, + [217] = { 55.9, 81.3, 12, 300 }, + [218] = { 38.3, 81.1, 12, 300 }, + [219] = { 39.1, 81.1, 12, 300 }, + [220] = { 40, 81.1, 12, 300 }, + [221] = { 51.3, 80.7, 12, 300 }, + [222] = { 83.6, 80.6, 12, 300 }, + [223] = { 76.2, 80.5, 12, 300 }, + [224] = { 40.5, 80.5, 12, 300 }, + [225] = { 41.7, 80.5, 12, 300 }, + [226] = { 41.1, 80.4, 12, 300 }, + [227] = { 80.3, 80, 12, 300 }, + [228] = { 40.7, 79.8, 12, 300 }, + [229] = { 41.6, 79.6, 12, 300 }, + [230] = { 40, 79.3, 12, 300 }, + [231] = { 56.3, 79.3, 12, 300 }, + [232] = { 85.7, 79.1, 12, 300 }, + [233] = { 39.9, 79.1, 12, 300 }, + [234] = { 59.5, 78.8, 12, 300 }, + [235] = { 40.2, 78.6, 12, 300 }, + [236] = { 57.5, 78.6, 12, 300 }, + [237] = { 42, 78.5, 12, 300 }, + [238] = { 38.9, 78.3, 12, 300 }, + [239] = { 40.2, 77.9, 12, 300 }, + [240] = { 20.8, 77.7, 12, 300 }, + [241] = { 41.7, 77.6, 12, 300 }, + [242] = { 59.7, 77.3, 12, 300 }, + [243] = { 40.8, 77.1, 12, 300 }, + [244] = { 41.6, 77.1, 12, 300 }, + [245] = { 52, 76.4, 12, 300 }, + [246] = { 94.8, 76, 12, 300 }, + [247] = { 17.9, 75.5, 12, 300 }, + [248] = { 78.7, 75.4, 12, 300 }, + [249] = { 20.7, 74.9, 12, 300 }, + [250] = { 43.7, 74.1, 12, 300 }, + [251] = { 50.4, 74, 12, 300 }, + [252] = { 47.6, 73.8, 12, 300 }, + [253] = { 41.3, 73, 12, 300 }, + [254] = { 45.6, 72.6, 12, 300 }, + [255] = { 34.3, 72.5, 12, 300 }, + [256] = { 29.3, 72, 12, 300 }, + [257] = { 65.6, 72, 12, 300 }, + [258] = { 38.1, 71.1, 12, 300 }, + [259] = { 20.8, 71.1, 12, 300 }, + [260] = { 31.8, 70.7, 12, 300 }, + [261] = { 67, 70.5, 12, 300 }, + [262] = { 27.7, 69.9, 12, 300 }, + [263] = { 25.4, 69.2, 12, 300 }, + [264] = { 69.1, 68.8, 12, 300 }, + [265] = { 51.3, 67.5, 12, 300 }, + [266] = { 25.5, 66.6, 12, 300 }, + [267] = { 28.1, 66.2, 12, 300 }, + [268] = { 60.1, 65.2, 12, 300 }, + [269] = { 72.5, 65, 12, 300 }, + [270] = { 60.4, 63.8, 12, 300 }, + [271] = { 62.3, 63.5, 12, 300 }, + [272] = { 52.2, 63.3, 12, 300 }, + [273] = { 74.5, 63.2, 12, 300 }, + [274] = { 32.1, 63.2, 12, 300 }, + [275] = { 89.4, 62, 12, 300 }, + [276] = { 30, 60.2, 12, 300 }, + [277] = { 86.9, 60.2, 12, 300 }, + [278] = { 75.9, 59.8, 12, 300 }, + [279] = { 28.1, 59.7, 12, 300 }, + [280] = { 52, 58.6, 12, 300 }, + [281] = { 57.3, 56.8, 12, 300 }, + [282] = { 31.5, 56.6, 12, 300 }, + [283] = { 65.4, 56.5, 12, 300 }, + [284] = { 70.7, 55.4, 12, 300 }, + [285] = { 74.6, 55.2, 12, 300 }, + [286] = { 61.5, 54.1, 12, 300 }, + [287] = { 30.2, 54, 12, 300 }, + [288] = { 61.9, 53.8, 12, 300 }, + [289] = { 60.7, 53, 12, 300 }, + [290] = { 72.6, 52.5, 12, 300 }, + [291] = { 41, 52.4, 12, 300 }, + [292] = { 61.5, 52.4, 12, 300 }, + [293] = { 62.2, 52.3, 12, 300 }, + [294] = { 61.3, 51.8, 12, 300 }, + [295] = { 76.5, 51.7, 12, 300 }, + [296] = { 38.6, 50.8, 12, 300 }, + [297] = { 37.3, 50.8, 12, 300 }, + [298] = { 61.2, 50.6, 12, 300 }, + [299] = { 60.4, 50.4, 12, 300 }, + [300] = { 42, 50.2, 12, 300 }, + [301] = { 61.1, 50.2, 12, 300 }, + [302] = { 60.1, 49.7, 12, 300 }, + [303] = { 61.4, 49.7, 12, 300 }, + [304] = { 78.6, 49.5, 12, 300 }, + [305] = { 43.5, 49, 12, 300 }, + [306] = { 61, 48.9, 12, 300 }, + [307] = { 60.1, 48.9, 12, 300 }, + [308] = { 62.1, 48.4, 12, 300 }, + [309] = { 74.2, 48, 12, 300 }, + [310] = { 70.1, 47.6, 12, 300 }, + [311] = { 60.9, 47.4, 12, 300 }, + [312] = { 60.6, 47.2, 12, 300 }, + [313] = { 65.1, 47.1, 12, 300 }, + [314] = { 62, 47.1, 12, 300 }, + [315] = { 61.4, 46.9, 12, 300 }, + [316] = { 73.2, 43.8, 12, 300 }, + [317] = { 80.8, 42.6, 12, 300 }, + [318] = { 64.8, 39.1, 12, 300 }, + [319] = { 69.7, 37.3, 12, 300 }, + [320] = { 79.1, 37.2, 12, 300 }, + [321] = { 74.6, 36.8, 12, 300 }, + [322] = { 67.7, 88.2, 14, 300 }, + [323] = { 48, 79.7, 14, 300 }, + [324] = { 54, 79.6, 14, 300 }, + [325] = { 46.8, 79.2, 14, 300 }, + [326] = { 50, 78.1, 14, 300 }, + [327] = { 48.3, 78, 14, 300 }, + [328] = { 52.5, 76.2, 14, 300 }, + [329] = { 52.1, 75.1, 14, 300 }, + [330] = { 54.4, 75, 14, 300 }, + [331] = { 68.1, 73.6, 14, 300 }, + [332] = { 53.4, 73.3, 14, 300 }, + [333] = { 51.7, 71.7, 14, 300 }, + [334] = { 70.4, 71.6, 14, 300 }, + [335] = { 56.5, 71.5, 14, 300 }, + [336] = { 54.8, 70.2, 14, 300 }, + [337] = { 68.5, 69.8, 14, 300 }, + [338] = { 55.7, 66.9, 14, 300 }, + [339] = { 50.5, 63.1, 14, 300 }, + [340] = { 52.7, 62.6, 14, 300 }, + [341] = { 60.1, 61.8, 14, 300 }, + [342] = { 59.3, 61, 14, 300 }, + [343] = { 54.6, 60.3, 14, 300 }, + [344] = { 61.1, 60.1, 14, 300 }, + [345] = { 52.6, 59.3, 14, 300 }, + [346] = { 60.6, 57.2, 14, 300 }, + [347] = { 60.5, 55.6, 14, 300 }, + [348] = { 60.4, 55.5, 14, 300 }, + [349] = { 51.4, 55.4, 14, 300 }, + [350] = { 38.9, 54.5, 14, 300 }, + [351] = { 49.9, 54.4, 14, 300 }, + [352] = { 37.3, 51.6, 14, 300 }, + [353] = { 42.9, 51.5, 14, 300 }, + [354] = { 49.5, 51.1, 14, 300 }, + [355] = { 38.3, 50.6, 14, 300 }, + [356] = { 45.1, 50.4, 14, 300 }, + [357] = { 40.5, 50.3, 14, 300 }, + [358] = { 45.7, 49.6, 14, 300 }, + [359] = { 48.6, 49.4, 14, 300 }, + [360] = { 48.5, 49.2, 14, 300 }, + [361] = { 47.8, 49.2, 14, 300 }, + [362] = { 48.4, 49, 14, 300 }, + [363] = { 56.3, 48.8, 14, 300 }, + [364] = { 49.8, 48.2, 14, 300 }, + [365] = { 44.6, 47.8, 14, 300 }, + [366] = { 41.1, 47.5, 14, 300 }, + [367] = { 58.9, 47.1, 14, 300 }, + [368] = { 53.5, 46, 14, 300 }, + [369] = { 47, 45.8, 14, 300 }, + [370] = { 53.1, 45.8, 14, 300 }, + [371] = { 36, 45.4, 14, 300 }, + [372] = { 36.1, 44.2, 14, 300 }, + [373] = { 57.5, 42.6, 14, 300 }, + [374] = { 56.9, 41.2, 14, 300 }, + [375] = { 49.8, 41.1, 14, 300 }, + [376] = { 59.2, 41.1, 14, 300 }, + [377] = { 39.5, 40.2, 14, 300 }, + [378] = { 43.4, 39.6, 14, 300 }, + [379] = { 47, 39.6, 14, 300 }, + [380] = { 56.3, 39.4, 14, 300 }, + [381] = { 48, 38.6, 14, 300 }, + [382] = { 42.4, 38.1, 14, 300 }, + [383] = { 42.2, 37.6, 14, 300 }, + [384] = { 46.6, 37.2, 14, 300 }, + [385] = { 37.1, 37, 14, 300 }, + [386] = { 52.9, 36.6, 14, 300 }, + [387] = { 56.2, 36.1, 14, 300 }, + [388] = { 49.5, 35.9, 14, 300 }, + [389] = { 55.1, 35.8, 14, 300 }, + [390] = { 35.6, 35.5, 14, 300 }, + [391] = { 43.8, 34.6, 14, 300 }, + [392] = { 42, 34.5, 14, 300 }, + [393] = { 40.9, 33.9, 14, 300 }, + [394] = { 36.4, 33.7, 14, 300 }, + [395] = { 50.4, 33, 14, 300 }, + [396] = { 52.8, 32.9, 14, 300 }, + [397] = { 48.8, 32.7, 14, 300 }, + [398] = { 45.8, 31.4, 14, 300 }, + [399] = { 48.2, 31.1, 14, 300 }, + [400] = { 38.7, 31.1, 14, 300 }, + [401] = { 40.9, 30.9, 14, 300 }, + [402] = { 40.5, 30.5, 14, 300 }, + [403] = { 51.5, 30, 14, 300 }, + [404] = { 38.5, 29.6, 14, 300 }, + [405] = { 36.1, 28.9, 14, 300 }, + [406] = { 39.2, 28.9, 14, 300 }, + [407] = { 53.1, 28.8, 14, 300 }, + [408] = { 39.4, 28.7, 14, 300 }, + [409] = { 54.3, 28.5, 14, 300 }, + [410] = { 53.2, 27.9, 14, 300 }, + [411] = { 51.8, 27.8, 14, 300 }, + [412] = { 40.3, 27.7, 14, 300 }, + [413] = { 42.5, 27.6, 14, 300 }, + [414] = { 39.6, 27.6, 14, 300 }, + [415] = { 52.7, 27.4, 14, 300 }, + [416] = { 41.6, 27.3, 14, 300 }, + [417] = { 42.4, 27.2, 14, 300 }, + [418] = { 53, 27.2, 14, 300 }, + [419] = { 53.5, 27, 14, 300 }, + [420] = { 52.7, 27, 14, 300 }, + [421] = { 51.9, 26.6, 14, 300 }, + [422] = { 42.9, 26.6, 14, 300 }, + [423] = { 52.6, 26.5, 14, 300 }, + [424] = { 49.9, 26.4, 14, 300 }, + [425] = { 36, 26.3, 14, 300 }, + [426] = { 40.1, 25.9, 14, 300 }, + [427] = { 50, 25.8, 14, 300 }, + [428] = { 39.2, 25.7, 14, 300 }, + [429] = { 42.8, 25.5, 14, 300 }, + [430] = { 39.1, 25.2, 14, 300 }, + [431] = { 43.8, 25.1, 14, 300 }, + [432] = { 38.2, 25.1, 14, 300 }, + [433] = { 51.8, 24.9, 14, 300 }, + [434] = { 52.7, 24.8, 14, 300 }, + [435] = { 40.9, 24.5, 14, 300 }, + [436] = { 42.7, 24.4, 14, 300 }, + [437] = { 42.8, 24.3, 14, 300 }, + [438] = { 39.4, 24.2, 14, 300 }, + [439] = { 53.5, 24.1, 14, 300 }, + [440] = { 44.2, 24.1, 14, 300 }, + [441] = { 55.7, 23.9, 14, 300 }, + [442] = { 52.1, 23.7, 14, 300 }, + [443] = { 40.1, 23.5, 14, 300 }, + [444] = { 43.8, 23.3, 14, 300 }, + [445] = { 51.4, 22.9, 14, 300 }, + [446] = { 52.4, 21.7, 14, 300 }, + [447] = { 53.8, 21.3, 14, 300 }, + [448] = { 55.4, 21.3, 14, 300 }, + [449] = { 49.7, 21, 14, 300 }, + [450] = { 37.6, 20.9, 14, 300 }, + [451] = { 42.8, 19.7, 14, 300 }, + [452] = { 54.6, 19.6, 14, 300 }, + [453] = { 51.6, 19.3, 14, 300 }, + [454] = { 49.6, 19.1, 14, 300 }, + [455] = { 53, 18.2, 14, 300 }, + [456] = { 41.4, 17.9, 14, 300 }, + [457] = { 54.8, 17.9, 14, 300 }, + [458] = { 59.5, 17.8, 14, 300 }, + [459] = { 50.8, 17.2, 14, 300 }, + [460] = { 49.7, 16.9, 14, 300 }, + [461] = { 56.3, 16.1, 14, 300 }, + [462] = { 56.5, 16, 14, 300 }, + [463] = { 38.4, 15.4, 14, 300 }, + [464] = { 39.6, 14.4, 14, 300 }, + [465] = { 54.2, 13.9, 14, 300 }, + [466] = { 53.2, 11.1, 14, 300 }, + [467] = { 52, 11.1, 14, 300 }, + [468] = { 51.1, 10.7, 14, 300 }, + [469] = { 53.8, 9.9, 14, 300 }, + [470] = { 52.6, 9.9, 14, 300 }, + [471] = { 51.6, 9.9, 14, 300 }, + [472] = { 55.4, 9.8, 14, 300 }, + [473] = { 54.9, 9.7, 14, 300 }, + [474] = { 53.2, 9.7, 14, 300 }, + [475] = { 54, 9.1, 14, 300 }, + [476] = { 51.2, 9, 14, 300 }, + [477] = { 53.7, 8.5, 14, 300 }, + [478] = { 54.8, 8.5, 14, 300 }, + [479] = { 52, 8.4, 14, 300 }, + [480] = { 56.8, 8.3, 14, 300 }, + [481] = { 52.8, 8.2, 14, 300 }, + [482] = { 51.5, 8.2, 14, 300 }, + [483] = { 53.1, 7, 14, 300 }, + [484] = { 27.1, 40.2, 15, 300 }, + [485] = { 29.8, 13.2, 15, 300 }, + [486] = { 31.4, 10.3, 15, 300 }, + [487] = { 44.2, 96, 17, 300 }, + [488] = { 42.6, 95.6, 17, 300 }, + [489] = { 43, 94.7, 17, 300 }, + [490] = { 41.4, 93.1, 17, 300 }, + [491] = { 39.5, 92.7, 17, 300 }, + [492] = { 38.7, 92.7, 17, 300 }, + [493] = { 42.8, 92.3, 17, 300 }, + [494] = { 37.3, 90.4, 17, 300 }, + [495] = { 48.6, 85.2, 17, 300 }, + [496] = { 41.7, 82.4, 17, 300 }, + [497] = { 45.7, 82.2, 17, 300 }, + [498] = { 49.6, 80.3, 17, 300 }, + [499] = { 41.1, 79.2, 17, 300 }, + [500] = { 49.6, 76.8, 17, 300 }, + [501] = { 49.6, 74.8, 17, 300 }, + [502] = { 48.6, 74.4, 17, 300 }, + [503] = { 43.5, 72.8, 17, 300 }, + [504] = { 48.2, 72.8, 17, 300 }, + [505] = { 42.1, 71.1, 17, 300 }, + [506] = { 44.1, 70.8, 17, 300 }, + [507] = { 41.7, 68.8, 17, 300 }, + [508] = { 43.9, 68.6, 17, 300 }, + [509] = { 44.9, 67, 17, 300 }, + [510] = { 39.6, 64.8, 17, 300 }, + [511] = { 44.3, 64.6, 17, 300 }, + [512] = { 45.9, 64.2, 17, 300 }, + [513] = { 40.4, 63.2, 17, 300 }, + [514] = { 43.3, 62.9, 17, 300 }, + [515] = { 49.6, 62.9, 17, 300 }, + [516] = { 48, 62.3, 17, 300 }, + [517] = { 49.4, 62, 17, 300 }, + [518] = { 40.5, 61, 17, 300 }, + [519] = { 51, 60.8, 17, 300 }, + [520] = { 40.6, 59.9, 17, 300 }, + [521] = { 51.8, 59.3, 17, 300 }, + [522] = { 42, 56.7, 17, 300 }, + [523] = { 37.5, 56, 17, 300 }, + [524] = { 36.9, 55, 17, 300 }, + [525] = { 47.2, 54.4, 17, 300 }, + [526] = { 60.1, 54.1, 17, 300 }, + [527] = { 36.7, 54, 17, 300 }, + [528] = { 36.9, 53.5, 17, 300 }, + [529] = { 54.8, 53.3, 17, 300 }, + [530] = { 58.4, 53.2, 17, 300 }, + [531] = { 55.8, 53, 17, 300 }, + [532] = { 56.5, 51.6, 17, 300 }, + [533] = { 35.8, 51.2, 17, 300 }, + [534] = { 59, 51.2, 17, 300 }, + [535] = { 37.9, 50.7, 17, 300 }, + [536] = { 38.6, 50.6, 17, 300 }, + [537] = { 44.9, 50.4, 17, 300 }, + [538] = { 38.4, 49.5, 17, 300 }, + [539] = { 37.4, 49.4, 17, 300 }, + [540] = { 58.1, 49.4, 17, 300 }, + [541] = { 38.2, 49.3, 17, 300 }, + [542] = { 57.1, 49.2, 17, 300 }, + [543] = { 60.1, 49.2, 17, 300 }, + [544] = { 62.4, 49.1, 17, 300 }, + [545] = { 36.6, 48.3, 17, 300 }, + [546] = { 37.7, 48.2, 17, 300 }, + [547] = { 36.6, 48.1, 17, 300 }, + [548] = { 58.8, 47.8, 17, 300 }, + [549] = { 39.7, 47.6, 17, 300 }, + [550] = { 37.5, 47.5, 17, 300 }, + [551] = { 60.5, 47.5, 17, 300 }, + [552] = { 41.9, 47.4, 17, 300 }, + [553] = { 52.5, 47.1, 17, 300 }, + [554] = { 38.8, 46.9, 17, 300 }, + [555] = { 46.4, 46.9, 17, 300 }, + [556] = { 36.6, 46.9, 17, 300 }, + [557] = { 40.7, 46.9, 17, 300 }, + [558] = { 62.2, 46.8, 17, 300 }, + [559] = { 35.7, 46.7, 17, 300 }, + [560] = { 64.7, 46.5, 17, 300 }, + [561] = { 36.7, 46.5, 17, 300 }, + [562] = { 59.6, 46.2, 17, 300 }, + [563] = { 37.7, 45.9, 17, 300 }, + [564] = { 48.3, 45.8, 17, 300 }, + [565] = { 63.2, 45.6, 17, 300 }, + [566] = { 61.5, 45.5, 17, 300 }, + [567] = { 49.3, 45.3, 17, 300 }, + [568] = { 35.5, 45.2, 17, 300 }, + [569] = { 36, 44.8, 17, 300 }, + [570] = { 64.7, 44.5, 17, 300 }, + [571] = { 49.5, 44.4, 17, 300 }, + [572] = { 41.9, 44.4, 17, 300 }, + [573] = { 36.6, 44.4, 17, 300 }, + [574] = { 37.4, 44.3, 17, 300 }, + [575] = { 61.1, 44.2, 17, 300 }, + [576] = { 63, 43.9, 17, 300 }, + [577] = { 55.1, 43.8, 17, 300 }, + [578] = { 35.2, 43.8, 17, 300 }, + [579] = { 47.9, 43.8, 17, 300 }, + [580] = { 57.1, 43.6, 17, 300 }, + [581] = { 37, 43.5, 17, 300 }, + [582] = { 80.6, 43.1, 17, 300 }, + [583] = { 36.1, 43.1, 17, 300 }, + [584] = { 63.4, 42.7, 17, 300 }, + [585] = { 36.5, 42.7, 17, 300 }, + [586] = { 44.9, 42.6, 17, 300 }, + [587] = { 41.9, 42.6, 17, 300 }, + [588] = { 51.5, 42.5, 17, 300 }, + [589] = { 58.9, 41.5, 17, 300 }, + [590] = { 53, 41.3, 17, 300 }, + [591] = { 50.9, 41.3, 17, 300 }, + [592] = { 37.6, 41, 17, 300 }, + [593] = { 55.7, 40.7, 17, 300 }, + [594] = { 61.3, 40.3, 17, 300 }, + [595] = { 47.8, 40, 17, 300 }, + [596] = { 41.4, 39.9, 17, 300 }, + [597] = { 46.5, 39.6, 17, 300 }, + [598] = { 51.9, 39.6, 17, 300 }, + [599] = { 36.8, 39.2, 17, 300 }, + [600] = { 42.7, 38.9, 17, 300 }, + [601] = { 37.8, 38.3, 17, 300 }, + [602] = { 56.5, 38.2, 17, 300 }, + [603] = { 41.5, 38, 17, 300 }, + [604] = { 37.3, 37.9, 17, 300 }, + [605] = { 36.5, 37.4, 17, 300 }, + [606] = { 35.5, 37, 17, 300 }, + [607] = { 37.3, 36.7, 17, 300 }, + [608] = { 59.9, 36.6, 17, 300 }, + [609] = { 41.8, 36.4, 17, 300 }, + [610] = { 46.3, 36, 17, 300 }, + [611] = { 34.5, 35.9, 17, 300 }, + [612] = { 41.1, 35.3, 17, 300 }, + [613] = { 41.9, 35.2, 17, 300 }, + [614] = { 33.3, 35.1, 17, 300 }, + [615] = { 34, 34.8, 17, 300 }, + [616] = { 61.7, 34.8, 17, 300 }, + [617] = { 47.1, 34.6, 17, 300 }, + [618] = { 49, 34.5, 17, 300 }, + [619] = { 33.4, 34.4, 17, 300 }, + [620] = { 41.6, 33.5, 17, 300 }, + [621] = { 49.4, 33.2, 17, 300 }, + [622] = { 47.8, 33.1, 17, 300 }, + [623] = { 33.5, 33, 17, 300 }, + [624] = { 45.9, 32.8, 17, 300 }, + [625] = { 58.1, 32.6, 17, 300 }, + [626] = { 56.4, 32.4, 17, 300 }, + [627] = { 33, 32.4, 17, 300 }, + [628] = { 40.1, 32.3, 17, 300 }, + [629] = { 57.5, 31.7, 17, 300 }, + [630] = { 58.7, 31.6, 17, 300 }, + [631] = { 55.6, 31.5, 17, 300 }, + [632] = { 61.9, 31.4, 17, 300 }, + [633] = { 31.1, 31.3, 17, 300 }, + [634] = { 39.3, 31.3, 17, 300 }, + [635] = { 32.4, 31.2, 17, 300 }, + [636] = { 56.2, 31, 17, 300 }, + [637] = { 58.6, 30.8, 17, 300 }, + [638] = { 32.1, 30.4, 17, 300 }, + [639] = { 61.4, 30.1, 17, 300 }, + [640] = { 47.5, 30.1, 17, 300 }, + [641] = { 62.1, 29.3, 17, 300 }, + [642] = { 58.8, 29.3, 17, 300 }, + [643] = { 41.1, 29, 17, 300 }, + [644] = { 57.7, 28.9, 17, 300 }, + [645] = { 55.4, 28.9, 17, 300 }, + [646] = { 58.1, 28.2, 17, 300 }, + [647] = { 40.4, 27.9, 17, 300 }, + [648] = { 57.2, 26.9, 17, 300 }, + [649] = { 31.2, 26.8, 17, 300 }, + [650] = { 61.2, 26.5, 17, 300 }, + [651] = { 57.8, 25.7, 17, 300 }, + [652] = { 55.7, 25.4, 17, 300 }, + [653] = { 31.6, 25.4, 17, 300 }, + [654] = { 38.9, 25.4, 17, 300 }, + [655] = { 39.9, 25.2, 17, 300 }, + [656] = { 59.6, 25, 17, 300 }, + [657] = { 50, 24.2, 17, 300 }, + [658] = { 50.7, 24, 17, 300 }, + [659] = { 59.2, 23.6, 17, 300 }, + [660] = { 30.9, 23.4, 17, 300 }, + [661] = { 42.9, 23.2, 17, 300 }, + [662] = { 43.4, 23.1, 17, 300 }, + [663] = { 31, 22.9, 17, 300 }, + [664] = { 47, 22.7, 17, 300 }, + [665] = { 47.4, 22.7, 17, 300 }, + [666] = { 43.8, 22.7, 17, 300 }, + [667] = { 48.7, 22.7, 17, 300 }, + [668] = { 48.3, 22.6, 17, 300 }, + [669] = { 44, 22.3, 17, 300 }, + [670] = { 51, 21.6, 17, 300 }, + [671] = { 50.8, 21.6, 17, 300 }, + [672] = { 44.7, 21.4, 17, 300 }, + [673] = { 44.9, 21.2, 17, 300 }, + [674] = { 43, 21.1, 17, 300 }, + [675] = { 34.7, 20.9, 17, 300 }, + [676] = { 64, 20.8, 17, 300 }, + [677] = { 46.2, 20.7, 17, 300 }, + [678] = { 64.1, 20.1, 17, 300 }, + [679] = { 48, 20.1, 17, 300 }, + [680] = { 50.2, 19.8, 17, 300 }, + [681] = { 50.5, 19.6, 17, 300 }, + [682] = { 43.3, 19.1, 17, 300 }, + [683] = { 48.3, 18.7, 17, 300 }, + [684] = { 46.8, 18.2, 17, 300 }, + [685] = { 48, 18.1, 17, 300 }, + [686] = { 45.4, 17.9, 17, 300 }, + [687] = { 50.3, 17.9, 17, 300 }, + [688] = { 61.1, 17.6, 17, 300 }, + [689] = { 50.6, 17.6, 17, 300 }, + [690] = { 43.5, 17.5, 17, 300 }, + [691] = { 58.3, 17.2, 17, 300 }, + [692] = { 60.1, 16.4, 17, 300 }, + [693] = { 63.8, 15.6, 17, 300 }, + [694] = { 58.3, 15.1, 17, 300 }, + [695] = { 62, 14.7, 17, 300 }, + [696] = { 64.3, 14.7, 17, 300 }, + [697] = { 56.3, 14.5, 17, 300 }, + [698] = { 59.4, 14.4, 17, 300 }, + [699] = { 57.1, 14.1, 17, 300 }, + [700] = { 60.7, 13.8, 17, 300 }, + [701] = { 56.1, 13.1, 17, 300 }, + [702] = { 53.5, 13, 17, 300 }, + [703] = { 65.4, 12.5, 17, 300 }, + [704] = { 58.5, 12.2, 17, 300 }, + [705] = { 64.1, 12.2, 17, 300 }, + [706] = { 39.6, 11.9, 17, 300 }, + [707] = { 56.9, 11.8, 17, 300 }, + [708] = { 55.9, 11.8, 17, 300 }, + [709] = { 62.1, 11.4, 17, 300 }, + [710] = { 60.2, 11.1, 17, 300 }, + [711] = { 59, 11, 17, 300 }, + [712] = { 64.1, 10.8, 17, 300 }, + [713] = { 56.9, 10.7, 17, 300 }, + [714] = { 65.2, 10.2, 17, 300 }, + [715] = { 52.7, 10, 17, 300 }, + [716] = { 62.3, 9.7, 17, 300 }, + [717] = { 57.7, 9.5, 17, 300 }, + [718] = { 64.9, 8, 17, 300 }, + [719] = { 58.6, 5.6, 17, 300 }, + [720] = { 65.3, 5.1, 17, 300 }, + [721] = { 57.5, 4.6, 17, 300 }, + [722] = { 60.9, 3.6, 17, 300 }, + [723] = { 60.3, 3.4, 17, 300 }, + [724] = { 59.8, 2.9, 17, 300 }, + [725] = { 61.7, 2.1, 17, 300 }, + [726] = { 25.7, 62.6, 28, 300 }, + [727] = { 18.5, 62, 28, 300 }, + [728] = { 22.7, 60.9, 28, 300 }, + [729] = { 25.7, 60.4, 28, 300 }, + [730] = { 27.1, 55.3, 28, 300 }, + [731] = { 25.5, 51.5, 28, 300 }, + [732] = { 27.1, 51.3, 28, 300 }, + [733] = { 28.4, 51, 28, 300 }, + [734] = { 24.3, 47, 28, 300 }, + [735] = { 19.6, 34.5, 28, 300 }, + [736] = { 33.2, 30.6, 28, 300 }, + [737] = { 30.8, 27.1, 28, 300 }, + [738] = { 27.7, 24.2, 28, 300 }, + [739] = { 29.4, 23.2, 28, 300 }, + [740] = { 31.3, 22.5, 28, 300 }, + [741] = { 29.1, 20.4, 28, 300 }, + [742] = { 58.1, 97.3, 36, 300 }, + [743] = { 17.5, 96, 36, 300 }, + [744] = { 19.8, 95.3, 36, 300 }, + [745] = { 37.5, 91, 38, 300 }, + [746] = { 35.5, 89.9, 38, 300 }, + [747] = { 34.5, 89.6, 38, 300 }, + [748] = { 37.3, 88.8, 38, 300 }, + [749] = { 35.2, 88.7, 38, 300 }, + [750] = { 33.7, 88.3, 38, 300 }, + [751] = { 38.3, 87.3, 38, 300 }, + [752] = { 35, 85.2, 38, 300 }, + [753] = { 35.8, 84.8, 38, 300 }, + [754] = { 35.3, 83.4, 38, 300 }, + [755] = { 31.4, 82.3, 38, 300 }, + [756] = { 34, 80.3, 38, 300 }, + [757] = { 28.6, 80.1, 38, 300 }, + [758] = { 58.6, 78.4, 38, 300 }, + [759] = { 78.1, 77.8, 38, 300 }, + [760] = { 31, 77.3, 38, 300 }, + [761] = { 67.3, 77.1, 38, 300 }, + [762] = { 35.5, 76.8, 38, 300 }, + [763] = { 39.8, 75.7, 38, 300 }, + [764] = { 75.3, 75.1, 38, 300 }, + [765] = { 63.8, 74.6, 38, 300 }, + [766] = { 53.8, 72.2, 38, 300 }, + [767] = { 58.6, 72.2, 38, 300 }, + [768] = { 57.7, 70.9, 38, 300 }, + [769] = { 34.6, 70.9, 38, 300 }, + [770] = { 44.2, 70.5, 38, 300 }, + [771] = { 70.4, 68.6, 38, 300 }, + [772] = { 55.8, 68.3, 38, 300 }, + [773] = { 62.4, 67.1, 38, 300 }, + [774] = { 59.2, 66.9, 38, 300 }, + [775] = { 42.9, 66.5, 38, 300 }, + [776] = { 41, 65.5, 38, 300 }, + [777] = { 78.8, 64.5, 38, 300 }, + [778] = { 45.8, 62.8, 38, 300 }, + [779] = { 42, 61.9, 38, 300 }, + [780] = { 33.8, 61.8, 38, 300 }, + [781] = { 76.6, 60.8, 38, 300 }, + [782] = { 45.8, 60.1, 38, 300 }, + [783] = { 56.3, 59.5, 38, 300 }, + [784] = { 34.1, 57.6, 38, 300 }, + [785] = { 84.2, 57.3, 38, 300 }, + [786] = { 73.3, 57.2, 38, 300 }, + [787] = { 26, 56.9, 38, 300 }, + [788] = { 36.1, 56.6, 38, 300 }, + [789] = { 78.6, 56.3, 38, 300 }, + [790] = { 26.7, 56, 38, 300 }, + [791] = { 48, 55, 38, 300 }, + [792] = { 77.9, 53.8, 38, 300 }, + [793] = { 67.8, 53.7, 38, 300 }, + [794] = { 43.4, 53.1, 38, 300 }, + [795] = { 26, 50.9, 38, 300 }, + [796] = { 51.8, 50, 38, 300 }, + [797] = { 73.7, 48.3, 38, 300 }, + [798] = { 41.5, 47.8, 38, 300 }, + [799] = { 56.5, 47.6, 38, 300 }, + [800] = { 45, 47.5, 38, 300 }, + [801] = { 26.3, 47.3, 38, 300 }, + [802] = { 56.9, 44.5, 38, 300 }, + [803] = { 25.6, 44.5, 38, 300 }, + [804] = { 50.2, 44.3, 38, 300 }, + [805] = { 47.6, 43.3, 38, 300 }, + [806] = { 25.3, 42.5, 38, 300 }, + [807] = { 77.7, 38.1, 38, 300 }, + [808] = { 47, 37.6, 38, 300 }, + [809] = { 23.7, 36.7, 38, 300 }, + [810] = { 49.5, 35.6, 38, 300 }, + [811] = { 70.1, 34.8, 38, 300 }, + [812] = { 71.9, 34.2, 38, 300 }, + [813] = { 40.9, 33.8, 38, 300 }, + [814] = { 48.2, 32.8, 38, 300 }, + [815] = { 78, 32.8, 38, 300 }, + [816] = { 25.9, 31.9, 38, 300 }, + [817] = { 26.5, 31.7, 38, 300 }, + [818] = { 35.1, 27.1, 38, 300 }, + [819] = { 68.1, 27, 38, 300 }, + [820] = { 41.8, 26.3, 38, 300 }, + [821] = { 33.3, 26.1, 38, 300 }, + [822] = { 36.3, 26, 38, 300 }, + [823] = { 35.9, 25.6, 38, 300 }, + [824] = { 35.4, 25.2, 38, 300 }, + [825] = { 23.1, 24.5, 38, 300 }, + [826] = { 64.2, 23.9, 38, 300 }, + [827] = { 36.4, 23.9, 38, 300 }, + [828] = { 35.4, 23.7, 38, 300 }, + [829] = { 50.3, 23.2, 38, 300 }, + [830] = { 36.3, 22.8, 38, 300 }, + [831] = { 37.9, 22.3, 38, 300 }, + [832] = { 74.1, 22.2, 38, 300 }, + [833] = { 35.5, 20.7, 38, 300 }, + [834] = { 36.6, 20.4, 38, 300 }, + [835] = { 32.2, 20, 38, 300 }, + [836] = { 41.6, 19.1, 38, 300 }, + [837] = { 35.1, 18.9, 38, 300 }, + [838] = { 36, 18.9, 38, 300 }, + [839] = { 71.2, 18.4, 38, 300 }, + [840] = { 36.8, 16.4, 38, 300 }, + [841] = { 57.8, 14.2, 38, 300 }, + [842] = { 52, 13.4, 38, 300 }, + [843] = { 41.6, 13.1, 38, 300 }, + [844] = { 36.5, 10.1, 38, 300 }, + [845] = { 30.9, 9.5, 38, 300 }, + [846] = { 40.9, 8.9, 38, 300 }, + [847] = { 41.1, 92.5, 40, 300 }, + [848] = { 31.7, 89.4, 40, 300 }, + [849] = { 37.1, 87.7, 40, 300 }, + [850] = { 29.6, 85.7, 40, 300 }, + [851] = { 39.2, 85.1, 40, 300 }, + [852] = { 41.2, 82.6, 40, 300 }, + [853] = { 40.5, 82.4, 40, 300 }, + [854] = { 40.4, 82.4, 40, 300 }, + [855] = { 41.6, 82.3, 40, 300 }, + [856] = { 33.2, 81.8, 40, 300 }, + [857] = { 41.4, 81.7, 40, 300 }, + [858] = { 39.4, 81.3, 40, 300 }, + [859] = { 53.7, 80.5, 40, 300 }, + [860] = { 39.2, 79.9, 40, 300 }, + [861] = { 43.3, 79.7, 40, 300 }, + [862] = { 56.1, 79.6, 40, 300 }, + [863] = { 51.4, 79, 40, 300 }, + [864] = { 62.4, 78.8, 40, 300 }, + [865] = { 39.8, 78.5, 40, 300 }, + [866] = { 42.3, 77.9, 40, 300 }, + [867] = { 42.7, 77.2, 40, 300 }, + [868] = { 66.7, 76.9, 40, 300 }, + [869] = { 37.8, 76.9, 40, 300 }, + [870] = { 45, 76.9, 40, 300 }, + [871] = { 41.9, 76.7, 40, 300 }, + [872] = { 39.4, 76.1, 40, 300 }, + [873] = { 39.9, 76.1, 40, 300 }, + [874] = { 29.9, 75.9, 40, 300 }, + [875] = { 77.9, 75.4, 40, 300 }, + [876] = { 41.5, 75.4, 40, 300 }, + [877] = { 57.1, 75.1, 40, 300 }, + [878] = { 42, 75, 40, 300 }, + [879] = { 43, 74.8, 40, 300 }, + [880] = { 45, 74.3, 40, 300 }, + [881] = { 42.9, 73.7, 40, 300 }, + [882] = { 43.8, 73.4, 40, 300 }, + [883] = { 54.2, 73.4, 40, 300 }, + [884] = { 26.8, 72.3, 40, 300 }, + [885] = { 42.8, 72, 40, 300 }, + [886] = { 47.7, 70.8, 40, 300 }, + [887] = { 58.8, 69.4, 40, 300 }, + [888] = { 62.3, 69, 40, 300 }, + [889] = { 26.2, 64.5, 40, 300 }, + [890] = { 28.6, 60.4, 40, 300 }, + [891] = { 50, 59.8, 40, 300 }, + [892] = { 46.2, 59.2, 40, 300 }, + [893] = { 23.7, 57.4, 40, 300 }, + [894] = { 28.9, 54.8, 40, 300 }, + [895] = { 61.5, 54.8, 40, 300 }, + [896] = { 66.4, 54.6, 40, 300 }, + [897] = { 29.3, 51.2, 40, 300 }, + [898] = { 28.7, 49.8, 40, 300 }, + [899] = { 30.5, 49.6, 40, 300 }, + [900] = { 29.2, 49, 40, 300 }, + [901] = { 30.8, 48.4, 40, 300 }, + [902] = { 30.5, 48.2, 40, 300 }, + [903] = { 66.8, 48, 40, 300 }, + [904] = { 30.4, 47.9, 40, 300 }, + [905] = { 30.1, 47.8, 40, 300 }, + [906] = { 29.7, 47.4, 40, 300 }, + [907] = { 29.4, 47.1, 40, 300 }, + [908] = { 31.5, 46.8, 40, 300 }, + [909] = { 29.2, 46.2, 40, 300 }, + [910] = { 30.4, 46.1, 40, 300 }, + [911] = { 30, 46.1, 40, 300 }, + [912] = { 47.7, 45.8, 40, 300 }, + [913] = { 57.6, 45.7, 40, 300 }, + [914] = { 30.4, 45.5, 40, 300 }, + [915] = { 31, 44.8, 40, 300 }, + [916] = { 30.5, 43.3, 40, 300 }, + [917] = { 34.7, 42.9, 40, 300 }, + [918] = { 64.1, 40.4, 40, 300 }, + [919] = { 45.1, 39.7, 40, 300 }, + [920] = { 32.4, 39.4, 40, 300 }, + [921] = { 49.7, 39.2, 40, 300 }, + [922] = { 30.7, 38.2, 40, 300 }, + [923] = { 48.6, 35.9, 40, 300 }, + [924] = { 34.6, 34.6, 40, 300 }, + [925] = { 30.4, 34.5, 40, 300 }, + [926] = { 63.5, 31.4, 40, 300 }, + [927] = { 36.8, 29.6, 40, 300 }, + [928] = { 28.5, 27, 40, 300 }, + [929] = { 61.1, 26.1, 40, 300 }, + [930] = { 32.9, 26.1, 40, 300 }, + [931] = { 35, 24.3, 40, 300 }, + [932] = { 44.8, 23.6, 40, 300 }, + [933] = { 44.1, 23.1, 40, 300 }, + [934] = { 45.1, 23.1, 40, 300 }, + [935] = { 60.9, 22.2, 40, 300 }, + [936] = { 40.8, 22.2, 40, 300 }, + [937] = { 54.3, 22, 40, 300 }, + [938] = { 45.2, 21.7, 40, 300 }, + [939] = { 44.9, 21.1, 40, 300 }, + [940] = { 66.3, 21.1, 40, 300 }, + [941] = { 36.3, 20.9, 40, 300 }, + [942] = { 45.5, 20.7, 40, 300 }, + [943] = { 45.6, 20.2, 40, 300 }, + [944] = { 46.7, 19.5, 40, 300 }, + [945] = { 45, 19.2, 40, 300 }, + [946] = { 46.1, 18.4, 40, 300 }, + [947] = { 45.7, 17.8, 40, 300 }, + [948] = { 34.4, 15.6, 40, 300 }, + [949] = { 57.4, 15.3, 40, 300 }, + [950] = { 49.5, 14.6, 40, 300 }, + [951] = { 62.9, 14.5, 40, 300 }, + [952] = { 55.4, 14.4, 40, 300 }, + [953] = { 60, 12.3, 40, 300 }, + [954] = { 58.5, 8.7, 40, 300 }, + [955] = { 71.8, 87, 44, 300 }, + [956] = { 76, 86.1, 44, 300 }, + [957] = { 31.2, 84.9, 44, 300 }, + [958] = { 34.3, 82.3, 44, 300 }, + [959] = { 24.5, 80.5, 44, 300 }, + [960] = { 62.4, 80.3, 44, 300 }, + [961] = { 40.1, 80.3, 44, 300 }, + [962] = { 49.9, 79.4, 44, 300 }, + [963] = { 8.5, 77.5, 44, 300 }, + [964] = { 74.5, 76, 44, 300 }, + [965] = { 20.8, 74.6, 44, 300 }, + [966] = { 67.2, 73.5, 44, 300 }, + [967] = { 57.2, 73.4, 44, 300 }, + [968] = { 27.1, 72.4, 44, 300 }, + [969] = { 38.3, 70.2, 44, 300 }, + [970] = { 53.5, 70.1, 44, 300 }, + [971] = { 76.9, 68.4, 44, 300 }, + [972] = { 12.2, 68.2, 44, 300 }, + [973] = { 24.5, 65.2, 44, 300 }, + [974] = { 18.7, 62.8, 44, 300 }, + [975] = { 60.3, 59.8, 44, 300 }, + [976] = { 84.1, 59.8, 44, 300 }, + [977] = { 15.9, 58, 44, 300 }, + [978] = { 42.1, 57.8, 44, 300 }, + [979] = { 71.9, 56.8, 44, 300 }, + [980] = { 53.4, 55.2, 44, 300 }, + [981] = { 15.9, 55.1, 44, 300 }, + [982] = { 62.4, 53.1, 44, 300 }, + [983] = { 74.9, 52.9, 44, 300 }, + [984] = { 85.2, 49.1, 44, 300 }, + [985] = { 70.3, 47.1, 44, 300 }, + [986] = { 78.9, 45.4, 44, 300 }, + [987] = { 40.1, 43.2, 44, 300 }, + [988] = { 61.8, 42.2, 44, 300 }, + [989] = { 69.5, 39.1, 44, 300 }, + [990] = { 74.5, 38.8, 44, 300 }, + [991] = { 56, 37.4, 44, 300 }, + [992] = { 82.2, 35.8, 44, 300 }, + [993] = { 78.2, 35.3, 44, 300 }, + [994] = { 51.1, 33, 44, 300 }, + [995] = { 22.7, 32.7, 44, 300 }, + [996] = { 37.3, 32.5, 44, 300 }, + [997] = { 41.7, 29.6, 44, 300 }, + [998] = { 33.4, 28.1, 44, 300 }, + [999] = { 44.1, 18.3, 44, 300 }, + [1000] = { 27.5, 17.1, 44, 300 }, + [1001] = { 26.1, 16.3, 44, 300 }, + [1002] = { 30.7, 15.9, 44, 300 }, + [1003] = { 31.9, 14.2, 44, 300 }, + [1004] = { 25.3, 13.9, 44, 300 }, + [1005] = { 31.7, 12.1, 44, 300 }, + [1006] = { 31.3, 9.9, 44, 300 }, + [1007] = { 47.3, 9, 44, 300 }, + [1008] = { 26.8, 8.8, 44, 300 }, + [1009] = { 29.2, 8.3, 44, 300 }, + [1010] = { 27.6, 7.8, 44, 300 }, + [1011] = { 31.3, 7.8, 44, 300 }, + [1012] = { 31.1, 6, 44, 300 }, + [1013] = { 6.1, 55.2, 45, 300 }, + [1014] = { 63.3, 89.4, 46, 300 }, + [1015] = { 67.7, 86.4, 46, 300 }, + [1016] = { 64.4, 85.6, 46, 300 }, + [1017] = { 66.2, 85.2, 46, 300 }, + [1018] = { 65, 84.9, 46, 300 }, + [1019] = { 67.7, 84.9, 46, 300 }, + [1020] = { 67.6, 83.6, 46, 300 }, + [1021] = { 82.3, 75.2, 85, 300 }, + [1022] = { 75.5, 74.7, 85, 300 }, + [1023] = { 79.5, 73.6, 85, 300 }, + [1024] = { 82.3, 73.1, 85, 300 }, + [1025] = { 50.1, 70.9, 85, 300 }, + [1026] = { 49.2, 70, 85, 300 }, + [1027] = { 45.1, 69.9, 85, 300 }, + [1028] = { 47.3, 69.9, 85, 300 }, + [1029] = { 42.5, 69.8, 85, 300 }, + [1030] = { 41.4, 69.5, 85, 300 }, + [1031] = { 73.5, 68.3, 85, 300 }, + [1032] = { 83.7, 68.2, 85, 300 }, + [1033] = { 47.6, 67.9, 85, 300 }, + [1034] = { 70.3, 67.1, 85, 300 }, + [1035] = { 42, 66.3, 85, 300 }, + [1036] = { 49.9, 66.1, 85, 300 }, + [1037] = { 45.5, 64.7, 85, 300 }, + [1038] = { 82.2, 64.7, 85, 300 }, + [1039] = { 83.7, 64.4, 85, 300 }, + [1040] = { 84.9, 64.2, 85, 300 }, + [1041] = { 41.1, 64.1, 85, 300 }, + [1042] = { 43.3, 64, 85, 300 }, + [1043] = { 81, 60.4, 85, 300 }, + [1044] = { 73.6, 58.2, 85, 300 }, + [1045] = { 74.2, 57.6, 85, 300 }, + [1046] = { 80.2, 57.4, 85, 300 }, + [1047] = { 40.3, 57.2, 85, 300 }, + [1048] = { 81.8, 57.1, 85, 300 }, + [1049] = { 74.1, 56.6, 85, 300 }, + [1050] = { 77.2, 56.5, 85, 300 }, + [1051] = { 85.1, 55.8, 85, 300 }, + [1052] = { 78.2, 54.5, 85, 300 }, + [1053] = { 68.6, 54.3, 85, 300 }, + [1054] = { 54.9, 54.1, 85, 300 }, + [1055] = { 53.7, 53.7, 85, 300 }, + [1056] = { 53.5, 53.6, 85, 300 }, + [1057] = { 74.5, 53.5, 85, 300 }, + [1058] = { 38.6, 53.4, 85, 300 }, + [1059] = { 37.6, 52.8, 85, 300 }, + [1060] = { 33.5, 52.8, 85, 300 }, + [1061] = { 81.2, 52.6, 85, 300 }, + [1062] = { 52.7, 52, 85, 300 }, + [1063] = { 81.2, 48.7, 85, 300 }, + [1064] = { 49.3, 48.6, 85, 300 }, + [1065] = { 76.6, 48.4, 85, 300 }, + [1066] = { 54.5, 47.7, 85, 300 }, + [1067] = { 48.4, 47.4, 85, 300 }, + [1068] = { 34.6, 47.2, 85, 300 }, + [1069] = { 28.1, 47, 85, 300 }, + [1070] = { 61.2, 46.4, 85, 300 }, + [1071] = { 52.3, 46.1, 85, 300 }, + [1072] = { 48.6, 45.9, 85, 300 }, + [1073] = { 91.1, 45.9, 85, 300 }, + [1074] = { 30.8, 45.5, 85, 300 }, + [1075] = { 77.7, 45.3, 85, 300 }, + [1076] = { 56.5, 45.2, 85, 300 }, + [1077] = { 65.9, 45.1, 85, 300 }, + [1078] = { 54.3, 44.9, 85, 300 }, + [1079] = { 89.5, 44.8, 85, 300 }, + [1080] = { 34.3, 44.7, 85, 300 }, + [1081] = { 50.6, 44.2, 85, 300 }, + [1082] = { 68.5, 44.1, 85, 300 }, + [1083] = { 75.5, 44, 85, 300 }, + [1084] = { 48.7, 43.7, 85, 300 }, + [1085] = { 80.1, 43.6, 85, 300 }, + [1086] = { 55.1, 43.4, 85, 300 }, + [1087] = { 69.8, 42.7, 85, 300 }, + [1088] = { 29.7, 42.5, 85, 300 }, + [1089] = { 52.9, 41.9, 85, 300 }, + [1090] = { 73.9, 41.5, 85, 300 }, + [1091] = { 87.2, 41.4, 85, 300 }, + [1092] = { 82, 41.4, 85, 300 }, + [1093] = { 78.3, 40.6, 85, 300 }, + [1094] = { 54.6, 40.5, 85, 300 }, + [1095] = { 34.9, 40.4, 85, 300 }, + [1096] = { 52.3, 40.1, 85, 300 }, + [1097] = { 37.3, 39.5, 85, 300 }, + [1098] = { 40.7, 39.2, 85, 300 }, + [1099] = { 49.4, 39.1, 85, 300 }, + [1100] = { 43.4, 38.7, 85, 300 }, + [1101] = { 84.2, 38.6, 85, 300 }, + [1102] = { 83, 38.2, 85, 300 }, + [1103] = { 55.8, 38, 85, 300 }, + [1104] = { 54.4, 37.8, 85, 300 }, + [1105] = { 85.9, 37.8, 85, 300 }, + [1106] = { 37.5, 37.4, 85, 300 }, + [1107] = { 79.1, 37.2, 85, 300 }, + [1108] = { 39.3, 37.1, 85, 300 }, + [1109] = { 87.7, 37, 85, 300 }, + [1110] = { 35.9, 36.5, 85, 300 }, + [1111] = { 75.6, 36.2, 85, 300 }, + [1112] = { 43.2, 35.9, 85, 300 }, + [1113] = { 77.6, 35.6, 85, 300 }, + [1114] = { 85.6, 35.1, 85, 300 }, + [1115] = { 56, 35, 85, 300 }, + [1116] = { 50.7, 34.3, 85, 300 }, + [1117] = { 77.4, 32.8, 85, 300 }, + [1118] = { 78.2, 32.4, 85, 300 }, + [1119] = { 42.7, 31.5, 85, 300 }, + [1120] = { 82.9, 31.4, 85, 300 }, + [1121] = { 55.1, 31.3, 85, 300 }, + [1122] = { 76, 31.2, 85, 300 }, + [1123] = { 57.2, 30.2, 85, 300 }, + [1124] = { 58, 29.2, 85, 300 }, + [1125] = { 74.9, 28.9, 85, 300 }, + [1126] = { 42.1, 28.8, 85, 300 }, + [1127] = { 78.6, 28.8, 85, 300 }, + [1128] = { 79.7, 28.4, 85, 300 }, + [1129] = { 77.6, 28.3, 85, 300 }, + [1130] = { 83.1, 28.3, 85, 300 }, + [1131] = { 63.5, 27.1, 85, 300 }, + [1132] = { 49.6, 27, 85, 300 }, + [1133] = { 56.9, 25.8, 85, 300 }, + [1134] = { 48.6, 86.1, 130, 300 }, + [1135] = { 53.3, 84.9, 130, 300 }, + [1136] = { 63.3, 82.5, 130, 300 }, + [1137] = { 56, 80.3, 130, 300 }, + [1138] = { 41.4, 80.2, 130, 300 }, + [1139] = { 70.7, 78.3, 130, 300 }, + [1140] = { 52.3, 78.2, 130, 300 }, + [1141] = { 44.4, 76.5, 130, 300 }, + [1142] = { 47.3, 76.4, 130, 300 }, + [1143] = { 42.3, 71.8, 130, 300 }, + [1144] = { 59.8, 70.7, 130, 300 }, + [1145] = { 58.9, 70.6, 130, 300 }, + [1146] = { 48.1, 68.4, 130, 300 }, + [1147] = { 51.7, 64.6, 130, 300 }, + [1148] = { 48.9, 58.5, 130, 300 }, + [1149] = { 56, 54.9, 130, 300 }, + [1150] = { 45, 48.6, 130, 300 }, + [1151] = { 56.4, 48.5, 130, 300 }, + [1152] = { 48.6, 48.3, 130, 300 }, + [1153] = { 56.7, 46.6, 130, 300 }, + [1154] = { 57, 46, 130, 300 }, + [1155] = { 50.2, 46, 130, 300 }, + [1156] = { 57.4, 45.6, 130, 300 }, + [1157] = { 58, 45.4, 130, 300 }, + [1158] = { 57.5, 44.7, 130, 300 }, + [1159] = { 49.9, 41.2, 130, 300 }, + [1160] = { 57.1, 41.2, 130, 300 }, + [1161] = { 48.1, 37.6, 130, 300 }, + [1162] = { 53, 36.7, 130, 300 }, + [1163] = { 70.7, 36.4, 130, 300 }, + [1164] = { 45.5, 34.1, 130, 300 }, + [1165] = { 55.3, 33.7, 130, 300 }, + [1166] = { 57.5, 33, 130, 300 }, + [1167] = { 51.9, 32.3, 130, 300 }, + [1168] = { 41.9, 31.5, 130, 300 }, + [1169] = { 54.4, 30.8, 130, 300 }, + [1170] = { 46.3, 30.4, 130, 300 }, + [1171] = { 73.4, 29.2, 130, 300 }, + [1172] = { 41.6, 27.4, 130, 300 }, + [1173] = { 56.7, 27.1, 130, 300 }, + [1174] = { 51, 27.1, 130, 300 }, + [1175] = { 44.3, 26.5, 130, 300 }, + [1176] = { 53.9, 23.4, 130, 300 }, + [1177] = { 39.6, 23, 130, 300 }, + [1178] = { 43.2, 22.6, 130, 300 }, + [1179] = { 64.5, 22, 130, 300 }, + [1180] = { 35.4, 20.7, 130, 300 }, + [1181] = { 33.1, 20.5, 130, 300 }, + [1182] = { 76.7, 20.3, 130, 300 }, + [1183] = { 40.5, 19.5, 130, 300 }, + [1184] = { 36.8, 19.1, 130, 300 }, + [1185] = { 34.9, 18.5, 130, 300 }, + [1186] = { 72.9, 17.9, 130, 300 }, + [1187] = { 38.2, 17.2, 130, 300 }, + [1188] = { 52.1, 16.9, 130, 300 }, + [1189] = { 47.7, 16.8, 130, 300 }, + [1190] = { 44.6, 15.9, 130, 300 }, + [1191] = { 33.3, 15.4, 130, 300 }, + [1192] = { 35.4, 13.9, 130, 300 }, + [1193] = { 49.3, 13.4, 130, 300 }, + [1194] = { 34.6, 12.5, 130, 300 }, + [1195] = { 34.9, 12.5, 130, 300 }, + [1196] = { 35.3, 12.2, 130, 300 }, + [1197] = { 35.5, 11.4, 130, 300 }, + [1198] = { 52.5, 11.2, 130, 300 }, + [1199] = { 35.2, 10.9, 130, 300 }, + [1200] = { 35.7, 10.4, 130, 300 }, + [1201] = { 35.1, 10.1, 130, 300 }, + [1202] = { 35.2, 9.9, 130, 300 }, + [1203] = { 34.4, 9.3, 130, 300 }, + [1204] = { 35.9, 9, 130, 300 }, + [1205] = { 36.2, 8.8, 130, 300 }, + [1206] = { 35, 8.2, 130, 300 }, + [1207] = { 55.4, 7.9, 130, 300 }, + [1208] = { 34.6, 7.7, 130, 300 }, + [1209] = { 41.7, 99.6, 148, 300 }, + [1210] = { 43.1, 98.5, 148, 300 }, + [1211] = { 30.2, 91.3, 148, 300 }, + [1212] = { 36.2, 90.7, 148, 300 }, + [1213] = { 45, 89.6, 148, 300 }, + [1214] = { 32.3, 89.6, 148, 300 }, + [1215] = { 33.1, 89.6, 148, 300 }, + [1216] = { 38.6, 88.9, 148, 300 }, + [1217] = { 33.6, 88.5, 148, 300 }, + [1218] = { 44.2, 87.2, 148, 300 }, + [1219] = { 31.1, 87, 148, 300 }, + [1220] = { 42.9, 86.6, 148, 300 }, + [1221] = { 44.7, 86.5, 148, 300 }, + [1222] = { 32.4, 86.4, 148, 300 }, + [1223] = { 34.1, 85.9, 148, 300 }, + [1224] = { 44.5, 85.4, 148, 300 }, + [1225] = { 45.2, 85.4, 148, 300 }, + [1226] = { 43.6, 85.3, 148, 300 }, + [1227] = { 35.2, 85.2, 148, 300 }, + [1228] = { 31.7, 84.1, 148, 300 }, + [1229] = { 33.2, 84.1, 148, 300 }, + [1230] = { 39.1, 81.4, 148, 300 }, + [1231] = { 33.2, 81.2, 148, 300 }, + [1232] = { 44.4, 81.1, 148, 300 }, + [1233] = { 36.7, 79.7, 148, 300 }, + [1234] = { 33.9, 79.6, 148, 300 }, + [1235] = { 44.2, 78.7, 148, 300 }, + [1236] = { 39.5, 73.5, 148, 300 }, + [1237] = { 42.7, 73.4, 148, 300 }, + [1238] = { 37.9, 72.8, 148, 300 }, + [1239] = { 44.4, 72.6, 148, 300 }, + [1240] = { 43.1, 71.8, 148, 300 }, + [1241] = { 40.1, 71.4, 148, 300 }, + [1242] = { 44.3, 70.8, 148, 300 }, + [1243] = { 39.5, 61.1, 148, 300 }, + [1244] = { 42.2, 58.3, 148, 300 }, + [1245] = { 35.5, 55.6, 148, 300 }, + [1246] = { 46.7, 53.5, 148, 300 }, + [1247] = { 45.6, 53.3, 148, 300 }, + [1248] = { 42.5, 52.7, 148, 300 }, + [1249] = { 43.5, 52.1, 148, 300 }, + [1250] = { 44, 50.5, 148, 300 }, + [1251] = { 44.6, 50.3, 148, 300 }, + [1252] = { 46.8, 50.2, 148, 300 }, + [1253] = { 46.1, 50.2, 148, 300 }, + [1254] = { 37.8, 49.4, 148, 300 }, + [1255] = { 43.3, 49.2, 148, 300 }, + [1256] = { 43.6, 46.2, 148, 300 }, + [1257] = { 47.5, 45.7, 148, 300 }, + [1258] = { 43.1, 45.3, 148, 300 }, + [1259] = { 46.4, 45.3, 148, 300 }, + [1260] = { 47.5, 45.2, 148, 300 }, + [1261] = { 48.2, 40.3, 148, 300 }, + [1262] = { 40.5, 40, 148, 300 }, + [1263] = { 41.3, 39.5, 148, 300 }, + [1264] = { 46.2, 38.9, 148, 300 }, + [1265] = { 43.5, 38.4, 148, 300 }, + [1266] = { 51.4, 37.3, 148, 300 }, + [1267] = { 50.4, 37.1, 148, 300 }, + [1268] = { 43.5, 36.8, 148, 300 }, + [1269] = { 55.4, 36.2, 148, 300 }, + [1270] = { 44.9, 35.8, 148, 300 }, + [1271] = { 55.6, 35.6, 148, 300 }, + [1272] = { 41.4, 35.1, 148, 300 }, + [1273] = { 53.2, 34.8, 148, 300 }, + [1274] = { 54.9, 34.6, 148, 300 }, + [1275] = { 56, 34.5, 148, 300 }, + [1276] = { 56, 34.3, 148, 300 }, + [1277] = { 49.4, 34.3, 148, 300 }, + [1278] = { 55.2, 34.2, 148, 300 }, + [1279] = { 55, 33.6, 148, 300 }, + [1280] = { 54.5, 33.5, 148, 300 }, + [1281] = { 51.9, 33.2, 148, 300 }, + [1282] = { 38.9, 33.1, 148, 300 }, + [1283] = { 53.9, 32.9, 148, 300 }, + [1284] = { 54.7, 31.1, 148, 300 }, + [1285] = { 52.7, 30.2, 148, 300 }, + [1286] = { 40.4, 29.3, 148, 300 }, + [1287] = { 55.4, 28.5, 148, 300 }, + [1288] = { 50, 27.9, 148, 300 }, + [1289] = { 56.9, 27.7, 148, 300 }, + [1290] = { 56.1, 27.5, 148, 300 }, + [1291] = { 59.2, 27.1, 148, 300 }, + [1292] = { 44.2, 27.1, 148, 300 }, + [1293] = { 49.3, 27.1, 148, 300 }, + [1294] = { 40.3, 26.6, 148, 300 }, + [1295] = { 60.6, 25.4, 148, 300 }, + [1296] = { 56.2, 25.4, 148, 300 }, + [1297] = { 42.6, 24.9, 148, 300 }, + [1298] = { 57.8, 24.2, 148, 300 }, + [1299] = { 52.9, 23.1, 148, 300 }, + [1300] = { 61.7, 22.7, 148, 300 }, + [1301] = { 45.5, 22.6, 148, 300 }, + [1302] = { 43.1, 22.3, 148, 300 }, + [1303] = { 48.8, 20.7, 148, 300 }, + [1304] = { 60.7, 19.7, 148, 300 }, + [1305] = { 55.4, 19.6, 148, 300 }, + [1306] = { 53.8, 18.8, 148, 300 }, + [1307] = { 56, 18.7, 148, 300 }, + [1308] = { 52.5, 18.7, 148, 300 }, + [1309] = { 39.9, 17.9, 148, 300 }, + [1310] = { 60.6, 16.7, 148, 300 }, + [1311] = { 62.2, 15.9, 148, 300 }, + [1312] = { 61.7, 15.6, 148, 300 }, + [1313] = { 51.7, 14.8, 148, 300 }, + [1314] = { 57.3, 14.8, 148, 300 }, + [1315] = { 59.5, 13.4, 148, 300 }, + [1316] = { 61.1, 9.8, 148, 300 }, + [1317] = { 62.9, 9.3, 148, 300 }, + [1318] = { 62.4, 8.8, 148, 300 }, + [1319] = { 60.3, 8.6, 148, 300 }, + [1320] = { 62.6, 6.5, 148, 300 }, + [1321] = { 71, 80.6, 215, 300 }, + [1322] = { 34.5, 79.8, 215, 300 }, + [1323] = { 34.6, 79.7, 215, 300 }, + [1324] = { 32.9, 76.2, 215, 300 }, + [1325] = { 56, 74.8, 215, 300 }, + [1326] = { 53.9, 74.7, 215, 300 }, + [1327] = { 48.4, 74.4, 215, 300 }, + [1328] = { 43.8, 72.8, 215, 300 }, + [1329] = { 66.9, 72.7, 215, 300 }, + [1330] = { 52.2, 72.7, 215, 300 }, + [1331] = { 61.3, 72.2, 215, 300 }, + [1332] = { 66.2, 71.3, 215, 300 }, + [1333] = { 64.6, 71.1, 215, 300 }, + [1334] = { 33.2, 70.1, 215, 300 }, + [1335] = { 34.8, 69.7, 215, 300 }, + [1336] = { 68.5, 69.6, 215, 300 }, + [1337] = { 34.4, 66.9, 215, 300 }, + [1338] = { 68.8, 65.3, 215, 300 }, + [1339] = { 31, 63.9, 215, 300 }, + [1340] = { 68.8, 63.2, 215, 300 }, + [1341] = { 33, 62.6, 215, 300 }, + [1342] = { 31, 62, 215, 300 }, + [1343] = { 32.2, 61.5, 215, 300 }, + [1344] = { 31.5, 61.3, 215, 300 }, + [1345] = { 33.2, 61, 215, 300 }, + [1346] = { 30.8, 60.9, 215, 300 }, + [1347] = { 32.7, 60.7, 215, 300 }, + [1348] = { 32.5, 59.8, 215, 300 }, + [1349] = { 31.7, 59.7, 215, 300 }, + [1350] = { 30.8, 59.4, 215, 300 }, + [1351] = { 32.4, 59.2, 215, 300 }, + [1352] = { 34.8, 58.9, 215, 300 }, + [1353] = { 33.5, 58.2, 215, 300 }, + [1354] = { 71.6, 56.7, 215, 300 }, + [1355] = { 62.8, 55.4, 215, 300 }, + [1356] = { 35.1, 55.1, 215, 300 }, + [1357] = { 33.2, 54.1, 215, 300 }, + [1358] = { 61.5, 53.4, 215, 300 }, + [1359] = { 61.3, 51.6, 215, 300 }, + [1360] = { 34, 51.5, 215, 300 }, + [1361] = { 61.6, 50.4, 215, 300 }, + [1362] = { 31.6, 50.3, 215, 300 }, + [1363] = { 31.8, 47.6, 215, 300 }, + [1364] = { 33.4, 47.1, 215, 300 }, + [1365] = { 59.4, 45.9, 215, 300 }, + [1366] = { 63.5, 44.9, 215, 300 }, + [1367] = { 64.9, 44.8, 215, 300 }, + [1368] = { 57.6, 43, 215, 300 }, + [1369] = { 64.6, 42.7, 215, 300 }, + [1370] = { 31.2, 42.6, 215, 300 }, + [1371] = { 62.7, 42.4, 215, 300 }, + [1372] = { 64.3, 42.1, 215, 300 }, + [1373] = { 32.9, 40.7, 215, 300 }, + [1374] = { 56.6, 40.4, 215, 300 }, + [1375] = { 61, 40.2, 215, 300 }, + [1376] = { 63.3, 40.1, 215, 300 }, + [1377] = { 61.1, 39.9, 215, 300 }, + [1378] = { 62.8, 38.7, 215, 300 }, + [1379] = { 56.9, 38.6, 215, 300 }, + [1380] = { 34.5, 38.2, 215, 300 }, + [1381] = { 65.3, 37.5, 215, 300 }, + [1382] = { 60.9, 37.4, 215, 300 }, + [1383] = { 59.2, 37, 215, 300 }, + [1384] = { 61.2, 36.7, 215, 300 }, + [1385] = { 32.6, 35.8, 215, 300 }, + [1386] = { 58.4, 35.7, 215, 300 }, + [1387] = { 63.1, 35.4, 215, 300 }, + [1388] = { 33.6, 34.8, 215, 300 }, + [1389] = { 58.9, 34.1, 215, 300 }, + [1390] = { 59.8, 33.3, 215, 300 }, + [1391] = { 60.9, 32.5, 215, 300 }, + [1392] = { 33.5, 32.4, 215, 300 }, + [1393] = { 62.7, 32.4, 215, 300 }, + [1394] = { 58.3, 31.4, 215, 300 }, + [1395] = { 61.7, 30.8, 215, 300 }, + [1396] = { 60.1, 30, 215, 300 }, + [1397] = { 56.7, 29.6, 215, 300 }, + [1398] = { 60.8, 29.2, 215, 300 }, + [1399] = { 30.4, 28.5, 215, 300 }, + [1400] = { 28, 26, 215, 300 }, + [1401] = { 63, 25.9, 215, 300 }, + [1402] = { 49.3, 24.7, 215, 300 }, + [1403] = { 61.3, 22.3, 215, 300 }, + [1404] = { 63.4, 20.5, 215, 300 }, + [1405] = { 43.5, 20.1, 215, 300 }, + [1406] = { 62.3, 19.7, 215, 300 }, + [1407] = { 60.9, 18.8, 215, 300 }, + [1408] = { 58.8, 17.9, 215, 300 }, + [1409] = { 62.4, 17.3, 215, 300 }, + [1410] = { 36.4, 16.6, 215, 300 }, + [1411] = { 56.8, 15.8, 215, 300 }, + [1412] = { 54.5, 14.2, 215, 300 }, + [1413] = { 36.9, 14.2, 215, 300 }, + [1414] = { 55.9, 13.6, 215, 300 }, + [1415] = { 54.7, 12.9, 215, 300 }, + [1416] = { 44.6, 12.1, 215, 300 }, + [1417] = { 55, 10, 215, 300 }, + [1418] = { 37.4, 8.9, 215, 300 }, + [1419] = { 54, 8.9, 215, 300 }, + [1420] = { 38.3, 7.1, 215, 300 }, + [1421] = { 50.2, 6.7, 215, 300 }, + [1422] = { 41.2, 6.6, 215, 300 }, + [1423] = { 52.7, 6.4, 215, 300 }, + [1424] = { 52.2, 4.9, 215, 300 }, + [1425] = { 67.3, 87.1, 267, 300 }, + [1426] = { 29.8, 72.7, 267, 300 }, + [1427] = { 59.3, 70.3, 267, 300 }, + [1428] = { 25.6, 69.5, 267, 300 }, + [1429] = { 33.8, 67.9, 267, 300 }, + [1430] = { 43.9, 65.8, 267, 300 }, + [1431] = { 23.7, 60.6, 267, 300 }, + [1432] = { 32.7, 56.7, 267, 300 }, + [1433] = { 21.2, 56.6, 267, 300 }, + [1434] = { 17.1, 56.3, 267, 300 }, + [1435] = { 36.4, 53.7, 267, 300 }, + [1436] = { 15.3, 53.7, 267, 300 }, + [1437] = { 41, 53.6, 267, 300 }, + [1438] = { 18, 52.2, 267, 300 }, + [1439] = { 18, 49.9, 267, 300 }, + [1440] = { 75.9, 49, 267, 300 }, + [1441] = { 8.7, 48.9, 267, 300 }, + [1442] = { 59.9, 47.9, 267, 300 }, + [1443] = { 18.3, 43.4, 267, 300 }, + [1444] = { 59.2, 42.3, 267, 300 }, + [1445] = { 41, 41.4, 267, 300 }, + [1446] = { 21.8, 40.9, 267, 300 }, + [1447] = { 81.1, 39.6, 267, 300 }, + [1448] = { 23.8, 39.2, 267, 300 }, + [1449] = { 25.2, 36.9, 267, 300 }, + [1450] = { 39, 36.7, 267, 300 }, + [1451] = { 47.6, 35.5, 267, 300 }, + [1452] = { 59.7, 33.5, 267, 300 }, + [1453] = { 24.2, 32.4, 267, 300 }, + [1454] = { 26.2, 31.8, 267, 300 }, + [1455] = { 91, 85.9, 331, 300 }, + [1456] = { 89.9, 85.5, 331, 300 }, + [1457] = { 89.1, 84.7, 331, 300 }, + [1458] = { 63.1, 84.1, 331, 300 }, + [1459] = { 92.4, 83.3, 331, 300 }, + [1460] = { 64.6, 82.8, 331, 300 }, + [1461] = { 57.6, 74.9, 331, 300 }, + [1462] = { 71.5, 72.1, 331, 300 }, + [1463] = { 71.4, 62.7, 331, 300 }, + [1464] = { 38.2, 60, 331, 300 }, + [1465] = { 34, 59.8, 331, 300 }, + [1466] = { 33.5, 59.8, 331, 300 }, + [1467] = { 38.1, 59.6, 331, 300 }, + [1468] = { 41.7, 59, 331, 300 }, + [1469] = { 44.3, 58.8, 331, 300 }, + [1470] = { 31.9, 58.6, 331, 300 }, + [1471] = { 22.8, 58.6, 331, 300 }, + [1472] = { 46.8, 57.8, 331, 300 }, + [1473] = { 35.3, 57.3, 331, 300 }, + [1474] = { 35.1, 57, 331, 300 }, + [1475] = { 27.4, 55.8, 331, 300 }, + [1476] = { 52.6, 55.3, 331, 300 }, + [1477] = { 48.1, 54.3, 331, 300 }, + [1478] = { 48.6, 54.3, 331, 300 }, + [1479] = { 28, 53.8, 331, 300 }, + [1480] = { 46.3, 53.3, 331, 300 }, + [1481] = { 43.4, 50.6, 331, 300 }, + [1482] = { 44.7, 50.6, 331, 300 }, + [1483] = { 51.4, 50.5, 331, 300 }, + [1484] = { 78.9, 50.2, 331, 300 }, + [1485] = { 82.5, 49.7, 331, 300 }, + [1486] = { 81.5, 47.7, 331, 300 }, + [1487] = { 43.2, 46.5, 331, 300 }, + [1488] = { 41.6, 44.9, 331, 300 }, + [1489] = { 80.9, 44.3, 331, 300 }, + [1490] = { 41.5, 44.2, 331, 300 }, + [1491] = { 21.4, 43.9, 331, 300 }, + [1492] = { 21.4, 43.7, 331, 300 }, + [1493] = { 33.5, 42.9, 331, 300 }, + [1494] = { 35.1, 40.5, 331, 300 }, + [1495] = { 35.6, 40.4, 331, 300 }, + [1496] = { 40.1, 39.8, 331, 300 }, + [1497] = { 27, 39.2, 331, 300 }, + [1498] = { 31.6, 38.4, 331, 300 }, + [1499] = { 31.6, 38.3, 331, 300 }, + [1500] = { 27.7, 38.1, 331, 300 }, + [1501] = { 14, 33, 331, 300 }, + [1502] = { 29.7, 32.8, 331, 300 }, + [1503] = { 29.9, 32.7, 331, 300 }, + [1504] = { 14.2, 32.7, 331, 300 }, + [1505] = { 35.5, 31.6, 331, 300 }, + [1506] = { 37.9, 30, 331, 300 }, + [1507] = { 32.8, 25.9, 331, 300 }, + [1508] = { 32.4, 25.8, 331, 300 }, + [1509] = { 18.7, 23.9, 331, 300 }, + [1510] = { 18.4, 23.6, 331, 300 }, + [1511] = { 33.4, 21.8, 331, 300 }, + [1512] = { 33.6, 21.7, 331, 300 }, + [1513] = { 25.3, 18.9, 331, 300 }, + [1514] = { 25.8, 18, 331, 300 }, + [1515] = { 27.5, 16.7, 331, 300 }, + [1516] = { 12.7, 8.4, 331, 300 }, + [1517] = { 90.5, 45.1, 357, 300 }, + [1518] = { 91.7, 43.5, 357, 300 }, + [1519] = { 91.2, 40, 357, 300 }, + [1520] = { 28.6, 70.8, 361, 300 }, + [1521] = { 28.8, 65.9, 361, 300 }, + [1522] = { 30.6, 29.7, 361, 300 }, + [1523] = { 36, 11.2, 361, 300 }, + [1524] = { 40.5, 9.9, 361, 300 }, + [1525] = { 40.8, 9.2, 361, 300 }, + [1526] = { 61.9, 59.8, 400, 300 }, + [1527] = { 67.4, 58.5, 400, 300 }, + [1528] = { 40.4, 57, 400, 300 }, + [1529] = { 68.9, 54.9, 400, 300 }, + [1530] = { 37.3, 54.1, 400, 300 }, + [1531] = { 29, 48.8, 400, 300 }, + [1532] = { 59.1, 47.7, 400, 300 }, + [1533] = { 25.4, 45.2, 400, 300 }, + [1534] = { 26, 42.3, 400, 300 }, + [1535] = { 45, 41.5, 400, 300 }, + [1536] = { 19.8, 40, 400, 300 }, + [1537] = { 26.2, 38.3, 400, 300 }, + [1538] = { 36, 36.5, 400, 300 }, + [1539] = { 17.8, 34.6, 400, 300 }, + [1540] = { 32.3, 34.5, 400, 300 }, + [1541] = { 19.4, 32.3, 400, 300 }, + [1542] = { 15.3, 30.9, 400, 300 }, + [1543] = { 32.4, 30.8, 400, 300 }, + [1544] = { 17.3, 30.8, 400, 300 }, + [1545] = { 28.6, 30, 400, 300 }, + [1546] = { 29.5, 27.9, 400, 300 }, + [1547] = { 14.3, 27.1, 400, 300 }, + [1548] = { 26, 24.3, 400, 300 }, + [1549] = { 21.5, 23.4, 400, 300 }, + [1550] = { 19.6, 23.2, 400, 300 }, + [1551] = { 29.1, 22.3, 400, 300 }, + [1552] = { 17.5, 20.6, 400, 300 }, + [1553] = { 16.4, 18, 400, 300 }, + [1554] = { 9.5, 16.6, 400, 300 }, + [1555] = { 11.3, 14.2, 400, 300 }, + [1556] = { 10.5, 8.6, 400, 300 }, + [1557] = { 86.8, 78, 405, 300 }, + [1558] = { 84.2, 72.8, 405, 300 }, + [1559] = { 86.2, 70.6, 405, 300 }, + [1560] = { 88, 67.9, 405, 300 }, + [1561] = { 85.8, 65.1, 405, 300 }, + [1562] = { 87, 64, 405, 300 }, + [1563] = { 86.9, 61.2, 405, 300 }, + [1564] = { 83.3, 56.8, 405, 300 }, + [1565] = { 80.6, 53.9, 405, 300 }, + [1566] = { 73.4, 33.3, 405, 300 }, + [1567] = { 69.7, 25.8, 405, 300 }, + [1568] = { 72.6, 24.4, 405, 300 }, + [1569] = { 67.9, 21.8, 405, 300 }, + [1570] = { 65.7, 21.5, 405, 300 }, + [1571] = { 61.5, 20.1, 405, 300 }, + [1572] = { 65.3, 18.9, 405, 300 }, + [1573] = { 53.6, 14.2, 405, 300 }, + [1574] = { 59.4, 13.2, 405, 300 }, + [1575] = { 50, 9.4, 405, 300 }, + [1576] = { 58.8, 8, 405, 300 }, + [1577] = { 77.5, 95.6, 406, 300 }, + [1578] = { 78.3, 92.7, 406, 300 }, + [1579] = { 66.1, 89.8, 406, 300 }, + [1580] = { 77, 88.7, 406, 300 }, + [1581] = { 34.5, 87.8, 406, 300 }, + [1582] = { 77, 87.5, 406, 300 }, + [1583] = { 25.8, 84.3, 406, 300 }, + [1584] = { 75.8, 84.2, 406, 300 }, + [1585] = { 84.7, 83.5, 406, 300 }, + [1586] = { 33.9, 83, 406, 300 }, + [1587] = { 59.1, 82.1, 406, 300 }, + [1588] = { 57.7, 71.8, 406, 300 }, + [1589] = { 38.5, 66.1, 406, 300 }, + [1590] = { 63.2, 64.7, 406, 300 }, + [1591] = { 36.7, 64.1, 406, 300 }, + [1592] = { 36, 61.2, 406, 300 }, + [1593] = { 59.6, 60.3, 406, 300 }, + [1594] = { 76.7, 59.5, 406, 300 }, + [1595] = { 57.7, 59.3, 406, 300 }, + [1596] = { 70.9, 58.6, 406, 300 }, + [1597] = { 68.8, 53.3, 406, 300 }, + [1598] = { 76.7, 52.7, 406, 300 }, + [1599] = { 63.4, 51.6, 406, 300 }, + [1600] = { 59, 51.4, 406, 300 }, + [1601] = { 38.6, 49.7, 406, 300 }, + [1602] = { 47.8, 48.7, 406, 300 }, + [1603] = { 34.8, 47.9, 406, 300 }, + [1604] = { 53.9, 47.7, 406, 300 }, + [1605] = { 61.5, 46.6, 406, 300 }, + [1606] = { 68.3, 44.7, 406, 300 }, + [1607] = { 72.2, 43.7, 406, 300 }, + [1608] = { 56, 41.3, 406, 300 }, + [1609] = { 37.5, 41.3, 406, 300 }, + [1610] = { 65, 41.1, 406, 300 }, + [1611] = { 51.2, 39.4, 406, 300 }, + [1612] = { 44.5, 34.5, 406, 300 }, + [1613] = { 52, 34.2, 406, 300 }, + [1614] = { 49.1, 32.3, 406, 300 }, + [1615] = { 51.3, 32.1, 406, 300 }, + [1616] = { 43.6, 26.1, 406, 300 }, + [1617] = { 45.5, 25.3, 406, 300 }, + [1618] = { 36.9, 19.5, 406, 300 }, + [1619] = { 43.8, 18, 406, 300 }, + [1620] = { 44, 14.5, 406, 300 }, + [1621] = { 10.9, 27.3, 1497, 300 }, + }, + }, + [1732] = { + ["coords"] = { + [1] = { 37.3, 85, 10, 300 }, + [2] = { 63.3, 84.4, 10, 300 }, + [3] = { 61.7, 82.4, 10, 300 }, + [4] = { 58.9, 81.6, 10, 300 }, + [5] = { 36.5, 81.2, 10, 300 }, + [6] = { 25.2, 80.5, 10, 300 }, + [7] = { 23.9, 80.5, 10, 300 }, + [8] = { 73.6, 79.7, 10, 300 }, + [9] = { 49.9, 79.5, 10, 300 }, + [10] = { 62.1, 78.9, 10, 300 }, + [11] = { 37, 78.9, 10, 300 }, + [12] = { 35.5, 78.9, 10, 300 }, + [13] = { 73.6, 78.5, 10, 300 }, + [14] = { 71.2, 77.3, 10, 300 }, + [15] = { 74.2, 77.2, 10, 300 }, + [16] = { 33.6, 76.9, 10, 300 }, + [17] = { 56.7, 76.8, 10, 300 }, + [18] = { 35.9, 76.6, 10, 300 }, + [19] = { 32, 76.6, 10, 300 }, + [20] = { 73.7, 76.5, 10, 300 }, + [21] = { 40.4, 76.4, 10, 300 }, + [22] = { 30.4, 76.2, 10, 300 }, + [23] = { 80, 76, 10, 300 }, + [24] = { 30.5, 71.4, 10, 300 }, + [25] = { 51, 71.2, 10, 300 }, + [26] = { 82.7, 70.8, 10, 300 }, + [27] = { 50.6, 63.2, 10, 300 }, + [28] = { 81.8, 62.9, 10, 300 }, + [29] = { 57.9, 61.3, 10, 300 }, + [30] = { 46.6, 60.2, 10, 300 }, + [31] = { 84.1, 58.3, 10, 300 }, + [32] = { 59.9, 56.2, 10, 300 }, + [33] = { 52.6, 55.5, 10, 300 }, + [34] = { 85.5, 54, 10, 300 }, + [35] = { 67.4, 51.5, 10, 300 }, + [36] = { 84.9, 50.9, 10, 300 }, + [37] = { 85.9, 49.1, 10, 300 }, + [38] = { 36.4, 49.1, 10, 300 }, + [39] = { 68.2, 47.7, 10, 300 }, + [40] = { 86.7, 47.3, 10, 300 }, + [41] = { 67.9, 42.6, 10, 300 }, + [42] = { 35.3, 41.6, 10, 300 }, + [43] = { 68.7, 40.7, 10, 300 }, + [44] = { 36, 31.9, 10, 300 }, + [45] = { 41.6, 24.7, 10, 300 }, + [46] = { 51.3, 22.4, 10, 300 }, + [47] = { 61.5, 80, 11, 300 }, + [48] = { 63.9, 78.7, 11, 300 }, + [49] = { 55.4, 78.1, 11, 300 }, + [50] = { 63, 77.8, 11, 300 }, + [51] = { 64.7, 76.3, 11, 300 }, + [52] = { 54.1, 76.2, 11, 300 }, + [53] = { 57.5, 75.7, 11, 300 }, + [54] = { 65.1, 75.1, 11, 300 }, + [55] = { 68, 74.8, 11, 300 }, + [56] = { 66.6, 74.8, 11, 300 }, + [57] = { 60, 74.3, 11, 300 }, + [58] = { 67.9, 69.6, 11, 300 }, + [59] = { 53.4, 66.9, 11, 300 }, + [60] = { 66.6, 66.5, 11, 300 }, + [61] = { 45.8, 65.1, 11, 300 }, + [62] = { 48.7, 63.1, 11, 300 }, + [63] = { 50, 62.9, 11, 300 }, + [64] = { 53.1, 62.7, 11, 300 }, + [65] = { 47.2, 62.6, 11, 300 }, + [66] = { 54, 62.1, 11, 300 }, + [67] = { 66.6, 62, 11, 300 }, + [68] = { 50.6, 61.3, 11, 300 }, + [69] = { 51.1, 61.1, 11, 300 }, + [70] = { 49.1, 61, 11, 300 }, + [71] = { 48.5, 60.3, 11, 300 }, + [72] = { 45.7, 60.1, 11, 300 }, + [73] = { 47.5, 60, 11, 300 }, + [74] = { 50.7, 59.2, 11, 300 }, + [75] = { 55.9, 58.7, 11, 300 }, + [76] = { 54.3, 58.7, 11, 300 }, + [77] = { 50.5, 58.4, 11, 300 }, + [78] = { 54.1, 57.7, 11, 300 }, + [79] = { 67.7, 56.3, 11, 300 }, + [80] = { 53.4, 55.7, 11, 300 }, + [81] = { 33.4, 51.1, 11, 300 }, + [82] = { 51.8, 50.3, 11, 300 }, + [83] = { 36.5, 48.6, 11, 300 }, + [84] = { 45.4, 47.8, 11, 300 }, + [85] = { 32.6, 47.4, 11, 300 }, + [86] = { 51.7, 46.5, 11, 300 }, + [87] = { 35.9, 45.5, 11, 300 }, + [88] = { 48.6, 44.8, 11, 300 }, + [89] = { 32.6, 44.3, 11, 300 }, + [90] = { 37.7, 43.3, 11, 300 }, + [91] = { 48.4, 43.3, 11, 300 }, + [92] = { 47.3, 43, 11, 300 }, + [93] = { 66, 39.4, 11, 300 }, + [94] = { 68, 37.7, 11, 300 }, + [95] = { 67.9, 37.6, 11, 300 }, + [96] = { 69.5, 35.2, 11, 300 }, + [97] = { 66, 33.9, 11, 300 }, + [98] = { 69.4, 33.1, 11, 300 }, + [99] = { 67.8, 32, 11, 300 }, + [100] = { 70.4, 32, 11, 300 }, + [101] = { 69.3, 31.1, 11, 300 }, + [102] = { 43.6, 22.6, 11, 300 }, + [103] = { 39.3, 18.5, 11, 300 }, + [104] = { 37.9, 17.6, 11, 300 }, + [105] = { 34.1, 15.2, 11, 300 }, + [106] = { 25.5, 65.6, 15, 300 }, + [107] = { 26.5, 63, 15, 300 }, + [108] = { 52.4, 62, 15, 300 }, + [109] = { 54.4, 59.6, 15, 300 }, + [110] = { 25.5, 56.6, 15, 300 }, + [111] = { 55.5, 52.7, 15, 300 }, + [112] = { 52.2, 49.6, 15, 300 }, + [113] = { 49.4, 45, 15, 300 }, + [114] = { 26.5, 28.7, 15, 300 }, + [115] = { 58, 20.4, 15, 300 }, + [116] = { 34.6, 20.1, 15, 300 }, + [117] = { 50.9, 17.1, 15, 300 }, + [118] = { 35.6, 13.7, 15, 300 }, + [119] = { 41.7, 9.2, 15, 300 }, + [120] = { 48.5, 98.3, 17, 300 }, + [121] = { 47.2, 97.2, 17, 300 }, + [122] = { 45.7, 97.1, 17, 300 }, + [123] = { 45.9, 95.9, 17, 300 }, + [124] = { 46.3, 95.8, 17, 300 }, + [125] = { 40.8, 95.2, 17, 300 }, + [126] = { 45.2, 93.8, 17, 300 }, + [127] = { 48.7, 88, 17, 300 }, + [128] = { 49.2, 86.6, 17, 300 }, + [129] = { 48.7, 83.3, 17, 300 }, + [130] = { 48.7, 82.3, 17, 300 }, + [131] = { 48.7, 80.5, 17, 300 }, + [132] = { 43.9, 78.3, 17, 300 }, + [133] = { 42.1, 77.8, 17, 300 }, + [134] = { 43.6, 76.8, 17, 300 }, + [135] = { 43.4, 74.6, 17, 300 }, + [136] = { 48.5, 71.5, 17, 300 }, + [137] = { 49.2, 68.8, 17, 300 }, + [138] = { 45.2, 68.7, 17, 300 }, + [139] = { 47.4, 68.7, 17, 300 }, + [140] = { 48, 66.7, 17, 300 }, + [141] = { 53.4, 64.4, 17, 300 }, + [142] = { 48.9, 64.1, 17, 300 }, + [143] = { 53.9, 61.1, 17, 300 }, + [144] = { 57.1, 58.7, 17, 300 }, + [145] = { 62.2, 55.1, 17, 300 }, + [146] = { 51.5, 52.6, 17, 300 }, + [147] = { 61.1, 51.4, 17, 300 }, + [148] = { 51.6, 51.4, 17, 300 }, + [149] = { 62.2, 51, 17, 300 }, + [150] = { 63.2, 50.8, 17, 300 }, + [151] = { 48.6, 49.5, 17, 300 }, + [152] = { 64.2, 49.5, 17, 300 }, + [153] = { 49.7, 48.6, 17, 300 }, + [154] = { 48.5, 48.4, 17, 300 }, + [155] = { 51.7, 48.2, 17, 300 }, + [156] = { 46.1, 45, 17, 300 }, + [157] = { 44.6, 42.1, 17, 300 }, + [158] = { 42.7, 42.1, 17, 300 }, + [159] = { 42.7, 41.1, 17, 300 }, + [160] = { 47.1, 30.6, 17, 300 }, + [161] = { 41.6, 29.7, 17, 300 }, + [162] = { 43.8, 27.5, 17, 300 }, + [163] = { 44, 26.6, 17, 300 }, + [164] = { 57, 25.5, 17, 300 }, + [165] = { 44.9, 25.1, 17, 300 }, + [166] = { 39.5, 23.6, 17, 300 }, + [167] = { 40.1, 22.1, 17, 300 }, + [168] = { 32.5, 21.4, 17, 300 }, + [169] = { 39.8, 19.4, 17, 300 }, + [170] = { 53.8, 19.1, 17, 300 }, + [171] = { 57.8, 18.6, 17, 300 }, + [172] = { 55.5, 17.3, 17, 300 }, + [173] = { 54.3, 17.3, 17, 300 }, + [174] = { 57.8, 16.1, 17, 300 }, + [175] = { 47.9, 15.9, 17, 300 }, + [176] = { 49.1, 15.8, 17, 300 }, + [177] = { 46.5, 15.5, 17, 300 }, + [178] = { 48.6, 14.8, 17, 300 }, + [179] = { 42.7, 13.7, 17, 300 }, + [180] = { 43.5, 13.6, 17, 300 }, + [181] = { 46.4, 12.8, 17, 300 }, + [182] = { 45.2, 12.2, 17, 300 }, + [183] = { 43.6, 12.1, 17, 300 }, + [184] = { 47.1, 12, 17, 300 }, + [185] = { 50.1, 11.9, 17, 300 }, + [186] = { 50.9, 11.6, 17, 300 }, + [187] = { 59.2, 8.7, 17, 300 }, + [188] = { 54.7, 7.2, 17, 300 }, + [189] = { 57.5, 6, 17, 300 }, + [190] = { 56, 3.9, 17, 300 }, + [191] = { 38.8, 13.9, 33, 300 }, + [192] = { 37.6, 13.8, 33, 300 }, + [193] = { 45.5, 13.2, 33, 300 }, + [194] = { 37, 12.9, 33, 300 }, + [195] = { 44.9, 12.8, 33, 300 }, + [196] = { 43.4, 11.4, 33, 300 }, + [197] = { 42.4, 8.4, 33, 300 }, + [198] = { 37.8, 7.8, 33, 300 }, + [199] = { 36.3, 6.9, 33, 300 }, + [200] = { 39.8, 6.6, 33, 300 }, + [201] = { 33.1, 6.4, 33, 300 }, + [202] = { 34.4, 6.3, 33, 300 }, + [203] = { 37.5, 1.8, 33, 300 }, + [204] = { 48.5, 1.6, 33, 300 }, + [205] = { 39.5, 98.5, 36, 300 }, + [206] = { 41, 97.4, 36, 300 }, + [207] = { 72.3, 96.7, 36, 300 }, + [208] = { 70.8, 96.3, 36, 300 }, + [209] = { 64.4, 95.2, 36, 300 }, + [210] = { 35.8, 94.7, 36, 300 }, + [211] = { 14.4, 94, 36, 300 }, + [212] = { 66.2, 93.5, 36, 300 }, + [213] = { 48, 92.5, 36, 300 }, + [214] = { 69.9, 92.3, 36, 300 }, + [215] = { 31.3, 91.4, 36, 300 }, + [216] = { 51.4, 90.9, 36, 300 }, + [217] = { 14.6, 90.3, 36, 300 }, + [218] = { 27.2, 89.8, 36, 300 }, + [219] = { 13.7, 89, 36, 300 }, + [220] = { 63.6, 88.4, 36, 300 }, + [221] = { 33.3, 87.3, 36, 300 }, + [222] = { 52.6, 86, 36, 300 }, + [223] = { 76.6, 85.2, 36, 300 }, + [224] = { 27.2, 84.6, 36, 300 }, + [225] = { 13.1, 82.6, 36, 300 }, + [226] = { 52.2, 81.6, 36, 300 }, + [227] = { 29.2, 81.4, 36, 300 }, + [228] = { 11.4, 81.2, 36, 300 }, + [229] = { 33.3, 79.7, 36, 300 }, + [230] = { 72.5, 79.6, 36, 300 }, + [231] = { 50.9, 77.8, 36, 300 }, + [232] = { 72, 77.6, 36, 300 }, + [233] = { 63.8, 76.4, 36, 300 }, + [234] = { 30.8, 76.3, 36, 300 }, + [235] = { 66, 75.7, 36, 300 }, + [236] = { 57.9, 74.3, 36, 300 }, + [237] = { 50.8, 74.2, 36, 300 }, + [238] = { 8.7, 73, 36, 300 }, + [239] = { 61, 72.7, 36, 300 }, + [240] = { 56.2, 72.5, 36, 300 }, + [241] = { 63.9, 72.1, 36, 300 }, + [242] = { 66, 70.3, 36, 300 }, + [243] = { 6.5, 70, 36, 300 }, + [244] = { 61.8, 69.9, 36, 300 }, + [245] = { 55, 68.7, 36, 300 }, + [246] = { 67.6, 68.5, 36, 300 }, + [247] = { 30.6, 68.3, 36, 300 }, + [248] = { 28.4, 67.2, 36, 300 }, + [249] = { 61.7, 67.2, 36, 300 }, + [250] = { 66.6, 63.9, 36, 300 }, + [251] = { 6.4, 60.6, 36, 300 }, + [252] = { 18.4, 45.9, 36, 300 }, + [253] = { 34.5, 91.7, 38, 300 }, + [254] = { 29.8, 87.5, 38, 300 }, + [255] = { 33.2, 87, 38, 300 }, + [256] = { 27.1, 85.6, 38, 300 }, + [257] = { 72.9, 73.7, 38, 300 }, + [258] = { 80.2, 73.6, 38, 300 }, + [259] = { 63.3, 71.5, 38, 300 }, + [260] = { 77.5, 70.6, 38, 300 }, + [261] = { 57.3, 69.5, 38, 300 }, + [262] = { 68.4, 68, 38, 300 }, + [263] = { 70.9, 65.8, 38, 300 }, + [264] = { 76.3, 65.4, 38, 300 }, + [265] = { 72.4, 65, 38, 300 }, + [266] = { 70, 63.4, 38, 300 }, + [267] = { 69.2, 62.6, 38, 300 }, + [268] = { 27.5, 59.2, 38, 300 }, + [269] = { 72.5, 53.4, 38, 300 }, + [270] = { 25.4, 47.5, 38, 300 }, + [271] = { 78.9, 46.8, 38, 300 }, + [272] = { 69, 46.6, 38, 300 }, + [273] = { 80, 39.7, 38, 300 }, + [274] = { 68.8, 32.1, 38, 300 }, + [275] = { 22.7, 31.5, 38, 300 }, + [276] = { 72.1, 28.1, 38, 300 }, + [277] = { 78.2, 27.4, 38, 300 }, + [278] = { 74.1, 25.6, 38, 300 }, + [279] = { 75.6, 24.6, 38, 300 }, + [280] = { 76.3, 18.5, 38, 300 }, + [281] = { 68, 18.5, 38, 300 }, + [282] = { 79, 16.3, 38, 300 }, + [283] = { 74.8, 15.9, 38, 300 }, + [284] = { 61.9, 15.5, 38, 300 }, + [285] = { 35.1, 15, 38, 300 }, + [286] = { 79.4, 14.1, 38, 300 }, + [287] = { 59.7, 13.7, 38, 300 }, + [288] = { 76.9, 13.7, 38, 300 }, + [289] = { 37.7, 83.7, 40, 300 }, + [290] = { 38.7, 82.5, 40, 300 }, + [291] = { 43.9, 81.5, 40, 300 }, + [292] = { 41.3, 79.9, 40, 300 }, + [293] = { 40.6, 79.4, 40, 300 }, + [294] = { 43.5, 79.1, 40, 300 }, + [295] = { 41.5, 78.8, 40, 300 }, + [296] = { 41.6, 78.8, 40, 300 }, + [297] = { 40.5, 78.6, 40, 300 }, + [298] = { 43.2, 78.3, 40, 300 }, + [299] = { 44.2, 77.2, 40, 300 }, + [300] = { 43.7, 76.5, 40, 300 }, + [301] = { 67.5, 75.9, 40, 300 }, + [302] = { 49.4, 75.9, 40, 300 }, + [303] = { 58.2, 75.4, 40, 300 }, + [304] = { 39.6, 74.3, 40, 300 }, + [305] = { 53, 72.6, 40, 300 }, + [306] = { 32.2, 60.1, 40, 300 }, + [307] = { 28.8, 50.9, 40, 300 }, + [308] = { 29.8, 50.7, 40, 300 }, + [309] = { 30.8, 48.6, 40, 300 }, + [310] = { 30.7, 46.6, 40, 300 }, + [311] = { 30, 46.5, 40, 300 }, + [312] = { 29.2, 45.6, 40, 300 }, + [313] = { 33, 45.5, 40, 300 }, + [314] = { 31.5, 45.1, 40, 300 }, + [315] = { 31.9, 41.8, 40, 300 }, + [316] = { 29.4, 40.9, 40, 300 }, + [317] = { 27.9, 33, 40, 300 }, + [318] = { 32, 30.9, 40, 300 }, + [319] = { 44.5, 23.9, 40, 300 }, + [320] = { 44.6, 22.6, 40, 300 }, + [321] = { 45.6, 21.7, 40, 300 }, + [322] = { 45.9, 20.6, 40, 300 }, + [323] = { 44.5, 20.4, 40, 300 }, + [324] = { 46.3, 19.7, 40, 300 }, + [325] = { 45.3, 18, 40, 300 }, + [326] = { 76.3, 84.4, 44, 300 }, + [327] = { 73.1, 83.4, 44, 300 }, + [328] = { 64.8, 78.8, 44, 300 }, + [329] = { 52.9, 77.8, 44, 300 }, + [330] = { 71.1, 76.4, 44, 300 }, + [331] = { 64.3, 73, 44, 300 }, + [332] = { 59.3, 71.3, 44, 300 }, + [333] = { 70.4, 71, 44, 300 }, + [334] = { 79.7, 67.4, 44, 300 }, + [335] = { 62.4, 66.2, 44, 300 }, + [336] = { 76.8, 63.5, 44, 300 }, + [337] = { 86.2, 61.8, 44, 300 }, + [338] = { 65.1, 58.6, 44, 300 }, + [339] = { 65.3, 53.8, 44, 300 }, + [340] = { 87.6, 51.3, 44, 300 }, + [341] = { 72.2, 51.2, 44, 300 }, + [342] = { 67.4, 48, 44, 300 }, + [343] = { 59.9, 47, 44, 300 }, + [344] = { 53.6, 46.9, 44, 300 }, + [345] = { 77.9, 45.9, 44, 300 }, + [346] = { 83.3, 42.1, 44, 300 }, + [347] = { 40.1, 41.7, 44, 300 }, + [348] = { 21.1, 39.1, 44, 300 }, + [349] = { 28.8, 37.3, 44, 300 }, + [350] = { 56.5, 37, 44, 300 }, + [351] = { 39.5, 35, 44, 300 }, + [352] = { 74.1, 34.7, 44, 300 }, + [353] = { 18.7, 33.3, 44, 300 }, + [354] = { 36.8, 30.2, 44, 300 }, + [355] = { 27.2, 29.7, 44, 300 }, + [356] = { 36, 24.7, 44, 300 }, + [357] = { 23.4, 24.7, 44, 300 }, + [358] = { 33, 21.1, 44, 300 }, + [359] = { 28.1, 20.4, 44, 300 }, + [360] = { 28.4, 17.4, 44, 300 }, + [361] = { 29.2, 16.8, 44, 300 }, + [362] = { 27.9, 16.2, 44, 300 }, + [363] = { 26.5, 15.9, 44, 300 }, + [364] = { 19, 15, 44, 300 }, + [365] = { 31.4, 14, 44, 300 }, + [366] = { 40.8, 13.7, 44, 300 }, + [367] = { 37.2, 13.3, 44, 300 }, + [368] = { 28.6, 12.7, 44, 300 }, + [369] = { 30.9, 12.6, 44, 300 }, + [370] = { 28.9, 12.4, 44, 300 }, + [371] = { 26.4, 12.1, 44, 300 }, + [372] = { 28.4, 12.1, 44, 300 }, + [373] = { 27.9, 10.7, 44, 300 }, + [374] = { 29, 10.4, 44, 300 }, + [375] = { 30.8, 10.4, 44, 300 }, + [376] = { 43.8, 10.2, 44, 300 }, + [377] = { 26.6, 10.1, 44, 300 }, + [378] = { 28.5, 9.3, 44, 300 }, + [379] = { 27.8, 9, 44, 300 }, + [380] = { 34, 8.9, 44, 300 }, + [381] = { 30.6, 7.5, 44, 300 }, + [382] = { 32.3, 7.4, 44, 300 }, + [383] = { 36, 6.6, 44, 300 }, + [384] = { 31.7, 5.1, 44, 300 }, + [385] = { 39.6, 73.1, 45, 300 }, + [386] = { 62.9, 70.9, 45, 300 }, + [387] = { 37.9, 68.9, 45, 300 }, + [388] = { 71.3, 66.7, 45, 300 }, + [389] = { 62.1, 66.7, 45, 300 }, + [390] = { 48.3, 64.4, 45, 300 }, + [391] = { 31.3, 61.7, 45, 300 }, + [392] = { 40.6, 60.5, 45, 300 }, + [393] = { 72.4, 60, 45, 300 }, + [394] = { 33.5, 59.8, 45, 300 }, + [395] = { 39.2, 58.6, 45, 300 }, + [396] = { 18.5, 56.2, 45, 300 }, + [397] = { 36.3, 54.5, 45, 300 }, + [398] = { 23.6, 54.3, 45, 300 }, + [399] = { 17.2, 52.7, 45, 300 }, + [400] = { 47.4, 52.4, 45, 300 }, + [401] = { 40.2, 49, 45, 300 }, + [402] = { 17.3, 47.7, 45, 300 }, + [403] = { 53.2, 45.1, 45, 300 }, + [404] = { 31, 44.2, 45, 300 }, + [405] = { 22.3, 43.6, 45, 300 }, + [406] = { 13.4, 42.6, 45, 300 }, + [407] = { 48.2, 41.3, 45, 300 }, + [408] = { 11, 41.2, 45, 300 }, + [409] = { 41.5, 40.9, 45, 300 }, + [410] = { 20.7, 39.5, 45, 300 }, + [411] = { 51.3, 36.3, 45, 300 }, + [412] = { 58.5, 34.3, 45, 300 }, + [413] = { 16.3, 32.9, 45, 300 }, + [414] = { 28.5, 32.6, 45, 300 }, + [415] = { 23.9, 29.5, 45, 300 }, + [416] = { 34.2, 23.3, 45, 300 }, + [417] = { 58.6, 90.2, 46, 300 }, + [418] = { 66, 88.3, 46, 300 }, + [419] = { 64.1, 88, 46, 300 }, + [420] = { 65.6, 88, 46, 300 }, + [421] = { 65.2, 87, 46, 300 }, + [422] = { 66, 86.8, 46, 300 }, + [423] = { 67.4, 86.8, 46, 300 }, + [424] = { 64.2, 86.6, 46, 300 }, + [425] = { 65.6, 86, 46, 300 }, + [426] = { 65.1, 85.7, 46, 300 }, + [427] = { 69.7, 85.7, 46, 300 }, + [428] = { 67.2, 84.6, 46, 300 }, + [429] = { 68.5, 84.6, 46, 300 }, + [430] = { 71.2, 84, 46, 300 }, + [431] = { 68, 82.9, 46, 300 }, + [432] = { 60.8, 80.8, 130, 300 }, + [433] = { 62.8, 79.8, 130, 300 }, + [434] = { 57.9, 79.1, 130, 300 }, + [435] = { 59.4, 75.5, 130, 300 }, + [436] = { 63.8, 73.1, 130, 300 }, + [437] = { 60.4, 72.7, 130, 300 }, + [438] = { 59.6, 72.2, 130, 300 }, + [439] = { 60.5, 72.2, 130, 300 }, + [440] = { 58.5, 72.1, 130, 300 }, + [441] = { 59.4, 72.1, 130, 300 }, + [442] = { 57.6, 71.9, 130, 300 }, + [443] = { 63.8, 71.5, 130, 300 }, + [444] = { 58.9, 71.3, 130, 300 }, + [445] = { 57.7, 71.3, 130, 300 }, + [446] = { 60.1, 71.1, 130, 300 }, + [447] = { 57, 71, 130, 300 }, + [448] = { 61.8, 70.9, 130, 300 }, + [449] = { 57.5, 70.7, 130, 300 }, + [450] = { 59, 70.6, 130, 300 }, + [451] = { 56, 70.5, 130, 300 }, + [452] = { 56.8, 70.3, 130, 300 }, + [453] = { 59.3, 70.2, 130, 300 }, + [454] = { 58.1, 70, 130, 300 }, + [455] = { 57.6, 69.6, 130, 300 }, + [456] = { 40.1, 69.2, 130, 300 }, + [457] = { 65.9, 61.3, 130, 300 }, + [458] = { 60, 61, 130, 300 }, + [459] = { 57.8, 60.6, 130, 300 }, + [460] = { 71.1, 60.1, 130, 300 }, + [461] = { 54.9, 59.3, 130, 300 }, + [462] = { 63, 59, 130, 300 }, + [463] = { 46, 56.8, 130, 300 }, + [464] = { 64.2, 55.7, 130, 300 }, + [465] = { 69.3, 54.6, 130, 300 }, + [466] = { 67.8, 52.6, 130, 300 }, + [467] = { 42.1, 52, 130, 300 }, + [468] = { 47.4, 51.8, 130, 300 }, + [469] = { 55.9, 50.4, 130, 300 }, + [470] = { 67.8, 46.4, 130, 300 }, + [471] = { 55.2, 46, 130, 300 }, + [472] = { 65.3, 45.5, 130, 300 }, + [473] = { 58.2, 45.4, 130, 300 }, + [474] = { 58, 45.1, 130, 300 }, + [475] = { 58.4, 44.7, 130, 300 }, + [476] = { 58.4, 43.1, 130, 300 }, + [477] = { 63.7, 42.1, 130, 300 }, + [478] = { 61.1, 41, 130, 300 }, + [479] = { 61.3, 37.2, 130, 300 }, + [480] = { 75.8, 36.6, 130, 300 }, + [481] = { 48, 33.5, 130, 300 }, + [482] = { 39.7, 32.5, 130, 300 }, + [483] = { 79.9, 23.7, 130, 300 }, + [484] = { 47.9, 23.1, 130, 300 }, + [485] = { 61.6, 21.1, 130, 300 }, + [486] = { 65, 16.1, 130, 300 }, + [487] = { 41, 15.9, 130, 300 }, + [488] = { 36.8, 13.2, 130, 300 }, + [489] = { 71.1, 13.1, 130, 300 }, + [490] = { 62, 7.4, 130, 300 }, + [491] = { 41.9, 99.7, 148, 300 }, + [492] = { 26.1, 97.4, 148, 300 }, + [493] = { 23.8, 96.7, 148, 300 }, + [494] = { 41.8, 96.3, 148, 300 }, + [495] = { 26, 95.8, 148, 300 }, + [496] = { 28, 95.1, 148, 300 }, + [497] = { 31, 94.3, 148, 300 }, + [498] = { 45, 88.1, 148, 300 }, + [499] = { 45, 85.6, 148, 300 }, + [500] = { 39.8, 85.5, 148, 300 }, + [501] = { 44.7, 84.8, 148, 300 }, + [502] = { 44.7, 84.4, 148, 300 }, + [503] = { 32.3, 78.7, 148, 300 }, + [504] = { 34, 72.6, 148, 300 }, + [505] = { 42.6, 67.3, 148, 300 }, + [506] = { 37.8, 63.2, 148, 300 }, + [507] = { 44.7, 61.2, 148, 300 }, + [508] = { 37.3, 59.4, 148, 300 }, + [509] = { 44.2, 58.5, 148, 300 }, + [510] = { 45.9, 57.3, 148, 300 }, + [511] = { 34.7, 56, 148, 300 }, + [512] = { 45.8, 54.5, 148, 300 }, + [513] = { 48.1, 42.5, 148, 300 }, + [514] = { 49.1, 37.9, 148, 300 }, + [515] = { 54.6, 37, 148, 300 }, + [516] = { 52.4, 36.3, 148, 300 }, + [517] = { 56.6, 33.3, 148, 300 }, + [518] = { 47.8, 32.8, 148, 300 }, + [519] = { 42, 30.9, 148, 300 }, + [520] = { 51.3, 30.3, 148, 300 }, + [521] = { 48.2, 29.1, 148, 300 }, + [522] = { 51.4, 27.7, 148, 300 }, + [523] = { 46.1, 27.3, 148, 300 }, + [524] = { 50.7, 26.2, 148, 300 }, + [525] = { 52.1, 26.1, 148, 300 }, + [526] = { 53.7, 26, 148, 300 }, + [527] = { 38.6, 24.8, 148, 300 }, + [528] = { 59.8, 24.5, 148, 300 }, + [529] = { 56.4, 22.6, 148, 300 }, + [530] = { 50.6, 21.7, 148, 300 }, + [531] = { 61.5, 21.5, 148, 300 }, + [532] = { 60.2, 20.6, 148, 300 }, + [533] = { 60.3, 20.4, 148, 300 }, + [534] = { 47.1, 20.3, 148, 300 }, + [535] = { 59.3, 19.6, 148, 300 }, + [536] = { 49.7, 19.5, 148, 300 }, + [537] = { 61.7, 18.9, 148, 300 }, + [538] = { 44.1, 17.8, 148, 300 }, + [539] = { 61.7, 16.5, 148, 300 }, + [540] = { 60, 15, 148, 300 }, + [541] = { 62, 12.4, 148, 300 }, + [542] = { 61.4, 8.8, 148, 300 }, + [543] = { 79.8, 84.3, 267, 300 }, + [544] = { 79.9, 78.7, 267, 300 }, + [545] = { 61.1, 73.1, 267, 300 }, + [546] = { 75.5, 72.9, 267, 300 }, + [547] = { 72.8, 71.3, 267, 300 }, + [548] = { 66.6, 70, 267, 300 }, + [549] = { 61.9, 69.5, 267, 300 }, + [550] = { 32.4, 65.6, 267, 300 }, + [551] = { 68.2, 65.6, 267, 300 }, + [552] = { 38.9, 64.5, 267, 300 }, + [553] = { 40.9, 63.4, 267, 300 }, + [554] = { 45, 62.2, 267, 300 }, + [555] = { 67.6, 62, 267, 300 }, + [556] = { 78.8, 62, 267, 300 }, + [557] = { 57.1, 61.3, 267, 300 }, + [558] = { 58.2, 57.1, 267, 300 }, + [559] = { 71.2, 57.1, 267, 300 }, + [560] = { 64.1, 55.2, 267, 300 }, + [561] = { 64, 51.7, 267, 300 }, + [562] = { 65.1, 47.8, 267, 300 }, + [563] = { 7.9, 45.4, 267, 300 }, + [564] = { 69.9, 42.7, 267, 300 }, + [565] = { 70.5, 40.6, 267, 300 }, + [566] = { 69.9, 38.3, 267, 300 }, + [567] = { 68.5, 37.7, 267, 300 }, + [568] = { 9.3, 36.5, 267, 300 }, + [569] = { 43.4, 34.6, 267, 300 }, + [570] = { 9.3, 34.4, 267, 300 }, + [571] = { 44.8, 33.7, 267, 300 }, + [572] = { 72.1, 33, 267, 300 }, + [573] = { 70.8, 32.7, 267, 300 }, + [574] = { 65.2, 31.8, 267, 300 }, + [575] = { 40.1, 31.3, 267, 300 }, + [576] = { 21.5, 30.7, 267, 300 }, + [577] = { 66.8, 30.3, 267, 300 }, + [578] = { 50.9, 29.4, 267, 300 }, + [579] = { 70, 29.2, 267, 300 }, + [580] = { 36.2, 28.4, 267, 300 }, + [581] = { 78.9, 28, 267, 300 }, + [582] = { 53.8, 28, 267, 300 }, + [583] = { 21.6, 27.4, 267, 300 }, + [584] = { 32.7, 27, 267, 300 }, + [585] = { 20.9, 26.3, 267, 300 }, + [586] = { 64.5, 25.8, 267, 300 }, + [587] = { 38, 24.9, 267, 300 }, + [588] = { 54.9, 23.7, 267, 300 }, + [589] = { 75.9, 23, 267, 300 }, + [590] = { 32.7, 22.5, 267, 300 }, + [591] = { 12, 21, 267, 300 }, + [592] = { 20.4, 20.7, 267, 300 }, + [593] = { 54.6, 19.8, 267, 300 }, + [594] = { 34.4, 19.7, 267, 300 }, + [595] = { 18.9, 19.5, 267, 300 }, + [596] = { 38, 18.2, 267, 300 }, + [597] = { 72.3, 18, 267, 300 }, + [598] = { 8.2, 18, 267, 300 }, + [599] = { 53.4, 16.5, 267, 300 }, + [600] = { 71.8, 16.3, 267, 300 }, + [601] = { 64.7, 15.3, 267, 300 }, + [602] = { 35.8, 15.2, 267, 300 }, + [603] = { 66.6, 14.7, 267, 300 }, + [604] = { 9.8, 13.8, 267, 300 }, + [605] = { 59.5, 13.4, 267, 300 }, + [606] = { 53.3, 13.3, 267, 300 }, + [607] = { 16.5, 12.3, 267, 300 }, + [608] = { 62.3, 12, 267, 300 }, + [609] = { 58, 11.9, 267, 300 }, + [610] = { 64.7, 11.5, 267, 300 }, + [611] = { 66.6, 9.9, 267, 300 }, + [612] = { 63, 9.6, 267, 300 }, + [613] = { 56.9, 8.5, 267, 300 }, + [614] = { 68, 8.3, 267, 300 }, + [615] = { 35.6, 8.2, 267, 300 }, + [616] = { 62.8, 7.2, 267, 300 }, + [617] = { 67.2, 4.4, 267, 300 }, + [618] = { 66.3, 83.2, 331, 300 }, + [619] = { 81.4, 80.2, 331, 300 }, + [620] = { 83, 80, 331, 300 }, + [621] = { 83.9, 78.9, 331, 300 }, + [622] = { 82.4, 78.7, 331, 300 }, + [623] = { 85.4, 77.4, 331, 300 }, + [624] = { 51.9, 76.7, 331, 300 }, + [625] = { 84.2, 76.3, 331, 300 }, + [626] = { 84.8, 75.8, 331, 300 }, + [627] = { 84.4, 73.8, 331, 300 }, + [628] = { 80.5, 73.8, 331, 300 }, + [629] = { 52.1, 73.2, 331, 300 }, + [630] = { 84.6, 73, 331, 300 }, + [631] = { 79.2, 72.7, 331, 300 }, + [632] = { 32.6, 71.1, 331, 300 }, + [633] = { 79.7, 70.9, 331, 300 }, + [634] = { 65, 69.7, 331, 300 }, + [635] = { 75.3, 69.6, 331, 300 }, + [636] = { 88.5, 69.5, 331, 300 }, + [637] = { 85.3, 68.9, 331, 300 }, + [638] = { 55.1, 68.5, 331, 300 }, + [639] = { 90.9, 68.4, 331, 300 }, + [640] = { 64.7, 68.3, 331, 300 }, + [641] = { 86.5, 68.2, 331, 300 }, + [642] = { 80, 67.1, 331, 300 }, + [643] = { 68.7, 67, 331, 300 }, + [644] = { 91.2, 66.5, 331, 300 }, + [645] = { 71.5, 66.3, 331, 300 }, + [646] = { 69.8, 66.2, 331, 300 }, + [647] = { 67.3, 64.7, 331, 300 }, + [648] = { 79.1, 63.3, 331, 300 }, + [649] = { 80.5, 62.9, 331, 300 }, + [650] = { 48.5, 62.7, 331, 300 }, + [651] = { 80.9, 62.5, 331, 300 }, + [652] = { 78.5, 62.4, 331, 300 }, + [653] = { 55, 61.4, 331, 300 }, + [654] = { 22.5, 61.4, 331, 300 }, + [655] = { 90.6, 60.9, 331, 300 }, + [656] = { 62.7, 60.5, 331, 300 }, + [657] = { 78.4, 60.5, 331, 300 }, + [658] = { 69, 58.4, 331, 300 }, + [659] = { 70.6, 58.3, 331, 300 }, + [660] = { 70.6, 58.2, 331, 300 }, + [661] = { 54.6, 56.3, 331, 300 }, + [662] = { 92.7, 55.6, 331, 300 }, + [663] = { 26.2, 54, 331, 300 }, + [664] = { 70.4, 53.8, 331, 300 }, + [665] = { 54.3, 53.4, 331, 300 }, + [666] = { 71.3, 53.1, 331, 300 }, + [667] = { 49.6, 52.8, 331, 300 }, + [668] = { 74.2, 52.5, 331, 300 }, + [669] = { 64.5, 51.6, 331, 300 }, + [670] = { 74.1, 51.4, 331, 300 }, + [671] = { 91.2, 50.9, 331, 300 }, + [672] = { 93.7, 50.5, 331, 300 }, + [673] = { 47, 49.1, 331, 300 }, + [674] = { 75.4, 48.9, 331, 300 }, + [675] = { 75.9, 47.3, 331, 300 }, + [676] = { 64.6, 47.3, 331, 300 }, + [677] = { 22.3, 45.9, 331, 300 }, + [678] = { 47, 45.7, 331, 300 }, + [679] = { 15, 44.7, 331, 300 }, + [680] = { 50.8, 44.3, 331, 300 }, + [681] = { 45, 44.3, 331, 300 }, + [682] = { 22.7, 44, 331, 300 }, + [683] = { 24.6, 42.3, 331, 300 }, + [684] = { 22.1, 42, 331, 300 }, + [685] = { 20.4, 41.9, 331, 300 }, + [686] = { 29.9, 41.3, 331, 300 }, + [687] = { 41.4, 41, 331, 300 }, + [688] = { 40.1, 40.8, 331, 300 }, + [689] = { 43.8, 40.8, 331, 300 }, + [690] = { 22.6, 40.8, 331, 300 }, + [691] = { 17.4, 39.9, 331, 300 }, + [692] = { 40.2, 37.9, 331, 300 }, + [693] = { 41.9, 37.6, 331, 300 }, + [694] = { 40.1, 37.4, 331, 300 }, + [695] = { 35.4, 37.1, 331, 300 }, + [696] = { 40.1, 36.6, 331, 300 }, + [697] = { 40.8, 36.3, 331, 300 }, + [698] = { 22.9, 36.3, 331, 300 }, + [699] = { 40.5, 36.1, 331, 300 }, + [700] = { 17.7, 35.6, 331, 300 }, + [701] = { 41.2, 35.5, 331, 300 }, + [702] = { 21.7, 35.4, 331, 300 }, + [703] = { 24.4, 34.7, 331, 300 }, + [704] = { 28.6, 34.7, 331, 300 }, + [705] = { 43.1, 33.9, 331, 300 }, + [706] = { 23.4, 33.8, 331, 300 }, + [707] = { 24.9, 33.8, 331, 300 }, + [708] = { 21.8, 33.6, 331, 300 }, + [709] = { 59.3, 33.6, 331, 300 }, + [710] = { 29, 33.5, 331, 300 }, + [711] = { 39.7, 32.4, 331, 300 }, + [712] = { 40.8, 31.3, 331, 300 }, + [713] = { 16.5, 31, 331, 300 }, + [714] = { 26.7, 30.6, 331, 300 }, + [715] = { 30.4, 29.7, 331, 300 }, + [716] = { 33.7, 28, 331, 300 }, + [717] = { 33.6, 27.9, 331, 300 }, + [718] = { 11.6, 27, 331, 300 }, + [719] = { 25.3, 22, 331, 300 }, + [720] = { 30.2, 19.7, 331, 300 }, + [721] = { 26, 18, 331, 300 }, + [722] = { 8.1, 15.5, 331, 300 }, + [723] = { 5.5, 14.7, 331, 300 }, + [724] = { 25.9, 14.2, 331, 300 }, + [725] = { 8, 13.6, 331, 300 }, + [726] = { 10.3, 12.8, 331, 300 }, + [727] = { 13.7, 11.9, 331, 300 }, + [728] = { 91.6, 48.1, 357, 300 }, + [729] = { 93.2, 44, 357, 300 }, + [730] = { 42.2, 98.2, 361, 300 }, + [731] = { 58.5, 97.8, 361, 300 }, + [732] = { 38.8, 96.7, 361, 300 }, + [733] = { 39.9, 95.5, 361, 300 }, + [734] = { 28.6, 69, 361, 300 }, + [735] = { 28.6, 66.2, 361, 300 }, + [736] = { 29.7, 34, 361, 300 }, + [737] = { 29.6, 30.7, 361, 300 }, + [738] = { 39.5, 10.8, 361, 300 }, + [739] = { 80.8, 90.2, 400, 300 }, + [740] = { 88.7, 80.7, 400, 300 }, + [741] = { 88.6, 72.6, 400, 300 }, + [742] = { 67.1, 63.2, 400, 300 }, + [743] = { 62.9, 60.8, 400, 300 }, + [744] = { 42.5, 58.7, 400, 300 }, + [745] = { 47.5, 58.6, 400, 300 }, + [746] = { 57.5, 57.4, 400, 300 }, + [747] = { 86.1, 56.4, 400, 300 }, + [748] = { 38.2, 55.3, 400, 300 }, + [749] = { 41.1, 54.7, 400, 300 }, + [750] = { 63, 53.4, 400, 300 }, + [751] = { 58.2, 51.8, 400, 300 }, + [752] = { 38.5, 51.8, 400, 300 }, + [753] = { 37.8, 51.2, 400, 300 }, + [754] = { 35.2, 50.7, 400, 300 }, + [755] = { 31.3, 50.5, 400, 300 }, + [756] = { 64.6, 50, 400, 300 }, + [757] = { 55.3, 49.3, 400, 300 }, + [758] = { 66.1, 49.2, 400, 300 }, + [759] = { 27.3, 49.1, 400, 300 }, + [760] = { 63.2, 49, 400, 300 }, + [761] = { 37, 48.6, 400, 300 }, + [762] = { 56.1, 47.8, 400, 300 }, + [763] = { 32.1, 46.6, 400, 300 }, + [764] = { 50.6, 46.4, 400, 300 }, + [765] = { 62.9, 45.6, 400, 300 }, + [766] = { 34.2, 44.8, 400, 300 }, + [767] = { 54.1, 44.5, 400, 300 }, + [768] = { 51.9, 42.8, 400, 300 }, + [769] = { 47.3, 42.4, 400, 300 }, + [770] = { 27.5, 41.9, 400, 300 }, + [771] = { 41.3, 41.9, 400, 300 }, + [772] = { 10.4, 41.2, 400, 300 }, + [773] = { 40.5, 41.1, 400, 300 }, + [774] = { 46.3, 41, 400, 300 }, + [775] = { 26.4, 39.9, 400, 300 }, + [776] = { 44.1, 39.4, 400, 300 }, + [777] = { 23.1, 38.9, 400, 300 }, + [778] = { 40.3, 38.7, 400, 300 }, + [779] = { 17.7, 38.4, 400, 300 }, + [780] = { 41.8, 36.7, 400, 300 }, + [781] = { 42.3, 36.1, 400, 300 }, + [782] = { 39.1, 33.8, 400, 300 }, + [783] = { 35.8, 33.5, 400, 300 }, + [784] = { 18, 32.8, 400, 300 }, + [785] = { 15.6, 31.1, 400, 300 }, + [786] = { 36.3, 30.7, 400, 300 }, + [787] = { 37.2, 30.4, 400, 300 }, + [788] = { 24.6, 29.1, 400, 300 }, + [789] = { 21.4, 26.1, 400, 300 }, + [790] = { 19.6, 25.9, 400, 300 }, + [791] = { 34.6, 25.9, 400, 300 }, + [792] = { 14.6, 25.5, 400, 300 }, + [793] = { 18.1, 22.9, 400, 300 }, + [794] = { 11.2, 21.4, 400, 300 }, + [795] = { 13.7, 15, 400, 300 }, + [796] = { 64.2, 91.4, 405, 300 }, + [797] = { 54.8, 83.9, 405, 300 }, + [798] = { 43.4, 83.7, 405, 300 }, + [799] = { 36.3, 79.9, 405, 300 }, + [800] = { 57.4, 79.8, 405, 300 }, + [801] = { 45.6, 77.6, 405, 300 }, + [802] = { 61.6, 76.7, 405, 300 }, + [803] = { 39.4, 74.7, 405, 300 }, + [804] = { 45.9, 73, 405, 300 }, + [805] = { 40, 72.4, 405, 300 }, + [806] = { 61.4, 69.2, 405, 300 }, + [807] = { 50.5, 65.8, 405, 300 }, + [808] = { 72.1, 63.2, 405, 300 }, + [809] = { 46.4, 63.1, 405, 300 }, + [810] = { 46.1, 57.7, 405, 300 }, + [811] = { 72.2, 57, 405, 300 }, + [812] = { 65.9, 53.3, 405, 300 }, + [813] = { 47.2, 52.5, 405, 300 }, + [814] = { 64.3, 38.6, 405, 300 }, + [815] = { 38.5, 38.2, 405, 300 }, + [816] = { 34.1, 38.1, 405, 300 }, + [817] = { 30.9, 36.7, 405, 300 }, + [818] = { 75, 32, 405, 300 }, + [819] = { 54.5, 31.7, 405, 300 }, + [820] = { 40.7, 30.2, 405, 300 }, + [821] = { 44.1, 29.8, 405, 300 }, + [822] = { 62.3, 24.6, 405, 300 }, + [823] = { 75.4, 22.5, 405, 300 }, + [824] = { 43, 22.3, 405, 300 }, + [825] = { 40.2, 22.1, 405, 300 }, + [826] = { 54.4, 20.7, 405, 300 }, + [827] = { 86.5, 17.5, 405, 300 }, + [828] = { 87.3, 17.4, 405, 300 }, + [829] = { 85.9, 16.5, 405, 300 }, + [830] = { 88.7, 16.5, 405, 300 }, + [831] = { 69.6, 16.1, 405, 300 }, + [832] = { 87.2, 15.5, 405, 300 }, + [833] = { 86.7, 14.5, 405, 300 }, + [834] = { 59.5, 10.9, 405, 300 }, + [835] = { 56.2, 8.1, 405, 300 }, + [836] = { 52.9, 5.2, 405, 300 }, + [837] = { 59.4, 91.8, 406, 300 }, + [838] = { 60.1, 91.7, 406, 300 }, + [839] = { 58.9, 90.9, 406, 300 }, + [840] = { 61.4, 90.9, 406, 300 }, + [841] = { 60.1, 89.9, 406, 300 }, + [842] = { 74.2, 89.7, 406, 300 }, + [843] = { 59.6, 89, 406, 300 }, + [844] = { 72.5, 87.3, 406, 300 }, + [845] = { 70.9, 85.8, 406, 300 }, + [846] = { 34.5, 85.7, 406, 300 }, + [847] = { 80.2, 84.5, 406, 300 }, + [848] = { 31.5, 83.1, 406, 300 }, + [849] = { 28.4, 80.5, 406, 300 }, + [850] = { 34.8, 65.2, 406, 300 }, + [851] = { 29.8, 64.8, 406, 300 }, + [852] = { 72.7, 63.1, 406, 300 }, + [853] = { 32.6, 62.2, 406, 300 }, + [854] = { 73.4, 61.4, 406, 300 }, + [855] = { 72.4, 61.1, 406, 300 }, + [856] = { 72.1, 61.1, 406, 300 }, + [857] = { 71.8, 60.9, 406, 300 }, + [858] = { 73.9, 60.7, 406, 300 }, + [859] = { 72.9, 60.6, 406, 300 }, + [860] = { 73.2, 59.7, 406, 300 }, + [861] = { 66.6, 59.7, 406, 300 }, + [862] = { 73.1, 59, 406, 300 }, + [863] = { 38.1, 53.1, 406, 300 }, + [864] = { 35.8, 52.1, 406, 300 }, + [865] = { 72.3, 51.7, 406, 300 }, + [866] = { 76, 48.7, 406, 300 }, + [867] = { 76.5, 44.5, 406, 300 }, + [868] = { 54.9, 44.3, 406, 300 }, + [869] = { 54.2, 42, 406, 300 }, + [870] = { 47, 39.9, 406, 300 }, + [871] = { 67.7, 39.6, 406, 300 }, + [872] = { 50.4, 38.7, 406, 300 }, + [873] = { 64, 38.5, 406, 300 }, + [874] = { 48.3, 37.2, 406, 300 }, + [875] = { 52.9, 35.8, 406, 300 }, + [876] = { 49.3, 35.5, 406, 300 }, + [877] = { 44.3, 34.9, 406, 300 }, + [878] = { 49.3, 30.8, 406, 300 }, + [879] = { 45.4, 25.2, 406, 300 }, + [880] = { 46.9, 21.2, 406, 300 }, + [881] = { 38.3, 21.1, 406, 300 }, + [882] = { 35.6, 20.7, 406, 300 }, + [883] = { 32.7, 19.2, 406, 300 }, + [884] = { 44.8, 18.6, 406, 300 }, + [885] = { 58.3, 18.5, 406, 300 }, + [886] = { 40.2, 17.8, 406, 300 }, + [887] = { 35.1, 17.2, 406, 300 }, + [888] = { 44.2, 15.2, 406, 300 }, + [889] = { 34.6, 14.3, 406, 300 }, + [890] = { 41.1, 13.7, 406, 300 }, + [891] = { 30.3, 12, 406, 300 }, + [892] = { 30.4, 11.9, 406, 300 }, + [893] = { 34.6, 11.2, 406, 300 }, + [894] = { 40.7, 9, 406, 300 }, + [895] = { 41.8, 6.9, 406, 300 }, + }, + }, + [1733] = { + ["coords"] = { + [1] = { 7.6, 93.8, 3, 600 }, + [2] = { 7.4, 91.7, 3, 600 }, + [3] = { 8.9, 90.2, 3, 600 }, + [4] = { 7.5, 87.4, 3, 600 }, + [5] = { 25.3, 78.2, 3, 300 }, + [6] = { 42.3, 77.9, 3, 300 }, + [7] = { 51, 77.6, 3, 300 }, + [8] = { 32, 76.5, 3, 300 }, + [9] = { 45.1, 76.5, 3, 300 }, + [10] = { 56.9, 75.8, 3, 300 }, + [11] = { 36.7, 75.5, 3, 300 }, + [12] = { 18.5, 74.8, 3, 300 }, + [13] = { 61.7, 73.6, 3, 300 }, + [14] = { 22.6, 73.3, 3, 300 }, + [15] = { 64.6, 72, 3, 300 }, + [16] = { 24.8, 71.6, 3, 300 }, + [17] = { 18, 70.3, 3, 300 }, + [18] = { 26.7, 66.8, 3, 300 }, + [19] = { 41.4, 65.5, 3, 300 }, + [20] = { 20.1, 64.5, 3, 300 }, + [21] = { 63.5, 63.6, 3, 300 }, + [22] = { 20.2, 61.4, 3, 300 }, + [23] = { 23.7, 61.3, 3, 300 }, + [24] = { 28.7, 60.6, 3, 300 }, + [25] = { 42.5, 59.1, 3, 300 }, + [26] = { 12.9, 58.9, 3, 300 }, + [27] = { 49.4, 58.2, 3, 300 }, + [28] = { 10.8, 55.3, 3, 300 }, + [29] = { 45.9, 54.6, 3, 300 }, + [30] = { 15, 54.5, 3, 300 }, + [31] = { 35.6, 54.1, 3, 300 }, + [32] = { 30.8, 53.1, 3, 300 }, + [33] = { 34.3, 51.9, 3, 300 }, + [34] = { 40.7, 51.4, 3, 300 }, + [35] = { 44.4, 49.4, 3, 300 }, + [36] = { 14.8, 48.6, 3, 300 }, + [37] = { 37.6, 47.7, 3, 300 }, + [38] = { 52.1, 46.3, 3, 300 }, + [39] = { 58.9, 45.9, 3, 300 }, + [40] = { 32.3, 44.1, 3, 300 }, + [41] = { 65.4, 43.2, 3, 300 }, + [42] = { 52.4, 35.9, 3, 300 }, + [43] = { 15.5, 35.5, 3, 600 }, + [44] = { 14.9, 34.6, 3, 600 }, + [45] = { 16.5, 34.4, 3, 600 }, + [46] = { 59.5, 24.7, 3, 300 }, + [47] = { 56.2, 20.8, 3, 300 }, + [48] = { 39.3, 18.2, 3, 600 }, + [49] = { 38.6, 17.9, 3, 600 }, + [50] = { 52.5, 16.9, 3, 300 }, + [51] = { 40.2, 14, 3, 600 }, + [52] = { 54.2, 13.3, 3, 300 }, + [53] = { 40.9, 12.3, 3, 600 }, + [54] = { 43.7, 11.7, 3, 600 }, + [55] = { 72.6, 19.1, 4, 600 }, + [56] = { 72.8, 17.8, 4, 600 }, + [57] = { 71.8, 15.5, 4, 600 }, + [58] = { 71.4, 12.7, 4, 600 }, + [59] = { 73.1, 11.8, 4, 600 }, + [60] = { 76.1, 89.3, 8, 300 }, + [61] = { 71.8, 88.3, 8, 300 }, + [62] = { 63.5, 87.9, 8, 600 }, + [63] = { 66.5, 86.3, 8, 600 }, + [64] = { 62.1, 84.5, 8, 600 }, + [65] = { 68.9, 81.7, 8, 300 }, + [66] = { 61.5, 80.4, 8, 600 }, + [67] = { 64, 79.1, 8, 600 }, + [68] = { 66.5, 78.9, 8, 600 }, + [69] = { 64.5, 73.3, 8, 300 }, + [70] = { 13, 69.3, 8, 300 }, + [71] = { 10.4, 66, 8, 300 }, + [72] = { 23.7, 65.9, 8, 300 }, + [73] = { 57.8, 65.4, 8, 300 }, + [74] = { 17.7, 65.3, 8, 300 }, + [75] = { 27.7, 65.2, 8, 300 }, + [76] = { 30.2, 63.1, 8, 300 }, + [77] = { 10.6, 58.5, 8, 300 }, + [78] = { 17.7, 57.8, 8, 300 }, + [79] = { 21.5, 57.5, 8, 300 }, + [80] = { 5.9, 51.2, 8, 300 }, + [81] = { 74.5, 49.9, 8, 300 }, + [82] = { 65.7, 49.4, 8, 300 }, + [83] = { 71.4, 44.9, 8, 300 }, + [84] = { 28.8, 43.4, 8, 300 }, + [85] = { 15.7, 42.6, 8, 300 }, + [86] = { 18.4, 36.5, 8, 300 }, + [87] = { 23.5, 35.2, 8, 300 }, + [88] = { 7, 34.8, 8, 300 }, + [89] = { 14.9, 34.4, 8, 300 }, + [90] = { 5.5, 30.8, 8, 300 }, + [91] = { 13.3, 29.1, 8, 300 }, + [92] = { 38.8, 28.4, 8, 300 }, + [93] = { 51.9, 27.3, 8, 300 }, + [94] = { 61, 19.2, 8, 300 }, + [95] = { 72.2, 6.9, 8, 300 }, + [96] = { 37.3, 85, 10, 300 }, + [97] = { 63.3, 84.4, 10, 300 }, + [98] = { 37.3, 83.1, 10, 300 }, + [99] = { 62.2, 83, 10, 300 }, + [100] = { 61.7, 82.4, 10, 300 }, + [101] = { 58.9, 81.6, 10, 300 }, + [102] = { 35.9, 81.5, 10, 300 }, + [103] = { 36.5, 81.2, 10, 300 }, + [104] = { 25.2, 80.5, 10, 300 }, + [105] = { 23.9, 80.5, 10, 300 }, + [106] = { 74.1, 80.2, 10, 300 }, + [107] = { 36.4, 79.8, 10, 300 }, + [108] = { 73.6, 79.7, 10, 300 }, + [109] = { 49.9, 79.5, 10, 300 }, + [110] = { 63, 79.2, 10, 300 }, + [111] = { 74.4, 78.9, 10, 300 }, + [112] = { 62.1, 78.9, 10, 300 }, + [113] = { 37, 78.9, 10, 300 }, + [114] = { 35.5, 78.9, 10, 300 }, + [115] = { 73.6, 78.5, 10, 300 }, + [116] = { 65.6, 77.7, 10, 300 }, + [117] = { 71.2, 77.3, 10, 300 }, + [118] = { 74.2, 77.2, 10, 300 }, + [119] = { 36, 77.1, 10, 300 }, + [120] = { 33.6, 76.9, 10, 300 }, + [121] = { 56.7, 76.8, 10, 300 }, + [122] = { 73.7, 76.8, 10, 300 }, + [123] = { 35.9, 76.6, 10, 300 }, + [124] = { 32, 76.6, 10, 300 }, + [125] = { 73.7, 76.5, 10, 300 }, + [126] = { 40.4, 76.4, 10, 300 }, + [127] = { 30.4, 76.2, 10, 300 }, + [128] = { 80, 76, 10, 300 }, + [129] = { 72, 75.8, 10, 300 }, + [130] = { 32.8, 73.8, 10, 300 }, + [131] = { 67.5, 71.9, 10, 300 }, + [132] = { 30.5, 71.4, 10, 300 }, + [133] = { 51, 71.2, 10, 300 }, + [134] = { 82.7, 70.8, 10, 300 }, + [135] = { 50.6, 63.2, 10, 300 }, + [136] = { 81.8, 62.9, 10, 300 }, + [137] = { 57.9, 61.3, 10, 300 }, + [138] = { 46.6, 60.2, 10, 300 }, + [139] = { 84.1, 58.3, 10, 300 }, + [140] = { 59.9, 56.2, 10, 300 }, + [141] = { 52.6, 55.5, 10, 300 }, + [142] = { 85.5, 54, 10, 300 }, + [143] = { 64.5, 53.4, 10, 300 }, + [144] = { 64, 52.5, 10, 300 }, + [145] = { 67.4, 51.5, 10, 300 }, + [146] = { 84.9, 50.9, 10, 300 }, + [147] = { 85.9, 49.1, 10, 300 }, + [148] = { 87.2, 49.1, 10, 300 }, + [149] = { 36.4, 49.1, 10, 300 }, + [150] = { 68.2, 47.7, 10, 300 }, + [151] = { 86.7, 47.3, 10, 300 }, + [152] = { 85.9, 47, 10, 300 }, + [153] = { 57.7, 46.8, 10, 300 }, + [154] = { 67.9, 42.6, 10, 300 }, + [155] = { 35.3, 41.6, 10, 300 }, + [156] = { 68.7, 40.7, 10, 300 }, + [157] = { 79.5, 40.5, 10, 300 }, + [158] = { 59.8, 40, 10, 300 }, + [159] = { 77.3, 38.8, 10, 300 }, + [160] = { 26.7, 37.7, 10, 300 }, + [161] = { 58.6, 37.7, 10, 300 }, + [162] = { 82.9, 35.9, 10, 300 }, + [163] = { 25.9, 34, 10, 300 }, + [164] = { 85.2, 32.5, 10, 300 }, + [165] = { 36, 31.9, 10, 300 }, + [166] = { 57.1, 31.5, 10, 300 }, + [167] = { 78.7, 29, 10, 300 }, + [168] = { 81.2, 28.7, 10, 300 }, + [169] = { 41.6, 24.7, 10, 300 }, + [170] = { 51.3, 22.4, 10, 300 }, + [171] = { 61.5, 80, 11, 300 }, + [172] = { 63.9, 78.7, 11, 300 }, + [173] = { 55.4, 78.1, 11, 300 }, + [174] = { 63, 77.8, 11, 300 }, + [175] = { 64.7, 76.3, 11, 300 }, + [176] = { 54.1, 76.2, 11, 300 }, + [177] = { 57.5, 75.7, 11, 300 }, + [178] = { 65.1, 75.1, 11, 300 }, + [179] = { 68, 74.8, 11, 300 }, + [180] = { 66.6, 74.8, 11, 300 }, + [181] = { 60, 74.3, 11, 300 }, + [182] = { 67.9, 69.6, 11, 300 }, + [183] = { 53.4, 66.9, 11, 300 }, + [184] = { 66.6, 66.5, 11, 300 }, + [185] = { 45.8, 65.1, 11, 300 }, + [186] = { 48.7, 63.1, 11, 300 }, + [187] = { 50, 62.9, 11, 300 }, + [188] = { 53.1, 62.7, 11, 300 }, + [189] = { 47.2, 62.6, 11, 300 }, + [190] = { 54, 62.1, 11, 300 }, + [191] = { 66.6, 62, 11, 300 }, + [192] = { 50.6, 61.3, 11, 300 }, + [193] = { 51.1, 61.1, 11, 300 }, + [194] = { 49.1, 61, 11, 300 }, + [195] = { 48.5, 60.3, 11, 300 }, + [196] = { 45.7, 60.1, 11, 300 }, + [197] = { 47.5, 60, 11, 300 }, + [198] = { 50.7, 59.2, 11, 300 }, + [199] = { 55.9, 58.7, 11, 300 }, + [200] = { 54.3, 58.7, 11, 300 }, + [201] = { 50.5, 58.4, 11, 300 }, + [202] = { 54.1, 57.7, 11, 300 }, + [203] = { 67.7, 56.3, 11, 300 }, + [204] = { 53.4, 55.7, 11, 300 }, + [205] = { 49.4, 52.2, 11, 300 }, + [206] = { 53.2, 52.1, 11, 300 }, + [207] = { 33.4, 51.1, 11, 300 }, + [208] = { 48.6, 50.3, 11, 300 }, + [209] = { 51.8, 50.3, 11, 300 }, + [210] = { 36.5, 48.6, 11, 300 }, + [211] = { 45.4, 47.8, 11, 300 }, + [212] = { 32.6, 47.4, 11, 300 }, + [213] = { 51.7, 46.5, 11, 300 }, + [214] = { 41.9, 46.2, 11, 300 }, + [215] = { 35.9, 45.5, 11, 300 }, + [216] = { 38.1, 45.4, 11, 300 }, + [217] = { 48.6, 44.8, 11, 300 }, + [218] = { 32.6, 44.3, 11, 300 }, + [219] = { 37.7, 43.3, 11, 300 }, + [220] = { 48.4, 43.3, 11, 300 }, + [221] = { 47.3, 43, 11, 300 }, + [222] = { 66, 39.4, 11, 300 }, + [223] = { 68, 37.7, 11, 300 }, + [224] = { 67.9, 37.6, 11, 300 }, + [225] = { 69.5, 35.2, 11, 300 }, + [226] = { 69.4, 34, 11, 300 }, + [227] = { 66, 33.9, 11, 300 }, + [228] = { 69.4, 33.1, 11, 300 }, + [229] = { 67.8, 32, 11, 300 }, + [230] = { 70.4, 32, 11, 300 }, + [231] = { 69.3, 31.1, 11, 300 }, + [232] = { 68.5, 31.1, 11, 300 }, + [233] = { 64.9, 30.9, 11, 300 }, + [234] = { 70.2, 30.7, 11, 300 }, + [235] = { 67.2, 30.4, 11, 300 }, + [236] = { 71.1, 29.9, 11, 300 }, + [237] = { 68.9, 29.7, 11, 300 }, + [238] = { 69.7, 28.8, 11, 300 }, + [239] = { 69, 28.6, 11, 300 }, + [240] = { 67.3, 28.2, 11, 300 }, + [241] = { 70.5, 28.2, 11, 300 }, + [242] = { 68.8, 27.5, 11, 300 }, + [243] = { 64.2, 26.7, 11, 300 }, + [244] = { 63, 25.2, 11, 300 }, + [245] = { 61.5, 24, 11, 300 }, + [246] = { 43.6, 22.6, 11, 300 }, + [247] = { 60.6, 21.1, 11, 300 }, + [248] = { 39.3, 18.5, 11, 300 }, + [249] = { 37.9, 17.6, 11, 300 }, + [250] = { 34.1, 15.2, 11, 300 }, + [251] = { 33, 7.7, 11, 300 }, + [252] = { 33.5, 72.4, 15, 300 }, + [253] = { 38.3, 68.4, 15, 600 }, + [254] = { 37.6, 68.2, 15, 600 }, + [255] = { 38.6, 67.1, 15, 600 }, + [256] = { 38.7, 66.1, 15, 600 }, + [257] = { 31.4, 66, 15, 600 }, + [258] = { 30.9, 65.8, 15, 600 }, + [259] = { 31.1, 65.7, 15, 600 }, + [260] = { 25.5, 65.6, 15, 300 }, + [261] = { 26.5, 63, 15, 300 }, + [262] = { 52.4, 62, 15, 300 }, + [263] = { 54.4, 59.6, 15, 300 }, + [264] = { 25.5, 56.6, 15, 300 }, + [265] = { 55.5, 52.7, 15, 300 }, + [266] = { 33.3, 50, 15, 300 }, + [267] = { 52.2, 49.6, 15, 300 }, + [268] = { 54.5, 46.5, 15, 300 }, + [269] = { 47.3, 45, 15, 300 }, + [270] = { 49.4, 45, 15, 300 }, + [271] = { 45.5, 40.7, 15, 300 }, + [272] = { 49.1, 39.3, 15, 300 }, + [273] = { 54.6, 35.6, 15, 300 }, + [274] = { 48.1, 34.5, 15, 300 }, + [275] = { 46.3, 33.1, 15, 300 }, + [276] = { 44.7, 29.1, 15, 300 }, + [277] = { 26.5, 28.7, 15, 300 }, + [278] = { 39.9, 27.3, 15, 300 }, + [279] = { 48.3, 26.8, 15, 300 }, + [280] = { 32.5, 23.3, 15, 600 }, + [281] = { 31.2, 22.6, 15, 600 }, + [282] = { 59.8, 22.5, 15, 300 }, + [283] = { 33.2, 22.4, 15, 600 }, + [284] = { 31.4, 21.7, 15, 600 }, + [285] = { 30.2, 21.7, 15, 600 }, + [286] = { 31.1, 21.6, 15, 600 }, + [287] = { 58, 20.4, 15, 300 }, + [288] = { 31.3, 20.4, 15, 600 }, + [289] = { 34.6, 20.1, 15, 300 }, + [290] = { 55.8, 19.5, 15, 300 }, + [291] = { 63.3, 18.9, 15, 300 }, + [292] = { 62.1, 18.1, 15, 300 }, + [293] = { 50.9, 17.1, 15, 300 }, + [294] = { 46.6, 15.8, 15, 300 }, + [295] = { 53.6, 15, 15, 300 }, + [296] = { 48.3, 14.1, 15, 300 }, + [297] = { 35.6, 13.7, 15, 300 }, + [298] = { 37.3, 12.4, 15, 300 }, + [299] = { 41.7, 9.2, 15, 300 }, + [300] = { 59.9, 8.4, 15, 300 }, + [301] = { 63.3, 6.9, 15, 300 }, + [302] = { 49.5, 98.9, 17, 300 }, + [303] = { 49.6, 98.5, 17, 300 }, + [304] = { 49.3, 98.4, 17, 300 }, + [305] = { 48.5, 98.3, 17, 300 }, + [306] = { 48.5, 97.8, 17, 300 }, + [307] = { 48.9, 97.7, 17, 300 }, + [308] = { 47.2, 97.2, 17, 300 }, + [309] = { 49.4, 97.1, 17, 300 }, + [310] = { 45.7, 97.1, 17, 300 }, + [311] = { 48.6, 97.1, 17, 300 }, + [312] = { 49, 96.9, 17, 300 }, + [313] = { 48.2, 96.9, 17, 300 }, + [314] = { 49.1, 96.8, 17, 300 }, + [315] = { 46.9, 96.8, 17, 300 }, + [316] = { 48.7, 96.6, 17, 300 }, + [317] = { 48.6, 96.1, 17, 300 }, + [318] = { 45.9, 95.9, 17, 300 }, + [319] = { 46.3, 95.8, 17, 300 }, + [320] = { 42.1, 95.3, 17, 300 }, + [321] = { 40.8, 95.2, 17, 300 }, + [322] = { 45.5, 95.1, 17, 300 }, + [323] = { 42.4, 94.8, 17, 300 }, + [324] = { 45.2, 94.5, 17, 300 }, + [325] = { 45.2, 93.8, 17, 300 }, + [326] = { 40.6, 93.2, 17, 300 }, + [327] = { 40.5, 92.3, 17, 300 }, + [328] = { 52.9, 91.5, 17, 300 }, + [329] = { 55.4, 89.4, 17, 600 }, + [330] = { 55, 89.3, 17, 600 }, + [331] = { 51.8, 88.2, 17, 600 }, + [332] = { 51.5, 88.1, 17, 600 }, + [333] = { 51.6, 88, 17, 600 }, + [334] = { 48.7, 88, 17, 300 }, + [335] = { 49.2, 86.6, 17, 300 }, + [336] = { 43.4, 84.2, 17, 300 }, + [337] = { 43.2, 83.5, 17, 300 }, + [338] = { 48.7, 83.3, 17, 300 }, + [339] = { 48.7, 82.3, 17, 300 }, + [340] = { 48.7, 80.5, 17, 300 }, + [341] = { 52.8, 79.9, 17, 300 }, + [342] = { 43.9, 78.3, 17, 300 }, + [343] = { 42.1, 77.8, 17, 300 }, + [344] = { 43.6, 76.8, 17, 300 }, + [345] = { 43.4, 74.6, 17, 300 }, + [346] = { 48.5, 71.5, 17, 300 }, + [347] = { 49.2, 68.8, 17, 300 }, + [348] = { 45.2, 68.7, 17, 300 }, + [349] = { 47.4, 68.7, 17, 300 }, + [350] = { 48, 66.7, 17, 300 }, + [351] = { 52.4, 66, 17, 600 }, + [352] = { 51.6, 65.7, 17, 600 }, + [353] = { 52.7, 65.5, 17, 600 }, + [354] = { 51.8, 65.2, 17, 600 }, + [355] = { 51.2, 65.2, 17, 600 }, + [356] = { 51.6, 65.1, 17, 600 }, + [357] = { 51.7, 64.5, 17, 600 }, + [358] = { 53.4, 64.4, 17, 300 }, + [359] = { 48.9, 64.1, 17, 300 }, + [360] = { 60.5, 61.2, 17, 300 }, + [361] = { 53.9, 61.1, 17, 300 }, + [362] = { 54.8, 60.4, 17, 300 }, + [363] = { 57.1, 58.7, 17, 300 }, + [364] = { 66.5, 58.3, 17, 300 }, + [365] = { 68.3, 57.5, 17, 300 }, + [366] = { 50.9, 57.4, 17, 300 }, + [367] = { 62.2, 55.1, 17, 300 }, + [368] = { 43, 54.8, 17, 300 }, + [369] = { 51.4, 54.7, 17, 300 }, + [370] = { 45.1, 54.4, 17, 300 }, + [371] = { 51.5, 52.6, 17, 300 }, + [372] = { 61.1, 51.4, 17, 300 }, + [373] = { 51.6, 51.4, 17, 300 }, + [374] = { 44.5, 51.3, 17, 300 }, + [375] = { 62.2, 51, 17, 300 }, + [376] = { 63.2, 50.8, 17, 300 }, + [377] = { 48.6, 49.5, 17, 300 }, + [378] = { 64.2, 49.5, 17, 300 }, + [379] = { 49.7, 48.6, 17, 300 }, + [380] = { 48.5, 48.4, 17, 300 }, + [381] = { 51.7, 48.2, 17, 300 }, + [382] = { 46.1, 45, 17, 300 }, + [383] = { 55.3, 43, 17, 300 }, + [384] = { 44.6, 42.1, 17, 300 }, + [385] = { 42.7, 42.1, 17, 300 }, + [386] = { 42.7, 41.1, 17, 300 }, + [387] = { 47.4, 40, 17, 300 }, + [388] = { 46.2, 37.6, 17, 300 }, + [389] = { 47.1, 30.6, 17, 300 }, + [390] = { 41.6, 29.7, 17, 300 }, + [391] = { 43.8, 27.5, 17, 300 }, + [392] = { 44, 26.6, 17, 300 }, + [393] = { 57, 25.5, 17, 300 }, + [394] = { 44.9, 25.1, 17, 300 }, + [395] = { 39.5, 23.6, 17, 300 }, + [396] = { 44.7, 23.5, 17, 300 }, + [397] = { 40.1, 22.1, 17, 300 }, + [398] = { 32.5, 21.4, 17, 300 }, + [399] = { 39.8, 19.4, 17, 300 }, + [400] = { 53.8, 19.1, 17, 300 }, + [401] = { 57.8, 18.6, 17, 300 }, + [402] = { 55.5, 17.3, 17, 300 }, + [403] = { 54.3, 17.3, 17, 300 }, + [404] = { 57.8, 16.1, 17, 300 }, + [405] = { 47.9, 15.9, 17, 300 }, + [406] = { 49.1, 15.8, 17, 300 }, + [407] = { 46.5, 15.5, 17, 300 }, + [408] = { 48.6, 14.8, 17, 300 }, + [409] = { 42.7, 13.7, 17, 300 }, + [410] = { 43.5, 13.6, 17, 300 }, + [411] = { 46.4, 12.8, 17, 300 }, + [412] = { 45.2, 12.2, 17, 300 }, + [413] = { 43.6, 12.1, 17, 300 }, + [414] = { 47.1, 12, 17, 300 }, + [415] = { 50.1, 11.9, 17, 300 }, + [416] = { 50.9, 11.6, 17, 300 }, + [417] = { 38.9, 10.8, 17, 300 }, + [418] = { 59.2, 8.7, 17, 300 }, + [419] = { 54.7, 7.2, 17, 300 }, + [420] = { 57.5, 6, 17, 300 }, + [421] = { 56, 3.9, 17, 300 }, + [422] = { 54.8, 0.8, 17, 300 }, + [423] = { 48.9, 98.4, 28, 300 }, + [424] = { 41.5, 93.4, 28, 300 }, + [425] = { 34.7, 92.1, 28, 300 }, + [426] = { 33.5, 87.9, 28, 300 }, + [427] = { 31, 83.6, 28, 300 }, + [428] = { 29.7, 80.8, 28, 300 }, + [429] = { 29.8, 68.9, 33, 300 }, + [430] = { 32.8, 68.2, 33, 300 }, + [431] = { 32.1, 65.6, 33, 300 }, + [432] = { 31.4, 65.3, 33, 300 }, + [433] = { 35.6, 64.3, 33, 300 }, + [434] = { 34.8, 64.1, 33, 300 }, + [435] = { 36.9, 63.8, 33, 300 }, + [436] = { 33.6, 62, 33, 300 }, + [437] = { 36.7, 61.9, 33, 300 }, + [438] = { 29.4, 60.1, 33, 300 }, + [439] = { 35.7, 58.9, 33, 300 }, + [440] = { 40.8, 57.1, 33, 300 }, + [441] = { 38, 56.7, 33, 300 }, + [442] = { 37, 56.5, 33, 300 }, + [443] = { 35.1, 56.4, 33, 300 }, + [444] = { 24.7, 55.3, 33, 300 }, + [445] = { 30.2, 52.9, 33, 300 }, + [446] = { 25.2, 52.5, 33, 300 }, + [447] = { 43.8, 49.4, 33, 600 }, + [448] = { 43.2, 49.4, 33, 600 }, + [449] = { 42.4, 48.6, 33, 600 }, + [450] = { 42.5, 47.8, 33, 600 }, + [451] = { 42.2, 46.2, 33, 600 }, + [452] = { 43.7, 46.1, 33, 600 }, + [453] = { 43, 45.9, 33, 600 }, + [454] = { 39.9, 45.6, 33, 300 }, + [455] = { 40.3, 43.8, 33, 300 }, + [456] = { 41.4, 43.8, 33, 300 }, + [457] = { 33.1, 42.6, 33, 300 }, + [458] = { 41.3, 42.4, 33, 300 }, + [459] = { 28.7, 40.8, 33, 300 }, + [460] = { 45, 38.5, 33, 300 }, + [461] = { 47.6, 38.3, 33, 300 }, + [462] = { 41.9, 37, 33, 300 }, + [463] = { 51, 36.6, 33, 300 }, + [464] = { 39.4, 36, 33, 300 }, + [465] = { 37.6, 35.4, 33, 300 }, + [466] = { 35.4, 34.6, 33, 300 }, + [467] = { 49.9, 30.4, 33, 300 }, + [468] = { 47.9, 28.6, 33, 300 }, + [469] = { 50, 28.4, 33, 300 }, + [470] = { 51.3, 28.2, 33, 600 }, + [471] = { 50.1, 28.2, 33, 600 }, + [472] = { 50.4, 27.9, 33, 600 }, + [473] = { 50.8, 27.8, 33, 600 }, + [474] = { 50.3, 27.2, 33, 600 }, + [475] = { 51, 26.9, 33, 600 }, + [476] = { 51.2, 26.4, 33, 600 }, + [477] = { 52, 26.4, 33, 600 }, + [478] = { 44.6, 26, 33, 300 }, + [479] = { 51, 25, 33, 300 }, + [480] = { 47, 22.6, 33, 300 }, + [481] = { 49.8, 20.7, 33, 300 }, + [482] = { 47.2, 20.3, 33, 300 }, + [483] = { 26.3, 18, 33, 300 }, + [484] = { 27.6, 18, 33, 300 }, + [485] = { 30, 17.7, 33, 300 }, + [486] = { 32, 17.7, 33, 300 }, + [487] = { 46.2, 17.1, 33, 300 }, + [488] = { 25.7, 15.4, 33, 300 }, + [489] = { 29.3, 15.3, 33, 300 }, + [490] = { 50.6, 14.9, 33, 300 }, + [491] = { 41.5, 14.3, 33, 300 }, + [492] = { 34.2, 14.2, 33, 300 }, + [493] = { 38.8, 13.9, 33, 300 }, + [494] = { 37.6, 13.8, 33, 300 }, + [495] = { 43.4, 13.8, 33, 300 }, + [496] = { 31.3, 13.8, 33, 300 }, + [497] = { 27.4, 13.6, 33, 300 }, + [498] = { 49.7, 13.6, 33, 300 }, + [499] = { 45.5, 13.2, 33, 300 }, + [500] = { 37, 12.9, 33, 300 }, + [501] = { 44.9, 12.8, 33, 300 }, + [502] = { 32.1, 12.4, 33, 300 }, + [503] = { 29.8, 12.1, 33, 300 }, + [504] = { 43.4, 11.4, 33, 300 }, + [505] = { 42.8, 10, 33, 300 }, + [506] = { 31.3, 9.5, 33, 300 }, + [507] = { 49.2, 9, 33, 300 }, + [508] = { 49.2, 8.8, 33, 600 }, + [509] = { 42.4, 8.4, 33, 300 }, + [510] = { 46.1, 8.3, 33, 600 }, + [511] = { 48.3, 8.2, 33, 300 }, + [512] = { 49, 8, 33, 600 }, + [513] = { 27.3, 7.9, 33, 300 }, + [514] = { 37.8, 7.8, 33, 300 }, + [515] = { 30.5, 7.6, 33, 300 }, + [516] = { 46.5, 7.5, 33, 600 }, + [517] = { 49.7, 7.1, 33, 600 }, + [518] = { 28.9, 7, 33, 300 }, + [519] = { 47.2, 7, 33, 600 }, + [520] = { 48.5, 6.9, 33, 600 }, + [521] = { 36.3, 6.9, 33, 300 }, + [522] = { 39.8, 6.6, 33, 300 }, + [523] = { 46.1, 6.5, 33, 600 }, + [524] = { 33.1, 6.4, 33, 300 }, + [525] = { 48.9, 6.4, 33, 600 }, + [526] = { 34.4, 6.3, 33, 300 }, + [527] = { 46.7, 5.7, 33, 600 }, + [528] = { 49.6, 5.6, 33, 600 }, + [529] = { 47.8, 5.4, 33, 600 }, + [530] = { 37.5, 1.8, 33, 300 }, + [531] = { 48.5, 1.6, 33, 300 }, + [532] = { 37.5, 1, 33, 300 }, + [533] = { 39.5, 98.5, 36, 300 }, + [534] = { 41, 97.4, 36, 300 }, + [535] = { 38.7, 97.3, 36, 600 }, + [536] = { 72.3, 96.7, 36, 300 }, + [537] = { 70.8, 96.3, 36, 300 }, + [538] = { 64.4, 95.2, 36, 300 }, + [539] = { 42.8, 95.1, 36, 600 }, + [540] = { 40, 94.9, 36, 600 }, + [541] = { 35.8, 94.7, 36, 300 }, + [542] = { 37.6, 94.6, 36, 600 }, + [543] = { 14.4, 94, 36, 300 }, + [544] = { 41.5, 94, 36, 600 }, + [545] = { 66.2, 93.5, 36, 300 }, + [546] = { 39.8, 93.3, 36, 600 }, + [547] = { 48, 92.5, 36, 300 }, + [548] = { 69.9, 92.3, 36, 300 }, + [549] = { 31.3, 91.4, 36, 300 }, + [550] = { 40.7, 91.1, 36, 600 }, + [551] = { 51.4, 90.9, 36, 300 }, + [552] = { 39.1, 90.6, 36, 600 }, + [553] = { 40.6, 90.4, 36, 600 }, + [554] = { 14.6, 90.3, 36, 300 }, + [555] = { 27.2, 89.8, 36, 300 }, + [556] = { 41.8, 89.7, 36, 600 }, + [557] = { 35.1, 89.3, 36, 300 }, + [558] = { 45.7, 89.2, 36, 300 }, + [559] = { 13.7, 89, 36, 300 }, + [560] = { 39.2, 88.7, 36, 600 }, + [561] = { 32.8, 88.7, 36, 300 }, + [562] = { 42.4, 88.5, 36, 300 }, + [563] = { 63.6, 88.4, 36, 300 }, + [564] = { 33.3, 87.3, 36, 300 }, + [565] = { 52.6, 86, 36, 300 }, + [566] = { 76.6, 85.2, 36, 300 }, + [567] = { 27.2, 84.6, 36, 300 }, + [568] = { 44.4, 84.2, 36, 300 }, + [569] = { 13.1, 82.6, 36, 300 }, + [570] = { 35.9, 82, 36, 300 }, + [571] = { 52.2, 81.6, 36, 300 }, + [572] = { 29.2, 81.4, 36, 300 }, + [573] = { 11.4, 81.2, 36, 300 }, + [574] = { 33.3, 79.7, 36, 300 }, + [575] = { 72.5, 79.6, 36, 300 }, + [576] = { 50.9, 77.8, 36, 300 }, + [577] = { 72, 77.6, 36, 300 }, + [578] = { 63.8, 76.4, 36, 300 }, + [579] = { 30.8, 76.3, 36, 300 }, + [580] = { 66, 75.7, 36, 300 }, + [581] = { 57.9, 74.3, 36, 300 }, + [582] = { 50.8, 74.2, 36, 300 }, + [583] = { 8.7, 73, 36, 300 }, + [584] = { 41, 72.8, 36, 300 }, + [585] = { 61, 72.7, 36, 300 }, + [586] = { 56.2, 72.5, 36, 300 }, + [587] = { 63.9, 72.1, 36, 300 }, + [588] = { 66, 70.3, 36, 300 }, + [589] = { 6.5, 70, 36, 300 }, + [590] = { 61.8, 69.9, 36, 300 }, + [591] = { 55, 68.7, 36, 300 }, + [592] = { 67.6, 68.5, 36, 300 }, + [593] = { 30.6, 68.3, 36, 300 }, + [594] = { 37.1, 68, 36, 600 }, + [595] = { 38.1, 67.8, 36, 600 }, + [596] = { 36.8, 67.3, 36, 600 }, + [597] = { 28.4, 67.2, 36, 300 }, + [598] = { 61.7, 67.2, 36, 300 }, + [599] = { 38.2, 67.1, 36, 600 }, + [600] = { 29.6, 66.2, 36, 300 }, + [601] = { 46.1, 66.1, 36, 300 }, + [602] = { 37.9, 66, 36, 600 }, + [603] = { 37.2, 65.8, 36, 600 }, + [604] = { 66.6, 63.9, 36, 300 }, + [605] = { 65.9, 63.2, 36, 300 }, + [606] = { 32.6, 61.3, 36, 300 }, + [607] = { 37.7, 61, 36, 300 }, + [608] = { 6.4, 60.6, 36, 300 }, + [609] = { 52, 58.2, 36, 300 }, + [610] = { 85.3, 56.5, 36, 300 }, + [611] = { 60.3, 56.5, 36, 300 }, + [612] = { 27.7, 56.3, 36, 300 }, + [613] = { 33.7, 55.3, 36, 300 }, + [614] = { 63.4, 55.1, 36, 300 }, + [615] = { 75.3, 54.6, 36, 300 }, + [616] = { 31.8, 53.6, 36, 300 }, + [617] = { 77.7, 53.4, 36, 300 }, + [618] = { 41.5, 52.2, 36, 300 }, + [619] = { 67.2, 51.9, 36, 300 }, + [620] = { 88.2, 51.1, 36, 300 }, + [621] = { 27.1, 51.1, 36, 300 }, + [622] = { 43.6, 50.9, 36, 300 }, + [623] = { 63.6, 49.3, 36, 300 }, + [624] = { 53.1, 49.2, 36, 600 }, + [625] = { 51.2, 48.5, 36, 600 }, + [626] = { 51.2, 47.3, 36, 600 }, + [627] = { 52.5, 47.2, 36, 600 }, + [628] = { 53.9, 46.8, 36, 300 }, + [629] = { 52.9, 46.5, 36, 600 }, + [630] = { 18.4, 45.9, 36, 300 }, + [631] = { 54.2, 45.9, 36, 600 }, + [632] = { 51.2, 45.8, 36, 600 }, + [633] = { 49.1, 45.6, 36, 600 }, + [634] = { 52.8, 45, 36, 600 }, + [635] = { 49.1, 44.8, 36, 600 }, + [636] = { 42.9, 44.6, 36, 300 }, + [637] = { 49.2, 44.5, 36, 600 }, + [638] = { 51.3, 43.9, 36, 600 }, + [639] = { 76.9, 43.5, 36, 300 }, + [640] = { 51.1, 42, 36, 300 }, + [641] = { 66.4, 41.5, 36, 300 }, + [642] = { 32.9, 39.9, 36, 300 }, + [643] = { 40.3, 38.6, 36, 300 }, + [644] = { 44.3, 38.5, 36, 300 }, + [645] = { 38.6, 37.4, 36, 300 }, + [646] = { 64.5, 35, 36, 300 }, + [647] = { 47.5, 34.3, 36, 600 }, + [648] = { 47.1, 33.8, 36, 600 }, + [649] = { 48.5, 32.8, 36, 600 }, + [650] = { 48, 32.1, 36, 600 }, + [651] = { 40.2, 30.7, 36, 300 }, + [652] = { 56.8, 29.8, 36, 300 }, + [653] = { 60.7, 28.4, 36, 300 }, + [654] = { 50.6, 27, 36, 300 }, + [655] = { 41.9, 24.8, 36, 300 }, + [656] = { 58.7, 24.1, 36, 300 }, + [657] = { 54.5, 20, 36, 300 }, + [658] = { 44.4, 15.2, 36, 300 }, + [659] = { 40.9, 15, 36, 300 }, + [660] = { 38.4, 10.6, 36, 300 }, + [661] = { 37.9, 92.3, 38, 600 }, + [662] = { 34.5, 91.7, 38, 300 }, + [663] = { 36.8, 91.6, 38, 600 }, + [664] = { 33.3, 89.2, 38, 600 }, + [665] = { 39.4, 88.8, 38, 600 }, + [666] = { 52, 88.2, 38, 300 }, + [667] = { 29.8, 87.5, 38, 300 }, + [668] = { 40, 87.3, 38, 600 }, + [669] = { 33.2, 87, 38, 300 }, + [670] = { 37.7, 86.8, 38, 600 }, + [671] = { 42.5, 86.8, 38, 600 }, + [672] = { 27.1, 85.6, 38, 300 }, + [673] = { 72.9, 73.7, 38, 300 }, + [674] = { 80.2, 73.6, 38, 300 }, + [675] = { 63.3, 71.5, 38, 300 }, + [676] = { 77.5, 70.6, 38, 300 }, + [677] = { 57.3, 69.5, 38, 300 }, + [678] = { 68.4, 68, 38, 300 }, + [679] = { 70.9, 65.8, 38, 300 }, + [680] = { 76.3, 65.4, 38, 300 }, + [681] = { 72.4, 65, 38, 300 }, + [682] = { 70, 63.4, 38, 300 }, + [683] = { 69.2, 62.6, 38, 300 }, + [684] = { 27.5, 59.2, 38, 300 }, + [685] = { 72.5, 53.4, 38, 300 }, + [686] = { 25.4, 47.5, 38, 300 }, + [687] = { 78.9, 46.8, 38, 300 }, + [688] = { 69, 46.6, 38, 300 }, + [689] = { 80, 39.7, 38, 300 }, + [690] = { 68.8, 32.1, 38, 300 }, + [691] = { 22.7, 31.5, 38, 300 }, + [692] = { 72.1, 28.1, 38, 300 }, + [693] = { 78.2, 27.4, 38, 300 }, + [694] = { 74.1, 25.6, 38, 300 }, + [695] = { 75.6, 24.6, 38, 300 }, + [696] = { 76.3, 18.5, 38, 300 }, + [697] = { 68, 18.5, 38, 300 }, + [698] = { 79, 16.3, 38, 300 }, + [699] = { 74.8, 15.9, 38, 300 }, + [700] = { 61.9, 15.5, 38, 300 }, + [701] = { 35.1, 15, 38, 300 }, + [702] = { 79.4, 14.1, 38, 300 }, + [703] = { 59.7, 13.7, 38, 300 }, + [704] = { 76.9, 13.7, 38, 300 }, + [705] = { 37.7, 83.7, 40, 300 }, + [706] = { 38.7, 82.5, 40, 300 }, + [707] = { 43.9, 81.5, 40, 300 }, + [708] = { 41.3, 79.9, 40, 300 }, + [709] = { 40.6, 79.4, 40, 300 }, + [710] = { 43.5, 79.1, 40, 300 }, + [711] = { 41.5, 78.8, 40, 300 }, + [712] = { 41.6, 78.8, 40, 300 }, + [713] = { 40.5, 78.6, 40, 300 }, + [714] = { 43.2, 78.3, 40, 300 }, + [715] = { 44.2, 77.2, 40, 300 }, + [716] = { 43.7, 76.5, 40, 300 }, + [717] = { 67.5, 75.9, 40, 300 }, + [718] = { 49.4, 75.9, 40, 300 }, + [719] = { 58.2, 75.4, 40, 300 }, + [720] = { 39.6, 74.3, 40, 300 }, + [721] = { 53, 72.6, 40, 300 }, + [722] = { 32.2, 60.1, 40, 300 }, + [723] = { 28.8, 50.9, 40, 300 }, + [724] = { 29.8, 50.7, 40, 300 }, + [725] = { 30.8, 48.6, 40, 300 }, + [726] = { 30.7, 46.6, 40, 300 }, + [727] = { 30, 46.5, 40, 300 }, + [728] = { 29.2, 45.6, 40, 300 }, + [729] = { 33, 45.5, 40, 300 }, + [730] = { 31.5, 45.1, 40, 300 }, + [731] = { 31.9, 41.8, 40, 300 }, + [732] = { 29.4, 40.9, 40, 300 }, + [733] = { 27.9, 33, 40, 300 }, + [734] = { 32, 30.9, 40, 300 }, + [735] = { 44.5, 23.9, 40, 300 }, + [736] = { 44.6, 22.6, 40, 300 }, + [737] = { 45.6, 21.7, 40, 300 }, + [738] = { 45.9, 20.6, 40, 300 }, + [739] = { 44.5, 20.4, 40, 300 }, + [740] = { 46.3, 19.7, 40, 300 }, + [741] = { 45.3, 18, 40, 300 }, + [742] = { 76.3, 84.4, 44, 300 }, + [743] = { 73.1, 83.4, 44, 300 }, + [744] = { 64.8, 78.8, 44, 300 }, + [745] = { 52.9, 77.8, 44, 300 }, + [746] = { 71.1, 76.4, 44, 300 }, + [747] = { 64.3, 73, 44, 300 }, + [748] = { 59.3, 71.3, 44, 300 }, + [749] = { 70.4, 71, 44, 300 }, + [750] = { 79.7, 67.4, 44, 300 }, + [751] = { 62.4, 66.2, 44, 300 }, + [752] = { 76.8, 63.5, 44, 300 }, + [753] = { 86.2, 61.8, 44, 300 }, + [754] = { 65.1, 58.6, 44, 300 }, + [755] = { 65.3, 53.8, 44, 300 }, + [756] = { 87.6, 51.3, 44, 300 }, + [757] = { 72.2, 51.2, 44, 300 }, + [758] = { 67.4, 48, 44, 300 }, + [759] = { 59.9, 47, 44, 300 }, + [760] = { 53.6, 46.9, 44, 300 }, + [761] = { 77.9, 45.9, 44, 300 }, + [762] = { 83.3, 42.1, 44, 300 }, + [763] = { 40.1, 41.7, 44, 300 }, + [764] = { 21.1, 39.1, 44, 300 }, + [765] = { 28.8, 37.3, 44, 300 }, + [766] = { 56.5, 37, 44, 300 }, + [767] = { 39.5, 35, 44, 300 }, + [768] = { 74.1, 34.7, 44, 300 }, + [769] = { 18.7, 33.3, 44, 300 }, + [770] = { 36.8, 30.2, 44, 300 }, + [771] = { 27.2, 29.7, 44, 300 }, + [772] = { 19.3, 26.8, 44, 300 }, + [773] = { 36, 24.7, 44, 300 }, + [774] = { 23.4, 24.7, 44, 300 }, + [775] = { 20.5, 22.5, 44, 300 }, + [776] = { 33, 21.1, 44, 300 }, + [777] = { 28.1, 20.4, 44, 300 }, + [778] = { 28.4, 17.4, 44, 300 }, + [779] = { 29.2, 16.8, 44, 300 }, + [780] = { 22.6, 16.7, 44, 300 }, + [781] = { 27.9, 16.2, 44, 300 }, + [782] = { 26.5, 15.9, 44, 300 }, + [783] = { 19, 15, 44, 300 }, + [784] = { 21.1, 14.6, 44, 300 }, + [785] = { 31.4, 14, 44, 300 }, + [786] = { 40.8, 13.7, 44, 300 }, + [787] = { 37.2, 13.3, 44, 300 }, + [788] = { 20.4, 12.7, 44, 300 }, + [789] = { 28.6, 12.7, 44, 300 }, + [790] = { 30.9, 12.6, 44, 300 }, + [791] = { 28.9, 12.4, 44, 300 }, + [792] = { 26.4, 12.1, 44, 300 }, + [793] = { 28.4, 12.1, 44, 300 }, + [794] = { 27.9, 10.7, 44, 300 }, + [795] = { 29, 10.4, 44, 300 }, + [796] = { 30.8, 10.4, 44, 300 }, + [797] = { 43.8, 10.2, 44, 300 }, + [798] = { 26.6, 10.1, 44, 300 }, + [799] = { 28.5, 9.3, 44, 300 }, + [800] = { 27.8, 9, 44, 300 }, + [801] = { 34, 8.9, 44, 300 }, + [802] = { 30.6, 7.5, 44, 300 }, + [803] = { 32.3, 7.4, 44, 300 }, + [804] = { 36, 6.6, 44, 300 }, + [805] = { 31.7, 5.1, 44, 300 }, + [806] = { 24.7, 92.8, 45, 300 }, + [807] = { 22.6, 90, 45, 300 }, + [808] = { 18.3, 89.4, 45, 300 }, + [809] = { 28.4, 88.2, 45, 300 }, + [810] = { 21.5, 87.9, 45, 300 }, + [811] = { 23.9, 85.4, 45, 300 }, + [812] = { 19.2, 83.9, 45, 300 }, + [813] = { 21.3, 82.7, 45, 300 }, + [814] = { 54.5, 82.1, 45, 300 }, + [815] = { 66.6, 81.9, 45, 300 }, + [816] = { 67.9, 81.7, 45, 300 }, + [817] = { 55.1, 81.5, 45, 300 }, + [818] = { 66, 81.3, 45, 300 }, + [819] = { 54.2, 80.6, 45, 300 }, + [820] = { 53.4, 80.3, 45, 300 }, + [821] = { 69.5, 80.2, 45, 300 }, + [822] = { 53.4, 79.7, 45, 300 }, + [823] = { 67.8, 79, 45, 300 }, + [824] = { 54.9, 78.9, 45, 300 }, + [825] = { 70.1, 78.3, 45, 300 }, + [826] = { 54.2, 78, 45, 300 }, + [827] = { 51, 77.7, 45, 300 }, + [828] = { 53.9, 77, 45, 300 }, + [829] = { 52.6, 76.7, 45, 300 }, + [830] = { 57.1, 76.7, 45, 300 }, + [831] = { 67.7, 76.4, 45, 300 }, + [832] = { 55.8, 76.4, 45, 300 }, + [833] = { 41.2, 76.4, 45, 300 }, + [834] = { 65.3, 75.2, 45, 300 }, + [835] = { 53.5, 75.1, 45, 300 }, + [836] = { 66.7, 73.9, 45, 300 }, + [837] = { 63.3, 73.9, 45, 300 }, + [838] = { 69.8, 73.8, 45, 300 }, + [839] = { 55.5, 73.3, 45, 300 }, + [840] = { 39.6, 73.1, 45, 300 }, + [841] = { 53.6, 71.3, 45, 300 }, + [842] = { 70.9, 71.2, 45, 300 }, + [843] = { 57.3, 71.2, 45, 300 }, + [844] = { 62.9, 70.9, 45, 300 }, + [845] = { 37.9, 68.9, 45, 300 }, + [846] = { 69.8, 67.5, 45, 300 }, + [847] = { 34.1, 67.3, 45, 300 }, + [848] = { 72.6, 66.9, 45, 300 }, + [849] = { 71.3, 66.7, 45, 300 }, + [850] = { 62.1, 66.7, 45, 300 }, + [851] = { 65.3, 65.7, 45, 300 }, + [852] = { 54.8, 64.6, 45, 300 }, + [853] = { 48.3, 64.4, 45, 300 }, + [854] = { 73.8, 63.7, 45, 300 }, + [855] = { 34.9, 61.9, 45, 300 }, + [856] = { 31.3, 61.7, 45, 300 }, + [857] = { 40.6, 60.5, 45, 300 }, + [858] = { 72.4, 60, 45, 300 }, + [859] = { 33.5, 59.8, 45, 300 }, + [860] = { 73.3, 59, 45, 300 }, + [861] = { 39.2, 58.6, 45, 300 }, + [862] = { 70.2, 57.5, 45, 300 }, + [863] = { 18.5, 56.2, 45, 300 }, + [864] = { 36.3, 54.5, 45, 300 }, + [865] = { 23.6, 54.3, 45, 300 }, + [866] = { 17.2, 52.7, 45, 300 }, + [867] = { 70.6, 52.4, 45, 300 }, + [868] = { 47.4, 52.4, 45, 300 }, + [869] = { 9.3, 52.4, 45, 300 }, + [870] = { 72.3, 51.9, 45, 300 }, + [871] = { 70.8, 49.5, 45, 300 }, + [872] = { 8, 49.3, 45, 300 }, + [873] = { 40.2, 49, 45, 300 }, + [874] = { 54.4, 48.9, 45, 300 }, + [875] = { 50.3, 47.9, 45, 300 }, + [876] = { 17.3, 47.7, 45, 300 }, + [877] = { 74, 47.6, 45, 300 }, + [878] = { 57.5, 46.9, 45, 300 }, + [879] = { 33, 46.6, 45, 300 }, + [880] = { 33.3, 46.6, 45, 300 }, + [881] = { 31.5, 46.2, 45, 300 }, + [882] = { 31.3, 45.6, 45, 300 }, + [883] = { 32.6, 45.3, 45, 300 }, + [884] = { 53.2, 45.1, 45, 300 }, + [885] = { 10.6, 45, 45, 300 }, + [886] = { 34.1, 44.8, 45, 300 }, + [887] = { 33.1, 44.5, 45, 300 }, + [888] = { 31, 44.2, 45, 300 }, + [889] = { 30.2, 44.1, 45, 300 }, + [890] = { 61.6, 44, 45, 300 }, + [891] = { 77.5, 43.6, 45, 300 }, + [892] = { 11, 43.6, 45, 300 }, + [893] = { 22.3, 43.6, 45, 300 }, + [894] = { 12.2, 43.3, 45, 300 }, + [895] = { 38.7, 43.1, 45, 300 }, + [896] = { 79.7, 43, 45, 300 }, + [897] = { 32.7, 42.8, 45, 300 }, + [898] = { 13.4, 42.6, 45, 300 }, + [899] = { 34, 41.9, 45, 300 }, + [900] = { 48.2, 41.3, 45, 300 }, + [901] = { 11, 41.2, 45, 300 }, + [902] = { 41.5, 40.9, 45, 300 }, + [903] = { 12.1, 40.7, 45, 300 }, + [904] = { 20.7, 39.5, 45, 300 }, + [905] = { 24.7, 36.5, 45, 300 }, + [906] = { 51.3, 36.3, 45, 300 }, + [907] = { 82.4, 35.8, 45, 300 }, + [908] = { 47.8, 35.7, 45, 300 }, + [909] = { 64.4, 35, 45, 300 }, + [910] = { 38.1, 34.5, 45, 300 }, + [911] = { 58.5, 34.3, 45, 300 }, + [912] = { 84.5, 34, 45, 300 }, + [913] = { 85.8, 33.7, 45, 300 }, + [914] = { 19.2, 33.5, 45, 300 }, + [915] = { 16.3, 32.9, 45, 300 }, + [916] = { 30.7, 32.6, 45, 300 }, + [917] = { 28.5, 32.6, 45, 300 }, + [918] = { 76.7, 32.6, 45, 300 }, + [919] = { 83.6, 32.4, 45, 300 }, + [920] = { 43.4, 31.6, 45, 300 }, + [921] = { 41.7, 31.5, 45, 300 }, + [922] = { 61.6, 31.4, 45, 300 }, + [923] = { 85, 30.8, 45, 300 }, + [924] = { 70.8, 30.7, 45, 300 }, + [925] = { 84.6, 30.7, 45, 300 }, + [926] = { 86.5, 30.5, 45, 300 }, + [927] = { 26.3, 30.3, 45, 300 }, + [928] = { 86.1, 29.8, 45, 300 }, + [929] = { 23.9, 29.5, 45, 300 }, + [930] = { 83.9, 29, 45, 300 }, + [931] = { 40.8, 28.2, 45, 300 }, + [932] = { 69.2, 27.6, 45, 300 }, + [933] = { 84.2, 27.5, 45, 300 }, + [934] = { 65.9, 26.2, 45, 300 }, + [935] = { 36, 25.3, 45, 300 }, + [936] = { 34.2, 23.3, 45, 300 }, + [937] = { 31.9, 22.8, 45, 300 }, + [938] = { 34.4, 21.4, 45, 300 }, + [939] = { 27, 18.5, 45, 300 }, + [940] = { 30.8, 18.2, 45, 300 }, + [941] = { 24.2, 17.7, 45, 300 }, + [942] = { 58.6, 90.2, 46, 300 }, + [943] = { 60.2, 89.9, 46, 300 }, + [944] = { 59.6, 88.5, 46, 300 }, + [945] = { 66, 88.3, 46, 300 }, + [946] = { 64.1, 88, 46, 300 }, + [947] = { 65.6, 88, 46, 300 }, + [948] = { 65.2, 87, 46, 300 }, + [949] = { 66, 86.8, 46, 300 }, + [950] = { 67.4, 86.8, 46, 300 }, + [951] = { 64.2, 86.6, 46, 300 }, + [952] = { 65.6, 86, 46, 300 }, + [953] = { 65.1, 85.7, 46, 300 }, + [954] = { 69.7, 85.7, 46, 300 }, + [955] = { 67.2, 84.6, 46, 300 }, + [956] = { 68.5, 84.6, 46, 300 }, + [957] = { 71.2, 84, 46, 300 }, + [958] = { 68, 82.9, 46, 300 }, + [959] = { 68.4, 21.2, 46, 600 }, + [960] = { 68.2, 19.4, 46, 600 }, + [961] = { 89.1, 6.5, 46, 300 }, + [962] = { 62.1, 90.2, 47, 300 }, + [963] = { 60, 89.5, 47, 300 }, + [964] = { 60.3, 88, 47, 300 }, + [965] = { 43.3, 69.5, 47, 300 }, + [966] = { 5.1, 67.3, 47, 300 }, + [967] = { 52.4, 59.7, 47, 300 }, + [968] = { 62.8, 59.3, 47, 300 }, + [969] = { 28, 58.9, 47, 300 }, + [970] = { 21.3, 58.7, 47, 300 }, + [971] = { 24.3, 50.6, 47, 300 }, + [972] = { 39, 49.8, 47, 300 }, + [973] = { 39.8, 43.8, 47, 300 }, + [974] = { 44, 43.5, 47, 300 }, + [975] = { 35.6, 42.3, 47, 300 }, + [976] = { 67.9, 38.2, 47, 300 }, + [977] = { 87.1, 83.3, 51, 600 }, + [978] = { 56, 76.4, 51, 300 }, + [979] = { 68.1, 75.2, 51, 300 }, + [980] = { 64.5, 49.3, 51, 300 }, + [981] = { 66.2, 37.8, 51, 300 }, + [982] = { 60.8, 80.8, 130, 300 }, + [983] = { 62.8, 79.8, 130, 300 }, + [984] = { 57.9, 79.1, 130, 300 }, + [985] = { 59.4, 75.5, 130, 300 }, + [986] = { 63.8, 73.1, 130, 300 }, + [987] = { 60.4, 72.7, 130, 300 }, + [988] = { 59.6, 72.2, 130, 300 }, + [989] = { 60.5, 72.2, 130, 300 }, + [990] = { 58.5, 72.1, 130, 300 }, + [991] = { 59.4, 72.1, 130, 300 }, + [992] = { 57.6, 71.9, 130, 300 }, + [993] = { 63.8, 71.5, 130, 300 }, + [994] = { 58.9, 71.3, 130, 300 }, + [995] = { 57.7, 71.3, 130, 300 }, + [996] = { 60.1, 71.1, 130, 300 }, + [997] = { 57, 71, 130, 300 }, + [998] = { 61.8, 70.9, 130, 300 }, + [999] = { 57.5, 70.7, 130, 300 }, + [1000] = { 59, 70.6, 130, 300 }, + [1001] = { 56, 70.5, 130, 300 }, + [1002] = { 56.8, 70.3, 130, 300 }, + [1003] = { 59.3, 70.2, 130, 300 }, + [1004] = { 58.1, 70, 130, 300 }, + [1005] = { 57.6, 69.6, 130, 300 }, + [1006] = { 40.1, 69.2, 130, 300 }, + [1007] = { 65.9, 61.3, 130, 300 }, + [1008] = { 60, 61, 130, 300 }, + [1009] = { 57.8, 60.6, 130, 300 }, + [1010] = { 71.1, 60.1, 130, 300 }, + [1011] = { 54.9, 59.3, 130, 300 }, + [1012] = { 63, 59, 130, 300 }, + [1013] = { 46, 56.8, 130, 300 }, + [1014] = { 64.2, 55.7, 130, 300 }, + [1015] = { 69.3, 54.6, 130, 300 }, + [1016] = { 67.8, 52.6, 130, 300 }, + [1017] = { 42.1, 52, 130, 300 }, + [1018] = { 47.4, 51.8, 130, 300 }, + [1019] = { 55.9, 50.4, 130, 300 }, + [1020] = { 67.8, 46.4, 130, 300 }, + [1021] = { 55.2, 46, 130, 300 }, + [1022] = { 65.3, 45.5, 130, 300 }, + [1023] = { 58.2, 45.4, 130, 300 }, + [1024] = { 58, 45.1, 130, 300 }, + [1025] = { 58.4, 44.7, 130, 300 }, + [1026] = { 58.4, 43.1, 130, 300 }, + [1027] = { 63.7, 42.1, 130, 300 }, + [1028] = { 61.1, 41, 130, 300 }, + [1029] = { 61.3, 37.2, 130, 300 }, + [1030] = { 75.8, 36.6, 130, 300 }, + [1031] = { 48, 33.5, 130, 300 }, + [1032] = { 39.7, 32.5, 130, 300 }, + [1033] = { 79.9, 23.7, 130, 300 }, + [1034] = { 47.9, 23.1, 130, 300 }, + [1035] = { 61.6, 21.1, 130, 300 }, + [1036] = { 65, 16.1, 130, 300 }, + [1037] = { 41, 15.9, 130, 300 }, + [1038] = { 36.8, 13.2, 130, 300 }, + [1039] = { 71.1, 13.1, 130, 300 }, + [1040] = { 62, 7.4, 130, 300 }, + [1041] = { 41.9, 99.7, 148, 300 }, + [1042] = { 26.1, 97.4, 148, 300 }, + [1043] = { 23.8, 96.7, 148, 300 }, + [1044] = { 41.8, 96.3, 148, 300 }, + [1045] = { 26, 95.8, 148, 300 }, + [1046] = { 28, 95.1, 148, 300 }, + [1047] = { 31, 94.3, 148, 300 }, + [1048] = { 45, 88.1, 148, 300 }, + [1049] = { 45, 85.6, 148, 300 }, + [1050] = { 39.8, 85.5, 148, 300 }, + [1051] = { 44.7, 84.8, 148, 300 }, + [1052] = { 44.7, 84.4, 148, 300 }, + [1053] = { 32.3, 78.7, 148, 300 }, + [1054] = { 34, 72.6, 148, 300 }, + [1055] = { 42.6, 67.3, 148, 300 }, + [1056] = { 37.8, 63.2, 148, 300 }, + [1057] = { 44.7, 61.2, 148, 300 }, + [1058] = { 37.3, 59.4, 148, 300 }, + [1059] = { 44.2, 58.5, 148, 300 }, + [1060] = { 45.9, 57.3, 148, 300 }, + [1061] = { 34.7, 56, 148, 300 }, + [1062] = { 45.8, 54.5, 148, 300 }, + [1063] = { 48.1, 42.5, 148, 300 }, + [1064] = { 49.1, 37.9, 148, 300 }, + [1065] = { 54.6, 37, 148, 300 }, + [1066] = { 52.4, 36.3, 148, 300 }, + [1067] = { 56.6, 33.3, 148, 300 }, + [1068] = { 47.8, 32.8, 148, 300 }, + [1069] = { 42, 30.9, 148, 300 }, + [1070] = { 51.3, 30.3, 148, 300 }, + [1071] = { 48.2, 29.1, 148, 300 }, + [1072] = { 51.4, 27.7, 148, 300 }, + [1073] = { 46.1, 27.3, 148, 300 }, + [1074] = { 50.7, 26.2, 148, 300 }, + [1075] = { 52.1, 26.1, 148, 300 }, + [1076] = { 53.7, 26, 148, 300 }, + [1077] = { 38.6, 24.8, 148, 300 }, + [1078] = { 59.8, 24.5, 148, 300 }, + [1079] = { 56.4, 22.6, 148, 300 }, + [1080] = { 50.6, 21.7, 148, 300 }, + [1081] = { 61.5, 21.5, 148, 300 }, + [1082] = { 60.2, 20.6, 148, 300 }, + [1083] = { 60.3, 20.4, 148, 300 }, + [1084] = { 47.1, 20.3, 148, 300 }, + [1085] = { 59.3, 19.6, 148, 300 }, + [1086] = { 49.7, 19.5, 148, 300 }, + [1087] = { 61.7, 18.9, 148, 300 }, + [1088] = { 44.1, 17.8, 148, 300 }, + [1089] = { 61.7, 16.5, 148, 300 }, + [1090] = { 60, 15, 148, 300 }, + [1091] = { 62, 12.4, 148, 300 }, + [1092] = { 61.4, 8.8, 148, 300 }, + [1093] = { 26.5, 26.4, 215, 300 }, + [1094] = { 79.8, 84.3, 267, 300 }, + [1095] = { 70.9, 83.9, 267, 300 }, + [1096] = { 66.9, 83.1, 267, 300 }, + [1097] = { 18.7, 81.1, 267, 300 }, + [1098] = { 69.5, 80.5, 267, 300 }, + [1099] = { 15.7, 80.2, 267, 300 }, + [1100] = { 13.5, 79.2, 267, 300 }, + [1101] = { 79.9, 78.7, 267, 300 }, + [1102] = { 64.2, 76.7, 267, 300 }, + [1103] = { 72.3, 75.6, 267, 300 }, + [1104] = { 72.7, 74, 267, 300 }, + [1105] = { 74.1, 73.7, 267, 300 }, + [1106] = { 61.1, 73.1, 267, 300 }, + [1107] = { 75.5, 72.9, 267, 300 }, + [1108] = { 72.8, 71.3, 267, 300 }, + [1109] = { 74, 70.8, 267, 300 }, + [1110] = { 66.6, 70, 267, 300 }, + [1111] = { 61.9, 69.5, 267, 300 }, + [1112] = { 70.4, 66.2, 267, 300 }, + [1113] = { 32.4, 65.6, 267, 300 }, + [1114] = { 68.2, 65.6, 267, 300 }, + [1115] = { 38.9, 64.5, 267, 300 }, + [1116] = { 40.9, 63.4, 267, 300 }, + [1117] = { 45, 62.2, 267, 300 }, + [1118] = { 67.6, 62, 267, 300 }, + [1119] = { 78.8, 62, 267, 300 }, + [1120] = { 57.1, 61.3, 267, 300 }, + [1121] = { 58.2, 57.1, 267, 300 }, + [1122] = { 71.2, 57.1, 267, 300 }, + [1123] = { 64.1, 55.2, 267, 300 }, + [1124] = { 64, 51.7, 267, 300 }, + [1125] = { 65.1, 47.8, 267, 300 }, + [1126] = { 7.9, 45.4, 267, 300 }, + [1127] = { 87.7, 45, 267, 300 }, + [1128] = { 69.9, 42.7, 267, 300 }, + [1129] = { 85.1, 42.1, 267, 300 }, + [1130] = { 70.5, 40.6, 267, 300 }, + [1131] = { 69.9, 38.3, 267, 300 }, + [1132] = { 68.5, 37.7, 267, 300 }, + [1133] = { 88.7, 37.7, 267, 300 }, + [1134] = { 9.3, 36.5, 267, 300 }, + [1135] = { 86.6, 35.4, 267, 300 }, + [1136] = { 43.4, 34.6, 267, 300 }, + [1137] = { 9.3, 34.4, 267, 300 }, + [1138] = { 44.8, 33.7, 267, 300 }, + [1139] = { 42.7, 33.6, 267, 600 }, + [1140] = { 72.1, 33, 267, 300 }, + [1141] = { 70.8, 32.7, 267, 300 }, + [1142] = { 83.1, 32.1, 267, 300 }, + [1143] = { 65.2, 31.8, 267, 300 }, + [1144] = { 46.3, 31.6, 267, 600 }, + [1145] = { 43.9, 31.5, 267, 600 }, + [1146] = { 40.1, 31.3, 267, 300 }, + [1147] = { 41.8, 31.2, 267, 600 }, + [1148] = { 88.7, 31, 267, 300 }, + [1149] = { 80.1, 30.8, 267, 300 }, + [1150] = { 21.5, 30.7, 267, 300 }, + [1151] = { 45.2, 30.7, 267, 600 }, + [1152] = { 66.8, 30.3, 267, 300 }, + [1153] = { 43.7, 30.1, 267, 600 }, + [1154] = { 50.9, 29.4, 267, 300 }, + [1155] = { 70, 29.2, 267, 300 }, + [1156] = { 36.2, 28.4, 267, 300 }, + [1157] = { 44.5, 28.1, 267, 600 }, + [1158] = { 78.9, 28, 267, 300 }, + [1159] = { 53.8, 28, 267, 300 }, + [1160] = { 43.1, 27.7, 267, 600 }, + [1161] = { 44.4, 27.6, 267, 600 }, + [1162] = { 21.6, 27.4, 267, 300 }, + [1163] = { 32.7, 27, 267, 300 }, + [1164] = { 45.4, 27, 267, 600 }, + [1165] = { 39.5, 26.5, 267, 300 }, + [1166] = { 48.9, 26.5, 267, 300 }, + [1167] = { 20.9, 26.3, 267, 300 }, + [1168] = { 43.1, 26.1, 267, 600 }, + [1169] = { 37.6, 26.1, 267, 300 }, + [1170] = { 45.9, 25.9, 267, 300 }, + [1171] = { 64.5, 25.8, 267, 300 }, + [1172] = { 38, 24.9, 267, 300 }, + [1173] = { 54.9, 23.7, 267, 300 }, + [1174] = { 75.9, 23, 267, 300 }, + [1175] = { 32.7, 22.5, 267, 300 }, + [1176] = { 47.7, 22.1, 267, 300 }, + [1177] = { 12, 21, 267, 300 }, + [1178] = { 20.4, 20.7, 267, 300 }, + [1179] = { 40.3, 20.2, 267, 300 }, + [1180] = { 54.6, 19.8, 267, 300 }, + [1181] = { 34.4, 19.7, 267, 300 }, + [1182] = { 18.9, 19.5, 267, 300 }, + [1183] = { 38, 18.2, 267, 300 }, + [1184] = { 72.3, 18, 267, 300 }, + [1185] = { 8.2, 18, 267, 300 }, + [1186] = { 53.4, 16.5, 267, 300 }, + [1187] = { 71.8, 16.3, 267, 300 }, + [1188] = { 64.7, 15.3, 267, 300 }, + [1189] = { 35.8, 15.2, 267, 300 }, + [1190] = { 66.6, 14.7, 267, 300 }, + [1191] = { 9.8, 13.8, 267, 300 }, + [1192] = { 59.5, 13.4, 267, 300 }, + [1193] = { 53.3, 13.3, 267, 300 }, + [1194] = { 16.5, 12.3, 267, 300 }, + [1195] = { 44.7, 12.1, 267, 300 }, + [1196] = { 62.3, 12, 267, 300 }, + [1197] = { 58, 11.9, 267, 300 }, + [1198] = { 64.7, 11.5, 267, 300 }, + [1199] = { 66.6, 9.9, 267, 300 }, + [1200] = { 63, 9.6, 267, 300 }, + [1201] = { 56.9, 8.5, 267, 300 }, + [1202] = { 68, 8.3, 267, 300 }, + [1203] = { 35.6, 8.2, 267, 300 }, + [1204] = { 41.3, 8, 267, 600 }, + [1205] = { 42.2, 7.7, 267, 600 }, + [1206] = { 41.1, 7.3, 267, 600 }, + [1207] = { 62.8, 7.2, 267, 300 }, + [1208] = { 42.3, 7.2, 267, 600 }, + [1209] = { 49.2, 6.3, 267, 300 }, + [1210] = { 42, 6.2, 267, 600 }, + [1211] = { 41.4, 6, 267, 600 }, + [1212] = { 67.2, 4.4, 267, 300 }, + [1213] = { 66.5, 3.7, 267, 300 }, + [1214] = { 41.8, 1.8, 267, 300 }, + [1215] = { 63.4, 86.3, 331, 300 }, + [1216] = { 71.6, 84.8, 331, 300 }, + [1217] = { 66.1, 83.3, 331, 300 }, + [1218] = { 66.3, 83.2, 331, 300 }, + [1219] = { 70.4, 81.5, 331, 300 }, + [1220] = { 80.4, 81, 331, 300 }, + [1221] = { 61.1, 80.4, 331, 300 }, + [1222] = { 73.8, 80.3, 331, 300 }, + [1223] = { 81.4, 80.2, 331, 300 }, + [1224] = { 82.8, 80.1, 331, 300 }, + [1225] = { 83, 80, 331, 300 }, + [1226] = { 88.9, 79.2, 331, 300 }, + [1227] = { 83.9, 78.9, 331, 300 }, + [1228] = { 82.4, 78.7, 331, 300 }, + [1229] = { 66.5, 78.3, 331, 300 }, + [1230] = { 81.5, 77.8, 331, 300 }, + [1231] = { 85.4, 77.4, 331, 300 }, + [1232] = { 83.1, 77.3, 331, 300 }, + [1233] = { 51.9, 76.7, 331, 300 }, + [1234] = { 75.6, 76.5, 331, 300 }, + [1235] = { 90.3, 76.4, 331, 300 }, + [1236] = { 64.8, 76.3, 331, 300 }, + [1237] = { 84.2, 76.3, 331, 300 }, + [1238] = { 84.8, 75.8, 331, 300 }, + [1239] = { 85.4, 74.3, 331, 300 }, + [1240] = { 84.4, 73.8, 331, 300 }, + [1241] = { 69.7, 73.8, 331, 300 }, + [1242] = { 80.5, 73.8, 331, 300 }, + [1243] = { 64.6, 73.6, 331, 300 }, + [1244] = { 81.1, 73.3, 331, 300 }, + [1245] = { 52.1, 73.2, 331, 300 }, + [1246] = { 84.6, 73, 331, 300 }, + [1247] = { 79.2, 72.7, 331, 300 }, + [1248] = { 85.1, 71.4, 331, 300 }, + [1249] = { 32.6, 71.1, 331, 300 }, + [1250] = { 79.7, 70.9, 331, 300 }, + [1251] = { 79.8, 70.4, 331, 300 }, + [1252] = { 65, 69.7, 331, 300 }, + [1253] = { 75.3, 69.6, 331, 300 }, + [1254] = { 88.5, 69.5, 331, 300 }, + [1255] = { 75.2, 69.4, 331, 300 }, + [1256] = { 86.8, 69.2, 331, 300 }, + [1257] = { 85.3, 68.9, 331, 300 }, + [1258] = { 67.7, 68.5, 331, 300 }, + [1259] = { 55.1, 68.5, 331, 300 }, + [1260] = { 90.9, 68.4, 331, 300 }, + [1261] = { 64.7, 68.3, 331, 300 }, + [1262] = { 86.5, 68.2, 331, 300 }, + [1263] = { 80, 67.1, 331, 300 }, + [1264] = { 68.7, 67, 331, 300 }, + [1265] = { 91.2, 66.5, 331, 300 }, + [1266] = { 71.5, 66.3, 331, 300 }, + [1267] = { 69.8, 66.2, 331, 300 }, + [1268] = { 67.5, 66.2, 331, 300 }, + [1269] = { 71.3, 65.2, 331, 300 }, + [1270] = { 82.2, 64.8, 331, 300 }, + [1271] = { 62.7, 64.7, 331, 300 }, + [1272] = { 78.1, 64.7, 331, 300 }, + [1273] = { 67.3, 64.7, 331, 300 }, + [1274] = { 90.7, 63.6, 331, 300 }, + [1275] = { 79.1, 63.3, 331, 300 }, + [1276] = { 65.4, 63.2, 331, 300 }, + [1277] = { 80.5, 62.9, 331, 300 }, + [1278] = { 48.5, 62.7, 331, 300 }, + [1279] = { 80.9, 62.5, 331, 300 }, + [1280] = { 78.5, 62.4, 331, 300 }, + [1281] = { 55, 61.4, 331, 300 }, + [1282] = { 22.5, 61.4, 331, 300 }, + [1283] = { 90.6, 60.9, 331, 300 }, + [1284] = { 62.7, 60.5, 331, 300 }, + [1285] = { 78.4, 60.5, 331, 300 }, + [1286] = { 70.8, 60, 331, 300 }, + [1287] = { 65.8, 60, 331, 300 }, + [1288] = { 69, 58.4, 331, 300 }, + [1289] = { 68.9, 58.4, 331, 300 }, + [1290] = { 70.6, 58.3, 331, 300 }, + [1291] = { 70.6, 58.2, 331, 300 }, + [1292] = { 74.7, 57.4, 331, 300 }, + [1293] = { 72.5, 57, 331, 300 }, + [1294] = { 93.3, 56.4, 331, 300 }, + [1295] = { 54.6, 56.3, 331, 300 }, + [1296] = { 92.7, 55.6, 331, 300 }, + [1297] = { 64.4, 55.6, 331, 300 }, + [1298] = { 26.2, 54, 331, 300 }, + [1299] = { 70.4, 53.8, 331, 300 }, + [1300] = { 54.3, 53.4, 331, 300 }, + [1301] = { 71.3, 53.1, 331, 300 }, + [1302] = { 49.6, 52.8, 331, 300 }, + [1303] = { 75.4, 52.8, 331, 300 }, + [1304] = { 74.2, 52.5, 331, 300 }, + [1305] = { 77.2, 52.3, 331, 300 }, + [1306] = { 64.5, 51.6, 331, 300 }, + [1307] = { 74.1, 51.4, 331, 300 }, + [1308] = { 70.7, 51.4, 331, 300 }, + [1309] = { 72.3, 51, 331, 300 }, + [1310] = { 91.2, 50.9, 331, 300 }, + [1311] = { 93.7, 50.5, 331, 300 }, + [1312] = { 91.4, 49.4, 331, 300 }, + [1313] = { 47, 49.1, 331, 300 }, + [1314] = { 75.4, 48.9, 331, 300 }, + [1315] = { 62.2, 48.4, 331, 300 }, + [1316] = { 75.9, 47.3, 331, 300 }, + [1317] = { 64.6, 47.3, 331, 300 }, + [1318] = { 53.2, 46.9, 331, 300 }, + [1319] = { 73.7, 45.9, 331, 300 }, + [1320] = { 22.3, 45.9, 331, 300 }, + [1321] = { 47, 45.7, 331, 300 }, + [1322] = { 15, 44.7, 331, 300 }, + [1323] = { 50.8, 44.3, 331, 300 }, + [1324] = { 45, 44.3, 331, 300 }, + [1325] = { 22.7, 44, 331, 300 }, + [1326] = { 58.1, 43.2, 331, 300 }, + [1327] = { 63, 42.6, 331, 300 }, + [1328] = { 24.6, 42.3, 331, 300 }, + [1329] = { 22.1, 42, 331, 300 }, + [1330] = { 20.4, 41.9, 331, 300 }, + [1331] = { 29.9, 41.3, 331, 300 }, + [1332] = { 41.4, 41, 331, 300 }, + [1333] = { 40.1, 40.8, 331, 300 }, + [1334] = { 43.8, 40.8, 331, 300 }, + [1335] = { 22.6, 40.8, 331, 300 }, + [1336] = { 17.4, 39.9, 331, 300 }, + [1337] = { 55.2, 39.9, 331, 300 }, + [1338] = { 60.9, 38.1, 331, 300 }, + [1339] = { 40.2, 37.9, 331, 300 }, + [1340] = { 41.9, 37.6, 331, 300 }, + [1341] = { 40.1, 37.4, 331, 300 }, + [1342] = { 35.4, 37.1, 331, 300 }, + [1343] = { 40.1, 36.6, 331, 300 }, + [1344] = { 40.8, 36.3, 331, 300 }, + [1345] = { 22.9, 36.3, 331, 300 }, + [1346] = { 40.5, 36.1, 331, 300 }, + [1347] = { 17.7, 35.6, 331, 300 }, + [1348] = { 41.2, 35.5, 331, 300 }, + [1349] = { 21.7, 35.4, 331, 300 }, + [1350] = { 24.4, 34.7, 331, 300 }, + [1351] = { 28.6, 34.7, 331, 300 }, + [1352] = { 43.1, 33.9, 331, 300 }, + [1353] = { 23.4, 33.8, 331, 300 }, + [1354] = { 24.9, 33.8, 331, 300 }, + [1355] = { 21.8, 33.6, 331, 300 }, + [1356] = { 59.3, 33.6, 331, 300 }, + [1357] = { 29, 33.5, 331, 300 }, + [1358] = { 39.7, 32.4, 331, 300 }, + [1359] = { 40.8, 31.3, 331, 300 }, + [1360] = { 58.3, 31.2, 331, 300 }, + [1361] = { 16.5, 31, 331, 300 }, + [1362] = { 26.7, 30.6, 331, 300 }, + [1363] = { 30.4, 29.7, 331, 300 }, + [1364] = { 33.7, 28, 331, 300 }, + [1365] = { 33.6, 27.9, 331, 300 }, + [1366] = { 11.6, 27, 331, 300 }, + [1367] = { 25.3, 22, 331, 300 }, + [1368] = { 30.2, 19.7, 331, 300 }, + [1369] = { 26, 18, 331, 300 }, + [1370] = { 8.1, 15.5, 331, 300 }, + [1371] = { 5.5, 14.7, 331, 300 }, + [1372] = { 25.9, 14.2, 331, 300 }, + [1373] = { 8, 13.6, 331, 300 }, + [1374] = { 10.3, 12.8, 331, 300 }, + [1375] = { 13.7, 11.9, 331, 300 }, + [1376] = { 54, 64.6, 357, 300 }, + [1377] = { 52.8, 59.3, 357, 300 }, + [1378] = { 50.9, 58.8, 357, 300 }, + [1379] = { 52, 58.2, 357, 300 }, + [1380] = { 61.4, 58, 357, 300 }, + [1381] = { 52.7, 57.7, 357, 300 }, + [1382] = { 53.1, 56.2, 357, 300 }, + [1383] = { 55.2, 56, 357, 300 }, + [1384] = { 54.1, 55.8, 357, 300 }, + [1385] = { 54.2, 50, 357, 300 }, + [1386] = { 91.6, 48.1, 357, 300 }, + [1387] = { 80.3, 47.3, 357, 300 }, + [1388] = { 67.3, 45.9, 357, 300 }, + [1389] = { 93.2, 44, 357, 300 }, + [1390] = { 67.8, 43.7, 357, 300 }, + [1391] = { 92.9, 41.7, 357, 300 }, + [1392] = { 68.5, 39, 357, 300 }, + [1393] = { 81.1, 38.5, 357, 300 }, + [1394] = { 70.7, 35.6, 357, 300 }, + [1395] = { 75.1, 32.6, 357, 300 }, + [1396] = { 74.3, 28.8, 357, 300 }, + [1397] = { 42.2, 98.2, 361, 300 }, + [1398] = { 58.5, 97.8, 361, 300 }, + [1399] = { 38.8, 96.7, 361, 300 }, + [1400] = { 39.9, 95.5, 361, 300 }, + [1401] = { 57.5, 95.4, 361, 300 }, + [1402] = { 28.6, 69, 361, 300 }, + [1403] = { 28.6, 66.2, 361, 300 }, + [1404] = { 29.7, 34, 361, 300 }, + [1405] = { 29.6, 30.7, 361, 300 }, + [1406] = { 39.5, 10.8, 361, 300 }, + [1407] = { 76.3, 93.7, 400, 300 }, + [1408] = { 69.9, 92.1, 400, 300 }, + [1409] = { 80.8, 90.2, 400, 300 }, + [1410] = { 84, 87.5, 400, 300 }, + [1411] = { 77.2, 87.1, 400, 300 }, + [1412] = { 86.6, 84.4, 400, 300 }, + [1413] = { 88.7, 80.7, 400, 300 }, + [1414] = { 68.4, 77.9, 400, 300 }, + [1415] = { 89.4, 76.9, 400, 300 }, + [1416] = { 88.6, 72.6, 400, 300 }, + [1417] = { 69.8, 69.2, 400, 300 }, + [1418] = { 77.7, 64, 400, 300 }, + [1419] = { 80.1, 63.5, 400, 300 }, + [1420] = { 67.1, 63.2, 400, 300 }, + [1421] = { 78.5, 62.1, 400, 300 }, + [1422] = { 77.5, 61.7, 400, 300 }, + [1423] = { 62.9, 60.8, 400, 300 }, + [1424] = { 66.9, 60.6, 400, 300 }, + [1425] = { 43.9, 60.2, 400, 300 }, + [1426] = { 63.9, 59, 400, 300 }, + [1427] = { 48.2, 58.7, 400, 300 }, + [1428] = { 42.5, 58.7, 400, 300 }, + [1429] = { 47.5, 58.6, 400, 300 }, + [1430] = { 59.4, 58.2, 400, 300 }, + [1431] = { 57.5, 57.4, 400, 300 }, + [1432] = { 50.2, 57.1, 400, 300 }, + [1433] = { 86.1, 56.4, 400, 300 }, + [1434] = { 26.8, 56.1, 400, 300 }, + [1435] = { 26.7, 55.3, 400, 300 }, + [1436] = { 38.2, 55.3, 400, 300 }, + [1437] = { 25.8, 55.2, 400, 300 }, + [1438] = { 41.1, 54.7, 400, 300 }, + [1439] = { 27.1, 54.6, 400, 300 }, + [1440] = { 37, 54.3, 400, 300 }, + [1441] = { 27.3, 53.9, 400, 300 }, + [1442] = { 63, 53.4, 400, 300 }, + [1443] = { 34.4, 53.4, 400, 300 }, + [1444] = { 83.4, 53, 400, 300 }, + [1445] = { 27.3, 52.5, 400, 300 }, + [1446] = { 67.8, 52, 400, 300 }, + [1447] = { 26.8, 51.9, 400, 300 }, + [1448] = { 58.2, 51.8, 400, 300 }, + [1449] = { 65.8, 51.8, 400, 300 }, + [1450] = { 38.5, 51.8, 400, 300 }, + [1451] = { 33, 51.2, 400, 300 }, + [1452] = { 37.8, 51.2, 400, 300 }, + [1453] = { 55.4, 51.1, 400, 300 }, + [1454] = { 75.3, 51, 400, 300 }, + [1455] = { 40.2, 50.8, 400, 300 }, + [1456] = { 36.4, 50.7, 400, 300 }, + [1457] = { 35.2, 50.7, 400, 300 }, + [1458] = { 31.3, 50.5, 400, 300 }, + [1459] = { 64.6, 50, 400, 300 }, + [1460] = { 59.1, 49.5, 400, 300 }, + [1461] = { 55.3, 49.3, 400, 300 }, + [1462] = { 66.1, 49.2, 400, 300 }, + [1463] = { 27.3, 49.1, 400, 300 }, + [1464] = { 28.8, 49, 400, 300 }, + [1465] = { 63.2, 49, 400, 300 }, + [1466] = { 37, 48.6, 400, 300 }, + [1467] = { 62, 47.8, 400, 300 }, + [1468] = { 56.1, 47.8, 400, 300 }, + [1469] = { 26.4, 47, 400, 300 }, + [1470] = { 32.1, 46.6, 400, 300 }, + [1471] = { 50.6, 46.4, 400, 300 }, + [1472] = { 53.7, 46.4, 400, 300 }, + [1473] = { 30.1, 45.9, 400, 300 }, + [1474] = { 62.9, 45.6, 400, 300 }, + [1475] = { 34.2, 44.8, 400, 300 }, + [1476] = { 23.7, 44.8, 400, 300 }, + [1477] = { 54.1, 44.5, 400, 300 }, + [1478] = { 51.9, 42.8, 400, 300 }, + [1479] = { 47.3, 42.4, 400, 300 }, + [1480] = { 27.5, 41.9, 400, 300 }, + [1481] = { 41.3, 41.9, 400, 300 }, + [1482] = { 10.4, 41.2, 400, 300 }, + [1483] = { 21.8, 41.2, 400, 300 }, + [1484] = { 40.5, 41.1, 400, 300 }, + [1485] = { 46.3, 41, 400, 300 }, + [1486] = { 16.6, 40.9, 400, 300 }, + [1487] = { 15.2, 40.3, 400, 300 }, + [1488] = { 48.3, 40.2, 400, 300 }, + [1489] = { 26.4, 39.9, 400, 300 }, + [1490] = { 42.4, 39.6, 400, 300 }, + [1491] = { 44.1, 39.4, 400, 300 }, + [1492] = { 45.1, 39.1, 400, 300 }, + [1493] = { 23.1, 38.9, 400, 300 }, + [1494] = { 40.3, 38.7, 400, 300 }, + [1495] = { 17.7, 38.4, 400, 300 }, + [1496] = { 11.8, 38.2, 400, 300 }, + [1497] = { 20.7, 37.8, 400, 300 }, + [1498] = { 44.4, 37.7, 400, 300 }, + [1499] = { 38, 37.3, 400, 300 }, + [1500] = { 13.3, 36.9, 400, 300 }, + [1501] = { 41.8, 36.7, 400, 300 }, + [1502] = { 44.9, 36.6, 400, 300 }, + [1503] = { 44.1, 36.4, 400, 300 }, + [1504] = { 42.3, 36.1, 400, 300 }, + [1505] = { 18, 36, 400, 300 }, + [1506] = { 9.6, 35.1, 400, 300 }, + [1507] = { 42.1, 35, 400, 300 }, + [1508] = { 13, 34.8, 400, 300 }, + [1509] = { 43.1, 34.8, 400, 300 }, + [1510] = { 14.7, 34.4, 400, 300 }, + [1511] = { 39.1, 33.8, 400, 300 }, + [1512] = { 44.2, 33.5, 400, 300 }, + [1513] = { 35.8, 33.5, 400, 300 }, + [1514] = { 21.1, 33.5, 400, 300 }, + [1515] = { 42.4, 33.5, 400, 300 }, + [1516] = { 43.3, 33.1, 400, 300 }, + [1517] = { 41.5, 32.9, 400, 300 }, + [1518] = { 43.6, 32.8, 400, 300 }, + [1519] = { 18, 32.8, 400, 300 }, + [1520] = { 38.5, 32.7, 400, 300 }, + [1521] = { 42.6, 32.3, 400, 300 }, + [1522] = { 15.6, 31.1, 400, 300 }, + [1523] = { 42.6, 31, 400, 300 }, + [1524] = { 10.4, 30.8, 400, 300 }, + [1525] = { 36.3, 30.7, 400, 300 }, + [1526] = { 37.2, 30.4, 400, 300 }, + [1527] = { 27.5, 29.2, 400, 300 }, + [1528] = { 24.6, 29.1, 400, 300 }, + [1529] = { 35.2, 28.8, 400, 300 }, + [1530] = { 28.1, 28.1, 400, 300 }, + [1531] = { 34.6, 27.5, 400, 300 }, + [1532] = { 21.4, 26.1, 400, 300 }, + [1533] = { 19.6, 25.9, 400, 300 }, + [1534] = { 34.6, 25.9, 400, 300 }, + [1535] = { 14.6, 25.5, 400, 300 }, + [1536] = { 12.6, 25.3, 400, 300 }, + [1537] = { 23.9, 24.4, 400, 300 }, + [1538] = { 18.1, 22.9, 400, 300 }, + [1539] = { 23.8, 22.4, 400, 300 }, + [1540] = { 11.2, 21.4, 400, 300 }, + [1541] = { 15.8, 18.9, 400, 300 }, + [1542] = { 13.7, 15, 400, 300 }, + [1543] = { 13.3, 11.4, 400, 300 }, + [1544] = { 64.2, 91.4, 405, 300 }, + [1545] = { 59.1, 90.6, 405, 300 }, + [1546] = { 51.1, 90.1, 405, 300 }, + [1547] = { 65.9, 90.1, 405, 300 }, + [1548] = { 60.5, 88.5, 405, 300 }, + [1549] = { 47.2, 88.2, 405, 300 }, + [1550] = { 54, 87.6, 405, 300 }, + [1551] = { 54.8, 83.9, 405, 300 }, + [1552] = { 43.4, 83.7, 405, 300 }, + [1553] = { 57.2, 81.9, 405, 300 }, + [1554] = { 71.9, 80.3, 405, 300 }, + [1555] = { 36.3, 79.9, 405, 300 }, + [1556] = { 57.4, 79.8, 405, 300 }, + [1557] = { 45.6, 77.6, 405, 300 }, + [1558] = { 67.8, 77.4, 405, 300 }, + [1559] = { 61.6, 76.7, 405, 300 }, + [1560] = { 39.4, 74.7, 405, 300 }, + [1561] = { 58.2, 74.6, 405, 300 }, + [1562] = { 42.3, 74.5, 405, 300 }, + [1563] = { 45.9, 73, 405, 300 }, + [1564] = { 40, 72.4, 405, 300 }, + [1565] = { 32.1, 71.6, 405, 300 }, + [1566] = { 29.5, 71.3, 405, 300 }, + [1567] = { 76.3, 70.5, 405, 300 }, + [1568] = { 48.2, 69.7, 405, 300 }, + [1569] = { 58.5, 69.4, 405, 300 }, + [1570] = { 61.4, 69.2, 405, 300 }, + [1571] = { 64.7, 69.1, 405, 300 }, + [1572] = { 38.7, 68.2, 405, 300 }, + [1573] = { 50.5, 65.8, 405, 300 }, + [1574] = { 58.9, 65.6, 405, 300 }, + [1575] = { 72.1, 63.2, 405, 300 }, + [1576] = { 69, 63.2, 405, 300 }, + [1577] = { 46.4, 63.1, 405, 300 }, + [1578] = { 32.3, 63, 405, 300 }, + [1579] = { 32.3, 62.6, 405, 300 }, + [1580] = { 65.9, 60.7, 405, 300 }, + [1581] = { 30.4, 60.4, 405, 300 }, + [1582] = { 62.4, 60.3, 405, 300 }, + [1583] = { 74.3, 60.2, 405, 300 }, + [1584] = { 36.9, 59.4, 405, 300 }, + [1585] = { 46.1, 57.7, 405, 300 }, + [1586] = { 72.2, 57, 405, 300 }, + [1587] = { 74.4, 57, 405, 300 }, + [1588] = { 29.8, 56.6, 405, 300 }, + [1589] = { 35.4, 56.5, 405, 300 }, + [1590] = { 40.2, 55.5, 405, 300 }, + [1591] = { 64.2, 55.2, 405, 300 }, + [1592] = { 78.9, 54.3, 405, 300 }, + [1593] = { 45.3, 54, 405, 300 }, + [1594] = { 75.5, 53.3, 405, 300 }, + [1595] = { 65.9, 53.3, 405, 300 }, + [1596] = { 47.2, 52.5, 405, 300 }, + [1597] = { 35.1, 52.1, 405, 300 }, + [1598] = { 34.3, 51.6, 405, 300 }, + [1599] = { 64.3, 51.2, 405, 300 }, + [1600] = { 30.6, 51.2, 405, 300 }, + [1601] = { 60.9, 51.1, 405, 300 }, + [1602] = { 40.8, 48.5, 405, 300 }, + [1603] = { 66.3, 47, 405, 300 }, + [1604] = { 75.1, 46.9, 405, 300 }, + [1605] = { 55, 46, 405, 300 }, + [1606] = { 71.2, 45.6, 405, 300 }, + [1607] = { 59.6, 45.3, 405, 300 }, + [1608] = { 64.9, 44.9, 405, 300 }, + [1609] = { 54.1, 44.6, 405, 300 }, + [1610] = { 57.1, 43.8, 405, 300 }, + [1611] = { 40.1, 43.7, 405, 300 }, + [1612] = { 63.7, 43.7, 405, 300 }, + [1613] = { 47.1, 43.1, 405, 300 }, + [1614] = { 66.5, 42, 405, 300 }, + [1615] = { 72.7, 41.2, 405, 300 }, + [1616] = { 64.3, 38.6, 405, 300 }, + [1617] = { 38.5, 38.2, 405, 300 }, + [1618] = { 34.1, 38.1, 405, 300 }, + [1619] = { 74.1, 36.9, 405, 300 }, + [1620] = { 30.9, 36.7, 405, 300 }, + [1621] = { 77.2, 36.6, 405, 300 }, + [1622] = { 46.8, 34.5, 405, 300 }, + [1623] = { 50.3, 33.2, 405, 300 }, + [1624] = { 75, 32, 405, 300 }, + [1625] = { 58.9, 31.9, 405, 300 }, + [1626] = { 54.5, 31.7, 405, 300 }, + [1627] = { 40.7, 30.2, 405, 300 }, + [1628] = { 44.1, 29.8, 405, 300 }, + [1629] = { 62.3, 24.6, 405, 300 }, + [1630] = { 53, 24.2, 405, 300 }, + [1631] = { 75.4, 22.5, 405, 300 }, + [1632] = { 43, 22.3, 405, 300 }, + [1633] = { 40.2, 22.1, 405, 300 }, + [1634] = { 59.7, 20.8, 405, 300 }, + [1635] = { 54.4, 20.7, 405, 300 }, + [1636] = { 86.5, 17.5, 405, 300 }, + [1637] = { 87.3, 17.4, 405, 300 }, + [1638] = { 85.9, 16.5, 405, 300 }, + [1639] = { 88.7, 16.5, 405, 300 }, + [1640] = { 69.6, 16.1, 405, 300 }, + [1641] = { 87.2, 15.5, 405, 300 }, + [1642] = { 46.7, 13.2, 405, 300 }, + [1643] = { 61.5, 12.2, 405, 300 }, + [1644] = { 59.5, 10.9, 405, 300 }, + [1645] = { 52, 8.7, 405, 300 }, + [1646] = { 29.2, 8.2, 405, 300 }, + [1647] = { 56.2, 8.1, 405, 300 }, + [1648] = { 52.9, 5.2, 405, 300 }, + [1649] = { 59.4, 91.8, 406, 300 }, + [1650] = { 60.1, 91.7, 406, 300 }, + [1651] = { 58.9, 90.9, 406, 300 }, + [1652] = { 61.4, 90.9, 406, 300 }, + [1653] = { 60.1, 89.9, 406, 300 }, + [1654] = { 74.2, 89.7, 406, 300 }, + [1655] = { 72.5, 87.3, 406, 300 }, + [1656] = { 36.4, 86.9, 406, 300 }, + [1657] = { 59.6, 85.9, 406, 300 }, + [1658] = { 70.9, 85.8, 406, 300 }, + [1659] = { 34.5, 85.7, 406, 300 }, + [1660] = { 80.2, 84.5, 406, 300 }, + [1661] = { 27.7, 83.7, 406, 300 }, + [1662] = { 31.5, 83.1, 406, 300 }, + [1663] = { 28.4, 80.5, 406, 300 }, + [1664] = { 35.3, 75.1, 406, 300 }, + [1665] = { 31.8, 75.1, 406, 300 }, + [1666] = { 27.5, 71.4, 406, 300 }, + [1667] = { 37.5, 69.9, 406, 300 }, + [1668] = { 34.8, 65.2, 406, 300 }, + [1669] = { 29.8, 64.8, 406, 300 }, + [1670] = { 31.1, 64.3, 406, 300 }, + [1671] = { 72.7, 63.1, 406, 300 }, + [1672] = { 32.6, 62.2, 406, 300 }, + [1673] = { 28.6, 62.2, 406, 300 }, + [1674] = { 73.4, 61.4, 406, 300 }, + [1675] = { 72.4, 61.1, 406, 300 }, + [1676] = { 72.1, 61.1, 406, 300 }, + [1677] = { 71.8, 60.9, 406, 300 }, + [1678] = { 73.9, 60.7, 406, 300 }, + [1679] = { 72.9, 60.6, 406, 300 }, + [1680] = { 73.2, 59.7, 406, 300 }, + [1681] = { 66.6, 59.7, 406, 300 }, + [1682] = { 73.1, 59, 406, 300 }, + [1683] = { 38.1, 53.1, 406, 300 }, + [1684] = { 35.8, 52.1, 406, 300 }, + [1685] = { 72.3, 51.7, 406, 300 }, + [1686] = { 76, 48.7, 406, 300 }, + [1687] = { 76.5, 44.5, 406, 300 }, + [1688] = { 54.9, 44.3, 406, 300 }, + [1689] = { 54.2, 42, 406, 300 }, + [1690] = { 47, 39.9, 406, 300 }, + [1691] = { 67.7, 39.6, 406, 300 }, + [1692] = { 50.4, 38.7, 406, 300 }, + [1693] = { 64, 38.5, 406, 300 }, + [1694] = { 48.3, 37.2, 406, 300 }, + [1695] = { 52.9, 35.8, 406, 300 }, + [1696] = { 49.3, 35.5, 406, 300 }, + [1697] = { 44.3, 34.9, 406, 300 }, + [1698] = { 49.3, 30.8, 406, 300 }, + [1699] = { 45.4, 25.2, 406, 300 }, + [1700] = { 46.9, 21.2, 406, 300 }, + [1701] = { 38.7, 21.1, 406, 300 }, + [1702] = { 38.3, 21.1, 406, 300 }, + [1703] = { 35.6, 20.7, 406, 300 }, + [1704] = { 32.7, 19.2, 406, 300 }, + [1705] = { 40.1, 19.2, 406, 300 }, + [1706] = { 44.8, 18.6, 406, 300 }, + [1707] = { 58.3, 18.5, 406, 300 }, + [1708] = { 40.2, 17.8, 406, 300 }, + [1709] = { 35.1, 17.2, 406, 300 }, + [1710] = { 44.2, 15.2, 406, 300 }, + [1711] = { 34.6, 14.3, 406, 300 }, + [1712] = { 34.5, 14.3, 406, 300 }, + [1713] = { 30.2, 13.9, 406, 300 }, + [1714] = { 41.1, 13.7, 406, 300 }, + [1715] = { 30.3, 12, 406, 300 }, + [1716] = { 30.4, 11.9, 406, 300 }, + [1717] = { 34.6, 11.2, 406, 300 }, + [1718] = { 35.4, 9.2, 406, 300 }, + [1719] = { 40.7, 9, 406, 300 }, + [1720] = { 41.8, 6.9, 406, 300 }, + [1721] = { 34.1, 5.3, 406, 300 }, + [1722] = { 48.8, 71, 440, 300 }, + [1723] = { 52.2, 63.8, 440, 300 }, + [1724] = { 57.9, 62.6, 440, 300 }, + [1725] = { 55.1, 61.2, 440, 300 }, + [1726] = { 31.2, 52.2, 440, 300 }, + [1727] = { 72.1, 48.8, 440, 300 }, + [1728] = { 59.1, 48.1, 440, 300 }, + [1729] = { 36.4, 48, 440, 300 }, + [1730] = { 70.9, 47.4, 440, 300 }, + [1731] = { 73.7, 46, 440, 300 }, + [1732] = { 70.5, 45.5, 440, 300 }, + [1733] = { 37.5, 45.4, 440, 300 }, + [1734] = { 69.3, 43.6, 440, 300 }, + [1735] = { 66.5, 42.4, 440, 300 }, + [1736] = { 61.8, 41.2, 440, 300 }, + [1737] = { 37.8, 40.4, 440, 300 }, + [1738] = { 62.7, 40.1, 440, 300 }, + [1739] = { 57.2, 38.6, 440, 300 }, + [1740] = { 56.2, 37.3, 440, 300 }, + [1741] = { 65.3, 35.8, 440, 300 }, + [1742] = { 60, 35.7, 440, 300 }, + [1743] = { 53.4, 34.8, 440, 300 }, + [1744] = { 61.8, 32.8, 440, 300 }, + [1745] = { 59, 32.5, 440, 300 }, + [1746] = { 58.3, 30, 440, 300 }, + [1747] = { 55, 26.5, 440, 300 }, + }, + }, + [1734] = { + ["coords"] = { + [1] = { 8.3, 95.9, 3, 600 }, + [2] = { 6.7, 95.4, 3, 600 }, + [3] = { 7.6, 93.8, 3, 600 }, + [4] = { 10.1, 92.9, 3, 600 }, + [5] = { 15.2, 92.1, 3, 300 }, + [6] = { 15, 92.1, 3, 300 }, + [7] = { 7.4, 91.7, 3, 600 }, + [8] = { 8.5, 90.6, 3, 600 }, + [9] = { 8.9, 90.2, 3, 600 }, + [10] = { 6.5, 90.2, 3, 600 }, + [11] = { 7.6, 89.8, 3, 600 }, + [12] = { 10.2, 89.6, 3, 600 }, + [13] = { 16.2, 88.1, 3, 300 }, + [14] = { 9.5, 88, 3, 600 }, + [15] = { 56.3, 87.7, 3, 300 }, + [16] = { 7.5, 87.4, 3, 600 }, + [17] = { 15.1, 85.8, 3, 300 }, + [18] = { 45.4, 84.6, 3, 300 }, + [19] = { 20.8, 82.2, 3, 300 }, + [20] = { 42.2, 82, 3, 300 }, + [21] = { 56, 81.9, 3, 300 }, + [22] = { 15.1, 81.7, 3, 300 }, + [23] = { 4, 80.4, 3, 300 }, + [24] = { 42.1, 78.8, 3, 300 }, + [25] = { 25.3, 78.2, 3, 300 }, + [26] = { 42.3, 77.9, 3, 300 }, + [27] = { 11.5, 77.9, 3, 300 }, + [28] = { 51, 77.6, 3, 300 }, + [29] = { 6.1, 77.3, 3, 300 }, + [30] = { 32, 76.5, 3, 300 }, + [31] = { 45.1, 76.5, 3, 300 }, + [32] = { 56.9, 75.8, 3, 300 }, + [33] = { 36.7, 75.5, 3, 300 }, + [34] = { 18.5, 74.8, 3, 300 }, + [35] = { 43.5, 74.1, 3, 300 }, + [36] = { 61.7, 73.6, 3, 300 }, + [37] = { 7.6, 73.3, 3, 300 }, + [38] = { 22.6, 73.3, 3, 300 }, + [39] = { 31.7, 72.6, 3, 300 }, + [40] = { 64.6, 72, 3, 300 }, + [41] = { 24.8, 71.6, 3, 300 }, + [42] = { 18, 70.3, 3, 300 }, + [43] = { 64, 68.8, 3, 300 }, + [44] = { 71.7, 67.2, 3, 300 }, + [45] = { 26.7, 66.8, 3, 300 }, + [46] = { 23.9, 66.4, 3, 300 }, + [47] = { 76, 66.2, 3, 300 }, + [48] = { 80.7, 65.6, 3, 300 }, + [49] = { 41.4, 65.5, 3, 300 }, + [50] = { 9.1, 65.4, 3, 300 }, + [51] = { 20.1, 64.5, 3, 300 }, + [52] = { 61.2, 64, 3, 300 }, + [53] = { 63.5, 63.6, 3, 300 }, + [54] = { 20.2, 61.4, 3, 300 }, + [55] = { 23.7, 61.3, 3, 300 }, + [56] = { 72.8, 61, 3, 300 }, + [57] = { 28.7, 60.6, 3, 300 }, + [58] = { 82.9, 59.8, 3, 300 }, + [59] = { 42.5, 59.1, 3, 300 }, + [60] = { 12.9, 58.9, 3, 300 }, + [61] = { 49.4, 58.2, 3, 300 }, + [62] = { 63, 56.3, 3, 300 }, + [63] = { 78.8, 55.7, 3, 300 }, + [64] = { 10.8, 55.3, 3, 300 }, + [65] = { 83.9, 54.8, 3, 300 }, + [66] = { 45.9, 54.6, 3, 300 }, + [67] = { 15, 54.5, 3, 300 }, + [68] = { 35.6, 54.1, 3, 300 }, + [69] = { 30.8, 53.1, 3, 300 }, + [70] = { 51.5, 52.9, 3, 300 }, + [71] = { 34.3, 51.9, 3, 300 }, + [72] = { 40.7, 51.4, 3, 300 }, + [73] = { 68.7, 51.1, 3, 300 }, + [74] = { 44.4, 49.4, 3, 300 }, + [75] = { 77.9, 48.7, 3, 300 }, + [76] = { 14.8, 48.6, 3, 300 }, + [77] = { 37.6, 47.7, 3, 300 }, + [78] = { 52.1, 46.3, 3, 300 }, + [79] = { 78.4, 46.1, 3, 300 }, + [80] = { 58.9, 45.9, 3, 300 }, + [81] = { 82.6, 44.9, 3, 300 }, + [82] = { 32.3, 44.1, 3, 300 }, + [83] = { 78.2, 43.8, 3, 300 }, + [84] = { 65.4, 43.2, 3, 300 }, + [85] = { 83.5, 39.9, 3, 300 }, + [86] = { 14.3, 39.8, 3, 300 }, + [87] = { 35.5, 39, 3, 300 }, + [88] = { 15.3, 37.9, 3, 300 }, + [89] = { 52.4, 35.9, 3, 300 }, + [90] = { 15.5, 35.5, 3, 600 }, + [91] = { 12.1, 35.1, 3, 300 }, + [92] = { 14.9, 34.6, 3, 600 }, + [93] = { 72.3, 34.5, 3, 300 }, + [94] = { 16.5, 34.4, 3, 600 }, + [95] = { 79.8, 33.4, 3, 300 }, + [96] = { 83.9, 33, 3, 300 }, + [97] = { 59.5, 24.7, 3, 300 }, + [98] = { 56.2, 20.8, 3, 300 }, + [99] = { 39.3, 18.2, 3, 600 }, + [100] = { 38.6, 17.9, 3, 600 }, + [101] = { 52.5, 16.9, 3, 300 }, + [102] = { 40.2, 14, 3, 600 }, + [103] = { 54.2, 13.3, 3, 300 }, + [104] = { 40.9, 12.3, 3, 600 }, + [105] = { 43.7, 11.7, 3, 600 }, + [106] = { 63, 58.1, 4, 300 }, + [107] = { 50.8, 57.6, 4, 300 }, + [108] = { 57.6, 52.2, 4, 300 }, + [109] = { 45.1, 51, 4, 300 }, + [110] = { 55.8, 44.3, 4, 300 }, + [111] = { 50.1, 43.7, 4, 600 }, + [112] = { 64.6, 41.2, 4, 300 }, + [113] = { 58.4, 40.5, 4, 300 }, + [114] = { 62.9, 36.8, 4, 300 }, + [115] = { 48.9, 35, 4, 300 }, + [116] = { 58.6, 33, 4, 300 }, + [117] = { 65.1, 32.2, 4, 600 }, + [118] = { 66.8, 32, 4, 600 }, + [119] = { 43.5, 30.8, 4, 300 }, + [120] = { 69.7, 30.7, 4, 300 }, + [121] = { 49.8, 27.5, 4, 300 }, + [122] = { 63.4, 25.1, 4, 300 }, + [123] = { 72.6, 19.1, 4, 600 }, + [124] = { 72.8, 17.8, 4, 600 }, + [125] = { 73.2, 17.2, 4, 600 }, + [126] = { 71.8, 16.8, 4, 600 }, + [127] = { 71.8, 15.5, 4, 600 }, + [128] = { 71, 14.5, 4, 600 }, + [129] = { 74, 13.9, 4, 600 }, + [130] = { 71.4, 12.7, 4, 600 }, + [131] = { 73.1, 11.8, 4, 600 }, + [132] = { 76.1, 89.3, 8, 300 }, + [133] = { 71.8, 88.3, 8, 300 }, + [134] = { 63.5, 87.9, 8, 600 }, + [135] = { 64.1, 86.9, 8, 600 }, + [136] = { 66.5, 86.3, 8, 600 }, + [137] = { 62.1, 84.5, 8, 600 }, + [138] = { 60.9, 83, 8, 600 }, + [139] = { 65.3, 82.1, 8, 600 }, + [140] = { 68.9, 81.7, 8, 300 }, + [141] = { 61.5, 80.4, 8, 600 }, + [142] = { 64, 79.1, 8, 600 }, + [143] = { 66.5, 78.9, 8, 600 }, + [144] = { 64.5, 73.3, 8, 300 }, + [145] = { 13, 69.3, 8, 300 }, + [146] = { 10.4, 66, 8, 300 }, + [147] = { 23.7, 65.9, 8, 300 }, + [148] = { 57.8, 65.4, 8, 300 }, + [149] = { 17.7, 65.3, 8, 300 }, + [150] = { 27.7, 65.2, 8, 300 }, + [151] = { 30.2, 63.1, 8, 300 }, + [152] = { 74.7, 59.8, 8, 300 }, + [153] = { 10.6, 58.5, 8, 300 }, + [154] = { 17.7, 57.8, 8, 300 }, + [155] = { 64.9, 57.5, 8, 300 }, + [156] = { 21.5, 57.5, 8, 300 }, + [157] = { 5.9, 51.2, 8, 300 }, + [158] = { 74.5, 49.9, 8, 300 }, + [159] = { 65.7, 49.4, 8, 300 }, + [160] = { 71.4, 44.9, 8, 300 }, + [161] = { 28.8, 43.4, 8, 300 }, + [162] = { 15.7, 42.6, 8, 300 }, + [163] = { 18.4, 36.5, 8, 300 }, + [164] = { 21.1, 35.6, 8, 300 }, + [165] = { 23.5, 35.2, 8, 300 }, + [166] = { 7, 34.8, 8, 300 }, + [167] = { 14.9, 34.4, 8, 300 }, + [168] = { 5.5, 30.8, 8, 300 }, + [169] = { 35.6, 29.3, 8, 300 }, + [170] = { 13.3, 29.1, 8, 300 }, + [171] = { 31.7, 28.5, 8, 300 }, + [172] = { 38.8, 28.4, 8, 300 }, + [173] = { 42.9, 27.3, 8, 300 }, + [174] = { 51.9, 27.3, 8, 300 }, + [175] = { 48.7, 26.7, 8, 300 }, + [176] = { 61, 19.2, 8, 300 }, + [177] = { 65.9, 9.8, 8, 300 }, + [178] = { 72.2, 6.9, 8, 300 }, + [179] = { 37.3, 83.1, 10, 300 }, + [180] = { 62.2, 83, 10, 300 }, + [181] = { 35.9, 81.5, 10, 300 }, + [182] = { 74.1, 80.2, 10, 300 }, + [183] = { 36.4, 79.8, 10, 300 }, + [184] = { 63, 79.2, 10, 300 }, + [185] = { 74.4, 78.9, 10, 300 }, + [186] = { 65.6, 77.7, 10, 300 }, + [187] = { 36, 77.1, 10, 300 }, + [188] = { 73.7, 76.8, 10, 300 }, + [189] = { 72, 75.8, 10, 300 }, + [190] = { 32.8, 73.8, 10, 300 }, + [191] = { 67.5, 71.9, 10, 300 }, + [192] = { 64.5, 53.4, 10, 300 }, + [193] = { 64, 52.5, 10, 300 }, + [194] = { 87.2, 49.1, 10, 300 }, + [195] = { 85.9, 47, 10, 300 }, + [196] = { 57.7, 46.8, 10, 300 }, + [197] = { 79.5, 40.5, 10, 300 }, + [198] = { 59.8, 40, 10, 300 }, + [199] = { 77.3, 38.8, 10, 300 }, + [200] = { 26.7, 37.7, 10, 300 }, + [201] = { 58.6, 37.7, 10, 300 }, + [202] = { 82.9, 35.9, 10, 300 }, + [203] = { 25.9, 34, 10, 300 }, + [204] = { 85.2, 32.5, 10, 300 }, + [205] = { 57.1, 31.5, 10, 300 }, + [206] = { 78.7, 29, 10, 300 }, + [207] = { 81.2, 28.7, 10, 300 }, + [208] = { 49.4, 52.2, 11, 300 }, + [209] = { 53.2, 52.1, 11, 300 }, + [210] = { 48.6, 50.3, 11, 300 }, + [211] = { 41.9, 46.2, 11, 300 }, + [212] = { 38.1, 45.4, 11, 300 }, + [213] = { 69.4, 34, 11, 300 }, + [214] = { 68.5, 31.1, 11, 300 }, + [215] = { 64.9, 30.9, 11, 300 }, + [216] = { 70.2, 30.7, 11, 300 }, + [217] = { 67.2, 30.4, 11, 300 }, + [218] = { 71.1, 29.9, 11, 300 }, + [219] = { 68.9, 29.7, 11, 300 }, + [220] = { 69.7, 28.8, 11, 300 }, + [221] = { 69, 28.6, 11, 300 }, + [222] = { 67.3, 28.2, 11, 300 }, + [223] = { 70.5, 28.2, 11, 300 }, + [224] = { 68.8, 27.5, 11, 300 }, + [225] = { 64.2, 26.7, 11, 300 }, + [226] = { 63, 25.2, 11, 300 }, + [227] = { 61.5, 24, 11, 300 }, + [228] = { 60.6, 21.1, 11, 300 }, + [229] = { 33, 7.7, 11, 300 }, + [230] = { 30.4, 7, 11, 300 }, + [231] = { 33.9, 5.8, 11, 300 }, + [232] = { 52.6, 85.5, 15, 300 }, + [233] = { 49.7, 84.2, 15, 300 }, + [234] = { 55.3, 83.9, 15, 300 }, + [235] = { 44.2, 82.3, 15, 300 }, + [236] = { 42, 82, 15, 300 }, + [237] = { 57.6, 80, 15, 300 }, + [238] = { 40.8, 77.7, 15, 300 }, + [239] = { 58.1, 75.6, 15, 300 }, + [240] = { 39.8, 74.8, 15, 300 }, + [241] = { 37.5, 74.4, 15, 300 }, + [242] = { 33.5, 72.4, 15, 300 }, + [243] = { 57.1, 71.7, 15, 300 }, + [244] = { 38, 69.6, 15, 600 }, + [245] = { 36.3, 69.5, 15, 600 }, + [246] = { 54.6, 68.8, 15, 300 }, + [247] = { 36.8, 68.6, 15, 600 }, + [248] = { 37.8, 68.6, 15, 600 }, + [249] = { 38.3, 68.4, 15, 600 }, + [250] = { 37.6, 68.2, 15, 600 }, + [251] = { 37.7, 67.8, 15, 600 }, + [252] = { 38.8, 67.6, 15, 600 }, + [253] = { 38.6, 67.1, 15, 600 }, + [254] = { 37, 67.1, 15, 600 }, + [255] = { 37.8, 67, 15, 600 }, + [256] = { 38.7, 66.1, 15, 600 }, + [257] = { 31.4, 66, 15, 600 }, + [258] = { 30.9, 65.8, 15, 600 }, + [259] = { 31.1, 65.7, 15, 600 }, + [260] = { 33.3, 50, 15, 300 }, + [261] = { 54.5, 46.5, 15, 300 }, + [262] = { 47.3, 45, 15, 300 }, + [263] = { 45.5, 40.7, 15, 300 }, + [264] = { 49.1, 39.3, 15, 300 }, + [265] = { 54.6, 35.6, 15, 300 }, + [266] = { 48.1, 34.5, 15, 300 }, + [267] = { 46.3, 33.1, 15, 300 }, + [268] = { 44.7, 29.1, 15, 300 }, + [269] = { 39.9, 27.3, 15, 300 }, + [270] = { 48.3, 26.8, 15, 300 }, + [271] = { 32.5, 23.3, 15, 600 }, + [272] = { 31.2, 22.6, 15, 600 }, + [273] = { 59.8, 22.5, 15, 300 }, + [274] = { 33.2, 22.4, 15, 600 }, + [275] = { 30.7, 22.3, 15, 600 }, + [276] = { 31.4, 21.7, 15, 600 }, + [277] = { 30.2, 21.7, 15, 600 }, + [278] = { 31.1, 21.6, 15, 600 }, + [279] = { 31.8, 21.4, 15, 600 }, + [280] = { 31.1, 20.9, 15, 600 }, + [281] = { 31.3, 20.4, 15, 600 }, + [282] = { 30.5, 20.3, 15, 600 }, + [283] = { 55.8, 19.5, 15, 300 }, + [284] = { 63.3, 18.9, 15, 300 }, + [285] = { 62.1, 18.1, 15, 300 }, + [286] = { 46.6, 15.8, 15, 300 }, + [287] = { 53.6, 15, 15, 300 }, + [288] = { 48.3, 14.1, 15, 300 }, + [289] = { 37.3, 12.4, 15, 300 }, + [290] = { 59.9, 8.4, 15, 300 }, + [291] = { 63.3, 6.9, 15, 300 }, + [292] = { 51.6, 98.8, 16, 300 }, + [293] = { 61.4, 91.7, 16, 300 }, + [294] = { 49.1, 91.5, 16, 300 }, + [295] = { 61.1, 89.2, 16, 300 }, + [296] = { 54.2, 88.5, 16, 300 }, + [297] = { 64.4, 86.8, 16, 300 }, + [298] = { 37.8, 85.8, 16, 300 }, + [299] = { 41.9, 84.5, 16, 300 }, + [300] = { 38.7, 78.4, 16, 300 }, + [301] = { 54.8, 76.9, 16, 300 }, + [302] = { 43.9, 74.9, 16, 300 }, + [303] = { 14.2, 74.3, 16, 300 }, + [304] = { 15.5, 71.3, 16, 300 }, + [305] = { 15.4, 68.2, 16, 300 }, + [306] = { 21.6, 61.8, 16, 300 }, + [307] = { 19.4, 60.9, 16, 300 }, + [308] = { 49.4, 59.8, 16, 300 }, + [309] = { 43.5, 53.1, 16, 300 }, + [310] = { 54.5, 49.1, 16, 300 }, + [311] = { 30.9, 45.6, 16, 300 }, + [312] = { 45.2, 45.4, 16, 300 }, + [313] = { 32.7, 41.7, 16, 300 }, + [314] = { 42.1, 40.5, 16, 300 }, + [315] = { 34.4, 39.6, 16, 300 }, + [316] = { 36.7, 36.4, 16, 300 }, + [317] = { 75.6, 31.7, 16, 300 }, + [318] = { 79.2, 31.4, 16, 300 }, + [319] = { 57.1, 31, 16, 300 }, + [320] = { 59.8, 28.6, 16, 300 }, + [321] = { 70.5, 22.3, 16, 300 }, + [322] = { 51.9, 20.3, 16, 300 }, + [323] = { 86.7, 19.5, 16, 300 }, + [324] = { 63.6, 19.4, 16, 300 }, + [325] = { 43.3, 17.6, 16, 300 }, + [326] = { 82.1, 15.6, 16, 300 }, + [327] = { 64.5, 14.4, 16, 300 }, + [328] = { 73.8, 12.6, 16, 300 }, + [329] = { 78.9, 9.4, 16, 300 }, + [330] = { 63.7, 9.4, 16, 300 }, + [331] = { 49.5, 98.9, 17, 300 }, + [332] = { 49.6, 98.5, 17, 300 }, + [333] = { 49.3, 98.4, 17, 300 }, + [334] = { 48.5, 97.8, 17, 300 }, + [335] = { 48.9, 97.7, 17, 300 }, + [336] = { 49.4, 97.1, 17, 300 }, + [337] = { 48.5, 97.1, 17, 300 }, + [338] = { 48.6, 97.1, 17, 300 }, + [339] = { 48.9, 97, 17, 300 }, + [340] = { 49, 96.9, 17, 300 }, + [341] = { 48.2, 96.9, 17, 300 }, + [342] = { 49.1, 96.8, 17, 300 }, + [343] = { 46.9, 96.8, 17, 300 }, + [344] = { 48.7, 96.6, 17, 300 }, + [345] = { 49.6, 96.6, 17, 300 }, + [346] = { 48.2, 96.4, 17, 300 }, + [347] = { 48.4, 96.2, 17, 300 }, + [348] = { 48.6, 96.1, 17, 300 }, + [349] = { 49.2, 96, 17, 300 }, + [350] = { 42.1, 95.3, 17, 300 }, + [351] = { 45.5, 95.1, 17, 300 }, + [352] = { 42.4, 94.8, 17, 300 }, + [353] = { 45.2, 94.5, 17, 300 }, + [354] = { 40.6, 93.2, 17, 300 }, + [355] = { 54.9, 92.5, 17, 300 }, + [356] = { 40.5, 92.3, 17, 300 }, + [357] = { 52.9, 91.5, 17, 300 }, + [358] = { 55.2, 90, 17, 600 }, + [359] = { 54.3, 90, 17, 600 }, + [360] = { 54.6, 89.5, 17, 600 }, + [361] = { 55.1, 89.5, 17, 600 }, + [362] = { 55.4, 89.4, 17, 600 }, + [363] = { 55, 89.3, 17, 600 }, + [364] = { 55, 89.1, 17, 600 }, + [365] = { 54.7, 88.7, 17, 600 }, + [366] = { 55.1, 88.7, 17, 600 }, + [367] = { 51.8, 88.2, 17, 600 }, + [368] = { 51.5, 88.1, 17, 600 }, + [369] = { 51.6, 88, 17, 600 }, + [370] = { 52.8, 79.9, 17, 300 }, + [371] = { 52.4, 66, 17, 600 }, + [372] = { 51.6, 65.7, 17, 600 }, + [373] = { 52.7, 65.5, 17, 600 }, + [374] = { 51.4, 65.5, 17, 600 }, + [375] = { 51.8, 65.2, 17, 600 }, + [376] = { 51.2, 65.2, 17, 600 }, + [377] = { 51.6, 65.1, 17, 600 }, + [378] = { 52, 65.1, 17, 600 }, + [379] = { 51.6, 64.8, 17, 600 }, + [380] = { 51.7, 64.5, 17, 600 }, + [381] = { 51.3, 64.5, 17, 600 }, + [382] = { 60.5, 61.2, 17, 300 }, + [383] = { 54.8, 60.4, 17, 300 }, + [384] = { 66.5, 58.3, 17, 300 }, + [385] = { 68.3, 57.5, 17, 300 }, + [386] = { 54.8, 0.8, 17, 300 }, + [387] = { 48.9, 98.4, 28, 300 }, + [388] = { 41.5, 93.4, 28, 300 }, + [389] = { 34.7, 92.1, 28, 300 }, + [390] = { 33.5, 87.9, 28, 300 }, + [391] = { 31, 83.6, 28, 300 }, + [392] = { 38.4, 82.9, 28, 300 }, + [393] = { 29.7, 80.8, 28, 300 }, + [394] = { 55.1, 80.5, 28, 300 }, + [395] = { 48, 79.7, 28, 300 }, + [396] = { 34.8, 79.7, 28, 300 }, + [397] = { 44.1, 79, 28, 300 }, + [398] = { 53.1, 76.9, 28, 300 }, + [399] = { 49.1, 76.3, 28, 300 }, + [400] = { 32.9, 74.6, 28, 300 }, + [401] = { 51.1, 74.3, 28, 300 }, + [402] = { 39.9, 73.3, 28, 300 }, + [403] = { 40.1, 73.1, 28, 300 }, + [404] = { 53.3, 71.2, 28, 300 }, + [405] = { 51.1, 70.3, 28, 300 }, + [406] = { 49.8, 69.1, 28, 300 }, + [407] = { 35.3, 68.5, 28, 300 }, + [408] = { 55.6, 67.9, 28, 300 }, + [409] = { 38.1, 67.6, 28, 300 }, + [410] = { 33, 67.2, 28, 300 }, + [411] = { 50.2, 67, 28, 300 }, + [412] = { 29.9, 65.8, 28, 300 }, + [413] = { 41.1, 65.4, 28, 300 }, + [414] = { 49.2, 63.8, 28, 300 }, + [415] = { 44.6, 62.5, 28, 300 }, + [416] = { 45.1, 62.2, 28, 300 }, + [417] = { 79.3, 60.6, 28, 300 }, + [418] = { 33.2, 58.7, 28, 300 }, + [419] = { 72.9, 55.1, 28, 300 }, + [420] = { 33.7, 53.5, 28, 300 }, + [421] = { 34.2, 51.8, 28, 300 }, + [422] = { 40.2, 48.7, 28, 300 }, + [423] = { 73.7, 39.8, 28, 300 }, + [424] = { 40.2, 85.4, 33, 300 }, + [425] = { 38.7, 82.8, 33, 300 }, + [426] = { 27.3, 81.7, 33, 300 }, + [427] = { 39.5, 81.6, 33, 300 }, + [428] = { 29.4, 80.4, 33, 300 }, + [429] = { 38.6, 80.1, 33, 300 }, + [430] = { 32.4, 75, 33, 300 }, + [431] = { 34.7, 72.5, 33, 300 }, + [432] = { 29.8, 68.9, 33, 300 }, + [433] = { 32.8, 68.2, 33, 300 }, + [434] = { 32.1, 65.6, 33, 300 }, + [435] = { 31.4, 65.3, 33, 300 }, + [436] = { 35.6, 64.3, 33, 300 }, + [437] = { 34.8, 64.1, 33, 300 }, + [438] = { 36.9, 63.8, 33, 300 }, + [439] = { 27.6, 63.1, 33, 300 }, + [440] = { 26.5, 62.6, 33, 300 }, + [441] = { 33.6, 62, 33, 300 }, + [442] = { 36.7, 61.9, 33, 300 }, + [443] = { 25.2, 61.8, 33, 300 }, + [444] = { 27.7, 61.3, 33, 300 }, + [445] = { 25.6, 60.3, 33, 300 }, + [446] = { 29.4, 60.1, 33, 300 }, + [447] = { 35.7, 58.9, 33, 300 }, + [448] = { 40.8, 57.1, 33, 300 }, + [449] = { 38, 56.7, 33, 300 }, + [450] = { 37, 56.5, 33, 300 }, + [451] = { 35.1, 56.4, 33, 300 }, + [452] = { 24.7, 55.3, 33, 300 }, + [453] = { 30.2, 52.9, 33, 300 }, + [454] = { 25.2, 52.5, 33, 300 }, + [455] = { 40.7, 51.9, 33, 300 }, + [456] = { 38.3, 49.9, 33, 300 }, + [457] = { 37.2, 49.5, 33, 300 }, + [458] = { 43.8, 49.4, 33, 600 }, + [459] = { 39.7, 49.4, 33, 300 }, + [460] = { 43.2, 49.4, 33, 600 }, + [461] = { 38.1, 49.1, 33, 300 }, + [462] = { 42.9, 48.9, 33, 600 }, + [463] = { 42.4, 48.6, 33, 600 }, + [464] = { 43.3, 48.5, 33, 600 }, + [465] = { 42.5, 47.8, 33, 600 }, + [466] = { 42.2, 46.2, 33, 600 }, + [467] = { 43.7, 46.1, 33, 600 }, + [468] = { 43, 45.9, 33, 600 }, + [469] = { 32.2, 45.8, 33, 300 }, + [470] = { 39.9, 45.6, 33, 300 }, + [471] = { 45.3, 45.4, 33, 300 }, + [472] = { 46.6, 45.2, 33, 300 }, + [473] = { 40.3, 43.8, 33, 300 }, + [474] = { 41.4, 43.8, 33, 300 }, + [475] = { 46.7, 43.1, 33, 300 }, + [476] = { 33.1, 42.6, 33, 300 }, + [477] = { 43.3, 42.5, 33, 300 }, + [478] = { 41.3, 42.4, 33, 300 }, + [479] = { 33.6, 41.8, 33, 300 }, + [480] = { 29.8, 41.4, 33, 300 }, + [481] = { 28.7, 40.8, 33, 300 }, + [482] = { 30.6, 39.6, 33, 300 }, + [483] = { 44.4, 39.3, 33, 300 }, + [484] = { 45, 38.5, 33, 300 }, + [485] = { 47.6, 38.3, 33, 300 }, + [486] = { 31.3, 38.1, 33, 300 }, + [487] = { 41.9, 37, 33, 300 }, + [488] = { 51, 36.6, 33, 300 }, + [489] = { 39.4, 36, 33, 300 }, + [490] = { 37.6, 35.4, 33, 300 }, + [491] = { 35.4, 34.6, 33, 300 }, + [492] = { 49.9, 30.4, 33, 300 }, + [493] = { 51.5, 28.7, 33, 600 }, + [494] = { 47.9, 28.6, 33, 300 }, + [495] = { 50, 28.4, 33, 300 }, + [496] = { 51.3, 28.2, 33, 600 }, + [497] = { 50.1, 28.2, 33, 600 }, + [498] = { 52.3, 28.1, 33, 600 }, + [499] = { 50.4, 27.9, 33, 600 }, + [500] = { 50.8, 27.8, 33, 600 }, + [501] = { 50.3, 27.2, 33, 600 }, + [502] = { 51, 26.9, 33, 600 }, + [503] = { 52.2, 26.7, 33, 600 }, + [504] = { 51.2, 26.4, 33, 600 }, + [505] = { 52, 26.4, 33, 600 }, + [506] = { 44.6, 26, 33, 300 }, + [507] = { 51, 25, 33, 300 }, + [508] = { 47, 22.6, 33, 300 }, + [509] = { 49.8, 20.7, 33, 300 }, + [510] = { 47.2, 20.3, 33, 300 }, + [511] = { 26.3, 18, 33, 300 }, + [512] = { 27.6, 18, 33, 300 }, + [513] = { 30, 17.7, 33, 300 }, + [514] = { 32, 17.7, 33, 300 }, + [515] = { 46.2, 17.1, 33, 300 }, + [516] = { 25.7, 15.4, 33, 300 }, + [517] = { 29.3, 15.3, 33, 300 }, + [518] = { 50.6, 14.9, 33, 300 }, + [519] = { 41.5, 14.3, 33, 300 }, + [520] = { 34.2, 14.2, 33, 300 }, + [521] = { 43.4, 13.8, 33, 300 }, + [522] = { 31.3, 13.8, 33, 300 }, + [523] = { 27.4, 13.6, 33, 300 }, + [524] = { 49.7, 13.6, 33, 300 }, + [525] = { 32.1, 12.4, 33, 300 }, + [526] = { 29.8, 12.1, 33, 300 }, + [527] = { 42.8, 10, 33, 300 }, + [528] = { 31.3, 9.5, 33, 300 }, + [529] = { 49.2, 9, 33, 300 }, + [530] = { 49.2, 8.8, 33, 600 }, + [531] = { 46.1, 8.3, 33, 600 }, + [532] = { 48.3, 8.2, 33, 300 }, + [533] = { 49, 8, 33, 600 }, + [534] = { 27.3, 7.9, 33, 300 }, + [535] = { 30.5, 7.6, 33, 300 }, + [536] = { 46.5, 7.5, 33, 600 }, + [537] = { 49.7, 7.1, 33, 600 }, + [538] = { 28.9, 7, 33, 300 }, + [539] = { 47.2, 7, 33, 600 }, + [540] = { 48.5, 6.9, 33, 600 }, + [541] = { 48.1, 6.5, 33, 600 }, + [542] = { 46.1, 6.5, 33, 600 }, + [543] = { 49.5, 6.5, 33, 600 }, + [544] = { 48.9, 6.4, 33, 600 }, + [545] = { 46.7, 5.7, 33, 600 }, + [546] = { 49.2, 5.6, 33, 600 }, + [547] = { 49.6, 5.6, 33, 600 }, + [548] = { 47.8, 5.4, 33, 600 }, + [549] = { 37.5, 1, 33, 300 }, + [550] = { 38.7, 97.3, 36, 600 }, + [551] = { 38.4, 96, 36, 600 }, + [552] = { 42.8, 95.1, 36, 600 }, + [553] = { 40, 94.9, 36, 600 }, + [554] = { 37.6, 94.6, 36, 600 }, + [555] = { 41.5, 94, 36, 600 }, + [556] = { 38.9, 93.9, 36, 600 }, + [557] = { 39.8, 93.3, 36, 600 }, + [558] = { 39.3, 92.1, 36, 600 }, + [559] = { 40.1, 91.3, 36, 600 }, + [560] = { 40.7, 91.1, 36, 600 }, + [561] = { 39.1, 90.6, 36, 600 }, + [562] = { 40.6, 90.4, 36, 300 }, + [563] = { 41.8, 89.7, 36, 600 }, + [564] = { 35.1, 89.3, 36, 300 }, + [565] = { 45.7, 89.2, 36, 300 }, + [566] = { 39.2, 88.7, 36, 600 }, + [567] = { 32.8, 88.7, 36, 300 }, + [568] = { 40.3, 88.6, 36, 600 }, + [569] = { 42.4, 88.5, 36, 300 }, + [570] = { 41, 86.9, 36, 600 }, + [571] = { 44.4, 84.2, 36, 300 }, + [572] = { 35.9, 82, 36, 300 }, + [573] = { 37, 73.7, 36, 300 }, + [574] = { 41, 72.8, 36, 300 }, + [575] = { 37.1, 68, 36, 600 }, + [576] = { 38.1, 67.8, 36, 600 }, + [577] = { 36.8, 67.3, 36, 600 }, + [578] = { 38.2, 67.1, 36, 600 }, + [579] = { 29.6, 66.2, 36, 300 }, + [580] = { 46.1, 66.1, 36, 300 }, + [581] = { 37.9, 66, 36, 600 }, + [582] = { 37.2, 65.8, 36, 600 }, + [583] = { 32.3, 65, 36, 300 }, + [584] = { 65.9, 63.2, 36, 300 }, + [585] = { 32.6, 61.3, 36, 300 }, + [586] = { 37.7, 61, 36, 300 }, + [587] = { 52, 58.2, 36, 300 }, + [588] = { 30.8, 56.5, 36, 300 }, + [589] = { 85.3, 56.5, 36, 300 }, + [590] = { 60.3, 56.5, 36, 300 }, + [591] = { 27.7, 56.3, 36, 300 }, + [592] = { 33.7, 55.3, 36, 300 }, + [593] = { 63.4, 55.1, 36, 300 }, + [594] = { 75.3, 54.6, 36, 300 }, + [595] = { 31.8, 53.6, 36, 300 }, + [596] = { 77.7, 53.4, 36, 300 }, + [597] = { 41.5, 52.2, 36, 300 }, + [598] = { 67.2, 51.9, 36, 300 }, + [599] = { 88.2, 51.1, 36, 300 }, + [600] = { 27.1, 51.1, 36, 300 }, + [601] = { 43.6, 50.9, 36, 300 }, + [602] = { 53.6, 50.6, 36, 600 }, + [603] = { 63.6, 49.3, 36, 300 }, + [604] = { 53.1, 49.2, 36, 600 }, + [605] = { 54.7, 49.1, 36, 600 }, + [606] = { 53.9, 48.6, 36, 600 }, + [607] = { 51.2, 48.5, 36, 600 }, + [608] = { 51.2, 47.3, 36, 600 }, + [609] = { 52.5, 47.2, 36, 600 }, + [610] = { 53.9, 46.8, 36, 300 }, + [611] = { 54.1, 46.5, 36, 600 }, + [612] = { 52.9, 46.5, 36, 600 }, + [613] = { 52.2, 46.1, 36, 600 }, + [614] = { 54.2, 45.9, 36, 600 }, + [615] = { 51.2, 45.8, 36, 600 }, + [616] = { 49.1, 45.6, 36, 600 }, + [617] = { 50.5, 45.5, 36, 600 }, + [618] = { 54, 45.3, 36, 600 }, + [619] = { 52.8, 45, 36, 600 }, + [620] = { 49.1, 44.8, 36, 600 }, + [621] = { 42.9, 44.6, 36, 300 }, + [622] = { 49.2, 44.5, 36, 600 }, + [623] = { 49.6, 44.5, 36, 600 }, + [624] = { 51.3, 43.9, 36, 600 }, + [625] = { 76.9, 43.5, 36, 300 }, + [626] = { 50.2, 43.4, 36, 600 }, + [627] = { 51.1, 42, 36, 300 }, + [628] = { 45.9, 41.8, 36, 300 }, + [629] = { 51.6, 41.7, 36, 300 }, + [630] = { 66.4, 41.5, 36, 300 }, + [631] = { 55.1, 40.6, 36, 300 }, + [632] = { 32.9, 39.9, 36, 300 }, + [633] = { 35.6, 39.7, 36, 300 }, + [634] = { 40.3, 38.6, 36, 300 }, + [635] = { 44.3, 38.5, 36, 300 }, + [636] = { 38.6, 37.4, 36, 300 }, + [637] = { 52.7, 36.8, 36, 300 }, + [638] = { 64.5, 35, 36, 300 }, + [639] = { 47.5, 34.3, 36, 600 }, + [640] = { 48.3, 34.3, 36, 600 }, + [641] = { 47.1, 33.8, 36, 600 }, + [642] = { 48.5, 32.8, 36, 600 }, + [643] = { 48, 32.7, 36, 600 }, + [644] = { 37.9, 32.5, 36, 300 }, + [645] = { 48, 32.1, 36, 600 }, + [646] = { 40.2, 30.7, 36, 300 }, + [647] = { 56.8, 29.8, 36, 300 }, + [648] = { 60.7, 28.4, 36, 300 }, + [649] = { 50.6, 27, 36, 300 }, + [650] = { 41.9, 24.8, 36, 300 }, + [651] = { 58.7, 24.1, 36, 300 }, + [652] = { 54.5, 20, 36, 300 }, + [653] = { 47.2, 16.1, 36, 300 }, + [654] = { 44.4, 15.2, 36, 300 }, + [655] = { 40.9, 15, 36, 300 }, + [656] = { 38.4, 10.6, 36, 300 }, + [657] = { 37.9, 92.3, 38, 600 }, + [658] = { 36.8, 91.6, 38, 600 }, + [659] = { 37.5, 90.5, 38, 600 }, + [660] = { 32, 90.4, 38, 600 }, + [661] = { 33.3, 89.2, 38, 600 }, + [662] = { 39.4, 88.8, 38, 600 }, + [663] = { 52, 88.2, 38, 300 }, + [664] = { 40, 87.3, 38, 600 }, + [665] = { 37.7, 86.8, 38, 600 }, + [666] = { 42.5, 86.8, 38, 600 }, + [667] = { 24.7, 92.8, 45, 300 }, + [668] = { 21.7, 91.9, 45, 300 }, + [669] = { 25.7, 90.6, 45, 300 }, + [670] = { 22.6, 90, 45, 300 }, + [671] = { 18.3, 89.4, 45, 300 }, + [672] = { 28.4, 88.2, 45, 300 }, + [673] = { 21.5, 87.9, 45, 300 }, + [674] = { 26.9, 87.8, 45, 300 }, + [675] = { 23.9, 85.4, 45, 300 }, + [676] = { 22.2, 85.4, 45, 300 }, + [677] = { 25.6, 85.2, 45, 300 }, + [678] = { 19.2, 83.9, 45, 300 }, + [679] = { 21.3, 82.7, 45, 300 }, + [680] = { 69.2, 82.2, 45, 300 }, + [681] = { 54.5, 82.1, 45, 300 }, + [682] = { 66.6, 81.9, 45, 300 }, + [683] = { 67.9, 81.7, 45, 300 }, + [684] = { 55.1, 81.5, 45, 300 }, + [685] = { 66, 81.3, 45, 300 }, + [686] = { 54.2, 80.6, 45, 300 }, + [687] = { 67.8, 80.5, 45, 300 }, + [688] = { 50.3, 80.4, 45, 300 }, + [689] = { 53.4, 80.3, 45, 300 }, + [690] = { 69.5, 80.2, 45, 300 }, + [691] = { 53.4, 79.7, 45, 300 }, + [692] = { 68.5, 79.6, 45, 300 }, + [693] = { 68.9, 79.1, 45, 300 }, + [694] = { 67.8, 79, 45, 300 }, + [695] = { 54.9, 78.9, 45, 300 }, + [696] = { 70.1, 78.3, 45, 300 }, + [697] = { 54.2, 78, 45, 300 }, + [698] = { 51, 77.7, 45, 300 }, + [699] = { 53.9, 77, 45, 300 }, + [700] = { 52.6, 76.7, 45, 300 }, + [701] = { 57.1, 76.7, 45, 300 }, + [702] = { 67.7, 76.4, 45, 300 }, + [703] = { 55.8, 76.4, 45, 300 }, + [704] = { 41.2, 76.4, 45, 300 }, + [705] = { 21.7, 75.4, 45, 300 }, + [706] = { 65.3, 75.2, 45, 300 }, + [707] = { 53.5, 75.1, 45, 300 }, + [708] = { 22.5, 74.5, 45, 300 }, + [709] = { 66.7, 73.9, 45, 300 }, + [710] = { 63.3, 73.9, 45, 300 }, + [711] = { 69.8, 73.8, 45, 300 }, + [712] = { 55.5, 73.3, 45, 300 }, + [713] = { 17.4, 71.7, 45, 300 }, + [714] = { 18.7, 71.6, 45, 300 }, + [715] = { 24.8, 71.5, 45, 300 }, + [716] = { 53.6, 71.3, 45, 300 }, + [717] = { 46.4, 71.2, 45, 300 }, + [718] = { 70.9, 71.2, 45, 300 }, + [719] = { 57.3, 71.2, 45, 300 }, + [720] = { 16, 70.8, 45, 300 }, + [721] = { 49.4, 70.6, 45, 300 }, + [722] = { 25.9, 70.5, 45, 300 }, + [723] = { 31.8, 70.2, 45, 300 }, + [724] = { 15.6, 67.6, 45, 300 }, + [725] = { 69.8, 67.5, 45, 300 }, + [726] = { 34.1, 67.3, 45, 300 }, + [727] = { 72.6, 66.9, 45, 300 }, + [728] = { 67.3, 66.5, 45, 300 }, + [729] = { 65.3, 65.7, 45, 300 }, + [730] = { 54.8, 64.6, 45, 300 }, + [731] = { 16, 64.2, 45, 300 }, + [732] = { 73.8, 63.7, 45, 300 }, + [733] = { 37.5, 63.5, 45, 300 }, + [734] = { 34.9, 61.9, 45, 300 }, + [735] = { 73.3, 59, 45, 300 }, + [736] = { 70.2, 57.5, 45, 300 }, + [737] = { 70.6, 52.4, 45, 300 }, + [738] = { 9.3, 52.4, 45, 300 }, + [739] = { 72.3, 51.9, 45, 300 }, + [740] = { 70.8, 49.5, 45, 300 }, + [741] = { 8, 49.3, 45, 300 }, + [742] = { 54.4, 48.9, 45, 300 }, + [743] = { 50.3, 47.9, 45, 300 }, + [744] = { 74, 47.6, 45, 300 }, + [745] = { 57.5, 46.9, 45, 300 }, + [746] = { 33, 46.6, 45, 300 }, + [747] = { 33.3, 46.6, 45, 300 }, + [748] = { 31.5, 46.2, 45, 300 }, + [749] = { 31.3, 45.6, 45, 300 }, + [750] = { 32.6, 45.3, 45, 300 }, + [751] = { 10.6, 45, 45, 300 }, + [752] = { 34.1, 44.8, 45, 300 }, + [753] = { 33.1, 44.5, 45, 300 }, + [754] = { 30.2, 44.1, 45, 300 }, + [755] = { 61.6, 44, 45, 300 }, + [756] = { 77.5, 43.6, 45, 300 }, + [757] = { 11, 43.6, 45, 300 }, + [758] = { 12.2, 43.3, 45, 300 }, + [759] = { 38.7, 43.1, 45, 300 }, + [760] = { 79.7, 43, 45, 300 }, + [761] = { 32.7, 42.8, 45, 300 }, + [762] = { 34, 41.9, 45, 300 }, + [763] = { 12.1, 40.7, 45, 300 }, + [764] = { 24.7, 36.5, 45, 300 }, + [765] = { 82.4, 35.8, 45, 300 }, + [766] = { 47.8, 35.7, 45, 300 }, + [767] = { 64.4, 35, 45, 300 }, + [768] = { 38.1, 34.5, 45, 300 }, + [769] = { 84.5, 34, 45, 300 }, + [770] = { 85.8, 33.7, 45, 300 }, + [771] = { 19.2, 33.5, 45, 300 }, + [772] = { 84.2, 33, 45, 300 }, + [773] = { 85.4, 32.8, 45, 300 }, + [774] = { 30.7, 32.6, 45, 300 }, + [775] = { 76.7, 32.6, 45, 300 }, + [776] = { 83.6, 32.4, 45, 300 }, + [777] = { 86.1, 31.9, 45, 300 }, + [778] = { 43.4, 31.6, 45, 300 }, + [779] = { 83.4, 31.6, 45, 300 }, + [780] = { 41.7, 31.5, 45, 300 }, + [781] = { 61.6, 31.4, 45, 300 }, + [782] = { 84.6, 30.9, 45, 300 }, + [783] = { 87.4, 30.8, 45, 300 }, + [784] = { 85, 30.8, 45, 300 }, + [785] = { 70.8, 30.7, 45, 300 }, + [786] = { 84.6, 30.7, 45, 300 }, + [787] = { 86.5, 30.5, 45, 300 }, + [788] = { 26.3, 30.3, 45, 300 }, + [789] = { 85.1, 30.2, 45, 300 }, + [790] = { 86.1, 29.8, 45, 300 }, + [791] = { 83.9, 29, 45, 300 }, + [792] = { 84.7, 28.7, 45, 300 }, + [793] = { 40.8, 28.2, 45, 300 }, + [794] = { 69.2, 27.6, 45, 300 }, + [795] = { 84.2, 27.5, 45, 300 }, + [796] = { 65.9, 26.2, 45, 300 }, + [797] = { 36, 25.3, 45, 300 }, + [798] = { 31.9, 22.8, 45, 300 }, + [799] = { 34.4, 21.4, 45, 300 }, + [800] = { 27, 18.5, 45, 300 }, + [801] = { 30.8, 18.2, 45, 300 }, + [802] = { 24.2, 17.7, 45, 300 }, + [803] = { 25.5, 69.9, 46, 300 }, + [804] = { 69.6, 63.3, 46, 300 }, + [805] = { 76.3, 63.2, 46, 300 }, + [806] = { 62.1, 62.1, 46, 300 }, + [807] = { 85.9, 61.2, 46, 300 }, + [808] = { 56.7, 59.3, 46, 300 }, + [809] = { 45.4, 53.4, 46, 300 }, + [810] = { 52.1, 53.2, 46, 300 }, + [811] = { 92.9, 52, 46, 300 }, + [812] = { 84.8, 48.8, 46, 300 }, + [813] = { 76.7, 47.4, 46, 600 }, + [814] = { 81.6, 46.7, 46, 300 }, + [815] = { 83.7, 46.1, 46, 600 }, + [816] = { 58.8, 45.3, 46, 300 }, + [817] = { 80.9, 44.1, 46, 600 }, + [818] = { 79.3, 44.1, 46, 600 }, + [819] = { 76.3, 44.1, 46, 600 }, + [820] = { 78.8, 43.9, 46, 600 }, + [821] = { 77.6, 42.2, 46, 300 }, + [822] = { 80.3, 40.7, 46, 600 }, + [823] = { 81.2, 40, 46, 600 }, + [824] = { 83.1, 39.3, 46, 600 }, + [825] = { 71.4, 39.3, 46, 300 }, + [826] = { 86, 37.1, 46, 300 }, + [827] = { 92.9, 36.9, 46, 300 }, + [828] = { 80.2, 35.4, 46, 300 }, + [829] = { 55.2, 33.3, 46, 300 }, + [830] = { 87.3, 26, 46, 300 }, + [831] = { 79.2, 25.3, 46, 300 }, + [832] = { 69, 23, 46, 600 }, + [833] = { 67.6, 22.6, 46, 600 }, + [834] = { 68.4, 21.2, 46, 600 }, + [835] = { 70.4, 20.4, 46, 600 }, + [836] = { 74.8, 19.8, 46, 300 }, + [837] = { 74.6, 19.8, 46, 300 }, + [838] = { 68.2, 19.4, 46, 600 }, + [839] = { 97.7, 11.2, 46, 300 }, + [840] = { 89.1, 6.5, 46, 300 }, + [841] = { 62.1, 90.2, 47, 300 }, + [842] = { 60, 89.5, 47, 300 }, + [843] = { 60.8, 89.1, 47, 300 }, + [844] = { 60.3, 88, 47, 300 }, + [845] = { 74, 87.3, 47, 300 }, + [846] = { 65.1, 83.3, 47, 300 }, + [847] = { 82.7, 81.5, 47, 300 }, + [848] = { 68.4, 77, 47, 300 }, + [849] = { 33.5, 76, 47, 300 }, + [850] = { 68.5, 74.8, 47, 300 }, + [851] = { 35.5, 74.8, 47, 300 }, + [852] = { 30.7, 74.6, 47, 300 }, + [853] = { 74.6, 74.5, 47, 300 }, + [854] = { 79.5, 74, 47, 300 }, + [855] = { 57.1, 73.6, 47, 300 }, + [856] = { 62.3, 72.5, 47, 300 }, + [857] = { 68.9, 72.3, 47, 300 }, + [858] = { 47.4, 70.6, 47, 300 }, + [859] = { 43.3, 69.5, 47, 300 }, + [860] = { 65.8, 69.4, 47, 300 }, + [861] = { 50.8, 69.3, 47, 300 }, + [862] = { 45.9, 69, 47, 300 }, + [863] = { 27.3, 69, 47, 300 }, + [864] = { 56.6, 68.6, 47, 300 }, + [865] = { 30.1, 68.3, 47, 300 }, + [866] = { 37.4, 68.2, 47, 300 }, + [867] = { 5.1, 67.3, 47, 300 }, + [868] = { 72.6, 66.6, 47, 300 }, + [869] = { 74.3, 66.3, 47, 300 }, + [870] = { 40.6, 65.9, 47, 300 }, + [871] = { 33.4, 65.9, 47, 300 }, + [872] = { 25.6, 65.8, 47, 300 }, + [873] = { 49.8, 65.3, 47, 300 }, + [874] = { 51.7, 65.2, 47, 300 }, + [875] = { 64.1, 64.9, 47, 300 }, + [876] = { 69.3, 64.3, 47, 300 }, + [877] = { 62.5, 64.2, 47, 300 }, + [878] = { 33.9, 64.1, 47, 300 }, + [879] = { 79.7, 63.6, 47, 300 }, + [880] = { 67.1, 62.2, 47, 300 }, + [881] = { 31.1, 60.8, 47, 300 }, + [882] = { 51, 60.4, 47, 300 }, + [883] = { 23.3, 59.8, 47, 300 }, + [884] = { 52.4, 59.7, 47, 300 }, + [885] = { 77.3, 59.5, 47, 300 }, + [886] = { 31.3, 59.4, 47, 300 }, + [887] = { 62.8, 59.3, 47, 300 }, + [888] = { 41.1, 59.2, 47, 300 }, + [889] = { 28, 58.9, 47, 300 }, + [890] = { 21.3, 58.7, 47, 300 }, + [891] = { 60.7, 57.9, 47, 300 }, + [892] = { 75.2, 57.1, 47, 300 }, + [893] = { 67.9, 55.5, 47, 300 }, + [894] = { 30.1, 55, 47, 300 }, + [895] = { 54.3, 54.4, 47, 300 }, + [896] = { 56, 54.2, 47, 300 }, + [897] = { 72.2, 52.4, 47, 300 }, + [898] = { 65.1, 52.3, 47, 300 }, + [899] = { 24.3, 50.6, 47, 300 }, + [900] = { 83, 50.4, 47, 300 }, + [901] = { 39, 49.8, 47, 300 }, + [902] = { 58.1, 49.5, 47, 300 }, + [903] = { 50, 48.2, 47, 300 }, + [904] = { 78.7, 48, 47, 300 }, + [905] = { 55.5, 44.9, 47, 300 }, + [906] = { 57.2, 44.6, 47, 300 }, + [907] = { 55.5, 44.4, 47, 300 }, + [908] = { 39.8, 43.8, 47, 300 }, + [909] = { 59.6, 43.7, 47, 300 }, + [910] = { 56.9, 43.7, 47, 300 }, + [911] = { 63.4, 43.6, 47, 300 }, + [912] = { 44, 43.5, 47, 300 }, + [913] = { 57.1, 43.4, 47, 300 }, + [914] = { 56.8, 43.1, 47, 300 }, + [915] = { 59.8, 42.7, 47, 300 }, + [916] = { 31.3, 42.5, 47, 300 }, + [917] = { 56.7, 42.5, 47, 300 }, + [918] = { 80.7, 42.4, 47, 300 }, + [919] = { 35.6, 42.3, 47, 300 }, + [920] = { 48.6, 42.1, 47, 300 }, + [921] = { 58.6, 41.7, 47, 300 }, + [922] = { 57.3, 41.3, 47, 300 }, + [923] = { 33.5, 41.2, 47, 300 }, + [924] = { 60.1, 41.2, 47, 300 }, + [925] = { 57.7, 40.6, 47, 300 }, + [926] = { 45.1, 39.5, 47, 300 }, + [927] = { 67.9, 38.2, 47, 300 }, + [928] = { 46.3, 37.8, 47, 300 }, + [929] = { 64.2, 36.6, 47, 300 }, + [930] = { 56.6, 35.6, 47, 300 }, + [931] = { 68.7, 34.6, 47, 300 }, + [932] = { 60.7, 34.4, 47, 300 }, + [933] = { 58.6, 27.7, 47, 300 }, + [934] = { 69.9, 27.2, 47, 300 }, + [935] = { 59, 23.2, 47, 300 }, + [936] = { 64.4, 22.1, 47, 300 }, + [937] = { 68.2, 19.8, 47, 300 }, + [938] = { 63.7, 16.9, 47, 300 }, + [939] = { 64.7, 15.4, 47, 300 }, + [940] = { 67.2, 14.6, 47, 300 }, + [941] = { 85.9, 86.4, 51, 600 }, + [942] = { 87.1, 83.3, 51, 600 }, + [943] = { 64.2, 82.4, 51, 300 }, + [944] = { 57.1, 81.6, 51, 300 }, + [945] = { 36.7, 78, 51, 300 }, + [946] = { 56, 76.4, 51, 300 }, + [947] = { 49.5, 75.9, 51, 300 }, + [948] = { 24.9, 75.9, 51, 300 }, + [949] = { 83.1, 75.5, 51, 300 }, + [950] = { 68.1, 75.2, 51, 300 }, + [951] = { 20.6, 74.5, 51, 300 }, + [952] = { 73.2, 73, 51, 300 }, + [953] = { 37.7, 71, 51, 300 }, + [954] = { 57.5, 68.4, 51, 300 }, + [955] = { 30.3, 65.8, 51, 300 }, + [956] = { 43.7, 65.6, 51, 300 }, + [957] = { 64, 63.3, 51, 300 }, + [958] = { 64.2, 59.8, 51, 300 }, + [959] = { 39.4, 56.2, 51, 300 }, + [960] = { 48.7, 51.7, 51, 300 }, + [961] = { 38.9, 51.5, 51, 300 }, + [962] = { 55, 51.2, 51, 300 }, + [963] = { 52, 49.5, 51, 300 }, + [964] = { 29.8, 49.3, 51, 300 }, + [965] = { 64.5, 49.3, 51, 300 }, + [966] = { 46.3, 47.8, 51, 300 }, + [967] = { 37.9, 45.9, 51, 300 }, + [968] = { 46.7, 44, 51, 300 }, + [969] = { 61.1, 42.8, 51, 300 }, + [970] = { 48.6, 41.9, 51, 300 }, + [971] = { 56.9, 41.2, 51, 300 }, + [972] = { 40.7, 39.2, 51, 300 }, + [973] = { 31.3, 39, 51, 300 }, + [974] = { 25.1, 38.1, 51, 300 }, + [975] = { 66.2, 37.8, 51, 300 }, + [976] = { 42.6, 37.5, 51, 300 }, + [977] = { 17.8, 37.3, 51, 300 }, + [978] = { 21.6, 36.5, 51, 300 }, + [979] = { 50.5, 36.1, 51, 300 }, + [980] = { 17.9, 34.4, 51, 300 }, + [981] = { 49.7, 33.6, 51, 300 }, + [982] = { 67.9, 32.3, 51, 300 }, + [983] = { 56, 30.6, 51, 300 }, + [984] = { 42.7, 28.7, 51, 300 }, + [985] = { 60.6, 25.8, 51, 300 }, + [986] = { 39.1, 25.1, 51, 300 }, + [987] = { 47.9, 24.7, 51, 300 }, + [988] = { 86.3, 78.2, 85, 300 }, + [989] = { 90, 66.5, 85, 300 }, + [990] = { 90.4, 64.9, 85, 300 }, + [991] = { 96.1, 61.9, 85, 300 }, + [992] = { 43.8, 88, 139, 300 }, + [993] = { 20.9, 84, 139, 300 }, + [994] = { 35.8, 83.2, 139, 300 }, + [995] = { 13.8, 78, 139, 300 }, + [996] = { 30.4, 75.6, 139, 300 }, + [997] = { 41.5, 75.4, 139, 300 }, + [998] = { 37.6, 73.7, 139, 300 }, + [999] = { 24.5, 73.5, 139, 300 }, + [1000] = { 20.7, 67, 139, 300 }, + [1001] = { 22.2, 61.5, 139, 300 }, + [1002] = { 14.6, 61, 139, 300 }, + [1003] = { 26.5, 26.4, 215, 300 }, + [1004] = { 70.9, 83.9, 267, 300 }, + [1005] = { 66.9, 83.1, 267, 300 }, + [1006] = { 18.7, 81.1, 267, 300 }, + [1007] = { 69.5, 80.5, 267, 300 }, + [1008] = { 15.7, 80.2, 267, 300 }, + [1009] = { 13.5, 79.2, 267, 300 }, + [1010] = { 64.2, 76.7, 267, 300 }, + [1011] = { 72.3, 75.6, 267, 300 }, + [1012] = { 72.7, 74, 267, 300 }, + [1013] = { 74.1, 73.7, 267, 300 }, + [1014] = { 74, 70.8, 267, 300 }, + [1015] = { 70.4, 66.2, 267, 300 }, + [1016] = { 87.7, 45, 267, 300 }, + [1017] = { 85.1, 42.1, 267, 300 }, + [1018] = { 88.7, 37.7, 267, 300 }, + [1019] = { 86.6, 35.4, 267, 300 }, + [1020] = { 42.7, 33.6, 267, 600 }, + [1021] = { 42.5, 32.4, 267, 600 }, + [1022] = { 83.1, 32.1, 267, 300 }, + [1023] = { 46.3, 31.6, 267, 600 }, + [1024] = { 43.9, 31.5, 267, 600 }, + [1025] = { 41.8, 31.2, 267, 600 }, + [1026] = { 88.7, 31, 267, 300 }, + [1027] = { 80.1, 30.8, 267, 300 }, + [1028] = { 45.2, 30.7, 267, 600 }, + [1029] = { 42.9, 30.6, 267, 600 }, + [1030] = { 43.7, 30.1, 267, 600 }, + [1031] = { 43.2, 29, 267, 600 }, + [1032] = { 43.9, 28.3, 267, 600 }, + [1033] = { 44.5, 28.1, 267, 600 }, + [1034] = { 43.1, 27.7, 267, 600 }, + [1035] = { 44.4, 27.6, 267, 300 }, + [1036] = { 45.4, 27, 267, 600 }, + [1037] = { 39.5, 26.5, 267, 300 }, + [1038] = { 48.9, 26.5, 267, 300 }, + [1039] = { 43.1, 26.1, 267, 600 }, + [1040] = { 37.6, 26.1, 267, 300 }, + [1041] = { 44.1, 26, 267, 600 }, + [1042] = { 45.9, 25.9, 267, 300 }, + [1043] = { 44.7, 24.5, 267, 600 }, + [1044] = { 47.7, 22.1, 267, 300 }, + [1045] = { 40.3, 20.2, 267, 300 }, + [1046] = { 41.2, 12.9, 267, 300 }, + [1047] = { 44.7, 12.1, 267, 300 }, + [1048] = { 41.3, 8, 267, 600 }, + [1049] = { 42.2, 7.7, 267, 600 }, + [1050] = { 41.1, 7.3, 267, 600 }, + [1051] = { 42.3, 7.2, 267, 600 }, + [1052] = { 49.2, 6.3, 267, 300 }, + [1053] = { 42, 6.2, 267, 600 }, + [1054] = { 41.4, 6, 267, 600 }, + [1055] = { 37.1, 5.4, 267, 300 }, + [1056] = { 66.5, 3.7, 267, 300 }, + [1057] = { 41.8, 1.8, 267, 300 }, + [1058] = { 63.4, 86.3, 331, 300 }, + [1059] = { 71.6, 84.8, 331, 300 }, + [1060] = { 66.1, 83.3, 331, 300 }, + [1061] = { 70.4, 81.5, 331, 300 }, + [1062] = { 80.4, 81, 331, 300 }, + [1063] = { 61.1, 80.4, 331, 300 }, + [1064] = { 73.8, 80.3, 331, 300 }, + [1065] = { 82.8, 80.1, 331, 300 }, + [1066] = { 88.9, 79.2, 331, 300 }, + [1067] = { 66.5, 78.3, 331, 300 }, + [1068] = { 81.5, 77.8, 331, 300 }, + [1069] = { 83.1, 77.3, 331, 300 }, + [1070] = { 75.6, 76.5, 331, 300 }, + [1071] = { 90.3, 76.4, 331, 300 }, + [1072] = { 64.8, 76.3, 331, 300 }, + [1073] = { 85.4, 74.3, 331, 300 }, + [1074] = { 69.7, 73.8, 331, 300 }, + [1075] = { 64.6, 73.6, 331, 300 }, + [1076] = { 81.1, 73.3, 331, 300 }, + [1077] = { 85.1, 71.4, 331, 300 }, + [1078] = { 79.8, 70.4, 331, 300 }, + [1079] = { 75.2, 69.4, 331, 300 }, + [1080] = { 86.8, 69.2, 331, 300 }, + [1081] = { 67.7, 68.5, 331, 300 }, + [1082] = { 67.5, 66.2, 331, 300 }, + [1083] = { 71.3, 65.2, 331, 300 }, + [1084] = { 82.2, 64.8, 331, 300 }, + [1085] = { 62.7, 64.7, 331, 300 }, + [1086] = { 78.1, 64.7, 331, 300 }, + [1087] = { 90.7, 63.6, 331, 300 }, + [1088] = { 65.4, 63.2, 331, 300 }, + [1089] = { 70.8, 60, 331, 300 }, + [1090] = { 65.8, 60, 331, 300 }, + [1091] = { 68.9, 58.4, 331, 300 }, + [1092] = { 74.7, 57.4, 331, 300 }, + [1093] = { 72.5, 57, 331, 300 }, + [1094] = { 93.3, 56.4, 331, 300 }, + [1095] = { 64.4, 55.6, 331, 300 }, + [1096] = { 71.3, 53.1, 331, 300 }, + [1097] = { 75.4, 52.8, 331, 300 }, + [1098] = { 77.2, 52.3, 331, 300 }, + [1099] = { 70.7, 51.4, 331, 300 }, + [1100] = { 72.3, 51, 331, 300 }, + [1101] = { 91.4, 49.4, 331, 300 }, + [1102] = { 62.2, 48.4, 331, 300 }, + [1103] = { 53.2, 46.9, 331, 300 }, + [1104] = { 73.7, 45.9, 331, 300 }, + [1105] = { 58.1, 43.2, 331, 300 }, + [1106] = { 63, 42.6, 331, 300 }, + [1107] = { 99.9, 42.6, 331, 300 }, + [1108] = { 55.2, 39.9, 331, 300 }, + [1109] = { 60.9, 38.1, 331, 300 }, + [1110] = { 58.3, 31.2, 331, 300 }, + [1111] = { 60.3, 84.4, 357, 300 }, + [1112] = { 59.4, 74.1, 357, 300 }, + [1113] = { 25.4, 73.1, 357, 300 }, + [1114] = { 54.1, 73, 357, 300 }, + [1115] = { 27.3, 69.5, 357, 300 }, + [1116] = { 27.7, 69.4, 357, 300 }, + [1117] = { 26, 68.9, 357, 300 }, + [1118] = { 27.9, 68.4, 357, 300 }, + [1119] = { 26.7, 68.3, 357, 300 }, + [1120] = { 28.5, 67.9, 357, 300 }, + [1121] = { 60.6, 65.7, 357, 300 }, + [1122] = { 54, 64.6, 357, 300 }, + [1123] = { 69.2, 62.2, 357, 300 }, + [1124] = { 52.2, 61.5, 357, 300 }, + [1125] = { 51.5, 60.4, 357, 300 }, + [1126] = { 52.4, 59.8, 357, 300 }, + [1127] = { 52.8, 59.3, 357, 300 }, + [1128] = { 51.5, 58.9, 357, 300 }, + [1129] = { 50.9, 58.8, 357, 300 }, + [1130] = { 50.2, 58.4, 357, 300 }, + [1131] = { 52, 58.2, 357, 300 }, + [1132] = { 61.4, 58, 357, 300 }, + [1133] = { 52.7, 57.7, 357, 300 }, + [1134] = { 72.9, 56.5, 357, 300 }, + [1135] = { 53.1, 56.2, 357, 300 }, + [1136] = { 55.2, 56, 357, 300 }, + [1137] = { 69.4, 56, 357, 300 }, + [1138] = { 54.1, 55.8, 357, 300 }, + [1139] = { 71.9, 53, 357, 300 }, + [1140] = { 64.9, 52.1, 357, 300 }, + [1141] = { 54.2, 50, 357, 300 }, + [1142] = { 80.3, 47.3, 357, 300 }, + [1143] = { 57.5, 47, 357, 300 }, + [1144] = { 67.3, 45.9, 357, 300 }, + [1145] = { 67.8, 43.7, 357, 300 }, + [1146] = { 92.9, 41.7, 357, 300 }, + [1147] = { 68.5, 39, 357, 300 }, + [1148] = { 81.1, 38.5, 357, 300 }, + [1149] = { 70.7, 35.6, 357, 300 }, + [1150] = { 50.4, 35.6, 357, 300 }, + [1151] = { 54.4, 34.2, 357, 300 }, + [1152] = { 55.4, 33.6, 357, 300 }, + [1153] = { 54.9, 32.9, 357, 300 }, + [1154] = { 55.7, 32.8, 357, 300 }, + [1155] = { 75.1, 32.6, 357, 300 }, + [1156] = { 54.1, 32.4, 357, 300 }, + [1157] = { 53.3, 32, 357, 300 }, + [1158] = { 50.8, 30.6, 357, 300 }, + [1159] = { 74.3, 28.8, 357, 300 }, + [1160] = { 44.2, 25.6, 357, 300 }, + [1161] = { 38.7, 24.9, 357, 300 }, + [1162] = { 51.6, 24.8, 357, 300 }, + [1163] = { 37.7, 20.5, 357, 300 }, + [1164] = { 52.1, 16.4, 357, 300 }, + [1165] = { 42.1, 16.2, 357, 300 }, + [1166] = { 57.5, 95.4, 361, 300 }, + [1167] = { 76.3, 93.7, 400, 300 }, + [1168] = { 69.9, 92.1, 400, 300 }, + [1169] = { 84, 87.5, 400, 300 }, + [1170] = { 77.2, 87.1, 400, 300 }, + [1171] = { 86.6, 84.4, 400, 300 }, + [1172] = { 68.4, 77.9, 400, 300 }, + [1173] = { 89.4, 76.9, 400, 300 }, + [1174] = { 69.8, 69.2, 400, 300 }, + [1175] = { 77.7, 64, 400, 300 }, + [1176] = { 80.1, 63.5, 400, 300 }, + [1177] = { 78.5, 62.1, 400, 300 }, + [1178] = { 77.5, 61.7, 400, 300 }, + [1179] = { 66.9, 60.6, 400, 300 }, + [1180] = { 43.9, 60.2, 400, 300 }, + [1181] = { 63.9, 59, 400, 300 }, + [1182] = { 48.2, 58.7, 400, 300 }, + [1183] = { 59.4, 58.2, 400, 300 }, + [1184] = { 50.2, 57.1, 400, 300 }, + [1185] = { 26.8, 56.1, 400, 300 }, + [1186] = { 26.7, 55.3, 400, 300 }, + [1187] = { 25.8, 55.2, 400, 300 }, + [1188] = { 27.1, 54.6, 400, 300 }, + [1189] = { 37, 54.3, 400, 300 }, + [1190] = { 27.3, 53.9, 400, 300 }, + [1191] = { 34.4, 53.4, 400, 300 }, + [1192] = { 83.4, 53, 400, 300 }, + [1193] = { 27.3, 52.5, 400, 300 }, + [1194] = { 67.8, 52, 400, 300 }, + [1195] = { 26.8, 51.9, 400, 300 }, + [1196] = { 65.8, 51.8, 400, 300 }, + [1197] = { 33, 51.2, 400, 300 }, + [1198] = { 55.4, 51.1, 400, 300 }, + [1199] = { 75.3, 51, 400, 300 }, + [1200] = { 40.2, 50.8, 400, 300 }, + [1201] = { 36.4, 50.7, 400, 300 }, + [1202] = { 59.1, 49.5, 400, 300 }, + [1203] = { 28.8, 49, 400, 300 }, + [1204] = { 62, 47.8, 400, 300 }, + [1205] = { 26.4, 47, 400, 300 }, + [1206] = { 53.7, 46.4, 400, 300 }, + [1207] = { 30.1, 45.9, 400, 300 }, + [1208] = { 23.7, 44.8, 400, 300 }, + [1209] = { 17.8, 42.3, 400, 300 }, + [1210] = { 21.8, 41.2, 400, 300 }, + [1211] = { 16.6, 40.9, 400, 300 }, + [1212] = { 15.2, 40.3, 400, 300 }, + [1213] = { 48.3, 40.2, 400, 300 }, + [1214] = { 42.4, 39.6, 400, 300 }, + [1215] = { 45.1, 39.1, 400, 300 }, + [1216] = { 11.8, 38.2, 400, 300 }, + [1217] = { 20.7, 37.8, 400, 300 }, + [1218] = { 44.4, 37.7, 400, 300 }, + [1219] = { 38, 37.3, 400, 300 }, + [1220] = { 13.3, 36.9, 400, 300 }, + [1221] = { 44.9, 36.6, 400, 300 }, + [1222] = { 44.1, 36.4, 400, 300 }, + [1223] = { 18, 36, 400, 300 }, + [1224] = { 9.6, 35.1, 400, 300 }, + [1225] = { 42.1, 35, 400, 300 }, + [1226] = { 13, 34.8, 400, 300 }, + [1227] = { 43.1, 34.8, 400, 300 }, + [1228] = { 14.7, 34.4, 400, 300 }, + [1229] = { 44.2, 33.5, 400, 300 }, + [1230] = { 42.3, 33.5, 400, 300 }, + [1231] = { 21.1, 33.5, 400, 300 }, + [1232] = { 42.4, 33.5, 400, 300 }, + [1233] = { 43.2, 33.2, 400, 300 }, + [1234] = { 43.3, 33.1, 400, 300 }, + [1235] = { 41.5, 32.9, 400, 300 }, + [1236] = { 43.6, 32.8, 400, 300 }, + [1237] = { 38.5, 32.7, 400, 300 }, + [1238] = { 42.6, 32.3, 400, 300 }, + [1239] = { 44.7, 32.3, 400, 300 }, + [1240] = { 11.1, 32.2, 400, 300 }, + [1241] = { 41.7, 31.8, 400, 300 }, + [1242] = { 42.1, 31.4, 400, 300 }, + [1243] = { 42.6, 31, 400, 300 }, + [1244] = { 43.8, 30.8, 400, 300 }, + [1245] = { 10.4, 30.8, 400, 300 }, + [1246] = { 27.5, 29.2, 400, 300 }, + [1247] = { 35.2, 28.8, 400, 300 }, + [1248] = { 28.1, 28.1, 400, 300 }, + [1249] = { 34.6, 27.5, 400, 300 }, + [1250] = { 12.6, 25.3, 400, 300 }, + [1251] = { 23.9, 24.4, 400, 300 }, + [1252] = { 23.8, 22.4, 400, 300 }, + [1253] = { 15.8, 18.9, 400, 300 }, + [1254] = { 13.3, 11.4, 400, 300 }, + [1255] = { 36.2, 92.4, 405, 300 }, + [1256] = { 38.4, 91, 405, 300 }, + [1257] = { 59.1, 90.6, 405, 300 }, + [1258] = { 51.1, 90.1, 405, 300 }, + [1259] = { 65.9, 90.1, 405, 300 }, + [1260] = { 60.5, 88.5, 405, 300 }, + [1261] = { 47.2, 88.2, 405, 300 }, + [1262] = { 54, 87.6, 405, 300 }, + [1263] = { 36.1, 86.5, 405, 300 }, + [1264] = { 50.7, 85.7, 405, 300 }, + [1265] = { 39.4, 85.4, 405, 300 }, + [1266] = { 67.9, 84.4, 405, 300 }, + [1267] = { 48.4, 84.2, 405, 300 }, + [1268] = { 24.7, 82.4, 405, 300 }, + [1269] = { 46.3, 82.4, 405, 300 }, + [1270] = { 50.3, 82.3, 405, 300 }, + [1271] = { 32.4, 82.1, 405, 300 }, + [1272] = { 57.2, 81.9, 405, 300 }, + [1273] = { 35, 80.6, 405, 300 }, + [1274] = { 71.9, 80.3, 405, 300 }, + [1275] = { 29.6, 80.2, 405, 300 }, + [1276] = { 54.8, 79.6, 405, 300 }, + [1277] = { 54.9, 79.5, 405, 300 }, + [1278] = { 48.1, 78.9, 405, 300 }, + [1279] = { 27.1, 78.7, 405, 300 }, + [1280] = { 67.8, 77.4, 405, 300 }, + [1281] = { 47.7, 76.6, 405, 300 }, + [1282] = { 74.5, 76.4, 405, 300 }, + [1283] = { 71.4, 76.2, 405, 300 }, + [1284] = { 76.5, 75.4, 405, 300 }, + [1285] = { 58.2, 74.6, 405, 300 }, + [1286] = { 42.3, 74.5, 405, 300 }, + [1287] = { 54.9, 74.4, 405, 300 }, + [1288] = { 49.5, 74.2, 405, 300 }, + [1289] = { 27.9, 74.1, 405, 300 }, + [1290] = { 30.5, 74, 405, 300 }, + [1291] = { 57.3, 73.4, 405, 300 }, + [1292] = { 55.8, 73.1, 405, 300 }, + [1293] = { 32.1, 71.6, 405, 300 }, + [1294] = { 29.5, 71.3, 405, 300 }, + [1295] = { 76.3, 70.5, 405, 300 }, + [1296] = { 48.2, 69.7, 405, 300 }, + [1297] = { 58.5, 69.4, 405, 300 }, + [1298] = { 64.7, 69.1, 405, 300 }, + [1299] = { 38.7, 68.2, 405, 300 }, + [1300] = { 75, 67.6, 405, 300 }, + [1301] = { 34.5, 67.2, 405, 600 }, + [1302] = { 31.2, 65.9, 405, 300 }, + [1303] = { 58.9, 65.6, 405, 300 }, + [1304] = { 33.3, 65.6, 405, 300 }, + [1305] = { 31.9, 65.2, 405, 300 }, + [1306] = { 31.9, 65, 405, 600 }, + [1307] = { 33.8, 63.3, 405, 600 }, + [1308] = { 69, 63.2, 405, 300 }, + [1309] = { 28.6, 63.1, 405, 600 }, + [1310] = { 32.3, 63, 405, 300 }, + [1311] = { 32.3, 62.6, 405, 300 }, + [1312] = { 31.2, 62.2, 405, 300 }, + [1313] = { 29.4, 62, 405, 600 }, + [1314] = { 31.1, 62, 405, 600 }, + [1315] = { 33, 61.6, 405, 300 }, + [1316] = { 29.1, 61.6, 405, 600 }, + [1317] = { 33.6, 61, 405, 600 }, + [1318] = { 65.9, 60.7, 405, 300 }, + [1319] = { 36.3, 60.5, 405, 600 }, + [1320] = { 30.4, 60.4, 405, 300 }, + [1321] = { 62.4, 60.3, 405, 300 }, + [1322] = { 74.3, 60.2, 405, 300 }, + [1323] = { 34.9, 60.2, 405, 300 }, + [1324] = { 29.7, 59.7, 405, 600 }, + [1325] = { 31.5, 59.4, 405, 300 }, + [1326] = { 36.9, 59.4, 405, 300 }, + [1327] = { 30, 59.3, 405, 600 }, + [1328] = { 32.1, 58.9, 405, 300 }, + [1329] = { 29.3, 58.4, 405, 600 }, + [1330] = { 28.5, 58.4, 405, 300 }, + [1331] = { 30.2, 58.3, 405, 300 }, + [1332] = { 27.1, 58.2, 405, 600 }, + [1333] = { 29.2, 57.7, 405, 600 }, + [1334] = { 74.4, 57, 405, 300 }, + [1335] = { 29.8, 56.6, 405, 300 }, + [1336] = { 35.4, 56.5, 405, 300 }, + [1337] = { 29.2, 56.2, 405, 600 }, + [1338] = { 40.2, 55.5, 405, 300 }, + [1339] = { 64.2, 55.2, 405, 300 }, + [1340] = { 78.9, 54.3, 405, 300 }, + [1341] = { 28, 54.1, 405, 600 }, + [1342] = { 45.3, 54, 405, 300 }, + [1343] = { 75.5, 53.3, 405, 300 }, + [1344] = { 33.1, 53.2, 405, 300 }, + [1345] = { 30.8, 52.9, 405, 300 }, + [1346] = { 32.9, 52.9, 405, 300 }, + [1347] = { 35.1, 52.1, 405, 300 }, + [1348] = { 31.7, 51.9, 405, 300 }, + [1349] = { 34.3, 51.6, 405, 300 }, + [1350] = { 64.3, 51.2, 405, 300 }, + [1351] = { 30.6, 51.2, 405, 300 }, + [1352] = { 60.9, 51.1, 405, 300 }, + [1353] = { 40.8, 48.5, 405, 300 }, + [1354] = { 66.3, 47, 405, 300 }, + [1355] = { 75.1, 46.9, 405, 300 }, + [1356] = { 38.7, 46.6, 405, 300 }, + [1357] = { 55, 46, 405, 300 }, + [1358] = { 71.2, 45.6, 405, 300 }, + [1359] = { 59.6, 45.3, 405, 300 }, + [1360] = { 64.9, 44.9, 405, 300 }, + [1361] = { 54.1, 44.6, 405, 300 }, + [1362] = { 57.1, 43.8, 405, 300 }, + [1363] = { 40.1, 43.7, 405, 300 }, + [1364] = { 63.7, 43.7, 405, 300 }, + [1365] = { 47.1, 43.1, 405, 300 }, + [1366] = { 66.5, 42, 405, 300 }, + [1367] = { 72.7, 41.2, 405, 300 }, + [1368] = { 35.8, 37.2, 405, 300 }, + [1369] = { 74.1, 36.9, 405, 300 }, + [1370] = { 77.2, 36.6, 405, 300 }, + [1371] = { 46.8, 34.5, 405, 300 }, + [1372] = { 50.3, 33.2, 405, 300 }, + [1373] = { 58.9, 31.9, 405, 300 }, + [1374] = { 35.6, 31.8, 405, 300 }, + [1375] = { 78.2, 26.7, 405, 300 }, + [1376] = { 53, 24.2, 405, 300 }, + [1377] = { 59.7, 20.8, 405, 300 }, + [1378] = { 74.9, 18.2, 405, 300 }, + [1379] = { 34.8, 16.8, 405, 300 }, + [1380] = { 36.8, 15.9, 405, 300 }, + [1381] = { 34, 14.7, 405, 300 }, + [1382] = { 75.2, 14.1, 405, 300 }, + [1383] = { 46.7, 13.2, 405, 300 }, + [1384] = { 61.5, 12.2, 405, 300 }, + [1385] = { 75.2, 10.8, 405, 300 }, + [1386] = { 30.6, 10.2, 405, 300 }, + [1387] = { 52, 8.7, 405, 300 }, + [1388] = { 34.8, 8.4, 405, 300 }, + [1389] = { 29.2, 8.2, 405, 300 }, + [1390] = { 33.3, 7.9, 405, 300 }, + [1391] = { 35.6, 6.2, 405, 300 }, + [1392] = { 61.5, 0.5, 405, 300 }, + [1393] = { 49, 88.7, 406, 300 }, + [1394] = { 36.4, 86.9, 406, 300 }, + [1395] = { 49, 85.7, 406, 300 }, + [1396] = { 27.7, 83.7, 406, 300 }, + [1397] = { 36.4, 76.2, 406, 300 }, + [1398] = { 33.6, 75.7, 406, 300 }, + [1399] = { 35.3, 75.1, 406, 300 }, + [1400] = { 31.8, 75.1, 406, 300 }, + [1401] = { 29, 73.7, 406, 300 }, + [1402] = { 27.5, 71.4, 406, 300 }, + [1403] = { 37.5, 69.9, 406, 300 }, + [1404] = { 37.8, 69.2, 406, 300 }, + [1405] = { 34.9, 66.7, 406, 300 }, + [1406] = { 29.8, 66.3, 406, 300 }, + [1407] = { 38, 65.2, 406, 300 }, + [1408] = { 31.1, 64.3, 406, 300 }, + [1409] = { 27.1, 63.2, 406, 300 }, + [1410] = { 28.6, 62.2, 406, 300 }, + [1411] = { 35.9, 61.4, 406, 300 }, + [1412] = { 30.1, 59.8, 406, 300 }, + [1413] = { 32.6, 58.9, 406, 300 }, + [1414] = { 35.4, 46.8, 406, 300 }, + [1415] = { 38.7, 21.1, 406, 300 }, + [1416] = { 40.1, 19.2, 406, 300 }, + [1417] = { 34.5, 14.3, 406, 300 }, + [1418] = { 30.2, 13.9, 406, 300 }, + [1419] = { 35.4, 9.2, 406, 300 }, + [1420] = { 34.1, 5.3, 406, 300 }, + [1421] = { 34.7, 80.3, 440, 300 }, + [1422] = { 31.6, 79.4, 440, 300 }, + [1423] = { 34.5, 77.9, 440, 300 }, + [1424] = { 28.9, 77.1, 440, 300 }, + [1425] = { 55.2, 75.9, 440, 600 }, + [1426] = { 28.2, 74.5, 440, 300 }, + [1427] = { 28.2, 72.3, 440, 300 }, + [1428] = { 53.6, 72.2, 440, 600 }, + [1429] = { 57.8, 71.9, 440, 600 }, + [1430] = { 56, 71.4, 440, 600 }, + [1431] = { 48.8, 71, 440, 300 }, + [1432] = { 28.8, 70.7, 440, 300 }, + [1433] = { 57.7, 70.3, 440, 600 }, + [1434] = { 57.2, 70.2, 440, 600 }, + [1435] = { 55.5, 69.9, 440, 600 }, + [1436] = { 56.8, 69.6, 440, 600 }, + [1437] = { 29.7, 68.8, 440, 300 }, + [1438] = { 57.3, 68.6, 440, 600 }, + [1439] = { 57.1, 68.2, 440, 300 }, + [1440] = { 59.2, 67.8, 440, 300 }, + [1441] = { 31.9, 66.7, 440, 300 }, + [1442] = { 52.2, 63.8, 440, 300 }, + [1443] = { 30.9, 63.4, 440, 300 }, + [1444] = { 60, 63.3, 440, 300 }, + [1445] = { 61.9, 63.2, 440, 300 }, + [1446] = { 57.9, 62.6, 440, 300 }, + [1447] = { 63.7, 62.5, 440, 300 }, + [1448] = { 28.2, 62.1, 440, 300 }, + [1449] = { 55.1, 61.2, 440, 300 }, + [1450] = { 41.4, 58, 440, 300 }, + [1451] = { 62.5, 57.3, 440, 300 }, + [1452] = { 41.7, 57.1, 440, 300 }, + [1453] = { 45.5, 55.1, 440, 300 }, + [1454] = { 41.3, 54.4, 440, 300 }, + [1455] = { 59.8, 53.8, 440, 300 }, + [1456] = { 28.2, 53.4, 440, 300 }, + [1457] = { 31.2, 52.2, 440, 300 }, + [1458] = { 37, 51.4, 440, 300 }, + [1459] = { 72.1, 48.8, 440, 300 }, + [1460] = { 31.9, 48.4, 440, 600 }, + [1461] = { 59.1, 48.1, 440, 300 }, + [1462] = { 33.4, 48, 440, 600 }, + [1463] = { 36.4, 48, 440, 300 }, + [1464] = { 29.7, 47.6, 440, 300 }, + [1465] = { 70.9, 47.4, 440, 300 }, + [1466] = { 71.9, 47, 440, 300 }, + [1467] = { 33.5, 46.6, 440, 600 }, + [1468] = { 73.7, 46, 440, 300 }, + [1469] = { 33.6, 45.9, 440, 600 }, + [1470] = { 32, 45.8, 440, 600 }, + [1471] = { 33.2, 45.7, 440, 600 }, + [1472] = { 70.5, 45.5, 440, 300 }, + [1473] = { 37.5, 45.4, 440, 300 }, + [1474] = { 32.9, 44.4, 440, 600 }, + [1475] = { 69.3, 43.6, 440, 300 }, + [1476] = { 35.4, 43.3, 440, 900 }, + [1477] = { 33.1, 42.7, 440, 900 }, + [1478] = { 66.5, 42.4, 440, 300 }, + [1479] = { 35.1, 42.3, 440, 900 }, + [1480] = { 33.4, 41.6, 440, 900 }, + [1481] = { 61.8, 41.2, 440, 300 }, + [1482] = { 37.8, 40.4, 440, 300 }, + [1483] = { 34.5, 40.3, 440, 900 }, + [1484] = { 62.7, 40.1, 440, 300 }, + [1485] = { 57.2, 38.6, 440, 300 }, + [1486] = { 33.4, 37.6, 440, 300 }, + [1487] = { 56.2, 37.3, 440, 300 }, + [1488] = { 65.3, 35.8, 440, 300 }, + [1489] = { 60, 35.7, 440, 300 }, + [1490] = { 53.4, 34.8, 440, 300 }, + [1491] = { 36.7, 33.3, 440, 300 }, + [1492] = { 61.8, 32.8, 440, 300 }, + [1493] = { 34.2, 32.6, 440, 300 }, + [1494] = { 59, 32.5, 440, 300 }, + [1495] = { 67.5, 31.9, 440, 300 }, + [1496] = { 58.3, 30, 440, 300 }, + [1497] = { 46.7, 29.7, 440, 300 }, + [1498] = { 37, 28.2, 440, 300 }, + [1499] = { 38.2, 27.2, 440, 300 }, + [1500] = { 34.3, 26.8, 440, 300 }, + [1501] = { 55, 26.5, 440, 300 }, + [1502] = { 57.4, 26.3, 440, 300 }, + [1503] = { 43.9, 25.9, 440, 300 }, + [1504] = { 32.3, 24.5, 440, 300 }, + [1505] = { 54.3, 24.5, 440, 300 }, + [1506] = { 48.6, 23.7, 440, 300 }, + [1507] = { 47.2, 23.7, 440, 300 }, + [1508] = { 44.3, 88.5, 490, 300 }, + [1509] = { 75.7, 85.1, 490, 300 }, + [1510] = { 37.8, 81.1, 490, 300 }, + [1511] = { 82.6, 73.8, 490, 900 }, + [1512] = { 50.3, 71.1, 490, 300 }, + [1513] = { 82.5, 66.4, 490, 300 }, + [1514] = { 61, 66.2, 490, 300 }, + [1515] = { 52.3, 64.9, 490, 300 }, + [1516] = { 37.8, 64.5, 490, 300 }, + [1517] = { 78.9, 57.7, 490, 300 }, + [1518] = { 84.1, 57, 490, 300 }, + [1519] = { 32.9, 49.2, 490, 300 }, + [1520] = { 84.2, 46.2, 490, 300 }, + [1521] = { 10.3, 45.9, 490, 300 }, + [1522] = { 80.6, 42, 490, 300 }, + [1523] = { 14.1, 37.5, 490, 300 }, + [1524] = { 40.9, 35.3, 490, 300 }, + [1525] = { 60, 34.9, 490, 300 }, + [1526] = { 71.6, 24.4, 490, 300 }, + [1527] = { 34.7, 20.9, 490, 300 }, + [1528] = { 62.7, 18.2, 490, 300 }, + [1529] = { 43.5, 15.7, 490, 300 }, + [1530] = { 57.3, 15.4, 490, 300 }, + [1531] = { 29.6, 47.1, 618, 300 }, + [1532] = { 32.5, 45.2, 618, 300 }, + [1533] = { 46.4, 44.6, 618, 300 }, + [1534] = { 40.5, 44.5, 618, 300 }, + [1535] = { 34.9, 44.3, 618, 300 }, + [1536] = { 44.8, 44.3, 618, 300 }, + [1537] = { 41.9, 43.8, 618, 300 }, + [1538] = { 37, 38.9, 618, 300 }, + [1539] = { 31.5, 38.8, 618, 300 }, + [1540] = { 44.1, 37.8, 618, 300 }, + [1541] = { 33.5, 36.6, 618, 300 }, + [1542] = { 53.6, 36.4, 618, 300 }, + [1543] = { 40.4, 36.4, 618, 300 }, + [1544] = { 47.8, 35.7, 618, 300 }, + [1545] = { 30.9, 35.4, 618, 300 }, + [1546] = { 37.4, 35.2, 618, 300 }, + [1547] = { 45.4, 34.9, 618, 300 }, + [1548] = { 42.8, 33.6, 618, 300 }, + [1549] = { 55, 27.1, 618, 300 }, + [1550] = { 52.3, 24.6, 618, 300 }, + [1551] = { 22.3, 90.2, 1377, 300 }, + [1552] = { 15.9, 88.3, 1377, 300 }, + [1553] = { 17.6, 78.4, 1377, 300 }, + [1554] = { 23.1, 76, 1377, 300 }, + [1555] = { 26.9, 72.2, 1377, 300 }, + [1556] = { 62, 58.6, 1377, 300 }, + [1557] = { 68.4, 49.1, 1377, 300 }, + [1558] = { 55.2, 46.4, 1377, 300 }, + [1559] = { 72.5, 40.2, 1377, 300 }, + [1560] = { 62.4, 33, 1377, 300 }, + [1561] = { 24.9, 25.7, 1377, 300 }, + [1562] = { 67.1, 24.6, 1377, 300 }, + [1563] = { 17.6, 22.5, 1377, 300 }, + [1564] = { 26, 15.8, 1377, 300 }, + [1565] = { 37, 13.7, 1377, 300 }, + [1566] = { 52, 12.4, 1377, 300 }, + [1567] = { 62.7, 12.1, 1377, 300 }, + }, + }, + [1735] = { + ["coords"] = { + [1] = { 7.6, 93.8, 3, 600 }, + [2] = { 7.4, 91.7, 3, 600 }, + [3] = { 8.9, 90.2, 3, 600 }, + [4] = { 7.5, 87.4, 3, 600 }, + [5] = { 25.3, 78.2, 3, 300 }, + [6] = { 42.3, 77.9, 3, 300 }, + [7] = { 51, 77.6, 3, 300 }, + [8] = { 32, 76.5, 3, 300 }, + [9] = { 45.1, 76.5, 3, 300 }, + [10] = { 56.9, 75.8, 3, 300 }, + [11] = { 36.7, 75.5, 3, 300 }, + [12] = { 18.5, 74.8, 3, 300 }, + [13] = { 61.7, 73.6, 3, 300 }, + [14] = { 22.6, 73.3, 3, 300 }, + [15] = { 64.6, 72, 3, 300 }, + [16] = { 24.8, 71.6, 3, 300 }, + [17] = { 18, 70.3, 3, 300 }, + [18] = { 26.7, 66.8, 3, 300 }, + [19] = { 41.4, 65.5, 3, 300 }, + [20] = { 20.1, 64.5, 3, 300 }, + [21] = { 63.5, 63.6, 3, 300 }, + [22] = { 20.2, 61.4, 3, 300 }, + [23] = { 23.7, 61.3, 3, 300 }, + [24] = { 28.7, 60.6, 3, 300 }, + [25] = { 42.5, 59.1, 3, 300 }, + [26] = { 12.9, 58.9, 3, 300 }, + [27] = { 49.4, 58.2, 3, 300 }, + [28] = { 10.8, 55.3, 3, 300 }, + [29] = { 45.9, 54.6, 3, 300 }, + [30] = { 15, 54.5, 3, 300 }, + [31] = { 35.6, 54.1, 3, 300 }, + [32] = { 30.8, 53.1, 3, 300 }, + [33] = { 34.3, 51.9, 3, 300 }, + [34] = { 40.7, 51.4, 3, 300 }, + [35] = { 44.4, 49.4, 3, 300 }, + [36] = { 14.8, 48.6, 3, 300 }, + [37] = { 37.6, 47.7, 3, 300 }, + [38] = { 52.1, 46.3, 3, 300 }, + [39] = { 58.9, 45.9, 3, 300 }, + [40] = { 32.3, 44.1, 3, 300 }, + [41] = { 65.4, 43.2, 3, 300 }, + [42] = { 52.4, 35.9, 3, 300 }, + [43] = { 15.5, 35.5, 3, 600 }, + [44] = { 14.9, 34.6, 3, 600 }, + [45] = { 16.5, 34.4, 3, 600 }, + [46] = { 59.5, 24.7, 3, 300 }, + [47] = { 56.2, 20.8, 3, 300 }, + [48] = { 39.3, 18.2, 3, 600 }, + [49] = { 38.6, 17.9, 3, 600 }, + [50] = { 52.5, 16.9, 3, 300 }, + [51] = { 40.2, 14, 3, 600 }, + [52] = { 54.2, 13.3, 3, 300 }, + [53] = { 40.9, 12.3, 3, 600 }, + [54] = { 43.7, 11.7, 3, 600 }, + [55] = { 72.6, 19.1, 4, 600 }, + [56] = { 72.8, 17.8, 4, 600 }, + [57] = { 71.8, 15.5, 4, 600 }, + [58] = { 71.4, 12.7, 4, 600 }, + [59] = { 73.1, 11.8, 4, 600 }, + [60] = { 76.1, 89.3, 8, 300 }, + [61] = { 71.8, 88.3, 8, 300 }, + [62] = { 63.5, 87.9, 8, 600 }, + [63] = { 66.5, 86.3, 8, 600 }, + [64] = { 62.1, 84.5, 8, 600 }, + [65] = { 68.9, 81.7, 8, 300 }, + [66] = { 61.5, 80.4, 8, 600 }, + [67] = { 64, 79.1, 8, 600 }, + [68] = { 66.5, 78.9, 8, 600 }, + [69] = { 64.5, 73.3, 8, 300 }, + [70] = { 13, 69.3, 8, 300 }, + [71] = { 10.4, 66, 8, 300 }, + [72] = { 23.7, 65.9, 8, 300 }, + [73] = { 57.8, 65.4, 8, 300 }, + [74] = { 17.7, 65.3, 8, 300 }, + [75] = { 27.7, 65.2, 8, 300 }, + [76] = { 30.2, 63.1, 8, 300 }, + [77] = { 10.6, 58.5, 8, 300 }, + [78] = { 17.7, 57.8, 8, 300 }, + [79] = { 21.5, 57.5, 8, 300 }, + [80] = { 5.9, 51.2, 8, 300 }, + [81] = { 74.5, 49.9, 8, 300 }, + [82] = { 65.7, 49.4, 8, 300 }, + [83] = { 71.4, 44.9, 8, 300 }, + [84] = { 28.8, 43.4, 8, 300 }, + [85] = { 15.7, 42.6, 8, 300 }, + [86] = { 18.4, 36.5, 8, 300 }, + [87] = { 23.5, 35.2, 8, 300 }, + [88] = { 7, 34.8, 8, 300 }, + [89] = { 14.9, 34.4, 8, 300 }, + [90] = { 5.5, 30.8, 8, 300 }, + [91] = { 13.3, 29.1, 8, 300 }, + [92] = { 38.8, 28.4, 8, 300 }, + [93] = { 51.9, 27.3, 8, 300 }, + [94] = { 61, 19.2, 8, 300 }, + [95] = { 72.2, 6.9, 8, 300 }, + [96] = { 37.3, 83.1, 10, 300 }, + [97] = { 62.2, 83, 10, 300 }, + [98] = { 35.9, 81.5, 10, 300 }, + [99] = { 74.1, 80.2, 10, 300 }, + [100] = { 36.4, 79.8, 10, 300 }, + [101] = { 63, 79.2, 10, 300 }, + [102] = { 74.4, 78.9, 10, 300 }, + [103] = { 65.6, 77.7, 10, 300 }, + [104] = { 36, 77.1, 10, 300 }, + [105] = { 73.7, 76.8, 10, 300 }, + [106] = { 72, 75.8, 10, 300 }, + [107] = { 32.8, 73.8, 10, 300 }, + [108] = { 67.5, 71.9, 10, 300 }, + [109] = { 64.5, 53.4, 10, 300 }, + [110] = { 64, 52.5, 10, 300 }, + [111] = { 87.2, 49.1, 10, 300 }, + [112] = { 85.9, 47, 10, 300 }, + [113] = { 57.7, 46.8, 10, 300 }, + [114] = { 79.5, 40.5, 10, 300 }, + [115] = { 59.8, 40, 10, 300 }, + [116] = { 77.3, 38.8, 10, 300 }, + [117] = { 26.7, 37.7, 10, 300 }, + [118] = { 58.6, 37.7, 10, 300 }, + [119] = { 82.9, 35.9, 10, 300 }, + [120] = { 25.9, 34, 10, 300 }, + [121] = { 85.2, 32.5, 10, 300 }, + [122] = { 57.1, 31.5, 10, 300 }, + [123] = { 78.7, 29, 10, 300 }, + [124] = { 81.2, 28.7, 10, 300 }, + [125] = { 49.4, 52.2, 11, 300 }, + [126] = { 53.2, 52.1, 11, 300 }, + [127] = { 48.6, 50.3, 11, 300 }, + [128] = { 41.9, 46.2, 11, 300 }, + [129] = { 38.1, 45.4, 11, 300 }, + [130] = { 69.4, 34, 11, 300 }, + [131] = { 68.5, 31.1, 11, 300 }, + [132] = { 64.9, 30.9, 11, 300 }, + [133] = { 70.2, 30.7, 11, 300 }, + [134] = { 67.2, 30.4, 11, 300 }, + [135] = { 71.1, 29.9, 11, 300 }, + [136] = { 68.9, 29.7, 11, 300 }, + [137] = { 69.7, 28.8, 11, 300 }, + [138] = { 69, 28.6, 11, 300 }, + [139] = { 67.3, 28.2, 11, 300 }, + [140] = { 70.5, 28.2, 11, 300 }, + [141] = { 68.8, 27.5, 11, 300 }, + [142] = { 64.2, 26.7, 11, 300 }, + [143] = { 63, 25.2, 11, 300 }, + [144] = { 61.5, 24, 11, 300 }, + [145] = { 60.6, 21.1, 11, 300 }, + [146] = { 33, 7.7, 11, 300 }, + [147] = { 33.5, 72.4, 15, 300 }, + [148] = { 38.3, 68.4, 15, 600 }, + [149] = { 37.6, 68.2, 15, 600 }, + [150] = { 38.6, 67.1, 15, 600 }, + [151] = { 38.7, 66.1, 15, 600 }, + [152] = { 31.4, 66, 15, 600 }, + [153] = { 30.9, 65.8, 15, 600 }, + [154] = { 31.1, 65.7, 15, 600 }, + [155] = { 33.3, 50, 15, 300 }, + [156] = { 54.5, 46.5, 15, 300 }, + [157] = { 47.3, 45, 15, 300 }, + [158] = { 45.5, 40.7, 15, 300 }, + [159] = { 49.1, 39.3, 15, 300 }, + [160] = { 54.6, 35.6, 15, 300 }, + [161] = { 48.1, 34.5, 15, 300 }, + [162] = { 46.3, 33.1, 15, 300 }, + [163] = { 44.7, 29.1, 15, 300 }, + [164] = { 39.9, 27.3, 15, 300 }, + [165] = { 48.3, 26.8, 15, 300 }, + [166] = { 32.5, 23.3, 15, 600 }, + [167] = { 31.2, 22.6, 15, 600 }, + [168] = { 59.8, 22.5, 15, 300 }, + [169] = { 33.2, 22.4, 15, 600 }, + [170] = { 31.4, 21.7, 15, 600 }, + [171] = { 30.2, 21.7, 15, 600 }, + [172] = { 31.1, 21.6, 15, 600 }, + [173] = { 31.3, 20.4, 15, 600 }, + [174] = { 55.8, 19.5, 15, 300 }, + [175] = { 63.3, 18.9, 15, 300 }, + [176] = { 62.1, 18.1, 15, 300 }, + [177] = { 46.6, 15.8, 15, 300 }, + [178] = { 53.6, 15, 15, 300 }, + [179] = { 48.3, 14.1, 15, 300 }, + [180] = { 37.3, 12.4, 15, 300 }, + [181] = { 59.9, 8.4, 15, 300 }, + [182] = { 63.3, 6.9, 15, 300 }, + [183] = { 49.5, 98.9, 17, 300 }, + [184] = { 49.6, 98.5, 17, 300 }, + [185] = { 49.3, 98.4, 17, 300 }, + [186] = { 48.5, 97.8, 17, 300 }, + [187] = { 48.9, 97.7, 17, 300 }, + [188] = { 49.4, 97.1, 17, 300 }, + [189] = { 48.6, 97.1, 17, 300 }, + [190] = { 49, 96.9, 17, 300 }, + [191] = { 48.2, 96.9, 17, 300 }, + [192] = { 49.1, 96.8, 17, 300 }, + [193] = { 46.9, 96.8, 17, 300 }, + [194] = { 48.7, 96.6, 17, 300 }, + [195] = { 48.6, 96.1, 17, 300 }, + [196] = { 42.1, 95.3, 17, 300 }, + [197] = { 45.5, 95.1, 17, 300 }, + [198] = { 42.4, 94.8, 17, 300 }, + [199] = { 45.2, 94.5, 17, 300 }, + [200] = { 40.6, 93.2, 17, 300 }, + [201] = { 40.5, 92.3, 17, 300 }, + [202] = { 52.9, 91.5, 17, 300 }, + [203] = { 55.4, 89.4, 17, 600 }, + [204] = { 55, 89.3, 17, 600 }, + [205] = { 51.8, 88.2, 17, 600 }, + [206] = { 51.5, 88.1, 17, 600 }, + [207] = { 51.6, 88, 17, 600 }, + [208] = { 52.8, 79.9, 17, 300 }, + [209] = { 52.4, 66, 17, 600 }, + [210] = { 51.6, 65.7, 17, 600 }, + [211] = { 52.7, 65.5, 17, 600 }, + [212] = { 51.8, 65.2, 17, 600 }, + [213] = { 51.2, 65.2, 17, 600 }, + [214] = { 51.6, 65.1, 17, 600 }, + [215] = { 51.7, 64.5, 17, 600 }, + [216] = { 60.5, 61.2, 17, 300 }, + [217] = { 54.8, 60.4, 17, 300 }, + [218] = { 66.5, 58.3, 17, 300 }, + [219] = { 68.3, 57.5, 17, 300 }, + [220] = { 54.8, 0.8, 17, 300 }, + [221] = { 48.9, 98.4, 28, 300 }, + [222] = { 41.5, 93.4, 28, 300 }, + [223] = { 34.7, 92.1, 28, 300 }, + [224] = { 33.5, 87.9, 28, 300 }, + [225] = { 31, 83.6, 28, 300 }, + [226] = { 29.7, 80.8, 28, 300 }, + [227] = { 29.8, 68.9, 33, 300 }, + [228] = { 32.8, 68.2, 33, 300 }, + [229] = { 32.1, 65.6, 33, 300 }, + [230] = { 31.4, 65.3, 33, 300 }, + [231] = { 35.6, 64.3, 33, 300 }, + [232] = { 34.8, 64.1, 33, 300 }, + [233] = { 36.9, 63.8, 33, 300 }, + [234] = { 33.6, 62, 33, 300 }, + [235] = { 36.7, 61.9, 33, 300 }, + [236] = { 29.4, 60.1, 33, 300 }, + [237] = { 35.7, 58.9, 33, 300 }, + [238] = { 40.8, 57.1, 33, 300 }, + [239] = { 38, 56.7, 33, 300 }, + [240] = { 37, 56.5, 33, 300 }, + [241] = { 35.1, 56.4, 33, 300 }, + [242] = { 24.7, 55.3, 33, 300 }, + [243] = { 30.2, 52.9, 33, 300 }, + [244] = { 25.2, 52.5, 33, 300 }, + [245] = { 43.2, 49.4, 33, 600 }, + [246] = { 42.4, 48.6, 33, 600 }, + [247] = { 42.5, 47.8, 33, 600 }, + [248] = { 42.2, 46.2, 33, 600 }, + [249] = { 43.7, 46.1, 33, 600 }, + [250] = { 43, 45.9, 33, 600 }, + [251] = { 39.9, 45.6, 33, 300 }, + [252] = { 40.3, 43.8, 33, 300 }, + [253] = { 41.4, 43.8, 33, 300 }, + [254] = { 33.1, 42.6, 33, 300 }, + [255] = { 41.3, 42.4, 33, 300 }, + [256] = { 28.7, 40.8, 33, 300 }, + [257] = { 45, 38.5, 33, 300 }, + [258] = { 47.6, 38.3, 33, 300 }, + [259] = { 41.9, 37, 33, 300 }, + [260] = { 51, 36.6, 33, 300 }, + [261] = { 39.4, 36, 33, 300 }, + [262] = { 37.6, 35.4, 33, 300 }, + [263] = { 35.4, 34.6, 33, 300 }, + [264] = { 49.9, 30.4, 33, 300 }, + [265] = { 47.9, 28.6, 33, 300 }, + [266] = { 50, 28.4, 33, 300 }, + [267] = { 51.3, 28.2, 33, 600 }, + [268] = { 50.1, 28.2, 33, 600 }, + [269] = { 50.4, 27.9, 33, 600 }, + [270] = { 50.8, 27.8, 33, 600 }, + [271] = { 50.3, 27.2, 33, 600 }, + [272] = { 51, 26.9, 33, 600 }, + [273] = { 51.2, 26.4, 33, 600 }, + [274] = { 52, 26.4, 33, 600 }, + [275] = { 44.6, 26, 33, 300 }, + [276] = { 51, 25, 33, 300 }, + [277] = { 47, 22.6, 33, 300 }, + [278] = { 49.8, 20.7, 33, 300 }, + [279] = { 47.2, 20.3, 33, 300 }, + [280] = { 26.3, 18, 33, 300 }, + [281] = { 27.6, 18, 33, 300 }, + [282] = { 30, 17.7, 33, 300 }, + [283] = { 32, 17.7, 33, 300 }, + [284] = { 46.2, 17.1, 33, 300 }, + [285] = { 25.7, 15.4, 33, 300 }, + [286] = { 29.3, 15.3, 33, 300 }, + [287] = { 50.6, 14.9, 33, 300 }, + [288] = { 41.5, 14.3, 33, 300 }, + [289] = { 34.2, 14.2, 33, 300 }, + [290] = { 43.4, 13.8, 33, 300 }, + [291] = { 31.3, 13.8, 33, 300 }, + [292] = { 27.4, 13.6, 33, 300 }, + [293] = { 49.7, 13.6, 33, 300 }, + [294] = { 32.1, 12.4, 33, 300 }, + [295] = { 29.8, 12.1, 33, 300 }, + [296] = { 42.8, 10, 33, 300 }, + [297] = { 31.3, 9.5, 33, 300 }, + [298] = { 49.2, 9, 33, 300 }, + [299] = { 49.2, 8.8, 33, 600 }, + [300] = { 46.1, 8.3, 33, 600 }, + [301] = { 48.3, 8.2, 33, 300 }, + [302] = { 49, 8, 33, 600 }, + [303] = { 27.3, 7.9, 33, 300 }, + [304] = { 30.5, 7.6, 33, 300 }, + [305] = { 46.5, 7.5, 33, 600 }, + [306] = { 49.7, 7.1, 33, 600 }, + [307] = { 28.9, 7, 33, 300 }, + [308] = { 47.2, 7, 33, 600 }, + [309] = { 48.5, 6.9, 33, 600 }, + [310] = { 46.1, 6.5, 33, 600 }, + [311] = { 48.9, 6.4, 33, 600 }, + [312] = { 46.7, 5.7, 33, 600 }, + [313] = { 49.6, 5.6, 33, 600 }, + [314] = { 47.8, 5.4, 33, 600 }, + [315] = { 37.5, 1, 33, 300 }, + [316] = { 38.7, 97.3, 36, 600 }, + [317] = { 42.8, 95.1, 36, 600 }, + [318] = { 40, 94.9, 36, 600 }, + [319] = { 37.6, 94.6, 36, 600 }, + [320] = { 14.4, 94, 36, 300 }, + [321] = { 41.5, 94, 36, 600 }, + [322] = { 39.8, 93.3, 36, 600 }, + [323] = { 40.7, 91.1, 36, 600 }, + [324] = { 39.1, 90.6, 36, 600 }, + [325] = { 40.6, 90.4, 36, 600 }, + [326] = { 14.6, 90.3, 36, 300 }, + [327] = { 41.8, 89.7, 36, 600 }, + [328] = { 35.1, 89.3, 36, 300 }, + [329] = { 45.7, 89.2, 36, 300 }, + [330] = { 13.7, 89, 36, 300 }, + [331] = { 39.2, 88.7, 36, 600 }, + [332] = { 32.8, 88.7, 36, 300 }, + [333] = { 42.4, 88.5, 36, 300 }, + [334] = { 33.3, 87.3, 36, 300 }, + [335] = { 44.4, 84.2, 36, 300 }, + [336] = { 13.1, 82.6, 36, 300 }, + [337] = { 35.9, 82, 36, 300 }, + [338] = { 29.2, 81.4, 36, 300 }, + [339] = { 11.4, 81.2, 36, 300 }, + [340] = { 33.3, 79.7, 36, 300 }, + [341] = { 30.8, 76.3, 36, 300 }, + [342] = { 41, 72.8, 36, 300 }, + [343] = { 30.6, 68.3, 36, 300 }, + [344] = { 37.1, 68, 36, 600 }, + [345] = { 38.1, 67.8, 36, 600 }, + [346] = { 36.8, 67.3, 36, 600 }, + [347] = { 28.4, 67.2, 36, 300 }, + [348] = { 38.2, 67.1, 36, 600 }, + [349] = { 29.6, 66.2, 36, 300 }, + [350] = { 46.1, 66.1, 36, 300 }, + [351] = { 37.9, 66, 36, 600 }, + [352] = { 37.2, 65.8, 36, 600 }, + [353] = { 65.9, 63.2, 36, 300 }, + [354] = { 32.6, 61.3, 36, 300 }, + [355] = { 37.7, 61, 36, 300 }, + [356] = { 52, 58.2, 36, 300 }, + [357] = { 85.3, 56.5, 36, 300 }, + [358] = { 60.3, 56.5, 36, 300 }, + [359] = { 27.7, 56.3, 36, 300 }, + [360] = { 33.7, 55.3, 36, 300 }, + [361] = { 63.4, 55.1, 36, 300 }, + [362] = { 75.3, 54.6, 36, 300 }, + [363] = { 31.8, 53.6, 36, 300 }, + [364] = { 77.7, 53.4, 36, 300 }, + [365] = { 41.5, 52.2, 36, 300 }, + [366] = { 67.2, 51.9, 36, 300 }, + [367] = { 88.2, 51.1, 36, 300 }, + [368] = { 27.1, 51.1, 36, 300 }, + [369] = { 43.6, 50.9, 36, 300 }, + [370] = { 63.6, 49.3, 36, 300 }, + [371] = { 53.1, 49.2, 36, 600 }, + [372] = { 51.2, 48.5, 36, 600 }, + [373] = { 51.2, 47.3, 36, 600 }, + [374] = { 52.5, 47.2, 36, 600 }, + [375] = { 53.9, 46.8, 36, 300 }, + [376] = { 52.9, 46.5, 36, 600 }, + [377] = { 54.2, 45.9, 36, 600 }, + [378] = { 51.2, 45.8, 36, 600 }, + [379] = { 49.1, 45.6, 36, 600 }, + [380] = { 52.8, 45, 36, 600 }, + [381] = { 49.1, 44.8, 36, 600 }, + [382] = { 42.9, 44.6, 36, 300 }, + [383] = { 49.2, 44.5, 36, 600 }, + [384] = { 51.3, 43.9, 36, 600 }, + [385] = { 76.9, 43.5, 36, 300 }, + [386] = { 51.1, 42, 36, 300 }, + [387] = { 66.4, 41.5, 36, 300 }, + [388] = { 32.9, 39.9, 36, 300 }, + [389] = { 40.3, 38.6, 36, 300 }, + [390] = { 44.3, 38.5, 36, 300 }, + [391] = { 38.6, 37.4, 36, 300 }, + [392] = { 64.5, 35, 36, 300 }, + [393] = { 47.5, 34.3, 36, 600 }, + [394] = { 47.1, 33.8, 36, 600 }, + [395] = { 48.5, 32.8, 36, 600 }, + [396] = { 48, 32.1, 36, 600 }, + [397] = { 40.2, 30.7, 36, 300 }, + [398] = { 56.8, 29.8, 36, 300 }, + [399] = { 60.7, 28.4, 36, 300 }, + [400] = { 50.6, 27, 36, 300 }, + [401] = { 41.9, 24.8, 36, 300 }, + [402] = { 58.7, 24.1, 36, 300 }, + [403] = { 54.5, 20, 36, 300 }, + [404] = { 44.4, 15.2, 36, 300 }, + [405] = { 40.9, 15, 36, 300 }, + [406] = { 38.4, 10.6, 36, 300 }, + [407] = { 37.9, 92.3, 38, 600 }, + [408] = { 36.8, 91.6, 38, 600 }, + [409] = { 33.3, 89.2, 38, 600 }, + [410] = { 39.4, 88.8, 38, 600 }, + [411] = { 52, 88.2, 38, 300 }, + [412] = { 40, 87.3, 38, 600 }, + [413] = { 37.7, 86.8, 38, 600 }, + [414] = { 42.5, 86.8, 38, 600 }, + [415] = { 24.7, 92.8, 45, 300 }, + [416] = { 22.6, 90, 45, 300 }, + [417] = { 18.3, 89.4, 45, 300 }, + [418] = { 28.4, 88.2, 45, 300 }, + [419] = { 21.5, 87.9, 45, 300 }, + [420] = { 23.9, 85.4, 45, 300 }, + [421] = { 19.2, 83.9, 45, 300 }, + [422] = { 21.3, 82.7, 45, 300 }, + [423] = { 54.5, 82.1, 45, 300 }, + [424] = { 66.6, 81.9, 45, 300 }, + [425] = { 67.9, 81.7, 45, 300 }, + [426] = { 55.1, 81.5, 45, 300 }, + [427] = { 66, 81.3, 45, 300 }, + [428] = { 54.2, 80.6, 45, 300 }, + [429] = { 53.4, 80.3, 45, 300 }, + [430] = { 69.5, 80.2, 45, 300 }, + [431] = { 53.4, 79.7, 45, 300 }, + [432] = { 67.8, 79, 45, 300 }, + [433] = { 54.9, 78.9, 45, 300 }, + [434] = { 70.1, 78.3, 45, 300 }, + [435] = { 54.2, 78, 45, 300 }, + [436] = { 51, 77.7, 45, 300 }, + [437] = { 53.9, 77, 45, 300 }, + [438] = { 52.6, 76.7, 45, 300 }, + [439] = { 57.1, 76.7, 45, 300 }, + [440] = { 67.7, 76.4, 45, 300 }, + [441] = { 55.8, 76.4, 45, 300 }, + [442] = { 41.2, 76.4, 45, 300 }, + [443] = { 65.3, 75.2, 45, 300 }, + [444] = { 53.5, 75.1, 45, 300 }, + [445] = { 66.7, 73.9, 45, 300 }, + [446] = { 63.3, 73.9, 45, 300 }, + [447] = { 69.8, 73.8, 45, 300 }, + [448] = { 55.5, 73.3, 45, 300 }, + [449] = { 53.6, 71.3, 45, 300 }, + [450] = { 70.9, 71.2, 45, 300 }, + [451] = { 57.3, 71.2, 45, 300 }, + [452] = { 69.8, 67.5, 45, 300 }, + [453] = { 34.1, 67.3, 45, 300 }, + [454] = { 72.6, 66.9, 45, 300 }, + [455] = { 65.3, 65.7, 45, 300 }, + [456] = { 54.8, 64.6, 45, 300 }, + [457] = { 73.8, 63.7, 45, 300 }, + [458] = { 34.9, 61.9, 45, 300 }, + [459] = { 73.3, 59, 45, 300 }, + [460] = { 70.2, 57.5, 45, 300 }, + [461] = { 70.6, 52.4, 45, 300 }, + [462] = { 9.3, 52.4, 45, 300 }, + [463] = { 72.3, 51.9, 45, 300 }, + [464] = { 70.8, 49.5, 45, 300 }, + [465] = { 8, 49.3, 45, 300 }, + [466] = { 54.4, 48.9, 45, 300 }, + [467] = { 50.3, 47.9, 45, 300 }, + [468] = { 74, 47.6, 45, 300 }, + [469] = { 57.5, 46.9, 45, 300 }, + [470] = { 33, 46.6, 45, 300 }, + [471] = { 33.3, 46.6, 45, 300 }, + [472] = { 31.5, 46.2, 45, 300 }, + [473] = { 31.3, 45.6, 45, 300 }, + [474] = { 32.6, 45.3, 45, 300 }, + [475] = { 10.6, 45, 45, 300 }, + [476] = { 34.1, 44.8, 45, 300 }, + [477] = { 33.1, 44.5, 45, 300 }, + [478] = { 30.2, 44.1, 45, 300 }, + [479] = { 61.6, 44, 45, 300 }, + [480] = { 77.5, 43.6, 45, 300 }, + [481] = { 11, 43.6, 45, 300 }, + [482] = { 12.2, 43.3, 45, 300 }, + [483] = { 38.7, 43.1, 45, 300 }, + [484] = { 79.7, 43, 45, 300 }, + [485] = { 32.7, 42.8, 45, 300 }, + [486] = { 34, 41.9, 45, 300 }, + [487] = { 12.1, 40.7, 45, 300 }, + [488] = { 24.7, 36.5, 45, 300 }, + [489] = { 82.4, 35.8, 45, 300 }, + [490] = { 47.8, 35.7, 45, 300 }, + [491] = { 64.4, 35, 45, 300 }, + [492] = { 38.1, 34.5, 45, 300 }, + [493] = { 84.5, 34, 45, 300 }, + [494] = { 85.8, 33.7, 45, 300 }, + [495] = { 19.2, 33.5, 45, 300 }, + [496] = { 30.7, 32.6, 45, 300 }, + [497] = { 76.7, 32.6, 45, 300 }, + [498] = { 83.6, 32.4, 45, 300 }, + [499] = { 43.4, 31.6, 45, 300 }, + [500] = { 41.7, 31.5, 45, 300 }, + [501] = { 61.6, 31.4, 45, 300 }, + [502] = { 85, 30.8, 45, 300 }, + [503] = { 70.8, 30.7, 45, 300 }, + [504] = { 84.6, 30.7, 45, 300 }, + [505] = { 86.5, 30.5, 45, 300 }, + [506] = { 26.3, 30.3, 45, 300 }, + [507] = { 86.1, 29.8, 45, 300 }, + [508] = { 83.9, 29, 45, 300 }, + [509] = { 40.8, 28.2, 45, 300 }, + [510] = { 69.2, 27.6, 45, 300 }, + [511] = { 84.2, 27.5, 45, 300 }, + [512] = { 65.9, 26.2, 45, 300 }, + [513] = { 36, 25.3, 45, 300 }, + [514] = { 31.9, 22.8, 45, 300 }, + [515] = { 34.4, 21.4, 45, 300 }, + [516] = { 27, 18.5, 45, 300 }, + [517] = { 30.8, 18.2, 45, 300 }, + [518] = { 24.2, 17.7, 45, 300 }, + [519] = { 68.4, 21.2, 46, 600 }, + [520] = { 68.2, 19.4, 46, 600 }, + [521] = { 89.1, 6.5, 46, 300 }, + [522] = { 62.1, 90.2, 47, 300 }, + [523] = { 60, 89.5, 47, 300 }, + [524] = { 60.3, 88, 47, 300 }, + [525] = { 43.3, 69.5, 47, 300 }, + [526] = { 5.1, 67.3, 47, 300 }, + [527] = { 52.4, 59.7, 47, 300 }, + [528] = { 62.8, 59.3, 47, 300 }, + [529] = { 28, 58.9, 47, 300 }, + [530] = { 21.3, 58.7, 47, 300 }, + [531] = { 24.3, 50.6, 47, 300 }, + [532] = { 39, 49.8, 47, 300 }, + [533] = { 39.8, 43.8, 47, 300 }, + [534] = { 44, 43.5, 47, 300 }, + [535] = { 35.6, 42.3, 47, 300 }, + [536] = { 87.1, 83.3, 51, 600 }, + [537] = { 56, 76.4, 51, 300 }, + [538] = { 68.1, 75.2, 51, 300 }, + [539] = { 64.5, 49.3, 51, 300 }, + [540] = { 66.2, 37.8, 51, 300 }, + [541] = { 71.1, 60.1, 130, 300 }, + [542] = { 79.9, 23.7, 130, 300 }, + [543] = { 26.5, 26.4, 215, 300 }, + [544] = { 70.9, 83.9, 267, 300 }, + [545] = { 66.9, 83.1, 267, 300 }, + [546] = { 18.7, 81.1, 267, 300 }, + [547] = { 69.5, 80.5, 267, 300 }, + [548] = { 15.7, 80.2, 267, 300 }, + [549] = { 13.5, 79.2, 267, 300 }, + [550] = { 64.2, 76.7, 267, 300 }, + [551] = { 72.3, 75.6, 267, 300 }, + [552] = { 72.7, 74, 267, 300 }, + [553] = { 74.1, 73.7, 267, 300 }, + [554] = { 74, 70.8, 267, 300 }, + [555] = { 70.4, 66.2, 267, 300 }, + [556] = { 87.7, 45, 267, 300 }, + [557] = { 85.1, 42.1, 267, 300 }, + [558] = { 88.7, 37.7, 267, 300 }, + [559] = { 86.6, 35.4, 267, 300 }, + [560] = { 42.7, 33.6, 267, 600 }, + [561] = { 83.1, 32.1, 267, 300 }, + [562] = { 46.3, 31.6, 267, 600 }, + [563] = { 43.9, 31.5, 267, 600 }, + [564] = { 41.8, 31.2, 267, 600 }, + [565] = { 88.7, 31, 267, 300 }, + [566] = { 80.1, 30.8, 267, 300 }, + [567] = { 21.5, 30.7, 267, 300 }, + [568] = { 45.2, 30.7, 267, 600 }, + [569] = { 43.7, 30.1, 267, 600 }, + [570] = { 44.5, 28.1, 267, 600 }, + [571] = { 43.1, 27.7, 267, 600 }, + [572] = { 44.4, 27.6, 267, 600 }, + [573] = { 21.6, 27.4, 267, 300 }, + [574] = { 45.4, 27, 267, 600 }, + [575] = { 39.5, 26.5, 267, 300 }, + [576] = { 48.9, 26.5, 267, 300 }, + [577] = { 20.9, 26.3, 267, 300 }, + [578] = { 43.1, 26.1, 267, 600 }, + [579] = { 37.6, 26.1, 267, 300 }, + [580] = { 45.9, 25.9, 267, 300 }, + [581] = { 38, 24.9, 267, 300 }, + [582] = { 47.7, 22.1, 267, 300 }, + [583] = { 20.4, 20.7, 267, 300 }, + [584] = { 40.3, 20.2, 267, 300 }, + [585] = { 34.4, 19.7, 267, 300 }, + [586] = { 18.9, 19.5, 267, 300 }, + [587] = { 38, 18.2, 267, 300 }, + [588] = { 35.8, 15.2, 267, 300 }, + [589] = { 44.7, 12.1, 267, 300 }, + [590] = { 35.6, 8.2, 267, 300 }, + [591] = { 41.3, 8, 267, 600 }, + [592] = { 42.2, 7.7, 267, 600 }, + [593] = { 41.1, 7.3, 267, 600 }, + [594] = { 42.3, 7.2, 267, 600 }, + [595] = { 49.2, 6.3, 267, 300 }, + [596] = { 42, 6.2, 267, 600 }, + [597] = { 41.4, 6, 267, 600 }, + [598] = { 66.5, 3.7, 267, 300 }, + [599] = { 41.8, 1.8, 267, 300 }, + [600] = { 63.4, 86.3, 331, 300 }, + [601] = { 71.6, 84.8, 331, 300 }, + [602] = { 66.1, 83.3, 331, 300 }, + [603] = { 70.4, 81.5, 331, 300 }, + [604] = { 80.4, 81, 331, 300 }, + [605] = { 61.1, 80.4, 331, 300 }, + [606] = { 73.8, 80.3, 331, 300 }, + [607] = { 82.8, 80.1, 331, 300 }, + [608] = { 88.9, 79.2, 331, 300 }, + [609] = { 66.5, 78.3, 331, 300 }, + [610] = { 81.5, 77.8, 331, 300 }, + [611] = { 83.1, 77.3, 331, 300 }, + [612] = { 75.6, 76.5, 331, 300 }, + [613] = { 90.3, 76.4, 331, 300 }, + [614] = { 64.8, 76.3, 331, 300 }, + [615] = { 85.4, 74.3, 331, 300 }, + [616] = { 69.7, 73.8, 331, 300 }, + [617] = { 64.6, 73.6, 331, 300 }, + [618] = { 81.1, 73.3, 331, 300 }, + [619] = { 85.1, 71.4, 331, 300 }, + [620] = { 79.8, 70.4, 331, 300 }, + [621] = { 75.2, 69.4, 331, 300 }, + [622] = { 86.8, 69.2, 331, 300 }, + [623] = { 67.7, 68.5, 331, 300 }, + [624] = { 90.9, 68.4, 331, 300 }, + [625] = { 67.5, 66.2, 331, 300 }, + [626] = { 71.3, 65.2, 331, 300 }, + [627] = { 82.2, 64.8, 331, 300 }, + [628] = { 62.7, 64.7, 331, 300 }, + [629] = { 78.1, 64.7, 331, 300 }, + [630] = { 90.7, 63.6, 331, 300 }, + [631] = { 79.1, 63.3, 331, 300 }, + [632] = { 65.4, 63.2, 331, 300 }, + [633] = { 70.8, 60, 331, 300 }, + [634] = { 65.8, 60, 331, 300 }, + [635] = { 68.9, 58.4, 331, 300 }, + [636] = { 74.7, 57.4, 331, 300 }, + [637] = { 72.5, 57, 331, 300 }, + [638] = { 93.3, 56.4, 331, 300 }, + [639] = { 64.4, 55.6, 331, 300 }, + [640] = { 71.3, 53.1, 331, 300 }, + [641] = { 75.4, 52.8, 331, 300 }, + [642] = { 77.2, 52.3, 331, 300 }, + [643] = { 64.5, 51.6, 331, 300 }, + [644] = { 70.7, 51.4, 331, 300 }, + [645] = { 72.3, 51, 331, 300 }, + [646] = { 91.4, 49.4, 331, 300 }, + [647] = { 62.2, 48.4, 331, 300 }, + [648] = { 64.6, 47.3, 331, 300 }, + [649] = { 53.2, 46.9, 331, 300 }, + [650] = { 73.7, 45.9, 331, 300 }, + [651] = { 58.1, 43.2, 331, 300 }, + [652] = { 63, 42.6, 331, 300 }, + [653] = { 55.2, 39.9, 331, 300 }, + [654] = { 60.9, 38.1, 331, 300 }, + [655] = { 58.3, 31.2, 331, 300 }, + [656] = { 54, 64.6, 357, 300 }, + [657] = { 52.8, 59.3, 357, 300 }, + [658] = { 50.9, 58.8, 357, 300 }, + [659] = { 52, 58.2, 357, 300 }, + [660] = { 61.4, 58, 357, 300 }, + [661] = { 52.7, 57.7, 357, 300 }, + [662] = { 53.1, 56.2, 357, 300 }, + [663] = { 55.2, 56, 357, 300 }, + [664] = { 54.1, 55.8, 357, 300 }, + [665] = { 54.2, 50, 357, 300 }, + [666] = { 80.3, 47.3, 357, 300 }, + [667] = { 67.3, 45.9, 357, 300 }, + [668] = { 67.8, 43.7, 357, 300 }, + [669] = { 92.9, 41.7, 357, 300 }, + [670] = { 68.5, 39, 357, 300 }, + [671] = { 81.1, 38.5, 357, 300 }, + [672] = { 70.7, 35.6, 357, 300 }, + [673] = { 75.1, 32.6, 357, 300 }, + [674] = { 74.3, 28.8, 357, 300 }, + [675] = { 57.5, 95.4, 361, 300 }, + [676] = { 76.3, 93.7, 400, 300 }, + [677] = { 69.9, 92.1, 400, 300 }, + [678] = { 84, 87.5, 400, 300 }, + [679] = { 77.2, 87.1, 400, 300 }, + [680] = { 86.6, 84.4, 400, 300 }, + [681] = { 68.4, 77.9, 400, 300 }, + [682] = { 89.4, 76.9, 400, 300 }, + [683] = { 69.8, 69.2, 400, 300 }, + [684] = { 77.7, 64, 400, 300 }, + [685] = { 80.1, 63.5, 400, 300 }, + [686] = { 78.5, 62.1, 400, 300 }, + [687] = { 77.5, 61.7, 400, 300 }, + [688] = { 66.9, 60.6, 400, 300 }, + [689] = { 43.9, 60.2, 400, 300 }, + [690] = { 63.9, 59, 400, 300 }, + [691] = { 48.2, 58.7, 400, 300 }, + [692] = { 59.4, 58.2, 400, 300 }, + [693] = { 50.2, 57.1, 400, 300 }, + [694] = { 26.8, 56.1, 400, 300 }, + [695] = { 26.7, 55.3, 400, 300 }, + [696] = { 25.8, 55.2, 400, 300 }, + [697] = { 27.1, 54.6, 400, 300 }, + [698] = { 37, 54.3, 400, 300 }, + [699] = { 27.3, 53.9, 400, 300 }, + [700] = { 34.4, 53.4, 400, 300 }, + [701] = { 83.4, 53, 400, 300 }, + [702] = { 27.3, 52.5, 400, 300 }, + [703] = { 67.8, 52, 400, 300 }, + [704] = { 26.8, 51.9, 400, 300 }, + [705] = { 65.8, 51.8, 400, 300 }, + [706] = { 33, 51.2, 400, 300 }, + [707] = { 55.4, 51.1, 400, 300 }, + [708] = { 75.3, 51, 400, 300 }, + [709] = { 40.2, 50.8, 400, 300 }, + [710] = { 36.4, 50.7, 400, 300 }, + [711] = { 59.1, 49.5, 400, 300 }, + [712] = { 28.8, 49, 400, 300 }, + [713] = { 62, 47.8, 400, 300 }, + [714] = { 26.4, 47, 400, 300 }, + [715] = { 53.7, 46.4, 400, 300 }, + [716] = { 30.1, 45.9, 400, 300 }, + [717] = { 23.7, 44.8, 400, 300 }, + [718] = { 21.8, 41.2, 400, 300 }, + [719] = { 16.6, 40.9, 400, 300 }, + [720] = { 15.2, 40.3, 400, 300 }, + [721] = { 48.3, 40.2, 400, 300 }, + [722] = { 42.4, 39.6, 400, 300 }, + [723] = { 45.1, 39.1, 400, 300 }, + [724] = { 11.8, 38.2, 400, 300 }, + [725] = { 20.7, 37.8, 400, 300 }, + [726] = { 44.4, 37.7, 400, 300 }, + [727] = { 38, 37.3, 400, 300 }, + [728] = { 13.3, 36.9, 400, 300 }, + [729] = { 44.9, 36.6, 400, 300 }, + [730] = { 44.1, 36.4, 400, 300 }, + [731] = { 18, 36, 400, 300 }, + [732] = { 9.6, 35.1, 400, 300 }, + [733] = { 42.1, 35, 400, 300 }, + [734] = { 13, 34.8, 400, 300 }, + [735] = { 43.1, 34.8, 400, 300 }, + [736] = { 14.7, 34.4, 400, 300 }, + [737] = { 44.2, 33.5, 400, 300 }, + [738] = { 21.1, 33.5, 400, 300 }, + [739] = { 42.4, 33.5, 400, 300 }, + [740] = { 43.3, 33.1, 400, 300 }, + [741] = { 41.5, 32.9, 400, 300 }, + [742] = { 43.6, 32.8, 400, 300 }, + [743] = { 38.5, 32.7, 400, 300 }, + [744] = { 42.6, 32.3, 400, 300 }, + [745] = { 42.6, 31, 400, 300 }, + [746] = { 10.4, 30.8, 400, 300 }, + [747] = { 27.5, 29.2, 400, 300 }, + [748] = { 35.2, 28.8, 400, 300 }, + [749] = { 28.1, 28.1, 400, 300 }, + [750] = { 34.6, 27.5, 400, 300 }, + [751] = { 12.6, 25.3, 400, 300 }, + [752] = { 23.9, 24.4, 400, 300 }, + [753] = { 23.8, 22.4, 400, 300 }, + [754] = { 15.8, 18.9, 400, 300 }, + [755] = { 13.3, 11.4, 400, 300 }, + [756] = { 59.1, 90.6, 405, 300 }, + [757] = { 51.1, 90.1, 405, 300 }, + [758] = { 65.9, 90.1, 405, 300 }, + [759] = { 60.5, 88.5, 405, 300 }, + [760] = { 47.2, 88.2, 405, 300 }, + [761] = { 54, 87.6, 405, 300 }, + [762] = { 57.2, 81.9, 405, 300 }, + [763] = { 71.9, 80.3, 405, 300 }, + [764] = { 67.8, 77.4, 405, 300 }, + [765] = { 58.2, 74.6, 405, 300 }, + [766] = { 42.3, 74.5, 405, 300 }, + [767] = { 32.1, 71.6, 405, 300 }, + [768] = { 29.5, 71.3, 405, 300 }, + [769] = { 76.3, 70.5, 405, 300 }, + [770] = { 48.2, 69.7, 405, 300 }, + [771] = { 58.5, 69.4, 405, 300 }, + [772] = { 64.7, 69.1, 405, 300 }, + [773] = { 38.7, 68.2, 405, 300 }, + [774] = { 58.9, 65.6, 405, 300 }, + [775] = { 69, 63.2, 405, 300 }, + [776] = { 32.3, 63, 405, 300 }, + [777] = { 32.3, 62.6, 405, 300 }, + [778] = { 65.9, 60.7, 405, 300 }, + [779] = { 30.4, 60.4, 405, 300 }, + [780] = { 62.4, 60.3, 405, 300 }, + [781] = { 74.3, 60.2, 405, 300 }, + [782] = { 36.9, 59.4, 405, 300 }, + [783] = { 74.4, 57, 405, 300 }, + [784] = { 29.8, 56.6, 405, 300 }, + [785] = { 35.4, 56.5, 405, 300 }, + [786] = { 40.2, 55.5, 405, 300 }, + [787] = { 64.2, 55.2, 405, 300 }, + [788] = { 78.9, 54.3, 405, 300 }, + [789] = { 45.3, 54, 405, 300 }, + [790] = { 75.5, 53.3, 405, 300 }, + [791] = { 35.1, 52.1, 405, 300 }, + [792] = { 34.3, 51.6, 405, 300 }, + [793] = { 64.3, 51.2, 405, 300 }, + [794] = { 30.6, 51.2, 405, 300 }, + [795] = { 60.9, 51.1, 405, 300 }, + [796] = { 40.8, 48.5, 405, 300 }, + [797] = { 66.3, 47, 405, 300 }, + [798] = { 75.1, 46.9, 405, 300 }, + [799] = { 55, 46, 405, 300 }, + [800] = { 71.2, 45.6, 405, 300 }, + [801] = { 59.6, 45.3, 405, 300 }, + [802] = { 64.9, 44.9, 405, 300 }, + [803] = { 54.1, 44.6, 405, 300 }, + [804] = { 57.1, 43.8, 405, 300 }, + [805] = { 40.1, 43.7, 405, 300 }, + [806] = { 63.7, 43.7, 405, 300 }, + [807] = { 47.1, 43.1, 405, 300 }, + [808] = { 66.5, 42, 405, 300 }, + [809] = { 72.7, 41.2, 405, 300 }, + [810] = { 74.1, 36.9, 405, 300 }, + [811] = { 77.2, 36.6, 405, 300 }, + [812] = { 46.8, 34.5, 405, 300 }, + [813] = { 50.3, 33.2, 405, 300 }, + [814] = { 58.9, 31.9, 405, 300 }, + [815] = { 53, 24.2, 405, 300 }, + [816] = { 59.7, 20.8, 405, 300 }, + [817] = { 46.7, 13.2, 405, 300 }, + [818] = { 61.5, 12.2, 405, 300 }, + [819] = { 52, 8.7, 405, 300 }, + [820] = { 29.2, 8.2, 405, 300 }, + [821] = { 36.4, 86.9, 406, 300 }, + [822] = { 27.7, 83.7, 406, 300 }, + [823] = { 35.3, 75.1, 406, 300 }, + [824] = { 31.8, 75.1, 406, 300 }, + [825] = { 27.5, 71.4, 406, 300 }, + [826] = { 37.5, 69.9, 406, 300 }, + [827] = { 31.1, 64.3, 406, 300 }, + [828] = { 28.6, 62.2, 406, 300 }, + [829] = { 38.7, 21.1, 406, 300 }, + [830] = { 40.1, 19.2, 406, 300 }, + [831] = { 34.5, 14.3, 406, 300 }, + [832] = { 30.2, 13.9, 406, 300 }, + [833] = { 35.4, 9.2, 406, 300 }, + [834] = { 34.1, 5.3, 406, 300 }, + [835] = { 48.8, 71, 440, 300 }, + [836] = { 52.2, 63.8, 440, 300 }, + [837] = { 57.9, 62.6, 440, 300 }, + [838] = { 55.1, 61.2, 440, 300 }, + [839] = { 31.2, 52.2, 440, 300 }, + [840] = { 72.1, 48.8, 440, 300 }, + [841] = { 59.1, 48.1, 440, 300 }, + [842] = { 36.4, 48, 440, 300 }, + [843] = { 70.9, 47.4, 440, 300 }, + [844] = { 73.7, 46, 440, 300 }, + [845] = { 70.5, 45.5, 440, 300 }, + [846] = { 37.5, 45.4, 440, 300 }, + [847] = { 69.3, 43.6, 440, 300 }, + [848] = { 66.5, 42.4, 440, 300 }, + [849] = { 61.8, 41.2, 440, 300 }, + [850] = { 37.8, 40.4, 440, 300 }, + [851] = { 62.7, 40.1, 440, 300 }, + [852] = { 57.2, 38.6, 440, 300 }, + [853] = { 56.2, 37.3, 440, 300 }, + [854] = { 65.3, 35.8, 440, 300 }, + [855] = { 60, 35.7, 440, 300 }, + [856] = { 53.4, 34.8, 440, 300 }, + [857] = { 61.8, 32.8, 440, 300 }, + [858] = { 59, 32.5, 440, 300 }, + [859] = { 58.3, 30, 440, 300 }, + [860] = { 55, 26.5, 440, 300 }, + }, + }, + [1736] = { + ["coords"] = { + [1] = { 32, 45.4, 267, 300 }, + }, + }, + [1738] = { + ["coords"] = { + [1] = { 58.3, 68, 36, 7200 }, + [2] = { 59.9, 7.9, 267, 7200 }, + }, + ["fac"] = "A", + }, + [1739] = { + ["coords"] = { + [1] = { 58.3, 68, 36, 7200 }, + [2] = { 59.9, 7.9, 267, 7200 }, + }, + ["fac"] = "A", + }, + [1740] = { + ["coords"] = { + [1] = { 58.3, 67.9, 36, 7200 }, + [2] = { 59.9, 7.9, 267, 7200 }, + }, + ["fac"] = "A", + }, + [1743] = { + ["coords"] = { + [1] = { 63.8, 59.7, 85, 900 }, + }, + }, + [1744] = { + ["coords"] = { + [1] = { 63.9, 59.7, 85, 900 }, + }, + }, + [1745] = { + ["coords"] = { + [1] = { 44.7, 70.4, 40, 3600 }, + }, + }, + [1748] = { + ["coords"] = { + [1] = { 45.3, 51.9, 1, 900 }, + }, + }, + [1749] = { + ["coords"] = { + [1] = { 45.3, 51.8, 1, 900 }, + }, + }, + [1752] = { + ["coords"] = {}, + }, + [1753] = { + ["coords"] = {}, + }, + [1754] = { + ["coords"] = {}, + }, + [1755] = { + ["coords"] = {}, + }, + [1759] = { + ["coords"] = { + [1] = { 29.5, 41.5, 267, 10 }, + }, + }, + [1760] = { + ["coords"] = { + [1] = { 38.4, 46.4, 36, 0 }, + }, + }, + [1761] = { + ["coords"] = { + [1] = { 29.7, 41.7, 267, 10 }, + }, + }, + [1763] = { + ["coords"] = { + [1] = { 61.5, 82.6, 36, 7200 }, + [2] = { 62.6, 20.8, 267, 7200 }, + }, + ["fac"] = "H", + }, + [1764] = { + ["coords"] = { + [1] = { 60, 43.7, 36, 7200 }, + }, + }, + [1765] = { + ["coords"] = { + [1] = { 39.2, 14.7, 36, 0 }, + }, + ["fac"] = "A", + }, + [1766] = { + ["coords"] = { + [1] = { 25, 76, 1, 900 }, + }, + }, + [1767] = { + ["coords"] = { + [1] = { 52.8, 53.4, 267, 10 }, + }, + ["fac"] = "H", + }, + [1768] = { + ["coords"] = { + [1] = { 40, 91, 36, 10 }, + [2] = { 43.9, 28.1, 267, 10 }, + }, + }, + [1769] = { + ["coords"] = { + [1] = { 40.2, 89.3, 36, 10 }, + [2] = { 44, 26.6, 267, 10 }, + }, + }, + [1770] = { + ["coords"] = { + [1] = { 37.5, 66.2, 36, 10 }, + [2] = { 41.7, 6.4, 267, 10 }, + }, + }, + [1771] = { + ["coords"] = { + [1] = { 32.1, 50.6, 267, 7200 }, + }, + }, + [1772] = { + ["coords"] = { + [1] = { 32.1, 50.6, 267, 7200 }, + }, + }, + [1773] = { + ["coords"] = { + [1] = { 32.1, 50.6, 267, 7200 }, + }, + }, + [1774] = { + ["coords"] = { + [1] = { 32.1, 50.6, 267, 7200 }, + }, + }, + [1775] = { + ["coords"] = { + [1] = { 51.5, 38.9, 267, 7200 }, + }, + }, + [1776] = { + ["coords"] = { + [1] = { 51.5, 38.9, 267, 7200 }, + }, + }, + [1777] = { + ["coords"] = { + [1] = { 51.5, 38.9, 267, 7200 }, + }, + }, + [1778] = { + ["coords"] = { + [1] = { 51.5, 38.9, 267, 7200 }, + }, + }, + [1779] = { + ["coords"] = { + [1] = { 51.5, 38.9, 267, 7200 }, + }, + }, + [1780] = { + ["coords"] = { + [1] = { 57.4, 36.3, 267, 7200 }, + }, + }, + [1781] = { + ["coords"] = { + [1] = { 57.4, 36.3, 267, 7200 }, + }, + }, + [1782] = { + ["coords"] = { + [1] = { 57.4, 36.3, 267, 7200 }, + }, + }, + [1783] = { + ["coords"] = { + [1] = { 57.4, 36.3, 267, 7200 }, + }, + }, + [1784] = { + ["coords"] = { + [1] = { 57.4, 36.3, 267, 7200 }, + }, + }, + [1785] = { + ["coords"] = { + [1] = { 57.4, 36.3, 267, 7200 }, + }, + }, + [1786] = { + ["coords"] = { + [1] = { 74.2, 50.1, 267, 7200 }, + }, + }, + [1787] = { + ["coords"] = { + [1] = { 74.2, 50.1, 267, 7200 }, + }, + }, + [1788] = { + ["coords"] = { + [1] = { 74.2, 50.1, 267, 7200 }, + }, + }, + [1789] = { + ["coords"] = { + [1] = { 74.2, 50.1, 267, 7200 }, + }, + }, + [1790] = { + ["coords"] = { + [1] = { 74.2, 50.1, 267, 7200 }, + }, + }, + [1791] = { + ["coords"] = { + [1] = { 16.8, 26.8, 45, 7200 }, + [2] = { 79.3, 55.2, 267, 7200 }, + }, + }, + [1792] = { + ["coords"] = { + [1] = { 16.8, 26.8, 45, 7200 }, + [2] = { 79.3, 55.2, 267, 7200 }, + }, + }, + [1793] = { + ["coords"] = { + [1] = { 16.8, 26.8, 45, 7200 }, + [2] = { 79.3, 55.2, 267, 7200 }, + }, + }, + [1794] = { + ["coords"] = { + [1] = { 16.8, 26.8, 45, 7200 }, + [2] = { 79.3, 55.2, 267, 7200 }, + }, + }, + [1795] = { + ["coords"] = { + [1] = { 16.8, 26.8, 45, 7200 }, + [2] = { 79.3, 55.2, 267, 7200 }, + }, + }, + [1796] = { + ["coords"] = { + [1] = { 78.2, 44.6, 267, 7200 }, + }, + }, + [1797] = { + ["coords"] = { + [1] = { 78.2, 44.5, 267, 7200 }, + }, + }, + [1798] = { + ["coords"] = { + [1] = { 7.7, 33.9, 10, 3600 }, + }, + }, + [1799] = { + ["coords"] = { + [1] = { 45, 67.3, 10, 3600 }, + }, + }, + [1801] = { + ["coords"] = { + [1] = { 23.4, 26.6, 44, 7200 }, + }, + }, + [1802] = { + ["coords"] = { + [1] = { 35.6, 8.3, 44, 7200 }, + [2] = { 70.9, 85.2, 46, 7200 }, + }, + }, + [1803] = { + ["coords"] = { + [1] = { 27.6, 21.6, 44, 7200 }, + }, + }, + [1804] = { + ["coords"] = { + [1] = { 34.2, 25.3, 44, 7200 }, + }, + }, + [1805] = { + ["coords"] = { + [1] = { 28.2, 28.1, 44, 7200 }, + }, + }, + [1806] = { + ["coords"] = { + [1] = { 38.7, 31.9, 44, 7200 }, + }, + }, + [1807] = { + ["coords"] = { + [1] = { 21.3, 36.4, 44, 7200 }, + }, + }, + [1808] = { + ["coords"] = { + [1] = { 14.9, 61.3, 44, 7200 }, + }, + }, + [1809] = { + ["coords"] = { + [1] = { 15.4, 63.7, 44, 7200 }, + }, + }, + [1810] = { + ["coords"] = { + [1] = { 61.1, 43.1, 44, 7200 }, + }, + }, + [1811] = { + ["coords"] = { + [1] = { 75, 49.8, 44, 7200 }, + }, + }, + [1812] = { + ["coords"] = { + [1] = { 73.4, 55.2, 44, 7200 }, + }, + }, + [1813] = { + ["coords"] = { + [1] = { 69.4, 60.1, 44, 7200 }, + }, + }, + [1814] = { + ["coords"] = { + [1] = { 79, 40.6, 44, 7200 }, + }, + }, + [1815] = { + ["coords"] = { + [1] = { 79.8, 45.2, 44, 7200 }, + }, + }, + [1816] = { + ["coords"] = { + [1] = { 75.8, 47.2, 44, 7200 }, + }, + }, + [1817] = { + ["coords"] = { + [1] = { 83.7, 57.7, 44, 7200 }, + }, + }, + [1818] = { + ["coords"] = { + [1] = { 77.9, 67.5, 44, 7200 }, + }, + }, + [1819] = { + ["coords"] = { + [1] = { 29.3, 84, 44, 7200 }, + }, + }, + [1820] = { + ["coords"] = { + [1] = { 30.9, 84.1, 44, 7200 }, + }, + }, + [1821] = { + ["coords"] = { + [1] = { 74.2, 78.8, 44, 7200 }, + }, + }, + [1822] = { + ["coords"] = { + [1] = { 58.1, 30.2, 10, 3600 }, + }, + }, + [1824] = { + ["coords"] = { + [1] = { 64, 73.2, 10, 3600 }, + }, + }, + [1825] = { + ["coords"] = { + [1] = { 61, 75.4, 10, 3600 }, + }, + }, + [1826] = { + ["coords"] = { + [1] = { 62.1, 81.5, 10, 3600 }, + }, + }, + [1827] = { + ["coords"] = { + [1] = { 81.4, 59.9, 10, 3600 }, + }, + }, + [1828] = { + ["coords"] = { + [1] = { 72, 72.1, 10, 3600 }, + }, + }, + [1829] = { + ["coords"] = { + [1] = { 61.7, 21.8, 8, 600 }, + }, + }, + [1830] = { + ["coords"] = { + [1] = { 65.1, 22.4, 8, 600 }, + }, + }, + [1831] = { + ["coords"] = { + [1] = { 50.1, 49, 8, 600 }, + }, + }, + [1832] = { + ["coords"] = { + [1] = { 81.3, 80.6, 8, 600 }, + }, + }, + [1833] = { + ["coords"] = { + [1] = { 35.5, 22, 40, 3600 }, + }, + }, + [1834] = { + ["coords"] = { + [1] = { 32.4, 26.8, 40, 3600 }, + }, + }, + [1835] = { + ["coords"] = { + [1] = { 34.3, 26.8, 40, 3600 }, + }, + }, + [1836] = { + ["coords"] = { + [1] = { 44.9, 13.9, 40, 3600 }, + }, + }, + [1837] = { + ["coords"] = { + [1] = { 52.1, 15.1, 40, 3600 }, + }, + }, + [1838] = { + ["coords"] = { + [1] = { 41.8, 20.8, 40, 3600 }, + }, + }, + [1839] = { + ["coords"] = { + [1] = { 56.3, 13.5, 40, 3600 }, + }, + }, + [1840] = { + ["coords"] = { + [1] = { 36.7, 31.9, 40, 3600 }, + }, + }, + [1841] = { + ["coords"] = { + [1] = { 27.8, 54.1, 40, 3600 }, + }, + }, + [1842] = { + ["coords"] = { + [1] = { 48.2, 46.8, 40, 3600 }, + }, + }, + [1843] = { + ["coords"] = { + [1] = { 57.5, 53.7, 40, 3600 }, + }, + }, + [1844] = { + ["coords"] = { + [1] = { 32.9, 56.6, 40, 3600 }, + }, + }, + [1845] = { + ["coords"] = { + [1] = { 30.3, 57.9, 40, 3600 }, + }, + }, + [1846] = { + ["coords"] = { + [1] = { 29.3, 65.4, 40, 3600 }, + }, + }, + [1847] = { + ["coords"] = { + [1] = { 28.2, 69.1, 40, 3600 }, + }, + }, + [1848] = { + ["coords"] = { + [1] = { 31.1, 69.3, 40, 3600 }, + }, + }, + [1849] = { + ["coords"] = { + [1] = { 37.3, 75.4, 40, 3600 }, + }, + }, + [1850] = { + ["coords"] = { + [1] = { 48.3, 61.1, 40, 3600 }, + }, + }, + [1851] = { + ["coords"] = { + [1] = { 52.9, 62.6, 40, 3600 }, + }, + }, + [1852] = { + ["coords"] = { + [1] = { 56.4, 69.9, 40, 3600 }, + }, + }, + [1853] = { + ["coords"] = { + [1] = { 60.5, 70.7, 40, 3600 }, + }, + }, + [1854] = { + ["coords"] = { + [1] = { 63.8, 70.2, 40, 3600 }, + }, + }, + [1855] = { + ["coords"] = { + [1] = { 59.4, 74.1, 40, 3600 }, + }, + }, + [1856] = { + ["coords"] = { + [1] = { 63.6, 73, 40, 3600 }, + }, + }, + [1857] = { + ["coords"] = { + [1] = { 56.5, 74.3, 40, 3600 }, + }, + }, + [1858] = { + ["coords"] = { + [1] = { 60.9, 74.3, 40, 3600 }, + }, + }, + [1859] = { + ["coords"] = { + [1] = { 65.2, 75.2, 40, 3600 }, + }, + }, + [1860] = { + ["coords"] = { + [1] = { 37, 82.4, 40, 3600 }, + }, + }, + [1864] = { + ["coords"] = { + [1] = { 53.2, 78.9, 40, 3600 }, + }, + }, + [1865] = { + ["coords"] = { + [1] = { 44.7, 80.1, 40, 3600 }, + }, + }, + [1866] = { + ["coords"] = { + [1] = { 35.1, 27.4, 11, 7200 }, + }, + }, + [1867] = { + ["coords"] = { + [1] = { 40, 27.5, 11, 7200 }, + }, + }, + [1868] = { + ["coords"] = { + [1] = { 31.5, 29.7, 11, 7200 }, + }, + }, + [1869] = { + ["coords"] = { + [1] = { 31.3, 32.9, 11, 7200 }, + }, + }, + [1870] = { + ["coords"] = { + [1] = { 38.9, 34.1, 11, 7200 }, + }, + }, + [1871] = { + ["coords"] = { + [1] = { 30.7, 29.2, 28, 900 }, + [2] = { 87.1, 43.4, 85, 900 }, + }, + }, + [1872] = { + ["coords"] = { + [1] = { 37.5, 67.9, 85, 900 }, + }, + }, + [1873] = { + ["coords"] = { + [1] = { 65.5, 60, 85, 900 }, + }, + }, + [1874] = { + ["coords"] = { + [1] = { 52.8, 27.6, 11, 7200 }, + }, + }, + [1875] = { + ["coords"] = { + [1] = { 51.3, 30.9, 11, 7200 }, + }, + }, + [1876] = { + ["coords"] = { + [1] = { 45.1, 31.8, 11, 7200 }, + }, + }, + [1877] = { + ["coords"] = { + [1] = { 42.9, 32.4, 11, 7200 }, + }, + }, + [1878] = { + ["coords"] = { + [1] = { 43.6, 34.6, 11, 7200 }, + }, + }, + [1879] = { + ["coords"] = { + [1] = { 45.6, 34.6, 11, 7200 }, + }, + }, + [1880] = { + ["coords"] = { + [1] = { 60.1, 24.6, 11, 7200 }, + }, + }, + [1881] = { + ["coords"] = { + [1] = { 62, 26.3, 11, 7200 }, + }, + }, + [1882] = { + ["coords"] = { + [1] = { 62.4, 28.3, 11, 7200 }, + }, + }, + [1883] = { + ["coords"] = { + [1] = { 45.5, 42.9, 11, 7200 }, + }, + }, + [1884] = { + ["coords"] = { + [1] = { 45.8, 45.3, 11, 7200 }, + }, + }, + [1885] = { + ["coords"] = { + [1] = { 49.3, 46.6, 11, 7200 }, + }, + }, + [1886] = { + ["coords"] = { + [1] = { 53.4, 54.3, 11, 7200 }, + }, + }, + [1887] = { + ["coords"] = { + [1] = { 48, 76, 11, 7200 }, + }, + }, + [1888] = { + ["coords"] = { + [1] = { 61.1, 58.5, 11, 7200 }, + }, + }, + [1889] = { + ["coords"] = { + [1] = { 62.7, 69.5, 11, 7200 }, + }, + }, + [1890] = { + ["coords"] = { + [1] = { 61.7, 72.3, 11, 7200 }, + }, + }, + [1891] = { + ["coords"] = { + [1] = { 55.7, 75.2, 11, 7200 }, + }, + }, + [1892] = { + ["coords"] = { + [1] = { 47.7, 17.2, 36, 7200 }, + }, + }, + [1893] = { + ["coords"] = { + [1] = { 53.6, 20.8, 36, 7200 }, + }, + }, + [1894] = { + ["coords"] = { + [1] = { 56.1, 27, 36, 7200 }, + }, + }, + [1895] = { + ["coords"] = { + [1] = { 58.2, 30.2, 36, 7200 }, + }, + }, + [1896] = { + ["coords"] = { + [1] = { 51.2, 57.2, 267, 7200 }, + }, + }, + [1897] = { + ["coords"] = { + [1] = { 51.2, 57.3, 267, 7200 }, + }, + }, + [1898] = { + ["coords"] = { + [1] = { 58.2, 67.8, 36, 7200 }, + [2] = { 59.8, 7.7, 267, 7200 }, + }, + }, + [1901] = { + ["coords"] = { + [1] = { 40.5, 52.2, 28, 1200 }, + }, + }, + [1902] = { + ["coords"] = { + [1] = { 53.2, 36.6, 28, 1200 }, + }, + }, + [1903] = { + ["coords"] = { + [1] = { 50.9, 40.4, 28, 1200 }, + }, + }, + [1904] = { + ["coords"] = { + [1] = { 51.8, 44.4, 28, 1200 }, + }, + }, + [1905] = { + ["coords"] = { + [1] = { 44.8, 12.7, 28, 1200 }, + }, + }, + [1906] = { + ["coords"] = { + [1] = { 44.6, 33.9, 28, 1200 }, + }, + }, + [1908] = { + ["coords"] = { + [1] = { 37.4, 16.4, 38, 7200 }, + }, + }, + [1909] = { + ["coords"] = { + [1] = { 37.1, 24.8, 38, 7200 }, + }, + }, + [1911] = { + ["coords"] = { + [1] = { 25.6, 43.3, 38, 7200 }, + }, + }, + [1912] = { + ["coords"] = { + [1] = { 54.5, 26.6, 38, 7200 }, + }, + }, + [1914] = { + ["coords"] = { + [1] = { 26.7, 56.9, 38, 7200 }, + }, + }, + [1915] = { + ["coords"] = { + [1] = { 65, 66.3, 38, 7200 }, + }, + }, + [1916] = { + ["coords"] = { + [1] = { 32.1, 75.2, 38, 7200 }, + }, + }, + [1917] = { + ["coords"] = { + [1] = { 29.5, 83.7, 38, 7200 }, + }, + }, + [1921] = { + ["coords"] = { + [1] = { 42.7, 84.6, 148, 180 }, + }, + }, + [1922] = { + ["coords"] = { + [1] = { 44.3, 84.3, 148, 900 }, + }, + }, + [1923] = { + ["coords"] = { + [1] = { 44.1, 85, 148, 900 }, + }, + }, + [1926] = { + ["coords"] = { + [1] = { 44.7, 87, 148, 900 }, + }, + }, + [1927] = { + ["coords"] = {}, + }, + [1928] = { + ["coords"] = { + [1] = { 69.1, 55.1, 1, 900 }, + }, + }, + [1930] = { + ["coords"] = { + [1] = { 52.7, 33.5, 148, 900 }, + }, + }, + [1931] = { + ["coords"] = { + [1] = { 52.4, 33.9, 148, 900 }, + }, + }, + [1932] = { + ["coords"] = { + [1] = { 39.6, 53.7, 148, 900 }, + }, + }, + [1935] = { + ["coords"] = {}, + }, + [1936] = { + ["coords"] = { + [1] = { 30.5, 45.7, 1, 900 }, + }, + }, + [1937] = { + ["coords"] = { + [1] = { 26.1, 51.3, 1, 900 }, + }, + }, + [1938] = { + ["coords"] = { + [1] = { 34.5, 51.7, 1, 900 }, + }, + }, + [1939] = { + ["coords"] = { + [1] = { 41.3, 44.4, 1, 900 }, + }, + }, + [1940] = { + ["coords"] = { + [1] = { 60, 30.2, 12, 180 }, + }, + }, + [1941] = { + ["coords"] = { + [1] = { 44, 56.8, 1, 900 }, + }, + }, + [1942] = { + ["coords"] = {}, + }, + [1943] = { + ["coords"] = { + [1] = { 21, 76.3, 1, 900 }, + }, + }, + [1944] = { + ["coords"] = { + [1] = { 33.7, 73.3, 1, 900 }, + }, + }, + [1945] = { + ["coords"] = { + [1] = { 69.3, 38.9, 12, 900 }, + }, + }, + [1946] = { + ["coords"] = { + [1] = { 66.6, 40.9, 12, 900 }, + }, + }, + [1947] = { + ["coords"] = { + [1] = { 68.2, 45, 12, 900 }, + }, + }, + [1948] = { + ["coords"] = { + [1] = { 64.5, 56.6, 12, 900 }, + }, + }, + [1949] = { + ["coords"] = { + [1] = { 27.8, 88.1, 12, 900 }, + }, + }, + [1950] = { + ["coords"] = { + [1] = { 26, 91.8, 12, 900 }, + }, + }, + [1951] = { + ["coords"] = { + [1] = { 24.5, 93.8, 12, 900 }, + }, + }, + [1952] = { + ["coords"] = { + [1] = { 50.6, 83.1, 12, 900 }, + }, + }, + [1953] = { + ["coords"] = { + [1] = { 22.7, 80, 1, 900 }, + }, + }, + [1954] = { + ["coords"] = { + [1] = { 26.4, 79.4, 1, 900 }, + }, + }, + [1957] = { + ["coords"] = { + [1] = { 19.9, 12.1, 33, 900 }, + }, + }, + [1958] = { + ["coords"] = { + [1] = { 24.7, 12.2, 33, 900 }, + }, + }, + [1959] = { + ["coords"] = { + [1] = { 38, 3.4, 33, 900 }, + }, + }, + [1960] = { + ["coords"] = { + [1] = { 35.6, 10.6, 33, 900 }, + }, + }, + [1961] = { + ["coords"] = { + [1] = { 44.5, 10, 33, 900 }, + }, + }, + [1962] = { + ["coords"] = { + [1] = { 33.7, 15.6, 33, 900 }, + }, + }, + [1964] = { + ["coords"] = { + [1] = { 43.8, 18, 33, 900 }, + }, + }, + [1965] = { + ["coords"] = {}, + }, + [1967] = { + ["coords"] = { + [1] = { 32.2, 29.3, 33, 900 }, + }, + }, + [1968] = { + ["coords"] = {}, + }, + [1969] = { + ["coords"] = { + [1] = { 37.4, 31, 33, 900 }, + }, + }, + [1970] = { + ["coords"] = { + [1] = { 48, 29.7, 33, 900 }, + }, + }, + [1971] = { + ["coords"] = { + [1] = { 50.4, 30.5, 33, 900 }, + }, + }, + [1972] = { + ["coords"] = { + [1] = { 46.2, 32.1, 33, 900 }, + }, + }, + [1973] = { + ["coords"] = { + [1] = { 42, 44.7, 33, 900 }, + }, + }, + [1975] = { + ["coords"] = { + [1] = { 44.5, 41.9, 33, 900 }, + }, + }, + [1976] = { + ["coords"] = { + [1] = { 46, 42.7, 33, 900 }, + }, + }, + [1977] = { + ["coords"] = { + [1] = { 47.9, 42.9, 33, 900 }, + }, + }, + [1979] = { + ["coords"] = { + [1] = { 47.7, 44.2, 33, 900 }, + }, + }, + [1981] = { + ["coords"] = { + [1] = { 31.9, 54.5, 33, 900 }, + }, + }, + [1984] = { + ["coords"] = { + [1] = { 27.5, 69.5, 33, 900 }, + }, + }, + [1985] = { + ["coords"] = { + [1] = { 29.7, 80.9, 33, 900 }, + }, + }, + [1986] = { + ["coords"] = { + [1] = { 50, 62.6, 141, 900 }, + }, + }, + [1987] = { + ["coords"] = { + [1] = { 68.6, 52.3, 141, 900 }, + }, + }, + [1988] = { + ["coords"] = { + [1] = { 69.3, 53.3, 141, 900 }, + }, + }, + [1989] = { + ["coords"] = { + [1] = { 65.9, 63.7, 141, 900 }, + }, + }, + [1990] = { + ["coords"] = { + [1] = { 65.7, 64.8, 141, 900 }, + }, + }, + [1991] = { + ["coords"] = { + [1] = { 37.9, 67.1, 141, 900 }, + [2] = { 99.8, 96.9, 1657, 900 }, + }, + }, + [1992] = { + ["coords"] = { + [1] = { 41.3, 72.5, 141, 900 }, + }, + }, + [1993] = { + ["coords"] = { + [1] = { 38.8, 79, 141, 900 }, + }, + }, + [1994] = { + ["coords"] = { + [1] = { 38.7, 80.2, 141, 900 }, + }, + }, + [1995] = { + ["coords"] = { + [1] = { 40, 79.8, 141, 900 }, + }, + }, + [1996] = { + ["coords"] = { + [1] = { 42, 80.1, 141, 900 }, + }, + }, + [1997] = { + ["coords"] = { + [1] = { 49.4, 66.7, 141, 900 }, + }, + }, + [1998] = { + ["coords"] = { + [1] = { 47.1, 77.6, 141, 900 }, + }, + }, + [1999] = { + ["coords"] = { + [1] = { 48, 77.8, 141, 900 }, + }, + }, + [2000] = { + ["coords"] = { + [1] = { 56.4, 75.5, 141, 900 }, + }, + }, + [2001] = { + ["coords"] = { + [1] = { 50.1, 60.2, 130, 7200 }, + }, + }, + [2002] = { + ["coords"] = { + [1] = { 62.9, 76.3, 130, 7200 }, + [2] = { 8.1, 40.7, 267, 7200 }, + }, + }, + [2003] = { + ["coords"] = { + [1] = { 44.4, 84.4, 130, 7200 }, + }, + }, + [2004] = { + ["coords"] = { + [1] = { 46.8, 85.6, 130, 7200 }, + }, + }, + [2005] = { + ["coords"] = { + [1] = { 48.4, 24.2, 130, 7200 }, + }, + }, + [2006] = { + ["coords"] = { + [1] = { 55.6, 20.1, 130, 7200 }, + }, + }, + [2007] = { + ["coords"] = { + [1] = { 89.9, 26.8, 8, 600 }, + }, + }, + [2008] = { + ["coords"] = { + [1] = { 61.4, 81.4, 36, 7200 }, + [2] = { 62.6, 19.7, 267, 7200 }, + }, + ["fac"] = "H", + }, + [2010] = { + ["coords"] = { + [1] = { 11.6, 59.6, 11, 7200 }, + }, + }, + [2014] = { + ["coords"] = { + [1] = { 30.5, 47.1, 44, 7200 }, + }, + }, + [2015] = { + ["coords"] = { + [1] = { 30.3, 47.4, 44, 7200 }, + }, + }, + [2016] = { + ["coords"] = { + [1] = { 53.3, 81.4, 36, 7200 }, + [2] = { 55.5, 19.7, 267, 7200 }, + }, + }, + [2017] = { + ["coords"] = { + [1] = { 53.3, 81.4, 36, 7200 }, + [2] = { 55.5, 19.7, 267, 7200 }, + }, + }, + [2018] = { + ["coords"] = { + [1] = { 53.3, 81.4, 36, 7200 }, + [2] = { 55.5, 19.7, 267, 7200 }, + }, + }, + [2019] = { + ["coords"] = { + [1] = { 53.3, 81.4, 36, 7200 }, + [2] = { 55.5, 19.7, 267, 7200 }, + }, + }, + [2020] = { + ["coords"] = { + [1] = { 53.3, 81.4, 36, 7200 }, + [2] = { 55.5, 19.7, 267, 7200 }, + }, + }, + [2021] = { + ["coords"] = { + [1] = { 53.3, 81.4, 36, 7200 }, + [2] = { 55.5, 19.7, 267, 7200 }, + }, + }, + [2022] = { + ["coords"] = { + [1] = { 53.3, 81.4, 36, 7200 }, + [2] = { 55.5, 19.7, 267, 7200 }, + }, + }, + [2023] = { + ["coords"] = { + [1] = { 50.4, 55.9, 36, 7200 }, + }, + }, + [2024] = { + ["coords"] = { + [1] = { 50.5, 56.1, 36, 7200 }, + }, + }, + [2025] = { + ["coords"] = { + [1] = { 50.4, 55.9, 36, 7200 }, + }, + }, + [2026] = { + ["coords"] = { + [1] = { 50.4, 55.9, 36, 7200 }, + }, + }, + [2027] = { + ["coords"] = { + [1] = { 62.5, 46.2, 36, 7200 }, + }, + }, + [2028] = { + ["coords"] = { + [1] = { 62.5, 46.2, 36, 7200 }, + }, + }, + [2029] = { + ["coords"] = { + [1] = { 62.5, 46.2, 36, 7200 }, + }, + }, + [2030] = { + ["coords"] = { + [1] = { 43.8, 91, 28, 7200 }, + [2] = { 80.4, 39.7, 36, 7200 }, + }, + }, + [2031] = { + ["coords"] = { + [1] = { 43.8, 91, 28, 7200 }, + [2] = { 80.4, 39.7, 36, 7200 }, + }, + }, + [2032] = { + ["coords"] = { + [1] = { 43.8, 91, 28, 7200 }, + [2] = { 80.4, 39.7, 36, 7200 }, + }, + }, + [2033] = { + ["coords"] = { + [1] = { 39.2, 48.6, 85, 900 }, + }, + }, + [2034] = { + ["coords"] = { + [1] = { 39.2, 48.6, 85, 900 }, + }, + }, + [2035] = { + ["coords"] = { + [1] = { 39.1, 48.6, 85, 900 }, + }, + }, + [2036] = { + ["coords"] = { + [1] = { 43.4, 49.4, 85, 900 }, + }, + }, + [2037] = { + ["coords"] = { + [1] = { 43.4, 49.5, 85, 900 }, + }, + }, + [2038] = { + ["coords"] = { + [1] = { 43.4, 49.5, 85, 900 }, + }, + }, + [2039] = { + ["coords"] = { + [1] = { 10.7, 77.5, 36, 300 }, + [2] = { 18.4, 77, 36, 300 }, + [3] = { 12.8, 76.5, 36, 300 }, + [4] = { 15.4, 76.4, 36, 300 }, + [5] = { 19.5, 75.5, 36, 300 }, + [6] = { 11.5, 75.1, 36, 300 }, + [7] = { 18.6, 74.5, 36, 300 }, + [8] = { 21.3, 64.4, 36, 300 }, + [9] = { 20.9, 63.3, 36, 300 }, + [10] = { 21.8, 60.7, 36, 300 }, + [11] = { 22.6, 60.5, 36, 300 }, + [12] = { 20.7, 60.3, 36, 300 }, + [13] = { 19.5, 58, 36, 300 }, + [14] = { 21.6, 57.7, 36, 300 }, + [15] = { 21, 56.5, 36, 300 }, + [16] = { 18.7, 54.9, 36, 300 }, + [17] = { 21.2, 53.7, 36, 300 }, + [18] = { 70.6, 57.6, 130, 300 }, + [19] = { 71.1, 56, 130, 300 }, + [20] = { 18.2, 16.3, 267, 300 }, + [21] = { 24.9, 15.8, 267, 300 }, + [22] = { 20.1, 15.4, 267, 300 }, + [23] = { 22.4, 15.3, 267, 300 }, + [24] = { 25.9, 14.5, 267, 300 }, + [25] = { 18.9, 14.2, 267, 300 }, + [26] = { 25.1, 13.6, 267, 300 }, + }, + }, + [2040] = { + ["coords"] = { + [1] = { 8.3, 95.9, 3, 600 }, + [2] = { 6.7, 95.4, 3, 600 }, + [3] = { 10.1, 92.9, 3, 600 }, + [4] = { 15.2, 92.1, 3, 300 }, + [5] = { 15, 92.1, 3, 300 }, + [6] = { 8.5, 90.6, 3, 600 }, + [7] = { 6.5, 90.2, 3, 600 }, + [8] = { 7.6, 89.8, 3, 600 }, + [9] = { 10.2, 89.6, 3, 600 }, + [10] = { 16.2, 88.1, 3, 300 }, + [11] = { 9.5, 88, 3, 600 }, + [12] = { 56.3, 87.7, 3, 300 }, + [13] = { 15.1, 85.8, 3, 300 }, + [14] = { 45.4, 84.6, 3, 300 }, + [15] = { 20.8, 82.2, 3, 300 }, + [16] = { 42.2, 82, 3, 300 }, + [17] = { 56, 81.9, 3, 300 }, + [18] = { 15.1, 81.7, 3, 300 }, + [19] = { 4, 80.4, 3, 300 }, + [20] = { 42.1, 78.8, 3, 300 }, + [21] = { 11.5, 77.9, 3, 300 }, + [22] = { 6.1, 77.3, 3, 300 }, + [23] = { 43.5, 74.1, 3, 300 }, + [24] = { 7.6, 73.3, 3, 300 }, + [25] = { 31.7, 72.6, 3, 300 }, + [26] = { 64, 68.8, 3, 300 }, + [27] = { 71.7, 67.2, 3, 300 }, + [28] = { 23.9, 66.4, 3, 300 }, + [29] = { 76, 66.2, 3, 300 }, + [30] = { 80.7, 65.6, 3, 300 }, + [31] = { 9.1, 65.4, 3, 300 }, + [32] = { 61.2, 64, 3, 300 }, + [33] = { 72.8, 61, 3, 300 }, + [34] = { 82.9, 59.8, 3, 300 }, + [35] = { 63, 56.3, 3, 300 }, + [36] = { 78.8, 55.7, 3, 300 }, + [37] = { 83.9, 54.8, 3, 300 }, + [38] = { 51.5, 52.9, 3, 300 }, + [39] = { 68.7, 51.1, 3, 300 }, + [40] = { 77.9, 48.7, 3, 300 }, + [41] = { 78.4, 46.1, 3, 300 }, + [42] = { 82.6, 44.9, 3, 300 }, + [43] = { 78.2, 43.8, 3, 300 }, + [44] = { 83.5, 39.9, 3, 300 }, + [45] = { 14.3, 39.8, 3, 300 }, + [46] = { 35.5, 39, 3, 300 }, + [47] = { 15.3, 37.9, 3, 300 }, + [48] = { 12.1, 35.1, 3, 300 }, + [49] = { 72.3, 34.5, 3, 300 }, + [50] = { 79.8, 33.4, 3, 300 }, + [51] = { 83.9, 33, 3, 300 }, + [52] = { 63, 58.1, 4, 300 }, + [53] = { 50.8, 57.6, 4, 300 }, + [54] = { 57.6, 52.2, 4, 300 }, + [55] = { 45.1, 51, 4, 300 }, + [56] = { 55.8, 44.3, 4, 300 }, + [57] = { 50.1, 43.7, 4, 600 }, + [58] = { 64.6, 41.2, 4, 300 }, + [59] = { 58.4, 40.5, 4, 300 }, + [60] = { 62.9, 36.8, 4, 300 }, + [61] = { 48.9, 35, 4, 300 }, + [62] = { 58.6, 33, 4, 300 }, + [63] = { 65.1, 32.2, 4, 600 }, + [64] = { 66.8, 32, 4, 600 }, + [65] = { 43.5, 30.8, 4, 300 }, + [66] = { 69.7, 30.7, 4, 300 }, + [67] = { 49.8, 27.5, 4, 300 }, + [68] = { 63.4, 25.1, 4, 300 }, + [69] = { 72.6, 19.1, 4, 600 }, + [70] = { 73.2, 17.2, 4, 600 }, + [71] = { 47.2, 16.8, 4, 300 }, + [72] = { 71.8, 16.8, 4, 600 }, + [73] = { 71.8, 15.5, 4, 600 }, + [74] = { 71, 14.5, 4, 600 }, + [75] = { 74, 13.9, 4, 600 }, + [76] = { 73.1, 11.8, 4, 600 }, + [77] = { 64.1, 86.9, 8, 600 }, + [78] = { 62.1, 84.5, 8, 600 }, + [79] = { 60.9, 83, 8, 600 }, + [80] = { 65.3, 82.1, 8, 600 }, + [81] = { 64, 79.1, 8, 600 }, + [82] = { 74.7, 59.8, 8, 300 }, + [83] = { 64.9, 57.5, 8, 300 }, + [84] = { 74.5, 49.9, 8, 300 }, + [85] = { 65.7, 49.4, 8, 300 }, + [86] = { 71.4, 44.9, 8, 300 }, + [87] = { 21.1, 35.6, 8, 300 }, + [88] = { 35.6, 29.3, 8, 300 }, + [89] = { 31.7, 28.5, 8, 300 }, + [90] = { 42.9, 27.3, 8, 300 }, + [91] = { 48.7, 26.7, 8, 300 }, + [92] = { 65.9, 9.8, 8, 300 }, + [93] = { 30.4, 7, 11, 300 }, + [94] = { 33.9, 5.8, 11, 300 }, + [95] = { 52.6, 85.5, 15, 300 }, + [96] = { 49.7, 84.2, 15, 300 }, + [97] = { 55.3, 83.9, 15, 300 }, + [98] = { 44.2, 82.3, 15, 300 }, + [99] = { 42, 82, 15, 300 }, + [100] = { 57.6, 80, 15, 300 }, + [101] = { 40.8, 77.7, 15, 300 }, + [102] = { 58.1, 75.6, 15, 300 }, + [103] = { 39.8, 74.8, 15, 300 }, + [104] = { 37.5, 74.4, 15, 300 }, + [105] = { 57.1, 71.7, 15, 300 }, + [106] = { 38, 69.6, 15, 600 }, + [107] = { 36.3, 69.5, 15, 600 }, + [108] = { 54.6, 68.8, 15, 300 }, + [109] = { 36.8, 68.6, 15, 600 }, + [110] = { 37.8, 68.6, 15, 600 }, + [111] = { 37.7, 67.8, 15, 600 }, + [112] = { 38.8, 67.6, 15, 600 }, + [113] = { 37, 67.1, 15, 600 }, + [114] = { 37.8, 67, 15, 600 }, + [115] = { 30.7, 22.3, 15, 600 }, + [116] = { 31.8, 21.4, 15, 600 }, + [117] = { 31.1, 20.9, 15, 600 }, + [118] = { 30.5, 20.3, 15, 600 }, + [119] = { 51.6, 98.8, 16, 300 }, + [120] = { 61.4, 91.7, 16, 300 }, + [121] = { 49.1, 91.5, 16, 300 }, + [122] = { 61.1, 89.2, 16, 300 }, + [123] = { 54.2, 88.5, 16, 300 }, + [124] = { 64.4, 86.8, 16, 300 }, + [125] = { 37.8, 85.8, 16, 300 }, + [126] = { 41.9, 84.5, 16, 300 }, + [127] = { 38.7, 78.4, 16, 300 }, + [128] = { 54.8, 76.9, 16, 300 }, + [129] = { 43.9, 74.9, 16, 300 }, + [130] = { 14.2, 74.3, 16, 300 }, + [131] = { 15.5, 71.3, 16, 300 }, + [132] = { 15.4, 68.2, 16, 300 }, + [133] = { 21.6, 61.8, 16, 300 }, + [134] = { 19.4, 60.9, 16, 300 }, + [135] = { 49.4, 59.8, 16, 300 }, + [136] = { 43.5, 53.1, 16, 300 }, + [137] = { 54.5, 49.1, 16, 300 }, + [138] = { 30.9, 45.6, 16, 300 }, + [139] = { 45.2, 45.4, 16, 300 }, + [140] = { 32.7, 41.7, 16, 300 }, + [141] = { 42.1, 40.5, 16, 300 }, + [142] = { 34.4, 39.6, 16, 300 }, + [143] = { 36.7, 36.4, 16, 300 }, + [144] = { 75.6, 31.7, 16, 300 }, + [145] = { 79.2, 31.4, 16, 300 }, + [146] = { 57.1, 31, 16, 300 }, + [147] = { 59.8, 28.6, 16, 300 }, + [148] = { 70.5, 22.3, 16, 300 }, + [149] = { 51.9, 20.3, 16, 300 }, + [150] = { 86.7, 19.5, 16, 300 }, + [151] = { 63.6, 19.4, 16, 300 }, + [152] = { 43.3, 17.6, 16, 300 }, + [153] = { 82.1, 15.6, 16, 300 }, + [154] = { 64.5, 14.4, 16, 300 }, + [155] = { 73.8, 12.6, 16, 300 }, + [156] = { 78.9, 9.4, 16, 300 }, + [157] = { 63.7, 9.4, 16, 300 }, + [158] = { 48.5, 97.1, 17, 300 }, + [159] = { 48.9, 97, 17, 300 }, + [160] = { 49.6, 96.6, 17, 300 }, + [161] = { 48.2, 96.4, 17, 300 }, + [162] = { 48.4, 96.2, 17, 300 }, + [163] = { 49.2, 96, 17, 300 }, + [164] = { 54.9, 92.5, 17, 300 }, + [165] = { 55.2, 90, 17, 600 }, + [166] = { 54.3, 90, 17, 600 }, + [167] = { 54.6, 89.5, 17, 600 }, + [168] = { 55.1, 89.5, 17, 600 }, + [169] = { 55, 89.1, 17, 600 }, + [170] = { 54.7, 88.7, 17, 600 }, + [171] = { 55.1, 88.7, 17, 600 }, + [172] = { 51.4, 65.5, 17, 600 }, + [173] = { 52, 65.1, 17, 600 }, + [174] = { 51.6, 64.8, 17, 600 }, + [175] = { 51.3, 64.5, 17, 600 }, + [176] = { 38.4, 82.9, 28, 300 }, + [177] = { 55.1, 80.5, 28, 300 }, + [178] = { 48, 79.7, 28, 300 }, + [179] = { 34.8, 79.7, 28, 300 }, + [180] = { 44.1, 79, 28, 300 }, + [181] = { 53.1, 76.9, 28, 300 }, + [182] = { 49.1, 76.3, 28, 300 }, + [183] = { 32.9, 74.6, 28, 300 }, + [184] = { 51.1, 74.3, 28, 300 }, + [185] = { 39.9, 73.3, 28, 300 }, + [186] = { 40.1, 73.1, 28, 300 }, + [187] = { 53.3, 71.2, 28, 300 }, + [188] = { 51.1, 70.3, 28, 300 }, + [189] = { 49.8, 69.1, 28, 300 }, + [190] = { 35.3, 68.5, 28, 300 }, + [191] = { 55.6, 67.9, 28, 300 }, + [192] = { 38.1, 67.6, 28, 300 }, + [193] = { 33, 67.2, 28, 300 }, + [194] = { 50.2, 67, 28, 300 }, + [195] = { 29.9, 65.8, 28, 300 }, + [196] = { 41.1, 65.4, 28, 300 }, + [197] = { 49.2, 63.8, 28, 300 }, + [198] = { 44.6, 62.5, 28, 300 }, + [199] = { 45.1, 62.2, 28, 300 }, + [200] = { 79.3, 60.6, 28, 300 }, + [201] = { 33.2, 58.7, 28, 300 }, + [202] = { 72.9, 55.1, 28, 300 }, + [203] = { 33.7, 53.5, 28, 300 }, + [204] = { 34.2, 51.8, 28, 300 }, + [205] = { 40.2, 48.7, 28, 300 }, + [206] = { 73.7, 39.8, 28, 300 }, + [207] = { 40.2, 85.4, 33, 300 }, + [208] = { 38.7, 82.8, 33, 300 }, + [209] = { 27.3, 81.7, 33, 300 }, + [210] = { 39.5, 81.6, 33, 300 }, + [211] = { 29.4, 80.4, 33, 300 }, + [212] = { 38.6, 80.1, 33, 300 }, + [213] = { 32.4, 75, 33, 300 }, + [214] = { 34.7, 72.5, 33, 300 }, + [215] = { 27.6, 63.1, 33, 300 }, + [216] = { 26.5, 62.6, 33, 300 }, + [217] = { 25.2, 61.8, 33, 300 }, + [218] = { 27.7, 61.3, 33, 300 }, + [219] = { 25.6, 60.3, 33, 300 }, + [220] = { 40.7, 51.9, 33, 300 }, + [221] = { 38.3, 49.9, 33, 300 }, + [222] = { 37.2, 49.5, 33, 300 }, + [223] = { 43.8, 49.4, 33, 600 }, + [224] = { 39.7, 49.4, 33, 300 }, + [225] = { 38.1, 49.1, 33, 300 }, + [226] = { 42.9, 48.9, 33, 600 }, + [227] = { 43.3, 48.5, 33, 600 }, + [228] = { 32.2, 45.8, 33, 300 }, + [229] = { 45.3, 45.4, 33, 300 }, + [230] = { 46.6, 45.2, 33, 300 }, + [231] = { 46.7, 43.1, 33, 300 }, + [232] = { 43.3, 42.5, 33, 300 }, + [233] = { 33.6, 41.8, 33, 300 }, + [234] = { 29.8, 41.4, 33, 300 }, + [235] = { 30.6, 39.6, 33, 300 }, + [236] = { 44.4, 39.3, 33, 300 }, + [237] = { 31.3, 38.1, 33, 300 }, + [238] = { 51.5, 28.7, 33, 600 }, + [239] = { 52.3, 28.1, 33, 600 }, + [240] = { 52.2, 26.7, 33, 600 }, + [241] = { 48.1, 6.5, 33, 600 }, + [242] = { 49.5, 6.5, 33, 600 }, + [243] = { 49.2, 5.6, 33, 600 }, + [244] = { 38.4, 96, 36, 600 }, + [245] = { 38.9, 93.9, 36, 600 }, + [246] = { 39.3, 92.1, 36, 600 }, + [247] = { 40.1, 91.3, 36, 600 }, + [248] = { 40.3, 88.6, 36, 600 }, + [249] = { 41, 86.9, 36, 600 }, + [250] = { 37, 73.7, 36, 300 }, + [251] = { 32.3, 65, 36, 300 }, + [252] = { 30.8, 56.5, 36, 300 }, + [253] = { 53.6, 50.6, 36, 600 }, + [254] = { 54.7, 49.1, 36, 600 }, + [255] = { 53.9, 48.6, 36, 600 }, + [256] = { 54.1, 46.5, 36, 600 }, + [257] = { 52.2, 46.1, 36, 600 }, + [258] = { 50.5, 45.5, 36, 600 }, + [259] = { 54, 45.3, 36, 600 }, + [260] = { 49.6, 44.5, 36, 600 }, + [261] = { 50.2, 43.4, 36, 600 }, + [262] = { 45.9, 41.8, 36, 300 }, + [263] = { 51.6, 41.7, 36, 300 }, + [264] = { 55.1, 40.6, 36, 300 }, + [265] = { 35.6, 39.7, 36, 300 }, + [266] = { 52.7, 36.8, 36, 300 }, + [267] = { 48.3, 34.3, 36, 600 }, + [268] = { 48, 32.7, 36, 600 }, + [269] = { 37.9, 32.5, 36, 300 }, + [270] = { 47.2, 16.1, 36, 300 }, + [271] = { 37.5, 90.5, 38, 600 }, + [272] = { 32, 90.4, 38, 600 }, + [273] = { 21.7, 91.9, 45, 300 }, + [274] = { 25.7, 90.6, 45, 300 }, + [275] = { 26.9, 87.8, 45, 300 }, + [276] = { 22.2, 85.4, 45, 300 }, + [277] = { 25.6, 85.2, 45, 300 }, + [278] = { 69.2, 82.2, 45, 300 }, + [279] = { 67.8, 80.5, 45, 300 }, + [280] = { 50.3, 80.4, 45, 300 }, + [281] = { 68.5, 79.6, 45, 300 }, + [282] = { 68.9, 79.1, 45, 300 }, + [283] = { 21.7, 75.4, 45, 300 }, + [284] = { 22.5, 74.5, 45, 300 }, + [285] = { 17.4, 71.7, 45, 300 }, + [286] = { 18.7, 71.6, 45, 300 }, + [287] = { 24.8, 71.5, 45, 300 }, + [288] = { 46.4, 71.2, 45, 300 }, + [289] = { 16, 70.8, 45, 300 }, + [290] = { 49.4, 70.6, 45, 300 }, + [291] = { 25.9, 70.5, 45, 300 }, + [292] = { 31.8, 70.2, 45, 300 }, + [293] = { 15.6, 67.6, 45, 300 }, + [294] = { 67.3, 66.5, 45, 300 }, + [295] = { 16, 64.2, 45, 300 }, + [296] = { 37.5, 63.5, 45, 300 }, + [297] = { 84.2, 33, 45, 300 }, + [298] = { 85.4, 32.8, 45, 300 }, + [299] = { 86.1, 31.9, 45, 300 }, + [300] = { 83.4, 31.6, 45, 300 }, + [301] = { 84.6, 30.9, 45, 300 }, + [302] = { 87.4, 30.8, 45, 300 }, + [303] = { 85.1, 30.2, 45, 300 }, + [304] = { 84.7, 28.7, 45, 300 }, + [305] = { 77.9, 22.5, 45, 300 }, + [306] = { 25.5, 69.9, 46, 300 }, + [307] = { 69.6, 63.3, 46, 300 }, + [308] = { 76.3, 63.2, 46, 300 }, + [309] = { 62.1, 62.1, 46, 300 }, + [310] = { 85.9, 61.2, 46, 300 }, + [311] = { 56.7, 59.3, 46, 300 }, + [312] = { 45.4, 53.4, 46, 300 }, + [313] = { 52.1, 53.2, 46, 300 }, + [314] = { 92.9, 52, 46, 300 }, + [315] = { 84.8, 48.8, 46, 300 }, + [316] = { 76.7, 47.4, 46, 600 }, + [317] = { 81.6, 46.7, 46, 300 }, + [318] = { 83.7, 46.1, 46, 600 }, + [319] = { 58.8, 45.3, 46, 300 }, + [320] = { 80.9, 44.1, 46, 600 }, + [321] = { 79.3, 44.1, 46, 600 }, + [322] = { 76.3, 44.1, 46, 600 }, + [323] = { 78.8, 43.9, 46, 600 }, + [324] = { 77.6, 42.2, 46, 300 }, + [325] = { 80.3, 40.7, 46, 600 }, + [326] = { 81.2, 40, 46, 600 }, + [327] = { 83.1, 39.3, 46, 600 }, + [328] = { 71.4, 39.3, 46, 300 }, + [329] = { 86, 37.1, 46, 300 }, + [330] = { 92.9, 36.9, 46, 300 }, + [331] = { 80.2, 35.4, 46, 300 }, + [332] = { 55.2, 33.3, 46, 300 }, + [333] = { 87.3, 26, 46, 300 }, + [334] = { 79.2, 25.3, 46, 300 }, + [335] = { 69, 23, 46, 600 }, + [336] = { 67.6, 22.6, 46, 600 }, + [337] = { 70.4, 20.4, 46, 600 }, + [338] = { 74.8, 19.8, 46, 300 }, + [339] = { 74.6, 19.8, 46, 300 }, + [340] = { 97.7, 11.2, 46, 300 }, + [341] = { 60.8, 89.1, 47, 300 }, + [342] = { 74, 87.3, 47, 300 }, + [343] = { 54.5, 83.4, 47, 300 }, + [344] = { 65.1, 83.3, 47, 300 }, + [345] = { 82.7, 81.5, 47, 300 }, + [346] = { 68.4, 77, 47, 300 }, + [347] = { 33.5, 76, 47, 300 }, + [348] = { 68.5, 74.8, 47, 300 }, + [349] = { 35.5, 74.8, 47, 300 }, + [350] = { 30.7, 74.6, 47, 300 }, + [351] = { 74.6, 74.5, 47, 300 }, + [352] = { 79.5, 74, 47, 300 }, + [353] = { 57.1, 73.6, 47, 300 }, + [354] = { 62.3, 72.5, 47, 300 }, + [355] = { 68.9, 72.3, 47, 300 }, + [356] = { 47.4, 70.6, 47, 300 }, + [357] = { 65.8, 69.4, 47, 300 }, + [358] = { 50.8, 69.3, 47, 300 }, + [359] = { 45.9, 69, 47, 300 }, + [360] = { 27.3, 69, 47, 300 }, + [361] = { 56.6, 68.6, 47, 300 }, + [362] = { 30.1, 68.3, 47, 300 }, + [363] = { 37.4, 68.2, 47, 300 }, + [364] = { 72.6, 66.6, 47, 300 }, + [365] = { 74.3, 66.3, 47, 300 }, + [366] = { 40.6, 65.9, 47, 300 }, + [367] = { 33.4, 65.9, 47, 300 }, + [368] = { 25.6, 65.8, 47, 300 }, + [369] = { 49.8, 65.3, 47, 300 }, + [370] = { 51.7, 65.2, 47, 300 }, + [371] = { 64.1, 64.9, 47, 300 }, + [372] = { 69.3, 64.3, 47, 300 }, + [373] = { 62.5, 64.2, 47, 300 }, + [374] = { 33.9, 64.1, 47, 300 }, + [375] = { 79.7, 63.6, 47, 300 }, + [376] = { 67.1, 62.2, 47, 300 }, + [377] = { 31.1, 60.8, 47, 300 }, + [378] = { 51, 60.4, 47, 300 }, + [379] = { 23.3, 59.8, 47, 300 }, + [380] = { 77.3, 59.5, 47, 300 }, + [381] = { 31.3, 59.4, 47, 300 }, + [382] = { 41.1, 59.2, 47, 300 }, + [383] = { 60.7, 57.9, 47, 300 }, + [384] = { 75.2, 57.1, 47, 300 }, + [385] = { 67.9, 55.5, 47, 300 }, + [386] = { 30.1, 55, 47, 300 }, + [387] = { 54.3, 54.4, 47, 300 }, + [388] = { 56, 54.2, 47, 300 }, + [389] = { 72.2, 52.4, 47, 300 }, + [390] = { 65.1, 52.3, 47, 300 }, + [391] = { 83, 50.4, 47, 300 }, + [392] = { 58.1, 49.5, 47, 300 }, + [393] = { 50, 48.2, 47, 300 }, + [394] = { 78.7, 48, 47, 300 }, + [395] = { 55.5, 44.9, 47, 300 }, + [396] = { 57.2, 44.6, 47, 300 }, + [397] = { 55.5, 44.4, 47, 300 }, + [398] = { 59.6, 43.7, 47, 300 }, + [399] = { 56.9, 43.7, 47, 300 }, + [400] = { 63.4, 43.6, 47, 300 }, + [401] = { 57.1, 43.4, 47, 300 }, + [402] = { 56.8, 43.1, 47, 300 }, + [403] = { 59.8, 42.7, 47, 300 }, + [404] = { 31.3, 42.5, 47, 300 }, + [405] = { 56.7, 42.5, 47, 300 }, + [406] = { 80.7, 42.4, 47, 300 }, + [407] = { 48.6, 42.1, 47, 300 }, + [408] = { 58.6, 41.7, 47, 300 }, + [409] = { 57.3, 41.3, 47, 300 }, + [410] = { 33.5, 41.2, 47, 300 }, + [411] = { 60.1, 41.2, 47, 300 }, + [412] = { 57.7, 40.6, 47, 300 }, + [413] = { 45.1, 39.5, 47, 300 }, + [414] = { 67.9, 38.2, 47, 300 }, + [415] = { 46.3, 37.8, 47, 300 }, + [416] = { 64.2, 36.6, 47, 300 }, + [417] = { 56.6, 35.6, 47, 300 }, + [418] = { 68.7, 34.6, 47, 300 }, + [419] = { 60.7, 34.4, 47, 300 }, + [420] = { 58.6, 27.7, 47, 300 }, + [421] = { 69.9, 27.2, 47, 300 }, + [422] = { 59, 23.2, 47, 300 }, + [423] = { 64.4, 22.1, 47, 300 }, + [424] = { 68.2, 19.8, 47, 300 }, + [425] = { 63.7, 16.9, 47, 300 }, + [426] = { 64.7, 15.4, 47, 300 }, + [427] = { 67.2, 14.6, 47, 300 }, + [428] = { 85.9, 86.4, 51, 600 }, + [429] = { 64.2, 82.4, 51, 300 }, + [430] = { 57.1, 81.6, 51, 300 }, + [431] = { 36.7, 78, 51, 300 }, + [432] = { 49.5, 75.9, 51, 300 }, + [433] = { 24.9, 75.9, 51, 300 }, + [434] = { 83.1, 75.5, 51, 300 }, + [435] = { 20.6, 74.5, 51, 300 }, + [436] = { 73.2, 73, 51, 300 }, + [437] = { 37.7, 71, 51, 300 }, + [438] = { 57.5, 68.4, 51, 300 }, + [439] = { 30.3, 65.8, 51, 300 }, + [440] = { 43.7, 65.6, 51, 300 }, + [441] = { 64, 63.3, 51, 300 }, + [442] = { 64.2, 59.8, 51, 300 }, + [443] = { 39.4, 56.2, 51, 300 }, + [444] = { 48.7, 51.7, 51, 300 }, + [445] = { 38.9, 51.5, 51, 300 }, + [446] = { 55, 51.2, 51, 300 }, + [447] = { 52, 49.5, 51, 300 }, + [448] = { 29.8, 49.3, 51, 300 }, + [449] = { 46.3, 47.8, 51, 300 }, + [450] = { 37.9, 45.9, 51, 300 }, + [451] = { 46.7, 44, 51, 300 }, + [452] = { 61.1, 42.8, 51, 300 }, + [453] = { 48.6, 41.9, 51, 300 }, + [454] = { 56.9, 41.2, 51, 300 }, + [455] = { 40.7, 39.2, 51, 300 }, + [456] = { 31.3, 39, 51, 300 }, + [457] = { 25.1, 38.1, 51, 300 }, + [458] = { 42.6, 37.5, 51, 300 }, + [459] = { 17.8, 37.3, 51, 300 }, + [460] = { 21.6, 36.5, 51, 300 }, + [461] = { 50.5, 36.1, 51, 300 }, + [462] = { 17.9, 34.4, 51, 300 }, + [463] = { 49.7, 33.6, 51, 300 }, + [464] = { 67.9, 32.3, 51, 300 }, + [465] = { 56, 30.6, 51, 300 }, + [466] = { 42.7, 28.7, 51, 300 }, + [467] = { 60.6, 25.8, 51, 300 }, + [468] = { 39.1, 25.1, 51, 300 }, + [469] = { 47.9, 24.7, 51, 300 }, + [470] = { 86.3, 78.2, 85, 300 }, + [471] = { 90, 66.5, 85, 300 }, + [472] = { 90.4, 64.9, 85, 300 }, + [473] = { 96.1, 61.9, 85, 300 }, + [474] = { 43.8, 88, 139, 300 }, + [475] = { 20.9, 84, 139, 300 }, + [476] = { 35.8, 83.2, 139, 300 }, + [477] = { 13.8, 78, 139, 300 }, + [478] = { 30.4, 75.6, 139, 300 }, + [479] = { 41.5, 75.4, 139, 300 }, + [480] = { 37.6, 73.7, 139, 300 }, + [481] = { 24.5, 73.5, 139, 300 }, + [482] = { 20.7, 67, 139, 300 }, + [483] = { 22.2, 61.5, 139, 300 }, + [484] = { 14.6, 61, 139, 300 }, + [485] = { 42.5, 32.4, 267, 600 }, + [486] = { 42.9, 30.6, 267, 600 }, + [487] = { 43.2, 29, 267, 600 }, + [488] = { 43.9, 28.3, 267, 600 }, + [489] = { 44.1, 26, 267, 600 }, + [490] = { 44.7, 24.5, 267, 600 }, + [491] = { 41.2, 12.9, 267, 300 }, + [492] = { 37.1, 5.4, 267, 300 }, + [493] = { 99.9, 42.6, 331, 300 }, + [494] = { 60.3, 84.4, 357, 300 }, + [495] = { 59.4, 74.1, 357, 300 }, + [496] = { 25.4, 73.1, 357, 300 }, + [497] = { 54.1, 73, 357, 300 }, + [498] = { 27.3, 69.5, 357, 300 }, + [499] = { 27.7, 69.4, 357, 300 }, + [500] = { 26, 68.9, 357, 300 }, + [501] = { 27.9, 68.4, 357, 300 }, + [502] = { 26.7, 68.3, 357, 300 }, + [503] = { 28.5, 67.9, 357, 300 }, + [504] = { 60.6, 65.7, 357, 300 }, + [505] = { 69.2, 62.2, 357, 300 }, + [506] = { 52.2, 61.5, 357, 300 }, + [507] = { 51.5, 60.4, 357, 300 }, + [508] = { 52.4, 59.8, 357, 300 }, + [509] = { 51.5, 58.9, 357, 300 }, + [510] = { 50.2, 58.4, 357, 300 }, + [511] = { 72.9, 56.5, 357, 300 }, + [512] = { 69.4, 56, 357, 300 }, + [513] = { 71.9, 53, 357, 300 }, + [514] = { 64.9, 52.1, 357, 300 }, + [515] = { 57.5, 47, 357, 300 }, + [516] = { 50.4, 35.6, 357, 300 }, + [517] = { 54.4, 34.2, 357, 300 }, + [518] = { 55.4, 33.6, 357, 300 }, + [519] = { 54.9, 32.9, 357, 300 }, + [520] = { 55.7, 32.8, 357, 300 }, + [521] = { 54.1, 32.4, 357, 300 }, + [522] = { 53.3, 32, 357, 300 }, + [523] = { 50.8, 30.6, 357, 300 }, + [524] = { 44.2, 25.6, 357, 300 }, + [525] = { 38.7, 24.9, 357, 300 }, + [526] = { 51.6, 24.8, 357, 300 }, + [527] = { 37.7, 20.5, 357, 300 }, + [528] = { 52.1, 16.4, 357, 300 }, + [529] = { 42.1, 16.2, 357, 300 }, + [530] = { 17.8, 42.3, 400, 300 }, + [531] = { 42.3, 33.5, 400, 300 }, + [532] = { 43.2, 33.2, 400, 300 }, + [533] = { 44.7, 32.3, 400, 300 }, + [534] = { 11.1, 32.2, 400, 300 }, + [535] = { 41.7, 31.8, 400, 300 }, + [536] = { 42.1, 31.4, 400, 300 }, + [537] = { 43.8, 30.8, 400, 300 }, + [538] = { 36.2, 92.4, 405, 300 }, + [539] = { 38.4, 91, 405, 300 }, + [540] = { 36.1, 86.5, 405, 300 }, + [541] = { 50.7, 85.7, 405, 300 }, + [542] = { 39.4, 85.4, 405, 300 }, + [543] = { 67.9, 84.4, 405, 300 }, + [544] = { 48.4, 84.2, 405, 300 }, + [545] = { 24.7, 82.4, 405, 300 }, + [546] = { 46.3, 82.4, 405, 300 }, + [547] = { 50.3, 82.3, 405, 300 }, + [548] = { 32.4, 82.1, 405, 300 }, + [549] = { 35, 80.6, 405, 300 }, + [550] = { 29.6, 80.2, 405, 300 }, + [551] = { 54.8, 79.6, 405, 300 }, + [552] = { 54.9, 79.5, 405, 300 }, + [553] = { 48.1, 78.9, 405, 300 }, + [554] = { 27.1, 78.7, 405, 300 }, + [555] = { 47.7, 76.6, 405, 300 }, + [556] = { 74.5, 76.4, 405, 300 }, + [557] = { 71.4, 76.2, 405, 300 }, + [558] = { 76.5, 75.4, 405, 300 }, + [559] = { 54.9, 74.4, 405, 300 }, + [560] = { 49.5, 74.2, 405, 300 }, + [561] = { 27.9, 74.1, 405, 300 }, + [562] = { 30.5, 74, 405, 300 }, + [563] = { 57.3, 73.4, 405, 300 }, + [564] = { 55.8, 73.1, 405, 300 }, + [565] = { 75, 67.6, 405, 300 }, + [566] = { 34.5, 67.2, 405, 600 }, + [567] = { 31.2, 65.9, 405, 300 }, + [568] = { 33.3, 65.6, 405, 300 }, + [569] = { 31.9, 65.2, 405, 300 }, + [570] = { 31.9, 65, 405, 600 }, + [571] = { 33.8, 63.3, 405, 600 }, + [572] = { 28.6, 63.1, 405, 600 }, + [573] = { 31.2, 62.2, 405, 300 }, + [574] = { 29.4, 62, 405, 600 }, + [575] = { 31.1, 62, 405, 600 }, + [576] = { 33, 61.6, 405, 300 }, + [577] = { 29.1, 61.6, 405, 600 }, + [578] = { 33.6, 61, 405, 600 }, + [579] = { 36.3, 60.5, 405, 600 }, + [580] = { 34.9, 60.2, 405, 300 }, + [581] = { 29.7, 59.7, 405, 600 }, + [582] = { 31.5, 59.4, 405, 300 }, + [583] = { 30, 59.3, 405, 600 }, + [584] = { 32.1, 58.9, 405, 300 }, + [585] = { 29.3, 58.4, 405, 600 }, + [586] = { 28.5, 58.4, 405, 300 }, + [587] = { 30.2, 58.3, 405, 300 }, + [588] = { 27.1, 58.2, 405, 600 }, + [589] = { 29.2, 57.7, 405, 600 }, + [590] = { 29.2, 56.2, 405, 600 }, + [591] = { 28, 54.1, 405, 600 }, + [592] = { 33.1, 53.2, 405, 300 }, + [593] = { 30.8, 52.9, 405, 300 }, + [594] = { 32.9, 52.9, 405, 300 }, + [595] = { 31.7, 51.9, 405, 300 }, + [596] = { 38.7, 46.6, 405, 300 }, + [597] = { 35.8, 37.2, 405, 300 }, + [598] = { 35.6, 31.8, 405, 300 }, + [599] = { 78.2, 26.7, 405, 300 }, + [600] = { 74.9, 18.2, 405, 300 }, + [601] = { 34.8, 16.8, 405, 300 }, + [602] = { 36.8, 15.9, 405, 300 }, + [603] = { 34, 14.7, 405, 300 }, + [604] = { 75.2, 14.1, 405, 300 }, + [605] = { 75.2, 10.8, 405, 300 }, + [606] = { 30.6, 10.2, 405, 300 }, + [607] = { 34.8, 8.4, 405, 300 }, + [608] = { 33.3, 7.9, 405, 300 }, + [609] = { 35.6, 6.2, 405, 300 }, + [610] = { 61.5, 0.5, 405, 300 }, + [611] = { 49, 88.7, 406, 300 }, + [612] = { 49, 85.7, 406, 300 }, + [613] = { 36.4, 76.2, 406, 300 }, + [614] = { 33.6, 75.7, 406, 300 }, + [615] = { 29, 73.7, 406, 300 }, + [616] = { 37.8, 69.2, 406, 300 }, + [617] = { 34.9, 66.7, 406, 300 }, + [618] = { 29.8, 66.3, 406, 300 }, + [619] = { 38, 65.2, 406, 300 }, + [620] = { 27.1, 63.2, 406, 300 }, + [621] = { 35.9, 61.4, 406, 300 }, + [622] = { 30.1, 59.8, 406, 300 }, + [623] = { 32.6, 58.9, 406, 300 }, + [624] = { 35.4, 46.8, 406, 300 }, + [625] = { 34.7, 80.3, 440, 300 }, + [626] = { 31.6, 79.4, 440, 300 }, + [627] = { 34.5, 77.9, 440, 300 }, + [628] = { 28.9, 77.1, 440, 300 }, + [629] = { 55.2, 75.9, 440, 600 }, + [630] = { 28.2, 74.5, 440, 300 }, + [631] = { 28.2, 72.3, 440, 300 }, + [632] = { 53.6, 72.2, 440, 600 }, + [633] = { 57.8, 71.9, 440, 600 }, + [634] = { 56, 71.4, 440, 600 }, + [635] = { 28.8, 70.7, 440, 300 }, + [636] = { 57.7, 70.3, 440, 600 }, + [637] = { 57.2, 70.2, 440, 600 }, + [638] = { 55.5, 69.9, 440, 600 }, + [639] = { 56.8, 69.6, 440, 600 }, + [640] = { 29.7, 68.8, 440, 300 }, + [641] = { 57.3, 68.6, 440, 600 }, + [642] = { 57.1, 68.2, 440, 300 }, + [643] = { 59.2, 67.8, 440, 300 }, + [644] = { 31.9, 66.7, 440, 300 }, + [645] = { 30.9, 63.4, 440, 300 }, + [646] = { 60, 63.3, 440, 300 }, + [647] = { 61.9, 63.2, 440, 300 }, + [648] = { 63.7, 62.5, 440, 300 }, + [649] = { 28.2, 62.1, 440, 300 }, + [650] = { 41.4, 58, 440, 300 }, + [651] = { 62.5, 57.3, 440, 300 }, + [652] = { 41.7, 57.1, 440, 300 }, + [653] = { 45.5, 55.1, 440, 300 }, + [654] = { 41.3, 54.4, 440, 300 }, + [655] = { 59.8, 53.8, 440, 300 }, + [656] = { 28.2, 53.4, 440, 300 }, + [657] = { 37, 51.4, 440, 300 }, + [658] = { 31.9, 48.4, 440, 600 }, + [659] = { 33.4, 48, 440, 600 }, + [660] = { 29.7, 47.6, 440, 300 }, + [661] = { 71.9, 47, 440, 300 }, + [662] = { 33.5, 46.6, 440, 600 }, + [663] = { 33.6, 45.9, 440, 600 }, + [664] = { 32, 45.8, 440, 600 }, + [665] = { 33.2, 45.7, 440, 600 }, + [666] = { 32.9, 44.4, 440, 600 }, + [667] = { 35.4, 43.3, 440, 900 }, + [668] = { 33.1, 42.7, 440, 900 }, + [669] = { 35.1, 42.3, 440, 900 }, + [670] = { 33.4, 41.6, 440, 900 }, + [671] = { 34.5, 40.3, 440, 900 }, + [672] = { 33.4, 37.6, 440, 300 }, + [673] = { 36.7, 33.3, 440, 300 }, + [674] = { 34.2, 32.6, 440, 300 }, + [675] = { 67.5, 31.9, 440, 300 }, + [676] = { 46.7, 29.7, 440, 300 }, + [677] = { 37, 28.2, 440, 300 }, + [678] = { 38.2, 27.2, 440, 300 }, + [679] = { 34.3, 26.8, 440, 300 }, + [680] = { 57.4, 26.3, 440, 300 }, + [681] = { 43.9, 25.9, 440, 300 }, + [682] = { 32.3, 24.5, 440, 300 }, + [683] = { 54.3, 24.5, 440, 300 }, + [684] = { 48.6, 23.7, 440, 300 }, + [685] = { 47.2, 23.7, 440, 300 }, + [686] = { 44.3, 88.5, 490, 300 }, + [687] = { 75.7, 85.1, 490, 300 }, + [688] = { 37.8, 81.1, 490, 300 }, + [689] = { 82.6, 73.8, 490, 900 }, + [690] = { 50.3, 71.1, 490, 300 }, + [691] = { 82.5, 66.4, 490, 300 }, + [692] = { 61, 66.2, 490, 300 }, + [693] = { 52.3, 64.9, 490, 300 }, + [694] = { 37.8, 64.5, 490, 300 }, + [695] = { 78.9, 57.7, 490, 300 }, + [696] = { 84.1, 57, 490, 300 }, + [697] = { 32.9, 49.2, 490, 300 }, + [698] = { 84.2, 46.2, 490, 300 }, + [699] = { 10.3, 45.9, 490, 300 }, + [700] = { 80.6, 42, 490, 300 }, + [701] = { 14.1, 37.5, 490, 300 }, + [702] = { 40.9, 35.3, 490, 300 }, + [703] = { 60, 34.9, 490, 300 }, + [704] = { 71.6, 24.4, 490, 300 }, + [705] = { 34.7, 20.9, 490, 300 }, + [706] = { 62.7, 18.2, 490, 300 }, + [707] = { 43.5, 15.7, 490, 300 }, + [708] = { 57.3, 15.4, 490, 300 }, + [709] = { 29.6, 47.1, 618, 300 }, + [710] = { 32.5, 45.2, 618, 300 }, + [711] = { 46.4, 44.6, 618, 300 }, + [712] = { 40.5, 44.5, 618, 300 }, + [713] = { 34.9, 44.3, 618, 300 }, + [714] = { 44.8, 44.3, 618, 300 }, + [715] = { 41.9, 43.8, 618, 300 }, + [716] = { 37, 38.9, 618, 300 }, + [717] = { 31.5, 38.8, 618, 300 }, + [718] = { 44.1, 37.8, 618, 300 }, + [719] = { 33.5, 36.6, 618, 300 }, + [720] = { 53.6, 36.4, 618, 300 }, + [721] = { 40.4, 36.4, 618, 300 }, + [722] = { 47.8, 35.7, 618, 300 }, + [723] = { 30.9, 35.4, 618, 300 }, + [724] = { 37.4, 35.2, 618, 300 }, + [725] = { 45.4, 34.9, 618, 300 }, + [726] = { 42.8, 33.6, 618, 300 }, + [727] = { 55, 27.1, 618, 300 }, + [728] = { 52.3, 24.6, 618, 300 }, + [729] = { 22.3, 90.2, 1377, 300 }, + [730] = { 15.9, 88.3, 1377, 300 }, + [731] = { 17.6, 78.4, 1377, 300 }, + [732] = { 23.1, 76, 1377, 300 }, + [733] = { 26.9, 72.2, 1377, 300 }, + [734] = { 62, 58.6, 1377, 300 }, + [735] = { 68.4, 49.1, 1377, 300 }, + [736] = { 55.2, 46.4, 1377, 300 }, + [737] = { 72.5, 40.2, 1377, 300 }, + [738] = { 62.4, 33, 1377, 300 }, + [739] = { 24.9, 25.7, 1377, 300 }, + [740] = { 67.1, 24.6, 1377, 300 }, + [741] = { 17.6, 22.5, 1377, 300 }, + [742] = { 26, 15.8, 1377, 300 }, + [743] = { 37, 13.7, 1377, 300 }, + [744] = { 52, 12.4, 1377, 300 }, + [745] = { 62.7, 12.1, 1377, 300 }, + }, + }, + [2041] = { + ["coords"] = { + [1] = { 76.2, 83.3, 8, 300 }, + [2] = { 72.3, 75.3, 8, 300 }, + [3] = { 84.4, 74.6, 8, 300 }, + [4] = { 79.9, 71.4, 8, 300 }, + [5] = { 66.8, 67.1, 8, 300 }, + [6] = { 78.8, 66.1, 8, 300 }, + [7] = { 75.6, 65.2, 8, 300 }, + [8] = { 80.9, 64.5, 8, 300 }, + [9] = { 13.9, 61.9, 8, 300 }, + [10] = { 88.1, 61.3, 8, 300 }, + [11] = { 16.4, 55.7, 8, 300 }, + [12] = { 33, 52.5, 8, 300 }, + [13] = { 29, 50.4, 8, 300 }, + [14] = { 80.8, 50.2, 8, 300 }, + [15] = { 58.7, 48.4, 8, 300 }, + [16] = { 52.2, 46.9, 8, 300 }, + [17] = { 32, 46.4, 8, 300 }, + [18] = { 36.2, 43.5, 8, 300 }, + [19] = { 24.7, 43.4, 8, 300 }, + [20] = { 49.8, 42.1, 8, 300 }, + [21] = { 30.5, 40.7, 8, 300 }, + [22] = { 88.3, 40.6, 8, 300 }, + [23] = { 40.8, 38.7, 8, 300 }, + [24] = { 14.9, 37.9, 8, 300 }, + [25] = { 81.2, 37.6, 8, 300 }, + [26] = { 56.2, 37.6, 8, 300 }, + [27] = { 32.6, 37.3, 8, 300 }, + [28] = { 48.7, 37.1, 8, 300 }, + [29] = { 26, 35.9, 8, 300 }, + [30] = { 13.6, 35, 8, 300 }, + [31] = { 11.2, 34.3, 8, 300 }, + [32] = { 53.8, 31.7, 8, 300 }, + [33] = { 43.7, 31.2, 8, 300 }, + [34] = { 34.3, 31.1, 8, 300 }, + [35] = { 62.7, 31, 8, 300 }, + [36] = { 79.5, 29.9, 8, 300 }, + [37] = { 73.7, 26.3, 8, 300 }, + [38] = { 72, 19.9, 8, 300 }, + [39] = { 76.5, 19.1, 8, 300 }, + [40] = { 63.5, 73.5, 11, 300 }, + [41] = { 63.8, 69.7, 11, 300 }, + [42] = { 63.5, 63.6, 11, 300 }, + [43] = { 60.6, 57.4, 11, 300 }, + [44] = { 61.8, 53.5, 11, 300 }, + [45] = { 60.4, 50, 11, 300 }, + [46] = { 55.4, 46.2, 11, 300 }, + [47] = { 55.9, 45, 11, 300 }, + [48] = { 54.3, 38.1, 11, 300 }, + [49] = { 25.4, 36.3, 11, 300 }, + [50] = { 55.2, 36.1, 11, 300 }, + [51] = { 44.5, 35.5, 11, 300 }, + [52] = { 15.9, 34.9, 11, 300 }, + [53] = { 22, 34.6, 11, 300 }, + [54] = { 46.9, 34.3, 11, 300 }, + [55] = { 51.1, 34.3, 11, 300 }, + [56] = { 31.6, 33.9, 11, 300 }, + [57] = { 38.8, 33.7, 11, 300 }, + [58] = { 43.8, 33.5, 11, 300 }, + [59] = { 40.4, 32.9, 11, 300 }, + [60] = { 37.7, 32.7, 11, 300 }, + [61] = { 44.9, 32.6, 11, 300 }, + [62] = { 47.6, 31.9, 11, 300 }, + [63] = { 29.5, 31.8, 11, 300 }, + [64] = { 51.1, 31.4, 11, 300 }, + [65] = { 53.8, 31.2, 11, 300 }, + [66] = { 39.5, 29.5, 11, 300 }, + [67] = { 44.6, 29.3, 11, 300 }, + [68] = { 40.1, 28.2, 11, 300 }, + [69] = { 20.7, 28.1, 11, 300 }, + [70] = { 29, 27.8, 11, 300 }, + [71] = { 17.3, 27.3, 11, 300 }, + [72] = { 31.4, 27.2, 11, 300 }, + [73] = { 38, 26.2, 11, 300 }, + [74] = { 22.1, 25.4, 11, 300 }, + [75] = { 33.5, 25, 11, 300 }, + [76] = { 19.1, 23.6, 11, 300 }, + [77] = { 30.8, 23.1, 11, 300 }, + [78] = { 31.7, 22, 11, 300 }, + [79] = { 25.9, 21.9, 11, 300 }, + [80] = { 22.7, 21.5, 11, 300 }, + [81] = { 28.4, 21.2, 11, 300 }, + [82] = { 32.1, 18.9, 11, 300 }, + [83] = { 47, 79.2, 15, 300 }, + [84] = { 49.3, 79.1, 15, 300 }, + [85] = { 49.9, 74.9, 15, 300 }, + [86] = { 45.5, 74.2, 15, 300 }, + [87] = { 43.2, 73.2, 15, 300 }, + [88] = { 50.6, 73.2, 15, 300 }, + [89] = { 39.7, 71.7, 15, 300 }, + [90] = { 52.8, 71.1, 15, 300 }, + [91] = { 56.6, 70.9, 15, 300 }, + [92] = { 37, 70.5, 15, 300 }, + [93] = { 41.3, 63.1, 15, 300 }, + [94] = { 44.8, 61.9, 15, 300 }, + [95] = { 51, 61.9, 15, 300 }, + [96] = { 46.7, 59.3, 15, 300 }, + [97] = { 39.1, 58.6, 15, 300 }, + [98] = { 35.4, 58.1, 15, 300 }, + [99] = { 48.9, 57.4, 15, 300 }, + [100] = { 49.7, 57.3, 15, 300 }, + [101] = { 43.6, 56.9, 15, 300 }, + [102] = { 38.2, 55, 15, 300 }, + [103] = { 42.1, 54.9, 15, 300 }, + [104] = { 46.1, 54, 15, 300 }, + [105] = { 42.5, 53.7, 15, 300 }, + [106] = { 51.1, 52.5, 15, 300 }, + [107] = { 39.4, 52.4, 15, 300 }, + [108] = { 40.3, 50.1, 15, 300 }, + [109] = { 37.7, 49.8, 15, 300 }, + [110] = { 44.2, 49.7, 15, 300 }, + [111] = { 45.8, 49.3, 15, 300 }, + [112] = { 42.1, 48.5, 15, 300 }, + [113] = { 35, 46.9, 15, 300 }, + [114] = { 43.8, 45.4, 15, 300 }, + [115] = { 39.9, 45.2, 15, 300 }, + [116] = { 36.3, 43.7, 15, 300 }, + [117] = { 44.6, 43.5, 15, 300 }, + [118] = { 33.8, 41.7, 15, 300 }, + [119] = { 44.9, 40.4, 15, 300 }, + [120] = { 43.1, 39.1, 15, 300 }, + [121] = { 35.7, 35, 15, 300 }, + [122] = { 54, 33.6, 15, 300 }, + [123] = { 40.8, 32.6, 15, 300 }, + [124] = { 58.7, 30.5, 15, 300 }, + [125] = { 53.3, 29.1, 15, 300 }, + [126] = { 50.5, 27.9, 15, 300 }, + [127] = { 41.2, 26.7, 15, 300 }, + [128] = { 37.5, 25.4, 15, 300 }, + [129] = { 41.7, 24.5, 15, 300 }, + [130] = { 53.8, 22.6, 15, 300 }, + [131] = { 40.1, 22.4, 15, 300 }, + [132] = { 56.8, 22.1, 15, 300 }, + [133] = { 47.9, 21.7, 15, 300 }, + [134] = { 48.5, 21.7, 15, 300 }, + [135] = { 41, 21.5, 15, 300 }, + [136] = { 45.3, 20.2, 15, 300 }, + [137] = { 51.3, 18.9, 15, 300 }, + [138] = { 44.6, 18.4, 15, 300 }, + [139] = { 51.4, 17.5, 15, 300 }, + [140] = { 43.8, 16.9, 15, 300 }, + [141] = { 36.9, 16.2, 15, 300 }, + [142] = { 40.3, 15.3, 15, 300 }, + [143] = { 40, 14, 15, 300 }, + [144] = { 54.7, 90.5, 17, 300 }, + [145] = { 53.9, 84.1, 17, 300 }, + [146] = { 55.3, 82.4, 17, 300 }, + [147] = { 55, 79.7, 17, 300 }, + [148] = { 53.7, 78.3, 17, 300 }, + [149] = { 54.3, 76.6, 17, 300 }, + [150] = { 53, 75.6, 17, 300 }, + [151] = { 54, 72.1, 17, 300 }, + [152] = { 55, 67.1, 17, 300 }, + [153] = { 54.6, 62.4, 17, 300 }, + [154] = { 56.4, 61.9, 17, 300 }, + [155] = { 56.2, 61.2, 17, 300 }, + [156] = { 46.1, 100, 28, 300 }, + [157] = { 45.5, 98.8, 28, 300 }, + [158] = { 31.5, 78.9, 33, 300 }, + [159] = { 32.6, 74.7, 33, 300 }, + [160] = { 34.9, 72.3, 33, 300 }, + [161] = { 27.8, 68.5, 33, 300 }, + [162] = { 29.7, 68.5, 33, 300 }, + [163] = { 29.8, 67.5, 33, 300 }, + [164] = { 29, 67.4, 33, 300 }, + [165] = { 27.2, 67.4, 33, 300 }, + [166] = { 29, 66.2, 33, 300 }, + [167] = { 36.8, 65, 33, 300 }, + [168] = { 24.2, 64.1, 33, 300 }, + [169] = { 24.3, 62.6, 33, 300 }, + [170] = { 25.4, 58.9, 33, 300 }, + [171] = { 27.8, 58.9, 33, 300 }, + [172] = { 28.2, 58.1, 33, 300 }, + [173] = { 28, 56, 33, 300 }, + [174] = { 24.4, 55.7, 33, 300 }, + [175] = { 23.3, 53.8, 33, 300 }, + [176] = { 23.1, 51.3, 33, 300 }, + [177] = { 25.4, 50.6, 33, 300 }, + [178] = { 27.1, 47.7, 33, 300 }, + [179] = { 27.3, 45.3, 33, 300 }, + [180] = { 27.3, 43.1, 33, 300 }, + [181] = { 29.3, 37.7, 33, 300 }, + [182] = { 32.8, 36.2, 33, 300 }, + [183] = { 36.4, 34, 33, 300 }, + [184] = { 37.6, 32.6, 33, 300 }, + [185] = { 36, 32.4, 33, 300 }, + [186] = { 39.4, 31.4, 33, 300 }, + [187] = { 40.1, 29.5, 33, 300 }, + [188] = { 38.9, 29.4, 33, 300 }, + [189] = { 38.9, 27.3, 33, 300 }, + [190] = { 30.3, 26.4, 33, 300 }, + [191] = { 40.4, 25.9, 33, 300 }, + [192] = { 39.3, 25.2, 33, 300 }, + [193] = { 29.9, 24.9, 33, 300 }, + [194] = { 35.2, 24.4, 33, 300 }, + [195] = { 35.7, 24.2, 33, 300 }, + [196] = { 33.8, 23.8, 33, 300 }, + [197] = { 35.8, 23.2, 33, 300 }, + [198] = { 35.6, 23.2, 33, 300 }, + [199] = { 34.3, 23.2, 33, 300 }, + [200] = { 33, 22.3, 33, 300 }, + [201] = { 35.5, 22.3, 33, 300 }, + [202] = { 34.8, 22.1, 33, 300 }, + [203] = { 39.6, 22.1, 33, 300 }, + [204] = { 41, 22, 33, 300 }, + [205] = { 29.3, 21.9, 33, 300 }, + [206] = { 33.2, 21.4, 33, 300 }, + [207] = { 42.9, 20.9, 33, 300 }, + [208] = { 34.6, 20.9, 33, 300 }, + [209] = { 33.3, 20.4, 33, 300 }, + [210] = { 40.3, 19.6, 33, 300 }, + [211] = { 42.7, 17.4, 33, 300 }, + [212] = { 39.7, 16, 33, 300 }, + [213] = { 21.1, 15.3, 33, 300 }, + [214] = { 41.5, 15.2, 33, 300 }, + [215] = { 40, 14.1, 33, 300 }, + [216] = { 40.1, 12.2, 33, 300 }, + [217] = { 40, 11.7, 33, 300 }, + [218] = { 18.9, 11.4, 33, 300 }, + [219] = { 36.7, 10, 33, 300 }, + [220] = { 33.9, 9.4, 33, 300 }, + [221] = { 25, 8.7, 33, 300 }, + [222] = { 24, 8.7, 33, 300 }, + [223] = { 24.5, 8.7, 33, 300 }, + [224] = { 25.7, 8.7, 33, 300 }, + [225] = { 23.6, 8.2, 33, 300 }, + [226] = { 31.8, 8, 33, 300 }, + [227] = { 30.8, 7, 33, 300 }, + [228] = { 67.8, 95.9, 36, 300 }, + [229] = { 67, 92.5, 36, 300 }, + [230] = { 68.5, 90.1, 36, 300 }, + [231] = { 68.4, 84.6, 36, 300 }, + [232] = { 72.5, 69.3, 36, 300 }, + [233] = { 74, 65.2, 36, 300 }, + [234] = { 77.2, 64.4, 36, 300 }, + [235] = { 76.3, 62.4, 36, 300 }, + [236] = { 79.8, 61.5, 36, 300 }, + [237] = { 78.9, 59.1, 36, 300 }, + [238] = { 81.6, 57.2, 36, 300 }, + [239] = { 9, 55.4, 36, 300 }, + [240] = { 80.6, 55.4, 36, 300 }, + [241] = { 13.4, 55, 36, 300 }, + [242] = { 83.9, 53.5, 36, 300 }, + [243] = { 16.7, 53, 36, 300 }, + [244] = { 83, 51.7, 36, 300 }, + [245] = { 20, 50.2, 36, 300 }, + [246] = { 23.7, 45.3, 36, 300 }, + [247] = { 26.6, 42.4, 36, 300 }, + [248] = { 29.7, 38.2, 36, 300 }, + [249] = { 30.9, 33, 36, 300 }, + [250] = { 35.8, 24.5, 36, 300 }, + [251] = { 37.1, 20.6, 36, 300 }, + [252] = { 37.2, 15, 36, 300 }, + [253] = { 33.9, 9.6, 36, 300 }, + [254] = { 45.8, 81.3, 45, 300 }, + [255] = { 45.7, 78.4, 45, 300 }, + [256] = { 45.6, 75.7, 45, 300 }, + [257] = { 46.7, 71.7, 45, 300 }, + [258] = { 44.3, 70.4, 45, 300 }, + [259] = { 67.7, 70, 45, 300 }, + [260] = { 69.3, 68.7, 45, 300 }, + [261] = { 45, 68.6, 45, 300 }, + [262] = { 66.2, 68.5, 45, 300 }, + [263] = { 68.8, 67.2, 45, 300 }, + [264] = { 66, 66.9, 45, 300 }, + [265] = { 69.4, 65.8, 45, 300 }, + [266] = { 66, 65.6, 45, 300 }, + [267] = { 67.2, 64.3, 45, 300 }, + [268] = { 29.4, 55.1, 45, 300 }, + [269] = { 23.5, 54.8, 45, 300 }, + [270] = { 29.9, 53.8, 45, 300 }, + [271] = { 23.3, 52.8, 45, 300 }, + [272] = { 24.1, 50.1, 45, 300 }, + [273] = { 63.4, 60.8, 47, 300 }, + [274] = { 42.3, 59.2, 47, 300 }, + [275] = { 56.5, 56.4, 47, 300 }, + [276] = { 74.9, 47.4, 47, 300 }, + [277] = { 30.2, 43.6, 47, 300 }, + [278] = { 68.6, 40.9, 47, 300 }, + [279] = { 63.2, 39.7, 47, 300 }, + [280] = { 57.6, 37.6, 47, 300 }, + [281] = { 47.2, 37.3, 47, 300 }, + [282] = { 52.7, 36.3, 47, 300 }, + [283] = { 69.5, 42.9, 130, 300 }, + [284] = { 72.4, 42.6, 130, 300 }, + [285] = { 74.6, 41.3, 130, 300 }, + [286] = { 76.8, 39.4, 130, 300 }, + [287] = { 79.3, 36.1, 130, 300 }, + [288] = { 81.2, 34.2, 130, 300 }, + [289] = { 83.3, 31.4, 130, 300 }, + [290] = { 56.6, 47.8, 267, 300 }, + [291] = { 59.3, 46, 267, 300 }, + [292] = { 61.7, 44.2, 267, 300 }, + [293] = { 64.1, 39.1, 267, 300 }, + [294] = { 66.3, 38.7, 267, 300 }, + [295] = { 66.9, 35.8, 267, 300 }, + [296] = { 68.1, 32.4, 267, 300 }, + [297] = { 67.5, 29.4, 267, 300 }, + [298] = { 68.8, 27.2, 267, 300 }, + [299] = { 68.7, 22.5, 267, 300 }, + [300] = { 72.3, 9.1, 267, 300 }, + [301] = { 73.6, 5.4, 267, 300 }, + [302] = { 76.4, 4.8, 267, 300 }, + [303] = { 75.6, 3, 267, 300 }, + [304] = { 78.7, 2.2, 267, 300 }, + [305] = { 67, 83.2, 331, 300 }, + [306] = { 65.5, 80.3, 331, 300 }, + [307] = { 60, 79.3, 331, 300 }, + [308] = { 60.8, 75.6, 331, 300 }, + [309] = { 78.8, 73.9, 331, 300 }, + [310] = { 62.9, 73.5, 331, 300 }, + [311] = { 80.5, 71.6, 331, 300 }, + [312] = { 79, 70.6, 331, 300 }, + [313] = { 84.8, 68.7, 331, 300 }, + [314] = { 64.1, 67.8, 331, 300 }, + [315] = { 79.6, 66.8, 331, 300 }, + [316] = { 65.7, 65.8, 331, 300 }, + [317] = { 91.3, 64.2, 331, 300 }, + [318] = { 81.6, 64.2, 331, 300 }, + [319] = { 78.3, 63.6, 331, 300 }, + [320] = { 67.5, 63.3, 331, 300 }, + [321] = { 79.2, 62.3, 331, 300 }, + [322] = { 69.9, 61.2, 331, 300 }, + [323] = { 92.4, 60, 331, 300 }, + [324] = { 78.9, 59.6, 331, 300 }, + [325] = { 70.1, 56.4, 331, 300 }, + [326] = { 78.7, 53.9, 331, 300 }, + [327] = { 72.8, 53.7, 331, 300 }, + [328] = { 74.5, 51, 331, 300 }, + [329] = { 74.7, 46.4, 331, 300 }, + [330] = { 46.4, 53.2, 357, 300 }, + [331] = { 72.3, 52.4, 357, 300 }, + [332] = { 62.4, 52.4, 357, 300 }, + [333] = { 48.4, 50.7, 357, 300 }, + [334] = { 61.8, 49.6, 357, 300 }, + [335] = { 75, 49.3, 357, 300 }, + [336] = { 79.3, 48.9, 357, 300 }, + [337] = { 47.9, 48.5, 357, 300 }, + [338] = { 48.2, 46.3, 357, 300 }, + [339] = { 50.9, 45.1, 357, 300 }, + [340] = { 75.1, 40.4, 357, 300 }, + [341] = { 73.6, 36.8, 357, 300 }, + [342] = { 49.2, 24.9, 357, 300 }, + [343] = { 50, 23.2, 357, 300 }, + [344] = { 46.7, 20.2, 357, 300 }, + [345] = { 50, 14.6, 357, 300 }, + [346] = { 48.2, 14.4, 357, 300 }, + [347] = { 51.8, 12.4, 357, 300 }, + [348] = { 48.7, 9.4, 357, 300 }, + [349] = { 53.9, 7.5, 357, 300 }, + [350] = { 43.5, 82.3, 405, 300 }, + [351] = { 40.9, 81.8, 405, 300 }, + [352] = { 52.9, 81.6, 405, 300 }, + [353] = { 45.4, 81.3, 405, 300 }, + [354] = { 59, 81.2, 405, 300 }, + [355] = { 57.2, 80.7, 405, 300 }, + [356] = { 49.4, 80.4, 405, 300 }, + [357] = { 41.1, 79.6, 405, 300 }, + [358] = { 70.4, 78.6, 405, 300 }, + [359] = { 44, 78.4, 405, 300 }, + [360] = { 42.4, 78.4, 405, 300 }, + [361] = { 50.7, 78.2, 405, 300 }, + [362] = { 53.2, 78.1, 405, 300 }, + [363] = { 66.5, 77.9, 405, 300 }, + [364] = { 72.3, 77.4, 405, 300 }, + [365] = { 51.7, 76.7, 405, 300 }, + [366] = { 74.6, 75, 405, 300 }, + [367] = { 53.6, 74.5, 405, 300 }, + [368] = { 75.2, 71, 405, 300 }, + [369] = { 59.4, 70.6, 405, 300 }, + [370] = { 61.5, 70.5, 405, 300 }, + [371] = { 71.9, 70.1, 405, 300 }, + [372] = { 59.2, 66.7, 405, 300 }, + }, + }, + [2042] = { + ["coords"] = { + [1] = { 64.5, 70.6, 3, 300 }, + [2] = { 63.7, 65.8, 3, 300 }, + [3] = { 56.3, 63.8, 3, 300 }, + [4] = { 54.2, 59.8, 3, 300 }, + [5] = { 61.6, 55, 3, 300 }, + [6] = { 48.4, 54.3, 3, 300 }, + [7] = { 35.7, 50.7, 3, 300 }, + [8] = { 40.4, 50.2, 3, 300 }, + [9] = { 51.1, 47.9, 3, 300 }, + [10] = { 64.8, 44, 3, 300 }, + [11] = { 35.6, 38.5, 3, 300 }, + [12] = { 61.9, 36.9, 3, 300 }, + [13] = { 12.1, 64.7, 8, 300 }, + [14] = { 21.6, 62.4, 8, 300 }, + [15] = { 27.5, 60.9, 8, 300 }, + [16] = { 24.6, 59.1, 8, 300 }, + [17] = { 21.5, 58.8, 8, 300 }, + [18] = { 15.3, 58.7, 8, 300 }, + [19] = { 20.7, 53.9, 8, 300 }, + [20] = { 30.7, 53.5, 8, 300 }, + [21] = { 32.9, 50.2, 8, 300 }, + [22] = { 37.4, 48.4, 8, 300 }, + [23] = { 39.1, 44, 8, 300 }, + [24] = { 20.8, 42.3, 8, 300 }, + [25] = { 43.9, 41.7, 8, 300 }, + [26] = { 17.4, 39.6, 8, 300 }, + [27] = { 39.1, 37.6, 8, 300 }, + [28] = { 43, 35.5, 8, 300 }, + [29] = { 47.9, 34.4, 8, 300 }, + [30] = { 11.6, 30.7, 8, 300 }, + [31] = { 44.6, 76.3, 15, 300 }, + [32] = { 46.6, 71.3, 15, 300 }, + [33] = { 49.9, 71.3, 15, 300 }, + [34] = { 39.2, 70.7, 15, 300 }, + [35] = { 36.1, 70.1, 15, 300 }, + [36] = { 55.5, 68.7, 15, 300 }, + [37] = { 50.9, 67.1, 15, 300 }, + [38] = { 48.9, 61.9, 15, 300 }, + [39] = { 42.2, 60.2, 15, 300 }, + [40] = { 52.2, 59.5, 15, 300 }, + [41] = { 46.2, 56, 15, 300 }, + [42] = { 52.7, 55.8, 15, 300 }, + [43] = { 44.1, 53.2, 15, 300 }, + [44] = { 42.4, 52.4, 15, 300 }, + [45] = { 53.3, 52.1, 15, 300 }, + [46] = { 46.6, 51.7, 15, 300 }, + [47] = { 36.5, 51.5, 15, 300 }, + [48] = { 43, 45.9, 15, 300 }, + [49] = { 42.9, 41.8, 15, 300 }, + [50] = { 60.3, 34.5, 15, 300 }, + [51] = { 51.9, 30.7, 15, 300 }, + [52] = { 44.1, 27.2, 15, 300 }, + [53] = { 59.1, 26.4, 15, 300 }, + [54] = { 49.1, 26.2, 15, 300 }, + [55] = { 43.6, 23.9, 15, 300 }, + [56] = { 34.9, 23.5, 15, 300 }, + [57] = { 39.1, 21.8, 15, 300 }, + [58] = { 57.7, 20.6, 15, 300 }, + [59] = { 42.3, 18.9, 15, 300 }, + [60] = { 36.5, 18.6, 15, 300 }, + [61] = { 37.7, 18.2, 15, 300 }, + [62] = { 47.8, 16, 15, 300 }, + [63] = { 41.4, 15.4, 15, 300 }, + [64] = { 42.8, 12.8, 15, 300 }, + [65] = { 54.2, 90.3, 17, 300 }, + [66] = { 54.4, 80.6, 17, 300 }, + [67] = { 53.6, 66.1, 17, 300 }, + [68] = { 54.4, 63.6, 17, 300 }, + [69] = { 55, 63.4, 17, 300 }, + [70] = { 43.3, 98.8, 28, 300 }, + [71] = { 36.4, 95.6, 28, 300 }, + [72] = { 41.9, 93.3, 28, 300 }, + [73] = { 32.7, 92.5, 28, 300 }, + [74] = { 32.3, 89, 28, 300 }, + [75] = { 34, 67.7, 33, 300 }, + [76] = { 33.8, 65.4, 33, 300 }, + [77] = { 36.5, 57.1, 33, 300 }, + [78] = { 40.5, 50.3, 33, 300 }, + [79] = { 36.6, 27, 33, 300 }, + [80] = { 34.5, 26, 33, 300 }, + [81] = { 30.7, 24.5, 33, 300 }, + [82] = { 36.9, 23.2, 33, 300 }, + [83] = { 46.2, 20.5, 33, 300 }, + [84] = { 35.9, 19.3, 33, 300 }, + [85] = { 44.4, 18.6, 33, 300 }, + [86] = { 45.6, 18.4, 33, 300 }, + [87] = { 37.6, 17.8, 33, 300 }, + [88] = { 34.5, 16.7, 33, 300 }, + [89] = { 38.2, 15.9, 33, 300 }, + [90] = { 38.9, 15, 33, 300 }, + [91] = { 27.1, 14.9, 33, 300 }, + [92] = { 47.1, 13.9, 33, 300 }, + [93] = { 26.4, 13.3, 33, 300 }, + [94] = { 41.6, 12.8, 33, 300 }, + [95] = { 31.2, 12.1, 33, 300 }, + [96] = { 24.7, 12, 33, 300 }, + [97] = { 22.6, 11.8, 33, 300 }, + [98] = { 41.4, 11.6, 33, 300 }, + [99] = { 41.5, 10.6, 33, 300 }, + [100] = { 47.3, 9.9, 33, 300 }, + [101] = { 45, 9.1, 33, 300 }, + [102] = { 21.1, 82.4, 36, 300 }, + [103] = { 14.5, 81.2, 36, 300 }, + [104] = { 29.3, 80, 36, 300 }, + [105] = { 21.6, 79.7, 36, 300 }, + [106] = { 29.1, 71.2, 36, 300 }, + [107] = { 51.9, 64.5, 36, 300 }, + [108] = { 23.6, 58.3, 36, 300 }, + [109] = { 57, 56.4, 36, 300 }, + [110] = { 79.5, 51.8, 36, 300 }, + [111] = { 69, 46.8, 36, 300 }, + [112] = { 62.5, 46.4, 36, 300 }, + [113] = { 77.4, 43.3, 36, 300 }, + [114] = { 63.3, 42.1, 36, 300 }, + [115] = { 62.7, 36.6, 36, 300 }, + [116] = { 56, 31.4, 36, 300 }, + [117] = { 55.7, 25.3, 36, 300 }, + [118] = { 54.4, 21.6, 36, 300 }, + [119] = { 40.6, 21.1, 36, 300 }, + [120] = { 44, 20, 36, 300 }, + [121] = { 40.1, 15.2, 36, 300 }, + [122] = { 40.7, 70.3, 45, 300 }, + [123] = { 58.8, 67, 45, 300 }, + [124] = { 56.2, 66.9, 45, 300 }, + [125] = { 36.1, 66.7, 45, 300 }, + [126] = { 52.8, 65.7, 45, 300 }, + [127] = { 58.4, 64.5, 45, 300 }, + [128] = { 60.4, 63.6, 45, 300 }, + [129] = { 32.3, 62.3, 45, 300 }, + [130] = { 37.2, 61.6, 45, 300 }, + [131] = { 54.3, 58, 45, 300 }, + [132] = { 35.1, 54.7, 45, 300 }, + [133] = { 51.5, 48.1, 45, 300 }, + [134] = { 66, 42.5, 45, 300 }, + [135] = { 29, 41.7, 45, 300 }, + [136] = { 60.6, 40.7, 45, 300 }, + [137] = { 66.4, 38, 45, 300 }, + [138] = { 21.4, 36, 45, 300 }, + [139] = { 66.7, 34.6, 45, 300 }, + [140] = { 28.3, 34, 45, 300 }, + [141] = { 68.7, 32.5, 45, 300 }, + [142] = { 36.7, 26.6, 45, 300 }, + [143] = { 33, 22.3, 45, 300 }, + [144] = { 29.4, 21.9, 45, 300 }, + [145] = { 31.4, 63.9, 47, 300 }, + [146] = { 27.2, 63.2, 47, 300 }, + [147] = { 52.5, 58.1, 47, 300 }, + [148] = { 45.1, 56, 47, 300 }, + [149] = { 70.3, 54.7, 47, 300 }, + [150] = { 26, 54.3, 47, 300 }, + [151] = { 33.9, 53.1, 47, 300 }, + [152] = { 39.3, 52.4, 47, 300 }, + [153] = { 56.2, 52.1, 47, 300 }, + [154] = { 58.6, 46.8, 47, 300 }, + [155] = { 58.7, 46.3, 47, 300 }, + [156] = { 27.3, 20.6, 267, 300 }, + [157] = { 21.5, 19.5, 267, 300 }, + [158] = { 34.5, 18.4, 267, 300 }, + [159] = { 27.7, 18.2, 267, 300 }, + [160] = { 54.3, 4.9, 267, 300 }, + }, + }, + [2043] = { + ["coords"] = { + [1] = { 7.5, 76.9, 3, 300 }, + [2] = { 12.3, 73, 3, 300 }, + [3] = { 51.3, 72.1, 3, 300 }, + [4] = { 41.4, 69.3, 3, 300 }, + [5] = { 9.3, 69, 3, 300 }, + [6] = { 33.7, 68.1, 3, 300 }, + [7] = { 60.5, 64.4, 3, 300 }, + [8] = { 11.2, 61.1, 3, 300 }, + [9] = { 16.6, 59.8, 3, 300 }, + [10] = { 36, 59.6, 3, 300 }, + [11] = { 24.3, 58.7, 3, 300 }, + [12] = { 30.2, 55.1, 3, 300 }, + [13] = { 15.6, 55.1, 3, 300 }, + [14] = { 57.2, 54.4, 3, 300 }, + [15] = { 18.1, 53.3, 3, 300 }, + [16] = { 27.8, 52.4, 3, 300 }, + [17] = { 76.1, 78.7, 8, 300 }, + [18] = { 79.9, 77.3, 8, 300 }, + [19] = { 73.2, 77.1, 8, 300 }, + [20] = { 81.2, 69.7, 8, 300 }, + [21] = { 71.7, 68.5, 8, 300 }, + [22] = { 87.4, 67.9, 8, 300 }, + [23] = { 84.9, 59.9, 8, 300 }, + [24] = { 85.4, 59, 8, 300 }, + [25] = { 56.1, 53.7, 8, 300 }, + [26] = { 81.7, 52.6, 8, 300 }, + [27] = { 78.1, 47.8, 8, 300 }, + [28] = { 27.3, 46.9, 8, 300 }, + [29] = { 26, 46.4, 8, 300 }, + [30] = { 20.1, 45.7, 8, 300 }, + [31] = { 56.6, 45.3, 8, 300 }, + [32] = { 81.5, 44.2, 8, 300 }, + [33] = { 32.7, 42.6, 8, 300 }, + [34] = { 27.6, 42.5, 8, 300 }, + [35] = { 60.2, 41.2, 8, 300 }, + [36] = { 62.7, 41.1, 8, 300 }, + [37] = { 73.6, 39.3, 8, 300 }, + [38] = { 37.7, 39.2, 8, 300 }, + [39] = { 85.9, 38.3, 8, 300 }, + [40] = { 53.4, 38, 8, 300 }, + [41] = { 68.2, 37.1, 8, 300 }, + [42] = { 81.9, 34.4, 8, 300 }, + [43] = { 33, 33.9, 8, 300 }, + [44] = { 51.9, 31.8, 8, 300 }, + [45] = { 37.7, 30, 8, 300 }, + [46] = { 84.9, 29.7, 8, 300 }, + [47] = { 46.6, 28.4, 8, 300 }, + [48] = { 64.6, 21.5, 8, 300 }, + [49] = { 83.3, 19.5, 8, 300 }, + [50] = { 52.1, 84.1, 15, 300 }, + [51] = { 46.7, 80.9, 15, 300 }, + [52] = { 48.3, 76.2, 15, 300 }, + [53] = { 56.8, 75.6, 15, 300 }, + [54] = { 40.2, 73.9, 15, 300 }, + [55] = { 48.3, 73.4, 15, 300 }, + [56] = { 34.6, 72.4, 15, 300 }, + [57] = { 47.9, 71.3, 15, 300 }, + [58] = { 51.3, 70.6, 15, 300 }, + [59] = { 51.5, 70.6, 15, 300 }, + [60] = { 41.9, 70.5, 15, 300 }, + [61] = { 51.5, 68.5, 15, 300 }, + [62] = { 37.1, 67.1, 15, 300 }, + [63] = { 36, 64.7, 15, 300 }, + [64] = { 47.8, 63.6, 15, 300 }, + [65] = { 49.8, 63.5, 15, 300 }, + [66] = { 35.2, 59.8, 15, 300 }, + [67] = { 44.6, 59.5, 15, 300 }, + [68] = { 41.7, 58.8, 15, 300 }, + [69] = { 51.9, 56.2, 15, 300 }, + [70] = { 38.5, 55.8, 15, 300 }, + [71] = { 48.9, 54.5, 15, 300 }, + [72] = { 38.8, 51.8, 15, 300 }, + [73] = { 52, 51.7, 15, 300 }, + [74] = { 41.3, 51.4, 15, 300 }, + [75] = { 49.3, 49.7, 15, 300 }, + [76] = { 41.3, 47.2, 15, 300 }, + [77] = { 37.7, 47.1, 15, 300 }, + [78] = { 34.2, 46.2, 15, 300 }, + [79] = { 36.6, 46, 15, 300 }, + [80] = { 45.7, 45.8, 15, 300 }, + [81] = { 46.7, 45.8, 15, 300 }, + [82] = { 39.6, 42.8, 15, 300 }, + [83] = { 42.4, 38.6, 15, 300 }, + [84] = { 44.3, 38.2, 15, 300 }, + [85] = { 35.6, 36.8, 15, 300 }, + [86] = { 58, 36.7, 15, 300 }, + [87] = { 59, 25.3, 15, 300 }, + [88] = { 52.7, 23.8, 15, 300 }, + [89] = { 55.2, 21.1, 15, 300 }, + [90] = { 43.8, 20.4, 15, 300 }, + [91] = { 38.6, 18.9, 15, 300 }, + [92] = { 43.4, 18.7, 15, 300 }, + [93] = { 41.6, 18.3, 15, 300 }, + [94] = { 47.1, 15.8, 15, 300 }, + [95] = { 61.4, 89.8, 16, 300 }, + [96] = { 52.6, 85.8, 16, 300 }, + [97] = { 48.1, 80.2, 16, 300 }, + [98] = { 35.3, 79.3, 16, 300 }, + [99] = { 49.9, 73.1, 16, 300 }, + [100] = { 15.7, 70.2, 16, 300 }, + [101] = { 36.9, 62.9, 16, 300 }, + [102] = { 30.9, 58.2, 16, 300 }, + [103] = { 16.6, 55, 16, 300 }, + [104] = { 29.4, 51.1, 16, 300 }, + [105] = { 32, 45, 16, 300 }, + [106] = { 36, 41.4, 16, 300 }, + [107] = { 52.9, 35.1, 16, 300 }, + [108] = { 76.2, 29.6, 16, 300 }, + [109] = { 42.2, 29.1, 16, 300 }, + [110] = { 68.3, 25.6, 16, 300 }, + [111] = { 56.2, 25.1, 16, 300 }, + [112] = { 64, 20, 16, 300 }, + [113] = { 53.4, 91.5, 17, 300 }, + [114] = { 54.7, 88.7, 17, 300 }, + [115] = { 54.2, 87.5, 17, 300 }, + [116] = { 53.7, 85, 17, 300 }, + [117] = { 55, 78.3, 17, 300 }, + [118] = { 53.2, 77.9, 17, 300 }, + [119] = { 54.4, 77.8, 17, 300 }, + [120] = { 53.9, 73, 17, 300 }, + [121] = { 40.7, 94.7, 28, 300 }, + [122] = { 31.2, 87.1, 28, 300 }, + [123] = { 39.7, 86, 33, 300 }, + [124] = { 37.2, 84.8, 33, 300 }, + [125] = { 41.1, 84.5, 33, 300 }, + [126] = { 37.3, 81.1, 33, 300 }, + [127] = { 29.6, 70.9, 33, 300 }, + [128] = { 26.4, 67.2, 33, 300 }, + [129] = { 24.4, 63.5, 33, 300 }, + [130] = { 26.3, 63.1, 33, 300 }, + [131] = { 26.8, 59.5, 33, 300 }, + [132] = { 30.6, 58.2, 33, 300 }, + [133] = { 29.8, 57.7, 33, 300 }, + [134] = { 38.5, 56.4, 33, 300 }, + [135] = { 23.6, 54.5, 33, 300 }, + [136] = { 29.4, 54.1, 33, 300 }, + [137] = { 24.8, 53.5, 33, 300 }, + [138] = { 30.9, 52.9, 33, 300 }, + [139] = { 29.4, 52.2, 33, 300 }, + [140] = { 39.5, 51.3, 33, 300 }, + [141] = { 27, 49.1, 33, 300 }, + [142] = { 39.2, 46, 33, 300 }, + [143] = { 28.3, 44.3, 33, 300 }, + [144] = { 32.4, 42.9, 33, 300 }, + [145] = { 30.6, 42.5, 33, 300 }, + [146] = { 32.2, 42.2, 33, 300 }, + [147] = { 48.2, 42.1, 33, 300 }, + [148] = { 39.7, 40.9, 33, 300 }, + [149] = { 35.2, 40.1, 33, 300 }, + [150] = { 31, 39.8, 33, 300 }, + [151] = { 33.3, 39.3, 33, 300 }, + [152] = { 29.1, 39.3, 33, 300 }, + [153] = { 41.7, 38.8, 33, 300 }, + [154] = { 31.9, 38.6, 33, 300 }, + [155] = { 33.1, 37.9, 33, 300 }, + [156] = { 35, 37.7, 33, 300 }, + [157] = { 47.8, 37.5, 33, 300 }, + [158] = { 30.5, 37.2, 33, 300 }, + [159] = { 44.1, 36.8, 33, 300 }, + [160] = { 38.6, 36.3, 33, 300 }, + [161] = { 36.7, 35.6, 33, 300 }, + [162] = { 48.7, 35, 33, 300 }, + [163] = { 35.3, 32.1, 33, 300 }, + [164] = { 48.9, 31.2, 33, 300 }, + [165] = { 47.6, 31.2, 33, 300 }, + [166] = { 45.1, 30.6, 33, 300 }, + [167] = { 46.4, 29.8, 33, 300 }, + [168] = { 46.9, 28.8, 33, 300 }, + [169] = { 37.8, 28.1, 33, 300 }, + [170] = { 48.8, 24.1, 33, 300 }, + [171] = { 47.8, 24, 33, 300 }, + [172] = { 30.9, 23.7, 33, 300 }, + [173] = { 39.2, 21.3, 33, 300 }, + [174] = { 30.6, 20.3, 33, 300 }, + [175] = { 43.9, 19.6, 33, 300 }, + [176] = { 39, 19, 33, 300 }, + [177] = { 32.3, 18.5, 33, 300 }, + [178] = { 30.2, 18.3, 33, 300 }, + [179] = { 37.6, 18, 33, 300 }, + [180] = { 38.5, 17.1, 33, 300 }, + [181] = { 47, 16.5, 33, 300 }, + [182] = { 23.7, 15.8, 33, 300 }, + [183] = { 45.8, 15.5, 33, 300 }, + [184] = { 43.4, 15.5, 33, 300 }, + [185] = { 27.8, 15.1, 33, 300 }, + [186] = { 33.7, 14.7, 33, 300 }, + [187] = { 37.1, 14.4, 33, 300 }, + [188] = { 48.5, 14.1, 33, 300 }, + [189] = { 32.3, 14.1, 33, 300 }, + [190] = { 24.8, 13.6, 33, 300 }, + [191] = { 44, 13.4, 33, 300 }, + [192] = { 39, 13.3, 33, 300 }, + [193] = { 31.5, 13, 33, 300 }, + [194] = { 33.6, 12.6, 33, 300 }, + [195] = { 36.3, 12, 33, 300 }, + [196] = { 42.1, 11.8, 33, 300 }, + [197] = { 27.8, 11.7, 33, 300 }, + [198] = { 31.5, 11.2, 33, 300 }, + [199] = { 43.9, 10.3, 33, 300 }, + [200] = { 42.3, 10.3, 33, 300 }, + [201] = { 29.9, 9.5, 33, 300 }, + [202] = { 21.6, 8.9, 33, 300 }, + [203] = { 41.9, 8.2, 33, 300 }, + [204] = { 45.1, 7.9, 33, 300 }, + [205] = { 38.2, 93.7, 36, 300 }, + [206] = { 43.5, 92.4, 36, 300 }, + [207] = { 32.2, 86.6, 36, 300 }, + [208] = { 36.7, 83.6, 36, 300 }, + [209] = { 43.6, 82.7, 36, 300 }, + [210] = { 31.3, 72.7, 36, 300 }, + [211] = { 55.9, 60.7, 36, 300 }, + [212] = { 63.8, 54.5, 36, 300 }, + [213] = { 76, 53.7, 36, 300 }, + [214] = { 60.6, 50.5, 36, 300 }, + [215] = { 58.2, 48.3, 36, 300 }, + [216] = { 75.6, 45.4, 36, 300 }, + [217] = { 58.7, 43.5, 36, 300 }, + [218] = { 56.7, 43.1, 36, 300 }, + [219] = { 56.8, 40.9, 36, 300 }, + [220] = { 61, 33.7, 36, 300 }, + [221] = { 50.7, 29.3, 36, 300 }, + [222] = { 59.5, 28.6, 36, 300 }, + [223] = { 36.8, 26.8, 36, 300 }, + [224] = { 40.8, 25.8, 36, 300 }, + [225] = { 58, 25.4, 36, 300 }, + [226] = { 53.6, 19.8, 36, 300 }, + [227] = { 51.2, 17.3, 36, 300 }, + [228] = { 39.3, 17, 36, 300 }, + [229] = { 48.3, 16, 36, 300 }, + [230] = { 45.9, 15.2, 36, 300 }, + [231] = { 37.3, 12.2, 36, 300 }, + [232] = { 53.1, 75.2, 45, 300 }, + [233] = { 68.7, 74.1, 45, 300 }, + [234] = { 62.3, 72.5, 45, 300 }, + [235] = { 64.3, 71.6, 45, 300 }, + [236] = { 69.3, 71.2, 45, 300 }, + [237] = { 66.9, 71, 45, 300 }, + [238] = { 65.3, 69.9, 45, 300 }, + [239] = { 63.2, 69.6, 45, 300 }, + [240] = { 61.6, 69.5, 45, 300 }, + [241] = { 56.1, 68.2, 45, 300 }, + [242] = { 72.5, 65.8, 45, 300 }, + [243] = { 62.7, 65.2, 45, 300 }, + [244] = { 64.7, 64.7, 45, 300 }, + [245] = { 72.1, 63.3, 45, 300 }, + [246] = { 66.9, 62.8, 45, 300 }, + [247] = { 66.4, 62.4, 45, 300 }, + [248] = { 70.9, 62, 45, 300 }, + [249] = { 42.1, 61.1, 45, 300 }, + [250] = { 71.2, 59.2, 45, 300 }, + [251] = { 70.1, 53.4, 45, 300 }, + [252] = { 64, 50.2, 45, 300 }, + [253] = { 55.2, 49.7, 45, 300 }, + [254] = { 21.3, 46.8, 45, 300 }, + [255] = { 36.6, 45.9, 45, 300 }, + [256] = { 36.8, 44.9, 45, 300 }, + [257] = { 15.4, 43.9, 45, 300 }, + [258] = { 68, 40.8, 45, 300 }, + [259] = { 75.7, 40.3, 45, 300 }, + [260] = { 59.8, 38.8, 45, 300 }, + [261] = { 59.2, 37.2, 45, 300 }, + [262] = { 52.6, 36.4, 45, 300 }, + [263] = { 48.5, 36, 45, 300 }, + [264] = { 55.9, 33.8, 45, 300 }, + [265] = { 54.9, 33.7, 45, 300 }, + [266] = { 42.7, 30.8, 45, 300 }, + [267] = { 63.1, 30.7, 45, 300 }, + [268] = { 75.2, 29.2, 45, 300 }, + [269] = { 62.4, 56.7, 47, 300 }, + [270] = { 74.3, 55.8, 47, 300 }, + [271] = { 52.8, 54.7, 47, 300 }, + [272] = { 63.6, 51, 47, 300 }, + [273] = { 78, 49, 47, 300 }, + [274] = { 64.9, 46.2, 47, 300 }, + [275] = { 71, 46, 47, 300 }, + [276] = { 43, 45.9, 47, 300 }, + [277] = { 42.9, 45.7, 47, 300 }, + [278] = { 60.1, 40, 47, 300 }, + [279] = { 60.2, 39.7, 47, 300 }, + [280] = { 52.1, 38.7, 47, 300 }, + [281] = { 77.8, 74.4, 267, 300 }, + [282] = { 42.3, 30.4, 267, 300 }, + [283] = { 46.9, 29.3, 267, 300 }, + [284] = { 37, 24.2, 267, 300 }, + [285] = { 40.9, 21.6, 267, 300 }, + [286] = { 47, 20.8, 267, 300 }, + [287] = { 36.3, 12, 267, 300 }, + [288] = { 57.7, 1.6, 267, 300 }, + [289] = { 55.2, 75.2, 357, 300 }, + [290] = { 63.1, 73.3, 357, 300 }, + [291] = { 63.2, 73.1, 357, 300 }, + [292] = { 55.2, 72.8, 357, 300 }, + [293] = { 53.3, 70.5, 357, 300 }, + [294] = { 53, 67.7, 357, 300 }, + [295] = { 62.3, 64.2, 357, 300 }, + [296] = { 76.1, 63.9, 357, 300 }, + [297] = { 60, 63.8, 357, 300 }, + [298] = { 54.8, 63.6, 357, 300 }, + [299] = { 54.6, 61.2, 357, 300 }, + [300] = { 57.7, 59.4, 357, 300 }, + [301] = { 59.9, 58.4, 357, 300 }, + [302] = { 55.6, 58.3, 357, 300 }, + [303] = { 55.6, 57.4, 357, 300 }, + [304] = { 59.8, 56.4, 357, 300 }, + [305] = { 71, 56, 357, 300 }, + [306] = { 73.5, 56, 357, 300 }, + [307] = { 64.9, 52.8, 357, 300 }, + [308] = { 51.4, 51.4, 357, 300 }, + [309] = { 69.9, 51.4, 357, 300 }, + [310] = { 63.4, 49.3, 357, 300 }, + [311] = { 77, 49.3, 357, 300 }, + [312] = { 56.2, 49.1, 357, 300 }, + [313] = { 48.9, 48.8, 357, 300 }, + [314] = { 25.7, 47.8, 357, 300 }, + [315] = { 65.7, 47, 357, 300 }, + [316] = { 67.8, 46.6, 357, 300 }, + [317] = { 85.4, 44.8, 357, 300 }, + [318] = { 69, 44.8, 357, 300 }, + [319] = { 81.6, 44.8, 357, 300 }, + [320] = { 79.4, 44.4, 357, 300 }, + [321] = { 57.3, 44.3, 357, 300 }, + [322] = { 60.8, 43.8, 357, 300 }, + [323] = { 83.3, 43, 357, 300 }, + [324] = { 68.4, 43, 357, 300 }, + [325] = { 70.6, 39.9, 357, 300 }, + [326] = { 69.4, 39.8, 357, 300 }, + [327] = { 82.6, 39.4, 357, 300 }, + [328] = { 74.5, 39.2, 357, 300 }, + [329] = { 75.7, 38.5, 357, 300 }, + [330] = { 81, 38.3, 357, 300 }, + [331] = { 88.7, 38, 357, 300 }, + [332] = { 85.1, 37, 357, 300 }, + [333] = { 78, 36.2, 357, 300 }, + [334] = { 72.8, 35.1, 357, 300 }, + [335] = { 51.2, 32.3, 357, 300 }, + [336] = { 37.9, 31.8, 357, 300 }, + [337] = { 53, 30.8, 357, 300 }, + [338] = { 49.9, 24.4, 357, 300 }, + [339] = { 36.9, 24.3, 357, 300 }, + [340] = { 44.7, 23.8, 357, 300 }, + [341] = { 39.1, 23.4, 357, 300 }, + [342] = { 41.5, 21.4, 357, 300 }, + [343] = { 48.7, 16.1, 357, 300 }, + [344] = { 41.5, 12.9, 357, 300 }, + [345] = { 47.6, 12.9, 357, 300 }, + [346] = { 38.2, 11.7, 357, 300 }, + }, + }, + [2044] = { + ["coords"] = { + [1] = { 38, 72.1, 36, 300 }, + [2] = { 36.9, 70.7, 36, 300 }, + [3] = { 35.9, 69.1, 36, 300 }, + [4] = { 39.2, 68.7, 36, 300 }, + [5] = { 42.7, 67, 36, 300 }, + [6] = { 40.5, 63.6, 36, 300 }, + [7] = { 44, 63.3, 36, 300 }, + [8] = { 41.8, 63.3, 36, 300 }, + [9] = { 39.2, 59.9, 36, 300 }, + [10] = { 36.6, 56.8, 36, 300 }, + [11] = { 48.5, 54.2, 36, 300 }, + [12] = { 32.2, 52.5, 36, 300 }, + [13] = { 32.7, 52.2, 36, 300 }, + [14] = { 35.4, 51.2, 36, 300 }, + [15] = { 43.9, 51.1, 36, 300 }, + [16] = { 35.2, 47.9, 36, 300 }, + [17] = { 32, 47.6, 36, 300 }, + [18] = { 47.6, 43.9, 36, 300 }, + [19] = { 54.6, 42.4, 36, 300 }, + [20] = { 47.8, 42.1, 36, 300 }, + [21] = { 53, 41.6, 36, 300 }, + [22] = { 49, 39.8, 36, 300 }, + [23] = { 36.8, 38.4, 36, 300 }, + [24] = { 46.3, 36.7, 36, 300 }, + [25] = { 43.8, 35.2, 36, 300 }, + [26] = { 42.1, 11.5, 267, 300 }, + [27] = { 41.1, 10.3, 267, 300 }, + [28] = { 40.2, 8.9, 267, 300 }, + [29] = { 43.2, 8.6, 267, 300 }, + [30] = { 46.2, 7, 267, 300 }, + [31] = { 44.3, 4, 267, 300 }, + [32] = { 47.4, 3.8, 267, 300 }, + [33] = { 45.4, 3.8, 267, 300 }, + [34] = { 43.1, 0.8, 267, 300 }, + [35] = { 54.5, 84.9, 2597, 300 }, + [36] = { 53.9, 82.5, 2597, 300 }, + [37] = { 55, 80.7, 2597, 300 }, + [38] = { 53.4, 79.3, 2597, 300 }, + [39] = { 54.1, 77.5, 2597, 300 }, + [40] = { 48.9, 77.4, 2597, 300 }, + [41] = { 51.9, 76.9, 2597, 300 }, + [42] = { 55.1, 75.3, 2597, 300 }, + [43] = { 53.6, 74.8, 2597, 300 }, + [44] = { 50.5, 74.7, 2597, 300 }, + [45] = { 48.3, 73.1, 2597, 300 }, + [46] = { 53.5, 72.6, 2597, 300 }, + [47] = { 54.1, 71.1, 2597, 300 }, + [48] = { 50.7, 68.7, 2597, 300 }, + [49] = { 52.8, 68.6, 2597, 300 }, + [50] = { 49.1, 68.4, 2597, 300 }, + [51] = { 50.4, 63.6, 2597, 300 }, + [52] = { 45.2, 60.1, 2597, 300 }, + [53] = { 43.8, 59.8, 2597, 300 }, + [54] = { 47.9, 56.8, 2597, 300 }, + [55] = { 43.3, 56.3, 2597, 300 }, + [56] = { 44.7, 54.2, 2597, 300 }, + [57] = { 44.2, 54.1, 2597, 300 }, + [58] = { 46.8, 53.3, 2597, 300 }, + [59] = { 43.6, 53.2, 2597, 300 }, + [60] = { 50.7, 52.6, 2597, 300 }, + [61] = { 52, 52.2, 2597, 300 }, + [62] = { 44.9, 51.5, 2597, 300 }, + [63] = { 50.5, 50.2, 2597, 300 }, + [64] = { 47.5, 50.1, 2597, 300 }, + [65] = { 52.2, 49.9, 2597, 300 }, + [66] = { 52.5, 49.4, 2597, 300 }, + [67] = { 42.8, 48, 2597, 300 }, + [68] = { 53, 47.8, 2597, 300 }, + [69] = { 43.9, 45.3, 2597, 300 }, + [70] = { 51.1, 44.2, 2597, 300 }, + [71] = { 50.3, 44.2, 2597, 300 }, + [72] = { 45.7, 42.4, 2597, 300 }, + [73] = { 47.8, 42.2, 2597, 300 }, + }, + }, + [2045] = { + ["coords"] = { + [1] = { 80.8, 98.4, 8, 300 }, + [2] = { 87.5, 97.6, 8, 300 }, + [3] = { 90.7, 94.9, 8, 300 }, + [4] = { 93.4, 82, 8, 300 }, + [5] = { 89.1, 79.5, 8, 300 }, + [6] = { 94.4, 78.4, 8, 300 }, + [7] = { 93.4, 75.5, 8, 300 }, + [8] = { 91.9, 73.6, 8, 300 }, + [9] = { 97.5, 72.1, 8, 300 }, + [10] = { 95.6, 68.1, 8, 300 }, + [11] = { 95.9, 63.1, 8, 300 }, + [12] = { 99.6, 60.9, 8, 300 }, + [13] = { 98, 58.2, 8, 300 }, + [14] = { 98.6, 51.4, 8, 300 }, + [15] = { 98.7, 45.1, 8, 300 }, + [16] = { 96.5, 39.4, 8, 300 }, + [17] = { 95.8, 37.6, 8, 300 }, + [18] = { 98.5, 35.6, 8, 300 }, + [19] = { 95.8, 30.6, 8, 300 }, + [20] = { 95, 27.4, 8, 300 }, + [21] = { 91.4, 17, 8, 300 }, + [22] = { 93.4, 16.1, 8, 300 }, + [23] = { 83.9, 8.7, 8, 300 }, + [24] = { 6.9, 72.7, 11, 300 }, + [25] = { 5.9, 70.5, 11, 300 }, + [26] = { 9.2, 69.7, 11, 300 }, + [27] = { 9.5, 68.7, 11, 300 }, + [28] = { 6.3, 68, 11, 300 }, + [29] = { 9.6, 67.4, 11, 300 }, + [30] = { 10.3, 66.3, 11, 300 }, + [31] = { 11.8, 65.3, 11, 300 }, + [32] = { 11, 65.1, 11, 300 }, + [33] = { 4.9, 65.1, 11, 300 }, + [34] = { 8.7, 64.4, 11, 300 }, + [35] = { 13.8, 62.8, 11, 300 }, + [36] = { 14.6, 62.1, 11, 300 }, + [37] = { 7.3, 60.7, 11, 300 }, + [38] = { 4.7, 60.4, 11, 300 }, + [39] = { 18.7, 60, 11, 300 }, + [40] = { 16, 59.8, 11, 300 }, + [41] = { 20.1, 58.3, 11, 300 }, + [42] = { 16.7, 58.1, 11, 300 }, + [43] = { 18.3, 58, 11, 300 }, + [44] = { 6.1, 55.8, 11, 300 }, + [45] = { 16.8, 55.7, 11, 300 }, + [46] = { 19.2, 55.7, 11, 300 }, + [47] = { 3.7, 54.8, 11, 300 }, + [48] = { 15, 53.5, 11, 300 }, + [49] = { 5.6, 53.1, 11, 300 }, + [50] = { 2.4, 52.6, 11, 300 }, + [51] = { 17.6, 52.2, 11, 300 }, + [52] = { 16.1, 51.7, 11, 300 }, + [53] = { 7, 50, 11, 300 }, + [54] = { 5, 49.6, 11, 300 }, + [55] = { 3.1, 49, 11, 300 }, + [56] = { 5.7, 48.4, 11, 300 }, + [57] = { 7.5, 47.7, 11, 300 }, + [58] = { 9.6, 47, 11, 300 }, + [59] = { 9.2, 46.3, 11, 300 }, + [60] = { 12.2, 45.3, 11, 300 }, + [61] = { 6.1, 43.5, 11, 300 }, + [62] = { 7.2, 42.4, 11, 300 }, + [63] = { 9.4, 42.3, 11, 300 }, + [64] = { 12.1, 41.1, 11, 300 }, + [65] = { 10.2, 40, 11, 300 }, + [66] = { 10.7, 38.1, 11, 300 }, + [67] = { 12, 37.9, 11, 300 }, + [68] = { 11.1, 35.3, 11, 300 }, + [69] = { 12, 34, 11, 300 }, + [70] = { 9.7, 32.9, 11, 300 }, + [71] = { 12, 31.2, 11, 300 }, + [72] = { 10.2, 30.5, 11, 300 }, + [73] = { 11.3, 30.2, 11, 300 }, + [74] = { 13.2, 29.7, 11, 300 }, + [75] = { 13, 27.6, 11, 300 }, + [76] = { 10.4, 26.9, 11, 300 }, + [77] = { 14.9, 26.5, 11, 300 }, + [78] = { 13.6, 25.8, 11, 300 }, + [79] = { 15.7, 25.1, 11, 300 }, + [80] = { 12.6, 24.5, 11, 300 }, + [81] = { 11.1, 24.1, 11, 300 }, + [82] = { 16.8, 23.2, 11, 300 }, + [83] = { 16.6, 21.7, 11, 300 }, + [84] = { 13, 21.6, 11, 300 }, + [85] = { 15.4, 21.5, 11, 300 }, + [86] = { 14.9, 20.6, 11, 300 }, + [87] = { 18.1, 20.6, 11, 300 }, + [88] = { 23, 18.4, 11, 300 }, + [89] = { 21.8, 17.9, 11, 300 }, + [90] = { 25.5, 17.9, 11, 300 }, + [91] = { 15.6, 17.5, 11, 300 }, + [92] = { 26.7, 17.4, 11, 300 }, + [93] = { 19.4, 17.4, 11, 300 }, + [94] = { 24, 17.3, 11, 300 }, + [95] = { 17.9, 16.9, 11, 300 }, + [96] = { 25.1, 16, 11, 300 }, + [97] = { 27, 15.9, 11, 300 }, + [98] = { 20.7, 15, 11, 300 }, + [99] = { 22.9, 14.7, 11, 300 }, + [100] = { 28.7, 14.2, 11, 300 }, + [101] = { 24.8, 13.6, 11, 300 }, + [102] = { 26.5, 13.4, 11, 300 }, + [103] = { 30.4, 12.7, 11, 300 }, + [104] = { 29.2, 11.9, 11, 300 }, + [105] = { 32, 11.2, 11, 300 }, + [106] = { 43.4, 82.7, 14, 300 }, + [107] = { 42.1, 80.9, 14, 300 }, + [108] = { 40.3, 80.1, 14, 300 }, + [109] = { 38.7, 77.2, 14, 300 }, + [110] = { 38.6, 75.3, 14, 300 }, + [111] = { 59.5, 67.3, 15, 300 }, + [112] = { 54.6, 63.3, 15, 300 }, + [113] = { 55.7, 61.6, 15, 300 }, + [114] = { 60.2, 60, 15, 300 }, + [115] = { 58.7, 45.3, 15, 300 }, + [116] = { 49, 42.3, 15, 300 }, + [117] = { 45.9, 34.4, 15, 300 }, + [118] = { 62.8, 26.8, 15, 300 }, + [119] = { 65.1, 26.1, 15, 300 }, + [120] = { 63.8, 20.6, 15, 300 }, + [121] = { 61.5, 18.1, 15, 300 }, + [122] = { 62.2, 17, 15, 300 }, + [123] = { 55.7, 16.2, 15, 300 }, + [124] = { 54.4, 14.3, 15, 300 }, + [125] = { 58.3, 13.3, 15, 300 }, + [126] = { 57.2, 11.3, 15, 300 }, + [127] = { 62.8, 9.9, 15, 300 }, + [128] = { 60.2, 93.9, 16, 300 }, + [129] = { 75.8, 91.4, 16, 300 }, + [130] = { 61.5, 68.8, 16, 300 }, + [131] = { 51.1, 62.8, 16, 300 }, + [132] = { 56.3, 54.2, 16, 300 }, + [133] = { 73.5, 51.1, 16, 300 }, + [134] = { 57.8, 45.9, 16, 300 }, + [135] = { 53.4, 40.5, 16, 300 }, + [136] = { 57.4, 38.6, 16, 300 }, + [137] = { 69.1, 36, 16, 300 }, + [138] = { 61, 29.6, 16, 300 }, + [139] = { 65.1, 59.8, 17, 300 }, + [140] = { 68, 59.1, 17, 300 }, + [141] = { 64.4, 55.5, 17, 300 }, + [142] = { 63.9, 54.8, 17, 300 }, + [143] = { 63.4, 54, 17, 300 }, + [144] = { 63.6, 53, 17, 300 }, + [145] = { 63.2, 52.2, 17, 300 }, + [146] = { 63.6, 51.6, 17, 300 }, + [147] = { 64, 51, 17, 300 }, + [148] = { 63.6, 50.4, 17, 300 }, + [149] = { 64.6, 50.4, 17, 300 }, + [150] = { 68, 50.2, 17, 300 }, + [151] = { 65.1, 49.1, 17, 300 }, + [152] = { 67.7, 48.7, 17, 300 }, + [153] = { 69.7, 48.7, 17, 300 }, + [154] = { 67, 48.7, 17, 300 }, + [155] = { 66, 48.3, 17, 300 }, + [156] = { 68.2, 47.8, 17, 300 }, + [157] = { 65.3, 47.3, 17, 300 }, + [158] = { 69.5, 47.3, 17, 300 }, + [159] = { 65.7, 46.2, 17, 300 }, + [160] = { 65.2, 45.4, 17, 300 }, + [161] = { 65.9, 44.6, 17, 300 }, + [162] = { 66, 43.1, 17, 300 }, + [163] = { 64.6, 42.9, 17, 300 }, + [164] = { 65.7, 42.1, 17, 300 }, + [165] = { 66.4, 42, 17, 300 }, + [166] = { 65, 41.6, 17, 300 }, + [167] = { 63.8, 41.5, 17, 300 }, + [168] = { 67.5, 41.1, 17, 300 }, + [169] = { 65.9, 40.9, 17, 300 }, + [170] = { 66.8, 40.4, 17, 300 }, + [171] = { 63.3, 40.4, 17, 300 }, + [172] = { 67.9, 40.3, 17, 300 }, + [173] = { 65.6, 40.1, 17, 300 }, + [174] = { 64.6, 40, 17, 300 }, + [175] = { 67.2, 39.3, 17, 300 }, + [176] = { 65.5, 39, 17, 300 }, + [177] = { 63.3, 39, 17, 300 }, + [178] = { 66.3, 38.9, 17, 300 }, + [179] = { 64.6, 38.6, 17, 300 }, + [180] = { 63.5, 37.8, 17, 300 }, + [181] = { 64.9, 37.8, 17, 300 }, + [182] = { 65.5, 37.4, 17, 300 }, + [183] = { 64.9, 36.7, 17, 300 }, + [184] = { 65.4, 36.4, 17, 300 }, + [185] = { 29.9, 89.9, 33, 300 }, + [186] = { 29.6, 89, 33, 300 }, + [187] = { 30.9, 87.7, 33, 300 }, + [188] = { 34, 86.9, 33, 300 }, + [189] = { 28.3, 86.5, 33, 300 }, + [190] = { 30.8, 86.3, 33, 300 }, + [191] = { 32.6, 86.3, 33, 300 }, + [192] = { 29.5, 85.2, 33, 300 }, + [193] = { 33.6, 84.7, 33, 300 }, + [194] = { 32, 84.1, 33, 300 }, + [195] = { 28.1, 83.9, 33, 300 }, + [196] = { 25.4, 83, 33, 300 }, + [197] = { 31.6, 82.7, 33, 300 }, + [198] = { 22.5, 81.9, 33, 300 }, + [199] = { 35.1, 81.6, 33, 300 }, + [200] = { 33, 80.3, 33, 300 }, + [201] = { 21.3, 78.7, 33, 300 }, + [202] = { 35.5, 77.3, 33, 300 }, + [203] = { 34.6, 75.9, 33, 300 }, + [204] = { 35.7, 74.6, 33, 300 }, + [205] = { 39.4, 72.5, 33, 300 }, + [206] = { 37.6, 70.8, 33, 300 }, + [207] = { 36.6, 70.2, 33, 300 }, + [208] = { 26.5, 69.9, 33, 300 }, + [209] = { 22.8, 68.8, 33, 300 }, + [210] = { 26.6, 68.6, 33, 300 }, + [211] = { 21.4, 68.3, 33, 300 }, + [212] = { 27.4, 68.1, 33, 300 }, + [213] = { 25.4, 67.9, 33, 300 }, + [214] = { 24.2, 67.1, 33, 300 }, + [215] = { 37.8, 66.2, 33, 300 }, + [216] = { 41.3, 64.4, 33, 300 }, + [217] = { 21.4, 64.2, 33, 300 }, + [218] = { 22.8, 64.1, 33, 300 }, + [219] = { 38.4, 63.5, 33, 300 }, + [220] = { 23, 62.4, 33, 300 }, + [221] = { 40.6, 61.7, 33, 300 }, + [222] = { 21.6, 60.4, 33, 300 }, + [223] = { 41.6, 60.3, 33, 300 }, + [224] = { 22.8, 59.3, 33, 300 }, + [225] = { 23.9, 58.5, 33, 300 }, + [226] = { 28.2, 57.2, 33, 300 }, + [227] = { 27, 57.1, 33, 300 }, + [228] = { 25.4, 57, 33, 300 }, + [229] = { 22.1, 56.5, 33, 300 }, + [230] = { 21.3, 53.5, 33, 300 }, + [231] = { 22.1, 53.3, 33, 300 }, + [232] = { 20.8, 53.2, 33, 300 }, + [233] = { 22, 51.3, 33, 300 }, + [234] = { 22.6, 49, 33, 300 }, + [235] = { 24.9, 48.5, 33, 300 }, + [236] = { 25.9, 47.8, 33, 300 }, + [237] = { 23.6, 47, 33, 300 }, + [238] = { 26.4, 46.3, 33, 300 }, + [239] = { 22.2, 45.7, 33, 300 }, + [240] = { 26.6, 44.4, 33, 300 }, + [241] = { 26, 43.6, 33, 300 }, + [242] = { 23.6, 42.8, 33, 300 }, + [243] = { 26.7, 42.5, 33, 300 }, + [244] = { 27, 42.3, 33, 300 }, + [245] = { 26.6, 40.3, 33, 300 }, + [246] = { 26.8, 38.8, 33, 300 }, + [247] = { 31.7, 36.3, 33, 300 }, + [248] = { 34.3, 36, 33, 300 }, + [249] = { 34, 35.9, 33, 300 }, + [250] = { 27.3, 35.8, 33, 300 }, + [251] = { 27.6, 34, 33, 300 }, + [252] = { 30.9, 33.4, 33, 300 }, + [253] = { 29.5, 32.7, 33, 300 }, + [254] = { 26.4, 32.4, 33, 300 }, + [255] = { 28.7, 32.3, 33, 300 }, + [256] = { 29.6, 32.1, 33, 300 }, + [257] = { 23.2, 31.6, 33, 300 }, + [258] = { 31.2, 31.4, 33, 300 }, + [259] = { 28.1, 30.7, 33, 300 }, + [260] = { 25.8, 30.7, 33, 300 }, + [261] = { 29.6, 29.4, 33, 300 }, + [262] = { 23.1, 29.3, 33, 300 }, + [263] = { 24.7, 28.5, 33, 300 }, + [264] = { 27.9, 27.1, 33, 300 }, + [265] = { 28.5, 26.6, 33, 300 }, + [266] = { 23.4, 25.5, 33, 300 }, + [267] = { 21.1, 25, 33, 300 }, + [268] = { 25.6, 24.7, 33, 300 }, + [269] = { 27.4, 22.8, 33, 300 }, + [270] = { 18.8, 22.7, 33, 300 }, + [271] = { 23.4, 21.1, 33, 300 }, + [272] = { 25.9, 20.7, 33, 300 }, + [273] = { 21.5, 20.7, 33, 300 }, + [274] = { 20, 19.9, 33, 300 }, + [275] = { 20.3, 19.5, 33, 300 }, + [276] = { 20.1, 18, 33, 300 }, + [277] = { 17, 15.4, 33, 300 }, + [278] = { 13.9, 13.3, 33, 300 }, + [279] = { 11.8, 51.9, 36, 300 }, + [280] = { 17.2, 48.4, 36, 300 }, + [281] = { 23, 42.7, 36, 300 }, + [282] = { 36.7, 96.6, 40, 300 }, + [283] = { 38.2, 95.9, 40, 300 }, + [284] = { 32.1, 90.6, 40, 300 }, + [285] = { 38, 90.6, 40, 300 }, + [286] = { 34.4, 88, 40, 300 }, + [287] = { 32.7, 86.8, 40, 300 }, + [288] = { 28.6, 86.6, 40, 300 }, + [289] = { 27.6, 83.3, 40, 300 }, + [290] = { 28, 79.9, 40, 300 }, + [291] = { 26.4, 74, 40, 300 }, + [292] = { 24.8, 72.2, 40, 300 }, + [293] = { 25.8, 69.6, 40, 300 }, + [294] = { 24.8, 64.9, 40, 300 }, + [295] = { 24.3, 63.8, 40, 300 }, + [296] = { 25.1, 60, 40, 300 }, + [297] = { 23.9, 55.3, 40, 300 }, + [298] = { 25.3, 50.4, 40, 300 }, + [299] = { 24.7, 47.6, 40, 300 }, + [300] = { 25.1, 44.8, 40, 300 }, + [301] = { 20.5, 40.7, 40, 300 }, + [302] = { 25.5, 39.3, 40, 300 }, + [303] = { 26.2, 37.8, 40, 300 }, + [304] = { 26.6, 33.4, 40, 300 }, + [305] = { 25.9, 30.9, 40, 300 }, + [306] = { 27.7, 29.1, 40, 300 }, + [307] = { 24.6, 27.9, 40, 300 }, + [308] = { 29.1, 27.6, 40, 300 }, + [309] = { 29.4, 24.9, 40, 300 }, + [310] = { 31.4, 21.9, 40, 300 }, + [311] = { 23.4, 20.6, 40, 300 }, + [312] = { 29.7, 19.4, 40, 300 }, + [313] = { 33.2, 19.4, 40, 300 }, + [314] = { 32.1, 18.1, 40, 300 }, + [315] = { 27.3, 17, 40, 300 }, + [316] = { 35.2, 16.6, 40, 300 }, + [317] = { 33.6, 15.7, 40, 300 }, + [318] = { 36.5, 13.1, 40, 300 }, + [319] = { 27.1, 12.3, 40, 300 }, + [320] = { 40.1, 9.2, 40, 300 }, + [321] = { 36, 9.2, 40, 300 }, + [322] = { 54.4, 6.9, 40, 300 }, + [323] = { 52.2, 6.4, 40, 300 }, + [324] = { 45.6, 4.5, 40, 300 }, + [325] = { 21.7, 98.6, 45, 300 }, + [326] = { 20.3, 97.7, 45, 300 }, + [327] = { 23.5, 96.8, 45, 300 }, + [328] = { 6.8, 67, 45, 300 }, + [329] = { 5, 65.2, 45, 300 }, + [330] = { 7.1, 64.4, 45, 300 }, + [331] = { 4.4, 62, 45, 300 }, + [332] = { 5.2, 57.6, 45, 300 }, + [333] = { 80, 87.7, 47, 300 }, + [334] = { 77.8, 87.4, 47, 300 }, + [335] = { 83.2, 82.3, 47, 300 }, + [336] = { 82.8, 80.5, 47, 300 }, + [337] = { 80, 76.7, 47, 300 }, + [338] = { 81.7, 76.1, 47, 300 }, + [339] = { 84, 74.4, 47, 300 }, + [340] = { 79.4, 73.4, 47, 300 }, + [341] = { 78.2, 73, 47, 300 }, + [342] = { 82.5, 71.4, 47, 300 }, + [343] = { 82.3, 68.5, 47, 300 }, + [344] = { 79.9, 66.9, 47, 300 }, + [345] = { 85, 65.6, 47, 300 }, + [346] = { 81.8, 64.9, 47, 300 }, + [347] = { 86.6, 63, 47, 300 }, + [348] = { 85.3, 62.8, 47, 300 }, + [349] = { 82.1, 61.8, 47, 300 }, + [350] = { 84.5, 56.6, 47, 300 }, + [351] = { 86.1, 56.4, 47, 300 }, + [352] = { 83.1, 53.2, 47, 300 }, + [353] = { 84.5, 53, 47, 300 }, + [354] = { 84.3, 50.5, 47, 300 }, + [355] = { 84.3, 48.3, 47, 300 }, + [356] = { 82.7, 48.2, 47, 300 }, + [357] = { 82.5, 45.1, 47, 300 }, + [358] = { 84.2, 42.9, 47, 300 }, + [359] = { 82.4, 41.7, 47, 300 }, + [360] = { 38, 80.3, 130, 300 }, + [361] = { 40.2, 76.2, 130, 300 }, + [362] = { 41.1, 74.4, 130, 300 }, + [363] = { 39.7, 72.6, 130, 300 }, + [364] = { 40.5, 70.8, 130, 300 }, + [365] = { 37.3, 65, 130, 300 }, + [366] = { 36.5, 62.5, 130, 300 }, + [367] = { 34.9, 50.4, 130, 300 }, + [368] = { 34.9, 48.1, 130, 300 }, + [369] = { 34.8, 45.6, 130, 300 }, + [370] = { 35.6, 40.9, 130, 300 }, + [371] = { 67.1, 40.6, 130, 300 }, + [372] = { 71.4, 40.6, 130, 300 }, + [373] = { 74.9, 38.2, 130, 300 }, + [374] = { 35.6, 37.4, 130, 300 }, + [375] = { 64.6, 37.1, 130, 300 }, + [376] = { 35.7, 34.8, 130, 300 }, + [377] = { 78.8, 34.4, 130, 300 }, + [378] = { 35.5, 29.2, 130, 300 }, + [379] = { 34.7, 26.8, 130, 300 }, + [380] = { 60.5, 24.8, 130, 300 }, + [381] = { 34.1, 24.2, 130, 300 }, + [382] = { 66.9, 15.6, 130, 300 }, + [383] = { 30.9, 15.2, 130, 300 }, + [384] = { 76.8, 13.6, 130, 300 }, + [385] = { 72.7, 13.1, 130, 300 }, + [386] = { 30.9, 99.8, 148, 300 }, + [387] = { 29, 99.1, 148, 300 }, + [388] = { 30.1, 99, 148, 300 }, + [389] = { 24.7, 99, 148, 300 }, + [390] = { 23.9, 98.2, 148, 300 }, + [391] = { 31.3, 98, 148, 300 }, + [392] = { 25.9, 97.9, 148, 300 }, + [393] = { 30.5, 97.5, 148, 300 }, + [394] = { 22.5, 96.2, 148, 300 }, + [395] = { 26.4, 95.9, 148, 300 }, + [396] = { 23.6, 94.3, 148, 300 }, + [397] = { 34.7, 93.7, 148, 300 }, + [398] = { 30.2, 93.4, 148, 300 }, + [399] = { 30.1, 92.5, 148, 300 }, + [400] = { 30.4, 92.2, 148, 300 }, + [401] = { 31.7, 91.6, 148, 300 }, + [402] = { 30.7, 87.8, 148, 300 }, + [403] = { 32.8, 87.6, 148, 300 }, + [404] = { 32.2, 85.6, 148, 300 }, + [405] = { 30.7, 84.7, 148, 300 }, + [406] = { 32.3, 84, 148, 300 }, + [407] = { 33.7, 82.7, 148, 300 }, + [408] = { 31.2, 80.9, 148, 300 }, + [409] = { 32.2, 80.6, 148, 300 }, + [410] = { 32.7, 79.4, 148, 300 }, + [411] = { 29.9, 78.2, 148, 300 }, + [412] = { 35, 77.4, 148, 300 }, + [413] = { 33.7, 77, 148, 300 }, + [414] = { 32, 75.9, 148, 300 }, + [415] = { 35.2, 74.1, 148, 300 }, + [416] = { 34.2, 71.2, 148, 300 }, + [417] = { 32.5, 70.6, 148, 300 }, + [418] = { 35.5, 70.2, 148, 300 }, + [419] = { 36.3, 67.2, 148, 300 }, + [420] = { 30.1, 66.9, 148, 300 }, + [421] = { 32.4, 66.3, 148, 300 }, + [422] = { 35.8, 64.1, 148, 300 }, + [423] = { 33.6, 63.7, 148, 300 }, + [424] = { 36.5, 61.1, 148, 300 }, + [425] = { 34.5, 58.9, 148, 300 }, + [426] = { 35.7, 57.3, 148, 300 }, + [427] = { 36.3, 55.2, 148, 300 }, + [428] = { 31.5, 54.6, 148, 300 }, + [429] = { 29.9, 54, 148, 300 }, + [430] = { 33, 53.7, 148, 300 }, + [431] = { 35.7, 50.4, 148, 300 }, + [432] = { 32.9, 47.7, 148, 300 }, + [433] = { 34.9, 46.5, 148, 300 }, + [434] = { 34.3, 42.9, 148, 300 }, + [435] = { 32, 42.8, 148, 300 }, + [436] = { 34.1, 41.4, 148, 300 }, + [437] = { 35.7, 39.3, 148, 300 }, + [438] = { 33.5, 38.7, 148, 300 }, + [439] = { 31.2, 37.6, 148, 300 }, + [440] = { 36.3, 35.9, 148, 300 }, + [441] = { 33.8, 34.8, 148, 300 }, + [442] = { 30.9, 33.7, 148, 300 }, + [443] = { 37, 31.8, 148, 300 }, + [444] = { 36.5, 28.6, 148, 300 }, + [445] = { 38.4, 28, 148, 300 }, + [446] = { 41.1, 27.5, 148, 300 }, + [447] = { 35.5, 26.8, 148, 300 }, + [448] = { 39.1, 25.5, 148, 300 }, + [449] = { 41.4, 21.1, 148, 300 }, + [450] = { 50.8, 20.5, 148, 300 }, + [451] = { 46.1, 18, 148, 300 }, + [452] = { 54.6, 16, 148, 300 }, + [453] = { 51.7, 15.7, 148, 300 }, + [454] = { 50.8, 10.4, 148, 300 }, + [455] = { 68.4, 97.4, 267, 300 }, + [456] = { 65.4, 94.7, 267, 300 }, + [457] = { 56.5, 92.4, 267, 300 }, + [458] = { 64.2, 91.3, 267, 300 }, + [459] = { 54.6, 91.2, 267, 300 }, + [460] = { 66.3, 89.8, 267, 300 }, + [461] = { 63, 88.4, 267, 300 }, + [462] = { 53.7, 88.4, 267, 300 }, + [463] = { 55.7, 86.7, 267, 300 }, + [464] = { 52.6, 86.3, 267, 300 }, + [465] = { 51.5, 83.7, 267, 300 }, + [466] = { 21.1, 82.2, 267, 300 }, + [467] = { 63, 82.1, 267, 300 }, + [468] = { 50.7, 80.9, 267, 300 }, + [469] = { 52.4, 80.8, 267, 300 }, + [470] = { 48.3, 80.8, 267, 300 }, + [471] = { 24.3, 79.6, 267, 300 }, + [472] = { 30.5, 79.3, 267, 300 }, + [473] = { 47.3, 78.4, 267, 300 }, + [474] = { 20.7, 78, 267, 300 }, + [475] = { 59.7, 77.5, 267, 300 }, + [476] = { 55.4, 77.3, 267, 300 }, + [477] = { 50, 75.8, 267, 300 }, + [478] = { 53.6, 75.8, 267, 300 }, + [479] = { 40, 75.6, 267, 300 }, + [480] = { 46.1, 74.5, 267, 300 }, + [481] = { 24, 74.5, 267, 300 }, + [482] = { 17.3, 74.3, 267, 300 }, + [483] = { 31.9, 74.1, 267, 300 }, + [484] = { 27.3, 73.8, 267, 300 }, + [485] = { 57.6, 73.8, 267, 300 }, + [486] = { 41.1, 73.6, 267, 300 }, + [487] = { 37.5, 73.6, 267, 300 }, + [488] = { 47.1, 72.8, 267, 300 }, + [489] = { 44.9, 72.8, 267, 300 }, + [490] = { 52.7, 72.5, 267, 300 }, + [491] = { 15.2, 72.3, 267, 300 }, + [492] = { 50.4, 72.3, 267, 300 }, + [493] = { 39.3, 71.1, 267, 300 }, + [494] = { 20.8, 71, 267, 300 }, + [495] = { 35, 70.9, 267, 300 }, + [496] = { 48.5, 70.7, 267, 300 }, + [497] = { 43.4, 70.6, 267, 300 }, + [498] = { 55.6, 69.4, 267, 300 }, + [499] = { 46.1, 68.1, 267, 300 }, + [500] = { 17.9, 67.6, 267, 300 }, + [501] = { 80, 72.7, 331, 300 }, + [502] = { 51, 72.1, 331, 300 }, + [503] = { 48, 71.9, 331, 300 }, + [504] = { 49.5, 71.1, 331, 300 }, + [505] = { 46.2, 70.6, 331, 300 }, + [506] = { 79.3, 69.7, 331, 300 }, + [507] = { 49.6, 68.9, 331, 300 }, + [508] = { 65.5, 65.6, 331, 300 }, + [509] = { 84.4, 65.4, 331, 300 }, + [510] = { 79.1, 65.4, 331, 300 }, + [511] = { 81.9, 63.9, 331, 300 }, + [512] = { 68.6, 62.9, 331, 300 }, + [513] = { 79.8, 62.1, 331, 300 }, + [514] = { 78.2, 61.6, 331, 300 }, + [515] = { 78.9, 58, 331, 300 }, + [516] = { 70.2, 57, 331, 300 }, + [517] = { 78.5, 52.5, 331, 300 }, + [518] = { 76.9, 49.4, 331, 300 }, + [519] = { 20.3, 43.3, 331, 300 }, + [520] = { 19.9, 42.4, 331, 300 }, + [521] = { 20.6, 42.2, 331, 300 }, + [522] = { 8.9, 34.9, 331, 300 }, + [523] = { 10.5, 31.8, 331, 300 }, + [524] = { 8.7, 31.1, 331, 300 }, + [525] = { 7.3, 29.9, 331, 300 }, + [526] = { 9.6, 29.4, 331, 300 }, + [527] = { 11.1, 28, 331, 300 }, + [528] = { 13.9, 27.6, 331, 300 }, + [529] = { 12.6, 27.5, 331, 300 }, + [530] = { 10.6, 26, 331, 300 }, + [531] = { 13.1, 24.8, 331, 300 }, + [532] = { 11.6, 24.4, 331, 300 }, + [533] = { 12.4, 23.1, 331, 300 }, + [534] = { 13.6, 22.2, 331, 300 }, + [535] = { 13, 20.7, 331, 300 }, + [536] = { 14.1, 19.8, 331, 300 }, + [537] = { 8.9, 19.6, 331, 300 }, + [538] = { 13.5, 18.2, 331, 300 }, + [539] = { 11.4, 17.4, 331, 300 }, + [540] = { 12.7, 17.3, 331, 300 }, + [541] = { 6.5, 17.3, 331, 300 }, + [542] = { 5.6, 16.3, 331, 300 }, + [543] = { 14, 16.1, 331, 300 }, + [544] = { 7.8, 16, 331, 300 }, + [545] = { 13.2, 15.5, 331, 300 }, + [546] = { 4, 14.1, 331, 300 }, + [547] = { 8.5, 13.7, 331, 300 }, + [548] = { 5.3, 11.9, 331, 300 }, + [549] = { 17.8, 11.2, 331, 300 }, + [550] = { 12.7, 10.9, 331, 300 }, + [551] = { 12.6, 9.9, 331, 300 }, + [552] = { 13.1, 9.5, 331, 300 }, + [553] = { 14.4, 8.8, 331, 300 }, + [554] = { 43.4, 69.5, 357, 300 }, + [555] = { 45.4, 63.7, 357, 300 }, + [556] = { 44.9, 61.5, 357, 300 }, + [557] = { 27.3, 58.1, 357, 300 }, + [558] = { 24.4, 57.9, 357, 300 }, + [559] = { 34.4, 57.8, 357, 300 }, + [560] = { 29.2, 57.8, 357, 300 }, + [561] = { 45.5, 57.6, 357, 300 }, + [562] = { 33.1, 56.7, 357, 300 }, + [563] = { 43.3, 53.7, 357, 300 }, + [564] = { 44, 51.7, 357, 300 }, + [565] = { 42.5, 49.3, 357, 300 }, + [566] = { 43.9, 47.1, 357, 300 }, + [567] = { 43.9, 43.5, 357, 300 }, + [568] = { 43.2, 40.5, 357, 300 }, + [569] = { 44.4, 39.9, 357, 300 }, + [570] = { 41, 39.3, 357, 300 }, + [571] = { 38.7, 37.6, 357, 300 }, + [572] = { 36.8, 37.1, 357, 300 }, + [573] = { 34.8, 35.9, 357, 300 }, + [574] = { 38.7, 34.2, 357, 300 }, + [575] = { 20.4, 84.4, 405, 300 }, + [576] = { 22, 82.3, 405, 300 }, + [577] = { 18.7, 81.5, 405, 300 }, + [578] = { 17.7, 80.8, 405, 300 }, + [579] = { 24.2, 80.7, 405, 300 }, + [580] = { 20.5, 79.2, 405, 300 }, + [581] = { 22.3, 78.5, 405, 300 }, + [582] = { 23.9, 78, 405, 300 }, + [583] = { 18.6, 77.5, 405, 300 }, + [584] = { 21.7, 75.5, 405, 300 }, + [585] = { 18, 75.1, 405, 300 }, + [586] = { 19.8, 73.5, 405, 300 }, + [587] = { 18.7, 71.9, 405, 300 }, + [588] = { 20.6, 69, 405, 300 }, + [589] = { 21.7, 65.3, 405, 300 }, + [590] = { 21, 62.5, 405, 300 }, + [591] = { 20.8, 59.5, 405, 300 }, + [592] = { 24.7, 56.3, 405, 300 }, + [593] = { 22.9, 51.9, 405, 300 }, + [594] = { 21.2, 51.7, 405, 300 }, + [595] = { 25.6, 46.9, 405, 300 }, + [596] = { 24.6, 43, 405, 300 }, + [597] = { 26.9, 39.5, 405, 300 }, + [598] = { 29.5, 35.8, 405, 300 }, + [599] = { 31.3, 34.9, 405, 300 }, + [600] = { 33, 34.9, 405, 300 }, + [601] = { 30.7, 31.4, 405, 300 }, + [602] = { 32.1, 29, 405, 300 }, + [603] = { 33.4, 27.7, 405, 300 }, + [604] = { 31.9, 24.3, 405, 300 }, + [605] = { 35.2, 22.2, 405, 300 }, + [606] = { 39.1, 20.8, 405, 300 }, + [607] = { 41.2, 19.7, 405, 300 }, + [608] = { 31.4, 18.2, 405, 300 }, + [609] = { 29.2, 14.2, 405, 300 }, + [610] = { 32.6, 5.8, 405, 300 }, + [611] = { 71.8, 41.2, 440, 300 }, + [612] = { 72.8, 40.8, 440, 300 }, + [613] = { 70.2, 39.5, 440, 300 }, + [614] = { 68.3, 39.2, 440, 300 }, + [615] = { 70.8, 38.7, 440, 300 }, + [616] = { 68, 35.8, 440, 300 }, + [617] = { 68.2, 32.9, 440, 300 }, + [618] = { 68.6, 30.8, 440, 300 }, + [619] = { 68.8, 27.2, 440, 300 }, + [620] = { 68.3, 25.5, 440, 300 }, + [621] = { 49.9, 90.4, 1497, 300 }, + }, + }, + [2046] = { + ["coords"] = { + [1] = { 10.3, 84.2, 3, 300 }, + [2] = { 12.4, 81.6, 3, 300 }, + [3] = { 8.2, 79, 3, 300 }, + [4] = { 14.9, 75.2, 3, 300 }, + [5] = { 48.4, 69.5, 3, 300 }, + [6] = { 43.1, 68.4, 3, 300 }, + [7] = { 41.2, 62.2, 3, 300 }, + [8] = { 50.3, 58.4, 3, 300 }, + [9] = { 43, 56.5, 3, 300 }, + [10] = { 22.9, 54.7, 3, 300 }, + [11] = { 44.4, 50.9, 3, 300 }, + [12] = { 21.9, 45.3, 3, 300 }, + [13] = { 30.1, 44.5, 3, 300 }, + [14] = { 18.2, 43.6, 3, 300 }, + [15] = { 52.4, 40.6, 3, 300 }, + [16] = { 51.7, 33.6, 3, 300 }, + [17] = { 72.1, 95.3, 8, 300 }, + [18] = { 72.8, 89, 8, 300 }, + [19] = { 69.6, 84.4, 8, 300 }, + [20] = { 67.3, 83.4, 8, 300 }, + [21] = { 67, 77, 8, 300 }, + [22] = { 63.3, 70.6, 8, 300 }, + [23] = { 60.6, 67.3, 8, 300 }, + [24] = { 10.2, 65.9, 8, 300 }, + [25] = { 56, 65, 8, 300 }, + [26] = { 26.3, 64.9, 8, 300 }, + [27] = { 16.6, 64.7, 8, 300 }, + [28] = { 28.8, 63.5, 8, 300 }, + [29] = { 22.2, 63.4, 8, 300 }, + [30] = { 22.4, 63.2, 8, 300 }, + [31] = { 53.5, 62.2, 8, 300 }, + [32] = { 10.3, 61.4, 8, 300 }, + [33] = { 21.6, 56.6, 8, 300 }, + [34] = { 12, 56.2, 8, 300 }, + [35] = { 11, 46.1, 8, 300 }, + [36] = { 14.7, 45.4, 8, 300 }, + [37] = { 15.4, 42.1, 8, 300 }, + [38] = { 11.5, 40.4, 8, 300 }, + [39] = { 21.3, 38, 8, 300 }, + [40] = { 16.3, 32, 8, 300 }, + [41] = { 30.6, 31.8, 8, 300 }, + [42] = { 29.9, 31.4, 8, 300 }, + [43] = { 24.6, 28.7, 8, 300 }, + [44] = { 9.2, 28.5, 8, 300 }, + [45] = { 41.8, 28.5, 8, 300 }, + [46] = { 35.8, 28.4, 8, 300 }, + [47] = { 53.2, 26.5, 8, 300 }, + [48] = { 57.4, 23.1, 8, 300 }, + [49] = { 60.8, 19.3, 8, 300 }, + [50] = { 65.2, 12.9, 8, 300 }, + [51] = { 70.8, 8.4, 8, 300 }, + [52] = { 46.2, 84.4, 15, 300 }, + [53] = { 55, 84, 15, 300 }, + [54] = { 47.4, 69.1, 15, 300 }, + [55] = { 37.6, 68.3, 15, 300 }, + [56] = { 44.5, 66.9, 15, 300 }, + [57] = { 56.1, 66.8, 15, 300 }, + [58] = { 45.6, 66.2, 15, 300 }, + [59] = { 43.8, 65.6, 15, 300 }, + [60] = { 53.4, 65.5, 15, 300 }, + [61] = { 44.9, 65.2, 15, 300 }, + [62] = { 38.9, 64.7, 15, 300 }, + [63] = { 34, 62.6, 15, 300 }, + [64] = { 52.4, 61.7, 15, 300 }, + [65] = { 54.2, 59.6, 15, 300 }, + [66] = { 54.9, 57.4, 15, 300 }, + [67] = { 55.7, 54.1, 15, 300 }, + [68] = { 54, 50.5, 15, 300 }, + [69] = { 50.3, 47.6, 15, 300 }, + [70] = { 49, 46.3, 15, 300 }, + [71] = { 48.6, 45.9, 15, 300 }, + [72] = { 46.9, 43.9, 15, 300 }, + [73] = { 45.7, 42.4, 15, 300 }, + [74] = { 46.1, 41.2, 15, 300 }, + [75] = { 45.2, 37.8, 15, 300 }, + [76] = { 54.6, 36.1, 15, 300 }, + [77] = { 52.9, 35.1, 15, 300 }, + [78] = { 43.2, 33.9, 15, 300 }, + [79] = { 51.6, 31.4, 15, 300 }, + [80] = { 60, 30.8, 15, 300 }, + [81] = { 44.5, 30.1, 15, 300 }, + [82] = { 45.8, 29, 15, 300 }, + [83] = { 48.4, 28, 15, 300 }, + [84] = { 63.9, 26.6, 15, 300 }, + [85] = { 33.9, 26, 15, 300 }, + [86] = { 55.7, 25.9, 15, 300 }, + [87] = { 33.5, 25.1, 15, 300 }, + [88] = { 60.3, 24.6, 15, 300 }, + [89] = { 34.5, 19.3, 15, 300 }, + [90] = { 55.8, 18.3, 15, 300 }, + [91] = { 63.1, 17.5, 15, 300 }, + [92] = { 49.1, 16.4, 15, 300 }, + [93] = { 56.8, 15.8, 15, 300 }, + [94] = { 53, 15, 15, 300 }, + [95] = { 36.2, 12.5, 15, 300 }, + [96] = { 58.4, 10.9, 15, 300 }, + [97] = { 62.9, 6.5, 15, 300 }, + [98] = { 23.4, 79.3, 16, 300 }, + [99] = { 16.7, 78.4, 16, 300 }, + [100] = { 13.3, 72.2, 16, 300 }, + [101] = { 15.9, 66.2, 16, 300 }, + [102] = { 21.5, 59.5, 16, 300 }, + [103] = { 18, 58.3, 16, 300 }, + [104] = { 26.2, 48.7, 16, 300 }, + [105] = { 23.4, 47.3, 16, 300 }, + [106] = { 55, 89.3, 17, 300 }, + [107] = { 53.1, 86.4, 17, 300 }, + [108] = { 53.1, 67.4, 17, 300 }, + [109] = { 52.9, 67, 17, 300 }, + [110] = { 53.4, 64, 17, 300 }, + [111] = { 54.3, 60.5, 17, 300 }, + [112] = { 65.8, 59.6, 17, 300 }, + [113] = { 68.1, 57.3, 17, 300 }, + [114] = { 32.6, 91.4, 28, 300 }, + [115] = { 27.6, 81.8, 33, 300 }, + [116] = { 36.2, 69.3, 33, 300 }, + [117] = { 32.1, 68.9, 33, 300 }, + [118] = { 29.5, 66.1, 33, 300 }, + [119] = { 34.6, 65.2, 33, 300 }, + [120] = { 33.7, 62, 33, 300 }, + [121] = { 39.8, 59.1, 33, 300 }, + [122] = { 35, 58.8, 33, 300 }, + [123] = { 38.9, 58.5, 33, 300 }, + [124] = { 29.3, 58.3, 33, 300 }, + [125] = { 38.4, 58.2, 33, 300 }, + [126] = { 34.3, 54.7, 33, 300 }, + [127] = { 30.8, 54.5, 33, 300 }, + [128] = { 32, 53.9, 33, 300 }, + [129] = { 25.3, 53.1, 33, 300 }, + [130] = { 34.7, 52.6, 33, 300 }, + [131] = { 27.3, 51.9, 33, 300 }, + [132] = { 34.2, 51.7, 33, 300 }, + [133] = { 35.1, 51.5, 33, 300 }, + [134] = { 35.3, 50.6, 33, 300 }, + [135] = { 41.4, 49.4, 33, 300 }, + [136] = { 44.4, 45.4, 33, 300 }, + [137] = { 46.6, 44.8, 33, 300 }, + [138] = { 37, 44.6, 33, 300 }, + [139] = { 39.4, 44.3, 33, 300 }, + [140] = { 36.2, 44.3, 33, 300 }, + [141] = { 32.2, 44.3, 33, 300 }, + [142] = { 48.1, 43.4, 33, 300 }, + [143] = { 29.8, 42.8, 33, 300 }, + [144] = { 33.1, 42.6, 33, 300 }, + [145] = { 46.4, 42.5, 33, 300 }, + [146] = { 47.2, 42.5, 33, 300 }, + [147] = { 37.3, 42.5, 33, 300 }, + [148] = { 43.8, 42.5, 33, 300 }, + [149] = { 35.2, 42.5, 33, 300 }, + [150] = { 39.4, 42.5, 33, 300 }, + [151] = { 47.5, 42.4, 33, 300 }, + [152] = { 44.9, 42.2, 33, 300 }, + [153] = { 28.7, 41.8, 33, 300 }, + [154] = { 33.4, 41, 33, 300 }, + [155] = { 47.5, 40.4, 33, 300 }, + [156] = { 28.6, 40.3, 33, 300 }, + [157] = { 42.5, 40.3, 33, 300 }, + [158] = { 42.4, 40.2, 33, 300 }, + [159] = { 46.4, 39.9, 33, 300 }, + [160] = { 43.1, 39.3, 33, 300 }, + [161] = { 44, 39, 33, 300 }, + [162] = { 46.6, 38.7, 33, 300 }, + [163] = { 38.6, 38.4, 33, 300 }, + [164] = { 48.3, 38, 33, 300 }, + [165] = { 30.6, 37.8, 33, 300 }, + [166] = { 38.2, 37.7, 33, 300 }, + [167] = { 44.9, 37.3, 33, 300 }, + [168] = { 37.3, 37.1, 33, 300 }, + [169] = { 49.1, 36.7, 33, 300 }, + [170] = { 39.4, 35.9, 33, 300 }, + [171] = { 41.8, 35.6, 33, 300 }, + [172] = { 35.5, 35, 33, 300 }, + [173] = { 46.8, 34.9, 33, 300 }, + [174] = { 49.5, 34.8, 33, 300 }, + [175] = { 47.2, 34.7, 33, 300 }, + [176] = { 39.1, 34.2, 33, 300 }, + [177] = { 47.2, 33.8, 33, 300 }, + [178] = { 41.6, 32.3, 33, 300 }, + [179] = { 46.1, 31.8, 33, 300 }, + [180] = { 36.9, 31, 33, 300 }, + [181] = { 50.5, 30.8, 33, 300 }, + [182] = { 44.3, 30.3, 33, 300 }, + [183] = { 49.6, 29.7, 33, 300 }, + [184] = { 45.7, 29.5, 33, 300 }, + [185] = { 47.7, 29.1, 33, 300 }, + [186] = { 43.6, 27.7, 33, 300 }, + [187] = { 48.6, 27.5, 33, 300 }, + [188] = { 44.6, 26, 33, 300 }, + [189] = { 49.1, 25.8, 33, 300 }, + [190] = { 48.6, 25.5, 33, 300 }, + [191] = { 47.8, 25, 33, 300 }, + [192] = { 36.4, 24.2, 33, 300 }, + [193] = { 43.2, 23.4, 33, 300 }, + [194] = { 39.7, 23.2, 33, 300 }, + [195] = { 47.3, 22, 33, 300 }, + [196] = { 48.8, 21.1, 33, 300 }, + [197] = { 50, 20.3, 33, 300 }, + [198] = { 32.6, 20.3, 33, 300 }, + [199] = { 29.7, 20, 33, 300 }, + [200] = { 37.2, 20, 33, 300 }, + [201] = { 30, 19.7, 33, 300 }, + [202] = { 47.7, 19.6, 33, 300 }, + [203] = { 39.5, 19.3, 33, 300 }, + [204] = { 31.9, 16.5, 33, 300 }, + [205] = { 29.3, 15.7, 33, 300 }, + [206] = { 34, 15.7, 33, 300 }, + [207] = { 41.8, 14.8, 33, 300 }, + [208] = { 20.4, 12.1, 33, 300 }, + [209] = { 45, 11.6, 33, 300 }, + [210] = { 25.1, 10.2, 33, 300 }, + [211] = { 23.5, 10.1, 33, 300 }, + [212] = { 29.1, 8, 33, 300 }, + [213] = { 48.7, 65.1, 36, 300 }, + [214] = { 56.4, 62, 36, 300 }, + [215] = { 50.4, 59.9, 36, 300 }, + [216] = { 27.7, 58.8, 36, 300 }, + [217] = { 48.3, 58.6, 36, 300 }, + [218] = { 39.3, 58.5, 36, 300 }, + [219] = { 45.9, 56.1, 36, 300 }, + [220] = { 34.1, 53.5, 36, 300 }, + [221] = { 53.1, 52.6, 36, 300 }, + [222] = { 46, 49.1, 36, 300 }, + [223] = { 27.2, 48.9, 36, 300 }, + [224] = { 37.3, 48.5, 36, 300 }, + [225] = { 37.2, 48.1, 36, 300 }, + [226] = { 54.6, 48, 36, 300 }, + [227] = { 34.5, 47.2, 36, 300 }, + [228] = { 52.8, 45.9, 36, 300 }, + [229] = { 30.4, 44.8, 36, 300 }, + [230] = { 45.4, 44.3, 36, 300 }, + [231] = { 42.3, 42.5, 36, 300 }, + [232] = { 63.2, 40.4, 36, 300 }, + [233] = { 60.1, 40, 36, 300 }, + [234] = { 44.2, 39.3, 36, 300 }, + [235] = { 40.2, 38.7, 36, 300 }, + [236] = { 33.8, 38.5, 36, 300 }, + [237] = { 55.8, 38.1, 36, 300 }, + [238] = { 35.5, 33.5, 36, 300 }, + [239] = { 42.3, 31.7, 36, 300 }, + [240] = { 37.9, 30.8, 36, 300 }, + [241] = { 38, 30.7, 36, 300 }, + [242] = { 46.3, 30.4, 36, 300 }, + [243] = { 49.7, 29.6, 36, 300 }, + [244] = { 42.8, 27.3, 36, 300 }, + [245] = { 37.9, 26.9, 36, 300 }, + [246] = { 53.5, 21.8, 36, 300 }, + [247] = { 45, 21.3, 36, 300 }, + [248] = { 52.8, 18.5, 36, 300 }, + [249] = { 39.3, 18.1, 36, 300 }, + [250] = { 47.8, 14.6, 36, 300 }, + [251] = { 46.4, 80.7, 45, 300 }, + [252] = { 50.2, 80.5, 45, 300 }, + [253] = { 46.9, 76.5, 45, 300 }, + [254] = { 50.1, 76.1, 45, 300 }, + [255] = { 42.3, 75.2, 45, 300 }, + [256] = { 56.3, 72.4, 45, 300 }, + [257] = { 18.8, 71.7, 45, 300 }, + [258] = { 53.2, 71.7, 45, 300 }, + [259] = { 49.2, 71.4, 45, 300 }, + [260] = { 46.1, 69, 45, 300 }, + [261] = { 14.6, 68.6, 45, 300 }, + [262] = { 42.1, 65, 45, 300 }, + [263] = { 54.9, 64.5, 45, 300 }, + [264] = { 17.5, 63, 45, 300 }, + [265] = { 34.7, 61.9, 45, 300 }, + [266] = { 19.2, 57.8, 45, 300 }, + [267] = { 53.4, 50.5, 45, 300 }, + [268] = { 73.5, 48.9, 45, 300 }, + [269] = { 40.3, 48.6, 45, 300 }, + [270] = { 17.3, 47.6, 45, 300 }, + [271] = { 57.6, 47.1, 45, 300 }, + [272] = { 77.2, 44.2, 45, 300 }, + [273] = { 30.7, 44.2, 45, 300 }, + [274] = { 40.8, 44.1, 45, 300 }, + [275] = { 61.6, 43.7, 45, 300 }, + [276] = { 38.4, 43.1, 45, 300 }, + [277] = { 43.1, 42.1, 45, 300 }, + [278] = { 41.3, 40.6, 45, 300 }, + [279] = { 20.7, 39, 45, 300 }, + [280] = { 48.7, 37.5, 45, 300 }, + [281] = { 79, 37.4, 45, 300 }, + [282] = { 51, 37, 45, 300 }, + [283] = { 46.4, 36.5, 45, 300 }, + [284] = { 24.6, 36.5, 45, 300 }, + [285] = { 78.9, 35.1, 45, 300 }, + [286] = { 26.5, 34.1, 45, 300 }, + [287] = { 38.1, 34.1, 45, 300 }, + [288] = { 19.1, 33.1, 45, 300 }, + [289] = { 76.8, 32.6, 45, 300 }, + [290] = { 28.5, 32.4, 45, 300 }, + [291] = { 60.8, 31.6, 45, 300 }, + [292] = { 41.2, 31.1, 45, 300 }, + [293] = { 23.9, 29.6, 45, 300 }, + [294] = { 75.5, 28, 45, 300 }, + [295] = { 75.8, 28, 45, 300 }, + [296] = { 65, 27.5, 45, 300 }, + [297] = { 69.2, 27.4, 45, 300 }, + [298] = { 33.1, 25.8, 45, 300 }, + [299] = { 31.9, 22.7, 45, 300 }, + [300] = { 27.1, 19.1, 45, 300 }, + [301] = { 74.3, 86.7, 47, 300 }, + [302] = { 30.2, 73.2, 47, 300 }, + [303] = { 37.3, 70.3, 47, 300 }, + [304] = { 45.8, 69.1, 47, 300 }, + [305] = { 27.4, 69, 47, 300 }, + [306] = { 31.1, 68.8, 47, 300 }, + [307] = { 74.4, 66.1, 47, 300 }, + [308] = { 45.7, 64.3, 47, 300 }, + [309] = { 33.8, 63.9, 47, 300 }, + [310] = { 64.1, 63.2, 47, 300 }, + [311] = { 67.1, 62.2, 47, 300 }, + [312] = { 51, 60.3, 47, 300 }, + [313] = { 77.4, 59.4, 47, 300 }, + [314] = { 29.1, 58.5, 47, 300 }, + [315] = { 35.7, 57.7, 47, 300 }, + [316] = { 75.2, 57.5, 47, 300 }, + [317] = { 54.3, 55.5, 47, 300 }, + [318] = { 78.5, 53.3, 47, 300 }, + [319] = { 50.9, 53.2, 47, 300 }, + [320] = { 67.4, 53.1, 47, 300 }, + [321] = { 72.2, 52.4, 47, 300 }, + [322] = { 61.6, 52.3, 47, 300 }, + [323] = { 65.4, 52.1, 47, 300 }, + [324] = { 48.6, 48.8, 47, 300 }, + [325] = { 63.4, 43.5, 47, 300 }, + [326] = { 65.7, 41.7, 47, 300 }, + [327] = { 56.5, 39.4, 47, 300 }, + [328] = { 45.1, 39.2, 47, 300 }, + [329] = { 79.9, 78.5, 267, 300 }, + [330] = { 51.4, 5.4, 267, 300 }, + [331] = { 58.2, 2.7, 267, 300 }, + [332] = { 52.9, 0.9, 267, 300 }, + [333] = { 98, 46.1, 331, 300 }, + [334] = { 99.8, 30.8, 331, 300 }, + [335] = { 60.9, 75.6, 357, 300 }, + [336] = { 56.7, 75.2, 357, 300 }, + [337] = { 59.2, 74.4, 357, 300 }, + [338] = { 54, 73.1, 357, 300 }, + [339] = { 56.2, 69.6, 357, 300 }, + [340] = { 62.4, 68.6, 357, 300 }, + [341] = { 63.3, 68.2, 357, 300 }, + [342] = { 46, 67.2, 357, 300 }, + [343] = { 23.2, 66.4, 357, 300 }, + [344] = { 61.3, 65.9, 357, 300 }, + [345] = { 53.6, 64.8, 357, 300 }, + [346] = { 70.8, 64.8, 357, 300 }, + [347] = { 24.6, 64.7, 357, 300 }, + [348] = { 47.3, 63.4, 357, 300 }, + [349] = { 76.2, 62.6, 357, 300 }, + [350] = { 76.1, 62.2, 357, 300 }, + [351] = { 62, 59.5, 357, 300 }, + [352] = { 67.4, 59.5, 357, 300 }, + [353] = { 61.6, 59.4, 357, 300 }, + [354] = { 57.5, 59.1, 357, 300 }, + [355] = { 56.8, 59, 357, 300 }, + [356] = { 47.9, 58.7, 357, 300 }, + [357] = { 76.2, 58.6, 357, 300 }, + [358] = { 58.8, 58.5, 357, 300 }, + [359] = { 60.4, 57.5, 357, 300 }, + [360] = { 56.9, 56.9, 357, 300 }, + [361] = { 77.5, 56.4, 357, 300 }, + [362] = { 75.8, 55.8, 357, 300 }, + [363] = { 61.4, 55.4, 357, 300 }, + [364] = { 76.7, 54, 357, 300 }, + [365] = { 60.5, 52.1, 357, 300 }, + [366] = { 64.8, 52.1, 357, 300 }, + [367] = { 68.1, 51.6, 357, 300 }, + [368] = { 66.4, 51.2, 357, 300 }, + [369] = { 56.4, 50.2, 357, 300 }, + [370] = { 46, 50, 357, 300 }, + [371] = { 60.5, 48.6, 357, 300 }, + [372] = { 80.6, 46.8, 357, 300 }, + [373] = { 66.7, 46, 357, 300 }, + [374] = { 67.9, 45.9, 357, 300 }, + [375] = { 46.5, 45.8, 357, 300 }, + [376] = { 83.9, 45.6, 357, 300 }, + [377] = { 68.9, 41.9, 357, 300 }, + [378] = { 46, 41.4, 357, 300 }, + [379] = { 69, 37.8, 357, 300 }, + [380] = { 48.7, 37.2, 357, 300 }, + [381] = { 45.4, 35.8, 357, 300 }, + [382] = { 42.2, 35.7, 357, 300 }, + [383] = { 78, 35.4, 357, 300 }, + [384] = { 50.4, 35.3, 357, 300 }, + [385] = { 75.1, 35.2, 357, 300 }, + [386] = { 80, 35.1, 357, 300 }, + [387] = { 49.8, 35, 357, 300 }, + [388] = { 71.5, 34.7, 357, 300 }, + [389] = { 76.9, 33.6, 357, 300 }, + [390] = { 49, 31.7, 357, 300 }, + [391] = { 48.8, 31, 357, 300 }, + [392] = { 50.8, 30.5, 357, 300 }, + [393] = { 77.2, 30.2, 357, 300 }, + [394] = { 49.2, 26.9, 357, 300 }, + [395] = { 45, 26.1, 357, 300 }, + [396] = { 43, 25.7, 357, 300 }, + [397] = { 44.2, 25.6, 357, 300 }, + [398] = { 50.7, 25.5, 357, 300 }, + [399] = { 37.5, 25.4, 357, 300 }, + [400] = { 41, 24.9, 357, 300 }, + [401] = { 38.7, 24.9, 357, 300 }, + [402] = { 51.6, 24.9, 357, 300 }, + [403] = { 42.6, 23.2, 357, 300 }, + [404] = { 39.1, 22.2, 357, 300 }, + [405] = { 37.7, 20.5, 357, 300 }, + [406] = { 40.3, 20.3, 357, 300 }, + [407] = { 42.6, 19.1, 357, 300 }, + [408] = { 40.2, 16.6, 357, 300 }, + [409] = { 37.8, 15.5, 357, 300 }, + [410] = { 42.1, 14.3, 357, 300 }, + [411] = { 54.5, 11.1, 357, 300 }, + [412] = { 48.1, 11, 357, 300 }, + [413] = { 39.5, 8.6, 357, 300 }, + [414] = { 42.3, 8.5, 357, 300 }, + [415] = { 41.6, 7.8, 357, 300 }, + }, + }, + [2047] = { + ["coords"] = { + [1] = { 8.3, 95.9, 3, 600 }, + [2] = { 6.7, 95.4, 3, 600 }, + [3] = { 4.8, 94.1, 3, 300 }, + [4] = { 10.1, 92.9, 3, 600 }, + [5] = { 15.2, 92.1, 3, 300 }, + [6] = { 15, 92.1, 3, 300 }, + [7] = { 8.5, 90.6, 3, 600 }, + [8] = { 6.5, 90.2, 3, 600 }, + [9] = { 7.6, 89.8, 3, 600 }, + [10] = { 10.2, 89.6, 3, 600 }, + [11] = { 16.2, 88.1, 3, 300 }, + [12] = { 9.5, 88, 3, 600 }, + [13] = { 56.3, 87.7, 3, 300 }, + [14] = { 15.1, 85.8, 3, 300 }, + [15] = { 45.4, 84.6, 3, 300 }, + [16] = { 20.8, 82.2, 3, 300 }, + [17] = { 42.2, 82, 3, 300 }, + [18] = { 56, 81.9, 3, 300 }, + [19] = { 15.1, 81.7, 3, 300 }, + [20] = { 4, 80.4, 3, 300 }, + [21] = { 42.1, 78.8, 3, 300 }, + [22] = { 11.5, 77.9, 3, 300 }, + [23] = { 6.1, 77.3, 3, 300 }, + [24] = { 43.5, 74.1, 3, 300 }, + [25] = { 7.6, 73.3, 3, 300 }, + [26] = { 31.7, 72.6, 3, 300 }, + [27] = { 64, 68.8, 3, 300 }, + [28] = { 71.7, 67.2, 3, 300 }, + [29] = { 23.9, 66.4, 3, 300 }, + [30] = { 76, 66.2, 3, 300 }, + [31] = { 80.7, 65.6, 3, 300 }, + [32] = { 9.1, 65.4, 3, 300 }, + [33] = { 61.2, 64, 3, 300 }, + [34] = { 72.8, 61, 3, 300 }, + [35] = { 82.9, 59.8, 3, 300 }, + [36] = { 63, 56.3, 3, 300 }, + [37] = { 78.8, 55.7, 3, 300 }, + [38] = { 83.9, 54.8, 3, 300 }, + [39] = { 51.5, 52.9, 3, 300 }, + [40] = { 68.7, 51.1, 3, 300 }, + [41] = { 77.9, 48.7, 3, 300 }, + [42] = { 78.4, 46.1, 3, 300 }, + [43] = { 82.6, 44.9, 3, 300 }, + [44] = { 78.2, 43.8, 3, 300 }, + [45] = { 83.5, 39.9, 3, 300 }, + [46] = { 14.3, 39.8, 3, 300 }, + [47] = { 35.5, 39, 3, 300 }, + [48] = { 15.3, 37.9, 3, 300 }, + [49] = { 12.1, 35.1, 3, 300 }, + [50] = { 72.3, 34.5, 3, 300 }, + [51] = { 79.8, 33.4, 3, 300 }, + [52] = { 83.9, 33, 3, 300 }, + [53] = { 57.6, 60.1, 4, 300 }, + [54] = { 63, 58.1, 4, 300 }, + [55] = { 50.8, 57.6, 4, 300 }, + [56] = { 57.6, 52.2, 4, 300 }, + [57] = { 45.1, 51, 4, 300 }, + [58] = { 64.8, 50.1, 4, 300 }, + [59] = { 49.4, 48, 4, 300 }, + [60] = { 55.8, 44.3, 4, 300 }, + [61] = { 48.7, 43.7, 4, 600 }, + [62] = { 50.1, 43.7, 4, 600 }, + [63] = { 51.4, 42.4, 4, 300 }, + [64] = { 64.6, 41.2, 4, 300 }, + [65] = { 58.4, 40.5, 4, 300 }, + [66] = { 62.9, 36.8, 4, 300 }, + [67] = { 57.4, 36.7, 4, 300 }, + [68] = { 43.2, 36.3, 4, 300 }, + [69] = { 48.9, 35, 4, 300 }, + [70] = { 51.1, 33.3, 4, 300 }, + [71] = { 38.2, 33.2, 4, 300 }, + [72] = { 58.6, 33, 4, 300 }, + [73] = { 65.1, 32.2, 4, 600 }, + [74] = { 66.8, 32, 4, 600 }, + [75] = { 67.1, 31.8, 4, 600 }, + [76] = { 61.6, 31.5, 4, 300 }, + [77] = { 43.5, 30.8, 4, 300 }, + [78] = { 69.7, 30.7, 4, 300 }, + [79] = { 69, 30.2, 4, 600 }, + [80] = { 66, 29.9, 4, 600 }, + [81] = { 66.8, 29.8, 4, 600 }, + [82] = { 45.9, 29.3, 4, 300 }, + [83] = { 64.2, 29.2, 4, 300 }, + [84] = { 39.2, 28.5, 4, 300 }, + [85] = { 49.8, 27.5, 4, 300 }, + [86] = { 63.4, 25.1, 4, 300 }, + [87] = { 72.6, 19.1, 4, 600 }, + [88] = { 73.2, 17.2, 4, 600 }, + [89] = { 47.2, 16.8, 4, 300 }, + [90] = { 71.8, 16.8, 4, 600 }, + [91] = { 71.8, 15.5, 4, 600 }, + [92] = { 41.7, 15.3, 4, 300 }, + [93] = { 71, 14.5, 4, 600 }, + [94] = { 74, 13.9, 4, 600 }, + [95] = { 44.4, 13.7, 4, 300 }, + [96] = { 73.1, 11.8, 4, 600 }, + [97] = { 42.5, 10.7, 4, 300 }, + [98] = { 64.1, 86.9, 8, 600 }, + [99] = { 62.1, 84.5, 8, 600 }, + [100] = { 60.9, 83, 8, 600 }, + [101] = { 65.3, 82.1, 8, 600 }, + [102] = { 64, 79.1, 8, 600 }, + [103] = { 19.3, 77.4, 8, 300 }, + [104] = { 74.7, 59.8, 8, 300 }, + [105] = { 64.9, 57.5, 8, 300 }, + [106] = { 74.5, 49.9, 8, 300 }, + [107] = { 65.7, 49.4, 8, 300 }, + [108] = { 71.4, 44.9, 8, 300 }, + [109] = { 21.1, 35.6, 8, 300 }, + [110] = { 35.6, 29.3, 8, 300 }, + [111] = { 31.7, 28.5, 8, 300 }, + [112] = { 42.9, 27.3, 8, 300 }, + [113] = { 48.7, 26.7, 8, 300 }, + [114] = { 65.9, 9.8, 8, 300 }, + [115] = { 30.4, 7, 11, 300 }, + [116] = { 33.9, 5.8, 11, 300 }, + [117] = { 52.6, 85.5, 15, 300 }, + [118] = { 49.7, 84.2, 15, 300 }, + [119] = { 55.3, 83.9, 15, 300 }, + [120] = { 44.2, 82.3, 15, 300 }, + [121] = { 42, 82, 15, 300 }, + [122] = { 57.6, 80, 15, 300 }, + [123] = { 40.8, 77.7, 15, 300 }, + [124] = { 58.1, 75.6, 15, 300 }, + [125] = { 39.8, 74.8, 15, 300 }, + [126] = { 37.5, 74.4, 15, 300 }, + [127] = { 57.1, 71.7, 15, 300 }, + [128] = { 38, 69.6, 15, 600 }, + [129] = { 36.3, 69.5, 15, 600 }, + [130] = { 54.6, 68.8, 15, 300 }, + [131] = { 36.8, 68.6, 15, 600 }, + [132] = { 37.8, 68.6, 15, 600 }, + [133] = { 37.7, 67.8, 15, 600 }, + [134] = { 38.8, 67.6, 15, 600 }, + [135] = { 37, 67.1, 15, 600 }, + [136] = { 37.8, 67, 15, 600 }, + [137] = { 30.7, 22.3, 15, 600 }, + [138] = { 31.8, 21.4, 15, 600 }, + [139] = { 31.1, 20.9, 15, 600 }, + [140] = { 30.5, 20.3, 15, 600 }, + [141] = { 51.6, 98.8, 16, 300 }, + [142] = { 45.5, 96.1, 16, 300 }, + [143] = { 77.7, 92.8, 16, 300 }, + [144] = { 67, 91.8, 16, 300 }, + [145] = { 61.4, 91.7, 16, 300 }, + [146] = { 49.1, 91.5, 16, 300 }, + [147] = { 61.1, 89.2, 16, 300 }, + [148] = { 54.2, 88.5, 16, 300 }, + [149] = { 64.4, 86.8, 16, 300 }, + [150] = { 73.4, 86.4, 16, 300 }, + [151] = { 37.8, 85.8, 16, 300 }, + [152] = { 64, 85.5, 16, 300 }, + [153] = { 41.9, 84.5, 16, 300 }, + [154] = { 38.7, 78.4, 16, 300 }, + [155] = { 65.2, 77.5, 16, 300 }, + [156] = { 54.8, 76.9, 16, 300 }, + [157] = { 43.9, 74.9, 16, 300 }, + [158] = { 14.2, 74.3, 16, 300 }, + [159] = { 15.5, 71.3, 16, 300 }, + [160] = { 15.4, 68.2, 16, 300 }, + [161] = { 49.3, 67, 16, 300 }, + [162] = { 54.4, 64.8, 16, 300 }, + [163] = { 42.9, 62.8, 16, 300 }, + [164] = { 21.6, 61.8, 16, 300 }, + [165] = { 37, 61.6, 16, 300 }, + [166] = { 19.4, 60.9, 16, 300 }, + [167] = { 49.4, 59.8, 16, 300 }, + [168] = { 58.2, 57.8, 16, 300 }, + [169] = { 41, 57, 16, 300 }, + [170] = { 43.5, 53.1, 16, 300 }, + [171] = { 42.1, 51.5, 16, 300 }, + [172] = { 61.2, 50.1, 16, 300 }, + [173] = { 54.5, 49.1, 16, 300 }, + [174] = { 41.2, 47.3, 16, 300 }, + [175] = { 30.9, 45.6, 16, 300 }, + [176] = { 45.2, 45.4, 16, 300 }, + [177] = { 56.8, 44.8, 16, 300 }, + [178] = { 64.4, 42.2, 16, 300 }, + [179] = { 32.7, 41.7, 16, 300 }, + [180] = { 42.1, 40.5, 16, 300 }, + [181] = { 59.2, 40.3, 16, 300 }, + [182] = { 34.4, 39.6, 16, 300 }, + [183] = { 36.7, 36.4, 16, 300 }, + [184] = { 38.2, 33.4, 16, 300 }, + [185] = { 75.6, 31.7, 16, 300 }, + [186] = { 79.2, 31.4, 16, 300 }, + [187] = { 57.1, 31, 16, 300 }, + [188] = { 59.8, 28.6, 16, 300 }, + [189] = { 56.1, 28.4, 16, 300 }, + [190] = { 62.6, 26.3, 16, 300 }, + [191] = { 44.8, 26.1, 16, 300 }, + [192] = { 70.5, 22.3, 16, 300 }, + [193] = { 45, 21.5, 16, 300 }, + [194] = { 51.9, 20.3, 16, 300 }, + [195] = { 86.7, 19.5, 16, 300 }, + [196] = { 63.6, 19.4, 16, 300 }, + [197] = { 41.3, 19.3, 16, 300 }, + [198] = { 53.5, 19.1, 16, 300 }, + [199] = { 68.1, 18.9, 16, 300 }, + [200] = { 43.3, 17.6, 16, 300 }, + [201] = { 77.7, 15.6, 16, 300 }, + [202] = { 82.1, 15.6, 16, 300 }, + [203] = { 64.5, 14.4, 16, 300 }, + [204] = { 73.8, 12.6, 16, 300 }, + [205] = { 78.9, 9.4, 16, 300 }, + [206] = { 63.7, 9.4, 16, 300 }, + [207] = { 48.5, 97.1, 17, 300 }, + [208] = { 48.9, 97, 17, 300 }, + [209] = { 49.6, 96.6, 17, 300 }, + [210] = { 48.2, 96.4, 17, 300 }, + [211] = { 48.4, 96.2, 17, 300 }, + [212] = { 49.2, 96, 17, 300 }, + [213] = { 54.9, 92.5, 17, 300 }, + [214] = { 55.2, 90, 17, 600 }, + [215] = { 54.3, 90, 17, 600 }, + [216] = { 54.6, 89.5, 17, 600 }, + [217] = { 55.1, 89.5, 17, 600 }, + [218] = { 55, 89.1, 17, 600 }, + [219] = { 54.7, 88.7, 17, 600 }, + [220] = { 55.1, 88.7, 17, 600 }, + [221] = { 51.4, 65.5, 17, 600 }, + [222] = { 52, 65.1, 17, 600 }, + [223] = { 51.6, 64.8, 17, 600 }, + [224] = { 51.3, 64.5, 17, 600 }, + [225] = { 38.4, 82.9, 28, 300 }, + [226] = { 55.1, 80.5, 28, 300 }, + [227] = { 48, 79.7, 28, 300 }, + [228] = { 34.8, 79.7, 28, 300 }, + [229] = { 44.1, 79, 28, 300 }, + [230] = { 53.1, 76.9, 28, 300 }, + [231] = { 49.1, 76.3, 28, 300 }, + [232] = { 32.9, 74.6, 28, 300 }, + [233] = { 51.1, 74.3, 28, 300 }, + [234] = { 39.9, 73.3, 28, 300 }, + [235] = { 40.1, 73.1, 28, 300 }, + [236] = { 53.3, 71.2, 28, 300 }, + [237] = { 51.1, 70.3, 28, 300 }, + [238] = { 49.8, 69.1, 28, 300 }, + [239] = { 35.3, 68.5, 28, 300 }, + [240] = { 55.6, 67.9, 28, 300 }, + [241] = { 38.1, 67.6, 28, 300 }, + [242] = { 33, 67.2, 28, 300 }, + [243] = { 50.2, 67, 28, 300 }, + [244] = { 29.9, 65.8, 28, 300 }, + [245] = { 41.1, 65.4, 28, 300 }, + [246] = { 49.2, 63.8, 28, 300 }, + [247] = { 44.6, 62.5, 28, 300 }, + [248] = { 45.1, 62.2, 28, 300 }, + [249] = { 61.2, 61.9, 28, 300 }, + [250] = { 79.3, 60.6, 28, 300 }, + [251] = { 65.2, 60.5, 28, 300 }, + [252] = { 55.2, 60.4, 28, 300 }, + [253] = { 33.2, 58.7, 28, 300 }, + [254] = { 51.9, 57.9, 28, 300 }, + [255] = { 72.9, 55.1, 28, 300 }, + [256] = { 66.9, 54.2, 28, 300 }, + [257] = { 33.7, 53.5, 28, 300 }, + [258] = { 54.3, 52.5, 28, 300 }, + [259] = { 34.2, 51.8, 28, 300 }, + [260] = { 59.6, 50.8, 28, 300 }, + [261] = { 40.2, 48.7, 28, 300 }, + [262] = { 44.6, 47.3, 28, 300 }, + [263] = { 55.8, 44.6, 28, 300 }, + [264] = { 44.6, 42.5, 28, 300 }, + [265] = { 53.2, 41.2, 28, 300 }, + [266] = { 49.7, 40.4, 28, 300 }, + [267] = { 73.7, 39.8, 28, 300 }, + [268] = { 65, 38.7, 28, 600 }, + [269] = { 47.2, 38.4, 28, 300 }, + [270] = { 62.8, 37.8, 28, 600 }, + [271] = { 61.5, 37.7, 28, 600 }, + [272] = { 64, 37.7, 28, 600 }, + [273] = { 64.9, 36.6, 28, 300 }, + [274] = { 54.7, 36.3, 28, 300 }, + [275] = { 50.6, 33.4, 28, 300 }, + [276] = { 43.5, 33.3, 28, 300 }, + [277] = { 47.4, 27.8, 28, 300 }, + [278] = { 50.2, 24.8, 28, 300 }, + [279] = { 52.9, 21.8, 28, 300 }, + [280] = { 48.6, 20.5, 28, 300 }, + [281] = { 40.9, 14.3, 28, 300 }, + [282] = { 46.1, 11.9, 28, 600 }, + [283] = { 45, 11.1, 28, 300 }, + [284] = { 45.4, 10, 28, 600 }, + [285] = { 45.5, 8.7, 28, 600 }, + [286] = { 40.2, 85.4, 33, 300 }, + [287] = { 38.7, 82.8, 33, 300 }, + [288] = { 27.3, 81.7, 33, 300 }, + [289] = { 39.5, 81.6, 33, 300 }, + [290] = { 29.4, 80.4, 33, 300 }, + [291] = { 38.6, 80.1, 33, 300 }, + [292] = { 32.4, 75, 33, 300 }, + [293] = { 34.7, 72.5, 33, 300 }, + [294] = { 27.6, 63.1, 33, 300 }, + [295] = { 26.5, 62.6, 33, 300 }, + [296] = { 25.2, 61.8, 33, 300 }, + [297] = { 27.7, 61.3, 33, 300 }, + [298] = { 25.6, 60.3, 33, 300 }, + [299] = { 40.7, 51.9, 33, 300 }, + [300] = { 38.3, 49.9, 33, 300 }, + [301] = { 37.2, 49.5, 33, 300 }, + [302] = { 39.7, 49.4, 33, 300 }, + [303] = { 38.1, 49.1, 33, 300 }, + [304] = { 42.9, 48.9, 33, 600 }, + [305] = { 43.3, 48.5, 33, 600 }, + [306] = { 32.2, 45.8, 33, 300 }, + [307] = { 45.3, 45.4, 33, 300 }, + [308] = { 46.6, 45.2, 33, 300 }, + [309] = { 46.7, 43.1, 33, 300 }, + [310] = { 43.3, 42.5, 33, 300 }, + [311] = { 33.6, 41.8, 33, 300 }, + [312] = { 29.8, 41.4, 33, 300 }, + [313] = { 30.6, 39.6, 33, 300 }, + [314] = { 44.4, 39.3, 33, 300 }, + [315] = { 31.3, 38.1, 33, 300 }, + [316] = { 51.5, 28.7, 33, 600 }, + [317] = { 52.3, 28.1, 33, 600 }, + [318] = { 52.2, 26.7, 33, 600 }, + [319] = { 48.1, 6.5, 33, 600 }, + [320] = { 49.5, 6.5, 33, 600 }, + [321] = { 49.2, 5.6, 33, 600 }, + [322] = { 38.4, 96, 36, 600 }, + [323] = { 38.9, 93.9, 36, 600 }, + [324] = { 39.3, 92.1, 36, 600 }, + [325] = { 40.1, 91.3, 36, 600 }, + [326] = { 40.3, 88.6, 36, 600 }, + [327] = { 41, 86.9, 36, 600 }, + [328] = { 37, 73.7, 36, 300 }, + [329] = { 32.3, 65, 36, 300 }, + [330] = { 30.8, 56.5, 36, 300 }, + [331] = { 53.6, 50.6, 36, 600 }, + [332] = { 54.7, 49.1, 36, 600 }, + [333] = { 53.9, 48.6, 36, 600 }, + [334] = { 54.1, 46.5, 36, 600 }, + [335] = { 52.2, 46.1, 36, 600 }, + [336] = { 50.5, 45.5, 36, 600 }, + [337] = { 54, 45.3, 36, 600 }, + [338] = { 49.6, 44.5, 36, 600 }, + [339] = { 50.2, 43.4, 36, 600 }, + [340] = { 45.9, 41.8, 36, 300 }, + [341] = { 51.6, 41.7, 36, 300 }, + [342] = { 55.1, 40.6, 36, 300 }, + [343] = { 35.6, 39.7, 36, 300 }, + [344] = { 52.7, 36.8, 36, 300 }, + [345] = { 48.3, 34.3, 36, 600 }, + [346] = { 48, 32.7, 36, 600 }, + [347] = { 37.9, 32.5, 36, 300 }, + [348] = { 47.2, 16.1, 36, 300 }, + [349] = { 37.5, 90.5, 38, 600 }, + [350] = { 32, 90.4, 38, 600 }, + [351] = { 21.7, 91.9, 45, 300 }, + [352] = { 25.7, 90.6, 45, 300 }, + [353] = { 26.9, 87.8, 45, 300 }, + [354] = { 22.2, 85.4, 45, 300 }, + [355] = { 25.6, 85.2, 45, 300 }, + [356] = { 69.2, 82.2, 45, 300 }, + [357] = { 67.8, 80.5, 45, 300 }, + [358] = { 50.3, 80.4, 45, 300 }, + [359] = { 68.5, 79.6, 45, 300 }, + [360] = { 68.9, 79.1, 45, 300 }, + [361] = { 21.7, 75.4, 45, 300 }, + [362] = { 22.5, 74.5, 45, 300 }, + [363] = { 17.4, 71.7, 45, 300 }, + [364] = { 18.7, 71.6, 45, 300 }, + [365] = { 24.8, 71.5, 45, 300 }, + [366] = { 46.4, 71.2, 45, 300 }, + [367] = { 16, 70.8, 45, 300 }, + [368] = { 49.4, 70.6, 45, 300 }, + [369] = { 25.9, 70.5, 45, 300 }, + [370] = { 31.8, 70.2, 45, 300 }, + [371] = { 15.6, 67.6, 45, 300 }, + [372] = { 67.3, 66.5, 45, 300 }, + [373] = { 16, 64.2, 45, 300 }, + [374] = { 37.5, 63.5, 45, 300 }, + [375] = { 84.2, 33, 45, 300 }, + [376] = { 85.4, 32.8, 45, 300 }, + [377] = { 86.1, 31.9, 45, 300 }, + [378] = { 83.4, 31.6, 45, 300 }, + [379] = { 84.6, 30.9, 45, 300 }, + [380] = { 87.4, 30.8, 45, 300 }, + [381] = { 85.1, 30.2, 45, 300 }, + [382] = { 84.7, 28.7, 45, 300 }, + [383] = { 77.9, 22.5, 45, 300 }, + [384] = { 80, 19.5, 45, 300 }, + [385] = { 31.3, 70.9, 46, 300 }, + [386] = { 29.7, 70.5, 46, 300 }, + [387] = { 25.5, 69.9, 46, 300 }, + [388] = { 87, 69.4, 46, 300 }, + [389] = { 55.7, 67.6, 46, 300 }, + [390] = { 34.8, 66.7, 46, 300 }, + [391] = { 37.4, 64.2, 46, 300 }, + [392] = { 27, 64.2, 46, 300 }, + [393] = { 72, 64.1, 46, 300 }, + [394] = { 69.6, 63.3, 46, 300 }, + [395] = { 76.3, 63.2, 46, 300 }, + [396] = { 22, 63, 46, 300 }, + [397] = { 48.8, 62.6, 46, 300 }, + [398] = { 62.1, 62.1, 46, 300 }, + [399] = { 91.5, 61.3, 46, 300 }, + [400] = { 85.9, 61.2, 46, 300 }, + [401] = { 42.8, 60.1, 46, 300 }, + [402] = { 54.3, 60.1, 46, 300 }, + [403] = { 47.2, 59.4, 46, 300 }, + [404] = { 56.7, 59.3, 46, 300 }, + [405] = { 30.3, 58.6, 46, 300 }, + [406] = { 36.4, 58.2, 46, 300 }, + [407] = { 16.9, 58.1, 46, 300 }, + [408] = { 65, 57.9, 46, 300 }, + [409] = { 40.2, 56.4, 46, 300 }, + [410] = { 75, 56, 46, 300 }, + [411] = { 62.2, 54.9, 46, 300 }, + [412] = { 26.5, 54.8, 46, 300 }, + [413] = { 34.6, 54, 46, 300 }, + [414] = { 45.4, 53.4, 46, 300 }, + [415] = { 52.1, 53.2, 46, 300 }, + [416] = { 92.9, 52, 46, 300 }, + [417] = { 16.3, 50.6, 46, 300 }, + [418] = { 84.8, 48.8, 46, 300 }, + [419] = { 80.9, 48.5, 46, 600 }, + [420] = { 76.7, 47.4, 46, 600 }, + [421] = { 81.6, 46.7, 46, 300 }, + [422] = { 25.3, 46.2, 46, 300 }, + [423] = { 83.7, 46.1, 46, 600 }, + [424] = { 81.5, 45.7, 46, 600 }, + [425] = { 79.7, 45.7, 46, 600 }, + [426] = { 58.8, 45.3, 46, 300 }, + [427] = { 80.9, 44.8, 46, 600 }, + [428] = { 41.8, 44.8, 46, 300 }, + [429] = { 80.9, 44.1, 46, 600 }, + [430] = { 79.3, 44.1, 46, 600 }, + [431] = { 76.3, 44.1, 46, 600 }, + [432] = { 77.5, 44, 46, 600 }, + [433] = { 64.6, 44, 46, 300 }, + [434] = { 78.8, 43.9, 46, 600 }, + [435] = { 92.5, 43.8, 46, 300 }, + [436] = { 49, 43.7, 46, 300 }, + [437] = { 80.2, 42.9, 46, 600 }, + [438] = { 20.8, 42.7, 46, 300 }, + [439] = { 82.8, 42.4, 46, 600 }, + [440] = { 77.6, 42.2, 46, 300 }, + [441] = { 83.6, 41.6, 46, 300 }, + [442] = { 38, 41, 46, 300 }, + [443] = { 78.3, 41, 46, 600 }, + [444] = { 80.3, 40.7, 46, 600 }, + [445] = { 46.3, 40.3, 46, 300 }, + [446] = { 81.3, 40.1, 46, 300 }, + [447] = { 81.2, 40, 46, 600 }, + [448] = { 83.1, 39.3, 46, 600 }, + [449] = { 71.4, 39.3, 46, 300 }, + [450] = { 61, 38.6, 46, 300 }, + [451] = { 57.5, 37.9, 46, 300 }, + [452] = { 42.5, 37.4, 46, 300 }, + [453] = { 86, 37.1, 46, 300 }, + [454] = { 92.9, 36.9, 46, 300 }, + [455] = { 72.8, 36.5, 46, 300 }, + [456] = { 69.6, 36.2, 46, 300 }, + [457] = { 80.2, 35.4, 46, 300 }, + [458] = { 47.3, 33.5, 46, 300 }, + [459] = { 55.2, 33.3, 46, 300 }, + [460] = { 65.7, 32.8, 46, 300 }, + [461] = { 95.6, 31.8, 46, 300 }, + [462] = { 15, 30, 46, 300 }, + [463] = { 72.4, 29.7, 46, 300 }, + [464] = { 64.5, 29.2, 46, 300 }, + [465] = { 38.9, 28.2, 46, 300 }, + [466] = { 91.6, 27.7, 46, 300 }, + [467] = { 87.3, 26, 46, 300 }, + [468] = { 79.2, 25.3, 46, 300 }, + [469] = { 72.5, 24.3, 46, 300 }, + [470] = { 57.3, 24, 46, 300 }, + [471] = { 63.7, 24, 46, 300 }, + [472] = { 69, 23, 46, 600 }, + [473] = { 67.6, 22.6, 46, 600 }, + [474] = { 65.9, 21.4, 46, 300 }, + [475] = { 70.4, 20.4, 46, 600 }, + [476] = { 74.8, 19.8, 46, 300 }, + [477] = { 74.6, 19.8, 46, 300 }, + [478] = { 97.7, 11.2, 46, 300 }, + [479] = { 60.8, 89.1, 47, 300 }, + [480] = { 74, 87.3, 47, 300 }, + [481] = { 54.5, 83.4, 47, 300 }, + [482] = { 65.1, 83.3, 47, 300 }, + [483] = { 82.7, 81.5, 47, 300 }, + [484] = { 56.4, 80.6, 47, 300 }, + [485] = { 68.4, 77, 47, 300 }, + [486] = { 33.5, 76, 47, 300 }, + [487] = { 68.5, 74.8, 47, 300 }, + [488] = { 35.5, 74.8, 47, 300 }, + [489] = { 30.7, 74.6, 47, 300 }, + [490] = { 74.6, 74.5, 47, 300 }, + [491] = { 79.5, 74, 47, 300 }, + [492] = { 57.1, 73.6, 47, 300 }, + [493] = { 62.3, 72.5, 47, 300 }, + [494] = { 68.9, 72.3, 47, 300 }, + [495] = { 47.4, 70.6, 47, 300 }, + [496] = { 65.8, 69.4, 47, 300 }, + [497] = { 50.8, 69.3, 47, 300 }, + [498] = { 45.9, 69, 47, 300 }, + [499] = { 27.3, 69, 47, 300 }, + [500] = { 56.6, 68.6, 47, 300 }, + [501] = { 30.1, 68.3, 47, 300 }, + [502] = { 37.4, 68.2, 47, 300 }, + [503] = { 55.3, 67.3, 47, 300 }, + [504] = { 54.5, 67.2, 47, 300 }, + [505] = { 72.6, 66.6, 47, 300 }, + [506] = { 74.3, 66.3, 47, 300 }, + [507] = { 40.6, 65.9, 47, 300 }, + [508] = { 33.4, 65.9, 47, 300 }, + [509] = { 52.7, 65.8, 47, 300 }, + [510] = { 25.6, 65.8, 47, 300 }, + [511] = { 49.8, 65.3, 47, 300 }, + [512] = { 51.7, 65.2, 47, 300 }, + [513] = { 64.1, 64.9, 47, 300 }, + [514] = { 69.3, 64.3, 47, 300 }, + [515] = { 62.5, 64.2, 47, 300 }, + [516] = { 33.9, 64.1, 47, 300 }, + [517] = { 79.7, 63.6, 47, 300 }, + [518] = { 64.9, 63.2, 47, 300 }, + [519] = { 67.1, 62.2, 47, 300 }, + [520] = { 72.6, 61.9, 47, 300 }, + [521] = { 31.1, 60.8, 47, 300 }, + [522] = { 51, 60.4, 47, 300 }, + [523] = { 23.3, 59.8, 47, 300 }, + [524] = { 77.3, 59.5, 47, 300 }, + [525] = { 31.3, 59.4, 47, 300 }, + [526] = { 41.1, 59.2, 47, 300 }, + [527] = { 60.7, 57.9, 47, 300 }, + [528] = { 75.2, 57.1, 47, 300 }, + [529] = { 67.9, 55.5, 47, 300 }, + [530] = { 30.1, 55, 47, 300 }, + [531] = { 54.3, 54.4, 47, 300 }, + [532] = { 56, 54.2, 47, 300 }, + [533] = { 77.8, 53, 47, 300 }, + [534] = { 66.8, 52.4, 47, 300 }, + [535] = { 72.2, 52.4, 47, 300 }, + [536] = { 65.1, 52.3, 47, 300 }, + [537] = { 83, 50.4, 47, 300 }, + [538] = { 58.1, 49.5, 47, 300 }, + [539] = { 50, 48.2, 47, 300 }, + [540] = { 78.7, 48, 47, 300 }, + [541] = { 55.5, 44.9, 47, 300 }, + [542] = { 57.2, 44.6, 47, 300 }, + [543] = { 55.5, 44.4, 47, 300 }, + [544] = { 59.6, 43.7, 47, 300 }, + [545] = { 56.9, 43.7, 47, 300 }, + [546] = { 63.4, 43.6, 47, 300 }, + [547] = { 57.1, 43.4, 47, 300 }, + [548] = { 56.8, 43.1, 47, 300 }, + [549] = { 59.8, 42.7, 47, 300 }, + [550] = { 31.3, 42.5, 47, 300 }, + [551] = { 56.7, 42.5, 47, 300 }, + [552] = { 80.7, 42.4, 47, 300 }, + [553] = { 48.6, 42.1, 47, 300 }, + [554] = { 58.6, 41.7, 47, 300 }, + [555] = { 57.3, 41.3, 47, 300 }, + [556] = { 65.5, 41.2, 47, 300 }, + [557] = { 33.5, 41.2, 47, 300 }, + [558] = { 60.1, 41.2, 47, 300 }, + [559] = { 57.7, 40.6, 47, 300 }, + [560] = { 45.1, 39.5, 47, 300 }, + [561] = { 67.9, 38.2, 47, 300 }, + [562] = { 46.3, 37.8, 47, 300 }, + [563] = { 64.2, 36.6, 47, 300 }, + [564] = { 56.6, 35.6, 47, 300 }, + [565] = { 68.7, 34.6, 47, 300 }, + [566] = { 60.7, 34.4, 47, 300 }, + [567] = { 58.6, 27.7, 47, 300 }, + [568] = { 69.9, 27.2, 47, 300 }, + [569] = { 59, 23.2, 47, 300 }, + [570] = { 64.4, 22.1, 47, 300 }, + [571] = { 68.2, 19.8, 47, 300 }, + [572] = { 63.7, 16.9, 47, 300 }, + [573] = { 64.7, 15.4, 47, 300 }, + [574] = { 67.2, 14.6, 47, 300 }, + [575] = { 48.5, 99.6, 51, 300 }, + [576] = { 72.8, 94.2, 51, 300 }, + [577] = { 85.9, 86.4, 51, 600 }, + [578] = { 64.2, 82.4, 51, 300 }, + [579] = { 57.1, 81.6, 51, 300 }, + [580] = { 21.6, 79.6, 51, 300 }, + [581] = { 36.7, 78, 51, 300 }, + [582] = { 49.5, 75.9, 51, 300 }, + [583] = { 24.9, 75.9, 51, 300 }, + [584] = { 83.1, 75.5, 51, 300 }, + [585] = { 20.6, 74.5, 51, 300 }, + [586] = { 73.2, 73, 51, 300 }, + [587] = { 37.7, 71, 51, 300 }, + [588] = { 57.5, 68.4, 51, 300 }, + [589] = { 26.5, 66.2, 51, 300 }, + [590] = { 30.3, 65.8, 51, 300 }, + [591] = { 43.7, 65.6, 51, 300 }, + [592] = { 64, 63.3, 51, 300 }, + [593] = { 38.6, 63.2, 51, 300 }, + [594] = { 64.2, 59.8, 51, 300 }, + [595] = { 39.4, 56.2, 51, 300 }, + [596] = { 23.7, 53.3, 51, 300 }, + [597] = { 48.7, 51.7, 51, 300 }, + [598] = { 38.9, 51.5, 51, 300 }, + [599] = { 55, 51.2, 51, 300 }, + [600] = { 52, 49.5, 51, 300 }, + [601] = { 29.8, 49.3, 51, 300 }, + [602] = { 46.3, 47.8, 51, 300 }, + [603] = { 37.9, 45.9, 51, 300 }, + [604] = { 46.7, 44, 51, 300 }, + [605] = { 23.3, 43.7, 51, 300 }, + [606] = { 12.9, 42.9, 51, 300 }, + [607] = { 61.1, 42.8, 51, 300 }, + [608] = { 34.2, 42.2, 51, 300 }, + [609] = { 48.6, 41.9, 51, 300 }, + [610] = { 41.7, 41.6, 51, 300 }, + [611] = { 56.9, 41.2, 51, 300 }, + [612] = { 40.7, 39.2, 51, 300 }, + [613] = { 31.3, 39, 51, 300 }, + [614] = { 25.1, 38.1, 51, 300 }, + [615] = { 42.6, 37.5, 51, 300 }, + [616] = { 17.8, 37.3, 51, 300 }, + [617] = { 16.9, 36.8, 51, 300 }, + [618] = { 24, 36.6, 51, 300 }, + [619] = { 21.6, 36.5, 51, 300 }, + [620] = { 50.5, 36.1, 51, 300 }, + [621] = { 17.9, 34.4, 51, 300 }, + [622] = { 49.7, 33.6, 51, 300 }, + [623] = { 15.7, 32.4, 51, 300 }, + [624] = { 67.9, 32.3, 51, 300 }, + [625] = { 41.9, 31, 51, 300 }, + [626] = { 22.5, 31, 51, 300 }, + [627] = { 56, 30.6, 51, 300 }, + [628] = { 42.7, 28.7, 51, 300 }, + [629] = { 32.1, 27.1, 51, 300 }, + [630] = { 60.6, 25.8, 51, 300 }, + [631] = { 39.1, 25.1, 51, 300 }, + [632] = { 47.9, 24.7, 51, 300 }, + [633] = { 22.5, 24.4, 51, 300 }, + [634] = { 43.8, 21.6, 51, 300 }, + [635] = { 86.3, 78.2, 85, 300 }, + [636] = { 90, 66.5, 85, 300 }, + [637] = { 90.4, 64.9, 85, 300 }, + [638] = { 96.1, 61.9, 85, 300 }, + [639] = { 83.5, 88.2, 139, 600 }, + [640] = { 43.8, 88, 139, 300 }, + [641] = { 83.4, 87.8, 139, 600 }, + [642] = { 84.6, 85.6, 139, 600 }, + [643] = { 66.2, 84.7, 139, 300 }, + [644] = { 46.7, 84.3, 139, 300 }, + [645] = { 20.9, 84, 139, 300 }, + [646] = { 35.8, 83.2, 139, 300 }, + [647] = { 59, 82.2, 139, 300 }, + [648] = { 51.3, 80.9, 139, 300 }, + [649] = { 86.7, 80.5, 139, 600 }, + [650] = { 75.6, 80.2, 139, 300 }, + [651] = { 13.8, 78, 139, 300 }, + [652] = { 78.7, 77.9, 139, 600 }, + [653] = { 55.7, 77.6, 139, 300 }, + [654] = { 30.4, 75.6, 139, 300 }, + [655] = { 41.5, 75.4, 139, 300 }, + [656] = { 84.1, 74.4, 139, 600 }, + [657] = { 84.6, 74.4, 139, 600 }, + [658] = { 37.6, 73.7, 139, 300 }, + [659] = { 24.5, 73.5, 139, 300 }, + [660] = { 46.7, 71.6, 139, 300 }, + [661] = { 69, 71.4, 139, 300 }, + [662] = { 55.2, 71.3, 139, 300 }, + [663] = { 75.6, 69.9, 139, 300 }, + [664] = { 56.9, 69.2, 139, 600 }, + [665] = { 74, 67.1, 139, 600 }, + [666] = { 57.7, 67.1, 139, 600 }, + [667] = { 20.7, 67, 139, 300 }, + [668] = { 53.7, 65.8, 139, 600 }, + [669] = { 37.8, 65.7, 139, 300 }, + [670] = { 57.2, 64.7, 139, 600 }, + [671] = { 76.6, 64.3, 139, 600 }, + [672] = { 30.5, 64.2, 139, 300 }, + [673] = { 54.9, 64.1, 139, 600 }, + [674] = { 72.4, 63.3, 139, 600 }, + [675] = { 25.1, 62.7, 139, 300 }, + [676] = { 22.2, 61.5, 139, 300 }, + [677] = { 77.1, 61.3, 139, 600 }, + [678] = { 67.3, 61, 139, 300 }, + [679] = { 58.5, 61, 139, 300 }, + [680] = { 14.6, 61, 139, 300 }, + [681] = { 73.8, 60.7, 139, 600 }, + [682] = { 51.7, 59.2, 139, 300 }, + [683] = { 76.4, 58.1, 139, 600 }, + [684] = { 43.3, 51, 139, 600 }, + [685] = { 37, 50.9, 139, 600 }, + [686] = { 74.9, 50, 139, 300 }, + [687] = { 57.8, 49.4, 139, 300 }, + [688] = { 40.2, 47.2, 139, 600 }, + [689] = { 71.3, 45.5, 139, 300 }, + [690] = { 80.8, 45.1, 139, 600 }, + [691] = { 87.8, 43.9, 139, 600 }, + [692] = { 52.3, 43.8, 139, 300 }, + [693] = { 44.9, 43.7, 139, 300 }, + [694] = { 32.5, 43, 139, 300 }, + [695] = { 81.3, 41.3, 139, 600 }, + [696] = { 68.7, 40.7, 139, 300 }, + [697] = { 39.1, 39.4, 139, 300 }, + [698] = { 22.7, 38.6, 139, 300 }, + [699] = { 66.6, 38.5, 139, 300 }, + [700] = { 83.7, 36.2, 139, 600 }, + [701] = { 33.1, 32.3, 139, 300 }, + [702] = { 64.5, 32, 139, 300 }, + [703] = { 28.4, 30, 139, 300 }, + [704] = { 61.8, 29.9, 139, 300 }, + [705] = { 68.4, 26.5, 139, 300 }, + [706] = { 61.8, 25.4, 139, 300 }, + [707] = { 23.2, 24.1, 139, 300 }, + [708] = { 36.3, 22.9, 139, 300 }, + [709] = { 65.4, 22.6, 139, 600 }, + [710] = { 73.3, 18.1, 139, 600 }, + [711] = { 42.5, 32.4, 267, 600 }, + [712] = { 42.9, 30.6, 267, 600 }, + [713] = { 43.2, 29, 267, 600 }, + [714] = { 43.9, 28.3, 267, 600 }, + [715] = { 44.1, 26, 267, 600 }, + [716] = { 44.7, 24.5, 267, 600 }, + [717] = { 41.2, 12.9, 267, 300 }, + [718] = { 37.1, 5.4, 267, 300 }, + [719] = { 99.9, 42.6, 331, 300 }, + [720] = { 60.3, 84.4, 357, 300 }, + [721] = { 59.4, 74.1, 357, 300 }, + [722] = { 25.4, 73.1, 357, 300 }, + [723] = { 54.1, 73, 357, 300 }, + [724] = { 27.3, 69.5, 357, 300 }, + [725] = { 45.4, 69.4, 357, 300 }, + [726] = { 27.7, 69.4, 357, 300 }, + [727] = { 63, 69.4, 357, 300 }, + [728] = { 62, 69.4, 357, 300 }, + [729] = { 62.4, 69.3, 357, 300 }, + [730] = { 64.1, 69, 357, 300 }, + [731] = { 26, 68.9, 357, 300 }, + [732] = { 27.9, 68.4, 357, 300 }, + [733] = { 26.7, 68.3, 357, 300 }, + [734] = { 28.5, 67.9, 357, 300 }, + [735] = { 62.2, 67.8, 357, 300 }, + [736] = { 60.6, 65.7, 357, 300 }, + [737] = { 47.2, 63.6, 357, 300 }, + [738] = { 69.2, 62.2, 357, 300 }, + [739] = { 52.2, 61.5, 357, 300 }, + [740] = { 51.5, 60.4, 357, 300 }, + [741] = { 52.4, 59.8, 357, 300 }, + [742] = { 51.5, 58.9, 357, 300 }, + [743] = { 50.2, 58.4, 357, 300 }, + [744] = { 72.9, 56.5, 357, 300 }, + [745] = { 69.4, 56, 357, 300 }, + [746] = { 71.9, 53, 357, 300 }, + [747] = { 64.9, 52.1, 357, 300 }, + [748] = { 57.5, 47, 357, 300 }, + [749] = { 50.4, 35.6, 357, 300 }, + [750] = { 54.4, 34.2, 357, 300 }, + [751] = { 55.4, 33.6, 357, 300 }, + [752] = { 54.9, 32.9, 357, 300 }, + [753] = { 55.7, 32.8, 357, 300 }, + [754] = { 54.1, 32.4, 357, 300 }, + [755] = { 53.3, 32, 357, 300 }, + [756] = { 37.8, 31.9, 357, 300 }, + [757] = { 34.7, 31.1, 357, 300 }, + [758] = { 50.8, 30.6, 357, 300 }, + [759] = { 44.2, 25.6, 357, 300 }, + [760] = { 38.7, 24.9, 357, 300 }, + [761] = { 51.6, 24.8, 357, 300 }, + [762] = { 37.7, 20.5, 357, 300 }, + [763] = { 52.1, 16.4, 357, 300 }, + [764] = { 42.1, 16.2, 357, 300 }, + [765] = { 17.8, 42.3, 400, 300 }, + [766] = { 42.3, 33.5, 400, 300 }, + [767] = { 43.2, 33.2, 400, 300 }, + [768] = { 44.7, 32.3, 400, 300 }, + [769] = { 11.1, 32.2, 400, 300 }, + [770] = { 41.7, 31.8, 400, 300 }, + [771] = { 42.1, 31.4, 400, 300 }, + [772] = { 43.8, 30.8, 400, 300 }, + [773] = { 36.2, 92.4, 405, 300 }, + [774] = { 38.4, 91, 405, 300 }, + [775] = { 36.1, 86.5, 405, 300 }, + [776] = { 50.7, 85.7, 405, 300 }, + [777] = { 39.4, 85.4, 405, 300 }, + [778] = { 67.9, 84.4, 405, 300 }, + [779] = { 48.4, 84.2, 405, 300 }, + [780] = { 24.7, 82.4, 405, 300 }, + [781] = { 46.3, 82.4, 405, 300 }, + [782] = { 50.3, 82.3, 405, 300 }, + [783] = { 32.4, 82.1, 405, 300 }, + [784] = { 35, 80.6, 405, 300 }, + [785] = { 29.6, 80.2, 405, 300 }, + [786] = { 54.8, 79.6, 405, 300 }, + [787] = { 54.9, 79.5, 405, 300 }, + [788] = { 48.1, 78.9, 405, 300 }, + [789] = { 27.1, 78.7, 405, 300 }, + [790] = { 47.7, 76.6, 405, 300 }, + [791] = { 74.5, 76.4, 405, 300 }, + [792] = { 71.4, 76.2, 405, 300 }, + [793] = { 76.5, 75.4, 405, 300 }, + [794] = { 54.9, 74.4, 405, 300 }, + [795] = { 49.5, 74.2, 405, 300 }, + [796] = { 27.9, 74.1, 405, 300 }, + [797] = { 30.5, 74, 405, 300 }, + [798] = { 57.3, 73.4, 405, 300 }, + [799] = { 55.8, 73.1, 405, 300 }, + [800] = { 75, 67.6, 405, 300 }, + [801] = { 34.5, 67.2, 405, 600 }, + [802] = { 31.2, 65.9, 405, 300 }, + [803] = { 33.3, 65.6, 405, 300 }, + [804] = { 31.9, 65.2, 405, 300 }, + [805] = { 31.9, 65, 405, 600 }, + [806] = { 33.8, 63.3, 405, 600 }, + [807] = { 28.6, 63.1, 405, 600 }, + [808] = { 31.2, 62.2, 405, 300 }, + [809] = { 29.4, 62, 405, 600 }, + [810] = { 31.1, 62, 405, 600 }, + [811] = { 33, 61.6, 405, 300 }, + [812] = { 29.1, 61.6, 405, 600 }, + [813] = { 33.6, 61, 405, 600 }, + [814] = { 36.3, 60.5, 405, 600 }, + [815] = { 34.9, 60.2, 405, 300 }, + [816] = { 29.7, 59.7, 405, 600 }, + [817] = { 31.5, 59.4, 405, 300 }, + [818] = { 30, 59.3, 405, 600 }, + [819] = { 32.1, 58.9, 405, 300 }, + [820] = { 29.3, 58.4, 405, 600 }, + [821] = { 28.5, 58.4, 405, 300 }, + [822] = { 30.2, 58.3, 405, 300 }, + [823] = { 27.1, 58.2, 405, 600 }, + [824] = { 29.2, 57.7, 405, 600 }, + [825] = { 29.2, 56.2, 405, 600 }, + [826] = { 28, 54.1, 405, 600 }, + [827] = { 33.1, 53.2, 405, 300 }, + [828] = { 30.8, 52.9, 405, 300 }, + [829] = { 32.9, 52.9, 405, 300 }, + [830] = { 31.7, 51.9, 405, 300 }, + [831] = { 38.7, 46.6, 405, 300 }, + [832] = { 35.8, 37.2, 405, 300 }, + [833] = { 35.6, 31.8, 405, 300 }, + [834] = { 78.2, 26.7, 405, 300 }, + [835] = { 74.9, 18.2, 405, 300 }, + [836] = { 34.8, 16.8, 405, 300 }, + [837] = { 36.8, 15.9, 405, 300 }, + [838] = { 34, 14.7, 405, 300 }, + [839] = { 75.2, 14.1, 405, 300 }, + [840] = { 75.2, 10.8, 405, 300 }, + [841] = { 30.6, 10.2, 405, 300 }, + [842] = { 34.8, 8.4, 405, 300 }, + [843] = { 33.3, 7.9, 405, 300 }, + [844] = { 35.6, 6.2, 405, 300 }, + [845] = { 61.5, 0.5, 405, 300 }, + [846] = { 49, 88.7, 406, 300 }, + [847] = { 49, 85.7, 406, 300 }, + [848] = { 36.4, 76.2, 406, 300 }, + [849] = { 33.6, 75.7, 406, 300 }, + [850] = { 29, 73.7, 406, 300 }, + [851] = { 37.8, 69.2, 406, 300 }, + [852] = { 34.9, 66.7, 406, 300 }, + [853] = { 29.8, 66.3, 406, 300 }, + [854] = { 38, 65.2, 406, 300 }, + [855] = { 27.1, 63.2, 406, 300 }, + [856] = { 35.9, 61.4, 406, 300 }, + [857] = { 30.1, 59.8, 406, 300 }, + [858] = { 32.6, 58.9, 406, 300 }, + [859] = { 35.4, 46.8, 406, 300 }, + [860] = { 34.7, 80.3, 440, 300 }, + [861] = { 31.6, 79.4, 440, 300 }, + [862] = { 34.5, 77.9, 440, 300 }, + [863] = { 28.9, 77.1, 440, 300 }, + [864] = { 55.2, 75.9, 440, 600 }, + [865] = { 28.2, 74.5, 440, 300 }, + [866] = { 56.6, 73.4, 440, 600 }, + [867] = { 55.4, 73, 440, 600 }, + [868] = { 28.2, 72.3, 440, 300 }, + [869] = { 53.6, 72.2, 440, 600 }, + [870] = { 57.8, 71.9, 440, 600 }, + [871] = { 56, 71.4, 440, 600 }, + [872] = { 28.8, 70.7, 440, 300 }, + [873] = { 57.7, 70.3, 440, 600 }, + [874] = { 57.2, 70.2, 440, 600 }, + [875] = { 27.3, 70.1, 440, 300 }, + [876] = { 55.5, 69.9, 440, 600 }, + [877] = { 56.8, 69.6, 440, 600 }, + [878] = { 29.7, 68.8, 440, 300 }, + [879] = { 57.3, 68.6, 440, 600 }, + [880] = { 57.1, 68.2, 440, 300 }, + [881] = { 29.7, 67.9, 440, 300 }, + [882] = { 59.2, 67.8, 440, 300 }, + [883] = { 56.9, 67.7, 440, 600 }, + [884] = { 31.9, 66.7, 440, 300 }, + [885] = { 26.8, 65.6, 440, 300 }, + [886] = { 29.4, 64.8, 440, 300 }, + [887] = { 31.2, 64.5, 440, 300 }, + [888] = { 30.9, 63.4, 440, 300 }, + [889] = { 60, 63.3, 440, 300 }, + [890] = { 61.9, 63.2, 440, 300 }, + [891] = { 63.7, 62.5, 440, 300 }, + [892] = { 28.2, 62.1, 440, 300 }, + [893] = { 41.4, 58, 440, 300 }, + [894] = { 62.5, 57.3, 440, 300 }, + [895] = { 41.7, 57.1, 440, 300 }, + [896] = { 45.5, 55.1, 440, 300 }, + [897] = { 41.3, 54.4, 440, 300 }, + [898] = { 59.8, 53.8, 440, 300 }, + [899] = { 28.2, 53.4, 440, 300 }, + [900] = { 64, 53.3, 440, 300 }, + [901] = { 37, 51.4, 440, 300 }, + [902] = { 62.7, 48.5, 440, 300 }, + [903] = { 31.9, 48.4, 440, 600 }, + [904] = { 33.4, 48, 440, 600 }, + [905] = { 29.7, 47.6, 440, 300 }, + [906] = { 64.4, 47.1, 440, 300 }, + [907] = { 71.9, 47, 440, 300 }, + [908] = { 35.1, 46.8, 440, 600 }, + [909] = { 33.5, 46.6, 440, 600 }, + [910] = { 33.6, 45.9, 440, 600 }, + [911] = { 32, 45.8, 440, 600 }, + [912] = { 33.2, 45.7, 440, 600 }, + [913] = { 30.9, 45.6, 440, 600 }, + [914] = { 32.9, 44.4, 440, 600 }, + [915] = { 32.2, 44.1, 440, 600 }, + [916] = { 30.9, 43.9, 440, 600 }, + [917] = { 35.4, 43.3, 440, 900 }, + [918] = { 33.1, 42.7, 440, 900 }, + [919] = { 35.1, 42.3, 440, 900 }, + [920] = { 33.4, 41.6, 440, 900 }, + [921] = { 34.5, 40.3, 440, 900 }, + [922] = { 33.4, 37.6, 440, 300 }, + [923] = { 32.8, 34.8, 440, 300 }, + [924] = { 36.7, 33.3, 440, 300 }, + [925] = { 34.2, 32.6, 440, 300 }, + [926] = { 67.5, 31.9, 440, 300 }, + [927] = { 46.7, 29.7, 440, 300 }, + [928] = { 37, 28.2, 440, 300 }, + [929] = { 38.2, 27.2, 440, 300 }, + [930] = { 34.3, 26.8, 440, 300 }, + [931] = { 57.4, 26.3, 440, 300 }, + [932] = { 43.9, 25.9, 440, 300 }, + [933] = { 32.3, 24.5, 440, 300 }, + [934] = { 54.3, 24.5, 440, 300 }, + [935] = { 48.6, 23.7, 440, 300 }, + [936] = { 47.2, 23.7, 440, 300 }, + [937] = { 31.5, 22.9, 440, 300 }, + [938] = { 55.5, 92.6, 490, 300 }, + [939] = { 50.7, 89.9, 490, 300 }, + [940] = { 44.3, 88.5, 490, 300 }, + [941] = { 49, 86.9, 490, 300 }, + [942] = { 54.4, 86.8, 490, 300 }, + [943] = { 75.7, 85.1, 490, 300 }, + [944] = { 61.7, 84.9, 490, 300 }, + [945] = { 78, 81.4, 490, 600 }, + [946] = { 37.8, 81.1, 490, 300 }, + [947] = { 31.1, 80.8, 490, 300 }, + [948] = { 64.8, 80.3, 490, 300 }, + [949] = { 77.9, 78.2, 490, 600 }, + [950] = { 39, 77.5, 490, 300 }, + [951] = { 50.6, 76, 490, 300 }, + [952] = { 30.7, 74.7, 490, 300 }, + [953] = { 82.6, 73.8, 490, 900 }, + [954] = { 50.3, 71.1, 490, 300 }, + [955] = { 73.6, 70.4, 490, 300 }, + [956] = { 28.4, 70.3, 490, 300 }, + [957] = { 39, 70.2, 490, 300 }, + [958] = { 34.1, 69.3, 490, 300 }, + [959] = { 48.7, 66.5, 490, 300 }, + [960] = { 63.1, 66.5, 490, 300 }, + [961] = { 82.5, 66.4, 490, 300 }, + [962] = { 61, 66.2, 490, 300 }, + [963] = { 59.4, 65.4, 490, 300 }, + [964] = { 52.3, 64.9, 490, 300 }, + [965] = { 55.4, 64.8, 490, 300 }, + [966] = { 45.5, 64.8, 490, 300 }, + [967] = { 40.9, 64.8, 490, 300 }, + [968] = { 37.8, 64.5, 490, 300 }, + [969] = { 76.5, 61.6, 490, 300 }, + [970] = { 81.5, 61.2, 490, 300 }, + [971] = { 21.8, 60.9, 490, 300 }, + [972] = { 78.9, 57.7, 490, 300 }, + [973] = { 84.1, 57, 490, 300 }, + [974] = { 46, 53, 490, 300 }, + [975] = { 53.9, 51.9, 490, 300 }, + [976] = { 76.8, 49.5, 490, 300 }, + [977] = { 32.9, 49.2, 490, 300 }, + [978] = { 51.4, 48.1, 490, 300 }, + [979] = { 54, 46.6, 490, 300 }, + [980] = { 84.2, 46.2, 490, 300 }, + [981] = { 10.3, 45.9, 490, 300 }, + [982] = { 46.6, 44.9, 490, 300 }, + [983] = { 20.8, 42.4, 490, 300 }, + [984] = { 80.6, 42, 490, 300 }, + [985] = { 25.5, 39.8, 490, 300 }, + [986] = { 75.3, 39.6, 490, 300 }, + [987] = { 79, 39.1, 490, 300 }, + [988] = { 14.1, 37.5, 490, 300 }, + [989] = { 9, 37.5, 490, 300 }, + [990] = { 37.8, 35.3, 490, 300 }, + [991] = { 40.9, 35.3, 490, 300 }, + [992] = { 55.4, 35.2, 490, 300 }, + [993] = { 45.4, 35.2, 490, 300 }, + [994] = { 60, 34.9, 490, 300 }, + [995] = { 63.1, 33.4, 490, 300 }, + [996] = { 75.5, 33.1, 490, 300 }, + [997] = { 52.2, 32, 490, 300 }, + [998] = { 11.8, 27.8, 490, 300 }, + [999] = { 71.6, 24.4, 490, 300 }, + [1000] = { 34.7, 20.9, 490, 300 }, + [1001] = { 69.8, 19.2, 490, 300 }, + [1002] = { 62.7, 18.2, 490, 300 }, + [1003] = { 68.9, 17.8, 490, 600 }, + [1004] = { 66.2, 17.7, 490, 600 }, + [1005] = { 67.7, 16.8, 490, 600 }, + [1006] = { 63.8, 16.2, 490, 600 }, + [1007] = { 68.6, 15.9, 490, 600 }, + [1008] = { 43.5, 15.7, 490, 300 }, + [1009] = { 66.7, 15.6, 490, 600 }, + [1010] = { 69.2, 15.6, 490, 600 }, + [1011] = { 39.1, 15.4, 490, 300 }, + [1012] = { 57.3, 15.4, 490, 300 }, + [1013] = { 68.3, 14.3, 490, 600 }, + [1014] = { 65.3, 14.2, 490, 600 }, + [1015] = { 66.3, 13.6, 490, 600 }, + [1016] = { 67.4, 13.6, 490, 600 }, + [1017] = { 50.1, 13.3, 490, 300 }, + [1018] = { 56.6, 11.7, 490, 300 }, + [1019] = { 53.5, 89.2, 618, 600 }, + [1020] = { 57.7, 83, 618, 600 }, + [1021] = { 60.6, 82, 618, 300 }, + [1022] = { 71.2, 81.2, 618, 300 }, + [1023] = { 65.5, 79.5, 618, 600 }, + [1024] = { 59.5, 77.6, 618, 600 }, + [1025] = { 56.6, 77.6, 618, 600 }, + [1026] = { 59, 75.1, 618, 300 }, + [1027] = { 57.4, 72.5, 618, 300 }, + [1028] = { 66.1, 71.8, 618, 300 }, + [1029] = { 62.8, 71.1, 618, 600 }, + [1030] = { 64.6, 70.4, 618, 600 }, + [1031] = { 66.2, 69.2, 618, 300 }, + [1032] = { 61.3, 68.9, 618, 600 }, + [1033] = { 64.8, 68, 618, 600 }, + [1034] = { 59.4, 67.8, 618, 600 }, + [1035] = { 63.2, 67.7, 618, 600 }, + [1036] = { 56.9, 67.3, 618, 300 }, + [1037] = { 66.3, 61.5, 618, 600 }, + [1038] = { 57.8, 61.1, 618, 300 }, + [1039] = { 64.6, 60.8, 618, 600 }, + [1040] = { 66.7, 60.1, 618, 600 }, + [1041] = { 65.7, 58.8, 618, 600 }, + [1042] = { 52.3, 55.7, 618, 600 }, + [1043] = { 54.3, 55.4, 618, 600 }, + [1044] = { 65.5, 55.3, 618, 300 }, + [1045] = { 56, 53.8, 618, 300 }, + [1046] = { 55.2, 50.7, 618, 600 }, + [1047] = { 55.7, 50.6, 618, 600 }, + [1048] = { 54.1, 50.4, 618, 600 }, + [1049] = { 56.9, 50.4, 618, 600 }, + [1050] = { 55.7, 48.9, 618, 600 }, + [1051] = { 29.6, 47.1, 618, 300 }, + [1052] = { 58.4, 46.6, 618, 300 }, + [1053] = { 32.5, 45.2, 618, 300 }, + [1054] = { 46.4, 44.6, 618, 300 }, + [1055] = { 40.5, 44.5, 618, 300 }, + [1056] = { 53.3, 44.4, 618, 600 }, + [1057] = { 49.1, 44.4, 618, 600 }, + [1058] = { 34.9, 44.3, 618, 300 }, + [1059] = { 44.8, 44.3, 618, 300 }, + [1060] = { 41.9, 43.8, 618, 300 }, + [1061] = { 50.3, 43.7, 618, 600 }, + [1062] = { 56.8, 43.7, 618, 600 }, + [1063] = { 69.6, 41.8, 618, 600 }, + [1064] = { 67.7, 41.5, 618, 600 }, + [1065] = { 70.9, 40.4, 618, 600 }, + [1066] = { 69.1, 39.8, 618, 600 }, + [1067] = { 70.2, 39.8, 618, 600 }, + [1068] = { 70.8, 39.7, 618, 600 }, + [1069] = { 52.1, 39.5, 618, 600 }, + [1070] = { 54, 39, 618, 600 }, + [1071] = { 37, 38.9, 618, 300 }, + [1072] = { 31.5, 38.8, 618, 300 }, + [1073] = { 69.7, 38.6, 618, 600 }, + [1074] = { 67.7, 38.6, 618, 600 }, + [1075] = { 69.4, 38.5, 618, 600 }, + [1076] = { 44.1, 37.8, 618, 300 }, + [1077] = { 66.5, 37.5, 618, 600 }, + [1078] = { 70.7, 37.3, 618, 600 }, + [1079] = { 68.8, 37.3, 618, 600 }, + [1080] = { 33.5, 36.6, 618, 300 }, + [1081] = { 53.6, 36.4, 618, 300 }, + [1082] = { 40.4, 36.4, 618, 300 }, + [1083] = { 47.8, 35.7, 618, 300 }, + [1084] = { 68, 35.6, 618, 600 }, + [1085] = { 30.9, 35.4, 618, 300 }, + [1086] = { 37.4, 35.2, 618, 300 }, + [1087] = { 45.4, 34.9, 618, 300 }, + [1088] = { 42.8, 33.6, 618, 300 }, + [1089] = { 57.3, 32.8, 618, 300 }, + [1090] = { 64.6, 29.7, 618, 300 }, + [1091] = { 55, 27.1, 618, 300 }, + [1092] = { 63.6, 25.6, 618, 300 }, + [1093] = { 56.3, 25.6, 618, 300 }, + [1094] = { 52.3, 24.6, 618, 300 }, + [1095] = { 50.6, 23.6, 618, 300 }, + [1096] = { 55.1, 20.9, 618, 300 }, + [1097] = { 66.2, 18.5, 618, 300 }, + [1098] = { 50.4, 16.8, 618, 600 }, + [1099] = { 60.6, 15.9, 618, 300 }, + [1100] = { 55.9, 15.8, 618, 300 }, + [1101] = { 55.9, 14.6, 618, 600 }, + [1102] = { 49.3, 14.3, 618, 600 }, + [1103] = { 54.8, 10.5, 618, 600 }, + [1104] = { 48.2, 8.8, 618, 600 }, + [1105] = { 33.3, 91.3, 1377, 300 }, + [1106] = { 53.2, 90.8, 1377, 300 }, + [1107] = { 40.4, 90.7, 1377, 300 }, + [1108] = { 47.2, 90.2, 1377, 300 }, + [1109] = { 22.3, 90.2, 1377, 300 }, + [1110] = { 17.1, 89.9, 1377, 300 }, + [1111] = { 15.9, 88.3, 1377, 300 }, + [1112] = { 42.7, 83.8, 1377, 300 }, + [1113] = { 32.3, 83.8, 1377, 300 }, + [1114] = { 66.9, 81.5, 1377, 300 }, + [1115] = { 40.4, 79.9, 1377, 300 }, + [1116] = { 43.7, 78.5, 1377, 300 }, + [1117] = { 17.6, 78.4, 1377, 300 }, + [1118] = { 44.2, 78, 1377, 300 }, + [1119] = { 19.7, 76.1, 1377, 300 }, + [1120] = { 23.1, 76, 1377, 300 }, + [1121] = { 26.9, 72.2, 1377, 300 }, + [1122] = { 65.8, 71, 1377, 300 }, + [1123] = { 36.9, 71, 1377, 300 }, + [1124] = { 23.1, 69.3, 1377, 300 }, + [1125] = { 17.4, 66.8, 1377, 300 }, + [1126] = { 41.5, 66.8, 1377, 300 }, + [1127] = { 80.7, 65, 1377, 300 }, + [1128] = { 65.4, 65, 1377, 300 }, + [1129] = { 48.2, 61.9, 1377, 300 }, + [1130] = { 37.7, 61.1, 1377, 300 }, + [1131] = { 54.7, 60.6, 1377, 300 }, + [1132] = { 62, 58.6, 1377, 300 }, + [1133] = { 64.9, 58.4, 1377, 300 }, + [1134] = { 18.8, 56.4, 1377, 300 }, + [1135] = { 53.8, 51, 1377, 300 }, + [1136] = { 68.4, 49.1, 1377, 300 }, + [1137] = { 49.5, 48.7, 1377, 300 }, + [1138] = { 63.4, 48.3, 1377, 300 }, + [1139] = { 55.2, 46.4, 1377, 300 }, + [1140] = { 79.7, 45.4, 1377, 300 }, + [1141] = { 33.4, 41.7, 1377, 300 }, + [1142] = { 23.3, 40.8, 1377, 300 }, + [1143] = { 72.5, 40.2, 1377, 300 }, + [1144] = { 67.1, 40.1, 1377, 300 }, + [1145] = { 56.2, 38.1, 1377, 300 }, + [1146] = { 42.6, 36.9, 1377, 300 }, + [1147] = { 62.4, 33, 1377, 300 }, + [1148] = { 70.1, 29.9, 1377, 300 }, + [1149] = { 21.1, 28, 1377, 300 }, + [1150] = { 24.9, 25.7, 1377, 300 }, + [1151] = { 67.1, 24.6, 1377, 300 }, + [1152] = { 28.8, 22.6, 1377, 300 }, + [1153] = { 17.6, 22.5, 1377, 300 }, + [1154] = { 58.3, 21.3, 1377, 300 }, + [1155] = { 31.3, 20.1, 1377, 300 }, + [1156] = { 52.2, 19.9, 1377, 300 }, + [1157] = { 26, 15.8, 1377, 300 }, + [1158] = { 37, 13.7, 1377, 300 }, + [1159] = { 52, 12.4, 1377, 300 }, + [1160] = { 62.7, 12.1, 1377, 300 }, + }, + }, + [2048] = { + ["coords"] = { + [1] = { 64.8, 79.2, 130, 7200 }, + [2] = { 10.6, 44.5, 267, 7200 }, + }, + }, + [2049] = { + ["coords"] = { + [1] = { 64.8, 79.1, 130, 7200 }, + [2] = { 10.6, 44.5, 267, 7200 }, + }, + }, + [2050] = { + ["coords"] = { + [1] = { 64.8, 79.1, 130, 7200 }, + [2] = { 10.6, 44.5, 267, 7200 }, + }, + }, + [2051] = { + ["coords"] = { + [1] = { 64.8, 79.1, 130, 7200 }, + [2] = { 10.6, 44.5, 267, 7200 }, + }, + }, + [2052] = { + ["coords"] = { + [1] = { 64.8, 79.1, 130, 7200 }, + [2] = { 10.6, 44.5, 267, 7200 }, + }, + }, + [2054] = { + ["coords"] = { + [1] = { 19.3, 26.8, 44, 300 }, + [2] = { 20.5, 22.5, 44, 300 }, + [3] = { 22.6, 16.7, 44, 300 }, + [4] = { 21.1, 14.6, 44, 300 }, + [5] = { 20.4, 12.7, 44, 300 }, + [6] = { 60.2, 89.9, 46, 300 }, + [7] = { 59.6, 88.5, 46, 300 }, + }, + }, + [2055] = { + ["coords"] = { + [1] = { 19.1, 21.8, 44, 300 }, + [2] = { 18.6, 17.1, 44, 300 }, + [3] = { 21.8, 13.9, 44, 300 }, + [4] = { 18.6, 13.8, 44, 300 }, + [5] = { 60.7, 89.4, 46, 300 }, + [6] = { 58.3, 89.3, 46, 300 }, + }, + }, + [2056] = { + ["coords"] = { + [1] = { 27.7, 59.9, 40, 3600 }, + }, + }, + [2057] = { + ["coords"] = { + [1] = { 38.8, 69.7, 40, 3600 }, + }, + }, + [2059] = { + ["coords"] = { + [1] = { 79.7, 36.2, 1, 900 }, + }, + ["fac"] = "A", + }, + [2061] = { + ["coords"] = { + [1] = { 25, 76, 1, 900 }, + [2] = { 28.8, 68.4, 1, 900 }, + [3] = { 29.1, 68.1, 1, 900 }, + [4] = { 28.5, 68.1, 1, 900 }, + [5] = { 29.2, 67.4, 1, 900 }, + [6] = { 28.4, 67.4, 1, 900 }, + [7] = { 28.6, 67, 1, 900 }, + [8] = { 29, 67, 1, 900 }, + [9] = { 40.7, 64.9, 1, 900 }, + [10] = { 64.9, 58.4, 1, 900 }, + [11] = { 44, 56.8, 1, 900 }, + [12] = { 69.1, 55.1, 1, 900 }, + [13] = { 68.4, 54.4, 1, 900 }, + [14] = { 47.7, 53.3, 1, 900 }, + [15] = { 47.3, 52.7, 1, 900 }, + [16] = { 47.3, 52.6, 1, 900 }, + [17] = { 62.4, 52.3, 1, 900 }, + [18] = { 47.6, 52.2, 1, 900 }, + [19] = { 47.5, 51.8, 1, 900 }, + [20] = { 34.5, 51.7, 1, 900 }, + [21] = { 26.1, 51.3, 1, 900 }, + [22] = { 50.3, 50.2, 1, 900 }, + [23] = { 62.5, 49.7, 1, 900 }, + [24] = { 96.2, 46.8, 1, 7200 }, + [25] = { 30.5, 45.7, 1, 900 }, + [26] = { 41.3, 44.4, 1, 900 }, + [27] = { 57.8, 43.8, 1, 900 }, + [28] = { 52.4, 36.8, 1, 900 }, + [29] = { 41.8, 35.9, 1, 900 }, + [30] = { 13.6, 75.2, 3, 900 }, + [31] = { 62.6, 69.7, 3, 900 }, + [32] = { 15.5, 60.8, 3, 900 }, + [33] = { 62.6, 57.4, 3, 900 }, + [34] = { 42.5, 53, 3, 900 }, + [35] = { 42.5, 52.8, 3, 900 }, + [36] = { 3, 45.8, 3, 900 }, + [37] = { 67.7, 44.9, 3, 900 }, + [38] = { 26.1, 44.5, 3, 900 }, + [39] = { 70.1, 43.9, 3, 900 }, + [40] = { 53.6, 43.5, 3, 900 }, + [41] = { 70.4, 42, 3, 900 }, + [42] = { 53.5, 30.7, 3, 900 }, + [43] = { 42.3, 29.2, 3, 900 }, + [44] = { 42.4, 29.2, 3, 900 }, + [45] = { 42.3, 29.1, 3, 900 }, + [46] = { 67, 23.1, 3, 900 }, + [47] = { 38.6, 18.7, 3, 900 }, + [48] = { 39.8, 17.6, 3, 900 }, + [49] = { 40.9, 15, 3, 900 }, + [50] = { 39.8, 13.7, 3, 900 }, + [51] = { 38.8, 12.5, 3, 900 }, + [52] = { 38.9, 11.5, 3, 900 }, + [53] = { 40.6, 11.1, 3, 900 }, + [54] = { 42.6, 10.2, 3, 900 }, + [55] = { 48.1, 42.9, 4, 900 }, + [56] = { 43, 41.5, 4, 900 }, + [57] = { 62.8, 41.3, 4, 900 }, + [58] = { 64.6, 33.1, 4, 900 }, + [59] = { 65.3, 32.8, 4, 900 }, + [60] = { 66, 32, 4, 900 }, + [61] = { 67.4, 32, 4, 900 }, + [62] = { 65.7, 31.9, 4, 900 }, + [63] = { 66.6, 31.8, 4, 900 }, + [64] = { 66.1, 31.6, 4, 900 }, + [65] = { 68.2, 31.5, 4, 900 }, + [66] = { 66.8, 31.4, 4, 900 }, + [67] = { 69, 31.3, 4, 900 }, + [68] = { 67.3, 31.2, 4, 900 }, + [69] = { 65.8, 31.1, 4, 900 }, + [70] = { 66.4, 31, 4, 900 }, + [71] = { 68, 30.8, 4, 900 }, + [72] = { 68.3, 30.8, 4, 900 }, + [73] = { 66.2, 30.7, 4, 900 }, + [74] = { 69.5, 30.6, 4, 900 }, + [75] = { 65.8, 30.6, 4, 900 }, + [76] = { 69.1, 30.5, 4, 900 }, + [77] = { 66.5, 30.4, 4, 900 }, + [78] = { 68.2, 30.1, 4, 900 }, + [79] = { 66.2, 30.1, 4, 900 }, + [80] = { 65.8, 30, 4, 900 }, + [81] = { 66.9, 30, 4, 900 }, + [82] = { 69.2, 29.8, 4, 900 }, + [83] = { 67.6, 29.6, 4, 900 }, + [84] = { 67, 29.1, 4, 900 }, + [85] = { 67.9, 29.1, 4, 900 }, + [86] = { 66.6, 29, 4, 900 }, + [87] = { 67.3, 28.9, 4, 900 }, + [88] = { 67.9, 28.6, 4, 900 }, + [89] = { 64.7, 23.1, 4, 900 }, + [90] = { 65, 22.8, 4, 900 }, + [91] = { 65.2, 22.5, 4, 900 }, + [92] = { 61.6, 22.4, 4, 900 }, + [93] = { 64.3, 22.3, 4, 900 }, + [94] = { 65.6, 22.2, 4, 900 }, + [95] = { 65.2, 21.4, 4, 900 }, + [96] = { 64, 21.4, 4, 900 }, + [97] = { 64.1, 20.8, 4, 900 }, + [98] = { 64.4, 20.5, 4, 900 }, + [99] = { 60.8, 19.3, 4, 900 }, + [100] = { 64.2, 18.2, 4, 900 }, + [101] = { 63.8, 18, 4, 900 }, + [102] = { 64.7, 17, 4, 900 }, + [103] = { 63.7, 16.6, 4, 900 }, + [104] = { 64.9, 16, 4, 900 }, + [105] = { 64.5, 15.9, 4, 900 }, + [106] = { 64.2, 15.8, 4, 900 }, + [107] = { 63.8, 15.6, 4, 900 }, + [108] = { 13.2, 68.6, 8, 600 }, + [109] = { 44.8, 57.1, 8, 900 }, + [110] = { 42.1, 56.9, 8, 900 }, + [111] = { 42.2, 55.8, 8, 900 }, + [112] = { 42.2, 53.8, 8, 600 }, + [113] = { 42.3, 52.7, 8, 600 }, + [114] = { 24.7, 31.5, 8, 600 }, + [115] = { 89.9, 26.8, 8, 600 }, + [116] = { 62.4, 23.2, 8, 600 }, + [117] = { 65.1, 22.4, 8, 600 }, + [118] = { 61.7, 21.8, 8, 600 }, + [119] = { 62.1, 81.5, 10, 3600 }, + [120] = { 11.9, 77.4, 10, 3600 }, + [121] = { 61, 75.4, 10, 3600 }, + [122] = { 64, 73.2, 10, 3600 }, + [123] = { 72, 72.1, 10, 3600 }, + [124] = { 45, 67.3, 10, 3600 }, + [125] = { 81.4, 59.9, 10, 3600 }, + [126] = { 63.8, 51.3, 10, 3600 }, + [127] = { 75.5, 49, 10, 3600 }, + [128] = { 75.5, 48.9, 10, 3600 }, + [129] = { 76.1, 45, 10, 3600 }, + [130] = { 76, 45, 10, 3600 }, + [131] = { 73.6, 44.9, 10, 3600 }, + [132] = { 76, 44.9, 10, 3600 }, + [133] = { 73.5, 44.9, 10, 3600 }, + [134] = { 73.5, 44.8, 10, 3600 }, + [135] = { 73.8, 43.1, 10, 3600 }, + [136] = { 73.9, 43.1, 10, 3600 }, + [137] = { 61, 41.5, 10, 3600 }, + [138] = { 7.7, 33.9, 10, 3600 }, + [139] = { 17.1, 33.8, 10, 3600 }, + [140] = { 58.1, 30.2, 10, 3600 }, + [141] = { 47.3, 75.6, 11, 7200 }, + [142] = { 55.7, 75.2, 11, 7200 }, + [143] = { 61.7, 72.3, 11, 7200 }, + [144] = { 62.7, 69.5, 11, 7200 }, + [145] = { 63.9, 63.5, 11, 7200 }, + [146] = { 10.6, 61.7, 11, 7200 }, + [147] = { 10.7, 61.7, 11, 7200 }, + [148] = { 10.9, 60.6, 11, 7200 }, + [149] = { 10.9, 60.5, 11, 7200 }, + [150] = { 12, 59, 11, 7200 }, + [151] = { 12, 58.9, 11, 7200 }, + [152] = { 61.1, 58.5, 11, 7200 }, + [153] = { 12.2, 57.9, 11, 7200 }, + [154] = { 7.9, 56.1, 11, 7200 }, + [155] = { 8.2, 55.2, 11, 7200 }, + [156] = { 38.3, 46, 11, 7200 }, + [157] = { 43.6, 34.6, 11, 7200 }, + [158] = { 45.6, 34.6, 11, 7200 }, + [159] = { 38.9, 34.1, 11, 7200 }, + [160] = { 31.3, 32.9, 11, 7200 }, + [161] = { 42.9, 32.4, 11, 7200 }, + [162] = { 45.1, 31.8, 11, 7200 }, + [163] = { 51.3, 30.9, 11, 7200 }, + [164] = { 31.5, 29.7, 11, 7200 }, + [165] = { 62.4, 28.3, 11, 7200 }, + [166] = { 52.8, 27.6, 11, 7200 }, + [167] = { 40, 27.5, 11, 7200 }, + [168] = { 35.1, 27.4, 11, 7200 }, + [169] = { 62, 26.3, 11, 7200 }, + [170] = { 25.6, 26.1, 11, 7200 }, + [171] = { 60.1, 24.6, 11, 7200 }, + [172] = { 48.2, 18.9, 11, 7200 }, + [173] = { 46.9, 18.7, 11, 7200 }, + [174] = { 46.9, 18.6, 11, 7200 }, + [175] = { 46.5, 18, 11, 7200 }, + [176] = { 47.3, 15, 11, 7200 }, + [177] = { 47.2, 15, 11, 7200 }, + [178] = { 48, 14.9, 11, 7200 }, + [179] = { 24.5, 93.8, 12, 900 }, + [180] = { 26, 91.8, 12, 900 }, + [181] = { 25.2, 89.1, 12, 900 }, + [182] = { 27.8, 88.1, 12, 900 }, + [183] = { 47.9, 86.8, 12, 900 }, + [184] = { 48, 86.8, 12, 900 }, + [185] = { 26.4, 86.8, 12, 900 }, + [186] = { 27.6, 86.2, 12, 900 }, + [187] = { 35.2, 83.8, 12, 900 }, + [188] = { 35.1, 83.8, 12, 900 }, + [189] = { 50.6, 83.1, 12, 900 }, + [190] = { 71.2, 80.9, 12, 900 }, + [191] = { 85.5, 69.5, 12, 900 }, + [192] = { 85.5, 69.4, 12, 900 }, + [193] = { 79.1, 69.2, 12, 900 }, + [194] = { 78.4, 67.2, 12, 900 }, + [195] = { 78.4, 67.1, 12, 900 }, + [196] = { 83.4, 66.9, 12, 900 }, + [197] = { 44.4, 66.1, 12, 900 }, + [198] = { 43.6, 65.5, 12, 900 }, + [199] = { 43.5, 65.5, 12, 900 }, + [200] = { 30.6, 64.6, 12, 900 }, + [201] = { 46.1, 62.3, 12, 900 }, + [202] = { 46.1, 62.2, 12, 900 }, + [203] = { 35.9, 59.1, 12, 900 }, + [204] = { 33.8, 57.4, 12, 900 }, + [205] = { 64.5, 56.6, 12, 900 }, + [206] = { 44, 53.5, 12, 900 }, + [207] = { 68.2, 45, 12, 900 }, + [208] = { 56.5, 43.9, 12, 900 }, + [209] = { 66.6, 40.9, 12, 900 }, + [210] = { 69.3, 38.9, 12, 900 }, + [211] = { 51.4, 36.7, 12, 900 }, + [212] = { 47.6, 35.8, 12, 900 }, + [213] = { 49.7, 35.1, 12, 900 }, + [214] = { 67.3, 86.9, 14, 900 }, + [215] = { 47.8, 77.7, 14, 900 }, + [216] = { 41.4, 68.6, 14, 900 }, + [217] = { 41.8, 68.6, 14, 900 }, + [218] = { 42.1, 68.5, 14, 900 }, + [219] = { 40.7, 68.5, 14, 900 }, + [220] = { 43.3, 68.4, 14, 900 }, + [221] = { 40.5, 68.2, 14, 900 }, + [222] = { 41.4, 68.2, 14, 900 }, + [223] = { 41, 68.2, 14, 900 }, + [224] = { 40.7, 68.1, 14, 900 }, + [225] = { 41.3, 68, 14, 900 }, + [226] = { 40.4, 67.9, 14, 900 }, + [227] = { 40.9, 67.8, 14, 900 }, + [228] = { 40.7, 67.8, 14, 900 }, + [229] = { 42.6, 67.3, 14, 900 }, + [230] = { 42.7, 67.1, 14, 900 }, + [231] = { 52.3, 43.5, 14, 900 }, + [232] = { 53.1, 43, 14, 900 }, + [233] = { 52, 43, 14, 900 }, + [234] = { 54.2, 42.8, 14, 900 }, + [235] = { 53.9, 42.7, 14, 900 }, + [236] = { 54.3, 42.5, 14, 900 }, + [237] = { 51.1, 42.4, 14, 900 }, + [238] = { 53.8, 42.4, 14, 900 }, + [239] = { 51.1, 42.3, 14, 900 }, + [240] = { 53.1, 42.3, 14, 900 }, + [241] = { 51.2, 42.3, 14, 900 }, + [242] = { 54.3, 42.3, 14, 900 }, + [243] = { 54.1, 42.1, 14, 900 }, + [244] = { 53, 41.9, 14, 900 }, + [245] = { 51.3, 41.8, 14, 900 }, + [246] = { 51.9, 41.8, 14, 900 }, + [247] = { 51.2, 41.5, 14, 900 }, + [248] = { 51.8, 41.5, 14, 900 }, + [249] = { 54.7, 41.3, 14, 900 }, + [250] = { 51.3, 41.3, 14, 900 }, + [251] = { 51.5, 41.2, 14, 900 }, + [252] = { 52.2, 40.9, 14, 900 }, + [253] = { 51.9, 40.2, 14, 900 }, + [254] = { 42.1, 26.6, 14, 900 }, + [255] = { 46.4, 22.9, 14, 900 }, + [256] = { 56.3, 20, 14, 900 }, + [257] = { 51.1, 13, 14, 900 }, + [258] = { 45.3, 11.3, 14, 900 }, + [259] = { 46, 10.8, 14, 900 }, + [260] = { 46.3, 10.8, 14, 900 }, + [261] = { 46.7, 10.7, 14, 900 }, + [262] = { 45.6, 10.5, 14, 900 }, + [263] = { 46.6, 9.9, 14, 900 }, + [264] = { 45.8, 8.9, 14, 900 }, + [265] = { 46.7, 8.4, 14, 900 }, + [266] = { 45.1, 8.3, 14, 900 }, + [267] = { 46.6, 8.2, 14, 900 }, + [268] = { 45.7, 7.7, 14, 900 }, + [269] = { 44.7, 7.4, 14, 900 }, + [270] = { 45.8, 7.2, 14, 900 }, + [271] = { 45.3, 7.2, 14, 900 }, + [272] = { 46.3, 6.8, 14, 900 }, + [273] = { 45.3, 6.7, 14, 900 }, + [274] = { 41.6, 72.7, 15, 900 }, + [275] = { 25.9, 62.5, 15, 900 }, + [276] = { 26.2, 58.5, 15, 900 }, + [277] = { 66.4, 51.7, 15, 900 }, + [278] = { 63.9, 47.5, 15, 900 }, + [279] = { 67, 45.3, 15, 900 }, + [280] = { 66.4, 45, 15, 900 }, + [281] = { 35.1, 38.3, 15, 900 }, + [282] = { 42.6, 38, 15, 900 }, + [283] = { 42.6, 30.5, 15, 900 }, + [284] = { 64.2, 28.2, 15, 180 }, + [285] = { 43.3, 27.8, 15, 900 }, + [286] = { 45.1, 24.5, 15, 900 }, + [287] = { 56.7, 21.5, 15, 900 }, + [288] = { 62.9, 18.8, 15, 900 }, + [289] = { 57.6, 15.8, 15, 900 }, + [290] = { 57.4, 15.2, 15, 900 }, + [291] = { 54.1, 15.1, 15, 900 }, + [292] = { 41.1, 10.7, 15, 900 }, + [293] = { 59.2, 9.7, 15, 900 }, + [294] = { 59.6, 9.6, 15, 900 }, + [295] = { 63.1, 7.2, 15, 900 }, + [296] = { 51.5, 4.9, 15, 900 }, + [297] = { 61.2, 92.6, 16, 180 }, + [298] = { 49.8, 91.7, 16, 180 }, + [299] = { 11.9, 78.2, 16, 180 }, + [300] = { 23.2, 75.4, 16, 180 }, + [301] = { 25.5, 64.2, 16, 180 }, + [302] = { 19.5, 63.9, 16, 180 }, + [303] = { 19.2, 63.8, 16, 180 }, + [304] = { 26.1, 63.6, 16, 180 }, + [305] = { 26.6, 63.4, 16, 180 }, + [306] = { 27.4, 62.9, 16, 180 }, + [307] = { 26.8, 61.4, 16, 180 }, + [308] = { 27.5, 61.2, 16, 180 }, + [309] = { 28.5, 61.2, 16, 180 }, + [310] = { 26.9, 61.1, 16, 180 }, + [311] = { 49.6, 56.2, 16, 180 }, + [312] = { 21.8, 51.9, 16, 180 }, + [313] = { 22.7, 51.7, 16, 180 }, + [314] = { 22.1, 51.4, 16, 180 }, + [315] = { 22.4, 51, 16, 180 }, + [316] = { 22.7, 51, 16, 180 }, + [317] = { 28.1, 50.1, 16, 180 }, + [318] = { 32.1, 45.6, 16, 180 }, + [319] = { 50.6, 42.7, 16, 180 }, + [320] = { 42.1, 39, 16, 180 }, + [321] = { 35.7, 35.7, 16, 180 }, + [322] = { 59.1, 31.9, 16, 180 }, + [323] = { 48.4, 30.5, 16, 180 }, + [324] = { 56.4, 28.9, 16, 180 }, + [325] = { 58.7, 28.4, 16, 180 }, + [326] = { 44.5, 26.3, 16, 180 }, + [327] = { 60.9, 25.2, 16, 180 }, + [328] = { 45.4, 22.2, 16, 180 }, + [329] = { 41.7, 19.3, 16, 180 }, + [330] = { 51.9, 18.9, 16, 180 }, + [331] = { 66.1, 16.7, 16, 180 }, + [332] = { 49.7, 99.4, 17, 180 }, + [333] = { 48.9, 98.8, 17, 180 }, + [334] = { 48.2, 98.3, 17, 180 }, + [335] = { 47.5, 97.2, 17, 180 }, + [336] = { 46.4, 96.6, 17, 180 }, + [337] = { 44.6, 94.5, 17, 180 }, + [338] = { 44.1, 92.3, 17, 180 }, + [339] = { 48.9, 86.3, 17, 900 }, + [340] = { 47.5, 85.3, 17, 900 }, + [341] = { 49.1, 84.3, 17, 900 }, + [342] = { 53.7, 73.8, 17, 900 }, + [343] = { 56.8, 59.5, 17, 900 }, + [344] = { 44.8, 59.4, 17, 900 }, + [345] = { 66.2, 59, 17, 900 }, + [346] = { 45.6, 59, 17, 900 }, + [347] = { 45.5, 59, 17, 900 }, + [348] = { 66.4, 59, 17, 900 }, + [349] = { 45.5, 58.9, 17, 900 }, + [350] = { 44.9, 58.2, 17, 900 }, + [351] = { 45, 58.2, 17, 900 }, + [352] = { 44.9, 57.9, 17, 900 }, + [353] = { 68.2, 57.7, 17, 900 }, + [354] = { 49.3, 57.2, 17, 900 }, + [355] = { 62.2, 56.5, 17, 900 }, + [356] = { 61.4, 55.6, 17, 900 }, + [357] = { 62, 55.2, 17, 900 }, + [358] = { 62.7, 49.7, 17, 900 }, + [359] = { 63.6, 49.2, 17, 900 }, + [360] = { 61.5, 48.9, 17, 900 }, + [361] = { 61.6, 48, 17, 900 }, + [362] = { 62.2, 47.4, 17, 900 }, + [363] = { 54.4, 46.6, 17, 900 }, + [364] = { 35.6, 46.4, 17, 900 }, + [365] = { 63.6, 46.1, 17, 900 }, + [366] = { 62.3, 46.1, 17, 900 }, + [367] = { 35.6, 45.7, 17, 900 }, + [368] = { 36.4, 45.4, 17, 900 }, + [369] = { 62, 45.1, 17, 900 }, + [370] = { 61.4, 44.2, 17, 900 }, + [371] = { 64.4, 43.9, 17, 900 }, + [372] = { 37, 43.9, 17, 900 }, + [373] = { 56.7, 43.6, 17, 900 }, + [374] = { 80.4, 42.4, 17, 900 }, + [375] = { 47.3, 41.8, 17, 900 }, + [376] = { 45.7, 41.5, 17, 900 }, + [377] = { 36.1, 40.9, 17, 900 }, + [378] = { 44.8, 39.7, 17, 900 }, + [379] = { 48.7, 39.4, 17, 900 }, + [380] = { 57.1, 32.8, 17, 900 }, + [381] = { 66.4, 32.7, 17, 900 }, + [382] = { 66.3, 32.5, 17, 900 }, + [383] = { 57, 32.5, 17, 900 }, + [384] = { 56.9, 32.3, 17, 900 }, + [385] = { 57.1, 32.2, 17, 900 }, + [386] = { 57.1, 32.1, 17, 900 }, + [387] = { 57, 31.9, 17, 900 }, + [388] = { 57.1, 31.7, 17, 900 }, + [389] = { 56.9, 31.7, 17, 900 }, + [390] = { 57, 31.7, 17, 900 }, + [391] = { 57.1, 31.5, 17, 900 }, + [392] = { 57, 31.5, 17, 900 }, + [393] = { 57, 31.4, 17, 900 }, + [394] = { 52.1, 30, 17, 900 }, + [395] = { 51.9, 29.8, 17, 900 }, + [396] = { 52.1, 29.8, 17, 900 }, + [397] = { 52.6, 29.7, 17, 900 }, + [398] = { 51.9, 29.7, 17, 900 }, + [399] = { 52, 29.6, 17, 900 }, + [400] = { 45.3, 28.5, 17, 900 }, + [401] = { 45.3, 28.3, 17, 900 }, + [402] = { 31.7, 27.9, 17, 900 }, + [403] = { 43.6, 26.3, 17, 900 }, + [404] = { 42.1, 24.7, 17, 900 }, + [405] = { 47.8, 24.6, 17, 900 }, + [406] = { 33.6, 23.1, 17, 900 }, + [407] = { 46.6, 23, 17, 900 }, + [408] = { 31.6, 22.1, 17, 900 }, + [409] = { 31.2, 21.9, 17, 900 }, + [410] = { 61.4, 21.3, 17, 900 }, + [411] = { 45, 20.1, 17, 900 }, + [412] = { 60.3, 4.2, 17, 900 }, + [413] = { 60, 4.2, 17, 900 }, + [414] = { 60.4, 4.1, 17, 900 }, + [415] = { 60.2, 4.1, 17, 900 }, + [416] = { 59.9, 4, 17, 900 }, + [417] = { 60.5, 4, 17, 900 }, + [418] = { 59.8, 4, 17, 900 }, + [419] = { 60.3, 4, 17, 900 }, + [420] = { 60.2, 3.9, 17, 900 }, + [421] = { 60.1, 3.9, 17, 900 }, + [422] = { 59.6, 3.8, 17, 900 }, + [423] = { 60.6, 3.8, 17, 900 }, + [424] = { 60.3, 3.8, 17, 900 }, + [425] = { 60.5, 3.8, 17, 900 }, + [426] = { 60.9, 3.7, 17, 900 }, + [427] = { 59.7, 3.7, 17, 900 }, + [428] = { 59.8, 3.7, 17, 900 }, + [429] = { 60.6, 3.7, 17, 900 }, + [430] = { 60.3, 3.6, 17, 900 }, + [431] = { 60.4, 3.5, 17, 900 }, + [432] = { 60.2, 3.4, 17, 900 }, + [433] = { 59.8, 3.4, 17, 900 }, + [434] = { 59.9, 3.3, 17, 900 }, + [435] = { 60.2, 3.2, 17, 900 }, + [436] = { 59.8, 3.2, 17, 900 }, + [437] = { 59.5, 3.1, 17, 900 }, + [438] = { 60, 3.1, 17, 900 }, + [439] = { 59.6, 3, 17, 900 }, + [440] = { 59.8, 2.8, 17, 900 }, + [441] = { 59.5, 2.8, 17, 900 }, + [442] = { 42.6, 83.9, 28, 1200 }, + [443] = { 42.9, 83.9, 28, 1200 }, + [444] = { 68.5, 76.6, 28, 1200 }, + [445] = { 68.7, 73.7, 28, 1200 }, + [446] = { 26.7, 59.6, 28, 900 }, + [447] = { 26.3, 59.1, 28, 900 }, + [448] = { 26.5, 58.5, 28, 900 }, + [449] = { 26.6, 56.9, 28, 900 }, + [450] = { 26.7, 56.4, 28, 900 }, + [451] = { 26.5, 56.1, 28, 900 }, + [452] = { 26.5, 55.5, 28, 900 }, + [453] = { 40.5, 52.2, 28, 1200 }, + [454] = { 51.8, 44.4, 28, 1200 }, + [455] = { 50.9, 40.4, 28, 1200 }, + [456] = { 53.2, 36.6, 28, 1200 }, + [457] = { 44.6, 33.9, 28, 1200 }, + [458] = { 30.7, 29.2, 28, 900 }, + [459] = { 44.8, 12.7, 28, 1200 }, + [460] = { 29.7, 80.9, 33, 900 }, + [461] = { 38.5, 80.6, 33, 900 }, + [462] = { 27.5, 69.5, 33, 900 }, + [463] = { 31.9, 54.5, 33, 900 }, + [464] = { 42, 44.7, 33, 900 }, + [465] = { 47.7, 44.2, 33, 900 }, + [466] = { 47.9, 42.9, 33, 900 }, + [467] = { 46, 42.7, 33, 900 }, + [468] = { 44.5, 41.9, 33, 900 }, + [469] = { 50.8, 35.7, 33, 900 }, + [470] = { 46.2, 32.1, 33, 900 }, + [471] = { 37.4, 31, 33, 900 }, + [472] = { 50.4, 30.5, 33, 900 }, + [473] = { 31.8, 29.7, 33, 900 }, + [474] = { 48, 29.7, 33, 900 }, + [475] = { 32.6, 29.4, 33, 900 }, + [476] = { 32.2, 29.3, 33, 900 }, + [477] = { 31.6, 29.1, 33, 900 }, + [478] = { 32.7, 28.9, 33, 900 }, + [479] = { 31, 28.7, 33, 900 }, + [480] = { 33, 28.5, 33, 900 }, + [481] = { 30.9, 28.3, 33, 900 }, + [482] = { 31.4, 27.9, 33, 900 }, + [483] = { 31.8, 27, 33, 900 }, + [484] = { 32.1, 26.9, 33, 900 }, + [485] = { 50.6, 20.7, 33, 900 }, + [486] = { 51.3, 18.5, 33, 900 }, + [487] = { 50.6, 18.4, 33, 900 }, + [488] = { 51.3, 18.3, 33, 900 }, + [489] = { 50.6, 18.2, 33, 900 }, + [490] = { 43.8, 18, 33, 900 }, + [491] = { 50.5, 16.9, 33, 900 }, + [492] = { 51.3, 16.9, 33, 900 }, + [493] = { 50.5, 16.6, 33, 900 }, + [494] = { 51.3, 16.6, 33, 900 }, + [495] = { 33.7, 15.6, 33, 900 }, + [496] = { 24.7, 12.2, 33, 900 }, + [497] = { 19.9, 12.1, 33, 900 }, + [498] = { 35.6, 10.6, 33, 900 }, + [499] = { 44.5, 10, 33, 900 }, + [500] = { 43.8, 9.6, 33, 900 }, + [501] = { 38, 3.4, 33, 900 }, + [502] = { 27.6, 98.4, 36, 7200 }, + [503] = { 27.7, 98.4, 36, 7200 }, + [504] = { 47.8, 82, 36, 7200 }, + [505] = { 39.5, 81.5, 36, 7200 }, + [506] = { 58.2, 67.8, 36, 7200 }, + [507] = { 79.3, 66.8, 36, 7200 }, + [508] = { 36, 55.1, 36, 7200 }, + [509] = { 36.7, 54.5, 36, 7200 }, + [510] = { 35.9, 54.4, 36, 7200 }, + [511] = { 35.7, 53.9, 36, 7200 }, + [512] = { 35.4, 53.4, 36, 7200 }, + [513] = { 37.5, 53.2, 36, 7200 }, + [514] = { 36.1, 52.8, 36, 7200 }, + [515] = { 37.3, 52.6, 36, 7200 }, + [516] = { 43.2, 47.7, 36, 7200 }, + [517] = { 49.2, 43.8, 36, 7200 }, + [518] = { 48.1, 35.1, 36, 7200 }, + [519] = { 32.4, 33.1, 36, 7200 }, + [520] = { 32.5, 33, 36, 7200 }, + [521] = { 58.2, 30.2, 36, 7200 }, + [522] = { 56.1, 27, 36, 7200 }, + [523] = { 53.6, 20.8, 36, 7200 }, + [524] = { 47.7, 17.2, 36, 7200 }, + [525] = { 39, 92.1, 38, 900 }, + [526] = { 36.5, 91.1, 38, 900 }, + [527] = { 35.3, 90.8, 38, 900 }, + [528] = { 37.1, 89.9, 38, 900 }, + [529] = { 40, 89.8, 38, 900 }, + [530] = { 35.6, 89.6, 38, 900 }, + [531] = { 34.4, 88.9, 38, 900 }, + [532] = { 33.1, 88.8, 38, 900 }, + [533] = { 39, 88.5, 38, 900 }, + [534] = { 37.1, 88.5, 38, 900 }, + [535] = { 34.3, 88.4, 38, 900 }, + [536] = { 35.4, 88.3, 38, 900 }, + [537] = { 38.1, 87.5, 38, 900 }, + [538] = { 35.4, 87.4, 38, 900 }, + [539] = { 34.4, 87.4, 38, 900 }, + [540] = { 38.2, 86.6, 38, 900 }, + [541] = { 39.7, 86.3, 38, 900 }, + [542] = { 37.2, 85.8, 38, 900 }, + [543] = { 41.5, 85.4, 38, 900 }, + [544] = { 29.5, 83.7, 38, 7200 }, + [545] = { 32.1, 75.2, 38, 7200 }, + [546] = { 65, 66.3, 38, 7200 }, + [547] = { 26.7, 56.9, 38, 7200 }, + [548] = { 34.2, 50.3, 38, 7200 }, + [549] = { 35.5, 49.6, 38, 7200 }, + [550] = { 35.5, 49.5, 38, 7200 }, + [551] = { 34.8, 49, 38, 7200 }, + [552] = { 37.3, 48.9, 38, 7200 }, + [553] = { 35.8, 48.9, 38, 7200 }, + [554] = { 34.6, 48.9, 38, 7200 }, + [555] = { 37.4, 47.5, 38, 7200 }, + [556] = { 33.2, 46.6, 38, 7200 }, + [557] = { 35.8, 44.7, 38, 7200 }, + [558] = { 34.3, 43.4, 38, 7200 }, + [559] = { 34.4, 43.4, 38, 7200 }, + [560] = { 25.6, 43.3, 38, 7200 }, + [561] = { 35.1, 43, 38, 7200 }, + [562] = { 39.5, 39.8, 38, 7200 }, + [563] = { 54.5, 26.6, 38, 7200 }, + [564] = { 37.1, 24.8, 38, 7200 }, + [565] = { 74.2, 20.6, 38, 7200 }, + [566] = { 37.4, 16.4, 38, 7200 }, + [567] = { 42.9, 88.3, 40, 3600 }, + [568] = { 34.9, 85.2, 40, 3600 }, + [569] = { 34.9, 84.6, 40, 3600 }, + [570] = { 42.4, 83.1, 40, 3600 }, + [571] = { 41.3, 83.1, 40, 3600 }, + [572] = { 42.1, 83, 40, 3600 }, + [573] = { 41.6, 82.6, 40, 3600 }, + [574] = { 37, 82.4, 40, 3600 }, + [575] = { 40.8, 81.9, 40, 3600 }, + [576] = { 41.6, 81.9, 40, 3600 }, + [577] = { 40.9, 80.7, 40, 3600 }, + [578] = { 44.7, 80.1, 40, 3600 }, + [579] = { 53.2, 78.9, 40, 3600 }, + [580] = { 61, 77.7, 40, 3600 }, + [581] = { 63.4, 77.3, 40, 3600 }, + [582] = { 37.3, 75.4, 40, 3600 }, + [583] = { 65.2, 75.2, 40, 3600 }, + [584] = { 60.9, 74.3, 40, 3600 }, + [585] = { 56.5, 74.3, 40, 3600 }, + [586] = { 59.4, 74.1, 40, 3600 }, + [587] = { 71.5, 73.3, 40, 3600 }, + [588] = { 63.6, 73, 40, 3600 }, + [589] = { 60.5, 70.7, 40, 3600 }, + [590] = { 63.8, 70.2, 40, 3600 }, + [591] = { 56.4, 69.9, 40, 3600 }, + [592] = { 38.8, 69.7, 40, 3600 }, + [593] = { 31.1, 69.3, 40, 3600 }, + [594] = { 28.2, 69.1, 40, 3600 }, + [595] = { 29.3, 65.4, 40, 3600 }, + [596] = { 52.9, 62.6, 40, 3600 }, + [597] = { 35.8, 61.2, 40, 3600 }, + [598] = { 48.3, 61.1, 40, 3600 }, + [599] = { 27.7, 59.9, 40, 3600 }, + [600] = { 30.3, 57.9, 40, 3600 }, + [601] = { 32.9, 56.6, 40, 3600 }, + [602] = { 27.8, 54.1, 40, 3600 }, + [603] = { 57.5, 53.7, 40, 3600 }, + [604] = { 30.6, 52, 40, 3600 }, + [605] = { 48.2, 46.8, 40, 3600 }, + [606] = { 39.1, 31.9, 40, 3600 }, + [607] = { 36.7, 31.9, 40, 3600 }, + [608] = { 56.2, 30.4, 40, 3600 }, + [609] = { 56.3, 30.4, 40, 3600 }, + [610] = { 34.3, 26.8, 40, 3600 }, + [611] = { 32.4, 26.8, 40, 3600 }, + [612] = { 67.3, 25.8, 40, 900 }, + [613] = { 35.5, 22, 40, 3600 }, + [614] = { 41.8, 20.8, 40, 3600 }, + [615] = { 49.3, 18.9, 40, 3600 }, + [616] = { 52.1, 15.1, 40, 3600 }, + [617] = { 44.9, 13.9, 40, 3600 }, + [618] = { 56.3, 13.5, 40, 3600 }, + [619] = { 59, 68.2, 41, 900 }, + [620] = { 54.4, 56.1, 41, 900 }, + [621] = { 52.3, 34.2, 41, 900 }, + [622] = { 30.9, 84.1, 44, 7200 }, + [623] = { 29.3, 84, 44, 7200 }, + [624] = { 74.2, 78.8, 44, 7200 }, + [625] = { 88.8, 70.7, 44, 7200 }, + [626] = { 77.9, 67.5, 44, 7200 }, + [627] = { 15.4, 63.7, 44, 7200 }, + [628] = { 16.6, 63.3, 44, 7200 }, + [629] = { 19.9, 61.5, 44, 7200 }, + [630] = { 14.9, 61.3, 44, 7200 }, + [631] = { 69.4, 60.1, 44, 7200 }, + [632] = { 83.7, 57.7, 44, 7200 }, + [633] = { 73.4, 55.2, 44, 7200 }, + [634] = { 75, 49.8, 44, 7200 }, + [635] = { 31.3, 49.3, 44, 7200 }, + [636] = { 75.8, 47.2, 44, 7200 }, + [637] = { 21.1, 45.7, 44, 7200 }, + [638] = { 21.1, 45.6, 44, 7200 }, + [639] = { 79.8, 45.2, 44, 7200 }, + [640] = { 26.4, 45, 44, 7200 }, + [641] = { 26.3, 44.9, 44, 7200 }, + [642] = { 26.4, 44.9, 44, 7200 }, + [643] = { 26.4, 44.8, 44, 7200 }, + [644] = { 61.1, 43.1, 44, 7200 }, + [645] = { 26.8, 42.8, 44, 7200 }, + [646] = { 26.9, 42.7, 44, 7200 }, + [647] = { 25.3, 40.9, 44, 7200 }, + [648] = { 23.6, 40.9, 44, 7200 }, + [649] = { 23.7, 40.9, 44, 7200 }, + [650] = { 79, 40.6, 44, 7200 }, + [651] = { 76.5, 38.1, 44, 7200 }, + [652] = { 21.3, 36.4, 44, 7200 }, + [653] = { 38.7, 31.9, 44, 7200 }, + [654] = { 28.2, 28.1, 44, 7200 }, + [655] = { 23.4, 26.6, 44, 7200 }, + [656] = { 34.2, 25.3, 44, 7200 }, + [657] = { 27.6, 21.6, 44, 7200 }, + [658] = { 35.6, 8.3, 44, 7200 }, + [659] = { 48.6, 87.6, 45, 7200 }, + [660] = { 53.5, 76.2, 45, 7200 }, + [661] = { 57.8, 74.7, 45, 7200 }, + [662] = { 61.2, 72.4, 45, 7200 }, + [663] = { 73.4, 65.1, 45, 7200 }, + [664] = { 66.4, 64.2, 45, 7200 }, + [665] = { 35.6, 59.7, 45, 7200 }, + [666] = { 35.2, 58.9, 45, 7200 }, + [667] = { 48.7, 55.7, 45, 7200 }, + [668] = { 9.8, 48.3, 45, 7200 }, + [669] = { 85.3, 21, 45, 7200 }, + [670] = { 85.5, 20.7, 45, 7200 }, + [671] = { 70.9, 85.2, 46, 7200 }, + [672] = { 85.1, 67.9, 46, 7200 }, + [673] = { 44.5, 56.7, 46, 7200 }, + [674] = { 44.8, 50.9, 46, 7200 }, + [675] = { 44.7, 50.6, 46, 7200 }, + [676] = { 34.8, 28.5, 46, 7200 }, + [677] = { 35.2, 28, 46, 7200 }, + [678] = { 34.4, 26.3, 46, 7200 }, + [679] = { 34.4, 26.2, 46, 7200 }, + [680] = { 65.1, 23.9, 46, 7200 }, + [681] = { 61.4, 82, 47, 7200 }, + [682] = { 61.5, 81.7, 47, 7200 }, + [683] = { 67.1, 80.3, 47, 7200 }, + [684] = { 63.4, 80, 47, 7200 }, + [685] = { 78.5, 79.4, 47, 7200 }, + [686] = { 67.7, 77.7, 47, 7200 }, + [687] = { 67.9, 75.3, 47, 7200 }, + [688] = { 63.5, 73.3, 47, 7200 }, + [689] = { 58.3, 73, 47, 7200 }, + [690] = { 68.4, 72.9, 47, 7200 }, + [691] = { 68.1, 72.9, 47, 7200 }, + [692] = { 61.5, 72.6, 47, 7200 }, + [693] = { 57.9, 72.4, 47, 7200 }, + [694] = { 64.5, 71.7, 47, 7200 }, + [695] = { 68.6, 70.8, 47, 7200 }, + [696] = { 67.4, 69, 47, 7200 }, + [697] = { 60.6, 67.9, 47, 7200 }, + [698] = { 63.5, 67.9, 47, 7200 }, + [699] = { 63.7, 67.4, 47, 7200 }, + [700] = { 39.8, 66.4, 47, 7200 }, + [701] = { 67.7, 66.4, 47, 7200 }, + [702] = { 62.4, 65.7, 47, 7200 }, + [703] = { 64.2, 65.6, 47, 7200 }, + [704] = { 62.6, 65.3, 47, 7200 }, + [705] = { 64.1, 59.8, 47, 7200 }, + [706] = { 32, 58.2, 47, 7200 }, + [707] = { 23.1, 58.2, 47, 7200 }, + [708] = { 79.7, 55.6, 47, 7200 }, + [709] = { 13.5, 55.3, 47, 7200 }, + [710] = { 26.8, 48.5, 47, 7200 }, + [711] = { 15.7, 46.5, 47, 7200 }, + [712] = { 14.1, 44.3, 47, 7200 }, + [713] = { 43.6, 99.3, 51, 7200 }, + [714] = { 42.6, 97.1, 51, 7200 }, + [715] = { 42.6, 97, 51, 7200 }, + [716] = { 63.5, 75.7, 51, 7200 }, + [717] = { 40.9, 75.3, 51, 7200 }, + [718] = { 62.4, 61.8, 51, 7200 }, + [719] = { 38.1, 51, 51, 7200 }, + [720] = { 34.2, 46.8, 51, 7200 }, + [721] = { 41.9, 43, 51, 7200 }, + [722] = { 43, 40.7, 51, 7200 }, + [723] = { 49.1, 39.7, 51, 7200 }, + [724] = { 37.7, 39.2, 51, 7200 }, + [725] = { 82.1, 36.9, 51, 900 }, + [726] = { 24.3, 34.4, 51, 7200 }, + [727] = { 69.1, 33.4, 51, 7200 }, + [728] = { 25.9, 26.3, 51, 7200 }, + [729] = { 83.3, 72.3, 85, 900 }, + [730] = { 83, 71.9, 85, 900 }, + [731] = { 83.1, 71.3, 85, 900 }, + [732] = { 83.3, 69.8, 85, 900 }, + [733] = { 83.3, 69.3, 85, 900 }, + [734] = { 83.1, 69, 85, 900 }, + [735] = { 83.1, 68.4, 85, 900 }, + [736] = { 37.5, 67.9, 85, 900 }, + [737] = { 32.5, 65.4, 85, 900 }, + [738] = { 65.5, 60, 85, 900 }, + [739] = { 61.5, 52.4, 85, 900 }, + [740] = { 61.5, 52.3, 85, 900 }, + [741] = { 61.8, 51.4, 85, 900 }, + [742] = { 61.9, 51.3, 85, 900 }, + [743] = { 87.1, 43.4, 85, 900 }, + [744] = { 68.2, 42, 85, 900 }, + [745] = { 46.8, 85.6, 130, 7200 }, + [746] = { 44.4, 84.4, 130, 7200 }, + [747] = { 54, 82.6, 130, 7200 }, + [748] = { 62.9, 76.3, 130, 7200 }, + [749] = { 44.7, 74.4, 130, 7200 }, + [750] = { 47.6, 74, 130, 7200 }, + [751] = { 47.6, 73.9, 130, 7200 }, + [752] = { 47.7, 73.9, 130, 7200 }, + [753] = { 43.5, 73.5, 130, 7200 }, + [754] = { 43.4, 73.5, 130, 7200 }, + [755] = { 42.7, 73.2, 130, 7200 }, + [756] = { 42.7, 73.1, 130, 7200 }, + [757] = { 45.1, 71.2, 130, 7200 }, + [758] = { 45.1, 71.1, 130, 7200 }, + [759] = { 63.5, 65.2, 130, 7200 }, + [760] = { 63.5, 65.1, 130, 7200 }, + [761] = { 50.1, 60.2, 130, 7200 }, + [762] = { 63.3, 58.6, 130, 7200 }, + [763] = { 63.3, 58.5, 130, 7200 }, + [764] = { 43.1, 50.9, 130, 7200 }, + [765] = { 58.7, 42.3, 130, 7200 }, + [766] = { 60.3, 41.4, 130, 7200 }, + [767] = { 65.6, 25.6, 130, 7200 }, + [768] = { 65.9, 25.6, 130, 7200 }, + [769] = { 65.3, 24.6, 130, 7200 }, + [770] = { 66.2, 24.5, 130, 7200 }, + [771] = { 48.4, 24.2, 130, 7200 }, + [772] = { 65.6, 23.8, 130, 7200 }, + [773] = { 65.8, 23.8, 130, 7200 }, + [774] = { 65.3, 23.8, 130, 7200 }, + [775] = { 66.1, 23.7, 130, 7200 }, + [776] = { 55.6, 20.1, 130, 7200 }, + [777] = { 33.1, 17.7, 130, 7200 }, + [778] = { 53.3, 12.8, 130, 7200 }, + [779] = { 53.2, 12.8, 130, 7200 }, + [780] = { 67.7, 83.2, 139, 900 }, + [781] = { 33.8, 75.3, 139, 900 }, + [782] = { 45.4, 65.8, 139, 900 }, + [783] = { 81.5, 59.7, 139, 900 }, + [784] = { 80.5, 57.9, 139, 900 }, + [785] = { 39.3, 51.3, 139, 900 }, + [786] = { 40.9, 50.4, 139, 900 }, + [787] = { 85.7, 46.1, 139, 900 }, + [788] = { 85.8, 43.8, 139, 900 }, + [789] = { 83.1, 43.2, 139, 900 }, + [790] = { 67.9, 39.4, 139, 900 }, + [791] = { 83.2, 39, 139, 900 }, + [792] = { 87.7, 39, 139, 900 }, + [793] = { 87.8, 39, 139, 900 }, + [794] = { 66, 37.9, 139, 900 }, + [795] = { 43, 37.8, 139, 900 }, + [796] = { 30.6, 27.9, 139, 900 }, + [797] = { 38.7, 80.2, 141, 900 }, + [798] = { 42, 80.1, 141, 900 }, + [799] = { 40, 79.8, 141, 900 }, + [800] = { 38.8, 79, 141, 900 }, + [801] = { 48, 77.8, 141, 900 }, + [802] = { 47.1, 77.6, 141, 900 }, + [803] = { 56.4, 75.5, 141, 900 }, + [804] = { 41.3, 72.5, 141, 900 }, + [805] = { 37.9, 67.1, 141, 900 }, + [806] = { 49.4, 66.7, 141, 900 }, + [807] = { 65.7, 64.8, 141, 900 }, + [808] = { 65.9, 63.7, 141, 900 }, + [809] = { 50, 62.6, 141, 900 }, + [810] = { 57.1, 61.2, 141, 900 }, + [811] = { 69.3, 53.3, 141, 900 }, + [812] = { 68.6, 52.3, 141, 900 }, + [813] = { 55.9, 46, 141, 900 }, + [814] = { 54.6, 44.1, 141, 900 }, + [815] = { 60.9, 42, 141, 900 }, + [816] = { 54.2, 39.3, 141, 900 }, + [817] = { 44.7, 87, 148, 900 }, + [818] = { 44.1, 85, 148, 900 }, + [819] = { 44.3, 84.3, 148, 900 }, + [820] = { 43.1, 58.6, 148, 900 }, + [821] = { 39.6, 53.7, 148, 900 }, + [822] = { 30.2, 47.7, 148, 180 }, + [823] = { 45.9, 37.9, 148, 900 }, + [824] = { 50.9, 34.8, 148, 900 }, + [825] = { 50.5, 34.5, 148, 900 }, + [826] = { 52.4, 33.9, 148, 900 }, + [827] = { 52.7, 33.5, 148, 900 }, + [828] = { 56.5, 27.3, 148, 900 }, + [829] = { 55.3, 26.5, 148, 900 }, + [830] = { 64.6, 77.7, 215, 900 }, + [831] = { 44, 77.5, 215, 900 }, + [832] = { 44.4, 77.4, 215, 900 }, + [833] = { 44.3, 77.2, 215, 900 }, + [834] = { 45.2, 76.6, 215, 900 }, + [835] = { 45.1, 76.2, 215, 900 }, + [836] = { 44.1, 75.9, 215, 900 }, + [837] = { 60.1, 75.9, 215, 900 }, + [838] = { 48.3, 72, 215, 900 }, + [839] = { 35.4, 62.3, 215, 900 }, + [840] = { 47.6, 62.2, 215, 900 }, + [841] = { 47.5, 61.7, 215, 900 }, + [842] = { 46.6, 61.4, 215, 900 }, + [843] = { 46.6, 61, 215, 900 }, + [844] = { 46.7, 60.9, 215, 900 }, + [845] = { 48.4, 59.8, 215, 900 }, + [846] = { 48.8, 59.2, 215, 900 }, + [847] = { 48.3, 59.1, 215, 900 }, + [848] = { 45.9, 58.5, 215, 900 }, + [849] = { 45.3, 58.3, 215, 900 }, + [850] = { 45.6, 58.2, 215, 900 }, + [851] = { 45.8, 58.2, 215, 900 }, + [852] = { 46.1, 58.2, 215, 900 }, + [853] = { 45.8, 57.9, 215, 900 }, + [854] = { 47.7, 57.4, 215, 900 }, + [855] = { 47.8, 55.6, 215, 900 }, + [856] = { 47.6, 55.4, 215, 900 }, + [857] = { 31.5, 48.3, 215, 900 }, + [858] = { 53.7, 48.3, 215, 900 }, + [859] = { 59.1, 36.5, 215, 900 }, + [860] = { 59.1, 35.2, 215, 900 }, + [861] = { 41.5, 35, 215, 900 }, + [862] = { 41.4, 34.8, 215, 900 }, + [863] = { 41.7, 34.6, 215, 900 }, + [864] = { 60.7, 34.6, 215, 900 }, + [865] = { 41.5, 34.4, 215, 900 }, + [866] = { 41.8, 34.2, 215, 900 }, + [867] = { 41.7, 34.1, 215, 900 }, + [868] = { 61.8, 31.5, 215, 900 }, + [869] = { 37.3, 30, 215, 900 }, + [870] = { 39, 28.3, 215, 900 }, + [871] = { 40.2, 27.9, 215, 900 }, + [872] = { 40.4, 26.3, 215, 900 }, + [873] = { 38.6, 25.8, 215, 900 }, + [874] = { 59.9, 25.6, 215, 900 }, + [875] = { 45.2, 23.3, 215, 900 }, + [876] = { 45.9, 22.7, 215, 900 }, + [877] = { 45.9, 22.5, 215, 900 }, + [878] = { 39.2, 19.4, 215, 900 }, + [879] = { 40.5, 15.6, 215, 900 }, + [880] = { 71.4, 79.4, 267, 7200 }, + [881] = { 71.4, 79.3, 267, 7200 }, + [882] = { 52.1, 58.8, 267, 7200 }, + [883] = { 52.1, 58.7, 267, 120 }, + [884] = { 52.1, 58.7, 267, 7200 }, + [885] = { 51.1, 58.3, 267, 7200 }, + [886] = { 51.2, 58.3, 267, 7200 }, + [887] = { 51.1, 58.2, 267, 7200 }, + [888] = { 48.6, 57.2, 267, 7200 }, + [889] = { 48.6, 57.1, 267, 7200 }, + [890] = { 51.1, 57, 267, 7200 }, + [891] = { 48.8, 55.4, 267, 7200 }, + [892] = { 48.9, 55.4, 267, 7200 }, + [893] = { 48.9, 55.3, 267, 7200 }, + [894] = { 48.8, 55.3, 267, 7200 }, + [895] = { 37, 44.5, 267, 7200 }, + [896] = { 8.1, 40.7, 267, 7200 }, + [897] = { 36.9, 39.5, 267, 7200 }, + [898] = { 33, 34.6, 267, 7200 }, + [899] = { 33.1, 34.6, 267, 7200 }, + [900] = { 33.1, 34.5, 267, 7200 }, + [901] = { 33, 34.5, 267, 7200 }, + [902] = { 8.9, 26.2, 267, 7200 }, + [903] = { 8.8, 26.1, 267, 7200 }, + [904] = { 8.9, 26.1, 267, 7200 }, + [905] = { 50.7, 20.2, 267, 7200 }, + [906] = { 43.4, 19.7, 267, 7200 }, + [907] = { 8.6, 17.5, 267, 7200 }, + [908] = { 8.6, 17.4, 267, 7200 }, + [909] = { 98.8, 16.5, 267, 7200 }, + [910] = { 59.8, 7.7, 267, 7200 }, + [911] = { 78.3, 6.9, 267, 7200 }, + [912] = { 99.5, 3.3, 267, 7200 }, + [913] = { 89.4, 87, 331, 900 }, + [914] = { 89.3, 86.7, 331, 900 }, + [915] = { 89, 86.6, 331, 900 }, + [916] = { 88.7, 86.4, 331, 900 }, + [917] = { 90.6, 86.4, 331, 900 }, + [918] = { 90, 86.3, 331, 900 }, + [919] = { 90.3, 86.2, 331, 900 }, + [920] = { 90.9, 86.2, 331, 900 }, + [921] = { 88.9, 86.2, 331, 900 }, + [922] = { 89.1, 86.2, 331, 900 }, + [923] = { 90.5, 86.2, 331, 900 }, + [924] = { 89.9, 85.9, 331, 900 }, + [925] = { 90.1, 85.8, 331, 900 }, + [926] = { 89.7, 85.7, 331, 900 }, + [927] = { 89, 85.6, 331, 900 }, + [928] = { 89.3, 85.4, 331, 900 }, + [929] = { 89.8, 85.3, 331, 900 }, + [930] = { 89.2, 85.3, 331, 900 }, + [931] = { 88.5, 85.1, 331, 900 }, + [932] = { 89.4, 85, 331, 900 }, + [933] = { 88.8, 84.9, 331, 900 }, + [934] = { 89, 84.6, 331, 900 }, + [935] = { 88.6, 84.6, 331, 900 }, + [936] = { 54.1, 64.1, 331, 900 }, + [937] = { 56.1, 63.9, 331, 900 }, + [938] = { 56.6, 63.1, 331, 900 }, + [939] = { 54.2, 61.6, 331, 900 }, + [940] = { 74, 61, 331, 900 }, + [941] = { 74.2, 60.8, 331, 900 }, + [942] = { 74.3, 60.5, 331, 900 }, + [943] = { 74, 60.3, 331, 900 }, + [944] = { 74.1, 60.2, 331, 900 }, + [945] = { 18.1, 59.9, 331, 900 }, + [946] = { 50.1, 59.9, 331, 900 }, + [947] = { 73.3, 59.4, 331, 900 }, + [948] = { 73, 59, 331, 900 }, + [949] = { 72.7, 58.8, 331, 900 }, + [950] = { 73.1, 58.8, 331, 900 }, + [951] = { 72.6, 58.7, 331, 900 }, + [952] = { 72.3, 58.6, 331, 900 }, + [953] = { 73, 58.6, 331, 900 }, + [954] = { 72.6, 58.4, 331, 900 }, + [955] = { 72.4, 58.3, 331, 900 }, + [956] = { 72.8, 58.3, 331, 900 }, + [957] = { 89.8, 58.2, 331, 900 }, + [958] = { 88.8, 58.2, 331, 900 }, + [959] = { 73.1, 58.2, 331, 900 }, + [960] = { 88.6, 58.2, 331, 900 }, + [961] = { 72.6, 58.1, 331, 900 }, + [962] = { 73, 58, 331, 900 }, + [963] = { 89.8, 57.8, 331, 900 }, + [964] = { 72.1, 57.8, 331, 900 }, + [965] = { 72.5, 57.7, 331, 900 }, + [966] = { 89.3, 57.7, 331, 900 }, + [967] = { 88.7, 57.7, 331, 900 }, + [968] = { 73, 57.6, 331, 900 }, + [969] = { 73.3, 57.6, 331, 900 }, + [970] = { 72.2, 57.5, 331, 900 }, + [971] = { 89.5, 57.4, 331, 900 }, + [972] = { 72.1, 57.2, 331, 900 }, + [973] = { 72.4, 57, 331, 900 }, + [974] = { 73, 56.9, 331, 900 }, + [975] = { 73.2, 56.9, 331, 900 }, + [976] = { 66.7, 56.8, 331, 900 }, + [977] = { 72.3, 56.7, 331, 900 }, + [978] = { 73, 56.6, 331, 900 }, + [979] = { 72.1, 56.6, 331, 900 }, + [980] = { 72.7, 56.6, 331, 900 }, + [981] = { 73.3, 56.1, 331, 900 }, + [982] = { 73, 55.9, 331, 900 }, + [983] = { 72.8, 55.7, 331, 900 }, + [984] = { 73.1, 55.6, 331, 900 }, + [985] = { 91.9, 53.9, 331, 900 }, + [986] = { 36, 51.6, 331, 900 }, + [987] = { 81.2, 50.4, 331, 900 }, + [988] = { 80.7, 49.8, 331, 900 }, + [989] = { 81.8, 49.3, 331, 900 }, + [990] = { 80.7, 48.9, 331, 900 }, + [991] = { 39.4, 46.8, 331, 900 }, + [992] = { 86.2, 45.8, 331, 900 }, + [993] = { 36.6, 45.7, 331, 900 }, + [994] = { 31.4, 45.3, 331, 900 }, + [995] = { 35.4, 45.3, 331, 900 }, + [996] = { 78.4, 45, 331, 900 }, + [997] = { 85.2, 44.8, 331, 900 }, + [998] = { 30.9, 43.2, 331, 900 }, + [999] = { 32.5, 42.9, 331, 900 }, + [1000] = { 86.7, 42.8, 331, 900 }, + [1001] = { 34.1, 38.8, 331, 900 }, + [1002] = { 94.3, 37.2, 331, 900 }, + [1003] = { 93.8, 37.1, 331, 900 }, + [1004] = { 35.8, 36.7, 331, 900 }, + [1005] = { 39.7, 36.4, 331, 900 }, + [1006] = { 40.4, 34.6, 331, 900 }, + [1007] = { 11.9, 34.4, 331, 900 }, + [1008] = { 42.4, 34.3, 331, 900 }, + [1009] = { 42.4, 34.2, 331, 900 }, + [1010] = { 37.8, 34.1, 331, 900 }, + [1011] = { 41.7, 33.7, 331, 900 }, + [1012] = { 40.8, 32.7, 331, 900 }, + [1013] = { 41.3, 32.4, 331, 900 }, + [1014] = { 40.9, 31.6, 331, 900 }, + [1015] = { 14.8, 31.3, 331, 900 }, + [1016] = { 61.1, 67.7, 357, 900 }, + [1017] = { 61.1, 67.6, 357, 900 }, + [1018] = { 77.3, 56.8, 357, 900 }, + [1019] = { 73.1, 56.7, 357, 900 }, + [1020] = { 72.3, 56.7, 357, 900 }, + [1021] = { 75.5, 56.4, 357, 900 }, + [1022] = { 77.3, 56.4, 357, 900 }, + [1023] = { 73.2, 56.3, 357, 900 }, + [1024] = { 69.1, 55.8, 357, 900 }, + [1025] = { 75.5, 55, 357, 900 }, + [1026] = { 74.4, 54.8, 357, 900 }, + [1027] = { 68.6, 54.3, 357, 900 }, + [1028] = { 75.6, 54.2, 357, 900 }, + [1029] = { 71.6, 54.2, 357, 900 }, + [1030] = { 76.9, 54.1, 357, 900 }, + [1031] = { 76.2, 54.1, 357, 900 }, + [1032] = { 75.7, 53.3, 357, 900 }, + [1033] = { 70.5, 53.3, 357, 900 }, + [1034] = { 65.7, 52.6, 357, 900 }, + [1035] = { 65.1, 52.6, 357, 900 }, + [1036] = { 65.3, 51.9, 357, 900 }, + [1037] = { 66.4, 51.6, 357, 900 }, + [1038] = { 66, 51.6, 357, 900 }, + [1039] = { 69.9, 50.9, 357, 900 }, + [1040] = { 58.5, 48.2, 357, 900 }, + [1041] = { 76.7, 48.2, 357, 900 }, + [1042] = { 74.9, 45.3, 357, 900 }, + [1043] = { 74.7, 45.1, 357, 900 }, + [1044] = { 74.7, 44.9, 357, 900 }, + [1045] = { 30.5, 44.7, 357, 900 }, + [1046] = { 57.1, 44.2, 357, 900 }, + [1047] = { 44.9, 43.4, 357, 900 }, + [1048] = { 74.5, 42.8, 357, 900 }, + [1049] = { 76, 42.5, 357, 900 }, + [1050] = { 76.1, 42.4, 357, 900 }, + [1051] = { 75.9, 42.1, 357, 900 }, + [1052] = { 66.6, 39.3, 357, 180 }, + [1053] = { 72.7, 39.2, 357, 900 }, + [1054] = { 66.9, 39.2, 357, 180 }, + [1055] = { 66.8, 39.1, 357, 180 }, + [1056] = { 69.6, 38.9, 357, 900 }, + [1057] = { 69.7, 38.8, 357, 900 }, + [1058] = { 69.5, 38.6, 357, 900 }, + [1059] = { 66.6, 38.3, 357, 180 }, + [1060] = { 72.2, 36.6, 357, 900 }, + [1061] = { 80.9, 35.1, 357, 900 }, + [1062] = { 75.3, 29.7, 357, 900 }, + [1063] = { 74.5, 27.9, 357, 900 }, + [1064] = { 45.8, 16.5, 357, 900 }, + [1065] = { 43.5, 0.9, 357, 900 }, + [1066] = { 42.5, 0.9, 357, 900 }, + [1067] = { 39.5, 98.9, 361, 900 }, + [1068] = { 41.5, 98.6, 361, 900 }, + [1069] = { 41.5, 98.4, 361, 900 }, + [1070] = { 40.8, 98, 361, 900 }, + [1071] = { 39.9, 97, 361, 900 }, + [1072] = { 40.5, 96.6, 361, 900 }, + [1073] = { 40, 95.9, 361, 900 }, + [1074] = { 48.3, 93.9, 361, 180 }, + [1075] = { 49.1, 91.5, 361, 180 }, + [1076] = { 48.3, 91.4, 361, 180 }, + [1077] = { 48.3, 89.4, 361, 180 }, + [1078] = { 36.4, 44.3, 361, 180 }, + [1079] = { 36.2, 44.2, 361, 180 }, + [1080] = { 62.7, 10, 361, 180 }, + [1081] = { 64.8, 8.1, 361, 180 }, + [1082] = { 62.7, 7.7, 361, 180 }, + [1083] = { 61.4, 7.4, 361, 180 }, + [1084] = { 77.8, 77.3, 400, 180 }, + [1085] = { 67.7, 63.9, 400, 180 }, + [1086] = { 46.4, 57.6, 400, 180 }, + [1087] = { 44.1, 57.5, 400, 180 }, + [1088] = { 46.9, 56, 400, 180 }, + [1089] = { 64.4, 54, 400, 180 }, + [1090] = { 46.2, 52.9, 400, 180 }, + [1091] = { 46.1, 51.8, 400, 180 }, + [1092] = { 44.5, 51.5, 400, 180 }, + [1093] = { 45.9, 51.2, 400, 180 }, + [1094] = { 46, 51.1, 400, 180 }, + [1095] = { 53.9, 43, 400, 180 }, + [1096] = { 45.4, 42.3, 400, 180 }, + [1097] = { 39.3, 41.8, 400, 180 }, + [1098] = { 46, 41.7, 400, 180 }, + [1099] = { 39, 41.3, 400, 180 }, + [1100] = { 39.1, 41.2, 400, 180 }, + [1101] = { 38.7, 41.1, 400, 180 }, + [1102] = { 42.2, 40.7, 400, 180 }, + [1103] = { 48.4, 40.7, 400, 180 }, + [1104] = { 43.9, 40.6, 400, 180 }, + [1105] = { 34.1, 39.9, 400, 180 }, + [1106] = { 41.9, 38.9, 400, 180 }, + [1107] = { 45, 38.7, 400, 180 }, + [1108] = { 43.1, 37.4, 400, 180 }, + [1109] = { 41.8, 37.2, 400, 180 }, + [1110] = { 39.4, 36.8, 400, 180 }, + [1111] = { 41.5, 36.2, 400, 180 }, + [1112] = { 40, 33.7, 400, 180 }, + [1113] = { 21.4, 32.4, 400, 180 }, + [1114] = { 37.4, 32.3, 400, 180 }, + [1115] = { 33.2, 27.5, 400, 180 }, + [1116] = { 32.2, 22.4, 400, 180 }, + [1117] = { 17.8, 21.9, 400, 180 }, + [1118] = { 40.4, 95.4, 405, 900 }, + [1119] = { 38.9, 95.4, 405, 900 }, + [1120] = { 40.1, 93.8, 405, 900 }, + [1121] = { 38.9, 93.7, 405, 900 }, + [1122] = { 40.2, 91.7, 405, 900 }, + [1123] = { 34.6, 86.9, 405, 900 }, + [1124] = { 66.7, 79.6, 405, 900 }, + [1125] = { 72.2, 78, 405, 900 }, + [1126] = { 69.5, 78, 405, 900 }, + [1127] = { 70.8, 74.7, 405, 900 }, + [1128] = { 73.1, 73.2, 405, 900 }, + [1129] = { 23.3, 72.6, 405, 900 }, + [1130] = { 75.2, 68.3, 405, 900 }, + [1131] = { 55.1, 56.6, 405, 900 }, + [1132] = { 55.5, 56.2, 405, 900 }, + [1133] = { 55.3, 56, 405, 900 }, + [1134] = { 34, 54.4, 405, 900 }, + [1135] = { 71.4, 50.4, 405, 900 }, + [1136] = { 74, 49.7, 405, 900 }, + [1137] = { 74.3, 46.7, 405, 900 }, + [1138] = { 70.3, 43.5, 405, 900 }, + [1139] = { 53.2, 32.2, 405, 900 }, + [1140] = { 52.6, 29.2, 405, 900 }, + [1141] = { 53, 29.2, 405, 900 }, + [1142] = { 52.5, 28.9, 405, 900 }, + [1143] = { 53.1, 28.8, 405, 900 }, + [1144] = { 52.8, 28.5, 405, 900 }, + [1145] = { 68.5, 9, 405, 900 }, + [1146] = { 74.6, 98, 406, 900 }, + [1147] = { 78.5, 97.9, 406, 900 }, + [1148] = { 73.6, 95.5, 406, 900 }, + [1149] = { 71.3, 95.1, 406, 900 }, + [1150] = { 73.2, 95, 406, 900 }, + [1151] = { 82.4, 88, 406, 900 }, + [1152] = { 73.9, 86.3, 406, 900 }, + [1153] = { 73.5, 86, 406, 900 }, + [1154] = { 78.4, 85.9, 406, 900 }, + [1155] = { 73.7, 85.9, 406, 900 }, + [1156] = { 77.5, 85.5, 406, 900 }, + [1157] = { 73.4, 85.5, 406, 900 }, + [1158] = { 42.8, 84, 406, 900 }, + [1159] = { 59.4, 67.1, 406, 900 }, + [1160] = { 47.1, 64.5, 406, 900 }, + [1161] = { 47.5, 62.3, 406, 900 }, + [1162] = { 47.6, 61.8, 406, 900 }, + [1163] = { 47.7, 61.8, 406, 900 }, + [1164] = { 46, 58.7, 406, 900 }, + [1165] = { 78.8, 45.8, 406, 900 }, + [1166] = { 53, 16.7, 406, 900 }, + [1167] = { 36.8, 77.1, 440, 900 }, + [1168] = { 40.8, 57, 440, 900 }, + [1169] = { 40.4, 54.2, 440, 900 }, + [1170] = { 40.4, 54.1, 440, 900 }, + [1171] = { 73.3, 47.3, 440, 900 }, + [1172] = { 71.3, 45.9, 440, 900 }, + [1173] = { 72.8, 45.3, 440, 900 }, + [1174] = { 72.3, 44.2, 440, 900 }, + [1175] = { 70.9, 43.1, 440, 900 }, + [1176] = { 39.8, 43, 618, 900 }, + [1177] = { 41.5, 42.7, 618, 900 }, + [1178] = { 61.8, 38.6, 618, 900 }, + [1179] = { 66.8, 37.1, 618, 900 }, + [1180] = { 68.2, 37, 618, 900 }, + [1181] = { 33.1, 36.9, 618, 900 }, + [1182] = { 62.4, 36.5, 618, 900 }, + [1183] = { 24.9, 36.1, 618, 180 }, + [1184] = { 66.6, 35.8, 618, 900 }, + [1185] = { 67.4, 35.6, 618, 900 }, + [1186] = { 40.9, 88.8, 1377, 900 }, + [1187] = { 50.7, 69.3, 1377, 900 }, + [1188] = { 33.1, 52.5, 1377, 900 }, + [1189] = { 50.9, 38.4, 1377, 900 }, + [1190] = { 62.4, 45, 1497, 900 }, + [1191] = { 76.1, 36.3, 1519, 900 }, + [1192] = { 72.7, 95.2, 1537, 900 }, + [1193] = { 73.5, 94.1, 1537, 900 }, + [1194] = { 67.9, 92.7, 1537, 900 }, + [1195] = { 70.8, 92, 1537, 900 }, + [1196] = { 71.7, 90.9, 1537, 900 }, + [1197] = { 56.3, 88.4, 1537, 900 }, + [1198] = { 68.2, 87.5, 1537, 900 }, + [1199] = { 72.8, 86.7, 1537, 900 }, + [1200] = { 46.7, 86.4, 1537, 900 }, + [1201] = { 62.3, 86.1, 1537, 900 }, + [1202] = { 69.3, 86.1, 1537, 900 }, + [1203] = { 51, 85.8, 1537, 900 }, + [1204] = { 38.6, 85.3, 1537, 900 }, + [1205] = { 43.1, 83.8, 1537, 900 }, + [1206] = { 32.6, 81, 1537, 900 }, + [1207] = { 46.4, 79.7, 1537, 900 }, + [1208] = { 43.3, 79.7, 1537, 900 }, + [1209] = { 49.9, 79.5, 1537, 900 }, + [1210] = { 41.5, 78.4, 1537, 900 }, + [1211] = { 29.7, 78, 1537, 900 }, + [1212] = { 56.3, 76.7, 1537, 900 }, + [1213] = { 38, 76.4, 1537, 900 }, + [1214] = { 70.9, 74.2, 1537, 900 }, + [1215] = { 39.5, 72.3, 1537, 900 }, + [1216] = { 38.3, 70.6, 1537, 900 }, + [1217] = { 35.5, 69.2, 1537, 900 }, + [1218] = { 23, 65.8, 1537, 900 }, + [1219] = { 65, 64.9, 1537, 900 }, + [1220] = { 36.3, 63.6, 1537, 900 }, + [1221] = { 37.8, 62.1, 1537, 900 }, + [1222] = { 21.5, 61, 1537, 900 }, + [1223] = { 43.3, 59.5, 1537, 900 }, + [1224] = { 44.3, 59.5, 1537, 900 }, + [1225] = { 47.8, 59.4, 1537, 900 }, + [1226] = { 30.6, 59.3, 1537, 900 }, + [1227] = { 33.7, 58.8, 1537, 900 }, + [1228] = { 53.4, 57.1, 1537, 900 }, + [1229] = { 35, 57, 1537, 900 }, + [1230] = { 66.4, 56.4, 1537, 900 }, + [1231] = { 25.6, 54.9, 1537, 900 }, + [1232] = { 74.2, 54.8, 1537, 900 }, + [1233] = { 65.7, 54.7, 1537, 900 }, + [1234] = { 29.5, 54.7, 1537, 900 }, + [1235] = { 21, 54.6, 1537, 900 }, + [1236] = { 36, 54.5, 1537, 900 }, + [1237] = { 37.1, 53.1, 1537, 900 }, + [1238] = { 28.3, 52.9, 1537, 900 }, + [1239] = { 74.4, 52.8, 1537, 900 }, + [1240] = { 56.4, 52.6, 1537, 900 }, + [1241] = { 72.4, 51.3, 1537, 900 }, + [1242] = { 45.2, 50.2, 1537, 900 }, + [1243] = { 32.9, 49.7, 1537, 900 }, + [1244] = { 37.7, 49.6, 1537, 900 }, + [1245] = { 24.8, 49.4, 1537, 900 }, + [1246] = { 72.6, 49.1, 1537, 900 }, + [1247] = { 20.6, 48.8, 1537, 900 }, + [1248] = { 74.9, 48.4, 1537, 900 }, + [1249] = { 38, 48.3, 1537, 900 }, + [1250] = { 44.2, 48.2, 1537, 900 }, + [1251] = { 58.7, 47.9, 1537, 900 }, + [1252] = { 34.5, 47.6, 1537, 900 }, + [1253] = { 31.7, 47.6, 1537, 900 }, + [1254] = { 75.1, 46.6, 1537, 900 }, + [1255] = { 40.1, 46, 1537, 900 }, + [1256] = { 33.4, 45.5, 1537, 900 }, + [1257] = { 25.1, 45.3, 1537, 900 }, + [1258] = { 19.8, 45.3, 1537, 900 }, + [1259] = { 38.7, 45, 1537, 900 }, + [1260] = { 58.4, 44.3, 1537, 900 }, + [1261] = { 66.7, 43.1, 1537, 900 }, + [1262] = { 67.7, 42, 1537, 900 }, + [1263] = { 25.3, 40.8, 1537, 900 }, + [1264] = { 20.4, 40.3, 1537, 900 }, + [1265] = { 57.9, 38.2, 1537, 900 }, + [1266] = { 21.1, 37, 1537, 900 }, + [1267] = { 25.7, 35.6, 1537, 900 }, + [1268] = { 42.4, 33.8, 1537, 900 }, + [1269] = { 21.7, 32.9, 1537, 900 }, + [1270] = { 55.5, 31.9, 1537, 900 }, + [1271] = { 28.9, 31.1, 1537, 900 }, + [1272] = { 44.6, 30.9, 1537, 900 }, + [1273] = { 51.8, 30.5, 1537, 900 }, + [1274] = { 74.4, 30, 1537, 900 }, + [1275] = { 48, 29.3, 1537, 900 }, + [1276] = { 73.7, 27.6, 1537, 900 }, + [1277] = { 23.4, 26.2, 1537, 900 }, + [1278] = { 69.2, 24.4, 1537, 900 }, + [1279] = { 67.6, 24.1, 1537, 900 }, + [1280] = { 20.3, 24, 1537, 900 }, + [1281] = { 70.6, 23.5, 1537, 900 }, + [1282] = { 66.2, 22.7, 1537, 900 }, + [1283] = { 65.5, 20.4, 1537, 900 }, + [1284] = { 65.7, 18, 1537, 900 }, + [1285] = { 66.5, 16.1, 1537, 900 }, + [1286] = { 38.9, 14.1, 1537, 900 }, + [1287] = { 26.9, 13.2, 1537, 900 }, + [1288] = { 40.9, 12.6, 1537, 900 }, + [1289] = { 50.5, 12.4, 1537, 900 }, + [1290] = { 26.4, 12.3, 1537, 900 }, + [1291] = { 57.7, 12, 1537, 900 }, + [1292] = { 38.4, 11.4, 1537, 900 }, + [1293] = { 28.4, 11.4, 1537, 900 }, + [1294] = { 53.2, 11.2, 1537, 900 }, + [1295] = { 24, 11, 1537, 900 }, + [1296] = { 64.4, 10.9, 1537, 900 }, + [1297] = { 25.5, 10.8, 1537, 900 }, + [1298] = { 27.9, 10.4, 1537, 900 }, + [1299] = { 55.3, 10.4, 1537, 900 }, + [1300] = { 43.3, 10.2, 1537, 900 }, + [1301] = { 63, 9.3, 1537, 900 }, + [1302] = { 27.1, 8.9, 1537, 900 }, + [1303] = { 47.3, 8.8, 1537, 900 }, + [1304] = { 37.6, 8.4, 1537, 900 }, + [1305] = { 24.3, 8.2, 1537, 900 }, + [1306] = { 51.8, 7.9, 1537, 900 }, + [1307] = { 27.5, 6.7, 1537, 900 }, + [1308] = { 25.6, 6.6, 1537, 900 }, + [1309] = { 32.9, 6.3, 1537, 900 }, + [1310] = { 22.2, 6.1, 1537, 900 }, + [1311] = { 22.6, 5.4, 1537, 900 }, + [1312] = { 36.7, 4.8, 1537, 900 }, + [1313] = { 24, 3.7, 1537, 900 }, + [1314] = { 24.6, 3.1, 1537, 900 }, + [1315] = { 26.7, 2.9, 1537, 900 }, + [1316] = { 48.4, 92.5, 1637, 900 }, + [1317] = { 50.9, 90.6, 1637, 900 }, + [1318] = { 52.2, 90.4, 1637, 900 }, + [1319] = { 53.5, 90.1, 1637, 900 }, + [1320] = { 49.4, 89.3, 1637, 900 }, + [1321] = { 53.2, 87.2, 1637, 900 }, + [1322] = { 50, 83.3, 1637, 900 }, + [1323] = { 53.7, 81.6, 1637, 900 }, + [1324] = { 47.7, 80.9, 1637, 900 }, + [1325] = { 53.3, 80.5, 1637, 900 }, + [1326] = { 49.7, 78.7, 1637, 900 }, + [1327] = { 46, 77.5, 1637, 900 }, + [1328] = { 50.2, 76.8, 1637, 900 }, + [1329] = { 48.1, 76.8, 1637, 900 }, + [1330] = { 36.1, 76.2, 1637, 900 }, + [1331] = { 51.9, 75.4, 1637, 900 }, + [1332] = { 48.1, 75.2, 1637, 900 }, + [1333] = { 29.8, 74.5, 1637, 900 }, + [1334] = { 43.8, 74, 1637, 900 }, + [1335] = { 53.2, 72.9, 1637, 900 }, + [1336] = { 50.2, 72.5, 1637, 900 }, + [1337] = { 47.3, 71.5, 1637, 900 }, + [1338] = { 29.6, 71.3, 1637, 900 }, + [1339] = { 54.7, 71.1, 1637, 900 }, + [1340] = { 45.2, 70.4, 1637, 900 }, + [1341] = { 48.8, 70.1, 1637, 900 }, + [1342] = { 42.4, 69.4, 1637, 900 }, + [1343] = { 50.4, 69.2, 1637, 900 }, + [1344] = { 44.3, 68.9, 1637, 900 }, + [1345] = { 54.9, 68.2, 1637, 900 }, + [1346] = { 47.8, 68.1, 1637, 900 }, + [1347] = { 48.5, 68, 1637, 900 }, + [1348] = { 54, 67.8, 1637, 900 }, + [1349] = { 49.6, 67.3, 1637, 900 }, + [1350] = { 45.2, 66.2, 1637, 900 }, + [1351] = { 44.9, 65.8, 1637, 900 }, + [1352] = { 47, 65.4, 1637, 900 }, + [1353] = { 46, 65.1, 1637, 900 }, + [1354] = { 48.5, 65, 1637, 900 }, + [1355] = { 16.1, 64, 1637, 900 }, + [1356] = { 46.7, 63.9, 1637, 900 }, + [1357] = { 45.8, 63.2, 1637, 900 }, + [1358] = { 47.3, 63, 1637, 900 }, + [1359] = { 30.2, 62.2, 1637, 900 }, + [1360] = { 15, 61.7, 1637, 900 }, + [1361] = { 41.8, 61, 1637, 900 }, + [1362] = { 47, 60.9, 1637, 900 }, + [1363] = { 37.3, 58.9, 1637, 900 }, + [1364] = { 53.1, 57.8, 1637, 900 }, + [1365] = { 43.1, 57.8, 1637, 900 }, + [1366] = { 56.8, 57.4, 1637, 900 }, + [1367] = { 49.9, 57.1, 1637, 900 }, + [1368] = { 45.2, 56.8, 1637, 900 }, + [1369] = { 46.1, 56.7, 1637, 900 }, + [1370] = { 52.4, 56.4, 1637, 900 }, + [1371] = { 41.2, 56, 1637, 900 }, + [1372] = { 37.7, 55.2, 1637, 900 }, + [1373] = { 60.8, 55.2, 1637, 900 }, + [1374] = { 44.2, 54.8, 1637, 900 }, + [1375] = { 58.2, 54.3, 1637, 900 }, + [1376] = { 46.6, 53.9, 1637, 900 }, + [1377] = { 42.6, 53.2, 1637, 900 }, + [1378] = { 57, 53.2, 1637, 900 }, + [1379] = { 58.1, 52.9, 1637, 900 }, + [1380] = { 49.1, 52.8, 1637, 900 }, + [1381] = { 59, 52.1, 1637, 900 }, + [1382] = { 22.7, 51.9, 1637, 900 }, + [1383] = { 37.1, 51.9, 1637, 900 }, + [1384] = { 62.5, 51.6, 1637, 900 }, + [1385] = { 44.3, 51.3, 1637, 900 }, + [1386] = { 63.8, 51, 1637, 900 }, + [1387] = { 51.1, 50.9, 1637, 900 }, + [1388] = { 58.2, 50.8, 1637, 900 }, + [1389] = { 49.3, 50.6, 1637, 900 }, + [1390] = { 59.4, 50.6, 1637, 900 }, + [1391] = { 43.8, 50.2, 1637, 900 }, + [1392] = { 44.8, 50.1, 1637, 900 }, + [1393] = { 63.7, 49.2, 1637, 900 }, + [1394] = { 62.4, 49, 1637, 900 }, + [1395] = { 48.4, 48.8, 1637, 900 }, + [1396] = { 59, 47.8, 1637, 900 }, + [1397] = { 45.9, 47.7, 1637, 900 }, + [1398] = { 51.6, 47.3, 1637, 900 }, + [1399] = { 47.4, 47.2, 1637, 900 }, + [1400] = { 56.4, 47.1, 1637, 900 }, + [1401] = { 55.5, 46.3, 1637, 900 }, + [1402] = { 63.3, 45.9, 1637, 900 }, + [1403] = { 50.9, 45.9, 1637, 900 }, + [1404] = { 48.4, 45.3, 1637, 900 }, + [1405] = { 61.7, 44.8, 1637, 900 }, + [1406] = { 56.6, 44.8, 1637, 900 }, + [1407] = { 52.9, 44.8, 1637, 900 }, + [1408] = { 62.7, 43.7, 1637, 900 }, + [1409] = { 59.9, 43, 1637, 900 }, + [1410] = { 72.6, 43, 1637, 900 }, + [1411] = { 45.6, 42.6, 1637, 900 }, + [1412] = { 74, 41.8, 1637, 900 }, + [1413] = { 45.1, 41.7, 1637, 900 }, + [1414] = { 65.8, 41.4, 1637, 900 }, + [1415] = { 46.2, 41.4, 1637, 900 }, + [1416] = { 55, 41.2, 1637, 900 }, + [1417] = { 52.5, 41.2, 1637, 900 }, + [1418] = { 33.1, 41, 1637, 900 }, + [1419] = { 33.8, 40.9, 1637, 900 }, + [1420] = { 72.5, 40.7, 1637, 900 }, + [1421] = { 62.7, 40.5, 1637, 900 }, + [1422] = { 32.1, 40.5, 1637, 900 }, + [1423] = { 66.9, 40.4, 1637, 900 }, + [1424] = { 34.7, 40.2, 1637, 900 }, + [1425] = { 41.9, 40.1, 1637, 900 }, + [1426] = { 50.3, 39.9, 1637, 900 }, + [1427] = { 31.6, 39.8, 1637, 900 }, + [1428] = { 54.1, 39.8, 1637, 900 }, + [1429] = { 65.1, 39.8, 1637, 900 }, + [1430] = { 77.9, 39.5, 1637, 900 }, + [1431] = { 35.2, 39.4, 1637, 900 }, + [1432] = { 55.7, 38.9, 1637, 900 }, + [1433] = { 79.2, 38.8, 1637, 900 }, + [1434] = { 37.8, 38.6, 1637, 900 }, + [1435] = { 61.8, 38.6, 1637, 900 }, + [1436] = { 39.1, 38.5, 1637, 900 }, + [1437] = { 31.2, 38.4, 1637, 900 }, + [1438] = { 32.4, 38.4, 1637, 900 }, + [1439] = { 52.5, 38.3, 1637, 900 }, + [1440] = { 34, 38.3, 1637, 900 }, + [1441] = { 53.3, 38.2, 1637, 900 }, + [1442] = { 76.9, 38.1, 1637, 900 }, + [1443] = { 38.4, 38, 1637, 900 }, + [1444] = { 55.1, 37.9, 1637, 900 }, + [1445] = { 35.6, 37.8, 1637, 900 }, + [1446] = { 63.4, 37.8, 1637, 900 }, + [1447] = { 64.9, 37.8, 1637, 900 }, + [1448] = { 35.9, 37.8, 1637, 900 }, + [1449] = { 42.7, 37.8, 1637, 900 }, + [1450] = { 36.9, 37.7, 1637, 900 }, + [1451] = { 72.2, 37.7, 1637, 900 }, + [1452] = { 59.7, 37.5, 1637, 900 }, + [1453] = { 31.1, 37.4, 1637, 900 }, + [1454] = { 32.3, 37.1, 1637, 900 }, + [1455] = { 35.6, 37, 1637, 900 }, + [1456] = { 35.9, 37, 1637, 900 }, + [1457] = { 34, 37, 1637, 900 }, + [1458] = { 36.9, 36.9, 1637, 900 }, + [1459] = { 58.4, 36.9, 1637, 900 }, + [1460] = { 59.2, 36.4, 1637, 900 }, + [1461] = { 38.3, 36.3, 1637, 900 }, + [1462] = { 31.4, 35.9, 1637, 900 }, + [1463] = { 67.4, 35.9, 1637, 900 }, + [1464] = { 42.5, 35.9, 1637, 900 }, + [1465] = { 37.6, 35.8, 1637, 900 }, + [1466] = { 38.9, 35.6, 1637, 900 }, + [1467] = { 72.4, 35.6, 1637, 900 }, + [1468] = { 35, 35.5, 1637, 900 }, + [1469] = { 31.9, 35.1, 1637, 900 }, + [1470] = { 34.5, 34.9, 1637, 900 }, + [1471] = { 32.8, 34.4, 1637, 900 }, + [1472] = { 53.4, 34.3, 1637, 900 }, + [1473] = { 33.5, 34.3, 1637, 900 }, + [1474] = { 49.4, 34.2, 1637, 900 }, + [1475] = { 56.3, 34, 1637, 900 }, + [1476] = { 46.9, 34, 1637, 900 }, + [1477] = { 56.2, 33.9, 1637, 900 }, + [1478] = { 40.6, 33.6, 1637, 900 }, + [1479] = { 75, 33, 1637, 900 }, + [1480] = { 55.8, 32.6, 1637, 900 }, + [1481] = { 78.8, 32.1, 1637, 900 }, + [1482] = { 80, 31.9, 1637, 900 }, + [1483] = { 78.5, 31.1, 1637, 900 }, + [1484] = { 80.3, 31, 1637, 900 }, + [1485] = { 80, 30, 1637, 900 }, + [1486] = { 79.4, 29.7, 1637, 900 }, + [1487] = { 73.9, 29.6, 1637, 900 }, + [1488] = { 68.1, 26.9, 1637, 900 }, + [1489] = { 69.5, 26.7, 1637, 900 }, + [1490] = { 75.6, 26, 1637, 900 }, + [1491] = { 73.4, 25.6, 1637, 900 }, + [1492] = { 68.3, 25.5, 1637, 900 }, + [1493] = { 67.9, 24.9, 1637, 900 }, + [1494] = { 76.7, 24.3, 1637, 900 }, + [1495] = { 75.2, 23.7, 1637, 900 }, + [1496] = { 83.1, 23.2, 1637, 900 }, + [1497] = { 72.7, 22.5, 1637, 900 }, + [1498] = { 80.1, 22.2, 1637, 900 }, + [1499] = { 77.6, 20.1, 1637, 900 }, + [1500] = { 81.8, 19.8, 1637, 900 }, + [1501] = { 74.2, 19.4, 1637, 900 }, + [1502] = { 68, 19.1, 1637, 900 }, + [1503] = { 75.7, 18.4, 1637, 900 }, + [1504] = { 73.1, 18.3, 1637, 900 }, + [1505] = { 71, 18.2, 1637, 900 }, + [1506] = { 82.3, 17.8, 1637, 900 }, + [1507] = { 73.1, 15.9, 1637, 900 }, + [1508] = { 75.8, 15.2, 1637, 900 }, + [1509] = { 74.9, 14.3, 1637, 900 }, + [1510] = { 79.1, 14.2, 1637, 900 }, + [1511] = { 76.5, 13.7, 1637, 900 }, + [1512] = { 78.5, 13.5, 1637, 900 }, + [1513] = { 75.6, 12.9, 1637, 900 }, + [1514] = { 79.3, 12.5, 1637, 900 }, + [1515] = { 78.6, 11.7, 1637, 900 }, + [1516] = { 74.8, 10.1, 1637, 900 }, + [1517] = { 78.9, 9.8, 1637, 900 }, + [1518] = { 74.1, 9.6, 1637, 900 }, + [1519] = { 79.8, 9.5, 1637, 900 }, + [1520] = { 75.9, 9.1, 1637, 900 }, + [1521] = { 75.1, 8.6, 1637, 900 }, + [1522] = { 78.8, 7.9, 1637, 900 }, + [1523] = { 76.8, 7.9, 1637, 900 }, + [1524] = { 78.1, 7.2, 1637, 900 }, + [1525] = { 78.9, 6.6, 1637, 900 }, + [1526] = { 76.6, 6.6, 1637, 900 }, + [1527] = { 57.7, 89.1, 1638, 900 }, + [1528] = { 57.1, 88.6, 1638, 900 }, + [1529] = { 58.6, 87.4, 1638, 900 }, + [1530] = { 57.7, 86.6, 1638, 900 }, + [1531] = { 59.1, 85.5, 1638, 900 }, + [1532] = { 58.5, 84.9, 1638, 900 }, + [1533] = { 37.1, 64.6, 1638, 900 }, + [1534] = { 45.5, 56.3, 1638, 900 }, + [1535] = { 51.4, 54.2, 1638, 900 }, + [1536] = { 52, 46.5, 1638, 900 }, + [1537] = { 43.1, 44, 1638, 900 }, + [1538] = { 76, 31.8, 1638, 900 }, + [1539] = { 79.3, 29, 1638, 900 }, + [1540] = { 79.1, 27.8, 1638, 900 }, + [1541] = { 99.8, 96.9, 1657, 900 }, + [1542] = { 49.6, 88.8, 2597, 60 }, + [1543] = { 46.1, 84.1, 2597, 60 }, + [1544] = { 46.4, 84, 2597, 60 }, + [1545] = { 48.7, 83.8, 2597, 60 }, + [1546] = { 47.2, 83.7, 2597, 60 }, + [1547] = { 48.6, 82.9, 2597, 60 }, + [1548] = { 50.2, 82.4, 2597, 60 }, + [1549] = { 50.8, 81.5, 2597, 60 }, + [1550] = { 48.4, 81, 2597, 60 }, + [1551] = { 50.1, 78.8, 2597, 60 }, + [1552] = { 50.4, 78.8, 2597, 60 }, + [1553] = { 48.3, 77.3, 2597, 60 }, + [1554] = { 48.3, 76.7, 2597, 60 }, + [1555] = { 52.2, 37.3, 2597, 60 }, + [1556] = { 52.1, 37.3, 2597, 60 }, + [1557] = { 52, 36.6, 2597, 60 }, + }, + }, + [2062] = { + ["coords"] = { + [1] = { 31.3, 49.3, 44, 7200 }, + }, + }, + [2066] = { + ["coords"] = { + [1] = { 29.8, 57.2, 3, 900 }, + [2] = { 2.9, 48, 3, 900 }, + [3] = { 66, 23, 3, 900 }, + [4] = { 47.7, 53.6, 4, 900 }, + [5] = { 47.4, 53.4, 4, 900 }, + [6] = { 64.5, 47.2, 4, 900 }, + [7] = { 50.5, 14.4, 4, 900 }, + [8] = { 44.1, 12.4, 4, 900 }, + [9] = { 81.3, 80.6, 8, 600 }, + [10] = { 50.1, 49, 8, 600 }, + [11] = { 60.8, 40.6, 10, 3600 }, + [12] = { 48, 76, 11, 7200 }, + [13] = { 53.4, 54.3, 11, 7200 }, + [14] = { 49.3, 46.6, 11, 7200 }, + [15] = { 45.8, 45.3, 11, 7200 }, + [16] = { 45.5, 42.9, 11, 7200 }, + [17] = { 46.4, 79.3, 14, 900 }, + [18] = { 55.7, 73.8, 14, 900 }, + [19] = { 44.6, 50.5, 14, 900 }, + [20] = { 47.3, 49.5, 14, 900 }, + [21] = { 49.2, 48.8, 14, 900 }, + [22] = { 42.8, 39, 14, 900 }, + [23] = { 36.2, 31.3, 15, 900 }, + [24] = { 48.8, 99.2, 17, 180 }, + [25] = { 47.9, 97.8, 17, 180 }, + [26] = { 47, 94.4, 17, 180 }, + [27] = { 46.2, 90.3, 17, 900 }, + [28] = { 54.3, 70.2, 17, 900 }, + [29] = { 44.7, 59, 17, 900 }, + [30] = { 55.8, 46, 17, 900 }, + [31] = { 52.9, 44.7, 17, 900 }, + [32] = { 65.9, 43.8, 17, 900 }, + [33] = { 53.8, 42.9, 17, 900 }, + [34] = { 57, 41, 17, 900 }, + [35] = { 44.5, 37.7, 17, 900 }, + [36] = { 52.9, 36.7, 17, 900 }, + [37] = { 57.2, 30.1, 17, 900 }, + [38] = { 55.5, 27, 17, 900 }, + [39] = { 42.3, 26.8, 17, 900 }, + [40] = { 45.8, 25.6, 17, 900 }, + [41] = { 43.6, 23.6, 17, 900 }, + [42] = { 43.9, 21.4, 17, 900 }, + [43] = { 47.4, 19.3, 17, 900 }, + [44] = { 46.4, 18, 17, 900 }, + [45] = { 47.7, 17.9, 17, 900 }, + [46] = { 39.5, 58.7, 33, 900 }, + [47] = { 24.4, 53.9, 33, 900 }, + [48] = { 34.9, 51.8, 33, 900 }, + [49] = { 44.6, 43.2, 33, 900 }, + [50] = { 46.4, 39, 33, 900 }, + [51] = { 32, 28.5, 33, 900 }, + [52] = { 29.8, 19.3, 33, 900 }, + [53] = { 24, 9.7, 33, 900 }, + [54] = { 25.5, 9.1, 33, 900 }, + [55] = { 37.9, 50.1, 36, 7200 }, + [56] = { 36.2, 83.7, 38, 7200 }, + [57] = { 35.5, 80.7, 38, 7200 }, + [58] = { 24.9, 29.9, 38, 7200 }, + [59] = { 69.3, 22.6, 38, 7200 }, + [60] = { 35.3, 16.9, 38, 7200 }, + [61] = { 58.8, 73, 41, 900 }, + [62] = { 52.9, 60.8, 41, 900 }, + [63] = { 31.8, 83.1, 45, 7200 }, + [64] = { 34, 80.6, 45, 7200 }, + [65] = { 53.2, 74.3, 45, 7200 }, + [66] = { 64.8, 73.2, 45, 7200 }, + [67] = { 63.2, 67.4, 45, 7200 }, + [68] = { 46.1, 47.4, 45, 7200 }, + [69] = { 76.8, 61.9, 46, 7200 }, + [70] = { 57.1, 61.6, 46, 7200 }, + [71] = { 31.1, 61.4, 46, 7200 }, + [72] = { 49.2, 56.4, 46, 7200 }, + [73] = { 91.9, 53.7, 46, 7200 }, + [74] = { 35.9, 48.7, 46, 7200 }, + [75] = { 21.4, 47.2, 46, 7200 }, + [76] = { 88.7, 37.2, 46, 7200 }, + [77] = { 42.9, 37.1, 46, 7200 }, + [78] = { 43.5, 34, 46, 7200 }, + [79] = { 84.3, 27.4, 46, 7200 }, + [80] = { 63.4, 83.1, 47, 7200 }, + [81] = { 49, 70, 47, 7200 }, + [82] = { 48.1, 68.6, 47, 7200 }, + [83] = { 49.9, 68.6, 47, 7200 }, + [84] = { 49, 67.4, 47, 7200 }, + [85] = { 60.6, 65, 47, 7200 }, + [86] = { 71.2, 48.4, 47, 7200 }, + [87] = { 66.2, 44.5, 47, 7200 }, + [88] = { 53.2, 39, 47, 7200 }, + [89] = { 82, 39.3, 51, 900 }, + [90] = { 72.2, 58.5, 139, 900 }, + [91] = { 47.6, 43.1, 139, 900 }, + [92] = { 46.9, 42.4, 139, 900 }, + [93] = { 42.6, 86.4, 148, 900 }, + [94] = { 39.9, 78.3, 148, 900 }, + [95] = { 36.5, 76.6, 148, 900 }, + [96] = { 52.4, 33.4, 148, 900 }, + [97] = { 55, 27.9, 148, 900 }, + [98] = { 56.9, 27.4, 148, 900 }, + [99] = { 57.3, 26.2, 148, 900 }, + [100] = { 57.8, 25.7, 148, 900 }, + [101] = { 42.5, 92.3, 215, 900 }, + [102] = { 64.6, 78.8, 215, 900 }, + [103] = { 45.5, 22.8, 215, 900 }, + [104] = { 72.8, 80.6, 331, 900 }, + [105] = { 69.8, 71.4, 331, 900 }, + [106] = { 62, 73.3, 357, 900 }, + [107] = { 59.6, 68.5, 357, 900 }, + [108] = { 58.4, 67.7, 357, 900 }, + [109] = { 60.7, 66.8, 357, 900 }, + [110] = { 59.4, 64.5, 357, 900 }, + [111] = { 59.9, 63.1, 357, 900 }, + [112] = { 60.9, 56.2, 357, 900 }, + [113] = { 71.5, 56.1, 357, 900 }, + [114] = { 59.8, 49.8, 357, 900 }, + [115] = { 59.9, 46.4, 357, 900 }, + [116] = { 58.4, 45.9, 357, 900 }, + [117] = { 60.3, 45.8, 357, 900 }, + [118] = { 62.6, 45.5, 357, 900 }, + [119] = { 56.1, 45.2, 357, 900 }, + [120] = { 61.4, 44.4, 357, 900 }, + [121] = { 58.6, 44.3, 357, 900 }, + [122] = { 60.9, 44.3, 357, 900 }, + [123] = { 58.5, 44, 357, 900 }, + [124] = { 68.7, 40, 357, 180 }, + [125] = { 69.6, 39.2, 357, 900 }, + [126] = { 66.5, 38.8, 357, 180 }, + [127] = { 72, 37.4, 357, 900 }, + [128] = { 80.2, 35, 357, 900 }, + [129] = { 79.7, 34.9, 357, 900 }, + [130] = { 45.1, 25.4, 357, 900 }, + [131] = { 42.4, 22.1, 357, 900 }, + [132] = { 45.6, 50.6, 400, 180 }, + [133] = { 47.1, 41.5, 400, 180 }, + [134] = { 45.1, 40.3, 400, 180 }, + [135] = { 43, 38.4, 400, 180 }, + [136] = { 34, 38.3, 400, 180 }, + [137] = { 41.2, 37.9, 400, 180 }, + [138] = { 41, 35.1, 400, 180 }, + [139] = { 38.7, 27.1, 400, 180 }, + [140] = { 18.4, 22.7, 400, 180 }, + [141] = { 18.9, 22, 400, 180 }, + [142] = { 75.9, 87.2, 406, 900 }, + [143] = { 40.6, 54.1, 440, 900 }, + [144] = { 40.2, 51.5, 440, 900 }, + [145] = { 65.5, 36.7, 440, 900 }, + [146] = { 52.8, 27.5, 440, 900 }, + [147] = { 22.8, 17, 490, 900 }, + [148] = { 67.1, 35.7, 618, 900 }, + [149] = { 50.9, 68.7, 1377, 900 }, + [150] = { 39.8, 46.4, 1377, 900 }, + [151] = { 40.6, 44.4, 1377, 900 }, + [152] = { 38, 44.3, 1377, 900 }, + [153] = { 25.2, 36.1, 1377, 900 }, + [154] = { 27, 34.4, 1377, 900 }, + [155] = { 66.8, 21, 1377, 900 }, + [156] = { 81.8, 18.4, 1377, 900 }, + [157] = { 68.4, 16.8, 1377, 900 }, + [158] = { 77.2, 29.3, 1638, 900 }, + [159] = { 51.4, 64.7, 2597, 60 }, + }, + }, + [2068] = { + ["coords"] = { + [1] = { 73.3, 92.1, 47, 180 }, + [2] = { 73.9, 91.2, 47, 180 }, + [3] = { 73.6, 89.3, 47, 180 }, + [4] = { 74.9, 88.4, 47, 180 }, + [5] = { 75.1, 86.1, 47, 180 }, + [6] = { 76.3, 85.6, 47, 180 }, + [7] = { 75.9, 83.3, 47, 180 }, + [8] = { 77.4, 83.3, 47, 180 }, + [9] = { 78.4, 82.3, 47, 180 }, + [10] = { 76.1, 81.7, 47, 180 }, + [11] = { 79.6, 81.6, 47, 180 }, + [12] = { 78.1, 80.8, 47, 180 }, + [13] = { 79.1, 78.9, 47, 180 }, + [14] = { 78.3, 77.7, 47, 180 }, + [15] = { 76, 77.5, 47, 180 }, + [16] = { 78.9, 76.4, 47, 180 }, + [17] = { 77.2, 76.2, 47, 180 }, + [18] = { 78.7, 76, 47, 180 }, + [19] = { 78.5, 75.8, 47, 180 }, + [20] = { 78.3, 75.6, 47, 180 }, + [21] = { 77.3, 75, 47, 180 }, + [22] = { 76.2, 73.2, 47, 180 }, + [23] = { 78.7, 70.6, 47, 180 }, + [24] = { 79.5, 70.3, 47, 180 }, + [25] = { 77.4, 70.3, 47, 180 }, + [26] = { 75.5, 70.2, 47, 180 }, + [27] = { 78.3, 68.9, 47, 180 }, + [28] = { 77.8, 65.5, 47, 180 }, + [29] = { 75.7, 64.3, 47, 180 }, + [30] = { 77.7, 62.6, 47, 180 }, + [31] = { 80, 61.5, 47, 180 }, + [32] = { 79.3, 60.5, 47, 180 }, + [33] = { 80, 59.8, 47, 180 }, + [34] = { 77.9, 58.3, 47, 180 }, + [35] = { 80, 57.3, 47, 180 }, + [36] = { 81.4, 57.2, 47, 180 }, + [37] = { 81.1, 55.3, 47, 180 }, + [38] = { 81.9, 54.1, 47, 180 }, + [39] = { 81.9, 52.8, 47, 180 }, + [40] = { 82.3, 50.7, 47, 180 }, + [41] = { 81.4, 50.5, 47, 180 }, + [42] = { 81.7, 49.3, 47, 180 }, + }, + }, + [2076] = { + ["coords"] = { + [1] = { 32.2, 27.6, 33, 900 }, + }, + ["fac"] = "H", + }, + [2082] = { + ["coords"] = { + [1] = { 52.1, 83.3, 28, 10 }, + }, + }, + [2083] = { + ["coords"] = { + [1] = { 27.3, 69.5, 33, 60 }, + }, + ["fac"] = "AH", + }, + [2084] = { + ["coords"] = { + [1] = { 64.8, 75.3, 11, 10 }, + }, + }, + [2086] = { + ["coords"] = { + [1] = { 27.7, 83.1, 33, 10 }, + [2] = { 27.1, 82.7, 33, 10 }, + [3] = { 27, 82.5, 33, 10 }, + [4] = { 29.6, 80.8, 33, 10 }, + }, + }, + [2087] = { + ["coords"] = { + [1] = { 27.7, 83.1, 33, 10 }, + [2] = { 27.2, 82.7, 33, 10 }, + [3] = { 27, 82.6, 33, 10 }, + [4] = { 29.6, 80.9, 33, 10 }, + }, + }, + [2096] = { + ["coords"] = { + [1] = { 43.7, 70.6, 1519, 900 }, + }, + }, + [2098] = { + ["coords"] = { + [1] = { 54.4, 17.9, 1519, 120 }, + }, + }, + [2099] = { + ["coords"] = { + [1] = { 53.1, 55.8, 1519, 900 }, + }, + }, + [2100] = { + ["coords"] = { + [1] = { 57.2, 55.2, 1519, 900 }, + }, + }, + [2101] = { + ["coords"] = { + [1] = { 52.6, 60.6, 1519, 900 }, + }, + }, + [2102] = { + ["coords"] = { + [1] = { 52.8, 31.3, 1519, 900 }, + }, + }, + [2105] = { + ["coords"] = { + [1] = { 49.7, 47.2, 1519, 900 }, + }, + }, + [2106] = { + ["coords"] = { + [1] = { 37.2, 45.3, 1519, 120 }, + }, + }, + [2108] = { + ["coords"] = { + [1] = { 67.6, 46, 1519, 900 }, + }, + }, + [2109] = { + ["coords"] = { + [1] = { 65.6, 59.9, 1519, 900 }, + }, + }, + [2110] = { + ["coords"] = { + [1] = { 56.8, 61.3, 1519, 120 }, + }, + }, + [2111] = { + ["coords"] = { + [1] = { 61.7, 52.8, 1519, 900 }, + }, + }, + [2112] = { + ["coords"] = { + [1] = { 57, 61.4, 1519, 900 }, + }, + }, + [2113] = { + ["coords"] = { + [1] = { 50.3, 51, 1519, 900 }, + }, + }, + [2115] = { + ["coords"] = { + [1] = { 64.2, 49.6, 1519, 900 }, + }, + }, + [2116] = { + ["coords"] = { + [1] = { 61.7, 52.6, 1519, 900 }, + }, + }, + [2117] = { + ["coords"] = { + [1] = { 64, 37.6, 1519, 900 }, + }, + }, + [2119] = { + ["coords"] = { + [1] = { 61.8, 52.6, 1519, 900 }, + }, + }, + [2120] = { + ["coords"] = { + [1] = { 62.9, 33.3, 1519, 900 }, + }, + }, + [2122] = { + ["coords"] = { + [1] = { 48.5, 62.6, 1519, 900 }, + }, + }, + [2123] = { + ["coords"] = { + [1] = { 59.6, 58, 1519, 900 }, + }, + }, + [2124] = { + ["coords"] = { + [1] = { 56.8, 61.5, 1519, 120 }, + [2] = { 36.3, 50.1, 1519, 120 }, + }, + }, + [2125] = { + ["coords"] = { + [1] = { 63.9, 37.8, 1519, 900 }, + }, + }, + [2127] = { + ["coords"] = { + [1] = { 50.2, 51.2, 1519, 900 }, + }, + }, + [2128] = { + ["coords"] = { + [1] = { 34.1, 63, 1519, 180 }, + }, + }, + [2129] = { + ["coords"] = { + [1] = { 62.8, 33.4, 1519, 900 }, + }, + }, + [2130] = { + ["coords"] = {}, + }, + [2131] = { + ["coords"] = { + [1] = { 53.6, 25.6, 1519, 180 }, + }, + }, + [2133] = { + ["coords"] = { + [1] = { 52.1, 29, 1519, 900 }, + }, + }, + [2134] = { + ["coords"] = { + [1] = { 48.4, 62.5, 1519, 900 }, + }, + }, + [2136] = { + ["coords"] = { + [1] = { 64.4, 49.5, 1519, 900 }, + }, + }, + [2138] = { + ["coords"] = { + [1] = { 51.8, 58.3, 1519, 900 }, + }, + }, + [2139] = { + ["coords"] = { + [1] = { 55.9, 58.2, 1519, 900 }, + }, + }, + [2140] = { + ["coords"] = { + [1] = { 51.9, 29, 1519, 900 }, + }, + }, + [2141] = { + ["coords"] = { + [1] = { 36.3, 50.1, 1519, 180 }, + }, + }, + [2142] = { + ["coords"] = { + [1] = { 57, 61.6, 1519, 900 }, + }, + }, + [2143] = { + ["coords"] = { + [1] = { 64, 37.8, 1519, 900 }, + }, + }, + [2145] = { + ["coords"] = { + [1] = { 54.8, 66.7, 1519, 900 }, + }, + }, + [2146] = { + ["coords"] = { + [1] = { 57.1, 62, 1519, 900 }, + }, + }, + [2148] = { + ["coords"] = {}, + }, + [2149] = { + ["coords"] = {}, + }, + [2150] = { + ["coords"] = { + [1] = { 65.8, 43, 1519, 900 }, + }, + }, + [2151] = { + ["coords"] = {}, + }, + [2152] = { + ["coords"] = { + [1] = { 70.9, 39.9, 1519, 900 }, + }, + }, + [2153] = { + ["coords"] = { + [1] = { 70.5, 41.4, 1519, 900 }, + }, + }, + [2154] = { + ["coords"] = { + [1] = { 68.7, 48.7, 1519, 900 }, + }, + }, + [2155] = { + ["coords"] = { + [1] = { 72.8, 44, 1519, 900 }, + }, + }, + [2156] = { + ["coords"] = { + [1] = { 73, 47.7, 1519, 900 }, + }, + }, + [2157] = { + ["coords"] = { + [1] = { 37.8, 37.6, 1519, 180 }, + }, + }, + [2158] = { + ["coords"] = { + [1] = { 44.7, 42.7, 1519, 900 }, + }, + }, + [2159] = { + ["coords"] = { + [1] = { 47.8, 32, 1519, 900 }, + }, + }, + [2160] = { + ["coords"] = { + [1] = { 49.2, 33.1, 1519, 900 }, + }, + }, + [2161] = { + ["coords"] = { + [1] = { 44.8, 73.3, 1519, 900 }, + }, + }, + [2162] = { + ["coords"] = { + [1] = { 42.2, 67.4, 1519, 180 }, + }, + }, + [2163] = { + ["coords"] = { + [1] = { 36.6, 75.7, 1519, 180 }, + }, + }, + [2164] = { + ["coords"] = { + [1] = { 29.7, 74.1, 1519, 180 }, + }, + }, + [2165] = { + ["coords"] = { + [1] = { 30.5, 69.2, 1519, 180 }, + }, + }, + [2166] = { + ["coords"] = { + [1] = { 45.3, 78.2, 1519, 900 }, + }, + }, + [2167] = { + ["coords"] = { + [1] = { 32.1, 81.1, 1519, 180 }, + }, + }, + [2169] = { + ["coords"] = { + [1] = { 40, 84.5, 1519, 120 }, + }, + }, + [2171] = { + ["coords"] = { + [1] = { 31.5, 61.2, 1519, 180 }, + }, + }, + [2173] = { + ["coords"] = { + [1] = { 50.2, 50.9, 1519, 900 }, + }, + }, + [2175] = { + ["coords"] = { + [1] = { 48.7, 48.2, 1519, 900 }, + }, + }, + [2176] = { + ["coords"] = { + [1] = { 46.8, 66.4, 1519, 900 }, + }, + }, + [2177] = { + ["coords"] = { + [1] = { 38.7, 47.4, 1519, 120 }, + }, + }, + [2178] = { + ["coords"] = { + [1] = { 34.1, 63.2, 1519, 180 }, + }, + }, + [2179] = { + ["coords"] = { + [1] = { 38.3, 47.5, 1519, 180 }, + }, + }, + [2181] = { + ["coords"] = { + [1] = { 46.6, 66.6, 1519, 900 }, + }, + }, + [2182] = { + ["coords"] = { + [1] = { 50.3, 51.2, 1519, 900 }, + }, + }, + [2186] = { + ["coords"] = { + [1] = { 36.3, 49.9, 1519, 180 }, + }, + }, + [2187] = { + ["coords"] = { + [1] = { 48.9, 48.5, 1519, 900 }, + }, + }, + [2188] = { + ["coords"] = {}, + }, + [2189] = { + ["coords"] = { + [1] = { 62.9, 33.5, 1519, 900 }, + }, + }, + [2190] = { + ["coords"] = { + [1] = { 59.6, 58, 1519, 900 }, + }, + }, + [2191] = { + ["coords"] = { + [1] = { 38.3, 47.7, 1519, 180 }, + }, + }, + [2289] = { + ["coords"] = { + [1] = { 32.5, 82, 33, 900 }, + }, + ["fac"] = "AH", + }, + [2332] = { + ["coords"] = { + [1] = { 32.5, 82, 33, 0 }, + [2] = { 32.5, 81.9, 33, 0 }, + }, + }, + [2333] = { + ["coords"] = { + [1] = { 32.5, 82, 33, 0 }, + [2] = { 32.5, 81.9, 33, 0 }, + }, + }, + [2334] = { + ["coords"] = { + [1] = { 73.9, 86.3, 406, 900 }, + }, + }, + [2335] = { + ["coords"] = { + [1] = { 31.6, 22.1, 17, 900 }, + [2] = { 78.4, 85.9, 406, 900 }, + }, + }, + [2336] = { + ["coords"] = { + [1] = { 33.6, 23.1, 17, 900 }, + [2] = { 82.4, 88, 406, 900 }, + }, + }, + [2371] = { + ["coords"] = { + [1] = { 47.7, 39.5, 33, 900 }, + [2] = { 42.2, 36.1, 33, 900 }, + [3] = { 46.1, 32.3, 33, 900 }, + [4] = { 32.1, 27.7, 33, 0 }, + }, + }, + [2413] = { + ["coords"] = { + [1] = { 26.5, 58.1, 15, 25 }, + [2] = { 49.2, 84.1, 17, 25 }, + [3] = { 52.3, 37.5, 2597, 120 }, + [4] = { 52.1, 37.5, 2597, 120 }, + [5] = { 52.1, 37.4, 2597, 120 }, + [6] = { 52.1, 37, 2597, 120 }, + }, + }, + [2414] = { + ["coords"] = {}, + }, + [2489] = { + ["coords"] = { + [1] = { 22.9, 43.3, 44, 7200 }, + }, + }, + [2551] = { + ["coords"] = { + [1] = { 32.2, 27.6, 33, 0 }, + }, + }, + [2552] = { + ["coords"] = { + [1] = { 32.2, 27.7, 33, 0 }, + }, + }, + [2553] = { + ["coords"] = { + [1] = { 22.9, 48.2, 8, 600 }, + }, + ["fac"] = "AH", + }, + [2554] = { + ["coords"] = { + [1] = { 30.6, 90.7, 33, 300 }, + [2] = { 30.6, 90.2, 33, 300 }, + [3] = { 30.7, 89.7, 33, 300 }, + [4] = { 29.5, 89.3, 33, 300 }, + [5] = { 29.2, 88.6, 33, 300 }, + [6] = { 33.6, 88.4, 33, 300 }, + [7] = { 29.2, 88.3, 33, 300 }, + [8] = { 32.8, 88.3, 33, 300 }, + [9] = { 33.4, 88.2, 33, 300 }, + [10] = { 33.5, 88, 33, 300 }, + }, + }, + [2555] = { + ["coords"] = { + [1] = { 31.1, 66.1, 15, 900 }, + [2] = { 51.6, 88.2, 17, 900 }, + }, + ["fac"] = "AH", + }, + [2556] = { + ["coords"] = { + [1] = { 80.8, 46.8, 47, 10 }, + }, + ["fac"] = "AH", + }, + [2558] = { + ["coords"] = { + [1] = { 11.7, 46.7, 47, 7200 }, + [2] = { 96.7, 6.1, 267, 7200 }, + }, + }, + [2560] = { + ["coords"] = { + [1] = { 36.2, 81, 33, 180 }, + [2] = { 36.1, 80.5, 33, 180 }, + [3] = { 36.2, 79.6, 33, 180 }, + [4] = { 32.8, 78.7, 33, 180 }, + [5] = { 36.4, 78.4, 33, 180 }, + [6] = { 39.8, 78.4, 33, 180 }, + [7] = { 33.2, 77.9, 33, 180 }, + [8] = { 36.5, 77.8, 33, 180 }, + [9] = { 33.8, 77.7, 33, 180 }, + [10] = { 39.7, 77.4, 33, 180 }, + [11] = { 34.2, 77.3, 33, 180 }, + [12] = { 38.3, 77.2, 33, 180 }, + [13] = { 36.6, 77.1, 33, 180 }, + [14] = { 37.8, 76.9, 33, 180 }, + [15] = { 34, 76.8, 33, 180 }, + [16] = { 41.4, 76.6, 33, 180 }, + [17] = { 33.9, 76, 33, 180 }, + [18] = { 33.8, 75, 33, 180 }, + [19] = { 33.9, 74.3, 33, 180 }, + [20] = { 34.3, 73.8, 33, 180 }, + [21] = { 33.9, 73.1, 33, 180 }, + [22] = { 34.6, 73, 33, 180 }, + [23] = { 35.1, 72.9, 33, 180 }, + [24] = { 35.3, 72.1, 33, 180 }, + [25] = { 35.7, 71.7, 33, 180 }, + [26] = { 36, 71.1, 33, 180 }, + [27] = { 36.3, 70.6, 33, 180 }, + [28] = { 36.3, 69.8, 33, 180 }, + [29] = { 37, 68.8, 33, 180 }, + [30] = { 37.2, 68.4, 33, 180 }, + [31] = { 37.4, 64.5, 33, 180 }, + [32] = { 38.1, 63.5, 33, 180 }, + [33] = { 38.4, 62.4, 33, 180 }, + [34] = { 40.3, 60.6, 33, 180 }, + [35] = { 38.8, 60.3, 33, 180 }, + [36] = { 40.2, 60.2, 33, 180 }, + [37] = { 39.4, 60, 33, 180 }, + [38] = { 39.9, 59.6, 33, 180 }, + }, + }, + [2561] = { + ["coords"] = {}, + ["fac"] = "H", + }, + [2562] = { + ["coords"] = { + [1] = { 32.5, 82, 33, 0 }, + [2] = { 32.5, 81.9, 33, 0 }, + }, + }, + [2563] = { + ["coords"] = {}, + }, + [2572] = { + ["coords"] = { + [1] = { 32.1, 45.2, 267, 7200 }, + }, + }, + [2573] = { + ["coords"] = { + [1] = { 31.9, 45.7, 267, 7200 }, + }, + }, + [2574] = { + ["coords"] = { + [1] = { 29.1, 75.5, 33, 900 }, + }, + }, + [2575] = { + ["coords"] = { + [1] = { 28.9, 75.5, 33, 900 }, + }, + }, + [2576] = { + ["coords"] = { + [1] = { 25, 23.6, 33, 900 }, + }, + }, + [2649] = { + ["coords"] = {}, + }, + [2650] = { + ["coords"] = {}, + }, + [2652] = { + ["coords"] = { + [1] = { 45.7, 93.1, 45, 10 }, + }, + ["fac"] = "A", + }, + [2653] = { + ["coords"] = { + [1] = { 85, 33.9, 45, 300 }, + [2] = { 84.1, 33.9, 45, 300 }, + [3] = { 83.1, 33.5, 45, 300 }, + [4] = { 85.7, 32.3, 45, 300 }, + [5] = { 84.6, 32.2, 45, 300 }, + [6] = { 87.4, 31.4, 45, 300 }, + [7] = { 83.9, 31.2, 45, 300 }, + [8] = { 85.9, 30.8, 45, 300 }, + [9] = { 84, 30.1, 45, 300 }, + [10] = { 85.3, 29.5, 45, 300 }, + [11] = { 61.4, 89.9, 47, 300 }, + }, + }, + [2656] = { + ["coords"] = { + [1] = { 44.3, 92.9, 45, 20 }, + }, + }, + [2657] = { + ["coords"] = { + [1] = { 73.1, 7, 1519, 120 }, + }, + ["fac"] = "A", + }, + [2658] = { + ["coords"] = { + [1] = { 2.9, 48, 3, 900 }, + [2] = { 82, 39.3, 51, 900 }, + }, + }, + [2661] = { + ["coords"] = { + [1] = { 61.2, 72.4, 45, 7200 }, + }, + }, + [2663] = { + ["coords"] = { + [1] = { 57.8, 74.7, 45, 7200 }, + }, + }, + [2664] = { + ["coords"] = { + [1] = { 53.5, 76.2, 45, 7200 }, + }, + }, + [2665] = { + ["coords"] = { + [1] = { 66.4, 64.2, 45, 7200 }, + }, + }, + [2666] = { + ["coords"] = { + [1] = { 73.4, 65.1, 45, 7200 }, + }, + }, + [2667] = { + ["coords"] = { + [1] = { 48.6, 87.6, 45, 7200 }, + }, + }, + [2670] = { + ["coords"] = { + [1] = { 44.2, 87.3, 45, 7200 }, + }, + }, + [2672] = { + ["coords"] = { + [1] = { 44.2, 87.2, 45, 7200 }, + }, + }, + [2673] = { + ["coords"] = { + [1] = { 45.1, 59.2, 45, 7200 }, + }, + }, + [2674] = { + ["coords"] = { + [1] = { 45.1, 59.2, 45, 7200 }, + }, + }, + [2675] = { + ["coords"] = { + [1] = { 45.1, 59.2, 45, 7200 }, + }, + }, + [2676] = { + ["coords"] = { + [1] = { 27.3, 49.5, 45, 7200 }, + }, + }, + [2677] = { + ["coords"] = { + [1] = { 27.3, 49.5, 45, 7200 }, + }, + }, + [2678] = { + ["coords"] = { + [1] = { 27.3, 49.5, 45, 7200 }, + }, + }, + [2679] = { + ["coords"] = { + [1] = { 27.3, 49.5, 45, 7200 }, + }, + }, + [2680] = { + ["coords"] = { + [1] = { 45.1, 59.2, 45, 7200 }, + }, + }, + [2681] = { + ["coords"] = { + [1] = { 50.9, 59.7, 45, 7200 }, + }, + }, + [2682] = { + ["coords"] = { + [1] = { 50.9, 59.7, 45, 7200 }, + }, + }, + [2683] = { + ["coords"] = { + [1] = { 65.6, 46.4, 45, 7200 }, + }, + }, + [2684] = { + ["coords"] = { + [1] = { 65.6, 46.4, 45, 7200 }, + }, + }, + [2685] = { + ["coords"] = { + [1] = { 43.5, 55.1, 45, 7200 }, + }, + }, + [2687] = { + ["coords"] = { + [1] = { 60, 59.4, 45, 7200 }, + }, + ["fac"] = "A", + }, + [2688] = { + ["coords"] = { + [1] = { 36.1, 58.1, 45, 10 }, + }, + }, + [2689] = { + ["coords"] = { + [1] = { 25.5, 30.1, 45, 0 }, + }, + }, + [2690] = { + ["coords"] = { + [1] = { 52, 50.7, 45, 0 }, + }, + }, + [2691] = { + ["coords"] = { + [1] = { 66.7, 29.7, 45, 0 }, + }, + }, + [2695] = { + ["coords"] = { + [1] = { 60, 59.3, 45, 7200 }, + }, + ["fac"] = "A", + }, + [2701] = { + ["coords"] = { + [1] = { 84.3, 31, 45, 10 }, + }, + ["fac"] = "AH", + }, + [2702] = { + ["coords"] = { + [1] = { 36.2, 57.4, 45, 10 }, + }, + ["fac"] = "AH", + }, + [2703] = { + ["coords"] = { + [1] = { 28.9, 59.6, 45, 10 }, + }, + ["fac"] = "H", + }, + [2704] = { + ["coords"] = { + [1] = { 48.8, 88, 45, 10 }, + }, + }, + [2705] = { + ["coords"] = { + [1] = { 62.5, 33.7, 45, 120 }, + }, + }, + [2707] = { + ["coords"] = { + [1] = { 23, 84.5, 45, 10 }, + }, + }, + [2708] = { + ["coords"] = { + [1] = { 20.5, 85.6, 45, 300 }, + }, + }, + [2709] = { + ["coords"] = { + [1] = { 23.4, 85.1, 45, 10 }, + }, + }, + [2710] = { + ["coords"] = { + [1] = { 20.7, 85.1, 45, 10 }, + }, + }, + [2711] = { + ["coords"] = { + [1] = { 35.8, 79.5, 45, 7200 }, + }, + }, + [2712] = { + ["coords"] = { + [1] = { 31.5, 7.2, 11, 60 }, + [2] = { 29.8, 7.2, 11, 60 }, + [3] = { 33.5, 5.9, 11, 60 }, + [4] = { 29.8, 5.5, 11, 60 }, + [5] = { 22.9, 92.3, 45, 60 }, + [6] = { 21, 92.2, 45, 60 }, + [7] = { 25.3, 90.8, 45, 60 }, + [8] = { 21, 90.2, 45, 60 }, + [9] = { 19.4, 90.1, 45, 60 }, + [10] = { 22.5, 90, 45, 60 }, + [11] = { 24.9, 89.4, 45, 60 }, + [12] = { 17.6, 88.8, 45, 60 }, + [13] = { 22.7, 88.5, 45, 60 }, + [14] = { 23.9, 88.5, 45, 60 }, + [15] = { 23.5, 87.4, 45, 60 }, + [16] = { 20.6, 87.1, 45, 60 }, + [17] = { 24.5, 86.5, 45, 60 }, + [18] = { 24.3, 84.7, 45, 60 }, + [19] = { 19.6, 84.6, 45, 60 }, + [20] = { 22.4, 83.8, 45, 60 }, + }, + }, + [2713] = { + ["coords"] = { + [1] = { 46, 47.8, 45, 10 }, + }, + ["fac"] = "A", + }, + [2714] = { + ["coords"] = { + [1] = { 39.1, 96.5, 36, 180 }, + [2] = { 37.4, 95.3, 36, 180 }, + [3] = { 40, 94.8, 36, 180 }, + [4] = { 39.6, 93.4, 36, 180 }, + [5] = { 40.3, 92.1, 36, 180 }, + [6] = { 41.5, 91.3, 36, 180 }, + [7] = { 39.2, 90.9, 36, 180 }, + [8] = { 39.1, 88.9, 36, 180 }, + [9] = { 41.5, 87.7, 36, 180 }, + [10] = { 43.1, 32.9, 267, 180 }, + [11] = { 41.6, 31.8, 267, 180 }, + [12] = { 43.8, 31.4, 267, 180 }, + [13] = { 43.5, 30.2, 267, 180 }, + [14] = { 44.1, 29, 267, 180 }, + [15] = { 45.2, 28.3, 267, 180 }, + [16] = { 43.1, 28, 267, 180 }, + [17] = { 43.1, 26.2, 267, 180 }, + [18] = { 45.2, 25.2, 267, 180 }, + }, + }, + [2715] = { + ["coords"] = { + [1] = { 18.7, 67.3, 45, 7200 }, + }, + ["fac"] = "A", + }, + [2716] = { + ["coords"] = { + [1] = { 18.2, 69.2, 45, 10 }, + }, + }, + [2717] = { + ["coords"] = { + [1] = { 18.2, 68.1, 45, 10 }, + }, + }, + [2718] = { + ["coords"] = { + [1] = { 18, 67.9, 45, 10 }, + }, + }, + [2719] = { + ["coords"] = { + [1] = { 62.6, 69.7, 3, 900 }, + }, + }, + [2722] = { + ["coords"] = { + [1] = { 62.5, 33.7, 45, 7200 }, + }, + }, + [2724] = { + ["coords"] = { + [1] = { 35.3, 85.1, 40, 180 }, + [2] = { 36.6, 82.5, 40, 180 }, + [3] = { 53, 79.2, 40, 180 }, + [4] = { 37.1, 75.7, 40, 180 }, + [5] = { 56.3, 74.6, 40, 180 }, + [6] = { 60.7, 74.6, 40, 180 }, + [7] = { 59.4, 73.9, 40, 180 }, + [8] = { 63.9, 73.2, 40, 180 }, + [9] = { 31.4, 72.6, 40, 180 }, + [10] = { 31.4, 72.4, 40, 180 }, + [11] = { 42.3, 71.7, 40, 180 }, + [12] = { 41.7, 70.6, 40, 180 }, + [13] = { 60.7, 70.5, 40, 180 }, + [14] = { 56.4, 70.3, 40, 180 }, + [15] = { 56.7, 70, 40, 180 }, + [16] = { 63.9, 69.9, 40, 180 }, + [17] = { 45.6, 69.8, 40, 180 }, + [18] = { 38.7, 69.2, 40, 180 }, + [19] = { 32.4, 68.5, 40, 180 }, + [20] = { 44.2, 68.4, 40, 180 }, + [21] = { 29.5, 65.6, 40, 180 }, + [22] = { 52.8, 62.9, 40, 180 }, + [23] = { 62.2, 61.8, 40, 180 }, + [24] = { 48.5, 60.8, 40, 180 }, + [25] = { 60.4, 59.3, 40, 180 }, + [26] = { 60.7, 58.5, 40, 180 }, + [27] = { 38.5, 58.1, 40, 180 }, + [28] = { 38, 57.2, 40, 180 }, + [29] = { 39, 57.1, 40, 180 }, + [30] = { 36.8, 56.7, 40, 180 }, + [31] = { 33.4, 56.4, 40, 180 }, + [32] = { 36, 55, 40, 180 }, + [33] = { 36.2, 54.8, 40, 180 }, + [34] = { 35, 54.1, 40, 180 }, + [35] = { 35.2, 54, 40, 180 }, + [36] = { 36.7, 53.8, 40, 180 }, + [37] = { 34.9, 53.8, 40, 180 }, + [38] = { 46.7, 53.4, 40, 180 }, + [39] = { 35, 53, 40, 180 }, + [40] = { 38.3, 52.5, 40, 180 }, + [41] = { 30.4, 52.3, 40, 180 }, + [42] = { 30.4, 52.2, 40, 180 }, + [43] = { 37.3, 51, 40, 180 }, + [44] = { 30.1, 49.6, 40, 180 }, + [45] = { 48.1, 47.3, 40, 180 }, + [46] = { 35.5, 45, 40, 180 }, + [47] = { 59.1, 44, 40, 180 }, + [48] = { 41.6, 41, 40, 180 }, + [49] = { 41.1, 40.7, 40, 180 }, + [50] = { 41.6, 40.6, 40, 180 }, + [51] = { 40.7, 40, 40, 180 }, + [52] = { 46.1, 39.3, 40, 180 }, + [53] = { 51.1, 39.2, 40, 180 }, + [54] = { 45.9, 39.2, 40, 180 }, + [55] = { 50.9, 39.2, 40, 180 }, + [56] = { 39.9, 39, 40, 180 }, + [57] = { 45.9, 38.8, 40, 180 }, + [58] = { 45.8, 38.4, 40, 180 }, + [59] = { 46, 38.2, 40, 180 }, + [60] = { 46.5, 37.8, 40, 180 }, + [61] = { 46.7, 37.5, 40, 180 }, + [62] = { 43, 37.2, 40, 180 }, + [63] = { 42.7, 36.8, 40, 180 }, + [64] = { 46.5, 36.8, 40, 180 }, + [65] = { 43.1, 36.6, 40, 180 }, + [66] = { 53.8, 36.5, 40, 180 }, + [67] = { 32.9, 36.4, 40, 180 }, + [68] = { 56.1, 35.4, 40, 180 }, + [69] = { 53.4, 35.3, 40, 180 }, + [70] = { 44.9, 35.2, 40, 180 }, + [71] = { 43.9, 35.1, 40, 180 }, + [72] = { 56.1, 34.5, 40, 180 }, + [73] = { 52.6, 34.4, 40, 180 }, + [74] = { 49, 34.2, 40, 180 }, + [75] = { 31.4, 34, 40, 180 }, + [76] = { 56.4, 33.9, 40, 180 }, + [77] = { 31.9, 33.9, 40, 180 }, + [78] = { 49.8, 33.6, 40, 180 }, + [79] = { 52.1, 33.4, 40, 180 }, + [80] = { 52, 33.3, 40, 180 }, + [81] = { 46.1, 32.9, 40, 180 }, + [82] = { 48.4, 32.8, 40, 180 }, + [83] = { 54.4, 32.5, 40, 180 }, + [84] = { 51.9, 32.4, 40, 180 }, + [85] = { 51.5, 31.9, 40, 180 }, + [86] = { 45, 31.6, 40, 180 }, + [87] = { 36.3, 31.4, 40, 180 }, + [88] = { 55.7, 31.2, 40, 180 }, + [89] = { 55.8, 30.7, 40, 180 }, + [90] = { 52.2, 30.5, 40, 180 }, + [91] = { 56.1, 30.2, 40, 180 }, + [92] = { 55.1, 30, 40, 180 }, + [93] = { 53.2, 29, 40, 180 }, + [94] = { 55.2, 27.6, 40, 180 }, + [95] = { 50.7, 27.2, 40, 180 }, + [96] = { 34.1, 27, 40, 180 }, + [97] = { 34.4, 26.5, 40, 180 }, + [98] = { 44.8, 25.3, 40, 180 }, + [99] = { 50.6, 25.2, 40, 180 }, + [100] = { 54.2, 25.1, 40, 180 }, + [101] = { 52, 25, 40, 180 }, + [102] = { 54.1, 25, 40, 180 }, + [103] = { 54, 25, 40, 180 }, + [104] = { 52.7, 23.9, 40, 180 }, + [105] = { 52, 22.1, 40, 180 }, + [106] = { 51.2, 21.9, 40, 180 }, + [107] = { 49.3, 20.8, 40, 180 }, + [108] = { 41.6, 20.7, 40, 180 }, + [109] = { 56.9, 20.6, 40, 180 }, + [110] = { 48.8, 20.6, 40, 180 }, + [111] = { 48.5, 20.6, 40, 180 }, + [112] = { 42.1, 20.6, 40, 180 }, + [113] = { 57.7, 20.5, 40, 180 }, + [114] = { 48.3, 20.4, 40, 180 }, + [115] = { 48.8, 20.3, 40, 180 }, + [116] = { 48.3, 20.1, 40, 180 }, + [117] = { 49.4, 20, 40, 180 }, + [118] = { 50.1, 19.6, 40, 180 }, + [119] = { 57.3, 19.5, 40, 180 }, + [120] = { 56.7, 19.4, 40, 180 }, + [121] = { 57, 19.3, 40, 180 }, + [122] = { 56.8, 19.3, 40, 180 }, + [123] = { 56.2, 19.2, 40, 180 }, + [124] = { 51.8, 19.2, 40, 180 }, + [125] = { 49.7, 19, 40, 180 }, + [126] = { 59.1, 18.9, 40, 180 }, + [127] = { 57.4, 18.8, 40, 180 }, + [128] = { 50.2, 18.6, 40, 180 }, + [129] = { 56.6, 18.6, 40, 180 }, + [130] = { 50.2, 18.2, 40, 180 }, + [131] = { 58.2, 18.2, 40, 180 }, + [132] = { 49.3, 17.9, 40, 180 }, + [133] = { 56.2, 17.8, 40, 180 }, + [134] = { 40.7, 17.6, 40, 180 }, + [135] = { 57.4, 17.3, 40, 180 }, + [136] = { 58.9, 16.9, 40, 180 }, + [137] = { 58.5, 15.9, 40, 180 }, + [138] = { 51.8, 15.2, 40, 180 }, + [139] = { 51.9, 15, 40, 180 }, + [140] = { 52.3, 14.9, 40, 180 }, + [141] = { 52.2, 14.7, 40, 180 }, + [142] = { 51.8, 14.4, 40, 180 }, + [143] = { 56.3, 14.2, 40, 180 }, + [144] = { 52.2, 14.1, 40, 180 }, + [145] = { 56.5, 13.7, 40, 180 }, + [146] = { 45, 13.5, 40, 180 }, + [147] = { 56.3, 13.4, 40, 180 }, + [148] = { 57.9, 13.3, 40, 180 }, + [149] = { 56.5, 12.8, 40, 180 }, + }, + }, + [2726] = { + ["coords"] = { + [1] = { 72.6, 33.3, 45, 7200 }, + }, + }, + [2727] = { + ["coords"] = { + [1] = { 72.7, 33.5, 45, 7200 }, + }, + }, + [2728] = { + ["coords"] = { + [1] = { 46.7, 46.6, 45, 7200 }, + }, + }, + [2729] = { + ["coords"] = { + [1] = { 46.8, 46.8, 45, 7200 }, + }, + }, + [2732] = { + ["coords"] = { + [1] = { 60.1, 75.9, 215, 900 }, + }, + }, + [2734] = { + ["coords"] = { + [1] = { 12.1, 64.2, 11, 10 }, + }, + ["fac"] = "A", + }, + [2739] = { + ["coords"] = { + [1] = { 43.7, 61.2, 141, 0 }, + }, + }, + [2740] = { + ["coords"] = { + [1] = { 45.7, 57.4, 141, 0 }, + }, + }, + [2741] = { + ["coords"] = { + [1] = { 44.7, 62.4, 141, 0 }, + }, + }, + [2742] = { + ["coords"] = { + [1] = { 44.4, 60.7, 141, 0 }, + }, + }, + [2743] = { + ["coords"] = { + [1] = { 39.8, 19.7, 3, 180 }, + [2] = { 39.3, 19.1, 3, 180 }, + [3] = { 39.6, 18.5, 3, 180 }, + [4] = { 39.6, 18.1, 3, 180 }, + [5] = { 39, 18, 3, 180 }, + [6] = { 41, 16, 3, 180 }, + [7] = { 39.1, 15.8, 3, 180 }, + [8] = { 40.7, 15.6, 3, 180 }, + [9] = { 39.5, 13.9, 3, 180 }, + [10] = { 38.5, 12.1, 3, 180 }, + [11] = { 40.6, 12.1, 3, 180 }, + [12] = { 40.3, 10.5, 3, 180 }, + [13] = { 42.8, 10, 3, 180 }, + [14] = { 34.3, 92.2, 38, 180 }, + [15] = { 33.8, 91.2, 38, 180 }, + [16] = { 35.1, 91, 38, 180 }, + [17] = { 32.9, 90.7, 38, 180 }, + [18] = { 40.1, 90.7, 38, 180 }, + [19] = { 32.2, 90.6, 38, 180 }, + [20] = { 38.4, 90.5, 38, 180 }, + [21] = { 39.8, 90.2, 38, 180 }, + [22] = { 37.4, 90, 38, 180 }, + [23] = { 33.5, 90, 38, 180 }, + [24] = { 34.4, 89.8, 38, 180 }, + [25] = { 35.7, 89.7, 38, 180 }, + [26] = { 37.6, 89, 38, 180 }, + [27] = { 32.8, 89, 38, 180 }, + [28] = { 37.3, 88.8, 38, 180 }, + [29] = { 38.7, 88.7, 38, 180 }, + [30] = { 33, 88.7, 38, 180 }, + [31] = { 34.5, 88.6, 38, 180 }, + [32] = { 37.8, 87.2, 38, 180 }, + [33] = { 39.7, 87.1, 38, 180 }, + [34] = { 34.4, 86.9, 38, 180 }, + [35] = { 35.5, 86.7, 38, 180 }, + [36] = { 39.5, 85.7, 38, 180 }, + [37] = { 41.7, 85.2, 38, 180 }, + }, + }, + [2744] = { + ["coords"] = { + [1] = { 26.9, 30.9, 33, 300 }, + [2] = { 25.5, 30.6, 33, 300 }, + [3] = { 26.1, 30.6, 33, 300 }, + [4] = { 25.9, 30.5, 33, 300 }, + [5] = { 27.7, 30.3, 33, 300 }, + [6] = { 26.7, 30.2, 33, 300 }, + [7] = { 24, 30.2, 33, 300 }, + [8] = { 24.6, 30, 33, 300 }, + [9] = { 26.3, 29.9, 33, 300 }, + [10] = { 27.7, 29.9, 33, 300 }, + [11] = { 25.7, 29.8, 33, 300 }, + [12] = { 23.7, 29.7, 33, 300 }, + [13] = { 27.2, 29.7, 33, 300 }, + [14] = { 24.8, 29.5, 33, 300 }, + [15] = { 26.5, 29.5, 33, 300 }, + [16] = { 26, 29.4, 33, 300 }, + [17] = { 24.2, 29.3, 33, 300 }, + [18] = { 27.7, 29.2, 33, 300 }, + [19] = { 26.9, 29.2, 33, 300 }, + [20] = { 24.9, 29.1, 33, 300 }, + [21] = { 27.9, 29.1, 33, 300 }, + [22] = { 23.7, 29.1, 33, 300 }, + [23] = { 25.3, 28.7, 33, 300 }, + [24] = { 24.1, 28.7, 33, 300 }, + [25] = { 24.7, 28.4, 33, 300 }, + [26] = { 25.8, 28.3, 33, 300 }, + [27] = { 24.4, 28, 33, 300 }, + [28] = { 27.4, 27.9, 33, 300 }, + [29] = { 24, 27.9, 33, 300 }, + [30] = { 25.8, 27.9, 33, 300 }, + [31] = { 26.3, 27.9, 33, 300 }, + [32] = { 27.9, 27.7, 33, 300 }, + [33] = { 25.3, 27.5, 33, 300 }, + [34] = { 24.6, 27.3, 33, 300 }, + [35] = { 25.8, 27.3, 33, 300 }, + [36] = { 23.7, 27.3, 33, 300 }, + [37] = { 26.4, 27.2, 33, 300 }, + [38] = { 24.2, 26.9, 33, 300 }, + [39] = { 25.1, 26.9, 33, 300 }, + [40] = { 25.4, 26.9, 33, 300 }, + [41] = { 26.5, 26.8, 33, 300 }, + [42] = { 28, 26.7, 33, 300 }, + [43] = { 27.2, 26.5, 33, 300 }, + [44] = { 24.6, 26.5, 33, 300 }, + [45] = { 25.3, 26.4, 33, 300 }, + [46] = { 27.3, 26.3, 33, 300 }, + [47] = { 26.4, 26.2, 33, 300 }, + [48] = { 25.4, 26.1, 33, 300 }, + [49] = { 23.9, 26.1, 33, 300 }, + [50] = { 26.3, 25.8, 33, 300 }, + [51] = { 24.6, 25.7, 33, 300 }, + [52] = { 27.7, 25.6, 33, 300 }, + [53] = { 27.2, 25.5, 33, 300 }, + [54] = { 25.3, 25.4, 33, 300 }, + [55] = { 27.9, 25.4, 33, 300 }, + [56] = { 24, 25.4, 33, 300 }, + [57] = { 25.7, 25.3, 33, 300 }, + [58] = { 25.3, 25.1, 33, 300 }, + [59] = { 27.9, 24.8, 33, 300 }, + [60] = { 26.9, 24.8, 33, 300 }, + [61] = { 28.1, 24.5, 33, 300 }, + [62] = { 24, 24.5, 33, 300 }, + [63] = { 26.5, 24.5, 33, 300 }, + [64] = { 23.6, 24.5, 33, 300 }, + [65] = { 25.8, 24.4, 33, 300 }, + [66] = { 27.5, 24.2, 33, 300 }, + [67] = { 25.4, 24.1, 33, 300 }, + [68] = { 27.2, 24, 33, 300 }, + [69] = { 25.8, 23.7, 33, 300 }, + [70] = { 27.9, 23.6, 33, 300 }, + [71] = { 26.7, 23.6, 33, 300 }, + [72] = { 23.6, 23.5, 33, 300 }, + [73] = { 27.1, 23.1, 33, 300 }, + [74] = { 27.8, 23.1, 33, 300 }, + [75] = { 25.7, 22.9, 33, 300 }, + [76] = { 27.5, 22.9, 33, 300 }, + [77] = { 26.1, 22.9, 33, 300 }, + [78] = { 25.4, 22.7, 33, 300 }, + [79] = { 26.6, 22.5, 33, 300 }, + [80] = { 27, 22.4, 33, 300 }, + }, + }, + [2842] = { + ["coords"] = { + [1] = { 83.5, 32.8, 3, 0 }, + }, + }, + [2843] = { + ["coords"] = { + [1] = { 29.4, 81.4, 1, 300 }, + [2] = { 22.6, 80.1, 1, 300 }, + [3] = { 26.2, 79.6, 1, 300 }, + [4] = { 30.6, 79.4, 1, 300 }, + [5] = { 52.4, 51.9, 12, 300 }, + [6] = { 57.6, 48.4, 12, 300 }, + [7] = { 53, 47.5, 12, 300 }, + [8] = { 56.9, 43.9, 12, 300 }, + [9] = { 49.1, 28.2, 12, 300 }, + [10] = { 50.3, 27, 12, 300 }, + [11] = { 50, 26.7, 12, 300 }, + [12] = { 37.4, 68, 85, 300 }, + [13] = { 34.2, 64.3, 85, 300 }, + [14] = { 36.5, 62.2, 85, 300 }, + [15] = { 31.3, 62.2, 85, 300 }, + [16] = { 26.1, 60.3, 85, 300 }, + [17] = { 24.3, 59.6, 85, 300 }, + [18] = { 23.6, 58.3, 85, 300 }, + [19] = { 54.6, 44.3, 141, 300 }, + [20] = { 54.1, 39.7, 141, 300 }, + [21] = { 54, 39.1, 141, 300 }, + [22] = { 57.3, 29.9, 141, 300 }, + [23] = { 55.7, 27.2, 141, 300 }, + [24] = { 58.2, 27.1, 141, 300 }, + [25] = { 56.3, 25.9, 141, 300 }, + }, + }, + [2848] = { + ["coords"] = { + [1] = { 72.3, 66.9, 3, 0 }, + }, + }, + [2849] = { + ["coords"] = { + [1] = { 51, 57.5, 17, 300 }, + [2] = { 42.9, 55.1, 17, 300 }, + [3] = { 51.3, 54.9, 17, 300 }, + [4] = { 45.3, 54.3, 17, 300 }, + [5] = { 53.6, 54, 17, 300 }, + [6] = { 45.3, 53.9, 17, 300 }, + [7] = { 47, 53.6, 17, 300 }, + [8] = { 52.6, 52.3, 17, 300 }, + [9] = { 43.3, 52.2, 17, 300 }, + [10] = { 45, 51.3, 17, 300 }, + [11] = { 31, 24.9, 17, 300 }, + [12] = { 32.7, 23.8, 17, 300 }, + [13] = { 34.5, 21.3, 17, 300 }, + [14] = { 40, 16, 17, 300 }, + [15] = { 38.4, 13, 17, 300 }, + [16] = { 39.2, 11.8, 17, 300 }, + [17] = { 61.7, 5.2, 17, 300 }, + [18] = { 62, 4.1, 17, 300 }, + [19] = { 59.6, 2.7, 17, 300 }, + [20] = { 4.9, 59.5, 36, 300 }, + [21] = { 69.7, 66.5, 38, 300 }, + [22] = { 67.9, 65.9, 38, 300 }, + [23] = { 68.9, 62.5, 38, 300 }, + [24] = { 48.9, 54.2, 38, 300 }, + [25] = { 45.6, 43.3, 38, 300 }, + [26] = { 48.1, 39.6, 38, 300 }, + [27] = { 47.9, 34.2, 38, 300 }, + [28] = { 75.6, 25, 38, 300 }, + [29] = { 68.3, 18.4, 38, 300 }, + [30] = { 77.1, 14.5, 38, 300 }, + [31] = { 59.2, 13.4, 38, 300 }, + [32] = { 34.7, 85.7, 40, 300 }, + [33] = { 36.7, 82.8, 40, 300 }, + [34] = { 41.4, 82.5, 40, 300 }, + [35] = { 42.9, 80.6, 40, 300 }, + [36] = { 53, 79, 40, 300 }, + [37] = { 40.6, 77, 40, 300 }, + [38] = { 44.2, 76.6, 40, 300 }, + [39] = { 65.3, 75, 40, 300 }, + [40] = { 56.3, 74.5, 40, 300 }, + [41] = { 29.7, 84.6, 44, 300 }, + [42] = { 27.9, 84, 44, 300 }, + [43] = { 32.2, 83.2, 44, 300 }, + [44] = { 43.9, 71, 44, 300 }, + [45] = { 15, 64.1, 44, 300 }, + [46] = { 17, 63.5, 44, 300 }, + [47] = { 14.6, 61.9, 44, 300 }, + [48] = { 56, 57.4, 44, 300 }, + [49] = { 52.3, 46.7, 44, 300 }, + [50] = { 21, 36.2, 44, 300 }, + [51] = { 39.2, 31.8, 44, 300 }, + [52] = { 28, 28.3, 44, 300 }, + [53] = { 34, 25.9, 44, 300 }, + [54] = { 27.2, 21.4, 44, 300 }, + [55] = { 19.9, 21.3, 44, 300 }, + [56] = { 17.1, 18.2, 44, 300 }, + [57] = { 64.5, 49.8, 130, 300 }, + [58] = { 66.8, 45.6, 130, 300 }, + [59] = { 64.9, 42.1, 130, 300 }, + [60] = { 78.2, 30.8, 130, 300 }, + [61] = { 80.2, 28.5, 130, 300 }, + [62] = { 67.8, 24.2, 130, 300 }, + [63] = { 65.5, 23.8, 130, 300 }, + [64] = { 65.8, 23.5, 130, 300 }, + [65] = { 65, 23.2, 130, 300 }, + [66] = { 65.3, 23.2, 130, 300 }, + [67] = { 64.8, 23, 130, 300 }, + [68] = { 25.2, 94.6, 148, 300 }, + [69] = { 44.8, 86.9, 148, 300 }, + [70] = { 38.4, 86.8, 148, 300 }, + [71] = { 42.6, 86.7, 148, 300 }, + [72] = { 36.3, 86.6, 148, 300 }, + [73] = { 34.8, 85.1, 148, 300 }, + [74] = { 35.4, 84.9, 148, 300 }, + [75] = { 42.8, 84.5, 148, 300 }, + [76] = { 38.4, 29.4, 148, 300 }, + [77] = { 56.6, 26.4, 148, 300 }, + [78] = { 56.3, 26.3, 148, 300 }, + [79] = { 55.9, 26.1, 148, 300 }, + [80] = { 57.1, 22.4, 148, 300 }, + [81] = { 60.5, 22.3, 148, 300 }, + [82] = { 62, 21.6, 148, 300 }, + [83] = { 44.2, 20.4, 148, 300 }, + [84] = { 58.1, 20, 148, 300 }, + [85] = { 61.5, 19.4, 148, 300 }, + [86] = { 60.3, 18.4, 148, 300 }, + [87] = { 58.3, 17.7, 148, 300 }, + [88] = { 58.8, 15.8, 148, 300 }, + [89] = { 88.6, 84.4, 331, 300 }, + [90] = { 22.4, 36.3, 331, 300 }, + [91] = { 11.6, 31.8, 331, 300 }, + [92] = { 18.5, 31.6, 331, 300 }, + [93] = { 31.9, 31.3, 331, 300 }, + [94] = { 7.1, 12.3, 331, 300 }, + [95] = { 77.1, 91.6, 406, 300 }, + [96] = { 80.7, 89.4, 406, 300 }, + [97] = { 73.6, 85.5, 406, 300 }, + [98] = { 84.3, 84.2, 406, 300 }, + [99] = { 72.2, 60.3, 406, 300 }, + [100] = { 73.1, 60, 406, 300 }, + [101] = { 74.1, 59.4, 406, 300 }, + [102] = { 73.3, 58.9, 406, 300 }, + [103] = { 66.6, 50.8, 406, 300 }, + [104] = { 45.1, 46.1, 406, 300 }, + [105] = { 66.4, 45.5, 406, 300 }, + [106] = { 51, 43.8, 406, 300 }, + [107] = { 63.6, 40.2, 406, 300 }, + [108] = { 43.3, 38.7, 406, 300 }, + [109] = { 53.7, 35.8, 406, 300 }, + }, + }, + [2850] = { + ["coords"] = { + [1] = { 21.5, 73.6, 10, 300 }, + [2] = { 22, 72.1, 10, 300 }, + [3] = { 51.9, 62.2, 10, 300 }, + [4] = { 82.1, 61.3, 10, 300 }, + [5] = { 81.9, 59.8, 10, 300 }, + [6] = { 52.6, 59.3, 10, 300 }, + [7] = { 81.9, 58.7, 10, 300 }, + [8] = { 52.6, 57.9, 10, 300 }, + [9] = { 34.7, 54.5, 10, 300 }, + [10] = { 14.7, 44.4, 10, 300 }, + [11] = { 31.7, 39.7, 10, 300 }, + [12] = { 31.6, 32.4, 10, 300 }, + [13] = { 32.7, 28.1, 10, 300 }, + [14] = { 36, 27.5, 10, 300 }, + [15] = { 24.6, 27.2, 10, 300 }, + [16] = { 13.2, 27.2, 10, 300 }, + [17] = { 68.8, 25.7, 10, 300 }, + [18] = { 61.7, 25.4, 10, 300 }, + [19] = { 59.2, 25.2, 10, 300 }, + [20] = { 48.6, 78.3, 11, 300 }, + [21] = { 46.9, 76.1, 11, 300 }, + [22] = { 48.3, 74.2, 11, 300 }, + [23] = { 61.9, 72.3, 11, 300 }, + [24] = { 63, 69.7, 11, 300 }, + [25] = { 47.1, 66.1, 11, 300 }, + [26] = { 63.8, 63.1, 11, 300 }, + [27] = { 49.9, 59.6, 11, 300 }, + [28] = { 63.4, 59.2, 11, 300 }, + [29] = { 47.8, 58.8, 11, 300 }, + [30] = { 61.3, 58.2, 11, 300 }, + [31] = { 64.9, 55.9, 11, 300 }, + [32] = { 13.5, 41.3, 11, 300 }, + [33] = { 18.3, 39.6, 11, 300 }, + [34] = { 15.3, 38.6, 11, 300 }, + [35] = { 13.6, 38.2, 11, 300 }, + [36] = { 16.2, 36.2, 11, 300 }, + [37] = { 43.5, 34.9, 11, 300 }, + [38] = { 13.9, 34.8, 11, 300 }, + [39] = { 45.4, 34.7, 11, 300 }, + [40] = { 39, 34.3, 11, 300 }, + [41] = { 14.1, 32.8, 11, 300 }, + [42] = { 42.7, 32.2, 11, 300 }, + [43] = { 51.6, 30.8, 11, 300 }, + [44] = { 16.2, 30.6, 11, 300 }, + [45] = { 13.9, 30.3, 11, 300 }, + [46] = { 37.9, 30.1, 11, 300 }, + [47] = { 31.6, 29.8, 11, 300 }, + [48] = { 35.1, 27.7, 11, 300 }, + [49] = { 52.9, 27.2, 11, 300 }, + [50] = { 14.8, 23.7, 11, 300 }, + [51] = { 30.5, 97.9, 12, 300 }, + [52] = { 43.1, 83.2, 17, 300 }, + [53] = { 44.3, 82.8, 17, 300 }, + [54] = { 41.9, 81.7, 17, 300 }, + [55] = { 41.6, 78.7, 17, 300 }, + [56] = { 77.6, 66.8, 44, 300 }, + [57] = { 81.4, 60.5, 44, 300 }, + [58] = { 69.2, 60.1, 44, 300 }, + [59] = { 66.2, 57.4, 44, 300 }, + [60] = { 73.6, 55.1, 44, 300 }, + [61] = { 69.5, 55.1, 44, 300 }, + [62] = { 80.2, 54.7, 44, 300 }, + [63] = { 68.3, 54.5, 44, 300 }, + [64] = { 68.3, 53.9, 44, 300 }, + [65] = { 58, 51.8, 44, 300 }, + [66] = { 80.2, 48.6, 44, 300 }, + [67] = { 85.1, 46.4, 44, 300 }, + [68] = { 79.7, 44.8, 44, 300 }, + [69] = { 61.2, 43.9, 44, 300 }, + [70] = { 79.1, 40.3, 44, 300 }, + [71] = { 76.2, 37.5, 44, 300 }, + [72] = { 75.5, 29.9, 44, 300 }, + [73] = { 28.9, 17.7, 44, 300 }, + [74] = { 25.8, 15.2, 44, 300 }, + [75] = { 27.9, 15, 44, 300 }, + [76] = { 35.3, 10, 44, 300 }, + [77] = { 26.4, 8.3, 44, 300 }, + [78] = { 36.6, 7.7, 44, 300 }, + [79] = { 33.6, 7.7, 44, 300 }, + [80] = { 64.1, 85.2, 46, 300 }, + [81] = { 71.6, 84.8, 46, 300 }, + [82] = { 69.5, 84.8, 46, 300 }, + [83] = { 75.3, 41.4, 267, 300 }, + [84] = { 79.2, 39.5, 267, 300 }, + [85] = { 77.3, 38.8, 267, 300 }, + [86] = { 75.2, 37.7, 267, 300 }, + [87] = { 46.1, 69.9, 331, 300 }, + [88] = { 50.9, 69.7, 331, 300 }, + [89] = { 33.4, 67.6, 331, 300 }, + [90] = { 54.3, 64.3, 331, 300 }, + [91] = { 56.3, 63.3, 331, 300 }, + [92] = { 54.1, 61.1, 331, 300 }, + [93] = { 24.9, 60.6, 331, 300 }, + [94] = { 49.9, 59.6, 331, 300 }, + [95] = { 34.2, 38.4, 331, 300 }, + [96] = { 35.5, 36.5, 331, 300 }, + [97] = { 39.6, 36, 331, 300 }, + [98] = { 42.3, 34.8, 331, 300 }, + [99] = { 37.9, 33.8, 331, 300 }, + [100] = { 40.5, 31.9, 331, 300 }, + [101] = { 41.4, 99.1, 361, 300 }, + [102] = { 39.6, 96.1, 361, 300 }, + [103] = { 29.1, 70.3, 406, 300 }, + [104] = { 27.2, 69.6, 406, 300 }, + [105] = { 35, 68.9, 406, 300 }, + [106] = { 37, 68.8, 406, 300 }, + [107] = { 32.6, 66, 406, 300 }, + [108] = { 28.3, 64.2, 406, 300 }, + [109] = { 34.5, 62, 406, 300 }, + [110] = { 31.7, 58.8, 406, 300 }, + [111] = { 61.1, 17.6, 406, 300 }, + }, + }, + [2852] = { + ["coords"] = { + [1] = { 36.9, 80.5, 10, 300 }, + [2] = { 35.5, 80.2, 10, 300 }, + [3] = { 49.3, 77.5, 10, 300 }, + [4] = { 50.6, 77.3, 10, 300 }, + [5] = { 66.1, 76.3, 10, 300 }, + [6] = { 33.3, 76.1, 10, 300 }, + [7] = { 34.5, 75.9, 10, 300 }, + [8] = { 40.3, 75.6, 10, 300 }, + [9] = { 60.8, 75.5, 10, 300 }, + [10] = { 64.2, 73, 10, 300 }, + [11] = { 71.2, 72.4, 10, 300 }, + [12] = { 73.1, 72.1, 10, 300 }, + [13] = { 71.7, 72, 10, 300 }, + [14] = { 80.7, 71.1, 10, 300 }, + [15] = { 33.3, 69.4, 10, 300 }, + [16] = { 65.9, 69.2, 10, 300 }, + [17] = { 65.8, 67.5, 10, 300 }, + [18] = { 64.3, 51.7, 10, 300 }, + [19] = { 60.6, 41.4, 10, 300 }, + [20] = { 77.3, 36.6, 10, 300 }, + [21] = { 26, 36.5, 10, 300 }, + [22] = { 17.6, 36.3, 10, 300 }, + [23] = { 76.9, 35.6, 10, 300 }, + [24] = { 12.7, 33.8, 10, 300 }, + [25] = { 78.7, 32.4, 10, 300 }, + [26] = { 57.8, 30.8, 10, 300 }, + [27] = { 16.3, 28.8, 10, 300 }, + [28] = { 53.7, 54.7, 11, 300 }, + [29] = { 46.6, 46.6, 11, 300 }, + [30] = { 45.6, 46.2, 11, 300 }, + [31] = { 51.2, 46.1, 11, 300 }, + [32] = { 49.3, 46, 11, 300 }, + [33] = { 38.5, 45.9, 11, 300 }, + [34] = { 45.7, 42.6, 11, 300 }, + [35] = { 68.8, 32.1, 11, 300 }, + [36] = { 71.3, 30.3, 11, 300 }, + [37] = { 62.6, 28.7, 11, 300 }, + [38] = { 61.8, 26.6, 11, 300 }, + [39] = { 59.8, 24.5, 11, 300 }, + [40] = { 48.5, 17.7, 11, 300 }, + [41] = { 48.2, 15.9, 11, 300 }, + [42] = { 47.6, 15.1, 11, 300 }, + [43] = { 48.5, 98.8, 17, 300 }, + [44] = { 48.8, 98.6, 17, 300 }, + [45] = { 48.5, 97.2, 17, 300 }, + [46] = { 49.7, 96.6, 17, 300 }, + [47] = { 48.5, 96.3, 17, 300 }, + [48] = { 38.6, 92, 17, 300 }, + [49] = { 29.9, 73.6, 267, 300 }, + [50] = { 27.9, 72.8, 267, 300 }, + [51] = { 23.2, 64.1, 267, 300 }, + [52] = { 62.5, 63.2, 267, 300 }, + [53] = { 64.7, 61.7, 267, 300 }, + [54] = { 66.2, 60.5, 267, 300 }, + [55] = { 76.2, 74.8, 331, 300 }, + [56] = { 74.8, 74.4, 331, 300 }, + [57] = { 77.4, 72.9, 331, 300 }, + [58] = { 77.9, 72.8, 331, 300 }, + [59] = { 66.3, 56.5, 331, 300 }, + [60] = { 66.5, 53.8, 331, 300 }, + [61] = { 81.2, 50.1, 331, 300 }, + [62] = { 80.5, 49.7, 331, 300 }, + [63] = { 68.8, 49.6, 331, 300 }, + [64] = { 79.4, 49.6, 331, 300 }, + [65] = { 81.8, 49.4, 331, 300 }, + [66] = { 75.6, 46.4, 331, 300 }, + [67] = { 78.5, 46.4, 331, 300 }, + [68] = { 78.7, 45.2, 331, 300 }, + [69] = { 27.2, 55.2, 400, 300 }, + [70] = { 26.6, 54, 400, 300 }, + [71] = { 27.2, 52.5, 400, 300 }, + [72] = { 17.6, 41.8, 400, 300 }, + [73] = { 42.9, 39.3, 400, 300 }, + [74] = { 13.9, 38.8, 400, 300 }, + [75] = { 42.2, 37.4, 400, 300 }, + [76] = { 43, 36.8, 400, 300 }, + [77] = { 42.3, 33.6, 400, 300 }, + [78] = { 44.9, 32.3, 400, 300 }, + [79] = { 42.2, 31.7, 400, 300 }, + [80] = { 18.9, 23.2, 400, 300 }, + [81] = { 19.4, 21.7, 400, 300 }, + [82] = { 17.8, 21.3, 400, 300 }, + [83] = { 18.6, 20.9, 400, 300 }, + }, + }, + [2855] = { + ["coords"] = { + [1] = { 32.8, 94.6, 28, 300 }, + [2] = { 32.7, 93.9, 28, 300 }, + [3] = { 32.9, 93.4, 28, 300 }, + [4] = { 32.5, 93.3, 28, 300 }, + [5] = { 32.3, 91.6, 28, 300 }, + [6] = { 31.5, 91.4, 28, 300 }, + [7] = { 25.2, 29.7, 33, 300 }, + [8] = { 25.7, 29.5, 33, 300 }, + [9] = { 24.4, 24.8, 33, 300 }, + [10] = { 25, 23, 33, 300 }, + [11] = { 30, 19.8, 33, 300 }, + [12] = { 43, 19.4, 33, 300 }, + [13] = { 42.7, 18.7, 33, 300 }, + [14] = { 43.9, 18.3, 33, 300 }, + [15] = { 33.4, 15.5, 33, 300 }, + [16] = { 24.3, 12.6, 33, 300 }, + [17] = { 44.6, 11.1, 33, 300 }, + [18] = { 44.4, 10, 33, 300 }, + [19] = { 45.6, 9.8, 33, 300 }, + [20] = { 43.8, 9.4, 33, 300 }, + [21] = { 38.4, 95.1, 36, 300 }, + [22] = { 41.5, 93.4, 36, 300 }, + [23] = { 40.1, 91.2, 36, 300 }, + [24] = { 39.8, 90.6, 36, 300 }, + [25] = { 39.9, 53, 36, 300 }, + [26] = { 42.5, 48, 36, 300 }, + [27] = { 38.5, 47, 36, 300 }, + [28] = { 61.7, 45.7, 36, 300 }, + [29] = { 63.5, 45.3, 36, 300 }, + [30] = { 63.4, 44.2, 36, 300 }, + [31] = { 61.1, 44.1, 36, 300 }, + [32] = { 63.6, 43.4, 36, 300 }, + [33] = { 63, 43.3, 36, 300 }, + [34] = { 61.2, 43, 36, 300 }, + [35] = { 62.7, 40.7, 36, 300 }, + [36] = { 61.5, 40.4, 36, 300 }, + [37] = { 41.4, 40.1, 36, 300 }, + [38] = { 68.4, 80.4, 45, 300 }, + [39] = { 68.1, 78.3, 45, 300 }, + [40] = { 64.7, 73.9, 45, 300 }, + [41] = { 61.2, 72.9, 45, 300 }, + [42] = { 70.6, 70, 45, 300 }, + [43] = { 63.6, 67.9, 45, 300 }, + [44] = { 73.8, 65.2, 45, 300 }, + [45] = { 66, 63.8, 45, 300 }, + [46] = { 33.4, 31, 45, 300 }, + [47] = { 33.8, 27.5, 45, 300 }, + [48] = { 32.3, 26.8, 45, 300 }, + [49] = { 31.1, 25.9, 45, 300 }, + [50] = { 32.4, 72.4, 267, 300 }, + [51] = { 40.7, 69, 267, 300 }, + [52] = { 35.8, 68.8, 267, 300 }, + [53] = { 44.9, 67.3, 267, 300 }, + [54] = { 42.5, 31.6, 267, 300 }, + [55] = { 45.1, 30.2, 267, 300 }, + [56] = { 43.9, 28.2, 267, 300 }, + [57] = { 43.7, 27.7, 267, 300 }, + [58] = { 69.7, 85.8, 400, 300 }, + [59] = { 71.2, 85.2, 400, 300 }, + [60] = { 68.5, 82.9, 400, 300 }, + [61] = { 71.7, 50.3, 405, 300 }, + [62] = { 74.6, 49.1, 405, 300 }, + [63] = { 74.6, 47.1, 405, 300 }, + [64] = { 73.5, 41.6, 405, 300 }, + [65] = { 55.1, 30, 405, 300 }, + [66] = { 52.4, 28.5, 405, 300 }, + [67] = { 54.3, 28.1, 405, 300 }, + [68] = { 75.5, 26.4, 405, 300 }, + [69] = { 54.8, 26.1, 405, 300 }, + [70] = { 78.9, 23.3, 405, 300 }, + [71] = { 74.8, 19.3, 405, 300 }, + [72] = { 77.2, 17.9, 405, 300 }, + }, + }, + [2857] = { + ["coords"] = { + [1] = { 13.9, 74.9, 3, 300 }, + [2] = { 50.7, 68.1, 3, 300 }, + [3] = { 29.5, 56.3, 3, 300 }, + [4] = { 53.1, 34.9, 3, 300 }, + [5] = { 53.6, 29.7, 3, 300 }, + [6] = { 42.4, 28.9, 3, 300 }, + [7] = { 40.7, 28.2, 3, 300 }, + [8] = { 41.5, 26.2, 3, 300 }, + [9] = { 40.6, 26, 3, 300 }, + [10] = { 14, 71.3, 8, 300 }, + [11] = { 13.9, 56, 8, 300 }, + [12] = { 11.7, 34.2, 8, 300 }, + [13] = { 55, 29.8, 8, 300 }, + [14] = { 57, 24.9, 8, 300 }, + [15] = { 61.2, 23.9, 8, 300 }, + [16] = { 62.6, 23.3, 8, 300 }, + [17] = { 64.2, 22.4, 8, 300 }, + [18] = { 60.1, 22, 8, 300 }, + [19] = { 62, 21, 8, 300 }, + [20] = { 63.2, 27.3, 15, 300 }, + [21] = { 64.4, 26.9, 15, 300 }, + [22] = { 30.6, 22.4, 15, 300 }, + [23] = { 31.4, 21.5, 15, 300 }, + [24] = { 30.9, 20.7, 15, 300 }, + [25] = { 63.1, 19, 15, 300 }, + [26] = { 61.6, 18.2, 15, 300 }, + [27] = { 57.7, 16.5, 15, 300 }, + [28] = { 57.3, 15.1, 15, 300 }, + [29] = { 58, 13.4, 15, 300 }, + [30] = { 59.1, 9.7, 15, 300 }, + [31] = { 63.2, 7.2, 15, 300 }, + [32] = { 51.4, 65.6, 17, 300 }, + [33] = { 51.8, 65.1, 17, 300 }, + [34] = { 51.5, 64.7, 17, 300 }, + [35] = { 66.1, 59, 17, 300 }, + [36] = { 68.3, 57.7, 17, 300 }, + [37] = { 47.3, 40, 33, 300 }, + [38] = { 41.8, 35.6, 33, 300 }, + [39] = { 46.2, 31.8, 33, 300 }, + [40] = { 37.6, 30.8, 33, 300 }, + [41] = { 35.5, 23.8, 33, 300 }, + [42] = { 37.7, 22.8, 33, 300 }, + [43] = { 20.4, 11.7, 33, 300 }, + [44] = { 25.4, 9.6, 33, 300 }, + [45] = { 26.2, 8.6, 33, 300 }, + [46] = { 23.3, 8, 33, 300 }, + [47] = { 49.6, 7.9, 33, 300 }, + [48] = { 48.7, 6, 33, 300 }, + [49] = { 47.2, 5.5, 33, 300 }, + [50] = { 35.8, 55.9, 36, 300 }, + [51] = { 35.2, 54, 36, 300 }, + [52] = { 35.3, 53.4, 36, 300 }, + [53] = { 35.6, 52.9, 36, 300 }, + [54] = { 58.4, 30.2, 36, 300 }, + [55] = { 56.4, 26.9, 36, 300 }, + [56] = { 53.7, 21, 36, 300 }, + [57] = { 40.3, 20.6, 36, 300 }, + [58] = { 39.6, 15.2, 36, 300 }, + [59] = { 37.5, 15.1, 36, 300 }, + [60] = { 38.9, 14.8, 36, 300 }, + [61] = { 20.7, 89.6, 45, 300 }, + [62] = { 16.7, 87.4, 45, 300 }, + [63] = { 23.4, 84.9, 45, 300 }, + [64] = { 21, 84.8, 45, 300 }, + [65] = { 54.2, 81.6, 45, 300 }, + [66] = { 53.6, 79.9, 45, 300 }, + [67] = { 53.2, 77.2, 45, 300 }, + [68] = { 53.8, 75.7, 45, 300 }, + [69] = { 53.4, 74.4, 45, 300 }, + [70] = { 19.8, 69, 45, 300 }, + [71] = { 22.7, 67.3, 45, 300 }, + [72] = { 18.2, 66.7, 45, 300 }, + [73] = { 28.3, 65.8, 45, 300 }, + [74] = { 25.8, 65.8, 45, 300 }, + [75] = { 18.7, 65, 45, 300 }, + [76] = { 22.1, 64.9, 45, 300 }, + [77] = { 25.1, 64.3, 45, 300 }, + [78] = { 28.6, 62.8, 45, 300 }, + [79] = { 82.8, 33.4, 45, 300 }, + [80] = { 85.6, 32.3, 45, 300 }, + [81] = { 85.6, 30.4, 45, 300 }, + [82] = { 40.6, 94.6, 405, 300 }, + [83] = { 39.8, 94.2, 405, 300 }, + [84] = { 65.9, 80.7, 405, 300 }, + [85] = { 71.9, 78.6, 405, 300 }, + [86] = { 69.5, 78.5, 405, 300 }, + [87] = { 73.9, 73.7, 405, 300 }, + [88] = { 71.4, 71.7, 405, 300 }, + [89] = { 35.2, 61.4, 405, 300 }, + [90] = { 32.6, 61.1, 405, 300 }, + [91] = { 29.3, 60.6, 405, 300 }, + [92] = { 32.8, 59.6, 405, 300 }, + [93] = { 29.6, 58, 405, 300 }, + [94] = { 32.7, 55.1, 405, 300 }, + [95] = { 30.5, 54.8, 405, 300 }, + [96] = { 34.2, 52.9, 405, 300 }, + }, + }, + [2858] = { + ["coords"] = { + [1] = { 81.3, 64.3, 3, 0 }, + }, + }, + [2866] = { + ["coords"] = { + [1] = { 14.8, 88.5, 3, 300 }, + [2] = { 55, 86.1, 3, 300 }, + [3] = { 43.5, 84.5, 3, 300 }, + [4] = { 3.8, 81.7, 3, 300 }, + [5] = { 45.8, 73.8, 3, 300 }, + [6] = { 27, 72, 3, 300 }, + [7] = { 37.8, 70, 3, 300 }, + [8] = { 59.1, 69.7, 3, 300 }, + [9] = { 15, 63.8, 3, 300 }, + [10] = { 27, 57.9, 3, 300 }, + [11] = { 83.1, 57.8, 3, 300 }, + [12] = { 53.7, 54, 3, 300 }, + [13] = { 20.4, 49.9, 3, 300 }, + [14] = { 60.3, 49.7, 3, 300 }, + [15] = { 33.6, 47.9, 3, 300 }, + [16] = { 48.4, 39.9, 3, 300 }, + [17] = { 63.3, 35.9, 3, 300 }, + [18] = { 54.7, 59.4, 4, 300 }, + [19] = { 50.9, 53.5, 4, 300 }, + [20] = { 55.7, 49.7, 4, 300 }, + [21] = { 62.1, 48.5, 4, 300 }, + [22] = { 46.2, 47.3, 4, 300 }, + [23] = { 60, 47.2, 4, 300 }, + [24] = { 62.8, 45.5, 4, 300 }, + [25] = { 58.4, 42.8, 4, 300 }, + [26] = { 61, 42.2, 4, 300 }, + [27] = { 54.3, 41.8, 4, 300 }, + [28] = { 44.3, 39.9, 4, 300 }, + [29] = { 63, 39.1, 4, 300 }, + [30] = { 62.6, 36.2, 4, 300 }, + [31] = { 48.3, 35.8, 4, 300 }, + [32] = { 56.9, 33.6, 4, 300 }, + [33] = { 63.4, 30.5, 4, 300 }, + [34] = { 44.2, 28.8, 4, 300 }, + [35] = { 57.8, 27.9, 4, 300 }, + [36] = { 48, 21.9, 4, 300 }, + [37] = { 48.2, 16.1, 4, 300 }, + [38] = { 98.8, 13.3, 46, 300 }, + [39] = { 60.3, 82.3, 51, 300 }, + [40] = { 27.4, 82, 51, 300 }, + [41] = { 66.4, 81.9, 51, 300 }, + [42] = { 55.8, 81.8, 51, 300 }, + [43] = { 73.1, 79.7, 51, 300 }, + [44] = { 24.4, 79, 51, 300 }, + [45] = { 43.9, 77, 51, 300 }, + [46] = { 82.9, 76.9, 51, 300 }, + [47] = { 37.3, 76, 51, 300 }, + [48] = { 55.7, 75.4, 51, 300 }, + [49] = { 20.4, 74.6, 51, 300 }, + [50] = { 30.6, 74.1, 51, 300 }, + [51] = { 48.3, 72.9, 51, 300 }, + [52] = { 54, 72.8, 51, 300 }, + [53] = { 63, 72.4, 51, 300 }, + [54] = { 59.4, 71.6, 51, 300 }, + [55] = { 24.9, 71.1, 51, 300 }, + [56] = { 29.3, 68.4, 51, 300 }, + [57] = { 42.3, 67, 51, 300 }, + [58] = { 53.5, 66.9, 51, 300 }, + [59] = { 36.8, 66.6, 51, 300 }, + [60] = { 62, 66.3, 51, 300 }, + [61] = { 33, 66, 51, 300 }, + [62] = { 58.4, 64.5, 51, 300 }, + [63] = { 46.5, 62.9, 51, 300 }, + [64] = { 63.6, 62.7, 51, 300 }, + [65] = { 49.7, 62.2, 51, 300 }, + [66] = { 41.3, 62.1, 51, 300 }, + [67] = { 29, 61.2, 51, 300 }, + [68] = { 52, 60.9, 51, 300 }, + [69] = { 37.1, 59.9, 51, 300 }, + [70] = { 58.4, 56.9, 51, 300 }, + [71] = { 48.1, 56.3, 51, 300 }, + [72] = { 25.6, 54.3, 51, 300 }, + [73] = { 31.1, 52.9, 51, 300 }, + [74] = { 56.2, 52.8, 51, 300 }, + [75] = { 61.4, 51.9, 51, 300 }, + [76] = { 39, 51.5, 51, 300 }, + [77] = { 36.6, 50.2, 51, 300 }, + [78] = { 70.1, 50, 51, 300 }, + [79] = { 46.2, 48.6, 51, 300 }, + [80] = { 27.9, 48.5, 51, 300 }, + [81] = { 55.2, 48, 51, 300 }, + [82] = { 64.8, 47.6, 51, 300 }, + [83] = { 59.3, 46.4, 51, 300 }, + [84] = { 50.5, 46.3, 51, 300 }, + [85] = { 40.5, 45.9, 51, 300 }, + [86] = { 47.4, 43.4, 51, 300 }, + [87] = { 55.5, 42.5, 51, 300 }, + [88] = { 32.1, 42.4, 51, 300 }, + [89] = { 27.9, 41.6, 51, 300 }, + [90] = { 23.2, 41.2, 51, 300 }, + [91] = { 67.9, 40.5, 51, 300 }, + [92] = { 61.7, 40.4, 51, 300 }, + [93] = { 57.6, 40, 51, 300 }, + [94] = { 39.5, 38.8, 51, 300 }, + [95] = { 62.1, 36.5, 51, 300 }, + [96] = { 52.1, 35.4, 51, 300 }, + [97] = { 38.1, 33.5, 51, 300 }, + [98] = { 66.8, 33.5, 51, 300 }, + [99] = { 25.6, 33.5, 51, 300 }, + [100] = { 73, 33.3, 51, 300 }, + [101] = { 56.3, 33, 51, 300 }, + [102] = { 30, 32.8, 51, 300 }, + [103] = { 22.2, 29.5, 51, 300 }, + [104] = { 60.8, 29.5, 51, 300 }, + [105] = { 75.7, 26.6, 51, 300 }, + [106] = { 56, 26.4, 51, 300 }, + [107] = { 27, 23.8, 51, 300 }, + [108] = { 73.8, 11.5, 51, 300 }, + [109] = { 29.8, 74.8, 440, 300 }, + [110] = { 37.2, 73.4, 440, 300 }, + [111] = { 34.8, 71.7, 440, 300 }, + [112] = { 44.4, 71.2, 440, 300 }, + [113] = { 33.8, 66.9, 440, 300 }, + [114] = { 39.1, 66.9, 440, 300 }, + [115] = { 41, 66.8, 440, 300 }, + [116] = { 42.9, 66, 440, 300 }, + [117] = { 37.2, 65.9, 440, 300 }, + [118] = { 35.3, 64.6, 440, 300 }, + [119] = { 38.1, 63.2, 440, 300 }, + [120] = { 49.5, 62.3, 440, 300 }, + [121] = { 33.8, 61.7, 440, 300 }, + [122] = { 40.4, 61.2, 440, 300 }, + [123] = { 45.5, 61.1, 440, 300 }, + [124] = { 43, 60.5, 440, 300 }, + [125] = { 60.8, 60.5, 440, 300 }, + [126] = { 36.7, 60.2, 440, 300 }, + [127] = { 55.9, 58.8, 440, 300 }, + [128] = { 31.4, 58.2, 440, 300 }, + [129] = { 63.8, 58.2, 440, 300 }, + [130] = { 58.8, 58.2, 440, 300 }, + [131] = { 36.2, 55.9, 440, 300 }, + [132] = { 33.3, 55.4, 440, 300 }, + [133] = { 61.4, 55.3, 440, 300 }, + [134] = { 29.5, 55.2, 440, 300 }, + [135] = { 56.5, 54.6, 440, 300 }, + [136] = { 41, 53.2, 440, 300 }, + [137] = { 53.6, 51.6, 440, 300 }, + [138] = { 46.3, 51, 440, 300 }, + [139] = { 59.8, 51, 440, 300 }, + [140] = { 56.6, 50.1, 440, 300 }, + [141] = { 49.6, 50, 440, 300 }, + [142] = { 71.5, 50, 440, 300 }, + [143] = { 72.9, 49.6, 440, 300 }, + [144] = { 39, 47.9, 440, 300 }, + [145] = { 41, 47.5, 440, 300 }, + [146] = { 71.6, 47.4, 440, 300 }, + [147] = { 72, 45.2, 440, 300 }, + [148] = { 49.8, 44.3, 440, 300 }, + [149] = { 55.5, 44.3, 440, 300 }, + [150] = { 59.9, 43.7, 440, 300 }, + [151] = { 62.8, 43.6, 440, 300 }, + [152] = { 42, 43, 440, 300 }, + [153] = { 44.9, 42.9, 440, 300 }, + [154] = { 39.1, 42.9, 440, 300 }, + [155] = { 47.7, 42.3, 440, 300 }, + [156] = { 64.6, 41.2, 440, 300 }, + [157] = { 66.6, 40.9, 440, 300 }, + [158] = { 54.6, 40.7, 440, 300 }, + [159] = { 49.2, 40.6, 440, 300 }, + [160] = { 59.4, 40, 440, 300 }, + [161] = { 40, 39.3, 440, 300 }, + [162] = { 51.7, 37.8, 440, 300 }, + [163] = { 37.6, 37.2, 440, 300 }, + [164] = { 48.6, 37.2, 440, 300 }, + [165] = { 60.8, 37, 440, 300 }, + [166] = { 44, 36.5, 440, 300 }, + [167] = { 42, 36.2, 440, 300 }, + [168] = { 47.1, 36.1, 440, 300 }, + [169] = { 63.3, 35, 440, 300 }, + [170] = { 54.4, 35, 440, 300 }, + [171] = { 44, 34.5, 440, 300 }, + [172] = { 65.8, 34.5, 440, 300 }, + [173] = { 49.8, 33.6, 440, 300 }, + [174] = { 56.5, 32.7, 440, 300 }, + [175] = { 47.3, 32.3, 440, 300 }, + [176] = { 64.2, 32.2, 440, 300 }, + [177] = { 41.5, 31.2, 440, 300 }, + [178] = { 44.8, 29.9, 440, 300 }, + [179] = { 61.7, 29.8, 440, 300 }, + [180] = { 65.6, 29.2, 440, 300 }, + [181] = { 46.8, 27.1, 440, 300 }, + [182] = { 41.5, 26.2, 440, 300 }, + [183] = { 57, 24.8, 440, 300 }, + [184] = { 38.6, 24.8, 440, 300 }, + [185] = { 44.4, 24.8, 440, 300 }, + [186] = { 61.7, 24.1, 440, 300 }, + [187] = { 65.7, 20.1, 440, 300 }, + }, + }, + [2867] = { + ["coords"] = { + [1] = { 66.9, 23.5, 3, 60 }, + [2] = { 66.6, 22, 3, 60 }, + [3] = { 66.6, 21.5, 3, 60 }, + }, + }, + [2868] = { + ["coords"] = { + [1] = { 53, 33.9, 3, 10 }, + }, + ["fac"] = "A", + }, + [2870] = { + ["coords"] = { + [1] = { 36.2, 57.4, 45, 0 }, + [2] = { 52, 50.7, 45, 0 }, + [3] = { 25.5, 30.1, 45, 0 }, + [4] = { 66.7, 29.7, 45, 0 }, + }, + }, + [2871] = { + ["coords"] = { + [1] = { 59.4, 9.6, 15, 900 }, + [2] = { 66.3, 58.9, 17, 900 }, + }, + }, + [2872] = { + ["coords"] = { + [1] = { 59.4, 9.6, 15, 0 }, + [2] = { 59.3, 9.6, 15, 0 }, + [3] = { 66.3, 59, 17, 0 }, + [4] = { 66.3, 58.9, 17, 0 }, + }, + }, + [2875] = { + ["coords"] = { + [1] = { 50.9, 62.4, 3, 10 }, + }, + ["fac"] = "A", + }, + [2883] = { + ["coords"] = { + [1] = { 69.7, 81, 12, 180 }, + [2] = { 70.4, 80, 12, 180 }, + [3] = { 69.2, 79.9, 12, 180 }, + [4] = { 69.7, 79.5, 12, 180 }, + [5] = { 70.9, 79.3, 12, 180 }, + [6] = { 68, 79.2, 12, 180 }, + [7] = { 68.6, 78.4, 12, 180 }, + [8] = { 70.4, 78.2, 12, 180 }, + [9] = { 69.1, 77.6, 12, 180 }, + }, + }, + [2891] = { + ["coords"] = { + [1] = { 46.1, 32.3, 33, 120 }, + }, + }, + [2892] = { + ["coords"] = { + [1] = { 42.2, 36.1, 33, 120 }, + }, + }, + [2893] = { + ["coords"] = { + [1] = { 47.6, 39.5, 33, 120 }, + }, + }, + [2904] = { + ["coords"] = { + [1] = { 53.7, 66.3, 215, 0 }, + [2] = { 44.5, 45.3, 215, 0 }, + [3] = { 42.8, 14, 215, 0 }, + }, + }, + [2907] = { + ["coords"] = { + [1] = { 50.3, 81.6, 215, 10 }, + [2] = { 50.2, 81.5, 215, 10 }, + [3] = { 50.2, 81.4, 215, 10 }, + [4] = { 50.3, 81.4, 215, 10 }, + }, + }, + [2908] = { + ["coords"] = { + [1] = { 53.7, 48.2, 215, 10 }, + }, + ["fac"] = "H", + }, + [2909] = { + ["coords"] = { + [1] = { 42.8, 14, 215, 900 }, + }, + }, + [2910] = { + ["coords"] = { + [1] = { 53.7, 67.1, 215, 180 }, + [2] = { 53.7, 66.8, 215, 180 }, + [3] = { 53.9, 66.7, 215, 180 }, + [4] = { 53.4, 66.7, 215, 180 }, + [5] = { 53.2, 66.7, 215, 180 }, + [6] = { 54.1, 66.4, 215, 180 }, + [7] = { 53.5, 66.3, 215, 180 }, + [8] = { 53.2, 66.2, 215, 180 }, + [9] = { 53.9, 66.1, 215, 180 }, + [10] = { 54, 65.9, 215, 180 }, + [11] = { 53.3, 65.8, 215, 180 }, + [12] = { 53.7, 65.6, 215, 180 }, + [13] = { 44.4, 46.3, 215, 180 }, + [14] = { 44.4, 45.9, 215, 180 }, + [15] = { 44.8, 45.7, 215, 180 }, + [16] = { 44.1, 45.5, 215, 180 }, + [17] = { 45.1, 45.4, 215, 180 }, + [18] = { 44.1, 45.1, 215, 180 }, + [19] = { 44, 45, 215, 180 }, + [20] = { 44.9, 45, 215, 180 }, + [21] = { 44.7, 44.6, 215, 180 }, + [22] = { 44.2, 44.6, 215, 180 }, + [23] = { 44.4, 44.4, 215, 180 }, + [24] = { 44.4, 44.1, 215, 180 }, + [25] = { 42.8, 14.4, 215, 180 }, + [26] = { 43.1, 14.4, 215, 180 }, + [27] = { 42.4, 14.2, 215, 180 }, + [28] = { 43.1, 13.9, 215, 180 }, + [29] = { 42.5, 13.7, 215, 180 }, + [30] = { 42.8, 13.5, 215, 180 }, + }, + }, + [2911] = { + ["coords"] = { + [1] = { 44.5, 45.3, 215, 900 }, + }, + }, + [2912] = { + ["coords"] = { + [1] = { 40.4, 60, 17, 180 }, + [2] = { 38.3, 57.2, 17, 180 }, + [3] = { 37.3, 56.4, 17, 180 }, + [4] = { 53, 73.6, 215, 180 }, + [5] = { 56.7, 73.1, 215, 180 }, + [6] = { 43.6, 72.4, 215, 180 }, + [7] = { 38.8, 71.4, 215, 180 }, + [8] = { 46.3, 71.1, 215, 180 }, + [9] = { 51.1, 71.1, 215, 180 }, + [10] = { 64, 70.7, 215, 180 }, + [11] = { 34.6, 70.4, 215, 180 }, + [12] = { 44.9, 70.2, 215, 180 }, + [13] = { 42.7, 70.2, 215, 180 }, + [14] = { 57.2, 70, 215, 180 }, + [15] = { 37.4, 68.4, 215, 180 }, + [16] = { 47.8, 68.2, 215, 180 }, + [17] = { 59.8, 67.1, 215, 180 }, + [18] = { 44.3, 67.1, 215, 180 }, + [19] = { 55.7, 66.7, 215, 180 }, + [20] = { 50.4, 66.5, 215, 180 }, + [21] = { 50, 66.4, 215, 180 }, + [22] = { 34.2, 66.1, 215, 180 }, + [23] = { 57.7, 64.8, 215, 180 }, + [24] = { 48.7, 64.4, 215, 180 }, + [25] = { 64, 64.4, 215, 180 }, + [26] = { 41.2, 64, 215, 180 }, + [27] = { 51.9, 63.8, 215, 180 }, + [28] = { 38.8, 63.8, 215, 180 }, + [29] = { 51.6, 63.4, 215, 180 }, + [30] = { 68.6, 63.3, 215, 180 }, + [31] = { 56, 62.2, 215, 180 }, + [32] = { 52, 61.1, 215, 180 }, + [33] = { 44.9, 59.8, 215, 180 }, + [34] = { 38.8, 59.7, 215, 180 }, + [35] = { 58.1, 58.4, 215, 180 }, + [36] = { 53.5, 58, 215, 180 }, + [37] = { 64.3, 57.7, 215, 180 }, + [38] = { 35.4, 57.7, 215, 180 }, + [39] = { 42.1, 56.4, 215, 180 }, + [40] = { 49.3, 56.2, 215, 180 }, + [41] = { 62.3, 56.1, 215, 180 }, + [42] = { 59.2, 54.3, 215, 180 }, + [43] = { 41.1, 53.5, 215, 180 }, + [44] = { 56.1, 52.6, 215, 180 }, + [45] = { 45.4, 52.2, 215, 180 }, + [46] = { 43.8, 51.7, 215, 180 }, + [47] = { 40.9, 51.5, 215, 180 }, + [48] = { 56.3, 50.9, 215, 180 }, + [49] = { 44.7, 49, 215, 180 }, + [50] = { 53, 48.3, 215, 180 }, + [51] = { 52, 47.4, 215, 180 }, + [52] = { 48.3, 47.3, 215, 180 }, + [53] = { 43.3, 46.1, 215, 180 }, + [54] = { 46.8, 45.6, 215, 180 }, + [55] = { 35.6, 43.4, 215, 180 }, + [56] = { 38.3, 42.5, 215, 180 }, + [57] = { 34.6, 40.2, 215, 180 }, + [58] = { 46.3, 38.4, 215, 180 }, + [59] = { 35.8, 36.8, 215, 180 }, + [60] = { 56.9, 36.4, 215, 180 }, + [61] = { 47.4, 33.9, 215, 180 }, + [62] = { 52.8, 31.2, 215, 180 }, + [63] = { 47.3, 31.1, 215, 180 }, + [64] = { 56.6, 30.5, 215, 180 }, + [65] = { 50.7, 28.6, 215, 180 }, + [66] = { 48.2, 25.9, 215, 180 }, + [67] = { 38.8, 16, 215, 180 }, + [68] = { 47.2, 15.9, 215, 180 }, + [69] = { 41.8, 13.1, 215, 180 }, + [70] = { 50.1, 11.1, 215, 180 }, + [71] = { 88.2, 70.1, 405, 180 }, + }, + }, + [2913] = { + ["coords"] = { + [1] = { 53.7, 66.3, 215, 900 }, + }, + }, + [2914] = { + ["coords"] = { + [1] = { 47.7, 57.4, 215, 900 }, + }, + }, + [2933] = { + ["coords"] = { + [1] = { 81.5, 49.9, 3, 10 }, + }, + }, + [2968] = { + ["coords"] = { + [1] = { 38.2, 33.4, 215, 900 }, + }, + }, + [2969] = { + ["coords"] = { + [1] = { 51.5, 59.5, 215, 900 }, + }, + }, + [2970] = { + ["coords"] = { + [1] = { 51.5, 59.5, 215, 900 }, + }, + }, + [2971] = { + ["coords"] = { + [1] = { 51.6, 59.5, 215, 900 }, + }, + }, + [2972] = { + ["coords"] = { + [1] = { 51.5, 59.5, 215, 900 }, + }, + }, + [2973] = { + ["coords"] = { + [1] = { 49.4, 64.2, 215, 900 }, + }, + }, + [2974] = { + ["coords"] = { + [1] = { 49.5, 64.2, 215, 900 }, + }, + }, + [2975] = { + ["coords"] = { + [1] = { 49.4, 64.2, 215, 900 }, + }, + }, + [2976] = { + ["coords"] = { + [1] = { 49.5, 64.2, 215, 900 }, + }, + }, + [2977] = { + ["coords"] = { + [1] = { 36, 78.7, 215, 900 }, + }, + }, + [2978] = { + ["coords"] = { + [1] = { 35.9, 78.7, 215, 900 }, + }, + }, + [3076] = { + ["coords"] = { + [1] = { 63.2, 82.7, 215, 10 }, + }, + }, + [3084] = { + ["coords"] = { + [1] = { 43.3, 68.4, 14, 900 }, + }, + }, + [3085] = { + ["coords"] = { + [1] = { 47.8, 77.7, 14, 900 }, + }, + }, + [3089] = { + ["coords"] = { + [1] = { 67.3, 86.9, 14, 900 }, + [2] = { 80.4, 42.4, 17, 900 }, + }, + }, + [3187] = { + ["coords"] = { + [1] = { 73.6, 50.1, 10, 3600 }, + }, + }, + [3189] = { + ["coords"] = { + [1] = { 49.8, 81.3, 14, 10 }, + }, + }, + [3190] = { + ["coords"] = { + [1] = { 47.7, 77.3, 14, 10 }, + }, + }, + [3192] = { + ["coords"] = { + [1] = { 46.2, 78.9, 14, 10 }, + }, + }, + [3194] = { + ["coords"] = { + [1] = { 45, 78.6, 215, 900 }, + }, + }, + [3195] = { + ["coords"] = { + [1] = { 38.1, 33.3, 215, 900 }, + }, + }, + [3196] = { + ["coords"] = { + [1] = { 40.2, 44.4, 215, 900 }, + }, + }, + [3197] = { + ["coords"] = { + [1] = { 40.2, 44.5, 215, 900 }, + }, + }, + [3198] = { + ["coords"] = { + [1] = { 57.4, 61.4, 215, 900 }, + }, + }, + [3199] = { + ["coords"] = { + [1] = { 57.5, 61.4, 215, 900 }, + }, + }, + [3200] = { + ["coords"] = { + [1] = { 64.9, 58.4, 1, 900 }, + }, + }, + [3201] = { + ["coords"] = { + [1] = { 71.4, 24.1, 1, 180 }, + }, + }, + [3202] = { + ["coords"] = { + [1] = { 38.4, 23.5, 33, 900 }, + }, + ["fac"] = "H", + }, + [3203] = { + ["coords"] = { + [1] = { 38.4, 23.5, 33, 900 }, + }, + ["fac"] = "H", + }, + [3204] = { + ["coords"] = { + [1] = { 38.4, 23.5, 33, 900 }, + }, + ["fac"] = "H", + }, + [3205] = { + ["coords"] = { + [1] = { 43.2, 24.4, 33, 900 }, + }, + ["fac"] = "A", + }, + [3206] = { + ["coords"] = { + [1] = { 43.2, 24.4, 33, 900 }, + }, + ["fac"] = "A", + }, + [3207] = { + ["coords"] = { + [1] = { 43.2, 24.4, 33, 900 }, + }, + ["fac"] = "A", + }, + [3208] = { + ["coords"] = { + [1] = { 33.7, 51, 33, 900 }, + }, + ["fac"] = "H", + }, + [3209] = { + ["coords"] = { + [1] = { 33.7, 51, 33, 900 }, + }, + ["fac"] = "H", + }, + [3210] = { + ["coords"] = { + [1] = { 33.7, 51, 33, 900 }, + }, + ["fac"] = "H", + }, + [3211] = { + ["coords"] = { + [1] = { 33.8, 50.8, 33, 900 }, + }, + ["fac"] = "A", + }, + [3212] = { + ["coords"] = { + [1] = { 33.8, 50.9, 33, 900 }, + }, + ["fac"] = "A", + }, + [3213] = { + ["coords"] = { + [1] = { 33.8, 50.9, 33, 900 }, + }, + ["fac"] = "A", + }, + [3214] = { + ["coords"] = { + [1] = { 30.1, 72.5, 33, 900 }, + }, + ["fac"] = "H", + }, + [3215] = { + ["coords"] = { + [1] = { 30.1, 72.5, 33, 900 }, + }, + ["fac"] = "H", + }, + [3216] = { + ["coords"] = { + [1] = { 30.1, 72.2, 33, 900 }, + }, + ["fac"] = "A", + }, + [3217] = { + ["coords"] = { + [1] = { 30.1, 72.2, 33, 900 }, + }, + ["fac"] = "A", + }, + [3220] = { + ["coords"] = { + [1] = { 54.2, 61.6, 331, 900 }, + }, + }, + [3222] = { + ["coords"] = { + [1] = { 36.7, 51.9, 17, 900 }, + [2] = { 61.1, 47.2, 215, 900 }, + }, + }, + [3223] = { + ["coords"] = { + [1] = { 36.7, 51.8, 17, 900 }, + [2] = { 61.1, 47.1, 215, 900 }, + }, + }, + [3224] = { + ["coords"] = { + [1] = { 46, 14.3, 14, 900 }, + }, + ["fac"] = "H", + }, + [3225] = { + ["coords"] = { + [1] = { 38.4, 43.2, 14, 900 }, + }, + ["fac"] = "H", + }, + [3226] = { + ["coords"] = { + [1] = { 52.6, 42.6, 14, 900 }, + }, + ["fac"] = "H", + }, + [3227] = { + ["coords"] = { + [1] = { 52.6, 42.6, 14, 900 }, + }, + ["fac"] = "H", + }, + [3228] = { + ["coords"] = { + [1] = { 52.6, 42.6, 14, 900 }, + }, + ["fac"] = "H", + }, + [3229] = { + ["coords"] = { + [1] = { 52.5, 54, 14, 7200 }, + }, + ["fac"] = "H", + }, + [3230] = { + ["coords"] = { + [1] = { 52.5, 54, 14, 7200 }, + }, + ["fac"] = "H", + }, + [3231] = { + ["coords"] = { + [1] = { 44.2, 68.1, 14, 900 }, + }, + ["fac"] = "H", + }, + [3232] = { + ["coords"] = { + [1] = { 51.9, 68.4, 14, 900 }, + }, + ["fac"] = "H", + }, + [3233] = { + ["coords"] = { + [1] = { 51.9, 68.4, 14, 900 }, + }, + ["fac"] = "H", + }, + [3234] = { + ["coords"] = { + [1] = { 38.4, 43.2, 14, 900 }, + }, + ["fac"] = "H", + }, + [3235] = { + ["coords"] = { + [1] = { 52.5, 54, 14, 7200 }, + }, + ["fac"] = "H", + }, + [3236] = { + ["coords"] = { + [1] = { 62.1, 60.7, 14, 180 }, + [2] = { 62.5, 60.6, 14, 180 }, + [3] = { 62.4, 59.9, 14, 180 }, + [4] = { 63.2, 58.1, 14, 180 }, + [5] = { 63.3, 57.3, 14, 180 }, + [6] = { 62.3, 56.3, 14, 180 }, + [7] = { 63.6, 56.3, 14, 180 }, + [8] = { 61.4, 56.1, 14, 180 }, + [9] = { 61.9, 55.5, 14, 180 }, + [10] = { 64.7, 53.6, 14, 180 }, + [11] = { 64.2, 53.5, 14, 180 }, + [12] = { 63.8, 53, 14, 180 }, + [13] = { 64.4, 50.3, 14, 180 }, + [14] = { 63.9, 50.3, 14, 180 }, + [15] = { 64.6, 50, 14, 180 }, + [16] = { 62, 46.3, 14, 180 }, + [17] = { 62.4, 46, 14, 180 }, + [18] = { 61.8, 45.8, 14, 180 }, + [19] = { 62.2, 42.5, 14, 180 }, + [20] = { 61.9, 42.3, 14, 180 }, + [21] = { 62.1, 41.7, 14, 180 }, + }, + }, + [3237] = { + ["coords"] = { + [1] = { 67.5, 87.8, 14, 10 }, + [2] = { 67.4, 87.8, 14, 10 }, + [3] = { 80.4, 42.9, 17, 10 }, + [4] = { 80.5, 42.9, 17, 10 }, + }, + }, + [3238] = { + ["coords"] = { + [1] = { 45, 62.2, 17, 10 }, + [2] = { 56.6, 43.7, 17, 10 }, + [3] = { 41.8, 38.8, 17, 10 }, + [4] = { 54.7, 37.2, 17, 10 }, + [5] = { 55.7, 27.3, 17, 10 }, + [6] = { 55.8, 20, 17, 10 }, + [7] = { 37.9, 16.2, 17, 10 }, + [8] = { 43.8, 12.1, 17, 10 }, + [9] = { 57.2, 9, 17, 10 }, + }, + }, + [3239] = { + ["coords"] = { + [1] = { 59.3, 57.6, 14, 10 }, + }, + ["fac"] = "H", + }, + [3240] = { + ["coords"] = { + [1] = { 62.1, 96.2, 14, 180 }, + [2] = { 63, 94.5, 14, 180 }, + [3] = { 63, 94.4, 14, 180 }, + [4] = { 59.8, 89.7, 14, 180 }, + [5] = { 66.8, 89, 14, 180 }, + [6] = { 68.3, 88.5, 14, 180 }, + [7] = { 60, 88, 14, 180 }, + [8] = { 68.5, 86.9, 14, 180 }, + [9] = { 63.9, 86.9, 14, 180 }, + [10] = { 59.5, 83.7, 14, 180 }, + [11] = { 60.3, 82.9, 14, 180 }, + [12] = { 64.9, 82.4, 14, 180 }, + [13] = { 69.2, 82.3, 14, 180 }, + [14] = { 67.2, 80.7, 14, 180 }, + [15] = { 68, 80.4, 14, 180 }, + [16] = { 60.9, 78.8, 14, 180 }, + [17] = { 61.4, 78.3, 14, 180 }, + [18] = { 69.7, 74.6, 14, 180 }, + [19] = { 68.7, 74.5, 14, 180 }, + [20] = { 63.4, 74.4, 14, 180 }, + [21] = { 64.6, 73.3, 14, 180 }, + [22] = { 68.4, 71.9, 14, 180 }, + [23] = { 67, 71.4, 14, 180 }, + [24] = { 70.2, 71, 14, 180 }, + [25] = { 69, 71, 14, 180 }, + [26] = { 69.7, 70.4, 14, 180 }, + [27] = { 67.8, 69.8, 14, 180 }, + [28] = { 77.7, 47.3, 17, 180 }, + [29] = { 78.1, 46.4, 17, 180 }, + [30] = { 76.4, 43.9, 17, 180 }, + [31] = { 80.1, 43.5, 17, 180 }, + [32] = { 80.9, 43.3, 17, 180 }, + [33] = { 76.6, 43, 17, 180 }, + [34] = { 81, 42.4, 17, 180 }, + [35] = { 78.6, 42.4, 17, 180 }, + [36] = { 76.3, 40.8, 17, 180 }, + }, + ["fac"] = "H", + }, + [3246] = { + ["coords"] = { + [1] = { 56.7, 43.6, 17, 900 }, + }, + }, + [3249] = { + ["coords"] = { + [1] = { 54.4, 46.6, 17, 900 }, + }, + }, + [3251] = { + ["coords"] = { + [1] = { 64.4, 43.9, 17, 900 }, + }, + }, + [3252] = { + ["coords"] = { + [1] = { 63.6, 46.1, 17, 900 }, + }, + }, + [3253] = { + ["coords"] = { + [1] = { 63.6, 49.2, 17, 900 }, + }, + }, + [3254] = { + ["coords"] = { + [1] = { 62.7, 49.7, 17, 900 }, + }, + }, + [3256] = { + ["coords"] = { + [1] = { 45, 20.1, 17, 900 }, + }, + }, + [3258] = { + ["coords"] = { + [1] = { 46.6, 23, 17, 900 }, + }, + }, + [3260] = { + ["coords"] = { + [1] = { 42.1, 24.7, 17, 900 }, + }, + }, + [3262] = { + ["coords"] = { + [1] = { 43.6, 26.3, 17, 900 }, + }, + }, + [3264] = { + ["coords"] = { + [1] = { 47.8, 24.6, 17, 900 }, + }, + }, + [3265] = { + ["coords"] = { + [1] = { 45.3, 54, 17, 180 }, + }, + }, + [3266] = { + ["coords"] = { + [1] = { 47.5, 85.3, 17, 900 }, + }, + }, + [3270] = { + ["coords"] = { + [1] = { 42.5, 52.8, 3, 900 }, + }, + }, + [3276] = { + ["coords"] = { + [1] = { 51.9, 68.4, 14, 900 }, + }, + ["fac"] = "H", + }, + [3286] = { + ["coords"] = { + [1] = { 38.6, 25.8, 215, 900 }, + [2] = { 43.1, 44, 1638, 900 }, + }, + }, + [3290] = { + ["coords"] = { + [1] = { 48.1, 34.4, 14, 60 }, + [2] = { 49.4, 33.7, 14, 60 }, + [3] = { 47.3, 33.4, 14, 60 }, + [4] = { 49.1, 33.1, 14, 60 }, + [5] = { 49.6, 32.1, 14, 60 }, + [6] = { 48.1, 32, 14, 60 }, + [7] = { 48.5, 32, 14, 60 }, + [8] = { 47.2, 30.9, 14, 60 }, + [9] = { 47.2, 29.7, 14, 60 }, + [10] = { 51.7, 27.8, 14, 60 }, + [11] = { 50.5, 27.3, 14, 60 }, + [12] = { 49.9, 26.9, 14, 60 }, + [13] = { 50.9, 25.9, 14, 60 }, + [14] = { 50.1, 25.7, 14, 60 }, + [15] = { 50.5, 25.3, 14, 60 }, + [16] = { 50.1, 24.5, 14, 60 }, + [17] = { 49.7, 24.3, 14, 60 }, + [18] = { 49.1, 22.6, 14, 60 }, + [19] = { 49.7, 21.9, 14, 60 }, + }, + }, + [3296] = { + ["coords"] = { + [1] = { 37.3, 30, 215, 900 }, + [2] = { 37.1, 64.6, 1638, 900 }, + }, + }, + [3298] = { + ["coords"] = { + [1] = { 39, 28.3, 215, 900 }, + [2] = { 45.5, 56.3, 1638, 900 }, + }, + }, + [3301] = { + ["coords"] = { + [1] = { 44.8, 59.4, 17, 900 }, + [2] = { 31.2, 21.9, 17, 900 }, + [3] = { 44.1, 75.9, 215, 900 }, + [4] = { 74.5, 42.8, 357, 900 }, + [5] = { 66.6, 38.3, 357, 180 }, + [6] = { 34.1, 39.9, 400, 180 }, + [7] = { 77.5, 85.5, 406, 900 }, + }, + }, + [3303] = { + ["coords"] = { + [1] = { 40.4, 26.3, 215, 900 }, + [2] = { 52, 46.5, 1638, 900 }, + }, + }, + [3306] = { + ["coords"] = { + [1] = { 40.5, 15.6, 215, 900 }, + }, + }, + [3307] = { + ["coords"] = { + [1] = { 31.5, 48.3, 215, 900 }, + }, + }, + [3308] = { + ["coords"] = { + [1] = { 53.7, 48.3, 215, 900 }, + }, + }, + [3310] = { + ["coords"] = { + [1] = { 35.4, 62.3, 215, 900 }, + }, + }, + [3311] = { + ["coords"] = { + [1] = { 48.3, 72, 215, 900 }, + }, + }, + [3314] = { + ["coords"] = { + [1] = { 38.4, 43.2, 14, 900 }, + }, + ["fac"] = "H", + }, + [3315] = { + ["coords"] = { + [1] = { 40.2, 27.7, 215, 900 }, + [2] = { 51.2, 53.4, 1638, 900 }, + }, + }, + [3523] = { + ["coords"] = { + [1] = { 48, 19.1, 17, 120 }, + }, + }, + [3524] = { + ["coords"] = { + [1] = { 48, 19.1, 17, 120 }, + }, + }, + [3525] = { + ["coords"] = { + [1] = { 48, 19.1, 17, 900 }, + }, + ["fac"] = "AH", + }, + [3636] = { + ["coords"] = { + [1] = { 48.3, 89.4, 361, 180 }, + }, + }, + [3637] = { + ["coords"] = { + [1] = { 48.3, 91.4, 361, 180 }, + }, + }, + [3638] = { + ["coords"] = { + [1] = { 49.1, 91.5, 361, 180 }, + }, + }, + [3639] = { + ["coords"] = { + [1] = { 48.3, 93.9, 361, 180 }, + }, + }, + [3640] = { + ["coords"] = { + [1] = { 55.3, 44.3, 17, 180 }, + [2] = { 55.8, 43.4, 17, 180 }, + [3] = { 53.4, 43.4, 17, 180 }, + [4] = { 55.3, 43.2, 17, 180 }, + [5] = { 56.1, 43.1, 17, 180 }, + [6] = { 54.3, 42.9, 17, 180 }, + [7] = { 55.2, 42.5, 17, 180 }, + [8] = { 56, 42.5, 17, 180 }, + [9] = { 55.7, 42.1, 17, 180 }, + [10] = { 46.8, 41.9, 17, 180 }, + [11] = { 55.1, 41.8, 17, 180 }, + [12] = { 55.5, 41.8, 17, 180 }, + [13] = { 56.3, 41.4, 17, 180 }, + [14] = { 47.7, 41.2, 17, 180 }, + [15] = { 45.8, 40.9, 17, 180 }, + [16] = { 47.5, 40.6, 17, 180 }, + [17] = { 55.3, 40.4, 17, 180 }, + [18] = { 46.2, 40.4, 17, 180 }, + [19] = { 46.9, 40.4, 17, 180 }, + [20] = { 48.2, 40.3, 17, 180 }, + [21] = { 45.8, 39.8, 17, 180 }, + [22] = { 47.7, 39.6, 17, 180 }, + [23] = { 47.1, 39.4, 17, 180 }, + [24] = { 45.8, 38.8, 17, 180 }, + [25] = { 46.7, 38.8, 17, 180 }, + [26] = { 45.3, 38.4, 17, 180 }, + [27] = { 46.3, 38, 17, 180 }, + [28] = { 46, 37.9, 17, 180 }, + [29] = { 46.4, 37.5, 17, 180 }, + [30] = { 47.4, 37.5, 17, 180 }, + [31] = { 46, 37.2, 17, 180 }, + [32] = { 44.6, 25.6, 17, 180 }, + [33] = { 43.9, 24.4, 17, 180 }, + [34] = { 45, 24.1, 17, 180 }, + [35] = { 44.5, 23.5, 17, 180 }, + [36] = { 45.7, 23.5, 17, 180 }, + [37] = { 45.2, 23.3, 17, 180 }, + [38] = { 44.7, 23.1, 17, 180 }, + [39] = { 45.4, 23, 17, 180 }, + [40] = { 44.7, 22.5, 17, 180 }, + [41] = { 45.6, 22.5, 17, 180 }, + [42] = { 44.9, 22.1, 17, 180 }, + [43] = { 45.3, 22.1, 17, 180 }, + [44] = { 45.6, 21.9, 17, 180 }, + }, + ["fac"] = "AH", + }, + [3642] = { + ["coords"] = { + [1] = { 43, 23.5, 17, 3600 }, + }, + }, + [3643] = { + ["coords"] = { + [1] = { 41.5, 66.7, 40, 10 }, + }, + ["fac"] = "A", + }, + [3644] = { + ["coords"] = { + [1] = { 47, 85.6, 17, 60 }, + }, + }, + [3646] = { + ["coords"] = { + [1] = { 26.3, 58.5, 15, 10 }, + [2] = { 49.1, 84.3, 17, 10 }, + }, + }, + [3656] = { + ["coords"] = { + [1] = { 47.6, 55.4, 215, 900 }, + }, + }, + [3658] = { + ["coords"] = { + [1] = { 78, 62.6, 1, 180 }, + [2] = { 77.3, 60.9, 1, 180 }, + [3] = { 67.8, 60.5, 1, 180 }, + [4] = { 68.8, 59.4, 1, 180 }, + [5] = { 27.7, 58.1, 1, 180 }, + [6] = { 68.8, 56.1, 1, 180 }, + [7] = { 69.4, 55.2, 1, 180 }, + [8] = { 68.1, 54.4, 1, 180 }, + [9] = { 46.9, 53.6, 1, 180 }, + [10] = { 77.3, 52.6, 1, 180 }, + [11] = { 46, 51.6, 1, 180 }, + [12] = { 34.4, 51.5, 1, 180 }, + [13] = { 25.9, 51, 1, 180 }, + [14] = { 25.3, 50.4, 1, 180 }, + [15] = { 63, 50.1, 1, 180 }, + [16] = { 49.5, 48.5, 1, 180 }, + [17] = { 86, 48.2, 1, 180 }, + [18] = { 62, 46.9, 1, 180 }, + [19] = { 30.8, 45.5, 1, 180 }, + [20] = { 41.1, 44.9, 1, 180 }, + [21] = { 25, 44.5, 1, 180 }, + [22] = { 58, 43.8, 1, 180 }, + [23] = { 84.2, 41.1, 1, 180 }, + [24] = { 84.1, 38, 1, 180 }, + [25] = { 26.5, 36.6, 1, 180 }, + [26] = { 27.5, 36.4, 1, 180 }, + [27] = { 36.9, 36.4, 1, 180 }, + [28] = { 41.7, 36, 1, 180 }, + [29] = { 26.3, 91.8, 12, 180 }, + [30] = { 43.1, 89.4, 12, 180 }, + [31] = { 25, 89.2, 12, 180 }, + [32] = { 33.6, 88, 12, 180 }, + [33] = { 48.2, 87.9, 12, 180 }, + [34] = { 26.2, 86.8, 12, 180 }, + [35] = { 76.2, 86.4, 12, 180 }, + [36] = { 27.4, 86, 12, 180 }, + [37] = { 43.5, 85.1, 12, 180 }, + [38] = { 34.9, 84.4, 12, 180 }, + [39] = { 50.9, 83.1, 12, 180 }, + [40] = { 33.7, 82.7, 12, 180 }, + [41] = { 39.2, 82.6, 12, 180 }, + [42] = { 76.4, 82.2, 12, 180 }, + [43] = { 23.5, 80.8, 12, 180 }, + [44] = { 84.6, 79.9, 12, 180 }, + [45] = { 25.3, 77.3, 12, 180 }, + [46] = { 45.8, 73.1, 12, 180 }, + [47] = { 24.8, 72, 12, 180 }, + [48] = { 64.9, 70.6, 12, 180 }, + [49] = { 64.9, 69.8, 12, 180 }, + [50] = { 79.4, 69.2, 12, 180 }, + [51] = { 84.7, 69.1, 12, 180 }, + [52] = { 41.9, 67.4, 12, 180 }, + [53] = { 44, 65.6, 12, 180 }, + [54] = { 30.3, 64.8, 12, 180 }, + [55] = { 84.6, 64.5, 12, 180 }, + [56] = { 47.6, 62.2, 12, 180 }, + [57] = { 35.9, 59.5, 12, 180 }, + [58] = { 52.6, 59.1, 12, 180 }, + [59] = { 34, 57, 12, 180 }, + [60] = { 64.7, 56, 12, 180 }, + [61] = { 67.7, 45, 12, 180 }, + [62] = { 78.6, 44.1, 12, 180 }, + [63] = { 66.4, 41.5, 12, 180 }, + [64] = { 68.1, 39.8, 12, 180 }, + [65] = { 69.4, 38.2, 12, 180 }, + [66] = { 62.8, 97.9, 14, 180 }, + [67] = { 61.6, 95.3, 14, 180 }, + [68] = { 59.7, 91.2, 14, 180 }, + [69] = { 61.2, 89.2, 14, 180 }, + [70] = { 64.4, 88, 14, 180 }, + [71] = { 67, 86.5, 14, 180 }, + [72] = { 60.2, 84.4, 14, 180 }, + [73] = { 68.3, 83.2, 14, 180 }, + [74] = { 50.1, 81, 14, 180 }, + [75] = { 68.8, 79.8, 14, 180 }, + [76] = { 46.1, 78.8, 14, 180 }, + [77] = { 61.2, 78.8, 14, 180 }, + [78] = { 47.5, 77.2, 14, 180 }, + [79] = { 70.7, 74.1, 14, 180 }, + [80] = { 64.4, 72.8, 14, 180 }, + [81] = { 70.5, 69.5, 14, 180 }, + [82] = { 60.9, 69.4, 14, 180 }, + [83] = { 62.1, 65.9, 14, 180 }, + [84] = { 61.4, 61.7, 14, 180 }, + [85] = { 59.7, 58, 14, 180 }, + [86] = { 57.2, 56.2, 14, 180 }, + [87] = { 57.9, 55.7, 14, 180 }, + [88] = { 42.7, 49.2, 14, 180 }, + [89] = { 51.8, 43.7, 14, 180 }, + [90] = { 53.1, 43.1, 14, 180 }, + [91] = { 51.9, 43.1, 14, 180 }, + [92] = { 54.2, 43, 14, 180 }, + [93] = { 51.1, 42.8, 14, 180 }, + [94] = { 53.1, 42.2, 14, 180 }, + [95] = { 51.2, 42.2, 14, 180 }, + [96] = { 34.7, 42.1, 14, 180 }, + [97] = { 54.3, 41.9, 14, 180 }, + [98] = { 51.9, 41.8, 14, 180 }, + [99] = { 51.8, 41.7, 14, 180 }, + [100] = { 49.8, 40.4, 14, 180 }, + [101] = { 49.6, 40.3, 14, 180 }, + [102] = { 59.8, 40.2, 14, 180 }, + [103] = { 40.2, 35.3, 14, 180 }, + [104] = { 40.3, 35.3, 14, 180 }, + [105] = { 59.9, 35.1, 14, 180 }, + [106] = { 46.9, 33.5, 14, 180 }, + [107] = { 48.7, 32.4, 14, 180 }, + [108] = { 50, 30.4, 14, 180 }, + [109] = { 49.2, 29.8, 14, 180 }, + [110] = { 43.3, 29.8, 14, 180 }, + [111] = { 47.2, 29.4, 14, 180 }, + [112] = { 48.6, 29, 14, 180 }, + [113] = { 41.8, 26.9, 14, 180 }, + [114] = { 50.5, 25.3, 14, 180 }, + [115] = { 59.4, 24.8, 14, 180 }, + [116] = { 51.9, 24.5, 14, 180 }, + [117] = { 46.2, 23.2, 14, 180 }, + [118] = { 51.2, 23.1, 14, 180 }, + [119] = { 37, 22.9, 14, 180 }, + [120] = { 59.5, 20.7, 14, 180 }, + [121] = { 56.5, 20, 14, 180 }, + [122] = { 51.7, 18.9, 14, 180 }, + [123] = { 58, 15.4, 14, 180 }, + [124] = { 41.9, 15.3, 14, 180 }, + [125] = { 56.1, 9.7, 14, 180 }, + [126] = { 38, 50.5, 17, 180 }, + [127] = { 38.6, 50.4, 17, 180 }, + [128] = { 37.5, 50.1, 17, 180 }, + [129] = { 38.3, 49.9, 17, 180 }, + [130] = { 36.2, 49.8, 17, 180 }, + [131] = { 78, 48.2, 17, 180 }, + [132] = { 38, 47.6, 17, 180 }, + [133] = { 37.6, 47.2, 17, 180 }, + [134] = { 36.5, 47.2, 17, 180 }, + [135] = { 77.4, 46.8, 17, 180 }, + [136] = { 35.6, 46.6, 17, 180 }, + [137] = { 36.5, 45.6, 17, 180 }, + [138] = { 35.6, 45.6, 17, 180 }, + [139] = { 35.8, 45.4, 17, 180 }, + [140] = { 76.4, 44.7, 17, 180 }, + [141] = { 37, 43.8, 17, 180 }, + [142] = { 77.2, 43.6, 17, 180 }, + [143] = { 78.9, 43, 17, 180 }, + [144] = { 80.2, 42.2, 17, 180 }, + [145] = { 76.7, 41.1, 17, 180 }, + [146] = { 80.9, 40.5, 17, 180 }, + [147] = { 63.3, 19.1, 17, 180 }, + [148] = { 64.6, 9, 17, 180 }, + [149] = { 26.8, 59.5, 28, 180 }, + [150] = { 26.9, 56.7, 28, 180 }, + [151] = { 26.8, 55.2, 28, 180 }, + [152] = { 20.3, 49.2, 28, 180 }, + [153] = { 67.1, 25.9, 40, 180 }, + [154] = { 83.4, 72.3, 85, 180 }, + [155] = { 83.5, 69.6, 85, 180 }, + [156] = { 51.7, 68.2, 85, 180 }, + [157] = { 83.4, 68.2, 85, 180 }, + [158] = { 50.6, 67.7, 85, 180 }, + [159] = { 51.1, 67.4, 85, 180 }, + [160] = { 77.2, 62.4, 85, 180 }, + [161] = { 76.1, 61.6, 85, 180 }, + [162] = { 77.3, 59.6, 85, 180 }, + [163] = { 60.5, 59, 85, 180 }, + [164] = { 78.3, 56.2, 85, 180 }, + [165] = { 52.5, 56, 85, 180 }, + [166] = { 78.7, 55.7, 85, 180 }, + [167] = { 79.5, 55.5, 85, 180 }, + [168] = { 61.5, 51.8, 85, 180 }, + [169] = { 38.2, 49.7, 85, 180 }, + [170] = { 31.8, 47.1, 85, 180 }, + [171] = { 33.6, 43.6, 85, 180 }, + [172] = { 29.2, 40.4, 85, 180 }, + [173] = { 46, 38.8, 85, 180 }, + [174] = { 49.7, 36.3, 85, 180 }, + [175] = { 60.5, 33.6, 85, 180 }, + [176] = { 48.9, 33.4, 85, 180 }, + [177] = { 57.9, 33.3, 85, 180 }, + [178] = { 42.9, 32.4, 85, 180 }, + [179] = { 46.5, 32.2, 85, 180 }, + [180] = { 44.2, 32.1, 85, 180 }, + [181] = { 58.6, 31, 85, 180 }, + [182] = { 47.4, 30.2, 85, 180 }, + [183] = { 54.5, 29.8, 85, 180 }, + [184] = { 51, 29.5, 85, 180 }, + [185] = { 64.5, 29.1, 85, 180 }, + [186] = { 52.5, 27.4, 85, 180 }, + [187] = { 59.1, 27.1, 85, 180 }, + [188] = { 79.8, 26.1, 85, 180 }, + [189] = { 74.9, 26, 85, 180 }, + [190] = { 68, 25.4, 85, 180 }, + [191] = { 79.6, 25.1, 85, 180 }, + [192] = { 79.3, 24.5, 85, 180 }, + [193] = { 38.4, 80.2, 141, 180 }, + [194] = { 38.9, 78.7, 141, 180 }, + [195] = { 47.4, 77.5, 141, 180 }, + [196] = { 56.7, 75.7, 141, 180 }, + [197] = { 41.1, 72.7, 141, 180 }, + [198] = { 37.7, 67.1, 141, 180 }, + [199] = { 65.8, 65.1, 141, 180 }, + [200] = { 44.5, 62.6, 141, 180 }, + [201] = { 57.1, 61.4, 141, 180 }, + [202] = { 43.9, 61.1, 141, 180 }, + [203] = { 57.7, 60.8, 141, 180 }, + [204] = { 44.4, 60.3, 141, 180 }, + [205] = { 55.9, 59.7, 141, 180 }, + [206] = { 66.1, 59.1, 141, 180 }, + [207] = { 46.2, 58.4, 141, 180 }, + [208] = { 55.5, 57.2, 141, 180 }, + [209] = { 67.3, 56.9, 141, 180 }, + [210] = { 55.6, 56.7, 141, 180 }, + [211] = { 55.5, 56.6, 141, 180 }, + [212] = { 69.3, 53, 141, 180 }, + [213] = { 41.6, 49.6, 141, 180 }, + [214] = { 37.1, 43.8, 141, 180 }, + [215] = { 43, 41.9, 141, 180 }, + [216] = { 37.7, 41.4, 141, 180 }, + [217] = { 36, 39.1, 141, 180 }, + [218] = { 34.1, 34.9, 141, 180 }, + [219] = { 38.6, 34.2, 141, 180 }, + [220] = { 32.2, 31.9, 141, 180 }, + [221] = { 34, 27.8, 141, 180 }, + [222] = { 48.4, 72.3, 215, 180 }, + [223] = { 47.3, 62.2, 215, 180 }, + [224] = { 35.3, 62, 215, 180 }, + [225] = { 46.5, 61.7, 215, 180 }, + [226] = { 47.6, 61.4, 215, 180 }, + [227] = { 46.7, 60.7, 215, 180 }, + [228] = { 45.9, 60.2, 215, 180 }, + [229] = { 48.4, 59.6, 215, 180 }, + [230] = { 31.9, 59.5, 215, 180 }, + [231] = { 48.4, 59, 215, 180 }, + [232] = { 46, 57.6, 215, 180 }, + [233] = { 45.6, 57.6, 215, 180 }, + [234] = { 47.7, 57.4, 215, 180 }, + [235] = { 47.2, 56.6, 215, 180 }, + [236] = { 48.1, 56, 215, 180 }, + [237] = { 53.6, 48.4, 215, 180 }, + [238] = { 53.5, 48.3, 215, 180 }, + [239] = { 31.7, 48.2, 215, 180 }, + [240] = { 53.7, 48, 215, 180 }, + [241] = { 32.9, 47.3, 215, 180 }, + [242] = { 63.7, 44.6, 215, 180 }, + [243] = { 64.8, 44.5, 215, 180 }, + [244] = { 62.7, 43.8, 215, 180 }, + [245] = { 64.3, 43.3, 215, 180 }, + [246] = { 60.2, 43.1, 215, 180 }, + [247] = { 31.6, 42.3, 215, 180 }, + [248] = { 63.7, 38.9, 215, 180 }, + [249] = { 63, 38.1, 215, 180 }, + [250] = { 60.8, 38, 215, 180 }, + [251] = { 59.1, 36.8, 215, 180 }, + [252] = { 32.8, 36, 215, 180 }, + [253] = { 60.8, 34.9, 215, 180 }, + [254] = { 58.9, 34.8, 215, 180 }, + [255] = { 59.4, 34.5, 215, 180 }, + [256] = { 61.8, 31.3, 215, 180 }, + [257] = { 40.3, 16.1, 215, 180 }, + [258] = { 40.2, 15.5, 215, 180 }, + [259] = { 42.7, 13.8, 215, 180 }, + [260] = { 86.2, 78.3, 405, 180 }, + [261] = { 84.8, 72.5, 405, 180 }, + [262] = { 86.1, 65.3, 405, 180 }, + [263] = { 98.4, 96.8, 1657, 180 }, + }, + }, + [3659] = { + ["coords"] = { + [1] = { 62.3, 79.5, 10, 180 }, + [2] = { 48.9, 76.9, 10, 180 }, + [3] = { 33.6, 76.5, 10, 180 }, + [4] = { 51, 76.2, 10, 180 }, + [5] = { 61.4, 75.8, 10, 180 }, + [6] = { 39.5, 75.2, 10, 180 }, + [7] = { 66.1, 75.2, 10, 180 }, + [8] = { 21.5, 72.8, 10, 180 }, + [9] = { 73.3, 72.6, 10, 180 }, + [10] = { 71.9, 72.5, 10, 180 }, + [11] = { 64.1, 72.5, 10, 180 }, + [12] = { 23.5, 71.7, 10, 180 }, + [13] = { 66.1, 69.3, 10, 180 }, + [14] = { 32.4, 68.8, 10, 180 }, + [15] = { 65.5, 68.1, 10, 180 }, + [16] = { 45.4, 67.4, 10, 180 }, + [17] = { 14.6, 67.3, 10, 180 }, + [18] = { 69.4, 57.7, 10, 180 }, + [19] = { 72.4, 56.9, 10, 180 }, + [20] = { 21.3, 55.6, 10, 180 }, + [21] = { 18.2, 54, 10, 180 }, + [22] = { 19, 53.9, 10, 180 }, + [23] = { 77.5, 52.8, 10, 180 }, + [24] = { 63.4, 51.7, 10, 180 }, + [25] = { 73.6, 50.4, 10, 180 }, + [26] = { 75.5, 48.3, 10, 180 }, + [27] = { 79.6, 47.8, 10, 180 }, + [28] = { 73.7, 43.4, 10, 180 }, + [29] = { 60.3, 40.3, 10, 180 }, + [30] = { 77.5, 36.1, 10, 180 }, + [31] = { 88.3, 34.8, 10, 180 }, + [32] = { 17.8, 33.9, 10, 180 }, + [33] = { 28, 31.2, 10, 180 }, + [34] = { 58.2, 30, 10, 180 }, + [35] = { 47.2, 75.8, 11, 180 }, + [36] = { 48, 73.8, 11, 180 }, + [37] = { 61.8, 72.7, 11, 180 }, + [38] = { 62.6, 69.2, 11, 180 }, + [39] = { 12.3, 65.2, 11, 180 }, + [40] = { 5.5, 64.2, 11, 180 }, + [41] = { 63.8, 63.8, 11, 180 }, + [42] = { 15.2, 63.7, 11, 180 }, + [43] = { 6.8, 63.3, 11, 180 }, + [44] = { 4.9, 62.7, 11, 180 }, + [45] = { 8.3, 61.9, 11, 180 }, + [46] = { 8.8, 59.2, 11, 180 }, + [47] = { 61.3, 58.7, 11, 180 }, + [48] = { 11.2, 58.2, 11, 180 }, + [49] = { 6.9, 57.8, 11, 180 }, + [50] = { 5.6, 57.1, 11, 180 }, + [51] = { 21.6, 57, 11, 180 }, + [52] = { 7.6, 57, 11, 180 }, + [53] = { 12.1, 55.5, 11, 180 }, + [54] = { 53.1, 54.3, 11, 180 }, + [55] = { 18.3, 51.1, 11, 180 }, + [56] = { 16.2, 49.3, 11, 180 }, + [57] = { 49.6, 47.2, 11, 180 }, + [58] = { 45.4, 45.3, 11, 180 }, + [59] = { 63.7, 45, 11, 180 }, + [60] = { 61.8, 44.7, 11, 180 }, + [61] = { 59.2, 44.7, 11, 180 }, + [62] = { 60.5, 44.7, 11, 180 }, + [63] = { 12.6, 42.4, 11, 180 }, + [64] = { 45.4, 42, 11, 180 }, + [65] = { 13.6, 41.1, 11, 180 }, + [66] = { 18.2, 39.3, 11, 180 }, + [67] = { 15.2, 39.1, 11, 180 }, + [68] = { 13.4, 38.3, 11, 180 }, + [69] = { 16.1, 36.4, 11, 180 }, + [70] = { 12.8, 35.2, 11, 180 }, + [71] = { 13.9, 34.6, 11, 180 }, + [72] = { 23.1, 32.7, 11, 180 }, + [73] = { 14.5, 32.6, 11, 180 }, + [74] = { 16.4, 30.4, 11, 180 }, + [75] = { 39.1, 29.6, 11, 180 }, + [76] = { 31.4, 29.3, 11, 180 }, + [77] = { 14.5, 29.1, 11, 180 }, + [78] = { 62.6, 28.2, 11, 180 }, + [79] = { 34.9, 27.5, 11, 180 }, + [80] = { 40.2, 27.4, 11, 180 }, + [81] = { 61.9, 25.9, 11, 180 }, + [82] = { 26.3, 25.6, 11, 180 }, + [83] = { 16.3, 25.2, 11, 180 }, + [84] = { 60, 24.1, 11, 180 }, + [85] = { 17.8, 22.9, 11, 180 }, + [86] = { 23.6, 19.6, 11, 180 }, + [87] = { 49.6, 18.3, 11, 180 }, + [88] = { 28.8, 16.6, 11, 180 }, + [89] = { 49, 16.4, 11, 180 }, + [90] = { 47.3, 15.7, 11, 180 }, + [91] = { 28.1, 98.4, 36, 180 }, + [92] = { 58.7, 89, 36, 180 }, + [93] = { 20.4, 86, 36, 180 }, + [94] = { 19.3, 85.7, 36, 180 }, + [95] = { 62.2, 83.5, 36, 180 }, + [96] = { 47.7, 82.8, 36, 180 }, + [97] = { 18, 82.8, 36, 180 }, + [98] = { 18.7, 82.4, 36, 180 }, + [99] = { 60, 80.9, 36, 180 }, + [100] = { 40, 79.7, 36, 180 }, + [101] = { 11.5, 79.1, 36, 180 }, + [102] = { 14.2, 78.2, 36, 180 }, + [103] = { 19, 74.7, 36, 180 }, + [104] = { 20.2, 70.9, 36, 180 }, + [105] = { 58.2, 68.3, 36, 180 }, + [106] = { 21.3, 63.7, 36, 180 }, + [107] = { 22.7, 60.3, 36, 180 }, + [108] = { 62.4, 58.4, 36, 180 }, + [109] = { 17.3, 57.1, 36, 180 }, + [110] = { 20.7, 53.3, 36, 180 }, + [111] = { 78.2, 85.9, 44, 180 }, + [112] = { 73.5, 78.4, 44, 180 }, + [113] = { 77.8, 66, 44, 180 }, + [114] = { 69.6, 59.7, 44, 180 }, + [115] = { 84, 58.1, 44, 180 }, + [116] = { 69.8, 57.7, 44, 180 }, + [117] = { 69.6, 55, 44, 180 }, + [118] = { 73.7, 54.9, 44, 180 }, + [119] = { 68.8, 53.7, 44, 180 }, + [120] = { 63.1, 48.6, 44, 180 }, + [121] = { 79.2, 48.1, 44, 180 }, + [122] = { 75.6, 46.6, 44, 180 }, + [123] = { 79.4, 45.1, 44, 180 }, + [124] = { 60, 42.9, 44, 180 }, + [125] = { 76.5, 37.3, 44, 180 }, + [126] = { 27.6, 16.8, 44, 180 }, + [127] = { 35.3, 10.7, 44, 180 }, + [128] = { 36.2, 7.3, 44, 180 }, + [129] = { 10.2, 50.5, 45, 180 }, + [130] = { 10.8, 48.5, 45, 180 }, + [131] = { 8.7, 47.6, 45, 180 }, + [132] = { 71.4, 84.5, 46, 180 }, + [133] = { 71.2, 58.7, 130, 180 }, + [134] = { 66.2, 85.8, 267, 180 }, + [135] = { 71.9, 81.8, 267, 180 }, + [136] = { 72.6, 79.6, 267, 180 }, + [137] = { 70.2, 78.6, 267, 180 }, + [138] = { 62.3, 77.3, 267, 180 }, + [139] = { 30.1, 73.7, 267, 180 }, + [140] = { 32.5, 72.7, 267, 180 }, + [141] = { 58, 72.1, 267, 180 }, + [142] = { 25.1, 71.4, 267, 180 }, + [143] = { 40.9, 69.7, 267, 180 }, + [144] = { 36.6, 69.6, 267, 180 }, + [145] = { 44.8, 67.9, 267, 180 }, + [146] = { 56.7, 66.6, 267, 180 }, + [147] = { 63, 63, 267, 180 }, + [148] = { 50.7, 61.5, 267, 180 }, + [149] = { 66.4, 61.4, 267, 180 }, + [150] = { 26.3, 61, 267, 180 }, + [151] = { 26.7, 59.8, 267, 180 }, + [152] = { 51, 59.5, 267, 180 }, + [153] = { 25.6, 59.2, 267, 180 }, + [154] = { 47, 50.4, 267, 180 }, + [155] = { 80.5, 47.3, 267, 180 }, + [156] = { 67.7, 46.8, 267, 180 }, + [157] = { 79.1, 46.3, 267, 180 }, + [158] = { 36.6, 44.5, 267, 180 }, + [159] = { 81.9, 44.1, 267, 180 }, + [160] = { 76.1, 42.9, 267, 180 }, + [161] = { 74.7, 40.8, 267, 180 }, + [162] = { 78.7, 40.8, 267, 180 }, + [163] = { 83.9, 40.6, 267, 180 }, + [164] = { 29.6, 39.5, 267, 180 }, + [165] = { 81.8, 39.3, 267, 180 }, + [166] = { 35.3, 38.5, 267, 180 }, + [167] = { 33.4, 34.5, 267, 180 }, + [168] = { 60.2, 26.3, 267, 180 }, + [169] = { 26.7, 23.7, 267, 180 }, + [170] = { 25.7, 23.4, 267, 180 }, + [171] = { 63.3, 21.5, 267, 180 }, + [172] = { 50.6, 20.9, 267, 180 }, + [173] = { 24.6, 20.9, 267, 180 }, + [174] = { 25.2, 20.6, 267, 180 }, + [175] = { 61.4, 19.2, 267, 180 }, + [176] = { 43.9, 18.2, 267, 180 }, + [177] = { 18.9, 17.6, 267, 180 }, + [178] = { 21.3, 16.9, 267, 180 }, + [179] = { 25.4, 13.8, 267, 180 }, + [180] = { 59.8, 8.2, 267, 180 }, + [181] = { 73, 80.5, 331, 180 }, + [182] = { 89, 77.9, 331, 180 }, + [183] = { 89.1, 77, 331, 180 }, + [184] = { 89.5, 76.5, 331, 180 }, + [185] = { 64.7, 75.6, 331, 180 }, + [186] = { 75.3, 72.3, 331, 180 }, + [187] = { 85, 64.6, 331, 180 }, + [188] = { 87.1, 64.6, 331, 180 }, + [189] = { 54.3, 64.4, 331, 180 }, + [190] = { 89.7, 62.7, 331, 180 }, + [191] = { 54.3, 61.2, 331, 180 }, + [192] = { 50.1, 59.5, 331, 180 }, + [193] = { 88.7, 59.3, 331, 180 }, + [194] = { 89.5, 58.9, 331, 180 }, + [195] = { 66.8, 57.3, 331, 180 }, + [196] = { 88.9, 56.4, 331, 180 }, + [197] = { 17.6, 50, 331, 180 }, + [198] = { 80.6, 49.5, 331, 180 }, + [199] = { 31.3, 45, 331, 180 }, + [200] = { 78.5, 44.7, 331, 180 }, + [201] = { 31, 43.2, 331, 180 }, + [202] = { 32.6, 42.5, 331, 180 }, + [203] = { 26.8, 40.8, 331, 180 }, + [204] = { 31.7, 39.2, 331, 180 }, + [205] = { 34.3, 38.8, 331, 180 }, + [206] = { 27.2, 36.9, 331, 180 }, + [207] = { 35.5, 36.7, 331, 180 }, + [208] = { 39.9, 36.5, 331, 180 }, + [209] = { 12.3, 34.4, 331, 180 }, + [210] = { 35.7, 31.6, 331, 180 }, + [211] = { 26.7, 22.3, 331, 180 }, + [212] = { 36.6, 6.7, 406, 180 }, + [213] = { 35.9, 5.6, 406, 180 }, + }, + }, + [3660] = { + ["coords"] = { + [1] = { 63.7, 49.4, 17, 180 }, + [2] = { 64.4, 47.2, 17, 180 }, + [3] = { 64.3, 47.1, 17, 180 }, + [4] = { 63.5, 46.3, 17, 180 }, + [5] = { 63.5, 46, 17, 180 }, + [6] = { 61.9, 45.2, 17, 180 }, + [7] = { 61.3, 44.4, 17, 180 }, + [8] = { 64.4, 44.2, 17, 180 }, + [9] = { 61.4, 44.2, 17, 180 }, + [10] = { 64.5, 44, 17, 180 }, + [11] = { 51.6, 31, 17, 180 }, + [12] = { 51.5, 31, 17, 180 }, + [13] = { 51.1, 28.8, 17, 180 }, + [14] = { 36.8, 67.1, 148, 180 }, + [15] = { 36, 65.6, 148, 180 }, + [16] = { 36.1, 63.4, 148, 180 }, + [17] = { 32.5, 51.1, 148, 180 }, + [18] = { 38.7, 29.5, 148, 180 }, + [19] = { 38.9, 29.4, 148, 180 }, + [20] = { 39.6, 27.5, 148, 180 }, + [21] = { 40.3, 27.5, 148, 180 }, + [22] = { 48.4, 20.3, 148, 180 }, + [23] = { 46.5, 20, 148, 180 }, + [24] = { 51.7, 19.7, 148, 180 }, + [25] = { 50.7, 17.8, 148, 180 }, + [26] = { 58.9, 10.6, 148, 180 }, + [27] = { 60.4, 6.3, 148, 180 }, + }, + }, + [3661] = { + ["coords"] = { + [1] = { 63.7, 49.4, 17, 180 }, + [2] = { 64.4, 47.2, 17, 180 }, + [3] = { 64.3, 47.1, 17, 180 }, + [4] = { 63.5, 46.3, 17, 180 }, + [5] = { 63.5, 46, 17, 180 }, + [6] = { 61.9, 45.2, 17, 180 }, + [7] = { 61.3, 44.4, 17, 180 }, + [8] = { 64.4, 44.2, 17, 180 }, + [9] = { 61.4, 44.2, 17, 180 }, + [10] = { 64.5, 44, 17, 180 }, + [11] = { 51.6, 31, 17, 180 }, + [12] = { 51.5, 31, 17, 180 }, + [13] = { 51.1, 28.8, 17, 180 }, + [14] = { 36.8, 67.1, 148, 180 }, + [15] = { 36, 65.6, 148, 180 }, + [16] = { 36.1, 63.4, 148, 180 }, + [17] = { 32.5, 51.1, 148, 180 }, + [18] = { 38.7, 29.5, 148, 180 }, + [19] = { 38.9, 29.4, 148, 180 }, + [20] = { 39.6, 27.5, 148, 180 }, + [21] = { 40.3, 27.5, 148, 180 }, + [22] = { 48.4, 20.3, 148, 180 }, + [23] = { 46.5, 20, 148, 180 }, + [24] = { 51.7, 19.7, 148, 180 }, + [25] = { 50.7, 17.8, 148, 180 }, + [26] = { 58.9, 10.6, 148, 180 }, + [27] = { 60.4, 6.3, 148, 180 }, + }, + }, + [3662] = { + ["coords"] = { + [1] = { 51.4, 4.8, 15, 180 }, + [2] = { 44.7, 59.4, 17, 180 }, + [3] = { 45.7, 59.1, 17, 180 }, + [4] = { 48, 58.2, 17, 180 }, + [5] = { 44.8, 58, 17, 180 }, + [6] = { 49.4, 57.2, 17, 180 }, + [7] = { 62.1, 56.5, 17, 180 }, + [8] = { 42.9, 55, 17, 180 }, + [9] = { 61.8, 54.9, 17, 180 }, + [10] = { 51.1, 54.7, 17, 180 }, + [11] = { 62.5, 54.2, 17, 180 }, + [12] = { 43.3, 52.4, 17, 180 }, + [13] = { 44.8, 51.5, 17, 180 }, + [14] = { 49.3, 50.2, 17, 180 }, + [15] = { 61.6, 49.1, 17, 180 }, + [16] = { 62.2, 47.4, 17, 180 }, + [17] = { 54.3, 47, 17, 180 }, + [18] = { 62, 46.1, 17, 180 }, + [19] = { 40.7, 45.1, 17, 180 }, + [20] = { 56.5, 43.8, 17, 180 }, + [21] = { 53.5, 40.9, 17, 180 }, + [22] = { 61.9, 39.1, 17, 180 }, + [23] = { 41.7, 38.7, 17, 180 }, + [24] = { 61.7, 38.5, 17, 180 }, + [25] = { 45.9, 38.2, 17, 180 }, + [26] = { 53.1, 36.5, 17, 180 }, + [27] = { 62.6, 35.1, 17, 180 }, + [28] = { 58.1, 33.2, 17, 180 }, + [29] = { 57.3, 33.2, 17, 180 }, + [30] = { 48.3, 32.6, 17, 180 }, + [31] = { 55.2, 32.2, 17, 180 }, + [32] = { 52.3, 32.1, 17, 180 }, + [33] = { 51.9, 31.5, 17, 180 }, + [34] = { 52.5, 30.4, 17, 180 }, + [35] = { 51.2, 30.3, 17, 180 }, + [36] = { 52.2, 30.1, 17, 180 }, + [37] = { 51.7, 29.9, 17, 180 }, + [38] = { 52.7, 29.9, 17, 180 }, + [39] = { 39.4, 29.8, 17, 180 }, + [40] = { 52.2, 29.8, 17, 180 }, + [41] = { 50.9, 29.6, 17, 180 }, + [42] = { 51.9, 29.5, 17, 180 }, + [43] = { 50.8, 29.3, 17, 180 }, + [44] = { 51.3, 29.1, 17, 180 }, + [45] = { 45.2, 28.4, 17, 180 }, + [46] = { 42.2, 27.5, 17, 180 }, + [47] = { 58.5, 27.3, 17, 180 }, + [48] = { 57.3, 25.4, 17, 180 }, + [49] = { 45.9, 25.3, 17, 180 }, + [50] = { 30.7, 25, 17, 180 }, + [51] = { 39.9, 24.7, 17, 180 }, + [52] = { 59.5, 24.6, 17, 180 }, + [53] = { 47.8, 24.4, 17, 180 }, + [54] = { 61.2, 24, 17, 180 }, + [55] = { 30.9, 24, 17, 180 }, + [56] = { 32.8, 23.5, 17, 180 }, + [57] = { 43.1, 23.4, 17, 180 }, + [58] = { 52.3, 23.4, 17, 180 }, + [59] = { 33.6, 23.1, 17, 180 }, + [60] = { 31.8, 22.2, 17, 180 }, + [61] = { 33.8, 22.1, 17, 180 }, + [62] = { 31.6, 21.8, 17, 180 }, + [63] = { 34.8, 21.5, 17, 180 }, + [64] = { 54.6, 20.3, 17, 180 }, + [65] = { 45, 19.9, 17, 180 }, + [66] = { 55.9, 19.7, 17, 180 }, + [67] = { 62, 19.5, 17, 180 }, + [68] = { 47.6, 19.4, 17, 180 }, + [69] = { 48.2, 19.2, 17, 180 }, + [70] = { 41.7, 15.9, 17, 180 }, + [71] = { 47.7, 15.3, 17, 180 }, + [72] = { 39, 12.2, 17, 180 }, + [73] = { 43.7, 12.1, 17, 180 }, + [74] = { 62.2, 10.7, 17, 180 }, + [75] = { 49, 10.6, 17, 180 }, + [76] = { 52.9, 10.4, 17, 180 }, + [77] = { 47.9, 8.9, 17, 180 }, + [78] = { 56.1, 8.7, 17, 180 }, + [79] = { 54.7, 5.9, 17, 180 }, + [80] = { 47.7, 5.5, 17, 180 }, + [81] = { 8, 66.7, 28, 180 }, + [82] = { 8.3, 64.6, 28, 180 }, + [83] = { 37.6, 85.9, 38, 180 }, + [84] = { 27.3, 85.3, 38, 180 }, + [85] = { 35.7, 84.9, 38, 180 }, + [86] = { 35.1, 81.2, 38, 180 }, + [87] = { 28.7, 80.9, 38, 180 }, + [88] = { 24.2, 74.8, 38, 180 }, + [89] = { 23.4, 73.6, 38, 180 }, + [90] = { 33.9, 71.1, 38, 180 }, + [91] = { 72.7, 69, 38, 180 }, + [92] = { 69.3, 67.5, 38, 180 }, + [93] = { 64.5, 66.4, 38, 180 }, + [94] = { 69.6, 65.5, 38, 180 }, + [95] = { 70.2, 63.2, 38, 180 }, + [96] = { 68.5, 59.5, 38, 180 }, + [97] = { 26.5, 57.3, 38, 180 }, + [98] = { 25.9, 49.2, 38, 180 }, + [99] = { 34.7, 48.2, 38, 180 }, + [100] = { 34.7, 43.7, 38, 180 }, + [101] = { 36.1, 43.5, 38, 180 }, + [102] = { 25.4, 42.9, 38, 180 }, + [103] = { 25.6, 29.7, 38, 180 }, + [104] = { 52.1, 24.1, 38, 180 }, + [105] = { 69.5, 22.1, 38, 180 }, + [106] = { 48, 21.1, 38, 180 }, + [107] = { 69.4, 20.7, 38, 180 }, + [108] = { 25.7, 18.7, 38, 180 }, + [109] = { 35.9, 18.6, 38, 180 }, + [110] = { 36.2, 15.5, 38, 180 }, + [111] = { 46.4, 13.7, 38, 180 }, + [112] = { 36.2, 90.3, 40, 180 }, + [113] = { 42.7, 88.2, 40, 180 }, + [114] = { 34.4, 86.7, 40, 180 }, + [115] = { 29.6, 85.3, 40, 180 }, + [116] = { 41.4, 82.6, 40, 180 }, + [117] = { 37.2, 81.9, 40, 180 }, + [118] = { 40.5, 81.4, 40, 180 }, + [119] = { 43, 80.6, 40, 180 }, + [120] = { 41.8, 79.8, 40, 180 }, + [121] = { 38.5, 78.6, 40, 180 }, + [122] = { 28.7, 78.6, 40, 180 }, + [123] = { 41.9, 77.8, 40, 180 }, + [124] = { 62.1, 77.1, 40, 180 }, + [125] = { 43.6, 76.9, 40, 180 }, + [126] = { 42.8, 76.1, 40, 180 }, + [127] = { 37, 75.2, 40, 180 }, + [128] = { 70, 74.7, 40, 180 }, + [129] = { 41.6, 74.7, 40, 180 }, + [130] = { 70.1, 73.5, 40, 180 }, + [131] = { 31.7, 72.4, 40, 180 }, + [132] = { 43.4, 71.3, 40, 180 }, + [133] = { 42, 69.4, 40, 180 }, + [134] = { 27.9, 68.9, 40, 180 }, + [135] = { 26.3, 68.3, 40, 180 }, + [136] = { 44.1, 68.2, 40, 180 }, + [137] = { 29.4, 65.7, 40, 180 }, + [138] = { 29.6, 63.6, 40, 180 }, + [139] = { 52.7, 62.8, 40, 180 }, + [140] = { 48.3, 60.7, 40, 180 }, + [141] = { 27.9, 60.2, 40, 180 }, + [142] = { 33, 57.4, 40, 180 }, + [143] = { 28.1, 54, 40, 180 }, + [144] = { 57.8, 53.9, 40, 180 }, + [145] = { 52.3, 52.7, 40, 180 }, + [146] = { 30.3, 52, 40, 180 }, + [147] = { 30.1, 49.7, 40, 180 }, + [148] = { 56.7, 46.8, 40, 180 }, + [149] = { 48, 46.4, 40, 180 }, + [150] = { 31.2, 33.8, 40, 180 }, + [151] = { 28.4, 33.3, 40, 180 }, + [152] = { 38.9, 31.6, 40, 180 }, + [153] = { 36.6, 31.3, 40, 180 }, + [154] = { 37.9, 28.4, 40, 180 }, + [155] = { 32.4, 27.1, 40, 180 }, + [156] = { 35.9, 21.6, 40, 180 }, + [157] = { 49.1, 19.3, 40, 180 }, + [158] = { 34.4, 15, 40, 180 }, + [159] = { 52.3, 14.6, 40, 180 }, + [160] = { 38.3, 13.9, 40, 180 }, + [161] = { 56.6, 13.6, 40, 180 }, + [162] = { 40.6, 10, 40, 180 }, + [163] = { 31, 84.4, 44, 180 }, + [164] = { 29.8, 84.2, 44, 180 }, + [165] = { 31.9, 83, 44, 180 }, + [166] = { 15.2, 64.4, 44, 180 }, + [167] = { 17, 62.9, 44, 180 }, + [168] = { 15.4, 61.3, 44, 180 }, + [169] = { 30.4, 59.8, 44, 180 }, + [170] = { 33.4, 52.7, 44, 180 }, + [171] = { 21.6, 45.5, 44, 180 }, + [172] = { 22.4, 44.4, 44, 180 }, + [173] = { 27, 42.5, 44, 180 }, + [174] = { 23.9, 41.6, 44, 180 }, + [175] = { 21.6, 36.8, 44, 180 }, + [176] = { 39, 32.1, 44, 180 }, + [177] = { 28.1, 28.7, 44, 180 }, + [178] = { 23.4, 27.2, 44, 180 }, + [179] = { 34.4, 24.8, 44, 180 }, + [180] = { 27.9, 22.1, 44, 180 }, + [181] = { 73.3, 10.1, 130, 180 }, + [182] = { 72, 8.6, 130, 180 }, + [183] = { 31.3, 89.5, 148, 180 }, + [184] = { 42.7, 86.7, 148, 180 }, + [185] = { 44.1, 85.2, 148, 180 }, + [186] = { 35.2, 85.1, 148, 180 }, + [187] = { 42.6, 84.4, 148, 180 }, + [188] = { 44.4, 84.3, 148, 180 }, + [189] = { 31.9, 83.7, 148, 180 }, + [190] = { 34.1, 80.2, 148, 180 }, + [191] = { 40, 78.2, 148, 180 }, + [192] = { 35.8, 76.2, 148, 180 }, + [193] = { 35.5, 73, 148, 180 }, + [194] = { 36.3, 69.1, 148, 180 }, + [195] = { 36.7, 60.5, 148, 180 }, + [196] = { 36.7, 57.2, 148, 180 }, + [197] = { 39.4, 56.9, 148, 180 }, + [198] = { 40.3, 56.3, 148, 180 }, + [199] = { 39.6, 56.1, 148, 180 }, + [200] = { 40.2, 54.1, 148, 180 }, + [201] = { 39.5, 54, 148, 180 }, + [202] = { 39.5, 53.2, 148, 180 }, + [203] = { 35.8, 48.4, 148, 180 }, + [204] = { 36.8, 44.1, 148, 180 }, + [205] = { 39.5, 43.3, 148, 180 }, + [206] = { 38.1, 41.2, 148, 180 }, + [207] = { 37, 35.6, 148, 180 }, + [208] = { 51.3, 35, 148, 180 }, + [209] = { 50.5, 34.9, 148, 180 }, + [210] = { 52.8, 33.8, 148, 180 }, + [211] = { 52.3, 33.2, 148, 180 }, + [212] = { 38, 31.7, 148, 180 }, + [213] = { 55.5, 27.1, 148, 180 }, + [214] = { 57.3, 26.5, 148, 180 }, + [215] = { 57.7, 25.5, 148, 180 }, + [216] = { 50.5, 23.3, 148, 180 }, + [217] = { 55.8, 19.2, 148, 180 }, + [218] = { 56.5, 13.9, 148, 180 }, + [219] = { 67.8, 89.2, 331, 180 }, + [220] = { 72.6, 95.5, 406, 180 }, + [221] = { 73.6, 95, 406, 180 }, + [222] = { 71.3, 94.3, 406, 180 }, + [223] = { 76.5, 91.9, 406, 180 }, + [224] = { 76.9, 89.8, 406, 180 }, + [225] = { 80.8, 88.8, 406, 180 }, + [226] = { 82.5, 88, 406, 180 }, + [227] = { 78.7, 86.1, 406, 180 }, + [228] = { 82.9, 86, 406, 180 }, + [229] = { 74.4, 85.8, 406, 180 }, + [230] = { 73.3, 85.7, 406, 180 }, + [231] = { 78.4, 85.2, 406, 180 }, + [232] = { 84.9, 84.6, 406, 180 }, + [233] = { 59.1, 62.6, 406, 180 }, + [234] = { 47.5, 62.5, 406, 180 }, + [235] = { 74.4, 59.2, 406, 180 }, + [236] = { 45.7, 59.1, 406, 180 }, + [237] = { 66.5, 51.6, 406, 180 }, + [238] = { 77.5, 78, 1497, 180 }, + [239] = { 52.1, 77, 1497, 180 }, + [240] = { 72, 71.6, 1497, 180 }, + [241] = { 52.3, 70.8, 1497, 180 }, + [242] = { 46.6, 70.7, 1497, 180 }, + [243] = { 83.5, 66.3, 1497, 180 }, + [244] = { 78.4, 66.1, 1497, 180 }, + [245] = { 55.1, 58.4, 1497, 180 }, + [246] = { 49.7, 58.3, 1497, 180 }, + [247] = { 84.9, 56.8, 1497, 180 }, + [248] = { 73.6, 54.9, 1497, 180 }, + [249] = { 59.2, 54.3, 1497, 180 }, + [250] = { 63.5, 52.4, 1497, 180 }, + [251] = { 70.2, 50.5, 1497, 180 }, + [252] = { 61.6, 44.8, 1497, 180 }, + [253] = { 69.7, 42.7, 1497, 180 }, + [254] = { 70.3, 38, 1497, 180 }, + [255] = { 72.8, 34, 1497, 180 }, + [256] = { 82.9, 33.5, 1497, 180 }, + [257] = { 79, 33, 1497, 180 }, + [258] = { 58.3, 32.6, 1497, 180 }, + [259] = { 76.4, 30, 1497, 180 }, + [260] = { 72.1, 24.3, 1497, 180 }, + [261] = { 78.4, 21.9, 1497, 180 }, + [262] = { 88, 21.2, 1497, 180 }, + [263] = { 37.3, 84.9, 1519, 180 }, + [264] = { 45.7, 72.8, 1519, 180 }, + [265] = { 28.6, 72.4, 1519, 180 }, + [266] = { 47.9, 70.2, 1519, 180 }, + [267] = { 58.7, 68.4, 1519, 180 }, + [268] = { 56.4, 63.5, 1519, 180 }, + [269] = { 36, 62.9, 1519, 180 }, + [270] = { 41.5, 62.7, 1519, 180 }, + [271] = { 59.4, 61, 1519, 180 }, + [272] = { 48.6, 60.7, 1519, 180 }, + [273] = { 76.7, 58.7, 1519, 180 }, + [274] = { 54.2, 58.6, 1519, 180 }, + [275] = { 64.7, 58.3, 1519, 180 }, + [276] = { 33.8, 56.2, 1519, 180 }, + [277] = { 68.8, 56, 1519, 180 }, + [278] = { 45.3, 49.8, 1519, 180 }, + [279] = { 16.1, 49.7, 1519, 180 }, + [280] = { 55, 48.7, 1519, 180 }, + [281] = { 40.2, 48.6, 1519, 180 }, + [282] = { 27.5, 48.4, 1519, 180 }, + [283] = { 28, 48.3, 1519, 180 }, + [284] = { 64.2, 47.5, 1519, 180 }, + [285] = { 19.4, 47.3, 1519, 180 }, + [286] = { 24.4, 47, 1519, 180 }, + [287] = { 77.3, 46.9, 1519, 180 }, + [288] = { 24.5, 46.3, 1519, 180 }, + [289] = { 70.9, 44.7, 1519, 180 }, + [290] = { 51.3, 44, 1519, 180 }, + [291] = { 41.5, 43.9, 1519, 180 }, + [292] = { 32.2, 43.2, 1519, 180 }, + [293] = { 36.1, 41.4, 1519, 180 }, + [294] = { 70.3, 39.4, 1519, 180 }, + [295] = { 64.1, 38.7, 1519, 180 }, + [296] = { 48.3, 35.2, 1519, 180 }, + [297] = { 52.9, 34.4, 1519, 180 }, + [298] = { 58.2, 32.1, 1519, 180 }, + [299] = { 49, 25.3, 1519, 180 }, + [300] = { 63.6, 23.9, 1519, 180 }, + [301] = { 52.6, 22.8, 1519, 180 }, + [302] = { 57.5, 22.1, 1519, 180 }, + [303] = { 59.5, 14.4, 1519, 180 }, + [304] = { 53.4, 11.6, 1519, 180 }, + }, + }, + [3685] = { + ["coords"] = { + [1] = { 44.4, 72.6, 17, 180 }, + [2] = { 44.2, 72.6, 17, 180 }, + [3] = { 44.2, 72.5, 17, 180 }, + [4] = { 44.1, 72.5, 17, 180 }, + [5] = { 45.4, 72.4, 17, 180 }, + [6] = { 45.2, 72.3, 17, 180 }, + [7] = { 44.1, 72.2, 17, 180 }, + [8] = { 45.1, 72.2, 17, 180 }, + [9] = { 45.3, 72, 17, 180 }, + [10] = { 43.1, 71.7, 17, 180 }, + [11] = { 44.2, 71.5, 17, 180 }, + [12] = { 42.9, 71.5, 17, 180 }, + [13] = { 44.1, 71.5, 17, 180 }, + [14] = { 44.1, 71.3, 17, 180 }, + [15] = { 42.7, 71.3, 17, 180 }, + [16] = { 42.9, 71.2, 17, 180 }, + [17] = { 43.2, 71.2, 17, 180 }, + [18] = { 47.8, 71.1, 17, 180 }, + [19] = { 42.9, 71.1, 17, 180 }, + [20] = { 43.1, 71, 17, 180 }, + [21] = { 47.9, 71, 17, 180 }, + [22] = { 48.1, 71, 17, 180 }, + [23] = { 47.8, 70.9, 17, 180 }, + [24] = { 48.1, 70.9, 17, 180 }, + [25] = { 47.9, 70.9, 17, 180 }, + [26] = { 43.4, 70.6, 17, 180 }, + [27] = { 43.5, 70.4, 17, 180 }, + [28] = { 47.3, 70.4, 17, 180 }, + [29] = { 43.4, 70.2, 17, 180 }, + [30] = { 43.5, 70.2, 17, 180 }, + [31] = { 47.3, 70.2, 17, 180 }, + [32] = { 43.4, 70.1, 17, 180 }, + [33] = { 48.5, 70.1, 17, 180 }, + [34] = { 42.8, 70.1, 17, 180 }, + [35] = { 47.4, 70.1, 17, 180 }, + [36] = { 48.4, 70, 17, 180 }, + [37] = { 43.5, 69.9, 17, 180 }, + [38] = { 45, 69.9, 17, 180 }, + [39] = { 48.4, 69.9, 17, 180 }, + [40] = { 42.9, 69.9, 17, 180 }, + [41] = { 42.6, 69.9, 17, 180 }, + [42] = { 48.6, 69.9, 17, 180 }, + [43] = { 43.4, 69.8, 17, 180 }, + [44] = { 47.5, 69.8, 17, 180 }, + [45] = { 45.1, 69.8, 17, 180 }, + [46] = { 42.6, 69.7, 17, 180 }, + [47] = { 42.5, 69.7, 17, 180 }, + [48] = { 42.9, 69.6, 17, 180 }, + [49] = { 45.1, 69.5, 17, 180 }, + [50] = { 42.6, 69.5, 17, 180 }, + [51] = { 44.9, 69.4, 17, 180 }, + }, + ["fac"] = "H", + }, + [3689] = { + ["coords"] = { + [1] = { 38.7, 73.2, 14, 180 }, + [2] = { 26.4, 58.7, 15, 180 }, + [3] = { 26.9, 58.6, 15, 180 }, + [4] = { 27.3, 58.5, 15, 180 }, + [5] = { 26.2, 58.4, 15, 180 }, + [6] = { 26.8, 58.2, 15, 180 }, + [7] = { 27.2, 58, 15, 180 }, + [8] = { 26.6, 58, 15, 180 }, + [9] = { 27, 57.6, 15, 180 }, + [10] = { 26.4, 57.6, 15, 180 }, + [11] = { 49.2, 84.4, 17, 180 }, + [12] = { 49.4, 84.3, 17, 180 }, + [13] = { 49.6, 84.3, 17, 180 }, + [14] = { 49.1, 84.2, 17, 180 }, + [15] = { 49.4, 84.1, 17, 180 }, + [16] = { 49.6, 84, 17, 180 }, + [17] = { 49.3, 84, 17, 180 }, + [18] = { 49.5, 83.8, 17, 180 }, + [19] = { 49.2, 83.8, 17, 180 }, + [20] = { 64.3, 55.3, 17, 180 }, + [21] = { 63.6, 53.6, 17, 180 }, + [22] = { 63.6, 51.2, 17, 180 }, + [23] = { 64.8, 50.2, 17, 180 }, + [24] = { 64.9, 47.8, 17, 180 }, + [25] = { 64.5, 45.7, 17, 180 }, + [26] = { 64.7, 42.8, 17, 180 }, + [27] = { 66.1, 40.7, 17, 180 }, + [28] = { 63.3, 39.5, 17, 180 }, + [29] = { 64.6, 39.2, 17, 180 }, + [30] = { 65.2, 39.2, 17, 180 }, + [31] = { 65.5, 35.3, 17, 180 }, + [32] = { 77.1, 75, 331, 180 }, + [33] = { 77.9, 74.5, 331, 180 }, + [34] = { 75.1, 74.3, 331, 180 }, + [35] = { 75.4, 74.2, 331, 180 }, + [36] = { 77.2, 73.9, 331, 180 }, + [37] = { 78.1, 73.7, 331, 180 }, + [38] = { 75.2, 73, 331, 180 }, + [39] = { 75.3, 71.8, 331, 180 }, + }, + }, + [3690] = { + ["coords"] = { + [1] = { 61.4, 4.6, 17, 3600 }, + [2] = { 59.6, 3.7, 17, 3600 }, + [3] = { 61, 3.6, 17, 3600 }, + [4] = { 88.8, 86.1, 331, 3600 }, + [5] = { 91.1, 86, 331, 3600 }, + }, + }, + [3691] = { + ["coords"] = { + [1] = { 64.3, 47.1, 17, 3600 }, + [2] = { 63.6, 46.1, 17, 3600 }, + [3] = { 64.4, 44, 17, 3600 }, + }, + }, + [3693] = { + ["coords"] = { + [1] = { 61.4, 5.3, 17, 3600 }, + [2] = { 61.6, 3.9, 17, 3600 }, + [3] = { 61.9, 3.9, 17, 3600 }, + [4] = { 46.4, 86.6, 130, 180 }, + [5] = { 47, 86.4, 130, 180 }, + [6] = { 45.3, 85, 130, 180 }, + [7] = { 44.4, 84.8, 130, 180 }, + [8] = { 45.5, 75.4, 130, 180 }, + [9] = { 46, 75.2, 130, 180 }, + [10] = { 45, 75.2, 130, 180 }, + [11] = { 47.5, 74.3, 130, 180 }, + [12] = { 44.8, 74, 130, 180 }, + [13] = { 48.2, 73.5, 130, 180 }, + [14] = { 43, 73.1, 130, 180 }, + [15] = { 45.9, 72.4, 130, 180 }, + [16] = { 44.4, 72.2, 130, 180 }, + [17] = { 45.7, 71.5, 130, 180 }, + [18] = { 45.3, 71.4, 130, 180 }, + [19] = { 47.1, 71.3, 130, 180 }, + }, + }, + [3694] = { + ["coords"] = { + [1] = { 62.3, 76.4, 130, 180 }, + [2] = { 62.9, 68.3, 130, 180 }, + [3] = { 58.2, 67.3, 130, 180 }, + [4] = { 59.6, 66.6, 130, 180 }, + [5] = { 58.9, 66.1, 130, 180 }, + [6] = { 60.6, 65.7, 130, 180 }, + [7] = { 63, 63.7, 130, 180 }, + [8] = { 62.6, 62.5, 130, 180 }, + [9] = { 61.6, 62.2, 130, 180 }, + [10] = { 58.7, 61.5, 130, 180 }, + [11] = { 49.8, 59.8, 130, 180 }, + [12] = { 63.7, 58.6, 130, 180 }, + [13] = { 64, 57.1, 130, 180 }, + [14] = { 63.4, 56.8, 130, 180 }, + [15] = { 7.3, 41, 267, 180 }, + [16] = { 8.1, 30.3, 267, 180 }, + [17] = { 8.2, 24.2, 267, 180 }, + [18] = { 7.6, 22.6, 267, 180 }, + [19] = { 9.1, 17.5, 267, 180 }, + [20] = { 9.5, 15.5, 267, 180 }, + }, + }, + [3695] = { + ["coords"] = { + [1] = { 62.3, 79.5, 10, 180 }, + [2] = { 48.9, 76.9, 10, 180 }, + [3] = { 33.6, 76.5, 10, 180 }, + [4] = { 51, 76.2, 10, 180 }, + [5] = { 61.4, 75.8, 10, 180 }, + [6] = { 39.5, 75.2, 10, 180 }, + [7] = { 66.1, 75.2, 10, 180 }, + [8] = { 21.5, 72.8, 10, 180 }, + [9] = { 73.3, 72.6, 10, 180 }, + [10] = { 71.9, 72.5, 10, 180 }, + [11] = { 64.1, 72.5, 10, 180 }, + [12] = { 23.5, 71.7, 10, 180 }, + [13] = { 66.1, 69.3, 10, 180 }, + [14] = { 32.4, 68.8, 10, 180 }, + [15] = { 65.5, 68.1, 10, 180 }, + [16] = { 45.4, 67.4, 10, 180 }, + [17] = { 14.6, 67.3, 10, 180 }, + [18] = { 69.4, 57.7, 10, 180 }, + [19] = { 72.4, 56.9, 10, 180 }, + [20] = { 21.3, 55.6, 10, 180 }, + [21] = { 18.2, 54, 10, 180 }, + [22] = { 19, 53.9, 10, 180 }, + [23] = { 77.5, 52.8, 10, 180 }, + [24] = { 63.4, 51.7, 10, 180 }, + [25] = { 73.6, 50.4, 10, 180 }, + [26] = { 75.5, 48.3, 10, 180 }, + [27] = { 79.6, 47.8, 10, 180 }, + [28] = { 73.7, 43.4, 10, 180 }, + [29] = { 60.3, 40.3, 10, 180 }, + [30] = { 77.5, 36.1, 10, 180 }, + [31] = { 88.3, 34.8, 10, 180 }, + [32] = { 17.8, 33.9, 10, 180 }, + [33] = { 28, 31.2, 10, 180 }, + [34] = { 58.2, 30, 10, 180 }, + [35] = { 47.2, 75.8, 11, 180 }, + [36] = { 48, 73.8, 11, 180 }, + [37] = { 61.8, 72.7, 11, 180 }, + [38] = { 62.6, 69.2, 11, 180 }, + [39] = { 12.3, 65.2, 11, 180 }, + [40] = { 5.5, 64.2, 11, 180 }, + [41] = { 63.8, 63.8, 11, 180 }, + [42] = { 15.2, 63.7, 11, 180 }, + [43] = { 6.8, 63.3, 11, 180 }, + [44] = { 4.9, 62.7, 11, 180 }, + [45] = { 8.3, 61.9, 11, 180 }, + [46] = { 8.8, 59.2, 11, 180 }, + [47] = { 61.3, 58.7, 11, 180 }, + [48] = { 11.2, 58.2, 11, 180 }, + [49] = { 6.9, 57.8, 11, 180 }, + [50] = { 5.6, 57.1, 11, 180 }, + [51] = { 21.6, 57, 11, 180 }, + [52] = { 7.6, 57, 11, 180 }, + [53] = { 12.1, 55.5, 11, 180 }, + [54] = { 53.1, 54.3, 11, 180 }, + [55] = { 18.3, 51.1, 11, 180 }, + [56] = { 16.2, 49.3, 11, 180 }, + [57] = { 49.6, 47.2, 11, 180 }, + [58] = { 45.4, 45.3, 11, 180 }, + [59] = { 63.7, 45, 11, 180 }, + [60] = { 61.8, 44.7, 11, 180 }, + [61] = { 59.2, 44.7, 11, 180 }, + [62] = { 60.5, 44.7, 11, 180 }, + [63] = { 12.6, 42.4, 11, 180 }, + [64] = { 45.4, 42, 11, 180 }, + [65] = { 13.6, 41.1, 11, 180 }, + [66] = { 18.2, 39.3, 11, 180 }, + [67] = { 15.2, 39.1, 11, 180 }, + [68] = { 13.4, 38.3, 11, 180 }, + [69] = { 16.1, 36.4, 11, 180 }, + [70] = { 12.8, 35.2, 11, 180 }, + [71] = { 13.9, 34.6, 11, 180 }, + [72] = { 23.1, 32.7, 11, 180 }, + [73] = { 14.5, 32.6, 11, 180 }, + [74] = { 16.4, 30.4, 11, 180 }, + [75] = { 39.1, 29.6, 11, 180 }, + [76] = { 31.4, 29.3, 11, 180 }, + [77] = { 14.5, 29.1, 11, 180 }, + [78] = { 62.6, 28.2, 11, 180 }, + [79] = { 34.9, 27.5, 11, 180 }, + [80] = { 40.2, 27.4, 11, 180 }, + [81] = { 61.9, 25.9, 11, 180 }, + [82] = { 26.3, 25.6, 11, 180 }, + [83] = { 16.3, 25.2, 11, 180 }, + [84] = { 60, 24.1, 11, 180 }, + [85] = { 17.8, 22.9, 11, 180 }, + [86] = { 23.6, 19.6, 11, 180 }, + [87] = { 49.6, 18.3, 11, 180 }, + [88] = { 28.8, 16.6, 11, 180 }, + [89] = { 49, 16.4, 11, 180 }, + [90] = { 47.3, 15.7, 11, 180 }, + [91] = { 26.4, 58.7, 15, 180 }, + [92] = { 26.9, 58.6, 15, 180 }, + [93] = { 27.3, 58.5, 15, 180 }, + [94] = { 26.2, 58.4, 15, 180 }, + [95] = { 26.8, 58.2, 15, 180 }, + [96] = { 27.2, 58, 15, 180 }, + [97] = { 26.6, 58, 15, 180 }, + [98] = { 27, 57.6, 15, 180 }, + [99] = { 26.4, 57.6, 15, 180 }, + [100] = { 49.2, 84.4, 17, 180 }, + [101] = { 49.4, 84.3, 17, 180 }, + [102] = { 49.6, 84.3, 17, 180 }, + [103] = { 49.1, 84.2, 17, 180 }, + [104] = { 49.4, 84.1, 17, 180 }, + [105] = { 49.6, 84, 17, 180 }, + [106] = { 49.3, 84, 17, 180 }, + [107] = { 49.5, 83.8, 17, 180 }, + [108] = { 49.2, 83.8, 17, 180 }, + [109] = { 28.1, 98.4, 36, 180 }, + [110] = { 58.7, 89, 36, 180 }, + [111] = { 20.4, 86, 36, 180 }, + [112] = { 19.3, 85.7, 36, 180 }, + [113] = { 62.2, 83.5, 36, 180 }, + [114] = { 47.7, 82.8, 36, 180 }, + [115] = { 18, 82.8, 36, 180 }, + [116] = { 18.7, 82.4, 36, 180 }, + [117] = { 60, 80.9, 36, 180 }, + [118] = { 40, 79.7, 36, 180 }, + [119] = { 11.5, 79.1, 36, 180 }, + [120] = { 14.2, 78.2, 36, 180 }, + [121] = { 19, 74.7, 36, 180 }, + [122] = { 20.2, 70.9, 36, 180 }, + [123] = { 58.2, 68.3, 36, 180 }, + [124] = { 21.3, 63.7, 36, 180 }, + [125] = { 22.7, 60.3, 36, 180 }, + [126] = { 62.4, 58.4, 36, 180 }, + [127] = { 17.3, 57.1, 36, 180 }, + [128] = { 20.7, 53.3, 36, 180 }, + [129] = { 78.2, 85.9, 44, 180 }, + [130] = { 73.5, 78.4, 44, 180 }, + [131] = { 77.8, 66, 44, 180 }, + [132] = { 69.6, 59.7, 44, 180 }, + [133] = { 84, 58.1, 44, 180 }, + [134] = { 69.8, 57.7, 44, 180 }, + [135] = { 69.6, 55, 44, 180 }, + [136] = { 73.7, 54.9, 44, 180 }, + [137] = { 68.8, 53.7, 44, 180 }, + [138] = { 63.1, 48.6, 44, 180 }, + [139] = { 79.2, 48.1, 44, 180 }, + [140] = { 75.6, 46.6, 44, 180 }, + [141] = { 79.4, 45.1, 44, 180 }, + [142] = { 60, 42.9, 44, 180 }, + [143] = { 76.5, 37.3, 44, 180 }, + [144] = { 27.6, 16.8, 44, 180 }, + [145] = { 35.3, 10.7, 44, 180 }, + [146] = { 36.2, 7.3, 44, 180 }, + [147] = { 10.2, 50.5, 45, 180 }, + [148] = { 10.8, 48.5, 45, 180 }, + [149] = { 8.7, 47.6, 45, 180 }, + [150] = { 71.4, 84.5, 46, 180 }, + [151] = { 71.2, 58.7, 130, 180 }, + [152] = { 66.2, 85.8, 267, 180 }, + [153] = { 71.9, 81.8, 267, 180 }, + [154] = { 72.6, 79.6, 267, 180 }, + [155] = { 70.2, 78.6, 267, 180 }, + [156] = { 62.3, 77.3, 267, 180 }, + [157] = { 30.1, 73.7, 267, 180 }, + [158] = { 32.5, 72.7, 267, 180 }, + [159] = { 58, 72.1, 267, 180 }, + [160] = { 25.1, 71.4, 267, 180 }, + [161] = { 40.9, 69.7, 267, 180 }, + [162] = { 36.6, 69.6, 267, 180 }, + [163] = { 44.8, 67.9, 267, 180 }, + [164] = { 56.7, 66.6, 267, 180 }, + [165] = { 63, 63, 267, 180 }, + [166] = { 50.7, 61.5, 267, 180 }, + [167] = { 66.4, 61.4, 267, 180 }, + [168] = { 26.3, 61, 267, 180 }, + [169] = { 26.7, 59.8, 267, 180 }, + [170] = { 51, 59.5, 267, 180 }, + [171] = { 25.6, 59.2, 267, 180 }, + [172] = { 47, 50.4, 267, 180 }, + [173] = { 80.5, 47.3, 267, 180 }, + [174] = { 67.7, 46.8, 267, 180 }, + [175] = { 79.1, 46.3, 267, 180 }, + [176] = { 36.6, 44.5, 267, 180 }, + [177] = { 81.9, 44.1, 267, 180 }, + [178] = { 76.1, 42.9, 267, 180 }, + [179] = { 74.7, 40.8, 267, 180 }, + [180] = { 78.7, 40.8, 267, 180 }, + [181] = { 83.9, 40.6, 267, 180 }, + [182] = { 29.6, 39.5, 267, 180 }, + [183] = { 81.8, 39.3, 267, 180 }, + [184] = { 35.3, 38.5, 267, 180 }, + [185] = { 33.4, 34.5, 267, 180 }, + [186] = { 60.2, 26.3, 267, 180 }, + [187] = { 26.7, 23.7, 267, 180 }, + [188] = { 25.7, 23.4, 267, 180 }, + [189] = { 63.3, 21.5, 267, 180 }, + [190] = { 50.6, 20.9, 267, 180 }, + [191] = { 24.6, 20.9, 267, 180 }, + [192] = { 25.2, 20.6, 267, 180 }, + [193] = { 61.4, 19.2, 267, 180 }, + [194] = { 43.9, 18.2, 267, 180 }, + [195] = { 18.9, 17.6, 267, 180 }, + [196] = { 21.3, 16.9, 267, 180 }, + [197] = { 25.4, 13.8, 267, 180 }, + [198] = { 59.8, 8.2, 267, 180 }, + [199] = { 73, 80.5, 331, 180 }, + [200] = { 89, 77.9, 331, 180 }, + [201] = { 89.1, 77, 331, 180 }, + [202] = { 89.5, 76.5, 331, 180 }, + [203] = { 64.7, 75.6, 331, 180 }, + [204] = { 75.3, 72.3, 331, 180 }, + [205] = { 85, 64.6, 331, 180 }, + [206] = { 87.1, 64.6, 331, 180 }, + [207] = { 54.3, 64.4, 331, 180 }, + [208] = { 89.7, 62.7, 331, 180 }, + [209] = { 54.3, 61.2, 331, 180 }, + [210] = { 50.1, 59.5, 331, 180 }, + [211] = { 88.7, 59.3, 331, 180 }, + [212] = { 89.5, 58.9, 331, 180 }, + [213] = { 66.8, 57.3, 331, 180 }, + [214] = { 88.9, 56.4, 331, 180 }, + [215] = { 17.6, 50, 331, 180 }, + [216] = { 80.6, 49.5, 331, 180 }, + [217] = { 31.3, 45, 331, 180 }, + [218] = { 78.5, 44.7, 331, 180 }, + [219] = { 31, 43.2, 331, 180 }, + [220] = { 32.6, 42.5, 331, 180 }, + [221] = { 26.8, 40.8, 331, 180 }, + [222] = { 31.7, 39.2, 331, 180 }, + [223] = { 34.3, 38.8, 331, 180 }, + [224] = { 27.2, 36.9, 331, 180 }, + [225] = { 35.5, 36.7, 331, 180 }, + [226] = { 39.9, 36.5, 331, 180 }, + [227] = { 12.3, 34.4, 331, 180 }, + [228] = { 35.7, 31.6, 331, 180 }, + [229] = { 26.7, 22.3, 331, 180 }, + [230] = { 36.6, 6.7, 406, 180 }, + [231] = { 35.9, 5.6, 406, 180 }, + }, + }, + [3702] = { + ["coords"] = { + [1] = { 26.4, 58.7, 15, 180 }, + [2] = { 26.9, 58.6, 15, 180 }, + [3] = { 27.3, 58.5, 15, 180 }, + [4] = { 26.2, 58.4, 15, 180 }, + [5] = { 26.8, 58.2, 15, 180 }, + [6] = { 27.2, 58, 15, 180 }, + [7] = { 26.6, 58, 15, 180 }, + [8] = { 27, 57.6, 15, 180 }, + [9] = { 26.4, 57.6, 15, 180 }, + [10] = { 49.2, 84.4, 17, 180 }, + [11] = { 49.4, 84.3, 17, 180 }, + [12] = { 49.6, 84.3, 17, 180 }, + [13] = { 49.1, 84.2, 17, 180 }, + [14] = { 49.4, 84.1, 17, 180 }, + [15] = { 49.6, 84, 17, 180 }, + [16] = { 49.3, 84, 17, 180 }, + [17] = { 49.5, 83.8, 17, 180 }, + [18] = { 49.2, 83.8, 17, 180 }, + [19] = { 77.1, 75, 331, 180 }, + [20] = { 77.9, 74.5, 331, 180 }, + [21] = { 75.1, 74.3, 331, 180 }, + [22] = { 75.4, 74.2, 331, 180 }, + [23] = { 77.2, 73.9, 331, 180 }, + [24] = { 78.1, 73.7, 331, 180 }, + [25] = { 75.2, 73, 331, 180 }, + [26] = { 75.3, 71.8, 331, 180 }, + }, + }, + [3703] = { + ["coords"] = {}, + }, + [3704] = { + ["coords"] = {}, + }, + [3705] = { + ["coords"] = { + [1] = { 51.4, 4.8, 15, 180 }, + [2] = { 44.7, 59.4, 17, 180 }, + [3] = { 45.7, 59.1, 17, 180 }, + [4] = { 48, 58.2, 17, 180 }, + [5] = { 44.8, 58, 17, 180 }, + [6] = { 49.4, 57.2, 17, 180 }, + [7] = { 62.1, 56.5, 17, 180 }, + [8] = { 42.9, 55, 17, 180 }, + [9] = { 61.8, 54.9, 17, 180 }, + [10] = { 51.1, 54.7, 17, 180 }, + [11] = { 62.5, 54.2, 17, 180 }, + [12] = { 43.3, 52.4, 17, 180 }, + [13] = { 44.8, 51.5, 17, 180 }, + [14] = { 49.3, 50.2, 17, 180 }, + [15] = { 61.6, 49.1, 17, 180 }, + [16] = { 62.2, 47.4, 17, 180 }, + [17] = { 54.3, 47, 17, 180 }, + [18] = { 62, 46.1, 17, 180 }, + [19] = { 40.7, 45.1, 17, 180 }, + [20] = { 56.5, 43.8, 17, 180 }, + [21] = { 53.5, 40.9, 17, 180 }, + [22] = { 61.9, 39.1, 17, 180 }, + [23] = { 41.7, 38.7, 17, 180 }, + [24] = { 61.7, 38.5, 17, 180 }, + [25] = { 45.9, 38.2, 17, 180 }, + [26] = { 53.1, 36.5, 17, 180 }, + [27] = { 62.6, 35.1, 17, 180 }, + [28] = { 58.1, 33.2, 17, 180 }, + [29] = { 57.3, 33.2, 17, 180 }, + [30] = { 48.3, 32.6, 17, 180 }, + [31] = { 55.2, 32.2, 17, 180 }, + [32] = { 52.3, 32.1, 17, 180 }, + [33] = { 51.9, 31.5, 17, 180 }, + [34] = { 52.5, 30.4, 17, 180 }, + [35] = { 51.2, 30.3, 17, 180 }, + [36] = { 52.2, 30.1, 17, 180 }, + [37] = { 51.7, 29.9, 17, 180 }, + [38] = { 52.7, 29.9, 17, 180 }, + [39] = { 39.4, 29.8, 17, 180 }, + [40] = { 52.2, 29.8, 17, 180 }, + [41] = { 50.9, 29.6, 17, 180 }, + [42] = { 51.9, 29.5, 17, 180 }, + [43] = { 50.8, 29.3, 17, 180 }, + [44] = { 51.3, 29.1, 17, 180 }, + [45] = { 45.2, 28.4, 17, 180 }, + [46] = { 42.2, 27.5, 17, 180 }, + [47] = { 58.5, 27.3, 17, 180 }, + [48] = { 57.3, 25.4, 17, 180 }, + [49] = { 45.9, 25.3, 17, 180 }, + [50] = { 30.7, 25, 17, 180 }, + [51] = { 39.9, 24.7, 17, 180 }, + [52] = { 59.5, 24.6, 17, 180 }, + [53] = { 47.8, 24.4, 17, 180 }, + [54] = { 61.2, 24, 17, 180 }, + [55] = { 30.9, 24, 17, 180 }, + [56] = { 32.8, 23.5, 17, 180 }, + [57] = { 43.1, 23.4, 17, 180 }, + [58] = { 52.3, 23.4, 17, 180 }, + [59] = { 33.6, 23.1, 17, 180 }, + [60] = { 31.8, 22.2, 17, 180 }, + [61] = { 33.8, 22.1, 17, 180 }, + [62] = { 31.6, 21.8, 17, 180 }, + [63] = { 34.8, 21.5, 17, 180 }, + [64] = { 54.6, 20.3, 17, 180 }, + [65] = { 45, 19.9, 17, 180 }, + [66] = { 55.9, 19.7, 17, 180 }, + [67] = { 62, 19.5, 17, 180 }, + [68] = { 47.6, 19.4, 17, 180 }, + [69] = { 48.2, 19.2, 17, 180 }, + [70] = { 41.7, 15.9, 17, 180 }, + [71] = { 47.7, 15.3, 17, 180 }, + [72] = { 39, 12.2, 17, 180 }, + [73] = { 43.7, 12.1, 17, 180 }, + [74] = { 62.2, 10.7, 17, 180 }, + [75] = { 49, 10.6, 17, 180 }, + [76] = { 52.9, 10.4, 17, 180 }, + [77] = { 47.9, 8.9, 17, 180 }, + [78] = { 56.1, 8.7, 17, 180 }, + [79] = { 54.7, 5.9, 17, 180 }, + [80] = { 47.7, 5.5, 17, 180 }, + [81] = { 8, 66.7, 28, 180 }, + [82] = { 8.3, 64.6, 28, 180 }, + [83] = { 37.6, 85.9, 38, 180 }, + [84] = { 27.3, 85.3, 38, 180 }, + [85] = { 35.7, 84.9, 38, 180 }, + [86] = { 35.1, 81.2, 38, 180 }, + [87] = { 28.7, 80.9, 38, 180 }, + [88] = { 24.2, 74.8, 38, 180 }, + [89] = { 23.4, 73.6, 38, 180 }, + [90] = { 33.9, 71.1, 38, 180 }, + [91] = { 72.7, 69, 38, 180 }, + [92] = { 69.3, 67.5, 38, 180 }, + [93] = { 64.5, 66.4, 38, 180 }, + [94] = { 69.6, 65.5, 38, 180 }, + [95] = { 70.2, 63.2, 38, 180 }, + [96] = { 68.5, 59.5, 38, 180 }, + [97] = { 26.5, 57.3, 38, 180 }, + [98] = { 25.9, 49.2, 38, 180 }, + [99] = { 34.7, 48.2, 38, 180 }, + [100] = { 34.7, 43.7, 38, 180 }, + [101] = { 36.1, 43.5, 38, 180 }, + [102] = { 25.4, 42.9, 38, 180 }, + [103] = { 25.6, 29.7, 38, 180 }, + [104] = { 52.1, 24.1, 38, 180 }, + [105] = { 69.5, 22.1, 38, 180 }, + [106] = { 48, 21.1, 38, 180 }, + [107] = { 69.4, 20.7, 38, 180 }, + [108] = { 25.7, 18.7, 38, 180 }, + [109] = { 35.9, 18.6, 38, 180 }, + [110] = { 36.2, 15.5, 38, 180 }, + [111] = { 46.4, 13.7, 38, 180 }, + [112] = { 36.2, 90.3, 40, 180 }, + [113] = { 42.7, 88.2, 40, 180 }, + [114] = { 34.4, 86.7, 40, 180 }, + [115] = { 29.6, 85.3, 40, 180 }, + [116] = { 41.4, 82.6, 40, 180 }, + [117] = { 37.2, 81.9, 40, 180 }, + [118] = { 40.5, 81.4, 40, 180 }, + [119] = { 43, 80.6, 40, 180 }, + [120] = { 41.8, 79.8, 40, 180 }, + [121] = { 38.5, 78.6, 40, 180 }, + [122] = { 28.7, 78.6, 40, 180 }, + [123] = { 41.9, 77.8, 40, 180 }, + [124] = { 62.1, 77.1, 40, 180 }, + [125] = { 43.6, 76.9, 40, 180 }, + [126] = { 42.8, 76.1, 40, 180 }, + [127] = { 37, 75.2, 40, 180 }, + [128] = { 70, 74.7, 40, 180 }, + [129] = { 41.6, 74.7, 40, 180 }, + [130] = { 70.1, 73.5, 40, 180 }, + [131] = { 31.7, 72.4, 40, 180 }, + [132] = { 43.4, 71.3, 40, 180 }, + [133] = { 42, 69.4, 40, 180 }, + [134] = { 27.9, 68.9, 40, 180 }, + [135] = { 26.3, 68.3, 40, 180 }, + [136] = { 44.1, 68.2, 40, 180 }, + [137] = { 29.4, 65.7, 40, 180 }, + [138] = { 29.6, 63.6, 40, 180 }, + [139] = { 52.7, 62.8, 40, 180 }, + [140] = { 48.3, 60.7, 40, 180 }, + [141] = { 27.9, 60.2, 40, 180 }, + [142] = { 33, 57.4, 40, 180 }, + [143] = { 28.1, 54, 40, 180 }, + [144] = { 57.8, 53.9, 40, 180 }, + [145] = { 52.3, 52.7, 40, 180 }, + [146] = { 30.3, 52, 40, 180 }, + [147] = { 30.1, 49.7, 40, 180 }, + [148] = { 56.7, 46.8, 40, 180 }, + [149] = { 48, 46.4, 40, 180 }, + [150] = { 31.2, 33.8, 40, 180 }, + [151] = { 28.4, 33.3, 40, 180 }, + [152] = { 38.9, 31.6, 40, 180 }, + [153] = { 36.6, 31.3, 40, 180 }, + [154] = { 37.9, 28.4, 40, 180 }, + [155] = { 32.4, 27.1, 40, 180 }, + [156] = { 35.9, 21.6, 40, 180 }, + [157] = { 49.1, 19.3, 40, 180 }, + [158] = { 34.4, 15, 40, 180 }, + [159] = { 52.3, 14.6, 40, 180 }, + [160] = { 38.3, 13.9, 40, 180 }, + [161] = { 56.6, 13.6, 40, 180 }, + [162] = { 40.6, 10, 40, 180 }, + [163] = { 31, 84.4, 44, 180 }, + [164] = { 29.8, 84.2, 44, 180 }, + [165] = { 31.9, 83, 44, 180 }, + [166] = { 15.2, 64.4, 44, 180 }, + [167] = { 17, 62.9, 44, 180 }, + [168] = { 15.4, 61.3, 44, 180 }, + [169] = { 30.4, 59.8, 44, 180 }, + [170] = { 33.4, 52.7, 44, 180 }, + [171] = { 21.6, 45.5, 44, 180 }, + [172] = { 22.4, 44.4, 44, 180 }, + [173] = { 27, 42.5, 44, 180 }, + [174] = { 23.9, 41.6, 44, 180 }, + [175] = { 21.6, 36.8, 44, 180 }, + [176] = { 39, 32.1, 44, 180 }, + [177] = { 28.1, 28.7, 44, 180 }, + [178] = { 23.4, 27.2, 44, 180 }, + [179] = { 34.4, 24.8, 44, 180 }, + [180] = { 27.9, 22.1, 44, 180 }, + [181] = { 46.4, 86.6, 130, 180 }, + [182] = { 47, 86.4, 130, 180 }, + [183] = { 45.3, 85, 130, 180 }, + [184] = { 44.4, 84.8, 130, 180 }, + [185] = { 62.3, 76.4, 130, 180 }, + [186] = { 45.5, 75.4, 130, 180 }, + [187] = { 46, 75.2, 130, 180 }, + [188] = { 45, 75.2, 130, 180 }, + [189] = { 47.5, 74.3, 130, 180 }, + [190] = { 44.8, 74, 130, 180 }, + [191] = { 48.2, 73.5, 130, 180 }, + [192] = { 43, 73.1, 130, 180 }, + [193] = { 45.9, 72.4, 130, 180 }, + [194] = { 44.4, 72.2, 130, 180 }, + [195] = { 45.7, 71.5, 130, 180 }, + [196] = { 45.3, 71.4, 130, 180 }, + [197] = { 47.1, 71.3, 130, 180 }, + [198] = { 62.9, 68.3, 130, 180 }, + [199] = { 58.2, 67.3, 130, 180 }, + [200] = { 59.6, 66.6, 130, 180 }, + [201] = { 58.9, 66.1, 130, 180 }, + [202] = { 60.6, 65.7, 130, 180 }, + [203] = { 63, 63.7, 130, 180 }, + [204] = { 62.6, 62.5, 130, 180 }, + [205] = { 61.6, 62.2, 130, 180 }, + [206] = { 58.7, 61.5, 130, 180 }, + [207] = { 49.8, 59.8, 130, 180 }, + [208] = { 63.7, 58.6, 130, 180 }, + [209] = { 64, 57.1, 130, 180 }, + [210] = { 63.4, 56.8, 130, 180 }, + [211] = { 73.3, 10.1, 130, 180 }, + [212] = { 72, 8.6, 130, 180 }, + [213] = { 31.3, 89.5, 148, 180 }, + [214] = { 42.7, 86.7, 148, 180 }, + [215] = { 44.1, 85.2, 148, 180 }, + [216] = { 35.2, 85.1, 148, 180 }, + [217] = { 42.6, 84.4, 148, 180 }, + [218] = { 44.4, 84.3, 148, 180 }, + [219] = { 31.9, 83.7, 148, 180 }, + [220] = { 34.1, 80.2, 148, 180 }, + [221] = { 40, 78.2, 148, 180 }, + [222] = { 35.8, 76.2, 148, 180 }, + [223] = { 35.5, 73, 148, 180 }, + [224] = { 36.3, 69.1, 148, 180 }, + [225] = { 36.7, 60.5, 148, 180 }, + [226] = { 36.7, 57.2, 148, 180 }, + [227] = { 39.4, 56.9, 148, 180 }, + [228] = { 40.3, 56.3, 148, 180 }, + [229] = { 39.6, 56.1, 148, 180 }, + [230] = { 40.2, 54.1, 148, 180 }, + [231] = { 39.5, 54, 148, 180 }, + [232] = { 39.5, 53.2, 148, 180 }, + [233] = { 35.8, 48.4, 148, 180 }, + [234] = { 36.8, 44.1, 148, 180 }, + [235] = { 39.5, 43.3, 148, 180 }, + [236] = { 38.1, 41.2, 148, 180 }, + [237] = { 37, 35.6, 148, 180 }, + [238] = { 51.3, 35, 148, 180 }, + [239] = { 50.5, 34.9, 148, 180 }, + [240] = { 52.8, 33.8, 148, 180 }, + [241] = { 52.3, 33.2, 148, 180 }, + [242] = { 38, 31.7, 148, 180 }, + [243] = { 55.5, 27.1, 148, 180 }, + [244] = { 57.3, 26.5, 148, 180 }, + [245] = { 57.7, 25.5, 148, 180 }, + [246] = { 50.5, 23.3, 148, 180 }, + [247] = { 55.8, 19.2, 148, 180 }, + [248] = { 56.5, 13.9, 148, 180 }, + [249] = { 7.3, 41, 267, 180 }, + [250] = { 8.1, 30.3, 267, 180 }, + [251] = { 8.2, 24.2, 267, 180 }, + [252] = { 7.6, 22.6, 267, 180 }, + [253] = { 9.1, 17.5, 267, 180 }, + [254] = { 9.5, 15.5, 267, 180 }, + [255] = { 67.8, 89.2, 331, 180 }, + [256] = { 72.6, 95.5, 406, 180 }, + [257] = { 73.6, 95, 406, 180 }, + [258] = { 71.3, 94.3, 406, 180 }, + [259] = { 76.5, 91.9, 406, 180 }, + [260] = { 76.9, 89.8, 406, 180 }, + [261] = { 80.8, 88.8, 406, 180 }, + [262] = { 82.5, 88, 406, 180 }, + [263] = { 78.7, 86.1, 406, 180 }, + [264] = { 82.9, 86, 406, 180 }, + [265] = { 74.4, 85.8, 406, 180 }, + [266] = { 73.3, 85.7, 406, 180 }, + [267] = { 78.4, 85.2, 406, 180 }, + [268] = { 84.9, 84.6, 406, 180 }, + [269] = { 59.1, 62.6, 406, 180 }, + [270] = { 47.5, 62.5, 406, 180 }, + [271] = { 74.4, 59.2, 406, 180 }, + [272] = { 45.7, 59.1, 406, 180 }, + [273] = { 66.5, 51.6, 406, 180 }, + [274] = { 77.5, 78, 1497, 180 }, + [275] = { 52.1, 77, 1497, 180 }, + [276] = { 72, 71.6, 1497, 180 }, + [277] = { 52.3, 70.8, 1497, 180 }, + [278] = { 46.6, 70.7, 1497, 180 }, + [279] = { 83.5, 66.3, 1497, 180 }, + [280] = { 78.4, 66.1, 1497, 180 }, + [281] = { 55.1, 58.4, 1497, 180 }, + [282] = { 49.7, 58.3, 1497, 180 }, + [283] = { 84.9, 56.8, 1497, 180 }, + [284] = { 73.6, 54.9, 1497, 180 }, + [285] = { 59.2, 54.3, 1497, 180 }, + [286] = { 63.5, 52.4, 1497, 180 }, + [287] = { 70.2, 50.5, 1497, 180 }, + [288] = { 61.6, 44.8, 1497, 180 }, + [289] = { 69.7, 42.7, 1497, 180 }, + [290] = { 70.3, 38, 1497, 180 }, + [291] = { 72.8, 34, 1497, 180 }, + [292] = { 82.9, 33.5, 1497, 180 }, + [293] = { 79, 33, 1497, 180 }, + [294] = { 58.3, 32.6, 1497, 180 }, + [295] = { 76.4, 30, 1497, 180 }, + [296] = { 72.1, 24.3, 1497, 180 }, + [297] = { 78.4, 21.9, 1497, 180 }, + [298] = { 88, 21.2, 1497, 180 }, + [299] = { 37.3, 84.9, 1519, 180 }, + [300] = { 45.7, 72.8, 1519, 180 }, + [301] = { 28.6, 72.4, 1519, 180 }, + [302] = { 47.9, 70.2, 1519, 180 }, + [303] = { 58.7, 68.4, 1519, 180 }, + [304] = { 56.4, 63.5, 1519, 180 }, + [305] = { 36, 62.9, 1519, 180 }, + [306] = { 41.5, 62.7, 1519, 180 }, + [307] = { 59.4, 61, 1519, 180 }, + [308] = { 48.6, 60.7, 1519, 180 }, + [309] = { 76.7, 58.7, 1519, 180 }, + [310] = { 54.2, 58.6, 1519, 180 }, + [311] = { 64.7, 58.3, 1519, 180 }, + [312] = { 33.8, 56.2, 1519, 180 }, + [313] = { 68.8, 56, 1519, 180 }, + [314] = { 45.3, 49.8, 1519, 180 }, + [315] = { 16.1, 49.7, 1519, 180 }, + [316] = { 55, 48.7, 1519, 180 }, + [317] = { 40.2, 48.6, 1519, 180 }, + [318] = { 27.5, 48.4, 1519, 180 }, + [319] = { 28, 48.3, 1519, 180 }, + [320] = { 64.2, 47.5, 1519, 180 }, + [321] = { 19.4, 47.3, 1519, 180 }, + [322] = { 24.4, 47, 1519, 180 }, + [323] = { 77.3, 46.9, 1519, 180 }, + [324] = { 24.5, 46.3, 1519, 180 }, + [325] = { 70.9, 44.7, 1519, 180 }, + [326] = { 51.3, 44, 1519, 180 }, + [327] = { 41.5, 43.9, 1519, 180 }, + [328] = { 32.2, 43.2, 1519, 180 }, + [329] = { 36.1, 41.4, 1519, 180 }, + [330] = { 70.3, 39.4, 1519, 180 }, + [331] = { 64.1, 38.7, 1519, 180 }, + [332] = { 48.3, 35.2, 1519, 180 }, + [333] = { 52.9, 34.4, 1519, 180 }, + [334] = { 58.2, 32.1, 1519, 180 }, + [335] = { 49, 25.3, 1519, 180 }, + [336] = { 63.6, 23.9, 1519, 180 }, + [337] = { 52.6, 22.8, 1519, 180 }, + [338] = { 57.5, 22.1, 1519, 180 }, + [339] = { 59.5, 14.4, 1519, 180 }, + [340] = { 53.4, 11.6, 1519, 180 }, + }, + }, + [3706] = { + ["coords"] = { + [1] = { 8.4, 85.9, 3, 180 }, + [2] = { 13.9, 75.4, 3, 180 }, + [3] = { 51.1, 67.2, 3, 180 }, + [4] = { 15.5, 61.5, 3, 180 }, + [5] = { 62.9, 57, 3, 180 }, + [6] = { 29.2, 56.3, 3, 180 }, + [7] = { 42.3, 52.6, 3, 180 }, + [8] = { 26.4, 44.1, 3, 180 }, + [9] = { 53.8, 43.2, 3, 180 }, + [10] = { 52.4, 34, 3, 180 }, + [11] = { 53.9, 30.5, 3, 180 }, + [12] = { 41.3, 29.9, 3, 180 }, + [13] = { 42.2, 29.4, 3, 180 }, + [14] = { 40.2, 28.7, 3, 180 }, + [15] = { 41.3, 27.9, 3, 180 }, + [16] = { 39.9, 26.9, 3, 180 }, + [17] = { 41.6, 26.8, 3, 180 }, + [18] = { 32.6, 94.7, 28, 180 }, + [19] = { 32.8, 93.7, 28, 180 }, + [20] = { 31.6, 93.1, 28, 180 }, + [21] = { 32.7, 93, 28, 180 }, + [22] = { 32.3, 92.1, 28, 180 }, + [23] = { 26.9, 83.1, 33, 180 }, + [24] = { 29.5, 81, 33, 180 }, + [25] = { 32.4, 80.7, 33, 180 }, + [26] = { 27.6, 77.6, 33, 180 }, + [27] = { 27.4, 76.8, 33, 180 }, + [28] = { 26.5, 73.3, 33, 180 }, + [29] = { 34.4, 73.2, 33, 180 }, + [30] = { 27.3, 69.6, 33, 180 }, + [31] = { 37.2, 65.3, 33, 180 }, + [32] = { 26.4, 58.5, 33, 180 }, + [33] = { 41.5, 57.9, 33, 180 }, + [34] = { 22.7, 53.8, 33, 180 }, + [35] = { 35.2, 51.3, 33, 180 }, + [36] = { 26.7, 48.2, 33, 180 }, + [37] = { 46.4, 43.2, 33, 180 }, + [38] = { 27.3, 42.3, 33, 180 }, + [39] = { 44.6, 41.5, 33, 180 }, + [40] = { 46.5, 38.8, 33, 180 }, + [41] = { 27.1, 38, 33, 180 }, + [42] = { 31.7, 36.8, 33, 180 }, + [43] = { 50.8, 36.1, 33, 180 }, + [44] = { 35.4, 36, 33, 180 }, + [45] = { 46.5, 32.1, 33, 180 }, + [46] = { 34.6, 32, 33, 180 }, + [47] = { 50.3, 30.3, 33, 180 }, + [48] = { 47.8, 29.7, 33, 180 }, + [49] = { 32.3, 29.6, 33, 180 }, + [50] = { 32.5, 28.1, 33, 180 }, + [51] = { 31.5, 27.6, 33, 180 }, + [52] = { 30.1, 27.2, 33, 180 }, + [53] = { 29.5, 24, 33, 180 }, + [54] = { 43.4, 20.3, 33, 180 }, + [55] = { 50.4, 20.2, 33, 180 }, + [56] = { 26.8, 19.8, 33, 180 }, + [57] = { 29.6, 19, 33, 180 }, + [58] = { 23.3, 18.3, 33, 180 }, + [59] = { 42.5, 18.3, 33, 180 }, + [60] = { 44, 18, 33, 180 }, + [61] = { 21.1, 16.1, 33, 180 }, + [62] = { 24.9, 12.6, 33, 180 }, + [63] = { 18.6, 12.4, 33, 180 }, + [64] = { 26, 12, 33, 180 }, + [65] = { 45.3, 11.4, 33, 180 }, + [66] = { 35.8, 11.1, 33, 180 }, + [67] = { 43.9, 9.3, 33, 180 }, + [68] = { 25.8, 9.2, 33, 180 }, + [69] = { 44.4, 7.8, 33, 180 }, + [70] = { 37.7, 3.1, 33, 180 }, + [71] = { 38.6, 58.2, 36, 180 }, + [72] = { 49.7, 56.6, 36, 180 }, + [73] = { 49, 56.6, 36, 180 }, + [74] = { 39.8, 51.1, 36, 180 }, + [75] = { 38.2, 49.5, 36, 180 }, + [76] = { 35.5, 49.3, 36, 180 }, + [77] = { 46.7, 46.3, 36, 180 }, + [78] = { 57.4, 45.7, 36, 180 }, + [79] = { 41.3, 45.6, 36, 180 }, + [80] = { 63.1, 45.4, 36, 180 }, + [81] = { 48.7, 44.4, 36, 180 }, + [82] = { 39.2, 44, 36, 180 }, + [83] = { 63.5, 44, 36, 180 }, + [84] = { 60.2, 43.5, 36, 180 }, + [85] = { 61.7, 43, 36, 180 }, + [86] = { 63.3, 42.9, 36, 180 }, + [87] = { 62.7, 41.4, 36, 180 }, + [88] = { 39, 39.1, 36, 180 }, + [89] = { 42.1, 38.8, 36, 180 }, + [90] = { 48.6, 34.5, 36, 180 }, + [91] = { 57.8, 29.7, 36, 180 }, + [92] = { 55.7, 26.6, 36, 180 }, + [93] = { 40.7, 21.4, 36, 180 }, + [94] = { 53.9, 21.1, 36, 180 }, + [95] = { 47.9, 17, 36, 180 }, + [96] = { 39.1, 15.8, 36, 180 }, + [97] = { 37, 15.4, 36, 180 }, + [98] = { 48.6, 87.4, 45, 180 }, + [99] = { 53.9, 76.5, 45, 180 }, + [100] = { 57.9, 74.8, 45, 180 }, + [101] = { 64.8, 74.1, 45, 180 }, + [102] = { 60.8, 72.7, 45, 180 }, + [103] = { 70.9, 70, 45, 180 }, + [104] = { 21.5, 67.9, 45, 180 }, + [105] = { 29.2, 65.8, 45, 180 }, + [106] = { 23.2, 65.2, 45, 180 }, + [107] = { 26.9, 65.1, 45, 180 }, + [108] = { 73.6, 64.7, 45, 180 }, + [109] = { 65.9, 64.4, 45, 180 }, + [110] = { 23.6, 63.6, 45, 180 }, + [111] = { 27.4, 62.5, 45, 180 }, + [112] = { 29.6, 62, 45, 180 }, + [113] = { 26.7, 61.2, 45, 180 }, + [114] = { 25.4, 61.1, 45, 180 }, + [115] = { 28, 60.2, 45, 180 }, + [116] = { 22.3, 59.8, 45, 180 }, + [117] = { 60.2, 59.5, 45, 180 }, + [118] = { 24.5, 56.8, 45, 180 }, + [119] = { 62, 56.1, 45, 180 }, + [120] = { 63, 56, 45, 180 }, + [121] = { 60.7, 55.4, 45, 180 }, + [122] = { 46.1, 48, 45, 180 }, + [123] = { 45.6, 45.8, 45, 180 }, + [124] = { 35.4, 43.9, 45, 180 }, + [125] = { 56.7, 39.1, 45, 180 }, + [126] = { 54.3, 38, 45, 180 }, + [127] = { 75.4, 37, 45, 180 }, + [128] = { 56.2, 35.8, 45, 180 }, + [129] = { 74, 34, 45, 180 }, + [130] = { 74.6, 31.5, 45, 180 }, + [131] = { 32, 31, 45, 180 }, + [132] = { 33.6, 27, 45, 180 }, + [133] = { 30.9, 26.3, 45, 180 }, + }, + }, + [3707] = { + ["coords"] = { + [1] = { 8.4, 85.9, 3, 180 }, + [2] = { 13.9, 75.4, 3, 180 }, + [3] = { 51.1, 67.2, 3, 180 }, + [4] = { 15.5, 61.5, 3, 180 }, + [5] = { 62.9, 57, 3, 180 }, + [6] = { 29.2, 56.3, 3, 180 }, + [7] = { 42.3, 52.6, 3, 180 }, + [8] = { 26.4, 44.1, 3, 180 }, + [9] = { 53.8, 43.2, 3, 180 }, + [10] = { 52.4, 34, 3, 180 }, + [11] = { 53.9, 30.5, 3, 180 }, + [12] = { 41.3, 29.9, 3, 180 }, + [13] = { 42.2, 29.4, 3, 180 }, + [14] = { 40.2, 28.7, 3, 180 }, + [15] = { 41.3, 27.9, 3, 180 }, + [16] = { 39.9, 26.9, 3, 180 }, + [17] = { 41.6, 26.8, 3, 180 }, + [18] = { 58.8, 45.2, 15, 180 }, + [19] = { 59.6, 40.9, 15, 180 }, + [20] = { 36.3, 31.9, 15, 180 }, + [21] = { 35.1, 31.1, 15, 180 }, + [22] = { 42.8, 30.4, 15, 180 }, + [23] = { 36.6, 30.3, 15, 180 }, + [24] = { 43.3, 28, 15, 180 }, + [25] = { 38.2, 26.1, 15, 180 }, + [26] = { 45.1, 24.7, 15, 180 }, + [27] = { 46.9, 24.2, 15, 180 }, + [28] = { 57, 21.1, 15, 180 }, + [29] = { 61.6, 18.3, 15, 180 }, + [30] = { 48.4, 17.6, 15, 180 }, + [31] = { 58.3, 15.6, 15, 180 }, + [32] = { 54.3, 14.3, 15, 180 }, + [33] = { 58.9, 11.3, 15, 180 }, + [34] = { 62.3, 8.3, 15, 180 }, + [35] = { 54.3, 70.5, 17, 180 }, + [36] = { 53.7, 70.1, 17, 180 }, + [37] = { 54.5, 69.7, 17, 180 }, + [38] = { 55.3, 67.5, 17, 180 }, + [39] = { 66, 59.8, 17, 180 }, + [40] = { 67.8, 58.3, 17, 180 }, + [41] = { 32.6, 94.7, 28, 180 }, + [42] = { 32.8, 93.7, 28, 180 }, + [43] = { 31.6, 93.1, 28, 180 }, + [44] = { 32.7, 93, 28, 180 }, + [45] = { 32.3, 92.1, 28, 180 }, + [46] = { 26.9, 83.1, 33, 180 }, + [47] = { 29.5, 81, 33, 180 }, + [48] = { 32.4, 80.7, 33, 180 }, + [49] = { 27.6, 77.6, 33, 180 }, + [50] = { 27.4, 76.8, 33, 180 }, + [51] = { 26.5, 73.3, 33, 180 }, + [52] = { 34.4, 73.2, 33, 180 }, + [53] = { 27.3, 69.6, 33, 180 }, + [54] = { 37.2, 65.3, 33, 180 }, + [55] = { 26.4, 58.5, 33, 180 }, + [56] = { 41.5, 57.9, 33, 180 }, + [57] = { 22.7, 53.8, 33, 180 }, + [58] = { 35.2, 51.3, 33, 180 }, + [59] = { 26.7, 48.2, 33, 180 }, + [60] = { 46.4, 43.2, 33, 180 }, + [61] = { 27.3, 42.3, 33, 180 }, + [62] = { 44.6, 41.5, 33, 180 }, + [63] = { 46.5, 38.8, 33, 180 }, + [64] = { 27.1, 38, 33, 180 }, + [65] = { 31.7, 36.8, 33, 180 }, + [66] = { 50.8, 36.1, 33, 180 }, + [67] = { 35.4, 36, 33, 180 }, + [68] = { 46.5, 32.1, 33, 180 }, + [69] = { 34.6, 32, 33, 180 }, + [70] = { 50.3, 30.3, 33, 180 }, + [71] = { 47.8, 29.7, 33, 180 }, + [72] = { 32.3, 29.6, 33, 180 }, + [73] = { 32.5, 28.1, 33, 180 }, + [74] = { 31.5, 27.6, 33, 180 }, + [75] = { 30.1, 27.2, 33, 180 }, + [76] = { 29.5, 24, 33, 180 }, + [77] = { 43.4, 20.3, 33, 180 }, + [78] = { 50.4, 20.2, 33, 180 }, + [79] = { 26.8, 19.8, 33, 180 }, + [80] = { 29.6, 19, 33, 180 }, + [81] = { 23.3, 18.3, 33, 180 }, + [82] = { 42.5, 18.3, 33, 180 }, + [83] = { 44, 18, 33, 180 }, + [84] = { 21.1, 16.1, 33, 180 }, + [85] = { 24.9, 12.6, 33, 180 }, + [86] = { 18.6, 12.4, 33, 180 }, + [87] = { 26, 12, 33, 180 }, + [88] = { 45.3, 11.4, 33, 180 }, + [89] = { 35.8, 11.1, 33, 180 }, + [90] = { 43.9, 9.3, 33, 180 }, + [91] = { 25.8, 9.2, 33, 180 }, + [92] = { 44.4, 7.8, 33, 180 }, + [93] = { 37.7, 3.1, 33, 180 }, + [94] = { 38.6, 58.2, 36, 180 }, + [95] = { 49.7, 56.6, 36, 180 }, + [96] = { 49, 56.6, 36, 180 }, + [97] = { 39.8, 51.1, 36, 180 }, + [98] = { 38.2, 49.5, 36, 180 }, + [99] = { 35.5, 49.3, 36, 180 }, + [100] = { 46.7, 46.3, 36, 180 }, + [101] = { 57.4, 45.7, 36, 180 }, + [102] = { 41.3, 45.6, 36, 180 }, + [103] = { 63.1, 45.4, 36, 180 }, + [104] = { 48.7, 44.4, 36, 180 }, + [105] = { 39.2, 44, 36, 180 }, + [106] = { 63.5, 44, 36, 180 }, + [107] = { 60.2, 43.5, 36, 180 }, + [108] = { 61.7, 43, 36, 180 }, + [109] = { 63.3, 42.9, 36, 180 }, + [110] = { 62.7, 41.4, 36, 180 }, + [111] = { 39, 39.1, 36, 180 }, + [112] = { 42.1, 38.8, 36, 180 }, + [113] = { 48.6, 34.5, 36, 180 }, + [114] = { 57.8, 29.7, 36, 180 }, + [115] = { 55.7, 26.6, 36, 180 }, + [116] = { 40.7, 21.4, 36, 180 }, + [117] = { 53.9, 21.1, 36, 180 }, + [118] = { 47.9, 17, 36, 180 }, + [119] = { 39.1, 15.8, 36, 180 }, + [120] = { 37, 15.4, 36, 180 }, + [121] = { 48.6, 87.4, 45, 180 }, + [122] = { 53.9, 76.5, 45, 180 }, + [123] = { 57.9, 74.8, 45, 180 }, + [124] = { 64.8, 74.1, 45, 180 }, + [125] = { 60.8, 72.7, 45, 180 }, + [126] = { 70.9, 70, 45, 180 }, + [127] = { 21.5, 67.9, 45, 180 }, + [128] = { 29.2, 65.8, 45, 180 }, + [129] = { 23.2, 65.2, 45, 180 }, + [130] = { 26.9, 65.1, 45, 180 }, + [131] = { 73.6, 64.7, 45, 180 }, + [132] = { 65.9, 64.4, 45, 180 }, + [133] = { 23.6, 63.6, 45, 180 }, + [134] = { 27.4, 62.5, 45, 180 }, + [135] = { 29.6, 62, 45, 180 }, + [136] = { 26.7, 61.2, 45, 180 }, + [137] = { 25.4, 61.1, 45, 180 }, + [138] = { 28, 60.2, 45, 180 }, + [139] = { 22.3, 59.8, 45, 180 }, + [140] = { 60.2, 59.5, 45, 180 }, + [141] = { 24.5, 56.8, 45, 180 }, + [142] = { 62, 56.1, 45, 180 }, + [143] = { 63, 56, 45, 180 }, + [144] = { 60.7, 55.4, 45, 180 }, + [145] = { 46.1, 48, 45, 180 }, + [146] = { 45.6, 45.8, 45, 180 }, + [147] = { 35.4, 43.9, 45, 180 }, + [148] = { 56.7, 39.1, 45, 180 }, + [149] = { 54.3, 38, 45, 180 }, + [150] = { 75.4, 37, 45, 180 }, + [151] = { 56.2, 35.8, 45, 180 }, + [152] = { 74, 34, 45, 180 }, + [153] = { 74.6, 31.5, 45, 180 }, + [154] = { 32, 31, 45, 180 }, + [155] = { 33.6, 27, 45, 180 }, + [156] = { 30.9, 26.3, 45, 180 }, + }, + }, + [3710] = { + ["coords"] = {}, + }, + [3714] = { + ["coords"] = { + [1] = { 27.5, 58.1, 15, 300 }, + [2] = { 26.8, 57.3, 15, 300 }, + [3] = { 27.2, 57.2, 15, 300 }, + [4] = { 48.6, 84.8, 17, 300 }, + [5] = { 49.7, 84, 17, 300 }, + [6] = { 49.4, 83.7, 17, 300 }, + [7] = { 49.6, 83.6, 17, 300 }, + }, + }, + [3715] = { + ["coords"] = { + [1] = { 27.5, 58.1, 15, 300 }, + [2] = { 26.8, 57.3, 15, 300 }, + [3] = { 27.2, 57.2, 15, 300 }, + [4] = { 48.6, 84.8, 17, 300 }, + [5] = { 49.7, 84, 17, 300 }, + [6] = { 49.4, 83.7, 17, 300 }, + [7] = { 49.6, 83.6, 17, 300 }, + [8] = { 26.8, 98.4, 36, 300 }, + [9] = { 32.3, 45.3, 267, 300 }, + [10] = { 36.5, 44.7, 267, 300 }, + [11] = { 30.2, 43.5, 267, 300 }, + [12] = { 29.9, 41.6, 267, 300 }, + [13] = { 36.6, 39.7, 267, 300 }, + [14] = { 29.3, 39.4, 267, 300 }, + [15] = { 35.3, 37.3, 267, 300 }, + [16] = { 32.3, 34.5, 267, 300 }, + [17] = { 30.4, 15.4, 406, 300 }, + [18] = { 29.8, 15.3, 406, 300 }, + [19] = { 28.4, 13, 406, 300 }, + [20] = { 28.4, 12.3, 406, 300 }, + [21] = { 25.9, 12.2, 406, 300 }, + [22] = { 25.4, 11.7, 406, 300 }, + }, + }, + [3716] = { + ["coords"] = { + [1] = { 62.7, 10, 361, 180 }, + }, + }, + [3717] = { + ["coords"] = { + [1] = { 62.7, 7.7, 361, 180 }, + }, + }, + [3718] = { + ["coords"] = { + [1] = { 61.4, 7.4, 361, 180 }, + }, + }, + [3719] = { + ["coords"] = { + [1] = { 78, 62.6, 1, 180 }, + [2] = { 77.3, 60.9, 1, 180 }, + [3] = { 67.8, 60.5, 1, 180 }, + [4] = { 68.8, 59.4, 1, 180 }, + [5] = { 27.7, 58.1, 1, 180 }, + [6] = { 68.8, 56.1, 1, 180 }, + [7] = { 69.4, 55.2, 1, 180 }, + [8] = { 68.1, 54.4, 1, 180 }, + [9] = { 46.9, 53.6, 1, 180 }, + [10] = { 77.3, 52.6, 1, 180 }, + [11] = { 46, 51.6, 1, 180 }, + [12] = { 34.4, 51.5, 1, 180 }, + [13] = { 25.9, 51, 1, 180 }, + [14] = { 25.3, 50.4, 1, 180 }, + [15] = { 63, 50.1, 1, 180 }, + [16] = { 49.5, 48.5, 1, 180 }, + [17] = { 86, 48.2, 1, 180 }, + [18] = { 62, 46.9, 1, 180 }, + [19] = { 30.8, 45.5, 1, 180 }, + [20] = { 41.1, 44.9, 1, 180 }, + [21] = { 25, 44.5, 1, 180 }, + [22] = { 58, 43.8, 1, 180 }, + [23] = { 84.2, 41.1, 1, 180 }, + [24] = { 84.1, 38, 1, 180 }, + [25] = { 26.5, 36.6, 1, 180 }, + [26] = { 27.5, 36.4, 1, 180 }, + [27] = { 36.9, 36.4, 1, 180 }, + [28] = { 41.7, 36, 1, 180 }, + [29] = { 26.3, 91.8, 12, 180 }, + [30] = { 43.1, 89.4, 12, 180 }, + [31] = { 25, 89.2, 12, 180 }, + [32] = { 33.6, 88, 12, 180 }, + [33] = { 48.2, 87.9, 12, 180 }, + [34] = { 26.2, 86.8, 12, 180 }, + [35] = { 76.2, 86.4, 12, 180 }, + [36] = { 27.4, 86, 12, 180 }, + [37] = { 43.5, 85.1, 12, 180 }, + [38] = { 34.9, 84.4, 12, 180 }, + [39] = { 50.9, 83.1, 12, 180 }, + [40] = { 33.7, 82.7, 12, 180 }, + [41] = { 39.2, 82.6, 12, 180 }, + [42] = { 76.4, 82.2, 12, 180 }, + [43] = { 23.5, 80.8, 12, 180 }, + [44] = { 84.6, 79.9, 12, 180 }, + [45] = { 25.3, 77.3, 12, 180 }, + [46] = { 45.8, 73.1, 12, 180 }, + [47] = { 24.8, 72, 12, 180 }, + [48] = { 64.9, 70.6, 12, 180 }, + [49] = { 64.9, 69.8, 12, 180 }, + [50] = { 79.4, 69.2, 12, 180 }, + [51] = { 84.7, 69.1, 12, 180 }, + [52] = { 41.9, 67.4, 12, 180 }, + [53] = { 44, 65.6, 12, 180 }, + [54] = { 30.3, 64.8, 12, 180 }, + [55] = { 84.6, 64.5, 12, 180 }, + [56] = { 47.6, 62.2, 12, 180 }, + [57] = { 35.9, 59.5, 12, 180 }, + [58] = { 52.6, 59.1, 12, 180 }, + [59] = { 34, 57, 12, 180 }, + [60] = { 64.7, 56, 12, 180 }, + [61] = { 67.7, 45, 12, 180 }, + [62] = { 78.6, 44.1, 12, 180 }, + [63] = { 66.4, 41.5, 12, 180 }, + [64] = { 68.1, 39.8, 12, 180 }, + [65] = { 69.4, 38.2, 12, 180 }, + [66] = { 62.8, 97.9, 14, 180 }, + [67] = { 61.6, 95.3, 14, 180 }, + [68] = { 59.7, 91.2, 14, 180 }, + [69] = { 61.2, 89.2, 14, 180 }, + [70] = { 64.4, 88, 14, 180 }, + [71] = { 67, 86.5, 14, 180 }, + [72] = { 60.2, 84.4, 14, 180 }, + [73] = { 68.3, 83.2, 14, 180 }, + [74] = { 50.1, 81, 14, 180 }, + [75] = { 68.8, 79.8, 14, 180 }, + [76] = { 46.1, 78.8, 14, 180 }, + [77] = { 61.2, 78.8, 14, 180 }, + [78] = { 47.5, 77.2, 14, 180 }, + [79] = { 70.7, 74.1, 14, 180 }, + [80] = { 64.4, 72.8, 14, 180 }, + [81] = { 70.5, 69.5, 14, 180 }, + [82] = { 60.9, 69.4, 14, 180 }, + [83] = { 62.1, 65.9, 14, 180 }, + [84] = { 61.4, 61.7, 14, 180 }, + [85] = { 59.7, 58, 14, 180 }, + [86] = { 57.2, 56.2, 14, 180 }, + [87] = { 57.9, 55.7, 14, 180 }, + [88] = { 42.7, 49.2, 14, 180 }, + [89] = { 51.8, 43.7, 14, 180 }, + [90] = { 53.1, 43.1, 14, 180 }, + [91] = { 51.9, 43.1, 14, 180 }, + [92] = { 54.2, 43, 14, 180 }, + [93] = { 51.1, 42.8, 14, 180 }, + [94] = { 53.1, 42.2, 14, 180 }, + [95] = { 51.2, 42.2, 14, 180 }, + [96] = { 34.7, 42.1, 14, 180 }, + [97] = { 54.3, 41.9, 14, 180 }, + [98] = { 51.9, 41.8, 14, 180 }, + [99] = { 51.8, 41.7, 14, 180 }, + [100] = { 49.8, 40.4, 14, 180 }, + [101] = { 49.6, 40.3, 14, 180 }, + [102] = { 59.8, 40.2, 14, 180 }, + [103] = { 40.2, 35.3, 14, 180 }, + [104] = { 40.3, 35.3, 14, 180 }, + [105] = { 59.9, 35.1, 14, 180 }, + [106] = { 46.9, 33.5, 14, 180 }, + [107] = { 48.7, 32.4, 14, 180 }, + [108] = { 50, 30.4, 14, 180 }, + [109] = { 49.2, 29.8, 14, 180 }, + [110] = { 43.3, 29.8, 14, 180 }, + [111] = { 47.2, 29.4, 14, 180 }, + [112] = { 48.6, 29, 14, 180 }, + [113] = { 41.8, 26.9, 14, 180 }, + [114] = { 50.5, 25.3, 14, 180 }, + [115] = { 59.4, 24.8, 14, 180 }, + [116] = { 51.9, 24.5, 14, 180 }, + [117] = { 46.2, 23.2, 14, 180 }, + [118] = { 51.2, 23.1, 14, 180 }, + [119] = { 37, 22.9, 14, 180 }, + [120] = { 59.5, 20.7, 14, 180 }, + [121] = { 56.5, 20, 14, 180 }, + [122] = { 51.7, 18.9, 14, 180 }, + [123] = { 58, 15.4, 14, 180 }, + [124] = { 41.9, 15.3, 14, 180 }, + [125] = { 56.1, 9.7, 14, 180 }, + [126] = { 38, 50.5, 17, 180 }, + [127] = { 38.6, 50.4, 17, 180 }, + [128] = { 37.5, 50.1, 17, 180 }, + [129] = { 38.3, 49.9, 17, 180 }, + [130] = { 36.2, 49.8, 17, 180 }, + [131] = { 78, 48.2, 17, 180 }, + [132] = { 38, 47.6, 17, 180 }, + [133] = { 37.6, 47.2, 17, 180 }, + [134] = { 36.5, 47.2, 17, 180 }, + [135] = { 77.4, 46.8, 17, 180 }, + [136] = { 35.6, 46.6, 17, 180 }, + [137] = { 36.5, 45.6, 17, 180 }, + [138] = { 35.6, 45.6, 17, 180 }, + [139] = { 35.8, 45.4, 17, 180 }, + [140] = { 76.4, 44.7, 17, 180 }, + [141] = { 37, 43.8, 17, 180 }, + [142] = { 77.2, 43.6, 17, 180 }, + [143] = { 78.9, 43, 17, 180 }, + [144] = { 80.2, 42.2, 17, 180 }, + [145] = { 76.7, 41.1, 17, 180 }, + [146] = { 80.9, 40.5, 17, 180 }, + [147] = { 63.3, 19.1, 17, 180 }, + [148] = { 64.6, 9, 17, 180 }, + [149] = { 67.1, 25.9, 40, 180 }, + [150] = { 38.4, 80.2, 141, 180 }, + [151] = { 38.9, 78.7, 141, 180 }, + [152] = { 47.4, 77.5, 141, 180 }, + [153] = { 56.7, 75.7, 141, 180 }, + [154] = { 41.1, 72.7, 141, 180 }, + [155] = { 37.7, 67.1, 141, 180 }, + [156] = { 65.8, 65.1, 141, 180 }, + [157] = { 44.5, 62.6, 141, 180 }, + [158] = { 57.1, 61.4, 141, 180 }, + [159] = { 43.9, 61.1, 141, 180 }, + [160] = { 57.7, 60.8, 141, 180 }, + [161] = { 44.4, 60.3, 141, 180 }, + [162] = { 55.9, 59.7, 141, 180 }, + [163] = { 66.1, 59.1, 141, 180 }, + [164] = { 46.2, 58.4, 141, 180 }, + [165] = { 55.5, 57.2, 141, 180 }, + [166] = { 67.3, 56.9, 141, 180 }, + [167] = { 55.6, 56.7, 141, 180 }, + [168] = { 55.5, 56.6, 141, 180 }, + [169] = { 69.3, 53, 141, 180 }, + [170] = { 41.6, 49.6, 141, 180 }, + [171] = { 37.1, 43.8, 141, 180 }, + [172] = { 43, 41.9, 141, 180 }, + [173] = { 37.7, 41.4, 141, 180 }, + [174] = { 36, 39.1, 141, 180 }, + [175] = { 34.1, 34.9, 141, 180 }, + [176] = { 38.6, 34.2, 141, 180 }, + [177] = { 32.2, 31.9, 141, 180 }, + [178] = { 34, 27.8, 141, 180 }, + [179] = { 48.4, 72.3, 215, 180 }, + [180] = { 47.3, 62.2, 215, 180 }, + [181] = { 35.3, 62, 215, 180 }, + [182] = { 46.5, 61.7, 215, 180 }, + [183] = { 47.6, 61.4, 215, 180 }, + [184] = { 46.7, 60.7, 215, 180 }, + [185] = { 45.9, 60.2, 215, 180 }, + [186] = { 48.4, 59.6, 215, 180 }, + [187] = { 31.9, 59.5, 215, 180 }, + [188] = { 48.4, 59, 215, 180 }, + [189] = { 46, 57.6, 215, 180 }, + [190] = { 45.6, 57.6, 215, 180 }, + [191] = { 47.7, 57.4, 215, 180 }, + [192] = { 47.2, 56.6, 215, 180 }, + [193] = { 48.1, 56, 215, 180 }, + [194] = { 53.6, 48.4, 215, 180 }, + [195] = { 53.5, 48.3, 215, 180 }, + [196] = { 31.7, 48.2, 215, 180 }, + [197] = { 53.7, 48, 215, 180 }, + [198] = { 32.9, 47.3, 215, 180 }, + [199] = { 63.7, 44.6, 215, 180 }, + [200] = { 64.8, 44.5, 215, 180 }, + [201] = { 62.7, 43.8, 215, 180 }, + [202] = { 64.3, 43.3, 215, 180 }, + [203] = { 60.2, 43.1, 215, 180 }, + [204] = { 31.6, 42.3, 215, 180 }, + [205] = { 63.7, 38.9, 215, 180 }, + [206] = { 63, 38.1, 215, 180 }, + [207] = { 60.8, 38, 215, 180 }, + [208] = { 59.1, 36.8, 215, 180 }, + [209] = { 32.8, 36, 215, 180 }, + [210] = { 60.8, 34.9, 215, 180 }, + [211] = { 58.9, 34.8, 215, 180 }, + [212] = { 59.4, 34.5, 215, 180 }, + [213] = { 61.8, 31.3, 215, 180 }, + [214] = { 40.3, 16.1, 215, 180 }, + [215] = { 40.2, 15.5, 215, 180 }, + [216] = { 42.7, 13.8, 215, 180 }, + [217] = { 86.2, 78.3, 405, 180 }, + [218] = { 84.8, 72.5, 405, 180 }, + [219] = { 86.1, 65.3, 405, 180 }, + [220] = { 98.4, 96.8, 1657, 180 }, + }, + }, + [3722] = { + ["coords"] = { + [1] = { 50.1, 59.9, 331, 900 }, + }, + }, + [3723] = { + ["coords"] = { + [1] = { 39.7, 36.4, 331, 900 }, + }, + }, + [3724] = { + ["coords"] = { + [1] = { 47.2, 77.4, 17, 300 }, + [2] = { 45.1, 77.4, 17, 300 }, + [3] = { 49.1, 76.4, 17, 300 }, + [4] = { 44.8, 75.8, 17, 300 }, + [5] = { 47.8, 74.9, 17, 300 }, + [6] = { 44.8, 73.9, 17, 300 }, + [7] = { 45.5, 65.6, 17, 300 }, + [8] = { 45.8, 63.1, 17, 300 }, + [9] = { 49, 62.6, 17, 300 }, + [10] = { 44.5, 62.6, 17, 300 }, + [11] = { 48.7, 61.2, 17, 300 }, + [12] = { 43.4, 60.6, 17, 300 }, + [13] = { 46.1, 60.2, 17, 300 }, + [14] = { 49.3, 59.7, 17, 300 }, + [15] = { 48.1, 59.2, 17, 300 }, + [16] = { 49.7, 58.2, 17, 300 }, + [17] = { 41.4, 57.3, 17, 300 }, + [18] = { 48.8, 56.4, 17, 300 }, + [19] = { 45.1, 56.3, 17, 300 }, + [20] = { 45.4, 53.3, 17, 300 }, + [21] = { 50.1, 52.8, 17, 300 }, + [22] = { 62.1, 52.1, 17, 300 }, + [23] = { 48.4, 51.8, 17, 300 }, + [24] = { 42.2, 48.8, 17, 300 }, + [25] = { 45.5, 48.7, 17, 300 }, + [26] = { 61.2, 48.3, 17, 300 }, + [27] = { 46.1, 48.2, 17, 300 }, + [28] = { 47, 47.8, 17, 300 }, + [29] = { 43.9, 47.6, 17, 300 }, + [30] = { 62.5, 46.8, 17, 300 }, + [31] = { 43.1, 46.4, 17, 300 }, + [32] = { 44.5, 45.9, 17, 300 }, + [33] = { 46.1, 44, 17, 300 }, + [34] = { 63.9, 43.9, 17, 300 }, + [35] = { 45.8, 41.9, 17, 300 }, + [36] = { 49.3, 39, 17, 300 }, + [37] = { 55.3, 38.4, 17, 300 }, + [38] = { 53.7, 37.9, 17, 300 }, + [39] = { 51.7, 37.9, 17, 300 }, + [40] = { 48.6, 37.5, 17, 300 }, + [41] = { 49.4, 36.4, 17, 300 }, + [42] = { 58, 35.9, 17, 300 }, + [43] = { 60.3, 34.4, 17, 300 }, + [44] = { 61.2, 33.1, 17, 300 }, + [45] = { 60, 31.6, 17, 300 }, + [46] = { 49.4, 30.1, 17, 300 }, + [47] = { 46.2, 30, 17, 300 }, + [48] = { 60.9, 30, 17, 300 }, + [49] = { 54, 29.9, 17, 300 }, + [50] = { 63.2, 29.5, 17, 300 }, + [51] = { 43.8, 28.4, 17, 300 }, + [52] = { 51.4, 27.1, 17, 300 }, + [53] = { 53.7, 26.6, 17, 300 }, + [54] = { 59.2, 26.2, 17, 300 }, + [55] = { 55, 26, 17, 300 }, + [56] = { 61.9, 25.1, 17, 300 }, + [57] = { 58, 24.6, 17, 300 }, + [58] = { 42.9, 24.4, 17, 300 }, + [59] = { 60.9, 22.7, 17, 300 }, + [60] = { 56, 20.2, 17, 300 }, + [61] = { 51.4, 19.7, 17, 300 }, + [62] = { 44.5, 18.7, 17, 300 }, + [63] = { 53, 18.2, 17, 300 }, + [64] = { 59.6, 18.1, 17, 300 }, + [65] = { 47.7, 13.8, 17, 300 }, + [66] = { 44.4, 13.3, 17, 300 }, + [67] = { 51.1, 13.3, 17, 300 }, + [68] = { 57.9, 12.4, 17, 300 }, + [69] = { 59.2, 7.4, 17, 300 }, + [70] = { 70.4, 58, 215, 300 }, + }, + }, + [3725] = { + ["coords"] = { + [1] = { 54.5, 47.1, 17, 300 }, + [2] = { 55.8, 43.7, 17, 300 }, + [3] = { 56.4, 43.3, 17, 300 }, + [4] = { 53.5, 43.3, 17, 300 }, + [5] = { 54.9, 42.8, 17, 300 }, + [6] = { 47, 41.6, 17, 300 }, + [7] = { 57.4, 41.4, 17, 300 }, + [8] = { 55.5, 41.2, 17, 300 }, + [9] = { 46.3, 41.1, 17, 300 }, + [10] = { 48.4, 41, 17, 300 }, + [11] = { 47.1, 40.3, 17, 300 }, + [12] = { 48.2, 40.1, 17, 300 }, + [13] = { 45.8, 40, 17, 300 }, + [14] = { 51.8, 39.2, 17, 300 }, + [15] = { 48.4, 39, 17, 300 }, + [16] = { 47, 39, 17, 300 }, + [17] = { 45.7, 38.4, 17, 300 }, + [18] = { 46.3, 38.1, 17, 300 }, + [19] = { 46.4, 37.2, 17, 300 }, + [20] = { 52.9, 36.4, 17, 300 }, + [21] = { 48.1, 36.2, 17, 300 }, + [22] = { 54.1, 35.7, 17, 300 }, + [23] = { 50.1, 33.9, 17, 300 }, + [24] = { 52.6, 32.1, 17, 300 }, + [25] = { 46.5, 31, 17, 300 }, + [26] = { 45.3, 30.9, 17, 300 }, + [27] = { 41.5, 30.7, 17, 300 }, + [28] = { 50.4, 30.2, 17, 300 }, + [29] = { 47.9, 28.6, 17, 300 }, + [30] = { 49.5, 27.3, 17, 300 }, + [31] = { 45.6, 27.2, 17, 300 }, + [32] = { 51.4, 26, 17, 300 }, + [33] = { 48, 24.3, 17, 300 }, + [34] = { 50.3, 23.6, 17, 300 }, + [35] = { 44.4, 22.7, 17, 300 }, + [36] = { 59.8, 22.3, 17, 300 }, + [37] = { 54.7, 21.9, 17, 300 }, + [38] = { 41, 21.3, 17, 300 }, + [39] = { 51, 21, 17, 300 }, + [40] = { 58.9, 20.5, 17, 300 }, + [41] = { 45.3, 20.4, 17, 300 }, + [42] = { 53.3, 20.3, 17, 300 }, + [43] = { 57, 20.2, 17, 300 }, + [44] = { 41.3, 18.1, 17, 300 }, + [45] = { 53.7, 17.6, 17, 300 }, + [46] = { 59.5, 17.2, 17, 300 }, + [47] = { 40.5, 17.1, 17, 300 }, + [48] = { 55.5, 16.9, 17, 300 }, + [49] = { 62.1, 16.2, 17, 300 }, + [50] = { 49.9, 15.9, 17, 300 }, + [51] = { 39.6, 15.8, 17, 300 }, + [52] = { 60.7, 15.7, 17, 300 }, + [53] = { 45.4, 13.1, 17, 300 }, + [54] = { 49.5, 12.8, 17, 300 }, + [55] = { 38.8, 12.7, 17, 300 }, + [56] = { 51.4, 12.4, 17, 300 }, + }, + }, + [3726] = { + ["coords"] = { + [1] = { 26.2, 65, 15, 300 }, + [2] = { 49.1, 87.6, 17, 300 }, + [3] = { 48.4, 85.3, 17, 300 }, + [4] = { 48.7, 83, 17, 300 }, + [5] = { 45.8, 82.3, 17, 300 }, + [6] = { 44.1, 82.1, 17, 300 }, + [7] = { 43.2, 78.2, 17, 300 }, + [8] = { 43, 61.6, 17, 300 }, + [9] = { 41.6, 60.5, 17, 300 }, + [10] = { 42.5, 56, 17, 300 }, + [11] = { 45.3, 50.7, 17, 300 }, + [12] = { 62.3, 49.8, 17, 300 }, + [13] = { 64.4, 49.3, 17, 300 }, + [14] = { 63.2, 47.1, 17, 300 }, + [15] = { 64.9, 46.8, 17, 300 }, + [16] = { 64.9, 44.1, 17, 300 }, + [17] = { 63, 43.9, 17, 300 }, + [18] = { 42.8, 42.4, 17, 300 }, + [19] = { 42.7, 41, 17, 300 }, + [20] = { 41.6, 36.6, 17, 300 }, + [21] = { 64.2, 34, 17, 300 }, + [22] = { 40.9, 32.9, 17, 300 }, + [23] = { 63.3, 32.1, 17, 300 }, + [24] = { 39.1, 30.7, 17, 300 }, + [25] = { 62.3, 30.5, 17, 300 }, + [26] = { 41.5, 29.7, 17, 300 }, + [27] = { 40.9, 29.6, 17, 300 }, + [28] = { 39.6, 28.7, 17, 300 }, + [29] = { 61.5, 28.1, 17, 300 }, + [30] = { 38.2, 27.2, 17, 300 }, + [31] = { 61.2, 26.6, 17, 300 }, + [32] = { 40.5, 26.1, 17, 300 }, + [33] = { 39.2, 24.5, 17, 300 }, + [34] = { 43.1, 23.3, 17, 300 }, + [35] = { 48, 23, 17, 300 }, + [36] = { 50.3, 21.8, 17, 300 }, + [37] = { 40.4, 21.5, 17, 300 }, + [38] = { 44.8, 20.8, 17, 300 }, + [39] = { 42.4, 19.3, 17, 300 }, + [40] = { 59.8, 19.3, 17, 300 }, + [41] = { 60.9, 18.2, 17, 300 }, + [42] = { 45.7, 18, 17, 300 }, + [43] = { 39, 17.7, 17, 300 }, + [44] = { 50, 17.3, 17, 300 }, + [45] = { 38, 17.2, 17, 300 }, + [46] = { 41.9, 17.1, 17, 300 }, + [47] = { 47, 16, 17, 300 }, + [48] = { 61.5, 15.9, 17, 300 }, + [49] = { 39.6, 14.2, 17, 300 }, + [50] = { 62, 14.1, 17, 300 }, + [51] = { 39.8, 12.4, 17, 300 }, + [52] = { 62.1, 11.6, 17, 300 }, + [53] = { 62, 9.6, 17, 300 }, + [54] = { 70.9, 64.3, 215, 300 }, + }, + }, + [3727] = { + ["coords"] = { + [1] = { 27.9, 51, 15, 300 }, + [2] = { 27.1, 40.8, 15, 300 }, + [3] = { 28.5, 13.7, 15, 300 }, + [4] = { 29.5, 10.9, 15, 300 }, + [5] = { 44.7, 84.7, 17, 300 }, + [6] = { 43.8, 84.1, 17, 300 }, + [7] = { 43.1, 82.3, 17, 300 }, + [8] = { 47.4, 81.8, 17, 300 }, + [9] = { 42.5, 80.8, 17, 300 }, + [10] = { 50, 80.4, 17, 300 }, + [11] = { 44.1, 80.3, 17, 300 }, + [12] = { 47.8, 80.3, 17, 300 }, + [13] = { 48.7, 79.2, 17, 300 }, + [14] = { 46.5, 77.9, 17, 300 }, + [15] = { 42.1, 77.9, 17, 300 }, + [16] = { 43.9, 76.4, 17, 300 }, + [17] = { 49.6, 75.1, 17, 300 }, + [18] = { 44.1, 74.8, 17, 300 }, + [19] = { 48.2, 74.3, 17, 300 }, + [20] = { 47.7, 73.9, 17, 300 }, + [21] = { 46.8, 72.5, 17, 300 }, + [22] = { 42.7, 72.4, 17, 300 }, + [23] = { 48, 71.3, 17, 300 }, + [24] = { 44.9, 71.3, 17, 300 }, + [25] = { 44.7, 70.2, 17, 300 }, + [26] = { 47.2, 68.9, 17, 300 }, + [27] = { 46.7, 68.1, 17, 300 }, + [28] = { 45.2, 67.2, 17, 300 }, + [29] = { 47.8, 66.7, 17, 300 }, + [30] = { 44.9, 65.4, 17, 300 }, + [31] = { 46.7, 64.9, 17, 300 }, + [32] = { 47.7, 64.6, 17, 300 }, + [33] = { 45.1, 64.2, 17, 300 }, + [34] = { 48.7, 64.1, 17, 300 }, + [35] = { 45.8, 63.9, 17, 300 }, + [36] = { 44, 63.6, 17, 300 }, + [37] = { 48.5, 63, 17, 300 }, + [38] = { 46.1, 62.1, 17, 300 }, + [39] = { 44.2, 61.1, 17, 300 }, + [40] = { 50.3, 61.1, 17, 300 }, + [41] = { 48.1, 60.6, 17, 300 }, + [42] = { 42.8, 60.2, 17, 300 }, + [43] = { 50.8, 59.6, 17, 300 }, + [44] = { 48.5, 57.7, 17, 300 }, + [45] = { 43.1, 57.5, 17, 300 }, + [46] = { 51.2, 57.4, 17, 300 }, + [47] = { 51.7, 56.6, 17, 300 }, + [48] = { 46.1, 56.6, 17, 300 }, + [49] = { 44.2, 56.2, 17, 300 }, + [50] = { 42.9, 55.5, 17, 300 }, + [51] = { 43.9, 54.6, 17, 300 }, + [52] = { 49.1, 54.3, 17, 300 }, + [53] = { 46.1, 54.2, 17, 300 }, + [54] = { 52.7, 54.2, 17, 300 }, + [55] = { 51.7, 54.2, 17, 300 }, + [56] = { 46.9, 54.1, 17, 300 }, + [57] = { 50.4, 53.7, 17, 300 }, + [58] = { 59.8, 53.3, 17, 300 }, + [59] = { 44.8, 52.8, 17, 300 }, + [60] = { 51.5, 51.3, 17, 300 }, + [61] = { 53.6, 51.3, 17, 300 }, + [62] = { 55, 51.3, 17, 300 }, + [63] = { 47.8, 51.2, 17, 300 }, + [64] = { 42.5, 51, 17, 300 }, + [65] = { 44.2, 50.8, 17, 300 }, + [66] = { 56.2, 50.5, 17, 300 }, + [67] = { 43.5, 50.3, 17, 300 }, + [68] = { 51.4, 49.9, 17, 300 }, + [69] = { 46.1, 49.8, 17, 300 }, + [70] = { 52.5, 49.4, 17, 300 }, + [71] = { 54.3, 49.3, 17, 300 }, + [72] = { 49.4, 49.2, 17, 300 }, + [73] = { 54.9, 48.7, 17, 300 }, + [74] = { 44.8, 48.4, 17, 300 }, + [75] = { 53.3, 48.4, 17, 300 }, + [76] = { 49.2, 48.1, 17, 300 }, + [77] = { 42.3, 48, 17, 300 }, + [78] = { 48.5, 47.2, 17, 300 }, + [79] = { 51.6, 46.7, 17, 300 }, + [80] = { 53.4, 46.3, 17, 300 }, + [81] = { 50.3, 46.3, 17, 300 }, + [82] = { 41.3, 46.1, 17, 300 }, + [83] = { 46.4, 45.9, 17, 300 }, + [84] = { 55, 45.4, 17, 300 }, + [85] = { 47.5, 45.3, 17, 300 }, + [86] = { 44.2, 44.7, 17, 300 }, + [87] = { 54.1, 44, 17, 300 }, + [88] = { 47.7, 43.9, 17, 300 }, + [89] = { 51.4, 43.5, 17, 300 }, + [90] = { 47.1, 43, 17, 300 }, + [91] = { 44.8, 43, 17, 300 }, + [92] = { 53, 42.8, 17, 300 }, + [93] = { 43.7, 41.5, 17, 300 }, + [94] = { 54, 40.9, 17, 300 }, + [95] = { 49.1, 40.9, 17, 300 }, + [96] = { 44.5, 40.5, 17, 300 }, + [97] = { 56.3, 40.4, 17, 300 }, + [98] = { 54.3, 39.4, 17, 300 }, + [99] = { 43.8, 38.5, 17, 300 }, + [100] = { 42.3, 38, 17, 300 }, + [101] = { 44.8, 36.8, 17, 300 }, + [102] = { 48.7, 36.5, 17, 300 }, + [103] = { 54.3, 36.4, 17, 300 }, + [104] = { 47, 36.1, 17, 300 }, + [105] = { 43.1, 36, 17, 300 }, + [106] = { 44.4, 34.6, 17, 300 }, + [107] = { 56.9, 34.5, 17, 300 }, + [108] = { 43.8, 33, 17, 300 }, + [109] = { 42.5, 32.6, 17, 300 }, + [110] = { 40.3, 29.6, 17, 300 }, + [111] = { 42.9, 28.5, 17, 300 }, + [112] = { 45.1, 26.2, 17, 300 }, + [113] = { 48.1, 25.6, 17, 300 }, + [114] = { 42.8, 25.6, 17, 300 }, + [115] = { 40.8, 24.6, 17, 300 }, + [116] = { 49.3, 23.5, 17, 300 }, + [117] = { 59.9, 22.8, 17, 300 }, + [118] = { 41.5, 22.6, 17, 300 }, + [119] = { 43.6, 21.6, 17, 300 }, + [120] = { 41.2, 20.2, 17, 300 }, + [121] = { 43.1, 20.2, 17, 300 }, + [122] = { 44.5, 19.2, 17, 300 }, + [123] = { 61.7, 17.6, 17, 300 }, + [124] = { 45.7, 17.2, 17, 300 }, + [125] = { 56.6, 17.2, 17, 300 }, + [126] = { 43.7, 17, 17, 300 }, + [127] = { 54.9, 16.8, 17, 300 }, + [128] = { 49.5, 16.5, 17, 300 }, + [129] = { 57.5, 16, 17, 300 }, + [130] = { 41, 15.9, 17, 300 }, + [131] = { 39, 15.9, 17, 300 }, + [132] = { 62.2, 15.7, 17, 300 }, + [133] = { 42.4, 15.3, 17, 300 }, + [134] = { 53.3, 15.3, 17, 300 }, + [135] = { 44.5, 15.2, 17, 300 }, + [136] = { 55, 14.7, 17, 300 }, + [137] = { 46.4, 14.2, 17, 300 }, + [138] = { 55.8, 13.1, 17, 300 }, + [139] = { 62.2, 13, 17, 300 }, + [140] = { 46.5, 12.2, 17, 300 }, + [141] = { 60.3, 11.1, 17, 300 }, + [142] = { 54.6, 10.8, 17, 300 }, + [143] = { 62.1, 10.2, 17, 300 }, + [144] = { 57.3, 9.9, 17, 300 }, + [145] = { 62.9, 6.8, 17, 300 }, + [146] = { 56, 5.8, 17, 300 }, + [147] = { 63.4, 5.6, 17, 300 }, + [148] = { 73.2, 63.6, 215, 300 }, + }, + }, + [3729] = { + ["coords"] = { + [1] = { 25.6, 63.7, 15, 300 }, + [2] = { 28.4, 50.5, 15, 300 }, + [3] = { 27.8, 43.9, 15, 300 }, + [4] = { 48.8, 87, 17, 300 }, + [5] = { 45.8, 85.8, 17, 300 }, + [6] = { 43.5, 83.8, 17, 300 }, + [7] = { 45.2, 83.5, 17, 300 }, + [8] = { 48.5, 81.6, 17, 300 }, + [9] = { 44.6, 81.4, 17, 300 }, + [10] = { 45.7, 80.2, 17, 300 }, + [11] = { 50.2, 80.1, 17, 300 }, + [12] = { 43.2, 80, 17, 300 }, + [13] = { 41, 79.8, 17, 300 }, + [14] = { 41.7, 78.2, 17, 300 }, + [15] = { 44.2, 77.7, 17, 300 }, + [16] = { 47.8, 77.7, 17, 300 }, + [17] = { 45.6, 76.7, 17, 300 }, + [18] = { 49.9, 76.7, 17, 300 }, + [19] = { 43.6, 76.5, 17, 300 }, + [20] = { 49, 75, 17, 300 }, + [21] = { 46.7, 74.8, 17, 300 }, + [22] = { 48.3, 73.8, 17, 300 }, + [23] = { 44, 73.6, 17, 300 }, + [24] = { 46.9, 71.2, 17, 300 }, + [25] = { 45.4, 68.3, 17, 300 }, + [26] = { 45.2, 66, 17, 300 }, + [27] = { 47.8, 63.3, 17, 300 }, + [28] = { 49.4, 62.8, 17, 300 }, + [29] = { 43.5, 62, 17, 300 }, + [30] = { 45.1, 61.8, 17, 300 }, + [31] = { 46.6, 61.7, 17, 300 }, + [32] = { 49.3, 60.6, 17, 300 }, + [33] = { 42.1, 60.5, 17, 300 }, + [34] = { 43.8, 59.8, 17, 300 }, + [35] = { 46.7, 58.5, 17, 300 }, + [36] = { 49.5, 57.1, 17, 300 }, + [37] = { 41.6, 57, 17, 300 }, + [38] = { 44.6, 55.3, 17, 300 }, + [39] = { 46.9, 54.9, 17, 300 }, + [40] = { 49.8, 54.9, 17, 300 }, + [41] = { 46.9, 54.8, 17, 300 }, + [42] = { 62.6, 54, 17, 300 }, + [43] = { 43.2, 54, 17, 300 }, + [44] = { 47.8, 53.2, 17, 300 }, + [45] = { 50.3, 53.1, 17, 300 }, + [46] = { 51.6, 53, 17, 300 }, + [47] = { 57.5, 52.9, 17, 300 }, + [48] = { 45.4, 51.6, 17, 300 }, + [49] = { 59.2, 51.6, 17, 300 }, + [50] = { 62.2, 51.3, 17, 300 }, + [51] = { 52.9, 51, 17, 300 }, + [52] = { 50.3, 50.5, 17, 300 }, + [53] = { 60.8, 50.5, 17, 300 }, + [54] = { 57.5, 50.4, 17, 300 }, + [55] = { 55.2, 50, 17, 300 }, + [56] = { 44.6, 49.8, 17, 300 }, + [57] = { 58.9, 49.7, 17, 300 }, + [58] = { 62.7, 49.4, 17, 300 }, + [59] = { 47.8, 49, 17, 300 }, + [60] = { 61.3, 47.4, 17, 300 }, + [61] = { 52.3, 47.3, 17, 300 }, + [62] = { 64.3, 46.4, 17, 300 }, + [63] = { 63.4, 46.3, 17, 300 }, + [64] = { 45.2, 46, 17, 300 }, + [65] = { 49.1, 46, 17, 300 }, + [66] = { 54.4, 44.9, 17, 300 }, + [67] = { 61.8, 44.8, 17, 300 }, + [68] = { 54.7, 43.8, 17, 300 }, + [69] = { 63.2, 43.6, 17, 300 }, + [70] = { 53.6, 43.1, 17, 300 }, + [71] = { 56.3, 42, 17, 300 }, + [72] = { 61.4, 40.9, 17, 300 }, + [73] = { 54.8, 40.5, 17, 300 }, + [74] = { 59.4, 38.3, 17, 300 }, + [75] = { 43.1, 37.6, 17, 300 }, + [76] = { 56, 37.3, 17, 300 }, + [77] = { 59.1, 36.9, 17, 300 }, + [78] = { 45.5, 36.3, 17, 300 }, + [79] = { 46.4, 36.2, 17, 300 }, + [80] = { 64.4, 35, 17, 300 }, + [81] = { 56.5, 33.9, 17, 300 }, + [82] = { 43, 33.7, 17, 300 }, + [83] = { 59.3, 33.6, 17, 300 }, + [84] = { 64.1, 33.3, 17, 300 }, + [85] = { 40.5, 32.2, 17, 300 }, + [86] = { 45.3, 30.8, 17, 300 }, + [87] = { 55, 30.6, 17, 300 }, + [88] = { 62.8, 30.4, 17, 300 }, + [89] = { 38.9, 30.3, 17, 300 }, + [90] = { 60, 30.2, 17, 300 }, + [91] = { 42.1, 29, 17, 300 }, + [92] = { 40.3, 28.2, 17, 300 }, + [93] = { 62.7, 27.3, 17, 300 }, + [94] = { 43.7, 27.3, 17, 300 }, + [95] = { 37.3, 26.8, 17, 300 }, + [96] = { 54.2, 26.8, 17, 300 }, + [97] = { 43.9, 25.6, 17, 300 }, + [98] = { 57.6, 25.3, 17, 300 }, + [99] = { 45, 24.9, 17, 300 }, + [100] = { 41.6, 24.6, 17, 300 }, + [101] = { 53.2, 24.4, 17, 300 }, + [102] = { 61.1, 24.4, 17, 300 }, + [103] = { 55.8, 23.6, 17, 300 }, + [104] = { 44.3, 23.2, 17, 300 }, + [105] = { 45.6, 23.1, 17, 300 }, + [106] = { 40.8, 22, 17, 300 }, + [107] = { 45.5, 21.5, 17, 300 }, + [108] = { 42.8, 21.2, 17, 300 }, + [109] = { 40.2, 19.4, 17, 300 }, + [110] = { 40, 19, 17, 300 }, + [111] = { 41.6, 18.8, 17, 300 }, + [112] = { 38.6, 17.4, 17, 300 }, + [113] = { 44.6, 16.7, 17, 300 }, + [114] = { 40.2, 16, 17, 300 }, + [115] = { 56.8, 15.4, 17, 300 }, + [116] = { 40.5, 15.3, 17, 300 }, + [117] = { 43.3, 14.5, 17, 300 }, + [118] = { 42.7, 14.1, 17, 300 }, + [119] = { 39, 13.9, 17, 300 }, + [120] = { 53.8, 13.8, 17, 300 }, + [121] = { 60.5, 13.3, 17, 300 }, + [122] = { 38.3, 13, 17, 300 }, + [123] = { 62.3, 12.5, 17, 300 }, + [124] = { 55.5, 12.1, 17, 300 }, + [125] = { 39.3, 11.6, 17, 300 }, + [126] = { 61.1, 11.3, 17, 300 }, + [127] = { 60.4, 10.2, 17, 300 }, + [128] = { 53.8, 9.9, 17, 300 }, + [129] = { 48.9, 9.8, 17, 300 }, + [130] = { 56.8, 9.7, 17, 300 }, + [131] = { 55.4, 8.4, 17, 300 }, + [132] = { 62.2, 8.2, 17, 300 }, + [133] = { 58.5, 8.1, 17, 300 }, + [134] = { 60.1, 7.1, 17, 300 }, + [135] = { 56.8, 5.8, 17, 300 }, + [136] = { 62.1, 5.5, 17, 300 }, + [137] = { 61.5, 2.9, 17, 300 }, + [138] = { 71.8, 64.2, 215, 300 }, + [139] = { 71, 57.4, 215, 300 }, + [140] = { 92, 84.7, 331, 300 }, + }, + }, + [3730] = { + ["coords"] = { + [1] = { 26.5, 62, 15, 300 }, + [2] = { 26.3, 59.6, 15, 300 }, + [3] = { 25.8, 59.3, 15, 300 }, + [4] = { 26.9, 29.5, 15, 300 }, + [5] = { 31.7, 8, 15, 300 }, + [6] = { 33.2, 7.2, 15, 300 }, + [7] = { 45.5, 86.3, 17, 300 }, + [8] = { 49.2, 86.1, 17, 300 }, + [9] = { 46.5, 86.1, 17, 300 }, + [10] = { 48.6, 86, 17, 300 }, + [11] = { 49.1, 84.8, 17, 300 }, + [12] = { 48.9, 84.7, 17, 300 }, + [13] = { 43.6, 84.5, 17, 300 }, + [14] = { 44.7, 83.4, 17, 300 }, + [15] = { 45.4, 83, 17, 300 }, + [16] = { 42.1, 82.7, 17, 300 }, + [17] = { 41.4, 82, 17, 300 }, + [18] = { 44.8, 81.7, 17, 300 }, + [19] = { 40.4, 80.5, 17, 300 }, + [20] = { 43.9, 73.1, 17, 300 }, + [21] = { 43.3, 72.5, 17, 300 }, + [22] = { 42.2, 71.8, 17, 300 }, + [23] = { 48.2, 71.6, 17, 300 }, + [24] = { 48.7, 71.3, 17, 300 }, + [25] = { 45.1, 70.5, 17, 300 }, + [26] = { 43.9, 70.3, 17, 300 }, + [27] = { 47.4, 69.3, 17, 300 }, + [28] = { 48, 69.3, 17, 300 }, + [29] = { 49.4, 69.3, 17, 300 }, + [30] = { 43.2, 69, 17, 300 }, + [31] = { 45.4, 69, 17, 300 }, + [32] = { 42.5, 68.9, 17, 300 }, + [33] = { 44.5, 68.8, 17, 300 }, + [34] = { 43.8, 68.6, 17, 300 }, + [35] = { 41.7, 68.5, 17, 300 }, + [36] = { 50.6, 58.7, 17, 300 }, + [37] = { 47.8, 58.6, 17, 300 }, + [38] = { 51.9, 58.1, 17, 300 }, + [39] = { 52.7, 57.7, 17, 300 }, + [40] = { 62, 54.7, 17, 300 }, + [41] = { 57.3, 54.5, 17, 300 }, + [42] = { 61.4, 53.3, 17, 300 }, + [43] = { 54.4, 52.5, 17, 300 }, + [44] = { 41.6, 50.1, 17, 300 }, + [45] = { 58.1, 47.8, 17, 300 }, + [46] = { 41.9, 47.5, 17, 300 }, + [47] = { 61, 46.4, 17, 300 }, + [48] = { 59.4, 46.4, 17, 300 }, + [49] = { 41.1, 46.1, 17, 300 }, + [50] = { 62.1, 45.5, 17, 300 }, + [51] = { 43.3, 43.8, 17, 300 }, + [52] = { 48.8, 35, 17, 300 }, + [53] = { 47.2, 33.7, 17, 300 }, + [54] = { 46.3, 32.8, 17, 300 }, + [55] = { 49.2, 32.7, 17, 300 }, + [56] = { 47.9, 32.6, 17, 300 }, + [57] = { 47.5, 20.9, 17, 300 }, + [58] = { 49.4, 20, 17, 300 }, + [59] = { 47, 19.4, 17, 300 }, + [60] = { 47.9, 19.2, 17, 300 }, + [61] = { 46.6, 17.8, 17, 300 }, + [62] = { 48.4, 17.8, 17, 300 }, + [63] = { 58.3, 14.8, 17, 300 }, + [64] = { 38, 14.1, 17, 300 }, + [65] = { 57.1, 14, 17, 300 }, + [66] = { 58.1, 13.1, 17, 300 }, + [67] = { 57.1, 12.5, 17, 300 }, + [68] = { 59.1, 12.2, 17, 300 }, + [69] = { 38.3, 11.9, 17, 300 }, + [70] = { 58.4, 11.5, 17, 300 }, + [71] = { 39.6, 10.8, 17, 300 }, + [72] = { 61.5, 5.2, 17, 300 }, + [73] = { 62, 4.1, 17, 300 }, + [74] = { 60.9, 3.7, 17, 300 }, + [75] = { 72.6, 80.9, 215, 300 }, + [76] = { 71.1, 80, 215, 300 }, + [77] = { 91, 86.1, 331, 300 }, + }, + }, + [3737] = { + ["coords"] = { + [1] = { 55.6, 42.7, 17, 10 }, + }, + ["fac"] = "AH", + }, + [3740] = { + ["coords"] = { + [1] = { 56.6, 8.3, 17, 900 }, + }, + }, + [3743] = { + ["coords"] = { + [1] = { 55.6, 42.8, 17, 0 }, + [2] = { 55.6, 42.7, 17, 0 }, + }, + }, + [3760] = { + ["coords"] = { + [1] = { 62, 45.1, 17, 900 }, + }, + }, + [3761] = { + ["coords"] = { + [1] = { 61.4, 44.2, 17, 900 }, + }, + }, + [3763] = { + ["coords"] = { + [1] = { 44.5, 83, 17, 300 }, + [2] = { 42.7, 82.8, 17, 300 }, + [3] = { 44.3, 82.4, 17, 300 }, + [4] = { 41.9, 82, 17, 300 }, + [5] = { 41.8, 81.4, 17, 300 }, + [6] = { 41.2, 78.9, 17, 300 }, + [7] = { 41.9, 78.6, 17, 300 }, + [8] = { 42, 78.2, 17, 300 }, + [9] = { 51.5, 58, 17, 300 }, + [10] = { 50.9, 57.7, 17, 300 }, + [11] = { 51.1, 57, 17, 300 }, + [12] = { 42.8, 55, 17, 300 }, + [13] = { 53.5, 54.7, 17, 300 }, + [14] = { 43.1, 54.5, 17, 300 }, + [15] = { 53.8, 54.3, 17, 300 }, + [16] = { 53.7, 53.4, 17, 300 }, + [17] = { 53.5, 53, 17, 300 }, + [18] = { 52.4, 52.9, 17, 300 }, + [19] = { 52.7, 52.3, 17, 300 }, + [20] = { 43.1, 52, 17, 300 }, + [21] = { 52.7, 51.6, 17, 300 }, + [22] = { 45.2, 51.2, 17, 300 }, + [23] = { 44.4, 50.9, 17, 300 }, + [24] = { 40.3, 45.5, 17, 300 }, + [25] = { 40.9, 44.5, 17, 300 }, + [26] = { 55.8, 43.1, 17, 300 }, + [27] = { 55.5, 42.4, 17, 300 }, + [28] = { 46.7, 39.7, 17, 300 }, + [29] = { 46.2, 39, 17, 300 }, + [30] = { 58.9, 27.7, 17, 300 }, + [31] = { 55.3, 27.3, 17, 300 }, + [32] = { 58.9, 27.2, 17, 300 }, + [33] = { 58.1, 26.8, 17, 300 }, + [34] = { 55.8, 26, 17, 300 }, + [35] = { 56.7, 25.7, 17, 300 }, + [36] = { 57.4, 25.6, 17, 300 }, + [37] = { 54.4, 25.4, 17, 300 }, + [38] = { 59.3, 24.8, 17, 300 }, + [39] = { 44.9, 23.1, 17, 300 }, + [40] = { 45.1, 22.5, 17, 300 }, + [41] = { 39.8, 19.4, 17, 300 }, + [42] = { 42.1, 18.9, 17, 300 }, + [43] = { 40, 14.5, 17, 300 }, + [44] = { 41.1, 14, 17, 300 }, + [45] = { 42, 13.5, 17, 300 }, + }, + }, + [3764] = { + ["coords"] = { + [1] = { 43.4, 84.2, 17, 300 }, + [2] = { 43.2, 83.5, 17, 300 }, + [3] = { 42.5, 83.3, 17, 300 }, + [4] = { 41.2, 81.5, 17, 300 }, + [5] = { 40.4, 80.3, 17, 300 }, + [6] = { 40.7, 79.2, 17, 300 }, + [7] = { 42.6, 78, 17, 300 }, + [8] = { 51.7, 58.1, 17, 300 }, + [9] = { 50.6, 58.1, 17, 300 }, + [10] = { 50.6, 57.6, 17, 300 }, + [11] = { 50.9, 57.4, 17, 300 }, + [12] = { 53.5, 55.2, 17, 300 }, + [13] = { 43, 54.8, 17, 300 }, + [14] = { 51.4, 54.7, 17, 300 }, + [15] = { 45.1, 54.4, 17, 300 }, + [16] = { 53.5, 54.4, 17, 300 }, + [17] = { 53.7, 54.1, 17, 300 }, + [18] = { 52.4, 52.6, 17, 300 }, + [19] = { 52.6, 51.8, 17, 300 }, + [20] = { 44.5, 51.3, 17, 300 }, + [21] = { 44.9, 51.2, 17, 300 }, + [22] = { 40.6, 45.7, 17, 300 }, + [23] = { 40.8, 44.9, 17, 300 }, + [24] = { 57.1, 43.6, 17, 300 }, + [25] = { 55.9, 43.3, 17, 300 }, + [26] = { 55.3, 43, 17, 300 }, + [27] = { 55.4, 42, 17, 300 }, + [28] = { 46.4, 40, 17, 300 }, + [29] = { 47.4, 40, 17, 300 }, + [30] = { 46.1, 39.4, 17, 300 }, + [31] = { 46.4, 38.9, 17, 300 }, + [32] = { 46.2, 37.6, 17, 300 }, + [33] = { 55.4, 27.7, 17, 300 }, + [34] = { 58.3, 27.1, 17, 300 }, + [35] = { 59.4, 24.4, 17, 300 }, + [36] = { 45, 23.6, 17, 300 }, + [37] = { 44.7, 23.5, 17, 300 }, + [38] = { 45.2, 22.7, 17, 300 }, + [39] = { 44.9, 22.5, 17, 300 }, + [40] = { 45.3, 22.3, 17, 300 }, + [41] = { 38, 16.9, 17, 300 }, + [42] = { 36.7, 15.8, 17, 300 }, + [43] = { 37.6, 14.8, 17, 300 }, + [44] = { 38.5, 14.3, 17, 300 }, + [45] = { 38, 13, 17, 300 }, + [46] = { 39.8, 12.1, 17, 300 }, + [47] = { 38.9, 10.8, 17, 300 }, + [48] = { 60.1, 3.9, 17, 300 }, + [49] = { 60.4, 3.7, 17, 300 }, + [50] = { 59.6, 3.7, 17, 300 }, + [51] = { 89.6, 86.4, 331, 300 }, + [52] = { 90.1, 86.1, 331, 300 }, + [53] = { 88.7, 86.1, 331, 300 }, + }, + }, + [3767] = { + ["coords"] = { + [1] = { 62.6, 49.6, 17, 10 }, + }, + }, + [3768] = { + ["coords"] = { + [1] = { 63.6, 49.3, 17, 10 }, + }, + }, + [3769] = { + ["coords"] = { + [1] = { 10.3, 58.4, 11, 7200 }, + [2] = { 24.6, 71.2, 12, 900 }, + [3] = { 68.6, 48.6, 15, 900 }, + }, + }, + [3770] = { + ["coords"] = { + [1] = { 35.6, 55.8, 36, 7200 }, + [2] = { 65.1, 23.2, 130, 7200 }, + }, + }, + [3771] = { + ["coords"] = {}, + }, + [3772] = { + ["coords"] = { + [1] = { 66, 22.7, 4, 900 }, + [2] = { 63.7, 14.8, 4, 900 }, + }, + }, + [3797] = { + ["coords"] = { + [1] = { 82.2, 59.3, 10, 3600 }, + [2] = { 69.3, 57.5, 10, 3600 }, + [3] = { 77.8, 51.9, 10, 3600 }, + [4] = { 77.3, 49.1, 10, 3600 }, + [5] = { 79.8, 48.4, 10, 3600 }, + [6] = { 79.2, 44, 10, 3600 }, + [7] = { 55.7, 26.1, 15, 900 }, + [8] = { 43.3, 20.5, 33, 900 }, + [9] = { 45.3, 11.5, 33, 900 }, + [10] = { 45, 8.2, 33, 900 }, + [11] = { 32.5, 66.4, 85, 900 }, + [12] = { 59.4, 52.5, 85, 900 }, + [13] = { 45.5, 75.6, 130, 7200 }, + [14] = { 46.1, 75.3, 130, 7200 }, + [15] = { 44.8, 75.2, 130, 7200 }, + [16] = { 43.9, 74.1, 130, 7200 }, + [17] = { 48.1, 73.6, 130, 7200 }, + [18] = { 45.9, 72.3, 130, 7200 }, + [19] = { 44.5, 72.1, 130, 7200 }, + [20] = { 45.6, 71.4, 130, 7200 }, + [21] = { 47, 71.1, 130, 7200 }, + [22] = { 62.9, 67.2, 130, 7200 }, + [23] = { 63, 62.1, 130, 7200 }, + [24] = { 44.7, 38.9, 130, 7200 }, + [25] = { 56.1, 9, 130, 7200 }, + [26] = { 8.1, 28.8, 267, 7200 }, + [27] = { 8.2, 22.1, 267, 7200 }, + [28] = { 57.8, 58.4, 3358, 180 }, + }, + }, + [3798] = { + ["coords"] = { + [1] = { 82.1, 59.4, 10, 3600 }, + [2] = { 69.3, 57.5, 10, 3600 }, + [3] = { 77.8, 52, 10, 3600 }, + [4] = { 77.3, 49.1, 10, 3600 }, + [5] = { 79.7, 48.4, 10, 3600 }, + [6] = { 79.2, 44, 10, 3600 }, + [7] = { 55.7, 26.1, 15, 900 }, + [8] = { 43.3, 20.5, 33, 900 }, + [9] = { 45.3, 11.5, 33, 900 }, + [10] = { 45, 8.2, 33, 900 }, + [11] = { 32.5, 66.4, 85, 900 }, + [12] = { 59.4, 52.5, 85, 900 }, + [13] = { 45.4, 75.6, 130, 7200 }, + [14] = { 46.1, 75.3, 130, 7200 }, + [15] = { 44.8, 75.1, 130, 7200 }, + [16] = { 43.9, 74.1, 130, 7200 }, + [17] = { 48.1, 73.6, 130, 7200 }, + [18] = { 45.9, 72.3, 130, 7200 }, + [19] = { 44.5, 72.1, 130, 7200 }, + [20] = { 45.6, 71.3, 130, 7200 }, + [21] = { 47, 71.1, 130, 7200 }, + [22] = { 62.9, 67.2, 130, 7200 }, + [23] = { 63, 62.1, 130, 7200 }, + [24] = { 44.7, 38.9, 130, 7200 }, + [25] = { 56.1, 8.9, 130, 7200 }, + [26] = { 8.1, 28.8, 267, 7200 }, + [27] = { 8.3, 22.1, 267, 7200 }, + [28] = { 57.9, 58.4, 3358, 180 }, + }, + }, + [3799] = { + ["coords"] = { + [1] = { 12, 59, 11, 900 }, + [2] = { 12.2, 57.9, 11, 900 }, + [3] = { 8.2, 55.2, 11, 900 }, + [4] = { 43.2, 89.9, 12, 180 }, + [5] = { 48, 86.8, 12, 900 }, + [6] = { 35.2, 83.8, 12, 900 }, + [7] = { 71.2, 80.9, 12, 900 }, + [8] = { 79.1, 69.2, 12, 900 }, + [9] = { 78.4, 67.1, 12, 900 }, + [10] = { 83.4, 66.9, 12, 900 }, + [11] = { 30.6, 64.6, 12, 900 }, + [12] = { 35.9, 59.1, 12, 900 }, + [13] = { 33.8, 57.4, 12, 900 }, + [14] = { 44, 53.5, 12, 900 }, + [15] = { 39.9, 48.1, 12, 180 }, + [16] = { 63.9, 47.5, 15, 900 }, + [17] = { 37, 44.5, 267, 900 }, + [18] = { 36.9, 39.5, 267, 900 }, + }, + }, + [3800] = { + ["coords"] = { + [1] = { 12, 58.9, 11, 900 }, + [2] = { 12.2, 57.9, 11, 900 }, + [3] = { 8.2, 55.2, 11, 900 }, + [4] = { 43.2, 89.9, 12, 180 }, + [5] = { 47.9, 86.8, 12, 900 }, + [6] = { 35.1, 83.8, 12, 900 }, + [7] = { 71.2, 80.9, 12, 900 }, + [8] = { 79.1, 69.2, 12, 900 }, + [9] = { 78.4, 67.2, 12, 900 }, + [10] = { 83.4, 66.9, 12, 900 }, + [11] = { 30.6, 64.6, 12, 900 }, + [12] = { 35.9, 59.1, 12, 900 }, + [13] = { 33.8, 57.4, 12, 900 }, + [14] = { 44, 53.5, 12, 900 }, + [15] = { 39.9, 48.1, 12, 180 }, + [16] = { 63.9, 47.5, 15, 900 }, + [17] = { 37, 44.5, 267, 900 }, + [18] = { 36.9, 39.5, 267, 900 }, + }, + }, + [3801] = { + ["coords"] = { + [1] = { 32.4, 33.1, 36, 7200 }, + [2] = { 21.1, 45.6, 44, 7200 }, + [3] = { 25.3, 40.9, 44, 7200 }, + [4] = { 23.7, 40.9, 44, 7200 }, + }, + }, + [3802] = { + ["coords"] = { + [1] = { 32.5, 33, 36, 7200 }, + [2] = { 21.1, 45.7, 44, 7200 }, + [3] = { 23.6, 40.9, 44, 7200 }, + [4] = { 25.3, 40.9, 44, 7200 }, + }, + }, + [3803] = { + ["coords"] = { + [1] = { 42.9, 88.3, 40, 3600 }, + [2] = { 49.3, 18.9, 40, 3600 }, + [3] = { 48.6, 57.1, 267, 7200 }, + [4] = { 51.1, 57, 267, 7200 }, + }, + }, + [3804] = { + ["coords"] = { + [1] = { 42.9, 88.3, 40, 3600 }, + [2] = { 49.3, 18.9, 40, 3600 }, + [3] = { 48.6, 57.2, 267, 7200 }, + [4] = { 51.1, 57, 267, 7200 }, + }, + }, + [3815] = { + ["coords"] = { + [1] = { 45, 15.2, 28, 1200 }, + [2] = { 39.1, 14.8, 36, 7200 }, + [3] = { 22.5, 43.6, 44, 7200 }, + }, + }, + [3816] = { + ["coords"] = { + [1] = { 45.1, 15.2, 28, 1200 }, + [2] = { 39.1, 14.8, 36, 7200 }, + [3] = { 22.5, 43.6, 44, 7200 }, + }, + }, + [3817] = { + ["coords"] = { + [1] = { 45, 15.2, 28, 1200 }, + [2] = { 39.1, 14.8, 36, 7200 }, + [3] = { 22.5, 43.6, 44, 7200 }, + }, + }, + [3818] = { + ["coords"] = { + [1] = { 45, 15.3, 28, 1200 }, + [2] = { 39.1, 14.8, 36, 7200 }, + [3] = { 22.5, 43.6, 44, 7200 }, + }, + }, + [3819] = { + ["coords"] = { + [1] = { 45, 15.2, 28, 1200 }, + [2] = { 39.1, 14.8, 36, 7200 }, + [3] = { 22.5, 43.6, 44, 7200 }, + }, + }, + [3832] = { + ["coords"] = { + [1] = { 47.7, 82.2, 2597, 60 }, + }, + }, + [3833] = { + ["coords"] = { + [1] = { 48, 82.6, 2597, 60 }, + }, + }, + [3834] = { + ["coords"] = { + [1] = { 47.8, 82.6, 2597, 60 }, + }, + }, + [3835] = { + ["coords"] = { + [1] = { 48.2, 82.2, 2597, 60 }, + }, + }, + [3836] = { + ["coords"] = { + [1] = { 47.9, 83, 2597, 60 }, + }, + }, + [3837] = { + ["coords"] = { + [1] = { 47.8, 82.6, 2597, 60 }, + }, + }, + [3838] = { + ["coords"] = { + [1] = { 48, 82.7, 2597, 60 }, + }, + }, + [3839] = { + ["coords"] = { + [1] = { 47.9, 54.3, 8, 600 }, + }, + }, + [3840] = { + ["coords"] = { + [1] = { 48.2, 55, 8, 600 }, + }, + }, + [3841] = { + ["coords"] = { + [1] = { 48, 55.5, 8, 600 }, + }, + }, + [3842] = { + ["coords"] = { + [1] = { 48.5, 55.7, 8, 600 }, + }, + }, + [3843] = { + ["coords"] = { + [1] = { 48, 55.5, 8, 600 }, + }, + }, + [3844] = { + ["coords"] = { + [1] = { 48.3, 55, 8, 600 }, + }, + }, + [3845] = { + ["coords"] = { + [1] = { 47.4, 55.3, 8, 600 }, + }, + }, + [3847] = { + ["coords"] = { + [1] = { 54.1, 42.1, 14, 900 }, + }, + }, + [3848] = { + ["coords"] = { + [1] = { 54.3, 42.5, 14, 900 }, + }, + }, + [3849] = { + ["coords"] = { + [1] = { 54.2, 42.8, 14, 900 }, + }, + }, + [3850] = { + ["coords"] = { + [1] = { 53.9, 42.7, 14, 900 }, + }, + }, + [3851] = { + ["coords"] = { + [1] = { 53.8, 42.4, 14, 900 }, + }, + }, + [3852] = { + ["coords"] = { + [1] = { 52.8, 28.5, 405, 900 }, + }, + }, + [3853] = { + ["coords"] = { + [1] = { 53, 29.2, 405, 900 }, + }, + }, + [3855] = { + ["coords"] = { + [1] = { 52.6, 29.2, 405, 900 }, + }, + }, + [3856] = { + ["coords"] = { + [1] = { 53.1, 28.8, 405, 900 }, + }, + }, + [3857] = { + ["coords"] = { + [1] = { 52.5, 28.9, 405, 900 }, + }, + }, + [3888] = { + ["coords"] = { + [1] = { 55.7, 27, 405, 900 }, + }, + }, + [3890] = { + ["coords"] = { + [1] = { 54.3, 26.9, 405, 900 }, + }, + }, + [3891] = { + ["coords"] = { + [1] = { 55.8, 26.8, 405, 900 }, + }, + }, + [3892] = { + ["coords"] = { + [1] = { 55.3, 26.9, 405, 900 }, + }, + }, + [3893] = { + ["coords"] = { + [1] = { 55.1, 26.9, 405, 900 }, + }, + }, + [3894] = { + ["coords"] = { + [1] = { 55.2, 25.5, 405, 900 }, + }, + }, + [3895] = { + ["coords"] = { + [1] = { 54.2, 26.3, 405, 900 }, + }, + }, + [3896] = { + ["coords"] = { + [1] = { 54.1, 26.5, 405, 900 }, + }, + }, + [3897] = { + ["coords"] = { + [1] = { 54.7, 27.9, 405, 900 }, + }, + }, + [3898] = { + ["coords"] = { + [1] = { 54.9, 25.8, 405, 900 }, + }, + }, + [3899] = { + ["coords"] = { + [1] = { 54.6, 27.5, 405, 900 }, + }, + }, + [3900] = { + ["coords"] = { + [1] = { 55.6, 26.4, 405, 900 }, + }, + }, + [3901] = { + ["coords"] = { + [1] = { 55, 25.4, 405, 900 }, + }, + }, + [3902] = { + ["coords"] = { + [1] = { 54.9, 26.1, 405, 900 }, + }, + }, + [3903] = { + ["coords"] = { + [1] = { 54.6, 26.5, 405, 900 }, + }, + }, + [3904] = { + ["coords"] = { + [1] = { 55, 27.2, 405, 900 }, + }, + }, + [3905] = { + ["coords"] = { + [1] = { 55.3, 27.4, 405, 900 }, + }, + }, + [3906] = { + ["coords"] = { + [1] = { 55.5, 27.2, 405, 900 }, + }, + }, + [3907] = { + ["coords"] = { + [1] = { 54.5, 26.2, 405, 900 }, + }, + }, + [3908] = { + ["coords"] = { + [1] = { 55.4, 25.9, 405, 900 }, + }, + }, + [3909] = { + ["coords"] = { + [1] = { 54.9, 26.4, 405, 900 }, + }, + }, + [3910] = { + ["coords"] = { + [1] = { 54.6, 25.9, 405, 900 }, + }, + }, + [3911] = { + ["coords"] = { + [1] = { 55.1, 27.5, 405, 900 }, + }, + }, + [3936] = { + ["coords"] = { + [1] = { 55.8, 54.4, 46, 7200 }, + }, + }, + [3937] = { + ["coords"] = { + [1] = { 55.3, 54.4, 46, 7200 }, + }, + }, + [3938] = { + ["coords"] = { + [1] = { 55.3, 54.6, 46, 7200 }, + }, + }, + [3939] = { + ["coords"] = { + [1] = { 55.4, 53.8, 46, 7200 }, + }, + }, + [3940] = { + ["coords"] = { + [1] = { 55.1, 54.1, 46, 7200 }, + }, + }, + [3941] = { + ["coords"] = { + [1] = { 55.8, 53.8, 46, 7200 }, + }, + }, + [3942] = { + ["coords"] = { + [1] = { 55.6, 54.8, 46, 7200 }, + }, + }, + [3943] = { + ["coords"] = { + [1] = { 55.6, 53.8, 46, 7200 }, + }, + }, + [3944] = { + ["coords"] = { + [1] = { 80.7, 76.3, 405, 900 }, + }, + }, + [3945] = { + ["coords"] = { + [1] = { 81.1, 76.5, 405, 900 }, + }, + }, + [3946] = { + ["coords"] = { + [1] = { 28.2, 45.4, 215, 900 }, + [2] = { 80.9, 76.1, 405, 900 }, + }, + }, + [3947] = { + ["coords"] = { + [1] = { 81.1, 76.4, 405, 900 }, + }, + }, + [3948] = { + ["coords"] = { + [1] = { 80.9, 76.8, 405, 900 }, + }, + }, + [3949] = { + ["coords"] = { + [1] = { 80.7, 76.7, 405, 900 }, + }, + }, + [3950] = { + ["coords"] = { + [1] = { 81.1, 76.7, 405, 900 }, + }, + }, + [3951] = { + ["coords"] = { + [1] = { 80.8, 76.7, 405, 900 }, + }, + }, + [3960] = { + ["coords"] = { + [1] = { 3, 45.8, 3, 900 }, + [2] = { 82.1, 36.9, 51, 900 }, + }, + }, + [3962] = { + ["coords"] = { + [1] = { 44.8, 57.1, 8, 600 }, + }, + }, + [3963] = { + ["coords"] = { + [1] = { 45.3, 28.3, 17, 900 }, + }, + }, + [3964] = { + ["coords"] = { + [1] = { 45.3, 28.5, 17, 900 }, + }, + }, + [3967] = { + ["coords"] = { + [1] = { 42.2, 55.8, 8, 900 }, + [2] = { 42.3, 52.7, 8, 600 }, + }, + }, + [3968] = { + ["coords"] = { + [1] = { 42.1, 56.9, 8, 900 }, + [2] = { 42.2, 53.8, 8, 600 }, + }, + }, + [3972] = { + ["coords"] = { + [1] = { 62.6, 37.5, 17, 10 }, + }, + }, + [4004] = { + ["coords"] = { + [1] = { 48.9, 47, 490, 120 }, + }, + }, + [4005] = { + ["coords"] = {}, + }, + [4072] = { + ["coords"] = { + [1] = { 52.3, 11.6, 17, 10 }, + }, + }, + [4087] = { + ["coords"] = { + [1] = { 11.5, 59.4, 11, 900 }, + [2] = { 41.6, 65.9, 12, 900 }, + [3] = { 64.8, 50.2, 15, 900 }, + [4] = { 32.3, 45.5, 267, 900 }, + }, + }, + [4088] = { + ["coords"] = { + [1] = { 11.5, 59.9, 11, 900 }, + [2] = { 41.4, 65.5, 12, 900 }, + [3] = { 64.6, 50.4, 15, 900 }, + [4] = { 31.9, 45.6, 267, 900 }, + }, + }, + [4089] = { + ["coords"] = { + [1] = { 11.6, 59.9, 11, 900 }, + [2] = { 41.3, 65.7, 12, 900 }, + [3] = { 64.6, 50.5, 15, 900 }, + [4] = { 31.9, 45.8, 267, 900 }, + }, + }, + [4090] = { + ["coords"] = { + [1] = { 11.5, 59.7, 11, 900 }, + [2] = { 41.5, 65.7, 12, 900 }, + [3] = { 64.7, 50.3, 15, 900 }, + [4] = { 32.1, 45.6, 267, 900 }, + }, + }, + [4095] = { + ["coords"] = {}, + }, + [4096] = { + ["coords"] = { + [1] = { 10.5, 51, 45, 300 }, + [2] = { 8.5, 48.5, 45, 300 }, + [3] = { 10, 48.2, 45, 300 }, + [4] = { 72.3, 82.4, 267, 300 }, + [5] = { 70, 79.5, 267, 300 }, + [6] = { 71.6, 79.2, 267, 300 }, + [7] = { 26.5, 59.6, 267, 300 }, + [8] = { 31.5, 58.3, 267, 300 }, + [9] = { 31.3, 56.3, 267, 300 }, + [10] = { 29.2, 52.6, 267, 300 }, + }, + }, + [4097] = { + ["coords"] = { + [1] = { 52.2, 30.6, 17, 900 }, + }, + }, + [4098] = { + ["coords"] = { + [1] = { 52.2, 30.5, 17, 900 }, + }, + }, + [4099] = { + ["coords"] = { + [1] = { 52.2, 30.6, 17, 900 }, + }, + }, + [4100] = { + ["coords"] = { + [1] = { 52.2, 30.6, 17, 900 }, + }, + }, + [4101] = { + ["coords"] = { + [1] = { 62.2, 38, 17, 900 }, + }, + }, + [4102] = { + ["coords"] = { + [1] = { 41.4, 31.8, 17, 900 }, + }, + }, + [4103] = { + ["coords"] = { + [1] = { 41.4, 31.8, 17, 900 }, + }, + }, + [4104] = { + ["coords"] = { + [1] = { 52.2, 30.5, 17, 900 }, + }, + }, + [4105] = { + ["coords"] = { + [1] = { 52.2, 30.6, 17, 900 }, + }, + }, + [4106] = { + ["coords"] = { + [1] = { 52.2, 30.6, 17, 900 }, + }, + }, + [4115] = { + ["coords"] = { + [1] = { 47.3, 57.7, 17, 900 }, + }, + }, + [4116] = { + ["coords"] = { + [1] = { 47.3, 57.7, 17, 900 }, + }, + }, + [4117] = { + ["coords"] = { + [1] = { 47.3, 57.7, 17, 900 }, + }, + }, + [4118] = { + ["coords"] = { + [1] = { 47.3, 57.7, 17, 900 }, + }, + }, + [4119] = { + ["coords"] = { + [1] = { 47.3, 57.7, 17, 900 }, + }, + }, + [4120] = { + ["coords"] = { + [1] = { 46.1, 75.3, 17, 900 }, + }, + }, + [4121] = { + ["coords"] = { + [1] = { 46.1, 75.3, 17, 900 }, + }, + }, + [4122] = { + ["coords"] = { + [1] = { 46.1, 75.4, 17, 900 }, + }, + }, + [4123] = { + ["coords"] = { + [1] = { 46.1, 75.3, 17, 900 }, + }, + }, + [4132] = { + ["coords"] = { + [1] = { 52.6, 23.2, 17, 900 }, + }, + }, + [4133] = { + ["coords"] = { + [1] = { 52.6, 23.2, 17, 900 }, + }, + }, + [4134] = { + ["coords"] = { + [1] = { 52.6, 23.2, 17, 900 }, + }, + }, + [4135] = { + ["coords"] = { + [1] = { 61.4, 19.2, 17, 900 }, + }, + }, + [4136] = { + ["coords"] = { + [1] = { 61.4, 19.2, 17, 900 }, + }, + }, + [4137] = { + ["coords"] = { + [1] = { 61.4, 19.2, 17, 900 }, + }, + }, + [4138] = { + ["coords"] = { + [1] = { 52.6, 23.2, 17, 900 }, + }, + }, + [4141] = { + ["coords"] = { + [1] = { 52.4, 11.6, 17, 10 }, + }, + ["fac"] = "AH", + }, + [4149] = { + ["coords"] = { + [1] = { 7.6, 96.1, 3, 300 }, + [2] = { 9.6, 93.4, 3, 300 }, + [3] = { 6.4, 90.3, 3, 300 }, + [4] = { 73.8, 14.8, 4, 300 }, + [5] = { 72.8, 13.8, 4, 300 }, + [6] = { 71.3, 13.3, 4, 300 }, + [7] = { 82.8, 93.7, 8, 300 }, + [8] = { 86.5, 84.1, 8, 300 }, + [9] = { 64.9, 83.5, 8, 300 }, + [10] = { 63.6, 82, 8, 300 }, + [11] = { 61.4, 81.2, 8, 300 }, + [12] = { 89.1, 78.4, 8, 300 }, + [13] = { 92.2, 68.1, 8, 300 }, + [14] = { 56.9, 61.1, 8, 300 }, + [15] = { 94.9, 60.8, 8, 300 }, + [16] = { 94.5, 52.7, 8, 300 }, + [17] = { 94.9, 50.8, 8, 300 }, + [18] = { 91.1, 27.2, 8, 300 }, + [19] = { 56.9, 87.6, 15, 300 }, + [20] = { 53.4, 73.5, 15, 300 }, + [21] = { 37.8, 69.6, 15, 300 }, + [22] = { 59.9, 68.9, 15, 300 }, + [23] = { 37.7, 67.6, 15, 300 }, + [24] = { 44.9, 66.9, 15, 300 }, + [25] = { 45, 65.4, 15, 300 }, + [26] = { 44.1, 64.9, 15, 300 }, + [27] = { 38.7, 64.6, 15, 300 }, + [28] = { 55.6, 63.9, 15, 300 }, + [29] = { 56, 63.2, 15, 300 }, + [30] = { 56.1, 62.8, 15, 300 }, + [31] = { 55.5, 62.6, 15, 300 }, + [32] = { 58.8, 46.2, 15, 300 }, + [33] = { 58.8, 45.7, 15, 300 }, + [34] = { 55.1, 90, 17, 300 }, + [35] = { 55, 89, 17, 300 }, + [36] = { 29.4, 89.6, 33, 300 }, + [37] = { 30.7, 89.5, 33, 300 }, + [38] = { 33.7, 88.2, 33, 300 }, + [39] = { 33.4, 88.2, 33, 300 }, + [40] = { 30, 87.1, 33, 300 }, + [41] = { 33.7, 86.7, 33, 300 }, + [42] = { 40.7, 85.7, 33, 300 }, + [43] = { 27.2, 82.7, 33, 300 }, + [44] = { 38, 82.3, 33, 300 }, + [45] = { 40.5, 80.9, 33, 300 }, + [46] = { 38.6, 80.5, 33, 300 }, + [47] = { 27.3, 69.5, 33, 300 }, + [48] = { 28.1, 63.6, 33, 300 }, + [49] = { 27.7, 62.4, 33, 300 }, + [50] = { 39.2, 58.7, 33, 300 }, + [51] = { 39.9, 57.7, 33, 300 }, + [52] = { 34.6, 51.5, 33, 300 }, + [53] = { 35.2, 50.8, 33, 300 }, + [54] = { 41.5, 49.6, 33, 300 }, + [55] = { 43.4, 49, 33, 300 }, + [56] = { 43.4, 47.3, 33, 300 }, + [57] = { 42.2, 46.4, 33, 300 }, + [58] = { 42.1, 44.5, 33, 300 }, + [59] = { 45.8, 42.8, 33, 300 }, + [60] = { 47.7, 42.4, 33, 300 }, + [61] = { 44.8, 41.6, 33, 300 }, + [62] = { 50.5, 30.7, 33, 300 }, + [63] = { 51.8, 27.7, 33, 300 }, + [64] = { 68.3, 23.2, 46, 300 }, + [65] = { 70, 20.8, 46, 300 }, + [66] = { 32.2, 75.7, 47, 300 }, + [67] = { 37.2, 72.1, 47, 300 }, + [68] = { 47.5, 69.1, 47, 300 }, + [69] = { 49.3, 68.6, 47, 300 }, + [70] = { 31.6, 67.6, 47, 300 }, + [71] = { 25.4, 66.9, 47, 300 }, + [72] = { 40.2, 66.2, 47, 300 }, + [73] = { 41.2, 59.4, 47, 300 }, + [74] = { 23.5, 58.8, 47, 300 }, + [75] = { 32.1, 58.7, 47, 300 }, + [76] = { 44.3, 62.8, 51, 300 }, + [77] = { 62.3, 62.6, 51, 300 }, + [78] = { 35.9, 58.8, 51, 300 }, + [79] = { 48.9, 55.1, 51, 300 }, + [80] = { 44.8, 52, 51, 300 }, + [81] = { 37.6, 49.2, 51, 300 }, + [82] = { 40.1, 41.5, 51, 300 }, + [83] = { 37.9, 39, 51, 300 }, + [84] = { 45.5, 38.8, 51, 300 }, + [85] = { 17.6, 38.1, 51, 300 }, + [86] = { 44.3, 33.8, 51, 300 }, + [87] = { 46.8, 24.9, 51, 300 }, + [88] = { 28.7, 24.8, 51, 300 }, + [89] = { 25.9, 24.7, 51, 300 }, + [90] = { 41.7, 21.1, 51, 300 }, + [91] = { 64, 40.1, 440, 300 }, + [92] = { 65, 39.8, 440, 300 }, + [93] = { 58.7, 39.4, 440, 300 }, + [94] = { 60.8, 39.1, 440, 300 }, + [95] = { 65.4, 36.4, 440, 300 }, + [96] = { 58.7, 36.4, 440, 300 }, + [97] = { 63.3, 33.5, 440, 300 }, + [98] = { 65.4, 32.8, 440, 300 }, + [99] = { 60.7, 32.7, 440, 300 }, + [100] = { 62.7, 30.5, 440, 300 }, + [101] = { 63.8, 29.1, 440, 300 }, + [102] = { 40, 28.7, 440, 300 }, + [103] = { 37.5, 24.3, 440, 300 }, + [104] = { 42.2, 22.6, 440, 300 }, + }, + }, + [4166] = { + ["coords"] = { + [1] = { 51.5, 30.2, 17, 900 }, + }, + }, + [4170] = { + ["coords"] = { + [1] = { 36.2, 29.6, 215, 900 }, + [2] = { 31.3, 62.7, 1638, 900 }, + }, + }, + [4171] = { + ["coords"] = { + [1] = { 36.3, 30.2, 215, 900 }, + [2] = { 31.7, 65.9, 1638, 900 }, + }, + }, + [4406] = { + ["coords"] = { + [1] = { 56.8, 26.6, 141, 300 }, + [2] = { 56.7, 26.5, 141, 300 }, + [3] = { 56.9, 26.5, 141, 300 }, + [4] = { 57, 26.5, 141, 300 }, + [5] = { 56.8, 26.5, 141, 300 }, + }, + ["fac"] = "AH", + }, + [4608] = { + ["coords"] = { + [1] = { 52.3, 74, 141, 180 }, + [2] = { 50.5, 73.9, 141, 180 }, + [3] = { 51.4, 73.2, 141, 180 }, + [4] = { 52.7, 73, 141, 180 }, + [5] = { 58.1, 72.9, 141, 180 }, + [6] = { 58.7, 72.8, 141, 180 }, + [7] = { 50, 72.6, 141, 180 }, + [8] = { 59.5, 72.3, 141, 180 }, + [9] = { 60.1, 72.1, 141, 180 }, + [10] = { 50.1, 72, 141, 180 }, + [11] = { 58.6, 72, 141, 180 }, + [12] = { 52.9, 71.4, 141, 180 }, + [13] = { 59.6, 71.3, 141, 180 }, + [14] = { 57.7, 71, 141, 180 }, + [15] = { 58.3, 71, 141, 180 }, + [16] = { 60.7, 70.9, 141, 180 }, + [17] = { 50.9, 70.8, 141, 180 }, + [18] = { 60.1, 70.5, 141, 180 }, + [19] = { 55.5, 70.5, 141, 180 }, + [20] = { 53.5, 70.4, 141, 180 }, + [21] = { 54, 70.3, 141, 180 }, + [22] = { 57.1, 70.2, 141, 180 }, + [23] = { 61.2, 69.9, 141, 180 }, + [24] = { 55.1, 69.9, 141, 180 }, + [25] = { 55.5, 69.9, 141, 180 }, + [26] = { 60.1, 69.7, 141, 180 }, + [27] = { 51.7, 69.7, 141, 180 }, + [28] = { 57.5, 69.4, 141, 180 }, + [29] = { 59.6, 69.3, 141, 180 }, + [30] = { 52.5, 69.2, 141, 180 }, + [31] = { 53.7, 68.9, 141, 180 }, + [32] = { 52.9, 68.9, 141, 180 }, + [33] = { 61.6, 68.9, 141, 180 }, + [34] = { 62.2, 68.5, 141, 180 }, + [35] = { 55.4, 68.2, 141, 180 }, + [36] = { 56.1, 68.1, 141, 180 }, + [37] = { 60.4, 67.3, 141, 180 }, + [38] = { 55, 67.1, 141, 180 }, + [39] = { 61.3, 66.9, 141, 180 }, + [40] = { 55.9, 66.9, 141, 180 }, + [41] = { 56.3, 66.4, 141, 180 }, + [42] = { 55.1, 66, 141, 180 }, + [43] = { 60.1, 66, 141, 180 }, + [44] = { 61.1, 65.9, 141, 180 }, + [45] = { 57.3, 65.5, 141, 180 }, + [46] = { 56.6, 65.5, 141, 180 }, + [47] = { 57.9, 65.3, 141, 180 }, + [48] = { 60.4, 64.6, 141, 180 }, + [49] = { 58.1, 64.5, 141, 180 }, + [50] = { 57.4, 64.4, 141, 180 }, + [51] = { 59.9, 63.7, 141, 180 }, + }, + }, + [5619] = { + ["coords"] = { + [1] = { 62.3, 20, 17, 10 }, + }, + }, + [5620] = { + ["coords"] = { + [1] = { 62.3, 20, 17, 10 }, + }, + }, + [5621] = { + ["coords"] = { + [1] = { 62.3, 20, 17, 10 }, + }, + }, + [5622] = { + ["coords"] = { + [1] = { 62.3, 20, 17, 900 }, + }, + }, + [6286] = { + ["coords"] = { + [1] = { 93.8, 37.1, 331, 900 }, + }, + }, + [6287] = { + ["coords"] = { + [1] = { 94.3, 37.2, 331, 900 }, + }, + }, + [6288] = { + ["coords"] = { + [1] = { 66.7, 56.8, 331, 900 }, + }, + }, + [6289] = { + ["coords"] = { + [1] = { 88.7, 57.7, 331, 900 }, + }, + }, + [6290] = { + ["coords"] = { + [1] = { 88.6, 58.2, 331, 900 }, + }, + }, + [6291] = { + ["coords"] = { + [1] = { 89.8, 57.8, 331, 900 }, + }, + }, + [6292] = { + ["coords"] = { + [1] = { 89.8, 58.2, 331, 900 }, + }, + }, + [6293] = { + ["coords"] = {}, + }, + [6294] = { + ["coords"] = {}, + }, + [6295] = { + ["coords"] = {}, + }, + [6751] = { + ["coords"] = { + [1] = { 42.6, 76.2, 141, 900 }, + }, + }, + [6752] = { + ["coords"] = { + [1] = { 34.6, 28.8, 141, 900 }, + }, + }, + [6906] = { + ["coords"] = { + [1] = { 52.5, 46.6, 17, 10 }, + }, + }, + [6907] = { + ["coords"] = { + [1] = { 52.6, 46.1, 17, 10 }, + }, + }, + [6908] = { + ["coords"] = { + [1] = { 52, 46.5, 17, 10 }, + }, + }, + [7510] = { + ["coords"] = {}, + }, + [7923] = { + ["coords"] = { + [1] = { 60.8, 68.6, 141, 900 }, + }, + ["fac"] = "A", + }, + [9630] = { + ["coords"] = { + [1] = { 38.9, 52.2, 11, 10 }, + }, + }, + [9847] = { + ["coords"] = { + [1] = { 48.9, 98.8, 17, 180 }, + [2] = { 43.1, 37.4, 400, 180 }, + }, + }, + [10076] = { + ["coords"] = {}, + ["fac"] = "A", + }, + [10082] = { + ["coords"] = { + [1] = { 60.5, 67.1, 1519, 900 }, + }, + }, + [10083] = { + ["coords"] = { + [1] = { 60.7, 67.3, 1519, 900 }, + }, + }, + [10192] = { + ["coords"] = { + [1] = { 48.4, 31.2, 1519, 900 }, + }, + }, + [10193] = { + ["coords"] = { + [1] = { 48.6, 30.9, 1519, 900 }, + }, + }, + [10194] = { + ["coords"] = { + [1] = { 74.6, 36.1, 1519, 900 }, + }, + }, + [10195] = { + ["coords"] = { + [1] = { 48.8, 31.1, 1519, 900 }, + }, + }, + [10196] = { + ["coords"] = { + [1] = { 49.2, 30.7, 1519, 900 }, + }, + }, + [10197] = { + ["coords"] = { + [1] = { 43.8, 63.6, 1519, 900 }, + }, + }, + [10198] = { + ["coords"] = { + [1] = { 43.7, 63.3, 1519, 900 }, + }, + }, + [10199] = { + ["coords"] = { + [1] = { 52.1, 40.7, 1519, 900 }, + }, + }, + [10200] = { + ["coords"] = { + [1] = { 52, 40.7, 1519, 900 }, + }, + }, + [10201] = { + ["coords"] = { + [1] = { 73.3, 36.2, 1519, 900 }, + }, + }, + [10202] = { + ["coords"] = { + [1] = { 51.9, 40.9, 1519, 900 }, + }, + }, + [10203] = { + ["coords"] = { + [1] = { 51.9, 41.1, 1519, 900 }, + }, + }, + [10204] = { + ["coords"] = { + [1] = { 52.6, 42, 1519, 900 }, + }, + }, + [10205] = { + ["coords"] = { + [1] = { 52.8, 41.8, 1519, 900 }, + }, + }, + [10206] = { + ["coords"] = { + [1] = { 62.1, 29.5, 1519, 900 }, + }, + }, + [10207] = { + ["coords"] = { + [1] = { 41.6, 64.8, 1519, 180 }, + }, + }, + [10208] = { + ["coords"] = { + [1] = { 41.7, 65.1, 1519, 180 }, + }, + }, + [10209] = { + ["coords"] = { + [1] = { 73.5, 36.3, 1519, 900 }, + }, + }, + [10210] = { + ["coords"] = { + [1] = { 50.5, 31.9, 1519, 900 }, + }, + }, + [10211] = { + ["coords"] = { + [1] = { 50.3, 32.1, 1519, 900 }, + }, + }, + [10212] = { + ["coords"] = { + [1] = { 50.3, 31.9, 1519, 900 }, + }, + }, + [10213] = { + ["coords"] = { + [1] = { 50.5, 32.1, 1519, 900 }, + }, + }, + [10214] = { + ["coords"] = { + [1] = { 50, 32.3, 1519, 900 }, + }, + }, + [10215] = { + ["coords"] = { + [1] = { 50.1, 32.7, 1519, 900 }, + }, + }, + [10216] = { + ["coords"] = { + [1] = { 74.4, 36.1, 1519, 900 }, + }, + }, + [10217] = { + ["coords"] = { + [1] = { 49.8, 32.9, 1519, 900 }, + }, + }, + [10218] = { + ["coords"] = { + [1] = { 74, 35.4, 1519, 900 }, + }, + }, + [10219] = { + ["coords"] = { + [1] = { 49.7, 32.6, 1519, 900 }, + }, + }, + [10220] = { + ["coords"] = { + [1] = { 38.5, 64.9, 1519, 180 }, + }, + }, + [10221] = { + ["coords"] = { + [1] = { 38.3, 64.8, 1519, 180 }, + }, + }, + [10222] = { + ["coords"] = { + [1] = { 38.3, 64.6, 1519, 180 }, + }, + }, + [10223] = { + ["coords"] = { + [1] = { 74.4, 35.8, 1519, 900 }, + }, + }, + [10224] = { + ["coords"] = { + [1] = { 38.5, 64.6, 1519, 180 }, + }, + }, + [10388] = { + ["coords"] = { + [1] = { 17.8, 21.9, 400, 180 }, + }, + }, + [11713] = { + ["coords"] = { + [1] = { 55.4, 36.3, 148, 10 }, + [2] = { 55.5, 36.2, 148, 10 }, + [3] = { 55.7, 36.2, 148, 10 }, + [4] = { 55.6, 36.1, 148, 10 }, + [5] = { 55.4, 35.9, 148, 10 }, + [6] = { 55.9, 35.4, 148, 10 }, + [7] = { 56.4, 35.2, 148, 10 }, + [8] = { 56.5, 35.2, 148, 10 }, + [9] = { 56.3, 34.9, 148, 10 }, + [10] = { 40.5, 10.1, 361, 10 }, + [11] = { 40.6, 10, 361, 10 }, + [12] = { 40.9, 9.9, 361, 10 }, + [13] = { 40.7, 9.8, 361, 10 }, + [14] = { 40.5, 9.6, 361, 10 }, + [15] = { 41.1, 9, 361, 10 }, + [16] = { 41.6, 8.8, 361, 10 }, + [17] = { 41.8, 8.8, 361, 10 }, + [18] = { 41.5, 8.5, 361, 10 }, + }, + }, + [11714] = { + ["coords"] = { + [1] = { 55, 36.8, 148, 60 }, + [2] = { 55.6, 36.6, 148, 60 }, + [3] = { 55, 35.6, 148, 60 }, + [4] = { 55.3, 35.6, 148, 60 }, + [5] = { 55.5, 35.3, 148, 60 }, + [6] = { 56.7, 35.2, 148, 60 }, + [7] = { 55.1, 34.7, 148, 60 }, + [8] = { 56.4, 34.6, 148, 60 }, + [9] = { 55.1, 34.6, 148, 60 }, + [10] = { 55.7, 34.5, 148, 60 }, + [11] = { 56.6, 34.4, 148, 60 }, + [12] = { 55.5, 34.4, 148, 60 }, + [13] = { 55.3, 34, 148, 60 }, + [14] = { 57.1, 33.8, 148, 60 }, + [15] = { 55, 33.3, 148, 60 }, + [16] = { 40.1, 10.6, 361, 60 }, + [17] = { 40.8, 10.4, 361, 60 }, + [18] = { 40.6, 8.9, 361, 60 }, + [19] = { 41.9, 8.8, 361, 60 }, + }, + }, + [11898] = { + ["coords"] = { + [1] = { 43.9, 92.9, 17, 180 }, + [2] = { 47.1, 48.8, 400, 180 }, + [3] = { 31.7, 23.8, 400, 180 }, + }, + }, + [11899] = { + ["coords"] = { + [1] = { 44.1, 93, 17, 180 }, + [2] = { 46.7, 48.3, 400, 180 }, + [3] = { 32.2, 24, 400, 180 }, + }, + }, + [12144] = { + ["coords"] = { + [1] = { 38.5, 86.3, 148, 900 }, + }, + }, + [12351] = { + ["coords"] = { + [1] = { 60.3, 42.9, 141, 900 }, + }, + }, + [12352] = { + ["coords"] = { + [1] = { 60.3, 42.9, 141, 900 }, + }, + }, + [12353] = { + ["coords"] = { + [1] = { 62, 55.3, 141, 900 }, + }, + }, + [12354] = { + ["coords"] = { + [1] = { 62, 55.3, 141, 900 }, + }, + }, + [12355] = { + ["coords"] = { + [1] = { 62, 55.3, 141, 900 }, + }, + }, + [12356] = { + ["coords"] = { + [1] = { 62, 55.3, 141, 900 }, + }, + }, + [12357] = { + ["coords"] = { + [1] = { 62, 55.3, 141, 900 }, + }, + }, + [12358] = { + ["coords"] = { + [1] = { 56.9, 57.1, 141, 900 }, + }, + }, + [12359] = { + ["coords"] = { + [1] = { 56.9, 57.1, 141, 900 }, + }, + }, + [12360] = { + ["coords"] = { + [1] = { 56.9, 57.1, 141, 900 }, + }, + }, + [12361] = { + ["coords"] = { + [1] = { 56.9, 57.1, 141, 900 }, + }, + }, + [12362] = { + ["coords"] = { + [1] = { 56.9, 57.1, 141, 900 }, + }, + }, + [12363] = { + ["coords"] = { + [1] = { 56.9, 57.1, 141, 900 }, + }, + }, + [12364] = { + ["coords"] = { + [1] = { 39.1, 53.4, 141, 900 }, + }, + }, + [12365] = { + ["coords"] = { + [1] = { 39.1, 53.4, 141, 900 }, + }, + }, + [12366] = { + ["coords"] = { + [1] = { 39.1, 53.4, 141, 900 }, + }, + }, + [12654] = { + ["coords"] = { + [1] = { 57.5, 24.4, 148, 10 }, + [2] = { 58.5, 24.2, 148, 10 }, + [3] = { 59.9, 24, 148, 10 }, + [4] = { 60.8, 23.2, 148, 10 }, + [5] = { 59, 21.8, 148, 10 }, + [6] = { 58.5, 19.3, 148, 10 }, + [7] = { 60.6, 18.9, 148, 10 }, + [8] = { 59.7, 16.3, 148, 10 }, + [9] = { 59.3, 15.6, 148, 10 }, + [10] = { 59.3, 14.8, 148, 10 }, + }, + }, + [12665] = { + ["coords"] = { + [1] = { 42.6, 67.3, 14, 900 }, + }, + }, + [12666] = { + ["coords"] = { + [1] = { 38.5, 86.1, 148, 10 }, + }, + }, + [12893] = { + ["coords"] = { + [1] = { 41.6, 76.7, 148, 900 }, + }, + ["fac"] = "A", + }, + [12894] = { + ["coords"] = { + [1] = { 41.6, 76.7, 148, 900 }, + }, + ["fac"] = "A", + }, + [12895] = { + ["coords"] = { + [1] = { 41.6, 76.7, 148, 900 }, + }, + ["fac"] = "A", + }, + [12896] = { + ["coords"] = { + [1] = { 41.6, 76.7, 148, 900 }, + }, + ["fac"] = "A", + }, + [12897] = { + ["coords"] = { + [1] = { 40, 61.8, 148, 900 }, + }, + ["fac"] = "A", + }, + [12898] = { + ["coords"] = { + [1] = { 40, 61.8, 148, 900 }, + }, + ["fac"] = "A", + }, + [12899] = { + ["coords"] = { + [1] = { 40, 61.8, 148, 900 }, + }, + ["fac"] = "A", + }, + [12900] = { + ["coords"] = { + [1] = { 40, 61.8, 148, 900 }, + }, + ["fac"] = "A", + }, + [12901] = { + ["coords"] = { + [1] = { 40, 61.8, 148, 900 }, + }, + ["fac"] = "A", + }, + [12902] = { + ["coords"] = { + [1] = { 39.9, 46.5, 148, 900 }, + }, + ["fac"] = "A", + }, + [12903] = { + ["coords"] = { + [1] = { 39.9, 46.5, 148, 900 }, + }, + ["fac"] = "A", + }, + [12904] = { + ["coords"] = { + [1] = { 39.9, 46.5, 148, 900 }, + }, + ["fac"] = "A", + }, + [12907] = { + ["coords"] = { + [1] = { 44.2, 34.7, 148, 900 }, + }, + ["fac"] = "A", + }, + [12908] = { + ["coords"] = { + [1] = { 44.2, 34.7, 148, 900 }, + }, + ["fac"] = "A", + }, + [12909] = { + ["coords"] = { + [1] = { 44.2, 34.7, 148, 900 }, + }, + ["fac"] = "A", + }, + [13348] = { + ["coords"] = { + [1] = { 25.4, 37.5, 331, 900 }, + }, + ["fac"] = "A", + }, + [13349] = { + ["coords"] = { + [1] = { 25.4, 37.5, 331, 900 }, + }, + ["fac"] = "A", + }, + [13350] = { + ["coords"] = { + [1] = { 26.7, 47.8, 331, 900 }, + }, + ["fac"] = "A", + }, + [13351] = { + ["coords"] = { + [1] = { 26.7, 47.8, 331, 900 }, + }, + ["fac"] = "A", + }, + [13352] = { + ["coords"] = { + [1] = { 26.7, 47.8, 331, 900 }, + }, + ["fac"] = "A", + }, + [13353] = { + ["coords"] = { + [1] = { 25.4, 37.5, 331, 900 }, + }, + ["fac"] = "A", + }, + [13354] = { + ["coords"] = { + [1] = { 34.7, 48.8, 331, 900 }, + }, + ["fac"] = "A", + }, + [13355] = { + ["coords"] = { + [1] = { 34.7, 48.8, 331, 900 }, + }, + ["fac"] = "A", + }, + [13356] = { + ["coords"] = { + [1] = { 36.7, 52.2, 331, 900 }, + }, + ["fac"] = "A", + }, + [13357] = { + ["coords"] = { + [1] = { 36.7, 52.2, 331, 900 }, + }, + ["fac"] = "A", + }, + [13358] = { + ["coords"] = { + [1] = { 36.7, 52.2, 331, 900 }, + }, + ["fac"] = "A", + }, + [13359] = { + ["coords"] = { + [1] = { 58.1, 24.8, 148, 180 }, + [2] = { 58.9, 24.6, 148, 180 }, + [3] = { 59.5, 24.3, 148, 180 }, + [4] = { 59.5, 23.4, 148, 180 }, + [5] = { 60, 22.8, 148, 180 }, + [6] = { 56.9, 22.4, 148, 180 }, + [7] = { 57.2, 22.3, 148, 180 }, + [8] = { 61.2, 21.6, 148, 180 }, + [9] = { 58.9, 21.2, 148, 180 }, + [10] = { 61.1, 21, 148, 180 }, + [11] = { 57.9, 21, 148, 180 }, + [12] = { 57.8, 20.6, 148, 180 }, + [13] = { 60.6, 20.3, 148, 180 }, + [14] = { 57.8, 20.2, 148, 180 }, + [15] = { 60.4, 20.1, 148, 180 }, + [16] = { 61.2, 19.7, 148, 180 }, + [17] = { 57.4, 19.3, 148, 180 }, + [18] = { 57.5, 19.3, 148, 180 }, + [19] = { 59.7, 18.3, 148, 180 }, + [20] = { 57.4, 18.2, 148, 180 }, + [21] = { 59.7, 18.1, 148, 180 }, + [22] = { 58.3, 17.5, 148, 180 }, + [23] = { 61, 17.1, 148, 180 }, + [24] = { 60.3, 16.5, 148, 180 }, + [25] = { 60.1, 15.2, 148, 180 }, + [26] = { 58.9, 14.7, 148, 180 }, + [27] = { 58.8, 14.6, 148, 180 }, + }, + }, + [13360] = { + ["coords"] = { + [1] = { 58.5, 25, 148, 10 }, + [2] = { 59.5, 24.9, 148, 10 }, + [3] = { 56.7, 22.5, 148, 10 }, + [4] = { 58.3, 21.9, 148, 10 }, + [5] = { 57.4, 21.5, 148, 10 }, + [6] = { 61.5, 20.5, 148, 10 }, + [7] = { 58.2, 20.1, 148, 10 }, + [8] = { 57.7, 19.5, 148, 10 }, + [9] = { 61.2, 16.4, 148, 10 }, + [10] = { 60.2, 15.7, 148, 10 }, + }, + }, + [13405] = { + ["coords"] = { + [1] = { 59.6, 62.5, 331, 900 }, + }, + ["fac"] = "A", + }, + [13406] = { + ["coords"] = { + [1] = { 59.6, 62.5, 331, 900 }, + }, + ["fac"] = "A", + }, + [13407] = { + ["coords"] = { + [1] = { 59.6, 62.5, 331, 900 }, + }, + ["fac"] = "A", + }, + [13408] = { + ["coords"] = { + [1] = { 59.6, 62.5, 331, 900 }, + }, + ["fac"] = "A", + }, + [13409] = { + ["coords"] = { + [1] = { 67.1, 71.2, 331, 900 }, + }, + ["fac"] = "A", + }, + [13410] = { + ["coords"] = { + [1] = { 67.1, 71.2, 331, 900 }, + }, + ["fac"] = "A", + }, + [13411] = { + ["coords"] = { + [1] = { 67.1, 71.2, 331, 900 }, + }, + ["fac"] = "A", + }, + [13412] = { + ["coords"] = { + [1] = { 67.1, 71.2, 331, 900 }, + }, + ["fac"] = "A", + }, + [13756] = { + ["coords"] = {}, + }, + [13872] = { + ["coords"] = { + [1] = { 58, 25.9, 148, 10 }, + [2] = { 58.1, 23.7, 148, 10 }, + [3] = { 57.5, 21.9, 148, 10 }, + [4] = { 60.3, 21.7, 148, 10 }, + [5] = { 62.1, 21.5, 148, 10 }, + [6] = { 58.1, 20.7, 148, 10 }, + [7] = { 61.3, 19.7, 148, 10 }, + [8] = { 59.8, 19, 148, 10 }, + [9] = { 61.3, 18.5, 148, 10 }, + [10] = { 59, 17.1, 148, 10 }, + }, + }, + [13873] = { + ["coords"] = { + [1] = { 58.1, 24.8, 148, 180 }, + [2] = { 58.9, 24.6, 148, 180 }, + [3] = { 59.5, 24.3, 148, 180 }, + [4] = { 59.5, 23.4, 148, 180 }, + [5] = { 60, 22.8, 148, 180 }, + [6] = { 56.9, 22.4, 148, 180 }, + [7] = { 57.2, 22.3, 148, 180 }, + [8] = { 61.2, 21.6, 148, 180 }, + [9] = { 58.9, 21.2, 148, 180 }, + [10] = { 61.1, 21, 148, 180 }, + [11] = { 57.9, 21, 148, 180 }, + [12] = { 57.8, 20.6, 148, 180 }, + [13] = { 60.6, 20.3, 148, 180 }, + [14] = { 57.8, 20.2, 148, 180 }, + [15] = { 60.4, 20.1, 148, 180 }, + [16] = { 61.2, 19.7, 148, 180 }, + [17] = { 57.4, 19.3, 148, 180 }, + [18] = { 57.5, 19.3, 148, 180 }, + [19] = { 59.7, 18.3, 148, 180 }, + [20] = { 57.4, 18.2, 148, 180 }, + [21] = { 59.7, 18.1, 148, 180 }, + [22] = { 58.3, 17.5, 148, 180 }, + [23] = { 61, 17.1, 148, 180 }, + [24] = { 60.3, 16.5, 148, 180 }, + [25] = { 60.1, 15.2, 148, 180 }, + [26] = { 58.9, 14.7, 148, 180 }, + [27] = { 58.8, 14.6, 148, 180 }, + }, + }, + [13891] = { + ["coords"] = { + [1] = { 46.5, 35.6, 17, 300 }, + [2] = { 45.7, 35.3, 17, 300 }, + [3] = { 45.9, 35.2, 17, 300 }, + [4] = { 46.9, 34.7, 17, 300 }, + [5] = { 46.2, 34.7, 17, 300 }, + [6] = { 48.3, 34.6, 17, 300 }, + [7] = { 46.7, 34.5, 17, 300 }, + [8] = { 47.6, 34.4, 17, 300 }, + [9] = { 46.6, 34.4, 17, 300 }, + [10] = { 46.2, 34.4, 17, 300 }, + [11] = { 48.1, 34.3, 17, 300 }, + [12] = { 48.7, 34.3, 17, 300 }, + [13] = { 47.8, 34.3, 17, 300 }, + [14] = { 48.5, 34.2, 17, 300 }, + [15] = { 49.1, 34.2, 17, 300 }, + [16] = { 45.9, 34, 17, 300 }, + [17] = { 47.4, 34, 17, 300 }, + [18] = { 48.1, 34, 17, 300 }, + [19] = { 47.6, 33.9, 17, 300 }, + [20] = { 48.6, 33.8, 17, 300 }, + [21] = { 45.7, 33.8, 17, 300 }, + [22] = { 49, 33.8, 17, 300 }, + [23] = { 47.4, 33.7, 17, 300 }, + [24] = { 45.6, 33.5, 17, 300 }, + [25] = { 45.7, 33.5, 17, 300 }, + [26] = { 49.1, 33.5, 17, 300 }, + [27] = { 49.4, 33.3, 17, 300 }, + [28] = { 47.5, 33.3, 17, 300 }, + [29] = { 45.9, 33.1, 17, 300 }, + [30] = { 49, 33, 17, 300 }, + [31] = { 47.5, 32.9, 17, 300 }, + [32] = { 46.1, 32.7, 17, 300 }, + [33] = { 46.9, 32.7, 17, 300 }, + [34] = { 48.7, 32.7, 17, 300 }, + [35] = { 48, 32.7, 17, 300 }, + [36] = { 47.7, 32.7, 17, 300 }, + [37] = { 45.9, 32.7, 17, 300 }, + [38] = { 49.4, 32.6, 17, 300 }, + [39] = { 47.2, 32.6, 17, 300 }, + [40] = { 49, 32.6, 17, 300 }, + [41] = { 46.4, 32.5, 17, 300 }, + [42] = { 47.5, 32.5, 17, 300 }, + [43] = { 48.4, 32.4, 17, 300 }, + [44] = { 48.1, 32.4, 17, 300 }, + [45] = { 48, 32.4, 17, 300 }, + [46] = { 48.7, 32.3, 17, 300 }, + [47] = { 46.2, 32.3, 17, 300 }, + [48] = { 48.9, 32.2, 17, 300 }, + [49] = { 47.7, 32.2, 17, 300 }, + [50] = { 48.3, 32, 17, 300 }, + [51] = { 48.5, 31.9, 17, 300 }, + [52] = { 48.1, 31.9, 17, 300 }, + }, + }, + [13949] = { + ["coords"] = {}, + }, + [13952] = { + ["coords"] = {}, + }, + [13965] = { + ["coords"] = {}, + }, + [15001] = { + ["coords"] = {}, + }, + [15002] = { + ["coords"] = {}, + }, + [15003] = { + ["coords"] = {}, + }, + [15004] = { + ["coords"] = {}, + }, + [15005] = { + ["coords"] = {}, + }, + [15068] = { + ["coords"] = { + [1] = { 45.8, 58.2, 215, 900 }, + }, + }, + [15069] = { + ["coords"] = { + [1] = { 47.5, 61.7, 215, 900 }, + }, + }, + [16393] = { + ["coords"] = { + [1] = { 42.4, 61.8, 148, 900 }, + }, + ["fac"] = "A", + }, + [16394] = { + ["coords"] = { + [1] = { 42.4, 61.8, 148, 900 }, + }, + }, + [16396] = { + ["coords"] = { + [1] = { 57.4, 24.8, 40, 3600 }, + }, + }, + [16397] = { + ["coords"] = {}, + }, + [16398] = { + ["coords"] = {}, + }, + [16399] = { + ["coords"] = {}, + }, + [16400] = { + ["coords"] = {}, + }, + [16431] = { + ["coords"] = {}, + }, + [17153] = { + ["coords"] = {}, + }, + [17154] = { + ["coords"] = {}, + }, + [17155] = { + ["coords"] = {}, + }, + [17156] = { + ["coords"] = { + [1] = { 18, 84.4, 38, 7200 }, + }, + }, + [17157] = { + ["coords"] = { + [1] = { 78.7, 16.8, 51, 7200 }, + }, + }, + [17182] = { + ["coords"] = { + [1] = { 36.6, 46.3, 148, 10 }, + }, + ["fac"] = "AH", + }, + [17183] = { + ["coords"] = { + [1] = { 42, 28.6, 148, 10 }, + }, + }, + [17184] = { + ["coords"] = { + [1] = { 51.3, 24.6, 148, 10 }, + }, + }, + [17185] = { + ["coords"] = { + [1] = { 41.4, 80.6, 148, 10 }, + }, + }, + [17188] = { + ["coords"] = { + [1] = { 43.3, 58.7, 148, 10 }, + }, + ["fac"] = "A", + }, + [17189] = { + ["coords"] = { + [1] = { 42.7, 63.1, 148, 10 }, + }, + ["fac"] = "A", + }, + [17190] = { + ["coords"] = { + [1] = { 31.3, 49.9, 215, 900 }, + }, + }, + [17191] = { + ["coords"] = { + [1] = { 31.2, 49.8, 215, 900 }, + }, + }, + [17249] = { + ["coords"] = { + [1] = { 74.8, 36.7, 1519, 900 }, + }, + }, + [17250] = { + ["coords"] = { + [1] = { 27.7, 75.4, 1519, 180 }, + }, + }, + [17251] = { + ["coords"] = { + [1] = { 27.7, 75.6, 1519, 180 }, + }, + }, + [17252] = { + ["coords"] = { + [1] = { 73.4, 37.8, 1519, 900 }, + }, + }, + [17253] = { + ["coords"] = { + [1] = { 40.5, 89, 1519, 180 }, + }, + }, + [17254] = { + ["coords"] = { + [1] = { 40.9, 88.3, 1519, 180 }, + }, + }, + [17255] = { + ["coords"] = { + [1] = { 73.6, 37.8, 1519, 900 }, + }, + }, + [17256] = { + ["coords"] = { + [1] = { 40.3, 88.9, 1519, 180 }, + }, + }, + [17257] = { + ["coords"] = { + [1] = { 41.5, 89.8, 1519, 180 }, + }, + }, + [17258] = { + ["coords"] = { + [1] = { 74.2, 35.5, 1519, 900 }, + }, + }, + [17259] = { + ["coords"] = { + [1] = { 39.2, 65, 1519, 180 }, + }, + }, + [17260] = { + ["coords"] = { + [1] = { 39.4, 64.7, 1519, 180 }, + }, + }, + [17261] = { + ["coords"] = { + [1] = { 57, 70.3, 1519, 900 }, + }, + }, + [17262] = { + ["coords"] = { + [1] = { 57, 70.1, 1519, 900 }, + }, + }, + [17263] = { + ["coords"] = { + [1] = { 55.4, 71.3, 1519, 900 }, + }, + }, + [17264] = { + ["coords"] = { + [1] = { 55.5, 71.6, 1519, 900 }, + }, + }, + [17265] = { + ["coords"] = { + [1] = { 56, 72.8, 1519, 900 }, + }, + }, + [17266] = { + ["coords"] = { + [1] = { 75.1, 37.2, 1519, 900 }, + }, + }, + [17267] = { + ["coords"] = { + [1] = { 56.1, 73, 1519, 900 }, + }, + }, + [17268] = { + ["coords"] = { + [1] = { 57.5, 71.6, 1519, 900 }, + }, + }, + [17269] = { + ["coords"] = { + [1] = { 57.6, 71.8, 1519, 900 }, + }, + }, + [17270] = { + ["coords"] = { + [1] = { 28, 73.6, 1519, 180 }, + }, + }, + [17271] = { + ["coords"] = { + [1] = { 27.8, 73.7, 1519, 180 }, + }, + }, + [17272] = { + ["coords"] = { + [1] = { 27.8, 74, 1519, 180 }, + }, + }, + [17273] = { + ["coords"] = { + [1] = { 28, 74.1, 1519, 180 }, + }, + }, + [17274] = { + ["coords"] = { + [1] = { 74.8, 36.5, 1519, 900 }, + }, + }, + [17275] = { + ["coords"] = { + [1] = { 75.1, 37.5, 1519, 900 }, + }, + }, + [17276] = { + ["coords"] = { + [1] = { 75, 36.8, 1519, 900 }, + }, + }, + [17277] = { + ["coords"] = { + [1] = { 28.1, 73.9, 1519, 180 }, + }, + }, + [17278] = { + ["coords"] = { + [1] = { 28.2, 73.7, 1519, 180 }, + }, + }, + [17279] = { + ["coords"] = { + [1] = { 27.6, 75.3, 1519, 180 }, + }, + }, + [17280] = { + ["coords"] = { + [1] = { 27.5, 75.6, 1519, 180 }, + }, + }, + [17281] = { + ["coords"] = { + [1] = { 73.7, 37.4, 1519, 900 }, + }, + }, + [17282] = { + ["coords"] = { + [1] = { 30.4, 25.5, 331, 60 }, + [2] = { 30.1, 24.7, 331, 60 }, + [3] = { 31.1, 24.6, 331, 60 }, + [4] = { 32.2, 24.5, 331, 60 }, + [5] = { 30.7, 23.7, 331, 60 }, + [6] = { 31.4, 23.6, 331, 60 }, + [7] = { 32.1, 23.5, 331, 60 }, + [8] = { 29.6, 23.5, 331, 60 }, + [9] = { 32.6, 23.2, 331, 60 }, + [10] = { 31.9, 22.9, 331, 60 }, + [11] = { 30.7, 22.8, 331, 60 }, + [12] = { 32.3, 22.7, 331, 60 }, + [13] = { 31.8, 22, 331, 60 }, + [14] = { 32.2, 21.7, 331, 60 }, + [15] = { 31.4, 21.7, 331, 60 }, + [16] = { 33.9, 21.3, 331, 60 }, + [17] = { 31.6, 21.2, 331, 60 }, + [18] = { 30.9, 21, 331, 60 }, + [19] = { 33.2, 21, 331, 60 }, + }, + }, + [17284] = { + ["coords"] = { + [1] = { 14.8, 31.3, 331, 900 }, + }, + }, + [17783] = { + ["coords"] = { + [1] = { 14.2, 20.6, 331, 10 }, + }, + }, + [18033] = { + ["coords"] = { + [1] = { 44.7, 58.6, 17, 900 }, + }, + ["fac"] = "H", + }, + [18034] = { + ["coords"] = { + [1] = { 44.8, 58.6, 17, 900 }, + }, + ["fac"] = "H", + }, + [18035] = { + ["coords"] = { + [1] = { 47.7, 57.5, 215, 900 }, + }, + }, + [18036] = { + ["coords"] = { + [1] = { 75.3, 72.2, 331, 10 }, + [2] = { 75.3, 71.9, 331, 10 }, + [3] = { 75.3, 71.8, 331, 10 }, + }, + }, + [18043] = { + ["coords"] = { + [1] = { 26.8, 48.5, 47, 7200 }, + }, + }, + [18045] = { + ["coords"] = { + [1] = { 23.1, 58.2, 47, 7200 }, + }, + }, + [18046] = { + ["coords"] = { + [1] = { 32, 58.2, 47, 7200 }, + }, + }, + [18047] = { + ["coords"] = { + [1] = { 32.1, 68.5, 47, 7200 }, + }, + }, + [18048] = { + ["coords"] = { + [1] = { 32.8, 67.9, 47, 7200 }, + }, + }, + [18049] = { + ["coords"] = { + [1] = { 33, 68.1, 47, 7200 }, + }, + }, + [18050] = { + ["coords"] = { + [1] = { 33.2, 68.3, 47, 7200 }, + }, + }, + [18051] = { + ["coords"] = { + [1] = { 32.2, 68.9, 47, 7200 }, + }, + }, + [18052] = { + ["coords"] = { + [1] = { 32.2, 69.2, 47, 7200 }, + }, + }, + [18053] = { + ["coords"] = { + [1] = { 36.1, 70.7, 47, 7200 }, + }, + }, + [18054] = { + ["coords"] = { + [1] = { 35.9, 70.6, 47, 7200 }, + }, + }, + [18055] = { + ["coords"] = { + [1] = { 36.4, 70.8, 47, 7200 }, + }, + }, + [18056] = { + ["coords"] = { + [1] = { 36, 72.1, 47, 7200 }, + }, + }, + [18057] = { + ["coords"] = { + [1] = { 35.8, 72.2, 47, 7200 }, + }, + }, + [18058] = { + ["coords"] = { + [1] = { 36.3, 72.1, 47, 7200 }, + }, + }, + [18059] = { + ["coords"] = { + [1] = { 32.4, 74.6, 47, 7200 }, + }, + }, + [18060] = { + ["coords"] = { + [1] = { 32.4, 74.2, 47, 7200 }, + }, + }, + [18061] = { + ["coords"] = { + [1] = { 33.3, 75.1, 47, 7200 }, + }, + }, + [18062] = { + ["coords"] = { + [1] = { 33.5, 74.8, 47, 7200 }, + }, + }, + [18063] = { + ["coords"] = { + [1] = { 60.6, 65, 47, 7200 }, + }, + }, + [18064] = { + ["coords"] = { + [1] = { 62.4, 65.7, 47, 7200 }, + }, + }, + [18065] = { + ["coords"] = { + [1] = { 64.2, 65.6, 47, 7200 }, + }, + }, + [18066] = { + ["coords"] = { + [1] = { 60.6, 67.9, 47, 7200 }, + }, + }, + [18067] = { + ["coords"] = { + [1] = { 63.5, 67.9, 47, 7200 }, + }, + }, + [18068] = { + ["coords"] = { + [1] = { 68.6, 70.8, 47, 7200 }, + }, + }, + [18069] = { + ["coords"] = { + [1] = { 57.9, 72.4, 47, 7200 }, + }, + }, + [18070] = { + ["coords"] = { + [1] = { 64.5, 71.7, 47, 7200 }, + }, + }, + [18071] = { + ["coords"] = { + [1] = { 63.5, 73.3, 47, 7200 }, + }, + }, + [18072] = { + ["coords"] = { + [1] = { 68.1, 72.9, 47, 7200 }, + }, + }, + [18073] = { + ["coords"] = { + [1] = { 67.9, 75.3, 47, 7200 }, + }, + }, + [18074] = { + ["coords"] = { + [1] = { 67.7, 77.7, 47, 7200 }, + }, + }, + [18075] = { + ["coords"] = { + [1] = { 51.1, 42.3, 14, 900 }, + }, + }, + [18076] = { + ["coords"] = { + [1] = { 51.2, 42.3, 14, 900 }, + }, + }, + [18077] = { + ["coords"] = { + [1] = { 55.6, 73.5, 14, 900 }, + }, + }, + [18079] = { + ["coords"] = { + [1] = { 51.1, 42.4, 14, 900 }, + }, + }, + [18083] = { + ["coords"] = { + [1] = { 42.7, 67.1, 14, 900 }, + }, + }, + [18084] = { + ["coords"] = { + [1] = { 67.1, 87.2, 14, 900 }, + [2] = { 80.3, 42.6, 17, 900 }, + }, + }, + [18085] = { + ["coords"] = { + [1] = { 42.1, 26.6, 14, 900 }, + }, + }, + [18087] = { + ["coords"] = { + [1] = { 77.8, 77.3, 400, 180 }, + }, + }, + [18089] = { + ["coords"] = { + [1] = { 61, 41.5, 10, 3600 }, + }, + }, + [18090] = { + ["coords"] = { + [1] = { 63.8, 51.3, 10, 3600 }, + }, + }, + [18340] = { + ["coords"] = { + [1] = { 24.8, 30.5, 38, 7200 }, + }, + }, + [18341] = { + ["coords"] = { + [1] = { 25.8, 42.8, 38, 7200 }, + }, + }, + [18342] = { + ["coords"] = { + [1] = { 74.2, 19.2, 38, 7200 }, + }, + }, + [18343] = { + ["coords"] = { + [1] = { 74.2, 20.6, 38, 7200 }, + }, + }, + [18344] = { + ["coords"] = { + [1] = { 73.8, 24.7, 38, 7200 }, + }, + }, + [18345] = { + ["coords"] = { + [1] = { 36, 84.4, 38, 7200 }, + }, + }, + [18596] = { + ["coords"] = { + [1] = { 50.9, 75, 331, 900 }, + }, + }, + [18603] = { + ["coords"] = { + [1] = { 14.8, 31.2, 331, 0 }, + }, + }, + [18643] = { + ["coords"] = { + [1] = { 54.1, 64.1, 331, 900 }, + }, + }, + [18644] = { + ["coords"] = { + [1] = { 56.1, 63.9, 331, 900 }, + }, + }, + [18645] = { + ["coords"] = { + [1] = { 56.6, 63.1, 331, 900 }, + }, + }, + [18895] = { + ["coords"] = {}, + }, + [18899] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [18900] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [18901] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [18930] = { + ["coords"] = { + [1] = { 54.8, 37.2, 17, 900 }, + }, + }, + [18934] = { + ["coords"] = {}, + }, + [18935] = { + ["coords"] = {}, + }, + [18936] = { + ["coords"] = {}, + }, + [18971] = { + ["coords"] = {}, + }, + [18972] = { + ["coords"] = {}, + }, + [18973] = { + ["coords"] = {}, + }, + [19015] = { + ["coords"] = { + [1] = { 46.3, 46.9, 331, 180 }, + [2] = { 46.6, 46.9, 331, 180 }, + [3] = { 46.7, 46.6, 331, 180 }, + [4] = { 46.1, 46.6, 331, 180 }, + [5] = { 46.1, 46.3, 331, 180 }, + [6] = { 46.6, 46, 331, 180 }, + [7] = { 46.2, 46, 331, 180 }, + [8] = { 46.3, 45.9, 331, 180 }, + }, + ["fac"] = "AH", + }, + [19016] = { + ["coords"] = { + [1] = { 33.4, 68.7, 331, 60 }, + [2] = { 33.1, 68.6, 331, 60 }, + [3] = { 32.8, 68.4, 331, 60 }, + [4] = { 32.9, 68.3, 331, 60 }, + [5] = { 33.9, 68.3, 331, 60 }, + [6] = { 32.6, 68, 331, 60 }, + [7] = { 33.3, 68, 331, 60 }, + [8] = { 34, 67.8, 331, 60 }, + [9] = { 34.2, 67.7, 331, 60 }, + [10] = { 33.5, 67.6, 331, 60 }, + [11] = { 33.6, 67.3, 331, 60 }, + [12] = { 33.3, 67.2, 331, 60 }, + [13] = { 34.1, 67.1, 331, 60 }, + [14] = { 32.6, 66.9, 331, 60 }, + [15] = { 33.4, 66.7, 331, 60 }, + [16] = { 33.9, 66.6, 331, 60 }, + [17] = { 33.1, 66.5, 331, 60 }, + [18] = { 33.3, 66.2, 331, 60 }, + }, + }, + [19017] = { + ["coords"] = { + [1] = { 64.6, 55.8, 17, 300 }, + [2] = { 63.6, 54.2, 17, 300 }, + [3] = { 63.8, 52, 17, 300 }, + [4] = { 64.1, 50.7, 17, 300 }, + [5] = { 63.5, 50.4, 17, 300 }, + [6] = { 65, 49.4, 17, 300 }, + [7] = { 65.5, 47.7, 17, 300 }, + [8] = { 65.6, 45.8, 17, 300 }, + [9] = { 66.1, 44.3, 17, 300 }, + [10] = { 65.2, 42.2, 17, 300 }, + [11] = { 66.4, 41.4, 17, 300 }, + [12] = { 64.9, 40.6, 17, 300 }, + [13] = { 64, 40.5, 17, 300 }, + [14] = { 66.5, 39.9, 17, 300 }, + [15] = { 64.2, 38.2, 17, 300 }, + [16] = { 65.4, 37.5, 17, 300 }, + [17] = { 28.5, 89.4, 40, 300 }, + [18] = { 35.1, 5.2, 40, 300 }, + [19] = { 25.8, 99.1, 148, 300 }, + [20] = { 25.5, 91.5, 148, 300 }, + [21] = { 27.6, 88.2, 148, 300 }, + [22] = { 31.2, 88.2, 148, 300 }, + [23] = { 32.3, 86.7, 148, 300 }, + [24] = { 29.1, 86.1, 148, 300 }, + [25] = { 33.2, 84.5, 148, 300 }, + [26] = { 30.3, 83.2, 148, 300 }, + [27] = { 31.7, 78.8, 148, 300 }, + [28] = { 30.5, 76.6, 148, 300 }, + [29] = { 31.4, 74.8, 148, 300 }, + [30] = { 33.4, 62.6, 148, 300 }, + [31] = { 34.7, 61.6, 148, 300 }, + [32] = { 33.3, 59.3, 148, 300 }, + [33] = { 29.5, 57.8, 148, 300 }, + [34] = { 32.5, 57.5, 148, 300 }, + [35] = { 35.7, 57.3, 148, 300 }, + [36] = { 32.7, 55.2, 148, 300 }, + [37] = { 32.6, 52.7, 148, 300 }, + [38] = { 31.8, 49.9, 148, 300 }, + [39] = { 33.4, 49, 148, 300 }, + [40] = { 34.9, 48.8, 148, 300 }, + [41] = { 28.2, 48, 148, 300 }, + [42] = { 33.3, 45.5, 148, 300 }, + [43] = { 29.6, 44.4, 148, 300 }, + [44] = { 33, 40.9, 148, 300 }, + [45] = { 36, 39.3, 148, 300 }, + [46] = { 34.8, 38.2, 148, 300 }, + [47] = { 32.8, 35, 148, 300 }, + [48] = { 34.4, 34.1, 148, 300 }, + [49] = { 36.4, 32, 148, 300 }, + [50] = { 38.7, 24.7, 148, 300 }, + [51] = { 42.6, 19.8, 148, 300 }, + [52] = { 50.1, 18.8, 148, 300 }, + [53] = { 46.3, 18.7, 148, 300 }, + [54] = { 47.8, 15.8, 148, 300 }, + [55] = { 54.1, 15.3, 148, 300 }, + [56] = { 51, 14.9, 148, 300 }, + [57] = { 55.8, 11.5, 148, 300 }, + [58] = { 52.2, 11.1, 148, 300 }, + [59] = { 57.1, 10.3, 148, 300 }, + [60] = { 60.1, 7.4, 148, 300 }, + [61] = { 8.4, 30, 331, 300 }, + [62] = { 7.6, 28.1, 331, 300 }, + [63] = { 12, 25.5, 331, 300 }, + [64] = { 7.8, 17.4, 331, 300 }, + [65] = { 7.4, 8.8, 331, 300 }, + }, + }, + [19018] = { + ["coords"] = { + [1] = { 6.7, 72, 11, 300 }, + [2] = { 10.5, 66.1, 11, 300 }, + [3] = { 12.8, 63.2, 11, 300 }, + [4] = { 15.4, 60.6, 11, 300 }, + [5] = { 17.8, 58.9, 11, 300 }, + [6] = { 5.4, 48.9, 11, 300 }, + [7] = { 8, 46.6, 11, 300 }, + [8] = { 8.1, 41.6, 11, 300 }, + [9] = { 11.7, 41, 11, 300 }, + [10] = { 5.5, 41, 11, 300 }, + [11] = { 9.3, 39.2, 11, 300 }, + [12] = { 11.8, 36.5, 11, 300 }, + [13] = { 7.3, 36.3, 11, 300 }, + [14] = { 11.3, 32.9, 11, 300 }, + [15] = { 12.4, 30.7, 11, 300 }, + [16] = { 10, 29.9, 11, 300 }, + [17] = { 14.2, 26.5, 11, 300 }, + [18] = { 12, 25.8, 11, 300 }, + [19] = { 16.4, 23.2, 11, 300 }, + [20] = { 13.6, 22.1, 11, 300 }, + [21] = { 17.8, 19.8, 11, 300 }, + [22] = { 18.9, 18.3, 11, 300 }, + [23] = { 20.7, 18.1, 11, 300 }, + [24] = { 23.1, 17.6, 11, 300 }, + [25] = { 26.5, 16.9, 11, 300 }, + [26] = { 28, 15, 11, 300 }, + [27] = { 23.7, 13.7, 11, 300 }, + [28] = { 22.2, 13.4, 11, 300 }, + [29] = { 21.2, 13.4, 11, 300 }, + [30] = { 26.2, 13, 11, 300 }, + [31] = { 29.8, 92.6, 148, 300 }, + [32] = { 30.4, 92.1, 148, 300 }, + [33] = { 31.9, 91.3, 148, 300 }, + [34] = { 31.3, 91.2, 148, 300 }, + [35] = { 12.3, 10, 331, 300 }, + [36] = { 13, 9.4, 331, 300 }, + [37] = { 14.7, 8.4, 331, 300 }, + [38] = { 14, 8.4, 331, 300 }, + }, + }, + [19019] = { + ["coords"] = { + [1] = { 61.3, 4.7, 17, 300 }, + [2] = { 61.8, 4.2, 17, 300 }, + [3] = { 61.9, 3.6, 17, 300 }, + [4] = { 26.5, 72.8, 40, 300 }, + [5] = { 44.9, 71.1, 40, 300 }, + [6] = { 42.5, 69.2, 40, 300 }, + [7] = { 44, 67.8, 40, 300 }, + [8] = { 41.3, 66.4, 40, 300 }, + [9] = { 25.6, 49, 40, 300 }, + [10] = { 30.6, 27.3, 40, 300 }, + }, + }, + [19020] = { + ["coords"] = { + [1] = { 47.5, 85.8, 17, 300 }, + [2] = { 47.5, 85.6, 17, 300 }, + [3] = { 47.6, 85.5, 17, 300 }, + [4] = { 47.4, 85.2, 17, 300 }, + [5] = { 47.8, 84.9, 17, 300 }, + [6] = { 48.6, 84.7, 17, 300 }, + [7] = { 48.6, 84.2, 17, 300 }, + [8] = { 47.3, 84.1, 17, 300 }, + }, + }, + [19021] = { + ["coords"] = {}, + }, + [19022] = { + ["coords"] = { + [1] = { 54.4, 35.4, 331, 300 }, + [2] = { 53.6, 99.7, 361, 300 }, + }, + }, + [19023] = { + ["coords"] = {}, + }, + [19024] = { + ["coords"] = { + [1] = { 56.4, 49.2, 331, 10 }, + }, + ["fac"] = "A", + }, + [19025] = { + ["coords"] = { + [1] = { 50.3, 39.6, 331, 900 }, + }, + }, + [19027] = { + ["coords"] = { + [1] = { 50.5, 39.1, 331, 10 }, + }, + ["fac"] = "A", + }, + [19028] = { + ["coords"] = { + [1] = { 81.1, 39.3, 85, 900 }, + }, + }, + [19030] = { + ["coords"] = { + [1] = { 73.5, 79.1, 10, 10 }, + }, + ["fac"] = "A", + }, + [19033] = { + ["coords"] = { + [1] = { 40.2, 44.5, 215, 900 }, + }, + ["fac"] = "H", + }, + [19283] = { + ["coords"] = {}, + ["fac"] = "H", + }, + [19284] = { + ["coords"] = {}, + ["fac"] = "A", + }, + [19463] = { + ["coords"] = { + [1] = { 54.9, 33.3, 148, 25 }, + }, + }, + [19464] = { + ["coords"] = { + [1] = { 48.4, 18.9, 17, 25 }, + }, + }, + [19534] = { + ["coords"] = { + [1] = { 51.3, 58.5, 267, 0 }, + }, + }, + [19535] = { + ["coords"] = { + [1] = { 46.5, 35.6, 17, 300 }, + [2] = { 45.7, 35.3, 17, 300 }, + [3] = { 45.9, 35.2, 17, 300 }, + [4] = { 46.9, 34.7, 17, 300 }, + [5] = { 46.2, 34.7, 17, 300 }, + [6] = { 48.3, 34.6, 17, 300 }, + [7] = { 46.7, 34.5, 17, 300 }, + [8] = { 47.6, 34.4, 17, 300 }, + [9] = { 46.6, 34.4, 17, 300 }, + [10] = { 46.2, 34.4, 17, 300 }, + [11] = { 48.1, 34.3, 17, 300 }, + [12] = { 48.7, 34.3, 17, 300 }, + [13] = { 47.8, 34.3, 17, 300 }, + [14] = { 48.5, 34.2, 17, 300 }, + [15] = { 49.1, 34.2, 17, 300 }, + [16] = { 45.9, 34, 17, 300 }, + [17] = { 47.4, 34, 17, 300 }, + [18] = { 48.1, 34, 17, 300 }, + [19] = { 47.6, 33.9, 17, 300 }, + [20] = { 48.6, 33.8, 17, 300 }, + [21] = { 45.7, 33.8, 17, 300 }, + [22] = { 49, 33.8, 17, 300 }, + [23] = { 47.4, 33.7, 17, 300 }, + [24] = { 45.6, 33.5, 17, 300 }, + [25] = { 45.7, 33.5, 17, 300 }, + [26] = { 49.1, 33.5, 17, 300 }, + [27] = { 49.4, 33.3, 17, 300 }, + [28] = { 47.5, 33.3, 17, 300 }, + [29] = { 45.9, 33.1, 17, 300 }, + [30] = { 49, 33, 17, 300 }, + [31] = { 47.5, 32.9, 17, 300 }, + [32] = { 46.1, 32.7, 17, 300 }, + [33] = { 46.9, 32.7, 17, 300 }, + [34] = { 48.7, 32.7, 17, 300 }, + [35] = { 48, 32.7, 17, 300 }, + [36] = { 47.7, 32.7, 17, 300 }, + [37] = { 45.9, 32.7, 17, 300 }, + [38] = { 49.4, 32.6, 17, 300 }, + [39] = { 47.2, 32.6, 17, 300 }, + [40] = { 49, 32.6, 17, 300 }, + [41] = { 46.4, 32.5, 17, 300 }, + [42] = { 47.5, 32.5, 17, 300 }, + [43] = { 48.4, 32.4, 17, 300 }, + [44] = { 48.1, 32.4, 17, 300 }, + [45] = { 48, 32.4, 17, 300 }, + [46] = { 48.7, 32.3, 17, 300 }, + [47] = { 46.2, 32.3, 17, 300 }, + [48] = { 48.9, 32.2, 17, 300 }, + [49] = { 47.7, 32.2, 17, 300 }, + [50] = { 48.3, 32, 17, 300 }, + [51] = { 48.5, 31.9, 17, 300 }, + [52] = { 48.1, 31.9, 17, 300 }, + }, + }, + [19536] = { + ["coords"] = { + [1] = { 41.7, 19.3, 16, 180 }, + }, + }, + [19538] = { + ["coords"] = { + [1] = { 56.4, 49.3, 331, 0 }, + [2] = { 56.4, 49.2, 331, 0 }, + }, + }, + [19539] = { + ["coords"] = { + [1] = { 56.4, 49.3, 331, 0 }, + [2] = { 56.4, 49.2, 331, 0 }, + }, + }, + [19540] = { + ["coords"] = { + [1] = { 56.4, 49.2, 331, 0 }, + }, + }, + [19541] = { + ["coords"] = { + [1] = { 53.6, 75.7, 406, 180 }, + [2] = { 52.6, 75.5, 406, 180 }, + [3] = { 53.2, 74.7, 406, 180 }, + [4] = { 53.8, 74.3, 406, 180 }, + [5] = { 52.4, 74.2, 406, 180 }, + [6] = { 52.7, 73.7, 406, 180 }, + [7] = { 54.6, 73.5, 406, 180 }, + [8] = { 54.3, 72.9, 406, 180 }, + [9] = { 52.8, 72.8, 406, 180 }, + [10] = { 53.4, 72.6, 406, 180 }, + [11] = { 55, 71.5, 406, 180 }, + [12] = { 52.9, 71.1, 406, 180 }, + [13] = { 61.7, 64.7, 406, 180 }, + [14] = { 61, 64.1, 406, 180 }, + [15] = { 62.2, 63.1, 406, 180 }, + [16] = { 59.6, 62.1, 406, 180 }, + [17] = { 62.4, 61.3, 406, 180 }, + [18] = { 64.7, 60, 406, 180 }, + [19] = { 61.6, 59.4, 406, 180 }, + [20] = { 63.1, 59.2, 406, 180 }, + [21] = { 61.4, 56.7, 406, 180 }, + [22] = { 77.6, 54.6, 406, 180 }, + [23] = { 75, 53.8, 406, 180 }, + [24] = { 76.3, 53.7, 406, 180 }, + [25] = { 77.4, 52.5, 406, 180 }, + [26] = { 76.3, 51.5, 406, 180 }, + [27] = { 79.1, 50.9, 406, 180 }, + [28] = { 60, 49.7, 406, 180 }, + [29] = { 61.3, 48.7, 406, 180 }, + [30] = { 75, 47.6, 406, 180 }, + [31] = { 70.7, 46.6, 406, 180 }, + [32] = { 60.8, 46.6, 406, 180 }, + [33] = { 49, 46.5, 406, 180 }, + [34] = { 75.9, 45.9, 406, 180 }, + [35] = { 70.5, 45.8, 406, 180 }, + [36] = { 68.1, 45.5, 406, 180 }, + [37] = { 77.8, 45.2, 406, 180 }, + [38] = { 69.3, 44.7, 406, 180 }, + [39] = { 48.1, 44.4, 406, 180 }, + [40] = { 76.3, 43.7, 406, 180 }, + [41] = { 78.1, 43.6, 406, 180 }, + [42] = { 45.7, 43.4, 406, 180 }, + [43] = { 54.1, 42.8, 406, 180 }, + [44] = { 44.9, 42.7, 406, 180 }, + [45] = { 74.4, 42.7, 406, 180 }, + [46] = { 50.8, 40.5, 406, 180 }, + }, + ["fac"] = "AH", + }, + [19542] = { + ["coords"] = { + [1] = { 53.6, 75.7, 406, 180 }, + [2] = { 52.6, 75.5, 406, 180 }, + [3] = { 53.2, 74.7, 406, 180 }, + [4] = { 53.8, 74.3, 406, 180 }, + [5] = { 52.4, 74.2, 406, 180 }, + [6] = { 52.7, 73.7, 406, 180 }, + [7] = { 54.6, 73.5, 406, 180 }, + [8] = { 54.3, 72.9, 406, 180 }, + [9] = { 52.8, 72.8, 406, 180 }, + [10] = { 53.4, 72.6, 406, 180 }, + [11] = { 55, 71.5, 406, 180 }, + [12] = { 52.9, 71.1, 406, 180 }, + [13] = { 61.7, 64.7, 406, 180 }, + [14] = { 61, 64.1, 406, 180 }, + [15] = { 62.2, 63.1, 406, 180 }, + [16] = { 59.6, 62.1, 406, 180 }, + [17] = { 62.4, 61.3, 406, 180 }, + [18] = { 64.7, 60, 406, 180 }, + [19] = { 61.6, 59.4, 406, 180 }, + [20] = { 63.1, 59.2, 406, 180 }, + [21] = { 61.4, 56.7, 406, 180 }, + [22] = { 77.6, 54.6, 406, 180 }, + [23] = { 75, 53.8, 406, 180 }, + [24] = { 76.3, 53.7, 406, 180 }, + [25] = { 77.4, 52.5, 406, 180 }, + [26] = { 76.3, 51.5, 406, 180 }, + [27] = { 79.1, 50.9, 406, 180 }, + [28] = { 60, 49.7, 406, 180 }, + [29] = { 61.3, 48.7, 406, 180 }, + [30] = { 75, 47.6, 406, 180 }, + [31] = { 70.7, 46.6, 406, 180 }, + [32] = { 60.8, 46.6, 406, 180 }, + [33] = { 49, 46.5, 406, 180 }, + [34] = { 75.9, 45.9, 406, 180 }, + [35] = { 70.5, 45.8, 406, 180 }, + [36] = { 68.1, 45.5, 406, 180 }, + [37] = { 77.8, 45.2, 406, 180 }, + [38] = { 69.3, 44.7, 406, 180 }, + [39] = { 48.1, 44.4, 406, 180 }, + [40] = { 76.3, 43.7, 406, 180 }, + [41] = { 78.1, 43.6, 406, 180 }, + [42] = { 45.7, 43.4, 406, 180 }, + [43] = { 54.1, 42.8, 406, 180 }, + [44] = { 44.9, 42.7, 406, 180 }, + [45] = { 74.4, 42.7, 406, 180 }, + [46] = { 50.8, 40.5, 406, 180 }, + }, + ["fac"] = "AH", + }, + [19543] = { + ["coords"] = { + [1] = { 53.6, 75.7, 406, 180 }, + [2] = { 52.6, 75.5, 406, 180 }, + [3] = { 53.2, 74.7, 406, 180 }, + [4] = { 53.8, 74.3, 406, 180 }, + [5] = { 52.4, 74.2, 406, 180 }, + [6] = { 52.7, 73.7, 406, 180 }, + [7] = { 54.6, 73.5, 406, 180 }, + [8] = { 54.3, 72.9, 406, 180 }, + [9] = { 52.8, 72.8, 406, 180 }, + [10] = { 53.4, 72.6, 406, 180 }, + [11] = { 55, 71.5, 406, 180 }, + [12] = { 52.9, 71.1, 406, 180 }, + [13] = { 61.7, 64.7, 406, 180 }, + [14] = { 61, 64.1, 406, 180 }, + [15] = { 62.2, 63.1, 406, 180 }, + [16] = { 59.6, 62.1, 406, 180 }, + [17] = { 62.4, 61.3, 406, 180 }, + [18] = { 64.7, 60, 406, 180 }, + [19] = { 61.6, 59.4, 406, 180 }, + [20] = { 63.1, 59.2, 406, 180 }, + [21] = { 61.4, 56.7, 406, 180 }, + [22] = { 77.6, 54.6, 406, 180 }, + [23] = { 75, 53.8, 406, 180 }, + [24] = { 76.3, 53.7, 406, 180 }, + [25] = { 77.4, 52.5, 406, 180 }, + [26] = { 76.3, 51.5, 406, 180 }, + [27] = { 79.1, 50.9, 406, 180 }, + [28] = { 60, 49.7, 406, 180 }, + [29] = { 61.3, 48.7, 406, 180 }, + [30] = { 75, 47.6, 406, 180 }, + [31] = { 70.7, 46.6, 406, 180 }, + [32] = { 60.8, 46.6, 406, 180 }, + [33] = { 49, 46.5, 406, 180 }, + [34] = { 75.9, 45.9, 406, 180 }, + [35] = { 70.5, 45.8, 406, 180 }, + [36] = { 68.1, 45.5, 406, 180 }, + [37] = { 77.8, 45.2, 406, 180 }, + [38] = { 69.3, 44.7, 406, 180 }, + [39] = { 48.1, 44.4, 406, 180 }, + [40] = { 76.3, 43.7, 406, 180 }, + [41] = { 78.1, 43.6, 406, 180 }, + [42] = { 45.7, 43.4, 406, 180 }, + [43] = { 54.1, 42.8, 406, 180 }, + [44] = { 44.9, 42.7, 406, 180 }, + [45] = { 74.4, 42.7, 406, 180 }, + [46] = { 50.8, 40.5, 406, 180 }, + }, + }, + [19544] = { + ["coords"] = { + [1] = { 74.6, 98, 406, 0 }, + }, + }, + [19545] = { + ["coords"] = { + [1] = { 36.5, 54.3, 141, 900 }, + [2] = { 92.6, 35.3, 1657, 900 }, + }, + ["fac"] = "A", + }, + [19546] = { + ["coords"] = { + [1] = { 36.5, 54.3, 141, 900 }, + [2] = { 92.6, 35.3, 1657, 900 }, + }, + ["fac"] = "A", + }, + [19547] = { + ["coords"] = { + [1] = { 65.5, 53.7, 406, 900 }, + [2] = { 72.6, 50.6, 406, 900 }, + [3] = { 65.5, 45.6, 406, 900 }, + }, + }, + [19548] = { + ["coords"] = { + [1] = { 65, 69.7, 12, 900 }, + }, + }, + [19549] = { + ["coords"] = { + [1] = { 59.9, 33, 141, 900 }, + }, + }, + [19550] = { + ["coords"] = { + [1] = { 63.4, 58.1, 141, 900 }, + }, + }, + [19551] = { + ["coords"] = { + [1] = { 42.4, 67.1, 141, 25 }, + }, + }, + [19552] = { + ["coords"] = { + [1] = { 38.4, 34.1, 141, 900 }, + }, + }, + [19553] = { + ["coords"] = { + [1] = { 35.7, 27.5, 17, 900 }, + [2] = { 86.7, 97.2, 406, 900 }, + }, + }, + [19554] = { + ["coords"] = { + [1] = { 35.7, 27.5, 17, 900 }, + [2] = { 86.8, 97.2, 406, 900 }, + }, + }, + [19555] = { + ["coords"] = { + [1] = { 35.7, 27.5, 17, 900 }, + [2] = { 86.7, 97.2, 406, 900 }, + }, + }, + [19556] = { + ["coords"] = { + [1] = { 35.7, 27.5, 17, 900 }, + [2] = { 86.7, 97.2, 406, 900 }, + }, + }, + [19557] = { + ["coords"] = { + [1] = { 35.7, 27.6, 17, 900 }, + [2] = { 86.8, 97.2, 406, 900 }, + }, + }, + [19558] = { + ["coords"] = { + [1] = { 67.6, 86.7, 406, 900 }, + }, + }, + [19559] = { + ["coords"] = { + [1] = { 67.6, 86.7, 406, 900 }, + }, + }, + [19560] = { + ["coords"] = { + [1] = { 67.6, 86.7, 406, 900 }, + }, + }, + [19561] = { + ["coords"] = { + [1] = { 67.6, 86.7, 406, 900 }, + }, + }, + [19562] = { + ["coords"] = { + [1] = { 67.6, 86.7, 406, 900 }, + }, + }, + [19563] = { + ["coords"] = { + [1] = { 59.8, 71, 406, 900 }, + }, + }, + [19564] = { + ["coords"] = { + [1] = { 59.8, 71.1, 406, 900 }, + }, + }, + [19565] = { + ["coords"] = { + [1] = { 59.8, 71.1, 406, 900 }, + }, + }, + [19566] = { + ["coords"] = { + [1] = { 59.8, 71.1, 406, 900 }, + }, + }, + [19567] = { + ["coords"] = { + [1] = { 59.8, 71.1, 406, 900 }, + }, + }, + [19568] = { + ["coords"] = { + [1] = { 59.8, 71, 406, 900 }, + }, + }, + [19569] = { + ["coords"] = { + [1] = { 59.1, 70.1, 406, 900 }, + }, + }, + [19570] = { + ["coords"] = { + [1] = { 59.1, 70.1, 406, 900 }, + }, + }, + [19571] = { + ["coords"] = { + [1] = { 59.1, 70.1, 406, 900 }, + }, + }, + [19572] = { + ["coords"] = { + [1] = { 45.4, 41.2, 406, 900 }, + }, + ["fac"] = "A", + }, + [19573] = { + ["coords"] = { + [1] = { 45.4, 41.2, 406, 900 }, + }, + ["fac"] = "A", + }, + [19574] = { + ["coords"] = { + [1] = { 45.4, 41.2, 406, 900 }, + }, + ["fac"] = "A", + }, + [19575] = { + ["coords"] = { + [1] = { 45.4, 41.2, 406, 900 }, + }, + ["fac"] = "A", + }, + [19576] = { + ["coords"] = { + [1] = { 45.4, 41.2, 406, 900 }, + }, + ["fac"] = "A", + }, + [19577] = { + ["coords"] = { + [1] = { 45.4, 41.2, 406, 900 }, + }, + }, + [19578] = { + ["coords"] = { + [1] = { 42.5, 15.9, 406, 900 }, + }, + ["fac"] = "A", + }, + [19579] = { + ["coords"] = { + [1] = { 42.5, 15.9, 406, 900 }, + }, + ["fac"] = "A", + }, + [19580] = { + ["coords"] = { + [1] = { 42.5, 15.9, 406, 900 }, + }, + ["fac"] = "A", + }, + [19581] = { + ["coords"] = { + [1] = { 42.5, 15.9, 406, 900 }, + }, + ["fac"] = "A", + }, + [19582] = { + ["coords"] = {}, + }, + [19583] = { + ["coords"] = { + [1] = { 71.5, 86.5, 406, 900 }, + }, + ["fac"] = "H", + }, + [19585] = { + ["coords"] = { + [1] = { 35.7, 27.6, 17, 900 }, + [2] = { 86.8, 97.2, 406, 900 }, + }, + }, + [19587] = { + ["coords"] = {}, + }, + [19590] = { + ["coords"] = { + [1] = { 75.5, 57.4, 406, 900 }, + [2] = { 65.4, 53.7, 406, 900 }, + }, + }, + [19591] = { + ["coords"] = { + [1] = { 65.4, 53.7, 406, 900 }, + }, + }, + [19592] = { + ["coords"] = {}, + }, + [19594] = { + ["coords"] = { + [1] = { 66.5, 45.5, 406, 900 }, + }, + }, + [19595] = { + ["coords"] = { + [1] = { 29.9, 15.4, 406, 10 }, + }, + ["fac"] = "H", + }, + [19596] = { + ["coords"] = { + [1] = { 25.6, 11.4, 406, 10 }, + }, + ["fac"] = "H", + }, + [19597] = { + ["coords"] = { + [1] = { 29.5, 15.8, 406, 10 }, + }, + ["fac"] = "H", + }, + [19598] = { + ["coords"] = { + [1] = { 28, 13.8, 406, 10 }, + }, + ["fac"] = "H", + }, + [19599] = { + ["coords"] = { + [1] = { 26.6, 10.9, 406, 10 }, + }, + ["fac"] = "H", + }, + [19600] = { + ["coords"] = { + [1] = { 75.5, 57.3, 406, 900 }, + }, + ["fac"] = "A", + }, + [19601] = { + ["coords"] = {}, + }, + [19602] = { + ["coords"] = { + [1] = { 66.1, 51.3, 406, 10 }, + }, + ["fac"] = "A", + }, + [19603] = { + ["coords"] = { + [1] = { 74.5, 59.3, 406, 10 }, + }, + ["fac"] = "A", + }, + [19839] = { + ["coords"] = { + [1] = { 43.8, 93.9, 17, 180 }, + [2] = { 31.3, 26.1, 400, 180 }, + }, + }, + [19840] = { + ["coords"] = { + [1] = { 43.8, 93.9, 17, 180 }, + [2] = { 31.3, 26.2, 400, 180 }, + }, + }, + [19841] = { + ["coords"] = { + [1] = { 43.8, 93.9, 17, 180 }, + [2] = { 31.3, 26.2, 400, 180 }, + }, + }, + [19842] = { + ["coords"] = { + [1] = { 42.8, 97.4, 17, 180 }, + [2] = { 29.2, 34.3, 400, 180 }, + }, + }, + [19843] = { + ["coords"] = { + [1] = { 29.2, 34.3, 400, 180 }, + }, + }, + [19844] = { + ["coords"] = { + [1] = { 42.8, 97.4, 17, 180 }, + [2] = { 29.2, 34.2, 400, 180 }, + }, + }, + [19845] = { + ["coords"] = { + [1] = { 42.8, 97.4, 17, 180 }, + [2] = { 29.2, 34.2, 400, 180 }, + }, + }, + [19846] = { + ["coords"] = { + [1] = { 29.2, 34.3, 400, 180 }, + }, + }, + [19847] = { + ["coords"] = { + [1] = { 42.8, 97.4, 17, 180 }, + [2] = { 29.1, 34.3, 400, 180 }, + }, + }, + [19848] = { + ["coords"] = { + [1] = { 43.3, 46.9, 400, 180 }, + }, + }, + [19849] = { + ["coords"] = { + [1] = { 43.3, 46.9, 400, 180 }, + }, + }, + [19850] = { + ["coords"] = { + [1] = { 43.3, 46.9, 400, 180 }, + }, + }, + [19851] = { + ["coords"] = { + [1] = { 43.3, 46.9, 400, 180 }, + }, + }, + [19852] = { + ["coords"] = { + [1] = { 43.3, 46.9, 400, 180 }, + }, + }, + [19853] = { + ["coords"] = { + [1] = { 69.5, 57.2, 400, 180 }, + }, + }, + [19854] = { + ["coords"] = { + [1] = { 69.5, 57.2, 400, 180 }, + }, + }, + [19855] = { + ["coords"] = { + [1] = { 69.5, 57.2, 400, 180 }, + }, + }, + [19856] = { + ["coords"] = { + [1] = { 90.9, 43.7, 357, 180 }, + [2] = { 10.1, 14.4, 400, 180 }, + }, + }, + [19857] = { + ["coords"] = { + [1] = { 90.9, 43.7, 357, 180 }, + [2] = { 10.1, 14.4, 400, 180 }, + }, + }, + [19858] = { + ["coords"] = { + [1] = { 90.9, 43.7, 357, 180 }, + [2] = { 10.1, 14.4, 400, 180 }, + }, + }, + [19859] = { + ["coords"] = { + [1] = { 90.9, 43.7, 357, 180 }, + [2] = { 10.1, 14.4, 400, 180 }, + }, + }, + [19861] = { + ["coords"] = { + [1] = { 43.5, 93.1, 17, 10 }, + [2] = { 30.7, 24.3, 400, 10 }, + }, + ["fac"] = "A", + }, + [19862] = { + ["coords"] = { + [1] = { 26.2, 38.7, 331, 0 }, + }, + }, + [19863] = { + ["coords"] = { + [1] = { 25.4, 37.5, 331, 900 }, + }, + }, + [19868] = { + ["coords"] = { + [1] = { 77.5, 90.5, 400, 180 }, + [2] = { 82.3, 90.1, 400, 180 }, + [3] = { 78.4, 90, 400, 180 }, + [4] = { 76.3, 89.5, 400, 180 }, + [5] = { 80.7, 89.1, 400, 180 }, + [6] = { 80, 88, 400, 180 }, + [7] = { 82.8, 88, 400, 180 }, + [8] = { 81.9, 87.3, 400, 180 }, + [9] = { 76.2, 87, 400, 180 }, + [10] = { 83.8, 86.7, 400, 180 }, + [11] = { 79.3, 86.6, 400, 180 }, + [12] = { 77.3, 86.5, 400, 180 }, + [13] = { 81.5, 86.3, 400, 180 }, + [14] = { 82.8, 85.5, 400, 180 }, + [15] = { 79.4, 85.4, 400, 180 }, + [16] = { 78, 85.4, 400, 180 }, + [17] = { 76.8, 85.2, 400, 180 }, + [18] = { 76.8, 84.2, 400, 180 }, + [19] = { 77.8, 84.2, 400, 180 }, + [20] = { 88.4, 81, 400, 180 }, + [21] = { 72.5, 80.8, 400, 180 }, + [22] = { 71.6, 80.1, 400, 180 }, + [23] = { 88, 79.9, 400, 180 }, + [24] = { 70.8, 79.1, 400, 180 }, + [25] = { 69.9, 78.4, 400, 180 }, + [26] = { 71.6, 78.1, 400, 180 }, + [27] = { 87.8, 78.1, 400, 180 }, + [28] = { 70.6, 77, 400, 180 }, + [29] = { 88.7, 76.9, 400, 180 }, + [30] = { 72.3, 76.8, 400, 180 }, + [31] = { 87.9, 76.6, 400, 180 }, + [32] = { 87.1, 75.4, 400, 180 }, + [33] = { 88.3, 75, 400, 180 }, + [34] = { 71, 74.5, 400, 180 }, + [35] = { 72.3, 74.5, 400, 180 }, + [36] = { 86.2, 74.5, 400, 180 }, + [37] = { 87.3, 73.5, 400, 180 }, + [38] = { 72.5, 72.3, 400, 180 }, + [39] = { 86.9, 72.2, 400, 180 }, + [40] = { 71, 72, 400, 180 }, + [41] = { 87.6, 71.2, 400, 180 }, + [42] = { 72.3, 70.2, 400, 180 }, + [43] = { 86.9, 70, 400, 180 }, + [44] = { 73.2, 68.7, 400, 180 }, + [45] = { 86.1, 68.6, 400, 180 }, + [46] = { 71.7, 68.6, 400, 180 }, + [47] = { 86.9, 67.9, 400, 180 }, + [48] = { 88.2, 67.7, 400, 180 }, + [49] = { 87.3, 66.8, 400, 180 }, + [50] = { 71.6, 66.6, 400, 180 }, + [51] = { 88.9, 66.5, 400, 180 }, + [52] = { 70.2, 66.3, 400, 180 }, + [53] = { 88.2, 65.6, 400, 180 }, + [54] = { 87, 65.2, 400, 180 }, + [55] = { 86.5, 64.7, 400, 180 }, + [56] = { 82.9, 64.6, 400, 180 }, + [57] = { 71.5, 64.5, 400, 180 }, + [58] = { 70.1, 64.3, 400, 180 }, + [59] = { 74.1, 63.7, 400, 180 }, + [60] = { 86.6, 63.4, 400, 180 }, + [61] = { 70, 63.2, 400, 180 }, + [62] = { 87.7, 62.8, 400, 180 }, + [63] = { 72.3, 62.8, 400, 180 }, + [64] = { 85.7, 62.4, 400, 180 }, + [65] = { 70.2, 61.9, 400, 180 }, + [66] = { 85.6, 61.5, 400, 180 }, + [67] = { 69.6, 61.2, 400, 180 }, + [68] = { 74, 61.2, 400, 180 }, + [69] = { 86.7, 60.8, 400, 180 }, + [70] = { 88, 60.8, 400, 180 }, + [71] = { 70.2, 60.2, 400, 180 }, + [72] = { 74.7, 59.7, 400, 180 }, + [73] = { 73.1, 59.7, 400, 180 }, + [74] = { 86, 59.6, 400, 180 }, + [75] = { 70.6, 59.1, 400, 180 }, + [76] = { 79.5, 59.1, 400, 180 }, + [77] = { 69.9, 58.9, 400, 180 }, + [78] = { 86.7, 58.4, 400, 180 }, + [79] = { 85.2, 58.4, 400, 180 }, + [80] = { 70.3, 58, 400, 180 }, + [81] = { 73.4, 57.8, 400, 180 }, + [82] = { 85.9, 57.3, 400, 180 }, + [83] = { 70.2, 57.1, 400, 180 }, + [84] = { 71.4, 57.1, 400, 180 }, + [85] = { 72.3, 56.5, 400, 180 }, + [86] = { 75.4, 56.4, 400, 180 }, + [87] = { 71, 56.3, 400, 180 }, + [88] = { 82.1, 56.3, 400, 180 }, + [89] = { 80.6, 56.3, 400, 180 }, + [90] = { 79.2, 56.2, 400, 180 }, + [91] = { 83.6, 56.2, 400, 180 }, + [92] = { 73.1, 55.5, 400, 180 }, + [93] = { 74.5, 55.3, 400, 180 }, + [94] = { 76, 55.2, 400, 180 }, + [95] = { 79.8, 55.2, 400, 180 }, + [96] = { 82.8, 55.2, 400, 180 }, + [97] = { 78.3, 55.2, 400, 180 }, + [98] = { 80.7, 54.1, 400, 180 }, + [99] = { 79.1, 54.1, 400, 180 }, + [100] = { 77.5, 54.1, 400, 180 }, + [101] = { 75.4, 53.9, 400, 180 }, + [102] = { 76.9, 53.1, 400, 180 }, + [103] = { 78.3, 52.9, 400, 180 }, + [104] = { 77.7, 51.8, 400, 180 }, + }, + }, + [19869] = { + ["coords"] = { + [1] = { 77.5, 90.5, 400, 180 }, + [2] = { 82.3, 90.1, 400, 180 }, + [3] = { 78.4, 90, 400, 180 }, + [4] = { 76.3, 89.5, 400, 180 }, + [5] = { 80.7, 89.1, 400, 180 }, + [6] = { 80, 88, 400, 180 }, + [7] = { 82.8, 88, 400, 180 }, + [8] = { 81.9, 87.3, 400, 180 }, + [9] = { 76.2, 87, 400, 180 }, + [10] = { 83.8, 86.7, 400, 180 }, + [11] = { 79.3, 86.6, 400, 180 }, + [12] = { 77.3, 86.5, 400, 180 }, + [13] = { 81.5, 86.3, 400, 180 }, + [14] = { 82.8, 85.5, 400, 180 }, + [15] = { 79.4, 85.4, 400, 180 }, + [16] = { 78, 85.4, 400, 180 }, + [17] = { 76.8, 85.2, 400, 180 }, + [18] = { 76.8, 84.2, 400, 180 }, + [19] = { 77.8, 84.2, 400, 180 }, + [20] = { 88.4, 81, 400, 180 }, + [21] = { 72.5, 80.8, 400, 180 }, + [22] = { 71.6, 80.1, 400, 180 }, + [23] = { 88, 79.9, 400, 180 }, + [24] = { 70.8, 79.1, 400, 180 }, + [25] = { 69.9, 78.4, 400, 180 }, + [26] = { 71.6, 78.1, 400, 180 }, + [27] = { 87.8, 78.1, 400, 180 }, + [28] = { 70.6, 77, 400, 180 }, + [29] = { 88.7, 76.9, 400, 180 }, + [30] = { 72.3, 76.8, 400, 180 }, + [31] = { 87.9, 76.6, 400, 180 }, + [32] = { 87.1, 75.4, 400, 180 }, + [33] = { 88.3, 75, 400, 180 }, + [34] = { 71, 74.5, 400, 180 }, + [35] = { 72.3, 74.5, 400, 180 }, + [36] = { 86.2, 74.5, 400, 180 }, + [37] = { 87.3, 73.5, 400, 180 }, + [38] = { 72.5, 72.3, 400, 180 }, + [39] = { 86.9, 72.2, 400, 180 }, + [40] = { 71, 72, 400, 180 }, + [41] = { 87.6, 71.2, 400, 180 }, + [42] = { 72.3, 70.2, 400, 180 }, + [43] = { 86.9, 70, 400, 180 }, + [44] = { 73.2, 68.7, 400, 180 }, + [45] = { 86.1, 68.6, 400, 180 }, + [46] = { 71.7, 68.6, 400, 180 }, + [47] = { 86.9, 67.9, 400, 180 }, + [48] = { 88.2, 67.7, 400, 180 }, + [49] = { 87.3, 66.8, 400, 180 }, + [50] = { 71.6, 66.6, 400, 180 }, + [51] = { 88.9, 66.5, 400, 180 }, + [52] = { 70.2, 66.3, 400, 180 }, + [53] = { 88.2, 65.6, 400, 180 }, + [54] = { 87, 65.2, 400, 180 }, + [55] = { 86.5, 64.7, 400, 180 }, + [56] = { 82.9, 64.6, 400, 180 }, + [57] = { 71.5, 64.5, 400, 180 }, + [58] = { 70.1, 64.3, 400, 180 }, + [59] = { 74.1, 63.7, 400, 180 }, + [60] = { 86.6, 63.4, 400, 180 }, + [61] = { 70, 63.2, 400, 180 }, + [62] = { 87.7, 62.8, 400, 180 }, + [63] = { 72.3, 62.8, 400, 180 }, + [64] = { 85.7, 62.4, 400, 180 }, + [65] = { 70.2, 61.9, 400, 180 }, + [66] = { 85.6, 61.5, 400, 180 }, + [67] = { 69.6, 61.2, 400, 180 }, + [68] = { 74, 61.2, 400, 180 }, + [69] = { 86.7, 60.8, 400, 180 }, + [70] = { 88, 60.8, 400, 180 }, + [71] = { 70.2, 60.2, 400, 180 }, + [72] = { 74.7, 59.7, 400, 180 }, + [73] = { 73.1, 59.7, 400, 180 }, + [74] = { 86, 59.6, 400, 180 }, + [75] = { 70.6, 59.1, 400, 180 }, + [76] = { 79.5, 59.1, 400, 180 }, + [77] = { 69.9, 58.9, 400, 180 }, + [78] = { 86.7, 58.4, 400, 180 }, + [79] = { 85.2, 58.4, 400, 180 }, + [80] = { 70.3, 58, 400, 180 }, + [81] = { 73.4, 57.8, 400, 180 }, + [82] = { 85.9, 57.3, 400, 180 }, + [83] = { 70.2, 57.1, 400, 180 }, + [84] = { 71.4, 57.1, 400, 180 }, + [85] = { 72.3, 56.5, 400, 180 }, + [86] = { 75.4, 56.4, 400, 180 }, + [87] = { 71, 56.3, 400, 180 }, + [88] = { 82.1, 56.3, 400, 180 }, + [89] = { 80.6, 56.3, 400, 180 }, + [90] = { 79.2, 56.2, 400, 180 }, + [91] = { 83.6, 56.2, 400, 180 }, + [92] = { 73.1, 55.5, 400, 180 }, + [93] = { 74.5, 55.3, 400, 180 }, + [94] = { 76, 55.2, 400, 180 }, + [95] = { 79.8, 55.2, 400, 180 }, + [96] = { 82.8, 55.2, 400, 180 }, + [97] = { 78.3, 55.2, 400, 180 }, + [98] = { 80.7, 54.1, 400, 180 }, + [99] = { 79.1, 54.1, 400, 180 }, + [100] = { 77.5, 54.1, 400, 180 }, + [101] = { 75.4, 53.9, 400, 180 }, + [102] = { 76.9, 53.1, 400, 180 }, + [103] = { 78.3, 52.9, 400, 180 }, + [104] = { 77.7, 51.8, 400, 180 }, + }, + }, + [19870] = { + ["coords"] = { + [1] = { 77.5, 90.5, 400, 180 }, + [2] = { 82.3, 90.1, 400, 180 }, + [3] = { 78.4, 90, 400, 180 }, + [4] = { 76.3, 89.5, 400, 180 }, + [5] = { 80.7, 89.1, 400, 180 }, + [6] = { 80, 88, 400, 180 }, + [7] = { 82.8, 88, 400, 180 }, + [8] = { 81.9, 87.3, 400, 180 }, + [9] = { 76.2, 87, 400, 180 }, + [10] = { 83.8, 86.7, 400, 180 }, + [11] = { 79.3, 86.6, 400, 180 }, + [12] = { 77.3, 86.5, 400, 180 }, + [13] = { 81.5, 86.3, 400, 180 }, + [14] = { 82.8, 85.5, 400, 180 }, + [15] = { 79.4, 85.4, 400, 180 }, + [16] = { 78, 85.4, 400, 180 }, + [17] = { 76.8, 85.2, 400, 180 }, + [18] = { 76.8, 84.2, 400, 180 }, + [19] = { 77.8, 84.2, 400, 180 }, + [20] = { 88.4, 81, 400, 180 }, + [21] = { 72.5, 80.8, 400, 180 }, + [22] = { 71.6, 80.1, 400, 180 }, + [23] = { 88, 79.9, 400, 180 }, + [24] = { 70.8, 79.1, 400, 180 }, + [25] = { 69.9, 78.4, 400, 180 }, + [26] = { 71.6, 78.1, 400, 180 }, + [27] = { 87.8, 78.1, 400, 180 }, + [28] = { 70.6, 77, 400, 180 }, + [29] = { 88.7, 76.9, 400, 180 }, + [30] = { 72.3, 76.8, 400, 180 }, + [31] = { 87.9, 76.6, 400, 180 }, + [32] = { 87.1, 75.4, 400, 180 }, + [33] = { 88.3, 75, 400, 180 }, + [34] = { 71, 74.5, 400, 180 }, + [35] = { 72.3, 74.5, 400, 180 }, + [36] = { 86.2, 74.5, 400, 180 }, + [37] = { 87.3, 73.5, 400, 180 }, + [38] = { 72.5, 72.3, 400, 180 }, + [39] = { 86.9, 72.2, 400, 180 }, + [40] = { 71, 72, 400, 180 }, + [41] = { 87.6, 71.2, 400, 180 }, + [42] = { 72.3, 70.2, 400, 180 }, + [43] = { 86.9, 70, 400, 180 }, + [44] = { 73.2, 68.7, 400, 180 }, + [45] = { 86.1, 68.6, 400, 180 }, + [46] = { 71.7, 68.6, 400, 180 }, + [47] = { 86.9, 67.9, 400, 180 }, + [48] = { 88.2, 67.7, 400, 180 }, + [49] = { 87.3, 66.8, 400, 180 }, + [50] = { 71.6, 66.6, 400, 180 }, + [51] = { 88.9, 66.5, 400, 180 }, + [52] = { 70.2, 66.3, 400, 180 }, + [53] = { 88.2, 65.6, 400, 180 }, + [54] = { 87, 65.2, 400, 180 }, + [55] = { 86.5, 64.7, 400, 180 }, + [56] = { 82.9, 64.6, 400, 180 }, + [57] = { 71.5, 64.5, 400, 180 }, + [58] = { 70.1, 64.3, 400, 180 }, + [59] = { 74.1, 63.7, 400, 180 }, + [60] = { 86.6, 63.4, 400, 180 }, + [61] = { 70, 63.2, 400, 180 }, + [62] = { 87.7, 62.8, 400, 180 }, + [63] = { 72.3, 62.8, 400, 180 }, + [64] = { 85.7, 62.4, 400, 180 }, + [65] = { 70.2, 61.9, 400, 180 }, + [66] = { 85.6, 61.5, 400, 180 }, + [67] = { 69.6, 61.2, 400, 180 }, + [68] = { 74, 61.2, 400, 180 }, + [69] = { 86.7, 60.8, 400, 180 }, + [70] = { 88, 60.8, 400, 180 }, + [71] = { 70.2, 60.2, 400, 180 }, + [72] = { 74.7, 59.7, 400, 180 }, + [73] = { 73.1, 59.7, 400, 180 }, + [74] = { 86, 59.6, 400, 180 }, + [75] = { 70.6, 59.1, 400, 180 }, + [76] = { 79.5, 59.1, 400, 180 }, + [77] = { 69.9, 58.9, 400, 180 }, + [78] = { 86.7, 58.4, 400, 180 }, + [79] = { 85.2, 58.4, 400, 180 }, + [80] = { 70.3, 58, 400, 180 }, + [81] = { 73.4, 57.8, 400, 180 }, + [82] = { 85.9, 57.3, 400, 180 }, + [83] = { 70.2, 57.1, 400, 180 }, + [84] = { 71.4, 57.1, 400, 180 }, + [85] = { 72.3, 56.5, 400, 180 }, + [86] = { 75.4, 56.4, 400, 180 }, + [87] = { 71, 56.3, 400, 180 }, + [88] = { 82.1, 56.3, 400, 180 }, + [89] = { 80.6, 56.3, 400, 180 }, + [90] = { 79.2, 56.2, 400, 180 }, + [91] = { 83.6, 56.2, 400, 180 }, + [92] = { 73.1, 55.5, 400, 180 }, + [93] = { 74.5, 55.3, 400, 180 }, + [94] = { 76, 55.2, 400, 180 }, + [95] = { 79.8, 55.2, 400, 180 }, + [96] = { 82.8, 55.2, 400, 180 }, + [97] = { 78.3, 55.2, 400, 180 }, + [98] = { 80.7, 54.1, 400, 180 }, + [99] = { 79.1, 54.1, 400, 180 }, + [100] = { 77.5, 54.1, 400, 180 }, + [101] = { 75.4, 53.9, 400, 180 }, + [102] = { 76.9, 53.1, 400, 180 }, + [103] = { 78.3, 52.9, 400, 180 }, + [104] = { 77.7, 51.8, 400, 180 }, + }, + }, + [19871] = { + ["coords"] = { + [1] = { 77.5, 90.5, 400, 180 }, + [2] = { 82.3, 90.1, 400, 180 }, + [3] = { 78.4, 90, 400, 180 }, + [4] = { 76.3, 89.5, 400, 180 }, + [5] = { 80.7, 89.1, 400, 180 }, + [6] = { 80, 88, 400, 180 }, + [7] = { 82.8, 88, 400, 180 }, + [8] = { 81.9, 87.3, 400, 180 }, + [9] = { 76.2, 87, 400, 180 }, + [10] = { 83.8, 86.7, 400, 180 }, + [11] = { 79.3, 86.6, 400, 180 }, + [12] = { 77.3, 86.5, 400, 180 }, + [13] = { 81.5, 86.3, 400, 180 }, + [14] = { 82.8, 85.5, 400, 180 }, + [15] = { 79.4, 85.4, 400, 180 }, + [16] = { 78, 85.4, 400, 180 }, + [17] = { 76.8, 85.2, 400, 180 }, + [18] = { 76.8, 84.2, 400, 180 }, + [19] = { 77.8, 84.2, 400, 180 }, + [20] = { 88.4, 81, 400, 180 }, + [21] = { 72.5, 80.8, 400, 180 }, + [22] = { 71.6, 80.1, 400, 180 }, + [23] = { 88, 79.9, 400, 180 }, + [24] = { 70.8, 79.1, 400, 180 }, + [25] = { 69.9, 78.4, 400, 180 }, + [26] = { 71.6, 78.1, 400, 180 }, + [27] = { 87.8, 78.1, 400, 180 }, + [28] = { 70.6, 77, 400, 180 }, + [29] = { 88.7, 76.9, 400, 180 }, + [30] = { 72.3, 76.8, 400, 180 }, + [31] = { 87.9, 76.6, 400, 180 }, + [32] = { 87.1, 75.4, 400, 180 }, + [33] = { 88.3, 75, 400, 180 }, + [34] = { 71, 74.5, 400, 180 }, + [35] = { 72.3, 74.5, 400, 180 }, + [36] = { 86.2, 74.5, 400, 180 }, + [37] = { 87.3, 73.5, 400, 180 }, + [38] = { 72.5, 72.3, 400, 180 }, + [39] = { 86.9, 72.2, 400, 180 }, + [40] = { 71, 72, 400, 180 }, + [41] = { 87.6, 71.2, 400, 180 }, + [42] = { 72.3, 70.2, 400, 180 }, + [43] = { 86.9, 70, 400, 180 }, + [44] = { 73.2, 68.7, 400, 180 }, + [45] = { 86.1, 68.6, 400, 180 }, + [46] = { 71.7, 68.6, 400, 180 }, + [47] = { 86.9, 67.9, 400, 180 }, + [48] = { 88.2, 67.7, 400, 180 }, + [49] = { 87.3, 66.8, 400, 180 }, + [50] = { 71.6, 66.6, 400, 180 }, + [51] = { 88.9, 66.5, 400, 180 }, + [52] = { 70.2, 66.3, 400, 180 }, + [53] = { 88.2, 65.6, 400, 180 }, + [54] = { 87, 65.2, 400, 180 }, + [55] = { 86.5, 64.7, 400, 180 }, + [56] = { 82.9, 64.6, 400, 180 }, + [57] = { 71.5, 64.5, 400, 180 }, + [58] = { 70.1, 64.3, 400, 180 }, + [59] = { 74.1, 63.7, 400, 180 }, + [60] = { 86.6, 63.4, 400, 180 }, + [61] = { 70, 63.2, 400, 180 }, + [62] = { 87.7, 62.8, 400, 180 }, + [63] = { 72.3, 62.8, 400, 180 }, + [64] = { 85.7, 62.4, 400, 180 }, + [65] = { 70.2, 61.9, 400, 180 }, + [66] = { 85.6, 61.5, 400, 180 }, + [67] = { 69.6, 61.2, 400, 180 }, + [68] = { 74, 61.2, 400, 180 }, + [69] = { 86.7, 60.8, 400, 180 }, + [70] = { 88, 60.8, 400, 180 }, + [71] = { 70.2, 60.2, 400, 180 }, + [72] = { 74.7, 59.7, 400, 180 }, + [73] = { 73.1, 59.7, 400, 180 }, + [74] = { 86, 59.6, 400, 180 }, + [75] = { 70.6, 59.1, 400, 180 }, + [76] = { 79.5, 59.1, 400, 180 }, + [77] = { 69.9, 58.9, 400, 180 }, + [78] = { 86.7, 58.4, 400, 180 }, + [79] = { 85.2, 58.4, 400, 180 }, + [80] = { 70.3, 58, 400, 180 }, + [81] = { 73.4, 57.8, 400, 180 }, + [82] = { 85.9, 57.3, 400, 180 }, + [83] = { 70.2, 57.1, 400, 180 }, + [84] = { 71.4, 57.1, 400, 180 }, + [85] = { 72.3, 56.5, 400, 180 }, + [86] = { 75.4, 56.4, 400, 180 }, + [87] = { 71, 56.3, 400, 180 }, + [88] = { 82.1, 56.3, 400, 180 }, + [89] = { 80.6, 56.3, 400, 180 }, + [90] = { 79.2, 56.2, 400, 180 }, + [91] = { 83.6, 56.2, 400, 180 }, + [92] = { 73.1, 55.5, 400, 180 }, + [93] = { 74.5, 55.3, 400, 180 }, + [94] = { 76, 55.2, 400, 180 }, + [95] = { 79.8, 55.2, 400, 180 }, + [96] = { 82.8, 55.2, 400, 180 }, + [97] = { 78.3, 55.2, 400, 180 }, + [98] = { 80.7, 54.1, 400, 180 }, + [99] = { 79.1, 54.1, 400, 180 }, + [100] = { 77.5, 54.1, 400, 180 }, + [101] = { 75.4, 53.9, 400, 180 }, + [102] = { 76.9, 53.1, 400, 180 }, + [103] = { 78.3, 52.9, 400, 180 }, + [104] = { 77.7, 51.8, 400, 180 }, + }, + }, + [19872] = { + ["coords"] = { + [1] = { 77.5, 90.5, 400, 180 }, + [2] = { 82.3, 90.1, 400, 180 }, + [3] = { 78.4, 90, 400, 180 }, + [4] = { 76.3, 89.5, 400, 180 }, + [5] = { 80.7, 89.1, 400, 180 }, + [6] = { 80, 88, 400, 180 }, + [7] = { 82.8, 88, 400, 180 }, + [8] = { 81.9, 87.3, 400, 180 }, + [9] = { 76.2, 87, 400, 180 }, + [10] = { 83.8, 86.7, 400, 180 }, + [11] = { 79.3, 86.6, 400, 180 }, + [12] = { 77.3, 86.5, 400, 180 }, + [13] = { 81.5, 86.3, 400, 180 }, + [14] = { 82.8, 85.5, 400, 180 }, + [15] = { 79.4, 85.4, 400, 180 }, + [16] = { 78, 85.4, 400, 180 }, + [17] = { 76.8, 85.2, 400, 180 }, + [18] = { 76.8, 84.2, 400, 180 }, + [19] = { 77.8, 84.2, 400, 180 }, + [20] = { 88.4, 81, 400, 180 }, + [21] = { 72.5, 80.8, 400, 180 }, + [22] = { 71.6, 80.1, 400, 180 }, + [23] = { 88, 79.9, 400, 180 }, + [24] = { 70.8, 79.1, 400, 180 }, + [25] = { 69.9, 78.4, 400, 180 }, + [26] = { 71.6, 78.1, 400, 180 }, + [27] = { 87.8, 78.1, 400, 180 }, + [28] = { 70.6, 77, 400, 180 }, + [29] = { 88.7, 76.9, 400, 180 }, + [30] = { 72.3, 76.8, 400, 180 }, + [31] = { 87.9, 76.6, 400, 180 }, + [32] = { 87.1, 75.4, 400, 180 }, + [33] = { 88.3, 75, 400, 180 }, + [34] = { 71, 74.5, 400, 180 }, + [35] = { 72.3, 74.5, 400, 180 }, + [36] = { 86.2, 74.5, 400, 180 }, + [37] = { 87.3, 73.5, 400, 180 }, + [38] = { 72.5, 72.3, 400, 180 }, + [39] = { 86.9, 72.2, 400, 180 }, + [40] = { 71, 72, 400, 180 }, + [41] = { 87.6, 71.2, 400, 180 }, + [42] = { 72.3, 70.2, 400, 180 }, + [43] = { 86.9, 70, 400, 180 }, + [44] = { 73.2, 68.7, 400, 180 }, + [45] = { 86.1, 68.6, 400, 180 }, + [46] = { 71.7, 68.6, 400, 180 }, + [47] = { 86.9, 67.9, 400, 180 }, + [48] = { 88.2, 67.7, 400, 180 }, + [49] = { 87.3, 66.8, 400, 180 }, + [50] = { 71.6, 66.6, 400, 180 }, + [51] = { 88.9, 66.5, 400, 180 }, + [52] = { 70.2, 66.3, 400, 180 }, + [53] = { 88.2, 65.6, 400, 180 }, + [54] = { 87, 65.2, 400, 180 }, + [55] = { 86.5, 64.7, 400, 180 }, + [56] = { 82.9, 64.6, 400, 180 }, + [57] = { 71.5, 64.5, 400, 180 }, + [58] = { 70.1, 64.3, 400, 180 }, + [59] = { 74.1, 63.7, 400, 180 }, + [60] = { 86.6, 63.4, 400, 180 }, + [61] = { 70, 63.2, 400, 180 }, + [62] = { 87.7, 62.8, 400, 180 }, + [63] = { 72.3, 62.8, 400, 180 }, + [64] = { 85.7, 62.4, 400, 180 }, + [65] = { 70.2, 61.9, 400, 180 }, + [66] = { 85.6, 61.5, 400, 180 }, + [67] = { 69.6, 61.2, 400, 180 }, + [68] = { 74, 61.2, 400, 180 }, + [69] = { 86.7, 60.8, 400, 180 }, + [70] = { 88, 60.8, 400, 180 }, + [71] = { 70.2, 60.2, 400, 180 }, + [72] = { 74.7, 59.7, 400, 180 }, + [73] = { 73.1, 59.7, 400, 180 }, + [74] = { 86, 59.6, 400, 180 }, + [75] = { 70.6, 59.1, 400, 180 }, + [76] = { 79.5, 59.1, 400, 180 }, + [77] = { 69.9, 58.9, 400, 180 }, + [78] = { 86.7, 58.4, 400, 180 }, + [79] = { 85.2, 58.4, 400, 180 }, + [80] = { 70.3, 58, 400, 180 }, + [81] = { 73.4, 57.8, 400, 180 }, + [82] = { 85.9, 57.3, 400, 180 }, + [83] = { 70.2, 57.1, 400, 180 }, + [84] = { 71.4, 57.1, 400, 180 }, + [85] = { 72.3, 56.5, 400, 180 }, + [86] = { 75.4, 56.4, 400, 180 }, + [87] = { 71, 56.3, 400, 180 }, + [88] = { 82.1, 56.3, 400, 180 }, + [89] = { 80.6, 56.3, 400, 180 }, + [90] = { 79.2, 56.2, 400, 180 }, + [91] = { 83.6, 56.2, 400, 180 }, + [92] = { 73.1, 55.5, 400, 180 }, + [93] = { 74.5, 55.3, 400, 180 }, + [94] = { 76, 55.2, 400, 180 }, + [95] = { 79.8, 55.2, 400, 180 }, + [96] = { 82.8, 55.2, 400, 180 }, + [97] = { 78.3, 55.2, 400, 180 }, + [98] = { 80.7, 54.1, 400, 180 }, + [99] = { 79.1, 54.1, 400, 180 }, + [100] = { 77.5, 54.1, 400, 180 }, + [101] = { 75.4, 53.9, 400, 180 }, + [102] = { 76.9, 53.1, 400, 180 }, + [103] = { 78.3, 52.9, 400, 180 }, + [104] = { 77.7, 51.8, 400, 180 }, + }, + }, + [19873] = { + ["coords"] = { + [1] = { 77.5, 90.5, 400, 180 }, + [2] = { 82.3, 90.1, 400, 180 }, + [3] = { 78.4, 90, 400, 180 }, + [4] = { 76.3, 89.5, 400, 180 }, + [5] = { 80.7, 89.1, 400, 180 }, + [6] = { 80, 88, 400, 180 }, + [7] = { 82.8, 88, 400, 180 }, + [8] = { 81.9, 87.3, 400, 180 }, + [9] = { 76.2, 87, 400, 180 }, + [10] = { 83.8, 86.7, 400, 180 }, + [11] = { 79.3, 86.6, 400, 180 }, + [12] = { 77.3, 86.5, 400, 180 }, + [13] = { 81.5, 86.3, 400, 180 }, + [14] = { 82.8, 85.5, 400, 180 }, + [15] = { 79.4, 85.4, 400, 180 }, + [16] = { 78, 85.4, 400, 180 }, + [17] = { 76.8, 85.2, 400, 180 }, + [18] = { 76.8, 84.2, 400, 180 }, + [19] = { 77.8, 84.2, 400, 180 }, + [20] = { 88.4, 81, 400, 180 }, + [21] = { 72.5, 80.8, 400, 180 }, + [22] = { 71.6, 80.1, 400, 180 }, + [23] = { 88, 79.9, 400, 180 }, + [24] = { 70.8, 79.1, 400, 180 }, + [25] = { 69.9, 78.4, 400, 180 }, + [26] = { 71.6, 78.1, 400, 180 }, + [27] = { 87.8, 78.1, 400, 180 }, + [28] = { 70.6, 77, 400, 180 }, + [29] = { 88.7, 76.9, 400, 180 }, + [30] = { 72.3, 76.8, 400, 180 }, + [31] = { 87.9, 76.6, 400, 180 }, + [32] = { 87.1, 75.4, 400, 180 }, + [33] = { 88.3, 75, 400, 180 }, + [34] = { 71, 74.5, 400, 180 }, + [35] = { 72.3, 74.5, 400, 180 }, + [36] = { 86.2, 74.5, 400, 180 }, + [37] = { 87.3, 73.5, 400, 180 }, + [38] = { 72.5, 72.3, 400, 180 }, + [39] = { 86.9, 72.2, 400, 180 }, + [40] = { 71, 72, 400, 180 }, + [41] = { 87.6, 71.2, 400, 180 }, + [42] = { 72.3, 70.2, 400, 180 }, + [43] = { 86.9, 70, 400, 180 }, + [44] = { 73.2, 68.7, 400, 180 }, + [45] = { 86.1, 68.6, 400, 180 }, + [46] = { 71.7, 68.6, 400, 180 }, + [47] = { 86.9, 67.9, 400, 180 }, + [48] = { 88.2, 67.7, 400, 180 }, + [49] = { 87.3, 66.8, 400, 180 }, + [50] = { 71.6, 66.6, 400, 180 }, + [51] = { 88.9, 66.5, 400, 180 }, + [52] = { 70.2, 66.3, 400, 180 }, + [53] = { 88.2, 65.6, 400, 180 }, + [54] = { 87, 65.2, 400, 180 }, + [55] = { 86.5, 64.7, 400, 180 }, + [56] = { 82.9, 64.6, 400, 180 }, + [57] = { 71.5, 64.5, 400, 180 }, + [58] = { 70.1, 64.3, 400, 180 }, + [59] = { 74.1, 63.7, 400, 180 }, + [60] = { 86.6, 63.4, 400, 180 }, + [61] = { 70, 63.2, 400, 180 }, + [62] = { 87.7, 62.8, 400, 180 }, + [63] = { 72.3, 62.8, 400, 180 }, + [64] = { 85.7, 62.4, 400, 180 }, + [65] = { 70.2, 61.9, 400, 180 }, + [66] = { 85.6, 61.5, 400, 180 }, + [67] = { 69.6, 61.2, 400, 180 }, + [68] = { 74, 61.2, 400, 180 }, + [69] = { 86.7, 60.8, 400, 180 }, + [70] = { 88, 60.8, 400, 180 }, + [71] = { 70.2, 60.2, 400, 180 }, + [72] = { 74.7, 59.7, 400, 180 }, + [73] = { 73.1, 59.7, 400, 180 }, + [74] = { 86, 59.6, 400, 180 }, + [75] = { 70.6, 59.1, 400, 180 }, + [76] = { 79.5, 59.1, 400, 180 }, + [77] = { 69.9, 58.9, 400, 180 }, + [78] = { 86.7, 58.4, 400, 180 }, + [79] = { 85.2, 58.4, 400, 180 }, + [80] = { 70.3, 58, 400, 180 }, + [81] = { 73.4, 57.8, 400, 180 }, + [82] = { 85.9, 57.3, 400, 180 }, + [83] = { 70.2, 57.1, 400, 180 }, + [84] = { 71.4, 57.1, 400, 180 }, + [85] = { 72.3, 56.5, 400, 180 }, + [86] = { 75.4, 56.4, 400, 180 }, + [87] = { 71, 56.3, 400, 180 }, + [88] = { 82.1, 56.3, 400, 180 }, + [89] = { 80.6, 56.3, 400, 180 }, + [90] = { 79.2, 56.2, 400, 180 }, + [91] = { 83.6, 56.2, 400, 180 }, + [92] = { 73.1, 55.5, 400, 180 }, + [93] = { 74.5, 55.3, 400, 180 }, + [94] = { 76, 55.2, 400, 180 }, + [95] = { 79.8, 55.2, 400, 180 }, + [96] = { 82.8, 55.2, 400, 180 }, + [97] = { 78.3, 55.2, 400, 180 }, + [98] = { 80.7, 54.1, 400, 180 }, + [99] = { 79.1, 54.1, 400, 180 }, + [100] = { 77.5, 54.1, 400, 180 }, + [101] = { 75.4, 53.9, 400, 180 }, + [102] = { 76.9, 53.1, 400, 180 }, + [103] = { 78.3, 52.9, 400, 180 }, + [104] = { 77.7, 51.8, 400, 180 }, + }, + }, + [19874] = { + ["coords"] = { + [1] = { 45.3, 51.8, 1, 900 }, + }, + }, + [19875] = { + ["coords"] = { + [1] = { 37.6, 66.2, 36, 0 }, + [2] = { 41.7, 6.4, 267, 0 }, + }, + }, + [19876] = { + ["coords"] = { + [1] = { 37.5, 66.2, 36, 7200 }, + [2] = { 41.7, 6.4, 267, 7200 }, + }, + }, + [19877] = { + ["coords"] = { + [1] = { 30.2, 64.3, 141, 0 }, + [2] = { 62.3, 83.3, 1657, 0 }, + }, + ["fac"] = "A", + }, + [19878] = { + ["coords"] = { + [1] = { 77.8, 77.2, 400, 0 }, + }, + }, + [19879] = { + ["coords"] = { + [1] = { 66.6, 57, 331, 900 }, + }, + }, + [19897] = { + ["coords"] = { + [1] = { 77.8, 77.3, 400, 0 }, + }, + ["fac"] = "AH", + }, + [19901] = { + ["coords"] = { + [1] = { 66.6, 57, 331, 10 }, + }, + ["fac"] = "A", + }, + [19902] = { + ["coords"] = { + [1] = { 42.1, 52.7, 3, 900 }, + }, + }, + [19903] = { + ["coords"] = {}, + }, + [19904] = { + ["coords"] = { + [1] = { 44.5, 66, 15, 10 }, + }, + ["fac"] = "AH", + }, + [19905] = { + ["coords"] = { + [1] = { 38.7, 65.6, 15, 10 }, + }, + ["fac"] = "AH", + }, + [19906] = { + ["coords"] = { + [1] = { 36.6, 69.6, 15, 10 }, + [2] = { 54.5, 90, 17, 10 }, + }, + ["fac"] = "AH", + }, + [20351] = { + ["coords"] = { + [1] = { 81.6, 48.6, 331, 900 }, + }, + }, + [20352] = { + ["coords"] = { + [1] = { 81.6, 48.6, 331, 10 }, + }, + }, + [20356] = { + ["coords"] = { + [1] = { 53.9, 43, 400, 180 }, + }, + }, + [20358] = { + ["coords"] = { + [1] = { 42, 52.7, 3, 0 }, + }, + }, + [20359] = { + ["coords"] = { + [1] = { 52.3, 84, 15, 300 }, + [2] = { 52.3, 83.9, 15, 300 }, + [3] = { 56, 81.9, 15, 300 }, + [4] = { 48.4, 76, 15, 300 }, + [5] = { 56.7, 75.4, 15, 300 }, + [6] = { 56.7, 75.3, 15, 300 }, + [7] = { 48.5, 73.6, 15, 300 }, + [8] = { 53.6, 72.6, 15, 300 }, + [9] = { 53.6, 72.5, 15, 300 }, + }, + }, + [20447] = { + ["coords"] = { + [1] = { 25.8, 54.8, 400, 10 }, + [2] = { 25.9, 54.7, 400, 10 }, + [3] = { 25.9, 54.6, 400, 10 }, + }, + }, + [20649] = { + ["coords"] = { + [1] = { 60.6, 44, 1497, 900 }, + }, + }, + [20650] = { + ["coords"] = { + [1] = { 61.5, 44, 1497, 900 }, + }, + }, + [20651] = { + ["coords"] = { + [1] = { 59.5, 44, 1497, 900 }, + }, + }, + [20652] = { + ["coords"] = { + [1] = { 71.4, 44.2, 1497, 900 }, + }, + }, + [20653] = { + ["coords"] = { + [1] = { 70.4, 44.1, 1497, 900 }, + }, + }, + [20654] = { + ["coords"] = { + [1] = { 72.4, 44.2, 1497, 900 }, + }, + }, + [20655] = { + ["coords"] = { + [1] = { 65.9, 52.1, 1497, 900 }, + }, + }, + [20656] = { + ["coords"] = { + [1] = { 65.9, 50.7, 1497, 900 }, + }, + }, + [20657] = { + ["coords"] = { + [1] = { 65.9, 53.8, 1497, 900 }, + }, + }, + [20668] = { + ["coords"] = {}, + }, + [20689] = { + ["coords"] = { + [1] = { 77.2, 35.6, 10, 3600 }, + }, + }, + [20691] = { + ["coords"] = { + [1] = { 43.3, 20.3, 33, 0 }, + }, + ["fac"] = "AH", + }, + [20692] = { + ["coords"] = { + [1] = { 60.3, 41.4, 130, 7200 }, + }, + }, + [20693] = { + ["coords"] = { + [1] = { 58.7, 42.3, 130, 7200 }, + }, + }, + [20694] = { + ["coords"] = { + [1] = { 56.3, 20, 14, 900 }, + }, + }, + [20724] = { + ["coords"] = { + [1] = { 75.6, 74.4, 331, 900 }, + }, + }, + [20725] = { + ["coords"] = { + [1] = { 75.6, 74.4, 331, 10 }, + }, + }, + [20726] = { + ["coords"] = {}, + ["fac"] = "H", + }, + [20727] = { + ["coords"] = { + [1] = { 54.1, 56.5, 15, 10 }, + }, + ["fac"] = "AH", + }, + [20737] = { + ["coords"] = { + [1] = { 77.6, 78.4, 400, 0 }, + }, + }, + [20738] = { + ["coords"] = { + [1] = { 43.9, 12.2, 17, 900 }, + }, + }, + [20739] = { + ["coords"] = { + [1] = { 43.9, 12.2, 17, 900 }, + }, + }, + [20805] = { + ["coords"] = { + [1] = { 77.2, 77.4, 400, 0 }, + }, + }, + [20806] = { + ["coords"] = { + [1] = { 60.2, 72.9, 331, 900 }, + }, + }, + [20807] = { + ["coords"] = { + [1] = { 48.4, 96.2, 17, 0 }, + [2] = { 42, 31.5, 400, 0 }, + }, + }, + [20808] = { + ["coords"] = {}, + }, + [20810] = { + ["coords"] = { + [1] = { 61.4, 21.3, 17, 900 }, + }, + }, + [20811] = { + ["coords"] = {}, + }, + [20812] = { + ["coords"] = {}, + }, + [20816] = { + ["coords"] = {}, + }, + [20817] = { + ["coords"] = {}, + }, + [20818] = { + ["coords"] = {}, + }, + [20819] = { + ["coords"] = {}, + }, + [20820] = { + ["coords"] = {}, + }, + [20821] = { + ["coords"] = {}, + }, + [20822] = { + ["coords"] = {}, + }, + [20823] = { + ["coords"] = {}, + }, + [20824] = { + ["coords"] = {}, + }, + [20827] = { + ["coords"] = {}, + }, + [20829] = { + ["coords"] = { + [1] = { 54.1, 15.1, 15, 900 }, + }, + }, + [20830] = { + ["coords"] = { + [1] = { 57.4, 15.2, 15, 900 }, + }, + }, + [20831] = { + ["coords"] = { + [1] = { 57.6, 15.8, 15, 900 }, + }, + }, + [20849] = { + ["coords"] = { + [1] = { 36.2, 31.3, 15, 900 }, + [2] = { 54.3, 70.2, 17, 900 }, + }, + }, + [20850] = { + ["coords"] = { + [1] = { 48.4, 30.5, 16, 180 }, + }, + }, + [20869] = { + ["coords"] = { + [1] = { 43.2, 47.7, 36, 7200 }, + }, + }, + [20870] = { + ["coords"] = { + [1] = { 37.9, 50.1, 36, 7200 }, + }, + }, + [20871] = { + ["coords"] = { + [1] = { 48.1, 35.1, 36, 7200 }, + }, + }, + [20872] = { + ["coords"] = { + [1] = { 49.2, 43.8, 36, 7200 }, + }, + }, + [20873] = { + ["coords"] = { + [1] = { 21.8, 51.9, 16, 180 }, + }, + }, + [20874] = { + ["coords"] = { + [1] = { 22.4, 51, 16, 180 }, + }, + }, + [20875] = { + ["coords"] = { + [1] = { 22.7, 51, 16, 180 }, + }, + }, + [20876] = { + ["coords"] = { + [1] = { 22.7, 51.7, 16, 180 }, + }, + }, + [20877] = { + ["coords"] = { + [1] = { 68.4, 54.4, 1, 900 }, + }, + }, + [20878] = { + ["coords"] = { + [1] = { 63.9, 63.5, 11, 7200 }, + }, + }, + [20879] = { + ["coords"] = { + [1] = { 45.4, 22.2, 16, 180 }, + }, + }, + [20881] = { + ["coords"] = { + [1] = { 42.1, 39, 16, 180 }, + }, + }, + [20898] = { + ["coords"] = { + [1] = { 60.9, 25.2, 16, 180 }, + }, + }, + [20899] = { + ["coords"] = { + [1] = { 75.5, 57.4, 406, 900 }, + }, + }, + [20900] = { + ["coords"] = {}, + }, + [20901] = { + ["coords"] = {}, + }, + [20917] = { + ["coords"] = { + [1] = { 59.4, 9.6, 15, 0 }, + [2] = { 66.3, 58.9, 17, 0 }, + }, + }, + [20918] = { + ["coords"] = { + [1] = { 50.6, 42.7, 16, 180 }, + }, + }, + [20919] = { + ["coords"] = {}, + }, + [20920] = { + ["coords"] = {}, + }, + [20921] = { + ["coords"] = { + [1] = { 34.9, 84.6, 40, 3600 }, + }, + }, + [20922] = { + ["coords"] = { + [1] = { 34.9, 85.2, 40, 3600 }, + }, + }, + [20923] = { + ["coords"] = { + [1] = { 74.5, 51.6, 12, 900 }, + }, + }, + [20924] = { + ["coords"] = { + [1] = { 61.2, 92.6, 16, 180 }, + }, + }, + [20925] = { + ["coords"] = { + [1] = { 71.5, 51.2, 15, 0 }, + }, + }, + [20926] = { + ["coords"] = { + [1] = { 66.1, 16.7, 16, 180 }, + }, + }, + [20939] = { + ["coords"] = { + [1] = { 49.9, 22.5, 15, 900 }, + }, + }, + [20960] = { + ["coords"] = { + [1] = { 35.8, 36.7, 331, 900 }, + }, + }, + [20961] = { + ["coords"] = { + [1] = { 37.8, 34.1, 331, 900 }, + }, + }, + [20962] = { + ["coords"] = { + [1] = { 31.4, 45.3, 331, 900 }, + }, + }, + [20963] = { + ["coords"] = { + [1] = { 34.1, 38.8, 331, 900 }, + }, + }, + [20964] = { + ["coords"] = { + [1] = { 78.4, 45, 331, 900 }, + }, + }, + [20965] = { + ["coords"] = { + [1] = { 45.1, 24.5, 15, 900 }, + }, + }, + [20966] = { + ["coords"] = { + [1] = { 43.3, 27.8, 15, 900 }, + }, + }, + [20968] = { + ["coords"] = { + [1] = { 35.1, 38.3, 15, 900 }, + [2] = { 53.7, 73.8, 17, 900 }, + }, + }, + [20969] = { + ["coords"] = { + [1] = { 66, 37.9, 139, 900 }, + }, + }, + [20970] = { + ["coords"] = { + [1] = { 67.9, 39.4, 139, 900 }, + }, + }, + [20972] = { + ["coords"] = { + [1] = { 67.7, 83.2, 139, 900 }, + }, + }, + [20975] = { + ["coords"] = { + [1] = { 15.7, 46.5, 47, 7200 }, + }, + }, + [20976] = { + ["coords"] = { + [1] = { 39.8, 66.4, 47, 7200 }, + }, + }, + [20977] = { + ["coords"] = { + [1] = { 49, 67.4, 47, 7200 }, + }, + }, + [20978] = { + ["coords"] = { + [1] = { 48.1, 68.6, 47, 7200 }, + }, + }, + [20979] = { + ["coords"] = { + [1] = { 49.9, 68.6, 47, 7200 }, + }, + }, + [20980] = { + ["coords"] = { + [1] = { 49, 70, 47, 7200 }, + }, + }, + [20981] = { + ["coords"] = { + [1] = { 67.7, 66.4, 47, 7200 }, + }, + }, + [20982] = { + ["coords"] = { + [1] = { 59.2, 9.7, 15, 900 }, + [2] = { 66.2, 59, 17, 900 }, + }, + }, + [20983] = { + ["coords"] = { + [1] = { 57.1, 21, 15, 120 }, + }, + }, + [20985] = { + ["coords"] = { + [1] = { 55.4, 25.9, 15, 10 }, + }, + }, + [20986] = { + ["coords"] = { + [1] = { 11.4, 59.8, 11, 7200 }, + }, + }, + [20989] = { + ["coords"] = { + [1] = { 54.2, 39.3, 141, 900 }, + }, + }, + [20990] = { + ["coords"] = { + [1] = { 54.6, 44.1, 141, 900 }, + }, + }, + [20991] = { + ["coords"] = { + [1] = { 55.9, 46, 141, 900 }, + }, + }, + [20992] = { + ["coords"] = { + [1] = { 29.6, 48.6, 15, 10 }, + [2] = { 50.9, 79.1, 17, 10 }, + }, + ["fac"] = "AH", + }, + [21004] = { + ["coords"] = { + [1] = { 82.8, 79.1, 331, 10 }, + }, + }, + [21007] = { + ["coords"] = { + [1] = { 49.7, 35.1, 12, 900 }, + }, + }, + [21008] = { + ["coords"] = { + [1] = { 47.6, 35.8, 12, 900 }, + }, + }, + [21009] = { + ["coords"] = { + [1] = { 51.4, 36.7, 12, 900 }, + }, + }, + [21015] = { + ["coords"] = { + [1] = { 29.7, 47.7, 15, 120 }, + [2] = { 50.9, 78.7, 17, 120 }, + }, + ["fac"] = "AH", + }, + [21016] = { + ["coords"] = { + [1] = { 29.7, 47.6, 15, 120 }, + [2] = { 50.9, 78.6, 17, 120 }, + }, + ["fac"] = "AH", + }, + [21042] = { + ["coords"] = { + [1] = { 29.8, 48.2, 15, 300 }, + [2] = { 51, 79, 17, 300 }, + }, + ["fac"] = "AH", + }, + [21052] = { + ["coords"] = { + [1] = { 23.9, 72.1, 10, 10 }, + }, + ["fac"] = "AH", + }, + [21053] = { + ["coords"] = { + [1] = { 63.4, 44.3, 15, 900 }, + }, + }, + [21054] = { + ["coords"] = { + [1] = { 63.4, 44.3, 15, 900 }, + }, + }, + [21055] = { + ["coords"] = { + [1] = { 63.4, 44.3, 15, 900 }, + }, + }, + [21056] = { + ["coords"] = { + [1] = { 63.4, 44.3, 15, 900 }, + }, + }, + [21057] = { + ["coords"] = { + [1] = { 65.2, 47, 15, 900 }, + }, + }, + [21058] = { + ["coords"] = { + [1] = { 65.2, 47, 15, 900 }, + }, + }, + [21059] = { + ["coords"] = { + [1] = { 65.2, 47, 15, 900 }, + }, + }, + [21060] = { + ["coords"] = { + [1] = { 66.6, 47.3, 15, 900 }, + }, + }, + [21061] = { + ["coords"] = { + [1] = { 66.6, 47.2, 15, 900 }, + }, + }, + [21062] = { + ["coords"] = { + [1] = { 66.6, 47.2, 15, 900 }, + }, + }, + [21063] = { + ["coords"] = { + [1] = { 67.3, 50.2, 15, 900 }, + }, + }, + [21064] = { + ["coords"] = { + [1] = { 67.3, 50.2, 15, 900 }, + }, + }, + [21065] = { + ["coords"] = { + [1] = { 67.3, 50.2, 15, 900 }, + }, + }, + [21066] = { + ["coords"] = { + [1] = { 65.3, 50.3, 15, 900 }, + }, + }, + [21067] = { + ["coords"] = { + [1] = { 65.3, 50.4, 15, 900 }, + }, + }, + [21068] = { + ["coords"] = { + [1] = { 65.3, 50.3, 15, 900 }, + }, + }, + [21069] = { + ["coords"] = { + [1] = { 60.9, 39.5, 15, 900 }, + }, + }, + [21070] = { + ["coords"] = { + [1] = { 60.9, 39.5, 15, 900 }, + }, + }, + [21071] = { + ["coords"] = { + [1] = { 60.9, 39.5, 15, 900 }, + }, + }, + [21072] = { + ["coords"] = { + [1] = { 60.9, 39.5, 15, 900 }, + }, + }, + [21073] = { + ["coords"] = { + [1] = { 46.5, 22.5, 15, 900 }, + }, + }, + [21074] = { + ["coords"] = { + [1] = { 46.5, 22.5, 15, 900 }, + }, + }, + [21075] = { + ["coords"] = { + [1] = { 46.5, 22.5, 15, 900 }, + }, + }, + [21076] = { + ["coords"] = { + [1] = { 46.5, 22.5, 15, 900 }, + }, + }, + [21077] = { + ["coords"] = { + [1] = { 46.5, 22.5, 15, 900 }, + }, + }, + [21078] = { + ["coords"] = { + [1] = { 33.4, 46.2, 15, 900 }, + [2] = { 52.8, 77.9, 17, 900 }, + }, + }, + [21079] = { + ["coords"] = { + [1] = { 33.4, 46.2, 15, 900 }, + [2] = { 52.8, 77.9, 17, 900 }, + }, + }, + [21080] = { + ["coords"] = { + [1] = { 33.4, 46.2, 15, 900 }, + [2] = { 52.8, 77.9, 17, 900 }, + }, + }, + [21081] = { + ["coords"] = { + [1] = { 33.4, 46.2, 15, 900 }, + [2] = { 52.8, 77.9, 17, 900 }, + }, + }, + [21082] = { + ["coords"] = { + [1] = { 39.2, 38.1, 15, 900 }, + }, + }, + [21083] = { + ["coords"] = { + [1] = { 39.2, 38.1, 15, 900 }, + }, + }, + [21084] = { + ["coords"] = { + [1] = { 39.2, 38.1, 15, 900 }, + }, + }, + [21085] = { + ["coords"] = { + [1] = { 34.1, 54.4, 15, 900 }, + [2] = { 53.2, 82.1, 17, 900 }, + }, + }, + [21086] = { + ["coords"] = { + [1] = { 34.1, 54.4, 15, 900 }, + [2] = { 53.2, 82.1, 17, 900 }, + }, + }, + [21087] = { + ["coords"] = { + [1] = { 34.1, 54.4, 15, 900 }, + [2] = { 53.2, 82.2, 17, 900 }, + }, + }, + [21088] = { + ["coords"] = { + [1] = { 33.9, 59.3, 15, 900 }, + [2] = { 53.1, 84.7, 17, 900 }, + }, + }, + [21089] = { + ["coords"] = { + [1] = { 33.9, 59.3, 15, 900 }, + [2] = { 53.1, 84.7, 17, 900 }, + }, + }, + [21099] = { + ["coords"] = {}, + }, + [21117] = { + ["coords"] = {}, + }, + [21118] = { + ["coords"] = {}, + }, + [21119] = { + ["coords"] = {}, + }, + [21120] = { + ["coords"] = {}, + }, + [21121] = { + ["coords"] = {}, + }, + [21127] = { + ["coords"] = { + [1] = { 42.6, 38, 15, 900 }, + }, + }, + [21128] = { + ["coords"] = { + [1] = { 68.2, 48.6, 15, 0 }, + }, + }, + [21145] = { + ["coords"] = {}, + }, + [21146] = { + ["coords"] = {}, + }, + [21147] = { + ["coords"] = {}, + }, + [21148] = { + ["coords"] = {}, + }, + [21277] = { + ["coords"] = { + [1] = { 62.3, 37.6, 17, 10 }, + }, + }, + [21282] = { + ["coords"] = { + [1] = { 71.4, 24.1, 1, 900 }, + [2] = { 56.5, 43.9, 12, 900 }, + }, + }, + [21308] = { + ["coords"] = { + [1] = { 30.6, 52, 40, 3600 }, + }, + }, + [21327] = { + ["coords"] = {}, + }, + [21459] = { + ["coords"] = { + [1] = { 42.6, 30.5, 15, 900 }, + }, + }, + [21509] = { + ["coords"] = { + [1] = { 29.4, 47.5, 15, 900 }, + [2] = { 50.7, 78.6, 17, 900 }, + }, + }, + [21511] = { + ["coords"] = {}, + }, + [21530] = { + ["coords"] = { + [1] = { 62.3, 37.6, 17, 10 }, + }, + }, + [21581] = { + ["coords"] = { + [1] = { 64.3, 15.5, 4, 900 }, + [2] = { 28.7, 49.7, 141, 900 }, + [3] = { 72.9, 9.7, 1519, 120 }, + [4] = { 55.4, 13.3, 1657, 900 }, + }, + }, + [21582] = { + ["coords"] = { + [1] = { 65.2, 22.9, 4, 900 }, + [2] = { 26.9, 77.3, 33, 900 }, + [3] = { 73.2, 5.9, 1519, 120 }, + }, + }, + [21583] = { + ["coords"] = { + [1] = { 10.4, 60.6, 11, 10 }, + [2] = { 71.8, 7, 1519, 120 }, + }, + }, + [21628] = { + ["coords"] = {}, + }, + [21629] = { + ["coords"] = {}, + }, + [21630] = { + ["coords"] = {}, + }, + [21631] = { + ["coords"] = {}, + }, + [21653] = { + ["coords"] = {}, + }, + [21654] = { + ["coords"] = {}, + }, + [21655] = { + ["coords"] = {}, + }, + [21656] = { + ["coords"] = {}, + }, + [21678] = { + ["coords"] = { + [1] = { 60.7, 39.7, 17, 900 }, + }, + }, + [21679] = { + ["coords"] = { + [1] = { 29, 75.5, 33, 900 }, + }, + }, + [21680] = { + ["coords"] = {}, + ["fac"] = "H", + }, + [21701] = { + ["coords"] = { + [1] = { 56, 31, 40, 3600 }, + }, + }, + [22205] = { + ["coords"] = { + [1] = { 62.5, 49.7, 1, 900 }, + [2] = { 51, 49.4, 1, 60 }, + [3] = { 57.8, 43.8, 1, 900 }, + [4] = { 72.4, 33, 1, 60 }, + [5] = { 52, 36.6, 2597, 60 }, + }, + }, + [22207] = { + ["coords"] = { + [1] = { 78, 62.5, 1, 60 }, + [2] = { 62.4, 52.3, 1, 900 }, + [3] = { 50.2, 50.2, 1, 60 }, + [4] = { 52.2, 37.3, 2597, 60 }, + }, + }, + [22208] = { + ["coords"] = { + [1] = { 78.1, 62.5, 1, 60 }, + [2] = { 62.4, 52.3, 1, 900 }, + [3] = { 50.3, 50.2, 1, 60 }, + [4] = { 52.1, 37.3, 2597, 60 }, + }, + }, + [22216] = { + ["coords"] = { + [1] = { 28.6, 67, 1, 900 }, + }, + }, + [22217] = { + ["coords"] = { + [1] = { 28.5, 68.1, 1, 900 }, + }, + }, + [22218] = { + ["coords"] = { + [1] = { 28.4, 67.4, 1, 900 }, + }, + }, + [22219] = { + ["coords"] = { + [1] = { 29, 67, 1, 900 }, + }, + }, + [22220] = { + ["coords"] = { + [1] = { 29.2, 67.4, 1, 900 }, + }, + }, + [22221] = { + ["coords"] = { + [1] = { 29.1, 68.1, 1, 900 }, + }, + }, + [22222] = { + ["coords"] = { + [1] = { 28.8, 68.4, 1, 900 }, + }, + }, + [22223] = { + ["coords"] = { + [1] = { 26.6, 68.4, 11, 7200 }, + [2] = { 28, 66.4, 11, 7200 }, + [3] = { 25.6, 26.1, 11, 7200 }, + [4] = { 48.2, 18.9, 11, 7200 }, + [5] = { 48, 14.9, 11, 7200 }, + [6] = { 37.3, 48.9, 38, 7200 }, + [7] = { 33.2, 46.6, 38, 7200 }, + [8] = { 35.8, 44.7, 38, 7200 }, + [9] = { 35.1, 43, 38, 7200 }, + [10] = { 39.5, 39.8, 38, 7200 }, + [11] = { 13.5, 55.3, 47, 7200 }, + [12] = { 98.8, 16.5, 267, 7200 }, + }, + }, + [22224] = { + ["coords"] = {}, + }, + [22225] = { + ["coords"] = {}, + }, + [22226] = { + ["coords"] = {}, + }, + [22229] = { + ["coords"] = { + [1] = { 46.9, 18.6, 11, 7200 }, + }, + }, + [22230] = { + ["coords"] = { + [1] = { 46.5, 18, 11, 7200 }, + }, + }, + [22231] = { + ["coords"] = { + [1] = { 46.9, 18.7, 11, 7200 }, + }, + }, + [22234] = { + ["coords"] = { + [1] = { 33.5, 57.7, 15, 900 }, + [2] = { 52.9, 83.9, 17, 900 }, + }, + }, + [22245] = { + ["coords"] = { + [1] = { 66.4, 81.1, 405, 180 }, + [2] = { 66.5, 80.5, 405, 180 }, + [3] = { 65.8, 80.5, 405, 180 }, + [4] = { 70, 78.6, 405, 180 }, + [5] = { 72.4, 78.5, 405, 180 }, + [6] = { 69.2, 77.3, 405, 180 }, + [7] = { 70.9, 75.4, 405, 180 }, + [8] = { 73.2, 75.1, 405, 180 }, + [9] = { 73.6, 74.3, 405, 180 }, + [10] = { 73.5, 73.8, 405, 180 }, + [11] = { 73.7, 72.9, 405, 180 }, + [12] = { 74.1, 72.6, 405, 180 }, + }, + }, + [22246] = { + ["coords"] = { + [1] = { 43.6, 1.2, 357, 60 }, + [2] = { 43.2, 1.2, 357, 60 }, + [3] = { 43.5, 0.7, 357, 60 }, + [4] = { 43, 0.6, 357, 60 }, + [5] = { 43.8, 0.5, 357, 60 }, + [6] = { 40.6, 95.9, 405, 60 }, + [7] = { 39.9, 95.8, 405, 60 }, + [8] = { 40.3, 95, 405, 60 }, + [9] = { 39.6, 94.9, 405, 60 }, + [10] = { 40.8, 94.8, 405, 60 }, + [11] = { 39.3, 94, 405, 60 }, + [12] = { 40.6, 93.7, 405, 60 }, + [13] = { 38.5, 93.4, 405, 60 }, + [14] = { 39.7, 93.3, 405, 60 }, + [15] = { 38.5, 92.1, 405, 60 }, + [16] = { 40.5, 91.9, 405, 60 }, + [17] = { 39, 91.8, 405, 60 }, + [18] = { 38.7, 91.4, 405, 60 }, + [19] = { 38.5, 91.3, 405, 60 }, + [20] = { 38.6, 90.9, 405, 60 }, + }, + ["fac"] = "AH", + }, + [22248] = { + ["coords"] = { + [1] = { 35.6, 55.8, 36, 7200 }, + [2] = { 65.1, 23.2, 130, 7200 }, + }, + }, + [22249] = { + ["coords"] = {}, + }, + [22250] = { + ["coords"] = { + [1] = { 35.6, 54.2, 36, 7200 }, + [2] = { 65.7, 23.7, 130, 7200 }, + }, + }, + [22251] = { + ["coords"] = { + [1] = { 35.5, 54.3, 36, 7200 }, + [2] = { 65.7, 23.6, 130, 7200 }, + }, + }, + [22253] = { + ["coords"] = { + [1] = { 35.9, 53.7, 36, 7200 }, + [2] = { 65.8, 24, 130, 7200 }, + }, + }, + [22254] = { + ["coords"] = { + [1] = { 35.7, 55.9, 36, 7200 }, + [2] = { 65.1, 23.2, 130, 7200 }, + }, + }, + [22255] = { + ["coords"] = { + [1] = { 35.7, 55.8, 36, 7200 }, + [2] = { 65.1, 23.3, 130, 7200 }, + }, + }, + [22256] = { + ["coords"] = {}, + }, + [22257] = { + ["coords"] = { + [1] = { 35.4, 54.6, 36, 7200 }, + [2] = { 65.6, 23.4, 130, 7200 }, + }, + }, + [22258] = { + ["coords"] = { + [1] = { 35.4, 54.5, 36, 7200 }, + [2] = { 65.7, 23.4, 130, 7200 }, + }, + }, + [22259] = { + ["coords"] = { + [1] = { 35.3, 54.3, 36, 7200 }, + [2] = { 65.8, 23.4, 130, 7200 }, + }, + }, + [22260] = { + ["coords"] = { + [1] = { 35.4, 53.8, 36, 7200 }, + [2] = { 66, 23.6, 130, 7200 }, + }, + }, + [22261] = { + ["coords"] = { + [1] = { 35.3, 54, 36, 7200 }, + [2] = { 65.9, 23.4, 130, 7200 }, + }, + }, + [22262] = { + ["coords"] = { + [1] = { 35.6, 54.9, 36, 7200 }, + [2] = { 65.5, 23.4, 130, 7200 }, + }, + }, + [22530] = { + ["coords"] = { + [1] = { 77.5, 48.8, 10, 3600 }, + [2] = { 78.9, 44.2, 10, 3600 }, + [3] = { 45.6, 75.3, 130, 7200 }, + [4] = { 45.8, 72.1, 130, 7200 }, + [5] = { 62.8, 67.4, 130, 7200 }, + [6] = { 44.6, 39.2, 130, 7200 }, + [7] = { 7.9, 29, 267, 7200 }, + }, + }, + [22531] = { + ["coords"] = { + [1] = { 77.2, 48.6, 10, 3600 }, + [2] = { 79.1, 44.5, 10, 3600 }, + [3] = { 45.4, 75.3, 130, 7200 }, + [4] = { 45.7, 72.5, 130, 7200 }, + [5] = { 62.9, 67.5, 130, 7200 }, + [6] = { 44.8, 39.2, 130, 7200 }, + [7] = { 8.1, 29.3, 267, 7200 }, + }, + }, + [22533] = { + ["coords"] = { + [1] = { 77.2, 48.9, 10, 3600 }, + [2] = { 79.2, 44.3, 10, 3600 }, + [3] = { 45.4, 75.5, 130, 7200 }, + [4] = { 45.8, 72.4, 130, 7200 }, + [5] = { 63, 67.4, 130, 7200 }, + [6] = { 44.8, 39, 130, 7200 }, + [7] = { 8.2, 29.1, 267, 7200 }, + }, + }, + [22534] = { + ["coords"] = { + [1] = { 77.2, 48.8, 10, 7200 }, + [2] = { 79.1, 44.4, 10, 3600 }, + [3] = { 45.4, 75.4, 130, 7200 }, + [4] = { 45.8, 72.5, 130, 7200 }, + [5] = { 63, 67.5, 130, 7200 }, + [6] = { 44.8, 39.1, 130, 7200 }, + [7] = { 8.2, 29.2, 267, 7200 }, + }, + }, + [22535] = { + ["coords"] = { + [1] = { 71.1, 80.5, 12, 900 }, + [2] = { 79.4, 69.1, 12, 900 }, + [3] = { 35.9, 59.4, 12, 900 }, + [4] = { 36.7, 39.3, 267, 7200 }, + }, + }, + [22536] = { + ["coords"] = { + [1] = { 71, 80.9, 12, 900 }, + [2] = { 79.1, 69, 12, 900 }, + [3] = { 36, 59.1, 12, 900 }, + [4] = { 36.8, 39.7, 267, 7200 }, + }, + }, + [22537] = { + ["coords"] = { + [1] = { 71, 80.8, 12, 900 }, + [2] = { 79.2, 68.9, 12, 900 }, + [3] = { 36.1, 59.2, 12, 900 }, + [4] = { 36.8, 39.7, 267, 7200 }, + }, + }, + [22538] = { + ["coords"] = { + [1] = { 70.9, 80.8, 12, 900 }, + [2] = { 79.2, 68.8, 12, 900 }, + [3] = { 36.1, 59.3, 12, 900 }, + [4] = { 36.7, 39.7, 267, 7200 }, + }, + }, + [22540] = { + ["coords"] = { + [1] = { 25.1, 41.5, 44, 7200 }, + }, + }, + [22541] = { + ["coords"] = { + [1] = { 24.9, 41, 44, 7200 }, + }, + }, + [22542] = { + ["coords"] = {}, + }, + [22543] = { + ["coords"] = { + [1] = { 25.3, 41.2, 44, 7200 }, + }, + }, + [22544] = { + ["coords"] = { + [1] = { 25.2, 41.4, 44, 7200 }, + }, + }, + [22545] = { + ["coords"] = { + [1] = { 50.8, 56.8, 267, 7200 }, + }, + }, + [22546] = { + ["coords"] = { + [1] = { 50.8, 57.2, 267, 7200 }, + }, + }, + [22547] = { + ["coords"] = { + [1] = { 51, 57.2, 267, 7200 }, + }, + }, + [22549] = { + ["coords"] = { + [1] = { 50.9, 57.2, 267, 7200 }, + }, + }, + [22550] = { + ["coords"] = { + [1] = { 55.1, 30.1, 8, 600 }, + [2] = { 55.7, 28.9, 8, 600 }, + [3] = { 57.4, 24.9, 8, 600 }, + [4] = { 62.3, 23.6, 8, 600 }, + [5] = { 64.9, 22.9, 8, 600 }, + [6] = { 64.8, 22.7, 8, 600 }, + [7] = { 62.1, 22.5, 8, 600 }, + [8] = { 60.2, 22.2, 8, 600 }, + [9] = { 65.4, 20.3, 8, 600 }, + }, + ["fac"] = "AH", + }, + [22563] = { + ["coords"] = { + [1] = { 75.5, 48.9, 10, 3600 }, + [2] = { 76, 44.9, 10, 3600 }, + [3] = { 17.1, 33.8, 10, 3600 }, + [4] = { 43.8, 9.6, 33, 900 }, + [5] = { 32.5, 65.4, 85, 900 }, + [6] = { 44.7, 74.4, 130, 7200 }, + [7] = { 47.7, 73.9, 130, 7200 }, + [8] = { 45.1, 71.2, 130, 7200 }, + [9] = { 63.5, 65.1, 130, 7200 }, + [10] = { 63.3, 58.6, 130, 7200 }, + [11] = { 53.2, 12.8, 130, 7200 }, + [12] = { 8.9, 26.1, 267, 7200 }, + [13] = { 8.6, 17.5, 267, 7200 }, + }, + }, + [22564] = { + ["coords"] = { + [1] = { 75.5, 48.9, 10, 3600 }, + [2] = { 76, 45, 10, 3600 }, + [3] = { 17.1, 33.8, 10, 3600 }, + [4] = { 43.8, 9.6, 33, 900 }, + [5] = { 32.5, 65.4, 85, 900 }, + [6] = { 44.7, 74.4, 130, 7200 }, + [7] = { 47.6, 73.9, 130, 7200 }, + [8] = { 45.1, 71.2, 130, 7200 }, + [9] = { 63.5, 65.2, 130, 7200 }, + [10] = { 63.3, 58.5, 130, 7200 }, + [11] = { 53.3, 12.8, 130, 7200 }, + [12] = { 8.8, 26.1, 267, 7200 }, + [13] = { 8.6, 17.4, 267, 7200 }, + }, + }, + [22565] = { + ["coords"] = { + [1] = { 75.5, 49, 10, 3600 }, + [2] = { 76, 45, 10, 3600 }, + [3] = { 17.1, 33.8, 10, 3600 }, + [4] = { 43.8, 9.6, 33, 900 }, + [5] = { 32.5, 65.4, 85, 900 }, + [6] = { 44.7, 74.4, 130, 7200 }, + [7] = { 47.6, 74, 130, 7200 }, + [8] = { 45.1, 71.2, 130, 7200 }, + [9] = { 63.5, 65.2, 130, 7200 }, + [10] = { 63.3, 58.5, 130, 7200 }, + [11] = { 53.3, 12.8, 130, 7200 }, + [12] = { 8.9, 26.2, 267, 7200 }, + [13] = { 8.6, 17.4, 267, 7200 }, + }, + }, + [22566] = { + ["coords"] = { + [1] = { 75.5, 48.9, 10, 3600 }, + [2] = { 76, 45, 10, 3600 }, + [3] = { 17.1, 33.8, 10, 3600 }, + [4] = { 43.8, 9.6, 33, 900 }, + [5] = { 32.5, 65.4, 85, 900 }, + [6] = { 44.7, 74.4, 130, 7200 }, + [7] = { 47.6, 73.9, 130, 7200 }, + [8] = { 45.1, 71.2, 130, 7200 }, + [9] = { 63.5, 65.2, 130, 7200 }, + [10] = { 63.3, 58.5, 130, 7200 }, + [11] = { 53.3, 12.8, 130, 7200 }, + [12] = { 8.8, 26.1, 267, 7200 }, + [13] = { 8.6, 17.4, 267, 7200 }, + }, + }, + [22567] = { + ["coords"] = { + [1] = { 75.5, 49, 10, 3600 }, + [2] = { 76.1, 45, 10, 3600 }, + [3] = { 17.1, 33.8, 10, 3600 }, + [4] = { 43.8, 9.6, 33, 900 }, + [5] = { 32.5, 65.4, 85, 900 }, + [6] = { 44.7, 74.4, 130, 7200 }, + [7] = { 47.6, 74, 130, 7200 }, + [8] = { 45.1, 71.1, 130, 7200 }, + [9] = { 63.5, 65.2, 130, 7200 }, + [10] = { 63.3, 58.5, 130, 7200 }, + [11] = { 53.3, 12.8, 130, 7200 }, + [12] = { 8.9, 26.2, 267, 7200 }, + [13] = { 8.6, 17.4, 267, 7200 }, + }, + }, + [22569] = { + ["coords"] = { + [1] = { 45.1, 71.4, 130, 7200 }, + [2] = { 63.5, 58.5, 130, 7200 }, + [3] = { 8.8, 17.4, 267, 7200 }, + }, + }, + [22576] = { + ["coords"] = { + [1] = { 45.4, 71.5, 130, 7200 }, + [2] = { 63.6, 58.1, 130, 7200 }, + [3] = { 8.9, 16.8, 267, 7200 }, + }, + }, + [22577] = { + ["coords"] = { + [1] = { 45.4, 71.4, 130, 7200 }, + [2] = { 63.5, 58.1, 130, 7200 }, + [3] = { 8.8, 16.8, 267, 7200 }, + }, + }, + [22578] = { + ["coords"] = { + [1] = { 75.7, 45.4, 10, 3600 }, + [2] = { 17.4, 33.3, 10, 3600 }, + [3] = { 44.5, 74.1, 130, 7200 }, + }, + }, + [22579] = { + ["coords"] = { + [1] = { 75.7, 45.5, 10, 3600 }, + [2] = { 17.4, 33.3, 10, 3600 }, + [3] = { 44.5, 74.1, 130, 7200 }, + }, + }, + [22580] = { + ["coords"] = { + [1] = { 75.8, 45.5, 10, 3600 }, + [2] = { 17.3, 33.3, 10, 3600 }, + [3] = { 44.5, 74.2, 130, 7200 }, + }, + }, + [22581] = { + ["coords"] = { + [1] = { 75.9, 45.4, 10, 3600 }, + [2] = { 17.2, 33.3, 10, 3600 }, + [3] = { 44.5, 74.3, 130, 7200 }, + }, + }, + [22582] = { + ["coords"] = { + [1] = { 75.8, 45.1, 10, 3600 }, + [2] = { 17.3, 33.7, 10, 3600 }, + [3] = { 44.7, 74.2, 130, 7200 }, + }, + }, + [22587] = { + ["coords"] = { + [1] = { 75.7, 45.1, 10, 3600 }, + [2] = { 17.4, 33.6, 10, 3600 }, + [3] = { 44.7, 74.1, 130, 7200 }, + }, + }, + [22588] = { + ["coords"] = { + [1] = { 75.8, 45.1, 10, 3600 }, + [2] = { 17.3, 33.7, 10, 3600 }, + [3] = { 44.7, 74.2, 130, 7200 }, + }, + }, + [22589] = { + ["coords"] = { + [1] = { 75.4, 49.1, 10, 3600 }, + [2] = { 63.5, 65.3, 130, 7200 }, + [3] = { 8.9, 26.3, 267, 7200 }, + }, + }, + [22590] = { + ["coords"] = { + [1] = { 75.3, 49.4, 10, 3600 }, + [2] = { 63.7, 65.4, 130, 7200 }, + [3] = { 9.1, 26.5, 267, 7200 }, + }, + }, + [22591] = { + ["coords"] = { + [1] = { 75.4, 49.3, 10, 3600 }, + [2] = { 63.6, 65.4, 130, 7200 }, + [3] = { 9, 26.4, 267, 7200 }, + }, + }, + [22592] = { + ["coords"] = { + [1] = { 75.4, 49.4, 10, 3600 }, + [2] = { 63.6, 65.4, 130, 7200 }, + [3] = { 9.1, 26.4, 267, 7200 }, + }, + }, + [22593] = { + ["coords"] = { + [1] = { 75.3, 49.4, 10, 3600 }, + [2] = { 63.6, 65.5, 130, 7200 }, + [3] = { 9, 26.6, 267, 7200 }, + }, + }, + [22594] = { + ["coords"] = { + [1] = { 75.2, 49.3, 10, 3600 }, + [2] = { 63.6, 65.5, 130, 7200 }, + [3] = { 9, 26.6, 267, 7200 }, + }, + }, + [22595] = { + ["coords"] = { + [1] = { 75.4, 49, 10, 3600 }, + [2] = { 63.5, 65.3, 130, 7200 }, + [3] = { 8.8, 26.3, 267, 7200 }, + }, + }, + [22598] = { + ["coords"] = { + [1] = { 75.5, 49.2, 10, 3600 }, + [2] = { 63.6, 65.2, 130, 7200 }, + [3] = { 9, 26.3, 267, 7200 }, + }, + }, + [22599] = { + ["coords"] = { + [1] = { 75.4, 49.2, 10, 3600 }, + [2] = { 63.6, 65.3, 130, 7200 }, + [3] = { 9, 26.3, 267, 7200 }, + }, + }, + [22600] = { + ["coords"] = { + [1] = { 75.4, 48.6, 10, 3600 }, + [2] = { 63.3, 65.2, 130, 7200 }, + [3] = { 8.6, 26.2, 267, 7200 }, + }, + }, + [22602] = { + ["coords"] = { + [1] = { 7.9, 56.1, 11, 7200 }, + [2] = { 85.5, 69.4, 12, 900 }, + [3] = { 46.1, 62.2, 12, 900 }, + [4] = { 66.4, 51.7, 15, 900 }, + [5] = { 27.6, 98.4, 36, 7200 }, + [6] = { 33, 34.6, 267, 7200 }, + }, + }, + [22603] = { + ["coords"] = { + [1] = { 7.9, 56.1, 11, 7200 }, + [2] = { 85.5, 69.5, 12, 900 }, + [3] = { 46.1, 62.2, 12, 900 }, + [4] = { 66.4, 51.7, 15, 900 }, + [5] = { 27.7, 98.4, 36, 7200 }, + [6] = { 33.1, 34.5, 267, 7200 }, + }, + }, + [22604] = { + ["coords"] = { + [1] = { 7.9, 56.1, 11, 7200 }, + [2] = { 85.5, 69.5, 12, 900 }, + [3] = { 46.1, 62.2, 12, 900 }, + [4] = { 66.4, 51.7, 15, 900 }, + [5] = { 27.7, 98.4, 36, 7200 }, + [6] = { 33.1, 34.6, 267, 7200 }, + }, + }, + [22605] = { + ["coords"] = { + [1] = { 7.9, 56.1, 11, 7200 }, + [2] = { 85.5, 69.4, 12, 900 }, + [3] = { 46.1, 62.3, 12, 900 }, + [4] = { 66.4, 51.7, 15, 900 }, + [5] = { 27.6, 98.4, 36, 7200 }, + [6] = { 33, 34.5, 267, 7200 }, + }, + }, + [22606] = { + ["coords"] = { + [1] = { 7.9, 56.1, 11, 7200 }, + [2] = { 85.5, 69.4, 12, 900 }, + [3] = { 46.1, 62.2, 12, 900 }, + [4] = { 66.4, 51.7, 15, 900 }, + [5] = { 27.6, 98.4, 36, 7200 }, + [6] = { 33, 34.6, 267, 7200 }, + }, + }, + [22615] = { + ["coords"] = {}, + }, + [22616] = { + ["coords"] = {}, + }, + [22617] = { + ["coords"] = {}, + }, + [22618] = { + ["coords"] = {}, + }, + [22619] = { + ["coords"] = {}, + }, + [22622] = { + ["coords"] = { + [1] = { 85.2, 70, 12, 900 }, + [2] = { 46.6, 62, 12, 900 }, + }, + }, + [22623] = { + ["coords"] = { + [1] = { 85.3, 70, 12, 900 }, + [2] = { 46.5, 61.9, 12, 900 }, + }, + }, + [22638] = { + ["coords"] = { + [1] = { 85.3, 69.5, 12, 900 }, + [2] = { 46.3, 62.3, 12, 900 }, + }, + }, + [22639] = { + ["coords"] = { + [1] = { 45, 15.5, 28, 1200 }, + }, + }, + [22647] = { + ["coords"] = { + [1] = { 45.1, 15.8, 28, 1200 }, + }, + }, + [22648] = { + ["coords"] = { + [1] = { 45.1, 15.7, 28, 1200 }, + }, + }, + [22649] = { + ["coords"] = { + [1] = { 39.5, 15.2, 36, 7200 }, + }, + }, + [22650] = { + ["coords"] = { + [1] = { 39.5, 15.1, 36, 7200 }, + }, + }, + [22651] = { + ["coords"] = { + [1] = { 39.5, 14.9, 36, 7200 }, + }, + }, + [22652] = { + ["coords"] = { + [1] = { 39.4, 14.9, 36, 7200 }, + }, + }, + [22654] = { + ["coords"] = { + [1] = { 39.2, 15.1, 36, 7200 }, + }, + }, + [22658] = { + ["coords"] = { + [1] = { 39.3, 15.2, 36, 7200 }, + }, + }, + [22659] = { + ["coords"] = { + [1] = { 22.8, 43.1, 44, 7200 }, + }, + }, + [22660] = { + ["coords"] = { + [1] = { 22.8, 43.1, 44, 7200 }, + }, + }, + [22661] = { + ["coords"] = { + [1] = { 22.9, 43.1, 44, 7200 }, + }, + }, + [22662] = { + ["coords"] = { + [1] = { 22.7, 43.3, 44, 7200 }, + }, + }, + [22663] = { + ["coords"] = {}, + }, + [22664] = { + ["coords"] = { + [1] = { 39.2, 15, 36, 7200 }, + }, + }, + [22665] = { + ["coords"] = { + [1] = { 22.7, 43.5, 44, 7200 }, + }, + }, + [22666] = { + ["coords"] = { + [1] = { 22.7, 43.6, 44, 7200 }, + }, + }, + [22667] = { + ["coords"] = { + [1] = { 22.6, 43.4, 44, 7200 }, + }, + }, + [22668] = { + ["coords"] = { + [1] = { 22.7, 43.3, 44, 7200 }, + }, + }, + [22670] = { + ["coords"] = { + [1] = { 56.2, 30.4, 40, 3600 }, + [2] = { 48.9, 55.3, 267, 7200 }, + }, + }, + [22671] = { + ["coords"] = { + [1] = { 56.3, 30.4, 40, 3600 }, + [2] = { 48.8, 55.3, 267, 7200 }, + }, + }, + [22672] = { + ["coords"] = { + [1] = { 56.3, 30.4, 40, 3600 }, + [2] = { 48.9, 55.3, 267, 7200 }, + }, + }, + [22673] = { + ["coords"] = { + [1] = { 56.2, 30.4, 40, 3600 }, + [2] = { 48.8, 55.4, 267, 7200 }, + }, + }, + [22674] = { + ["coords"] = { + [1] = { 56.2, 30.4, 40, 3600 }, + [2] = { 48.9, 55.4, 267, 7200 }, + }, + }, + [22684] = { + ["coords"] = { + [1] = { 49.3, 55.1, 267, 7200 }, + }, + }, + [22685] = { + ["coords"] = { + [1] = { 49.3, 55, 267, 7200 }, + }, + }, + [22706] = { + ["coords"] = { + [1] = { 87.5, 35.2, 10, 3600 }, + }, + }, + [22707] = { + ["coords"] = { + [1] = { 73.5, 44.8, 10, 3600 }, + [2] = { 61.5, 52.3, 85, 900 }, + [3] = { 43.4, 73.5, 130, 7200 }, + }, + }, + [22708] = { + ["coords"] = { + [1] = { 73.9, 43.1, 10, 3600 }, + [2] = { 61.9, 51.3, 85, 900 }, + [3] = { 42.7, 73.1, 130, 7200 }, + }, + }, + [22709] = { + ["coords"] = { + [1] = { 73.5, 44.9, 10, 3600 }, + [2] = { 61.5, 52.3, 85, 900 }, + [3] = { 43.5, 73.5, 130, 7200 }, + }, + }, + [22710] = { + ["coords"] = { + [1] = { 73.6, 44.9, 10, 3600 }, + [2] = { 61.5, 52.4, 85, 900 }, + [3] = { 43.5, 73.5, 130, 7200 }, + }, + }, + [22711] = { + ["coords"] = { + [1] = { 73.8, 43.1, 10, 3600 }, + [2] = { 61.8, 51.4, 85, 900 }, + [3] = { 42.7, 73.2, 130, 7200 }, + }, + }, + [22712] = { + ["coords"] = { + [1] = { 73.6, 44.9, 10, 3600 }, + [2] = { 61.5, 52.3, 85, 900 }, + [3] = { 43.5, 73.5, 130, 7200 }, + }, + }, + [22719] = { + ["coords"] = { + [1] = { 43.5, 73.3, 130, 7200 }, + }, + }, + [22727] = { + ["coords"] = { + [1] = { 43.5, 72.9, 130, 7200 }, + }, + }, + [22732] = { + ["coords"] = { + [1] = { 73.6, 44.5, 10, 3600 }, + [2] = { 61.6, 52.1, 85, 900 }, + }, + }, + [22733] = { + ["coords"] = { + [1] = { 73.6, 44.5, 10, 3600 }, + [2] = { 61.6, 52.1, 85, 900 }, + }, + }, + [22734] = { + ["coords"] = { + [1] = { 43.4, 72.7, 130, 7200 }, + }, + }, + [22735] = { + ["coords"] = { + [1] = { 73.7, 44.4, 10, 3600 }, + [2] = { 61.7, 52.1, 85, 900 }, + }, + }, + [22736] = { + ["coords"] = { + [1] = { 43.2, 73.2, 130, 7200 }, + }, + }, + [22737] = { + ["coords"] = { + [1] = { 73.9, 44.4, 10, 3600 }, + [2] = { 61.8, 52.1, 85, 900 }, + }, + }, + [22738] = { + ["coords"] = { + [1] = { 73.7, 45.6, 10, 3600 }, + [2] = { 61.5, 52.8, 85, 900 }, + }, + }, + [22739] = { + ["coords"] = { + [1] = { 73.6, 44.3, 10, 3600 }, + [2] = { 61.6, 52, 85, 900 }, + }, + }, + [22740] = { + ["coords"] = { + [1] = { 73.6, 44.3, 10, 3600 }, + [2] = { 61.6, 52, 85, 900 }, + }, + }, + [22741] = { + ["coords"] = { + [1] = { 43.5, 72.7, 130, 7200 }, + }, + }, + [22742] = { + ["coords"] = { + [1] = { 73.7, 44.3, 10, 3600 }, + [2] = { 61.7, 52, 85, 900 }, + }, + }, + [22743] = { + ["coords"] = { + [1] = { 73.6, 45.1, 10, 3600 }, + [2] = { 61.5, 52.5, 85, 900 }, + }, + }, + [22744] = { + ["coords"] = { + [1] = { 43.2, 73.4, 130, 7200 }, + }, + }, + [22745] = { + ["coords"] = { + [1] = { 74.4, 45, 10, 3600 }, + [2] = { 62, 52.6, 85, 900 }, + }, + }, + [22746] = { + ["coords"] = { + [1] = { 74.3, 45, 10, 3600 }, + [2] = { 61.9, 52.6, 85, 900 }, + }, + }, + [22747] = { + ["coords"] = { + [1] = { 74.1, 45, 10, 3600 }, + [2] = { 61.8, 52.5, 85, 900 }, + }, + }, + [22748] = { + ["coords"] = { + [1] = { 74.2, 45, 10, 3600 }, + [2] = { 61.9, 52.6, 85, 900 }, + }, + }, + [22749] = { + ["coords"] = { + [1] = { 74.3, 45, 10, 3600 }, + [2] = { 61.9, 52.6, 85, 900 }, + }, + }, + [22750] = { + ["coords"] = { + [1] = { 74.4, 44.9, 10, 3600 }, + [2] = { 62, 52.5, 85, 900 }, + }, + }, + [22751] = { + ["coords"] = { + [1] = { 43.5, 73.3, 130, 7200 }, + }, + }, + [22752] = { + ["coords"] = { + [1] = { 73.8, 43.8, 10, 3600 }, + [2] = { 61.7, 51.8, 85, 900 }, + }, + }, + [22753] = { + ["coords"] = { + [1] = { 73.8, 45.6, 10, 3600 }, + [2] = { 61.6, 52.8, 85, 900 }, + }, + }, + [22754] = { + ["coords"] = { + [1] = { 43.2, 73.2, 130, 7200 }, + }, + }, + [22755] = { + ["coords"] = { + [1] = { 43.4, 73.4, 130, 7200 }, + }, + }, + [22772] = { + ["coords"] = { + [1] = { 10.9, 60.6, 11, 7200 }, + [2] = { 43.6, 65.5, 12, 900 }, + [3] = { 66.4, 45, 15, 900 }, + }, + }, + [22773] = { + ["coords"] = { + [1] = { 10.9, 60.5, 11, 7200 }, + [2] = { 43.6, 65.5, 12, 900 }, + [3] = { 66.4, 45, 15, 900 }, + }, + }, + [22774] = { + ["coords"] = { + [1] = { 10.9, 60.5, 11, 7200 }, + [2] = { 43.5, 65.5, 12, 900 }, + [3] = { 66.4, 45, 15, 900 }, + }, + }, + [22775] = { + ["coords"] = { + [1] = { 10.7, 61.7, 11, 7200 }, + [2] = { 44.4, 66.1, 12, 900 }, + [3] = { 67, 45.3, 15, 900 }, + }, + }, + [22776] = { + ["coords"] = { + [1] = { 10.6, 61.7, 11, 7200 }, + [2] = { 44.4, 66.1, 12, 900 }, + [3] = { 67, 45.3, 15, 900 }, + }, + }, + [22777] = { + ["coords"] = { + [1] = { 10.9, 60.5, 11, 7200 }, + [2] = { 43.6, 65.5, 12, 900 }, + [3] = { 66.4, 45, 15, 900 }, + }, + }, + [22783] = { + ["coords"] = { + [1] = { 44.1, 65.9, 12, 900 }, + [2] = { 66.7, 45.2, 15, 900 }, + }, + }, + [22794] = { + ["coords"] = {}, + }, + [22795] = { + ["coords"] = {}, + }, + [22796] = { + ["coords"] = {}, + }, + [22797] = { + ["coords"] = {}, + }, + [22798] = { + ["coords"] = {}, + }, + [22799] = { + ["coords"] = {}, + }, + [22800] = { + ["coords"] = {}, + }, + [22801] = { + ["coords"] = {}, + }, + [22802] = { + ["coords"] = {}, + }, + [22803] = { + ["coords"] = { + [1] = { 43.8, 65.6, 12, 900 }, + [2] = { 66.5, 45.1, 15, 900 }, + }, + }, + [22804] = { + ["coords"] = { + [1] = { 43.8, 65.7, 12, 900 }, + [2] = { 66.5, 45.1, 15, 900 }, + }, + }, + [22806] = { + ["coords"] = { + [1] = { 43.8, 65.8, 12, 900 }, + [2] = { 66.5, 45.2, 15, 900 }, + }, + }, + [22808] = { + ["coords"] = {}, + }, + [22809] = { + ["coords"] = {}, + }, + [22810] = { + ["coords"] = {}, + }, + [22811] = { + ["coords"] = { + [1] = { 43.4, 66.4, 12, 900 }, + [2] = { 66.3, 45.6, 15, 900 }, + }, + }, + [22812] = { + ["coords"] = { + [1] = { 43.4, 66.4, 12, 900 }, + [2] = { 66.3, 45.6, 15, 900 }, + }, + }, + [22813] = { + ["coords"] = { + [1] = { 43.4, 66.1, 12, 900 }, + [2] = { 66.3, 45.5, 15, 900 }, + }, + }, + [22816] = { + ["coords"] = {}, + }, + [22817] = { + ["coords"] = {}, + }, + [22831] = { + ["coords"] = { + [1] = { 26.8, 42.8, 44, 7200 }, + }, + }, + [22832] = { + ["coords"] = { + [1] = { 26.4, 44.8, 44, 7200 }, + }, + }, + [22833] = { + ["coords"] = { + [1] = { 26.3, 44.9, 44, 7200 }, + }, + }, + [22834] = { + ["coords"] = { + [1] = { 26.4, 45, 44, 7200 }, + }, + }, + [22835] = { + ["coords"] = { + [1] = { 26.4, 44.9, 44, 7200 }, + }, + }, + [22836] = { + ["coords"] = { + [1] = { 26.9, 42.7, 44, 7200 }, + }, + }, + [22849] = { + ["coords"] = {}, + }, + [22852] = { + ["coords"] = {}, + }, + [22853] = { + ["coords"] = {}, + }, + [22854] = { + ["coords"] = { + [1] = { 26.5, 44.2, 44, 7200 }, + }, + }, + [22855] = { + ["coords"] = { + [1] = { 26.7, 45.1, 44, 7200 }, + }, + }, + [22856] = { + ["coords"] = { + [1] = { 27.1, 45.2, 44, 7200 }, + }, + }, + [22858] = { + ["coords"] = { + [1] = { 27.4, 44.7, 44, 7200 }, + }, + }, + [22860] = { + ["coords"] = { + [1] = { 26.7, 44.1, 44, 7200 }, + }, + }, + [22864] = { + ["coords"] = { + [1] = { 27.4, 45, 44, 7200 }, + }, + }, + [22865] = { + ["coords"] = { + [1] = { 26.5, 45, 44, 7200 }, + }, + }, + [22879] = { + ["coords"] = { + [1] = { 26.8, 44.1, 44, 7200 }, + }, + }, + [22880] = { + ["coords"] = { + [1] = { 26.5, 44.7, 44, 7200 }, + }, + }, + [22881] = { + ["coords"] = {}, + }, + [22882] = { + ["coords"] = { + [1] = { 51.2, 58.3, 267, 7200 }, + }, + }, + [22883] = { + ["coords"] = { + [1] = { 51.1, 58.2, 267, 7200 }, + }, + }, + [22884] = { + ["coords"] = { + [1] = { 51.1, 58.3, 267, 7200 }, + }, + }, + [22885] = { + ["coords"] = { + [1] = { 52.1, 58.7, 267, 7200 }, + }, + }, + [22886] = { + ["coords"] = { + [1] = { 51.1, 58.3, 267, 7200 }, + }, + }, + [22887] = { + ["coords"] = { + [1] = { 52.1, 58.8, 267, 7200 }, + }, + }, + [22904] = { + ["coords"] = { + [1] = { 51, 58.3, 267, 7200 }, + }, + }, + [22908] = { + ["coords"] = { + [1] = { 51.3, 58.4, 267, 7200 }, + }, + }, + [22909] = { + ["coords"] = { + [1] = { 51.4, 58.8, 267, 7200 }, + }, + }, + [22910] = { + ["coords"] = { + [1] = { 50.7, 58.4, 267, 7200 }, + }, + }, + [22915] = { + ["coords"] = { + [1] = { 51.3, 58.4, 267, 7200 }, + }, + }, + [22916] = { + ["coords"] = { + [1] = { 51.3, 58.5, 267, 7200 }, + }, + }, + [22917] = { + ["coords"] = { + [1] = { 51.4, 58.4, 267, 7200 }, + }, + }, + [22918] = { + ["coords"] = { + [1] = { 51.4, 58.4, 267, 7200 }, + }, + }, + [22919] = { + ["coords"] = { + [1] = { 51.1, 58.3, 267, 7200 }, + }, + }, + [22920] = { + ["coords"] = { + [1] = { 51.4, 58.5, 267, 7200 }, + }, + }, + [22921] = { + ["coords"] = { + [1] = { 51, 59.3, 267, 7200 }, + }, + }, + [22922] = { + ["coords"] = { + [1] = { 51, 59.2, 267, 7200 }, + }, + }, + [22923] = { + ["coords"] = { + [1] = { 51, 59, 267, 7200 }, + }, + }, + [22924] = { + ["coords"] = { + [1] = { 51, 59.1, 267, 7200 }, + }, + }, + [22925] = { + ["coords"] = { + [1] = { 51, 59.2, 267, 7200 }, + }, + }, + [22926] = { + ["coords"] = { + [1] = { 51, 59.3, 267, 7200 }, + }, + }, + [22927] = { + ["coords"] = { + [1] = { 50.7, 58.5, 267, 7200 }, + }, + }, + [23013] = { + ["coords"] = { + [1] = { 23.8, 80, 12, 900 }, + [2] = { 67.2, 53.4, 15, 900 }, + [3] = { 69.2, 49.8, 15, 900 }, + [4] = { 56.9, 47.6, 40, 3600 }, + [5] = { 47, 50.5, 267, 7200 }, + }, + }, + [23014] = { + ["coords"] = { + [1] = { 23.7, 80.1, 12, 900 }, + [2] = { 67.2, 53.3, 15, 900 }, + [3] = { 69.1, 49.9, 15, 900 }, + [4] = { 57, 47.4, 40, 3600 }, + [5] = { 46.9, 50.4, 267, 7200 }, + }, + }, + [23015] = { + ["coords"] = { + [1] = { 23.8, 80.8, 12, 900 }, + [2] = { 66.9, 53.5, 15, 900 }, + [3] = { 69.3, 50.3, 15, 900 }, + [4] = { 56.6, 47, 40, 3600 }, + [5] = { 46.4, 50.8, 267, 7200 }, + }, + }, + [23016] = { + ["coords"] = { + [1] = { 59.6, 41, 15, 900 }, + [2] = { 46.5, 24.4, 15, 900 }, + [3] = { 55.1, 23.7, 28, 1200 }, + [4] = { 45.6, 18.8, 28, 1200 }, + }, + }, + [23017] = { + ["coords"] = { + [1] = { 59.6, 41.1, 15, 900 }, + [2] = { 46.6, 24.5, 15, 900 }, + [3] = { 55.1, 23.6, 28, 1200 }, + [4] = { 45.7, 18.8, 28, 1200 }, + }, + }, + [23018] = { + ["coords"] = { + [1] = { 59.9, 41.2, 15, 900 }, + [2] = { 46.8, 24.2, 15, 900 }, + [3] = { 54.8, 23.3, 28, 1200 }, + [4] = { 45.7, 18.2, 28, 1200 }, + }, + }, + [23295] = { + ["coords"] = { + [1] = { 48.9, 53.1, 1519, 900 }, + }, + }, + [23296] = { + ["coords"] = { + [1] = { 41.2, 77.5, 1519, 120 }, + }, + }, + [23299] = { + ["coords"] = { + [1] = { 35.1, 47.8, 1519, 120 }, + }, + }, + [23300] = { + ["coords"] = { + [1] = { 35.1, 69.1, 1519, 120 }, + }, + }, + [23301] = { + ["coords"] = { + [1] = { 32.9, 59, 1519, 120 }, + }, + }, + [23302] = { + ["coords"] = { + [1] = { 56.9, 15.8, 1519, 120 }, + }, + }, + [23303] = { + ["coords"] = { + [1] = { 57, 16.3, 1519, 120 }, + }, + }, + [23304] = { + ["coords"] = { + [1] = { 57.1, 15.9, 1519, 120 }, + }, + }, + [23305] = { + ["coords"] = { + [1] = { 56.8, 16.3, 1519, 120 }, + }, + }, + [23505] = { + ["coords"] = {}, + }, + [23570] = { + ["coords"] = { + [1] = { 55.5, 27, 17, 900 }, + }, + }, + [23571] = { + ["coords"] = { + [1] = { 47.7, 17.9, 17, 900 }, + }, + }, + [23572] = { + ["coords"] = { + [1] = { 47.4, 19.3, 17, 900 }, + }, + }, + [23573] = { + ["coords"] = { + [1] = { 46.4, 18, 17, 900 }, + }, + }, + [23574] = { + ["coords"] = { + [1] = { 45.8, 25.6, 17, 900 }, + }, + }, + [23575] = { + ["coords"] = { + [1] = { 43.9, 21.4, 17, 900 }, + }, + }, + [23577] = { + ["coords"] = { + [1] = { 42.3, 26.8, 17, 900 }, + }, + }, + [23879] = { + ["coords"] = { + [1] = { 64.6, 78.8, 215, 900 }, + }, + }, + [23880] = { + ["coords"] = { + [1] = { 18.9, 22, 400, 180 }, + }, + }, + [23881] = { + ["coords"] = { + [1] = { 18.4, 22.7, 400, 180 }, + }, + }, + [24388] = { + ["coords"] = { + [1] = { 57.8, 72, 1519, 900 }, + }, + }, + [24389] = { + ["coords"] = { + [1] = { 46.4, 39.4, 1519, 900 }, + }, + }, + [24390] = { + ["coords"] = { + [1] = { 81.9, 15.4, 1519, 120 }, + }, + }, + [24391] = { + ["coords"] = { + [1] = { 74, 18.4, 1519, 120 }, + }, + }, + [24392] = { + ["coords"] = { + [1] = { 61.6, 6.2, 1519, 120 }, + }, + }, + [24393] = { + ["coords"] = { + [1] = { 45.4, 39.8, 1519, 900 }, + }, + }, + [24394] = { + ["coords"] = { + [1] = { 60.2, 2.8, 1519, 120 }, + }, + }, + [24395] = { + ["coords"] = { + [1] = { 45.5, 40.4, 1519, 900 }, + }, + }, + [24396] = { + ["coords"] = { + [1] = { 45.6, 39.2, 1519, 900 }, + }, + }, + [24397] = { + ["coords"] = {}, + }, + [24398] = { + ["coords"] = { + [1] = { 46, 39.1, 1519, 900 }, + }, + }, + [24399] = { + ["coords"] = { + [1] = { 45.9, 40.7, 1519, 900 }, + }, + }, + [24400] = { + ["coords"] = { + [1] = { 61.9, 5.9, 1519, 120 }, + }, + }, + [24401] = { + ["coords"] = { + [1] = { 46.5, 40, 1519, 900 }, + }, + }, + [24402] = { + ["coords"] = { + [1] = { 40, 32.4, 1519, 120 }, + }, + }, + [24403] = { + ["coords"] = { + [1] = { 42.4, 29.6, 1519, 120 }, + }, + }, + [24404] = { + ["coords"] = { + [1] = { 65.5, 20.5, 1519, 120 }, + }, + }, + [24405] = { + ["coords"] = { + [1] = { 42, 28.8, 1519, 120 }, + }, + }, + [24406] = { + ["coords"] = { + [1] = { 38.8, 30, 1519, 120 }, + }, + }, + [24407] = { + ["coords"] = { + [1] = { 41.1, 27.2, 1519, 120 }, + }, + }, + [24408] = { + ["coords"] = { + [1] = { 68.1, 16.7, 1519, 120 }, + }, + }, + [24409] = { + ["coords"] = { + [1] = { 68.4, 16.4, 1519, 120 }, + }, + }, + [24410] = { + ["coords"] = { + [1] = { 69.5, 15.1, 1519, 120 }, + }, + }, + [24411] = { + ["coords"] = { + [1] = { 69.8, 14.7, 1519, 120 }, + }, + }, + [24412] = { + ["coords"] = { + [1] = { 69.8, 13.8, 1519, 120 }, + }, + }, + [24413] = { + ["coords"] = { + [1] = { 59.5, 5.3, 1519, 120 }, + }, + }, + [24414] = { + ["coords"] = { + [1] = { 69.6, 13.4, 1519, 120 }, + }, + }, + [24415] = { + ["coords"] = { + [1] = { 66.2, 13.2, 1519, 120 }, + }, + }, + [24416] = { + ["coords"] = { + [1] = { 66.5, 12.9, 1519, 120 }, + }, + }, + [24417] = { + ["coords"] = { + [1] = { 66.2, 14.1, 1519, 120 }, + }, + }, + [24418] = { + ["coords"] = { + [1] = { 65.5, 19.2, 1519, 120 }, + }, + }, + [24419] = { + ["coords"] = { + [1] = { 51.4, 16.1, 1519, 120 }, + }, + }, + [24420] = { + ["coords"] = { + [1] = { 51.5, 15.9, 1519, 120 }, + }, + }, + [24421] = { + ["coords"] = { + [1] = { 51.7, 15.9, 1519, 120 }, + }, + }, + [24422] = { + ["coords"] = { + [1] = { 24.5, 49.3, 1519, 120 }, + }, + }, + [24423] = { + ["coords"] = { + [1] = { 66, 20.4, 1519, 120 }, + }, + }, + [24424] = { + ["coords"] = { + [1] = { 66.1, 18.4, 1519, 120 }, + }, + }, + [24425] = { + ["coords"] = { + [1] = { 24.4, 49.3, 1519, 120 }, + }, + }, + [24426] = { + ["coords"] = { + [1] = { 24.3, 49, 1519, 120 }, + }, + }, + [24427] = { + ["coords"] = { + [1] = { 24.4, 48.9, 1519, 120 }, + }, + }, + [24428] = { + ["coords"] = { + [1] = { 65.7, 19.9, 1519, 120 }, + }, + }, + [24429] = { + ["coords"] = { + [1] = { 24.6, 48.9, 1519, 120 }, + }, + }, + [24430] = { + ["coords"] = { + [1] = { 24.7, 49.1, 1519, 120 }, + }, + }, + [24431] = { + ["coords"] = { + [1] = { 24.6, 47.5, 1519, 120 }, + }, + }, + [24432] = { + ["coords"] = { + [1] = { 24.6, 47.3, 1519, 120 }, + }, + }, + [24433] = { + ["coords"] = { + [1] = { 24.8, 47.3, 1519, 120 }, + }, + }, + [24434] = { + ["coords"] = { + [1] = { 24.8, 47.5, 1519, 120 }, + }, + }, + [24435] = { + ["coords"] = { + [1] = { 22.3, 63.9, 1519, 180 }, + }, + }, + [24436] = { + ["coords"] = { + [1] = { 65.7, 20.2, 1519, 120 }, + }, + }, + [24437] = { + ["coords"] = { + [1] = { 21.7, 63.2, 1519, 120 }, + }, + }, + [24438] = { + ["coords"] = { + [1] = { 21.9, 63.6, 1519, 180 }, + }, + }, + [24439] = { + ["coords"] = { + [1] = { 22.3, 63, 1519, 120 }, + }, + }, + [24440] = { + ["coords"] = { + [1] = { 21.8, 63.5, 1519, 180 }, + }, + }, + [24441] = { + ["coords"] = { + [1] = { 22.9, 64.5, 1519, 120 }, + }, + }, + [24442] = { + ["coords"] = { + [1] = { 23.1, 63.8, 1519, 180 }, + }, + }, + [24443] = { + ["coords"] = { + [1] = { 23.2, 63.9, 1519, 120 }, + }, + }, + [24444] = { + ["coords"] = { + [1] = { 23.3, 64.9, 1519, 120 }, + }, + }, + [24445] = { + ["coords"] = { + [1] = { 39, 64.6, 1519, 120 }, + }, + }, + [24446] = { + ["coords"] = { + [1] = { 66, 20.1, 1519, 120 }, + }, + }, + [24447] = { + ["coords"] = { + [1] = { 23.5, 65, 1519, 120 }, + }, + }, + [24448] = { + ["coords"] = { + [1] = { 21.7, 65.4, 1519, 180 }, + }, + }, + [24449] = { + ["coords"] = { + [1] = { 22.3, 65, 1519, 180 }, + }, + }, + [24450] = { + ["coords"] = { + [1] = { 21.8, 65.7, 1519, 180 }, + }, + }, + [24451] = { + ["coords"] = { + [1] = { 60.7, 7.3, 1519, 120 }, + }, + }, + [24452] = { + ["coords"] = { + [1] = { 66.4, 14.6, 1519, 120 }, + }, + }, + [24453] = { + ["coords"] = { + [1] = { 59.6, 3.5, 1519, 120 }, + }, + }, + [24454] = { + ["coords"] = { + [1] = { 21.9, 65.5, 1519, 180 }, + }, + }, + [24455] = { + ["coords"] = { + [1] = { 65.8, 20.4, 1519, 120 }, + }, + }, + [24456] = { + ["coords"] = { + [1] = { 22.7, 64.6, 1519, 180 }, + }, + }, + [24457] = { + ["coords"] = { + [1] = { 22.1, 64.9, 1519, 180 }, + }, + }, + [24458] = { + ["coords"] = { + [1] = { 42, 90.1, 1519, 120 }, + }, + }, + [24459] = { + ["coords"] = { + [1] = { 42.1, 90.2, 1519, 120 }, + }, + }, + [24460] = { + ["coords"] = { + [1] = { 40.5, 39.1, 1519, 120 }, + }, + }, + [24461] = { + ["coords"] = { + [1] = { 60.8, 2.1, 1519, 120 }, + }, + }, + [24462] = { + ["coords"] = { + [1] = { 40.4, 38.8, 1519, 120 }, + }, + }, + [24463] = { + ["coords"] = { + [1] = { 40, 38.1, 1519, 120 }, + }, + }, + [24464] = { + ["coords"] = { + [1] = { 39.9, 37.9, 1519, 120 }, + }, + }, + [24465] = { + ["coords"] = { + [1] = { 42, 41.3, 1519, 120 }, + }, + }, + [24466] = { + ["coords"] = { + [1] = { 31.5, 73.6, 1519, 120 }, + }, + }, + [24467] = { + ["coords"] = { + [1] = { 31.1, 73.7, 1519, 120 }, + }, + }, + [24468] = { + ["coords"] = {}, + }, + [24469] = { + ["coords"] = { + [1] = { 52.7, 65, 1519, 900 }, + }, + }, + [24470] = { + ["coords"] = { + [1] = { 52.8, 64.7, 1519, 900 }, + }, + }, + [24471] = { + ["coords"] = { + [1] = { 40.9, 90.4, 1519, 120 }, + }, + }, + [24472] = { + ["coords"] = { + [1] = { 67, 20.4, 1519, 120 }, + }, + }, + [24473] = { + ["coords"] = {}, + }, + [24474] = { + ["coords"] = {}, + }, + [24475] = { + ["coords"] = { + [1] = { 41.3, 90, 1519, 120 }, + }, + }, + [24476] = { + ["coords"] = { + [1] = { 40.8, 90.3, 1519, 120 }, + }, + }, + [24477] = { + ["coords"] = { + [1] = { 40.3, 88.7, 1519, 120 }, + }, + }, + [24478] = { + ["coords"] = { + [1] = { 41, 89.7, 1519, 120 }, + }, + }, + [24479] = { + ["coords"] = { + [1] = { 73.4, 37.5, 1519, 900 }, + }, + }, + [24480] = { + ["coords"] = { + [1] = { 78.9, 47.6, 1519, 900 }, + }, + }, + [24481] = { + ["coords"] = { + [1] = { 23.2, 63.6, 1519, 120 }, + }, + }, + [24482] = { + ["coords"] = { + [1] = { 42, 89.9, 1519, 120 }, + }, + }, + [24483] = { + ["coords"] = { + [1] = { 66.9, 19.7, 1519, 120 }, + }, + }, + [24484] = { + ["coords"] = { + [1] = { 41, 90.2, 1519, 120 }, + }, + }, + [24485] = { + ["coords"] = { + [1] = { 40.5, 88.5, 1519, 120 }, + }, + }, + [24486] = { + ["coords"] = { + [1] = { 57.2, 67.4, 1519, 900 }, + }, + }, + [24487] = { + ["coords"] = { + [1] = { 57.3, 67.8, 1519, 900 }, + }, + }, + [24488] = { + ["coords"] = { + [1] = { 56.7, 67.8, 1519, 900 }, + }, + }, + [24489] = { + ["coords"] = { + [1] = { 56.9, 68.2, 1519, 900 }, + }, + }, + [24490] = { + ["coords"] = { + [1] = { 56.7, 68.1, 1519, 900 }, + }, + }, + [24491] = { + ["coords"] = { + [1] = { 65.9, 19.9, 1519, 120 }, + }, + }, + [24492] = { + ["coords"] = { + [1] = { 57.1, 67.7, 1519, 900 }, + }, + }, + [24493] = { + ["coords"] = { + [1] = { 54, 51.1, 1519, 900 }, + }, + }, + [24494] = { + ["coords"] = { + [1] = { 42.6, 32.5, 1519, 120 }, + }, + }, + [24495] = { + ["coords"] = { + [1] = { 41.9, 33.3, 1519, 120 }, + }, + }, + [24496] = { + ["coords"] = { + [1] = { 56.4, 70.1, 1519, 900 }, + }, + }, + [24497] = { + ["coords"] = { + [1] = { 59.1, 4.2, 1519, 120 }, + }, + }, + [24498] = { + ["coords"] = { + [1] = { 55.8, 70.6, 1519, 900 }, + }, + }, + [24499] = { + ["coords"] = { + [1] = { 61.3, 6.6, 1519, 120 }, + }, + }, + [24500] = { + ["coords"] = { + [1] = { 54.1, 52.1, 1519, 900 }, + }, + }, + [24501] = { + ["coords"] = { + [1] = { 54, 52.3, 1519, 900 }, + }, + }, + [24502] = { + ["coords"] = { + [1] = { 54, 52.6, 1519, 900 }, + }, + }, + [24503] = { + ["coords"] = { + [1] = { 54.2, 52.7, 1519, 900 }, + }, + }, + [24504] = { + ["coords"] = { + [1] = { 54, 51.6, 1519, 900 }, + }, + }, + [24505] = { + ["coords"] = { + [1] = { 54.1, 51.4, 1519, 900 }, + }, + }, + [24506] = { + ["coords"] = { + [1] = { 22.4, 63.2, 1519, 120 }, + }, + }, + [24507] = { + ["coords"] = { + [1] = { 62.3, 29.8, 1519, 900 }, + }, + }, + [24508] = { + ["coords"] = { + [1] = { 61.4, 29.2, 1519, 900 }, + }, + }, + [24509] = { + ["coords"] = { + [1] = { 21.8, 63, 1519, 120 }, + }, + }, + [24510] = { + ["coords"] = { + [1] = { 53.9, 51.4, 1519, 900 }, + }, + }, + [24511] = { + ["coords"] = { + [1] = { 54, 51.2, 1519, 900 }, + }, + }, + [24512] = { + ["coords"] = { + [1] = { 49.4, 30.5, 1519, 900 }, + }, + }, + [24513] = { + ["coords"] = { + [1] = { 49.2, 30.4, 1519, 900 }, + }, + }, + [24514] = { + ["coords"] = { + [1] = { 49, 30.7, 1519, 900 }, + }, + }, + [24515] = { + ["coords"] = { + [1] = { 49.1, 30.4, 1519, 900 }, + }, + }, + [24516] = { + ["coords"] = { + [1] = { 61.3, 29.4, 1519, 900 }, + }, + }, + [24517] = { + ["coords"] = { + [1] = { 61.7, 29.5, 1519, 900 }, + }, + }, + [24518] = { + ["coords"] = { + [1] = { 48.4, 31.4, 1519, 900 }, + }, + }, + [24519] = { + ["coords"] = { + [1] = { 48.4, 31.3, 1519, 900 }, + }, + }, + [24520] = { + ["coords"] = { + [1] = { 48.2, 31, 1519, 900 }, + }, + }, + [24521] = { + ["coords"] = { + [1] = { 72.4, 15.4, 1519, 120 }, + }, + }, + [24522] = { + ["coords"] = { + [1] = { 72.8, 9.9, 1519, 120 }, + }, + }, + [24523] = { + ["coords"] = { + [1] = { 73.1, 5.9, 1519, 120 }, + }, + }, + [24524] = { + ["coords"] = { + [1] = { 73, 6.2, 1519, 120 }, + }, + }, + [24525] = { + ["coords"] = { + [1] = { 52, 16.5, 1519, 120 }, + }, + }, + [24526] = { + ["coords"] = { + [1] = { 73.2, 5.9, 1519, 120 }, + }, + }, + [24527] = { + ["coords"] = { + [1] = { 72.9, 6.7, 1519, 120 }, + }, + }, + [24528] = { + ["coords"] = { + [1] = { 57.5, 71.2, 1519, 900 }, + }, + }, + [24529] = { + ["coords"] = { + [1] = { 57.4, 70.8, 1519, 900 }, + }, + }, + [24530] = { + ["coords"] = { + [1] = { 57.2, 70.5, 1519, 900 }, + }, + }, + [24531] = { + ["coords"] = { + [1] = { 57, 69.7, 1519, 900 }, + }, + }, + [24532] = { + ["coords"] = { + [1] = { 56, 73.4, 1519, 900 }, + }, + }, + [24533] = { + ["coords"] = { + [1] = { 55.8, 72.6, 1519, 900 }, + }, + }, + [24534] = { + ["coords"] = { + [1] = { 55.6, 72.3, 1519, 900 }, + }, + }, + [24535] = { + ["coords"] = { + [1] = { 59.9, 3.2, 1519, 120 }, + }, + }, + [24536] = { + ["coords"] = { + [1] = { 55.2, 71.2, 1519, 900 }, + }, + }, + [24537] = { + ["coords"] = { + [1] = { 55.5, 71.9, 1519, 900 }, + }, + }, + [24538] = { + ["coords"] = { + [1] = { 73.6, 30, 1519, 900 }, + }, + }, + [24539] = { + ["coords"] = { + [1] = { 76.1, 28.9, 1519, 900 }, + }, + }, + [24540] = { + ["coords"] = { + [1] = { 75.5, 27.8, 1519, 120 }, + }, + }, + [24541] = { + ["coords"] = { + [1] = { 75.9, 31.8, 1519, 900 }, + }, + }, + [24542] = { + ["coords"] = { + [1] = { 73.8, 29.8, 1519, 900 }, + }, + }, + [24543] = { + ["coords"] = { + [1] = { 76.7, 29.9, 1519, 900 }, + }, + }, + [24544] = { + ["coords"] = { + [1] = { 74.8, 32.2, 1519, 900 }, + }, + }, + [24545] = { + ["coords"] = { + [1] = { 74.9, 32, 1519, 900 }, + }, + }, + [24546] = { + ["coords"] = { + [1] = { 73.3, 30.4, 1519, 900 }, + }, + }, + [24547] = { + ["coords"] = { + [1] = { 76.2, 30.5, 1519, 900 }, + }, + }, + [24548] = { + ["coords"] = { + [1] = { 76.4, 30.3, 1519, 900 }, + }, + }, + [24549] = { + ["coords"] = { + [1] = { 74.8, 27.7, 1519, 120 }, + }, + }, + [24550] = { + ["coords"] = { + [1] = { 74.5, 32.6, 1519, 900 }, + }, + }, + [24551] = { + ["coords"] = { + [1] = { 73.4, 29.4, 1519, 900 }, + }, + }, + [24552] = { + ["coords"] = { + [1] = { 73.9, 31.5, 1519, 900 }, + }, + }, + [24553] = { + ["coords"] = { + [1] = { 75.1, 28.3, 1519, 120 }, + }, + }, + [24554] = { + ["coords"] = { + [1] = { 75.2, 28.1, 1519, 120 }, + }, + }, + [24555] = { + ["coords"] = { + [1] = { 75.1, 32.7, 1519, 900 }, + }, + }, + [24556] = { + ["coords"] = { + [1] = { 76.6, 31, 1519, 900 }, + }, + }, + [24557] = { + ["coords"] = { + [1] = { 72.4, 15.7, 1519, 120 }, + }, + }, + [24558] = { + ["coords"] = { + [1] = { 72.2, 7.5, 1519, 120 }, + }, + }, + [24559] = { + ["coords"] = { + [1] = { 73.8, 8.4, 1519, 120 }, + }, + }, + [24560] = { + ["coords"] = { + [1] = { 73.1, 9.2, 1519, 120 }, + }, + }, + [24561] = { + ["coords"] = { + [1] = { 73, 9.9, 1519, 120 }, + }, + }, + [24562] = { + ["coords"] = { + [1] = { 75.1, 30.4, 1519, 900 }, + }, + }, + [24563] = { + ["coords"] = { + [1] = { 74.8, 30.4, 1519, 900 }, + }, + }, + [24564] = { + ["coords"] = { + [1] = { 74.9, 30, 1519, 900 }, + }, + }, + [24565] = { + ["coords"] = { + [1] = { 62.1, 4, 1519, 120 }, + }, + }, + [24566] = { + ["coords"] = { + [1] = { 75.1, 30, 1519, 900 }, + }, + }, + [24567] = { + ["coords"] = { + [1] = { 78.3, 26.7, 1519, 120 }, + }, + }, + [24568] = { + ["coords"] = { + [1] = { 74.1, 15.8, 1519, 120 }, + }, + ["fac"] = "A", + }, + [24569] = { + ["coords"] = { + [1] = { 78.2, 26.8, 1519, 120 }, + }, + }, + [24570] = { + ["coords"] = { + [1] = { 78.4, 26.9, 1519, 120 }, + }, + }, + [24571] = { + ["coords"] = { + [1] = { 76.5, 26.3, 1519, 120 }, + }, + }, + [24572] = { + ["coords"] = { + [1] = { 76.5, 26.7, 1519, 120 }, + }, + }, + [24573] = { + ["coords"] = { + [1] = { 76.4, 26.5, 1519, 120 }, + }, + }, + [24574] = { + ["coords"] = { + [1] = { 74.2, 15.7, 1519, 120 }, + }, + }, + [24575] = { + ["coords"] = { + [1] = { 61.6, 2.9, 1519, 120 }, + }, + }, + [24576] = { + ["coords"] = { + [1] = { 76.6, 23.8, 1519, 120 }, + }, + }, + [24577] = { + ["coords"] = { + [1] = { 76.7, 24, 1519, 120 }, + }, + }, + [24578] = { + ["coords"] = { + [1] = { 76.7, 23.6, 1519, 120 }, + }, + }, + [24579] = { + ["coords"] = { + [1] = { 78.6, 24.1, 1519, 120 }, + }, + }, + [24580] = { + ["coords"] = { + [1] = { 72.3, 15.5, 1519, 120 }, + }, + }, + [24581] = { + ["coords"] = { + [1] = { 78.4, 24.1, 1519, 120 }, + }, + }, + [24582] = { + ["coords"] = { + [1] = { 78.5, 23.9, 1519, 120 }, + }, + }, + [24583] = { + ["coords"] = { + [1] = { 80.8, 13, 1519, 120 }, + }, + }, + [24584] = { + ["coords"] = { + [1] = { 80.6, 13, 1519, 120 }, + }, + }, + [24585] = { + ["coords"] = { + [1] = { 80.6, 13.2, 1519, 120 }, + }, + }, + [24586] = { + ["coords"] = { + [1] = { 82, 11.5, 1519, 120 }, + }, + }, + [24587] = { + ["coords"] = { + [1] = { 72, 18.3, 1519, 120 }, + }, + }, + [24588] = { + ["coords"] = { + [1] = { 74.3, 15.9, 1519, 120 }, + }, + }, + [24589] = { + ["coords"] = { + [1] = { 51.8, 16.1, 1519, 120 }, + }, + }, + [24590] = { + ["coords"] = { + [1] = { 82, 11.2, 1519, 120 }, + }, + }, + [24591] = { + ["coords"] = { + [1] = { 82.2, 11.3, 1519, 120 }, + }, + }, + [24592] = { + ["coords"] = { + [1] = { 83.4, 13.5, 1519, 120 }, + }, + }, + [24593] = { + ["coords"] = { + [1] = { 83.2, 13.4, 1519, 120 }, + }, + }, + [24594] = { + ["coords"] = { + [1] = { 83.3, 13.7, 1519, 120 }, + }, + }, + [24595] = { + ["coords"] = { + [1] = { 81.8, 15.1, 1519, 120 }, + }, + }, + [24596] = { + ["coords"] = { + [1] = { 81.9, 15.2, 1519, 120 }, + }, + }, + [24597] = { + ["coords"] = { + [1] = { 67.1, 20.2, 1519, 120 }, + }, + }, + [24598] = { + ["coords"] = { + [1] = { 41.7, 89, 1519, 120 }, + }, + }, + [24599] = { + ["coords"] = { + [1] = { 41.8, 89.1, 1519, 120 }, + }, + }, + [24600] = { + ["coords"] = { + [1] = { 73.5, 37.3, 1519, 900 }, + }, + }, + [24601] = { + ["coords"] = { + [1] = { 62.1, 29.7, 1519, 900 }, + }, + }, + [24602] = { + ["coords"] = { + [1] = { 40.6, 88.8, 1519, 120 }, + }, + }, + [24603] = { + ["coords"] = { + [1] = { 66.7, 19.6, 1519, 120 }, + }, + }, + [24604] = { + ["coords"] = { + [1] = { 66.5, 19, 1519, 120 }, + }, + }, + [24605] = { + ["coords"] = { + [1] = { 40.9, 88.5, 1519, 120 }, + }, + }, + [24606] = { + ["coords"] = { + [1] = { 62.2, 29.4, 1519, 900 }, + }, + }, + [24607] = { + ["coords"] = { + [1] = { 62.3, 29.6, 1519, 900 }, + }, + }, + [24608] = { + ["coords"] = { + [1] = { 40.4, 88.5, 1519, 120 }, + }, + }, + [24609] = { + ["coords"] = { + [1] = { 73.9, 18.6, 1519, 120 }, + }, + }, + [24610] = { + ["coords"] = { + [1] = { 74.1, 18.6, 1519, 120 }, + }, + }, + [24611] = { + ["coords"] = { + [1] = { 31.7, 73.2, 1519, 120 }, + }, + }, + [24612] = { + ["coords"] = { + [1] = { 41.9, 32.4, 1519, 120 }, + }, + }, + [24613] = { + ["coords"] = { + [1] = { 42.2, 31.1, 1519, 120 }, + }, + }, + [24614] = { + ["coords"] = { + [1] = { 41.1, 32.4, 1519, 120 }, + }, + }, + [24615] = { + ["coords"] = { + [1] = { 42.3, 34.7, 1519, 120 }, + }, + }, + [24616] = { + ["coords"] = { + [1] = { 43.4, 33.3, 1519, 900 }, + }, + }, + [24617] = { + ["coords"] = { + [1] = { 42.5, 33.4, 1519, 120 }, + }, + }, + [24618] = { + ["coords"] = { + [1] = { 37.9, 28.5, 1519, 120 }, + }, + }, + [24619] = { + ["coords"] = { + [1] = { 40.3, 25.6, 1519, 120 }, + }, + }, + [24620] = { + ["coords"] = { + [1] = { 39.6, 31.6, 1519, 120 }, + }, + }, + [24621] = { + ["coords"] = { + [1] = { 62.5, 5.2, 1519, 120 }, + }, + }, + [24622] = { + ["coords"] = { + [1] = { 60.1, 6.3, 1519, 120 }, + }, + }, + [24623] = { + ["coords"] = { + [1] = { 41.7, 88.8, 1519, 120 }, + }, + }, + [24624] = { + ["coords"] = { + [1] = { 41.1, 88.2, 1519, 120 }, + }, + }, + [24625] = { + ["coords"] = { + [1] = { 41, 88.1, 1519, 120 }, + }, + }, + [24626] = { + ["coords"] = { + [1] = { 41.2, 88.4, 1519, 120 }, + }, + }, + [24627] = { + ["coords"] = { + [1] = { 73.7, 37.7, 1519, 900 }, + }, + }, + [24628] = { + ["coords"] = { + [1] = { 41.2, 89.6, 1519, 120 }, + }, + }, + [24629] = { + ["coords"] = { + [1] = { 40.8, 89.6, 1519, 120 }, + }, + }, + [24630] = { + ["coords"] = { + [1] = { 41.1, 89.2, 1519, 120 }, + }, + }, + [24631] = { + ["coords"] = { + [1] = { 59.9, 64.4, 1519, 900 }, + }, + }, + [24632] = { + ["coords"] = { + [1] = { 60.1, 64.7, 1519, 900 }, + }, + }, + [24633] = { + ["coords"] = { + [1] = { 57.5, 67.5, 1519, 900 }, + }, + }, + [24634] = { + ["coords"] = { + [1] = { 57.4, 67.2, 1519, 900 }, + }, + }, + [24635] = { + ["coords"] = { + [1] = { 62, 5.4, 1519, 120 }, + }, + }, + [24636] = { + ["coords"] = { + [1] = { 62.1, 5.3, 1519, 120 }, + }, + }, + [24637] = { + ["coords"] = { + [1] = { 65.6, 20.7, 1519, 120 }, + }, + }, + [24638] = { + ["coords"] = { + [1] = { 59.4, 4.1, 1519, 120 }, + }, + }, + [24639] = { + ["coords"] = { + [1] = { 60.6, 2.7, 1519, 120 }, + }, + }, + [24640] = { + ["coords"] = { + [1] = { 60.7, 2.5, 1519, 120 }, + }, + }, + [24641] = { + ["coords"] = { + [1] = { 59.5, 3.9, 1519, 120 }, + }, + }, + [24642] = { + ["coords"] = { + [1] = { 60.8, 6.8, 1519, 120 }, + }, + }, + [24643] = { + ["coords"] = { + [1] = { 61, 6.7, 1519, 120 }, + }, + }, + [24644] = { + ["coords"] = { + [1] = { 62.3, 14.4, 1519, 120 }, + }, + }, + [24645] = { + ["coords"] = { + [1] = { 65.2, 20.7, 1519, 120 }, + }, + }, + [24646] = { + ["coords"] = { + [1] = { 62.3, 14.6, 1519, 120 }, + }, + }, + [24647] = { + ["coords"] = { + [1] = { 62.1, 14.8, 1519, 120 }, + }, + }, + [24648] = { + ["coords"] = { + [1] = { 62.3, 14.8, 1519, 120 }, + }, + }, + [24649] = { + ["coords"] = { + [1] = { 61.5, 15.5, 1519, 120 }, + }, + }, + [24650] = { + ["coords"] = { + [1] = { 61.7, 15.6, 1519, 120 }, + }, + }, + [24651] = { + ["coords"] = { + [1] = { 61.8, 15.4, 1519, 120 }, + }, + }, + [24652] = { + ["coords"] = { + [1] = { 61.8, 15.1, 1519, 120 }, + }, + }, + [24653] = { + ["coords"] = { + [1] = { 52.1, 65.4, 1519, 900 }, + }, + }, + [24654] = { + ["coords"] = { + [1] = { 52, 65.3, 1519, 900 }, + }, + }, + [24655] = { + ["coords"] = { + [1] = { 65.3, 19.2, 1519, 120 }, + }, + }, + [24656] = { + ["coords"] = { + [1] = { 65.3, 20.9, 1519, 120 }, + }, + }, + [24657] = { + ["coords"] = { + [1] = { 72.2, 18.1, 1519, 120 }, + }, + }, + [24658] = { + ["coords"] = { + [1] = { 72.1, 18.5, 1519, 120 }, + }, + }, + [24659] = { + ["coords"] = { + [1] = { 62.1, 14.5, 1519, 120 }, + }, + }, + [24660] = { + ["coords"] = { + [1] = { 50.8, 16.9, 1519, 120 }, + }, + }, + [24661] = { + ["coords"] = { + [1] = { 51.4, 16.3, 1519, 120 }, + }, + }, + [24662] = { + ["coords"] = { + [1] = { 66, 18.3, 1519, 120 }, + }, + }, + [24663] = { + ["coords"] = { + [1] = { 41.5, 90.1, 1519, 120 }, + }, + }, + [24664] = { + ["coords"] = { + [1] = { 66.4, 19, 1519, 120 }, + }, + }, + [24665] = { + ["coords"] = { + [1] = { 41.1, 88.6, 1519, 120 }, + }, + }, + [24666] = { + ["coords"] = { + [1] = { 41.2, 89.3, 1519, 120 }, + }, + }, + [24667] = { + ["coords"] = { + [1] = { 40.9, 89.3, 1519, 120 }, + }, + }, + [24668] = { + ["coords"] = { + [1] = { 39.2, 84, 1519, 120 }, + }, + }, + [24669] = { + ["coords"] = { + [1] = { 39.4, 83.8, 1519, 120 }, + }, + }, + [24670] = { + ["coords"] = { + [1] = { 39.7, 83.6, 1519, 120 }, + }, + }, + [24671] = { + ["coords"] = { + [1] = { 40, 83.4, 1519, 120 }, + }, + }, + [24672] = { + ["coords"] = { + [1] = { 66.4, 18.7, 1519, 120 }, + }, + }, + [24673] = { + ["coords"] = { + [1] = { 40.4, 84.3, 1519, 120 }, + }, + }, + [24674] = { + ["coords"] = { + [1] = { 40.2, 84.6, 1519, 120 }, + }, + }, + [24675] = { + ["coords"] = { + [1] = { 36.7, 32.4, 1519, 120 }, + }, + }, + [24676] = { + ["coords"] = { + [1] = { 37.8, 31.2, 1519, 120 }, + }, + }, + [24677] = { + ["coords"] = { + [1] = { 37.5, 34.2, 1519, 120 }, + }, + }, + [24678] = { + ["coords"] = { + [1] = { 37.6, 34.2, 1519, 120 }, + }, + }, + [24679] = { + ["coords"] = { + [1] = { 37.9, 31.2, 1519, 120 }, + }, + }, + [24680] = { + ["coords"] = { + [1] = { 66.8, 19.4, 1519, 120 }, + }, + }, + [24681] = { + ["coords"] = { + [1] = { 36.7, 32.7, 1519, 120 }, + }, + }, + [24682] = { + ["coords"] = { + [1] = { 43, 27.8, 1519, 120 }, + }, + }, + [24683] = { + ["coords"] = { + [1] = { 44.1, 26.5, 1519, 120 }, + }, + }, + [24684] = { + ["coords"] = { + [1] = { 42.1, 26.3, 1519, 120 }, + }, + }, + [24685] = { + ["coords"] = { + [1] = { 44.1, 26.3, 1519, 120 }, + }, + }, + [24686] = { + ["coords"] = { + [1] = { 52.1, 65.6, 1519, 900 }, + }, + }, + [24687] = { + ["coords"] = { + [1] = { 51.8, 65.5, 1519, 900 }, + }, + }, + [24688] = { + ["coords"] = { + [1] = { 65.5, 19, 1519, 120 }, + }, + }, + [24689] = { + ["coords"] = { + [1] = { 43.3, 24.8, 1519, 120 }, + }, + }, + [24690] = { + ["coords"] = { + [1] = { 43.1, 24.8, 1519, 120 }, + }, + }, + [24691] = { + ["coords"] = { + [1] = { 42.9, 27.8, 1519, 120 }, + }, + }, + [24692] = { + ["coords"] = { + [1] = { 65.3, 20.4, 1519, 120 }, + }, + }, + [24693] = { + ["coords"] = { + [1] = { 42.1, 26, 1519, 120 }, + }, + }, + [24694] = { + ["coords"] = { + [1] = { 41.6, 24.5, 1519, 120 }, + }, + }, + [24695] = { + ["coords"] = { + [1] = { 41.6, 24.2, 1519, 120 }, + }, + }, + [24696] = { + ["coords"] = { + [1] = { 42.6, 23, 1519, 120 }, + }, + }, + [24697] = { + ["coords"] = { + [1] = { 42.8, 23.1, 1519, 120 }, + }, + }, + [24698] = { + ["coords"] = { + [1] = { 42.3, 25.9, 1519, 120 }, + }, + }, + [24699] = { + ["coords"] = { + [1] = { 42.5, 25.9, 1519, 120 }, + }, + }, + [24700] = { + ["coords"] = { + [1] = { 35.6, 31.4, 1519, 120 }, + }, + }, + [24701] = { + ["coords"] = { + [1] = { 35.6, 31.1, 1519, 120 }, + }, + }, + [24702] = { + ["coords"] = { + [1] = { 36.7, 29.9, 1519, 120 }, + }, + }, + [24703] = { + ["coords"] = { + [1] = { 36.8, 29.9, 1519, 120 }, + }, + }, + [24704] = { + ["coords"] = { + [1] = { 37.5, 31.6, 1519, 120 }, + }, + }, + [24705] = { + ["coords"] = { + [1] = { 37.6, 31.3, 1519, 120 }, + }, + }, + [24706] = { + ["coords"] = { + [1] = { 65.5, 20.9, 1519, 120 }, + }, + }, + [24715] = { + ["coords"] = { + [1] = { 46.6, 66.4, 1519, 120 }, + }, + }, + [24717] = { + ["coords"] = { + [1] = { 48.7, 48.5, 1519, 120 }, + }, + }, + [24718] = { + ["coords"] = { + [1] = { 38.2, 47.7, 1519, 120 }, + }, + }, + [24719] = { + ["coords"] = { + [1] = { 36.2, 50.1, 1519, 120 }, + }, + }, + [24720] = { + ["coords"] = { + [1] = { 31.4, 61, 1519, 120 }, + }, + }, + [24721] = { + ["coords"] = { + [1] = { 34, 62.9, 1519, 120 }, + }, + }, + [24723] = { + ["coords"] = { + [1] = { 52.9, 36.7, 17, 900 }, + }, + }, + [24724] = { + ["coords"] = { + [1] = { 53.5, 40.3, 17, 900 }, + }, + }, + [24725] = { + ["coords"] = { + [1] = { 53.8, 42.9, 17, 900 }, + }, + }, + [24726] = { + ["coords"] = { + [1] = { 52.9, 44.7, 17, 900 }, + }, + }, + [24727] = { + ["coords"] = { + [1] = { 65.9, 43.8, 17, 900 }, + }, + }, + [24728] = { + ["coords"] = { + [1] = { 57, 41, 17, 900 }, + }, + }, + [24729] = { + ["coords"] = { + [1] = { 55.8, 46, 17, 900 }, + }, + }, + [24745] = { + ["coords"] = { + [1] = { 55.6, 15.7, 1519, 120 }, + }, + }, + [24746] = { + ["coords"] = { + [1] = { 55.8, 16.5, 1519, 25 }, + }, + }, + [24758] = { + ["coords"] = { + [1] = { 22.1, 67.4, 1519, 180 }, + }, + }, + [24759] = { + ["coords"] = {}, + }, + [24760] = { + ["coords"] = { + [1] = { 22.1, 67.3, 1519, 180 }, + }, + }, + [24761] = { + ["coords"] = { + [1] = { 68.1, 19.3, 1519, 180 }, + }, + }, + [24762] = { + ["coords"] = { + [1] = { 68, 19.2, 1519, 180 }, + }, + }, + [24763] = { + ["coords"] = { + [1] = { 76.1, 36.3, 1519, 900 }, + }, + }, + [24764] = { + ["coords"] = { + [1] = { 76.1, 36.3, 1519, 900 }, + }, + }, + [24765] = { + ["coords"] = {}, + }, + [24776] = { + ["coords"] = { + [1] = { 44.2, 42.7, 130, 10 }, + }, + ["fac"] = "H", + }, + [24777] = { + ["coords"] = { + [1] = { 44.1, 42.7, 130, 10 }, + }, + ["fac"] = "AH", + }, + [24798] = { + ["coords"] = { + [1] = { 82.3, 92.3, 8, 180 }, + [2] = { 83.7, 89, 8, 180 }, + [3] = { 84.8, 87.7, 8, 180 }, + [4] = { 86.1, 85, 8, 180 }, + [5] = { 84.6, 83.8, 8, 180 }, + [6] = { 86.3, 81.4, 8, 180 }, + [7] = { 87.5, 78.1, 8, 180 }, + [8] = { 89.8, 74.1, 8, 180 }, + [9] = { 90.7, 72.4, 8, 180 }, + [10] = { 91.9, 68.6, 8, 180 }, + [11] = { 93.4, 66.3, 8, 180 }, + [12] = { 93.8, 64.1, 8, 180 }, + [13] = { 94.9, 59.8, 8, 180 }, + [14] = { 94, 57.1, 8, 180 }, + [15] = { 94.9, 52.1, 8, 180 }, + [16] = { 94.7, 50, 8, 180 }, + [17] = { 94.8, 44.7, 8, 180 }, + [18] = { 94.4, 41.5, 8, 180 }, + [19] = { 94.6, 41.3, 8, 180 }, + [20] = { 93.3, 36.5, 8, 180 }, + [21] = { 91.9, 31.9, 8, 180 }, + [22] = { 91.1, 27.6, 8, 180 }, + [23] = { 90, 25.9, 8, 180 }, + [24] = { 89.8, 22.4, 8, 180 }, + [25] = { 87.1, 19.1, 8, 180 }, + [26] = { 83.5, 13.8, 8, 180 }, + [27] = { 80.5, 9.4, 8, 180 }, + [28] = { 79.9, 8, 8, 180 }, + }, + }, + [25328] = { + ["coords"] = { + [1] = { 57.4, 64.8, 1519, 900 }, + }, + }, + [25329] = { + ["coords"] = { + [1] = { 66.5, 81.6, 1519, 900 }, + }, + }, + [25330] = { + ["coords"] = { + [1] = { 63.8, 74.9, 1519, 900 }, + }, + }, + [25331] = { + ["coords"] = { + [1] = { 65.7, 77.1, 1519, 900 }, + }, + }, + [25332] = { + ["coords"] = { + [1] = { 67.4, 80.4, 1519, 900 }, + }, + }, + [25333] = { + ["coords"] = { + [1] = { 64.7, 78.2, 1519, 900 }, + }, + }, + [25334] = { + ["coords"] = {}, + }, + [25336] = { + ["coords"] = { + [1] = { 64.4, 38.1, 1519, 900 }, + }, + }, + [25337] = { + ["coords"] = { + [1] = { 66, 36.3, 1519, 900 }, + }, + }, + [25338] = { + ["coords"] = { + [1] = { 53.1, 30.9, 1519, 900 }, + }, + }, + [25339] = { + ["coords"] = { + [1] = { 52.8, 33.3, 1519, 900 }, + }, + }, + [25340] = { + ["coords"] = { + [1] = { 49.9, 45.3, 1519, 900 }, + }, + }, + [25341] = { + ["coords"] = { + [1] = { 31.6, 58.9, 1519, 120 }, + }, + }, + [25342] = { + ["coords"] = { + [1] = { 35.4, 47.4, 1519, 120 }, + }, + }, + [25346] = { + ["coords"] = { + [1] = { 65.5, 50.3, 1519, 900 }, + }, + }, + [25347] = { + ["coords"] = { + [1] = { 64.3, 48, 1519, 900 }, + }, + }, + [25348] = { + ["coords"] = { + [1] = { 47, 68.6, 1519, 900 }, + }, + }, + [25349] = { + ["coords"] = { + [1] = { 45.7, 66.3, 1519, 900 }, + }, + }, + [25350] = { + ["coords"] = { + [1] = { 32.6, 65.3, 1519, 120 }, + }, + }, + [25351] = { + ["coords"] = { + [1] = { 34.3, 63.8, 1519, 120 }, + }, + }, + [25352] = { + ["coords"] = { + [1] = { 33.8, 47.4, 1519, 120 }, + }, + }, + [25353] = { + ["coords"] = { + [1] = { 33.1, 59.5, 1519, 120 }, + }, + }, + [25354] = { + ["coords"] = { + [1] = { 33.1, 57.1, 1519, 120 }, + }, + }, + [25355] = { + ["coords"] = { + [1] = { 36.9, 45.6, 1519, 120 }, + }, + }, + [25356] = { + ["coords"] = { + [1] = { 37.3, 43.3, 1519, 120 }, + }, + }, + [25357] = { + ["coords"] = { + [1] = { 38.5, 45.6, 1519, 120 }, + }, + }, + [26449] = { + ["coords"] = { + [1] = { 45.9, 49.3, 1, 900 }, + }, + }, + [26480] = { + ["coords"] = {}, + }, + [26482] = { + ["coords"] = {}, + }, + [26483] = { + ["coords"] = {}, + }, + [26485] = { + ["coords"] = {}, + }, + [26486] = { + ["coords"] = {}, + }, + [26487] = { + ["coords"] = {}, + }, + [26488] = { + ["coords"] = {}, + }, + [26489] = { + ["coords"] = {}, + }, + [26490] = { + ["coords"] = {}, + }, + [26491] = { + ["coords"] = {}, + }, + [26492] = { + ["coords"] = {}, + }, + [26493] = { + ["coords"] = {}, + }, + [26494] = { + ["coords"] = { + [1] = { 38, 48.3, 1537, 900 }, + }, + }, + [26495] = { + ["coords"] = { + [1] = { 26.4, 12.3, 1537, 900 }, + }, + }, + [26496] = { + ["coords"] = { + [1] = { 44.3, 59.5, 1537, 900 }, + }, + }, + [26497] = { + ["coords"] = {}, + }, + [26498] = { + ["coords"] = {}, + }, + [26499] = { + ["coords"] = { + [1] = { 27.2, 72.9, 1537, 900 }, + }, + }, + [28024] = { + ["coords"] = { + [1] = { 64.5, 18.3, 8, 600 }, + }, + }, + [28027] = { + ["coords"] = { + [1] = { 64.3, 49.4, 1519, 900 }, + [2] = { 53.7, 25.4, 1519, 120 }, + }, + }, + [28028] = { + ["coords"] = { + [1] = { 63.9, 37.6, 1519, 900 }, + }, + }, + [28029] = { + ["coords"] = { + [1] = { 62.8, 33.2, 1519, 900 }, + }, + }, + [28030] = { + ["coords"] = { + [1] = { 53.8, 25.4, 1519, 180 }, + }, + }, + [28031] = { + ["coords"] = { + [1] = { 52.1, 28.8, 1519, 900 }, + }, + }, + [28032] = { + ["coords"] = { + [1] = { 48.9, 48.3, 1519, 900 }, + }, + }, + [28033] = { + ["coords"] = { + [1] = { 67.4, 41.3, 1519, 900 }, + }, + }, + [28034] = { + ["coords"] = { + [1] = { 65.6, 29.9, 1519, 900 }, + }, + }, + [28035] = { + ["coords"] = { + [1] = { 57, 61.6, 1519, 900 }, + }, + }, + [28036] = { + ["coords"] = { + [1] = { 61.7, 52.8, 1519, 900 }, + }, + }, + [28037] = { + ["coords"] = { + [1] = { 50.3, 51.2, 1519, 900 }, + }, + }, + [28038] = { + ["coords"] = { + [1] = { 52.1, 29, 1519, 900 }, + }, + }, + [28039] = { + ["coords"] = { + [1] = { 38.3, 47.7, 1519, 120 }, + }, + }, + [28040] = { + ["coords"] = { + [1] = { 48.9, 48.5, 1519, 900 }, + }, + }, + [28041] = { + ["coords"] = { + [1] = { 64.2, 49.6, 1519, 900 }, + }, + }, + [28042] = { + ["coords"] = { + [1] = { 46.8, 66.4, 1519, 900 }, + }, + }, + [28043] = { + ["coords"] = { + [1] = { 48.5, 62.6, 1519, 900 }, + }, + }, + [28044] = { + ["coords"] = { + [1] = { 52.2, 22.4, 1519, 120 }, + }, + }, + [28045] = { + ["coords"] = { + [1] = { 65.8, 28, 1519, 120 }, + }, + }, + [28046] = { + ["coords"] = { + [1] = { 51, 20.1, 1519, 120 }, + }, + }, + [28047] = { + ["coords"] = { + [1] = { 65.9, 30.4, 1519, 900 }, + }, + }, + [28048] = { + ["coords"] = { + [1] = { 50.9, 49.8, 1, 900 }, + [2] = { 52.1, 37, 2597, 60 }, + }, + }, + [28049] = { + ["coords"] = { + [1] = { 50.8, 49.8, 1, 900 }, + [2] = { 52.1, 37, 2597, 60 }, + }, + }, + [28050] = { + ["coords"] = { + [1] = { 57.8, 44.1, 1, 900 }, + }, + }, + [28051] = { + ["coords"] = { + [1] = { 58, 44.1, 1, 900 }, + }, + }, + [28052] = { + ["coords"] = { + [1] = { 62.6, 49.4, 1, 900 }, + }, + }, + [28053] = { + ["coords"] = { + [1] = { 58, 44.1, 1, 900 }, + }, + }, + [28054] = { + ["coords"] = { + [1] = { 62.5, 49.5, 1, 900 }, + }, + }, + [28055] = { + ["coords"] = { + [1] = { 62.7, 49.4, 1, 900 }, + }, + }, + [28056] = { + ["coords"] = { + [1] = { 62.6, 49.5, 1, 900 }, + }, + }, + [28069] = { + ["coords"] = { + [1] = { 37, 48.8, 38, 7200 }, + [2] = { 33.4, 46.6, 38, 7200 }, + [3] = { 39.7, 39.6, 38, 7200 }, + [4] = { 13.4, 55.1, 47, 7200 }, + [5] = { 98.7, 16.2, 267, 7200 }, + }, + }, + [28070] = { + ["coords"] = { + [1] = { 36.2, 44.7, 38, 7200 }, + [2] = { 35.4, 42.5, 38, 7200 }, + }, + }, + [28071] = { + ["coords"] = { + [1] = { 36.8, 49.2, 38, 7200 }, + [2] = { 33.5, 46.2, 38, 7200 }, + [3] = { 39.7, 39.2, 38, 7200 }, + [4] = { 13.2, 55.1, 47, 7200 }, + [5] = { 98.4, 16.3, 267, 7200 }, + }, + }, + [28072] = { + ["coords"] = { + [1] = { 36.8, 49.3, 38, 7200 }, + [2] = { 33.5, 46.1, 38, 7200 }, + [3] = { 39.7, 39.1, 38, 7200 }, + [4] = { 13.2, 55.1, 47, 7200 }, + [5] = { 98.4, 16.3, 267, 7200 }, + }, + }, + [28073] = { + ["coords"] = { + [1] = { 36.2, 44.5, 38, 7200 }, + [2] = { 35.3, 42.5, 38, 7200 }, + }, + }, + [28074] = { + ["coords"] = { + [1] = { 36.2, 44.9, 38, 7200 }, + [2] = { 35.4, 42.6, 38, 7200 }, + }, + }, + [28075] = { + ["coords"] = { + [1] = { 36.1, 44.9, 38, 7200 }, + [2] = { 35.4, 42.7, 38, 7200 }, + }, + }, + [28603] = { + ["coords"] = { + [1] = { 46, 49.3, 1, 900 }, + }, + }, + [28604] = { + ["coords"] = { + [1] = { 29.7, 50.1, 8, 60 }, + [2] = { 33.6, 46, 8, 60 }, + [3] = { 29.9, 38.3, 8, 60 }, + [4] = { 14.2, 38.2, 8, 60 }, + [5] = { 37.1, 36.2, 8, 60 }, + [6] = { 45.8, 35.6, 8, 60 }, + [7] = { 12.8, 34.4, 8, 60 }, + [8] = { 43.3, 33.3, 8, 60 }, + [9] = { 4.9, 31.2, 8, 60 }, + [10] = { 54.4, 30.6, 8, 60 }, + [11] = { 9.7, 29.8, 8, 60 }, + [12] = { 56.9, 24.7, 8, 60 }, + [13] = { 64.1, 23.4, 8, 60 }, + [14] = { 62.3, 22.5, 8, 60 }, + [15] = { 60, 21.7, 8, 60 }, + }, + ["fac"] = "A", + }, + [28605] = { + ["coords"] = { + [1] = { 50.1, 50.3, 1, 900 }, + [2] = { 52.3, 37.5, 2597, 60 }, + }, + }, + [28606] = { + ["coords"] = { + [1] = { 50.2, 50.1, 1, 900 }, + [2] = { 52.1, 37.5, 2597, 60 }, + }, + }, + [28607] = { + ["coords"] = { + [1] = { 50.2, 50.2, 1, 900 }, + [2] = { 52.1, 37.4, 2597, 60 }, + }, + }, + [28608] = { + ["coords"] = { + [1] = { 62.7, 52.5, 1, 900 }, + }, + }, + [28609] = { + ["coords"] = { + [1] = { 62.6, 52.5, 1, 900 }, + }, + }, + [28610] = { + ["coords"] = { + [1] = { 77.8, 62.5, 1, 900 }, + }, + }, + [28611] = { + ["coords"] = { + [1] = { 77.9, 62.1, 1, 900 }, + }, + }, + [28612] = { + ["coords"] = { + [1] = { 77.9, 62.1, 1, 900 }, + }, + }, + [28613] = { + ["coords"] = { + [1] = { 62.5, 52.2, 1, 900 }, + }, + }, + [29150] = { + ["coords"] = { + [1] = { 47.3, 15, 11, 7200 }, + [2] = { 37.4, 47.5, 38, 7200 }, + [3] = { 34.4, 43.4, 38, 7200 }, + }, + }, + [29151] = { + ["coords"] = { + [1] = { 47.2, 15, 11, 7200 }, + [2] = { 37.4, 47.5, 38, 7200 }, + [3] = { 34.3, 43.4, 38, 7200 }, + }, + }, + [29152] = { + ["coords"] = { + [1] = { 37.1, 47.5, 38, 7200 }, + [2] = { 34.6, 43.5, 38, 7200 }, + }, + }, + [29154] = { + ["coords"] = { + [1] = { 37.3, 47.2, 38, 7200 }, + [2] = { 34.4, 43.7, 38, 7200 }, + }, + }, + [29155] = { + ["coords"] = { + [1] = { 37.3, 47.4, 38, 7200 }, + [2] = { 34.4, 43.6, 38, 7200 }, + }, + }, + [29699] = { + ["coords"] = {}, + }, + [29700] = { + ["coords"] = {}, + }, + [29701] = { + ["coords"] = {}, + }, + [29702] = { + ["coords"] = {}, + }, + [29703] = { + ["coords"] = {}, + }, + [29704] = { + ["coords"] = {}, + }, + [29705] = { + ["coords"] = {}, + }, + [29706] = { + ["coords"] = {}, + }, + [29707] = { + ["coords"] = {}, + }, + [29715] = { + ["coords"] = {}, + }, + [29716] = { + ["coords"] = {}, + }, + [29717] = { + ["coords"] = {}, + }, + [29740] = { + ["coords"] = { + [1] = { 84.1, 40.7, 1, 900 }, + }, + }, + [29741] = { + ["coords"] = { + [1] = { 85.4, 48.6, 1, 900 }, + [2] = { 71.4, 22, 1, 900 }, + }, + }, + [29742] = { + ["coords"] = { + [1] = { 85.4, 48.9, 1, 900 }, + [2] = { 71.6, 21.7, 1, 900 }, + }, + }, + [29743] = { + ["coords"] = { + [1] = { 85.7, 48.6, 1, 900 }, + [2] = { 71.2, 21.7, 1, 900 }, + }, + }, + [29744] = { + ["coords"] = { + [1] = { 85.4, 48.9, 1, 900 }, + [2] = { 71.6, 21.8, 1, 900 }, + }, + }, + [29745] = { + ["coords"] = { + [1] = { 85.7, 48.5, 1, 900 }, + [2] = { 71.2, 21.7, 1, 900 }, + }, + }, + [29746] = { + ["coords"] = { + [1] = { 85.9, 49.1, 1, 900 }, + [2] = { 71.3, 21.2, 1, 900 }, + }, + }, + [29747] = { + ["coords"] = { + [1] = { 85.4, 48.6, 1, 900 }, + [2] = { 71.5, 22, 1, 900 }, + }, + }, + [29748] = { + ["coords"] = { + [1] = { 84.5, 40.6, 1, 900 }, + }, + }, + [29749] = { + ["coords"] = { + [1] = { 84, 40.7, 1, 900 }, + }, + }, + [29750] = { + ["coords"] = { + [1] = { 84.3, 40.3, 1, 900 }, + }, + }, + [29751] = { + ["coords"] = { + [1] = { 84.2, 40.3, 1, 900 }, + }, + }, + [29752] = { + ["coords"] = { + [1] = { 84.2, 40.4, 1, 900 }, + }, + }, + [29753] = { + ["coords"] = { + [1] = { 84.2, 40.9, 1, 900 }, + }, + }, + [29754] = { + ["coords"] = { + [1] = { 84.2, 41.1, 1, 900 }, + }, + }, + [29755] = { + ["coords"] = { + [1] = { 84.2, 41, 1, 900 }, + }, + }, + [29756] = { + ["coords"] = { + [1] = { 84.2, 40.3, 1, 900 }, + }, + }, + [29757] = { + ["coords"] = { + [1] = { 84.3, 41.1, 1, 900 }, + }, + }, + [29758] = { + ["coords"] = { + [1] = { 84.5, 40.7, 1, 900 }, + }, + }, + [29759] = { + ["coords"] = { + [1] = { 24.1, 17.6, 38, 7200 }, + [2] = { 16.1, 46.9, 47, 7200 }, + }, + }, + [29760] = { + ["coords"] = { + [1] = { 24.5, 18.6, 38, 7200 }, + [2] = { 16.4, 47.6, 47, 7200 }, + }, + }, + [29761] = { + ["coords"] = { + [1] = { 24, 17.5, 38, 7200 }, + [2] = { 16, 46.9, 47, 7200 }, + }, + }, + [29762] = { + ["coords"] = { + [1] = { 24.1, 18.4, 38, 7200 }, + [2] = { 16.1, 47.5, 47, 7200 }, + }, + }, + [29763] = { + ["coords"] = { + [1] = { 24.5, 18.5, 38, 7200 }, + [2] = { 16.4, 47.5, 47, 7200 }, + }, + }, + [29764] = { + ["coords"] = { + [1] = { 24.7, 17.3, 38, 7200 }, + [2] = { 16.5, 46.7, 47, 7200 }, + }, + }, + [29765] = { + ["coords"] = { + [1] = { 24, 18.5, 38, 7200 }, + [2] = { 16.1, 47.6, 47, 7200 }, + }, + }, + [29766] = { + ["coords"] = { + [1] = { 23.5, 73.8, 38, 7200 }, + }, + }, + [29767] = { + ["coords"] = { + [1] = { 23.4, 73.8, 38, 7200 }, + }, + }, + [29768] = { + ["coords"] = { + [1] = { 22.9, 74.4, 38, 7200 }, + }, + }, + [29769] = { + ["coords"] = { + [1] = { 23.4, 73.9, 38, 7200 }, + }, + }, + [29770] = { + ["coords"] = { + [1] = { 23.2, 74.9, 38, 7200 }, + }, + }, + [29771] = { + ["coords"] = { + [1] = { 23.2, 75.2, 38, 7200 }, + }, + }, + [29772] = { + ["coords"] = { + [1] = { 23.1, 74.9, 38, 7200 }, + }, + }, + [29773] = { + ["coords"] = { + [1] = { 23.2, 75.2, 38, 7200 }, + }, + }, + [29774] = { + ["coords"] = { + [1] = { 23, 74.4, 38, 7200 }, + }, + }, + [29775] = { + ["coords"] = { + [1] = { 23.8, 74.4, 38, 7200 }, + }, + }, + [29776] = { + ["coords"] = { + [1] = { 23.5, 73.7, 38, 7200 }, + }, + }, + [29777] = { + ["coords"] = { + [1] = { 23.8, 74.6, 38, 7200 }, + }, + }, + [29780] = { + ["coords"] = { + [1] = { 45.2, 52.1, 1, 900 }, + }, + }, + [29781] = { + ["coords"] = { + [1] = { 45.2, 51.4, 1, 900 }, + }, + }, + [29782] = { + ["coords"] = { + [1] = { 45.1, 51.7, 1, 900 }, + }, + }, + [29783] = { + ["coords"] = { + [1] = { 45.1, 51.7, 1, 900 }, + }, + }, + [29784] = { + ["coords"] = { + [1] = { 49.1, 85.8, 2597, 60 }, + }, + ["fac"] = "AH", + }, + [30854] = { + ["coords"] = { + [1] = { 70.6, 66, 8, 180 }, + [2] = { 70.3, 64.9, 8, 180 }, + [3] = { 73.7, 64.8, 8, 180 }, + [4] = { 76.3, 63.5, 8, 180 }, + [5] = { 67.3, 62.9, 8, 180 }, + [6] = { 74.2, 61.6, 8, 180 }, + [7] = { 67.9, 61.1, 8, 180 }, + [8] = { 71.9, 60.5, 8, 180 }, + [9] = { 75.4, 60.4, 8, 180 }, + [10] = { 69.7, 59.8, 8, 180 }, + [11] = { 69.6, 59.4, 8, 180 }, + [12] = { 69.7, 59.4, 8, 180 }, + [13] = { 71.5, 59.2, 8, 180 }, + [14] = { 66.4, 59.1, 8, 180 }, + [15] = { 61.5, 57.9, 8, 180 }, + [16] = { 67.9, 57.9, 8, 180 }, + [17] = { 78.8, 57.2, 8, 180 }, + [18] = { 65.3, 57.1, 8, 180 }, + [19] = { 78.7, 57.1, 8, 180 }, + [20] = { 70.6, 56.9, 8, 180 }, + [21] = { 70.6, 56.6, 8, 180 }, + [22] = { 74.9, 55.9, 8, 180 }, + [23] = { 65.4, 55.3, 8, 180 }, + [24] = { 66.5, 54.1, 8, 180 }, + [25] = { 76.3, 53.6, 8, 180 }, + [26] = { 72.5, 53.1, 8, 180 }, + [27] = { 62.4, 52.9, 8, 180 }, + [28] = { 68, 52.8, 8, 180 }, + [29] = { 74.6, 51.9, 8, 180 }, + [30] = { 65.4, 51.7, 8, 180 }, + [31] = { 70.3, 50.7, 8, 180 }, + [32] = { 67.8, 49.9, 8, 180 }, + [33] = { 67.6, 49.8, 8, 180 }, + [34] = { 64.4, 49.4, 8, 180 }, + [35] = { 72, 49.4, 8, 180 }, + [36] = { 72.1, 49.2, 8, 180 }, + [37] = { 78.2, 48.5, 8, 180 }, + [38] = { 69.9, 48.1, 8, 180 }, + [39] = { 74.3, 47.9, 8, 180 }, + [40] = { 69, 47.3, 8, 180 }, + [41] = { 66, 47.1, 8, 180 }, + [42] = { 71.1, 46.6, 8, 180 }, + [43] = { 68.4, 46, 8, 180 }, + [44] = { 67.3, 45.8, 8, 180 }, + [45] = { 72.1, 44.7, 8, 180 }, + [46] = { 75.7, 44.7, 8, 180 }, + [47] = { 66.1, 43.7, 8, 180 }, + [48] = { 65.5, 43.4, 8, 180 }, + [49] = { 68.2, 43.2, 8, 180 }, + [50] = { 73.9, 42.3, 8, 180 }, + [51] = { 69.8, 40.8, 8, 180 }, + }, + }, + [30855] = { + ["coords"] = { + [1] = { 70.6, 66, 8, 180 }, + [2] = { 70.3, 64.9, 8, 180 }, + [3] = { 73.7, 64.8, 8, 180 }, + [4] = { 76.3, 63.5, 8, 180 }, + [5] = { 67.3, 62.9, 8, 180 }, + [6] = { 74.2, 61.6, 8, 180 }, + [7] = { 67.9, 61.1, 8, 180 }, + [8] = { 71.9, 60.5, 8, 180 }, + [9] = { 75.4, 60.4, 8, 180 }, + [10] = { 69.7, 59.8, 8, 180 }, + [11] = { 69.6, 59.4, 8, 180 }, + [12] = { 69.7, 59.4, 8, 180 }, + [13] = { 71.5, 59.2, 8, 180 }, + [14] = { 66.4, 59.1, 8, 180 }, + [15] = { 61.5, 57.9, 8, 180 }, + [16] = { 67.9, 57.9, 8, 180 }, + [17] = { 78.8, 57.2, 8, 180 }, + [18] = { 65.3, 57.1, 8, 180 }, + [19] = { 78.7, 57.1, 8, 180 }, + [20] = { 70.6, 56.9, 8, 180 }, + [21] = { 70.6, 56.6, 8, 180 }, + [22] = { 74.9, 55.9, 8, 180 }, + [23] = { 65.4, 55.3, 8, 180 }, + [24] = { 66.5, 54.1, 8, 180 }, + [25] = { 76.3, 53.6, 8, 180 }, + [26] = { 72.5, 53.1, 8, 180 }, + [27] = { 62.4, 52.9, 8, 180 }, + [28] = { 68, 52.8, 8, 180 }, + [29] = { 74.6, 51.9, 8, 180 }, + [30] = { 65.4, 51.7, 8, 180 }, + [31] = { 70.3, 50.7, 8, 180 }, + [32] = { 67.8, 49.9, 8, 180 }, + [33] = { 67.6, 49.8, 8, 180 }, + [34] = { 64.4, 49.4, 8, 180 }, + [35] = { 72, 49.4, 8, 180 }, + [36] = { 72.1, 49.2, 8, 180 }, + [37] = { 78.2, 48.5, 8, 180 }, + [38] = { 69.9, 48.1, 8, 180 }, + [39] = { 74.3, 47.9, 8, 180 }, + [40] = { 69, 47.3, 8, 180 }, + [41] = { 66, 47.1, 8, 180 }, + [42] = { 71.1, 46.6, 8, 180 }, + [43] = { 68.4, 46, 8, 180 }, + [44] = { 67.3, 45.8, 8, 180 }, + [45] = { 72.1, 44.7, 8, 180 }, + [46] = { 75.7, 44.7, 8, 180 }, + [47] = { 66.1, 43.7, 8, 180 }, + [48] = { 65.5, 43.4, 8, 180 }, + [49] = { 68.2, 43.2, 8, 180 }, + [50] = { 73.9, 42.3, 8, 180 }, + [51] = { 69.8, 40.8, 8, 180 }, + }, + }, + [30856] = { + ["coords"] = { + [1] = { 70.6, 66, 8, 180 }, + [2] = { 70.3, 64.9, 8, 180 }, + [3] = { 73.7, 64.8, 8, 180 }, + [4] = { 76.3, 63.5, 8, 180 }, + [5] = { 67.3, 62.9, 8, 180 }, + [6] = { 74.2, 61.6, 8, 180 }, + [7] = { 67.9, 61.1, 8, 180 }, + [8] = { 71.9, 60.5, 8, 180 }, + [9] = { 75.4, 60.4, 8, 180 }, + [10] = { 69.7, 59.8, 8, 180 }, + [11] = { 69.6, 59.4, 8, 180 }, + [12] = { 69.7, 59.4, 8, 180 }, + [13] = { 71.5, 59.2, 8, 180 }, + [14] = { 66.4, 59.1, 8, 180 }, + [15] = { 61.5, 57.9, 8, 180 }, + [16] = { 67.9, 57.9, 8, 180 }, + [17] = { 78.8, 57.2, 8, 180 }, + [18] = { 65.3, 57.1, 8, 180 }, + [19] = { 78.7, 57.1, 8, 180 }, + [20] = { 70.6, 56.9, 8, 180 }, + [21] = { 70.6, 56.6, 8, 180 }, + [22] = { 74.9, 55.9, 8, 180 }, + [23] = { 65.4, 55.3, 8, 180 }, + [24] = { 66.5, 54.1, 8, 180 }, + [25] = { 76.3, 53.6, 8, 180 }, + [26] = { 72.5, 53.1, 8, 180 }, + [27] = { 62.4, 52.9, 8, 180 }, + [28] = { 68, 52.8, 8, 180 }, + [29] = { 74.6, 51.9, 8, 180 }, + [30] = { 65.4, 51.7, 8, 180 }, + [31] = { 70.3, 50.7, 8, 180 }, + [32] = { 67.8, 49.9, 8, 180 }, + [33] = { 67.6, 49.8, 8, 180 }, + [34] = { 64.4, 49.4, 8, 180 }, + [35] = { 72, 49.4, 8, 180 }, + [36] = { 72.1, 49.2, 8, 180 }, + [37] = { 78.2, 48.5, 8, 180 }, + [38] = { 69.9, 48.1, 8, 180 }, + [39] = { 74.3, 47.9, 8, 180 }, + [40] = { 69, 47.3, 8, 180 }, + [41] = { 66, 47.1, 8, 180 }, + [42] = { 71.1, 46.6, 8, 180 }, + [43] = { 68.4, 46, 8, 180 }, + [44] = { 67.3, 45.8, 8, 180 }, + [45] = { 72.1, 44.7, 8, 180 }, + [46] = { 75.7, 44.7, 8, 180 }, + [47] = { 66.1, 43.7, 8, 180 }, + [48] = { 65.5, 43.4, 8, 180 }, + [49] = { 68.2, 43.2, 8, 180 }, + [50] = { 73.9, 42.3, 8, 180 }, + [51] = { 69.8, 40.8, 8, 180 }, + }, + }, + [31407] = { + ["coords"] = { + [1] = { 42.8, 39, 14, 900 }, + }, + }, + [31408] = { + ["coords"] = { + [1] = { 44.6, 50.5, 14, 900 }, + }, + }, + [31409] = { + ["coords"] = { + [1] = { 47.3, 49.5, 14, 900 }, + }, + }, + [31410] = { + ["coords"] = { + [1] = { 49.2, 48.8, 14, 900 }, + }, + }, + [31411] = { + ["coords"] = { + [1] = { 55.7, 73.8, 14, 900 }, + }, + }, + [31442] = { + ["coords"] = { + [1] = { 57, 82.5, 16, 180 }, + [2] = { 68.4, 71, 47, 7200 }, + [3] = { 89.3, 62.8, 331, 900 }, + [4] = { 88.6, 59.4, 331, 900 }, + [5] = { 63.3, 33.2, 440, 900 }, + [6] = { 49.1, 85.8, 2597, 60 }, + }, + ["fac"] = "AH", + }, + [31504] = { + ["coords"] = { + [1] = { 9.8, 48.7, 47, 7200 }, + [2] = { 94.3, 8.6, 267, 7200 }, + }, + }, + [31507] = { + ["coords"] = { + [1] = { 9.8, 48.7, 47, 7200 }, + [2] = { 94.3, 8.5, 267, 7200 }, + }, + }, + [31508] = { + ["coords"] = { + [1] = { 9.9, 49.2, 47, 7200 }, + [2] = { 94.4, 9.1, 267, 7200 }, + }, + }, + [31509] = { + ["coords"] = { + [1] = { 9.9, 48.3, 47, 7200 }, + [2] = { 94.5, 8.2, 267, 7200 }, + }, + }, + [31510] = { + ["coords"] = { + [1] = { 28.1, 62, 45, 7200 }, + }, + ["fac"] = "AH", + }, + [31511] = { + ["coords"] = { + [1] = { 28.1, 62, 45, 7200 }, + }, + }, + [31572] = { + ["coords"] = { + [1] = { 52.2, 40.9, 14, 900 }, + }, + }, + [31573] = { + ["coords"] = { + [1] = { 51.9, 40.2, 14, 900 }, + }, + }, + [31574] = { + ["coords"] = { + [1] = { 51.1, 42.6, 14, 900 }, + }, + }, + [31575] = { + ["coords"] = { + [1] = { 51.9, 41.8, 14, 900 }, + }, + }, + [31576] = { + ["coords"] = { + [1] = { 53, 41.9, 14, 900 }, + }, + }, + [31577] = { + ["coords"] = { + [1] = { 53.1, 42.3, 14, 900 }, + }, + }, + [31578] = { + ["coords"] = { + [1] = { 52, 43, 14, 900 }, + }, + }, + [31579] = { + ["coords"] = { + [1] = { 53.1, 43, 14, 900 }, + }, + }, + [31580] = { + ["coords"] = { + [1] = { 54.7, 41.3, 14, 900 }, + }, + }, + [32056] = { + ["coords"] = {}, + }, + [32057] = { + ["coords"] = {}, + }, + [32107] = { + ["coords"] = { + [1] = { 60.8, 40.6, 10, 3600 }, + }, + }, + [32109] = { + ["coords"] = { + [1] = { 48.8, 99.2, 17, 180 }, + [2] = { 43, 38.4, 400, 180 }, + }, + }, + [32110] = { + ["coords"] = { + [1] = { 45.6, 50.6, 400, 180 }, + }, + }, + [32348] = { + ["coords"] = {}, + }, + [32349] = { + ["coords"] = { + [1] = { 21, 52.4, 1537, 900 }, + }, + ["fac"] = "A", + }, + [32350] = { + ["coords"] = {}, + }, + [32351] = { + ["coords"] = {}, + }, + [32352] = { + ["coords"] = {}, + }, + [32353] = { + ["coords"] = {}, + }, + [32354] = { + ["coords"] = {}, + }, + [32355] = { + ["coords"] = { + [1] = { 28.5, 20.3, 1537, 900 }, + }, + }, + [32356] = { + ["coords"] = {}, + }, + [32357] = { + ["coords"] = {}, + }, + [32358] = { + ["coords"] = { + [1] = { 38.7, 45, 1537, 900 }, + }, + }, + [32359] = { + ["coords"] = {}, + }, + [32360] = { + ["coords"] = {}, + }, + [32361] = { + ["coords"] = {}, + }, + [32362] = { + ["coords"] = {}, + }, + [32363] = { + ["coords"] = {}, + }, + [32364] = { + ["coords"] = {}, + }, + [32365] = { + ["coords"] = {}, + }, + [32366] = { + ["coords"] = {}, + }, + [32367] = { + ["coords"] = {}, + }, + [32368] = { + ["coords"] = {}, + }, + [32370] = { + ["coords"] = {}, + }, + [32371] = { + ["coords"] = {}, + }, + [32372] = { + ["coords"] = {}, + }, + [32373] = { + ["coords"] = {}, + }, + [32374] = { + ["coords"] = {}, + }, + [32375] = { + ["coords"] = {}, + }, + [32376] = { + ["coords"] = {}, + }, + [32377] = { + ["coords"] = {}, + }, + [32378] = { + ["coords"] = {}, + }, + [32379] = { + ["coords"] = {}, + }, + [32380] = { + ["coords"] = {}, + }, + [32381] = { + ["coords"] = {}, + }, + [32383] = { + ["coords"] = { + [1] = { 28.7, 20.1, 1537, 900 }, + }, + }, + [32384] = { + ["coords"] = {}, + }, + [32385] = { + ["coords"] = { + [1] = { 23.5, 61.3, 1537, 900 }, + }, + }, + [32386] = { + ["coords"] = {}, + }, + [32388] = { + ["coords"] = {}, + }, + [32389] = { + ["coords"] = { + [1] = { 37.6, 8.4, 1537, 900 }, + }, + }, + [32390] = { + ["coords"] = {}, + }, + [32391] = { + ["coords"] = { + [1] = { 55.5, 31.9, 1537, 900 }, + }, + }, + [32392] = { + ["coords"] = {}, + }, + [32393] = { + ["coords"] = {}, + }, + [32394] = { + ["coords"] = {}, + }, + [32395] = { + ["coords"] = {}, + }, + [32396] = { + ["coords"] = {}, + }, + [32397] = { + ["coords"] = {}, + }, + [32398] = { + ["coords"] = {}, + }, + [32399] = { + ["coords"] = {}, + }, + [32400] = { + ["coords"] = {}, + }, + [32401] = { + ["coords"] = {}, + }, + [32402] = { + ["coords"] = {}, + }, + [32403] = { + ["coords"] = {}, + }, + [32404] = { + ["coords"] = { + [1] = { 53.4, 57.1, 1537, 900 }, + }, + }, + [32405] = { + ["coords"] = {}, + }, + [32406] = { + ["coords"] = {}, + }, + [32407] = { + ["coords"] = {}, + }, + [32408] = { + ["coords"] = {}, + }, + [32409] = { + ["coords"] = {}, + }, + [32410] = { + ["coords"] = {}, + }, + [32411] = { + ["coords"] = {}, + }, + [32412] = { + ["coords"] = {}, + }, + [32413] = { + ["coords"] = {}, + }, + [32414] = { + ["coords"] = {}, + }, + [32416] = { + ["coords"] = { + [1] = { 57.9, 38.2, 1537, 900 }, + }, + }, + [32417] = { + ["coords"] = {}, + }, + [32418] = { + ["coords"] = {}, + }, + [32419] = { + ["coords"] = {}, + }, + [32420] = { + ["coords"] = {}, + }, + [32421] = { + ["coords"] = {}, + }, + [32423] = { + ["coords"] = {}, + }, + [32424] = { + ["coords"] = { + [1] = { 23.4, 61, 1537, 900 }, + }, + }, + [32425] = { + ["coords"] = { + [1] = { 24, 3.7, 1537, 900 }, + }, + }, + [32427] = { + ["coords"] = { + [1] = { 32.8, 78.2, 1537, 900 }, + }, + }, + [32428] = { + ["coords"] = {}, + }, + [32429] = { + ["coords"] = { + [1] = { 56.4, 52.6, 1537, 900 }, + }, + }, + [32430] = { + ["coords"] = {}, + }, + [32431] = { + ["coords"] = { + [1] = { 32.9, 78.4, 1537, 900 }, + }, + }, + [32434] = { + ["coords"] = {}, + }, + [32436] = { + ["coords"] = {}, + }, + [32438] = { + ["coords"] = {}, + }, + [32440] = { + ["coords"] = {}, + }, + [32569] = { + ["coords"] = { + [1] = { 47.8, 39.8, 8, 600 }, + }, + }, + [32570] = { + ["coords"] = { + [1] = { 45.2, 52, 1, 900 }, + }, + }, + [32571] = { + ["coords"] = { + [1] = { 45.4, 52, 1, 900 }, + [2] = { 55.8, 42, 2597, 180 }, + }, + }, + [32572] = { + ["coords"] = { + [1] = { 45.3, 51.8, 1, 900 }, + [2] = { 55.9, 42.1, 2597, 180 }, + }, + }, + [32573] = { + ["coords"] = { + [1] = { 45.3, 51.9, 1, 900 }, + [2] = { 55.9, 42, 2597, 180 }, + }, + }, + [32574] = { + ["coords"] = { + [1] = { 45.4, 51.7, 1, 900 }, + [2] = { 56, 42.2, 2597, 180 }, + }, + }, + [32578] = { + ["coords"] = { + [1] = { 45.2, 52.1, 1, 900 }, + }, + }, + [32579] = { + ["coords"] = {}, + }, + [32580] = { + ["coords"] = { + [1] = { 45.2, 51.6, 1, 900 }, + }, + }, + [32581] = { + ["coords"] = { + [1] = { 45.2, 51.7, 1, 900 }, + }, + }, + [32582] = { + ["coords"] = { + [1] = { 45.7, 16.7, 11, 7200 }, + [2] = { 10.1, 49, 47, 7200 }, + [3] = { 94.7, 9, 267, 7200 }, + }, + }, + [32583] = { + ["coords"] = { + [1] = { 45.7, 16.5, 11, 7200 }, + [2] = { 10, 48.8, 47, 7200 }, + [3] = { 94.6, 8.7, 267, 7200 }, + }, + }, + [32584] = { + ["coords"] = { + [1] = { 45.7, 16.6, 11, 7200 }, + [2] = { 10, 48.9, 47, 7200 }, + [3] = { 94.6, 8.8, 267, 7200 }, + }, + }, + [32585] = { + ["coords"] = { + [1] = { 45.7, 16.4, 11, 7200 }, + [2] = { 10.1, 48.7, 47, 7200 }, + [3] = { 94.7, 8.6, 267, 7200 }, + }, + }, + [32590] = { + ["coords"] = { + [1] = { 10, 48.3, 47, 7200 }, + [2] = { 94.6, 8.1, 267, 7200 }, + }, + }, + [32591] = { + ["coords"] = { + [1] = { 9.9, 48.5, 47, 7200 }, + [2] = { 94.4, 8.4, 267, 7200 }, + }, + }, + [32592] = { + ["coords"] = { + [1] = { 9.8, 49.1, 47, 7200 }, + [2] = { 94.4, 9, 267, 7200 }, + }, + }, + [32593] = { + ["coords"] = { + [1] = { 9.8, 48.6, 47, 7200 }, + [2] = { 94.4, 8.5, 267, 7200 }, + }, + }, + [32594] = { + ["coords"] = { + [1] = { 9.9, 49.2, 47, 7200 }, + [2] = { 94.4, 9.2, 267, 7200 }, + }, + }, + [32595] = { + ["coords"] = { + [1] = { 62.6, 49.7, 1, 900 }, + }, + }, + [32596] = { + ["coords"] = { + [1] = { 35.9, 45.1, 38, 7200 }, + [2] = { 35.3, 43.1, 38, 7200 }, + }, + }, + [32783] = { + ["coords"] = {}, + }, + [32784] = { + ["coords"] = {}, + }, + [32785] = { + ["coords"] = {}, + }, + [32786] = { + ["coords"] = {}, + }, + [32787] = { + ["coords"] = {}, + }, + [32788] = { + ["coords"] = {}, + }, + [32789] = { + ["coords"] = {}, + }, + [32790] = { + ["coords"] = {}, + }, + [32791] = { + ["coords"] = {}, + }, + [32792] = { + ["coords"] = {}, + }, + [32793] = { + ["coords"] = {}, + }, + [32833] = { + ["coords"] = { + [1] = { 28.7, 68.1, 1, 900 }, + }, + }, + [32834] = { + ["coords"] = { + [1] = { 28.6, 66.1, 1, 900 }, + }, + }, + [32835] = { + ["coords"] = { + [1] = { 28.5, 66.1, 1, 900 }, + }, + }, + [32842] = { + ["coords"] = { + [1] = { 28.8, 66.4, 1, 900 }, + }, + }, + [32843] = { + ["coords"] = { + [1] = { 28.6, 66.4, 1, 900 }, + }, + }, + [32844] = { + ["coords"] = { + [1] = { 28.6, 66.5, 1, 900 }, + }, + }, + [32845] = { + ["coords"] = { + [1] = { 28.6, 66.5, 1, 900 }, + }, + }, + [32846] = { + ["coords"] = { + [1] = { 28.6, 66.6, 1, 900 }, + }, + }, + [32847] = { + ["coords"] = { + [1] = { 28.9, 67.8, 1, 900 }, + }, + }, + [32848] = { + ["coords"] = { + [1] = { 28.9, 67.7, 1, 900 }, + }, + }, + [32849] = { + ["coords"] = { + [1] = { 28.8, 67.8, 1, 900 }, + }, + }, + [32850] = { + ["coords"] = { + [1] = { 28.7, 67.7, 1, 900 }, + }, + }, + [32851] = { + ["coords"] = { + [1] = { 28.8, 67.8, 1, 900 }, + }, + }, + [32852] = { + ["coords"] = { + [1] = { 28.7, 67.8, 1, 900 }, + }, + }, + [32853] = { + ["coords"] = { + [1] = { 28.8, 66.6, 1, 900 }, + }, + }, + [32854] = { + ["coords"] = { + [1] = { 28.9, 66.6, 1, 900 }, + }, + }, + [32855] = { + ["coords"] = { + [1] = { 28.8, 66.3, 1, 900 }, + }, + }, + [32856] = { + ["coords"] = { + [1] = { 29.1, 68.2, 1, 900 }, + }, + }, + [32857] = { + ["coords"] = { + [1] = { 29.2, 67.4, 1, 900 }, + }, + }, + [32858] = { + ["coords"] = { + [1] = { 28.7, 68.2, 1, 900 }, + }, + }, + [32859] = { + ["coords"] = { + [1] = { 28.4, 68.1, 1, 900 }, + }, + }, + [32860] = { + ["coords"] = { + [1] = { 28.9, 68.4, 1, 900 }, + }, + }, + [32861] = { + ["coords"] = { + [1] = { 28.3, 67.6, 1, 900 }, + }, + }, + [32862] = { + ["coords"] = { + [1] = { 28.4, 67.6, 1, 900 }, + }, + }, + [32863] = { + ["coords"] = { + [1] = { 28.7, 68.2, 1, 900 }, + }, + }, + [32878] = { + ["coords"] = { + [1] = { 35.3, 16.9, 38, 7200 }, + }, + }, + [32879] = { + ["coords"] = { + [1] = { 60.9, 42, 141, 900 }, + }, + }, + [32880] = { + ["coords"] = { + [1] = { 57.1, 61.2, 141, 900 }, + }, + }, + [32881] = { + ["coords"] = { + [1] = { 24.9, 29.9, 38, 7200 }, + }, + }, + [32882] = { + ["coords"] = { + [1] = { 69.3, 22.6, 38, 7200 }, + }, + }, + [32883] = { + ["coords"] = { + [1] = { 66, 23, 3, 900 }, + }, + }, + [32884] = { + ["coords"] = { + [1] = { 36.2, 83.7, 38, 7200 }, + }, + }, + [32885] = { + ["coords"] = { + [1] = { 35.5, 80.7, 38, 7200 }, + }, + }, + [33998] = { + ["coords"] = { + [1] = { 51.2, 44.1, 1497, 900 }, + }, + }, + [33999] = { + ["coords"] = { + [1] = { 48, 48.2, 1497, 900 }, + }, + }, + [34012] = { + ["coords"] = { + [1] = { 52.9, 55.9, 1497, 900 }, + }, + }, + [34013] = { + ["coords"] = { + [1] = { 50.3, 56.6, 1497, 900 }, + }, + }, + [34025] = { + ["coords"] = { + [1] = { 23.5, 74.4, 38, 604800 }, + }, + }, + [34026] = { + ["coords"] = { + [1] = { 23.5, 74.4, 38, 604800 }, + }, + }, + [34027] = { + ["coords"] = { + [1] = { 23.6, 74.2, 38, 604800 }, + }, + }, + [34028] = { + ["coords"] = { + [1] = { 23.6, 74.3, 38, 604800 }, + }, + }, + [34029] = { + ["coords"] = { + [1] = { 23.5, 74.3, 38, 604800 }, + }, + }, + [34030] = { + ["coords"] = { + [1] = { 23.7, 74.2, 38, 604800 }, + }, + }, + [34031] = { + ["coords"] = { + [1] = { 23.7, 74.4, 38, 604800 }, + }, + }, + [34032] = { + ["coords"] = { + [1] = { 84.3, 40.6, 1, 900 }, + }, + }, + [34033] = { + ["coords"] = { + [1] = { 84.4, 40.5, 1, 900 }, + }, + }, + [34034] = { + ["coords"] = { + [1] = { 85.8, 49.2, 1, 900 }, + [2] = { 71.4, 21.1, 1, 900 }, + }, + }, + [34035] = { + ["coords"] = { + [1] = { 85.9, 49.2, 1, 900 }, + [2] = { 71.4, 21.1, 1, 900 }, + }, + }, + [34036] = { + ["coords"] = { + [1] = { 84.4, 40.6, 1, 900 }, + }, + }, + [34037] = { + ["coords"] = { + [1] = { 85.8, 49.2, 1, 900 }, + [2] = { 71.4, 21.1, 1, 900 }, + }, + }, + [34038] = { + ["coords"] = { + [1] = { 85.8, 49.2, 1, 900 }, + [2] = { 71.4, 21.1, 1, 900 }, + }, + }, + [34167] = { + ["coords"] = { + [1] = { 29, 68.7, 1, 900 }, + }, + }, + [34168] = { + ["coords"] = { + [1] = { 28.7, 68.1, 1, 900 }, + }, + }, + [34357] = { + ["coords"] = {}, + }, + [34358] = { + ["coords"] = {}, + }, + [34359] = { + ["coords"] = {}, + }, + [34360] = { + ["coords"] = { + [1] = { 22.2, 6.1, 1537, 900 }, + }, + }, + [34361] = { + ["coords"] = {}, + }, + [34362] = { + ["coords"] = {}, + }, + [34363] = { + ["coords"] = {}, + }, + [34571] = { + ["coords"] = { + [1] = { 45.4, 51.8, 1, 900 }, + [2] = { 55.8, 42.2, 2597, 180 }, + }, + }, + [34572] = { + ["coords"] = { + [1] = { 45.8, 16.5, 11, 7200 }, + [2] = { 10.2, 48.9, 47, 7200 }, + [3] = { 94.8, 8.8, 267, 7200 }, + }, + }, + [35251] = { + ["coords"] = { + [1] = { 36.1, 30.5, 405, 10 }, + }, + ["fac"] = "A", + }, + [35252] = { + ["coords"] = { + [1] = { 35.2, 51.5, 11, 180 }, + [2] = { 33.3, 51.4, 11, 180 }, + [3] = { 32.8, 51.1, 11, 180 }, + [4] = { 34.2, 50.9, 11, 180 }, + [5] = { 32.3, 50.9, 11, 180 }, + [6] = { 34.8, 50.4, 11, 180 }, + [7] = { 36.2, 50, 11, 180 }, + [8] = { 34.1, 49.9, 11, 180 }, + [9] = { 33.3, 49.1, 11, 180 }, + [10] = { 35.2, 49, 11, 180 }, + [11] = { 36.1, 48.9, 11, 180 }, + [12] = { 33.8, 48.7, 11, 180 }, + [13] = { 32.3, 48.5, 11, 180 }, + [14] = { 35.6, 48, 11, 180 }, + [15] = { 35, 48, 11, 180 }, + [16] = { 34.2, 47.7, 11, 180 }, + [17] = { 33.4, 47.5, 11, 180 }, + [18] = { 34.9, 47, 11, 180 }, + [19] = { 33.9, 46.6, 11, 180 }, + [20] = { 33.1, 46.4, 11, 180 }, + [21] = { 35.5, 46.2, 11, 180 }, + [22] = { 34.3, 45.7, 11, 180 }, + [23] = { 34.7, 45.2, 11, 180 }, + [24] = { 35.5, 45.1, 11, 180 }, + [25] = { 33.7, 45.1, 11, 180 }, + [26] = { 34.4, 44.5, 11, 180 }, + [27] = { 35.2, 44.4, 11, 180 }, + [28] = { 36.5, 42.1, 11, 180 }, + }, + ["fac"] = "A", + }, + [35572] = { + ["coords"] = {}, + }, + [35573] = { + ["coords"] = {}, + }, + [35574] = { + ["coords"] = {}, + }, + [35575] = { + ["coords"] = {}, + }, + [35576] = { + ["coords"] = {}, + }, + [35577] = { + ["coords"] = {}, + }, + [35578] = { + ["coords"] = {}, + }, + [35579] = { + ["coords"] = {}, + }, + [35580] = { + ["coords"] = {}, + }, + [35581] = { + ["coords"] = {}, + }, + [35582] = { + ["coords"] = {}, + }, + [35583] = { + ["coords"] = {}, + }, + [35584] = { + ["coords"] = {}, + }, + [35585] = { + ["coords"] = {}, + }, + [35588] = { + ["coords"] = {}, + }, + [35589] = { + ["coords"] = {}, + }, + [35591] = { + ["coords"] = {}, + ["fac"] = "A", + }, + [35593] = { + ["coords"] = {}, + }, + [35594] = { + ["coords"] = {}, + }, + [35595] = { + ["coords"] = {}, + }, + [35596] = { + ["coords"] = {}, + }, + [35597] = { + ["coords"] = {}, + }, + [35598] = { + ["coords"] = {}, + }, + [35844] = { + ["coords"] = { + [1] = { 40.2, 51.5, 440, 900 }, + }, + }, + [36070] = { + ["coords"] = { + [1] = { 59.7, 44, 1497, 900 }, + }, + }, + [36071] = { + ["coords"] = { + [1] = { 66, 34.8, 1497, 900 }, + }, + }, + [36072] = { + ["coords"] = { + [1] = { 51.2, 44.1, 1497, 900 }, + }, + }, + [36073] = { + ["coords"] = { + [1] = { 68.1, 46.3, 1497, 900 }, + }, + }, + [36077] = { + ["coords"] = { + [1] = { 59.7, 44, 1497, 900 }, + }, + }, + [36078] = { + ["coords"] = { + [1] = { 65.9, 65.7, 1497, 900 }, + }, + }, + [36079] = { + ["coords"] = { + [1] = { 60.5, 52.8, 1497, 900 }, + }, + }, + [36080] = { + ["coords"] = { + [1] = { 51.4, 43.8, 1497, 900 }, + }, + }, + [36082] = { + ["coords"] = { + [1] = { 71.8, 35.6, 1497, 900 }, + }, + }, + [36083] = { + ["coords"] = { + [1] = { 66.1, 22.5, 1497, 900 }, + }, + }, + [36085] = { + ["coords"] = { + [1] = { 80.4, 44.2, 1497, 900 }, + }, + }, + [36086] = { + ["coords"] = { + [1] = { 71.6, 35.4, 1497, 900 }, + }, + }, + [36090] = { + ["coords"] = { + [1] = { 66.3, 22.2, 1497, 900 }, + }, + }, + [36091] = { + ["coords"] = { + [1] = { 66.2, 35.1, 1497, 900 }, + }, + }, + [36092] = { + ["coords"] = { + [1] = { 80.5, 43.9, 1497, 900 }, + }, + }, + [36093] = { + ["coords"] = { + [1] = { 66, 34.9, 1497, 900 }, + }, + }, + [36094] = { + ["coords"] = { + [1] = { 60.4, 52.5, 1497, 900 }, + }, + }, + [36095] = { + ["coords"] = { + [1] = { 65.9, 35.1, 1497, 900 }, + }, + }, + [36096] = { + ["coords"] = { + [1] = { 72, 44.3, 1497, 900 }, + }, + }, + [36098] = { + ["coords"] = { + [1] = { 65.9, 53.4, 1497, 900 }, + }, + }, + [36102] = { + ["coords"] = { + [1] = { 60.4, 35.5, 1497, 900 }, + }, + }, + [36105] = { + ["coords"] = { + [1] = { 71.6, 35.6, 1497, 900 }, + }, + }, + [36113] = { + ["coords"] = { + [1] = { 71.6, 52.6, 1497, 900 }, + }, + }, + [36118] = { + ["coords"] = { + [1] = { 72, 44, 1497, 900 }, + }, + }, + [36126] = { + ["coords"] = { + [1] = { 50.4, 56.9, 1497, 900 }, + }, + }, + [36127] = { + ["coords"] = { + [1] = { 56.4, 66.9, 1497, 900 }, + }, + }, + [36396] = { + ["coords"] = { + [1] = { 64.6, 33.1, 4, 900 }, + }, + }, + [36397] = { + ["coords"] = { + [1] = { 53.1, 63, 1497, 900 }, + }, + }, + [36398] = { + ["coords"] = { + [1] = { 52.9, 55.9, 1497, 900 }, + }, + }, + [36645] = { + ["coords"] = { + [1] = { 44.1, 12.4, 4, 900 }, + }, + }, + [36727] = { + ["coords"] = {}, + ["fac"] = "H", + }, + [36738] = { + ["coords"] = {}, + }, + [36977] = { + ["coords"] = { + [1] = { 49.1, 55.5, 267, 7200 }, + }, + }, + [36979] = { + ["coords"] = { + [1] = { 10.1, 57.1, 11, 7200 }, + [2] = { 24.8, 72.7, 12, 900 }, + [3] = { 68, 48.1, 15, 900 }, + }, + }, + [36980] = { + ["coords"] = { + [1] = { 9.8, 57.6, 11, 7200 }, + [2] = { 25.2, 72.1, 12, 900 }, + [3] = { 68.1, 48.6, 15, 900 }, + }, + }, + [36981] = { + ["coords"] = { + [1] = { 9.8, 57.5, 11, 7200 }, + [2] = { 25.1, 72.2, 12, 900 }, + [3] = { 68.1, 48.6, 15, 900 }, + }, + }, + [36982] = { + ["coords"] = { + [1] = { 9.9, 56.9, 11, 7200 }, + [2] = { 25.1, 72.9, 12, 900 }, + [3] = { 67.9, 48.2, 15, 900 }, + }, + }, + [36983] = { + ["coords"] = { + [1] = { 9.9, 57.8, 11, 7200 }, + [2] = { 25.1, 71.8, 12, 900 }, + [3] = { 68.2, 48.7, 15, 900 }, + }, + }, + [36984] = { + ["coords"] = { + [1] = { 9.8, 57.7, 11, 7200 }, + [2] = { 25.2, 71.9, 12, 900 }, + [3] = { 68.2, 48.8, 15, 900 }, + }, + }, + [36985] = { + ["coords"] = { + [1] = { 9.7, 57.7, 11, 7200 }, + [2] = { 25.3, 71.9, 12, 900 }, + [3] = { 68.1, 48.8, 15, 900 }, + }, + }, + [36986] = { + ["coords"] = { + [1] = { 9.6, 57.4, 11, 7200 }, + [2] = { 25.4, 72.3, 12, 900 }, + [3] = { 67.9, 48.7, 15, 900 }, + }, + }, + [36987] = { + ["coords"] = { + [1] = { 9.6, 57.5, 11, 7200 }, + [2] = { 25.4, 72.1, 12, 900 }, + [3] = { 68, 48.8, 15, 900 }, + }, + }, + [36988] = { + ["coords"] = { + [1] = { 10, 57.9, 11, 7200 }, + [2] = { 24.9, 71.8, 12, 900 }, + [3] = { 68.3, 48.6, 15, 900 }, + }, + }, + [36989] = { + ["coords"] = { + [1] = { 10.1, 57.7, 11, 7200 }, + [2] = { 24.9, 71.9, 12, 900 }, + [3] = { 68.3, 48.5, 15, 900 }, + }, + }, + [36990] = { + ["coords"] = {}, + }, + [36991] = { + ["coords"] = {}, + }, + [36992] = { + ["coords"] = {}, + }, + [36993] = { + ["coords"] = {}, + }, + [36994] = { + ["coords"] = {}, + }, + [36995] = { + ["coords"] = {}, + }, + [36996] = { + ["coords"] = { + [1] = { 10.3, 58.4, 11, 7200 }, + [2] = { 24.5, 71.2, 12, 900 }, + [3] = { 68.7, 48.6, 15, 900 }, + }, + }, + [36997] = { + ["coords"] = { + [1] = { 10.2, 58.3, 11, 7200 }, + [2] = { 24.6, 71.2, 12, 900 }, + [3] = { 68.6, 48.6, 15, 900 }, + }, + }, + [36998] = { + ["coords"] = { + [1] = { 10.3, 58.3, 11, 7200 }, + [2] = { 24.5, 71.3, 12, 900 }, + [3] = { 68.6, 48.5, 15, 900 }, + }, + }, + [36999] = { + ["coords"] = {}, + }, + [37000] = { + ["coords"] = {}, + }, + [37001] = { + ["coords"] = {}, + }, + [37002] = { + ["coords"] = {}, + }, + [37003] = { + ["coords"] = {}, + }, + [37004] = { + ["coords"] = {}, + }, + [37005] = { + ["coords"] = {}, + }, + [37006] = { + ["coords"] = {}, + }, + [37007] = { + ["coords"] = {}, + }, + [37008] = { + ["coords"] = {}, + }, + [37009] = { + ["coords"] = {}, + }, + [37010] = { + ["coords"] = {}, + }, + [37011] = { + ["coords"] = {}, + }, + [37012] = { + ["coords"] = {}, + }, + [37025] = { + ["coords"] = { + [1] = { 66, 22.6, 4, 900 }, + [2] = { 63.7, 14.9, 4, 900 }, + }, + }, + [37026] = { + ["coords"] = { + [1] = { 64.8, 22.4, 4, 900 }, + [2] = { 64.4, 16.4, 4, 900 }, + }, + }, + [37027] = { + ["coords"] = { + [1] = { 66, 22.7, 4, 900 }, + [2] = { 63.8, 14.8, 4, 900 }, + }, + }, + [37028] = { + ["coords"] = { + [1] = { 65, 22.1, 4, 900 }, + [2] = { 64.2, 16.3, 4, 900 }, + }, + }, + [37029] = { + ["coords"] = { + [1] = { 65.2, 22.9, 4, 900 }, + [2] = { 64.4, 15.6, 4, 900 }, + }, + }, + [37030] = { + ["coords"] = { + [1] = { 65.1, 22.8, 4, 900 }, + [2] = { 64.4, 15.7, 4, 900 }, + }, + }, + [37031] = { + ["coords"] = { + [1] = { 66.1, 22.6, 4, 900 }, + [2] = { 63.7, 14.8, 4, 900 }, + }, + }, + [37032] = { + ["coords"] = { + [1] = { 65.4, 23, 4, 900 }, + [2] = { 64.4, 15.3, 4, 900 }, + }, + }, + [37033] = { + ["coords"] = { + [1] = { 65.5, 22.8, 4, 900 }, + [2] = { 64.1, 15.3, 4, 900 }, + }, + }, + [37034] = { + ["coords"] = { + [1] = { 65.3, 23.1, 4, 900 }, + [2] = { 64.5, 15.3, 4, 900 }, + }, + }, + [37035] = { + ["coords"] = { + [1] = { 65.5, 22.6, 4, 900 }, + [2] = { 64.1, 15.5, 4, 900 }, + }, + }, + [37036] = { + ["coords"] = { + [1] = { 65.2, 23.2, 4, 900 }, + [2] = { 64.6, 15.4, 4, 900 }, + }, + }, + [37037] = { + ["coords"] = { + [1] = { 65, 23.1, 4, 900 }, + [2] = { 64.7, 15.7, 4, 900 }, + }, + }, + [37038] = { + ["coords"] = { + [1] = { 65, 23.3, 4, 900 }, + [2] = { 64.7, 15.5, 4, 900 }, + }, + }, + [37051] = { + ["coords"] = { + [1] = { 35.7, 54.8, 36, 7200 }, + [2] = { 65.5, 23.6, 130, 7200 }, + }, + }, + [37089] = { + ["coords"] = { + [1] = { 37.5, 53.2, 36, 7200 }, + [2] = { 65.6, 25.6, 130, 7200 }, + }, + }, + [37090] = { + ["coords"] = { + [1] = { 35.4, 53.4, 36, 7200 }, + [2] = { 66.1, 23.7, 130, 7200 }, + }, + }, + [37091] = { + ["coords"] = { + [1] = { 36.1, 52.8, 36, 7200 }, + [2] = { 66.2, 24.5, 130, 7200 }, + }, + }, + [37092] = { + ["coords"] = { + [1] = { 35.9, 54.4, 36, 7200 }, + [2] = { 65.6, 23.8, 130, 7200 }, + }, + }, + [37093] = { + ["coords"] = { + [1] = { 37.3, 52.6, 36, 7200 }, + [2] = { 65.9, 25.6, 130, 7200 }, + }, + }, + [37094] = { + ["coords"] = { + [1] = { 35.7, 53.9, 36, 7200 }, + [2] = { 65.8, 23.8, 130, 7200 }, + }, + }, + [37095] = { + ["coords"] = { + [1] = { 36, 55.1, 36, 7200 }, + [2] = { 65.3, 23.8, 130, 7200 }, + }, + }, + [37096] = { + ["coords"] = { + [1] = { 36.7, 54.5, 36, 7200 }, + [2] = { 65.3, 24.6, 130, 7200 }, + }, + }, + [37097] = { + ["coords"] = { + [1] = { 86.6, 27.1, 1497, 900 }, + }, + ["fac"] = "AH", + }, + [37098] = { + ["coords"] = { + [1] = { 51.1, 67.6, 85, 10 }, + }, + ["fac"] = "H", + }, + [37099] = { + ["coords"] = { + [1] = { 76.7, 51.3, 8, 180 }, + [2] = { 78.3, 49.5, 8, 180 }, + [3] = { 75.3, 49.5, 8, 180 }, + [4] = { 75.8, 49.4, 8, 180 }, + [5] = { 76.6, 49.1, 8, 180 }, + [6] = { 75.9, 48.3, 8, 180 }, + [7] = { 72.8, 47.7, 8, 180 }, + [8] = { 76.1, 47.4, 8, 180 }, + [9] = { 71, 46.9, 8, 180 }, + [10] = { 74.8, 46.7, 8, 180 }, + [11] = { 72.1, 45.2, 8, 180 }, + [12] = { 75.7, 45, 8, 180 }, + [13] = { 70.6, 44.5, 8, 180 }, + [14] = { 74.7, 43.8, 8, 180 }, + [15] = { 76.2, 43.8, 8, 180 }, + }, + }, + [37118] = { + ["coords"] = { + [1] = { 65.5, 18.1, 8, 600 }, + }, + }, + [37473] = { + ["coords"] = {}, + }, + [37474] = { + ["coords"] = {}, + }, + [37475] = { + ["coords"] = {}, + }, + [37476] = { + ["coords"] = {}, + }, + [37477] = { + ["coords"] = {}, + }, + [37478] = { + ["coords"] = { + [1] = { 60, 50, 1537, 900 }, + }, + }, + [37479] = { + ["coords"] = {}, + }, + [37480] = { + ["coords"] = {}, + }, + [37481] = { + ["coords"] = {}, + }, + [37482] = { + ["coords"] = {}, + }, + [37483] = { + ["coords"] = {}, + }, + [37484] = { + ["coords"] = {}, + }, + [37485] = { + ["coords"] = {}, + }, + [37486] = { + ["coords"] = {}, + }, + [37487] = { + ["coords"] = {}, + }, + [37488] = { + ["coords"] = {}, + }, + [37489] = { + ["coords"] = {}, + }, + [37490] = { + ["coords"] = {}, + }, + [37491] = { + ["coords"] = {}, + }, + [37492] = { + ["coords"] = {}, + }, + [37493] = { + ["coords"] = {}, + }, + [38019] = { + ["coords"] = {}, + }, + [38020] = { + ["coords"] = {}, + }, + [38021] = { + ["coords"] = {}, + }, + [38022] = { + ["coords"] = {}, + }, + [38023] = { + ["coords"] = {}, + }, + [38024] = { + ["coords"] = {}, + }, + [38025] = { + ["coords"] = {}, + }, + [38026] = { + ["coords"] = {}, + }, + [38027] = { + ["coords"] = {}, + }, + [38028] = { + ["coords"] = { + [1] = { 76.2, 54.1, 357, 900 }, + }, + }, + [38029] = { + ["coords"] = { + [1] = { 75.6, 54.2, 357, 900 }, + }, + }, + [38030] = { + ["coords"] = { + [1] = { 76.9, 54.1, 357, 900 }, + }, + }, + [38147] = { + ["coords"] = { + [1] = { 51.7, 58.6, 267, 7200 }, + }, + }, + [38491] = { + ["coords"] = { + [1] = { 73.8, 48.8, 10, 3600 }, + [2] = { 60.2, 53.3, 85, 900 }, + [3] = { 46.4, 71.8, 130, 7200 }, + [4] = { 48.4, 44.2, 3358, 180 }, + }, + }, + [38492] = { + ["coords"] = { + [1] = { 73.7, 48.4, 10, 3600 }, + [2] = { 60.2, 53.1, 85, 900 }, + [3] = { 46.5, 71.9, 130, 7200 }, + [4] = { 48.5, 44.8, 3358, 25 }, + }, + }, + [38493] = { + ["coords"] = { + [1] = { 74, 48.7, 10, 3600 }, + [2] = { 60.3, 53.3, 85, 900 }, + [3] = { 46.3, 72, 130, 7200 }, + [4] = { 48, 44.1, 3358, 25 }, + }, + }, + [38494] = { + ["coords"] = { + [1] = { 73.6, 49.1, 10, 3600 }, + [2] = { 60.1, 53.5, 85, 900 }, + [3] = { 46.3, 71.6, 130, 7200 }, + [4] = { 48.8, 43.7, 3358, 25 }, + }, + }, + [38495] = { + ["coords"] = { + [1] = { 73.6, 48.8, 10, 3600 }, + [2] = { 60, 53.3, 85, 900 }, + [3] = { 46.5, 71.6, 130, 7200 }, + [4] = { 48.8, 44.2, 3358, 25 }, + }, + }, + [38927] = { + ["coords"] = {}, + }, + [40197] = { + ["coords"] = { + [1] = { 75.7, 53.3, 357, 900 }, + }, + }, + [40198] = { + ["coords"] = {}, + }, + [40199] = { + ["coords"] = {}, + }, + [40200] = { + ["coords"] = {}, + }, + [40201] = { + ["coords"] = {}, + }, + [40298] = { + ["coords"] = { + [1] = { 72.2, 36.6, 357, 900 }, + }, + }, + [40299] = { + ["coords"] = { + [1] = { 77.3, 56.4, 357, 900 }, + }, + }, + [40301] = { + ["coords"] = { + [1] = { 75.5, 56.4, 357, 900 }, + }, + }, + [40303] = { + ["coords"] = { + [1] = { 76.4, 75.4, 1497, 900 }, + }, + }, + [41185] = { + ["coords"] = { + [1] = { 71.6, 54.2, 357, 900 }, + }, + }, + [41186] = { + ["coords"] = { + [1] = { 70.5, 53.3, 357, 900 }, + }, + }, + [41187] = { + ["coords"] = { + [1] = { 69.9, 50.9, 357, 900 }, + }, + }, + [41188] = { + ["coords"] = { + [1] = { 65.1, 52.6, 357, 900 }, + }, + }, + [41189] = { + ["coords"] = { + [1] = { 65.3, 51.9, 357, 900 }, + }, + }, + [41190] = { + ["coords"] = { + [1] = { 65.7, 52.6, 357, 900 }, + }, + }, + [41191] = { + ["coords"] = { + [1] = { 66, 51.6, 357, 900 }, + }, + }, + [41192] = { + ["coords"] = { + [1] = { 66.4, 51.6, 357, 900 }, + }, + }, + [41193] = { + ["coords"] = { + [1] = { 68.6, 54.3, 357, 900 }, + }, + }, + [41194] = { + ["coords"] = { + [1] = { 72.7, 39.2, 357, 900 }, + }, + }, + [41195] = { + ["coords"] = { + [1] = { 49.6, 59.8, 267, 7200 }, + }, + }, + [43116] = { + ["coords"] = { + [1] = { 41.6, 81.9, 40, 3600 }, + }, + }, + [43117] = { + ["coords"] = { + [1] = { 41.3, 83.1, 40, 3600 }, + }, + }, + [43118] = { + ["coords"] = { + [1] = { 42.4, 83.1, 40, 3600 }, + }, + }, + [43119] = { + ["coords"] = { + [1] = { 42.1, 83, 40, 3600 }, + }, + }, + [43120] = { + ["coords"] = { + [1] = { 41.6, 82.6, 40, 3600 }, + }, + }, + [43121] = { + ["coords"] = { + [1] = { 40.9, 80.7, 40, 3600 }, + }, + }, + [43122] = { + ["coords"] = { + [1] = { 40.8, 81.9, 40, 3600 }, + }, + }, + [47296] = { + ["coords"] = { + [1] = { 40.4, 22, 215, 900 }, + }, + }, + [47297] = { + ["coords"] = { + [1] = { 40.8, 22.3, 215, 900 }, + }, + }, + [48403] = { + ["coords"] = {}, + }, + [48404] = { + ["coords"] = {}, + }, + [48405] = { + ["coords"] = {}, + }, + [48406] = { + ["coords"] = {}, + }, + [48407] = { + ["coords"] = {}, + }, + [48408] = { + ["coords"] = {}, + }, + [48409] = { + ["coords"] = {}, + }, + [48410] = { + ["coords"] = {}, + }, + [48411] = { + ["coords"] = {}, + }, + [48412] = { + ["coords"] = {}, + }, + [48413] = { + ["coords"] = {}, + }, + [48414] = { + ["coords"] = {}, + }, + [48415] = { + ["coords"] = {}, + }, + [48416] = { + ["coords"] = {}, + }, + [48417] = { + ["coords"] = {}, + }, + [48418] = { + ["coords"] = {}, + }, + [48419] = { + ["coords"] = {}, + }, + [48420] = { + ["coords"] = {}, + }, + [48421] = { + ["coords"] = {}, + }, + [48422] = { + ["coords"] = {}, + }, + [48423] = { + ["coords"] = {}, + }, + [48424] = { + ["coords"] = {}, + }, + [48425] = { + ["coords"] = {}, + }, + [48426] = { + ["coords"] = {}, + }, + [48427] = { + ["coords"] = {}, + }, + [48428] = { + ["coords"] = {}, + }, + [48429] = { + ["coords"] = {}, + }, + [48430] = { + ["coords"] = {}, + }, + [48431] = { + ["coords"] = {}, + }, + [48432] = { + ["coords"] = {}, + }, + [48433] = { + ["coords"] = {}, + }, + [48434] = { + ["coords"] = {}, + }, + [48435] = { + ["coords"] = {}, + }, + [48436] = { + ["coords"] = {}, + }, + [48437] = { + ["coords"] = {}, + }, + [48438] = { + ["coords"] = {}, + }, + [48439] = { + ["coords"] = {}, + }, + [48440] = { + ["coords"] = {}, + }, + [48441] = { + ["coords"] = {}, + }, + [48442] = { + ["coords"] = {}, + }, + [48443] = { + ["coords"] = {}, + }, + [48444] = { + ["coords"] = {}, + }, + [48445] = { + ["coords"] = {}, + }, + [48446] = { + ["coords"] = {}, + }, + [48447] = { + ["coords"] = {}, + }, + [48448] = { + ["coords"] = {}, + }, + [48449] = { + ["coords"] = {}, + }, + [48450] = { + ["coords"] = {}, + }, + [48451] = { + ["coords"] = {}, + }, + [48452] = { + ["coords"] = {}, + }, + [48453] = { + ["coords"] = {}, + }, + [48454] = { + ["coords"] = {}, + }, + [48455] = { + ["coords"] = {}, + }, + [48457] = { + ["coords"] = {}, + }, + [48458] = { + ["coords"] = {}, + }, + [48459] = { + ["coords"] = {}, + }, + [48460] = { + ["coords"] = {}, + }, + [48461] = { + ["coords"] = {}, + }, + [48462] = { + ["coords"] = {}, + }, + [48463] = { + ["coords"] = {}, + }, + [48464] = { + ["coords"] = {}, + }, + [48465] = { + ["coords"] = {}, + }, + [48466] = { + ["coords"] = {}, + }, + [48467] = { + ["coords"] = {}, + }, + [48468] = { + ["coords"] = {}, + }, + [48469] = { + ["coords"] = {}, + }, + [48470] = { + ["coords"] = {}, + }, + [48471] = { + ["coords"] = {}, + }, + [48472] = { + ["coords"] = {}, + }, + [48473] = { + ["coords"] = {}, + }, + [48474] = { + ["coords"] = {}, + }, + [48475] = { + ["coords"] = {}, + }, + [48476] = { + ["coords"] = {}, + }, + [48477] = { + ["coords"] = {}, + }, + [48478] = { + ["coords"] = {}, + }, + [48479] = { + ["coords"] = {}, + }, + [48480] = { + ["coords"] = {}, + }, + [48481] = { + ["coords"] = {}, + }, + [48482] = { + ["coords"] = {}, + }, + [48483] = { + ["coords"] = {}, + }, + [48484] = { + ["coords"] = {}, + }, + [48485] = { + ["coords"] = {}, + }, + [48486] = { + ["coords"] = {}, + }, + [48487] = { + ["coords"] = {}, + }, + [48488] = { + ["coords"] = {}, + }, + [48489] = { + ["coords"] = {}, + }, + [48490] = { + ["coords"] = {}, + }, + [48491] = { + ["coords"] = {}, + }, + [48492] = { + ["coords"] = {}, + }, + [48493] = { + ["coords"] = {}, + }, + [48494] = { + ["coords"] = {}, + }, + [48495] = { + ["coords"] = {}, + }, + [48496] = { + ["coords"] = {}, + }, + [48497] = { + ["coords"] = {}, + }, + [48498] = { + ["coords"] = {}, + }, + [48499] = { + ["coords"] = {}, + }, + [48500] = { + ["coords"] = {}, + }, + [48501] = { + ["coords"] = {}, + }, + [48502] = { + ["coords"] = {}, + }, + [48503] = { + ["coords"] = {}, + }, + [48504] = { + ["coords"] = {}, + }, + [48505] = { + ["coords"] = {}, + }, + [48506] = { + ["coords"] = {}, + }, + [48507] = { + ["coords"] = {}, + }, + [48508] = { + ["coords"] = {}, + }, + [48509] = { + ["coords"] = {}, + }, + [48510] = { + ["coords"] = {}, + }, + [48511] = { + ["coords"] = {}, + }, + [48512] = { + ["coords"] = {}, + }, + [48513] = { + ["coords"] = {}, + }, + [48514] = { + ["coords"] = {}, + }, + [48515] = { + ["coords"] = {}, + }, + [48516] = { + ["coords"] = { + [1] = { 62.9, 54.7, 17, 900 }, + }, + }, + [48517] = { + ["coords"] = { + [1] = { 36.5, 91.1, 38, 900 }, + }, + }, + [48518] = { + ["coords"] = { + [1] = { 40.9, 15, 3, 900 }, + [2] = { 40, 89.8, 38, 900 }, + }, + }, + [48519] = { + ["coords"] = { + [1] = { 37.2, 85.8, 38, 900 }, + }, + }, + [48520] = { + ["coords"] = { + [1] = { 35.4, 91.1, 38, 900 }, + }, + }, + [48521] = { + ["coords"] = {}, + }, + [48522] = { + ["coords"] = { + [1] = { 41, 15.7, 3, 900 }, + [2] = { 40, 90.4, 38, 900 }, + }, + }, + [48523] = { + ["coords"] = { + [1] = { 35.2, 90.7, 38, 900 }, + }, + }, + [48524] = { + ["coords"] = { + [1] = { 41, 15.8, 3, 900 }, + [2] = { 40.1, 90.5, 38, 900 }, + }, + }, + [48525] = { + ["coords"] = { + [1] = { 34.4, 88.8, 38, 900 }, + }, + }, + [48526] = { + ["coords"] = { + [1] = { 35.4, 88.3, 38, 900 }, + }, + }, + [48527] = { + ["coords"] = { + [1] = { 36.2, 88.9, 38, 900 }, + }, + }, + [48528] = { + ["coords"] = { + [1] = { 37, 89.8, 38, 900 }, + }, + }, + [48529] = { + ["coords"] = { + [1] = { 34.2, 88.3, 38, 900 }, + }, + }, + [48530] = { + ["coords"] = { + [1] = { 37.3, 85.6, 38, 900 }, + }, + }, + [48531] = { + ["coords"] = { + [1] = { 35.6, 89.6, 38, 900 }, + }, + }, + [48532] = { + ["coords"] = { + [1] = { 35.4, 87.4, 38, 900 }, + }, + }, + [48533] = { + ["coords"] = { + [1] = { 37.3, 85.6, 38, 900 }, + }, + }, + [48534] = { + ["coords"] = { + [1] = { 34.5, 88.8, 38, 900 }, + }, + }, + [48535] = { + ["coords"] = { + [1] = { 34.4, 87.4, 38, 900 }, + }, + }, + [48536] = { + ["coords"] = { + [1] = { 35.4, 87.5, 38, 900 }, + }, + }, + [48537] = { + ["coords"] = { + [1] = { 34.4, 88.9, 38, 900 }, + }, + }, + [48538] = { + ["coords"] = { + [1] = { 35.4, 87.4, 38, 900 }, + }, + }, + [48539] = { + ["coords"] = { + [1] = { 35.6, 87.9, 38, 900 }, + }, + }, + [48540] = { + ["coords"] = { + [1] = { 35.4, 88.1, 38, 900 }, + }, + }, + [48541] = { + ["coords"] = { + [1] = { 35.8, 89.6, 38, 900 }, + }, + }, + [48542] = { + ["coords"] = { + [1] = { 34.5, 88.9, 38, 900 }, + }, + }, + [48543] = { + ["coords"] = { + [1] = { 38.6, 18.7, 3, 900 }, + }, + }, + [48544] = { + ["coords"] = { + [1] = { 39.8, 17.6, 3, 900 }, + [2] = { 39, 92.1, 38, 900 }, + }, + }, + [48545] = { + ["coords"] = { + [1] = { 37.2, 88.4, 38, 900 }, + }, + }, + [48546] = { + ["coords"] = { + [1] = { 37, 89.9, 38, 900 }, + }, + }, + [48547] = { + ["coords"] = { + [1] = { 34.3, 88.4, 38, 900 }, + }, + }, + [48548] = { + ["coords"] = { + [1] = { 37, 88.4, 38, 900 }, + }, + }, + [48549] = { + ["coords"] = { + [1] = { 40.5, 11.2, 3, 900 }, + [2] = { 39.6, 86.4, 38, 900 }, + }, + }, + [48550] = { + ["coords"] = { + [1] = { 40.6, 11.3, 3, 900 }, + [2] = { 39.7, 86.4, 38, 900 }, + }, + }, + [48551] = { + ["coords"] = { + [1] = { 37.7, 87.8, 38, 900 }, + }, + }, + [48552] = { + ["coords"] = { + [1] = { 33.1, 88.8, 38, 900 }, + }, + }, + [48553] = { + ["coords"] = { + [1] = { 38.8, 12.7, 3, 900 }, + [2] = { 38.1, 87.7, 38, 900 }, + }, + }, + [48554] = { + ["coords"] = { + [1] = { 37.1, 89.9, 38, 900 }, + }, + }, + [48555] = { + ["coords"] = { + [1] = { 37.1, 88.5, 38, 900 }, + }, + }, + [48556] = { + ["coords"] = { + [1] = { 35.3, 90.8, 38, 900 }, + }, + }, + [48557] = { + ["coords"] = { + [1] = { 40.6, 11.1, 3, 900 }, + [2] = { 39.7, 86.3, 38, 900 }, + }, + }, + [48558] = { + ["coords"] = { + [1] = { 38.8, 12.5, 3, 900 }, + [2] = { 38.1, 87.5, 38, 900 }, + }, + }, + [48559] = { + ["coords"] = { + [1] = { 39.8, 13.7, 3, 900 }, + [2] = { 39, 88.5, 38, 900 }, + }, + }, + [48560] = { + ["coords"] = { + [1] = { 35.4, 91.1, 38, 900 }, + }, + }, + [48561] = { + ["coords"] = { + [1] = { 41.2, 12.8, 3, 900 }, + [2] = { 40.2, 87.7, 38, 900 }, + }, + }, + [48562] = { + ["coords"] = { + [1] = { 41.1, 12.8, 3, 900 }, + [2] = { 40.2, 87.8, 38, 900 }, + }, + }, + [48563] = { + ["coords"] = { + [1] = { 39.9, 13.6, 3, 900 }, + [2] = { 39.1, 88.5, 38, 900 }, + }, + }, + [48564] = { + ["coords"] = { + [1] = { 39.1, 11.7, 3, 900 }, + [2] = { 38.4, 86.8, 38, 900 }, + }, + }, + [48565] = { + ["coords"] = { + [1] = { 34.4, 87.5, 38, 900 }, + }, + }, + [48566] = { + ["coords"] = { + [1] = { 33.5, 90, 38, 900 }, + }, + }, + [48567] = { + ["coords"] = { + [1] = { 43.6, 12.3, 3, 900 }, + [2] = { 42.4, 87.3, 38, 900 }, + }, + }, + [48568] = { + ["coords"] = {}, + }, + [48569] = { + ["coords"] = { + [1] = { 39.1, 18.4, 3, 900 }, + }, + }, + [48570] = { + ["coords"] = { + [1] = { 38.9, 11.5, 3, 900 }, + [2] = { 38.2, 86.6, 38, 900 }, + }, + }, + [48571] = { + ["coords"] = { + [1] = { 39.1, 18.3, 3, 900 }, + }, + }, + [48572] = { + ["coords"] = {}, + }, + [48573] = { + ["coords"] = { + [1] = { 36.3, 91, 38, 900 }, + }, + }, + [48574] = { + ["coords"] = {}, + }, + [48575] = { + ["coords"] = {}, + }, + [48576] = { + ["coords"] = { + [1] = { 42.6, 10.2, 3, 900 }, + [2] = { 41.5, 85.4, 38, 900 }, + }, + }, + [49485] = { + ["coords"] = { + [1] = { 45.5, 58.9, 17, 900 }, + [2] = { 46.7, 60.9, 215, 900 }, + [3] = { 74.7, 44.9, 357, 900 }, + [4] = { 47.7, 61.8, 406, 900 }, + }, + }, + [49486] = { + ["coords"] = { + [1] = { 45.6, 59, 17, 900 }, + [2] = { 46.6, 61.4, 215, 900 }, + [3] = { 74.9, 45.3, 357, 900 }, + [4] = { 47.5, 62.3, 406, 900 }, + }, + }, + [49487] = { + ["coords"] = { + [1] = { 45.5, 59, 17, 900 }, + [2] = { 46.6, 61, 215, 900 }, + [3] = { 74.7, 45.1, 357, 900 }, + [4] = { 47.6, 61.8, 406, 900 }, + }, + }, + [50445] = { + ["coords"] = { + [1] = { 41.7, 34.6, 215, 900 }, + [2] = { 58.6, 87.4, 1638, 900 }, + }, + }, + [50446] = { + ["coords"] = { + [1] = { 41.5, 34.4, 215, 900 }, + [2] = { 57.7, 86.6, 1638, 900 }, + }, + }, + [50447] = { + ["coords"] = { + [1] = { 41.8, 34.2, 215, 900 }, + [2] = { 59.1, 85.5, 1638, 900 }, + }, + }, + [50448] = { + ["coords"] = { + [1] = { 41.7, 34.1, 215, 900 }, + [2] = { 58.5, 84.9, 1638, 900 }, + }, + }, + [50449] = { + ["coords"] = { + [1] = { 41.4, 34.8, 215, 900 }, + [2] = { 57.1, 88.6, 1638, 900 }, + }, + }, + [50450] = { + ["coords"] = { + [1] = { 41.5, 35, 215, 900 }, + [2] = { 57.7, 89.1, 1638, 900 }, + }, + }, + [50468] = { + ["coords"] = { + [1] = { 37.7, 28.2, 215, 900 }, + [2] = { 38.8, 56.1, 1638, 900 }, + }, + }, + [50469] = { + ["coords"] = { + [1] = { 37.8, 28.3, 215, 900 }, + [2] = { 39.5, 56.1, 1638, 900 }, + }, + }, + [50484] = { + ["coords"] = { + [1] = { 39.9, 23.9, 215, 900 }, + [2] = { 49.5, 34.6, 1638, 900 }, + }, + }, + [50485] = { + ["coords"] = { + [1] = { 39.1, 24.7, 215, 900 }, + [2] = { 45.8, 38.6, 1638, 900 }, + }, + }, + [50486] = { + ["coords"] = { + [1] = { 39.5, 24.2, 215, 900 }, + [2] = { 47.5, 36.4, 1638, 900 }, + }, + }, + [50487] = { + ["coords"] = { + [1] = { 39.7, 24.6, 215, 900 }, + [2] = { 48.9, 38, 1638, 900 }, + }, + }, + [50488] = { + ["coords"] = { + [1] = { 38.9, 25.3, 215, 900 }, + [2] = { 44.8, 41.6, 1638, 900 }, + }, + }, + [50489] = { + ["coords"] = { + [1] = { 39.3, 25.9, 215, 900 }, + [2] = { 46.7, 44.7, 1638, 900 }, + }, + }, + [50490] = { + ["coords"] = { + [1] = { 39.3, 25.6, 215, 900 }, + [2] = { 46.9, 42.9, 1638, 900 }, + }, + }, + [50491] = { + ["coords"] = { + [1] = { 38.3, 27.8, 215, 900 }, + [2] = { 41.7, 54, 1638, 900 }, + }, + }, + [50492] = { + ["coords"] = { + [1] = { 38.9, 28.7, 215, 900 }, + [2] = { 44.6, 58.2, 1638, 900 }, + }, + }, + [50493] = { + ["coords"] = { + [1] = { 38.2, 28.1, 215, 900 }, + [2] = { 41.5, 55.4, 1638, 900 }, + }, + }, + [50494] = { + ["coords"] = { + [1] = { 38.8, 29, 215, 900 }, + [2] = { 44.5, 59.9, 1638, 900 }, + }, + }, + [50495] = { + ["coords"] = { + [1] = { 38.8, 28.9, 215, 900 }, + [2] = { 44.4, 59.5, 1638, 900 }, + }, + }, + [50496] = { + ["coords"] = { + [1] = { 38.8, 29, 215, 900 }, + [2] = { 44.3, 59.8, 1638, 900 }, + }, + }, + [50497] = { + ["coords"] = { + [1] = { 37.5, 27.1, 215, 900 }, + [2] = { 37.6, 50.6, 1638, 900 }, + }, + }, + [50498] = { + ["coords"] = { + [1] = { 37.5, 27.1, 215, 900 }, + [2] = { 37.9, 50.6, 1638, 900 }, + }, + }, + [50499] = { + ["coords"] = { + [1] = { 37.5, 27.2, 215, 900 }, + [2] = { 37.7, 50.8, 1638, 900 }, + }, + }, + [50500] = { + ["coords"] = { + [1] = { 37.5, 29.5, 215, 900 }, + [2] = { 37.8, 62.4, 1638, 900 }, + }, + }, + [50501] = { + ["coords"] = { + [1] = { 37.5, 29.6, 215, 900 }, + [2] = { 38, 62.6, 1638, 900 }, + }, + }, + [50502] = { + ["coords"] = { + [1] = { 37.5, 29.6, 215, 900 }, + [2] = { 37.7, 62.6, 1638, 900 }, + }, + }, + [50503] = { + ["coords"] = { + [1] = { 38.3, 29.3, 215, 900 }, + [2] = { 41.7, 61.5, 1638, 900 }, + }, + }, + [50504] = { + ["coords"] = { + [1] = { 37.2, 28.4, 215, 900 }, + [2] = { 36.3, 56.7, 1638, 900 }, + }, + }, + [50505] = { + ["coords"] = { + [1] = { 37.3, 29.7, 215, 900 }, + [2] = { 36.9, 63.2, 1638, 900 }, + }, + }, + [50506] = { + ["coords"] = { + [1] = { 39.9, 24.2, 215, 900 }, + [2] = { 49.6, 36.3, 1638, 900 }, + }, + }, + [50507] = { + ["coords"] = { + [1] = { 39.9, 24.3, 215, 900 }, + [2] = { 49.7, 36.5, 1638, 900 }, + }, + }, + [50508] = { + ["coords"] = { + [1] = { 39.2, 25.5, 215, 900 }, + [2] = { 46.1, 42.4, 1638, 900 }, + }, + }, + [50509] = { + ["coords"] = { + [1] = { 39.2, 25.5, 215, 900 }, + [2] = { 46.1, 42.4, 1638, 900 }, + }, + }, + [50510] = { + ["coords"] = { + [1] = { 39.1, 25.5, 215, 900 }, + [2] = { 46, 42.5, 1638, 900 }, + }, + }, + [50511] = { + ["coords"] = { + [1] = { 38.7, 25, 215, 900 }, + [2] = { 44, 40, 1638, 900 }, + }, + }, + [50512] = { + ["coords"] = { + [1] = { 38.8, 25, 215, 900 }, + [2] = { 44.2, 40, 1638, 900 }, + }, + }, + [50513] = { + ["coords"] = { + [1] = { 38.8, 25, 215, 900 }, + [2] = { 44.2, 40, 1638, 900 }, + }, + }, + [50514] = { + ["coords"] = { + [1] = { 39.9, 24.3, 215, 900 }, + [2] = { 49.5, 36.6, 1638, 900 }, + }, + }, + [50515] = { + ["coords"] = { + [1] = { 38.3, 23.9, 215, 900 }, + [2] = { 41.7, 34.7, 1638, 900 }, + }, + }, + [50516] = { + ["coords"] = { + [1] = { 38.3, 23.9, 215, 900 }, + [2] = { 42, 34.6, 1638, 900 }, + }, + }, + [50517] = { + ["coords"] = { + [1] = { 38.3, 23.9, 215, 900 }, + [2] = { 42, 34.6, 1638, 900 }, + }, + }, + [50518] = { + ["coords"] = { + [1] = { 38.3, 23.9, 215, 900 }, + [2] = { 41.9, 34.9, 1638, 900 }, + }, + }, + [50519] = { + ["coords"] = { + [1] = { 37.5, 27.1, 215, 900 }, + [2] = { 37.7, 50.4, 1638, 900 }, + }, + }, + [50520] = { + ["coords"] = { + [1] = { 44, 22.5, 215, 900 }, + [2] = { 70.1, 27.6, 1638, 900 }, + }, + }, + [50521] = { + ["coords"] = { + [1] = { 40.6, 26.7, 215, 900 }, + [2] = { 53.1, 48.4, 1638, 900 }, + }, + }, + [50522] = { + ["coords"] = { + [1] = { 41.3, 26.3, 215, 900 }, + [2] = { 56.6, 46.6, 1638, 900 }, + }, + }, + [50523] = { + ["coords"] = { + [1] = { 41, 26.6, 215, 900 }, + [2] = { 54.9, 47.9, 1638, 900 }, + }, + }, + [50524] = { + ["coords"] = { + [1] = { 40.1, 27.5, 215, 900 }, + [2] = { 50.6, 52.2, 1638, 900 }, + }, + }, + [50525] = { + ["coords"] = { + [1] = { 41, 28.1, 215, 900 }, + [2] = { 55, 55.5, 1638, 900 }, + }, + }, + [50526] = { + ["coords"] = { + [1] = { 38.5, 28.2, 215, 900 }, + [2] = { 43, 55.9, 1638, 900 }, + }, + }, + [50527] = { + ["coords"] = { + [1] = { 38.6, 28.3, 215, 900 }, + [2] = { 43.2, 56.2, 1638, 900 }, + }, + }, + [50528] = { + ["coords"] = { + [1] = { 38.5, 28.3, 215, 900 }, + [2] = { 43, 56.2, 1638, 900 }, + }, + }, + [50529] = { + ["coords"] = { + [1] = { 40.4, 27.1, 215, 900 }, + [2] = { 52.4, 50.4, 1638, 900 }, + }, + }, + [50530] = { + ["coords"] = { + [1] = { 40.4, 27.1, 215, 900 }, + [2] = { 52.4, 50.7, 1638, 900 }, + }, + }, + [50531] = { + ["coords"] = { + [1] = { 41.5, 27.8, 215, 900 }, + [2] = { 57.7, 54, 1638, 900 }, + }, + }, + [50532] = { + ["coords"] = { + [1] = { 41.5, 27.8, 215, 900 }, + [2] = { 57.7, 53.7, 1638, 900 }, + }, + }, + [50533] = { + ["coords"] = { + [1] = { 41.6, 26.9, 215, 900 }, + [2] = { 57.9, 49.3, 1638, 900 }, + }, + }, + [50534] = { + ["coords"] = { + [1] = { 41.6, 26.8, 215, 900 }, + [2] = { 57.9, 49, 1638, 900 }, + }, + }, + [50535] = { + ["coords"] = { + [1] = { 40, 26.9, 215, 900 }, + [2] = { 50.1, 49.3, 1638, 900 }, + }, + }, + [50536] = { + ["coords"] = { + [1] = { 42, 33.1, 215, 900 }, + [2] = { 60.1, 80.1, 1638, 900 }, + }, + }, + [50537] = { + ["coords"] = { + [1] = { 44.6, 23.1, 215, 900 }, + [2] = { 72.6, 30.9, 1638, 900 }, + }, + }, + [50538] = { + ["coords"] = { + [1] = { 35.4, 21.3, 215, 900 }, + [2] = { 89, 48.5, 405, 900 }, + [3] = { 27.4, 21.7, 1638, 900 }, + }, + }, + [50547] = { + ["coords"] = { + [1] = { 48.8, 59.2, 215, 900 }, + }, + }, + [50548] = { + ["coords"] = { + [1] = { 48.4, 59.8, 215, 900 }, + }, + }, + [50549] = { + ["coords"] = { + [1] = { 48.3, 59.1, 215, 900 }, + }, + }, + [50803] = { + ["coords"] = { + [1] = { 44.9, 58.2, 17, 900 }, + [2] = { 44.4, 77.4, 215, 900 }, + [3] = { 76, 42.5, 357, 900 }, + [4] = { 66.9, 39.2, 357, 180 }, + [5] = { 69.6, 38.9, 357, 900 }, + [6] = { 46, 51.1, 400, 180 }, + [7] = { 39.1, 41.2, 400, 180 }, + [8] = { 55.5, 56.2, 405, 900 }, + [9] = { 73.5, 86, 406, 900 }, + }, + }, + [50804] = { + ["coords"] = { + [1] = { 45, 58.2, 17, 900 }, + [2] = { 44.3, 77.2, 215, 900 }, + [3] = { 76.1, 42.4, 357, 900 }, + [4] = { 66.8, 39.1, 357, 180 }, + [5] = { 69.7, 38.8, 357, 900 }, + [6] = { 45.9, 51.2, 400, 180 }, + [7] = { 39, 41.3, 400, 180 }, + [8] = { 55.3, 56, 405, 900 }, + [9] = { 73.7, 85.9, 406, 900 }, + }, + }, + [50805] = { + ["coords"] = { + [1] = { 44.9, 57.9, 17, 900 }, + [2] = { 44, 77.5, 215, 900 }, + [3] = { 75.9, 42.1, 357, 900 }, + [4] = { 66.6, 39.3, 357, 180 }, + [5] = { 69.5, 38.6, 357, 900 }, + [6] = { 46.1, 51.8, 400, 180 }, + [7] = { 39.3, 41.8, 400, 180 }, + [8] = { 55.1, 56.6, 405, 900 }, + [9] = { 73.4, 85.5, 406, 900 }, + }, + }, + [50830] = { + ["coords"] = { + [1] = { 31.7, 22.3, 17, 900 }, + [2] = { 78.6, 86.2, 406, 900 }, + }, + }, + [50831] = { + ["coords"] = { + [1] = { 31.7, 22.2, 17, 900 }, + [2] = { 78.6, 86.1, 406, 900 }, + }, + }, + [50910] = { + ["coords"] = { + [1] = { 36.2, 52.4, 17, 900 }, + [2] = { 60.1, 48.4, 215, 900 }, + }, + }, + [50935] = { + ["coords"] = { + [1] = { 65.7, 36.7, 440, 10 }, + }, + ["fac"] = "AH", + }, + [50936] = { + ["coords"] = { + [1] = { 62.5, 23.1, 8, 600 }, + }, + }, + [50937] = { + ["coords"] = { + [1] = { 40, 66.3, 47, 10 }, + }, + }, + [50961] = { + ["coords"] = { + [1] = { 56.5, 17.8, 405, 10 }, + }, + ["fac"] = "A", + }, + [50982] = { + ["coords"] = { + [1] = { 54.5, 50.5, 51, 10 }, + }, + ["fac"] = "AH", + }, + [50983] = { + ["coords"] = { + [1] = { 51.9, 40.7, 14, 900 }, + [2] = { 51.2, 28.9, 17, 900 }, + [3] = { 32.5, 27.8, 33, 900 }, + [4] = { 42.9, 54.7, 46, 7200 }, + [5] = { 88.3, 55.4, 331, 900 }, + }, + }, + [50984] = { + ["coords"] = { + [1] = { 80.4, 78.1, 405, 900 }, + [2] = { 49.4, 82.7, 2597, 60 }, + }, + }, + [50985] = { + ["coords"] = { + [1] = { 45.2, 50.9, 8, 600 }, + }, + }, + [50986] = { + ["coords"] = { + [1] = { 59.9, 63.1, 357, 900 }, + }, + }, + [50987] = { + ["coords"] = { + [1] = { 59.4, 64.5, 357, 900 }, + }, + }, + [50988] = { + ["coords"] = { + [1] = { 59.6, 68.5, 357, 900 }, + }, + }, + [50989] = { + ["coords"] = { + [1] = { 58.4, 67.7, 357, 900 }, + }, + }, + [51681] = { + ["coords"] = {}, + }, + [51702] = { + ["coords"] = { + [1] = { 52, 40.5, 14, 900 }, + [2] = { 51.3, 28.9, 17, 900 }, + [3] = { 32.5, 27.9, 33, 900 }, + [4] = { 42.9, 55.1, 46, 7200 }, + [5] = { 88.3, 55.3, 331, 900 }, + }, + }, + [51703] = { + ["coords"] = { + [1] = { 51.8, 40.8, 14, 900 }, + [2] = { 51.1, 28.9, 17, 900 }, + [3] = { 32.4, 27.6, 33, 900 }, + [4] = { 43.1, 54.4, 46, 7200 }, + [5] = { 88.1, 55.5, 331, 900 }, + }, + }, + [51704] = { + ["coords"] = { + [1] = { 80.2, 78.2, 405, 900 }, + [2] = { 49.3, 82.5, 2597, 60 }, + }, + }, + [51705] = { + ["coords"] = { + [1] = { 80.5, 78.2, 405, 900 }, + [2] = { 49.4, 83, 2597, 60 }, + }, + }, + [51706] = { + ["coords"] = { + [1] = { 45.1, 51.2, 8, 600 }, + }, + }, + [51707] = { + ["coords"] = { + [1] = { 45.5, 50.6, 8, 600 }, + }, + }, + [51708] = { + ["coords"] = { + [1] = { 28.9, 30.8, 10, 10 }, + }, + }, + [51948] = { + ["coords"] = { + [1] = { 57.1, 30.2, 17, 900 }, + }, + }, + [51949] = { + ["coords"] = { + [1] = { 57.1, 30.2, 17, 900 }, + }, + }, + [51950] = { + ["coords"] = { + [1] = { 57.2, 30.1, 17, 900 }, + }, + }, + [52175] = { + ["coords"] = { + [1] = { 75.6, 75.8, 1497, 900 }, + }, + }, + [52176] = { + ["coords"] = { + [1] = { 62.2, 30.2, 1497, 900 }, + }, + }, + [55250] = { + ["coords"] = { + [1] = { 52.3, 43.5, 14, 900 }, + }, + }, + [55535] = { + ["coords"] = { + [1] = { 30.2, 47.7, 148, 180 }, + }, + }, + [55615] = { + ["coords"] = { + [1] = { 46.4, 22.9, 14, 900 }, + }, + }, + [55616] = { + ["coords"] = { + [1] = { 46.4, 79.3, 14, 900 }, + }, + }, + [55774] = { + ["coords"] = { + [1] = { 40.7, 28, 215, 900 }, + [2] = { 53.6, 54.8, 1638, 900 }, + }, + }, + [56809] = { + ["coords"] = { + [1] = { 45.6, 33.7, 17, 900 }, + }, + }, + [56810] = { + ["coords"] = { + [1] = { 46, 35.7, 17, 900 }, + }, + }, + [56818] = { + ["coords"] = {}, + }, + [56819] = { + ["coords"] = {}, + }, + [56820] = { + ["coords"] = {}, + }, + [56821] = { + ["coords"] = {}, + }, + [56897] = { + ["coords"] = { + [1] = { 60.8, 39.7, 17, 900 }, + }, + }, + [56898] = { + ["coords"] = { + [1] = { 62.1, 38.3, 17, 900 }, + [2] = { 28.9, 75, 33, 900 }, + }, + }, + [56901] = { + ["coords"] = { + [1] = { 28.2, 77.3, 33, 900 }, + }, + }, + [56903] = { + ["coords"] = { + [1] = { 28.2, 74.4, 33, 900 }, + }, + }, + [56905] = { + ["coords"] = { + [1] = { 28.3, 74.6, 33, 900 }, + }, + }, + [56910] = { + ["coords"] = { + [1] = { 27.3, 77.4, 33, 900 }, + }, + }, + [56911] = { + ["coords"] = { + [1] = { 26.6, 76.5, 33, 900 }, + }, + }, + [57708] = { + ["coords"] = { + [1] = { 39.2, 19.4, 215, 900 }, + }, + }, + [57709] = { + ["coords"] = {}, + }, + [57710] = { + ["coords"] = {}, + }, + [57725] = { + ["coords"] = {}, + }, + [57726] = { + ["coords"] = {}, + }, + [57727] = { + ["coords"] = {}, + }, + [57748] = { + ["coords"] = {}, + }, + [57749] = { + ["coords"] = {}, + }, + [57750] = { + ["coords"] = {}, + }, + [57751] = { + ["coords"] = {}, + }, + [57752] = { + ["coords"] = {}, + }, + [57753] = { + ["coords"] = {}, + }, + [58369] = { + ["coords"] = { + [1] = { 55, 26.7, 17, 10 }, + }, + }, + [58388] = { + ["coords"] = { + [1] = { 15, 61.7, 1637, 900 }, + }, + }, + [58389] = { + ["coords"] = { + [1] = { 16.1, 64, 1637, 900 }, + }, + }, + [58595] = { + ["coords"] = { + [1] = { 51.6, 9.8, 14, 10 }, + }, + ["fac"] = "H", + }, + [58596] = { + ["coords"] = { + [1] = { 62.3, 41.9, 1497, 900 }, + }, + }, + [58597] = { + ["coords"] = { + [1] = { 63.1, 48.1, 1497, 900 }, + }, + }, + [58598] = { + ["coords"] = { + [1] = { 68.7, 48.2, 1497, 900 }, + }, + }, + [58599] = { + ["coords"] = { + [1] = { 64.4, 49.6, 1497, 900 }, + }, + }, + [58600] = { + ["coords"] = { + [1] = { 64.5, 38.5, 1497, 900 }, + }, + }, + [58601] = { + ["coords"] = { + [1] = { 66, 42.5, 1497, 900 }, + }, + }, + [58602] = { + ["coords"] = { + [1] = { 66, 45.7, 1497, 900 }, + }, + }, + [58603] = { + ["coords"] = { + [1] = { 64.9, 44.1, 1497, 900 }, + }, + }, + [58604] = { + ["coords"] = { + [1] = { 67.1, 44.1, 1497, 900 }, + }, + }, + [58605] = { + ["coords"] = { + [1] = { 63.2, 40, 1497, 900 }, + }, + }, + [58606] = { + ["coords"] = { + [1] = { 62.9, 44, 1497, 900 }, + }, + }, + [58607] = { + ["coords"] = { + [1] = { 69.1, 44.7, 1497, 900 }, + }, + }, + [58608] = { + ["coords"] = { + [1] = { 69.1, 43.4, 1497, 900 }, + }, + }, + [58609] = { + ["coords"] = { + [1] = { 76, 73.1, 1497, 900 }, + }, + }, + [58610] = { + ["coords"] = { + [1] = { 72.3, 9.3, 130, 900 }, + [2] = { 47.8, 73.7, 1497, 900 }, + }, + }, + [58611] = { + ["coords"] = { + [1] = { 65.8, 69.2, 85, 900 }, + [2] = { 84.7, 19.4, 1497, 900 }, + }, + }, + [58612] = { + ["coords"] = { + [1] = { 82.6, 16.1, 1497, 900 }, + }, + }, + [58613] = { + ["coords"] = { + [1] = { 51.3, 74.1, 1497, 900 }, + }, + }, + [58614] = { + ["coords"] = { + [1] = { 61.2, 61, 1497, 900 }, + }, + }, + [58615] = { + ["coords"] = { + [1] = { 54.6, 50.9, 1497, 900 }, + }, + }, + [58616] = { + ["coords"] = { + [1] = { 58, 32.1, 1497, 900 }, + }, + }, + [58617] = { + ["coords"] = { + [1] = { 61.1, 28.6, 1497, 900 }, + }, + }, + [58618] = { + ["coords"] = { + [1] = { 54.6, 37, 1497, 900 }, + }, + }, + [58619] = { + ["coords"] = { + [1] = { 61.4, 27, 1497, 900 }, + }, + }, + [58620] = { + ["coords"] = { + [1] = { 55.8, 36.7, 1497, 900 }, + }, + }, + [58621] = { + ["coords"] = { + [1] = { 77.3, 51.2, 1497, 900 }, + }, + }, + [58622] = { + ["coords"] = { + [1] = { 70.8, 59.5, 1497, 900 }, + }, + }, + [58623] = { + ["coords"] = { + [1] = { 73.9, 56.1, 1497, 900 }, + }, + }, + [58624] = { + ["coords"] = { + [1] = { 70.5, 61.1, 1497, 900 }, + }, + }, + [58625] = { + ["coords"] = { + [1] = { 76.2, 51.5, 1497, 900 }, + }, + }, + [58626] = { + ["coords"] = { + [1] = { 76.2, 36.9, 1497, 900 }, + }, + }, + [58627] = { + ["coords"] = { + [1] = { 77.3, 37.2, 1497, 900 }, + }, + }, + [58629] = { + ["coords"] = { + [1] = { 70.7, 27.2, 1497, 900 }, + }, + }, + [59517] = { + ["coords"] = { + [1] = { 27.7, 77.8, 33, 900 }, + }, + }, + [59518] = { + ["coords"] = { + [1] = { 28.1, 74.6, 33, 900 }, + }, + }, + [59529] = { + ["coords"] = {}, + }, + [59530] = { + ["coords"] = {}, + }, + [59845] = { + ["coords"] = { + [1] = { 28, 74.9, 33, 900 }, + }, + }, + [59846] = { + ["coords"] = { + [1] = { 26.9, 76.8, 33, 900 }, + }, + }, + [59847] = { + ["coords"] = { + [1] = { 28.4, 75.3, 33, 900 }, + }, + }, + [59848] = { + ["coords"] = { + [1] = { 27.7, 77.6, 33, 900 }, + }, + }, + [59850] = { + ["coords"] = { + [1] = { 28, 77.8, 33, 900 }, + }, + }, + [59851] = { + ["coords"] = { + [1] = { 28.6, 76.9, 33, 900 }, + }, + }, + [59852] = { + ["coords"] = { + [1] = { 27.6, 77.1, 33, 900 }, + }, + }, + [59853] = { + ["coords"] = { + [1] = { 28.3, 76.4, 33, 900 }, + }, + }, + [59854] = { + ["coords"] = { + [1] = { 27.8, 77.1, 33, 900 }, + }, + }, + [59855] = { + ["coords"] = { + [1] = { 28.5, 75.9, 33, 900 }, + }, + }, + [59856] = { + ["coords"] = { + [1] = { 28.8, 76.7, 33, 900 }, + }, + }, + [59857] = { + ["coords"] = { + [1] = { 28.4, 77.4, 33, 900 }, + }, + }, + [59858] = { + ["coords"] = { + [1] = { 28.2, 77.9, 33, 900 }, + }, + }, + [59859] = { + ["coords"] = { + [1] = { 27, 77.2, 33, 900 }, + }, + }, + [59860] = { + ["coords"] = { + [1] = { 28.1, 76.7, 33, 900 }, + }, + }, + [59861] = { + ["coords"] = { + [1] = { 26.9, 77.4, 33, 900 }, + }, + }, + [59862] = { + ["coords"] = { + [1] = { 27.8, 77.1, 33, 900 }, + }, + }, + [59863] = { + ["coords"] = { + [1] = { 28, 76.8, 33, 900 }, + }, + }, + [59864] = { + ["coords"] = { + [1] = { 27.9, 77.3, 33, 900 }, + }, + }, + [59865] = { + ["coords"] = { + [1] = { 27.8, 77.3, 33, 900 }, + }, + }, + [59990] = { + ["coords"] = { + [1] = { 68.2, 42, 85, 900 }, + }, + }, + [60393] = { + ["coords"] = {}, + }, + [60394] = { + ["coords"] = {}, + }, + [60395] = { + ["coords"] = { + [1] = { 27.7, 77.2, 33, 900 }, + }, + }, + [60438] = { + ["coords"] = { + [1] = { 27.7, 77.1, 33, 900 }, + }, + }, + [60439] = { + ["coords"] = { + [1] = { 27.8, 77.1, 33, 900 }, + }, + }, + [60440] = { + ["coords"] = { + [1] = { 27.8, 77, 33, 900 }, + }, + }, + [61035] = { + ["coords"] = { + [1] = { 42.3, 29, 3, 900 }, + [2] = { 26.3, 58.5, 15, 900 }, + [3] = { 49.1, 84.3, 17, 900 }, + [4] = { 9.8, 48.5, 45, 7200 }, + [5] = { 14.1, 44.1, 47, 7200 }, + [6] = { 71.5, 79.5, 267, 7200 }, + [7] = { 99.5, 3.1, 267, 7200 }, + }, + }, + [61036] = { + ["coords"] = { + [1] = { 42.2, 29.1, 3, 900 }, + [2] = { 26.3, 58.4, 15, 900 }, + [3] = { 49.1, 84.2, 17, 900 }, + [4] = { 9.9, 48.4, 45, 7200 }, + [5] = { 14, 44.2, 47, 7200 }, + [6] = { 71.5, 79.4, 267, 7200 }, + [7] = { 99.4, 3.1, 267, 7200 }, + }, + }, + [61037] = { + ["coords"] = { + [1] = { 42.3, 29.1, 3, 900 }, + [2] = { 26.2, 58.5, 15, 900 }, + [3] = { 49.1, 84.3, 17, 900 }, + [4] = { 9.8, 48.3, 45, 7200 }, + [5] = { 14.1, 44.3, 47, 7200 }, + [6] = { 71.4, 79.4, 267, 7200 }, + [7] = { 99.5, 3.3, 267, 7200 }, + }, + }, + [61038] = { + ["coords"] = { + [1] = { 42.3, 29.2, 3, 900 }, + [2] = { 26.2, 58.5, 15, 900 }, + [3] = { 49.1, 84.3, 17, 900 }, + [4] = { 9.8, 48.3, 45, 7200 }, + [5] = { 14.1, 44.3, 47, 7200 }, + [6] = { 71.4, 79.3, 267, 7200 }, + [7] = { 99.5, 3.3, 267, 7200 }, + }, + }, + [61039] = { + ["coords"] = { + [1] = { 42.4, 29.2, 3, 900 }, + [2] = { 26.2, 58.5, 15, 900 }, + [3] = { 49.1, 84.3, 17, 900 }, + [4] = { 9.8, 48.3, 45, 7200 }, + [5] = { 14.1, 44.3, 47, 7200 }, + [6] = { 71.4, 79.3, 267, 7200 }, + [7] = { 99.5, 3.3, 267, 7200 }, + }, + }, + [61040] = { + ["coords"] = { + [1] = { 40.1, 26.5, 3, 900 }, + [2] = { 27.4, 57.6, 15, 900 }, + [3] = { 49.7, 83.8, 17, 900 }, + [4] = { 11.1, 50.6, 45, 7200 }, + [5] = { 13.6, 41.6, 47, 7200 }, + [6] = { 72.9, 81.9, 267, 7200 }, + }, + }, + [61041] = { + ["coords"] = { + [1] = { 40.7, 25.6, 3, 900 }, + [2] = { 27.6, 58.2, 15, 900 }, + [3] = { 49.8, 84.1, 17, 900 }, + [4] = { 10.6, 51.1, 45, 7200 }, + [5] = { 14.2, 41.5, 47, 7200 }, + [6] = { 72.3, 82.5, 267, 7200 }, + }, + }, + [61042] = { + ["coords"] = { + [1] = { 39.9, 26.8, 3, 900 }, + [2] = { 27.4, 57.5, 15, 900 }, + [3] = { 49.7, 83.7, 17, 900 }, + [4] = { 11.2, 50.4, 45, 7200 }, + [5] = { 13.5, 41.6, 47, 7200 }, + [6] = { 73, 81.7, 267, 7200 }, + }, + }, + [61043] = { + ["coords"] = { + [1] = { 39.9, 26.9, 3, 900 }, + [2] = { 27.4, 57.4, 15, 900 }, + [3] = { 49.7, 83.7, 17, 900 }, + [4] = { 11.3, 50.3, 45, 7200 }, + [5] = { 13.4, 41.6, 47, 7200 }, + [6] = { 73.1, 81.6, 267, 7200 }, + }, + }, + [61044] = { + ["coords"] = { + [1] = { 40, 26.7, 3, 900 }, + [2] = { 27.4, 57.5, 15, 900 }, + [3] = { 49.7, 83.8, 17, 900 }, + [4] = { 11.2, 50.4, 45, 7200 }, + [5] = { 13.5, 41.6, 47, 7200 }, + [6] = { 73, 81.7, 267, 7200 }, + }, + }, + [61045] = { + ["coords"] = { + [1] = { 39.9, 26.7, 3, 900 }, + [2] = { 27.4, 57.5, 15, 900 }, + [3] = { 49.7, 83.7, 17, 900 }, + [4] = { 11.2, 50.4, 45, 7200 }, + [5] = { 13.5, 41.6, 47, 7200 }, + [6] = { 73, 81.8, 267, 7200 }, + }, + }, + [61046] = { + ["coords"] = { + [1] = { 40.2, 26.2, 3, 900 }, + [2] = { 27.5, 57.8, 15, 900 }, + [3] = { 49.8, 83.9, 17, 900 }, + [4] = { 11, 50.8, 45, 7200 }, + [5] = { 13.8, 41.5, 47, 7200 }, + [6] = { 72.8, 82.1, 267, 7200 }, + }, + }, + [61047] = { + ["coords"] = { + [1] = { 40.3, 26.1, 3, 900 }, + [2] = { 27.5, 57.8, 15, 900 }, + [3] = { 49.8, 83.9, 17, 900 }, + [4] = { 11, 50.8, 45, 7200 }, + [5] = { 13.8, 41.5, 47, 7200 }, + [6] = { 72.7, 82.1, 267, 7200 }, + }, + }, + [61048] = { + ["coords"] = { + [1] = { 40.8, 25.6, 3, 900 }, + [2] = { 27.6, 58.3, 15, 900 }, + [3] = { 49.8, 84.1, 17, 900 }, + [4] = { 10.6, 51.1, 45, 7200 }, + [5] = { 14.2, 41.5, 47, 7200 }, + [6] = { 72.3, 82.5, 267, 7200 }, + }, + }, + [61049] = { + ["coords"] = { + [1] = { 40.8, 25.9, 3, 900 }, + [2] = { 27.5, 58.2, 15, 900 }, + [3] = { 49.7, 84.1, 17, 900 }, + [4] = { 10.6, 50.9, 45, 7200 }, + [5] = { 14.1, 41.7, 47, 7200 }, + [6] = { 72.3, 82.2, 267, 7200 }, + }, + }, + [61050] = { + ["coords"] = { + [1] = { 39.6, 27.7, 3, 900 }, + [2] = { 27.2, 57.1, 15, 900 }, + [3] = { 49.6, 83.5, 17, 900 }, + [4] = { 11.5, 49.9, 45, 7200 }, + [5] = { 13.1, 41.9, 47, 7200 }, + [6] = { 73.3, 81.1, 267, 7200 }, + }, + }, + [61051] = { + ["coords"] = { + [1] = { 41.9, 27.1, 3, 900 }, + [2] = { 26.9, 58.7, 15, 900 }, + [3] = { 49.4, 84.4, 17, 900 }, + [4] = { 9.9, 49.8, 45, 7200 }, + [5] = { 14.4, 43, 47, 7200 }, + [6] = { 71.5, 81, 267, 7200 }, + [7] = { 99.9, 1.7, 267, 7200 }, + }, + }, + [61052] = { + ["coords"] = { + [1] = { 40.7, 25.7, 3, 900 }, + [2] = { 27.6, 58.2, 15, 900 }, + [3] = { 49.8, 84.1, 17, 900 }, + [4] = { 10.6, 51, 45, 7200 }, + [5] = { 14.1, 41.5, 47, 7200 }, + [6] = { 72.4, 82.4, 267, 7200 }, + }, + }, + [61053] = { + ["coords"] = { + [1] = { 42.3, 30.1, 3, 900 }, + [2] = { 26, 58.3, 15, 900 }, + [3] = { 49, 84.2, 17, 900 }, + [4] = { 9.9, 47.7, 45, 7200 }, + [5] = { 13.8, 44.7, 47, 7200 }, + [6] = { 71.6, 78.7, 267, 7200 }, + [7] = { 99.2, 3.8, 267, 7200 }, + }, + }, + [61054] = { + ["coords"] = { + [1] = { 42.3, 30.1, 3, 900 }, + [2] = { 26, 58.3, 15, 900 }, + [3] = { 49, 84.1, 17, 900 }, + [4] = { 9.9, 47.7, 45, 7200 }, + [5] = { 13.8, 44.7, 47, 7200 }, + [6] = { 71.6, 78.6, 267, 7200 }, + [7] = { 99.1, 3.8, 267, 7200 }, + }, + }, + [61055] = { + ["coords"] = { + [1] = { 42.9, 28.9, 3, 900 }, + [2] = { 26.2, 59, 15, 900 }, + [3] = { 49.1, 84.5, 17, 900 }, + [4] = { 9.4, 48.4, 45, 7200 }, + [5] = { 14.5, 44.5, 47, 7200 }, + [6] = { 70.9, 79.5, 267, 7200 }, + [7] = { 99.9, 3.5, 267, 7200 }, + }, + }, + [61056] = { + ["coords"] = { + [1] = { 42, 31.1, 3, 900 }, + [2] = { 25.7, 57.9, 15, 900 }, + [3] = { 48.8, 84, 17, 900 }, + [4] = { 10.2, 47.1, 45, 7200 }, + [5] = { 13.4, 45.1, 47, 7200 }, + [6] = { 71.8, 78, 267, 7200 }, + [7] = { 98.7, 4.2, 267, 7200 }, + }, + }, + [61057] = { + ["coords"] = { + [1] = { 42, 31, 3, 900 }, + [2] = { 25.8, 57.9, 15, 900 }, + [3] = { 48.9, 84, 17, 900 }, + [4] = { 10.2, 47.1, 45, 7200 }, + [5] = { 13.4, 45, 47, 7200 }, + [6] = { 71.9, 78, 267, 7200 }, + [7] = { 98.7, 4.2, 267, 7200 }, + }, + }, + [61058] = { + ["coords"] = { + [1] = { 41.9, 30.9, 3, 900 }, + [2] = { 25.8, 57.9, 15, 900 }, + [3] = { 48.9, 83.9, 17, 900 }, + [4] = { 10.3, 47.3, 45, 7200 }, + [5] = { 13.4, 44.9, 47, 7200 }, + [6] = { 71.9, 78.2, 267, 7200 }, + [7] = { 98.7, 4, 267, 7200 }, + }, + }, + [61059] = { + ["coords"] = { + [1] = { 41.3, 30.1, 3, 900 }, + [2] = { 26.2, 57.6, 15, 900 }, + [3] = { 49.1, 83.8, 17, 900 }, + [4] = { 10.6, 47.9, 45, 7200 }, + [5] = { 13.3, 44.1, 47, 7200 }, + [6] = { 72.3, 78.9, 267, 7200 }, + [7] = { 98.5, 3.1, 267, 7200 }, + }, + }, + [61060] = { + ["coords"] = { + [1] = { 40.8, 25.6, 3, 900 }, + [2] = { 27.5, 58.3, 15, 900 }, + [3] = { 49.8, 84.2, 17, 900 }, + [4] = { 10.5, 51, 45, 7200 }, + [5] = { 14.2, 41.6, 47, 7200 }, + [6] = { 72.3, 82.4, 267, 7200 }, + }, + }, + [61061] = { + ["coords"] = { + [1] = { 41.1, 29.9, 3, 900 }, + [2] = { 26.3, 57.6, 15, 900 }, + [3] = { 49.1, 83.8, 17, 900 }, + [4] = { 10.7, 48.1, 45, 7200 }, + [5] = { 13.2, 43.9, 47, 7200 }, + [6] = { 72.5, 79.1, 267, 7200 }, + [7] = { 98.5, 2.8, 267, 7200 }, + }, + }, + [61062] = { + ["coords"] = { + [1] = { 42.7, 27.4, 3, 900 }, + [2] = { 26.6, 59.1, 15, 900 }, + [3] = { 49.3, 84.6, 17, 900 }, + [4] = { 9.4, 49.5, 45, 7200 }, + [5] = { 14.7, 43.6, 47, 7200 }, + [6] = { 71, 80.6, 267, 7200 }, + }, + }, + [61063] = { + ["coords"] = { + [1] = { 43.4, 28.2, 3, 900 }, + [2] = { 26.3, 59.4, 15, 900 }, + [3] = { 49.1, 84.7, 17, 900 }, + [4] = { 9, 48.8, 45, 7200 }, + [5] = { 14.9, 44.4, 47, 7200 }, + [6] = { 70.5, 79.9, 267, 7200 }, + }, + }, + [61064] = { + ["coords"] = { + [1] = { 43.5, 28.5, 3, 900 }, + [2] = { 26.2, 59.4, 15, 900 }, + [3] = { 49.1, 84.7, 17, 900 }, + [4] = { 8.9, 48.6, 45, 7200 }, + [5] = { 14.8, 44.6, 47, 7200 }, + [6] = { 70.5, 79.6, 267, 7200 }, + }, + }, + [61065] = { + ["coords"] = { + [1] = { 40.3, 26.2, 3, 900 }, + [2] = { 27.5, 57.8, 15, 900 }, + [3] = { 49.8, 83.9, 17, 900 }, + [4] = { 11, 50.8, 45, 7200 }, + [5] = { 13.8, 41.5, 47, 7200 }, + [6] = { 72.7, 82.1, 267, 7200 }, + }, + }, + [61066] = { + ["coords"] = { + [1] = { 40.3, 26.1, 3, 900 }, + [2] = { 27.5, 57.9, 15, 900 }, + [3] = { 49.8, 83.9, 17, 900 }, + [4] = { 10.9, 50.8, 45, 7200 }, + [5] = { 13.9, 41.5, 47, 7200 }, + [6] = { 72.7, 82.2, 267, 7200 }, + }, + }, + [61067] = { + ["coords"] = { + [1] = { 40.5, 28.5, 3, 900 }, + [2] = { 26.8, 57.5, 15, 900 }, + [3] = { 49.4, 83.7, 17, 900 }, + [4] = { 11, 49.1, 45, 7200 }, + [5] = { 13.3, 42.9, 47, 7200 }, + [6] = { 72.8, 80.3, 267, 7200 }, + [7] = { 98.6, 1.6, 267, 7200 }, + }, + }, + [61068] = { + ["coords"] = { + [1] = { 40.5, 28.6, 3, 900 }, + [2] = { 26.8, 57.4, 15, 900 }, + [3] = { 49.4, 83.7, 17, 900 }, + [4] = { 11, 49.1, 45, 7200 }, + [5] = { 13.3, 42.9, 47, 7200 }, + [6] = { 72.8, 80.2, 267, 7200 }, + [7] = { 98.5, 1.6, 267, 7200 }, + }, + }, + [61069] = { + ["coords"] = { + [1] = { 39.6, 27.6, 3, 900 }, + [2] = { 27.2, 57.1, 15, 900 }, + [3] = { 49.6, 83.6, 17, 900 }, + [4] = { 11.5, 49.9, 45, 7200 }, + [5] = { 13.1, 41.8, 47, 7200 }, + [6] = { 73.3, 81.2, 267, 7200 }, + }, + }, + [61070] = { + ["coords"] = { + [1] = { 40.4, 28.7, 3, 900 }, + [2] = { 26.8, 57.4, 15, 900 }, + [3] = { 49.4, 83.7, 17, 900 }, + [4] = { 11.1, 49, 45, 7200 }, + [5] = { 13.2, 42.9, 47, 7200 }, + [6] = { 72.9, 80.1, 267, 7200 }, + [7] = { 98.5, 1.6, 267, 7200 }, + }, + }, + [61071] = { + ["coords"] = { + [1] = { 40.4, 28.8, 3, 900 }, + [2] = { 26.7, 57.3, 15, 900 }, + [3] = { 49.4, 83.7, 17, 900 }, + [4] = { 11.1, 49, 45, 7200 }, + [5] = { 13.2, 42.9, 47, 7200 }, + [6] = { 72.9, 80.1, 267, 7200 }, + [7] = { 98.4, 1.6, 267, 7200 }, + }, + }, + [61072] = { + ["coords"] = { + [1] = { 41.5, 26.6, 3, 900 }, + [2] = { 27.1, 58.5, 15, 900 }, + [3] = { 49.6, 84.3, 17, 900 }, + [4] = { 10.1, 50.2, 45, 7200 }, + [5] = { 14.3, 42.5, 47, 7200 }, + [6] = { 71.8, 81.5, 267, 7200 }, + [7] = { 99.8, 1.1, 267, 7200 }, + }, + }, + [61073] = { + ["coords"] = { + [1] = { 41.6, 26.5, 3, 900 }, + [2] = { 27.1, 58.6, 15, 900 }, + [3] = { 49.6, 84.3, 17, 900 }, + [4] = { 10.1, 50.3, 45, 7200 }, + [5] = { 14.4, 42.5, 47, 7200 }, + [6] = { 71.8, 81.5, 267, 7200 }, + [7] = { 99.9, 1.1, 267, 7200 }, + }, + }, + [61074] = { + ["coords"] = { + [1] = { 41.7, 26.4, 3, 900 }, + [2] = { 27.2, 58.7, 15, 900 }, + [3] = { 49.6, 84.4, 17, 900 }, + [4] = { 10, 50.4, 45, 7200 }, + [5] = { 14.5, 42.5, 47, 7200 }, + [6] = { 71.7, 81.7, 267, 7200 }, + [7] = { 100, 1.1, 267, 7200 }, + }, + }, + [61075] = { + ["coords"] = { + [1] = { 41.9, 26.9, 3, 900 }, + [2] = { 27, 58.7, 15, 900 }, + [3] = { 49.5, 84.4, 17, 900 }, + [4] = { 9.9, 50, 45, 7200 }, + [5] = { 14.5, 42.8, 47, 7200 }, + [6] = { 71.6, 81.2, 267, 7200 }, + [7] = { 99.9, 1.5, 267, 7200 }, + }, + }, + [61076] = { + ["coords"] = { + [1] = { 41.8, 27, 3, 900 }, + [2] = { 26.9, 58.6, 15, 900 }, + [3] = { 49.5, 84.3, 17, 900 }, + [4] = { 10, 49.9, 45, 7200 }, + [5] = { 14.4, 42.9, 47, 7200 }, + [6] = { 71.6, 81.1, 267, 7200 }, + [7] = { 99.9, 1.6, 267, 7200 }, + }, + }, + [61077] = { + ["coords"] = { + [1] = { 41.6, 28.8, 3, 900 }, + [2] = { 26.5, 58.1, 15, 900 }, + [3] = { 49.2, 84.1, 17, 900 }, + [4] = { 10.3, 48.7, 45, 7200 }, + [5] = { 13.8, 43.6, 47, 7200 }, + [6] = { 72, 79.8, 267, 7200 }, + [7] = { 99.1, 2.5, 267, 7200 }, + }, + }, + [61078] = { + ["coords"] = { + [1] = { 41.9, 29.3, 3, 900 }, + [2] = { 26.3, 58.2, 15, 900 }, + [3] = { 49.1, 84.1, 17, 900 }, + [4] = { 10.1, 48.3, 45, 7200 }, + [5] = { 13.8, 44.1, 47, 7200 }, + [6] = { 71.8, 79.3, 267, 7200 }, + [7] = { 99.2, 3, 267, 7200 }, + }, + }, + [61079] = { + ["coords"] = { + [1] = { 42, 28.7, 3, 900 }, + [2] = { 26.4, 58.4, 15, 900 }, + [3] = { 49.2, 84.2, 17, 900 }, + [4] = { 10, 48.7, 45, 7200 }, + [5] = { 14, 43.9, 47, 7200 }, + [6] = { 71.6, 79.8, 267, 7200 }, + [7] = { 99.4, 2.8, 267, 7200 }, + }, + }, + [61080] = { + ["coords"] = { + [1] = { 42, 28.8, 3, 900 }, + [2] = { 26.4, 58.4, 15, 900 }, + [3] = { 49.2, 84.2, 17, 900 }, + [4] = { 10, 48.6, 45, 7200 }, + [5] = { 14, 43.9, 47, 7200 }, + [6] = { 71.7, 79.7, 267, 7200 }, + [7] = { 99.4, 2.8, 267, 7200 }, + }, + }, + [61081] = { + ["coords"] = { + [1] = { 42, 28.9, 3, 900 }, + [2] = { 26.4, 58.3, 15, 900 }, + [3] = { 49.2, 84.2, 17, 900 }, + [4] = { 10, 48.5, 45, 7200 }, + [5] = { 14, 44, 47, 7200 }, + [6] = { 71.7, 79.6, 267, 7200 }, + [7] = { 99.3, 2.9, 267, 7200 }, + }, + }, + [61082] = { + ["coords"] = { + [1] = { 42, 29, 3, 900 }, + [2] = { 26.3, 58.4, 15, 900 }, + [3] = { 49.1, 84.2, 17, 900 }, + [4] = { 10, 48.5, 45, 7200 }, + [5] = { 14, 44, 47, 7200 }, + [6] = { 71.6, 79.6, 267, 7200 }, + [7] = { 99.4, 3, 267, 7200 }, + }, + }, + [61083] = { + ["coords"] = { + [1] = { 42.1, 28.7, 3, 900 }, + [2] = { 26.4, 58.5, 15, 900 }, + [3] = { 49.2, 84.3, 17, 900 }, + [4] = { 9.9, 48.7, 45, 7200 }, + [5] = { 14.1, 43.9, 47, 7200 }, + [6] = { 71.6, 79.8, 267, 7200 }, + [7] = { 99.5, 2.8, 267, 7200 }, + }, + }, + [61084] = { + ["coords"] = { + [1] = { 42.2, 28.8, 3, 900 }, + [2] = { 26.4, 58.5, 15, 900 }, + [3] = { 49.2, 84.3, 17, 900 }, + [4] = { 9.9, 48.6, 45, 7200 }, + [5] = { 14.1, 44, 47, 7200 }, + [6] = { 71.5, 79.7, 267, 7200 }, + [7] = { 99.5, 2.9, 267, 7200 }, + }, + }, + [61085] = { + ["coords"] = { + [1] = { 41.2, 28.7, 3, 900 }, + [2] = { 26.6, 57.9, 15, 900 }, + [3] = { 49.3, 83.9, 17, 900 }, + [4] = { 10.5, 48.9, 45, 7200 }, + [5] = { 13.6, 43.4, 47, 7200 }, + [6] = { 72.3, 80, 267, 7200 }, + [7] = { 98.9, 2.2, 267, 7200 }, + }, + }, + [61086] = { + ["coords"] = { + [1] = { 41.3, 28.8, 3, 900 }, + [2] = { 26.6, 57.9, 15, 900 }, + [3] = { 49.3, 84, 17, 900 }, + [4] = { 10.5, 48.8, 45, 7200 }, + [5] = { 13.6, 43.4, 47, 7200 }, + [6] = { 72.2, 79.9, 267, 7200 }, + [7] = { 98.9, 2.3, 267, 7200 }, + }, + }, + [61087] = { + ["coords"] = { + [1] = { 39.7, 27.7, 3, 900 }, + [2] = { 27.2, 57.1, 15, 900 }, + [3] = { 49.6, 83.6, 17, 900 }, + [4] = { 11.5, 49.8, 45, 7200 }, + [5] = { 13.1, 42, 47, 7200 }, + [6] = { 73.3, 81, 267, 7200 }, + [7] = { 98.3, 0.5, 267, 7200 }, + }, + }, + [61088] = { + ["coords"] = { + [1] = { 40.7, 28.6, 3, 900 }, + [2] = { 26.7, 57.6, 15, 900 }, + [3] = { 49.3, 83.8, 17, 900 }, + [4] = { 10.8, 49, 45, 7200 }, + [5] = { 13.4, 43, 47, 7200 }, + [6] = { 72.6, 80.2, 267, 7200 }, + [7] = { 98.7, 1.8, 267, 7200 }, + }, + }, + [61089] = { + ["coords"] = { + [1] = { 41, 29.3, 3, 900 }, + [2] = { 26.5, 57.6, 15, 900 }, + [3] = { 49.2, 83.8, 17, 900 }, + [4] = { 10.7, 48.5, 45, 7200 }, + [5] = { 13.3, 43.5, 47, 7200 }, + [6] = { 72.5, 79.6, 267, 7200 }, + [7] = { 98.6, 2.4, 267, 7200 }, + }, + }, + [61090] = { + ["coords"] = { + [1] = { 42, 27.4, 3, 900 }, + [2] = { 26.8, 58.7, 15, 900 }, + [3] = { 49.4, 84.4, 17, 900 }, + [4] = { 9.9, 49.6, 45, 7200 }, + [5] = { 14.4, 43.2, 47, 7200 }, + [6] = { 71.5, 80.8, 267, 7200 }, + [7] = { 99.9, 1.9, 267, 7200 }, + }, + }, + [61091] = { + ["coords"] = { + [1] = { 39.7, 27.5, 3, 900 }, + [2] = { 27.3, 57.2, 15, 900 }, + [3] = { 49.6, 83.6, 17, 900 }, + [4] = { 11.5, 50, 45, 7200 }, + [5] = { 13.2, 41.8, 47, 7200 }, + [6] = { 73.3, 81.2, 267, 7200 }, + }, + }, + [61092] = { + ["coords"] = { + [1] = { 40.8, 25.8, 3, 900 }, + [2] = { 27.5, 58.3, 15, 900 }, + [3] = { 49.7, 84.1, 17, 900 }, + [4] = { 10.5, 50.9, 45, 7200 }, + [5] = { 14.2, 41.7, 47, 7200 }, + [6] = { 72.3, 82.3, 267, 7200 }, + }, + }, + [61093] = { + ["coords"] = { + [1] = { 41.6, 27, 3, 900 }, + [2] = { 27, 58.5, 15, 900 }, + [3] = { 49.5, 84.3, 17, 900 }, + [4] = { 10.1, 49.9, 45, 7200 }, + [5] = { 14.3, 42.7, 47, 7200 }, + [6] = { 71.8, 81.2, 267, 7200 }, + [7] = { 99.7, 1.4, 267, 7200 }, + }, + }, + [61094] = { + ["coords"] = { + [1] = { 42.1, 27.3, 3, 900 }, + [2] = { 26.8, 58.7, 15, 900 }, + [3] = { 49.4, 84.4, 17, 900 }, + [4] = { 9.8, 49.7, 45, 7200 }, + [5] = { 14.4, 43.2, 47, 7200 }, + [6] = { 71.5, 80.9, 267, 7200 }, + [7] = { 99.9, 1.9, 267, 7200 }, + }, + }, + [61095] = { + ["coords"] = { + [1] = { 41.4, 28.3, 3, 900 }, + [2] = { 26.7, 58.1, 15, 900 }, + [3] = { 49.3, 84.1, 17, 900 }, + [4] = { 10.4, 49.1, 45, 7200 }, + [5] = { 13.8, 43.2, 47, 7200 }, + [6] = { 72.1, 80.3, 267, 7200 }, + [7] = { 99.2, 2, 267, 7200 }, + }, + }, + [61096] = { + ["coords"] = { + [1] = { 40.9, 28.8, 3, 900 }, + [2] = { 26.6, 57.7, 15, 900 }, + [3] = { 49.3, 83.8, 17, 900 }, + [4] = { 10.7, 48.9, 45, 7200 }, + [5] = { 13.4, 43.2, 47, 7200 }, + [6] = { 72.5, 80, 267, 7200 }, + [7] = { 98.7, 2, 267, 7200 }, + }, + }, + [61097] = { + ["coords"] = { + [1] = { 41.5, 28.4, 3, 900 }, + [2] = { 26.6, 58.2, 15, 900 }, + [3] = { 49.3, 84.1, 17, 900 }, + [4] = { 10.3, 49, 45, 7200 }, + [5] = { 13.9, 43.4, 47, 7200 }, + [6] = { 72, 80.2, 267, 7200 }, + [7] = { 99.2, 2.2, 267, 7200 }, + }, + }, + [61098] = { + ["coords"] = { + [1] = { 41, 27.3, 3, 900 }, + [2] = { 27, 58.1, 15, 900 }, + [3] = { 49.5, 84, 17, 900 }, + [4] = { 10.5, 49.8, 45, 7200 }, + [5] = { 13.9, 42.5, 47, 7200 }, + [6] = { 72.3, 81.1, 267, 7200 }, + [7] = { 99.3, 1.2, 267, 7200 }, + }, + }, + [61099] = { + ["coords"] = { + [1] = { 40.9, 28.8, 3, 900 }, + [2] = { 26.6, 57.7, 15, 900 }, + [3] = { 49.3, 83.9, 17, 900 }, + [4] = { 10.7, 48.8, 45, 7200 }, + [5] = { 13.4, 43.3, 47, 7200 }, + [6] = { 72.5, 79.9, 267, 7200 }, + [7] = { 98.7, 2.1, 267, 7200 }, + }, + }, + [61100] = { + ["coords"] = { + [1] = { 41.5, 26.9, 3, 900 }, + [2] = { 27, 58.4, 15, 900 }, + [3] = { 49.5, 84.2, 17, 900 }, + [4] = { 10.2, 50, 45, 7200 }, + [5] = { 14.2, 42.6, 47, 7200 }, + [6] = { 71.9, 81.3, 267, 7200 }, + [7] = { 99.7, 1.2, 267, 7200 }, + }, + }, + [61101] = { + ["coords"] = { + [1] = { 41.7, 27.4, 3, 900 }, + [2] = { 26.9, 58.5, 15, 900 }, + [3] = { 49.4, 84.3, 17, 900 }, + [4] = { 10.1, 49.7, 45, 7200 }, + [5] = { 14.2, 43, 47, 7200 }, + [6] = { 71.8, 80.9, 267, 7200 }, + [7] = { 99.7, 1.7, 267, 7200 }, + }, + }, + [61102] = { + ["coords"] = { + [1] = { 41.8, 27.3, 3, 900 }, + [2] = { 26.9, 58.6, 15, 900 }, + [3] = { 49.4, 84.3, 17, 900 }, + [4] = { 10, 49.7, 45, 7200 }, + [5] = { 14.3, 43, 47, 7200 }, + [6] = { 71.7, 80.9, 267, 7200 }, + [7] = { 99.8, 1.8, 267, 7200 }, + }, + }, + [61918] = { + ["coords"] = { + [1] = { 28.3, 77.1, 33, 900 }, + }, + }, + [61919] = { + ["coords"] = { + [1] = { 6.7, 59.4, 11, 7200 }, + [2] = { 67.6, 58.5, 15, 900 }, + [3] = { 77.1, 56.1, 15, 900 }, + [4] = { 69, 55.9, 15, 900 }, + }, + }, + [61920] = { + ["coords"] = { + [1] = { 6.6, 59.5, 11, 7200 }, + [2] = { 67.6, 58.4, 15, 900 }, + [3] = { 77, 56.2, 15, 900 }, + [4] = { 68.9, 55.8, 15, 900 }, + }, + }, + [61921] = { + ["coords"] = { + [1] = { 6.6, 59.6, 11, 7200 }, + [2] = { 67.5, 58.4, 15, 900 }, + [3] = { 77, 56.2, 15, 900 }, + [4] = { 68.8, 55.8, 15, 900 }, + }, + }, + [61922] = { + ["coords"] = { + [1] = { 6.5, 59.4, 11, 7200 }, + [2] = { 67.6, 58.3, 15, 900 }, + [3] = { 76.9, 56.2, 15, 900 }, + [4] = { 68.9, 55.7, 15, 900 }, + }, + }, + [61923] = { + ["coords"] = { + [1] = { 6.5, 59.5, 11, 7200 }, + [2] = { 67.5, 58.3, 15, 900 }, + [3] = { 77, 56.2, 15, 900 }, + [4] = { 68.9, 55.7, 15, 900 }, + }, + }, + [61924] = { + ["coords"] = { + [1] = { 6.3, 59.3, 11, 7200 }, + [2] = { 67.6, 58, 15, 900 }, + [3] = { 76.8, 56.1, 15, 900 }, + [4] = { 68.9, 55.4, 15, 900 }, + }, + }, + [61925] = { + ["coords"] = { + [1] = { 6.3, 59.3, 11, 7200 }, + [2] = { 67.6, 58, 15, 900 }, + [3] = { 76.8, 56.1, 15, 900 }, + [4] = { 68.9, 55.4, 15, 900 }, + }, + }, + [61927] = { + ["coords"] = { + [1] = { 36.5, 76.6, 148, 900 }, + }, + }, + [61928] = { + ["coords"] = { + [1] = { 39.9, 78.3, 148, 900 }, + }, + }, + [61929] = { + ["coords"] = { + [1] = { 42.6, 86.4, 148, 900 }, + }, + }, + [61934] = { + ["coords"] = { + [1] = { 39, 58.2, 14, 900 }, + }, + ["fac"] = "H", + }, + [61935] = { + ["coords"] = { + [1] = { 52.3, 11.4, 17, 10 }, + }, + ["fac"] = "AH", + }, + [61936] = { + ["coords"] = { + [1] = { 52.4, 11.4, 17, 10 }, + }, + ["fac"] = "AH", + }, + [61952] = { + ["coords"] = { + [1] = { 67.7, 63.9, 400, 180 }, + }, + }, + [61953] = { + ["coords"] = { + [1] = { 45.1, 76.2, 215, 900 }, + }, + }, + [63195] = { + ["coords"] = { + [1] = { 58.5, 67.7, 1519, 900 }, + }, + }, + [63196] = { + ["coords"] = { + [1] = { 26, 78.2, 1519, 120 }, + }, + }, + [63197] = { + ["coords"] = { + [1] = { 50, 47.6, 1519, 900 }, + }, + }, + [63198] = { + ["coords"] = { + [1] = { 48.4, 47.1, 1519, 900 }, + }, + }, + [63674] = { + ["coords"] = { + [1] = { 44.1, 76.4, 14, 900 }, + [2] = { 38.1, 58.5, 14, 900 }, + [3] = { 68.3, 36.9, 17, 900 }, + [4] = { 65.1, 27.6, 17, 900 }, + [5] = { 37.8, 44.3, 130, 7200 }, + [6] = { 53.9, 80.2, 215, 900 }, + [7] = { 60.5, 50.2, 400, 180 }, + }, + }, + [64849] = { + ["coords"] = {}, + }, + [64850] = { + ["coords"] = {}, + }, + [64856] = { + ["coords"] = { + [1] = { 29, 68.6, 1, 900 }, + }, + }, + [64857] = { + ["coords"] = { + [1] = { 28.6, 68.5, 1, 900 }, + }, + }, + [64858] = { + ["coords"] = { + [1] = { 28.9, 68.2, 1, 900 }, + }, + }, + [64859] = { + ["coords"] = { + [1] = { 28.8, 66.6, 1, 900 }, + }, + }, + [64860] = { + ["coords"] = { + [1] = { 28.7, 66.6, 1, 900 }, + }, + }, + [64861] = { + ["coords"] = { + [1] = { 28.7, 66.2, 1, 900 }, + }, + }, + [64862] = { + ["coords"] = { + [1] = { 28.5, 66.2, 1, 900 }, + }, + }, + [64863] = { + ["coords"] = { + [1] = { 28.7, 66.1, 1, 900 }, + }, + }, + [65407] = { + ["coords"] = { + [1] = { 47.7, 61.8, 405, 900 }, + }, + ["fac"] = "AH", + }, + [66780] = { + ["coords"] = { + [1] = { 55.2, 56.5, 1519, 900 }, + }, + }, + [67234] = { + ["coords"] = { + [1] = { 44.1, 92.3, 17, 180 }, + [2] = { 32.2, 22.4, 400, 180 }, + }, + }, + [68865] = { + ["coords"] = { + [1] = { 62.3, 37.6, 17, 10 }, + }, + }, + [69282] = { + ["coords"] = { + [1] = { 43.1, 50.9, 130, 7200 }, + }, + }, + [69421] = { + ["coords"] = {}, + }, + [69422] = { + ["coords"] = {}, + }, + [69423] = { + ["coords"] = {}, + }, + [69424] = { + ["coords"] = {}, + }, + [69425] = { + ["coords"] = {}, + }, + [69426] = { + ["coords"] = {}, + }, + [69427] = { + ["coords"] = {}, + }, + [69428] = { + ["coords"] = {}, + }, + [69429] = { + ["coords"] = {}, + }, + [69430] = { + ["coords"] = {}, + }, + [69431] = { + ["coords"] = {}, + }, + [69432] = { + ["coords"] = {}, + }, + [69433] = { + ["coords"] = {}, + }, + [69434] = { + ["coords"] = {}, + }, + [69435] = { + ["coords"] = {}, + }, + [69436] = { + ["coords"] = {}, + }, + [69437] = { + ["coords"] = {}, + }, + [69438] = { + ["coords"] = {}, + }, + [70517] = { + ["coords"] = { + [1] = { 64.4, 54, 400, 180 }, + }, + }, + [70518] = { + ["coords"] = {}, + }, + [70519] = { + ["coords"] = {}, + }, + [70520] = { + ["coords"] = {}, + }, + [70521] = { + ["coords"] = {}, + }, + [70522] = { + ["coords"] = {}, + }, + [70523] = { + ["coords"] = {}, + }, + [70524] = { + ["coords"] = {}, + }, + [70525] = { + ["coords"] = {}, + }, + [70526] = { + ["coords"] = {}, + }, + [70527] = { + ["coords"] = {}, + }, + [70528] = { + ["coords"] = {}, + }, + [70530] = { + ["coords"] = {}, + }, + [70531] = { + ["coords"] = {}, + }, + [70532] = { + ["coords"] = {}, + }, + [70533] = { + ["coords"] = {}, + }, + [70534] = { + ["coords"] = {}, + }, + [70535] = { + ["coords"] = {}, + }, + [70536] = { + ["coords"] = {}, + }, + [70537] = { + ["coords"] = {}, + }, + [70538] = { + ["coords"] = {}, + }, + [70539] = { + ["coords"] = {}, + }, + [70540] = { + ["coords"] = {}, + }, + [70541] = { + ["coords"] = {}, + }, + [70542] = { + ["coords"] = {}, + }, + [70543] = { + ["coords"] = {}, + }, + [70544] = { + ["coords"] = {}, + }, + [70545] = { + ["coords"] = {}, + }, + [70546] = { + ["coords"] = {}, + }, + [70547] = { + ["coords"] = {}, + }, + [70548] = { + ["coords"] = {}, + }, + [70549] = { + ["coords"] = {}, + }, + [70551] = { + ["coords"] = {}, + }, + [70552] = { + ["coords"] = {}, + }, + [70553] = { + ["coords"] = {}, + }, + [70554] = { + ["coords"] = {}, + }, + [70555] = { + ["coords"] = {}, + }, + [70556] = { + ["coords"] = {}, + }, + [70557] = { + ["coords"] = {}, + }, + [73939] = { + ["coords"] = {}, + }, + [73940] = { + ["coords"] = { + [1] = { 65.3, 87, 400, 300 }, + [2] = { 69, 86.8, 400, 300 }, + [3] = { 63.7, 86.4, 400, 300 }, + [4] = { 66.3, 86.4, 400, 300 }, + [5] = { 65.6, 85.8, 400, 300 }, + [6] = { 64.5, 85.7, 400, 300 }, + [7] = { 69.4, 84.9, 400, 300 }, + [8] = { 64.9, 84.4, 400, 300 }, + [9] = { 69.3, 82.8, 400, 300 }, + [10] = { 43.7, 13.6, 440, 300 }, + [11] = { 44.2, 13.2, 440, 300 }, + }, + }, + [73941] = { + ["coords"] = { + [1] = { 76.7, 66.7, 357, 300 }, + [2] = { 77.3, 65.7, 357, 300 }, + [3] = { 79.2, 65.4, 357, 300 }, + [4] = { 77.8, 65.3, 357, 300 }, + [5] = { 74, 64.7, 357, 300 }, + [6] = { 72.6, 64.5, 357, 300 }, + [7] = { 73.5, 64.1, 357, 300 }, + [8] = { 77.6, 63.3, 357, 300 }, + [9] = { 78.5, 63, 357, 300 }, + [10] = { 76.8, 62.9, 357, 300 }, + [11] = { 77.2, 62.8, 357, 300 }, + [12] = { 78.9, 62.8, 357, 300 }, + [13] = { 73.5, 62.3, 357, 300 }, + [14] = { 76.9, 61.6, 357, 300 }, + [15] = { 65.3, 87, 400, 300 }, + [16] = { 69, 86.8, 400, 300 }, + [17] = { 63.7, 86.4, 400, 300 }, + [18] = { 66.3, 86.4, 400, 300 }, + [19] = { 65.6, 85.8, 400, 300 }, + [20] = { 64.5, 85.7, 400, 300 }, + [21] = { 69.4, 84.9, 400, 300 }, + [22] = { 64.9, 84.4, 400, 300 }, + [23] = { 69.3, 82.8, 400, 300 }, + [24] = { 43.7, 13.6, 440, 300 }, + [25] = { 44.2, 13.2, 440, 300 }, + }, + }, + [74075] = { + ["coords"] = {}, + }, + [74076] = { + ["coords"] = {}, + }, + [74077] = { + ["coords"] = {}, + }, + [74078] = { + ["coords"] = {}, + }, + [74091] = { + ["coords"] = { + [1] = { 27.3, 77.4, 33, 900 }, + }, + }, + [74135] = { + ["coords"] = { + [1] = { 13.2, 68.6, 8, 600 }, + }, + }, + [74138] = { + ["coords"] = { + [1] = { 34.6, 86.9, 405, 900 }, + }, + }, + [74146] = { + ["coords"] = { + [1] = { 75.2, 68.3, 405, 900 }, + }, + }, + [74439] = { + ["coords"] = { + [1] = { 47.8, 55.6, 215, 900 }, + }, + }, + [74440] = { + ["coords"] = { + [1] = { 45.8, 57.9, 215, 900 }, + }, + }, + [74441] = { + ["coords"] = { + [1] = { 46.1, 58.2, 215, 900 }, + }, + }, + [74442] = { + ["coords"] = { + [1] = { 45.6, 58.2, 215, 900 }, + }, + }, + [74443] = { + ["coords"] = { + [1] = { 45.3, 58.3, 215, 900 }, + }, + }, + [74444] = { + ["coords"] = { + [1] = { 45.9, 58.5, 215, 900 }, + }, + }, + [74445] = { + ["coords"] = { + [1] = { 47.6, 62.2, 215, 900 }, + }, + }, + [74446] = { + ["coords"] = { + [1] = { 45.2, 76.6, 215, 900 }, + }, + }, + [74447] = { + ["coords"] = {}, + }, + [74448] = { + ["coords"] = {}, + }, + [74727] = { + ["coords"] = { + [1] = { 45.5, 22.8, 215, 900 }, + [2] = { 77.2, 29.3, 1638, 900 }, + }, + }, + [74728] = { + ["coords"] = { + [1] = { 45.9, 22.7, 215, 900 }, + [2] = { 79.3, 29, 1638, 900 }, + }, + }, + [74729] = { + ["coords"] = { + [1] = { 45.9, 22.5, 215, 900 }, + [2] = { 79.1, 27.8, 1638, 900 }, + }, + }, + [74730] = { + ["coords"] = { + [1] = { 45.2, 23.3, 215, 900 }, + [2] = { 76, 31.8, 1638, 900 }, + }, + }, + [75293] = { + ["coords"] = {}, + }, + [75295] = { + ["coords"] = {}, + }, + [75296] = { + ["coords"] = {}, + }, + [75297] = { + ["coords"] = {}, + }, + [75298] = { + ["coords"] = {}, + }, + [75299] = { + ["coords"] = {}, + }, + [75300] = { + ["coords"] = {}, + }, + [77813] = { + ["coords"] = { + [1] = { 61.1, 30.6, 1497, 900 }, + }, + }, + [80022] = { + ["coords"] = { + [1] = { 23.4, 39.2, 1, 900 }, + }, + }, + [80023] = { + ["coords"] = { + [1] = { 23.4, 39.2, 1, 900 }, + }, + }, + [80024] = { + ["coords"] = {}, + }, + [82136] = { + ["coords"] = { + [1] = { 44.5, 51.5, 400, 180 }, + }, + }, + [82137] = { + ["coords"] = { + [1] = { 46.2, 52.9, 400, 180 }, + }, + }, + [82138] = { + ["coords"] = { + [1] = { 46.9, 56, 400, 180 }, + }, + }, + [82139] = { + ["coords"] = { + [1] = { 44.1, 57.5, 400, 180 }, + }, + }, + [82140] = { + ["coords"] = { + [1] = { 46.4, 57.6, 400, 180 }, + }, + }, + [83763] = { + ["coords"] = { + [1] = { 56.7, 44, 12, 180 }, + }, + }, + [85556] = { + ["coords"] = {}, + }, + [85562] = { + ["coords"] = { + [1] = { 78, 62.2, 1, 0 }, + }, + }, + [85563] = { + ["coords"] = { + [1] = { 89.3, 78.9, 12, 60 }, + }, + }, + [86492] = { + ["coords"] = { + [1] = { 33, 46.7, 148, 180 }, + [2] = { 32.7, 46.4, 148, 180 }, + [3] = { 32.3, 46.4, 148, 180 }, + [4] = { 32, 46.3, 148, 180 }, + [5] = { 33.1, 46.3, 148, 180 }, + [6] = { 33.4, 46.2, 148, 180 }, + [7] = { 31.7, 46, 148, 180 }, + [8] = { 33.7, 45.6, 148, 180 }, + [9] = { 33.4, 45.3, 148, 180 }, + [10] = { 33.9, 45.3, 148, 180 }, + [11] = { 31.6, 44.8, 148, 180 }, + [12] = { 31.1, 44.6, 148, 180 }, + [13] = { 33.8, 44.4, 148, 180 }, + [14] = { 32.2, 44.4, 148, 180 }, + [15] = { 31.5, 44.3, 148, 180 }, + [16] = { 33.6, 44.2, 148, 180 }, + [17] = { 31.8, 44.1, 148, 180 }, + [18] = { 31.3, 43.9, 148, 180 }, + [19] = { 33.2, 43.9, 148, 180 }, + [20] = { 33.7, 43.8, 148, 180 }, + [21] = { 32.8, 43.7, 148, 180 }, + [22] = { 31.9, 43.6, 148, 180 }, + [23] = { 32.5, 43.5, 148, 180 }, + [24] = { 31.4, 43.3, 148, 180 }, + [25] = { 32.2, 42.8, 148, 180 }, + [26] = { 31.7, 42.8, 148, 180 }, + [27] = { 32.5, 42.7, 148, 180 }, + [28] = { 32.3, 42.4, 148, 180 }, + }, + }, + [88496] = { + ["coords"] = { + [1] = { 34.6, 40.8, 16, 180 }, + }, + }, + [88497] = { + ["coords"] = { + [1] = { 35.7, 35.7, 16, 180 }, + }, + }, + [88498] = { + ["coords"] = { + [1] = { 32.1, 45.6, 16, 180 }, + }, + }, + [89634] = { + ["coords"] = { + [1] = { 6.6, 72.9, 11, 60 }, + [2] = { 7.1, 72.1, 11, 60 }, + [3] = { 9.1, 71.8, 11, 60 }, + [4] = { 8.7, 71.1, 11, 60 }, + [5] = { 7.8, 70.9, 11, 60 }, + [6] = { 8.3, 70.3, 11, 60 }, + [7] = { 8.9, 70.2, 11, 60 }, + [8] = { 9.8, 69.3, 11, 60 }, + [9] = { 9.3, 68.3, 11, 60 }, + [10] = { 9.8, 67.1, 11, 60 }, + [11] = { 10.8, 65.9, 11, 60 }, + [12] = { 11.7, 65, 11, 60 }, + [13] = { 12.7, 63.8, 11, 60 }, + }, + }, + [89635] = { + ["coords"] = { + [1] = { 16.7, 42, 400, 60 }, + [2] = { 18.1, 41.9, 400, 60 }, + [3] = { 17.6, 41.6, 400, 60 }, + [4] = { 17.1, 40.8, 400, 60 }, + [5] = { 10.8, 40.6, 400, 60 }, + [6] = { 17.6, 40.5, 400, 60 }, + [7] = { 10.3, 40.1, 400, 60 }, + [8] = { 13.9, 39, 400, 60 }, + [9] = { 11.8, 37.1, 400, 60 }, + [10] = { 13.5, 37, 400, 60 }, + [11] = { 11.4, 36.8, 400, 60 }, + [12] = { 8.6, 34.7, 400, 60 }, + [13] = { 10.2, 34.3, 400, 60 }, + [14] = { 9.9, 34.2, 400, 60 }, + [15] = { 12, 33.1, 400, 60 }, + [16] = { 10.8, 32.8, 400, 60 }, + [17] = { 10.9, 30.9, 400, 60 }, + }, + }, + [89931] = { + ["coords"] = { + [1] = { 79.3, 66.8, 36, 10 }, + [2] = { 78.3, 6.9, 267, 10 }, + }, + ["fac"] = "AH", + }, + [90000] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [90566] = { + ["coords"] = { + [1] = { 21.6, 30, 1, 180 }, + }, + }, + [90567] = { + ["coords"] = { + [1] = { 21.5, 29.8, 1, 180 }, + }, + }, + [90858] = { + ["coords"] = {}, + }, + [91138] = { + ["coords"] = {}, + }, + [91672] = { + ["coords"] = { + [1] = { 28.7, 52, 141, 900 }, + [2] = { 55.2, 24.4, 1657, 900 }, + }, + }, + [91673] = { + ["coords"] = { + [1] = { 27.3, 51.3, 141, 900 }, + [2] = { 48.5, 20.9, 1657, 900 }, + }, + }, + [91692] = { + ["coords"] = { + [1] = { 28.5, 75.3, 33, 900 }, + }, + }, + [91706] = { + ["coords"] = { + [1] = { 49.3, 57.2, 17, 900 }, + }, + }, + [91737] = { + ["coords"] = { + [1] = { 45.9, 37.9, 148, 900 }, + }, + }, + [91738] = { + ["coords"] = { + [1] = { 43.1, 58.6, 148, 900 }, + }, + }, + [92011] = { + ["coords"] = { + [1] = { 51.8, 12.2, 1519, 120 }, + }, + }, + [92013] = { + ["coords"] = { + [1] = { 27.8, 72.8, 267, 10 }, + }, + ["fac"] = "AH", + }, + [92015] = { + ["coords"] = { + [1] = { 25.1, 77.4, 1519, 25 }, + }, + ["fac"] = "AH", + }, + [92065] = { + ["coords"] = { + [1] = { 43, 41.5, 4, 900 }, + }, + }, + [92066] = { + ["coords"] = { + [1] = { 47.4, 53.4, 4, 900 }, + }, + }, + [92067] = { + ["coords"] = { + [1] = { 47.7, 53.6, 4, 900 }, + }, + }, + [92098] = { + ["coords"] = { + [1] = { 29.8, 57.2, 3, 900 }, + }, + }, + [92099] = { + ["coords"] = { + [1] = { 62.4, 23.2, 8, 600 }, + }, + }, + [92140] = { + ["coords"] = { + [1] = { 39.1, 31.9, 40, 3600 }, + }, + }, + [92141] = { + ["coords"] = { + [1] = { 35.8, 61.2, 40, 3600 }, + }, + }, + [92142] = { + ["coords"] = { + [1] = { 61, 77.7, 40, 3600 }, + }, + }, + [92143] = { + ["coords"] = { + [1] = { 63.4, 77.3, 40, 3600 }, + }, + }, + [92252] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [92254] = { + ["coords"] = {}, + }, + [92388] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [92419] = { + ["coords"] = { + [1] = { 16.7, 34.2, 10, 3600 }, + }, + }, + [92420] = { + ["coords"] = { + [1] = { 71.6, 21.6, 38, 10 }, + }, + }, + [92423] = { + ["coords"] = { + [1] = { 49, 96.8, 17, 300 }, + [2] = { 43.4, 32.7, 400, 300 }, + }, + ["fac"] = "AH", + }, + [92424] = { + ["coords"] = { + [1] = { 59.4, 67.1, 406, 900 }, + }, + }, + [92425] = { + ["coords"] = {}, + }, + [92426] = { + ["coords"] = { + [1] = { 74.6, 98, 406, 900 }, + }, + }, + [92427] = { + ["coords"] = { + [1] = { 73.6, 95.5, 406, 900 }, + }, + }, + [92458] = { + ["coords"] = { + [1] = { 88.8, 70.7, 44, 7200 }, + }, + }, + [92489] = { + ["coords"] = { + [1] = { 38.2, 40.9, 148, 900 }, + }, + }, + [92490] = { + ["coords"] = { + [1] = { 38.3, 41, 148, 900 }, + }, + }, + [92524] = { + ["coords"] = { + [1] = { 31.6, 52.1, 141, 900 }, + [2] = { 69.4, 24.7, 1657, 900 }, + }, + }, + [92525] = { + ["coords"] = { + [1] = { 28.3, 51.5, 141, 900 }, + [2] = { 53.4, 22, 1657, 900 }, + }, + }, + [92526] = { + ["coords"] = { + [1] = { 28.3, 51.5, 141, 900 }, + [2] = { 53.5, 21.9, 1657, 900 }, + }, + }, + [92527] = { + ["coords"] = { + [1] = { 30.4, 57.8, 141, 900 }, + [2] = { 63.6, 52.4, 1657, 900 }, + }, + }, + [92528] = { + ["coords"] = { + [1] = { 30.4, 57.8, 141, 900 }, + [2] = { 63.5, 52.3, 1657, 900 }, + }, + }, + [92529] = { + ["coords"] = { + [1] = { 29.2, 50.5, 141, 900 }, + [2] = { 57.5, 17.3, 1657, 900 }, + }, + }, + [92530] = { + ["coords"] = { + [1] = { 29.7, 49.2, 141, 900 }, + [2] = { 60.3, 10.9, 1657, 900 }, + }, + }, + [92531] = { + ["coords"] = { + [1] = { 28.6, 65.4, 141, 900 }, + [2] = { 54.8, 88.8, 1657, 900 }, + }, + }, + [92532] = { + ["coords"] = { + [1] = { 28.9, 65.2, 141, 900 }, + [2] = { 56.1, 87.8, 1657, 900 }, + }, + }, + [92533] = { + ["coords"] = { + [1] = { 30.1, 51.9, 141, 900 }, + [2] = { 61.8, 23.9, 1657, 900 }, + }, + }, + [92534] = { + ["coords"] = { + [1] = { 30, 51.9, 141, 900 }, + [2] = { 61.7, 23.9, 1657, 900 }, + }, + }, + [92535] = { + ["coords"] = { + [1] = { 29.8, 51, 141, 900 }, + [2] = { 60.7, 19.6, 1657, 900 }, + }, + }, + [92536] = { + ["coords"] = { + [1] = { 30.3, 50.4, 141, 900 }, + [2] = { 63.1, 16.6, 1657, 900 }, + }, + }, + [92537] = { + ["coords"] = { + [1] = { 28.1, 49.9, 141, 900 }, + [2] = { 52.3, 14.4, 1657, 900 }, + }, + }, + [92538] = { + ["coords"] = { + [1] = { 27.6, 51.1, 141, 900 }, + [2] = { 49.9, 20.2, 1657, 900 }, + }, + }, + [92539] = { + ["coords"] = { + [1] = { 30.2, 58.8, 141, 900 }, + [2] = { 62.5, 56.9, 1657, 900 }, + }, + }, + [92540] = { + ["coords"] = { + [1] = { 30.2, 58.8, 141, 900 }, + [2] = { 62.6, 57, 1657, 900 }, + }, + }, + [92541] = { + ["coords"] = { + [1] = { 31.2, 59.5, 141, 900 }, + [2] = { 67.2, 60.3, 1657, 900 }, + }, + }, + [92542] = { + ["coords"] = { + [1] = { 31.2, 59.5, 141, 900 }, + [2] = { 67.3, 60.4, 1657, 900 }, + }, + }, + [92543] = { + ["coords"] = { + [1] = { 30.5, 61.1, 141, 900 }, + [2] = { 63.7, 68.2, 1657, 900 }, + }, + }, + [92544] = { + ["coords"] = { + [1] = { 29.9, 60.6, 141, 900 }, + [2] = { 61.1, 65.8, 1657, 900 }, + }, + }, + [92545] = { + ["coords"] = { + [1] = { 29.1, 63.5, 141, 900 }, + [2] = { 57, 79.8, 1657, 900 }, + }, + }, + [92546] = { + ["coords"] = { + [1] = { 29.1, 63.5, 141, 900 }, + [2] = { 57, 79.6, 1657, 900 }, + }, + }, + [92547] = { + ["coords"] = { + [1] = { 28.7, 62.7, 141, 900 }, + [2] = { 55.4, 75.8, 1657, 900 }, + }, + }, + [92548] = { + ["coords"] = { + [1] = { 28.7, 62.7, 141, 900 }, + [2] = { 55.3, 75.6, 1657, 900 }, + }, + }, + [92549] = { + ["coords"] = { + [1] = { 29.2, 61.6, 141, 900 }, + [2] = { 57.5, 70.6, 1657, 900 }, + }, + }, + [92550] = { + ["coords"] = { + [1] = { 28.3, 62.8, 141, 900 }, + [2] = { 53.2, 76.2, 1657, 900 }, + }, + }, + [92551] = { + ["coords"] = { + [1] = { 29.2, 61.7, 141, 900 }, + [2] = { 57.5, 70.8, 1657, 900 }, + }, + }, + [92552] = { + ["coords"] = { + [1] = { 30.2, 62.3, 141, 900 }, + [2] = { 62.4, 74, 1657, 900 }, + }, + }, + [92693] = { + ["coords"] = { + [1] = { 31.1, 58, 141, 900 }, + [2] = { 67, 53.2, 1657, 900 }, + }, + }, + [92694] = { + ["coords"] = { + [1] = { 31.1, 58, 141, 900 }, + [2] = { 66.9, 53.1, 1657, 900 }, + }, + }, + [92695] = { + ["coords"] = { + [1] = { 30.5, 61.1, 141, 900 }, + [2] = { 63.8, 68.3, 1657, 900 }, + }, + }, + [92696] = { + ["coords"] = { + [1] = { 29.9, 60.7, 141, 900 }, + [2] = { 61.2, 66, 1657, 900 }, + }, + }, + [92699] = { + ["coords"] = { + [1] = { 31, 51.4, 141, 900 }, + [2] = { 66.6, 21.4, 1657, 900 }, + }, + }, + [92700] = { + ["coords"] = { + [1] = { 31.1, 51.4, 141, 900 }, + [2] = { 66.7, 21.3, 1657, 900 }, + }, + }, + [92703] = { + ["coords"] = { + [1] = { 27.8, 46.5, 44, 7200 }, + }, + }, + [93192] = { + ["coords"] = { + [1] = { 31.5, 31.5, 331, 10 }, + }, + ["fac"] = "AH", + }, + [94039] = { + ["coords"] = {}, + }, + [94040] = { + ["coords"] = {}, + }, + [94183] = { + ["coords"] = { + [1] = { 25.5, 9.1, 33, 900 }, + }, + }, + [94184] = { + ["coords"] = { + [1] = { 24, 9.7, 33, 900 }, + }, + }, + [94185] = { + ["coords"] = { + [1] = { 29.8, 19.3, 33, 900 }, + }, + }, + [94186] = { + ["coords"] = { + [1] = { 32, 28.5, 33, 900 }, + }, + }, + [94187] = { + ["coords"] = { + [1] = { 46.4, 39, 33, 900 }, + }, + }, + [94188] = { + ["coords"] = { + [1] = { 44.6, 43.2, 33, 900 }, + }, + }, + [94189] = { + ["coords"] = { + [1] = { 24.4, 53.9, 33, 900 }, + }, + }, + [94190] = { + ["coords"] = { + [1] = { 34.9, 51.8, 33, 900 }, + }, + }, + [94191] = { + ["coords"] = { + [1] = { 39.5, 58.7, 33, 900 }, + }, + }, + [95449] = { + ["coords"] = { + [1] = { 30.2, 62.3, 141, 900 }, + [2] = { 62.4, 74.1, 1657, 900 }, + }, + }, + [97700] = { + ["coords"] = {}, + }, + [97701] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [97801] = { + ["coords"] = {}, + }, + [97802] = { + ["coords"] = {}, + }, + [97803] = { + ["coords"] = {}, + }, + [98343] = { + ["coords"] = { + [1] = { 60.4, 35.3, 1497, 900 }, + }, + }, + [98347] = { + ["coords"] = { + [1] = { 59.8, 44.2, 1497, 900 }, + }, + }, + [98348] = { + ["coords"] = { + [1] = { 66.1, 53.2, 1497, 900 }, + }, + }, + [98349] = { + ["coords"] = { + [1] = { 60.3, 35.5, 1497, 900 }, + }, + }, + [98350] = { + ["coords"] = { + [1] = { 59.8, 43.8, 1497, 900 }, + }, + }, + [98351] = { + ["coords"] = { + [1] = { 72.2, 44.2, 1497, 900 }, + }, + }, + [98354] = { + ["coords"] = { + [1] = { 60.6, 52.5, 1497, 900 }, + }, + }, + [100028] = { + ["coords"] = { + [1] = { 53.9, 80.2, 215, 900 }, + }, + }, + [100035] = { + ["coords"] = {}, + }, + [101748] = { + ["coords"] = { + [1] = { 38.1, 58.5, 14, 900 }, + [2] = { 65.1, 27.6, 17, 900 }, + }, + }, + [101749] = { + ["coords"] = { + [1] = { 44.1, 76.4, 14, 900 }, + [2] = { 68.3, 36.9, 17, 900 }, + }, + }, + [101750] = { + ["coords"] = { + [1] = { 37.8, 44.3, 130, 7200 }, + }, + }, + [101751] = { + ["coords"] = { + [1] = { 60.5, 50.2, 400, 180 }, + }, + }, + [101766] = { + ["coords"] = {}, + }, + [101767] = { + ["coords"] = {}, + }, + [101768] = { + ["coords"] = {}, + }, + [101769] = { + ["coords"] = {}, + }, + [101770] = { + ["coords"] = {}, + }, + [101771] = { + ["coords"] = {}, + }, + [101772] = { + ["coords"] = {}, + }, + [101773] = { + ["coords"] = {}, + }, + [101774] = { + ["coords"] = {}, + }, + [101775] = { + ["coords"] = {}, + }, + [101776] = { + ["coords"] = {}, + }, + [101777] = { + ["coords"] = {}, + }, + [101778] = { + ["coords"] = {}, + }, + [101779] = { + ["coords"] = {}, + }, + [101811] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [101812] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [101831] = { + ["coords"] = {}, + }, + [101832] = { + ["coords"] = {}, + }, + [101833] = { + ["coords"] = {}, + }, + [101834] = { + ["coords"] = {}, + }, + [101835] = { + ["coords"] = { + [1] = { 85.1, 80.6, 36, 7200 }, + [2] = { 0.7, 57.3, 47, 7200 }, + [3] = { 83.3, 18.9, 267, 7200 }, + }, + }, + [101836] = { + ["coords"] = { + [1] = { 85.1, 80.1, 36, 7200 }, + [2] = { 0.7, 57, 47, 7200 }, + [3] = { 83.4, 18.6, 267, 7200 }, + }, + }, + [101837] = { + ["coords"] = { + [1] = { 84.8, 80.4, 36, 7200 }, + [2] = { 83.1, 18.8, 267, 7200 }, + }, + }, + [101838] = { + ["coords"] = { + [1] = { 86, 79.2, 36, 7200 }, + [2] = { 1.3, 56.3, 47, 7200 }, + [3] = { 84.1, 17.7, 267, 7200 }, + }, + }, + [101839] = { + ["coords"] = { + [1] = { 86.1, 79.1, 36, 7200 }, + [2] = { 1.4, 56.2, 47, 7200 }, + [3] = { 84.2, 17.6, 267, 7200 }, + }, + }, + [101840] = { + ["coords"] = { + [1] = { 86.1, 79.2, 36, 7200 }, + [2] = { 1.3, 56.3, 47, 7200 }, + [3] = { 84.2, 17.7, 267, 7200 }, + }, + }, + [101841] = { + ["coords"] = { + [1] = { 85.8, 79.1, 36, 7200 }, + [2] = { 1.2, 56.2, 47, 7200 }, + [3] = { 84, 17.6, 267, 7200 }, + }, + }, + [101842] = { + ["coords"] = { + [1] = { 86, 79, 36, 7200 }, + [2] = { 1.3, 56.1, 47, 7200 }, + [3] = { 84.1, 17.5, 267, 7200 }, + }, + }, + [101843] = { + ["coords"] = { + [1] = { 86, 78.9, 36, 180 }, + [2] = { 1.3, 56, 47, 180 }, + [3] = { 84.1, 17.4, 267, 180 }, + }, + }, + [101844] = { + ["coords"] = { + [1] = { 86.1, 79, 36, 7200 }, + [2] = { 1.3, 56.1, 47, 7200 }, + [3] = { 84.2, 17.5, 267, 7200 }, + }, + }, + [101845] = { + ["coords"] = { + [1] = { 85.9, 79.1, 36, 7200 }, + [2] = { 1.2, 56.2, 47, 7200 }, + [3] = { 84.1, 17.6, 267, 7200 }, + }, + }, + [101846] = { + ["coords"] = { + [1] = { 86.2, 79.1, 36, 7200 }, + [2] = { 1.5, 56.2, 47, 7200 }, + [3] = { 84.3, 17.6, 267, 7200 }, + }, + }, + [101847] = { + ["coords"] = { + [1] = { 86.2, 78.9, 36, 7200 }, + [2] = { 1.4, 56.1, 47, 7200 }, + [3] = { 84.3, 17.5, 267, 7200 }, + }, + }, + [101848] = { + ["coords"] = { + [1] = { 85.9, 78.9, 36, 7200 }, + [2] = { 1.2, 56.1, 47, 7200 }, + [3] = { 84, 17.5, 267, 7200 }, + }, + }, + [101849] = { + ["coords"] = { + [1] = { 86.1, 78.8, 36, 7200 }, + [2] = { 1.3, 56, 47, 7200 }, + [3] = { 84.2, 17.4, 267, 7200 }, + }, + }, + [101850] = { + ["coords"] = { + [1] = { 85.2, 30.8, 85, 900 }, + }, + }, + [101851] = { + ["coords"] = { + [1] = { 28.9, 16.8, 28, 900 }, + [2] = { 85.4, 31.6, 85, 900 }, + }, + }, + [101852] = { + ["coords"] = { + [1] = { 28.9, 16.7, 28, 900 }, + [2] = { 85.4, 31.5, 85, 900 }, + }, + }, + [101853] = { + ["coords"] = { + [1] = { 85.2, 30.8, 85, 900 }, + }, + }, + [101854] = { + ["coords"] = {}, + }, + [101855] = { + ["coords"] = {}, + }, + [102413] = { + ["coords"] = { + [1] = { 52.5, 37.1, 1, 0 }, + }, + }, + [102984] = { + ["coords"] = { + [1] = { 27.7, 36.4, 1, 0 }, + }, + }, + [102985] = { + ["coords"] = { + [1] = { 20.7, 48.7, 28, 10 }, + [2] = { 20.5, 48.7, 28, 10 }, + [3] = { 20.5, 48.5, 28, 10 }, + [4] = { 20.7, 48.5, 28, 10 }, + [5] = { 77.6, 62, 85, 10 }, + [6] = { 77.4, 62, 85, 10 }, + [7] = { 77.4, 61.8, 85, 10 }, + [8] = { 77.6, 61.8, 85, 10 }, + }, + }, + [102986] = { + ["coords"] = { + [1] = { 67, 87.8, 14, 30 }, + [2] = { 67.1, 86.4, 14, 30 }, + [3] = { 68.5, 84.2, 14, 30 }, + [4] = { 67.8, 83.4, 14, 30 }, + [5] = { 68.4, 83.3, 14, 30 }, + [6] = { 67.4, 82.5, 14, 30 }, + [7] = { 68.4, 82.3, 14, 30 }, + [8] = { 80.2, 42.9, 17, 30 }, + [9] = { 80.3, 42.2, 17, 30 }, + [10] = { 81, 41, 17, 30 }, + [11] = { 80.6, 40.6, 17, 30 }, + [12] = { 81, 40.6, 17, 30 }, + }, + }, + [102988] = { + ["coords"] = { + [1] = { 70.3, 43.8, 3, 900 }, + }, + }, + [102989] = { + ["coords"] = { + [1] = { 66.1, 45.1, 3, 900 }, + }, + }, + [102990] = { + ["coords"] = { + [1] = { 67.7, 44.9, 3, 900 }, + }, + }, + [102991] = { + ["coords"] = { + [1] = { 70.3, 42, 3, 900 }, + }, + }, + [102992] = { + ["coords"] = { + [1] = { 70.4, 41.9, 3, 900 }, + }, + }, + [102993] = { + ["coords"] = { + [1] = { 70.1, 43.9, 3, 900 }, + }, + }, + [102994] = { + ["coords"] = { + [1] = { 70.5, 41.9, 3, 900 }, + }, + }, + [102995] = { + ["coords"] = { + [1] = { 69.6, 42.4, 3, 900 }, + }, + }, + [102996] = { + ["coords"] = { + [1] = { 67.9, 45, 3, 900 }, + }, + }, + [102997] = { + ["coords"] = { + [1] = { 69.5, 42.3, 3, 900 }, + }, + }, + [102998] = { + ["coords"] = { + [1] = { 69.5, 42.2, 3, 900 }, + }, + }, + [102999] = { + ["coords"] = { + [1] = { 67.6, 43.6, 3, 900 }, + }, + }, + [103000] = { + ["coords"] = { + [1] = { 67.6, 43.6, 3, 900 }, + }, + }, + [103001] = { + ["coords"] = { + [1] = { 65.9, 43.7, 3, 900 }, + }, + }, + [103002] = { + ["coords"] = { + [1] = { 66.2, 45, 3, 900 }, + }, + }, + [103003] = { + ["coords"] = { + [1] = { 70.4, 42, 3, 900 }, + }, + }, + [103004] = { + ["coords"] = { + [1] = { 66.1, 45.2, 3, 900 }, + }, + }, + [103005] = { + ["coords"] = {}, + }, + [103006] = { + ["coords"] = {}, + }, + [103007] = { + ["coords"] = {}, + }, + [103009] = { + ["coords"] = {}, + }, + [103010] = { + ["coords"] = {}, + }, + [103011] = { + ["coords"] = {}, + }, + [103012] = { + ["coords"] = {}, + }, + [103015] = { + ["coords"] = {}, + }, + [103016] = { + ["coords"] = {}, + }, + [103574] = { + ["coords"] = {}, + }, + [103575] = { + ["coords"] = {}, + }, + [103600] = { + ["coords"] = { + [1] = { 55.4, 77, 1497, 10 }, + }, + }, + [103628] = { + ["coords"] = { + [1] = { 78.9, 47.6, 44, 10 }, + }, + }, + [103660] = { + ["coords"] = { + [1] = { 52, 50.7, 45, 180 }, + }, + }, + [103661] = { + ["coords"] = {}, + }, + [103662] = { + ["coords"] = { + [1] = { 52, 50.7, 45, 0 }, + }, + }, + [103663] = { + ["coords"] = { + [1] = { 79.3, 66.8, 36, 7200 }, + [2] = { 78.3, 6.9, 267, 7200 }, + }, + }, + [103664] = { + ["coords"] = {}, + }, + [103680] = { + ["coords"] = { + [1] = { 45.9, 56.7, 15, 0 }, + }, + }, + [103687] = { + ["coords"] = { + [1] = { 37.5, 41.7, 148, 900 }, + }, + }, + [103694] = { + ["coords"] = { + [1] = { 35.2, 58.9, 45, 7200 }, + }, + }, + [103695] = { + ["coords"] = { + [1] = { 35.6, 59.7, 45, 7200 }, + }, + }, + [103708] = { + ["coords"] = { + [1] = { 51.7, 74.2, 1497, 180 }, + [2] = { 54.2, 73.2, 1497, 180 }, + [3] = { 40.8, 88.8, 1519, 180 }, + }, + }, + [103711] = { + ["coords"] = { + [1] = { 48.3, 86.4, 17, 300 }, + [2] = { 48.5, 86.1, 17, 300 }, + [3] = { 47.6, 86.1, 17, 300 }, + [4] = { 47.9, 86.1, 17, 300 }, + [5] = { 47.5, 85.9, 17, 300 }, + [6] = { 48.3, 85.9, 17, 300 }, + [7] = { 47.3, 85.9, 17, 300 }, + [8] = { 47.2, 85.4, 17, 300 }, + [9] = { 47.1, 85.1, 17, 300 }, + [10] = { 48, 84.9, 17, 300 }, + [11] = { 47.9, 84.8, 17, 300 }, + [12] = { 46.8, 84.5, 17, 300 }, + [13] = { 47.5, 84.2, 17, 300 }, + [14] = { 47.1, 84, 17, 300 }, + [15] = { 47.4, 84, 17, 300 }, + [16] = { 30.8, 58, 267, 300 }, + [17] = { 27, 57.9, 267, 300 }, + [18] = { 27.6, 57.4, 267, 300 }, + [19] = { 28.4, 57.2, 267, 300 }, + [20] = { 28.2, 57, 267, 300 }, + [21] = { 31.4, 56.9, 267, 300 }, + [22] = { 30.1, 56.4, 267, 300 }, + [23] = { 27.7, 56.1, 267, 300 }, + [24] = { 28.7, 55.8, 267, 300 }, + [25] = { 32.2, 55.6, 267, 300 }, + [26] = { 28.4, 55, 267, 300 }, + [27] = { 29.6, 55, 267, 300 }, + [28] = { 31.4, 54, 267, 300 }, + [29] = { 32, 53.3, 267, 300 }, + [30] = { 30.4, 53, 267, 300 }, + [31] = { 31.8, 51.6, 267, 300 }, + [32] = { 28.1, 51, 267, 300 }, + }, + }, + [103713] = { + ["coords"] = { + [1] = { 48.3, 86.4, 17, 300 }, + [2] = { 48.5, 86.1, 17, 300 }, + [3] = { 47.6, 86.1, 17, 300 }, + [4] = { 47.9, 86.1, 17, 300 }, + [5] = { 47.5, 85.9, 17, 300 }, + [6] = { 48.3, 85.9, 17, 300 }, + [7] = { 47.3, 85.9, 17, 300 }, + [8] = { 47.2, 85.4, 17, 300 }, + [9] = { 47.1, 85.1, 17, 300 }, + [10] = { 48, 84.9, 17, 300 }, + [11] = { 47.9, 84.8, 17, 300 }, + [12] = { 46.8, 84.5, 17, 300 }, + [13] = { 47.5, 84.2, 17, 300 }, + [14] = { 47.1, 84, 17, 300 }, + [15] = { 47.4, 84, 17, 300 }, + }, + }, + [103727] = { + ["coords"] = { + [1] = { 25.2, 89.1, 12, 900 }, + [2] = { 67.3, 25.8, 40, 900 }, + }, + }, + [103728] = { + ["coords"] = { + [1] = { 26.4, 86.8, 12, 900 }, + }, + }, + [103729] = { + ["coords"] = { + [1] = { 27.6, 86.2, 12, 900 }, + }, + }, + [103748] = { + ["coords"] = { + [1] = { 46.1, 47.4, 45, 7200 }, + }, + }, + [103749] = { + ["coords"] = { + [1] = { 63.2, 67.4, 45, 7200 }, + }, + }, + [103750] = { + ["coords"] = { + [1] = { 64.8, 73.2, 45, 7200 }, + }, + }, + [103751] = { + ["coords"] = { + [1] = { 53.2, 74.3, 45, 7200 }, + }, + }, + [103770] = { + ["coords"] = { + [1] = { 34, 80.6, 45, 7200 }, + }, + }, + [103771] = { + ["coords"] = { + [1] = { 31.8, 83.1, 45, 7200 }, + }, + }, + [103772] = { + ["coords"] = { + [1] = { 35.2, 81, 45, 7200 }, + }, + }, + [103773] = { + ["coords"] = { + [1] = { 53.8, 76.1, 45, 7200 }, + }, + }, + [103774] = { + ["coords"] = {}, + }, + [103793] = { + ["coords"] = { + [1] = { 48.4, 62.7, 1519, 900 }, + }, + }, + [103794] = { + ["coords"] = { + [1] = { 31.5, 61, 1519, 180 }, + }, + }, + [103795] = { + ["coords"] = { + [1] = { 59.7, 58.2, 1519, 900 }, + }, + }, + [103796] = { + ["coords"] = { + [1] = { 53.8, 25.6, 1519, 120 }, + }, + }, + [103797] = { + ["coords"] = { + [1] = { 22.4, 64.3, 1519, 180 }, + }, + }, + [103798] = { + ["coords"] = { + [1] = { 23.4, 64.6, 1519, 120 }, + }, + }, + [103799] = { + ["coords"] = { + [1] = { 22.4, 64.8, 1519, 180 }, + }, + }, + [103800] = { + ["coords"] = { + [1] = { 22, 63.1, 1519, 120 }, + }, + }, + [103801] = { + ["coords"] = { + [1] = { 22, 63.3, 1519, 120 }, + }, + }, + [103802] = { + ["coords"] = { + [1] = { 73.5, 36, 1519, 900 }, + }, + }, + [103811] = { + ["coords"] = { + [1] = { 37.6, 80.2, 1519, 120 }, + }, + }, + [103812] = { + ["coords"] = { + [1] = { 37.9, 80.1, 1519, 120 }, + }, + }, + [103813] = { + ["coords"] = {}, + }, + [103815] = { + ["coords"] = { + [1] = { 63.7, 65.2, 130, 10 }, + [2] = { 9.1, 26.3, 267, 10 }, + }, + ["fac"] = "H", + }, + [103819] = { + ["coords"] = { + [1] = { 49.7, 9.8, 618, 180 }, + }, + }, + [103820] = { + ["coords"] = {}, + }, + [103821] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [104555] = { + ["coords"] = { + [1] = { 56.3, 74.4, 14, 900 }, + }, + }, + [104564] = { + ["coords"] = { + [1] = { 48.7, 30.1, 38, 5 }, + }, + }, + [104569] = { + ["coords"] = { + [1] = { 48.4, 20.5, 38, 5 }, + }, + }, + [104574] = { + ["coords"] = { + [1] = { 51.8, 24.1, 38, 5 }, + }, + }, + [104575] = { + ["coords"] = { + [1] = { 54.2, 26.6, 38, 5 }, + }, + }, + [104589] = { + ["coords"] = {}, + }, + [104591] = { + ["coords"] = {}, + }, + [104592] = { + ["coords"] = {}, + }, + [104593] = { + ["coords"] = { + [1] = { 59.2, 48.5, 85, 900 }, + }, + }, + [104600] = { + ["coords"] = {}, + }, + [105168] = { + ["coords"] = {}, + }, + [105169] = { + ["coords"] = { + [1] = { 52.7, 25.9, 85, 10 }, + }, + }, + [105170] = { + ["coords"] = { + [1] = { 51.7, 25.7, 85, 300 }, + }, + }, + [105171] = { + ["coords"] = { + [1] = { 51.9, 27.1, 85, 300 }, + }, + }, + [105172] = { + ["coords"] = { + [1] = { 52.7, 27, 85, 300 }, + }, + }, + [105173] = { + ["coords"] = {}, + }, + [105174] = { + ["coords"] = { + [1] = { 66, 67.2, 85, 10 }, + [2] = { 85.5, 10, 1497, 10 }, + [3] = { 85.6, 9.9, 1497, 10 }, + [4] = { 85.7, 9.9, 1497, 10 }, + [5] = { 85.5, 9.9, 1497, 10 }, + [6] = { 38.6, 79, 1519, 10 }, + [7] = { 38.5, 79, 1519, 10 }, + [8] = { 38.5, 78.9, 1519, 10 }, + }, + }, + [105175] = { + ["coords"] = { + [1] = { 66, 67.2, 85, 10 }, + [2] = { 85.6, 10.2, 1497, 10 }, + [3] = { 85.7, 10.1, 1497, 10 }, + [4] = { 85.8, 10.1, 1497, 10 }, + [5] = { 38.7, 78.8, 1519, 10 }, + [6] = { 38.7, 78.7, 1519, 10 }, + }, + }, + [105176] = { + ["coords"] = { + [1] = { 61.8, 3.9, 17, 10 }, + }, + ["fac"] = "H", + }, + [105188] = { + ["coords"] = { + [1] = { 59.2, 64.8, 1519, 900 }, + }, + }, + [105568] = { + ["coords"] = { + [1] = { 54.3, 53.6, 40, 900 }, + [2] = { 54.3, 53.5, 40, 3600 }, + [3] = { 54.5, 53.2, 40, 900 }, + }, + }, + [105569] = { + ["coords"] = { + [1] = { 48.3, 86.4, 17, 300 }, + [2] = { 48.5, 86.1, 17, 300 }, + [3] = { 47.6, 86.1, 17, 300 }, + [4] = { 47.9, 86.1, 17, 300 }, + [5] = { 47.5, 85.9, 17, 300 }, + [6] = { 48.3, 85.9, 17, 300 }, + [7] = { 47.3, 85.9, 17, 300 }, + [8] = { 47.2, 85.4, 17, 300 }, + [9] = { 47.1, 85.1, 17, 300 }, + [10] = { 48, 84.9, 17, 300 }, + [11] = { 47.9, 84.8, 17, 300 }, + [12] = { 46.8, 84.5, 17, 300 }, + [13] = { 47.5, 84.2, 17, 300 }, + [14] = { 47.1, 84, 17, 300 }, + [15] = { 47.4, 84, 17, 300 }, + [16] = { 30.8, 58, 267, 300 }, + [17] = { 27, 57.9, 267, 300 }, + [18] = { 27.6, 57.4, 267, 300 }, + [19] = { 28.4, 57.2, 267, 300 }, + [20] = { 28.2, 57, 267, 300 }, + [21] = { 31.4, 56.9, 267, 300 }, + [22] = { 30.1, 56.4, 267, 300 }, + [23] = { 27.7, 56.1, 267, 300 }, + [24] = { 28.7, 55.8, 267, 300 }, + [25] = { 32.2, 55.6, 267, 300 }, + [26] = { 28.4, 55, 267, 300 }, + [27] = { 29.6, 55, 267, 300 }, + [28] = { 31.4, 54, 267, 300 }, + [29] = { 32, 53.3, 267, 300 }, + [30] = { 30.4, 53, 267, 300 }, + [31] = { 31.8, 51.6, 267, 300 }, + [32] = { 28.1, 51, 267, 300 }, + }, + }, + [105570] = { + ["coords"] = { + [1] = { 12.4, 79.4, 36, 300 }, + [2] = { 18.1, 77.2, 36, 300 }, + [3] = { 14.8, 75.2, 36, 300 }, + [4] = { 11.8, 73.8, 36, 300 }, + [5] = { 21.3, 62.4, 36, 300 }, + [6] = { 21.6, 59.5, 36, 300 }, + [7] = { 20.1, 57.6, 36, 300 }, + [8] = { 17.7, 56.6, 36, 300 }, + [9] = { 71.3, 55.2, 130, 300 }, + [10] = { 19.7, 17.9, 267, 300 }, + [11] = { 24.7, 16, 267, 300 }, + [12] = { 21.8, 14.2, 267, 300 }, + [13] = { 19.1, 13, 267, 300 }, + }, + }, + [105576] = { + ["coords"] = { + [1] = { 49.4, 50, 1637, 900 }, + }, + ["fac"] = "AH", + }, + [105578] = { + ["coords"] = { + [1] = { 60.2, 58.7, 45, 300 }, + [2] = { 62.7, 56.4, 45, 300 }, + [3] = { 60.1, 55.9, 45, 300 }, + [4] = { 61.5, 55.5, 45, 300 }, + }, + }, + [105579] = { + ["coords"] = { + [1] = { 12.4, 79.4, 36, 300 }, + [2] = { 18.1, 77.2, 36, 300 }, + [3] = { 14.8, 75.2, 36, 300 }, + [4] = { 11.8, 73.8, 36, 300 }, + [5] = { 21.3, 62.4, 36, 300 }, + [6] = { 21.6, 59.5, 36, 300 }, + [7] = { 20.1, 57.6, 36, 300 }, + [8] = { 17.7, 56.6, 36, 300 }, + [9] = { 57.1, 40.5, 45, 300 }, + [10] = { 57.4, 39.7, 45, 300 }, + [11] = { 54, 38.1, 45, 300 }, + [12] = { 56.4, 36.4, 45, 300 }, + [13] = { 71.3, 55.2, 130, 300 }, + [14] = { 19.7, 17.9, 267, 300 }, + [15] = { 24.7, 16, 267, 300 }, + [16] = { 21.8, 14.2, 267, 300 }, + [17] = { 19.1, 13, 267, 300 }, + }, + }, + [105581] = { + ["coords"] = { + [1] = { 22.6, 63.6, 45, 300 }, + [2] = { 21.6, 61.2, 45, 300 }, + [3] = { 24.6, 58.8, 45, 300 }, + [4] = { 22.9, 57.4, 45, 300 }, + }, + }, + [106318] = { + ["coords"] = { + [1] = { 74.6, 61.8, 1, 300 }, + [2] = { 67.5, 60.6, 1, 300 }, + [3] = { 69, 59.3, 1, 300 }, + [4] = { 71.1, 59, 1, 300 }, + [5] = { 79.3, 58.6, 1, 300 }, + [6] = { 76, 58.2, 1, 300 }, + [7] = { 74.7, 56.5, 1, 300 }, + [8] = { 79.7, 54.6, 1, 300 }, + [9] = { 23.2, 54.3, 1, 300 }, + [10] = { 73, 53.5, 1, 300 }, + [11] = { 23.5, 52.5, 1, 300 }, + [12] = { 71.9, 52.1, 1, 300 }, + [13] = { 71.7, 51.8, 1, 300 }, + [14] = { 26, 51.1, 1, 300 }, + [15] = { 71.2, 50.5, 1, 300 }, + [16] = { 72.1, 49.8, 1, 300 }, + [17] = { 43.5, 49.2, 1, 300 }, + [18] = { 40.9, 48.8, 1, 300 }, + [19] = { 41, 48.8, 1, 300 }, + [20] = { 40.1, 48, 1, 300 }, + [21] = { 42.8, 47.1, 1, 300 }, + [22] = { 39.2, 46.6, 1, 300 }, + [23] = { 41.4, 44.4, 1, 300 }, + [24] = { 38.7, 43.3, 1, 300 }, + [25] = { 26.1, 41.2, 1, 300 }, + [26] = { 36.1, 40.1, 1, 300 }, + [27] = { 26.8, 36.4, 1, 300 }, + [28] = { 42, 35.9, 1, 300 }, + [29] = { 24.4, 93.5, 12, 300 }, + [30] = { 26, 92.1, 12, 300 }, + [31] = { 27.8, 88.3, 12, 300 }, + [32] = { 48.7, 87.9, 12, 300 }, + [33] = { 47.9, 87.1, 12, 300 }, + [34] = { 47.6, 86.5, 12, 300 }, + [35] = { 76.5, 86.4, 12, 300 }, + [36] = { 76.4, 85.8, 12, 300 }, + [37] = { 77.2, 85.3, 12, 300 }, + [38] = { 75.5, 85.3, 12, 300 }, + [39] = { 37.8, 83.2, 12, 300 }, + [40] = { 38.3, 82, 12, 300 }, + [41] = { 41.7, 81.6, 12, 300 }, + [42] = { 71.2, 80.6, 12, 300 }, + [43] = { 41.9, 77.9, 12, 300 }, + [44] = { 71.2, 77.8, 12, 300 }, + [45] = { 40.8, 77.6, 12, 300 }, + [46] = { 40.3, 77.5, 12, 300 }, + [47] = { 71.4, 76.6, 12, 300 }, + [48] = { 55.7, 67.1, 12, 300 }, + [49] = { 54.3, 66.7, 12, 300 }, + [50] = { 56.7, 66.7, 12, 300 }, + [51] = { 36.1, 65.7, 12, 300 }, + [52] = { 30.7, 64.7, 12, 300 }, + [53] = { 52.4, 58.9, 12, 300 }, + [54] = { 78.2, 57.4, 12, 300 }, + [55] = { 64.8, 57.2, 12, 300 }, + [56] = { 79.4, 57, 12, 300 }, + [57] = { 65, 56.2, 12, 300 }, + [58] = { 79.6, 55.1, 12, 300 }, + [59] = { 79.4, 54.6, 12, 300 }, + [60] = { 41.6, 52.7, 12, 300 }, + [61] = { 74, 50.1, 12, 300 }, + [62] = { 61.1, 49, 12, 300 }, + [63] = { 62.3, 48, 12, 300 }, + [64] = { 61.7, 46.8, 12, 300 }, + [65] = { 64.9, 41.3, 12, 300 }, + [66] = { 66.2, 40.7, 12, 300 }, + [67] = { 67.1, 86.7, 14, 300 }, + [68] = { 67.1, 83.3, 14, 300 }, + [69] = { 49.7, 80.8, 14, 300 }, + [70] = { 47.8, 77.1, 14, 300 }, + [71] = { 62.5, 60.6, 14, 300 }, + [72] = { 59.9, 58.8, 14, 300 }, + [73] = { 57.8, 58.7, 14, 300 }, + [74] = { 59.5, 58.1, 14, 300 }, + [75] = { 63.2, 56.8, 14, 300 }, + [76] = { 59.6, 56.2, 14, 300 }, + [77] = { 62.1, 55.8, 14, 300 }, + [78] = { 39.4, 53.8, 14, 300 }, + [79] = { 64.5, 53.1, 14, 300 }, + [80] = { 61.8, 51.1, 14, 300 }, + [81] = { 43.7, 50.7, 14, 300 }, + [82] = { 47.1, 49.8, 14, 300 }, + [83] = { 49, 48.6, 14, 300 }, + [84] = { 49.1, 48, 14, 300 }, + [85] = { 43.3, 39.3, 14, 300 }, + [86] = { 43.8, 39.2, 14, 300 }, + [87] = { 42.6, 38.8, 14, 300 }, + [88] = { 43.6, 35.6, 14, 300 }, + [89] = { 47.4, 31, 14, 300 }, + [90] = { 40.8, 30.5, 14, 300 }, + [91] = { 53.8, 28.3, 14, 300 }, + [92] = { 42.1, 27.1, 14, 300 }, + [93] = { 42.5, 27, 14, 300 }, + [94] = { 53.2, 26.9, 14, 300 }, + [95] = { 52.5, 26.4, 14, 300 }, + [96] = { 50.8, 25.9, 14, 300 }, + [97] = { 52.8, 25.5, 14, 300 }, + [98] = { 53, 24.9, 14, 300 }, + [99] = { 49.6, 24.3, 14, 300 }, + [100] = { 53.2, 24.1, 14, 300 }, + [101] = { 44.1, 24, 14, 300 }, + [102] = { 51.2, 23.6, 14, 300 }, + [103] = { 54.1, 22.2, 14, 300 }, + [104] = { 51.2, 21, 14, 300 }, + [105] = { 51.9, 19.9, 14, 300 }, + [106] = { 51.2, 18.9, 14, 300 }, + [107] = { 51.4, 10.8, 14, 300 }, + [108] = { 52.2, 10.4, 14, 300 }, + [109] = { 51.5, 9.9, 14, 300 }, + [110] = { 52.6, 9.4, 14, 300 }, + [111] = { 52.5, 9.2, 14, 300 }, + [112] = { 52.8, 9.1, 14, 300 }, + [113] = { 52.7, 7.4, 14, 300 }, + [114] = { 39.6, 62.7, 17, 300 }, + [115] = { 36.3, 52.4, 17, 300 }, + [116] = { 36, 52.3, 17, 300 }, + [117] = { 36.7, 51.8, 17, 300 }, + [118] = { 37.9, 48.7, 17, 300 }, + [119] = { 36.6, 47.1, 17, 300 }, + [120] = { 80.3, 42.3, 17, 300 }, + [121] = { 80.2, 40.6, 17, 300 }, + [122] = { 33.6, 36.1, 17, 300 }, + [123] = { 34.4, 35.4, 17, 300 }, + [124] = { 32.6, 32.6, 17, 300 }, + [125] = { 51, 67.4, 85, 300 }, + [126] = { 77.2, 59.8, 85, 300 }, + [127] = { 78.4, 55.8, 85, 300 }, + [128] = { 37.9, 49.6, 85, 300 }, + [129] = { 31.6, 46.1, 85, 300 }, + [130] = { 49.8, 42.7, 85, 300 }, + [131] = { 34.7, 41, 85, 300 }, + [132] = { 49.7, 35.7, 85, 300 }, + [133] = { 49.2, 33.6, 85, 300 }, + [134] = { 57.9, 32.9, 85, 300 }, + [135] = { 58.8, 30.7, 85, 300 }, + [136] = { 58.9, 26.9, 85, 300 }, + [137] = { 72.8, 25.8, 85, 300 }, + [138] = { 67.1, 25.8, 85, 300 }, + [139] = { 48, 78, 141, 300 }, + [140] = { 47.2, 77.9, 141, 300 }, + [141] = { 65.8, 64.8, 141, 300 }, + [142] = { 66, 63.6, 141, 300 }, + [143] = { 50, 62.9, 141, 300 }, + [144] = { 44, 61.9, 141, 300 }, + [145] = { 45, 61.2, 141, 300 }, + [146] = { 44.5, 60.6, 141, 300 }, + [147] = { 43.9, 59.8, 141, 300 }, + [148] = { 44.8, 58.9, 141, 300 }, + [149] = { 68.7, 52, 141, 300 }, + [150] = { 52, 51.4, 141, 300 }, + [151] = { 51.7, 50, 141, 300 }, + [152] = { 37.4, 41.6, 141, 300 }, + [153] = { 35.6, 38.9, 141, 300 }, + [154] = { 36.3, 37.8, 141, 300 }, + [155] = { 33.9, 35.7, 141, 300 }, + [156] = { 35.3, 34.7, 141, 300 }, + [157] = { 34.2, 34.4, 141, 300 }, + [158] = { 31.4, 31.8, 141, 300 }, + [159] = { 33.2, 28.5, 141, 300 }, + [160] = { 34.2, 28.1, 141, 300 }, + [161] = { 36.3, 27.7, 141, 300 }, + [162] = { 53.6, 73.3, 215, 300 }, + [163] = { 53.3, 73.1, 215, 300 }, + [164] = { 48.3, 72.3, 215, 300 }, + [165] = { 48.5, 72.1, 215, 300 }, + [166] = { 63, 71.4, 215, 300 }, + [167] = { 65.6, 69.2, 215, 300 }, + [168] = { 64.2, 69, 215, 300 }, + [169] = { 66.9, 68.7, 215, 300 }, + [170] = { 31.3, 63.4, 215, 300 }, + [171] = { 35.5, 62.5, 215, 300 }, + [172] = { 35.3, 62.2, 215, 300 }, + [173] = { 31, 60.7, 215, 300 }, + [174] = { 53.8, 48.4, 215, 300 }, + [175] = { 60.3, 48.2, 215, 300 }, + [176] = { 53.3, 48.2, 215, 300 }, + [177] = { 59.9, 48.1, 215, 300 }, + [178] = { 53.7, 47.9, 215, 300 }, + [179] = { 33.2, 47.4, 215, 300 }, + [180] = { 33, 47.3, 215, 300 }, + [181] = { 61.2, 47.2, 215, 300 }, + [182] = { 31.7, 42.7, 215, 300 }, + [183] = { 31.4, 41.9, 215, 300 }, + [184] = { 63.6, 41.1, 215, 300 }, + [185] = { 60.9, 37.8, 215, 300 }, + [186] = { 29.6, 25.9, 215, 300 }, + [187] = { 28.4, 21.2, 215, 300 }, + [188] = { 40.6, 16.2, 215, 300 }, + [189] = { 55.1, 16.1, 215, 300 }, + [190] = { 40.1, 15.3, 215, 300 }, + [191] = { 56.7, 14.8, 215, 300 }, + [192] = { 36.7, 12.9, 215, 300 }, + [193] = { 36.1, 11.2, 215, 300 }, + [194] = { 53.1, 9.3, 215, 300 }, + [195] = { 38.4, 8, 215, 300 }, + [196] = { 86.6, 78.3, 405, 300 }, + [197] = { 86.3, 78.2, 405, 300 }, + [198] = { 84.8, 73, 405, 300 }, + [199] = { 84.5, 72.1, 405, 300 }, + [200] = { 82.4, 53.8, 405, 300 }, + [201] = { 81, 48.4, 405, 300 }, + }, + }, + [106319] = { + ["coords"] = { + [1] = { 62.8, 49.6, 17, 300 }, + [2] = { 63.7, 49.2, 17, 300 }, + [3] = { 64.3, 47.3, 17, 300 }, + [4] = { 63.5, 46.2, 17, 300 }, + [5] = { 55.9, 45.9, 17, 300 }, + [6] = { 52.9, 44.4, 17, 300 }, + [7] = { 56.9, 43.5, 17, 300 }, + [8] = { 53.9, 43.1, 17, 300 }, + [9] = { 57.1, 41.2, 17, 300 }, + [10] = { 53.4, 40.5, 17, 300 }, + [11] = { 45.9, 39.4, 17, 300 }, + [12] = { 48.9, 38.8, 17, 300 }, + [13] = { 46.1, 37.8, 17, 300 }, + [14] = { 58.8, 27.5, 17, 300 }, + [15] = { 43.6, 26.5, 17, 300 }, + [16] = { 42.1, 24.6, 17, 300 }, + [17] = { 59.1, 24.4, 17, 300 }, + [18] = { 46.5, 22.8, 17, 300 }, + [19] = { 43.7, 21.2, 17, 300 }, + [20] = { 47.9, 18, 17, 300 }, + [21] = { 47, 16, 17, 300 }, + [22] = { 52.5, 11.6, 17, 300 }, + [23] = { 52.5, 10.7, 17, 300 }, + [24] = { 56.7, 8.8, 17, 300 }, + [25] = { 56.4, 8.8, 17, 300 }, + [26] = { 34.7, 91, 38, 300 }, + [27] = { 34.4, 90.1, 38, 300 }, + [28] = { 28.3, 87.4, 38, 300 }, + [29] = { 37.6, 86.3, 38, 300 }, + [30] = { 36, 84.6, 38, 300 }, + [31] = { 27.8, 83.3, 38, 300 }, + [32] = { 34.9, 82.6, 38, 300 }, + [33] = { 31.3, 75.5, 38, 300 }, + [34] = { 26.9, 57.5, 38, 300 }, + [35] = { 26, 49.4, 38, 300 }, + [36] = { 26.5, 44.3, 38, 300 }, + [37] = { 24.9, 30.8, 38, 300 }, + [38] = { 49.1, 29.8, 38, 300 }, + [39] = { 34.5, 27.2, 38, 300 }, + [40] = { 35.1, 26.7, 38, 300 }, + [41] = { 54.4, 26, 38, 300 }, + [42] = { 35.6, 24.9, 38, 300 }, + [43] = { 35.2, 24.4, 38, 300 }, + [44] = { 36.2, 23.5, 38, 300 }, + [45] = { 48, 20.7, 38, 300 }, + [46] = { 35.7, 16.2, 38, 300 }, + [47] = { 37.7, 16, 38, 300 }, + [48] = { 39.7, 12.5, 38, 300 }, + [49] = { 43, 71.7, 40, 300 }, + [50] = { 45.4, 70.5, 40, 300 }, + [51] = { 44.5, 70.2, 40, 300 }, + [52] = { 38.7, 69.7, 40, 300 }, + [53] = { 42.2, 68.9, 40, 300 }, + [54] = { 44, 68.4, 40, 300 }, + [55] = { 53.1, 62.3, 40, 300 }, + [56] = { 48.5, 60.9, 40, 300 }, + [57] = { 60.6, 58.2, 40, 300 }, + [58] = { 33.3, 56.6, 40, 300 }, + [59] = { 46.7, 53.4, 40, 300 }, + [60] = { 29.2, 48.8, 40, 300 }, + [61] = { 29.6, 47.3, 40, 300 }, + [62] = { 48.2, 47.1, 40, 300 }, + [63] = { 31, 46.2, 40, 300 }, + [64] = { 29.1, 45.8, 40, 300 }, + [65] = { 31.1, 44.2, 40, 300 }, + [66] = { 41.5, 41, 40, 300 }, + [67] = { 51.1, 39.1, 40, 300 }, + [68] = { 46.1, 38.6, 40, 300 }, + [69] = { 52.4, 34.5, 40, 300 }, + [70] = { 36.3, 31.9, 40, 300 }, + [71] = { 44.7, 25.4, 40, 300 }, + [72] = { 44, 23.4, 40, 300 }, + [73] = { 45, 21.8, 40, 300 }, + [74] = { 45.5, 20.8, 40, 300 }, + [75] = { 48.3, 20.3, 40, 300 }, + [76] = { 45.9, 19.2, 40, 300 }, + [77] = { 56.5, 19.1, 40, 300 }, + [78] = { 43.1, 7.9, 40, 300 }, + [79] = { 44.9, 7.7, 40, 300 }, + [80] = { 55.6, 7.6, 40, 300 }, + [81] = { 47.2, 73.9, 130, 300 }, + [82] = { 44.1, 71.6, 130, 300 }, + [83] = { 46, 71.5, 130, 300 }, + [84] = { 47.7, 55.6, 130, 300 }, + [85] = { 46.3, 54.7, 130, 300 }, + [86] = { 45.4, 54.3, 130, 300 }, + [87] = { 43.6, 31.7, 130, 300 }, + [88] = { 36.4, 29.4, 130, 300 }, + [89] = { 52.7, 28.3, 130, 300 }, + [90] = { 52.6, 28.3, 130, 300 }, + [91] = { 56.2, 27.5, 130, 300 }, + [92] = { 53, 24.9, 130, 300 }, + [93] = { 48.2, 24.5, 130, 300 }, + [94] = { 53.6, 24.4, 130, 300 }, + [95] = { 44.7, 24, 130, 300 }, + [96] = { 44.8, 23.5, 130, 300 }, + [97] = { 43.6, 22.5, 130, 300 }, + [98] = { 44, 21.9, 130, 300 }, + [99] = { 44.6, 20.5, 130, 300 }, + [100] = { 55.8, 19.7, 130, 300 }, + [101] = { 59.1, 18.2, 130, 300 }, + [102] = { 60, 17.5, 130, 300 }, + [103] = { 60.8, 16.4, 130, 300 }, + [104] = { 66.3, 13.1, 130, 300 }, + [105] = { 64.8, 12.2, 130, 300 }, + [106] = { 39.7, 78.3, 148, 300 }, + [107] = { 42.4, 62, 148, 300 }, + [108] = { 43, 58.7, 148, 300 }, + [109] = { 41.6, 58.2, 148, 300 }, + [110] = { 47.2, 37, 148, 300 }, + [111] = { 54.7, 37, 148, 300 }, + [112] = { 48.1, 36.4, 148, 300 }, + [113] = { 55.5, 36.2, 148, 300 }, + [114] = { 56.6, 35.2, 148, 300 }, + [115] = { 36.7, 27.4, 148, 300 }, + [116] = { 39.7, 10.8, 361, 300 }, + [117] = { 40.6, 10, 361, 300 }, + [118] = { 41.9, 8.8, 361, 300 }, + }, + }, + [106325] = { + ["coords"] = { + [1] = { 51.3, 41.8, 14, 900 }, + [2] = { 51.9, 29.8, 17, 900 }, + [3] = { 74, 60.3, 331, 900 }, + }, + }, + [106326] = { + ["coords"] = { + [1] = { 51.5, 41.2, 14, 900 }, + [2] = { 52.1, 29.8, 17, 900 }, + [3] = { 74.2, 60.8, 331, 900 }, + }, + }, + [106327] = { + ["coords"] = { + [1] = { 51.2, 41.5, 14, 900 }, + [2] = { 51.9, 29.7, 17, 900 }, + [3] = { 74.1, 60.2, 331, 900 }, + }, + }, + [106335] = { + ["coords"] = { + [1] = { 51.8, 41.5, 14, 900 }, + [2] = { 52.1, 30, 17, 900 }, + [3] = { 74, 61, 331, 900 }, + }, + }, + [106336] = { + ["coords"] = { + [1] = { 51.3, 41.3, 14, 900 }, + [2] = { 52, 29.6, 17, 900 }, + [3] = { 74.3, 60.5, 331, 900 }, + }, + }, + [106528] = { + ["coords"] = { + [1] = { 66.1, 43.8, 17, 0 }, + [2] = { 38.8, 44.6, 130, 0 }, + }, + }, + [106529] = { + ["coords"] = { + [1] = { 38.8, 44.6, 130, 0 }, + }, + }, + [106638] = { + ["coords"] = { + [1] = { 62, 39.5, 17, 900 }, + }, + }, + [106641] = { + ["coords"] = { + [1] = { 62, 39.3, 17, 900 }, + }, + }, + [107037] = { + ["coords"] = { + [1] = { 62.1, 39.4, 17, 900 }, + }, + }, + [107039] = { + ["coords"] = { + [1] = { 62.1, 39.4, 17, 900 }, + }, + }, + [107040] = { + ["coords"] = { + [1] = { 62.1, 39.6, 17, 900 }, + }, + }, + [107041] = { + ["coords"] = { + [1] = { 62.1, 39.3, 17, 900 }, + }, + }, + [107042] = { + ["coords"] = { + [1] = { 62.1, 39.5, 17, 900 }, + }, + }, + [107044] = { + ["coords"] = {}, + }, + [107045] = { + ["coords"] = { + [1] = { 60.9, 82.7, 36, 0 }, + [2] = { 62.2, 20.8, 267, 0 }, + }, + }, + [107046] = { + ["coords"] = { + [1] = { 44.3, 76.8, 17, 0 }, + }, + }, + [107047] = { + ["coords"] = { + [1] = { 33.5, 67.5, 331, 0 }, + }, + }, + [109515] = { + ["coords"] = {}, + }, + [110230] = { + ["coords"] = { + [1] = { 66.5, 38.8, 357, 180 }, + }, + }, + [110231] = { + ["coords"] = { + [1] = { 69.6, 39.2, 357, 900 }, + }, + }, + [110232] = { + ["coords"] = { + [1] = { 68.7, 40, 357, 900 }, + }, + }, + [110233] = { + ["coords"] = { + [1] = { 72, 37.4, 357, 900 }, + }, + }, + [110234] = { + ["coords"] = { + [1] = { 71.5, 56.1, 357, 900 }, + }, + }, + [110235] = { + ["coords"] = { + [1] = { 73.2, 56.3, 357, 900 }, + }, + }, + [110236] = { + ["coords"] = { + [1] = { 73.1, 56.7, 357, 900 }, + }, + }, + [111094] = { + ["coords"] = { + [1] = { 50.8, 68.5, 1519, 900 }, + }, + }, + [111095] = { + ["coords"] = { + [1] = { 51.7, 5.2, 15, 300 }, + [2] = { 62.3, 56.6, 17, 300 }, + [3] = { 61.2, 55.7, 17, 300 }, + [4] = { 61.9, 55, 17, 300 }, + [5] = { 61.4, 53.6, 17, 300 }, + [6] = { 62.5, 76.3, 130, 300 }, + [7] = { 59.5, 72, 130, 300 }, + [8] = { 62.9, 67.6, 130, 300 }, + [9] = { 63.1, 64.9, 130, 300 }, + [10] = { 63.6, 64.3, 130, 300 }, + [11] = { 62.8, 63.3, 130, 300 }, + [12] = { 63, 62.5, 130, 300 }, + [13] = { 62.9, 62.1, 130, 300 }, + [14] = { 63.3, 58.7, 130, 300 }, + [15] = { 63.3, 58.2, 130, 300 }, + [16] = { 63.3, 57.3, 130, 300 }, + [17] = { 63.9, 56.9, 130, 300 }, + [18] = { 7.5, 40.8, 267, 300 }, + [19] = { 8.1, 29.3, 267, 300 }, + [20] = { 8.4, 25.8, 267, 300 }, + [21] = { 9, 25.1, 267, 300 }, + [22] = { 8, 23.7, 267, 300 }, + [23] = { 8.3, 22.7, 267, 300 }, + [24] = { 8.1, 22.1, 267, 300 }, + [25] = { 8.6, 17.7, 267, 300 }, + [26] = { 8.6, 17, 267, 300 }, + [27] = { 8.7, 15.8, 267, 300 }, + }, + }, + [111148] = { + ["coords"] = {}, + ["fac"] = "A", + }, + [111149] = { + ["coords"] = { + [1] = { 38.5, 80.6, 33, 900 }, + }, + }, + [111202] = { + ["coords"] = { + [1] = { 47.3, 52.7, 1, 900 }, + }, + }, + [111203] = { + ["coords"] = { + [1] = { 47.6, 52.2, 1, 900 }, + }, + }, + [111204] = { + ["coords"] = { + [1] = { 47.3, 52.6, 1, 900 }, + }, + }, + [111205] = { + ["coords"] = { + [1] = { 47.7, 53.3, 1, 900 }, + }, + }, + [111206] = { + ["coords"] = { + [1] = { 47.5, 51.8, 1, 900 }, + }, + }, + [111207] = { + ["coords"] = { + [1] = { 47.6, 52.2, 1, 900 }, + }, + }, + [111212] = { + ["coords"] = { + [1] = { 47.6, 52.3, 1, 900 }, + }, + }, + [111215] = { + ["coords"] = { + [1] = { 47.6, 52, 1, 900 }, + }, + }, + [111216] = { + ["coords"] = { + [1] = { 47.6, 51.9, 1, 900 }, + }, + }, + [111217] = { + ["coords"] = { + [1] = { 47.7, 52.6, 1, 900 }, + }, + }, + [111220] = { + ["coords"] = { + [1] = { 47.4, 52.3, 1, 900 }, + }, + }, + [111221] = { + ["coords"] = { + [1] = { 47.4, 52.2, 1, 900 }, + }, + }, + [111222] = { + ["coords"] = { + [1] = { 47.4, 52.1, 1, 900 }, + }, + }, + [111223] = { + ["coords"] = { + [1] = { 47.4, 52, 1, 900 }, + }, + }, + [111224] = { + ["coords"] = { + [1] = { 47.6, 52.1, 1, 900 }, + }, + }, + [111225] = { + ["coords"] = { + [1] = { 47.6, 52.7, 1, 900 }, + }, + }, + [111226] = { + ["coords"] = { + [1] = { 47.5, 52.1, 1, 900 }, + }, + }, + [111227] = { + ["coords"] = { + [1] = { 47.6, 52, 1, 900 }, + }, + }, + [111254] = { + ["coords"] = { + [1] = { 34.6, 48.9, 38, 7200 }, + }, + }, + [111255] = { + ["coords"] = { + [1] = { 96.2, 46.8, 1, 7200 }, + [2] = { 34.2, 50.3, 38, 7200 }, + }, + }, + [111256] = { + ["coords"] = { + [1] = { 34.8, 49, 38, 7200 }, + }, + }, + [111257] = { + ["coords"] = { + [1] = { 35.5, 49.6, 38, 7200 }, + }, + }, + [111258] = { + ["coords"] = { + [1] = { 35.5, 49.5, 38, 7200 }, + }, + }, + [111259] = { + ["coords"] = { + [1] = { 35.8, 48.9, 38, 7200 }, + }, + }, + [111260] = { + ["coords"] = { + [1] = { 34.9, 49.9, 38, 7200 }, + }, + }, + [111261] = { + ["coords"] = { + [1] = { 34.9, 49.9, 38, 7200 }, + }, + }, + [111262] = { + ["coords"] = { + [1] = { 34.9, 48.9, 38, 7200 }, + }, + }, + [111265] = { + ["coords"] = { + [1] = { 34.8, 48.7, 38, 7200 }, + }, + }, + [111266] = { + ["coords"] = { + [1] = { 35.1, 48.6, 38, 7200 }, + }, + }, + [111268] = { + ["coords"] = { + [1] = { 35.2, 48.9, 38, 7200 }, + }, + }, + [111269] = { + ["coords"] = { + [1] = { 35.6, 49.4, 38, 7200 }, + }, + }, + [111271] = { + ["coords"] = { + [1] = { 35.6, 49.2, 38, 7200 }, + }, + }, + [111839] = { + ["coords"] = {}, + }, + [111942] = { + ["coords"] = { + [1] = { 29.6, 43.1, 267, 7200 }, + }, + }, + [111943] = { + ["coords"] = { + [1] = { 29.6, 43, 267, 7200 }, + }, + }, + [111945] = { + ["coords"] = { + [1] = { 29.6, 42.6, 267, 7200 }, + }, + }, + [111946] = { + ["coords"] = { + [1] = { 29.6, 42.5, 267, 7200 }, + }, + }, + [111948] = { + ["coords"] = { + [1] = { 29.7, 42.6, 267, 7200 }, + }, + }, + [111949] = { + ["coords"] = { + [1] = { 29.6, 43, 267, 7200 }, + }, + }, + [111950] = { + ["coords"] = { + [1] = { 29.7, 43, 267, 7200 }, + }, + }, + [111969] = { + ["coords"] = { + [1] = { 29.7, 41.6, 267, 7200 }, + }, + }, + [111973] = { + ["coords"] = { + [1] = { 29.7, 43, 267, 7200 }, + }, + }, + [111974] = { + ["coords"] = { + [1] = { 29.7, 43.1, 267, 7200 }, + }, + }, + [111979] = { + ["coords"] = { + [1] = { 29.6, 42.5, 267, 7200 }, + }, + }, + [111993] = { + ["coords"] = {}, + }, + [111994] = { + ["coords"] = {}, + }, + [111995] = { + ["coords"] = {}, + }, + [111996] = { + ["coords"] = {}, + }, + [111998] = { + ["coords"] = {}, + }, + [112000] = { + ["coords"] = {}, + }, + [112012] = { + ["coords"] = { + [1] = { 63.5, 64.3, 130, 7200 }, + [2] = { 8.8, 25.1, 267, 7200 }, + }, + }, + [112015] = { + ["coords"] = {}, + }, + [112023] = { + ["coords"] = {}, + }, + [112024] = { + ["coords"] = {}, + }, + [112028] = { + ["coords"] = {}, + }, + [112042] = { + ["coords"] = { + [1] = { 72, 48.1, 10, 3600 }, + [2] = { 60.7, 50.5, 85, 900 }, + }, + }, + [112043] = { + ["coords"] = { + [1] = { 72, 47.6, 10, 3600 }, + [2] = { 60.8, 50.6, 85, 900 }, + }, + }, + [112044] = { + ["coords"] = { + [1] = { 71.9, 47.5, 10, 3600 }, + [2] = { 60.9, 50.5, 85, 900 }, + }, + }, + [112045] = { + ["coords"] = { + [1] = { 72.1, 47.5, 10, 3600 }, + [2] = { 60.8, 50.7, 85, 900 }, + }, + }, + [112048] = { + ["coords"] = { + [1] = { 72, 48, 10, 3600 }, + [2] = { 60.7, 50.5, 85, 900 }, + }, + }, + [112049] = { + ["coords"] = { + [1] = { 72, 48.1, 10, 3600 }, + [2] = { 60.6, 50.5, 85, 900 }, + }, + }, + [112050] = { + ["coords"] = { + [1] = { 72.1, 48, 10, 3600 }, + [2] = { 60.7, 50.6, 85, 900 }, + }, + }, + [112051] = { + ["coords"] = { + [1] = { 46.7, 74.3, 130, 7200 }, + }, + }, + [112052] = { + ["coords"] = { + [1] = { 46.7, 74.4, 130, 7200 }, + }, + }, + [112053] = { + ["coords"] = { + [1] = { 46.7, 73.8, 130, 7200 }, + }, + }, + [112054] = { + ["coords"] = { + [1] = { 46.7, 73.7, 130, 7200 }, + }, + }, + [112055] = { + ["coords"] = { + [1] = { 46.7, 73.6, 130, 7200 }, + }, + }, + [112058] = { + ["coords"] = { + [1] = { 46.4, 74.2, 130, 7200 }, + }, + }, + [112059] = { + ["coords"] = { + [1] = { 46.4, 74.3, 130, 7200 }, + }, + }, + [112060] = { + ["coords"] = { + [1] = { 46.4, 74.4, 130, 7200 }, + }, + }, + [112061] = { + ["coords"] = { + [1] = { 71.9, 46.4, 10, 3600 }, + [2] = { 61.3, 50.8, 85, 900 }, + }, + }, + [112062] = { + ["coords"] = { + [1] = { 46.2, 74.3, 130, 7200 }, + }, + }, + [112065] = { + ["coords"] = { + [1] = { 46.2, 73.9, 130, 7200 }, + }, + }, + [112066] = { + ["coords"] = { + [1] = { 46.3, 73.8, 130, 7200 }, + }, + }, + [112068] = { + ["coords"] = {}, + }, + [112070] = { + ["coords"] = { + [1] = { 46.7, 74.2, 130, 7200 }, + }, + }, + [112071] = { + ["coords"] = { + [1] = { 46.2, 74.1, 130, 7200 }, + }, + }, + [112072] = { + ["coords"] = { + [1] = { 46.5, 73.4, 130, 7200 }, + }, + }, + [112073] = { + ["coords"] = { + [1] = { 72.2, 48, 10, 3600 }, + [2] = { 60.6, 50.6, 85, 900 }, + }, + }, + [112074] = { + ["coords"] = { + [1] = { 72.2, 48.1, 10, 3600 }, + [2] = { 60.6, 50.6, 85, 900 }, + }, + }, + [112079] = { + ["coords"] = { + [1] = { 72, 47.4, 10, 3600 }, + [2] = { 60.9, 50.6, 85, 900 }, + }, + }, + [112192] = { + ["coords"] = { + [1] = { 42.4, 19, 28, 1200 }, + [2] = { 52.9, 44.4, 2597, 120 }, + [3] = { 52.4, 43.9, 2597, 120 }, + [4] = { 52.9, 43.8, 2597, 120 }, + [5] = { 52.9, 43.7, 2597, 120 }, + [6] = { 52.5, 43.6, 2597, 120 }, + [7] = { 52.5, 43.5, 2597, 120 }, + }, + }, + [112194] = { + ["coords"] = { + [1] = { 42.4, 18.7, 28, 1200 }, + }, + }, + [112195] = { + ["coords"] = { + [1] = { 42.5, 19, 28, 1200 }, + }, + }, + [112196] = { + ["coords"] = { + [1] = { 42.4, 18.7, 28, 1200 }, + }, + }, + [112197] = { + ["coords"] = { + [1] = { 42.4, 18.7, 28, 1200 }, + }, + }, + [112198] = { + ["coords"] = { + [1] = { 42.5, 19, 28, 1200 }, + }, + }, + [112199] = { + ["coords"] = { + [1] = { 42.5, 18.9, 28, 1200 }, + }, + }, + [112200] = { + ["coords"] = { + [1] = { 29, 45.2, 44, 7200 }, + }, + }, + [112201] = { + ["coords"] = { + [1] = { 29.7, 44.8, 44, 7200 }, + }, + }, + [112202] = { + ["coords"] = { + [1] = { 42.2, 18, 28, 1200 }, + }, + }, + [112204] = { + ["coords"] = { + [1] = { 29.6, 45.2, 44, 7200 }, + }, + }, + [112205] = { + ["coords"] = { + [1] = { 29.4, 45.2, 44, 7200 }, + }, + }, + [112214] = { + ["coords"] = {}, + }, + [112215] = { + ["coords"] = { + [1] = { 29, 45.1, 44, 7200 }, + }, + }, + [112216] = { + ["coords"] = { + [1] = { 42.5, 19, 28, 1200 }, + }, + }, + [112217] = { + ["coords"] = { + [1] = { 42.5, 19, 28, 1200 }, + }, + }, + [112223] = { + ["coords"] = { + [1] = { 42.4, 18.7, 28, 1200 }, + }, + }, + [112231] = { + ["coords"] = { + [1] = { 29.6, 44.8, 44, 7200 }, + }, + }, + [112232] = { + ["coords"] = { + [1] = { 29.5, 44.8, 44, 7200 }, + }, + }, + [112234] = { + ["coords"] = { + [1] = { 29.5, 43.9, 44, 7200 }, + }, + }, + [112235] = { + ["coords"] = { + [1] = { 29.6, 43.9, 44, 7200 }, + }, + }, + [112236] = { + ["coords"] = { + [1] = { 29.7, 43.9, 44, 7200 }, + }, + }, + [112237] = { + ["coords"] = { + [1] = { 28.9, 43.9, 44, 7200 }, + }, + }, + [112238] = { + ["coords"] = { + [1] = { 28.8, 43.9, 44, 7200 }, + }, + }, + [112239] = { + ["coords"] = { + [1] = { 28.4, 44.4, 44, 7200 }, + }, + }, + [112241] = { + ["coords"] = { + [1] = { 28.7, 43.9, 44, 7200 }, + }, + }, + [112301] = { + ["coords"] = { + [1] = { 48, 59.1, 267, 7200 }, + }, + }, + [112302] = { + ["coords"] = { + [1] = { 48, 59, 267, 7200 }, + }, + }, + [112303] = { + ["coords"] = { + [1] = { 48, 58.9, 267, 7200 }, + }, + }, + [112305] = { + ["coords"] = { + [1] = { 48, 59.7, 267, 7200 }, + }, + }, + [112308] = { + ["coords"] = { + [1] = { 48, 59.8, 267, 7200 }, + }, + }, + [112309] = { + ["coords"] = { + [1] = { 48, 59.9, 267, 7200 }, + }, + }, + [112310] = { + ["coords"] = { + [1] = { 48.4, 59.1, 267, 7200 }, + }, + }, + [112311] = { + ["coords"] = { + [1] = { 48.4, 59, 267, 7200 }, + }, + }, + [112312] = { + ["coords"] = { + [1] = { 48.4, 58.9, 267, 7200 }, + }, + }, + [112316] = { + ["coords"] = { + [1] = { 48.6, 59.6, 267, 7200 }, + }, + }, + [112317] = { + ["coords"] = { + [1] = { 48.6, 59.6, 267, 7200 }, + }, + }, + [112318] = { + ["coords"] = { + [1] = { 48.4, 58.6, 267, 7200 }, + }, + }, + [112319] = { + ["coords"] = { + [1] = { 48.6, 59, 267, 7200 }, + }, + }, + [112321] = { + ["coords"] = { + [1] = { 48.6, 59.3, 267, 7200 }, + }, + }, + [112322] = { + ["coords"] = { + [1] = { 48.2, 60.3, 267, 7200 }, + }, + }, + [112877] = { + ["coords"] = {}, + ["fac"] = "A", + }, + [112879] = { + ["coords"] = {}, + }, + [112881] = { + ["coords"] = { + [1] = { 33.1, 17.7, 130, 7200 }, + }, + }, + [112888] = { + ["coords"] = { + [1] = { 65.4, 24.8, 130, 10 }, + }, + }, + [112898] = { + ["coords"] = { + [1] = { 53.5, 64.3, 1519, 900 }, + }, + }, + [112899] = { + ["coords"] = { + [1] = { 22.6, 63.3, 1519, 120 }, + }, + }, + [112900] = { + ["coords"] = { + [1] = { 22.6, 64, 1519, 180 }, + }, + }, + [112901] = { + ["coords"] = { + [1] = { 79.9, 46.3, 1519, 900 }, + }, + }, + [112902] = { + ["coords"] = { + [1] = { 79.5, 46.3, 1519, 900 }, + }, + }, + [112903] = { + ["coords"] = { + [1] = { 79.7, 46.2, 1519, 900 }, + }, + }, + [112904] = { + ["coords"] = { + [1] = { 79.6, 46.6, 1519, 900 }, + }, + }, + [112905] = { + ["coords"] = { + [1] = { 79.8, 46.7, 1519, 900 }, + }, + }, + [112906] = { + ["coords"] = { + [1] = { 79.9, 46.6, 1519, 900 }, + }, + }, + [112907] = { + ["coords"] = { + [1] = { 79.4, 47.9, 1519, 900 }, + }, + }, + [112948] = { + ["coords"] = { + [1] = { 14.4, 24, 11, 10 }, + }, + }, + [113528] = { + ["coords"] = { + [1] = { 35.8, 21, 215, 900 }, + [2] = { 29.3, 20.5, 1638, 900 }, + }, + }, + [113529] = { + ["coords"] = { + [1] = { 32.1, 80.8, 45, 180 }, + }, + }, + [113531] = { + ["coords"] = { + [1] = { 32.1, 80.7, 45, 7200 }, + }, + }, + [113540] = { + ["coords"] = { + [1] = { 54, 82.6, 130, 7200 }, + }, + }, + [113568] = { + ["coords"] = { + [1] = { 66.1, 65.9, 1497, 900 }, + }, + }, + [113569] = { + ["coords"] = { + [1] = { 80.5, 44.4, 1497, 900 }, + }, + }, + [113570] = { + ["coords"] = { + [1] = { 64.6, 47.3, 1497, 900 }, + }, + }, + [113571] = { + ["coords"] = { + [1] = { 65.8, 65.9, 1497, 900 }, + }, + }, + [113572] = { + ["coords"] = { + [1] = { 63.9, 42, 1497, 900 }, + }, + }, + [113574] = { + ["coords"] = { + [1] = { 65.9, 22.2, 1497, 900 }, + }, + }, + [113575] = { + ["coords"] = { + [1] = { 65.9, 53.4, 1497, 900 }, + }, + }, + [113576] = { + ["coords"] = { + [1] = { 67.4, 41, 1497, 900 }, + }, + }, + [113577] = { + ["coords"] = { + [1] = { 72.1, 44.2, 1497, 900 }, + }, + }, + [113752] = { + ["coords"] = { + [1] = { 67.6, 38.6, 1497, 900 }, + }, + }, + [113753] = { + ["coords"] = { + [1] = { 61.6, 28.7, 1497, 900 }, + }, + }, + [113754] = { + ["coords"] = { + [1] = { 60.4, 28.7, 1497, 900 }, + }, + }, + [113755] = { + ["coords"] = { + [1] = { 71.6, 52.9, 1497, 900 }, + }, + }, + [113756] = { + ["coords"] = { + [1] = { 71.8, 52.7, 1497, 900 }, + }, + }, + [113757] = { + ["coords"] = {}, + }, + [113768] = { + ["coords"] = { + [1] = { 20.9, 76.6, 1, 180 }, + [2] = { 22.5, 74.9, 1, 180 }, + [3] = { 30.2, 71.7, 1, 180 }, + [4] = { 22.5, 71.3, 1, 180 }, + [5] = { 31.5, 58.5, 1, 180 }, + [6] = { 29.2, 54.8, 1, 180 }, + [7] = { 26.2, 38.2, 1, 180 }, + [8] = { 29.7, 36.3, 1, 180 }, + [9] = { 23.4, 75.6, 12, 180 }, + [10] = { 26.9, 68.3, 12, 180 }, + [11] = { 32.9, 61.2, 12, 180 }, + [12] = { 47.7, 59.2, 12, 180 }, + [13] = { 49.9, 51.2, 12, 180 }, + [14] = { 49.3, 74.2, 14, 180 }, + [15] = { 43.6, 62.8, 14, 180 }, + [16] = { 38.6, 56.7, 14, 180 }, + [17] = { 45.8, 56.2, 14, 180 }, + [18] = { 55.6, 34.5, 14, 180 }, + [19] = { 51.7, 19.6, 14, 180 }, + [20] = { 51.2, 19.5, 14, 180 }, + [21] = { 36.3, 52.4, 17, 180 }, + [22] = { 34.5, 42.4, 17, 180 }, + [23] = { 34.3, 37.7, 17, 180 }, + [24] = { 65.4, 26.7, 17, 180 }, + [25] = { 49.9, 73.1, 141, 180 }, + [26] = { 52.3, 73, 141, 180 }, + [27] = { 59.4, 71.4, 141, 180 }, + [28] = { 58.6, 70.2, 141, 180 }, + [29] = { 66.3, 56.4, 141, 180 }, + [30] = { 57.4, 46.1, 141, 180 }, + [31] = { 57.4, 44.4, 141, 180 }, + [32] = { 37.1, 43, 141, 180 }, + [33] = { 62.5, 40.6, 141, 180 }, + [34] = { 43.9, 38.3, 141, 180 }, + [35] = { 38.5, 33.7, 141, 180 }, + [36] = { 54.7, 89.7, 215, 180 }, + [37] = { 47.7, 68.7, 215, 180 }, + [38] = { 60.4, 48.2, 215, 180 }, + [39] = { 39.5, 34.2, 215, 180 }, + [40] = { 56.9, 28.7, 215, 180 }, + [41] = { 33.9, 24, 215, 180 }, + [42] = { 56.5, 19.3, 215, 180 }, + [43] = { 36.1, 12.4, 215, 180 }, + [44] = { 87.3, 51.6, 405, 180 }, + }, + }, + [113769] = { + ["coords"] = { + [1] = { 68.9, 56.1, 1, 180 }, + [2] = { 41.5, 53.5, 1, 180 }, + [3] = { 51.7, 51.7, 1, 180 }, + [4] = { 76, 48.7, 1, 180 }, + [5] = { 53.4, 37.2, 1, 180 }, + [6] = { 38.8, 36.6, 1, 180 }, + [7] = { 40.5, 29.5, 1, 180 }, + [8] = { 42.9, 90, 12, 180 }, + [9] = { 37.8, 79.7, 12, 180 }, + [10] = { 58.4, 78.1, 12, 180 }, + [11] = { 73.3, 76.9, 12, 180 }, + [12] = { 61.8, 76.5, 12, 180 }, + [13] = { 88, 76.1, 12, 180 }, + [14] = { 70.1, 69.8, 12, 180 }, + [15] = { 51.9, 60.3, 12, 180 }, + [16] = { 38.2, 59.6, 12, 180 }, + [17] = { 37.1, 58.9, 12, 180 }, + [18] = { 47.6, 69.5, 14, 180 }, + [19] = { 52.1, 64.2, 14, 180 }, + [20] = { 54.7, 60.6, 14, 180 }, + [21] = { 42.9, 56.2, 14, 180 }, + [22] = { 50.2, 51.4, 14, 180 }, + [23] = { 50.1, 35.9, 14, 180 }, + [24] = { 53.8, 32.8, 14, 180 }, + [25] = { 43.3, 30.3, 14, 180 }, + [26] = { 51.1, 15.8, 14, 180 }, + [27] = { 41.8, 15.3, 14, 180 }, + [28] = { 35.6, 42.9, 17, 180 }, + [29] = { 62.2, 68.1, 141, 180 }, + [30] = { 47.2, 55.3, 141, 180 }, + [31] = { 65.1, 53.4, 141, 180 }, + [32] = { 47.1, 52.3, 141, 180 }, + [33] = { 46.4, 36.1, 141, 180 }, + [34] = { 54.4, 73.8, 215, 180 }, + [35] = { 59, 29.5, 215, 180 }, + [36] = { 30.8, 22.6, 215, 180 }, + [37] = { 33.1, 22.1, 215, 180 }, + [38] = { 39.2, 9.1, 215, 180 }, + [39] = { 83.8, 50.1, 405, 180 }, + [40] = { 86.4, 49.4, 405, 180 }, + }, + }, + [113770] = { + ["coords"] = { + [1] = { 24.8, 75.8, 1, 180 }, + [2] = { 27.9, 72.4, 1, 180 }, + [3] = { 28.8, 66.1, 1, 180 }, + [4] = { 34.1, 61.8, 1, 180 }, + [5] = { 49.2, 49.8, 1, 180 }, + [6] = { 55.6, 49.1, 1, 180 }, + [7] = { 40.6, 84.2, 12, 180 }, + [8] = { 51, 79.9, 12, 180 }, + [9] = { 79.3, 77.6, 12, 180 }, + [10] = { 55, 76.9, 12, 180 }, + [11] = { 40.1, 74.5, 12, 180 }, + [12] = { 57.7, 69.2, 12, 180 }, + [13] = { 88.2, 67.3, 12, 180 }, + [14] = { 31.1, 64.8, 12, 180 }, + [15] = { 41.8, 61.6, 12, 180 }, + [16] = { 38.2, 59.6, 12, 180 }, + [17] = { 30.2, 58.6, 12, 180 }, + [18] = { 35.4, 56, 12, 180 }, + [19] = { 49, 40.4, 12, 180 }, + [20] = { 49.3, 31.7, 12, 180 }, + [21] = { 69, 85.1, 14, 180 }, + [22] = { 60.1, 80.4, 14, 180 }, + [23] = { 47.6, 69.5, 14, 180 }, + [24] = { 47, 65.9, 14, 180 }, + [25] = { 55.1, 54.7, 14, 180 }, + [26] = { 50.2, 51.4, 14, 180 }, + [27] = { 38.5, 50.8, 14, 180 }, + [28] = { 47.1, 45.7, 14, 180 }, + [29] = { 50.1, 35.9, 14, 180 }, + [30] = { 53.8, 32.8, 14, 180 }, + [31] = { 41.5, 28.5, 14, 180 }, + [32] = { 45.9, 27.5, 14, 180 }, + [33] = { 57.1, 17.5, 14, 180 }, + [34] = { 81.3, 41.5, 17, 180 }, + [35] = { 33.9, 35.8, 17, 180 }, + [36] = { 43.3, 71.3, 141, 180 }, + [37] = { 39.4, 67, 141, 180 }, + [38] = { 55.1, 64.4, 141, 180 }, + [39] = { 53.1, 59.9, 141, 180 }, + [40] = { 46, 52.2, 141, 180 }, + [41] = { 64.8, 52.1, 141, 180 }, + [42] = { 59.7, 40.3, 141, 180 }, + [43] = { 38.5, 33.7, 141, 180 }, + [44] = { 61.8, 33.3, 141, 180 }, + [45] = { 40.4, 29.3, 141, 180 }, + [46] = { 34.1, 28.1, 141, 180 }, + [47] = { 49.3, 40.8, 215, 180 }, + [48] = { 46.1, 38.6, 215, 180 }, + [49] = { 55.6, 15.5, 215, 180 }, + [50] = { 42.7, 14.1, 215, 180 }, + }, + }, + [113771] = { + ["coords"] = { + [1] = { 29.6, 72.1, 1, 180 }, + [2] = { 58.5, 56.9, 1, 180 }, + [3] = { 73.5, 56.4, 1, 180 }, + [4] = { 56, 52.8, 1, 180 }, + [5] = { 33.8, 31.9, 1, 180 }, + [6] = { 34.4, 86.4, 12, 180 }, + [7] = { 46.4, 75.5, 12, 180 }, + [8] = { 63, 75, 12, 180 }, + [9] = { 27.9, 72.7, 12, 180 }, + [10] = { 62.7, 70.8, 12, 180 }, + [11] = { 46.1, 63.5, 12, 180 }, + [12] = { 41.8, 61.6, 12, 180 }, + [13] = { 35.8, 59.6, 12, 180 }, + [14] = { 67.4, 57.5, 12, 180 }, + [15] = { 44.4, 54.6, 12, 180 }, + [16] = { 41.8, 52.1, 12, 180 }, + [17] = { 57.7, 48.3, 12, 180 }, + [18] = { 52.4, 75.7, 14, 180 }, + [19] = { 48.9, 72, 14, 180 }, + [20] = { 42, 65.8, 14, 180 }, + [21] = { 57, 56.8, 14, 180 }, + [22] = { 49.5, 40.3, 14, 180 }, + [23] = { 52.3, 29.4, 14, 180 }, + [24] = { 36.8, 38.5, 17, 180 }, + [25] = { 34, 37.2, 17, 180 }, + [26] = { 53.3, 70.4, 141, 180 }, + [27] = { 55.4, 69.6, 141, 180 }, + [28] = { 50.3, 65.1, 141, 180 }, + [29] = { 39.6, 62.4, 141, 180 }, + [30] = { 66.1, 58.4, 141, 180 }, + [31] = { 44.2, 57.6, 141, 180 }, + [32] = { 46.4, 30.7, 141, 180 }, + [33] = { 36.2, 27.6, 141, 180 }, + [34] = { 55.7, 94.2, 215, 180 }, + [35] = { 43.6, 72.5, 215, 180 }, + [36] = { 32.6, 47.1, 215, 180 }, + [37] = { 40.1, 25.2, 215, 180 }, + [38] = { 61.3, 20.9, 215, 180 }, + [39] = { 55.9, 18.3, 215, 180 }, + [40] = { 85.8, 78, 405, 180 }, + [41] = { 50.5, 40.9, 1638, 180 }, + }, + }, + [113772] = { + ["coords"] = { + [1] = { 17.9, 55, 28, 180 }, + [2] = { 74.9, 68, 85, 180 }, + [3] = { 43.4, 67.8, 85, 180 }, + [4] = { 60.5, 63.5, 85, 180 }, + [5] = { 29.3, 62.6, 85, 180 }, + [6] = { 36, 62.3, 85, 180 }, + [7] = { 41.3, 60.6, 85, 180 }, + [8] = { 37.9, 60.5, 85, 180 }, + [9] = { 56, 60.2, 85, 180 }, + [10] = { 31.4, 59.5, 85, 180 }, + [11] = { 42.8, 58.6, 85, 180 }, + [12] = { 41.6, 57.6, 85, 180 }, + [13] = { 72.4, 56.8, 85, 180 }, + [14] = { 50.4, 55.2, 85, 180 }, + [15] = { 75.2, 54.5, 85, 180 }, + [16] = { 39.5, 54.1, 85, 180 }, + [17] = { 30.6, 51.6, 85, 180 }, + [18] = { 40.7, 49.4, 85, 180 }, + [19] = { 62.4, 47.8, 85, 180 }, + [20] = { 53.2, 47.3, 85, 180 }, + [21] = { 41.6, 46.6, 85, 180 }, + [22] = { 53.2, 44.7, 85, 180 }, + [23] = { 43.1, 44.2, 85, 180 }, + [24] = { 39.2, 43.5, 85, 180 }, + [25] = { 60.4, 33.5, 85, 180 }, + [26] = { 64.7, 30.4, 85, 180 }, + [27] = { 47.7, 28.3, 85, 180 }, + }, + }, + [113791] = { + ["coords"] = { + [1] = { 38.3, 44.6, 130, 10 }, + }, + ["fac"] = "H", + }, + [120584] = { + ["coords"] = { + [1] = { 22.6, 71.4, 1, 900 }, + }, + }, + [121264] = { + ["coords"] = { + [1] = { 52, 44.7, 44, 10 }, + }, + }, + [122088] = { + ["coords"] = {}, + ["fac"] = "H", + }, + [123207] = { + ["coords"] = {}, + }, + [123208] = { + ["coords"] = {}, + }, + [123209] = { + ["coords"] = {}, + }, + [123210] = { + ["coords"] = {}, + }, + [123211] = { + ["coords"] = {}, + }, + [123212] = { + ["coords"] = {}, + }, + [123213] = { + ["coords"] = {}, + }, + [123214] = { + ["coords"] = { + [1] = { 70.4, 73.9, 40, 10 }, + }, + }, + [123215] = { + ["coords"] = { + [1] = { 24.6, 67.9, 11, 7200 }, + }, + }, + [123216] = { + ["coords"] = { + [1] = { 24.6, 67.9, 11, 7200 }, + }, + }, + [123217] = { + ["coords"] = { + [1] = { 24.6, 67.9, 11, 7200 }, + }, + }, + [123244] = { + ["coords"] = { + [1] = { 11.4, 59.7, 11, 7200 }, + [2] = { 41.6, 65.5, 12, 900 }, + [3] = { 64.6, 50.1, 15, 900 }, + [4] = { 32, 45.3, 267, 7200 }, + }, + }, + [123309] = { + ["coords"] = { + [1] = { 61.7, 84.1, 357, 600 }, + [2] = { 61.4, 84, 357, 600 }, + [3] = { 76.7, 66.7, 357, 300 }, + [4] = { 77.3, 65.7, 357, 300 }, + [5] = { 79.2, 65.4, 357, 300 }, + [6] = { 74.5, 65.3, 357, 300 }, + [7] = { 77.8, 65.3, 357, 300 }, + [8] = { 74, 64.7, 357, 300 }, + [9] = { 72.6, 64.5, 357, 300 }, + [10] = { 73.5, 64.1, 357, 300 }, + [11] = { 71.8, 63.8, 357, 300 }, + [12] = { 77.6, 63.3, 357, 300 }, + [13] = { 78.5, 63, 357, 300 }, + [14] = { 76.8, 62.9, 357, 300 }, + [15] = { 77.2, 62.8, 357, 300 }, + [16] = { 78.9, 62.8, 357, 300 }, + [17] = { 73.5, 62.3, 357, 300 }, + [18] = { 74.2, 61.8, 357, 300 }, + [19] = { 76.9, 61.6, 357, 300 }, + [20] = { 47.9, 87.2, 490, 300 }, + [21] = { 48.2, 85, 490, 300 }, + [22] = { 46.4, 84.6, 490, 300 }, + [23] = { 45, 83.5, 490, 300 }, + [24] = { 49.5, 83, 490, 300 }, + [25] = { 46.7, 82.8, 490, 300 }, + [26] = { 48.3, 81.7, 490, 300 }, + [27] = { 49.8, 81.2, 490, 300 }, + [28] = { 43.4, 80.9, 490, 300 }, + [29] = { 49.2, 80.2, 490, 300 }, + [30] = { 62.4, 98.5, 1377, 600 }, + [31] = { 54.2, 95.1, 1377, 600 }, + [32] = { 61.9, 93.7, 1377, 600 }, + [33] = { 50.3, 93.3, 1377, 600 }, + [34] = { 52.9, 93.1, 1377, 600 }, + [35] = { 66.3, 84.8, 1377, 600 }, + [36] = { 60.3, 80.8, 1377, 600 }, + [37] = { 62.4, 80.3, 1377, 600 }, + [38] = { 66.3, 80, 1377, 600 }, + [39] = { 62.9, 76.8, 1377, 600 }, + [40] = { 66.2, 75.5, 1377, 600 }, + [41] = { 64.3, 73.2, 1377, 600 }, + [42] = { 22.7, 71.8, 1377, 600 }, + [43] = { 27.3, 69.9, 1377, 600 }, + [44] = { 17.6, 69.6, 1377, 600 }, + [45] = { 22.5, 69.6, 1377, 600 }, + [46] = { 32.5, 68.4, 1377, 600 }, + [47] = { 28.8, 67, 1377, 600 }, + [48] = { 31.7, 66.5, 1377, 600 }, + [49] = { 19.7, 65.5, 1377, 600 }, + [50] = { 35.9, 65.1, 1377, 600 }, + [51] = { 33.1, 64.9, 1377, 600 }, + [52] = { 20.5, 64.3, 1377, 600 }, + [53] = { 23.1, 63.8, 1377, 600 }, + [54] = { 32.1, 63.1, 1377, 600 }, + [55] = { 34.6, 62.7, 1377, 600 }, + [56] = { 36.3, 60.3, 1377, 600 }, + [57] = { 24, 56.6, 1377, 600 }, + [58] = { 19.4, 55.2, 1377, 600 }, + [59] = { 21.2, 50.7, 1377, 600 }, + [60] = { 45.5, 32.3, 1377, 600 }, + [61] = { 42.1, 30.2, 1377, 600 }, + [62] = { 45.7, 29.2, 1377, 600 }, + [63] = { 47.6, 28.2, 1377, 600 }, + [64] = { 51.1, 27.7, 1377, 600 }, + [65] = { 40.3, 27.3, 1377, 600 }, + [66] = { 42.4, 27, 1377, 600 }, + [67] = { 48.3, 26.9, 1377, 600 }, + [68] = { 43.8, 26.6, 1377, 600 }, + [69] = { 49.8, 24.4, 1377, 600 }, + [70] = { 48.2, 22.8, 1377, 600 }, + [71] = { 46.4, 22.1, 1377, 600 }, + [72] = { 42.3, 19, 1377, 600 }, + [73] = { 43, 17.8, 1377, 600 }, + [74] = { 38.8, 16.2, 1377, 600 }, + [75] = { 40.4, 16.2, 1377, 600 }, + [76] = { 44.2, 15.8, 1377, 600 }, + [77] = { 45.4, 15.8, 1377, 600 }, + [78] = { 44.7, 15.1, 1377, 600 }, + [79] = { 40.7, 13.8, 1377, 600 }, + [80] = { 39.7, 13.1, 1377, 600 }, + [81] = { 39.1, 12.9, 1377, 600 }, + [82] = { 44.7, 12.8, 1377, 600 }, + [83] = { 42.8, 11.9, 1377, 600 }, + [84] = { 45.8, 10.4, 1377, 600 }, + }, + }, + [123310] = { + ["coords"] = { + [1] = { 76.7, 66.7, 357, 300 }, + [2] = { 77.3, 65.7, 357, 300 }, + [3] = { 79.2, 65.4, 357, 300 }, + [4] = { 77.8, 65.3, 357, 300 }, + [5] = { 74, 64.7, 357, 300 }, + [6] = { 72.6, 64.5, 357, 300 }, + [7] = { 73.5, 64.1, 357, 300 }, + [8] = { 77.6, 63.3, 357, 300 }, + [9] = { 78.5, 63, 357, 300 }, + [10] = { 76.8, 62.9, 357, 300 }, + [11] = { 77.2, 62.8, 357, 300 }, + [12] = { 78.9, 62.8, 357, 300 }, + [13] = { 73.5, 62.3, 357, 300 }, + [14] = { 76.9, 61.6, 357, 300 }, + [15] = { 65.3, 87, 400, 300 }, + [16] = { 69, 86.8, 400, 300 }, + [17] = { 63.7, 86.4, 400, 300 }, + [18] = { 66.3, 86.4, 400, 300 }, + [19] = { 65.6, 85.8, 400, 300 }, + [20] = { 64.5, 85.7, 400, 300 }, + [21] = { 69.4, 84.9, 400, 300 }, + [22] = { 64.9, 84.4, 400, 300 }, + [23] = { 69.3, 82.8, 400, 300 }, + [24] = { 43.7, 13.6, 440, 300 }, + [25] = { 44.2, 13.2, 440, 300 }, + }, + }, + [123328] = { + ["coords"] = { + [1] = { 52.6, 29.7, 17, 900 }, + }, + }, + [123329] = { + ["coords"] = {}, + }, + [123330] = { + ["coords"] = { + [1] = { 65, 45.5, 17, 10 }, + [2] = { 65.1, 45.5, 17, 10 }, + [3] = { 65.1, 45.4, 17, 10 }, + [4] = { 65, 45.4, 17, 10 }, + }, + }, + [123331] = { + ["coords"] = { + [1] = { 65, 45.5, 17, 10 }, + [2] = { 65.1, 45.5, 17, 10 }, + [3] = { 65.1, 45.4, 17, 10 }, + [4] = { 65, 45.4, 17, 10 }, + }, + }, + [123332] = { + ["coords"] = { + [1] = { 65, 45.5, 17, 10 }, + [2] = { 65.1, 45.5, 17, 10 }, + [3] = { 65.1, 45.4, 17, 10 }, + [4] = { 65, 45.4, 17, 10 }, + }, + }, + [123333] = { + ["coords"] = { + [1] = { 65, 45.5, 17, 10 }, + [2] = { 65.1, 45.5, 17, 10 }, + [3] = { 65.1, 45.4, 17, 10 }, + [4] = { 65, 45.4, 17, 10 }, + }, + }, + [123334] = { + ["coords"] = { + [1] = { 65, 45.5, 17, 10 }, + [2] = { 65.1, 45.5, 17, 10 }, + [3] = { 65.1, 45.4, 17, 10 }, + [4] = { 65, 45.4, 17, 10 }, + [5] = { 52.1, 45.5, 44, 10 }, + [6] = { 52.3, 45.4, 44, 10 }, + [7] = { 52, 45.3, 44, 10 }, + [8] = { 51.9, 45.1, 44, 10 }, + [9] = { 51.7, 44.9, 44, 10 }, + }, + }, + [123355] = { + ["coords"] = { + [1] = { 65, 45.5, 17, 10 }, + [2] = { 65.1, 45.5, 17, 10 }, + [3] = { 65.1, 45.4, 17, 10 }, + [4] = { 65, 45.4, 17, 10 }, + }, + }, + [123462] = { + ["coords"] = { + [1] = { 64.9, 45.4, 17, 10 }, + }, + }, + [123463] = { + ["coords"] = {}, + }, + [123848] = { + ["coords"] = { + [1] = { 74.5, 65.3, 357, 300 }, + [2] = { 71.8, 63.8, 357, 300 }, + [3] = { 74.2, 61.8, 357, 300 }, + [4] = { 47.9, 87.2, 490, 300 }, + [5] = { 48.2, 85, 490, 300 }, + [6] = { 46.4, 84.6, 490, 300 }, + [7] = { 45, 83.5, 490, 300 }, + [8] = { 49.5, 83, 490, 300 }, + [9] = { 46.7, 82.8, 490, 300 }, + [10] = { 48.3, 81.7, 490, 300 }, + [11] = { 49.8, 81.2, 490, 300 }, + [12] = { 43.4, 80.9, 490, 300 }, + [13] = { 49.2, 80.2, 490, 300 }, + }, + }, + [124072] = { + ["coords"] = { + [1] = { 70.4, 73.9, 40, 3600 }, + }, + }, + [124367] = { + ["coords"] = {}, + }, + [124368] = { + ["coords"] = {}, + }, + [124369] = { + ["coords"] = {}, + }, + [124370] = { + ["coords"] = {}, + }, + [124371] = { + ["coords"] = {}, + }, + [124372] = { + ["coords"] = {}, + }, + [124374] = { + ["coords"] = { + [1] = { 77.5, 58.7, 1519, 900 }, + }, + }, + [124388] = { + ["coords"] = {}, + }, + [124389] = { + ["coords"] = {}, + }, + [125475] = { + ["coords"] = { + [1] = { 64.5, 47.2, 4, 900 }, + }, + }, + [125477] = { + ["coords"] = {}, + }, + [126046] = { + ["coords"] = { + [1] = { 64.3, 29.9, 1519, 900 }, + }, + }, + [126049] = { + ["coords"] = { + [1] = { 41, 15, 3, 180 }, + [2] = { 40.7, 10.5, 3, 180 }, + [3] = { 37.6, 91.6, 38, 180 }, + [4] = { 37, 90, 38, 180 }, + [5] = { 40.1, 89.7, 38, 180 }, + [6] = { 33.3, 88.7, 38, 180 }, + [7] = { 35.7, 87.5, 38, 180 }, + [8] = { 39.8, 85.7, 38, 180 }, + [9] = { 37.2, 85.6, 38, 180 }, + }, + }, + [126050] = { + ["coords"] = { + [1] = { 42.2, 14.8, 14, 900 }, + [2] = { 54.6, 20.3, 17, 900 }, + [3] = { 47.8, 8.7, 17, 900 }, + [4] = { 73, 60.4, 331, 900 }, + }, + }, + [126051] = { + ["coords"] = { + [1] = { 42.2, 14.8, 14, 900 }, + [2] = { 54.6, 20.3, 17, 900 }, + [3] = { 47.8, 8.8, 17, 900 }, + [4] = { 73, 60.4, 331, 900 }, + }, + }, + [126052] = { + ["coords"] = { + [1] = { 47.8, 16.2, 14, 900 }, + [2] = { 51.7, 24.4, 17, 900 }, + [3] = { 61.3, 24.2, 17, 900 }, + }, + }, + [126053] = { + ["coords"] = { + [1] = { 47.7, 16.2, 14, 900 }, + [2] = { 51.7, 24.4, 17, 900 }, + [3] = { 61.3, 24.2, 17, 900 }, + }, + }, + [126158] = { + ["coords"] = { + [1] = { 68, 59.7, 141, 10 }, + }, + }, + [126260] = { + ["coords"] = { + [1] = { 39.3, 18.8, 3, 0 }, + }, + }, + [126312] = { + ["coords"] = { + [1] = { 34.8, 28.5, 46, 7200 }, + }, + }, + [126313] = { + ["coords"] = { + [1] = { 34.4, 26.2, 46, 7200 }, + [2] = { 42.6, 97, 51, 7200 }, + }, + }, + [126314] = { + ["coords"] = { + [1] = { 34.4, 26.3, 46, 7200 }, + [2] = { 42.6, 97.1, 51, 7200 }, + }, + }, + [126335] = { + ["coords"] = { + [1] = { 35.2, 28, 46, 7200 }, + [2] = { 43.6, 99.3, 51, 7200 }, + }, + }, + [126337] = { + ["coords"] = { + [1] = { 34.2, 28.1, 46, 7200 }, + [2] = { 42.4, 99.5, 51, 7200 }, + }, + }, + [126338] = { + ["coords"] = { + [1] = { 34.8, 28.4, 46, 7200 }, + [2] = { 43.2, 99.9, 51, 7200 }, + }, + }, + [126339] = { + ["coords"] = { + [1] = { 34.8, 26.2, 46, 7200 }, + [2] = { 43.1, 97, 51, 7200 }, + }, + }, + [126340] = { + ["coords"] = { + [1] = { 34.4, 25.2, 46, 7200 }, + [2] = { 42.7, 95.6, 51, 7200 }, + }, + }, + [126341] = { + ["coords"] = { + [1] = { 35, 25.3, 46, 7200 }, + [2] = { 43.5, 95.8, 51, 7200 }, + }, + }, + [126342] = { + ["coords"] = { + [1] = { 36.6, 24.9, 46, 7200 }, + [2] = { 45.5, 95.3, 51, 7200 }, + }, + }, + [126345] = { + ["coords"] = { + [1] = { 35.9, 25.8, 46, 7200 }, + [2] = { 44.5, 96.4, 51, 7200 }, + }, + }, + [128196] = { + ["coords"] = { + [1] = { 41, 15, 3, 180 }, + [2] = { 40.7, 10.5, 3, 180 }, + [3] = { 37.6, 91.6, 38, 180 }, + [4] = { 37, 90, 38, 180 }, + [5] = { 40.1, 89.7, 38, 180 }, + [6] = { 33.3, 88.7, 38, 180 }, + [7] = { 35.7, 87.5, 38, 180 }, + [8] = { 39.8, 85.7, 38, 180 }, + [9] = { 37.2, 85.6, 38, 180 }, + }, + }, + [128293] = { + ["coords"] = { + [1] = { 41, 15, 3, 180 }, + [2] = { 40.7, 10.5, 3, 180 }, + [3] = { 37.6, 91.6, 38, 180 }, + [4] = { 37, 90, 38, 180 }, + [5] = { 40.1, 89.7, 38, 180 }, + [6] = { 33.3, 88.7, 38, 180 }, + [7] = { 35.7, 87.5, 38, 180 }, + [8] = { 39.8, 85.7, 38, 180 }, + [9] = { 37.2, 85.6, 38, 180 }, + }, + }, + [128308] = { + ["coords"] = {}, + }, + [128403] = { + ["coords"] = {}, + }, + [128972] = { + ["coords"] = {}, + }, + [129127] = { + ["coords"] = { + [1] = { 54.8, 5.6, 17, 10 }, + }, + }, + [129206] = { + ["coords"] = { + [1] = { 11.9, 77.4, 10, 3600 }, + [2] = { 71.5, 73.3, 40, 3600 }, + }, + }, + [130125] = { + ["coords"] = { + [1] = { 69.5, 43.7, 1519, 900 }, + }, + }, + [130126] = { + ["coords"] = { + [1] = { 54.8, 5.6, 17, 900 }, + }, + }, + [130358] = { + ["coords"] = {}, + }, + [130511] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [130666] = { + ["coords"] = { + [1] = { 46.4, 37.2, 40, 3600 }, + }, + }, + [130667] = { + ["coords"] = { + [1] = { 54.6, 53.6, 40, 3600 }, + }, + }, + [130668] = { + ["coords"] = { + [1] = { 54.6, 53.6, 40, 3600 }, + }, + }, + [131474] = { + ["coords"] = {}, + }, + [131978] = { + ["coords"] = {}, + }, + [131979] = { + ["coords"] = {}, + }, + [133234] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [133466] = { + ["coords"] = { + [1] = { 52.6, 28, 440, 900 }, + }, + }, + [133467] = { + ["coords"] = { + [1] = { 52.6, 28, 440, 900 }, + }, + }, + [133468] = { + ["coords"] = { + [1] = { 52.6, 28, 440, 900 }, + }, + }, + [133469] = { + ["coords"] = { + [1] = { 52.6, 27.9, 440, 900 }, + }, + }, + [136101] = { + ["coords"] = { + [1] = { 70.9, 28.7, 1497, 900 }, + }, + }, + [136922] = { + ["coords"] = {}, + }, + [136923] = { + ["coords"] = {}, + }, + [136925] = { + ["coords"] = {}, + }, + [136926] = { + ["coords"] = {}, + }, + [136927] = { + ["coords"] = {}, + }, + [136928] = { + ["coords"] = {}, + }, + [136929] = { + ["coords"] = {}, + }, + [136930] = { + ["coords"] = {}, + }, + [136931] = { + ["coords"] = {}, + }, + [136932] = { + ["coords"] = {}, + }, + [136933] = { + ["coords"] = {}, + }, + [136934] = { + ["coords"] = {}, + }, + [136935] = { + ["coords"] = {}, + }, + [136936] = { + ["coords"] = {}, + }, + [136937] = { + ["coords"] = {}, + }, + [136938] = { + ["coords"] = {}, + }, + [136939] = { + ["coords"] = {}, + }, + [136940] = { + ["coords"] = {}, + }, + [136941] = { + ["coords"] = {}, + }, + [136942] = { + ["coords"] = {}, + }, + [136943] = { + ["coords"] = {}, + }, + [136944] = { + ["coords"] = {}, + }, + [136945] = { + ["coords"] = {}, + }, + [136946] = { + ["coords"] = {}, + }, + [136947] = { + ["coords"] = {}, + }, + [136948] = { + ["coords"] = {}, + }, + [136949] = { + ["coords"] = {}, + }, + [136950] = { + ["coords"] = {}, + }, + [136951] = { + ["coords"] = {}, + }, + [136952] = { + ["coords"] = {}, + }, + [136954] = { + ["coords"] = {}, + }, + [136955] = { + ["coords"] = {}, + }, + [136957] = { + ["coords"] = {}, + }, + [136959] = { + ["coords"] = {}, + }, + [136961] = { + ["coords"] = {}, + }, + [136962] = { + ["coords"] = {}, + }, + [136963] = { + ["coords"] = {}, + }, + [136964] = { + ["coords"] = {}, + }, + [136965] = { + ["coords"] = {}, + }, + [136966] = { + ["coords"] = {}, + }, + [137167] = { + ["coords"] = {}, + }, + [137644] = { + ["coords"] = { + [1] = { 23.4, 61, 1537, 900 }, + }, + }, + [137646] = { + ["coords"] = { + [1] = { 32.9, 78.3, 1537, 900 }, + }, + }, + [137647] = { + ["coords"] = { + [1] = { 58.4, 44.3, 1537, 900 }, + }, + }, + [138316] = { + ["coords"] = { + [1] = { 45, 57.7, 17, 900 }, + }, + }, + [138317] = { + ["coords"] = { + [1] = { 45.1, 57.7, 17, 900 }, + }, + }, + [138318] = { + ["coords"] = { + [1] = { 44.7, 59, 17, 900 }, + }, + }, + [138492] = { + ["coords"] = { + [1] = { 62.5, 33.7, 45, 10 }, + }, + }, + [138493] = { + ["coords"] = {}, + }, + [138496] = { + ["coords"] = { + [1] = { 29.9, 53.4, 405, 900 }, + }, + }, + [138497] = { + ["coords"] = { + [1] = { 29.8, 53.5, 405, 900 }, + }, + ["fac"] = "AH", + }, + [138498] = { + ["coords"] = { + [1] = { 25.4, 64.7, 141, 900 }, + [2] = { 39.2, 85.6, 1657, 900 }, + }, + }, + [138614] = { + ["coords"] = { + [1] = { 6.7, 59.4, 11, 7200 }, + [2] = { 67.6, 58.5, 15, 900 }, + [3] = { 77.1, 56.1, 15, 900 }, + [4] = { 68.9, 55.9, 15, 900 }, + }, + }, + [139852] = { + ["coords"] = { + [1] = { 38.8, 86.9, 1537, 0 }, + }, + }, + [140105] = { + ["coords"] = { + [1] = { 91.9, 53.9, 331, 900 }, + }, + }, + [140106] = { + ["coords"] = {}, + }, + [140107] = { + ["coords"] = {}, + }, + [140108] = { + ["coords"] = {}, + }, + [140109] = { + ["coords"] = { + [1] = { 88.8, 58.2, 331, 900 }, + }, + }, + [140110] = { + ["coords"] = { + [1] = { 89.3, 57.7, 331, 900 }, + }, + }, + [140111] = { + ["coords"] = { + [1] = { 89.5, 57.4, 331, 900 }, + }, + }, + [140112] = { + ["coords"] = { + [1] = { 88.6, 59.4, 331, 900 }, + }, + }, + [140113] = { + ["coords"] = { + [1] = { 89.3, 62.8, 331, 900 }, + }, + }, + [140211] = { + ["coords"] = { + [1] = { 44.8, 39.7, 17, 900 }, + }, + }, + [140212] = { + ["coords"] = { + [1] = { 45.7, 41.5, 17, 900 }, + }, + }, + [140213] = { + ["coords"] = { + [1] = { 47.3, 41.8, 17, 900 }, + }, + }, + [140214] = { + ["coords"] = { + [1] = { 48.7, 39.4, 17, 900 }, + }, + }, + [140357] = { + ["coords"] = { + [1] = { 22.1, 51.4, 16, 180 }, + }, + }, + [140358] = { + ["coords"] = { + [1] = { 19.2, 63.8, 16, 180 }, + }, + }, + [140359] = { + ["coords"] = { + [1] = { 19.5, 63.9, 16, 180 }, + }, + }, + [140360] = { + ["coords"] = { + [1] = { 49.6, 56.2, 16, 180 }, + }, + }, + [140372] = { + ["coords"] = {}, + }, + [140373] = { + ["coords"] = {}, + }, + [140374] = { + ["coords"] = {}, + }, + [140375] = { + ["coords"] = {}, + }, + [140376] = { + ["coords"] = {}, + }, + [140378] = { + ["coords"] = {}, + }, + [140379] = { + ["coords"] = {}, + }, + [140380] = { + ["coords"] = {}, + }, + [140381] = { + ["coords"] = {}, + }, + [140382] = { + ["coords"] = {}, + }, + [140383] = { + ["coords"] = {}, + }, + [140384] = { + ["coords"] = {}, + }, + [140385] = { + ["coords"] = {}, + }, + [140386] = { + ["coords"] = {}, + }, + [140387] = { + ["coords"] = {}, + }, + [140388] = { + ["coords"] = {}, + }, + [140389] = { + ["coords"] = {}, + }, + [140390] = { + ["coords"] = {}, + }, + [140391] = { + ["coords"] = {}, + }, + [140392] = { + ["coords"] = {}, + }, + [140393] = { + ["coords"] = {}, + }, + [140394] = { + ["coords"] = {}, + }, + [140395] = { + ["coords"] = {}, + }, + [140396] = { + ["coords"] = {}, + }, + [140397] = { + ["coords"] = {}, + }, + [140398] = { + ["coords"] = {}, + }, + [140399] = { + ["coords"] = {}, + }, + [140400] = { + ["coords"] = {}, + }, + [140401] = { + ["coords"] = {}, + }, + [140402] = { + ["coords"] = {}, + }, + [140403] = { + ["coords"] = {}, + }, + [140439] = { + ["coords"] = {}, + }, + [140908] = { + ["coords"] = {}, + }, + [140911] = { + ["coords"] = { + [1] = { 39.9, 46.1, 1519, 10 }, + }, + }, + [140931] = { + ["coords"] = { + [1] = { 46.2, 90.3, 17, 900 }, + }, + }, + [140971] = { + ["coords"] = { + [1] = { 50.4, 78.5, 440, 180 }, + [2] = { 40.3, 77.4, 440, 180 }, + [3] = { 43.2, 77.3, 440, 180 }, + [4] = { 49.1, 77.3, 440, 180 }, + [5] = { 46.9, 76.1, 440, 180 }, + [6] = { 41, 74.8, 440, 180 }, + [7] = { 40.4, 74.7, 440, 180 }, + [8] = { 39.7, 74.5, 440, 180 }, + [9] = { 42.1, 74.4, 440, 180 }, + [10] = { 41.5, 73.7, 440, 180 }, + [11] = { 39.6, 73.5, 440, 180 }, + [12] = { 40.3, 73.4, 440, 180 }, + [13] = { 42, 73.3, 440, 180 }, + [14] = { 39.9, 73.2, 440, 180 }, + [15] = { 38.9, 73, 440, 180 }, + [16] = { 40.3, 72.8, 440, 180 }, + [17] = { 48.4, 72.8, 440, 180 }, + [18] = { 41.4, 72.7, 440, 180 }, + [19] = { 40.8, 72.2, 440, 180 }, + [20] = { 39.9, 72.1, 440, 180 }, + [21] = { 41, 71.7, 440, 180 }, + [22] = { 41.2, 71.6, 440, 180 }, + [23] = { 41.2, 71.5, 440, 180 }, + [24] = { 40.6, 71.4, 440, 180 }, + [25] = { 41.2, 71.1, 440, 180 }, + [26] = { 39.1, 70.7, 440, 180 }, + [27] = { 46.2, 70.3, 440, 180 }, + [28] = { 49.7, 69.1, 440, 180 }, + [29] = { 40.3, 68.9, 440, 180 }, + [30] = { 48, 67.5, 440, 180 }, + [31] = { 47.8, 67.1, 440, 180 }, + [32] = { 47.2, 67, 440, 180 }, + [33] = { 45.8, 66.9, 440, 180 }, + [34] = { 47.8, 66.2, 440, 180 }, + [35] = { 48.1, 66.1, 440, 180 }, + [36] = { 47.2, 66.1, 440, 180 }, + [37] = { 45.3, 65.9, 440, 180 }, + [38] = { 38.9, 65.9, 440, 180 }, + [39] = { 48, 65.8, 440, 180 }, + [40] = { 47.8, 65.7, 440, 180 }, + [41] = { 46.1, 65.6, 440, 180 }, + [42] = { 46.7, 65.6, 440, 180 }, + [43] = { 47.6, 65.6, 440, 180 }, + [44] = { 44.7, 65.2, 440, 180 }, + [45] = { 47.9, 65, 440, 180 }, + [46] = { 48.2, 64.8, 440, 180 }, + [47] = { 45.6, 64.6, 440, 180 }, + [48] = { 47.1, 64.5, 440, 180 }, + [49] = { 45.5, 64.4, 440, 180 }, + [50] = { 44.9, 64.4, 440, 180 }, + [51] = { 48, 64.3, 440, 180 }, + [52] = { 47.8, 64.2, 440, 180 }, + [53] = { 46.5, 64.2, 440, 180 }, + [54] = { 46.9, 64.1, 440, 180 }, + [55] = { 51.3, 64.1, 440, 180 }, + [56] = { 47.3, 63.5, 440, 180 }, + [57] = { 46.2, 63.3, 440, 180 }, + [58] = { 43.1, 62.1, 440, 180 }, + [59] = { 38.4, 61.9, 440, 180 }, + [60] = { 50.7, 61.2, 440, 180 }, + [61] = { 55.6, 60.1, 440, 180 }, + [62] = { 49.6, 59.2, 440, 180 }, + [63] = { 42.2, 58.6, 440, 180 }, + [64] = { 57.8, 57.9, 440, 180 }, + [65] = { 53.5, 57.8, 440, 180 }, + [66] = { 47.6, 57.3, 440, 180 }, + [67] = { 36.1, 56.5, 440, 180 }, + [68] = { 41.7, 56.3, 440, 180 }, + [69] = { 52.9, 52.7, 440, 180 }, + [70] = { 48, 52.7, 440, 180 }, + [71] = { 56.7, 52.4, 440, 180 }, + [72] = { 36.3, 52.3, 440, 180 }, + [73] = { 45.1, 52, 440, 180 }, + [74] = { 39.4, 51.6, 440, 180 }, + [75] = { 52.3, 50.9, 440, 180 }, + [76] = { 46.1, 49.4, 440, 180 }, + [77] = { 58.1, 48.8, 440, 180 }, + [78] = { 55.6, 47.7, 440, 180 }, + [79] = { 53.5, 47.7, 440, 180 }, + [80] = { 57.1, 47.6, 440, 180 }, + [81] = { 40.1, 47.3, 440, 180 }, + [82] = { 53.7, 46.2, 440, 180 }, + [83] = { 44.2, 45.7, 440, 180 }, + [84] = { 52.3, 45.3, 440, 180 }, + [85] = { 53.2, 45.1, 440, 180 }, + [86] = { 48.4, 44.5, 440, 180 }, + [87] = { 53, 44, 440, 180 }, + [88] = { 40.8, 43.5, 440, 180 }, + [89] = { 40.8, 39.2, 440, 180 }, + [90] = { 54.8, 39, 440, 180 }, + [91] = { 44.8, 38.8, 440, 180 }, + [92] = { 47.5, 38.5, 440, 180 }, + [93] = { 52, 37.3, 440, 180 }, + [94] = { 49.6, 35.9, 440, 180 }, + [95] = { 56.7, 35.3, 440, 180 }, + [96] = { 36.8, 35.2, 440, 180 }, + [97] = { 44.9, 33.9, 440, 180 }, + [98] = { 53.8, 33.3, 440, 180 }, + [99] = { 52.1, 32.1, 440, 180 }, + [100] = { 40, 31.1, 440, 180 }, + [101] = { 47.1, 30.4, 440, 180 }, + [102] = { 37.7, 29.6, 440, 180 }, + [103] = { 57.8, 28.9, 440, 180 }, + [104] = { 48.6, 28.7, 440, 180 }, + [105] = { 45.2, 27, 440, 180 }, + [106] = { 42.8, 26.1, 440, 180 }, + [107] = { 58.1, 24.5, 440, 180 }, + }, + }, + [141069] = { + ["coords"] = { + [1] = { 76.7, 48.2, 357, 900 }, + }, + }, + [141070] = { + ["coords"] = {}, + }, + [141071] = { + ["coords"] = {}, + }, + [141072] = { + ["coords"] = {}, + }, + [141073] = { + ["coords"] = {}, + }, + [141074] = { + ["coords"] = {}, + }, + [141076] = { + ["coords"] = {}, + }, + [141077] = { + ["coords"] = {}, + }, + [141078] = { + ["coords"] = {}, + }, + [141596] = { + ["coords"] = {}, + }, + [141610] = { + ["coords"] = { + [1] = { 80.2, 35, 357, 900 }, + }, + }, + [141611] = { + ["coords"] = { + [1] = { 79.7, 34.9, 357, 900 }, + }, + }, + [141612] = { + ["coords"] = {}, + }, + [141812] = { + ["coords"] = { + [1] = { 53.3, 59.7, 4, 300 }, + [2] = { 51.3, 57.7, 4, 300 }, + [3] = { 63.1, 57.2, 4, 300 }, + [4] = { 63.8, 55.9, 4, 300 }, + [5] = { 54, 53.6, 4, 300 }, + [6] = { 62.2, 51.6, 4, 300 }, + [7] = { 55.4, 50.6, 4, 300 }, + [8] = { 60, 50, 4, 300 }, + [9] = { 58, 49.2, 4, 300 }, + }, + }, + [141813] = { + ["coords"] = { + [1] = { 25.9, 62.5, 15, 900 }, + [2] = { 48.9, 86.3, 17, 900 }, + }, + }, + [141832] = { + ["coords"] = {}, + }, + [141838] = { + ["coords"] = { + [1] = { 51.4, 28.8, 440, 900 }, + }, + }, + [141839] = { + ["coords"] = { + [1] = { 51.4, 28.7, 440, 900 }, + }, + }, + [141840] = { + ["coords"] = { + [1] = { 65.3, 32.9, 440, 900 }, + }, + }, + [141841] = { + ["coords"] = { + [1] = { 65.3, 32.9, 440, 900 }, + }, + }, + [141843] = { + ["coords"] = { + [1] = { 65.5, 36.7, 440, 900 }, + }, + }, + [141844] = { + ["coords"] = { + [1] = { 36.8, 77.1, 440, 900 }, + }, + }, + [141845] = { + ["coords"] = { + [1] = { 63.3, 33.2, 440, 900 }, + }, + }, + [141851] = { + ["coords"] = {}, + }, + [141852] = { + ["coords"] = {}, + }, + [141853] = { + ["coords"] = { + [1] = { 41, 60.3, 47, 180 }, + [2] = { 39.5, 60, 47, 180 }, + [3] = { 40.1, 59.8, 47, 180 }, + [4] = { 41, 59.8, 47, 180 }, + [5] = { 40.7, 59.1, 47, 180 }, + [6] = { 41.6, 58.9, 47, 180 }, + }, + }, + [141857] = { + ["coords"] = { + [1] = { 49.8, 43.9, 4, 300 }, + [2] = { 41.5, 13.1, 4, 300 }, + [3] = { 43.6, 11.9, 4, 300 }, + }, + }, + [141858] = { + ["coords"] = { + [1] = { 64.5, 46.8, 4, 300 }, + [2] = { 63.9, 40.5, 4, 300 }, + [3] = { 65, 34.5, 4, 300 }, + }, + }, + [141859] = { + ["coords"] = { + [1] = { 42.8, 41.4, 4, 300 }, + [2] = { 41.3, 39.7, 4, 300 }, + [3] = { 38.1, 33.5, 4, 300 }, + }, + }, + [141860] = { + ["coords"] = { + [1] = { 60.4, 54.8, 17, 900 }, + }, + }, + [141861] = { + ["coords"] = { + [1] = { 60.5, 54.7, 17, 900 }, + }, + }, + [141862] = { + ["coords"] = { + [1] = { 53.4, 5.1, 15, 900 }, + [2] = { 63.2, 56.6, 17, 900 }, + }, + }, + [141863] = { + ["coords"] = { + [1] = { 53.4, 5.3, 15, 900 }, + [2] = { 63.2, 56.7, 17, 900 }, + }, + }, + [141869] = { + ["coords"] = {}, + }, + [141870] = { + ["coords"] = { + [1] = { 49.8, 91.7, 16, 180 }, + }, + }, + [141871] = { + ["coords"] = { + [1] = { 31.7, 27.9, 17, 900 }, + [2] = { 78.5, 97.9, 406, 900 }, + }, + }, + [141891] = { + ["coords"] = {}, + }, + [141892] = { + ["coords"] = {}, + }, + [141931] = { + ["coords"] = { + [1] = { 57, 78.2, 357, 10 }, + [2] = { 56.4, 77.4, 357, 10 }, + [3] = { 57.3, 77.3, 357, 10 }, + [4] = { 56.7, 76.7, 357, 10 }, + [5] = { 58.3, 76.7, 357, 10 }, + [6] = { 58, 76.3, 357, 10 }, + [7] = { 58.5, 76.1, 357, 10 }, + [8] = { 55.9, 76, 357, 10 }, + [9] = { 56.7, 75.9, 357, 10 }, + [10] = { 58.6, 75.5, 357, 10 }, + [11] = { 53.7, 74.4, 357, 10 }, + }, + ["fac"] = "AH", + }, + [141971] = { + ["coords"] = { + [1] = { 44.5, 37.7, 17, 900 }, + }, + }, + [141972] = { + ["coords"] = { + [1] = { 43.6, 23.6, 17, 900 }, + }, + }, + [141979] = { + ["coords"] = {}, + }, + [141980] = { + ["coords"] = {}, + }, + [141981] = { + ["coords"] = {}, + }, + [142018] = { + ["coords"] = { + [1] = { 62.3, 46.1, 17, 900 }, + }, + }, + [142019] = { + ["coords"] = { + [1] = { 62.2, 47.4, 17, 900 }, + }, + }, + [142020] = { + ["coords"] = { + [1] = { 61.6, 48, 17, 900 }, + }, + }, + [142021] = { + ["coords"] = { + [1] = { 61.5, 48.9, 17, 900 }, + }, + }, + [142036] = { + ["coords"] = { + [1] = { 30.7, 46.9, 47, 7200 }, + }, + }, + [142071] = { + ["coords"] = { + [1] = { 52.4, 27, 440, 10 }, + }, + ["fac"] = "AH", + }, + [142073] = { + ["coords"] = { + [1] = { 45.8, 16.5, 357, 900 }, + }, + }, + [142075] = { + ["coords"] = { + [1] = { 42.9, 65.5, 12, 900 }, + }, + ["fac"] = "A", + }, + [142076] = { + ["coords"] = { + [1] = { 34, 57.2, 12, 20 }, + }, + }, + [142077] = { + ["coords"] = { + [1] = { 50.6, 20.5, 33, 900 }, + }, + }, + [142078] = { + ["coords"] = { + [1] = { 50.6, 20.5, 33, 900 }, + }, + }, + [142079] = { + ["coords"] = { + [1] = { 50.6, 20.7, 33, 900 }, + }, + }, + [142088] = { + ["coords"] = {}, + }, + [142089] = { + ["coords"] = { + [1] = { 73.7, 46.1, 10, 3600 }, + }, + ["fac"] = "A", + }, + [142090] = { + ["coords"] = { + [1] = { 45.1, 25.4, 357, 900 }, + }, + }, + [142091] = { + ["coords"] = { + [1] = { 42.4, 22.1, 357, 900 }, + }, + }, + [142093] = { + ["coords"] = { + [1] = { 26.4, 46.5, 44, 7200 }, + }, + ["fac"] = "A", + }, + [142094] = { + ["coords"] = { + [1] = { 10.9, 59.7, 11, 7200 }, + }, + ["fac"] = "A", + }, + [142095] = { + ["coords"] = { + [1] = { 66, 45.3, 15, 900 }, + }, + ["fac"] = "A", + }, + [142101] = { + ["coords"] = { + [1] = { 42.5, 92.3, 215, 900 }, + }, + }, + [142102] = { + ["coords"] = { + [1] = { 47, 52.6, 1, 900 }, + }, + ["fac"] = "A", + }, + [142103] = { + ["coords"] = { + [1] = { 34.8, 47.7, 38, 7200 }, + }, + ["fac"] = "A", + }, + [142109] = { + ["coords"] = { + [1] = { 56.1, 58.4, 141, 900 }, + }, + ["fac"] = "A", + }, + [142110] = { + ["coords"] = { + [1] = { 25.9, 55.6, 141, 900 }, + [2] = { 41.6, 41.8, 1657, 900 }, + }, + ["fac"] = "A", + }, + [142111] = { + ["coords"] = { + [1] = { 37.3, 43.7, 148, 900 }, + }, + ["fac"] = "A", + }, + [142117] = { + ["coords"] = { + [1] = { 36.3, 50.2, 331, 900 }, + }, + ["fac"] = "A", + }, + [142118] = { + ["coords"] = { + [1] = { 64.6, 77.7, 215, 900 }, + }, + }, + [142119] = { + ["coords"] = { + [1] = { 31.3, 43.8, 357, 900 }, + }, + ["fac"] = "A", + }, + [142121] = { + ["coords"] = { + [1] = { 57, 82.5, 16, 180 }, + }, + }, + [142122] = { + ["coords"] = { + [1] = { 66.8, 22.3, 440, 10 }, + }, + ["fac"] = "AH", + }, + [142123] = { + ["coords"] = { + [1] = { 58.7, 28.4, 16, 180 }, + }, + }, + [142124] = { + ["coords"] = { + [1] = { 56.4, 28.9, 16, 180 }, + }, + }, + [142127] = { + ["coords"] = { + [1] = { 86.3, 59, 47, 10 }, + }, + ["fac"] = "H", + }, + [142131] = { + ["coords"] = { + [1] = { 36.1, 40.9, 17, 900 }, + [2] = { 59.9, 25.6, 215, 900 }, + }, + }, + [142139] = { + ["coords"] = { + [1] = { 64.1, 59.8, 47, 7200 }, + }, + }, + [142140] = { + ["coords"] = { + [1] = { 20.8, 42.9, 3, 300 }, + [2] = { 44.4, 38.5, 3, 300 }, + [3] = { 53.9, 33.9, 3, 300 }, + [4] = { 46.7, 10.8, 3, 300 }, + [5] = { 39.1, 85.5, 16, 300 }, + [6] = { 42.4, 84.8, 16, 300 }, + [7] = { 31.6, 80.8, 16, 300 }, + [8] = { 26.4, 79.1, 16, 300 }, + [9] = { 33.5, 78.1, 16, 300 }, + [10] = { 14.5, 73.4, 16, 300 }, + [11] = { 13.6, 73.3, 16, 300 }, + [12] = { 36.1, 72.6, 16, 300 }, + [13] = { 18, 69.4, 16, 300 }, + [14] = { 16.5, 69.4, 16, 300 }, + [15] = { 17.6, 66.5, 16, 300 }, + [16] = { 39, 64.9, 16, 300 }, + [17] = { 42.9, 64.4, 16, 300 }, + [18] = { 19.1, 63.2, 16, 300 }, + [19] = { 21.2, 61.9, 16, 300 }, + [20] = { 21, 61.8, 16, 300 }, + [21] = { 35.3, 61.5, 16, 300 }, + [22] = { 26.1, 61.1, 16, 300 }, + [23] = { 40, 61.1, 16, 300 }, + [24] = { 29.9, 60.7, 16, 300 }, + [25] = { 19.6, 60.3, 16, 300 }, + [26] = { 33.2, 59.9, 16, 300 }, + [27] = { 23.9, 59.3, 16, 300 }, + [28] = { 39.4, 58.7, 16, 300 }, + [29] = { 36.6, 58.6, 16, 300 }, + [30] = { 35.3, 58.4, 16, 300 }, + [31] = { 32, 58.2, 16, 300 }, + [32] = { 31.8, 57.4, 16, 300 }, + [33] = { 41.2, 57, 16, 300 }, + [34] = { 26, 56.4, 16, 300 }, + [35] = { 35.5, 56.1, 16, 300 }, + [36] = { 31.1, 55.5, 16, 300 }, + [37] = { 38.2, 54.9, 16, 300 }, + [38] = { 29.4, 53, 16, 300 }, + [39] = { 34.8, 52.5, 16, 300 }, + [40] = { 35.7, 52.1, 16, 300 }, + [41] = { 32, 51.7, 16, 300 }, + [42] = { 25.9, 51.6, 16, 300 }, + [43] = { 41.8, 51.4, 16, 300 }, + [44] = { 39.4, 50.8, 16, 300 }, + [45] = { 38.4, 49.9, 16, 300 }, + [46] = { 27.4, 49.7, 16, 300 }, + [47] = { 34.6, 49.3, 16, 300 }, + [48] = { 36.3, 48.8, 16, 300 }, + [49] = { 42.1, 46.8, 16, 300 }, + [50] = { 40.1, 45.9, 16, 300 }, + [51] = { 37, 45.7, 16, 300 }, + [52] = { 42.5, 44.5, 16, 300 }, + [53] = { 38.9, 44.3, 16, 300 }, + [54] = { 42.8, 39.9, 16, 300 }, + [55] = { 76.2, 36.2, 16, 300 }, + [56] = { 80.8, 34.8, 16, 300 }, + [57] = { 59.7, 31.2, 16, 300 }, + [58] = { 56.6, 27.9, 16, 300 }, + [59] = { 61.9, 25.5, 16, 300 }, + [60] = { 67.5, 19.7, 16, 300 }, + [61] = { 51.2, 18.9, 16, 300 }, + [62] = { 28.2, 63.6, 33, 300 }, + [63] = { 27.4, 62.8, 33, 300 }, + [64] = { 39.3, 59, 33, 300 }, + [65] = { 40, 57.8, 33, 300 }, + [66] = { 39.1, 57.6, 33, 300 }, + [67] = { 47.6, 43.5, 33, 300 }, + [68] = { 46.1, 43.2, 33, 300 }, + [69] = { 44.4, 42.5, 33, 300 }, + [70] = { 44.1, 41.4, 33, 300 }, + [71] = { 48.5, 40.8, 33, 300 }, + [72] = { 47.8, 40.1, 33, 300 }, + [73] = { 44.6, 39.7, 33, 300 }, + [74] = { 46.7, 39.1, 33, 300 }, + [75] = { 41.9, 36.7, 33, 300 }, + [76] = { 42.5, 36.1, 33, 300 }, + [77] = { 42.3, 34.7, 33, 300 }, + [78] = { 46.5, 32.8, 33, 300 }, + [79] = { 46.1, 31.8, 33, 300 }, + [80] = { 37.7, 30.6, 33, 300 }, + [81] = { 34.8, 23.4, 33, 300 }, + [82] = { 33.7, 16.3, 33, 300 }, + [83] = { 33.4, 15.8, 33, 300 }, + [84] = { 34.1, 15.1, 33, 300 }, + [85] = { 24.3, 13, 33, 300 }, + [86] = { 26.5, 12.2, 33, 300 }, + [87] = { 23.5, 12.2, 33, 300 }, + [88] = { 23.6, 11.8, 33, 300 }, + [89] = { 23.3, 9, 33, 300 }, + [90] = { 45.2, 85.9, 38, 300 }, + [91] = { 86.8, 23, 45, 300 }, + [92] = { 83.7, 19, 45, 300 }, + [93] = { 83.1, 18.3, 45, 300 }, + [94] = { 82.2, 16.7, 45, 300 }, + [95] = { 62.8, 83.8, 47, 300 }, + [96] = { 64.7, 82.9, 47, 300 }, + [97] = { 59.8, 80.1, 47, 300 }, + [98] = { 63, 79.6, 47, 300 }, + [99] = { 67.4, 79.6, 47, 300 }, + [100] = { 59.3, 79.4, 47, 300 }, + [101] = { 65.8, 78.7, 47, 300 }, + [102] = { 68, 78.1, 47, 300 }, + [103] = { 58.5, 77.9, 47, 300 }, + [104] = { 61.6, 77.9, 47, 300 }, + [105] = { 62.5, 77, 47, 300 }, + [106] = { 68.1, 76.8, 47, 300 }, + [107] = { 64.2, 76, 47, 300 }, + [108] = { 60.4, 74.7, 47, 300 }, + [109] = { 63.8, 74.6, 47, 300 }, + [110] = { 67.9, 74.2, 47, 300 }, + [111] = { 65.6, 74.1, 47, 300 }, + [112] = { 68.2, 73.6, 47, 300 }, + [113] = { 31.7, 73.5, 47, 300 }, + [114] = { 62.2, 73.4, 47, 300 }, + [115] = { 36.2, 73.3, 47, 300 }, + [116] = { 56.8, 72.8, 47, 300 }, + [117] = { 58.4, 72.2, 47, 300 }, + [118] = { 65.3, 71.8, 47, 300 }, + [119] = { 66.3, 71.6, 47, 300 }, + [120] = { 65.8, 70.9, 47, 300 }, + [121] = { 47.8, 70, 47, 300 }, + [122] = { 68.4, 70, 47, 300 }, + [123] = { 64.5, 69.8, 47, 300 }, + [124] = { 69.1, 69.5, 47, 300 }, + [125] = { 61.9, 69.2, 47, 300 }, + [126] = { 65.8, 68.1, 47, 300 }, + [127] = { 58.9, 67.8, 47, 300 }, + [128] = { 65.4, 67.8, 47, 300 }, + [129] = { 50.5, 67.5, 47, 300 }, + [130] = { 60.7, 67.4, 47, 300 }, + [131] = { 67.9, 67, 47, 300 }, + [132] = { 31, 66.9, 47, 300 }, + [133] = { 66, 66.8, 47, 300 }, + [134] = { 63.5, 66.5, 47, 300 }, + [135] = { 53.8, 66.4, 47, 300 }, + [136] = { 40.2, 65.4, 47, 300 }, + [137] = { 62, 65.2, 47, 300 }, + [138] = { 65.4, 64.8, 47, 300 }, + [139] = { 60.3, 63.9, 47, 300 }, + [140] = { 57.4, 63.8, 47, 300 }, + [141] = { 24, 59.2, 47, 300 }, + [142] = { 31.2, 58.5, 47, 300 }, + [143] = { 32.8, 58, 47, 300 }, + [144] = { 22.7, 57.5, 47, 300 }, + [145] = { 49.7, 54.3, 47, 300 }, + [146] = { 50, 52.2, 47, 300 }, + [147] = { 57.6, 44.3, 47, 300 }, + [148] = { 57.6, 42.8, 47, 300 }, + [149] = { 47.5, 42, 47, 300 }, + [150] = { 57.7, 41.9, 47, 300 }, + [151] = { 45.4, 41.7, 47, 300 }, + [152] = { 28.8, 95.4, 148, 300 }, + [153] = { 67.2, 56.3, 331, 300 }, + [154] = { 81.2, 49.4, 331, 300 }, + [155] = { 98.3, 47.1, 331, 300 }, + [156] = { 77.3, 46.6, 331, 300 }, + [157] = { 30.6, 44.2, 331, 300 }, + [158] = { 20.4, 42.5, 331, 300 }, + [159] = { 31.2, 39.4, 331, 300 }, + [160] = { 34.2, 38.3, 331, 300 }, + [161] = { 38, 34.9, 331, 300 }, + [162] = { 22.1, 31.2, 331, 300 }, + [163] = { 15.4, 25.9, 331, 300 }, + [164] = { 11.2, 13.1, 331, 300 }, + [165] = { 58.2, 73.8, 357, 300 }, + [166] = { 59.3, 73.5, 357, 300 }, + [167] = { 61.5, 72.8, 357, 300 }, + [168] = { 57, 72.5, 357, 300 }, + [169] = { 59.5, 70.1, 357, 300 }, + [170] = { 57.5, 70, 357, 300 }, + [171] = { 60.4, 69.4, 357, 300 }, + [172] = { 61.1, 68.9, 357, 300 }, + [173] = { 56.7, 68.9, 357, 300 }, + [174] = { 60.5, 68.5, 357, 300 }, + [175] = { 58.2, 68.3, 357, 300 }, + [176] = { 59.9, 67.2, 357, 300 }, + [177] = { 61.9, 67.2, 357, 300 }, + [178] = { 60.6, 67.1, 357, 300 }, + [179] = { 59.2, 66.5, 357, 300 }, + [180] = { 60, 65, 357, 300 }, + [181] = { 60.4, 64.6, 357, 300 }, + [182] = { 26, 63.7, 357, 300 }, + [183] = { 23.9, 63.6, 357, 300 }, + [184] = { 60.1, 62.3, 357, 300 }, + [185] = { 59.6, 57.4, 357, 300 }, + [186] = { 61, 56.9, 357, 300 }, + [187] = { 25.5, 55.2, 357, 300 }, + [188] = { 27.2, 55, 357, 300 }, + [189] = { 61.1, 55, 357, 300 }, + [190] = { 61.6, 54.3, 357, 300 }, + [191] = { 25.4, 52, 357, 300 }, + [192] = { 26.8, 51, 357, 300 }, + [193] = { 25.7, 50.9, 357, 300 }, + [194] = { 60, 47, 357, 300 }, + [195] = { 58.3, 46.8, 357, 300 }, + [196] = { 62.5, 45.1, 357, 300 }, + [197] = { 56.2, 44.6, 357, 300 }, + [198] = { 61.2, 34, 357, 300 }, + [199] = { 64.4, 32.1, 357, 300 }, + [200] = { 60.7, 31.4, 357, 300 }, + [201] = { 60.8, 27.7, 357, 300 }, + [202] = { 64.5, 27.1, 357, 300 }, + [203] = { 62.8, 26, 357, 300 }, + [204] = { 50.9, 20.1, 357, 300 }, + [205] = { 50.7, 17, 357, 300 }, + [206] = { 51.7, 16.3, 357, 300 }, + [207] = { 38.5, 16.3, 357, 300 }, + [208] = { 53.4, 16.3, 357, 300 }, + [209] = { 50.4, 15.7, 357, 300 }, + [210] = { 49.4, 15.5, 357, 300 }, + [211] = { 39, 15.4, 357, 300 }, + [212] = { 38.2, 14.3, 357, 300 }, + [213] = { 39.9, 14.1, 357, 300 }, + [214] = { 37.6, 12.7, 357, 300 }, + [215] = { 39.5, 12.5, 357, 300 }, + [216] = { 41.1, 12.3, 357, 300 }, + [217] = { 40.6, 11.8, 357, 300 }, + [218] = { 39.9, 11.1, 357, 300 }, + [219] = { 39.1, 10.7, 357, 300 }, + [220] = { 41.4, 9.4, 357, 300 }, + [221] = { 40.4, 8.6, 357, 300 }, + [222] = { 37.5, 81.7, 440, 300 }, + [223] = { 36.5, 81.2, 440, 300 }, + [224] = { 38, 80.2, 440, 300 }, + [225] = { 40.4, 74.1, 440, 300 }, + [226] = { 41.6, 74.1, 440, 300 }, + [227] = { 39.4, 74, 440, 300 }, + [228] = { 39.5, 72.8, 440, 300 }, + [229] = { 40.2, 72.8, 440, 300 }, + [230] = { 40.6, 71.9, 440, 300 }, + [231] = { 40.7, 71.1, 440, 300 }, + [232] = { 47.3, 67.1, 440, 300 }, + [233] = { 47.8, 67, 440, 300 }, + [234] = { 46.7, 66.4, 440, 300 }, + [235] = { 44.7, 65.9, 440, 300 }, + [236] = { 47.9, 65.7, 440, 300 }, + [237] = { 47.1, 65.3, 440, 300 }, + [238] = { 47.3, 64.5, 440, 300 }, + [239] = { 45.4, 64.4, 440, 300 }, + [240] = { 47.9, 64.4, 440, 300 }, + [241] = { 46.8, 64.2, 440, 300 }, + [242] = { 63.5, 52.9, 440, 300 }, + [243] = { 65.1, 52.2, 440, 300 }, + [244] = { 62.6, 51.7, 440, 300 }, + [245] = { 63.6, 49.3, 440, 300 }, + [246] = { 53.7, 47.5, 440, 300 }, + [247] = { 52.6, 45.9, 440, 300 }, + [248] = { 52.6, 45.2, 440, 300 }, + [249] = { 53.4, 44.8, 440, 300 }, + [250] = { 52.3, 44.2, 440, 300 }, + [251] = { 60.2, 24.5, 440, 300 }, + [252] = { 59.9, 24.2, 440, 300 }, + [253] = { 60.6, 24.2, 440, 300 }, + [254] = { 60.8, 23.7, 440, 300 }, + [255] = { 60, 23.5, 440, 300 }, + [256] = { 60.4, 23.4, 440, 300 }, + [257] = { 59.3, 23.3, 440, 300 }, + [258] = { 59.9, 22.9, 440, 300 }, + [259] = { 60.8, 22.7, 440, 300 }, + [260] = { 60.3, 22.7, 440, 300 }, + [261] = { 38.8, 21, 440, 300 }, + [262] = { 39.2, 20.9, 440, 300 }, + [263] = { 38.3, 20.7, 440, 300 }, + [264] = { 39.2, 20.4, 440, 300 }, + }, + }, + [142141] = { + ["coords"] = { + [1] = { 49, 79.9, 28, 300 }, + [2] = { 52.9, 79.3, 28, 300 }, + [3] = { 44.8, 73.1, 28, 300 }, + [4] = { 39.4, 69.5, 28, 300 }, + [5] = { 51.9, 69.2, 28, 300 }, + [6] = { 45.6, 67.4, 28, 300 }, + [7] = { 41, 66.9, 28, 300 }, + [8] = { 40.8, 66.7, 28, 300 }, + [9] = { 46.9, 66.7, 28, 300 }, + [10] = { 38, 65.7, 28, 300 }, + [11] = { 83.7, 65.1, 28, 300 }, + [12] = { 56.5, 63.7, 28, 300 }, + [13] = { 48, 63.6, 28, 300 }, + [14] = { 50.8, 63.3, 28, 300 }, + [15] = { 32.8, 63.1, 28, 300 }, + [16] = { 40.2, 62.7, 28, 300 }, + [17] = { 78.9, 62.6, 28, 300 }, + [18] = { 60.4, 61.4, 28, 300 }, + [19] = { 30.2, 60.5, 28, 300 }, + [20] = { 46.8, 59.2, 28, 300 }, + [21] = { 65.7, 57.2, 28, 300 }, + [22] = { 30.8, 56.4, 28, 300 }, + [23] = { 35.6, 54.2, 28, 300 }, + [24] = { 57.2, 53.9, 28, 300 }, + [25] = { 61, 53.2, 28, 300 }, + [26] = { 41.8, 52.8, 28, 300 }, + [27] = { 44.1, 50.4, 28, 300 }, + [28] = { 62.9, 49.2, 28, 300 }, + [29] = { 51, 47.7, 28, 300 }, + [30] = { 46.5, 47.3, 28, 300 }, + [31] = { 53.3, 44.3, 28, 300 }, + [32] = { 46.3, 42.1, 28, 300 }, + [33] = { 44.8, 36.1, 28, 300 }, + [34] = { 49.6, 32.9, 28, 300 }, + [35] = { 55.3, 32.2, 28, 300 }, + [36] = { 53.8, 23.2, 28, 300 }, + [37] = { 45.3, 17, 28, 300 }, + [38] = { 42.4, 16.7, 28, 300 }, + [39] = { 46.1, 12.8, 28, 300 }, + [40] = { 86.7, 73.2, 85, 300 }, + [41] = { 87.3, 69.3, 85, 300 }, + [42] = { 91.8, 67.2, 85, 300 }, + [43] = { 25.8, 89.1, 139, 300 }, + [44] = { 20.5, 86.3, 139, 300 }, + [45] = { 45.2, 84.6, 139, 300 }, + [46] = { 33.9, 83.2, 139, 300 }, + [47] = { 46.4, 79.7, 139, 300 }, + [48] = { 31, 75.7, 139, 300 }, + [49] = { 72.5, 72.7, 139, 300 }, + [50] = { 37.4, 72.2, 139, 300 }, + [51] = { 45.9, 71.7, 139, 300 }, + [52] = { 66, 70.3, 139, 300 }, + [53] = { 40.8, 69.3, 139, 300 }, + [54] = { 32.2, 68.6, 139, 300 }, + [55] = { 79.1, 67.4, 139, 300 }, + [56] = { 46.5, 66.4, 139, 300 }, + [57] = { 51, 61.8, 139, 300 }, + [58] = { 65.9, 59, 139, 300 }, + [59] = { 79.1, 57.7, 139, 300 }, + [60] = { 68.5, 51.6, 139, 300 }, + [61] = { 50.7, 44.6, 139, 300 }, + [62] = { 46.6, 43.3, 139, 300 }, + [63] = { 67.3, 42.5, 139, 300 }, + [64] = { 44.3, 40.7, 139, 300 }, + [65] = { 72.4, 40.3, 139, 300 }, + [66] = { 48.5, 36.4, 139, 300 }, + [67] = { 40.8, 35.4, 139, 300 }, + [68] = { 74.3, 34.7, 139, 300 }, + [69] = { 59.6, 34.3, 139, 300 }, + [70] = { 65.9, 33.7, 139, 300 }, + [71] = { 53.3, 33, 139, 300 }, + [72] = { 37.6, 31.8, 139, 300 }, + [73] = { 31, 30.6, 139, 300 }, + [74] = { 54.3, 26.3, 139, 300 }, + [75] = { 23.3, 25.3, 139, 300 }, + [76] = { 27.3, 23.5, 139, 300 }, + [77] = { 34.4, 23.4, 139, 300 }, + [78] = { 39.8, 19.2, 139, 300 }, + }, + }, + [142142] = { + ["coords"] = { + [1] = { 53.3, 57.2, 4, 300 }, + [2] = { 51.9, 54.3, 4, 300 }, + [3] = { 54.4, 53.1, 4, 300 }, + [4] = { 62.7, 52, 4, 300 }, + [5] = { 46.1, 50.3, 4, 300 }, + [6] = { 60.2, 49.9, 4, 300 }, + [7] = { 46.3, 47.3, 4, 300 }, + [8] = { 57.8, 47.2, 4, 300 }, + [9] = { 62.7, 45.5, 4, 300 }, + [10] = { 59.9, 43.8, 4, 300 }, + [11] = { 47.1, 40.1, 4, 300 }, + [12] = { 51.3, 38.1, 4, 300 }, + [13] = { 60.7, 37.7, 4, 300 }, + [14] = { 45.2, 35.3, 4, 300 }, + [15] = { 57.9, 34.8, 4, 300 }, + [16] = { 63.3, 33.7, 4, 300 }, + [17] = { 56.1, 30.9, 4, 300 }, + [18] = { 61.9, 28.8, 4, 300 }, + [19] = { 44.9, 24.7, 4, 300 }, + [20] = { 47, 20, 4, 300 }, + [21] = { 66.7, 90.6, 16, 300 }, + [22] = { 70.6, 90.1, 16, 300 }, + [23] = { 55, 89.9, 16, 300 }, + [24] = { 58.1, 88.6, 16, 300 }, + [25] = { 63.3, 87.5, 16, 300 }, + [26] = { 71.1, 85.1, 16, 300 }, + [27] = { 37.3, 84.2, 16, 300 }, + [28] = { 55.1, 84, 16, 300 }, + [29] = { 34.8, 83.3, 16, 300 }, + [30] = { 52, 82.6, 16, 300 }, + [31] = { 69.7, 82.3, 16, 300 }, + [32] = { 60.5, 82.2, 16, 300 }, + [33] = { 30.3, 82.1, 16, 300 }, + [34] = { 49.2, 81.5, 16, 300 }, + [35] = { 13.6, 81, 16, 300 }, + [36] = { 27.7, 80.6, 16, 300 }, + [37] = { 46.2, 79.7, 16, 300 }, + [38] = { 17.7, 79.7, 16, 300 }, + [39] = { 21.7, 78.7, 16, 300 }, + [40] = { 20.2, 76.7, 16, 300 }, + [41] = { 39.6, 74.9, 16, 300 }, + [42] = { 46.1, 74.7, 16, 300 }, + [43] = { 54.8, 74, 16, 300 }, + [44] = { 38.4, 71.8, 16, 300 }, + [45] = { 17.4, 70.7, 16, 300 }, + [46] = { 41.7, 70, 16, 300 }, + [47] = { 16.6, 68.6, 16, 300 }, + [48] = { 37, 67.8, 16, 300 }, + [49] = { 19.2, 65, 16, 300 }, + [50] = { 33.2, 61.1, 16, 300 }, + [51] = { 18.1, 60.9, 16, 300 }, + [52] = { 22.8, 60.6, 16, 300 }, + [53] = { 28.3, 58.3, 16, 300 }, + [54] = { 18.6, 57.6, 16, 300 }, + [55] = { 20.4, 56.9, 16, 300 }, + [56] = { 17.7, 54.1, 16, 300 }, + [57] = { 20, 50.9, 16, 300 }, + [58] = { 41.7, 37.3, 16, 300 }, + [59] = { 51.3, 30.7, 16, 300 }, + [60] = { 46.1, 30.2, 16, 300 }, + [61] = { 73, 27.5, 16, 300 }, + [62] = { 58.6, 27.2, 16, 300 }, + [63] = { 63, 23.4, 16, 300 }, + [64] = { 74.3, 22.9, 16, 300 }, + [65] = { 46.7, 22.3, 16, 300 }, + [66] = { 56, 20.5, 16, 300 }, + [67] = { 52.8, 16.8, 16, 300 }, + [68] = { 67.3, 15.4, 16, 300 }, + [69] = { 49.4, 66.9, 28, 300 }, + [70] = { 50.9, 64.1, 28, 300 }, + [71] = { 39.4, 62.5, 28, 300 }, + [72] = { 38.6, 61.8, 28, 300 }, + [73] = { 49.3, 61.6, 28, 300 }, + [74] = { 33.3, 57.4, 28, 300 }, + [75] = { 48, 54.7, 28, 300 }, + [76] = { 42.8, 54.6, 28, 300 }, + [77] = { 56.9, 53.4, 28, 300 }, + [78] = { 35.4, 52.5, 28, 300 }, + [79] = { 41.1, 52.3, 28, 300 }, + [80] = { 60.3, 50.5, 28, 300 }, + [81] = { 63.7, 48.5, 28, 300 }, + [82] = { 52.7, 45, 28, 300 }, + [83] = { 45.6, 44.8, 28, 300 }, + [84] = { 46.9, 39.6, 28, 300 }, + [85] = { 48.9, 37.2, 28, 300 }, + [86] = { 44, 36.1, 28, 300 }, + [87] = { 49.6, 33.1, 28, 300 }, + [88] = { 49.2, 32.3, 28, 300 }, + [89] = { 55.2, 29.3, 28, 300 }, + [90] = { 48.7, 21.6, 28, 300 }, + [91] = { 41.4, 18.8, 28, 300 }, + [92] = { 47.1, 15.6, 28, 300 }, + [93] = { 65.7, 60.2, 46, 300 }, + [94] = { 82.3, 57.8, 46, 300 }, + [95] = { 86.6, 57.6, 46, 300 }, + [96] = { 75.7, 52, 46, 300 }, + [97] = { 90.7, 51.7, 46, 300 }, + [98] = { 74.3, 44.8, 46, 300 }, + [99] = { 89.7, 43.4, 46, 300 }, + [100] = { 73.6, 36.9, 46, 300 }, + [101] = { 67.7, 36, 46, 300 }, + [102] = { 91.1, 34.7, 46, 300 }, + [103] = { 59.6, 34.7, 46, 300 }, + [104] = { 85.6, 30.2, 46, 300 }, + [105] = { 43.4, 66.9, 47, 300 }, + [106] = { 50.7, 65.9, 47, 300 }, + [107] = { 29.7, 65.5, 47, 300 }, + [108] = { 72, 64.6, 47, 300 }, + [109] = { 31.3, 63.4, 47, 300 }, + [110] = { 49.6, 62.8, 47, 300 }, + [111] = { 68.4, 61.8, 47, 300 }, + [112] = { 26.8, 61.5, 47, 300 }, + [113] = { 34.5, 61.5, 47, 300 }, + [114] = { 71.3, 60.4, 47, 300 }, + [115] = { 36.8, 58.8, 47, 300 }, + [116] = { 66.1, 57.8, 47, 300 }, + [117] = { 68.6, 57.7, 47, 300 }, + [118] = { 73.1, 57.7, 47, 300 }, + [119] = { 51.1, 57.6, 47, 300 }, + [120] = { 45.7, 57.5, 47, 300 }, + [121] = { 21.9, 56.1, 47, 300 }, + [122] = { 26.2, 55.2, 47, 300 }, + [123] = { 61.1, 54.8, 47, 300 }, + [124] = { 47, 54.8, 47, 300 }, + [125] = { 37.7, 54.5, 47, 300 }, + [126] = { 18.4, 54.3, 47, 300 }, + [127] = { 44.3, 54.2, 47, 300 }, + [128] = { 71.2, 54, 47, 300 }, + [129] = { 28.5, 53.9, 47, 300 }, + [130] = { 65.8, 53.9, 47, 300 }, + [131] = { 30.4, 53.4, 47, 300 }, + [132] = { 22, 52.6, 47, 300 }, + [133] = { 58.1, 52.2, 47, 300 }, + [134] = { 54.1, 51.9, 47, 300 }, + [135] = { 37.6, 51.3, 47, 300 }, + [136] = { 78.2, 51.2, 47, 300 }, + [137] = { 75.6, 51.1, 47, 300 }, + [138] = { 18.2, 51, 47, 300 }, + [139] = { 46.3, 51, 47, 300 }, + [140] = { 68.4, 51, 47, 300 }, + [141] = { 72.9, 50.2, 47, 300 }, + [142] = { 52.4, 50, 47, 300 }, + [143] = { 40.9, 49.9, 47, 300 }, + [144] = { 64.6, 49.7, 47, 300 }, + [145] = { 58.9, 49, 47, 300 }, + [146] = { 61.8, 48.8, 47, 300 }, + [147] = { 69.8, 48.2, 47, 300 }, + [148] = { 53.8, 47.2, 47, 300 }, + [149] = { 49.6, 47.2, 47, 300 }, + [150] = { 66, 47.2, 47, 300 }, + [151] = { 34.4, 46.8, 47, 300 }, + [152] = { 36.9, 46, 47, 300 }, + [153] = { 67.9, 45.9, 47, 300 }, + [154] = { 56.3, 45.8, 47, 300 }, + [155] = { 62.4, 44.9, 47, 300 }, + [156] = { 51.5, 42.5, 47, 300 }, + [157] = { 54, 41.2, 47, 300 }, + [158] = { 89.6, 70.2, 85, 300 }, + [159] = { 91.6, 65.6, 85, 300 }, + [160] = { 97.3, 33.5, 85, 300 }, + [161] = { 47.7, 85.4, 139, 300 }, + [162] = { 49.2, 84, 139, 300 }, + [163] = { 56.7, 75.7, 139, 300 }, + [164] = { 45.5, 75.7, 139, 300 }, + [165] = { 31, 71.7, 139, 300 }, + [166] = { 49.2, 70.4, 139, 300 }, + [167] = { 41.3, 69.1, 139, 300 }, + [168] = { 58.3, 65.8, 139, 300 }, + [169] = { 46.5, 62.7, 139, 300 }, + [170] = { 61.8, 62.3, 139, 300 }, + [171] = { 53, 57.4, 139, 300 }, + [172] = { 62, 47.2, 139, 300 }, + [173] = { 65.9, 40.4, 139, 300 }, + [174] = { 47, 39.5, 139, 300 }, + [175] = { 63.8, 38.1, 139, 300 }, + [176] = { 24.1, 36.3, 139, 300 }, + [177] = { 19.7, 34.9, 139, 300 }, + [178] = { 66.4, 31.6, 139, 300 }, + [179] = { 18.3, 28.9, 139, 300 }, + [180] = { 49.1, 26.4, 139, 300 }, + [181] = { 60.3, 25.5, 139, 300 }, + [182] = { 55.7, 74.7, 357, 300 }, + [183] = { 55.7, 74, 357, 300 }, + [184] = { 55.7, 73.8, 357, 300 }, + [185] = { 59.9, 73.4, 357, 300 }, + [186] = { 54.3, 71.5, 357, 300 }, + [187] = { 55.4, 70.2, 357, 300 }, + [188] = { 62.4, 69.9, 357, 300 }, + [189] = { 54, 69.6, 357, 300 }, + [190] = { 55.4, 67.3, 357, 300 }, + [191] = { 54.1, 66.9, 357, 300 }, + [192] = { 54.1, 66.5, 357, 300 }, + [193] = { 56.9, 65.3, 357, 300 }, + [194] = { 57, 65, 357, 300 }, + [195] = { 71.8, 63.1, 357, 300 }, + [196] = { 56, 62.7, 357, 300 }, + [197] = { 57.9, 62.4, 357, 300 }, + [198] = { 69.9, 62.2, 357, 300 }, + [199] = { 70.6, 61.4, 357, 300 }, + [200] = { 57.3, 61.2, 357, 300 }, + [201] = { 57, 60.8, 357, 300 }, + [202] = { 74.3, 60.8, 357, 300 }, + [203] = { 59.8, 60.6, 357, 300 }, + [204] = { 58.6, 60.5, 357, 300 }, + [205] = { 72, 60.3, 357, 300 }, + [206] = { 60.6, 60.3, 357, 300 }, + [207] = { 69, 60.1, 357, 300 }, + [208] = { 56, 59.5, 357, 300 }, + [209] = { 74.9, 58.8, 357, 300 }, + [210] = { 58.1, 57.9, 357, 300 }, + [211] = { 72.8, 57.9, 357, 300 }, + [212] = { 68.6, 57, 357, 300 }, + [213] = { 70, 57, 357, 300 }, + [214] = { 74.7, 56.9, 357, 300 }, + [215] = { 58.3, 55.8, 357, 300 }, + [216] = { 72.3, 55.8, 357, 300 }, + [217] = { 58.4, 55.6, 357, 300 }, + [218] = { 56.1, 54.9, 357, 300 }, + [219] = { 70.8, 54.8, 357, 300 }, + [220] = { 57, 54.5, 357, 300 }, + [221] = { 75.1, 53.9, 357, 300 }, + [222] = { 58.4, 51.9, 357, 300 }, + [223] = { 59.8, 51.4, 357, 300 }, + [224] = { 60.5, 50.8, 357, 300 }, + [225] = { 57.9, 50.7, 357, 300 }, + [226] = { 55.4, 49.6, 357, 300 }, + [227] = { 55.2, 49.4, 357, 300 }, + [228] = { 52.4, 49.2, 357, 300 }, + [229] = { 59.8, 48.5, 357, 300 }, + [230] = { 52, 48.2, 357, 300 }, + [231] = { 67.9, 47.9, 357, 300 }, + [232] = { 57.1, 47.5, 357, 300 }, + [233] = { 56.8, 47.4, 357, 300 }, + [234] = { 56.8, 47.1, 357, 300 }, + [235] = { 51.8, 47.1, 357, 300 }, + [236] = { 70.4, 47, 357, 300 }, + [237] = { 53.2, 46.5, 357, 300 }, + [238] = { 85.7, 45.8, 357, 300 }, + [239] = { 60.6, 45.5, 357, 300 }, + [240] = { 79.9, 45.1, 357, 300 }, + [241] = { 70.6, 45, 357, 300 }, + [242] = { 82.3, 44.3, 357, 300 }, + [243] = { 69.7, 43.8, 357, 300 }, + [244] = { 71.5, 43.4, 357, 300 }, + [245] = { 71.4, 42, 357, 300 }, + [246] = { 69.8, 41.6, 357, 300 }, + [247] = { 76.7, 40, 357, 300 }, + [248] = { 71.6, 40, 357, 300 }, + [249] = { 70.9, 39.2, 357, 300 }, + [250] = { 80, 39.1, 357, 300 }, + [251] = { 84.4, 38.5, 357, 300 }, + [252] = { 86.3, 38.3, 357, 300 }, + [253] = { 70.4, 38.3, 357, 300 }, + [254] = { 72.7, 38.1, 357, 300 }, + [255] = { 78.8, 38, 357, 300 }, + [256] = { 72.6, 38, 357, 300 }, + [257] = { 82.1, 35.6, 357, 300 }, + [258] = { 50.2, 33.4, 357, 300 }, + [259] = { 50.2, 30.6, 357, 300 }, + [260] = { 50.1, 27.7, 357, 300 }, + [261] = { 42.1, 24.7, 357, 300 }, + [262] = { 46.8, 24.2, 357, 300 }, + [263] = { 51.3, 23.3, 357, 300 }, + [264] = { 37.8, 23.2, 357, 300 }, + [265] = { 43.6, 21.9, 357, 300 }, + [266] = { 38.2, 20.5, 357, 300 }, + [267] = { 41.7, 16.1, 357, 300 }, + [268] = { 44.5, 13.3, 357, 300 }, + [269] = { 42.6, 12.4, 357, 300 }, + [270] = { 44.4, 10.4, 357, 300 }, + [271] = { 31.9, 34.2, 440, 300 }, + [272] = { 32.3, 23.6, 440, 300 }, + [273] = { 44.1, 91, 490, 300 }, + [274] = { 56.5, 90.2, 490, 300 }, + [275] = { 48.2, 84, 490, 300 }, + [276] = { 52.5, 83.4, 490, 300 }, + [277] = { 57.9, 81.7, 490, 300 }, + [278] = { 41.1, 79.3, 490, 300 }, + [279] = { 37.5, 75.1, 490, 300 }, + [280] = { 59.8, 75.1, 490, 300 }, + [281] = { 46.4, 74.9, 490, 300 }, + [282] = { 32.8, 72.1, 490, 300 }, + [283] = { 42.7, 71.8, 490, 300 }, + [284] = { 48.1, 69.8, 490, 300 }, + [285] = { 34.7, 65.7, 490, 300 }, + [286] = { 50, 64.2, 490, 300 }, + [287] = { 28.5, 64, 490, 300 }, + [288] = { 40.8, 63.7, 490, 300 }, + [289] = { 48.3, 62.5, 490, 300 }, + [290] = { 59.1, 60.1, 490, 300 }, + [291] = { 79.8, 60.1, 490, 300 }, + [292] = { 61, 54.8, 490, 300 }, + [293] = { 41.8, 54.5, 490, 300 }, + [294] = { 40.1, 51.8, 490, 300 }, + [295] = { 39.2, 45.3, 490, 300 }, + [296] = { 21, 40.3, 490, 300 }, + [297] = { 80.5, 40.3, 490, 300 }, + [298] = { 27.5, 37.4, 490, 300 }, + [299] = { 32.9, 37, 490, 300 }, + [300] = { 27.6, 36.7, 490, 300 }, + [301] = { 73.4, 36.1, 490, 300 }, + [302] = { 13.9, 35.9, 490, 300 }, + [303] = { 39, 33.5, 490, 300 }, + [304] = { 67.9, 31.5, 490, 300 }, + [305] = { 56.1, 30.5, 490, 300 }, + [306] = { 12.1, 29.1, 490, 300 }, + [307] = { 17.4, 29, 490, 300 }, + [308] = { 47.2, 27.7, 490, 300 }, + [309] = { 57.4, 18.2, 490, 300 }, + [310] = { 45.6, 77.2, 1377, 300 }, + [311] = { 30.2, 77.1, 1377, 300 }, + [312] = { 38.6, 55.2, 1377, 300 }, + [313] = { 62.3, 43.4, 1377, 300 }, + [314] = { 79.9, 43.1, 1377, 300 }, + [315] = { 24.5, 40.5, 1377, 300 }, + [316] = { 72.3, 38.5, 1377, 300 }, + [317] = { 36.9, 34, 1377, 300 }, + [318] = { 70.4, 31.3, 1377, 300 }, + [319] = { 76.1, 31.2, 1377, 300 }, + [320] = { 61.1, 24.9, 1377, 300 }, + }, + }, + [142143] = { + ["coords"] = { + [1] = { 78.7, 80.1, 8, 300 }, + [2] = { 75.3, 73.5, 8, 300 }, + [3] = { 84.3, 71.4, 8, 300 }, + [4] = { 80.9, 67.8, 8, 300 }, + [5] = { 79, 67, 8, 300 }, + [6] = { 16, 66.8, 8, 300 }, + [7] = { 68.4, 65.5, 8, 300 }, + [8] = { 12.4, 63.7, 8, 300 }, + [9] = { 14.8, 62.8, 8, 300 }, + [10] = { 81.8, 61, 8, 300 }, + [11] = { 83.5, 59, 8, 300 }, + [12] = { 87.6, 58.5, 8, 300 }, + [13] = { 13.3, 57.7, 8, 300 }, + [14] = { 16.2, 57, 8, 300 }, + [15] = { 57.3, 56.3, 8, 300 }, + [16] = { 53.9, 56.2, 8, 300 }, + [17] = { 19.6, 54.9, 8, 300 }, + [18] = { 29, 54.8, 8, 300 }, + [19] = { 31.7, 53.7, 8, 300 }, + [20] = { 78.7, 53, 8, 300 }, + [21] = { 85.5, 52.5, 8, 300 }, + [22] = { 56.7, 52.5, 8, 300 }, + [23] = { 26.3, 51.5, 8, 300 }, + [24] = { 33.9, 51.2, 8, 300 }, + [25] = { 30.2, 50.3, 8, 300 }, + [26] = { 34, 49.9, 8, 300 }, + [27] = { 56.9, 49.2, 8, 300 }, + [28] = { 29.4, 48.2, 8, 300 }, + [29] = { 35, 48.1, 8, 300 }, + [30] = { 32.3, 48.1, 8, 300 }, + [31] = { 40.3, 46.7, 8, 300 }, + [32] = { 79.5, 45.9, 8, 300 }, + [33] = { 33.7, 45.8, 8, 300 }, + [34] = { 35.3, 45.3, 8, 300 }, + [35] = { 44.2, 44.7, 8, 300 }, + [36] = { 57.5, 43.8, 8, 300 }, + [37] = { 30.1, 43.6, 8, 300 }, + [38] = { 83, 43.3, 8, 300 }, + [39] = { 45.2, 41.9, 8, 300 }, + [40] = { 54.7, 41.3, 8, 300 }, + [41] = { 84.5, 40.7, 8, 300 }, + [42] = { 50.3, 40.6, 8, 300 }, + [43] = { 34.5, 40.3, 8, 300 }, + [44] = { 25.3, 40.2, 8, 300 }, + [45] = { 44.2, 40, 8, 300 }, + [46] = { 31.8, 40, 8, 300 }, + [47] = { 79.9, 39.6, 8, 300 }, + [48] = { 30, 39.5, 8, 300 }, + [49] = { 35.4, 39.3, 8, 300 }, + [50] = { 14.1, 39.3, 8, 300 }, + [51] = { 64.5, 38.9, 8, 300 }, + [52] = { 46.4, 38.8, 8, 300 }, + [53] = { 41.9, 38.4, 8, 300 }, + [54] = { 36.2, 37.8, 8, 300 }, + [55] = { 28.1, 37.3, 8, 300 }, + [56] = { 61.7, 37.3, 8, 300 }, + [57] = { 17.1, 37.2, 8, 300 }, + [58] = { 50.6, 36.6, 8, 300 }, + [59] = { 10, 36.5, 8, 300 }, + [60] = { 30.5, 36.5, 8, 300 }, + [61] = { 84.3, 36.5, 8, 300 }, + [62] = { 54.2, 36.4, 8, 300 }, + [63] = { 11.3, 36.1, 8, 300 }, + [64] = { 47, 36, 8, 300 }, + [65] = { 15.1, 35.8, 8, 300 }, + [66] = { 56.6, 35.7, 8, 300 }, + [67] = { 38.3, 35.4, 8, 300 }, + [68] = { 79.5, 35.3, 8, 300 }, + [69] = { 34.8, 35, 8, 300 }, + [70] = { 40.7, 34.9, 8, 300 }, + [71] = { 60.6, 34.9, 8, 300 }, + [72] = { 51.8, 34.8, 8, 300 }, + [73] = { 49.7, 33.9, 8, 300 }, + [74] = { 36.7, 33.7, 8, 300 }, + [75] = { 57.7, 32.9, 8, 300 }, + [76] = { 48, 32.8, 8, 300 }, + [77] = { 9.7, 32.8, 8, 300 }, + [78] = { 69.5, 32.5, 8, 300 }, + [79] = { 33.1, 32.3, 8, 300 }, + [80] = { 85.4, 31.8, 8, 300 }, + [81] = { 56.3, 31.6, 8, 300 }, + [82] = { 63, 31.4, 8, 300 }, + [83] = { 61.4, 31.3, 8, 300 }, + [84] = { 54.7, 31, 8, 300 }, + [85] = { 72.8, 30.7, 8, 300 }, + [86] = { 76.2, 29.9, 8, 300 }, + [87] = { 63.7, 25.6, 8, 300 }, + [88] = { 83.9, 24.4, 8, 300 }, + [89] = { 68.8, 21.2, 8, 300 }, + [90] = { 66.8, 19.3, 8, 300 }, + [91] = { 73.9, 15.1, 8, 300 }, + [92] = { 48, 33.2, 490, 300 }, + [93] = { 60.1, 30.2, 490, 300 }, + [94] = { 51.4, 28.8, 490, 300 }, + [95] = { 54.4, 24.6, 490, 300 }, + [96] = { 59.6, 24.4, 490, 300 }, + [97] = { 48.6, 23.3, 490, 300 }, + [98] = { 63.7, 22.5, 490, 300 }, + [99] = { 52.7, 19.3, 490, 300 }, + [100] = { 48.1, 18.7, 490, 300 }, + [101] = { 42.9, 18.6, 490, 300 }, + [102] = { 45.6, 15.7, 490, 300 }, + }, + }, + [142144] = { + ["coords"] = { + [1] = { 81.1, 24.7, 45, 300 }, + [2] = { 80.3, 24.3, 45, 300 }, + [3] = { 77.8, 23, 45, 300 }, + [4] = { 82.4, 21.7, 45, 300 }, + [5] = { 81.6, 21.6, 45, 300 }, + [6] = { 79.3, 21, 45, 300 }, + [7] = { 81.8, 20.6, 45, 300 }, + [8] = { 82.5, 20.6, 45, 300 }, + [9] = { 80.6, 20, 45, 300 }, + [10] = { 79.7, 19.9, 45, 300 }, + [11] = { 81.5, 18.4, 45, 300 }, + [12] = { 57.4, 85.4, 47, 300 }, + [13] = { 56.7, 85, 47, 300 }, + [14] = { 54.3, 83.9, 47, 300 }, + [15] = { 58.6, 82.7, 47, 300 }, + [16] = { 57.9, 82.6, 47, 300 }, + [17] = { 55.8, 82, 47, 300 }, + [18] = { 58.1, 81.6, 47, 300 }, + [19] = { 58.7, 81.6, 47, 300 }, + [20] = { 57, 81, 47, 300 }, + [21] = { 56.1, 81, 47, 300 }, + [22] = { 57.8, 79.6, 47, 300 }, + [23] = { 55.8, 68.1, 47, 300 }, + [24] = { 55.1, 67.8, 47, 300 }, + [25] = { 55.4, 67.5, 47, 300 }, + [26] = { 55.4, 44.4, 47, 300 }, + [27] = { 56.6, 43.9, 47, 300 }, + [28] = { 57.5, 43.2, 47, 300 }, + [29] = { 55.8, 43, 47, 300 }, + [30] = { 57.9, 43, 47, 300 }, + [31] = { 55.9, 42.9, 47, 300 }, + [32] = { 59.4, 42.8, 47, 300 }, + [33] = { 60.4, 42.7, 47, 300 }, + [34] = { 57.9, 42.6, 47, 300 }, + [35] = { 56.7, 42.4, 47, 300 }, + [36] = { 59.2, 42, 47, 300 }, + [37] = { 56.6, 41.8, 47, 300 }, + [38] = { 58, 41.4, 47, 300 }, + [39] = { 59.9, 41, 47, 300 }, + [40] = { 57.5, 39.8, 47, 300 }, + [41] = { 33.2, 68.7, 405, 300 }, + [42] = { 29.9, 65.6, 405, 300 }, + [43] = { 34.5, 63.9, 405, 300 }, + [44] = { 28.2, 63.6, 405, 300 }, + [45] = { 32.2, 63.3, 405, 300 }, + [46] = { 30.5, 63.2, 405, 300 }, + [47] = { 27.9, 62.9, 405, 300 }, + [48] = { 30.1, 60.8, 405, 300 }, + [49] = { 34.8, 59.7, 405, 300 }, + [50] = { 27.3, 57.9, 405, 300 }, + [51] = { 28, 57.7, 405, 300 }, + [52] = { 28.9, 57, 405, 300 }, + [53] = { 28.1, 55.1, 405, 300 }, + }, + }, + [142145] = { + ["coords"] = { + [1] = { 57.3, 58.5, 4, 300 }, + [2] = { 60.3, 56.8, 4, 300 }, + [3] = { 56, 56.7, 4, 300 }, + [4] = { 58.1, 55.8, 4, 300 }, + [5] = { 62.8, 55.8, 4, 300 }, + [6] = { 53.9, 55.7, 4, 300 }, + [7] = { 57.1, 53.2, 4, 300 }, + [8] = { 61.4, 52.2, 4, 300 }, + [9] = { 55.7, 51.3, 4, 300 }, + [10] = { 55.5, 51.2, 4, 300 }, + [11] = { 58.8, 50.2, 4, 300 }, + [12] = { 48.2, 50.1, 4, 300 }, + [13] = { 56.9, 50.1, 4, 300 }, + [14] = { 62.4, 42.9, 4, 300 }, + [15] = { 46, 42.5, 4, 300 }, + [16] = { 48.1, 41.6, 4, 300 }, + [17] = { 41.9, 39.6, 4, 300 }, + [18] = { 53.2, 38.5, 4, 300 }, + [19] = { 45.8, 37.5, 4, 300 }, + [20] = { 39.9, 36.7, 4, 300 }, + [21] = { 53.8, 36.1, 4, 300 }, + [22] = { 59.2, 35.8, 4, 300 }, + [23] = { 40.1, 33.4, 4, 300 }, + [24] = { 63.9, 32, 4, 300 }, + [25] = { 44.3, 31.2, 4, 300 }, + [26] = { 56.5, 30.8, 4, 300 }, + [27] = { 50.9, 29, 4, 300 }, + [28] = { 39, 29, 4, 300 }, + [29] = { 59.9, 26.5, 4, 300 }, + [30] = { 56.6, 22.5, 4, 300 }, + [31] = { 45, 19.9, 4, 300 }, + [32] = { 49.2, 15.6, 4, 300 }, + [33] = { 82.3, 78.8, 331, 300 }, + [34] = { 86, 78.3, 331, 300 }, + [35] = { 88.6, 78.2, 331, 300 }, + [36] = { 89.9, 77.2, 331, 300 }, + [37] = { 84.9, 75.4, 331, 300 }, + [38] = { 84.1, 70.8, 331, 300 }, + [39] = { 81.3, 69.9, 331, 300 }, + [40] = { 83.9, 68.3, 331, 300 }, + [41] = { 81.2, 65.8, 331, 300 }, + [42] = { 51.4, 85.6, 405, 300 }, + [43] = { 48, 83.5, 405, 300 }, + [44] = { 52.6, 83.2, 405, 300 }, + [45] = { 46.7, 82.7, 405, 300 }, + [46] = { 50.1, 81.4, 405, 300 }, + [47] = { 53.7, 80.1, 405, 300 }, + [48] = { 55.9, 78, 405, 300 }, + [49] = { 54.7, 77.5, 405, 300 }, + [50] = { 48.6, 77.3, 405, 300 }, + [51] = { 56.8, 76.1, 405, 300 }, + [52] = { 57.6, 75.3, 405, 300 }, + [53] = { 54.2, 74.1, 405, 300 }, + [54] = { 53.9, 73.9, 405, 300 }, + [55] = { 49.8, 73.9, 405, 300 }, + [56] = { 50.3, 73.7, 405, 300 }, + [57] = { 56.7, 73.5, 405, 300 }, + [58] = { 51, 71.2, 405, 300 }, + }, + }, + [142151] = { + ["coords"] = { + [1] = { 13.6, 38.2, 11, 10 }, + }, + ["fac"] = "A", + }, + [142172] = { + ["coords"] = { + [1] = { 27.6, 77.6, 33, 900 }, + }, + }, + [142175] = { + ["coords"] = { + [1] = { 21.4, 37.1, 1, 180 }, + }, + ["fac"] = "AH", + }, + [142176] = { + ["coords"] = { + [1] = { 21.4, 37.1, 1, 180 }, + }, + }, + [142179] = { + ["coords"] = { + [1] = { 26.3, 52.3, 357, 10 }, + }, + ["fac"] = "A", + }, + [142180] = { + ["coords"] = { + [1] = { 83.5, 16.7, 45, 25 }, + [2] = { 83.6, 16.7, 45, 25 }, + [3] = { 83.5, 16.6, 45, 25 }, + [4] = { 83.6, 16.6, 45, 25 }, + [5] = { 83.5, 16.6, 45, 180 }, + [6] = { 83.4, 16.6, 45, 25 }, + [7] = { 83.5, 16.5, 45, 25 }, + [8] = { 83.4, 16.5, 45, 25 }, + [9] = { 59.7, 78, 47, 25 }, + [10] = { 59.7, 77.9, 47, 25 }, + [11] = { 59.8, 77.9, 47, 25 }, + [12] = { 59.7, 77.8, 47, 180 }, + [13] = { 59.6, 77.8, 47, 25 }, + [14] = { 59.7, 77.8, 47, 25 }, + [15] = { 59.7, 77.7, 47, 25 }, + }, + }, + [142181] = { + ["coords"] = { + [1] = { 72.2, 46.8, 440, 10 }, + [2] = { 72.1, 46.8, 440, 10 }, + [3] = { 72.1, 46.7, 440, 10 }, + }, + }, + [142184] = { + ["coords"] = { + [1] = { 76.5, 45.7, 440, 180 }, + }, + }, + [142185] = { + ["coords"] = { + [1] = { 38.5, 15.8, 357, 10 }, + }, + ["fac"] = "A", + }, + [142186] = { + ["coords"] = { + [1] = { 37.8, 12.2, 357, 10 }, + }, + ["fac"] = "A", + }, + [142187] = { + ["coords"] = { + [1] = { 39.9, 9.4, 357, 10 }, + }, + ["fac"] = "A", + }, + [142188] = { + ["coords"] = { + [1] = { 40.5, 12.7, 357, 10 }, + }, + ["fac"] = "A", + }, + [142189] = { + ["coords"] = {}, + }, + [142191] = { + ["coords"] = { + [1] = { 56.6, 44, 47, 10 }, + [2] = { 57.5, 43.4, 47, 10 }, + [3] = { 60, 42.5, 47, 10 }, + [4] = { 60, 41.2, 47, 10 }, + [5] = { 45.6, 41.1, 47, 10 }, + [6] = { 57.3, 41.1, 47, 10 }, + [7] = { 47.2, 40.3, 47, 10 }, + [8] = { 57.8, 38.6, 47, 10 }, + [9] = { 45.8, 38.3, 47, 10 }, + [10] = { 47.4, 37.9, 47, 10 }, + }, + }, + [142194] = { + ["coords"] = {}, + }, + [142195] = { + ["coords"] = { + [1] = { 71.6, 55.9, 357, 10 }, + }, + ["fac"] = "H", + }, + [142196] = { + ["coords"] = { + [1] = { 62, 55.2, 17, 900 }, + }, + }, + [142197] = { + ["coords"] = { + [1] = { 61.4, 55.6, 17, 900 }, + }, + }, + [142198] = { + ["coords"] = { + [1] = { 51.5, 4.9, 15, 900 }, + [2] = { 62.2, 56.5, 17, 900 }, + }, + }, + [142207] = { + ["coords"] = {}, + }, + [142208] = { + ["coords"] = {}, + }, + [142209] = { + ["coords"] = {}, + }, + [142210] = { + ["coords"] = {}, + }, + [142211] = { + ["coords"] = {}, + }, + [142212] = { + ["coords"] = {}, + }, + [142213] = { + ["coords"] = {}, + }, + [142214] = { + ["coords"] = {}, + }, + [142215] = { + ["coords"] = {}, + }, + [142216] = { + ["coords"] = {}, + }, + [142217] = { + ["coords"] = {}, + }, + [142218] = { + ["coords"] = {}, + }, + [142219] = { + ["coords"] = {}, + }, + [142339] = { + ["coords"] = { + [1] = { 41.2, 40.1, 1537, 900 }, + }, + }, + [142340] = { + ["coords"] = { + [1] = { 24.6, 3.1, 1537, 900 }, + }, + }, + [142341] = { + ["coords"] = { + [1] = { 37.3, 7.5, 1537, 900 }, + }, + }, + [142342] = { + ["coords"] = { + [1] = { 78.8, 45.8, 406, 900 }, + }, + }, + [142343] = { + ["coords"] = { + [1] = { 37.6, 81.4, 440, 10 }, + }, + }, + [142344] = { + ["coords"] = {}, + }, + [142345] = { + ["coords"] = { + [1] = { 22, 32.6, 1, 180 }, + [2] = { 21.6, 32.5, 1, 180 }, + [3] = { 22.1, 31, 1, 180 }, + [4] = { 21.9, 31, 1, 180 }, + }, + }, + [142475] = { + ["coords"] = {}, + }, + [142476] = { + ["coords"] = {}, + }, + [142477] = { + ["coords"] = {}, + }, + [142487] = { + ["coords"] = {}, + }, + [142488] = { + ["coords"] = {}, + }, + [142689] = { + ["coords"] = { + [1] = { 53.5, 30.7, 3, 900 }, + }, + }, + [142690] = { + ["coords"] = { + [1] = { 67, 23.1, 3, 900 }, + }, + }, + [142691] = { + ["coords"] = { + [1] = { 15.5, 60.8, 3, 900 }, + }, + }, + [142692] = { + ["coords"] = { + [1] = { 26.1, 44.5, 3, 900 }, + }, + }, + [142693] = { + ["coords"] = { + [1] = { 42.5, 53, 3, 900 }, + }, + }, + [142694] = { + ["coords"] = { + [1] = { 53.6, 43.5, 3, 900 }, + }, + }, + [142695] = { + ["coords"] = { + [1] = { 13.6, 75.2, 3, 900 }, + }, + }, + [142696] = { + ["coords"] = {}, + }, + [142697] = { + ["coords"] = {}, + }, + [142698] = { + ["coords"] = { + [1] = { 31.9, 58, 47, 180 }, + [2] = { 45.9, 39.6, 47, 180 }, + }, + }, + [142700] = { + ["coords"] = { + [1] = { 72.9, 53.2, 47, 180 }, + }, + }, + [142702] = { + ["coords"] = { + [1] = { 23.5, 58.8, 47, 1800 }, + }, + ["fac"] = "H", + }, + [142703] = { + ["coords"] = { + [1] = { 23.2, 58.6, 47, 1800 }, + }, + ["fac"] = "H", + }, + [142704] = { + ["coords"] = { + [1] = { 23.2, 58.6, 47, 1800 }, + }, + ["fac"] = "H", + }, + [142705] = { + ["coords"] = { + [1] = { 23.5, 58.8, 47, 1800 }, + }, + ["fac"] = "H", + }, + [142706] = { + ["coords"] = { + [1] = { 23.5, 58.8, 47, 1800 }, + }, + ["fac"] = "H", + }, + [142707] = { + ["coords"] = { + [1] = { 23.2, 58.7, 47, 1800 }, + }, + ["fac"] = "H", + }, + [142708] = { + ["coords"] = { + [1] = { 31.5, 57.7, 47, 1800 }, + }, + ["fac"] = "H", + }, + [142709] = { + ["coords"] = { + [1] = { 31.5, 57.7, 47, 180 }, + }, + ["fac"] = "H", + }, + [142710] = { + ["coords"] = { + [1] = { 31.6, 57.7, 47, 1800 }, + }, + ["fac"] = "H", + }, + [142711] = { + ["coords"] = { + [1] = { 31.5, 57.7, 47, 1800 }, + }, + ["fac"] = "H", + }, + [142712] = { + ["coords"] = { + [1] = { 31.6, 57.8, 47, 1800 }, + }, + ["fac"] = "H", + }, + [142713] = { + ["coords"] = { + [1] = { 23, 57.7, 47, 1800 }, + }, + ["fac"] = "H", + }, + [142714] = { + ["coords"] = { + [1] = { 23, 57.7, 47, 1800 }, + }, + ["fac"] = "H", + }, + [142715] = { + ["coords"] = {}, + }, + [142716] = { + ["coords"] = { + [1] = { 34.2, 72.8, 47, 180 }, + }, + }, + [142837] = { + ["coords"] = { + [1] = { 62.4, 61.8, 51, 7200 }, + }, + }, + [142838] = { + ["coords"] = { + [1] = { 23.4, 61, 1537, 900 }, + }, + }, + [142851] = { + ["coords"] = { + [1] = { 59.9, 50.4, 1537, 900 }, + }, + }, + [142871] = { + ["coords"] = { + [1] = { 40.9, 12.6, 1537, 900 }, + }, + }, + [142872] = { + ["coords"] = { + [1] = { 47.3, 8.8, 1537, 900 }, + }, + }, + [142873] = { + ["coords"] = { + [1] = { 48.8, 9.1, 1537, 900 }, + }, + }, + [142874] = { + ["coords"] = { + [1] = { 44.3, 9.9, 1537, 900 }, + }, + }, + [142911] = { + ["coords"] = { + [1] = { 71.8, 76.2, 1537, 900 }, + }, + }, + [142912] = { + ["coords"] = { + [1] = { 71.7, 76.6, 1537, 900 }, + }, + }, + [142914] = { + ["coords"] = { + [1] = { 72.3, 74.8, 1537, 900 }, + }, + }, + [142915] = { + ["coords"] = { + [1] = { 72.5, 74.7, 1537, 900 }, + }, + }, + [142916] = { + ["coords"] = { + [1] = { 72.5, 74.2, 1537, 900 }, + }, + }, + [142947] = { + ["coords"] = {}, + }, + [142948] = { + ["coords"] = {}, + }, + [142958] = { + ["coords"] = { + [1] = { 55.2, 91.5, 141, 900 }, + }, + ["fac"] = "A", + }, + [142959] = { + ["coords"] = {}, + }, + [142960] = { + ["coords"] = {}, + }, + [142961] = { + ["coords"] = { + [1] = { 52.1, 53.2, 40, 3600 }, + }, + }, + [142962] = { + ["coords"] = {}, + }, + [142963] = { + ["coords"] = {}, + }, + [142964] = { + ["coords"] = { + [1] = { 52, 53.1, 40, 3600 }, + }, + }, + [142965] = { + ["coords"] = { + [1] = { 53.2, 39, 47, 7200 }, + }, + }, + [142966] = { + ["coords"] = { + [1] = { 66.2, 44.5, 47, 7200 }, + }, + }, + [142967] = { + ["coords"] = { + [1] = { 71.2, 48.4, 47, 7200 }, + }, + }, + [142968] = { + ["coords"] = { + [1] = { 79.7, 55.6, 47, 7200 }, + }, + }, + [142969] = { + ["coords"] = { + [1] = { 62.6, 65.3, 47, 7200 }, + }, + }, + [142970] = { + ["coords"] = { + [1] = { 63.7, 67.4, 47, 7200 }, + }, + }, + [142971] = { + ["coords"] = { + [1] = { 67.4, 69, 47, 7200 }, + }, + }, + [142972] = { + ["coords"] = { + [1] = { 68.4, 71, 47, 7200 }, + }, + }, + [142973] = { + ["coords"] = { + [1] = { 61.5, 72.6, 47, 7200 }, + }, + }, + [142974] = { + ["coords"] = { + [1] = { 58.3, 73, 47, 7200 }, + }, + }, + [142976] = { + ["coords"] = { + [1] = { 63.4, 80, 47, 7200 }, + }, + }, + [142977] = { + ["coords"] = { + [1] = { 67.1, 80.3, 47, 7200 }, + }, + }, + [142978] = { + ["coords"] = { + [1] = { 85.5, 20.7, 45, 7200 }, + [2] = { 61.5, 81.7, 47, 7200 }, + }, + }, + [142979] = { + ["coords"] = { + [1] = { 85.3, 21, 45, 7200 }, + [2] = { 61.4, 82, 47, 7200 }, + }, + }, + [142980] = { + ["coords"] = { + [1] = { 63.4, 83.1, 47, 7200 }, + }, + }, + [143230] = { + ["coords"] = { + [1] = { 27.6, 77.6, 33, 900 }, + }, + }, + [143242] = { + ["coords"] = { + [1] = { 25.6, 6.6, 1537, 900 }, + }, + }, + [143243] = { + ["coords"] = { + [1] = { 27.1, 8.9, 1537, 900 }, + }, + }, + [143244] = { + ["coords"] = { + [1] = { 25.5, 10.8, 1537, 900 }, + }, + }, + [143245] = { + ["coords"] = { + [1] = { 24.3, 8.2, 1537, 900 }, + }, + }, + [143246] = { + ["coords"] = { + [1] = { 26.7, 2.9, 1537, 900 }, + }, + }, + [143247] = { + ["coords"] = { + [1] = { 22.6, 5.4, 1537, 900 }, + }, + }, + [143249] = { + ["coords"] = { + [1] = { 56, 86.2, 1537, 900 }, + }, + }, + [143250] = { + ["coords"] = { + [1] = { 66.4, 56.4, 1537, 900 }, + }, + }, + [143251] = { + ["coords"] = { + [1] = { 70.4, 67.6, 1537, 900 }, + }, + }, + [143253] = { + ["coords"] = { + [1] = { 21.7, 57.2, 1537, 900 }, + }, + }, + [143254] = { + ["coords"] = { + [1] = { 60, 87, 1537, 900 }, + }, + }, + [143255] = { + ["coords"] = { + [1] = { 70.4, 73.2, 1537, 900 }, + }, + }, + [143256] = { + ["coords"] = { + [1] = { 23.6, 19.6, 1537, 900 }, + }, + }, + [143273] = { + ["coords"] = { + [1] = { 28.4, 11.4, 1537, 900 }, + }, + }, + [143295] = { + ["coords"] = { + [1] = { 36.7, 4.8, 1537, 900 }, + }, + }, + [143296] = { + ["coords"] = { + [1] = { 32.9, 6.3, 1537, 900 }, + }, + }, + [143297] = { + ["coords"] = { + [1] = { 52.9, 6.5, 1537, 900 }, + }, + }, + [143298] = { + ["coords"] = { + [1] = { 52.7, 6.4, 1537, 900 }, + }, + }, + [143299] = { + ["coords"] = { + [1] = { 53.6, 5.6, 1537, 900 }, + }, + }, + [143301] = { + ["coords"] = { + [1] = { 26.9, 13.2, 1537, 900 }, + }, + }, + [143314] = { + ["coords"] = { + [1] = { 27.5, 6.7, 1537, 900 }, + }, + }, + [143317] = { + ["coords"] = { + [1] = { 21.3, 52.3, 1537, 900 }, + }, + }, + [143318] = { + ["coords"] = { + [1] = { 41.5, 78.4, 1537, 900 }, + }, + }, + [143319] = { + ["coords"] = { + [1] = { 38.6, 85.3, 1537, 900 }, + }, + }, + [143320] = { + ["coords"] = { + [1] = { 38, 76.4, 1537, 900 }, + }, + }, + [143321] = { + ["coords"] = { + [1] = { 36.6, 76.7, 1537, 900 }, + }, + }, + [143322] = { + ["coords"] = { + [1] = { 37.8, 82.5, 1537, 900 }, + }, + }, + [143323] = { + ["coords"] = { + [1] = { 29.7, 78, 1537, 900 }, + }, + }, + [143324] = { + ["coords"] = { + [1] = { 34.7, 67.8, 1537, 900 }, + }, + }, + [143325] = { + ["coords"] = { + [1] = { 35.5, 69.2, 1537, 900 }, + }, + }, + [143326] = { + ["coords"] = { + [1] = { 38.3, 70.6, 1537, 900 }, + }, + }, + [143328] = { + ["coords"] = { + [1] = { 38.4, 11.4, 1537, 900 }, + }, + }, + [143332] = { + ["coords"] = {}, + }, + [143333] = { + ["coords"] = { + [1] = { 58.9, 40.5, 1537, 900 }, + }, + }, + [143334] = { + ["coords"] = { + [1] = { 40.9, 36.8, 1537, 900 }, + }, + }, + [143336] = { + ["coords"] = { + [1] = { 55.1, 55.6, 1537, 900 }, + }, + }, + [143337] = { + ["coords"] = { + [1] = { 75.1, 46.6, 1537, 900 }, + }, + }, + [143338] = { + ["coords"] = { + [1] = { 58.7, 45.8, 1537, 900 }, + }, + }, + [143342] = { + ["coords"] = { + [1] = { 24, 11, 1537, 900 }, + }, + }, + [143343] = { + ["coords"] = { + [1] = { 43.9, 31.9, 1537, 900 }, + }, + }, + [143344] = { + ["coords"] = { + [1] = { 51.9, 30.5, 1537, 900 }, + }, + }, + [143345] = { + ["coords"] = { + [1] = { 45.2, 50.2, 1537, 900 }, + }, + }, + [143346] = { + ["coords"] = { + [1] = { 44.2, 48.2, 1537, 900 }, + }, + }, + [143347] = { + ["coords"] = { + [1] = { 44.6, 30.9, 1537, 900 }, + }, + }, + [143348] = { + ["coords"] = { + [1] = { 48, 29.3, 1537, 900 }, + }, + }, + [143349] = { + ["coords"] = { + [1] = { 51.8, 30.5, 1537, 900 }, + }, + }, + [143362] = { + ["coords"] = { + [1] = { 74.9, 48.4, 1537, 900 }, + }, + }, + [143363] = { + ["coords"] = { + [1] = { 27.9, 10.4, 1537, 900 }, + }, + }, + [143379] = { + ["coords"] = {}, + }, + [143397] = { + ["coords"] = { + [1] = { 44.5, 26.3, 16, 180 }, + }, + }, + [143398] = { + ["coords"] = { + [1] = { 62.1, 39.5, 17, 900 }, + }, + }, + [143399] = { + ["coords"] = { + [1] = { 62.2, 39.3, 17, 900 }, + }, + }, + [143979] = { + ["coords"] = { + [1] = { 45.8, 10.1, 33, 900 }, + [2] = { 66.7, 46.8, 357, 900 }, + }, + }, + [143980] = { + ["coords"] = { + [1] = { 80.8, 34.9, 357, 180 }, + [2] = { 79.3, 34.8, 357, 180 }, + [3] = { 80.6, 34.3, 357, 180 }, + [4] = { 75.1, 29.7, 357, 180 }, + [5] = { 75.2, 28.7, 357, 180 }, + [6] = { 74.5, 27.9, 357, 180 }, + }, + ["fac"] = "H", + }, + [143981] = { + ["coords"] = { + [1] = { 51.9, 42.2, 14, 900 }, + }, + ["fac"] = "H", + }, + [143982] = { + ["coords"] = { + [1] = { 52, 30.4, 17, 900 }, + }, + ["fac"] = "H", + }, + [143983] = { + ["coords"] = { + [1] = { 48, 61.1, 406, 900 }, + }, + ["fac"] = "H", + }, + [143984] = { + ["coords"] = { + [1] = { 47, 60.3, 215, 900 }, + }, + ["fac"] = "H", + }, + [143985] = { + ["coords"] = { + [1] = { 39, 28.9, 215, 900 }, + [2] = { 45.2, 59.4, 1638, 900 }, + }, + ["fac"] = "H", + }, + [143986] = { + ["coords"] = { + [1] = { 74.9, 44, 357, 900 }, + }, + ["fac"] = "H", + }, + [143987] = { + ["coords"] = { + [1] = { 50.4, 58.7, 267, 7200 }, + }, + ["fac"] = "A", + }, + [143988] = { + ["coords"] = { + [1] = { 61.2, 81.4, 36, 7200 }, + [2] = { 62.4, 19.7, 267, 7200 }, + }, + ["fac"] = "H", + }, + [143989] = { + ["coords"] = { + [1] = { 43.4, 41.5, 130, 7200 }, + }, + ["fac"] = "H", + }, + [143990] = { + ["coords"] = { + [1] = { 61.5, 53.1, 85, 900 }, + }, + ["fac"] = "H", + }, + [143991] = { + ["coords"] = { + [1] = { 68.4, 72.9, 47, 7200 }, + }, + }, + [144011] = { + ["coords"] = { + [1] = { 14, 45.7, 47, 7200 }, + [2] = { 99.4, 5, 267, 7200 }, + }, + ["fac"] = "A", + }, + [144013] = { + ["coords"] = { + [1] = { 38.8, 13.2, 357, 120 }, + }, + ["fac"] = "A", + }, + [144050] = { + ["coords"] = { + [1] = { 80.4, 36.1, 357, 900 }, + [2] = { 80.3, 36, 357, 900 }, + [3] = { 80.5, 36, 357, 900 }, + [4] = { 80.4, 35.9, 357, 900 }, + [5] = { 80.5, 35.9, 357, 900 }, + [6] = { 81, 35.5, 357, 900 }, + [7] = { 80.9, 35.5, 357, 900 }, + [8] = { 81.6, 35.3, 357, 900 }, + [9] = { 77.5, 35.2, 357, 900 }, + [10] = { 77.6, 35.2, 357, 900 }, + [11] = { 81.6, 35.1, 357, 900 }, + [12] = { 77.5, 35.1, 357, 900 }, + [13] = { 79.3, 35, 357, 900 }, + [14] = { 79.2, 35, 357, 900 }, + [15] = { 81.5, 34.9, 357, 900 }, + [16] = { 77.5, 34.9, 357, 900 }, + [17] = { 79.4, 34.9, 357, 900 }, + [18] = { 81.6, 34.9, 357, 900 }, + [19] = { 79.2, 34.9, 357, 900 }, + [20] = { 79.4, 34.8, 357, 900 }, + [21] = { 76.3, 34.5, 357, 900 }, + [22] = { 76.3, 34.4, 357, 900 }, + [23] = { 80.5, 34.4, 357, 900 }, + [24] = { 76.2, 34.4, 357, 900 }, + [25] = { 80.4, 34.3, 357, 900 }, + [26] = { 80.5, 34.2, 357, 900 }, + [27] = { 80.5, 34.1, 357, 900 }, + [28] = { 78.5, 34.1, 357, 900 }, + [29] = { 78.4, 34.1, 357, 900 }, + [30] = { 78.5, 34, 357, 900 }, + [31] = { 78.6, 34, 357, 900 }, + [32] = { 76.7, 33.9, 357, 900 }, + [33] = { 76.8, 33.8, 357, 900 }, + [34] = { 76.6, 33.8, 357, 900 }, + [35] = { 76.7, 33.8, 357, 900 }, + [36] = { 75.3, 33.7, 357, 900 }, + [37] = { 75.2, 33.7, 357, 900 }, + [38] = { 75.3, 33.6, 357, 900 }, + [39] = { 77.3, 33.4, 357, 900 }, + [40] = { 77, 33.3, 357, 900 }, + [41] = { 76.4, 33.1, 357, 900 }, + [42] = { 76.5, 33, 357, 900 }, + [43] = { 76.3, 32.9, 357, 900 }, + [44] = { 75.1, 32.5, 357, 900 }, + [45] = { 75.1, 32.4, 357, 900 }, + [46] = { 75.2, 32.4, 357, 900 }, + [47] = { 75.1, 32.3, 357, 900 }, + [48] = { 75.5, 30.5, 357, 900 }, + [49] = { 75.5, 30.4, 357, 900 }, + [50] = { 74.7, 30.3, 357, 900 }, + [51] = { 74.5, 30.3, 357, 900 }, + [52] = { 74.5, 30.2, 357, 900 }, + [53] = { 74.6, 30.2, 357, 900 }, + [54] = { 76.8, 29.9, 357, 900 }, + [55] = { 76.9, 29.7, 357, 900 }, + [56] = { 77, 29.6, 357, 900 }, + [57] = { 76.7, 29.6, 357, 900 }, + [58] = { 76.8, 29.5, 357, 900 }, + [59] = { 75.9, 29.1, 357, 900 }, + [60] = { 76, 29.1, 357, 900 }, + [61] = { 74.2, 29, 357, 900 }, + [62] = { 74.4, 29, 357, 900 }, + [63] = { 76, 29, 357, 900 }, + [64] = { 74.3, 29, 357, 900 }, + [65] = { 76, 28.9, 357, 900 }, + [66] = { 74.3, 28.9, 357, 900 }, + [67] = { 75.4, 28.4, 357, 900 }, + [68] = { 75.4, 28.3, 357, 900 }, + [69] = { 75.3, 28.2, 357, 900 }, + [70] = { 75.4, 28.1, 357, 900 }, + [71] = { 74.8, 26.7, 357, 900 }, + [72] = { 74.8, 26.6, 357, 900 }, + [73] = { 74.8, 26.5, 357, 900 }, + [74] = { 75.3, 26.4, 357, 900 }, + [75] = { 75.5, 26.4, 357, 900 }, + [76] = { 75.4, 26.3, 357, 900 }, + [77] = { 75.1, 25.2, 357, 900 }, + [78] = { 75, 25.1, 357, 900 }, + [79] = { 75, 25, 357, 900 }, + [80] = { 74.9, 25, 357, 900 }, + }, + }, + [144053] = { + ["coords"] = { + [1] = { 56, 71.2, 440, 10 }, + }, + }, + [144054] = { + ["coords"] = { + [1] = { 38.3, 10.3, 357, 0 }, + }, + }, + [144055] = { + ["coords"] = { + [1] = { 51, 28.1, 440, 900 }, + }, + }, + [144063] = { + ["coords"] = { + [1] = { 38.8, 13.2, 357, 10 }, + }, + ["fac"] = "A", + }, + [144064] = { + ["coords"] = {}, + }, + [144065] = { + ["coords"] = {}, + }, + [144066] = { + ["coords"] = { + [1] = { 23.3, 58.8, 47, 10 }, + }, + }, + [144067] = { + ["coords"] = { + [1] = { 23.1, 58.8, 47, 10 }, + }, + }, + [144068] = { + ["coords"] = { + [1] = { 32, 57.3, 47, 10 }, + }, + }, + [144069] = { + ["coords"] = { + [1] = { 67, 19.4, 4, 0 }, + }, + }, + [144070] = { + ["coords"] = { + [1] = { 53.4, 67.1, 47, 10 }, + }, + }, + [144071] = { + ["coords"] = { + [1] = { 32, 46.8, 47, 10 }, + }, + ["fac"] = "H", + }, + [144072] = { + ["coords"] = { + [1] = { 29.6, 48.7, 47, 10 }, + }, + ["fac"] = "H", + }, + [144073] = { + ["coords"] = { + [1] = { 28.6, 46, 47, 10 }, + }, + ["fac"] = "H", + }, + [144111] = { + ["coords"] = {}, + }, + [144112] = { + ["coords"] = { + [1] = { 52.3, 27.8, 440, 900 }, + }, + ["fac"] = "AH", + }, + [144125] = { + ["coords"] = { + [1] = { 62.2, 39.2, 17, 900 }, + }, + ["fac"] = "AH", + }, + [144126] = { + ["coords"] = { + [1] = { 26.7, 76.4, 33, 900 }, + }, + }, + [144127] = { + ["coords"] = { + [1] = { 27.3, 77.4, 33, 900 }, + }, + }, + [144128] = { + ["coords"] = { + [1] = { 70.9, 40, 1519, 900 }, + }, + ["fac"] = "A", + }, + [144129] = { + ["coords"] = { + [1] = { 39.9, 84.4, 1519, 180 }, + }, + ["fac"] = "A", + }, + [144130] = { + ["coords"] = { + [1] = { 22.1, 57.9, 1519, 120 }, + }, + ["fac"] = "A", + }, + [144131] = { + ["coords"] = { + [1] = { 54.2, 66.7, 1519, 900 }, + }, + ["fac"] = "A", + }, + [144132] = { + ["coords"] = { + [1] = { 34.5, 46.6, 38, 7200 }, + }, + }, + [144133] = { + ["coords"] = { + [1] = { 34.3, 46.3, 38, 7200 }, + }, + }, + [144159] = { + ["coords"] = { + [1] = { 32.6, 81, 1537, 900 }, + }, + }, + [144162] = { + ["coords"] = { + [1] = { 68.2, 46, 1537, 900 }, + }, + }, + [144179] = { + ["coords"] = {}, + ["fac"] = "A", + }, + [144180] = { + ["coords"] = { + [1] = { 56.7, 40.1, 3, 900 }, + }, + }, + [144181] = { + ["coords"] = { + [1] = { 57.3, 40, 3, 900 }, + }, + }, + [144569] = { + ["coords"] = { + [1] = { 40.6, 8.6, 357, 180 }, + }, + }, + [144570] = { + ["coords"] = {}, + }, + [146079] = { + ["coords"] = { + [1] = { 18.2, 54.6, 28, 900 }, + [2] = { 75.2, 67.6, 85, 900 }, + }, + }, + [146080] = { + ["coords"] = { + [1] = { 18.1, 54.5, 28, 900 }, + [2] = { 75.2, 67.5, 85, 900 }, + }, + }, + [146081] = { + ["coords"] = { + [1] = { 18.1, 54.5, 28, 900 }, + [2] = { 75.2, 67.5, 85, 900 }, + }, + }, + [146082] = { + ["coords"] = { + [1] = { 38.8, 13.2, 357, 0 }, + }, + }, + [146083] = { + ["coords"] = { + [1] = { 38.8, 13.2, 357, 0 }, + }, + }, + [146084] = { + ["coords"] = {}, + }, + [146085] = { + ["coords"] = {}, + }, + [146086] = { + ["coords"] = {}, + }, + [146088] = { + ["coords"] = {}, + }, + [146089] = { + ["coords"] = {}, + }, + [146090] = { + ["coords"] = {}, + }, + [146091] = { + ["coords"] = {}, + }, + [146096] = { + ["coords"] = { + [1] = { 29.7, 63.9, 141, 900 }, + [2] = { 60.3, 81.4, 1657, 900 }, + }, + }, + [146441] = { + ["coords"] = { + [1] = { 66.3, 17.2, 4, 900 }, + [2] = { 61.5, 53.3, 17, 900 }, + }, + }, + [147036] = { + ["coords"] = { + [1] = { 24.9, 17.5, 38, 7200 }, + [2] = { 16.7, 46.8, 47, 7200 }, + }, + }, + [147037] = { + ["coords"] = { + [1] = { 24.9, 17.3, 38, 7200 }, + [2] = { 16.6, 46.7, 47, 7200 }, + }, + }, + [147038] = { + ["coords"] = { + [1] = { 24.9, 17.5, 38, 7200 }, + [2] = { 16.7, 46.8, 47, 7200 }, + }, + }, + [147039] = { + ["coords"] = { + [1] = { 24.9, 17.5, 38, 7200 }, + [2] = { 16.6, 46.7, 47, 7200 }, + }, + }, + [147040] = { + ["coords"] = { + [1] = { 24.9, 17.4, 38, 7200 }, + [2] = { 16.6, 46.7, 47, 7200 }, + }, + }, + [147041] = { + ["coords"] = { + [1] = { 24.8, 17.3, 38, 7200 }, + [2] = { 16.6, 46.6, 47, 7200 }, + }, + }, + [147042] = { + ["coords"] = { + [1] = { 24.8, 17.3, 38, 7200 }, + [2] = { 16.6, 46.7, 47, 7200 }, + }, + }, + [147043] = { + ["coords"] = { + [1] = { 85.8, 49.2, 1, 900 }, + [2] = { 71.4, 21.1, 1, 900 }, + }, + }, + [147044] = { + ["coords"] = { + [1] = { 85.9, 49.1, 1, 900 }, + [2] = { 71.3, 21.1, 1, 900 }, + }, + }, + [147045] = { + ["coords"] = { + [1] = { 85.9, 49.1, 1, 900 }, + [2] = { 71.3, 21.1, 1, 900 }, + }, + }, + [147046] = { + ["coords"] = { + [1] = { 84.4, 40.6, 1, 900 }, + }, + }, + [147047] = { + ["coords"] = { + [1] = { 84.4, 40.5, 1, 900 }, + }, + }, + [147048] = { + ["coords"] = { + [1] = { 84.3, 40.6, 1, 900 }, + }, + }, + [147049] = { + ["coords"] = { + [1] = { 84.4, 40.6, 1, 900 }, + }, + }, + [147065] = { + ["coords"] = { + [1] = { 28.1, 50.1, 16, 180 }, + }, + }, + [147078] = { + ["coords"] = { + [1] = { 57, 57, 440, 180 }, + }, + }, + [147079] = { + ["coords"] = { + [1] = { 57.3, 57.1, 440, 180 }, + }, + }, + [147080] = { + ["coords"] = { + [1] = { 57.1, 56.9, 440, 180 }, + }, + }, + [147136] = { + ["coords"] = { + [1] = { 71.6, 11.4, 1537, 0 }, + }, + }, + [147279] = { + ["coords"] = { + [1] = { 34.9, 49.5, 38, 7200 }, + }, + }, + [147282] = { + ["coords"] = { + [1] = { 66.3, 16.9, 4, 900 }, + [2] = { 61.5, 53.3, 17, 900 }, + }, + }, + [147283] = { + ["coords"] = { + [1] = { 65.9, 17.2, 4, 900 }, + [2] = { 61.5, 53.5, 17, 900 }, + }, + }, + [147284] = { + ["coords"] = { + [1] = { 66.2, 17.5, 4, 900 }, + [2] = { 61.6, 53.4, 17, 900 }, + }, + }, + [147285] = { + ["coords"] = { + [1] = { 66.1, 17.2, 4, 900 }, + [2] = { 61.5, 53.4, 17, 900 }, + }, + }, + [147435] = { + ["coords"] = { + [1] = { 86.7, 85.1, 139, 900 }, + }, + }, + [147436] = { + ["coords"] = { + [1] = { 87, 85.3, 139, 900 }, + }, + }, + [147437] = { + ["coords"] = { + [1] = { 87.5, 84.9, 139, 900 }, + }, + }, + [147438] = { + ["coords"] = { + [1] = { 86.8, 85.4, 139, 900 }, + }, + }, + [147439] = { + ["coords"] = { + [1] = { 86.9, 85, 139, 900 }, + }, + }, + [147440] = { + ["coords"] = { + [1] = { 87.3, 86.4, 139, 900 }, + }, + }, + [147441] = { + ["coords"] = { + [1] = { 87.2, 85.2, 139, 900 }, + }, + }, + [147442] = { + ["coords"] = { + [1] = { 87, 85.7, 139, 900 }, + }, + }, + [147443] = { + ["coords"] = { + [1] = { 86.4, 85.2, 139, 900 }, + }, + }, + [147444] = { + ["coords"] = { + [1] = { 86.6, 84.7, 139, 900 }, + }, + }, + [147445] = { + ["coords"] = { + [1] = { 87.1, 86.2, 139, 900 }, + }, + }, + [147446] = { + ["coords"] = { + [1] = { 87.7, 85, 139, 900 }, + }, + }, + [147447] = { + ["coords"] = { + [1] = { 88.1, 85.3, 139, 900 }, + }, + }, + [147448] = { + ["coords"] = { + [1] = { 88.5, 85.6, 139, 900 }, + }, + }, + [147449] = { + ["coords"] = { + [1] = { 88, 87, 139, 900 }, + }, + }, + [147450] = { + ["coords"] = { + [1] = { 87.6, 86.7, 139, 900 }, + }, + }, + [147516] = { + ["coords"] = { + [1] = { 64.8, 50.5, 51, 120 }, + [2] = { 63.4, 50.2, 51, 120 }, + }, + }, + [147517] = { + ["coords"] = { + [1] = { 66.5, 47.6, 51, 120 }, + [2] = { 64.9, 46.9, 51, 120 }, + [3] = { 67.3, 44.4, 51, 120 }, + [4] = { 65.8, 42.8, 51, 120 }, + }, + }, + [147536] = { + ["coords"] = { + [1] = { 50.5, 14.4, 4, 900 }, + }, + }, + [147537] = { + ["coords"] = {}, + }, + [147557] = { + ["coords"] = { + [1] = { 58, 53.9, 17, 0 }, + }, + }, + [147742] = { + ["coords"] = { + [1] = { 65.3, 32.8, 4, 900 }, + [2] = { 60.9, 3.7, 17, 900 }, + [3] = { 90.9, 86.2, 331, 900 }, + [4] = { 73.3, 59.4, 331, 900 }, + }, + }, + [147743] = { + ["coords"] = { + [1] = { 68.2, 30.1, 4, 900 }, + [2] = { 59.8, 3.4, 17, 900 }, + [3] = { 89, 85.6, 331, 900 }, + [4] = { 72.7, 56.6, 331, 900 }, + }, + }, + [147744] = { + ["coords"] = { + [1] = { 66.2, 30.7, 4, 900 }, + [2] = { 60.3, 4, 17, 900 }, + [3] = { 72.6, 58.4, 331, 900 }, + }, + }, + [147745] = { + ["coords"] = { + [1] = { 65.8, 30, 4, 900 }, + [2] = { 60.3, 4.2, 17, 900 }, + [3] = { 72.3, 58.6, 331, 900 }, + }, + }, + [147746] = { + ["coords"] = { + [1] = { 65.8, 30.6, 4, 900 }, + [2] = { 60.4, 4.1, 17, 900 }, + [3] = { 72.6, 58.7, 331, 900 }, + }, + }, + [147747] = { + ["coords"] = { + [1] = { 66.2, 30.1, 4, 900 }, + [2] = { 60.2, 4.1, 17, 900 }, + [3] = { 72.4, 58.3, 331, 900 }, + }, + }, + [147748] = { + ["coords"] = { + [1] = { 66.5, 30.4, 4, 900 }, + [2] = { 60.2, 3.9, 17, 900 }, + [3] = { 72.6, 58.1, 331, 900 }, + }, + }, + [147749] = { + ["coords"] = { + [1] = { 67.4, 32, 4, 900 }, + [2] = { 60.2, 3.2, 17, 900 }, + [3] = { 89.8, 85.3, 331, 900 }, + [4] = { 73.3, 57.6, 331, 900 }, + }, + }, + [147750] = { + ["coords"] = { + [1] = { 66, 32, 4, 900 }, + [2] = { 60.6, 3.7, 17, 900 }, + [3] = { 90.5, 86.2, 331, 900 }, + [4] = { 73.1, 58.8, 331, 900 }, + }, + }, + [147751] = { + ["coords"] = { + [1] = { 66.1, 31.6, 4, 900 }, + [2] = { 60.5, 3.8, 17, 900 }, + [3] = { 90.3, 86.2, 331, 900 }, + [4] = { 73, 58.6, 331, 900 }, + }, + }, + [147752] = { + ["coords"] = { + [1] = { 65.8, 31.1, 4, 900 }, + [2] = { 60.5, 4, 17, 900 }, + [3] = { 72.7, 58.8, 331, 900 }, + }, + }, + [147753] = { + ["coords"] = { + [1] = { 69, 31.3, 4, 900 }, + [2] = { 59.8, 2.8, 17, 900 }, + [3] = { 89, 84.6, 331, 900 }, + [4] = { 73.3, 56.1, 331, 900 }, + }, + }, + [147754] = { + ["coords"] = { + [1] = { 65.7, 31.9, 4, 900 }, + [2] = { 60.6, 3.8, 17, 900 }, + [3] = { 90.6, 86.4, 331, 900 }, + [4] = { 73, 59, 331, 900 }, + }, + }, + [147755] = { + ["coords"] = { + [1] = { 69.1, 30.5, 4, 900 }, + [2] = { 59.6, 3, 17, 900 }, + [3] = { 88.8, 84.9, 331, 900 }, + [4] = { 73, 55.9, 331, 900 }, + }, + }, + [147756] = { + ["coords"] = { + [1] = { 66.4, 31, 4, 900 }, + [2] = { 60.3, 3.8, 17, 900 }, + [3] = { 90, 86.3, 331, 900 }, + [4] = { 72.8, 58.3, 331, 900 }, + }, + }, + [147757] = { + ["coords"] = { + [1] = { 66.8, 31.4, 4, 900 }, + [2] = { 60.3, 3.6, 17, 900 }, + [3] = { 89.9, 85.9, 331, 900 }, + [4] = { 73, 58, 331, 900 }, + }, + }, + [147758] = { + ["coords"] = { + [1] = { 66.6, 31.8, 4, 900 }, + [2] = { 60.4, 3.5, 17, 900 }, + [3] = { 90.1, 85.8, 331, 900 }, + [4] = { 73.1, 58.2, 331, 900 }, + }, + }, + [147759] = { + ["coords"] = { + [1] = { 67.3, 31.2, 4, 900 }, + [2] = { 60.2, 3.4, 17, 900 }, + [3] = { 89.7, 85.7, 331, 900 }, + [4] = { 73, 57.6, 331, 900 }, + }, + }, + [147760] = { + ["coords"] = { + [1] = { 68.3, 30.8, 4, 900 }, + [2] = { 59.8, 3.2, 17, 900 }, + [3] = { 89.2, 85.3, 331, 900 }, + [4] = { 73, 56.6, 331, 900 }, + }, + }, + [147761] = { + ["coords"] = { + [1] = { 68, 30.8, 4, 900 }, + [2] = { 59.9, 3.3, 17, 900 }, + [3] = { 89.3, 85.4, 331, 900 }, + [4] = { 73, 56.9, 331, 900 }, + }, + }, + [147762] = { + ["coords"] = { + [1] = { 68.2, 31.5, 4, 900 }, + [2] = { 60, 3.1, 17, 900 }, + [3] = { 89.4, 85, 331, 900 }, + [4] = { 73.2, 56.9, 331, 900 }, + }, + }, + [147763] = { + ["coords"] = { + [1] = { 67.6, 29.6, 4, 900 }, + [2] = { 59.8, 3.7, 17, 900 }, + [3] = { 89.1, 86.2, 331, 900 }, + [4] = { 72.4, 57, 331, 900 }, + }, + }, + [147764] = { + ["coords"] = { + [1] = { 67.9, 29.1, 4, 900 }, + [2] = { 59.7, 3.7, 17, 900 }, + [3] = { 88.9, 86.2, 331, 900 }, + [4] = { 72.3, 56.7, 331, 900 }, + }, + }, + [147765] = { + ["coords"] = { + [1] = { 67.3, 28.9, 4, 900 }, + [2] = { 59.8, 4, 17, 900 }, + [3] = { 89, 86.6, 331, 900 }, + [4] = { 72.1, 57.2, 331, 900 }, + }, + }, + [147766] = { + ["coords"] = { + [1] = { 66.9, 30, 4, 900 }, + [2] = { 60.1, 3.9, 17, 900 }, + [3] = { 72.5, 57.7, 331, 900 }, + }, + }, + [147767] = { + ["coords"] = { + [1] = { 66.6, 29, 4, 900 }, + [2] = { 60, 4.2, 17, 900 }, + [3] = { 89.4, 87, 331, 900 }, + [4] = { 72.1, 57.8, 331, 900 }, + }, + }, + [147768] = { + ["coords"] = { + [1] = { 67, 29.1, 4, 900 }, + [2] = { 59.9, 4, 17, 900 }, + [3] = { 89.3, 86.7, 331, 900 }, + [4] = { 72.2, 57.5, 331, 900 }, + }, + }, + [147769] = { + ["coords"] = { + [1] = { 67.9, 28.6, 4, 900 }, + [2] = { 59.6, 3.8, 17, 900 }, + [3] = { 88.7, 86.4, 331, 900 }, + [4] = { 72.1, 56.6, 331, 900 }, + }, + }, + [147770] = { + ["coords"] = { + [1] = { 69.2, 29.8, 4, 900 }, + [2] = { 59.5, 3.1, 17, 900 }, + [3] = { 88.5, 85.1, 331, 900 }, + [4] = { 72.8, 55.7, 331, 900 }, + }, + }, + [147771] = { + ["coords"] = { + [1] = { 69.5, 30.6, 4, 900 }, + [2] = { 59.5, 2.8, 17, 900 }, + [3] = { 88.6, 84.6, 331, 900 }, + [4] = { 73.1, 55.6, 331, 900 }, + }, + }, + [147786] = { + ["coords"] = { + [1] = { 47.8, 52.7, 1, 900 }, + }, + }, + [147787] = { + ["coords"] = { + [1] = { 47.3, 52.7, 1, 900 }, + }, + }, + [147792] = { + ["coords"] = { + [1] = { 35, 48.3, 38, 7200 }, + }, + }, + [147793] = { + ["coords"] = { + [1] = { 35.5, 48.8, 38, 7200 }, + }, + }, + [147823] = { + ["coords"] = { + [1] = { 22.5, 62.7, 1519, 120 }, + }, + }, + [147824] = { + ["coords"] = { + [1] = { 61.6, 29.3, 1519, 900 }, + }, + }, + [147825] = { + ["coords"] = { + [1] = { 22.7, 63, 1519, 120 }, + }, + }, + [147826] = { + ["coords"] = { + [1] = { 22.5, 64.2, 1519, 180 }, + }, + }, + [147827] = { + ["coords"] = { + [1] = { 22.6, 62.8, 1519, 120 }, + }, + }, + [147828] = { + ["coords"] = { + [1] = { 22.2, 64.2, 1519, 180 }, + }, + }, + [147829] = { + ["coords"] = { + [1] = { 22.5, 63.8, 1519, 180 }, + }, + }, + [147830] = { + ["coords"] = { + [1] = { 22.8, 64.8, 1519, 120 }, + }, + }, + [148418] = { + ["coords"] = {}, + }, + [148419] = { + ["coords"] = {}, + }, + [148420] = { + ["coords"] = {}, + }, + [148421] = { + ["coords"] = {}, + }, + [148422] = { + ["coords"] = {}, + }, + [148423] = { + ["coords"] = { + [1] = { 31, 50, 141, 900 }, + [2] = { 66.4, 14.9, 1657, 900 }, + }, + }, + [148424] = { + ["coords"] = { + [1] = { 37.7, 29.8, 215, 900 }, + [2] = { 38.6, 63.7, 1638, 900 }, + }, + }, + [148425] = { + ["coords"] = { + [1] = { 37.9, 29.8, 215, 900 }, + [2] = { 40, 63.9, 1638, 900 }, + }, + }, + [148426] = { + ["coords"] = { + [1] = { 39, 27.9, 215, 900 }, + [2] = { 45.2, 54.3, 1638, 900 }, + }, + }, + [148436] = { + ["coords"] = { + [1] = { 60.8, 19.3, 4, 900 }, + }, + }, + [148437] = { + ["coords"] = { + [1] = { 61.6, 22.4, 4, 900 }, + }, + }, + [148498] = { + ["coords"] = { + [1] = { 41.3, 25.4, 51, 10 }, + }, + ["fac"] = "A", + }, + [148499] = { + ["coords"] = { + [1] = { 20.9, 76.1, 1, 10 }, + }, + }, + [148501] = { + ["coords"] = { + [1] = { 48.2, 85.9, 148, 180 }, + [2] = { 32.3, 66.6, 361, 180 }, + }, + }, + [148503] = { + ["coords"] = { + [1] = { 53.9, 55.2, 490, 900 }, + [2] = { 48.1, 53.3, 490, 900 }, + [3] = { 45.5, 48.5, 490, 900 }, + [4] = { 54, 47.6, 490, 900 }, + [5] = { 49.7, 45.6, 490, 900 }, + }, + }, + [148504] = { + ["coords"] = { + [1] = { 53.8, 29.1, 440, 10 }, + }, + ["fac"] = "AH", + }, + [148506] = { + ["coords"] = { + [1] = { 29.1, 25.9, 51, 10 }, + }, + }, + [148507] = { + ["coords"] = { + [1] = { 70.4, 49.9, 440, 180 }, + }, + }, + [148511] = { + ["coords"] = { + [1] = { 64, 21.4, 4, 900 }, + }, + }, + [148512] = { + ["coords"] = {}, + }, + [148513] = { + ["coords"] = { + [1] = { 44, 64.7, 16, 180 }, + [2] = { 42.2, 64.6, 16, 180 }, + [3] = { 40.5, 64.1, 16, 180 }, + [4] = { 43.5, 64, 16, 180 }, + [5] = { 42.9, 63.9, 16, 180 }, + [6] = { 40.2, 62.4, 16, 180 }, + [7] = { 36.3, 62.2, 16, 180 }, + [8] = { 41.3, 62, 16, 180 }, + [9] = { 39.2, 61.5, 16, 180 }, + [10] = { 37.4, 60.7, 16, 180 }, + [11] = { 34.1, 59.9, 16, 180 }, + [12] = { 35.4, 58.6, 16, 180 }, + [13] = { 36, 56.9, 16, 180 }, + [14] = { 39.4, 56.6, 16, 180 }, + [15] = { 37.9, 56.3, 16, 180 }, + [16] = { 36.4, 54.1, 16, 180 }, + [17] = { 39.8, 53.5, 16, 180 }, + [18] = { 38.3, 53.4, 16, 180 }, + [19] = { 34.8, 53.2, 16, 180 }, + [20] = { 37.7, 52.4, 16, 180 }, + [21] = { 35.5, 52.3, 16, 180 }, + [22] = { 38, 51.3, 16, 180 }, + [23] = { 35.9, 51.2, 16, 180 }, + [24] = { 35.5, 49.6, 16, 180 }, + }, + }, + [148514] = { + ["coords"] = { + [1] = { 40, 64.2, 16, 180 }, + [2] = { 39.9, 60.3, 16, 180 }, + [3] = { 35.9, 59.1, 16, 180 }, + [4] = { 39.3, 58.9, 16, 180 }, + [5] = { 34.1, 57.9, 16, 180 }, + [6] = { 37.1, 57.7, 16, 180 }, + [7] = { 35.8, 57.4, 16, 180 }, + [8] = { 38.9, 56.8, 16, 180 }, + [9] = { 35.7, 56.5, 16, 180 }, + [10] = { 34.7, 55.6, 16, 180 }, + [11] = { 36.5, 55.2, 16, 180 }, + [12] = { 35.7, 55.2, 16, 180 }, + [13] = { 34.9, 54.6, 16, 180 }, + [14] = { 36.2, 52.5, 16, 180 }, + [15] = { 34.7, 51.4, 16, 180 }, + [16] = { 37.8, 50, 16, 180 }, + [17] = { 37.2, 49.6, 16, 180 }, + [18] = { 36.8, 49.4, 16, 180 }, + [19] = { 39.9, 48.7, 16, 180 }, + [20] = { 37, 48.1, 16, 180 }, + [21] = { 37.9, 47.7, 16, 180 }, + [22] = { 38.9, 46.8, 16, 180 }, + [23] = { 39.8, 46.8, 16, 180 }, + [24] = { 39.8, 45.9, 16, 180 }, + [25] = { 39.3, 45.3, 16, 180 }, + [26] = { 40.2, 44.9, 16, 180 }, + }, + }, + [148515] = { + ["coords"] = { + [1] = { 41.5, 65, 16, 180 }, + [2] = { 39.1, 64.6, 16, 180 }, + [3] = { 43, 63.8, 16, 180 }, + [4] = { 43.5, 63.5, 16, 180 }, + [5] = { 41.8, 63.4, 16, 180 }, + [6] = { 40.5, 63.2, 16, 180 }, + [7] = { 37.1, 60.5, 16, 180 }, + [8] = { 39.4, 59.9, 16, 180 }, + [9] = { 37.2, 58, 16, 180 }, + [10] = { 36.6, 56.7, 16, 180 }, + [11] = { 35.6, 55.9, 16, 180 }, + [12] = { 38.6, 54.6, 16, 180 }, + [13] = { 37.1, 54.4, 16, 180 }, + [14] = { 36.2, 54.4, 16, 180 }, + [15] = { 34.8, 54, 16, 180 }, + [16] = { 38.1, 53.8, 16, 180 }, + [17] = { 35.9, 53.5, 16, 180 }, + [18] = { 38.8, 52.5, 16, 180 }, + [19] = { 39.4, 51.9, 16, 180 }, + [20] = { 39.3, 50.4, 16, 180 }, + [21] = { 37.8, 49.5, 16, 180 }, + [22] = { 36.9, 49.5, 16, 180 }, + [23] = { 38.6, 49.5, 16, 180 }, + [24] = { 37.3, 48.1, 16, 180 }, + [25] = { 38.6, 47.6, 16, 180 }, + }, + }, + [148516] = { + ["coords"] = { + [1] = { 39.5, 64.3, 16, 180 }, + [2] = { 40.8, 62.7, 16, 180 }, + [3] = { 37.2, 61.9, 16, 180 }, + [4] = { 36.7, 60.4, 16, 180 }, + [5] = { 38.4, 60.3, 16, 180 }, + [6] = { 36.8, 58.6, 16, 180 }, + [7] = { 35.2, 58, 16, 180 }, + [8] = { 35.9, 57.5, 16, 180 }, + [9] = { 34.5, 57, 16, 180 }, + [10] = { 35.2, 56.4, 16, 180 }, + [11] = { 36.6, 56.4, 16, 180 }, + [12] = { 35.2, 55.9, 16, 180 }, + [13] = { 34.3, 55.3, 16, 180 }, + [14] = { 34.9, 53.9, 16, 180 }, + [15] = { 38.9, 53.5, 16, 180 }, + [16] = { 35.5, 52.8, 16, 180 }, + [17] = { 34.8, 52.7, 16, 180 }, + [18] = { 39.5, 52.3, 16, 180 }, + [19] = { 38.5, 52.1, 16, 180 }, + [20] = { 37.1, 51.9, 16, 180 }, + [21] = { 34.1, 50.5, 16, 180 }, + [22] = { 36.1, 49.2, 16, 180 }, + [23] = { 39.6, 48.1, 16, 180 }, + [24] = { 38.3, 47.4, 16, 180 }, + [25] = { 41.5, 46.3, 16, 180 }, + [26] = { 39.6, 46, 16, 180 }, + [27] = { 40, 45.6, 16, 180 }, + [28] = { 38.4, 43.5, 16, 180 }, + }, + }, + [148540] = { + ["coords"] = { + [1] = { 64.7, 70.6, 12, 900 }, + [2] = { 65.9, 49.5, 15, 900 }, + }, + }, + [148544] = { + ["coords"] = { + [1] = { 65.3, 70.5, 12, 900 }, + [2] = { 66.3, 49.4, 15, 900 }, + }, + }, + [148547] = { + ["coords"] = { + [1] = { 65.1, 69.3, 12, 900 }, + [2] = { 66.2, 48.7, 15, 900 }, + }, + }, + [148549] = { + ["coords"] = { + [1] = { 64.8, 69.4, 12, 900 }, + [2] = { 65.9, 48.7, 15, 900 }, + }, + }, + [148550] = { + ["coords"] = { + [1] = { 64.5, 69.8, 12, 900 }, + [2] = { 65.8, 49, 15, 900 }, + }, + }, + [148551] = { + ["coords"] = { + [1] = { 64.5, 70.1, 12, 900 }, + [2] = { 65.8, 49.2, 15, 900 }, + }, + }, + [148554] = { + ["coords"] = { + [1] = { 65.2, 70, 12, 900 }, + [2] = { 66.2, 49.1, 15, 900 }, + }, + }, + [148556] = { + ["coords"] = { + [1] = { 65.1, 70.3, 12, 900 }, + [2] = { 66.2, 49.3, 15, 900 }, + }, + }, + [148557] = { + ["coords"] = { + [1] = { 65.2, 70, 12, 900 }, + [2] = { 66.2, 49.1, 15, 900 }, + }, + }, + [148567] = { + ["coords"] = { + [1] = { 65.4, 70.3, 12, 900 }, + [2] = { 66.4, 49.3, 15, 900 }, + }, + }, + [148658] = { + ["coords"] = { + [1] = { 29.2, 40.2, 16, 180 }, + [2] = { 80.3, 49.8, 44, 7200 }, + [3] = { 56.2, 26.6, 148, 900 }, + }, + }, + [148659] = { + ["coords"] = { + [1] = { 29.4, 40.4, 16, 180 }, + [2] = { 80.2, 48.7, 44, 7200 }, + [3] = { 56.3, 26.2, 148, 900 }, + }, + }, + [148660] = { + ["coords"] = { + [1] = { 30.1, 40.1, 16, 180 }, + [2] = { 78.9, 47.5, 44, 7200 }, + [3] = { 56.1, 25.6, 148, 900 }, + }, + }, + [148661] = { + ["coords"] = { + [1] = { 30.1, 40.2, 16, 180 }, + [2] = { 79, 47.5, 44, 7200 }, + [3] = { 56.1, 25.6, 148, 900 }, + }, + }, + [148662] = { + ["coords"] = { + [1] = { 29.2, 40.1, 16, 180 }, + [2] = { 80.2, 49.9, 44, 7200 }, + [3] = { 56.2, 26.6, 148, 900 }, + }, + }, + [148663] = { + ["coords"] = { + [1] = { 29.9, 39.8, 16, 180 }, + [2] = { 78.8, 48.4, 44, 7200 }, + [3] = { 56, 25.8, 148, 900 }, + }, + }, + [148664] = { + ["coords"] = { + [1] = { 29.7, 39.9, 16, 180 }, + [2] = { 79.2, 48.8, 44, 7200 }, + [3] = { 56, 26, 148, 900 }, + }, + }, + [148665] = { + ["coords"] = { + [1] = { 29.6, 40, 16, 180 }, + [2] = { 79.5, 49, 44, 7200 }, + [3] = { 56.1, 26.1, 148, 900 }, + }, + }, + [148666] = { + ["coords"] = { + [1] = { 47.1, 14.1, 28, 1200 }, + }, + }, + [148668] = { + ["coords"] = { + [1] = { 29.9, 40.3, 16, 180 }, + [2] = { 79.3, 47.6, 44, 7200 }, + [3] = { 56.2, 25.7, 148, 900 }, + }, + }, + [148669] = { + ["coords"] = { + [1] = { 29.6, 40.8, 16, 180 }, + [2] = { 80.4, 47.7, 44, 7200 }, + [3] = { 56.5, 26, 148, 900 }, + }, + }, + [148670] = { + ["coords"] = { + [1] = { 30, 40.1, 16, 180 }, + [2] = { 79, 47.9, 44, 7200 }, + [3] = { 56.1, 25.7, 148, 900 }, + }, + }, + [148671] = { + ["coords"] = { + [1] = { 29.9, 39.9, 16, 180 }, + [2] = { 78.9, 48.2, 44, 7200 }, + [3] = { 56, 25.7, 148, 900 }, + }, + }, + [148672] = { + ["coords"] = { + [1] = { 47.1, 13.3, 28, 1200 }, + }, + }, + [148673] = { + ["coords"] = { + [1] = { 46.9, 13.2, 28, 1200 }, + }, + }, + [148674] = { + ["coords"] = { + [1] = { 29.4, 39.8, 16, 180 }, + [2] = { 79.7, 49.8, 44, 7200 }, + [3] = { 56, 26.4, 148, 900 }, + }, + }, + [148675] = { + ["coords"] = { + [1] = { 29.6, 40.8, 16, 180 }, + [2] = { 80.4, 47.6, 44, 7200 }, + [3] = { 56.5, 26, 148, 900 }, + }, + }, + [148676] = { + ["coords"] = { + [1] = { 46.5, 13.6, 28, 1200 }, + }, + }, + [148677] = { + ["coords"] = { + [1] = { 29.3, 40.2, 16, 180 }, + [2] = { 80.2, 49.4, 44, 7200 }, + [3] = { 56.2, 26.4, 148, 900 }, + }, + }, + [148679] = { + ["coords"] = { + [1] = { 46.5, 14.1, 28, 1200 }, + }, + }, + [148680] = { + ["coords"] = { + [1] = { 29.4, 40.5, 16, 180 }, + [2] = { 80.4, 48.6, 44, 7200 }, + [3] = { 56.4, 26.2, 148, 900 }, + }, + }, + [148681] = { + ["coords"] = { + [1] = { 46.7, 14.3, 28, 1200 }, + }, + }, + [148682] = { + ["coords"] = { + [1] = { 29.7, 39.5, 16, 180 }, + [2] = { 78.8, 49.6, 44, 7200 }, + [3] = { 55.8, 26.1, 148, 900 }, + }, + }, + [148683] = { + ["coords"] = { + [1] = { 29.5, 40.2, 16, 180 }, + [2] = { 79.9, 49, 44, 7200 }, + [3] = { 56.2, 26.2, 148, 900 }, + }, + }, + [148684] = { + ["coords"] = { + [1] = { 29.5, 40.1, 16, 180 }, + [2] = { 79.7, 49.1, 44, 7200 }, + [3] = { 56.1, 26.2, 148, 900 }, + }, + }, + [148685] = { + ["coords"] = { + [1] = { 46.9, 14.4, 28, 1200 }, + }, + }, + [148686] = { + ["coords"] = { + [1] = { 29.8, 40.6, 16, 180 }, + [2] = { 79.9, 47.6, 44, 7200 }, + [3] = { 56.4, 25.8, 148, 900 }, + }, + }, + [148687] = { + ["coords"] = { + [1] = { 46.8, 13.5, 28, 1200 }, + }, + }, + [148688] = { + ["coords"] = { + [1] = { 47, 13.6, 28, 1200 }, + }, + }, + [148689] = { + ["coords"] = { + [1] = { 46.8, 13.5, 28, 1200 }, + }, + }, + [148691] = { + ["coords"] = { + [1] = { 29.6, 39.5, 16, 180 }, + [2] = { 78.9, 49.7, 44, 7200 }, + [3] = { 55.8, 26.1, 148, 900 }, + }, + }, + [148692] = { + ["coords"] = { + [1] = { 29.5, 40.1, 16, 180 }, + [2] = { 79.7, 49.2, 44, 7200 }, + [3] = { 56.1, 26.2, 148, 900 }, + }, + }, + [148693] = { + ["coords"] = { + [1] = { 29.7, 40.2, 16, 180 }, + [2] = { 79.6, 48.4, 44, 7200 }, + [3] = { 56.2, 26, 148, 900 }, + }, + }, + [148694] = { + ["coords"] = { + [1] = { 29.9, 40, 16, 180 }, + [2] = { 79.1, 48.2, 44, 7200 }, + [3] = { 56.1, 25.8, 148, 900 }, + }, + }, + [148695] = { + ["coords"] = { + [1] = { 29.4, 40.3, 16, 180 }, + [2] = { 80.2, 49, 44, 7200 }, + [3] = { 56.3, 26.3, 148, 900 }, + }, + }, + [148696] = { + ["coords"] = { + [1] = { 29.5, 40.5, 16, 180 }, + [2] = { 80.2, 48.5, 44, 7200 }, + [3] = { 56.4, 26.2, 148, 900 }, + }, + }, + [148697] = { + ["coords"] = { + [1] = { 29.9, 40.5, 16, 180 }, + [2] = { 79.6, 47.4, 44, 7200 }, + [3] = { 56.3, 25.7, 148, 900 }, + }, + }, + [148707] = { + ["coords"] = { + [1] = { 29.4, 39.7, 16, 180 }, + [2] = { 79.5, 49.9, 44, 7200 }, + [3] = { 56, 26.4, 148, 900 }, + }, + }, + [148714] = { + ["coords"] = { + [1] = { 29.4, 39.8, 16, 180 }, + [2] = { 79.6, 49.9, 44, 7200 }, + [3] = { 56, 26.4, 148, 900 }, + }, + }, + [148725] = { + ["coords"] = { + [1] = { 29.9, 39.7, 16, 180 }, + [2] = { 78.8, 48.7, 44, 7200 }, + [3] = { 55.9, 25.8, 148, 900 }, + }, + }, + [148728] = { + ["coords"] = { + [1] = { 67.1, 18.5, 4, 900 }, + [2] = { 70.7, 74.4, 40, 3600 }, + }, + }, + [148729] = { + ["coords"] = { + [1] = { 67.4, 19.6, 4, 900 }, + [2] = { 70.4, 75.4, 40, 3600 }, + }, + }, + [148730] = { + ["coords"] = { + [1] = { 67.2, 18, 4, 900 }, + [2] = { 70.9, 74.1, 40, 3600 }, + }, + }, + [148731] = { + ["coords"] = { + [1] = { 67.5, 18.6, 4, 900 }, + [2] = { 70.9, 74.8, 40, 3600 }, + }, + }, + [148732] = { + ["coords"] = { + [1] = { 67.3, 18.5, 4, 900 }, + [2] = { 70.8, 74.6, 40, 3600 }, + }, + }, + [148733] = { + ["coords"] = { + [1] = { 67.1, 18, 4, 900 }, + [2] = { 70.9, 74, 40, 3600 }, + }, + }, + [148734] = { + ["coords"] = { + [1] = { 67.7, 18.5, 4, 900 }, + [2] = { 71.1, 75, 40, 3600 }, + }, + }, + [148736] = { + ["coords"] = { + [1] = { 62, 54.9, 17, 900 }, + }, + }, + [148737] = { + ["coords"] = { + [1] = { 67.8, 18.7, 4, 900 }, + [2] = { 71.1, 75.2, 40, 3600 }, + }, + }, + [148738] = { + ["coords"] = { + [1] = { 67.8, 19.3, 4, 900 }, + [2] = { 70.8, 75.6, 40, 3600 }, + }, + }, + [148739] = { + ["coords"] = { + [1] = { 62.1, 55, 17, 900 }, + }, + }, + [148740] = { + ["coords"] = { + [1] = { 67.7, 19.4, 4, 900 }, + [2] = { 70.8, 75.6, 40, 3600 }, + }, + }, + [148741] = { + ["coords"] = { + [1] = { 67, 18.7, 4, 900 }, + [2] = { 70.5, 74.4, 40, 3600 }, + }, + }, + [148742] = { + ["coords"] = { + [1] = { 67.6, 18, 4, 900 }, + [2] = { 71.3, 74.5, 40, 3600 }, + }, + }, + [148743] = { + ["coords"] = { + [1] = { 67.5, 19.4, 4, 900 }, + [2] = { 70.6, 75.4, 40, 3600 }, + }, + }, + [148744] = { + ["coords"] = { + [1] = { 67.7, 19.1, 4, 900 }, + [2] = { 70.8, 75.4, 40, 3600 }, + }, + }, + [148745] = { + ["coords"] = { + [1] = { 67.7, 18.9, 4, 900 }, + [2] = { 71, 75.2, 40, 3600 }, + }, + }, + [148748] = { + ["coords"] = { + [1] = { 67.1, 18.1, 4, 900 }, + [2] = { 70.8, 74, 40, 3600 }, + }, + }, + [148749] = { + ["coords"] = { + [1] = { 66.7, 18.2, 4, 900 }, + [2] = { 70.5, 73.8, 40, 3600 }, + }, + }, + [148751] = { + ["coords"] = { + [1] = { 62.1, 54.9, 17, 900 }, + }, + }, + [148752] = { + ["coords"] = { + [1] = { 66.8, 18.4, 4, 900 }, + [2] = { 70.5, 74, 40, 3600 }, + }, + }, + [148754] = { + ["coords"] = { + [1] = { 66.7, 19, 4, 900 }, + [2] = { 70.2, 74.4, 40, 3600 }, + }, + }, + [148755] = { + ["coords"] = { + [1] = { 66.7, 18.2, 4, 900 }, + [2] = { 70.5, 73.8, 40, 3600 }, + }, + }, + [148758] = { + ["coords"] = { + [1] = { 67.1, 19.5, 4, 900 }, + [2] = { 70.3, 75.2, 40, 3600 }, + }, + }, + [148761] = { + ["coords"] = { + [1] = { 62.1, 54.8, 17, 900 }, + }, + }, + [148762] = { + ["coords"] = { + [1] = { 66.8, 19.6, 4, 900 }, + [2] = { 70, 74.9, 40, 3600 }, + }, + }, + [148764] = { + ["coords"] = { + [1] = { 67.1, 18.5, 4, 900 }, + [2] = { 70.7, 74.4, 40, 3600 }, + }, + }, + [148765] = { + ["coords"] = { + [1] = { 67.3, 18.9, 4, 900 }, + [2] = { 70.6, 74.9, 40, 3600 }, + }, + }, + [148766] = { + ["coords"] = { + [1] = { 67.6, 18.9, 4, 900 }, + [2] = { 70.9, 75.2, 40, 3600 }, + }, + }, + [148767] = { + ["coords"] = { + [1] = { 66.8, 18.7, 4, 900 }, + [2] = { 70.4, 74.3, 40, 3600 }, + }, + }, + [148768] = { + ["coords"] = { + [1] = { 66.9, 19.6, 4, 900 }, + [2] = { 70, 75, 40, 3600 }, + }, + }, + [148769] = { + ["coords"] = { + [1] = { 66.9, 19, 4, 900 }, + [2] = { 70.3, 74.5, 40, 3600 }, + }, + }, + [148771] = { + ["coords"] = { + [1] = { 62, 54.8, 17, 900 }, + }, + }, + [148772] = { + ["coords"] = { + [1] = { 61.9, 55.1, 17, 900 }, + }, + }, + [148773] = { + ["coords"] = { + [1] = { 66.8, 18.9, 4, 900 }, + [2] = { 70.3, 74.4, 40, 3600 }, + }, + }, + [148774] = { + ["coords"] = { + [1] = { 67.6, 17.9, 4, 900 }, + [2] = { 71.3, 74.4, 40, 3600 }, + }, + }, + [148781] = { + ["coords"] = { + [1] = { 62, 54.9, 17, 900 }, + }, + }, + [148782] = { + ["coords"] = { + [1] = { 62, 54.8, 17, 900 }, + }, + }, + [148790] = { + ["coords"] = { + [1] = { 61.8, 55.1, 17, 900 }, + }, + }, + [148795] = { + ["coords"] = { + [1] = { 61.9, 55.2, 17, 900 }, + }, + }, + [148796] = { + ["coords"] = { + [1] = { 62, 54.9, 17, 900 }, + }, + }, + [148801] = { + ["coords"] = { + [1] = { 62, 54.8, 17, 900 }, + }, + }, + [148807] = { + ["coords"] = { + [1] = { 61.8, 55.2, 17, 900 }, + }, + }, + [148811] = { + ["coords"] = { + [1] = { 61.9, 54.9, 17, 900 }, + }, + }, + [148812] = { + ["coords"] = { + [1] = { 61.9, 54.7, 17, 900 }, + }, + }, + [148813] = { + ["coords"] = { + [1] = { 62, 55, 17, 900 }, + }, + }, + [148814] = { + ["coords"] = { + [1] = { 62, 55.1, 17, 900 }, + }, + }, + [148815] = { + ["coords"] = { + [1] = { 61.9, 55.2, 17, 900 }, + }, + }, + [148816] = { + ["coords"] = { + [1] = { 62, 55.1, 17, 900 }, + }, + }, + [148817] = { + ["coords"] = { + [1] = { 61.9, 55.1, 17, 900 }, + }, + }, + [148818] = { + ["coords"] = { + [1] = { 61.9, 55.1, 17, 900 }, + }, + }, + [148830] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [148831] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [148832] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [148833] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [148834] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [148835] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [148836] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [148837] = { + ["coords"] = {}, + }, + [148838] = { + ["coords"] = {}, + }, + [148840] = { + ["coords"] = { + [1] = { 60.9, 56.2, 357, 900 }, + }, + }, + [148841] = { + ["coords"] = { + [1] = { 60.7, 66.8, 357, 900 }, + }, + }, + [148842] = { + ["coords"] = {}, + }, + [148843] = { + ["coords"] = {}, + }, + [148844] = { + ["coords"] = {}, + }, + [148845] = { + ["coords"] = {}, + }, + [148846] = { + ["coords"] = {}, + }, + [148847] = { + ["coords"] = {}, + }, + [148848] = { + ["coords"] = {}, + }, + [148849] = { + ["coords"] = {}, + }, + [148850] = { + ["coords"] = {}, + }, + [148851] = { + ["coords"] = {}, + }, + [148852] = { + ["coords"] = {}, + }, + [148853] = { + ["coords"] = {}, + }, + [148854] = { + ["coords"] = {}, + }, + [148855] = { + ["coords"] = {}, + }, + [148856] = { + ["coords"] = {}, + }, + [148857] = { + ["coords"] = {}, + }, + [148858] = { + ["coords"] = {}, + }, + [148859] = { + ["coords"] = {}, + }, + [148860] = { + ["coords"] = {}, + }, + [148861] = { + ["coords"] = {}, + }, + [148862] = { + ["coords"] = {}, + }, + [148863] = { + ["coords"] = {}, + }, + [148864] = { + ["coords"] = {}, + }, + [148865] = { + ["coords"] = { + [1] = { 48.7, 55.7, 45, 7200 }, + }, + }, + [148866] = { + ["coords"] = { + [1] = { 7.2, 59.1, 11, 7200 }, + [2] = { 67.9, 58.9, 15, 900 }, + [3] = { 69.2, 56.4, 15, 900 }, + [4] = { 77.4, 55.8, 15, 900 }, + }, + }, + [148876] = { + ["coords"] = { + [1] = { 70.9, 43.1, 440, 900 }, + }, + }, + [148877] = { + ["coords"] = { + [1] = { 72.3, 44.2, 440, 900 }, + }, + }, + [148878] = { + ["coords"] = { + [1] = { 72.8, 45.3, 440, 900 }, + }, + }, + [148879] = { + ["coords"] = { + [1] = { 71.3, 45.9, 440, 900 }, + }, + }, + [148880] = { + ["coords"] = { + [1] = { 73.3, 47.3, 440, 900 }, + }, + }, + [148883] = { + ["coords"] = {}, + }, + [148884] = { + ["coords"] = { + [1] = { 26.9, 77.3, 33, 900 }, + }, + }, + [148885] = { + ["coords"] = { + [1] = { 26.9, 77.3, 33, 900 }, + }, + }, + [148886] = { + ["coords"] = { + [1] = { 26.9, 77.3, 33, 900 }, + }, + }, + [148887] = { + ["coords"] = { + [1] = { 26.9, 77.4, 33, 900 }, + }, + }, + [148888] = { + ["coords"] = { + [1] = { 26.9, 77.3, 33, 900 }, + }, + }, + [148889] = { + ["coords"] = { + [1] = { 27.2, 77.3, 33, 900 }, + }, + }, + [148890] = { + ["coords"] = {}, + }, + [148891] = { + ["coords"] = { + [1] = { 27.2, 77.3, 33, 900 }, + }, + }, + [148892] = { + ["coords"] = { + [1] = { 27.2, 77.3, 33, 900 }, + }, + }, + [148893] = { + ["coords"] = { + [1] = { 27.2, 77.4, 33, 900 }, + }, + }, + [148894] = { + ["coords"] = { + [1] = { 26.8, 77.3, 33, 900 }, + }, + }, + [148895] = { + ["coords"] = { + [1] = { 27.1, 77.4, 33, 900 }, + }, + }, + [148896] = { + ["coords"] = {}, + }, + [148897] = { + ["coords"] = {}, + }, + [148898] = { + ["coords"] = { + [1] = { 27.1, 77.5, 33, 900 }, + }, + }, + [148899] = { + ["coords"] = { + [1] = { 27.1, 77.3, 33, 900 }, + }, + }, + [148900] = { + ["coords"] = { + [1] = { 27.1, 77.2, 33, 900 }, + }, + }, + [148901] = { + ["coords"] = { + [1] = { 26.9, 77.3, 33, 900 }, + }, + }, + [148902] = { + ["coords"] = { + [1] = { 27.3, 77.5, 33, 900 }, + }, + }, + [148903] = { + ["coords"] = { + [1] = { 26.9, 77.3, 33, 900 }, + }, + }, + [148904] = { + ["coords"] = { + [1] = { 27.3, 77.5, 33, 900 }, + }, + }, + [148905] = { + ["coords"] = { + [1] = { 27.3, 77.6, 33, 900 }, + }, + }, + [148906] = { + ["coords"] = { + [1] = { 27.3, 77.6, 33, 900 }, + }, + }, + [148907] = { + ["coords"] = {}, + }, + [148908] = { + ["coords"] = {}, + }, + [148909] = { + ["coords"] = { + [1] = { 27.1, 77.7, 33, 900 }, + }, + }, + [148910] = { + ["coords"] = { + [1] = { 27.2, 77.7, 33, 900 }, + }, + }, + [148911] = { + ["coords"] = { + [1] = { 27.1, 77.6, 33, 900 }, + }, + }, + [148912] = { + ["coords"] = { + [1] = { 27.2, 77.5, 33, 900 }, + }, + }, + [148913] = { + ["coords"] = { + [1] = { 27.2, 77.5, 33, 900 }, + }, + }, + [148914] = { + ["coords"] = { + [1] = { 27, 77.3, 33, 900 }, + }, + }, + [148915] = { + ["coords"] = { + [1] = { 27, 77.4, 33, 900 }, + }, + }, + [148917] = { + ["coords"] = {}, + }, + [148937] = { + ["coords"] = {}, + }, + [148956] = { + ["coords"] = { + [1] = { 44.5, 13.3, 28, 1200 }, + [2] = { 82.7, 87, 139, 900 }, + }, + }, + [148957] = { + ["coords"] = { + [1] = { 44.5, 13.7, 28, 1200 }, + [2] = { 82.9, 87.2, 139, 900 }, + }, + }, + [148958] = { + ["coords"] = { + [1] = { 44.2, 13.5, 28, 1200 }, + [2] = { 82.6, 87.4, 139, 900 }, + }, + }, + [148959] = { + ["coords"] = { + [1] = { 44.3, 13.3, 28, 1200 }, + [2] = { 82.5, 87.2, 139, 900 }, + }, + }, + [148960] = { + ["coords"] = { + [1] = { 44.4, 13.5, 28, 1200 }, + [2] = { 82.7, 87.2, 139, 900 }, + }, + }, + [148976] = { + ["coords"] = { + [1] = { 62.7, 76.1, 1537, 900 }, + [2] = { 52.7, 45.2, 1537, 900 }, + [3] = { 51, 36.7, 1537, 900 }, + }, + }, + [148996] = { + ["coords"] = { + [1] = { 36.2, 60.4, 51, 0 }, + [2] = { 36.7, 60.4, 51, 0 }, + [3] = { 36.5, 59.5, 51, 0 }, + }, + }, + [148997] = { + ["coords"] = { + [1] = { 36.1, 60.3, 51, 0 }, + [2] = { 36.2, 59.8, 51, 0 }, + }, + }, + [148998] = { + ["coords"] = {}, + }, + [149017] = { + ["coords"] = { + [1] = { 43.2, 62.4, 51, 0 }, + [2] = { 43.4, 62.2, 51, 0 }, + [3] = { 43.2, 62, 51, 0 }, + }, + }, + [149018] = { + ["coords"] = { + [1] = { 43.2, 62, 51, 0 }, + [2] = { 43.6, 61.6, 51, 0 }, + }, + }, + [149019] = { + ["coords"] = { + [1] = { 49.7, 56.3, 51, 0 }, + [2] = { 49.8, 55.9, 51, 0 }, + [3] = { 49.3, 55.7, 51, 0 }, + [4] = { 49.6, 55.6, 51, 0 }, + }, + }, + [149020] = { + ["coords"] = { + [1] = { 34.2, 54.4, 51, 0 }, + [2] = { 33.9, 54.2, 51, 0 }, + [3] = { 33.8, 53.7, 51, 0 }, + [4] = { 34.3, 53.7, 51, 0 }, + }, + }, + [149021] = { + ["coords"] = { + [1] = { 49.6, 55.8, 51, 0 }, + }, + }, + [149022] = { + ["coords"] = { + [1] = { 34.2, 54.1, 51, 0 }, + }, + }, + [149024] = { + ["coords"] = { + [1] = { 67.1, 52.8, 1, 900 }, + }, + }, + [149025] = { + ["coords"] = { + [1] = { 35.7, 60.7, 51, 7200 }, + }, + }, + [149026] = { + ["coords"] = { + [1] = { 40.6, 54.1, 440, 900 }, + }, + }, + [149027] = { + ["coords"] = { + [1] = { 40.4, 54.1, 440, 900 }, + }, + }, + [149028] = { + ["coords"] = { + [1] = { 40.4, 54.2, 440, 900 }, + }, + }, + [149029] = { + ["coords"] = { + [1] = { 40.8, 57, 440, 900 }, + }, + }, + [149030] = { + ["coords"] = { + [1] = { 44, 60.9, 51, 7200 }, + }, + }, + [149031] = { + ["coords"] = { + [1] = { 50.1, 54.7, 51, 7200 }, + }, + }, + [149032] = { + ["coords"] = { + [1] = { 33.3, 54.5, 51, 7200 }, + }, + }, + [149036] = { + ["coords"] = { + [1] = { 62.5, 38.5, 17, 10 }, + }, + }, + [149038] = { + ["coords"] = { + [1] = { 51.5, 41.6, 14, 900 }, + [2] = { 52, 29.9, 17, 900 }, + [3] = { 74, 60.6, 331, 900 }, + }, + }, + [149045] = { + ["coords"] = { + [1] = { 39.6, 54.1, 51, 7200 }, + }, + }, + [149046] = { + ["coords"] = { + [1] = { 45.6, 53.8, 51, 7200 }, + }, + }, + [149047] = { + ["coords"] = { + [1] = { 39.1, 39.1, 51, 0 }, + }, + }, + [149048] = { + ["coords"] = { + [1] = { 27.2, 45.9, 44, 7200 }, + }, + }, + [149049] = { + ["coords"] = { + [1] = { 43.8, 72.9, 130, 7200 }, + }, + }, + [149410] = { + ["coords"] = { + [1] = { 39, 39.1, 51, 0 }, + }, + }, + [149412] = { + ["coords"] = { + [1] = { 65.7, 54.7, 1537, 900 }, + }, + }, + [149413] = { + ["coords"] = { + [1] = { 39.5, 72.3, 1537, 900 }, + }, + }, + [149417] = { + ["coords"] = { + [1] = { 37.7, 49.6, 1537, 900 }, + }, + }, + [149418] = { + ["coords"] = { + [1] = { 28.3, 52.9, 1537, 900 }, + }, + }, + [149419] = { + ["coords"] = { + [1] = { 41.8, 35.9, 1, 900 }, + }, + }, + [149420] = { + ["coords"] = { + [1] = { 36.6, 54.7, 16, 180 }, + }, + ["fac"] = "A", + }, + [149424] = { + ["coords"] = { + [1] = { 22.6, 44.1, 44, 7200 }, + }, + }, + [149431] = { + ["coords"] = {}, + }, + [149432] = { + ["coords"] = {}, + }, + [149433] = { + ["coords"] = {}, + }, + [149480] = { + ["coords"] = { + [1] = { 39.6, 50.3, 16, 0 }, + }, + }, + [149481] = { + ["coords"] = { + [1] = { 36.9, 53.2, 16, 0 }, + }, + }, + [149482] = { + ["coords"] = { + [1] = { 39.4, 55.5, 16, 0 }, + }, + }, + [149483] = { + ["coords"] = { + [1] = { 42.4, 64.1, 16, 0 }, + }, + }, + [149502] = { + ["coords"] = { + [1] = { 38.8, 39, 51, 10 }, + }, + }, + [150075] = { + ["coords"] = { + [1] = { 51.8, 27, 440, 10 }, + }, + }, + [150079] = { + ["coords"] = { + [1] = { 57.5, 13, 4, 300 }, + [2] = { 66.7, 11.3, 4, 300 }, + [3] = { 54.4, 10.5, 4, 300 }, + [4] = { 61.2, 9.6, 4, 300 }, + [5] = { 54.6, 78.3, 8, 300 }, + [6] = { 46.6, 75.8, 8, 300 }, + [7] = { 63.5, 73.3, 8, 300 }, + [8] = { 39.4, 70.9, 8, 300 }, + [9] = { 64.1, 69.5, 8, 300 }, + [10] = { 36.7, 69.1, 8, 300 }, + [11] = { 47.1, 68.1, 8, 300 }, + [12] = { 50.9, 67.9, 8, 300 }, + [13] = { 62.4, 65.7, 8, 300 }, + [14] = { 48.2, 64.9, 8, 300 }, + [15] = { 43.2, 64.2, 8, 300 }, + [16] = { 59.7, 61.1, 8, 300 }, + [17] = { 57.8, 59.5, 8, 300 }, + [18] = { 53.6, 57.7, 8, 300 }, + [19] = { 48.2, 57.3, 8, 300 }, + [20] = { 43.3, 57.2, 8, 300 }, + [21] = { 45.6, 56.3, 8, 300 }, + }, + }, + [150080] = { + ["coords"] = { + [1] = { 57.5, 13, 4, 300 }, + [2] = { 66.7, 11.3, 4, 300 }, + [3] = { 54.4, 10.5, 4, 300 }, + [4] = { 61.2, 9.6, 4, 300 }, + [5] = { 54.6, 78.3, 8, 300 }, + [6] = { 46.6, 75.8, 8, 300 }, + [7] = { 63.5, 73.3, 8, 300 }, + [8] = { 39.4, 70.9, 8, 300 }, + [9] = { 64.1, 69.5, 8, 300 }, + [10] = { 36.7, 69.1, 8, 300 }, + [11] = { 47.1, 68.1, 8, 300 }, + [12] = { 50.9, 67.9, 8, 300 }, + [13] = { 62.4, 65.7, 8, 300 }, + [14] = { 48.2, 64.9, 8, 300 }, + [15] = { 43.2, 64.2, 8, 300 }, + [16] = { 59.7, 61.1, 8, 300 }, + [17] = { 57.8, 59.5, 8, 300 }, + [18] = { 53.6, 57.7, 8, 300 }, + [19] = { 48.2, 57.3, 8, 300 }, + [20] = { 43.3, 57.2, 8, 300 }, + [21] = { 45.6, 56.3, 8, 300 }, + }, + }, + [150081] = { + ["coords"] = { + [1] = { 57.5, 13, 4, 300 }, + [2] = { 66.7, 11.3, 4, 300 }, + [3] = { 54.4, 10.5, 4, 300 }, + [4] = { 61.2, 9.6, 4, 300 }, + [5] = { 65.9, 7.6, 4, 300 }, + [6] = { 60.7, 7.4, 4, 300 }, + [7] = { 54.6, 78.3, 8, 300 }, + [8] = { 46.6, 75.8, 8, 300 }, + [9] = { 63.5, 73.3, 8, 300 }, + [10] = { 53.5, 73, 8, 300 }, + [11] = { 45.9, 72.7, 8, 300 }, + [12] = { 61.4, 71.1, 8, 300 }, + [13] = { 39.4, 70.9, 8, 300 }, + [14] = { 41.3, 70.7, 8, 300 }, + [15] = { 64.1, 69.5, 8, 300 }, + [16] = { 36.7, 69.1, 8, 300 }, + [17] = { 58.5, 68.9, 8, 300 }, + [18] = { 38.3, 68.7, 8, 300 }, + [19] = { 47.1, 68.1, 8, 300 }, + [20] = { 50.9, 67.9, 8, 300 }, + [21] = { 62.4, 65.7, 8, 300 }, + [22] = { 50.6, 65.3, 8, 300 }, + [23] = { 46.1, 65, 8, 300 }, + [24] = { 48.2, 64.9, 8, 300 }, + [25] = { 57.6, 64.8, 8, 300 }, + [26] = { 61, 64.3, 8, 300 }, + [27] = { 43.2, 64.2, 8, 300 }, + [28] = { 42.6, 63.7, 8, 300 }, + [29] = { 45, 61.3, 8, 300 }, + [30] = { 59.7, 61.1, 8, 300 }, + [31] = { 41.3, 60.9, 8, 300 }, + [32] = { 51.1, 60.8, 8, 300 }, + [33] = { 55.7, 60.4, 8, 300 }, + [34] = { 57.8, 59.5, 8, 300 }, + [35] = { 53.6, 57.7, 8, 300 }, + [36] = { 48.2, 57.3, 8, 300 }, + [37] = { 43.3, 57.2, 8, 300 }, + [38] = { 45.6, 56.3, 8, 300 }, + }, + }, + [150082] = { + ["coords"] = { + [1] = { 65.9, 7.6, 4, 300 }, + [2] = { 60.7, 7.4, 4, 300 }, + [3] = { 53.5, 73, 8, 300 }, + [4] = { 45.9, 72.7, 8, 300 }, + [5] = { 61.4, 71.1, 8, 300 }, + [6] = { 41.3, 70.7, 8, 300 }, + [7] = { 58.5, 68.9, 8, 300 }, + [8] = { 38.3, 68.7, 8, 300 }, + [9] = { 50.6, 65.3, 8, 300 }, + [10] = { 46.1, 65, 8, 300 }, + [11] = { 57.6, 64.8, 8, 300 }, + [12] = { 61, 64.3, 8, 300 }, + [13] = { 42.6, 63.7, 8, 300 }, + [14] = { 45, 61.3, 8, 300 }, + [15] = { 41.3, 60.9, 8, 300 }, + [16] = { 51.1, 60.8, 8, 300 }, + [17] = { 55.7, 60.4, 8, 300 }, + }, + }, + [150086] = { + ["coords"] = { + [1] = { 77.8, 91.3, 16, 180 }, + }, + }, + [150087] = { + ["coords"] = { + [1] = { 47.7, 29.7, 1537, 900 }, + }, + }, + [150137] = { + ["coords"] = { + [1] = { 78.7, 17.2, 51, 7200 }, + }, + }, + [150138] = { + ["coords"] = { + [1] = { 17.9, 84.1, 38, 7200 }, + }, + }, + [150140] = { + ["coords"] = { + [1] = { 59.5, 31.5, 16, 180 }, + [2] = { 59.4, 31.4, 16, 180 }, + [3] = { 59.6, 31.3, 16, 180 }, + }, + }, + [150713] = { + ["coords"] = { + [1] = { 59.1, 31.9, 16, 180 }, + }, + }, + [151286] = { + ["coords"] = { + [1] = { 59.5, 31.3, 16, 180 }, + }, + }, + [151951] = { + ["coords"] = {}, + }, + [151952] = { + ["coords"] = {}, + }, + [151953] = { + ["coords"] = { + [1] = { 48.7, 40.8, 12, 900 }, + [2] = { 83, 78.8, 139, 900 }, + }, + }, + [151954] = { + ["coords"] = { + [1] = { 50.2, 42.4, 12, 900 }, + [2] = { 84.5, 79.9, 139, 900 }, + }, + }, + [151955] = { + ["coords"] = { + [1] = { 48.6, 41, 12, 900 }, + [2] = { 82.9, 79.1, 139, 900 }, + }, + }, + [151956] = { + ["coords"] = { + [1] = { 49.4, 39.8, 12, 900 }, + [2] = { 83.5, 77.8, 139, 900 }, + }, + }, + [151957] = { + ["coords"] = { + [1] = { 49.6, 39.2, 12, 900 }, + [2] = { 83.6, 77.3, 139, 900 }, + }, + }, + [151958] = { + ["coords"] = { + [1] = { 49, 42.2, 12, 900 }, + [2] = { 83.3, 80.1, 139, 900 }, + }, + }, + [151959] = { + ["coords"] = { + [1] = { 49.4, 39.5, 12, 900 }, + [2] = { 83.5, 77.5, 139, 900 }, + }, + }, + [151960] = { + ["coords"] = { + [1] = { 49.7, 40.7, 12, 900 }, + [2] = { 83.8, 78.6, 139, 900 }, + }, + }, + [151961] = { + ["coords"] = { + [1] = { 49.2, 40.3, 12, 900 }, + [2] = { 83.4, 78.3, 139, 900 }, + }, + }, + [151962] = { + ["coords"] = { + [1] = { 49.3, 40, 12, 900 }, + [2] = { 83.4, 78, 139, 900 }, + }, + }, + [151963] = { + ["coords"] = { + [1] = { 49.2, 40.4, 12, 900 }, + [2] = { 83.3, 78.4, 139, 900 }, + }, + }, + [151964] = { + ["coords"] = { + [1] = { 49.7, 40.5, 12, 900 }, + [2] = { 83.8, 78.3, 139, 900 }, + }, + }, + [151965] = { + ["coords"] = { + [1] = { 49.1, 41.9, 12, 900 }, + [2] = { 83.4, 79.8, 139, 900 }, + }, + }, + [151966] = { + ["coords"] = { + [1] = { 49.5, 42, 12, 900 }, + [2] = { 83.8, 79.7, 139, 900 }, + }, + }, + [151967] = { + ["coords"] = { + [1] = { 49.8, 39.3, 12, 900 }, + [2] = { 83.8, 77.3, 139, 900 }, + }, + }, + [151968] = { + ["coords"] = { + [1] = { 48.9, 41.1, 12, 900 }, + [2] = { 83.2, 79, 139, 900 }, + }, + }, + [151969] = { + ["coords"] = { + [1] = { 49.5, 41.7, 12, 900 }, + [2] = { 83.7, 79.5, 139, 900 }, + }, + }, + [151970] = { + ["coords"] = { + [1] = { 49.7, 42, 12, 900 }, + [2] = { 84, 79.7, 139, 900 }, + }, + }, + [151971] = { + ["coords"] = { + [1] = { 49.9, 41.5, 12, 900 }, + [2] = { 84.1, 79.2, 139, 900 }, + }, + }, + [151972] = { + ["coords"] = { + [1] = { 50.3, 41.7, 12, 900 }, + [2] = { 84.5, 79.3, 139, 900 }, + }, + }, + [151973] = { + ["coords"] = {}, + }, + [151974] = { + ["coords"] = { + [1] = { 50.8, 23.3, 440, 180 }, + }, + }, + [151975] = { + ["coords"] = { + [1] = { 50.8, 23.3, 440, 180 }, + }, + }, + [151976] = { + ["coords"] = { + [1] = { 50.8, 23.3, 440, 180 }, + }, + }, + [151977] = { + ["coords"] = { + [1] = { 51.3, 26, 440, 900 }, + }, + }, + [151978] = { + ["coords"] = { + [1] = { 51.3, 26, 440, 900 }, + }, + }, + [151979] = { + ["coords"] = { + [1] = { 51.3, 26, 440, 900 }, + }, + }, + [151980] = { + ["coords"] = { + [1] = { 51.9, 26.2, 440, 900 }, + }, + }, + [151981] = { + ["coords"] = { + [1] = { 51.9, 26.2, 440, 900 }, + }, + }, + [151982] = { + ["coords"] = { + [1] = { 51.9, 26.2, 440, 900 }, + }, + }, + [151983] = { + ["coords"] = { + [1] = { 66.2, 23.4, 440, 900 }, + }, + }, + [151984] = { + ["coords"] = { + [1] = { 66.2, 23.3, 440, 900 }, + }, + }, + [151992] = { + ["coords"] = {}, + }, + [152032] = { + ["coords"] = { + [1] = { 40.5, 49.2, 51, 7200 }, + }, + }, + [152033] = { + ["coords"] = { + [1] = { 40.2, 48.9, 51, 7200 }, + }, + }, + [152034] = { + ["coords"] = { + [1] = { 40.3, 49.2, 51, 7200 }, + }, + }, + [152035] = { + ["coords"] = { + [1] = { 40.9, 75.3, 51, 7200 }, + }, + }, + [152036] = { + ["coords"] = { + [1] = { 34.2, 46.8, 51, 7200 }, + }, + }, + [152037] = { + ["coords"] = { + [1] = { 38.1, 51, 51, 7200 }, + }, + }, + [152038] = { + ["coords"] = { + [1] = { 41.9, 43, 51, 7200 }, + }, + }, + [152039] = { + ["coords"] = { + [1] = { 37.7, 39.2, 51, 7200 }, + }, + }, + [152040] = { + ["coords"] = { + [1] = { 43, 40.7, 51, 7200 }, + }, + }, + [152041] = { + ["coords"] = { + [1] = { 41.4, 43.3, 51, 7200 }, + }, + }, + [152042] = { + ["coords"] = { + [1] = { 41.5, 43.4, 51, 7200 }, + }, + }, + [152043] = { + ["coords"] = { + [1] = { 69.1, 33.4, 51, 7200 }, + }, + }, + [152044] = { + ["coords"] = { + [1] = { 49.1, 39.7, 51, 7200 }, + }, + }, + [152045] = { + ["coords"] = { + [1] = { 49.5, 39.4, 51, 7200 }, + }, + }, + [152046] = { + ["coords"] = { + [1] = { 49.5, 39.7, 51, 7200 }, + }, + }, + [152080] = { + ["coords"] = {}, + }, + [152093] = { + ["coords"] = { + [1] = { 29.4, 15.8, 406, 7200 }, + [2] = { 25.6, 14.5, 406, 7200 }, + [3] = { 26.9, 14.1, 406, 7200 }, + [4] = { 29.6, 14, 406, 7200 }, + [5] = { 28.3, 13.7, 406, 7200 }, + [6] = { 27.3, 12.8, 406, 7200 }, + [7] = { 25.8, 12.4, 406, 7200 }, + }, + }, + [152094] = { + ["coords"] = { + [1] = { 59, 47.1, 141, 180 }, + [2] = { 58.5, 46.9, 141, 180 }, + [3] = { 60.5, 46.7, 141, 180 }, + [4] = { 55.4, 46.5, 141, 180 }, + [5] = { 56, 46.4, 141, 180 }, + [6] = { 58.2, 46.1, 141, 180 }, + [7] = { 57.7, 46, 141, 180 }, + [8] = { 59.8, 46, 141, 180 }, + [9] = { 59.5, 45.8, 141, 180 }, + [10] = { 57.4, 45.8, 141, 180 }, + [11] = { 55.7, 45.5, 141, 180 }, + [12] = { 54.7, 45, 141, 180 }, + [13] = { 57.1, 44.3, 141, 180 }, + [14] = { 63.3, 44.3, 141, 180 }, + [15] = { 54.6, 44.2, 141, 180 }, + [16] = { 60.3, 44.2, 141, 180 }, + [17] = { 57.5, 44.2, 141, 180 }, + [18] = { 62.5, 44, 141, 180 }, + [19] = { 55.1, 43.8, 141, 180 }, + [20] = { 54.5, 43.8, 141, 180 }, + [21] = { 61.2, 43.7, 141, 180 }, + [22] = { 57.8, 43.5, 141, 180 }, + [23] = { 62.8, 43.5, 141, 180 }, + [24] = { 61.1, 43.4, 141, 180 }, + [25] = { 62.3, 43.2, 141, 180 }, + [26] = { 54.5, 43.2, 141, 180 }, + [27] = { 54.7, 43.1, 141, 180 }, + [28] = { 65.2, 42.7, 141, 180 }, + [29] = { 57.2, 42.4, 141, 180 }, + [30] = { 56.4, 42.3, 141, 180 }, + [31] = { 64.8, 42.1, 141, 180 }, + [32] = { 60.4, 41.9, 141, 180 }, + [33] = { 54.5, 41.7, 141, 180 }, + [34] = { 58.6, 41.5, 141, 180 }, + [35] = { 63.7, 41, 141, 180 }, + [36] = { 63.1, 40.7, 141, 180 }, + [37] = { 57.1, 40.7, 141, 180 }, + [38] = { 62.4, 40.5, 141, 180 }, + [39] = { 55.2, 40.5, 141, 180 }, + [40] = { 64.7, 40.1, 141, 180 }, + [41] = { 53.8, 40.1, 141, 180 }, + [42] = { 61.3, 40.1, 141, 180 }, + [43] = { 54.6, 40, 141, 180 }, + [44] = { 59.9, 39.9, 141, 180 }, + [45] = { 54.4, 39.7, 141, 180 }, + [46] = { 56.3, 39.2, 141, 180 }, + [47] = { 54, 39.1, 141, 180 }, + [48] = { 56.7, 39.1, 141, 180 }, + [49] = { 53.2, 38.6, 141, 180 }, + [50] = { 63.2, 37.9, 141, 180 }, + [51] = { 54.7, 37.8, 141, 180 }, + [52] = { 53.7, 37.8, 141, 180 }, + [53] = { 61.6, 37.5, 141, 180 }, + [54] = { 57.2, 36.9, 141, 180 }, + [55] = { 55.6, 36.6, 141, 180 }, + [56] = { 57.6, 36.5, 141, 180 }, + [57] = { 60.5, 36.3, 141, 180 }, + [58] = { 63, 36, 141, 180 }, + [59] = { 57.2, 35.1, 141, 180 }, + [60] = { 58.1, 35, 141, 180 }, + [61] = { 61.5, 34.3, 141, 180 }, + [62] = { 58.9, 34, 141, 180 }, + [63] = { 61.4, 33.5, 141, 180 }, + [64] = { 57.4, 33.3, 141, 180 }, + [65] = { 56.9, 33.2, 141, 180 }, + [66] = { 60.9, 30.2, 141, 180 }, + }, + }, + [152095] = { + ["coords"] = { + [1] = { 57.3, 39.7, 141, 180 }, + [2] = { 57, 39.1, 141, 180 }, + [3] = { 56.5, 38.9, 141, 180 }, + [4] = { 58, 38.4, 141, 180 }, + [5] = { 56.5, 38.4, 141, 180 }, + [6] = { 58, 38.2, 141, 180 }, + [7] = { 58.7, 38.2, 141, 180 }, + [8] = { 56.8, 38.2, 141, 180 }, + [9] = { 58.8, 37.6, 141, 180 }, + [10] = { 56.8, 37.5, 141, 180 }, + [11] = { 57.7, 37.5, 141, 180 }, + [12] = { 58.9, 37.3, 141, 180 }, + [13] = { 57.2, 37.1, 141, 180 }, + [14] = { 57.8, 37, 141, 180 }, + [15] = { 56.9, 37, 141, 180 }, + [16] = { 58, 36.7, 141, 180 }, + [17] = { 58.4, 36.4, 141, 180 }, + [18] = { 58.2, 36.2, 141, 180 }, + [19] = { 57.5, 36, 141, 180 }, + [20] = { 58.1, 35.6, 141, 180 }, + }, + ["fac"] = "A", + }, + [152097] = { + ["coords"] = {}, + }, + [152098] = { + ["coords"] = { + [1] = { 58.8, 32, 16, 180 }, + }, + }, + [152324] = { + ["coords"] = { + [1] = { 51.9, 18.9, 16, 180 }, + }, + }, + [152325] = { + ["coords"] = { + [1] = { 64.1, 20.8, 4, 900 }, + [2] = { 64.2, 18.2, 4, 900 }, + }, + }, + [152326] = { + ["coords"] = { + [1] = { 65.2, 22.5, 4, 900 }, + [2] = { 64.2, 15.8, 4, 900 }, + }, + }, + [152327] = { + ["coords"] = { + [1] = { 65.2, 21.4, 4, 900 }, + [2] = { 63.7, 16.6, 4, 900 }, + }, + }, + [152328] = { + ["coords"] = { + [1] = { 64.4, 20.5, 4, 900 }, + [2] = { 63.8, 18, 4, 900 }, + }, + }, + [152329] = { + ["coords"] = { + [1] = { 65.6, 22.2, 4, 900 }, + [2] = { 63.8, 15.6, 4, 900 }, + }, + }, + [152330] = { + ["coords"] = { + [1] = { 64.7, 23.1, 4, 900 }, + [2] = { 64.9, 16, 4, 900 }, + }, + }, + [152331] = { + ["coords"] = { + [1] = { 65, 22.8, 4, 900 }, + [2] = { 64.5, 15.9, 4, 900 }, + }, + }, + [152332] = { + ["coords"] = { + [1] = { 64.3, 22.3, 4, 900 }, + [2] = { 64.7, 17, 4, 900 }, + }, + }, + [152574] = { + ["coords"] = { + [1] = { 48.7, 44.9, 357, 900 }, + }, + }, + [152575] = { + ["coords"] = { + [1] = { 48.7, 44.9, 357, 900 }, + }, + }, + [152576] = { + ["coords"] = { + [1] = { 48.7, 44.9, 357, 900 }, + }, + }, + [152577] = { + ["coords"] = { + [1] = { 48.7, 44.9, 357, 900 }, + }, + }, + [152578] = { + ["coords"] = { + [1] = { 48.7, 44.9, 357, 900 }, + }, + }, + [152579] = { + ["coords"] = { + [1] = { 48.7, 44.9, 357, 900 }, + }, + }, + [152580] = { + ["coords"] = { + [1] = { 48.7, 44.9, 357, 900 }, + }, + }, + [152581] = { + ["coords"] = { + [1] = { 44.9, 2.5, 357, 900 }, + [2] = { 42.6, 97.8, 405, 900 }, + }, + }, + [152582] = { + ["coords"] = { + [1] = { 44.9, 2.5, 357, 900 }, + [2] = { 42.6, 97.8, 405, 900 }, + }, + }, + [152583] = { + ["coords"] = { + [1] = { 39.4, 28.8, 215, 180 }, + [2] = { 47.2, 58.6, 1638, 180 }, + }, + }, + [152584] = { + ["coords"] = { + [1] = { 75.5, 43.8, 357, 900 }, + }, + }, + [152585] = { + ["coords"] = { + [1] = { 75.5, 43.8, 357, 900 }, + }, + }, + [152586] = { + ["coords"] = { + [1] = { 75.5, 43.8, 357, 900 }, + }, + }, + [152587] = { + ["coords"] = { + [1] = { 75.5, 43.8, 357, 900 }, + }, + }, + [152598] = { + ["coords"] = { + [1] = { 48, 61, 16, 180 }, + }, + }, + [152604] = { + ["coords"] = { + [1] = { 47.8, 51.4, 16, 180 }, + }, + }, + [152605] = { + ["coords"] = { + [1] = { 48.6, 48.5, 16, 180 }, + }, + }, + [152606] = { + ["coords"] = { + [1] = { 47.4, 46.2, 16, 180 }, + }, + }, + [152608] = { + ["coords"] = { + [1] = { 44.3, 37.7, 17, 10 }, + }, + }, + [152614] = { + ["coords"] = { + [1] = { 27.7, 36.3, 1, 900 }, + [2] = { 45.1, 91, 16, 180 }, + }, + }, + [152618] = { + ["coords"] = { + [1] = { 52.7, 41.8, 17, 10 }, + }, + }, + [152619] = { + ["coords"] = { + [1] = { 50.4, 73.9, 148, 180 }, + [2] = { 34.8, 52.8, 361, 180 }, + }, + }, + [152620] = { + ["coords"] = { + [1] = { 51.8, 85.4, 16, 10 }, + [2] = { 55.6, 83.3, 16, 10 }, + [3] = { 63.9, 80.7, 16, 10 }, + [4] = { 60.9, 79.8, 16, 10 }, + [5] = { 53.5, 78.4, 16, 10 }, + [6] = { 48.8, 78.4, 16, 10 }, + [7] = { 55.5, 74.8, 16, 10 }, + [8] = { 50, 70.2, 16, 10 }, + [9] = { 45.7, 69.5, 16, 10 }, + }, + }, + [152621] = { + ["coords"] = { + [1] = { 59.4, 90.3, 16, 10 }, + [2] = { 62.6, 88, 16, 10 }, + [3] = { 47.3, 87, 16, 10 }, + [4] = { 55.6, 87, 16, 10 }, + [5] = { 52.4, 85.4, 16, 10 }, + [6] = { 60, 80, 16, 10 }, + [7] = { 45.9, 79.9, 16, 10 }, + [8] = { 52.5, 78.3, 16, 10 }, + }, + }, + [152622] = { + ["coords"] = { + [1] = { 55.3, 90.5, 16, 180 }, + [2] = { 58.8, 90.1, 16, 180 }, + [3] = { 59.7, 90, 16, 180 }, + [4] = { 52.9, 89.5, 16, 180 }, + [5] = { 61.1, 89.4, 16, 180 }, + [6] = { 56.4, 88.8, 16, 180 }, + [7] = { 48.1, 88.1, 16, 180 }, + [8] = { 63.6, 87.9, 16, 180 }, + [9] = { 62.3, 87.5, 16, 180 }, + [10] = { 50.2, 87.2, 16, 180 }, + [11] = { 57.3, 87, 16, 180 }, + [12] = { 47.2, 87, 16, 180 }, + [13] = { 55.2, 86.8, 16, 180 }, + [14] = { 60.1, 86.6, 16, 180 }, + [15] = { 54.8, 86.5, 16, 180 }, + [16] = { 64.5, 86.5, 16, 180 }, + [17] = { 62.8, 85.9, 16, 180 }, + [18] = { 49.7, 85.8, 16, 180 }, + [19] = { 59.4, 84.9, 16, 180 }, + [20] = { 61.9, 84.8, 16, 180 }, + [21] = { 59.8, 84.8, 16, 180 }, + [22] = { 53, 84.7, 16, 180 }, + [23] = { 45.9, 84.6, 16, 180 }, + [24] = { 62.7, 84.5, 16, 180 }, + [25] = { 52, 84.4, 16, 180 }, + [26] = { 60.6, 84.3, 16, 180 }, + [27] = { 57.8, 83.8, 16, 180 }, + [28] = { 60.2, 83.3, 16, 180 }, + [29] = { 50.9, 83.3, 16, 180 }, + [30] = { 56.1, 83.3, 16, 180 }, + [31] = { 47.9, 83.2, 16, 180 }, + [32] = { 54.6, 82, 16, 180 }, + [33] = { 50.4, 81.5, 16, 180 }, + [34] = { 57.3, 80.6, 16, 180 }, + [35] = { 50.4, 80.1, 16, 180 }, + [36] = { 48.5, 79.4, 16, 180 }, + [37] = { 53.8, 78.9, 16, 180 }, + [38] = { 60.3, 78.8, 16, 180 }, + [39] = { 56.1, 78.8, 16, 180 }, + [40] = { 46.5, 78, 16, 180 }, + [41] = { 45.2, 77.5, 16, 180 }, + [42] = { 51.8, 76.7, 16, 180 }, + [43] = { 57.9, 76.6, 16, 180 }, + [44] = { 48.8, 76.3, 16, 180 }, + [45] = { 47.1, 76.3, 16, 180 }, + [46] = { 51.1, 74.5, 16, 180 }, + [47] = { 53.6, 74.4, 16, 180 }, + [48] = { 48.6, 73.9, 16, 180 }, + [49] = { 55.3, 73.6, 16, 180 }, + [50] = { 47.4, 71.9, 16, 180 }, + [51] = { 46.1, 71, 16, 180 }, + [52] = { 48.4, 70.3, 16, 180 }, + [53] = { 50.1, 70, 16, 180 }, + [54] = { 45.2, 69.9, 16, 180 }, + }, + }, + [152631] = { + ["coords"] = { + [1] = { 55.3, 90.5, 16, 180 }, + [2] = { 58.8, 90.1, 16, 180 }, + [3] = { 59.7, 90, 16, 180 }, + [4] = { 52.9, 89.5, 16, 180 }, + [5] = { 61.1, 89.4, 16, 180 }, + [6] = { 56.4, 88.8, 16, 180 }, + [7] = { 48.1, 88.1, 16, 180 }, + [8] = { 63.6, 87.9, 16, 180 }, + [9] = { 62.3, 87.5, 16, 180 }, + [10] = { 50.2, 87.2, 16, 180 }, + [11] = { 57.3, 87, 16, 180 }, + [12] = { 47.2, 87, 16, 180 }, + [13] = { 55.2, 86.8, 16, 180 }, + [14] = { 60.1, 86.6, 16, 180 }, + [15] = { 54.8, 86.5, 16, 180 }, + [16] = { 64.5, 86.5, 16, 180 }, + [17] = { 62.8, 85.9, 16, 180 }, + [18] = { 49.7, 85.8, 16, 180 }, + [19] = { 59.4, 84.9, 16, 180 }, + [20] = { 61.9, 84.8, 16, 180 }, + [21] = { 59.8, 84.8, 16, 180 }, + [22] = { 53, 84.7, 16, 180 }, + [23] = { 45.9, 84.6, 16, 180 }, + [24] = { 62.7, 84.5, 16, 180 }, + [25] = { 52, 84.4, 16, 180 }, + [26] = { 60.6, 84.3, 16, 180 }, + [27] = { 57.8, 83.8, 16, 180 }, + [28] = { 60.2, 83.3, 16, 180 }, + [29] = { 50.9, 83.3, 16, 180 }, + [30] = { 56.1, 83.3, 16, 180 }, + [31] = { 47.9, 83.2, 16, 180 }, + [32] = { 54.6, 82, 16, 180 }, + [33] = { 50.4, 81.5, 16, 180 }, + [34] = { 57.3, 80.6, 16, 180 }, + [35] = { 50.4, 80.1, 16, 180 }, + [36] = { 48.5, 79.4, 16, 180 }, + [37] = { 53.8, 78.9, 16, 180 }, + [38] = { 60.3, 78.8, 16, 180 }, + [39] = { 56.1, 78.8, 16, 180 }, + [40] = { 46.5, 78, 16, 180 }, + [41] = { 45.2, 77.5, 16, 180 }, + [42] = { 51.8, 76.7, 16, 180 }, + [43] = { 57.9, 76.6, 16, 180 }, + [44] = { 48.8, 76.3, 16, 180 }, + [45] = { 47.1, 76.3, 16, 180 }, + [46] = { 51.1, 74.5, 16, 180 }, + [47] = { 53.6, 74.4, 16, 180 }, + [48] = { 48.6, 73.9, 16, 180 }, + [49] = { 55.3, 73.6, 16, 180 }, + [50] = { 47.4, 71.9, 16, 180 }, + [51] = { 46.1, 71, 16, 180 }, + [52] = { 48.4, 70.3, 16, 180 }, + [53] = { 50.1, 70, 16, 180 }, + [54] = { 45.2, 69.9, 16, 180 }, + }, + }, + [153113] = { + ["coords"] = {}, + }, + [153123] = { + ["coords"] = { + [1] = { 59.2, 32, 16, 180 }, + [2] = { 59.6, 30.9, 16, 180 }, + [3] = { 56.1, 30.2, 16, 180 }, + [4] = { 57, 29.9, 16, 180 }, + [5] = { 56.4, 29.8, 16, 180 }, + [6] = { 56.3, 29.8, 16, 180 }, + [7] = { 56.7, 29.6, 16, 180 }, + [8] = { 56, 29.4, 16, 180 }, + [9] = { 58.6, 29.2, 16, 180 }, + [10] = { 58.5, 29, 16, 180 }, + [11] = { 57.9, 29, 16, 180 }, + [12] = { 58.8, 29, 16, 180 }, + [13] = { 56.3, 28.8, 16, 180 }, + [14] = { 56.6, 28.7, 16, 180 }, + [15] = { 58.8, 28.7, 16, 180 }, + [16] = { 58.9, 28.4, 16, 180 }, + [17] = { 57, 28.3, 16, 180 }, + [18] = { 56.5, 28.3, 16, 180 }, + [19] = { 58.2, 27.8, 16, 180 }, + [20] = { 58.7, 26, 16, 180 }, + [21] = { 58.5, 25, 16, 180 }, + }, + }, + [153124] = { + ["coords"] = { + [1] = { 61.1, 67.6, 357, 900 }, + }, + }, + [153125] = { + ["coords"] = { + [1] = { 61.1, 67.7, 357, 900 }, + }, + }, + [153126] = { + ["coords"] = { + [1] = { 62, 73.3, 357, 900 }, + }, + }, + [153157] = { + ["coords"] = { + [1] = { 37.8, 39.3, 51, 7200 }, + [2] = { 38.9, 39.1, 51, 7200 }, + }, + }, + [153158] = { + ["coords"] = { + [1] = { 37.7, 39.4, 51, 7200 }, + [2] = { 39, 39.3, 51, 7200 }, + [3] = { 39.2, 39.3, 51, 7200 }, + [4] = { 39, 38.7, 51, 7200 }, + }, + }, + [153159] = { + ["coords"] = { + [1] = { 38.1, 38.8, 51, 7200 }, + [2] = { 39.3, 38.6, 51, 7200 }, + }, + }, + [153160] = { + ["coords"] = { + [1] = { 37.5, 39.5, 51, 7200 }, + [2] = { 37.6, 38.9, 51, 7200 }, + }, + }, + [153203] = { + ["coords"] = { + [1] = { 48, 34.5, 4, 900 }, + [2] = { 51.3, 28.7, 4, 900 }, + [3] = { 44.5, 28.6, 4, 900 }, + [4] = { 48.2, 23, 4, 900 }, + }, + ["fac"] = "AH", + }, + [153204] = { + ["coords"] = { + [1] = { 48, 34.5, 4, 900 }, + [2] = { 51.3, 28.7, 4, 900 }, + [3] = { 44.5, 28.6, 4, 900 }, + [4] = { 48.2, 23, 4, 900 }, + }, + }, + [153205] = { + ["coords"] = { + [1] = { 47.4, 30.5, 4, 900 }, + }, + }, + [153220] = { + ["coords"] = { + [1] = { 48.1, 42.9, 4, 900 }, + }, + }, + [153221] = { + ["coords"] = { + [1] = { 62.8, 41.3, 4, 900 }, + }, + }, + [153239] = { + ["coords"] = { + [1] = { 26.7, 68.9, 47, 180 }, + [2] = { 28.2, 68.5, 47, 180 }, + [3] = { 30, 65.5, 47, 180 }, + [4] = { 26.4, 64.7, 47, 180 }, + [5] = { 28.4, 64.5, 47, 180 }, + [6] = { 31.8, 63.9, 47, 180 }, + [7] = { 48.6, 63.5, 47, 180 }, + [8] = { 51.2, 62.8, 47, 180 }, + [9] = { 25.2, 62, 47, 180 }, + [10] = { 31, 61.9, 47, 180 }, + [11] = { 29.6, 61.9, 47, 180 }, + [12] = { 63.4, 61.6, 47, 180 }, + [13] = { 28.4, 60.4, 47, 180 }, + [14] = { 33.1, 60.4, 47, 180 }, + [15] = { 45.9, 60, 47, 180 }, + [16] = { 50.4, 59.3, 47, 180 }, + [17] = { 43.9, 59.3, 47, 180 }, + [18] = { 24.7, 58.7, 47, 180 }, + [19] = { 42.6, 58.5, 47, 180 }, + [20] = { 28.1, 58.1, 47, 180 }, + [21] = { 34, 58, 47, 180 }, + [22] = { 52, 58, 47, 180 }, + [23] = { 20.6, 57.6, 47, 180 }, + [24] = { 25.8, 57, 47, 180 }, + [25] = { 43.2, 56.1, 47, 180 }, + [26] = { 21.1, 56.1, 47, 180 }, + [27] = { 35.2, 55.6, 47, 180 }, + [28] = { 53.1, 55.4, 47, 180 }, + [29] = { 31.2, 55.3, 47, 180 }, + [30] = { 22.9, 54.8, 47, 180 }, + [31] = { 15.9, 54.8, 47, 180 }, + [32] = { 31.5, 54.7, 47, 180 }, + [33] = { 28.8, 54.6, 47, 180 }, + [34] = { 33.6, 54.4, 47, 180 }, + [35] = { 31, 54.4, 47, 180 }, + [36] = { 42.5, 54.4, 47, 180 }, + [37] = { 27.7, 54.3, 47, 180 }, + [38] = { 24.8, 54, 47, 180 }, + [39] = { 38.3, 53.9, 47, 180 }, + [40] = { 25.9, 53.7, 47, 180 }, + [41] = { 21.3, 53.4, 47, 180 }, + [42] = { 26.1, 53.2, 47, 180 }, + [43] = { 23.2, 53.1, 47, 180 }, + [44] = { 34.1, 53, 47, 180 }, + [45] = { 27.9, 52.9, 47, 180 }, + [46] = { 26.3, 52.9, 47, 180 }, + [47] = { 36.2, 52.8, 47, 180 }, + [48] = { 15.8, 52.5, 47, 180 }, + [49] = { 61.8, 52.4, 47, 180 }, + [50] = { 28.8, 52.2, 47, 180 }, + [51] = { 23.9, 52.2, 47, 180 }, + [52] = { 33.5, 51.7, 47, 180 }, + [53] = { 52.7, 51.4, 47, 180 }, + [54] = { 40.6, 50.9, 47, 180 }, + [55] = { 22.2, 50.9, 47, 180 }, + [56] = { 37.3, 50.2, 47, 180 }, + [57] = { 46.8, 50.1, 47, 180 }, + [58] = { 63.5, 49.7, 47, 180 }, + [59] = { 18.4, 49.7, 47, 180 }, + [60] = { 23.8, 49.6, 47, 180 }, + [61] = { 60.1, 49.3, 47, 180 }, + [62] = { 15.6, 49.1, 47, 180 }, + [63] = { 20.1, 48.2, 47, 180 }, + [64] = { 34.2, 48.2, 47, 180 }, + [65] = { 33.9, 48, 47, 180 }, + [66] = { 57.4, 47.7, 47, 180 }, + [67] = { 33.2, 47.3, 47, 180 }, + [68] = { 53.7, 47.1, 47, 180 }, + [69] = { 19.5, 47.1, 47, 180 }, + [70] = { 44.9, 46.3, 47, 180 }, + [71] = { 58.4, 46.2, 47, 180 }, + [72] = { 37.5, 46.1, 47, 180 }, + [73] = { 56.6, 46, 47, 180 }, + [74] = { 56.8, 45.4, 47, 180 }, + [75] = { 40, 45.3, 47, 180 }, + [76] = { 44.2, 44.3, 47, 180 }, + [77] = { 47, 44.2, 47, 180 }, + [78] = { 38.5, 44.2, 47, 180 }, + [79] = { 42.2, 44, 47, 180 }, + [80] = { 54.9, 43.8, 47, 180 }, + [81] = { 60.2, 43.8, 47, 180 }, + [82] = { 32.5, 43.2, 47, 180 }, + [83] = { 35.5, 43.1, 47, 180 }, + [84] = { 35.4, 43, 47, 180 }, + [85] = { 33.3, 43, 47, 180 }, + [86] = { 53, 42.3, 47, 180 }, + [87] = { 55.7, 42.2, 47, 180 }, + [88] = { 54.8, 41.4, 47, 180 }, + [89] = { 48.7, 41.3, 47, 180 }, + [90] = { 53.1, 40.7, 47, 180 }, + [91] = { 50.2, 39.7, 47, 180 }, + [92] = { 51.5, 39.5, 47, 180 }, + }, + }, + [153240] = { + ["coords"] = { + [1] = { 25.2, 25, 51, 7200 }, + }, + }, + [153241] = { + ["coords"] = { + [1] = { 25.9, 26.3, 51, 7200 }, + }, + }, + [153242] = { + ["coords"] = { + [1] = { 24.3, 34.4, 51, 7200 }, + }, + }, + [153350] = { + ["coords"] = { + [1] = { 62.6, 57.4, 3, 900 }, + }, + }, + [153359] = { + ["coords"] = { + [1] = { 47.5, 27.7, 4, 180 }, + }, + }, + [153360] = { + ["coords"] = { + [1] = { 47.5, 27.7, 4, 180 }, + }, + }, + [153399] = { + ["coords"] = { + [1] = { 35.6, 45.7, 17, 900 }, + [2] = { 59.1, 35.2, 215, 900 }, + }, + }, + [153400] = { + ["coords"] = { + [1] = { 35.6, 46.4, 17, 900 }, + [2] = { 59.1, 36.5, 215, 900 }, + }, + }, + [153402] = { + ["coords"] = { + [1] = { 36.4, 45.4, 17, 900 }, + [2] = { 60.7, 34.6, 215, 900 }, + }, + }, + [153451] = { + ["coords"] = { + [1] = { 62.4, 34.3, 4, 300 }, + [2] = { 65.5, 33.4, 4, 300 }, + [3] = { 66.8, 29.6, 4, 300 }, + [4] = { 42.5, 14.3, 4, 300 }, + [5] = { 41.9, 13.1, 4, 300 }, + [6] = { 44.4, 12, 4, 300 }, + [7] = { 15, 73.1, 16, 300 }, + [8] = { 17.6, 68.9, 16, 300 }, + [9] = { 20.5, 62.4, 16, 300 }, + [10] = { 25.9, 61.4, 16, 300 }, + [11] = { 36.8, 59.5, 16, 300 }, + [12] = { 26.6, 56, 16, 300 }, + [13] = { 29.2, 53, 16, 300 }, + [14] = { 35.7, 52.4, 16, 300 }, + [15] = { 32, 51.5, 16, 300 }, + [16] = { 41.2, 49.9, 16, 300 }, + [17] = { 38.4, 47.8, 16, 300 }, + [18] = { 32.4, 45.3, 16, 300 }, + [19] = { 34.7, 40.6, 16, 300 }, + [20] = { 35.5, 35.9, 16, 300 }, + [21] = { 88, 22.7, 45, 300 }, + [22] = { 63.9, 83.6, 47, 300 }, + [23] = { 67.5, 79.9, 47, 300 }, + [24] = { 67.7, 77.3, 47, 300 }, + [25] = { 63.4, 73.4, 47, 300 }, + [26] = { 68.3, 73.4, 47, 300 }, + [27] = { 58.4, 72.8, 47, 300 }, + [28] = { 65, 71, 47, 300 }, + [29] = { 68.7, 70.5, 47, 300 }, + [30] = { 67.6, 66.7, 47, 300 }, + [31] = { 62.1, 65.1, 47, 300 }, + [32] = { 64.3, 64.9, 47, 300 }, + [33] = { 60.9, 64.5, 47, 300 }, + [34] = { 57.4, 63.4, 47, 300 }, + [35] = { 50.3, 53.3, 47, 300 }, + [36] = { 71.1, 48.8, 47, 300 }, + [37] = { 66.5, 44.6, 47, 300 }, + [38] = { 57.5, 42.3, 47, 300 }, + [39] = { 45.4, 39.8, 47, 300 }, + [40] = { 53.1, 38.6, 47, 300 }, + [41] = { 41.2, 57, 440, 300 }, + [42] = { 38.7, 56.9, 440, 300 }, + [43] = { 41.5, 54.5, 440, 300 }, + [44] = { 40, 54.3, 440, 300 }, + [45] = { 73.8, 48.2, 440, 300 }, + [46] = { 72.9, 47.9, 440, 300 }, + [47] = { 72.6, 46.7, 440, 300 }, + [48] = { 75.3, 46.1, 440, 300 }, + [49] = { 71.1, 45.7, 440, 300 }, + [50] = { 72.9, 45.3, 440, 300 }, + [51] = { 72.3, 44.1, 440, 300 }, + [52] = { 71.6, 43.9, 440, 300 }, + }, + }, + [153453] = { + ["coords"] = { + [1] = { 62.1, 93.6, 16, 300 }, + [2] = { 71.3, 89.5, 16, 300 }, + [3] = { 38, 80.3, 16, 300 }, + [4] = { 65.9, 76.9, 16, 300 }, + [5] = { 41.9, 76.5, 16, 300 }, + [6] = { 54.6, 70.5, 16, 300 }, + [7] = { 47.2, 65.2, 16, 300 }, + [8] = { 76.5, 45.9, 16, 300 }, + [9] = { 77.8, 30.8, 16, 300 }, + [10] = { 48.3, 30.1, 16, 300 }, + [11] = { 56.3, 28.5, 16, 300 }, + [12] = { 44.4, 26.1, 16, 300 }, + [13] = { 61.6, 25, 16, 300 }, + [14] = { 41.4, 20.3, 16, 300 }, + [15] = { 51.2, 18.9, 16, 300 }, + [16] = { 41.9, 73.1, 28, 300 }, + [17] = { 43.2, 72.9, 28, 300 }, + [18] = { 49.2, 67.7, 28, 300 }, + [19] = { 39.4, 66.7, 28, 300 }, + [20] = { 46.6, 66.5, 28, 300 }, + [21] = { 45.1, 65.2, 28, 300 }, + [22] = { 53.8, 65.1, 28, 300 }, + [23] = { 64.6, 59.4, 28, 300 }, + [24] = { 37.9, 54.4, 28, 300 }, + [25] = { 40.8, 52, 28, 300 }, + [26] = { 47.4, 49.7, 28, 300 }, + [27] = { 50.8, 40.7, 28, 300 }, + [28] = { 45.2, 34.1, 28, 300 }, + [29] = { 54.9, 23.1, 28, 300 }, + [30] = { 31.2, 62.4, 46, 300 }, + [31] = { 77, 61.9, 46, 300 }, + [32] = { 57.6, 61.2, 46, 300 }, + [33] = { 44.7, 58.3, 46, 300 }, + [34] = { 76.2, 55.9, 46, 300 }, + [35] = { 38.8, 54.4, 46, 300 }, + [36] = { 55.5, 53.7, 46, 300 }, + [37] = { 92.2, 53.4, 46, 300 }, + [38] = { 51.1, 53.1, 46, 300 }, + [39] = { 80.7, 48.9, 46, 300 }, + [40] = { 36, 48.2, 46, 300 }, + [41] = { 21.8, 47.4, 46, 300 }, + [42] = { 82.9, 46.1, 46, 300 }, + [43] = { 81.9, 44.8, 46, 300 }, + [44] = { 88.3, 37.8, 46, 300 }, + [45] = { 42.9, 37.5, 46, 300 }, + [46] = { 40.8, 34.4, 46, 300 }, + [47] = { 43.3, 34, 46, 300 }, + [48] = { 84.5, 26.6, 46, 300 }, + [49] = { 38.1, 92.3, 139, 300 }, + [50] = { 27.1, 85.1, 139, 300 }, + [51] = { 39.6, 75.7, 139, 300 }, + [52] = { 59.2, 71.1, 139, 300 }, + [53] = { 61.1, 68.7, 139, 300 }, + [54] = { 59.1, 67.1, 139, 300 }, + [55] = { 39.9, 33.7, 139, 300 }, + [56] = { 27, 29.9, 139, 300 }, + [57] = { 71.3, 81.9, 618, 300 }, + }, + }, + [153454] = { + ["coords"] = { + [1] = { 88.1, 86.9, 139, 300 }, + [2] = { 80.9, 85.3, 139, 300 }, + [3] = { 83.3, 79.3, 139, 300 }, + [4] = { 78.1, 76.3, 139, 300 }, + [5] = { 39.4, 53.6, 139, 300 }, + [6] = { 41.8, 50.1, 139, 300 }, + [7] = { 39.2, 48.6, 139, 300 }, + [8] = { 67.7, 48, 139, 300 }, + [9] = { 85.9, 46.4, 139, 300 }, + [10] = { 86.9, 39.5, 139, 300 }, + [11] = { 83.1, 38.9, 139, 300 }, + [12] = { 69.8, 30.9, 139, 300 }, + [13] = { 72.2, 30.1, 139, 300 }, + [14] = { 63.4, 23.6, 139, 300 }, + [15] = { 72.7, 18.1, 139, 300 }, + [16] = { 70.6, 13.2, 139, 300 }, + [17] = { 29.3, 46.9, 618, 300 }, + [18] = { 55.8, 44.7, 618, 300 }, + [19] = { 39.7, 43.1, 618, 300 }, + [20] = { 41.5, 42.5, 618, 300 }, + [21] = { 53, 40.5, 618, 300 }, + [22] = { 66.6, 37.1, 618, 300 }, + [23] = { 68.1, 36.7, 618, 300 }, + [24] = { 33.1, 36.7, 618, 300 }, + [25] = { 46, 36, 618, 300 }, + [26] = { 66.4, 35.9, 618, 300 }, + [27] = { 30.5, 35.7, 618, 300 }, + [28] = { 67.6, 35.3, 618, 300 }, + }, + }, + [153459] = { + ["coords"] = { + [1] = { 58, 14.7, 4, 900 }, + }, + }, + [153460] = { + ["coords"] = { + [1] = { 58.1, 14.7, 4, 900 }, + }, + }, + [153462] = { + ["coords"] = {}, + }, + [153463] = { + ["coords"] = { + [1] = { 42.3, 18, 28, 7200 }, + [2] = { 41.7, 14.9, 28, 7200 }, + [3] = { 46.9, 13.2, 28, 7200 }, + }, + }, + [153464] = { + ["coords"] = {}, + }, + [153468] = { + ["coords"] = { + [1] = { 42.3, 18, 28, 7200 }, + [2] = { 41.7, 14.9, 28, 7200 }, + [3] = { 46.9, 13.2, 28, 7200 }, + }, + }, + [153469] = { + ["coords"] = {}, + }, + [153470] = { + ["coords"] = { + [1] = { 59.8, 68.1, 15, 180 }, + [2] = { 44.2, 66.2, 15, 180 }, + [3] = { 38.9, 64.7, 15, 180 }, + [4] = { 32.9, 64.3, 15, 180 }, + [5] = { 56.1, 62.5, 15, 180 }, + [6] = { 46.1, 56.9, 15, 180 }, + [7] = { 54, 56.8, 15, 180 }, + [8] = { 35.9, 54.3, 15, 180 }, + [9] = { 35.4, 38.3, 15, 180 }, + [10] = { 52.5, 87.3, 17, 180 }, + [11] = { 54.1, 82.1, 17, 180 }, + [12] = { 53.9, 73.8, 17, 180 }, + [13] = { 77.5, 84, 47, 180 }, + [14] = { 78.3, 75.6, 47, 180 }, + [15] = { 64.4, 72.5, 47, 180 }, + [16] = { 68.6, 71.8, 47, 180 }, + [17] = { 78.8, 67.5, 47, 180 }, + [18] = { 63.5, 67.4, 47, 180 }, + [19] = { 67.9, 66.4, 47, 180 }, + [20] = { 23, 58.9, 47, 180 }, + [21] = { 31.9, 58.2, 47, 180 }, + [22] = { 79.9, 55.3, 47, 180 }, + [23] = { 13.4, 54, 47, 180 }, + [24] = { 50.2, 52.8, 47, 180 }, + [25] = { 73.4, 52.6, 47, 180 }, + [26] = { 10.7, 49.5, 47, 180 }, + [27] = { 27, 48.8, 47, 180 }, + [28] = { 71.5, 48.6, 47, 180 }, + [29] = { 33.2, 48, 47, 180 }, + [30] = { 16.3, 47.8, 47, 180 }, + [31] = { 66.1, 44.9, 47, 180 }, + [32] = { 14.2, 44.2, 47, 180 }, + [33] = { 13.4, 43.4, 47, 180 }, + [34] = { 32.6, 43, 47, 180 }, + [35] = { 57.3, 42.6, 47, 180 }, + [36] = { 14.4, 42.2, 47, 180 }, + [37] = { 14, 42, 47, 180 }, + [38] = { 53.3, 39.4, 47, 180 }, + [39] = { 45.5, 38.7, 47, 180 }, + [40] = { 98.7, 15, 267, 180 }, + [41] = { 95.4, 9.6, 267, 180 }, + [42] = { 99.7, 3.2, 267, 180 }, + [43] = { 98.7, 2.2, 267, 180 }, + [44] = { 99.9, 0.8, 267, 180 }, + [45] = { 99.4, 0.5, 267, 180 }, + }, + }, + [153471] = { + ["coords"] = { + [1] = { 46.5, 73.2, 28, 180 }, + [2] = { 41.9, 72.2, 28, 180 }, + [3] = { 48, 69.4, 28, 180 }, + [4] = { 39.2, 67.9, 28, 180 }, + [5] = { 52, 65.4, 28, 180 }, + [6] = { 43.2, 63.4, 28, 180 }, + [7] = { 45.9, 62.4, 28, 180 }, + [8] = { 62.7, 60.3, 28, 180 }, + [9] = { 38.8, 55.7, 28, 180 }, + [10] = { 40.7, 51.9, 28, 180 }, + [11] = { 47.3, 50.9, 28, 180 }, + [12] = { 65.9, 47.7, 28, 180 }, + [13] = { 51.9, 44.1, 28, 180 }, + [14] = { 51.2, 40.4, 28, 180 }, + [15] = { 53.1, 36.6, 28, 180 }, + [16] = { 44.4, 33.9, 28, 180 }, + [17] = { 48.3, 32.8, 28, 180 }, + [18] = { 51.8, 28.2, 28, 180 }, + [19] = { 47.8, 22.8, 28, 180 }, + [20] = { 43.1, 20.6, 28, 180 }, + [21] = { 45.6, 18.9, 28, 180 }, + [22] = { 43, 18.6, 28, 180 }, + [23] = { 44.5, 12.4, 28, 180 }, + }, + }, + [153472] = { + ["coords"] = { + [1] = { 26.8, 59.5, 28, 180 }, + [2] = { 26.9, 56.7, 28, 180 }, + [3] = { 26.8, 55.2, 28, 180 }, + [4] = { 20.3, 49.2, 28, 180 }, + [5] = { 83.4, 72.3, 85, 180 }, + [6] = { 83.5, 69.6, 85, 180 }, + [7] = { 83.4, 68.2, 85, 180 }, + [8] = { 77.2, 62.4, 85, 180 }, + [9] = { 76.1, 61.6, 85, 180 }, + [10] = { 77.3, 59.6, 85, 180 }, + [11] = { 60.5, 59, 85, 180 }, + [12] = { 52.5, 56, 85, 180 }, + [13] = { 61.5, 51.8, 85, 180 }, + [14] = { 33.6, 43.6, 85, 180 }, + [15] = { 46, 38.8, 85, 180 }, + [16] = { 49.7, 36.3, 85, 180 }, + [17] = { 60.5, 33.6, 85, 180 }, + [18] = { 48.9, 33.4, 85, 180 }, + [19] = { 57.9, 33.3, 85, 180 }, + [20] = { 42.9, 32.4, 85, 180 }, + [21] = { 46.5, 32.2, 85, 180 }, + [22] = { 44.2, 32.1, 85, 180 }, + [23] = { 58.6, 31, 85, 180 }, + [24] = { 47.4, 30.2, 85, 180 }, + [25] = { 54.5, 29.8, 85, 180 }, + [26] = { 51, 29.5, 85, 180 }, + [27] = { 52.5, 27.4, 85, 180 }, + [28] = { 74.9, 26, 85, 180 }, + }, + }, + [153473] = { + ["coords"] = { + [1] = { 51.7, 68.2, 85, 180 }, + [2] = { 50.6, 67.7, 85, 180 }, + [3] = { 51.1, 67.4, 85, 180 }, + [4] = { 78.3, 56.2, 85, 180 }, + [5] = { 78.7, 55.7, 85, 180 }, + [6] = { 79.5, 55.5, 85, 180 }, + [7] = { 38.2, 49.7, 85, 180 }, + [8] = { 31.8, 47.1, 85, 180 }, + [9] = { 33.6, 43.6, 85, 180 }, + [10] = { 29.2, 40.4, 85, 180 }, + [11] = { 64.5, 29.1, 85, 180 }, + [12] = { 59.1, 27.1, 85, 180 }, + [13] = { 79.8, 26.1, 85, 180 }, + [14] = { 68, 25.4, 85, 180 }, + [15] = { 79.6, 25.1, 85, 180 }, + [16] = { 79.3, 24.5, 85, 180 }, + }, + }, + [153482] = { + ["coords"] = { + [1] = { 37, 43.9, 17, 900 }, + [2] = { 61.8, 31.5, 215, 900 }, + }, + }, + [153516] = { + ["coords"] = { + [1] = { 64.8, 8.1, 361, 180 }, + [2] = { 24.9, 36.1, 618, 180 }, + }, + }, + [153556] = { + ["coords"] = { + [1] = { 64.1, 44.1, 46, 180 }, + [2] = { 65.6, 44, 46, 180 }, + [3] = { 59.3, 43.9, 46, 180 }, + [4] = { 67.6, 43.7, 46, 180 }, + [5] = { 62.1, 43.4, 46, 180 }, + [6] = { 57.3, 41.7, 46, 180 }, + [7] = { 58.9, 41.6, 46, 180 }, + [8] = { 64.1, 41.5, 46, 180 }, + [9] = { 61.5, 41.2, 46, 180 }, + [10] = { 54.2, 40.9, 46, 180 }, + [11] = { 68.2, 40.9, 46, 180 }, + [12] = { 59.9, 40.7, 46, 180 }, + [13] = { 66.1, 40.4, 46, 180 }, + [14] = { 62.7, 39.6, 46, 180 }, + [15] = { 55.8, 39.4, 46, 180 }, + [16] = { 57.9, 39.1, 46, 180 }, + [17] = { 52.5, 39, 46, 180 }, + [18] = { 54.2, 38.3, 46, 180 }, + [19] = { 69.9, 38.1, 46, 180 }, + [20] = { 67.2, 38.1, 46, 180 }, + [21] = { 72.3, 37.8, 46, 180 }, + [22] = { 59.6, 37.7, 46, 180 }, + [23] = { 55.4, 37.3, 46, 180 }, + [24] = { 64.6, 37.2, 46, 180 }, + [25] = { 61.9, 36.7, 46, 180 }, + [26] = { 69.2, 36.4, 46, 180 }, + [27] = { 57.4, 36.4, 46, 180 }, + [28] = { 71.1, 36.1, 46, 180 }, + [29] = { 67.1, 35.7, 46, 180 }, + [30] = { 63.5, 35.6, 46, 180 }, + [31] = { 60.3, 35.1, 46, 180 }, + [32] = { 53.9, 35.1, 46, 180 }, + [33] = { 65.3, 34.8, 46, 180 }, + [34] = { 72.4, 33.9, 46, 180 }, + [35] = { 66.1, 33.3, 46, 180 }, + }, + }, + [153576] = { + ["coords"] = { + [1] = { 75.3, 29.7, 357, 900 }, + }, + }, + [153577] = { + ["coords"] = { + [1] = { 80.9, 35.1, 357, 900 }, + }, + }, + [153578] = { + ["coords"] = { + [1] = { 45.1, 58.7, 17, 900 }, + }, + ["fac"] = "H", + }, + [153579] = { + ["coords"] = { + [1] = { 74.5, 27.9, 357, 900 }, + }, + }, + [153580] = { + ["coords"] = { + [1] = { 72.3, 56.7, 357, 900 }, + }, + }, + [153581] = { + ["coords"] = { + [1] = { 74.4, 54.8, 357, 900 }, + }, + }, + [153582] = { + ["coords"] = { + [1] = { 75.5, 55, 357, 900 }, + }, + }, + [153583] = { + ["coords"] = { + [1] = { 77.3, 56.8, 357, 900 }, + }, + }, + [153584] = { + ["coords"] = { + [1] = { 69.1, 55.8, 357, 900 }, + }, + }, + [153695] = { + ["coords"] = { + [1] = { 62.4, 45, 1497, 900 }, + }, + }, + [153716] = { + ["coords"] = { + [1] = { 53.1, 53.3, 40, 3600 }, + }, + ["fac"] = "A", + }, + [153723] = { + ["coords"] = {}, + }, + [154357] = { + ["coords"] = { + [1] = { 27.8, 56.1, 44, 10 }, + [2] = { 33.8, 55.3, 44, 10 }, + [3] = { 24.1, 54.7, 44, 10 }, + [4] = { 38, 54.5, 44, 10 }, + [5] = { 36.9, 54.3, 44, 10 }, + [6] = { 31, 54.2, 44, 10 }, + [7] = { 25.7, 54, 44, 10 }, + [8] = { 21.7, 53.2, 44, 10 }, + [9] = { 19.2, 51.7, 44, 10 }, + [10] = { 26.5, 51.2, 44, 10 }, + }, + }, + [156561] = { + ["coords"] = { + [1] = { 24.6, 78.2, 12, 180 }, + }, + }, + [157636] = { + ["coords"] = { + [1] = { 49.9, 3.8, 33, 900 }, + }, + }, + [157637] = { + ["coords"] = { + [1] = { 45.4, 55.1, 8, 600 }, + }, + ["fac"] = "H", + }, + [157816] = { + ["coords"] = {}, + }, + [157817] = { + ["coords"] = {}, + }, + [157818] = { + ["coords"] = {}, + }, + [157819] = { + ["coords"] = {}, + }, + [157820] = { + ["coords"] = {}, + }, + [157923] = { + ["coords"] = {}, + }, + [157936] = { + ["coords"] = { + [1] = { 27.5, 42.7, 440, 180 }, + [2] = { 50.5, 90.1, 490, 180 }, + [3] = { 52.8, 86.6, 490, 180 }, + [4] = { 49.4, 83.5, 490, 180 }, + [5] = { 56.6, 83.4, 490, 180 }, + [6] = { 44.5, 83.2, 490, 180 }, + [7] = { 60, 81.8, 490, 180 }, + [8] = { 41.1, 79.8, 490, 180 }, + [9] = { 68.2, 78.9, 490, 180 }, + [10] = { 52.5, 78.9, 490, 180 }, + [11] = { 31, 78.9, 490, 180 }, + [12] = { 64.9, 78.4, 490, 180 }, + [13] = { 69.3, 76.4, 490, 180 }, + [14] = { 36.4, 76.3, 490, 180 }, + [15] = { 71.7, 75.9, 490, 180 }, + [16] = { 43.3, 72.7, 490, 180 }, + [17] = { 71.2, 71.2, 490, 180 }, + [18] = { 30.5, 70, 490, 180 }, + [19] = { 36.4, 69.7, 490, 180 }, + [20] = { 60, 68.9, 490, 180 }, + [21] = { 40.9, 67.3, 490, 180 }, + [22] = { 39, 65.7, 490, 180 }, + [23] = { 73.1, 65.7, 490, 180 }, + [24] = { 33.1, 65.4, 490, 180 }, + [25] = { 62.3, 64, 490, 180 }, + [26] = { 28, 62.7, 490, 180 }, + [27] = { 68.5, 59.7, 490, 180 }, + [28] = { 40.7, 59.6, 490, 180 }, + [29] = { 76.3, 58.5, 490, 180 }, + [30] = { 73.4, 58.3, 490, 180 }, + [31] = { 48.9, 58, 490, 180 }, + [32] = { 56, 56.9, 490, 180 }, + [33] = { 30.6, 56.7, 490, 180 }, + [34] = { 52.8, 55.9, 490, 180 }, + [35] = { 64.2, 54.5, 490, 180 }, + [36] = { 44.7, 54.4, 490, 180 }, + [37] = { 25.7, 54.3, 490, 180 }, + [38] = { 38.2, 53.6, 490, 180 }, + [39] = { 41.9, 53.2, 490, 180 }, + [40] = { 47, 52.9, 490, 180 }, + [41] = { 42.8, 52.3, 490, 180 }, + [42] = { 74.1, 51.2, 490, 180 }, + [43] = { 49.5, 48.5, 490, 180 }, + [44] = { 58.9, 48.4, 490, 180 }, + [45] = { 63.3, 47.9, 490, 180 }, + [46] = { 54.2, 47.2, 490, 180 }, + [47] = { 51.1, 47, 490, 180 }, + [48] = { 25.6, 46.3, 490, 180 }, + [49] = { 35.9, 46.2, 490, 180 }, + [50] = { 42.2, 45.5, 490, 180 }, + [51] = { 52.8, 45.4, 490, 180 }, + [52] = { 57.1, 44.2, 490, 180 }, + [53] = { 64.1, 41, 490, 180 }, + [54] = { 27, 40.2, 490, 180 }, + [55] = { 38.9, 39.5, 490, 180 }, + [56] = { 74.8, 39.2, 490, 180 }, + [57] = { 53.6, 39, 490, 180 }, + [58] = { 21.9, 38.6, 490, 180 }, + [59] = { 58.1, 36.3, 490, 180 }, + [60] = { 50.2, 34.3, 490, 180 }, + [61] = { 31, 34.1, 490, 180 }, + [62] = { 44.1, 33.8, 490, 180 }, + [63] = { 25.8, 32.9, 490, 180 }, + [64] = { 72.1, 32.4, 490, 180 }, + [65] = { 50.7, 31.4, 490, 180 }, + [66] = { 29.7, 30.6, 490, 180 }, + [67] = { 64, 29.4, 490, 180 }, + [68] = { 55.6, 28.7, 490, 180 }, + [69] = { 40.4, 26.9, 490, 180 }, + [70] = { 45.4, 24.4, 490, 180 }, + [71] = { 38.2, 23.1, 490, 180 }, + [72] = { 65.8, 23, 490, 180 }, + [73] = { 32.9, 22.9, 490, 180 }, + [74] = { 62.2, 17.6, 490, 180 }, + [75] = { 42.3, 16.2, 490, 180 }, + [76] = { 54.8, 16.2, 490, 180 }, + [77] = { 49.7, 15.9, 490, 180 }, + [78] = { 45.5, 14.1, 490, 180 }, + [79] = { 58, 10.1, 490, 180 }, + [80] = { 56.2, 9.9, 490, 180 }, + [81] = { 80.8, 41.3, 1377, 180 }, + [82] = { 84.9, 35.3, 1377, 180 }, + }, + }, + [157968] = { + ["coords"] = { + [1] = { 19.9, 61.5, 44, 7200 }, + }, + }, + [157969] = { + ["coords"] = { + [1] = { 47.3, 5.6, 33, 900 }, + }, + }, + [158545] = { + ["coords"] = {}, + }, + [158546] = { + ["coords"] = {}, + }, + [158547] = { + ["coords"] = {}, + }, + [158548] = { + ["coords"] = {}, + }, + [158549] = { + ["coords"] = {}, + }, + [158550] = { + ["coords"] = {}, + }, + [158551] = { + ["coords"] = {}, + }, + [158552] = { + ["coords"] = {}, + }, + [158553] = { + ["coords"] = {}, + }, + [158554] = { + ["coords"] = {}, + }, + [158555] = { + ["coords"] = {}, + }, + [158556] = { + ["coords"] = {}, + }, + [158557] = { + ["coords"] = {}, + }, + [158558] = { + ["coords"] = {}, + }, + [158559] = { + ["coords"] = {}, + }, + [158560] = { + ["coords"] = {}, + }, + [158561] = { + ["coords"] = {}, + }, + [158562] = { + ["coords"] = {}, + }, + [158563] = { + ["coords"] = {}, + }, + [158564] = { + ["coords"] = {}, + }, + [158565] = { + ["coords"] = {}, + }, + [158566] = { + ["coords"] = {}, + }, + [158567] = { + ["coords"] = {}, + }, + [158568] = { + ["coords"] = {}, + }, + [158569] = { + ["coords"] = {}, + }, + [158570] = { + ["coords"] = {}, + }, + [158571] = { + ["coords"] = {}, + }, + [158572] = { + ["coords"] = {}, + }, + [158576] = { + ["coords"] = {}, + }, + [158579] = { + ["coords"] = {}, + }, + [158580] = { + ["coords"] = {}, + }, + [158581] = { + ["coords"] = {}, + }, + [158582] = { + ["coords"] = {}, + }, + [158583] = { + ["coords"] = {}, + }, + [158584] = { + ["coords"] = {}, + }, + [158585] = { + ["coords"] = {}, + }, + [158599] = { + ["coords"] = {}, + }, + [158608] = { + ["coords"] = {}, + }, + [158674] = { + ["coords"] = {}, + }, + [158678] = { + ["coords"] = {}, + }, + [158679] = { + ["coords"] = {}, + }, + [158680] = { + ["coords"] = {}, + }, + [160409] = { + ["coords"] = { + [1] = { 72.6, 47.6, 440, 900 }, + }, + }, + [160410] = { + ["coords"] = { + [1] = { 72.6, 47.7, 440, 900 }, + }, + }, + [160411] = { + ["coords"] = { + [1] = { 68.4, 49.4, 17, 900 }, + [2] = { 73.6, 48.1, 440, 900 }, + }, + }, + [160413] = { + ["coords"] = { + [1] = { 68.4, 49.4, 17, 900 }, + [2] = { 73.6, 48.1, 440, 900 }, + }, + }, + [160414] = { + ["coords"] = { + [1] = { 68.4, 49.4, 17, 900 }, + [2] = { 73.6, 48.1, 440, 900 }, + }, + }, + [160415] = { + ["coords"] = { + [1] = { 68.4, 49.4, 17, 900 }, + [2] = { 73.7, 48.1, 440, 900 }, + }, + }, + [160416] = { + ["coords"] = { + [1] = { 68.8, 49.2, 17, 900 }, + [2] = { 73.2, 48.6, 440, 900 }, + }, + }, + [160418] = { + ["coords"] = { + [1] = { 72.2, 46.4, 440, 900 }, + }, + }, + [160419] = { + ["coords"] = { + [1] = { 72.1, 46.5, 440, 900 }, + }, + }, + [160420] = { + ["coords"] = { + [1] = { 72.1, 46.5, 440, 900 }, + }, + }, + [160421] = { + ["coords"] = { + [1] = { 69.1, 48.1, 17, 900 }, + }, + }, + [160426] = { + ["coords"] = { + [1] = { 40.2, 27.9, 215, 900 }, + [2] = { 51.4, 54.2, 1638, 900 }, + }, + }, + [160436] = { + ["coords"] = { + [1] = { 78.4, 47.9, 1519, 900 }, + }, + }, + [160437] = { + ["coords"] = { + [1] = { 78.3, 48, 1519, 900 }, + }, + }, + [160438] = { + ["coords"] = { + [1] = { 78.1, 48, 1519, 900 }, + }, + }, + [160439] = { + ["coords"] = { + [1] = { 77.9, 47.7, 1519, 900 }, + }, + }, + [160440] = { + ["coords"] = { + [1] = { 77.9, 47.3, 1519, 900 }, + }, + }, + [160441] = { + ["coords"] = { + [1] = { 78.5, 47.6, 1519, 900 }, + }, + }, + [160442] = { + ["coords"] = { + [1] = { 51.9, 65.6, 1519, 900 }, + }, + }, + [160443] = { + ["coords"] = { + [1] = { 52.4, 65, 1519, 900 }, + }, + }, + [160444] = { + ["coords"] = { + [1] = { 52.6, 65.1, 1519, 900 }, + }, + }, + [160445] = { + ["coords"] = { + [1] = { 79.8, 45.5, 46, 300 }, + }, + }, + [160468] = { + ["coords"] = { + [1] = { 33.5, 53.2, 44, 7200 }, + }, + }, + [160469] = { + ["coords"] = { + [1] = { 33.5, 53.6, 44, 7200 }, + }, + }, + [160470] = { + ["coords"] = { + [1] = { 33.5, 52.9, 44, 7200 }, + }, + }, + [160836] = { + ["coords"] = {}, + }, + [160839] = { + ["coords"] = { + [1] = { 81, 46.8, 46, 0 }, + }, + }, + [160840] = { + ["coords"] = { + [1] = { 81, 46.8, 46, 7200 }, + }, + ["fac"] = "A", + }, + [160842] = { + ["coords"] = {}, + }, + [160845] = { + ["coords"] = {}, + }, + [160866] = { + ["coords"] = { + [1] = { 40.7, 78.9, 41, 900 }, + }, + }, + [160867] = { + ["coords"] = { + [1] = { 40.8, 79.1, 41, 900 }, + }, + }, + [160868] = { + ["coords"] = { + [1] = { 41.1, 78.9, 41, 900 }, + }, + }, + [160869] = { + ["coords"] = { + [1] = { 41.1, 78.3, 41, 900 }, + }, + }, + [160870] = { + ["coords"] = { + [1] = { 41.1, 78.5, 41, 900 }, + }, + }, + [160871] = { + ["coords"] = { + [1] = { 40.6, 78.7, 41, 900 }, + }, + }, + [161456] = { + ["coords"] = {}, + }, + [161457] = { + ["coords"] = {}, + }, + [161458] = { + ["coords"] = {}, + }, + [161459] = { + ["coords"] = {}, + }, + [161460] = { + ["coords"] = {}, + }, + [161461] = { + ["coords"] = {}, + }, + [161462] = { + ["coords"] = {}, + }, + [161476] = { + ["coords"] = { + [1] = { 37.1, 81.2, 1519, 120 }, + }, + }, + [161477] = { + ["coords"] = { + [1] = { 37.5, 80.4, 1519, 120 }, + }, + }, + [161478] = { + ["coords"] = { + [1] = { 38.8, 81.2, 1519, 120 }, + }, + }, + [161479] = { + ["coords"] = { + [1] = { 38.7, 81, 1519, 120 }, + }, + }, + [161480] = { + ["coords"] = { + [1] = { 38.6, 82.2, 1519, 120 }, + }, + }, + [161487] = { + ["coords"] = { + [1] = { 54.6, 25.6, 2597, 180 }, + }, + }, + [161488] = { + ["coords"] = { + [1] = { 53.8, 25.6, 2597, 180 }, + }, + }, + [161489] = { + ["coords"] = { + [1] = { 54.5, 25.7, 2597, 180 }, + }, + }, + [161495] = { + ["coords"] = {}, + }, + [161504] = { + ["coords"] = { + [1] = { 63.1, 69.1, 490, 10 }, + }, + }, + [161505] = { + ["coords"] = { + [1] = { 63, 68.6, 490, 10 }, + }, + }, + [161513] = { + ["coords"] = {}, + }, + [161516] = { + ["coords"] = {}, + }, + [161521] = { + ["coords"] = { + [1] = { 38.5, 66.1, 490, 10 }, + }, + }, + [161522] = { + ["coords"] = {}, + }, + [161523] = { + ["coords"] = {}, + }, + [161524] = { + ["coords"] = {}, + }, + [161525] = { + ["coords"] = {}, + }, + [161526] = { + ["coords"] = { + [1] = { 68.5, 36.5, 490, 10 }, + }, + }, + [161527] = { + ["coords"] = { + [1] = { 30.9, 78, 490, 180 }, + [2] = { 31.1, 78, 490, 180 }, + [3] = { 31.1, 77.7, 490, 180 }, + [4] = { 38.6, 77.5, 490, 180 }, + [5] = { 31, 77.4, 490, 180 }, + [6] = { 31.2, 77.3, 490, 180 }, + [7] = { 31.9, 76.2, 490, 180 }, + [8] = { 35.6, 75.8, 490, 180 }, + [9] = { 39.2, 75.3, 490, 180 }, + [10] = { 32.7, 73.5, 490, 180 }, + [11] = { 37.2, 72.7, 490, 180 }, + [12] = { 29.2, 72.6, 490, 180 }, + [13] = { 34.7, 72.4, 490, 180 }, + [14] = { 31, 72.1, 490, 180 }, + [15] = { 34.5, 72, 490, 180 }, + [16] = { 30.3, 70.8, 490, 180 }, + [17] = { 31.5, 68.9, 490, 180 }, + [18] = { 34.8, 67.5, 490, 180 }, + [19] = { 36.3, 65.2, 490, 180 }, + [20] = { 32.9, 62.7, 490, 180 }, + }, + }, + [161536] = { + ["coords"] = { + [1] = { 37.8, 44.1, 51, 7200 }, + }, + }, + [161557] = { + ["coords"] = { + [1] = { 53.8, 50.8, 12, 180 }, + [2] = { 54.1, 50.7, 12, 180 }, + [3] = { 53.6, 50.4, 12, 180 }, + [4] = { 53.8, 50.4, 12, 180 }, + [5] = { 54.1, 50.3, 12, 180 }, + [6] = { 54.6, 50, 12, 180 }, + [7] = { 53.4, 50, 12, 180 }, + [8] = { 53.9, 49.9, 12, 180 }, + [9] = { 54.2, 49.8, 12, 180 }, + [10] = { 53.2, 49.6, 12, 180 }, + [11] = { 54, 49.5, 12, 180 }, + [12] = { 54.6, 49.5, 12, 180 }, + [13] = { 53.6, 49.5, 12, 180 }, + [14] = { 54.9, 49.4, 12, 180 }, + [15] = { 54.4, 49.4, 12, 180 }, + [16] = { 55.2, 49, 12, 180 }, + [17] = { 53.3, 49, 12, 180 }, + [18] = { 52.8, 49, 12, 180 }, + [19] = { 54.7, 48.9, 12, 180 }, + [20] = { 54.9, 48.9, 12, 180 }, + [21] = { 53.9, 48.8, 12, 180 }, + [22] = { 54.2, 48.8, 12, 180 }, + [23] = { 53.2, 48.6, 12, 180 }, + [24] = { 54.6, 48.5, 12, 180 }, + [25] = { 55, 48.5, 12, 180 }, + [26] = { 53.8, 48.5, 12, 180 }, + [27] = { 52.8, 48.4, 12, 180 }, + [28] = { 54.3, 48.2, 12, 180 }, + [29] = { 54.6, 48.2, 12, 180 }, + [30] = { 53.8, 48.1, 12, 180 }, + [31] = { 53.4, 48.1, 12, 180 }, + [32] = { 54, 48, 12, 180 }, + [33] = { 53, 48, 12, 180 }, + [34] = { 54.4, 47.8, 12, 180 }, + [35] = { 53.4, 47.7, 12, 180 }, + [36] = { 53.9, 47.6, 12, 180 }, + [37] = { 54.1, 47.5, 12, 180 }, + [38] = { 53.6, 47.5, 12, 180 }, + [39] = { 53.6, 47, 12, 180 }, + [40] = { 53.8, 47, 12, 180 }, + }, + }, + [161752] = { + ["coords"] = { + [1] = { 56, 9.8, 17, 180 }, + [2] = { 55.7, 9.5, 17, 180 }, + [3] = { 56.1, 9.2, 17, 180 }, + [4] = { 57.2, 9.1, 17, 180 }, + [5] = { 55.6, 8.8, 17, 180 }, + [6] = { 56.7, 8.8, 17, 180 }, + [7] = { 56.8, 8.8, 17, 180 }, + [8] = { 56.4, 8.7, 17, 180 }, + [9] = { 56.3, 8.7, 17, 180 }, + [10] = { 56.2, 8.7, 17, 180 }, + [11] = { 56.3, 8.6, 17, 180 }, + [12] = { 56.2, 8.5, 17, 180 }, + [13] = { 56, 8.5, 17, 180 }, + [14] = { 57.2, 8.2, 17, 180 }, + [15] = { 56.4, 8.1, 17, 180 }, + [16] = { 55.5, 8, 17, 180 }, + [17] = { 56.4, 7.5, 17, 180 }, + [18] = { 56.3, 7.2, 17, 180 }, + [19] = { 57.3, 7.2, 17, 180 }, + [20] = { 55.8, 7.2, 17, 180 }, + [21] = { 56.2, 6.9, 17, 180 }, + [22] = { 55.9, 6.8, 17, 180 }, + }, + }, + [162024] = { + ["coords"] = { + [1] = { 63, 37.2, 17, 0 }, + [2] = { 49, 11.2, 17, 0 }, + }, + }, + [163313] = { + ["coords"] = { + [1] = { 3.8, 47.3, 3, 900 }, + [2] = { 83, 38.6, 51, 900 }, + }, + ["fac"] = "H", + }, + [163645] = { + ["coords"] = { + [1] = { 32.5, 28.7, 33, 900 }, + }, + ["fac"] = "H", + }, + [164618] = { + ["coords"] = { + [1] = { 64.1, 19.2, 4, 900 }, + }, + ["fac"] = "A", + }, + [164638] = { + ["coords"] = {}, + ["fac"] = "H", + }, + [164639] = { + ["coords"] = {}, + ["fac"] = "A", + }, + [164644] = { + ["coords"] = { + [1] = { 60, 30.2, 17, 90 }, + }, + }, + [164651] = { + ["coords"] = { + [1] = { 55.8, 17.1, 17, 25 }, + [2] = { 55.8, 17.1, 17, 90 }, + }, + }, + [164658] = { + ["coords"] = { + [1] = { 32, 35.2, 440, 180 }, + [2] = { 32.9, 34.5, 440, 180 }, + [3] = { 31.7, 33, 440, 180 }, + [4] = { 32.3, 28.7, 440, 180 }, + [5] = { 32.3, 25.1, 440, 180 }, + [6] = { 32.8, 22.9, 440, 180 }, + [7] = { 31.4, 17.5, 440, 180 }, + [8] = { 45.8, 92.6, 490, 180 }, + [9] = { 50, 92.4, 490, 180 }, + [10] = { 44.2, 88.8, 490, 180 }, + [11] = { 51.9, 87.4, 490, 180 }, + [12] = { 42.8, 86.2, 490, 180 }, + [13] = { 62, 85.3, 490, 180 }, + [14] = { 57.4, 82.6, 490, 180 }, + [15] = { 38.2, 81.8, 490, 180 }, + [16] = { 31.1, 81.3, 490, 180 }, + [17] = { 69.4, 80, 490, 180 }, + [18] = { 40.7, 79.9, 490, 180 }, + [19] = { 65.2, 79.8, 490, 180 }, + [20] = { 29.8, 79.1, 490, 180 }, + [21] = { 58.6, 78.4, 490, 180 }, + [22] = { 60.4, 77.5, 490, 180 }, + [23] = { 70, 77.2, 490, 180 }, + [24] = { 29, 76.9, 490, 180 }, + [25] = { 33.9, 76.9, 490, 180 }, + [26] = { 56.9, 76.1, 490, 180 }, + [27] = { 63.1, 75.3, 490, 180 }, + [28] = { 40.5, 75.3, 490, 180 }, + [29] = { 43.9, 74.7, 490, 180 }, + [30] = { 71.7, 73.7, 490, 180 }, + [31] = { 56.3, 73.6, 490, 180 }, + [32] = { 32.7, 73.5, 490, 180 }, + [33] = { 66.7, 73.2, 490, 180 }, + [34] = { 75, 70.5, 490, 180 }, + [35] = { 30.3, 70.5, 490, 180 }, + [36] = { 62.3, 70.3, 490, 180 }, + [37] = { 27.5, 70.2, 490, 180 }, + [38] = { 69.5, 69.5, 490, 180 }, + [39] = { 36.1, 69, 490, 180 }, + [40] = { 60.9, 68.5, 490, 180 }, + [41] = { 62.4, 68.4, 490, 180 }, + [42] = { 25.1, 67, 490, 180 }, + [43] = { 37.8, 66.5, 490, 180 }, + [44] = { 42.8, 66, 490, 180 }, + [45] = { 45.4, 65.9, 490, 180 }, + [46] = { 58.2, 65.9, 490, 180 }, + [47] = { 73, 65.5, 490, 180 }, + [48] = { 29.7, 64.8, 490, 180 }, + [49] = { 70.2, 64.1, 490, 180 }, + [50] = { 74.4, 63.9, 490, 180 }, + [51] = { 71.7, 63.4, 490, 180 }, + [52] = { 25.7, 63.3, 490, 180 }, + [53] = { 30.8, 63.3, 490, 180 }, + [54] = { 79.9, 62, 490, 180 }, + [55] = { 51.3, 61.6, 490, 180 }, + [56] = { 75.3, 61.5, 490, 180 }, + [57] = { 21.9, 61.4, 490, 180 }, + [58] = { 47, 61, 490, 180 }, + [59] = { 56.2, 60.6, 490, 180 }, + [60] = { 81.6, 60.6, 490, 180 }, + [61] = { 59.5, 60.2, 490, 180 }, + [62] = { 68.4, 59.8, 490, 180 }, + [63] = { 60.3, 59.7, 490, 180 }, + [64] = { 26.1, 59.5, 490, 180 }, + [65] = { 23, 59.2, 490, 180 }, + [66] = { 23.7, 58.9, 490, 180 }, + [67] = { 74.8, 58.8, 490, 180 }, + [68] = { 79.4, 57.9, 490, 180 }, + [69] = { 76.7, 57.7, 490, 180 }, + [70] = { 74.4, 57.1, 490, 180 }, + [71] = { 35.8, 54.6, 490, 180 }, + [72] = { 64.2, 53.9, 490, 180 }, + [73] = { 25.8, 53.8, 490, 180 }, + [74] = { 73.8, 53.4, 490, 180 }, + [75] = { 42.9, 52.8, 490, 180 }, + [76] = { 72.8, 51.9, 490, 180 }, + [77] = { 29, 51.7, 490, 180 }, + [78] = { 68, 51.4, 490, 180 }, + [79] = { 26.8, 50.5, 490, 180 }, + [80] = { 20.6, 50, 490, 180 }, + [81] = { 40.6, 50, 490, 180 }, + [82] = { 58.1, 49.9, 490, 180 }, + [83] = { 80.5, 49.8, 490, 180 }, + [84] = { 59.8, 49.4, 490, 180 }, + [85] = { 66.7, 47, 490, 180 }, + [86] = { 72.9, 46.8, 490, 180 }, + [87] = { 27.7, 46.4, 490, 180 }, + [88] = { 43, 45.5, 490, 180 }, + [89] = { 33.8, 44.3, 490, 180 }, + [90] = { 76.6, 43.8, 490, 180 }, + [91] = { 80.6, 43.1, 490, 180 }, + [92] = { 71.1, 42.9, 490, 180 }, + [93] = { 24, 42.8, 490, 180 }, + [94] = { 38.1, 41.9, 490, 180 }, + [95] = { 62.1, 40.5, 490, 180 }, + [96] = { 67.7, 40.4, 490, 180 }, + [97] = { 23.1, 40.2, 490, 180 }, + [98] = { 75.9, 40.2, 490, 180 }, + [99] = { 78.2, 40.1, 490, 180 }, + [100] = { 25.6, 39.8, 490, 180 }, + [101] = { 81.5, 39, 490, 180 }, + [102] = { 19.7, 38.9, 490, 180 }, + [103] = { 53.7, 38.8, 490, 180 }, + [104] = { 45.4, 38.7, 490, 180 }, + [105] = { 75.1, 37.6, 490, 180 }, + [106] = { 72.3, 35.5, 490, 180 }, + [107] = { 69.6, 35, 490, 180 }, + [108] = { 51.8, 35, 490, 180 }, + [109] = { 42.5, 34, 490, 180 }, + [110] = { 72.1, 33.2, 490, 180 }, + [111] = { 34.7, 33.2, 490, 180 }, + [112] = { 33, 29.6, 490, 180 }, + [113] = { 74.8, 29.5, 490, 180 }, + [114] = { 26.4, 29.2, 490, 180 }, + [115] = { 78.9, 28.9, 490, 180 }, + [116] = { 75.7, 28.8, 490, 180 }, + [117] = { 69, 28.8, 490, 180 }, + [118] = { 77, 28.4, 490, 180 }, + [119] = { 62.6, 27, 490, 180 }, + [120] = { 39.7, 26.9, 490, 180 }, + [121] = { 68.3, 25.4, 490, 180 }, + [122] = { 63.4, 23.1, 490, 180 }, + [123] = { 72, 23.1, 490, 180 }, + [124] = { 43.9, 21.4, 490, 180 }, + [125] = { 72.2, 21.2, 490, 180 }, + [126] = { 30.1, 21.2, 490, 180 }, + [127] = { 66.2, 21.1, 490, 180 }, + [128] = { 37.8, 20.6, 490, 180 }, + [129] = { 59.2, 20.2, 490, 180 }, + [130] = { 46.2, 19.6, 490, 180 }, + [131] = { 69.8, 18.8, 490, 180 }, + [132] = { 56.1, 18.6, 490, 180 }, + [133] = { 31.3, 18.5, 490, 180 }, + [134] = { 54.1, 18.2, 490, 180 }, + [135] = { 43.8, 16.8, 490, 180 }, + [136] = { 62.6, 16.6, 490, 180 }, + [137] = { 50, 15.6, 490, 180 }, + [138] = { 60.9, 15.1, 490, 180 }, + [139] = { 46.8, 15.1, 490, 180 }, + [140] = { 39.4, 14.5, 490, 180 }, + [141] = { 51.5, 13.5, 490, 180 }, + [142] = { 47.3, 12.9, 490, 180 }, + [143] = { 56.5, 12.3, 490, 180 }, + [144] = { 58.3, 10.8, 490, 180 }, + [145] = { 57.3, 10.1, 490, 180 }, + [146] = { 58.2, 8.8, 490, 180 }, + [147] = { 55.7, 7.9, 490, 180 }, + [148] = { 80.8, 65.6, 1377, 180 }, + [149] = { 82.1, 43, 1377, 180 }, + [150] = { 78.4, 41.6, 1377, 180 }, + }, + }, + [164659] = { + ["coords"] = { + [1] = { 32, 35.2, 440, 180 }, + [2] = { 32.9, 34.5, 440, 180 }, + [3] = { 31.7, 33, 440, 180 }, + [4] = { 32.3, 28.7, 440, 180 }, + [5] = { 32.3, 25.1, 440, 180 }, + [6] = { 32.8, 22.9, 440, 180 }, + [7] = { 31.4, 17.5, 440, 180 }, + [8] = { 45.8, 92.6, 490, 180 }, + [9] = { 50, 92.4, 490, 180 }, + [10] = { 44.2, 88.8, 490, 180 }, + [11] = { 51.9, 87.4, 490, 180 }, + [12] = { 42.8, 86.2, 490, 180 }, + [13] = { 62, 85.3, 490, 180 }, + [14] = { 57.4, 82.6, 490, 180 }, + [15] = { 38.2, 81.8, 490, 180 }, + [16] = { 31.1, 81.3, 490, 180 }, + [17] = { 69.4, 80, 490, 180 }, + [18] = { 40.7, 79.9, 490, 180 }, + [19] = { 65.2, 79.8, 490, 180 }, + [20] = { 29.8, 79.1, 490, 180 }, + [21] = { 58.6, 78.4, 490, 180 }, + [22] = { 60.4, 77.5, 490, 180 }, + [23] = { 70, 77.2, 490, 180 }, + [24] = { 29, 76.9, 490, 180 }, + [25] = { 33.9, 76.9, 490, 180 }, + [26] = { 56.9, 76.1, 490, 180 }, + [27] = { 63.1, 75.3, 490, 180 }, + [28] = { 40.5, 75.3, 490, 180 }, + [29] = { 43.9, 74.7, 490, 180 }, + [30] = { 71.7, 73.7, 490, 180 }, + [31] = { 56.3, 73.6, 490, 180 }, + [32] = { 32.7, 73.5, 490, 180 }, + [33] = { 66.7, 73.2, 490, 180 }, + [34] = { 75, 70.5, 490, 180 }, + [35] = { 30.3, 70.5, 490, 180 }, + [36] = { 62.3, 70.3, 490, 180 }, + [37] = { 27.5, 70.2, 490, 180 }, + [38] = { 69.5, 69.5, 490, 180 }, + [39] = { 36.1, 69, 490, 180 }, + [40] = { 60.9, 68.5, 490, 180 }, + [41] = { 62.4, 68.4, 490, 180 }, + [42] = { 25.1, 67, 490, 180 }, + [43] = { 37.8, 66.5, 490, 180 }, + [44] = { 42.8, 66, 490, 180 }, + [45] = { 45.4, 65.9, 490, 180 }, + [46] = { 58.2, 65.9, 490, 180 }, + [47] = { 73, 65.5, 490, 180 }, + [48] = { 29.7, 64.8, 490, 180 }, + [49] = { 70.2, 64.1, 490, 180 }, + [50] = { 74.4, 63.9, 490, 180 }, + [51] = { 71.7, 63.4, 490, 180 }, + [52] = { 25.7, 63.3, 490, 180 }, + [53] = { 30.8, 63.3, 490, 180 }, + [54] = { 79.9, 62, 490, 180 }, + [55] = { 51.3, 61.6, 490, 180 }, + [56] = { 75.3, 61.5, 490, 180 }, + [57] = { 21.9, 61.4, 490, 180 }, + [58] = { 47, 61, 490, 180 }, + [59] = { 56.2, 60.6, 490, 180 }, + [60] = { 81.6, 60.6, 490, 180 }, + [61] = { 59.5, 60.2, 490, 180 }, + [62] = { 68.4, 59.8, 490, 180 }, + [63] = { 60.3, 59.7, 490, 180 }, + [64] = { 26.1, 59.5, 490, 180 }, + [65] = { 23, 59.2, 490, 180 }, + [66] = { 23.7, 58.9, 490, 180 }, + [67] = { 74.8, 58.8, 490, 180 }, + [68] = { 79.4, 57.9, 490, 180 }, + [69] = { 76.7, 57.7, 490, 180 }, + [70] = { 74.4, 57.1, 490, 180 }, + [71] = { 35.8, 54.6, 490, 180 }, + [72] = { 64.2, 53.9, 490, 180 }, + [73] = { 25.8, 53.8, 490, 180 }, + [74] = { 73.8, 53.4, 490, 180 }, + [75] = { 42.9, 52.8, 490, 180 }, + [76] = { 72.8, 51.9, 490, 180 }, + [77] = { 29, 51.7, 490, 180 }, + [78] = { 68, 51.4, 490, 180 }, + [79] = { 26.8, 50.5, 490, 180 }, + [80] = { 20.6, 50, 490, 180 }, + [81] = { 40.6, 50, 490, 180 }, + [82] = { 58.1, 49.9, 490, 180 }, + [83] = { 80.5, 49.8, 490, 180 }, + [84] = { 59.8, 49.4, 490, 180 }, + [85] = { 66.7, 47, 490, 180 }, + [86] = { 72.9, 46.8, 490, 180 }, + [87] = { 27.7, 46.4, 490, 180 }, + [88] = { 43, 45.5, 490, 180 }, + [89] = { 33.8, 44.3, 490, 180 }, + [90] = { 76.6, 43.8, 490, 180 }, + [91] = { 80.6, 43.1, 490, 180 }, + [92] = { 71.1, 42.9, 490, 180 }, + [93] = { 24, 42.8, 490, 180 }, + [94] = { 38.1, 41.9, 490, 180 }, + [95] = { 62.1, 40.5, 490, 180 }, + [96] = { 67.7, 40.4, 490, 180 }, + [97] = { 23.1, 40.2, 490, 180 }, + [98] = { 75.9, 40.2, 490, 180 }, + [99] = { 78.2, 40.1, 490, 180 }, + [100] = { 25.6, 39.8, 490, 180 }, + [101] = { 81.5, 39, 490, 180 }, + [102] = { 19.7, 38.9, 490, 180 }, + [103] = { 53.7, 38.8, 490, 180 }, + [104] = { 45.4, 38.7, 490, 180 }, + [105] = { 75.1, 37.6, 490, 180 }, + [106] = { 72.3, 35.5, 490, 180 }, + [107] = { 69.6, 35, 490, 180 }, + [108] = { 51.8, 35, 490, 180 }, + [109] = { 42.5, 34, 490, 180 }, + [110] = { 72.1, 33.2, 490, 180 }, + [111] = { 34.7, 33.2, 490, 180 }, + [112] = { 33, 29.6, 490, 180 }, + [113] = { 74.8, 29.5, 490, 180 }, + [114] = { 26.4, 29.2, 490, 180 }, + [115] = { 78.9, 28.9, 490, 180 }, + [116] = { 75.7, 28.8, 490, 180 }, + [117] = { 69, 28.8, 490, 180 }, + [118] = { 77, 28.4, 490, 180 }, + [119] = { 62.6, 27, 490, 180 }, + [120] = { 39.7, 26.9, 490, 180 }, + [121] = { 68.3, 25.4, 490, 180 }, + [122] = { 63.4, 23.1, 490, 180 }, + [123] = { 72, 23.1, 490, 180 }, + [124] = { 43.9, 21.4, 490, 180 }, + [125] = { 72.2, 21.2, 490, 180 }, + [126] = { 30.1, 21.2, 490, 180 }, + [127] = { 66.2, 21.1, 490, 180 }, + [128] = { 37.8, 20.6, 490, 180 }, + [129] = { 59.2, 20.2, 490, 180 }, + [130] = { 46.2, 19.6, 490, 180 }, + [131] = { 69.8, 18.8, 490, 180 }, + [132] = { 56.1, 18.6, 490, 180 }, + [133] = { 31.3, 18.5, 490, 180 }, + [134] = { 54.1, 18.2, 490, 180 }, + [135] = { 43.8, 16.8, 490, 180 }, + [136] = { 62.6, 16.6, 490, 180 }, + [137] = { 50, 15.6, 490, 180 }, + [138] = { 60.9, 15.1, 490, 180 }, + [139] = { 46.8, 15.1, 490, 180 }, + [140] = { 39.4, 14.5, 490, 180 }, + [141] = { 51.5, 13.5, 490, 180 }, + [142] = { 47.3, 12.9, 490, 180 }, + [143] = { 56.5, 12.3, 490, 180 }, + [144] = { 58.3, 10.8, 490, 180 }, + [145] = { 57.3, 10.1, 490, 180 }, + [146] = { 58.2, 8.8, 490, 180 }, + [147] = { 55.7, 7.9, 490, 180 }, + [148] = { 80.8, 65.6, 1377, 180 }, + [149] = { 82.1, 43, 1377, 180 }, + [150] = { 78.4, 41.6, 1377, 180 }, + }, + }, + [164660] = { + ["coords"] = { + [1] = { 32, 35.2, 440, 180 }, + [2] = { 32.9, 34.5, 440, 180 }, + [3] = { 31.7, 33, 440, 180 }, + [4] = { 32.3, 28.7, 440, 180 }, + [5] = { 32.3, 25.1, 440, 180 }, + [6] = { 32.8, 22.9, 440, 180 }, + [7] = { 31.4, 17.5, 440, 180 }, + [8] = { 45.8, 92.6, 490, 180 }, + [9] = { 50, 92.4, 490, 180 }, + [10] = { 44.2, 88.8, 490, 180 }, + [11] = { 51.9, 87.4, 490, 180 }, + [12] = { 42.8, 86.2, 490, 180 }, + [13] = { 62, 85.3, 490, 180 }, + [14] = { 57.4, 82.6, 490, 180 }, + [15] = { 38.2, 81.8, 490, 180 }, + [16] = { 31.1, 81.3, 490, 180 }, + [17] = { 69.4, 80, 490, 180 }, + [18] = { 40.7, 79.9, 490, 180 }, + [19] = { 65.2, 79.8, 490, 180 }, + [20] = { 29.8, 79.1, 490, 180 }, + [21] = { 58.6, 78.4, 490, 180 }, + [22] = { 60.4, 77.5, 490, 180 }, + [23] = { 70, 77.2, 490, 180 }, + [24] = { 29, 76.9, 490, 180 }, + [25] = { 33.9, 76.9, 490, 180 }, + [26] = { 56.9, 76.1, 490, 180 }, + [27] = { 63.1, 75.3, 490, 180 }, + [28] = { 40.5, 75.3, 490, 180 }, + [29] = { 43.9, 74.7, 490, 180 }, + [30] = { 71.7, 73.7, 490, 180 }, + [31] = { 56.3, 73.6, 490, 180 }, + [32] = { 32.7, 73.5, 490, 180 }, + [33] = { 66.7, 73.2, 490, 180 }, + [34] = { 75, 70.5, 490, 180 }, + [35] = { 30.3, 70.5, 490, 180 }, + [36] = { 62.3, 70.3, 490, 180 }, + [37] = { 27.5, 70.2, 490, 180 }, + [38] = { 69.5, 69.5, 490, 180 }, + [39] = { 36.1, 69, 490, 180 }, + [40] = { 60.9, 68.5, 490, 180 }, + [41] = { 62.4, 68.4, 490, 180 }, + [42] = { 25.1, 67, 490, 180 }, + [43] = { 37.8, 66.5, 490, 180 }, + [44] = { 42.8, 66, 490, 180 }, + [45] = { 45.4, 65.9, 490, 180 }, + [46] = { 58.2, 65.9, 490, 180 }, + [47] = { 73, 65.5, 490, 180 }, + [48] = { 29.7, 64.8, 490, 180 }, + [49] = { 70.2, 64.1, 490, 180 }, + [50] = { 74.4, 63.9, 490, 180 }, + [51] = { 71.7, 63.4, 490, 180 }, + [52] = { 25.7, 63.3, 490, 180 }, + [53] = { 30.8, 63.3, 490, 180 }, + [54] = { 79.9, 62, 490, 180 }, + [55] = { 51.3, 61.6, 490, 180 }, + [56] = { 75.3, 61.5, 490, 180 }, + [57] = { 21.9, 61.4, 490, 180 }, + [58] = { 47, 61, 490, 180 }, + [59] = { 56.2, 60.6, 490, 180 }, + [60] = { 81.6, 60.6, 490, 180 }, + [61] = { 59.5, 60.2, 490, 180 }, + [62] = { 68.4, 59.8, 490, 180 }, + [63] = { 60.3, 59.7, 490, 180 }, + [64] = { 26.1, 59.5, 490, 180 }, + [65] = { 23, 59.2, 490, 180 }, + [66] = { 23.7, 58.9, 490, 180 }, + [67] = { 74.8, 58.8, 490, 180 }, + [68] = { 79.4, 57.9, 490, 180 }, + [69] = { 76.7, 57.7, 490, 180 }, + [70] = { 74.4, 57.1, 490, 180 }, + [71] = { 35.8, 54.6, 490, 180 }, + [72] = { 64.2, 53.9, 490, 180 }, + [73] = { 25.8, 53.8, 490, 180 }, + [74] = { 73.8, 53.4, 490, 180 }, + [75] = { 42.9, 52.8, 490, 180 }, + [76] = { 72.8, 51.9, 490, 180 }, + [77] = { 29, 51.7, 490, 180 }, + [78] = { 68, 51.4, 490, 180 }, + [79] = { 26.8, 50.5, 490, 180 }, + [80] = { 20.6, 50, 490, 180 }, + [81] = { 40.6, 50, 490, 180 }, + [82] = { 58.1, 49.9, 490, 180 }, + [83] = { 80.5, 49.8, 490, 180 }, + [84] = { 59.8, 49.4, 490, 180 }, + [85] = { 66.7, 47, 490, 180 }, + [86] = { 72.9, 46.8, 490, 180 }, + [87] = { 27.7, 46.4, 490, 180 }, + [88] = { 43, 45.5, 490, 180 }, + [89] = { 33.8, 44.3, 490, 180 }, + [90] = { 76.6, 43.8, 490, 180 }, + [91] = { 80.6, 43.1, 490, 180 }, + [92] = { 71.1, 42.9, 490, 180 }, + [93] = { 24, 42.8, 490, 180 }, + [94] = { 38.1, 41.9, 490, 180 }, + [95] = { 62.1, 40.5, 490, 180 }, + [96] = { 67.7, 40.4, 490, 180 }, + [97] = { 23.1, 40.2, 490, 180 }, + [98] = { 75.9, 40.2, 490, 180 }, + [99] = { 78.2, 40.1, 490, 180 }, + [100] = { 25.6, 39.8, 490, 180 }, + [101] = { 81.5, 39, 490, 180 }, + [102] = { 19.7, 38.9, 490, 180 }, + [103] = { 53.7, 38.8, 490, 180 }, + [104] = { 45.4, 38.7, 490, 180 }, + [105] = { 75.1, 37.6, 490, 180 }, + [106] = { 72.3, 35.5, 490, 180 }, + [107] = { 69.6, 35, 490, 180 }, + [108] = { 51.8, 35, 490, 180 }, + [109] = { 42.5, 34, 490, 180 }, + [110] = { 72.1, 33.2, 490, 180 }, + [111] = { 34.7, 33.2, 490, 180 }, + [112] = { 33, 29.6, 490, 180 }, + [113] = { 74.8, 29.5, 490, 180 }, + [114] = { 26.4, 29.2, 490, 180 }, + [115] = { 78.9, 28.9, 490, 180 }, + [116] = { 75.7, 28.8, 490, 180 }, + [117] = { 69, 28.8, 490, 180 }, + [118] = { 77, 28.4, 490, 180 }, + [119] = { 62.6, 27, 490, 180 }, + [120] = { 39.7, 26.9, 490, 180 }, + [121] = { 68.3, 25.4, 490, 180 }, + [122] = { 63.4, 23.1, 490, 180 }, + [123] = { 72, 23.1, 490, 180 }, + [124] = { 43.9, 21.4, 490, 180 }, + [125] = { 72.2, 21.2, 490, 180 }, + [126] = { 30.1, 21.2, 490, 180 }, + [127] = { 66.2, 21.1, 490, 180 }, + [128] = { 37.8, 20.6, 490, 180 }, + [129] = { 59.2, 20.2, 490, 180 }, + [130] = { 46.2, 19.6, 490, 180 }, + [131] = { 69.8, 18.8, 490, 180 }, + [132] = { 56.1, 18.6, 490, 180 }, + [133] = { 31.3, 18.5, 490, 180 }, + [134] = { 54.1, 18.2, 490, 180 }, + [135] = { 43.8, 16.8, 490, 180 }, + [136] = { 62.6, 16.6, 490, 180 }, + [137] = { 50, 15.6, 490, 180 }, + [138] = { 60.9, 15.1, 490, 180 }, + [139] = { 46.8, 15.1, 490, 180 }, + [140] = { 39.4, 14.5, 490, 180 }, + [141] = { 51.5, 13.5, 490, 180 }, + [142] = { 47.3, 12.9, 490, 180 }, + [143] = { 56.5, 12.3, 490, 180 }, + [144] = { 58.3, 10.8, 490, 180 }, + [145] = { 57.3, 10.1, 490, 180 }, + [146] = { 58.2, 8.8, 490, 180 }, + [147] = { 55.7, 7.9, 490, 180 }, + [148] = { 80.8, 65.6, 1377, 180 }, + [149] = { 82.1, 43, 1377, 180 }, + [150] = { 78.4, 41.6, 1377, 180 }, + }, + }, + [164661] = { + ["coords"] = { + [1] = { 32, 35.2, 440, 180 }, + [2] = { 32.9, 34.5, 440, 180 }, + [3] = { 31.7, 33, 440, 180 }, + [4] = { 32.3, 28.7, 440, 180 }, + [5] = { 32.3, 25.1, 440, 180 }, + [6] = { 32.8, 22.9, 440, 180 }, + [7] = { 31.4, 17.5, 440, 180 }, + [8] = { 45.8, 92.6, 490, 180 }, + [9] = { 50, 92.4, 490, 180 }, + [10] = { 44.2, 88.8, 490, 180 }, + [11] = { 51.9, 87.4, 490, 180 }, + [12] = { 42.8, 86.2, 490, 180 }, + [13] = { 62, 85.3, 490, 180 }, + [14] = { 57.4, 82.6, 490, 180 }, + [15] = { 38.2, 81.8, 490, 180 }, + [16] = { 31.1, 81.3, 490, 180 }, + [17] = { 69.4, 80, 490, 180 }, + [18] = { 40.7, 79.9, 490, 180 }, + [19] = { 65.2, 79.8, 490, 180 }, + [20] = { 29.8, 79.1, 490, 180 }, + [21] = { 58.6, 78.4, 490, 180 }, + [22] = { 60.4, 77.5, 490, 180 }, + [23] = { 70, 77.2, 490, 180 }, + [24] = { 29, 76.9, 490, 180 }, + [25] = { 33.9, 76.9, 490, 180 }, + [26] = { 56.9, 76.1, 490, 180 }, + [27] = { 63.1, 75.3, 490, 180 }, + [28] = { 40.5, 75.3, 490, 180 }, + [29] = { 43.9, 74.7, 490, 180 }, + [30] = { 71.7, 73.7, 490, 180 }, + [31] = { 56.3, 73.6, 490, 180 }, + [32] = { 32.7, 73.5, 490, 180 }, + [33] = { 66.7, 73.2, 490, 180 }, + [34] = { 75, 70.5, 490, 180 }, + [35] = { 30.3, 70.5, 490, 180 }, + [36] = { 62.3, 70.3, 490, 180 }, + [37] = { 27.5, 70.2, 490, 180 }, + [38] = { 69.5, 69.5, 490, 180 }, + [39] = { 36.1, 69, 490, 180 }, + [40] = { 60.9, 68.5, 490, 180 }, + [41] = { 62.4, 68.4, 490, 180 }, + [42] = { 25.1, 67, 490, 180 }, + [43] = { 37.8, 66.5, 490, 180 }, + [44] = { 42.8, 66, 490, 180 }, + [45] = { 45.4, 65.9, 490, 180 }, + [46] = { 58.2, 65.9, 490, 180 }, + [47] = { 73, 65.5, 490, 180 }, + [48] = { 29.7, 64.8, 490, 180 }, + [49] = { 70.2, 64.1, 490, 180 }, + [50] = { 74.4, 63.9, 490, 180 }, + [51] = { 71.7, 63.4, 490, 180 }, + [52] = { 25.7, 63.3, 490, 180 }, + [53] = { 30.8, 63.3, 490, 180 }, + [54] = { 79.9, 62, 490, 180 }, + [55] = { 51.3, 61.6, 490, 180 }, + [56] = { 75.3, 61.5, 490, 180 }, + [57] = { 21.9, 61.4, 490, 180 }, + [58] = { 47, 61, 490, 180 }, + [59] = { 56.2, 60.6, 490, 180 }, + [60] = { 81.6, 60.6, 490, 180 }, + [61] = { 59.5, 60.2, 490, 180 }, + [62] = { 68.4, 59.8, 490, 180 }, + [63] = { 60.3, 59.7, 490, 180 }, + [64] = { 26.1, 59.5, 490, 180 }, + [65] = { 23, 59.2, 490, 180 }, + [66] = { 23.7, 58.9, 490, 180 }, + [67] = { 74.8, 58.8, 490, 180 }, + [68] = { 79.4, 57.9, 490, 180 }, + [69] = { 76.7, 57.7, 490, 180 }, + [70] = { 74.4, 57.1, 490, 180 }, + [71] = { 35.8, 54.6, 490, 180 }, + [72] = { 64.2, 53.9, 490, 180 }, + [73] = { 25.8, 53.8, 490, 180 }, + [74] = { 73.8, 53.4, 490, 180 }, + [75] = { 42.9, 52.8, 490, 180 }, + [76] = { 72.8, 51.9, 490, 180 }, + [77] = { 29, 51.7, 490, 180 }, + [78] = { 68, 51.4, 490, 180 }, + [79] = { 26.8, 50.5, 490, 180 }, + [80] = { 20.6, 50, 490, 180 }, + [81] = { 40.6, 50, 490, 180 }, + [82] = { 58.1, 49.9, 490, 180 }, + [83] = { 80.5, 49.8, 490, 180 }, + [84] = { 59.8, 49.4, 490, 180 }, + [85] = { 66.7, 47, 490, 180 }, + [86] = { 72.9, 46.8, 490, 180 }, + [87] = { 27.7, 46.4, 490, 180 }, + [88] = { 43, 45.5, 490, 180 }, + [89] = { 33.8, 44.3, 490, 180 }, + [90] = { 76.6, 43.8, 490, 180 }, + [91] = { 80.6, 43.1, 490, 180 }, + [92] = { 71.1, 42.9, 490, 180 }, + [93] = { 24, 42.8, 490, 180 }, + [94] = { 38.1, 41.9, 490, 180 }, + [95] = { 62.1, 40.5, 490, 180 }, + [96] = { 67.7, 40.4, 490, 180 }, + [97] = { 23.1, 40.2, 490, 180 }, + [98] = { 75.9, 40.2, 490, 180 }, + [99] = { 78.2, 40.1, 490, 180 }, + [100] = { 25.6, 39.8, 490, 180 }, + [101] = { 81.5, 39, 490, 180 }, + [102] = { 19.7, 38.9, 490, 180 }, + [103] = { 53.7, 38.8, 490, 180 }, + [104] = { 45.4, 38.7, 490, 180 }, + [105] = { 75.1, 37.6, 490, 180 }, + [106] = { 72.3, 35.5, 490, 180 }, + [107] = { 69.6, 35, 490, 180 }, + [108] = { 51.8, 35, 490, 180 }, + [109] = { 42.5, 34, 490, 180 }, + [110] = { 72.1, 33.2, 490, 180 }, + [111] = { 34.7, 33.2, 490, 180 }, + [112] = { 33, 29.6, 490, 180 }, + [113] = { 74.8, 29.5, 490, 180 }, + [114] = { 26.4, 29.2, 490, 180 }, + [115] = { 78.9, 28.9, 490, 180 }, + [116] = { 75.7, 28.8, 490, 180 }, + [117] = { 69, 28.8, 490, 180 }, + [118] = { 77, 28.4, 490, 180 }, + [119] = { 62.6, 27, 490, 180 }, + [120] = { 39.7, 26.9, 490, 180 }, + [121] = { 68.3, 25.4, 490, 180 }, + [122] = { 63.4, 23.1, 490, 180 }, + [123] = { 72, 23.1, 490, 180 }, + [124] = { 43.9, 21.4, 490, 180 }, + [125] = { 72.2, 21.2, 490, 180 }, + [126] = { 30.1, 21.2, 490, 180 }, + [127] = { 66.2, 21.1, 490, 180 }, + [128] = { 37.8, 20.6, 490, 180 }, + [129] = { 59.2, 20.2, 490, 180 }, + [130] = { 46.2, 19.6, 490, 180 }, + [131] = { 69.8, 18.8, 490, 180 }, + [132] = { 56.1, 18.6, 490, 180 }, + [133] = { 31.3, 18.5, 490, 180 }, + [134] = { 54.1, 18.2, 490, 180 }, + [135] = { 43.8, 16.8, 490, 180 }, + [136] = { 62.6, 16.6, 490, 180 }, + [137] = { 50, 15.6, 490, 180 }, + [138] = { 60.9, 15.1, 490, 180 }, + [139] = { 46.8, 15.1, 490, 180 }, + [140] = { 39.4, 14.5, 490, 180 }, + [141] = { 51.5, 13.5, 490, 180 }, + [142] = { 47.3, 12.9, 490, 180 }, + [143] = { 56.5, 12.3, 490, 180 }, + [144] = { 58.3, 10.8, 490, 180 }, + [145] = { 57.3, 10.1, 490, 180 }, + [146] = { 58.2, 8.8, 490, 180 }, + [147] = { 55.7, 7.9, 490, 180 }, + [148] = { 80.8, 65.6, 1377, 180 }, + [149] = { 82.1, 43, 1377, 180 }, + [150] = { 78.4, 41.6, 1377, 180 }, + }, + }, + [164662] = { + ["coords"] = { + [1] = { 33.6, 66, 85, 180 }, + [2] = { 33.1, 65.7, 85, 180 }, + [3] = { 33, 65.4, 85, 180 }, + [4] = { 32.9, 64.6, 85, 180 }, + [5] = { 33.8, 64.6, 85, 180 }, + [6] = { 32.8, 64.4, 85, 180 }, + [7] = { 32.4, 64.4, 85, 180 }, + [8] = { 32.5, 64.3, 85, 180 }, + [9] = { 34.2, 64.2, 85, 180 }, + [10] = { 33.8, 64, 85, 180 }, + [11] = { 34.1, 63.9, 85, 180 }, + [12] = { 32.8, 63.1, 85, 180 }, + [13] = { 33.1, 63.1, 85, 180 }, + [14] = { 31.7, 62.5, 85, 180 }, + [15] = { 31.3, 62.4, 85, 180 }, + [16] = { 31.6, 62, 85, 180 }, + [17] = { 31.8, 62, 85, 180 }, + [18] = { 33.2, 61.9, 85, 180 }, + [19] = { 31.9, 61.5, 85, 180 }, + [20] = { 32.8, 61.3, 85, 180 }, + }, + }, + [164688] = { + ["coords"] = {}, + }, + [164689] = { + ["coords"] = {}, + }, + [164690] = { + ["coords"] = {}, + }, + [164699] = { + ["coords"] = {}, + }, + [164700] = { + ["coords"] = {}, + }, + [164701] = { + ["coords"] = {}, + }, + [164702] = { + ["coords"] = {}, + }, + [164703] = { + ["coords"] = {}, + }, + [164704] = { + ["coords"] = { + [1] = { 51.1, 13, 14, 900 }, + [2] = { 31.8, 29.7, 33, 900 }, + }, + }, + [164705] = { + ["coords"] = {}, + }, + [164725] = { + ["coords"] = {}, + }, + [164726] = { + ["coords"] = {}, + }, + [164728] = { + ["coords"] = { + [1] = { 50.8, 35.7, 33, 900 }, + }, + }, + [164729] = { + ["coords"] = { + [1] = { 44.6, 10.4, 357, 120 }, + }, + }, + [164738] = { + ["coords"] = { + [1] = { 44.6, 10.5, 357, 180 }, + }, + }, + [164758] = { + ["coords"] = {}, + }, + [164759] = { + ["coords"] = {}, + }, + [164760] = { + ["coords"] = {}, + }, + [164761] = { + ["coords"] = {}, + }, + [164762] = { + ["coords"] = {}, + }, + [164763] = { + ["coords"] = {}, + }, + [164764] = { + ["coords"] = {}, + }, + [164765] = { + ["coords"] = {}, + }, + [164766] = { + ["coords"] = {}, + }, + [164767] = { + ["coords"] = {}, + }, + [164778] = { + ["coords"] = { + [1] = { 32, 35.2, 440, 180 }, + [2] = { 32.9, 34.5, 440, 180 }, + [3] = { 31.7, 33, 440, 180 }, + [4] = { 32.3, 28.7, 440, 180 }, + [5] = { 32.3, 25.1, 440, 180 }, + [6] = { 32.8, 22.9, 440, 180 }, + [7] = { 31.4, 17.5, 440, 180 }, + [8] = { 45.8, 92.6, 490, 180 }, + [9] = { 50, 92.4, 490, 180 }, + [10] = { 44.2, 88.8, 490, 180 }, + [11] = { 51.9, 87.4, 490, 180 }, + [12] = { 42.8, 86.2, 490, 180 }, + [13] = { 62, 85.3, 490, 180 }, + [14] = { 57.4, 82.6, 490, 180 }, + [15] = { 38.2, 81.8, 490, 180 }, + [16] = { 31.1, 81.3, 490, 180 }, + [17] = { 69.4, 80, 490, 180 }, + [18] = { 40.7, 79.9, 490, 180 }, + [19] = { 65.2, 79.8, 490, 180 }, + [20] = { 29.8, 79.1, 490, 180 }, + [21] = { 58.6, 78.4, 490, 180 }, + [22] = { 60.4, 77.5, 490, 180 }, + [23] = { 70, 77.2, 490, 180 }, + [24] = { 29, 76.9, 490, 180 }, + [25] = { 33.9, 76.9, 490, 180 }, + [26] = { 56.9, 76.1, 490, 180 }, + [27] = { 63.1, 75.3, 490, 180 }, + [28] = { 40.5, 75.3, 490, 180 }, + [29] = { 43.9, 74.7, 490, 180 }, + [30] = { 71.7, 73.7, 490, 180 }, + [31] = { 56.3, 73.6, 490, 180 }, + [32] = { 32.7, 73.5, 490, 180 }, + [33] = { 66.7, 73.2, 490, 180 }, + [34] = { 75, 70.5, 490, 180 }, + [35] = { 30.3, 70.5, 490, 180 }, + [36] = { 62.3, 70.3, 490, 180 }, + [37] = { 27.5, 70.2, 490, 180 }, + [38] = { 69.5, 69.5, 490, 180 }, + [39] = { 36.1, 69, 490, 180 }, + [40] = { 60.9, 68.5, 490, 180 }, + [41] = { 62.4, 68.4, 490, 180 }, + [42] = { 25.1, 67, 490, 180 }, + [43] = { 37.8, 66.5, 490, 180 }, + [44] = { 42.8, 66, 490, 180 }, + [45] = { 45.4, 65.9, 490, 180 }, + [46] = { 58.2, 65.9, 490, 180 }, + [47] = { 73, 65.5, 490, 180 }, + [48] = { 29.7, 64.8, 490, 180 }, + [49] = { 70.2, 64.1, 490, 180 }, + [50] = { 74.4, 63.9, 490, 180 }, + [51] = { 71.7, 63.4, 490, 180 }, + [52] = { 25.7, 63.3, 490, 180 }, + [53] = { 30.8, 63.3, 490, 180 }, + [54] = { 79.9, 62, 490, 180 }, + [55] = { 51.3, 61.6, 490, 180 }, + [56] = { 75.3, 61.5, 490, 180 }, + [57] = { 21.9, 61.4, 490, 180 }, + [58] = { 47, 61, 490, 180 }, + [59] = { 56.2, 60.6, 490, 180 }, + [60] = { 81.6, 60.6, 490, 180 }, + [61] = { 59.5, 60.2, 490, 180 }, + [62] = { 68.4, 59.8, 490, 180 }, + [63] = { 60.3, 59.7, 490, 180 }, + [64] = { 26.1, 59.5, 490, 180 }, + [65] = { 23, 59.2, 490, 180 }, + [66] = { 23.7, 58.9, 490, 180 }, + [67] = { 74.8, 58.8, 490, 180 }, + [68] = { 79.4, 57.9, 490, 180 }, + [69] = { 76.7, 57.7, 490, 180 }, + [70] = { 74.4, 57.1, 490, 180 }, + [71] = { 35.8, 54.6, 490, 180 }, + [72] = { 64.2, 53.9, 490, 180 }, + [73] = { 25.8, 53.8, 490, 180 }, + [74] = { 73.8, 53.4, 490, 180 }, + [75] = { 42.9, 52.8, 490, 180 }, + [76] = { 72.8, 51.9, 490, 180 }, + [77] = { 29, 51.7, 490, 180 }, + [78] = { 68, 51.4, 490, 180 }, + [79] = { 26.8, 50.5, 490, 180 }, + [80] = { 20.6, 50, 490, 180 }, + [81] = { 40.6, 50, 490, 180 }, + [82] = { 58.1, 49.9, 490, 180 }, + [83] = { 80.5, 49.8, 490, 180 }, + [84] = { 59.8, 49.4, 490, 180 }, + [85] = { 66.7, 47, 490, 180 }, + [86] = { 72.9, 46.8, 490, 180 }, + [87] = { 27.7, 46.4, 490, 180 }, + [88] = { 43, 45.5, 490, 180 }, + [89] = { 33.8, 44.3, 490, 180 }, + [90] = { 76.6, 43.8, 490, 180 }, + [91] = { 80.6, 43.1, 490, 180 }, + [92] = { 71.1, 42.9, 490, 180 }, + [93] = { 24, 42.8, 490, 180 }, + [94] = { 38.1, 41.9, 490, 180 }, + [95] = { 62.1, 40.5, 490, 180 }, + [96] = { 67.7, 40.4, 490, 180 }, + [97] = { 23.1, 40.2, 490, 180 }, + [98] = { 75.9, 40.2, 490, 180 }, + [99] = { 78.2, 40.1, 490, 180 }, + [100] = { 25.6, 39.8, 490, 180 }, + [101] = { 81.5, 39, 490, 180 }, + [102] = { 19.7, 38.9, 490, 180 }, + [103] = { 53.7, 38.8, 490, 180 }, + [104] = { 45.4, 38.7, 490, 180 }, + [105] = { 75.1, 37.6, 490, 180 }, + [106] = { 72.3, 35.5, 490, 180 }, + [107] = { 69.6, 35, 490, 180 }, + [108] = { 51.8, 35, 490, 180 }, + [109] = { 42.5, 34, 490, 180 }, + [110] = { 72.1, 33.2, 490, 180 }, + [111] = { 34.7, 33.2, 490, 180 }, + [112] = { 33, 29.6, 490, 180 }, + [113] = { 74.8, 29.5, 490, 180 }, + [114] = { 26.4, 29.2, 490, 180 }, + [115] = { 78.9, 28.9, 490, 180 }, + [116] = { 75.7, 28.8, 490, 180 }, + [117] = { 69, 28.8, 490, 180 }, + [118] = { 77, 28.4, 490, 180 }, + [119] = { 62.6, 27, 490, 180 }, + [120] = { 39.7, 26.9, 490, 180 }, + [121] = { 68.3, 25.4, 490, 180 }, + [122] = { 63.4, 23.1, 490, 180 }, + [123] = { 72, 23.1, 490, 180 }, + [124] = { 43.9, 21.4, 490, 180 }, + [125] = { 72.2, 21.2, 490, 180 }, + [126] = { 30.1, 21.2, 490, 180 }, + [127] = { 66.2, 21.1, 490, 180 }, + [128] = { 37.8, 20.6, 490, 180 }, + [129] = { 59.2, 20.2, 490, 180 }, + [130] = { 46.2, 19.6, 490, 180 }, + [131] = { 69.8, 18.8, 490, 180 }, + [132] = { 56.1, 18.6, 490, 180 }, + [133] = { 31.3, 18.5, 490, 180 }, + [134] = { 54.1, 18.2, 490, 180 }, + [135] = { 43.8, 16.8, 490, 180 }, + [136] = { 62.6, 16.6, 490, 180 }, + [137] = { 50, 15.6, 490, 180 }, + [138] = { 60.9, 15.1, 490, 180 }, + [139] = { 46.8, 15.1, 490, 180 }, + [140] = { 39.4, 14.5, 490, 180 }, + [141] = { 51.5, 13.5, 490, 180 }, + [142] = { 47.3, 12.9, 490, 180 }, + [143] = { 56.5, 12.3, 490, 180 }, + [144] = { 58.3, 10.8, 490, 180 }, + [145] = { 57.3, 10.1, 490, 180 }, + [146] = { 58.2, 8.8, 490, 180 }, + [147] = { 55.7, 7.9, 490, 180 }, + [148] = { 80.8, 65.6, 1377, 180 }, + [149] = { 82.1, 43, 1377, 180 }, + [150] = { 78.4, 41.6, 1377, 180 }, + }, + }, + [164779] = { + ["coords"] = { + [1] = { 32, 35.2, 440, 180 }, + [2] = { 32.9, 34.5, 440, 180 }, + [3] = { 31.7, 33, 440, 180 }, + [4] = { 32.3, 28.7, 440, 180 }, + [5] = { 32.3, 25.1, 440, 180 }, + [6] = { 32.8, 22.9, 440, 180 }, + [7] = { 31.4, 17.5, 440, 180 }, + [8] = { 45.8, 92.6, 490, 180 }, + [9] = { 50, 92.4, 490, 180 }, + [10] = { 44.2, 88.8, 490, 180 }, + [11] = { 51.9, 87.4, 490, 180 }, + [12] = { 42.8, 86.2, 490, 180 }, + [13] = { 62, 85.3, 490, 180 }, + [14] = { 57.4, 82.6, 490, 180 }, + [15] = { 38.2, 81.8, 490, 180 }, + [16] = { 31.1, 81.3, 490, 180 }, + [17] = { 69.4, 80, 490, 180 }, + [18] = { 40.7, 79.9, 490, 180 }, + [19] = { 65.2, 79.8, 490, 180 }, + [20] = { 29.8, 79.1, 490, 180 }, + [21] = { 58.6, 78.4, 490, 180 }, + [22] = { 60.4, 77.5, 490, 180 }, + [23] = { 70, 77.2, 490, 180 }, + [24] = { 29, 76.9, 490, 180 }, + [25] = { 33.9, 76.9, 490, 180 }, + [26] = { 56.9, 76.1, 490, 180 }, + [27] = { 63.1, 75.3, 490, 180 }, + [28] = { 40.5, 75.3, 490, 180 }, + [29] = { 43.9, 74.7, 490, 180 }, + [30] = { 71.7, 73.7, 490, 180 }, + [31] = { 56.3, 73.6, 490, 180 }, + [32] = { 32.7, 73.5, 490, 180 }, + [33] = { 66.7, 73.2, 490, 180 }, + [34] = { 75, 70.5, 490, 180 }, + [35] = { 30.3, 70.5, 490, 180 }, + [36] = { 62.3, 70.3, 490, 180 }, + [37] = { 27.5, 70.2, 490, 180 }, + [38] = { 69.5, 69.5, 490, 180 }, + [39] = { 36.1, 69, 490, 180 }, + [40] = { 60.9, 68.5, 490, 180 }, + [41] = { 62.4, 68.4, 490, 180 }, + [42] = { 25.1, 67, 490, 180 }, + [43] = { 37.8, 66.5, 490, 180 }, + [44] = { 42.8, 66, 490, 180 }, + [45] = { 45.4, 65.9, 490, 180 }, + [46] = { 58.2, 65.9, 490, 180 }, + [47] = { 73, 65.5, 490, 180 }, + [48] = { 29.7, 64.8, 490, 180 }, + [49] = { 70.2, 64.1, 490, 180 }, + [50] = { 74.4, 63.9, 490, 180 }, + [51] = { 71.7, 63.4, 490, 180 }, + [52] = { 25.7, 63.3, 490, 180 }, + [53] = { 30.8, 63.3, 490, 180 }, + [54] = { 79.9, 62, 490, 180 }, + [55] = { 51.3, 61.6, 490, 180 }, + [56] = { 75.3, 61.5, 490, 180 }, + [57] = { 21.9, 61.4, 490, 180 }, + [58] = { 47, 61, 490, 180 }, + [59] = { 56.2, 60.6, 490, 180 }, + [60] = { 81.6, 60.6, 490, 180 }, + [61] = { 59.5, 60.2, 490, 180 }, + [62] = { 68.4, 59.8, 490, 180 }, + [63] = { 60.3, 59.7, 490, 180 }, + [64] = { 26.1, 59.5, 490, 180 }, + [65] = { 23, 59.2, 490, 180 }, + [66] = { 23.7, 58.9, 490, 180 }, + [67] = { 74.8, 58.8, 490, 180 }, + [68] = { 79.4, 57.9, 490, 180 }, + [69] = { 76.7, 57.7, 490, 180 }, + [70] = { 74.4, 57.1, 490, 180 }, + [71] = { 35.8, 54.6, 490, 180 }, + [72] = { 64.2, 53.9, 490, 180 }, + [73] = { 25.8, 53.8, 490, 180 }, + [74] = { 73.8, 53.4, 490, 180 }, + [75] = { 42.9, 52.8, 490, 180 }, + [76] = { 72.8, 51.9, 490, 180 }, + [77] = { 29, 51.7, 490, 180 }, + [78] = { 68, 51.4, 490, 180 }, + [79] = { 26.8, 50.5, 490, 180 }, + [80] = { 20.6, 50, 490, 180 }, + [81] = { 40.6, 50, 490, 180 }, + [82] = { 58.1, 49.9, 490, 180 }, + [83] = { 80.5, 49.8, 490, 180 }, + [84] = { 59.8, 49.4, 490, 180 }, + [85] = { 66.7, 47, 490, 180 }, + [86] = { 72.9, 46.8, 490, 180 }, + [87] = { 27.7, 46.4, 490, 180 }, + [88] = { 43, 45.5, 490, 180 }, + [89] = { 33.8, 44.3, 490, 180 }, + [90] = { 76.6, 43.8, 490, 180 }, + [91] = { 80.6, 43.1, 490, 180 }, + [92] = { 71.1, 42.9, 490, 180 }, + [93] = { 24, 42.8, 490, 180 }, + [94] = { 38.1, 41.9, 490, 180 }, + [95] = { 62.1, 40.5, 490, 180 }, + [96] = { 67.7, 40.4, 490, 180 }, + [97] = { 23.1, 40.2, 490, 180 }, + [98] = { 75.9, 40.2, 490, 180 }, + [99] = { 78.2, 40.1, 490, 180 }, + [100] = { 25.6, 39.8, 490, 180 }, + [101] = { 81.5, 39, 490, 180 }, + [102] = { 19.7, 38.9, 490, 180 }, + [103] = { 53.7, 38.8, 490, 180 }, + [104] = { 45.4, 38.7, 490, 180 }, + [105] = { 75.1, 37.6, 490, 180 }, + [106] = { 72.3, 35.5, 490, 180 }, + [107] = { 69.6, 35, 490, 180 }, + [108] = { 51.8, 35, 490, 180 }, + [109] = { 42.5, 34, 490, 180 }, + [110] = { 72.1, 33.2, 490, 180 }, + [111] = { 34.7, 33.2, 490, 180 }, + [112] = { 33, 29.6, 490, 180 }, + [113] = { 74.8, 29.5, 490, 180 }, + [114] = { 26.4, 29.2, 490, 180 }, + [115] = { 78.9, 28.9, 490, 180 }, + [116] = { 75.7, 28.8, 490, 180 }, + [117] = { 69, 28.8, 490, 180 }, + [118] = { 77, 28.4, 490, 180 }, + [119] = { 62.6, 27, 490, 180 }, + [120] = { 39.7, 26.9, 490, 180 }, + [121] = { 68.3, 25.4, 490, 180 }, + [122] = { 63.4, 23.1, 490, 180 }, + [123] = { 72, 23.1, 490, 180 }, + [124] = { 43.9, 21.4, 490, 180 }, + [125] = { 72.2, 21.2, 490, 180 }, + [126] = { 30.1, 21.2, 490, 180 }, + [127] = { 66.2, 21.1, 490, 180 }, + [128] = { 37.8, 20.6, 490, 180 }, + [129] = { 59.2, 20.2, 490, 180 }, + [130] = { 46.2, 19.6, 490, 180 }, + [131] = { 69.8, 18.8, 490, 180 }, + [132] = { 56.1, 18.6, 490, 180 }, + [133] = { 31.3, 18.5, 490, 180 }, + [134] = { 54.1, 18.2, 490, 180 }, + [135] = { 43.8, 16.8, 490, 180 }, + [136] = { 62.6, 16.6, 490, 180 }, + [137] = { 50, 15.6, 490, 180 }, + [138] = { 60.9, 15.1, 490, 180 }, + [139] = { 46.8, 15.1, 490, 180 }, + [140] = { 39.4, 14.5, 490, 180 }, + [141] = { 51.5, 13.5, 490, 180 }, + [142] = { 47.3, 12.9, 490, 180 }, + [143] = { 56.5, 12.3, 490, 180 }, + [144] = { 58.3, 10.8, 490, 180 }, + [145] = { 57.3, 10.1, 490, 180 }, + [146] = { 58.2, 8.8, 490, 180 }, + [147] = { 55.7, 7.9, 490, 180 }, + [148] = { 80.8, 65.6, 1377, 180 }, + [149] = { 82.1, 43, 1377, 180 }, + [150] = { 78.4, 41.6, 1377, 180 }, + }, + }, + [164780] = { + ["coords"] = { + [1] = { 32, 35.2, 440, 180 }, + [2] = { 32.9, 34.5, 440, 180 }, + [3] = { 31.7, 33, 440, 180 }, + [4] = { 32.3, 28.7, 440, 180 }, + [5] = { 32.3, 25.1, 440, 180 }, + [6] = { 32.8, 22.9, 440, 180 }, + [7] = { 31.4, 17.5, 440, 180 }, + [8] = { 45.8, 92.6, 490, 180 }, + [9] = { 50, 92.4, 490, 180 }, + [10] = { 44.2, 88.8, 490, 180 }, + [11] = { 51.9, 87.4, 490, 180 }, + [12] = { 42.8, 86.2, 490, 180 }, + [13] = { 62, 85.3, 490, 180 }, + [14] = { 57.4, 82.6, 490, 180 }, + [15] = { 38.2, 81.8, 490, 180 }, + [16] = { 31.1, 81.3, 490, 180 }, + [17] = { 69.4, 80, 490, 180 }, + [18] = { 40.7, 79.9, 490, 180 }, + [19] = { 65.2, 79.8, 490, 180 }, + [20] = { 29.8, 79.1, 490, 180 }, + [21] = { 58.6, 78.4, 490, 180 }, + [22] = { 60.4, 77.5, 490, 180 }, + [23] = { 70, 77.2, 490, 180 }, + [24] = { 29, 76.9, 490, 180 }, + [25] = { 33.9, 76.9, 490, 180 }, + [26] = { 56.9, 76.1, 490, 180 }, + [27] = { 63.1, 75.3, 490, 180 }, + [28] = { 40.5, 75.3, 490, 180 }, + [29] = { 43.9, 74.7, 490, 180 }, + [30] = { 71.7, 73.7, 490, 180 }, + [31] = { 56.3, 73.6, 490, 180 }, + [32] = { 32.7, 73.5, 490, 180 }, + [33] = { 66.7, 73.2, 490, 180 }, + [34] = { 75, 70.5, 490, 180 }, + [35] = { 30.3, 70.5, 490, 180 }, + [36] = { 62.3, 70.3, 490, 180 }, + [37] = { 27.5, 70.2, 490, 180 }, + [38] = { 69.5, 69.5, 490, 180 }, + [39] = { 36.1, 69, 490, 180 }, + [40] = { 60.9, 68.5, 490, 180 }, + [41] = { 62.4, 68.4, 490, 180 }, + [42] = { 25.1, 67, 490, 180 }, + [43] = { 37.8, 66.5, 490, 180 }, + [44] = { 42.8, 66, 490, 180 }, + [45] = { 45.4, 65.9, 490, 180 }, + [46] = { 58.2, 65.9, 490, 180 }, + [47] = { 73, 65.5, 490, 180 }, + [48] = { 29.7, 64.8, 490, 180 }, + [49] = { 70.2, 64.1, 490, 180 }, + [50] = { 74.4, 63.9, 490, 180 }, + [51] = { 71.7, 63.4, 490, 180 }, + [52] = { 25.7, 63.3, 490, 180 }, + [53] = { 30.8, 63.3, 490, 180 }, + [54] = { 79.9, 62, 490, 180 }, + [55] = { 51.3, 61.6, 490, 180 }, + [56] = { 75.3, 61.5, 490, 180 }, + [57] = { 21.9, 61.4, 490, 180 }, + [58] = { 47, 61, 490, 180 }, + [59] = { 56.2, 60.6, 490, 180 }, + [60] = { 81.6, 60.6, 490, 180 }, + [61] = { 59.5, 60.2, 490, 180 }, + [62] = { 68.4, 59.8, 490, 180 }, + [63] = { 60.3, 59.7, 490, 180 }, + [64] = { 26.1, 59.5, 490, 180 }, + [65] = { 23, 59.2, 490, 180 }, + [66] = { 23.7, 58.9, 490, 180 }, + [67] = { 74.8, 58.8, 490, 180 }, + [68] = { 79.4, 57.9, 490, 180 }, + [69] = { 76.7, 57.7, 490, 180 }, + [70] = { 74.4, 57.1, 490, 180 }, + [71] = { 35.8, 54.6, 490, 180 }, + [72] = { 64.2, 53.9, 490, 180 }, + [73] = { 25.8, 53.8, 490, 180 }, + [74] = { 73.8, 53.4, 490, 180 }, + [75] = { 42.9, 52.8, 490, 180 }, + [76] = { 72.8, 51.9, 490, 180 }, + [77] = { 29, 51.7, 490, 180 }, + [78] = { 68, 51.4, 490, 180 }, + [79] = { 26.8, 50.5, 490, 180 }, + [80] = { 20.6, 50, 490, 180 }, + [81] = { 40.6, 50, 490, 180 }, + [82] = { 58.1, 49.9, 490, 180 }, + [83] = { 80.5, 49.8, 490, 180 }, + [84] = { 59.8, 49.4, 490, 180 }, + [85] = { 66.7, 47, 490, 180 }, + [86] = { 72.9, 46.8, 490, 180 }, + [87] = { 27.7, 46.4, 490, 180 }, + [88] = { 43, 45.5, 490, 180 }, + [89] = { 33.8, 44.3, 490, 180 }, + [90] = { 76.6, 43.8, 490, 180 }, + [91] = { 80.6, 43.1, 490, 180 }, + [92] = { 71.1, 42.9, 490, 180 }, + [93] = { 24, 42.8, 490, 180 }, + [94] = { 38.1, 41.9, 490, 180 }, + [95] = { 62.1, 40.5, 490, 180 }, + [96] = { 67.7, 40.4, 490, 180 }, + [97] = { 23.1, 40.2, 490, 180 }, + [98] = { 75.9, 40.2, 490, 180 }, + [99] = { 78.2, 40.1, 490, 180 }, + [100] = { 25.6, 39.8, 490, 180 }, + [101] = { 81.5, 39, 490, 180 }, + [102] = { 19.7, 38.9, 490, 180 }, + [103] = { 53.7, 38.8, 490, 180 }, + [104] = { 45.4, 38.7, 490, 180 }, + [105] = { 75.1, 37.6, 490, 180 }, + [106] = { 72.3, 35.5, 490, 180 }, + [107] = { 69.6, 35, 490, 180 }, + [108] = { 51.8, 35, 490, 180 }, + [109] = { 42.5, 34, 490, 180 }, + [110] = { 72.1, 33.2, 490, 180 }, + [111] = { 34.7, 33.2, 490, 180 }, + [112] = { 33, 29.6, 490, 180 }, + [113] = { 74.8, 29.5, 490, 180 }, + [114] = { 26.4, 29.2, 490, 180 }, + [115] = { 78.9, 28.9, 490, 180 }, + [116] = { 75.7, 28.8, 490, 180 }, + [117] = { 69, 28.8, 490, 180 }, + [118] = { 77, 28.4, 490, 180 }, + [119] = { 62.6, 27, 490, 180 }, + [120] = { 39.7, 26.9, 490, 180 }, + [121] = { 68.3, 25.4, 490, 180 }, + [122] = { 63.4, 23.1, 490, 180 }, + [123] = { 72, 23.1, 490, 180 }, + [124] = { 43.9, 21.4, 490, 180 }, + [125] = { 72.2, 21.2, 490, 180 }, + [126] = { 30.1, 21.2, 490, 180 }, + [127] = { 66.2, 21.1, 490, 180 }, + [128] = { 37.8, 20.6, 490, 180 }, + [129] = { 59.2, 20.2, 490, 180 }, + [130] = { 46.2, 19.6, 490, 180 }, + [131] = { 69.8, 18.8, 490, 180 }, + [132] = { 56.1, 18.6, 490, 180 }, + [133] = { 31.3, 18.5, 490, 180 }, + [134] = { 54.1, 18.2, 490, 180 }, + [135] = { 43.8, 16.8, 490, 180 }, + [136] = { 62.6, 16.6, 490, 180 }, + [137] = { 50, 15.6, 490, 180 }, + [138] = { 60.9, 15.1, 490, 180 }, + [139] = { 46.8, 15.1, 490, 180 }, + [140] = { 39.4, 14.5, 490, 180 }, + [141] = { 51.5, 13.5, 490, 180 }, + [142] = { 47.3, 12.9, 490, 180 }, + [143] = { 56.5, 12.3, 490, 180 }, + [144] = { 58.3, 10.8, 490, 180 }, + [145] = { 57.3, 10.1, 490, 180 }, + [146] = { 58.2, 8.8, 490, 180 }, + [147] = { 55.7, 7.9, 490, 180 }, + [148] = { 80.8, 65.6, 1377, 180 }, + [149] = { 82.1, 43, 1377, 180 }, + [150] = { 78.4, 41.6, 1377, 180 }, + }, + }, + [164781] = { + ["coords"] = { + [1] = { 32, 35.2, 440, 180 }, + [2] = { 32.9, 34.5, 440, 180 }, + [3] = { 31.7, 33, 440, 180 }, + [4] = { 32.3, 28.7, 440, 180 }, + [5] = { 32.3, 25.1, 440, 180 }, + [6] = { 32.8, 22.9, 440, 180 }, + [7] = { 31.4, 17.5, 440, 180 }, + [8] = { 45.8, 92.6, 490, 180 }, + [9] = { 50, 92.4, 490, 180 }, + [10] = { 44.2, 88.8, 490, 180 }, + [11] = { 51.9, 87.4, 490, 180 }, + [12] = { 42.8, 86.2, 490, 180 }, + [13] = { 62, 85.3, 490, 180 }, + [14] = { 57.4, 82.6, 490, 180 }, + [15] = { 38.2, 81.8, 490, 180 }, + [16] = { 31.1, 81.3, 490, 180 }, + [17] = { 69.4, 80, 490, 180 }, + [18] = { 40.7, 79.9, 490, 180 }, + [19] = { 65.2, 79.8, 490, 180 }, + [20] = { 29.8, 79.1, 490, 180 }, + [21] = { 58.6, 78.4, 490, 180 }, + [22] = { 60.4, 77.5, 490, 180 }, + [23] = { 70, 77.2, 490, 180 }, + [24] = { 29, 76.9, 490, 180 }, + [25] = { 33.9, 76.9, 490, 180 }, + [26] = { 56.9, 76.1, 490, 180 }, + [27] = { 63.1, 75.3, 490, 180 }, + [28] = { 40.5, 75.3, 490, 180 }, + [29] = { 43.9, 74.7, 490, 180 }, + [30] = { 71.7, 73.7, 490, 180 }, + [31] = { 56.3, 73.6, 490, 180 }, + [32] = { 32.7, 73.5, 490, 180 }, + [33] = { 66.7, 73.2, 490, 180 }, + [34] = { 75, 70.5, 490, 180 }, + [35] = { 30.3, 70.5, 490, 180 }, + [36] = { 62.3, 70.3, 490, 180 }, + [37] = { 27.5, 70.2, 490, 180 }, + [38] = { 69.5, 69.5, 490, 180 }, + [39] = { 36.1, 69, 490, 180 }, + [40] = { 60.9, 68.5, 490, 180 }, + [41] = { 62.4, 68.4, 490, 180 }, + [42] = { 25.1, 67, 490, 180 }, + [43] = { 37.8, 66.5, 490, 180 }, + [44] = { 42.8, 66, 490, 180 }, + [45] = { 45.4, 65.9, 490, 180 }, + [46] = { 58.2, 65.9, 490, 180 }, + [47] = { 73, 65.5, 490, 180 }, + [48] = { 29.7, 64.8, 490, 180 }, + [49] = { 70.2, 64.1, 490, 180 }, + [50] = { 74.4, 63.9, 490, 180 }, + [51] = { 71.7, 63.4, 490, 180 }, + [52] = { 25.7, 63.3, 490, 180 }, + [53] = { 30.8, 63.3, 490, 180 }, + [54] = { 79.9, 62, 490, 180 }, + [55] = { 51.3, 61.6, 490, 180 }, + [56] = { 75.3, 61.5, 490, 180 }, + [57] = { 21.9, 61.4, 490, 180 }, + [58] = { 47, 61, 490, 180 }, + [59] = { 56.2, 60.6, 490, 180 }, + [60] = { 81.6, 60.6, 490, 180 }, + [61] = { 59.5, 60.2, 490, 180 }, + [62] = { 68.4, 59.8, 490, 180 }, + [63] = { 60.3, 59.7, 490, 180 }, + [64] = { 26.1, 59.5, 490, 180 }, + [65] = { 23, 59.2, 490, 180 }, + [66] = { 23.7, 58.9, 490, 180 }, + [67] = { 74.8, 58.8, 490, 180 }, + [68] = { 79.4, 57.9, 490, 180 }, + [69] = { 76.7, 57.7, 490, 180 }, + [70] = { 74.4, 57.1, 490, 180 }, + [71] = { 35.8, 54.6, 490, 180 }, + [72] = { 64.2, 53.9, 490, 180 }, + [73] = { 25.8, 53.8, 490, 180 }, + [74] = { 73.8, 53.4, 490, 180 }, + [75] = { 42.9, 52.8, 490, 180 }, + [76] = { 72.8, 51.9, 490, 180 }, + [77] = { 29, 51.7, 490, 180 }, + [78] = { 68, 51.4, 490, 180 }, + [79] = { 26.8, 50.5, 490, 180 }, + [80] = { 20.6, 50, 490, 180 }, + [81] = { 40.6, 50, 490, 180 }, + [82] = { 58.1, 49.9, 490, 180 }, + [83] = { 80.5, 49.8, 490, 180 }, + [84] = { 59.8, 49.4, 490, 180 }, + [85] = { 66.7, 47, 490, 180 }, + [86] = { 72.9, 46.8, 490, 180 }, + [87] = { 27.7, 46.4, 490, 180 }, + [88] = { 43, 45.5, 490, 180 }, + [89] = { 33.8, 44.3, 490, 180 }, + [90] = { 76.6, 43.8, 490, 180 }, + [91] = { 80.6, 43.1, 490, 180 }, + [92] = { 71.1, 42.9, 490, 180 }, + [93] = { 24, 42.8, 490, 180 }, + [94] = { 38.1, 41.9, 490, 180 }, + [95] = { 62.1, 40.5, 490, 180 }, + [96] = { 67.7, 40.4, 490, 180 }, + [97] = { 23.1, 40.2, 490, 180 }, + [98] = { 75.9, 40.2, 490, 180 }, + [99] = { 78.2, 40.1, 490, 180 }, + [100] = { 25.6, 39.8, 490, 180 }, + [101] = { 81.5, 39, 490, 180 }, + [102] = { 19.7, 38.9, 490, 180 }, + [103] = { 53.7, 38.8, 490, 180 }, + [104] = { 45.4, 38.7, 490, 180 }, + [105] = { 75.1, 37.6, 490, 180 }, + [106] = { 72.3, 35.5, 490, 180 }, + [107] = { 69.6, 35, 490, 180 }, + [108] = { 51.8, 35, 490, 180 }, + [109] = { 42.5, 34, 490, 180 }, + [110] = { 72.1, 33.2, 490, 180 }, + [111] = { 34.7, 33.2, 490, 180 }, + [112] = { 33, 29.6, 490, 180 }, + [113] = { 74.8, 29.5, 490, 180 }, + [114] = { 26.4, 29.2, 490, 180 }, + [115] = { 78.9, 28.9, 490, 180 }, + [116] = { 75.7, 28.8, 490, 180 }, + [117] = { 69, 28.8, 490, 180 }, + [118] = { 77, 28.4, 490, 180 }, + [119] = { 62.6, 27, 490, 180 }, + [120] = { 39.7, 26.9, 490, 180 }, + [121] = { 68.3, 25.4, 490, 180 }, + [122] = { 63.4, 23.1, 490, 180 }, + [123] = { 72, 23.1, 490, 180 }, + [124] = { 43.9, 21.4, 490, 180 }, + [125] = { 72.2, 21.2, 490, 180 }, + [126] = { 30.1, 21.2, 490, 180 }, + [127] = { 66.2, 21.1, 490, 180 }, + [128] = { 37.8, 20.6, 490, 180 }, + [129] = { 59.2, 20.2, 490, 180 }, + [130] = { 46.2, 19.6, 490, 180 }, + [131] = { 69.8, 18.8, 490, 180 }, + [132] = { 56.1, 18.6, 490, 180 }, + [133] = { 31.3, 18.5, 490, 180 }, + [134] = { 54.1, 18.2, 490, 180 }, + [135] = { 43.8, 16.8, 490, 180 }, + [136] = { 62.6, 16.6, 490, 180 }, + [137] = { 50, 15.6, 490, 180 }, + [138] = { 60.9, 15.1, 490, 180 }, + [139] = { 46.8, 15.1, 490, 180 }, + [140] = { 39.4, 14.5, 490, 180 }, + [141] = { 51.5, 13.5, 490, 180 }, + [142] = { 47.3, 12.9, 490, 180 }, + [143] = { 56.5, 12.3, 490, 180 }, + [144] = { 58.3, 10.8, 490, 180 }, + [145] = { 57.3, 10.1, 490, 180 }, + [146] = { 58.2, 8.8, 490, 180 }, + [147] = { 55.7, 7.9, 490, 180 }, + [148] = { 80.8, 65.6, 1377, 180 }, + [149] = { 82.1, 43, 1377, 180 }, + [150] = { 78.4, 41.6, 1377, 180 }, + }, + }, + [164798] = { + ["coords"] = { + [1] = { 44.5, 10.2, 357, 10 }, + [2] = { 44.6, 10.2, 357, 10 }, + [3] = { 44.5, 10.1, 357, 10 }, + }, + }, + [164799] = { + ["coords"] = { + [1] = { 54, 28.8, 440, 180 }, + }, + }, + [164818] = { + ["coords"] = {}, + }, + [164819] = { + ["coords"] = {}, + }, + [164820] = { + ["coords"] = {}, + }, + [164821] = { + ["coords"] = {}, + }, + [164822] = { + ["coords"] = {}, + }, + [164823] = { + ["coords"] = {}, + }, + [164824] = { + ["coords"] = {}, + }, + [164825] = { + ["coords"] = {}, + }, + [164826] = { + ["coords"] = { + [1] = { 53.8, 29.1, 440, 0 }, + }, + }, + [164827] = { + ["coords"] = { + [1] = { 53.8, 29.1, 440, 0 }, + }, + }, + [164838] = { + ["coords"] = { + [1] = { 42.8, 4.3, 490, 25 }, + [2] = { 42.6, 4.2, 490, 25 }, + [3] = { 42, 2.4, 490, 900 }, + }, + }, + [164839] = { + ["coords"] = {}, + ["fac"] = "A", + }, + [164840] = { + ["coords"] = { + [1] = { 73.9, 33.1, 45, 7200 }, + }, + ["fac"] = "H", + }, + [164867] = { + ["coords"] = { + [1] = { 3.7, 47.4, 3, 900 }, + [2] = { 82.9, 38.7, 51, 900 }, + }, + ["fac"] = "H", + }, + [164868] = { + ["coords"] = { + [1] = { 3.9, 46.7, 3, 10 }, + [2] = { 83.1, 37.9, 51, 10 }, + }, + ["fac"] = "H", + }, + [164869] = { + ["coords"] = {}, + }, + [164870] = { + ["coords"] = { + [1] = { 44.6, 28.9, 17, 0 }, + [2] = { 44.7, 28.8, 17, 0 }, + [3] = { 44.5, 28.8, 17, 0 }, + [4] = { 44.5, 28.7, 17, 0 }, + [5] = { 44.4, 27.6, 17, 0 }, + [6] = { 44.3, 27.6, 17, 0 }, + [7] = { 44.4, 27.5, 17, 0 }, + [8] = { 44.5, 27.5, 17, 0 }, + [9] = { 44.4, 27.4, 17, 0 }, + [10] = { 49.4, 82.7, 2597, 180 }, + }, + }, + [164871] = { + ["coords"] = {}, + }, + [164872] = { + ["coords"] = {}, + ["fac"] = "H", + }, + [164873] = { + ["coords"] = {}, + ["fac"] = "A", + }, + [164874] = { + ["coords"] = {}, + ["fac"] = "H", + }, + [164875] = { + ["coords"] = {}, + }, + [164876] = { + ["coords"] = {}, + ["fac"] = "H", + }, + [164877] = { + ["coords"] = {}, + ["fac"] = "A", + }, + [164879] = { + ["coords"] = {}, + ["fac"] = "A", + }, + [164880] = { + ["coords"] = {}, + ["fac"] = "A", + }, + [164881] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [164882] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [164883] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [164884] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [164885] = { + ["coords"] = { + [1] = { 40.7, 78.3, 361, 3595 }, + }, + }, + [164886] = { + ["coords"] = { + [1] = { 52.9, 87.8, 361, 3595 }, + }, + }, + [164887] = { + ["coords"] = { + [1] = { 50, 80, 361, 3595 }, + }, + }, + [164888] = { + ["coords"] = { + [1] = { 40.1, 85.2, 361, 3595 }, + }, + }, + [164890] = { + ["coords"] = { + [1] = { 38.3, 46, 11, 7200 }, + }, + }, + [164891] = { + ["coords"] = { + [1] = { 47.3, 75.6, 11, 7200 }, + }, + }, + [164908] = { + ["coords"] = { + [1] = { 66.3, 44, 1519, 900 }, + }, + }, + [164909] = { + ["coords"] = { + [1] = { 45.4, 65, 357, 10 }, + }, + ["fac"] = "A", + }, + [164910] = { + ["coords"] = { + [1] = { 50.3, 50, 490, 0 }, + }, + ["fac"] = "AH", + }, + [164911] = { + ["coords"] = {}, + }, + [164927] = { + ["coords"] = { + [1] = { 42, 2.4, 490, 0 }, + }, + }, + [164953] = { + ["coords"] = { + [1] = { 73.3, 56.3, 357, 10 }, + }, + ["fac"] = "A", + }, + [164954] = { + ["coords"] = { + [1] = { 72.1, 63.7, 357, 10 }, + }, + ["fac"] = "A", + }, + [164955] = { + ["coords"] = { + [1] = { 56.5, 12.5, 490, 10 }, + }, + }, + [164956] = { + ["coords"] = { + [1] = { 23.9, 59.2, 490, 10 }, + }, + }, + [164957] = { + ["coords"] = { + [1] = { 77.2, 50, 490, 10 }, + }, + }, + [164958] = { + ["coords"] = { + [1] = { 41.5, 80.5, 490, 180 }, + [2] = { 35.9, 78.7, 490, 180 }, + [3] = { 63.3, 75.2, 490, 180 }, + [4] = { 68.7, 74.9, 490, 180 }, + [5] = { 41.7, 73.8, 490, 180 }, + [6] = { 44.6, 73.8, 490, 180 }, + [7] = { 29.7, 71.7, 490, 180 }, + [8] = { 53.3, 70.4, 490, 180 }, + [9] = { 47.3, 69.4, 490, 180 }, + [10] = { 41.8, 69.4, 490, 180 }, + [11] = { 34, 68.2, 490, 180 }, + [12] = { 69.5, 67.9, 490, 180 }, + [13] = { 66.8, 67.9, 490, 180 }, + [14] = { 56.8, 67.2, 490, 180 }, + [15] = { 27.8, 67.1, 490, 180 }, + [16] = { 32.1, 66.9, 490, 180 }, + [17] = { 42.9, 66, 490, 180 }, + [18] = { 37.5, 65.2, 490, 180 }, + [19] = { 73.1, 63.3, 490, 180 }, + [20] = { 74.3, 63, 490, 180 }, + [21] = { 32.9, 61, 490, 180 }, + [22] = { 28.8, 59.2, 490, 180 }, + [23] = { 43.2, 58.5, 490, 180 }, + [24] = { 71.8, 57.4, 490, 180 }, + [25] = { 25.9, 55.6, 490, 180 }, + [26] = { 75.3, 54.6, 490, 180 }, + [27] = { 70.5, 54.6, 490, 180 }, + [28] = { 24.1, 53.8, 490, 180 }, + [29] = { 31.2, 52.7, 490, 180 }, + [30] = { 41.3, 50.3, 490, 180 }, + [31] = { 74.1, 49.8, 490, 180 }, + [32] = { 24.8, 49.5, 490, 180 }, + [33] = { 72.9, 47.2, 490, 180 }, + [34] = { 27.8, 46, 490, 180 }, + [35] = { 33.6, 45.2, 490, 180 }, + [36] = { 73.9, 44.3, 490, 180 }, + [37] = { 33.5, 42.7, 490, 180 }, + [38] = { 44.6, 42.4, 490, 180 }, + [39] = { 29.3, 42.4, 490, 180 }, + [40] = { 59, 41.6, 490, 180 }, + [41] = { 64, 41.5, 490, 180 }, + [42] = { 37.7, 39.9, 490, 180 }, + [43] = { 47.5, 39.6, 490, 180 }, + [44] = { 71.8, 39.4, 490, 180 }, + [45] = { 33.7, 39.1, 490, 180 }, + [46] = { 26.5, 37.3, 490, 180 }, + [47] = { 58, 36.1, 490, 180 }, + [48] = { 41.5, 35.1, 490, 180 }, + [49] = { 63.9, 34.3, 490, 180 }, + [50] = { 73.5, 34.2, 490, 180 }, + [51] = { 49.2, 33.6, 490, 180 }, + [52] = { 66.4, 32.9, 490, 180 }, + [53] = { 29.9, 31.6, 490, 180 }, + [54] = { 51, 31.5, 490, 180 }, + [55] = { 56.4, 31.4, 490, 180 }, + [56] = { 34.5, 30.7, 490, 180 }, + [57] = { 69.9, 28, 490, 180 }, + [58] = { 37.9, 27.8, 490, 180 }, + [59] = { 64.4, 26.8, 490, 180 }, + [60] = { 45.4, 26.2, 490, 180 }, + [61] = { 37.1, 25.1, 490, 180 }, + [62] = { 61.9, 23.7, 490, 180 }, + [63] = { 68.8, 23.4, 490, 180 }, + [64] = { 33.8, 23.3, 490, 180 }, + [65] = { 38.3, 23.1, 490, 180 }, + [66] = { 64.7, 20.5, 490, 180 }, + [67] = { 44, 20.3, 490, 180 }, + [68] = { 38.3, 19.3, 490, 180 }, + [69] = { 59.8, 18.1, 490, 180 }, + [70] = { 63.5, 18.1, 490, 180 }, + [71] = { 48.3, 17.9, 490, 180 }, + [72] = { 56.2, 16.7, 490, 180 }, + [73] = { 51.7, 15.4, 490, 180 }, + [74] = { 53.4, 14.9, 490, 180 }, + [75] = { 48, 14.2, 490, 180 }, + }, + ["fac"] = "AH", + }, + [165549] = { + ["coords"] = { + [1] = { 63, 38, 17, 900 }, + }, + }, + [165554] = { + ["coords"] = {}, + }, + [165557] = { + ["coords"] = { + [1] = { 46.1, 14.3, 14, 900 }, + }, + }, + [165558] = { + ["coords"] = { + [1] = { 61.6, 61.6, 85, 900 }, + }, + }, + [165559] = { + ["coords"] = { + [1] = { 43.1, 10, 490, 0 }, + [2] = { 43, 10, 490, 0 }, + [3] = { 43.1, 9.9, 490, 0 }, + }, + }, + [165578] = { + ["coords"] = {}, + }, + [165587] = { + ["coords"] = { + [1] = { 75, 67.5, 28, 180 }, + }, + }, + [165618] = { + ["coords"] = { + [1] = { 83.8, 32.7, 85, 900 }, + }, + }, + [165619] = { + ["coords"] = { + [1] = { 83.8, 32.7, 85, 900 }, + }, + }, + [165620] = { + ["coords"] = { + [1] = { 83.8, 32.6, 85, 900 }, + }, + }, + [165621] = { + ["coords"] = { + [1] = { 83.7, 32.5, 85, 900 }, + }, + }, + [165622] = { + ["coords"] = {}, + }, + [165623] = { + ["coords"] = {}, + }, + [165624] = { + ["coords"] = {}, + }, + [165625] = { + ["coords"] = {}, + }, + [165626] = { + ["coords"] = {}, + }, + [165627] = { + ["coords"] = {}, + }, + [165628] = { + ["coords"] = {}, + }, + [165629] = { + ["coords"] = {}, + }, + [165630] = { + ["coords"] = {}, + }, + [165631] = { + ["coords"] = {}, + }, + [165632] = { + ["coords"] = {}, + }, + [165633] = { + ["coords"] = {}, + }, + [165637] = { + ["coords"] = { + [1] = { 74.2, 32.3, 45, 7200 }, + }, + }, + [165658] = { + ["coords"] = { + [1] = { 4.8, 94.1, 3, 300 }, + [2] = { 31.3, 70.9, 46, 300 }, + [3] = { 29.7, 70.5, 46, 300 }, + [4] = { 25.5, 69.9, 46, 300 }, + [5] = { 87, 69.4, 46, 300 }, + [6] = { 55.7, 67.6, 46, 300 }, + [7] = { 34.8, 66.7, 46, 300 }, + [8] = { 37.4, 64.2, 46, 300 }, + [9] = { 27, 64.2, 46, 300 }, + [10] = { 72, 64.1, 46, 300 }, + [11] = { 69.6, 63.3, 46, 300 }, + [12] = { 76.3, 63.2, 46, 300 }, + [13] = { 22, 63, 46, 300 }, + [14] = { 48.8, 62.6, 46, 300 }, + [15] = { 62.1, 62.1, 46, 300 }, + [16] = { 91.5, 61.3, 46, 300 }, + [17] = { 85.9, 61.2, 46, 300 }, + [18] = { 42.8, 60.1, 46, 300 }, + [19] = { 54.3, 60.1, 46, 300 }, + [20] = { 47.2, 59.4, 46, 300 }, + [21] = { 56.7, 59.3, 46, 300 }, + [22] = { 30.3, 58.6, 46, 300 }, + [23] = { 36.4, 58.2, 46, 300 }, + [24] = { 16.9, 58.1, 46, 300 }, + [25] = { 65, 57.9, 46, 300 }, + [26] = { 40.2, 56.4, 46, 300 }, + [27] = { 75, 56, 46, 300 }, + [28] = { 62.2, 54.9, 46, 300 }, + [29] = { 26.5, 54.8, 46, 300 }, + [30] = { 34.6, 54, 46, 300 }, + [31] = { 45.4, 53.4, 46, 300 }, + [32] = { 52.1, 53.2, 46, 300 }, + [33] = { 92.9, 52, 46, 300 }, + [34] = { 16.3, 50.6, 46, 300 }, + [35] = { 84.8, 48.8, 46, 300 }, + [36] = { 80.9, 48.5, 46, 600 }, + [37] = { 76.7, 47.4, 46, 600 }, + [38] = { 81.6, 46.7, 46, 300 }, + [39] = { 25.3, 46.2, 46, 300 }, + [40] = { 83.7, 46.1, 46, 600 }, + [41] = { 81.5, 45.7, 46, 600 }, + [42] = { 79.7, 45.7, 46, 600 }, + [43] = { 58.8, 45.3, 46, 300 }, + [44] = { 80.9, 44.8, 46, 600 }, + [45] = { 41.8, 44.8, 46, 300 }, + [46] = { 80.9, 44.1, 46, 600 }, + [47] = { 79.3, 44.1, 46, 600 }, + [48] = { 76.3, 44.1, 46, 600 }, + [49] = { 77.5, 44, 46, 600 }, + [50] = { 64.6, 44, 46, 300 }, + [51] = { 78.8, 43.9, 46, 600 }, + [52] = { 92.5, 43.8, 46, 300 }, + [53] = { 49, 43.7, 46, 300 }, + [54] = { 80.2, 42.9, 46, 600 }, + [55] = { 20.8, 42.7, 46, 300 }, + [56] = { 82.8, 42.4, 46, 600 }, + [57] = { 77.6, 42.2, 46, 300 }, + [58] = { 83.6, 41.6, 46, 300 }, + [59] = { 38, 41, 46, 300 }, + [60] = { 78.3, 41, 46, 600 }, + [61] = { 80.3, 40.7, 46, 600 }, + [62] = { 46.3, 40.3, 46, 300 }, + [63] = { 81.3, 40.1, 46, 300 }, + [64] = { 81.2, 40, 46, 600 }, + [65] = { 83.1, 39.3, 46, 600 }, + [66] = { 71.4, 39.3, 46, 300 }, + [67] = { 61, 38.6, 46, 300 }, + [68] = { 57.5, 37.9, 46, 300 }, + [69] = { 42.5, 37.4, 46, 300 }, + [70] = { 86, 37.1, 46, 300 }, + [71] = { 92.9, 36.9, 46, 300 }, + [72] = { 72.8, 36.5, 46, 300 }, + [73] = { 69.6, 36.2, 46, 300 }, + [74] = { 80.2, 35.4, 46, 300 }, + [75] = { 47.3, 33.5, 46, 300 }, + [76] = { 55.2, 33.3, 46, 300 }, + [77] = { 65.7, 32.8, 46, 300 }, + [78] = { 95.6, 31.8, 46, 300 }, + [79] = { 15, 30, 46, 300 }, + [80] = { 72.4, 29.7, 46, 300 }, + [81] = { 64.5, 29.2, 46, 300 }, + [82] = { 38.9, 28.2, 46, 300 }, + [83] = { 91.6, 27.7, 46, 300 }, + [84] = { 87.3, 26, 46, 300 }, + [85] = { 79.2, 25.3, 46, 300 }, + [86] = { 72.5, 24.3, 46, 300 }, + [87] = { 57.3, 24, 46, 300 }, + [88] = { 63.7, 24, 46, 300 }, + [89] = { 65.9, 21.4, 46, 300 }, + [90] = { 48.5, 99.6, 51, 300 }, + [91] = { 72.8, 94.2, 51, 300 }, + [92] = { 64.2, 82.4, 51, 300 }, + [93] = { 57.1, 81.6, 51, 300 }, + [94] = { 21.6, 79.6, 51, 300 }, + [95] = { 36.7, 78, 51, 300 }, + [96] = { 49.5, 75.9, 51, 300 }, + [97] = { 24.9, 75.9, 51, 300 }, + [98] = { 20.6, 74.5, 51, 300 }, + [99] = { 73.2, 73, 51, 300 }, + [100] = { 37.7, 71, 51, 300 }, + [101] = { 57.5, 68.4, 51, 300 }, + [102] = { 26.5, 66.2, 51, 300 }, + [103] = { 30.3, 65.8, 51, 300 }, + [104] = { 43.7, 65.6, 51, 300 }, + [105] = { 64, 63.3, 51, 300 }, + [106] = { 38.6, 63.2, 51, 300 }, + [107] = { 64.2, 59.8, 51, 300 }, + [108] = { 39.4, 56.2, 51, 300 }, + [109] = { 23.7, 53.3, 51, 300 }, + [110] = { 48.7, 51.7, 51, 300 }, + [111] = { 38.9, 51.5, 51, 300 }, + [112] = { 55, 51.2, 51, 300 }, + [113] = { 52, 49.5, 51, 300 }, + [114] = { 29.8, 49.3, 51, 300 }, + [115] = { 46.3, 47.8, 51, 300 }, + [116] = { 37.9, 45.9, 51, 300 }, + [117] = { 46.7, 44, 51, 300 }, + [118] = { 23.3, 43.7, 51, 300 }, + [119] = { 12.9, 42.9, 51, 300 }, + [120] = { 61.1, 42.8, 51, 300 }, + [121] = { 34.2, 42.2, 51, 300 }, + [122] = { 48.6, 41.9, 51, 300 }, + [123] = { 41.7, 41.6, 51, 300 }, + [124] = { 56.9, 41.2, 51, 300 }, + [125] = { 40.7, 39.2, 51, 300 }, + [126] = { 31.3, 39, 51, 300 }, + [127] = { 25.1, 38.1, 51, 300 }, + [128] = { 42.6, 37.5, 51, 300 }, + [129] = { 17.8, 37.3, 51, 300 }, + [130] = { 16.9, 36.8, 51, 300 }, + [131] = { 24, 36.6, 51, 300 }, + [132] = { 21.6, 36.5, 51, 300 }, + [133] = { 50.5, 36.1, 51, 300 }, + [134] = { 17.9, 34.4, 51, 300 }, + [135] = { 49.7, 33.6, 51, 300 }, + [136] = { 15.7, 32.4, 51, 300 }, + [137] = { 67.9, 32.3, 51, 300 }, + [138] = { 41.9, 31, 51, 300 }, + [139] = { 22.5, 31, 51, 300 }, + [140] = { 56, 30.6, 51, 300 }, + [141] = { 42.7, 28.7, 51, 300 }, + [142] = { 32.1, 27.1, 51, 300 }, + [143] = { 60.6, 25.8, 51, 300 }, + [144] = { 39.1, 25.1, 51, 300 }, + [145] = { 47.9, 24.7, 51, 300 }, + [146] = { 22.5, 24.4, 51, 300 }, + [147] = { 43.8, 21.6, 51, 300 }, + }, + }, + [165678] = { + ["coords"] = { + [1] = { 32, 49.6, 490, 180 }, + }, + }, + [165738] = { + ["coords"] = {}, + }, + [165739] = { + ["coords"] = {}, + }, + [165740] = { + ["coords"] = { + [1] = { 42.1, 68.5, 14, 900 }, + [2] = { 57.1, 32.8, 17, 900 }, + }, + }, + [165741] = { + ["coords"] = { + [1] = { 40.7, 68.1, 14, 900 }, + [2] = { 57, 31.7, 17, 900 }, + }, + }, + [165742] = { + ["coords"] = { + [1] = { 40.4, 67.9, 14, 900 }, + [2] = { 66.3, 32.5, 17, 900 }, + [3] = { 57, 31.4, 17, 900 }, + }, + }, + [165743] = { + ["coords"] = { + [1] = { 40.5, 68.2, 14, 900 }, + [2] = { 66.4, 32.7, 17, 900 }, + [3] = { 57, 31.5, 17, 900 }, + }, + }, + [165744] = { + ["coords"] = { + [1] = { 40.7, 67.8, 14, 900 }, + [2] = { 57.1, 31.5, 17, 900 }, + }, + }, + [165745] = { + ["coords"] = { + [1] = { 40.9, 67.8, 14, 900 }, + [2] = { 57.1, 31.7, 17, 900 }, + }, + }, + [165746] = { + ["coords"] = { + [1] = { 41.4, 68.6, 14, 900 }, + [2] = { 56.9, 32.3, 17, 900 }, + }, + }, + [165747] = { + ["coords"] = { + [1] = { 41.4, 68.2, 14, 900 }, + [2] = { 57.1, 32.2, 17, 900 }, + }, + }, + [165748] = { + ["coords"] = { + [1] = { 41.3, 68, 14, 900 }, + [2] = { 57.1, 32.1, 17, 900 }, + }, + }, + [165749] = { + ["coords"] = { + [1] = { 41, 68.2, 14, 900 }, + [2] = { 57, 31.9, 17, 900 }, + }, + }, + [165750] = { + ["coords"] = { + [1] = { 41.8, 68.6, 14, 900 }, + [2] = { 57, 32.5, 17, 900 }, + }, + }, + [165751] = { + ["coords"] = { + [1] = { 40.7, 68.5, 14, 900 }, + [2] = { 56.9, 31.7, 17, 900 }, + }, + }, + [165760] = { + ["coords"] = { + [1] = { 49.6, 30.4, 361, 180 }, + }, + }, + [166807] = { + ["coords"] = {}, + }, + [166863] = { + ["coords"] = { + [1] = { 68.7, 56.7, 490, 0 }, + }, + }, + [166872] = { + ["coords"] = {}, + }, + [167284] = { + ["coords"] = { + [1] = { 84.3, 27.4, 46, 7200 }, + }, + }, + [167285] = { + ["coords"] = { + [1] = { 88.7, 37.2, 46, 7200 }, + }, + }, + [167286] = { + ["coords"] = { + [1] = { 91.9, 53.7, 46, 7200 }, + }, + }, + [167287] = { + ["coords"] = { + [1] = { 76.8, 61.9, 46, 7200 }, + }, + }, + [167288] = { + ["coords"] = { + [1] = { 57.1, 61.6, 46, 7200 }, + }, + }, + [167289] = { + ["coords"] = { + [1] = { 31.1, 61.4, 46, 7200 }, + }, + }, + [167290] = { + ["coords"] = { + [1] = { 35.9, 48.7, 46, 7200 }, + }, + }, + [167291] = { + ["coords"] = { + [1] = { 21.4, 47.2, 46, 7200 }, + }, + }, + [169216] = { + ["coords"] = { + [1] = { 32, 28.8, 440, 0 }, + [2] = { 79.9, 49.9, 490, 0 }, + }, + }, + [169217] = { + ["coords"] = { + [1] = { 32, 28.8, 440, 900 }, + [2] = { 79.9, 49.9, 490, 900 }, + }, + }, + [169243] = { + ["coords"] = {}, + }, + [169264] = { + ["coords"] = { + [1] = { 64.7, 69.6, 12, 900 }, + [2] = { 65.9, 48.9, 15, 900 }, + }, + }, + [169265] = { + ["coords"] = { + [1] = { 65, 71, 12, 900 }, + [2] = { 66.1, 49.8, 15, 900 }, + }, + }, + [169266] = { + ["coords"] = { + [1] = { 64.9, 71, 12, 900 }, + [2] = { 66.1, 49.8, 15, 900 }, + }, + }, + [169267] = { + ["coords"] = { + [1] = { 65, 69.1, 12, 900 }, + [2] = { 66.1, 48.5, 15, 900 }, + }, + }, + [169268] = { + ["coords"] = { + [1] = { 65, 69.1, 12, 900 }, + [2] = { 66.1, 48.5, 15, 900 }, + }, + }, + [169269] = { + ["coords"] = { + [1] = { 64.3, 69.9, 12, 900 }, + [2] = { 65.7, 49.1, 15, 900 }, + }, + }, + [169270] = { + ["coords"] = { + [1] = { 64.3, 70, 12, 900 }, + [2] = { 65.7, 49.2, 15, 900 }, + }, + }, + [169271] = { + ["coords"] = { + [1] = { 65.6, 70.1, 12, 900 }, + [2] = { 66.5, 49.2, 15, 900 }, + }, + }, + [169272] = { + ["coords"] = { + [1] = { 65.6, 70, 12, 900 }, + [2] = { 66.5, 49.1, 15, 900 }, + }, + }, + [169273] = { + ["coords"] = { + [1] = { 64.6, 70.6, 12, 900 }, + [2] = { 65.9, 49.6, 15, 900 }, + }, + }, + [169274] = { + ["coords"] = { + [1] = { 65.4, 69.5, 12, 900 }, + [2] = { 66.4, 48.8, 15, 900 }, + }, + }, + [169275] = { + ["coords"] = { + [1] = { 65.3, 69.5, 12, 900 }, + [2] = { 66.3, 48.8, 15, 900 }, + }, + }, + [169276] = { + ["coords"] = { + [1] = { 65.3, 70.7, 12, 900 }, + [2] = { 66.3, 49.6, 15, 900 }, + }, + }, + [169277] = { + ["coords"] = { + [1] = { 65, 69.7, 12, 900 }, + [2] = { 66.1, 49, 15, 900 }, + }, + }, + [169278] = { + ["coords"] = { + [1] = { 65.1, 69.9, 12, 900 }, + [2] = { 66.2, 49.1, 15, 900 }, + }, + }, + [169279] = { + ["coords"] = { + [1] = { 64.8, 70.7, 12, 900 }, + [2] = { 66, 49.6, 15, 900 }, + }, + }, + [169280] = { + ["coords"] = { + [1] = { 65, 70.7, 12, 900 }, + [2] = { 66.1, 49.6, 15, 900 }, + }, + }, + [169281] = { + ["coords"] = { + [1] = { 65.3, 69.5, 12, 900 }, + [2] = { 66.3, 48.8, 15, 900 }, + }, + }, + [169282] = { + ["coords"] = { + [1] = { 64.9, 69.3, 12, 900 }, + [2] = { 66, 48.7, 15, 900 }, + }, + }, + [169283] = { + ["coords"] = { + [1] = { 64.5, 70.3, 12, 900 }, + [2] = { 65.8, 49.4, 15, 900 }, + }, + }, + [169284] = { + ["coords"] = { + [1] = { 65, 69.7, 12, 900 }, + [2] = { 66.1, 48.9, 15, 900 }, + }, + }, + [169285] = { + ["coords"] = { + [1] = { 64.9, 70.2, 12, 900 }, + [2] = { 66.1, 49.3, 15, 900 }, + }, + }, + [169286] = { + ["coords"] = {}, + }, + [169287] = { + ["coords"] = { + [1] = { 65.4, 70.6, 12, 900 }, + [2] = { 66.4, 49.5, 15, 900 }, + }, + }, + [169288] = { + ["coords"] = { + [1] = { 64.9, 69.7, 12, 900 }, + [2] = { 66, 48.9, 15, 900 }, + }, + }, + [169289] = { + ["coords"] = { + [1] = { 65.2, 70.2, 12, 900 }, + [2] = { 66.2, 49.3, 15, 900 }, + }, + }, + [169290] = { + ["coords"] = { + [1] = { 65.2, 70.7, 12, 900 }, + [2] = { 66.2, 49.6, 15, 900 }, + }, + }, + [169291] = { + ["coords"] = { + [1] = { 64.6, 69.6, 12, 900 }, + [2] = { 65.8, 48.9, 15, 900 }, + }, + }, + [169292] = { + ["coords"] = { + [1] = { 64.8, 69.5, 12, 900 }, + [2] = { 66, 48.8, 15, 900 }, + }, + }, + [169293] = { + ["coords"] = { + [1] = { 64.6, 69.7, 12, 900 }, + [2] = { 65.9, 49, 15, 900 }, + }, + }, + [169294] = { + ["coords"] = { + [1] = { 54.1, 40.8, 46, 10 }, + }, + }, + [169966] = { + ["coords"] = { + [1] = { 28.9, 75.5, 33, 900 }, + }, + }, + [169967] = { + ["coords"] = { + [1] = { 28.9, 75.3, 33, 900 }, + }, + }, + [169968] = { + ["coords"] = { + [1] = { 62.3, 37.6, 17, 900 }, + }, + }, + [169969] = { + ["coords"] = { + [1] = { 62.3, 37.5, 17, 900 }, + }, + }, + [169996] = { + ["coords"] = { + [1] = { 44.9, 71.4, 130, 7200 }, + [2] = { 63.5, 58.9, 130, 7200 }, + [3] = { 8.8, 17.9, 267, 7200 }, + }, + }, + [169997] = { + ["coords"] = { + [1] = { 44.9, 71.3, 130, 7200 }, + [2] = { 63.4, 58.9, 130, 7200 }, + [3] = { 8.7, 17.9, 267, 7200 }, + }, + }, + [169998] = { + ["coords"] = { + [1] = { 44.9, 71.3, 130, 7200 }, + [2] = { 63.4, 58.8, 130, 7200 }, + [3] = { 8.7, 17.8, 267, 7200 }, + }, + }, + [169999] = { + ["coords"] = { + [1] = { 44.9, 71.3, 130, 7200 }, + [2] = { 63.4, 58.7, 130, 7200 }, + [3] = { 8.7, 17.7, 267, 7200 }, + }, + }, + [170000] = { + ["coords"] = { + [1] = { 45, 71.3, 130, 7200 }, + [2] = { 63.4, 58.7, 130, 7200 }, + [3] = { 8.7, 17.6, 267, 7200 }, + }, + }, + [170001] = { + ["coords"] = { + [1] = { 76.1, 45.1, 10, 3600 }, + [2] = { 17, 33.6, 10, 3600 }, + [3] = { 44.6, 74.5, 130, 7200 }, + }, + }, + [170002] = { + ["coords"] = { + [1] = { 77.5, 52.1, 10, 25 }, + [2] = { 44.1, 74.1, 130, 7200 }, + [3] = { 45.7, 71.5, 130, 7200 }, + [4] = { 47.2, 71.3, 130, 7200 }, + }, + }, + [170033] = { + ["coords"] = {}, + }, + [170034] = { + ["coords"] = {}, + }, + [170035] = { + ["coords"] = { + [1] = { 63.6, 63.9, 130, 7200 }, + [2] = { 9, 24.5, 267, 7200 }, + }, + }, + [170036] = { + ["coords"] = { + [1] = { 63.6, 64, 130, 7200 }, + [2] = { 9, 24.6, 267, 7200 }, + }, + }, + [170037] = { + ["coords"] = { + [1] = { 63.6, 64, 130, 7200 }, + [2] = { 9, 24.7, 267, 7200 }, + }, + }, + [170038] = { + ["coords"] = { + [1] = { 63.6, 63.4, 130, 7200 }, + [2] = { 8.9, 23.9, 267, 7200 }, + }, + }, + [170039] = { + ["coords"] = { + [1] = { 63.6, 63.4, 130, 7200 }, + [2] = { 8.9, 23.8, 267, 7200 }, + }, + }, + [170040] = { + ["coords"] = { + [1] = { 63.5, 63.3, 130, 7200 }, + [2] = { 8.9, 23.7, 267, 7200 }, + }, + }, + [170041] = { + ["coords"] = { + [1] = { 63.3, 63.9, 130, 7200 }, + [2] = { 8.6, 24.6, 267, 7200 }, + }, + }, + [170042] = { + ["coords"] = { + [1] = { 63.3, 64, 130, 7200 }, + [2] = { 8.6, 24.7, 267, 7200 }, + }, + }, + [170043] = { + ["coords"] = { + [1] = { 63.3, 64.1, 130, 7200 }, + [2] = { 8.6, 24.8, 267, 7200 }, + }, + }, + [170044] = { + ["coords"] = { + [1] = { 63.2, 64.1, 130, 7200 }, + [2] = { 8.4, 24.7, 267, 7200 }, + }, + }, + [170045] = { + ["coords"] = { + [1] = { 63.2, 63.9, 130, 7200 }, + [2] = { 8.4, 24.4, 267, 7200 }, + }, + }, + [170046] = { + ["coords"] = { + [1] = { 63.4, 63.1, 130, 7200 }, + [2] = { 8.7, 23.4, 267, 7200 }, + }, + }, + [170047] = { + ["coords"] = {}, + }, + [170053] = { + ["coords"] = {}, + }, + [170054] = { + ["coords"] = {}, + }, + [170055] = { + ["coords"] = { + [1] = { 71.8, 47, 10, 3600 }, + [2] = { 61.1, 50.5, 85, 900 }, + }, + }, + [170056] = { + ["coords"] = { + [1] = { 71.7, 46.9, 10, 3600 }, + [2] = { 61.1, 50.5, 85, 900 }, + }, + }, + [170057] = { + ["coords"] = { + [1] = { 71.7, 46.8, 10, 3600 }, + [2] = { 61.2, 50.5, 85, 900 }, + }, + }, + [170058] = { + ["coords"] = { + [1] = { 71.8, 47.7, 10, 3600 }, + [2] = { 60.8, 50.4, 85, 900 }, + }, + }, + [170059] = { + ["coords"] = { + [1] = { 71.8, 47.9, 10, 3600 }, + [2] = { 60.8, 50.4, 85, 900 }, + }, + }, + [170060] = { + ["coords"] = { + [1] = { 71.8, 48, 10, 3600 }, + [2] = { 60.7, 50.4, 85, 900 }, + }, + }, + [170061] = { + ["coords"] = { + [1] = { 72.2, 46.9, 10, 3600 }, + [2] = { 61, 50.9, 85, 900 }, + }, + }, + [170062] = { + ["coords"] = { + [1] = { 72.2, 46.8, 10, 3600 }, + [2] = { 61, 50.9, 85, 900 }, + }, + }, + [170063] = { + ["coords"] = { + [1] = { 72.2, 46.7, 10, 3600 }, + [2] = { 61.1, 50.9, 85, 900 }, + }, + }, + [170064] = { + ["coords"] = { + [1] = { 72.4, 46.8, 10, 3600 }, + [2] = { 61, 51.1, 85, 900 }, + }, + }, + [170065] = { + ["coords"] = { + [1] = { 72.4, 47.1, 10, 3600 }, + [2] = { 60.9, 51, 85, 900 }, + }, + }, + [170066] = { + ["coords"] = { + [1] = { 72.1, 48.3, 10, 3600 }, + [2] = { 60.5, 50.5, 85, 900 }, + }, + }, + [170067] = { + ["coords"] = {}, + }, + [170073] = { + ["coords"] = { + [1] = { 8.3, 55.5, 11, 7200 }, + [2] = { 34.9, 83.8, 12, 900 }, + [3] = { 83.3, 66.6, 12, 900 }, + [4] = { 34.1, 57.4, 12, 900 }, + [5] = { 44.3, 53.4, 12, 900 }, + }, + }, + [170347] = { + ["coords"] = { + [1] = { 85.3, 69, 12, 900 }, + [2] = { 46.2, 62.7, 12, 900 }, + }, + }, + [170348] = { + ["coords"] = { + [1] = { 85.4, 69, 12, 900 }, + [2] = { 46.1, 62.7, 12, 900 }, + }, + }, + [170349] = { + ["coords"] = { + [1] = { 85.4, 69.1, 12, 900 }, + [2] = { 46.1, 62.6, 12, 900 }, + }, + }, + [170350] = { + ["coords"] = { + [1] = { 85.4, 69.2, 12, 900 }, + [2] = { 46.1, 62.5, 12, 900 }, + }, + }, + [170351] = { + ["coords"] = { + [1] = { 85.4, 69.3, 12, 900 }, + [2] = { 46.1, 62.4, 12, 900 }, + }, + }, + [170353] = { + ["coords"] = {}, + }, + [170354] = { + ["coords"] = { + [1] = { 51.2, 43.6, 1497, 900 }, + }, + }, + [170355] = { + ["coords"] = { + [1] = { 65.8, 53.2, 1497, 900 }, + }, + }, + [170439] = { + ["coords"] = {}, + }, + [170440] = { + ["coords"] = {}, + }, + [170441] = { + ["coords"] = {}, + }, + [170442] = { + ["coords"] = {}, + }, + [170443] = { + ["coords"] = {}, + }, + [170444] = { + ["coords"] = {}, + }, + [170445] = { + ["coords"] = {}, + }, + [170446] = { + ["coords"] = {}, + }, + [170447] = { + ["coords"] = {}, + }, + [170448] = { + ["coords"] = {}, + }, + [170449] = { + ["coords"] = {}, + }, + [170450] = { + ["coords"] = {}, + }, + [170451] = { + ["coords"] = {}, + }, + [170452] = { + ["coords"] = {}, + }, + [170453] = { + ["coords"] = {}, + }, + [170454] = { + ["coords"] = {}, + }, + [170455] = { + ["coords"] = {}, + }, + [170456] = { + ["coords"] = {}, + }, + [170457] = { + ["coords"] = {}, + }, + [170458] = { + ["coords"] = {}, + }, + [170459] = { + ["coords"] = {}, + }, + [170460] = { + ["coords"] = {}, + }, + [170461] = { + ["coords"] = {}, + }, + [170462] = { + ["coords"] = {}, + }, + [170463] = { + ["coords"] = {}, + }, + [170464] = { + ["coords"] = {}, + }, + [170465] = { + ["coords"] = {}, + }, + [170466] = { + ["coords"] = {}, + }, + [170467] = { + ["coords"] = {}, + }, + [170468] = { + ["coords"] = {}, + }, + [170469] = { + ["coords"] = {}, + }, + [170470] = { + ["coords"] = {}, + }, + [170471] = { + ["coords"] = {}, + }, + [170472] = { + ["coords"] = {}, + }, + [170473] = { + ["coords"] = {}, + }, + [170474] = { + ["coords"] = {}, + }, + [170475] = { + ["coords"] = {}, + }, + [170476] = { + ["coords"] = {}, + }, + [170477] = { + ["coords"] = {}, + }, + [170478] = { + ["coords"] = {}, + }, + [170479] = { + ["coords"] = {}, + }, + [170480] = { + ["coords"] = {}, + }, + [170481] = { + ["coords"] = {}, + }, + [170482] = { + ["coords"] = {}, + }, + [170483] = { + ["coords"] = {}, + }, + [170484] = { + ["coords"] = {}, + }, + [170485] = { + ["coords"] = {}, + }, + [170486] = { + ["coords"] = {}, + }, + [170487] = { + ["coords"] = {}, + }, + [170488] = { + ["coords"] = {}, + }, + [170489] = { + ["coords"] = {}, + }, + [170490] = { + ["coords"] = {}, + }, + [170491] = { + ["coords"] = {}, + }, + [170492] = { + ["coords"] = {}, + }, + [170493] = { + ["coords"] = {}, + }, + [170494] = { + ["coords"] = {}, + }, + [170495] = { + ["coords"] = {}, + }, + [170496] = { + ["coords"] = {}, + }, + [170497] = { + ["coords"] = {}, + }, + [170498] = { + ["coords"] = {}, + }, + [170499] = { + ["coords"] = {}, + }, + [170500] = { + ["coords"] = {}, + }, + [170501] = { + ["coords"] = {}, + }, + [170502] = { + ["coords"] = {}, + }, + [170503] = { + ["coords"] = {}, + }, + [170504] = { + ["coords"] = {}, + }, + [170505] = { + ["coords"] = {}, + }, + [170506] = { + ["coords"] = {}, + }, + [170507] = { + ["coords"] = {}, + }, + [170508] = { + ["coords"] = {}, + }, + [170509] = { + ["coords"] = {}, + }, + [170510] = { + ["coords"] = {}, + }, + [170511] = { + ["coords"] = {}, + }, + [170512] = { + ["coords"] = {}, + }, + [170513] = { + ["coords"] = {}, + }, + [170514] = { + ["coords"] = {}, + }, + [170515] = { + ["coords"] = {}, + }, + [170516] = { + ["coords"] = {}, + }, + [170517] = { + ["coords"] = {}, + }, + [170518] = { + ["coords"] = {}, + }, + [170519] = { + ["coords"] = {}, + }, + [170520] = { + ["coords"] = {}, + }, + [170521] = { + ["coords"] = {}, + }, + [170522] = { + ["coords"] = {}, + }, + [170523] = { + ["coords"] = {}, + }, + [170524] = { + ["coords"] = {}, + }, + [170525] = { + ["coords"] = {}, + }, + [170526] = { + ["coords"] = {}, + }, + [170527] = { + ["coords"] = {}, + }, + [170528] = { + ["coords"] = {}, + }, + [170529] = { + ["coords"] = {}, + }, + [170530] = { + ["coords"] = {}, + }, + [170531] = { + ["coords"] = {}, + }, + [170532] = { + ["coords"] = {}, + }, + [170533] = { + ["coords"] = {}, + }, + [170534] = { + ["coords"] = {}, + }, + [170535] = { + ["coords"] = {}, + }, + [170536] = { + ["coords"] = {}, + }, + [170537] = { + ["coords"] = {}, + }, + [170538] = { + ["coords"] = {}, + }, + [170539] = { + ["coords"] = {}, + }, + [170540] = { + ["coords"] = {}, + }, + [170541] = { + ["coords"] = {}, + }, + [170542] = { + ["coords"] = {}, + }, + [170543] = { + ["coords"] = {}, + }, + [170544] = { + ["coords"] = {}, + }, + [170545] = { + ["coords"] = {}, + }, + [170546] = { + ["coords"] = {}, + }, + [170547] = { + ["coords"] = {}, + }, + [170548] = { + ["coords"] = {}, + }, + [170549] = { + ["coords"] = {}, + }, + [170550] = { + ["coords"] = {}, + }, + [170551] = { + ["coords"] = {}, + }, + [170552] = { + ["coords"] = {}, + }, + [170553] = { + ["coords"] = {}, + }, + [170554] = { + ["coords"] = {}, + }, + [170555] = { + ["coords"] = {}, + }, + [170556] = { + ["coords"] = {}, + }, + [170557] = { + ["coords"] = {}, + }, + [170558] = { + ["coords"] = {}, + }, + [170559] = { + ["coords"] = {}, + }, + [170560] = { + ["coords"] = {}, + }, + [170561] = { + ["coords"] = {}, + }, + [170562] = { + ["coords"] = {}, + }, + [170563] = { + ["coords"] = {}, + }, + [170564] = { + ["coords"] = {}, + }, + [170565] = { + ["coords"] = {}, + }, + [170566] = { + ["coords"] = {}, + }, + [170567] = { + ["coords"] = {}, + }, + [170568] = { + ["coords"] = {}, + }, + [170569] = { + ["coords"] = {}, + }, + [170570] = { + ["coords"] = {}, + }, + [170571] = { + ["coords"] = {}, + }, + [170572] = { + ["coords"] = {}, + }, + [170573] = { + ["coords"] = {}, + }, + [170574] = { + ["coords"] = {}, + }, + [170575] = { + ["coords"] = {}, + }, + [170576] = { + ["coords"] = {}, + }, + [170577] = { + ["coords"] = {}, + }, + [170578] = { + ["coords"] = {}, + }, + [170579] = { + ["coords"] = {}, + }, + [170580] = { + ["coords"] = {}, + }, + [170581] = { + ["coords"] = {}, + }, + [170582] = { + ["coords"] = {}, + }, + [170583] = { + ["coords"] = {}, + }, + [170584] = { + ["coords"] = {}, + }, + [170592] = { + ["coords"] = {}, + }, + [170607] = { + ["coords"] = {}, + }, + [171524] = { + ["coords"] = { + [1] = { 32.9, 78.3, 1537, 900 }, + }, + }, + [171525] = { + ["coords"] = { + [1] = { 61.3, 77.7, 1537, 900 }, + }, + }, + [171526] = { + ["coords"] = { + [1] = { 61.2, 78, 1537, 900 }, + }, + }, + [171527] = { + ["coords"] = { + [1] = { 61.4, 77.7, 1537, 900 }, + }, + }, + [171528] = { + ["coords"] = { + [1] = { 63.3, 26.5, 1537, 900 }, + }, + }, + [171529] = { + ["coords"] = { + [1] = { 63.1, 26.5, 1537, 900 }, + }, + }, + [171530] = { + ["coords"] = { + [1] = { 63.1, 26.3, 1537, 900 }, + }, + }, + [171531] = { + ["coords"] = { + [1] = { 63.3, 26.3, 1537, 900 }, + }, + }, + [171532] = { + ["coords"] = { + [1] = { 54.3, 34.6, 1537, 900 }, + }, + }, + [171533] = { + ["coords"] = { + [1] = { 54.3, 34.9, 1537, 900 }, + }, + }, + [171534] = { + ["coords"] = { + [1] = { 54.2, 34.6, 1537, 900 }, + }, + }, + [171535] = { + ["coords"] = { + [1] = { 49.9, 79.5, 1537, 900 }, + }, + }, + [171536] = { + ["coords"] = { + [1] = { 51, 85.8, 1537, 900 }, + }, + }, + [171537] = { + ["coords"] = { + [1] = { 43.1, 83.8, 1537, 900 }, + }, + }, + [171538] = { + ["coords"] = { + [1] = { 43.3, 79.7, 1537, 900 }, + }, + }, + [171539] = { + ["coords"] = { + [1] = { 46.4, 79.7, 1537, 900 }, + }, + }, + [171540] = { + ["coords"] = { + [1] = { 46.7, 86.4, 1537, 900 }, + }, + }, + [171541] = { + ["coords"] = { + [1] = { 25.7, 35.6, 1537, 900 }, + }, + }, + [171542] = { + ["coords"] = { + [1] = { 21.7, 32.9, 1537, 900 }, + }, + }, + [171543] = { + ["coords"] = { + [1] = { 21.1, 37, 1537, 900 }, + }, + }, + [171544] = { + ["coords"] = { + [1] = { 19.8, 45.3, 1537, 900 }, + }, + }, + [171545] = { + ["coords"] = { + [1] = { 25.1, 45.3, 1537, 900 }, + }, + }, + [171546] = { + ["coords"] = { + [1] = { 20.4, 40.3, 1537, 900 }, + }, + }, + [171547] = { + ["coords"] = { + [1] = { 25.3, 40.8, 1537, 900 }, + }, + }, + [171548] = { + ["coords"] = { + [1] = { 64.4, 10.9, 1537, 900 }, + }, + }, + [171549] = { + ["coords"] = { + [1] = { 63, 9.3, 1537, 900 }, + }, + }, + [171550] = { + ["coords"] = { + [1] = { 73.7, 27.6, 1537, 900 }, + }, + }, + [171551] = { + ["coords"] = { + [1] = { 74.4, 30, 1537, 900 }, + }, + }, + [171552] = { + ["coords"] = { + [1] = { 62.7, 76.1, 1537, 900 }, + }, + }, + [171553] = { + ["coords"] = { + [1] = { 65, 64.9, 1537, 900 }, + }, + }, + [171554] = { + ["coords"] = { + [1] = { 71.5, 68.7, 1537, 900 }, + }, + }, + [171555] = { + ["coords"] = { + [1] = { 70.9, 74.2, 1537, 900 }, + }, + }, + [171556] = { + ["coords"] = { + [1] = { 71.3, 72.1, 1537, 900 }, + }, + ["fac"] = "A", + }, + [171557] = { + ["coords"] = { + [1] = { 56.3, 76.7, 1537, 900 }, + }, + }, + [171558] = { + ["coords"] = { + [1] = { 56.3, 88.4, 1537, 900 }, + }, + }, + [171559] = { + ["coords"] = { + [1] = { 62.3, 86.1, 1537, 900 }, + }, + }, + [171560] = { + ["coords"] = { + [1] = { 66.5, 16.1, 1537, 900 }, + }, + }, + [171561] = { + ["coords"] = { + [1] = { 65.7, 18, 1537, 900 }, + }, + }, + [171562] = { + ["coords"] = { + [1] = { 65.5, 20.4, 1537, 900 }, + }, + }, + [171563] = { + ["coords"] = { + [1] = { 66.2, 22.7, 1537, 900 }, + }, + }, + [171564] = { + ["coords"] = { + [1] = { 67.6, 24.1, 1537, 900 }, + }, + }, + [171565] = { + ["coords"] = { + [1] = { 69.2, 24.4, 1537, 900 }, + }, + }, + [171566] = { + ["coords"] = { + [1] = { 70.6, 23.5, 1537, 900 }, + }, + }, + [171567] = { + ["coords"] = {}, + }, + [171568] = { + ["coords"] = {}, + }, + [171569] = { + ["coords"] = { + [1] = { 19.5, 51.1, 1537, 900 }, + }, + }, + [171570] = { + ["coords"] = { + [1] = { 19.2, 51.1, 1537, 900 }, + }, + }, + [171571] = { + ["coords"] = { + [1] = { 19.4, 50.4, 1537, 900 }, + }, + }, + [171572] = { + ["coords"] = { + [1] = { 19.2, 50.5, 1537, 900 }, + }, + }, + [171573] = { + ["coords"] = { + [1] = { 19.1, 52.3, 1537, 900 }, + }, + }, + [171574] = { + ["coords"] = { + [1] = { 18.9, 52.7, 1537, 900 }, + }, + }, + [171575] = { + ["coords"] = { + [1] = { 19.1, 53.1, 1537, 900 }, + }, + }, + [171576] = { + ["coords"] = { + [1] = { 19.3, 52.7, 1537, 900 }, + }, + }, + [171577] = { + ["coords"] = { + [1] = { 19.3, 52.8, 1537, 900 }, + }, + }, + [171578] = { + ["coords"] = { + [1] = { 19.1, 53.2, 1537, 900 }, + }, + }, + [171579] = { + ["coords"] = { + [1] = { 19.3, 53.5, 1537, 900 }, + }, + }, + [171580] = { + ["coords"] = { + [1] = { 39, 74.6, 1537, 900 }, + }, + }, + [171581] = { + ["coords"] = { + [1] = { 38.9, 74.1, 1537, 900 }, + }, + }, + [171582] = { + ["coords"] = { + [1] = { 39.2, 74.2, 1537, 900 }, + }, + }, + [171583] = { + ["coords"] = { + [1] = { 38.8, 74.6, 1537, 900 }, + }, + }, + [171584] = { + ["coords"] = { + [1] = { 38, 73.2, 1537, 900 }, + }, + }, + [171585] = { + ["coords"] = { + [1] = { 37.8, 73.6, 1537, 900 }, + }, + }, + [171586] = { + ["coords"] = { + [1] = { 38.3, 73.1, 1537, 900 }, + }, + }, + [171587] = { + ["coords"] = { + [1] = { 38.2, 74.3, 1537, 900 }, + }, + }, + [171588] = { + ["coords"] = { + [1] = { 37.8, 74, 1537, 900 }, + }, + }, + [171589] = { + ["coords"] = { + [1] = { 56.7, 18.2, 1537, 900 }, + }, + }, + [171590] = { + ["coords"] = { + [1] = { 56.4, 17.8, 1537, 900 }, + }, + }, + [171591] = { + ["coords"] = { + [1] = { 56.7, 17.7, 1537, 900 }, + }, + }, + [171592] = { + ["coords"] = { + [1] = { 56.4, 18.3, 1537, 900 }, + }, + }, + [171593] = { + ["coords"] = { + [1] = { 19.7, 19.7, 1537, 900 }, + }, + }, + [171594] = { + ["coords"] = { + [1] = { 19.4, 19.7, 1537, 900 }, + }, + }, + [171595] = { + ["coords"] = { + [1] = { 19.5, 19.4, 1537, 900 }, + }, + }, + [171596] = { + ["coords"] = { + [1] = { 19.6, 20, 1537, 900 }, + }, + }, + [171597] = { + ["coords"] = { + [1] = { 18.4, 21.4, 1537, 900 }, + }, + }, + [171598] = { + ["coords"] = { + [1] = { 18.6, 21.8, 1537, 900 }, + }, + }, + [171599] = { + ["coords"] = { + [1] = { 18.4, 21, 1537, 900 }, + }, + }, + [171600] = { + ["coords"] = { + [1] = { 19.1, 21.4, 1537, 900 }, + }, + }, + [171601] = { + ["coords"] = { + [1] = { 18.9, 21.8, 1537, 900 }, + }, + }, + [171602] = { + ["coords"] = { + [1] = { 31.1, 5.6, 1537, 900 }, + }, + }, + [171603] = { + ["coords"] = { + [1] = { 30.9, 5, 1537, 900 }, + }, + }, + [171604] = { + ["coords"] = { + [1] = { 59.8, 44.6, 1537, 900 }, + }, + }, + [171605] = { + ["coords"] = { + [1] = { 60, 44.3, 1537, 900 }, + }, + }, + [171606] = { + ["coords"] = { + [1] = { 60.2, 44.6, 1537, 900 }, + }, + }, + [171607] = { + ["coords"] = { + [1] = { 60, 44.9, 1537, 900 }, + }, + }, + [171608] = { + ["coords"] = { + [1] = { 35.1, 84.5, 1537, 900 }, + }, + }, + [171609] = { + ["coords"] = { + [1] = { 35.4, 85.2, 1537, 900 }, + }, + }, + [171610] = { + ["coords"] = { + [1] = { 35, 84.9, 1537, 900 }, + }, + }, + [171611] = { + ["coords"] = { + [1] = { 35.5, 84.6, 1537, 900 }, + }, + }, + [171612] = { + ["coords"] = { + [1] = { 36.4, 86, 1537, 900 }, + }, + }, + [171613] = { + ["coords"] = { + [1] = { 36.7, 85.6, 1537, 900 }, + }, + }, + [171614] = { + ["coords"] = { + [1] = { 36.2, 86.1, 1537, 900 }, + }, + }, + [171615] = { + ["coords"] = { + [1] = { 36.3, 84.9, 1537, 900 }, + }, + }, + [171616] = { + ["coords"] = { + [1] = { 36.7, 85.2, 1537, 900 }, + }, + }, + [171617] = { + ["coords"] = { + [1] = { 37.1, 83.8, 1537, 900 }, + }, + }, + [171618] = { + ["coords"] = { + [1] = { 36.9, 83.7, 1537, 900 }, + }, + }, + [171619] = { + ["coords"] = {}, + }, + [171620] = { + ["coords"] = {}, + }, + [171621] = { + ["coords"] = {}, + }, + [171622] = { + ["coords"] = {}, + }, + [171623] = { + ["coords"] = { + [1] = { 51.8, 7.9, 1537, 900 }, + }, + }, + [171624] = { + ["coords"] = { + [1] = { 50.5, 12.4, 1537, 900 }, + }, + }, + [171625] = { + ["coords"] = { + [1] = { 53.2, 11.2, 1537, 900 }, + }, + }, + [171626] = { + ["coords"] = { + [1] = { 57.7, 12, 1537, 900 }, + }, + }, + [171627] = { + ["coords"] = { + [1] = { 55.3, 10.4, 1537, 900 }, + }, + }, + [171628] = { + ["coords"] = { + [1] = { 43.3, 10.2, 1537, 900 }, + }, + }, + [171629] = { + ["coords"] = { + [1] = { 50.8, 7.2, 1537, 900 }, + }, + }, + [171630] = { + ["coords"] = { + [1] = { 50.6, 7.5, 1537, 900 }, + }, + }, + [171631] = { + ["coords"] = { + [1] = { 50.4, 7.2, 1537, 900 }, + }, + }, + [171632] = { + ["coords"] = { + [1] = { 50.6, 6.8, 1537, 900 }, + }, + }, + [171633] = { + ["coords"] = { + [1] = { 37.8, 62.1, 1537, 900 }, + }, + }, + [171634] = { + ["coords"] = { + [1] = { 36.3, 63.6, 1537, 900 }, + }, + }, + [171635] = { + ["coords"] = { + [1] = { 33.7, 58.8, 1537, 900 }, + }, + }, + [171636] = { + ["coords"] = { + [1] = { 35, 57, 1537, 900 }, + }, + }, + [171638] = { + ["coords"] = { + [1] = { 68.2, 87.5, 1537, 900 }, + }, + }, + [171639] = { + ["coords"] = { + [1] = { 69.3, 86.1, 1537, 900 }, + }, + }, + [171640] = { + ["coords"] = { + [1] = { 71.7, 90.9, 1537, 900 }, + }, + }, + [171641] = { + ["coords"] = { + [1] = { 72.8, 86.7, 1537, 900 }, + }, + }, + [171642] = { + ["coords"] = { + [1] = { 70.8, 92, 1537, 900 }, + }, + }, + [171643] = { + ["coords"] = { + [1] = { 67.9, 92.7, 1537, 900 }, + }, + }, + [171644] = { + ["coords"] = { + [1] = { 72.7, 95.2, 1537, 900 }, + }, + }, + [171645] = { + ["coords"] = { + [1] = { 73.5, 94.1, 1537, 900 }, + }, + }, + [171646] = { + ["coords"] = { + [1] = { 37.8, 31.5, 1537, 900 }, + }, + }, + [171647] = { + ["coords"] = { + [1] = { 37.4, 31.5, 1537, 900 }, + }, + }, + [171648] = { + ["coords"] = { + [1] = { 26, 49, 1537, 900 }, + }, + }, + [171649] = { + ["coords"] = { + [1] = { 26.4, 48.9, 1537, 900 }, + }, + }, + [171650] = { + ["coords"] = { + [1] = { 52.4, 85.8, 1537, 900 }, + }, + }, + [171651] = { + ["coords"] = { + [1] = { 52.4, 86.5, 1537, 900 }, + }, + }, + [171652] = { + ["coords"] = { + [1] = { 49.5, 88.8, 1537, 900 }, + }, + }, + [171653] = { + ["coords"] = { + [1] = { 49.9, 88.7, 1537, 900 }, + }, + }, + [171654] = { + ["coords"] = { + [1] = { 49.9, 88.7, 1537, 900 }, + }, + }, + [171655] = { + ["coords"] = { + [1] = { 50.4, 89.1, 1537, 900 }, + }, + }, + [171656] = { + ["coords"] = { + [1] = { 50.4, 88.7, 1537, 900 }, + }, + }, + [171657] = { + ["coords"] = { + [1] = { 50, 89.2, 1537, 900 }, + }, + }, + [171658] = { + ["coords"] = { + [1] = { 60.3, 36, 1, 900 }, + }, + }, + [171659] = { + ["coords"] = { + [1] = { 60.2, 35.9, 1, 900 }, + [2] = { 57.1, 92.1, 1537, 900 }, + }, + }, + [171660] = { + ["coords"] = { + [1] = { 27.1, 39.1, 1537, 900 }, + }, + }, + [171661] = { + ["coords"] = { + [1] = { 26.7, 38.9, 1537, 900 }, + }, + }, + [171664] = { + ["coords"] = { + [1] = { 71.5, 75.8, 1537, 900 }, + }, + }, + [171665] = { + ["coords"] = { + [1] = { 71.3, 76.2, 1537, 900 }, + }, + }, + [171666] = { + ["coords"] = { + [1] = { 72.3, 75.3, 1537, 900 }, + }, + }, + [171667] = { + ["coords"] = { + [1] = { 72.6, 75.1, 1537, 900 }, + }, + }, + [171668] = { + ["coords"] = { + [1] = { 72.6, 74.7, 1537, 900 }, + }, + }, + [171669] = { + ["coords"] = { + [1] = { 72.3, 74.8, 1537, 900 }, + }, + }, + [171670] = { + ["coords"] = { + [1] = { 72, 77.2, 1537, 900 }, + }, + }, + [171671] = { + ["coords"] = { + [1] = { 72, 76.7, 1537, 900 }, + }, + }, + [171672] = { + ["coords"] = { + [1] = { 71.7, 77.2, 1537, 900 }, + }, + }, + [171673] = { + ["coords"] = { + [1] = { 71.7, 76.8, 1537, 900 }, + }, + }, + [171674] = { + ["coords"] = {}, + }, + [171675] = { + ["coords"] = {}, + }, + [171676] = { + ["coords"] = {}, + }, + [171677] = { + ["coords"] = {}, + }, + [171678] = { + ["coords"] = { + [1] = { 63.6, 35.9, 1537, 900 }, + }, + }, + [171679] = { + ["coords"] = { + [1] = { 63.9, 35.7, 1537, 900 }, + }, + }, + [171680] = { + ["coords"] = { + [1] = { 20.2, 27.2, 1537, 900 }, + }, + }, + [171681] = { + ["coords"] = { + [1] = { 20.6, 27.5, 1537, 900 }, + }, + }, + [171682] = { + ["coords"] = { + [1] = { 20.7, 27.5, 1537, 900 }, + }, + }, + [171683] = { + ["coords"] = { + [1] = { 20.9, 28.2, 1537, 900 }, + }, + }, + [171684] = { + ["coords"] = { + [1] = { 21.1, 27.7, 1537, 900 }, + }, + }, + [171685] = { + ["coords"] = { + [1] = { 20.6, 28, 1537, 900 }, + }, + }, + [171686] = { + ["coords"] = { + [1] = { 51.8, 15.3, 1537, 900 }, + }, + }, + [171687] = { + ["coords"] = { + [1] = { 51.5, 15.3, 1537, 900 }, + }, + }, + [171688] = { + ["coords"] = { + [1] = { 52.9, 15.5, 1537, 900 }, + }, + }, + [171689] = { + ["coords"] = { + [1] = { 52.5, 15.5, 1537, 900 }, + }, + }, + [171690] = { + ["coords"] = { + [1] = { 52.7, 15.9, 1537, 900 }, + }, + }, + [171691] = { + ["coords"] = { + [1] = { 52.7, 15.2, 1537, 900 }, + }, + }, + [171692] = { + ["coords"] = { + [1] = { 20.6, 48.8, 1537, 900 }, + }, + }, + [171693] = { + ["coords"] = { + [1] = { 21, 54.6, 1537, 900 }, + }, + }, + [171694] = { + ["coords"] = { + [1] = { 24.8, 49.4, 1537, 900 }, + }, + }, + [171695] = { + ["coords"] = { + [1] = { 25.6, 54.9, 1537, 900 }, + }, + }, + [171696] = { + ["coords"] = { + [1] = { 25.9, 70.5, 1537, 900 }, + }, + }, + [171697] = { + ["coords"] = { + [1] = { 32.2, 62.6, 1537, 900 }, + }, + }, + [171698] = { + ["coords"] = { + [1] = { 33.6, 65.1, 1537, 900 }, + }, + }, + [171699] = { + ["coords"] = { + [1] = { 33.2, 64.7, 1537, 900 }, + }, + ["fac"] = "A", + }, + [171700] = { + ["coords"] = { + [1] = { 21.5, 61, 1537, 900 }, + }, + }, + [171701] = { + ["coords"] = { + [1] = { 23, 65.8, 1537, 900 }, + }, + }, + [171702] = { + ["coords"] = { + [1] = { 30.6, 59.3, 1537, 900 }, + }, + }, + [171703] = { + ["coords"] = { + [1] = { 29.5, 54.7, 1537, 900 }, + }, + }, + [171704] = { + ["coords"] = { + [1] = { 30.5, 60.2, 1537, 900 }, + }, + }, + [171705] = { + ["coords"] = { + [1] = { 42.4, 33.8, 1537, 900 }, + }, + }, + [171706] = { + ["coords"] = { + [1] = { 58.7, 47.9, 1537, 900 }, + }, + }, + [171707] = { + ["coords"] = { + [1] = { 47.8, 59.4, 1537, 900 }, + }, + }, + [171708] = { + ["coords"] = { + [1] = { 49.9, 56.3, 1537, 900 }, + }, + }, + [171709] = { + ["coords"] = { + [1] = { 49.8, 56.1, 1537, 900 }, + }, + }, + [171710] = { + ["coords"] = { + [1] = { 50, 56.1, 1537, 900 }, + }, + }, + [171711] = { + ["coords"] = { + [1] = { 41.3, 40.3, 1537, 900 }, + }, + }, + [171712] = { + ["coords"] = { + [1] = { 41.3, 40, 1537, 900 }, + }, + }, + [171713] = { + ["coords"] = { + [1] = { 52.5, 41.7, 1537, 900 }, + }, + }, + [171714] = { + ["coords"] = { + [1] = { 52.4, 42.3, 1537, 900 }, + }, + }, + [171715] = { + ["coords"] = { + [1] = { 49.8, 43.6, 1537, 900 }, + }, + }, + [171716] = { + ["coords"] = { + [1] = { 51, 36.7, 1537, 900 }, + }, + }, + [171717] = { + ["coords"] = { + [1] = { 52.7, 45.2, 1537, 900 }, + }, + }, + [171718] = { + ["coords"] = {}, + }, + [171719] = { + ["coords"] = {}, + }, + [171720] = { + ["coords"] = {}, + }, + [171721] = { + ["coords"] = {}, + }, + [171722] = { + ["coords"] = { + [1] = { 36.7, 45.6, 1537, 900 }, + }, + }, + [171723] = { + ["coords"] = { + [1] = { 37.1, 45.6, 1537, 900 }, + }, + }, + [171724] = { + ["coords"] = { + [1] = { 49.8, 25.8, 1537, 900 }, + }, + }, + [171725] = { + ["coords"] = { + [1] = { 49.6, 26.3, 1537, 900 }, + }, + }, + [171726] = { + ["coords"] = { + [1] = { 50, 25.7, 1537, 900 }, + }, + }, + [171727] = { + ["coords"] = { + [1] = { 50.1, 26.8, 1537, 900 }, + }, + }, + [171728] = { + ["coords"] = { + [1] = { 49.7, 26.7, 1537, 900 }, + }, + }, + [171729] = { + ["coords"] = { + [1] = { 43.2, 29.3, 1537, 900 }, + }, + }, + [171730] = { + ["coords"] = { + [1] = { 59.6, 49.8, 1537, 900 }, + }, + }, + [171731] = { + ["coords"] = { + [1] = { 59.5, 50.2, 1537, 900 }, + }, + }, + [171732] = { + ["coords"] = { + [1] = { 60, 48.1, 1537, 900 }, + }, + }, + [171733] = { + ["coords"] = { + [1] = { 60.1, 48.6, 1537, 900 }, + }, + }, + [171734] = { + ["coords"] = { + [1] = { 60.4, 48.4, 1537, 900 }, + }, + }, + [171735] = { + ["coords"] = { + [1] = { 60.3, 48, 1537, 900 }, + }, + }, + [171736] = { + ["coords"] = { + [1] = { 59.9, 51, 1537, 900 }, + }, + }, + [171737] = { + ["coords"] = { + [1] = { 59.6, 51.2, 1537, 900 }, + }, + }, + [171738] = { + ["coords"] = { + [1] = { 59.7, 51.6, 1537, 900 }, + }, + }, + [171739] = { + ["coords"] = { + [1] = { 60.3, 48.8, 1537, 900 }, + }, + }, + [171740] = { + ["coords"] = { + [1] = { 60.4, 49.1, 1537, 900 }, + }, + }, + [171741] = { + ["coords"] = { + [1] = { 60.7, 49, 1537, 900 }, + }, + }, + [171742] = { + ["coords"] = { + [1] = { 60.4, 38.8, 1537, 900 }, + }, + }, + [171743] = { + ["coords"] = { + [1] = { 60.7, 38.6, 1537, 900 }, + }, + }, + [171744] = { + ["coords"] = { + [1] = { 38.1, 5.4, 1537, 900 }, + }, + }, + [171745] = { + ["coords"] = { + [1] = { 38.5, 5.1, 1537, 900 }, + }, + }, + [171746] = { + ["coords"] = { + [1] = { 58, 55.7, 1537, 900 }, + }, + }, + [171747] = { + ["coords"] = { + [1] = { 57.8, 55.2, 1537, 900 }, + }, + }, + [171748] = { + ["coords"] = { + [1] = { 67.6, 52.3, 1537, 900 }, + }, + }, + [171749] = { + ["coords"] = { + [1] = { 72, 52.2, 1537, 900 }, + }, + }, + [171750] = { + ["coords"] = { + [1] = { 72.4, 51.3, 1537, 900 }, + }, + }, + [171751] = { + ["coords"] = { + [1] = { 72.6, 49.1, 1537, 900 }, + }, + }, + [171752] = { + ["coords"] = { + [1] = { 72.3, 49.1, 1537, 900 }, + }, + ["fac"] = "A", + }, + [171753] = { + ["coords"] = { + [1] = { 74.2, 54.8, 1537, 900 }, + }, + }, + [171754] = { + ["coords"] = { + [1] = { 74.4, 52.8, 1537, 900 }, + }, + }, + [171755] = { + ["coords"] = { + [1] = { 67.7, 42, 1537, 900 }, + }, + }, + [171756] = { + ["coords"] = { + [1] = { 66.7, 43.1, 1537, 900 }, + }, + }, + [171757] = { + ["coords"] = { + [1] = { 37.1, 53.1, 1537, 900 }, + }, + }, + [171758] = { + ["coords"] = { + [1] = { 36, 54.5, 1537, 900 }, + }, + }, + [171759] = { + ["coords"] = { + [1] = { 40.1, 46, 1537, 900 }, + }, + }, + [171760] = { + ["coords"] = { + [1] = { 34.5, 47.6, 1537, 900 }, + }, + }, + [171761] = { + ["coords"] = { + [1] = { 32.9, 49.7, 1537, 900 }, + }, + }, + [171762] = { + ["coords"] = { + [1] = { 31.7, 47.6, 1537, 900 }, + }, + }, + [171763] = { + ["coords"] = { + [1] = { 33.4, 45.5, 1537, 900 }, + }, + }, + [171764] = { + ["coords"] = { + [1] = { 43.3, 59.5, 1537, 900 }, + }, + }, + [171765] = { + ["coords"] = { + [1] = { 38.9, 14.1, 1537, 900 }, + }, + }, + [171766] = { + ["coords"] = { + [1] = { 28.7, 20.4, 1537, 900 }, + }, + }, + [171767] = { + ["coords"] = { + [1] = { 20.3, 24, 1537, 900 }, + }, + }, + [171768] = { + ["coords"] = { + [1] = { 23.4, 26.2, 1537, 900 }, + }, + }, + [171769] = { + ["coords"] = { + [1] = { 28.9, 31.1, 1537, 900 }, + }, + }, + [171770] = { + ["coords"] = { + [1] = { 28.9, 26.9, 1537, 900 }, + }, + }, + [171771] = { + ["coords"] = { + [1] = { 37.1, 22.4, 1537, 900 }, + }, + }, + [171772] = { + ["coords"] = { + [1] = { 37.3, 22.9, 1537, 900 }, + }, + }, + [171773] = { + ["coords"] = { + [1] = { 36.8, 20.9, 1537, 900 }, + }, + }, + [171774] = { + ["coords"] = { + [1] = { 37, 21.5, 1537, 900 }, + }, + }, + [171775] = { + ["coords"] = { + [1] = { 37.2, 21.1, 1537, 900 }, + }, + }, + [171776] = { + ["coords"] = { + [1] = { 36.7, 21.4, 1537, 900 }, + }, + }, + [171938] = { + ["coords"] = { + [1] = { 43.8, 72.5, 14, 60 }, + [2] = { 45.3, 71.1, 14, 60 }, + [3] = { 44.2, 70.4, 14, 60 }, + [4] = { 40, 68.4, 14, 60 }, + [5] = { 39.9, 68.1, 14, 60 }, + [6] = { 44, 67.1, 14, 60 }, + [7] = { 44.1, 66.9, 14, 60 }, + [8] = { 42, 66.1, 14, 60 }, + [9] = { 42.1, 66, 14, 60 }, + [10] = { 47.3, 65.2, 14, 60 }, + [11] = { 40.2, 65.2, 14, 60 }, + [12] = { 44.2, 65.2, 14, 60 }, + [13] = { 43.8, 65.1, 14, 60 }, + [14] = { 44, 65.1, 14, 60 }, + [15] = { 40.1, 65, 14, 60 }, + [16] = { 44.7, 64.8, 14, 60 }, + [17] = { 45.7, 64.6, 14, 60 }, + [18] = { 45.7, 64.5, 14, 60 }, + [19] = { 40.8, 63.9, 14, 60 }, + [20] = { 42, 63.4, 14, 60 }, + [21] = { 41.9, 63.3, 14, 60 }, + [22] = { 45.7, 63.3, 14, 60 }, + [23] = { 42.1, 63.3, 14, 60 }, + [24] = { 39.6, 63, 14, 60 }, + [25] = { 46.1, 63, 14, 60 }, + [26] = { 43.6, 63, 14, 60 }, + [27] = { 46, 62.9, 14, 60 }, + [28] = { 39.7, 62.9, 14, 60 }, + [29] = { 47.2, 62.8, 14, 60 }, + [30] = { 43.8, 62.8, 14, 60 }, + [31] = { 43.5, 62.8, 14, 60 }, + [32] = { 44.8, 61.7, 14, 60 }, + [33] = { 44.9, 61.5, 14, 60 }, + [34] = { 46, 60.7, 14, 60 }, + [35] = { 46, 60.5, 14, 60 }, + [36] = { 46.8, 60.4, 14, 60 }, + [37] = { 40.5, 60.3, 14, 60 }, + [38] = { 46.8, 60.3, 14, 60 }, + [39] = { 46.9, 60.3, 14, 60 }, + [40] = { 44.8, 59.8, 14, 60 }, + [41] = { 44.9, 59.7, 14, 60 }, + [42] = { 42.6, 58.7, 14, 60 }, + [43] = { 41.5, 58.7, 14, 60 }, + [44] = { 42.5, 58.7, 14, 60 }, + [45] = { 41.6, 58.6, 14, 60 }, + [46] = { 45.5, 58.5, 14, 60 }, + [47] = { 45.4, 58.5, 14, 60 }, + [48] = { 44.6, 58.3, 14, 60 }, + [49] = { 44.6, 58.2, 14, 60 }, + [50] = { 42, 56.5, 14, 60 }, + [51] = { 66.1, 32.8, 17, 60 }, + [52] = { 66.1, 32.6, 17, 60 }, + }, + }, + [171939] = { + ["coords"] = { + [1] = { 45.9, 85.2, 361, 3595 }, + }, + }, + [171940] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [171941] = { + ["coords"] = {}, + }, + [171942] = { + ["coords"] = { + [1] = { 48.3, 75.7, 361, 3595 }, + }, + }, + [171943] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [172619] = { + ["coords"] = { + [1] = { 32, 28.8, 440, 180 }, + [2] = { 79.9, 49.9, 490, 180 }, + }, + }, + [172911] = { + ["coords"] = {}, + }, + [172941] = { + ["coords"] = { + [1] = { 58.2, 54.3, 1637, 900 }, + }, + }, + [172942] = { + ["coords"] = { + [1] = { 58.2, 50.8, 1637, 900 }, + }, + }, + [172943] = { + ["coords"] = {}, + }, + [172944] = { + ["coords"] = { + [1] = { 53.4, 34.3, 1637, 900 }, + }, + }, + [172945] = { + ["coords"] = { + [1] = { 56.8, 57.4, 1637, 900 }, + }, + }, + [172946] = { + ["coords"] = { + [1] = { 59, 47.8, 1637, 900 }, + }, + }, + [172947] = { + ["coords"] = { + [1] = { 54.1, 39.8, 1637, 900 }, + }, + }, + [172948] = { + ["coords"] = { + [1] = { 56.6, 44.8, 1637, 900 }, + }, + }, + [172949] = { + ["coords"] = { + [1] = { 55.1, 37.9, 1637, 900 }, + }, + }, + [172950] = { + ["coords"] = { + [1] = { 49.4, 34.2, 1637, 900 }, + }, + }, + [172951] = { + ["coords"] = { + [1] = { 52.5, 38.3, 1637, 900 }, + }, + }, + [172952] = { + ["coords"] = { + [1] = { 52.4, 56.4, 1637, 900 }, + }, + }, + [172953] = { + ["coords"] = { + [1] = { 53.1, 57.8, 1637, 900 }, + }, + }, + [172954] = { + ["coords"] = { + [1] = { 59.4, 50.6, 1637, 900 }, + }, + }, + [172955] = { + ["coords"] = { + [1] = { 59.9, 43, 1637, 900 }, + }, + }, + [172956] = { + ["coords"] = { + [1] = { 50.3, 39.9, 1637, 900 }, + }, + }, + [172957] = { + ["coords"] = { + [1] = { 46.5, 8.9, 14, 900 }, + [2] = { 53, 83.3, 1637, 900 }, + }, + }, + [172958] = { + ["coords"] = { + [1] = { 46.5, 8.9, 14, 900 }, + [2] = { 53, 83.3, 1637, 900 }, + }, + }, + [172959] = { + ["coords"] = { + [1] = { 46.5, 8.9, 14, 900 }, + [2] = { 53, 83.3, 1637, 900 }, + }, + }, + [172960] = { + ["coords"] = { + [1] = { 46.5, 8.7, 14, 900 }, + [2] = { 53, 82.7, 1637, 900 }, + }, + }, + [172961] = { + ["coords"] = { + [1] = { 46.5, 8.7, 14, 900 }, + [2] = { 53, 82.7, 1637, 900 }, + }, + }, + [172962] = { + ["coords"] = { + [1] = { 49.5, 58.8, 1637, 900 }, + }, + }, + [172963] = { + ["coords"] = { + [1] = { 49.5, 58.8, 1637, 900 }, + }, + }, + [172964] = { + ["coords"] = { + [1] = { 49.6, 58.8, 1637, 900 }, + }, + }, + [172965] = { + ["coords"] = { + [1] = { 50.7, 64.9, 1637, 900 }, + }, + }, + [172966] = { + ["coords"] = { + [1] = { 45.5, 65.1, 1637, 900 }, + }, + }, + [172967] = { + ["coords"] = { + [1] = { 48.3, 57.9, 1637, 900 }, + }, + }, + [172968] = { + ["coords"] = { + [1] = { 43.5, 61.9, 1637, 900 }, + }, + }, + [172969] = { + ["coords"] = { + [1] = { 40.5, 64, 1637, 900 }, + }, + }, + [172970] = { + ["coords"] = { + [1] = { 37.1, 75.4, 1637, 900 }, + }, + }, + [172971] = { + ["coords"] = { + [1] = { 37, 75.4, 1637, 900 }, + }, + }, + [172972] = { + ["coords"] = { + [1] = { 40.5, 64, 1637, 900 }, + }, + }, + [172973] = { + ["coords"] = { + [1] = { 40.5, 63.9, 1637, 900 }, + }, + }, + [172974] = { + ["coords"] = { + [1] = { 40.5, 63.9, 1637, 900 }, + }, + }, + [172975] = { + ["coords"] = { + [1] = { 38.7, 54.2, 1637, 900 }, + }, + }, + [172976] = { + ["coords"] = { + [1] = { 38.7, 54.2, 1637, 900 }, + }, + }, + [172977] = { + ["coords"] = { + [1] = { 38.7, 54.2, 1637, 900 }, + }, + }, + [172978] = { + ["coords"] = { + [1] = { 43.8, 38, 1637, 900 }, + }, + }, + [172979] = { + ["coords"] = { + [1] = { 43.8, 38, 1637, 900 }, + }, + }, + [172980] = { + ["coords"] = { + [1] = { 43.8, 38.1, 1637, 900 }, + }, + }, + [172981] = { + ["coords"] = { + [1] = { 43.8, 38, 1637, 900 }, + }, + }, + [172982] = { + ["coords"] = { + [1] = { 61, 42.1, 1637, 900 }, + }, + }, + [172983] = { + ["coords"] = { + [1] = { 60.9, 42, 1637, 900 }, + }, + }, + [172984] = { + ["coords"] = { + [1] = { 61, 42, 1637, 900 }, + }, + }, + [172985] = { + ["coords"] = { + [1] = { 61, 42, 1637, 900 }, + }, + }, + [172986] = { + ["coords"] = { + [1] = { 61, 42.1, 1637, 900 }, + }, + }, + [172987] = { + ["coords"] = { + [1] = { 57.3, 41.4, 1637, 900 }, + }, + }, + [172988] = { + ["coords"] = { + [1] = { 57.3, 41.5, 1637, 900 }, + }, + }, + [172989] = { + ["coords"] = { + [1] = { 57.4, 41.4, 1637, 900 }, + }, + }, + [172990] = { + ["coords"] = { + [1] = { 57.3, 41.4, 1637, 900 }, + }, + }, + [172991] = { + ["coords"] = { + [1] = { 57.3, 41.5, 1637, 900 }, + }, + }, + [172992] = { + ["coords"] = { + [1] = { 69.8, 38.1, 1637, 900 }, + }, + }, + [172993] = { + ["coords"] = { + [1] = { 38.6, 54.2, 1637, 900 }, + }, + }, + [172994] = { + ["coords"] = { + [1] = { 38.6, 54.2, 1637, 900 }, + }, + }, + [172995] = { + ["coords"] = { + [1] = { 38.6, 54.3, 1637, 900 }, + }, + }, + [172996] = { + ["coords"] = { + [1] = { 37.1, 75.3, 1637, 900 }, + }, + }, + [172997] = { + ["coords"] = { + [1] = { 37.1, 75.3, 1637, 900 }, + }, + }, + [172998] = { + ["coords"] = {}, + }, + [172999] = { + ["coords"] = {}, + }, + [173000] = { + ["coords"] = {}, + }, + [173001] = { + ["coords"] = {}, + }, + [173002] = { + ["coords"] = {}, + }, + [173003] = { + ["coords"] = {}, + }, + [173004] = { + ["coords"] = {}, + }, + [173005] = { + ["coords"] = {}, + }, + [173006] = { + ["coords"] = { + [1] = { 45.3, 58.2, 1637, 900 }, + }, + }, + [173007] = { + ["coords"] = { + [1] = { 37.3, 58.9, 1637, 900 }, + }, + }, + [173008] = { + ["coords"] = { + [1] = { 46.6, 9.9, 14, 900 }, + [2] = { 53.2, 87.2, 1637, 900 }, + }, + }, + [173009] = { + ["coords"] = { + [1] = { 46.3, 10.8, 14, 900 }, + [2] = { 52.2, 90.4, 1637, 900 }, + }, + }, + [173010] = { + ["coords"] = { + [1] = { 46.7, 10.7, 14, 900 }, + [2] = { 53.5, 90.1, 1637, 900 }, + }, + }, + [173011] = { + ["coords"] = { + [1] = { 46, 10.8, 14, 900 }, + [2] = { 50.9, 90.6, 1637, 900 }, + }, + }, + [173012] = { + ["coords"] = { + [1] = { 45.6, 10.5, 14, 900 }, + [2] = { 49.4, 89.3, 1637, 900 }, + }, + }, + [173013] = { + ["coords"] = { + [1] = { 45.3, 11.3, 14, 900 }, + [2] = { 48.4, 92.5, 1637, 900 }, + }, + }, + [173014] = { + ["coords"] = { + [1] = { 58.1, 52.3, 1637, 900 }, + }, + }, + [173015] = { + ["coords"] = { + [1] = { 58.3, 52.6, 1637, 900 }, + }, + }, + [173016] = { + ["coords"] = { + [1] = { 58.1, 54.6, 1637, 900 }, + }, + }, + [173017] = { + ["coords"] = { + [1] = { 59.3, 54.7, 1637, 900 }, + }, + }, + [173018] = { + ["coords"] = { + [1] = { 61.3, 49.1, 1637, 900 }, + }, + }, + [173019] = { + ["coords"] = { + [1] = { 60.8, 55.2, 1637, 900 }, + }, + }, + [173020] = { + ["coords"] = { + [1] = { 55.2, 41.5, 1637, 900 }, + }, + }, + [173021] = { + ["coords"] = { + [1] = { 57.1, 35.4, 1637, 900 }, + }, + }, + [173022] = { + ["coords"] = { + [1] = { 52.8, 37, 1637, 900 }, + }, + }, + [173023] = { + ["coords"] = { + [1] = { 58.4, 36.9, 1637, 900 }, + }, + }, + [173024] = { + ["coords"] = { + [1] = { 58.6, 37.2, 1637, 900 }, + }, + }, + [173025] = { + ["coords"] = { + [1] = { 38.1, 53.5, 1637, 900 }, + }, + }, + [173026] = { + ["coords"] = { + [1] = { 57.2, 54, 1637, 900 }, + }, + }, + [173027] = { + ["coords"] = { + [1] = { 57, 53.2, 1637, 900 }, + }, + }, + [173028] = { + ["coords"] = { + [1] = { 59, 52.1, 1637, 900 }, + }, + }, + [173029] = { + ["coords"] = { + [1] = { 58.1, 52.9, 1637, 900 }, + }, + }, + [173030] = { + ["coords"] = { + [1] = { 62.5, 51.6, 1637, 900 }, + }, + }, + [173031] = { + ["coords"] = { + [1] = { 62.4, 49, 1637, 900 }, + }, + }, + [173032] = { + ["coords"] = { + [1] = { 63.8, 51, 1637, 900 }, + }, + }, + [173033] = { + ["coords"] = { + [1] = { 63.7, 49.2, 1637, 900 }, + }, + }, + [173034] = { + ["coords"] = { + [1] = { 62.7, 43.7, 1637, 900 }, + }, + }, + [173035] = { + ["coords"] = { + [1] = { 63.3, 45.9, 1637, 900 }, + }, + }, + [173036] = { + ["coords"] = { + [1] = { 55.5, 46.3, 1637, 900 }, + }, + }, + [173037] = { + ["coords"] = { + [1] = { 56.4, 47.1, 1637, 900 }, + }, + }, + [173038] = { + ["coords"] = { + [1] = { 63.4, 37.8, 1637, 900 }, + }, + }, + [173039] = { + ["coords"] = { + [1] = { 64.9, 37.8, 1637, 900 }, + }, + }, + [173040] = { + ["coords"] = { + [1] = { 65.1, 39.8, 1637, 900 }, + }, + }, + [173041] = { + ["coords"] = { + [1] = { 65.8, 41.4, 1637, 900 }, + }, + }, + [173042] = { + ["coords"] = { + [1] = { 66.9, 40.4, 1637, 900 }, + }, + }, + [173043] = { + ["coords"] = { + [1] = { 61.7, 44.8, 1637, 900 }, + }, + }, + [173044] = { + ["coords"] = { + [1] = { 62.2, 46.6, 1637, 900 }, + }, + }, + [173045] = { + ["coords"] = { + [1] = { 61.8, 38.6, 1637, 900 }, + }, + }, + [173046] = { + ["coords"] = { + [1] = { 62.7, 40.5, 1637, 900 }, + }, + }, + [173047] = { + ["coords"] = { + [1] = { 62.3, 40.5, 1637, 900 }, + }, + ["fac"] = "H", + }, + [173048] = { + ["coords"] = { + [1] = { 53.3, 38.2, 1637, 900 }, + }, + }, + [173049] = { + ["coords"] = { + [1] = { 56.2, 33.9, 1637, 900 }, + }, + }, + [173050] = { + ["coords"] = { + [1] = { 55.8, 32.6, 1637, 900 }, + }, + }, + [173051] = { + ["coords"] = { + [1] = { 56.3, 34, 1637, 900 }, + }, + }, + [173052] = { + ["coords"] = { + [1] = { 56.2, 33.9, 1637, 900 }, + }, + }, + [173053] = { + ["coords"] = { + [1] = { 55.7, 38.9, 1637, 900 }, + }, + }, + [173054] = { + ["coords"] = { + [1] = { 59.2, 36.4, 1637, 900 }, + }, + }, + [173055] = { + ["coords"] = { + [1] = { 59.7, 37.5, 1637, 900 }, + }, + }, + [173056] = { + ["coords"] = { + [1] = { 45.7, 38.8, 1637, 900 }, + }, + }, + [173057] = { + ["coords"] = { + [1] = { 42.5, 35.9, 1637, 900 }, + }, + }, + [173058] = { + ["coords"] = { + [1] = { 42.7, 37.8, 1637, 900 }, + }, + }, + [173059] = { + ["coords"] = { + [1] = { 45.1, 41.7, 1637, 900 }, + }, + }, + [173060] = { + ["coords"] = { + [1] = { 46.2, 41.4, 1637, 900 }, + }, + }, + [173061] = { + ["coords"] = { + [1] = { 45.6, 42.6, 1637, 900 }, + }, + }, + [173062] = { + ["coords"] = { + [1] = { 37.1, 51.9, 1637, 900 }, + }, + }, + [173063] = { + ["coords"] = { + [1] = { 71.8, 27, 1637, 900 }, + }, + }, + [173064] = { + ["coords"] = { + [1] = { 80.7, 24.1, 1637, 900 }, + }, + }, + [173065] = { + ["coords"] = { + [1] = { 79.7, 23.1, 1637, 900 }, + }, + }, + [173066] = { + ["coords"] = { + [1] = { 80.2, 23.6, 1637, 900 }, + }, + }, + [173067] = { + ["coords"] = { + [1] = { 71, 18.2, 1637, 900 }, + }, + }, + [173068] = { + ["coords"] = { + [1] = { 69.5, 26.7, 1637, 900 }, + }, + }, + [173069] = { + ["coords"] = { + [1] = { 75, 33, 1637, 900 }, + }, + }, + [173070] = { + ["coords"] = { + [1] = { 75.2, 23.7, 1637, 900 }, + }, + }, + [173071] = { + ["coords"] = { + [1] = { 72.7, 22.5, 1637, 900 }, + }, + }, + [173072] = { + ["coords"] = { + [1] = { 74.2, 19.4, 1637, 900 }, + }, + }, + [173073] = { + ["coords"] = { + [1] = { 80.1, 22.2, 1637, 900 }, + }, + }, + [173074] = { + ["coords"] = { + [1] = { 73.1, 18.3, 1637, 900 }, + }, + }, + [173075] = { + ["coords"] = { + [1] = { 72.4, 35.6, 1637, 900 }, + }, + }, + [173076] = { + ["coords"] = { + [1] = { 72.5, 40.7, 1637, 900 }, + }, + }, + [173077] = { + ["coords"] = { + [1] = { 76.9, 38.1, 1637, 900 }, + }, + }, + [173078] = { + ["coords"] = { + [1] = { 81.2, 20.3, 1637, 900 }, + }, + }, + [173079] = { + ["coords"] = { + [1] = { 71.7, 41.6, 1637, 900 }, + }, + }, + [173080] = { + ["coords"] = { + [1] = { 76.5, 38, 1637, 900 }, + }, + }, + [173081] = { + ["coords"] = { + [1] = { 73.4, 27.9, 1637, 900 }, + }, + }, + [173082] = { + ["coords"] = { + [1] = { 74.8, 25.2, 1637, 900 }, + }, + }, + [173083] = { + ["coords"] = { + [1] = { 81.5, 21.8, 1637, 900 }, + }, + }, + [173084] = { + ["coords"] = { + [1] = { 75.3, 34.5, 1637, 900 }, + }, + }, + [173085] = { + ["coords"] = { + [1] = { 69.3, 18.9, 1637, 900 }, + }, + }, + [173086] = { + ["coords"] = { + [1] = { 68.8, 29.3, 1637, 900 }, + }, + }, + [173087] = { + ["coords"] = { + [1] = { 72.6, 43, 1637, 900 }, + }, + }, + [173088] = { + ["coords"] = { + [1] = { 74, 41.8, 1637, 900 }, + }, + }, + [173089] = { + ["coords"] = { + [1] = { 79.2, 38.8, 1637, 900 }, + }, + }, + [173090] = { + ["coords"] = { + [1] = { 77.9, 39.5, 1637, 900 }, + }, + }, + [173091] = { + ["coords"] = { + [1] = { 73.4, 25.6, 1637, 900 }, + }, + }, + [173092] = { + ["coords"] = { + [1] = { 76.7, 24.3, 1637, 900 }, + }, + }, + [173093] = { + ["coords"] = { + [1] = { 75.6, 26, 1637, 900 }, + }, + }, + [173094] = { + ["coords"] = { + [1] = { 82.4, 23.2, 1637, 900 }, + }, + }, + [173095] = { + ["coords"] = { + [1] = { 82.6, 23.8, 1637, 900 }, + }, + }, + [173096] = { + ["coords"] = { + [1] = { 83.1, 23.2, 1637, 900 }, + }, + }, + [173097] = { + ["coords"] = { + [1] = { 82.3, 17.8, 1637, 900 }, + }, + }, + [173098] = { + ["coords"] = { + [1] = { 81.8, 19.8, 1637, 900 }, + }, + }, + [173099] = { + ["coords"] = { + [1] = { 68.3, 25.5, 1637, 900 }, + }, + }, + [173100] = { + ["coords"] = { + [1] = { 68.1, 26.9, 1637, 900 }, + }, + }, + [173101] = { + ["coords"] = { + [1] = { 41.2, 56, 1637, 900 }, + }, + }, + [173102] = { + ["coords"] = { + [1] = { 43.1, 57.8, 1637, 900 }, + }, + }, + [173103] = { + ["coords"] = { + [1] = { 52.9, 44.8, 1637, 900 }, + }, + }, + [173104] = { + ["coords"] = { + [1] = { 52.5, 41.2, 1637, 900 }, + }, + }, + [173105] = { + ["coords"] = { + [1] = { 55, 41.2, 1637, 900 }, + }, + }, + [173106] = { + ["coords"] = { + [1] = { 47.8, 68.1, 1637, 900 }, + }, + }, + [173107] = { + ["coords"] = { + [1] = { 44.5, 69.8, 1637, 900 }, + }, + }, + [173108] = { + ["coords"] = { + [1] = { 44.1, 69.1, 1637, 900 }, + }, + }, + [173109] = { + ["coords"] = { + [1] = { 44.3, 70.8, 1637, 900 }, + }, + }, + [173110] = { + ["coords"] = { + [1] = { 44.3, 68.9, 1637, 900 }, + }, + }, + [173111] = { + ["coords"] = { + [1] = { 45.2, 70.4, 1637, 900 }, + }, + }, + [173112] = { + ["coords"] = { + [1] = { 45.1, 8.3, 14, 900 }, + [2] = { 47.7, 80.9, 1637, 900 }, + }, + }, + [173113] = { + ["coords"] = { + [1] = { 43.8, 74, 1637, 900 }, + }, + }, + [173114] = { + ["coords"] = { + [1] = { 54.9, 68.2, 1637, 900 }, + }, + }, + [173115] = { + ["coords"] = { + [1] = { 54, 67.8, 1637, 900 }, + }, + }, + [173116] = { + ["coords"] = { + [1] = { 45.2, 56.8, 1637, 900 }, + }, + }, + [173117] = { + ["coords"] = { + [1] = { 41.8, 61, 1637, 900 }, + }, + }, + [173118] = { + ["coords"] = { + [1] = { 80, 30, 1637, 900 }, + }, + }, + [173119] = { + ["coords"] = { + [1] = { 80.3, 31, 1637, 900 }, + }, + }, + [173120] = { + ["coords"] = { + [1] = { 80, 31.9, 1637, 900 }, + }, + }, + [173121] = { + ["coords"] = { + [1] = { 79.4, 29.7, 1637, 900 }, + }, + }, + [173122] = { + ["coords"] = { + [1] = { 78.5, 31.1, 1637, 900 }, + }, + }, + [173123] = { + ["coords"] = { + [1] = { 78.8, 32.1, 1637, 900 }, + }, + }, + [173124] = { + ["coords"] = {}, + }, + [173125] = { + ["coords"] = { + [1] = { 46.7, 63.9, 1637, 900 }, + }, + }, + [173126] = { + ["coords"] = {}, + }, + [173127] = { + ["coords"] = { + [1] = { 34, 37, 1637, 900 }, + }, + }, + [173128] = { + ["coords"] = { + [1] = { 34, 38.3, 1637, 900 }, + }, + }, + [173129] = { + ["coords"] = { + [1] = { 33.8, 40.9, 1637, 900 }, + }, + }, + [173130] = { + ["coords"] = { + [1] = { 34.7, 40.2, 1637, 900 }, + }, + }, + [173131] = { + ["coords"] = { + [1] = { 35.2, 39.4, 1637, 900 }, + }, + }, + [173132] = { + ["coords"] = { + [1] = { 35.6, 37, 1637, 900 }, + }, + }, + [173133] = { + ["coords"] = { + [1] = { 35, 35.5, 1637, 900 }, + }, + }, + [173134] = { + ["coords"] = { + [1] = { 34.5, 34.9, 1637, 900 }, + }, + }, + [173135] = { + ["coords"] = { + [1] = { 33.5, 34.3, 1637, 900 }, + }, + }, + [173136] = { + ["coords"] = { + [1] = { 35.6, 37.8, 1637, 900 }, + }, + }, + [173137] = { + ["coords"] = { + [1] = { 38.3, 36.3, 1637, 900 }, + }, + }, + [173138] = { + ["coords"] = { + [1] = { 38.4, 38, 1637, 900 }, + }, + }, + [173139] = { + ["coords"] = { + [1] = { 37.8, 38.6, 1637, 900 }, + }, + }, + [173140] = { + ["coords"] = { + [1] = { 39.1, 38.5, 1637, 900 }, + }, + }, + [173141] = { + ["coords"] = { + [1] = { 38.9, 35.6, 1637, 900 }, + }, + }, + [173142] = { + ["coords"] = { + [1] = { 37.6, 35.8, 1637, 900 }, + }, + }, + [173143] = { + ["coords"] = { + [1] = { 36.9, 36.9, 1637, 900 }, + }, + }, + [173144] = { + ["coords"] = { + [1] = { 36.9, 37.7, 1637, 900 }, + }, + }, + [173145] = { + ["coords"] = { + [1] = { 35.9, 37.8, 1637, 900 }, + }, + }, + [173146] = { + ["coords"] = { + [1] = { 35.9, 37, 1637, 900 }, + }, + }, + [173147] = { + ["coords"] = { + [1] = { 32.4, 38.4, 1637, 900 }, + }, + }, + [173148] = { + ["coords"] = { + [1] = { 32.3, 37.1, 1637, 900 }, + }, + }, + [173149] = { + ["coords"] = { + [1] = { 31.4, 35.9, 1637, 900 }, + }, + }, + [173150] = { + ["coords"] = { + [1] = { 31.9, 35.1, 1637, 900 }, + }, + }, + [173151] = { + ["coords"] = { + [1] = { 31.1, 37.4, 1637, 900 }, + }, + }, + [173152] = { + ["coords"] = { + [1] = { 31.2, 38.4, 1637, 900 }, + }, + }, + [173153] = { + ["coords"] = { + [1] = { 31.6, 39.8, 1637, 900 }, + }, + }, + [173154] = { + ["coords"] = { + [1] = { 32.1, 40.5, 1637, 900 }, + }, + }, + [173155] = { + ["coords"] = { + [1] = { 33.1, 41, 1637, 900 }, + }, + }, + [173156] = { + ["coords"] = { + [1] = { 32.8, 34.4, 1637, 900 }, + }, + }, + [173157] = { + ["coords"] = { + [1] = { 30.4, 72.6, 1637, 900 }, + }, + }, + [173158] = { + ["coords"] = { + [1] = { 22.7, 51.9, 1637, 900 }, + }, + }, + [173159] = { + ["coords"] = { + [1] = { 29.8, 74.5, 1637, 900 }, + }, + }, + [173160] = { + ["coords"] = { + [1] = { 41.8, 7.5, 14, 900 }, + [2] = { 35.2, 78.1, 1637, 900 }, + }, + }, + [173161] = { + ["coords"] = { + [1] = { 42.7, 8, 14, 900 }, + [2] = { 38.4, 80.1, 1637, 900 }, + }, + }, + [173162] = { + ["coords"] = { + [1] = { 41.3, 9.4, 14, 900 }, + [2] = { 33.2, 85.2, 1637, 900 }, + }, + }, + [173163] = { + ["coords"] = { + [1] = { 42.6, 53.2, 1637, 900 }, + }, + }, + [173164] = { + ["coords"] = { + [1] = { 46.1, 56.7, 1637, 900 }, + }, + }, + [173165] = { + ["coords"] = { + [1] = { 43.8, 50.2, 1637, 900 }, + }, + }, + [173166] = { + ["coords"] = { + [1] = { 44.2, 54.8, 1637, 900 }, + }, + }, + [173167] = { + ["coords"] = { + [1] = { 44.3, 51.3, 1637, 900 }, + }, + }, + [173168] = { + ["coords"] = { + [1] = { 45.4, 54.5, 1637, 900 }, + }, + }, + [173169] = { + ["coords"] = { + [1] = { 43.5, 49.9, 1637, 900 }, + }, + }, + [173170] = { + ["coords"] = { + [1] = { 43.8, 53.8, 1637, 900 }, + }, + }, + [173171] = { + ["coords"] = { + [1] = { 49.1, 52.8, 1637, 900 }, + }, + }, + [173172] = { + ["coords"] = { + [1] = { 45.9, 47.7, 1637, 900 }, + }, + }, + [173173] = { + ["coords"] = { + [1] = { 46.9, 47.3, 1637, 900 }, + }, + }, + [173174] = { + ["coords"] = { + [1] = { 48.8, 52.7, 1637, 900 }, + }, + }, + [173175] = { + ["coords"] = { + [1] = { 44.8, 50.1, 1637, 900 }, + }, + }, + [173176] = { + ["coords"] = { + [1] = { 46.6, 53.9, 1637, 900 }, + }, + }, + [173177] = { + ["coords"] = { + [1] = { 45.3, 48.7, 1637, 900 }, + }, + }, + [173178] = { + ["coords"] = { + [1] = { 74.9, 14.3, 1637, 900 }, + }, + }, + [173179] = { + ["coords"] = { + [1] = { 75.8, 15.2, 1637, 900 }, + }, + }, + [173180] = { + ["coords"] = { + [1] = { 75.9, 9.1, 1637, 900 }, + }, + }, + [173181] = { + ["coords"] = { + [1] = { 78.9, 9.8, 1637, 900 }, + }, + }, + [173182] = { + ["coords"] = { + [1] = { 75.1, 8.6, 1637, 900 }, + }, + }, + [173183] = { + ["coords"] = { + [1] = { 74.8, 10.1, 1637, 900 }, + }, + }, + [173184] = { + ["coords"] = { + [1] = { 75.6, 12.9, 1637, 900 }, + }, + }, + [173185] = { + ["coords"] = { + [1] = { 79.3, 12.5, 1637, 900 }, + }, + }, + [173186] = { + ["coords"] = { + [1] = { 78.5, 13.5, 1637, 900 }, + }, + }, + [173187] = { + ["coords"] = { + [1] = { 79.8, 9.5, 1637, 900 }, + }, + }, + [173188] = { + ["coords"] = { + [1] = { 76.6, 6.6, 1637, 900 }, + }, + }, + [173189] = { + ["coords"] = { + [1] = { 78.1, 7.2, 1637, 900 }, + }, + }, + [173190] = { + ["coords"] = { + [1] = { 78.6, 11.7, 1637, 900 }, + }, + }, + [173191] = { + ["coords"] = { + [1] = { 76.8, 7.9, 1637, 900 }, + }, + }, + [173192] = { + ["coords"] = { + [1] = { 78.8, 7.9, 1637, 900 }, + }, + }, + [173193] = { + ["coords"] = { + [1] = { 78.9, 6.6, 1637, 900 }, + }, + }, + [173194] = { + ["coords"] = { + [1] = { 76.5, 13.7, 1637, 900 }, + }, + }, + [173195] = { + ["coords"] = { + [1] = { 79.1, 14.2, 1637, 900 }, + }, + }, + [173196] = { + ["coords"] = { + [1] = { 74.1, 9.6, 1637, 900 }, + }, + }, + [173197] = { + ["coords"] = { + [1] = { 46.3, 6.8, 14, 900 }, + [2] = { 51.9, 75.4, 1637, 900 }, + }, + }, + [173198] = { + ["coords"] = { + [1] = { 45.8, 7.2, 14, 900 }, + [2] = { 50.2, 76.8, 1637, 900 }, + }, + }, + [173199] = { + ["coords"] = { + [1] = { 45.7, 7.7, 14, 900 }, + [2] = { 49.7, 78.7, 1637, 900 }, + }, + }, + [173200] = { + ["coords"] = { + [1] = { 46.6, 8.2, 14, 900 }, + [2] = { 53.3, 80.5, 1637, 900 }, + }, + }, + [173201] = { + ["coords"] = {}, + }, + [173202] = { + ["coords"] = { + [1] = { 54.8, 73.5, 1637, 900 }, + }, + }, + [173203] = { + ["coords"] = { + [1] = { 45.5, 8, 14, 900 }, + [2] = { 48.9, 79.9, 1637, 900 }, + }, + }, + [173204] = { + ["coords"] = { + [1] = { 45.3, 6.7, 14, 900 }, + [2] = { 48.1, 75.2, 1637, 900 }, + }, + }, + [173205] = { + ["coords"] = { + [1] = { 47.3, 71.5, 1637, 900 }, + }, + }, + [173206] = { + ["coords"] = { + [1] = { 50.2, 72.5, 1637, 900 }, + }, + }, + [173207] = { + ["coords"] = { + [1] = { 44.7, 7.4, 14, 900 }, + [2] = { 46, 77.5, 1637, 900 }, + }, + }, + [173208] = { + ["coords"] = { + [1] = { 45.8, 70.2, 1637, 900 }, + }, + }, + [173209] = { + ["coords"] = { + [1] = { 45, 68.1, 1637, 900 }, + }, + }, + [173210] = { + ["coords"] = { + [1] = { 47.3, 63, 1637, 900 }, + }, + }, + [173211] = { + ["coords"] = { + [1] = { 44.9, 65.8, 1637, 900 }, + }, + }, + [173212] = { + ["coords"] = { + [1] = { 46, 65.1, 1637, 900 }, + }, + }, + [173213] = { + ["coords"] = { + [1] = { 45.8, 63.2, 1637, 900 }, + }, + }, + [173214] = { + ["coords"] = { + [1] = { 47, 65.4, 1637, 900 }, + }, + }, + [173215] = { + ["coords"] = { + [1] = { 47.5, 70.6, 1637, 900 }, + }, + }, + [173216] = { + ["coords"] = { + [1] = { 50.5, 70.6, 1637, 900 }, + }, + }, + [173217] = { + ["coords"] = { + [1] = { 45.8, 69.3, 1637, 900 }, + }, + }, + [173218] = { + ["coords"] = { + [1] = { 52.1, 63.8, 1637, 900 }, + }, + }, + [173219] = { + ["coords"] = { + [1] = { 47.7, 66.3, 1637, 900 }, + }, + }, + [173220] = { + ["coords"] = { + [1] = { 44.4, 6.7, 14, 900 }, + [2] = { 44.8, 74.9, 1637, 900 }, + }, + }, + [173221] = { + ["coords"] = { + [1] = { 50.7, 70.4, 1637, 900 }, + }, + ["fac"] = "H", + }, + [173222] = { + ["coords"] = { + [1] = { 53.2, 64.4, 1637, 900 }, + }, + }, + [173223] = { + ["coords"] = { + [1] = { 49.6, 67.3, 1637, 900 }, + }, + }, + [173224] = { + ["coords"] = { + [1] = { 48.5, 68, 1637, 900 }, + }, + }, + [173225] = { + ["coords"] = { + [1] = { 48.8, 70.1, 1637, 900 }, + }, + }, + [173226] = { + ["coords"] = { + [1] = { 50.4, 69.2, 1637, 900 }, + }, + }, + [173227] = { + ["coords"] = {}, + }, + [173228] = { + ["coords"] = {}, + }, + [173229] = { + ["coords"] = {}, + }, + [173230] = { + ["coords"] = {}, + }, + [173231] = { + ["coords"] = {}, + }, + [173232] = { + ["coords"] = {}, + }, + [173234] = { + ["coords"] = {}, + }, + [173265] = { + ["coords"] = { + [1] = { 65.6, 62.2, 51, 10 }, + }, + ["fac"] = "AH", + }, + [173266] = { + ["coords"] = { + [1] = { 65.5, 62.2, 51, 0 }, + }, + }, + [173284] = { + ["coords"] = { + [1] = { 50.6, 18.3, 361, 3595 }, + }, + }, + [173324] = { + ["coords"] = { + [1] = { 50.6, 30.4, 361, 3595 }, + }, + }, + [173325] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [173326] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [173327] = { + ["coords"] = { + [1] = { 55.2, 23.5, 361, 3595 }, + }, + }, + [174045] = { + ["coords"] = {}, + }, + [174407] = { + ["coords"] = {}, + }, + [174408] = { + ["coords"] = {}, + }, + [174409] = { + ["coords"] = {}, + }, + [174410] = { + ["coords"] = {}, + }, + [174411] = { + ["coords"] = {}, + }, + [174412] = { + ["coords"] = {}, + }, + [174413] = { + ["coords"] = {}, + }, + [174414] = { + ["coords"] = {}, + }, + [174415] = { + ["coords"] = {}, + }, + [174416] = { + ["coords"] = {}, + }, + [174417] = { + ["coords"] = {}, + }, + [174418] = { + ["coords"] = {}, + }, + [174419] = { + ["coords"] = {}, + }, + [174420] = { + ["coords"] = {}, + }, + [174421] = { + ["coords"] = {}, + }, + [174422] = { + ["coords"] = {}, + }, + [174423] = { + ["coords"] = {}, + }, + [174424] = { + ["coords"] = {}, + }, + [174425] = { + ["coords"] = {}, + }, + [174426] = { + ["coords"] = {}, + }, + [174427] = { + ["coords"] = {}, + }, + [174428] = { + ["coords"] = {}, + }, + [174429] = { + ["coords"] = {}, + }, + [174430] = { + ["coords"] = {}, + }, + [174431] = { + ["coords"] = {}, + }, + [174432] = { + ["coords"] = {}, + }, + [174433] = { + ["coords"] = {}, + }, + [174434] = { + ["coords"] = {}, + }, + [174435] = { + ["coords"] = {}, + }, + [174436] = { + ["coords"] = {}, + }, + [174437] = { + ["coords"] = {}, + }, + [174438] = { + ["coords"] = {}, + }, + [174439] = { + ["coords"] = {}, + }, + [174440] = { + ["coords"] = {}, + }, + [174441] = { + ["coords"] = {}, + }, + [174442] = { + ["coords"] = {}, + }, + [174443] = { + ["coords"] = {}, + }, + [174444] = { + ["coords"] = {}, + }, + [174445] = { + ["coords"] = {}, + }, + [174446] = { + ["coords"] = {}, + }, + [174447] = { + ["coords"] = {}, + }, + [174448] = { + ["coords"] = {}, + }, + [174449] = { + ["coords"] = {}, + }, + [174450] = { + ["coords"] = {}, + }, + [174451] = { + ["coords"] = {}, + }, + [174452] = { + ["coords"] = {}, + }, + [174453] = { + ["coords"] = {}, + }, + [174454] = { + ["coords"] = {}, + }, + [174455] = { + ["coords"] = {}, + }, + [174456] = { + ["coords"] = {}, + }, + [174457] = { + ["coords"] = {}, + }, + [174458] = { + ["coords"] = {}, + }, + [174459] = { + ["coords"] = {}, + }, + [174460] = { + ["coords"] = {}, + }, + [174461] = { + ["coords"] = {}, + }, + [174462] = { + ["coords"] = {}, + }, + [174463] = { + ["coords"] = {}, + }, + [174464] = { + ["coords"] = {}, + }, + [174465] = { + ["coords"] = {}, + }, + [174466] = { + ["coords"] = {}, + }, + [174467] = { + ["coords"] = {}, + }, + [174468] = { + ["coords"] = {}, + }, + [174469] = { + ["coords"] = {}, + }, + [174470] = { + ["coords"] = {}, + }, + [174471] = { + ["coords"] = {}, + }, + [174472] = { + ["coords"] = {}, + }, + [174473] = { + ["coords"] = {}, + }, + [174474] = { + ["coords"] = {}, + }, + [174475] = { + ["coords"] = {}, + }, + [174476] = { + ["coords"] = {}, + }, + [174477] = { + ["coords"] = {}, + }, + [174478] = { + ["coords"] = {}, + }, + [174479] = { + ["coords"] = {}, + }, + [174480] = { + ["coords"] = {}, + }, + [174481] = { + ["coords"] = {}, + }, + [174482] = { + ["coords"] = {}, + }, + [174483] = { + ["coords"] = {}, + }, + [174484] = { + ["coords"] = {}, + }, + [174485] = { + ["coords"] = {}, + }, + [174486] = { + ["coords"] = {}, + }, + [174487] = { + ["coords"] = {}, + }, + [174488] = { + ["coords"] = {}, + }, + [174489] = { + ["coords"] = {}, + }, + [174490] = { + ["coords"] = {}, + }, + [174491] = { + ["coords"] = {}, + }, + [174492] = { + ["coords"] = {}, + }, + [174493] = { + ["coords"] = {}, + }, + [174494] = { + ["coords"] = {}, + }, + [174495] = { + ["coords"] = {}, + }, + [174496] = { + ["coords"] = {}, + }, + [174497] = { + ["coords"] = {}, + }, + [174498] = { + ["coords"] = {}, + }, + [174499] = { + ["coords"] = {}, + }, + [174500] = { + ["coords"] = {}, + }, + [174501] = { + ["coords"] = {}, + }, + [174502] = { + ["coords"] = {}, + }, + [174503] = { + ["coords"] = {}, + }, + [174504] = { + ["coords"] = {}, + }, + [174505] = { + ["coords"] = {}, + }, + [174506] = { + ["coords"] = {}, + }, + [174507] = { + ["coords"] = {}, + }, + [174508] = { + ["coords"] = {}, + }, + [174509] = { + ["coords"] = {}, + }, + [174510] = { + ["coords"] = {}, + }, + [174511] = { + ["coords"] = {}, + }, + [174512] = { + ["coords"] = {}, + }, + [174513] = { + ["coords"] = {}, + }, + [174514] = { + ["coords"] = {}, + }, + [174515] = { + ["coords"] = {}, + }, + [174516] = { + ["coords"] = {}, + }, + [174517] = { + ["coords"] = {}, + }, + [174518] = { + ["coords"] = {}, + }, + [174519] = { + ["coords"] = {}, + }, + [174520] = { + ["coords"] = {}, + }, + [174521] = { + ["coords"] = {}, + }, + [174522] = { + ["coords"] = {}, + }, + [174523] = { + ["coords"] = {}, + }, + [174524] = { + ["coords"] = {}, + }, + [174525] = { + ["coords"] = {}, + }, + [174526] = { + ["coords"] = {}, + }, + [174527] = { + ["coords"] = {}, + }, + [174528] = { + ["coords"] = {}, + }, + [174529] = { + ["coords"] = {}, + }, + [174530] = { + ["coords"] = {}, + }, + [174531] = { + ["coords"] = {}, + }, + [174532] = { + ["coords"] = {}, + }, + [174533] = { + ["coords"] = {}, + }, + [174534] = { + ["coords"] = {}, + }, + [174535] = { + ["coords"] = {}, + }, + [174536] = { + ["coords"] = {}, + }, + [174537] = { + ["coords"] = {}, + }, + [174538] = { + ["coords"] = {}, + }, + [174539] = { + ["coords"] = {}, + }, + [174540] = { + ["coords"] = {}, + }, + [174541] = { + ["coords"] = {}, + }, + [174542] = { + ["coords"] = {}, + }, + [174543] = { + ["coords"] = {}, + }, + [174544] = { + ["coords"] = {}, + }, + [174545] = { + ["coords"] = {}, + }, + [174546] = { + ["coords"] = {}, + }, + [174547] = { + ["coords"] = {}, + }, + [174548] = { + ["coords"] = {}, + }, + [174549] = { + ["coords"] = {}, + }, + [174550] = { + ["coords"] = {}, + }, + [174551] = { + ["coords"] = {}, + }, + [174552] = { + ["coords"] = {}, + }, + [174553] = { + ["coords"] = {}, + }, + [174554] = { + ["coords"] = {}, + }, + [174555] = { + ["coords"] = {}, + }, + [174556] = { + ["coords"] = {}, + }, + [174557] = { + ["coords"] = {}, + }, + [174558] = { + ["coords"] = {}, + }, + [174559] = { + ["coords"] = {}, + }, + [174560] = { + ["coords"] = {}, + }, + [174561] = { + ["coords"] = {}, + }, + [174562] = { + ["coords"] = {}, + }, + [174563] = { + ["coords"] = {}, + }, + [174564] = { + ["coords"] = {}, + }, + [174565] = { + ["coords"] = {}, + }, + [174566] = { + ["coords"] = {}, + }, + [174594] = { + ["coords"] = { + [1] = { 63.3, 22.6, 361, 3595 }, + }, + }, + [174595] = { + ["coords"] = { + [1] = { 63.9, 6.1, 361, 3595 }, + }, + }, + [174596] = { + ["coords"] = { + [1] = { 55.8, 10.4, 361, 3595 }, + }, + }, + [174597] = { + ["coords"] = { + [1] = { 50.6, 13.9, 361, 3595 }, + }, + }, + [174598] = { + ["coords"] = { + [1] = { 50, 73.3, 148, 3595 }, + [2] = { 34.3, 52.2, 361, 3595 }, + }, + }, + [174599] = { + ["coords"] = { + [1] = { 55.8, 7, 361, 3595 }, + }, + }, + [174600] = { + ["coords"] = { + [1] = { 57.5, 20, 361, 3595 }, + }, + }, + [174601] = { + ["coords"] = { + [1] = { 45.4, 18.3, 361, 3595 }, + }, + }, + [174602] = { + ["coords"] = { + [1] = { 53.9, 46.7, 148, 3595 }, + [2] = { 38.8, 21.9, 361, 3595 }, + }, + }, + [174603] = { + ["coords"] = { + [1] = { 50, 70.2, 148, 3595 }, + [2] = { 34.3, 48.7, 361, 3595 }, + }, + }, + [174604] = { + ["coords"] = { + [1] = { 39, 59.1, 361, 3595 }, + }, + }, + [174605] = { + ["coords"] = { + [1] = { 49.4, 12.2, 361, 3595 }, + }, + }, + [174606] = { + ["coords"] = { + [1] = { 55.6, 44.3, 148, 3595 }, + [2] = { 40.7, 19.1, 361, 3595 }, + }, + }, + [174607] = { + ["coords"] = { + [1] = { 43, 47, 361, 3595 }, + }, + }, + [174608] = { + ["coords"] = { + [1] = { 57.1, 39.7, 148, 3595 }, + [2] = { 42.5, 13.9, 361, 3595 }, + }, + }, + [174609] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [174610] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [174612] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [174613] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [174614] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [174615] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [174616] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [174617] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [174618] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [174619] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [174620] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [174621] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [174622] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [174623] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [174624] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [174625] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [174626] = { + ["coords"] = { + [1] = { 69.4, 73.2, 28, 1200 }, + }, + }, + [174682] = { + ["coords"] = { + [1] = { 43.5, 8.4, 490, 10 }, + }, + }, + [174683] = { + ["coords"] = { + [1] = { 41.9, 2.8, 490, 0 }, + }, + }, + [174684] = { + ["coords"] = { + [1] = { 50.7, 79.2, 148, 3595 }, + [2] = { 35.1, 58.9, 361, 3595 }, + }, + }, + [174685] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [174686] = { + ["coords"] = { + [1] = { 49.7, 80.4, 148, 3595 }, + [2] = { 34.1, 60.2, 361, 3595 }, + }, + }, + [174687] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [174698] = { + ["coords"] = {}, + }, + [174699] = { + ["coords"] = {}, + }, + [174700] = { + ["coords"] = {}, + }, + [174701] = { + ["coords"] = {}, + }, + [174702] = { + ["coords"] = {}, + }, + [174708] = { + ["coords"] = { + [1] = { 36.6, 62, 361, 3595 }, + }, + }, + [174709] = { + ["coords"] = { + [1] = { 44.8, 41.7, 361, 3595 }, + }, + }, + [174710] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [174711] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [174712] = { + ["coords"] = { + [1] = { 40.1, 56.5, 361, 3595 }, + }, + }, + [174713] = { + ["coords"] = { + [1] = { 40.1, 44.3, 361, 3595 }, + }, + }, + [174714] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [174715] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [174728] = { + ["coords"] = { + [1] = { 54.1, 55.9, 15, 10 }, + }, + }, + [174729] = { + ["coords"] = { + [1] = { 43.5, 34, 46, 7200 }, + }, + }, + [174730] = { + ["coords"] = { + [1] = { 42.9, 37.1, 46, 7200 }, + }, + }, + [174744] = { + ["coords"] = {}, + }, + [174745] = { + ["coords"] = {}, + }, + [174746] = { + ["coords"] = { + [1] = { 52.5, 37.1, 1, 900 }, + }, + }, + [174764] = { + ["coords"] = {}, + }, + [174792] = { + ["coords"] = { + [1] = { 43.5, 81, 490, 900 }, + }, + }, + [174793] = { + ["coords"] = { + [1] = { 48.7, 85.3, 490, 120 }, + }, + }, + [174794] = { + ["coords"] = { + [1] = { 28.6, 61.4, 12, 25 }, + }, + }, + [174795] = { + ["coords"] = { + [1] = { 37.8, 44, 148, 25 }, + }, + }, + [174796] = { + ["coords"] = { + [1] = { 39, 29.2, 440, 120 }, + }, + }, + [174797] = { + ["coords"] = { + [1] = { 76.3, 41.5, 331, 180 }, + }, + }, + [174846] = { + ["coords"] = { + [1] = { 52.6, 28.6, 405, 900 }, + }, + }, + [174847] = { + ["coords"] = { + [1] = { 54.9, 27.9, 405, 900 }, + }, + }, + [174848] = { + ["coords"] = { + [1] = { 72.3, 9.3, 130, 900 }, + [2] = { 47.8, 73.5, 1497, 900 }, + [3] = { 75.6, 23.9, 1537, 900 }, + }, + }, + [174849] = { + ["coords"] = { + [1] = { 62.3, 37.5, 17, 900 }, + }, + }, + [174857] = { + ["coords"] = { + [1] = { 62, 38.7, 17, 900 }, + }, + }, + [174858] = { + ["coords"] = { + [1] = { 62.3, 37.7, 17, 900 }, + }, + }, + [174859] = { + ["coords"] = { + [1] = { 54.3, 42.3, 14, 900 }, + }, + }, + [174862] = { + ["coords"] = { + [1] = { 52, 53.2, 40, 3600 }, + }, + }, + [174863] = { + ["coords"] = { + [1] = { 72.6, 47.6, 440, 900 }, + }, + }, + [174864] = { + ["coords"] = {}, + }, + [174865] = { + ["coords"] = {}, + }, + [174866] = { + ["coords"] = {}, + }, + [174867] = { + ["coords"] = {}, + }, + [174868] = { + ["coords"] = {}, + }, + [174869] = { + ["coords"] = {}, + }, + [174870] = { + ["coords"] = {}, + }, + [174871] = { + ["coords"] = {}, + }, + [174872] = { + ["coords"] = { + [1] = { 62.1, 39.5, 17, 900 }, + }, + }, + [174875] = { + ["coords"] = { + [1] = { 44.8, 15.2, 28, 1200 }, + }, + }, + [174876] = { + ["coords"] = { + [1] = { 44.8, 15.1, 28, 1200 }, + }, + }, + [174877] = { + ["coords"] = { + [1] = { 44.9, 15.1, 28, 1200 }, + }, + }, + [174878] = { + ["coords"] = { + [1] = { 44.9, 15.2, 28, 1200 }, + }, + }, + [174879] = { + ["coords"] = { + [1] = { 44.9, 15.2, 28, 1200 }, + }, + }, + [174880] = { + ["coords"] = { + [1] = { 39.2, 14.7, 36, 7200 }, + }, + }, + [174881] = { + ["coords"] = { + [1] = { 32.3, 32.6, 36, 7200 }, + }, + }, + [174882] = { + ["coords"] = { + [1] = { 46.6, 14.1, 28, 1200 }, + }, + }, + [174883] = { + ["coords"] = { + [1] = { 47.3, 13.7, 28, 1200 }, + }, + }, + [174884] = { + ["coords"] = { + [1] = { 47.3, 13.8, 28, 1200 }, + }, + }, + [174885] = { + ["coords"] = { + [1] = { 46.3, 13.8, 28, 1200 }, + }, + }, + [174886] = { + ["coords"] = { + [1] = { 46.3, 13.8, 28, 1200 }, + }, + }, + [174887] = { + ["coords"] = { + [1] = { 46.8, 14.6, 28, 1200 }, + }, + }, + [174888] = { + ["coords"] = { + [1] = { 46.9, 14.6, 28, 1200 }, + }, + }, + [174889] = { + ["coords"] = { + [1] = { 46.8, 13, 28, 1200 }, + }, + }, + [174890] = { + ["coords"] = { + [1] = { 46.8, 13, 28, 1200 }, + }, + }, + [174891] = { + ["coords"] = { + [1] = { 47.2, 14.2, 28, 1200 }, + }, + }, + [174892] = { + ["coords"] = { + [1] = { 46.5, 13.3, 28, 1200 }, + }, + }, + [174893] = { + ["coords"] = { + [1] = { 46.5, 13.4, 28, 1200 }, + }, + }, + [174894] = { + ["coords"] = { + [1] = { 47.1, 13.3, 28, 1200 }, + }, + }, + [174895] = { + ["coords"] = { + [1] = { 47.2, 13.4, 28, 1200 }, + }, + }, + [174896] = { + ["coords"] = { + [1] = { 46.6, 13.9, 28, 1200 }, + }, + }, + [174897] = { + ["coords"] = { + [1] = { 46.7, 13.7, 28, 1200 }, + }, + }, + [174898] = { + ["coords"] = { + [1] = { 46.9, 13.5, 28, 1200 }, + }, + }, + [174899] = { + ["coords"] = { + [1] = { 46.8, 13.6, 28, 1200 }, + }, + }, + [174900] = { + ["coords"] = { + [1] = { 47.2, 14, 28, 1200 }, + }, + }, + [174901] = { + ["coords"] = { + [1] = { 47.2, 13.7, 28, 1200 }, + }, + }, + [174902] = { + ["coords"] = { + [1] = { 47.2, 13.5, 28, 1200 }, + }, + }, + [174903] = { + ["coords"] = { + [1] = { 46.5, 13.5, 28, 1200 }, + }, + }, + [174904] = { + ["coords"] = { + [1] = { 46.4, 13.9, 28, 1200 }, + }, + }, + [174905] = { + ["coords"] = { + [1] = { 46.6, 14.3, 28, 1200 }, + }, + }, + [174906] = { + ["coords"] = { + [1] = { 47, 14.3, 28, 1200 }, + }, + }, + [174907] = { + ["coords"] = { + [1] = { 46.7, 13.7, 28, 1200 }, + }, + }, + [174908] = { + ["coords"] = { + [1] = { 46.9, 13.9, 28, 1200 }, + }, + }, + [174909] = { + ["coords"] = { + [1] = { 47.1, 13.6, 28, 1200 }, + }, + }, + [174910] = { + ["coords"] = { + [1] = { 46.6, 14, 28, 1200 }, + }, + }, + [174911] = { + ["coords"] = { + [1] = { 46.7, 14.2, 28, 1200 }, + }, + }, + [174932] = { + ["coords"] = { + [1] = { 42.6, 18.5, 28, 1200 }, + }, + }, + [174933] = { + ["coords"] = { + [1] = { 42.6, 18.6, 28, 1200 }, + }, + }, + [174934] = { + ["coords"] = { + [1] = { 42.2, 18.5, 28, 1200 }, + }, + }, + [174935] = { + ["coords"] = { + [1] = { 42.1, 18.4, 28, 1200 }, + }, + }, + [174936] = { + ["coords"] = { + [1] = { 42.1, 18.4, 28, 1200 }, + }, + }, + [174937] = { + ["coords"] = { + [1] = { 42.3, 18.9, 28, 1200 }, + }, + }, + [174938] = { + ["coords"] = { + [1] = { 42.3, 19, 28, 1200 }, + }, + }, + [174939] = { + ["coords"] = { + [1] = { 42.3, 19, 28, 1200 }, + }, + }, + [174940] = { + ["coords"] = { + [1] = { 42.4, 18.3, 28, 1200 }, + }, + }, + [174941] = { + ["coords"] = { + [1] = { 42.4, 18.2, 28, 1200 }, + }, + }, + [174942] = { + ["coords"] = { + [1] = { 42.4, 18.2, 28, 1200 }, + }, + }, + [174943] = { + ["coords"] = { + [1] = { 42.5, 18.1, 28, 1200 }, + }, + }, + [174944] = { + ["coords"] = { + [1] = { 42.6, 18.3, 28, 1200 }, + }, + }, + [174945] = { + ["coords"] = { + [1] = { 42.5, 19.2, 28, 1200 }, + }, + }, + [174946] = { + ["coords"] = {}, + }, + [174954] = { + ["coords"] = { + [1] = { 30, 42.6, 267, 7200 }, + }, + }, + [174955] = { + ["coords"] = { + [1] = { 30, 42.7, 267, 7200 }, + }, + }, + [174956] = { + ["coords"] = { + [1] = { 29.5, 42.1, 267, 7200 }, + }, + }, + [174957] = { + ["coords"] = { + [1] = { 29.5, 42, 267, 7200 }, + }, + }, + [174958] = { + ["coords"] = { + [1] = { 29.5, 41.9, 267, 7200 }, + }, + }, + [174959] = { + ["coords"] = { + [1] = { 29.4, 42.7, 267, 7200 }, + }, + }, + [174960] = { + ["coords"] = { + [1] = { 29.4, 42.8, 267, 7200 }, + }, + }, + [174961] = { + ["coords"] = { + [1] = { 29.4, 42.9, 267, 7200 }, + }, + }, + [174962] = { + ["coords"] = { + [1] = { 29.9, 42.1, 267, 7200 }, + }, + }, + [174963] = { + ["coords"] = { + [1] = { 29.9, 42, 267, 7200 }, + }, + }, + [174964] = { + ["coords"] = { + [1] = { 29.9, 41.9, 267, 7200 }, + }, + }, + [174965] = { + ["coords"] = { + [1] = { 30, 42, 267, 7200 }, + }, + }, + [174966] = { + ["coords"] = { + [1] = { 30, 42.3, 267, 7200 }, + }, + }, + [174967] = { + ["coords"] = { + [1] = { 29.6, 43.3, 267, 7200 }, + }, + }, + [174968] = { + ["coords"] = {}, + }, + [174994] = { + ["coords"] = { + [1] = { 48.8, 55.9, 267, 7200 }, + }, + }, + [174995] = { + ["coords"] = { + [1] = { 48.8, 55.8, 267, 7200 }, + }, + }, + [174996] = { + ["coords"] = { + [1] = { 48.8, 55.7, 267, 7200 }, + }, + }, + [174997] = { + ["coords"] = { + [1] = { 48.8, 55.6, 267, 7200 }, + }, + }, + [174998] = { + ["coords"] = { + [1] = { 48.8, 55.6, 267, 7200 }, + }, + }, + [175075] = { + ["coords"] = { + [1] = { 36.4, 44.3, 361, 180 }, + }, + }, + [175076] = { + ["coords"] = { + [1] = { 36.2, 44.2, 361, 180 }, + }, + }, + [175078] = { + ["coords"] = { + [1] = { 47.8, 74.5, 11, 7200 }, + }, + }, + [175080] = { + ["coords"] = {}, + }, + [175084] = { + ["coords"] = {}, + }, + [175085] = { + ["coords"] = {}, + }, + [175087] = { + ["coords"] = {}, + }, + [175104] = { + ["coords"] = { + [1] = { 36, 51.6, 331, 900 }, + }, + }, + [175124] = { + ["coords"] = {}, + }, + [175144] = { + ["coords"] = { + [1] = { 68.1, 8.5, 405, 900 }, + [2] = { 42.4, 83.5, 406, 900 }, + }, + }, + [175145] = { + ["coords"] = { + [1] = { 68, 8.4, 405, 900 }, + [2] = { 42.4, 83.4, 406, 900 }, + }, + }, + [175146] = { + ["coords"] = { + [1] = { 68.5, 9, 405, 900 }, + [2] = { 42.8, 84, 406, 900 }, + }, + }, + [175148] = { + ["coords"] = { + [1] = { 17.3, 44, 10, 3600 }, + }, + }, + [175149] = { + ["coords"] = { + [1] = { 16.6, 47.1, 10, 3600 }, + }, + }, + [175150] = { + ["coords"] = { + [1] = { 16.6, 47, 10, 3600 }, + }, + }, + [175151] = { + ["coords"] = { + [1] = { 16.6, 47.2, 10, 3600 }, + }, + }, + [175153] = { + ["coords"] = {}, + }, + [175165] = { + ["coords"] = { + [1] = { 38.2, 28.8, 148, 0 }, + }, + }, + [175166] = { + ["coords"] = { + [1] = { 39.6, 27.5, 148, 0 }, + }, + }, + [175167] = { + ["coords"] = {}, + }, + [175179] = { + ["coords"] = { + [1] = { 35.4, 45.3, 331, 900 }, + }, + }, + [175180] = { + ["coords"] = { + [1] = { 36.6, 45.7, 331, 900 }, + }, + }, + [175181] = { + ["coords"] = { + [1] = { 39.4, 46.8, 331, 900 }, + }, + }, + [175185] = { + ["coords"] = {}, + }, + [175186] = { + ["coords"] = {}, + }, + [175187] = { + ["coords"] = {}, + }, + [175194] = { + ["coords"] = {}, + }, + [175195] = { + ["coords"] = {}, + }, + [175196] = { + ["coords"] = {}, + }, + [175197] = { + ["coords"] = {}, + }, + [175198] = { + ["coords"] = {}, + }, + [175199] = { + ["coords"] = {}, + }, + [175200] = { + ["coords"] = {}, + }, + [175207] = { + ["coords"] = { + [1] = { 36.4, 50.9, 148, 0 }, + }, + }, + [175226] = { + ["coords"] = { + [1] = { 36, 70.9, 148, 900 }, + }, + }, + [175227] = { + ["coords"] = { + [1] = { 32.7, 80.8, 148, 900 }, + }, + }, + [175230] = { + ["coords"] = { + [1] = { 31.3, 87.4, 148, 900 }, + }, + }, + [175233] = { + ["coords"] = { + [1] = { 41.9, 31.5, 148, 900 }, + }, + ["fac"] = "A", + }, + [175244] = { + ["coords"] = {}, + }, + [175245] = { + ["coords"] = {}, + }, + [175246] = { + ["coords"] = { + [1] = { 4.6, 94.4, 3, 7200 }, + [2] = { 65.8, 21.7, 46, 7200 }, + }, + }, + [175247] = { + ["coords"] = { + [1] = { 4.7, 94.3, 3, 7200 }, + [2] = { 65.9, 21.7, 46, 7200 }, + }, + }, + [175248] = { + ["coords"] = { + [1] = { 4.7, 94.4, 3, 7200 }, + [2] = { 65.9, 21.7, 46, 7200 }, + }, + }, + [175249] = { + ["coords"] = { + [1] = { 4.8, 94.3, 3, 7200 }, + [2] = { 65.9, 21.6, 46, 7200 }, + }, + }, + [175264] = { + ["coords"] = {}, + }, + [175265] = { + ["coords"] = { + [1] = { 72.3, 9.3, 130, 900 }, + [2] = { 47.7, 73.6, 1497, 900 }, + [3] = { 75.7, 24, 1537, 900 }, + }, + }, + [175266] = { + ["coords"] = {}, + }, + [175267] = { + ["coords"] = {}, + }, + [175268] = { + ["coords"] = {}, + }, + [175269] = { + ["coords"] = {}, + }, + [175270] = { + ["coords"] = {}, + }, + [175271] = { + ["coords"] = {}, + }, + [175272] = { + ["coords"] = {}, + }, + [175284] = { + ["coords"] = { + [1] = { 86.7, 42.8, 331, 900 }, + }, + }, + [175285] = { + ["coords"] = { + [1] = { 85.2, 44.8, 331, 900 }, + }, + }, + [175286] = { + ["coords"] = { + [1] = { 86.2, 45.8, 331, 900 }, + }, + }, + [175287] = { + ["coords"] = {}, + }, + [175288] = { + ["coords"] = {}, + }, + [175289] = { + ["coords"] = {}, + }, + [175290] = { + ["coords"] = {}, + }, + [175291] = { + ["coords"] = {}, + }, + [175292] = { + ["coords"] = {}, + }, + [175293] = { + ["coords"] = {}, + }, + [175294] = { + ["coords"] = {}, + }, + [175298] = { + ["coords"] = {}, + }, + [175300] = { + ["coords"] = {}, + }, + [175302] = { + ["coords"] = {}, + }, + [175305] = { + ["coords"] = {}, + }, + [175306] = { + ["coords"] = {}, + }, + [175307] = { + ["coords"] = {}, + }, + [175308] = { + ["coords"] = {}, + }, + [175310] = { + ["coords"] = {}, + }, + [175311] = { + ["coords"] = {}, + }, + [175312] = { + ["coords"] = { + [1] = { 48.4, 45.3, 1637, 900 }, + }, + }, + [175313] = { + ["coords"] = { + [1] = { 49.3, 50.6, 1637, 900 }, + }, + }, + [175314] = { + ["coords"] = { + [1] = { 50.9, 45.9, 1637, 900 }, + }, + }, + [175315] = { + ["coords"] = { + [1] = { 51.6, 47.3, 1637, 900 }, + }, + }, + [175316] = { + ["coords"] = { + [1] = { 47.4, 47.2, 1637, 900 }, + }, + }, + [175317] = { + ["coords"] = { + [1] = { 48.4, 48.8, 1637, 900 }, + }, + }, + [175318] = { + ["coords"] = { + [1] = { 51.1, 50.9, 1637, 900 }, + }, + }, + [175319] = { + ["coords"] = { + [1] = { 48.8, 46.8, 1637, 900 }, + }, + }, + [175320] = { + ["coords"] = { + [1] = { 37.2, 44.2, 148, 900 }, + }, + ["fac"] = "A", + }, + [175321] = { + ["coords"] = {}, + ["fac"] = "H", + }, + [175322] = { + ["coords"] = {}, + }, + [175324] = { + ["coords"] = { + [1] = { 64.4, 72.4, 618, 180 }, + [2] = { 65.4, 72.4, 618, 180 }, + [3] = { 62, 72.3, 618, 180 }, + [4] = { 63.3, 72.3, 618, 180 }, + [5] = { 63.9, 71.5, 618, 180 }, + [6] = { 60.1, 71.4, 618, 180 }, + [7] = { 62.9, 70.8, 618, 180 }, + [8] = { 65.2, 70.3, 618, 180 }, + [9] = { 64.3, 70.2, 618, 180 }, + [10] = { 63.6, 69.9, 618, 180 }, + [11] = { 59.9, 69.5, 618, 180 }, + [12] = { 62.2, 69.4, 618, 180 }, + [13] = { 64.3, 69.2, 618, 180 }, + [14] = { 58.8, 69.2, 618, 180 }, + [15] = { 65.9, 69, 618, 180 }, + [16] = { 61.4, 68.9, 618, 180 }, + [17] = { 60.8, 68.8, 618, 180 }, + [18] = { 63.7, 68.6, 618, 180 }, + [19] = { 62.8, 68.3, 618, 180 }, + [20] = { 64.3, 68.2, 618, 180 }, + [21] = { 64.8, 68.1, 618, 180 }, + [22] = { 61.8, 68, 618, 180 }, + [23] = { 59.8, 67.7, 618, 180 }, + [24] = { 59.4, 67.6, 618, 180 }, + [25] = { 61.5, 67.4, 618, 180 }, + [26] = { 58.3, 67.4, 618, 180 }, + [27] = { 64.3, 67.2, 618, 180 }, + [28] = { 59.1, 67, 618, 180 }, + [29] = { 60.5, 66.9, 618, 180 }, + [30] = { 63.5, 66.9, 618, 180 }, + [31] = { 59.9, 66.7, 618, 180 }, + [32] = { 58.4, 66.4, 618, 180 }, + [33] = { 64.5, 66.4, 618, 180 }, + [34] = { 58.9, 66.1, 618, 180 }, + [35] = { 60.7, 65.5, 618, 180 }, + [36] = { 59.6, 65.5, 618, 180 }, + [37] = { 60.4, 65.3, 618, 180 }, + [38] = { 61.4, 65.3, 618, 180 }, + [39] = { 59, 64.5, 618, 180 }, + [40] = { 58.7, 63.6, 618, 180 }, + }, + ["fac"] = "AH", + }, + [175329] = { + ["coords"] = { + [1] = { 51.8, 33.5, 148, 0 }, + }, + }, + [175330] = { + ["coords"] = { + [1] = { 52.9, 33.4, 148, 0 }, + }, + }, + [175331] = { + ["coords"] = { + [1] = { 50.7, 34.9, 148, 0 }, + }, + }, + [175334] = { + ["coords"] = {}, + }, + [175335] = { + ["coords"] = { + [1] = { 52.8, 27.5, 440, 900 }, + }, + }, + [175336] = { + ["coords"] = {}, + ["fac"] = "A", + }, + [175338] = { + ["coords"] = { + [1] = { 52.4, 33.4, 148, 180 }, + }, + }, + [175350] = { + ["coords"] = {}, + }, + [175351] = { + ["coords"] = {}, + }, + [175352] = { + ["coords"] = {}, + }, + [175353] = { + ["coords"] = {}, + }, + [175354] = { + ["coords"] = {}, + }, + [175355] = { + ["coords"] = {}, + }, + [175356] = { + ["coords"] = {}, + }, + [175357] = { + ["coords"] = {}, + }, + [175358] = { + ["coords"] = {}, + }, + [175359] = { + ["coords"] = {}, + }, + [175368] = { + ["coords"] = {}, + }, + [175369] = { + ["coords"] = { + [1] = { 47.9, 23.8, 139, 900 }, + }, + }, + [175370] = { + ["coords"] = { + [1] = { 48.5, 20.5, 139, 900 }, + }, + }, + [175371] = { + ["coords"] = { + [1] = { 50.8, 25.6, 148, 120 }, + }, + }, + [175372] = { + ["coords"] = {}, + }, + [175373] = { + ["coords"] = {}, + }, + [175374] = { + ["coords"] = {}, + }, + [175375] = { + ["coords"] = {}, + }, + [175376] = { + ["coords"] = {}, + }, + [175377] = { + ["coords"] = {}, + }, + [175379] = { + ["coords"] = {}, + }, + [175380] = { + ["coords"] = {}, + }, + [175381] = { + ["coords"] = {}, + }, + [175382] = { + ["coords"] = {}, + }, + [175383] = { + ["coords"] = { + [1] = { 45.7, 93.2, 45, 7200 }, + }, + }, + [175384] = { + ["coords"] = { + [1] = { 17.6, 42.3, 400, 180 }, + [2] = { 18, 41.7, 400, 180 }, + [3] = { 17.2, 40.8, 400, 180 }, + [4] = { 10.7, 40.8, 400, 180 }, + [5] = { 10.1, 39.6, 400, 180 }, + [6] = { 14.1, 39.3, 400, 180 }, + [7] = { 13.5, 38.5, 400, 180 }, + [8] = { 10.6, 38.5, 400, 180 }, + [9] = { 12.6, 37.4, 400, 180 }, + [10] = { 11.6, 37.1, 400, 180 }, + [11] = { 13.4, 37, 400, 180 }, + [12] = { 10.6, 36.8, 400, 180 }, + [13] = { 12.2, 36.1, 400, 180 }, + [14] = { 9.4, 35.4, 400, 180 }, + [15] = { 10.2, 35.2, 400, 180 }, + [16] = { 12.6, 35.1, 400, 180 }, + [17] = { 8.5, 34.9, 400, 180 }, + [18] = { 11.1, 34.5, 400, 180 }, + [19] = { 9.6, 34.5, 400, 180 }, + [20] = { 11.4, 33.2, 400, 180 }, + [21] = { 11.8, 33.2, 400, 180 }, + [22] = { 10.2, 32.9, 400, 180 }, + [23] = { 10.8, 32.3, 400, 180 }, + }, + }, + [175385] = { + ["coords"] = {}, + }, + [175404] = { + ["coords"] = { + [1] = { 4.8, 94.1, 3, 300 }, + [2] = { 45.5, 96.1, 16, 300 }, + [3] = { 77.7, 92.8, 16, 300 }, + [4] = { 67, 91.8, 16, 300 }, + [5] = { 73.4, 86.4, 16, 300 }, + [6] = { 64, 85.5, 16, 300 }, + [7] = { 65.2, 77.5, 16, 300 }, + [8] = { 49.3, 67, 16, 300 }, + [9] = { 54.4, 64.8, 16, 300 }, + [10] = { 42.9, 62.8, 16, 300 }, + [11] = { 37, 61.6, 16, 300 }, + [12] = { 58.2, 57.8, 16, 300 }, + [13] = { 41, 57, 16, 300 }, + [14] = { 42.1, 51.5, 16, 300 }, + [15] = { 61.2, 50.1, 16, 300 }, + [16] = { 41.2, 47.3, 16, 300 }, + [17] = { 56.8, 44.8, 16, 300 }, + [18] = { 64.4, 42.2, 16, 300 }, + [19] = { 59.2, 40.3, 16, 300 }, + [20] = { 38.2, 33.4, 16, 300 }, + [21] = { 56.1, 28.4, 16, 300 }, + [22] = { 62.6, 26.3, 16, 300 }, + [23] = { 44.8, 26.1, 16, 300 }, + [24] = { 45, 21.5, 16, 300 }, + [25] = { 41.3, 19.3, 16, 300 }, + [26] = { 53.5, 19.1, 16, 300 }, + [27] = { 68.1, 18.9, 16, 300 }, + [28] = { 77.7, 15.6, 16, 300 }, + [29] = { 61.5, 37.7, 28, 600 }, + [30] = { 64, 37.7, 28, 600 }, + [31] = { 40.9, 14.3, 28, 300 }, + [32] = { 46.1, 11.9, 28, 600 }, + [33] = { 45, 11.1, 28, 300 }, + [34] = { 45.4, 10, 28, 600 }, + [35] = { 45.5, 8.7, 28, 600 }, + [36] = { 29.7, 70.5, 46, 300 }, + [37] = { 34.8, 66.7, 46, 300 }, + [38] = { 22, 63, 46, 300 }, + [39] = { 48.8, 62.6, 46, 300 }, + [40] = { 42.8, 60.1, 46, 300 }, + [41] = { 54.3, 60.1, 46, 300 }, + [42] = { 30.3, 58.6, 46, 300 }, + [43] = { 36.4, 58.2, 46, 300 }, + [44] = { 26.5, 54.8, 46, 300 }, + [45] = { 16.3, 50.6, 46, 300 }, + [46] = { 25.3, 46.2, 46, 300 }, + [47] = { 41.8, 44.8, 46, 300 }, + [48] = { 38, 41, 46, 300 }, + [49] = { 46.3, 40.3, 46, 300 }, + [50] = { 61, 38.6, 46, 300 }, + [51] = { 69.6, 36.2, 46, 300 }, + [52] = { 47.3, 33.5, 46, 300 }, + [53] = { 65.7, 32.8, 46, 300 }, + [54] = { 95.6, 31.8, 46, 300 }, + [55] = { 15, 30, 46, 300 }, + [56] = { 72.4, 29.7, 46, 300 }, + [57] = { 38.9, 28.2, 46, 300 }, + [58] = { 57.3, 24, 46, 300 }, + [59] = { 65.9, 21.4, 46, 300 }, + [60] = { 48.5, 99.6, 51, 300 }, + [61] = { 72.8, 94.2, 51, 300 }, + [62] = { 83.5, 88.2, 139, 600 }, + [63] = { 83.4, 87.8, 139, 600 }, + [64] = { 84.6, 85.6, 139, 600 }, + [65] = { 86.7, 80.5, 139, 600 }, + [66] = { 78.7, 77.9, 139, 600 }, + [67] = { 84.1, 74.4, 139, 600 }, + [68] = { 84.6, 74.4, 139, 600 }, + [69] = { 55.2, 71.3, 139, 300 }, + [70] = { 56.9, 69.2, 139, 600 }, + [71] = { 74, 67.1, 139, 600 }, + [72] = { 57.7, 67.1, 139, 600 }, + [73] = { 53.7, 65.8, 139, 600 }, + [74] = { 57.2, 64.7, 139, 600 }, + [75] = { 76.6, 64.3, 139, 600 }, + [76] = { 54.9, 64.1, 139, 600 }, + [77] = { 72.4, 63.3, 139, 600 }, + [78] = { 77.1, 61.3, 139, 600 }, + [79] = { 73.8, 60.7, 139, 600 }, + [80] = { 76.4, 58.1, 139, 600 }, + [81] = { 43.3, 51, 139, 600 }, + [82] = { 37, 50.9, 139, 600 }, + [83] = { 74.9, 50, 139, 300 }, + [84] = { 40.2, 47.2, 139, 600 }, + [85] = { 71.3, 45.5, 139, 300 }, + [86] = { 80.8, 45.1, 139, 600 }, + [87] = { 87.8, 43.9, 139, 600 }, + [88] = { 81.3, 41.3, 139, 600 }, + [89] = { 68.7, 40.7, 139, 300 }, + [90] = { 66.6, 38.5, 139, 300 }, + [91] = { 83.7, 36.2, 139, 600 }, + [92] = { 64.5, 32, 139, 300 }, + [93] = { 61.8, 29.9, 139, 300 }, + [94] = { 68.4, 26.5, 139, 300 }, + [95] = { 61.8, 25.4, 139, 300 }, + [96] = { 65.4, 22.6, 139, 600 }, + [97] = { 73.3, 18.1, 139, 600 }, + [98] = { 31.1, 80.8, 490, 300 }, + [99] = { 39, 77.5, 490, 300 }, + [100] = { 30.7, 74.7, 490, 300 }, + [101] = { 28.4, 70.3, 490, 300 }, + [102] = { 39, 70.2, 490, 300 }, + [103] = { 34.1, 69.3, 490, 300 }, + [104] = { 40.9, 64.8, 490, 300 }, + [105] = { 21.8, 60.9, 490, 300 }, + [106] = { 46, 53, 490, 300 }, + [107] = { 53.9, 51.9, 490, 300 }, + [108] = { 51.4, 48.1, 490, 300 }, + [109] = { 54, 46.6, 490, 300 }, + [110] = { 46.6, 44.9, 490, 300 }, + [111] = { 20.8, 42.4, 490, 300 }, + [112] = { 25.5, 39.8, 490, 300 }, + [113] = { 53.5, 89.2, 618, 600 }, + [114] = { 57.7, 83, 618, 600 }, + [115] = { 71.2, 81.2, 618, 300 }, + [116] = { 65.5, 79.5, 618, 600 }, + [117] = { 59.5, 77.6, 618, 600 }, + [118] = { 56.6, 77.6, 618, 600 }, + [119] = { 62.8, 71.1, 618, 600 }, + [120] = { 64.6, 70.4, 618, 600 }, + [121] = { 61.3, 68.9, 618, 600 }, + [122] = { 64.8, 68, 618, 600 }, + [123] = { 59.4, 67.8, 618, 600 }, + [124] = { 63.2, 67.7, 618, 600 }, + [125] = { 66.3, 61.5, 618, 600 }, + [126] = { 64.6, 60.8, 618, 600 }, + [127] = { 66.7, 60.1, 618, 600 }, + [128] = { 65.7, 58.8, 618, 600 }, + [129] = { 52.3, 55.7, 618, 600 }, + [130] = { 54.3, 55.4, 618, 600 }, + [131] = { 53.3, 44.4, 618, 600 }, + [132] = { 49.1, 44.4, 618, 600 }, + [133] = { 50.3, 43.7, 618, 600 }, + [134] = { 56.8, 43.7, 618, 600 }, + [135] = { 69.6, 41.8, 618, 600 }, + [136] = { 70.8, 39.7, 618, 600 }, + [137] = { 52.1, 39.5, 618, 600 }, + [138] = { 54, 39, 618, 600 }, + [139] = { 69.7, 38.6, 618, 600 }, + [140] = { 67.7, 38.6, 618, 600 }, + [141] = { 69.4, 38.5, 618, 600 }, + [142] = { 66.5, 37.5, 618, 600 }, + [143] = { 70.7, 37.3, 618, 600 }, + [144] = { 68.8, 37.3, 618, 600 }, + [145] = { 68, 35.6, 618, 600 }, + [146] = { 50.4, 16.8, 618, 600 }, + [147] = { 55.9, 14.6, 618, 600 }, + [148] = { 49.3, 14.3, 618, 600 }, + [149] = { 54.8, 10.5, 618, 600 }, + [150] = { 48.2, 8.8, 618, 600 }, + [151] = { 80.7, 65, 1377, 300 }, + [152] = { 79.7, 45.4, 1377, 300 }, + [153] = { 49.5, 48.6, 2597, 604800 }, + [154] = { 49.6, 48.4, 2597, 604800 }, + [155] = { 49.5, 48.2, 2597, 604800 }, + [156] = { 48.1, 47, 2597, 604800 }, + [157] = { 48.2, 46.7, 2597, 604800 }, + [158] = { 48, 46.6, 2597, 604800 }, + [159] = { 46.3, 46.6, 2597, 604800 }, + [160] = { 51.9, 46, 2597, 604800 }, + [161] = { 44.9, 45.2, 2597, 604800 }, + [162] = { 50.6, 41.8, 2597, 604800 }, + [163] = { 46.9, 39.3, 2597, 604800 }, + }, + }, + [175405] = { + ["coords"] = {}, + }, + [175406] = { + ["coords"] = {}, + }, + [175407] = { + ["coords"] = { + [1] = { 62.4, 55.3, 618, 180 }, + [2] = { 63.3, 54.7, 618, 180 }, + [3] = { 65.3, 54.6, 618, 180 }, + [4] = { 66.9, 53.5, 618, 180 }, + [5] = { 65.4, 52.5, 618, 180 }, + [6] = { 66.8, 50.5, 618, 180 }, + [7] = { 63.7, 49.6, 618, 180 }, + [8] = { 66.1, 47.3, 618, 180 }, + [9] = { 63.5, 47.1, 618, 180 }, + [10] = { 30.9, 47, 618, 180 }, + [11] = { 29.4, 46.7, 618, 180 }, + [12] = { 34.8, 45.9, 618, 180 }, + [13] = { 36.3, 45.8, 618, 180 }, + [14] = { 37.3, 45.7, 618, 180 }, + [15] = { 37.8, 45.7, 618, 180 }, + [16] = { 31.4, 45.5, 618, 180 }, + [17] = { 30.2, 45.2, 618, 180 }, + [18] = { 38.7, 45.1, 618, 180 }, + [19] = { 47.9, 45, 618, 180 }, + [20] = { 43.7, 44.9, 618, 180 }, + [21] = { 44.9, 44.7, 618, 180 }, + [22] = { 67.4, 44.6, 618, 180 }, + [23] = { 32.8, 44.4, 618, 180 }, + [24] = { 46.6, 44.3, 618, 180 }, + [25] = { 45.2, 44.3, 618, 180 }, + [26] = { 32, 44.2, 618, 180 }, + [27] = { 37.4, 44.2, 618, 180 }, + [28] = { 43.1, 44.1, 618, 180 }, + [29] = { 30.3, 44, 618, 180 }, + [30] = { 33.1, 44, 618, 180 }, + [31] = { 45.6, 44, 618, 180 }, + [32] = { 35.6, 43.8, 618, 180 }, + [33] = { 38.3, 43.8, 618, 180 }, + [34] = { 45.7, 43.7, 618, 180 }, + [35] = { 31.4, 43.3, 618, 180 }, + [36] = { 65.4, 43.3, 618, 180 }, + [37] = { 34.8, 43.2, 618, 180 }, + [38] = { 37.5, 42.8, 618, 180 }, + [39] = { 45.7, 42.6, 618, 180 }, + [40] = { 43.5, 42.6, 618, 180 }, + [41] = { 44.4, 42.2, 618, 180 }, + [42] = { 43.1, 41.9, 618, 180 }, + [43] = { 45.9, 41.7, 618, 180 }, + [44] = { 49.5, 40.8, 618, 180 }, + [45] = { 39.5, 39, 618, 180 }, + [46] = { 63.3, 38.4, 618, 180 }, + [47] = { 50.5, 38, 618, 180 }, + [48] = { 40.4, 37.4, 618, 180 }, + [49] = { 59.5, 34.2, 618, 180 }, + [50] = { 60.7, 33.7, 618, 180 }, + [51] = { 58, 32.8, 618, 180 }, + [52] = { 58.3, 27.2, 618, 180 }, + [53] = { 60.7, 24.4, 618, 180 }, + [54] = { 58, 20.9, 618, 180 }, + [55] = { 60.1, 18.2, 618, 180 }, + [56] = { 58.3, 17.3, 618, 180 }, + [57] = { 58.8, 15.7, 618, 180 }, + [58] = { 56, 14.4, 618, 180 }, + [59] = { 56.9, 13.5, 618, 180 }, + [60] = { 57.6, 13.3, 618, 180 }, + }, + }, + [175424] = { + ["coords"] = {}, + }, + [175425] = { + ["coords"] = {}, + }, + [175426] = { + ["coords"] = {}, + }, + [175427] = { + ["coords"] = {}, + }, + [175428] = { + ["coords"] = {}, + }, + [175429] = { + ["coords"] = {}, + }, + [175430] = { + ["coords"] = {}, + }, + [175431] = { + ["coords"] = {}, + }, + [175432] = { + ["coords"] = { + [1] = { 48, 23.6, 139, 900 }, + }, + }, + [175433] = { + ["coords"] = {}, + }, + [175434] = { + ["coords"] = {}, + }, + [175435] = { + ["coords"] = {}, + }, + [175436] = { + ["coords"] = {}, + }, + [175437] = { + ["coords"] = {}, + }, + [175438] = { + ["coords"] = {}, + }, + [175439] = { + ["coords"] = {}, + }, + [175440] = { + ["coords"] = {}, + }, + [175441] = { + ["coords"] = {}, + }, + [175442] = { + ["coords"] = {}, + }, + [175443] = { + ["coords"] = {}, + }, + [175444] = { + ["coords"] = {}, + }, + [175445] = { + ["coords"] = {}, + }, + [175447] = { + ["coords"] = {}, + }, + [175449] = { + ["coords"] = {}, + }, + [175450] = { + ["coords"] = {}, + }, + [175454] = { + ["coords"] = {}, + }, + [175455] = { + ["coords"] = {}, + }, + [175457] = { + ["coords"] = {}, + }, + [175458] = { + ["coords"] = {}, + }, + [175459] = { + ["coords"] = {}, + }, + [175460] = { + ["coords"] = {}, + }, + [175461] = { + ["coords"] = {}, + }, + [175462] = { + ["coords"] = {}, + }, + [175463] = { + ["coords"] = {}, + }, + [175466] = { + ["coords"] = {}, + }, + [175467] = { + ["coords"] = {}, + }, + [175469] = { + ["coords"] = {}, + }, + [175470] = { + ["coords"] = {}, + }, + [175471] = { + ["coords"] = {}, + }, + [175472] = { + ["coords"] = {}, + }, + [175474] = { + ["coords"] = {}, + }, + [175477] = { + ["coords"] = {}, + }, + [175478] = { + ["coords"] = {}, + }, + [175479] = { + ["coords"] = {}, + }, + [175481] = { + ["coords"] = {}, + }, + [175483] = { + ["coords"] = {}, + }, + [175484] = { + ["coords"] = {}, + }, + [175487] = { + ["coords"] = { + [1] = { 72.3, 12.9, 139, 10 }, + }, + }, + [175488] = { + ["coords"] = { + [1] = { 72.7, 15.5, 139, 10 }, + }, + }, + [175490] = { + ["coords"] = { + [1] = { 39.7, 52.6, 440, 900 }, + }, + }, + [175491] = { + ["coords"] = { + [1] = { 39.4, 53.6, 440, 900 }, + }, + }, + [175492] = { + ["coords"] = { + [1] = { 40.7, 52.2, 440, 900 }, + }, + }, + [175524] = { + ["coords"] = { + [1] = { 47.3, 48.7, 148, 10 }, + }, + ["fac"] = "A", + }, + [175528] = { + ["coords"] = {}, + }, + [175529] = { + ["coords"] = {}, + }, + [175530] = { + ["coords"] = {}, + }, + [175531] = { + ["coords"] = {}, + }, + [175532] = { + ["coords"] = {}, + }, + [175533] = { + ["coords"] = {}, + }, + [175534] = { + ["coords"] = {}, + }, + [175535] = { + ["coords"] = {}, + }, + [175536] = { + ["coords"] = {}, + }, + [175537] = { + ["coords"] = {}, + }, + [175539] = { + ["coords"] = {}, + }, + [175544] = { + ["coords"] = { + [1] = { 74.5, 79.6, 44, 7200 }, + }, + }, + [175545] = { + ["coords"] = { + [1] = { 53.2, 32.2, 405, 900 }, + }, + }, + [175564] = { + ["coords"] = {}, + }, + [175565] = { + ["coords"] = { + [1] = { 37.6, 56.1, 400, 10 }, + [2] = { 52.3, 55.2, 400, 10 }, + [3] = { 56.4, 50.4, 400, 10 }, + }, + }, + [175566] = { + ["coords"] = { + [1] = { 49.8, 63.5, 85, 180 }, + [2] = { 48.1, 62.1, 85, 180 }, + [3] = { 47, 61.4, 85, 180 }, + [4] = { 51.9, 61.2, 85, 180 }, + [5] = { 48.3, 61.2, 85, 180 }, + [6] = { 46, 60.8, 85, 180 }, + [7] = { 50.4, 60.8, 85, 180 }, + [8] = { 44.6, 60.7, 85, 180 }, + [9] = { 52.8, 60.4, 85, 180 }, + [10] = { 49, 60.2, 85, 180 }, + [11] = { 47.6, 60.2, 85, 180 }, + [12] = { 43.5, 59.9, 85, 180 }, + [13] = { 42.1, 59.7, 85, 180 }, + [14] = { 41.6, 59.2, 85, 180 }, + [15] = { 45.5, 59.2, 85, 180 }, + [16] = { 51.6, 59.1, 85, 180 }, + [17] = { 47.1, 59, 85, 180 }, + [18] = { 50.8, 59, 85, 180 }, + [19] = { 44.6, 58.8, 85, 180 }, + [20] = { 49.9, 58.7, 85, 180 }, + [21] = { 48.8, 58.7, 85, 180 }, + [22] = { 53.9, 58.6, 85, 180 }, + [23] = { 43.1, 58.6, 85, 180 }, + [24] = { 55.4, 58.1, 85, 180 }, + [25] = { 46.5, 58, 85, 180 }, + [26] = { 48, 58, 85, 180 }, + [27] = { 41.7, 57.8, 85, 180 }, + [28] = { 56.6, 57.7, 85, 180 }, + [29] = { 40.4, 57.6, 85, 180 }, + [30] = { 43.3, 57.5, 85, 180 }, + [31] = { 45.6, 57.4, 85, 180 }, + [32] = { 53.6, 57.4, 85, 180 }, + [33] = { 44.4, 57.3, 85, 180 }, + [34] = { 48.8, 56.9, 85, 180 }, + [35] = { 41.7, 56.8, 85, 180 }, + [36] = { 51.5, 56.8, 85, 180 }, + [37] = { 55.7, 56.6, 85, 180 }, + [38] = { 47, 56.5, 85, 180 }, + [39] = { 49.1, 56.4, 85, 180 }, + [40] = { 50, 56.4, 85, 180 }, + [41] = { 43.8, 56.2, 85, 180 }, + [42] = { 45.3, 56.2, 85, 180 }, + [43] = { 41, 56.1, 85, 180 }, + [44] = { 39.8, 55.8, 85, 180 }, + [45] = { 42.5, 55.8, 85, 180 }, + [46] = { 56.5, 55.3, 85, 180 }, + [47] = { 50.6, 55.2, 85, 180 }, + [48] = { 54.1, 55.2, 85, 180 }, + [49] = { 51.4, 55.1, 85, 180 }, + [50] = { 43.4, 55, 85, 180 }, + [51] = { 49.7, 54.9, 85, 180 }, + [52] = { 48.7, 54.9, 85, 180 }, + [53] = { 46.5, 54.8, 85, 180 }, + [54] = { 45.3, 54.8, 85, 180 }, + [55] = { 52.7, 54.6, 85, 180 }, + [56] = { 41.6, 54.5, 85, 180 }, + [57] = { 54.7, 54.3, 85, 180 }, + [58] = { 42.3, 54.2, 85, 180 }, + [59] = { 39.7, 54.1, 85, 180 }, + [60] = { 44.4, 54.1, 85, 180 }, + [61] = { 47.4, 54.1, 85, 180 }, + [62] = { 53.4, 53.9, 85, 180 }, + [63] = { 50.2, 53.8, 85, 180 }, + [64] = { 56.1, 53.8, 85, 180 }, + [65] = { 51.6, 53.8, 85, 180 }, + [66] = { 41.3, 53.7, 85, 180 }, + [67] = { 48.2, 53.6, 85, 180 }, + [68] = { 43.2, 53.6, 85, 180 }, + [69] = { 46.3, 53.5, 85, 180 }, + [70] = { 50.6, 53.2, 85, 180 }, + [71] = { 54.6, 53.2, 85, 180 }, + [72] = { 42.1, 53.2, 85, 180 }, + [73] = { 44.9, 53, 85, 180 }, + [74] = { 52.1, 53, 85, 180 }, + [75] = { 53.6, 52.7, 85, 180 }, + [76] = { 55.4, 52.7, 85, 180 }, + [77] = { 46.5, 52.5, 85, 180 }, + [78] = { 42.8, 52.3, 85, 180 }, + [79] = { 52.9, 52.1, 85, 180 }, + [80] = { 45.6, 52.1, 85, 180 }, + [81] = { 49.2, 52.1, 85, 180 }, + [82] = { 41.4, 52, 85, 180 }, + [83] = { 51.5, 52, 85, 180 }, + [84] = { 43.9, 51.8, 85, 180 }, + [85] = { 40.4, 51.7, 85, 180 }, + [86] = { 42.6, 51.6, 85, 180 }, + [87] = { 52.2, 51.5, 85, 180 }, + [88] = { 54.4, 51.2, 85, 180 }, + [89] = { 53.1, 51, 85, 180 }, + [90] = { 55.5, 51, 85, 180 }, + [91] = { 46.7, 50.9, 85, 180 }, + [92] = { 56.2, 50.8, 85, 180 }, + [93] = { 39.6, 50.7, 85, 180 }, + [94] = { 44.7, 50.6, 85, 180 }, + [95] = { 45.7, 50.3, 85, 180 }, + [96] = { 50.4, 50.3, 85, 180 }, + [97] = { 53.7, 50.2, 85, 180 }, + [98] = { 52.1, 49.8, 85, 180 }, + [99] = { 41.4, 49.7, 85, 180 }, + [100] = { 42, 49.5, 85, 180 }, + }, + }, + [175567] = { + ["coords"] = { + [1] = { 44.7, 50.4, 400, 0 }, + }, + }, + [175570] = { + ["coords"] = {}, + }, + [175571] = { + ["coords"] = {}, + }, + [175584] = { + ["coords"] = {}, + }, + [175586] = { + ["coords"] = { + [1] = { 61.4, 60.7, 618, 10 }, + }, + ["fac"] = "A", + }, + [175587] = { + ["coords"] = { + [1] = { 59, 59.8, 618, 10 }, + }, + ["fac"] = "A", + }, + [175588] = { + ["coords"] = {}, + }, + [175589] = { + ["coords"] = {}, + }, + [175590] = { + ["coords"] = {}, + }, + [175591] = { + ["coords"] = { + [1] = { 47.9, 97.8, 17, 180 }, + [2] = { 41, 35.1, 400, 180 }, + }, + }, + [175592] = { + ["coords"] = { + [1] = { 47.5, 97.2, 17, 180 }, + [2] = { 40, 33.7, 400, 180 }, + }, + }, + [175593] = { + ["coords"] = { + [1] = { 39.4, 36.8, 400, 180 }, + }, + }, + [175594] = { + ["coords"] = { + [1] = { 41.2, 37.9, 400, 180 }, + }, + }, + [175595] = { + ["coords"] = { + [1] = { 48.2, 98.3, 17, 180 }, + [2] = { 41.5, 36.2, 400, 180 }, + }, + }, + [175596] = { + ["coords"] = { + [1] = { 41.9, 38.9, 400, 180 }, + }, + }, + [175597] = { + ["coords"] = { + [1] = { 42.2, 40.7, 400, 180 }, + }, + }, + [175598] = { + ["coords"] = { + [1] = { 43.9, 40.6, 400, 180 }, + }, + }, + [175599] = { + ["coords"] = { + [1] = { 45.1, 40.3, 400, 180 }, + }, + }, + [175600] = { + ["coords"] = { + [1] = { 49.7, 99.4, 17, 180 }, + [2] = { 45, 38.7, 400, 180 }, + }, + }, + [175601] = { + ["coords"] = { + [1] = { 45.4, 42.3, 400, 180 }, + }, + }, + [175602] = { + ["coords"] = { + [1] = { 47.1, 41.5, 400, 180 }, + }, + }, + [175603] = { + ["coords"] = { + [1] = { 48.4, 40.7, 400, 180 }, + }, + }, + [175604] = { + ["coords"] = { + [1] = { 46, 41.7, 400, 180 }, + }, + }, + [175605] = { + ["coords"] = { + [1] = { 41.8, 37.2, 400, 180 }, + }, + }, + [175606] = { + ["coords"] = {}, + }, + [175607] = { + ["coords"] = {}, + }, + [175608] = { + ["coords"] = {}, + }, + [175609] = { + ["coords"] = {}, + }, + [175610] = { + ["coords"] = {}, + }, + [175611] = { + ["coords"] = {}, + }, + [175612] = { + ["coords"] = {}, + }, + [175613] = { + ["coords"] = {}, + }, + [175614] = { + ["coords"] = {}, + }, + [175615] = { + ["coords"] = {}, + }, + [175616] = { + ["coords"] = {}, + }, + [175617] = { + ["coords"] = {}, + }, + [175618] = { + ["coords"] = {}, + }, + [175619] = { + ["coords"] = {}, + }, + [175620] = { + ["coords"] = {}, + }, + [175621] = { + ["coords"] = {}, + }, + [175622] = { + ["coords"] = {}, + }, + [175628] = { + ["coords"] = { + [1] = { 61.4, 60.7, 618, 60 }, + }, + }, + [175629] = { + ["coords"] = { + [1] = { 61.4, 60.7, 618, 60 }, + }, + }, + [175630] = { + ["coords"] = { + [1] = { 50.9, 34.8, 148, 900 }, + }, + }, + [175631] = { + ["coords"] = { + [1] = { 50.5, 34.5, 148, 900 }, + }, + }, + [175632] = { + ["coords"] = { + [1] = { 47.8, 82, 36, 7200 }, + [2] = { 50.7, 20.2, 267, 7200 }, + }, + }, + [175644] = { + ["coords"] = {}, + }, + [175645] = { + ["coords"] = {}, + }, + [175646] = { + ["coords"] = {}, + }, + [175647] = { + ["coords"] = {}, + }, + [175648] = { + ["coords"] = {}, + }, + [175649] = { + ["coords"] = {}, + }, + [175650] = { + ["coords"] = {}, + }, + [175651] = { + ["coords"] = {}, + }, + [175652] = { + ["coords"] = {}, + }, + [175653] = { + ["coords"] = {}, + }, + [175654] = { + ["coords"] = { + [1] = { 30.3, 12.5, 139, 180 }, + }, + }, + [175655] = { + ["coords"] = { + [1] = { 28.6, 12.7, 139, 180 }, + }, + }, + [175656] = { + ["coords"] = { + [1] = { 30.6, 13.7, 139, 900 }, + }, + }, + [175657] = { + ["coords"] = { + [1] = { 30.6, 13.7, 139, 900 }, + }, + }, + [175658] = { + ["coords"] = { + [1] = { 45.2, 34.7, 1637, 900 }, + }, + }, + [175659] = { + ["coords"] = { + [1] = { 66, 43.9, 1497, 900 }, + }, + }, + [175663] = { + ["coords"] = {}, + }, + [175664] = { + ["coords"] = {}, + }, + [175665] = { + ["coords"] = {}, + }, + [175666] = { + ["coords"] = {}, + }, + [175667] = { + ["coords"] = {}, + }, + [175668] = { + ["coords"] = {}, + }, + [175669] = { + ["coords"] = { + [1] = { 40.7, 64.9, 1, 900 }, + }, + }, + [175670] = { + ["coords"] = { + [1] = { 44.6, 94.5, 17, 180 }, + [2] = { 33.2, 27.5, 400, 180 }, + }, + }, + [175671] = { + ["coords"] = { + [1] = { 47, 94.4, 17, 180 }, + [2] = { 38.7, 27.1, 400, 180 }, + }, + }, + [175672] = { + ["coords"] = { + [1] = { 21.4, 32.4, 400, 180 }, + }, + }, + [175673] = { + ["coords"] = { + [1] = { 46.4, 96.6, 17, 180 }, + [2] = { 37.4, 32.3, 400, 180 }, + }, + }, + [175674] = { + ["coords"] = { + [1] = { 34, 38.3, 400, 180 }, + }, + }, + [175675] = { + ["coords"] = { + [1] = { 38.7, 41.1, 400, 180 }, + }, + }, + [175677] = { + ["coords"] = {}, + }, + [175678] = { + ["coords"] = {}, + }, + [175679] = { + ["coords"] = { + [1] = { 77.4, 27.6, 1537, 900 }, + }, + }, + [175680] = { + ["coords"] = { + [1] = { 75.8, 24.5, 1537, 900 }, + }, + }, + [175681] = { + ["coords"] = { + [1] = { 76.5, 23.9, 1537, 900 }, + }, + }, + [175682] = { + ["coords"] = { + [1] = { 77, 21.5, 1537, 900 }, + }, + }, + [175683] = { + ["coords"] = { + [1] = { 74.3, 21.1, 1537, 900 }, + }, + }, + [175684] = { + ["coords"] = { + [1] = { 78.4, 22.3, 1537, 900 }, + }, + }, + [175685] = { + ["coords"] = { + [1] = { 71.8, 18, 1537, 900 }, + }, + }, + [175686] = { + ["coords"] = { + [1] = { 69.4, 10.7, 1537, 900 }, + }, + }, + [175687] = { + ["coords"] = { + [1] = { 68.8, 4.9, 1537, 900 }, + }, + }, + [175688] = { + ["coords"] = { + [1] = { 65.9, 6.3, 1537, 900 }, + }, + }, + [175689] = { + ["coords"] = { + [1] = { 64.5, 3.2, 1537, 900 }, + }, + }, + [175704] = { + ["coords"] = { + [1] = { 74.4, 19.3, 51, 0 }, + }, + ["fac"] = "A", + }, + [175705] = { + ["coords"] = {}, + }, + [175706] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [175707] = { + ["coords"] = { + [1] = { 34, 54.4, 405, 900 }, + }, + }, + [175708] = { + ["coords"] = { + [1] = { 58.8, 27.4, 17, 10 }, + [2] = { 58.5, 27.3, 17, 10 }, + [3] = { 58.4, 27, 17, 10 }, + [4] = { 58.5, 25.9, 17, 10 }, + [5] = { 59.3, 24.9, 17, 10 }, + [6] = { 59.4, 24.8, 17, 10 }, + [7] = { 59.5, 24.6, 17, 10 }, + [8] = { 59.2, 24.4, 17, 10 }, + }, + }, + [175724] = { + ["coords"] = { + [1] = { 61.9, 39.6, 17, 900 }, + [2] = { 74.2, 32.1, 45, 7200 }, + [3] = { 34.5, 49.5, 331, 900 }, + }, + }, + [175725] = { + ["coords"] = { + [1] = { 9.8, 57.6, 11, 7200 }, + [2] = { 28.7, 52, 141, 900 }, + [3] = { 56.1, 50.6, 1497, 900 }, + [4] = { 76.1, 10.8, 1537, 900 }, + [5] = { 55.3, 24.2, 1657, 900 }, + }, + }, + [175726] = { + ["coords"] = { + [1] = { 9.9, 56.9, 11, 7200 }, + [2] = { 62.7, 36.2, 17, 10 }, + [3] = { 60.8, 50.6, 85, 900 }, + [4] = { 34.8, 49.7, 331, 900 }, + [5] = { 76.1, 10.5, 1537, 900 }, + }, + }, + [175727] = { + ["coords"] = { + [1] = { 27.4, 50.3, 141, 900 }, + [2] = { 21.8, 61.7, 1519, 120 }, + [3] = { 49.1, 16.1, 1657, 900 }, + }, + }, + [175729] = { + ["coords"] = { + [1] = { 73.7, 44.5, 10, 3600 }, + [2] = { 61.8, 39.4, 17, 10 }, + [3] = { 36.6, 44, 148, 900 }, + [4] = { 41.6, 64.9, 1519, 120 }, + }, + }, + [175730] = { + ["coords"] = { + [1] = { 28.9, 47.8, 141, 900 }, + [2] = { 20.3, 50.3, 1519, 120 }, + [3] = { 56.2, 4, 1657, 900 }, + }, + }, + [175731] = { + ["coords"] = { + [1] = { 61.9, 38.7, 17, 900 }, + [2] = { 24.3, 52.3, 141, 900 }, + [3] = { 61.9, 57.8, 1497, 900 }, + [4] = { 34.1, 26, 1657, 900 }, + }, + }, + [175732] = { + ["coords"] = { + [1] = { 27.9, 77.2, 33, 900 }, + [2] = { 30.9, 42.8, 357, 900 }, + }, + }, + [175733] = { + ["coords"] = { + [1] = { 73.6, 45.1, 10, 3600 }, + [2] = { 36.6, 43.8, 148, 900 }, + }, + }, + [175734] = { + ["coords"] = { + [1] = { 61.4, 82.3, 36, 7200 }, + [2] = { 48.3, 58.6, 267, 7200 }, + [3] = { 62.6, 20.4, 267, 7200 }, + [4] = { 77.1, 9.1, 1537, 900 }, + }, + }, + [175735] = { + ["coords"] = { + [1] = { 72.8, 9.8, 1519, 120 }, + }, + }, + [175736] = { + ["coords"] = { + [1] = { 26.9, 58.7, 15, 900 }, + [2] = { 49.4, 84.4, 17, 900 }, + [3] = { 35.5, 49, 38, 7200 }, + [4] = { 31.6, 49.5, 215, 900 }, + [5] = { 36.9, 76.9, 440, 10 }, + [6] = { 74.8, 9.1, 1537, 900 }, + }, + }, + [175737] = { + ["coords"] = {}, + }, + [175738] = { + ["coords"] = { + [1] = { 56.5, 30.2, 40, 3600 }, + [2] = { 61.6, 52.1, 85, 900 }, + [3] = { 73.1, 6.8, 1519, 180 }, + }, + }, + [175739] = { + ["coords"] = { + [1] = { 26.3, 58.3, 15, 900 }, + [2] = { 49.1, 84.1, 17, 900 }, + [3] = { 30, 44.7, 44, 7200 }, + [4] = { 14.1, 44.1, 47, 7200 }, + [5] = { 31.6, 49.4, 215, 900 }, + [6] = { 99.6, 3.1, 267, 7200 }, + [7] = { 64.5, 21.5, 1519, 120 }, + [8] = { 75, 9, 1537, 900 }, + }, + }, + [175740] = { + ["coords"] = { + [1] = { 37.2, 46.9, 38, 10 }, + [2] = { 52.6, 53, 40, 10 }, + }, + }, + [175741] = { + ["coords"] = { + [1] = { 74.1, 45.4, 10, 3600 }, + }, + }, + [175742] = { + ["coords"] = { + [1] = { 47.8, 54.7, 8, 600 }, + [2] = { 59.6, 58.1, 14, 900 }, + [3] = { 77, 12.8, 1537, 900 }, + }, + }, + [175743] = { + ["coords"] = { + [1] = { 82.1, 18.1, 1637, 900 }, + }, + }, + [175744] = { + ["coords"] = { + [1] = { 82.3, 18.6, 1637, 900 }, + }, + }, + [175745] = { + ["coords"] = { + [1] = { 66.8, 18.3, 4, 900 }, + [2] = { 47.7, 55, 8, 600 }, + [3] = { 26.8, 45.8, 44, 7200 }, + [4] = { 81.9, 15.3, 1519, 120 }, + }, + }, + [175746] = { + ["coords"] = { + [1] = { 47.6, 52, 1, 900 }, + [2] = { 72.1, 48, 10, 3600 }, + [3] = { 62.7, 82.6, 36, 7200 }, + [4] = { 63.7, 20.7, 267, 7200 }, + [5] = { 72.9, 9.8, 1519, 120 }, + [6] = { 77, 12.4, 1537, 900 }, + }, + }, + [175747] = { + ["coords"] = {}, + }, + [175748] = { + ["coords"] = { + [1] = { 72.1, 46.4, 10, 3600 }, + [2] = { 52.1, 58.5, 267, 120 }, + }, + }, + [175749] = { + ["coords"] = { + [1] = { 43.8, 65.7, 12, 900 }, + [2] = { 56.1, 50.8, 1497, 900 }, + }, + }, + [175750] = { + ["coords"] = { + [1] = { 10.8, 60.8, 11, 10 }, + [2] = { 31.5, 49.4, 215, 900 }, + [3] = { 83.3, 13.6, 1519, 120 }, + [4] = { 75.7, 10.9, 1537, 900 }, + }, + }, + [175751] = { + ["coords"] = { + [1] = { 85.3, 69.8, 12, 900 }, + [2] = { 61.8, 55.2, 17, 900 }, + }, + }, + [175752] = { + ["coords"] = { + [1] = { 47.6, 55, 8, 600 }, + [2] = { 61.9, 54.9, 17, 900 }, + [3] = { 72.4, 9.7, 1519, 120 }, + }, + }, + [175753] = { + ["coords"] = { + [1] = { 82.1, 11.3, 1519, 120 }, + }, + }, + [175754] = { + ["coords"] = { + [1] = { 51.6, 58.6, 267, 7200 }, + [2] = { 56.2, 51, 1497, 900 }, + }, + }, + [175756] = { + ["coords"] = { + [1] = { 27.6, 77.1, 33, 900 }, + [2] = { 56.9, 47.5, 40, 3600 }, + [3] = { 34.8, 49.8, 331, 900 }, + }, + }, + [175757] = { + ["coords"] = { + [1] = { 27.1, 77.7, 33, 900 }, + [2] = { 34.5, 50, 331, 900 }, + }, + }, + [175758] = { + ["coords"] = { + [1] = { 62.4, 38.8, 17, 900 }, + [2] = { 66.3, 7.7, 405, 900 }, + [3] = { 40.8, 82.8, 406, 900 }, + [4] = { 41.7, 64.8, 1519, 120 }, + }, + }, + [175759] = { + ["coords"] = { + [1] = { 31, 62.9, 141, 900 }, + [2] = { 66.5, 76.6, 1657, 900 }, + }, + }, + [175760] = { + ["coords"] = { + [1] = { 64.6, 69.4, 12, 900 }, + [2] = { 74.1, 32.4, 45, 7200 }, + [3] = { 27.4, 50.4, 141, 900 }, + [4] = { 49.1, 16.7, 1657, 900 }, + }, + }, + [175761] = { + ["coords"] = { + [1] = { 49.6, 39.6, 12, 900 }, + [2] = { 51.3, 58.5, 267, 7200 }, + [3] = { 67.6, 37.3, 1497, 900 }, + [4] = { 73.3, 10.2, 1519, 120 }, + [5] = { 76.8, 12.8, 1537, 900 }, + }, + }, + [175762] = { + ["coords"] = {}, + }, + [175763] = { + ["coords"] = { + [1] = { 51, 29.4, 440, 900 }, + }, + }, + [175764] = { + ["coords"] = { + [1] = { 70.3, 43.5, 405, 900 }, + }, + }, + [175765] = { + ["coords"] = { + [1] = { 71.4, 50.4, 405, 900 }, + }, + }, + [175766] = { + ["coords"] = { + [1] = { 74, 49.7, 405, 900 }, + }, + }, + [175767] = { + ["coords"] = { + [1] = { 74.3, 46.7, 405, 900 }, + }, + }, + [175771] = { + ["coords"] = {}, + }, + [175772] = { + ["coords"] = {}, + }, + [175773] = { + ["coords"] = {}, + }, + [175774] = { + ["coords"] = {}, + }, + [175775] = { + ["coords"] = {}, + }, + [175776] = { + ["coords"] = {}, + }, + [175777] = { + ["coords"] = {}, + }, + [175778] = { + ["coords"] = {}, + }, + [175779] = { + ["coords"] = {}, + }, + [175780] = { + ["coords"] = {}, + }, + [175781] = { + ["coords"] = {}, + }, + [175784] = { + ["coords"] = { + [1] = { 42.4, 73.2, 14, 900 }, + [2] = { 41.3, 72.8, 14, 900 }, + [3] = { 44.6, 72.7, 14, 900 }, + [4] = { 47.4, 69.1, 14, 900 }, + [5] = { 44.9, 68.9, 14, 900 }, + [6] = { 45.6, 66, 14, 900 }, + [7] = { 47.3, 65.3, 14, 900 }, + [8] = { 38.8, 61.8, 14, 900 }, + [9] = { 46.6, 60.7, 14, 900 }, + [10] = { 41, 60.3, 14, 900 }, + [11] = { 41.1, 58.9, 14, 900 }, + [12] = { 47, 58, 14, 900 }, + [13] = { 43.8, 57.8, 14, 900 }, + [14] = { 42.9, 57.3, 14, 900 }, + [15] = { 67.4, 35.3, 17, 900 }, + [16] = { 66.8, 35.1, 17, 900 }, + }, + }, + [175785] = { + ["coords"] = {}, + }, + [175786] = { + ["coords"] = { + [1] = { 44.5, 59.3, 17, 900 }, + }, + }, + [175787] = { + ["coords"] = { + [1] = { 31.7, 38.1, 1637, 900 }, + }, + }, + [175788] = { + ["coords"] = { + [1] = { 31.7, 37.6, 1637, 900 }, + }, + }, + [175789] = { + ["coords"] = { + [1] = { 32.4, 37.8, 1637, 0 }, + }, + }, + [175791] = { + ["coords"] = { + [1] = { 51.6, 73.9, 1637, 30 }, + [2] = { 49.4, 69.4, 1637, 30 }, + [3] = { 54.6, 64, 1637, 30 }, + [4] = { 45.9, 63.9, 1637, 30 }, + [5] = { 51.3, 58.4, 1637, 30 }, + [6] = { 33.4, 37.7, 1637, 30 }, + }, + ["fac"] = "H", + }, + [175795] = { + ["coords"] = { + [1] = { 49, 69.3, 28, 1200 }, + [2] = { 49.1, 68.9, 28, 1200 }, + [3] = { 49.4, 68.8, 28, 1200 }, + [4] = { 50.3, 67.2, 28, 1200 }, + [5] = { 50.2, 66.8, 28, 1200 }, + [6] = { 47.8, 66.5, 28, 1200 }, + [7] = { 50.2, 66.3, 28, 1200 }, + [8] = { 50, 66.1, 28, 1200 }, + [9] = { 47.9, 65.9, 28, 1200 }, + [10] = { 47.2, 65.9, 28, 1200 }, + [11] = { 48.3, 65.8, 28, 1200 }, + [12] = { 48.2, 64.4, 28, 1200 }, + [13] = { 48.6, 64, 28, 1200 }, + [14] = { 47.8, 63.4, 28, 1200 }, + [15] = { 45.2, 62.8, 28, 1200 }, + [16] = { 48.5, 62.8, 28, 1200 }, + [17] = { 46.4, 62.3, 28, 1200 }, + [18] = { 45.1, 62.3, 28, 1200 }, + [19] = { 46.7, 62.1, 28, 1200 }, + [20] = { 47, 62, 28, 1200 }, + }, + }, + [175796] = { + ["coords"] = {}, + }, + [175797] = { + ["coords"] = { + [1] = { 73.1, 73.2, 405, 900 }, + }, + }, + [175798] = { + ["coords"] = { + [1] = { 70.8, 74.7, 405, 900 }, + }, + }, + [175799] = { + ["coords"] = { + [1] = { 69.5, 78, 405, 900 }, + }, + }, + [175800] = { + ["coords"] = { + [1] = { 72.2, 78, 405, 900 }, + }, + }, + [175801] = { + ["coords"] = { + [1] = { 66.7, 79.6, 405, 900 }, + }, + }, + [175802] = { + ["coords"] = { + [1] = { 42.8, 73.9, 28, 180 }, + [2] = { 45.2, 73.7, 28, 180 }, + [3] = { 41.8, 73.6, 28, 180 }, + [4] = { 43.6, 73.5, 28, 180 }, + [5] = { 46.4, 73, 28, 180 }, + [6] = { 44.8, 72.8, 28, 180 }, + [7] = { 41.9, 72.2, 28, 180 }, + [8] = { 44.8, 70.4, 28, 180 }, + [9] = { 41.3, 69.9, 28, 180 }, + [10] = { 48.7, 69.8, 28, 180 }, + [11] = { 38.3, 69.6, 28, 180 }, + [12] = { 42.7, 69.6, 28, 180 }, + [13] = { 42.4, 68.8, 28, 180 }, + [14] = { 42.9, 68.3, 28, 180 }, + [15] = { 40.3, 68.2, 28, 180 }, + [16] = { 38.9, 68, 28, 180 }, + [17] = { 40.8, 67.1, 28, 180 }, + [18] = { 46.6, 66.5, 28, 180 }, + [19] = { 40.3, 66.5, 28, 180 }, + [20] = { 45, 66, 28, 180 }, + }, + }, + [175803] = { + ["coords"] = {}, + }, + [175804] = { + ["coords"] = {}, + }, + [175805] = { + ["coords"] = {}, + }, + [175806] = { + ["coords"] = {}, + }, + [175811] = { + ["coords"] = { + [1] = { 61.8, 38.6, 618, 900 }, + }, + }, + [175824] = { + ["coords"] = {}, + }, + [175825] = { + ["coords"] = {}, + }, + [175844] = { + ["coords"] = { + [1] = { 41.3, 32.4, 331, 900 }, + [2] = { 40.5, 96.6, 361, 900 }, + }, + }, + [175845] = { + ["coords"] = { + [1] = { 40.9, 31.6, 331, 900 }, + [2] = { 40, 95.9, 361, 900 }, + }, + }, + [175846] = { + ["coords"] = { + [1] = { 40.8, 32.7, 331, 900 }, + [2] = { 39.9, 97, 361, 900 }, + }, + }, + [175847] = { + ["coords"] = { + [1] = { 41.7, 33.7, 331, 900 }, + [2] = { 40.8, 98, 361, 900 }, + }, + }, + [175848] = { + ["coords"] = { + [1] = { 42.4, 34.3, 331, 900 }, + [2] = { 41.5, 98.6, 361, 900 }, + }, + }, + [175849] = { + ["coords"] = { + [1] = { 42.4, 34.2, 331, 900 }, + [2] = { 41.5, 98.4, 361, 900 }, + }, + }, + [175850] = { + ["coords"] = { + [1] = { 40.4, 34.6, 331, 900 }, + [2] = { 39.5, 98.9, 361, 900 }, + }, + }, + [175851] = { + ["coords"] = { + [1] = { 25.6, 71.4, 405, 900 }, + }, + }, + [175852] = { + ["coords"] = { + [1] = { 25.6, 71.8, 405, 900 }, + }, + }, + [175853] = { + ["coords"] = { + [1] = { 23.3, 72.6, 405, 900 }, + }, + }, + [175854] = { + ["coords"] = { + [1] = { 27.8, 77.3, 33, 900 }, + [2] = { 52.6, 27.8, 440, 10 }, + }, + }, + [175855] = { + ["coords"] = { + [1] = { 27.8, 77.3, 33, 900 }, + [2] = { 52.6, 27.8, 440, 900 }, + }, + }, + [175856] = { + ["coords"] = { + [1] = { 27.8, 77.3, 33, 900 }, + [2] = { 52.6, 27.8, 440, 10 }, + }, + }, + [175857] = { + ["coords"] = {}, + }, + [175858] = { + ["coords"] = {}, + }, + [175864] = { + ["coords"] = {}, + }, + [175885] = { + ["coords"] = { + [1] = { 72.6, 47.6, 10, 3600 }, + [2] = { 61.8, 82.4, 36, 7200 }, + [3] = { 60.7, 51.1, 85, 900 }, + [4] = { 41.7, 34.4, 215, 900 }, + [5] = { 39, 27.4, 215, 900 }, + [6] = { 39.6, 27.1, 215, 900 }, + [7] = { 39.4, 27, 215, 900 }, + [8] = { 39, 26.6, 215, 900 }, + [9] = { 45.8, 23.1, 215, 900 }, + [10] = { 34.5, 20.9, 215, 900 }, + [11] = { 62.9, 20.6, 267, 7200 }, + [12] = { 88, 48, 405, 900 }, + [13] = { 47.4, 65.1, 1637, 900 }, + [14] = { 58.8, 42.3, 1637, 900 }, + [15] = { 41, 36.9, 1637, 900 }, + [16] = { 76.2, 33.1, 1637, 900 }, + [17] = { 74.6, 16.4, 1637, 900 }, + [18] = { 58.4, 86.4, 1638, 900 }, + [19] = { 45.5, 52.1, 1638, 900 }, + [20] = { 48.2, 50.6, 1638, 900 }, + [21] = { 47.4, 49.9, 1638, 900 }, + [22] = { 45.1, 47.8, 1638, 900 }, + [23] = { 78.6, 31, 1638, 900 }, + [24] = { 23.1, 19.8, 1638, 900 }, + [25] = { 67.5, 69.7, 3358, 180 }, + }, + }, + [175886] = { + ["coords"] = {}, + }, + [175887] = { + ["coords"] = {}, + }, + [175888] = { + ["coords"] = { + [1] = { 55.1, 43, 618, 300 }, + }, + }, + [175889] = { + ["coords"] = { + [1] = { 81.3, 26.2, 45, 10 }, + [2] = { 57.6, 86.8, 47, 10 }, + }, + }, + [175890] = { + ["coords"] = { + [1] = { 81.3, 26.2, 45, 7200 }, + [2] = { 57.6, 86.8, 47, 7200 }, + }, + }, + [175891] = { + ["coords"] = { + [1] = { 50.9, 41.7, 618, 300 }, + }, + }, + [175892] = { + ["coords"] = { + [1] = { 53.3, 43.4, 618, 300 }, + }, + }, + [175893] = { + ["coords"] = { + [1] = { 52.4, 41.5, 618, 300 }, + }, + }, + [175894] = { + ["coords"] = { + [1] = { 38.7, 55.2, 28, 10 }, + }, + }, + [175904] = { + ["coords"] = {}, + }, + [175924] = { + ["coords"] = { + [1] = { 47.4, 49.6, 28, 10 }, + }, + }, + [175925] = { + ["coords"] = { + [1] = { 48.1, 49.7, 28, 10 }, + }, + }, + [175926] = { + ["coords"] = { + [1] = { 47.8, 50.7, 28, 10 }, + }, + }, + [175927] = { + ["coords"] = { + [1] = { 61, 38.8, 618, 10 }, + }, + }, + [175928] = { + ["coords"] = { + [1] = { 44.8, 97.4, 17, 10 }, + [2] = { 45.8, 97.1, 17, 10 }, + [3] = { 45.3, 97, 17, 10 }, + [4] = { 44.6, 96.8, 17, 10 }, + [5] = { 36.6, 38.8, 400, 10 }, + [6] = { 37.8, 38.2, 400, 10 }, + [7] = { 36.1, 37.4, 400, 10 }, + [8] = { 36.6, 36.2, 400, 10 }, + [9] = { 35.6, 36.2, 400, 10 }, + [10] = { 34.9, 34.8, 400, 10 }, + [11] = { 33.7, 34.1, 400, 10 }, + [12] = { 36.1, 33.5, 400, 10 }, + [13] = { 35, 33.2, 400, 10 }, + [14] = { 33.4, 32.9, 400, 10 }, + }, + }, + [175929] = { + ["coords"] = { + [1] = { 33.1, 36.9, 618, 900 }, + }, + }, + [175930] = { + ["coords"] = { + [1] = { 39.8, 43, 618, 900 }, + }, + }, + [175931] = { + ["coords"] = { + [1] = { 62.4, 36.5, 618, 900 }, + }, + }, + [175932] = { + ["coords"] = { + [1] = { 41.5, 42.7, 618, 900 }, + }, + }, + [175933] = { + ["coords"] = { + [1] = { 51.8, 52.8, 267, 7200 }, + }, + }, + [175944] = { + ["coords"] = { + [1] = { 46.7, 97.9, 17, 180 }, + [2] = { 38.1, 35.4, 400, 180 }, + }, + }, + [175946] = { + ["coords"] = {}, + }, + [175947] = { + ["coords"] = {}, + }, + [175948] = { + ["coords"] = { + [1] = { 28.3, 74.9, 33, 900 }, + }, + }, + [175949] = { + ["coords"] = {}, + }, + [175950] = { + ["coords"] = {}, + }, + [175964] = { + ["coords"] = {}, + }, + [175965] = { + ["coords"] = {}, + }, + [175966] = { + ["coords"] = {}, + }, + [175967] = { + ["coords"] = {}, + }, + [175968] = { + ["coords"] = {}, + }, + [175969] = { + ["coords"] = {}, + }, + [175970] = { + ["coords"] = {}, + }, + [176004] = { + ["coords"] = {}, + }, + [176005] = { + ["coords"] = {}, + }, + [176006] = { + ["coords"] = {}, + }, + [176007] = { + ["coords"] = {}, + }, + [176008] = { + ["coords"] = {}, + }, + [176009] = { + ["coords"] = {}, + }, + [176010] = { + ["coords"] = {}, + }, + [176011] = { + ["coords"] = {}, + }, + [176012] = { + ["coords"] = {}, + }, + [176013] = { + ["coords"] = {}, + }, + [176014] = { + ["coords"] = {}, + }, + [176015] = { + ["coords"] = {}, + }, + [176016] = { + ["coords"] = {}, + }, + [176017] = { + ["coords"] = {}, + }, + [176018] = { + ["coords"] = {}, + }, + [176019] = { + ["coords"] = {}, + }, + [176020] = { + ["coords"] = {}, + }, + [176021] = { + ["coords"] = {}, + }, + [176022] = { + ["coords"] = {}, + }, + [176023] = { + ["coords"] = {}, + }, + [176024] = { + ["coords"] = {}, + }, + [176025] = { + ["coords"] = {}, + }, + [176026] = { + ["coords"] = {}, + }, + [176027] = { + ["coords"] = {}, + }, + [176028] = { + ["coords"] = {}, + }, + [176029] = { + ["coords"] = {}, + }, + [176030] = { + ["coords"] = {}, + }, + [176031] = { + ["coords"] = {}, + }, + [176032] = { + ["coords"] = {}, + }, + [176033] = { + ["coords"] = {}, + }, + [176034] = { + ["coords"] = {}, + }, + [176035] = { + ["coords"] = {}, + }, + [176036] = { + ["coords"] = {}, + }, + [176037] = { + ["coords"] = {}, + }, + [176038] = { + ["coords"] = {}, + }, + [176039] = { + ["coords"] = {}, + }, + [176040] = { + ["coords"] = {}, + }, + [176041] = { + ["coords"] = {}, + }, + [176042] = { + ["coords"] = {}, + }, + [176043] = { + ["coords"] = {}, + }, + [176044] = { + ["coords"] = {}, + }, + [176045] = { + ["coords"] = {}, + }, + [176046] = { + ["coords"] = {}, + }, + [176047] = { + ["coords"] = {}, + }, + [176048] = { + ["coords"] = {}, + }, + [176049] = { + ["coords"] = {}, + }, + [176050] = { + ["coords"] = {}, + }, + [176051] = { + ["coords"] = {}, + }, + [176052] = { + ["coords"] = {}, + }, + [176053] = { + ["coords"] = {}, + }, + [176054] = { + ["coords"] = {}, + }, + [176055] = { + ["coords"] = {}, + }, + [176056] = { + ["coords"] = {}, + }, + [176057] = { + ["coords"] = {}, + }, + [176058] = { + ["coords"] = {}, + }, + [176059] = { + ["coords"] = {}, + }, + [176060] = { + ["coords"] = {}, + }, + [176061] = { + ["coords"] = {}, + }, + [176062] = { + ["coords"] = {}, + }, + [176063] = { + ["coords"] = {}, + }, + [176064] = { + ["coords"] = {}, + }, + [176065] = { + ["coords"] = {}, + }, + [176066] = { + ["coords"] = {}, + }, + [176067] = { + ["coords"] = {}, + }, + [176068] = { + ["coords"] = {}, + }, + [176069] = { + ["coords"] = {}, + }, + [176070] = { + ["coords"] = {}, + }, + [176071] = { + ["coords"] = {}, + }, + [176072] = { + ["coords"] = {}, + }, + [176073] = { + ["coords"] = {}, + }, + [176074] = { + ["coords"] = {}, + }, + [176075] = { + ["coords"] = {}, + }, + [176076] = { + ["coords"] = {}, + }, + [176077] = { + ["coords"] = {}, + }, + [176078] = { + ["coords"] = {}, + }, + [176079] = { + ["coords"] = {}, + }, + [176080] = { + ["coords"] = {}, + }, + [176081] = { + ["coords"] = {}, + }, + [176082] = { + ["coords"] = {}, + }, + [176083] = { + ["coords"] = {}, + }, + [176084] = { + ["coords"] = {}, + }, + [176085] = { + ["coords"] = {}, + }, + [176086] = { + ["coords"] = {}, + }, + [176087] = { + ["coords"] = {}, + }, + [176088] = { + ["coords"] = { + [1] = { 40.7, 51.9, 28, 0 }, + }, + }, + [176089] = { + ["coords"] = {}, + }, + [176090] = { + ["coords"] = {}, + }, + [176091] = { + ["coords"] = { + [1] = { 60.2, 5.8, 361, 180 }, + }, + }, + [176092] = { + ["coords"] = { + [1] = { 26.5, 56.2, 28, 10 }, + [2] = { 83.2, 69.1, 85, 10 }, + }, + }, + [176093] = { + ["coords"] = {}, + }, + [176094] = { + ["coords"] = { + [1] = { 40.3, 71.9, 28, 180 }, + }, + }, + [176095] = { + ["coords"] = { + [1] = { 42.6, 65.8, 28, 180 }, + }, + }, + [176096] = { + ["coords"] = { + [1] = { 43.9, 63.1, 28, 180 }, + }, + }, + [176097] = { + ["coords"] = { + [1] = { 46.7, 71.7, 28, 180 }, + }, + }, + [176098] = { + ["coords"] = {}, + }, + [176099] = { + ["coords"] = {}, + }, + [176100] = { + ["coords"] = {}, + }, + [176101] = { + ["coords"] = {}, + }, + [176102] = { + ["coords"] = {}, + }, + [176103] = { + ["coords"] = {}, + }, + [176104] = { + ["coords"] = {}, + }, + [176105] = { + ["coords"] = {}, + }, + [176106] = { + ["coords"] = {}, + }, + [176107] = { + ["coords"] = {}, + }, + [176108] = { + ["coords"] = {}, + }, + [176109] = { + ["coords"] = {}, + }, + [176110] = { + ["coords"] = {}, + }, + [176111] = { + ["coords"] = {}, + }, + [176112] = { + ["coords"] = {}, + }, + [176113] = { + ["coords"] = { + [1] = { 71.3, 95.1, 406, 900 }, + }, + }, + [176115] = { + ["coords"] = { + [1] = { 46, 50.9, 400, 10 }, + }, + ["fac"] = "H", + }, + [176116] = { + ["coords"] = { + [1] = { 38, 92.5, 139, 10 }, + [2] = { 39.6, 92.5, 139, 10 }, + [3] = { 38.1, 92.2, 139, 10 }, + [4] = { 39.7, 90, 139, 10 }, + }, + }, + [176117] = { + ["coords"] = { + [1] = { 39.6, 92.8, 139, 120 }, + [2] = { 38.6, 92.7, 139, 120 }, + [3] = { 38, 92.6, 139, 120 }, + [4] = { 38, 92.5, 139, 120 }, + [5] = { 39.5, 92.5, 139, 120 }, + [6] = { 39.6, 92.5, 139, 120 }, + [7] = { 38.1, 92.2, 139, 120 }, + [8] = { 38.2, 92.1, 139, 120 }, + [9] = { 39.7, 90.3, 139, 120 }, + [10] = { 39.7, 90, 139, 120 }, + [11] = { 39.6, 90, 139, 120 }, + [12] = { 39.5, 90, 139, 120 }, + }, + }, + [176142] = { + ["coords"] = { + [1] = { 39.6, 92.8, 139, 10 }, + [2] = { 38.2, 92.1, 139, 10 }, + [3] = { 39.7, 90.3, 139, 10 }, + }, + }, + [176143] = { + ["coords"] = { + [1] = { 38.6, 92.7, 139, 10 }, + [2] = { 38, 92.6, 139, 10 }, + [3] = { 39.5, 92.5, 139, 10 }, + [4] = { 39.5, 90, 139, 10 }, + }, + }, + [176145] = { + ["coords"] = { + [1] = { 49.7, 76.8, 28, 10 }, + }, + }, + [176146] = { + ["coords"] = { + [1] = { 29.1, 93.6, 1377, 600 }, + }, + }, + [176147] = { + ["coords"] = { + [1] = { 29.1, 93.6, 1377, 600 }, + }, + }, + [176148] = { + ["coords"] = { + [1] = { 29.1, 93.6, 1377, 600 }, + }, + }, + [176149] = { + ["coords"] = {}, + }, + [176150] = { + ["coords"] = { + [1] = { 43.5, 70.1, 28, 60 }, + [2] = { 43.4, 70, 28, 60 }, + [3] = { 43.6, 70, 28, 60 }, + [4] = { 43.4, 69.7, 28, 60 }, + [5] = { 43.4, 69.5, 28, 60 }, + [6] = { 43.6, 69.3, 28, 60 }, + [7] = { 43.4, 69.2, 28, 60 }, + [8] = { 43.5, 69.1, 28, 60 }, + [9] = { 43.6, 68.8, 28, 60 }, + [10] = { 43.4, 68.8, 28, 60 }, + }, + }, + [176151] = { + ["coords"] = { + [1] = { 43.5, 70.1, 28, 60 }, + [2] = { 43.4, 70, 28, 60 }, + [3] = { 43.6, 70, 28, 60 }, + [4] = { 43.4, 69.7, 28, 60 }, + [5] = { 43.4, 69.5, 28, 60 }, + [6] = { 43.6, 69.3, 28, 60 }, + [7] = { 43.4, 69.2, 28, 60 }, + [8] = { 43.5, 69.1, 28, 60 }, + [9] = { 43.6, 68.8, 28, 60 }, + [10] = { 43.4, 68.8, 28, 60 }, + }, + }, + [176152] = { + ["coords"] = { + [1] = { 43.5, 70.1, 28, 60 }, + [2] = { 43.4, 70, 28, 60 }, + [3] = { 43.6, 70, 28, 60 }, + [4] = { 43.4, 69.7, 28, 60 }, + [5] = { 43.4, 69.5, 28, 60 }, + [6] = { 43.6, 69.3, 28, 60 }, + [7] = { 43.4, 69.2, 28, 60 }, + [8] = { 43.5, 69.1, 28, 60 }, + [9] = { 43.6, 68.8, 28, 60 }, + [10] = { 43.4, 68.8, 28, 60 }, + }, + }, + [176157] = { + ["coords"] = { + [1] = { 36.3, 44.3, 361, 180 }, + }, + }, + [176158] = { + ["coords"] = { + [1] = { 36.3, 56.3, 361, 180 }, + }, + }, + [176159] = { + ["coords"] = { + [1] = { 37.7, 52.7, 361, 180 }, + }, + }, + [176160] = { + ["coords"] = { + [1] = { 36.7, 53.3, 361, 180 }, + }, + }, + [176161] = { + ["coords"] = { + [1] = { 36.5, 55.2, 361, 180 }, + }, + }, + [176163] = { + ["coords"] = { + [1] = { 52.6, 55.8, 618, 900 }, + }, + }, + [176164] = { + ["coords"] = { + [1] = { 52.6, 55.8, 618, 900 }, + }, + ["fac"] = "AH", + }, + [176165] = { + ["coords"] = { + [1] = { 54.4, 51.2, 618, 900 }, + }, + ["fac"] = "AH", + }, + [176166] = { + ["coords"] = { + [1] = { 54.4, 51.2, 618, 900 }, + }, + }, + [176184] = { + ["coords"] = { + [1] = { 50.7, 80, 148, 180 }, + [2] = { 35.2, 59.8, 361, 180 }, + }, + }, + [176186] = { + ["coords"] = { + [1] = { 68.7, 73.7, 28, 1200 }, + }, + }, + [176187] = { + ["coords"] = { + [1] = { 68.5, 76.6, 28, 1200 }, + }, + }, + [176188] = { + ["coords"] = { + [1] = { 38, 54.9, 361, 180 }, + [2] = { 37.9, 54.8, 361, 180 }, + [3] = { 38, 54.8, 361, 180 }, + [4] = { 37.8, 54.8, 361, 180 }, + [5] = { 38.1, 54.7, 361, 180 }, + [6] = { 37.7, 54.7, 361, 180 }, + [7] = { 37.7, 54.6, 361, 180 }, + [8] = { 38.2, 54.5, 361, 180 }, + [9] = { 37.7, 54.4, 361, 180 }, + [10] = { 38.1, 54.3, 361, 180 }, + [11] = { 37.7, 54.2, 361, 180 }, + [12] = { 38, 54.1, 361, 180 }, + [13] = { 37.8, 54.1, 361, 180 }, + }, + }, + [176189] = { + ["coords"] = { + [1] = { 31.8, 46.3, 148, 0 }, + }, + }, + [176190] = { + ["coords"] = { + [1] = { 37.1, 62.2, 148, 10 }, + }, + }, + [176191] = { + ["coords"] = { + [1] = { 31.2, 85.6, 148, 900 }, + }, + }, + [176192] = { + ["coords"] = { + [1] = { 39.3, 66.6, 28, 10 }, + }, + }, + [176193] = { + ["coords"] = {}, + }, + [176194] = { + ["coords"] = {}, + }, + [176195] = { + ["coords"] = { + [1] = { 40, 93.3, 17, 180 }, + [2] = { 22.7, 24.6, 400, 180 }, + }, + }, + [176196] = { + ["coords"] = { + [1] = { 53.1, 18.1, 148, 900 }, + }, + ["fac"] = "A", + }, + [176197] = { + ["coords"] = { + [1] = { 44.2, 20.6, 148, 900 }, + }, + ["fac"] = "A", + }, + [176198] = { + ["coords"] = { + [1] = { 31.7, 83.7, 148, 900 }, + }, + }, + [176200] = { + ["coords"] = { + [1] = { 26.6, 56.9, 28, 900 }, + [2] = { 83.3, 69.8, 85, 900 }, + }, + }, + [176201] = { + ["coords"] = { + [1] = { 26.5, 56.1, 28, 900 }, + [2] = { 83.1, 69, 85, 900 }, + }, + }, + [176202] = { + ["coords"] = { + [1] = { 26.5, 55.5, 28, 900 }, + [2] = { 83.1, 68.4, 85, 900 }, + }, + }, + [176203] = { + ["coords"] = { + [1] = { 26.5, 58.5, 28, 900 }, + [2] = { 83.1, 71.3, 85, 900 }, + }, + }, + [176204] = { + ["coords"] = { + [1] = { 26.3, 59.1, 28, 900 }, + [2] = { 83, 71.9, 85, 900 }, + }, + }, + [176206] = { + ["coords"] = { + [1] = { 42.5, 19, 28, 10 }, + }, + }, + [176207] = { + ["coords"] = { + [1] = { 63.8, 57.2, 28, 10 }, + }, + }, + [176208] = { + ["coords"] = { + [1] = { 51.1, 49.9, 139, 10 }, + }, + }, + [176209] = { + ["coords"] = { + [1] = { 53.9, 65.8, 139, 10 }, + }, + }, + [176210] = { + ["coords"] = { + [1] = { 40.7, 51.9, 28, 1200 }, + }, + }, + [176211] = { + ["coords"] = {}, + }, + [176213] = { + ["coords"] = { + [1] = { 68.4, 77, 28, 7200 }, + [2] = { 63.6, 75.4, 28, 7200 }, + [3] = { 68.8, 73.6, 28, 7200 }, + [4] = { 40.6, 73, 28, 7200 }, + [5] = { 83.2, 72.6, 28, 7200 }, + [6] = { 69.3, 72.4, 28, 7200 }, + [7] = { 45.9, 71.5, 28, 7200 }, + [8] = { 41.8, 70.6, 28, 7200 }, + [9] = { 43.6, 70.4, 28, 7200 }, + [10] = { 47.6, 69.9, 28, 7200 }, + [11] = { 39.7, 69.5, 28, 7200 }, + [12] = { 43.3, 68.2, 28, 7200 }, + [13] = { 49.3, 68.2, 28, 7200 }, + [14] = { 47, 67.2, 28, 7200 }, + [15] = { 57.8, 66.5, 28, 7200 }, + [16] = { 44.3, 65, 28, 7200 }, + [17] = { 82.4, 64.4, 28, 7200 }, + [18] = { 53, 64.3, 28, 7200 }, + [19] = { 42.9, 64.1, 28, 7200 }, + [20] = { 53.5, 63.4, 28, 7200 }, + [21] = { 41.5, 62.1, 28, 7200 }, + [22] = { 26.2, 60.1, 28, 7200 }, + [23] = { 47, 60, 28, 7200 }, + [24] = { 63.2, 59.1, 28, 7200 }, + [25] = { 26.3, 58.7, 28, 7200 }, + [26] = { 62.1, 58.4, 28, 7200 }, + [27] = { 62.9, 58, 28, 7200 }, + [28] = { 64.1, 57.8, 28, 7200 }, + [29] = { 35.9, 57.3, 28, 7200 }, + [30] = { 63, 57.3, 28, 7200 }, + [31] = { 38.3, 56.3, 28, 7200 }, + [32] = { 52.4, 55, 28, 7200 }, + [33] = { 67, 53.8, 28, 7200 }, + [34] = { 36.5, 53.7, 28, 7200 }, + [35] = { 44.6, 53.4, 28, 7200 }, + [36] = { 45.9, 51, 28, 7200 }, + [37] = { 68.7, 49.1, 28, 7200 }, + [38] = { 64, 48.8, 28, 7200 }, + [39] = { 73.3, 43.2, 28, 7200 }, + [40] = { 56.7, 34.8, 28, 7200 }, + [41] = { 67.7, 33.9, 28, 7200 }, + [42] = { 49.7, 33.3, 28, 7200 }, + [43] = { 82.9, 72.8, 85, 7200 }, + [44] = { 83, 71.5, 85, 7200 }, + [45] = { 25.2, 97.4, 139, 7200 }, + [46] = { 24.3, 88.4, 139, 7200 }, + [47] = { 68.9, 83.4, 139, 7200 }, + [48] = { 73.4, 82.2, 139, 7200 }, + [49] = { 57, 81.9, 139, 7200 }, + [50] = { 64.7, 81.1, 139, 7200 }, + [51] = { 70.7, 80.9, 139, 7200 }, + [52] = { 59.3, 80.7, 139, 7200 }, + [53] = { 68.8, 80.7, 139, 7200 }, + [54] = { 34.1, 80.3, 139, 7200 }, + [55] = { 48, 80, 139, 7200 }, + [56] = { 41.5, 79.7, 139, 7200 }, + [57] = { 58.2, 79.7, 139, 7200 }, + [58] = { 58.6, 79.5, 139, 7200 }, + [59] = { 29.3, 78.8, 139, 7200 }, + [60] = { 68.6, 78.5, 139, 7200 }, + [61] = { 72.2, 78.4, 139, 7200 }, + [62] = { 76.2, 78.3, 139, 7200 }, + [63] = { 50.4, 77.3, 139, 7200 }, + [64] = { 73.3, 77.1, 139, 7200 }, + [65] = { 34.5, 76.8, 139, 7200 }, + [66] = { 73.6, 76.7, 139, 7200 }, + [67] = { 57.7, 76.2, 139, 7200 }, + [68] = { 56.5, 76.2, 139, 7200 }, + [69] = { 59.4, 76.1, 139, 7200 }, + [70] = { 35.9, 75.8, 139, 7200 }, + [71] = { 42.4, 75.7, 139, 7200 }, + [72] = { 27, 75.5, 139, 7200 }, + [73] = { 71.1, 75.2, 139, 7200 }, + [74] = { 46.6, 74.8, 139, 7200 }, + [75] = { 25.9, 74.6, 139, 7200 }, + [76] = { 68.2, 74.5, 139, 7200 }, + [77] = { 21.6, 73.9, 139, 7200 }, + [78] = { 76.6, 72.6, 139, 7200 }, + [79] = { 57.5, 71.9, 139, 7200 }, + [80] = { 69, 71.5, 139, 7200 }, + [81] = { 31.9, 71, 139, 7200 }, + [82] = { 46.2, 70.7, 139, 7200 }, + [83] = { 36.8, 70.7, 139, 7200 }, + [84] = { 68.2, 70.5, 139, 7200 }, + [85] = { 51.9, 70.2, 139, 7200 }, + [86] = { 61.7, 70.1, 139, 7200 }, + [87] = { 26.8, 69.5, 139, 7200 }, + [88] = { 70.6, 69.4, 139, 7200 }, + [89] = { 37.6, 68.3, 139, 7200 }, + [90] = { 34.2, 67.8, 139, 7200 }, + [91] = { 60, 67.5, 139, 7200 }, + [92] = { 78.7, 67.3, 139, 7200 }, + [93] = { 67.6, 66.9, 139, 7200 }, + [94] = { 20.5, 66.8, 139, 7200 }, + [95] = { 37, 65.7, 139, 7200 }, + [96] = { 30.9, 65.6, 139, 7200 }, + [97] = { 64.7, 65.3, 139, 7200 }, + [98] = { 58.5, 64.9, 139, 7200 }, + [99] = { 14.2, 64.8, 139, 7200 }, + [100] = { 27.3, 64.2, 139, 7200 }, + [101] = { 56.3, 63.9, 139, 7200 }, + [102] = { 78.9, 63.5, 139, 7200 }, + [103] = { 59.3, 62.3, 139, 7200 }, + [104] = { 74.7, 58.9, 139, 7200 }, + [105] = { 55.4, 58.6, 139, 7200 }, + [106] = { 78.4, 57.4, 139, 7200 }, + [107] = { 75.7, 55.3, 139, 7200 }, + [108] = { 8, 54.4, 139, 7200 }, + [109] = { 38.6, 54, 139, 7200 }, + [110] = { 73.8, 51, 139, 7200 }, + [111] = { 53.4, 50.8, 139, 7200 }, + [112] = { 76.2, 50.6, 139, 7200 }, + [113] = { 49.1, 35.3, 139, 7200 }, + [114] = { 44.9, 33, 139, 7200 }, + [115] = { 33.6, 32.6, 139, 7200 }, + [116] = { 38.7, 26.7, 139, 7200 }, + [117] = { 38.8, 26.6, 139, 7200 }, + [118] = { 34.5, 25.9, 139, 7200 }, + }, + }, + [176214] = { + ["coords"] = { + [1] = { 68.4, 77, 28, 7200 }, + [2] = { 68.8, 73.6, 28, 7200 }, + [3] = { 40.6, 73, 28, 7200 }, + [4] = { 69.3, 72.4, 28, 7200 }, + [5] = { 45.9, 71.5, 28, 7200 }, + [6] = { 41.8, 70.6, 28, 7200 }, + [7] = { 43.6, 70.4, 28, 7200 }, + [8] = { 47.6, 69.9, 28, 7200 }, + [9] = { 47, 67.2, 28, 7200 }, + [10] = { 82.4, 64.4, 28, 7200 }, + [11] = { 53, 64.3, 28, 7200 }, + [12] = { 42.9, 64.1, 28, 7200 }, + [13] = { 41.5, 62.1, 28, 7200 }, + [14] = { 47, 60, 28, 7200 }, + [15] = { 62.9, 58, 28, 7200 }, + [16] = { 38.3, 56.3, 28, 7200 }, + [17] = { 52.4, 55, 28, 7200 }, + [18] = { 67, 53.8, 28, 7200 }, + [19] = { 36.5, 53.7, 28, 7200 }, + [20] = { 44.6, 53.4, 28, 7200 }, + [21] = { 45.9, 51, 28, 7200 }, + [22] = { 68.7, 49.1, 28, 7200 }, + [23] = { 64, 48.8, 28, 7200 }, + [24] = { 73.3, 43.2, 28, 7200 }, + [25] = { 49.7, 33.3, 28, 7200 }, + [26] = { 24.3, 88.4, 139, 7200 }, + [27] = { 68.9, 83.4, 139, 7200 }, + [28] = { 57, 81.9, 139, 7200 }, + [29] = { 64.7, 81.1, 139, 7200 }, + [30] = { 70.7, 80.9, 139, 7200 }, + [31] = { 59.3, 80.7, 139, 7200 }, + [32] = { 68.8, 80.7, 139, 7200 }, + [33] = { 34.1, 80.3, 139, 7200 }, + [34] = { 48, 80, 139, 7200 }, + [35] = { 58.2, 79.7, 139, 7200 }, + [36] = { 58.6, 79.5, 139, 7200 }, + [37] = { 29.3, 78.8, 139, 7200 }, + [38] = { 68.6, 78.5, 139, 7200 }, + [39] = { 72.2, 78.4, 139, 7200 }, + [40] = { 50.4, 77.3, 139, 7200 }, + [41] = { 73.3, 77.1, 139, 7200 }, + [42] = { 34.5, 76.8, 139, 7200 }, + [43] = { 73.6, 76.7, 139, 7200 }, + [44] = { 57.7, 76.2, 139, 7200 }, + [45] = { 56.5, 76.2, 139, 7200 }, + [46] = { 59.4, 76.1, 139, 7200 }, + [47] = { 35.9, 75.8, 139, 7200 }, + [48] = { 42.4, 75.7, 139, 7200 }, + [49] = { 27, 75.5, 139, 7200 }, + [50] = { 46.6, 74.8, 139, 7200 }, + [51] = { 25.9, 74.6, 139, 7200 }, + [52] = { 68.2, 74.5, 139, 7200 }, + [53] = { 21.6, 73.9, 139, 7200 }, + [54] = { 76.6, 72.6, 139, 7200 }, + [55] = { 57.5, 71.9, 139, 7200 }, + [56] = { 31.9, 71, 139, 7200 }, + [57] = { 36.8, 70.7, 139, 7200 }, + [58] = { 68.2, 70.5, 139, 7200 }, + [59] = { 51.9, 70.2, 139, 7200 }, + [60] = { 61.7, 70.1, 139, 7200 }, + [61] = { 26.8, 69.5, 139, 7200 }, + [62] = { 70.6, 69.4, 139, 7200 }, + [63] = { 37.6, 68.3, 139, 7200 }, + [64] = { 34.2, 67.8, 139, 7200 }, + [65] = { 60, 67.5, 139, 7200 }, + [66] = { 67.6, 66.9, 139, 7200 }, + [67] = { 20.5, 66.8, 139, 7200 }, + [68] = { 37, 65.7, 139, 7200 }, + [69] = { 30.9, 65.6, 139, 7200 }, + [70] = { 64.7, 65.3, 139, 7200 }, + [71] = { 58.5, 64.9, 139, 7200 }, + [72] = { 14.2, 64.8, 139, 7200 }, + [73] = { 27.3, 64.2, 139, 7200 }, + [74] = { 56.3, 63.9, 139, 7200 }, + [75] = { 78.9, 63.5, 139, 7200 }, + [76] = { 59.3, 62.3, 139, 7200 }, + [77] = { 74.7, 58.9, 139, 7200 }, + [78] = { 55.4, 58.6, 139, 7200 }, + [79] = { 78.4, 57.4, 139, 7200 }, + [80] = { 75.7, 55.3, 139, 7200 }, + [81] = { 38.6, 54, 139, 7200 }, + [82] = { 73.8, 51, 139, 7200 }, + [83] = { 53.4, 50.8, 139, 7200 }, + [84] = { 76.2, 50.6, 139, 7200 }, + [85] = { 49.1, 35.3, 139, 7200 }, + [86] = { 33.6, 32.6, 139, 7200 }, + [87] = { 38.8, 26.6, 139, 7200 }, + [88] = { 34.5, 25.9, 139, 7200 }, + }, + }, + [176215] = { + ["coords"] = {}, + }, + [176216] = { + ["coords"] = {}, + }, + [176217] = { + ["coords"] = {}, + }, + [176224] = { + ["coords"] = {}, + }, + [176225] = { + ["coords"] = { + [1] = { 37.8, 52.8, 361, 180 }, + }, + }, + [176226] = { + ["coords"] = { + [1] = { 38.9, 93.7, 405, 900 }, + }, + }, + [176227] = { + ["coords"] = { + [1] = { 43.5, 0.9, 357, 900 }, + [2] = { 40.4, 95.4, 405, 900 }, + }, + }, + [176228] = { + ["coords"] = { + [1] = { 40.1, 93.8, 405, 900 }, + }, + }, + [176229] = { + ["coords"] = { + [1] = { 40.2, 91.7, 405, 900 }, + }, + }, + [176230] = { + ["coords"] = { + [1] = { 42.5, 0.9, 357, 900 }, + [2] = { 38.9, 95.4, 405, 900 }, + }, + }, + [176231] = { + ["coords"] = {}, + }, + [176232] = { + ["coords"] = { + [1] = { 78.2, 57.5, 1519, 900 }, + }, + }, + [176233] = { + ["coords"] = { + [1] = { 78.3, 57.7, 1519, 900 }, + }, + }, + [176234] = { + ["coords"] = { + [1] = { 78.3, 57.3, 1519, 900 }, + }, + }, + [176235] = { + ["coords"] = { + [1] = { 78.5, 57.4, 1519, 900 }, + }, + }, + [176236] = { + ["coords"] = { + [1] = { 78.5, 57.7, 1519, 900 }, + }, + }, + [176237] = { + ["coords"] = { + [1] = { 78.6, 57.6, 1519, 900 }, + }, + }, + [176238] = { + ["coords"] = { + [1] = { 78.1, 57.5, 1519, 900 }, + }, + }, + [176239] = { + ["coords"] = { + [1] = { 78.2, 57.7, 1519, 900 }, + }, + }, + [176240] = { + ["coords"] = { + [1] = { 78.4, 57.8, 1519, 900 }, + }, + }, + [176241] = { + ["coords"] = { + [1] = { 78.5, 57.6, 1519, 900 }, + }, + }, + [176242] = { + ["coords"] = { + [1] = { 76.4, 59.5, 1519, 900 }, + }, + }, + [176243] = { + ["coords"] = { + [1] = { 76.3, 60.4, 1519, 900 }, + }, + }, + [176244] = { + ["coords"] = {}, + }, + [176245] = { + ["coords"] = {}, + }, + [176247] = { + ["coords"] = { + [1] = { 36.4, 90.8, 139, 0 }, + }, + }, + [176248] = { + ["coords"] = {}, + }, + [176249] = { + ["coords"] = {}, + }, + [176264] = { + ["coords"] = { + [1] = { 30.6, 27.9, 139, 900 }, + }, + }, + [176265] = { + ["coords"] = {}, + }, + [176266] = { + ["coords"] = { + [1] = { 43, 37.8, 139, 900 }, + }, + }, + [176267] = { + ["coords"] = { + [1] = { 39.3, 51.3, 139, 900 }, + }, + }, + [176268] = { + ["coords"] = { + [1] = { 40.9, 50.4, 139, 900 }, + }, + }, + [176269] = { + ["coords"] = { + [1] = { 72.2, 58.5, 139, 900 }, + }, + }, + [176270] = { + ["coords"] = { + [1] = { 33.8, 75.3, 139, 900 }, + }, + }, + [176271] = { + ["coords"] = { + [1] = { 45.4, 65.8, 139, 900 }, + }, + }, + [176272] = { + ["coords"] = { + [1] = { 83.2, 39, 139, 900 }, + }, + }, + [176273] = { + ["coords"] = { + [1] = { 87.8, 39, 139, 900 }, + }, + }, + [176274] = { + ["coords"] = { + [1] = { 87.7, 39, 139, 900 }, + }, + }, + [176275] = { + ["coords"] = { + [1] = { 85.7, 46.1, 139, 900 }, + }, + }, + [176276] = { + ["coords"] = { + [1] = { 81.5, 59.7, 139, 900 }, + }, + }, + [176277] = { + ["coords"] = { + [1] = { 80.5, 57.9, 139, 900 }, + }, + }, + [176278] = { + ["coords"] = { + [1] = { 58.5, 48.2, 357, 900 }, + }, + }, + [176279] = { + ["coords"] = { + [1] = { 60.3, 45.8, 357, 900 }, + }, + }, + [176280] = { + ["coords"] = { + [1] = { 60.9, 44.3, 357, 900 }, + }, + }, + [176281] = { + ["coords"] = { + [1] = { 59.9, 46.4, 357, 900 }, + }, + }, + [176282] = { + ["coords"] = { + [1] = { 58.4, 45.9, 357, 900 }, + }, + }, + [176283] = { + ["coords"] = { + [1] = { 56.1, 45.2, 357, 900 }, + }, + }, + [176284] = { + ["coords"] = { + [1] = { 57.1, 44.2, 357, 900 }, + }, + }, + [176285] = { + ["coords"] = { + [1] = { 58.5, 44, 357, 900 }, + }, + }, + [176286] = { + ["coords"] = { + [1] = { 58.6, 44.3, 357, 900 }, + }, + }, + [176287] = { + ["coords"] = { + [1] = { 62.6, 45.5, 357, 900 }, + }, + }, + [176288] = { + ["coords"] = { + [1] = { 61.4, 44.4, 357, 900 }, + }, + }, + [176289] = { + ["coords"] = { + [1] = { 57.8, 25.7, 148, 900 }, + }, + }, + [176290] = { + ["coords"] = { + [1] = { 55.3, 26.5, 148, 900 }, + }, + }, + [176291] = { + ["coords"] = { + [1] = { 57.3, 26.2, 148, 900 }, + }, + }, + [176292] = { + ["coords"] = { + [1] = { 56.5, 27.3, 148, 900 }, + }, + }, + [176293] = { + ["coords"] = { + [1] = { 56.9, 27.4, 148, 900 }, + }, + }, + [176294] = { + ["coords"] = { + [1] = { 55, 27.9, 148, 900 }, + }, + }, + [176295] = { + ["coords"] = {}, + }, + [176296] = { + ["coords"] = {}, + ["fac"] = "A", + }, + [176304] = { + ["coords"] = {}, + }, + [176305] = { + ["coords"] = { + [1] = { 37.8, 45.9, 361, 180 }, + }, + }, + [176306] = { + ["coords"] = { + [1] = { 36.2, 55.5, 361, 180 }, + }, + }, + [176307] = { + ["coords"] = {}, + }, + [176308] = { + ["coords"] = {}, + }, + [176309] = { + ["coords"] = {}, + }, + [176310] = { + ["coords"] = {}, + }, + [176311] = { + ["coords"] = { + [1] = { 62.4, 83.1, 36, 7200 }, + [2] = { 63.5, 21.1, 267, 7200 }, + }, + }, + [176312] = { + ["coords"] = { + [1] = { 62.6, 82.6, 36, 7200 }, + [2] = { 63.6, 20.7, 267, 7200 }, + }, + }, + [176313] = { + ["coords"] = { + [1] = { 62.2, 82.3, 36, 7200 }, + [2] = { 63.3, 20.5, 267, 7200 }, + }, + }, + [176314] = { + ["coords"] = { + [1] = { 62.3, 82.4, 36, 7200 }, + [2] = { 63.4, 20.6, 267, 7200 }, + }, + }, + [176315] = { + ["coords"] = { + [1] = { 62.1, 83, 36, 7200 }, + [2] = { 63.2, 21, 267, 7200 }, + }, + }, + [176316] = { + ["coords"] = { + [1] = { 62.3, 83, 36, 7200 }, + [2] = { 63.4, 21.1, 267, 7200 }, + }, + }, + [176317] = { + ["coords"] = { + [1] = { 81.8, 58, 139, 10 }, + }, + }, + [176318] = { + ["coords"] = { + [1] = { 59.8, 49.8, 357, 900 }, + }, + }, + [176319] = { + ["coords"] = { + [1] = { 65.4, 6.8, 405, 900 }, + [2] = { 40, 82, 406, 900 }, + }, + ["fac"] = "A", + }, + [176324] = { + ["coords"] = { + [1] = { 45.9, 51.1, 400, 180 }, + }, + ["fac"] = "H", + }, + [176325] = { + ["coords"] = {}, + }, + [176326] = { + ["coords"] = { + [1] = { 40, 49.3, 361, 180 }, + }, + }, + [176327] = { + ["coords"] = {}, + }, + [176344] = { + ["coords"] = { + [1] = { 44, 96.7, 17, 180 }, + [2] = { 39.3, 41.5, 400, 180 }, + [3] = { 33.8, 40, 400, 180 }, + [4] = { 31.8, 32.6, 400, 180 }, + }, + }, + [176346] = { + ["coords"] = {}, + }, + [176348] = { + ["coords"] = { + [1] = { 51.4, 27.6, 440, 900 }, + }, + }, + [176349] = { + ["coords"] = {}, + }, + [176350] = { + ["coords"] = {}, + }, + [176351] = { + ["coords"] = {}, + }, + [176352] = { + ["coords"] = {}, + }, + [176353] = { + ["coords"] = {}, + }, + [176356] = { + ["coords"] = { + [1] = { 41.5, 52.5, 16, 180 }, + }, + }, + [176360] = { + ["coords"] = {}, + }, + [176361] = { + ["coords"] = { + [1] = { 37.2, 56.8, 28, 10 }, + }, + }, + [176364] = { + ["coords"] = { + [1] = { 32.7, 41.8, 148, 900 }, + }, + }, + [176365] = { + ["coords"] = { + [1] = { 32.7, 41.8, 148, 900 }, + }, + }, + [176369] = { + ["coords"] = { + [1] = { 8.3, 59.1, 11, 7200 }, + }, + }, + [176370] = { + ["coords"] = { + [1] = { 8.3, 59.1, 11, 7200 }, + }, + }, + [176371] = { + ["coords"] = {}, + }, + [176372] = { + ["coords"] = {}, + }, + [176373] = { + ["coords"] = {}, + }, + [176374] = { + ["coords"] = {}, + }, + [176375] = { + ["coords"] = {}, + }, + [176376] = { + ["coords"] = {}, + }, + [176377] = { + ["coords"] = {}, + }, + [176378] = { + ["coords"] = {}, + }, + [176379] = { + ["coords"] = {}, + }, + [176380] = { + ["coords"] = {}, + }, + [176381] = { + ["coords"] = {}, + }, + [176382] = { + ["coords"] = {}, + }, + [176383] = { + ["coords"] = {}, + }, + [176384] = { + ["coords"] = {}, + }, + [176385] = { + ["coords"] = {}, + }, + [176386] = { + ["coords"] = {}, + }, + [176387] = { + ["coords"] = {}, + }, + [176388] = { + ["coords"] = {}, + }, + [176389] = { + ["coords"] = { + [1] = { 83.1, 43.2, 139, 900 }, + }, + }, + [176390] = { + ["coords"] = { + [1] = { 85.8, 43.8, 139, 900 }, + }, + }, + [176392] = { + ["coords"] = { + [1] = { 62.5, 58.5, 28, 1200 }, + }, + }, + [176393] = { + ["coords"] = { + [1] = { 53, 65.6, 28, 1200 }, + }, + }, + [176404] = { + ["coords"] = { + [1] = { 61.3, 38.6, 618, 900 }, + }, + }, + [176424] = { + ["coords"] = {}, + }, + [176425] = { + ["coords"] = {}, + }, + [176426] = { + ["coords"] = {}, + }, + [176427] = { + ["coords"] = {}, + }, + [176428] = { + ["coords"] = {}, + }, + [176429] = { + ["coords"] = {}, + }, + [176430] = { + ["coords"] = {}, + }, + [176431] = { + ["coords"] = {}, + }, + [176432] = { + ["coords"] = {}, + }, + [176433] = { + ["coords"] = {}, + }, + [176434] = { + ["coords"] = {}, + }, + [176435] = { + ["coords"] = {}, + }, + [176436] = { + ["coords"] = {}, + }, + [176437] = { + ["coords"] = {}, + }, + [176438] = { + ["coords"] = {}, + }, + [176439] = { + ["coords"] = {}, + }, + [176440] = { + ["coords"] = {}, + }, + [176441] = { + ["coords"] = {}, + }, + [176442] = { + ["coords"] = {}, + }, + [176443] = { + ["coords"] = {}, + }, + [176444] = { + ["coords"] = {}, + }, + [176445] = { + ["coords"] = {}, + }, + [176446] = { + ["coords"] = {}, + }, + [176447] = { + ["coords"] = {}, + }, + [176448] = { + ["coords"] = {}, + }, + [176449] = { + ["coords"] = {}, + }, + [176450] = { + ["coords"] = {}, + }, + [176451] = { + ["coords"] = {}, + }, + [176452] = { + ["coords"] = {}, + }, + [176454] = { + ["coords"] = {}, + }, + [176455] = { + ["coords"] = {}, + }, + [176456] = { + ["coords"] = {}, + }, + [176457] = { + ["coords"] = {}, + }, + [176458] = { + ["coords"] = {}, + }, + [176459] = { + ["coords"] = {}, + }, + [176460] = { + ["coords"] = {}, + }, + [176461] = { + ["coords"] = {}, + }, + [176462] = { + ["coords"] = {}, + }, + [176463] = { + ["coords"] = {}, + }, + [176464] = { + ["coords"] = { + [1] = { 52.3, 34.2, 41, 900 }, + }, + }, + [176484] = { + ["coords"] = {}, + }, + [176485] = { + ["coords"] = {}, + }, + [176486] = { + ["coords"] = {}, + }, + [176487] = { + ["coords"] = {}, + }, + [176488] = { + ["coords"] = { + [1] = { 30.9, 28.3, 33, 900 }, + }, + }, + [176489] = { + ["coords"] = { + [1] = { 32.7, 28.9, 33, 900 }, + }, + }, + [176490] = { + ["coords"] = { + [1] = { 33, 28.5, 33, 900 }, + }, + }, + [176491] = { + ["coords"] = { + [1] = { 31, 28.7, 33, 900 }, + }, + }, + [176492] = { + ["coords"] = { + [1] = { 32.1, 26.9, 33, 900 }, + }, + }, + [176493] = { + ["coords"] = { + [1] = { 31.8, 27, 33, 900 }, + }, + }, + [176495] = { + ["coords"] = {}, + }, + [176496] = { + ["coords"] = { + [1] = { 31.6, 29.1, 33, 900 }, + }, + }, + [176497] = { + ["coords"] = {}, + ["fac"] = "A", + }, + [176498] = { + ["coords"] = {}, + ["fac"] = "A", + }, + [176499] = { + ["coords"] = {}, + ["fac"] = "H", + }, + [176500] = { + ["coords"] = {}, + ["fac"] = "H", + }, + [176501] = { + ["coords"] = {}, + ["fac"] = "H", + }, + [176504] = { + ["coords"] = { + [1] = { 32.6, 29.4, 33, 900 }, + }, + }, + [176505] = { + ["coords"] = {}, + }, + [176506] = { + ["coords"] = { + [1] = { 47.1, 64.5, 406, 900 }, + }, + }, + [176507] = { + ["coords"] = { + [1] = { 46, 58.7, 406, 900 }, + }, + }, + [176508] = { + ["coords"] = { + [1] = { 45.9, 59.2, 406, 900 }, + }, + }, + [176509] = { + ["coords"] = { + [1] = { 45.9, 59.2, 406, 900 }, + }, + }, + [176510] = { + ["coords"] = {}, + }, + [176511] = { + ["coords"] = {}, + }, + [176513] = { + ["coords"] = {}, + }, + [176514] = { + ["coords"] = {}, + }, + [176515] = { + ["coords"] = {}, + }, + [176516] = { + ["coords"] = { + [1] = { 37, 66, 1637, 900 }, + }, + }, + [176517] = { + ["coords"] = { + [1] = { 37.3, 65.1, 1637, 900 }, + }, + }, + [176518] = { + ["coords"] = { + [1] = { 38, 64.9, 1637, 900 }, + }, + }, + [176519] = { + ["coords"] = { + [1] = { 37.2, 67, 1637, 900 }, + }, + }, + [176520] = { + ["coords"] = { + [1] = { 38.4, 67.2, 1637, 900 }, + }, + }, + [176521] = { + ["coords"] = { + [1] = { 38.8, 66.2, 1637, 900 }, + }, + }, + [176544] = { + ["coords"] = {}, + }, + [176545] = { + ["coords"] = {}, + }, + [176546] = { + ["coords"] = {}, + }, + [176547] = { + ["coords"] = {}, + }, + [176549] = { + ["coords"] = { + [1] = { 50.5, 16.9, 33, 900 }, + }, + }, + [176550] = { + ["coords"] = { + [1] = { 50.5, 16.6, 33, 900 }, + }, + }, + [176551] = { + ["coords"] = { + [1] = { 51.3, 16.9, 33, 900 }, + }, + }, + [176552] = { + ["coords"] = { + [1] = { 51.3, 16.6, 33, 900 }, + }, + }, + [176553] = { + ["coords"] = { + [1] = { 50.6, 18.2, 33, 900 }, + }, + }, + [176554] = { + ["coords"] = { + [1] = { 50.6, 18.4, 33, 900 }, + }, + }, + [176555] = { + ["coords"] = { + [1] = { 51.3, 18.5, 33, 900 }, + }, + }, + [176556] = { + ["coords"] = { + [1] = { 51.3, 18.3, 33, 900 }, + }, + }, + [176557] = { + ["coords"] = { + [1] = { 41.2, 65.6, 1, 900 }, + }, + }, + [176558] = { + ["coords"] = { + [1] = { 52.9, 60.8, 41, 900 }, + }, + }, + [176559] = { + ["coords"] = { + [1] = { 59, 68.2, 41, 900 }, + }, + }, + [176560] = { + ["coords"] = { + [1] = { 58.8, 73, 41, 900 }, + }, + }, + [176561] = { + ["coords"] = {}, + }, + [176562] = { + ["coords"] = { + [1] = { 40.4, 68.3, 1637, 180 }, + }, + }, + [176563] = { + ["coords"] = {}, + }, + [176564] = { + ["coords"] = {}, + }, + [176565] = { + ["coords"] = {}, + }, + [176566] = { + ["coords"] = {}, + }, + [176567] = { + ["coords"] = {}, + }, + [176568] = { + ["coords"] = {}, + }, + [176569] = { + ["coords"] = {}, + }, + [176570] = { + ["coords"] = {}, + }, + [176571] = { + ["coords"] = {}, + }, + [176572] = { + ["coords"] = {}, + }, + [176573] = { + ["coords"] = { + [1] = { 45.7, 51.8, 1, 900 }, + [2] = { 10.3, 56.2, 11, 7200 }, + [3] = { 49.2, 41.4, 12, 900 }, + [4] = { 65.6, 48.4, 15, 900 }, + [5] = { 72, 46.7, 15, 900 }, + [6] = { 71.7, 22.7, 15, 900 }, + [7] = { 30.5, 86.4, 40, 3600 }, + [8] = { 25.4, 65, 141, 900 }, + [9] = { 30.1, 42.8, 267, 7200 }, + [10] = { 35.4, 51.5, 331, 900 }, + [11] = { 39.3, 80.3, 1519, 120 }, + [12] = { 39.3, 80.3, 1519, 900 }, + [13] = { 62.8, 73.8, 1519, 900 }, + [14] = { 42.6, 59.5, 1519, 180 }, + [15] = { 52.8, 57.1, 1519, 900 }, + [16] = { 19.6, 53.7, 1519, 120 }, + [17] = { 59.3, 45.6, 1519, 900 }, + [18] = { 69.5, 44.7, 1519, 900 }, + [19] = { 42.6, 34.2, 1519, 120 }, + [20] = { 68.4, 30.5, 1519, 900 }, + [21] = { 58.7, 20.7, 1519, 120 }, + [22] = { 58.7, 20.6, 1519, 900 }, + [23] = { 66.7, 83.1, 1537, 900 }, + [24] = { 34.1, 63.7, 1537, 900 }, + [25] = { 65.6, 48.3, 1537, 900 }, + [26] = { 49.8, 43.6, 1537, 900 }, + [27] = { 27.6, 12.1, 1537, 900 }, + [28] = { 39.3, 86.9, 1657, 900 }, + [29] = { 30.6, 17.2, 3358, 180 }, + }, + }, + [176574] = { + ["coords"] = { + [1] = { 54.4, 56.1, 41, 900 }, + }, + }, + [176575] = { + ["coords"] = {}, + }, + [176576] = { + ["coords"] = { + [1] = { 72.7, 54.3, 1519, 900 }, + }, + }, + [176577] = { + ["coords"] = { + [1] = { 46.2, 72, 41, 900 }, + }, + }, + [176578] = { + ["coords"] = { + [1] = { 46.3, 73.9, 41, 900 }, + }, + }, + [176579] = { + ["coords"] = { + [1] = { 46.7, 72.2, 41, 900 }, + }, + }, + [176580] = { + ["coords"] = { + [1] = { 46.1, 70, 41, 900 }, + }, + }, + [176581] = { + ["coords"] = { + [1] = { 55, 26.7, 405, 900 }, + }, + }, + [176582] = { + ["coords"] = { + [1] = { 19.8, 85.5, 405, 180 }, + [2] = { 18, 84.5, 405, 180 }, + [3] = { 20.9, 82.6, 405, 180 }, + [4] = { 19.4, 82, 405, 180 }, + [5] = { 18.5, 81.6, 405, 180 }, + [6] = { 21.8, 81.1, 405, 180 }, + [7] = { 23.1, 81, 405, 180 }, + [8] = { 20.7, 80.6, 405, 180 }, + [9] = { 20.2, 79.2, 405, 180 }, + [10] = { 24.3, 77.4, 405, 180 }, + [11] = { 18.9, 77.2, 405, 180 }, + [12] = { 23.4, 77.1, 405, 180 }, + [13] = { 18, 76.3, 405, 180 }, + [14] = { 19.8, 76.2, 405, 180 }, + [15] = { 22.4, 75.1, 405, 180 }, + [16] = { 20.7, 75, 405, 180 }, + [17] = { 20, 73.6, 405, 180 }, + [18] = { 20.3, 71.2, 405, 180 }, + [19] = { 17.6, 70.9, 405, 180 }, + }, + }, + [176583] = { + ["coords"] = { + [1] = { 66.1, 91.9, 16, 300 }, + [2] = { 60.7, 89.6, 16, 300 }, + [3] = { 73.2, 85.8, 16, 300 }, + [4] = { 52.6, 81.3, 16, 300 }, + [5] = { 61.3, 80.4, 16, 300 }, + [6] = { 55.3, 79, 16, 300 }, + [7] = { 59.2, 78.2, 16, 300 }, + [8] = { 42.2, 77, 16, 300 }, + [9] = { 66.3, 76.8, 16, 300 }, + [10] = { 57.4, 76.3, 16, 300 }, + [11] = { 49.8, 75.6, 16, 300 }, + [12] = { 15, 73.4, 16, 300 }, + [13] = { 40.3, 73.1, 16, 300 }, + [14] = { 45.6, 72.9, 16, 300 }, + [15] = { 49.4, 70.3, 16, 300 }, + [16] = { 43.9, 64.6, 16, 300 }, + [17] = { 21.6, 62.8, 16, 300 }, + [18] = { 40.2, 61.6, 16, 300 }, + [19] = { 37.2, 61.2, 16, 300 }, + [20] = { 22.2, 58.8, 16, 300 }, + [21] = { 27.1, 56.7, 16, 300 }, + [22] = { 35.9, 56.6, 16, 300 }, + [23] = { 38.8, 55.5, 16, 300 }, + [24] = { 30.8, 53.7, 16, 300 }, + [25] = { 35.6, 50.7, 16, 300 }, + [26] = { 41.6, 50.7, 16, 300 }, + [27] = { 35.6, 50.5, 16, 300 }, + [28] = { 37.6, 48.3, 16, 300 }, + [29] = { 32.6, 47.4, 16, 300 }, + [30] = { 30, 47.2, 16, 300 }, + [31] = { 38.8, 45.1, 16, 300 }, + [32] = { 33.9, 41.6, 16, 300 }, + [33] = { 40, 41.3, 16, 300 }, + [34] = { 52, 36.7, 16, 300 }, + [35] = { 48, 36.2, 16, 300 }, + [36] = { 44.6, 35.1, 16, 300 }, + [37] = { 40.4, 32.8, 16, 300 }, + [38] = { 45.4, 32, 16, 300 }, + [39] = { 57.9, 30.7, 16, 300 }, + [40] = { 53.9, 29.6, 16, 300 }, + [41] = { 70.5, 27.9, 16, 300 }, + [42] = { 62.3, 26.3, 16, 300 }, + [43] = { 45.5, 25.7, 16, 300 }, + [44] = { 56.5, 25.6, 16, 300 }, + [45] = { 43.4, 24.5, 16, 300 }, + [46] = { 68.9, 23.9, 16, 300 }, + [47] = { 78.4, 23.7, 16, 300 }, + [48] = { 51.9, 19.8, 16, 300 }, + [49] = { 66.5, 18.8, 16, 300 }, + [50] = { 76.2, 17.9, 16, 300 }, + [51] = { 86.7, 71.5, 46, 300 }, + [52] = { 76.6, 62.9, 46, 300 }, + [53] = { 45.1, 58.9, 46, 300 }, + [54] = { 49.6, 58.6, 46, 300 }, + [55] = { 56.2, 55, 46, 300 }, + [56] = { 39.5, 54.8, 46, 300 }, + [57] = { 92.6, 54.7, 46, 300 }, + [58] = { 51.7, 53.6, 46, 300 }, + [59] = { 47.5, 53.4, 46, 300 }, + [60] = { 35.7, 48.1, 46, 300 }, + [61] = { 21.9, 46.8, 46, 300 }, + [62] = { 29.9, 46.6, 46, 300 }, + [63] = { 81.6, 45.8, 46, 300 }, + [64] = { 88, 37.5, 46, 300 }, + [65] = { 41.3, 37.1, 46, 300 }, + [66] = { 85.2, 27.3, 46, 300 }, + [67] = { 45.7, 68.2, 47, 300 }, + [68] = { 27.7, 67.6, 47, 300 }, + [69] = { 34.2, 67.1, 47, 300 }, + [70] = { 48.8, 62.5, 47, 300 }, + [71] = { 38.2, 60.9, 47, 300 }, + [72] = { 69.6, 60.1, 47, 300 }, + [73] = { 24.9, 58.4, 47, 300 }, + [74] = { 53.3, 55.1, 47, 300 }, + [75] = { 76, 55, 47, 300 }, + [76] = { 71.6, 48.3, 47, 300 }, + [77] = { 67.7, 48.1, 47, 300 }, + [78] = { 63.8, 44, 47, 300 }, + [79] = { 44.8, 42.8, 47, 300 }, + [80] = { 51, 40.2, 47, 300 }, + [81] = { 64.9, 33.6, 47, 300 }, + [82] = { 59.6, 30.1, 47, 300 }, + [83] = { 68.5, 26.4, 47, 300 }, + [84] = { 66.2, 19.3, 47, 300 }, + [85] = { 38.9, 93.1, 139, 300 }, + [86] = { 87.6, 87.3, 139, 300 }, + [87] = { 28.2, 86.2, 139, 300 }, + [88] = { 84.3, 86.1, 139, 300 }, + [89] = { 83.5, 85.7, 139, 300 }, + [90] = { 85.6, 82.6, 139, 300 }, + [91] = { 40.4, 76.6, 139, 300 }, + [92] = { 26.5, 75.6, 139, 300 }, + [93] = { 60.7, 71.1, 139, 300 }, + [94] = { 61.9, 69.6, 139, 300 }, + [95] = { 63.2, 52.9, 139, 300 }, + [96] = { 77.6, 51.9, 139, 300 }, + [97] = { 67.9, 49, 139, 300 }, + [98] = { 47, 33.6, 139, 300 }, + [99] = { 22.6, 33.4, 139, 300 }, + [100] = { 18.2, 32.6, 139, 300 }, + [101] = { 72.3, 30.6, 139, 300 }, + [102] = { 63.6, 23.9, 139, 300 }, + [103] = { 69.4, 15.7, 139, 300 }, + [104] = { 57.8, 64.1, 357, 300 }, + [105] = { 60.7, 63.7, 357, 300 }, + [106] = { 69.8, 60, 357, 300 }, + [107] = { 53.2, 55.8, 357, 300 }, + [108] = { 76.9, 53.6, 357, 300 }, + [109] = { 57.9, 48, 357, 300 }, + [110] = { 86.5, 45.9, 357, 300 }, + [111] = { 84.4, 37.8, 357, 300 }, + [112] = { 49.9, 32.6, 357, 300 }, + [113] = { 62.6, 29.9, 357, 300 }, + [114] = { 39.6, 23.9, 357, 300 }, + [115] = { 50.6, 23.2, 357, 300 }, + [116] = { 43.7, 92, 490, 300 }, + [117] = { 56.3, 90.2, 490, 300 }, + [118] = { 55.5, 83, 490, 300 }, + [119] = { 60.8, 80.3, 490, 300 }, + [120] = { 68.9, 79.1, 490, 300 }, + [121] = { 64.3, 76.4, 490, 300 }, + [122] = { 50.1, 75.2, 490, 300 }, + [123] = { 31.1, 72.3, 490, 300 }, + [124] = { 55.7, 72.1, 490, 300 }, + [125] = { 36.5, 70.7, 490, 300 }, + [126] = { 60.6, 69.7, 490, 300 }, + [127] = { 49.2, 68.3, 490, 300 }, + [128] = { 70.6, 64.2, 490, 300 }, + [129] = { 21.7, 60.4, 490, 300 }, + [130] = { 31, 57.4, 490, 300 }, + [131] = { 38.5, 55.8, 490, 300 }, + [132] = { 74.2, 54.6, 490, 300 }, + [133] = { 59.9, 51.4, 490, 300 }, + [134] = { 63.7, 50.3, 490, 300 }, + [135] = { 68.6, 49.6, 490, 300 }, + [136] = { 25.5, 48.3, 490, 300 }, + [137] = { 32.5, 42, 490, 300 }, + [138] = { 20.9, 41.6, 490, 300 }, + [139] = { 59.7, 38.8, 490, 300 }, + [140] = { 44.8, 36.7, 490, 300 }, + [141] = { 35.9, 35.6, 490, 300 }, + [142] = { 52.8, 34.3, 490, 300 }, + [143] = { 29.5, 31.9, 490, 300 }, + [144] = { 64.4, 31.5, 490, 300 }, + [145] = { 47.2, 30, 490, 300 }, + [146] = { 69.8, 29.7, 490, 300 }, + [147] = { 34, 28.1, 490, 300 }, + [148] = { 33.4, 24.2, 490, 300 }, + [149] = { 38.3, 24, 490, 300 }, + [150] = { 67.2, 23.6, 490, 300 }, + [151] = { 60.6, 20.6, 490, 300 }, + [152] = { 55.7, 17.4, 490, 300 }, + [153] = { 51.7, 17.3, 490, 300 }, + [154] = { 55.2, 16.5, 490, 300 }, + [155] = { 56.6, 10.1, 490, 300 }, + [156] = { 27.1, 86.4, 1377, 300 }, + [157] = { 47.9, 86.1, 1377, 300 }, + [158] = { 20.9, 80.6, 1377, 300 }, + [159] = { 56.7, 72, 1377, 300 }, + [160] = { 47, 66.1, 1377, 300 }, + [161] = { 80.6, 64.5, 1377, 300 }, + [162] = { 61.1, 53.8, 1377, 300 }, + [163] = { 54.6, 51.7, 1377, 300 }, + [164] = { 36.9, 48.7, 1377, 300 }, + [165] = { 79.8, 44.6, 1377, 300 }, + [166] = { 31.6, 43, 1377, 300 }, + [167] = { 38.9, 40.2, 1377, 300 }, + [168] = { 46.1, 32.9, 1377, 300 }, + [169] = { 55.7, 30.8, 1377, 300 }, + [170] = { 48.8, 30.3, 1377, 300 }, + [171] = { 32.3, 25, 1377, 300 }, + [172] = { 46, 23.7, 1377, 300 }, + }, + }, + [176584] = { + ["coords"] = { + [1] = { 63.5, 87.5, 16, 300 }, + [2] = { 47.6, 84.5, 16, 300 }, + [3] = { 51.2, 81.8, 16, 300 }, + [4] = { 13.5, 81.3, 16, 300 }, + [5] = { 59.2, 80.8, 16, 300 }, + [6] = { 44.6, 80.8, 16, 300 }, + [7] = { 32.9, 80.6, 16, 300 }, + [8] = { 25.2, 80.4, 16, 300 }, + [9] = { 52.1, 79.2, 16, 300 }, + [10] = { 49.5, 79, 16, 300 }, + [11] = { 19.7, 78, 16, 300 }, + [12] = { 52.7, 75.7, 16, 300 }, + [13] = { 37.6, 75.2, 16, 300 }, + [14] = { 39.6, 75, 16, 300 }, + [15] = { 47.7, 73.7, 16, 300 }, + [16] = { 16.2, 70.9, 16, 300 }, + [17] = { 37.1, 70.8, 16, 300 }, + [18] = { 18.3, 67.3, 16, 300 }, + [19] = { 36.2, 65.3, 16, 300 }, + [20] = { 17.9, 62.6, 16, 300 }, + [21] = { 26.9, 59.8, 16, 300 }, + [22] = { 30, 58.2, 16, 300 }, + [23] = { 25.4, 58, 16, 300 }, + [24] = { 19.7, 57.6, 16, 300 }, + [25] = { 27.3, 53.7, 16, 300 }, + [26] = { 17, 53.4, 16, 300 }, + [27] = { 31.1, 50.7, 16, 300 }, + [28] = { 24.6, 49.3, 16, 300 }, + [29] = { 33, 45.7, 16, 300 }, + [30] = { 35, 43.5, 16, 300 }, + [31] = { 37, 40.9, 16, 300 }, + [32] = { 40, 38.4, 16, 300 }, + [33] = { 44.6, 36.1, 16, 300 }, + [34] = { 52.3, 30, 16, 300 }, + [35] = { 70.8, 29.3, 16, 300 }, + [36] = { 73.5, 29.2, 16, 300 }, + [37] = { 49.5, 27.7, 16, 300 }, + [38] = { 44.9, 27.3, 16, 300 }, + [39] = { 67.4, 26.8, 16, 300 }, + [40] = { 53.3, 26.5, 16, 300 }, + [41] = { 77.5, 26.1, 16, 300 }, + [42] = { 81.3, 25.4, 16, 300 }, + [43] = { 74.7, 22.9, 16, 300 }, + [44] = { 66.2, 22.8, 16, 300 }, + [45] = { 43.4, 22.3, 16, 300 }, + [46] = { 55.1, 17.9, 16, 300 }, + [47] = { 34.8, 64.6, 28, 300 }, + [48] = { 56.5, 63.4, 28, 300 }, + [49] = { 58.6, 60.5, 28, 300 }, + [50] = { 49, 60.1, 28, 300 }, + [51] = { 44.1, 59.8, 28, 300 }, + [52] = { 33.2, 57.5, 28, 300 }, + [53] = { 41, 55.4, 28, 300 }, + [54] = { 78.2, 54.9, 28, 300 }, + [55] = { 65.2, 54.3, 28, 300 }, + [56] = { 58.9, 52.7, 28, 300 }, + [57] = { 55.1, 50.6, 28, 300 }, + [58] = { 63.1, 49.1, 28, 300 }, + [59] = { 66, 48.6, 28, 300 }, + [60] = { 52.9, 48.2, 28, 300 }, + [61] = { 46.3, 47.1, 28, 300 }, + [62] = { 47.9, 45, 28, 300 }, + [63] = { 67.5, 44.9, 28, 300 }, + [64] = { 74.8, 44.2, 28, 300 }, + [65] = { 65.9, 42.2, 28, 300 }, + [66] = { 44.7, 34.1, 28, 300 }, + [67] = { 47.4, 33.7, 28, 300 }, + [68] = { 44.2, 20.5, 28, 300 }, + [69] = { 41.3, 18.5, 28, 300 }, + [70] = { 44.3, 17.7, 28, 300 }, + [71] = { 43.9, 12.1, 28, 300 }, + [72] = { 23.8, 69.4, 46, 300 }, + [73] = { 33.4, 69.2, 46, 300 }, + [74] = { 56.2, 64.8, 46, 300 }, + [75] = { 22.7, 60.3, 46, 300 }, + [76] = { 53.2, 57.6, 46, 300 }, + [77] = { 89.2, 57.2, 46, 300 }, + [78] = { 62.1, 56.6, 46, 300 }, + [79] = { 16.6, 56.3, 46, 300 }, + [80] = { 45.9, 55.2, 46, 300 }, + [81] = { 33.3, 55.2, 46, 300 }, + [82] = { 18, 50.3, 46, 300 }, + [83] = { 73.6, 49, 46, 300 }, + [84] = { 38, 47.5, 46, 300 }, + [85] = { 87.8, 46.6, 46, 300 }, + [86] = { 68.1, 46, 46, 300 }, + [87] = { 58.4, 43.9, 46, 300 }, + [88] = { 50.3, 38.7, 46, 300 }, + [89] = { 44.8, 38.3, 46, 300 }, + [90] = { 67.2, 35.9, 46, 300 }, + [91] = { 90.1, 32.1, 46, 300 }, + [92] = { 77.6, 30.2, 46, 300 }, + [93] = { 57.3, 25.7, 46, 300 }, + [94] = { 89.5, 70.3, 85, 300 }, + [95] = { 37, 85.1, 139, 300 }, + [96] = { 31.9, 83.4, 139, 300 }, + [97] = { 72.2, 82.3, 139, 300 }, + [98] = { 86.7, 82, 139, 300 }, + [99] = { 57.7, 81.8, 139, 300 }, + [100] = { 49.7, 78.5, 139, 300 }, + [101] = { 19.6, 77.8, 139, 300 }, + [102] = { 63.6, 75.7, 139, 300 }, + [103] = { 54.2, 75.5, 139, 300 }, + [104] = { 69.6, 74.4, 139, 300 }, + [105] = { 34.9, 74.1, 139, 300 }, + [106] = { 71.8, 72.7, 139, 300 }, + [107] = { 29.7, 72.4, 139, 300 }, + [108] = { 66.9, 72.3, 139, 300 }, + [109] = { 40, 71.6, 139, 300 }, + [110] = { 32.2, 71.1, 139, 300 }, + [111] = { 77.7, 69.5, 139, 300 }, + [112] = { 71.4, 69.4, 139, 300 }, + [113] = { 41.7, 67.1, 139, 300 }, + [114] = { 67.1, 66.3, 139, 300 }, + [115] = { 15.8, 65.9, 139, 300 }, + [116] = { 33.4, 65.7, 139, 300 }, + [117] = { 29.2, 65.3, 139, 300 }, + [118] = { 51.6, 63.5, 139, 300 }, + [119] = { 79.2, 61.9, 139, 300 }, + [120] = { 69.5, 58.8, 139, 300 }, + [121] = { 53.1, 57, 139, 300 }, + [122] = { 57.4, 56.9, 139, 300 }, + [123] = { 64.7, 56.4, 139, 300 }, + [124] = { 51.7, 55.1, 139, 300 }, + [125] = { 77.2, 54.8, 139, 300 }, + [126] = { 74.9, 54.6, 139, 300 }, + [127] = { 69.9, 50.1, 139, 300 }, + [128] = { 66.8, 42.7, 139, 300 }, + [129] = { 49.6, 39.1, 139, 300 }, + [130] = { 30, 38.8, 139, 300 }, + [131] = { 43.9, 37.2, 139, 300 }, + [132] = { 55.4, 29.6, 139, 300 }, + [133] = { 50.9, 27, 139, 300 }, + [134] = { 19.7, 25.7, 139, 300 }, + [135] = { 52.5, 23.4, 139, 300 }, + [136] = { 32.3, 34.2, 440, 300 }, + [137] = { 50.4, 88.8, 490, 300 }, + [138] = { 45, 78.4, 490, 300 }, + [139] = { 36.8, 77.9, 490, 300 }, + [140] = { 32.9, 77.8, 490, 300 }, + [141] = { 53.9, 76.9, 490, 300 }, + [142] = { 67.8, 74.1, 490, 300 }, + [143] = { 60.8, 73.2, 490, 300 }, + [144] = { 38.4, 72.4, 490, 300 }, + [145] = { 57, 69.7, 490, 300 }, + [146] = { 43.8, 69.5, 490, 300 }, + [147] = { 72.6, 68.1, 490, 300 }, + [148] = { 66.2, 67.6, 490, 300 }, + [149] = { 31.1, 67, 490, 300 }, + [150] = { 57.7, 66.8, 490, 300 }, + [151] = { 28.2, 65.5, 490, 300 }, + [152] = { 44.5, 64, 490, 300 }, + [153] = { 56.6, 63.9, 490, 300 }, + [154] = { 34, 62.8, 490, 300 }, + [155] = { 55.9, 62.1, 490, 300 }, + [156] = { 80.6, 60.1, 490, 300 }, + [157] = { 39.1, 58.8, 490, 300 }, + [158] = { 52.9, 58.6, 490, 300 }, + [159] = { 61.7, 58.6, 490, 300 }, + [160] = { 61.6, 58.4, 490, 300 }, + [161] = { 68, 57.4, 490, 300 }, + [162] = { 35.5, 54.3, 490, 300 }, + [163] = { 25.8, 53.6, 490, 300 }, + [164] = { 21.1, 50, 490, 300 }, + [165] = { 65.3, 49.4, 490, 300 }, + [166] = { 41.1, 46.8, 490, 300 }, + [167] = { 75.2, 45.2, 490, 300 }, + [168] = { 32, 45, 490, 300 }, + [169] = { 26.6, 44.8, 490, 300 }, + [170] = { 8.7, 41.6, 490, 300 }, + [171] = { 78.9, 41.3, 490, 300 }, + [172] = { 41.9, 39.9, 490, 300 }, + [173] = { 74.3, 38.5, 490, 300 }, + [174] = { 57.1, 37.2, 490, 300 }, + [175] = { 62.7, 34.3, 490, 300 }, + [176] = { 36.5, 34.1, 490, 300 }, + [177] = { 69.8, 31.8, 490, 300 }, + [178] = { 35.3, 29.5, 490, 300 }, + [179] = { 60.9, 27.7, 490, 300 }, + [180] = { 48.1, 26.2, 490, 300 }, + [181] = { 51.7, 21, 490, 300 }, + [182] = { 39.3, 19.8, 490, 300 }, + [183] = { 51, 19.6, 490, 300 }, + [184] = { 56.9, 8, 490, 300 }, + [185] = { 81, 80.3, 618, 300 }, + [186] = { 36, 87.4, 1377, 300 }, + [187] = { 47.9, 82.8, 1377, 300 }, + [188] = { 23.7, 82.8, 1377, 300 }, + [189] = { 38.7, 75.7, 1377, 300 }, + [190] = { 65.7, 75.5, 1377, 300 }, + [191] = { 45.9, 67.5, 1377, 300 }, + [192] = { 34.3, 64.1, 1377, 300 }, + [193] = { 62.7, 63.8, 1377, 300 }, + [194] = { 52.2, 62.9, 1377, 300 }, + [195] = { 41.9, 60.4, 1377, 300 }, + [196] = { 58.2, 58.7, 1377, 300 }, + [197] = { 30.6, 48.2, 1377, 300 }, + [198] = { 66.8, 44.5, 1377, 300 }, + [199] = { 56.4, 44.4, 1377, 300 }, + [200] = { 42.6, 38, 1377, 300 }, + [201] = { 30.4, 34.5, 1377, 300 }, + [202] = { 21.6, 31.4, 1377, 300 }, + [203] = { 52.1, 29.4, 1377, 300 }, + [204] = { 34.6, 21.2, 1377, 300 }, + [205] = { 62.7, 20.5, 1377, 300 }, + }, + }, + [176586] = { + ["coords"] = { + [1] = { 72.3, 89.4, 16, 300 }, + [2] = { 50.7, 86.6, 16, 300 }, + [3] = { 44.1, 86.4, 16, 300 }, + [4] = { 61.3, 84.3, 16, 300 }, + [5] = { 56.9, 83.6, 16, 300 }, + [6] = { 71.4, 82.7, 16, 300 }, + [7] = { 65.6, 75.6, 16, 300 }, + [8] = { 58.6, 75.2, 16, 300 }, + [9] = { 55.6, 74.7, 16, 300 }, + [10] = { 43.5, 71.5, 16, 300 }, + [11] = { 34.6, 69.3, 16, 300 }, + [12] = { 45.4, 68.8, 16, 300 }, + [13] = { 37.4, 63.4, 16, 300 }, + [14] = { 35.6, 60.6, 16, 300 }, + [15] = { 33, 56.6, 16, 300 }, + [16] = { 25.2, 54.3, 16, 300 }, + [17] = { 33.2, 49.6, 16, 300 }, + [18] = { 29.2, 47.5, 16, 300 }, + [19] = { 37.6, 46.2, 16, 300 }, + [20] = { 41.1, 43.9, 16, 300 }, + [21] = { 31.9, 43.4, 16, 300 }, + [22] = { 34.3, 39.4, 16, 300 }, + [23] = { 35.5, 36.3, 16, 300 }, + [24] = { 47.9, 34.2, 16, 300 }, + [25] = { 39.7, 34, 16, 300 }, + [26] = { 49.7, 30, 16, 300 }, + [27] = { 79.6, 27.8, 16, 300 }, + [28] = { 74.9, 27.3, 16, 300 }, + [29] = { 46, 26.6, 16, 300 }, + [30] = { 41.5, 25.5, 16, 300 }, + [31] = { 68.8, 23.2, 16, 300 }, + [32] = { 80.3, 21.3, 16, 300 }, + [33] = { 41.2, 19.3, 16, 300 }, + [34] = { 59.6, 17.1, 16, 300 }, + [35] = { 67.3, 58.5, 28, 300 }, + [36] = { 73.4, 55, 28, 600 }, + [37] = { 53.6, 52.5, 28, 300 }, + [38] = { 38.6, 52.5, 28, 300 }, + [39] = { 59.6, 48.9, 28, 300 }, + [40] = { 72.9, 46.8, 28, 600 }, + [41] = { 51.6, 40.7, 28, 300 }, + [42] = { 74.4, 40.2, 28, 600 }, + [43] = { 67, 39.8, 28, 300 }, + [44] = { 57.3, 36.5, 28, 300 }, + [45] = { 48.3, 23.5, 28, 300 }, + [46] = { 40.4, 16, 28, 300 }, + [47] = { 48.3, 12.8, 28, 300 }, + [48] = { 34.5, 72.3, 46, 300 }, + [49] = { 54.3, 68.5, 46, 300 }, + [50] = { 74.1, 66.8, 46, 300 }, + [51] = { 37, 65.1, 46, 300 }, + [52] = { 48.5, 64.3, 46, 300 }, + [53] = { 86.4, 63.8, 46, 300 }, + [54] = { 94.4, 58.7, 46, 300 }, + [55] = { 14.6, 58.7, 46, 300 }, + [56] = { 22.2, 56.5, 46, 300 }, + [57] = { 66.9, 55.2, 46, 300 }, + [58] = { 82.3, 48.2, 46, 300 }, + [59] = { 78.3, 44.3, 46, 300 }, + [60] = { 92.2, 43.3, 46, 300 }, + [61] = { 80.9, 40.2, 46, 300 }, + [62] = { 83.6, 40.1, 46, 300 }, + [63] = { 38.2, 39.6, 46, 300 }, + [64] = { 78, 38.3, 46, 300 }, + [65] = { 86.2, 36.1, 46, 300 }, + [66] = { 51.1, 31.3, 46, 300 }, + [67] = { 43.9, 31.1, 46, 300 }, + [68] = { 94.5, 30.3, 46, 300 }, + [69] = { 38.7, 27.6, 46, 300 }, + [70] = { 91.6, 27.2, 46, 300 }, + [71] = { 72.9, 26.4, 46, 300 }, + [72] = { 87.3, 25.9, 46, 300 }, + [73] = { 68.9, 24.4, 46, 300 }, + [74] = { 16.5, 24.2, 46, 300 }, + [75] = { 57.5, 23.6, 46, 300 }, + [76] = { 48.3, 98.8, 51, 300 }, + [77] = { 19.2, 94.4, 51, 300 }, + [78] = { 73, 93.5, 51, 300 }, + [79] = { 96.3, 30.9, 85, 300 }, + [80] = { 78.2, 84.9, 139, 600 }, + [81] = { 87.1, 79.9, 139, 600 }, + [82] = { 14.3, 77.9, 139, 600 }, + [83] = { 55.7, 77.5, 139, 600 }, + [84] = { 84.8, 75.2, 139, 600 }, + [85] = { 67.1, 74.6, 139, 600 }, + [86] = { 82, 70.5, 139, 600 }, + [87] = { 13.7, 68.7, 139, 600 }, + [88] = { 82.2, 65.3, 139, 600 }, + [89] = { 31, 62.1, 139, 600 }, + [90] = { 15.5, 61.5, 139, 600 }, + [91] = { 67.1, 61.1, 139, 600 }, + [92] = { 22.3, 60.2, 139, 600 }, + [93] = { 57.7, 60.1, 139, 600 }, + [94] = { 82.7, 59.7, 139, 600 }, + [95] = { 51.8, 59, 139, 600 }, + [96] = { 37.5, 57.6, 139, 600 }, + [97] = { 80.4, 55.3, 139, 600 }, + [98] = { 43.3, 53.4, 139, 600 }, + [99] = { 78.6, 50.9, 139, 600 }, + [100] = { 36.9, 50.9, 139, 600 }, + [101] = { 75.5, 47.4, 139, 600 }, + [102] = { 41.1, 46.8, 139, 600 }, + [103] = { 67.9, 45.8, 139, 600 }, + [104] = { 87.1, 45.7, 139, 600 }, + [105] = { 79.7, 45.4, 139, 600 }, + [106] = { 80.8, 45.3, 139, 600 }, + [107] = { 28.4, 43.8, 139, 600 }, + [108] = { 34.9, 43.3, 139, 600 }, + [109] = { 55.8, 43.2, 139, 600 }, + [110] = { 74.5, 36.2, 139, 600 }, + [111] = { 83.6, 36.2, 139, 600 }, + [112] = { 60.9, 29.3, 139, 600 }, + [113] = { 56.2, 25.9, 139, 600 }, + [114] = { 24.1, 19.3, 139, 600 }, + [115] = { 55.9, 82.7, 357, 300 }, + [116] = { 69.4, 21.4, 361, 300 }, + [117] = { 57.7, 87.9, 490, 300 }, + [118] = { 44.7, 87.7, 490, 300 }, + [119] = { 50.5, 87.1, 490, 300 }, + [120] = { 39.7, 84.6, 490, 300 }, + [121] = { 61.3, 84.6, 490, 300 }, + [122] = { 31.5, 81.3, 490, 300 }, + [123] = { 69.5, 80.5, 490, 300 }, + [124] = { 64.8, 80.2, 490, 300 }, + [125] = { 28.9, 78.7, 490, 300 }, + [126] = { 74.1, 70.1, 490, 300 }, + [127] = { 27, 69.9, 490, 300 }, + [128] = { 8.9, 67, 490, 300 }, + [129] = { 75.5, 66.8, 490, 300 }, + [130] = { 22.2, 61.9, 490, 300 }, + [131] = { 77.1, 59.9, 490, 300 }, + [132] = { 53.5, 54.9, 490, 300 }, + [133] = { 47.6, 53.6, 490, 300 }, + [134] = { 53.8, 52, 490, 300 }, + [135] = { 6.7, 51.8, 490, 300 }, + [136] = { 22.8, 50.2, 490, 300 }, + [137] = { 20.1, 48.6, 490, 300 }, + [138] = { 51.4, 48, 490, 300 }, + [139] = { 52.7, 47.9, 490, 300 }, + [140] = { 46.1, 47.9, 490, 300 }, + [141] = { 47.7, 46.6, 490, 300 }, + [142] = { 54.8, 46.4, 490, 300 }, + [143] = { 23.6, 45.8, 490, 300 }, + [144] = { 46.8, 45.1, 490, 300 }, + [145] = { 52.6, 44.7, 490, 300 }, + [146] = { 77.2, 40.3, 490, 300 }, + [147] = { 20.2, 38.8, 490, 300 }, + [148] = { 24.5, 38.3, 490, 300 }, + [149] = { 75.5, 33.2, 490, 300 }, + [150] = { 25, 32.6, 490, 300 }, + [151] = { 26.8, 29.6, 490, 300 }, + [152] = { 69.4, 19.5, 490, 300 }, + [153] = { 69.4, 19.2, 490, 300 }, + [154] = { 31.3, 19.1, 490, 300 }, + [155] = { 39.2, 15, 490, 300 }, + [156] = { 62.1, 14.6, 490, 300 }, + [157] = { 57.2, 12.6, 490, 300 }, + [158] = { 50.7, 10, 490, 300 }, + [159] = { 71.1, 81.2, 618, 300 }, + [160] = { 61.5, 75.4, 618, 300 }, + [161] = { 64.9, 73.5, 618, 300 }, + [162] = { 66.2, 69.7, 618, 300 }, + [163] = { 56.8, 69.7, 618, 300 }, + [164] = { 58.2, 67.1, 618, 300 }, + [165] = { 63.7, 64.6, 618, 300 }, + [166] = { 58.1, 60.7, 618, 300 }, + [167] = { 66.1, 59.9, 618, 300 }, + [168] = { 59.3, 57.4, 618, 300 }, + [169] = { 65.8, 56.2, 618, 300 }, + [170] = { 55.9, 54.6, 618, 300 }, + [171] = { 61.9, 53.1, 618, 300 }, + [172] = { 68.9, 51.1, 618, 300 }, + [173] = { 42.8, 47.3, 618, 300 }, + [174] = { 51.1, 47.2, 618, 300 }, + [175] = { 28.6, 46.9, 618, 300 }, + [176] = { 51.7, 46.8, 618, 300 }, + [177] = { 39.8, 45.4, 618, 300 }, + [178] = { 41.4, 45.4, 618, 300 }, + [179] = { 44.6, 45.4, 618, 300 }, + [180] = { 60.7, 45.3, 618, 300 }, + [181] = { 32.5, 45.2, 618, 300 }, + [182] = { 54.1, 45.1, 618, 300 }, + [183] = { 35.9, 45.1, 618, 300 }, + [184] = { 47.8, 44.1, 618, 300 }, + [185] = { 46.9, 42.9, 618, 300 }, + [186] = { 58.1, 42.7, 618, 300 }, + [187] = { 67.9, 39.3, 618, 300 }, + [188] = { 40.8, 39.2, 618, 300 }, + [189] = { 34.3, 38.8, 618, 300 }, + [190] = { 68.9, 37.1, 618, 300 }, + [191] = { 52.5, 36.8, 618, 300 }, + [192] = { 65, 36.5, 618, 300 }, + [193] = { 37.6, 35.5, 618, 300 }, + [194] = { 48.5, 35.5, 618, 300 }, + [195] = { 46, 35.1, 618, 300 }, + [196] = { 31.4, 34.9, 618, 300 }, + [197] = { 35.4, 34.9, 618, 300 }, + [198] = { 33.8, 34.9, 618, 300 }, + [199] = { 39.1, 34.8, 618, 300 }, + [200] = { 56.2, 34, 618, 300 }, + [201] = { 69.4, 33.9, 618, 300 }, + [202] = { 42.8, 33.7, 618, 300 }, + [203] = { 56.6, 32.7, 618, 300 }, + [204] = { 57.8, 32.5, 618, 300 }, + [205] = { 63.6, 32.2, 618, 300 }, + [206] = { 68.4, 30.2, 618, 300 }, + [207] = { 62, 29.4, 618, 300 }, + [208] = { 56.8, 27, 618, 300 }, + [209] = { 50.9, 25.8, 618, 300 }, + [210] = { 55.1, 25.7, 618, 300 }, + [211] = { 63.6, 24.8, 618, 300 }, + [212] = { 67.4, 22.3, 618, 300 }, + [213] = { 50.8, 21.3, 618, 300 }, + [214] = { 62.9, 19.9, 618, 300 }, + [215] = { 53.4, 17.4, 618, 300 }, + [216] = { 49.1, 17, 618, 300 }, + [217] = { 47.8, 8.1, 618, 300 }, + [218] = { 65.1, 92.7, 1377, 300 }, + [219] = { 39.8, 91.6, 1377, 300 }, + [220] = { 65.7, 87.6, 1377, 300 }, + [221] = { 16.5, 78.1, 1377, 300 }, + [222] = { 23.6, 72.9, 1377, 300 }, + [223] = { 67, 71.5, 1377, 300 }, + [224] = { 18.5, 69.3, 1377, 300 }, + [225] = { 81.1, 66.1, 1377, 300 }, + [226] = { 17.5, 56.6, 1377, 300 }, + [227] = { 64.7, 55.3, 1377, 300 }, + [228] = { 18.4, 44.3, 1377, 300 }, + [229] = { 79, 41.5, 1377, 300 }, + [230] = { 83.5, 41, 1377, 300 }, + [231] = { 84.1, 35, 1377, 300 }, + [232] = { 17.3, 32.3, 1377, 300 }, + [233] = { 24.9, 25.4, 1377, 300 }, + [234] = { 67.7, 25.3, 1377, 300 }, + [235] = { 61.9, 11.1, 1377, 300 }, + [236] = { 52.2, 10.5, 1377, 300 }, + [237] = { 28.1, 10.3, 1377, 300 }, + }, + }, + [176587] = { + ["coords"] = { + [1] = { 49.3, 81.6, 28, 300 }, + [2] = { 53.1, 79.5, 28, 300 }, + [3] = { 35.8, 79.5, 28, 300 }, + [4] = { 68.4, 79.2, 28, 300 }, + [5] = { 39.6, 79.1, 28, 300 }, + [6] = { 53.5, 78.6, 28, 300 }, + [7] = { 69.6, 78.3, 28, 300 }, + [8] = { 37.1, 77.6, 28, 300 }, + [9] = { 68.5, 77, 28, 300 }, + [10] = { 34.3, 76.4, 28, 300 }, + [11] = { 51.1, 75.9, 28, 300 }, + [12] = { 69, 75.3, 28, 300 }, + [13] = { 40.7, 74.9, 28, 300 }, + [14] = { 50.4, 74.3, 28, 300 }, + [15] = { 68.9, 74.3, 28, 300 }, + [16] = { 69, 74.2, 28, 300 }, + [17] = { 44.5, 74.2, 28, 300 }, + [18] = { 70.5, 74.1, 28, 300 }, + [19] = { 44.8, 68, 28, 300 }, + [20] = { 53.6, 67.8, 28, 300 }, + [21] = { 53, 67.3, 28, 300 }, + [22] = { 48.2, 67.2, 28, 300 }, + [23] = { 41.3, 66.9, 28, 300 }, + [24] = { 35, 66.8, 28, 300 }, + [25] = { 54.2, 66.1, 28, 300 }, + [26] = { 38.2, 65.3, 28, 300 }, + [27] = { 53, 65.2, 28, 300 }, + [28] = { 37.2, 65.1, 28, 300 }, + [29] = { 52.1, 65.1, 28, 300 }, + [30] = { 39.1, 64.5, 28, 300 }, + [31] = { 52.6, 64.4, 28, 300 }, + [32] = { 38.7, 63.5, 28, 300 }, + [33] = { 40.4, 63, 28, 300 }, + [34] = { 34.1, 63, 28, 300 }, + [35] = { 35.7, 63, 28, 300 }, + [36] = { 39.7, 62.5, 28, 300 }, + [37] = { 34.9, 62.4, 28, 300 }, + [38] = { 36, 62.3, 28, 300 }, + [39] = { 38, 62.2, 28, 300 }, + [40] = { 80.6, 61.6, 28, 300 }, + [41] = { 81.3, 60.9, 28, 300 }, + [42] = { 49.2, 60.9, 28, 300 }, + [43] = { 51.2, 60.4, 28, 300 }, + [44] = { 59.7, 60.4, 28, 300 }, + [45] = { 62.2, 60.2, 28, 300 }, + [46] = { 82.2, 59.7, 28, 300 }, + [47] = { 48.9, 59.5, 28, 300 }, + [48] = { 62.6, 59.1, 28, 300 }, + [49] = { 58.3, 58.6, 28, 300 }, + [50] = { 36.8, 58.2, 28, 300 }, + [51] = { 61.3, 58.1, 28, 300 }, + [52] = { 64.3, 57.9, 28, 300 }, + [53] = { 62.4, 57.7, 28, 300 }, + [54] = { 36.3, 56.8, 28, 300 }, + [55] = { 41, 56.6, 28, 300 }, + [56] = { 38.2, 56.3, 28, 300 }, + [57] = { 63.5, 55.7, 28, 300 }, + [58] = { 76, 55.4, 28, 300 }, + [59] = { 37.3, 55.4, 28, 300 }, + [60] = { 66.6, 55.1, 28, 300 }, + [61] = { 45.2, 54.9, 28, 300 }, + [62] = { 38.7, 54.3, 28, 300 }, + [63] = { 36.7, 54.1, 28, 300 }, + [64] = { 60.2, 53.4, 28, 300 }, + [65] = { 47.9, 53.4, 28, 300 }, + [66] = { 46.3, 53.4, 28, 300 }, + [67] = { 58.8, 53, 28, 300 }, + [68] = { 56.5, 52.5, 28, 300 }, + [69] = { 44.9, 52.2, 28, 300 }, + [70] = { 46.4, 51.6, 28, 300 }, + [71] = { 50.5, 51.5, 28, 300 }, + [72] = { 46.2, 50.2, 28, 300 }, + [73] = { 54, 49.6, 28, 300 }, + [74] = { 65, 46.7, 28, 300 }, + [75] = { 68, 45.3, 28, 300 }, + [76] = { 49.4, 44.5, 28, 300 }, + [77] = { 47.2, 44.3, 28, 300 }, + [78] = { 75.1, 43.4, 28, 300 }, + [79] = { 72.9, 42.5, 28, 300 }, + [80] = { 66.9, 42.1, 28, 300 }, + [81] = { 45.5, 39.4, 28, 300 }, + [82] = { 46.6, 35.6, 28, 300 }, + [83] = { 43.6, 34.8, 28, 300 }, + [84] = { 47.6, 31, 28, 300 }, + [85] = { 62.8, 86.1, 139, 300 }, + [86] = { 22.4, 85.2, 139, 300 }, + [87] = { 23.1, 84.5, 139, 300 }, + [88] = { 27.3, 84.2, 139, 300 }, + [89] = { 37, 84, 139, 300 }, + [90] = { 32.2, 83.4, 139, 300 }, + [91] = { 39.7, 83.3, 139, 300 }, + [92] = { 24.1, 83.1, 139, 300 }, + [93] = { 35.1, 82.3, 139, 300 }, + [94] = { 43.1, 82.1, 139, 300 }, + [95] = { 67.6, 81, 139, 300 }, + [96] = { 45.2, 80.9, 139, 300 }, + [97] = { 70.4, 80.9, 139, 300 }, + [98] = { 21.4, 79.6, 139, 300 }, + [99] = { 55.7, 79.6, 139, 300 }, + [100] = { 66.1, 79, 139, 300 }, + [101] = { 17.2, 78.3, 139, 300 }, + [102] = { 52.6, 78.2, 139, 300 }, + [103] = { 51.4, 78.1, 139, 300 }, + [104] = { 35.2, 77.9, 139, 300 }, + [105] = { 74.2, 76.5, 139, 300 }, + [106] = { 42.1, 75.5, 139, 300 }, + [107] = { 61.8, 75.3, 139, 300 }, + [108] = { 68.8, 74.4, 139, 300 }, + [109] = { 60.9, 74.3, 139, 300 }, + [110] = { 58.3, 74, 139, 300 }, + [111] = { 33.8, 73.9, 139, 300 }, + [112] = { 27.1, 73.8, 139, 300 }, + [113] = { 34, 73.3, 139, 300 }, + [114] = { 42.2, 72.3, 139, 300 }, + [115] = { 53.7, 72, 139, 300 }, + [116] = { 59.7, 71.8, 139, 300 }, + [117] = { 38.1, 71.8, 139, 300 }, + [118] = { 73.2, 71.3, 139, 300 }, + [119] = { 48.6, 70.1, 139, 300 }, + [120] = { 60.3, 70, 139, 300 }, + [121] = { 20.7, 69.4, 139, 300 }, + [122] = { 28.9, 69.3, 139, 300 }, + [123] = { 68.4, 69.2, 139, 300 }, + [124] = { 64.8, 69.1, 139, 300 }, + [125] = { 64.9, 69, 139, 300 }, + [126] = { 37.9, 69, 139, 300 }, + [127] = { 31.8, 68.4, 139, 300 }, + [128] = { 59.1, 68.3, 139, 300 }, + [129] = { 58.4, 68.2, 139, 300 }, + [130] = { 78, 68.1, 139, 300 }, + [131] = { 76.6, 67.7, 139, 300 }, + [132] = { 45, 67.1, 139, 300 }, + [133] = { 77.7, 66.2, 139, 300 }, + [134] = { 60.8, 65.4, 139, 300 }, + [135] = { 75, 65.3, 139, 300 }, + [136] = { 69.5, 65.3, 139, 300 }, + [137] = { 16.2, 65, 139, 300 }, + [138] = { 17.8, 64.2, 139, 300 }, + [139] = { 13.7, 64, 139, 300 }, + [140] = { 55.8, 63.6, 139, 300 }, + [141] = { 26.1, 63.3, 139, 300 }, + [142] = { 51.2, 63.3, 139, 300 }, + [143] = { 77.6, 62.6, 139, 300 }, + [144] = { 66.7, 62.4, 139, 300 }, + [145] = { 80, 62, 139, 300 }, + [146] = { 64.7, 61.7, 139, 300 }, + [147] = { 74.2, 60.5, 139, 300 }, + [148] = { 79.5, 60.5, 139, 300 }, + [149] = { 49.1, 60.1, 139, 300 }, + [150] = { 75.7, 59.3, 139, 300 }, + [151] = { 66.9, 59.2, 139, 300 }, + [152] = { 54.6, 59.1, 139, 300 }, + [153] = { 35.6, 58.8, 139, 300 }, + [154] = { 59.5, 58.7, 139, 300 }, + [155] = { 72.3, 56.2, 139, 300 }, + [156] = { 38, 54.9, 139, 300 }, + [157] = { 57.9, 53.8, 139, 300 }, + [158] = { 40.7, 52.2, 139, 300 }, + [159] = { 38, 52.2, 139, 300 }, + [160] = { 67.9, 51.6, 139, 300 }, + [161] = { 53.7, 51, 139, 300 }, + [162] = { 61.9, 50.5, 139, 300 }, + [163] = { 59.8, 48.9, 139, 300 }, + [164] = { 56.7, 46, 139, 300 }, + [165] = { 70.4, 45.8, 139, 300 }, + [166] = { 83.8, 44.8, 139, 300 }, + [167] = { 86.2, 44.7, 139, 300 }, + [168] = { 49.1, 44, 139, 300 }, + [169] = { 53.4, 43.1, 139, 300 }, + [170] = { 82.1, 43, 139, 300 }, + [171] = { 64.7, 42, 139, 300 }, + [172] = { 69.3, 41.9, 139, 300 }, + [173] = { 85.1, 41.6, 139, 300 }, + [174] = { 31.1, 40.5, 139, 300 }, + [175] = { 82.4, 40.3, 139, 300 }, + [176] = { 26.9, 39.6, 139, 300 }, + [177] = { 52.3, 39, 139, 300 }, + [178] = { 45, 38.6, 139, 300 }, + [179] = { 70.6, 38.2, 139, 300 }, + [180] = { 38.6, 38.2, 139, 300 }, + [181] = { 84.1, 38.2, 139, 300 }, + [182] = { 48.1, 38.2, 139, 300 }, + [183] = { 62.2, 38, 139, 300 }, + [184] = { 25.7, 37.5, 139, 300 }, + [185] = { 66.1, 37.5, 139, 300 }, + [186] = { 21.3, 36.2, 139, 300 }, + [187] = { 41.3, 35.3, 139, 300 }, + [188] = { 59.6, 33.7, 139, 300 }, + [189] = { 54.4, 33.4, 139, 300 }, + [190] = { 30, 33.2, 139, 300 }, + [191] = { 16.4, 32.1, 139, 300 }, + [192] = { 51.7, 30.6, 139, 300 }, + [193] = { 47.9, 30.2, 139, 300 }, + [194] = { 28, 29.6, 139, 300 }, + [195] = { 66.3, 27.9, 139, 300 }, + [196] = { 35.4, 27.8, 139, 300 }, + [197] = { 46.2, 26.9, 139, 300 }, + [198] = { 41.2, 26.6, 139, 300 }, + [199] = { 22.6, 26.3, 139, 300 }, + [200] = { 27.7, 25.7, 139, 300 }, + [201] = { 38.6, 25.6, 139, 300 }, + [202] = { 55.1, 24.3, 139, 300 }, + [203] = { 24.4, 23.9, 139, 300 }, + [204] = { 61.6, 23.9, 139, 300 }, + [205] = { 36.2, 23.5, 139, 300 }, + [206] = { 65.7, 21.8, 139, 300 }, + [207] = { 69.1, 19.9, 139, 300 }, + [208] = { 70.5, 15.4, 139, 300 }, + [209] = { 71.5, 15, 139, 300 }, + }, + }, + [176588] = { + ["coords"] = { + [1] = { 61.9, 73, 618, 300 }, + [2] = { 64.8, 72.4, 618, 300 }, + [3] = { 65.5, 72.1, 618, 300 }, + [4] = { 64.6, 69, 618, 300 }, + [5] = { 64.3, 68.9, 618, 300 }, + [6] = { 58.3, 68.6, 618, 300 }, + [7] = { 64.3, 68.5, 618, 300 }, + [8] = { 63, 68.3, 618, 300 }, + [9] = { 59.6, 67.5, 618, 300 }, + [10] = { 63.9, 67.2, 618, 300 }, + [11] = { 67, 67.1, 618, 300 }, + [12] = { 61.2, 67, 618, 300 }, + [13] = { 60.7, 65.8, 618, 300 }, + [14] = { 64.4, 65.2, 618, 300 }, + [15] = { 60.6, 64.3, 618, 300 }, + [16] = { 58.9, 64.1, 618, 300 }, + [17] = { 64.2, 62.6, 618, 300 }, + [18] = { 60, 61, 618, 300 }, + [19] = { 65.5, 60.2, 618, 300 }, + [20] = { 57.2, 58.7, 618, 300 }, + [21] = { 60.4, 58.4, 618, 300 }, + [22] = { 58.8, 57.2, 618, 300 }, + [23] = { 61, 55.9, 618, 300 }, + [24] = { 56.3, 55.7, 618, 300 }, + [25] = { 60.1, 54.9, 618, 300 }, + [26] = { 66.4, 54.7, 618, 300 }, + [27] = { 57.8, 53.5, 618, 300 }, + [28] = { 59.4, 53.3, 618, 300 }, + [29] = { 66.6, 53.2, 618, 300 }, + [30] = { 57.4, 52.5, 618, 300 }, + [31] = { 63.9, 51.1, 618, 300 }, + [32] = { 56.7, 50, 618, 300 }, + [33] = { 60.5, 49.9, 618, 300 }, + [34] = { 58.1, 49.8, 618, 300 }, + [35] = { 54.5, 48.8, 618, 300 }, + [36] = { 58.9, 48.8, 618, 300 }, + [37] = { 63, 47.9, 618, 300 }, + [38] = { 31.1, 47.8, 618, 300 }, + [39] = { 54.9, 47.2, 618, 300 }, + [40] = { 63.2, 46.5, 618, 300 }, + [41] = { 30.2, 46.3, 618, 300 }, + [42] = { 59.7, 45.7, 618, 300 }, + [43] = { 66.7, 45.5, 618, 300 }, + [44] = { 34.3, 44.9, 618, 300 }, + [45] = { 55.1, 44.4, 618, 300 }, + [46] = { 38.5, 44.4, 618, 300 }, + [47] = { 30.6, 44.2, 618, 300 }, + [48] = { 59.1, 44, 618, 300 }, + [49] = { 57.9, 44, 618, 300 }, + [50] = { 46, 44, 618, 300 }, + [51] = { 38.4, 44, 618, 300 }, + [52] = { 32.4, 43.9, 618, 300 }, + [53] = { 46.1, 43.9, 618, 300 }, + [54] = { 41.1, 43.4, 618, 300 }, + [55] = { 41.3, 43.3, 618, 300 }, + [56] = { 66.8, 43.3, 618, 300 }, + [57] = { 43.7, 42.6, 618, 300 }, + [58] = { 50.5, 42.6, 618, 300 }, + [59] = { 43.3, 42.5, 618, 300 }, + [60] = { 53.3, 42.4, 618, 300 }, + [61] = { 45.9, 41.5, 618, 300 }, + [62] = { 56.7, 41.3, 618, 300 }, + [63] = { 65.2, 41.1, 618, 300 }, + [64] = { 34.2, 40, 618, 300 }, + [65] = { 38.1, 40, 618, 300 }, + [66] = { 63.9, 39.6, 618, 300 }, + [67] = { 65.2, 39.5, 618, 300 }, + [68] = { 32.4, 39.2, 618, 300 }, + [69] = { 30.5, 39.2, 618, 300 }, + [70] = { 51.2, 38.6, 618, 300 }, + [71] = { 57.6, 38.5, 618, 300 }, + [72] = { 64.8, 37.7, 618, 300 }, + [73] = { 68.5, 37.7, 618, 300 }, + [74] = { 44.4, 37.6, 618, 300 }, + [75] = { 39.5, 37.4, 618, 300 }, + [76] = { 54.1, 37.2, 618, 300 }, + [77] = { 47.2, 37, 618, 300 }, + [78] = { 47.3, 37, 618, 300 }, + [79] = { 34.6, 37, 618, 300 }, + [80] = { 38.9, 36.9, 618, 300 }, + [81] = { 41.8, 36.9, 618, 300 }, + [82] = { 34.8, 36.7, 618, 300 }, + [83] = { 44, 36, 618, 300 }, + [84] = { 67.9, 35.7, 618, 300 }, + [85] = { 40.9, 35.5, 618, 300 }, + [86] = { 47.6, 35.5, 618, 300 }, + [87] = { 38.8, 35, 618, 300 }, + [88] = { 58.2, 35, 618, 300 }, + [89] = { 43, 34, 618, 300 }, + [90] = { 68.6, 32.3, 618, 300 }, + [91] = { 62.5, 31.4, 618, 300 }, + [92] = { 65.8, 30.7, 618, 300 }, + [93] = { 62.8, 30.6, 618, 300 }, + [94] = { 55.1, 30, 618, 300 }, + [95] = { 64.6, 29, 618, 300 }, + [96] = { 65, 28.8, 618, 300 }, + [97] = { 62.6, 28.4, 618, 300 }, + [98] = { 58.9, 28.1, 618, 300 }, + [99] = { 61.9, 27.9, 618, 300 }, + [100] = { 68.3, 27.3, 618, 300 }, + [101] = { 65.7, 26.6, 618, 300 }, + [102] = { 65.6, 26.5, 618, 300 }, + [103] = { 57.8, 25.5, 618, 300 }, + [104] = { 65.5, 24.9, 618, 300 }, + [105] = { 60, 24.5, 618, 300 }, + [106] = { 52.5, 24.2, 618, 300 }, + [107] = { 61.7, 23.6, 618, 300 }, + [108] = { 51.1, 21.7, 618, 300 }, + [109] = { 65.7, 21.4, 618, 300 }, + [110] = { 62.4, 21.2, 618, 300 }, + [111] = { 59, 20.8, 618, 300 }, + [112] = { 67.2, 20.5, 618, 300 }, + [113] = { 49.8, 19.9, 618, 300 }, + [114] = { 53.4, 18.7, 618, 300 }, + [115] = { 59.5, 17.7, 618, 300 }, + [116] = { 48.8, 17.3, 618, 300 }, + [117] = { 56.8, 16.4, 618, 300 }, + [118] = { 58.8, 16.1, 618, 300 }, + [119] = { 52.7, 15.7, 618, 300 }, + [120] = { 49.8, 14, 618, 300 }, + [121] = { 61.3, 13, 618, 300 }, + [122] = { 58.6, 13, 618, 300 }, + [123] = { 48.5, 12.2, 618, 300 }, + [124] = { 49.4, 7.3, 618, 300 }, + [125] = { 53.7, 86.3, 2597, 300 }, + [126] = { 55.1, 83.8, 2597, 300 }, + [127] = { 53.6, 81.6, 2597, 300 }, + [128] = { 53.1, 79.6, 2597, 300 }, + [129] = { 56.9, 79.3, 2597, 300 }, + [130] = { 55, 79.1, 2597, 300 }, + [131] = { 52.9, 77.2, 2597, 300 }, + [132] = { 49.5, 76.1, 2597, 300 }, + [133] = { 55.1, 76, 2597, 300 }, + [134] = { 54.4, 75, 2597, 300 }, + [135] = { 47.7, 73.3, 2597, 300 }, + [136] = { 53.9, 73.1, 2597, 300 }, + [137] = { 52.7, 72, 2597, 300 }, + [138] = { 50.2, 72, 2597, 300 }, + [139] = { 49.1, 70.4, 2597, 300 }, + [140] = { 52.2, 69.6, 2597, 300 }, + [141] = { 50.2, 68.6, 2597, 300 }, + [142] = { 49.6, 66.6, 2597, 300 }, + [143] = { 51.3, 66.1, 2597, 300 }, + [144] = { 48.8, 65.6, 2597, 300 }, + [145] = { 50.4, 62.2, 2597, 300 }, + [146] = { 51.9, 60.6, 2597, 300 }, + [147] = { 43.1, 59.1, 2597, 300 }, + [148] = { 44, 58.3, 2597, 300 }, + [149] = { 42.8, 55.6, 2597, 300 }, + [150] = { 44.5, 54.9, 2597, 300 }, + [151] = { 49.9, 54.6, 2597, 300 }, + [152] = { 51.7, 54.4, 2597, 300 }, + [153] = { 44.6, 54.1, 2597, 300 }, + [154] = { 48.4, 53.1, 2597, 300 }, + [155] = { 45.2, 52.4, 2597, 300 }, + [156] = { 43.3, 52.1, 2597, 300 }, + [157] = { 43.5, 51.6, 2597, 300 }, + [158] = { 50.2, 51.3, 2597, 300 }, + [159] = { 44.3, 51.1, 2597, 300 }, + [160] = { 48.9, 51, 2597, 300 }, + [161] = { 46.1, 50.7, 2597, 300 }, + [162] = { 50.9, 50.7, 2597, 300 }, + [163] = { 47.8, 49.6, 2597, 300 }, + [164] = { 50.9, 48.3, 2597, 300 }, + [165] = { 47.4, 47.9, 2597, 300 }, + [166] = { 51.3, 46.6, 2597, 300 }, + [167] = { 50.4, 46.5, 2597, 300 }, + [168] = { 52.8, 46, 2597, 300 }, + [169] = { 50.1, 44.8, 2597, 300 }, + [170] = { 48.6, 44.3, 2597, 300 }, + [171] = { 47.8, 42.7, 2597, 300 }, + [172] = { 48.3, 42, 2597, 300 }, + [173] = { 53.2, 41.9, 2597, 300 }, + [174] = { 50.5, 40.8, 2597, 300 }, + [175] = { 52.5, 39.1, 2597, 300 }, + [176] = { 50.2, 37.1, 2597, 300 }, + [177] = { 50.3, 33.2, 2597, 300 }, + [178] = { 50.8, 32.8, 2597, 300 }, + [179] = { 51.9, 32.3, 2597, 300 }, + [180] = { 54.6, 26.2, 2597, 300 }, + [181] = { 53, 26, 2597, 300 }, + [182] = { 54.5, 25.5, 2597, 300 }, + [183] = { 51.8, 24.7, 2597, 300 }, + [184] = { 55, 24, 2597, 300 }, + [185] = { 42.9, 22.8, 2597, 300 }, + [186] = { 54.3, 22.5, 2597, 300 }, + [187] = { 44.7, 22.3, 2597, 300 }, + [188] = { 51.7, 22.3, 2597, 300 }, + [189] = { 46.4, 22.3, 2597, 300 }, + [190] = { 47.2, 21.9, 2597, 300 }, + [191] = { 53, 21.4, 2597, 300 }, + [192] = { 44.5, 21.4, 2597, 300 }, + [193] = { 45.6, 21.3, 2597, 300 }, + [194] = { 42.4, 21.2, 2597, 300 }, + [195] = { 47.4, 20.9, 2597, 300 }, + [196] = { 53.7, 20.8, 2597, 300 }, + [197] = { 51.4, 20.4, 2597, 300 }, + [198] = { 54.1, 18, 2597, 300 }, + [199] = { 46.9, 17.2, 2597, 300 }, + [200] = { 47.7, 14.9, 2597, 300 }, + [201] = { 48.1, 12.7, 2597, 300 }, + }, + }, + [176589] = { + ["coords"] = { + [1] = { 50.9, 61.8, 46, 3600 }, + [2] = { 31.5, 61.7, 46, 3600 }, + [3] = { 57.6, 61.6, 46, 3600 }, + [4] = { 51.1, 54.4, 46, 3600 }, + [5] = { 35.6, 48.9, 46, 3600 }, + [6] = { 18.9, 48.8, 46, 3600 }, + [7] = { 76.5, 47.4, 46, 3600 }, + [8] = { 20.9, 46.6, 46, 3600 }, + [9] = { 66.5, 40.2, 46, 3600 }, + [10] = { 83.1, 38.2, 46, 3600 }, + [11] = { 42.7, 37.4, 46, 3600 }, + [12] = { 63.1, 36.9, 46, 3600 }, + [13] = { 54.7, 36.5, 46, 3600 }, + [14] = { 43.1, 34.5, 46, 3600 }, + [15] = { 15.1, 30.3, 46, 3600 }, + [16] = { 27.6, 85.1, 139, 3600 }, + [17] = { 87.9, 82.8, 139, 3600 }, + [18] = { 62, 81.3, 139, 3600 }, + [19] = { 54.5, 69.4, 139, 3600 }, + [20] = { 59.7, 67.6, 139, 3600 }, + [21] = { 42.5, 50.6, 139, 3600 }, + [22] = { 76.6, 49.9, 139, 3600 }, + [23] = { 86, 46.5, 139, 3600 }, + [24] = { 38.9, 34.1, 139, 3600 }, + [25] = { 70.8, 30.7, 139, 3600 }, + [26] = { 26.7, 29.7, 139, 3600 }, + [27] = { 39.8, 25.1, 139, 3600 }, + [28] = { 64, 73.8, 618, 3600 }, + [29] = { 65.1, 64.3, 618, 3600 }, + [30] = { 59.1, 60.1, 618, 3600 }, + [31] = { 57.6, 49.5, 618, 3600 }, + [32] = { 40.2, 44.2, 618, 3600 }, + [33] = { 67.5, 41.5, 618, 3600 }, + [34] = { 52.3, 40.3, 618, 3600 }, + [35] = { 68.3, 36.6, 618, 3600 }, + [36] = { 30.7, 35.5, 618, 3600 }, + [37] = { 49.4, 9.4, 618, 3600 }, + [38] = { 45.4, 91.3, 1377, 3600 }, + [39] = { 39.3, 85, 1377, 3600 }, + [40] = { 19.7, 84.6, 1377, 3600 }, + [41] = { 62.1, 83.3, 1377, 3600 }, + [42] = { 38.3, 60.7, 1377, 3600 }, + [43] = { 25.7, 58.6, 1377, 3600 }, + [44] = { 63, 53.6, 1377, 3600 }, + [45] = { 51.5, 50.3, 1377, 3600 }, + [46] = { 40.2, 46.8, 1377, 3600 }, + [47] = { 37.8, 34.8, 1377, 3600 }, + [48] = { 20.6, 23.5, 1377, 3600 }, + }, + }, + [176591] = { + ["coords"] = { + [1] = { 51.1, 49.9, 139, 900 }, + }, + }, + [176592] = { + ["coords"] = { + [1] = { 19.8, 85.5, 405, 180 }, + [2] = { 18, 84.5, 405, 180 }, + [3] = { 20.9, 82.6, 405, 180 }, + [4] = { 19.4, 82, 405, 180 }, + [5] = { 18.5, 81.6, 405, 180 }, + [6] = { 21.8, 81.1, 405, 180 }, + [7] = { 23.1, 81, 405, 180 }, + [8] = { 20.7, 80.6, 405, 180 }, + [9] = { 20.2, 79.2, 405, 180 }, + [10] = { 24.3, 77.4, 405, 180 }, + [11] = { 18.9, 77.2, 405, 180 }, + [12] = { 23.4, 77.1, 405, 180 }, + [13] = { 18, 76.3, 405, 180 }, + [14] = { 19.8, 76.2, 405, 180 }, + [15] = { 22.4, 75.1, 405, 180 }, + [16] = { 20.7, 75, 405, 180 }, + [17] = { 20, 73.6, 405, 180 }, + [18] = { 20.3, 71.2, 405, 180 }, + [19] = { 17.6, 70.9, 405, 180 }, + }, + }, + [176594] = { + ["coords"] = { + [1] = { 59.6, 48.1, 85, 900 }, + }, + }, + [176604] = { + ["coords"] = {}, + }, + [176605] = { + ["coords"] = {}, + }, + [176606] = { + ["coords"] = {}, + }, + [176607] = { + ["coords"] = {}, + }, + [176608] = { + ["coords"] = {}, + }, + [176609] = { + ["coords"] = {}, + }, + [176610] = { + ["coords"] = {}, + }, + [176611] = { + ["coords"] = {}, + }, + [176612] = { + ["coords"] = {}, + }, + [176617] = { + ["coords"] = {}, + }, + [176618] = { + ["coords"] = {}, + }, + [176619] = { + ["coords"] = {}, + }, + [176624] = { + ["coords"] = { + [1] = { 23.7, 74.2, 1537, 900 }, + }, + }, + [176625] = { + ["coords"] = { + [1] = { 23.2, 72, 1537, 900 }, + }, + }, + [176626] = { + ["coords"] = { + [1] = { 24, 71, 1537, 900 }, + }, + }, + [176627] = { + ["coords"] = { + [1] = { 24.4, 75.5, 1537, 900 }, + }, + }, + [176628] = { + ["coords"] = { + [1] = { 25.6, 76.4, 1537, 900 }, + }, + }, + [176629] = { + ["coords"] = { + [1] = { 26.4, 75.4, 1537, 900 }, + }, + }, + [176630] = { + ["coords"] = { + [1] = { 17.9, 69.4, 45, 10 }, + [2] = { 18.4, 66.1, 45, 10 }, + [3] = { 27.5, 66.1, 45, 10 }, + [4] = { 20.8, 65.7, 45, 10 }, + [5] = { 29.3, 64.8, 45, 10 }, + [6] = { 19.3, 64.5, 45, 10 }, + [7] = { 19.3, 64.4, 45, 10 }, + [8] = { 29.4, 62.7, 45, 10 }, + }, + }, + [176631] = { + ["coords"] = {}, + }, + [176632] = { + ["coords"] = { + [1] = { 43.8, 72.8, 41, 900 }, + }, + }, + [176633] = { + ["coords"] = { + [1] = { 45.3, 74.3, 41, 900 }, + }, + }, + [176634] = { + ["coords"] = { + [1] = { 44.4, 76.3, 148, 0 }, + }, + }, + [176635] = { + ["coords"] = { + [1] = { 19.8, 85.5, 405, 180 }, + [2] = { 18, 84.5, 405, 180 }, + [3] = { 20.9, 82.6, 405, 180 }, + [4] = { 19.4, 82, 405, 180 }, + [5] = { 18.5, 81.6, 405, 180 }, + [6] = { 21.8, 81.1, 405, 180 }, + [7] = { 23.1, 81, 405, 180 }, + [8] = { 20.7, 80.6, 405, 180 }, + [9] = { 20.2, 79.2, 405, 180 }, + [10] = { 24.3, 77.4, 405, 180 }, + [11] = { 18.9, 77.2, 405, 180 }, + [12] = { 23.4, 77.1, 405, 180 }, + [13] = { 18, 76.3, 405, 180 }, + [14] = { 19.8, 76.2, 405, 180 }, + [15] = { 22.4, 75.1, 405, 180 }, + [16] = { 20.7, 75, 405, 180 }, + [17] = { 20, 73.6, 405, 180 }, + [18] = { 20.3, 71.2, 405, 180 }, + [19] = { 17.6, 70.9, 405, 180 }, + }, + }, + [176636] = { + ["coords"] = { + [1] = { 46.7, 91.9, 361, 300 }, + [2] = { 40.5, 85.5, 361, 300 }, + [3] = { 53.7, 84.8, 361, 300 }, + [4] = { 43.2, 63.3, 361, 300 }, + [5] = { 38.1, 54, 361, 300 }, + [6] = { 37.6, 39.3, 361, 300 }, + [7] = { 49.1, 33.4, 361, 300 }, + [8] = { 39.3, 30.4, 361, 300 }, + [9] = { 54.5, 25.5, 361, 300 }, + [10] = { 40.9, 23.3, 361, 300 }, + [11] = { 54.8, 16.4, 361, 300 }, + }, + }, + [176637] = { + ["coords"] = { + [1] = { 57.5, 26.4, 331, 300 }, + [2] = { 56.6, 90.7, 361, 300 }, + [3] = { 46.5, 90.5, 361, 300 }, + [4] = { 41.5, 86.3, 361, 300 }, + [5] = { 46.3, 86.2, 361, 300 }, + [6] = { 42.4, 81.7, 361, 300 }, + [7] = { 44.7, 81.6, 361, 300 }, + [8] = { 40.7, 77.9, 361, 300 }, + [9] = { 46.6, 77.3, 361, 300 }, + [10] = { 37.7, 74.6, 361, 300 }, + [11] = { 45.5, 72.8, 361, 300 }, + [12] = { 45.4, 70.6, 361, 300 }, + [13] = { 39.9, 69.9, 361, 300 }, + [14] = { 37.6, 68.7, 361, 300 }, + [15] = { 43.9, 63.1, 361, 300 }, + [16] = { 36, 61.6, 361, 300 }, + [17] = { 39.5, 56.9, 361, 300 }, + [18] = { 45.6, 42.1, 361, 300 }, + [19] = { 43.9, 40.5, 361, 300 }, + [20] = { 47.4, 39.4, 361, 300 }, + [21] = { 51.7, 29.8, 361, 300 }, + [22] = { 49.1, 29.4, 361, 300 }, + [23] = { 51.5, 25.1, 361, 300 }, + [24] = { 47, 23.9, 361, 300 }, + [25] = { 50.8, 21.3, 361, 300 }, + [26] = { 55.7, 21.1, 361, 300 }, + [27] = { 57.5, 18.9, 361, 300 }, + [28] = { 42.2, 18.7, 361, 300 }, + [29] = { 44.9, 18.2, 361, 300 }, + [30] = { 44.4, 13.8, 361, 300 }, + [31] = { 62.1, 7.2, 361, 300 }, + [32] = { 56.5, 6.4, 361, 300 }, + }, + }, + [176638] = { + ["coords"] = { + [1] = { 56.5, 86.7, 361, 300 }, + [2] = { 42.6, 80.5, 361, 300 }, + [3] = { 48, 79.4, 361, 300 }, + [4] = { 39.1, 74.2, 361, 300 }, + [5] = { 45.1, 72.6, 361, 300 }, + [6] = { 38.8, 58, 361, 300 }, + [7] = { 45.7, 41.2, 361, 300 }, + [8] = { 60.7, 25.8, 361, 300 }, + [9] = { 52.9, 23.9, 361, 300 }, + [10] = { 46.9, 23.5, 361, 300 }, + [11] = { 56.7, 20.4, 361, 300 }, + [12] = { 62.1, 19.6, 361, 300 }, + [13] = { 41.3, 19.5, 361, 300 }, + [14] = { 49.5, 17.9, 361, 300 }, + [15] = { 51.3, 12.8, 361, 300 }, + [16] = { 56.3, 10.2, 361, 300 }, + [17] = { 63.8, 6.5, 361, 300 }, + [18] = { 47, 72.2, 2597, 300 }, + [19] = { 48.9, 49.7, 2597, 300 }, + [20] = { 50.1, 49, 2597, 300 }, + [21] = { 49.6, 48.1, 2597, 300 }, + [22] = { 48.6, 47.5, 2597, 300 }, + [23] = { 50, 47.4, 2597, 300 }, + [24] = { 48.2, 47, 2597, 300 }, + [25] = { 47.9, 46.8, 2597, 300 }, + [26] = { 47.4, 46.5, 2597, 300 }, + [27] = { 48.3, 45.4, 2597, 300 }, + [28] = { 48.2, 43.1, 2597, 300 }, + [29] = { 49.7, 42.9, 2597, 300 }, + [30] = { 47.5, 35.9, 2597, 300 }, + [31] = { 50.5, 34.9, 2597, 300 }, + [32] = { 50.9, 32.3, 2597, 300 }, + [33] = { 52.4, 29.3, 2597, 300 }, + }, + }, + [176639] = { + ["coords"] = { + [1] = { 50.2, 88.1, 361, 300 }, + [2] = { 47.8, 87.6, 361, 300 }, + [3] = { 56.7, 84.9, 361, 300 }, + [4] = { 45.8, 84.8, 361, 300 }, + [5] = { 42.3, 81.3, 361, 300 }, + [6] = { 40.7, 78.1, 361, 300 }, + [7] = { 45.9, 75.1, 361, 300 }, + [8] = { 48, 74.8, 361, 300 }, + [9] = { 44.7, 69.5, 361, 300 }, + [10] = { 40.1, 68.1, 361, 300 }, + [11] = { 42.7, 63.1, 361, 300 }, + [12] = { 37.3, 61.1, 361, 300 }, + [13] = { 39.8, 56.9, 361, 300 }, + [14] = { 38.9, 50.7, 361, 300 }, + [15] = { 44.4, 46.5, 361, 300 }, + [16] = { 40.3, 43, 361, 300 }, + [17] = { 46.4, 39.7, 361, 300 }, + [18] = { 41.2, 34.3, 361, 300 }, + [19] = { 50.5, 32.6, 361, 300 }, + [20] = { 54, 27, 361, 300 }, + [21] = { 46.6, 24.1, 361, 300 }, + [22] = { 53.1, 22.8, 361, 300 }, + [23] = { 48.9, 20.7, 361, 300 }, + [24] = { 64.2, 19.5, 361, 300 }, + [25] = { 44.9, 18.2, 361, 300 }, + [26] = { 58, 18.1, 361, 300 }, + [27] = { 54.2, 16, 361, 300 }, + [28] = { 51.6, 15.8, 361, 300 }, + [29] = { 50.2, 12.7, 361, 300 }, + [30] = { 54.1, 11.8, 361, 300 }, + [31] = { 62.6, 11.5, 361, 300 }, + [32] = { 54.3, 86.7, 2597, 300 }, + [33] = { 57, 83.4, 2597, 300 }, + [34] = { 52.4, 77.7, 2597, 300 }, + [35] = { 49.1, 77.4, 2597, 300 }, + [36] = { 54.4, 77.1, 2597, 300 }, + [37] = { 56.5, 75.3, 2597, 300 }, + [38] = { 49.2, 75.3, 2597, 300 }, + [39] = { 50.6, 72.2, 2597, 300 }, + [40] = { 51.6, 71.9, 2597, 300 }, + [41] = { 50, 71.4, 2597, 300 }, + [42] = { 48.7, 70.8, 2597, 300 }, + [43] = { 46.8, 70.1, 2597, 300 }, + [44] = { 52.8, 69.9, 2597, 300 }, + [45] = { 47.1, 67.4, 2597, 300 }, + [46] = { 49, 66.7, 2597, 300 }, + [47] = { 48.5, 65.9, 2597, 300 }, + [48] = { 51.5, 65.1, 2597, 300 }, + [49] = { 52.1, 61.1, 2597, 300 }, + [50] = { 50.7, 60.8, 2597, 300 }, + [51] = { 45.4, 60.6, 2597, 300 }, + [52] = { 43.9, 58.7, 2597, 300 }, + [53] = { 46.1, 58.5, 2597, 300 }, + [54] = { 50.7, 58.4, 2597, 300 }, + [55] = { 44.4, 58.2, 2597, 300 }, + [56] = { 49.2, 57.2, 2597, 300 }, + [57] = { 46.7, 57, 2597, 300 }, + [58] = { 43.8, 56.5, 2597, 300 }, + [59] = { 52, 56.2, 2597, 300 }, + [60] = { 42.3, 56.1, 2597, 300 }, + [61] = { 42.7, 56, 2597, 300 }, + [62] = { 48.3, 56, 2597, 300 }, + [63] = { 49.7, 55.2, 2597, 300 }, + [64] = { 43.6, 55.1, 2597, 300 }, + [65] = { 44.8, 54.9, 2597, 300 }, + [66] = { 52, 54.9, 2597, 300 }, + [67] = { 47.9, 54.8, 2597, 300 }, + [68] = { 44, 54.4, 2597, 300 }, + [69] = { 46.3, 53.7, 2597, 300 }, + [70] = { 48.2, 52.9, 2597, 300 }, + [71] = { 50.7, 52, 2597, 300 }, + [72] = { 45.5, 51.9, 2597, 300 }, + [73] = { 42.8, 51.5, 2597, 300 }, + [74] = { 48.5, 51.4, 2597, 300 }, + [75] = { 43, 51.3, 2597, 300 }, + [76] = { 49.5, 51.3, 2597, 300 }, + [77] = { 44.9, 51, 2597, 300 }, + [78] = { 50.5, 50.9, 2597, 300 }, + [79] = { 50.6, 50.7, 2597, 300 }, + [80] = { 44.4, 50.4, 2597, 300 }, + [81] = { 44.6, 50, 2597, 300 }, + [82] = { 43, 49.9, 2597, 300 }, + [83] = { 52.8, 49.7, 2597, 300 }, + [84] = { 46.6, 49.7, 2597, 300 }, + [85] = { 51.9, 49.2, 2597, 300 }, + [86] = { 42.7, 48.9, 2597, 300 }, + [87] = { 43.6, 48.5, 2597, 300 }, + [88] = { 42.7, 48.2, 2597, 300 }, + [89] = { 52.4, 47.7, 2597, 300 }, + [90] = { 44.8, 47.6, 2597, 300 }, + [91] = { 44.7, 46.2, 2597, 300 }, + [92] = { 44.6, 45.1, 2597, 300 }, + [93] = { 47.2, 44.7, 2597, 300 }, + [94] = { 47.9, 44.5, 2597, 300 }, + [95] = { 43.8, 43.7, 2597, 300 }, + [96] = { 45.4, 43.5, 2597, 300 }, + [97] = { 49.1, 43.1, 2597, 300 }, + [98] = { 52.4, 42.9, 2597, 300 }, + [99] = { 47, 42.8, 2597, 300 }, + [100] = { 50.1, 42.2, 2597, 300 }, + [101] = { 46.9, 41.4, 2597, 300 }, + [102] = { 46.5, 39.8, 2597, 300 }, + [103] = { 51, 38.8, 2597, 300 }, + [104] = { 47.3, 35.3, 2597, 300 }, + [105] = { 48.5, 34.5, 2597, 300 }, + [106] = { 49.4, 33.7, 2597, 300 }, + [107] = { 50.4, 32.5, 2597, 300 }, + [108] = { 50.8, 32.1, 2597, 300 }, + [109] = { 49.3, 29.5, 2597, 300 }, + [110] = { 46.1, 28.1, 2597, 300 }, + [111] = { 49.9, 27.8, 2597, 300 }, + [112] = { 47.6, 26.7, 2597, 300 }, + [113] = { 49.5, 26.6, 2597, 300 }, + [114] = { 45.3, 25.1, 2597, 300 }, + [115] = { 47.5, 24.8, 2597, 300 }, + [116] = { 44.5, 23.3, 2597, 300 }, + [117] = { 48.2, 23.2, 2597, 300 }, + [118] = { 50.2, 22.7, 2597, 300 }, + [119] = { 43.9, 21.4, 2597, 300 }, + [120] = { 42.5, 20.4, 2597, 300 }, + [121] = { 43.6, 20.3, 2597, 300 }, + [122] = { 42.3, 19.3, 2597, 300 }, + }, + }, + [176640] = { + ["coords"] = { + [1] = { 50.1, 81.2, 148, 300 }, + [2] = { 54.3, 47.6, 148, 300 }, + [3] = { 56.4, 41.9, 148, 300 }, + [4] = { 36.8, 70.5, 361, 300 }, + [5] = { 34.5, 61.2, 361, 300 }, + [6] = { 45.2, 46.7, 361, 300 }, + [7] = { 42.6, 44.5, 361, 300 }, + [8] = { 48.6, 40.1, 361, 300 }, + [9] = { 42.6, 35.5, 361, 300 }, + [10] = { 50.8, 33.2, 361, 300 }, + [11] = { 47.4, 30.6, 361, 300 }, + [12] = { 56.8, 28, 361, 300 }, + [13] = { 60.5, 25.5, 361, 300 }, + [14] = { 39.9, 25, 361, 300 }, + [15] = { 47.1, 24.9, 361, 300 }, + [16] = { 53.3, 24.9, 361, 300 }, + [17] = { 39.3, 23, 361, 300 }, + [18] = { 64.5, 22, 361, 300 }, + [19] = { 58, 21.3, 361, 300 }, + [20] = { 41.7, 20.5, 361, 300 }, + [21] = { 41.7, 16.4, 361, 300 }, + [22] = { 57.4, 10.9, 361, 300 }, + [23] = { 63.4, 4.8, 361, 300 }, + [24] = { 51.9, 87.8, 2597, 300 }, + [25] = { 53.4, 87.7, 2597, 300 }, + [26] = { 57.6, 85.9, 2597, 300 }, + [27] = { 51.1, 85, 2597, 300 }, + [28] = { 52.3, 83.8, 2597, 300 }, + [29] = { 52.2, 80.1, 2597, 300 }, + [30] = { 52.1, 80, 2597, 300 }, + [31] = { 51.3, 79.8, 2597, 300 }, + [32] = { 51.2, 79.6, 2597, 300 }, + [33] = { 58, 78.2, 2597, 300 }, + [34] = { 48.5, 77.8, 2597, 300 }, + [35] = { 48.4, 76, 2597, 300 }, + [36] = { 47.8, 75.5, 2597, 300 }, + [37] = { 48.2, 75.5, 2597, 300 }, + [38] = { 57.2, 74.5, 2597, 300 }, + [39] = { 48.7, 74.2, 2597, 300 }, + [40] = { 56.6, 73.9, 2597, 300 }, + [41] = { 52.3, 73.7, 2597, 300 }, + [42] = { 46.9, 73.4, 2597, 300 }, + [43] = { 54.9, 73.3, 2597, 300 }, + [44] = { 46.1, 70.6, 2597, 300 }, + [45] = { 49.5, 70.5, 2597, 300 }, + [46] = { 46.7, 67.7, 2597, 300 }, + [47] = { 47.3, 67.3, 2597, 300 }, + [48] = { 52, 66.9, 2597, 300 }, + [49] = { 48.8, 66.8, 2597, 300 }, + [50] = { 52.7, 65.9, 2597, 300 }, + [51] = { 48, 65.6, 2597, 300 }, + [52] = { 51.1, 65.1, 2597, 300 }, + [53] = { 48.2, 65, 2597, 300 }, + [54] = { 48.6, 64.8, 2597, 300 }, + [55] = { 53.6, 64.8, 2597, 300 }, + [56] = { 49.1, 63.7, 2597, 300 }, + [57] = { 51.5, 63.2, 2597, 300 }, + [58] = { 44.1, 62.3, 2597, 300 }, + [59] = { 49.8, 61.9, 2597, 300 }, + [60] = { 43.7, 60.9, 2597, 300 }, + [61] = { 46.1, 60.9, 2597, 300 }, + [62] = { 42.1, 60.3, 2597, 300 }, + [63] = { 41.8, 59.6, 2597, 300 }, + [64] = { 50.4, 59.3, 2597, 300 }, + [65] = { 51.1, 59.1, 2597, 300 }, + [66] = { 44.4, 58, 2597, 300 }, + [67] = { 48.5, 57.5, 2597, 300 }, + [68] = { 48, 57.1, 2597, 300 }, + [69] = { 47.8, 56.3, 2597, 300 }, + [70] = { 52.4, 56.3, 2597, 300 }, + [71] = { 44.4, 56.2, 2597, 300 }, + [72] = { 47.6, 55, 2597, 300 }, + [73] = { 45.8, 54.9, 2597, 300 }, + [74] = { 49.2, 54.6, 2597, 300 }, + [75] = { 45.9, 54.5, 2597, 300 }, + [76] = { 52.5, 53.2, 2597, 300 }, + [77] = { 47.8, 53, 2597, 300 }, + [78] = { 52.3, 52.3, 2597, 300 }, + [79] = { 50, 51.1, 2597, 300 }, + [80] = { 45.6, 51.1, 2597, 300 }, + [81] = { 44.8, 50.5, 2597, 300 }, + [82] = { 47.4, 49.7, 2597, 300 }, + [83] = { 53.3, 49.4, 2597, 300 }, + [84] = { 45.9, 48.6, 2597, 300 }, + [85] = { 52.4, 48.2, 2597, 300 }, + [86] = { 52.3, 47.9, 2597, 300 }, + [87] = { 43.5, 47.5, 2597, 300 }, + [88] = { 44.5, 46.7, 2597, 300 }, + [89] = { 44.9, 46.4, 2597, 300 }, + [90] = { 44.6, 45, 2597, 300 }, + [91] = { 43.8, 43.4, 2597, 300 }, + [92] = { 47.4, 42.4, 2597, 300 }, + [93] = { 47.4, 41.7, 2597, 300 }, + [94] = { 53.8, 41.5, 2597, 300 }, + [95] = { 46.5, 41.3, 2597, 300 }, + [96] = { 46.3, 41.1, 2597, 300 }, + [97] = { 53.6, 41.1, 2597, 300 }, + [98] = { 51.9, 40.4, 2597, 300 }, + [99] = { 55.4, 40.3, 2597, 300 }, + [100] = { 55.1, 40, 2597, 300 }, + [101] = { 52.3, 39.6, 2597, 300 }, + [102] = { 47, 39.1, 2597, 300 }, + [103] = { 48.1, 38, 2597, 300 }, + [104] = { 50.8, 38, 2597, 300 }, + [105] = { 49.8, 36, 2597, 300 }, + [106] = { 46.7, 35.3, 2597, 300 }, + [107] = { 49.2, 33.6, 2597, 300 }, + [108] = { 49.7, 33.2, 2597, 300 }, + [109] = { 49, 29.9, 2597, 300 }, + [110] = { 42.3, 29.4, 2597, 300 }, + [111] = { 54.3, 29.2, 2597, 300 }, + [112] = { 50.1, 29.2, 2597, 300 }, + [113] = { 47.2, 27.9, 2597, 300 }, + [114] = { 47.4, 27.8, 2597, 300 }, + [115] = { 52.4, 27.7, 2597, 300 }, + [116] = { 47.9, 27.6, 2597, 300 }, + [117] = { 52.7, 27.4, 2597, 300 }, + [118] = { 52.6, 26.8, 2597, 300 }, + [119] = { 52.6, 25.8, 2597, 300 }, + [120] = { 42.2, 25.3, 2597, 300 }, + [121] = { 41.9, 25.1, 2597, 300 }, + [122] = { 41.7, 24.3, 2597, 300 }, + [123] = { 50.7, 24.2, 2597, 300 }, + [124] = { 45.8, 23.9, 2597, 300 }, + [125] = { 52.9, 23.9, 2597, 300 }, + [126] = { 53.2, 23.8, 2597, 300 }, + [127] = { 45.6, 23.7, 2597, 300 }, + [128] = { 51.4, 23.1, 2597, 300 }, + [129] = { 47.7, 22, 2597, 300 }, + [130] = { 41.8, 21.9, 2597, 300 }, + [131] = { 48.1, 21.6, 2597, 300 }, + [132] = { 41.1, 21.3, 2597, 300 }, + [133] = { 44.5, 20.2, 2597, 300 }, + [134] = { 46.2, 19.9, 2597, 300 }, + [135] = { 55, 19.5, 2597, 300 }, + [136] = { 46.2, 19.4, 2597, 300 }, + [137] = { 50.9, 19, 2597, 300 }, + [138] = { 53.1, 18.5, 2597, 300 }, + [139] = { 46.6, 13.8, 2597, 300 }, + [140] = { 50.4, 10.2, 2597, 300 }, + }, + }, + [176641] = { + ["coords"] = { + [1] = { 55.1, 84.8, 148, 300 }, + [2] = { 56.9, 41.7, 148, 300 }, + [3] = { 54.4, 26.2, 331, 300 }, + [4] = { 40.2, 19.5, 331, 300 }, + [5] = { 46.7, 90.7, 361, 300 }, + [6] = { 53.6, 90.4, 361, 300 }, + [7] = { 55.9, 88.2, 361, 300 }, + [8] = { 48.6, 86.5, 361, 300 }, + [9] = { 39.3, 83.8, 361, 300 }, + [10] = { 56.7, 83.7, 361, 300 }, + [11] = { 53.1, 83, 361, 300 }, + [12] = { 44, 82.4, 361, 300 }, + [13] = { 49.7, 80.4, 361, 300 }, + [14] = { 40.9, 78.2, 361, 300 }, + [15] = { 46.5, 76.4, 361, 300 }, + [16] = { 38.8, 72.8, 361, 300 }, + [17] = { 40.3, 72.6, 361, 300 }, + [18] = { 44.8, 69.9, 361, 300 }, + [19] = { 40.2, 69.7, 361, 300 }, + [20] = { 38.4, 68.9, 361, 300 }, + [21] = { 41.9, 68.3, 361, 300 }, + [22] = { 43.9, 65.5, 361, 300 }, + [23] = { 40.2, 65.3, 361, 300 }, + [24] = { 42.1, 58.6, 361, 300 }, + [25] = { 38.2, 56.3, 361, 300 }, + [26] = { 42.1, 49.8, 361, 300 }, + [27] = { 43.3, 42.9, 361, 300 }, + [28] = { 41.4, 41.6, 361, 300 }, + [29] = { 44.5, 41.2, 361, 300 }, + [30] = { 40.3, 38.8, 361, 300 }, + [31] = { 47.9, 38.7, 361, 300 }, + [32] = { 41, 37.6, 361, 300 }, + [33] = { 50.8, 32.6, 361, 300 }, + [34] = { 48.1, 28.5, 361, 300 }, + [35] = { 52.3, 27.2, 361, 300 }, + [36] = { 56.8, 26.5, 361, 300 }, + [37] = { 61.9, 25.8, 361, 300 }, + [38] = { 48.7, 24.8, 361, 300 }, + [39] = { 56.7, 23.9, 361, 300 }, + [40] = { 47.3, 22.7, 361, 300 }, + [41] = { 43.4, 21.6, 361, 300 }, + [42] = { 55, 20.4, 361, 300 }, + [43] = { 52, 18.7, 361, 300 }, + [44] = { 56.8, 18.6, 361, 300 }, + [45] = { 42.2, 16.1, 361, 300 }, + [46] = { 53.8, 14.3, 361, 300 }, + [47] = { 51.6, 11.8, 361, 300 }, + [48] = { 55.2, 11.1, 361, 300 }, + [49] = { 60.1, 7.3, 361, 300 }, + }, + }, + [176642] = { + ["coords"] = { + [1] = { 51.1, 81.1, 148, 300 }, + [2] = { 56.3, 44.4, 148, 300 }, + [3] = { 57.7, 40.1, 148, 300 }, + [4] = { 57.3, 25.9, 331, 300 }, + [5] = { 48.3, 92.7, 361, 300 }, + [6] = { 56.4, 90.1, 361, 300 }, + [7] = { 41.7, 86.6, 361, 300 }, + [8] = { 53.7, 84.3, 361, 300 }, + [9] = { 44.5, 83.3, 361, 300 }, + [10] = { 41.5, 80.4, 361, 300 }, + [11] = { 47.8, 76.7, 361, 300 }, + [12] = { 37.5, 72.6, 361, 300 }, + [13] = { 44.9, 67.5, 361, 300 }, + [14] = { 35.6, 61, 361, 300 }, + [15] = { 38, 44.4, 361, 300 }, + [16] = { 43.7, 43.5, 361, 300 }, + [17] = { 41.1, 39.8, 361, 300 }, + [18] = { 45.5, 37.6, 361, 300 }, + [19] = { 55.7, 22.7, 361, 300 }, + [20] = { 41.5, 19.3, 361, 300 }, + [21] = { 52.8, 16.1, 361, 300 }, + [22] = { 46.2, 15.8, 361, 300 }, + [23] = { 43.1, 14.3, 361, 300 }, + }, + }, + [176643] = { + ["coords"] = { + [1] = { 50, 86, 148, 300 }, + [2] = { 49.9, 79.8, 148, 300 }, + [3] = { 51.4, 73.3, 148, 600 }, + [4] = { 49.6, 72.4, 148, 300 }, + [5] = { 56, 82.6, 361, 300 }, + [6] = { 42.1, 78.4, 361, 300 }, + [7] = { 47.3, 76.1, 361, 300 }, + [8] = { 38.3, 70.6, 361, 300 }, + [9] = { 36.2, 68.9, 361, 300 }, + [10] = { 37.9, 68, 361, 300 }, + [11] = { 34.4, 66.7, 361, 300 }, + [12] = { 37.5, 65.8, 361, 300 }, + [13] = { 43.8, 62.1, 361, 300 }, + [14] = { 34.2, 59.6, 361, 300 }, + [15] = { 36.3, 55.4, 361, 600 }, + [16] = { 38.9, 55.1, 361, 300 }, + [17] = { 37.9, 53.8, 361, 600 }, + [18] = { 36, 52.2, 361, 600 }, + [19] = { 33.9, 51.2, 361, 300 }, + [20] = { 38.8, 47.4, 361, 600 }, + [21] = { 43.2, 46.7, 361, 300 }, + [22] = { 38.2, 45.7, 361, 600 }, + [23] = { 43.4, 41.2, 361, 300 }, + [24] = { 38.1, 32.2, 361, 300 }, + [25] = { 50.1, 31.5, 361, 300 }, + [26] = { 63.2, 24.7, 361, 300 }, + [27] = { 48.6, 23.8, 361, 300 }, + [28] = { 39.8, 22.3, 361, 300 }, + [29] = { 61.3, 21.3, 361, 600 }, + [30] = { 59.2, 19.4, 361, 600 }, + [31] = { 57.6, 17.3, 361, 600 }, + [32] = { 46.2, 13.5, 361, 300 }, + [33] = { 63.1, 10.2, 361, 300 }, + [34] = { 63.2, 7.8, 361, 300 }, + [35] = { 61.3, 6.8, 361, 300 }, + [36] = { 59.6, 6.1, 361, 300 }, + [37] = { 45.8, 71, 2597, 604800 }, + [38] = { 44.6, 70.6, 2597, 604800 }, + [39] = { 45.6, 70.5, 2597, 604800 }, + [40] = { 42.1, 69.3, 2597, 604800 }, + [41] = { 43.9, 68.8, 2597, 604800 }, + [42] = { 43.8, 67.7, 2597, 604800 }, + [43] = { 45.5, 61.1, 2597, 604800 }, + [44] = { 43.4, 59.5, 2597, 604800 }, + [45] = { 41.9, 58.9, 2597, 604800 }, + [46] = { 47.4, 58.3, 2597, 604800 }, + [47] = { 45.4, 58.2, 2597, 604800 }, + [48] = { 42.1, 55.9, 2597, 604800 }, + [49] = { 44, 55.2, 2597, 604800 }, + [50] = { 47.8, 55.1, 2597, 604800 }, + [51] = { 48, 53.3, 2597, 604800 }, + [52] = { 42.8, 52.5, 2597, 604800 }, + [53] = { 45.8, 52, 2597, 604800 }, + [54] = { 49.4, 51.9, 2597, 604800 }, + [55] = { 45.4, 51.2, 2597, 604800 }, + [56] = { 50.9, 51, 2597, 604800 }, + [57] = { 43, 50.8, 2597, 604800 }, + [58] = { 52.4, 50.7, 2597, 604800 }, + [59] = { 44.7, 50.5, 2597, 604800 }, + [60] = { 43.9, 48.3, 2597, 604800 }, + [61] = { 51.3, 48, 2597, 604800 }, + [62] = { 42.7, 48, 2597, 604800 }, + [63] = { 53.2, 47.6, 2597, 604800 }, + [64] = { 44.6, 47.6, 2597, 604800 }, + [65] = { 43.5, 46.8, 2597, 604800 }, + [66] = { 45.8, 46.8, 2597, 604800 }, + [67] = { 48.7, 46.5, 2597, 604800 }, + [68] = { 48.5, 46.3, 2597, 604800 }, + [69] = { 48.9, 45.9, 2597, 604800 }, + [70] = { 45.1, 45.8, 2597, 604800 }, + [71] = { 50.4, 45.4, 2597, 604800 }, + [72] = { 46.6, 44.9, 2597, 604800 }, + [73] = { 43.3, 44.5, 2597, 604800 }, + [74] = { 44, 43.3, 2597, 604800 }, + [75] = { 45.7, 40.9, 2597, 604800 }, + [76] = { 48.8, 36.3, 2597, 604800 }, + [77] = { 50, 35.7, 2597, 604800 }, + [78] = { 50.8, 35, 2597, 604800 }, + [79] = { 47.1, 35, 2597, 604800 }, + [80] = { 48.9, 33.9, 2597, 604800 }, + [81] = { 51.8, 33.6, 2597, 604800 }, + [82] = { 52.8, 30.5, 2597, 604800 }, + [83] = { 50.6, 9.1, 2597, 604800 }, + [84] = { 53.2, 8.9, 2597, 604800 }, + [85] = { 52.5, 8.7, 2597, 604800 }, + [86] = { 50.5, 7.7, 2597, 604800 }, + [87] = { 50.8, 5, 2597, 604800 }, + [88] = { 52.9, 4, 2597, 604800 }, + }, + }, + [176645] = { + ["coords"] = { + [1] = { 48, 94.8, 361, 300 }, + [2] = { 47.5, 92.3, 361, 300 }, + [3] = { 49.5, 90.9, 361, 300 }, + [4] = { 48.2, 90, 361, 300 }, + [5] = { 44.9, 85.5, 361, 300 }, + [6] = { 39.7, 81, 361, 300 }, + [7] = { 50.4, 79.8, 361, 300 }, + [8] = { 40.1, 74.1, 361, 300 }, + [9] = { 47, 72.4, 361, 300 }, + [10] = { 45.2, 66.6, 361, 300 }, + [11] = { 36.6, 62.7, 361, 300 }, + [12] = { 38.8, 62.1, 361, 600 }, + [13] = { 38.6, 61.9, 361, 600 }, + [14] = { 38.1, 61.8, 361, 600 }, + [15] = { 37.9, 61.5, 361, 600 }, + [16] = { 38.3, 60.8, 361, 600 }, + [17] = { 36.8, 56, 361, 600 }, + [18] = { 38.3, 54.8, 361, 600 }, + [19] = { 36.6, 52, 361, 600 }, + [20] = { 37.7, 51.6, 361, 300 }, + [21] = { 44.2, 48.5, 361, 300 }, + [22] = { 38, 48.4, 361, 600 }, + [23] = { 42.9, 44.1, 361, 300 }, + [24] = { 45.7, 34.2, 361, 300 }, + [25] = { 52.9, 30.4, 361, 300 }, + [26] = { 57.5, 22.5, 361, 600 }, + [27] = { 57.6, 21.4, 361, 300 }, + [28] = { 58.2, 20.5, 361, 600 }, + [29] = { 57.7, 19.1, 361, 600 }, + [30] = { 43.5, 18.2, 361, 300 }, + [31] = { 55.6, 7.4, 361, 300 }, + [32] = { 52.1, 97, 2597, 604800 }, + [33] = { 52.5, 95.7, 2597, 604800 }, + [34] = { 52, 94.8, 2597, 604800 }, + [35] = { 51.4, 94.5, 2597, 604800 }, + [36] = { 53.7, 94.3, 2597, 604800 }, + [37] = { 53.8, 92.9, 2597, 604800 }, + [38] = { 42.9, 73.2, 2597, 604800 }, + [39] = { 42.8, 72.8, 2597, 604800 }, + [40] = { 46.3, 72.1, 2597, 604800 }, + [41] = { 46.6, 72, 2597, 604800 }, + [42] = { 45.3, 72, 2597, 604800 }, + [43] = { 46, 71.9, 2597, 604800 }, + [44] = { 45.7, 71.7, 2597, 604800 }, + [45] = { 45, 71.1, 2597, 604800 }, + [46] = { 43.2, 70.8, 2597, 604800 }, + [47] = { 45.4, 70.8, 2597, 604800 }, + [48] = { 44.1, 70.6, 2597, 604800 }, + [49] = { 43.5, 70.3, 2597, 604800 }, + [50] = { 45.9, 70.1, 2597, 604800 }, + [51] = { 45.1, 70, 2597, 604800 }, + [52] = { 44.5, 69.6, 2597, 604800 }, + [53] = { 45.1, 69.6, 2597, 604800 }, + [54] = { 44, 69.3, 2597, 604800 }, + [55] = { 43, 69, 2597, 604800 }, + [56] = { 42, 68.6, 2597, 604800 }, + [57] = { 44.8, 68.5, 2597, 604800 }, + [58] = { 38.7, 39, 2597, 604800 }, + [59] = { 41.4, 38.7, 2597, 604800 }, + [60] = { 41.2, 38, 2597, 604800 }, + [61] = { 39.4, 37, 2597, 604800 }, + [62] = { 37, 33.4, 2597, 604800 }, + [63] = { 39.1, 32.1, 2597, 604800 }, + [64] = { 52.9, 9.9, 2597, 604800 }, + [65] = { 51.2, 9.4, 2597, 604800 }, + [66] = { 50, 9.3, 2597, 604800 }, + [67] = { 50.2, 8.9, 2597, 604800 }, + [68] = { 51.2, 8.9, 2597, 604800 }, + [69] = { 49.7, 8.8, 2597, 604800 }, + [70] = { 51.7, 8.4, 2597, 604800 }, + [71] = { 52.4, 8.3, 2597, 604800 }, + [72] = { 50.4, 8.1, 2597, 604800 }, + [73] = { 50.7, 7.9, 2597, 604800 }, + [74] = { 51.7, 7.4, 2597, 604800 }, + [75] = { 50.2, 6.8, 2597, 604800 }, + [76] = { 52.4, 6.7, 2597, 604800 }, + [77] = { 53.1, 6.7, 2597, 604800 }, + [78] = { 52.1, 6.7, 2597, 604800 }, + [79] = { 53.2, 6.1, 2597, 604800 }, + [80] = { 50.5, 5.9, 2597, 604800 }, + [81] = { 51.8, 5.4, 2597, 604800 }, + [82] = { 52.2, 5.1, 2597, 604800 }, + [83] = { 50, 4.4, 2597, 604800 }, + [84] = { 52.5, 4, 2597, 604800 }, + }, + }, + [176665] = { + ["coords"] = {}, + }, + [176666] = { + ["coords"] = {}, + }, + [176667] = { + ["coords"] = {}, + }, + [176668] = { + ["coords"] = {}, + }, + [176669] = { + ["coords"] = {}, + }, + [176670] = { + ["coords"] = {}, + }, + [176671] = { + ["coords"] = {}, + }, + [176672] = { + ["coords"] = {}, + }, + [176673] = { + ["coords"] = {}, + }, + [176674] = { + ["coords"] = {}, + }, + [176675] = { + ["coords"] = {}, + }, + [176676] = { + ["coords"] = {}, + }, + [176677] = { + ["coords"] = {}, + }, + [176678] = { + ["coords"] = {}, + }, + [176679] = { + ["coords"] = {}, + }, + [176680] = { + ["coords"] = {}, + }, + [176681] = { + ["coords"] = {}, + }, + [176682] = { + ["coords"] = {}, + }, + [176683] = { + ["coords"] = {}, + }, + [176684] = { + ["coords"] = {}, + }, + [176685] = { + ["coords"] = {}, + }, + [176686] = { + ["coords"] = {}, + }, + [176687] = { + ["coords"] = {}, + }, + [176688] = { + ["coords"] = {}, + }, + [176689] = { + ["coords"] = {}, + }, + [176690] = { + ["coords"] = {}, + }, + [176691] = { + ["coords"] = {}, + }, + [176692] = { + ["coords"] = {}, + }, + [176693] = { + ["coords"] = {}, + }, + [176694] = { + ["coords"] = { + [1] = { 46.7, 70.3, 41, 900 }, + }, + }, + [176705] = { + ["coords"] = { + [1] = { 52.4, 33.4, 148, 900 }, + }, + }, + [176745] = { + ["coords"] = { + [1] = { 65.2, 78.1, 28, 1200 }, + }, + }, + [176746] = { + ["coords"] = { + [1] = { 44.6, 28.9, 17, 0 }, + [2] = { 44.6, 28.7, 17, 0 }, + }, + }, + [176747] = { + ["coords"] = { + [1] = { 44.6, 28.8, 17, 0 }, + [2] = { 44.7, 28.8, 17, 0 }, + [3] = { 44.6, 28.7, 17, 0 }, + [4] = { 44.4, 27.6, 17, 0 }, + [5] = { 44.4, 27.4, 17, 0 }, + }, + }, + [176748] = { + ["coords"] = { + [1] = { 61.5, 37, 618, 900 }, + }, + }, + [176749] = { + ["coords"] = { + [1] = { 61.5, 37.1, 618, 900 }, + }, + }, + [176750] = { + ["coords"] = { + [1] = { 54.4, 63.8, 405, 180 }, + [2] = { 54.4, 62.8, 405, 180 }, + [3] = { 46.2, 61.3, 405, 180 }, + [4] = { 53.3, 61.2, 405, 180 }, + [5] = { 54.4, 60.4, 405, 180 }, + [6] = { 49, 60.1, 405, 180 }, + [7] = { 51.1, 60, 405, 180 }, + [8] = { 54.2, 58.9, 405, 180 }, + [9] = { 48.9, 58.8, 405, 180 }, + [10] = { 50.8, 58.7, 405, 180 }, + [11] = { 52.2, 58.6, 405, 180 }, + [12] = { 53.9, 58.1, 405, 180 }, + [13] = { 47.4, 57.7, 405, 180 }, + [14] = { 49.7, 57.1, 405, 180 }, + [15] = { 52.9, 57.1, 405, 180 }, + }, + }, + [176751] = { + ["coords"] = { + [1] = { 54.4, 63.8, 405, 180 }, + [2] = { 54.4, 62.8, 405, 180 }, + [3] = { 46.2, 61.3, 405, 180 }, + [4] = { 53.3, 61.2, 405, 180 }, + [5] = { 54.4, 60.4, 405, 180 }, + [6] = { 49, 60.1, 405, 180 }, + [7] = { 51.1, 60, 405, 180 }, + [8] = { 54.2, 58.9, 405, 180 }, + [9] = { 48.9, 58.8, 405, 180 }, + [10] = { 50.8, 58.7, 405, 180 }, + [11] = { 52.2, 58.6, 405, 180 }, + [12] = { 53.9, 58.1, 405, 180 }, + [13] = { 47.4, 57.7, 405, 180 }, + [14] = { 49.7, 57.1, 405, 180 }, + [15] = { 52.9, 57.1, 405, 180 }, + }, + }, + [176752] = { + ["coords"] = { + [1] = { 54.4, 63.8, 405, 180 }, + [2] = { 54.4, 62.8, 405, 180 }, + [3] = { 46.2, 61.3, 405, 180 }, + [4] = { 53.3, 61.2, 405, 180 }, + [5] = { 54.4, 60.4, 405, 180 }, + [6] = { 49, 60.1, 405, 180 }, + [7] = { 51.1, 60, 405, 180 }, + [8] = { 54.2, 58.9, 405, 180 }, + [9] = { 48.9, 58.8, 405, 180 }, + [10] = { 50.8, 58.7, 405, 180 }, + [11] = { 52.2, 58.6, 405, 180 }, + [12] = { 53.9, 58.1, 405, 180 }, + [13] = { 47.4, 57.7, 405, 180 }, + [14] = { 49.7, 57.1, 405, 180 }, + [15] = { 52.9, 57.1, 405, 180 }, + }, + }, + [176753] = { + ["coords"] = { + [1] = { 56.6, 43.3, 85, 180 }, + [2] = { 55.5, 43.3, 85, 180 }, + [3] = { 54.8, 43.1, 85, 180 }, + [4] = { 58.3, 42.9, 85, 180 }, + [5] = { 55.5, 42.7, 85, 180 }, + [6] = { 55.3, 42.7, 85, 180 }, + [7] = { 54.8, 42.5, 85, 180 }, + [8] = { 55.2, 42.2, 85, 180 }, + [9] = { 54.7, 42.2, 85, 180 }, + [10] = { 57.2, 42.2, 85, 180 }, + [11] = { 55.6, 42, 85, 180 }, + [12] = { 56.6, 42, 85, 180 }, + [13] = { 58.3, 41.9, 85, 180 }, + [14] = { 57.9, 41.8, 85, 180 }, + [15] = { 58.1, 41.6, 85, 180 }, + [16] = { 55.3, 41.5, 85, 180 }, + [17] = { 55.9, 41.4, 85, 180 }, + [18] = { 58.6, 41.3, 85, 180 }, + [19] = { 58.3, 41.2, 85, 180 }, + [20] = { 55.4, 41.2, 85, 180 }, + [21] = { 56.4, 40.9, 85, 180 }, + [22] = { 58.8, 40.6, 85, 180 }, + [23] = { 55.9, 40.5, 85, 180 }, + [24] = { 55.5, 40.4, 85, 180 }, + [25] = { 56.4, 40.2, 85, 180 }, + [26] = { 55.3, 40.2, 85, 180 }, + [27] = { 58.8, 40.1, 85, 180 }, + [28] = { 55.7, 40, 85, 180 }, + [29] = { 56, 39.9, 85, 180 }, + [30] = { 56.9, 39.9, 85, 180 }, + [31] = { 57.1, 39.8, 85, 180 }, + [32] = { 57.5, 39.5, 85, 180 }, + [33] = { 54.9, 39, 85, 180 }, + [34] = { 54.7, 39, 85, 180 }, + [35] = { 55.8, 38.9, 85, 180 }, + [36] = { 56, 38.8, 85, 180 }, + [37] = { 58, 38.7, 85, 180 }, + [38] = { 55.1, 38.7, 85, 180 }, + [39] = { 58.4, 38.5, 85, 180 }, + [40] = { 57.8, 38.4, 85, 180 }, + [41] = { 57, 37.9, 85, 180 }, + [42] = { 56.8, 37.8, 85, 180 }, + [43] = { 57.7, 36.1, 85, 180 }, + [44] = { 57.5, 36, 85, 180 }, + [45] = { 56.7, 35.1, 85, 180 }, + [46] = { 56.9, 34.9, 85, 180 }, + [47] = { 56.3, 34.6, 85, 180 }, + [48] = { 57.7, 34.4, 85, 180 }, + [49] = { 57.9, 34.2, 85, 180 }, + [50] = { 57.6, 33.9, 85, 180 }, + }, + }, + [176767] = { + ["coords"] = { + [1] = { 69.3, 73.4, 28, 1200 }, + }, + }, + [176768] = { + ["coords"] = { + [1] = { 61.2, 61.8, 405, 900 }, + }, + }, + [176784] = { + ["coords"] = { + [1] = { 54.1, 0.9, 17, 300 }, + [2] = { 79.1, 81.2, 331, 300 }, + }, + }, + [176785] = { + ["coords"] = { + [1] = { 44.1, 56.9, 1, 10 }, + }, + }, + [176786] = { + ["coords"] = {}, + }, + [176787] = { + ["coords"] = { + [1] = { 75.9, 87.2, 406, 900 }, + }, + }, + [176789] = { + ["coords"] = { + [1] = { 18.1, 59.9, 331, 900 }, + [2] = { 53, 16.7, 406, 900 }, + }, + }, + [176790] = { + ["coords"] = { + [1] = { 31.4, 27.9, 33, 900 }, + }, + }, + [176791] = { + ["coords"] = { + [1] = { 24.7, 31.5, 8, 600 }, + }, + }, + [176792] = { + ["coords"] = { + [1] = { 11.9, 78.2, 16, 180 }, + }, + }, + [176793] = { + ["coords"] = { + [1] = { 76.7, 64.2, 12, 180 }, + [2] = { 79.3, 63.3, 12, 180 }, + [3] = { 77.1, 63, 12, 180 }, + [4] = { 81.6, 62.6, 12, 180 }, + [5] = { 76, 62.4, 12, 180 }, + [6] = { 78.4, 62.4, 12, 180 }, + [7] = { 80.6, 62.3, 12, 180 }, + [8] = { 76.8, 61.8, 12, 180 }, + [9] = { 81.3, 61.6, 12, 180 }, + [10] = { 84.2, 61.6, 12, 180 }, + [11] = { 80.2, 61.5, 12, 180 }, + [12] = { 83.3, 61.1, 12, 180 }, + [13] = { 78.9, 61.1, 12, 180 }, + [14] = { 82, 61, 12, 180 }, + [15] = { 85.2, 61, 12, 180 }, + [16] = { 77.2, 60.5, 12, 180 }, + [17] = { 83.9, 60.5, 12, 180 }, + [18] = { 82.8, 60.1, 12, 180 }, + [19] = { 80.2, 60, 12, 180 }, + [20] = { 79, 59.6, 12, 180 }, + [21] = { 77.3, 59.5, 12, 180 }, + [22] = { 83.5, 59.2, 12, 180 }, + [23] = { 81.8, 59.2, 12, 180 }, + [24] = { 79.8, 56.7, 12, 180 }, + [25] = { 80.5, 55.2, 12, 180 }, + [26] = { 80.9, 53.9, 12, 180 }, + [27] = { 79.7, 52.3, 12, 180 }, + [28] = { 80.9, 52.2, 12, 180 }, + [29] = { 80, 50.4, 12, 180 }, + }, + }, + [176794] = { + ["coords"] = { + [1] = { 44.9, 61, 406, 900 }, + }, + }, + [176795] = { + ["coords"] = { + [1] = { 44.9, 61, 406, 900 }, + }, + }, + [176796] = { + ["coords"] = { + [1] = { 44.8, 61, 406, 900 }, + }, + }, + [176797] = { + ["coords"] = { + [1] = { 44.8, 61, 406, 900 }, + }, + }, + [176798] = { + ["coords"] = { + [1] = { 38.3, 67.9, 406, 900 }, + }, + }, + [176799] = { + ["coords"] = { + [1] = { 53.3, 61.5, 406, 900 }, + }, + }, + [176800] = { + ["coords"] = { + [1] = { 53.3, 61.6, 406, 900 }, + }, + }, + [176801] = { + ["coords"] = { + [1] = { 53.3, 61.5, 406, 900 }, + }, + }, + [176804] = { + ["coords"] = { + [1] = { 66.6, 35.8, 618, 900 }, + }, + }, + [176805] = { + ["coords"] = { + [1] = { 67.1, 35.7, 618, 900 }, + }, + }, + [176806] = { + ["coords"] = { + [1] = { 67.4, 35.6, 618, 900 }, + }, + }, + [176807] = { + ["coords"] = { + [1] = { 66.8, 37.1, 618, 900 }, + }, + }, + [176808] = { + ["coords"] = { + [1] = { 68.2, 37, 618, 900 }, + }, + }, + [176809] = { + ["coords"] = {}, + }, + [176810] = { + ["coords"] = {}, + }, + [176811] = { + ["coords"] = {}, + }, + [176812] = { + ["coords"] = {}, + }, + [176813] = { + ["coords"] = {}, + }, + [176814] = { + ["coords"] = {}, + }, + [176815] = { + ["coords"] = {}, + }, + [176816] = { + ["coords"] = {}, + }, + [176817] = { + ["coords"] = {}, + }, + [176818] = { + ["coords"] = {}, + }, + [176819] = { + ["coords"] = {}, + }, + [176820] = { + ["coords"] = {}, + }, + [176821] = { + ["coords"] = {}, + }, + [176822] = { + ["coords"] = {}, + }, + [176823] = { + ["coords"] = {}, + }, + [176824] = { + ["coords"] = {}, + }, + [176825] = { + ["coords"] = {}, + }, + [176826] = { + ["coords"] = {}, + }, + [176827] = { + ["coords"] = {}, + }, + [176828] = { + ["coords"] = {}, + }, + [176829] = { + ["coords"] = {}, + }, + [176830] = { + ["coords"] = {}, + }, + [176831] = { + ["coords"] = {}, + }, + [176832] = { + ["coords"] = {}, + }, + [176833] = { + ["coords"] = {}, + }, + [176834] = { + ["coords"] = {}, + }, + [176835] = { + ["coords"] = {}, + }, + [176836] = { + ["coords"] = {}, + }, + [176837] = { + ["coords"] = {}, + }, + [176838] = { + ["coords"] = {}, + }, + [176839] = { + ["coords"] = {}, + }, + [176840] = { + ["coords"] = {}, + }, + [176841] = { + ["coords"] = {}, + }, + [176842] = { + ["coords"] = {}, + }, + [176843] = { + ["coords"] = {}, + }, + [176844] = { + ["coords"] = {}, + }, + [176845] = { + ["coords"] = {}, + }, + [176846] = { + ["coords"] = {}, + }, + [176847] = { + ["coords"] = {}, + }, + [176848] = { + ["coords"] = {}, + }, + [176849] = { + ["coords"] = {}, + }, + [176850] = { + ["coords"] = {}, + }, + [176851] = { + ["coords"] = {}, + }, + [176852] = { + ["coords"] = {}, + }, + [176853] = { + ["coords"] = {}, + }, + [176854] = { + ["coords"] = {}, + }, + [176855] = { + ["coords"] = {}, + }, + [176863] = { + ["coords"] = { + [1] = { 39.5, 81.5, 36, 7200 }, + [2] = { 43.4, 19.7, 267, 7200 }, + }, + }, + [176865] = { + ["coords"] = { + [1] = { 53.9, 65.8, 139, 900 }, + }, + }, + [176885] = { + ["coords"] = { + [1] = { 28.5, 61.2, 16, 180 }, + }, + }, + [176886] = { + ["coords"] = { + [1] = { 26.9, 61.1, 16, 180 }, + }, + }, + [176887] = { + ["coords"] = { + [1] = { 26.8, 61.4, 16, 180 }, + }, + }, + [176888] = { + ["coords"] = { + [1] = { 27.5, 61.2, 16, 180 }, + }, + }, + [176889] = { + ["coords"] = { + [1] = { 26.1, 63.6, 16, 180 }, + }, + }, + [176890] = { + ["coords"] = { + [1] = { 27.4, 62.9, 16, 180 }, + }, + }, + [176891] = { + ["coords"] = { + [1] = { 26.6, 63.4, 16, 180 }, + }, + }, + [176892] = { + ["coords"] = { + [1] = { 25.5, 64.2, 16, 180 }, + }, + }, + [176894] = { + ["coords"] = { + [1] = { 42.4, 54.6, 46, 7200 }, + }, + }, + [176895] = { + ["coords"] = { + [1] = { 42.4, 54.8, 46, 7200 }, + }, + }, + [176896] = { + ["coords"] = { + [1] = { 49.2, 56.4, 46, 7200 }, + }, + }, + [176897] = { + ["coords"] = { + [1] = { 44.8, 50.9, 46, 7200 }, + }, + }, + [176898] = { + ["coords"] = { + [1] = { 44.7, 50.6, 46, 7200 }, + }, + }, + [176899] = { + ["coords"] = { + [1] = { 44.5, 56.7, 46, 7200 }, + }, + }, + [176901] = { + ["coords"] = { + [1] = { 36.9, 80.4, 41, 900 }, + }, + }, + [176904] = { + ["coords"] = { + [1] = { 23.2, 75.4, 16, 180 }, + }, + }, + [176905] = { + ["coords"] = {}, + }, + [176906] = { + ["coords"] = {}, + }, + [176907] = { + ["coords"] = {}, + }, + [176908] = { + ["coords"] = {}, + }, + [176909] = { + ["coords"] = {}, + }, + [176910] = { + ["coords"] = {}, + }, + [176911] = { + ["coords"] = {}, + }, + [176912] = { + ["coords"] = {}, + }, + [176913] = { + ["coords"] = {}, + }, + [176914] = { + ["coords"] = {}, + }, + [176915] = { + ["coords"] = {}, + }, + [176916] = { + ["coords"] = {}, + }, + [176917] = { + ["coords"] = {}, + }, + [176918] = { + ["coords"] = {}, + }, + [176919] = { + ["coords"] = {}, + }, + [176920] = { + ["coords"] = {}, + }, + [176921] = { + ["coords"] = {}, + }, + [176922] = { + ["coords"] = {}, + }, + [176924] = { + ["coords"] = { + [1] = { 24.5, 74.4, 1537, 900 }, + }, + ["fac"] = "A", + }, + [176944] = { + ["coords"] = {}, + }, + [176945] = { + ["coords"] = { + [1] = { 39.7, 78.6, 405, 900 }, + }, + }, + [176946] = { + ["coords"] = { + [1] = { 39.7, 78.5, 405, 900 }, + }, + }, + [176947] = { + ["coords"] = { + [1] = { 39.7, 78.5, 405, 900 }, + }, + }, + [176948] = { + ["coords"] = { + [1] = { 40.1, 78, 405, 900 }, + }, + }, + [176949] = { + ["coords"] = { + [1] = { 40.1, 78, 405, 900 }, + }, + }, + [176950] = { + ["coords"] = { + [1] = { 59.4, 62.9, 405, 900 }, + }, + }, + [176951] = { + ["coords"] = {}, + }, + [176952] = { + ["coords"] = {}, + }, + [176953] = { + ["coords"] = {}, + }, + [176954] = { + ["coords"] = {}, + }, + [176955] = { + ["coords"] = {}, + }, + [176956] = { + ["coords"] = {}, + }, + [176957] = { + ["coords"] = {}, + }, + [176958] = { + ["coords"] = { + [1] = { 63.2, 23.5, 405, 900 }, + }, + }, + [176959] = { + ["coords"] = { + [1] = { 63.2, 23.5, 405, 900 }, + }, + }, + [176960] = { + ["coords"] = { + [1] = { 62.5, 32, 405, 900 }, + }, + }, + [176961] = { + ["coords"] = { + [1] = { 62.5, 32, 405, 900 }, + }, + }, + [176964] = { + ["coords"] = {}, + }, + [176965] = { + ["coords"] = {}, + }, + [176966] = { + ["coords"] = {}, + }, + [176967] = { + ["coords"] = { + [1] = { 31.7, 25.6, 139, 900 }, + }, + }, + [176968] = { + ["coords"] = { + [1] = { 31.7, 25.6, 139, 900 }, + }, + }, + [176969] = { + ["coords"] = { + [1] = { 31.7, 25.6, 139, 900 }, + }, + }, + [176970] = { + ["coords"] = { + [1] = { 57.4, 36.8, 139, 900 }, + }, + }, + [176971] = { + ["coords"] = { + [1] = { 57.4, 36.8, 139, 900 }, + }, + }, + [176972] = { + ["coords"] = { + [1] = { 57.4, 36.8, 139, 900 }, + }, + }, + [176973] = { + ["coords"] = { + [1] = { 57.4, 36.8, 139, 900 }, + }, + }, + [176978] = { + ["coords"] = { + [1] = { 60, 67.9, 139, 900 }, + }, + }, + [176979] = { + ["coords"] = { + [1] = { 60, 67.9, 139, 900 }, + }, + }, + [176980] = { + ["coords"] = { + [1] = { 60, 67.9, 139, 900 }, + }, + }, + [176981] = { + ["coords"] = { + [1] = { 60, 67.9, 139, 900 }, + }, + }, + [176982] = { + ["coords"] = { + [1] = { 60, 67.9, 139, 900 }, + }, + }, + [176983] = { + ["coords"] = { + [1] = { 37.1, 79.4, 139, 900 }, + }, + }, + [176984] = { + ["coords"] = { + [1] = { 37.1, 79.4, 139, 900 }, + }, + }, + [176985] = { + ["coords"] = { + [1] = { 37.1, 79.4, 139, 900 }, + }, + }, + [176986] = { + ["coords"] = { + [1] = { 37.1, 79.4, 139, 900 }, + }, + }, + [176987] = { + ["coords"] = { + [1] = { 41.4, 58.5, 28, 1200 }, + }, + }, + [176988] = { + ["coords"] = { + [1] = { 41.4, 58.5, 28, 1200 }, + }, + }, + [176989] = { + ["coords"] = { + [1] = { 41.4, 58.5, 28, 1200 }, + }, + }, + [176990] = { + ["coords"] = { + [1] = { 41.4, 58.5, 28, 1200 }, + }, + }, + [176991] = { + ["coords"] = { + [1] = { 50, 56.2, 28, 1200 }, + }, + }, + [176992] = { + ["coords"] = { + [1] = { 50, 56.2, 28, 1200 }, + }, + }, + [176993] = { + ["coords"] = { + [1] = { 50, 56.2, 28, 1200 }, + }, + }, + [176994] = { + ["coords"] = { + [1] = { 50, 56.2, 28, 1200 }, + }, + }, + [176996] = { + ["coords"] = {}, + }, + [176998] = { + ["coords"] = { + [1] = { 30.9, 43.2, 331, 900 }, + }, + }, + [176999] = { + ["coords"] = { + [1] = { 32.5, 42.9, 331, 900 }, + }, + }, + [177000] = { + ["coords"] = {}, + }, + [177002] = { + ["coords"] = { + [1] = { 37.7, 55.2, 1637, 900 }, + }, + }, + [177003] = { + ["coords"] = { + [1] = { 46.9, 34, 1637, 900 }, + }, + }, + [177004] = { + ["coords"] = { + [1] = { 41.9, 40.1, 1637, 900 }, + }, + }, + [177005] = { + ["coords"] = { + [1] = { 40.6, 33.6, 1637, 900 }, + }, + }, + [177006] = { + ["coords"] = { + [1] = { 73.1, 15.9, 1637, 900 }, + }, + }, + [177007] = { + ["coords"] = { + [1] = { 75.7, 18.4, 1637, 900 }, + }, + }, + [177008] = { + ["coords"] = { + [1] = { 67.4, 35.9, 1637, 900 }, + }, + }, + [177009] = { + ["coords"] = { + [1] = { 72.2, 37.7, 1637, 900 }, + }, + }, + [177010] = { + ["coords"] = { + [1] = { 67.9, 24.9, 1637, 900 }, + }, + }, + [177011] = { + ["coords"] = { + [1] = { 77.6, 20.1, 1637, 900 }, + }, + }, + [177012] = { + ["coords"] = { + [1] = { 73.9, 29.6, 1637, 900 }, + }, + }, + [177013] = { + ["coords"] = { + [1] = { 68, 19.1, 1637, 900 }, + }, + }, + [177014] = { + ["coords"] = { + [1] = { 29.6, 71.3, 1637, 900 }, + }, + }, + [177015] = { + ["coords"] = { + [1] = { 30.2, 62.2, 1637, 900 }, + }, + }, + [177016] = { + ["coords"] = { + [1] = { 36.1, 76.2, 1637, 900 }, + }, + }, + [177017] = { + ["coords"] = { + [1] = { 46.7, 8.4, 14, 900 }, + [2] = { 53.7, 81.6, 1637, 900 }, + }, + }, + [177018] = { + ["coords"] = { + [1] = { 45.8, 8.9, 14, 900 }, + [2] = { 50, 83.3, 1637, 900 }, + }, + }, + [177019] = { + ["coords"] = { + [1] = { 53.2, 72.9, 1637, 900 }, + }, + }, + [177020] = { + ["coords"] = { + [1] = { 54.7, 71.1, 1637, 900 }, + }, + }, + [177021] = { + ["coords"] = { + [1] = { 47, 60.9, 1637, 900 }, + }, + }, + [177022] = { + ["coords"] = { + [1] = { 45.2, 66.2, 1637, 900 }, + }, + }, + [177023] = { + ["coords"] = { + [1] = { 42.4, 69.4, 1637, 900 }, + }, + }, + [177024] = { + ["coords"] = { + [1] = { 45.3, 7.2, 14, 900 }, + [2] = { 48.1, 76.8, 1637, 900 }, + }, + }, + [177025] = { + ["coords"] = { + [1] = { 49.9, 57.1, 1637, 900 }, + }, + }, + [177026] = { + ["coords"] = { + [1] = { 48.5, 65, 1637, 900 }, + }, + }, + [177044] = { + ["coords"] = { + [1] = { 68.2, 38.3, 1497, 900 }, + }, + ["fac"] = "H", + }, + [177045] = { + ["coords"] = { + [1] = { 63.8, 57.2, 28, 1200 }, + [2] = { 42.5, 19, 28, 1200 }, + }, + }, + [177047] = { + ["coords"] = { + [1] = { 36, 80.4, 41, 900 }, + }, + }, + [177048] = { + ["coords"] = { + [1] = { 36.9, 81.6, 41, 900 }, + }, + }, + [177049] = { + ["coords"] = { + [1] = { 36, 81.6, 41, 900 }, + }, + }, + [177064] = { + ["coords"] = { + [1] = { 68.8, 40, 1497, 900 }, + }, + }, + [177084] = { + ["coords"] = { + [1] = { 69.8, 71.4, 331, 900 }, + }, + }, + [177104] = { + ["coords"] = { + [1] = { 50.5, 84.2, 361, 180 }, + }, + }, + [177105] = { + ["coords"] = { + [1] = { 50.5, 84.2, 361, 180 }, + }, + }, + [177106] = { + ["coords"] = { + [1] = { 50.5, 84.2, 361, 180 }, + }, + }, + [177107] = { + ["coords"] = { + [1] = { 41.4, 57.6, 361, 180 }, + }, + }, + [177108] = { + ["coords"] = { + [1] = { 41.4, 57.6, 361, 180 }, + }, + }, + [177109] = { + ["coords"] = { + [1] = { 41.5, 57.6, 361, 180 }, + }, + }, + [177110] = { + ["coords"] = { + [1] = { 41.4, 57.6, 361, 180 }, + }, + }, + [177111] = { + ["coords"] = { + [1] = { 62.6, 15, 361, 180 }, + }, + }, + [177112] = { + ["coords"] = { + [1] = { 62.6, 15, 361, 180 }, + }, + }, + [177113] = { + ["coords"] = { + [1] = { 62.6, 15, 361, 180 }, + }, + }, + [177114] = { + ["coords"] = { + [1] = { 62.6, 15, 361, 180 }, + }, + }, + [177115] = { + ["coords"] = { + [1] = { 62.6, 15, 361, 180 }, + }, + }, + [177116] = { + ["coords"] = { + [1] = { 39.5, 57.1, 493, 900 }, + }, + }, + [177117] = { + ["coords"] = { + [1] = { 39.5, 57.1, 493, 900 }, + }, + }, + [177118] = { + ["coords"] = { + [1] = { 39.5, 57.1, 493, 900 }, + }, + }, + [177119] = { + ["coords"] = { + [1] = { 39.5, 57.1, 493, 900 }, + }, + }, + [177120] = { + ["coords"] = { + [1] = { 39.5, 57.1, 493, 900 }, + }, + }, + [177121] = { + ["coords"] = { + [1] = { 36.7, 55.5, 493, 900 }, + }, + }, + [177122] = { + ["coords"] = { + [1] = { 36.7, 55.5, 493, 900 }, + }, + }, + [177123] = { + ["coords"] = { + [1] = { 36.7, 55.5, 493, 900 }, + }, + }, + [177124] = { + ["coords"] = { + [1] = { 36.7, 55.5, 493, 900 }, + }, + }, + [177125] = { + ["coords"] = { + [1] = { 36.7, 55.5, 493, 900 }, + }, + }, + [177126] = { + ["coords"] = { + [1] = { 40.2, 44.2, 493, 900 }, + }, + }, + [177127] = { + ["coords"] = { + [1] = { 40.2, 44.2, 493, 900 }, + }, + }, + [177128] = { + ["coords"] = { + [1] = { 40.2, 44.2, 493, 900 }, + }, + }, + [177129] = { + ["coords"] = { + [1] = { 40.2, 44.2, 493, 900 }, + }, + }, + [177130] = { + ["coords"] = { + [1] = { 40.2, 44.2, 493, 900 }, + }, + }, + [177131] = { + ["coords"] = { + [1] = { 30, 42.9, 618, 900 }, + }, + }, + [177132] = { + ["coords"] = { + [1] = { 30, 42.9, 618, 900 }, + }, + }, + [177133] = { + ["coords"] = { + [1] = { 30, 42.9, 618, 900 }, + }, + }, + [177134] = { + ["coords"] = { + [1] = { 30, 42.9, 618, 900 }, + }, + }, + [177135] = { + ["coords"] = { + [1] = { 30, 42.9, 618, 900 }, + }, + }, + [177136] = { + ["coords"] = { + [1] = { 47, 39.3, 618, 900 }, + }, + }, + [177137] = { + ["coords"] = { + [1] = { 47, 39.3, 618, 900 }, + }, + }, + [177138] = { + ["coords"] = { + [1] = { 47, 39.3, 618, 900 }, + }, + }, + [177139] = { + ["coords"] = { + [1] = { 53.7, 34.2, 618, 900 }, + }, + }, + [177140] = { + ["coords"] = { + [1] = { 53.7, 34.2, 618, 900 }, + }, + }, + [177141] = { + ["coords"] = { + [1] = { 53.7, 34.2, 618, 900 }, + }, + }, + [177142] = { + ["coords"] = { + [1] = { 53.7, 34.2, 618, 900 }, + }, + }, + [177143] = { + ["coords"] = { + [1] = { 53.7, 34.2, 618, 900 }, + }, + }, + [177144] = { + ["coords"] = { + [1] = { 53.7, 34.2, 618, 900 }, + }, + }, + [177145] = { + ["coords"] = { + [1] = { 53.7, 34.2, 618, 900 }, + }, + }, + [177146] = { + ["coords"] = { + [1] = { 54, 28.8, 618, 900 }, + }, + }, + [177147] = { + ["coords"] = { + [1] = { 54, 28.8, 618, 900 }, + }, + }, + [177148] = { + ["coords"] = { + [1] = { 54, 28.8, 618, 900 }, + }, + }, + [177149] = { + ["coords"] = { + [1] = { 54, 28.8, 618, 900 }, + }, + }, + [177150] = { + ["coords"] = { + [1] = { 59.7, 39.7, 618, 900 }, + }, + }, + [177151] = { + ["coords"] = { + [1] = { 59.7, 39.7, 618, 900 }, + }, + }, + [177152] = { + ["coords"] = { + [1] = { 59.7, 39.7, 618, 900 }, + }, + }, + [177153] = { + ["coords"] = { + [1] = { 59.7, 39.7, 618, 900 }, + }, + }, + [177154] = { + ["coords"] = { + [1] = { 47, 39.3, 618, 900 }, + }, + }, + [177155] = { + ["coords"] = { + [1] = { 47, 39.3, 618, 900 }, + }, + }, + [177164] = { + ["coords"] = { + [1] = { 77.4, 20.7, 15, 900 }, + }, + }, + [177165] = { + ["coords"] = { + [1] = { 76.6, 19.9, 15, 900 }, + }, + }, + [177184] = { + ["coords"] = {}, + }, + [177185] = { + ["coords"] = { + [1] = { 35.5, 35.1, 41, 900 }, + }, + }, + [177186] = { + ["coords"] = { + [1] = { 35.5, 35.1, 41, 900 }, + }, + }, + [177187] = { + ["coords"] = { + [1] = { 38.8, 43.4, 148, 900 }, + }, + ["fac"] = "AH", + }, + [177188] = { + ["coords"] = { + [1] = { 60.3, 31.3, 357, 900 }, + }, + }, + [177189] = { + ["coords"] = { + [1] = { 60.3, 30.1, 357, 900 }, + }, + }, + [177192] = { + ["coords"] = { + [1] = { 62.5, 24.9, 357, 900 }, + }, + }, + [177193] = { + ["coords"] = {}, + }, + [177194] = { + ["coords"] = { + [1] = { 81.2, 50.4, 331, 900 }, + }, + }, + [177195] = { + ["coords"] = { + [1] = { 80.7, 49.8, 331, 900 }, + }, + }, + [177196] = { + ["coords"] = { + [1] = { 81.8, 49.3, 331, 900 }, + }, + }, + [177197] = { + ["coords"] = { + [1] = { 80.7, 48.9, 331, 900 }, + }, + }, + [177198] = { + ["coords"] = { + [1] = { 77.1, 36.9, 357, 900 }, + }, + }, + [177199] = { + ["coords"] = { + [1] = { 46.2, 40.4, 1519, 900 }, + }, + }, + [177200] = { + ["coords"] = { + [1] = { 64.1, 6.6, 1519, 120 }, + }, + }, + [177201] = { + ["coords"] = { + [1] = { 64.9, 6.7, 1519, 180 }, + }, + }, + [177202] = { + ["coords"] = { + [1] = { 64, 7.7, 1519, 120 }, + }, + }, + [177203] = { + ["coords"] = { + [1] = { 39.7, 72.1, 41, 900 }, + }, + }, + [177204] = { + ["coords"] = { + [1] = { 45.5, 22.1, 215, 900 }, + [2] = { 77.4, 25.9, 1638, 900 }, + }, + }, + [177205] = { + ["coords"] = { + [1] = { 45.9, 22.6, 215, 900 }, + [2] = { 79.3, 28.3, 1638, 900 }, + }, + }, + [177207] = { + ["coords"] = { + [1] = { 45.2, 22.2, 215, 900 }, + [2] = { 76, 26.4, 1638, 900 }, + }, + }, + [177208] = { + ["coords"] = { + [1] = { 45.8, 22.3, 215, 900 }, + [2] = { 78.7, 26.6, 1638, 900 }, + }, + }, + [177209] = { + ["coords"] = { + [1] = { 45.9, 23, 215, 900 }, + [2] = { 79.1, 30.2, 1638, 900 }, + }, + }, + [177211] = { + ["coords"] = {}, + }, + [177212] = { + ["coords"] = {}, + }, + [177213] = { + ["coords"] = {}, + }, + [177215] = { + ["coords"] = {}, + }, + [177217] = { + ["coords"] = {}, + }, + [177219] = { + ["coords"] = {}, + }, + [177220] = { + ["coords"] = {}, + }, + [177221] = { + ["coords"] = {}, + }, + [177222] = { + ["coords"] = { + [1] = { 72.7, 12.4, 1537, 900 }, + }, + }, + [177223] = { + ["coords"] = { + [1] = { 27.8, 90.8, 1377, 900 }, + }, + }, + [177224] = { + ["coords"] = { + [1] = { 79.4, 79.1, 47, 7200 }, + [2] = { 67.7, 23.4, 148, 25 }, + }, + }, + [177225] = { + ["coords"] = { + [1] = { 72.8, 80.6, 331, 900 }, + }, + }, + [177226] = { + ["coords"] = { + [1] = { 65.3, 18.5, 440, 900 }, + }, + ["fac"] = "AH", + }, + [177227] = { + ["coords"] = { + [1] = { 65.3, 18.6, 440, 900 }, + }, + }, + [177233] = { + ["coords"] = {}, + }, + [177237] = { + ["coords"] = {}, + }, + [177238] = { + ["coords"] = {}, + }, + [177239] = { + ["coords"] = { + [1] = { 28.4, 86.9, 139, 900 }, + }, + }, + [177240] = { + ["coords"] = { + [1] = { 28.3, 86.9, 139, 10 }, + }, + }, + [177241] = { + ["coords"] = {}, + }, + [177243] = { + ["coords"] = { + [1] = { 53.1, 80, 405, 900 }, + }, + }, + [177244] = { + ["coords"] = { + [1] = { 11.9, 34.4, 331, 900 }, + }, + }, + [177245] = { + ["coords"] = { + [1] = { 91.4, 74.7, 10, 900 }, + [2] = { 32.1, 71.7, 41, 900 }, + }, + }, + [177246] = { + ["coords"] = { + [1] = { 91.4, 76.5, 10, 900 }, + [2] = { 32.1, 73.6, 41, 900 }, + }, + }, + [177247] = { + ["coords"] = { + [1] = { 91.4, 73, 10, 900 }, + [2] = { 32, 69.8, 41, 900 }, + }, + }, + [177248] = { + ["coords"] = { + [1] = { 90.1, 73, 10, 900 }, + [2] = { 30.7, 69.9, 41, 900 }, + }, + }, + [177249] = { + ["coords"] = { + [1] = { 90.2, 74.8, 10, 900 }, + [2] = { 30.7, 71.8, 41, 900 }, + }, + }, + [177250] = { + ["coords"] = { + [1] = { 87.9, 74.9, 10, 3600 }, + [2] = { 28.2, 71.9, 41, 3600 }, + }, + }, + [177251] = { + ["coords"] = { + [1] = { 90.2, 76.6, 10, 900 }, + [2] = { 30.7, 73.7, 41, 900 }, + }, + }, + [177252] = { + ["coords"] = { + [1] = { 87.9, 76.6, 10, 900 }, + [2] = { 28.3, 73.8, 41, 900 }, + }, + }, + [177253] = { + ["coords"] = { + [1] = { 86.7, 76.7, 10, 3600 }, + }, + }, + [177254] = { + ["coords"] = { + [1] = { 86.6, 74.9, 10, 3600 }, + }, + }, + [177255] = { + ["coords"] = { + [1] = { 86.6, 73.2, 10, 3600 }, + }, + }, + [177256] = { + ["coords"] = { + [1] = { 87.9, 73.1, 10, 3600 }, + [2] = { 28.2, 70, 41, 3600 }, + }, + }, + [177257] = { + ["coords"] = {}, + }, + [177258] = { + ["coords"] = {}, + }, + [177259] = { + ["coords"] = {}, + }, + [177261] = { + ["coords"] = { + [1] = { 46.1, 84.1, 2597, 60 }, + }, + }, + [177262] = { + ["coords"] = { + [1] = { 46.4, 84, 2597, 60 }, + }, + }, + [177263] = { + ["coords"] = { + [1] = { 47.2, 83.7, 2597, 60 }, + }, + }, + [177264] = { + ["coords"] = { + [1] = { 71.3, 34, 139, 10 }, + }, + }, + [177265] = { + ["coords"] = { + [1] = { 38.6, 24.8, 215, 900 }, + [2] = { 43.1, 39.3, 1638, 900 }, + }, + }, + [177266] = { + ["coords"] = { + [1] = { 40.1, 24.4, 215, 900 }, + [2] = { 50.6, 37.1, 1638, 900 }, + }, + }, + [177267] = { + ["coords"] = { + [1] = { 41.7, 26.5, 215, 900 }, + [2] = { 58.5, 47.4, 1638, 900 }, + }, + }, + [177268] = { + ["coords"] = { + [1] = { 41.6, 28.2, 215, 900 }, + [2] = { 58.2, 55.7, 1638, 900 }, + }, + }, + [177269] = { + ["coords"] = { + [1] = { 37.2, 27.2, 215, 900 }, + [2] = { 36.6, 50.9, 1638, 900 }, + }, + }, + [177270] = { + ["coords"] = { + [1] = { 38.9, 29.4, 215, 900 }, + [2] = { 44.8, 61.6, 1638, 900 }, + }, + }, + [177271] = { + ["coords"] = { + [1] = { 83.5, 79.2, 139, 900 }, + }, + }, + [177272] = { + ["coords"] = { + [1] = { 56, 62, 141, 900 }, + [2] = { 20.5, 53.7, 1519, 120 }, + [3] = { 20.1, 53.6, 1519, 120 }, + [4] = { 20.7, 53.2, 1519, 120 }, + [5] = { 20.4, 52.9, 1519, 120 }, + }, + }, + [177273] = { + ["coords"] = { + [1] = { 46.2, 45.3, 493, 900 }, + }, + }, + [177274] = { + ["coords"] = { + [1] = { 25.4, 65, 141, 25 }, + [2] = { 25.2, 65, 141, 25 }, + [3] = { 25.6, 64.7, 141, 25 }, + [4] = { 25.2, 64.6, 141, 25 }, + [5] = { 25.4, 64.4, 141, 25 }, + [6] = { 37.8, 44, 148, 900 }, + [7] = { 39.6, 86.8, 1657, 25 }, + [8] = { 38.5, 86.7, 1657, 25 }, + [9] = { 40.4, 85.6, 1657, 25 }, + [10] = { 38.3, 84.9, 1657, 25 }, + [11] = { 39.3, 84, 1657, 25 }, + }, + }, + [177275] = { + ["coords"] = { + [1] = { 50.7, 80, 148, 180 }, + [2] = { 35.1, 59.8, 361, 180 }, + }, + }, + [177276] = { + ["coords"] = { + [1] = { 48.2, 85.9, 148, 180 }, + [2] = { 32.3, 66.5, 361, 180 }, + }, + }, + [177277] = { + ["coords"] = { + [1] = { 53.8, 46, 331, 900 }, + }, + }, + [177278] = { + ["coords"] = { + [1] = { 42.4, 67.1, 141, 900 }, + [2] = { 56, 61.9, 141, 900 }, + [3] = { 63.4, 58.1, 141, 900 }, + [4] = { 38.4, 34.1, 141, 900 }, + [5] = { 59.9, 33.1, 141, 900 }, + [6] = { 60.2, 72.9, 331, 900 }, + [7] = { 59.3, 60, 331, 900 }, + [8] = { 53.7, 46, 331, 900 }, + [9] = { 67.7, 9.8, 405, 900 }, + [10] = { 42.1, 84.7, 406, 900 }, + [11] = { 48.6, 33, 493, 900 }, + }, + }, + [177279] = { + ["coords"] = { + [1] = { 89.5, 46.3, 357, 900 }, + [2] = { 7.9, 18.6, 400, 900 }, + }, + }, + [177280] = { + ["coords"] = { + [1] = { 49.2, 33.3, 10, 3600 }, + [2] = { 47.2, 63.5, 141, 900 }, + [3] = { 37.8, 44.1, 148, 900 }, + [4] = { 36.8, 7.9, 406, 900 }, + [5] = { 46.2, 45.5, 493, 900 }, + [6] = { 52.5, 41.5, 493, 900 }, + }, + }, + [177281] = { + ["coords"] = { + [1] = { 60.2, 46.3, 357, 900 }, + [2] = { 49, 37.7, 1377, 900 }, + }, + }, + [177284] = { + ["coords"] = { + [1] = { 26.7, 59.6, 28, 900 }, + [2] = { 83.3, 72.3, 85, 900 }, + }, + }, + [177285] = { + ["coords"] = { + [1] = { 26.7, 56.4, 28, 900 }, + [2] = { 83.3, 69.3, 85, 900 }, + }, + }, + [177286] = { + ["coords"] = { + [1] = { 42.6, 83.9, 28, 1200 }, + }, + }, + [177287] = { + ["coords"] = {}, + }, + [177288] = { + ["coords"] = { + [1] = { 73.2, 95, 406, 900 }, + }, + }, + [177289] = { + ["coords"] = { + [1] = { 46.2, 51.9, 28, 1200 }, + }, + }, + [177290] = { + ["coords"] = {}, + }, + [177291] = { + ["coords"] = {}, + }, + [177292] = { + ["coords"] = { + [1] = { 48.3, 77.3, 2597, 60 }, + }, + }, + [177293] = { + ["coords"] = { + [1] = { 48.3, 76.7, 2597, 60 }, + }, + }, + [177304] = { + ["coords"] = {}, + }, + [177307] = { + ["coords"] = { + [1] = { 50.8, 83.7, 618, 900 }, + }, + }, + [177324] = { + ["coords"] = { + [1] = { 54.4, 51.7, 2597, 180 }, + }, + }, + [177325] = { + ["coords"] = { + [1] = { 54.3, 53.1, 2597, 180 }, + }, + }, + [177326] = { + ["coords"] = { + [1] = { 54.5, 55.7, 2597, 180 }, + }, + }, + [177327] = { + ["coords"] = { + [1] = { 55.3, 47.3, 2597, 180 }, + }, + }, + [177364] = { + ["coords"] = { + [1] = { 69.1, 48.3, 17, 180 }, + [2] = { 72.3, 46.4, 440, 180 }, + }, + }, + [177365] = { + ["coords"] = { + [1] = { 53.9, 79.2, 405, 900 }, + }, + }, + [177366] = { + ["coords"] = { + [1] = { 50.9, 81.3, 405, 900 }, + }, + }, + [177367] = { + ["coords"] = { + [1] = { 52.6, 81.9, 405, 900 }, + }, + }, + [177368] = { + ["coords"] = { + [1] = { 53.1, 84.1, 405, 900 }, + }, + }, + [177369] = { + ["coords"] = { + [1] = { 55.1, 79.4, 405, 900 }, + }, + }, + [177370] = { + ["coords"] = {}, + }, + [177371] = { + ["coords"] = {}, + }, + [177372] = { + ["coords"] = {}, + }, + [177373] = { + ["coords"] = {}, + }, + [177374] = { + ["coords"] = {}, + }, + [177375] = { + ["coords"] = {}, + }, + [177376] = { + ["coords"] = {}, + }, + [177377] = { + ["coords"] = {}, + }, + [177378] = { + ["coords"] = {}, + }, + [177379] = { + ["coords"] = {}, + }, + [177380] = { + ["coords"] = {}, + }, + [177381] = { + ["coords"] = {}, + }, + [177382] = { + ["coords"] = {}, + }, + [177383] = { + ["coords"] = {}, + }, + [177384] = { + ["coords"] = {}, + }, + [177385] = { + ["coords"] = {}, + }, + [177387] = { + ["coords"] = {}, + }, + [177388] = { + ["coords"] = { + [1] = { 61.7, 84.1, 357, 600 }, + [2] = { 61.4, 84, 357, 600 }, + [3] = { 62.4, 98.5, 1377, 600 }, + [4] = { 54.2, 95.1, 1377, 600 }, + [5] = { 61.9, 93.7, 1377, 600 }, + [6] = { 50.3, 93.3, 1377, 600 }, + [7] = { 52.9, 93.1, 1377, 600 }, + [8] = { 66.3, 84.8, 1377, 600 }, + [9] = { 60.3, 80.8, 1377, 600 }, + [10] = { 62.4, 80.3, 1377, 600 }, + [11] = { 66.3, 80, 1377, 600 }, + [12] = { 62.9, 76.8, 1377, 600 }, + [13] = { 66.2, 75.5, 1377, 600 }, + [14] = { 64.3, 73.2, 1377, 600 }, + [15] = { 22.7, 71.8, 1377, 600 }, + [16] = { 27.3, 69.9, 1377, 600 }, + [17] = { 17.6, 69.6, 1377, 600 }, + [18] = { 22.5, 69.6, 1377, 600 }, + [19] = { 32.5, 68.4, 1377, 600 }, + [20] = { 28.8, 67, 1377, 600 }, + [21] = { 31.7, 66.5, 1377, 600 }, + [22] = { 19.7, 65.5, 1377, 600 }, + [23] = { 35.9, 65.1, 1377, 600 }, + [24] = { 33.1, 64.9, 1377, 600 }, + [25] = { 20.5, 64.3, 1377, 600 }, + [26] = { 23.1, 63.8, 1377, 600 }, + [27] = { 32.1, 63.1, 1377, 600 }, + [28] = { 34.6, 62.7, 1377, 600 }, + [29] = { 36.3, 60.3, 1377, 600 }, + [30] = { 24, 56.6, 1377, 600 }, + [31] = { 19.4, 55.2, 1377, 600 }, + [32] = { 21.2, 50.7, 1377, 600 }, + [33] = { 45.5, 32.3, 1377, 600 }, + [34] = { 42.1, 30.2, 1377, 600 }, + [35] = { 45.7, 29.2, 1377, 600 }, + [36] = { 47.6, 28.2, 1377, 600 }, + [37] = { 51.1, 27.7, 1377, 600 }, + [38] = { 40.3, 27.3, 1377, 600 }, + [39] = { 42.4, 27, 1377, 600 }, + [40] = { 48.3, 26.9, 1377, 600 }, + [41] = { 43.8, 26.6, 1377, 600 }, + [42] = { 49.8, 24.4, 1377, 600 }, + [43] = { 48.2, 22.8, 1377, 600 }, + [44] = { 46.4, 22.1, 1377, 600 }, + [45] = { 42.3, 19, 1377, 600 }, + [46] = { 43, 17.8, 1377, 600 }, + [47] = { 38.8, 16.2, 1377, 600 }, + [48] = { 40.4, 16.2, 1377, 600 }, + [49] = { 44.2, 15.8, 1377, 600 }, + [50] = { 45.4, 15.8, 1377, 600 }, + [51] = { 44.7, 15.1, 1377, 600 }, + [52] = { 40.7, 13.8, 1377, 600 }, + [53] = { 39.7, 13.1, 1377, 600 }, + [54] = { 39.1, 12.9, 1377, 600 }, + [55] = { 44.7, 12.8, 1377, 600 }, + [56] = { 42.8, 11.9, 1377, 600 }, + [57] = { 45.8, 10.4, 1377, 600 }, + }, + }, + [177396] = { + ["coords"] = { + [1] = { 44.9, 38, 2597, 180 }, + }, + }, + [177397] = { + ["coords"] = { + [1] = { 55.3, 71.9, 405, 900 }, + }, + }, + [177398] = { + ["coords"] = { + [1] = { 50.6, 70.8, 405, 900 }, + }, + }, + [177399] = { + ["coords"] = { + [1] = { 50.2, 74.3, 405, 900 }, + }, + }, + [177400] = { + ["coords"] = { + [1] = { 49.9, 77.3, 405, 900 }, + }, + }, + [177404] = { + ["coords"] = { + [1] = { 64.8, 63.8, 618, 900 }, + }, + }, + [177405] = { + ["coords"] = { + [1] = { 50.1, 78.8, 2597, 60 }, + }, + }, + [177406] = { + ["coords"] = { + [1] = { 50.4, 78.8, 2597, 60 }, + }, + }, + [177408] = { + ["coords"] = { + [1] = { 51.4, 64.7, 2597, 60 }, + }, + }, + [177409] = { + ["coords"] = { + [1] = { 50.8, 81.5, 2597, 60 }, + }, + }, + [177410] = { + ["coords"] = { + [1] = { 50.2, 82.4, 2597, 60 }, + }, + }, + [177411] = { + ["coords"] = { + [1] = { 48.4, 81, 2597, 60 }, + }, + }, + [177412] = { + ["coords"] = { + [1] = { 48.7, 83.8, 2597, 60 }, + }, + }, + [177413] = { + ["coords"] = { + [1] = { 48.6, 82.9, 2597, 60 }, + }, + }, + [177414] = { + ["coords"] = {}, + }, + [177415] = { + ["coords"] = {}, + }, + [177416] = { + ["coords"] = {}, + }, + [177417] = { + ["coords"] = { + [1] = { 65.7, 64.8, 618, 900 }, + [2] = { 66.4, 61.8, 618, 900 }, + [3] = { 64.4, 61.4, 618, 900 }, + [4] = { 66.8, 60, 618, 900 }, + [5] = { 65.9, 58.4, 618, 900 }, + }, + }, + [177418] = { + ["coords"] = {}, + }, + [177419] = { + ["coords"] = {}, + }, + [177424] = { + ["coords"] = {}, + }, + [177425] = { + ["coords"] = { + [1] = { 41.2, 50.9, 2597, 180 }, + }, + }, + [177444] = { + ["coords"] = { + [1] = { 29.1, 62.6, 405, 900 }, + }, + }, + [177464] = { + ["coords"] = { + [1] = { 44.5, 40, 139, 180 }, + [2] = { 39.4, 39.4, 139, 180 }, + [3] = { 26.2, 39, 139, 180 }, + [4] = { 37.8, 38.9, 139, 180 }, + [5] = { 28.7, 38.4, 139, 180 }, + [6] = { 42.1, 38.2, 139, 180 }, + [7] = { 25.2, 37.9, 139, 180 }, + [8] = { 26.5, 37.5, 139, 180 }, + [9] = { 33.4, 37.3, 139, 180 }, + [10] = { 39.7, 37, 139, 180 }, + [11] = { 38, 36.5, 139, 180 }, + [12] = { 28.7, 36.4, 139, 180 }, + [13] = { 25.8, 36.2, 139, 180 }, + [14] = { 32, 35.8, 139, 180 }, + [15] = { 41.8, 35.5, 139, 180 }, + [16] = { 44.8, 35.4, 139, 180 }, + [17] = { 28.1, 35.4, 139, 180 }, + [18] = { 35, 35.3, 139, 180 }, + [19] = { 46.9, 35.3, 139, 180 }, + [20] = { 38.8, 34.9, 139, 180 }, + [21] = { 42.8, 34.2, 139, 180 }, + [22] = { 29.5, 34.1, 139, 180 }, + [23] = { 36.9, 34.1, 139, 180 }, + [24] = { 25.6, 34.1, 139, 180 }, + [25] = { 45.9, 34, 139, 180 }, + [26] = { 19.5, 33.9, 139, 180 }, + [27] = { 33.7, 33.9, 139, 180 }, + [28] = { 26.7, 33.8, 139, 180 }, + [29] = { 22.3, 33.6, 139, 180 }, + [30] = { 32, 33.4, 139, 180 }, + [31] = { 43.7, 33, 139, 180 }, + [32] = { 37.6, 32.4, 139, 180 }, + [33] = { 28.5, 32.4, 139, 180 }, + [34] = { 23.8, 32.4, 139, 180 }, + [35] = { 44.3, 32.1, 139, 180 }, + [36] = { 36, 31.8, 139, 180 }, + [37] = { 40.6, 31.4, 139, 180 }, + [38] = { 48.7, 30.8, 139, 180 }, + [39] = { 37.8, 30.6, 139, 180 }, + [40] = { 30.1, 30.6, 139, 180 }, + [41] = { 27.5, 30.6, 139, 180 }, + [42] = { 28.3, 30.6, 139, 180 }, + [43] = { 33.9, 30, 139, 180 }, + [44] = { 24.9, 29.9, 139, 180 }, + [45] = { 20.8, 29.9, 139, 180 }, + [46] = { 39.9, 29.8, 139, 180 }, + [47] = { 24.2, 29.8, 139, 180 }, + [48] = { 26.1, 29.7, 139, 180 }, + [49] = { 31.3, 29.6, 139, 180 }, + [50] = { 44.2, 29.4, 139, 180 }, + [51] = { 21.8, 29.3, 139, 180 }, + [52] = { 43, 28.6, 139, 180 }, + [53] = { 28.6, 28.6, 139, 180 }, + [54] = { 23.5, 28.4, 139, 180 }, + [55] = { 46.7, 28.2, 139, 180 }, + [56] = { 40.8, 27.9, 139, 180 }, + [57] = { 34.8, 27.7, 139, 180 }, + [58] = { 20.4, 27.1, 139, 180 }, + [59] = { 23.9, 26.8, 139, 180 }, + [60] = { 44.4, 26.6, 139, 180 }, + [61] = { 37.4, 26.6, 139, 180 }, + [62] = { 21.9, 26.5, 139, 180 }, + [63] = { 24.6, 26, 139, 180 }, + [64] = { 33.8, 25.8, 139, 180 }, + [65] = { 45.9, 25.6, 139, 180 }, + [66] = { 23.8, 25.2, 139, 180 }, + [67] = { 41.2, 25.2, 139, 180 }, + [68] = { 30.7, 25.1, 139, 180 }, + [69] = { 36.3, 24.8, 139, 180 }, + [70] = { 42.7, 24.8, 139, 180 }, + [71] = { 32.2, 24.7, 139, 180 }, + [72] = { 39.9, 24.6, 139, 180 }, + [73] = { 34.9, 24.6, 139, 180 }, + [74] = { 43.7, 24.2, 139, 180 }, + [75] = { 28.4, 24.2, 139, 180 }, + [76] = { 21.2, 24, 139, 180 }, + [77] = { 25.4, 24, 139, 180 }, + [78] = { 26.6, 23.9, 139, 180 }, + [79] = { 22.4, 23.8, 139, 180 }, + [80] = { 35.6, 23.8, 139, 180 }, + [81] = { 24.2, 23.5, 139, 180 }, + [82] = { 39.7, 23.1, 139, 180 }, + [83] = { 29.9, 23.1, 139, 180 }, + [84] = { 43.5, 22.6, 139, 180 }, + [85] = { 25.4, 22.3, 139, 180 }, + [86] = { 31.9, 22, 139, 180 }, + [87] = { 24.4, 21.9, 139, 180 }, + [88] = { 21.3, 21.8, 139, 180 }, + [89] = { 30.4, 21.6, 139, 180 }, + [90] = { 22.4, 21.4, 139, 180 }, + [91] = { 40, 21, 139, 180 }, + [92] = { 20.4, 20.8, 139, 180 }, + [93] = { 20.9, 20.7, 139, 180 }, + [94] = { 41.5, 20.7, 139, 180 }, + [95] = { 23.2, 20.5, 139, 180 }, + [96] = { 22.1, 19.4, 139, 180 }, + [97] = { 40.2, 18.1, 139, 180 }, + [98] = { 37.2, 17.9, 139, 180 }, + }, + }, + [177484] = { + ["coords"] = {}, + }, + [177485] = { + ["coords"] = {}, + }, + [177486] = { + ["coords"] = {}, + }, + [177490] = { + ["coords"] = { + [1] = { 48.3, 32, 28, 1200 }, + }, + ["fac"] = "AH", + }, + [177491] = { + ["coords"] = { + [1] = { 48.3, 32, 28, 0 }, + }, + }, + [177492] = { + ["coords"] = {}, + }, + [177493] = { + ["coords"] = { + [1] = { 65.7, 64.8, 618, 900 }, + [2] = { 66.4, 61.8, 618, 900 }, + [3] = { 64.4, 61.4, 618, 900 }, + [4] = { 66.8, 60, 618, 900 }, + [5] = { 65.9, 58.4, 618, 900 }, + }, + }, + [177494] = { + ["coords"] = { + [1] = { 43.9, 65.6, 12, 900 }, + [2] = { 66.6, 45.1, 15, 900 }, + }, + }, + [177495] = { + ["coords"] = { + [1] = { 43.9, 65.7, 12, 900 }, + [2] = { 66.6, 45.1, 15, 900 }, + }, + }, + [177496] = { + ["coords"] = { + [1] = { 43.8, 65.8, 12, 900 }, + [2] = { 66.6, 45.2, 15, 900 }, + }, + }, + [177497] = { + ["coords"] = { + [1] = { 43.4, 66.2, 12, 900 }, + [2] = { 66.3, 45.5, 15, 900 }, + }, + }, + [177498] = { + ["coords"] = { + [1] = { 43.4, 66.3, 12, 900 }, + [2] = { 66.3, 45.6, 15, 900 }, + }, + }, + [177499] = { + ["coords"] = { + [1] = { 43.4, 66.4, 12, 900 }, + [2] = { 66.3, 45.7, 15, 900 }, + }, + }, + [177500] = { + ["coords"] = { + [1] = { 43.4, 65.5, 12, 900 }, + [2] = { 66.3, 45, 15, 900 }, + }, + }, + [177501] = { + ["coords"] = { + [1] = { 43.5, 65.5, 12, 900 }, + [2] = { 66.4, 45.1, 15, 900 }, + }, + }, + [177502] = { + ["coords"] = { + [1] = { 43.8, 66, 12, 900 }, + [2] = { 66.6, 45.3, 15, 900 }, + }, + }, + [177503] = { + ["coords"] = { + [1] = { 43.2, 65.6, 12, 900 }, + [2] = { 66.1, 45.1, 15, 900 }, + }, + }, + [177504] = { + ["coords"] = { + [1] = { 43.2, 65.6, 12, 900 }, + [2] = { 66.1, 45.2, 15, 900 }, + }, + }, + [177505] = { + ["coords"] = { + [1] = { 10.5, 60, 11, 7200 }, + }, + }, + [177506] = { + ["coords"] = { + [1] = { 10.9, 60.9, 11, 7200 }, + }, + }, + [177507] = { + ["coords"] = { + [1] = { 10.8, 60.4, 11, 7200 }, + }, + }, + [177508] = { + ["coords"] = { + [1] = { 10.5, 60.4, 11, 7200 }, + }, + }, + [177509] = { + ["coords"] = { + [1] = { 10.4, 60.6, 11, 7200 }, + }, + }, + [177510] = { + ["coords"] = { + [1] = { 10.4, 60.5, 11, 7200 }, + }, + }, + [177511] = { + ["coords"] = { + [1] = { 10.8, 60.5, 11, 7200 }, + }, + }, + [177512] = { + ["coords"] = { + [1] = { 10.7, 61, 11, 7200 }, + }, + }, + [177513] = { + ["coords"] = { + [1] = { 10.8, 60.6, 11, 7200 }, + }, + }, + [177514] = { + ["coords"] = { + [1] = { 10.7, 61, 11, 7200 }, + }, + }, + [177524] = { + ["coords"] = { + [1] = { 17.9, 32.9, 40, 900 }, + [2] = { 29.6, 29.5, 130, 900 }, + [3] = { 19.2, 86.2, 405, 900 }, + [4] = { 19.1, 81.3, 405, 900 }, + [5] = { 22.5, 79.9, 405, 900 }, + [6] = { 19, 77.7, 405, 900 }, + [7] = { 21.2, 76.1, 405, 900 }, + [8] = { 25.4, 38.8, 405, 900 }, + [9] = { 30.6, 34.7, 405, 900 }, + [10] = { 33.2, 31.7, 405, 900 }, + [11] = { 36.6, 20, 405, 900 }, + [12] = { 34.4, 17.6, 405, 900 }, + [13] = { 31.2, 15.8, 405, 900 }, + [14] = { 30.9, 13.2, 405, 900 }, + [15] = { 36, 12.4, 405, 900 }, + [16] = { 33.2, 9.7, 405, 900 }, + [17] = { 55.4, 53, 493, 900 }, + [18] = { 51.5, 51.6, 493, 900 }, + }, + }, + [177525] = { + ["coords"] = { + [1] = { 42, 60.9, 17, 900 }, + [2] = { 43.5, 46, 148, 900 }, + [3] = { 71.7, 65, 215, 900 }, + }, + }, + [177526] = { + ["coords"] = {}, + }, + [177527] = { + ["coords"] = {}, + }, + [177528] = { + ["coords"] = { + [1] = { 44.9, 69.1, 28, 180 }, + [2] = { 39.1, 91.4, 139, 25 }, + }, + }, + [177529] = { + ["coords"] = { + [1] = { 64.8, 63.8, 618, 900 }, + }, + }, + [177544] = { + ["coords"] = { + [1] = { 36.2, 90.6, 139, 10 }, + }, + }, + [177564] = { + ["coords"] = {}, + }, + [177584] = { + ["coords"] = {}, + }, + [177586] = { + ["coords"] = {}, + }, + [177604] = { + ["coords"] = { + [1] = { 26.8, 76.6, 139, 900 }, + [2] = { 25.8, 76.6, 139, 900 }, + [3] = { 26.4, 75.8, 139, 900 }, + [4] = { 27.9, 75.8, 139, 900 }, + [5] = { 25.6, 75.4, 139, 900 }, + [6] = { 27.2, 75.4, 139, 900 }, + [7] = { 28.4, 75.3, 139, 900 }, + [8] = { 27.9, 74.8, 139, 900 }, + [9] = { 26.5, 74.8, 139, 900 }, + [10] = { 26.5, 74.7, 139, 900 }, + [11] = { 27.1, 74.2, 139, 900 }, + [12] = { 25, 74.2, 139, 900 }, + [13] = { 28.5, 74, 139, 900 }, + [14] = { 27.9, 73.5, 139, 900 }, + [15] = { 27, 73.3, 139, 900 }, + [16] = { 26.4, 73.1, 139, 900 }, + [17] = { 25.5, 73, 139, 900 }, + [18] = { 27.5, 72.6, 139, 900 }, + }, + }, + [177606] = { + ["coords"] = {}, + }, + [177624] = { + ["coords"] = {}, + }, + [177644] = { + ["coords"] = { + [1] = { 42, 60.9, 17, 0 }, + [2] = { 43.5, 46, 148, 0 }, + [3] = { 71.7, 65, 215, 0 }, + }, + }, + [177664] = { + ["coords"] = { + [1] = { 27.5, 86.2, 139, 900 }, + [2] = { 27.9, 86.2, 139, 900 }, + [3] = { 27.4, 86.2, 139, 900 }, + [4] = { 27.9, 85.5, 139, 900 }, + [5] = { 27.7, 85.4, 139, 900 }, + [6] = { 27.5, 85.3, 139, 900 }, + [7] = { 27.4, 85.3, 139, 900 }, + }, + }, + [177665] = { + ["coords"] = { + [1] = { 27.4, 85.3, 139, 900 }, + }, + }, + [177667] = { + ["coords"] = { + [1] = { 27.3, 85.2, 139, 10 }, + }, + }, + [177668] = { + ["coords"] = { + [1] = { 40.7, 38.6, 139, 345 }, + [2] = { 27, 36.6, 139, 345 }, + [3] = { 32.2, 30.8, 139, 345 }, + [4] = { 43.5, 26.2, 139, 345 }, + [5] = { 29.3, 24, 139, 345 }, + [6] = { 33, 23.9, 139, 345 }, + [7] = { 23.5, 21.9, 139, 345 }, + [8] = { 37.7, 19.7, 139, 345 }, + }, + }, + [177669] = { + ["coords"] = { + [1] = { 41, 39.1, 139, 0 }, + [2] = { 40.6, 38.9, 139, 0 }, + [3] = { 40.9, 37.9, 139, 0 }, + }, + }, + [177670] = { + ["coords"] = { + [1] = { 40.9, 39.6, 139, 0 }, + [2] = { 41.2, 38.9, 139, 0 }, + [3] = { 40.6, 38.2, 139, 0 }, + [4] = { 41.1, 38.1, 139, 0 }, + }, + }, + [177671] = { + ["coords"] = { + [1] = { 41, 39.5, 139, 0 }, + [2] = { 40.4, 38.6, 139, 0 }, + [3] = { 40.5, 37.8, 139, 0 }, + }, + }, + [177672] = { + ["coords"] = {}, + }, + [177673] = { + ["coords"] = { + [1] = { 28.2, 6.7, 405, 900 }, + }, + }, + [177675] = { + ["coords"] = { + [1] = { 28, 86.2, 139, 10 }, + }, + }, + [177677] = { + ["coords"] = { + [1] = { 70.3, 17.3, 139, 900 }, + [2] = { 70.5, 17.2, 139, 900 }, + [3] = { 70.2, 17.2, 139, 900 }, + [4] = { 70.4, 17.1, 139, 900 }, + [5] = { 70.6, 17.1, 139, 900 }, + [6] = { 70, 17, 139, 900 }, + [7] = { 70.5, 17, 139, 900 }, + [8] = { 70.2, 17, 139, 900 }, + [9] = { 70.4, 16.9, 139, 900 }, + [10] = { 70.7, 16.8, 139, 900 }, + [11] = { 70.2, 16.7, 139, 900 }, + [12] = { 70, 16.7, 139, 900 }, + [13] = { 70.3, 16.6, 139, 900 }, + [14] = { 70.5, 16.6, 139, 900 }, + [15] = { 70.2, 16.4, 139, 900 }, + [16] = { 70.4, 16.4, 139, 900 }, + [17] = { 70, 16.4, 139, 900 }, + [18] = { 70.3, 16.2, 139, 900 }, + [19] = { 70.2, 16.2, 139, 900 }, + }, + }, + [177681] = { + ["coords"] = {}, + }, + [177683] = { + ["coords"] = {}, + }, + [177684] = { + ["coords"] = { + [1] = { 49.7, 9.8, 618, 900 }, + }, + }, + [177704] = { + ["coords"] = {}, + }, + [177705] = { + ["coords"] = { + [1] = { 28.2, 6.7, 405, 0 }, + }, + }, + [177706] = { + ["coords"] = { + [1] = { 33.9, 53.5, 405, 900 }, + }, + }, + [177724] = { + ["coords"] = { + [1] = { 41.6, 14.2, 28, 1200 }, + }, + }, + [177725] = { + ["coords"] = { + [1] = { 41.6, 14.2, 28, 1200 }, + }, + }, + [177726] = { + ["coords"] = { + [1] = { 43.2, 18.9, 28, 180 }, + [2] = { 42.9, 18.3, 28, 180 }, + [3] = { 43.8, 17.8, 28, 180 }, + [4] = { 43.7, 17.5, 28, 180 }, + [5] = { 44.1, 17.5, 28, 180 }, + [6] = { 44, 17.5, 28, 180 }, + [7] = { 43.5, 17.4, 28, 180 }, + [8] = { 44.1, 17.2, 28, 180 }, + [9] = { 43.8, 17.2, 28, 180 }, + [10] = { 45.2, 17.2, 28, 180 }, + [11] = { 45.7, 17.1, 28, 180 }, + [12] = { 43.7, 17, 28, 180 }, + [13] = { 46, 17, 28, 180 }, + [14] = { 44, 16.9, 28, 180 }, + [15] = { 45.8, 16.8, 28, 180 }, + [16] = { 46.2, 16.7, 28, 180 }, + [17] = { 45.6, 16.6, 28, 180 }, + [18] = { 45.2, 16.4, 28, 180 }, + [19] = { 46.1, 16.4, 28, 180 }, + [20] = { 45.8, 15.9, 28, 180 }, + [21] = { 46, 15.7, 28, 180 }, + [22] = { 44.2, 14.2, 28, 180 }, + [23] = { 43.6, 14, 28, 180 }, + [24] = { 44, 13.9, 28, 180 }, + [25] = { 45, 13.8, 28, 180 }, + [26] = { 44.3, 13.8, 28, 180 }, + [27] = { 43.5, 13.7, 28, 180 }, + [28] = { 44.2, 13.4, 28, 180 }, + [29] = { 44.8, 13.2, 28, 180 }, + [30] = { 45, 12.7, 28, 180 }, + [31] = { 44.8, 12.4, 28, 180 }, + [32] = { 45, 12.2, 28, 180 }, + }, + }, + [177727] = { + ["coords"] = { + [1] = { 41.6, 13.8, 28, 1200 }, + }, + }, + [177746] = { + ["coords"] = {}, + }, + [177747] = { + ["coords"] = { + [1] = { 52.1, 18.3, 139, 10 }, + }, + }, + [177748] = { + ["coords"] = { + [1] = { 63.5, 91.6, 405, 180 }, + }, + }, + [177749] = { + ["coords"] = {}, + }, + [177750] = { + ["coords"] = { + [1] = { 45.6, 53.3, 148, 180 }, + [2] = { 45.4, 53.2, 148, 180 }, + [3] = { 45.5, 53, 148, 180 }, + [4] = { 42.4, 52.5, 148, 180 }, + [5] = { 42.6, 52.4, 148, 180 }, + [6] = { 43.8, 50.5, 148, 180 }, + [7] = { 44, 50.5, 148, 180 }, + [8] = { 43.6, 50.4, 148, 180 }, + [9] = { 45.7, 50.3, 148, 180 }, + [10] = { 43.8, 50.2, 148, 180 }, + [11] = { 45.9, 50.2, 148, 180 }, + [12] = { 43.3, 49.2, 148, 180 }, + [13] = { 43.5, 49.1, 148, 180 }, + [14] = { 43.4, 48.8, 148, 180 }, + [15] = { 43.4, 46, 148, 180 }, + [16] = { 46.7, 45.9, 148, 180 }, + [17] = { 43.2, 45.8, 148, 180 }, + [18] = { 43.5, 45.8, 148, 180 }, + [19] = { 46.4, 45.7, 148, 180 }, + [20] = { 46.8, 45.7, 148, 180 }, + }, + }, + [177764] = { + ["coords"] = {}, + }, + [177784] = { + ["coords"] = { + [1] = { 25.4, 47.8, 405, 300 }, + [2] = { 24.6, 44, 405, 300 }, + [3] = { 26.4, 41.1, 405, 300 }, + [4] = { 23.8, 40.5, 405, 300 }, + [5] = { 25.6, 38.8, 405, 300 }, + [6] = { 28, 37.5, 405, 300 }, + [7] = { 29.7, 36.6, 405, 300 }, + [8] = { 26.2, 36.6, 405, 300 }, + [9] = { 32.8, 35.3, 405, 300 }, + [10] = { 35.3, 34.7, 405, 300 }, + [11] = { 30.5, 34.2, 405, 300 }, + [12] = { 28.2, 34.1, 405, 300 }, + [13] = { 33.9, 33.3, 405, 300 }, + [14] = { 30.5, 32, 405, 300 }, + [15] = { 34.1, 30.7, 405, 300 }, + [16] = { 31.9, 30.6, 405, 300 }, + [17] = { 30, 29.1, 405, 300 }, + [18] = { 32.9, 28.6, 405, 300 }, + [19] = { 34.2, 27.5, 405, 300 }, + [20] = { 30.7, 27.3, 405, 300 }, + [21] = { 30, 26.1, 405, 300 }, + [22] = { 32.7, 25.3, 405, 300 }, + [23] = { 35.4, 25, 405, 300 }, + [24] = { 30.8, 24.3, 405, 300 }, + [25] = { 34.3, 23.1, 405, 300 }, + }, + }, + [177785] = { + ["coords"] = { + [1] = { 60.6, 58.4, 493, 10 }, + [2] = { 54.3, 55.7, 493, 10 }, + [3] = { 56.2, 53.6, 493, 10 }, + [4] = { 52.1, 53.6, 493, 10 }, + [5] = { 50, 50.5, 493, 10 }, + [6] = { 54.1, 50.2, 493, 10 }, + [7] = { 53, 48.4, 493, 10 }, + [8] = { 47.9, 46.9, 493, 10 }, + [9] = { 54.6, 46.5, 493, 10 }, + }, + }, + [177786] = { + ["coords"] = { + [1] = { 30, 8.7, 405, 10 }, + }, + }, + [177787] = { + ["coords"] = { + [1] = { 36.1, 30.4, 405, 10 }, + }, + }, + [177788] = { + ["coords"] = { + [1] = { 36, 41.4, 493, 0 }, + }, + }, + [177789] = { + ["coords"] = { + [1] = { 17.4, 31.1, 139, 10 }, + }, + }, + [177790] = { + ["coords"] = { + [1] = { 17.9, 33.1, 40, 0 }, + }, + }, + [177791] = { + ["coords"] = { + [1] = { 20, 33, 40, 180 }, + }, + }, + [177792] = { + ["coords"] = { + [1] = { 48.9, 11.3, 148, 0 }, + }, + }, + [177793] = { + ["coords"] = { + [1] = { 56.7, 8.3, 17, 900 }, + }, + }, + [177794] = { + ["coords"] = { + [1] = { 56.7, 8.3, 17, 50 }, + }, + }, + [177804] = { + ["coords"] = { + [1] = { 27.2, 75, 139, 10 }, + }, + }, + [177805] = { + ["coords"] = { + [1] = { 28.8, 74.9, 139, 10 }, + }, + }, + [177806] = { + ["coords"] = { + [1] = { 28.8, 79.8, 139, 10 }, + }, + }, + [177807] = { + ["coords"] = {}, + }, + [177808] = { + ["coords"] = {}, + }, + [177824] = { + ["coords"] = {}, + }, + [177844] = { + ["coords"] = { + [1] = { 29.6, 29.3, 130, 0 }, + }, + }, + [177884] = { + ["coords"] = { + [1] = { 71.9, 6.8, 130, 900 }, + [2] = { 46.2, 62.9, 1497, 900 }, + }, + }, + [177904] = { + ["coords"] = { + [1] = { 59.1, 75.7, 406, 10 }, + }, + ["fac"] = "H", + }, + [177905] = { + ["coords"] = { + [1] = { 70.5, 86.8, 1519, 900 }, + }, + }, + [177926] = { + ["coords"] = { + [1] = { 49.7, 45.1, 406, 60 }, + [2] = { 48, 44.3, 406, 60 }, + [3] = { 48.9, 43.9, 406, 60 }, + [4] = { 49.7, 43.3, 406, 60 }, + [5] = { 45.8, 43.1, 406, 60 }, + [6] = { 51.8, 42.6, 406, 60 }, + [7] = { 51, 41.1, 406, 60 }, + [8] = { 46, 40.7, 406, 60 }, + [9] = { 48, 39.8, 406, 60 }, + [10] = { 46.3, 39.6, 406, 60 }, + [11] = { 50.2, 39.2, 406, 60 }, + [12] = { 46.7, 37.5, 406, 60 }, + [13] = { 50.4, 37.3, 406, 60 }, + [14] = { 50.6, 36.6, 406, 60 }, + [15] = { 48.4, 35.9, 406, 60 }, + }, + }, + [177927] = { + ["coords"] = { + [1] = { 47.4, 58.4, 406, 30 }, + }, + }, + [177928] = { + ["coords"] = { + [1] = { 52.6, 76.8, 15, 900 }, + }, + }, + [177929] = { + ["coords"] = { + [1] = { 36.6, 74.4, 406, 120 }, + [2] = { 30.4, 73.8, 406, 120 }, + [3] = { 33.7, 73, 406, 120 }, + [4] = { 31.3, 72.4, 406, 120 }, + [5] = { 34.7, 72.3, 406, 120 }, + [6] = { 36.9, 72, 406, 120 }, + [7] = { 29.6, 71.3, 406, 120 }, + [8] = { 33.7, 70.8, 406, 120 }, + [9] = { 30.5, 70.8, 406, 120 }, + [10] = { 31.9, 70.6, 406, 120 }, + [11] = { 35.9, 70.3, 406, 120 }, + [12] = { 32.3, 70.1, 406, 120 }, + [13] = { 35.9, 70, 406, 120 }, + [14] = { 34.5, 69.1, 406, 120 }, + [15] = { 33.6, 69, 406, 120 }, + [16] = { 29.1, 68.9, 406, 120 }, + [17] = { 31.4, 68.5, 406, 120 }, + [18] = { 30.1, 68.4, 406, 120 }, + [19] = { 32.2, 68.2, 406, 120 }, + [20] = { 36.1, 68, 406, 120 }, + [21] = { 30.2, 67.6, 406, 120 }, + [22] = { 33.7, 67, 406, 120 }, + [23] = { 30.8, 66.6, 406, 120 }, + [24] = { 37.8, 66.2, 406, 120 }, + [25] = { 35.8, 66.1, 406, 120 }, + [26] = { 36, 65.2, 406, 120 }, + [27] = { 27.8, 64.7, 406, 120 }, + [28] = { 31.9, 64.2, 406, 120 }, + [29] = { 29.1, 63.7, 406, 120 }, + [30] = { 35.2, 63.7, 406, 120 }, + [31] = { 30.1, 62.5, 406, 120 }, + [32] = { 33.9, 61.9, 406, 120 }, + [33] = { 31.3, 61.4, 406, 120 }, + [34] = { 34.2, 61.3, 406, 120 }, + }, + }, + [177964] = { + ["coords"] = {}, + }, + [177984] = { + ["coords"] = {}, + }, + [177985] = { + ["coords"] = {}, + }, + [177986] = { + ["coords"] = {}, + }, + [177987] = { + ["coords"] = {}, + }, + [177988] = { + ["coords"] = {}, + }, + [177989] = { + ["coords"] = {}, + }, + [177990] = { + ["coords"] = {}, + }, + [177991] = { + ["coords"] = {}, + }, + [177992] = { + ["coords"] = {}, + }, + [177993] = { + ["coords"] = {}, + }, + [177994] = { + ["coords"] = {}, + }, + [177995] = { + ["coords"] = {}, + }, + [177996] = { + ["coords"] = {}, + }, + [177997] = { + ["coords"] = {}, + }, + [177998] = { + ["coords"] = {}, + }, + [177999] = { + ["coords"] = {}, + }, + [178000] = { + ["coords"] = {}, + }, + [178001] = { + ["coords"] = {}, + }, + [178002] = { + ["coords"] = {}, + }, + [178003] = { + ["coords"] = {}, + }, + [178004] = { + ["coords"] = {}, + }, + [178005] = { + ["coords"] = {}, + }, + [178006] = { + ["coords"] = {}, + }, + [178007] = { + ["coords"] = {}, + }, + [178008] = { + ["coords"] = {}, + }, + [178009] = { + ["coords"] = {}, + }, + [178010] = { + ["coords"] = {}, + }, + [178011] = { + ["coords"] = {}, + }, + [178012] = { + ["coords"] = {}, + }, + [178013] = { + ["coords"] = {}, + }, + [178014] = { + ["coords"] = {}, + }, + [178015] = { + ["coords"] = {}, + }, + [178016] = { + ["coords"] = {}, + }, + [178017] = { + ["coords"] = {}, + }, + [178018] = { + ["coords"] = {}, + }, + [178019] = { + ["coords"] = {}, + }, + [178020] = { + ["coords"] = {}, + }, + [178021] = { + ["coords"] = {}, + }, + [178022] = { + ["coords"] = {}, + }, + [178023] = { + ["coords"] = {}, + }, + [178024] = { + ["coords"] = {}, + }, + [178025] = { + ["coords"] = {}, + }, + [178026] = { + ["coords"] = {}, + }, + [178027] = { + ["coords"] = {}, + }, + [178028] = { + ["coords"] = {}, + }, + [178029] = { + ["coords"] = {}, + }, + [178030] = { + ["coords"] = {}, + }, + [178031] = { + ["coords"] = {}, + }, + [178032] = { + ["coords"] = {}, + }, + [178033] = { + ["coords"] = {}, + }, + [178034] = { + ["coords"] = {}, + }, + [178035] = { + ["coords"] = {}, + }, + [178036] = { + ["coords"] = {}, + }, + [178037] = { + ["coords"] = {}, + }, + [178038] = { + ["coords"] = {}, + }, + [178039] = { + ["coords"] = {}, + }, + [178040] = { + ["coords"] = {}, + }, + [178041] = { + ["coords"] = {}, + }, + [178042] = { + ["coords"] = {}, + }, + [178043] = { + ["coords"] = {}, + }, + [178044] = { + ["coords"] = {}, + }, + [178045] = { + ["coords"] = {}, + }, + [178046] = { + ["coords"] = {}, + }, + [178047] = { + ["coords"] = {}, + }, + [178048] = { + ["coords"] = {}, + }, + [178084] = { + ["coords"] = { + [1] = { 22.8, 80, 1, 10 }, + }, + }, + [178085] = { + ["coords"] = { + [1] = { 26.3, 79.3, 1, 10 }, + }, + }, + [178087] = { + ["coords"] = { + [1] = { 43.7, 53.8, 14, 10 }, + }, + }, + [178088] = { + ["coords"] = {}, + }, + [178089] = { + ["coords"] = { + [1] = { 43.7, 53.8, 14, 900 }, + }, + }, + [178090] = { + ["coords"] = { + [1] = { 31.2, 65.1, 85, 900 }, + }, + }, + [178104] = { + ["coords"] = { + [1] = { 85.8, 19.8, 405, 180 }, + [2] = { 85.8, 19.2, 405, 180 }, + [3] = { 85.2, 19.2, 405, 180 }, + [4] = { 86.9, 18.7, 405, 180 }, + [5] = { 86.5, 18.6, 405, 180 }, + [6] = { 87.1, 18.4, 405, 180 }, + [7] = { 85.5, 18.4, 405, 180 }, + [8] = { 86.1, 18.4, 405, 180 }, + [9] = { 88.1, 18.2, 405, 180 }, + [10] = { 87.3, 18.2, 405, 180 }, + [11] = { 86.7, 18.1, 405, 180 }, + [12] = { 88.5, 18.1, 405, 180 }, + [13] = { 85.6, 17.9, 405, 180 }, + [14] = { 86.7, 17.7, 405, 180 }, + [15] = { 87.1, 17.6, 405, 180 }, + [16] = { 86.5, 17.5, 405, 180 }, + [17] = { 87.2, 17.3, 405, 180 }, + [18] = { 86.4, 17.2, 405, 180 }, + [19] = { 85.7, 17.2, 405, 180 }, + [20] = { 88.1, 17.2, 405, 180 }, + [21] = { 86.7, 17.2, 405, 180 }, + [22] = { 85.6, 16.9, 405, 180 }, + [23] = { 84.8, 16.9, 405, 180 }, + [24] = { 87.2, 16.8, 405, 180 }, + [25] = { 88.7, 16.7, 405, 180 }, + [26] = { 86.7, 16.6, 405, 180 }, + [27] = { 87.9, 16.5, 405, 180 }, + [28] = { 86, 16.5, 405, 180 }, + [29] = { 88.6, 16.4, 405, 180 }, + [30] = { 85.7, 16.3, 405, 180 }, + [31] = { 86.7, 16.3, 405, 180 }, + [32] = { 87.4, 16.2, 405, 180 }, + [33] = { 86.5, 16.1, 405, 180 }, + [34] = { 84.1, 15.6, 405, 300 }, + [35] = { 87.2, 15.5, 405, 180 }, + [36] = { 86.3, 15.4, 405, 180 }, + [37] = { 85.2, 15.3, 405, 180 }, + [38] = { 84.3, 15.2, 405, 180 }, + [39] = { 86.2, 15.1, 405, 180 }, + [40] = { 84.2, 14.7, 405, 180 }, + [41] = { 58.7, 93.9, 406, 180 }, + [42] = { 58.7, 93.4, 406, 180 }, + [43] = { 58.2, 93.3, 406, 180 }, + [44] = { 59.7, 92.9, 406, 180 }, + [45] = { 59.4, 92.8, 406, 180 }, + [46] = { 60, 92.7, 406, 180 }, + [47] = { 58.5, 92.7, 406, 180 }, + [48] = { 59.1, 92.6, 406, 180 }, + [49] = { 60.9, 92.5, 406, 180 }, + [50] = { 60.2, 92.4, 406, 180 }, + [51] = { 59.6, 92.3, 406, 180 }, + [52] = { 61.2, 92.3, 406, 180 }, + [53] = { 58.6, 92.1, 406, 180 }, + [54] = { 59.6, 92, 406, 180 }, + [55] = { 60, 91.9, 406, 180 }, + [56] = { 59.4, 91.8, 406, 180 }, + [57] = { 60.1, 91.6, 406, 180 }, + [58] = { 59.4, 91.6, 406, 180 }, + [59] = { 58.7, 91.5, 406, 180 }, + [60] = { 60.9, 91.5, 406, 180 }, + [61] = { 59.6, 91.5, 406, 180 }, + [62] = { 58.6, 91.2, 406, 180 }, + [63] = { 57.9, 91.2, 406, 180 }, + [64] = { 60.1, 91.2, 406, 180 }, + [65] = { 61.4, 91.1, 406, 180 }, + [66] = { 59.6, 90.9, 406, 180 }, + [67] = { 60.7, 90.9, 406, 180 }, + [68] = { 58.9, 90.8, 406, 180 }, + [69] = { 61.4, 90.8, 406, 180 }, + [70] = { 58.7, 90.7, 406, 180 }, + [71] = { 59.6, 90.7, 406, 180 }, + [72] = { 60.3, 90.6, 406, 180 }, + [73] = { 59.4, 90.5, 406, 180 }, + [74] = { 57.2, 90, 406, 300 }, + [75] = { 60.1, 90, 406, 180 }, + [76] = { 59.2, 89.9, 406, 180 }, + [77] = { 58.2, 89.8, 406, 180 }, + [78] = { 57.4, 89.7, 406, 180 }, + [79] = { 59.2, 89.6, 406, 180 }, + [80] = { 57.3, 89.2, 406, 180 }, + }, + }, + [178105] = { + ["coords"] = { + [1] = { 85.8, 19.8, 405, 180 }, + [2] = { 85.8, 19.2, 405, 180 }, + [3] = { 85.2, 19.2, 405, 180 }, + [4] = { 86.9, 18.7, 405, 180 }, + [5] = { 86.5, 18.6, 405, 180 }, + [6] = { 87.1, 18.4, 405, 180 }, + [7] = { 85.5, 18.4, 405, 180 }, + [8] = { 86.1, 18.4, 405, 180 }, + [9] = { 88.1, 18.2, 405, 180 }, + [10] = { 87.3, 18.2, 405, 180 }, + [11] = { 86.7, 18.1, 405, 180 }, + [12] = { 88.5, 18.1, 405, 180 }, + [13] = { 85.6, 17.9, 405, 180 }, + [14] = { 86.7, 17.7, 405, 180 }, + [15] = { 87.1, 17.6, 405, 180 }, + [16] = { 86.5, 17.5, 405, 180 }, + [17] = { 87.2, 17.3, 405, 180 }, + [18] = { 86.4, 17.2, 405, 180 }, + [19] = { 85.7, 17.2, 405, 180 }, + [20] = { 88.1, 17.2, 405, 180 }, + [21] = { 86.7, 17.2, 405, 180 }, + [22] = { 85.6, 16.9, 405, 180 }, + [23] = { 84.8, 16.9, 405, 180 }, + [24] = { 87.2, 16.8, 405, 180 }, + [25] = { 88.7, 16.7, 405, 180 }, + [26] = { 86.7, 16.6, 405, 180 }, + [27] = { 87.9, 16.5, 405, 180 }, + [28] = { 86, 16.5, 405, 180 }, + [29] = { 88.6, 16.4, 405, 180 }, + [30] = { 85.7, 16.3, 405, 180 }, + [31] = { 86.7, 16.3, 405, 180 }, + [32] = { 87.4, 16.2, 405, 180 }, + [33] = { 86.5, 16.1, 405, 180 }, + [34] = { 84.1, 15.6, 405, 300 }, + [35] = { 87.2, 15.5, 405, 180 }, + [36] = { 86.3, 15.4, 405, 180 }, + [37] = { 85.2, 15.3, 405, 180 }, + [38] = { 84.3, 15.2, 405, 180 }, + [39] = { 86.2, 15.1, 405, 180 }, + [40] = { 84.2, 14.7, 405, 180 }, + [41] = { 58.7, 93.9, 406, 180 }, + [42] = { 58.7, 93.4, 406, 180 }, + [43] = { 58.2, 93.3, 406, 180 }, + [44] = { 59.7, 92.9, 406, 180 }, + [45] = { 59.4, 92.8, 406, 180 }, + [46] = { 60, 92.7, 406, 180 }, + [47] = { 58.5, 92.7, 406, 180 }, + [48] = { 59.1, 92.6, 406, 180 }, + [49] = { 60.9, 92.5, 406, 180 }, + [50] = { 60.2, 92.4, 406, 180 }, + [51] = { 59.6, 92.3, 406, 180 }, + [52] = { 61.2, 92.3, 406, 180 }, + [53] = { 58.6, 92.1, 406, 180 }, + [54] = { 59.6, 92, 406, 180 }, + [55] = { 60, 91.9, 406, 180 }, + [56] = { 59.4, 91.8, 406, 180 }, + [57] = { 60.1, 91.6, 406, 180 }, + [58] = { 59.4, 91.6, 406, 180 }, + [59] = { 58.7, 91.5, 406, 180 }, + [60] = { 60.9, 91.5, 406, 180 }, + [61] = { 59.6, 91.5, 406, 180 }, + [62] = { 58.6, 91.2, 406, 180 }, + [63] = { 57.9, 91.2, 406, 180 }, + [64] = { 60.1, 91.2, 406, 180 }, + [65] = { 61.4, 91.1, 406, 180 }, + [66] = { 59.6, 90.9, 406, 180 }, + [67] = { 60.7, 90.9, 406, 180 }, + [68] = { 58.9, 90.8, 406, 180 }, + [69] = { 61.4, 90.8, 406, 180 }, + [70] = { 58.7, 90.7, 406, 180 }, + [71] = { 59.6, 90.7, 406, 180 }, + [72] = { 60.3, 90.6, 406, 180 }, + [73] = { 59.4, 90.5, 406, 180 }, + [74] = { 57.2, 90, 406, 300 }, + [75] = { 60.1, 90, 406, 180 }, + [76] = { 59.2, 89.9, 406, 180 }, + [77] = { 58.2, 89.8, 406, 180 }, + [78] = { 57.4, 89.7, 406, 180 }, + [79] = { 59.2, 89.6, 406, 180 }, + [80] = { 57.3, 89.2, 406, 180 }, + }, + }, + [178106] = { + ["coords"] = { + [1] = { 85.8, 19.8, 405, 180 }, + [2] = { 85.8, 19.2, 405, 180 }, + [3] = { 85.2, 19.2, 405, 180 }, + [4] = { 86.9, 18.7, 405, 180 }, + [5] = { 86.5, 18.6, 405, 180 }, + [6] = { 87.1, 18.4, 405, 180 }, + [7] = { 85.5, 18.4, 405, 180 }, + [8] = { 86.1, 18.4, 405, 180 }, + [9] = { 88.1, 18.2, 405, 180 }, + [10] = { 87.3, 18.2, 405, 180 }, + [11] = { 86.7, 18.1, 405, 180 }, + [12] = { 88.5, 18.1, 405, 180 }, + [13] = { 85.6, 17.9, 405, 180 }, + [14] = { 86.7, 17.7, 405, 180 }, + [15] = { 87.1, 17.6, 405, 180 }, + [16] = { 86.5, 17.5, 405, 180 }, + [17] = { 87.2, 17.3, 405, 180 }, + [18] = { 86.4, 17.2, 405, 180 }, + [19] = { 85.7, 17.2, 405, 180 }, + [20] = { 88.1, 17.2, 405, 180 }, + [21] = { 86.7, 17.2, 405, 180 }, + [22] = { 85.6, 16.9, 405, 180 }, + [23] = { 84.8, 16.9, 405, 180 }, + [24] = { 87.2, 16.8, 405, 180 }, + [25] = { 88.7, 16.7, 405, 180 }, + [26] = { 86.7, 16.6, 405, 180 }, + [27] = { 87.9, 16.5, 405, 180 }, + [28] = { 86, 16.5, 405, 180 }, + [29] = { 88.6, 16.4, 405, 180 }, + [30] = { 85.7, 16.3, 405, 180 }, + [31] = { 86.7, 16.3, 405, 180 }, + [32] = { 87.4, 16.2, 405, 180 }, + [33] = { 86.5, 16.1, 405, 180 }, + [34] = { 84.1, 15.6, 405, 300 }, + [35] = { 87.2, 15.5, 405, 180 }, + [36] = { 86.3, 15.4, 405, 180 }, + [37] = { 85.2, 15.3, 405, 180 }, + [38] = { 84.3, 15.2, 405, 180 }, + [39] = { 86.2, 15.1, 405, 180 }, + [40] = { 84.2, 14.7, 405, 180 }, + [41] = { 58.7, 93.9, 406, 180 }, + [42] = { 58.7, 93.4, 406, 180 }, + [43] = { 58.2, 93.3, 406, 180 }, + [44] = { 59.7, 92.9, 406, 180 }, + [45] = { 59.4, 92.8, 406, 180 }, + [46] = { 60, 92.7, 406, 180 }, + [47] = { 58.5, 92.7, 406, 180 }, + [48] = { 59.1, 92.6, 406, 180 }, + [49] = { 60.9, 92.5, 406, 180 }, + [50] = { 60.2, 92.4, 406, 180 }, + [51] = { 59.6, 92.3, 406, 180 }, + [52] = { 61.2, 92.3, 406, 180 }, + [53] = { 58.6, 92.1, 406, 180 }, + [54] = { 59.6, 92, 406, 180 }, + [55] = { 60, 91.9, 406, 180 }, + [56] = { 59.4, 91.8, 406, 180 }, + [57] = { 60.1, 91.6, 406, 180 }, + [58] = { 59.4, 91.6, 406, 180 }, + [59] = { 58.7, 91.5, 406, 180 }, + [60] = { 60.9, 91.5, 406, 180 }, + [61] = { 59.6, 91.5, 406, 180 }, + [62] = { 58.6, 91.2, 406, 180 }, + [63] = { 57.9, 91.2, 406, 180 }, + [64] = { 60.1, 91.2, 406, 180 }, + [65] = { 61.4, 91.1, 406, 180 }, + [66] = { 59.6, 90.9, 406, 180 }, + [67] = { 60.7, 90.9, 406, 180 }, + [68] = { 58.9, 90.8, 406, 180 }, + [69] = { 61.4, 90.8, 406, 180 }, + [70] = { 58.7, 90.7, 406, 180 }, + [71] = { 59.6, 90.7, 406, 180 }, + [72] = { 60.3, 90.6, 406, 180 }, + [73] = { 59.4, 90.5, 406, 180 }, + [74] = { 57.2, 90, 406, 300 }, + [75] = { 60.1, 90, 406, 180 }, + [76] = { 59.2, 89.9, 406, 180 }, + [77] = { 58.2, 89.8, 406, 180 }, + [78] = { 57.4, 89.7, 406, 180 }, + [79] = { 59.2, 89.6, 406, 180 }, + [80] = { 57.3, 89.2, 406, 180 }, + }, + }, + [178107] = { + ["coords"] = {}, + }, + [178108] = { + ["coords"] = {}, + }, + [178124] = { + ["coords"] = { + [1] = { 85.8, 19.8, 405, 180 }, + [2] = { 85.8, 19.2, 405, 180 }, + [3] = { 85.2, 19.2, 405, 180 }, + [4] = { 86.9, 18.7, 405, 180 }, + [5] = { 86.5, 18.6, 405, 180 }, + [6] = { 87.1, 18.4, 405, 180 }, + [7] = { 85.5, 18.4, 405, 180 }, + [8] = { 86.1, 18.4, 405, 180 }, + [9] = { 88.1, 18.2, 405, 180 }, + [10] = { 87.3, 18.2, 405, 180 }, + [11] = { 86.7, 18.1, 405, 180 }, + [12] = { 88.5, 18.1, 405, 180 }, + [13] = { 85.6, 17.9, 405, 180 }, + [14] = { 86.7, 17.7, 405, 180 }, + [15] = { 87.1, 17.6, 405, 180 }, + [16] = { 86.5, 17.5, 405, 180 }, + [17] = { 87.2, 17.3, 405, 180 }, + [18] = { 86.4, 17.2, 405, 180 }, + [19] = { 85.7, 17.2, 405, 180 }, + [20] = { 88.1, 17.2, 405, 180 }, + [21] = { 86.7, 17.2, 405, 180 }, + [22] = { 85.6, 16.9, 405, 180 }, + [23] = { 84.8, 16.9, 405, 180 }, + [24] = { 87.2, 16.8, 405, 180 }, + [25] = { 88.7, 16.7, 405, 180 }, + [26] = { 86.7, 16.6, 405, 180 }, + [27] = { 87.9, 16.5, 405, 180 }, + [28] = { 86, 16.5, 405, 180 }, + [29] = { 88.6, 16.4, 405, 180 }, + [30] = { 85.7, 16.3, 405, 180 }, + [31] = { 86.7, 16.3, 405, 180 }, + [32] = { 87.4, 16.2, 405, 180 }, + [33] = { 86.5, 16.1, 405, 180 }, + [34] = { 84.1, 15.6, 405, 300 }, + [35] = { 87.2, 15.5, 405, 180 }, + [36] = { 86.3, 15.4, 405, 180 }, + [37] = { 85.2, 15.3, 405, 180 }, + [38] = { 84.3, 15.2, 405, 180 }, + [39] = { 86.2, 15.1, 405, 180 }, + [40] = { 84.2, 14.7, 405, 180 }, + [41] = { 58.7, 93.9, 406, 180 }, + [42] = { 58.7, 93.4, 406, 180 }, + [43] = { 58.2, 93.3, 406, 180 }, + [44] = { 59.7, 92.9, 406, 180 }, + [45] = { 59.4, 92.8, 406, 180 }, + [46] = { 60, 92.7, 406, 180 }, + [47] = { 58.5, 92.7, 406, 180 }, + [48] = { 59.1, 92.6, 406, 180 }, + [49] = { 60.9, 92.5, 406, 180 }, + [50] = { 60.2, 92.4, 406, 180 }, + [51] = { 59.6, 92.3, 406, 180 }, + [52] = { 61.2, 92.3, 406, 180 }, + [53] = { 58.6, 92.1, 406, 180 }, + [54] = { 59.6, 92, 406, 180 }, + [55] = { 60, 91.9, 406, 180 }, + [56] = { 59.4, 91.8, 406, 180 }, + [57] = { 60.1, 91.6, 406, 180 }, + [58] = { 59.4, 91.6, 406, 180 }, + [59] = { 58.7, 91.5, 406, 180 }, + [60] = { 60.9, 91.5, 406, 180 }, + [61] = { 59.6, 91.5, 406, 180 }, + [62] = { 58.6, 91.2, 406, 180 }, + [63] = { 57.9, 91.2, 406, 180 }, + [64] = { 60.1, 91.2, 406, 180 }, + [65] = { 61.4, 91.1, 406, 180 }, + [66] = { 59.6, 90.9, 406, 180 }, + [67] = { 60.7, 90.9, 406, 180 }, + [68] = { 58.9, 90.8, 406, 180 }, + [69] = { 61.4, 90.8, 406, 180 }, + [70] = { 58.7, 90.7, 406, 180 }, + [71] = { 59.6, 90.7, 406, 180 }, + [72] = { 60.3, 90.6, 406, 180 }, + [73] = { 59.4, 90.5, 406, 180 }, + [74] = { 57.2, 90, 406, 300 }, + [75] = { 60.1, 90, 406, 180 }, + [76] = { 59.2, 89.9, 406, 180 }, + [77] = { 58.2, 89.8, 406, 180 }, + [78] = { 57.4, 89.7, 406, 180 }, + [79] = { 59.2, 89.6, 406, 180 }, + [80] = { 57.3, 89.2, 406, 180 }, + }, + }, + [178125] = { + ["coords"] = { + [1] = { 46.4, 52.7, 46, 7200 }, + }, + }, + [178144] = { + ["coords"] = { + [1] = { 41.7, 35.7, 331, 180 }, + [2] = { 41.2, 35.4, 331, 180 }, + [3] = { 42.6, 35, 331, 180 }, + [4] = { 41.5, 34.8, 331, 180 }, + [5] = { 41.7, 34.5, 331, 180 }, + [6] = { 40.5, 34.4, 331, 180 }, + [7] = { 41.3, 34.2, 331, 180 }, + [8] = { 39.9, 34.2, 331, 180 }, + [9] = { 42, 34.2, 331, 180 }, + [10] = { 42.8, 34.1, 331, 180 }, + [11] = { 39.9, 33.7, 331, 180 }, + [12] = { 40.9, 33.6, 331, 180 }, + [13] = { 42.4, 33.6, 331, 180 }, + [14] = { 39.4, 33.5, 331, 180 }, + [15] = { 40.4, 33.2, 331, 180 }, + [16] = { 40, 33.1, 331, 180 }, + [17] = { 39.7, 32.9, 331, 180 }, + [18] = { 41.8, 32.9, 331, 180 }, + [19] = { 40.8, 32.8, 331, 180 }, + [20] = { 40.5, 32.3, 331, 180 }, + [21] = { 41.4, 32.2, 331, 180 }, + [22] = { 40.9, 31.6, 331, 180 }, + [23] = { 40.2, 31, 331, 180 }, + [24] = { 40.8, 100, 361, 180 }, + [25] = { 41.7, 99.2, 361, 180 }, + [26] = { 40.6, 99, 361, 180 }, + [27] = { 40.8, 98.8, 361, 180 }, + [28] = { 39.6, 98.7, 361, 180 }, + [29] = { 40.4, 98.5, 361, 180 }, + [30] = { 41.2, 98.4, 361, 180 }, + [31] = { 41.9, 98.4, 361, 180 }, + [32] = { 40, 97.9, 361, 180 }, + [33] = { 41.5, 97.9, 361, 180 }, + [34] = { 39.5, 97.5, 361, 180 }, + [35] = { 39.1, 97.4, 361, 180 }, + [36] = { 38.8, 97.2, 361, 180 }, + [37] = { 40.9, 97.2, 361, 180 }, + [38] = { 39.9, 97.1, 361, 180 }, + [39] = { 39.6, 96.5, 361, 180 }, + [40] = { 40.5, 96.4, 361, 180 }, + [41] = { 40.1, 95.9, 361, 180 }, + [42] = { 39.3, 95.3, 361, 180 }, + }, + }, + [178145] = { + ["coords"] = { + [1] = { 84.5, 15, 405, 900 }, + [2] = { 57.6, 89.5, 406, 900 }, + }, + }, + [178146] = { + ["coords"] = { + [1] = { 70, 71.2, 331, 900 }, + }, + }, + [178147] = { + ["coords"] = { + [1] = { 41.5, 34.5, 331, 900 }, + [2] = { 40.6, 98.8, 361, 900 }, + }, + }, + [178164] = { + ["coords"] = {}, + }, + [178184] = { + ["coords"] = { + [1] = { 30.3, 95.5, 148, 60 }, + [2] = { 30.9, 95.4, 148, 60 }, + [3] = { 33.5, 95, 148, 60 }, + [4] = { 31, 94.6, 148, 60 }, + [5] = { 33.3, 94.3, 148, 60 }, + [6] = { 33.8, 93.8, 148, 60 }, + [7] = { 33.5, 93.7, 148, 60 }, + [8] = { 31.3, 93.3, 148, 60 }, + [9] = { 33.7, 92.9, 148, 60 }, + [10] = { 32, 92.8, 148, 60 }, + [11] = { 31.3, 92.6, 148, 60 }, + [12] = { 30, 92.5, 148, 60 }, + [13] = { 31.6, 92.2, 148, 60 }, + [14] = { 31.3, 92, 148, 60 }, + [15] = { 31, 91.8, 148, 60 }, + [16] = { 12.9, 13.2, 331, 60 }, + [17] = { 13.6, 13.1, 331, 60 }, + [18] = { 16.5, 12.7, 331, 60 }, + [19] = { 13.7, 12.3, 331, 60 }, + [20] = { 16.3, 11.9, 331, 60 }, + [21] = { 16.9, 11.4, 331, 60 }, + [22] = { 16.5, 11.3, 331, 60 }, + [23] = { 14, 10.8, 331, 60 }, + [24] = { 16.7, 10.3, 331, 60 }, + [25] = { 14.8, 10.2, 331, 60 }, + [26] = { 14.1, 9.9, 331, 60 }, + [27] = { 12.5, 9.9, 331, 60 }, + [28] = { 14.4, 9.6, 331, 60 }, + [29] = { 14.1, 9.3, 331, 60 }, + [30] = { 13.7, 9, 331, 60 }, + }, + }, + [178185] = { + ["coords"] = { + [1] = { 30.6, 95.7, 148, 60 }, + [2] = { 30.7, 95.1, 148, 60 }, + [3] = { 34.1, 94.5, 148, 60 }, + [4] = { 30.9, 94.3, 148, 60 }, + [5] = { 32.9, 94.1, 148, 60 }, + [6] = { 33.5, 93.9, 148, 60 }, + [7] = { 31.4, 93.5, 148, 60 }, + [8] = { 33.8, 93.4, 148, 60 }, + [9] = { 32.1, 93.3, 148, 60 }, + [10] = { 32.5, 93, 148, 60 }, + [11] = { 30.4, 93, 148, 60 }, + [12] = { 30.9, 92.9, 148, 60 }, + [13] = { 30.3, 92.2, 148, 60 }, + [14] = { 30.8, 91.9, 148, 60 }, + [15] = { 31.5, 91.3, 148, 60 }, + [16] = { 13.2, 13.5, 331, 60 }, + [17] = { 13.4, 12.8, 331, 60 }, + [18] = { 17.1, 12.1, 331, 60 }, + [19] = { 13.5, 11.8, 331, 60 }, + [20] = { 15.8, 11.7, 331, 60 }, + [21] = { 16.5, 11.4, 331, 60 }, + [22] = { 14.2, 11, 331, 60 }, + [23] = { 16.8, 10.9, 331, 60 }, + [24] = { 14.9, 10.8, 331, 60 }, + [25] = { 15.3, 10.5, 331, 60 }, + [26] = { 12.9, 10.4, 331, 60 }, + [27] = { 13.6, 10.3, 331, 60 }, + [28] = { 12.9, 9.5, 331, 60 }, + [29] = { 13.5, 9.1, 331, 60 }, + [30] = { 14.2, 8.4, 331, 60 }, + }, + }, + [178186] = { + ["coords"] = { + [1] = { 30.5, 95.2, 148, 60 }, + [2] = { 33.6, 95, 148, 60 }, + [3] = { 30.8, 94.9, 148, 60 }, + [4] = { 33.9, 94.7, 148, 60 }, + [5] = { 31.1, 94.2, 148, 60 }, + [6] = { 31.1, 93.6, 148, 60 }, + [7] = { 34.1, 93.5, 148, 60 }, + [8] = { 32.6, 93.5, 148, 60 }, + [9] = { 33.6, 93.4, 148, 60 }, + [10] = { 31, 93.2, 148, 60 }, + [11] = { 30, 92.8, 148, 60 }, + [12] = { 31.1, 92.4, 148, 60 }, + [13] = { 31.9, 92.4, 148, 60 }, + [14] = { 30.6, 92.2, 148, 60 }, + [15] = { 31.8, 91.4, 148, 60 }, + [16] = { 13.1, 12.9, 331, 60 }, + [17] = { 16.7, 12.7, 331, 60 }, + [18] = { 13.5, 12.6, 331, 60 }, + [19] = { 17, 12.4, 331, 60 }, + [20] = { 13.8, 11.8, 331, 60 }, + [21] = { 13.8, 11.1, 331, 60 }, + [22] = { 17.2, 11, 331, 60 }, + [23] = { 15.5, 11, 331, 60 }, + [24] = { 16.6, 10.8, 331, 60 }, + [25] = { 13.7, 10.6, 331, 60 }, + [26] = { 12.5, 10.2, 331, 60 }, + [27] = { 13.8, 9.7, 331, 60 }, + [28] = { 14.7, 9.7, 331, 60 }, + [29] = { 13.2, 9.5, 331, 60 }, + [30] = { 14.6, 8.6, 331, 60 }, + }, + }, + [178187] = { + ["coords"] = {}, + }, + [178188] = { + ["coords"] = {}, + }, + [178189] = { + ["coords"] = {}, + }, + [178190] = { + ["coords"] = {}, + }, + [178191] = { + ["coords"] = {}, + }, + [178192] = { + ["coords"] = {}, + }, + [178193] = { + ["coords"] = {}, + }, + [178194] = { + ["coords"] = {}, + }, + [178195] = { + ["coords"] = { + [1] = { 66.7, 57.2, 331, 180 }, + [2] = { 66.9, 57.1, 331, 180 }, + [3] = { 66.5, 57, 331, 180 }, + [4] = { 66.5, 56.8, 331, 180 }, + [5] = { 66.7, 56.8, 331, 180 }, + [6] = { 67, 56.7, 331, 180 }, + [7] = { 66.3, 56.5, 331, 180 }, + [8] = { 66.3, 56.4, 331, 180 }, + [9] = { 80.5, 51.2, 331, 180 }, + [10] = { 80.1, 51, 331, 180 }, + [11] = { 79.5, 50.7, 331, 180 }, + [12] = { 81.3, 50.3, 331, 180 }, + [13] = { 81.1, 50.2, 331, 180 }, + [14] = { 79.9, 50.1, 331, 180 }, + [15] = { 80, 50, 331, 180 }, + [16] = { 80.6, 49.7, 331, 180 }, + [17] = { 80, 49.6, 331, 180 }, + [18] = { 81.8, 49.3, 331, 180 }, + [19] = { 81.8, 49.1, 331, 180 }, + [20] = { 81.7, 49.1, 331, 180 }, + [21] = { 81.1, 49, 331, 180 }, + [22] = { 80.8, 48.9, 331, 180 }, + [23] = { 81, 48.9, 331, 180 }, + [24] = { 80.7, 48.8, 331, 180 }, + [25] = { 79.1, 45.4, 331, 180 }, + [26] = { 78.7, 45.3, 331, 180 }, + [27] = { 78.4, 45.1, 331, 180 }, + [28] = { 78.7, 44.8, 331, 180 }, + [29] = { 78.3, 44.7, 331, 180 }, + [30] = { 78.5, 44.7, 331, 180 }, + [31] = { 78.2, 44.7, 331, 180 }, + }, + }, + [178204] = { + ["coords"] = { + [1] = { 26.4, 73.3, 33, 0 }, + }, + }, + [178205] = { + ["coords"] = {}, + }, + [178206] = { + ["coords"] = { + [1] = { 56.4, 63.5, 331, 180 }, + }, + }, + [178207] = { + ["coords"] = {}, + }, + [178224] = { + ["coords"] = { + [1] = { 58.9, 36, 357, 900 }, + }, + }, + [178225] = { + ["coords"] = { + [1] = { 58.9, 36, 357, 900 }, + }, + }, + [178226] = { + ["coords"] = { + [1] = { 73.1, 37, 45, 7200 }, + [2] = { 73, 36.9, 45, 7200 }, + [3] = { 72.9, 36.9, 45, 7200 }, + [4] = { 73.2, 36.8, 45, 7200 }, + [5] = { 73.1, 36.8, 45, 7200 }, + [6] = { 72.9, 36.7, 45, 7200 }, + }, + }, + [178227] = { + ["coords"] = {}, + }, + [178228] = { + ["coords"] = {}, + }, + [178229] = { + ["coords"] = { + [1] = { 53.7, 21.9, 139, 0 }, + }, + }, + [178230] = { + ["coords"] = { + [1] = { 53.7, 21.9, 139, 0 }, + }, + }, + [178244] = { + ["coords"] = { + [1] = { 52.1, 45.5, 44, 10 }, + [2] = { 52.3, 45.4, 44, 10 }, + [3] = { 52, 45.3, 44, 10 }, + [4] = { 51.9, 45.1, 44, 10 }, + [5] = { 51.7, 44.9, 44, 10 }, + }, + }, + [178245] = { + ["coords"] = { + [1] = { 52.1, 45.5, 44, 10 }, + [2] = { 52.3, 45.4, 44, 10 }, + [3] = { 52, 45.3, 44, 10 }, + [4] = { 51.9, 45.1, 44, 10 }, + [5] = { 51.7, 44.9, 44, 10 }, + }, + }, + [178246] = { + ["coords"] = { + [1] = { 52.1, 45.5, 44, 10 }, + [2] = { 52.3, 45.4, 44, 10 }, + [3] = { 52, 45.3, 44, 10 }, + [4] = { 51.9, 45.1, 44, 10 }, + [5] = { 51.7, 44.9, 44, 10 }, + }, + }, + [178247] = { + ["coords"] = { + [1] = { 9.6, 27.6, 331, 900 }, + }, + }, + [178248] = { + ["coords"] = { + [1] = { 9.6, 27.6, 331, 900 }, + }, + }, + [178264] = { + ["coords"] = { + [1] = { 71.3, 88.9, 1519, 900 }, + }, + }, + [178265] = { + ["coords"] = { + [1] = { 32.4, 49.7, 12, 900 }, + [2] = { 72.1, 90.5, 1519, 900 }, + }, + }, + [178304] = { + ["coords"] = {}, + }, + [178324] = { + ["coords"] = { + [1] = { 79.8, 79.4, 36, 7200 }, + [2] = { 78.6, 17.9, 267, 7200 }, + }, + }, + [178325] = { + ["coords"] = { + [1] = { 79.8, 79.4, 36, 300 }, + [2] = { 78.6, 17.9, 267, 300 }, + }, + }, + [178364] = { + ["coords"] = { + [1] = { 49.3, 88.1, 2597, 0 }, + [2] = { 50.2, 76.7, 2597, 0 }, + [3] = { 51.4, 60.1, 2597, 0 }, + [4] = { 44.7, 45.6, 2597, 0 }, + [5] = { 51.6, 35.7, 2597, 0 }, + [6] = { 42.8, 15.8, 2597, 0 }, + [7] = { 49, 14.7, 2597, 0 }, + }, + ["fac"] = "A", + }, + [178365] = { + ["coords"] = { + [1] = { 49.3, 88.1, 2597, 0 }, + [2] = { 50.2, 76.7, 2597, 0 }, + [3] = { 51.4, 60.1, 2597, 0 }, + [4] = { 44.7, 45.6, 2597, 0 }, + [5] = { 51.6, 35.7, 2597, 0 }, + [6] = { 42.8, 15.8, 2597, 0 }, + [7] = { 49, 14.7, 2597, 0 }, + }, + ["fac"] = "H", + }, + [178386] = { + ["coords"] = { + [1] = { 29.2, 61.2, 405, 900 }, + }, + }, + [178388] = { + ["coords"] = {}, + ["fac"] = "A", + }, + [178389] = { + ["coords"] = {}, + ["fac"] = "H", + }, + [178393] = { + ["coords"] = {}, + }, + [178394] = { + ["coords"] = {}, + }, + [178400] = { + ["coords"] = {}, + }, + [178404] = { + ["coords"] = {}, + ["fac"] = "H", + }, + [178405] = { + ["coords"] = { + [1] = { 29.2, 61.2, 405, 180 }, + }, + }, + [178425] = { + ["coords"] = { + [1] = { 43.1, 65, 12, 180 }, + [2] = { 22.8, 52.3, 1519, 180 }, + [3] = { 68.5, 19.8, 1537, 180 }, + }, + }, + [178426] = { + ["coords"] = { + [1] = { 51.9, 42.5, 14, 180 }, + [2] = { 61.2, 51.8, 85, 180 }, + [3] = { 38.6, 28.8, 215, 180 }, + [4] = { 40.7, 27.3, 215, 180 }, + [5] = { 45.8, 22.9, 215, 180 }, + [6] = { 52.2, 69.4, 1637, 180 }, + [7] = { 43.4, 58.7, 1638, 180 }, + [8] = { 53.8, 51.4, 1638, 180 }, + [9] = { 78.6, 29.7, 1638, 180 }, + }, + }, + [178427] = { + ["coords"] = {}, + }, + [178428] = { + ["coords"] = { + [1] = { 46.9, 53.1, 1, 180 }, + [2] = { 46.9, 53, 1, 180 }, + [3] = { 43, 65.1, 12, 180 }, + [4] = { 43.1, 65, 12, 180 }, + [5] = { 43.1, 64.9, 12, 180 }, + [6] = { 51.9, 42.6, 14, 180 }, + [7] = { 51.8, 42.5, 14, 180 }, + [8] = { 51.9, 42.5, 14, 180 }, + [9] = { 51.9, 42.4, 14, 180 }, + [10] = { 61.2, 51.9, 85, 180 }, + [11] = { 61.2, 51.8, 85, 180 }, + [12] = { 61.3, 51.8, 85, 180 }, + [13] = { 46.8, 59.9, 215, 180 }, + [14] = { 38.6, 28.8, 215, 180 }, + [15] = { 38.6, 28.7, 215, 180 }, + [16] = { 38.5, 28, 215, 180 }, + [17] = { 40.7, 27.3, 215, 180 }, + [18] = { 40.8, 27.3, 215, 180 }, + [19] = { 40.8, 27.2, 215, 180 }, + [20] = { 45.7, 22.9, 215, 180 }, + [21] = { 45.8, 22.9, 215, 180 }, + [22] = { 45.8, 22.8, 215, 180 }, + [23] = { 53.6, 28.4, 440, 180 }, + [24] = { 68.3, 36.5, 1497, 180 }, + [25] = { 68.2, 36.3, 1497, 180 }, + [26] = { 56.9, 68.6, 1519, 180 }, + [27] = { 52.1, 66.1, 1519, 180 }, + [28] = { 54.7, 59, 1519, 180 }, + [29] = { 54.7, 58.9, 1519, 180 }, + [30] = { 55, 58.7, 1519, 180 }, + [31] = { 22.8, 52.4, 1519, 180 }, + [32] = { 22.9, 52.1, 1519, 180 }, + [33] = { 68.6, 89.2, 1537, 180 }, + [34] = { 68.9, 89.1, 1537, 180 }, + [35] = { 68.6, 88.8, 1537, 180 }, + [36] = { 33.9, 67.9, 1537, 180 }, + [37] = { 34, 67.4, 1537, 180 }, + [38] = { 33.9, 66.5, 1537, 180 }, + [39] = { 34, 65.9, 1537, 180 }, + [40] = { 33.8, 65.9, 1537, 180 }, + [41] = { 33.9, 65.5, 1537, 180 }, + [42] = { 33.5, 65.3, 1537, 180 }, + [43] = { 37, 59.2, 1537, 180 }, + [44] = { 36.7, 59.1, 1537, 180 }, + [45] = { 36.5, 58.8, 1537, 180 }, + [46] = { 40.1, 51.5, 1537, 180 }, + [47] = { 40, 51.3, 1537, 180 }, + [48] = { 39.7, 51.3, 1537, 180 }, + [49] = { 68.6, 20.1, 1537, 180 }, + [50] = { 68.7, 19.9, 1537, 180 }, + [51] = { 68.4, 19.7, 1537, 180 }, + [52] = { 68.6, 19.6, 1537, 180 }, + [53] = { 24.6, 10.6, 1537, 180 }, + [54] = { 24.6, 10.2, 1537, 180 }, + [55] = { 52.3, 69.7, 1637, 180 }, + [56] = { 52.2, 69.6, 1637, 180 }, + [57] = { 52.1, 69.5, 1637, 180 }, + [58] = { 52.4, 69.5, 1637, 180 }, + [59] = { 52.1, 69.4, 1637, 180 }, + [60] = { 52.1, 69.2, 1637, 180 }, + [61] = { 52.3, 69.2, 1637, 180 }, + [62] = { 53.6, 66.8, 1637, 180 }, + [63] = { 53.5, 66.6, 1637, 180 }, + [64] = { 53.6, 66.4, 1637, 180 }, + [65] = { 53.5, 66.3, 1637, 180 }, + [66] = { 53.4, 66.3, 1637, 180 }, + [67] = { 53.3, 66.3, 1637, 180 }, + [68] = { 53.5, 66, 1637, 180 }, + [69] = { 53.5, 65.8, 1637, 180 }, + [70] = { 53.4, 65.7, 1637, 180 }, + [71] = { 43.4, 59, 1638, 180 }, + [72] = { 43.2, 58.7, 1638, 180 }, + [73] = { 43.5, 58.5, 1638, 180 }, + [74] = { 43.3, 58.5, 1638, 180 }, + [75] = { 43, 55, 1638, 180 }, + [76] = { 43, 54.7, 1638, 180 }, + [77] = { 53.8, 51.7, 1638, 180 }, + [78] = { 54, 51.5, 1638, 180 }, + [79] = { 53.9, 51.4, 1638, 180 }, + [80] = { 53.7, 51.3, 1638, 180 }, + [81] = { 53.6, 51.3, 1638, 180 }, + [82] = { 53.9, 51.2, 1638, 180 }, + [83] = { 78.4, 30, 1638, 180 }, + [84] = { 78.7, 29.9, 1638, 180 }, + [85] = { 78.5, 29.8, 1638, 180 }, + [86] = { 78.7, 29.8, 1638, 180 }, + [87] = { 78.3, 29.7, 1638, 180 }, + [88] = { 78.4, 29.6, 1638, 180 }, + [89] = { 78.7, 29.4, 1638, 180 }, + }, + }, + [178429] = { + ["coords"] = { + [1] = { 46.9, 53, 1, 180 }, + [2] = { 43.1, 65.1, 12, 180 }, + [3] = { 43.1, 65, 12, 180 }, + [4] = { 43.1, 64.9, 12, 180 }, + [5] = { 51.9, 42.5, 14, 180 }, + [6] = { 26.8, 73.5, 33, 180 }, + [7] = { 61, 52.3, 85, 180 }, + [8] = { 61.2, 51.9, 85, 180 }, + [9] = { 61.2, 51.8, 85, 180 }, + [10] = { 46.8, 59.9, 215, 180 }, + [11] = { 38.6, 28.8, 215, 180 }, + [12] = { 38.6, 28, 215, 180 }, + [13] = { 40.7, 27.3, 215, 180 }, + [14] = { 40.8, 27.3, 215, 180 }, + [15] = { 40.8, 27.2, 215, 180 }, + [16] = { 40.7, 27.2, 215, 180 }, + [17] = { 45.8, 22.9, 215, 180 }, + [18] = { 45.7, 22.9, 215, 180 }, + [19] = { 45.8, 22.8, 215, 180 }, + [20] = { 53.6, 28.4, 440, 180 }, + [21] = { 68.1, 36.2, 1497, 180 }, + [22] = { 56.7, 68.6, 1519, 180 }, + [23] = { 62.6, 61.1, 1519, 180 }, + [24] = { 62.7, 61, 1519, 180 }, + [25] = { 54.7, 58.9, 1519, 180 }, + [26] = { 55.1, 58.6, 1519, 180 }, + [27] = { 55.3, 58.5, 1519, 180 }, + [28] = { 22.7, 52.5, 1519, 180 }, + [29] = { 22.9, 52.3, 1519, 180 }, + [30] = { 22.7, 52.1, 1519, 180 }, + [31] = { 68.9, 89.2, 1537, 180 }, + [32] = { 68.7, 89, 1537, 180 }, + [33] = { 34, 68, 1537, 180 }, + [34] = { 34, 66.5, 1537, 180 }, + [35] = { 34.1, 65.8, 1537, 180 }, + [36] = { 33.7, 65.3, 1537, 180 }, + [37] = { 33.4, 65, 1537, 180 }, + [38] = { 36.8, 59.4, 1537, 180 }, + [39] = { 36.9, 59, 1537, 180 }, + [40] = { 36.6, 58.6, 1537, 180 }, + [41] = { 39.8, 51.1, 1537, 180 }, + [42] = { 40, 51.1, 1537, 180 }, + [43] = { 39.9, 50.8, 1537, 180 }, + [44] = { 68.8, 20, 1537, 180 }, + [45] = { 68.6, 20, 1537, 180 }, + [46] = { 68.4, 19.9, 1537, 180 }, + [47] = { 68.4, 19.5, 1537, 180 }, + [48] = { 24.3, 10.5, 1537, 180 }, + [49] = { 24.6, 10.4, 1537, 180 }, + [50] = { 52.2, 69.5, 1637, 180 }, + [51] = { 52.1, 69.3, 1637, 180 }, + [52] = { 52.4, 69.3, 1637, 180 }, + [53] = { 52.2, 69.1, 1637, 180 }, + [54] = { 53.6, 66.7, 1637, 180 }, + [55] = { 53.5, 66.5, 1637, 180 }, + [56] = { 53.6, 66.3, 1637, 180 }, + [57] = { 53.4, 66.2, 1637, 180 }, + [58] = { 53.4, 65.8, 1637, 180 }, + [59] = { 43.3, 58.8, 1638, 180 }, + [60] = { 43.5, 58.8, 1638, 180 }, + [61] = { 43.3, 58.6, 1638, 180 }, + [62] = { 43.2, 54.9, 1638, 180 }, + [63] = { 53.7, 51.5, 1638, 180 }, + [64] = { 53.9, 51.3, 1638, 180 }, + [65] = { 53.9, 51.1, 1638, 180 }, + [66] = { 53.7, 51, 1638, 180 }, + [67] = { 78.5, 29.9, 1638, 180 }, + [68] = { 78.4, 29.7, 1638, 180 }, + [69] = { 78.7, 29.5, 1638, 180 }, + }, + }, + [178430] = { + ["coords"] = { + [1] = { 46.9, 53.1, 1, 180 }, + [2] = { 46.9, 53, 1, 180 }, + [3] = { 43.1, 65.1, 12, 180 }, + [4] = { 43, 65.1, 12, 180 }, + [5] = { 43.1, 65, 12, 180 }, + [6] = { 43, 65, 12, 180 }, + [7] = { 51.8, 42.6, 14, 180 }, + [8] = { 51.9, 42.6, 14, 180 }, + [9] = { 51.9, 42.5, 14, 180 }, + [10] = { 52, 42.5, 14, 180 }, + [11] = { 51.9, 42.4, 14, 180 }, + [12] = { 26.8, 73.5, 33, 180 }, + [13] = { 61.2, 51.9, 85, 180 }, + [14] = { 61.3, 51.8, 85, 180 }, + [15] = { 61.2, 51.7, 85, 180 }, + [16] = { 46.8, 60, 215, 180 }, + [17] = { 46.8, 59.9, 215, 180 }, + [18] = { 38.6, 28.8, 215, 180 }, + [19] = { 38.6, 28.7, 215, 180 }, + [20] = { 38.5, 28, 215, 180 }, + [21] = { 40.7, 27.4, 215, 180 }, + [22] = { 40.7, 27.3, 215, 180 }, + [23] = { 40.8, 27.3, 215, 180 }, + [24] = { 40.7, 27.2, 215, 180 }, + [25] = { 45.7, 22.9, 215, 180 }, + [26] = { 45.8, 22.9, 215, 180 }, + [27] = { 45.7, 22.8, 215, 180 }, + [28] = { 53.6, 28.5, 440, 180 }, + [29] = { 68.2, 36.3, 1497, 180 }, + [30] = { 56.9, 68.5, 1519, 180 }, + [31] = { 52.2, 66.2, 1519, 180 }, + [32] = { 54.7, 59, 1519, 180 }, + [33] = { 54.9, 58.9, 1519, 180 }, + [34] = { 55.1, 58.7, 1519, 180 }, + [35] = { 22.8, 52.4, 1519, 180 }, + [36] = { 22.6, 52.2, 1519, 180 }, + [37] = { 68.6, 89.3, 1537, 180 }, + [38] = { 68.5, 89.2, 1537, 180 }, + [39] = { 68.7, 88.9, 1537, 180 }, + [40] = { 33.9, 68.3, 1537, 180 }, + [41] = { 33.8, 68.3, 1537, 180 }, + [42] = { 34.1, 68.1, 1537, 180 }, + [43] = { 33.9, 67.5, 1537, 180 }, + [44] = { 34, 66.3, 1537, 180 }, + [45] = { 34.3, 65.8, 1537, 180 }, + [46] = { 34, 65.7, 1537, 180 }, + [47] = { 33.6, 65.4, 1537, 180 }, + [48] = { 34.3, 65.4, 1537, 180 }, + [49] = { 36.9, 59.3, 1537, 180 }, + [50] = { 36.8, 58.9, 1537, 180 }, + [51] = { 36.4, 58.8, 1537, 180 }, + [52] = { 39.8, 51.5, 1537, 180 }, + [53] = { 40.1, 51.3, 1537, 180 }, + [54] = { 40.1, 50.9, 1537, 180 }, + [55] = { 68.5, 20.1, 1537, 180 }, + [56] = { 68.2, 19.9, 1537, 180 }, + [57] = { 68.7, 19.8, 1537, 180 }, + [58] = { 68.5, 19.7, 1537, 180 }, + [59] = { 24.6, 10.7, 1537, 180 }, + [60] = { 24.4, 10.2, 1537, 180 }, + [61] = { 52.4, 69.6, 1637, 180 }, + [62] = { 52.3, 69.5, 1637, 180 }, + [63] = { 52.3, 69.1, 1637, 180 }, + [64] = { 53.6, 66.6, 1637, 180 }, + [65] = { 53.5, 66.4, 1637, 180 }, + [66] = { 53.5, 66.3, 1637, 180 }, + [67] = { 53.7, 66.3, 1637, 180 }, + [68] = { 53.3, 66.1, 1637, 180 }, + [69] = { 53.5, 65.8, 1637, 180 }, + [70] = { 53.4, 65.7, 1637, 180 }, + [71] = { 43.3, 58.9, 1638, 180 }, + [72] = { 43.5, 58.9, 1638, 180 }, + [73] = { 43.4, 58.5, 1638, 180 }, + [74] = { 42.9, 54.8, 1638, 180 }, + [75] = { 53.8, 51.7, 1638, 180 }, + [76] = { 53.7, 51.6, 1638, 180 }, + [77] = { 53.9, 51.3, 1638, 180 }, + [78] = { 53.8, 51.1, 1638, 180 }, + [79] = { 78.4, 29.8, 1638, 180 }, + [80] = { 78.6, 29.7, 1638, 180 }, + [81] = { 78.4, 29.5, 1638, 180 }, + }, + }, + [178431] = { + ["coords"] = { + [1] = { 46.9, 53.1, 1, 180 }, + [2] = { 46.9, 53, 1, 180 }, + [3] = { 46.9, 52.9, 1, 180 }, + [4] = { 43, 65.1, 12, 180 }, + [5] = { 43.2, 64.9, 12, 180 }, + [6] = { 43.1, 64.9, 12, 180 }, + [7] = { 51.9, 42.6, 14, 180 }, + [8] = { 51.9, 42.5, 14, 180 }, + [9] = { 61.1, 52.3, 85, 180 }, + [10] = { 61.2, 51.9, 85, 180 }, + [11] = { 61.3, 51.8, 85, 180 }, + [12] = { 61.2, 51.8, 85, 180 }, + [13] = { 46.8, 60, 215, 180 }, + [14] = { 46.8, 59.9, 215, 180 }, + [15] = { 38.6, 28.8, 215, 180 }, + [16] = { 38.6, 28.7, 215, 180 }, + [17] = { 38.5, 28, 215, 180 }, + [18] = { 40.7, 27.4, 215, 180 }, + [19] = { 40.8, 27.3, 215, 180 }, + [20] = { 40.7, 27.3, 215, 180 }, + [21] = { 40.7, 27.2, 215, 180 }, + [22] = { 45.8, 22.8, 215, 180 }, + [23] = { 53.6, 28.5, 440, 180 }, + [24] = { 53.6, 28.4, 440, 180 }, + [25] = { 68.3, 36.3, 1497, 180 }, + [26] = { 56.8, 68.5, 1519, 180 }, + [27] = { 52, 66.3, 1519, 180 }, + [28] = { 54.6, 59.1, 1519, 180 }, + [29] = { 55.1, 58.8, 1519, 180 }, + [30] = { 55.1, 58.7, 1519, 180 }, + [31] = { 55.4, 58.5, 1519, 180 }, + [32] = { 22.8, 52.5, 1519, 180 }, + [33] = { 22.7, 52.2, 1519, 180 }, + [34] = { 22.8, 52, 1519, 180 }, + [35] = { 68.7, 89.3, 1537, 180 }, + [36] = { 68.6, 89.3, 1537, 180 }, + [37] = { 69, 89, 1537, 180 }, + [38] = { 34, 68.2, 1537, 180 }, + [39] = { 33.8, 68.1, 1537, 180 }, + [40] = { 34, 67.2, 1537, 180 }, + [41] = { 34, 66.2, 1537, 180 }, + [42] = { 34.2, 66.1, 1537, 180 }, + [43] = { 33.8, 65.7, 1537, 180 }, + [44] = { 34.3, 65.6, 1537, 180 }, + [45] = { 34, 65.6, 1537, 180 }, + [46] = { 33.8, 65.4, 1537, 180 }, + [47] = { 33.4, 65.3, 1537, 180 }, + [48] = { 33.3, 65.2, 1537, 180 }, + [49] = { 36.8, 59.2, 1537, 180 }, + [50] = { 36.6, 59, 1537, 180 }, + [51] = { 36.8, 58.7, 1537, 180 }, + [52] = { 40.1, 51.3, 1537, 180 }, + [53] = { 39.7, 51.2, 1537, 180 }, + [54] = { 68.6, 20.2, 1537, 180 }, + [55] = { 68.5, 20, 1537, 180 }, + [56] = { 68.3, 19.7, 1537, 180 }, + [57] = { 68.5, 19.7, 1537, 180 }, + [58] = { 24.5, 10.8, 1537, 180 }, + [59] = { 24.5, 10.4, 1537, 180 }, + [60] = { 52.2, 69.7, 1637, 180 }, + [61] = { 52.2, 69.5, 1637, 180 }, + [62] = { 52.1, 69.5, 1637, 180 }, + [63] = { 52.3, 69.4, 1637, 180 }, + [64] = { 52.1, 69.2, 1637, 180 }, + [65] = { 52.2, 69.2, 1637, 180 }, + [66] = { 52.3, 69.1, 1637, 180 }, + [67] = { 53.7, 66.6, 1637, 180 }, + [68] = { 53.5, 66.2, 1637, 180 }, + [69] = { 53.5, 66.1, 1637, 180 }, + [70] = { 53.3, 66, 1637, 180 }, + [71] = { 53.5, 65.8, 1637, 180 }, + [72] = { 43.4, 58.9, 1638, 180 }, + [73] = { 43.2, 58.8, 1638, 180 }, + [74] = { 43.2, 58.6, 1638, 180 }, + [75] = { 43.4, 58.5, 1638, 180 }, + [76] = { 42.9, 55, 1638, 180 }, + [77] = { 43, 54.9, 1638, 180 }, + [78] = { 42.9, 54.7, 1638, 180 }, + [79] = { 53.9, 51.7, 1638, 180 }, + [80] = { 53.9, 51.5, 1638, 180 }, + [81] = { 54.1, 51.4, 1638, 180 }, + [82] = { 53.7, 51.3, 1638, 180 }, + [83] = { 53.8, 51.1, 1638, 180 }, + [84] = { 78.6, 29.5, 1638, 180 }, + }, + }, + [178432] = { + ["coords"] = { + [1] = { 46.9, 53.1, 1, 180 }, + [2] = { 46.9, 53, 1, 180 }, + [3] = { 43.1, 65, 12, 180 }, + [4] = { 43, 65, 12, 180 }, + [5] = { 43.2, 65, 12, 180 }, + [6] = { 51.9, 42.5, 14, 180 }, + [7] = { 51.9, 42.4, 14, 180 }, + [8] = { 61.1, 52.3, 85, 180 }, + [9] = { 61.3, 51.9, 85, 180 }, + [10] = { 61.2, 51.8, 85, 180 }, + [11] = { 46.8, 60, 215, 180 }, + [12] = { 46.8, 59.9, 215, 180 }, + [13] = { 38.6, 28.8, 215, 180 }, + [14] = { 38.5, 27.9, 215, 180 }, + [15] = { 40.8, 27.3, 215, 180 }, + [16] = { 40.7, 27.3, 215, 180 }, + [17] = { 45.8, 22.9, 215, 180 }, + [18] = { 53.6, 28.5, 440, 180 }, + [19] = { 53.6, 28.4, 440, 180 }, + [20] = { 68.2, 36.5, 1497, 180 }, + [21] = { 68.4, 36.1, 1497, 180 }, + [22] = { 56.8, 68.7, 1519, 180 }, + [23] = { 54.8, 59, 1519, 180 }, + [24] = { 55, 58.6, 1519, 180 }, + [25] = { 55.3, 58.6, 1519, 180 }, + [26] = { 22.9, 52.5, 1519, 180 }, + [27] = { 22.7, 52.3, 1519, 180 }, + [28] = { 22.8, 52.2, 1519, 180 }, + [29] = { 68.8, 89.3, 1537, 180 }, + [30] = { 69.1, 89.1, 1537, 180 }, + [31] = { 68.5, 89, 1537, 180 }, + [32] = { 33.9, 68.2, 1537, 180 }, + [33] = { 33.9, 66.3, 1537, 180 }, + [34] = { 34.2, 66, 1537, 180 }, + [35] = { 34.1, 65.6, 1537, 180 }, + [36] = { 33.6, 65.4, 1537, 180 }, + [37] = { 33.5, 64.9, 1537, 180 }, + [38] = { 37.1, 59.3, 1537, 180 }, + [39] = { 36.8, 59, 1537, 180 }, + [40] = { 36.5, 58.6, 1537, 180 }, + [41] = { 39.8, 51.3, 1537, 180 }, + [42] = { 39.9, 51, 1537, 180 }, + [43] = { 40.2, 51, 1537, 180 }, + [44] = { 68.3, 20, 1537, 180 }, + [45] = { 68.6, 19.8, 1537, 180 }, + [46] = { 68.6, 19.4, 1537, 180 }, + [47] = { 24.7, 10.8, 1537, 180 }, + [48] = { 24.4, 10.7, 1537, 180 }, + [49] = { 24.3, 10.2, 1537, 180 }, + [50] = { 52.3, 69.6, 1637, 180 }, + [51] = { 52.1, 69.4, 1637, 180 }, + [52] = { 52.4, 69.4, 1637, 180 }, + [53] = { 52.3, 69.3, 1637, 180 }, + [54] = { 53.7, 66.7, 1637, 180 }, + [55] = { 53.5, 66.5, 1637, 180 }, + [56] = { 53.6, 66.4, 1637, 180 }, + [57] = { 53.3, 66.1, 1637, 180 }, + [58] = { 53.3, 65.9, 1637, 180 }, + [59] = { 43.4, 58.8, 1638, 180 }, + [60] = { 43.3, 58.7, 1638, 180 }, + [61] = { 43.5, 58.6, 1638, 180 }, + [62] = { 43, 54.5, 1638, 180 }, + [63] = { 53.9, 51.6, 1638, 180 }, + [64] = { 53.7, 51.4, 1638, 180 }, + [65] = { 53.8, 51.2, 1638, 180 }, + [66] = { 78.6, 29.8, 1638, 180 }, + [67] = { 78.7, 29.6, 1638, 180 }, + [68] = { 78.5, 29.6, 1638, 180 }, + }, + }, + [178433] = { + ["coords"] = { + [1] = { 46.9, 53.1, 1, 180 }, + [2] = { 46.9, 53, 1, 180 }, + [3] = { 46.8, 53, 1, 180 }, + [4] = { 46.9, 52.9, 1, 180 }, + [5] = { 43, 65.1, 12, 180 }, + [6] = { 43, 65, 12, 180 }, + [7] = { 43.1, 65, 12, 180 }, + [8] = { 43.2, 65, 12, 180 }, + [9] = { 43.1, 64.9, 12, 180 }, + [10] = { 51.9, 42.6, 14, 180 }, + [11] = { 51.8, 42.6, 14, 180 }, + [12] = { 51.9, 42.5, 14, 180 }, + [13] = { 26.8, 73.5, 33, 180 }, + [14] = { 61.3, 51.9, 85, 180 }, + [15] = { 61.2, 51.8, 85, 180 }, + [16] = { 46.8, 59.9, 215, 180 }, + [17] = { 38.6, 28.8, 215, 180 }, + [18] = { 38.7, 28.8, 215, 180 }, + [19] = { 38.6, 28.7, 215, 180 }, + [20] = { 38.5, 28, 215, 180 }, + [21] = { 38.5, 27.9, 215, 180 }, + [22] = { 40.7, 27.3, 215, 180 }, + [23] = { 40.8, 27.3, 215, 180 }, + [24] = { 45.7, 22.9, 215, 180 }, + [25] = { 45.8, 22.9, 215, 180 }, + [26] = { 53.6, 28.5, 440, 180 }, + [27] = { 68.4, 36.3, 1497, 180 }, + [28] = { 56.8, 68.7, 1519, 180 }, + [29] = { 52.2, 66.4, 1519, 180 }, + [30] = { 54.6, 59, 1519, 180 }, + [31] = { 54.7, 58.9, 1519, 180 }, + [32] = { 55.3, 58.5, 1519, 180 }, + [33] = { 22.9, 52.3, 1519, 180 }, + [34] = { 22.6, 52.3, 1519, 180 }, + [35] = { 22.8, 52, 1519, 180 }, + [36] = { 68.6, 89.4, 1537, 180 }, + [37] = { 68.4, 89, 1537, 180 }, + [38] = { 68.7, 89, 1537, 180 }, + [39] = { 34.1, 68.2, 1537, 180 }, + [40] = { 33.8, 68, 1537, 180 }, + [41] = { 33.9, 66, 1537, 180 }, + [42] = { 34.4, 65.5, 1537, 180 }, + [43] = { 33.8, 65.5, 1537, 180 }, + [44] = { 34.1, 65.4, 1537, 180 }, + [45] = { 33.4, 65.4, 1537, 180 }, + [46] = { 36.9, 59.4, 1537, 180 }, + [47] = { 36.7, 58.9, 1537, 180 }, + [48] = { 36.6, 58.7, 1537, 180 }, + [49] = { 40, 51.6, 1537, 180 }, + [50] = { 39.7, 51.5, 1537, 180 }, + [51] = { 40.2, 51.1, 1537, 180 }, + [52] = { 39.7, 51, 1537, 180 }, + [53] = { 68.4, 20.2, 1537, 180 }, + [54] = { 68.7, 20, 1537, 180 }, + [55] = { 68.5, 20, 1537, 180 }, + [56] = { 68.5, 19.5, 1537, 180 }, + [57] = { 24.7, 10.6, 1537, 180 }, + [58] = { 24.5, 10.4, 1537, 180 }, + [59] = { 24.4, 10.4, 1537, 180 }, + [60] = { 52.2, 69.7, 1637, 180 }, + [61] = { 52.1, 69.6, 1637, 180 }, + [62] = { 52.4, 69.4, 1637, 180 }, + [63] = { 52.2, 69.3, 1637, 180 }, + [64] = { 53.5, 66.7, 1637, 180 }, + [65] = { 53.6, 66.5, 1637, 180 }, + [66] = { 53.4, 66, 1637, 180 }, + [67] = { 53.4, 65.7, 1637, 180 }, + [68] = { 43.2, 58.9, 1638, 180 }, + [69] = { 43.3, 58.7, 1638, 180 }, + [70] = { 43.5, 58.7, 1638, 180 }, + [71] = { 43.5, 58.4, 1638, 180 }, + [72] = { 42.9, 54.8, 1638, 180 }, + [73] = { 43, 54.6, 1638, 180 }, + [74] = { 53.8, 51.6, 1638, 180 }, + [75] = { 54, 51.2, 1638, 180 }, + [76] = { 53.7, 51.2, 1638, 180 }, + [77] = { 78.4, 29.9, 1638, 180 }, + [78] = { 78.5, 29.8, 1638, 180 }, + [79] = { 78.6, 29.7, 1638, 180 }, + }, + }, + [178434] = { + ["coords"] = { + [1] = { 47.3, 52.7, 1, 180 }, + [2] = { 47.6, 52.2, 1, 180 }, + [3] = { 53.1, 35.7, 1, 180 }, + [4] = { 9.3, 58.4, 11, 180 }, + [5] = { 43.7, 65.6, 12, 180 }, + [6] = { 43.6, 65.6, 12, 180 }, + [7] = { 43.5, 65.6, 12, 180 }, + [8] = { 50.1, 13.5, 14, 180 }, + [9] = { 26.7, 73.5, 33, 180 }, + [10] = { 61.1, 59.4, 85, 180 }, + [11] = { 61.6, 52.4, 85, 180 }, + [12] = { 61, 52.3, 85, 180 }, + [13] = { 39.3, 30.3, 215, 180 }, + [14] = { 39, 29.9, 215, 180 }, + [15] = { 39.4, 29, 215, 180 }, + [16] = { 39.5, 28.7, 215, 180 }, + [17] = { 53.6, 28, 440, 180 }, + [18] = { 67, 37.7, 1497, 180 }, + [19] = { 41, 89.9, 1519, 180 }, + [20] = { 41.5, 89.6, 1519, 180 }, + [21] = { 62.5, 61, 1519, 180 }, + [22] = { 52.5, 41.6, 1519, 180 }, + [23] = { 74.3, 36.9, 1519, 180 }, + [24] = { 74, 36.4, 1519, 180 }, + [25] = { 66.3, 19.9, 1519, 180 }, + [26] = { 65.9, 19.4, 1519, 180 }, + [27] = { 36.9, 59.9, 1537, 180 }, + [28] = { 17.9, 52.1, 1537, 180 }, + [29] = { 17.8, 50.9, 1537, 180 }, + [30] = { 46.6, 66.1, 1638, 180 }, + [31] = { 45.3, 64.2, 1638, 180 }, + [32] = { 47.2, 59.6, 1638, 180 }, + [33] = { 47.6, 58.1, 1638, 180 }, + }, + }, + [178435] = { + ["coords"] = { + [1] = { 47.3, 52.7, 1, 180 }, + [2] = { 47.6, 52.2, 1, 180 }, + [3] = { 53.1, 35.7, 1, 180 }, + [4] = { 9.3, 58.4, 11, 180 }, + [5] = { 43.6, 65.6, 12, 180 }, + [6] = { 43.5, 65.6, 12, 180 }, + [7] = { 50, 13.6, 14, 180 }, + [8] = { 26.7, 73.5, 33, 180 }, + [9] = { 61.1, 59.4, 85, 180 }, + [10] = { 61.6, 52.4, 85, 180 }, + [11] = { 39.1, 30.1, 215, 180 }, + [12] = { 39.1, 29.8, 215, 180 }, + [13] = { 39.5, 28.8, 215, 180 }, + [14] = { 53.6, 28, 440, 180 }, + [15] = { 67, 37.7, 1497, 180 }, + [16] = { 41.4, 89.7, 1519, 180 }, + [17] = { 62.4, 60.9, 1519, 180 }, + [18] = { 52.1, 41.9, 1519, 180 }, + [19] = { 74.4, 37.2, 1519, 180 }, + [20] = { 74, 36.5, 1519, 180 }, + [21] = { 66, 19.5, 1519, 180 }, + [22] = { 37, 60.1, 1537, 180 }, + [23] = { 36, 58.3, 1537, 180 }, + [24] = { 17.9, 52, 1537, 180 }, + [25] = { 17.9, 51.3, 1537, 180 }, + [26] = { 45.9, 65.5, 1638, 180 }, + [27] = { 46, 63.6, 1638, 180 }, + [28] = { 47.7, 59, 1638, 180 }, + }, + }, + [178436] = { + ["coords"] = { + [1] = { 47.2, 52.7, 1, 180 }, + [2] = { 47.6, 52.2, 1, 180 }, + [3] = { 43.6, 65.6, 12, 180 }, + [4] = { 43.5, 65.6, 12, 180 }, + [5] = { 61.6, 52.3, 85, 180 }, + [6] = { 39.2, 30.4, 215, 180 }, + [7] = { 39.4, 28.6, 215, 180 }, + [8] = { 66.9, 37.6, 1497, 180 }, + [9] = { 41, 89.9, 1519, 180 }, + [10] = { 41.3, 89.7, 1519, 180 }, + [11] = { 52.2, 41.9, 1519, 180 }, + [12] = { 74.3, 37.1, 1519, 180 }, + [13] = { 66.2, 19.9, 1519, 180 }, + [14] = { 36.1, 58.5, 1537, 180 }, + [15] = { 17.9, 51.8, 1537, 180 }, + [16] = { 17.9, 51.1, 1537, 180 }, + [17] = { 46.2, 66.5, 1638, 180 }, + [18] = { 47.1, 57.7, 1638, 180 }, + }, + }, + [178437] = { + ["coords"] = { + [1] = { 43, 66.2, 12, 180 }, + [2] = { 60.7, 51.2, 85, 180 }, + [3] = { 60.9, 51.1, 85, 180 }, + [4] = { 60.6, 50.9, 85, 180 }, + [5] = { 60.7, 50.8, 85, 180 }, + [6] = { 48.4, 60.1, 215, 180 }, + [7] = { 49.1, 59.2, 215, 180 }, + [8] = { 48.2, 58.8, 215, 180 }, + [9] = { 38.9, 29.3, 215, 180 }, + [10] = { 41.6, 28.1, 215, 180 }, + [11] = { 37.3, 27.3, 215, 180 }, + [12] = { 41.7, 26.5, 215, 180 }, + [13] = { 38.6, 24.9, 215, 180 }, + [14] = { 65.9, 45.4, 1497, 180 }, + [15] = { 66.9, 44.2, 1497, 180 }, + [16] = { 65.1, 44.1, 1497, 180 }, + [17] = { 66, 42.8, 1497, 180 }, + [18] = { 58, 67.3, 1519, 180 }, + [19] = { 59.8, 65, 1519, 180 }, + [20] = { 54, 62.5, 1519, 180 }, + [21] = { 68.1, 48.4, 1519, 180 }, + [22] = { 68.6, 29.3, 1519, 180 }, + [23] = { 52.3, 13.5, 1519, 180 }, + [24] = { 66.3, 82.3, 1537, 180 }, + [25] = { 33.6, 63, 1537, 180 }, + [26] = { 28.1, 13, 1537, 180 }, + [27] = { 55.9, 65.7, 1637, 180 }, + [28] = { 54.2, 65.5, 1637, 180 }, + [29] = { 53.6, 63.6, 1637, 180 }, + [30] = { 57, 63.5, 1637, 180 }, + [31] = { 54.4, 61.3, 1637, 180 }, + [32] = { 56.3, 61.3, 1637, 180 }, + [33] = { 44.7, 61.4, 1638, 180 }, + [34] = { 58.1, 55.4, 1638, 180 }, + [35] = { 36.7, 51.2, 1638, 180 }, + [36] = { 58.3, 47.6, 1638, 180 }, + [37] = { 43.3, 39.4, 1638, 180 }, + }, + }, + [178438] = { + ["coords"] = { + [1] = { 46.7, 53.6, 1, 180 }, + [2] = { 47, 52.8, 1, 180 }, + [3] = { 47, 52.3, 1, 180 }, + [4] = { 46.9, 52.3, 1, 180 }, + [5] = { 45.9, 52.1, 1, 180 }, + [6] = { 46, 52.1, 1, 180 }, + [7] = { 47.2, 51.8, 1, 180 }, + [8] = { 46.9, 51.7, 1, 180 }, + [9] = { 46, 51.6, 1, 180 }, + [10] = { 45.9, 51.6, 1, 180 }, + [11] = { 43.8, 66.6, 12, 180 }, + [12] = { 43.5, 66.6, 12, 180 }, + [13] = { 43.2, 66.5, 12, 180 }, + [14] = { 43.9, 66.4, 12, 180 }, + [15] = { 44, 66.4, 12, 180 }, + [16] = { 43.9, 66.3, 12, 180 }, + [17] = { 44, 66.2, 12, 180 }, + [18] = { 43, 66.2, 12, 180 }, + [19] = { 41.3, 66.1, 12, 180 }, + [20] = { 41.8, 66.1, 12, 180 }, + [21] = { 44.5, 65.9, 12, 180 }, + [22] = { 43, 65.8, 12, 180 }, + [23] = { 41.2, 65.7, 12, 180 }, + [24] = { 41.9, 65.7, 12, 180 }, + [25] = { 42.9, 65.6, 12, 180 }, + [26] = { 44.4, 65.6, 12, 180 }, + [27] = { 43, 65.5, 12, 180 }, + [28] = { 43.4, 65.4, 12, 180 }, + [29] = { 43.3, 65.4, 12, 180 }, + [30] = { 41.8, 65.3, 12, 180 }, + [31] = { 53.9, 43.5, 14, 180 }, + [32] = { 53.5, 43, 14, 180 }, + [33] = { 54.7, 43, 14, 180 }, + [34] = { 53.2, 42.4, 14, 180 }, + [35] = { 53.3, 42.2, 14, 180 }, + [36] = { 51.2, 42.1, 14, 180 }, + [37] = { 51.1, 42.1, 14, 180 }, + [38] = { 53.4, 41.8, 14, 180 }, + [39] = { 53.5, 41.7, 14, 180 }, + [40] = { 51.1, 41.7, 14, 180 }, + [41] = { 54.4, 41.5, 14, 180 }, + [42] = { 53.9, 41.3, 14, 180 }, + [43] = { 51.7, 41, 14, 180 }, + [44] = { 47.3, 6.5, 14, 180 }, + [45] = { 60.4, 53, 85, 180 }, + [46] = { 61.4, 52.6, 85, 180 }, + [47] = { 62, 52.5, 85, 180 }, + [48] = { 60, 52.3, 85, 180 }, + [49] = { 61.5, 52, 85, 180 }, + [50] = { 60.5, 51, 85, 180 }, + [51] = { 61, 50.8, 85, 180 }, + [52] = { 60.7, 50.7, 85, 180 }, + [53] = { 60.8, 50.2, 85, 180 }, + [54] = { 47.5, 62.1, 215, 180 }, + [55] = { 46.9, 60.4, 215, 180 }, + [56] = { 47.8, 55.7, 215, 180 }, + [57] = { 65.2, 50.3, 1497, 180 }, + [58] = { 67, 50.2, 1497, 180 }, + [59] = { 64.9, 50.2, 1497, 180 }, + [60] = { 69.3, 47.8, 1497, 180 }, + [61] = { 62.6, 47.6, 1497, 180 }, + [62] = { 62.4, 47.3, 1497, 180 }, + [63] = { 70, 45.6, 1497, 180 }, + [64] = { 70.1, 45.1, 1497, 180 }, + [65] = { 61.8, 45, 1497, 180 }, + [66] = { 70.2, 43.1, 1497, 180 }, + [67] = { 62.4, 40.9, 1497, 180 }, + [68] = { 69.4, 40.5, 1497, 180 }, + [69] = { 63.5, 39.1, 1497, 180 }, + [70] = { 68.2, 38.8, 1497, 180 }, + [71] = { 63.8, 38.8, 1497, 180 }, + [72] = { 67.1, 38, 1497, 180 }, + [73] = { 65.2, 37.9, 1497, 180 }, + [74] = { 68.3, 35.6, 1497, 180 }, + [75] = { 40.6, 86.8, 1519, 180 }, + [76] = { 40.9, 86.7, 1519, 180 }, + [77] = { 29.7, 75, 1519, 180 }, + [78] = { 29.5, 74.8, 1519, 180 }, + [79] = { 29.4, 74.5, 1519, 180 }, + [80] = { 29, 73.7, 1519, 180 }, + [81] = { 28.9, 73.4, 1519, 180 }, + [82] = { 28.7, 73.1, 1519, 180 }, + [83] = { 56.8, 65.2, 1519, 180 }, + [84] = { 53.2, 64.4, 1519, 180 }, + [85] = { 53, 64, 1519, 180 }, + [86] = { 43.9, 63.9, 1519, 180 }, + [87] = { 56.4, 63.6, 1519, 180 }, + [88] = { 43.4, 62.7, 1519, 180 }, + [89] = { 58, 62.4, 1519, 180 }, + [90] = { 54.1, 62.4, 1519, 180 }, + [91] = { 54.4, 62.1, 1519, 180 }, + [92] = { 57.8, 62.1, 1519, 180 }, + [93] = { 55.2, 59.1, 1519, 180 }, + [94] = { 57.1, 58.8, 1519, 180 }, + [95] = { 54.9, 58.8, 1519, 180 }, + [96] = { 55, 58.5, 1519, 180 }, + [97] = { 56.4, 57.6, 1519, 180 }, + [98] = { 39.1, 77.6, 1537, 180 }, + [99] = { 38.6, 77.3, 1537, 180 }, + [100] = { 38.2, 77, 1537, 180 }, + [101] = { 37.7, 76.7, 1537, 180 }, + [102] = { 37.3, 76.5, 1537, 180 }, + [103] = { 36.9, 76.2, 1537, 180 }, + [104] = { 27.8, 74.2, 1537, 180 }, + [105] = { 27.5, 73.7, 1537, 180 }, + [106] = { 27.2, 73.1, 1537, 180 }, + [107] = { 26.9, 72.6, 1537, 180 }, + [108] = { 26.6, 72.1, 1537, 180 }, + [109] = { 26.3, 71.6, 1537, 180 }, + [110] = { 26.1, 71.1, 1537, 180 }, + [111] = { 25.8, 70.7, 1537, 180 }, + [112] = { 25.5, 70.2, 1537, 180 }, + [113] = { 25.2, 69.7, 1537, 180 }, + [114] = { 25, 69.2, 1537, 180 }, + [115] = { 34, 67.9, 1537, 180 }, + [116] = { 34.3, 67.5, 1537, 180 }, + [117] = { 33.6, 67.2, 1537, 180 }, + [118] = { 34.2, 67, 1537, 180 }, + [119] = { 21.3, 57.2, 1537, 180 }, + [120] = { 21.2, 56.5, 1537, 180 }, + [121] = { 21.1, 55.8, 1537, 180 }, + [122] = { 21, 55.1, 1537, 180 }, + [123] = { 59, 45.7, 1537, 180 }, + [124] = { 59, 45, 1537, 180 }, + [125] = { 59, 44.3, 1537, 180 }, + [126] = { 59, 43.6, 1537, 180 }, + [127] = { 52, 29.9, 1537, 180 }, + [128] = { 51.6, 29.8, 1537, 180 }, + [129] = { 51.2, 29.7, 1537, 180 }, + [130] = { 50.8, 29.6, 1537, 180 }, + [131] = { 50.3, 29.5, 1537, 180 }, + [132] = { 49.9, 29.4, 1537, 180 }, + [133] = { 49.5, 29.3, 1537, 180 }, + [134] = { 49.1, 29.2, 1537, 180 }, + [135] = { 21.8, 20.3, 1537, 180 }, + [136] = { 55.8, 74.3, 1637, 180 }, + [137] = { 55.1, 73.4, 1637, 180 }, + [138] = { 55.2, 72.4, 1637, 180 }, + [139] = { 55.3, 72, 1637, 180 }, + [140] = { 55.4, 71.4, 1637, 180 }, + [141] = { 50.4, 70.5, 1637, 180 }, + [142] = { 50.7, 69.9, 1637, 180 }, + [143] = { 54, 69.6, 1637, 180 }, + [144] = { 53.4, 67.9, 1637, 180 }, + [145] = { 53.6, 66.6, 1637, 180 }, + [146] = { 53.3, 66.5, 1637, 180 }, + [147] = { 53.7, 66.3, 1637, 180 }, + [148] = { 53.9, 65.3, 1637, 180 }, + [149] = { 56.8, 64.5, 1637, 180 }, + [150] = { 57.1, 63.9, 1637, 180 }, + [151] = { 52.1, 63.5, 1637, 180 }, + [152] = { 53.1, 63.3, 1637, 180 }, + [153] = { 57.1, 63, 1637, 180 }, + [154] = { 50.9, 62, 1637, 180 }, + [155] = { 54.1, 61.9, 1637, 180 }, + }, + }, + [178439] = { + ["coords"] = {}, + }, + [178442] = { + ["coords"] = { + [1] = { 51.7, 90.7, 2597, 25 }, + [2] = { 51.8, 90.6, 2597, 25 }, + [3] = { 51.7, 90.6, 2597, 25 }, + [4] = { 49.5, 83, 2597, 25 }, + [5] = { 49.5, 82.9, 2597, 25 }, + }, + }, + [178443] = { + ["coords"] = { + [1] = { 49.4, 82.7, 2597, 180 }, + [2] = { 43.4, 15.4, 2597, 180 }, + }, + }, + [178444] = { + ["coords"] = { + [1] = { 68.8, 72.1, 14, 900 }, + }, + }, + [178464] = { + ["coords"] = { + [1] = { 30.6, 28.9, 28, 900 }, + [2] = { 87.1, 43.2, 85, 900 }, + }, + }, + [178465] = { + ["coords"] = {}, + }, + [178484] = { + ["coords"] = {}, + }, + [178504] = { + ["coords"] = { + [1] = { 64.8, 41.4, 12, 900 }, + }, + }, + [178524] = { + ["coords"] = { + [1] = { 65.1, 23.9, 46, 7200 }, + }, + }, + [178525] = { + ["coords"] = { + [1] = { 85.1, 67.9, 46, 7200 }, + }, + }, + [178526] = { + ["coords"] = { + [1] = { 78.5, 67.2, 12, 900 }, + }, + }, + [178545] = { + ["coords"] = {}, + ["fac"] = "A", + }, + [178546] = { + ["coords"] = { + [1] = { 49.6, 48.4, 2597, 25 }, + }, + }, + [178547] = { + ["coords"] = {}, + }, + [178548] = { + ["coords"] = { + [1] = { 48.1, 46.8, 2597, 25 }, + }, + }, + [178549] = { + ["coords"] = {}, + }, + [178550] = { + ["coords"] = { + [1] = { 44.7, 45.7, 2597, 25 }, + }, + }, + [178551] = { + ["coords"] = { + [1] = { 43.8, 65.5, 12, 180 }, + [2] = { 53.9, 43.5, 14, 180 }, + [3] = { 54.4, 43.4, 14, 180 }, + [4] = { 53.6, 43.4, 14, 180 }, + [5] = { 53.4, 43, 14, 180 }, + [6] = { 53.2, 42.8, 14, 180 }, + [7] = { 54.8, 42.3, 14, 180 }, + [8] = { 51, 41.6, 14, 180 }, + [9] = { 53.7, 41.5, 14, 180 }, + [10] = { 51.6, 40.9, 14, 180 }, + [11] = { 60.2, 53.7, 85, 180 }, + [12] = { 60, 53.6, 85, 180 }, + [13] = { 60.4, 53.3, 85, 180 }, + [14] = { 61.6, 53, 85, 180 }, + [15] = { 61.8, 53, 85, 180 }, + [16] = { 60.2, 52.9, 85, 180 }, + [17] = { 62, 52.8, 85, 180 }, + [18] = { 61.5, 52.6, 85, 180 }, + [19] = { 60.1, 52.4, 85, 180 }, + [20] = { 61.1, 52.3, 85, 180 }, + [21] = { 61, 52.2, 85, 180 }, + [22] = { 59.3, 52.2, 85, 180 }, + [23] = { 59.5, 52.1, 85, 180 }, + [24] = { 62.1, 52.1, 85, 180 }, + [25] = { 61.5, 52, 85, 180 }, + [26] = { 62, 51.9, 85, 180 }, + [27] = { 60.9, 51.5, 85, 180 }, + [28] = { 61.7, 51.3, 85, 180 }, + [29] = { 60.5, 51.2, 85, 180 }, + [30] = { 60.9, 51, 85, 180 }, + [31] = { 61.4, 50.9, 85, 180 }, + [32] = { 60.6, 50.6, 85, 180 }, + [33] = { 60.4, 50.5, 85, 180 }, + [34] = { 61.2, 50.4, 85, 180 }, + [35] = { 61.1, 50.3, 85, 180 }, + [36] = { 66.7, 50.4, 1497, 180 }, + [37] = { 68.2, 49.4, 1497, 180 }, + [38] = { 63.7, 49.3, 1497, 180 }, + [39] = { 68.4, 49.1, 1497, 180 }, + [40] = { 63.4, 49.1, 1497, 180 }, + [41] = { 69.5, 47.4, 1497, 180 }, + [42] = { 61.8, 45.5, 1497, 180 }, + [43] = { 61.8, 43, 1497, 180 }, + [44] = { 70.1, 42.7, 1497, 180 }, + [45] = { 61.9, 42.6, 1497, 180 }, + [46] = { 69.5, 40.9, 1497, 180 }, + [47] = { 62.6, 40.4, 1497, 180 }, + [48] = { 68.4, 39.1, 1497, 180 }, + [49] = { 68.2, 38.3, 1497, 180 }, + [50] = { 64.9, 38, 1497, 180 }, + [51] = { 67.3, 37.9, 1497, 180 }, + [52] = { 66.8, 37.8, 1497, 180 }, + [53] = { 68.7, 36.2, 1497, 180 }, + [54] = { 68, 35.8, 1497, 180 }, + [55] = { 68.6, 35.8, 1497, 180 }, + [56] = { 55.6, 74, 1637, 180 }, + [57] = { 55, 73.2, 1637, 180 }, + [58] = { 49.5, 71.1, 1637, 180 }, + [59] = { 55.6, 71, 1637, 180 }, + [60] = { 49, 71, 1637, 180 }, + [61] = { 48.2, 70, 1637, 180 }, + [62] = { 54.2, 69.9, 1637, 180 }, + [63] = { 50.9, 68.4, 1637, 180 }, + [64] = { 53.3, 68.2, 1637, 180 }, + [65] = { 53.5, 66.1, 1637, 180 }, + [66] = { 55.5, 65.9, 1637, 180 }, + [67] = { 54.5, 65.7, 1637, 180 }, + [68] = { 53.6, 65.3, 1637, 180 }, + [69] = { 57, 64.2, 1637, 180 }, + [70] = { 53.4, 64, 1637, 180 }, + [71] = { 51.5, 63.3, 1637, 180 }, + [72] = { 53.5, 63.2, 1637, 180 }, + [73] = { 57, 62.6, 1637, 180 }, + }, + }, + [178553] = { + ["coords"] = { + [1] = { 60.4, 52.6, 1377, 10 }, + }, + }, + [178554] = { + ["coords"] = { + [1] = { 46.9, 52.1, 1, 180 }, + [2] = { 43.2, 65.9, 12, 180 }, + [3] = { 51.8, 41.9, 14, 180 }, + [4] = { 46.8, 60.5, 215, 180 }, + [5] = { 39, 29.6, 215, 180 }, + [6] = { 41.7, 28.4, 215, 180 }, + [7] = { 37.2, 27, 215, 180 }, + [8] = { 41.8, 26.3, 215, 180 }, + [9] = { 66.9, 38.2, 1497, 180 }, + [10] = { 26, 72.3, 1537, 180 }, + [11] = { 34.1, 62.4, 1537, 180 }, + [12] = { 20.8, 56.2, 1537, 180 }, + [13] = { 54, 68.9, 1637, 180 }, + [14] = { 45.1, 62.6, 1638, 180 }, + [15] = { 58.5, 56.6, 1638, 180 }, + [16] = { 36.2, 50.2, 1638, 180 }, + [17] = { 58.9, 46.5, 1638, 180 }, + }, + }, + [178556] = { + ["coords"] = { + [1] = { 53.5, 34.8, 1, 180 }, + [2] = { 42, 33.5, 215, 180 }, + [3] = { 15.3, 85.7, 1537, 180 }, + [4] = { 38.6, 56.8, 1537, 180 }, + [5] = { 44.2, 50, 1537, 180 }, + [6] = { 60.1, 82, 1638, 180 }, + }, + }, + [178557] = { + ["coords"] = { + [1] = { 68.7, 89.1, 1537, 180 }, + [2] = { 39.9, 51.2, 1537, 180 }, + [3] = { 24.4, 10.5, 1537, 180 }, + }, + }, + [178558] = { + ["coords"] = { + [1] = { 46.9, 53, 1, 180 }, + }, + }, + [178559] = { + ["coords"] = {}, + }, + [178560] = { + ["coords"] = {}, + }, + [178561] = { + ["coords"] = {}, + }, + [178562] = { + ["coords"] = {}, + }, + [178563] = { + ["coords"] = {}, + }, + [178564] = { + ["coords"] = {}, + }, + [178565] = { + ["coords"] = {}, + }, + [178566] = { + ["coords"] = {}, + }, + [178567] = { + ["coords"] = {}, + }, + [178568] = { + ["coords"] = {}, + }, + [178569] = { + ["coords"] = {}, + }, + [178570] = { + ["coords"] = {}, + }, + [178571] = { + ["coords"] = { + [1] = { 41.2, 27.3, 215, 900 }, + [2] = { 55.9, 51.4, 1638, 900 }, + }, + }, + [178572] = { + ["coords"] = { + [1] = { 16.6, 63.3, 44, 7200 }, + }, + }, + [178573] = { + ["coords"] = { + [1] = { 76.5, 38.1, 44, 7200 }, + }, + }, + [178584] = { + ["coords"] = {}, + }, + [178604] = { + ["coords"] = {}, + }, + [178605] = { + ["coords"] = {}, + }, + [178606] = { + ["coords"] = {}, + }, + [178608] = { + ["coords"] = {}, + }, + [178609] = { + ["coords"] = { + [1] = { 36.6, 69.9, 36, 60 }, + [2] = { 39.5, 68.7, 36, 60 }, + [3] = { 42.7, 67.3, 36, 60 }, + [4] = { 40.3, 65.7, 36, 60 }, + [5] = { 44, 62.9, 36, 60 }, + [6] = { 40.3, 62.2, 36, 60 }, + [7] = { 39, 59.7, 36, 60 }, + [8] = { 46.3, 59.3, 36, 60 }, + [9] = { 37.1, 58.6, 36, 60 }, + [10] = { 39.5, 56.5, 36, 60 }, + [11] = { 37.5, 55.9, 36, 60 }, + [12] = { 40.1, 54.5, 36, 60 }, + [13] = { 48.5, 54.3, 36, 60 }, + [14] = { 31.3, 52.9, 36, 60 }, + [15] = { 40.6, 51.8, 36, 60 }, + [16] = { 35.5, 51.2, 36, 60 }, + [17] = { 33.3, 50.8, 36, 60 }, + [18] = { 40.9, 50.2, 36, 60 }, + [19] = { 44, 49.3, 36, 60 }, + [20] = { 35.4, 48.7, 36, 60 }, + [21] = { 46.2, 48, 36, 60 }, + [22] = { 32.5, 47.8, 36, 60 }, + [23] = { 40.9, 45.4, 36, 60 }, + [24] = { 47.9, 45.1, 36, 60 }, + [25] = { 54.4, 44.9, 36, 60 }, + [26] = { 48, 41.8, 36, 60 }, + [27] = { 38.8, 41.3, 36, 60 }, + [28] = { 51.1, 39.9, 36, 60 }, + [29] = { 40, 39.9, 36, 60 }, + [30] = { 36.2, 38.9, 36, 60 }, + [31] = { 42.2, 38.9, 36, 60 }, + [32] = { 44.1, 36.7, 36, 60 }, + [33] = { 37.7, 36.5, 36, 60 }, + [34] = { 46.1, 36.3, 36, 60 }, + [35] = { 46.1, 33.1, 36, 60 }, + [36] = { 40.9, 9.6, 267, 60 }, + [37] = { 43.4, 8.5, 267, 60 }, + [38] = { 46.3, 7.3, 267, 60 }, + [39] = { 44.1, 5.9, 267, 60 }, + [40] = { 47.4, 3.5, 267, 60 }, + [41] = { 44.1, 2.8, 267, 60 }, + [42] = { 43, 0.7, 267, 60 }, + }, + }, + [178644] = { + ["coords"] = {}, + }, + [178645] = { + ["coords"] = { + [1] = { 47.1, 52.8, 1, 180 }, + [2] = { 47, 52.5, 1, 180 }, + [3] = { 46.8, 52, 1, 180 }, + [4] = { 46, 51.8, 1, 180 }, + [5] = { 47, 51.7, 1, 180 }, + [6] = { 50, 49.9, 1, 180 }, + [7] = { 46, 48.6, 1, 180 }, + [8] = { 43.6, 66.6, 12, 180 }, + [9] = { 43.2, 66.5, 12, 180 }, + [10] = { 44.2, 66.2, 12, 180 }, + [11] = { 43.1, 66.1, 12, 180 }, + [12] = { 44.5, 65.9, 12, 180 }, + [13] = { 44.2, 65.5, 12, 180 }, + [14] = { 43.9, 65.5, 12, 180 }, + [15] = { 54.1, 43.6, 14, 180 }, + [16] = { 54.3, 43.5, 14, 180 }, + [17] = { 54.5, 43.3, 14, 180 }, + [18] = { 53.5, 43.2, 14, 180 }, + [19] = { 54, 43, 14, 180 }, + [20] = { 54.3, 42.9, 14, 180 }, + [21] = { 53.2, 42.6, 14, 180 }, + [22] = { 54.8, 42.5, 14, 180 }, + [23] = { 53.7, 42.3, 14, 180 }, + [24] = { 54.4, 42.2, 14, 180 }, + [25] = { 51.3, 42.2, 14, 180 }, + [26] = { 51.7, 42.2, 14, 180 }, + [27] = { 54.8, 42.1, 14, 180 }, + [28] = { 51.4, 41.9, 14, 180 }, + [29] = { 54.2, 41.9, 14, 180 }, + [30] = { 51.1, 41.9, 14, 180 }, + [31] = { 51.8, 41.9, 14, 180 }, + [32] = { 54.7, 41.8, 14, 180 }, + [33] = { 51.7, 41.8, 14, 180 }, + [34] = { 51.2, 41.6, 14, 180 }, + [35] = { 53.8, 41.4, 14, 180 }, + [36] = { 51.9, 41.4, 14, 180 }, + [37] = { 51, 41.4, 14, 180 }, + [38] = { 54.1, 41.3, 14, 180 }, + [39] = { 51.4, 41.3, 14, 180 }, + [40] = { 51.1, 41.2, 14, 180 }, + [41] = { 51.5, 40.9, 14, 180 }, + [42] = { 47.2, 6.5, 14, 180 }, + [43] = { 60.6, 51.3, 85, 180 }, + [44] = { 60.6, 50.9, 85, 180 }, + [45] = { 67.6, 36.8, 1497, 180 }, + [46] = { 41.1, 90, 1519, 180 }, + [47] = { 40.1, 87.2, 1519, 180 }, + [48] = { 60.7, 65.8, 1519, 180 }, + [49] = { 59.9, 64.9, 1519, 180 }, + [50] = { 56.8, 64.2, 1519, 180 }, + [51] = { 43.8, 63.1, 1519, 180 }, + [52] = { 56.6, 58.4, 1519, 180 }, + [53] = { 48.9, 54.1, 1519, 180 }, + [54] = { 39.4, 47.6, 1519, 180 }, + [55] = { 73.2, 43.4, 1519, 180 }, + [56] = { 65.3, 42.9, 1519, 180 }, + [57] = { 52.9, 42, 1519, 180 }, + [58] = { 69.7, 41.2, 1519, 180 }, + [59] = { 74.3, 36.8, 1519, 180 }, + [60] = { 57.8, 31.8, 1519, 180 }, + [61] = { 65.4, 21.6, 1519, 180 }, + [62] = { 66, 20.9, 1519, 180 }, + [63] = { 64.8, 20.5, 1519, 180 }, + [64] = { 65.4, 19.9, 1519, 180 }, + [65] = { 66.2, 19.7, 1519, 180 }, + [66] = { 42.1, 85.3, 1537, 180 }, + [67] = { 52.1, 84.7, 1537, 180 }, + [68] = { 54.5, 56.6, 1537, 180 }, + [69] = { 56.9, 52.8, 1537, 180 }, + [70] = { 25.1, 37.2, 1537, 180 }, + [71] = { 40.9, 35.7, 1537, 180 }, + [72] = { 41.8, 34.1, 1537, 180 }, + [73] = { 20.3, 23.1, 1537, 180 }, + [74] = { 21.2, 21.5, 1537, 180 }, + [75] = { 55.4, 74.1, 1637, 180 }, + [76] = { 55.3, 73.4, 1637, 180 }, + [77] = { 55.2, 72, 1637, 180 }, + [78] = { 55.6, 71.4, 1637, 180 }, + [79] = { 49.9, 70.8, 1637, 180 }, + [80] = { 48.6, 70.5, 1637, 180 }, + [81] = { 55, 69.6, 1637, 180 }, + [82] = { 50.8, 69.2, 1637, 180 }, + [83] = { 53.6, 69.1, 1637, 180 }, + [84] = { 53.5, 67.1, 1637, 180 }, + [85] = { 54.2, 66.5, 1637, 180 }, + [86] = { 54.4, 66, 1637, 180 }, + [87] = { 55, 65.8, 1637, 180 }, + [88] = { 56.5, 65.1, 1637, 180 }, + [89] = { 53.6, 64.7, 1637, 180 }, + [90] = { 53.4, 64.6, 1637, 180 }, + [91] = { 53.5, 62.7, 1637, 180 }, + [92] = { 51.2, 62.7, 1637, 180 }, + [93] = { 53.8, 62.6, 1637, 180 }, + [94] = { 56.7, 61.9, 1637, 180 }, + [95] = { 55.1, 61, 1637, 180 }, + [96] = { 55.9, 61, 1637, 180 }, + }, + }, + [178646] = { + ["coords"] = { + [1] = { 43.5, 15.8, 2597, 180 }, + [2] = { 43.4, 15.8, 2597, 180 }, + [3] = { 43.4, 15.7, 2597, 180 }, + [4] = { 43.3, 15.6, 2597, 180 }, + [5] = { 41.9, 13.3, 2597, 180 }, + [6] = { 42, 13.2, 2597, 180 }, + [7] = { 41.9, 13.2, 2597, 180 }, + }, + }, + [178647] = { + ["coords"] = { + [1] = { 46.8, 59.9, 215, 180 }, + [2] = { 68.3, 36.2, 1497, 180 }, + }, + }, + [178649] = { + ["coords"] = { + [1] = { 45.7, 51.8, 1, 180 }, + [2] = { 29.2, 74.1, 1519, 180 }, + [3] = { 39.4, 63.9, 1519, 180 }, + [4] = { 55.3, 58.5, 1519, 180 }, + [5] = { 48.8, 54, 1519, 180 }, + [6] = { 21, 53.2, 1537, 180 }, + }, + }, + [178664] = { + ["coords"] = {}, + ["fac"] = "H", + }, + [178665] = { + ["coords"] = {}, + ["fac"] = "A", + }, + [178666] = { + ["coords"] = { + [1] = { 34.1, 67.4, 1537, 180 }, + [2] = { 53.5, 66.3, 1637, 180 }, + }, + }, + [178667] = { + ["coords"] = { + [1] = { 53.2, 35.9, 1, 180 }, + [2] = { 9.1, 58.2, 11, 180 }, + [3] = { 50.1, 13.4, 14, 180 }, + [4] = { 26.8, 73.5, 33, 180 }, + [5] = { 61.2, 59.3, 85, 180 }, + [6] = { 53.6, 28.5, 440, 180 }, + [7] = { 30.4, 73.1, 1519, 180 }, + [8] = { 56.4, 71.2, 1519, 180 }, + [9] = { 56.8, 68.6, 1519, 180 }, + [10] = { 62.7, 61.3, 1519, 180 }, + [11] = { 65.2, 20.1, 1519, 180 }, + }, + }, + [178668] = { + ["coords"] = { + [1] = { 52.1, 66.3, 1519, 180 }, + }, + }, + [178669] = { + ["coords"] = { + [1] = { 55.1, 67.5, 1519, 180 }, + }, + }, + [178670] = { + ["coords"] = {}, + }, + [178671] = { + ["coords"] = { + [1] = { 33.2, 65.4, 1537, 180 }, + }, + }, + [178684] = { + ["coords"] = { + [1] = { 43.4, 15.4, 2597, 60 }, + }, + }, + [178685] = { + ["coords"] = { + [1] = { 43.4, 15.5, 2597, 60 }, + }, + }, + [178722] = { + ["coords"] = { + [1] = { 43.4, 15.4, 2597, 180 }, + }, + }, + [178724] = { + ["coords"] = {}, + }, + [178725] = { + ["coords"] = {}, + }, + [178726] = { + ["coords"] = {}, + }, + [178727] = { + ["coords"] = { + [1] = { 48.1, 46.9, 2597, 25 }, + }, + }, + [178728] = { + ["coords"] = { + [1] = { 49.6, 48.5, 2597, 25 }, + }, + }, + [178729] = { + ["coords"] = { + [1] = { 44.7, 45.6, 2597, 25 }, + }, + }, + [178745] = { + ["coords"] = { + [1] = { 54.7, 42.8, 14, 180 }, + [2] = { 53.8, 42.7, 14, 180 }, + [3] = { 54.4, 42.6, 14, 180 }, + [4] = { 51.5, 42.3, 14, 180 }, + [5] = { 53.4, 42, 14, 180 }, + [6] = { 53.9, 42, 14, 180 }, + [7] = { 51.9, 41.6, 14, 180 }, + [8] = { 54.3, 41.4, 14, 180 }, + [9] = { 51.6, 41.4, 14, 180 }, + [10] = { 51.8, 41.2, 14, 180 }, + [11] = { 51.3, 41, 14, 180 }, + [12] = { 59.6, 52.1, 85, 180 }, + [13] = { 61.1, 51.5, 85, 180 }, + [14] = { 60.7, 51.4, 85, 180 }, + [15] = { 60.8, 51.3, 85, 180 }, + [16] = { 61.3, 51.3, 85, 180 }, + [17] = { 60.7, 51.2, 85, 180 }, + [18] = { 60.9, 51.2, 85, 180 }, + [19] = { 60.9, 51.1, 85, 180 }, + [20] = { 60.4, 51, 85, 180 }, + [21] = { 60.8, 50.8, 85, 180 }, + [22] = { 60.5, 50.8, 85, 180 }, + [23] = { 60.9, 50.7, 85, 180 }, + [24] = { 61.4, 50.5, 85, 180 }, + [25] = { 61, 50.1, 85, 180 }, + [26] = { 66, 45.2, 1497, 180 }, + [27] = { 66.7, 44.1, 1497, 180 }, + [28] = { 65.2, 44.1, 1497, 180 }, + [29] = { 66, 42.9, 1497, 180 }, + [30] = { 68.5, 37.2, 1497, 180 }, + [31] = { 52.6, 63.4, 1637, 180 }, + }, + }, + [178746] = { + ["coords"] = { + [1] = { 53.2, 35.6, 1, 180 }, + [2] = { 9.2, 58.4, 11, 180 }, + [3] = { 50, 13.6, 14, 180 }, + [4] = { 26.6, 73.5, 33, 180 }, + [5] = { 61.2, 59.4, 85, 180 }, + [6] = { 38.7, 28.8, 215, 180 }, + [7] = { 53.5, 28, 440, 180 }, + [8] = { 68.1, 38.8, 1497, 180 }, + [9] = { 62.2, 60.6, 1519, 180 }, + [10] = { 55.1, 59.2, 1519, 180 }, + [11] = { 33.5, 67.5, 1537, 180 }, + [12] = { 53.3, 66.7, 1637, 180 }, + [13] = { 43.8, 59.1, 1638, 180 }, + }, + }, + [178764] = { + ["coords"] = { + [1] = { 32.1, 67.2, 1537, 180 }, + [2] = { 32.4, 67.1, 1537, 180 }, + [3] = { 32.8, 66.9, 1537, 180 }, + [4] = { 32, 66.8, 1537, 180 }, + [5] = { 33.1, 66.7, 1537, 180 }, + [6] = { 32.3, 66.6, 1537, 180 }, + [7] = { 31.9, 66.3, 1537, 180 }, + [8] = { 33, 66.2, 1537, 180 }, + [9] = { 32.5, 65.9, 1537, 180 }, + [10] = { 31.7, 65.8, 1537, 180 }, + [11] = { 32.8, 65.7, 1537, 180 }, + [12] = { 32.1, 65.6, 1537, 180 }, + [13] = { 32.4, 65.4, 1537, 180 }, + [14] = { 32.7, 65.2, 1537, 180 }, + [15] = { 33.1, 65, 1537, 180 }, + [16] = { 33.4, 64.8, 1537, 180 }, + }, + }, + [178765] = { + ["coords"] = { + [1] = { 32.7, 66.4, 1537, 180 }, + [2] = { 32.2, 66.1, 1537, 180 }, + }, + }, + [178784] = { + ["coords"] = { + [1] = { 46.6, 72.1, 2597, 60 }, + [2] = { 47, 72, 2597, 60 }, + [3] = { 43.4, 71.5, 2597, 60 }, + [4] = { 42.9, 70.9, 2597, 60 }, + [5] = { 44.5, 70.4, 2597, 60 }, + [6] = { 45.4, 70.3, 2597, 60 }, + [7] = { 42, 69, 2597, 60 }, + [8] = { 44.1, 68.7, 2597, 60 }, + [9] = { 44.8, 68.6, 2597, 60 }, + [10] = { 42.5, 68.5, 2597, 60 }, + [11] = { 43.5, 68.3, 2597, 60 }, + [12] = { 45.2, 67.5, 2597, 60 }, + }, + }, + [178785] = { + ["coords"] = { + [1] = { 52.8, 9.5, 2597, 60 }, + [2] = { 49.6, 9.2, 2597, 60 }, + [3] = { 52.7, 8.8, 2597, 60 }, + [4] = { 52.5, 8.2, 2597, 60 }, + [5] = { 52.6, 7.6, 2597, 60 }, + [6] = { 51.2, 7.6, 2597, 60 }, + [7] = { 52.5, 7, 2597, 60 }, + [8] = { 53.3, 6.6, 2597, 60 }, + [9] = { 52.8, 4.8, 2597, 60 }, + }, + }, + [178786] = { + ["coords"] = { + [1] = { 46.6, 72.1, 2597, 60 }, + [2] = { 47, 72, 2597, 60 }, + [3] = { 43.4, 71.5, 2597, 60 }, + [4] = { 42.9, 70.9, 2597, 60 }, + [5] = { 44.5, 70.4, 2597, 60 }, + [6] = { 45.4, 70.3, 2597, 60 }, + [7] = { 42, 69, 2597, 60 }, + [8] = { 44.1, 68.7, 2597, 60 }, + [9] = { 44.8, 68.6, 2597, 60 }, + [10] = { 42.5, 68.5, 2597, 60 }, + [11] = { 43.5, 68.3, 2597, 60 }, + [12] = { 45.2, 67.5, 2597, 60 }, + }, + ["fac"] = "H", + }, + [178787] = { + ["coords"] = { + [1] = { 46.6, 72.1, 2597, 60 }, + [2] = { 47, 72, 2597, 60 }, + [3] = { 43.4, 71.5, 2597, 60 }, + [4] = { 42.9, 70.9, 2597, 60 }, + [5] = { 44.5, 70.4, 2597, 60 }, + [6] = { 45.4, 70.3, 2597, 60 }, + [7] = { 42, 69, 2597, 60 }, + [8] = { 44.1, 68.7, 2597, 60 }, + [9] = { 44.8, 68.6, 2597, 60 }, + [10] = { 42.5, 68.5, 2597, 60 }, + [11] = { 43.5, 68.3, 2597, 60 }, + [12] = { 45.2, 67.5, 2597, 60 }, + }, + ["fac"] = "A", + }, + [178788] = { + ["coords"] = { + [1] = { 52.8, 9.5, 2597, 60 }, + [2] = { 49.6, 9.2, 2597, 60 }, + [3] = { 52.7, 8.8, 2597, 60 }, + [4] = { 52.5, 8.2, 2597, 60 }, + [5] = { 52.6, 7.6, 2597, 60 }, + [6] = { 51.2, 7.6, 2597, 60 }, + [7] = { 52.5, 7, 2597, 60 }, + [8] = { 53.3, 6.6, 2597, 60 }, + [9] = { 52.8, 4.8, 2597, 60 }, + }, + ["fac"] = "H", + }, + [178789] = { + ["coords"] = { + [1] = { 52.8, 9.5, 2597, 60 }, + [2] = { 49.6, 9.2, 2597, 60 }, + [3] = { 52.7, 8.8, 2597, 60 }, + [4] = { 52.5, 8.2, 2597, 60 }, + [5] = { 52.6, 7.6, 2597, 60 }, + [6] = { 51.2, 7.6, 2597, 60 }, + [7] = { 52.5, 7, 2597, 60 }, + [8] = { 53.3, 6.6, 2597, 60 }, + [9] = { 52.8, 4.8, 2597, 60 }, + }, + ["fac"] = "A", + }, + [178805] = { + ["coords"] = { + [1] = { 34.1, 66.1, 1537, 180 }, + }, + }, + [178806] = { + ["coords"] = {}, + }, + [178807] = { + ["coords"] = {}, + }, + [178808] = { + ["coords"] = {}, + }, + [178824] = { + ["coords"] = { + [1] = { 45.2, 88.6, 17, 900 }, + }, + ["fac"] = "AH", + }, + [178825] = { + ["coords"] = { + [1] = { 43.7, 90, 17, 900 }, + [2] = { 31.2, 17, 400, 900 }, + }, + ["fac"] = "AH", + }, + [178826] = { + ["coords"] = { + [1] = { 58, 44.5, 357, 900 }, + }, + ["fac"] = "AH", + }, + [178827] = { + ["coords"] = { + [1] = { 31.5, 62.4, 405, 900 }, + }, + ["fac"] = "AH", + }, + [178828] = { + ["coords"] = { + [1] = { 32.5, 97.5, 148, 900 }, + [2] = { 15.4, 15.6, 331, 900 }, + }, + ["fac"] = "AH", + }, + [178829] = { + ["coords"] = { + [1] = { 38.5, 20.7, 440, 900 }, + }, + ["fac"] = "AH", + }, + [178831] = { + ["coords"] = { + [1] = { 30.9, 16.6, 139, 900 }, + }, + ["fac"] = "AH", + }, + [178832] = { + ["coords"] = { + [1] = { 69.5, 74.5, 28, 1200 }, + }, + ["fac"] = "AH", + }, + [178833] = { + ["coords"] = { + [1] = { 49.1, 13.7, 3, 900 }, + [2] = { 47.3, 88.6, 38, 900 }, + }, + ["fac"] = "AH", + }, + [178834] = { + ["coords"] = { + [1] = { 41.6, 72.4, 40, 3600 }, + }, + ["fac"] = "AH", + }, + [178844] = { + ["coords"] = { + [1] = { 82.1, 39.2, 85, 900 }, + }, + ["fac"] = "AH", + }, + [178845] = { + ["coords"] = { + [1] = { 46.2, 68.4, 130, 7200 }, + }, + ["fac"] = "AH", + }, + [178864] = { + ["coords"] = { + [1] = { 73.6, 60.9, 331, 900 }, + }, + ["fac"] = "H", + }, + [178884] = { + ["coords"] = { + [1] = { 47, 35.6, 17, 900 }, + }, + ["fac"] = "AH", + }, + [178904] = { + ["coords"] = {}, + }, + [178905] = { + ["coords"] = {}, + }, + [178907] = { + ["coords"] = { + [1] = { 33.2, 65.7, 405, 180 }, + }, + }, + [178908] = { + ["coords"] = { + [1] = { 23.1, 70.3, 405, 900 }, + [2] = { 68.4, 8.8, 405, 900 }, + [3] = { 42.8, 83.8, 406, 900 }, + }, + }, + [178909] = { + ["coords"] = {}, + }, + [178910] = { + ["coords"] = {}, + }, + [178911] = { + ["coords"] = {}, + }, + [178924] = { + ["coords"] = { + [1] = { 32.7, 80.9, 1519, 180 }, + [2] = { 32.5, 80.8, 1519, 180 }, + }, + }, + [178925] = { + ["coords"] = { + [1] = { 52.5, 43.8, 2597, 0 }, + [2] = { 50.5, 31.2, 2597, 0 }, + [3] = { 43.9, 18.8, 2597, 0 }, + [4] = { 45.4, 14.6, 2597, 0 }, + }, + ["fac"] = "H", + }, + [178927] = { + ["coords"] = { + [1] = { 52.6, 43.9, 2597, 0 }, + [2] = { 50.7, 31, 2597, 0 }, + [3] = { 44.1, 18.7, 2597, 0 }, + [4] = { 45.3, 14.4, 2597, 0 }, + }, + }, + [178929] = { + ["coords"] = {}, + ["fac"] = "H", + }, + [178932] = { + ["coords"] = {}, + }, + [178934] = { + ["coords"] = {}, + }, + [178935] = { + ["coords"] = {}, + ["fac"] = "H", + }, + [178936] = { + ["coords"] = {}, + }, + [178940] = { + ["coords"] = { + [1] = { 49.5, 84.5, 2597, 0 }, + [2] = { 48.3, 84.4, 2597, 0 }, + [3] = { 50.6, 65.6, 2597, 0 }, + [4] = { 48.2, 58.7, 2597, 0 }, + }, + ["fac"] = "H", + }, + [178943] = { + ["coords"] = { + [1] = { 49.5, 84.5, 2597, 0 }, + [2] = { 48.3, 84.4, 2597, 0 }, + [3] = { 50.6, 65.6, 2597, 0 }, + [4] = { 48.2, 58.7, 2597, 0 }, + }, + ["fac"] = "A", + }, + [178944] = { + ["coords"] = {}, + }, + [178945] = { + ["coords"] = {}, + }, + [178946] = { + ["coords"] = {}, + }, + [178947] = { + ["coords"] = {}, + }, + [178948] = { + ["coords"] = {}, + }, + [178955] = { + ["coords"] = { + [1] = { 49.5, 84.5, 2597, 0 }, + [2] = { 48.3, 84.4, 2597, 0 }, + [3] = { 50.6, 65.6, 2597, 0 }, + [4] = { 48.2, 58.7, 2597, 0 }, + }, + }, + [178956] = { + ["coords"] = {}, + }, + [178957] = { + ["coords"] = {}, + }, + [178958] = { + ["coords"] = {}, + }, + [178963] = { + ["coords"] = {}, + }, + [178964] = { + ["coords"] = {}, + }, + [178965] = { + ["coords"] = {}, + }, + [178984] = { + ["coords"] = { + [1] = { 60.6, 58.4, 493, 900 }, + [2] = { 54.3, 55.7, 493, 900 }, + [3] = { 56.2, 53.6, 493, 900 }, + [4] = { 52.1, 53.6, 493, 900 }, + [5] = { 50, 50.5, 493, 900 }, + [6] = { 54.1, 50.2, 493, 900 }, + [7] = { 53, 48.4, 493, 900 }, + [8] = { 47.9, 46.9, 493, 900 }, + [9] = { 54.6, 46.5, 493, 900 }, + }, + }, + [179004] = { + ["coords"] = {}, + }, + [179005] = { + ["coords"] = {}, + }, + [179006] = { + ["coords"] = {}, + }, + [179007] = { + ["coords"] = {}, + }, + [179008] = { + ["coords"] = {}, + }, + [179024] = { + ["coords"] = { + [1] = { 41.9, 36.2, 2597, 0 }, + }, + }, + [179025] = { + ["coords"] = { + [1] = { 50.6, 93.4, 2597, 0 }, + }, + }, + [179044] = { + ["coords"] = { + [1] = { 44.2, 46.1, 2597, 60 }, + [2] = { 45.2, 45.5, 2597, 60 }, + [3] = { 44.3, 45.5, 2597, 60 }, + [4] = { 45.1, 45.2, 2597, 60 }, + }, + }, + [179064] = { + ["coords"] = { + [1] = { 44.2, 46.1, 2597, 60 }, + [2] = { 45.2, 45.6, 2597, 60 }, + [3] = { 44.3, 45.5, 2597, 60 }, + [4] = { 45.1, 45.2, 2597, 60 }, + }, + }, + [179065] = { + ["coords"] = { + [1] = { 49.6, 85, 2597, 0 }, + [2] = { 49.4, 84.9, 2597, 0 }, + [3] = { 49.3, 84.8, 2597, 0 }, + [4] = { 48.3, 84.8, 2597, 0 }, + [5] = { 48.5, 84.7, 2597, 0 }, + [6] = { 49.6, 84.6, 2597, 0 }, + [7] = { 49.2, 84.6, 2597, 0 }, + [8] = { 49.4, 84.6, 2597, 0 }, + [9] = { 48.5, 84.6, 2597, 0 }, + [10] = { 48.4, 84.6, 2597, 0 }, + [11] = { 49.5, 84.5, 2597, 0 }, + [12] = { 48.2, 84.5, 2597, 0 }, + [13] = { 49.4, 84.5, 2597, 0 }, + [14] = { 48.1, 84.4, 2597, 0 }, + [15] = { 48.4, 84.3, 2597, 0 }, + [16] = { 48.3, 84.3, 2597, 0 }, + [17] = { 48.7, 84.3, 2597, 0 }, + [18] = { 49.7, 84.2, 2597, 0 }, + [19] = { 49.4, 84.2, 2597, 0 }, + [20] = { 48.2, 84.1, 2597, 0 }, + [21] = { 50.7, 65.9, 2597, 0 }, + [22] = { 50.6, 65.8, 2597, 0 }, + [23] = { 50.4, 65.7, 2597, 0 }, + [24] = { 50.6, 65.6, 2597, 0 }, + [25] = { 50.3, 65.6, 2597, 0 }, + [26] = { 50.5, 65.5, 2597, 0 }, + [27] = { 50.7, 65.5, 2597, 0 }, + [28] = { 50.5, 65.3, 2597, 0 }, + [29] = { 50.4, 65.3, 2597, 0 }, + [30] = { 48.2, 59, 2597, 0 }, + [31] = { 48.3, 58.9, 2597, 0 }, + [32] = { 48, 58.8, 2597, 0 }, + [33] = { 48.4, 58.7, 2597, 0 }, + [34] = { 48.2, 58.7, 2597, 0 }, + [35] = { 48.1, 58.7, 2597, 0 }, + [36] = { 48.3, 58.5, 2597, 0 }, + [37] = { 46.5, 58.5, 2597, 0 }, + [38] = { 48.5, 58.5, 2597, 0 }, + [39] = { 48.2, 58.3, 2597, 0 }, + [40] = { 48.4, 58.2, 2597, 0 }, + [41] = { 46.8, 56.7, 2597, 0 }, + [42] = { 45.9, 56.6, 2597, 0 }, + [43] = { 46.6, 56.5, 2597, 0 }, + [44] = { 45.6, 56.2, 2597, 0 }, + [45] = { 52.5, 44.5, 2597, 0 }, + [46] = { 52.8, 44.2, 2597, 0 }, + [47] = { 52.4, 43.9, 2597, 0 }, + [48] = { 53.1, 43.9, 2597, 0 }, + [49] = { 52.4, 43.8, 2597, 0 }, + [50] = { 52.9, 43.7, 2597, 0 }, + [51] = { 52.5, 43.5, 2597, 0 }, + [52] = { 52.4, 43.5, 2597, 0 }, + [53] = { 53, 43.2, 2597, 0 }, + [54] = { 52.8, 43.1, 2597, 0 }, + [55] = { 48.9, 40.7, 2597, 0 }, + [56] = { 48.8, 40.7, 2597, 0 }, + [57] = { 48.3, 40.1, 2597, 0 }, + [58] = { 49.7, 38.6, 2597, 0 }, + [59] = { 49.3, 38.5, 2597, 0 }, + [60] = { 50.7, 31.5, 2597, 0 }, + [61] = { 51, 31.5, 2597, 0 }, + [62] = { 50.5, 31.3, 2597, 0 }, + [63] = { 50.3, 31.1, 2597, 0 }, + [64] = { 50.4, 31, 2597, 0 }, + [65] = { 50.9, 31, 2597, 0 }, + [66] = { 50.7, 30.6, 2597, 0 }, + [67] = { 50.9, 30.5, 2597, 0 }, + [68] = { 50.3, 30.5, 2597, 0 }, + [69] = { 50.5, 30.2, 2597, 0 }, + [70] = { 44.3, 19.2, 2597, 0 }, + [71] = { 43.9, 19, 2597, 0 }, + [72] = { 44.3, 18.7, 2597, 0 }, + [73] = { 43.7, 18.7, 2597, 0 }, + [74] = { 43.8, 18.5, 2597, 0 }, + [75] = { 44.1, 18.5, 2597, 0 }, + [76] = { 44.2, 18.2, 2597, 0 }, + [77] = { 44.3, 18.2, 2597, 0 }, + [78] = { 43.7, 18, 2597, 0 }, + [79] = { 44, 17.8, 2597, 0 }, + [80] = { 45, 15.2, 2597, 0 }, + [81] = { 44.8, 15, 2597, 0 }, + [82] = { 45.3, 14.9, 2597, 0 }, + [83] = { 45.4, 14.9, 2597, 0 }, + [84] = { 45.5, 14.5, 2597, 0 }, + [85] = { 45, 14.5, 2597, 0 }, + [86] = { 45.1, 14.3, 2597, 0 }, + [87] = { 45.5, 14.2, 2597, 0 }, + [88] = { 45.4, 13.9, 2597, 0 }, + }, + }, + [179066] = { + ["coords"] = { + [1] = { 46.7, 57, 2597, 0 }, + [2] = { 45.9, 56.8, 2597, 0 }, + [3] = { 46.1, 56.8, 2597, 0 }, + [4] = { 45.6, 56.2, 2597, 0 }, + [5] = { 45.5, 56.1, 2597, 0 }, + [6] = { 48.9, 40.7, 2597, 0 }, + [7] = { 49.3, 40.6, 2597, 0 }, + [8] = { 48.3, 40.1, 2597, 0 }, + [9] = { 49.7, 38.6, 2597, 0 }, + [10] = { 49.3, 38.5, 2597, 0 }, + }, + }, + [179084] = { + ["coords"] = { + [1] = { 59.6, 9.6, 15, 900 }, + [2] = { 66.4, 59, 17, 900 }, + }, + }, + [179085] = { + ["coords"] = { + [1] = { 63.1, 7.2, 15, 900 }, + [2] = { 68.2, 57.7, 17, 900 }, + }, + }, + [179086] = { + ["coords"] = { + [1] = { 62.9, 18.8, 15, 900 }, + }, + }, + [179104] = { + ["coords"] = {}, + }, + [179105] = { + ["coords"] = {}, + }, + [179106] = { + ["coords"] = {}, + }, + [179107] = { + ["coords"] = {}, + }, + [179108] = { + ["coords"] = {}, + }, + [179109] = { + ["coords"] = {}, + }, + [179110] = { + ["coords"] = {}, + }, + [179111] = { + ["coords"] = {}, + }, + [179112] = { + ["coords"] = {}, + }, + [179113] = { + ["coords"] = {}, + }, + [179114] = { + ["coords"] = {}, + }, + [179115] = { + ["coords"] = {}, + }, + [179116] = { + ["coords"] = {}, + }, + [179117] = { + ["coords"] = {}, + }, + [179118] = { + ["coords"] = {}, + }, + [179119] = { + ["coords"] = {}, + }, + [179120] = { + ["coords"] = {}, + }, + [179121] = { + ["coords"] = {}, + }, + [179122] = { + ["coords"] = {}, + }, + [179125] = { + ["coords"] = { + [1] = { 61.4, 37, 618, 900 }, + }, + }, + [179144] = { + ["coords"] = { + [1] = { 37.4, 49.5, 33, 900 }, + }, + }, + [179145] = { + ["coords"] = { + [1] = { 36.3, 24.7, 2597, 180 }, + }, + }, + [179146] = { + ["coords"] = { + [1] = { 35.5, 23.2, 2597, 180 }, + }, + }, + [179147] = { + ["coords"] = {}, + }, + [179148] = { + ["coords"] = {}, + }, + [179224] = { + ["coords"] = { + [1] = { 39.2, 47.3, 33, 900 }, + }, + }, + [179264] = { + ["coords"] = {}, + }, + [179284] = { + ["coords"] = {}, + }, + [179285] = { + ["coords"] = {}, + }, + [179286] = { + ["coords"] = { + [1] = { 49.3, 88.1, 2597, 0 }, + [2] = { 50.2, 76.7, 2597, 0 }, + [3] = { 51.4, 60.1, 2597, 0 }, + [4] = { 44.7, 45.6, 2597, 0 }, + [5] = { 51.6, 35.7, 2597, 0 }, + [6] = { 42.8, 15.8, 2597, 0 }, + [7] = { 49, 14.7, 2597, 0 }, + }, + ["fac"] = "H", + }, + [179287] = { + ["coords"] = { + [1] = { 49.3, 88.1, 2597, 0 }, + [2] = { 50.2, 76.7, 2597, 0 }, + [3] = { 51.4, 60.1, 2597, 0 }, + [4] = { 44.7, 45.6, 2597, 0 }, + [5] = { 51.6, 35.7, 2597, 0 }, + [6] = { 42.8, 15.8, 2597, 0 }, + [7] = { 49, 14.7, 2597, 0 }, + }, + ["fac"] = "A", + }, + [179304] = { + ["coords"] = {}, + ["fac"] = "H", + }, + [179305] = { + ["coords"] = {}, + ["fac"] = "A", + }, + [179306] = { + ["coords"] = {}, + ["fac"] = "H", + }, + [179307] = { + ["coords"] = {}, + ["fac"] = "A", + }, + [179308] = { + ["coords"] = {}, + ["fac"] = "H", + }, + [179310] = { + ["coords"] = {}, + ["fac"] = "A", + }, + [179324] = { + ["coords"] = { + [1] = { 52.2, 83.7, 2597, 150 }, + [2] = { 52.1, 81.7, 2597, 150 }, + [3] = { 52.1, 81.3, 2597, 150 }, + [4] = { 51.7, 80.3, 2597, 150 }, + [5] = { 51.7, 80, 2597, 150 }, + [6] = { 51.5, 79.9, 2597, 150 }, + [7] = { 51.2, 79.6, 2597, 150 }, + [8] = { 49.6, 79.4, 2597, 150 }, + [9] = { 51, 79.4, 2597, 150 }, + [10] = { 49.3, 79.3, 2597, 150 }, + [11] = { 49.2, 78.9, 2597, 150 }, + [12] = { 49.4, 78.8, 2597, 150 }, + [13] = { 49, 78.7, 2597, 150 }, + [14] = { 49.4, 78, 2597, 150 }, + [15] = { 49.1, 77.8, 2597, 150 }, + [16] = { 49.9, 75.3, 2597, 150 }, + [17] = { 49.6, 71.2, 2597, 150 }, + [18] = { 49.3, 69.8, 2597, 150 }, + [19] = { 50.7, 69.3, 2597, 150 }, + [20] = { 48.6, 69.3, 2597, 150 }, + [21] = { 50.4, 69.2, 2597, 150 }, + [22] = { 48.8, 68.9, 2597, 150 }, + [23] = { 49, 68.8, 2597, 150 }, + [24] = { 50.4, 68.6, 2597, 150 }, + [25] = { 48.5, 68.5, 2597, 150 }, + [26] = { 48.9, 68.4, 2597, 150 }, + [27] = { 49.3, 68.4, 2597, 150 }, + [28] = { 50.6, 68.3, 2597, 150 }, + [29] = { 49.8, 68.1, 2597, 150 }, + [30] = { 49.6, 68.1, 2597, 150 }, + [31] = { 48.9, 68.1, 2597, 150 }, + [32] = { 48.5, 68, 2597, 150 }, + [33] = { 49.4, 67.9, 2597, 150 }, + [34] = { 48.8, 67.8, 2597, 150 }, + [35] = { 50.3, 67.8, 2597, 150 }, + [36] = { 49.1, 67.6, 2597, 150 }, + [37] = { 48.3, 67.6, 2597, 150 }, + [38] = { 49.5, 67.5, 2597, 150 }, + [39] = { 49.7, 67.3, 2597, 150 }, + [40] = { 50, 67.3, 2597, 150 }, + [41] = { 48.3, 67.2, 2597, 150 }, + [42] = { 51.1, 67.1, 2597, 150 }, + [43] = { 48.5, 66.9, 2597, 150 }, + [44] = { 49.4, 66.9, 2597, 150 }, + [45] = { 50.7, 66.7, 2597, 150 }, + [46] = { 51.7, 66.7, 2597, 150 }, + [47] = { 51.2, 66.6, 2597, 150 }, + [48] = { 50.9, 66.5, 2597, 150 }, + [49] = { 49.1, 66.5, 2597, 150 }, + [50] = { 48.6, 66.4, 2597, 150 }, + [51] = { 48.3, 66.4, 2597, 150 }, + [52] = { 48.9, 66.4, 2597, 150 }, + [53] = { 49.5, 66.3, 2597, 150 }, + [54] = { 48.7, 66.3, 2597, 150 }, + [55] = { 48.4, 66.1, 2597, 150 }, + [56] = { 48.2, 66.1, 2597, 150 }, + [57] = { 49, 66.1, 2597, 150 }, + [58] = { 48, 66.1, 2597, 150 }, + [59] = { 51.6, 66.1, 2597, 150 }, + [60] = { 49.5, 66, 2597, 150 }, + [61] = { 51.4, 66, 2597, 150 }, + [62] = { 51.1, 66, 2597, 150 }, + [63] = { 48.6, 65.8, 2597, 150 }, + [64] = { 49.1, 65.8, 2597, 150 }, + [65] = { 51.5, 65.7, 2597, 150 }, + [66] = { 48.3, 65.7, 2597, 150 }, + [67] = { 48.8, 65.5, 2597, 150 }, + [68] = { 51.2, 65.3, 2597, 150 }, + [69] = { 49.2, 65, 2597, 150 }, + [70] = { 51, 64.9, 2597, 150 }, + [71] = { 49.1, 64.8, 2597, 150 }, + [72] = { 50.9, 64.5, 2597, 150 }, + [73] = { 49.3, 64.2, 2597, 150 }, + [74] = { 49.6, 64.1, 2597, 150 }, + [75] = { 49.5, 64.1, 2597, 150 }, + [76] = { 49.8, 63.9, 2597, 150 }, + [77] = { 49.9, 63.8, 2597, 150 }, + [78] = { 49.8, 63.6, 2597, 150 }, + [79] = { 49.6, 63.6, 2597, 150 }, + [80] = { 49.5, 63.5, 2597, 150 }, + [81] = { 49.9, 63.2, 2597, 150 }, + [82] = { 49.5, 63.2, 2597, 150 }, + [83] = { 50, 63.1, 2597, 150 }, + [84] = { 50.2, 63, 2597, 150 }, + [85] = { 49.7, 63, 2597, 150 }, + [86] = { 51.2, 63, 2597, 150 }, + [87] = { 51.1, 63, 2597, 150 }, + [88] = { 50, 62.8, 2597, 150 }, + [89] = { 51.2, 62.8, 2597, 150 }, + [90] = { 50.4, 62.7, 2597, 150 }, + [91] = { 51.3, 62.6, 2597, 150 }, + [92] = { 50.5, 62.6, 2597, 150 }, + [93] = { 51.4, 62.5, 2597, 150 }, + [94] = { 51.2, 62.5, 2597, 150 }, + [95] = { 50.1, 62.5, 2597, 150 }, + [96] = { 50.3, 62.4, 2597, 150 }, + [97] = { 51.3, 62.3, 2597, 150 }, + [98] = { 50.5, 62.2, 2597, 150 }, + [99] = { 50.2, 62.2, 2597, 150 }, + [100] = { 51.3, 62.1, 2597, 150 }, + [101] = { 50.3, 62.1, 2597, 150 }, + [102] = { 50.4, 62, 2597, 150 }, + [103] = { 50.6, 62, 2597, 150 }, + [104] = { 51.5, 62, 2597, 150 }, + [105] = { 50.2, 62, 2597, 150 }, + [106] = { 51.4, 61.9, 2597, 150 }, + [107] = { 51.6, 61.9, 2597, 150 }, + [108] = { 50.5, 61.8, 2597, 150 }, + [109] = { 51.5, 61.8, 2597, 150 }, + [110] = { 51.4, 61.7, 2597, 150 }, + [111] = { 51.6, 61.7, 2597, 150 }, + [112] = { 50.6, 61.6, 2597, 150 }, + [113] = { 51.7, 61.6, 2597, 150 }, + [114] = { 51.5, 61.6, 2597, 150 }, + [115] = { 50, 61.5, 2597, 150 }, + [116] = { 50.7, 61.4, 2597, 150 }, + [117] = { 50.4, 61.3, 2597, 150 }, + [118] = { 50.5, 61.3, 2597, 150 }, + [119] = { 50, 61.2, 2597, 150 }, + [120] = { 43.8, 59.7, 2597, 150 }, + [121] = { 45.8, 59.2, 2597, 150 }, + [122] = { 44.4, 59.2, 2597, 150 }, + [123] = { 46.4, 59, 2597, 150 }, + [124] = { 45.5, 59, 2597, 150 }, + [125] = { 43.4, 59, 2597, 150 }, + [126] = { 44.1, 58.7, 2597, 150 }, + [127] = { 44.3, 58.3, 2597, 150 }, + [128] = { 43.8, 58.2, 2597, 150 }, + [129] = { 43.3, 58.2, 2597, 150 }, + [130] = { 44.1, 58.2, 2597, 150 }, + [131] = { 43.3, 57.6, 2597, 150 }, + [132] = { 49, 57.5, 2597, 150 }, + [133] = { 49.1, 57.5, 2597, 150 }, + [134] = { 44.7, 57.4, 2597, 150 }, + [135] = { 44.4, 57.4, 2597, 150 }, + [136] = { 49.2, 57.3, 2597, 150 }, + [137] = { 44.1, 57.3, 2597, 150 }, + [138] = { 44.9, 57.2, 2597, 150 }, + [139] = { 49, 57.1, 2597, 150 }, + [140] = { 44.6, 57.1, 2597, 150 }, + [141] = { 44.3, 57.1, 2597, 150 }, + [142] = { 43.5, 57, 2597, 150 }, + [143] = { 49.1, 57, 2597, 150 }, + [144] = { 48.8, 56.9, 2597, 150 }, + [145] = { 43.9, 56.9, 2597, 150 }, + [146] = { 45.1, 56.8, 2597, 150 }, + [147] = { 50.8, 56.8, 2597, 150 }, + [148] = { 43.2, 56.6, 2597, 150 }, + [149] = { 43.5, 56.4, 2597, 150 }, + [150] = { 51.1, 56.3, 2597, 150 }, + [151] = { 50.3, 56, 2597, 150 }, + [152] = { 51.8, 55.7, 2597, 150 }, + [153] = { 50.1, 55.5, 2597, 150 }, + [154] = { 50.5, 55.3, 2597, 150 }, + [155] = { 49.5, 55, 2597, 150 }, + [156] = { 49.9, 54.8, 2597, 150 }, + [157] = { 50.1, 54.8, 2597, 150 }, + [158] = { 50.6, 54.8, 2597, 150 }, + [159] = { 51.6, 54.8, 2597, 150 }, + [160] = { 50.8, 54.1, 2597, 150 }, + [161] = { 50.5, 54, 2597, 150 }, + [162] = { 50.9, 53.7, 2597, 150 }, + [163] = { 51.4, 53.6, 2597, 150 }, + [164] = { 49.4, 53.5, 2597, 150 }, + [165] = { 49.8, 53.4, 2597, 150 }, + [166] = { 51.1, 53.3, 2597, 150 }, + [167] = { 48.6, 53.2, 2597, 150 }, + [168] = { 49.4, 53, 2597, 150 }, + [169] = { 50.7, 52.9, 2597, 150 }, + [170] = { 49.9, 52.8, 2597, 150 }, + [171] = { 50.3, 52.8, 2597, 150 }, + [172] = { 48.3, 52.8, 2597, 150 }, + [173] = { 50.9, 52.5, 2597, 150 }, + [174] = { 50.6, 52.5, 2597, 150 }, + [175] = { 50.2, 52.4, 2597, 150 }, + }, + ["fac"] = "H", + }, + [179325] = { + ["coords"] = { + [1] = { 52.4, 49.6, 2597, 150 }, + [2] = { 52.7, 49.5, 2597, 150 }, + [3] = { 52.4, 49.2, 2597, 150 }, + [4] = { 52.8, 48.9, 2597, 150 }, + [5] = { 53.1, 48.8, 2597, 150 }, + [6] = { 52.8, 48.3, 2597, 150 }, + [7] = { 53, 48.1, 2597, 150 }, + [8] = { 52.9, 47.7, 2597, 150 }, + [9] = { 52.8, 47, 2597, 150 }, + [10] = { 51.6, 47, 2597, 150 }, + [11] = { 50.9, 47, 2597, 150 }, + [12] = { 51.2, 47, 2597, 150 }, + [13] = { 50.7, 46.5, 2597, 150 }, + [14] = { 51.6, 46.5, 2597, 150 }, + [15] = { 51.1, 46.2, 2597, 150 }, + [16] = { 52.9, 46.1, 2597, 150 }, + [17] = { 51.4, 45.9, 2597, 150 }, + [18] = { 52.2, 45.9, 2597, 150 }, + [19] = { 51.3, 45.7, 2597, 150 }, + [20] = { 51.8, 45.5, 2597, 150 }, + [21] = { 53, 45.3, 2597, 150 }, + [22] = { 51.8, 45.1, 2597, 150 }, + [23] = { 52.9, 44.9, 2597, 150 }, + [24] = { 52, 44.9, 2597, 150 }, + [25] = { 53.1, 44.8, 2597, 150 }, + [26] = { 53.3, 44.4, 2597, 150 }, + [27] = { 51.8, 44, 2597, 150 }, + [28] = { 53.4, 43.9, 2597, 150 }, + [29] = { 53.3, 43.9, 2597, 150 }, + [30] = { 51.8, 43.6, 2597, 150 }, + [31] = { 53.3, 43.6, 2597, 150 }, + [32] = { 52, 43.5, 2597, 150 }, + [33] = { 52, 43, 2597, 150 }, + [34] = { 54.4, 42.9, 2597, 150 }, + [35] = { 54.3, 42.6, 2597, 150 }, + [36] = { 54.8, 42.1, 2597, 150 }, + [37] = { 55.2, 41.9, 2597, 150 }, + [38] = { 54, 41.8, 2597, 150 }, + [39] = { 54.2, 41.5, 2597, 150 }, + [40] = { 48.6, 41.4, 2597, 150 }, + [41] = { 54.2, 41.1, 2597, 150 }, + [42] = { 53.8, 40.9, 2597, 150 }, + [43] = { 54.4, 40.8, 2597, 150 }, + [44] = { 54.5, 40.5, 2597, 150 }, + [45] = { 54.1, 40, 2597, 150 }, + [46] = { 53.1, 38.7, 2597, 150 }, + [47] = { 51.5, 34.2, 2597, 150 }, + [48] = { 51.6, 34, 2597, 150 }, + [49] = { 50.7, 33.1, 2597, 150 }, + [50] = { 50.1, 32.9, 2597, 150 }, + [51] = { 50.3, 32.9, 2597, 150 }, + [52] = { 50.5, 32.8, 2597, 150 }, + [53] = { 50.4, 32.7, 2597, 150 }, + [54] = { 50.2, 32.7, 2597, 150 }, + [55] = { 50.8, 32.6, 2597, 150 }, + [56] = { 50, 32.5, 2597, 150 }, + [57] = { 50.5, 32.4, 2597, 150 }, + [58] = { 50.2, 32.4, 2597, 150 }, + [59] = { 52, 32.3, 2597, 150 }, + [60] = { 51, 32.3, 2597, 150 }, + [61] = { 50.7, 32.2, 2597, 150 }, + [62] = { 50.4, 32.2, 2597, 150 }, + [63] = { 52.2, 32.1, 2597, 150 }, + [64] = { 51.1, 31.9, 2597, 150 }, + [65] = { 50.3, 31.8, 2597, 150 }, + [66] = { 51.1, 31.7, 2597, 150 }, + [67] = { 52.5, 30.5, 2597, 150 }, + [68] = { 52.6, 30.1, 2597, 150 }, + [69] = { 52.7, 29.9, 2597, 150 }, + [70] = { 52.7, 29.1, 2597, 150 }, + [71] = { 50.4, 28.3, 2597, 150 }, + [72] = { 49.8, 28.1, 2597, 150 }, + [73] = { 50.5, 27.9, 2597, 150 }, + [74] = { 50.1, 27.9, 2597, 150 }, + [75] = { 52.8, 27.8, 2597, 150 }, + [76] = { 50.4, 27.5, 2597, 150 }, + [77] = { 53, 27.3, 2597, 150 }, + [78] = { 52.8, 27.3, 2597, 150 }, + [79] = { 52.9, 27, 2597, 150 }, + [80] = { 50, 26.9, 2597, 150 }, + [81] = { 53.4, 26.7, 2597, 150 }, + [82] = { 50.4, 26.2, 2597, 150 }, + [83] = { 52.7, 26.2, 2597, 150 }, + [84] = { 49.7, 26, 2597, 150 }, + [85] = { 53.3, 26, 2597, 150 }, + [86] = { 52.8, 25.7, 2597, 150 }, + [87] = { 49.4, 25.1, 2597, 150 }, + [88] = { 54, 24.7, 2597, 150 }, + [89] = { 53.8, 24.4, 2597, 150 }, + [90] = { 53.5, 24, 2597, 150 }, + [91] = { 49.3, 23.7, 2597, 150 }, + [92] = { 49.8, 23.6, 2597, 150 }, + [93] = { 54.8, 23.6, 2597, 150 }, + [94] = { 48.9, 23.4, 2597, 150 }, + [95] = { 50.1, 23.3, 2597, 150 }, + [96] = { 54.6, 22.9, 2597, 150 }, + [97] = { 49.1, 22.8, 2597, 150 }, + [98] = { 49.5, 22.6, 2597, 150 }, + [99] = { 54.3, 22.5, 2597, 150 }, + [100] = { 50, 22.3, 2597, 150 }, + [101] = { 54.1, 22.1, 2597, 150 }, + [102] = { 49.3, 21.7, 2597, 150 }, + [103] = { 49.1, 21.7, 2597, 150 }, + [104] = { 49, 20.8, 2597, 150 }, + [105] = { 48.8, 20.8, 2597, 150 }, + [106] = { 53, 20.7, 2597, 150 }, + [107] = { 42, 20.5, 2597, 150 }, + [108] = { 42.2, 20.1, 2597, 150 }, + [109] = { 53.9, 20.1, 2597, 150 }, + [110] = { 44.2, 19.7, 2597, 150 }, + [111] = { 43.8, 19.6, 2597, 150 }, + [112] = { 44.6, 19.5, 2597, 150 }, + [113] = { 46.8, 19.4, 2597, 150 }, + [114] = { 52.2, 19.4, 2597, 150 }, + [115] = { 41.8, 19.3, 2597, 150 }, + [116] = { 42.6, 19.3, 2597, 150 }, + [117] = { 43.5, 19.3, 2597, 150 }, + [118] = { 49.3, 19.3, 2597, 150 }, + [119] = { 43, 19.3, 2597, 150 }, + [120] = { 44.8, 19.3, 2597, 150 }, + [121] = { 41.7, 19.2, 2597, 150 }, + [122] = { 52.2, 19.2, 2597, 150 }, + [123] = { 46.8, 19.1, 2597, 150 }, + [124] = { 53.8, 19, 2597, 150 }, + [125] = { 46.7, 18.7, 2597, 150 }, + [126] = { 46.6, 18.5, 2597, 150 }, + [127] = { 54, 18.4, 2597, 150 }, + [128] = { 53.2, 18.1, 2597, 150 }, + [129] = { 53.7, 18.1, 2597, 150 }, + [130] = { 50.8, 18.1, 2597, 150 }, + [131] = { 46.7, 18, 2597, 150 }, + [132] = { 45, 17.8, 2597, 150 }, + [133] = { 46.8, 17.6, 2597, 150 }, + [134] = { 45.2, 17.6, 2597, 150 }, + [135] = { 46.6, 17.6, 2597, 150 }, + [136] = { 47, 17.3, 2597, 150 }, + [137] = { 47.5, 17.2, 2597, 150 }, + [138] = { 46.6, 16.9, 2597, 150 }, + [139] = { 53.6, 16.9, 2597, 150 }, + [140] = { 46.9, 16.9, 2597, 150 }, + [141] = { 47.4, 16.8, 2597, 150 }, + [142] = { 47.8, 16.7, 2597, 150 }, + [143] = { 47.2, 16.6, 2597, 150 }, + [144] = { 50.5, 16.4, 2597, 150 }, + [145] = { 53.2, 16.3, 2597, 150 }, + [146] = { 47.3, 16.2, 2597, 150 }, + [147] = { 50.5, 16.2, 2597, 150 }, + [148] = { 47.6, 16, 2597, 150 }, + [149] = { 46.4, 16, 2597, 150 }, + [150] = { 50.8, 15.8, 2597, 150 }, + [151] = { 53.1, 15.8, 2597, 150 }, + [152] = { 50.5, 15.7, 2597, 150 }, + [153] = { 47.2, 15.7, 2597, 150 }, + [154] = { 45.6, 15.5, 2597, 150 }, + [155] = { 46.7, 15, 2597, 150 }, + [156] = { 45.9, 14.9, 2597, 150 }, + [157] = { 45.8, 14.8, 2597, 150 }, + [158] = { 45.9, 14.6, 2597, 150 }, + [159] = { 47.3, 14.4, 2597, 150 }, + [160] = { 48, 14.4, 2597, 150 }, + [161] = { 45.9, 14.3, 2597, 150 }, + [162] = { 46.1, 14.3, 2597, 150 }, + [163] = { 46, 14.3, 2597, 150 }, + [164] = { 45.9, 14.1, 2597, 150 }, + [165] = { 51.6, 13.8, 2597, 150 }, + [166] = { 47.6, 13.7, 2597, 150 }, + [167] = { 45.5, 13.6, 2597, 150 }, + [168] = { 51.3, 13.6, 2597, 150 }, + [169] = { 45.2, 13.5, 2597, 150 }, + [170] = { 45.4, 13.4, 2597, 150 }, + [171] = { 51.3, 13.2, 2597, 150 }, + [172] = { 51.2, 12.8, 2597, 150 }, + [173] = { 51.6, 12.8, 2597, 150 }, + [174] = { 51.3, 12.1, 2597, 150 }, + [175] = { 51.4, 11.4, 2597, 150 }, + [176] = { 51.1, 11.3, 2597, 150 }, + [177] = { 51, 10.9, 2597, 150 }, + }, + ["fac"] = "A", + }, + [179344] = { + ["coords"] = { + [1] = { 22.8, 17, 490, 900 }, + [2] = { 81.8, 18.4, 1377, 900 }, + }, + }, + [179345] = { + ["coords"] = {}, + }, + [179364] = { + ["coords"] = {}, + }, + [179365] = { + ["coords"] = {}, + }, + [179384] = { + ["coords"] = { + [1] = { 52.5, 43.6, 2597, 60 }, + [2] = { 43.8, 18.6, 2597, 60 }, + }, + }, + [179385] = { + ["coords"] = { + [1] = { 52.4, 43.9, 2597, 60 }, + [2] = { 43.9, 18.9, 2597, 60 }, + }, + }, + [179386] = { + ["coords"] = { + [1] = { 52.9, 43.8, 2597, 60 }, + [2] = { 44.1, 18.3, 2597, 60 }, + }, + }, + [179387] = { + ["coords"] = { + [1] = { 52.4, 43.9, 2597, 60 }, + [2] = { 43.9, 18.9, 2597, 60 }, + }, + }, + [179388] = { + ["coords"] = { + [1] = { 52.9, 43.7, 2597, 60 }, + [2] = { 44.1, 18.2, 2597, 60 }, + }, + }, + [179389] = { + ["coords"] = { + [1] = { 52.9, 44.4, 2597, 60 }, + [2] = { 44.4, 18.8, 2597, 60 }, + }, + }, + [179390] = { + ["coords"] = { + [1] = { 52.5, 43.5, 2597, 60 }, + [2] = { 43.8, 18.5, 2597, 60 }, + }, + }, + [179391] = { + ["coords"] = { + [1] = { 52.7, 44.5, 2597, 60 }, + [2] = { 44.4, 19, 2597, 60 }, + }, + }, + [179392] = { + ["coords"] = { + [1] = { 52.8, 44.5, 2597, 60 }, + [2] = { 44.5, 18.9, 2597, 60 }, + }, + }, + [179393] = { + ["coords"] = { + [1] = { 52.7, 44.5, 2597, 60 }, + [2] = { 44.4, 19, 2597, 60 }, + }, + }, + [179394] = { + ["coords"] = { + [1] = { 52.8, 44.5, 2597, 60 }, + [2] = { 44.4, 18.9, 2597, 60 }, + }, + }, + [179395] = { + ["coords"] = { + [1] = { 52.8, 44.5, 2597, 60 }, + [2] = { 44.4, 18.9, 2597, 60 }, + }, + }, + [179396] = { + ["coords"] = { + [1] = { 52.9, 44.5, 2597, 60 }, + [2] = { 44.5, 18.8, 2597, 60 }, + }, + }, + [179397] = { + ["coords"] = { + [1] = { 52.8, 44.4, 2597, 60 }, + [2] = { 44.5, 18.8, 2597, 60 }, + }, + }, + [179419] = { + ["coords"] = { + [1] = { 49.6, 88.8, 2597, 60 }, + }, + }, + [179424] = { + ["coords"] = { + [1] = { 44.2, 46.1, 2597, 60 }, + [2] = { 45.2, 45.5, 2597, 60 }, + [3] = { 44.3, 45.5, 2597, 60 }, + [4] = { 45.1, 45.2, 2597, 60 }, + }, + }, + [179425] = { + ["coords"] = { + [1] = { 44.2, 46.1, 2597, 60 }, + [2] = { 45.2, 45.5, 2597, 60 }, + [3] = { 44.3, 45.5, 2597, 60 }, + [4] = { 45.1, 45.2, 2597, 60 }, + }, + }, + [179426] = { + ["coords"] = { + [1] = { 24.8, 23, 33, 0 }, + }, + }, + [179435] = { + ["coords"] = { + [1] = { 52.5, 43.8, 2597, 0 }, + [2] = { 50.5, 31.2, 2597, 0 }, + [3] = { 43.9, 18.8, 2597, 0 }, + [4] = { 45.4, 14.6, 2597, 0 }, + }, + ["fac"] = "A", + }, + [179436] = { + ["coords"] = { + [1] = { 52.6, 43.9, 2597, 0 }, + [2] = { 50.7, 31, 2597, 0 }, + [3] = { 44, 18.7, 2597, 0 }, + [4] = { 45.3, 14.4, 2597, 0 }, + }, + }, + [179437] = { + ["coords"] = { + [1] = { 43.3, 16.5, 2597, 60 }, + }, + ["fac"] = "A", + }, + [179438] = { + ["coords"] = { + [1] = { 50.8, 80.2, 2597, 60 }, + }, + ["fac"] = "H", + }, + [179439] = { + ["coords"] = {}, + ["fac"] = "A", + }, + [179440] = { + ["coords"] = {}, + }, + [179441] = { + ["coords"] = {}, + ["fac"] = "A", + }, + [179442] = { + ["coords"] = {}, + }, + [179443] = { + ["coords"] = {}, + ["fac"] = "A", + }, + [179444] = { + ["coords"] = {}, + }, + [179445] = { + ["coords"] = {}, + ["fac"] = "H", + }, + [179446] = { + ["coords"] = { + [1] = { 49.5, 84.5, 2597, 0 }, + [2] = { 48.3, 84.4, 2597, 0 }, + [3] = { 50.6, 65.6, 2597, 0 }, + [4] = { 48.2, 58.7, 2597, 0 }, + }, + }, + [179449] = { + ["coords"] = {}, + ["fac"] = "H", + }, + [179450] = { + ["coords"] = {}, + }, + [179453] = { + ["coords"] = {}, + ["fac"] = "H", + }, + [179454] = { + ["coords"] = {}, + }, + [179458] = { + ["coords"] = {}, + }, + [179465] = { + ["coords"] = {}, + ["fac"] = "H", + }, + [179466] = { + ["coords"] = {}, + ["fac"] = "H", + }, + [179467] = { + ["coords"] = {}, + }, + [179468] = { + ["coords"] = {}, + ["fac"] = "A", + }, + [179469] = { + ["coords"] = { + [1] = { 62, 30.1, 357, 900 }, + }, + }, + [179470] = { + ["coords"] = {}, + }, + [179471] = { + ["coords"] = {}, + ["fac"] = "H", + }, + [179472] = { + ["coords"] = {}, + ["fac"] = "A", + }, + [179473] = { + ["coords"] = {}, + ["fac"] = "A", + }, + [179481] = { + ["coords"] = {}, + }, + [179482] = { + ["coords"] = {}, + ["fac"] = "H", + }, + [179483] = { + ["coords"] = {}, + }, + [179484] = { + ["coords"] = {}, + ["fac"] = "A", + }, + [179485] = { + ["coords"] = {}, + }, + [179486] = { + ["coords"] = { + [1] = { 14.9, 42.2, 11, 300 }, + [2] = { 12.5, 41.7, 11, 300 }, + [3] = { 18.7, 41.3, 11, 300 }, + [4] = { 17, 40.4, 11, 300 }, + [5] = { 13.1, 40, 11, 300 }, + [6] = { 22.3, 39.8, 11, 300 }, + [7] = { 15.8, 39.6, 11, 300 }, + [8] = { 20.3, 39.4, 11, 300 }, + [9] = { 24.5, 39.3, 11, 300 }, + [10] = { 14.5, 39, 11, 300 }, + [11] = { 16.9, 38.3, 11, 300 }, + [12] = { 19, 37.7, 11, 300 }, + [13] = { 23, 37.3, 11, 300 }, + [14] = { 12.9, 37.2, 11, 300 }, + [15] = { 15.3, 36.7, 11, 300 }, + [16] = { 17.2, 36.2, 11, 300 }, + [17] = { 20.2, 36, 11, 300 }, + [18] = { 14.3, 35.9, 11, 300 }, + [19] = { 20.6, 35.4, 11, 300 }, + [20] = { 24.9, 35.4, 11, 300 }, + [21] = { 21.4, 34.3, 11, 300 }, + [22] = { 18, 34.2, 11, 300 }, + [23] = { 16.3, 33.9, 11, 300 }, + [24] = { 13.2, 33.7, 11, 300 }, + [25] = { 19.9, 32.7, 11, 300 }, + [26] = { 17.2, 32, 11, 300 }, + [27] = { 20.8, 31.9, 11, 300 }, + [28] = { 23.2, 31.9, 11, 300 }, + [29] = { 15.6, 31.4, 11, 300 }, + [30] = { 18.4, 31.3, 11, 300 }, + [31] = { 22, 31.2, 11, 300 }, + [32] = { 18.3, 29.7, 11, 300 }, + [33] = { 15.6, 29.2, 11, 300 }, + [34] = { 18.8, 18.6, 45, 300 }, + [35] = { 81.1, 46.9, 267, 300 }, + [36] = { 80.3, 46.8, 267, 300 }, + [37] = { 79.6, 46.4, 267, 300 }, + [38] = { 79, 46.4, 267, 300 }, + [39] = { 79.4, 46.1, 267, 300 }, + [40] = { 80.7, 46.1, 267, 300 }, + [41] = { 79, 46, 267, 300 }, + [42] = { 81.6, 45.9, 267, 300 }, + [43] = { 81.9, 45.5, 267, 300 }, + [44] = { 80.2, 45.3, 267, 300 }, + [45] = { 78.3, 44.6, 267, 300 }, + [46] = { 79, 44.5, 267, 300 }, + [47] = { 81.6, 44.5, 267, 300 }, + [48] = { 79.9, 44.5, 267, 300 }, + [49] = { 77.5, 44.3, 267, 300 }, + [50] = { 82.1, 44.3, 267, 300 }, + [51] = { 80.7, 44.1, 267, 300 }, + [52] = { 77.7, 43.7, 267, 300 }, + [53] = { 75.9, 43, 267, 300 }, + [54] = { 82.9, 42.6, 267, 300 }, + [55] = { 75.7, 42, 267, 300 }, + [56] = { 77, 42, 267, 300 }, + [57] = { 76, 41.8, 267, 300 }, + [58] = { 81.9, 41.7, 267, 300 }, + [59] = { 75.1, 41.6, 267, 300 }, + [60] = { 82.6, 41, 267, 300 }, + [61] = { 75, 41, 267, 300 }, + [62] = { 76, 41, 267, 300 }, + [63] = { 76.6, 40.7, 267, 300 }, + [64] = { 75.6, 40.1, 267, 300 }, + [65] = { 75.1, 40, 267, 300 }, + [66] = { 75.8, 39.9, 267, 300 }, + [67] = { 66.3, 58, 406, 300 }, + [68] = { 75.4, 57.2, 406, 300 }, + [69] = { 71.5, 56.8, 406, 300 }, + [70] = { 67.8, 56.6, 406, 300 }, + [71] = { 75.3, 56.2, 406, 300 }, + [72] = { 63.5, 55.9, 406, 300 }, + [73] = { 61.4, 55.6, 406, 300 }, + [74] = { 73.9, 55.2, 406, 300 }, + [75] = { 65.9, 55.1, 406, 300 }, + [76] = { 69.7, 54.8, 406, 300 }, + [77] = { 68.5, 54.7, 406, 300 }, + [78] = { 71.8, 54.5, 406, 300 }, + [79] = { 70.2, 54, 406, 300 }, + [80] = { 62.5, 53.9, 406, 300 }, + [81] = { 59.7, 53.5, 406, 300 }, + [82] = { 75, 53.2, 406, 300 }, + [83] = { 62.9, 53.2, 406, 300 }, + [84] = { 64.7, 52.8, 406, 300 }, + [85] = { 71.4, 52.6, 406, 300 }, + [86] = { 67.1, 52.6, 406, 300 }, + [87] = { 73.1, 52.1, 406, 300 }, + [88] = { 61.9, 51.5, 406, 300 }, + [89] = { 64.8, 51.3, 406, 300 }, + [90] = { 63.3, 51.2, 406, 300 }, + [91] = { 66.1, 50.9, 406, 300 }, + [92] = { 70.2, 50.6, 406, 300 }, + [93] = { 68.3, 50.6, 406, 300 }, + [94] = { 62.2, 50.5, 406, 300 }, + [95] = { 71.9, 49.5, 406, 300 }, + [96] = { 73.2, 49.1, 406, 300 }, + [97] = { 64.4, 49.1, 406, 300 }, + [98] = { 67.1, 48.8, 406, 300 }, + [99] = { 65.5, 48.8, 406, 300 }, + [100] = { 70.2, 48.7, 406, 300 }, + [101] = { 71, 48.3, 406, 300 }, + [102] = { 61.9, 48.1, 406, 300 }, + [103] = { 73.8, 47.8, 406, 300 }, + [104] = { 64, 47.7, 406, 300 }, + [105] = { 69.1, 47.7, 406, 300 }, + [106] = { 66.2, 47.5, 406, 300 }, + [107] = { 64.8, 46.6, 406, 300 }, + [108] = { 69, 46, 406, 300 }, + [109] = { 67.1, 45.6, 406, 300 }, + [110] = { 64.6, 45.1, 406, 300 }, + }, + }, + [179487] = { + ["coords"] = { + [1] = { 41.4, 66.4, 44, 300 }, + [2] = { 43.4, 64.5, 44, 300 }, + [3] = { 39.3, 64.4, 44, 300 }, + [4] = { 51.9, 64.4, 44, 300 }, + [5] = { 45.7, 63.6, 44, 300 }, + [6] = { 48.2, 62.8, 44, 300 }, + [7] = { 41.6, 62.7, 44, 300 }, + [8] = { 44.6, 62.4, 44, 300 }, + [9] = { 39.4, 61.9, 44, 300 }, + [10] = { 47.3, 61.4, 44, 300 }, + [11] = { 52.2, 61.3, 44, 300 }, + [12] = { 48.6, 60.6, 44, 300 }, + [13] = { 46.2, 60.6, 44, 300 }, + [14] = { 43.8, 60.5, 44, 300 }, + [15] = { 41.3, 60.3, 44, 300 }, + [16] = { 53.7, 59.5, 44, 300 }, + [17] = { 40, 59.2, 44, 300 }, + [18] = { 47.7, 59.2, 44, 300 }, + [19] = { 44.9, 59, 44, 300 }, + [20] = { 37.8, 58.9, 44, 300 }, + [21] = { 42.2, 58.2, 44, 300 }, + [22] = { 52, 57.6, 44, 300 }, + [23] = { 46.3, 57.3, 44, 300 }, + [24] = { 43.9, 56.9, 44, 300 }, + [25] = { 48.6, 56.1, 44, 300 }, + [26] = { 44.7, 56, 44, 300 }, + [27] = { 50.2, 55.1, 44, 300 }, + [28] = { 46.1, 54.9, 44, 300 }, + [29] = { 47.9, 54.3, 44, 300 }, + [30] = { 32.2, 98.9, 148, 300 }, + [31] = { 31.4, 98.1, 148, 300 }, + [32] = { 29.6, 97.7, 148, 300 }, + [33] = { 30.8, 97, 148, 300 }, + [34] = { 25.2, 96.3, 148, 300 }, + [35] = { 28.8, 95.6, 148, 300 }, + [36] = { 25.2, 94.8, 148, 300 }, + [37] = { 13.6, 30.9, 331, 300 }, + [38] = { 11.9, 30.1, 331, 300 }, + [39] = { 10.9, 30.1, 331, 300 }, + [40] = { 13, 29.6, 331, 300 }, + [41] = { 13.6, 29.5, 331, 300 }, + [42] = { 11.7, 29, 331, 300 }, + [43] = { 13.2, 28.7, 331, 300 }, + [44] = { 9.9, 28, 331, 300 }, + [45] = { 14.2, 27.5, 331, 300 }, + [46] = { 13.4, 27.1, 331, 300 }, + [47] = { 11.1, 27, 331, 300 }, + [48] = { 14.9, 26.2, 331, 300 }, + [49] = { 13.1, 26.2, 331, 300 }, + [50] = { 13.9, 25.7, 331, 300 }, + [51] = { 12.4, 25.5, 331, 300 }, + [52] = { 13.8, 24.7, 331, 300 }, + [53] = { 14.4, 23.1, 331, 300 }, + [54] = { 15.3, 22.1, 331, 300 }, + [55] = { 14.8, 20.2, 331, 300 }, + [56] = { 12.9, 20, 331, 300 }, + [57] = { 14, 19.9, 331, 300 }, + [58] = { 15.6, 19, 331, 300 }, + [59] = { 15.1, 17.1, 331, 300 }, + [60] = { 14.2, 16.2, 331, 300 }, + [61] = { 12.1, 15.7, 331, 300 }, + [62] = { 13.4, 15, 331, 300 }, + [63] = { 7.1, 14.2, 331, 300 }, + [64] = { 11.2, 13.4, 331, 300 }, + [65] = { 7.1, 12.5, 331, 300 }, + }, + }, + [179488] = { + ["coords"] = { + [1] = { 13.6, 41.5, 11, 300 }, + [2] = { 13.4, 41.3, 11, 300 }, + [3] = { 13.7, 41.1, 11, 300 }, + [4] = { 18.1, 39.7, 11, 300 }, + [5] = { 18.3, 39.4, 11, 300 }, + [6] = { 18.3, 39.3, 11, 300 }, + [7] = { 15.3, 38.9, 11, 300 }, + [8] = { 15.3, 38.5, 11, 300 }, + [9] = { 13.7, 38.2, 11, 300 }, + [10] = { 13.4, 38.1, 11, 300 }, + [11] = { 16.1, 36.2, 11, 300 }, + [12] = { 16.3, 35.7, 11, 300 }, + [13] = { 13.8, 34.8, 11, 300 }, + [14] = { 13.5, 34.7, 11, 300 }, + [15] = { 14.5, 32.8, 11, 300 }, + [16] = { 14.3, 32.8, 11, 300 }, + [17] = { 14, 32.7, 11, 300 }, + [18] = { 16.4, 30.8, 11, 300 }, + [19] = { 16.8, 30.6, 11, 300 }, + [20] = { 16.3, 30.5, 11, 300 }, + [21] = { 19.1, 20.2, 45, 300 }, + [22] = { 81.9, 47.7, 267, 300 }, + [23] = { 78.1, 46.7, 267, 300 }, + [24] = { 77, 46.3, 267, 300 }, + [25] = { 76.4, 44.3, 267, 300 }, + [26] = { 82.9, 44, 267, 300 }, + [27] = { 75.2, 43.8, 267, 300 }, + [28] = { 78.3, 43.5, 267, 300 }, + [29] = { 79.9, 41.6, 267, 300 }, + [30] = { 78.5, 41.3, 267, 300 }, + [31] = { 81.1, 41.2, 267, 300 }, + [32] = { 79.3, 41.2, 267, 300 }, + [33] = { 83.8, 40.5, 267, 300 }, + [34] = { 80.5, 40.5, 267, 300 }, + [35] = { 74.2, 40.5, 267, 300 }, + [36] = { 83.1, 40, 267, 300 }, + [37] = { 82, 39.4, 267, 300 }, + [38] = { 77.9, 39.1, 267, 300 }, + [39] = { 77.5, 39, 267, 300 }, + [40] = { 74.6, 38.7, 267, 300 }, + [41] = { 75.1, 37.7, 267, 300 }, + [42] = { 72.5, 63.1, 406, 300 }, + [43] = { 72.2, 61, 406, 300 }, + [44] = { 73.8, 60.2, 406, 300 }, + [45] = { 73.1, 60.1, 406, 300 }, + [46] = { 73.7, 60, 406, 300 }, + [47] = { 74.2, 59.5, 406, 300 }, + [48] = { 74, 59.4, 406, 300 }, + [49] = { 74.1, 59.2, 406, 300 }, + }, + }, + [179489] = { + ["coords"] = { + [1] = { 24.6, 99.4, 148, 300 }, + [2] = { 28.4, 99, 148, 300 }, + [3] = { 25.9, 98.9, 148, 300 }, + [4] = { 26.9, 98.6, 148, 300 }, + [5] = { 25.9, 97.8, 148, 300 }, + [6] = { 26.3, 96.9, 148, 300 }, + [7] = { 9.6, 30.2, 331, 300 }, + [8] = { 8, 30, 331, 300 }, + [9] = { 7.4, 28.6, 331, 300 }, + [10] = { 7.8, 24.8, 331, 300 }, + [11] = { 10.3, 23.1, 331, 300 }, + [12] = { 8.8, 21.8, 331, 300 }, + [13] = { 9.5, 20.8, 331, 300 }, + [14] = { 11.7, 20.5, 331, 300 }, + [15] = { 8.7, 19.5, 331, 300 }, + [16] = { 6.5, 17.6, 331, 300 }, + [17] = { 10.7, 17.3, 331, 300 }, + [18] = { 7.9, 17.1, 331, 300 }, + [19] = { 9, 16.8, 331, 300 }, + [20] = { 7.9, 15.9, 331, 300 }, + [21] = { 8.4, 14.8, 331, 300 }, + }, + }, + [179490] = { + ["coords"] = { + [1] = { 42.1, 31, 3, 300 }, + [2] = { 41.4, 30, 3, 300 }, + [3] = { 43.8, 29.7, 3, 300 }, + [4] = { 42.3, 29.6, 3, 300 }, + [5] = { 40.9, 29.4, 3, 300 }, + [6] = { 41.3, 29.3, 3, 300 }, + [7] = { 43.3, 28.8, 3, 300 }, + [8] = { 40.5, 28, 3, 300 }, + [9] = { 42, 27.7, 3, 300 }, + [10] = { 40.2, 27.5, 3, 300 }, + [11] = { 40.1, 27.5, 3, 300 }, + [12] = { 40.8, 27.4, 3, 300 }, + [13] = { 42.3, 27.3, 3, 300 }, + [14] = { 40.9, 26.8, 3, 300 }, + [15] = { 40.8, 26.4, 3, 300 }, + [16] = { 41.4, 26.2, 3, 300 }, + }, + }, + [179491] = { + ["coords"] = { + [1] = { 35, 26.2, 405, 300 }, + [2] = { 34.4, 25.1, 405, 300 }, + [3] = { 35.2, 24.4, 405, 300 }, + [4] = { 34.3, 23.3, 405, 300 }, + [5] = { 37.6, 22.9, 405, 300 }, + [6] = { 31.6, 22.5, 405, 300 }, + [7] = { 38.3, 22.2, 405, 300 }, + [8] = { 36.6, 22.1, 405, 300 }, + [9] = { 37.2, 22, 405, 300 }, + [10] = { 34.6, 21.9, 405, 300 }, + [11] = { 37.5, 21.3, 405, 300 }, + [12] = { 35.4, 20.8, 405, 300 }, + [13] = { 34, 20.7, 405, 300 }, + [14] = { 38.2, 20.3, 405, 300 }, + [15] = { 34.8, 20, 405, 300 }, + [16] = { 39.1, 19.9, 405, 300 }, + }, + }, + [179492] = { + ["coords"] = { + [1] = { 42.1, 29.4, 3, 300 }, + [2] = { 41.8, 29.3, 3, 300 }, + [3] = { 42.3, 28.9, 3, 300 }, + [4] = { 40.8, 28.7, 3, 300 }, + [5] = { 42.3, 28.4, 3, 300 }, + [6] = { 42.1, 28.2, 3, 300 }, + [7] = { 40.7, 28.1, 3, 300 }, + [8] = { 41.5, 28, 3, 300 }, + [9] = { 39.7, 27.7, 3, 300 }, + [10] = { 41.1, 27.4, 3, 300 }, + [11] = { 41.6, 27.2, 3, 300 }, + [12] = { 42.1, 27.2, 3, 300 }, + [13] = { 41.9, 26.8, 3, 300 }, + }, + }, + [179493] = { + ["coords"] = { + [1] = { 73.9, 62.3, 8, 300 }, + [2] = { 71.8, 61.6, 8, 300 }, + [3] = { 69.7, 61.2, 8, 300 }, + [4] = { 70.5, 60.8, 8, 300 }, + [5] = { 74.1, 60.7, 8, 300 }, + [6] = { 72.3, 59.9, 8, 300 }, + [7] = { 67.9, 58.9, 8, 300 }, + [8] = { 74.2, 58.5, 8, 300 }, + [9] = { 66.3, 58.4, 8, 300 }, + [10] = { 68.4, 58.3, 8, 300 }, + [11] = { 72.3, 57.3, 8, 300 }, + [12] = { 71, 57.3, 8, 300 }, + [13] = { 68.3, 57, 8, 300 }, + [14] = { 64.5, 56.3, 8, 300 }, + [15] = { 65.2, 56, 8, 300 }, + [16] = { 67.9, 55.9, 8, 300 }, + [17] = { 73.3, 55.3, 8, 300 }, + [18] = { 72.2, 55.1, 8, 300 }, + [19] = { 66.6, 53.5, 8, 300 }, + [20] = { 65.4, 51.7, 8, 300 }, + [21] = { 73.4, 51.1, 8, 300 }, + [22] = { 74.9, 51.1, 8, 300 }, + [23] = { 71.1, 50.4, 8, 300 }, + [24] = { 67.7, 48.9, 8, 300 }, + [25] = { 68.4, 48.8, 8, 300 }, + [26] = { 71.7, 48.2, 8, 300 }, + [27] = { 68.9, 48, 8, 300 }, + [28] = { 70, 45.9, 8, 300 }, + [29] = { 70.3, 45.6, 8, 300 }, + [30] = { 72.6, 45.4, 8, 300 }, + [31] = { 69.2, 44.6, 8, 300 }, + [32] = { 34.9, 17.3, 405, 300 }, + [33] = { 36.4, 17.2, 405, 300 }, + [34] = { 34.4, 17, 405, 300 }, + [35] = { 31.8, 16.2, 405, 300 }, + [36] = { 30, 15.8, 405, 300 }, + [37] = { 32.9, 14.3, 405, 300 }, + [38] = { 35.5, 14, 405, 300 }, + [39] = { 34.7, 12.6, 405, 300 }, + [40] = { 33, 10.3, 405, 300 }, + }, + }, + [179494] = { + ["coords"] = { + [1] = { 44.6, 54.1, 51, 300 }, + [2] = { 42.3, 54.1, 51, 300 }, + [3] = { 45.3, 53.9, 51, 300 }, + [4] = { 38.6, 53.2, 51, 300 }, + [5] = { 40.6, 52.8, 51, 300 }, + [6] = { 38.4, 50.8, 51, 300 }, + [7] = { 40.8, 50.8, 51, 300 }, + [8] = { 38, 45.9, 51, 300 }, + [9] = { 35.9, 45.2, 51, 300 }, + [10] = { 38.6, 44.3, 51, 300 }, + [11] = { 42.4, 44.1, 51, 300 }, + [12] = { 36.4, 43.6, 51, 300 }, + [13] = { 35, 42.8, 51, 300 }, + [14] = { 41.5, 42.6, 51, 300 }, + [15] = { 39.9, 42, 51, 300 }, + [16] = { 35.1, 41.3, 51, 300 }, + [17] = { 38, 40.9, 51, 300 }, + [18] = { 36.9, 39.9, 51, 300 }, + [19] = { 40.4, 38.2, 51, 300 }, + [20] = { 37.6, 37.4, 51, 300 }, + [21] = { 40.9, 37.4, 51, 300 }, + [22] = { 38.6, 36, 51, 300 }, + [23] = { 41.1, 32.8, 51, 300 }, + [24] = { 37.6, 31.2, 51, 300 }, + [25] = { 40.7, 31.2, 51, 300 }, + [26] = { 42.3, 29.5, 51, 300 }, + [27] = { 40.5, 27.7, 51, 300 }, + [28] = { 40, 26.1, 51, 300 }, + [29] = { 43.9, 25.6, 51, 300 }, + [30] = { 39.1, 24.4, 51, 300 }, + [31] = { 41.1, 22.4, 51, 300 }, + [32] = { 42.8, 22.1, 51, 300 }, + }, + }, + [179496] = { + ["coords"] = { + [1] = { 46.9, 43.8, 51, 300 }, + [2] = { 47.7, 43.8, 51, 300 }, + [3] = { 48.6, 43, 51, 300 }, + [4] = { 43.2, 36.7, 51, 300 }, + [5] = { 40.8, 36.6, 51, 300 }, + [6] = { 44.7, 35.8, 51, 300 }, + [7] = { 40.6, 35.1, 51, 300 }, + [8] = { 44, 34.7, 51, 300 }, + [9] = { 42.5, 32.8, 51, 300 }, + [10] = { 44, 32.7, 51, 300 }, + [11] = { 45.5, 31.2, 51, 300 }, + [12] = { 42.9, 31.2, 51, 300 }, + [13] = { 43.9, 30.9, 51, 300 }, + [14] = { 42.2, 30.7, 51, 300 }, + [15] = { 46.4, 29.3, 51, 300 }, + [16] = { 43.4, 28.7, 51, 300 }, + [17] = { 45.8, 28.3, 51, 300 }, + [18] = { 45.8, 26.3, 51, 300 }, + [19] = { 46.9, 25.7, 51, 300 }, + [20] = { 45.5, 25.4, 51, 300 }, + [21] = { 72.6, 48.7, 440, 300 }, + [22] = { 73.2, 48.6, 440, 300 }, + [23] = { 71.3, 48.4, 440, 300 }, + [24] = { 72.6, 48.2, 440, 300 }, + [25] = { 74.2, 48.1, 440, 300 }, + [26] = { 73.7, 48.1, 440, 300 }, + [27] = { 73, 48, 440, 300 }, + [28] = { 73.4, 48, 440, 300 }, + [29] = { 72.8, 47.7, 440, 300 }, + [30] = { 71.5, 47.5, 440, 300 }, + [31] = { 70.9, 47.4, 440, 300 }, + [32] = { 74.6, 47.3, 440, 300 }, + [33] = { 74, 47.3, 440, 300 }, + [34] = { 72.3, 47.1, 440, 300 }, + [35] = { 74.8, 47.1, 440, 300 }, + [36] = { 74.2, 47, 440, 300 }, + [37] = { 74.9, 46.7, 440, 300 }, + [38] = { 75.4, 46, 440, 300 }, + [39] = { 72.9, 45.9, 440, 300 }, + [40] = { 73.5, 45.6, 440, 300 }, + [41] = { 75.2, 45.6, 440, 300 }, + [42] = { 74.8, 45.5, 440, 300 }, + [43] = { 72.7, 45.4, 440, 300 }, + [44] = { 76.2, 45.3, 440, 300 }, + [45] = { 75.6, 45.1, 440, 300 }, + [46] = { 72.3, 44.4, 440, 300 }, + [47] = { 71.7, 43.9, 440, 300 }, + [48] = { 71, 43.3, 440, 300 }, + }, + }, + [179497] = { + ["coords"] = { + [1] = { 78.5, 85.7, 16, 300 }, + [2] = { 75.9, 78.4, 16, 300 }, + [3] = { 71.3, 74.4, 16, 300 }, + [4] = { 57.8, 73.5, 16, 300 }, + [5] = { 61.2, 71.1, 16, 300 }, + [6] = { 54.5, 68.1, 16, 300 }, + [7] = { 50.5, 64.8, 16, 300 }, + [8] = { 49.9, 63.5, 16, 300 }, + [9] = { 62.5, 62.8, 16, 300 }, + [10] = { 48, 61, 16, 300 }, + [11] = { 52.6, 59.5, 16, 300 }, + [12] = { 56.4, 58.2, 16, 300 }, + [13] = { 57.9, 56.7, 16, 300 }, + [14] = { 65.9, 54.5, 16, 300 }, + [15] = { 46.1, 54.3, 16, 300 }, + [16] = { 51.5, 53.7, 16, 300 }, + [17] = { 54.3, 52.4, 16, 300 }, + [18] = { 59.4, 51.6, 16, 300 }, + [19] = { 43.3, 51, 16, 300 }, + [20] = { 60.6, 50.8, 16, 300 }, + [21] = { 49.4, 50, 16, 300 }, + [22] = { 57.4, 48.4, 16, 300 }, + [23] = { 55.1, 48.3, 16, 300 }, + [24] = { 44.3, 47.3, 16, 300 }, + [25] = { 48.9, 46.6, 16, 300 }, + [26] = { 47.4, 46.2, 16, 300 }, + [27] = { 77.5, 45.6, 16, 300 }, + [28] = { 78, 44.9, 16, 300 }, + [29] = { 63.6, 43.3, 16, 300 }, + [30] = { 59.2, 43.1, 16, 300 }, + [31] = { 58.2, 42.9, 16, 300 }, + [32] = { 46.4, 42.4, 16, 300 }, + [33] = { 68.2, 42.2, 16, 300 }, + [34] = { 49.6, 41.7, 16, 300 }, + [35] = { 62.5, 41.6, 16, 300 }, + [36] = { 73.1, 40.9, 16, 300 }, + [37] = { 72.4, 40.6, 16, 300 }, + [38] = { 78.6, 39.1, 16, 300 }, + [39] = { 76.4, 35.7, 16, 300 }, + [40] = { 66, 32.7, 16, 300 }, + [41] = { 82.5, 30.7, 16, 300 }, + [42] = { 77.6, 30.6, 16, 300 }, + }, + }, + [179498] = { + ["coords"] = { + [1] = { 82.8, 87.7, 139, 300 }, + [2] = { 82.6, 87.1, 139, 300 }, + [3] = { 87.8, 86.8, 139, 300 }, + [4] = { 85.5, 86, 139, 300 }, + [5] = { 80.8, 85.7, 139, 300 }, + [6] = { 79.9, 85.3, 139, 300 }, + [7] = { 83.2, 85.2, 139, 300 }, + [8] = { 82.9, 84.6, 139, 300 }, + [9] = { 81.9, 84.5, 139, 300 }, + [10] = { 80.6, 84.4, 139, 300 }, + [11] = { 82.8, 84.4, 139, 300 }, + [12] = { 82.9, 83.5, 139, 300 }, + [13] = { 86.7, 83.2, 139, 300 }, + [14] = { 87.1, 81.3, 139, 300 }, + [15] = { 82.9, 81.1, 139, 300 }, + [16] = { 84.2, 81.1, 139, 300 }, + [17] = { 79, 81, 139, 300 }, + [18] = { 78.2, 80.9, 139, 300 }, + [19] = { 81.2, 80.3, 139, 300 }, + [20] = { 77.5, 80.1, 139, 300 }, + [21] = { 82, 80, 139, 300 }, + [22] = { 84.7, 79.7, 139, 300 }, + [23] = { 83.8, 79.3, 139, 300 }, + [24] = { 83.2, 78.5, 139, 300 }, + [25] = { 80.7, 78.3, 139, 300 }, + [26] = { 77.9, 76.3, 139, 300 }, + }, + }, + [179499] = { + ["coords"] = {}, + }, + [179500] = { + ["coords"] = { + [1] = { 63.5, 75.7, 51, 7200 }, + }, + }, + [179501] = { + ["coords"] = {}, + }, + [179502] = { + ["coords"] = {}, + }, + [179503] = { + ["coords"] = {}, + }, + [179504] = { + ["coords"] = {}, + }, + [179505] = { + ["coords"] = {}, + }, + [179506] = { + ["coords"] = {}, + }, + [179507] = { + ["coords"] = { + [1] = { 60.3, 31.4, 357, 900 }, + }, + }, + [179508] = { + ["coords"] = { + [1] = { 60.3, 30, 357, 900 }, + }, + }, + [179509] = { + ["coords"] = { + [1] = { 61.7, 25, 357, 900 }, + }, + }, + [179510] = { + ["coords"] = { + [1] = { 62.6, 25, 357, 900 }, + }, + }, + [179511] = { + ["coords"] = {}, + }, + [179512] = { + ["coords"] = {}, + }, + [179513] = { + ["coords"] = { + [1] = { 77.1, 36.8, 357, 900 }, + }, + }, + [179516] = { + ["coords"] = {}, + }, + [179517] = { + ["coords"] = {}, + }, + [179526] = { + ["coords"] = {}, + }, + [179527] = { + ["coords"] = {}, + }, + [179528] = { + ["coords"] = {}, + }, + [179530] = { + ["coords"] = {}, + }, + [179531] = { + ["coords"] = {}, + }, + [179532] = { + ["coords"] = {}, + }, + [179533] = { + ["coords"] = {}, + }, + [179544] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [179545] = { + ["coords"] = {}, + }, + [179547] = { + ["coords"] = {}, + }, + [179548] = { + ["coords"] = {}, + }, + [179549] = { + ["coords"] = {}, + }, + [179550] = { + ["coords"] = {}, + }, + [179551] = { + ["coords"] = { + [1] = { 79.2, 74.9, 16, 180 }, + }, + }, + [179552] = { + ["coords"] = {}, + }, + [179553] = { + ["coords"] = {}, + }, + [179554] = { + ["coords"] = { + [1] = { 69.1, 54.7, 8, 600 }, + }, + ["fac"] = "AH", + }, + [179555] = { + ["coords"] = { + [1] = { 24.3, 40.4, 1, 900 }, + }, + ["fac"] = "AH", + }, + [179556] = { + ["coords"] = { + [1] = { 46.3, 7.7, 14, 0 }, + [2] = { 52, 78.8, 1637, 0 }, + }, + }, + [179557] = { + ["coords"] = { + [1] = { 36, 77.4, 1637, 30 }, + [2] = { 48.1, 63.6, 1637, 30 }, + [3] = { 47.4, 50.2, 1637, 30 }, + [4] = { 59.7, 42, 1637, 30 }, + [5] = { 31.1, 37.9, 1637, 30 }, + [6] = { 42.7, 36.6, 1637, 30 }, + }, + ["fac"] = "H", + }, + [179558] = { + ["coords"] = { + [1] = { 61.5, 77.2, 1519, 0 }, + }, + }, + [179559] = { + ["coords"] = {}, + }, + [179560] = { + ["coords"] = { + [1] = { 38.3, 75.1, 1519, 30 }, + [2] = { 54.9, 58.2, 1519, 30 }, + [3] = { 25.1, 50.8, 1519, 30 }, + [4] = { 71.6, 47.6, 1519, 30 }, + [5] = { 46.3, 40.7, 1519, 30 }, + [6] = { 39.6, 27.2, 1519, 30 }, + [7] = { 56.6, 16.2, 1519, 30 }, + }, + ["fac"] = "A", + }, + [179561] = { + ["coords"] = {}, + }, + [179562] = { + ["coords"] = {}, + }, + [179563] = { + ["coords"] = {}, + }, + [179564] = { + ["coords"] = {}, + }, + [179565] = { + ["coords"] = { + [1] = { 63.2, 55.3, 1377, 0 }, + }, + }, + [179584] = { + ["coords"] = { + [1] = { 29.8, 28.7, 46, 7200 }, + }, + ["fac"] = "AH", + }, + [179585] = { + ["coords"] = { + [1] = { 32.8, 30.4, 46, 7200 }, + }, + ["fac"] = "AH", + }, + [179586] = { + ["coords"] = {}, + }, + [179587] = { + ["coords"] = {}, + }, + [179588] = { + ["coords"] = {}, + }, + [179595] = { + ["coords"] = { + [1] = { 43.4, 59.3, 1519, 900 }, + }, + ["fac"] = "AH", + }, + [179596] = { + ["coords"] = { + [1] = { 51.4, 48.7, 1637, 900 }, + }, + ["fac"] = "AH", + }, + [179597] = { + ["coords"] = {}, + }, + [179644] = { + ["coords"] = {}, + }, + [179664] = { + ["coords"] = { + [1] = { 81.6, 24.4, 16, 25 }, + [2] = { 75.3, 24, 16, 25 }, + [3] = { 78.7, 23.3, 16, 25 }, + [4] = { 81.8, 21.7, 16, 25 }, + [5] = { 76.4, 21.6, 16, 25 }, + [6] = { 79.5, 19.3, 16, 25 }, + [7] = { 81.7, 18.6, 16, 25 }, + [8] = { 75, 17.4, 16, 25 }, + }, + }, + [179665] = { + ["coords"] = { + [1] = { 51.4, 43.9, 618, 25 }, + [2] = { 53.9, 43.7, 618, 25 }, + [3] = { 54.7, 43.5, 618, 25 }, + [4] = { 51.5, 43, 618, 25 }, + [5] = { 53.8, 42.5, 618, 25 }, + [6] = { 52.5, 42.5, 618, 25 }, + [7] = { 51, 42.4, 618, 25 }, + [8] = { 55.6, 42.3, 618, 25 }, + [9] = { 52.9, 42.3, 618, 25 }, + [10] = { 55.4, 42, 618, 25 }, + [11] = { 54, 41.6, 618, 25 }, + [12] = { 54.9, 41.3, 618, 25 }, + [13] = { 53.5, 40.9, 618, 25 }, + [14] = { 53.2, 40.8, 618, 25 }, + }, + }, + [179666] = { + ["coords"] = { + [1] = { 50.5, 56, 490, 25 }, + [2] = { 54.6, 55.7, 490, 25 }, + [3] = { 46.7, 55.3, 490, 25 }, + [4] = { 44.4, 49.4, 490, 25 }, + [5] = { 56.3, 46.2, 490, 25 }, + [6] = { 47.8, 45, 490, 25 }, + [7] = { 52.1, 42.2, 490, 25 }, + }, + }, + [179667] = { + ["coords"] = { + [1] = { 58.1, 84.2, 357, 25 }, + [2] = { 18.1, 31.4, 1377, 25 }, + [3] = { 21.1, 29.6, 1377, 25 }, + [4] = { 19.1, 28.5, 1377, 25 }, + [5] = { 25.1, 28.3, 1377, 25 }, + [6] = { 23.2, 27.5, 1377, 25 }, + [7] = { 29.2, 27.3, 1377, 25 }, + [8] = { 21.5, 26.1, 1377, 25 }, + [9] = { 27.2, 26, 1377, 25 }, + [10] = { 16.7, 25.9, 1377, 25 }, + [11] = { 29.8, 23.6, 1377, 25 }, + [12] = { 18.2, 22.9, 1377, 25 }, + [13] = { 21, 22.6, 1377, 25 }, + [14] = { 29.8, 19.8, 1377, 25 }, + [15] = { 32.6, 16.4, 1377, 25 }, + [16] = { 30.1, 16, 1377, 25 }, + [17] = { 32.5, 13.3, 1377, 25 }, + }, + }, + [179668] = { + ["coords"] = {}, + }, + [179669] = { + ["coords"] = {}, + }, + [179670] = { + ["coords"] = {}, + }, + [179671] = { + ["coords"] = {}, + }, + [179672] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [179673] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [179674] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [179675] = { + ["coords"] = {}, + }, + [179676] = { + ["coords"] = { + [1] = { 45.3, 35.3, 361, 0 }, + }, + }, + [179677] = { + ["coords"] = { + [1] = { 45.3, 35.3, 361, 180 }, + }, + }, + [179681] = { + ["coords"] = {}, + }, + [179682] = { + ["coords"] = {}, + }, + [179688] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [179693] = { + ["coords"] = {}, + }, + [179694] = { + ["coords"] = {}, + }, + [179695] = { + ["coords"] = {}, + }, + [179696] = { + ["coords"] = {}, + }, + [179697] = { + ["coords"] = { + [1] = { 30.5, 47.8, 33, 0 }, + }, + }, + [179698] = { + ["coords"] = {}, + }, + [179699] = { + ["coords"] = {}, + }, + [179700] = { + ["coords"] = { + [1] = { 54.4, 8.9, 33, 180 }, + }, + }, + [179701] = { + ["coords"] = {}, + }, + [179703] = { + ["coords"] = {}, + }, + [179704] = { + ["coords"] = {}, + }, + [179706] = { + ["coords"] = {}, + }, + [179707] = { + ["coords"] = {}, + }, + [179708] = { + ["coords"] = {}, + }, + [179724] = { + ["coords"] = {}, + }, + [179725] = { + ["coords"] = { + [1] = { 64.4, 49.5, 1519, 900 }, + }, + }, + [179726] = { + ["coords"] = { + [1] = { 72.6, 50.4, 1519, 900 }, + }, + }, + [179727] = { + ["coords"] = { + [1] = { 71.7, 41.2, 1519, 900 }, + }, + }, + [179728] = { + ["coords"] = { + [1] = { 66.7, 44.4, 1519, 900 }, + }, + }, + [179729] = { + ["coords"] = { + [1] = { 72.6, 50.4, 1519, 900 }, + }, + }, + [179730] = { + ["coords"] = { + [1] = { 71.7, 41.2, 1519, 900 }, + }, + }, + [179731] = { + ["coords"] = { + [1] = { 66.7, 44.4, 1519, 900 }, + }, + }, + [179732] = { + ["coords"] = { + [1] = { 66.7, 44.5, 1519, 900 }, + }, + }, + [179733] = { + ["coords"] = { + [1] = { 71.7, 41.3, 1519, 900 }, + }, + }, + [179734] = { + ["coords"] = { + [1] = { 72.6, 50.4, 1519, 900 }, + }, + }, + [179735] = { + ["coords"] = { + [1] = { 72.5, 53.8, 1519, 900 }, + }, + }, + [179736] = { + ["coords"] = { + [1] = { 72.5, 52.6, 1519, 900 }, + }, + }, + [179737] = { + ["coords"] = { + [1] = { 74.3, 53.6, 1519, 900 }, + }, + }, + [179738] = { + ["coords"] = { + [1] = { 74.8, 52.2, 1519, 900 }, + }, + }, + [179739] = { + ["coords"] = { + [1] = { 43.5, 61.9, 1637, 900 }, + }, + }, + [179740] = { + ["coords"] = { + [1] = { 40.5, 64, 1637, 900 }, + }, + }, + [179741] = { + ["coords"] = { + [1] = { 40.6, 67.9, 1637, 900 }, + }, + }, + [179742] = { + ["coords"] = { + [1] = { 41.5, 68.2, 1637, 900 }, + }, + }, + [179743] = { + ["coords"] = { + [1] = { 64.4, 49.5, 1519, 900 }, + }, + }, + [179744] = { + ["coords"] = { + [1] = { 64.4, 49.5, 1519, 900 }, + }, + }, + [179745] = { + ["coords"] = {}, + }, + [179746] = { + ["coords"] = {}, + }, + [179747] = { + ["coords"] = { + [1] = { 21.4, 37.7, 139, 900 }, + [2] = { 19.7, 36.8, 139, 900 }, + [3] = { 22.3, 36.2, 139, 900 }, + [4] = { 18.5, 36.1, 139, 900 }, + [5] = { 18.4, 34.9, 139, 900 }, + [6] = { 21.7, 34.6, 139, 900 }, + [7] = { 18.2, 34.4, 139, 900 }, + [8] = { 17.2, 34.3, 139, 900 }, + [9] = { 18.6, 34.2, 139, 900 }, + [10] = { 15.1, 34.2, 139, 900 }, + [11] = { 15.4, 33.5, 139, 900 }, + [12] = { 20.5, 33.3, 139, 900 }, + [13] = { 14.4, 33, 139, 900 }, + [14] = { 21.7, 32.8, 139, 900 }, + [15] = { 18.2, 32.7, 139, 900 }, + [16] = { 17.9, 32.6, 139, 900 }, + [17] = { 17.5, 32.5, 139, 900 }, + [18] = { 22.5, 32.3, 139, 900 }, + [19] = { 19.6, 32.2, 139, 900 }, + [20] = { 14.7, 32.2, 139, 900 }, + [21] = { 13.9, 32.2, 139, 900 }, + [22] = { 17.7, 32.1, 139, 900 }, + [23] = { 22, 32.1, 139, 900 }, + [24] = { 15.5, 31.8, 139, 900 }, + [25] = { 17.6, 31.3, 139, 900 }, + [26] = { 17.5, 31.2, 139, 900 }, + [27] = { 17.9, 31.1, 139, 900 }, + [28] = { 14.6, 31, 139, 900 }, + [29] = { 17.8, 31, 139, 900 }, + [30] = { 16.5, 31, 139, 900 }, + [31] = { 16.6, 30.9, 139, 900 }, + [32] = { 16.7, 30.4, 139, 900 }, + [33] = { 18.1, 29.1, 139, 900 }, + [34] = { 17.4, 28.2, 139, 900 }, + [35] = { 16.4, 26.5, 139, 900 }, + }, + }, + [179748] = { + ["coords"] = { + [1] = { 80.8, 85.6, 139, 900 }, + }, + }, + [179749] = { + ["coords"] = { + [1] = { 81.1, 83.2, 139, 900 }, + }, + }, + [179750] = { + ["coords"] = { + [1] = { 81.4, 83.4, 139, 900 }, + }, + }, + [179751] = { + ["coords"] = { + [1] = { 81.3, 84.7, 139, 900 }, + }, + }, + [179752] = { + ["coords"] = { + [1] = { 80.5, 84.1, 139, 900 }, + }, + }, + [179753] = { + ["coords"] = { + [1] = { 80.8, 85.2, 139, 900 }, + }, + }, + [179754] = { + ["coords"] = { + [1] = { 80.2, 84.9, 139, 900 }, + }, + }, + [179755] = { + ["coords"] = { + [1] = { 81.1, 85.5, 139, 900 }, + }, + }, + [179756] = { + ["coords"] = { + [1] = { 80.5, 85, 139, 900 }, + }, + }, + [179757] = { + ["coords"] = { + [1] = { 80.8, 85.5, 139, 900 }, + }, + }, + [179758] = { + ["coords"] = { + [1] = { 80.3, 85.3, 139, 900 }, + }, + }, + [179759] = { + ["coords"] = { + [1] = { 80.3, 85.2, 139, 900 }, + }, + }, + [179760] = { + ["coords"] = { + [1] = { 80.4, 85.5, 139, 900 }, + }, + }, + [179761] = { + ["coords"] = { + [1] = { 80.5, 85.5, 139, 900 }, + }, + }, + [179762] = { + ["coords"] = { + [1] = { 80.6, 85.6, 139, 900 }, + }, + }, + [179763] = { + ["coords"] = { + [1] = { 80.6, 84.7, 139, 900 }, + }, + }, + [179764] = { + ["coords"] = { + [1] = { 80.6, 85.2, 139, 900 }, + }, + }, + [179765] = { + ["coords"] = { + [1] = { 80.5, 85.3, 139, 900 }, + }, + }, + [179766] = { + ["coords"] = { + [1] = { 80.9, 84.8, 139, 900 }, + }, + }, + [179767] = { + ["coords"] = { + [1] = { 42.3, 18.2, 28, 1200 }, + }, + }, + [179768] = { + ["coords"] = { + [1] = { 42.3, 18.4, 28, 1200 }, + }, + }, + [179769] = { + ["coords"] = { + [1] = { 42.3, 18.3, 28, 1200 }, + }, + }, + [179770] = { + ["coords"] = { + [1] = { 42.2, 18.7, 28, 1200 }, + }, + }, + [179771] = { + ["coords"] = { + [1] = { 42.5, 18.5, 28, 1200 }, + }, + }, + [179778] = { + ["coords"] = { + [1] = { 30, 44.3, 44, 7200 }, + }, + }, + [179779] = { + ["coords"] = { + [1] = { 29.2, 43.9, 44, 7200 }, + }, + }, + [179780] = { + ["coords"] = { + [1] = { 29.2, 44.8, 44, 7200 }, + }, + }, + [179781] = { + ["coords"] = { + [1] = { 29.8, 44.6, 44, 7200 }, + }, + }, + [179782] = { + ["coords"] = { + [1] = { 12.4, 31.7, 46, 7200 }, + }, + }, + [179784] = { + ["coords"] = {}, + }, + [179785] = { + ["coords"] = {}, + }, + [179786] = { + ["coords"] = {}, + }, + [179804] = { + ["coords"] = {}, + }, + [179826] = { + ["coords"] = { + [1] = { 40.4, 35.7, 51, 10 }, + }, + }, + [179827] = { + ["coords"] = { + [1] = { 37.6, 26.5, 51, 10 }, + }, + ["fac"] = "AH", + }, + [179828] = { + ["coords"] = { + [1] = { 44.4, 32.1, 51, 300 }, + [2] = { 44.6, 32.1, 51, 300 }, + [3] = { 44.8, 32, 51, 300 }, + [4] = { 45.1, 31.8, 51, 300 }, + [5] = { 45, 31.8, 51, 300 }, + [6] = { 45.3, 31.6, 51, 300 }, + [7] = { 45.4, 31.6, 51, 300 }, + [8] = { 45.8, 31.1, 51, 300 }, + [9] = { 45.9, 30.9, 51, 300 }, + [10] = { 45.9, 30.8, 51, 300 }, + [11] = { 44.2, 30.6, 51, 300 }, + [12] = { 46.1, 30.6, 51, 300 }, + [13] = { 44.4, 30.5, 51, 300 }, + [14] = { 44.6, 30.4, 51, 300 }, + [15] = { 46.2, 30.3, 51, 300 }, + [16] = { 44.8, 30.3, 51, 300 }, + [17] = { 44.9, 30.1, 51, 300 }, + [18] = { 46.3, 30, 51, 300 }, + [19] = { 46.4, 29.8, 51, 300 }, + [20] = { 45.4, 29.3, 51, 300 }, + [21] = { 46.6, 29.1, 51, 300 }, + [22] = { 45.5, 29, 51, 300 }, + [23] = { 46.6, 28.8, 51, 300 }, + [24] = { 45.5, 28.8, 51, 300 }, + [25] = { 45.6, 28.7, 51, 300 }, + [26] = { 46.7, 28.5, 51, 300 }, + [27] = { 45.6, 28.4, 51, 300 }, + [28] = { 46.7, 28.2, 51, 300 }, + [29] = { 45.7, 28.1, 51, 300 }, + [30] = { 46.7, 27.9, 51, 300 }, + [31] = { 46.7, 27.5, 51, 300 }, + }, + ["fac"] = "AH", + }, + [179830] = { + ["coords"] = { + [1] = { 48.9, 11.3, 3277, 86400 }, + }, + ["fac"] = "H", + }, + [179831] = { + ["coords"] = { + [1] = { 53, 93, 3277, 86400 }, + }, + ["fac"] = "A", + }, + [179844] = { + ["coords"] = { + [1] = { 38.8, 28.6, 51, 7200 }, + }, + }, + [179846] = { + ["coords"] = { + [1] = { 44.9, 43.4, 357, 900 }, + }, + }, + [179862] = { + ["coords"] = { + [1] = { 38.7, 28.5, 51, 7200 }, + }, + }, + [179863] = { + ["coords"] = { + [1] = { 61, 38.8, 618, 900 }, + }, + }, + [179864] = { + ["coords"] = { + [1] = { 60.9, 38.8, 618, 900 }, + }, + }, + [179871] = { + ["coords"] = { + [1] = { 51.8, 81.3, 3277, 150 }, + [2] = { 49.8, 23.2, 3277, 150 }, + }, + }, + [179874] = { + ["coords"] = { + [1] = { 46.4, 8.6, 17, 900 }, + [2] = { 66.1, 81.1, 3277, 900 }, + }, + }, + [179875] = { + ["coords"] = { + [1] = { 46.1, 8.7, 17, 900 }, + [2] = { 67.9, 85.1, 3277, 900 }, + }, + }, + [179876] = { + ["coords"] = { + [1] = { 46.1, 8.5, 17, 900 }, + [2] = { 66.9, 86, 3277, 900 }, + }, + }, + [179877] = { + ["coords"] = { + [1] = { 46, 8.4, 17, 900 }, + [2] = { 66.7, 87.3, 3277, 900 }, + }, + }, + [179878] = { + ["coords"] = { + [1] = { 46.3, 8.7, 17, 900 }, + [2] = { 67, 83.1, 3277, 900 }, + }, + }, + [179879] = { + ["coords"] = { + [1] = { 32.5, 32.4, 46, 7200 }, + }, + ["fac"] = "AH", + }, + [179880] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [179881] = { + ["coords"] = { + [1] = { 46.5, 7.7, 14, 0 }, + [2] = { 52.8, 78.7, 1637, 0 }, + }, + }, + [179882] = { + ["coords"] = { + [1] = { 65.8, 72.2, 1519, 0 }, + }, + }, + [179885] = { + ["coords"] = { + [1] = { 78.5, 79.4, 47, 7200 }, + }, + }, + [179886] = { + ["coords"] = { + [1] = { 77.2, 80.2, 47, 7200 }, + }, + }, + [179887] = { + ["coords"] = { + [1] = { 77.2, 80.1, 47, 7200 }, + }, + }, + [179888] = { + ["coords"] = { + [1] = { 77.2, 77.4, 400, 45 }, + }, + ["fac"] = "AH", + }, + [179895] = { + ["coords"] = { + [1] = { 78.8, 80.5, 47, 7200 }, + }, + ["fac"] = "H", + }, + [179896] = { + ["coords"] = { + [1] = { 24.8, 68.8, 405, 900 }, + }, + ["fac"] = "H", + }, + [179899] = { + ["coords"] = {}, + }, + [179900] = { + ["coords"] = {}, + }, + [179904] = { + ["coords"] = { + [1] = { 60, 67.6, 3277, 20 }, + [2] = { 42.8, 40.5, 3277, 20 }, + }, + }, + [179905] = { + ["coords"] = { + [1] = { 42, 63.7, 3277, 120 }, + [2] = { 57.9, 40.2, 3277, 120 }, + }, + }, + [179906] = { + ["coords"] = {}, + }, + [179907] = { + ["coords"] = {}, + }, + [179908] = { + ["coords"] = { + [1] = { 72.6, 52.9, 47, 10 }, + [2] = { 71, 48.7, 47, 10 }, + [3] = { 66.4, 44.8, 47, 10 }, + [4] = { 57.4, 42.5, 47, 10 }, + [5] = { 53.4, 38.7, 47, 10 }, + }, + }, + [179909] = { + ["coords"] = { + [1] = { 54.3, 70.8, 2597, 0 }, + }, + }, + [179910] = { + ["coords"] = { + [1] = { 84.5, 41.2, 47, 10 }, + }, + }, + [179911] = { + ["coords"] = {}, + ["fac"] = "H", + }, + [179912] = { + ["coords"] = { + [1] = { 14.3, 48, 47, 25 }, + [2] = { 99.8, 7.7, 267, 25 }, + }, + }, + [179913] = { + ["coords"] = { + [1] = { 79.1, 79, 47, 10 }, + }, + ["fac"] = "H", + }, + [179914] = { + ["coords"] = { + [1] = { 62.1, 75.4, 47, 10 }, + }, + }, + [179915] = { + ["coords"] = { + [1] = { 58.6, 64.8, 47, 10 }, + }, + }, + [179916] = { + ["coords"] = { + [1] = { 53.9, 88.7, 3277, 86400 }, + }, + }, + [179917] = { + ["coords"] = { + [1] = { 50.8, 88.2, 3277, 86400 }, + }, + }, + [179918] = { + ["coords"] = { + [1] = { 47.8, 16.2, 3277, 86400 }, + }, + }, + [179919] = { + ["coords"] = { + [1] = { 50.9, 17.6, 3277, 86400 }, + }, + }, + [179920] = { + ["coords"] = { + [1] = { 47.8, 20.7, 3277, 86400 }, + }, + }, + [179921] = { + ["coords"] = { + [1] = { 50.9, 20.3, 3277, 86400 }, + }, + }, + [179922] = { + ["coords"] = { + [1] = { 87.6, 23.1, 45, 180 }, + [2] = { 85.2, 20.9, 45, 180 }, + [3] = { 85.7, 20.6, 45, 180 }, + [4] = { 83.1, 17.7, 45, 180 }, + [5] = { 81.5, 14.9, 45, 180 }, + [6] = { 63.5, 84, 47, 180 }, + [7] = { 64.2, 83.2, 47, 180 }, + [8] = { 65.8, 82.4, 47, 180 }, + [9] = { 63.4, 82.3, 47, 180 }, + [10] = { 64.5, 82.2, 47, 180 }, + [11] = { 61.3, 81.9, 47, 180 }, + [12] = { 61.8, 81.6, 47, 180 }, + [13] = { 66.6, 81.5, 47, 180 }, + [14] = { 67.4, 80.4, 47, 180 }, + [15] = { 63.3, 80.3, 47, 180 }, + [16] = { 65.6, 80.2, 47, 180 }, + [17] = { 67.2, 79.8, 47, 180 }, + [18] = { 63.3, 79.8, 47, 180 }, + [19] = { 66.4, 79.7, 47, 180 }, + [20] = { 59.3, 78.9, 47, 180 }, + [21] = { 63.9, 78.6, 47, 180 }, + [22] = { 62.9, 78.2, 47, 180 }, + [23] = { 67.2, 77.6, 47, 180 }, + [24] = { 67.7, 77.4, 47, 180 }, + [25] = { 64.6, 77.2, 47, 180 }, + [26] = { 65, 77.1, 47, 180 }, + [27] = { 57.8, 76.3, 47, 180 }, + [28] = { 66.1, 75.9, 47, 180 }, + [29] = { 65.3, 75.8, 47, 180 }, + [30] = { 67.9, 75.8, 47, 180 }, + [31] = { 68.2, 74.9, 47, 180 }, + [32] = { 66.5, 74.6, 47, 180 }, + [33] = { 63.8, 74.4, 47, 180 }, + [34] = { 66.3, 73.5, 47, 180 }, + [35] = { 63.6, 73.4, 47, 180 }, + [36] = { 65.3, 73.4, 47, 180 }, + [37] = { 68, 73.1, 47, 180 }, + [38] = { 58.3, 72.9, 47, 180 }, + [39] = { 58, 72.8, 47, 180 }, + [40] = { 61.2, 72.6, 47, 180 }, + [41] = { 61.6, 72.5, 47, 180 }, + [42] = { 64.2, 72.2, 47, 180 }, + [43] = { 68.3, 72.2, 47, 180 }, + [44] = { 65.3, 72, 47, 180 }, + [45] = { 58.3, 72, 47, 180 }, + [46] = { 67.1, 71.8, 47, 180 }, + [47] = { 66, 71.8, 47, 180 }, + [48] = { 57.9, 71.8, 47, 180 }, + [49] = { 62.4, 71.6, 47, 180 }, + [50] = { 65, 71.4, 47, 180 }, + [51] = { 57.3, 71.2, 47, 180 }, + [52] = { 66.2, 71, 47, 180 }, + [53] = { 66.6, 70.9, 47, 180 }, + [54] = { 68.7, 70.3, 47, 180 }, + [55] = { 62, 70.2, 47, 180 }, + [56] = { 69, 69.5, 47, 180 }, + [57] = { 64.9, 69.4, 47, 180 }, + [58] = { 62.2, 69, 47, 180 }, + [59] = { 57, 69, 47, 180 }, + [60] = { 67.5, 69, 47, 180 }, + [61] = { 65.9, 68.7, 47, 180 }, + [62] = { 62.6, 68.5, 47, 180 }, + [63] = { 60.8, 68.4, 47, 180 }, + [64] = { 63.3, 68.2, 47, 180 }, + [65] = { 58.8, 68, 47, 180 }, + [66] = { 64.4, 67.8, 47, 180 }, + [67] = { 60.6, 67.5, 47, 180 }, + [68] = { 58.7, 67.3, 47, 180 }, + [69] = { 67.6, 67, 47, 180 }, + [70] = { 58.7, 66.9, 47, 180 }, + [71] = { 62.7, 66.9, 47, 180 }, + [72] = { 60.6, 66.7, 47, 180 }, + [73] = { 65.3, 66.6, 47, 180 }, + [74] = { 64.4, 66.6, 47, 180 }, + [75] = { 62, 66, 47, 180 }, + [76] = { 58.4, 65.9, 47, 180 }, + [77] = { 65, 65.8, 47, 180 }, + [78] = { 63.9, 65.7, 47, 180 }, + [79] = { 60.5, 65.6, 47, 180 }, + [80] = { 60.8, 64.6, 47, 180 }, + [81] = { 59.8, 64.3, 47, 180 }, + }, + }, + [179924] = { + ["coords"] = { + [1] = { 3.1, 47.1, 3, 900 }, + [2] = { 82.1, 38.4, 51, 900 }, + }, + }, + [179944] = { + ["coords"] = {}, + }, + [179945] = { + ["coords"] = { + [1] = { 56.6, 76.3, 2597, 180 }, + }, + }, + [179963] = { + ["coords"] = {}, + }, + [179964] = { + ["coords"] = { + [1] = { 42.2, 68.5, 12, 180 }, + [2] = { 40.1, 68.1, 12, 180 }, + [3] = { 37.9, 38.4, 215, 25 }, + [4] = { 36.5, 34.7, 215, 25 }, + }, + }, + [179965] = { + ["coords"] = { + [1] = { 44, 72.1, 12, 25 }, + [2] = { 42.4, 71.5, 12, 25 }, + [3] = { 44.3, 71.2, 12, 25 }, + [4] = { 43.1, 70.6, 12, 25 }, + [5] = { 44.6, 70.6, 12, 25 }, + [6] = { 42, 70.5, 12, 25 }, + [7] = { 41.4, 70.4, 12, 25 }, + [8] = { 44.3, 70.3, 12, 25 }, + [9] = { 44.6, 70.3, 12, 25 }, + [10] = { 40.5, 70.2, 12, 25 }, + [11] = { 41.2, 69.7, 12, 25 }, + [12] = { 42.2, 69.2, 12, 25 }, + [13] = { 43.2, 69.2, 12, 25 }, + [14] = { 41.3, 69.1, 12, 25 }, + [15] = { 40.4, 68.8, 12, 25 }, + [16] = { 42.1, 68.7, 12, 25 }, + [17] = { 41.6, 68.7, 12, 25 }, + [18] = { 42.4, 68.6, 12, 25 }, + [19] = { 42.3, 68.6, 12, 180 }, + [20] = { 42.1, 68.5, 12, 180 }, + [21] = { 40, 68.2, 12, 180 }, + [22] = { 42.1, 68.1, 12, 25 }, + [23] = { 41.7, 68, 12, 25 }, + [24] = { 40.1, 68, 12, 180 }, + [25] = { 37.8, 39.9, 215, 25 }, + [26] = { 37.6, 39.9, 215, 25 }, + [27] = { 37.5, 39.6, 215, 25 }, + [28] = { 38.2, 39.5, 215, 25 }, + [29] = { 38.2, 39.3, 215, 25 }, + [30] = { 37.9, 38.7, 215, 25 }, + [31] = { 37.9, 38.6, 215, 25 }, + [32] = { 36.8, 38.4, 215, 25 }, + [33] = { 37.9, 38.3, 215, 25 }, + [34] = { 37, 38.3, 215, 25 }, + [35] = { 37.3, 38.3, 215, 25 }, + [36] = { 36.5, 38.3, 215, 25 }, + [37] = { 37.9, 38.2, 215, 25 }, + [38] = { 37.6, 37.9, 215, 25 }, + [39] = { 36.4, 37.8, 215, 25 }, + [40] = { 37.3, 37.5, 215, 25 }, + [41] = { 37, 37.1, 215, 25 }, + [42] = { 35.5, 35.6, 215, 25 }, + [43] = { 36.6, 34.8, 215, 25 }, + [44] = { 36.6, 34.7, 215, 25 }, + [45] = { 36.5, 34.7, 215, 25 }, + [46] = { 35.7, 34.2, 215, 25 }, + [47] = { 38.1, 30.8, 215, 25 }, + [48] = { 38.2, 30.7, 215, 25 }, + [49] = { 38.5, 30.2, 215, 25 }, + [50] = { 37.8, 29.9, 215, 25 }, + [51] = { 89.4, 63.3, 405, 25 }, + [52] = { 40.9, 68.5, 1638, 25 }, + [53] = { 41.5, 68.2, 1638, 25 }, + [54] = { 42.7, 66, 1638, 25 }, + [55] = { 39.4, 64.4, 1638, 25 }, + }, + }, + [179967] = { + ["coords"] = { + [1] = { 42.1, 70.5, 12, 25 }, + [2] = { 42, 70, 12, 180 }, + [3] = { 42.2, 70, 12, 180 }, + [4] = { 42.3, 69, 12, 180 }, + [5] = { 41.4, 68.7, 12, 180 }, + [6] = { 37, 38.4, 215, 25 }, + [7] = { 36.8, 38.4, 215, 25 }, + [8] = { 37.1, 37.3, 215, 25 }, + [9] = { 36.4, 37.3, 215, 25 }, + [10] = { 36.5, 37.1, 215, 25 }, + }, + }, + [179968] = { + ["coords"] = { + [1] = { 40.5, 70, 12, 25 }, + [2] = { 42.1, 69.9, 12, 180 }, + [3] = { 40.5, 69.4, 12, 180 }, + [4] = { 41.1, 69, 12, 25 }, + [5] = { 41, 68.9, 12, 25 }, + [6] = { 41.3, 68.9, 12, 180 }, + [7] = { 40.5, 68.9, 12, 25 }, + [8] = { 40.6, 68.9, 12, 25 }, + [9] = { 41.3, 68.8, 12, 180 }, + [10] = { 37.8, 40, 215, 25 }, + [11] = { 37.7, 40, 215, 25 }, + [12] = { 37.7, 39.9, 215, 25 }, + [13] = { 38, 39.4, 215, 25 }, + [14] = { 38.1, 39.4, 215, 25 }, + [15] = { 38.1, 39.3, 215, 25 }, + [16] = { 36.9, 38.5, 215, 25 }, + [17] = { 37, 38.5, 215, 25 }, + [18] = { 36.5, 37.1, 215, 25 }, + }, + }, + [179969] = { + ["coords"] = { + [1] = { 42.1, 70.1, 12, 180 }, + [2] = { 42.1, 69.7, 12, 180 }, + [3] = { 40.5, 69.4, 12, 180 }, + [4] = { 42.4, 68.9, 12, 180 }, + [5] = { 42.3, 68.9, 12, 180 }, + [6] = { 37.1, 37.4, 215, 25 }, + [7] = { 36.5, 37.2, 215, 25 }, + [8] = { 36.5, 37, 215, 25 }, + }, + }, + [179970] = { + ["coords"] = { + [1] = { 42, 70.4, 12, 25 }, + [2] = { 42, 70, 12, 180 }, + [3] = { 42.1, 69.9, 12, 180 }, + [4] = { 40.5, 69.4, 12, 180 }, + [5] = { 42.3, 69, 12, 180 }, + [6] = { 36.8, 38.3, 215, 25 }, + [7] = { 37.1, 37.4, 215, 25 }, + [8] = { 36.5, 37.1, 215, 25 }, + [9] = { 36.5, 37, 215, 25 }, + }, + }, + [179972] = { + ["coords"] = { + [1] = { 42.1, 70.5, 12, 25 }, + [2] = { 42.1, 70.1, 12, 180 }, + [3] = { 42.1, 70, 12, 180 }, + [4] = { 42.1, 69.7, 12, 180 }, + [5] = { 42.4, 69, 12, 180 }, + [6] = { 42.4, 68.9, 12, 180 }, + [7] = { 36.8, 38.4, 215, 25 }, + [8] = { 37.1, 37.4, 215, 25 }, + [9] = { 36.5, 37.2, 215, 25 }, + [10] = { 36.5, 37.1, 215, 25 }, + [11] = { 36.5, 37, 215, 25 }, + }, + }, + [179973] = { + ["coords"] = { + [1] = { 42.1, 70.4, 12, 25 }, + [2] = { 42.1, 69.9, 12, 180 }, + [3] = { 40.5, 69.4, 12, 180 }, + [4] = { 36.8, 38.4, 215, 25 }, + [5] = { 36.4, 37.3, 215, 25 }, + [6] = { 36.4, 37.2, 215, 25 }, + }, + }, + [179975] = { + ["coords"] = { + [1] = { 40.6, 70, 12, 25 }, + [2] = { 41, 69, 12, 25 }, + [3] = { 40.5, 68.9, 12, 25 }, + [4] = { 37.7, 40, 215, 25 }, + [5] = { 38.2, 39.7, 215, 25 }, + [6] = { 38.1, 39.3, 215, 25 }, + }, + }, + [179976] = { + ["coords"] = { + [1] = { 41.4, 68.8, 12, 180 }, + [2] = { 36.9, 38.5, 215, 25 }, + }, + }, + [179977] = { + ["coords"] = { + [1] = { 42.1, 69.7, 12, 180 }, + [2] = { 42.3, 68.9, 12, 180 }, + [3] = { 41.4, 68.7, 12, 180 }, + [4] = { 37, 38.4, 215, 25 }, + [5] = { 37.1, 37.4, 215, 25 }, + [6] = { 36.5, 37.2, 215, 25 }, + }, + }, + [179984] = { + ["coords"] = { + [1] = { 52.4, 36.8, 1, 900 }, + }, + }, + [179985] = { + ["coords"] = {}, + }, + [180005] = { + ["coords"] = { + [1] = { 42.6, 71.3, 12, 180 }, + [2] = { 43.2, 70.1, 12, 180 }, + [3] = { 41.5, 69.9, 12, 180 }, + [4] = { 40.6, 69, 12, 180 }, + [5] = { 37.9, 39.6, 215, 25 }, + [6] = { 36.4, 38.2, 215, 25 }, + [7] = { 35.7, 35.3, 215, 25 }, + [8] = { 36.1, 34.5, 215, 25 }, + }, + }, + [180006] = { + ["coords"] = { + [1] = { 43.4, 70.7, 12, 180 }, + [2] = { 43.4, 70.6, 12, 180 }, + [3] = { 42.7, 70, 12, 25 }, + [4] = { 42.7, 69.8, 12, 25 }, + [5] = { 36.4, 37, 215, 25 }, + [6] = { 36.4, 36.9, 215, 25 }, + [7] = { 35.6, 34.7, 215, 25 }, + [8] = { 35.6, 34.6, 215, 25 }, + }, + }, + [180007] = { + ["coords"] = { + [1] = { 40.3, 69.7, 12, 180 }, + [2] = { 42.2, 69.5, 12, 180 }, + [3] = { 42.3, 68.8, 12, 180 }, + [4] = { 41.4, 68.7, 12, 180 }, + [5] = { 41.6, 68.6, 12, 180 }, + [6] = { 37.4, 39.4, 215, 25 }, + [7] = { 36.7, 38.5, 215, 25 }, + [8] = { 37, 37.3, 215, 25 }, + [9] = { 36.5, 37.3, 215, 25 }, + [10] = { 36.9, 37.1, 215, 25 }, + }, + }, + [180024] = { + ["coords"] = {}, + }, + [180025] = { + ["coords"] = { + [1] = { 84.9, 64.4, 12, 900 }, + }, + }, + [180026] = { + ["coords"] = { + [1] = { 42.2, 68.5, 12, 180 }, + [2] = { 40.1, 68.1, 12, 180 }, + [3] = { 37.9, 38.4, 215, 25 }, + [4] = { 36.5, 34.7, 215, 25 }, + }, + }, + [180029] = { + ["coords"] = { + [1] = { 41.7, 68.1, 12, 25 }, + [2] = { 37.4, 38.2, 215, 25 }, + }, + }, + [180030] = { + ["coords"] = { + [1] = { 42.3, 68.9, 12, 25 }, + [2] = { 37, 38.5, 215, 25 }, + }, + }, + [180031] = { + ["coords"] = { + [1] = { 42.3, 70.2, 12, 25 }, + [2] = { 36.7, 38.5, 215, 25 }, + }, + }, + [180032] = { + ["coords"] = { + [1] = { 41.2, 70, 12, 25 }, + [2] = { 36.4, 38.1, 215, 25 }, + }, + }, + [180034] = { + ["coords"] = { + [1] = { 41.4, 68.7, 12, 25 }, + [2] = { 37.4, 37.6, 215, 25 }, + }, + }, + [180035] = { + ["coords"] = { + [1] = { 43.7, 72.2, 12, 25 }, + [2] = { 42.7, 71.8, 12, 25 }, + [3] = { 44.2, 71.7, 12, 25 }, + [4] = { 42.2, 71.3, 12, 25 }, + [5] = { 41.6, 71.2, 12, 25 }, + [6] = { 44.3, 70.7, 12, 25 }, + [7] = { 42.1, 70.7, 12, 25 }, + [8] = { 40.8, 70.1, 12, 25 }, + [9] = { 40.3, 70, 12, 25 }, + [10] = { 44.1, 69.9, 12, 25 }, + [11] = { 42.6, 69.7, 12, 25 }, + [12] = { 42.4, 69.5, 12, 25 }, + [13] = { 43.4, 69.4, 12, 25 }, + [14] = { 43, 69.2, 12, 25 }, + [15] = { 40.2, 69.1, 12, 25 }, + [16] = { 42.4, 68.9, 12, 25 }, + [17] = { 41.1, 68.9, 12, 25 }, + [18] = { 40.6, 68.7, 12, 25 }, + [19] = { 42.2, 68.4, 12, 25 }, + [20] = { 41.5, 68.3, 12, 25 }, + [21] = { 37.7, 40, 215, 25 }, + [22] = { 37.9, 40, 215, 25 }, + [23] = { 38.1, 39.8, 215, 25 }, + [24] = { 38.3, 39.5, 215, 25 }, + [25] = { 37.4, 39.5, 215, 25 }, + [26] = { 37.9, 39.3, 215, 25 }, + [27] = { 38.2, 39.2, 215, 25 }, + [28] = { 36.7, 38.7, 215, 25 }, + [29] = { 36.4, 38.5, 215, 25 }, + [30] = { 36.2, 37.9, 215, 25 }, + [31] = { 37.5, 37.7, 215, 25 }, + [32] = { 36.2, 37.3, 215, 25 }, + [33] = { 37.4, 37.3, 215, 25 }, + [34] = { 37.1, 36.9, 215, 25 }, + [35] = { 36.4, 36.8, 215, 25 }, + [36] = { 36.8, 36.5, 215, 25 }, + [37] = { 36.3, 36.4, 215, 25 }, + [38] = { 36, 36.1, 215, 25 }, + [39] = { 36.7, 36.1, 215, 25 }, + [40] = { 35.7, 35.8, 215, 25 }, + [41] = { 36.7, 35.6, 215, 25 }, + [42] = { 35.4, 35.4, 215, 25 }, + [43] = { 36.6, 35, 215, 25 }, + [44] = { 35.3, 34.8, 215, 25 }, + [45] = { 36.5, 34.5, 215, 25 }, + [46] = { 35.5, 34.4, 215, 25 }, + [47] = { 36.2, 34.3, 215, 25 }, + [48] = { 35.9, 34.2, 215, 25 }, + [49] = { 89.2, 63.4, 405, 25 }, + }, + }, + [180036] = { + ["coords"] = { + [1] = { 43.7, 71.8, 12, 25 }, + [2] = { 42.9, 71.5, 12, 25 }, + [3] = { 43.8, 69.9, 12, 25 }, + [4] = { 43.1, 69.7, 12, 25 }, + [5] = { 35.9, 35.7, 215, 25 }, + [6] = { 36.5, 35.5, 215, 25 }, + [7] = { 35.6, 34.8, 215, 25 }, + [8] = { 36.1, 34.5, 215, 25 }, + }, + }, + [180037] = { + ["coords"] = { + [1] = { 41.1, 69.7, 12, 25 }, + [2] = { 40.3, 69.2, 12, 25 }, + [3] = { 37.5, 39.5, 215, 25 }, + [4] = { 38.2, 39.4, 215, 25 }, + }, + }, + [180038] = { + ["coords"] = { + [1] = { 40.7, 70, 12, 25 }, + [2] = { 40.3, 69.8, 12, 25 }, + [3] = { 40.8, 68.8, 12, 25 }, + [4] = { 37.9, 39.8, 215, 25 }, + [5] = { 37.9, 39.8, 215, 120 }, + [6] = { 37.6, 39.8, 215, 25 }, + [7] = { 37.6, 39.8, 215, 120 }, + [8] = { 38.2, 39.6, 215, 25 }, + [9] = { 38.2, 39.6, 215, 120 }, + }, + }, + [180039] = { + ["coords"] = { + [1] = { 40.1, 69.6, 12, 25 }, + [2] = { 37.5, 39.8, 215, 25 }, + }, + }, + [180040] = { + ["coords"] = { + [1] = { 40.8, 69.9, 12, 25 }, + [2] = { 40.4, 69.9, 12, 25 }, + [3] = { 40.4, 69.1, 12, 25 }, + [4] = { 38.1, 39.7, 215, 25 }, + [5] = { 37.9, 39.4, 215, 25 }, + [6] = { 37.8, 39.3, 215, 25 }, + }, + }, + [180041] = { + ["coords"] = { + [1] = { 40.9, 69.8, 12, 25 }, + [2] = { 37.9, 39.4, 215, 25 }, + }, + }, + [180042] = { + ["coords"] = { + [1] = { 41.7, 70.7, 12, 25 }, + [2] = { 37.1, 37.4, 215, 25 }, + }, + }, + [180043] = { + ["coords"] = { + [1] = { 43.1, 71, 12, 180 }, + [2] = { 42.5, 71, 12, 180 }, + [3] = { 43.4, 70.6, 12, 180 }, + [4] = { 41.9, 70.6, 12, 25 }, + [5] = { 42, 70.3, 12, 25 }, + [6] = { 41.4, 70.2, 12, 25 }, + [7] = { 42.7, 69.9, 12, 25 }, + [8] = { 42.2, 69.9, 12, 25 }, + [9] = { 41.2, 69.7, 12, 25 }, + [10] = { 40.5, 69.5, 12, 180 }, + [11] = { 40.2, 69.4, 12, 25 }, + [12] = { 41.9, 69.2, 12, 25 }, + [13] = { 42.1, 69.1, 12, 25 }, + [14] = { 41.4, 69, 12, 25 }, + [15] = { 42.1, 68.9, 12, 25 }, + [16] = { 40.8, 68.8, 12, 25 }, + [17] = { 41.6, 68.7, 12, 25 }, + [18] = { 38, 39.8, 215, 25 }, + [19] = { 37.5, 39.6, 215, 25 }, + [20] = { 37.4, 39.4, 215, 25 }, + [21] = { 38, 39.4, 215, 25 }, + [22] = { 37.4, 39.1, 215, 25 }, + [23] = { 37.5, 38.6, 215, 25 }, + [24] = { 36.8, 38.4, 215, 25 }, + [25] = { 37, 38.3, 215, 25 }, + [26] = { 36.5, 38.2, 215, 25 }, + [27] = { 36.4, 37.9, 215, 25 }, + [28] = { 37.4, 37.8, 215, 25 }, + [29] = { 36.8, 37.8, 215, 25 }, + [30] = { 37.3, 37.6, 215, 25 }, + [31] = { 37, 37.2, 215, 25 }, + [32] = { 36.4, 37, 215, 25 }, + [33] = { 35.8, 35.2, 215, 25 }, + [34] = { 36, 34.9, 215, 25 }, + [35] = { 35.6, 34.7, 215, 25 }, + }, + }, + [180044] = { + ["coords"] = { + [1] = { 41.8, 69.5, 12, 25 }, + [2] = { 36.8, 37.6, 215, 25 }, + }, + }, + [180045] = { + ["coords"] = { + [1] = { 43, 71.2, 12, 180 }, + [2] = { 43.4, 70.9, 12, 25 }, + [3] = { 43.2, 70.9, 12, 180 }, + [4] = { 43.2, 70.6, 12, 25 }, + [5] = { 43.5, 70.4, 12, 25 }, + [6] = { 41, 70, 12, 180 }, + [7] = { 36.3, 37.5, 215, 25 }, + [8] = { 36.1, 35.3, 215, 25 }, + [9] = { 35.9, 35.1, 215, 25 }, + [10] = { 35.9, 34.9, 215, 25 }, + [11] = { 36.1, 34.9, 215, 25 }, + [12] = { 36.1, 34.8, 215, 25 }, + }, + }, + [180046] = { + ["coords"] = { + [1] = { 43, 71.1, 12, 180 }, + [2] = { 43.1, 70.9, 12, 180 }, + [3] = { 43.4, 70.7, 12, 25 }, + [4] = { 43.3, 70.6, 12, 25 }, + [5] = { 43.4, 70.5, 12, 25 }, + [6] = { 41, 69.9, 12, 180 }, + [7] = { 36.3, 37.5, 215, 25 }, + [8] = { 36, 35.2, 215, 25 }, + [9] = { 35.9, 35.1, 215, 25 }, + [10] = { 36, 35, 215, 25 }, + [11] = { 36.1, 34.9, 215, 25 }, + }, + }, + [180047] = { + ["coords"] = { + [1] = { 43.1, 70.8, 12, 180 }, + [2] = { 43.4, 70.8, 12, 25 }, + [3] = { 43.3, 70.6, 12, 25 }, + [4] = { 43.4, 70.5, 12, 25 }, + [5] = { 41, 69.8, 12, 180 }, + [6] = { 36.3, 37.5, 215, 25 }, + [7] = { 36, 35.1, 215, 25 }, + [8] = { 35.9, 35.1, 215, 25 }, + [9] = { 36, 35, 215, 25 }, + }, + }, + [180048] = { + ["coords"] = { + [1] = { 43.4, 70.8, 12, 25 }, + [2] = { 43.3, 70.6, 12, 25 }, + [3] = { 41, 69.8, 12, 180 }, + [4] = { 35.9, 35.1, 215, 25 }, + [5] = { 36, 35, 215, 25 }, + }, + }, + [180049] = { + ["coords"] = { + [1] = { 43.1, 70.8, 12, 180 }, + [2] = { 43.3, 70.6, 12, 25 }, + [3] = { 43.4, 70.5, 12, 25 }, + [4] = { 36.3, 37.5, 215, 25 }, + [5] = { 36, 35.1, 215, 25 }, + [6] = { 35.9, 35.1, 215, 25 }, + }, + }, + [180050] = { + ["coords"] = { + [1] = { 41, 69.8, 12, 180 }, + [2] = { 36.3, 37.5, 215, 25 }, + }, + }, + [180051] = { + ["coords"] = { + [1] = { 43.1, 70.8, 12, 180 }, + [2] = { 36.3, 37.5, 215, 25 }, + }, + }, + [180052] = { + ["coords"] = { + [1] = { 43.1, 71, 12, 180 }, + [2] = { 36, 34.9, 215, 25 }, + }, + }, + [180053] = { + ["coords"] = { + [1] = { 43.4, 70.6, 12, 25 }, + [2] = { 36, 35.1, 215, 25 }, + }, + }, + [180055] = { + ["coords"] = {}, + }, + [180056] = { + ["coords"] = { + [1] = { 35, 61.6, 215, 10 }, + }, + }, + [180057] = { + ["coords"] = { + [1] = { 46.4, 39.3, 17, 900 }, + }, + }, + [180058] = { + ["coords"] = { + [1] = { 56, 60, 3358, 86400 }, + [2] = { 40.4, 55.7, 3358, 86400 }, + [3] = { 46.2, 45.4, 3358, 86400 }, + [4] = { 57.5, 30.9, 3358, 86400 }, + [5] = { 37.5, 29.2, 3358, 86400 }, + }, + ["fac"] = "H", + }, + [180059] = { + ["coords"] = { + [1] = { 56, 60, 3358, 86400 }, + [2] = { 40.4, 55.7, 3358, 86400 }, + [3] = { 46.2, 45.4, 3358, 86400 }, + [4] = { 57.5, 30.9, 3358, 86400 }, + [5] = { 37.5, 29.2, 3358, 86400 }, + }, + ["fac"] = "H", + }, + [180060] = { + ["coords"] = { + [1] = { 56, 60, 3358, 86400 }, + [2] = { 40.4, 55.7, 3358, 86400 }, + [3] = { 46.2, 45.4, 3358, 86400 }, + [4] = { 57.5, 30.9, 3358, 86400 }, + [5] = { 37.5, 29.2, 3358, 86400 }, + }, + ["fac"] = "A", + }, + [180061] = { + ["coords"] = { + [1] = { 56, 60, 3358, 86400 }, + [2] = { 40.4, 55.7, 3358, 86400 }, + [3] = { 46.2, 45.4, 3358, 86400 }, + [4] = { 57.5, 30.9, 3358, 86400 }, + [5] = { 37.5, 29.2, 3358, 86400 }, + }, + ["fac"] = "A", + }, + [180064] = { + ["coords"] = {}, + }, + [180065] = { + ["coords"] = {}, + ["fac"] = "A", + }, + [180066] = { + ["coords"] = {}, + }, + [180067] = { + ["coords"] = {}, + ["fac"] = "A", + }, + [180068] = { + ["coords"] = {}, + }, + [180069] = { + ["coords"] = {}, + ["fac"] = "H", + }, + [180070] = { + ["coords"] = {}, + ["fac"] = "A", + }, + [180071] = { + ["coords"] = {}, + ["fac"] = "A", + }, + [180072] = { + ["coords"] = {}, + }, + [180073] = { + ["coords"] = {}, + ["fac"] = "H", + }, + [180074] = { + ["coords"] = {}, + }, + [180075] = { + ["coords"] = {}, + ["fac"] = "A", + }, + [180076] = { + ["coords"] = {}, + ["fac"] = "H", + }, + [180077] = { + ["coords"] = {}, + ["fac"] = "H", + }, + [180078] = { + ["coords"] = {}, + }, + [180079] = { + ["coords"] = {}, + ["fac"] = "A", + }, + [180085] = { + ["coords"] = {}, + ["fac"] = "H", + }, + [180086] = { + ["coords"] = {}, + ["fac"] = "A", + }, + [180087] = { + ["coords"] = { + [1] = { 37.5, 29.2, 3358, 86400 }, + }, + ["fac"] = "AH", + }, + [180088] = { + ["coords"] = { + [1] = { 46.2, 45.4, 3358, 86400 }, + }, + ["fac"] = "AH", + }, + [180089] = { + ["coords"] = { + [1] = { 56, 60, 3358, 86400 }, + }, + ["fac"] = "AH", + }, + [180090] = { + ["coords"] = { + [1] = { 40.4, 55.7, 3358, 86400 }, + }, + ["fac"] = "AH", + }, + [180091] = { + ["coords"] = { + [1] = { 57.5, 30.9, 3358, 86400 }, + }, + ["fac"] = "AH", + }, + [180092] = { + ["coords"] = {}, + ["fac"] = "H", + }, + [180093] = { + ["coords"] = {}, + ["fac"] = "A", + }, + [180094] = { + ["coords"] = {}, + ["fac"] = "H", + }, + [180095] = { + ["coords"] = {}, + ["fac"] = "A", + }, + [180096] = { + ["coords"] = {}, + ["fac"] = "H", + }, + [180097] = { + ["coords"] = {}, + ["fac"] = "A", + }, + [180098] = { + ["coords"] = {}, + ["fac"] = "H", + }, + [180099] = { + ["coords"] = {}, + ["fac"] = "A", + }, + [180100] = { + ["coords"] = { + [1] = { 56, 60, 3358, 86400 }, + [2] = { 40.4, 55.7, 3358, 86400 }, + [3] = { 46.2, 45.4, 3358, 86400 }, + [4] = { 57.5, 30.9, 3358, 86400 }, + [5] = { 37.5, 29.2, 3358, 86400 }, + }, + }, + [180101] = { + ["coords"] = { + [1] = { 56, 60, 3358, 86400 }, + [2] = { 40.4, 55.7, 3358, 86400 }, + [3] = { 46.2, 45.4, 3358, 86400 }, + [4] = { 57.5, 30.9, 3358, 86400 }, + [5] = { 37.5, 29.2, 3358, 86400 }, + }, + }, + [180102] = { + ["coords"] = { + [1] = { 56, 60, 3358, 86400 }, + [2] = { 40.4, 55.7, 3358, 86400 }, + [3] = { 46.2, 45.4, 3358, 86400 }, + [4] = { 57.5, 30.9, 3358, 86400 }, + [5] = { 37.5, 29.2, 3358, 86400 }, + }, + }, + [180104] = { + ["coords"] = { + [1] = { 15.1, 15.7, 33, 900 }, + }, + }, + [180105] = { + ["coords"] = { + [1] = { 15.3, 15.4, 33, 900 }, + }, + }, + [180124] = { + ["coords"] = { + [1] = { 30.5, 86.5, 40, 180 }, + }, + }, + [180125] = { + ["coords"] = {}, + }, + [180144] = { + ["coords"] = {}, + }, + [180145] = { + ["coords"] = {}, + }, + [180146] = { + ["coords"] = {}, + }, + [180147] = { + ["coords"] = {}, + }, + [180148] = { + ["coords"] = {}, + }, + [180164] = { + ["coords"] = {}, + }, + [180165] = { + ["coords"] = {}, + }, + [180166] = { + ["coords"] = {}, + }, + [180167] = { + ["coords"] = {}, + }, + [180168] = { + ["coords"] = {}, + }, + [180184] = { + ["coords"] = {}, + }, + [180204] = { + ["coords"] = { + [1] = { 52.2, 83.7, 28, 60 }, + }, + }, + [180205] = { + ["coords"] = { + [1] = { 82.8, 79.1, 331, 60 }, + }, + }, + [180206] = { + ["coords"] = { + [1] = { 82.9, 79, 331, 120 }, + }, + }, + [180207] = { + ["coords"] = { + [1] = { 82.9, 79, 331, 120 }, + }, + }, + [180208] = { + ["coords"] = { + [1] = { 82.9, 79, 331, 120 }, + }, + }, + [180209] = { + ["coords"] = { + [1] = { 82.9, 79.1, 331, 120 }, + [2] = { 82.9, 79, 331, 120 }, + [3] = { 82.9, 78.9, 331, 120 }, + }, + }, + [180210] = { + ["coords"] = { + [1] = { 52.1, 83.5, 28, 120 }, + [2] = { 52.1, 83.4, 28, 120 }, + [3] = { 52.1, 83.3, 28, 120 }, + }, + }, + [180211] = { + ["coords"] = { + [1] = { 52.1, 83.5, 28, 120 }, + [2] = { 52.1, 83.4, 28, 120 }, + [3] = { 52.2, 83.4, 28, 120 }, + }, + }, + [180213] = { + ["coords"] = { + [1] = { 52.1, 83.4, 28, 120 }, + [2] = { 52.1, 83.3, 28, 120 }, + }, + }, + [180214] = { + ["coords"] = { + [1] = { 52.1, 83.5, 28, 120 }, + [2] = { 52.1, 83.4, 28, 120 }, + }, + }, + [180215] = { + ["coords"] = {}, + }, + [180216] = { + ["coords"] = { + [1] = { 33.4, 56.6, 490, 300 }, + [2] = { 33.3, 53.6, 490, 300 }, + [3] = { 32.6, 50.1, 490, 300 }, + }, + }, + [180217] = { + ["coords"] = { + [1] = { 33.4, 56.6, 490, 900 }, + [2] = { 33.3, 53.6, 490, 900 }, + [3] = { 32.6, 50.1, 490, 900 }, + }, + }, + [180218] = { + ["coords"] = { + [1] = { 60.6, 60, 3358, 7200 }, + [2] = { 60.2, 59.7, 3358, 7200 }, + [3] = { 56.7, 59.5, 3358, 7200 }, + [4] = { 56.7, 59.4, 3358, 7200 }, + [5] = { 60.6, 59.1, 3358, 7200 }, + [6] = { 59.2, 59, 3358, 7200 }, + [7] = { 60.8, 59, 3358, 7200 }, + [8] = { 55.9, 58.9, 3358, 7200 }, + [9] = { 56.5, 58.8, 3358, 7200 }, + [10] = { 56.8, 58.3, 3358, 7200 }, + [11] = { 56.1, 58.2, 3358, 7200 }, + [12] = { 59.6, 58.1, 3358, 7200 }, + [13] = { 59, 57.9, 3358, 7200 }, + [14] = { 57.7, 57.4, 3358, 7200 }, + [15] = { 57.8, 57.3, 3358, 7200 }, + [16] = { 57.7, 57.2, 3358, 7200 }, + [17] = { 58.6, 57.1, 3358, 7200 }, + [18] = { 57.1, 57.1, 3358, 7200 }, + [19] = { 56.2, 57, 3358, 7200 }, + [20] = { 56.9, 57, 3358, 7200 }, + [21] = { 58.7, 56.9, 3358, 7200 }, + [22] = { 55.7, 56.7, 3358, 7200 }, + [23] = { 57, 55.8, 3358, 7200 }, + [24] = { 56.7, 55.8, 3358, 7200 }, + [25] = { 57.5, 55.5, 3358, 7200 }, + }, + }, + [180219] = { + ["coords"] = { + [1] = { 56.7, 58.1, 3358, 7200 }, + [2] = { 59.1, 57.6, 3358, 7200 }, + [3] = { 58.9, 57.6, 3358, 7200 }, + [4] = { 57.9, 56.6, 3358, 7200 }, + [5] = { 55.8, 56.5, 3358, 7200 }, + [6] = { 58.8, 55.8, 3358, 7200 }, + [7] = { 56.9, 55.7, 3358, 7200 }, + }, + }, + [180220] = { + ["coords"] = { + [1] = { 58.9, 61.1, 3358, 7200 }, + [2] = { 57.9, 60.3, 3358, 7200 }, + [3] = { 60.4, 59.7, 3358, 7200 }, + [4] = { 58.3, 59.7, 3358, 7200 }, + [5] = { 60.3, 59.5, 3358, 7200 }, + [6] = { 60.8, 59.5, 3358, 7200 }, + [7] = { 59.1, 59.1, 3358, 7200 }, + [8] = { 59.5, 58.6, 3358, 7200 }, + [9] = { 56.6, 58.6, 3358, 7200 }, + [10] = { 55.9, 58.5, 3358, 7200 }, + [11] = { 59.2, 58.3, 3358, 7200 }, + [12] = { 56, 58.3, 3358, 7200 }, + [13] = { 58.9, 58.3, 3358, 7200 }, + [14] = { 57.6, 58.3, 3358, 7200 }, + [15] = { 59.6, 58.1, 3358, 7200 }, + [16] = { 58.6, 57.3, 3358, 7200 }, + [17] = { 56.3, 57.2, 3358, 7200 }, + [18] = { 57.6, 57.1, 3358, 7200 }, + [19] = { 57.7, 57.1, 3358, 7200 }, + [20] = { 55.6, 56.6, 3358, 7200 }, + [21] = { 57.2, 56.6, 3358, 7200 }, + [22] = { 55.7, 56.6, 3358, 7200 }, + [23] = { 59, 56.5, 3358, 7200 }, + [24] = { 58.2, 56.3, 3358, 7200 }, + [25] = { 59.1, 56, 3358, 7200 }, + [26] = { 56.8, 55.9, 3358, 7200 }, + [27] = { 57.8, 55.7, 3358, 7200 }, + [28] = { 58.6, 55.6, 3358, 7200 }, + }, + }, + [180222] = { + ["coords"] = { + [1] = { 58.9, 61.1, 3358, 7200 }, + [2] = { 57.4, 60.9, 3358, 7200 }, + [3] = { 58.7, 60.2, 3358, 7200 }, + [4] = { 60.4, 59.7, 3358, 7200 }, + [5] = { 58.3, 59.7, 3358, 7200 }, + [6] = { 60.8, 59.5, 3358, 7200 }, + [7] = { 56.7, 59.5, 3358, 7200 }, + [8] = { 59.1, 59.1, 3358, 7200 }, + [9] = { 57.3, 59, 3358, 7200 }, + [10] = { 59.5, 58.6, 3358, 7200 }, + [11] = { 56.6, 58.6, 3358, 7200 }, + [12] = { 55.9, 58.5, 3358, 7200 }, + [13] = { 59.2, 58.3, 3358, 7200 }, + [14] = { 56, 58.3, 3358, 7200 }, + [15] = { 58.9, 58.3, 3358, 7200 }, + [16] = { 57.6, 58.3, 3358, 7200 }, + [17] = { 59.6, 58.1, 3358, 7200 }, + [18] = { 57, 57.8, 3358, 7200 }, + [19] = { 59, 57.5, 3358, 7200 }, + [20] = { 56.3, 57.2, 3358, 7200 }, + [21] = { 57.6, 57.1, 3358, 7200 }, + [22] = { 55.6, 56.6, 3358, 7200 }, + [23] = { 57.2, 56.6, 3358, 7200 }, + [24] = { 55.7, 56.6, 3358, 7200 }, + [25] = { 59, 56.5, 3358, 7200 }, + [26] = { 58.2, 56.3, 3358, 7200 }, + [27] = { 57.6, 56.1, 3358, 7200 }, + [28] = { 56.8, 55.9, 3358, 7200 }, + [29] = { 57.8, 55.7, 3358, 7200 }, + [30] = { 58.6, 55.6, 3358, 7200 }, + }, + }, + [180223] = { + ["coords"] = { + [1] = { 58.9, 61.1, 3358, 7200 }, + [2] = { 57.4, 60.9, 3358, 7200 }, + [3] = { 57.9, 60.3, 3358, 7200 }, + [4] = { 58.7, 60.2, 3358, 7200 }, + [5] = { 60.4, 59.7, 3358, 7200 }, + [6] = { 58.3, 59.7, 3358, 7200 }, + [7] = { 60.3, 59.5, 3358, 7200 }, + [8] = { 60.8, 59.5, 3358, 7200 }, + [9] = { 56.7, 59.5, 3358, 7200 }, + [10] = { 59.1, 59.1, 3358, 7200 }, + [11] = { 59.5, 58.6, 3358, 7200 }, + [12] = { 56.6, 58.6, 3358, 7200 }, + [13] = { 55.9, 58.5, 3358, 7200 }, + [14] = { 56, 58.3, 3358, 7200 }, + [15] = { 58.9, 58.3, 3358, 7200 }, + [16] = { 57.6, 58.3, 3358, 7200 }, + [17] = { 59.6, 58.1, 3358, 7200 }, + [18] = { 57, 57.8, 3358, 7200 }, + [19] = { 59, 57.5, 3358, 7200 }, + [20] = { 58.6, 57.3, 3358, 7200 }, + [21] = { 56.3, 57.2, 3358, 7200 }, + [22] = { 57.6, 57.1, 3358, 7200 }, + [23] = { 57.7, 57.1, 3358, 7200 }, + [24] = { 55.6, 56.6, 3358, 7200 }, + [25] = { 57.2, 56.6, 3358, 7200 }, + [26] = { 55.7, 56.6, 3358, 7200 }, + [27] = { 58.2, 56.3, 3358, 7200 }, + [28] = { 57.6, 56.1, 3358, 7200 }, + [29] = { 59.1, 56, 3358, 7200 }, + [30] = { 56.8, 55.9, 3358, 7200 }, + [31] = { 57.8, 55.7, 3358, 7200 }, + }, + }, + [180224] = { + ["coords"] = { + [1] = { 58.9, 61.1, 3358, 7200 }, + [2] = { 57.4, 60.9, 3358, 7200 }, + [3] = { 57.9, 60.3, 3358, 7200 }, + [4] = { 58.7, 60.2, 3358, 7200 }, + [5] = { 60.4, 59.7, 3358, 7200 }, + [6] = { 58.3, 59.7, 3358, 7200 }, + [7] = { 60.3, 59.5, 3358, 7200 }, + [8] = { 60.8, 59.5, 3358, 7200 }, + [9] = { 56.7, 59.5, 3358, 7200 }, + [10] = { 57.3, 59, 3358, 7200 }, + [11] = { 59.5, 58.6, 3358, 7200 }, + [12] = { 55.9, 58.5, 3358, 7200 }, + [13] = { 59.2, 58.3, 3358, 7200 }, + [14] = { 56, 58.3, 3358, 7200 }, + [15] = { 58.9, 58.3, 3358, 7200 }, + [16] = { 57.6, 58.3, 3358, 7200 }, + [17] = { 59.6, 58.1, 3358, 7200 }, + [18] = { 57, 57.8, 3358, 7200 }, + [19] = { 58.6, 57.3, 3358, 7200 }, + [20] = { 56.3, 57.2, 3358, 7200 }, + [21] = { 57.6, 57.1, 3358, 7200 }, + [22] = { 57.7, 57.1, 3358, 7200 }, + [23] = { 55.7, 56.6, 3358, 7200 }, + [24] = { 59, 56.5, 3358, 7200 }, + [25] = { 58.2, 56.3, 3358, 7200 }, + [26] = { 57.6, 56.1, 3358, 7200 }, + [27] = { 59.1, 56, 3358, 7200 }, + [28] = { 56.8, 55.9, 3358, 7200 }, + [29] = { 57.8, 55.7, 3358, 7200 }, + [30] = { 58.6, 55.6, 3358, 7200 }, + }, + }, + [180225] = { + ["coords"] = { + [1] = { 58.9, 61.1, 3358, 7200 }, + [2] = { 57.4, 60.9, 3358, 7200 }, + [3] = { 57.9, 60.3, 3358, 7200 }, + [4] = { 60.4, 59.7, 3358, 7200 }, + [5] = { 60.3, 59.5, 3358, 7200 }, + [6] = { 60.8, 59.5, 3358, 7200 }, + [7] = { 56.7, 59.5, 3358, 7200 }, + [8] = { 59.1, 59.1, 3358, 7200 }, + [9] = { 57.3, 59, 3358, 7200 }, + [10] = { 59.5, 58.6, 3358, 7200 }, + [11] = { 56.6, 58.6, 3358, 7200 }, + [12] = { 55.9, 58.5, 3358, 7200 }, + [13] = { 59.2, 58.3, 3358, 7200 }, + [14] = { 56, 58.3, 3358, 7200 }, + [15] = { 58.9, 58.3, 3358, 7200 }, + [16] = { 57.6, 58.3, 3358, 7200 }, + [17] = { 57, 57.8, 3358, 7200 }, + [18] = { 59, 57.5, 3358, 7200 }, + [19] = { 58.6, 57.3, 3358, 7200 }, + [20] = { 57.6, 57.1, 3358, 7200 }, + [21] = { 57.7, 57.1, 3358, 7200 }, + [22] = { 57.2, 56.6, 3358, 7200 }, + [23] = { 55.7, 56.6, 3358, 7200 }, + [24] = { 59, 56.5, 3358, 7200 }, + [25] = { 57.6, 56.1, 3358, 7200 }, + [26] = { 59.1, 56, 3358, 7200 }, + [27] = { 56.8, 55.9, 3358, 7200 }, + [28] = { 57.8, 55.7, 3358, 7200 }, + [29] = { 58.6, 55.6, 3358, 7200 }, + }, + }, + [180226] = { + ["coords"] = { + [1] = { 60.7, 60, 3358, 7200 }, + [2] = { 56.9, 59.2, 3358, 7200 }, + [3] = { 60.6, 59, 3358, 7200 }, + [4] = { 56.1, 58.8, 3358, 7200 }, + [5] = { 59.4, 58.3, 3358, 7200 }, + [6] = { 58.7, 57.9, 3358, 7200 }, + [7] = { 58, 57.6, 3358, 7200 }, + [8] = { 56.7, 57.3, 3358, 7200 }, + [9] = { 58.7, 56.7, 3358, 7200 }, + [10] = { 56, 56.7, 3358, 7200 }, + [11] = { 56.1, 56.7, 3358, 7200 }, + [12] = { 57.8, 56.5, 3358, 7200 }, + [13] = { 57.2, 55.6, 3358, 7200 }, + [14] = { 58.5, 55.4, 3358, 7200 }, + }, + }, + [180227] = { + ["coords"] = { + [1] = { 60.7, 60, 3358, 7200 }, + [2] = { 56.9, 59.2, 3358, 7200 }, + [3] = { 60.6, 59, 3358, 7200 }, + [4] = { 56.1, 58.8, 3358, 7200 }, + [5] = { 59.4, 58.3, 3358, 7200 }, + [6] = { 58.7, 57.9, 3358, 7200 }, + [7] = { 58, 57.6, 3358, 7200 }, + [8] = { 56.7, 57.3, 3358, 7200 }, + [9] = { 58.7, 56.7, 3358, 7200 }, + [10] = { 56, 56.7, 3358, 7200 }, + [11] = { 56.1, 56.7, 3358, 7200 }, + [12] = { 57.8, 56.5, 3358, 7200 }, + [13] = { 57.2, 55.6, 3358, 7200 }, + [14] = { 58.5, 55.4, 3358, 7200 }, + }, + }, + [180228] = { + ["coords"] = {}, + }, + [180229] = { + ["coords"] = {}, + }, + [180244] = { + ["coords"] = {}, + }, + [180245] = { + ["coords"] = {}, + }, + [180246] = { + ["coords"] = {}, + }, + [180247] = { + ["coords"] = {}, + }, + [180248] = { + ["coords"] = { + [1] = { 26.9, 84.9, 33, 180 }, + [2] = { 27.7, 84.2, 33, 180 }, + [3] = { 25.9, 84.1, 33, 180 }, + [4] = { 30.4, 83.6, 33, 180 }, + [5] = { 26.2, 82.5, 33, 180 }, + [6] = { 31.7, 82, 33, 180 }, + [7] = { 33.9, 77.9, 33, 180 }, + [8] = { 34, 74.7, 33, 180 }, + [9] = { 34.5, 73.3, 33, 180 }, + [10] = { 35.5, 72.6, 33, 180 }, + [11] = { 36.1, 71.5, 33, 180 }, + [12] = { 36.4, 70, 33, 180 }, + [13] = { 25.6, 67.1, 33, 180 }, + [14] = { 24.9, 66.2, 33, 180 }, + [15] = { 23.7, 62.5, 33, 180 }, + [16] = { 41, 60.6, 33, 180 }, + [17] = { 24.4, 59.1, 33, 180 }, + [18] = { 24.8, 58.3, 33, 180 }, + [19] = { 26.2, 58.3, 33, 180 }, + [20] = { 25.1, 58.1, 33, 180 }, + [21] = { 22.9, 56.4, 33, 180 }, + [22] = { 24.9, 56.3, 33, 180 }, + [23] = { 22.2, 55.9, 33, 180 }, + [24] = { 22.6, 52.8, 33, 180 }, + [25] = { 24.9, 50.2, 33, 180 }, + [26] = { 24.5, 49.9, 33, 180 }, + [27] = { 25.7, 49.3, 33, 180 }, + [28] = { 26, 48.8, 33, 180 }, + [29] = { 27.3, 45.8, 33, 180 }, + [30] = { 27, 44.3, 33, 180 }, + [31] = { 27.2, 42.3, 33, 180 }, + [32] = { 27.2, 40, 33, 180 }, + [33] = { 27.3, 38.8, 33, 180 }, + [34] = { 28.9, 37.7, 33, 180 }, + [35] = { 31.7, 36.5, 33, 180 }, + [36] = { 32, 36.4, 33, 180 }, + [37] = { 35.1, 36.3, 33, 180 }, + [38] = { 32.4, 35.6, 33, 180 }, + [39] = { 35, 35.4, 33, 180 }, + [40] = { 33.6, 33, 33, 180 }, + [41] = { 34.6, 32.2, 33, 180 }, + [42] = { 29.6, 28.5, 33, 180 }, + [43] = { 30, 28.2, 33, 180 }, + [44] = { 30, 27.5, 33, 180 }, + [45] = { 30.1, 27.4, 33, 180 }, + [46] = { 29.3, 26.7, 33, 180 }, + [47] = { 28.8, 22.2, 33, 180 }, + [48] = { 28, 21.7, 33, 180 }, + [49] = { 26.6, 20.2, 33, 180 }, + [50] = { 24.8, 19.7, 33, 180 }, + [51] = { 23.1, 18.7, 33, 180 }, + [52] = { 21.8, 18.5, 33, 180 }, + [53] = { 21.1, 16.3, 33, 180 }, + [54] = { 19.3, 13.8, 33, 180 }, + }, + }, + [180249] = { + ["coords"] = { + [1] = { 13.7, 15.3, 33, 0 }, + }, + }, + [180250] = { + ["coords"] = { + [1] = { 13.7, 15.3, 33, 0 }, + }, + }, + [180252] = { + ["coords"] = {}, + }, + [180253] = { + ["coords"] = {}, + }, + [180254] = { + ["coords"] = {}, + }, + [180255] = { + ["coords"] = { + [1] = { 32.9, 19.1, 3358, 86400 }, + }, + }, + [180256] = { + ["coords"] = { + [1] = { 65.5, 68.3, 3358, 86400 }, + }, + }, + [180322] = { + ["coords"] = { + [1] = { 30.7, 21.7, 46, 25 }, + [2] = { 37.8, 91.1, 51, 25 }, + [3] = { 55.2, 69.3, 2597, 25 }, + [4] = { 53.7, 10.3, 2597, 25 }, + [5] = { 54, 88.6, 3277, 25 }, + [6] = { 50.9, 88.1, 3277, 25 }, + [7] = { 50.9, 17.6, 3277, 25 }, + [8] = { 47.9, 16.2, 3277, 25 }, + [9] = { 65.5, 68.3, 3358, 25 }, + [10] = { 32.2, 19.9, 3358, 25 }, + [11] = { 32.9, 19.1, 3358, 25 }, + }, + }, + [180323] = { + ["coords"] = { + [1] = { 53.9, 17.6, 33, 900 }, + }, + }, + [180324] = { + ["coords"] = { + [1] = { 52.8, 36.9, 1, 180 }, + [2] = { 52.8, 36.7, 1, 180 }, + [3] = { 52.8, 36.6, 1, 180 }, + [4] = { 52.8, 36.5, 1, 180 }, + }, + }, + [180325] = { + ["coords"] = { + [1] = { 52.8, 37, 1, 180 }, + [2] = { 52.8, 36.9, 1, 180 }, + [3] = { 52.9, 36.9, 1, 180 }, + [4] = { 52.8, 36.8, 1, 180 }, + [5] = { 52.9, 36.8, 1, 180 }, + [6] = { 52.9, 36.7, 1, 180 }, + [7] = { 52.8, 36.7, 1, 180 }, + [8] = { 52.8, 36.6, 1, 180 }, + [9] = { 52.9, 36.6, 1, 180 }, + [10] = { 52.9, 36.5, 1, 180 }, + [11] = { 52.8, 36.5, 1, 180 }, + [12] = { 52.8, 36.4, 1, 180 }, + }, + }, + [180326] = { + ["coords"] = { + [1] = { 46.6, 13.6, 14, 180 }, + [2] = { 46.4, 13.6, 14, 180 }, + [3] = { 46.6, 13.3, 14, 180 }, + [4] = { 46.3, 13.3, 14, 180 }, + [5] = { 53, 100, 1637, 180 }, + [6] = { 52.2, 99.9, 1637, 180 }, + }, + }, + [180327] = { + ["coords"] = {}, + }, + [180328] = { + ["coords"] = { + [1] = { 52.8, 36.9, 1, 180 }, + [2] = { 52.8, 36.7, 1, 180 }, + [3] = { 52.8, 36.6, 1, 180 }, + [4] = { 52.8, 36.5, 1, 180 }, + }, + }, + [180329] = { + ["coords"] = { + [1] = { 52.8, 36.9, 1, 180 }, + [2] = { 52.8, 36.8, 1, 180 }, + [3] = { 52.8, 36.6, 1, 180 }, + [4] = { 52.8, 36.5, 1, 180 }, + }, + }, + [180330] = { + ["coords"] = { + [1] = { 52.8, 36.8, 1, 180 }, + [2] = { 52.8, 36.7, 1, 180 }, + [3] = { 52.8, 36.5, 1, 180 }, + }, + }, + [180331] = { + ["coords"] = { + [1] = { 52.8, 36.9, 1, 180 }, + [2] = { 52.8, 36.7, 1, 180 }, + [3] = { 52.8, 36.6, 1, 180 }, + [4] = { 52.8, 36.5, 1, 180 }, + }, + }, + [180332] = { + ["coords"] = { + [1] = { 52.8, 36.9, 1, 180 }, + [2] = { 52.8, 36.7, 1, 180 }, + [3] = { 52.8, 36.5, 1, 180 }, + }, + }, + [180333] = { + ["coords"] = { + [1] = { 52.8, 36.8, 1, 180 }, + [2] = { 52.8, 36.6, 1, 180 }, + }, + }, + [180334] = { + ["coords"] = { + [1] = { 52.8, 36.9, 1, 180 }, + [2] = { 52.8, 36.7, 1, 180 }, + [3] = { 52.8, 36.6, 1, 180 }, + [4] = { 52.8, 36.5, 1, 180 }, + }, + }, + [180335] = { + ["coords"] = { + [1] = { 42.1, 70.4, 12, 25 }, + [2] = { 36.8, 37.7, 215, 25 }, + [3] = { 36.8, 37.7, 215, 180 }, + }, + }, + [180337] = { + ["coords"] = { + [1] = { 46.5, 13.5, 14, 180 }, + }, + }, + [180338] = { + ["coords"] = { + [1] = { 46.6, 13.6, 14, 180 }, + [2] = { 46.3, 13.6, 14, 180 }, + [3] = { 46.4, 13.3, 14, 180 }, + [4] = { 46.4, 13.2, 14, 180 }, + [5] = { 52.2, 99.9, 1637, 180 }, + [6] = { 52.3, 99.7, 1637, 180 }, + }, + }, + [180339] = { + ["coords"] = { + [1] = { 46.6, 13.6, 14, 180 }, + [2] = { 46.4, 13.6, 14, 180 }, + [3] = { 46.6, 13.4, 14, 180 }, + [4] = { 46.5, 13.3, 14, 180 }, + [5] = { 46.4, 13.3, 14, 180 }, + [6] = { 53, 99.9, 1637, 180 }, + [7] = { 52.3, 99.9, 1637, 180 }, + }, + }, + [180340] = { + ["coords"] = { + [1] = { 46.5, 13.7, 14, 180 }, + [2] = { 46.4, 13.6, 14, 180 }, + [3] = { 46.3, 13.3, 14, 180 }, + [4] = { 46.5, 13.3, 14, 180 }, + [5] = { 53, 99.9, 1637, 180 }, + }, + }, + [180341] = { + ["coords"] = { + [1] = { 46.6, 13.6, 14, 180 }, + [2] = { 46.3, 13.6, 14, 180 }, + [3] = { 46.4, 13.3, 14, 180 }, + [4] = { 52.2, 99.9, 1637, 180 }, + }, + }, + [180342] = { + ["coords"] = { + [1] = { 46.4, 13.6, 14, 180 }, + [2] = { 46.6, 13.3, 14, 180 }, + [3] = { 46.3, 13.3, 14, 180 }, + [4] = { 52.2, 99.9, 1637, 180 }, + }, + }, + [180345] = { + ["coords"] = { + [1] = { 46.4, 13.6, 14, 180 }, + [2] = { 46.5, 13.6, 14, 180 }, + [3] = { 46.5, 13.3, 14, 180 }, + [4] = { 53, 99.9, 1637, 180 }, + }, + }, + [180346] = { + ["coords"] = {}, + }, + [180347] = { + ["coords"] = { + [1] = { 46.5, 13.7, 14, 180 }, + [2] = { 46.3, 13.3, 14, 180 }, + [3] = { 46.6, 13.3, 14, 180 }, + [4] = { 53, 100, 1637, 180 }, + }, + }, + [180348] = { + ["coords"] = { + [1] = { 46.4, 13.6, 14, 180 }, + [2] = { 46.6, 13.6, 14, 180 }, + [3] = { 46.6, 13.3, 14, 180 }, + [4] = { 46.4, 13.3, 14, 180 }, + [5] = { 53, 99.9, 1637, 180 }, + [6] = { 52.4, 99.7, 1637, 180 }, + }, + }, + [180349] = { + ["coords"] = { + [1] = { 46.6, 13.6, 14, 180 }, + [2] = { 46.5, 13.3, 14, 180 }, + [3] = { 52.9, 99.8, 1637, 180 }, + }, + }, + [180350] = { + ["coords"] = { + [1] = { 46.5, 13.7, 14, 180 }, + [2] = { 46.3, 13.5, 14, 180 }, + [3] = { 46.4, 13.5, 14, 180 }, + [4] = { 46.6, 13.4, 14, 180 }, + [5] = { 46.3, 13.4, 14, 180 }, + }, + }, + [180351] = { + ["coords"] = { + [1] = { 46.6, 13.4, 14, 180 }, + }, + }, + [180352] = { + ["coords"] = { + [1] = { 46.5, 13.7, 14, 180 }, + [2] = { 46.4, 13.5, 14, 180 }, + [3] = { 46.6, 13.5, 14, 180 }, + [4] = { 46.3, 13.5, 14, 180 }, + [5] = { 46.5, 13.2, 14, 180 }, + [6] = { 52.6, 99.5, 1637, 180 }, + }, + }, + [180353] = { + ["coords"] = { + [1] = { 52.8, 37, 1, 180 }, + [2] = { 52.9, 36.7, 1, 180 }, + [3] = { 52.8, 36.7, 1, 180 }, + [4] = { 52.9, 36.4, 1, 180 }, + }, + }, + [180358] = { + ["coords"] = {}, + }, + [180362] = { + ["coords"] = {}, + }, + [180364] = { + ["coords"] = {}, + }, + [180365] = { + ["coords"] = {}, + }, + [180366] = { + ["coords"] = {}, + }, + [180367] = { + ["coords"] = { + [1] = { 13.4, 15.1, 33, 900 }, + }, + }, + [180368] = { + ["coords"] = {}, + }, + [180369] = { + ["coords"] = {}, + }, + [180370] = { + ["coords"] = { + [1] = { 52.8, 36.9, 1, 10 }, + [2] = { 52.8, 36.8, 1, 10 }, + [3] = { 52.8, 36.7, 1, 10 }, + [4] = { 52.8, 36.6, 1, 10 }, + [5] = { 52.8, 36.5, 1, 10 }, + [6] = { 52.8, 36.4, 1, 10 }, + [7] = { 46.4, 13.7, 14, 10 }, + [8] = { 46.5, 13.6, 14, 10 }, + [9] = { 46.3, 13.6, 14, 10 }, + [10] = { 46.6, 13.5, 14, 10 }, + [11] = { 46.6, 13.4, 14, 10 }, + [12] = { 46.3, 13.4, 14, 10 }, + [13] = { 46.4, 13.3, 14, 10 }, + [14] = { 46.5, 13.3, 14, 10 }, + [15] = { 52.3, 99.8, 1637, 10 }, + [16] = { 52.8, 99.7, 1637, 10 }, + }, + }, + [180371] = { + ["coords"] = { + [1] = { 52.8, 36.9, 1, 10 }, + [2] = { 52.8, 36.8, 1, 10 }, + [3] = { 52.8, 36.7, 1, 10 }, + [4] = { 52.8, 36.6, 1, 10 }, + [5] = { 52.8, 36.5, 1, 10 }, + [6] = { 52.8, 36.4, 1, 10 }, + [7] = { 46.4, 13.7, 14, 10 }, + [8] = { 46.5, 13.6, 14, 10 }, + [9] = { 46.3, 13.6, 14, 10 }, + [10] = { 46.6, 13.5, 14, 10 }, + [11] = { 46.6, 13.4, 14, 10 }, + [12] = { 46.3, 13.4, 14, 10 }, + [13] = { 46.4, 13.3, 14, 10 }, + [14] = { 46.5, 13.3, 14, 10 }, + [15] = { 52.3, 99.8, 1637, 10 }, + [16] = { 52.8, 99.7, 1637, 10 }, + }, + }, + [180372] = { + ["coords"] = { + [1] = { 52.8, 36.9, 1, 10 }, + [2] = { 52.8, 36.8, 1, 10 }, + [3] = { 52.8, 36.7, 1, 10 }, + [4] = { 52.8, 36.6, 1, 10 }, + [5] = { 52.8, 36.5, 1, 10 }, + [6] = { 52.8, 36.4, 1, 10 }, + [7] = { 46.4, 13.7, 14, 10 }, + [8] = { 46.5, 13.6, 14, 10 }, + [9] = { 46.3, 13.6, 14, 10 }, + [10] = { 46.6, 13.5, 14, 10 }, + [11] = { 46.6, 13.4, 14, 10 }, + [12] = { 46.3, 13.4, 14, 10 }, + [13] = { 46.4, 13.3, 14, 10 }, + [14] = { 46.5, 13.3, 14, 10 }, + [15] = { 52.3, 99.8, 1637, 10 }, + [16] = { 52.8, 99.7, 1637, 10 }, + }, + }, + [180373] = { + ["coords"] = { + [1] = { 52.8, 36.9, 1, 10 }, + [2] = { 52.8, 36.8, 1, 10 }, + [3] = { 52.8, 36.6, 1, 10 }, + [4] = { 52.8, 36.5, 1, 10 }, + }, + }, + [180374] = { + ["coords"] = { + [1] = { 46.5, 13.7, 14, 10 }, + [2] = { 46.4, 13.6, 14, 10 }, + [3] = { 46.6, 13.6, 14, 10 }, + [4] = { 46.3, 13.6, 14, 10 }, + [5] = { 46.3, 13.5, 14, 10 }, + [6] = { 46.5, 13.5, 14, 10 }, + [7] = { 46.6, 13.4, 14, 10 }, + [8] = { 46.6, 13.3, 14, 10 }, + [9] = { 46.3, 13.3, 14, 10 }, + [10] = { 46.5, 13.3, 14, 10 }, + [11] = { 46.4, 13.2, 14, 10 }, + [12] = { 52.2, 99.9, 1637, 10 }, + [13] = { 53, 99.8, 1637, 10 }, + [14] = { 52.4, 99.7, 1637, 10 }, + }, + }, + [180375] = { + ["coords"] = { + [1] = { 13.4, 15.1, 33, 180 }, + }, + }, + [180376] = { + ["coords"] = {}, + }, + [180377] = { + ["coords"] = {}, + }, + [180378] = { + ["coords"] = {}, + }, + [180379] = { + ["coords"] = {}, + }, + [180380] = { + ["coords"] = {}, + }, + [180381] = { + ["coords"] = {}, + }, + [180382] = { + ["coords"] = {}, + }, + [180383] = { + ["coords"] = {}, + }, + [180384] = { + ["coords"] = {}, + }, + [180385] = { + ["coords"] = {}, + }, + [180386] = { + ["coords"] = {}, + }, + [180391] = { + ["coords"] = { + [1] = { 27.7, 77.7, 33, 0 }, + [2] = { 28.2, 77.3, 33, 0 }, + [3] = { 27.5, 77.2, 33, 0 }, + [4] = { 27.1, 77, 33, 0 }, + [5] = { 27.9, 76.8, 33, 0 }, + [6] = { 26.6, 76.6, 33, 0 }, + [7] = { 28.3, 75.7, 33, 0 }, + [8] = { 28.9, 75, 33, 0 }, + [9] = { 27.9, 74.1, 33, 0 }, + [10] = { 26.6, 73.6, 33, 0 }, + [11] = { 15.5, 16.4, 33, 0 }, + [12] = { 14.4, 16.4, 33, 0 }, + [13] = { 15.5, 14.8, 33, 0 }, + [14] = { 14.4, 14.8, 33, 0 }, + }, + ["fac"] = "AH", + }, + [180392] = { + ["coords"] = {}, + }, + [180393] = { + ["coords"] = {}, + }, + [180394] = { + ["coords"] = { + [1] = { 73.7, 14.4, 130, 180 }, + [2] = { 41, 32.3, 215, 180 }, + [3] = { 37.3, 29.2, 215, 180 }, + [4] = { 38.8, 28.5, 215, 180 }, + [5] = { 40.3, 23.9, 215, 180 }, + [6] = { 54.1, 96.1, 1497, 180 }, + [7] = { 65.6, 55.2, 1497, 180 }, + [8] = { 73.4, 44.6, 1497, 180 }, + [9] = { 58.5, 43.6, 1497, 180 }, + [10] = { 50.2, 65.9, 1637, 180 }, + [11] = { 47.2, 65.2, 1637, 180 }, + [12] = { 20.2, 56.1, 1637, 180 }, + [13] = { 73.4, 36.4, 1637, 180 }, + [14] = { 55.1, 75.8, 1638, 180 }, + [15] = { 36.6, 60.9, 1638, 180 }, + [16] = { 44.5, 57.4, 1638, 180 }, + [17] = { 51.5, 34.8, 1638, 180 }, + }, + }, + [180395] = { + ["coords"] = { + [1] = { 74.1, 12, 130, 180 }, + [2] = { 41, 32.3, 215, 180 }, + [3] = { 37.2, 29.2, 215, 180 }, + [4] = { 38.8, 28.5, 215, 180 }, + [5] = { 40.3, 23.9, 215, 180 }, + [6] = { 55.9, 85.4, 1497, 180 }, + [7] = { 65.7, 55.2, 1497, 180 }, + [8] = { 73.4, 44.6, 1497, 180 }, + [9] = { 58.5, 43.6, 1497, 180 }, + [10] = { 50.3, 65.9, 1637, 180 }, + [11] = { 47.2, 65.2, 1637, 180 }, + [12] = { 20.2, 56.1, 1637, 180 }, + [13] = { 73.5, 36.2, 1637, 180 }, + [14] = { 55.1, 76, 1638, 180 }, + [15] = { 36.6, 60.9, 1638, 180 }, + [16] = { 44.5, 57.4, 1638, 180 }, + [17] = { 51.5, 34.7, 1638, 180 }, + }, + }, + [180396] = { + ["coords"] = { + [1] = { 75.4, 13.7, 130, 180 }, + [2] = { 37.3, 29.2, 215, 180 }, + [3] = { 38.8, 28.5, 215, 180 }, + [4] = { 40.3, 23.9, 215, 180 }, + [5] = { 35.3, 22.7, 215, 180 }, + [6] = { 89, 50.1, 405, 180 }, + [7] = { 61.5, 93.1, 1497, 180 }, + [8] = { 65.6, 55.1, 1497, 180 }, + [9] = { 73.4, 44.6, 1497, 180 }, + [10] = { 58.6, 43.5, 1497, 180 }, + [11] = { 50.2, 65.8, 1637, 180 }, + [12] = { 47.2, 65.2, 1637, 180 }, + [13] = { 20.2, 56.1, 1637, 180 }, + [14] = { 73.3, 36.4, 1637, 180 }, + [15] = { 36.6, 60.9, 1638, 180 }, + [16] = { 44.4, 57.5, 1638, 180 }, + [17] = { 51.5, 34.7, 1638, 180 }, + [18] = { 27.2, 28.7, 1638, 180 }, + }, + }, + [180397] = { + ["coords"] = { + [1] = { 55.3, 35.3, 1, 180 }, + [2] = { 24.9, 62.2, 141, 180 }, + [3] = { 25, 62.1, 141, 180 }, + [4] = { 28.8, 56.3, 141, 180 }, + [5] = { 26, 55, 141, 180 }, + [6] = { 32.1, 55, 141, 180 }, + [7] = { 28.9, 54.4, 141, 180 }, + [8] = { 62.2, 66, 1519, 180 }, + [9] = { 62.3, 65.9, 1519, 180 }, + [10] = { 58.5, 63.4, 1519, 180 }, + [11] = { 58.6, 63.4, 1519, 180 }, + [12] = { 54, 62.9, 1519, 180 }, + [13] = { 79.4, 20.4, 1519, 180 }, + [14] = { 76.8, 15.5, 1519, 180 }, + [15] = { 59.8, 14, 1519, 180 }, + [16] = { 59.8, 13.9, 1519, 180 }, + [17] = { 26.2, 88.7, 1537, 180 }, + [18] = { 26.3, 88.5, 1537, 180 }, + [19] = { 69.5, 88.3, 1537, 180 }, + [20] = { 69.5, 88.2, 1537, 180 }, + [21] = { 16.6, 66.4, 1537, 180 }, + [22] = { 16.4, 66, 1537, 180 }, + [23] = { 58.1, 50.1, 1537, 180 }, + [24] = { 57.9, 50, 1537, 180 }, + [25] = { 34.4, 20.1, 1537, 180 }, + [26] = { 37.1, 73.4, 1657, 180 }, + [27] = { 37.5, 73, 1657, 180 }, + [28] = { 55.6, 45.1, 1657, 180 }, + [29] = { 42.5, 38.9, 1657, 180 }, + [30] = { 42.4, 38.9, 1657, 180 }, + [31] = { 71.8, 38.7, 1657, 180 }, + [32] = { 71.7, 38.6, 1657, 180 }, + [33] = { 56.3, 35.9, 1657, 180 }, + }, + }, + [180398] = { + ["coords"] = { + [1] = { 55.3, 35.3, 1, 180 }, + [2] = { 25, 62.1, 141, 180 }, + [3] = { 26, 55, 141, 180 }, + [4] = { 32.1, 55, 141, 180 }, + [5] = { 28.8, 54.4, 141, 180 }, + [6] = { 62.1, 66.1, 1519, 180 }, + [7] = { 58.7, 63.6, 1519, 180 }, + [8] = { 54, 62.9, 1519, 180 }, + [9] = { 78.4, 14.8, 1519, 180 }, + [10] = { 59.8, 13.9, 1519, 180 }, + [11] = { 69, 89, 1537, 180 }, + [12] = { 26.3, 88.3, 1537, 180 }, + [13] = { 16.5, 66, 1537, 180 }, + [14] = { 57.9, 50.1, 1537, 180 }, + [15] = { 34.4, 20.1, 1537, 180 }, + [16] = { 37.4, 73.1, 1657, 180 }, + [17] = { 42.4, 38.9, 1657, 180 }, + [18] = { 71.7, 38.8, 1657, 180 }, + [19] = { 55.8, 35.9, 1657, 180 }, + }, + }, + [180399] = { + ["coords"] = { + [1] = { 55.3, 35.3, 1, 180 }, + [2] = { 25, 62.1, 141, 180 }, + [3] = { 28.8, 56.3, 141, 180 }, + [4] = { 26, 55, 141, 180 }, + [5] = { 32.1, 55, 141, 180 }, + [6] = { 62.3, 65.9, 1519, 180 }, + [7] = { 58.5, 63.4, 1519, 180 }, + [8] = { 54.1, 62.9, 1519, 180 }, + [9] = { 76.9, 15.5, 1519, 180 }, + [10] = { 59.9, 13.8, 1519, 180 }, + [11] = { 26.2, 88.6, 1537, 180 }, + [12] = { 69.5, 88.2, 1537, 180 }, + [13] = { 16.5, 66.1, 1537, 180 }, + [14] = { 58, 50.1, 1537, 180 }, + [15] = { 34.3, 20.1, 1537, 180 }, + [16] = { 37.5, 72.9, 1657, 180 }, + [17] = { 55.7, 45.1, 1657, 180 }, + [18] = { 42.5, 39, 1657, 180 }, + [19] = { 71.8, 38.7, 1657, 180 }, + }, + }, + [180400] = { + ["coords"] = { + [1] = { 55.3, 35.3, 1, 180 }, + [2] = { 24.9, 62.2, 141, 180 }, + [3] = { 26, 55, 141, 180 }, + [4] = { 32.1, 55, 141, 180 }, + [5] = { 28.9, 54.4, 141, 180 }, + [6] = { 62.2, 66, 1519, 180 }, + [7] = { 58.5, 63.5, 1519, 180 }, + [8] = { 54.1, 63, 1519, 180 }, + [9] = { 79.4, 20.3, 1519, 180 }, + [10] = { 59.8, 13.9, 1519, 180 }, + [11] = { 26.4, 88.4, 1537, 180 }, + [12] = { 69.5, 88.2, 1537, 180 }, + [13] = { 16.6, 66.4, 1537, 180 }, + [14] = { 57.9, 49.9, 1537, 180 }, + [15] = { 34.4, 20.1, 1537, 180 }, + [16] = { 37.2, 73.4, 1657, 180 }, + [17] = { 42.4, 39, 1657, 180 }, + [18] = { 71.7, 38.7, 1657, 180 }, + [19] = { 56.3, 35.9, 1657, 180 }, + }, + }, + [180401] = { + ["coords"] = { + [1] = { 13.7, 15.3, 33, 0 }, + }, + }, + [180402] = { + ["coords"] = { + [1] = { 13.7, 15.3, 33, 0 }, + }, + }, + [180403] = { + ["coords"] = { + [1] = { 27.4, 76.8, 33, 0 }, + }, + }, + [180404] = { + ["coords"] = { + [1] = { 13.7, 15.7, 33, 0 }, + [2] = { 13.9, 15.6, 33, 0 }, + [3] = { 14, 15.3, 33, 0 }, + [4] = { 13.9, 14.9, 33, 0 }, + }, + }, + [180405] = { + ["coords"] = { + [1] = { 46.7, 53.6, 1, 120 }, + [2] = { 47.4, 53.6, 1, 120 }, + [3] = { 46, 52, 1, 120 }, + [4] = { 53.6, 35.1, 1, 120 }, + [5] = { 2.8, 47.4, 3, 120 }, + [6] = { 3.6, 47.2, 3, 120 }, + [7] = { 3.9, 46.6, 3, 120 }, + [8] = { 2.6, 45.2, 3, 120 }, + [9] = { 48, 58.3, 8, 120 }, + [10] = { 44.9, 55.2, 8, 120 }, + [11] = { 46.2, 55, 8, 120 }, + [12] = { 43.5, 54.7, 8, 120 }, + [13] = { 45, 49.3, 8, 120 }, + [14] = { 74.3, 48.3, 10, 120 }, + [15] = { 77.5, 48.3, 10, 120 }, + [16] = { 73.8, 48.3, 10, 120 }, + [17] = { 79.5, 47.5, 10, 120 }, + [18] = { 74.3, 47.2, 10, 120 }, + [19] = { 74.1, 47.2, 10, 120 }, + [20] = { 71.8, 46.3, 10, 120 }, + [21] = { 75.4, 45.2, 10, 120 }, + [22] = { 73.1, 45, 10, 120 }, + [23] = { 78.9, 44.7, 10, 120 }, + [24] = { 74.3, 44.1, 10, 120 }, + [25] = { 74.5, 43.8, 10, 120 }, + [26] = { 10.6, 61, 11, 120 }, + [27] = { 11, 60.8, 11, 120 }, + [28] = { 10.7, 59.7, 11, 120 }, + [29] = { 10.9, 54.7, 11, 0 }, + [30] = { 43.7, 66.8, 12, 120 }, + [31] = { 43, 66.2, 12, 120 }, + [32] = { 41.2, 66.1, 12, 120 }, + [33] = { 43.5, 65.8, 12, 120 }, + [34] = { 41.4, 65.6, 12, 120 }, + [35] = { 43.8, 65.5, 12, 120 }, + [36] = { 43, 65.4, 12, 120 }, + [37] = { 32.1, 50.4, 12, 120 }, + [38] = { 52.7, 44.4, 14, 120 }, + [39] = { 54.2, 43.8, 14, 120 }, + [40] = { 53.2, 42.7, 14, 120 }, + [41] = { 51.8, 42.1, 14, 120 }, + [42] = { 54.6, 41.5, 14, 120 }, + [43] = { 52.9, 40.6, 14, 120 }, + [44] = { 45.3, 11.9, 14, 120 }, + [45] = { 66.3, 45.7, 15, 120 }, + [46] = { 66, 45.1, 15, 120 }, + [47] = { 66.2, 45.1, 15, 120 }, + [48] = { 44.8, 59.2, 17, 120 }, + [49] = { 45.3, 58.8, 17, 120 }, + [50] = { 62.2, 39.3, 17, 120 }, + [51] = { 61.8, 39.3, 17, 120 }, + [52] = { 62, 39.2, 17, 120 }, + [53] = { 62, 38.7, 17, 120 }, + [54] = { 62.2, 38.2, 17, 120 }, + [55] = { 62.9, 38.1, 17, 120 }, + [56] = { 62.3, 37.6, 17, 120 }, + [57] = { 52.2, 32.2, 17, 120 }, + [58] = { 51.9, 30.2, 17, 120 }, + [59] = { 52.1, 30.2, 17, 120 }, + [60] = { 51.5, 30.2, 17, 120 }, + [61] = { 52.1, 30, 17, 120 }, + [62] = { 51.9, 29.8, 17, 120 }, + [63] = { 52.2, 29.7, 17, 120 }, + [64] = { 52.4, 29.4, 17, 120 }, + [65] = { 27.3, 77.3, 33, 120 }, + [66] = { 26.7, 77.1, 33, 120 }, + [67] = { 31.3, 29.6, 33, 120 }, + [68] = { 32.7, 29.6, 33, 120 }, + [69] = { 31.2, 28.6, 33, 120 }, + [70] = { 32.1, 27.3, 33, 120 }, + [71] = { 59.2, 89.1, 36, 120 }, + [72] = { 62.3, 83.3, 36, 120 }, + [73] = { 62.9, 83, 36, 120 }, + [74] = { 61.7, 82.3, 36, 120 }, + [75] = { 62.3, 82.1, 36, 120 }, + [76] = { 60.3, 81.3, 36, 120 }, + [77] = { 58.5, 80, 36, 120 }, + [78] = { 35, 48.5, 38, 120 }, + [79] = { 35, 47.6, 38, 120 }, + [80] = { 35.5, 47.3, 38, 120 }, + [81] = { 52.5, 53.6, 40, 120 }, + [82] = { 53, 53.1, 40, 120 }, + [83] = { 56.7, 48.2, 40, 120 }, + [84] = { 57, 46.1, 40, 120 }, + [85] = { 30.7, 58.5, 44, 120 }, + [86] = { 32.1, 49.1, 44, 120 }, + [87] = { 29.7, 46.3, 44, 120 }, + [88] = { 27.2, 45.9, 44, 120 }, + [89] = { 26.3, 44.3, 44, 120 }, + [90] = { 74.5, 34, 45, 120 }, + [91] = { 73.7, 32.3, 45, 120 }, + [92] = { 72.9, 32.3, 45, 120 }, + [93] = { 73.6, 30.5, 45, 120 }, + [94] = { 77.8, 81.9, 47, 120 }, + [95] = { 78.4, 81.4, 47, 120 }, + [96] = { 77.9, 81.3, 47, 120 }, + [97] = { 78.7, 80.5, 47, 120 }, + [98] = { 14, 45.9, 47, 0 }, + [99] = { 14.6, 45.7, 47, 0 }, + [100] = { 13.6, 42.4, 47, 0 }, + [101] = { 13.7, 41.9, 47, 0 }, + [102] = { 13.3, 41.6, 47, 0 }, + [103] = { 81.8, 38.7, 51, 120 }, + [104] = { 82.7, 38.5, 51, 120 }, + [105] = { 83.1, 37.8, 51, 120 }, + [106] = { 81.7, 36.3, 51, 120 }, + [107] = { 55.7, 69.4, 85, 120 }, + [108] = { 60.9, 59.4, 85, 120 }, + [109] = { 60.9, 58.7, 85, 120 }, + [110] = { 60.4, 53.6, 85, 120 }, + [111] = { 61.6, 53.1, 85, 120 }, + [112] = { 60, 53.1, 85, 120 }, + [113] = { 60.3, 52.9, 85, 120 }, + [114] = { 61.5, 52.7, 85, 120 }, + [115] = { 59.4, 52.4, 85, 120 }, + [116] = { 60, 52.2, 85, 120 }, + [117] = { 61.5, 52, 85, 120 }, + [118] = { 61, 51.8, 85, 120 }, + [119] = { 61.7, 51.4, 85, 120 }, + [120] = { 59.1, 46.5, 85, 120 }, + [121] = { 45.7, 42.4, 130, 120 }, + [122] = { 44.9, 42, 130, 120 }, + [123] = { 42.7, 41.4, 130, 120 }, + [124] = { 43.4, 41.2, 130, 120 }, + [125] = { 57.4, 60.7, 141, 120 }, + [126] = { 56.2, 60.5, 141, 120 }, + [127] = { 56, 59.7, 141, 120 }, + [128] = { 56.3, 59.3, 141, 120 }, + [129] = { 25.6, 56.2, 141, 120 }, + [130] = { 25.8, 55.6, 141, 120 }, + [131] = { 31.2, 50, 141, 0 }, + [132] = { 31.1, 49.9, 141, 0 }, + [133] = { 36.6, 44.6, 148, 120 }, + [134] = { 36.7, 44, 148, 120 }, + [135] = { 37.2, 43.9, 148, 120 }, + [136] = { 36.4, 43.7, 148, 120 }, + [137] = { 36.9, 43.3, 148, 120 }, + [138] = { 46.8, 60.4, 215, 120 }, + [139] = { 46.1, 60.3, 215, 120 }, + [140] = { 48.5, 59.7, 215, 120 }, + [141] = { 37.9, 29.9, 215, 120 }, + [142] = { 39, 29.3, 215, 120 }, + [143] = { 37.3, 28.8, 215, 120 }, + [144] = { 39, 28, 215, 120 }, + [145] = { 37.1, 27.4, 215, 120 }, + [146] = { 35.7, 21.9, 215, 120 }, + [147] = { 35.1, 21.2, 215, 120 }, + [148] = { 48.8, 59.5, 267, 120 }, + [149] = { 52, 59.2, 267, 120 }, + [150] = { 51, 59.1, 267, 120 }, + [151] = { 51.8, 58.7, 267, 120 }, + [152] = { 48.1, 58.5, 267, 120 }, + [153] = { 51.4, 58.2, 267, 120 }, + [154] = { 50.5, 56.9, 267, 120 }, + [155] = { 49.3, 55.8, 267, 120 }, + [156] = { 48.8, 54.9, 267, 120 }, + [157] = { 60.6, 26.4, 267, 120 }, + [158] = { 63.3, 21.3, 267, 120 }, + [159] = { 63.9, 21.1, 267, 120 }, + [160] = { 62.9, 20.4, 267, 120 }, + [161] = { 63.4, 20.3, 267, 120 }, + [162] = { 61.6, 19.6, 267, 120 }, + [163] = { 60.1, 18.5, 267, 120 }, + [164] = { 99.4, 5.2, 267, 0 }, + [165] = { 98.9, 1, 267, 0 }, + [166] = { 73, 61.5, 331, 120 }, + [167] = { 73.8, 61, 331, 120 }, + [168] = { 73.9, 61, 331, 120 }, + [169] = { 37.4, 53.8, 331, 120 }, + [170] = { 37, 50.5, 331, 120 }, + [171] = { 36.4, 50.2, 331, 120 }, + [172] = { 37.2, 49.4, 331, 120 }, + [173] = { 36.9, 49.2, 331, 120 }, + [174] = { 36.7, 49.2, 331, 120 }, + [175] = { 33.7, 48, 331, 120 }, + [176] = { 74.4, 44.6, 357, 120 }, + [177] = { 74.7, 44.3, 357, 120 }, + [178] = { 31.3, 43.6, 357, 0 }, + [179] = { 30.7, 43.6, 357, 0 }, + [180] = { 31.1, 42.5, 357, 0 }, + [181] = { 46.2, 51.2, 400, 120 }, + [182] = { 45.9, 51.1, 400, 120 }, + [183] = { 23.9, 68.8, 405, 120 }, + [184] = { 24.6, 68.6, 405, 120 }, + [185] = { 89.4, 49.2, 405, 120 }, + [186] = { 88.7, 48.4, 405, 120 }, + [187] = { 66.1, 7.7, 405, 120 }, + [188] = { 65.8, 7.7, 405, 120 }, + [189] = { 66.7, 7.5, 405, 120 }, + [190] = { 65.8, 6.3, 405, 120 }, + [191] = { 66.6, 6, 405, 120 }, + [192] = { 40.7, 82.8, 406, 120 }, + [193] = { 40.3, 82.8, 406, 120 }, + [194] = { 41.2, 82.6, 406, 120 }, + [195] = { 40.3, 81.5, 406, 120 }, + [196] = { 41.1, 81.2, 406, 120 }, + [197] = { 47.6, 62.2, 406, 120 }, + [198] = { 47.5, 61.2, 406, 120 }, + [199] = { 48.2, 61.1, 406, 120 }, + [200] = { 52.6, 29, 440, 120 }, + [201] = { 52.3, 29, 440, 120 }, + [202] = { 52, 28.7, 440, 120 }, + [203] = { 51.9, 28.7, 440, 120 }, + [204] = { 51.6, 27.9, 440, 120 }, + [205] = { 52.5, 27.8, 440, 120 }, + [206] = { 52, 27.7, 440, 120 }, + [207] = { 50.2, 27.7, 440, 120 }, + [208] = { 52.5, 27.6, 440, 120 }, + [209] = { 51, 27.6, 440, 120 }, + [210] = { 50.9, 27.5, 440, 120 }, + [211] = { 51.4, 27.2, 440, 120 }, + [212] = { 52.8, 27.1, 440, 120 }, + [213] = { 51.9, 27, 440, 120 }, + [214] = { 50.7, 26.7, 440, 120 }, + [215] = { 61.3, 39.5, 618, 120 }, + [216] = { 61.3, 38.8, 618, 120 }, + [217] = { 61.4, 38.7, 618, 120 }, + [218] = { 61.7, 38.4, 618, 120 }, + [219] = { 61.3, 38.2, 618, 120 }, + [220] = { 60.6, 38, 618, 120 }, + [221] = { 60.8, 37.9, 618, 120 }, + [222] = { 61.7, 37.5, 618, 120 }, + [223] = { 61.4, 37.5, 618, 120 }, + [224] = { 61, 37.1, 618, 120 }, + [225] = { 51.7, 38.2, 1377, 120 }, + [226] = { 65.6, 55.9, 1497, 120 }, + [227] = { 64.1, 50.9, 1497, 120 }, + [228] = { 63.9, 49.5, 1497, 120 }, + [229] = { 68.6, 48.9, 1497, 120 }, + [230] = { 63.3, 48.8, 1497, 120 }, + [231] = { 64.7, 46, 1497, 120 }, + [232] = { 70, 45.9, 1497, 120 }, + [233] = { 61.9, 45.9, 1497, 120 }, + [234] = { 65.4, 45, 1497, 120 }, + [235] = { 67.3, 42.2, 1497, 120 }, + [236] = { 62.8, 40.1, 1497, 120 }, + [237] = { 68.6, 39.4, 1497, 120 }, + [238] = { 73, 39, 1497, 120 }, + [239] = { 64.7, 38, 1497, 120 }, + [240] = { 63.7, 36.4, 1497, 120 }, + [241] = { 68.5, 35.8, 1497, 120 }, + [242] = { 71.3, 92.3, 1519, 120 }, + [243] = { 57.7, 71.6, 1519, 120 }, + [244] = { 55.4, 71.5, 1519, 120 }, + [245] = { 53.3, 64.4, 1519, 120 }, + [246] = { 59.3, 64.1, 1519, 120 }, + [247] = { 55.5, 63.7, 1519, 120 }, + [248] = { 57.9, 62.2, 1519, 120 }, + [249] = { 54.1, 59.4, 1519, 120 }, + [250] = { 15.5, 87.1, 1537, 120 }, + [251] = { 32.6, 77.7, 1537, 120 }, + [252] = { 27.2, 73.5, 1537, 120 }, + [253] = { 26.3, 73.5, 1537, 120 }, + [254] = { 27.1, 70, 1537, 120 }, + [255] = { 29.1, 69.6, 1537, 120 }, + [256] = { 35.8, 67.6, 1537, 120 }, + [257] = { 33.7, 65.7, 1537, 120 }, + [258] = { 24.2, 63, 1537, 120 }, + [259] = { 32.6, 62.8, 1537, 120 }, + [260] = { 25.3, 60.6, 1537, 120 }, + [261] = { 29.7, 58.1, 1537, 120 }, + [262] = { 21.1, 53.9, 1537, 120 }, + [263] = { 20.4, 51.9, 1537, 120 }, + [264] = { 48.4, 94.8, 1637, 120 }, + [265] = { 49.2, 71.4, 1637, 120 }, + [266] = { 48.4, 69.2, 1637, 120 }, + [267] = { 53.7, 68.8, 1637, 120 }, + [268] = { 48.1, 67.3, 1637, 120 }, + [269] = { 53.8, 65.8, 1637, 120 }, + [270] = { 47.4, 65.6, 1637, 120 }, + [271] = { 52.8, 63.5, 1637, 120 }, + [272] = { 54.1, 62.7, 1637, 120 }, + [273] = { 39.7, 64.1, 1638, 120 }, + [274] = { 45.3, 61.1, 1638, 120 }, + [275] = { 36.7, 58.8, 1638, 120 }, + [276] = { 45.2, 54.7, 1638, 120 }, + [277] = { 36, 51.8, 1638, 120 }, + [278] = { 28.8, 24.7, 1638, 120 }, + [279] = { 26, 21.3, 1638, 120 }, + [280] = { 40.3, 44.5, 1657, 120 }, + [281] = { 41.4, 41.6, 1657, 120 }, + [282] = { 67.1, 14.6, 1657, 0 }, + [283] = { 67, 14.1, 1657, 0 }, + }, + }, + [180406] = { + ["coords"] = { + [1] = { 47, 52.8, 1, 120 }, + [2] = { 46, 51.8, 1, 120 }, + [3] = { 46.8, 51.7, 1, 120 }, + [4] = { 96.4, 46.1, 1, 120 }, + [5] = { 96.3, 45.7, 1, 120 }, + [6] = { 3.6, 47.4, 3, 120 }, + [7] = { 2.6, 46.7, 3, 120 }, + [8] = { 3.9, 44.4, 3, 120 }, + [9] = { 45.4, 55.9, 8, 120 }, + [10] = { 45.6, 55.5, 8, 120 }, + [11] = { 43.5, 55.3, 8, 120 }, + [12] = { 46.7, 51.7, 8, 120 }, + [13] = { 44.6, 49.6, 8, 120 }, + [14] = { 75.5, 49.5, 10, 120 }, + [15] = { 74.3, 49, 10, 120 }, + [16] = { 75.1, 48.1, 10, 120 }, + [17] = { 71.8, 47.6, 10, 120 }, + [18] = { 74.3, 47, 10, 120 }, + [19] = { 73.5, 46.9, 10, 120 }, + [20] = { 77.5, 46.8, 10, 120 }, + [21] = { 74.2, 45.7, 10, 120 }, + [22] = { 73.5, 45.4, 10, 120 }, + [23] = { 74.4, 45.2, 10, 120 }, + [24] = { 74.3, 44.9, 10, 120 }, + [25] = { 75.6, 44.9, 10, 120 }, + [26] = { 78.7, 44.6, 10, 120 }, + [27] = { 10.4, 61, 11, 120 }, + [28] = { 10.5, 60, 11, 120 }, + [29] = { 10.5, 59.9, 11, 120 }, + [30] = { 10.4, 55.5, 11, 120 }, + [31] = { 41.7, 67.1, 12, 120 }, + [32] = { 43.3, 66.7, 12, 120 }, + [33] = { 43.3, 66.4, 12, 120 }, + [34] = { 43.4, 66.4, 12, 120 }, + [35] = { 41.7, 66.1, 12, 120 }, + [36] = { 44.2, 66, 12, 120 }, + [37] = { 41.6, 65.8, 12, 120 }, + [38] = { 42.9, 65.7, 12, 120 }, + [39] = { 43.3, 65.6, 12, 120 }, + [40] = { 32.8, 49.5, 12, 120 }, + [41] = { 54.1, 43.9, 14, 120 }, + [42] = { 52.1, 43.4, 14, 120 }, + [43] = { 51.9, 41.9, 14, 120 }, + [44] = { 52, 41.1, 14, 120 }, + [45] = { 53.1, 41, 14, 120 }, + [46] = { 54, 40.6, 14, 120 }, + [47] = { 47.2, 6.5, 14, 120 }, + [48] = { 66.6, 45.6, 15, 120 }, + [49] = { 66.1, 45.5, 15, 120 }, + [50] = { 45.3, 58.7, 17, 120 }, + [51] = { 45, 58.3, 17, 120 }, + [52] = { 62, 39.4, 17, 120 }, + [53] = { 62.1, 39.2, 17, 120 }, + [54] = { 61.8, 39.1, 17, 120 }, + [55] = { 62.6, 38.5, 17, 120 }, + [56] = { 61.7, 38.3, 17, 120 }, + [57] = { 62.7, 37.4, 17, 120 }, + [58] = { 52.2, 32, 17, 120 }, + [59] = { 52, 30.2, 17, 120 }, + [60] = { 52.1, 30.2, 17, 120 }, + [61] = { 51.4, 30.2, 17, 120 }, + [62] = { 51.9, 30, 17, 120 }, + [63] = { 51.7, 29.8, 17, 120 }, + [64] = { 52.1, 29.8, 17, 120 }, + [65] = { 50.8, 29.2, 17, 120 }, + [66] = { 27.6, 77.7, 33, 120 }, + [67] = { 26.6, 76.3, 33, 120 }, + [68] = { 32.6, 29.7, 33, 120 }, + [69] = { 31.3, 29.5, 33, 120 }, + [70] = { 32.8, 28.9, 33, 120 }, + [71] = { 32, 27.3, 33, 120 }, + [72] = { 58.8, 88.8, 36, 120 }, + [73] = { 62.5, 83.4, 36, 120 }, + [74] = { 63, 82.8, 36, 120 }, + [75] = { 61.7, 82.5, 36, 120 }, + [76] = { 60.3, 82.4, 36, 120 }, + [77] = { 62.8, 82.3, 36, 120 }, + [78] = { 61.5, 81.4, 36, 120 }, + [79] = { 34.6, 49.1, 38, 120 }, + [80] = { 35.4, 48.8, 38, 120 }, + [81] = { 34.4, 48.3, 38, 120 }, + [82] = { 52.7, 53.8, 40, 120 }, + [83] = { 56.7, 52.5, 40, 120 }, + [84] = { 57.5, 47.8, 40, 120 }, + [85] = { 56.2, 47.2, 40, 120 }, + [86] = { 31.7, 57.4, 44, 120 }, + [87] = { 33.7, 49.3, 44, 120 }, + [88] = { 29.3, 46.3, 44, 120 }, + [89] = { 27.2, 46.1, 44, 120 }, + [90] = { 27.4, 44.1, 44, 120 }, + [91] = { 74.4, 37.9, 45, 120 }, + [92] = { 73.7, 34, 45, 120 }, + [93] = { 74.5, 33.9, 45, 120 }, + [94] = { 73.8, 32.3, 45, 120 }, + [95] = { 73.3, 30.4, 45, 120 }, + [96] = { 78.2, 81.7, 47, 120 }, + [97] = { 78.1, 81, 47, 120 }, + [98] = { 78.6, 80.8, 47, 120 }, + [99] = { 14.4, 41.8, 47, 0 }, + [100] = { 12.9, 41.7, 47, 0 }, + [101] = { 14, 41.4, 47, 0 }, + [102] = { 82.8, 38.7, 51, 120 }, + [103] = { 81.6, 37.9, 51, 120 }, + [104] = { 83.1, 35.3, 51, 120 }, + [105] = { 55.5, 70.3, 85, 120 }, + [106] = { 56.6, 70, 85, 120 }, + [107] = { 60.7, 59.4, 85, 120 }, + [108] = { 61.4, 59.1, 85, 120 }, + [109] = { 61.1, 58.3, 85, 120 }, + [110] = { 60.5, 53.1, 85, 120 }, + [111] = { 61.5, 53.1, 85, 120 }, + [112] = { 60, 52.5, 85, 120 }, + [113] = { 59.6, 52.2, 85, 120 }, + [114] = { 62, 52, 85, 120 }, + [115] = { 61.7, 52, 85, 120 }, + [116] = { 61.7, 51.3, 85, 120 }, + [117] = { 60.5, 51.3, 85, 120 }, + [118] = { 61.3, 50.7, 85, 120 }, + [119] = { 58.2, 50.6, 85, 120 }, + [120] = { 43.3, 41.7, 130, 120 }, + [121] = { 44.9, 41.6, 130, 120 }, + [122] = { 42.7, 40.8, 130, 120 }, + [123] = { 44.6, 39.4, 130, 120 }, + [124] = { 56.4, 60.4, 141, 120 }, + [125] = { 56, 58.7, 141, 120 }, + [126] = { 55.8, 57.2, 141, 120 }, + [127] = { 25.6, 56.1, 141, 120 }, + [128] = { 25.6, 55.1, 141, 120 }, + [129] = { 31.3, 50.3, 141, 0 }, + [130] = { 31.3, 50.2, 141, 0 }, + [131] = { 31, 49.5, 141, 0 }, + [132] = { 37.1, 44.6, 148, 120 }, + [133] = { 36.7, 44.1, 148, 120 }, + [134] = { 37.2, 43.7, 148, 120 }, + [135] = { 46.9, 60.5, 215, 120 }, + [136] = { 48.7, 59.4, 215, 120 }, + [137] = { 46.3, 58.8, 215, 120 }, + [138] = { 37.3, 29.7, 215, 120 }, + [139] = { 38.8, 29.5, 215, 120 }, + [140] = { 37.2, 28.6, 215, 120 }, + [141] = { 38.3, 27.5, 215, 120 }, + [142] = { 35.9, 23.1, 215, 120 }, + [143] = { 34.9, 19.7, 215, 120 }, + [144] = { 50.4, 60.6, 267, 120 }, + [145] = { 49.1, 59.3, 267, 120 }, + [146] = { 51, 59.2, 267, 120 }, + [147] = { 51.5, 59, 267, 120 }, + [148] = { 50.4, 58.4, 267, 120 }, + [149] = { 49.2, 57.2, 267, 120 }, + [150] = { 51.1, 56.7, 267, 120 }, + [151] = { 49.2, 56.1, 267, 120 }, + [152] = { 60.3, 26.1, 267, 120 }, + [153] = { 63.6, 21.4, 267, 120 }, + [154] = { 63.9, 20.9, 267, 120 }, + [155] = { 62.8, 20.6, 267, 120 }, + [156] = { 61.7, 20.5, 267, 120 }, + [157] = { 63.8, 20.5, 267, 120 }, + [158] = { 62.7, 19.6, 267, 120 }, + [159] = { 73.3, 63.6, 331, 120 }, + [160] = { 73.7, 60.9, 331, 120 }, + [161] = { 36.9, 50.5, 331, 120 }, + [162] = { 36.5, 50.3, 331, 120 }, + [163] = { 37.2, 49.2, 331, 120 }, + [164] = { 36.8, 49, 331, 120 }, + [165] = { 33.8, 47.9, 331, 120 }, + [166] = { 74.8, 45.6, 357, 120 }, + [167] = { 74.7, 44.6, 357, 120 }, + [168] = { 31.1, 43.7, 357, 0 }, + [169] = { 31.4, 43.1, 357, 0 }, + [170] = { 30.5, 43, 357, 0 }, + [171] = { 30.9, 42.5, 357, 0 }, + [172] = { 45.9, 51.4, 400, 120 }, + [173] = { 46, 51, 400, 120 }, + [174] = { 24.7, 68.8, 405, 120 }, + [175] = { 23.7, 67.9, 405, 120 }, + [176] = { 88.5, 46.7, 405, 120 }, + [177] = { 66.2, 8, 405, 120 }, + [178] = { 66.7, 7.8, 405, 120 }, + [179] = { 66.1, 7.7, 405, 120 }, + [180] = { 67, 7.2, 405, 120 }, + [181] = { 65.6, 6.5, 405, 120 }, + [182] = { 66.5, 6.1, 405, 120 }, + [183] = { 40.7, 83, 406, 120 }, + [184] = { 41.2, 82.9, 406, 120 }, + [185] = { 40.7, 82.8, 406, 120 }, + [186] = { 41.5, 82.4, 406, 120 }, + [187] = { 40.2, 81.7, 406, 120 }, + [188] = { 41, 81.3, 406, 120 }, + [189] = { 47.2, 61.6, 406, 120 }, + [190] = { 47.6, 61.6, 406, 120 }, + [191] = { 52, 29, 440, 120 }, + [192] = { 52.2, 28.6, 440, 120 }, + [193] = { 52.2, 28.5, 440, 120 }, + [194] = { 52.8, 28.4, 440, 120 }, + [195] = { 52.4, 28.2, 440, 120 }, + [196] = { 50.6, 28.1, 440, 120 }, + [197] = { 52.4, 28, 440, 120 }, + [198] = { 51.7, 28, 440, 120 }, + [199] = { 51, 27.5, 440, 120 }, + [200] = { 51.4, 27.5, 440, 120 }, + [201] = { 52, 27.5, 440, 120 }, + [202] = { 51.7, 27, 440, 120 }, + [203] = { 50.3, 26.8, 440, 120 }, + [204] = { 52.4, 26.8, 440, 120 }, + [205] = { 61.2, 39, 618, 120 }, + [206] = { 61.7, 39, 618, 120 }, + [207] = { 62.1, 38.4, 618, 120 }, + [208] = { 60.6, 38.4, 618, 120 }, + [209] = { 61.4, 38.1, 618, 120 }, + [210] = { 61.1, 37.6, 618, 120 }, + [211] = { 61, 37.4, 618, 120 }, + [212] = { 61.7, 37.1, 618, 120 }, + [213] = { 51.5, 38.3, 1377, 120 }, + [214] = { 69.5, 54.7, 1497, 120 }, + [215] = { 67.2, 50.2, 1497, 120 }, + [216] = { 64.6, 50.1, 1497, 120 }, + [217] = { 69.2, 48, 1497, 120 }, + [218] = { 62.3, 47, 1497, 120 }, + [219] = { 67.3, 46, 1497, 120 }, + [220] = { 61.9, 44.1, 1497, 120 }, + [221] = { 58, 43.5, 1497, 120 }, + [222] = { 70, 42.4, 1497, 120 }, + [223] = { 64.7, 42.1, 1497, 120 }, + [224] = { 62.3, 41.1, 1497, 120 }, + [225] = { 69.2, 40.2, 1497, 120 }, + [226] = { 63.9, 38.6, 1497, 120 }, + [227] = { 67.2, 38, 1497, 120 }, + [228] = { 69.8, 37.6, 1497, 120 }, + [229] = { 36.5, 24.7, 1497, 120 }, + [230] = { 41.5, 23.4, 1497, 120 }, + [231] = { 73.2, 90, 1519, 120 }, + [232] = { 57.1, 70.1, 1519, 120 }, + [233] = { 54.4, 66.9, 1519, 120 }, + [234] = { 53.7, 65.4, 1519, 120 }, + [235] = { 56.7, 63.8, 1519, 120 }, + [236] = { 56.7, 58.7, 1519, 120 }, + [237] = { 54.1, 57.6, 1519, 120 }, + [238] = { 31.8, 76.8, 1537, 120 }, + [239] = { 33.6, 75.6, 1537, 120 }, + [240] = { 26.3, 72, 1537, 120 }, + [241] = { 25.3, 71.6, 1537, 120 }, + [242] = { 36.1, 70.1, 1537, 120 }, + [243] = { 28.4, 68.4, 1537, 120 }, + [244] = { 23.8, 61.6, 1537, 120 }, + [245] = { 31, 59.3, 1537, 120 }, + [246] = { 36.1, 58.2, 1537, 120 }, + [247] = { 20.7, 51.8, 1537, 120 }, + [248] = { 20.3, 50.6, 1537, 120 }, + [249] = { 18.6, 50.5, 1537, 120 }, + [250] = { 55.6, 74.2, 1637, 120 }, + [251] = { 50.8, 70.4, 1637, 120 }, + [252] = { 50.1, 67.7, 1637, 120 }, + [253] = { 49.6, 66.3, 1637, 120 }, + [254] = { 53.6, 65.6, 1637, 120 }, + [255] = { 47.8, 65, 1637, 120 }, + [256] = { 56.7, 63.9, 1637, 120 }, + [257] = { 37, 63.3, 1638, 120 }, + [258] = { 44.2, 62.1, 1638, 120 }, + [259] = { 36.5, 57.7, 1638, 120 }, + [260] = { 41.6, 52.6, 1638, 120 }, + [261] = { 30.2, 30.8, 1638, 120 }, + [262] = { 24.9, 14.2, 1638, 120 }, + [263] = { 40.6, 44.1, 1657, 120 }, + [264] = { 40.1, 39.4, 1657, 120 }, + [265] = { 67.9, 16, 1657, 0 }, + [266] = { 67.7, 15.8, 1657, 0 }, + [267] = { 66.2, 12.2, 1657, 0 }, + }, + }, + [180407] = { + ["coords"] = { + [1] = { 46.9, 52.2, 1, 120 }, + [2] = { 47.4, 52.1, 1, 120 }, + [3] = { 46, 51.6, 1, 120 }, + [4] = { 45.9, 48.7, 1, 120 }, + [5] = { 53.4, 34.8, 1, 120 }, + [6] = { 6.2, 47.3, 3, 120 }, + [7] = { 4, 46.5, 3, 120 }, + [8] = { 2.6, 46.2, 3, 120 }, + [9] = { 47.7, 58.6, 8, 120 }, + [10] = { 45, 55.8, 8, 120 }, + [11] = { 45.5, 55.6, 8, 120 }, + [12] = { 45, 55.3, 8, 120 }, + [13] = { 46.6, 51.1, 8, 120 }, + [14] = { 74.2, 50.4, 10, 120 }, + [15] = { 75.8, 48.2, 10, 120 }, + [16] = { 73.8, 47.9, 10, 120 }, + [17] = { 72.7, 47.3, 10, 120 }, + [18] = { 74.1, 46.9, 10, 120 }, + [19] = { 73.4, 46.5, 10, 120 }, + [20] = { 75.5, 45.6, 10, 120 }, + [21] = { 78.5, 45.5, 10, 120 }, + [22] = { 73.5, 44.4, 10, 120 }, + [23] = { 77.3, 43.8, 10, 120 }, + [24] = { 73.8, 43.5, 10, 120 }, + [25] = { 74.5, 41.6, 10, 120 }, + [26] = { 74.7, 41.6, 10, 120 }, + [27] = { 10.9, 61.4, 11, 120 }, + [28] = { 11, 60.2, 11, 120 }, + [29] = { 9.6, 59.8, 11, 120 }, + [30] = { 10.7, 55.7, 11, 120 }, + [31] = { 41.9, 67.2, 12, 120 }, + [32] = { 43.5, 66.8, 12, 120 }, + [33] = { 43.9, 66.5, 12, 120 }, + [34] = { 43.3, 66.2, 12, 120 }, + [35] = { 42, 65.9, 12, 120 }, + [36] = { 41.5, 65.8, 12, 120 }, + [37] = { 41.6, 65.6, 12, 120 }, + [38] = { 41.5, 65.5, 12, 120 }, + [39] = { 43.3, 65.4, 12, 120 }, + [40] = { 52.2, 44.4, 14, 120 }, + [41] = { 51.9, 43.3, 14, 120 }, + [42] = { 53.2, 42.5, 14, 120 }, + [43] = { 51.8, 41.9, 14, 120 }, + [44] = { 54.3, 40.8, 14, 120 }, + [45] = { 52, 40.3, 14, 120 }, + [46] = { 45.7, 11.9, 14, 120 }, + [47] = { 45.9, 6.5, 14, 120 }, + [48] = { 65.8, 46, 15, 120 }, + [49] = { 66.3, 45.5, 15, 120 }, + [50] = { 44.5, 59.2, 17, 120 }, + [51] = { 45.4, 58.8, 17, 120 }, + [52] = { 62.2, 39.4, 17, 120 }, + [53] = { 62.1, 39.4, 17, 120 }, + [54] = { 62.1, 39.2, 17, 120 }, + [55] = { 62, 39.2, 17, 120 }, + [56] = { 62, 38.7, 17, 120 }, + [57] = { 63, 38, 17, 120 }, + [58] = { 51.9, 32.1, 17, 120 }, + [59] = { 52.3, 31.1, 17, 120 }, + [60] = { 52, 30.2, 17, 120 }, + [61] = { 52.2, 30.1, 17, 120 }, + [62] = { 51.6, 29.9, 17, 120 }, + [63] = { 52, 29.7, 17, 120 }, + [64] = { 52.3, 29.3, 17, 120 }, + [65] = { 27.2, 77.8, 33, 120 }, + [66] = { 32.7, 29.7, 33, 120 }, + [67] = { 32.8, 28.6, 33, 120 }, + [68] = { 31.2, 28.3, 33, 120 }, + [69] = { 59.9, 89.3, 36, 120 }, + [70] = { 60.5, 89.3, 36, 120 }, + [71] = { 62.8, 83.3, 36, 120 }, + [72] = { 62, 83.2, 36, 120 }, + [73] = { 61.9, 82.8, 36, 120 }, + [74] = { 61.9, 82.5, 36, 120 }, + [75] = { 60.1, 82.4, 36, 120 }, + [76] = { 62, 82.2, 36, 120 }, + [77] = { 62.5, 82.2, 36, 120 }, + [78] = { 33.5, 51.6, 38, 120 }, + [79] = { 35.4, 47.6, 38, 120 }, + [80] = { 34.9, 47.5, 38, 120 }, + [81] = { 52.7, 53.3, 40, 120 }, + [82] = { 56.3, 47.9, 40, 120 }, + [83] = { 57.6, 46.8, 40, 120 }, + [84] = { 56.3, 46.6, 40, 120 }, + [85] = { 33.3, 57.6, 44, 120 }, + [86] = { 26.3, 45.5, 44, 120 }, + [87] = { 27, 44.1, 44, 120 }, + [88] = { 26.6, 43.2, 44, 120 }, + [89] = { 74.7, 37.9, 45, 120 }, + [90] = { 72.4, 34, 45, 120 }, + [91] = { 73.9, 33, 45, 120 }, + [92] = { 74.6, 32.9, 45, 120 }, + [93] = { 78.3, 81.1, 47, 120 }, + [94] = { 78.5, 80.6, 47, 120 }, + [95] = { 76.7, 77.5, 47, 120 }, + [96] = { 77.2, 77.3, 47, 120 }, + [97] = { 14.2, 44.9, 47, 0 }, + [98] = { 13.9, 42.3, 47, 0 }, + [99] = { 13, 42.3, 47, 0 }, + [100] = { 14.3, 41.2, 47, 0 }, + [101] = { 83.2, 37.7, 51, 120 }, + [102] = { 81.6, 37.4, 51, 120 }, + [103] = { 60.8, 58.9, 85, 120 }, + [104] = { 61.5, 58.9, 85, 120 }, + [105] = { 60.9, 58.2, 85, 120 }, + [106] = { 62, 52.7, 85, 120 }, + [107] = { 61.4, 52.6, 85, 120 }, + [108] = { 60.2, 52.4, 85, 120 }, + [109] = { 61.7, 52.4, 85, 120 }, + [110] = { 61, 52.3, 85, 120 }, + [111] = { 59.4, 52, 85, 120 }, + [112] = { 60.8, 51.7, 85, 120 }, + [113] = { 60.8, 51.2, 85, 120 }, + [114] = { 58.4, 50.6, 85, 120 }, + [115] = { 59.4, 46.5, 85, 0 }, + [116] = { 44.9, 41.9, 130, 120 }, + [117] = { 44.9, 41.6, 130, 120 }, + [118] = { 43.4, 41.6, 130, 120 }, + [119] = { 43.3, 41.1, 130, 120 }, + [120] = { 43.5, 40.8, 130, 120 }, + [121] = { 57.2, 61.1, 141, 120 }, + [122] = { 56.6, 59.5, 141, 0 }, + [123] = { 55.9, 58.7, 141, 120 }, + [124] = { 55.8, 57.4, 141, 120 }, + [125] = { 25.2, 55.5, 141, 120 }, + [126] = { 25.8, 55.4, 141, 120 }, + [127] = { 31.5, 50.6, 141, 0 }, + [128] = { 36.9, 44.8, 148, 120 }, + [129] = { 37.1, 44.4, 148, 120 }, + [130] = { 36.8, 44.1, 148, 120 }, + [131] = { 36.4, 44, 148, 120 }, + [132] = { 37.2, 43.5, 148, 120 }, + [133] = { 46.5, 61.3, 215, 120 }, + [134] = { 48.3, 59.2, 215, 120 }, + [135] = { 46.4, 58.6, 215, 120 }, + [136] = { 36.9, 29.7, 215, 120 }, + [137] = { 38.3, 29.4, 215, 120 }, + [138] = { 39.1, 28.9, 215, 120 }, + [139] = { 37.6, 27.1, 215, 120 }, + [140] = { 36, 22.9, 215, 120 }, + [141] = { 34.2, 20.7, 215, 120 }, + [142] = { 50, 60.6, 267, 120 }, + [143] = { 50.6, 59.1, 267, 120 }, + [144] = { 50.7, 59, 267, 120 }, + [145] = { 49.1, 58.9, 267, 120 }, + [146] = { 51.3, 58.7, 267, 120 }, + [147] = { 50.8, 58.2, 267, 120 }, + [148] = { 48.8, 54.9, 267, 120 }, + [149] = { 49.6, 51.6, 267, 120 }, + [150] = { 61.3, 26.6, 267, 120 }, + [151] = { 61.8, 26.6, 267, 120 }, + [152] = { 63.8, 21.3, 267, 120 }, + [153] = { 63.1, 21.2, 267, 120 }, + [154] = { 63, 20.9, 267, 120 }, + [155] = { 63, 20.6, 267, 120 }, + [156] = { 61.5, 20.5, 267, 120 }, + [157] = { 63.1, 20.4, 267, 120 }, + [158] = { 63.6, 20.4, 267, 120 }, + [159] = { 99.6, 4, 267, 0 }, + [160] = { 99.3, 0.8, 267, 0 }, + [161] = { 98.2, 0.8, 267, 0 }, + [162] = { 73.7, 63.6, 331, 120 }, + [163] = { 73.7, 60.9, 331, 120 }, + [164] = { 73.7, 60.7, 331, 120 }, + [165] = { 37.5, 53.7, 331, 120 }, + [166] = { 37.2, 50.5, 331, 120 }, + [167] = { 36.3, 50, 331, 120 }, + [168] = { 36.7, 50, 331, 120 }, + [169] = { 36.5, 49.2, 331, 120 }, + [170] = { 74.6, 44.7, 357, 120 }, + [171] = { 75.3, 44.2, 357, 120 }, + [172] = { 30.8, 43.6, 357, 0 }, + [173] = { 31.4, 43.5, 357, 0 }, + [174] = { 30.5, 43.5, 357, 0 }, + [175] = { 45.9, 50.9, 400, 120 }, + [176] = { 45.2, 49, 400, 120 }, + [177] = { 24.5, 68.8, 405, 120 }, + [178] = { 24.4, 67.6, 405, 120 }, + [179] = { 87.7, 47.8, 405, 120 }, + [180] = { 66.2, 8, 405, 120 }, + [181] = { 66.7, 7.8, 405, 120 }, + [182] = { 66.7, 7.5, 405, 120 }, + [183] = { 65.9, 6.3, 405, 120 }, + [184] = { 66.8, 6.1, 405, 120 }, + [185] = { 40.7, 83, 406, 120 }, + [186] = { 41.2, 82.9, 406, 120 }, + [187] = { 41.2, 82.6, 406, 120 }, + [188] = { 40.5, 81.4, 406, 120 }, + [189] = { 41.3, 81.3, 406, 120 }, + [190] = { 47.9, 61.5, 406, 120 }, + [191] = { 47.7, 61.3, 406, 120 }, + [192] = { 52.1, 29.3, 440, 120 }, + [193] = { 51.9, 29, 440, 120 }, + [194] = { 52.2, 28.6, 440, 120 }, + [195] = { 52.4, 28, 440, 120 }, + [196] = { 51.9, 27.9, 440, 120 }, + [197] = { 52.9, 27.9, 440, 120 }, + [198] = { 52.4, 27.9, 440, 120 }, + [199] = { 51.4, 27.7, 440, 120 }, + [200] = { 50.1, 27.6, 440, 120 }, + [201] = { 52, 27.2, 440, 120 }, + [202] = { 51.5, 27.1, 440, 120 }, + [203] = { 60.9, 38.9, 618, 120 }, + [204] = { 61.4, 38.8, 618, 120 }, + [205] = { 61.3, 38.7, 618, 120 }, + [206] = { 61.5, 38.2, 618, 120 }, + [207] = { 62.1, 38.1, 618, 120 }, + [208] = { 61.3, 37.5, 618, 120 }, + [209] = { 61.3, 36.6, 618, 120 }, + [210] = { 51.5, 38.4, 1377, 120 }, + [211] = { 51.7, 38.3, 1377, 120 }, + [212] = { 68, 49.6, 1497, 120 }, + [213] = { 58.9, 49.2, 1497, 120 }, + [214] = { 62.7, 48, 1497, 120 }, + [215] = { 71.1, 47.3, 1497, 120 }, + [216] = { 69.6, 47.1, 1497, 120 }, + [217] = { 66.6, 45, 1497, 120 }, + [218] = { 73.9, 44.6, 1497, 120 }, + [219] = { 66.2, 44.4, 1497, 120 }, + [220] = { 65.8, 44.4, 1497, 120 }, + [221] = { 66.2, 43.8, 1497, 120 }, + [222] = { 65.8, 43.8, 1497, 120 }, + [223] = { 70, 42.6, 1497, 120 }, + [224] = { 61.9, 42.2, 1497, 120 }, + [225] = { 69.7, 41.2, 1497, 120 }, + [226] = { 63.3, 39.3, 1497, 120 }, + [227] = { 68.1, 38.6, 1497, 120 }, + [228] = { 67.3, 38, 1497, 120 }, + [229] = { 55.9, 73, 1519, 120 }, + [230] = { 58.5, 68.1, 1519, 120 }, + [231] = { 55.1, 66.4, 1519, 120 }, + [232] = { 60.2, 65, 1519, 120 }, + [233] = { 52, 65, 1519, 120 }, + [234] = { 57.5, 64.7, 1519, 120 }, + [235] = { 55.1, 56.8, 1519, 120 }, + [236] = { 14.4, 85.1, 1537, 120 }, + [237] = { 32.8, 74.7, 1537, 120 }, + [238] = { 27.8, 71.2, 1537, 120 }, + [239] = { 25.4, 70.4, 1537, 120 }, + [240] = { 35.7, 69.6, 1537, 120 }, + [241] = { 34.4, 66.9, 1537, 120 }, + [242] = { 33.5, 64.4, 1537, 120 }, + [243] = { 25.7, 62, 1537, 120 }, + [244] = { 37.1, 60.1, 1537, 120 }, + [245] = { 29.9, 59.2, 1537, 120 }, + [246] = { 20.3, 51.2, 1537, 120 }, + [247] = { 18.6, 50.5, 1537, 120 }, + [248] = { 49.7, 94.5, 1637, 120 }, + [249] = { 50.4, 74.2, 1637, 120 }, + [250] = { 47.8, 69.9, 1637, 120 }, + [251] = { 54.3, 69.4, 1637, 120 }, + [252] = { 51, 67.8, 1637, 120 }, + [253] = { 48.8, 67.6, 1637, 120 }, + [254] = { 54.8, 65.5, 1637, 120 }, + [255] = { 56.1, 61.7, 1637, 120 }, + [256] = { 35.1, 63.3, 1638, 120 }, + [257] = { 41.7, 61.9, 1638, 120 }, + [258] = { 45.6, 59.4, 1638, 120 }, + [259] = { 38.6, 50.3, 1638, 120 }, + [260] = { 30.5, 29.6, 1638, 120 }, + [261] = { 21.6, 18.9, 1638, 120 }, + [262] = { 38.5, 41.4, 1657, 120 }, + [263] = { 41.5, 40.8, 1657, 120 }, + [264] = { 68.7, 17.8, 1657, 0 }, + }, + }, + [180408] = { + ["coords"] = { + [1] = { 67.7, 36.6, 1497, 120 }, + }, + }, + [180409] = { + ["coords"] = { + [1] = { 67.7, 37.1, 1497, 120 }, + }, + }, + [180410] = { + ["coords"] = { + [1] = { 47.1, 52.5, 1, 120 }, + [2] = { 75.1, 49.5, 10, 120 }, + [3] = { 75, 49.1, 10, 120 }, + [4] = { 75, 48.8, 10, 120 }, + [5] = { 77.2, 48.5, 10, 120 }, + [6] = { 75, 48.4, 10, 120 }, + [7] = { 71.9, 48.4, 10, 120 }, + [8] = { 72.3, 48.3, 10, 120 }, + [9] = { 72.6, 47.9, 10, 120 }, + [10] = { 73.6, 45.6, 10, 120 }, + [11] = { 73.8, 45.6, 10, 120 }, + [12] = { 76, 45.6, 10, 120 }, + [13] = { 74.4, 45.3, 10, 120 }, + [14] = { 75.9, 45.1, 10, 120 }, + [15] = { 74.1, 44.9, 10, 120 }, + [16] = { 10.9, 60.1, 11, 120 }, + [17] = { 43.2, 66.4, 12, 120 }, + [18] = { 43.5, 66.1, 12, 120 }, + [19] = { 43.7, 66, 12, 120 }, + [20] = { 43.3, 65.7, 12, 120 }, + [21] = { 66.2, 45.7, 15, 120 }, + [22] = { 66.4, 45.4, 15, 120 }, + [23] = { 66.8, 45, 15, 120 }, + [24] = { 62.1, 39.5, 17, 120 }, + [25] = { 62.7, 36.2, 17, 120 }, + [26] = { 60.4, 80.9, 36, 120 }, + [27] = { 52.2, 53.4, 40, 120 }, + [28] = { 26.4, 45.7, 44, 120 }, + [29] = { 26.7, 44.8, 44, 120 }, + [30] = { 26.4, 44.8, 44, 120 }, + [31] = { 62, 52.8, 85, 120 }, + [32] = { 61.6, 52.7, 85, 120 }, + [33] = { 61.8, 52.5, 85, 120 }, + [34] = { 61.8, 52.2, 85, 120 }, + [35] = { 59.4, 52.1, 85, 120 }, + [36] = { 61.9, 51.6, 85, 120 }, + [37] = { 60.6, 51, 85, 120 }, + [38] = { 61.3, 50.6, 85, 120 }, + [39] = { 43.4, 41, 130, 120 }, + [40] = { 44.6, 39, 130, 120 }, + [41] = { 55.8, 59.9, 141, 120 }, + [42] = { 55.2, 57.1, 141, 120 }, + [43] = { 36.6, 44.1, 148, 120 }, + [44] = { 51, 59, 267, 120 }, + [45] = { 50.7, 58.6, 267, 120 }, + [46] = { 50.7, 58.3, 267, 120 }, + [47] = { 51.8, 58.3, 267, 120 }, + [48] = { 51, 56.9, 267, 120 }, + [49] = { 49.2, 55.6, 267, 120 }, + [50] = { 49.4, 55.2, 267, 120 }, + [51] = { 49.2, 55, 267, 120 }, + [52] = { 61.7, 19.3, 267, 120 }, + [53] = { 36.8, 49.4, 331, 120 }, + [54] = { 30.9, 42.9, 357, 0 }, + [55] = { 66.5, 7.4, 405, 120 }, + [56] = { 41, 82.5, 406, 120 }, + [57] = { 51.6, 39.3, 1377, 120 }, + [58] = { 52.2, 38.8, 1377, 120 }, + [59] = { 70.2, 49.6, 1497, 120 }, + [60] = { 67.8, 36.6, 1497, 120 }, + [61] = { 57.2, 66.3, 1519, 120 }, + [62] = { 52.2, 64.8, 1519, 120 }, + [63] = { 52.4, 64.6, 1519, 120 }, + [64] = { 52.6, 64.4, 1519, 120 }, + [65] = { 53.8, 62.8, 1519, 120 }, + }, + }, + [180411] = { + ["coords"] = { + [1] = { 45.4, 51.8, 1, 120 }, + [2] = { 3.9, 47.1, 3, 120 }, + [3] = { 75.3, 49.9, 10, 120 }, + [4] = { 74.1, 48.1, 10, 120 }, + [5] = { 75.5, 46, 10, 120 }, + [6] = { 74.3, 45.8, 10, 120 }, + [7] = { 76.6, 45.8, 10, 120 }, + [8] = { 75.4, 45, 10, 120 }, + [9] = { 73.7, 44.5, 10, 120 }, + [10] = { 10.5, 61, 11, 120 }, + [11] = { 10.5, 59.9, 11, 120 }, + [12] = { 44, 66.4, 12, 120 }, + [13] = { 43.9, 66.4, 12, 120 }, + [14] = { 43, 66.2, 12, 120 }, + [15] = { 41.9, 65.7, 12, 120 }, + [16] = { 53.2, 42.6, 14, 120 }, + [17] = { 51.6, 42.1, 14, 120 }, + [18] = { 51.2, 41.9, 14, 120 }, + [19] = { 51.8, 41.6, 14, 120 }, + [20] = { 51.2, 41.3, 14, 120 }, + [21] = { 51.5, 41.1, 14, 120 }, + [22] = { 66, 45.5, 15, 120 }, + [23] = { 66.8, 45.5, 15, 120 }, + [24] = { 67.1, 45.1, 15, 120 }, + [25] = { 44.8, 58.4, 17, 120 }, + [26] = { 61.9, 39.1, 17, 120 }, + [27] = { 51.9, 30.1, 17, 120 }, + [28] = { 52.1, 30, 17, 120 }, + [29] = { 51.8, 29.8, 17, 120 }, + [30] = { 52.1, 29.7, 17, 120 }, + [31] = { 52, 29.6, 17, 120 }, + [32] = { 27.2, 77.4, 33, 120 }, + [33] = { 27.4, 76.5, 33, 120 }, + [34] = { 31.4, 30.2, 33, 120 }, + [35] = { 31.8, 30.1, 33, 120 }, + [36] = { 31.9, 29.5, 33, 120 }, + [37] = { 31.2, 29.5, 33, 120 }, + [38] = { 31.5, 29.1, 33, 120 }, + [39] = { 60.2, 89.3, 36, 120 }, + [40] = { 61.6, 81.8, 36, 120 }, + [41] = { 61.3, 81.6, 36, 120 }, + [42] = { 61, 81.3, 36, 120 }, + [43] = { 52.6, 53.5, 40, 120 }, + [44] = { 32.2, 48, 44, 120 }, + [45] = { 27.2, 46.2, 44, 120 }, + [46] = { 74.6, 32.6, 45, 120 }, + [47] = { 73.7, 32.5, 45, 120 }, + [48] = { 74.6, 31.6, 45, 120 }, + [49] = { 73.7, 31.6, 45, 120 }, + [50] = { 77.7, 80.8, 47, 120 }, + [51] = { 78.7, 80.4, 47, 120 }, + [52] = { 14.2, 45.2, 47, 0 }, + [53] = { 13.6, 41.6, 47, 0 }, + [54] = { 83.1, 38.3, 51, 120 }, + [55] = { 61.8, 53.1, 85, 120 }, + [56] = { 61.5, 52.3, 85, 120 }, + [57] = { 62, 52, 85, 120 }, + [58] = { 60.9, 51.4, 85, 120 }, + [59] = { 60.4, 51.2, 85, 120 }, + [60] = { 61, 50.8, 85, 120 }, + [61] = { 60.6, 50.6, 85, 120 }, + [62] = { 42.9, 41.4, 130, 120 }, + [63] = { 44.5, 39.2, 130, 120 }, + [64] = { 56.3, 60.7, 141, 120 }, + [65] = { 55.9, 58.4, 141, 120 }, + [66] = { 56, 57.5, 141, 120 }, + [67] = { 25.6, 55.9, 141, 120 }, + [68] = { 25.6, 55.7, 141, 120 }, + [69] = { 25.5, 55.2, 141, 120 }, + [70] = { 36.8, 44.6, 148, 120 }, + [71] = { 36.9, 44.1, 148, 120 }, + [72] = { 37, 43.5, 148, 120 }, + [73] = { 46.6, 61.2, 215, 120 }, + [74] = { 39.2, 30.1, 215, 120 }, + [75] = { 50.5, 59.1, 267, 120 }, + [76] = { 49.5, 55.6, 267, 120 }, + [77] = { 61.6, 26.6, 267, 120 }, + [78] = { 62.8, 20, 267, 120 }, + [79] = { 62.5, 19.9, 267, 120 }, + [80] = { 62.2, 19.6, 267, 120 }, + [81] = { 99.6, 4.4, 267, 0 }, + [82] = { 73.9, 61.3, 331, 120 }, + [83] = { 73.6, 60.6, 331, 120 }, + [84] = { 37.2, 52.9, 331, 120 }, + [85] = { 37.5, 50.2, 331, 120 }, + [86] = { 36.2, 49.5, 331, 120 }, + [87] = { 37.1, 48.8, 331, 120 }, + [88] = { 34.2, 48.5, 331, 120 }, + [89] = { 74.6, 44.6, 357, 120 }, + [90] = { 31.5, 43.3, 357, 0 }, + [91] = { 30.4, 43.3, 357, 0 }, + [92] = { 31, 42.3, 357, 0 }, + [93] = { 46.1, 51.5, 400, 120 }, + [94] = { 24.7, 68.8, 405, 120 }, + [95] = { 66.5, 8.3, 405, 120 }, + [96] = { 65.4, 7.2, 405, 120 }, + [97] = { 65.8, 7.1, 405, 120 }, + [98] = { 66.8, 6.7, 405, 120 }, + [99] = { 67.2, 6.6, 405, 120 }, + [100] = { 41, 83.4, 406, 120 }, + [101] = { 40, 82.3, 406, 120 }, + [102] = { 40.3, 82.2, 406, 120 }, + [103] = { 41.3, 81.8, 406, 120 }, + [104] = { 41.6, 81.7, 406, 120 }, + [105] = { 47.9, 61.5, 406, 120 }, + [106] = { 47.7, 61.2, 406, 120 }, + [107] = { 51.2, 39.7, 1377, 120 }, + [108] = { 52.6, 38.7, 1377, 120 }, + [109] = { 51.4, 37.7, 1377, 120 }, + [110] = { 62.7, 48.8, 1497, 120 }, + [111] = { 67.6, 38.3, 1497, 120 }, + [112] = { 58.6, 68.4, 1519, 120 }, + [113] = { 59.7, 65.2, 1519, 120 }, + [114] = { 53.5, 64.3, 1519, 120 }, + [115] = { 57.5, 62.5, 1519, 120 }, + [116] = { 36.4, 59.5, 1537, 120 }, + [117] = { 20.9, 53.2, 1537, 120 }, + [118] = { 54.5, 70.3, 1637, 120 }, + [119] = { 49.4, 68.9, 1637, 120 }, + [120] = { 53.4, 64.8, 1637, 120 }, + [121] = { 46, 65.2, 1638, 120 }, + [122] = { 40.5, 42.9, 1657, 120 }, + [123] = { 40.6, 42.2, 1657, 120 }, + [124] = { 40, 39.6, 1657, 120 }, + }, + }, + [180412] = { + ["coords"] = { + [1] = { 47.4, 52.4, 1, 120 }, + [2] = { 2.8, 46, 3, 120 }, + [3] = { 45.1, 56.7, 8, 120 }, + [4] = { 73.8, 44.3, 10, 120 }, + [5] = { 10.7, 60.9, 11, 120 }, + [6] = { 43.7, 65.9, 12, 120 }, + [7] = { 51.5, 41.6, 14, 120 }, + [8] = { 66.6, 45.3, 15, 120 }, + [9] = { 45.6, 59.1, 17, 120 }, + [10] = { 62.1, 39.4, 17, 120 }, + [11] = { 52, 29.9, 17, 120 }, + [12] = { 27.1, 77.3, 33, 120 }, + [13] = { 31.5, 29.7, 33, 120 }, + [14] = { 61.7, 80.6, 36, 120 }, + [15] = { 35.5, 48.5, 38, 120 }, + [16] = { 52.9, 53.7, 40, 120 }, + [17] = { 27.1, 44.9, 44, 120 }, + [18] = { 73.9, 32.5, 45, 120 }, + [19] = { 78.2, 81.5, 47, 120 }, + [20] = { 14.1, 41.5, 47, 0 }, + [21] = { 81.8, 37.1, 51, 120 }, + [22] = { 61.7, 52.1, 85, 120 }, + [23] = { 43.1, 41.3, 130, 120 }, + [24] = { 55.6, 59.8, 141, 120 }, + [25] = { 31.2, 50.3, 141, 0 }, + [26] = { 37, 44, 148, 120 }, + [27] = { 46.6, 61, 215, 120 }, + [28] = { 39.1, 30, 215, 120 }, + [29] = { 51.1, 59, 267, 120 }, + [30] = { 62.9, 19, 267, 120 }, + [31] = { 74, 60.6, 331, 120 }, + [32] = { 37, 49.3, 331, 120 }, + [33] = { 74.8, 45.1, 357, 120 }, + [34] = { 30.9, 43.5, 357, 0 }, + [35] = { 46.1, 51.5, 400, 120 }, + [36] = { 24.1, 68.3, 405, 120 }, + [37] = { 66.3, 6.6, 405, 120 }, + [38] = { 40.8, 81.8, 406, 120 }, + [39] = { 47.4, 62.1, 406, 120 }, + [40] = { 52.5, 27.9, 440, 120 }, + [41] = { 61.3, 38.9, 618, 120 }, + [42] = { 51.8, 39.2, 1377, 120 }, + [43] = { 67.8, 37.4, 1497, 120 }, + [44] = { 52.8, 65.8, 1519, 120 }, + [45] = { 18.3, 50.9, 1537, 120 }, + [46] = { 54.4, 68.6, 1637, 120 }, + [47] = { 45.6, 64.9, 1638, 120 }, + [48] = { 67.4, 16.1, 1657, 0 }, + }, + }, + [180415] = { + ["coords"] = { + [1] = { 47.3, 52.3, 1, 120 }, + [2] = { 47.4, 52.1, 1, 120 }, + [3] = { 75.2, 49.4, 10, 120 }, + [4] = { 75.5, 49.4, 10, 120 }, + [5] = { 72, 47.5, 10, 120 }, + [6] = { 71.7, 46.6, 10, 120 }, + [7] = { 71.8, 46.6, 10, 120 }, + [8] = { 71.9, 46.6, 10, 120 }, + [9] = { 72, 46.5, 10, 120 }, + [10] = { 72.1, 46.5, 10, 120 }, + [11] = { 72.2, 46.5, 10, 120 }, + [12] = { 76.4, 45.6, 10, 120 }, + [13] = { 74, 45.1, 10, 120 }, + [14] = { 75.8, 44.8, 10, 120 }, + [15] = { 79.2, 44.1, 10, 120 }, + [16] = { 79.1, 44.1, 10, 120 }, + [17] = { 79.1, 44, 10, 120 }, + [18] = { 73.6, 43.2, 10, 120 }, + [19] = { 10.5, 60.9, 11, 120 }, + [20] = { 10.5, 60.7, 11, 120 }, + [21] = { 10.7, 60.7, 11, 120 }, + [22] = { 10.6, 60.7, 11, 120 }, + [23] = { 10.6, 60.4, 11, 120 }, + [24] = { 10.7, 60.4, 11, 120 }, + [25] = { 43.2, 66.1, 12, 120 }, + [26] = { 43.8, 66, 12, 120 }, + [27] = { 43.2, 65.9, 12, 120 }, + [28] = { 43.5, 65.8, 12, 120 }, + [29] = { 43.8, 65.8, 12, 120 }, + [30] = { 43.7, 65.7, 12, 120 }, + [31] = { 43.7, 65.6, 12, 120 }, + [32] = { 43.5, 65.6, 12, 120 }, + [33] = { 43.4, 65.6, 12, 120 }, + [34] = { 51.5, 41.6, 14, 120 }, + [35] = { 66.5, 45.5, 15, 120 }, + [36] = { 66.6, 45.5, 15, 120 }, + [37] = { 66.5, 45.4, 15, 120 }, + [38] = { 66.3, 45.4, 15, 120 }, + [39] = { 66.2, 45.4, 15, 120 }, + [40] = { 66.5, 45.3, 15, 120 }, + [41] = { 66.4, 45.2, 15, 120 }, + [42] = { 27.3, 77.6, 33, 120 }, + [43] = { 27.2, 77.6, 33, 120 }, + [44] = { 27.1, 77.6, 33, 120 }, + [45] = { 27.1, 77.5, 33, 120 }, + [46] = { 27.2, 77.5, 33, 120 }, + [47] = { 27, 77.4, 33, 120 }, + [48] = { 27.2, 77.4, 33, 120 }, + [49] = { 27.2, 77.3, 33, 120 }, + [50] = { 27.1, 77.2, 33, 120 }, + [51] = { 60.2, 83.1, 36, 120 }, + [52] = { 60.3, 81.4, 36, 120 }, + [53] = { 35.6, 49.3, 38, 120 }, + [54] = { 34.8, 49.2, 38, 120 }, + [55] = { 35.5, 48.9, 38, 120 }, + [56] = { 35.2, 48.5, 38, 120 }, + [57] = { 27, 45.3, 44, 120 }, + [58] = { 26.8, 45.3, 44, 120 }, + [59] = { 27, 45.2, 44, 120 }, + [60] = { 26.8, 45.2, 44, 120 }, + [61] = { 27, 44.7, 44, 120 }, + [62] = { 26.8, 44.7, 44, 120 }, + [63] = { 27, 44.5, 44, 120 }, + [64] = { 26.8, 44.5, 44, 120 }, + [65] = { 27.2, 44.2, 44, 120 }, + [66] = { 74.1, 32.6, 45, 120 }, + [67] = { 77.8, 82.2, 47, 120 }, + [68] = { 77.6, 82.1, 47, 120 }, + [69] = { 78, 82, 47, 120 }, + [70] = { 77.9, 81.9, 47, 120 }, + [71] = { 77.6, 81.8, 47, 120 }, + [72] = { 13.7, 41.9, 47, 0 }, + [73] = { 13.7, 41.6, 47, 0 }, + [74] = { 62, 52.8, 85, 120 }, + [75] = { 61.7, 52.6, 85, 120 }, + [76] = { 61.9, 52.5, 85, 120 }, + [77] = { 61.5, 52.4, 85, 120 }, + [78] = { 44.7, 39, 130, 120 }, + [79] = { 55.6, 60, 141, 120 }, + [80] = { 55.9, 57.5, 141, 120 }, + [81] = { 56, 57.3, 141, 120 }, + [82] = { 49.4, 58.5, 267, 120 }, + [83] = { 51, 58.4, 267, 120 }, + [84] = { 49.3, 55.5, 267, 120 }, + [85] = { 48.9, 55.3, 267, 120 }, + [86] = { 48.9, 55.2, 267, 120 }, + [87] = { 61.5, 21.2, 267, 120 }, + [88] = { 61.6, 19.6, 267, 120 }, + [89] = { 74, 60.6, 331, 120 }, + [90] = { 52.6, 28, 440, 120 }, + [91] = { 61.3, 39, 618, 120 }, + [92] = { 69.6, 48.5, 1497, 120 }, + [93] = { 60.9, 40.9, 1497, 120 }, + [94] = { 61, 40.8, 1497, 120 }, + [95] = { 60.3, 40.7, 1497, 120 }, + [96] = { 68.3, 37.9, 1497, 120 }, + [97] = { 68.3, 35.6, 1497, 120 }, + [98] = { 52.1, 65.5, 1519, 120 }, + [99] = { 54.4, 65.2, 1519, 120 }, + [100] = { 54.5, 65.2, 1519, 120 }, + [101] = { 54.3, 65.1, 1519, 120 }, + [102] = { 54.6, 65.1, 1519, 120 }, + [103] = { 54.2, 65, 1519, 120 }, + [104] = { 54.7, 65, 1519, 120 }, + [105] = { 54.4, 65, 1519, 120 }, + [106] = { 54.5, 65, 1519, 120 }, + [107] = { 54.4, 64.9, 1519, 120 }, + [108] = { 54.5, 64.9, 1519, 120 }, + [109] = { 54.2, 64.9, 1519, 120 }, + [110] = { 54.3, 64.9, 1519, 120 }, + [111] = { 54.7, 64.9, 1519, 120 }, + [112] = { 54.6, 64.9, 1519, 120 }, + [113] = { 54.4, 64.8, 1519, 120 }, + [114] = { 54.5, 64.8, 1519, 120 }, + [115] = { 54.4, 64.7, 1519, 120 }, + [116] = { 54.5, 64.7, 1519, 120 }, + [117] = { 54.2, 64.7, 1519, 120 }, + [118] = { 54.3, 64.7, 1519, 120 }, + [119] = { 54.6, 64.7, 1519, 120 }, + [120] = { 54.7, 64.7, 1519, 120 }, + [121] = { 54.4, 64.6, 1519, 120 }, + [122] = { 54.5, 64.6, 1519, 120 }, + [123] = { 54.2, 64.6, 1519, 120 }, + [124] = { 54.7, 64.5, 1519, 120 }, + [125] = { 54.3, 64.5, 1519, 120 }, + [126] = { 54.6, 64.5, 1519, 120 }, + [127] = { 54.4, 64.4, 1519, 120 }, + [128] = { 54.5, 64.4, 1519, 120 }, + [129] = { 27.4, 74.2, 1537, 120 }, + [130] = { 27.3, 73.9, 1537, 120 }, + [131] = { 27.2, 73.7, 1537, 120 }, + [132] = { 27, 73.4, 1537, 120 }, + [133] = { 23.1, 73.3, 1537, 120 }, + [134] = { 23.1, 73.2, 1537, 120 }, + [135] = { 26.9, 73.2, 1537, 120 }, + [136] = { 25.6, 70.9, 1537, 120 }, + [137] = { 25.5, 70.6, 1537, 120 }, + [138] = { 25.3, 70.4, 1537, 120 }, + [139] = { 25.2, 70.1, 1537, 120 }, + [140] = { 25, 69.7, 1537, 120 }, + [141] = { 19.2, 53.1, 1537, 120 }, + [142] = { 19.2, 52.5, 1537, 120 }, + [143] = { 19.4, 50.9, 1537, 120 }, + [144] = { 50.7, 70.4, 1637, 120 }, + }, + }, + [180417] = { + ["coords"] = { + [1] = { 40.9, 88.8, 1377, 900 }, + }, + }, + [180418] = { + ["coords"] = { + [1] = { 44.7, 45.6, 2597, 0 }, + }, + }, + [180419] = { + ["coords"] = {}, + ["fac"] = "H", + }, + [180420] = { + ["coords"] = {}, + ["fac"] = "A", + }, + [180421] = { + ["coords"] = { + [1] = { 49.3, 88.1, 2597, 0 }, + [2] = { 50.2, 76.7, 2597, 0 }, + [3] = { 51.4, 60.1, 2597, 0 }, + [4] = { 44.7, 45.6, 2597, 0 }, + [5] = { 52.7, 44, 2597, 0 }, + [6] = { 51.6, 35.7, 2597, 0 }, + [7] = { 50.7, 31, 2597, 0 }, + [8] = { 44.1, 18.7, 2597, 0 }, + [9] = { 42.8, 15.8, 2597, 0 }, + [10] = { 49, 14.7, 2597, 0 }, + [11] = { 45.3, 14.4, 2597, 0 }, + }, + }, + [180422] = { + ["coords"] = { + [1] = { 49.3, 88.1, 2597, 0 }, + [2] = { 49.5, 84.5, 2597, 0 }, + [3] = { 48.3, 84.4, 2597, 0 }, + [4] = { 50.2, 76.7, 2597, 0 }, + [5] = { 50.6, 65.6, 2597, 0 }, + [6] = { 51.4, 60.1, 2597, 0 }, + [7] = { 48.2, 58.7, 2597, 0 }, + [8] = { 44.7, 45.6, 2597, 0 }, + [9] = { 51.6, 35.7, 2597, 0 }, + [10] = { 42.8, 15.8, 2597, 0 }, + [11] = { 49, 14.7, 2597, 0 }, + }, + }, + [180423] = { + ["coords"] = { + [1] = { 49.3, 88.1, 2597, 0 }, + [2] = { 49.5, 84.5, 2597, 0 }, + [3] = { 48.3, 84.4, 2597, 0 }, + [4] = { 50.2, 76.7, 2597, 0 }, + [5] = { 50.6, 65.6, 2597, 0 }, + [6] = { 51.4, 60.1, 2597, 0 }, + [7] = { 48.2, 58.7, 2597, 0 }, + [8] = { 44.7, 45.6, 2597, 0 }, + [9] = { 52.6, 43.9, 2597, 0 }, + [10] = { 51.6, 35.7, 2597, 0 }, + [11] = { 50.6, 31.3, 2597, 0 }, + [12] = { 44, 18.7, 2597, 0 }, + [13] = { 42.8, 15.8, 2597, 0 }, + [14] = { 49, 14.7, 2597, 0 }, + [15] = { 45.3, 14.4, 2597, 0 }, + }, + }, + [180424] = { + ["coords"] = { + [1] = { 55.2, 69.3, 2597, 0 }, + [2] = { 53.7, 10.3, 2597, 60 }, + }, + }, + [180425] = { + ["coords"] = { + [1] = { 47.3, 52.5, 1, 120 }, + [2] = { 47.5, 52.1, 1, 120 }, + [3] = { 2.7, 45.8, 3, 120 }, + [4] = { 75.5, 49.4, 10, 120 }, + [5] = { 75.2, 49.1, 10, 120 }, + [6] = { 75.5, 49.1, 10, 120 }, + [7] = { 72.4, 47.4, 10, 120 }, + [8] = { 71.8, 46.7, 10, 120 }, + [9] = { 71.9, 46.7, 10, 120 }, + [10] = { 71.7, 46.6, 10, 120 }, + [11] = { 71.9, 46.6, 10, 120 }, + [12] = { 72, 46.5, 10, 120 }, + [13] = { 72.1, 46.5, 10, 120 }, + [14] = { 72.2, 46.5, 10, 120 }, + [15] = { 76.2, 45.7, 10, 120 }, + [16] = { 74.4, 45.5, 10, 120 }, + [17] = { 74, 45.5, 10, 120 }, + [18] = { 75.8, 44.8, 10, 120 }, + [19] = { 79, 44.6, 10, 120 }, + [20] = { 78.8, 44.4, 10, 120 }, + [21] = { 10.8, 61.7, 11, 120 }, + [22] = { 10.8, 61.3, 11, 120 }, + [23] = { 10.5, 60.9, 11, 120 }, + [24] = { 10.7, 60.7, 11, 120 }, + [25] = { 10.6, 60.7, 11, 120 }, + [26] = { 10.5, 60.7, 11, 120 }, + [27] = { 10.9, 60.6, 11, 120 }, + [28] = { 10.9, 60.4, 11, 120 }, + [29] = { 10.7, 60.3, 11, 120 }, + [30] = { 10.6, 60.3, 11, 120 }, + [31] = { 10.7, 60.1, 11, 120 }, + [32] = { 43.5, 66.5, 12, 120 }, + [33] = { 43.1, 66.3, 12, 120 }, + [34] = { 43.6, 66.2, 12, 120 }, + [35] = { 43.2, 66, 12, 120 }, + [36] = { 43.4, 66, 12, 120 }, + [37] = { 44, 65.9, 12, 120 }, + [38] = { 43.7, 65.6, 12, 120 }, + [39] = { 43.6, 65.6, 12, 120 }, + [40] = { 43.5, 65.6, 12, 120 }, + [41] = { 43.4, 65.6, 12, 120 }, + [42] = { 43.5, 65.5, 12, 120 }, + [43] = { 41.4, 65.1, 12, 120 }, + [44] = { 51.5, 41.6, 14, 120 }, + [45] = { 66.1, 45.6, 15, 120 }, + [46] = { 66.5, 45.5, 15, 120 }, + [47] = { 66.4, 45.2, 15, 120 }, + [48] = { 66.3, 45.1, 15, 120 }, + [49] = { 27.1, 77.7, 33, 120 }, + [50] = { 27.3, 77.6, 33, 120 }, + [51] = { 27.2, 77.6, 33, 120 }, + [52] = { 27.3, 77.5, 33, 120 }, + [53] = { 27.2, 77.5, 33, 120 }, + [54] = { 27.2, 77.4, 33, 120 }, + [55] = { 26.9, 77.3, 33, 120 }, + [56] = { 27, 77.3, 33, 120 }, + [57] = { 27.1, 77.2, 33, 120 }, + [58] = { 60.2, 83.1, 36, 120 }, + [59] = { 61.4, 81.5, 36, 120 }, + [60] = { 61.2, 81.4, 36, 120 }, + [61] = { 60.3, 81.4, 36, 120 }, + [62] = { 34.8, 49.2, 38, 120 }, + [63] = { 35.2, 48.9, 38, 120 }, + [64] = { 34.9, 48.7, 38, 120 }, + [65] = { 35.5, 48.7, 38, 120 }, + [66] = { 27.2, 44.7, 44, 120 }, + [67] = { 27.2, 44.6, 44, 120 }, + [68] = { 27.2, 44.2, 44, 120 }, + [69] = { 74.1, 32.6, 45, 120 }, + [70] = { 74.4, 32.4, 45, 120 }, + [71] = { 74.6, 32.4, 45, 120 }, + [72] = { 78.2, 81.8, 47, 120 }, + [73] = { 78, 81.7, 47, 120 }, + [74] = { 13.1, 42.1, 47, 0 }, + [75] = { 13.7, 41.9, 47, 0 }, + [76] = { 13, 41.8, 47, 0 }, + [77] = { 13.2, 41.7, 47, 0 }, + [78] = { 14.3, 41.7, 47, 0 }, + [79] = { 13.6, 41.6, 47, 0 }, + [80] = { 14.1, 41.4, 47, 0 }, + [81] = { 14.2, 41.4, 47, 0 }, + [82] = { 14.3, 41.4, 47, 0 }, + [83] = { 81.7, 36.9, 51, 120 }, + [84] = { 62, 52.8, 85, 120 }, + [85] = { 61.9, 52.5, 85, 120 }, + [86] = { 61.7, 52.4, 85, 120 }, + [87] = { 61.7, 51.8, 85, 120 }, + [88] = { 61.8, 51.4, 85, 120 }, + [89] = { 60.9, 51, 85, 120 }, + [90] = { 43.1, 41.5, 130, 120 }, + [91] = { 43.1, 41.3, 130, 120 }, + [92] = { 50.7, 59.3, 267, 120 }, + [93] = { 51, 58.3, 267, 120 }, + [94] = { 50.7, 57.1, 267, 120 }, + [95] = { 48.9, 55.3, 267, 120 }, + [96] = { 49.2, 55.3, 267, 120 }, + [97] = { 48.9, 55.2, 267, 120 }, + [98] = { 61.5, 21.2, 267, 120 }, + [99] = { 61.6, 21.2, 267, 120 }, + [100] = { 62.5, 19.7, 267, 120 }, + [101] = { 62.4, 19.6, 267, 120 }, + [102] = { 61.6, 19.6, 267, 120 }, + [103] = { 98.3, 0.6, 267, 0 }, + [104] = { 74, 60.6, 331, 120 }, + [105] = { 74.2, 60.5, 331, 120 }, + [106] = { 47.4, 62.4, 406, 120 }, + [107] = { 52.6, 27.9, 440, 120 }, + [108] = { 61.4, 39, 618, 120 }, + [109] = { 61.4, 38.9, 618, 120 }, + [110] = { 69.5, 48.5, 1497, 120 }, + [111] = { 69.5, 44.7, 1497, 120 }, + [112] = { 61, 40.9, 1497, 120 }, + [113] = { 60.6, 40.2, 1497, 120 }, + [114] = { 68.3, 37.7, 1497, 120 }, + [115] = { 52.1, 65.5, 1519, 120 }, + [116] = { 54.5, 65.2, 1519, 120 }, + [117] = { 54.4, 65.1, 1519, 120 }, + [118] = { 54.6, 65.1, 1519, 120 }, + [119] = { 54.3, 65.1, 1519, 120 }, + [120] = { 54.7, 65.1, 1519, 120 }, + [121] = { 54.5, 65, 1519, 120 }, + [122] = { 54.2, 65, 1519, 120 }, + [123] = { 54.4, 64.9, 1519, 120 }, + [124] = { 54.7, 64.9, 1519, 120 }, + [125] = { 54.6, 64.9, 1519, 120 }, + [126] = { 54.5, 64.9, 1519, 120 }, + [127] = { 54.2, 64.8, 1519, 120 }, + [128] = { 54.4, 64.8, 1519, 120 }, + [129] = { 54.3, 64.8, 1519, 120 }, + [130] = { 54.5, 64.8, 1519, 120 }, + [131] = { 54.6, 64.8, 1519, 120 }, + [132] = { 54.7, 64.8, 1519, 120 }, + [133] = { 54.4, 64.7, 1519, 120 }, + [134] = { 54.5, 64.7, 1519, 120 }, + [135] = { 54.2, 64.6, 1519, 120 }, + [136] = { 54.3, 64.6, 1519, 120 }, + [137] = { 54.6, 64.6, 1519, 120 }, + [138] = { 54.7, 64.6, 1519, 120 }, + [139] = { 54.5, 64.6, 1519, 120 }, + [140] = { 54.3, 64.5, 1519, 120 }, + [141] = { 54.6, 64.5, 1519, 120 }, + [142] = { 54.3, 64.4, 1519, 120 }, + [143] = { 54.6, 64.4, 1519, 120 }, + [144] = { 52.8, 64.4, 1519, 120 }, + [145] = { 54.4, 64.4, 1519, 120 }, + [146] = { 27.4, 74.1, 1537, 120 }, + [147] = { 27.2, 73.8, 1537, 120 }, + [148] = { 27.1, 73.5, 1537, 120 }, + [149] = { 26.9, 73.3, 1537, 120 }, + [150] = { 23.1, 73.3, 1537, 120 }, + [151] = { 25.6, 70.8, 1537, 120 }, + [152] = { 25.4, 70.5, 1537, 120 }, + [153] = { 25.2, 70.2, 1537, 120 }, + [154] = { 25.1, 69.9, 1537, 120 }, + [155] = { 19.3, 53.1, 1537, 120 }, + [156] = { 19.1, 52.5, 1537, 120 }, + [157] = { 19.2, 50.8, 1537, 120 }, + [158] = { 50.7, 70.4, 1637, 120 }, + [159] = { 53.5, 65.4, 1637, 120 }, + }, + }, + [180426] = { + ["coords"] = { + [1] = { 4.5, 48.6, 3, 120 }, + [2] = { 4.4, 48.6, 3, 120 }, + [3] = { 4.6, 48.4, 3, 120 }, + [4] = { 4.2, 48.4, 3, 120 }, + [5] = { 4.2, 48.3, 3, 120 }, + [6] = { 4.7, 48.2, 3, 120 }, + [7] = { 4.4, 48, 3, 120 }, + [8] = { 4.5, 47.9, 3, 120 }, + [9] = { 4.8, 47.8, 3, 120 }, + [10] = { 74.2, 47.3, 10, 120 }, + [11] = { 74.3, 47.1, 10, 120 }, + [12] = { 74.1, 47.1, 10, 120 }, + [13] = { 74.2, 47.1, 10, 120 }, + [14] = { 74.2, 47, 10, 120 }, + [15] = { 74.1, 47, 10, 120 }, + [16] = { 74.2, 46.9, 10, 120 }, + [17] = { 42.4, 65.6, 12, 120 }, + [18] = { 42.5, 65.6, 12, 120 }, + [19] = { 42.4, 65.5, 12, 120 }, + [20] = { 42.5, 65.5, 12, 120 }, + [21] = { 52.6, 42.7, 14, 120 }, + [22] = { 52.5, 42.7, 14, 120 }, + [23] = { 52.6, 42.6, 14, 120 }, + [24] = { 52.4, 42.5, 14, 120 }, + [25] = { 52.7, 42.5, 14, 120 }, + [26] = { 46.3, 7.1, 14, 120 }, + [27] = { 45.7, 6.8, 14, 120 }, + [28] = { 46, 6.6, 14, 120 }, + [29] = { 52.1, 31.4, 17, 120 }, + [30] = { 52.1, 31.1, 17, 120 }, + [31] = { 52.1, 31, 17, 120 }, + [32] = { 52, 31, 17, 120 }, + [33] = { 52, 30.8, 17, 120 }, + [34] = { 52.1, 30.7, 17, 120 }, + [35] = { 52, 30.7, 17, 120 }, + [36] = { 52, 30.6, 17, 120 }, + [37] = { 60.4, 82, 36, 120 }, + [38] = { 60.5, 82, 36, 120 }, + [39] = { 60.4, 81.9, 36, 120 }, + [40] = { 60.4, 81.8, 36, 120 }, + [41] = { 60.6, 81.8, 36, 120 }, + [42] = { 60.2, 81.7, 36, 120 }, + [43] = { 60.5, 81.7, 36, 120 }, + [44] = { 60.3, 81.6, 36, 120 }, + [45] = { 34.9, 45.9, 38, 120 }, + [46] = { 34.9, 45.8, 38, 120 }, + [47] = { 26.9, 48.2, 44, 120 }, + [48] = { 27, 48.2, 44, 120 }, + [49] = { 26.9, 48.1, 44, 120 }, + [50] = { 73.4, 35.5, 45, 120 }, + [51] = { 73.6, 35.5, 45, 120 }, + [52] = { 73.5, 35.3, 45, 120 }, + [53] = { 73.3, 35, 45, 120 }, + [54] = { 73, 35, 45, 120 }, + [55] = { 73, 34.7, 45, 120 }, + [56] = { 73.1, 34.7, 45, 120 }, + [57] = { 79.2, 80.4, 47, 120 }, + [58] = { 78.8, 79.9, 47, 120 }, + [59] = { 78.4, 79.7, 47, 120 }, + [60] = { 78.7, 79.7, 47, 120 }, + [61] = { 78, 79.7, 47, 120 }, + [62] = { 78.1, 79.6, 47, 120 }, + [63] = { 78.6, 79.5, 47, 120 }, + [64] = { 78.1, 79.5, 47, 120 }, + [65] = { 78.3, 79.4, 47, 120 }, + [66] = { 78.5, 79.4, 47, 120 }, + [67] = { 83.7, 40.1, 51, 120 }, + [68] = { 83.6, 40, 51, 120 }, + [69] = { 83.7, 40, 51, 120 }, + [70] = { 83.8, 39.8, 51, 120 }, + [71] = { 83.4, 39.8, 51, 120 }, + [72] = { 83.4, 39.7, 51, 120 }, + [73] = { 83.9, 39.6, 51, 120 }, + [74] = { 83.6, 39.4, 51, 120 }, + [75] = { 83.7, 39.2, 51, 120 }, + [76] = { 84, 39.2, 51, 120 }, + [77] = { 55.3, 69.8, 85, 120 }, + [78] = { 55.4, 69.8, 85, 120 }, + [79] = { 61.3, 54.2, 85, 120 }, + [80] = { 61.4, 53.8, 85, 120 }, + [81] = { 61.6, 53.7, 85, 120 }, + [82] = { 61.1, 53.6, 85, 120 }, + [83] = { 61.2, 53.5, 85, 120 }, + [84] = { 61.2, 53.4, 85, 120 }, + [85] = { 61.1, 53.3, 85, 120 }, + [86] = { 61, 53.1, 85, 120 }, + [87] = { 61, 53, 85, 120 }, + [88] = { 44.1, 41.4, 130, 120 }, + [89] = { 44.2, 41.4, 130, 120 }, + [90] = { 36.9, 44.1, 148, 120 }, + [91] = { 35.1, 21.1, 215, 120 }, + [92] = { 49.9, 57.6, 267, 120 }, + [93] = { 49.8, 57.6, 267, 120 }, + [94] = { 49.9, 57.5, 267, 120 }, + [95] = { 50, 57.5, 267, 120 }, + [96] = { 49.9, 57.4, 267, 120 }, + [97] = { 49.9, 57.2, 267, 120 }, + [98] = { 61.7, 20.2, 267, 120 }, + [99] = { 61.8, 20.2, 267, 120 }, + [100] = { 61.7, 20.1, 267, 120 }, + [101] = { 61.7, 20, 267, 120 }, + [102] = { 61.9, 20, 267, 120 }, + [103] = { 61.5, 19.9, 267, 120 }, + [104] = { 61.8, 19.9, 267, 120 }, + [105] = { 61.6, 19.9, 267, 120 }, + [106] = { 74.8, 43.9, 357, 120 }, + [107] = { 74.6, 43.9, 357, 120 }, + [108] = { 74.7, 43.8, 357, 120 }, + [109] = { 74.8, 43.8, 357, 120 }, + [110] = { 75, 43.8, 357, 120 }, + [111] = { 45.7, 50.3, 400, 120 }, + [112] = { 24.1, 68.2, 405, 120 }, + [113] = { 88.7, 48.3, 405, 120 }, + [114] = { 66.3, 6.9, 405, 120 }, + [115] = { 40.8, 82, 406, 120 }, + [116] = { 51.7, 27.6, 440, 120 }, + [117] = { 61.2, 38.1, 618, 120 }, + [118] = { 51.9, 39.2, 1377, 120 }, + [119] = { 58.9, 65.8, 1519, 120 }, + [120] = { 58.7, 65.8, 1519, 120 }, + [121] = { 58.8, 65.6, 1519, 120 }, + [122] = { 58.7, 65.4, 1519, 120 }, + [123] = { 29.6, 68.7, 1537, 120 }, + [124] = { 29.9, 68.2, 1537, 120 }, + [125] = { 29.6, 68.2, 1537, 120 }, + [126] = { 29.6, 68.1, 1537, 120 }, + [127] = { 29.3, 68, 1537, 120 }, + [128] = { 29.6, 67.6, 1537, 120 }, + [129] = { 52, 76.7, 1637, 120 }, + [130] = { 49.6, 75.6, 1637, 120 }, + [131] = { 50.9, 74.6, 1637, 120 }, + [132] = { 49.6, 73.9, 1637, 120 }, + [133] = { 51.3, 73.9, 1637, 120 }, + [134] = { 50.8, 73.6, 1637, 120 }, + [135] = { 52.3, 72.9, 1637, 120 }, + [136] = { 50.6, 72.7, 1637, 120 }, + [137] = { 51.4, 72.2, 1637, 120 }, + [138] = { 52.1, 71.4, 1637, 120 }, + [139] = { 26.2, 21.2, 1638, 120 }, + [140] = { 26.1, 21.1, 1638, 120 }, + [141] = { 26.1, 21, 1638, 120 }, + [142] = { 26.2, 20.9, 1638, 120 }, + [143] = { 26.1, 20.9, 1638, 120 }, + }, + }, + [180427] = { + ["coords"] = { + [1] = { 96.4, 45.7, 1, 120 }, + [2] = { 96.4, 45.6, 1, 120 }, + [3] = { 2.9, 46, 3, 120 }, + [4] = { 2.9, 45.9, 3, 120 }, + [5] = { 74.1, 47.3, 10, 120 }, + [6] = { 74.2, 47.2, 10, 120 }, + [7] = { 74.2, 47.1, 10, 120 }, + [8] = { 74.3, 47.1, 10, 120 }, + [9] = { 74.4, 47, 10, 120 }, + [10] = { 74.1, 47, 10, 120 }, + [11] = { 42.4, 65.7, 12, 120 }, + [12] = { 42.4, 65.6, 12, 120 }, + [13] = { 42.5, 65.6, 12, 120 }, + [14] = { 42.5, 65.5, 12, 120 }, + [15] = { 42.4, 65.5, 12, 120 }, + [16] = { 42.5, 65.4, 12, 120 }, + [17] = { 52.7, 42.7, 14, 120 }, + [18] = { 52.5, 42.7, 14, 120 }, + [19] = { 52.6, 42.6, 14, 120 }, + [20] = { 52.6, 42.5, 14, 120 }, + [21] = { 52.1, 31, 17, 120 }, + [22] = { 52, 31, 17, 120 }, + [23] = { 52, 30.9, 17, 120 }, + [24] = { 52, 30.8, 17, 120 }, + [25] = { 52.1, 30.8, 17, 120 }, + [26] = { 60.3, 82, 36, 120 }, + [27] = { 60.4, 81.9, 36, 120 }, + [28] = { 60.4, 81.8, 36, 120 }, + [29] = { 60.5, 81.8, 36, 120 }, + [30] = { 60.4, 81.7, 36, 120 }, + [31] = { 34.6, 48.3, 38, 120 }, + [32] = { 34.7, 48.2, 38, 120 }, + [33] = { 26.9, 48.2, 44, 120 }, + [34] = { 27, 48.2, 44, 120 }, + [35] = { 27, 48.1, 44, 120 }, + [36] = { 26.9, 48.1, 44, 120 }, + [37] = { 74.1, 32.2, 45, 120 }, + [38] = { 78.1, 81.4, 47, 120 }, + [39] = { 81.9, 37.1, 51, 120 }, + [40] = { 55.4, 69.8, 85, 120 }, + [41] = { 61.7, 52.4, 85, 120 }, + [42] = { 61.7, 52.3, 85, 120 }, + [43] = { 44.1, 41.5, 130, 120 }, + [44] = { 44.1, 41.4, 130, 120 }, + [45] = { 44.2, 41.4, 130, 120 }, + [46] = { 36.9, 44.1, 148, 120 }, + [47] = { 49.9, 57.9, 267, 120 }, + [48] = { 49.9, 57.7, 267, 120 }, + [49] = { 50, 57.7, 267, 120 }, + [50] = { 49.8, 57.6, 267, 120 }, + [51] = { 50, 57.6, 267, 120 }, + [52] = { 49.9, 57.5, 267, 120 }, + [53] = { 49.9, 57.4, 267, 120 }, + [54] = { 50, 57.3, 267, 120 }, + [55] = { 50, 57.1, 267, 120 }, + [56] = { 61.6, 20.1, 267, 120 }, + [57] = { 61.7, 20.1, 267, 120 }, + [58] = { 61.7, 20, 267, 120 }, + [59] = { 61.7, 19.9, 267, 120 }, + [60] = { 74.7, 43.8, 357, 120 }, + [61] = { 74.8, 43.8, 357, 120 }, + [62] = { 45.7, 50.3, 400, 120 }, + [63] = { 24.1, 68.2, 405, 120 }, + [64] = { 66.3, 6.9, 405, 120 }, + [65] = { 40.8, 82, 406, 120 }, + [66] = { 51.7, 27.6, 440, 120 }, + [67] = { 61.2, 38.1, 618, 120 }, + [68] = { 51.9, 39.2, 1377, 120 }, + [69] = { 66, 44.6, 1497, 120 }, + [70] = { 66.2, 44.5, 1497, 120 }, + [71] = { 65.8, 44.4, 1497, 120 }, + [72] = { 65.9, 44.3, 1497, 120 }, + [73] = { 65.9, 44.2, 1497, 120 }, + [74] = { 66.1, 44.2, 1497, 120 }, + [75] = { 66.3, 44.1, 1497, 120 }, + [76] = { 65.6, 44.1, 1497, 120 }, + [77] = { 65.9, 44.1, 1497, 120 }, + [78] = { 66.3, 44, 1497, 120 }, + [79] = { 65.9, 44, 1497, 120 }, + [80] = { 66.1, 44, 1497, 120 }, + [81] = { 66, 44, 1497, 120 }, + [82] = { 65.9, 43.9, 1497, 120 }, + [83] = { 65.8, 43.8, 1497, 120 }, + [84] = { 66, 43.8, 1497, 120 }, + [85] = { 66.3, 43.7, 1497, 120 }, + [86] = { 56.1, 61.1, 1519, 120 }, + [87] = { 56.1, 60.9, 1519, 120 }, + [88] = { 56, 60.8, 1519, 120 }, + [89] = { 56.3, 60.7, 1519, 120 }, + [90] = { 56.1, 60.7, 1519, 120 }, + [91] = { 55.9, 60.6, 1519, 120 }, + [92] = { 56.2, 60.6, 1519, 120 }, + [93] = { 56, 60.5, 1519, 120 }, + [94] = { 56.1, 60.4, 1519, 120 }, + [95] = { 29.8, 68.4, 1537, 120 }, + [96] = { 29.6, 68.2, 1537, 120 }, + [97] = { 29.6, 68.1, 1537, 120 }, + [98] = { 29.8, 67.9, 1537, 120 }, + [99] = { 29.4, 67.8, 1537, 120 }, + [100] = { 49.2, 69.6, 1637, 120 }, + [101] = { 49.9, 69, 1637, 120 }, + [102] = { 49.4, 68.9, 1637, 120 }, + [103] = { 49.4, 68.8, 1637, 120 }, + [104] = { 49.1, 68.5, 1637, 120 }, + }, + }, + [180428] = { + ["coords"] = { + [1] = { 43.2, 66.4, 12, 120 }, + [2] = { 60.4, 80.9, 36, 120 }, + [3] = { 61.6, 52.7, 85, 120 }, + [4] = { 61.7, 19.2, 267, 120 }, + [5] = { 52.4, 66.2, 1519, 120 }, + }, + }, + [180429] = { + ["coords"] = { + [1] = { 73.8, 44.9, 10, 120 }, + [2] = { 43.2, 66.3, 12, 120 }, + [3] = { 61.9, 52.5, 85, 120 }, + [4] = { 52.1, 66.3, 1519, 120 }, + }, + }, + [180430] = { + ["coords"] = {}, + }, + [180431] = { + ["coords"] = { + [1] = { 66, 36.9, 1497, 120 }, + }, + }, + [180432] = { + ["coords"] = { + [1] = { 55.8, 70.6, 85, 0 }, + [2] = { 56.6, 69.9, 85, 0 }, + [3] = { 55.8, 69.3, 85, 0 }, + [4] = { 37.9, 26.3, 1497, 0 }, + [5] = { 41.5, 22.9, 1497, 0 }, + }, + }, + [180433] = { + ["coords"] = { + [1] = { 55.9, 69.9, 85, 0 }, + [2] = { 38, 22.9, 1497, 0 }, + }, + }, + [180434] = { + ["coords"] = { + [1] = { 55.6, 70.7, 85, 0 }, + [2] = { 56.6, 70.5, 85, 0 }, + [3] = { 55, 69.8, 85, 0 }, + [4] = { 56.6, 69.5, 85, 0 }, + [5] = { 55.7, 69, 85, 0 }, + [6] = { 36.9, 26.7, 1497, 0 }, + [7] = { 41.6, 25.6, 1497, 0 }, + [8] = { 41.5, 20.8, 1497, 0 }, + }, + }, + [180435] = { + ["coords"] = { + [1] = { 44.6, 91.4, 1377, 10 }, + }, + ["fac"] = "AH", + }, + [180436] = { + ["coords"] = { + [1] = { 54, 83.4, 357, 180 }, + [2] = { 56, 83.4, 357, 180 }, + [3] = { 53.2, 83.2, 357, 180 }, + [4] = { 52.5, 82.9, 357, 180 }, + [5] = { 52.8, 82.8, 357, 180 }, + [6] = { 55.5, 82.8, 357, 180 }, + [7] = { 52.7, 82.7, 357, 180 }, + [8] = { 53.2, 82.4, 357, 180 }, + [9] = { 53.3, 82.4, 357, 180 }, + [10] = { 54.4, 82.4, 357, 180 }, + [11] = { 53.9, 82.4, 357, 180 }, + [12] = { 51.7, 82.4, 357, 180 }, + [13] = { 52.6, 82.2, 357, 180 }, + [14] = { 53.7, 82, 357, 180 }, + [15] = { 52.9, 81.7, 357, 180 }, + [16] = { 53.1, 81.7, 357, 180 }, + [17] = { 52.1, 81.5, 357, 180 }, + [18] = { 52.6, 81.3, 357, 180 }, + [19] = { 17.6, 23.1, 1377, 180 }, + [20] = { 19.7, 22.1, 1377, 180 }, + [21] = { 21.6, 21.9, 1377, 180 }, + [22] = { 19.4, 21, 1377, 180 }, + [23] = { 22.2, 18.7, 1377, 180 }, + [24] = { 21, 18.1, 1377, 180 }, + [25] = { 23.2, 17.1, 1377, 180 }, + [26] = { 19.3, 17, 1377, 180 }, + [27] = { 26.4, 15.9, 1377, 180 }, + [28] = { 21.8, 15.9, 1377, 180 }, + [29] = { 24, 15.5, 1377, 180 }, + [30] = { 20, 15.5, 1377, 180 }, + [31] = { 22, 14.5, 1377, 180 }, + [32] = { 24, 13.7, 1377, 180 }, + [33] = { 22.1, 13.4, 1377, 180 }, + [34] = { 26.6, 13.2, 1377, 180 }, + [35] = { 21.5, 12.8, 1377, 180 }, + [36] = { 24.4, 11.8, 1377, 180 }, + [37] = { 28.4, 11.7, 1377, 180 }, + [38] = { 21.1, 11.6, 1377, 180 }, + [39] = { 20.5, 11.4, 1377, 180 }, + [40] = { 22.7, 11.3, 1377, 180 }, + [41] = { 21.5, 10.8, 1377, 180 }, + [42] = { 22, 10.6, 1377, 180 }, + [43] = { 27.4, 10.5, 1377, 180 }, + [44] = { 21.8, 10.3, 1377, 180 }, + [45] = { 20.7, 10.3, 1377, 180 }, + [46] = { 22.7, 9.8, 1377, 180 }, + [47] = { 22.9, 9.8, 1377, 180 }, + [48] = { 25.2, 9.8, 1377, 180 }, + [49] = { 24.1, 9.7, 1377, 180 }, + [50] = { 19.8, 9.7, 1377, 180 }, + [51] = { 21.6, 9.4, 1377, 180 }, + [52] = { 23.8, 8.8, 1377, 180 }, + [53] = { 22.2, 8.4, 1377, 180 }, + [54] = { 22.7, 8.3, 1377, 180 }, + [55] = { 20.6, 7.9, 1377, 180 }, + [56] = { 21.5, 7.6, 1377, 180 }, + }, + ["fac"] = "AH", + }, + [180437] = { + ["coords"] = {}, + ["fac"] = "H", + }, + [180438] = { + ["coords"] = { + [1] = { 25.2, 36.1, 1377, 900 }, + }, + }, + [180439] = { + ["coords"] = { + [1] = { 27, 34.4, 1377, 900 }, + }, + }, + [180440] = { + ["coords"] = { + [1] = { 38, 44.3, 1377, 900 }, + }, + }, + [180441] = { + ["coords"] = { + [1] = { 40.6, 44.4, 1377, 900 }, + }, + }, + [180442] = { + ["coords"] = { + [1] = { 39.8, 46.4, 1377, 900 }, + }, + }, + [180443] = { + ["coords"] = { + [1] = { 66.8, 21, 1377, 900 }, + }, + }, + [180444] = { + ["coords"] = { + [1] = { 68.4, 16.8, 1377, 900 }, + }, + }, + [180448] = { + ["coords"] = { + [1] = { 51.4, 38.3, 1377, 10 }, + }, + ["fac"] = "AH", + }, + [180449] = { + ["coords"] = {}, + }, + [180450] = { + ["coords"] = {}, + }, + [180451] = { + ["coords"] = { + [1] = { 51.7, 38, 1377, 900 }, + }, + }, + [180452] = { + ["coords"] = { + [1] = { 38.2, 30.7, 215, 25 }, + [2] = { 41.2, 68.2, 1638, 25 }, + }, + }, + [180453] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [180454] = { + ["coords"] = { + [1] = { 50.9, 26.8, 1377, 900 }, + }, + ["fac"] = "AH", + }, + [180455] = { + ["coords"] = { + [1] = { 37.3, 62.5, 1377, 900 }, + }, + ["fac"] = "AH", + }, + [180456] = { + ["coords"] = { + [1] = { 20.5, 86.2, 1377, 300 }, + }, + }, + [180461] = { + ["coords"] = { + [1] = { 17.2, 84.8, 1377, 900 }, + }, + }, + [180466] = { + ["coords"] = { + [1] = { 18.6, 83.5, 1377, 10800 }, + }, + }, + [180471] = { + ["coords"] = { + [1] = { 46, 52, 1, 120 }, + [2] = { 46, 51.7, 1, 120 }, + [3] = { 96.4, 45.8, 1, 120 }, + [4] = { 6.1, 48, 3, 120 }, + [5] = { 5.7, 47.6, 3, 120 }, + [6] = { 6.5, 47.6, 3, 120 }, + [7] = { 3.7, 47.3, 3, 120 }, + [8] = { 3, 47, 3, 120 }, + [9] = { 5.7, 46.9, 3, 120 }, + [10] = { 2.7, 46.9, 3, 120 }, + [11] = { 6.5, 46.9, 3, 120 }, + [12] = { 4, 46.7, 3, 120 }, + [13] = { 2.4, 46.7, 3, 120 }, + [14] = { 6.1, 46.6, 3, 120 }, + [15] = { 2.2, 46.2, 3, 120 }, + [16] = { 3.1, 45.8, 3, 120 }, + [17] = { 3.5, 45.8, 3, 120 }, + [18] = { 2.2, 45.7, 3, 120 }, + [19] = { 2.7, 45.6, 3, 120 }, + [20] = { 3.4, 45.3, 3, 120 }, + [21] = { 2.4, 45.2, 3, 120 }, + [22] = { 3.1, 45, 3, 120 }, + [23] = { 2.7, 45, 3, 120 }, + [24] = { 45, 57.5, 8, 120 }, + [25] = { 44.7, 57.4, 8, 120 }, + [26] = { 45.3, 55.1, 8, 120 }, + [27] = { 73.1, 47.2, 10, 120 }, + [28] = { 73, 46.3, 10, 120 }, + [29] = { 73.7, 46, 10, 120 }, + [30] = { 74, 46, 10, 120 }, + [31] = { 73.5, 45.8, 10, 120 }, + [32] = { 74.5, 45.7, 10, 120 }, + [33] = { 74.4, 43.8, 10, 120 }, + [34] = { 73.3, 42.9, 10, 120 }, + [35] = { 74, 42.9, 10, 120 }, + [36] = { 11, 61.8, 11, 120 }, + [37] = { 10.6, 61.8, 11, 120 }, + [38] = { 10.3, 61.2, 11, 120 }, + [39] = { 11, 61.1, 11, 120 }, + [40] = { 10.8, 61, 11, 120 }, + [41] = { 10.3, 60.8, 11, 120 }, + [42] = { 10.5, 60.6, 11, 120 }, + [43] = { 10.3, 60.2, 11, 120 }, + [44] = { 11, 59.9, 11, 120 }, + [45] = { 10.3, 59.9, 11, 120 }, + [46] = { 10.9, 59.8, 11, 120 }, + [47] = { 10.7, 59.8, 11, 120 }, + [48] = { 41.7, 67.2, 12, 120 }, + [49] = { 43.8, 66.7, 12, 120 }, + [50] = { 44, 66.7, 12, 120 }, + [51] = { 43.5, 66.6, 12, 120 }, + [52] = { 43.2, 66.6, 12, 120 }, + [53] = { 43, 66.5, 12, 120 }, + [54] = { 44.5, 66.3, 12, 120 }, + [55] = { 44.6, 65.9, 12, 120 }, + [56] = { 44.6, 65.5, 12, 120 }, + [57] = { 43.1, 65.3, 12, 120 }, + [58] = { 51.8, 42.1, 14, 120 }, + [59] = { 51.9, 41.8, 14, 120 }, + [60] = { 47.3, 6.6, 14, 120 }, + [61] = { 66.2, 45.8, 15, 120 }, + [62] = { 66.4, 45.8, 15, 120 }, + [63] = { 66.6, 45.8, 15, 120 }, + [64] = { 66.1, 45.8, 15, 120 }, + [65] = { 66.7, 45.7, 15, 120 }, + [66] = { 67.1, 45.4, 15, 120 }, + [67] = { 66, 45.3, 15, 120 }, + [68] = { 66.6, 45.1, 15, 120 }, + [69] = { 66, 45.1, 15, 120 }, + [70] = { 66.1, 44.9, 15, 120 }, + [71] = { 66.7, 44.9, 15, 120 }, + [72] = { 67.1, 44.9, 15, 120 }, + [73] = { 45.6, 59.1, 17, 120 }, + [74] = { 45.5, 59.1, 17, 120 }, + [75] = { 45.4, 59, 17, 120 }, + [76] = { 45.3, 58.9, 17, 120 }, + [77] = { 45.3, 58.8, 17, 120 }, + [78] = { 45.3, 58.7, 17, 120 }, + [79] = { 45.4, 58.7, 17, 120 }, + [80] = { 61.9, 38.5, 17, 120 }, + [81] = { 62.2, 37.6, 17, 120 }, + [82] = { 62.3, 37.6, 17, 120 }, + [83] = { 62.4, 37.6, 17, 120 }, + [84] = { 51.9, 30.2, 17, 120 }, + [85] = { 52.2, 30.1, 17, 120 }, + [86] = { 51.9, 29.8, 17, 120 }, + [87] = { 51.7, 29.8, 17, 120 }, + [88] = { 52.1, 29.8, 17, 120 }, + [89] = { 52.2, 29.6, 17, 120 }, + [90] = { 51.9, 29.5, 17, 120 }, + [91] = { 27.1, 77.5, 33, 120 }, + [92] = { 31.6, 30.1, 33, 120 }, + [93] = { 31.4, 30, 33, 120 }, + [94] = { 31.7, 30, 33, 120 }, + [95] = { 31.6, 29.9, 33, 120 }, + [96] = { 31.5, 29.8, 33, 120 }, + [97] = { 31.3, 29.8, 33, 120 }, + [98] = { 31.8, 29.8, 33, 120 }, + [99] = { 31.4, 29.6, 33, 120 }, + [100] = { 31.7, 29.6, 33, 120 }, + [101] = { 31.3, 29.6, 33, 120 }, + [102] = { 31.8, 29.5, 33, 120 }, + [103] = { 31.5, 29.5, 33, 120 }, + [104] = { 31.7, 29.5, 33, 120 }, + [105] = { 31.4, 29.3, 33, 120 }, + [106] = { 31.6, 29.3, 33, 120 }, + [107] = { 31.7, 29.3, 33, 120 }, + [108] = { 62.1, 82.8, 36, 120 }, + [109] = { 61.7, 82.7, 36, 120 }, + [110] = { 62.2, 82.4, 36, 120 }, + [111] = { 61.8, 82.2, 36, 120 }, + [112] = { 61.1, 81.3, 36, 120 }, + [113] = { 35.7, 48.8, 38, 120 }, + [114] = { 34.6, 48.6, 38, 120 }, + [115] = { 35.1, 48.4, 38, 120 }, + [116] = { 35.5, 47.6, 38, 120 }, + [117] = { 35, 47.5, 38, 120 }, + [118] = { 52.7, 54, 40, 120 }, + [119] = { 52.4, 53.7, 40, 120 }, + [120] = { 52.1, 53.3, 40, 120 }, + [121] = { 53, 53.3, 40, 120 }, + [122] = { 52.7, 53, 40, 120 }, + [123] = { 26.8, 46.4, 44, 120 }, + [124] = { 26.4, 46.4, 44, 120 }, + [125] = { 27.6, 43.7, 44, 120 }, + [126] = { 74.3, 33, 45, 120 }, + [127] = { 73.6, 33, 45, 120 }, + [128] = { 74, 33, 45, 120 }, + [129] = { 74, 32.6, 45, 120 }, + [130] = { 74.3, 32.6, 45, 120 }, + [131] = { 73.6, 32.2, 45, 120 }, + [132] = { 74, 31.6, 45, 120 }, + [133] = { 74.3, 31.6, 45, 120 }, + [134] = { 78, 81.8, 47, 120 }, + [135] = { 78.6, 81.8, 47, 120 }, + [136] = { 77.9, 81.6, 47, 120 }, + [137] = { 77.7, 80.9, 47, 120 }, + [138] = { 13.2, 42, 47, 120 }, + [139] = { 14.3, 41.9, 47, 120 }, + [140] = { 14.4, 41.8, 47, 120 }, + [141] = { 13.2, 41.8, 47, 120 }, + [142] = { 14.1, 41.7, 47, 120 }, + [143] = { 13.5, 41.6, 47, 120 }, + [144] = { 13.8, 41.5, 47, 120 }, + [145] = { 14.4, 41.5, 47, 120 }, + [146] = { 14.1, 41.5, 47, 120 }, + [147] = { 14.1, 41.3, 47, 120 }, + [148] = { 14.2, 41.2, 47, 120 }, + [149] = { 14.3, 41.2, 47, 120 }, + [150] = { 82.8, 38.6, 51, 120 }, + [151] = { 82.1, 38.2, 51, 120 }, + [152] = { 81.7, 38.2, 51, 120 }, + [153] = { 83.1, 37.9, 51, 120 }, + [154] = { 81.4, 37.9, 51, 120 }, + [155] = { 81.2, 37.3, 51, 120 }, + [156] = { 82.2, 36.9, 51, 120 }, + [157] = { 82.7, 36.9, 51, 120 }, + [158] = { 81.2, 36.8, 51, 120 }, + [159] = { 81.7, 36.7, 51, 120 }, + [160] = { 82.5, 36.3, 51, 120 }, + [161] = { 81.4, 36.3, 51, 120 }, + [162] = { 82.2, 36.1, 51, 120 }, + [163] = { 81.8, 36, 51, 120 }, + [164] = { 60.3, 53.7, 85, 120 }, + [165] = { 60.4, 53.4, 85, 120 }, + [166] = { 59.9, 53.3, 85, 120 }, + [167] = { 60.4, 53, 85, 120 }, + [168] = { 60.1, 53, 85, 120 }, + [169] = { 61.7, 53, 85, 120 }, + [170] = { 61.5, 52.9, 85, 120 }, + [171] = { 62, 52.9, 85, 120 }, + [172] = { 60.1, 52.7, 85, 120 }, + [173] = { 62.1, 52.5, 85, 120 }, + [174] = { 59.8, 52.3, 85, 120 }, + [175] = { 59.3, 52.2, 85, 120 }, + [176] = { 62.1, 52.1, 85, 120 }, + [177] = { 61.9, 51.8, 85, 120 }, + [178] = { 61.5, 51.7, 85, 120 }, + [179] = { 61.1, 51.7, 85, 120 }, + [180] = { 60.7, 51.5, 85, 120 }, + [181] = { 61.9, 51.5, 85, 120 }, + [182] = { 61.6, 51.4, 85, 120 }, + [183] = { 61.4, 51.3, 85, 120 }, + [184] = { 60.2, 50.9, 85, 120 }, + [185] = { 61.5, 50.6, 85, 120 }, + [186] = { 61.2, 50.2, 85, 120 }, + [187] = { 60.4, 50.1, 85, 120 }, + [188] = { 60.8, 50, 85, 120 }, + [189] = { 43.3, 41.7, 130, 120 }, + [190] = { 43, 41.6, 130, 120 }, + [191] = { 43.3, 41.4, 130, 120 }, + [192] = { 43.2, 41.3, 130, 120 }, + [193] = { 43, 41.1, 130, 120 }, + [194] = { 44.5, 39.4, 130, 120 }, + [195] = { 44.9, 39.4, 130, 120 }, + [196] = { 57.4, 60.7, 141, 120 }, + [197] = { 57.4, 60.5, 141, 120 }, + [198] = { 56, 58.9, 141, 120 }, + [199] = { 55.7, 58.8, 141, 120 }, + [200] = { 56.1, 58.6, 141, 120 }, + [201] = { 55.4, 56.9, 141, 120 }, + [202] = { 55.3, 56.9, 141, 120 }, + [203] = { 55.4, 56.8, 141, 120 }, + [204] = { 55.2, 56.8, 141, 120 }, + [205] = { 55.5, 56.8, 141, 120 }, + [206] = { 55.4, 56.7, 141, 120 }, + [207] = { 55.3, 56.6, 141, 120 }, + [208] = { 31.5, 50.8, 141, 120 }, + [209] = { 30.8, 49.4, 141, 120 }, + [210] = { 36.9, 44.8, 148, 120 }, + [211] = { 37, 44.8, 148, 120 }, + [212] = { 36.8, 44.7, 148, 120 }, + [213] = { 36.6, 44.7, 148, 120 }, + [214] = { 36.7, 44.7, 148, 120 }, + [215] = { 37.1, 44.6, 148, 120 }, + [216] = { 36.5, 44.6, 148, 120 }, + [217] = { 37.2, 44.5, 148, 120 }, + [218] = { 36.5, 44.2, 148, 120 }, + [219] = { 36.4, 44.1, 148, 120 }, + [220] = { 37.3, 43.9, 148, 120 }, + [221] = { 37.3, 43.8, 148, 120 }, + [222] = { 36.6, 43.6, 148, 120 }, + [223] = { 37.3, 43.6, 148, 120 }, + [224] = { 36.5, 43.6, 148, 120 }, + [225] = { 37.1, 43.5, 148, 120 }, + [226] = { 37.2, 43.5, 148, 120 }, + [227] = { 37, 43.4, 148, 120 }, + [228] = { 36.8, 43.3, 148, 120 }, + [229] = { 36.9, 43.3, 148, 120 }, + [230] = { 47, 60.5, 215, 120 }, + [231] = { 46.9, 60.5, 215, 120 }, + [232] = { 46.9, 60.4, 215, 120 }, + [233] = { 46.8, 60.4, 215, 120 }, + [234] = { 46.7, 60.4, 215, 120 }, + [235] = { 46.8, 60.3, 215, 120 }, + [236] = { 39.3, 30.6, 215, 120 }, + [237] = { 39, 29.7, 215, 120 }, + [238] = { 38.8, 29.4, 215, 120 }, + [239] = { 39, 29.3, 215, 120 }, + [240] = { 50.6, 59.5, 267, 120 }, + [241] = { 51.1, 58.3, 267, 120 }, + [242] = { 50.6, 58.1, 267, 120 }, + [243] = { 63.2, 20.9, 267, 120 }, + [244] = { 62.8, 20.8, 267, 120 }, + [245] = { 63.3, 20.5, 267, 120 }, + [246] = { 62.9, 20.3, 267, 120 }, + [247] = { 62.3, 19.6, 267, 120 }, + [248] = { 98.5, 0.5, 267, 120 }, + [249] = { 74, 61.2, 331, 120 }, + [250] = { 74.1, 61.2, 331, 120 }, + [251] = { 73.9, 61.1, 331, 120 }, + [252] = { 74.1, 61.1, 331, 120 }, + [253] = { 74.2, 61.1, 331, 120 }, + [254] = { 73.8, 61.1, 331, 120 }, + [255] = { 74.3, 61, 331, 120 }, + [256] = { 73.8, 61, 331, 120 }, + [257] = { 74.4, 61, 331, 120 }, + [258] = { 73.8, 60.9, 331, 120 }, + [259] = { 73.7, 60.8, 331, 120 }, + [260] = { 73.7, 60.7, 331, 120 }, + [261] = { 73.6, 60.7, 331, 120 }, + [262] = { 73.6, 60.5, 331, 120 }, + [263] = { 73.7, 60.4, 331, 120 }, + [264] = { 73.7, 60.3, 331, 120 }, + [265] = { 73.8, 60.2, 331, 120 }, + [266] = { 73.8, 60.1, 331, 120 }, + [267] = { 73.8, 60, 331, 120 }, + [268] = { 73.9, 60, 331, 120 }, + [269] = { 37.2, 50.6, 331, 120 }, + [270] = { 37, 50.6, 331, 120 }, + [271] = { 36.9, 50.5, 331, 120 }, + [272] = { 37.3, 50.4, 331, 120 }, + [273] = { 36.5, 50.3, 331, 120 }, + [274] = { 36.4, 50.2, 331, 120 }, + [275] = { 37.2, 50.1, 331, 120 }, + [276] = { 36.3, 50.1, 331, 120 }, + [277] = { 37.4, 49.9, 331, 120 }, + [278] = { 36.3, 49.8, 331, 120 }, + [279] = { 36.4, 49.6, 331, 120 }, + [280] = { 37.2, 49.4, 331, 120 }, + [281] = { 36.4, 49.3, 331, 120 }, + [282] = { 37.2, 49.2, 331, 120 }, + [283] = { 36.7, 49.2, 331, 120 }, + [284] = { 36.5, 49.2, 331, 120 }, + [285] = { 36.8, 49, 331, 120 }, + [286] = { 74.8, 45.4, 357, 120 }, + [287] = { 74.7, 45.2, 357, 120 }, + [288] = { 74.7, 45, 357, 120 }, + [289] = { 74.6, 44.7, 357, 120 }, + [290] = { 74.7, 44.6, 357, 120 }, + [291] = { 31.1, 43.8, 357, 120 }, + [292] = { 30.7, 43.7, 357, 120 }, + [293] = { 31.4, 43.7, 357, 120 }, + [294] = { 30.5, 43.5, 357, 120 }, + [295] = { 31.4, 43.3, 357, 120 }, + [296] = { 30.5, 43, 357, 120 }, + [297] = { 31.4, 42.9, 357, 120 }, + [298] = { 31.1, 42.8, 357, 120 }, + [299] = { 30.9, 42.8, 357, 120 }, + [300] = { 30.8, 42.8, 357, 120 }, + [301] = { 31.2, 42.6, 357, 120 }, + [302] = { 45.8, 51.1, 400, 120 }, + [303] = { 46.1, 51, 400, 120 }, + [304] = { 24.5, 68.8, 405, 120 }, + [305] = { 24.6, 68.5, 405, 120 }, + [306] = { 24.3, 67.7, 405, 120 }, + [307] = { 66.2, 7.4, 405, 120 }, + [308] = { 66.5, 7.3, 405, 120 }, + [309] = { 65.8, 6.7, 405, 120 }, + [310] = { 66, 6.6, 405, 120 }, + [311] = { 66.5, 6.4, 405, 120 }, + [312] = { 66.7, 6.4, 405, 120 }, + [313] = { 40.7, 82.5, 406, 120 }, + [314] = { 41, 82.4, 406, 120 }, + [315] = { 40.4, 81.9, 406, 120 }, + [316] = { 40.5, 81.8, 406, 120 }, + [317] = { 41, 81.6, 406, 120 }, + [318] = { 41.2, 81.6, 406, 120 }, + [319] = { 47.4, 62.4, 406, 120 }, + [320] = { 47.4, 62, 406, 120 }, + [321] = { 48, 61.6, 406, 120 }, + [322] = { 47.9, 61.3, 406, 120 }, + [323] = { 47.8, 61.3, 406, 120 }, + [324] = { 47.6, 61.2, 406, 120 }, + [325] = { 52.7, 28.3, 440, 120 }, + [326] = { 52.4, 28.3, 440, 120 }, + [327] = { 52.7, 28.2, 440, 120 }, + [328] = { 52.4, 28.2, 440, 120 }, + [329] = { 52.8, 27.8, 440, 120 }, + [330] = { 52.7, 27.8, 440, 120 }, + [331] = { 52.5, 27.7, 440, 120 }, + [332] = { 52.7, 27.7, 440, 120 }, + [333] = { 52.5, 27.6, 440, 120 }, + [334] = { 61.2, 39.2, 618, 120 }, + [335] = { 61.5, 39.2, 618, 120 }, + [336] = { 61.5, 38.9, 618, 120 }, + [337] = { 61.2, 38.8, 618, 120 }, + [338] = { 60.8, 37.8, 618, 120 }, + [339] = { 51.7, 39.9, 1377, 120 }, + [340] = { 52.4, 39.3, 1377, 120 }, + [341] = { 51.4, 39, 1377, 120 }, + [342] = { 52.1, 38.4, 1377, 120 }, + [343] = { 67.3, 50, 1497, 120 }, + [344] = { 64.6, 50, 1497, 120 }, + [345] = { 69.1, 48.1, 1497, 120 }, + [346] = { 62.8, 48, 1497, 120 }, + [347] = { 69.6, 46.9, 1497, 120 }, + [348] = { 62.3, 46.9, 1497, 120 }, + [349] = { 66.8, 45.4, 1497, 120 }, + [350] = { 65.1, 45.3, 1497, 120 }, + [351] = { 66, 45.2, 1497, 120 }, + [352] = { 62.5, 44.6, 1497, 120 }, + [353] = { 62.5, 43.5, 1497, 120 }, + [354] = { 66, 42.9, 1497, 120 }, + [355] = { 66.8, 42.9, 1497, 120 }, + [356] = { 65.1, 42.8, 1497, 120 }, + [357] = { 69.7, 41.4, 1497, 120 }, + [358] = { 62.3, 41.3, 1497, 120 }, + [359] = { 69.1, 40.2, 1497, 120 }, + [360] = { 62.8, 40.1, 1497, 120 }, + [361] = { 61.7, 38.8, 1497, 120 }, + [362] = { 67.3, 38.2, 1497, 120 }, + [363] = { 64.7, 38.1, 1497, 120 }, + [364] = { 66.5, 37.8, 1497, 120 }, + [365] = { 62.4, 37.8, 1497, 120 }, + [366] = { 65.5, 37.7, 1497, 120 }, + [367] = { 61.6, 37.6, 1497, 120 }, + [368] = { 53.5, 64.8, 1519, 120 }, + [369] = { 56.8, 59, 1519, 120 }, + [370] = { 56.2, 57.9, 1519, 120 }, + [371] = { 27.7, 74.2, 1537, 120 }, + [372] = { 27.4, 73.7, 1537, 120 }, + [373] = { 27.1, 73.2, 1537, 120 }, + [374] = { 26.8, 72.7, 1537, 120 }, + [375] = { 26.5, 72.2, 1537, 120 }, + [376] = { 26.2, 71.7, 1537, 120 }, + [377] = { 26, 71.2, 1537, 120 }, + [378] = { 25.7, 70.7, 1537, 120 }, + [379] = { 25.4, 70.2, 1537, 120 }, + [380] = { 25.2, 69.8, 1537, 120 }, + [381] = { 24.9, 69.3, 1537, 120 }, + [382] = { 56, 74.8, 1637, 120 }, + [383] = { 55, 72.8, 1637, 120 }, + [384] = { 54.9, 72.8, 1637, 120 }, + [385] = { 55.8, 70.7, 1637, 120 }, + [386] = { 54.2, 69.6, 1637, 120 }, + [387] = { 53.6, 68.9, 1637, 120 }, + [388] = { 53.8, 65.9, 1637, 120 }, + [389] = { 53.1, 63.7, 1637, 120 }, + [390] = { 51.6, 63.6, 1637, 120 }, + [391] = { 46.7, 67.9, 1638, 120 }, + [392] = { 45.5, 63.4, 1638, 120 }, + [393] = { 44.4, 62, 1638, 120 }, + [394] = { 45.2, 61.3, 1638, 120 }, + [395] = { 68.7, 18.8, 1657, 120 }, + [396] = { 65.6, 12, 1657, 120 }, + }, + }, + [180472] = { + ["coords"] = { + [1] = { 47.4, 52.6, 1, 120 }, + [2] = { 46, 51.8, 1, 120 }, + [3] = { 5.9, 47.8, 3, 120 }, + [4] = { 6.3, 47.7, 3, 120 }, + [5] = { 5.7, 47.3, 3, 120 }, + [6] = { 6.5, 47.2, 3, 120 }, + [7] = { 3.8, 47, 3, 120 }, + [8] = { 2.8, 46.9, 3, 120 }, + [9] = { 6.3, 46.8, 3, 120 }, + [10] = { 5.9, 46.7, 3, 120 }, + [11] = { 2.3, 46.4, 3, 120 }, + [12] = { 2.7, 45.9, 3, 120 }, + [13] = { 3.5, 45.6, 3, 120 }, + [14] = { 2.9, 45.5, 3, 120 }, + [15] = { 2.3, 45.4, 3, 120 }, + [16] = { 2.9, 45, 3, 120 }, + [17] = { 44.9, 58.2, 8, 120 }, + [18] = { 45.6, 57.9, 8, 120 }, + [19] = { 44.9, 57.7, 8, 120 }, + [20] = { 44.4, 57.5, 8, 120 }, + [21] = { 44.8, 56.9, 8, 120 }, + [22] = { 45.7, 56.8, 8, 120 }, + [23] = { 44.5, 56.5, 8, 120 }, + [24] = { 45.3, 55.3, 8, 120 }, + [25] = { 72.9, 46.8, 10, 120 }, + [26] = { 73.8, 46, 10, 120 }, + [27] = { 73.6, 44.9, 10, 120 }, + [28] = { 10.8, 61.8, 11, 120 }, + [29] = { 10.8, 61.6, 11, 120 }, + [30] = { 10.6, 61.5, 11, 120 }, + [31] = { 11, 61.5, 11, 120 }, + [32] = { 11, 61.2, 11, 120 }, + [33] = { 10.6, 61.2, 11, 120 }, + [34] = { 10.5, 61.1, 11, 120 }, + [35] = { 10.3, 61, 11, 120 }, + [36] = { 11, 60.8, 11, 120 }, + [37] = { 10.3, 60.5, 11, 120 }, + [38] = { 11, 60.2, 11, 120 }, + [39] = { 10.5, 60.2, 11, 120 }, + [40] = { 10.3, 60.1, 11, 120 }, + [41] = { 10.9, 59.9, 11, 120 }, + [42] = { 10.7, 59.9, 11, 120 }, + [43] = { 10.8, 59.8, 11, 120 }, + [44] = { 43.7, 66.6, 12, 120 }, + [45] = { 43.3, 66.5, 12, 120 }, + [46] = { 44, 66.4, 12, 120 }, + [47] = { 43.1, 66.2, 12, 120 }, + [48] = { 44.5, 65.9, 12, 120 }, + [49] = { 43.9, 65.8, 12, 120 }, + [50] = { 42.9, 65.6, 12, 120 }, + [51] = { 43.8, 65.5, 12, 120 }, + [52] = { 43.3, 65.4, 12, 120 }, + [53] = { 51.6, 41.9, 14, 120 }, + [54] = { 51.3, 41.8, 14, 120 }, + [55] = { 51.7, 41.6, 14, 120 }, + [56] = { 51.3, 41.5, 14, 120 }, + [57] = { 51.5, 41.3, 14, 120 }, + [58] = { 66.2, 45.8, 15, 120 }, + [59] = { 66.4, 45.8, 15, 120 }, + [60] = { 66.6, 45.8, 15, 120 }, + [61] = { 66.8, 45.4, 15, 120 }, + [62] = { 66.9, 45.4, 15, 120 }, + [63] = { 66.1, 45.3, 15, 120 }, + [64] = { 66, 45.2, 15, 120 }, + [65] = { 66.4, 45.1, 15, 120 }, + [66] = { 66.1, 45.1, 15, 120 }, + [67] = { 66.8, 44.9, 15, 120 }, + [68] = { 66.9, 44.9, 15, 120 }, + [69] = { 45.7, 59.1, 17, 120 }, + [70] = { 45.3, 59, 17, 120 }, + [71] = { 45.5, 58.9, 17, 120 }, + [72] = { 45.4, 58.9, 17, 120 }, + [73] = { 45.3, 58.8, 17, 120 }, + [74] = { 45.4, 58.6, 17, 120 }, + [75] = { 62.1, 39.3, 17, 120 }, + [76] = { 62.1, 38.3, 17, 120 }, + [77] = { 62.6, 37.4, 17, 120 }, + [78] = { 62.7, 37.4, 17, 120 }, + [79] = { 62.9, 36.5, 17, 120 }, + [80] = { 52.3, 30.7, 17, 120 }, + [81] = { 52.3, 30.5, 17, 120 }, + [82] = { 51.9, 30, 17, 120 }, + [83] = { 52.1, 30, 17, 120 }, + [84] = { 51.9, 29.7, 17, 120 }, + [85] = { 27.3, 77.4, 33, 120 }, + [86] = { 27.2, 77.4, 33, 120 }, + [87] = { 31.5, 30, 33, 120 }, + [88] = { 31.6, 30, 33, 120 }, + [89] = { 31.8, 29.9, 33, 120 }, + [90] = { 31.3, 29.9, 33, 120 }, + [91] = { 31.3, 29.7, 33, 120 }, + [92] = { 31.7, 29.7, 33, 120 }, + [93] = { 31.4, 29.7, 33, 120 }, + [94] = { 31.8, 29.7, 33, 120 }, + [95] = { 31.5, 29.5, 33, 120 }, + [96] = { 31.8, 29.4, 33, 120 }, + [97] = { 31.4, 29.4, 33, 120 }, + [98] = { 31.5, 29.3, 33, 120 }, + [99] = { 31.6, 29.3, 33, 120 }, + [100] = { 61.6, 81.6, 36, 120 }, + [101] = { 60.2, 80.9, 36, 120 }, + [102] = { 60.9, 80.6, 36, 120 }, + [103] = { 34.6, 48.9, 38, 120 }, + [104] = { 34.8, 48.5, 38, 120 }, + [105] = { 35.6, 48.1, 38, 120 }, + [106] = { 35, 47.8, 38, 120 }, + [107] = { 35.3, 47.4, 38, 120 }, + [108] = { 52.8, 54.2, 40, 120 }, + [109] = { 53, 53.9, 40, 120 }, + [110] = { 52.5, 53.8, 40, 120 }, + [111] = { 53.2, 53.5, 40, 120 }, + [112] = { 52.2, 53.5, 40, 120 }, + [113] = { 52.8, 53.2, 40, 120 }, + [114] = { 51.9, 53.2, 40, 120 }, + [115] = { 52.6, 52.9, 40, 120 }, + [116] = { 52.1, 52.8, 40, 120 }, + [117] = { 26.6, 46.4, 44, 120 }, + [118] = { 27.5, 46.2, 44, 120 }, + [119] = { 27.5, 45.6, 44, 120 }, + [120] = { 26.3, 45.5, 44, 120 }, + [121] = { 27.5, 45.5, 44, 120 }, + [122] = { 27.5, 44.9, 44, 120 }, + [123] = { 26.4, 44.9, 44, 120 }, + [124] = { 27.1, 44.5, 44, 120 }, + [125] = { 27.5, 44.4, 44, 120 }, + [126] = { 26.3, 44.3, 44, 120 }, + [127] = { 27.5, 44.2, 44, 120 }, + [128] = { 26.6, 44.1, 44, 120 }, + [129] = { 27.2, 43.8, 44, 120 }, + [130] = { 26.6, 42.6, 44, 120 }, + [131] = { 74.1, 33, 45, 120 }, + [132] = { 73.8, 33, 45, 120 }, + [133] = { 74.7, 32.6, 45, 120 }, + [134] = { 73.6, 32.6, 45, 120 }, + [135] = { 74.4, 32.6, 45, 120 }, + [136] = { 74.2, 32.6, 45, 120 }, + [137] = { 73.9, 32.6, 45, 120 }, + [138] = { 73.9, 31.6, 45, 120 }, + [139] = { 74.2, 31.6, 45, 120 }, + [140] = { 74.4, 31.6, 45, 120 }, + [141] = { 77.8, 82, 47, 120 }, + [142] = { 78.4, 82, 47, 120 }, + [143] = { 77.8, 81.7, 47, 120 }, + [144] = { 77.8, 81.5, 47, 120 }, + [145] = { 77.8, 80.7, 47, 120 }, + [146] = { 13.6, 42.3, 47, 0 }, + [147] = { 13.9, 42.2, 47, 0 }, + [148] = { 13.4, 42.1, 47, 0 }, + [149] = { 13.3, 42, 47, 0 }, + [150] = { 14.3, 41.9, 47, 0 }, + [151] = { 14, 41.9, 47, 0 }, + [152] = { 14.2, 41.9, 47, 0 }, + [153] = { 14.4, 41.8, 47, 0 }, + [154] = { 13.2, 41.8, 47, 0 }, + [155] = { 14.1, 41.7, 47, 0 }, + [156] = { 14.4, 41.6, 47, 0 }, + [157] = { 13.6, 41.6, 47, 0 }, + [158] = { 13.7, 41.6, 47, 0 }, + [159] = { 14, 41.5, 47, 0 }, + [160] = { 14.1, 41.4, 47, 0 }, + [161] = { 14.4, 41.3, 47, 0 }, + [162] = { 14.2, 41.2, 47, 0 }, + [163] = { 14.3, 41.2, 47, 0 }, + [164] = { 83, 38.2, 51, 120 }, + [165] = { 81.9, 38.2, 51, 120 }, + [166] = { 81.3, 37.6, 51, 120 }, + [167] = { 81.7, 37, 51, 120 }, + [168] = { 82.6, 36.6, 51, 120 }, + [169] = { 81.9, 36.6, 51, 120 }, + [170] = { 81.3, 36.5, 51, 120 }, + [171] = { 82, 36, 51, 120 }, + [172] = { 60.2, 53.8, 85, 120 }, + [173] = { 60, 53.7, 85, 120 }, + [174] = { 60.5, 53.2, 85, 120 }, + [175] = { 61.6, 53, 85, 120 }, + [176] = { 60, 53, 85, 120 }, + [177] = { 60.2, 52.8, 85, 120 }, + [178] = { 62, 52.8, 85, 120 }, + [179] = { 60.1, 52.7, 85, 120 }, + [180] = { 62, 52.7, 85, 120 }, + [181] = { 59.6, 52.6, 85, 120 }, + [182] = { 61.4, 52.6, 85, 120 }, + [183] = { 62, 52.5, 85, 120 }, + [184] = { 59.6, 52.4, 85, 120 }, + [185] = { 61.1, 52.3, 85, 120 }, + [186] = { 59.8, 52.3, 85, 120 }, + [187] = { 62.1, 52.2, 85, 120 }, + [188] = { 62.1, 52.1, 85, 120 }, + [189] = { 59.5, 52.1, 85, 120 }, + [190] = { 61.5, 52.1, 85, 120 }, + [191] = { 62, 51.9, 85, 120 }, + [192] = { 60.9, 51.5, 85, 120 }, + [193] = { 61.7, 51.2, 85, 120 }, + [194] = { 61.4, 50.9, 85, 120 }, + [195] = { 60.4, 50.5, 85, 120 }, + [196] = { 61.3, 50.5, 85, 120 }, + [197] = { 61.2, 50.5, 85, 120 }, + [198] = { 43.2, 41.4, 130, 120 }, + [199] = { 43.1, 41.1, 130, 120 }, + [200] = { 43.5, 40.8, 130, 120 }, + [201] = { 44.7, 39.3, 130, 120 }, + [202] = { 57.4, 60.6, 141, 120 }, + [203] = { 56.3, 60.4, 141, 120 }, + [204] = { 56, 58.8, 141, 120 }, + [205] = { 25.6, 55.8, 141, 120 }, + [206] = { 31.2, 50.1, 141, 0 }, + [207] = { 36.8, 44.7, 148, 120 }, + [208] = { 37, 44.5, 148, 120 }, + [209] = { 37.2, 43.8, 148, 120 }, + [210] = { 37, 43.4, 148, 120 }, + [211] = { 46.5, 61.6, 215, 120 }, + [212] = { 46.4, 61.3, 215, 120 }, + [213] = { 46.5, 61.1, 215, 120 }, + [214] = { 46.6, 60.8, 215, 120 }, + [215] = { 39.2, 30.3, 215, 120 }, + [216] = { 39.1, 30.3, 215, 120 }, + [217] = { 39.1, 30, 215, 120 }, + [218] = { 39.1, 29.8, 215, 120 }, + [219] = { 38.9, 29.3, 215, 120 }, + [220] = { 50.4, 58.6, 267, 120 }, + [221] = { 62.7, 19.9, 267, 120 }, + [222] = { 61.5, 19.3, 267, 120 }, + [223] = { 62.1, 19, 267, 120 }, + [224] = { 98.9, 0.8, 267, 0 }, + [225] = { 99.3, 0.7, 267, 0 }, + [226] = { 98.7, 0.7, 267, 0 }, + [227] = { 98.5, 0.5, 267, 0 }, + [228] = { 73.9, 60.9, 331, 120 }, + [229] = { 74.2, 60.8, 331, 120 }, + [230] = { 73.8, 60.6, 331, 120 }, + [231] = { 74.2, 60.4, 331, 120 }, + [232] = { 74, 60.3, 331, 120 }, + [233] = { 37, 50.4, 331, 120 }, + [234] = { 37.3, 50.1, 331, 120 }, + [235] = { 36.5, 50.1, 331, 120 }, + [236] = { 36.4, 49.6, 331, 120 }, + [237] = { 37, 49.4, 331, 120 }, + [238] = { 36.9, 49.3, 331, 120 }, + [239] = { 74.9, 45.3, 357, 120 }, + [240] = { 74.7, 45, 357, 120 }, + [241] = { 74.5, 44.8, 357, 120 }, + [242] = { 74.6, 44.6, 357, 120 }, + [243] = { 74.8, 44.6, 357, 120 }, + [244] = { 30.8, 43.8, 357, 0 }, + [245] = { 31.3, 43.8, 357, 0 }, + [246] = { 30.6, 43.7, 357, 0 }, + [247] = { 31.4, 43.5, 357, 0 }, + [248] = { 30.6, 43.3, 357, 0 }, + [249] = { 31.4, 43.1, 357, 0 }, + [250] = { 30.6, 42.9, 357, 0 }, + [251] = { 31.2, 42.8, 357, 0 }, + [252] = { 30.8, 42.6, 357, 0 }, + [253] = { 45.7, 51.7, 400, 120 }, + [254] = { 46.4, 51.3, 400, 120 }, + [255] = { 45.9, 51, 400, 120 }, + [256] = { 23.9, 68.7, 405, 120 }, + [257] = { 23.9, 68, 405, 120 }, + [258] = { 24.3, 68, 405, 120 }, + [259] = { 24.2, 67.9, 405, 120 }, + [260] = { 66.3, 7.6, 405, 120 }, + [261] = { 66.5, 7.6, 405, 120 }, + [262] = { 65.7, 7.1, 405, 120 }, + [263] = { 66.9, 6.7, 405, 120 }, + [264] = { 40.8, 82.7, 406, 120 }, + [265] = { 41, 82.6, 406, 120 }, + [266] = { 40.2, 82.2, 406, 120 }, + [267] = { 41.4, 81.8, 406, 120 }, + [268] = { 47.3, 62.2, 406, 120 }, + [269] = { 47.7, 61.7, 406, 120 }, + [270] = { 47.5, 61.7, 406, 120 }, + [271] = { 47.9, 61.4, 406, 120 }, + [272] = { 47.9, 61.3, 406, 120 }, + [273] = { 47.8, 61.3, 406, 120 }, + [274] = { 52, 29.2, 440, 120 }, + [275] = { 51.9, 29.2, 440, 120 }, + [276] = { 51.5, 29, 440, 120 }, + [277] = { 51, 28.6, 440, 120 }, + [278] = { 52.5, 28.3, 440, 120 }, + [279] = { 52.5, 28.2, 440, 120 }, + [280] = { 52.4, 28.2, 440, 120 }, + [281] = { 52.8, 28.1, 440, 120 }, + [282] = { 52.7, 28, 440, 120 }, + [283] = { 52.6, 27.7, 440, 120 }, + [284] = { 52.4, 27.7, 440, 120 }, + [285] = { 52.6, 27.6, 440, 120 }, + [286] = { 51.9, 26.5, 440, 120 }, + [287] = { 51.3, 26.5, 440, 120 }, + [288] = { 61.5, 39.3, 618, 120 }, + [289] = { 61.3, 39.3, 618, 120 }, + [290] = { 61.2, 39.3, 618, 120 }, + [291] = { 61.1, 39.2, 618, 120 }, + [292] = { 61.3, 39.2, 618, 120 }, + [293] = { 61.5, 39.2, 618, 120 }, + [294] = { 61.5, 39, 618, 120 }, + [295] = { 61.2, 39, 618, 120 }, + [296] = { 61.1, 39, 618, 120 }, + [297] = { 61.1, 38.8, 618, 120 }, + [298] = { 61.5, 38.8, 618, 120 }, + [299] = { 61.2, 38.7, 618, 120 }, + [300] = { 61.7, 38.5, 618, 120 }, + [301] = { 51.8, 40, 1377, 120 }, + [302] = { 51.5, 39.8, 1377, 120 }, + [303] = { 52.4, 39.5, 1377, 120 }, + [304] = { 51.3, 39.2, 1377, 120 }, + [305] = { 52.5, 39.1, 1377, 120 }, + [306] = { 51.8, 38.9, 1377, 120 }, + [307] = { 52.3, 38.5, 1377, 120 }, + [308] = { 67.9, 49.6, 1497, 120 }, + [309] = { 64, 49.5, 1497, 120 }, + [310] = { 68.6, 48.7, 1497, 120 }, + [311] = { 63.2, 48.7, 1497, 120 }, + [312] = { 69.9, 46, 1497, 120 }, + [313] = { 62, 45.9, 1497, 120 }, + [314] = { 66.7, 44.1, 1497, 120 }, + [315] = { 65.2, 44.1, 1497, 120 }, + [316] = { 69.4, 44.1, 1497, 120 }, + [317] = { 69.9, 42.3, 1497, 120 }, + [318] = { 62, 42.2, 1497, 120 }, + [319] = { 68.7, 39.5, 1497, 120 }, + [320] = { 63.3, 39.4, 1497, 120 }, + [321] = { 68, 38.7, 1497, 120 }, + [322] = { 64, 38.6, 1497, 120 }, + [323] = { 57.4, 61.8, 1519, 120 }, + [324] = { 36.6, 62.1, 1537, 120 }, + [325] = { 35.7, 60.4, 1537, 120 }, + [326] = { 34.8, 58.7, 1537, 120 }, + [327] = { 18.2, 51.8, 1537, 120 }, + [328] = { 55.5, 73.8, 1637, 120 }, + [329] = { 54.7, 72.9, 1637, 120 }, + [330] = { 49.2, 71.2, 1637, 120 }, + [331] = { 54.5, 70.6, 1637, 120 }, + [332] = { 50.7, 70.3, 1637, 120 }, + [333] = { 48, 69.8, 1637, 120 }, + [334] = { 52.9, 69, 1637, 120 }, + [335] = { 53.4, 66, 1637, 120 }, + [336] = { 51.6, 64, 1637, 120 }, + [337] = { 46.4, 66.3, 1638, 120 }, + [338] = { 46, 66, 1638, 120 }, + [339] = { 45.6, 64.9, 1638, 120 }, + [340] = { 45.7, 63.9, 1638, 120 }, + [341] = { 44.7, 61.4, 1638, 120 }, + [342] = { 40.4, 42.6, 1657, 120 }, + [343] = { 67.2, 15.4, 1657, 0 }, + }, + }, + [180473] = { + ["coords"] = { + [1] = { 54.4, 33.7, 357, 900 }, + [2] = { 72.4, 15.4, 1377, 900 }, + }, + }, + [180474] = { + ["coords"] = { + [1] = { 54.5, 34.2, 357, 900 }, + [2] = { 72.9, 16, 1377, 900 }, + }, + }, + [180475] = { + ["coords"] = { + [1] = { 54.6, 33.7, 357, 900 }, + [2] = { 72.7, 15.1, 1377, 900 }, + }, + }, + [180476] = { + ["coords"] = { + [1] = { 54.8, 31.9, 357, 900 }, + [2] = { 71.4, 12, 1377, 900 }, + }, + }, + [180477] = { + ["coords"] = { + [1] = { 54.9, 32.3, 357, 900 }, + [2] = { 71.9, 12.3, 1377, 900 }, + }, + }, + [180478] = { + ["coords"] = { + [1] = { 54.6, 31.8, 357, 900 }, + [2] = { 71, 12.3, 1377, 900 }, + }, + }, + [180479] = { + ["coords"] = { + [1] = { 54.5, 32.2, 357, 900 }, + [2] = { 71.3, 12.9, 1377, 900 }, + }, + }, + [180480] = { + ["coords"] = { + [1] = { 54.9, 32.4, 357, 900 }, + [2] = { 72, 12.4, 1377, 900 }, + }, + }, + [180497] = { + ["coords"] = { + [1] = { 60, 7.9, 33, 0 }, + }, + }, + [180501] = { + ["coords"] = { + [1] = { 54, 83.4, 357, 180 }, + [2] = { 56, 83.4, 357, 180 }, + [3] = { 53.2, 83.2, 357, 180 }, + [4] = { 52.5, 82.9, 357, 180 }, + [5] = { 52.8, 82.8, 357, 180 }, + [6] = { 55.5, 82.8, 357, 180 }, + [7] = { 52.7, 82.7, 357, 180 }, + [8] = { 53.2, 82.4, 357, 180 }, + [9] = { 53.3, 82.4, 357, 180 }, + [10] = { 54.4, 82.4, 357, 180 }, + [11] = { 53.9, 82.4, 357, 180 }, + [12] = { 51.7, 82.4, 357, 180 }, + [13] = { 52.6, 82.2, 357, 180 }, + [14] = { 53.7, 82, 357, 180 }, + [15] = { 52.9, 81.7, 357, 180 }, + [16] = { 53.1, 81.7, 357, 180 }, + [17] = { 52.1, 81.5, 357, 180 }, + [18] = { 52.6, 81.3, 357, 180 }, + [19] = { 17.6, 23.1, 1377, 180 }, + [20] = { 19.7, 22.1, 1377, 180 }, + [21] = { 21.6, 21.9, 1377, 180 }, + [22] = { 19.4, 21, 1377, 180 }, + [23] = { 22.2, 18.7, 1377, 180 }, + [24] = { 21, 18.1, 1377, 180 }, + [25] = { 23.2, 17.1, 1377, 180 }, + [26] = { 19.3, 17, 1377, 180 }, + [27] = { 26.4, 15.9, 1377, 180 }, + [28] = { 21.8, 15.9, 1377, 180 }, + [29] = { 24, 15.5, 1377, 180 }, + [30] = { 20, 15.5, 1377, 180 }, + [31] = { 22, 14.5, 1377, 180 }, + [32] = { 24, 13.7, 1377, 180 }, + [33] = { 22.1, 13.4, 1377, 180 }, + [34] = { 26.6, 13.2, 1377, 180 }, + [35] = { 21.5, 12.8, 1377, 180 }, + [36] = { 24.4, 11.8, 1377, 180 }, + [37] = { 28.4, 11.7, 1377, 180 }, + [38] = { 21.1, 11.6, 1377, 180 }, + [39] = { 20.5, 11.4, 1377, 180 }, + [40] = { 22.7, 11.3, 1377, 180 }, + [41] = { 21.5, 10.8, 1377, 180 }, + [42] = { 22, 10.6, 1377, 180 }, + [43] = { 27.4, 10.5, 1377, 180 }, + [44] = { 21.8, 10.3, 1377, 180 }, + [45] = { 20.7, 10.3, 1377, 180 }, + [46] = { 22.7, 9.8, 1377, 180 }, + [47] = { 22.9, 9.8, 1377, 180 }, + [48] = { 25.2, 9.8, 1377, 180 }, + [49] = { 24.1, 9.7, 1377, 180 }, + [50] = { 19.8, 9.7, 1377, 180 }, + [51] = { 21.6, 9.4, 1377, 180 }, + [52] = { 23.8, 8.8, 1377, 180 }, + [53] = { 22.2, 8.4, 1377, 180 }, + [54] = { 22.7, 8.3, 1377, 180 }, + [55] = { 20.6, 7.9, 1377, 180 }, + [56] = { 21.5, 7.6, 1377, 180 }, + }, + ["fac"] = "AH", + }, + [180502] = { + ["coords"] = { + [1] = { 20.5, 86.2, 1377, 900 }, + [2] = { 18.9, 85.1, 1377, 900 }, + [3] = { 18.5, 84.9, 1377, 900 }, + [4] = { 18.2, 81.1, 1377, 900 }, + [5] = { 38.3, 46.5, 1377, 900 }, + [6] = { 39.6, 45.1, 1377, 900 }, + [7] = { 37.6, 44.8, 1377, 900 }, + [8] = { 39, 42.4, 1377, 900 }, + [9] = { 24.4, 36, 1377, 900 }, + [10] = { 25.6, 34, 1377, 900 }, + [11] = { 24.7, 32.7, 1377, 900 }, + [12] = { 27.9, 30.6, 1377, 900 }, + }, + }, + [180503] = { + ["coords"] = { + [1] = { 37.9, 45.3, 1377, 180 }, + }, + ["fac"] = "AH", + }, + [180504] = { + ["coords"] = { + [1] = { 49.8, 57.9, 267, 180 }, + }, + }, + [180505] = { + ["coords"] = { + [1] = { 47.6, 54.3, 1377, 180 }, + }, + }, + [180514] = { + ["coords"] = {}, + }, + [180515] = { + ["coords"] = { + [1] = { 44.6, 70.4, 12, 25 }, + }, + }, + [180517] = { + ["coords"] = {}, + }, + [180518] = { + ["coords"] = { + [1] = { 18.2, 81.1, 1377, 300 }, + }, + }, + [180523] = { + ["coords"] = { + [1] = { 47.6, 52, 1, 0 }, + [2] = { 3.1, 45.7, 3, 0 }, + [3] = { 44.8, 56.8, 8, 0 }, + [4] = { 73.6, 44.4, 10, 0 }, + [5] = { 10.7, 60.8, 11, 0 }, + [6] = { 43.8, 65.7, 12, 0 }, + [7] = { 51.7, 41.6, 14, 0 }, + [8] = { 66.6, 45.1, 15, 0 }, + [9] = { 45.6, 59.1, 17, 0 }, + [10] = { 62.1, 39.5, 17, 0 }, + [11] = { 52, 29.8, 17, 0 }, + [12] = { 27.3, 77.4, 33, 0 }, + [13] = { 31.4, 29.5, 33, 0 }, + [14] = { 61.1, 81, 36, 0 }, + [15] = { 35.3, 48.4, 38, 0 }, + [16] = { 52.6, 53.4, 40, 0 }, + [17] = { 26.7, 44.4, 44, 0 }, + [18] = { 73.7, 32.5, 45, 0 }, + [19] = { 78, 81.6, 47, 0 }, + [20] = { 13.6, 41.6, 47, 0 }, + [21] = { 82.2, 36.8, 51, 0 }, + [22] = { 61.6, 52.1, 85, 0 }, + [23] = { 43.1, 41.2, 130, 0 }, + [24] = { 55.9, 59.4, 141, 0 }, + [25] = { 31.2, 49.9, 141, 0 }, + [26] = { 37.1, 43.9, 148, 0 }, + [27] = { 46.6, 61.3, 215, 0 }, + [28] = { 39.1, 29.6, 215, 0 }, + [29] = { 51.1, 58.7, 267, 0 }, + [30] = { 62.3, 19.4, 267, 0 }, + [31] = { 74.1, 60.5, 331, 0 }, + [32] = { 37, 49.7, 331, 0 }, + [33] = { 74.8, 44.8, 357, 0 }, + [34] = { 31.1, 43.5, 357, 0 }, + [35] = { 46.1, 51.3, 400, 0 }, + [36] = { 24.3, 67.9, 405, 0 }, + [37] = { 66.2, 7.1, 405, 0 }, + [38] = { 40.8, 82.3, 406, 0 }, + [39] = { 47.8, 61.8, 406, 0 }, + [40] = { 52.5, 27.8, 440, 0 }, + [41] = { 61.2, 38.9, 618, 0 }, + [42] = { 52, 39, 1377, 0 }, + [43] = { 68.2, 36.4, 1497, 0 }, + [44] = { 52.6, 64.8, 1519, 0 }, + [45] = { 19, 51.2, 1537, 0 }, + [46] = { 54.4, 68.2, 1637, 0 }, + [47] = { 45.9, 62.8, 1638, 0 }, + [48] = { 67.5, 14.1, 1657, 0 }, + }, + }, + [180524] = { + ["coords"] = { + [1] = { 43.2, 71.9, 12, 25 }, + [2] = { 42.6, 71.6, 12, 25 }, + [3] = { 44.1, 71.6, 12, 25 }, + [4] = { 41.9, 71.1, 12, 25 }, + [5] = { 44.3, 70.7, 12, 25 }, + [6] = { 41.9, 70.6, 12, 25 }, + [7] = { 41.4, 70.3, 12, 25 }, + [8] = { 42.3, 69.7, 12, 25 }, + [9] = { 41, 69.7, 12, 25 }, + [10] = { 43.4, 69.5, 12, 25 }, + [11] = { 41.7, 69.4, 12, 25 }, + [12] = { 40.2, 69.3, 12, 25 }, + [13] = { 40.9, 68.9, 12, 25 }, + [14] = { 40.6, 68.8, 12, 25 }, + [15] = { 42.1, 68.4, 12, 25 }, + [16] = { 41.6, 68.3, 12, 25 }, + [17] = { 37.8, 39.9, 215, 25 }, + [18] = { 37.4, 39.2, 215, 25 }, + [19] = { 37.8, 39.1, 215, 25 }, + [20] = { 37.2, 38.3, 215, 25 }, + [21] = { 37.6, 38, 215, 25 }, + [22] = { 36.2, 37.6, 215, 25 }, + [23] = { 37, 37, 215, 25 }, + [24] = { 36.5, 36.8, 215, 25 }, + [25] = { 36.7, 36.5, 215, 25 }, + [26] = { 36.2, 36.2, 215, 25 }, + [27] = { 36.6, 36, 215, 25 }, + [28] = { 35.8, 35.5, 215, 25 }, + [29] = { 36.4, 35.2, 215, 25 }, + [30] = { 35.5, 35.2, 215, 25 }, + [31] = { 35.7, 34.6, 215, 25 }, + [32] = { 35.9, 34.5, 215, 25 }, + }, + ["fac"] = "AH", + }, + [180525] = { + ["coords"] = { + [1] = { 43.2, 71.9, 12, 25 }, + [2] = { 42.6, 71.6, 12, 25 }, + [3] = { 44.1, 71.6, 12, 25 }, + [4] = { 41.9, 71.1, 12, 25 }, + [5] = { 44.3, 70.7, 12, 25 }, + [6] = { 41.9, 70.6, 12, 25 }, + [7] = { 41.4, 70.3, 12, 25 }, + [8] = { 42.3, 69.7, 12, 25 }, + [9] = { 41, 69.7, 12, 25 }, + [10] = { 43.4, 69.5, 12, 25 }, + [11] = { 41.7, 69.4, 12, 25 }, + [12] = { 40.2, 69.3, 12, 25 }, + [13] = { 40.9, 68.9, 12, 25 }, + [14] = { 40.6, 68.8, 12, 25 }, + [15] = { 42.1, 68.4, 12, 25 }, + [16] = { 41.6, 68.3, 12, 25 }, + [17] = { 37.8, 39.9, 215, 25 }, + [18] = { 37.4, 39.2, 215, 25 }, + [19] = { 37.8, 39.1, 215, 25 }, + [20] = { 37.2, 38.3, 215, 25 }, + [21] = { 37.6, 38, 215, 25 }, + [22] = { 36.2, 37.6, 215, 25 }, + [23] = { 37, 37, 215, 25 }, + [24] = { 36.5, 36.8, 215, 25 }, + [25] = { 36.7, 36.5, 215, 25 }, + [26] = { 36.2, 36.2, 215, 25 }, + [27] = { 36.6, 36, 215, 25 }, + [28] = { 35.8, 35.5, 215, 25 }, + [29] = { 36.4, 35.2, 215, 25 }, + [30] = { 35.5, 35.2, 215, 25 }, + [31] = { 35.7, 34.6, 215, 25 }, + [32] = { 35.9, 34.5, 215, 25 }, + }, + ["fac"] = "AH", + }, + [180526] = { + ["coords"] = {}, + }, + [180529] = { + ["coords"] = { + [1] = { 39, 42.4, 1377, 300 }, + }, + }, + [180534] = { + ["coords"] = { + [1] = { 37.6, 44.8, 1377, 900 }, + }, + }, + [180539] = { + ["coords"] = { + [1] = { 39.6, 45.1, 1377, 10800 }, + }, + }, + [180544] = { + ["coords"] = { + [1] = { 38.3, 46.5, 1377, 300 }, + }, + }, + [180549] = { + ["coords"] = { + [1] = { 27.9, 30.6, 1377, 300 }, + }, + }, + [180554] = { + ["coords"] = { + [1] = { 24.7, 32.7, 1377, 900 }, + }, + }, + [180559] = { + ["coords"] = { + [1] = { 25.6, 34, 1377, 10800 }, + }, + }, + [180564] = { + ["coords"] = { + [1] = { 24.4, 36, 1377, 300 }, + }, + }, + [180570] = { + ["coords"] = { + [1] = { 51.4, 59, 267, 10 }, + }, + ["fac"] = "H", + }, + [180573] = { + ["coords"] = { + [1] = { 55, 67.6, 12, 25 }, + [2] = { 44.7, 55.8, 215, 25 }, + }, + }, + [180574] = { + ["coords"] = {}, + }, + [180582] = { + ["coords"] = { + [1] = { 63.1, 53.2, 17, 180 }, + [2] = { 63, 52.8, 17, 180 }, + [3] = { 63, 52.4, 17, 180 }, + [4] = { 63.3, 50.5, 17, 180 }, + [5] = { 63.2, 50.2, 17, 180 }, + [6] = { 63.5, 50.1, 17, 180 }, + [7] = { 64.9, 47.7, 17, 180 }, + [8] = { 64.8, 47.3, 17, 180 }, + [9] = { 64.6, 45.7, 17, 180 }, + [10] = { 65.9, 43.4, 17, 180 }, + [11] = { 64.5, 43.1, 17, 180 }, + [12] = { 64.4, 42.9, 17, 180 }, + [13] = { 63.6, 41.6, 17, 180 }, + [14] = { 63.5, 38.8, 17, 180 }, + [15] = { 62.7, 38.7, 17, 180 }, + [16] = { 63.1, 38.5, 17, 180 }, + [17] = { 63.7, 38.3, 17, 180 }, + [18] = { 63.4, 38.2, 17, 180 }, + [19] = { 63.2, 38, 17, 180 }, + [20] = { 63.5, 36.8, 17, 180 }, + [21] = { 64.6, 36.2, 17, 180 }, + [22] = { 34.7, 87.9, 40, 180 }, + [23] = { 30.4, 84.5, 40, 180 }, + [24] = { 28.4, 79, 40, 180 }, + [25] = { 27.5, 73.6, 40, 180 }, + [26] = { 25.7, 71.9, 40, 180 }, + [27] = { 25.2, 66.1, 40, 180 }, + [28] = { 25.4, 59.6, 40, 180 }, + [29] = { 24.4, 55.7, 40, 180 }, + [30] = { 25.4, 49.3, 40, 180 }, + [31] = { 25.7, 43.3, 40, 180 }, + [32] = { 26.4, 39.7, 40, 180 }, + [33] = { 27.2, 33.5, 40, 180 }, + [34] = { 28.4, 30.3, 40, 180 }, + [35] = { 30.5, 26.8, 40, 180 }, + [36] = { 33.8, 20.7, 40, 180 }, + [37] = { 34.4, 17.5, 40, 180 }, + [38] = { 35.7, 17.2, 40, 180 }, + [39] = { 41.2, 9.4, 40, 180 }, + [40] = { 54.8, 8.9, 40, 180 }, + [41] = { 43.9, 7.6, 40, 180 }, + [42] = { 46.4, 7.5, 40, 180 }, + [43] = { 42, 77.2, 130, 180 }, + [44] = { 42.2, 75.9, 130, 180 }, + [45] = { 41.1, 71.5, 130, 180 }, + [46] = { 38.2, 34.5, 130, 180 }, + [47] = { 38.2, 33.2, 130, 180 }, + [48] = { 37.8, 32, 130, 180 }, + [49] = { 37.6, 30.3, 130, 180 }, + [50] = { 37, 30.3, 130, 180 }, + [51] = { 36.9, 28.6, 130, 180 }, + [52] = { 36.4, 27.3, 130, 180 }, + [53] = { 35.5, 24.1, 130, 180 }, + [54] = { 35.6, 23, 130, 180 }, + [55] = { 35, 20, 130, 180 }, + [56] = { 32.2, 18.3, 130, 180 }, + [57] = { 32.6, 16.6, 130, 180 }, + [58] = { 32.4, 16, 130, 180 }, + [59] = { 32, 83.8, 148, 180 }, + [60] = { 33.8, 82.7, 148, 180 }, + [61] = { 31.9, 82.4, 148, 180 }, + [62] = { 33, 81.9, 148, 180 }, + [63] = { 34.2, 80, 148, 180 }, + [64] = { 35.8, 77, 148, 180 }, + [65] = { 35.9, 74.1, 148, 180 }, + [66] = { 35, 71.6, 148, 180 }, + [67] = { 35.9, 69.8, 148, 180 }, + [68] = { 36.6, 67.4, 148, 180 }, + [69] = { 36.2, 64.2, 148, 180 }, + [70] = { 36.5, 61.9, 148, 3600 }, + [71] = { 35.9, 59.8, 148, 180 }, + [72] = { 36.5, 57.1, 148, 180 }, + [73] = { 35.8, 56.2, 148, 180 }, + [74] = { 36.5, 55.3, 148, 180 }, + [75] = { 36.5, 53.6, 148, 180 }, + [76] = { 35.9, 51.5, 148, 900 }, + [77] = { 35.8, 48.9, 148, 180 }, + [78] = { 35.9, 46.7, 148, 180 }, + [79] = { 34.7, 43.5, 148, 180 }, + [80] = { 34.5, 42.3, 148, 180 }, + [81] = { 32.4, 42.3, 148, 180 }, + [82] = { 31.5, 41.9, 148, 180 }, + [83] = { 33.3, 41.7, 148, 180 }, + [84] = { 32.5, 41.3, 148, 180 }, + [85] = { 36.7, 38.6, 148, 180 }, + [86] = { 37, 36.1, 148, 180 }, + [87] = { 37.6, 34.1, 148, 900 }, + [88] = { 38.3, 31.3, 148, 180 }, + [89] = { 42.1, 31.3, 148, 180 }, + [90] = { 40, 31, 148, 180 }, + [91] = { 41.7, 29.6, 148, 180 }, + [92] = { 42, 28.2, 148, 180 }, + [93] = { 41.6, 26.6, 148, 180 }, + [94] = { 41.5, 25.3, 148, 180 }, + [95] = { 41.5, 23.6, 148, 180 }, + [96] = { 41.9, 21.4, 148, 180 }, + [97] = { 42.2, 20.6, 148, 180 }, + [98] = { 45.1, 20.6, 148, 180 }, + [99] = { 49.9, 20.6, 148, 180 }, + [100] = { 51.9, 20.6, 148, 180 }, + [101] = { 48.7, 20.3, 148, 180 }, + [102] = { 43.4, 20.1, 148, 180 }, + [103] = { 47.6, 20, 148, 180 }, + [104] = { 46.1, 20, 148, 180 }, + }, + }, + [180583] = { + ["coords"] = { + [1] = { 54, 83.4, 357, 180 }, + [2] = { 56, 83.4, 357, 180 }, + [3] = { 53.2, 83.2, 357, 180 }, + [4] = { 52.5, 82.9, 357, 180 }, + [5] = { 52.8, 82.8, 357, 180 }, + [6] = { 55.5, 82.8, 357, 180 }, + [7] = { 52.7, 82.7, 357, 180 }, + [8] = { 53.2, 82.4, 357, 180 }, + [9] = { 53.3, 82.4, 357, 180 }, + [10] = { 54.4, 82.4, 357, 180 }, + [11] = { 53.9, 82.4, 357, 180 }, + [12] = { 51.7, 82.4, 357, 180 }, + [13] = { 52.6, 82.2, 357, 180 }, + [14] = { 53.7, 82, 357, 180 }, + [15] = { 52.9, 81.7, 357, 180 }, + [16] = { 53.1, 81.7, 357, 180 }, + [17] = { 52.1, 81.5, 357, 180 }, + [18] = { 52.6, 81.3, 357, 180 }, + [19] = { 17.6, 23.1, 1377, 180 }, + [20] = { 19.7, 22.1, 1377, 180 }, + [21] = { 21.6, 21.9, 1377, 180 }, + [22] = { 19.4, 21, 1377, 180 }, + [23] = { 22.2, 18.7, 1377, 180 }, + [24] = { 21, 18.1, 1377, 180 }, + [25] = { 23.2, 17.1, 1377, 180 }, + [26] = { 19.3, 17, 1377, 180 }, + [27] = { 26.4, 15.9, 1377, 180 }, + [28] = { 21.8, 15.9, 1377, 180 }, + [29] = { 24, 15.5, 1377, 180 }, + [30] = { 20, 15.5, 1377, 180 }, + [31] = { 22, 14.5, 1377, 180 }, + [32] = { 24, 13.7, 1377, 180 }, + [33] = { 22.1, 13.4, 1377, 180 }, + [34] = { 26.6, 13.2, 1377, 180 }, + [35] = { 21.5, 12.8, 1377, 180 }, + [36] = { 24.4, 11.8, 1377, 180 }, + [37] = { 28.4, 11.7, 1377, 180 }, + [38] = { 21.1, 11.6, 1377, 180 }, + [39] = { 20.5, 11.4, 1377, 180 }, + [40] = { 22.7, 11.3, 1377, 180 }, + [41] = { 21.5, 10.8, 1377, 180 }, + [42] = { 22, 10.6, 1377, 180 }, + [43] = { 27.4, 10.5, 1377, 180 }, + [44] = { 21.8, 10.3, 1377, 180 }, + [45] = { 20.7, 10.3, 1377, 180 }, + [46] = { 22.7, 9.8, 1377, 180 }, + [47] = { 22.9, 9.8, 1377, 180 }, + [48] = { 25.2, 9.8, 1377, 180 }, + [49] = { 24.1, 9.7, 1377, 180 }, + [50] = { 19.8, 9.7, 1377, 180 }, + [51] = { 21.6, 9.4, 1377, 180 }, + [52] = { 23.8, 8.8, 1377, 180 }, + [53] = { 22.2, 8.4, 1377, 180 }, + [54] = { 22.7, 8.3, 1377, 180 }, + [55] = { 20.6, 7.9, 1377, 180 }, + [56] = { 21.5, 7.6, 1377, 180 }, + }, + }, + [180598] = { + ["coords"] = { + [1] = { 55, 76.3, 1537, 25 }, + }, + }, + [180601] = { + ["coords"] = { + [1] = { 26.3, 24.5, 46, 7200 }, + [2] = { 32, 94.8, 51, 7200 }, + }, + }, + [180604] = { + ["coords"] = {}, + }, + [180605] = { + ["coords"] = { + [1] = { 45.2, 42.6, 1377, 25 }, + [2] = { 45.5, 41.7, 1377, 25 }, + [3] = { 56.5, 35.7, 1377, 25 }, + }, + }, + [180606] = { + ["coords"] = {}, + }, + [180607] = { + ["coords"] = {}, + }, + [180608] = { + ["coords"] = {}, + }, + [180619] = { + ["coords"] = {}, + }, + [180620] = { + ["coords"] = {}, + }, + [180631] = { + ["coords"] = {}, + }, + [180632] = { + ["coords"] = {}, + }, + [180633] = { + ["coords"] = { + [1] = { 28.7, 89.1, 1377, 10 }, + }, + }, + [180634] = { + ["coords"] = {}, + }, + [180635] = { + ["coords"] = {}, + }, + [180636] = { + ["coords"] = {}, + }, + [180642] = { + ["coords"] = { + [1] = { 46.2, 86.7, 130, 10 }, + }, + }, + [180647] = { + ["coords"] = {}, + }, + [180651] = { + ["coords"] = {}, + }, + [180652] = { + ["coords"] = {}, + }, + [180653] = { + ["coords"] = {}, + }, + [180654] = { + ["coords"] = { + [1] = { 53, 87.5, 2597, 300 }, + [2] = { 54.8, 86.5, 2597, 300 }, + [3] = { 51.4, 85.5, 2597, 300 }, + [4] = { 55.7, 84.5, 2597, 300 }, + [5] = { 52, 84.1, 2597, 300 }, + [6] = { 52.3, 83.1, 2597, 300 }, + [7] = { 55.9, 82.3, 2597, 300 }, + [8] = { 51.8, 80.7, 2597, 300 }, + [9] = { 57.4, 80, 2597, 300 }, + [10] = { 52.5, 79.8, 2597, 300 }, + [11] = { 49, 79.3, 2597, 300 }, + [12] = { 50.8, 79.1, 2597, 300 }, + [13] = { 48.8, 77.3, 2597, 300 }, + [14] = { 51.9, 76.8, 2597, 300 }, + [15] = { 57.1, 76.8, 2597, 300 }, + [16] = { 54.4, 76.8, 2597, 300 }, + [17] = { 50.2, 74.8, 2597, 300 }, + [18] = { 52.1, 74.7, 2597, 300 }, + [19] = { 48.3, 74.6, 2597, 300 }, + [20] = { 49.3, 72.8, 2597, 300 }, + [21] = { 47.1, 72.2, 2597, 300 }, + [22] = { 54.5, 71.5, 2597, 300 }, + [23] = { 55.6, 70.9, 2597, 300 }, + [24] = { 50, 70.5, 2597, 300 }, + [25] = { 53.7, 70.4, 2597, 300 }, + [26] = { 48.6, 70.2, 2597, 300 }, + [27] = { 46.9, 67.7, 2597, 300 }, + [28] = { 48.3, 67.2, 2597, 300 }, + [29] = { 50.2, 67.2, 2597, 300 }, + [30] = { 48.6, 65.8, 2597, 300 }, + [31] = { 51.3, 65.4, 2597, 300 }, + [32] = { 49.2, 65, 2597, 300 }, + [33] = { 49.4, 64.2, 2597, 300 }, + [34] = { 50.4, 62.7, 2597, 300 }, + [35] = { 51.4, 61.9, 2597, 300 }, + [36] = { 50.4, 59.6, 2597, 300 }, + [37] = { 48.7, 59.2, 2597, 300 }, + [38] = { 51.9, 57.9, 2597, 300 }, + [39] = { 50.6, 57.2, 2597, 300 }, + [40] = { 52.4, 55.1, 2597, 300 }, + [41] = { 51.4, 54.9, 2597, 300 }, + [42] = { 50.3, 54.5, 2597, 300 }, + [43] = { 43.1, 53.2, 2597, 300 }, + [44] = { 49.6, 52.3, 2597, 300 }, + [45] = { 45.2, 51.8, 2597, 300 }, + [46] = { 47.7, 51.7, 2597, 300 }, + [47] = { 50.4, 50.5, 2597, 300 }, + [48] = { 47.8, 50.2, 2597, 300 }, + [49] = { 52.9, 48.2, 2597, 300 }, + [50] = { 42.7, 47.9, 2597, 300 }, + [51] = { 51.5, 44.5, 2597, 300 }, + [52] = { 53.2, 44.5, 2597, 300 }, + [53] = { 44.3, 44.4, 2597, 300 }, + [54] = { 55.2, 43.1, 2597, 300 }, + [55] = { 45.5, 42.2, 2597, 300 }, + [56] = { 50.9, 41.9, 2597, 300 }, + [57] = { 53.6, 40.6, 2597, 300 }, + [58] = { 46.5, 39.7, 2597, 300 }, + [59] = { 54.4, 39.6, 2597, 300 }, + [60] = { 51.3, 39.5, 2597, 300 }, + [61] = { 50.3, 38.2, 2597, 300 }, + [62] = { 52.3, 38.2, 2597, 300 }, + [63] = { 52.4, 36.1, 2597, 300 }, + [64] = { 53, 35.4, 2597, 300 }, + [65] = { 48.2, 34.6, 2597, 300 }, + [66] = { 49.6, 33.6, 2597, 300 }, + [67] = { 50.2, 31.8, 2597, 300 }, + [68] = { 52.7, 29.3, 2597, 300 }, + [69] = { 41.1, 28.9, 2597, 300 }, + [70] = { 44.2, 28.1, 2597, 300 }, + [71] = { 51.6, 28.1, 2597, 300 }, + [72] = { 46.2, 27.1, 2597, 300 }, + [73] = { 42.1, 26.7, 2597, 300 }, + [74] = { 48.1, 24.9, 2597, 300 }, + [75] = { 50.8, 24.9, 2597, 300 }, + [76] = { 45, 24.5, 2597, 300 }, + [77] = { 42.9, 23.7, 2597, 300 }, + [78] = { 47.8, 22.8, 2597, 300 }, + [79] = { 41.7, 21.1, 2597, 300 }, + [80] = { 49.5, 21, 2597, 300 }, + [81] = { 43.9, 20.4, 2597, 300 }, + [82] = { 43.5, 19.3, 2597, 300 }, + [83] = { 42.2, 18.6, 2597, 300 }, + [84] = { 50.3, 17.6, 2597, 300 }, + [85] = { 44.7, 17.3, 2597, 300 }, + [86] = { 43.1, 17, 2597, 300 }, + [87] = { 48.5, 15.4, 2597, 300 }, + [88] = { 41.2, 15.3, 2597, 300 }, + [89] = { 42.1, 15.1, 2597, 300 }, + [90] = { 48.1, 14.9, 2597, 300 }, + [91] = { 44.6, 13.9, 2597, 300 }, + [92] = { 52.8, 13.2, 2597, 300 }, + }, + }, + [180655] = { + ["coords"] = { + [1] = { 63.1, 53.2, 17, 180 }, + [2] = { 63, 52.8, 17, 180 }, + [3] = { 63, 52.4, 17, 180 }, + [4] = { 63.3, 50.5, 17, 180 }, + [5] = { 63.2, 50.2, 17, 180 }, + [6] = { 63.5, 50.1, 17, 180 }, + [7] = { 64.9, 47.7, 17, 180 }, + [8] = { 64.8, 47.3, 17, 180 }, + [9] = { 64.6, 45.7, 17, 180 }, + [10] = { 65.9, 43.4, 17, 180 }, + [11] = { 64.5, 43.1, 17, 180 }, + [12] = { 64.4, 42.9, 17, 180 }, + [13] = { 63.6, 41.6, 17, 180 }, + [14] = { 63.5, 38.8, 17, 180 }, + [15] = { 62.7, 38.7, 17, 180 }, + [16] = { 63.1, 38.5, 17, 180 }, + [17] = { 63.7, 38.3, 17, 180 }, + [18] = { 63.4, 38.2, 17, 180 }, + [19] = { 63.2, 38, 17, 180 }, + [20] = { 63.5, 36.8, 17, 180 }, + [21] = { 64.6, 36.2, 17, 180 }, + [22] = { 51.5, 67.6, 38, 180 }, + [23] = { 53.6, 66.1, 38, 180 }, + [24] = { 47.1, 62.8, 38, 180 }, + [25] = { 56.6, 61.7, 38, 180 }, + [26] = { 53.3, 57.3, 38, 180 }, + [27] = { 59.5, 56.7, 38, 180 }, + [28] = { 61.6, 54, 38, 180 }, + [29] = { 62.5, 49.8, 38, 180 }, + [30] = { 62.1, 46.8, 38, 180 }, + [31] = { 54.8, 43.7, 38, 180 }, + [32] = { 59.4, 42, 38, 180 }, + [33] = { 56.1, 41.8, 38, 180 }, + [34] = { 52.7, 41.5, 38, 180 }, + [35] = { 41.3, 40.5, 38, 180 }, + [36] = { 41.8, 38.9, 38, 180 }, + [37] = { 58.3, 37.4, 38, 180 }, + [38] = { 41.6, 36.9, 38, 180 }, + [39] = { 52.6, 35.6, 38, 180 }, + [40] = { 41.9, 34.8, 38, 180 }, + [41] = { 56.8, 34.4, 38, 180 }, + [42] = { 57.5, 29.6, 38, 180 }, + [43] = { 56.2, 26.9, 38, 180 }, + [44] = { 46.4, 23.7, 38, 180 }, + [45] = { 57.6, 23.1, 38, 180 }, + [46] = { 51.3, 19.5, 38, 180 }, + [47] = { 54.2, 15.9, 38, 180 }, + [48] = { 42.4, 15.5, 38, 180 }, + [49] = { 42.4, 14.1, 38, 3600 }, + [50] = { 34.7, 87.9, 40, 180 }, + [51] = { 30.4, 84.5, 40, 180 }, + [52] = { 28.4, 79, 40, 180 }, + [53] = { 27.5, 73.6, 40, 180 }, + [54] = { 25.7, 71.9, 40, 180 }, + [55] = { 25.2, 66.1, 40, 180 }, + [56] = { 25.4, 59.6, 40, 180 }, + [57] = { 24.4, 55.7, 40, 180 }, + [58] = { 25.4, 49.3, 40, 180 }, + [59] = { 25.7, 43.3, 40, 180 }, + [60] = { 26.4, 39.7, 40, 180 }, + [61] = { 27.2, 33.5, 40, 180 }, + [62] = { 28.4, 30.3, 40, 180 }, + [63] = { 30.5, 26.8, 40, 180 }, + [64] = { 33.8, 20.7, 40, 180 }, + [65] = { 34.4, 17.5, 40, 180 }, + [66] = { 35.7, 17.2, 40, 180 }, + [67] = { 41.2, 9.4, 40, 180 }, + [68] = { 54.8, 8.9, 40, 180 }, + [69] = { 43.9, 7.6, 40, 180 }, + [70] = { 46.4, 7.5, 40, 180 }, + [71] = { 42, 77.2, 130, 180 }, + [72] = { 42.2, 75.9, 130, 180 }, + [73] = { 41.1, 71.5, 130, 180 }, + [74] = { 66.8, 37.9, 130, 180 }, + [75] = { 60.3, 36.5, 130, 180 }, + [76] = { 64.8, 35.8, 130, 180 }, + [77] = { 59.7, 35.3, 130, 180 }, + [78] = { 64.1, 34.6, 130, 180 }, + [79] = { 58.9, 34.6, 130, 180 }, + [80] = { 38.2, 34.5, 130, 180 }, + [81] = { 60.1, 34.1, 130, 180 }, + [82] = { 58.9, 33.8, 130, 180 }, + [83] = { 63.7, 33.8, 130, 180 }, + [84] = { 59.6, 33.4, 130, 180 }, + [85] = { 38.2, 33.2, 130, 180 }, + [86] = { 37.8, 32, 130, 180 }, + [87] = { 57.7, 31.1, 130, 180 }, + [88] = { 37.6, 30.3, 130, 180 }, + [89] = { 37, 30.3, 130, 180 }, + [90] = { 36.9, 28.6, 130, 180 }, + [91] = { 36.4, 27.3, 130, 180 }, + [92] = { 56.7, 26.2, 130, 180 }, + [93] = { 35.5, 24.1, 130, 180 }, + [94] = { 35.6, 23, 130, 180 }, + [95] = { 57.2, 21.4, 130, 180 }, + [96] = { 35, 20, 130, 180 }, + [97] = { 56.8, 18.9, 130, 180 }, + [98] = { 32.2, 18.3, 130, 180 }, + [99] = { 60.6, 17.4, 130, 180 }, + [100] = { 32.6, 16.6, 130, 180 }, + [101] = { 32.4, 16, 130, 180 }, + [102] = { 61.9, 14.4, 130, 180 }, + [103] = { 64.1, 12.3, 130, 180 }, + [104] = { 66.8, 10.7, 130, 180 }, + [105] = { 70.7, 9.1, 130, 180 }, + [106] = { 32, 83.8, 148, 180 }, + [107] = { 33.8, 82.7, 148, 180 }, + [108] = { 31.9, 82.4, 148, 180 }, + [109] = { 33, 81.9, 148, 180 }, + [110] = { 34.2, 80, 148, 180 }, + [111] = { 35.8, 77, 148, 180 }, + [112] = { 35.9, 74.1, 148, 180 }, + [113] = { 35, 71.6, 148, 180 }, + [114] = { 35.9, 69.8, 148, 180 }, + [115] = { 36.6, 67.4, 148, 180 }, + [116] = { 36.2, 64.2, 148, 180 }, + [117] = { 36.5, 61.9, 148, 3600 }, + [118] = { 35.9, 59.8, 148, 180 }, + [119] = { 36.5, 57.1, 148, 180 }, + [120] = { 35.8, 56.2, 148, 180 }, + [121] = { 36.5, 55.3, 148, 180 }, + [122] = { 36.5, 53.6, 148, 180 }, + [123] = { 35.9, 51.5, 148, 900 }, + [124] = { 35.8, 48.9, 148, 180 }, + [125] = { 35.9, 46.7, 148, 180 }, + [126] = { 34.7, 43.5, 148, 180 }, + [127] = { 34.5, 42.3, 148, 180 }, + [128] = { 32.4, 42.3, 148, 180 }, + [129] = { 31.5, 41.9, 148, 180 }, + [130] = { 33.3, 41.7, 148, 180 }, + [131] = { 32.5, 41.3, 148, 180 }, + [132] = { 36.7, 38.6, 148, 180 }, + [133] = { 37, 36.1, 148, 180 }, + [134] = { 37.6, 34.1, 148, 900 }, + [135] = { 38.3, 31.3, 148, 180 }, + [136] = { 42.1, 31.3, 148, 180 }, + [137] = { 40, 31, 148, 180 }, + [138] = { 41.7, 29.6, 148, 180 }, + [139] = { 42, 28.2, 148, 180 }, + [140] = { 41.6, 26.6, 148, 180 }, + [141] = { 41.5, 25.3, 148, 180 }, + [142] = { 41.5, 23.6, 148, 180 }, + [143] = { 41.9, 21.4, 148, 180 }, + [144] = { 42.2, 20.6, 148, 180 }, + [145] = { 45.1, 20.6, 148, 180 }, + [146] = { 49.9, 20.6, 148, 180 }, + [147] = { 51.9, 20.6, 148, 180 }, + [148] = { 48.7, 20.3, 148, 180 }, + [149] = { 43.4, 20.1, 148, 180 }, + [150] = { 47.6, 20, 148, 180 }, + [151] = { 46.1, 20, 148, 180 }, + }, + }, + [180656] = { + ["coords"] = { + [1] = { 51.5, 67.6, 38, 180 }, + [2] = { 53.6, 66.1, 38, 180 }, + [3] = { 47.1, 62.8, 38, 180 }, + [4] = { 56.6, 61.7, 38, 180 }, + [5] = { 53.3, 57.3, 38, 180 }, + [6] = { 59.5, 56.7, 38, 180 }, + [7] = { 61.6, 54, 38, 180 }, + [8] = { 62.5, 49.8, 38, 180 }, + [9] = { 62.1, 46.8, 38, 180 }, + [10] = { 54.8, 43.7, 38, 180 }, + [11] = { 59.4, 42, 38, 180 }, + [12] = { 56.1, 41.8, 38, 180 }, + [13] = { 52.7, 41.5, 38, 180 }, + [14] = { 41.3, 40.5, 38, 180 }, + [15] = { 41.8, 38.9, 38, 180 }, + [16] = { 58.3, 37.4, 38, 180 }, + [17] = { 41.6, 36.9, 38, 180 }, + [18] = { 52.6, 35.6, 38, 180 }, + [19] = { 41.9, 34.8, 38, 180 }, + [20] = { 56.8, 34.4, 38, 180 }, + [21] = { 57.5, 29.6, 38, 180 }, + [22] = { 56.2, 26.9, 38, 180 }, + [23] = { 46.4, 23.7, 38, 180 }, + [24] = { 57.6, 23.1, 38, 180 }, + [25] = { 51.3, 19.5, 38, 180 }, + [26] = { 54.2, 15.9, 38, 180 }, + [27] = { 42.4, 15.5, 38, 180 }, + [28] = { 42.4, 14.1, 38, 3600 }, + [29] = { 66.8, 37.9, 130, 180 }, + [30] = { 60.3, 36.5, 130, 180 }, + [31] = { 64.8, 35.8, 130, 180 }, + [32] = { 59.7, 35.3, 130, 180 }, + [33] = { 64.1, 34.6, 130, 180 }, + [34] = { 58.9, 34.6, 130, 180 }, + [35] = { 60.1, 34.1, 130, 180 }, + [36] = { 58.9, 33.8, 130, 180 }, + [37] = { 63.7, 33.8, 130, 180 }, + [38] = { 59.6, 33.4, 130, 180 }, + [39] = { 57.7, 31.1, 130, 180 }, + [40] = { 56.7, 26.2, 130, 180 }, + [41] = { 57.2, 21.4, 130, 180 }, + [42] = { 56.8, 18.9, 130, 180 }, + [43] = { 60.6, 17.4, 130, 180 }, + [44] = { 61.9, 14.4, 130, 180 }, + [45] = { 64.1, 12.3, 130, 180 }, + [46] = { 66.8, 10.7, 130, 180 }, + [47] = { 70.7, 9.1, 130, 180 }, + }, + }, + [180657] = { + ["coords"] = { + [1] = { 10.8, 63.1, 11, 180 }, + [2] = { 7.8, 63, 11, 180 }, + [3] = { 5.9, 62.6, 11, 180 }, + [4] = { 12.8, 61.5, 11, 180 }, + [5] = { 5.3, 58.4, 11, 180 }, + [6] = { 6.9, 56.7, 11, 180 }, + [7] = { 5.9, 56.6, 11, 180 }, + [8] = { 6.7, 54.5, 11, 180 }, + [9] = { 12.2, 44, 11, 180 }, + [10] = { 14.2, 43.8, 11, 180 }, + [11] = { 12.1, 40.5, 11, 180 }, + [12] = { 12.1, 38.6, 11, 180 }, + [13] = { 12.4, 36.1, 11, 180 }, + [14] = { 12.7, 33.5, 11, 180 }, + [15] = { 13.3, 31.6, 11, 180 }, + [16] = { 14.9, 27.5, 11, 180 }, + [17] = { 15.7, 26.2, 11, 180 }, + [18] = { 17.9, 22, 11, 180 }, + [19] = { 18.7, 20.8, 11, 180 }, + [20] = { 19.9, 20.2, 11, 180 }, + [21] = { 21.5, 19.4, 11, 180 }, + [22] = { 25.7, 19, 11, 180 }, + [23] = { 27.7, 17.3, 11, 180 }, + [24] = { 28.9, 15.5, 11, 180 }, + [25] = { 32, 12.4, 11, 180 }, + [26] = { 33.1, 11.3, 11, 180 }, + [27] = { 23.5, 98.2, 45, 180 }, + [28] = { 24.7, 96.9, 45, 180 }, + [29] = { 6.4, 55.9, 45, 180 }, + [30] = { 67.7, 87.9, 267, 180 }, + [31] = { 65.7, 85.7, 267, 180 }, + [32] = { 65, 83.3, 267, 180 }, + [33] = { 64.3, 79.9, 267, 180 }, + [34] = { 61.7, 78, 267, 180 }, + [35] = { 59.4, 75, 267, 180 }, + [36] = { 28.3, 73.9, 267, 180 }, + [37] = { 58.2, 73.6, 267, 180 }, + [38] = { 40.1, 70.7, 267, 180 }, + [39] = { 38, 70.7, 267, 180 }, + [40] = { 35.9, 70.4, 267, 180 }, + [41] = { 42.3, 70.4, 267, 180 }, + [42] = { 34.4, 70, 267, 180 }, + [43] = { 57.5, 69.8, 267, 180 }, + [44] = { 43.9, 68.8, 267, 180 }, + [45] = { 24.3, 68.3, 267, 180 }, + [46] = { 56.3, 67.4, 267, 180 }, + [47] = { 46, 67.2, 267, 180 }, + [48] = { 55.5, 65.2, 267, 180 }, + [49] = { 22.8, 64.9, 267, 180 }, + [50] = { 49.7, 63.2, 267, 180 }, + [51] = { 51.1, 62.5, 267, 180 }, + [52] = { 50.7, 62.4, 267, 180 }, + [53] = { 55.1, 60.8, 267, 180 }, + }, + }, + [180658] = { + ["coords"] = { + [1] = { 55.5, 43.3, 17, 60 }, + [2] = { 56.1, 43, 17, 60 }, + [3] = { 55.2, 42.8, 17, 60 }, + [4] = { 55.8, 42.5, 17, 60 }, + [5] = { 55.2, 41.8, 17, 60 }, + [6] = { 47.5, 40.4, 17, 60 }, + [7] = { 46.3, 40.2, 17, 60 }, + [8] = { 48, 40, 17, 60 }, + [9] = { 45.9, 39.8, 17, 60 }, + [10] = { 46.5, 38.5, 17, 60 }, + [11] = { 46.1, 37.7, 17, 60 }, + [12] = { 46.3, 37.6, 17, 60 }, + [13] = { 45.1, 23.6, 17, 60 }, + [14] = { 44.7, 23.6, 17, 60 }, + [15] = { 45.5, 22.7, 17, 60 }, + [16] = { 45.1, 22.2, 17, 60 }, + }, + }, + [180659] = { + ["coords"] = { + [1] = { 67.6, 72.8, 618, 150 }, + }, + }, + [180660] = { + ["coords"] = {}, + }, + [180661] = { + ["coords"] = { + [1] = { 73.3, 56.4, 406, 180 }, + [2] = { 72.9, 55.1, 406, 180 }, + [3] = { 67.5, 54.1, 406, 180 }, + [4] = { 70.5, 52.8, 406, 180 }, + [5] = { 71.7, 52.7, 406, 180 }, + [6] = { 65.6, 52.3, 406, 180 }, + [7] = { 68.4, 51.5, 406, 180 }, + [8] = { 71.5, 50.5, 406, 180 }, + [9] = { 62.6, 45.5, 406, 180 }, + [10] = { 63.5, 44.2, 406, 180 }, + [11] = { 63.9, 44, 406, 180 }, + [12] = { 65.5, 43.9, 406, 180 }, + [13] = { 66.5, 43.9, 406, 180 }, + [14] = { 68.2, 41.2, 406, 180 }, + }, + }, + [180662] = { + ["coords"] = { + [1] = { 10.8, 63.1, 11, 180 }, + [2] = { 7.8, 63, 11, 180 }, + [3] = { 5.9, 62.6, 11, 180 }, + [4] = { 12.8, 61.5, 11, 180 }, + [5] = { 5.3, 58.4, 11, 180 }, + [6] = { 6.9, 56.7, 11, 180 }, + [7] = { 5.9, 56.6, 11, 180 }, + [8] = { 6.7, 54.5, 11, 180 }, + [9] = { 12.2, 44, 11, 180 }, + [10] = { 14.2, 43.8, 11, 180 }, + [11] = { 12.1, 40.5, 11, 180 }, + [12] = { 12.1, 38.6, 11, 180 }, + [13] = { 12.4, 36.1, 11, 180 }, + [14] = { 12.7, 33.5, 11, 180 }, + [15] = { 13.3, 31.6, 11, 180 }, + [16] = { 14.9, 27.5, 11, 180 }, + [17] = { 15.7, 26.2, 11, 180 }, + [18] = { 17.9, 22, 11, 180 }, + [19] = { 18.7, 20.8, 11, 180 }, + [20] = { 19.9, 20.2, 11, 180 }, + [21] = { 21.5, 19.4, 11, 180 }, + [22] = { 25.7, 19, 11, 180 }, + [23] = { 27.7, 17.3, 11, 180 }, + [24] = { 28.9, 15.5, 11, 180 }, + [25] = { 32, 12.4, 11, 180 }, + [26] = { 33.1, 11.3, 11, 180 }, + [27] = { 23.5, 98.2, 45, 180 }, + [28] = { 24.7, 96.9, 45, 180 }, + [29] = { 6.4, 55.9, 45, 180 }, + [30] = { 67.7, 87.9, 267, 180 }, + [31] = { 65.7, 85.7, 267, 180 }, + [32] = { 65, 83.3, 267, 180 }, + [33] = { 64.3, 79.9, 267, 180 }, + [34] = { 61.7, 78, 267, 180 }, + [35] = { 59.4, 75, 267, 180 }, + [36] = { 28.3, 73.9, 267, 180 }, + [37] = { 58.2, 73.6, 267, 180 }, + [38] = { 40.1, 70.7, 267, 180 }, + [39] = { 38, 70.7, 267, 180 }, + [40] = { 35.9, 70.4, 267, 180 }, + [41] = { 42.3, 70.4, 267, 180 }, + [42] = { 34.4, 70, 267, 180 }, + [43] = { 57.5, 69.8, 267, 180 }, + [44] = { 43.9, 68.8, 267, 180 }, + [45] = { 24.3, 68.3, 267, 180 }, + [46] = { 56.3, 67.4, 267, 180 }, + [47] = { 46, 67.2, 267, 180 }, + [48] = { 55.5, 65.2, 267, 180 }, + [49] = { 22.8, 64.9, 267, 180 }, + [50] = { 49.7, 63.2, 267, 180 }, + [51] = { 51.1, 62.5, 267, 180 }, + [52] = { 50.7, 62.4, 267, 180 }, + [53] = { 55.1, 60.8, 267, 180 }, + [54] = { 73.3, 56.4, 406, 180 }, + [55] = { 72.9, 55.1, 406, 180 }, + [56] = { 67.5, 54.1, 406, 180 }, + [57] = { 70.5, 52.8, 406, 180 }, + [58] = { 71.7, 52.7, 406, 180 }, + [59] = { 65.6, 52.3, 406, 180 }, + [60] = { 68.4, 51.5, 406, 180 }, + [61] = { 71.5, 50.5, 406, 180 }, + [62] = { 62.6, 45.5, 406, 180 }, + [63] = { 63.5, 44.2, 406, 180 }, + [64] = { 63.9, 44, 406, 180 }, + [65] = { 65.5, 43.9, 406, 180 }, + [66] = { 66.5, 43.9, 406, 180 }, + [67] = { 48.4, 43, 406, 180 }, + [68] = { 46.9, 41.7, 406, 180 }, + [69] = { 68.2, 41.2, 406, 180 }, + [70] = { 50, 40.9, 406, 180 }, + [71] = { 47.6, 40.1, 406, 180 }, + [72] = { 47.6, 38.3, 406, 180 }, + [73] = { 49.4, 37.8, 406, 180 }, + }, + }, + [180663] = { + ["coords"] = { + [1] = { 67.1, 99.4, 36, 180 }, + [2] = { 59.4, 97.9, 36, 180 }, + [3] = { 60.4, 95.7, 36, 180 }, + [4] = { 58.7, 95.4, 36, 180 }, + [5] = { 59.1, 93.6, 36, 180 }, + [6] = { 67.4, 92.8, 36, 180 }, + [7] = { 68.1, 89, 36, 180 }, + [8] = { 67.8, 82.3, 36, 180 }, + [9] = { 68.1, 78.1, 36, 180 }, + [10] = { 69.4, 74.1, 36, 180 }, + [11] = { 71.3, 70.4, 36, 180 }, + [12] = { 55.7, 56.6, 267, 180 }, + [13] = { 56.3, 50.9, 267, 180 }, + [14] = { 57.4, 47.8, 267, 180 }, + [15] = { 62.4, 42.5, 267, 180 }, + [16] = { 63.2, 40.7, 267, 180 }, + [17] = { 65.2, 39.3, 267, 180 }, + [18] = { 67.5, 35.4, 267, 180 }, + [19] = { 60.8, 34.1, 267, 180 }, + [20] = { 61.7, 32.2, 267, 180 }, + [21] = { 60.2, 31.9, 267, 180 }, + [22] = { 60.5, 30.3, 267, 180 }, + [23] = { 67.8, 29.6, 267, 180 }, + [24] = { 68.5, 26.3, 267, 180 }, + [25] = { 68.2, 20.4, 267, 180 }, + [26] = { 68.5, 16.7, 267, 180 }, + [27] = { 69.6, 13.3, 267, 180 }, + [28] = { 71.3, 10.1, 267, 180 }, + [29] = { 78.5, 72.6, 331, 180 }, + [30] = { 52.8, 71.6, 331, 180 }, + [31] = { 47.5, 71.2, 331, 180 }, + [32] = { 48.5, 70.7, 331, 180 }, + [33] = { 63.3, 70.4, 331, 180 }, + [34] = { 44.7, 70.3, 331, 180 }, + [35] = { 47, 69.3, 331, 180 }, + [36] = { 79.2, 69.1, 331, 180 }, + [37] = { 63.9, 69, 331, 180 }, + [38] = { 46.5, 68.5, 331, 180 }, + [39] = { 48.9, 68.3, 331, 180 }, + [40] = { 48.5, 68.1, 331, 180 }, + [41] = { 85.1, 66.7, 331, 180 }, + [42] = { 79, 56.3, 331, 180 }, + [43] = { 79, 54.8, 331, 180 }, + [44] = { 35.4, 54.3, 331, 180 }, + [45] = { 35.8, 53.5, 331, 180 }, + [46] = { 36.3, 53.4, 331, 180 }, + [47] = { 39.6, 52.5, 331, 180 }, + [48] = { 38, 49.7, 331, 180 }, + [49] = { 39, 47.8, 331, 180 }, + [50] = { 35, 47.5, 331, 180 }, + [51] = { 35.3, 46.4, 331, 180 }, + [52] = { 76.9, 46.3, 331, 180 }, + [53] = { 74.7, 45.6, 331, 180 }, + [54] = { 48.4, 43, 406, 180 }, + [55] = { 46.9, 41.7, 406, 180 }, + [56] = { 50, 40.9, 406, 180 }, + [57] = { 47.6, 40.1, 406, 180 }, + [58] = { 47.6, 38.3, 406, 180 }, + [59] = { 49.4, 37.8, 406, 180 }, + }, + }, + [180664] = { + ["coords"] = { + [1] = { 10.8, 63.1, 11, 180 }, + [2] = { 7.8, 63, 11, 180 }, + [3] = { 5.9, 62.6, 11, 180 }, + [4] = { 12.8, 61.5, 11, 180 }, + [5] = { 5.3, 58.4, 11, 180 }, + [6] = { 6.9, 56.7, 11, 180 }, + [7] = { 5.9, 56.6, 11, 180 }, + [8] = { 6.7, 54.5, 11, 180 }, + [9] = { 12.2, 44, 11, 180 }, + [10] = { 14.2, 43.8, 11, 180 }, + [11] = { 12.1, 40.5, 11, 180 }, + [12] = { 12.1, 38.6, 11, 180 }, + [13] = { 12.4, 36.1, 11, 180 }, + [14] = { 12.7, 33.5, 11, 180 }, + [15] = { 13.3, 31.6, 11, 180 }, + [16] = { 14.9, 27.5, 11, 180 }, + [17] = { 15.7, 26.2, 11, 180 }, + [18] = { 17.9, 22, 11, 180 }, + [19] = { 18.7, 20.8, 11, 180 }, + [20] = { 19.9, 20.2, 11, 180 }, + [21] = { 21.5, 19.4, 11, 180 }, + [22] = { 25.7, 19, 11, 180 }, + [23] = { 27.7, 17.3, 11, 180 }, + [24] = { 28.9, 15.5, 11, 180 }, + [25] = { 32, 12.4, 11, 180 }, + [26] = { 33.1, 11.3, 11, 180 }, + [27] = { 23.5, 98.2, 45, 180 }, + [28] = { 24.7, 96.9, 45, 180 }, + [29] = { 6.4, 55.9, 45, 180 }, + [30] = { 67.7, 87.9, 267, 180 }, + [31] = { 65.7, 85.7, 267, 180 }, + [32] = { 65, 83.3, 267, 180 }, + [33] = { 64.3, 79.9, 267, 180 }, + [34] = { 61.7, 78, 267, 180 }, + [35] = { 59.4, 75, 267, 180 }, + [36] = { 28.3, 73.9, 267, 180 }, + [37] = { 58.2, 73.6, 267, 180 }, + [38] = { 40.1, 70.7, 267, 180 }, + [39] = { 38, 70.7, 267, 180 }, + [40] = { 35.9, 70.4, 267, 180 }, + [41] = { 42.3, 70.4, 267, 180 }, + [42] = { 34.4, 70, 267, 180 }, + [43] = { 57.5, 69.8, 267, 180 }, + [44] = { 43.9, 68.8, 267, 180 }, + [45] = { 24.3, 68.3, 267, 180 }, + [46] = { 56.3, 67.4, 267, 180 }, + [47] = { 46, 67.2, 267, 180 }, + [48] = { 55.5, 65.2, 267, 180 }, + [49] = { 22.8, 64.9, 267, 180 }, + [50] = { 49.7, 63.2, 267, 180 }, + [51] = { 51.1, 62.5, 267, 180 }, + [52] = { 50.7, 62.4, 267, 180 }, + [53] = { 55.1, 60.8, 267, 180 }, + }, + }, + [180665] = { + ["coords"] = { + [1] = { 72, 6.8, 1519, 10 }, + }, + ["fac"] = "AH", + }, + [180666] = { + ["coords"] = { + [1] = { 77.1, 38.9, 1497, 900 }, + }, + ["fac"] = "AH", + }, + [180667] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [180669] = { + ["coords"] = {}, + }, + [180670] = { + ["coords"] = {}, + }, + [180671] = { + ["coords"] = {}, + }, + [180672] = { + ["coords"] = {}, + }, + [180673] = { + ["coords"] = { + [1] = { 69.8, 38.2, 618, 180 }, + }, + }, + [180674] = { + ["coords"] = { + [1] = { 55.6, 75.6, 1537, 0 }, + }, + }, + [180675] = { + ["coords"] = { + [1] = { 54.4, 75.8, 1537, 0 }, + }, + }, + [180676] = { + ["coords"] = { + [1] = { 53.5, 78.4, 1537, 0 }, + }, + }, + [180677] = { + ["coords"] = { + [1] = { 54.9, 77, 1537, 0 }, + }, + }, + [180678] = { + ["coords"] = { + [1] = { 55, 76.7, 1537, 0 }, + }, + }, + [180679] = { + ["coords"] = { + [1] = { 72, 69.8, 1537, 25 }, + }, + }, + [180680] = { + ["coords"] = { + [1] = { 64.8, 65.3, 1537, 25 }, + }, + }, + [180681] = { + ["coords"] = { + [1] = { 58.9, 73.8, 1537, 25 }, + }, + }, + [180682] = { + ["coords"] = { + [1] = { 64.8, 43.3, 15, 180 }, + [2] = { 65, 41.4, 15, 180 }, + [3] = { 65.1, 39.9, 15, 180 }, + [4] = { 64.1, 38.2, 15, 180 }, + [5] = { 63.4, 36.9, 15, 180 }, + [6] = { 63.3, 34.8, 15, 180 }, + [7] = { 62.7, 33.1, 15, 180 }, + [8] = { 62.2, 32, 15, 180 }, + [9] = { 62.1, 30.8, 15, 180 }, + [10] = { 62, 29.2, 15, 180 }, + [11] = { 62.1, 27.5, 15, 180 }, + [12] = { 62.4, 25.8, 15, 180 }, + [13] = { 62.2, 23.9, 15, 180 }, + [14] = { 62.2, 22.4, 15, 180 }, + [15] = { 61.7, 20.6, 15, 180 }, + [16] = { 61.1, 18.9, 15, 180 }, + [17] = { 60.2, 17.7, 15, 180 }, + [18] = { 58.7, 17.2, 15, 180 }, + [19] = { 56, 16.3, 15, 180 }, + [20] = { 55, 16, 15, 180 }, + [21] = { 59.5, 15.9, 15, 180 }, + [22] = { 58.8, 14.3, 15, 180 }, + [23] = { 54.6, 14.1, 15, 180 }, + [24] = { 57, 14.1, 15, 180 }, + [25] = { 54.5, 11.7, 15, 180 }, + [26] = { 53.8, 10.4, 15, 180 }, + [27] = { 54.8, 9.3, 15, 180 }, + [28] = { 55.6, 7.5, 15, 180 }, + [29] = { 55.9, 5.6, 15, 180 }, + [30] = { 63.8, 60, 17, 180 }, + [31] = { 63.4, 59.3, 17, 180 }, + [32] = { 63.9, 58.8, 17, 180 }, + [33] = { 64.3, 57.8, 17, 180 }, + [34] = { 64.5, 56.9, 17, 180 }, + [35] = { 64.5, 56.1, 17, 180 }, + [36] = { 34.1, 32.7, 33, 180 }, + [37] = { 32.9, 31.5, 33, 180 }, + [38] = { 30.3, 28.9, 33, 180 }, + [39] = { 29.4, 27.8, 33, 180 }, + [40] = { 30, 27.7, 33, 180 }, + [41] = { 29.4, 25.6, 33, 180 }, + [42] = { 29.3, 24.3, 33, 180 }, + [43] = { 29, 22.6, 33, 180 }, + [44] = { 27.6, 21.4, 33, 180 }, + [45] = { 21.1, 21.1, 33, 180 }, + [46] = { 26.3, 20.6, 33, 180 }, + [47] = { 22.2, 20.4, 33, 180 }, + [48] = { 25.5, 20.3, 33, 180 }, + [49] = { 26.5, 19.9, 33, 180 }, + [50] = { 22.9, 19.8, 33, 180 }, + [51] = { 24.6, 19.6, 33, 180 }, + [52] = { 24.6, 19.4, 33, 180 }, + [53] = { 24.1, 19, 33, 180 }, + [54] = { 23.2, 18.6, 33, 180 }, + [55] = { 21.5, 18.4, 33, 180 }, + [56] = { 21.1, 16.8, 33, 180 }, + [57] = { 20.6, 15.9, 33, 180 }, + [58] = { 16, 15.6, 33, 180 }, + [59] = { 19.7, 14.9, 33, 180 }, + [60] = { 19.1, 13.6, 33, 180 }, + [61] = { 17.7, 12.7, 33, 180 }, + [62] = { 17.5, 11.1, 33, 180 }, + [63] = { 28.6, 89.7, 45, 180 }, + [64] = { 27.3, 87.2, 45, 180 }, + [65] = { 27.8, 85.4, 45, 3600 }, + [66] = { 30.9, 81.9, 45, 180 }, + [67] = { 32.9, 80.6, 45, 3600 }, + [68] = { 24, 82.5, 405, 180 }, + [69] = { 24.5, 81.3, 405, 180 }, + [70] = { 25.8, 80.7, 405, 900 }, + [71] = { 25.8, 79.6, 405, 900 }, + [72] = { 25.7, 78.2, 405, 900 }, + [73] = { 25.8, 76.8, 405, 900 }, + [74] = { 26, 75.8, 405, 180 }, + [75] = { 21.9, 74.8, 405, 180 }, + [76] = { 21.1, 74.2, 405, 180 }, + [77] = { 23.5, 73.6, 405, 180 }, + [78] = { 24.1, 73.6, 405, 900 }, + [79] = { 21.5, 73.3, 405, 900 }, + [80] = { 22.1, 72.7, 405, 180 }, + [81] = { 35.7, 31.1, 405, 180 }, + [82] = { 35.7, 30.2, 405, 180 }, + [83] = { 35.8, 28.1, 405, 180 }, + [84] = { 36, 26.4, 405, 180 }, + [85] = { 37, 25.1, 405, 180 }, + [86] = { 37.9, 24.1, 405, 3600 }, + [87] = { 38.5, 22.8, 405, 3600 }, + [88] = { 39.2, 22, 405, 900 }, + }, + }, + [180683] = { + ["coords"] = { + [1] = { 64.8, 43.3, 15, 180 }, + [2] = { 65, 41.4, 15, 180 }, + [3] = { 65.1, 39.9, 15, 180 }, + [4] = { 64.1, 38.2, 15, 180 }, + [5] = { 63.4, 36.9, 15, 180 }, + [6] = { 63.3, 34.8, 15, 180 }, + [7] = { 62.7, 33.1, 15, 180 }, + [8] = { 62.2, 32, 15, 180 }, + [9] = { 62.1, 30.8, 15, 180 }, + [10] = { 62, 29.2, 15, 180 }, + [11] = { 62.1, 27.5, 15, 180 }, + [12] = { 62.4, 25.8, 15, 180 }, + [13] = { 62.2, 23.9, 15, 180 }, + [14] = { 62.2, 22.4, 15, 180 }, + [15] = { 61.7, 20.6, 15, 180 }, + [16] = { 61.1, 18.9, 15, 180 }, + [17] = { 60.2, 17.7, 15, 180 }, + [18] = { 58.7, 17.2, 15, 180 }, + [19] = { 56, 16.3, 15, 180 }, + [20] = { 55, 16, 15, 180 }, + [21] = { 59.5, 15.9, 15, 180 }, + [22] = { 58.8, 14.3, 15, 180 }, + [23] = { 54.6, 14.1, 15, 180 }, + [24] = { 57, 14.1, 15, 180 }, + [25] = { 54.5, 11.7, 15, 180 }, + [26] = { 53.8, 10.4, 15, 180 }, + [27] = { 54.8, 9.3, 15, 180 }, + [28] = { 55.6, 7.5, 15, 180 }, + [29] = { 55.9, 5.6, 15, 180 }, + [30] = { 63.8, 60, 17, 180 }, + [31] = { 63.4, 59.3, 17, 180 }, + [32] = { 63.9, 58.8, 17, 180 }, + [33] = { 64.3, 57.8, 17, 180 }, + [34] = { 64.5, 56.9, 17, 180 }, + [35] = { 64.5, 56.1, 17, 180 }, + [36] = { 34.1, 32.7, 33, 180 }, + [37] = { 32.9, 31.5, 33, 180 }, + [38] = { 30.3, 28.9, 33, 180 }, + [39] = { 29.4, 27.8, 33, 180 }, + [40] = { 30, 27.7, 33, 180 }, + [41] = { 29.4, 25.6, 33, 180 }, + [42] = { 29.3, 24.3, 33, 180 }, + [43] = { 29, 22.6, 33, 180 }, + [44] = { 27.6, 21.4, 33, 180 }, + [45] = { 21.1, 21.1, 33, 180 }, + [46] = { 26.3, 20.6, 33, 180 }, + [47] = { 22.2, 20.4, 33, 180 }, + [48] = { 25.5, 20.3, 33, 180 }, + [49] = { 26.5, 19.9, 33, 180 }, + [50] = { 22.9, 19.8, 33, 180 }, + [51] = { 24.6, 19.6, 33, 180 }, + [52] = { 24.6, 19.4, 33, 180 }, + [53] = { 24.1, 19, 33, 180 }, + [54] = { 23.2, 18.6, 33, 180 }, + [55] = { 21.5, 18.4, 33, 180 }, + [56] = { 21.1, 16.8, 33, 180 }, + [57] = { 20.6, 15.9, 33, 180 }, + [58] = { 16, 15.6, 33, 180 }, + [59] = { 19.7, 14.9, 33, 180 }, + [60] = { 19.1, 13.6, 33, 180 }, + [61] = { 17.7, 12.7, 33, 180 }, + [62] = { 17.5, 11.1, 33, 180 }, + [63] = { 28.6, 89.7, 45, 180 }, + [64] = { 27.3, 87.2, 45, 180 }, + [65] = { 27.8, 85.4, 45, 3600 }, + [66] = { 30.9, 81.9, 45, 180 }, + [67] = { 32.9, 80.6, 45, 3600 }, + [68] = { 24, 82.5, 405, 180 }, + [69] = { 24.5, 81.3, 405, 180 }, + [70] = { 25.8, 80.7, 405, 900 }, + [71] = { 25.8, 79.6, 405, 900 }, + [72] = { 25.7, 78.2, 405, 900 }, + [73] = { 25.8, 76.8, 405, 900 }, + [74] = { 26, 75.8, 405, 180 }, + [75] = { 21.9, 74.8, 405, 180 }, + [76] = { 21.1, 74.2, 405, 180 }, + [77] = { 23.5, 73.6, 405, 180 }, + [78] = { 24.1, 73.6, 405, 900 }, + [79] = { 21.5, 73.3, 405, 900 }, + [80] = { 22.1, 72.7, 405, 180 }, + [81] = { 35.7, 31.1, 405, 180 }, + [82] = { 35.7, 30.2, 405, 180 }, + [83] = { 35.8, 28.1, 405, 180 }, + [84] = { 36, 26.4, 405, 180 }, + [85] = { 37, 25.1, 405, 180 }, + [86] = { 37.9, 24.1, 405, 3600 }, + [87] = { 38.5, 22.8, 405, 3600 }, + [88] = { 39.2, 22, 405, 900 }, + }, + }, + [180684] = { + ["coords"] = { + [1] = { 36.5, 33.1, 33, 180 }, + [2] = { 38.7, 31.5, 33, 180 }, + [3] = { 38.6, 30.8, 33, 180 }, + [4] = { 39.3, 30.6, 33, 180 }, + [5] = { 39.6, 29.5, 33, 180 }, + [6] = { 39.4, 28.1, 33, 180 }, + [7] = { 39.7, 26.9, 33, 180 }, + [8] = { 39.5, 26.5, 33, 180 }, + [9] = { 40.1, 25.2, 33, 180 }, + [10] = { 40.3, 22.4, 33, 180 }, + [11] = { 39.8, 22.1, 33, 180 }, + [12] = { 42, 21.1, 33, 180 }, + [13] = { 42.7, 20.4, 33, 180 }, + [14] = { 39.9, 17.8, 33, 180 }, + [15] = { 41.9, 16.9, 33, 180 }, + [16] = { 41.5, 16.2, 33, 180 }, + [17] = { 40.3, 15.3, 33, 180 }, + [18] = { 40.4, 13.7, 33, 180 }, + [19] = { 40, 12.5, 33, 180 }, + [20] = { 38.9, 11.8, 33, 180 }, + [21] = { 37.8, 10.5, 33, 180 }, + [22] = { 34.9, 10.1, 33, 180 }, + [23] = { 35.3, 10, 33, 180 }, + [24] = { 37.3, 10, 33, 180 }, + [25] = { 35.2, 9.6, 33, 180 }, + [26] = { 35.8, 9.4, 33, 180 }, + [27] = { 34.1, 8.8, 33, 180 }, + [28] = { 35.6, 8.7, 33, 180 }, + [29] = { 32.6, 8.2, 33, 180 }, + [30] = { 33.4, 7.7, 33, 180 }, + [31] = { 31.9, 7.4, 33, 180 }, + [32] = { 30.8, 6.5, 33, 180 }, + [33] = { 11.4, 55.1, 36, 180 }, + [34] = { 13.4, 54.3, 36, 180 }, + [35] = { 14.9, 52.8, 36, 180 }, + [36] = { 17.4, 52.2, 36, 180 }, + [37] = { 18.5, 51.7, 36, 180 }, + [38] = { 19.9, 49.4, 36, 180 }, + [39] = { 23.3, 44.6, 36, 180 }, + [40] = { 27.7, 40.5, 36, 180 }, + [41] = { 29.2, 37.8, 36, 180 }, + [42] = { 30.4, 35.2, 36, 180 }, + [43] = { 31, 32, 36, 180 }, + [44] = { 31.4, 31.3, 36, 180 }, + [45] = { 32.2, 29.8, 36, 180 }, + [46] = { 34, 27.1, 36, 180 }, + [47] = { 35.4, 23.8, 36, 180 }, + [48] = { 36.7, 19.1, 36, 180 }, + [49] = { 36.8, 16.7, 36, 180 }, + [50] = { 36.4, 15.5, 36, 180 }, + [51] = { 35.3, 13.6, 36, 180 }, + [52] = { 33.6, 10.3, 36, 180 }, + [53] = { 33, 9.7, 36, 180 }, + [54] = { 71.1, 42.7, 130, 180 }, + [55] = { 72.4, 42.1, 130, 180 }, + [56] = { 73.4, 41.1, 130, 180 }, + [57] = { 75.1, 40.7, 130, 180 }, + [58] = { 75.9, 40.4, 130, 180 }, + [59] = { 76.7, 38.9, 130, 180 }, + [60] = { 79, 35.7, 130, 180 }, + [61] = { 81.9, 32.9, 130, 180 }, + [62] = { 83, 31.2, 130, 180 }, + }, + }, + [180685] = { + ["coords"] = { + [1] = { 64.8, 43.3, 15, 180 }, + [2] = { 65, 41.4, 15, 180 }, + [3] = { 65.1, 39.9, 15, 180 }, + [4] = { 64.1, 38.2, 15, 180 }, + [5] = { 63.4, 36.9, 15, 180 }, + [6] = { 63.3, 34.8, 15, 180 }, + [7] = { 62.7, 33.1, 15, 180 }, + [8] = { 62.2, 32, 15, 180 }, + [9] = { 62.1, 30.8, 15, 180 }, + [10] = { 62, 29.2, 15, 180 }, + [11] = { 62.1, 27.5, 15, 180 }, + [12] = { 62.4, 25.8, 15, 180 }, + [13] = { 62.2, 23.9, 15, 180 }, + [14] = { 62.2, 22.4, 15, 180 }, + [15] = { 61.7, 20.6, 15, 180 }, + [16] = { 61.1, 18.9, 15, 180 }, + [17] = { 60.2, 17.7, 15, 180 }, + [18] = { 58.7, 17.2, 15, 180 }, + [19] = { 56, 16.3, 15, 180 }, + [20] = { 55, 16, 15, 180 }, + [21] = { 59.5, 15.9, 15, 180 }, + [22] = { 58.8, 14.3, 15, 180 }, + [23] = { 54.6, 14.1, 15, 180 }, + [24] = { 57, 14.1, 15, 180 }, + [25] = { 54.5, 11.7, 15, 180 }, + [26] = { 53.8, 10.4, 15, 180 }, + [27] = { 54.8, 9.3, 15, 180 }, + [28] = { 55.6, 7.5, 15, 180 }, + [29] = { 55.9, 5.6, 15, 180 }, + [30] = { 63.8, 60, 17, 180 }, + [31] = { 63.4, 59.3, 17, 180 }, + [32] = { 63.9, 58.8, 17, 180 }, + [33] = { 64.3, 57.8, 17, 180 }, + [34] = { 64.5, 56.9, 17, 180 }, + [35] = { 64.5, 56.1, 17, 180 }, + [36] = { 36.5, 33.1, 33, 180 }, + [37] = { 34.1, 32.7, 33, 180 }, + [38] = { 38.7, 31.5, 33, 180 }, + [39] = { 32.9, 31.5, 33, 180 }, + [40] = { 38.6, 30.8, 33, 180 }, + [41] = { 39.3, 30.6, 33, 180 }, + [42] = { 39.6, 29.5, 33, 180 }, + [43] = { 30.3, 28.9, 33, 180 }, + [44] = { 39.4, 28.1, 33, 180 }, + [45] = { 29.4, 27.8, 33, 180 }, + [46] = { 30, 27.7, 33, 180 }, + [47] = { 39.7, 26.9, 33, 180 }, + [48] = { 39.5, 26.5, 33, 180 }, + [49] = { 29.4, 25.6, 33, 180 }, + [50] = { 40.1, 25.2, 33, 180 }, + [51] = { 29.3, 24.3, 33, 180 }, + [52] = { 29, 22.6, 33, 180 }, + [53] = { 40.3, 22.4, 33, 180 }, + [54] = { 39.8, 22.1, 33, 180 }, + [55] = { 27.6, 21.4, 33, 180 }, + [56] = { 21.1, 21.1, 33, 180 }, + [57] = { 42, 21.1, 33, 180 }, + [58] = { 26.3, 20.6, 33, 180 }, + [59] = { 42.7, 20.4, 33, 180 }, + [60] = { 22.2, 20.4, 33, 180 }, + [61] = { 25.5, 20.3, 33, 180 }, + [62] = { 26.5, 19.9, 33, 180 }, + [63] = { 22.9, 19.8, 33, 180 }, + [64] = { 24.6, 19.6, 33, 180 }, + [65] = { 24.6, 19.4, 33, 180 }, + [66] = { 24.1, 19, 33, 180 }, + [67] = { 23.2, 18.6, 33, 180 }, + [68] = { 21.5, 18.4, 33, 180 }, + [69] = { 39.9, 17.8, 33, 180 }, + [70] = { 41.9, 16.9, 33, 180 }, + [71] = { 21.1, 16.8, 33, 180 }, + [72] = { 41.5, 16.2, 33, 180 }, + [73] = { 20.6, 15.9, 33, 180 }, + [74] = { 16, 15.6, 33, 180 }, + [75] = { 40.3, 15.3, 33, 180 }, + [76] = { 19.7, 14.9, 33, 180 }, + [77] = { 40.4, 13.7, 33, 180 }, + [78] = { 19.1, 13.6, 33, 180 }, + [79] = { 17.7, 12.7, 33, 180 }, + [80] = { 40, 12.5, 33, 180 }, + [81] = { 38.9, 11.8, 33, 180 }, + [82] = { 17.5, 11.1, 33, 180 }, + [83] = { 37.8, 10.5, 33, 180 }, + [84] = { 34.9, 10.1, 33, 180 }, + [85] = { 35.3, 10, 33, 180 }, + [86] = { 37.3, 10, 33, 180 }, + [87] = { 35.2, 9.6, 33, 180 }, + [88] = { 35.8, 9.4, 33, 180 }, + [89] = { 34.1, 8.8, 33, 180 }, + [90] = { 35.6, 8.7, 33, 180 }, + [91] = { 32.6, 8.2, 33, 180 }, + [92] = { 33.4, 7.7, 33, 180 }, + [93] = { 31.9, 7.4, 33, 180 }, + [94] = { 30.8, 6.5, 33, 180 }, + [95] = { 11.4, 55.1, 36, 180 }, + [96] = { 13.4, 54.3, 36, 180 }, + [97] = { 14.9, 52.8, 36, 180 }, + [98] = { 17.4, 52.2, 36, 180 }, + [99] = { 18.5, 51.7, 36, 180 }, + [100] = { 19.9, 49.4, 36, 180 }, + [101] = { 23.3, 44.6, 36, 180 }, + [102] = { 27.7, 40.5, 36, 180 }, + [103] = { 29.2, 37.8, 36, 180 }, + [104] = { 30.4, 35.2, 36, 180 }, + [105] = { 31, 32, 36, 180 }, + [106] = { 31.4, 31.3, 36, 180 }, + [107] = { 32.2, 29.8, 36, 180 }, + [108] = { 34, 27.1, 36, 180 }, + [109] = { 35.4, 23.8, 36, 180 }, + [110] = { 36.7, 19.1, 36, 180 }, + [111] = { 36.8, 16.7, 36, 180 }, + [112] = { 36.4, 15.5, 36, 180 }, + [113] = { 35.3, 13.6, 36, 180 }, + [114] = { 33.6, 10.3, 36, 180 }, + [115] = { 33, 9.7, 36, 180 }, + [116] = { 28.6, 89.7, 45, 180 }, + [117] = { 27.3, 87.2, 45, 180 }, + [118] = { 27.8, 85.4, 45, 3600 }, + [119] = { 30.9, 81.9, 45, 180 }, + [120] = { 32.9, 80.6, 45, 3600 }, + [121] = { 71.1, 42.7, 130, 180 }, + [122] = { 72.4, 42.1, 130, 180 }, + [123] = { 73.4, 41.1, 130, 180 }, + [124] = { 75.1, 40.7, 130, 180 }, + [125] = { 75.9, 40.4, 130, 180 }, + [126] = { 76.7, 38.9, 130, 180 }, + [127] = { 79, 35.7, 130, 180 }, + [128] = { 81.9, 32.9, 130, 180 }, + [129] = { 83, 31.2, 130, 180 }, + [130] = { 24, 82.5, 405, 180 }, + [131] = { 24.5, 81.3, 405, 180 }, + [132] = { 25.8, 80.7, 405, 900 }, + [133] = { 25.8, 79.6, 405, 900 }, + [134] = { 25.7, 78.2, 405, 900 }, + [135] = { 25.8, 76.8, 405, 900 }, + [136] = { 26, 75.8, 405, 180 }, + [137] = { 21.9, 74.8, 405, 180 }, + [138] = { 21.1, 74.2, 405, 180 }, + [139] = { 23.5, 73.6, 405, 180 }, + [140] = { 24.1, 73.6, 405, 900 }, + [141] = { 21.5, 73.3, 405, 900 }, + [142] = { 22.1, 72.7, 405, 180 }, + [143] = { 35.7, 31.1, 405, 180 }, + [144] = { 35.7, 30.2, 405, 180 }, + [145] = { 35.8, 28.1, 405, 180 }, + [146] = { 36, 26.4, 405, 180 }, + [147] = { 37, 25.1, 405, 180 }, + [148] = { 37.9, 24.1, 405, 3600 }, + [149] = { 38.5, 22.8, 405, 3600 }, + [150] = { 39.2, 22, 405, 900 }, + }, + }, + [180687] = { + ["coords"] = {}, + }, + [180688] = { + ["coords"] = { + [1] = { 33, 52, 1377, 25 }, + }, + }, + [180689] = { + ["coords"] = { + [1] = { 51.5, 68.7, 1377, 25 }, + }, + }, + [180690] = { + ["coords"] = {}, + }, + [180691] = { + ["coords"] = {}, + }, + [180692] = { + ["coords"] = { + [1] = { 58.9, 73.8, 1537, 0 }, + }, + }, + [180693] = { + ["coords"] = { + [1] = { 58.9, 73.8, 1537, 0 }, + }, + }, + [180694] = { + ["coords"] = { + [1] = { 58.9, 73.8, 1537, 0 }, + }, + }, + [180695] = { + ["coords"] = { + [1] = { 58.9, 73.8, 1537, 0 }, + }, + }, + [180696] = { + ["coords"] = { + [1] = { 58.9, 73.8, 1537, 0 }, + }, + }, + [180698] = { + ["coords"] = { + [1] = { 54.2, 39.2, 1, 120 }, + [2] = { 54, 38.9, 1, 120 }, + [3] = { 52.9, 37.3, 1, 120 }, + [4] = { 52.4, 37, 1, 120 }, + [5] = { 52.5, 36.5, 1, 120 }, + [6] = { 53, 36.2, 1, 120 }, + [7] = { 52.5, 36, 1, 120 }, + [8] = { 53.3, 35.4, 1, 120 }, + [9] = { 52.7, 35.2, 1, 120 }, + [10] = { 52.9, 35.1, 1, 120 }, + [11] = { 53.1, 35, 1, 120 }, + [12] = { 46.1, 14.5, 14, 120 }, + [13] = { 45.6, 14.2, 14, 120 }, + [14] = { 46.1, 14.1, 14, 120 }, + [15] = { 45.5, 14, 14, 120 }, + [16] = { 45.4, 13.4, 14, 120 }, + [17] = { 46, 13.3, 14, 120 }, + [18] = { 46, 13.1, 14, 120 }, + [19] = { 45.8, 10.5, 14, 120 }, + [20] = { 46.1, 10.4, 14, 120 }, + [21] = { 46.2, 8.6, 14, 120 }, + [22] = { 46.5, 8.6, 14, 120 }, + [23] = { 46.5, 8.3, 14, 120 }, + [24] = { 46, 8.3, 14, 120 }, + [25] = { 28.1, 77.4, 33, 120 }, + [26] = { 27.2, 77.1, 33, 120 }, + [27] = { 27.7, 77, 33, 120 }, + [28] = { 28.2, 76.3, 33, 120 }, + [29] = { 28.2, 76.2, 33, 120 }, + [30] = { 28.3, 76, 33, 120 }, + [31] = { 27.9, 74.7, 33, 120 }, + [32] = { 27.8, 74.2, 33, 120 }, + [33] = { 26.6, 73.5, 33, 120 }, + [34] = { 60.9, 68.3, 85, 120 }, + [35] = { 62.8, 67.8, 85, 120 }, + [36] = { 60.9, 67.8, 85, 120 }, + [37] = { 62.4, 67.5, 85, 120 }, + [38] = { 61.3, 67.5, 85, 120 }, + [39] = { 62.1, 67.5, 85, 120 }, + [40] = { 61.7, 67.5, 85, 120 }, + [41] = { 60.9, 67.2, 85, 120 }, + [42] = { 62.8, 67.2, 85, 120 }, + [43] = { 60.9, 66.6, 85, 120 }, + [44] = { 62.8, 66.6, 85, 120 }, + [45] = { 55.1, 95.6, 141, 120 }, + [46] = { 55, 95, 141, 120 }, + [47] = { 55.3, 94.5, 141, 120 }, + [48] = { 55.2, 93.9, 141, 120 }, + [49] = { 57.7, 93.8, 141, 120 }, + [50] = { 55.5, 93.6, 141, 120 }, + [51] = { 57.2, 92.8, 141, 120 }, + [52] = { 57.7, 92.8, 141, 120 }, + [53] = { 55.9, 92.7, 141, 120 }, + [54] = { 56, 92.6, 141, 120 }, + [55] = { 57.6, 92.6, 141, 120 }, + [56] = { 40.6, 34.5, 215, 120 }, + [57] = { 37.8, 30.6, 215, 120 }, + [58] = { 37.9, 30.6, 215, 120 }, + [59] = { 37.8, 29.5, 215, 120 }, + [60] = { 37.7, 29.5, 215, 120 }, + [61] = { 37.4, 28.6, 215, 120 }, + [62] = { 38.4, 28, 215, 120 }, + [63] = { 41.6, 27.5, 215, 120 }, + [64] = { 41.6, 27.3, 215, 120 }, + [65] = { 41.6, 27.1, 215, 120 }, + [66] = { 70.4, 16.1, 1497, 120 }, + [67] = { 61.8, 15.1, 1497, 120 }, + [68] = { 70.4, 13.1, 1497, 120 }, + [69] = { 61.9, 12.8, 1497, 120 }, + [70] = { 68.7, 11.4, 1497, 120 }, + [71] = { 63.6, 11.3, 1497, 120 }, + [72] = { 67.1, 11.3, 1497, 120 }, + [73] = { 65.3, 11.3, 1497, 120 }, + [74] = { 61.9, 10.1, 1497, 120 }, + [75] = { 70.4, 9.9, 1497, 120 }, + [76] = { 61.9, 7.3, 1497, 120 }, + [77] = { 70.4, 7.1, 1497, 120 }, + [78] = { 59.2, 64.7, 1519, 120 }, + [79] = { 59, 64.3, 1519, 120 }, + [80] = { 58.7, 63.9, 1519, 120 }, + [81] = { 55, 63.9, 1519, 120 }, + [82] = { 53.4, 63.8, 1519, 120 }, + [83] = { 56.1, 63.2, 1519, 120 }, + [84] = { 54.4, 62.8, 1519, 120 }, + [85] = { 54.6, 62.5, 1519, 120 }, + [86] = { 55.9, 61.1, 1519, 120 }, + [87] = { 54.6, 60.1, 1519, 120 }, + [88] = { 56, 60, 1519, 120 }, + [89] = { 13.9, 88.9, 1537, 120 }, + [90] = { 51.1, 100, 1637, 120 }, + [91] = { 51.1, 99.2, 1637, 120 }, + [92] = { 50.1, 89.2, 1637, 120 }, + [93] = { 51.4, 89, 1637, 120 }, + [94] = { 51.7, 82.2, 1637, 120 }, + [95] = { 53, 82, 1637, 120 }, + [96] = { 52.9, 81.1, 1637, 120 }, + [97] = { 51, 80.9, 1637, 120 }, + [98] = { 53.3, 87, 1638, 120 }, + [99] = { 39.5, 67.7, 1638, 120 }, + [100] = { 39.8, 67.7, 1638, 120 }, + [101] = { 39.3, 62.3, 1638, 120 }, + [102] = { 39.1, 62, 1638, 120 }, + [103] = { 37.4, 57.6, 1638, 120 }, + [104] = { 42.5, 55, 1638, 120 }, + [105] = { 42.2, 54.6, 1638, 120 }, + [106] = { 58.1, 52.7, 1638, 120 }, + [107] = { 58.2, 51.5, 1638, 120 }, + [108] = { 58.2, 50.4, 1638, 120 }, + }, + }, + [180699] = { + ["coords"] = { + [1] = { 54.2, 39.3, 1, 120 }, + [2] = { 53.9, 38.8, 1, 120 }, + [3] = { 53, 37.3, 1, 120 }, + [4] = { 52.6, 37.2, 1, 120 }, + [5] = { 52.3, 36.9, 1, 120 }, + [6] = { 52.4, 36.6, 1, 120 }, + [7] = { 53, 36.2, 1, 120 }, + [8] = { 52.5, 36, 1, 120 }, + [9] = { 52.6, 35.2, 1, 120 }, + [10] = { 52.7, 35.2, 1, 120 }, + [11] = { 52.8, 35.2, 1, 120 }, + [12] = { 53, 35.1, 1, 120 }, + [13] = { 53.1, 35, 1, 120 }, + [14] = { 46.1, 14.6, 14, 120 }, + [15] = { 46.1, 14.4, 14, 120 }, + [16] = { 45.6, 14.3, 14, 120 }, + [17] = { 46.1, 14.2, 14, 120 }, + [18] = { 45.6, 14.1, 14, 120 }, + [19] = { 46.1, 14, 14, 120 }, + [20] = { 45.5, 13.9, 14, 120 }, + [21] = { 45.3, 13.5, 14, 120 }, + [22] = { 46, 13.4, 14, 120 }, + [23] = { 45.3, 13.3, 14, 120 }, + [24] = { 46, 13.2, 14, 120 }, + [25] = { 46.1, 13, 14, 120 }, + [26] = { 45.7, 10.5, 14, 120 }, + [27] = { 45.8, 10.5, 14, 120 }, + [28] = { 46.1, 10.4, 14, 120 }, + [29] = { 46.2, 10.4, 14, 120 }, + [30] = { 46.2, 8.7, 14, 120 }, + [31] = { 46.5, 8.6, 14, 120 }, + [32] = { 46.2, 8.5, 14, 120 }, + [33] = { 46.5, 8.5, 14, 120 }, + [34] = { 46.1, 8.3, 14, 120 }, + [35] = { 46, 8.2, 14, 120 }, + [36] = { 28.1, 77.3, 33, 120 }, + [37] = { 28.3, 77.2, 33, 120 }, + [38] = { 27.7, 77, 33, 120 }, + [39] = { 27.7, 76.9, 33, 120 }, + [40] = { 28.1, 76.3, 33, 120 }, + [41] = { 28.2, 76.3, 33, 120 }, + [42] = { 28.2, 76.2, 33, 120 }, + [43] = { 28.2, 76.1, 33, 120 }, + [44] = { 28.5, 75.8, 33, 120 }, + [45] = { 28.2, 75.7, 33, 120 }, + [46] = { 28.9, 75.2, 33, 120 }, + [47] = { 28, 74.8, 33, 120 }, + [48] = { 27.9, 74.6, 33, 120 }, + [49] = { 27.8, 74.2, 33, 120 }, + [50] = { 27.4, 74.2, 33, 120 }, + [51] = { 27.7, 74.2, 33, 120 }, + [52] = { 26.5, 73.7, 33, 120 }, + [53] = { 26.2, 73.5, 33, 120 }, + [54] = { 26.1, 73.5, 33, 120 }, + [55] = { 26.5, 73.4, 33, 120 }, + [56] = { 26.4, 73.4, 33, 120 }, + [57] = { 60.9, 68.4, 85, 120 }, + [58] = { 62.8, 68.2, 85, 120 }, + [59] = { 60.9, 68, 85, 120 }, + [60] = { 62.8, 67.7, 85, 120 }, + [61] = { 60.9, 67.7, 85, 120 }, + [62] = { 62, 67.6, 85, 120 }, + [63] = { 61.7, 67.6, 85, 120 }, + [64] = { 62.3, 67.5, 85, 120 }, + [65] = { 61.4, 67.4, 85, 120 }, + [66] = { 61.6, 67.4, 85, 120 }, + [67] = { 62, 67.3, 85, 120 }, + [68] = { 60.9, 67.3, 85, 120 }, + [69] = { 62.8, 67.2, 85, 120 }, + [70] = { 60.9, 66.9, 85, 120 }, + [71] = { 62.8, 66.8, 85, 120 }, + [72] = { 60.9, 66.5, 85, 120 }, + [73] = { 62.8, 66.5, 85, 120 }, + [74] = { 62, 65, 85, 120 }, + [75] = { 61.7, 65, 85, 120 }, + [76] = { 61.7, 64.1, 85, 120 }, + [77] = { 62.1, 64.1, 85, 120 }, + [78] = { 55, 95.6, 141, 120 }, + [79] = { 55.1, 95.5, 141, 120 }, + [80] = { 55, 95.1, 141, 120 }, + [81] = { 55, 94.9, 141, 120 }, + [82] = { 55.2, 94.6, 141, 120 }, + [83] = { 55.3, 94.4, 141, 120 }, + [84] = { 55.2, 94, 141, 120 }, + [85] = { 55.3, 93.9, 141, 120 }, + [86] = { 57.7, 93.8, 141, 120 }, + [87] = { 55.5, 93.6, 141, 120 }, + [88] = { 57.6, 93.6, 141, 120 }, + [89] = { 55.5, 93.5, 141, 120 }, + [90] = { 57.7, 92.8, 141, 120 }, + [91] = { 55.9, 92.8, 141, 120 }, + [92] = { 57.3, 92.8, 141, 120 }, + [93] = { 57.2, 92.8, 141, 120 }, + [94] = { 57.7, 92.7, 141, 120 }, + [95] = { 56, 92.7, 141, 120 }, + [96] = { 56.1, 92.6, 141, 120 }, + [97] = { 57.6, 92.6, 141, 120 }, + [98] = { 55.1, 92.2, 141, 120 }, + [99] = { 55, 92.1, 141, 120 }, + [100] = { 40.7, 34.6, 215, 120 }, + [101] = { 40.6, 34.4, 215, 120 }, + [102] = { 40.6, 34, 215, 120 }, + [103] = { 37.6, 30.7, 215, 120 }, + [104] = { 37.8, 30.6, 215, 120 }, + [105] = { 38, 30.6, 215, 120 }, + [106] = { 38.3, 30.4, 215, 120 }, + [107] = { 37.2, 29.8, 215, 120 }, + [108] = { 37.2, 29.7, 215, 120 }, + [109] = { 37.9, 29.5, 215, 120 }, + [110] = { 37.7, 29.4, 215, 120 }, + [111] = { 37.5, 28.6, 215, 120 }, + [112] = { 37.4, 28.4, 215, 120 }, + [113] = { 38.7, 28.3, 215, 120 }, + [114] = { 38.5, 28.1, 215, 120 }, + [115] = { 38.4, 27.9, 215, 120 }, + [116] = { 40.9, 27.7, 215, 120 }, + [117] = { 41.7, 27.7, 215, 120 }, + [118] = { 41.7, 27.4, 215, 120 }, + [119] = { 41.7, 27.2, 215, 120 }, + [120] = { 40.7, 27.1, 215, 120 }, + [121] = { 41.6, 27, 215, 120 }, + [122] = { 70.5, 16.6, 1497, 120 }, + [123] = { 61.7, 15.7, 1497, 120 }, + [124] = { 70.5, 14.7, 1497, 120 }, + [125] = { 61.8, 13.9, 1497, 120 }, + [126] = { 70.5, 12.6, 1497, 120 }, + [127] = { 61.8, 12.4, 1497, 120 }, + [128] = { 67, 11.9, 1497, 120 }, + [129] = { 65.2, 11.8, 1497, 120 }, + [130] = { 68.3, 11.4, 1497, 120 }, + [131] = { 64, 11.3, 1497, 120 }, + [132] = { 65.2, 10.9, 1497, 120 }, + [133] = { 67.1, 10.8, 1497, 120 }, + [134] = { 61.8, 10.5, 1497, 120 }, + [135] = { 70.5, 10.4, 1497, 120 }, + [136] = { 61.8, 8.8, 1497, 120 }, + [137] = { 70.5, 8.5, 1497, 120 }, + [138] = { 61.8, 6.8, 1497, 120 }, + [139] = { 70.5, 6.6, 1497, 120 }, + [140] = { 64.3, 88.8, 1519, 120 }, + [141] = { 68.2, 84.7, 1519, 120 }, + [142] = { 69, 83.6, 1519, 120 }, + [143] = { 67.7, 83.5, 1519, 120 }, + [144] = { 68.7, 82.9, 1519, 120 }, + [145] = { 68.1, 81.9, 1519, 120 }, + [146] = { 66.8, 81.9, 1519, 120 }, + [147] = { 74, 78.9, 1519, 120 }, + [148] = { 73.9, 78.1, 1519, 120 }, + [149] = { 58.7, 68.2, 1519, 120 }, + [150] = { 60.5, 66, 1519, 120 }, + [151] = { 60.3, 65.8, 1519, 120 }, + [152] = { 53.5, 64.1, 1519, 120 }, + [153] = { 55.7, 63.5, 1519, 120 }, + [154] = { 53.2, 63.5, 1519, 120 }, + [155] = { 56.4, 63, 1519, 120 }, + [156] = { 58.2, 62.9, 1519, 120 }, + [157] = { 55.4, 61, 1519, 120 }, + [158] = { 54.6, 60.9, 1519, 120 }, + [159] = { 56.4, 59.4, 1519, 120 }, + [160] = { 54.6, 57.6, 1519, 120 }, + [161] = { 55.6, 57.5, 1519, 120 }, + [162] = { 48.4, 100, 1637, 120 }, + [163] = { 51.1, 99.6, 1637, 120 }, + [164] = { 51.1, 98.9, 1637, 120 }, + [165] = { 49.8, 89.3, 1637, 120 }, + [166] = { 50.3, 89.2, 1637, 120 }, + [167] = { 51.2, 89.1, 1637, 120 }, + [168] = { 51.7, 89, 1637, 120 }, + [169] = { 51.7, 82.6, 1637, 120 }, + [170] = { 52.9, 82.3, 1637, 120 }, + [171] = { 51.7, 81.9, 1637, 120 }, + [172] = { 52.9, 81.6, 1637, 120 }, + [173] = { 51.2, 81.1, 1637, 120 }, + [174] = { 50.8, 80.8, 1637, 120 }, + [175] = { 53.5, 87.4, 1638, 120 }, + [176] = { 53.3, 86.6, 1638, 120 }, + [177] = { 53, 84.3, 1638, 120 }, + [178] = { 38.3, 68.3, 1638, 120 }, + [179] = { 39.1, 67.7, 1638, 120 }, + [180] = { 40.2, 67.7, 1638, 120 }, + [181] = { 41.8, 66.5, 1638, 120 }, + [182] = { 36.2, 63.6, 1638, 120 }, + [183] = { 36.4, 63.2, 1638, 120 }, + [184] = { 39.7, 62.3, 1638, 120 }, + [185] = { 38.9, 61.6, 1638, 120 }, + [186] = { 37.6, 58.1, 1638, 120 }, + [187] = { 37.4, 57.1, 1638, 120 }, + [188] = { 43.6, 56.5, 1638, 120 }, + [189] = { 42.9, 55.2, 1638, 120 }, + [190] = { 42.1, 54.2, 1638, 120 }, + [191] = { 54.6, 53.4, 1638, 120 }, + [192] = { 58.4, 53.2, 1638, 120 }, + [193] = { 58.6, 52.1, 1638, 120 }, + [194] = { 58.6, 50.8, 1638, 120 }, + [195] = { 53.7, 50.5, 1638, 120 }, + [196] = { 58.3, 49.8, 1638, 120 }, + }, + }, + [180700] = { + ["coords"] = { + [1] = { 54.1, 39.1, 1, 120 }, + [2] = { 54.1, 39, 1, 120 }, + [3] = { 52.8, 37.3, 1, 120 }, + [4] = { 52.7, 37.2, 1, 120 }, + [5] = { 52.8, 37.2, 1, 120 }, + [6] = { 46.4, 14.8, 14, 120 }, + [7] = { 46.3, 14.7, 14, 120 }, + [8] = { 46.4, 14.6, 14, 120 }, + [9] = { 45.2, 13.6, 14, 120 }, + [10] = { 45.1, 13.6, 14, 120 }, + [11] = { 62.2, 64, 85, 120 }, + [12] = { 61.6, 63.9, 85, 120 }, + [13] = { 62.2, 63.8, 85, 120 }, + [14] = { 61.5, 63.6, 85, 120 }, + [15] = { 61.5, 63.5, 85, 120 }, + [16] = { 61.4, 63.5, 85, 120 }, + [17] = { 61.5, 62.7, 85, 120 }, + [18] = { 61.5, 62.5, 85, 120 }, + [19] = { 62.4, 61.7, 85, 120 }, + [20] = { 62.4, 61.6, 85, 120 }, + [21] = { 55, 95.3, 141, 120 }, + [22] = { 55.2, 94.8, 141, 120 }, + [23] = { 55.1, 94.3, 141, 120 }, + [24] = { 55.4, 94, 141, 120 }, + [25] = { 55.4, 93.4, 141, 120 }, + [26] = { 40.5, 34.3, 215, 120 }, + [27] = { 40.5, 34.1, 215, 120 }, + [28] = { 40.5, 34, 215, 120 }, + [29] = { 40.5, 33.9, 215, 120 }, + [30] = { 37.8, 30.8, 215, 120 }, + [31] = { 37.7, 30.8, 215, 120 }, + [32] = { 38, 30.8, 215, 120 }, + [33] = { 37.9, 30.8, 215, 120 }, + [34] = { 38.3, 30.5, 215, 120 }, + [35] = { 38.4, 30.5, 215, 120 }, + [36] = { 39.7, 30.1, 215, 120 }, + [37] = { 39.8, 30, 215, 120 }, + [38] = { 40.9, 27.6, 215, 120 }, + [39] = { 41.5, 27.5, 215, 120 }, + [40] = { 40.7, 27.5, 215, 120 }, + [41] = { 41.6, 27.2, 215, 120 }, + [42] = { 40.8, 27.1, 215, 120 }, + [43] = { 65.3, 88.8, 1519, 120 }, + [44] = { 64.9, 88.8, 1519, 120 }, + [45] = { 65.7, 88.7, 1519, 120 }, + [46] = { 67.8, 84, 1519, 120 }, + [47] = { 68.9, 83.3, 1519, 120 }, + [48] = { 67.4, 83.1, 1519, 120 }, + [49] = { 68.4, 82.5, 1519, 120 }, + [50] = { 67, 82.3, 1519, 120 }, + [51] = { 67.8, 81.3, 1519, 120 }, + [52] = { 73.3, 80.1, 1519, 120 }, + [53] = { 73.7, 79.5, 1519, 120 }, + [54] = { 73.6, 78.8, 1519, 120 }, + [55] = { 74.1, 78.4, 1519, 120 }, + [56] = { 54.8, 62.1, 1519, 120 }, + [57] = { 54.8, 61.5, 1519, 120 }, + [58] = { 56.7, 59.8, 1519, 120 }, + [59] = { 54.9, 57.2, 1519, 120 }, + [60] = { 52.5, 85.8, 1638, 120 }, + [61] = { 52.7, 84.9, 1638, 120 }, + [62] = { 52.6, 84.3, 1638, 120 }, + [63] = { 52.4, 83.7, 1638, 120 }, + [64] = { 39.3, 68.6, 1638, 120 }, + [65] = { 38.7, 68.6, 1638, 120 }, + [66] = { 40.3, 68.6, 1638, 120 }, + [67] = { 39.8, 68.6, 1638, 120 }, + [68] = { 41.8, 67.1, 1638, 120 }, + [69] = { 42.2, 66.9, 1638, 120 }, + [70] = { 48.9, 65.5, 1638, 120 }, + [71] = { 49, 64.8, 1638, 120 }, + [72] = { 54.8, 53.1, 1638, 120 }, + [73] = { 57.7, 52.3, 1638, 120 }, + [74] = { 53.6, 52.2, 1638, 120 }, + [75] = { 57.8, 51, 1638, 120 }, + [76] = { 54, 50.3, 1638, 120 }, + }, + }, + [180703] = { + ["coords"] = {}, + }, + [180704] = { + ["coords"] = {}, + }, + [180707] = { + ["coords"] = {}, + }, + [180708] = { + ["coords"] = {}, + }, + [180712] = { + ["coords"] = { + [1] = { 53.8, 70.5, 16, 180 }, + [2] = { 56, 70.1, 16, 180 }, + [3] = { 54.8, 68.9, 16, 180 }, + [4] = { 50.5, 64.4, 16, 180 }, + [5] = { 50, 61.7, 16, 180 }, + [6] = { 50.4, 59.4, 16, 180 }, + [7] = { 53.7, 58.3, 16, 180 }, + [8] = { 50.2, 55.8, 16, 180 }, + [9] = { 51.6, 53.6, 16, 180 }, + [10] = { 48.6, 51.1, 16, 180 }, + [11] = { 54.5, 50.4, 16, 180 }, + [12] = { 52.4, 49.6, 16, 180 }, + [13] = { 49.3, 47.7, 16, 180 }, + [14] = { 48.6, 46, 16, 180 }, + [15] = { 49.7, 43.4, 16, 180 }, + [16] = { 52.2, 40.8, 16, 180 }, + [17] = { 26.5, 84.7, 33, 180 }, + [18] = { 29.3, 83.6, 33, 180 }, + [19] = { 27.8, 83.5, 33, 180 }, + [20] = { 30.7, 83.2, 33, 180 }, + [21] = { 26.1, 82.5, 33, 180 }, + [22] = { 31.7, 82, 33, 180 }, + [23] = { 32.6, 80.6, 33, 180 }, + [24] = { 33.7, 78, 33, 180 }, + [25] = { 27.5, 76.5, 33, 180 }, + [26] = { 27.9, 76, 33, 180 }, + [27] = { 34, 74.7, 33, 180 }, + [28] = { 27.3, 74.7, 33, 180 }, + [29] = { 26.5, 74.1, 33, 180 }, + [30] = { 36.4, 69.9, 33, 180 }, + [31] = { 26.7, 69.9, 33, 180 }, + [32] = { 25.4, 66.8, 33, 180 }, + [33] = { 23.9, 65.4, 33, 180 }, + [34] = { 23.7, 63.1, 33, 180 }, + [35] = { 38.5, 62.8, 33, 180 }, + [36] = { 23.8, 61.4, 33, 180 }, + [37] = { 41.1, 60.5, 33, 180 }, + [38] = { 41.4, 59.4, 33, 180 }, + [39] = { 24.3, 59.4, 33, 180 }, + [40] = { 26.2, 58.3, 33, 180 }, + [41] = { 41.7, 57.9, 33, 180 }, + [42] = { 22.8, 56.4, 33, 180 }, + [43] = { 22.1, 55.2, 33, 180 }, + [44] = { 22.5, 52.8, 33, 180 }, + [45] = { 22.1, 51.1, 33, 180 }, + [46] = { 24.6, 49.9, 33, 180 }, + [47] = { 22.7, 48.8, 33, 180 }, + [48] = { 26, 48.6, 33, 180 }, + [49] = { 23.8, 47.4, 33, 180 }, + [50] = { 27.2, 46.6, 33, 180 }, + [51] = { 26.9, 44.5, 33, 180 }, + [52] = { 27.1, 42.3, 33, 180 }, + [53] = { 26.9, 40.9, 33, 180 }, + [54] = { 27.9, 39, 33, 180 }, + [55] = { 28.9, 37.7, 33, 180 }, + [56] = { 29.4, 37.2, 33, 180 }, + [57] = { 34.2, 36.6, 33, 180 }, + [58] = { 31.8, 36.5, 33, 180 }, + [59] = { 35.1, 36, 33, 180 }, + [60] = { 32.4, 35.5, 33, 180 }, + [61] = { 34.7, 34.2, 33, 180 }, + [62] = { 46.1, 53.8, 357, 180 }, + [63] = { 49.3, 53.5, 357, 180 }, + [64] = { 47.9, 53.1, 357, 180 }, + [65] = { 45, 52.5, 357, 180 }, + [66] = { 49.6, 52.3, 357, 180 }, + [67] = { 44.1, 51, 357, 180 }, + [68] = { 48, 50.8, 357, 180 }, + [69] = { 44.1, 49.3, 357, 180 }, + [70] = { 44.4, 47.8, 357, 180 }, + [71] = { 44.2, 46.5, 357, 180 }, + [72] = { 44.1, 45.1, 357, 180 }, + [73] = { 44.2, 43.5, 357, 180 }, + [74] = { 44.2, 41.6, 357, 180 }, + [75] = { 44.3, 40.4, 357, 180 }, + [76] = { 42.9, 40.2, 357, 180 }, + [77] = { 44, 40.1, 357, 180 }, + [78] = { 41.7, 39.8, 357, 180 }, + [79] = { 40.6, 38.6, 357, 180 }, + [80] = { 39.5, 37.2, 357, 180 }, + [81] = { 36.8, 36.3, 357, 180 }, + [82] = { 35.1, 35.3, 357, 180 }, + [83] = { 34.4, 34.2, 357, 180 }, + [84] = { 38.8, 33.8, 357, 180 }, + [85] = { 33.6, 32.4, 357, 180 }, + [86] = { 65.1, 61.2, 440, 180 }, + [87] = { 66.2, 60.3, 440, 180 }, + [88] = { 65.4, 60.2, 440, 180 }, + [89] = { 69.9, 56.2, 440, 180 }, + [90] = { 73.2, 51.4, 440, 180 }, + [91] = { 73.7, 50.3, 440, 180 }, + [92] = { 74.1, 49.6, 440, 180 }, + [93] = { 74.7, 49, 440, 180 }, + [94] = { 75.5, 47.1, 440, 180 }, + [95] = { 73, 44.2, 440, 180 }, + [96] = { 72.7, 43.9, 440, 180 }, + [97] = { 72.1, 42.9, 440, 180 }, + [98] = { 71.4, 41.8, 440, 180 }, + [99] = { 71.3, 41.1, 440, 180 }, + [100] = { 71.1, 40.3, 440, 180 }, + [101] = { 68.2, 39.5, 440, 180 }, + [102] = { 67.5, 38.9, 440, 180 }, + [103] = { 67.5, 37.8, 440, 180 }, + [104] = { 68, 36.8, 440, 180 }, + [105] = { 67.7, 35.7, 440, 180 }, + [106] = { 68.5, 34.6, 440, 180 }, + [107] = { 68.1, 29.5, 440, 180 }, + [108] = { 68.1, 28.3, 440, 180 }, + [109] = { 67.9, 27.2, 440, 180 }, + [110] = { 67.5, 25.7, 440, 180 }, + [111] = { 67.4, 24.9, 440, 180 }, + [112] = { 67.9, 23.4, 440, 180 }, + [113] = { 68.6, 23, 440, 180 }, + [114] = { 67.9, 22.6, 440, 180 }, + [115] = { 67.7, 21, 440, 180 }, + [116] = { 67.4, 19.4, 440, 180 }, + [117] = { 66.6, 18.2, 440, 180 }, + }, + }, + [180713] = { + ["coords"] = {}, + }, + [180714] = { + ["coords"] = { + [1] = { 53.5, 79, 1537, 180 }, + [2] = { 53.4, 79, 1537, 180 }, + [3] = { 53.6, 78.9, 1537, 180 }, + [4] = { 53.4, 78.7, 1537, 180 }, + [5] = { 54.8, 77.8, 1537, 180 }, + [6] = { 53.9, 77.8, 1537, 180 }, + [7] = { 56.4, 77.6, 1537, 180 }, + [8] = { 56.2, 77.4, 1537, 180 }, + [9] = { 56.2, 77.3, 1537, 180 }, + [10] = { 56.3, 77.1, 1537, 180 }, + [11] = { 56.1, 76.9, 1537, 180 }, + [12] = { 54.7, 76.5, 1537, 180 }, + [13] = { 53.5, 76.5, 1537, 180 }, + [14] = { 55.5, 76.5, 1537, 180 }, + [15] = { 55.6, 76.4, 1537, 180 }, + [16] = { 55.7, 76.3, 1537, 180 }, + [17] = { 55.2, 75.7, 1537, 180 }, + }, + }, + [180715] = { + ["coords"] = { + [1] = { 38.5, 28.7, 215, 180 }, + [2] = { 67.3, 38, 1497, 180 }, + [3] = { 54.9, 58.3, 1519, 180 }, + [4] = { 35, 68.2, 1537, 180 }, + [5] = { 53.6, 67.2, 1637, 180 }, + [6] = { 43, 58.4, 1638, 180 }, + }, + }, + [180717] = { + ["coords"] = { + [1] = { 25.7, 90.9, 1377, 900 }, + }, + }, + [180718] = { + ["coords"] = {}, + }, + [180719] = { + ["coords"] = { + [1] = { 73.3, 48.1, 440, 300 }, + }, + }, + [180720] = { + ["coords"] = {}, + }, + [180721] = { + ["coords"] = {}, + }, + [180722] = { + ["coords"] = {}, + }, + [180723] = { + ["coords"] = {}, + }, + [180724] = { + ["coords"] = {}, + }, + [180725] = { + ["coords"] = {}, + }, + [180726] = { + ["coords"] = {}, + }, + [180727] = { + ["coords"] = {}, + }, + [180728] = { + ["coords"] = {}, + }, + [180729] = { + ["coords"] = {}, + }, + [180730] = { + ["coords"] = {}, + }, + [180731] = { + ["coords"] = {}, + }, + [180733] = { + ["coords"] = {}, + }, + [180736] = { + ["coords"] = {}, + }, + [180737] = { + ["coords"] = {}, + }, + [180738] = { + ["coords"] = {}, + }, + [180739] = { + ["coords"] = {}, + }, + [180740] = { + ["coords"] = {}, + }, + [180741] = { + ["coords"] = {}, + }, + [180742] = { + ["coords"] = { + [1] = { 68.8, 34.4, 51, 300 }, + [2] = { 68.6, 34.4, 51, 300 }, + [3] = { 68.9, 34.4, 51, 300 }, + [4] = { 68.6, 34.2, 51, 300 }, + [5] = { 68.9, 34.2, 51, 300 }, + [6] = { 68.6, 34, 51, 300 }, + [7] = { 68.8, 34, 51, 300 }, + [8] = { 68.9, 34, 51, 300 }, + }, + }, + [180743] = { + ["coords"] = { + [1] = { 33.8, 65.7, 1537, 300 }, + [2] = { 52.2, 69, 1637, 300 }, + }, + }, + [180744] = { + ["coords"] = { + [1] = { 46.4, 43.9, 1377, 25 }, + [2] = { 56.3, 37.5, 1377, 25 }, + [3] = { 56.7, 37.4, 1377, 25 }, + [4] = { 57, 37.3, 1377, 25 }, + }, + }, + [180745] = { + ["coords"] = {}, + }, + [180746] = { + ["coords"] = { + [1] = { 33.5, 65.6, 1537, 300 }, + [2] = { 52, 69.3, 1637, 300 }, + }, + }, + [180747] = { + ["coords"] = { + [1] = { 33.8, 66.3, 1537, 300 }, + [2] = { 52.1, 69.7, 1637, 300 }, + }, + }, + [180748] = { + ["coords"] = { + [1] = { 33.9, 66.7, 1537, 300 }, + [2] = { 52.2, 69.2, 1637, 300 }, + }, + }, + [180749] = { + ["coords"] = { + [1] = { 54.3, 39.3, 1, 120 }, + [2] = { 53.7, 38.3, 1, 120 }, + [3] = { 51.6, 36.6, 1, 120 }, + [4] = { 53.2, 36, 1, 120 }, + [5] = { 46.1, 15.4, 14, 120 }, + [6] = { 45.7, 13.6, 14, 120 }, + [7] = { 46.5, 10.5, 14, 120 }, + [8] = { 46.3, 8.6, 14, 120 }, + [9] = { 27.6, 77.5, 33, 120 }, + [10] = { 26.7, 76.4, 33, 120 }, + [11] = { 28.2, 75.3, 33, 120 }, + [12] = { 26.8, 73.8, 33, 120 }, + [13] = { 62.5, 68.1, 85, 120 }, + [14] = { 61.1, 66.6, 85, 120 }, + [15] = { 62.1, 64.4, 85, 120 }, + [16] = { 61.4, 63.2, 85, 120 }, + [17] = { 55, 95.5, 141, 120 }, + [18] = { 58, 93.8, 141, 120 }, + [19] = { 54.9, 92.3, 141, 120 }, + [20] = { 56.4, 91.2, 141, 120 }, + [21] = { 37.8, 24, 215, 120 }, + [22] = { 40.7, 23.7, 215, 120 }, + [23] = { 69.3, 14.3, 1497, 120 }, + [24] = { 62.8, 7.3, 1497, 120 }, + [25] = { 72, 85.4, 1519, 120 }, + [26] = { 61.6, 78.6, 1519, 120 }, + [27] = { 59.4, 65.1, 1519, 120 }, + [28] = { 54.1, 65.1, 1519, 120 }, + [29] = { 52.9, 89.5, 1637, 120 }, + [30] = { 51.9, 82.4, 1637, 120 }, + [31] = { 39.5, 35.4, 1638, 120 }, + [32] = { 53.7, 33.9, 1638, 120 }, + }, + }, + [180750] = { + ["coords"] = { + [1] = { 53.8, 70.5, 16, 180 }, + [2] = { 56, 70.1, 16, 180 }, + [3] = { 54.8, 68.9, 16, 180 }, + [4] = { 50.5, 64.4, 16, 180 }, + [5] = { 50, 61.7, 16, 180 }, + [6] = { 50.4, 59.4, 16, 180 }, + [7] = { 53.7, 58.3, 16, 180 }, + [8] = { 50.2, 55.8, 16, 180 }, + [9] = { 51.6, 53.6, 16, 180 }, + [10] = { 48.6, 51.1, 16, 180 }, + [11] = { 54.5, 50.4, 16, 180 }, + [12] = { 52.4, 49.6, 16, 180 }, + [13] = { 49.3, 47.7, 16, 180 }, + [14] = { 48.6, 46, 16, 180 }, + [15] = { 49.7, 43.4, 16, 180 }, + [16] = { 52.2, 40.8, 16, 180 }, + [17] = { 46.1, 53.8, 357, 180 }, + [18] = { 49.3, 53.5, 357, 180 }, + [19] = { 47.9, 53.1, 357, 180 }, + [20] = { 45, 52.5, 357, 180 }, + [21] = { 49.6, 52.3, 357, 180 }, + [22] = { 44.1, 51, 357, 180 }, + [23] = { 48, 50.8, 357, 180 }, + [24] = { 44.1, 49.3, 357, 180 }, + [25] = { 44.4, 47.8, 357, 180 }, + [26] = { 44.2, 46.5, 357, 180 }, + [27] = { 44.1, 45.1, 357, 180 }, + [28] = { 44.2, 43.5, 357, 180 }, + [29] = { 44.2, 41.6, 357, 180 }, + [30] = { 44.3, 40.4, 357, 180 }, + [31] = { 42.9, 40.2, 357, 180 }, + [32] = { 44, 40.1, 357, 180 }, + [33] = { 41.7, 39.8, 357, 180 }, + [34] = { 40.6, 38.6, 357, 180 }, + [35] = { 39.5, 37.2, 357, 180 }, + [36] = { 36.8, 36.3, 357, 180 }, + [37] = { 35.1, 35.3, 357, 180 }, + [38] = { 34.4, 34.2, 357, 180 }, + [39] = { 38.8, 33.8, 357, 180 }, + [40] = { 33.6, 32.4, 357, 180 }, + [41] = { 65.1, 61.2, 440, 180 }, + [42] = { 66.2, 60.3, 440, 180 }, + [43] = { 65.4, 60.2, 440, 180 }, + [44] = { 69.9, 56.2, 440, 180 }, + [45] = { 73.2, 51.4, 440, 180 }, + [46] = { 73.7, 50.3, 440, 180 }, + [47] = { 74.1, 49.6, 440, 180 }, + [48] = { 74.7, 49, 440, 180 }, + [49] = { 75.5, 47.1, 440, 180 }, + [50] = { 73, 44.2, 440, 180 }, + [51] = { 72.7, 43.9, 440, 180 }, + [52] = { 72.1, 42.9, 440, 180 }, + [53] = { 71.4, 41.8, 440, 180 }, + [54] = { 71.3, 41.1, 440, 180 }, + [55] = { 71.1, 40.3, 440, 180 }, + [56] = { 68.2, 39.5, 440, 180 }, + [57] = { 67.5, 38.9, 440, 180 }, + [58] = { 67.5, 37.8, 440, 180 }, + [59] = { 68, 36.8, 440, 180 }, + [60] = { 67.7, 35.7, 440, 180 }, + [61] = { 68.5, 34.6, 440, 180 }, + [62] = { 68.1, 29.5, 440, 180 }, + [63] = { 68.1, 28.3, 440, 180 }, + [64] = { 67.9, 27.2, 440, 180 }, + [65] = { 67.5, 25.7, 440, 180 }, + [66] = { 67.4, 24.9, 440, 180 }, + [67] = { 67.9, 23.4, 440, 180 }, + [68] = { 68.6, 23, 440, 180 }, + [69] = { 67.9, 22.6, 440, 180 }, + [70] = { 67.7, 21, 440, 180 }, + [71] = { 67.4, 19.4, 440, 180 }, + [72] = { 66.6, 18.2, 440, 180 }, + }, + }, + [180751] = { + ["coords"] = { + [1] = { 53.8, 70.5, 16, 180 }, + [2] = { 56, 70.1, 16, 180 }, + [3] = { 54.8, 68.9, 16, 180 }, + [4] = { 50.5, 64.4, 16, 180 }, + [5] = { 50, 61.7, 16, 180 }, + [6] = { 50.4, 59.4, 16, 180 }, + [7] = { 53.7, 58.3, 16, 180 }, + [8] = { 50.2, 55.8, 16, 180 }, + [9] = { 51.6, 53.6, 16, 180 }, + [10] = { 48.6, 51.1, 16, 180 }, + [11] = { 54.5, 50.4, 16, 180 }, + [12] = { 52.4, 49.6, 16, 180 }, + [13] = { 49.3, 47.7, 16, 180 }, + [14] = { 48.6, 46, 16, 180 }, + [15] = { 49.7, 43.4, 16, 180 }, + [16] = { 52.2, 40.8, 16, 180 }, + [17] = { 46.1, 53.8, 357, 180 }, + [18] = { 49.3, 53.5, 357, 180 }, + [19] = { 47.9, 53.1, 357, 180 }, + [20] = { 45, 52.5, 357, 180 }, + [21] = { 49.6, 52.3, 357, 180 }, + [22] = { 44.1, 51, 357, 180 }, + [23] = { 48, 50.8, 357, 180 }, + [24] = { 44.1, 49.3, 357, 180 }, + [25] = { 44.4, 47.8, 357, 180 }, + [26] = { 44.2, 46.5, 357, 180 }, + [27] = { 44.1, 45.1, 357, 180 }, + [28] = { 44.2, 43.5, 357, 180 }, + [29] = { 44.2, 41.6, 357, 180 }, + [30] = { 44.3, 40.4, 357, 180 }, + [31] = { 42.9, 40.2, 357, 180 }, + [32] = { 44, 40.1, 357, 180 }, + [33] = { 41.7, 39.8, 357, 180 }, + [34] = { 40.6, 38.6, 357, 180 }, + [35] = { 39.5, 37.2, 357, 180 }, + [36] = { 36.8, 36.3, 357, 180 }, + [37] = { 35.1, 35.3, 357, 180 }, + [38] = { 34.4, 34.2, 357, 180 }, + [39] = { 38.8, 33.8, 357, 180 }, + [40] = { 33.6, 32.4, 357, 180 }, + [41] = { 65.1, 61.2, 440, 180 }, + [42] = { 66.2, 60.3, 440, 180 }, + [43] = { 65.4, 60.2, 440, 180 }, + [44] = { 69.9, 56.2, 440, 180 }, + [45] = { 73.2, 51.4, 440, 180 }, + [46] = { 73.7, 50.3, 440, 180 }, + [47] = { 74.1, 49.6, 440, 180 }, + [48] = { 74.7, 49, 440, 180 }, + [49] = { 75.5, 47.1, 440, 180 }, + [50] = { 73, 44.2, 440, 180 }, + [51] = { 72.7, 43.9, 440, 180 }, + [52] = { 72.1, 42.9, 440, 180 }, + [53] = { 71.4, 41.8, 440, 180 }, + [54] = { 71.3, 41.1, 440, 180 }, + [55] = { 71.1, 40.3, 440, 180 }, + [56] = { 68.2, 39.5, 440, 180 }, + [57] = { 67.5, 38.9, 440, 180 }, + [58] = { 67.5, 37.8, 440, 180 }, + [59] = { 68, 36.8, 440, 180 }, + [60] = { 67.7, 35.7, 440, 180 }, + [61] = { 68.5, 34.6, 440, 180 }, + [62] = { 68.1, 29.5, 440, 180 }, + [63] = { 68.1, 28.3, 440, 180 }, + [64] = { 67.9, 27.2, 440, 180 }, + [65] = { 67.5, 25.7, 440, 180 }, + [66] = { 67.4, 24.9, 440, 180 }, + [67] = { 67.9, 23.4, 440, 180 }, + [68] = { 68.6, 23, 440, 180 }, + [69] = { 67.9, 22.6, 440, 180 }, + [70] = { 67.7, 21, 440, 180 }, + [71] = { 67.4, 19.4, 440, 180 }, + [72] = { 66.6, 18.2, 440, 180 }, + }, + }, + [180752] = { + ["coords"] = { + [1] = { 53.8, 70.5, 16, 180 }, + [2] = { 56, 70.1, 16, 180 }, + [3] = { 54.8, 68.9, 16, 180 }, + [4] = { 50.5, 64.4, 16, 180 }, + [5] = { 50, 61.7, 16, 180 }, + [6] = { 50.4, 59.4, 16, 180 }, + [7] = { 53.7, 58.3, 16, 180 }, + [8] = { 50.2, 55.8, 16, 180 }, + [9] = { 51.6, 53.6, 16, 180 }, + [10] = { 48.6, 51.1, 16, 180 }, + [11] = { 54.5, 50.4, 16, 180 }, + [12] = { 52.4, 49.6, 16, 180 }, + [13] = { 49.3, 47.7, 16, 180 }, + [14] = { 48.6, 46, 16, 180 }, + [15] = { 49.7, 43.4, 16, 180 }, + [16] = { 52.2, 40.8, 16, 180 }, + [17] = { 46.1, 53.8, 357, 180 }, + [18] = { 49.3, 53.5, 357, 180 }, + [19] = { 47.9, 53.1, 357, 180 }, + [20] = { 45, 52.5, 357, 180 }, + [21] = { 49.6, 52.3, 357, 180 }, + [22] = { 44.1, 51, 357, 180 }, + [23] = { 48, 50.8, 357, 180 }, + [24] = { 44.1, 49.3, 357, 180 }, + [25] = { 44.4, 47.8, 357, 180 }, + [26] = { 44.2, 46.5, 357, 180 }, + [27] = { 44.1, 45.1, 357, 180 }, + [28] = { 44.2, 43.5, 357, 180 }, + [29] = { 44.2, 41.6, 357, 180 }, + [30] = { 44.3, 40.4, 357, 180 }, + [31] = { 42.9, 40.2, 357, 180 }, + [32] = { 44, 40.1, 357, 180 }, + [33] = { 41.7, 39.8, 357, 180 }, + [34] = { 40.6, 38.6, 357, 180 }, + [35] = { 39.5, 37.2, 357, 180 }, + [36] = { 36.8, 36.3, 357, 180 }, + [37] = { 35.1, 35.3, 357, 180 }, + [38] = { 34.4, 34.2, 357, 180 }, + [39] = { 38.8, 33.8, 357, 180 }, + [40] = { 33.6, 32.4, 357, 180 }, + [41] = { 65.1, 61.2, 440, 180 }, + [42] = { 66.2, 60.3, 440, 180 }, + [43] = { 65.4, 60.2, 440, 180 }, + [44] = { 69.9, 56.2, 440, 180 }, + [45] = { 73.2, 51.4, 440, 180 }, + [46] = { 73.7, 50.3, 440, 180 }, + [47] = { 74.1, 49.6, 440, 180 }, + [48] = { 74.7, 49, 440, 180 }, + [49] = { 75.5, 47.1, 440, 180 }, + [50] = { 73, 44.2, 440, 180 }, + [51] = { 72.7, 43.9, 440, 180 }, + [52] = { 72.1, 42.9, 440, 180 }, + [53] = { 71.4, 41.8, 440, 180 }, + [54] = { 71.3, 41.1, 440, 180 }, + [55] = { 71.1, 40.3, 440, 180 }, + [56] = { 68.2, 39.5, 440, 180 }, + [57] = { 67.5, 38.9, 440, 180 }, + [58] = { 67.5, 37.8, 440, 180 }, + [59] = { 68, 36.8, 440, 180 }, + [60] = { 67.7, 35.7, 440, 180 }, + [61] = { 68.5, 34.6, 440, 180 }, + [62] = { 68.1, 29.5, 440, 180 }, + [63] = { 68.1, 28.3, 440, 180 }, + [64] = { 67.9, 27.2, 440, 180 }, + [65] = { 67.5, 25.7, 440, 180 }, + [66] = { 67.4, 24.9, 440, 180 }, + [67] = { 67.9, 23.4, 440, 180 }, + [68] = { 68.6, 23, 440, 180 }, + [69] = { 67.9, 22.6, 440, 180 }, + [70] = { 67.7, 21, 440, 180 }, + [71] = { 67.4, 19.4, 440, 180 }, + [72] = { 66.6, 18.2, 440, 180 }, + }, + }, + [180753] = { + ["coords"] = { + [1] = { 74.6, 72.6, 16, 1800 }, + [2] = { 66.3, 68.5, 16, 1800 }, + [3] = { 79.2, 54.4, 16, 1800 }, + [4] = { 55.6, 51.1, 16, 1800 }, + [5] = { 60.1, 39.7, 16, 1800 }, + [6] = { 54.6, 39, 16, 1800 }, + [7] = { 54.8, 38.8, 16, 1800 }, + }, + }, + [180754] = { + ["coords"] = { + [1] = { 54.2, 39.3, 1, 10 }, + [2] = { 54.1, 39.2, 1, 10 }, + [3] = { 54.2, 39.2, 1, 10 }, + [4] = { 54, 38.9, 1, 10 }, + [5] = { 53.9, 38.9, 1, 10 }, + [6] = { 52.9, 37.3, 1, 10 }, + [7] = { 52.4, 37.1, 1, 10 }, + [8] = { 52.3, 37, 1, 10 }, + [9] = { 52.4, 37, 1, 10 }, + [10] = { 52.5, 36.5, 1, 10 }, + [11] = { 53, 36.3, 1, 10 }, + [12] = { 52.9, 36.2, 1, 10 }, + [13] = { 53, 36.2, 1, 10 }, + [14] = { 52.5, 36, 1, 10 }, + [15] = { 53.3, 35.4, 1, 10 }, + [16] = { 53.3, 35.3, 1, 10 }, + [17] = { 52.7, 35.2, 1, 10 }, + [18] = { 52.9, 35.2, 1, 10 }, + [19] = { 52.9, 35.1, 1, 10 }, + [20] = { 53.1, 35.1, 1, 10 }, + [21] = { 53.1, 35, 1, 10 }, + [22] = { 46.1, 14.5, 14, 10 }, + [23] = { 46.1, 14.4, 14, 10 }, + [24] = { 45.6, 14.2, 14, 10 }, + [25] = { 46.1, 14.1, 14, 10 }, + [26] = { 45.5, 14, 14, 10 }, + [27] = { 45.5, 13.9, 14, 10 }, + [28] = { 45.4, 13.4, 14, 10 }, + [29] = { 45.3, 13.4, 14, 10 }, + [30] = { 46, 13.3, 14, 10 }, + [31] = { 46.1, 13.3, 14, 10 }, + [32] = { 46.1, 13.1, 14, 10 }, + [33] = { 46, 13.1, 14, 10 }, + [34] = { 45.8, 10.5, 14, 10 }, + [35] = { 45.8, 10.4, 14, 10 }, + [36] = { 46.1, 10.4, 14, 10 }, + [37] = { 46.2, 8.6, 14, 10 }, + [38] = { 46.5, 8.6, 14, 10 }, + [39] = { 46.6, 8.6, 14, 10 }, + [40] = { 46.5, 8.5, 14, 10 }, + [41] = { 46.6, 8.5, 14, 10 }, + [42] = { 46.5, 8.3, 14, 10 }, + [43] = { 46.6, 8.3, 14, 10 }, + [44] = { 46, 8.3, 14, 10 }, + [45] = { 46, 8.2, 14, 10 }, + [46] = { 28.1, 77.4, 33, 10 }, + [47] = { 28.1, 77.3, 33, 10 }, + [48] = { 27.2, 77.1, 33, 10 }, + [49] = { 27.7, 77, 33, 10 }, + [50] = { 28.2, 76.3, 33, 10 }, + [51] = { 28.1, 76.3, 33, 10 }, + [52] = { 28.2, 76.2, 33, 10 }, + [53] = { 28.3, 76, 33, 10 }, + [54] = { 28.3, 75.9, 33, 10 }, + [55] = { 27.9, 74.8, 33, 10 }, + [56] = { 27.9, 74.7, 33, 10 }, + [57] = { 27.8, 74.2, 33, 10 }, + [58] = { 27.7, 74.2, 33, 10 }, + [59] = { 26.6, 73.5, 33, 10 }, + [60] = { 62.8, 68.4, 85, 10 }, + [61] = { 62.7, 68.4, 85, 10 }, + [62] = { 60.9, 68.3, 85, 10 }, + [63] = { 61, 68.3, 85, 10 }, + [64] = { 60.9, 68.2, 85, 10 }, + [65] = { 62.8, 67.8, 85, 10 }, + [66] = { 62.7, 67.8, 85, 10 }, + [67] = { 61, 67.8, 85, 10 }, + [68] = { 60.9, 67.8, 85, 10 }, + [69] = { 60.9, 67.7, 85, 10 }, + [70] = { 61, 67.7, 85, 10 }, + [71] = { 62.4, 67.5, 85, 10 }, + [72] = { 61.3, 67.5, 85, 10 }, + [73] = { 62, 67.5, 85, 10 }, + [74] = { 61.7, 67.5, 85, 10 }, + [75] = { 62.1, 67.5, 85, 10 }, + [76] = { 61.6, 67.5, 85, 10 }, + [77] = { 62.4, 67.4, 85, 10 }, + [78] = { 61.3, 67.4, 85, 10 }, + [79] = { 62.1, 67.4, 85, 10 }, + [80] = { 61.7, 67.4, 85, 10 }, + [81] = { 62, 67.4, 85, 10 }, + [82] = { 61, 67.2, 85, 10 }, + [83] = { 60.9, 67.2, 85, 10 }, + [84] = { 62.8, 67.2, 85, 10 }, + [85] = { 62.7, 67.2, 85, 10 }, + [86] = { 62.8, 67.1, 85, 10 }, + [87] = { 62.7, 67.1, 85, 10 }, + [88] = { 61, 66.6, 85, 10 }, + [89] = { 60.9, 66.6, 85, 10 }, + [90] = { 62.7, 66.6, 85, 10 }, + [91] = { 62.8, 66.6, 85, 10 }, + [92] = { 62.7, 66.5, 85, 10 }, + [93] = { 62.8, 66.5, 85, 10 }, + [94] = { 55.1, 95.6, 141, 10 }, + [95] = { 55.1, 95.5, 141, 10 }, + [96] = { 55, 95, 141, 10 }, + [97] = { 55.3, 94.5, 141, 10 }, + [98] = { 55.2, 94.5, 141, 10 }, + [99] = { 55.2, 93.9, 141, 10 }, + [100] = { 55.3, 93.9, 141, 10 }, + [101] = { 57.7, 93.8, 141, 10 }, + [102] = { 57.7, 93.7, 141, 10 }, + [103] = { 55.5, 93.6, 141, 10 }, + [104] = { 55.5, 93.5, 141, 10 }, + [105] = { 57.2, 92.8, 141, 10 }, + [106] = { 57.7, 92.8, 141, 10 }, + [107] = { 55.9, 92.8, 141, 10 }, + [108] = { 55.9, 92.7, 141, 10 }, + [109] = { 57.7, 92.7, 141, 10 }, + [110] = { 56, 92.7, 141, 10 }, + [111] = { 57.6, 92.7, 141, 10 }, + [112] = { 56, 92.6, 141, 10 }, + [113] = { 57.6, 92.6, 141, 10 }, + [114] = { 40.6, 34.6, 215, 10 }, + [115] = { 40.6, 34.5, 215, 10 }, + [116] = { 37.8, 30.6, 215, 10 }, + [117] = { 37.9, 30.6, 215, 10 }, + [118] = { 37.8, 29.5, 215, 10 }, + [119] = { 37.9, 29.5, 215, 10 }, + [120] = { 37.7, 29.5, 215, 10 }, + [121] = { 37.7, 29.4, 215, 10 }, + [122] = { 37.4, 28.6, 215, 10 }, + [123] = { 37.4, 28.5, 215, 10 }, + [124] = { 38.4, 28, 215, 10 }, + [125] = { 38.5, 28, 215, 10 }, + [126] = { 38.4, 27.9, 215, 10 }, + [127] = { 41.6, 27.6, 215, 10 }, + [128] = { 41.6, 27.5, 215, 10 }, + [129] = { 41.6, 27.3, 215, 10 }, + [130] = { 41.7, 27.3, 215, 10 }, + [131] = { 41.6, 27.1, 215, 10 }, + [132] = { 70.5, 16.1, 1497, 10 }, + [133] = { 70.3, 16.1, 1497, 10 }, + [134] = { 70.4, 16, 1497, 10 }, + [135] = { 70.5, 16, 1497, 10 }, + [136] = { 70.3, 16, 1497, 10 }, + [137] = { 61.8, 15.2, 1497, 10 }, + [138] = { 61.9, 15.2, 1497, 10 }, + [139] = { 61.9, 15.1, 1497, 10 }, + [140] = { 61.8, 15, 1497, 10 }, + [141] = { 61.9, 15, 1497, 10 }, + [142] = { 70.5, 13.2, 1497, 10 }, + [143] = { 70.4, 13.1, 1497, 10 }, + [144] = { 70.5, 13.1, 1497, 10 }, + [145] = { 70.5, 13, 1497, 10 }, + [146] = { 70.4, 12.9, 1497, 10 }, + [147] = { 62, 12.9, 1497, 10 }, + [148] = { 61.8, 12.8, 1497, 10 }, + [149] = { 61.9, 12.7, 1497, 10 }, + [150] = { 61.8, 12.7, 1497, 10 }, + [151] = { 62, 12.7, 1497, 10 }, + [152] = { 68.8, 11.5, 1497, 10 }, + [153] = { 68.6, 11.5, 1497, 10 }, + [154] = { 63.7, 11.5, 1497, 10 }, + [155] = { 63.5, 11.4, 1497, 10 }, + [156] = { 67, 11.4, 1497, 10 }, + [157] = { 65.3, 11.4, 1497, 10 }, + [158] = { 67.2, 11.4, 1497, 10 }, + [159] = { 65.2, 11.4, 1497, 10 }, + [160] = { 68.7, 11.4, 1497, 10 }, + [161] = { 67.1, 11.4, 1497, 10 }, + [162] = { 63.6, 11.4, 1497, 10 }, + [163] = { 65.3, 11.3, 1497, 10 }, + [164] = { 68.8, 11.3, 1497, 10 }, + [165] = { 68.6, 11.3, 1497, 10 }, + [166] = { 63.7, 11.2, 1497, 10 }, + [167] = { 63.5, 11.2, 1497, 10 }, + [168] = { 67.2, 11.2, 1497, 10 }, + [169] = { 65.3, 11.2, 1497, 10 }, + [170] = { 67, 11.2, 1497, 10 }, + [171] = { 65.2, 11.2, 1497, 10 }, + [172] = { 61.9, 10.2, 1497, 10 }, + [173] = { 61.8, 10.2, 1497, 10 }, + [174] = { 61.9, 10.1, 1497, 10 }, + [175] = { 61.8, 10, 1497, 10 }, + [176] = { 70.5, 10, 1497, 10 }, + [177] = { 70.4, 10, 1497, 10 }, + [178] = { 61.9, 10, 1497, 10 }, + [179] = { 70.4, 9.9, 1497, 10 }, + [180] = { 70.4, 9.8, 1497, 10 }, + [181] = { 70.5, 9.8, 1497, 10 }, + [182] = { 62, 7.4, 1497, 10 }, + [183] = { 61.8, 7.4, 1497, 10 }, + [184] = { 61.9, 7.3, 1497, 10 }, + [185] = { 61.8, 7.2, 1497, 10 }, + [186] = { 70.4, 7.2, 1497, 10 }, + [187] = { 70.5, 7.2, 1497, 10 }, + [188] = { 70.4, 7.1, 1497, 10 }, + [189] = { 70.4, 7, 1497, 10 }, + [190] = { 70.5, 7, 1497, 10 }, + [191] = { 59.2, 64.8, 1519, 10 }, + [192] = { 59.1, 64.7, 1519, 10 }, + [193] = { 59.2, 64.7, 1519, 10 }, + [194] = { 59.3, 64.7, 1519, 10 }, + [195] = { 59.1, 64.6, 1519, 10 }, + [196] = { 59.2, 64.6, 1519, 10 }, + [197] = { 59, 64.3, 1519, 10 }, + [198] = { 58.9, 64.3, 1519, 10 }, + [199] = { 58.9, 64.2, 1519, 10 }, + [200] = { 59, 64.2, 1519, 10 }, + [201] = { 58.7, 64, 1519, 10 }, + [202] = { 54.9, 63.9, 1519, 10 }, + [203] = { 58.7, 63.9, 1519, 10 }, + [204] = { 58.6, 63.9, 1519, 10 }, + [205] = { 55, 63.9, 1519, 10 }, + [206] = { 53.4, 63.9, 1519, 10 }, + [207] = { 58.7, 63.8, 1519, 10 }, + [208] = { 53.4, 63.8, 1519, 10 }, + [209] = { 55, 63.8, 1519, 10 }, + [210] = { 54.9, 63.8, 1519, 10 }, + [211] = { 53.3, 63.8, 1519, 10 }, + [212] = { 53.3, 63.7, 1519, 10 }, + [213] = { 56.1, 63.3, 1519, 10 }, + [214] = { 56.2, 63.2, 1519, 10 }, + [215] = { 56, 63.2, 1519, 10 }, + [216] = { 56.1, 63.2, 1519, 10 }, + [217] = { 56.1, 63.1, 1519, 10 }, + [218] = { 54.3, 62.9, 1519, 10 }, + [219] = { 54.4, 62.9, 1519, 10 }, + [220] = { 54.3, 62.8, 1519, 10 }, + [221] = { 54.4, 62.8, 1519, 10 }, + [222] = { 54.4, 62.7, 1519, 10 }, + [223] = { 54.6, 62.6, 1519, 10 }, + [224] = { 54.5, 62.5, 1519, 10 }, + [225] = { 54.7, 62.5, 1519, 10 }, + [226] = { 54.6, 62.5, 1519, 10 }, + [227] = { 54.6, 62.4, 1519, 10 }, + [228] = { 55.9, 61.2, 1519, 10 }, + [229] = { 56, 61.2, 1519, 10 }, + [230] = { 55.9, 61.1, 1519, 10 }, + [231] = { 55.9, 61, 1519, 10 }, + [232] = { 54.6, 60.2, 1519, 10 }, + [233] = { 54.5, 60.2, 1519, 10 }, + [234] = { 54.6, 60.1, 1519, 10 }, + [235] = { 54.5, 60.1, 1519, 10 }, + [236] = { 56, 60.1, 1519, 10 }, + [237] = { 56, 60, 1519, 10 }, + [238] = { 56.1, 60, 1519, 10 }, + [239] = { 55.9, 59.9, 1519, 10 }, + [240] = { 56, 59.9, 1519, 10 }, + [241] = { 13.8, 89.1, 1537, 10 }, + [242] = { 13.7, 89, 1537, 10 }, + [243] = { 14, 89, 1537, 10 }, + [244] = { 13.8, 88.9, 1537, 10 }, + [245] = { 13.9, 88.9, 1537, 10 }, + [246] = { 13.8, 88.7, 1537, 10 }, + [247] = { 51.1, 100, 1637, 10 }, + [248] = { 51, 99.9, 1637, 10 }, + [249] = { 51.1, 99.9, 1637, 10 }, + [250] = { 51.1, 99.3, 1637, 10 }, + [251] = { 51, 99.3, 1637, 10 }, + [252] = { 51, 99.2, 1637, 10 }, + [253] = { 51.1, 99.1, 1637, 10 }, + [254] = { 51, 99.1, 1637, 10 }, + [255] = { 50, 89.3, 1637, 10 }, + [256] = { 50.1, 89.2, 1637, 10 }, + [257] = { 50, 89.1, 1637, 10 }, + [258] = { 50.1, 89.1, 1637, 10 }, + [259] = { 51.4, 89.1, 1637, 10 }, + [260] = { 51.5, 89.1, 1637, 10 }, + [261] = { 51.4, 89, 1637, 10 }, + [262] = { 51.4, 88.9, 1637, 10 }, + [263] = { 51.5, 88.9, 1637, 10 }, + [264] = { 51.8, 82.3, 1637, 10 }, + [265] = { 51.7, 82.3, 1637, 10 }, + [266] = { 51.8, 82.2, 1637, 10 }, + [267] = { 51.7, 82.2, 1637, 10 }, + [268] = { 52.9, 82.1, 1637, 10 }, + [269] = { 53, 82.1, 1637, 10 }, + [270] = { 53, 82, 1637, 10 }, + [271] = { 52.9, 82, 1637, 10 }, + [272] = { 53, 81.2, 1637, 10 }, + [273] = { 52.9, 81.1, 1637, 10 }, + [274] = { 53, 81, 1637, 10 }, + [275] = { 52.9, 81, 1637, 10 }, + [276] = { 51.1, 81, 1637, 10 }, + [277] = { 51, 80.9, 1637, 10 }, + [278] = { 51.1, 80.9, 1637, 10 }, + [279] = { 51, 80.8, 1637, 10 }, + [280] = { 53.3, 87.2, 1638, 10 }, + [281] = { 53.2, 87.1, 1638, 10 }, + [282] = { 53.4, 87, 1638, 10 }, + [283] = { 53.2, 87, 1638, 10 }, + [284] = { 53.3, 86.9, 1638, 10 }, + [285] = { 39.4, 67.8, 1638, 10 }, + [286] = { 39.7, 67.8, 1638, 10 }, + [287] = { 39.5, 67.8, 1638, 10 }, + [288] = { 39.7, 67.7, 1638, 10 }, + [289] = { 39.8, 67.6, 1638, 10 }, + [290] = { 39.5, 67.6, 1638, 10 }, + [291] = { 39.7, 67.6, 1638, 10 }, + [292] = { 39.4, 67.6, 1638, 10 }, + [293] = { 39.3, 62.4, 1638, 10 }, + [294] = { 39.4, 62.3, 1638, 10 }, + [295] = { 39.7, 62.3, 1638, 10 }, + [296] = { 39.3, 62.3, 1638, 10 }, + [297] = { 39.4, 62.2, 1638, 10 }, + [298] = { 39.1, 62.2, 1638, 10 }, + [299] = { 39.3, 62.2, 1638, 10 }, + [300] = { 39, 62.1, 1638, 10 }, + [301] = { 39.2, 62, 1638, 10 }, + [302] = { 39.1, 62, 1638, 10 }, + [303] = { 39, 62, 1638, 10 }, + [304] = { 39.1, 61.9, 1638, 10 }, + [305] = { 38.9, 61.6, 1638, 10 }, + [306] = { 37.4, 57.8, 1638, 10 }, + [307] = { 37.4, 57.7, 1638, 10 }, + [308] = { 37.3, 57.6, 1638, 10 }, + [309] = { 37.4, 57.5, 1638, 10 }, + [310] = { 42.4, 55, 1638, 10 }, + [311] = { 42.6, 55, 1638, 10 }, + [312] = { 42.5, 54.9, 1638, 10 }, + [313] = { 42.4, 54.9, 1638, 10 }, + [314] = { 42.5, 54.8, 1638, 10 }, + [315] = { 42.2, 54.7, 1638, 10 }, + [316] = { 42.3, 54.7, 1638, 10 }, + [317] = { 42.1, 54.6, 1638, 10 }, + [318] = { 42.3, 54.6, 1638, 10 }, + [319] = { 42.2, 54.6, 1638, 10 }, + [320] = { 42.3, 54.5, 1638, 10 }, + [321] = { 58.1, 52.8, 1638, 10 }, + [322] = { 58, 52.7, 1638, 10 }, + [323] = { 58.2, 52.7, 1638, 10 }, + [324] = { 58, 52.6, 1638, 10 }, + [325] = { 58.1, 52.5, 1638, 10 }, + [326] = { 58, 52.5, 1638, 10 }, + [327] = { 58.2, 51.6, 1638, 10 }, + [328] = { 58.3, 51.6, 1638, 10 }, + [329] = { 58.2, 51.5, 1638, 10 }, + [330] = { 58.1, 51.5, 1638, 10 }, + [331] = { 58.3, 51.4, 1638, 10 }, + [332] = { 58.2, 51.4, 1638, 10 }, + [333] = { 58.1, 50.5, 1638, 10 }, + [334] = { 58.2, 50.4, 1638, 10 }, + [335] = { 58, 50.4, 1638, 10 }, + [336] = { 58.1, 50.3, 1638, 10 }, + [337] = { 58.2, 50.3, 1638, 10 }, + }, + }, + [180755] = { + ["coords"] = { + [1] = { 63.6, 22.9, 1519, 120 }, + [2] = { 56.2, 17.9, 1519, 120 }, + [3] = { 66.8, 82, 1537, 120 }, + [4] = { 33.8, 62, 1537, 120 }, + [5] = { 55, 56.3, 1537, 120 }, + [6] = { 18.8, 50.2, 1537, 120 }, + [7] = { 27.6, 12.3, 1537, 120 }, + }, + }, + [180756] = { + ["coords"] = { + [1] = { 66, 83.1, 1537, 120 }, + [2] = { 34.3, 62.8, 1537, 120 }, + [3] = { 72.8, 48.6, 1537, 120 }, + [4] = { 59, 44.3, 1537, 120 }, + [5] = { 27.6, 12.2, 1537, 120 }, + }, + }, + [180757] = { + ["coords"] = { + [1] = { 56.8, 73.2, 1519, 120 }, + [2] = { 52.7, 66, 1519, 120 }, + [3] = { 52.8, 58.2, 1519, 120 }, + [4] = { 71.6, 39.9, 1519, 120 }, + [5] = { 42, 32.5, 1519, 120 }, + }, + }, + [180758] = { + ["coords"] = { + [1] = { 29.2, 57.9, 141, 120 }, + [2] = { 29.6, 56.3, 141, 120 }, + [3] = { 25.5, 55.9, 141, 120 }, + [4] = { 29.6, 54.3, 141, 120 }, + [5] = { 31.5, 49.7, 141, 120 }, + [6] = { 43.6, 33.9, 493, 120 }, + [7] = { 57.6, 52.5, 1657, 120 }, + [8] = { 59.6, 45, 1657, 120 }, + [9] = { 39.9, 42.9, 1657, 120 }, + [10] = { 59.5, 35.6, 1657, 120 }, + [11] = { 68.9, 13.5, 1657, 120 }, + }, + }, + [180759] = { + ["coords"] = { + [1] = { 49.9, 70.5, 1637, 120 }, + [2] = { 53.6, 69, 1637, 120 }, + [3] = { 47.5, 65.2, 1637, 120 }, + [4] = { 53.6, 64.7, 1637, 120 }, + [5] = { 40.8, 37.9, 1637, 120 }, + [6] = { 76.6, 33.6, 1637, 120 }, + }, + }, + [180760] = { + ["coords"] = { + [1] = { 74, 13.2, 130, 120 }, + [2] = { 35.1, 21.2, 215, 120 }, + [3] = { 34.7, 21.1, 215, 120 }, + [4] = { 35.3, 21, 215, 120 }, + [5] = { 88.7, 48.4, 405, 120 }, + [6] = { 88.3, 48.3, 405, 120 }, + [7] = { 89, 48.1, 405, 120 }, + [8] = { 55.3, 90.6, 1497, 120 }, + [9] = { 70, 44.1, 1497, 120 }, + [10] = { 62, 44.1, 1497, 120 }, + [11] = { 68.4, 38.5, 1497, 120 }, + [12] = { 26.1, 21.4, 1638, 120 }, + [13] = { 24.2, 20.8, 1638, 120 }, + [14] = { 27.2, 20.3, 1638, 120 }, + }, + }, + [180761] = { + ["coords"] = { + [1] = { 42.3, 33.4, 215, 120 }, + [2] = { 39.1, 28.7, 215, 120 }, + [3] = { 41.2, 27.7, 215, 120 }, + [4] = { 41.2, 26.9, 215, 120 }, + [5] = { 39.3, 26.5, 215, 120 }, + [6] = { 44.9, 22.9, 215, 120 }, + [7] = { 35.3, 21.7, 215, 120 }, + [8] = { 88.9, 49, 405, 120 }, + [9] = { 48.9, 38.4, 493, 120 }, + [10] = { 61.7, 81.5, 1638, 120 }, + [11] = { 45.7, 58.4, 1638, 120 }, + [12] = { 56.3, 53.6, 1638, 120 }, + [13] = { 56.3, 49.2, 1638, 120 }, + [14] = { 46.6, 47.3, 1638, 120 }, + [15] = { 74.4, 29.8, 1638, 120 }, + [16] = { 26.8, 24.1, 1638, 120 }, + }, + }, + [180762] = { + ["coords"] = { + [1] = { 42.8, 8.8, 14, 120 }, + [2] = { 39, 83.1, 1637, 120 }, + [3] = { 54.2, 69.5, 1637, 120 }, + [4] = { 46.6, 64.3, 1637, 120 }, + [5] = { 40.7, 35.9, 1637, 120 }, + [6] = { 76.2, 32.5, 1637, 120 }, + }, + }, + [180763] = { + ["coords"] = { + [1] = { 30.6, 57.1, 141, 10 }, + [2] = { 30.8, 57.1, 141, 10 }, + [3] = { 31, 57.1, 141, 10 }, + [4] = { 31.1, 57.1, 141, 10 }, + [5] = { 31.3, 57.1, 141, 10 }, + [6] = { 31.4, 57.1, 141, 10 }, + [7] = { 31.6, 57.1, 141, 10 }, + [8] = { 31.8, 57.1, 141, 10 }, + [9] = { 31.9, 57.1, 141, 10 }, + [10] = { 30.3, 56.8, 141, 10 }, + [11] = { 30.3, 56.5, 141, 10 }, + [12] = { 30.3, 56.2, 141, 10 }, + [13] = { 30.3, 56, 141, 10 }, + [14] = { 30.3, 54.8, 141, 10 }, + [15] = { 30.3, 54.5, 141, 10 }, + [16] = { 30.3, 54.2, 141, 10 }, + [17] = { 30.3, 54, 141, 10 }, + [18] = { 30.6, 53.6, 141, 10 }, + [19] = { 30.7, 53.6, 141, 10 }, + [20] = { 30.9, 53.6, 141, 10 }, + [21] = { 31, 53.6, 141, 10 }, + [22] = { 31.2, 53.6, 141, 10 }, + [23] = { 31.3, 53.5, 141, 10 }, + [24] = { 31.5, 53.5, 141, 10 }, + [25] = { 31.8, 53.5, 141, 10 }, + [26] = { 31.7, 53.5, 141, 10 }, + [27] = { 23.8, 49.8, 141, 10 }, + [28] = { 24.4, 49.6, 141, 10 }, + [29] = { 23.7, 49.6, 141, 10 }, + [30] = { 24, 49.5, 141, 10 }, + [31] = { 24, 49.4, 141, 10 }, + [32] = { 23.8, 49.3, 141, 10 }, + [33] = { 37.9, 29.8, 215, 10 }, + [34] = { 37.6, 29.8, 215, 10 }, + [35] = { 38.1, 29.7, 215, 10 }, + [36] = { 38.5, 29.4, 215, 10 }, + [37] = { 37.3, 29.1, 215, 10 }, + [38] = { 37.2, 28.8, 215, 10 }, + [39] = { 37, 28, 215, 10 }, + [40] = { 39, 28, 215, 10 }, + [41] = { 38.3, 27.9, 215, 10 }, + [42] = { 38.1, 27.6, 215, 10 }, + [43] = { 38.1, 27.4, 215, 10 }, + [44] = { 37.6, 27, 215, 10 }, + [45] = { 44.3, 22.6, 215, 10 }, + [46] = { 44.3, 22.5, 215, 10 }, + [47] = { 44.1, 22.4, 215, 10 }, + [48] = { 44.2, 22.3, 215, 10 }, + [49] = { 44.5, 22, 215, 10 }, + [50] = { 44.4, 21.9, 215, 10 }, + [51] = { 45.8, 46.1, 493, 10 }, + [52] = { 46, 46, 493, 10 }, + [53] = { 46.2, 45.9, 493, 10 }, + [54] = { 46.4, 45.2, 493, 10 }, + [55] = { 46.2, 45, 493, 10 }, + [56] = { 46.8, 43.6, 493, 10 }, + [57] = { 46.8, 42.3, 493, 10 }, + [58] = { 52.3, 41.8, 493, 10 }, + [59] = { 52.2, 41.6, 493, 10 }, + [60] = { 52.8, 41.5, 493, 10 }, + [61] = { 48.1, 41.3, 493, 10 }, + [62] = { 52.9, 41.3, 493, 10 }, + [63] = { 49.1, 41.2, 493, 10 }, + [64] = { 50.7, 41.1, 493, 10 }, + [65] = { 52.2, 40.9, 493, 10 }, + [66] = { 47, 40.2, 493, 10 }, + [67] = { 46.9, 38.7, 493, 10 }, + [68] = { 47.9, 37.3, 493, 10 }, + [69] = { 48.8, 37.1, 493, 10 }, + [70] = { 44.3, 36.9, 493, 10 }, + [71] = { 45.3, 36.7, 493, 10 }, + [72] = { 43.3, 35.4, 493, 10 }, + [73] = { 46, 34.9, 493, 10 }, + [74] = { 43.2, 34, 493, 10 }, + [75] = { 52.4, 34, 493, 10 }, + [76] = { 51.1, 34, 493, 10 }, + [77] = { 45.9, 33.5, 493, 10 }, + [78] = { 48.9, 33.3, 493, 10 }, + [79] = { 48.9, 33, 493, 10 }, + [80] = { 48.3, 32.7, 493, 10 }, + [81] = { 48.5, 32.6, 493, 10 }, + [82] = { 67.5, 49, 1497, 10 }, + [83] = { 64.3, 48.8, 1497, 10 }, + [84] = { 69.2, 46.5, 1497, 10 }, + [85] = { 62.7, 46.4, 1497, 10 }, + [86] = { 69.5, 45.5, 1497, 10 }, + [87] = { 62.5, 45.4, 1497, 10 }, + [88] = { 69.5, 42.8, 1497, 10 }, + [89] = { 62.5, 42.7, 1497, 10 }, + [90] = { 69.2, 41.7, 1497, 10 }, + [91] = { 62.7, 41.7, 1497, 10 }, + [92] = { 67.6, 39.3, 1497, 10 }, + [93] = { 64.4, 39.2, 1497, 10 }, + [94] = { 66.3, 37.8, 1497, 10 }, + [95] = { 65.7, 37.7, 1497, 10 }, + [96] = { 66.5, 37.5, 1497, 10 }, + [97] = { 65.5, 37.4, 1497, 10 }, + [98] = { 66.7, 37, 1497, 10 }, + [99] = { 65.4, 37, 1497, 10 }, + [100] = { 58.7, 67.5, 1519, 10 }, + [101] = { 57.3, 66.2, 1519, 10 }, + [102] = { 60.3, 65.4, 1519, 10 }, + [103] = { 53.6, 64.8, 1519, 10 }, + [104] = { 55.2, 64.1, 1519, 10 }, + [105] = { 56.6, 63.3, 1519, 10 }, + [106] = { 57.4, 61.9, 1519, 10 }, + [107] = { 56.9, 59.1, 1519, 10 }, + [108] = { 23.2, 54.7, 1519, 10 }, + [109] = { 23.2, 53.8, 1519, 10 }, + [110] = { 23.4, 50.9, 1519, 10 }, + [111] = { 22.7, 50.9, 1519, 10 }, + [112] = { 23.8, 50.5, 1519, 10 }, + [113] = { 22.4, 50.1, 1519, 10 }, + [114] = { 64.4, 82, 1537, 10 }, + [115] = { 66.5, 79.5, 1537, 10 }, + [116] = { 35.7, 67.7, 1537, 10 }, + [117] = { 31, 60.1, 1537, 10 }, + [118] = { 30.5, 57.8, 1537, 10 }, + [119] = { 67.6, 53.6, 1537, 10 }, + [120] = { 56.3, 53.6, 1537, 10 }, + [121] = { 72.4, 53, 1537, 10 }, + [122] = { 57.3, 51.8, 1537, 10 }, + [123] = { 20.4, 51.2, 1537, 10 }, + [124] = { 72.6, 51, 1537, 10 }, + [125] = { 72.8, 49.4, 1537, 10 }, + [126] = { 73, 47.4, 1537, 10 }, + [127] = { 68.6, 44.7, 1537, 10 }, + [128] = { 59, 43.5, 1537, 10 }, + [129] = { 31.1, 20.6, 1537, 10 }, + [130] = { 28.9, 19.1, 1537, 10 }, + [131] = { 32.5, 18.9, 1537, 10 }, + [132] = { 28.8, 16.4, 1537, 10 }, + [133] = { 31.8, 15.4, 1537, 10 }, + [134] = { 30.2, 14.8, 1537, 10 }, + [135] = { 49.2, 71.5, 1637, 10 }, + [136] = { 50.8, 70.5, 1637, 10 }, + [137] = { 54.5, 70.5, 1637, 10 }, + [138] = { 53, 68.8, 1637, 10 }, + [139] = { 51, 67.8, 1637, 10 }, + [140] = { 53.6, 66, 1637, 10 }, + [141] = { 51.6, 63.8, 1637, 10 }, + [142] = { 52.9, 63.7, 1637, 10 }, + [143] = { 42.7, 35.4, 1637, 10 }, + [144] = { 43.3, 35, 1637, 10 }, + [145] = { 41.9, 33.7, 1637, 10 }, + [146] = { 42.4, 33.2, 1637, 10 }, + [147] = { 41.2, 32.4, 1637, 10 }, + [148] = { 41.7, 31.8, 1637, 10 }, + [149] = { 40.3, 30.9, 1637, 10 }, + [150] = { 41.2, 30, 1637, 10 }, + [151] = { 39.7, 63.9, 1638, 10 }, + [152] = { 38.3, 63.6, 1638, 10 }, + [153] = { 41, 63.2, 1638, 10 }, + [154] = { 42.7, 61.9, 1638, 10 }, + [155] = { 36.8, 60.4, 1638, 10 }, + [156] = { 36.6, 58.9, 1638, 10 }, + [157] = { 35.3, 54.9, 1638, 10 }, + [158] = { 45.4, 54.6, 1638, 10 }, + [159] = { 41.6, 54.2, 1638, 10 }, + [160] = { 40.7, 52.9, 1638, 10 }, + [161] = { 40.8, 51.9, 1638, 10 }, + [162] = { 38.5, 50.1, 1638, 10 }, + [163] = { 71.3, 28.2, 1638, 10 }, + [164] = { 71.5, 27.6, 1638, 10 }, + [165] = { 70.4, 27.5, 1638, 10 }, + [166] = { 70.8, 27, 1638, 10 }, + [167] = { 72.3, 25.1, 1638, 10 }, + [168] = { 71.7, 24.7, 1638, 10 }, + [169] = { 64.5, 49, 1657, 10 }, + [170] = { 65.2, 49, 1657, 10 }, + [171] = { 66.2, 49, 1657, 10 }, + [172] = { 66.8, 49, 1657, 10 }, + [173] = { 67.6, 48.9, 1657, 10 }, + [174] = { 68.3, 48.9, 1657, 10 }, + [175] = { 69.1, 48.9, 1657, 10 }, + [176] = { 70, 48.8, 1657, 10 }, + [177] = { 70.5, 48.8, 1657, 10 }, + [178] = { 63.1, 47.2, 1657, 10 }, + [179] = { 63.1, 45.9, 1657, 10 }, + [180] = { 63.1, 44.7, 1657, 10 }, + [181] = { 63.1, 43.5, 1657, 10 }, + [182] = { 63, 37.6, 1657, 10 }, + [183] = { 63, 36.4, 1657, 10 }, + [184] = { 62.9, 35.1, 1657, 10 }, + [185] = { 62.9, 33.9, 1657, 10 }, + [186] = { 64.6, 31.9, 1657, 10 }, + [187] = { 65.1, 31.9, 1657, 10 }, + [188] = { 65.8, 31.9, 1657, 10 }, + [189] = { 66.5, 31.9, 1657, 10 }, + [190] = { 67.3, 31.8, 1657, 10 }, + [191] = { 68, 31.8, 1657, 10 }, + [192] = { 68.8, 31.8, 1657, 10 }, + [193] = { 70.1, 31.7, 1657, 10 }, + [194] = { 69.5, 31.7, 1657, 10 }, + [195] = { 31.9, 13.7, 1657, 10 }, + [196] = { 34.4, 13, 1657, 10 }, + [197] = { 31, 12.7, 1657, 10 }, + [198] = { 32.7, 12.6, 1657, 10 }, + [199] = { 32.6, 11.9, 1657, 10 }, + [200] = { 31.5, 11.1, 1657, 10 }, + }, + }, + [180764] = { + ["coords"] = { + [1] = { 30.6, 57.1, 141, 10 }, + [2] = { 30.8, 57.1, 141, 10 }, + [3] = { 31, 57.1, 141, 10 }, + [4] = { 31.1, 57.1, 141, 10 }, + [5] = { 31.3, 57.1, 141, 10 }, + [6] = { 31.4, 57.1, 141, 10 }, + [7] = { 31.6, 57.1, 141, 10 }, + [8] = { 31.8, 57.1, 141, 10 }, + [9] = { 31.9, 57.1, 141, 10 }, + [10] = { 30.3, 56.8, 141, 10 }, + [11] = { 30.3, 56.5, 141, 10 }, + [12] = { 30.3, 56.2, 141, 10 }, + [13] = { 30.3, 56, 141, 10 }, + [14] = { 30.3, 54.8, 141, 10 }, + [15] = { 30.3, 54.5, 141, 10 }, + [16] = { 30.3, 54.2, 141, 10 }, + [17] = { 30.3, 54, 141, 10 }, + [18] = { 30.6, 53.6, 141, 10 }, + [19] = { 30.7, 53.6, 141, 10 }, + [20] = { 30.9, 53.6, 141, 10 }, + [21] = { 31, 53.6, 141, 10 }, + [22] = { 31.2, 53.6, 141, 10 }, + [23] = { 31.3, 53.5, 141, 10 }, + [24] = { 31.5, 53.5, 141, 10 }, + [25] = { 31.8, 53.5, 141, 10 }, + [26] = { 31.7, 53.5, 141, 10 }, + [27] = { 23.8, 49.8, 141, 10 }, + [28] = { 24.4, 49.6, 141, 10 }, + [29] = { 23.7, 49.6, 141, 10 }, + [30] = { 24, 49.5, 141, 10 }, + [31] = { 24, 49.4, 141, 10 }, + [32] = { 23.8, 49.3, 141, 10 }, + [33] = { 37.9, 29.8, 215, 10 }, + [34] = { 37.6, 29.8, 215, 10 }, + [35] = { 38.1, 29.7, 215, 10 }, + [36] = { 38.5, 29.4, 215, 10 }, + [37] = { 37.3, 29.1, 215, 10 }, + [38] = { 37.2, 28.8, 215, 10 }, + [39] = { 37, 28, 215, 10 }, + [40] = { 39, 28, 215, 10 }, + [41] = { 38.3, 27.9, 215, 10 }, + [42] = { 38.1, 27.6, 215, 10 }, + [43] = { 38.1, 27.4, 215, 10 }, + [44] = { 37.6, 27, 215, 10 }, + [45] = { 44.3, 22.6, 215, 10 }, + [46] = { 44.3, 22.5, 215, 10 }, + [47] = { 44.1, 22.4, 215, 10 }, + [48] = { 44.2, 22.3, 215, 10 }, + [49] = { 44.5, 22, 215, 10 }, + [50] = { 44.4, 21.9, 215, 10 }, + [51] = { 45.8, 46.1, 493, 10 }, + [52] = { 46, 46, 493, 10 }, + [53] = { 46.2, 45.9, 493, 10 }, + [54] = { 46.4, 45.2, 493, 10 }, + [55] = { 46.2, 45, 493, 10 }, + [56] = { 46.8, 43.6, 493, 10 }, + [57] = { 46.8, 42.3, 493, 10 }, + [58] = { 52.3, 41.8, 493, 10 }, + [59] = { 52.2, 41.6, 493, 10 }, + [60] = { 52.8, 41.5, 493, 10 }, + [61] = { 48.1, 41.3, 493, 10 }, + [62] = { 52.9, 41.3, 493, 10 }, + [63] = { 49.1, 41.2, 493, 10 }, + [64] = { 50.7, 41.1, 493, 10 }, + [65] = { 52.2, 40.9, 493, 10 }, + [66] = { 47, 40.2, 493, 10 }, + [67] = { 46.9, 38.7, 493, 10 }, + [68] = { 47.9, 37.3, 493, 10 }, + [69] = { 48.8, 37.1, 493, 10 }, + [70] = { 44.3, 36.9, 493, 10 }, + [71] = { 45.3, 36.7, 493, 10 }, + [72] = { 43.3, 35.4, 493, 10 }, + [73] = { 46, 34.9, 493, 10 }, + [74] = { 43.2, 34, 493, 10 }, + [75] = { 52.4, 34, 493, 10 }, + [76] = { 51.1, 34, 493, 10 }, + [77] = { 45.9, 33.5, 493, 10 }, + [78] = { 48.9, 33.3, 493, 10 }, + [79] = { 48.9, 33, 493, 10 }, + [80] = { 48.3, 32.7, 493, 10 }, + [81] = { 48.5, 32.6, 493, 10 }, + [82] = { 67.5, 49, 1497, 10 }, + [83] = { 64.3, 48.8, 1497, 10 }, + [84] = { 69.2, 46.5, 1497, 10 }, + [85] = { 62.7, 46.4, 1497, 10 }, + [86] = { 69.5, 45.5, 1497, 10 }, + [87] = { 62.5, 45.4, 1497, 10 }, + [88] = { 69.5, 42.8, 1497, 10 }, + [89] = { 62.5, 42.7, 1497, 10 }, + [90] = { 69.2, 41.7, 1497, 10 }, + [91] = { 62.7, 41.7, 1497, 10 }, + [92] = { 67.6, 39.3, 1497, 10 }, + [93] = { 64.4, 39.2, 1497, 10 }, + [94] = { 66.3, 37.8, 1497, 10 }, + [95] = { 65.7, 37.7, 1497, 10 }, + [96] = { 66.5, 37.5, 1497, 10 }, + [97] = { 65.5, 37.4, 1497, 10 }, + [98] = { 66.7, 37, 1497, 10 }, + [99] = { 65.4, 37, 1497, 10 }, + [100] = { 58.7, 67.5, 1519, 10 }, + [101] = { 57.3, 66.2, 1519, 10 }, + [102] = { 60.3, 65.4, 1519, 10 }, + [103] = { 53.6, 64.8, 1519, 10 }, + [104] = { 55.2, 64.1, 1519, 10 }, + [105] = { 56.6, 63.3, 1519, 10 }, + [106] = { 57.4, 61.9, 1519, 10 }, + [107] = { 56.9, 59.1, 1519, 10 }, + [108] = { 23.2, 54.7, 1519, 10 }, + [109] = { 23.2, 53.8, 1519, 10 }, + [110] = { 23.4, 50.9, 1519, 10 }, + [111] = { 22.7, 50.9, 1519, 10 }, + [112] = { 23.8, 50.5, 1519, 10 }, + [113] = { 22.4, 50.1, 1519, 10 }, + [114] = { 64.4, 82, 1537, 10 }, + [115] = { 66.5, 79.5, 1537, 10 }, + [116] = { 35.7, 67.7, 1537, 10 }, + [117] = { 31, 60.1, 1537, 10 }, + [118] = { 30.5, 57.8, 1537, 10 }, + [119] = { 67.6, 53.6, 1537, 10 }, + [120] = { 56.3, 53.6, 1537, 10 }, + [121] = { 72.4, 53, 1537, 10 }, + [122] = { 57.3, 51.8, 1537, 10 }, + [123] = { 20.4, 51.2, 1537, 10 }, + [124] = { 72.6, 51, 1537, 10 }, + [125] = { 72.8, 49.4, 1537, 10 }, + [126] = { 73, 47.4, 1537, 10 }, + [127] = { 68.6, 44.7, 1537, 10 }, + [128] = { 59, 43.5, 1537, 10 }, + [129] = { 31.1, 20.6, 1537, 10 }, + [130] = { 28.9, 19.1, 1537, 10 }, + [131] = { 32.5, 18.9, 1537, 10 }, + [132] = { 28.8, 16.4, 1537, 10 }, + [133] = { 31.8, 15.4, 1537, 10 }, + [134] = { 30.2, 14.8, 1537, 10 }, + [135] = { 49.2, 71.5, 1637, 10 }, + [136] = { 50.8, 70.5, 1637, 10 }, + [137] = { 54.5, 70.5, 1637, 10 }, + [138] = { 53, 68.8, 1637, 10 }, + [139] = { 51, 67.8, 1637, 10 }, + [140] = { 53.6, 66, 1637, 10 }, + [141] = { 51.6, 63.8, 1637, 10 }, + [142] = { 52.9, 63.7, 1637, 10 }, + [143] = { 42.7, 35.4, 1637, 10 }, + [144] = { 43.3, 35, 1637, 10 }, + [145] = { 41.9, 33.7, 1637, 10 }, + [146] = { 42.4, 33.2, 1637, 10 }, + [147] = { 41.2, 32.4, 1637, 10 }, + [148] = { 41.7, 31.8, 1637, 10 }, + [149] = { 40.3, 30.9, 1637, 10 }, + [150] = { 41.2, 30, 1637, 10 }, + [151] = { 39.7, 63.9, 1638, 10 }, + [152] = { 38.3, 63.6, 1638, 10 }, + [153] = { 41, 63.2, 1638, 10 }, + [154] = { 42.7, 61.9, 1638, 10 }, + [155] = { 36.8, 60.4, 1638, 10 }, + [156] = { 36.6, 58.9, 1638, 10 }, + [157] = { 35.3, 54.9, 1638, 10 }, + [158] = { 45.4, 54.6, 1638, 10 }, + [159] = { 41.6, 54.2, 1638, 10 }, + [160] = { 40.7, 52.9, 1638, 10 }, + [161] = { 40.8, 51.9, 1638, 10 }, + [162] = { 38.5, 50.1, 1638, 10 }, + [163] = { 71.3, 28.2, 1638, 10 }, + [164] = { 71.5, 27.6, 1638, 10 }, + [165] = { 70.4, 27.5, 1638, 10 }, + [166] = { 70.8, 27, 1638, 10 }, + [167] = { 72.3, 25.1, 1638, 10 }, + [168] = { 71.7, 24.7, 1638, 10 }, + [169] = { 64.5, 49, 1657, 10 }, + [170] = { 65.2, 49, 1657, 10 }, + [171] = { 66.2, 49, 1657, 10 }, + [172] = { 66.8, 49, 1657, 10 }, + [173] = { 67.6, 48.9, 1657, 10 }, + [174] = { 68.3, 48.9, 1657, 10 }, + [175] = { 69.1, 48.9, 1657, 10 }, + [176] = { 70, 48.8, 1657, 10 }, + [177] = { 70.5, 48.8, 1657, 10 }, + [178] = { 63.1, 47.2, 1657, 10 }, + [179] = { 63.1, 45.9, 1657, 10 }, + [180] = { 63.1, 44.7, 1657, 10 }, + [181] = { 63.1, 43.5, 1657, 10 }, + [182] = { 63, 37.6, 1657, 10 }, + [183] = { 63, 36.4, 1657, 10 }, + [184] = { 62.9, 35.1, 1657, 10 }, + [185] = { 62.9, 33.9, 1657, 10 }, + [186] = { 64.6, 31.9, 1657, 10 }, + [187] = { 65.1, 31.9, 1657, 10 }, + [188] = { 65.8, 31.9, 1657, 10 }, + [189] = { 66.5, 31.9, 1657, 10 }, + [190] = { 67.3, 31.8, 1657, 10 }, + [191] = { 68, 31.8, 1657, 10 }, + [192] = { 68.8, 31.8, 1657, 10 }, + [193] = { 70.1, 31.7, 1657, 10 }, + [194] = { 69.5, 31.7, 1657, 10 }, + [195] = { 31.9, 13.7, 1657, 10 }, + [196] = { 34.4, 13, 1657, 10 }, + [197] = { 31, 12.7, 1657, 10 }, + [198] = { 32.7, 12.6, 1657, 10 }, + [199] = { 32.6, 11.9, 1657, 10 }, + [200] = { 31.5, 11.1, 1657, 10 }, + }, + }, + [180765] = { + ["coords"] = { + [1] = { 23.5, 64.6, 141, 120 }, + [2] = { 23.7, 64.5, 141, 120 }, + [3] = { 23.9, 64.5, 141, 120 }, + [4] = { 26.8, 64.4, 141, 120 }, + [5] = { 27, 64.4, 141, 120 }, + [6] = { 27.2, 64.4, 141, 120 }, + [7] = { 23.6, 61.8, 141, 120 }, + [8] = { 27, 61.7, 141, 120 }, + [9] = { 25.2, 61.4, 141, 120 }, + [10] = { 24.4, 61.4, 141, 120 }, + [11] = { 25.4, 61.4, 141, 120 }, + [12] = { 26.2, 61.4, 141, 120 }, + [13] = { 24.4, 60, 141, 120 }, + [14] = { 25.2, 60, 141, 120 }, + [15] = { 26.1, 60, 141, 120 }, + [16] = { 25.3, 60, 141, 120 }, + [17] = { 28.2, 58.5, 141, 120 }, + [18] = { 29.1, 58.4, 141, 120 }, + [19] = { 28.5, 58.4, 141, 120 }, + [20] = { 29.1, 58.3, 141, 120 }, + [21] = { 28.5, 58.2, 141, 120 }, + [22] = { 27.9, 58, 141, 120 }, + [23] = { 25.9, 57.9, 141, 120 }, + [24] = { 29.3, 57.9, 141, 120 }, + [25] = { 28.3, 57.9, 141, 120 }, + [26] = { 26.2, 57.5, 141, 120 }, + [27] = { 25.9, 57.4, 141, 120 }, + [28] = { 28.8, 57.3, 141, 120 }, + [29] = { 28.7, 57.2, 141, 120 }, + [30] = { 25.7, 55.8, 141, 120 }, + [31] = { 35.2, 55.5, 141, 120 }, + [32] = { 36.1, 55.5, 141, 120 }, + [33] = { 36, 55.4, 141, 120 }, + [34] = { 35.2, 55.4, 141, 120 }, + [35] = { 25.8, 53.4, 141, 120 }, + [36] = { 36.1, 53.3, 141, 120 }, + [37] = { 35.2, 53.3, 141, 120 }, + [38] = { 36.1, 53.2, 141, 120 }, + [39] = { 35.2, 53.2, 141, 120 }, + [40] = { 26.2, 52.8, 141, 120 }, + [41] = { 25.6, 52.5, 141, 120 }, + [42] = { 24.1, 51.6, 141, 120 }, + [43] = { 24.2, 51.3, 141, 120 }, + [44] = { 31.5, 50.9, 141, 120 }, + [45] = { 23.8, 50.8, 141, 120 }, + [46] = { 24, 50.8, 141, 120 }, + [47] = { 31.2, 50.1, 141, 120 }, + [48] = { 30.8, 49.4, 141, 120 }, + [49] = { 25.6, 49.4, 141, 120 }, + [50] = { 24.2, 49.3, 141, 120 }, + [51] = { 25.4, 49.3, 141, 120 }, + [52] = { 26, 49.2, 141, 120 }, + [53] = { 24.5, 49.2, 141, 120 }, + [54] = { 24.2, 49.1, 141, 120 }, + [55] = { 24.8, 48.9, 141, 120 }, + [56] = { 24.7, 48.9, 141, 120 }, + [57] = { 24.2, 48.6, 141, 120 }, + [58] = { 24.6, 48.5, 141, 120 }, + [59] = { 24.3, 48.5, 141, 120 }, + [60] = { 25.9, 47.9, 141, 120 }, + [61] = { 25.9, 47.7, 141, 120 }, + [62] = { 25.8, 47.6, 141, 120 }, + [63] = { 55, 66.2, 493, 120 }, + [64] = { 55.1, 65.8, 493, 120 }, + [65] = { 46.9, 62.7, 493, 120 }, + [66] = { 47, 62.3, 493, 120 }, + [67] = { 44.1, 61.3, 493, 120 }, + [68] = { 44.2, 60.9, 493, 120 }, + [69] = { 46.1, 47.2, 493, 120 }, + [70] = { 45, 46.8, 493, 120 }, + [71] = { 51.2, 46, 493, 120 }, + [72] = { 52.3, 45.9, 493, 120 }, + [73] = { 46.4, 45.6, 493, 120 }, + [74] = { 51.7, 45.4, 493, 120 }, + [75] = { 50, 43.2, 493, 120 }, + [76] = { 50.5, 43.1, 493, 120 }, + [77] = { 52.6, 42.9, 493, 120 }, + [78] = { 53.1, 42.8, 493, 120 }, + [79] = { 51.5, 42.1, 493, 120 }, + [80] = { 52.6, 41.9, 493, 120 }, + [81] = { 47.9, 41.2, 493, 120 }, + [82] = { 51.4, 41, 493, 120 }, + [83] = { 49.3, 41, 493, 120 }, + [84] = { 47.2, 40.3, 493, 120 }, + [85] = { 47.6, 40.2, 493, 120 }, + [86] = { 47.5, 39.8, 493, 120 }, + [87] = { 48.5, 39.2, 493, 120 }, + [88] = { 47.5, 39, 493, 120 }, + [89] = { 47.1, 38.6, 493, 120 }, + [90] = { 47.4, 38.6, 493, 120 }, + [91] = { 47.7, 37.5, 493, 120 }, + [92] = { 49.1, 37.3, 493, 120 }, + [93] = { 44.2, 36.6, 493, 120 }, + [94] = { 45.3, 36.4, 493, 120 }, + [95] = { 44.1, 36.1, 493, 120 }, + [96] = { 45.2, 35.8, 493, 120 }, + [97] = { 43.4, 35.7, 493, 120 }, + [98] = { 45.9, 35.3, 493, 120 }, + [99] = { 51.7, 35.3, 493, 120 }, + [100] = { 43.3, 33.7, 493, 120 }, + [101] = { 45.7, 33.2, 493, 120 }, + [102] = { 55.9, 31.7, 493, 120 }, + [103] = { 54.5, 31, 493, 120 }, + [104] = { 56.6, 30.7, 493, 120 }, + [105] = { 55.9, 30.5, 493, 120 }, + [106] = { 30.1, 84.7, 1657, 120 }, + [107] = { 31.2, 84.7, 1657, 120 }, + [108] = { 32.3, 84.6, 1657, 120 }, + [109] = { 45.9, 84.1, 1657, 120 }, + [110] = { 47.1, 84.1, 1657, 120 }, + [111] = { 48.3, 84, 1657, 120 }, + [112] = { 30.8, 71.6, 1657, 120 }, + [113] = { 47.1, 71, 1657, 120 }, + [114] = { 38.6, 69.8, 1657, 120 }, + [115] = { 34.7, 69.7, 1657, 120 }, + [116] = { 39.2, 69.4, 1657, 120 }, + [117] = { 43.1, 69.4, 1657, 120 }, + [118] = { 34.6, 63, 1657, 120 }, + [119] = { 38.5, 62.6, 1657, 120 }, + [120] = { 43, 62.6, 1657, 120 }, + [121] = { 39.1, 62.6, 1657, 120 }, + [122] = { 53, 55.4, 1657, 120 }, + [123] = { 57.4, 55.1, 1657, 120 }, + [124] = { 54.2, 55, 1657, 120 }, + [125] = { 57.3, 54.9, 1657, 120 }, + [126] = { 54.3, 54.3, 1657, 120 }, + [127] = { 51.6, 53.3, 1657, 120 }, + [128] = { 41.8, 52.9, 1657, 120 }, + [129] = { 58, 52.7, 1657, 120 }, + [130] = { 58.2, 52.7, 1657, 120 }, + [131] = { 53.2, 52.5, 1657, 120 }, + [132] = { 43.1, 51, 1657, 120 }, + [133] = { 41.7, 50.3, 1657, 120 }, + [134] = { 55.8, 49.7, 1657, 120 }, + [135] = { 55.4, 49.5, 1657, 120 }, + [136] = { 40.6, 42.7, 1657, 120 }, + [137] = { 86.5, 41.1, 1657, 120 }, + [138] = { 90.7, 41.1, 1657, 120 }, + [139] = { 90.6, 40.7, 1657, 120 }, + [140] = { 86.7, 40.7, 1657, 120 }, + [141] = { 41.2, 31.2, 1657, 120 }, + [142] = { 90.7, 30.6, 1657, 120 }, + [143] = { 86.7, 30.6, 1657, 120 }, + [144] = { 90.8, 30.3, 1657, 120 }, + [145] = { 86.6, 30.2, 1657, 120 }, + [146] = { 43.5, 28, 1657, 120 }, + [147] = { 40.4, 26.6, 1657, 120 }, + [148] = { 33.2, 22.3, 1657, 120 }, + [149] = { 33.8, 21.2, 1657, 120 }, + [150] = { 68.7, 18.8, 1657, 120 }, + [151] = { 31.9, 18.6, 1657, 120 }, + [152] = { 32.9, 18.5, 1657, 120 }, + [153] = { 67.2, 15.4, 1657, 120 }, + [154] = { 65.6, 12, 1657, 120 }, + [155] = { 40.4, 11.8, 1657, 120 }, + [156] = { 33.6, 11.6, 1657, 120 }, + [157] = { 39.3, 11.3, 1657, 120 }, + [158] = { 42.2, 11, 1657, 120 }, + [159] = { 34.9, 10.7, 1657, 120 }, + [160] = { 33.8, 10.3, 1657, 120 }, + [161] = { 36.3, 9.6, 1657, 120 }, + [162] = { 36.1, 9.6, 1657, 120 }, + [163] = { 33.5, 8.2, 1657, 120 }, + [164] = { 35.6, 7.5, 1657, 120 }, + [165] = { 34.3, 7.4, 1657, 120 }, + [166] = { 41.9, 4.9, 1657, 120 }, + [167] = { 41.6, 3.5, 1657, 120 }, + [168] = { 41.2, 3, 1657, 120 }, + }, + }, + [180766] = { + ["coords"] = { + [1] = { 23.9, 49.8, 141, 120 }, + [2] = { 24.4, 49.6, 141, 120 }, + [3] = { 23.7, 49.6, 141, 120 }, + [4] = { 24, 49.6, 141, 120 }, + [5] = { 24, 49.4, 141, 120 }, + [6] = { 23.8, 49.2, 141, 120 }, + [7] = { 62.1, 66.9, 493, 120 }, + [8] = { 61.6, 66.9, 493, 120 }, + [9] = { 58.9, 66.8, 493, 120 }, + [10] = { 56.8, 66.7, 493, 120 }, + [11] = { 61.3, 66.1, 493, 120 }, + [12] = { 52.7, 66, 493, 120 }, + [13] = { 59.3, 66, 493, 120 }, + [14] = { 47.6, 65.8, 493, 120 }, + [15] = { 62.7, 65.6, 493, 120 }, + [16] = { 54.2, 65.5, 493, 120 }, + [17] = { 54.3, 65, 493, 120 }, + [18] = { 62.4, 64.8, 493, 120 }, + [19] = { 49.9, 64.6, 493, 120 }, + [20] = { 51.2, 64.5, 493, 120 }, + [21] = { 47.9, 64.4, 493, 120 }, + [22] = { 48.7, 63.1, 493, 120 }, + [23] = { 52.8, 62.8, 493, 120 }, + [24] = { 47.7, 62.5, 493, 120 }, + [25] = { 63.6, 62.3, 493, 120 }, + [26] = { 45.7, 62.1, 493, 120 }, + [27] = { 51.4, 61.6, 493, 120 }, + [28] = { 50.1, 60.9, 493, 120 }, + [29] = { 49.1, 60.6, 493, 120 }, + [30] = { 65.8, 60.5, 493, 120 }, + [31] = { 36.6, 60.4, 493, 120 }, + [32] = { 64.5, 60.4, 493, 120 }, + [33] = { 35.8, 59.7, 493, 120 }, + [34] = { 42.7, 59.7, 493, 120 }, + [35] = { 65.8, 59.7, 493, 120 }, + [36] = { 48.5, 59.6, 493, 120 }, + [37] = { 35.6, 59.4, 493, 120 }, + [38] = { 41.1, 59.2, 493, 120 }, + [39] = { 36.1, 59.2, 493, 120 }, + [40] = { 47.4, 59.1, 493, 120 }, + [41] = { 35.9, 58.9, 493, 120 }, + [42] = { 36.4, 58.8, 493, 120 }, + [43] = { 35.3, 58.7, 493, 120 }, + [44] = { 36.1, 58.5, 493, 120 }, + [45] = { 46.3, 58.3, 493, 120 }, + [46] = { 45.9, 57.3, 493, 120 }, + [47] = { 39.8, 57.2, 493, 120 }, + [48] = { 36.4, 56.7, 493, 120 }, + [49] = { 37.8, 56.2, 493, 120 }, + [50] = { 45.5, 55.2, 493, 120 }, + [51] = { 44.8, 53.6, 493, 120 }, + [52] = { 60.3, 53.4, 493, 120 }, + [53] = { 44.2, 53.1, 493, 120 }, + [54] = { 60.4, 51.6, 493, 120 }, + [55] = { 43.4, 50.8, 493, 120 }, + [56] = { 60.9, 50.4, 493, 120 }, + [57] = { 60.2, 49.2, 493, 120 }, + [58] = { 44.7, 48.9, 493, 120 }, + [59] = { 45.2, 48.5, 493, 120 }, + [60] = { 45.8, 48.3, 493, 120 }, + [61] = { 46.9, 47.9, 493, 120 }, + [62] = { 46.3, 47.7, 493, 120 }, + [63] = { 51, 47.6, 493, 120 }, + [64] = { 52.4, 47, 493, 120 }, + [65] = { 47.1, 47, 493, 120 }, + [66] = { 49.7, 45.1, 493, 120 }, + [67] = { 61.5, 45, 493, 120 }, + [68] = { 48.8, 44.9, 493, 120 }, + [69] = { 54.6, 44.4, 493, 120 }, + [70] = { 59.4, 40.9, 493, 120 }, + [71] = { 57.7, 39.1, 493, 120 }, + [72] = { 54, 35.2, 493, 120 }, + [73] = { 53.6, 35.1, 493, 120 }, + [74] = { 53.5, 35.1, 493, 120 }, + [75] = { 23.2, 54.7, 1519, 120 }, + [76] = { 23.2, 53.8, 1519, 120 }, + [77] = { 23.4, 50.9, 1519, 120 }, + [78] = { 22.7, 50.9, 1519, 120 }, + [79] = { 23.8, 50.5, 1519, 120 }, + [80] = { 22.4, 50, 1519, 120 }, + [81] = { 31.1, 20.6, 1537, 120 }, + [82] = { 28.9, 19, 1537, 120 }, + [83] = { 32.4, 18.9, 1537, 120 }, + [84] = { 28.8, 16.4, 1537, 120 }, + [85] = { 31.8, 15.4, 1537, 120 }, + [86] = { 30.1, 14.8, 1537, 120 }, + [87] = { 32, 13.7, 1657, 120 }, + [88] = { 34.4, 12.9, 1657, 120 }, + [89] = { 31, 12.7, 1657, 120 }, + [90] = { 32.7, 12.6, 1657, 120 }, + [91] = { 32.6, 11.9, 1657, 120 }, + [92] = { 31.5, 11.1, 1657, 120 }, + }, + }, + [180767] = { + ["coords"] = { + [1] = { 42, 33.6, 215, 120 }, + [2] = { 39.3, 30.6, 215, 120 }, + [3] = { 39, 29.6, 215, 120 }, + [4] = { 42, 29.4, 215, 120 }, + [5] = { 41.7, 28.4, 215, 120 }, + [6] = { 37.2, 27, 215, 120 }, + [7] = { 41.8, 26.3, 215, 120 }, + [8] = { 36.7, 26.1, 215, 120 }, + [9] = { 42.2, 25.4, 215, 120 }, + [10] = { 38.5, 24.8, 215, 120 }, + [11] = { 37.7, 24.4, 215, 120 }, + [12] = { 40.2, 24.3, 215, 120 }, + [13] = { 41, 24.1, 215, 120 }, + [14] = { 55, 66.2, 493, 120 }, + [15] = { 55.1, 65.8, 493, 120 }, + [16] = { 46.9, 62.7, 493, 120 }, + [17] = { 47, 62.3, 493, 120 }, + [18] = { 44.1, 61.3, 493, 120 }, + [19] = { 44.2, 60.9, 493, 120 }, + [20] = { 46.1, 47.2, 493, 120 }, + [21] = { 45, 46.8, 493, 120 }, + [22] = { 51.2, 46, 493, 120 }, + [23] = { 52.3, 45.9, 493, 120 }, + [24] = { 46.4, 45.6, 493, 120 }, + [25] = { 51.7, 45.4, 493, 120 }, + [26] = { 50, 43.2, 493, 120 }, + [27] = { 50.5, 43.1, 493, 120 }, + [28] = { 52.6, 42.9, 493, 120 }, + [29] = { 53.1, 42.8, 493, 120 }, + [30] = { 51.5, 42.1, 493, 120 }, + [31] = { 52.6, 41.9, 493, 120 }, + [32] = { 47.9, 41.2, 493, 120 }, + [33] = { 51.4, 41, 493, 120 }, + [34] = { 49.3, 41, 493, 120 }, + [35] = { 47.2, 40.3, 493, 120 }, + [36] = { 47.6, 40.2, 493, 120 }, + [37] = { 47.5, 39.8, 493, 120 }, + [38] = { 48.5, 39.2, 493, 120 }, + [39] = { 47.5, 39, 493, 120 }, + [40] = { 47.1, 38.6, 493, 120 }, + [41] = { 47.4, 38.6, 493, 120 }, + [42] = { 47.7, 37.5, 493, 120 }, + [43] = { 49.1, 37.3, 493, 120 }, + [44] = { 44.2, 36.6, 493, 120 }, + [45] = { 45.3, 36.4, 493, 120 }, + [46] = { 44.1, 36.1, 493, 120 }, + [47] = { 45.2, 35.8, 493, 120 }, + [48] = { 43.4, 35.7, 493, 120 }, + [49] = { 45.9, 35.3, 493, 120 }, + [50] = { 51.7, 35.3, 493, 120 }, + [51] = { 43.3, 33.7, 493, 120 }, + [52] = { 45.7, 33.2, 493, 120 }, + [53] = { 55.9, 31.7, 493, 120 }, + [54] = { 54.5, 31, 493, 120 }, + [55] = { 56.6, 30.7, 493, 120 }, + [56] = { 55.9, 30.5, 493, 120 }, + [57] = { 59.9, 82.7, 1638, 120 }, + [58] = { 46.7, 67.9, 1638, 120 }, + [59] = { 45.1, 62.5, 1638, 120 }, + [60] = { 60.1, 61.9, 1638, 120 }, + [61] = { 58.5, 56.6, 1638, 120 }, + [62] = { 36.2, 50.2, 1638, 120 }, + [63] = { 58.9, 46.5, 1638, 120 }, + [64] = { 33.9, 45.4, 1638, 120 }, + [65] = { 61.2, 41.9, 1638, 120 }, + [66] = { 42.6, 39, 1638, 120 }, + [67] = { 38.9, 37, 1638, 120 }, + [68] = { 51.2, 36.9, 1638, 120 }, + [69] = { 55.1, 35.7, 1638, 120 }, + }, + }, + [180768] = { + ["coords"] = { + [1] = { 44.8, 23.1, 215, 120 }, + [2] = { 44.7, 22.8, 215, 120 }, + [3] = { 44.3, 22.6, 215, 120 }, + [4] = { 44.1, 22.5, 215, 120 }, + [5] = { 44.3, 22.4, 215, 120 }, + [6] = { 44.2, 22.3, 215, 120 }, + [7] = { 44.5, 22, 215, 120 }, + [8] = { 44.4, 21.9, 215, 120 }, + [9] = { 34.4, 21.7, 215, 120 }, + [10] = { 34.8, 21.5, 215, 120 }, + [11] = { 34, 21.4, 215, 120 }, + [12] = { 35, 20.9, 215, 120 }, + [13] = { 33.8, 20.7, 215, 120 }, + [14] = { 34, 20.2, 215, 120 }, + [15] = { 34.5, 20, 215, 120 }, + [16] = { 88, 49, 405, 120 }, + [17] = { 88.4, 48.7, 405, 120 }, + [18] = { 87.4, 48.6, 405, 120 }, + [19] = { 88.6, 48.1, 405, 120 }, + [20] = { 87.3, 47.8, 405, 120 }, + [21] = { 87.5, 47.3, 405, 120 }, + [22] = { 88, 47, 405, 120 }, + [23] = { 32.4, 65, 493, 120 }, + [24] = { 32.1, 63.3, 493, 120 }, + [25] = { 53.6, 63.1, 493, 120 }, + [26] = { 32.9, 62.3, 493, 120 }, + [27] = { 52.2, 62.1, 493, 120 }, + [28] = { 32.7, 61.2, 493, 120 }, + [29] = { 50.5, 61.2, 493, 120 }, + [30] = { 49.7, 60.8, 493, 120 }, + [31] = { 48.7, 60.3, 493, 120 }, + [32] = { 47.5, 60.3, 493, 120 }, + [33] = { 33.8, 60.2, 493, 120 }, + [34] = { 37, 60, 493, 120 }, + [35] = { 37.6, 59.1, 493, 120 }, + [36] = { 46.8, 58.9, 493, 120 }, + [37] = { 36.5, 58.4, 493, 120 }, + [38] = { 35.1, 58.4, 493, 120 }, + [39] = { 38.1, 58.1, 493, 120 }, + [40] = { 36.9, 58, 493, 120 }, + [41] = { 36.5, 57.9, 493, 120 }, + [42] = { 36.7, 57.8, 493, 120 }, + [43] = { 35.7, 57.6, 493, 120 }, + [44] = { 37.2, 57.3, 493, 120 }, + [45] = { 37, 57.1, 493, 120 }, + [46] = { 45.9, 56.6, 493, 120 }, + [47] = { 37.3, 56.4, 493, 120 }, + [48] = { 37, 56.4, 493, 120 }, + [49] = { 45.9, 55.8, 493, 120 }, + [50] = { 36.1, 55, 493, 120 }, + [51] = { 61.5, 54.8, 493, 120 }, + [52] = { 45.1, 54.2, 493, 120 }, + [53] = { 60.3, 52.4, 493, 120 }, + [54] = { 37.1, 51.9, 493, 120 }, + [55] = { 43.8, 51.8, 493, 120 }, + [56] = { 36.6, 51.6, 493, 120 }, + [57] = { 37.2, 51.1, 493, 120 }, + [58] = { 36.6, 50.6, 493, 120 }, + [59] = { 45.3, 49.8, 493, 120 }, + [60] = { 41.9, 49.1, 493, 120 }, + [61] = { 43.5, 48.9, 493, 120 }, + [62] = { 46.8, 48.9, 493, 120 }, + [63] = { 51.4, 48.5, 493, 120 }, + [64] = { 38.3, 48.5, 493, 120 }, + [65] = { 59.9, 48, 493, 120 }, + [66] = { 37.8, 47.9, 493, 120 }, + [67] = { 39, 47.1, 493, 120 }, + [68] = { 38.6, 46.5, 493, 120 }, + [69] = { 60.9, 46.3, 493, 120 }, + [70] = { 48.4, 45.7, 493, 120 }, + [71] = { 47.1, 45.3, 493, 120 }, + [72] = { 40.1, 44.6, 493, 120 }, + [73] = { 39.6, 44.3, 493, 120 }, + [74] = { 39.9, 42.1, 493, 120 }, + [75] = { 40.6, 42, 493, 120 }, + [76] = { 60, 40.2, 493, 120 }, + [77] = { 59.5, 39.9, 493, 120 }, + [78] = { 53.5, 39.9, 493, 120 }, + [79] = { 40.5, 38.9, 493, 120 }, + [80] = { 56.8, 38.8, 493, 120 }, + [81] = { 40, 38.8, 493, 120 }, + [82] = { 40.7, 36.5, 493, 120 }, + [83] = { 40.3, 36.1, 493, 120 }, + [84] = { 41.8, 35.6, 493, 120 }, + [85] = { 41.7, 34.8, 493, 120 }, + [86] = { 66.3, 37.9, 1497, 120 }, + [87] = { 65.7, 37.9, 1497, 120 }, + [88] = { 66.6, 37.5, 1497, 120 }, + [89] = { 65.4, 37.5, 1497, 120 }, + [90] = { 66.7, 37, 1497, 120 }, + [91] = { 65.3, 37, 1497, 120 }, + [92] = { 42.7, 35.5, 1637, 120 }, + [93] = { 43.3, 35.1, 1637, 120 }, + [94] = { 41.8, 33.8, 1637, 120 }, + [95] = { 42.4, 33.1, 1637, 120 }, + [96] = { 41.1, 32.4, 1637, 120 }, + [97] = { 41.7, 31.7, 1637, 120 }, + [98] = { 40.2, 30.9, 1637, 120 }, + [99] = { 41.2, 30, 1637, 120 }, + [100] = { 73.7, 30.8, 1638, 120 }, + [101] = { 73.5, 29.1, 1638, 120 }, + [102] = { 71.3, 28.3, 1638, 120 }, + [103] = { 70.3, 27.6, 1638, 120 }, + [104] = { 71.6, 27.5, 1638, 120 }, + [105] = { 70.7, 26.8, 1638, 120 }, + [106] = { 72.3, 25.2, 1638, 120 }, + [107] = { 71.6, 24.7, 1638, 120 }, + [108] = { 22.8, 24, 1638, 120 }, + [109] = { 24.7, 22.8, 1638, 120 }, + [110] = { 20.4, 22.3, 1638, 120 }, + [111] = { 25.6, 20, 1638, 120 }, + [112] = { 19.9, 19, 1638, 120 }, + [113] = { 20.7, 16.6, 1638, 120 }, + [114] = { 22.9, 15.3, 1638, 120 }, + }, + }, + [180769] = { + ["coords"] = { + [1] = { 47.3, 6.5, 14, 120 }, + [2] = { 61.9, 68.4, 493, 120 }, + [3] = { 44.9, 45.1, 493, 120 }, + [4] = { 35.3, 42.5, 493, 120 }, + [5] = { 36.6, 42.2, 493, 120 }, + [6] = { 51.5, 41.5, 493, 120 }, + [7] = { 35.1, 40.4, 493, 120 }, + [8] = { 49.1, 40.2, 493, 120 }, + [9] = { 36.3, 39.8, 493, 120 }, + [10] = { 49, 38.1, 493, 120 }, + [11] = { 43.8, 33.8, 493, 120 }, + [12] = { 45.2, 33.5, 493, 120 }, + [13] = { 66.7, 50.4, 1497, 120 }, + [14] = { 65.2, 50.3, 1497, 120 }, + [15] = { 67, 50.2, 1497, 120 }, + [16] = { 64.9, 50.2, 1497, 120 }, + [17] = { 68.2, 49.4, 1497, 120 }, + [18] = { 63.7, 49.3, 1497, 120 }, + [19] = { 68.4, 49.1, 1497, 120 }, + [20] = { 63.4, 49.1, 1497, 120 }, + [21] = { 69.3, 47.8, 1497, 120 }, + [22] = { 62.6, 47.6, 1497, 120 }, + [23] = { 69.5, 47.4, 1497, 120 }, + [24] = { 62.4, 47.3, 1497, 120 }, + [25] = { 70, 45.6, 1497, 120 }, + [26] = { 61.8, 45.5, 1497, 120 }, + [27] = { 70.1, 45.1, 1497, 120 }, + [28] = { 61.8, 45, 1497, 120 }, + [29] = { 70.2, 43.1, 1497, 120 }, + [30] = { 61.8, 43, 1497, 120 }, + [31] = { 70.1, 42.7, 1497, 120 }, + [32] = { 61.9, 42.6, 1497, 120 }, + [33] = { 69.5, 40.9, 1497, 120 }, + [34] = { 62.4, 40.9, 1497, 120 }, + [35] = { 69.4, 40.5, 1497, 120 }, + [36] = { 62.6, 40.4, 1497, 120 }, + [37] = { 68.4, 39.1, 1497, 120 }, + [38] = { 63.5, 39.1, 1497, 120 }, + [39] = { 68.2, 38.8, 1497, 120 }, + [40] = { 63.8, 38.8, 1497, 120 }, + [41] = { 68.2, 38.3, 1497, 120 }, + [42] = { 67.1, 38, 1497, 120 }, + [43] = { 64.9, 38, 1497, 120 }, + [44] = { 67.3, 37.9, 1497, 120 }, + [45] = { 65.2, 37.9, 1497, 120 }, + [46] = { 66.8, 37.8, 1497, 120 }, + [47] = { 68.7, 36.2, 1497, 120 }, + [48] = { 68, 35.8, 1497, 120 }, + [49] = { 68.6, 35.8, 1497, 120 }, + [50] = { 68.3, 35.6, 1497, 120 }, + [51] = { 40.6, 86.8, 1519, 120 }, + [52] = { 40.9, 86.7, 1519, 120 }, + [53] = { 29.7, 75, 1519, 120 }, + [54] = { 29.5, 74.8, 1519, 120 }, + [55] = { 29.4, 74.5, 1519, 120 }, + [56] = { 29, 73.7, 1519, 120 }, + [57] = { 28.9, 73.4, 1519, 120 }, + [58] = { 28.7, 73.1, 1519, 120 }, + [59] = { 56.8, 65.2, 1519, 120 }, + [60] = { 53.2, 64.4, 1519, 120 }, + [61] = { 53, 64, 1519, 120 }, + [62] = { 43.9, 63.9, 1519, 120 }, + [63] = { 56.4, 63.6, 1519, 120 }, + [64] = { 43.4, 62.7, 1519, 120 }, + [65] = { 58, 62.4, 1519, 120 }, + [66] = { 54.1, 62.4, 1519, 120 }, + [67] = { 54.4, 62.1, 1519, 120 }, + [68] = { 57.8, 62.1, 1519, 120 }, + [69] = { 57.1, 58.8, 1519, 120 }, + [70] = { 56.4, 57.6, 1519, 120 }, + [71] = { 39.1, 77.6, 1537, 120 }, + [72] = { 38.6, 77.3, 1537, 120 }, + [73] = { 38.2, 77, 1537, 120 }, + [74] = { 37.7, 76.7, 1537, 120 }, + [75] = { 37.3, 76.5, 1537, 120 }, + [76] = { 36.9, 76.2, 1537, 120 }, + [77] = { 27.8, 74.2, 1537, 120 }, + [78] = { 27.5, 73.7, 1537, 120 }, + [79] = { 27.2, 73.1, 1537, 120 }, + [80] = { 26.9, 72.6, 1537, 120 }, + [81] = { 26.6, 72.1, 1537, 120 }, + [82] = { 26.3, 71.6, 1537, 120 }, + [83] = { 26.1, 71.1, 1537, 120 }, + [84] = { 25.8, 70.7, 1537, 120 }, + [85] = { 25.5, 70.2, 1537, 120 }, + [86] = { 25.2, 69.7, 1537, 120 }, + [87] = { 25, 69.2, 1537, 120 }, + [88] = { 21.3, 57.2, 1537, 120 }, + [89] = { 21.2, 56.5, 1537, 120 }, + [90] = { 21.1, 55.8, 1537, 120 }, + [91] = { 21, 55.1, 1537, 120 }, + [92] = { 59, 45.7, 1537, 120 }, + [93] = { 59, 45, 1537, 120 }, + [94] = { 59, 44.3, 1537, 120 }, + [95] = { 59, 43.6, 1537, 120 }, + [96] = { 52, 29.9, 1537, 120 }, + [97] = { 51.6, 29.8, 1537, 120 }, + [98] = { 51.2, 29.7, 1537, 120 }, + [99] = { 50.8, 29.6, 1537, 120 }, + [100] = { 50.3, 29.5, 1537, 120 }, + [101] = { 49.9, 29.4, 1537, 120 }, + [102] = { 49.5, 29.3, 1537, 120 }, + [103] = { 49.1, 29.2, 1537, 120 }, + [104] = { 21.8, 20.3, 1537, 120 }, + [105] = { 55.8, 74.3, 1637, 120 }, + [106] = { 55.1, 73.4, 1637, 120 }, + [107] = { 55.2, 72.4, 1637, 120 }, + [108] = { 55.3, 72, 1637, 120 }, + [109] = { 55.4, 71.4, 1637, 120 }, + [110] = { 50.4, 70.5, 1637, 120 }, + [111] = { 50.7, 69.9, 1637, 120 }, + [112] = { 54, 69.6, 1637, 120 }, + [113] = { 53.4, 67.9, 1637, 120 }, + [114] = { 53.9, 65.3, 1637, 120 }, + [115] = { 56.8, 64.5, 1637, 120 }, + [116] = { 57.1, 63.9, 1637, 120 }, + [117] = { 52.1, 63.5, 1637, 120 }, + [118] = { 53.1, 63.3, 1637, 120 }, + [119] = { 57.1, 63, 1637, 120 }, + [120] = { 50.9, 62, 1637, 120 }, + [121] = { 54.1, 61.9, 1637, 120 }, + }, + }, + [180770] = { + ["coords"] = { + [1] = { 47.2, 6.5, 14, 120 }, + [2] = { 36.7, 58.3, 493, 120 }, + [3] = { 36.3, 58.2, 493, 120 }, + [4] = { 51.7, 45.2, 493, 120 }, + [5] = { 51.6, 43.8, 493, 120 }, + [6] = { 47.4, 42.9, 493, 120 }, + [7] = { 46.2, 42.9, 493, 120 }, + [8] = { 48.6, 41.1, 493, 120 }, + [9] = { 48.3, 37.4, 493, 120 }, + [10] = { 43.4, 34.7, 493, 120 }, + [11] = { 51.7, 34.6, 493, 120 }, + [12] = { 45.8, 34.3, 493, 120 }, + [13] = { 66, 45.2, 1497, 120 }, + [14] = { 66.7, 44.1, 1497, 120 }, + [15] = { 65.2, 44.1, 1497, 120 }, + [16] = { 66, 42.9, 1497, 120 }, + [17] = { 68.5, 37.2, 1497, 120 }, + [18] = { 67.6, 36.8, 1497, 120 }, + [19] = { 41.1, 90, 1519, 120 }, + [20] = { 40.1, 87.2, 1519, 120 }, + [21] = { 60.7, 65.8, 1519, 120 }, + [22] = { 59.9, 64.9, 1519, 120 }, + [23] = { 56.8, 64.2, 1519, 120 }, + [24] = { 43.8, 63.1, 1519, 120 }, + [25] = { 56.6, 58.4, 1519, 120 }, + [26] = { 48.9, 54.1, 1519, 120 }, + [27] = { 39.4, 47.6, 1519, 120 }, + [28] = { 73.2, 43.4, 1519, 120 }, + [29] = { 65.3, 42.9, 1519, 120 }, + [30] = { 52.9, 42, 1519, 120 }, + [31] = { 69.7, 41.2, 1519, 120 }, + [32] = { 74.3, 36.8, 1519, 120 }, + [33] = { 57.8, 31.8, 1519, 120 }, + [34] = { 65.4, 21.6, 1519, 120 }, + [35] = { 66, 20.9, 1519, 120 }, + [36] = { 64.8, 20.5, 1519, 120 }, + [37] = { 65.4, 19.9, 1519, 120 }, + [38] = { 66.2, 19.7, 1519, 120 }, + [39] = { 42.1, 85.3, 1537, 120 }, + [40] = { 52.1, 84.7, 1537, 120 }, + [41] = { 54.5, 56.6, 1537, 120 }, + [42] = { 56.9, 52.8, 1537, 120 }, + [43] = { 25.1, 37.2, 1537, 120 }, + [44] = { 40.9, 35.7, 1537, 120 }, + [45] = { 41.8, 34.1, 1537, 120 }, + [46] = { 20.3, 23.1, 1537, 120 }, + [47] = { 21.2, 21.5, 1537, 120 }, + [48] = { 55.4, 74.1, 1637, 120 }, + [49] = { 55.6, 74, 1637, 120 }, + [50] = { 55.3, 73.4, 1637, 120 }, + [51] = { 55, 73.2, 1637, 120 }, + [52] = { 55.2, 72, 1637, 120 }, + [53] = { 55.6, 71.4, 1637, 120 }, + [54] = { 49.5, 71.1, 1637, 120 }, + [55] = { 55.6, 71, 1637, 120 }, + [56] = { 49, 71, 1637, 120 }, + [57] = { 49.9, 70.8, 1637, 120 }, + [58] = { 48.6, 70.5, 1637, 120 }, + [59] = { 48.2, 70, 1637, 120 }, + [60] = { 54.2, 69.9, 1637, 120 }, + [61] = { 55, 69.6, 1637, 120 }, + [62] = { 50.8, 69.2, 1637, 120 }, + [63] = { 53.6, 69.1, 1637, 120 }, + [64] = { 50.9, 68.4, 1637, 120 }, + [65] = { 53.3, 68.2, 1637, 120 }, + [66] = { 53.5, 67.1, 1637, 120 }, + [67] = { 54.2, 66.5, 1637, 120 }, + [68] = { 54.4, 66, 1637, 120 }, + [69] = { 55.5, 65.9, 1637, 120 }, + [70] = { 55, 65.8, 1637, 120 }, + [71] = { 54.5, 65.7, 1637, 120 }, + [72] = { 53.6, 65.3, 1637, 120 }, + [73] = { 56.5, 65.1, 1637, 120 }, + [74] = { 53.6, 64.7, 1637, 120 }, + [75] = { 53.4, 64.6, 1637, 120 }, + [76] = { 57, 64.2, 1637, 120 }, + [77] = { 53.4, 64, 1637, 120 }, + [78] = { 52.6, 63.4, 1637, 120 }, + [79] = { 51.5, 63.3, 1637, 120 }, + [80] = { 53.5, 63.2, 1637, 120 }, + [81] = { 53.5, 62.7, 1637, 120 }, + [82] = { 51.2, 62.7, 1637, 120 }, + [83] = { 57, 62.6, 1637, 120 }, + [84] = { 53.8, 62.6, 1637, 120 }, + [85] = { 56.7, 61.9, 1637, 120 }, + [86] = { 55.1, 61, 1637, 120 }, + [87] = { 55.9, 61, 1637, 120 }, + }, + }, + [180771] = { + ["coords"] = { + [1] = { 42.3, 8.8, 14, 120 }, + [2] = { 42.2, 8.8, 14, 120 }, + [3] = { 42.3, 8.6, 14, 120 }, + [4] = { 45.6, 7.4, 14, 120 }, + [5] = { 45.6, 7.3, 14, 120 }, + [6] = { 45.5, 7.3, 14, 120 }, + [7] = { 7.5, 64.6, 28, 120 }, + [8] = { 31.3, 55.9, 141, 120 }, + [9] = { 31.4, 55.9, 141, 120 }, + [10] = { 31.7, 55.9, 141, 120 }, + [11] = { 31.6, 55.9, 141, 120 }, + [12] = { 31.5, 55.9, 141, 120 }, + [13] = { 31.5, 54.9, 141, 120 }, + [14] = { 31.3, 54.9, 141, 120 }, + [15] = { 31.2, 54.9, 141, 120 }, + [16] = { 31.6, 54.9, 141, 120 }, + [17] = { 31.7, 54.9, 141, 120 }, + [18] = { 41, 27.5, 215, 120 }, + [19] = { 41, 27.4, 215, 120 }, + [20] = { 41, 27.2, 215, 120 }, + [21] = { 41, 27.1, 215, 120 }, + [22] = { 36.5, 60.2, 493, 120 }, + [23] = { 37.2, 60, 493, 120 }, + [24] = { 36, 59.9, 493, 120 }, + [25] = { 36.8, 59.7, 493, 120 }, + [26] = { 37.4, 59.6, 493, 120 }, + [27] = { 36.1, 59.5, 493, 120 }, + [28] = { 36.6, 59.4, 493, 120 }, + [29] = { 37.4, 59.3, 493, 120 }, + [30] = { 36.4, 59.3, 493, 120 }, + [31] = { 35.5, 59.1, 493, 120 }, + [32] = { 37, 59.1, 493, 120 }, + [33] = { 37.3, 58.9, 493, 120 }, + [34] = { 37.6, 58.7, 493, 120 }, + [35] = { 36, 58.7, 493, 120 }, + [36] = { 35.5, 58.7, 493, 120 }, + [37] = { 37.2, 58.5, 493, 120 }, + [38] = { 35.7, 58.4, 493, 120 }, + [39] = { 37.9, 58.4, 493, 120 }, + [40] = { 35.9, 58.4, 493, 120 }, + [41] = { 37.9, 58.1, 493, 120 }, + [42] = { 37.2, 57.9, 493, 120 }, + [43] = { 35.7, 57.9, 493, 120 }, + [44] = { 36.3, 57.9, 493, 120 }, + [45] = { 36.4, 57.6, 493, 120 }, + [46] = { 37.2, 57.6, 493, 120 }, + [47] = { 36.2, 57.4, 493, 120 }, + [48] = { 35.9, 57.3, 493, 120 }, + [49] = { 36.4, 57.1, 493, 120 }, + [50] = { 36.5, 56.8, 493, 120 }, + [51] = { 36.9, 56.8, 493, 120 }, + [52] = { 36.7, 56.7, 493, 120 }, + [53] = { 44.2, 47.2, 493, 120 }, + [54] = { 45, 42.6, 493, 120 }, + [55] = { 44.6, 38.6, 493, 120 }, + [56] = { 45.3, 38.5, 493, 120 }, + [57] = { 50.9, 37.2, 493, 120 }, + [58] = { 54.3, 36.9, 493, 120 }, + [59] = { 54.2, 36.9, 493, 120 }, + [60] = { 54.1, 36.9, 493, 120 }, + [61] = { 53.9, 36.8, 493, 120 }, + [62] = { 53.8, 36.8, 493, 120 }, + [63] = { 53.6, 36.8, 493, 120 }, + [64] = { 53.5, 36.7, 493, 120 }, + [65] = { 53.4, 36.7, 493, 120 }, + [66] = { 53.2, 36.7, 493, 120 }, + [67] = { 53.1, 36.6, 493, 120 }, + [68] = { 42.6, 35.4, 493, 120 }, + [69] = { 47.7, 34.7, 493, 120 }, + [70] = { 48.8, 34.5, 493, 120 }, + [71] = { 42.5, 34.3, 493, 120 }, + [72] = { 47.9, 33.3, 493, 120 }, + [73] = { 74.3, 67.1, 1497, 120 }, + [74] = { 57.4, 66.9, 1497, 120 }, + [75] = { 74.9, 66.6, 1497, 120 }, + [76] = { 56.8, 66.4, 1497, 120 }, + [77] = { 73.2, 64.3, 1497, 120 }, + [78] = { 58.4, 64.1, 1497, 120 }, + [79] = { 73.9, 63.8, 1497, 120 }, + [80] = { 57.8, 63.6, 1497, 120 }, + [81] = { 80.8, 57.9, 1497, 120 }, + [82] = { 51, 57.5, 1497, 120 }, + [83] = { 81.2, 57, 1497, 120 }, + [84] = { 50.6, 56.5, 1497, 120 }, + [85] = { 79, 56.3, 1497, 120 }, + [86] = { 52.8, 56, 1497, 120 }, + [87] = { 79.4, 55.4, 1497, 120 }, + [88] = { 52.4, 55, 1497, 120 }, + [89] = { 77.2, 28.4, 1497, 120 }, + [90] = { 76.7, 27.6, 1497, 120 }, + [91] = { 78.7, 26.1, 1497, 120 }, + [92] = { 56.4, 26.1, 1497, 120 }, + [93] = { 57, 25.4, 1497, 120 }, + [94] = { 78.2, 25.3, 1497, 120 }, + [95] = { 55.1, 23.6, 1497, 120 }, + [96] = { 55.7, 23, 1497, 120 }, + [97] = { 31.1, 64.2, 1519, 120 }, + [98] = { 31.2, 64.1, 1519, 120 }, + [99] = { 31.3, 63.9, 1519, 120 }, + [100] = { 31.4, 63.8, 1519, 120 }, + [101] = { 45.4, 57.9, 1519, 120 }, + [102] = { 45.3, 57.7, 1519, 120 }, + [103] = { 45.3, 57.5, 1519, 120 }, + [104] = { 45.3, 57.3, 1519, 120 }, + [105] = { 63.9, 52.5, 1519, 120 }, + [106] = { 63.8, 52.4, 1519, 120 }, + [107] = { 63.7, 52.3, 1519, 120 }, + [108] = { 63.6, 52.2, 1519, 120 }, + [109] = { 55.6, 34.2, 1519, 120 }, + [110] = { 55.6, 34, 1519, 120 }, + [111] = { 55.6, 33.9, 1519, 120 }, + [112] = { 55.5, 33.7, 1519, 120 }, + [113] = { 65.4, 26.3, 1537, 120 }, + [114] = { 65.1, 25.6, 1537, 120 }, + [115] = { 64.7, 24.8, 1537, 120 }, + [116] = { 64.3, 24.1, 1537, 120 }, + [117] = { 63.9, 23.4, 1537, 120 }, + [118] = { 63.5, 22.7, 1537, 120 }, + [119] = { 36.9, 82.9, 1637, 120 }, + [120] = { 36.4, 82.9, 1637, 120 }, + [121] = { 36.8, 82, 1637, 120 }, + [122] = { 49.6, 77.5, 1637, 120 }, + [123] = { 49.4, 77.5, 1637, 120 }, + [124] = { 49.2, 77.4, 1637, 120 }, + [125] = { 49.1, 77.3, 1637, 120 }, + [126] = { 48.9, 77.2, 1637, 120 }, + [127] = { 69.6, 30.4, 1637, 120 }, + [128] = { 69.7, 30.2, 1637, 120 }, + [129] = { 69.9, 30, 1637, 120 }, + [130] = { 54.9, 52.4, 1638, 120 }, + [131] = { 54.9, 52.2, 1638, 120 }, + [132] = { 54.9, 52, 1638, 120 }, + [133] = { 55, 51.8, 1638, 120 }, + [134] = { 55, 50.9, 1638, 120 }, + [135] = { 55, 50.7, 1638, 120 }, + [136] = { 55, 50.5, 1638, 120 }, + [137] = { 55, 50.3, 1638, 120 }, + [138] = { 67.7, 43.2, 1657, 120 }, + [139] = { 68.1, 43.2, 1657, 120 }, + [140] = { 69.8, 43.2, 1657, 120 }, + [141] = { 69.4, 43.2, 1657, 120 }, + [142] = { 68.5, 43.2, 1657, 120 }, + [143] = { 68.9, 43.2, 1657, 120 }, + [144] = { 68.9, 38.5, 1657, 120 }, + [145] = { 68.5, 38.5, 1657, 120 }, + [146] = { 68, 38.5, 1657, 120 }, + [147] = { 67.4, 38.5, 1657, 120 }, + [148] = { 69.3, 38.5, 1657, 120 }, + [149] = { 69.8, 38.5, 1657, 120 }, + }, + }, + [180772] = { + ["coords"] = { + [1] = { 42.3, 8.8, 14, 120 }, + [2] = { 42.2, 8.8, 14, 120 }, + [3] = { 42.3, 8.6, 14, 120 }, + [4] = { 45.6, 7.4, 14, 120 }, + [5] = { 45.6, 7.3, 14, 120 }, + [6] = { 45.5, 7.3, 14, 120 }, + [7] = { 7.5, 64.6, 28, 120 }, + [8] = { 31.3, 55.9, 141, 120 }, + [9] = { 31.4, 55.9, 141, 120 }, + [10] = { 31.7, 55.9, 141, 120 }, + [11] = { 31.6, 55.9, 141, 120 }, + [12] = { 31.5, 55.9, 141, 120 }, + [13] = { 31.5, 54.9, 141, 120 }, + [14] = { 31.3, 54.9, 141, 120 }, + [15] = { 31.2, 54.9, 141, 120 }, + [16] = { 31.6, 54.9, 141, 120 }, + [17] = { 31.7, 54.9, 141, 120 }, + [18] = { 41, 27.5, 215, 120 }, + [19] = { 41, 27.4, 215, 120 }, + [20] = { 41, 27.2, 215, 120 }, + [21] = { 41, 27.1, 215, 120 }, + [22] = { 36.5, 60.2, 493, 120 }, + [23] = { 37.2, 60, 493, 120 }, + [24] = { 36, 59.9, 493, 120 }, + [25] = { 36.8, 59.7, 493, 120 }, + [26] = { 37.4, 59.6, 493, 120 }, + [27] = { 36.1, 59.5, 493, 120 }, + [28] = { 36.6, 59.4, 493, 120 }, + [29] = { 37.4, 59.3, 493, 120 }, + [30] = { 36.4, 59.3, 493, 120 }, + [31] = { 35.5, 59.1, 493, 120 }, + [32] = { 37, 59.1, 493, 120 }, + [33] = { 37.3, 58.9, 493, 120 }, + [34] = { 37.6, 58.7, 493, 120 }, + [35] = { 36, 58.7, 493, 120 }, + [36] = { 35.5, 58.7, 493, 120 }, + [37] = { 37.2, 58.5, 493, 120 }, + [38] = { 35.7, 58.4, 493, 120 }, + [39] = { 37.9, 58.4, 493, 120 }, + [40] = { 35.9, 58.4, 493, 120 }, + [41] = { 37.9, 58.1, 493, 120 }, + [42] = { 37.2, 57.9, 493, 120 }, + [43] = { 35.7, 57.9, 493, 120 }, + [44] = { 36.3, 57.9, 493, 120 }, + [45] = { 36.4, 57.6, 493, 120 }, + [46] = { 37.2, 57.6, 493, 120 }, + [47] = { 36.2, 57.4, 493, 120 }, + [48] = { 35.9, 57.3, 493, 120 }, + [49] = { 36.4, 57.1, 493, 120 }, + [50] = { 36.5, 56.8, 493, 120 }, + [51] = { 36.9, 56.8, 493, 120 }, + [52] = { 36.7, 56.7, 493, 120 }, + [53] = { 44.2, 47.2, 493, 120 }, + [54] = { 45, 42.6, 493, 120 }, + [55] = { 44.6, 38.6, 493, 120 }, + [56] = { 45.3, 38.5, 493, 120 }, + [57] = { 50.9, 37.2, 493, 120 }, + [58] = { 54.3, 36.9, 493, 120 }, + [59] = { 54.2, 36.9, 493, 120 }, + [60] = { 54.1, 36.9, 493, 120 }, + [61] = { 53.9, 36.8, 493, 120 }, + [62] = { 53.8, 36.8, 493, 120 }, + [63] = { 53.6, 36.8, 493, 120 }, + [64] = { 53.5, 36.7, 493, 120 }, + [65] = { 53.4, 36.7, 493, 120 }, + [66] = { 53.2, 36.7, 493, 120 }, + [67] = { 53.1, 36.6, 493, 120 }, + [68] = { 42.6, 35.4, 493, 120 }, + [69] = { 47.7, 34.7, 493, 120 }, + [70] = { 48.8, 34.5, 493, 120 }, + [71] = { 42.5, 34.3, 493, 120 }, + [72] = { 47.9, 33.3, 493, 120 }, + [73] = { 74.3, 67.1, 1497, 120 }, + [74] = { 57.4, 66.9, 1497, 120 }, + [75] = { 74.9, 66.6, 1497, 120 }, + [76] = { 56.8, 66.4, 1497, 120 }, + [77] = { 73.2, 64.3, 1497, 120 }, + [78] = { 58.4, 64.1, 1497, 120 }, + [79] = { 73.9, 63.8, 1497, 120 }, + [80] = { 57.8, 63.6, 1497, 120 }, + [81] = { 80.8, 57.9, 1497, 120 }, + [82] = { 51, 57.5, 1497, 120 }, + [83] = { 81.2, 57, 1497, 120 }, + [84] = { 50.6, 56.5, 1497, 120 }, + [85] = { 79, 56.3, 1497, 120 }, + [86] = { 52.8, 56, 1497, 120 }, + [87] = { 79.4, 55.4, 1497, 120 }, + [88] = { 52.4, 55, 1497, 120 }, + [89] = { 77.2, 28.4, 1497, 120 }, + [90] = { 76.7, 27.6, 1497, 120 }, + [91] = { 78.7, 26.1, 1497, 120 }, + [92] = { 56.4, 26.1, 1497, 120 }, + [93] = { 57, 25.4, 1497, 120 }, + [94] = { 78.2, 25.3, 1497, 120 }, + [95] = { 55.1, 23.6, 1497, 120 }, + [96] = { 55.7, 23, 1497, 120 }, + [97] = { 31.1, 64.2, 1519, 120 }, + [98] = { 31.2, 64.1, 1519, 120 }, + [99] = { 31.3, 63.9, 1519, 120 }, + [100] = { 31.4, 63.8, 1519, 120 }, + [101] = { 45.4, 57.9, 1519, 120 }, + [102] = { 45.3, 57.7, 1519, 120 }, + [103] = { 45.3, 57.5, 1519, 120 }, + [104] = { 45.3, 57.3, 1519, 120 }, + [105] = { 63.9, 52.5, 1519, 120 }, + [106] = { 63.8, 52.4, 1519, 120 }, + [107] = { 63.7, 52.3, 1519, 120 }, + [108] = { 63.6, 52.2, 1519, 120 }, + [109] = { 55.6, 34.2, 1519, 120 }, + [110] = { 55.6, 34, 1519, 120 }, + [111] = { 55.6, 33.9, 1519, 120 }, + [112] = { 55.5, 33.7, 1519, 120 }, + [113] = { 65.4, 26.3, 1537, 120 }, + [114] = { 65.1, 25.6, 1537, 120 }, + [115] = { 64.7, 24.8, 1537, 120 }, + [116] = { 64.3, 24.1, 1537, 120 }, + [117] = { 63.9, 23.4, 1537, 120 }, + [118] = { 63.5, 22.7, 1537, 120 }, + [119] = { 36.9, 82.9, 1637, 120 }, + [120] = { 36.4, 82.9, 1637, 120 }, + [121] = { 36.8, 82, 1637, 120 }, + [122] = { 49.6, 77.5, 1637, 120 }, + [123] = { 49.4, 77.5, 1637, 120 }, + [124] = { 49.2, 77.4, 1637, 120 }, + [125] = { 49.1, 77.3, 1637, 120 }, + [126] = { 48.9, 77.2, 1637, 120 }, + [127] = { 69.6, 30.4, 1637, 120 }, + [128] = { 69.7, 30.2, 1637, 120 }, + [129] = { 69.9, 30, 1637, 120 }, + [130] = { 54.9, 52.4, 1638, 120 }, + [131] = { 54.9, 52.2, 1638, 120 }, + [132] = { 54.9, 52, 1638, 120 }, + [133] = { 55, 51.8, 1638, 120 }, + [134] = { 55, 50.9, 1638, 120 }, + [135] = { 55, 50.7, 1638, 120 }, + [136] = { 55, 50.5, 1638, 120 }, + [137] = { 55, 50.3, 1638, 120 }, + [138] = { 67.7, 43.2, 1657, 120 }, + [139] = { 68.1, 43.2, 1657, 120 }, + [140] = { 69.8, 43.2, 1657, 120 }, + [141] = { 69.4, 43.2, 1657, 120 }, + [142] = { 68.5, 43.2, 1657, 120 }, + [143] = { 68.9, 43.2, 1657, 120 }, + [144] = { 68.9, 38.5, 1657, 120 }, + [145] = { 68.5, 38.5, 1657, 120 }, + [146] = { 68, 38.5, 1657, 120 }, + [147] = { 67.4, 38.5, 1657, 120 }, + [148] = { 69.3, 38.5, 1657, 120 }, + [149] = { 69.8, 38.5, 1657, 120 }, + }, + }, + [180773] = { + ["coords"] = { + [1] = { 53.5, 34.8, 1, 120 }, + [2] = { 25.3, 62.5, 141, 120 }, + [3] = { 25.6, 55.9, 141, 120 }, + [4] = { 25.6, 55.7, 141, 120 }, + [5] = { 29, 55.4, 141, 120 }, + [6] = { 30.6, 55.4, 141, 120 }, + [7] = { 36.1, 54.4, 141, 120 }, + [8] = { 65.9, 60.3, 493, 120 }, + [9] = { 66, 59.9, 493, 120 }, + [10] = { 29.2, 74.1, 1519, 120 }, + [11] = { 58.5, 67.7, 1519, 120 }, + [12] = { 59.2, 64.8, 1519, 120 }, + [13] = { 53.4, 64.2, 1519, 120 }, + [14] = { 39.4, 63.9, 1519, 120 }, + [15] = { 48.8, 54, 1519, 120 }, + [16] = { 68.1, 48.4, 1519, 120 }, + [17] = { 68.9, 29, 1519, 120 }, + [18] = { 52.3, 13.5, 1519, 120 }, + [19] = { 15.3, 85.6, 1537, 120 }, + [20] = { 66.7, 83.1, 1537, 120 }, + [21] = { 30.2, 81.6, 1537, 120 }, + [22] = { 33.8, 64.9, 1537, 120 }, + [23] = { 20.8, 64.4, 1537, 120 }, + [24] = { 32.4, 62.3, 1537, 120 }, + [25] = { 58.7, 13.6, 1537, 120 }, + [26] = { 28, 13, 1537, 120 }, + [27] = { 39.6, 12.3, 1537, 120 }, + [28] = { 39, 74.8, 1657, 120 }, + [29] = { 40.5, 42.9, 1657, 120 }, + [30] = { 40.6, 42.2, 1657, 120 }, + [31] = { 56.6, 40.8, 1657, 120 }, + [32] = { 64.2, 40.5, 1657, 120 }, + [33] = { 90.7, 35.7, 1657, 120 }, + }, + }, + [180774] = { + ["coords"] = { + [1] = { 53.5, 34.8, 1, 120 }, + [2] = { 25.3, 62.5, 141, 120 }, + [3] = { 25.6, 55.9, 141, 120 }, + [4] = { 25.6, 55.7, 141, 120 }, + [5] = { 29, 55.4, 141, 120 }, + [6] = { 30.6, 55.4, 141, 120 }, + [7] = { 36.1, 54.4, 141, 120 }, + [8] = { 35.2, 54.3, 141, 120 }, + [9] = { 29.2, 74.1, 1519, 120 }, + [10] = { 58.5, 67.7, 1519, 120 }, + [11] = { 59.2, 64.8, 1519, 120 }, + [12] = { 53.4, 64.2, 1519, 120 }, + [13] = { 39.4, 63.9, 1519, 120 }, + [14] = { 48.8, 54, 1519, 120 }, + [15] = { 68.1, 48.4, 1519, 120 }, + [16] = { 68.9, 29, 1519, 120 }, + [17] = { 52.3, 13.5, 1519, 120 }, + [18] = { 15.3, 85.6, 1537, 120 }, + [19] = { 66.7, 83.1, 1537, 120 }, + [20] = { 30.2, 81.6, 1537, 120 }, + [21] = { 33.8, 64.9, 1537, 120 }, + [22] = { 20.8, 64.4, 1537, 120 }, + [23] = { 32.4, 62.3, 1537, 120 }, + [24] = { 58.7, 13.6, 1537, 120 }, + [25] = { 28, 13, 1537, 120 }, + [26] = { 39.6, 12.3, 1537, 120 }, + [27] = { 39, 74.8, 1657, 120 }, + [28] = { 40.5, 42.9, 1657, 120 }, + [29] = { 40.6, 42.2, 1657, 120 }, + [30] = { 56.6, 40.8, 1657, 120 }, + [31] = { 64.2, 40.5, 1657, 120 }, + [32] = { 90.7, 35.7, 1657, 120 }, + [33] = { 86.6, 35.6, 1657, 120 }, + }, + }, + [180775] = { + ["coords"] = { + [1] = { 45.3, 12.1, 14, 120 }, + [2] = { 45.8, 12, 14, 120 }, + [3] = { 42, 33.5, 215, 120 }, + [4] = { 38.9, 29.3, 215, 120 }, + [5] = { 41.6, 28.1, 215, 120 }, + [6] = { 37.3, 27.3, 215, 120 }, + [7] = { 41.7, 26.5, 215, 120 }, + [8] = { 38.6, 24.9, 215, 120 }, + [9] = { 67.3, 46.2, 1497, 120 }, + [10] = { 64.6, 46.1, 1497, 120 }, + [11] = { 67.3, 42.1, 1497, 120 }, + [12] = { 64.6, 42.1, 1497, 120 }, + [13] = { 48.1, 95.2, 1637, 120 }, + [14] = { 50, 94.9, 1637, 120 }, + [15] = { 48.7, 63.8, 1637, 120 }, + [16] = { 51.9, 57.8, 1637, 120 }, + [17] = { 60.1, 82, 1638, 120 }, + [18] = { 44.7, 61.4, 1638, 120 }, + [19] = { 58.1, 55.5, 1638, 120 }, + [20] = { 36.7, 51.2, 1638, 120 }, + [21] = { 58.3, 47.6, 1638, 120 }, + [22] = { 43.3, 39.4, 1638, 120 }, + }, + }, + [180776] = { + ["coords"] = { + [1] = { 45.3, 12.1, 14, 120 }, + [2] = { 45.8, 12, 14, 120 }, + [3] = { 42, 33.5, 215, 120 }, + [4] = { 38.9, 29.3, 215, 120 }, + [5] = { 41.6, 28.1, 215, 120 }, + [6] = { 37.3, 27.3, 215, 120 }, + [7] = { 41.7, 26.5, 215, 120 }, + [8] = { 38.6, 24.9, 215, 120 }, + [9] = { 67.3, 46.2, 1497, 120 }, + [10] = { 64.6, 46.1, 1497, 120 }, + [11] = { 67.3, 42.1, 1497, 120 }, + [12] = { 64.6, 42.1, 1497, 120 }, + [13] = { 48.1, 95.2, 1637, 120 }, + [14] = { 50, 94.9, 1637, 120 }, + [15] = { 48.7, 63.8, 1637, 120 }, + [16] = { 51.9, 57.8, 1637, 120 }, + [17] = { 60.1, 82, 1638, 120 }, + [18] = { 44.7, 61.4, 1638, 120 }, + [19] = { 58.1, 55.5, 1638, 120 }, + [20] = { 36.7, 51.2, 1638, 120 }, + [21] = { 58.3, 47.6, 1638, 120 }, + [22] = { 43.3, 39.4, 1638, 120 }, + }, + }, + [180777] = { + ["coords"] = { + [1] = { 24.4, 49.6, 141, 120 }, + [2] = { 24, 49.6, 141, 120 }, + [3] = { 24, 49.4, 141, 120 }, + [4] = { 24.4, 49.4, 141, 120 }, + [5] = { 35.6, 64.6, 493, 120 }, + [6] = { 35.1, 64.5, 493, 120 }, + [7] = { 63.6, 62.4, 493, 120 }, + [8] = { 63.7, 62.3, 493, 120 }, + [9] = { 64.6, 60.5, 493, 120 }, + [10] = { 64.6, 60.4, 493, 120 }, + [11] = { 36.6, 60.4, 493, 120 }, + [12] = { 35.8, 59.8, 493, 120 }, + [13] = { 35.5, 59.4, 493, 120 }, + [14] = { 36.1, 59.2, 493, 120 }, + [15] = { 35.9, 58.9, 493, 120 }, + [16] = { 36.4, 58.8, 493, 120 }, + [17] = { 35.3, 58.7, 493, 120 }, + [18] = { 36.1, 58.5, 493, 120 }, + [19] = { 36.4, 56.7, 493, 120 }, + [20] = { 50.6, 36.8, 493, 120 }, + [21] = { 42.5, 36, 493, 120 }, + [22] = { 54.1, 35.3, 493, 120 }, + [23] = { 53.5, 35.1, 493, 120 }, + [24] = { 49.2, 34.5, 493, 120 }, + [25] = { 42.1, 33.8, 493, 120 }, + [26] = { 47.1, 32.4, 493, 120 }, + [27] = { 49, 64, 1519, 120 }, + [28] = { 33.2, 63.9, 1519, 120 }, + [29] = { 33.8, 63.4, 1519, 120 }, + [30] = { 48.7, 62.9, 1519, 120 }, + [31] = { 43.5, 62, 1519, 120 }, + [32] = { 36.2, 62, 1519, 120 }, + [33] = { 52.3, 61.7, 1519, 120 }, + [34] = { 39.9, 61.1, 1519, 120 }, + [35] = { 51.8, 60.2, 1519, 120 }, + [36] = { 41.9, 60.1, 1519, 120 }, + [37] = { 32.2, 58.8, 1519, 120 }, + [38] = { 32.9, 58, 1519, 120 }, + [39] = { 23.2, 53.5, 1519, 120 }, + [40] = { 27.6, 51.9, 1519, 120 }, + [41] = { 22.7, 51.1, 1519, 120 }, + [42] = { 29.7, 20.3, 1537, 120 }, + [43] = { 32.5, 16.8, 1537, 120 }, + [44] = { 28.8, 16.8, 1537, 120 }, + [45] = { 30.4, 14.7, 1537, 120 }, + [46] = { 34.4, 13, 1657, 120 }, + [47] = { 32.7, 12.7, 1657, 120 }, + [48] = { 32.6, 11.7, 1657, 120 }, + [49] = { 34.7, 11.7, 1657, 120 }, + }, + }, + [180778] = { + ["coords"] = { + [1] = { 36.3, 30.9, 215, 120 }, + [2] = { 36.5, 30.8, 215, 120 }, + [3] = { 35.8, 29.3, 215, 120 }, + [4] = { 36, 29, 215, 120 }, + [5] = { 44.3, 22.6, 215, 120 }, + [6] = { 44.1, 22.4, 215, 120 }, + [7] = { 41.3, 22.2, 215, 120 }, + [8] = { 41.2, 21.9, 215, 120 }, + [9] = { 40.1, 21.6, 215, 120 }, + [10] = { 40.3, 21.4, 215, 120 }, + [11] = { 35.5, 62.3, 493, 120 }, + [12] = { 35, 62.3, 493, 120 }, + [13] = { 37, 60, 493, 120 }, + [14] = { 37.5, 59.2, 493, 120 }, + [15] = { 38.1, 58.1, 493, 120 }, + [16] = { 36.9, 58.1, 493, 120 }, + [17] = { 36.7, 57.7, 493, 120 }, + [18] = { 35.7, 57.6, 493, 120 }, + [19] = { 37.3, 57.4, 493, 120 }, + [20] = { 36.9, 57, 493, 120 }, + [21] = { 37.3, 56.4, 493, 120 }, + [22] = { 36.9, 56.4, 493, 120 }, + [23] = { 52.3, 39.7, 493, 120 }, + [24] = { 43.1, 35.9, 493, 120 }, + [25] = { 47.3, 35.2, 493, 120 }, + [26] = { 42.9, 33.7, 493, 120 }, + [27] = { 49.3, 33.3, 493, 120 }, + [28] = { 66.5, 36.2, 1497, 120 }, + [29] = { 65.6, 36.1, 1497, 120 }, + [30] = { 42.8, 35.4, 1637, 120 }, + [31] = { 43.2, 35.1, 1637, 120 }, + [32] = { 41.9, 33.7, 1637, 120 }, + [33] = { 42.3, 33.2, 1637, 120 }, + [34] = { 41.2, 32.3, 1637, 120 }, + [35] = { 41.6, 31.8, 1637, 120 }, + [36] = { 31.9, 69.1, 1638, 120 }, + [37] = { 32.9, 68.7, 1638, 120 }, + [38] = { 29.4, 61.3, 1638, 120 }, + [39] = { 30.4, 59.8, 1638, 120 }, + [40] = { 71.3, 28.1, 1638, 120 }, + [41] = { 70.5, 27.5, 1638, 120 }, + }, + }, + [180780] = { + ["coords"] = { + [1] = { 64.8, 65.3, 1537, 0 }, + }, + }, + [180781] = { + ["coords"] = { + [1] = { 64.8, 65.3, 1537, 0 }, + }, + }, + [180782] = { + ["coords"] = { + [1] = { 64.8, 65.3, 1537, 0 }, + }, + }, + [180783] = { + ["coords"] = { + [1] = { 64.8, 65.3, 1537, 0 }, + }, + }, + [180784] = { + ["coords"] = { + [1] = { 64.8, 65.3, 1537, 0 }, + }, + }, + [180788] = { + ["coords"] = { + [1] = { 27.4, 92.9, 1377, 900 }, + }, + }, + [180793] = { + ["coords"] = { + [1] = { 33.9, 65.9, 1537, 300 }, + [2] = { 52.3, 69.1, 1637, 300 }, + }, + }, + [180794] = { + ["coords"] = {}, + }, + [180795] = { + ["coords"] = {}, + }, + [180796] = { + ["coords"] = { + [1] = { 53.2, 35.7, 1, 180 }, + [2] = { 9.3, 58.3, 11, 180 }, + [3] = { 50, 13.5, 14, 180 }, + [4] = { 26.7, 73.5, 33, 180 }, + [5] = { 61.1, 59.3, 85, 180 }, + [6] = { 53.6, 28.1, 440, 180 }, + [7] = { 62.5, 60.8, 1519, 180 }, + }, + }, + [180797] = { + ["coords"] = { + [1] = { 53.2, 35.7, 1, 180 }, + [2] = { 9.3, 58.3, 11, 180 }, + [3] = { 50, 13.5, 14, 180 }, + [4] = { 26.7, 73.5, 33, 180 }, + [5] = { 61.1, 59.3, 85, 180 }, + [6] = { 53.6, 28.1, 440, 180 }, + [7] = { 62.6, 60.8, 1519, 180 }, + }, + }, + [180798] = { + ["coords"] = { + [1] = { 53.1, 35.8, 1, 180 }, + [2] = { 9.4, 58.4, 11, 180 }, + [3] = { 50.1, 13.5, 14, 180 }, + [4] = { 26.7, 73.5, 33, 180 }, + [5] = { 61.1, 59.3, 85, 180 }, + [6] = { 53.6, 28, 440, 180 }, + [7] = { 62.6, 61, 1519, 180 }, + }, + }, + [180799] = { + ["coords"] = { + [1] = { 53.2, 35.8, 1, 180 }, + [2] = { 9.4, 58.3, 11, 180 }, + [3] = { 50.1, 13.5, 14, 180 }, + [4] = { 26.8, 73.5, 33, 180 }, + [5] = { 61.2, 59.3, 85, 180 }, + [6] = { 53.6, 28.1, 440, 180 }, + [7] = { 62.6, 61, 1519, 180 }, + }, + }, + [180800] = { + ["coords"] = { + [1] = { 72, 69.8, 1537, 0 }, + }, + }, + [180801] = { + ["coords"] = { + [1] = { 72.2, 69.4, 1537, 0 }, + }, + }, + [180802] = { + ["coords"] = { + [1] = { 72.3, 69.4, 1537, 0 }, + }, + }, + [180803] = { + ["coords"] = { + [1] = { 72.3, 69.4, 1537, 0 }, + }, + }, + [180804] = { + ["coords"] = { + [1] = { 72.3, 69.4, 1537, 0 }, + }, + }, + [180805] = { + ["coords"] = { + [1] = { 72.3, 69.4, 1537, 0 }, + }, + }, + [180806] = { + ["coords"] = { + [1] = { 72, 69.7, 1537, 0 }, + }, + }, + [180807] = { + ["coords"] = { + [1] = { 72, 69.8, 1537, 0 }, + }, + }, + [180808] = { + ["coords"] = { + [1] = { 72, 69.8, 1537, 0 }, + }, + }, + [180809] = { + ["coords"] = { + [1] = { 72, 69.8, 1537, 0 }, + }, + }, + [180810] = { + ["coords"] = { + [1] = { 44.7, 74.4, 17, 25 }, + [2] = { 45.4, 63.3, 17, 25 }, + [3] = { 31, 44.5, 357, 25 }, + [4] = { 76.1, 84.3, 400, 25 }, + [5] = { 47.9, 54.1, 400, 25 }, + [6] = { 33.5, 55.8, 440, 25 }, + [7] = { 48.8, 33.6, 440, 25 }, + [8] = { 51.5, 28.3, 440, 25 }, + [9] = { 53.5, 72.9, 490, 25 }, + [10] = { 22.9, 82.2, 1377, 25 }, + [11] = { 55.1, 58.2, 1377, 25 }, + [12] = { 25.9, 43.8, 1377, 25 }, + }, + }, + [180811] = { + ["coords"] = { + [1] = { 44.7, 74.4, 17, 25 }, + [2] = { 45.4, 63.3, 17, 25 }, + [3] = { 31, 44.5, 357, 25 }, + [4] = { 76.1, 84.3, 400, 25 }, + [5] = { 47.9, 54.1, 400, 25 }, + [6] = { 33.5, 55.8, 440, 25 }, + [7] = { 48.8, 33.6, 440, 25 }, + [8] = { 51.5, 28.3, 440, 25 }, + [9] = { 53.5, 72.9, 490, 25 }, + [10] = { 22.9, 82.2, 1377, 25 }, + [11] = { 55.1, 58.2, 1377, 25 }, + [12] = { 25.9, 43.8, 1377, 25 }, + }, + }, + [180812] = { + ["coords"] = { + [1] = { 33.8, 73, 1637, 25 }, + }, + }, + [180813] = { + ["coords"] = { + [1] = { 33.8, 73, 1637, 0 }, + }, + }, + [180814] = { + ["coords"] = { + [1] = { 33.8, 73, 1637, 0 }, + }, + }, + [180815] = { + ["coords"] = { + [1] = { 33.8, 73, 1637, 0 }, + }, + }, + [180816] = { + ["coords"] = { + [1] = { 33.8, 73, 1637, 0 }, + }, + }, + [180817] = { + ["coords"] = { + [1] = { 33.8, 73, 1637, 0 }, + }, + }, + [180818] = { + ["coords"] = { + [1] = { 33.3, 68.1, 1637, 25 }, + }, + }, + [180819] = { + ["coords"] = { + [1] = { 33.3, 68.1, 1637, 0 }, + }, + }, + [180820] = { + ["coords"] = { + [1] = { 33.3, 68.1, 1637, 0 }, + }, + }, + [180821] = { + ["coords"] = { + [1] = { 33.3, 68.1, 1637, 0 }, + }, + }, + [180822] = { + ["coords"] = { + [1] = { 33.3, 68.1, 1637, 0 }, + }, + }, + [180823] = { + ["coords"] = { + [1] = { 33.3, 68.1, 1637, 0 }, + }, + }, + [180826] = { + ["coords"] = { + [1] = { 30.6, 74.2, 1637, 25 }, + }, + }, + [180827] = { + ["coords"] = { + [1] = { 30.6, 74.3, 1637, 0 }, + }, + }, + [180828] = { + ["coords"] = { + [1] = { 30.6, 74.3, 1637, 0 }, + }, + }, + [180829] = { + ["coords"] = { + [1] = { 30.6, 74.3, 1637, 0 }, + }, + }, + [180830] = { + ["coords"] = { + [1] = { 30.6, 74.3, 1637, 0 }, + }, + }, + [180831] = { + ["coords"] = { + [1] = { 30.6, 74.3, 1637, 0 }, + }, + }, + [180832] = { + ["coords"] = { + [1] = { 29.4, 69.9, 1637, 25 }, + }, + }, + [180833] = { + ["coords"] = { + [1] = { 29.4, 69.9, 1637, 0 }, + }, + }, + [180834] = { + ["coords"] = { + [1] = { 29.4, 69.9, 1637, 0 }, + }, + }, + [180835] = { + ["coords"] = { + [1] = { 29.4, 69.9, 1637, 0 }, + }, + }, + [180836] = { + ["coords"] = { + [1] = { 29.4, 69.9, 1637, 0 }, + }, + }, + [180837] = { + ["coords"] = { + [1] = { 29.4, 69.9, 1637, 0 }, + }, + }, + [180838] = { + ["coords"] = { + [1] = { 32.4, 63.2, 1637, 25 }, + }, + }, + [180839] = { + ["coords"] = { + [1] = { 32.3, 63.2, 1637, 0 }, + }, + }, + [180840] = { + ["coords"] = { + [1] = { 32.3, 63.2, 1637, 0 }, + }, + }, + [180841] = { + ["coords"] = { + [1] = { 32.3, 63.2, 1637, 0 }, + }, + }, + [180842] = { + ["coords"] = { + [1] = { 32.3, 63.2, 1637, 0 }, + }, + }, + [180843] = { + ["coords"] = { + [1] = { 32.3, 63.2, 1637, 0 }, + }, + }, + [180844] = { + ["coords"] = { + [1] = { 47.2, 51.9, 1, 180 }, + [2] = { 3.6, 46.7, 3, 180 }, + [3] = { 44.8, 56.8, 8, 180 }, + [4] = { 74, 44.8, 10, 180 }, + [5] = { 10.6, 60.1, 11, 180 }, + [6] = { 43.5, 66, 12, 180 }, + [7] = { 51.6, 41.9, 14, 180 }, + [8] = { 66.4, 45.3, 15, 180 }, + [9] = { 45.4, 58.9, 17, 180 }, + [10] = { 62.1, 39.3, 17, 180 }, + [11] = { 52.1, 30, 17, 180 }, + [12] = { 27.1, 77.4, 33, 180 }, + [13] = { 31.5, 29.6, 33, 180 }, + [14] = { 61.3, 80.9, 36, 180 }, + [15] = { 35.3, 48.6, 38, 180 }, + [16] = { 52.6, 53.4, 40, 180 }, + [17] = { 26.9, 44.9, 44, 180 }, + [18] = { 74, 32.9, 45, 180 }, + [19] = { 77.9, 81.7, 47, 180 }, + [20] = { 13.5, 41.6, 47, 180 }, + [21] = { 82.7, 37.9, 51, 180 }, + [22] = { 61.8, 52.7, 85, 180 }, + [23] = { 43.1, 41.4, 130, 180 }, + [24] = { 56.1, 59.4, 141, 180 }, + [25] = { 31.4, 50.1, 141, 180 }, + [26] = { 37, 44.1, 148, 180 }, + [27] = { 46.5, 61.4, 215, 180 }, + [28] = { 39, 29.8, 215, 180 }, + [29] = { 50.8, 59, 267, 180 }, + [30] = { 62.5, 19.2, 267, 180 }, + [31] = { 74.2, 60.8, 331, 180 }, + [32] = { 36.8, 49.9, 331, 180 }, + [33] = { 74.7, 44.8, 357, 180 }, + [34] = { 31, 42.8, 357, 180 }, + [35] = { 45.9, 51, 400, 180 }, + [36] = { 23.9, 68, 405, 180 }, + [37] = { 66.1, 6.8, 405, 180 }, + [38] = { 40.7, 82, 406, 180 }, + [39] = { 47.7, 61.6, 406, 180 }, + [40] = { 52.6, 28, 440, 180 }, + [41] = { 61.4, 38.9, 618, 180 }, + [42] = { 51.7, 38.6, 1377, 180 }, + [43] = { 66.5, 37.7, 1497, 180 }, + [44] = { 52.4, 65.4, 1519, 180 }, + [45] = { 20, 53.8, 1537, 180 }, + [46] = { 54.1, 68.8, 1637, 180 }, + [47] = { 45, 63.7, 1638, 180 }, + [48] = { 68.1, 15.4, 1657, 180 }, + }, + }, + [180850] = { + ["coords"] = {}, + }, + [180851] = { + ["coords"] = {}, + }, + [180852] = { + ["coords"] = { + [1] = { 49.4, 35.3, 1377, 25 }, + }, + }, + [180853] = { + ["coords"] = { + [1] = { 49.5, 35.5, 1377, 25 }, + }, + }, + [180854] = { + ["coords"] = {}, + }, + [180855] = { + ["coords"] = {}, + }, + [180856] = { + ["coords"] = {}, + }, + [180857] = { + ["coords"] = {}, + }, + [180858] = { + ["coords"] = {}, + }, + [180859] = { + ["coords"] = {}, + }, + [180860] = { + ["coords"] = {}, + }, + [180861] = { + ["coords"] = {}, + }, + [180862] = { + ["coords"] = {}, + }, + [180864] = { + ["coords"] = {}, + }, + [180865] = { + ["coords"] = {}, + }, + [180866] = { + ["coords"] = { + [1] = { 49.4, 35.9, 1377, 900 }, + }, + }, + [180867] = { + ["coords"] = { + [1] = { 23.8, 49.5, 141, 25 }, + [2] = { 44.3, 22.2, 215, 25 }, + [3] = { 36.4, 59.9, 493, 25 }, + [4] = { 37.2, 59.5, 493, 25 }, + [5] = { 35.7, 58.9, 493, 25 }, + [6] = { 37.5, 58.2, 493, 25 }, + [7] = { 36, 57.7, 493, 25 }, + [8] = { 36.7, 57.2, 493, 25 }, + [9] = { 66, 36.9, 1497, 25 }, + [10] = { 22.8, 52.4, 1519, 25 }, + [11] = { 30.7, 17.8, 1537, 25 }, + [12] = { 41, 31.1, 1637, 25 }, + [13] = { 71.6, 26.2, 1638, 25 }, + [14] = { 31.8, 12.4, 1657, 25 }, + }, + }, + [180868] = { + ["coords"] = { + [1] = { 23.8, 49.7, 141, 120 }, + [2] = { 23.7, 49.6, 141, 120 }, + [3] = { 23.9, 49.6, 141, 120 }, + [4] = { 23.7, 49.5, 141, 120 }, + [5] = { 23.9, 49.4, 141, 120 }, + [6] = { 23.8, 49.4, 141, 120 }, + [7] = { 44.3, 22.4, 215, 120 }, + [8] = { 44.3, 22.3, 215, 120 }, + [9] = { 44.2, 22.3, 215, 120 }, + [10] = { 44.4, 22.2, 215, 120 }, + [11] = { 44.3, 22.1, 215, 120 }, + [12] = { 66, 37.8, 1497, 120 }, + [13] = { 66.4, 37.6, 1497, 120 }, + [14] = { 65.6, 37.6, 1497, 120 }, + [15] = { 66.6, 36.8, 1497, 120 }, + [16] = { 65.4, 36.7, 1497, 120 }, + [17] = { 22.6, 53.6, 1519, 120 }, + [18] = { 22.7, 53.2, 1519, 120 }, + [19] = { 23, 52.9, 1519, 120 }, + [20] = { 22.2, 52.7, 1519, 120 }, + [21] = { 22.4, 52.5, 1519, 120 }, + [22] = { 22.1, 52.4, 1519, 120 }, + [23] = { 23, 51.9, 1519, 120 }, + [24] = { 22.6, 51.7, 1519, 120 }, + [25] = { 22, 51.4, 1519, 120 }, + [26] = { 30.4, 20.7, 1537, 120 }, + [27] = { 29.1, 19.6, 1537, 120 }, + [28] = { 30.7, 19.3, 1537, 120 }, + [29] = { 31.4, 19.1, 1537, 120 }, + [30] = { 29.8, 18.7, 1537, 120 }, + [31] = { 31.8, 18.1, 1537, 120 }, + [32] = { 32.6, 18, 1537, 120 }, + [33] = { 31.4, 16.8, 1537, 120 }, + [34] = { 32.2, 15.8, 1537, 120 }, + [35] = { 41.5, 33, 1637, 120 }, + [36] = { 42, 32.5, 1637, 120 }, + [37] = { 40.5, 31.7, 1637, 120 }, + [38] = { 40.4, 30.6, 1637, 120 }, + [39] = { 41.5, 30.6, 1637, 120 }, + [40] = { 41, 30.2, 1637, 120 }, + [41] = { 40.6, 30.1, 1637, 120 }, + [42] = { 71.6, 27.2, 1638, 120 }, + [43] = { 71.2, 27, 1638, 120 }, + [44] = { 71, 26.7, 1638, 120 }, + [45] = { 72, 26.4, 1638, 120 }, + [46] = { 71.1, 25.7, 1638, 120 }, + [47] = { 31.9, 13.2, 1657, 120 }, + [48] = { 31.3, 13, 1657, 120 }, + [49] = { 32.3, 12.7, 1657, 120 }, + [50] = { 31.2, 12.1, 1657, 120 }, + [51] = { 32.1, 11.9, 1657, 120 }, + [52] = { 31.6, 11.6, 1657, 120 }, + }, + }, + [180869] = { + ["coords"] = { + [1] = { 23.9, 49.6, 141, 120 }, + [2] = { 23.8, 49.4, 141, 120 }, + [3] = { 44.4, 22.1, 215, 120 }, + [4] = { 44.3, 22, 215, 120 }, + [5] = { 66.6, 37.2, 1497, 120 }, + [6] = { 65.5, 37.2, 1497, 120 }, + [7] = { 22.3, 52.9, 1519, 120 }, + [8] = { 22.3, 52.1, 1519, 120 }, + [9] = { 31.7, 19.7, 1537, 120 }, + [10] = { 30.4, 18.7, 1537, 120 }, + [11] = { 28.8, 17.9, 1537, 120 }, + [12] = { 31.4, 17.5, 1537, 120 }, + [13] = { 31.1, 15.1, 1537, 120 }, + [14] = { 40.6, 31.1, 1637, 120 }, + [15] = { 41.2, 30.6, 1637, 120 }, + [16] = { 72.1, 26, 1638, 120 }, + [17] = { 71.4, 25.4, 1638, 120 }, + [18] = { 32, 12.9, 1657, 120 }, + [19] = { 31.9, 12, 1657, 120 }, + }, + }, + [180870] = { + ["coords"] = { + [1] = { 23.8, 49.8, 141, 10 }, + [2] = { 24.4, 49.6, 141, 10 }, + [3] = { 23.7, 49.6, 141, 10 }, + [4] = { 24, 49.4, 141, 10 }, + [5] = { 23.8, 49.3, 141, 10 }, + [6] = { 44.3, 22.6, 215, 10 }, + [7] = { 44.3, 22.5, 215, 10 }, + [8] = { 44.1, 22.4, 215, 10 }, + [9] = { 44.2, 22.3, 215, 10 }, + [10] = { 44.4, 21.9, 215, 10 }, + [11] = { 40.8, 66.8, 267, 10 }, + [12] = { 66.3, 37.8, 1497, 10 }, + [13] = { 65.7, 37.7, 1497, 10 }, + [14] = { 66.5, 37.5, 1497, 10 }, + [15] = { 65.5, 37.4, 1497, 10 }, + [16] = { 66.7, 37, 1497, 10 }, + [17] = { 65.4, 37, 1497, 10 }, + [18] = { 23.2, 54.7, 1519, 10 }, + [19] = { 23.2, 53.8, 1519, 10 }, + [20] = { 23.4, 50.9, 1519, 10 }, + [21] = { 22.7, 50.9, 1519, 10 }, + [22] = { 23.8, 50.5, 1519, 10 }, + [23] = { 22.4, 50.1, 1519, 10 }, + [24] = { 31.1, 20.6, 1537, 10 }, + [25] = { 28.9, 19.1, 1537, 10 }, + [26] = { 32.5, 18.9, 1537, 10 }, + [27] = { 28.8, 16.4, 1537, 10 }, + [28] = { 31.8, 15.4, 1537, 10 }, + [29] = { 30.2, 14.8, 1537, 10 }, + [30] = { 42.7, 35.4, 1637, 10 }, + [31] = { 43.3, 35, 1637, 10 }, + [32] = { 41.9, 33.7, 1637, 10 }, + [33] = { 42.4, 33.2, 1637, 10 }, + [34] = { 41.2, 32.4, 1637, 10 }, + [35] = { 41.7, 31.8, 1637, 10 }, + [36] = { 40.3, 30.9, 1637, 10 }, + [37] = { 41.2, 30, 1637, 10 }, + [38] = { 71.3, 28.2, 1638, 10 }, + [39] = { 71.5, 27.6, 1638, 10 }, + [40] = { 70.4, 27.5, 1638, 10 }, + [41] = { 70.8, 27, 1638, 10 }, + [42] = { 71.7, 24.7, 1638, 10 }, + [43] = { 31.9, 13.7, 1657, 10 }, + [44] = { 34.4, 13, 1657, 10 }, + [45] = { 31, 12.7, 1657, 10 }, + [46] = { 32.6, 11.9, 1657, 10 }, + [47] = { 31.5, 11.1, 1657, 10 }, + }, + }, + [180871] = { + ["coords"] = { + [1] = { 23.8, 49.8, 141, 10 }, + [2] = { 24.4, 49.6, 141, 10 }, + [3] = { 23.7, 49.6, 141, 10 }, + [4] = { 24, 49.4, 141, 10 }, + [5] = { 23.8, 49.3, 141, 10 }, + [6] = { 44.3, 22.6, 215, 10 }, + [7] = { 44.3, 22.5, 215, 10 }, + [8] = { 44.1, 22.4, 215, 10 }, + [9] = { 44.2, 22.3, 215, 10 }, + [10] = { 44.4, 21.9, 215, 10 }, + [11] = { 40.8, 66.8, 267, 10 }, + [12] = { 66.3, 37.8, 1497, 10 }, + [13] = { 65.7, 37.7, 1497, 10 }, + [14] = { 66.5, 37.5, 1497, 10 }, + [15] = { 65.5, 37.4, 1497, 10 }, + [16] = { 66.7, 37, 1497, 10 }, + [17] = { 65.4, 37, 1497, 10 }, + [18] = { 23.2, 54.7, 1519, 10 }, + [19] = { 23.2, 53.8, 1519, 10 }, + [20] = { 23.4, 50.9, 1519, 10 }, + [21] = { 22.7, 50.9, 1519, 10 }, + [22] = { 23.8, 50.5, 1519, 10 }, + [23] = { 22.4, 50.1, 1519, 10 }, + [24] = { 31.1, 20.6, 1537, 10 }, + [25] = { 28.9, 19.1, 1537, 10 }, + [26] = { 32.5, 18.9, 1537, 10 }, + [27] = { 28.8, 16.4, 1537, 10 }, + [28] = { 31.8, 15.4, 1537, 10 }, + [29] = { 30.2, 14.8, 1537, 10 }, + [30] = { 42.7, 35.4, 1637, 10 }, + [31] = { 43.3, 35, 1637, 10 }, + [32] = { 41.9, 33.7, 1637, 10 }, + [33] = { 42.4, 33.2, 1637, 10 }, + [34] = { 41.2, 32.4, 1637, 10 }, + [35] = { 41.7, 31.8, 1637, 10 }, + [36] = { 40.3, 30.9, 1637, 10 }, + [37] = { 41.2, 30, 1637, 10 }, + [38] = { 71.3, 28.2, 1638, 10 }, + [39] = { 71.5, 27.6, 1638, 10 }, + [40] = { 70.4, 27.5, 1638, 10 }, + [41] = { 70.8, 27, 1638, 10 }, + [42] = { 71.7, 24.7, 1638, 10 }, + [43] = { 31.9, 13.7, 1657, 10 }, + [44] = { 34.4, 13, 1657, 10 }, + [45] = { 31, 12.7, 1657, 10 }, + [46] = { 32.6, 11.9, 1657, 10 }, + [47] = { 31.5, 11.1, 1657, 10 }, + }, + }, + [180872] = { + ["coords"] = { + [1] = { 23.8, 49.8, 141, 10 }, + [2] = { 24.4, 49.6, 141, 10 }, + [3] = { 23.7, 49.6, 141, 10 }, + [4] = { 24, 49.4, 141, 10 }, + [5] = { 23.8, 49.3, 141, 10 }, + [6] = { 44.3, 22.6, 215, 10 }, + [7] = { 44.3, 22.5, 215, 10 }, + [8] = { 44.1, 22.4, 215, 10 }, + [9] = { 44.2, 22.3, 215, 10 }, + [10] = { 44.4, 21.9, 215, 10 }, + [11] = { 40.8, 66.8, 267, 10 }, + [12] = { 66.3, 37.8, 1497, 10 }, + [13] = { 65.7, 37.7, 1497, 10 }, + [14] = { 66.5, 37.5, 1497, 10 }, + [15] = { 65.5, 37.4, 1497, 10 }, + [16] = { 66.7, 37, 1497, 10 }, + [17] = { 65.4, 37, 1497, 10 }, + [18] = { 23.2, 54.7, 1519, 10 }, + [19] = { 23.2, 53.8, 1519, 10 }, + [20] = { 23.4, 50.9, 1519, 10 }, + [21] = { 22.7, 50.9, 1519, 10 }, + [22] = { 23.8, 50.5, 1519, 10 }, + [23] = { 22.4, 50.1, 1519, 10 }, + [24] = { 31.1, 20.6, 1537, 10 }, + [25] = { 28.9, 19.1, 1537, 10 }, + [26] = { 32.5, 18.9, 1537, 10 }, + [27] = { 28.8, 16.4, 1537, 10 }, + [28] = { 31.8, 15.4, 1537, 10 }, + [29] = { 30.2, 14.8, 1537, 10 }, + [30] = { 42.7, 35.4, 1637, 10 }, + [31] = { 43.3, 35, 1637, 10 }, + [32] = { 41.9, 33.7, 1637, 10 }, + [33] = { 42.4, 33.2, 1637, 10 }, + [34] = { 41.2, 32.4, 1637, 10 }, + [35] = { 41.7, 31.8, 1637, 10 }, + [36] = { 40.3, 30.9, 1637, 10 }, + [37] = { 41.2, 30, 1637, 10 }, + [38] = { 71.3, 28.2, 1638, 10 }, + [39] = { 71.5, 27.6, 1638, 10 }, + [40] = { 70.4, 27.5, 1638, 10 }, + [41] = { 70.8, 27, 1638, 10 }, + [42] = { 71.7, 24.7, 1638, 10 }, + [43] = { 31.9, 13.7, 1657, 10 }, + [44] = { 34.4, 13, 1657, 10 }, + [45] = { 31, 12.7, 1657, 10 }, + [46] = { 32.6, 11.9, 1657, 10 }, + [47] = { 31.5, 11.1, 1657, 10 }, + }, + }, + [180873] = { + ["coords"] = { + [1] = { 23.8, 49.8, 141, 10 }, + [2] = { 24.4, 49.6, 141, 10 }, + [3] = { 23.7, 49.6, 141, 10 }, + [4] = { 24, 49.4, 141, 10 }, + [5] = { 23.8, 49.3, 141, 10 }, + [6] = { 44.3, 22.6, 215, 10 }, + [7] = { 44.3, 22.5, 215, 10 }, + [8] = { 44.1, 22.4, 215, 10 }, + [9] = { 44.2, 22.3, 215, 10 }, + [10] = { 44.4, 21.9, 215, 10 }, + [11] = { 40.8, 66.8, 267, 10 }, + [12] = { 66.3, 37.8, 1497, 10 }, + [13] = { 65.7, 37.7, 1497, 10 }, + [14] = { 66.5, 37.5, 1497, 10 }, + [15] = { 65.5, 37.4, 1497, 10 }, + [16] = { 66.7, 37, 1497, 10 }, + [17] = { 65.4, 37, 1497, 10 }, + [18] = { 23.2, 54.7, 1519, 10 }, + [19] = { 23.2, 53.8, 1519, 10 }, + [20] = { 23.4, 50.9, 1519, 10 }, + [21] = { 22.7, 50.9, 1519, 10 }, + [22] = { 23.8, 50.5, 1519, 10 }, + [23] = { 22.4, 50.1, 1519, 10 }, + [24] = { 31.1, 20.6, 1537, 10 }, + [25] = { 28.9, 19.1, 1537, 10 }, + [26] = { 32.5, 18.9, 1537, 10 }, + [27] = { 28.8, 16.4, 1537, 10 }, + [28] = { 31.8, 15.4, 1537, 10 }, + [29] = { 30.2, 14.8, 1537, 10 }, + [30] = { 42.7, 35.4, 1637, 10 }, + [31] = { 43.3, 35, 1637, 10 }, + [32] = { 41.9, 33.7, 1637, 10 }, + [33] = { 42.4, 33.2, 1637, 10 }, + [34] = { 41.2, 32.4, 1637, 10 }, + [35] = { 41.7, 31.8, 1637, 10 }, + [36] = { 40.3, 30.9, 1637, 10 }, + [37] = { 41.2, 30, 1637, 10 }, + [38] = { 71.3, 28.2, 1638, 10 }, + [39] = { 71.5, 27.6, 1638, 10 }, + [40] = { 70.4, 27.5, 1638, 10 }, + [41] = { 70.8, 27, 1638, 10 }, + [42] = { 71.7, 24.7, 1638, 10 }, + [43] = { 31.9, 13.7, 1657, 10 }, + [44] = { 34.4, 13, 1657, 10 }, + [45] = { 31, 12.7, 1657, 10 }, + [46] = { 32.6, 11.9, 1657, 10 }, + [47] = { 31.5, 11.1, 1657, 10 }, + }, + }, + [180874] = { + ["coords"] = { + [1] = { 63.7, 62.4, 493, 120 }, + [2] = { 64.6, 60.4, 493, 120 }, + }, + }, + [180875] = { + ["coords"] = { + [1] = { 63.7, 62.3, 493, 120 }, + [2] = { 64.6, 60.4, 493, 120 }, + }, + }, + [180876] = { + ["coords"] = {}, + }, + [180877] = { + ["coords"] = {}, + }, + [180878] = { + ["coords"] = { + [1] = { 24.4, 49.7, 141, 120 }, + [2] = { 24.4, 49.6, 141, 120 }, + [3] = { 24.3, 49.6, 141, 120 }, + [4] = { 44.1, 22.5, 215, 120 }, + [5] = { 36.3, 58.5, 493, 120 }, + [6] = { 36.3, 58.4, 493, 120 }, + [7] = { 36.5, 58.4, 493, 120 }, + [8] = { 36.4, 58.4, 493, 120 }, + [9] = { 36.3, 58.3, 493, 120 }, + [10] = { 36.2, 58.3, 493, 120 }, + [11] = { 36.6, 58.3, 493, 120 }, + [12] = { 36.4, 58.3, 493, 120 }, + [13] = { 36.5, 58.3, 493, 120 }, + [14] = { 36.7, 58.3, 493, 120 }, + [15] = { 36.4, 58.2, 493, 120 }, + [16] = { 36.6, 58.2, 493, 120 }, + [17] = { 36.5, 58.2, 493, 120 }, + [18] = { 36.7, 58.2, 493, 120 }, + [19] = { 66.6, 36.2, 1497, 120 }, + [20] = { 66.7, 36.2, 1497, 120 }, + [21] = { 66.7, 36.1, 1497, 120 }, + [22] = { 66.8, 36, 1497, 120 }, + [23] = { 66.7, 36, 1497, 120 }, + [24] = { 66.8, 35.9, 1497, 120 }, + [25] = { 66.5, 35.8, 1497, 120 }, + [26] = { 66.7, 35.8, 1497, 120 }, + [27] = { 66.6, 35.8, 1497, 120 }, + [28] = { 22.7, 51.4, 1519, 120 }, + [29] = { 22.6, 51.4, 1519, 120 }, + [30] = { 22.8, 51.3, 1519, 120 }, + [31] = { 22.6, 51.2, 1519, 120 }, + [32] = { 22.6, 51.1, 1519, 120 }, + [33] = { 22.7, 51.1, 1519, 120 }, + [34] = { 22.8, 51.1, 1519, 120 }, + [35] = { 30, 14.6, 1537, 120 }, + [36] = { 30.2, 14.6, 1537, 120 }, + [37] = { 30.3, 14.6, 1537, 120 }, + [38] = { 30.4, 14.5, 1537, 120 }, + [39] = { 30.5, 14.5, 1537, 120 }, + [40] = { 30.6, 14.5, 1537, 120 }, + [41] = { 29.9, 14.5, 1537, 120 }, + [42] = { 30, 14.4, 1537, 120 }, + [43] = { 30.5, 14.4, 1537, 120 }, + [44] = { 29.8, 14.3, 1537, 120 }, + [45] = { 30.6, 14.3, 1537, 120 }, + [46] = { 30.3, 14.2, 1537, 120 }, + [47] = { 30.5, 14.1, 1537, 120 }, + [48] = { 30.4, 14.1, 1537, 120 }, + [49] = { 30.6, 14.1, 1537, 120 }, + [50] = { 30.5, 14, 1537, 120 }, + [51] = { 30, 14, 1537, 120 }, + [52] = { 41.2, 32.7, 1637, 120 }, + [53] = { 41.1, 32.7, 1637, 120 }, + [54] = { 41.3, 32.6, 1637, 120 }, + [55] = { 41.1, 32.6, 1637, 120 }, + [56] = { 41.1, 32.5, 1637, 120 }, + [57] = { 41.2, 32.5, 1637, 120 }, + [58] = { 41.1, 32.4, 1637, 120 }, + [59] = { 70.3, 28, 1638, 120 }, + [60] = { 70.3, 27.9, 1638, 120 }, + [61] = { 70.3, 27.8, 1638, 120 }, + [62] = { 70.2, 27.8, 1638, 120 }, + [63] = { 70.3, 27.7, 1638, 120 }, + [64] = { 70.4, 27.7, 1638, 120 }, + [65] = { 70.2, 27.7, 1638, 120 }, + [66] = { 70.5, 27.7, 1638, 120 }, + [67] = { 70.3, 27.6, 1638, 120 }, + [68] = { 70.4, 27.6, 1638, 120 }, + [69] = { 34.5, 13.2, 1657, 120 }, + [70] = { 34.4, 13.2, 1657, 120 }, + [71] = { 34.6, 13.2, 1657, 120 }, + [72] = { 34.6, 13, 1657, 120 }, + [73] = { 34.4, 12.9, 1657, 120 }, + [74] = { 34.3, 12.8, 1657, 120 }, + [75] = { 34.4, 12.8, 1657, 120 }, + }, + }, + [180879] = { + ["coords"] = { + [1] = { 24.4, 49.6, 141, 120 }, + [2] = { 36.2, 58.4, 493, 120 }, + [3] = { 36.4, 58.3, 493, 120 }, + [4] = { 36.6, 58.2, 493, 120 }, + [5] = { 53.7, 35.4, 493, 120 }, + [6] = { 22.7, 51.3, 1519, 120 }, + [7] = { 34.5, 13, 1657, 120 }, + }, + }, + [180880] = { + ["coords"] = { + [1] = { 24.4, 49.6, 141, 120 }, + [2] = { 44.1, 22.5, 215, 120 }, + [3] = { 36.2, 58.4, 493, 120 }, + [4] = { 36.4, 58.4, 493, 120 }, + [5] = { 36.3, 58.4, 493, 120 }, + [6] = { 36.6, 58.2, 493, 120 }, + [7] = { 66.6, 36, 1497, 120 }, + [8] = { 66.6, 35.9, 1497, 120 }, + [9] = { 22.7, 51.3, 1519, 120 }, + [10] = { 30.2, 14.2, 1537, 120 }, + [11] = { 41.2, 32.6, 1637, 120 }, + [12] = { 41.2, 32.5, 1637, 120 }, + [13] = { 70.4, 27.9, 1638, 120 }, + [14] = { 34.6, 13, 1657, 120 }, + }, + }, + [180881] = { + ["coords"] = { + [1] = { 24.4, 49.6, 141, 120 }, + [2] = { 44.1, 22.5, 215, 120 }, + [3] = { 36.2, 58.4, 493, 120 }, + [4] = { 36.3, 58.4, 493, 120 }, + [5] = { 36.4, 58.3, 493, 120 }, + [6] = { 36.6, 58.2, 493, 120 }, + [7] = { 66.7, 35.9, 1497, 120 }, + [8] = { 22.7, 51.3, 1519, 120 }, + [9] = { 30.1, 14.3, 1537, 120 }, + [10] = { 30.2, 14.3, 1537, 120 }, + [11] = { 41.1, 32.5, 1637, 120 }, + [12] = { 41.2, 32.5, 1637, 120 }, + [13] = { 70.4, 27.8, 1638, 120 }, + [14] = { 34.5, 13, 1657, 120 }, + }, + }, + [180882] = { + ["coords"] = { + [1] = { 24.4, 49.6, 141, 120 }, + [2] = { 44.1, 22.5, 215, 120 }, + [3] = { 36.3, 58.4, 493, 120 }, + [4] = { 36.4, 58.3, 493, 120 }, + [5] = { 36.7, 58.2, 493, 120 }, + [6] = { 36.6, 58.2, 493, 120 }, + [7] = { 66.6, 36, 1497, 120 }, + [8] = { 22.7, 51.4, 1519, 120 }, + [9] = { 22.7, 51.3, 1519, 120 }, + [10] = { 30.1, 14.2, 1537, 120 }, + [11] = { 30.2, 14.1, 1537, 120 }, + [12] = { 41.2, 32.5, 1637, 120 }, + [13] = { 70.4, 27.9, 1638, 120 }, + [14] = { 34.5, 13, 1657, 120 }, + }, + }, + [180883] = { + ["coords"] = { + [1] = { 24.4, 49.7, 141, 120 }, + [2] = { 44.1, 22.5, 215, 120 }, + [3] = { 36.2, 58.4, 493, 120 }, + [4] = { 36.6, 58.3, 493, 120 }, + [5] = { 36.6, 58.2, 493, 120 }, + [6] = { 66.6, 36.1, 1497, 120 }, + [7] = { 22.7, 51.3, 1519, 120 }, + [8] = { 30.2, 14.3, 1537, 120 }, + [9] = { 30.3, 14.1, 1537, 120 }, + [10] = { 41.2, 32.6, 1637, 120 }, + [11] = { 70.4, 27.8, 1638, 120 }, + [12] = { 34.5, 13.1, 1657, 120 }, + }, + }, + [180884] = { + ["coords"] = { + [1] = { 30.3, 14.2, 1537, 120 }, + }, + }, + [180885] = { + ["coords"] = { + [1] = { 66.6, 36, 1497, 120 }, + }, + }, + [180888] = { + ["coords"] = { + [1] = { 44.1, 22.5, 215, 120 }, + [2] = { 41.2, 32.5, 1637, 120 }, + [3] = { 70.4, 27.8, 1638, 120 }, + }, + }, + [180891] = { + ["coords"] = { + [1] = { 23.8, 49.5, 141, 120 }, + [2] = { 44.3, 22.2, 215, 120 }, + [3] = { 66, 36.8, 1497, 120 }, + [4] = { 22.8, 52.4, 1519, 120 }, + [5] = { 30.7, 17.8, 1537, 120 }, + [6] = { 41, 31.1, 1637, 120 }, + [7] = { 71.6, 26.1, 1638, 120 }, + [8] = { 31.8, 12.4, 1657, 120 }, + }, + ["fac"] = "AH", + }, + [180892] = { + ["coords"] = { + [1] = { 35.7, 58.9, 493, 120 }, + }, + ["fac"] = "AH", + }, + [180893] = { + ["coords"] = { + [1] = { 36.4, 59.9, 493, 120 }, + }, + ["fac"] = "AH", + }, + [180894] = { + ["coords"] = { + [1] = { 36.7, 57.2, 493, 120 }, + }, + ["fac"] = "AH", + }, + [180895] = { + ["coords"] = { + [1] = { 37.5, 58.2, 493, 120 }, + }, + ["fac"] = "AH", + }, + [180896] = { + ["coords"] = { + [1] = { 37.2, 59.5, 493, 120 }, + }, + ["fac"] = "AH", + }, + [180897] = { + ["coords"] = { + [1] = { 36, 57.7, 493, 120 }, + }, + ["fac"] = "AH", + }, + [180898] = { + ["coords"] = { + [1] = { 29.1, 93.9, 1377, 900 }, + }, + }, + [180899] = { + ["coords"] = { + [1] = { 29.1, 93.9, 1377, 900 }, + }, + }, + [180900] = { + ["coords"] = { + [1] = { 26.5, 84.7, 33, 180 }, + [2] = { 29.3, 83.6, 33, 180 }, + [3] = { 27.8, 83.5, 33, 180 }, + [4] = { 30.7, 83.2, 33, 180 }, + [5] = { 26.1, 82.5, 33, 180 }, + [6] = { 31.7, 82, 33, 180 }, + [7] = { 32.6, 80.6, 33, 180 }, + [8] = { 33.7, 78, 33, 180 }, + [9] = { 27.5, 76.5, 33, 180 }, + [10] = { 27.9, 76, 33, 180 }, + [11] = { 34, 74.7, 33, 180 }, + [12] = { 27.3, 74.7, 33, 180 }, + [13] = { 26.5, 74.1, 33, 180 }, + [14] = { 36.4, 69.9, 33, 180 }, + [15] = { 26.7, 69.9, 33, 180 }, + [16] = { 25.4, 66.8, 33, 180 }, + [17] = { 23.9, 65.4, 33, 180 }, + [18] = { 23.7, 63.1, 33, 180 }, + [19] = { 38.5, 62.8, 33, 180 }, + [20] = { 23.8, 61.4, 33, 180 }, + [21] = { 41.1, 60.5, 33, 180 }, + [22] = { 41.4, 59.4, 33, 180 }, + [23] = { 24.3, 59.4, 33, 180 }, + [24] = { 26.2, 58.3, 33, 180 }, + [25] = { 41.7, 57.9, 33, 180 }, + [26] = { 22.8, 56.4, 33, 180 }, + [27] = { 22.1, 55.2, 33, 180 }, + [28] = { 22.5, 52.8, 33, 180 }, + [29] = { 22.1, 51.1, 33, 180 }, + [30] = { 24.6, 49.9, 33, 180 }, + [31] = { 22.7, 48.8, 33, 180 }, + [32] = { 26, 48.6, 33, 180 }, + [33] = { 23.8, 47.4, 33, 180 }, + [34] = { 27.2, 46.6, 33, 180 }, + [35] = { 26.9, 44.5, 33, 180 }, + [36] = { 27.1, 42.3, 33, 180 }, + [37] = { 26.9, 40.9, 33, 180 }, + [38] = { 27.9, 39, 33, 180 }, + [39] = { 28.9, 37.7, 33, 180 }, + [40] = { 29.4, 37.2, 33, 180 }, + [41] = { 34.2, 36.6, 33, 180 }, + [42] = { 31.8, 36.5, 33, 180 }, + [43] = { 35.1, 36, 33, 180 }, + [44] = { 32.4, 35.5, 33, 180 }, + [45] = { 34.7, 34.2, 33, 180 }, + }, + }, + [180901] = { + ["coords"] = { + [1] = { 26.5, 84.7, 33, 180 }, + [2] = { 29.3, 83.6, 33, 180 }, + [3] = { 27.8, 83.5, 33, 180 }, + [4] = { 30.7, 83.2, 33, 180 }, + [5] = { 26.1, 82.5, 33, 180 }, + [6] = { 31.7, 82, 33, 180 }, + [7] = { 32.6, 80.6, 33, 180 }, + [8] = { 33.7, 78, 33, 180 }, + [9] = { 27.5, 76.5, 33, 180 }, + [10] = { 27.9, 76, 33, 180 }, + [11] = { 34, 74.7, 33, 180 }, + [12] = { 27.3, 74.7, 33, 180 }, + [13] = { 26.5, 74.1, 33, 180 }, + [14] = { 36.4, 69.9, 33, 180 }, + [15] = { 26.7, 69.9, 33, 180 }, + [16] = { 25.4, 66.8, 33, 180 }, + [17] = { 23.9, 65.4, 33, 180 }, + [18] = { 23.7, 63.1, 33, 180 }, + [19] = { 38.5, 62.8, 33, 180 }, + [20] = { 23.8, 61.4, 33, 180 }, + [21] = { 41.1, 60.5, 33, 180 }, + [22] = { 41.4, 59.4, 33, 180 }, + [23] = { 24.3, 59.4, 33, 180 }, + [24] = { 26.2, 58.3, 33, 180 }, + [25] = { 41.7, 57.9, 33, 180 }, + [26] = { 22.8, 56.4, 33, 180 }, + [27] = { 22.1, 55.2, 33, 180 }, + [28] = { 22.5, 52.8, 33, 180 }, + [29] = { 22.1, 51.1, 33, 180 }, + [30] = { 24.6, 49.9, 33, 180 }, + [31] = { 22.7, 48.8, 33, 180 }, + [32] = { 26, 48.6, 33, 180 }, + [33] = { 23.8, 47.4, 33, 180 }, + [34] = { 27.2, 46.6, 33, 180 }, + [35] = { 26.9, 44.5, 33, 180 }, + [36] = { 27.1, 42.3, 33, 180 }, + [37] = { 26.9, 40.9, 33, 180 }, + [38] = { 27.9, 39, 33, 180 }, + [39] = { 28.9, 37.7, 33, 180 }, + [40] = { 29.4, 37.2, 33, 180 }, + [41] = { 34.2, 36.6, 33, 180 }, + [42] = { 31.8, 36.5, 33, 180 }, + [43] = { 35.1, 36, 33, 180 }, + [44] = { 32.4, 35.5, 33, 180 }, + [45] = { 34.7, 34.2, 33, 180 }, + }, + }, + [180902] = { + ["coords"] = { + [1] = { 26.5, 84.7, 33, 180 }, + [2] = { 29.3, 83.6, 33, 180 }, + [3] = { 27.8, 83.5, 33, 180 }, + [4] = { 30.7, 83.2, 33, 180 }, + [5] = { 26.1, 82.5, 33, 180 }, + [6] = { 31.7, 82, 33, 180 }, + [7] = { 32.6, 80.6, 33, 180 }, + [8] = { 33.7, 78, 33, 180 }, + [9] = { 27.5, 76.5, 33, 180 }, + [10] = { 27.9, 76, 33, 180 }, + [11] = { 34, 74.7, 33, 180 }, + [12] = { 27.3, 74.7, 33, 180 }, + [13] = { 26.5, 74.1, 33, 180 }, + [14] = { 36.4, 69.9, 33, 180 }, + [15] = { 26.7, 69.9, 33, 180 }, + [16] = { 25.4, 66.8, 33, 180 }, + [17] = { 23.9, 65.4, 33, 180 }, + [18] = { 23.7, 63.1, 33, 180 }, + [19] = { 38.5, 62.8, 33, 180 }, + [20] = { 23.8, 61.4, 33, 180 }, + [21] = { 41.1, 60.5, 33, 180 }, + [22] = { 41.4, 59.4, 33, 180 }, + [23] = { 24.3, 59.4, 33, 180 }, + [24] = { 26.2, 58.3, 33, 180 }, + [25] = { 41.7, 57.9, 33, 180 }, + [26] = { 22.8, 56.4, 33, 180 }, + [27] = { 22.1, 55.2, 33, 180 }, + [28] = { 22.5, 52.8, 33, 180 }, + [29] = { 22.1, 51.1, 33, 180 }, + [30] = { 24.6, 49.9, 33, 180 }, + [31] = { 22.7, 48.8, 33, 180 }, + [32] = { 26, 48.6, 33, 180 }, + [33] = { 23.8, 47.4, 33, 180 }, + [34] = { 27.2, 46.6, 33, 180 }, + [35] = { 26.9, 44.5, 33, 180 }, + [36] = { 27.1, 42.3, 33, 180 }, + [37] = { 26.9, 40.9, 33, 180 }, + [38] = { 27.9, 39, 33, 180 }, + [39] = { 28.9, 37.7, 33, 180 }, + [40] = { 29.4, 37.2, 33, 180 }, + [41] = { 34.2, 36.6, 33, 180 }, + [42] = { 31.8, 36.5, 33, 180 }, + [43] = { 35.1, 36, 33, 180 }, + [44] = { 32.4, 35.5, 33, 180 }, + [45] = { 34.7, 34.2, 33, 180 }, + }, + }, + [180904] = { + ["coords"] = { + [1] = { 29.1, 93.9, 1377, 900 }, + }, + }, + [180905] = { + ["coords"] = { + [1] = { 54.1, 39.3, 1, 10 }, + [2] = { 54.2, 39.2, 1, 10 }, + [3] = { 54.1, 39.2, 1, 10 }, + [4] = { 54, 38.9, 1, 10 }, + [5] = { 53.9, 38.9, 1, 10 }, + [6] = { 52.9, 37.3, 1, 10 }, + [7] = { 52.4, 37.1, 1, 10 }, + [8] = { 52.4, 37, 1, 10 }, + [9] = { 52.3, 37, 1, 10 }, + [10] = { 52.5, 36.5, 1, 10 }, + [11] = { 52.5, 36.4, 1, 10 }, + [12] = { 53, 36.3, 1, 10 }, + [13] = { 53, 36.2, 1, 10 }, + [14] = { 52.5, 36, 1, 10 }, + [15] = { 53.3, 35.4, 1, 10 }, + [16] = { 52.7, 35.2, 1, 10 }, + [17] = { 52.9, 35.2, 1, 10 }, + [18] = { 52.9, 35.1, 1, 10 }, + [19] = { 53.1, 35.1, 1, 10 }, + [20] = { 53.1, 35, 1, 10 }, + [21] = { 46.1, 14.5, 14, 10 }, + [22] = { 45.6, 14.2, 14, 10 }, + [23] = { 46.1, 14.1, 14, 10 }, + [24] = { 45.5, 14, 14, 10 }, + [25] = { 45.5, 13.9, 14, 10 }, + [26] = { 45.4, 13.4, 14, 10 }, + [27] = { 45.3, 13.4, 14, 10 }, + [28] = { 46, 13.3, 14, 10 }, + [29] = { 46.1, 13.3, 14, 10 }, + [30] = { 46, 13.1, 14, 10 }, + [31] = { 46.1, 13.1, 14, 10 }, + [32] = { 45.8, 10.5, 14, 10 }, + [33] = { 45.8, 10.4, 14, 10 }, + [34] = { 46.1, 10.4, 14, 10 }, + [35] = { 46.2, 10.4, 14, 10 }, + [36] = { 46.2, 8.6, 14, 10 }, + [37] = { 46.5, 8.6, 14, 10 }, + [38] = { 46.6, 8.6, 14, 10 }, + [39] = { 46.5, 8.5, 14, 10 }, + [40] = { 46.5, 8.3, 14, 10 }, + [41] = { 46, 8.3, 14, 10 }, + [42] = { 46, 8.2, 14, 10 }, + [43] = { 28.1, 77.4, 33, 10 }, + [44] = { 28.1, 77.3, 33, 10 }, + [45] = { 27.2, 77.1, 33, 10 }, + [46] = { 27.7, 77, 33, 10 }, + [47] = { 28.2, 76.3, 33, 10 }, + [48] = { 28.2, 76.2, 33, 10 }, + [49] = { 28.2, 76.1, 33, 10 }, + [50] = { 28.3, 76, 33, 10 }, + [51] = { 27.9, 74.8, 33, 10 }, + [52] = { 27.9, 74.7, 33, 10 }, + [53] = { 27.8, 74.2, 33, 10 }, + [54] = { 26.6, 73.5, 33, 10 }, + [55] = { 62.8, 68.4, 85, 10 }, + [56] = { 60.9, 68.3, 85, 10 }, + [57] = { 61, 68.3, 85, 10 }, + [58] = { 61, 68.2, 85, 10 }, + [59] = { 60.9, 68.2, 85, 10 }, + [60] = { 62.8, 67.8, 85, 10 }, + [61] = { 62.7, 67.8, 85, 10 }, + [62] = { 60.9, 67.8, 85, 10 }, + [63] = { 61, 67.8, 85, 10 }, + [64] = { 60.9, 67.7, 85, 10 }, + [65] = { 62.4, 67.5, 85, 10 }, + [66] = { 61.3, 67.5, 85, 10 }, + [67] = { 61.7, 67.5, 85, 10 }, + [68] = { 62.1, 67.5, 85, 10 }, + [69] = { 62, 67.5, 85, 10 }, + [70] = { 61.6, 67.5, 85, 10 }, + [71] = { 62, 67.4, 85, 10 }, + [72] = { 61.3, 67.4, 85, 10 }, + [73] = { 61.7, 67.4, 85, 10 }, + [74] = { 62.1, 67.4, 85, 10 }, + [75] = { 60.9, 67.2, 85, 10 }, + [76] = { 62.8, 67.2, 85, 10 }, + [77] = { 62.7, 67.2, 85, 10 }, + [78] = { 62.8, 67.1, 85, 10 }, + [79] = { 60.9, 66.6, 85, 10 }, + [80] = { 62.8, 66.6, 85, 10 }, + [81] = { 62.7, 66.6, 85, 10 }, + [82] = { 62.8, 66.5, 85, 10 }, + [83] = { 55.1, 95.6, 141, 10 }, + [84] = { 55.1, 95.5, 141, 10 }, + [85] = { 55, 95, 141, 10 }, + [86] = { 55.3, 94.5, 141, 10 }, + [87] = { 55.2, 94.5, 141, 10 }, + [88] = { 55.2, 93.9, 141, 10 }, + [89] = { 55.3, 93.9, 141, 10 }, + [90] = { 57.7, 93.8, 141, 10 }, + [91] = { 57.7, 93.7, 141, 10 }, + [92] = { 55.5, 93.6, 141, 10 }, + [93] = { 57.2, 92.8, 141, 10 }, + [94] = { 57.7, 92.8, 141, 10 }, + [95] = { 57.7, 92.7, 141, 10 }, + [96] = { 55.9, 92.7, 141, 10 }, + [97] = { 56, 92.7, 141, 10 }, + [98] = { 56, 92.6, 141, 10 }, + [99] = { 57.6, 92.6, 141, 10 }, + [100] = { 40.6, 34.5, 215, 10 }, + [101] = { 40.7, 34.5, 215, 10 }, + [102] = { 37.8, 30.6, 215, 10 }, + [103] = { 37.9, 30.6, 215, 10 }, + [104] = { 37.8, 29.5, 215, 10 }, + [105] = { 37.7, 29.5, 215, 10 }, + [106] = { 37.8, 29.4, 215, 10 }, + [107] = { 37.7, 29.4, 215, 10 }, + [108] = { 37.4, 28.6, 215, 10 }, + [109] = { 37.4, 28.5, 215, 10 }, + [110] = { 38.4, 28, 215, 10 }, + [111] = { 38.4, 27.9, 215, 10 }, + [112] = { 41.6, 27.6, 215, 10 }, + [113] = { 41.6, 27.5, 215, 10 }, + [114] = { 41.6, 27.3, 215, 10 }, + [115] = { 41.6, 27.1, 215, 10 }, + [116] = { 70.4, 16.2, 1497, 10 }, + [117] = { 70.5, 16.1, 1497, 10 }, + [118] = { 70.3, 16.1, 1497, 10 }, + [119] = { 70.4, 15.9, 1497, 10 }, + [120] = { 61.9, 15.2, 1497, 10 }, + [121] = { 61.8, 15.1, 1497, 10 }, + [122] = { 61.9, 15.1, 1497, 10 }, + [123] = { 61.9, 15, 1497, 10 }, + [124] = { 61.8, 15, 1497, 10 }, + [125] = { 70.4, 13.2, 1497, 10 }, + [126] = { 70.4, 13.1, 1497, 10 }, + [127] = { 70.5, 13, 1497, 10 }, + [128] = { 70.4, 13, 1497, 10 }, + [129] = { 70.4, 12.9, 1497, 10 }, + [130] = { 61.9, 12.9, 1497, 10 }, + [131] = { 61.9, 12.8, 1497, 10 }, + [132] = { 61.8, 12.8, 1497, 10 }, + [133] = { 62, 12.8, 1497, 10 }, + [134] = { 61.9, 12.7, 1497, 10 }, + [135] = { 68.7, 11.5, 1497, 10 }, + [136] = { 63.6, 11.5, 1497, 10 }, + [137] = { 65.2, 11.4, 1497, 10 }, + [138] = { 67.1, 11.4, 1497, 10 }, + [139] = { 68.7, 11.4, 1497, 10 }, + [140] = { 68.8, 11.4, 1497, 10 }, + [141] = { 63.7, 11.4, 1497, 10 }, + [142] = { 65.3, 11.4, 1497, 10 }, + [143] = { 67, 11.4, 1497, 10 }, + [144] = { 63.5, 11.3, 1497, 10 }, + [145] = { 67.2, 11.3, 1497, 10 }, + [146] = { 63.7, 11.3, 1497, 10 }, + [147] = { 65.3, 11.3, 1497, 10 }, + [148] = { 68.7, 11.3, 1497, 10 }, + [149] = { 67.1, 11.2, 1497, 10 }, + [150] = { 63.6, 11.2, 1497, 10 }, + [151] = { 65.2, 11.2, 1497, 10 }, + [152] = { 61.9, 10.2, 1497, 10 }, + [153] = { 61.9, 10.1, 1497, 10 }, + [154] = { 61.8, 10.1, 1497, 10 }, + [155] = { 70.5, 10, 1497, 10 }, + [156] = { 70.4, 10, 1497, 10 }, + [157] = { 61.8, 10, 1497, 10 }, + [158] = { 61.9, 10, 1497, 10 }, + [159] = { 70.4, 9.9, 1497, 10 }, + [160] = { 70.5, 9.9, 1497, 10 }, + [161] = { 61.9, 7.4, 1497, 10 }, + [162] = { 61.8, 7.4, 1497, 10 }, + [163] = { 70.5, 7.3, 1497, 10 }, + [164] = { 70.4, 7.2, 1497, 10 }, + [165] = { 61.9, 7.2, 1497, 10 }, + [166] = { 61.8, 7.2, 1497, 10 }, + [167] = { 70.5, 7.1, 1497, 10 }, + [168] = { 70.4, 7.1, 1497, 10 }, + [169] = { 70.4, 7, 1497, 10 }, + [170] = { 59.2, 64.8, 1519, 10 }, + [171] = { 59.2, 64.7, 1519, 10 }, + [172] = { 59.2, 64.6, 1519, 10 }, + [173] = { 59, 64.3, 1519, 10 }, + [174] = { 58.9, 64.3, 1519, 10 }, + [175] = { 59, 64.2, 1519, 10 }, + [176] = { 58.7, 64, 1519, 10 }, + [177] = { 58.7, 63.9, 1519, 10 }, + [178] = { 55, 63.9, 1519, 10 }, + [179] = { 54.9, 63.9, 1519, 10 }, + [180] = { 53.3, 63.8, 1519, 10 }, + [181] = { 54.9, 63.8, 1519, 10 }, + [182] = { 55, 63.8, 1519, 10 }, + [183] = { 58.7, 63.8, 1519, 10 }, + [184] = { 53.4, 63.7, 1519, 10 }, + [185] = { 53.3, 63.7, 1519, 10 }, + [186] = { 56.1, 63.2, 1519, 10 }, + [187] = { 56.2, 63.2, 1519, 10 }, + [188] = { 56.1, 63.1, 1519, 10 }, + [189] = { 56.2, 63.1, 1519, 10 }, + [190] = { 56.1, 63, 1519, 10 }, + [191] = { 54.4, 62.9, 1519, 10 }, + [192] = { 54.4, 62.8, 1519, 10 }, + [193] = { 54.6, 62.5, 1519, 10 }, + [194] = { 54.7, 62.5, 1519, 10 }, + [195] = { 54.6, 62.4, 1519, 10 }, + [196] = { 55.9, 61.1, 1519, 10 }, + [197] = { 55.8, 61.1, 1519, 10 }, + [198] = { 56, 61.1, 1519, 10 }, + [199] = { 54.6, 60.2, 1519, 10 }, + [200] = { 54.7, 60.2, 1519, 10 }, + [201] = { 54.6, 60.1, 1519, 10 }, + [202] = { 56, 60, 1519, 10 }, + [203] = { 55.9, 60, 1519, 10 }, + [204] = { 55.9, 59.9, 1519, 10 }, + [205] = { 56, 59.8, 1519, 10 }, + [206] = { 14, 89.1, 1537, 10 }, + [207] = { 13.8, 89, 1537, 10 }, + [208] = { 13.9, 88.9, 1537, 10 }, + [209] = { 13.8, 88.9, 1537, 10 }, + [210] = { 13.9, 88.8, 1537, 10 }, + [211] = { 51, 100, 1637, 10 }, + [212] = { 51.1, 100, 1637, 10 }, + [213] = { 51.1, 99.9, 1637, 10 }, + [214] = { 51.1, 99.3, 1637, 10 }, + [215] = { 51.1, 99.2, 1637, 10 }, + [216] = { 51, 99.2, 1637, 10 }, + [217] = { 51, 99.1, 1637, 10 }, + [218] = { 51.1, 99.1, 1637, 10 }, + [219] = { 50.1, 89.3, 1637, 10 }, + [220] = { 50, 89.2, 1637, 10 }, + [221] = { 50.1, 89.2, 1637, 10 }, + [222] = { 50, 89.1, 1637, 10 }, + [223] = { 50.1, 89.1, 1637, 10 }, + [224] = { 51.5, 89.1, 1637, 10 }, + [225] = { 51.4, 89.1, 1637, 10 }, + [226] = { 51.4, 89, 1637, 10 }, + [227] = { 51.5, 89, 1637, 10 }, + [228] = { 51.4, 88.9, 1637, 10 }, + [229] = { 51.8, 82.3, 1637, 10 }, + [230] = { 51.7, 82.3, 1637, 10 }, + [231] = { 51.7, 82.2, 1637, 10 }, + [232] = { 51.7, 82.1, 1637, 10 }, + [233] = { 53, 82.1, 1637, 10 }, + [234] = { 52.9, 82.1, 1637, 10 }, + [235] = { 53, 82, 1637, 10 }, + [236] = { 52.9, 82, 1637, 10 }, + [237] = { 52.9, 81.2, 1637, 10 }, + [238] = { 53, 81.1, 1637, 10 }, + [239] = { 52.9, 81, 1637, 10 }, + [240] = { 51, 81, 1637, 10 }, + [241] = { 51.1, 80.9, 1637, 10 }, + [242] = { 51, 80.9, 1637, 10 }, + [243] = { 51, 80.8, 1637, 10 }, + [244] = { 51.1, 80.8, 1637, 10 }, + [245] = { 53.3, 87.1, 1638, 10 }, + [246] = { 53.4, 87.1, 1638, 10 }, + [247] = { 53.2, 87, 1638, 10 }, + [248] = { 53.3, 87, 1638, 10 }, + [249] = { 39.5, 67.8, 1638, 10 }, + [250] = { 39.6, 67.8, 1638, 10 }, + [251] = { 39.7, 67.8, 1638, 10 }, + [252] = { 39.8, 67.7, 1638, 10 }, + [253] = { 39.4, 67.7, 1638, 10 }, + [254] = { 39.7, 67.7, 1638, 10 }, + [255] = { 39.5, 67.7, 1638, 10 }, + [256] = { 39.4, 67.6, 1638, 10 }, + [257] = { 39.5, 67.6, 1638, 10 }, + [258] = { 39.7, 67.6, 1638, 10 }, + [259] = { 39.3, 62.4, 1638, 10 }, + [260] = { 39.4, 62.4, 1638, 10 }, + [261] = { 39.3, 62.3, 1638, 10 }, + [262] = { 39.4, 62.3, 1638, 10 }, + [263] = { 39, 62.1, 1638, 10 }, + [264] = { 39.1, 62.1, 1638, 10 }, + [265] = { 39.2, 62, 1638, 10 }, + [266] = { 39.1, 62, 1638, 10 }, + [267] = { 37.4, 57.7, 1638, 10 }, + [268] = { 37.5, 57.7, 1638, 10 }, + [269] = { 37.5, 57.6, 1638, 10 }, + [270] = { 42.5, 55.1, 1638, 10 }, + [271] = { 42.4, 55, 1638, 10 }, + [272] = { 42.5, 55, 1638, 10 }, + [273] = { 42.4, 54.9, 1638, 10 }, + [274] = { 42.2, 54.7, 1638, 10 }, + [275] = { 42.3, 54.6, 1638, 10 }, + [276] = { 42.2, 54.6, 1638, 10 }, + [277] = { 42.2, 54.5, 1638, 10 }, + [278] = { 58.2, 52.8, 1638, 10 }, + [279] = { 58.1, 52.7, 1638, 10 }, + [280] = { 58.1, 52.6, 1638, 10 }, + [281] = { 58.2, 52.6, 1638, 10 }, + [282] = { 58.2, 52.5, 1638, 10 }, + [283] = { 58.2, 51.6, 1638, 10 }, + [284] = { 58.3, 51.5, 1638, 10 }, + [285] = { 58.3, 51.4, 1638, 10 }, + [286] = { 58.2, 51.3, 1638, 10 }, + [287] = { 58.2, 50.5, 1638, 10 }, + [288] = { 58.2, 50.4, 1638, 10 }, + [289] = { 58.1, 50.4, 1638, 10 }, + [290] = { 58.2, 50.3, 1638, 10 }, + [291] = { 58.2, 50.2, 1638, 10 }, + }, + }, + [180909] = { + ["coords"] = { + [1] = { 53.7, 35.4, 493, 120 }, + }, + }, + [180910] = { + ["coords"] = { + [1] = { 53.7, 35.4, 493, 120 }, + }, + }, + [180913] = { + ["coords"] = { + [1] = { 51.2, 39.1, 1377, 900 }, + }, + }, + [180914] = { + ["coords"] = { + [1] = { 51.3, 38.8, 1377, 900 }, + }, + }, + [180915] = { + ["coords"] = { + [1] = { 50.9, 38.4, 1377, 900 }, + }, + }, + [181014] = { + ["coords"] = { + [1] = { 31.9, 49.9, 12, 120 }, + [2] = { 32.5, 49.1, 12, 120 }, + [3] = { 36.1, 29.9, 215, 120 }, + [4] = { 41.6, 28.1, 215, 120 }, + [5] = { 39.2, 27.4, 215, 120 }, + [6] = { 37.2, 27.2, 215, 120 }, + [7] = { 39.3, 26.6, 215, 120 }, + [8] = { 41.7, 26.5, 215, 120 }, + [9] = { 38.6, 24.8, 215, 120 }, + [10] = { 40.1, 24.4, 215, 120 }, + [11] = { 40.7, 22, 215, 120 }, + [12] = { 70.8, 91, 1519, 120 }, + [13] = { 72.5, 88.9, 1519, 120 }, + [14] = { 62.7, 74.7, 1519, 120 }, + [15] = { 64, 73.2, 1519, 120 }, + [16] = { 62.6, 64, 1519, 120 }, + [17] = { 47.4, 65.7, 1637, 120 }, + [18] = { 47.4, 65.3, 1637, 120 }, + [19] = { 31, 64.3, 1638, 120 }, + [20] = { 58.1, 55.5, 1638, 120 }, + [21] = { 46.2, 51.8, 1638, 120 }, + [22] = { 36.6, 51, 1638, 120 }, + [23] = { 46.8, 48.2, 1638, 120 }, + [24] = { 58.4, 47.5, 1638, 120 }, + [25] = { 43.3, 39.4, 1638, 120 }, + [26] = { 50.5, 37.1, 1638, 120 }, + }, + }, + [181015] = { + ["coords"] = { + [1] = { 32.1, 50.4, 12, 120 }, + [2] = { 32.8, 49.5, 12, 120 }, + [3] = { 66, 44.1, 1497, 120 }, + [4] = { 71.3, 92.3, 1519, 120 }, + [5] = { 73.2, 90, 1519, 120 }, + [6] = { 69.8, 89.3, 1519, 120 }, + [7] = { 69, 87.9, 1519, 120 }, + [8] = { 71.7, 87.2, 1519, 120 }, + [9] = { 70.8, 85.7, 1519, 120 }, + [10] = { 66.6, 82.5, 1519, 120 }, + [11] = { 68, 80.9, 1519, 120 }, + [12] = { 64.8, 79.1, 1519, 120 }, + [13] = { 66.2, 77.5, 1519, 120 }, + [14] = { 59.7, 68.6, 1519, 120 }, + [15] = { 60.6, 67.5, 1519, 120 }, + }, + }, + [181016] = { + ["coords"] = { + [1] = { 54, 34.8, 1, 120 }, + [2] = { 54.2, 34.5, 1, 120 }, + [3] = { 74.2, 13.4, 130, 120 }, + [4] = { 74.3, 13.2, 130, 120 }, + [5] = { 58.2, 94.1, 141, 120 }, + [6] = { 58.1, 94.1, 141, 120 }, + [7] = { 58.6, 94.1, 141, 120 }, + [8] = { 58, 93.7, 141, 120 }, + [9] = { 57.6, 93.2, 141, 120 }, + [10] = { 57.9, 93.2, 141, 120 }, + [11] = { 57.2, 92.9, 141, 120 }, + [12] = { 57.1, 92.4, 141, 120 }, + [13] = { 25.2, 63.7, 141, 120 }, + [14] = { 25.4, 63.7, 141, 120 }, + [15] = { 24.1, 55.8, 141, 120 }, + [16] = { 23.7, 55.7, 141, 120 }, + [17] = { 24, 55.7, 141, 120 }, + [18] = { 24.1, 55.4, 141, 120 }, + [19] = { 24, 55.4, 141, 120 }, + [20] = { 23.7, 55.3, 141, 120 }, + [21] = { 40.8, 32.9, 215, 120 }, + [22] = { 41, 32.5, 215, 120 }, + [23] = { 37, 30.1, 215, 120 }, + [24] = { 38.9, 29.8, 215, 120 }, + [25] = { 36.9, 29.7, 215, 120 }, + [26] = { 39.1, 29.6, 215, 120 }, + [27] = { 36.7, 29.3, 215, 120 }, + [28] = { 39.4, 29, 215, 120 }, + [29] = { 39.5, 28.9, 215, 120 }, + [30] = { 39.5, 28.6, 215, 120 }, + [31] = { 39.3, 28.6, 215, 120 }, + [32] = { 41.9, 27.5, 215, 120 }, + [33] = { 41.9, 27.2, 215, 120 }, + [34] = { 39.4, 27.1, 215, 120 }, + [35] = { 39.4, 26.8, 215, 120 }, + [36] = { 35.4, 23.5, 215, 120 }, + [37] = { 35.6, 23.4, 215, 120 }, + [38] = { 40.5, 23.3, 215, 120 }, + [39] = { 40.2, 23.2, 215, 120 }, + [40] = { 40, 23, 215, 120 }, + [41] = { 35.9, 22.2, 215, 120 }, + [42] = { 36.1, 21.8, 215, 120 }, + [43] = { 34.7, 21.2, 215, 120 }, + [44] = { 34.8, 20.9, 215, 120 }, + [45] = { 89.1, 51.1, 405, 120 }, + [46] = { 89.3, 50.9, 405, 120 }, + [47] = { 88.3, 48.4, 405, 120 }, + [48] = { 88.4, 48.1, 405, 120 }, + [49] = { 56.4, 91.6, 1497, 120 }, + [50] = { 56.6, 90.6, 1497, 120 }, + [51] = { 66.6, 45.1, 1497, 120 }, + [52] = { 65.4, 45, 1497, 120 }, + [53] = { 54.4, 67, 1519, 120 }, + [54] = { 55.1, 66.4, 1519, 120 }, + [55] = { 53.7, 64.9, 1519, 120 }, + [56] = { 53.5, 64.5, 1519, 120 }, + [57] = { 62.2, 62.5, 1519, 120 }, + [58] = { 62.4, 61.9, 1519, 120 }, + [59] = { 44.2, 38.2, 1519, 120 }, + [60] = { 45.1, 37.2, 1519, 120 }, + [61] = { 77.9, 18.6, 1519, 120 }, + [62] = { 77.6, 18.1, 1519, 120 }, + [63] = { 18, 85.1, 1537, 120 }, + [64] = { 19.6, 83.2, 1537, 120 }, + [65] = { 16.2, 81.7, 1537, 120 }, + [66] = { 21.1, 81.2, 1537, 120 }, + [67] = { 17.7, 79.8, 1537, 120 }, + [68] = { 19.3, 77.9, 1537, 120 }, + [69] = { 40.6, 55.5, 1537, 120 }, + [70] = { 39.9, 54.1, 1537, 120 }, + [71] = { 49.3, 70.4, 1637, 120 }, + [72] = { 50.3, 69.7, 1637, 120 }, + [73] = { 48.4, 68.6, 1637, 120 }, + [74] = { 54.9, 67.9, 1637, 120 }, + [75] = { 49.3, 67.5, 1637, 120 }, + [76] = { 54.5, 67.4, 1637, 120 }, + [77] = { 46.5, 66.7, 1637, 120 }, + [78] = { 45.2, 65.8, 1637, 120 }, + [79] = { 48.6, 64, 1637, 120 }, + [80] = { 45, 63.9, 1637, 120 }, + [81] = { 45.1, 62.6, 1637, 120 }, + [82] = { 47.9, 62, 1637, 120 }, + [83] = { 45.7, 61.9, 1637, 120 }, + [84] = { 47.2, 61.5, 1637, 120 }, + [85] = { 32.6, 38.2, 1637, 120 }, + [86] = { 32.6, 37.4, 1637, 120 }, + [87] = { 54.2, 79, 1638, 120 }, + [88] = { 55.1, 77, 1638, 120 }, + [89] = { 35.6, 65.4, 1638, 120 }, + [90] = { 44.8, 63.7, 1638, 120 }, + [91] = { 35.1, 63.3, 1638, 120 }, + [92] = { 45.9, 62.9, 1638, 120 }, + [93] = { 34, 61.4, 1638, 120 }, + [94] = { 47, 59.8, 1638, 120 }, + [95] = { 47.7, 59.4, 1638, 120 }, + [96] = { 47.6, 57.7, 1638, 120 }, + [97] = { 46.9, 57.6, 1638, 120 }, + [98] = { 59.4, 52.2, 1638, 120 }, + [99] = { 59.4, 51.2, 1638, 120 }, + [100] = { 47.1, 50.6, 1638, 120 }, + [101] = { 47, 49, 1638, 120 }, + [102] = { 27.6, 32.9, 1638, 120 }, + [103] = { 28.6, 32.2, 1638, 120 }, + [104] = { 52.7, 31.9, 1638, 120 }, + [105] = { 51.3, 31.3, 1638, 120 }, + [106] = { 50.2, 30.1, 1638, 120 }, + [107] = { 30.1, 26.1, 1638, 120 }, + [108] = { 31.1, 24.6, 1638, 120 }, + [109] = { 24.1, 21.6, 1638, 120 }, + [110] = { 24.6, 20.1, 1638, 120 }, + [111] = { 38.7, 80.8, 1657, 120 }, + [112] = { 39.4, 80.7, 1657, 120 }, + [113] = { 33.3, 42.4, 1657, 120 }, + [114] = { 31.3, 42.4, 1657, 120 }, + [115] = { 32.4, 42.3, 1657, 120 }, + [116] = { 33.3, 40.5, 1657, 120 }, + [117] = { 32.5, 40.5, 1657, 120 }, + [118] = { 31.3, 40.4, 1657, 120 }, + }, + }, + [181017] = { + ["coords"] = { + [1] = { 60.3, 35.5, 1, 120 }, + [2] = { 39.2, 30.3, 215, 120 }, + [3] = { 39.1, 29.8, 215, 120 }, + [4] = { 39.1, 28.8, 215, 120 }, + [5] = { 56, 70, 1519, 120 }, + [6] = { 52, 66.2, 1519, 120 }, + [7] = { 53.4, 64.9, 1519, 120 }, + [8] = { 53.7, 62.7, 1519, 120 }, + [9] = { 57.2, 89.5, 1537, 120 }, + [10] = { 55.7, 87.5, 1537, 120 }, + [11] = { 52, 85, 1537, 120 }, + [12] = { 51.1, 79.7, 1537, 120 }, + [13] = { 40.5, 76.8, 1537, 120 }, + [14] = { 71.6, 67.9, 1537, 120 }, + [15] = { 34, 62.5, 1537, 120 }, + [16] = { 30.9, 58.9, 1537, 120 }, + [17] = { 54.5, 56.7, 1537, 120 }, + [18] = { 20.7, 53.2, 1537, 120 }, + [19] = { 56.8, 52.8, 1537, 120 }, + [20] = { 18.5, 51.4, 1537, 120 }, + [21] = { 59, 44.7, 1537, 120 }, + [22] = { 24.7, 43.4, 1537, 120 }, + [23] = { 25.3, 37.2, 1537, 120 }, + [24] = { 54.8, 31, 1537, 120 }, + [25] = { 44.2, 30.6, 1537, 120 }, + [26] = { 29.7, 26.2, 1537, 120 }, + [27] = { 59.5, 23.2, 1537, 120 }, + [28] = { 50.7, 8.5, 1537, 120 }, + [29] = { 48, 8.3, 1537, 120 }, + [30] = { 37.5, 6.2, 1537, 120 }, + [31] = { 36.2, 4.3, 1537, 120 }, + [32] = { 54.1, 69.7, 1637, 120 }, + [33] = { 53.8, 69.4, 1637, 120 }, + [34] = { 53.6, 69.1, 1637, 120 }, + [35] = { 46.4, 66.3, 1638, 120 }, + [36] = { 45.7, 63.9, 1638, 120 }, + [37] = { 45.7, 58.8, 1638, 120 }, + }, + }, + [181018] = { + ["coords"] = { + [1] = { 45.5, 10.9, 14, 120 }, + [2] = { 46.6, 10.7, 14, 120 }, + [3] = { 45.3, 10.6, 14, 120 }, + [4] = { 46.4, 10.4, 14, 120 }, + [5] = { 42.8, 8.8, 14, 120 }, + [6] = { 67, 45.6, 1497, 120 }, + [7] = { 64.9, 45.6, 1497, 120 }, + [8] = { 67, 42.6, 1497, 120 }, + [9] = { 65, 42.6, 1497, 120 }, + [10] = { 55.4, 70.5, 1519, 120 }, + [11] = { 56.5, 69.5, 1519, 120 }, + [12] = { 53.3, 58.2, 1519, 120 }, + [13] = { 36.5, 62.3, 1537, 120 }, + [14] = { 35.6, 60.6, 1537, 120 }, + [15] = { 34.6, 58.9, 1537, 120 }, + [16] = { 49.1, 90.7, 1637, 120 }, + [17] = { 53.3, 89.9, 1637, 120 }, + [18] = { 48.3, 89.8, 1637, 120 }, + [19] = { 52.5, 89, 1637, 120 }, + [20] = { 38.7, 82.8, 1637, 120 }, + [21] = { 49.4, 68.8, 1637, 120 }, + [22] = { 53.6, 66, 1637, 120 }, + [23] = { 46.6, 64.1, 1637, 120 }, + [24] = { 52.9, 63.7, 1637, 120 }, + [25] = { 42.6, 61.8, 1637, 120 }, + [26] = { 38.4, 60, 1637, 120 }, + [27] = { 52.5, 58.7, 1637, 120 }, + [28] = { 51.5, 56.7, 1637, 120 }, + [29] = { 65.9, 41.3, 1637, 120 }, + [30] = { 66, 40.3, 1637, 120 }, + [31] = { 47, 39.9, 1637, 120 }, + [32] = { 45.3, 39.2, 1637, 120 }, + [33] = { 49.3, 38.4, 1637, 120 }, + [34] = { 40.8, 38.3, 1637, 120 }, + [35] = { 64.3, 37.9, 1637, 120 }, + [36] = { 64.5, 36.9, 1637, 120 }, + [37] = { 40.7, 35.5, 1637, 120 }, + [38] = { 48.5, 34, 1637, 120 }, + [39] = { 68.8, 28, 1637, 120 }, + [40] = { 69.6, 26, 1637, 120 }, + [41] = { 81.1, 23.6, 1637, 120 }, + [42] = { 81.8, 21.6, 1637, 120 }, + }, + }, + [181019] = { + ["coords"] = { + [1] = { 31.3, 50.1, 141, 120 }, + [2] = { 31.2, 49.9, 141, 120 }, + [3] = { 31.5, 49.8, 141, 120 }, + [4] = { 31.5, 49.7, 141, 120 }, + [5] = { 38.9, 29.7, 215, 120 }, + [6] = { 62.1, 45.6, 1497, 120 }, + [7] = { 69.5, 44.9, 1497, 120 }, + [8] = { 62.2, 42.5, 1497, 120 }, + [9] = { 65.3, 30.5, 1497, 120 }, + [10] = { 66.8, 30.5, 1497, 120 }, + [11] = { 65.3, 29.2, 1497, 120 }, + [12] = { 66.8, 29.2, 1497, 120 }, + [13] = { 66.2, 27.6, 1497, 120 }, + [14] = { 65.9, 27.6, 1497, 120 }, + [15] = { 66.8, 27.5, 1497, 120 }, + [16] = { 65.3, 27.5, 1497, 120 }, + [17] = { 66.9, 26.5, 1497, 120 }, + [18] = { 65.3, 26.4, 1497, 120 }, + [19] = { 66.8, 25.4, 1497, 120 }, + [20] = { 65.3, 25.4, 1497, 120 }, + [21] = { 55.9, 73, 1519, 120 }, + [22] = { 57.6, 71.6, 1519, 120 }, + [23] = { 55.4, 71.5, 1519, 120 }, + [24] = { 57.1, 70.1, 1519, 120 }, + [25] = { 52.8, 64.4, 1519, 120 }, + [26] = { 33.6, 63.7, 1537, 120 }, + [27] = { 33.1, 62.8, 1537, 120 }, + [28] = { 36.8, 62.6, 1537, 120 }, + [29] = { 36.4, 61.8, 1537, 120 }, + [30] = { 35.8, 60.8, 1537, 120 }, + [31] = { 35.4, 60.1, 1537, 120 }, + [32] = { 34.9, 59.1, 1537, 120 }, + [33] = { 34.5, 58.4, 1537, 120 }, + [34] = { 19, 52.5, 1537, 120 }, + [35] = { 19.2, 50.8, 1537, 120 }, + [36] = { 54.5, 67.8, 1637, 120 }, + [37] = { 54.5, 67.7, 1637, 120 }, + [38] = { 44.8, 63.3, 1638, 120 }, + [39] = { 67.8, 15.4, 1657, 120 }, + [40] = { 67.3, 14.3, 1657, 120 }, + [41] = { 69, 14, 1657, 120 }, + [42] = { 68.6, 13.2, 1657, 120 }, + }, + }, + [181020] = { + ["coords"] = { + [1] = { 29, 62.9, 141, 120 }, + [2] = { 25.2, 62.9, 141, 120 }, + [3] = { 25.5, 62.9, 141, 120 }, + [4] = { 29.8, 61.7, 141, 120 }, + [5] = { 29.6, 59.9, 141, 120 }, + [6] = { 30.7, 59.2, 141, 120 }, + [7] = { 28.9, 58.2, 141, 120 }, + [8] = { 28.9, 51.8, 141, 120 }, + [9] = { 30.4, 51.3, 141, 120 }, + [10] = { 28.6, 49.6, 141, 120 }, + [11] = { 42, 33.6, 215, 120 }, + [12] = { 41.1, 28.5, 215, 120 }, + [13] = { 39.4, 27.2, 215, 120 }, + [14] = { 39.1, 27.1, 215, 120 }, + [15] = { 39.4, 26.9, 215, 120 }, + [16] = { 39.1, 26.8, 215, 120 }, + [17] = { 40.8, 26.3, 215, 120 }, + [18] = { 39.5, 25.5, 215, 120 }, + [19] = { 39.8, 23.7, 215, 120 }, + [20] = { 44.9, 22.9, 215, 120 }, + [21] = { 46.3, 67.5, 1519, 120 }, + [22] = { 49.4, 62.9, 1519, 120 }, + [23] = { 54.2, 60.6, 1519, 120 }, + [24] = { 42.6, 59.5, 1519, 120 }, + [25] = { 54, 59.4, 1519, 120 }, + [26] = { 38.1, 58.7, 1519, 120 }, + [27] = { 54.1, 58.6, 1519, 120 }, + [28] = { 30.8, 55.1, 1519, 120 }, + [29] = { 51, 51.8, 1519, 120 }, + [30] = { 59.7, 51.5, 1519, 120 }, + [31] = { 32.4, 51, 1519, 120 }, + [32] = { 64.9, 49.2, 1519, 120 }, + [33] = { 47.6, 43.1, 1519, 120 }, + [34] = { 39.9, 42.1, 1519, 120 }, + [35] = { 65.2, 37.2, 1519, 120 }, + [36] = { 50.2, 34.5, 1519, 120 }, + [37] = { 63.5, 25.9, 1519, 120 }, + [38] = { 51.6, 21.2, 1519, 120 }, + [39] = { 59.9, 82.5, 1638, 120 }, + [40] = { 55.5, 57.3, 1638, 120 }, + [41] = { 47.1, 51, 1638, 120 }, + [42] = { 45.7, 50.4, 1638, 120 }, + [43] = { 47.4, 49.3, 1638, 120 }, + [44] = { 46, 48.8, 1638, 120 }, + [45] = { 54.2, 46.7, 1638, 120 }, + [46] = { 47.8, 42.6, 1638, 120 }, + [47] = { 49, 33.9, 1638, 120 }, + [48] = { 74.4, 29.8, 1638, 120 }, + [49] = { 56.6, 76.9, 1657, 120 }, + [50] = { 38.4, 76.8, 1657, 120 }, + [51] = { 39.7, 76.7, 1657, 120 }, + [52] = { 60.8, 70.9, 1657, 120 }, + [53] = { 59.4, 62.3, 1657, 120 }, + [54] = { 64.8, 59, 1657, 120 }, + [55] = { 56.1, 54, 1657, 120 }, + [56] = { 56.1, 23.5, 1657, 120 }, + [57] = { 63.6, 20.9, 1657, 120 }, + [58] = { 54.8, 12.8, 1657, 120 }, + }, + }, + [181021] = { + ["coords"] = { + [1] = { 54.1, 34.6, 1, 120 }, + [2] = { 45.5, 12.1, 14, 120 }, + [3] = { 46.4, 9.2, 14, 120 }, + [4] = { 30.9, 57.1, 141, 120 }, + [5] = { 31.2, 57.1, 141, 120 }, + [6] = { 31.6, 57.1, 141, 120 }, + [7] = { 36.1, 54.4, 141, 120 }, + [8] = { 35.2, 54.4, 141, 120 }, + [9] = { 30.9, 53.6, 141, 120 }, + [10] = { 31.2, 53.5, 141, 120 }, + [11] = { 31.5, 53.5, 141, 120 }, + [12] = { 38.9, 29.3, 215, 120 }, + [13] = { 18.8, 84.2, 1537, 120 }, + [14] = { 20.4, 82.3, 1537, 120 }, + [15] = { 16.9, 80.7, 1537, 120 }, + [16] = { 21.9, 80.4, 1537, 120 }, + [17] = { 18.4, 78.7, 1537, 120 }, + [18] = { 20, 76.8, 1537, 120 }, + [19] = { 58.9, 13.7, 1537, 120 }, + [20] = { 39.5, 12.4, 1537, 120 }, + [21] = { 49.1, 95.4, 1637, 120 }, + [22] = { 52.5, 84.3, 1637, 120 }, + [23] = { 46.2, 65.6, 1637, 120 }, + [24] = { 47.3, 65.5, 1637, 120 }, + [25] = { 45.6, 64.2, 1637, 120 }, + [26] = { 46.1, 62.9, 1637, 120 }, + [27] = { 47, 62.7, 1637, 120 }, + [28] = { 17.8, 60.6, 1637, 120 }, + [29] = { 44.7, 61.5, 1638, 120 }, + [30] = { 66.1, 49, 1657, 120 }, + [31] = { 67.5, 49, 1657, 120 }, + [32] = { 69.1, 48.9, 1657, 120 }, + [33] = { 90.7, 35.8, 1657, 120 }, + [34] = { 86.5, 35.7, 1657, 120 }, + [35] = { 65.8, 31.8, 1657, 120 }, + [36] = { 67.2, 31.8, 1657, 120 }, + [37] = { 68.7, 31.7, 1657, 120 }, + }, + }, + [181022] = { + ["coords"] = { + [1] = { 58.4, 17, 1519, 120 }, + [2] = { 59.5, 44.4, 1637, 120 }, + }, + }, + [181024] = { + ["coords"] = { + [1] = { 73.1, 12.8, 130, 120 }, + [2] = { 25.4, 64.1, 141, 120 }, + [3] = { 25.3, 63.9, 141, 120 }, + [4] = { 42, 27.5, 215, 120 }, + [5] = { 42, 27.2, 215, 120 }, + [6] = { 51.6, 89.1, 1497, 120 }, + [7] = { 51.5, 89.1, 1497, 120 }, + [8] = { 44.6, 49.5, 1537, 120 }, + [9] = { 59.9, 52.5, 1638, 120 }, + [10] = { 59.9, 50.8, 1638, 120 }, + [11] = { 39.2, 82.4, 1657, 120 }, + [12] = { 39, 81.4, 1657, 120 }, + }, + }, + [181025] = { + ["coords"] = { + [1] = { 32.2, 49.5, 12, 120 }, + [2] = { 8.5, 61.8, 28, 120 }, + [3] = { 55.5, 71.1, 85, 120 }, + [4] = { 55.4, 70.9, 85, 120 }, + [5] = { 61.9, 68.2, 85, 120 }, + [6] = { 74.6, 14, 130, 120 }, + [7] = { 73.9, 13.7, 130, 120 }, + [8] = { 74.8, 13, 130, 120 }, + [9] = { 74.1, 12.7, 130, 120 }, + [10] = { 25.2, 64.1, 141, 120 }, + [11] = { 25.5, 64.1, 141, 120 }, + [12] = { 25.2, 63.9, 141, 120 }, + [13] = { 25.5, 63.9, 141, 120 }, + [14] = { 29.6, 56.7, 141, 120 }, + [15] = { 29.6, 54.1, 141, 120 }, + [16] = { 42, 27.6, 215, 120 }, + [17] = { 42.3, 27.5, 215, 120 }, + [18] = { 42.2, 27.3, 215, 120 }, + [19] = { 42, 27.1, 215, 120 }, + [20] = { 58.1, 94.1, 1497, 120 }, + [21] = { 55.1, 92.9, 1497, 120 }, + [22] = { 58.9, 89.8, 1497, 120 }, + [23] = { 55.9, 88.6, 1497, 120 }, + [24] = { 65.9, 73.4, 1497, 120 }, + [25] = { 85.5, 44.3, 1497, 120 }, + [26] = { 36.3, 28.4, 1497, 120 }, + [27] = { 35.6, 27.3, 1497, 120 }, + [28] = { 66.1, 24.8, 1497, 120 }, + [29] = { 66.2, 14.8, 1497, 120 }, + [30] = { 71.6, 90, 1519, 120 }, + [31] = { 79.5, 17.4, 1519, 120 }, + [32] = { 78.8, 16.1, 1519, 120 }, + [33] = { 34.1, 82.3, 1537, 120 }, + [34] = { 28.4, 76.2, 1537, 120 }, + [35] = { 58, 74, 1537, 120 }, + [36] = { 62.3, 68.7, 1537, 120 }, + [37] = { 23.9, 68.1, 1537, 120 }, + [38] = { 21, 58.5, 1537, 120 }, + [39] = { 45.2, 49.9, 1537, 120 }, + [40] = { 44.3, 48.5, 1537, 120 }, + [41] = { 66, 28.8, 1537, 120 }, + [42] = { 31, 25, 1537, 120 }, + [43] = { 62.2, 21.9, 1537, 120 }, + [44] = { 35.3, 19.6, 1537, 120 }, + [45] = { 31.8, 38.9, 1637, 120 }, + [46] = { 40.8, 38.2, 1637, 120 }, + [47] = { 31.7, 36.8, 1637, 120 }, + [48] = { 40.7, 35.6, 1637, 120 }, + [49] = { 59.9, 53.1, 1638, 120 }, + [50] = { 61.4, 52.2, 1638, 120 }, + [51] = { 61.2, 51.3, 1638, 120 }, + [52] = { 60.1, 50.2, 1638, 120 }, + [53] = { 38.5, 82.6, 1657, 120 }, + [54] = { 39.9, 82.3, 1657, 120 }, + [55] = { 38.4, 81.4, 1657, 120 }, + [56] = { 39.7, 81.4, 1657, 120 }, + [57] = { 59.7, 47, 1657, 120 }, + [58] = { 59.5, 34.4, 1657, 120 }, + }, + }, + [181027] = { + ["coords"] = { + [1] = { 41.6, 10.1, 14, 120 }, + [2] = { 42.2, 9.9, 14, 120 }, + [3] = { 41.9, 9.1, 14, 120 }, + [4] = { 42.4, 8.6, 14, 120 }, + [5] = { 42.3, 8.2, 14, 120 }, + [6] = { 41.8, 8, 14, 120 }, + [7] = { 7.6, 63.3, 28, 120 }, + [8] = { 7.8, 61.8, 28, 120 }, + [9] = { 60.9, 69.4, 85, 120 }, + [10] = { 23.5, 63.2, 141, 120 }, + [11] = { 23.7, 62.4, 141, 120 }, + [12] = { 22.9, 62.3, 141, 120 }, + [13] = { 24.1, 62.1, 141, 120 }, + [14] = { 26.3, 61.3, 141, 120 }, + [15] = { 24.2, 61.2, 141, 120 }, + [16] = { 28, 60.4, 141, 120 }, + [17] = { 22.9, 60.3, 141, 120 }, + [18] = { 24.2, 60.3, 141, 120 }, + [19] = { 23.5, 60.3, 141, 120 }, + [20] = { 25.5, 60.1, 141, 120 }, + [21] = { 26.7, 60.1, 141, 120 }, + [22] = { 26.3, 60.1, 141, 120 }, + [23] = { 24.7, 59.4, 141, 120 }, + [24] = { 23.6, 59.4, 141, 120 }, + [25] = { 26.1, 59.4, 141, 120 }, + [26] = { 25.5, 59.4, 141, 120 }, + [27] = { 26.8, 59.3, 141, 120 }, + [28] = { 28, 59.3, 141, 120 }, + [29] = { 22.8, 59.2, 141, 120 }, + [30] = { 27.5, 59.2, 141, 120 }, + [31] = { 26.2, 58.4, 141, 120 }, + [32] = { 27.4, 58.4, 141, 120 }, + [33] = { 25.5, 58.3, 141, 120 }, + [34] = { 22.8, 58.3, 141, 120 }, + [35] = { 24, 58.2, 141, 120 }, + [36] = { 23.6, 58.2, 141, 120 }, + [37] = { 23.6, 57.5, 141, 120 }, + [38] = { 22.8, 57.5, 141, 120 }, + [39] = { 25.5, 57.4, 141, 120 }, + [40] = { 27.6, 57.3, 141, 120 }, + [41] = { 24.9, 57.3, 141, 120 }, + [42] = { 27.9, 57.2, 141, 120 }, + [43] = { 24.1, 56.6, 141, 120 }, + [44] = { 26.2, 56.4, 141, 120 }, + [45] = { 27.5, 56.4, 141, 120 }, + [46] = { 28, 56.3, 141, 120 }, + [47] = { 26.8, 56.2, 141, 120 }, + [48] = { 27, 55.4, 141, 120 }, + [49] = { 28.2, 55.4, 141, 120 }, + [50] = { 28.1, 54.5, 141, 120 }, + [51] = { 26.3, 54.4, 141, 120 }, + [52] = { 24.2, 54.3, 141, 120 }, + [53] = { 26.8, 54.3, 141, 120 }, + [54] = { 24.7, 54.2, 141, 120 }, + [55] = { 27.4, 54.2, 141, 120 }, + [56] = { 27.8, 53.5, 141, 120 }, + [57] = { 24.8, 53.5, 141, 120 }, + [58] = { 25.4, 53.5, 141, 120 }, + [59] = { 24.2, 53.5, 141, 120 }, + [60] = { 23.6, 53.4, 141, 120 }, + [61] = { 22.9, 53.4, 141, 120 }, + [62] = { 26.6, 53.3, 141, 120 }, + [63] = { 28.7, 53.3, 141, 120 }, + [64] = { 24.9, 52.8, 141, 120 }, + [65] = { 24.2, 52.8, 141, 120 }, + [66] = { 23.6, 52.8, 141, 120 }, + [67] = { 28.2, 52.7, 141, 120 }, + [68] = { 25.3, 52.6, 141, 120 }, + [69] = { 26.6, 52.5, 141, 120 }, + [70] = { 27.3, 52.3, 141, 120 }, + [71] = { 37.9, 29, 215, 120 }, + [72] = { 38, 28.9, 215, 120 }, + [73] = { 37.9, 28.7, 215, 120 }, + [74] = { 65.8, 68.7, 1497, 120 }, + [75] = { 70, 68, 1497, 120 }, + [76] = { 61.3, 67.8, 1497, 120 }, + [77] = { 74.3, 65.5, 1497, 120 }, + [78] = { 57.7, 65.4, 1497, 120 }, + [79] = { 77.7, 61.9, 1497, 120 }, + [80] = { 54.3, 61.4, 1497, 120 }, + [81] = { 80.1, 56.6, 1497, 120 }, + [82] = { 51.5, 55.7, 1497, 120 }, + [83] = { 81.7, 50.7, 1497, 120 }, + [84] = { 50, 49.9, 1497, 120 }, + [85] = { 69.3, 46.3, 1497, 120 }, + [86] = { 62.8, 46.1, 1497, 120 }, + [87] = { 82.4, 44.1, 1497, 120 }, + [88] = { 49.6, 43.9, 1497, 120 }, + [89] = { 69.3, 41.9, 1497, 120 }, + [90] = { 62.9, 41.6, 1497, 120 }, + [91] = { 81.5, 38.1, 1497, 120 }, + [92] = { 50.4, 37.7, 1497, 120 }, + [93] = { 80.5, 32.2, 1497, 120 }, + [94] = { 52.4, 30.8, 1497, 120 }, + [95] = { 78, 27, 1497, 120 }, + [96] = { 56, 24.5, 1497, 120 }, + [97] = { 74.3, 22.8, 1497, 120 }, + [98] = { 70.3, 20.3, 1497, 120 }, + [99] = { 61.8, 20.3, 1497, 120 }, + [100] = { 66, 19.6, 1497, 120 }, + [101] = { 52.5, 29.1, 1519, 120 }, + [102] = { 53, 28.5, 1519, 120 }, + [103] = { 53.6, 27.8, 1519, 120 }, + [104] = { 54.1, 27.3, 1519, 120 }, + [105] = { 51.7, 27.2, 1519, 120 }, + [106] = { 52.1, 26.9, 1519, 120 }, + [107] = { 52.7, 26.2, 1519, 120 }, + [108] = { 51.8, 25.7, 1519, 120 }, + [109] = { 53.2, 25.6, 1519, 120 }, + [110] = { 51.4, 25.1, 1519, 120 }, + [111] = { 50.6, 23.9, 1519, 120 }, + [112] = { 49.9, 22.6, 1519, 120 }, + [113] = { 34.5, 87.9, 1637, 120 }, + [114] = { 36.6, 87.1, 1637, 120 }, + [115] = { 35.4, 83.9, 1637, 120 }, + [116] = { 37.3, 82.1, 1637, 120 }, + [117] = { 36.9, 80.6, 1637, 120 }, + [118] = { 35.2, 79.8, 1637, 120 }, + [119] = { 68.8, 33.4, 1637, 120 }, + [120] = { 70.2, 32.8, 1637, 120 }, + [121] = { 67.3, 30.6, 1637, 120 }, + [122] = { 70.8, 30, 1637, 120 }, + [123] = { 39.8, 59.8, 1638, 120 }, + [124] = { 40.4, 59.1, 1638, 120 }, + [125] = { 39.8, 58.5, 1638, 120 }, + [126] = { 30.1, 78.2, 1657, 120 }, + [127] = { 31.2, 74.4, 1657, 120 }, + [128] = { 27.2, 74, 1657, 120 }, + [129] = { 33.2, 73.1, 1657, 120 }, + [130] = { 44, 69.1, 1657, 120 }, + [131] = { 33.4, 68.6, 1657, 120 }, + [132] = { 52.1, 64.6, 1657, 120 }, + [133] = { 27.3, 64.3, 1657, 120 }, + [134] = { 33.6, 64.2, 1657, 120 }, + [135] = { 30.4, 64.1, 1657, 120 }, + [136] = { 39.9, 63.3, 1657, 120 }, + [137] = { 45.9, 63.2, 1657, 120 }, + [138] = { 43.9, 63.2, 1657, 120 }, + [139] = { 36.2, 60.1, 1657, 120 }, + [140] = { 30.8, 60, 1657, 120 }, + [141] = { 42.8, 59.8, 1657, 120 }, + [142] = { 39.9, 59.7, 1657, 120 }, + [143] = { 46.1, 59.6, 1657, 120 }, + [144] = { 51.7, 59.4, 1657, 120 }, + [145] = { 27, 59.1, 1657, 120 }, + [146] = { 49.3, 58.8, 1657, 120 }, + [147] = { 43.4, 55.3, 1657, 120 }, + [148] = { 49.1, 55.1, 1657, 120 }, + [149] = { 39.8, 54.6, 1657, 120 }, + [150] = { 27.1, 54.4, 1657, 120 }, + [151] = { 32.5, 54.3, 1657, 120 }, + [152] = { 30.7, 54.2, 1657, 120 }, + [153] = { 30.9, 50.8, 1657, 120 }, + [154] = { 27, 50.7, 1657, 120 }, + [155] = { 39.8, 50.1, 1657, 120 }, + [156] = { 50, 49.9, 1657, 120 }, + [157] = { 36.9, 49.6, 1657, 120 }, + [158] = { 51.6, 49.5, 1657, 120 }, + [159] = { 33, 46.4, 1657, 120 }, + [160] = { 43.2, 45.7, 1657, 120 }, + [161] = { 49.4, 45.6, 1657, 120 }, + [162] = { 52.1, 44.9, 1657, 120 }, + [163] = { 46.1, 44.7, 1657, 120 }, + [164] = { 46.9, 40.7, 1657, 120 }, + [165] = { 53, 40.6, 1657, 120 }, + [166] = { 52.4, 36.2, 1657, 120 }, + [167] = { 43.5, 35.8, 1657, 120 }, + [168] = { 33.7, 35.5, 1657, 120 }, + [169] = { 46.2, 35.4, 1657, 120 }, + [170] = { 36.1, 35.2, 1657, 120 }, + [171] = { 49, 34.8, 1657, 120 }, + [172] = { 51, 31.6, 1657, 120 }, + [173] = { 36.7, 31.4, 1657, 120 }, + [174] = { 39.3, 31.4, 1657, 120 }, + [175] = { 33.6, 31.4, 1657, 120 }, + [176] = { 30.9, 31.3, 1657, 120 }, + [177] = { 27.3, 31, 1657, 120 }, + [178] = { 45.1, 30.8, 1657, 120 }, + [179] = { 55.5, 30.5, 1657, 120 }, + [180] = { 37, 28.1, 1657, 120 }, + [181] = { 33.6, 28.1, 1657, 120 }, + [182] = { 30.6, 28.1, 1657, 120 }, + [183] = { 52.7, 27.5, 1657, 120 }, + [184] = { 39.1, 27, 1657, 120 }, + [185] = { 45.3, 26.6, 1657, 120 }, + [186] = { 48.6, 25.8, 1657, 120 }, + }, + }, + [181029] = { + ["coords"] = { + [1] = { 43.4, 70.6, 12, 25 }, + [2] = { 36, 35.1, 215, 25 }, + }, + }, + [181045] = { + ["coords"] = {}, + }, + [181046] = { + ["coords"] = {}, + }, + [181047] = { + ["coords"] = {}, + }, + [181048] = { + ["coords"] = {}, + }, + [181049] = { + ["coords"] = {}, + }, + [181050] = { + ["coords"] = {}, + }, + [181051] = { + ["coords"] = {}, + }, + [181052] = { + ["coords"] = {}, + }, + [181053] = { + ["coords"] = { + [1] = { 75.8, 21.8, 15, 10 }, + [2] = { 76.9, 19.8, 15, 10 }, + [3] = { 77.5, 19.2, 15, 10 }, + [4] = { 77.3, 18.7, 15, 10 }, + [5] = { 76.6, 17.5, 15, 10 }, + [6] = { 75.1, 15, 15, 10 }, + [7] = { 75, 14.5, 15, 10 }, + }, + }, + [181054] = { + ["coords"] = {}, + }, + [181055] = { + ["coords"] = { + [1] = { 30.3, 56.7, 141, 120 }, + [2] = { 30.3, 56.3, 141, 120 }, + [3] = { 30.3, 56, 141, 120 }, + [4] = { 30.3, 54.7, 141, 120 }, + [5] = { 30.3, 54.4, 141, 120 }, + [6] = { 30.3, 54.1, 141, 120 }, + [7] = { 31.4, 50.4, 141, 120 }, + [8] = { 31.2, 50.1, 141, 120 }, + [9] = { 31, 49.7, 141, 120 }, + [10] = { 66.3, 65.1, 1519, 120 }, + [11] = { 67.8, 63.3, 1519, 120 }, + [12] = { 30.5, 73.3, 1637, 120 }, + [13] = { 40.5, 36.9, 1637, 120 }, + [14] = { 76.4, 33, 1637, 120 }, + [15] = { 75, 15.7, 1637, 120 }, + [16] = { 63.1, 46.8, 1657, 120 }, + [17] = { 63, 45.2, 1657, 120 }, + [18] = { 63, 43.6, 1657, 120 }, + [19] = { 62.8, 37.5, 1657, 120 }, + [20] = { 62.9, 35.8, 1657, 120 }, + [21] = { 62.8, 34.2, 1657, 120 }, + [22] = { 68.2, 16.9, 1657, 120 }, + [23] = { 67.4, 15.2, 1657, 120 }, + [24] = { 66.6, 13.3, 1657, 120 }, + }, + }, + [181056] = { + ["coords"] = {}, + }, + [181057] = { + ["coords"] = {}, + }, + [181058] = { + ["coords"] = {}, + }, + [181059] = { + ["coords"] = {}, + }, + [181060] = { + ["coords"] = { + [1] = { 25.4, 56.8, 141, 120 }, + [2] = { 25, 56.7, 141, 120 }, + [3] = { 25.6, 56.7, 141, 120 }, + [4] = { 24.9, 56.6, 141, 120 }, + [5] = { 24.8, 56.4, 141, 120 }, + [6] = { 25.8, 56.4, 141, 120 }, + [7] = { 25.9, 56.2, 141, 120 }, + [8] = { 24.8, 56.2, 141, 120 }, + [9] = { 26, 56.1, 141, 120 }, + [10] = { 26.1, 56, 141, 120 }, + [11] = { 24.7, 55.9, 141, 120 }, + [12] = { 26.1, 55.8, 141, 120 }, + [13] = { 26.2, 55.7, 141, 120 }, + [14] = { 24.7, 55.3, 141, 120 }, + [15] = { 26.1, 55.1, 141, 120 }, + [16] = { 24.8, 55, 141, 120 }, + [17] = { 25.9, 54.9, 141, 120 }, + [18] = { 25.8, 54.8, 141, 120 }, + [19] = { 24.8, 54.8, 141, 120 }, + [20] = { 25.7, 54.7, 141, 120 }, + [21] = { 24.9, 54.6, 141, 120 }, + [22] = { 25, 54.5, 141, 120 }, + [23] = { 25.7, 54.4, 141, 120 }, + [24] = { 25.2, 54.3, 141, 120 }, + [25] = { 25.3, 54.2, 141, 120 }, + [26] = { 31.3, 50.2, 141, 120 }, + [27] = { 31.2, 50, 141, 120 }, + [28] = { 31.2, 49.9, 141, 120 }, + [29] = { 42, 33.1, 215, 120 }, + [30] = { 37.9, 29.8, 215, 120 }, + [31] = { 38, 29.8, 215, 120 }, + [32] = { 37.7, 29.8, 215, 120 }, + [33] = { 37.6, 29.8, 215, 120 }, + [34] = { 37.3, 29.7, 215, 120 }, + [35] = { 38.3, 29.4, 215, 120 }, + [36] = { 38.3, 29.3, 215, 120 }, + [37] = { 38.9, 28.7, 215, 120 }, + [38] = { 38.9, 28.6, 215, 120 }, + [39] = { 37.2, 28.4, 215, 120 }, + [40] = { 37.2, 28.3, 215, 120 }, + [41] = { 41, 28.1, 215, 120 }, + [42] = { 38.2, 28.1, 215, 120 }, + [43] = { 40.9, 28.1, 215, 120 }, + [44] = { 40.7, 28, 215, 120 }, + [45] = { 39, 27.9, 215, 120 }, + [46] = { 38.3, 27.8, 215, 120 }, + [47] = { 39, 27.8, 215, 120 }, + [48] = { 40.1, 27.5, 215, 120 }, + [49] = { 40, 26.9, 215, 120 }, + [50] = { 40.6, 26.7, 215, 120 }, + [51] = { 40.9, 26.6, 215, 120 }, + [52] = { 41, 26.6, 215, 120 }, + [53] = { 41.3, 26.3, 215, 120 }, + [54] = { 39.3, 26, 215, 120 }, + [55] = { 39.3, 25.9, 215, 120 }, + [56] = { 39.3, 25.6, 215, 120 }, + [57] = { 39.3, 25.5, 215, 120 }, + [58] = { 38.9, 25.3, 215, 120 }, + [59] = { 39.1, 24.7, 215, 120 }, + [60] = { 39.7, 24.6, 215, 120 }, + [61] = { 39.8, 24.6, 215, 120 }, + [62] = { 39.4, 24.3, 215, 120 }, + [63] = { 39.5, 24.2, 215, 120 }, + [64] = { 39.9, 23.9, 215, 120 }, + [65] = { 39.8, 23.9, 215, 120 }, + [66] = { 44.6, 23.2, 215, 120 }, + [67] = { 44.6, 23.1, 215, 120 }, + [68] = { 44.1, 22.5, 215, 120 }, + [69] = { 44, 22.4, 215, 120 }, + [70] = { 35.4, 21.3, 215, 120 }, + [71] = { 35.4, 21.2, 215, 120 }, + [72] = { 35.8, 21.1, 215, 120 }, + [73] = { 35.7, 21, 215, 120 }, + [74] = { 89, 48.5, 405, 120 }, + [75] = { 89, 48.4, 405, 120 }, + [76] = { 66.9, 50.5, 1497, 120 }, + [77] = { 65, 50.5, 1497, 120 }, + [78] = { 67.3, 50, 1497, 120 }, + [79] = { 64.6, 50, 1497, 120 }, + [80] = { 67.9, 49.6, 1497, 120 }, + [81] = { 64, 49.5, 1497, 120 }, + [82] = { 68.4, 49.4, 1497, 120 }, + [83] = { 63.5, 49.3, 1497, 120 }, + [84] = { 68.6, 48.8, 1497, 120 }, + [85] = { 63.2, 48.7, 1497, 120 }, + [86] = { 69.1, 48.1, 1497, 120 }, + [87] = { 62.8, 48, 1497, 120 }, + [88] = { 69.5, 47.7, 1497, 120 }, + [89] = { 62.4, 47.6, 1497, 120 }, + [90] = { 69.6, 46.9, 1497, 120 }, + [91] = { 62.3, 46.8, 1497, 120 }, + [92] = { 66.5, 46.7, 1497, 120 }, + [93] = { 65.4, 46.7, 1497, 120 }, + [94] = { 69.9, 46, 1497, 120 }, + [95] = { 62, 45.9, 1497, 120 }, + [96] = { 70.2, 45.5, 1497, 120 }, + [97] = { 61.7, 45.3, 1497, 120 }, + [98] = { 67.7, 44.9, 1497, 120 }, + [99] = { 64.2, 44.9, 1497, 120 }, + [100] = { 67.8, 43.3, 1497, 120 }, + [101] = { 64.3, 43.2, 1497, 120 }, + [102] = { 70.3, 42.9, 1497, 120 }, + [103] = { 61.7, 42.7, 1497, 120 }, + [104] = { 69.9, 42.3, 1497, 120 }, + [105] = { 62, 42.2, 1497, 120 }, + [106] = { 69.7, 41.4, 1497, 120 }, + [107] = { 62.3, 41.3, 1497, 120 }, + [108] = { 69.6, 40.6, 1497, 120 }, + [109] = { 62.4, 40.5, 1497, 120 }, + [110] = { 69.1, 40.2, 1497, 120 }, + [111] = { 62.8, 40.1, 1497, 120 }, + [112] = { 68.7, 39.5, 1497, 120 }, + [113] = { 63.3, 39.4, 1497, 120 }, + [114] = { 68.5, 38.9, 1497, 120 }, + [115] = { 63.6, 38.8, 1497, 120 }, + [116] = { 67.9, 38.7, 1497, 120 }, + [117] = { 64, 38.6, 1497, 120 }, + [118] = { 67.3, 38.2, 1497, 120 }, + [119] = { 64.7, 38.1, 1497, 120 }, + [120] = { 66.5, 37.8, 1497, 120 }, + [121] = { 65.5, 37.8, 1497, 120 }, + [122] = { 67, 37.7, 1497, 120 }, + [123] = { 65, 37.7, 1497, 120 }, + [124] = { 55.9, 73.1, 1519, 120 }, + [125] = { 55.9, 72.9, 1519, 120 }, + [126] = { 57.7, 71.6, 1519, 120 }, + [127] = { 55.4, 71.6, 1519, 120 }, + [128] = { 57.6, 71.6, 1519, 120 }, + [129] = { 55.4, 71.5, 1519, 120 }, + [130] = { 57.1, 70.2, 1519, 120 }, + [131] = { 57.1, 70.1, 1519, 120 }, + [132] = { 54.4, 65.2, 1519, 120 }, + [133] = { 54.5, 65.2, 1519, 120 }, + [134] = { 54.4, 65.1, 1519, 120 }, + [135] = { 54.6, 65.1, 1519, 120 }, + [136] = { 54.3, 65.1, 1519, 120 }, + [137] = { 54.5, 65, 1519, 120 }, + [138] = { 54.7, 65, 1519, 120 }, + [139] = { 54.2, 65, 1519, 120 }, + [140] = { 54.4, 65, 1519, 120 }, + [141] = { 54.2, 64.9, 1519, 120 }, + [142] = { 54.5, 64.9, 1519, 120 }, + [143] = { 54.4, 64.9, 1519, 120 }, + [144] = { 54.6, 64.9, 1519, 120 }, + [145] = { 54.3, 64.9, 1519, 120 }, + [146] = { 54.7, 64.9, 1519, 120 }, + [147] = { 54.4, 64.8, 1519, 120 }, + [148] = { 54.5, 64.8, 1519, 120 }, + [149] = { 54.2, 64.8, 1519, 120 }, + [150] = { 54.6, 64.8, 1519, 120 }, + [151] = { 54.3, 64.7, 1519, 120 }, + [152] = { 54.4, 64.7, 1519, 120 }, + [153] = { 54.5, 64.7, 1519, 120 }, + [154] = { 54.7, 64.7, 1519, 120 }, + [155] = { 54.6, 64.7, 1519, 120 }, + [156] = { 54.2, 64.7, 1519, 120 }, + [157] = { 54.5, 64.6, 1519, 120 }, + [158] = { 54.4, 64.6, 1519, 120 }, + [159] = { 54.7, 64.6, 1519, 120 }, + [160] = { 54.3, 64.5, 1519, 120 }, + [161] = { 54.6, 64.5, 1519, 120 }, + [162] = { 54.6, 64.4, 1519, 120 }, + [163] = { 54.3, 64.4, 1519, 120 }, + [164] = { 54.5, 64.4, 1519, 120 }, + [165] = { 54.4, 64.4, 1519, 120 }, + [166] = { 37.3, 60.5, 1537, 120 }, + [167] = { 36.9, 59.9, 1537, 120 }, + [168] = { 36.2, 58.5, 1537, 120 }, + [169] = { 35.9, 58.1, 1537, 120 }, + [170] = { 20.4, 52.2, 1537, 120 }, + [171] = { 18.5, 52, 1537, 120 }, + [172] = { 20.4, 51.9, 1537, 120 }, + [173] = { 20.3, 51.7, 1537, 120 }, + [174] = { 20.3, 51.5, 1537, 120 }, + [175] = { 20.3, 51.1, 1537, 120 }, + [176] = { 20.3, 50.9, 1537, 120 }, + [177] = { 18.4, 50.8, 1537, 120 }, + [178] = { 20.3, 50.6, 1537, 120 }, + [179] = { 20.2, 50.4, 1537, 120 }, + [180] = { 54.5, 67.8, 1637, 120 }, + [181] = { 46, 54.5, 1637, 120 }, + [182] = { 45.9, 54.3, 1637, 120 }, + [183] = { 45.7, 53.9, 1637, 120 }, + [184] = { 45.6, 53.7, 1637, 120 }, + [185] = { 45.4, 53.4, 1637, 120 }, + [186] = { 45.3, 53.2, 1637, 120 }, + [187] = { 45.2, 52.9, 1637, 120 }, + [188] = { 44.2, 51, 1637, 120 }, + [189] = { 44.1, 50.8, 1637, 120 }, + [190] = { 43.9, 50.5, 1637, 120 }, + [191] = { 43.7, 49.9, 1637, 120 }, + [192] = { 60.2, 80.1, 1638, 120 }, + [193] = { 60, 80, 1638, 120 }, + [194] = { 39.9, 64, 1638, 120 }, + [195] = { 40.1, 63.8, 1638, 120 }, + [196] = { 38.7, 63.7, 1638, 120 }, + [197] = { 38.5, 63.6, 1638, 120 }, + [198] = { 36.8, 63.3, 1638, 120 }, + [199] = { 37, 63.1, 1638, 120 }, + [200] = { 41.7, 61.6, 1638, 120 }, + [201] = { 41.8, 61.4, 1638, 120 }, + [202] = { 44.6, 58.4, 1638, 120 }, + [203] = { 44.5, 58, 1638, 120 }, + [204] = { 36.4, 56.9, 1638, 120 }, + [205] = { 36.3, 56.5, 1638, 120 }, + [206] = { 55.1, 55.5, 1638, 120 }, + [207] = { 41.6, 55.5, 1638, 120 }, + [208] = { 54.8, 55.5, 1638, 120 }, + [209] = { 41.4, 55.2, 1638, 120 }, + [210] = { 53.7, 54.9, 1638, 120 }, + [211] = { 53.5, 54.7, 1638, 120 }, + [212] = { 45.2, 54.4, 1638, 120 }, + [213] = { 41.8, 54.1, 1638, 120 }, + [214] = { 45.2, 54.1, 1638, 120 }, + [215] = { 41.7, 53.8, 1638, 120 }, + [216] = { 50.7, 52.2, 1638, 120 }, + [217] = { 50.5, 52.2, 1638, 120 }, + [218] = { 50.2, 49.3, 1638, 120 }, + [219] = { 50, 49.3, 1638, 120 }, + [220] = { 53, 48.5, 1638, 120 }, + [221] = { 53.2, 48.3, 1638, 120 }, + [222] = { 54.8, 47.9, 1638, 120 }, + [223] = { 55, 47.9, 1638, 120 }, + [224] = { 56.5, 46.6, 1638, 120 }, + [225] = { 56.7, 46.6, 1638, 120 }, + [226] = { 46.6, 44.9, 1638, 120 }, + [227] = { 46.7, 44.6, 1638, 120 }, + [228] = { 46.9, 43, 1638, 120 }, + [229] = { 46.9, 42.7, 1638, 120 }, + [230] = { 44.8, 41.7, 1638, 120 }, + [231] = { 44.6, 41.6, 1638, 120 }, + [232] = { 45.7, 38.6, 1638, 120 }, + [233] = { 45.9, 38.5, 1638, 120 }, + [234] = { 48.8, 38.1, 1638, 120 }, + [235] = { 49.1, 38, 1638, 120 }, + [236] = { 47.4, 36.5, 1638, 120 }, + [237] = { 47.6, 36.3, 1638, 120 }, + [238] = { 49.6, 34.7, 1638, 120 }, + [239] = { 49.4, 34.6, 1638, 120 }, + [240] = { 72.6, 31.1, 1638, 120 }, + [241] = { 72.6, 30.7, 1638, 120 }, + [242] = { 70.2, 27.6, 1638, 120 }, + [243] = { 69.9, 27.5, 1638, 120 }, + [244] = { 27.3, 21.9, 1638, 120 }, + [245] = { 27.5, 21.6, 1638, 120 }, + [246] = { 29.3, 20.7, 1638, 120 }, + [247] = { 29.2, 20.4, 1638, 120 }, + [248] = { 39.3, 47.2, 1657, 120 }, + [249] = { 37.7, 47, 1657, 120 }, + [250] = { 40.4, 46.8, 1657, 120 }, + [251] = { 37.2, 46.3, 1657, 120 }, + [252] = { 36.7, 45.5, 1657, 120 }, + [253] = { 41.6, 45.3, 1657, 120 }, + [254] = { 42, 44.6, 1657, 120 }, + [255] = { 36.3, 44.6, 1657, 120 }, + [256] = { 42.4, 43.9, 1657, 120 }, + [257] = { 42.6, 43.4, 1657, 120 }, + [258] = { 36, 43.1, 1657, 120 }, + [259] = { 42.9, 42.7, 1657, 120 }, + [260] = { 43.2, 42, 1657, 120 }, + [261] = { 36.1, 40.1, 1657, 120 }, + [262] = { 42.8, 39.3, 1657, 120 }, + [263] = { 36.5, 39, 1657, 120 }, + [264] = { 42.1, 38.4, 1657, 120 }, + [265] = { 41.4, 37.8, 1657, 120 }, + [266] = { 36.6, 37.6, 1657, 120 }, + [267] = { 40.8, 37.2, 1657, 120 }, + [268] = { 37, 36.8, 1657, 120 }, + [269] = { 37.4, 36.3, 1657, 120 }, + [270] = { 40.7, 35.9, 1657, 120 }, + [271] = { 38.2, 35.6, 1657, 120 }, + [272] = { 39, 34.9, 1657, 120 }, + [273] = { 67.9, 15.7, 1657, 120 }, + [274] = { 67.4, 14.5, 1657, 120 }, + [275] = { 67.2, 14.1, 1657, 120 }, + }, + }, + [181062] = { + ["coords"] = { + [1] = { 6.6, 52.5, 45, 10 }, + [2] = { 67.8, 84.1, 267, 10 }, + }, + ["fac"] = "AH", + }, + [181063] = { + ["coords"] = { + [1] = { 6.6, 52.5, 45, 7200 }, + [2] = { 67.8, 84, 267, 7200 }, + }, + }, + [181064] = { + ["coords"] = { + [1] = { 6.5, 52.4, 45, 7200 }, + [2] = { 67.8, 84, 267, 7200 }, + }, + }, + [181065] = { + ["coords"] = { + [1] = { 6.6, 52.5, 45, 7200 }, + [2] = { 67.9, 84.1, 267, 7200 }, + }, + }, + [181066] = { + ["coords"] = { + [1] = { 6.6, 52.4, 45, 7200 }, + [2] = { 67.8, 84, 267, 7200 }, + }, + }, + [181067] = { + ["coords"] = { + [1] = { 6.6, 52.5, 45, 7200 }, + [2] = { 67.8, 84.1, 267, 7200 }, + }, + }, + [181068] = { + ["coords"] = {}, + }, + [181069] = { + ["coords"] = {}, + }, + [181071] = { + ["coords"] = {}, + }, + [181072] = { + ["coords"] = {}, + }, + [181073] = { + ["coords"] = { + [1] = { 89.4, 75.1, 36, 120 }, + [2] = { 3.8, 53.3, 47, 120 }, + [3] = { 87.1, 14.1, 267, 120 }, + }, + }, + [181074] = { + ["coords"] = {}, + }, + [181075] = { + ["coords"] = { + [1] = { 81.5, 58.2, 139, 900 }, + }, + }, + [181076] = { + ["coords"] = { + [1] = { 81.5, 58.2, 139, 900 }, + }, + }, + [181077] = { + ["coords"] = { + [1] = { 81.5, 58.2, 139, 900 }, + }, + }, + [181078] = { + ["coords"] = { + [1] = { 81.4, 58.3, 139, 900 }, + }, + }, + [181079] = { + ["coords"] = { + [1] = { 81.5, 58.2, 139, 900 }, + }, + }, + [181080] = { + ["coords"] = { + [1] = { 81.5, 58.3, 139, 900 }, + }, + }, + [181081] = { + ["coords"] = { + [1] = { 81.5, 58.2, 139, 900 }, + }, + }, + [181082] = { + ["coords"] = { + [1] = { 81.5, 58.2, 139, 900 }, + }, + }, + [181083] = { + ["coords"] = {}, + }, + [181085] = { + ["coords"] = {}, + }, + [181086] = { + ["coords"] = { + [1] = { 74.3, 13.3, 130, 120 }, + [2] = { 25.3, 63.8, 141, 120 }, + [3] = { 41.9, 27.4, 215, 120 }, + [4] = { 56.6, 91.1, 1497, 120 }, + [5] = { 77.9, 18.2, 1519, 120 }, + [6] = { 40.2, 55, 1537, 120 }, + [7] = { 32.7, 37.7, 1637, 120 }, + [8] = { 59.3, 51.7, 1638, 120 }, + [9] = { 39.1, 81.1, 1657, 120 }, + }, + }, + [181087] = { + ["coords"] = { + [1] = { 74.2, 13.4, 130, 120 }, + [2] = { 74.3, 13.2, 130, 120 }, + [3] = { 74.3, 13.1, 130, 120 }, + [4] = { 74.4, 13.1, 130, 120 }, + [5] = { 25.2, 63.7, 141, 120 }, + [6] = { 25.4, 63.7, 141, 120 }, + [7] = { 25.5, 63.7, 141, 120 }, + [8] = { 25.4, 63.6, 141, 120 }, + [9] = { 25.2, 63.6, 141, 120 }, + [10] = { 41.9, 27.6, 215, 120 }, + [11] = { 41.8, 27.6, 215, 120 }, + [12] = { 41.8, 27.5, 215, 120 }, + [13] = { 41.9, 27.5, 215, 120 }, + [14] = { 41.8, 27.2, 215, 120 }, + [15] = { 41.9, 27.1, 215, 120 }, + [16] = { 42, 27, 215, 120 }, + [17] = { 56.4, 91.8, 1497, 120 }, + [18] = { 56.3, 91.7, 1497, 120 }, + [19] = { 56.3, 91.6, 1497, 120 }, + [20] = { 56.2, 91.4, 1497, 120 }, + [21] = { 56.5, 90.5, 1497, 120 }, + [22] = { 56.5, 90.4, 1497, 120 }, + [23] = { 56.6, 90.3, 1497, 120 }, + [24] = { 56.9, 90.3, 1497, 120 }, + [25] = { 56.8, 90.2, 1497, 120 }, + [26] = { 78, 18.9, 1519, 120 }, + [27] = { 77.8, 18.9, 1519, 120 }, + [28] = { 77.8, 18.8, 1519, 120 }, + [29] = { 77.6, 18.2, 1519, 120 }, + [30] = { 77.7, 18.2, 1519, 120 }, + [31] = { 77.5, 18.1, 1519, 120 }, + [32] = { 77.5, 17.9, 1519, 120 }, + [33] = { 40.8, 55.2, 1537, 120 }, + [34] = { 40.7, 55.1, 1537, 120 }, + [35] = { 40.8, 54.9, 1537, 120 }, + [36] = { 40.7, 54.9, 1537, 120 }, + [37] = { 40, 54.3, 1537, 120 }, + [38] = { 39.9, 54.3, 1537, 120 }, + [39] = { 40.2, 54, 1537, 120 }, + [40] = { 40.3, 54, 1537, 120 }, + [41] = { 40.2, 53.9, 1537, 120 }, + [42] = { 32.6, 38.3, 1637, 120 }, + [43] = { 32.7, 38.3, 1637, 120 }, + [44] = { 32.8, 38.2, 1637, 120 }, + [45] = { 32.8, 38.1, 1637, 120 }, + [46] = { 32.7, 37.3, 1637, 120 }, + [47] = { 32.8, 37.3, 1637, 120 }, + [48] = { 32.9, 37.2, 1637, 120 }, + [49] = { 32.9, 37.1, 1637, 120 }, + [50] = { 32.8, 37, 1637, 120 }, + [51] = { 59.4, 53.1, 1638, 120 }, + [52] = { 59.3, 52.9, 1638, 120 }, + [53] = { 59.2, 52.6, 1638, 120 }, + [54] = { 59.3, 52.4, 1638, 120 }, + [55] = { 59.3, 51, 1638, 120 }, + [56] = { 59.3, 50.8, 1638, 120 }, + [57] = { 59.4, 50.6, 1638, 120 }, + [58] = { 59.5, 50.4, 1638, 120 }, + [59] = { 59.8, 50.2, 1638, 120 }, + [60] = { 38.5, 80.7, 1657, 120 }, + [61] = { 39.3, 80.6, 1657, 120 }, + [62] = { 38.5, 80.6, 1657, 120 }, + [63] = { 39.8, 80.6, 1657, 120 }, + [64] = { 39.4, 80.5, 1657, 120 }, + [65] = { 38.5, 80.4, 1657, 120 }, + [66] = { 39.6, 80.4, 1657, 120 }, + [67] = { 39.5, 80.4, 1657, 120 }, + [68] = { 38.6, 80.2, 1657, 120 }, + }, + }, + [181088] = { + ["coords"] = { + [1] = { 32.6, 36.8, 1637, 300 }, + }, + }, + [181089] = { + ["coords"] = { + [1] = { 78.7, 17.5, 1519, 300 }, + }, + }, + [181090] = { + ["coords"] = { + [1] = { 40.3, 56.6, 1537, 300 }, + }, + }, + [181091] = { + ["coords"] = { + [1] = { 25.1, 63.7, 141, 300 }, + [2] = { 38.1, 80.5, 1657, 300 }, + }, + }, + [181092] = { + ["coords"] = { + [1] = { 42.2, 27.1, 215, 300 }, + [2] = { 60.9, 50.3, 1638, 300 }, + }, + }, + [181093] = { + ["coords"] = { + [1] = { 74, 13, 130, 300 }, + [2] = { 55.2, 89.9, 1497, 300 }, + }, + }, + [181094] = { + ["coords"] = {}, + }, + [181096] = { + ["coords"] = {}, + }, + [181098] = { + ["coords"] = { + [1] = { 70.7, 62.8, 46, 180 }, + [2] = { 69.5, 62.4, 46, 180 }, + [3] = { 55.2, 62.2, 46, 180 }, + [4] = { 35.1, 61.9, 46, 180 }, + [5] = { 29, 61.8, 46, 180 }, + [6] = { 49.7, 61.7, 46, 180 }, + [7] = { 36.6, 60.8, 46, 180 }, + [8] = { 70.8, 59.8, 46, 180 }, + [9] = { 34.3, 58.8, 46, 180 }, + [10] = { 91.5, 57, 46, 180 }, + [11] = { 59.3, 56.8, 46, 180 }, + [12] = { 87.5, 54, 46, 180 }, + [13] = { 78.2, 52.5, 46, 180 }, + [14] = { 66, 52.2, 46, 180 }, + [15] = { 80.9, 52, 46, 180 }, + [16] = { 80.1, 50.8, 46, 180 }, + [17] = { 52.3, 50.6, 46, 180 }, + [18] = { 80.7, 50.6, 46, 180 }, + [19] = { 46.6, 50.5, 46, 180 }, + [20] = { 45.7, 50.1, 46, 180 }, + [21] = { 55.4, 49.2, 46, 180 }, + [22] = { 33.7, 48.1, 46, 180 }, + [23] = { 55.3, 47.9, 46, 180 }, + [24] = { 34.9, 47.7, 46, 180 }, + [25] = { 35.9, 47.1, 46, 180 }, + [26] = { 43.6, 44.9, 46, 180 }, + [27] = { 43, 44.6, 46, 180 }, + [28] = { 41.8, 44.4, 46, 180 }, + [29] = { 22, 44.2, 46, 180 }, + [30] = { 44, 43.9, 46, 180 }, + [31] = { 45.9, 43.8, 46, 180 }, + [32] = { 40.7, 43.7, 46, 180 }, + [33] = { 44.5, 43.5, 46, 180 }, + [34] = { 85.3, 43.5, 46, 180 }, + [35] = { 46.4, 43.4, 46, 180 }, + [36] = { 48.8, 43.2, 46, 180 }, + [37] = { 28.3, 43.2, 46, 180 }, + [38] = { 21.3, 43.2, 46, 180 }, + [39] = { 50, 43, 46, 180 }, + [40] = { 41.6, 42.7, 46, 180 }, + [41] = { 52.1, 42.6, 46, 180 }, + [42] = { 69.7, 42, 46, 180 }, + [43] = { 76.1, 41.9, 46, 180 }, + [44] = { 43.3, 41.8, 46, 180 }, + [45] = { 60.1, 40.4, 46, 180 }, + [46] = { 85.2, 40.2, 46, 180 }, + [47] = { 64.9, 39.6, 46, 180 }, + [48] = { 61.3, 39.5, 46, 180 }, + [49] = { 63.4, 38.2, 46, 180 }, + [50] = { 77, 38.2, 46, 180 }, + [51] = { 79.4, 37.8, 46, 180 }, + [52] = { 63.8, 37.5, 46, 180 }, + [53] = { 77.2, 37.3, 46, 180 }, + [54] = { 77.6, 36.9, 46, 180 }, + [55] = { 80.7, 36.4, 46, 180 }, + [56] = { 51.8, 35.3, 46, 180 }, + [57] = { 50.3, 35.2, 46, 180 }, + [58] = { 68.3, 33.8, 46, 180 }, + [59] = { 64.7, 33.6, 46, 180 }, + [60] = { 81.3, 33, 46, 180 }, + [61] = { 72.5, 32.8, 46, 180 }, + [62] = { 62.3, 32.5, 46, 180 }, + [63] = { 73.1, 32.3, 46, 180 }, + [64] = { 67, 31.9, 46, 180 }, + [65] = { 65.5, 31.7, 46, 180 }, + [66] = { 68.2, 31.3, 46, 180 }, + [67] = { 62.1, 31, 46, 180 }, + [68] = { 71.9, 29.6, 46, 180 }, + [69] = { 63.5, 27, 46, 180 }, + [70] = { 71.1, 26.3, 46, 180 }, + [71] = { 62.8, 25.3, 46, 180 }, + [72] = { 64.8, 25, 46, 180 }, + }, + }, + [181099] = { + ["coords"] = { + [1] = { 30.5, 44.7, 357, 900 }, + }, + }, + [181102] = { + ["coords"] = {}, + ["fac"] = "H", + }, + [181103] = { + ["coords"] = {}, + }, + [181104] = { + ["coords"] = {}, + }, + [181105] = { + ["coords"] = {}, + ["fac"] = "H", + }, + [181106] = { + ["coords"] = {}, + ["fac"] = "H", + }, + [181108] = { + ["coords"] = { + [1] = { 50, 86, 148, 300 }, + [2] = { 49.9, 79.8, 148, 300 }, + [3] = { 51.4, 73.3, 148, 600 }, + [4] = { 49.6, 72.4, 148, 300 }, + [5] = { 48, 94.8, 361, 300 }, + [6] = { 47.5, 92.3, 361, 300 }, + [7] = { 49.5, 90.9, 361, 300 }, + [8] = { 48.2, 90, 361, 300 }, + [9] = { 44.9, 85.5, 361, 300 }, + [10] = { 56, 82.6, 361, 300 }, + [11] = { 39.7, 81, 361, 300 }, + [12] = { 50.4, 79.8, 361, 300 }, + [13] = { 42.1, 78.4, 361, 300 }, + [14] = { 47.3, 76.1, 361, 300 }, + [15] = { 40.1, 74.1, 361, 300 }, + [16] = { 47, 72.4, 361, 300 }, + [17] = { 38.3, 70.6, 361, 300 }, + [18] = { 36.2, 68.9, 361, 300 }, + [19] = { 37.9, 68, 361, 300 }, + [20] = { 34.4, 66.7, 361, 300 }, + [21] = { 45.2, 66.6, 361, 300 }, + [22] = { 37.5, 65.8, 361, 300 }, + [23] = { 36.6, 62.7, 361, 300 }, + [24] = { 43.8, 62.1, 361, 300 }, + [25] = { 38.8, 62.1, 361, 600 }, + [26] = { 38.6, 61.9, 361, 600 }, + [27] = { 38.1, 61.8, 361, 600 }, + [28] = { 37.9, 61.5, 361, 600 }, + [29] = { 38.3, 60.8, 361, 600 }, + [30] = { 34.2, 59.6, 361, 300 }, + [31] = { 36.8, 56, 361, 600 }, + [32] = { 36.3, 55.4, 361, 600 }, + [33] = { 38.9, 55.1, 361, 300 }, + [34] = { 38.3, 54.8, 361, 600 }, + [35] = { 37.9, 53.8, 361, 600 }, + [36] = { 36, 52.2, 361, 600 }, + [37] = { 36.6, 52, 361, 600 }, + [38] = { 37.7, 51.6, 361, 300 }, + [39] = { 33.9, 51.2, 361, 300 }, + [40] = { 44.2, 48.5, 361, 300 }, + [41] = { 38, 48.4, 361, 600 }, + [42] = { 38.8, 47.4, 361, 600 }, + [43] = { 43.2, 46.7, 361, 300 }, + [44] = { 38.2, 45.7, 361, 600 }, + [45] = { 42.9, 44.1, 361, 300 }, + [46] = { 43.4, 41.2, 361, 300 }, + [47] = { 45.7, 34.2, 361, 300 }, + [48] = { 38.1, 32.2, 361, 300 }, + [49] = { 50.1, 31.5, 361, 300 }, + [50] = { 52.9, 30.4, 361, 300 }, + [51] = { 63.2, 24.7, 361, 300 }, + [52] = { 48.6, 23.8, 361, 300 }, + [53] = { 57.5, 22.5, 361, 600 }, + [54] = { 39.8, 22.3, 361, 300 }, + [55] = { 57.6, 21.4, 361, 300 }, + [56] = { 61.3, 21.3, 361, 600 }, + [57] = { 58.2, 20.5, 361, 600 }, + [58] = { 59.2, 19.4, 361, 600 }, + [59] = { 57.7, 19.1, 361, 600 }, + [60] = { 43.5, 18.2, 361, 300 }, + [61] = { 57.6, 17.3, 361, 600 }, + [62] = { 46.2, 13.5, 361, 300 }, + [63] = { 63.1, 10.2, 361, 300 }, + [64] = { 63.2, 7.8, 361, 300 }, + [65] = { 55.6, 7.4, 361, 300 }, + [66] = { 61.3, 6.8, 361, 300 }, + [67] = { 59.6, 6.1, 361, 300 }, + }, + }, + [181109] = { + ["coords"] = { + [1] = { 48, 94.8, 361, 300 }, + [2] = { 47.5, 92.3, 361, 300 }, + [3] = { 49.5, 90.9, 361, 300 }, + [4] = { 48.2, 90, 361, 300 }, + [5] = { 44.9, 85.5, 361, 300 }, + [6] = { 39.7, 81, 361, 300 }, + [7] = { 50.4, 79.8, 361, 300 }, + [8] = { 40.1, 74.1, 361, 300 }, + [9] = { 47, 72.4, 361, 300 }, + [10] = { 45.2, 66.6, 361, 300 }, + [11] = { 36.6, 62.7, 361, 300 }, + [12] = { 38.8, 62.1, 361, 600 }, + [13] = { 38.6, 61.9, 361, 600 }, + [14] = { 38.1, 61.8, 361, 600 }, + [15] = { 37.9, 61.5, 361, 600 }, + [16] = { 38.3, 60.8, 361, 600 }, + [17] = { 36.8, 56, 361, 600 }, + [18] = { 38.3, 54.8, 361, 600 }, + [19] = { 36.6, 52, 361, 600 }, + [20] = { 37.7, 51.6, 361, 300 }, + [21] = { 44.2, 48.5, 361, 300 }, + [22] = { 38, 48.4, 361, 600 }, + [23] = { 42.9, 44.1, 361, 300 }, + [24] = { 45.7, 34.2, 361, 300 }, + [25] = { 52.9, 30.4, 361, 300 }, + [26] = { 57.5, 22.5, 361, 600 }, + [27] = { 57.6, 21.4, 361, 300 }, + [28] = { 58.2, 20.5, 361, 600 }, + [29] = { 57.7, 19.1, 361, 600 }, + [30] = { 43.5, 18.2, 361, 300 }, + [31] = { 55.6, 7.4, 361, 300 }, + [32] = { 44.8, 72.1, 2597, 604800 }, + [33] = { 43.6, 72, 2597, 604800 }, + [34] = { 44.2, 70.5, 2597, 604800 }, + [35] = { 42.9, 69.5, 2597, 604800 }, + [36] = { 52.5, 9.5, 2597, 604800 }, + [37] = { 50.7, 8.6, 2597, 604800 }, + [38] = { 49.8, 4.3, 2597, 604800 }, + }, + }, + [181113] = { + ["coords"] = {}, + }, + [181119] = { + ["coords"] = {}, + }, + [181120] = { + ["coords"] = {}, + }, + [181121] = { + ["coords"] = {}, + }, + [181123] = { + ["coords"] = {}, + }, + [181124] = { + ["coords"] = {}, + }, + [181125] = { + ["coords"] = {}, + }, + [181126] = { + ["coords"] = {}, + }, + [181130] = { + ["coords"] = { + [1] = { 81, 59.6, 139, 900 }, + }, + }, + [181131] = { + ["coords"] = { + [1] = { 80.9, 59.5, 139, 900 }, + }, + }, + [181134] = { + ["coords"] = { + [1] = { 46.9, 42.4, 139, 900 }, + }, + }, + [181135] = { + ["coords"] = { + [1] = { 47.6, 43.1, 139, 900 }, + }, + }, + [181136] = { + ["coords"] = { + [1] = { 60.9, 44, 4, 120 }, + [2] = { 47, 38.2, 4, 120 }, + [3] = { 57, 35, 4, 120 }, + [4] = { 63, 30.6, 4, 120 }, + [5] = { 52.1, 27.5, 4, 120 }, + [6] = { 46, 20.1, 4, 120 }, + [7] = { 18.5, 66.7, 16, 120 }, + [8] = { 24.4, 59.3, 16, 120 }, + [9] = { 45.1, 58.4, 16, 120 }, + [10] = { 17.3, 54, 16, 120 }, + [11] = { 48, 53.9, 16, 120 }, + [12] = { 44.5, 49.5, 16, 120 }, + [13] = { 80.4, 61.6, 28, 120 }, + [14] = { 75.8, 54.5, 28, 120 }, + [15] = { 33.4, 70.1, 46, 120 }, + [16] = { 23.8, 68.6, 46, 120 }, + [17] = { 24.4, 51.3, 46, 120 }, + [18] = { 74, 48.7, 46, 120 }, + [19] = { 67.1, 35.9, 46, 120 }, + [20] = { 79.5, 29.3, 46, 120 }, + [21] = { 22.1, 85.2, 139, 120 }, + [22] = { 17, 77.3, 139, 120 }, + [23] = { 66.5, 72.1, 139, 120 }, + [24] = { 23.7, 71.4, 139, 120 }, + [25] = { 75.9, 71.2, 139, 120 }, + [26] = { 71, 57.5, 139, 120 }, + [27] = { 34.5, 64.3, 440, 120 }, + [28] = { 30.1, 57.8, 440, 120 }, + [29] = { 36, 57.8, 440, 120 }, + [30] = { 52.3, 56.5, 440, 120 }, + [31] = { 57.7, 53.5, 440, 120 }, + [32] = { 52, 49.9, 440, 120 }, + [33] = { 50.9, 38.2, 440, 120 }, + [34] = { 54.4, 31.6, 440, 120 }, + [35] = { 48.2, 29.8, 440, 120 }, + [36] = { 62.4, 52.4, 618, 120 }, + [37] = { 66.5, 52, 618, 120 }, + [38] = { 62.9, 47.5, 618, 120 }, + [39] = { 44.6, 42, 618, 120 }, + [40] = { 42.8, 37.8, 618, 120 }, + [41] = { 46, 37, 618, 120 }, + [42] = { 50.2, 17.9, 618, 120 }, + [43] = { 55, 15, 618, 120 }, + [44] = { 50.1, 12.5, 618, 120 }, + }, + }, + [181137] = { + ["coords"] = {}, + }, + [181142] = { + ["coords"] = {}, + }, + [181143] = { + ["coords"] = {}, + }, + [181144] = { + ["coords"] = {}, + }, + [181145] = { + ["coords"] = {}, + }, + [181146] = { + ["coords"] = {}, + }, + [181154] = { + ["coords"] = { + [1] = { 20.2, 60.4, 16, 120 }, + [2] = { 46, 53.1, 16, 120 }, + [3] = { 28.4, 61.6, 46, 120 }, + [4] = { 73.9, 36, 46, 120 }, + [5] = { 21.9, 78.8, 139, 120 }, + [6] = { 70.9, 65.8, 139, 120 }, + }, + }, + [181167] = { + ["coords"] = {}, + }, + [181168] = { + ["coords"] = {}, + }, + [181169] = { + ["coords"] = {}, + }, + [181170] = { + ["coords"] = {}, + }, + [181172] = { + ["coords"] = { + [1] = { 50.8, 37.9, 1, 120 }, + [2] = { 34.3, 52.7, 12, 120 }, + [3] = { 44.5, 16.9, 14, 120 }, + [4] = { 61.2, 65.9, 85, 120 }, + [5] = { 35.8, 54.8, 141, 120 }, + [6] = { 37.9, 36.2, 215, 120 }, + [7] = { 63.2, 4, 1497, 120 }, + [8] = { 89.3, 37.6, 1657, 120 }, + }, + }, + [181173] = { + ["coords"] = { + [1] = { 61.1, 44.4, 4, 120 }, + [2] = { 60.7, 44.3, 4, 120 }, + [3] = { 61.3, 43.9, 4, 120 }, + [4] = { 60.6, 43.7, 4, 120 }, + [5] = { 61, 43.5, 4, 120 }, + [6] = { 46.9, 38.7, 4, 120 }, + [7] = { 47.2, 38.5, 4, 120 }, + [8] = { 46.7, 38.3, 4, 120 }, + [9] = { 47.3, 38, 4, 120 }, + [10] = { 46.9, 37.8, 4, 120 }, + [11] = { 56.9, 35.4, 4, 120 }, + [12] = { 57.2, 35.3, 4, 120 }, + [13] = { 56.6, 35, 4, 120 }, + [14] = { 57.3, 34.6, 4, 120 }, + [15] = { 56.9, 34.5, 4, 120 }, + [16] = { 62.9, 31.1, 4, 120 }, + [17] = { 63.3, 30.9, 4, 120 }, + [18] = { 62.6, 30.7, 4, 120 }, + [19] = { 63.2, 30.3, 4, 120 }, + [20] = { 62.8, 30.2, 4, 120 }, + [21] = { 52.1, 28, 4, 120 }, + [22] = { 51.8, 27.8, 4, 120 }, + [23] = { 52.4, 27.5, 4, 120 }, + [24] = { 51.8, 27.3, 4, 120 }, + [25] = { 52.2, 27.1, 4, 120 }, + [26] = { 46.2, 20.5, 4, 120 }, + [27] = { 45.8, 20.5, 4, 120 }, + [28] = { 45.7, 20, 4, 120 }, + [29] = { 46.3, 20, 4, 120 }, + [30] = { 46, 19.7, 4, 120 }, + [31] = { 18.8, 67.4, 16, 120 }, + [32] = { 18.3, 67.4, 16, 120 }, + [33] = { 18.1, 66.6, 16, 120 }, + [34] = { 19, 66.6, 16, 120 }, + [35] = { 18.6, 66, 16, 120 }, + [36] = { 24.3, 59.5, 16, 120 }, + [37] = { 24.7, 59.4, 16, 120 }, + [38] = { 24.1, 59.2, 16, 120 }, + [39] = { 24.6, 58.9, 16, 120 }, + [40] = { 45.4, 58.9, 16, 120 }, + [41] = { 45, 58.9, 16, 120 }, + [42] = { 24.4, 58.8, 16, 120 }, + [43] = { 45.5, 58.4, 16, 120 }, + [44] = { 44.9, 58, 16, 120 }, + [45] = { 45.3, 57.8, 16, 120 }, + [46] = { 17.5, 54.7, 16, 120 }, + [47] = { 16.9, 54.6, 16, 120 }, + [48] = { 47.9, 54.5, 16, 120 }, + [49] = { 48.3, 54.3, 16, 120 }, + [50] = { 17.8, 54.1, 16, 120 }, + [51] = { 47.6, 53.8, 16, 120 }, + [52] = { 16.8, 53.7, 16, 120 }, + [53] = { 48.4, 53.5, 16, 120 }, + [54] = { 47.9, 53.4, 16, 120 }, + [55] = { 17.5, 53.3, 16, 120 }, + [56] = { 44.5, 50, 16, 120 }, + [57] = { 44.9, 49.7, 16, 120 }, + [58] = { 44.2, 49.6, 16, 120 }, + [59] = { 44.7, 49.1, 16, 120 }, + [60] = { 44.3, 49.1, 16, 120 }, + [61] = { 80.2, 62.2, 28, 120 }, + [62] = { 80.6, 62, 28, 120 }, + [63] = { 79.9, 61.7, 28, 120 }, + [64] = { 80.7, 61.1, 28, 120 }, + [65] = { 80.2, 61.1, 28, 120 }, + [66] = { 76.3, 55.6, 28, 120 }, + [67] = { 76, 55, 28, 120 }, + [68] = { 75.2, 54.9, 28, 120 }, + [69] = { 76.5, 54.3, 28, 120 }, + [70] = { 75.6, 53.6, 28, 120 }, + [71] = { 33.5, 70.8, 46, 120 }, + [72] = { 33, 70.5, 46, 120 }, + [73] = { 33.9, 70.3, 46, 120 }, + [74] = { 33.1, 69.7, 46, 120 }, + [75] = { 23.9, 69.3, 46, 120 }, + [76] = { 24.2, 68.8, 46, 120 }, + [77] = { 23.4, 68.8, 46, 120 }, + [78] = { 24.1, 68, 46, 120 }, + [79] = { 23.5, 67.9, 46, 120 }, + [80] = { 24.7, 52.3, 46, 120 }, + [81] = { 23.8, 51.9, 46, 120 }, + [82] = { 25.1, 50.9, 46, 120 }, + [83] = { 23.9, 50.6, 46, 120 }, + [84] = { 24.6, 50.1, 46, 120 }, + [85] = { 73.7, 49.4, 46, 120 }, + [86] = { 74.2, 49.4, 46, 120 }, + [87] = { 74.4, 48.6, 46, 120 }, + [88] = { 73.5, 48.5, 46, 120 }, + [89] = { 74, 47.8, 46, 120 }, + [90] = { 67.1, 36.9, 46, 120 }, + [91] = { 67.7, 36.4, 46, 120 }, + [92] = { 66.5, 36.1, 46, 120 }, + [93] = { 67.5, 35.4, 46, 120 }, + [94] = { 66.9, 35.1, 46, 120 }, + [95] = { 79.5, 30.3, 46, 120 }, + [96] = { 80.1, 29.7, 46, 120 }, + [97] = { 79, 29.7, 46, 120 }, + [98] = { 79.2, 28.6, 46, 120 }, + [99] = { 79.8, 28.5, 46, 120 }, + [100] = { 21.8, 85.9, 139, 120 }, + [101] = { 22.3, 85.6, 139, 120 }, + [102] = { 21.6, 85.4, 139, 120 }, + [103] = { 22.4, 84.7, 139, 120 }, + [104] = { 21.8, 84.7, 139, 120 }, + [105] = { 17.5, 78.6, 139, 120 }, + [106] = { 17.2, 77.8, 139, 120 }, + [107] = { 16.3, 77.8, 139, 120 }, + [108] = { 17.7, 77.1, 139, 120 }, + [109] = { 16.8, 76.4, 139, 120 }, + [110] = { 66.5, 73, 139, 120 }, + [111] = { 67, 72.6, 139, 120 }, + [112] = { 66, 72.4, 139, 120 }, + [113] = { 23.8, 72, 139, 120 }, + [114] = { 76.4, 71.9, 139, 120 }, + [115] = { 75.7, 71.8, 139, 120 }, + [116] = { 23.4, 71.7, 139, 120 }, + [117] = { 66.9, 71.7, 139, 120 }, + [118] = { 24.1, 71.5, 139, 120 }, + [119] = { 66.2, 71.4, 139, 120 }, + [120] = { 76.6, 71.3, 139, 120 }, + [121] = { 23.4, 71, 139, 120 }, + [122] = { 75.7, 71, 139, 120 }, + [123] = { 23.9, 70.8, 139, 120 }, + [124] = { 76.4, 70.6, 139, 120 }, + [125] = { 71.2, 58.1, 139, 120 }, + [126] = { 70.6, 57.9, 139, 120 }, + [127] = { 71.5, 57.3, 139, 120 }, + [128] = { 70.6, 57.3, 139, 120 }, + [129] = { 71.1, 56.8, 139, 120 }, + [130] = { 34.7, 64.7, 440, 120 }, + [131] = { 34.4, 64.7, 440, 120 }, + [132] = { 34.7, 64.3, 440, 120 }, + [133] = { 34.3, 64.3, 440, 120 }, + [134] = { 34.5, 63.9, 440, 120 }, + [135] = { 36, 58.3, 440, 120 }, + [136] = { 30.3, 58.3, 440, 120 }, + [137] = { 29.9, 58.1, 440, 120 }, + [138] = { 35.5, 58, 440, 120 }, + [139] = { 36.4, 57.9, 440, 120 }, + [140] = { 30.5, 57.8, 440, 120 }, + [141] = { 29.9, 57.6, 440, 120 }, + [142] = { 30.2, 57.4, 440, 120 }, + [143] = { 35.7, 57.2, 440, 120 }, + [144] = { 36.1, 57.2, 440, 120 }, + [145] = { 52.1, 57, 440, 120 }, + [146] = { 52.6, 56.9, 440, 120 }, + [147] = { 51.8, 56.4, 440, 120 }, + [148] = { 52.7, 56.1, 440, 120 }, + [149] = { 52.2, 55.8, 440, 120 }, + [150] = { 57.7, 53.8, 440, 120 }, + [151] = { 58, 53.6, 440, 120 }, + [152] = { 57.5, 53.6, 440, 120 }, + [153] = { 57.9, 53.1, 440, 120 }, + [154] = { 57.6, 53.1, 440, 120 }, + [155] = { 52, 50.2, 440, 120 }, + [156] = { 51.7, 50, 440, 120 }, + [157] = { 52.2, 49.8, 440, 120 }, + [158] = { 52.1, 49.4, 440, 120 }, + [159] = { 51.7, 49.4, 440, 120 }, + [160] = { 51.1, 38.5, 440, 120 }, + [161] = { 50.8, 38.5, 440, 120 }, + [162] = { 51.1, 38, 440, 120 }, + [163] = { 50.7, 38, 440, 120 }, + [164] = { 50.9, 37.8, 440, 120 }, + [165] = { 54.4, 32, 440, 120 }, + [166] = { 54.2, 31.7, 440, 120 }, + [167] = { 54.6, 31.7, 440, 120 }, + [168] = { 54.5, 31.4, 440, 120 }, + [169] = { 54.3, 31.3, 440, 120 }, + [170] = { 48.2, 30.2, 440, 120 }, + [171] = { 48.5, 29.9, 440, 120 }, + [172] = { 47.9, 29.9, 440, 120 }, + [173] = { 48.5, 29.4, 440, 120 }, + [174] = { 48.1, 29.4, 440, 120 }, + [175] = { 62.4, 52.5, 618, 120 }, + [176] = { 62.5, 52.5, 618, 120 }, + [177] = { 62.3, 52.4, 618, 120 }, + [178] = { 62.5, 52.3, 618, 120 }, + [179] = { 66.6, 52.2, 618, 120 }, + [180] = { 62.4, 52.2, 618, 120 }, + [181] = { 66.4, 52.1, 618, 120 }, + [182] = { 66.7, 52, 618, 120 }, + [183] = { 66.4, 51.8, 618, 120 }, + [184] = { 66.6, 51.8, 618, 120 }, + [185] = { 62.9, 47.7, 618, 120 }, + [186] = { 62.8, 47.6, 618, 120 }, + [187] = { 63, 47.5, 618, 120 }, + [188] = { 62.8, 47.4, 618, 120 }, + [189] = { 62.9, 47.3, 618, 120 }, + [190] = { 44.6, 42.2, 618, 120 }, + [191] = { 44.7, 42.1, 618, 120 }, + [192] = { 44.4, 42, 618, 120 }, + [193] = { 44.7, 41.8, 618, 120 }, + [194] = { 44.5, 41.7, 618, 120 }, + [195] = { 42.7, 38, 618, 120 }, + [196] = { 42.9, 37.9, 618, 120 }, + [197] = { 42.6, 37.9, 618, 120 }, + [198] = { 42.9, 37.6, 618, 120 }, + [199] = { 42.7, 37.6, 618, 120 }, + [200] = { 46.1, 37.2, 618, 120 }, + [201] = { 46, 37.2, 618, 120 }, + [202] = { 46.2, 37, 618, 120 }, + [203] = { 45.9, 36.9, 618, 120 }, + [204] = { 46.1, 36.8, 618, 120 }, + [205] = { 50, 18.1, 618, 120 }, + [206] = { 50.3, 18.1, 618, 120 }, + [207] = { 50.4, 17.8, 618, 120 }, + [208] = { 49.9, 17.8, 618, 120 }, + [209] = { 50.2, 17.6, 618, 120 }, + [210] = { 55.1, 15.2, 618, 120 }, + [211] = { 54.8, 15.2, 618, 120 }, + [212] = { 55.2, 15, 618, 120 }, + [213] = { 54.8, 14.8, 618, 120 }, + [214] = { 54.9, 14.6, 618, 120 }, + [215] = { 50.2, 12.8, 618, 120 }, + [216] = { 49.9, 12.7, 618, 120 }, + [217] = { 50.2, 12.5, 618, 120 }, + [218] = { 49.9, 12.4, 618, 120 }, + [219] = { 50.1, 12.3, 618, 120 }, + }, + }, + [181174] = { + ["coords"] = { + [1] = { 61.1, 44.4, 4, 120 }, + [2] = { 60.7, 44.3, 4, 120 }, + [3] = { 61.3, 43.9, 4, 120 }, + [4] = { 60.6, 43.7, 4, 120 }, + [5] = { 61, 43.5, 4, 120 }, + [6] = { 46.9, 38.7, 4, 120 }, + [7] = { 47.2, 38.5, 4, 120 }, + [8] = { 46.7, 38.3, 4, 120 }, + [9] = { 47.3, 38, 4, 120 }, + [10] = { 46.9, 37.8, 4, 120 }, + [11] = { 56.9, 35.4, 4, 120 }, + [12] = { 57.2, 35.3, 4, 120 }, + [13] = { 56.6, 35, 4, 120 }, + [14] = { 57.3, 34.6, 4, 120 }, + [15] = { 56.9, 34.5, 4, 120 }, + [16] = { 62.9, 31.1, 4, 120 }, + [17] = { 63.3, 30.9, 4, 120 }, + [18] = { 62.6, 30.7, 4, 120 }, + [19] = { 63.2, 30.3, 4, 120 }, + [20] = { 62.8, 30.2, 4, 120 }, + [21] = { 52.1, 28, 4, 120 }, + [22] = { 51.8, 27.8, 4, 120 }, + [23] = { 52.4, 27.5, 4, 120 }, + [24] = { 51.8, 27.3, 4, 120 }, + [25] = { 52.2, 27.1, 4, 120 }, + [26] = { 46.2, 20.5, 4, 120 }, + [27] = { 45.8, 20.5, 4, 120 }, + [28] = { 45.7, 20, 4, 120 }, + [29] = { 46.3, 20, 4, 120 }, + [30] = { 46, 19.7, 4, 120 }, + [31] = { 18.8, 67.4, 16, 120 }, + [32] = { 18.3, 67.4, 16, 120 }, + [33] = { 18.1, 66.6, 16, 120 }, + [34] = { 19, 66.6, 16, 120 }, + [35] = { 18.6, 66, 16, 120 }, + [36] = { 24.3, 59.5, 16, 120 }, + [37] = { 24.7, 59.4, 16, 120 }, + [38] = { 24.1, 59.2, 16, 120 }, + [39] = { 24.6, 58.9, 16, 120 }, + [40] = { 45.4, 58.9, 16, 120 }, + [41] = { 45, 58.9, 16, 120 }, + [42] = { 24.4, 58.8, 16, 120 }, + [43] = { 45.5, 58.4, 16, 120 }, + [44] = { 44.9, 58, 16, 120 }, + [45] = { 45.3, 57.8, 16, 120 }, + [46] = { 17.5, 54.7, 16, 120 }, + [47] = { 16.9, 54.6, 16, 120 }, + [48] = { 47.9, 54.5, 16, 120 }, + [49] = { 48.3, 54.3, 16, 120 }, + [50] = { 17.8, 54.1, 16, 120 }, + [51] = { 47.6, 53.8, 16, 120 }, + [52] = { 16.8, 53.7, 16, 120 }, + [53] = { 48.4, 53.5, 16, 120 }, + [54] = { 47.9, 53.4, 16, 120 }, + [55] = { 17.5, 53.3, 16, 120 }, + [56] = { 44.5, 50, 16, 120 }, + [57] = { 44.9, 49.7, 16, 120 }, + [58] = { 44.2, 49.6, 16, 120 }, + [59] = { 44.7, 49.1, 16, 120 }, + [60] = { 44.3, 49.1, 16, 120 }, + [61] = { 80.2, 62.2, 28, 120 }, + [62] = { 80.6, 62, 28, 120 }, + [63] = { 79.9, 61.7, 28, 120 }, + [64] = { 80.7, 61.1, 28, 120 }, + [65] = { 80.2, 61.1, 28, 120 }, + [66] = { 76.3, 55.6, 28, 120 }, + [67] = { 76, 55, 28, 120 }, + [68] = { 75.2, 54.9, 28, 120 }, + [69] = { 76.5, 54.3, 28, 120 }, + [70] = { 75.6, 53.6, 28, 120 }, + [71] = { 33.5, 70.8, 46, 120 }, + [72] = { 33, 70.5, 46, 120 }, + [73] = { 33.9, 70.3, 46, 120 }, + [74] = { 33.1, 69.7, 46, 120 }, + [75] = { 23.9, 69.3, 46, 120 }, + [76] = { 24.2, 68.8, 46, 120 }, + [77] = { 23.4, 68.8, 46, 120 }, + [78] = { 24.1, 68, 46, 120 }, + [79] = { 23.5, 67.9, 46, 120 }, + [80] = { 24.7, 52.3, 46, 120 }, + [81] = { 23.8, 51.9, 46, 120 }, + [82] = { 25.1, 50.9, 46, 120 }, + [83] = { 23.9, 50.6, 46, 120 }, + [84] = { 24.6, 50.1, 46, 120 }, + [85] = { 73.7, 49.4, 46, 120 }, + [86] = { 74.2, 49.4, 46, 120 }, + [87] = { 74.4, 48.6, 46, 120 }, + [88] = { 73.5, 48.5, 46, 120 }, + [89] = { 74, 47.8, 46, 120 }, + [90] = { 67.1, 36.9, 46, 120 }, + [91] = { 67.7, 36.4, 46, 120 }, + [92] = { 66.5, 36.1, 46, 120 }, + [93] = { 67.5, 35.4, 46, 120 }, + [94] = { 66.9, 35.1, 46, 120 }, + [95] = { 79.5, 30.3, 46, 120 }, + [96] = { 80.1, 29.7, 46, 120 }, + [97] = { 79, 29.7, 46, 120 }, + [98] = { 79.2, 28.6, 46, 120 }, + [99] = { 79.8, 28.5, 46, 120 }, + [100] = { 21.8, 85.9, 139, 120 }, + [101] = { 22.3, 85.6, 139, 120 }, + [102] = { 21.6, 85.4, 139, 120 }, + [103] = { 22.4, 84.7, 139, 120 }, + [104] = { 21.8, 84.7, 139, 120 }, + [105] = { 17.5, 78.6, 139, 120 }, + [106] = { 17.2, 77.8, 139, 120 }, + [107] = { 16.3, 77.8, 139, 120 }, + [108] = { 17.7, 77.1, 139, 120 }, + [109] = { 16.8, 76.4, 139, 120 }, + [110] = { 66.5, 73, 139, 120 }, + [111] = { 67, 72.6, 139, 120 }, + [112] = { 66, 72.4, 139, 120 }, + [113] = { 23.8, 72, 139, 120 }, + [114] = { 76.4, 71.9, 139, 120 }, + [115] = { 75.7, 71.8, 139, 120 }, + [116] = { 23.4, 71.7, 139, 120 }, + [117] = { 66.9, 71.7, 139, 120 }, + [118] = { 24.1, 71.5, 139, 120 }, + [119] = { 66.2, 71.4, 139, 120 }, + [120] = { 76.6, 71.3, 139, 120 }, + [121] = { 23.4, 71, 139, 120 }, + [122] = { 75.7, 71, 139, 120 }, + [123] = { 23.9, 70.8, 139, 120 }, + [124] = { 76.4, 70.6, 139, 120 }, + [125] = { 71.2, 58.1, 139, 120 }, + [126] = { 70.6, 57.9, 139, 120 }, + [127] = { 71.5, 57.3, 139, 120 }, + [128] = { 70.6, 57.3, 139, 120 }, + [129] = { 71.1, 56.8, 139, 120 }, + [130] = { 34.7, 64.7, 440, 120 }, + [131] = { 34.4, 64.7, 440, 120 }, + [132] = { 34.7, 64.3, 440, 120 }, + [133] = { 34.3, 64.3, 440, 120 }, + [134] = { 34.5, 63.9, 440, 120 }, + [135] = { 36, 58.3, 440, 120 }, + [136] = { 30.3, 58.3, 440, 120 }, + [137] = { 29.9, 58.1, 440, 120 }, + [138] = { 35.5, 58, 440, 120 }, + [139] = { 36.4, 57.9, 440, 120 }, + [140] = { 30.5, 57.8, 440, 120 }, + [141] = { 29.9, 57.6, 440, 120 }, + [142] = { 30.2, 57.4, 440, 120 }, + [143] = { 35.7, 57.2, 440, 120 }, + [144] = { 36.1, 57.2, 440, 120 }, + [145] = { 52.1, 57, 440, 120 }, + [146] = { 52.6, 56.9, 440, 120 }, + [147] = { 51.8, 56.4, 440, 120 }, + [148] = { 52.7, 56.1, 440, 120 }, + [149] = { 52.2, 55.8, 440, 120 }, + [150] = { 57.7, 53.8, 440, 120 }, + [151] = { 58, 53.6, 440, 120 }, + [152] = { 57.5, 53.6, 440, 120 }, + [153] = { 57.9, 53.1, 440, 120 }, + [154] = { 57.6, 53.1, 440, 120 }, + [155] = { 52, 50.2, 440, 120 }, + [156] = { 51.7, 50, 440, 120 }, + [157] = { 52.2, 49.8, 440, 120 }, + [158] = { 52.1, 49.4, 440, 120 }, + [159] = { 51.7, 49.4, 440, 120 }, + [160] = { 51.1, 38.5, 440, 120 }, + [161] = { 50.8, 38.5, 440, 120 }, + [162] = { 51.1, 38, 440, 120 }, + [163] = { 50.7, 38, 440, 120 }, + [164] = { 50.9, 37.8, 440, 120 }, + [165] = { 54.4, 32, 440, 120 }, + [166] = { 54.2, 31.7, 440, 120 }, + [167] = { 54.6, 31.7, 440, 120 }, + [168] = { 54.5, 31.4, 440, 120 }, + [169] = { 54.3, 31.3, 440, 120 }, + [170] = { 48.2, 30.2, 440, 120 }, + [171] = { 48.5, 29.9, 440, 120 }, + [172] = { 47.9, 29.9, 440, 120 }, + [173] = { 48.5, 29.4, 440, 120 }, + [174] = { 48.1, 29.4, 440, 120 }, + [175] = { 62.4, 52.5, 618, 120 }, + [176] = { 62.5, 52.5, 618, 120 }, + [177] = { 62.3, 52.4, 618, 120 }, + [178] = { 62.5, 52.3, 618, 120 }, + [179] = { 66.6, 52.2, 618, 120 }, + [180] = { 62.4, 52.2, 618, 120 }, + [181] = { 66.4, 52.1, 618, 120 }, + [182] = { 66.7, 52, 618, 120 }, + [183] = { 66.4, 51.8, 618, 120 }, + [184] = { 66.6, 51.8, 618, 120 }, + [185] = { 62.9, 47.7, 618, 120 }, + [186] = { 62.8, 47.6, 618, 120 }, + [187] = { 63, 47.5, 618, 120 }, + [188] = { 62.8, 47.4, 618, 120 }, + [189] = { 62.9, 47.3, 618, 120 }, + [190] = { 44.6, 42.2, 618, 120 }, + [191] = { 44.7, 42.1, 618, 120 }, + [192] = { 44.4, 42, 618, 120 }, + [193] = { 44.7, 41.8, 618, 120 }, + [194] = { 44.5, 41.7, 618, 120 }, + [195] = { 42.7, 38, 618, 120 }, + [196] = { 42.9, 37.9, 618, 120 }, + [197] = { 42.6, 37.9, 618, 120 }, + [198] = { 42.9, 37.6, 618, 120 }, + [199] = { 42.7, 37.6, 618, 120 }, + [200] = { 46.1, 37.2, 618, 120 }, + [201] = { 46, 37.2, 618, 120 }, + [202] = { 46.2, 37, 618, 120 }, + [203] = { 45.9, 36.9, 618, 120 }, + [204] = { 46.1, 36.8, 618, 120 }, + [205] = { 50, 18.1, 618, 120 }, + [206] = { 50.3, 18.1, 618, 120 }, + [207] = { 50.4, 17.8, 618, 120 }, + [208] = { 49.9, 17.8, 618, 120 }, + [209] = { 50.2, 17.6, 618, 120 }, + [210] = { 55.1, 15.2, 618, 120 }, + [211] = { 54.8, 15.2, 618, 120 }, + [212] = { 55.2, 15, 618, 120 }, + [213] = { 54.8, 14.8, 618, 120 }, + [214] = { 54.9, 14.6, 618, 120 }, + [215] = { 50.2, 12.8, 618, 120 }, + [216] = { 49.9, 12.7, 618, 120 }, + [217] = { 50.2, 12.5, 618, 120 }, + [218] = { 49.9, 12.4, 618, 120 }, + [219] = { 50.1, 12.3, 618, 120 }, + }, + }, + [181191] = { + ["coords"] = { + [1] = { 60.9, 44.9, 4, 120 }, + [2] = { 47.2, 39.8, 4, 120 }, + [3] = { 47, 39.2, 4, 120 }, + [4] = { 46.7, 38.6, 4, 120 }, + [5] = { 48.1, 38.2, 4, 120 }, + [6] = { 48, 38.2, 4, 120 }, + [7] = { 47.2, 36.9, 4, 120 }, + [8] = { 46, 36.4, 4, 120 }, + [9] = { 57.4, 35.7, 4, 120 }, + [10] = { 58.2, 35, 4, 120 }, + [11] = { 56.7, 34.5, 4, 120 }, + [12] = { 56, 34.5, 4, 120 }, + [13] = { 57, 33.8, 4, 120 }, + [14] = { 57, 33.6, 4, 120 }, + [15] = { 62.8, 31.9, 4, 120 }, + [16] = { 62.7, 31.1, 4, 120 }, + [17] = { 62, 30.8, 4, 120 }, + [18] = { 63.9, 30.6, 4, 120 }, + [19] = { 62.7, 30.1, 4, 120 }, + [20] = { 63.6, 30, 4, 120 }, + [21] = { 63.6, 29.5, 4, 120 }, + [22] = { 63.1, 29.5, 4, 120 }, + [23] = { 51, 29.1, 4, 120 }, + [24] = { 52.7, 28.9, 4, 120 }, + [25] = { 51.4, 27.8, 4, 120 }, + [26] = { 52.8, 27.7, 4, 120 }, + [27] = { 53.1, 27.3, 4, 120 }, + [28] = { 47.3, 21.2, 4, 120 }, + [29] = { 45.7, 20.6, 4, 120 }, + [30] = { 46.4, 20.3, 4, 120 }, + [31] = { 45.2, 20.1, 4, 120 }, + [32] = { 47, 18.7, 4, 120 }, + [33] = { 45.9, 18.3, 4, 120 }, + [34] = { 18, 67.2, 16, 120 }, + [35] = { 18, 67.1, 16, 120 }, + [36] = { 18.6, 67, 16, 120 }, + [37] = { 18.7, 66.7, 16, 120 }, + [38] = { 18.5, 66.3, 16, 120 }, + [39] = { 24.8, 59.7, 16, 120 }, + [40] = { 24.8, 59.5, 16, 120 }, + [41] = { 24.2, 59.4, 16, 120 }, + [42] = { 24.7, 59.2, 16, 120 }, + [43] = { 45, 59.1, 16, 120 }, + [44] = { 24.3, 58.8, 16, 120 }, + [45] = { 45.2, 58.1, 16, 120 }, + [46] = { 44.9, 57.8, 16, 120 }, + [47] = { 45.2, 57.6, 16, 120 }, + [48] = { 47.6, 54.6, 16, 120 }, + [49] = { 48, 54.6, 16, 120 }, + [50] = { 17.2, 54.3, 16, 120 }, + [51] = { 17.6, 54.2, 16, 120 }, + [52] = { 48.5, 54.2, 16, 120 }, + [53] = { 16.8, 54.1, 16, 120 }, + [54] = { 17.8, 53.7, 16, 120 }, + [55] = { 17.2, 53.7, 16, 120 }, + [56] = { 17.1, 53.4, 16, 120 }, + [57] = { 44.3, 50.5, 16, 120 }, + [58] = { 44.8, 50.4, 16, 120 }, + [59] = { 44.6, 49.3, 16, 120 }, + [60] = { 80.4, 62.1, 28, 120 }, + [61] = { 79.8, 62.1, 28, 120 }, + [62] = { 80.1, 61.5, 28, 120 }, + [63] = { 81, 61.2, 28, 120 }, + [64] = { 80.2, 60.5, 28, 120 }, + [65] = { 76.3, 55.8, 28, 120 }, + [66] = { 75.4, 55.5, 28, 120 }, + [67] = { 76, 54.7, 28, 120 }, + [68] = { 34.2, 71.8, 46, 120 }, + [69] = { 33.5, 71.8, 46, 120 }, + [70] = { 34.2, 70.6, 46, 120 }, + [71] = { 23.8, 69.7, 46, 120 }, + [72] = { 23.9, 68.3, 46, 120 }, + [73] = { 23.3, 68, 46, 120 }, + [74] = { 33.8, 67.7, 46, 120 }, + [75] = { 24.1, 52.2, 46, 120 }, + [76] = { 24, 51, 46, 120 }, + [77] = { 73.4, 50.3, 46, 120 }, + [78] = { 74.7, 50.2, 46, 120 }, + [79] = { 24.5, 50.2, 46, 120 }, + [80] = { 74.1, 49.7, 46, 120 }, + [81] = { 74.3, 48.7, 46, 120 }, + [82] = { 74.8, 48.7, 46, 120 }, + [83] = { 66.7, 37, 46, 120 }, + [84] = { 66.2, 35.9, 46, 120 }, + [85] = { 66.9, 35.6, 46, 120 }, + [86] = { 67, 35.1, 46, 120 }, + [87] = { 80.1, 29.6, 46, 120 }, + [88] = { 79.2, 29.5, 46, 120 }, + [89] = { 80.7, 29.5, 46, 120 }, + [90] = { 78.5, 28.9, 46, 120 }, + [91] = { 79.1, 28.6, 46, 120 }, + [92] = { 22.1, 85.8, 139, 120 }, + [93] = { 21.4, 85.7, 139, 120 }, + [94] = { 21.7, 85.1, 139, 120 }, + [95] = { 22.7, 84.8, 139, 120 }, + [96] = { 21.9, 83.9, 139, 120 }, + [97] = { 17.6, 78.7, 139, 120 }, + [98] = { 16.6, 78.5, 139, 120 }, + [99] = { 17.2, 77.5, 139, 120 }, + [100] = { 66.8, 73.3, 139, 120 }, + [101] = { 66.4, 72.8, 139, 120 }, + [102] = { 65.8, 72.7, 139, 120 }, + [103] = { 67.2, 72.4, 139, 120 }, + [104] = { 65.8, 72.2, 139, 120 }, + [105] = { 23.5, 72, 139, 120 }, + [106] = { 24.1, 71.9, 139, 120 }, + [107] = { 76.3, 71.3, 139, 120 }, + [108] = { 66.6, 71.2, 139, 120 }, + [109] = { 66.1, 71.2, 139, 120 }, + [110] = { 23.2, 70.9, 139, 120 }, + [111] = { 24.2, 70.8, 139, 120 }, + [112] = { 77.2, 70.8, 139, 120 }, + [113] = { 23.2, 70.5, 139, 120 }, + [114] = { 71.4, 58.2, 139, 120 }, + [115] = { 71.3, 56.8, 139, 120 }, + [116] = { 71, 56.8, 139, 120 }, + [117] = { 34.3, 64.6, 440, 120 }, + [118] = { 34.7, 64.5, 440, 120 }, + [119] = { 34.2, 64.4, 440, 120 }, + [120] = { 34.3, 64.1, 440, 120 }, + [121] = { 34.7, 64, 440, 120 }, + [122] = { 36.1, 58.5, 440, 120 }, + [123] = { 30.3, 58.4, 440, 120 }, + [124] = { 36.2, 58.2, 440, 120 }, + [125] = { 29.8, 58, 440, 120 }, + [126] = { 30.5, 57.7, 440, 120 }, + [127] = { 36.3, 57.5, 440, 120 }, + [128] = { 30.1, 57.4, 440, 120 }, + [129] = { 36.1, 57.4, 440, 120 }, + [130] = { 52.8, 56.4, 440, 120 }, + [131] = { 52.4, 56.2, 440, 120 }, + [132] = { 52.4, 55.8, 440, 120 }, + [133] = { 58, 54, 440, 120 }, + [134] = { 57.4, 53.9, 440, 120 }, + [135] = { 58.2, 53.4, 440, 120 }, + [136] = { 57.2, 53.3, 440, 120 }, + [137] = { 58, 53.1, 440, 120 }, + [138] = { 57.6, 52.6, 440, 120 }, + [139] = { 52.3, 49.9, 440, 120 }, + [140] = { 51, 38.5, 440, 120 }, + [141] = { 50.8, 38.5, 440, 120 }, + [142] = { 50.8, 38.1, 440, 120 }, + [143] = { 50.7, 37.9, 440, 120 }, + [144] = { 54.4, 32.1, 440, 120 }, + [145] = { 54.4, 31.3, 440, 120 }, + [146] = { 48.2, 30.5, 440, 120 }, + [147] = { 48, 30.1, 440, 120 }, + [148] = { 48, 29.5, 440, 120 }, + [149] = { 48.4, 29.4, 440, 120 }, + [150] = { 66.5, 52.9, 618, 120 }, + [151] = { 66.2, 52.8, 618, 120 }, + [152] = { 62.2, 52.7, 618, 120 }, + [153] = { 66.2, 51.8, 618, 120 }, + [154] = { 62.5, 51.5, 618, 120 }, + [155] = { 66.5, 51, 618, 120 }, + [156] = { 63.3, 48.5, 618, 120 }, + [157] = { 62.5, 48.2, 618, 120 }, + [158] = { 62.5, 47.8, 618, 120 }, + [159] = { 62.7, 47.7, 618, 120 }, + [160] = { 63, 47.6, 618, 120 }, + [161] = { 63.3, 47.5, 618, 120 }, + [162] = { 62.5, 47.1, 618, 120 }, + [163] = { 63.3, 47.1, 618, 120 }, + [164] = { 44.6, 42.5, 618, 120 }, + [165] = { 44.5, 42, 618, 120 }, + [166] = { 44.6, 41.7, 618, 120 }, + [167] = { 44.3, 41.4, 618, 120 }, + [168] = { 44.6, 41.4, 618, 120 }, + [169] = { 42.4, 38.2, 618, 120 }, + [170] = { 43.1, 38, 618, 120 }, + [171] = { 46.1, 37.2, 618, 120 }, + [172] = { 45.6, 37, 618, 120 }, + [173] = { 46.4, 37, 618, 120 }, + [174] = { 45.8, 36.9, 618, 120 }, + [175] = { 50, 18.6, 618, 120 }, + [176] = { 50.2, 18.2, 618, 120 }, + [177] = { 50, 18, 618, 120 }, + [178] = { 49.8, 17.6, 618, 120 }, + [179] = { 49.9, 17.6, 618, 120 }, + [180] = { 50.1, 17.5, 618, 120 }, + [181] = { 55.2, 15.2, 618, 120 }, + [182] = { 54.7, 14.9, 618, 120 }, + [183] = { 50, 12.9, 618, 120 }, + [184] = { 49.8, 12.5, 618, 120 }, + [185] = { 50.3, 12.5, 618, 120 }, + [186] = { 49.9, 12.4, 618, 120 }, + }, + }, + [181192] = { + ["coords"] = { + [1] = { 61.9, 45.6, 4, 120 }, + [2] = { 60.9, 45, 4, 120 }, + [3] = { 60.7, 44.6, 4, 120 }, + [4] = { 60.1, 44.4, 4, 120 }, + [5] = { 61.8, 43.6, 4, 120 }, + [6] = { 60.7, 42.6, 4, 120 }, + [7] = { 48.1, 39.4, 4, 120 }, + [8] = { 47.7, 39.3, 4, 120 }, + [9] = { 46.7, 38.6, 4, 120 }, + [10] = { 57.7, 36.1, 4, 120 }, + [11] = { 56, 36, 4, 120 }, + [12] = { 55.6, 35.6, 4, 120 }, + [13] = { 56.6, 35.5, 4, 120 }, + [14] = { 63.3, 31.6, 4, 120 }, + [15] = { 63.3, 30.4, 4, 120 }, + [16] = { 62.3, 29.6, 4, 120 }, + [17] = { 51.3, 28.5, 4, 120 }, + [18] = { 52.3, 27.2, 4, 120 }, + [19] = { 52.2, 26.6, 4, 120 }, + [20] = { 52.7, 26.5, 4, 120 }, + [21] = { 52.1, 26.4, 4, 120 }, + [22] = { 46.2, 21.7, 4, 120 }, + [23] = { 46.7, 20, 4, 120 }, + [24] = { 46.2, 19.6, 4, 120 }, + [25] = { 18.6, 67.4, 16, 120 }, + [26] = { 18.5, 67.4, 16, 120 }, + [27] = { 18.9, 67, 16, 120 }, + [28] = { 18.3, 66.8, 16, 120 }, + [29] = { 17.9, 66.7, 16, 120 }, + [30] = { 19.1, 66.3, 16, 120 }, + [31] = { 18.1, 66.2, 16, 120 }, + [32] = { 24.7, 59.6, 16, 120 }, + [33] = { 24.2, 59.4, 16, 120 }, + [34] = { 45.3, 59.1, 16, 120 }, + [35] = { 24.7, 59.1, 16, 120 }, + [36] = { 45.6, 58.8, 16, 120 }, + [37] = { 44.8, 58.5, 16, 120 }, + [38] = { 45.6, 57.6, 16, 120 }, + [39] = { 45.6, 57.5, 16, 120 }, + [40] = { 17.2, 54.8, 16, 120 }, + [41] = { 48, 54.6, 16, 120 }, + [42] = { 16.8, 54.1, 16, 120 }, + [43] = { 17, 53.9, 16, 120 }, + [44] = { 47.7, 53.6, 16, 120 }, + [45] = { 17.1, 53.5, 16, 120 }, + [46] = { 17.6, 53.4, 16, 120 }, + [47] = { 47.9, 53.3, 16, 120 }, + [48] = { 48.1, 53.1, 16, 120 }, + [49] = { 44.2, 50.5, 16, 120 }, + [50] = { 44.3, 50.4, 16, 120 }, + [51] = { 44.8, 49.9, 16, 120 }, + [52] = { 45, 49.5, 16, 120 }, + [53] = { 44.9, 48.9, 16, 120 }, + [54] = { 44.6, 48.5, 16, 120 }, + [55] = { 80.2, 61.9, 28, 120 }, + [56] = { 81, 61.9, 28, 120 }, + [57] = { 81, 61.8, 28, 120 }, + [58] = { 81, 61.1, 28, 120 }, + [59] = { 75.8, 56, 28, 120 }, + [60] = { 75.9, 55.4, 28, 120 }, + [61] = { 75.4, 55.2, 28, 120 }, + [62] = { 75.8, 55.1, 28, 120 }, + [63] = { 75.9, 54.9, 28, 120 }, + [64] = { 76.4, 54.5, 28, 120 }, + [65] = { 75.8, 53.8, 28, 120 }, + [66] = { 33.6, 70.9, 46, 120 }, + [67] = { 23.3, 69.9, 46, 120 }, + [68] = { 23.8, 69.7, 46, 120 }, + [69] = { 34.1, 69.7, 46, 120 }, + [70] = { 24.4, 69.1, 46, 120 }, + [71] = { 24.4, 69, 46, 120 }, + [72] = { 33, 69, 46, 120 }, + [73] = { 23.6, 69, 46, 120 }, + [74] = { 34.5, 68.4, 46, 120 }, + [75] = { 24.4, 67.9, 46, 120 }, + [76] = { 23.6, 67.7, 46, 120 }, + [77] = { 23.6, 67.6, 46, 120 }, + [78] = { 23.7, 51.4, 46, 120 }, + [79] = { 25.1, 51.3, 46, 120 }, + [80] = { 24.6, 50.8, 46, 120 }, + [81] = { 25.5, 50.7, 46, 120 }, + [82] = { 74.1, 50.6, 46, 120 }, + [83] = { 73.4, 50.2, 46, 120 }, + [84] = { 73.5, 49.1, 46, 120 }, + [85] = { 24, 49, 46, 120 }, + [86] = { 74.3, 48.8, 46, 120 }, + [87] = { 74, 48, 46, 120 }, + [88] = { 67.8, 36.9, 46, 120 }, + [89] = { 67.2, 36.4, 46, 120 }, + [90] = { 67.4, 35.8, 46, 120 }, + [91] = { 67, 35.1, 46, 120 }, + [92] = { 79.9, 28.6, 46, 120 }, + [93] = { 79, 28.5, 46, 120 }, + [94] = { 21.9, 85.5, 139, 120 }, + [95] = { 22.8, 85.5, 139, 120 }, + [96] = { 22.7, 85.4, 139, 120 }, + [97] = { 22.7, 84.7, 139, 120 }, + [98] = { 16.9, 79, 139, 120 }, + [99] = { 17.1, 78.4, 139, 120 }, + [100] = { 16.6, 78.1, 139, 120 }, + [101] = { 17, 78, 139, 120 }, + [102] = { 17, 77.8, 139, 120 }, + [103] = { 17.6, 77.3, 139, 120 }, + [104] = { 16.9, 76.5, 139, 120 }, + [105] = { 76.5, 72.9, 139, 120 }, + [106] = { 66.4, 72.8, 139, 120 }, + [107] = { 66.8, 72.8, 139, 120 }, + [108] = { 77.2, 72.2, 139, 120 }, + [109] = { 24, 72, 139, 120 }, + [110] = { 66.9, 71.9, 139, 120 }, + [111] = { 75.6, 71.8, 139, 120 }, + [112] = { 22.8, 71.8, 139, 120 }, + [113] = { 75.4, 71.6, 139, 120 }, + [114] = { 24.2, 71.5, 139, 120 }, + [115] = { 66.6, 71.2, 139, 120 }, + [116] = { 75.3, 71.2, 139, 120 }, + [117] = { 23.9, 70.7, 139, 120 }, + [118] = { 23.3, 70.7, 139, 120 }, + [119] = { 23.6, 70.2, 139, 120 }, + [120] = { 70.5, 58.6, 139, 120 }, + [121] = { 70.4, 58, 139, 120 }, + [122] = { 71.2, 57.9, 139, 120 }, + [123] = { 71.3, 57.5, 139, 120 }, + [124] = { 72, 57.3, 139, 120 }, + [125] = { 70.7, 57.1, 139, 120 }, + [126] = { 70.5, 56.2, 139, 120 }, + [127] = { 34.6, 64.3, 440, 120 }, + [128] = { 35.7, 58.4, 440, 120 }, + [129] = { 30.1, 58.4, 440, 120 }, + [130] = { 35.6, 58.1, 440, 120 }, + [131] = { 30.1, 58, 440, 120 }, + [132] = { 35.5, 57.5, 440, 120 }, + [133] = { 30.3, 57.5, 440, 120 }, + [134] = { 36.4, 57.5, 440, 120 }, + [135] = { 30.2, 57.4, 440, 120 }, + [136] = { 35.9, 57.4, 440, 120 }, + [137] = { 36, 57, 440, 120 }, + [138] = { 52.5, 56.9, 440, 120 }, + [139] = { 52.3, 56.9, 440, 120 }, + [140] = { 52, 56.5, 440, 120 }, + [141] = { 52.6, 56, 440, 120 }, + [142] = { 57.7, 53.8, 440, 120 }, + [143] = { 58, 53.6, 440, 120 }, + [144] = { 57.2, 53.3, 440, 120 }, + [145] = { 57.8, 53, 440, 120 }, + [146] = { 51.8, 50.3, 440, 120 }, + [147] = { 52.3, 50.2, 440, 120 }, + [148] = { 51.8, 49.8, 440, 120 }, + [149] = { 51.8, 49.7, 440, 120 }, + [150] = { 52.1, 49.6, 440, 120 }, + [151] = { 51.7, 49.6, 440, 120 }, + [152] = { 52, 49.3, 440, 120 }, + [153] = { 50.8, 38.5, 440, 120 }, + [154] = { 51.1, 38.4, 440, 120 }, + [155] = { 51.1, 38, 440, 120 }, + [156] = { 54.2, 31.9, 440, 120 }, + [157] = { 54.5, 31.8, 440, 120 }, + [158] = { 54.6, 31.6, 440, 120 }, + [159] = { 54.1, 31.6, 440, 120 }, + [160] = { 54.5, 31.4, 440, 120 }, + [161] = { 54.2, 31.2, 440, 120 }, + [162] = { 48.1, 30.4, 440, 120 }, + [163] = { 47.8, 29.9, 440, 120 }, + [164] = { 48.2, 29.3, 440, 120 }, + [165] = { 62.8, 53.2, 618, 120 }, + [166] = { 66.3, 53, 618, 120 }, + [167] = { 62.1, 53, 618, 120 }, + [168] = { 62.6, 52.7, 618, 120 }, + [169] = { 66.4, 52.6, 618, 120 }, + [170] = { 62.3, 52.5, 618, 120 }, + [171] = { 62.1, 52.5, 618, 120 }, + [172] = { 65.9, 52, 618, 120 }, + [173] = { 62.5, 48.2, 618, 120 }, + [174] = { 62.8, 47.7, 618, 120 }, + [175] = { 63.3, 47, 618, 120 }, + [176] = { 45, 42.4, 618, 120 }, + [177] = { 44.9, 42.4, 618, 120 }, + [178] = { 44.4, 42.2, 618, 120 }, + [179] = { 44.9, 42.1, 618, 120 }, + [180] = { 42.8, 38.2, 618, 120 }, + [181] = { 42.6, 38, 618, 120 }, + [182] = { 42.6, 37.7, 618, 120 }, + [183] = { 42.3, 37.6, 618, 120 }, + [184] = { 45.7, 37.5, 618, 120 }, + [185] = { 45.9, 37.5, 618, 120 }, + [186] = { 42.8, 37.5, 618, 120 }, + [187] = { 46.5, 37.3, 618, 120 }, + [188] = { 42.5, 37.2, 618, 120 }, + [189] = { 45.9, 37.2, 618, 120 }, + [190] = { 46.4, 36.8, 618, 120 }, + [191] = { 46.1, 36.4, 618, 120 }, + [192] = { 50, 18, 618, 120 }, + [193] = { 49.9, 17.6, 618, 120 }, + [194] = { 55.2, 15.2, 618, 120 }, + [195] = { 55.3, 15, 618, 120 }, + [196] = { 55.2, 14.9, 618, 120 }, + [197] = { 54.6, 14.9, 618, 120 }, + [198] = { 55.1, 14.7, 618, 120 }, + [199] = { 55.1, 14.6, 618, 120 }, + [200] = { 50.1, 12.9, 618, 120 }, + [201] = { 50.3, 12.9, 618, 120 }, + [202] = { 49.6, 12.8, 618, 120 }, + [203] = { 50.3, 12.4, 618, 120 }, + [204] = { 49.9, 12.4, 618, 120 }, + [205] = { 50.1, 12.2, 618, 120 }, + }, + }, + [181193] = { + ["coords"] = { + [1] = { 60, 45.8, 4, 120 }, + [2] = { 60.9, 44.9, 4, 120 }, + [3] = { 61.7, 42.7, 4, 120 }, + [4] = { 46.2, 39.3, 4, 120 }, + [5] = { 46, 38, 4, 120 }, + [6] = { 47.3, 37.6, 4, 120 }, + [7] = { 47.2, 36.9, 4, 120 }, + [8] = { 47.9, 36.5, 4, 120 }, + [9] = { 45.9, 36.4, 4, 120 }, + [10] = { 56.9, 36.2, 4, 120 }, + [11] = { 57.9, 34.9, 4, 120 }, + [12] = { 56.1, 34, 4, 120 }, + [13] = { 63.7, 31.7, 4, 120 }, + [14] = { 63.9, 30.6, 4, 120 }, + [15] = { 62.6, 30.1, 4, 120 }, + [16] = { 52.3, 29.6, 4, 120 }, + [17] = { 51.7, 28.1, 4, 120 }, + [18] = { 45.1, 21.3, 4, 120 }, + [19] = { 45.4, 21, 4, 120 }, + [20] = { 47, 19.9, 4, 120 }, + [21] = { 47, 18.7, 4, 120 }, + [22] = { 18.3, 66.9, 16, 120 }, + [23] = { 19.1, 66.2, 16, 120 }, + [24] = { 18.1, 66.2, 16, 120 }, + [25] = { 24.8, 59.7, 16, 120 }, + [26] = { 24.7, 59.6, 16, 120 }, + [27] = { 24.7, 59.5, 16, 120 }, + [28] = { 45.3, 59.1, 16, 120 }, + [29] = { 24.8, 59.1, 16, 120 }, + [30] = { 24.3, 59, 16, 120 }, + [31] = { 24.2, 59, 16, 120 }, + [32] = { 45.2, 58.1, 16, 120 }, + [33] = { 45.1, 57.6, 16, 120 }, + [34] = { 45.2, 57.6, 16, 120 }, + [35] = { 17.2, 54.8, 16, 120 }, + [36] = { 48, 54.6, 16, 120 }, + [37] = { 48.5, 54.2, 16, 120 }, + [38] = { 47.6, 54.2, 16, 120 }, + [39] = { 17.5, 54, 16, 120 }, + [40] = { 17.1, 53.5, 16, 120 }, + [41] = { 47.9, 53.3, 16, 120 }, + [42] = { 47.9, 53.2, 16, 120 }, + [43] = { 45, 49.5, 16, 120 }, + [44] = { 44.2, 49.5, 16, 120 }, + [45] = { 44.2, 49, 16, 120 }, + [46] = { 44.9, 48.9, 16, 120 }, + [47] = { 44.7, 48.5, 16, 120 }, + [48] = { 80.6, 62.7, 28, 120 }, + [49] = { 75.5, 54.6, 28, 120 }, + [50] = { 33.6, 70.9, 46, 120 }, + [51] = { 33.2, 70.2, 46, 120 }, + [52] = { 32.6, 69.6, 46, 120 }, + [53] = { 23.2, 69.1, 46, 120 }, + [54] = { 22.6, 68, 46, 120 }, + [55] = { 22.7, 67.9, 46, 120 }, + [56] = { 24.1, 67.6, 46, 120 }, + [57] = { 24.7, 50.8, 46, 120 }, + [58] = { 25.5, 50.7, 46, 120 }, + [59] = { 73.4, 50.2, 46, 120 }, + [60] = { 24.4, 50.2, 46, 120 }, + [61] = { 74.3, 48.7, 46, 120 }, + [62] = { 73.4, 47.5, 46, 120 }, + [63] = { 74.1, 47.2, 46, 120 }, + [64] = { 67.3, 37.7, 46, 120 }, + [65] = { 66.1, 37, 46, 120 }, + [66] = { 67.8, 36.9, 46, 120 }, + [67] = { 67.9, 36.2, 46, 120 }, + [68] = { 66.3, 36, 46, 120 }, + [69] = { 67.8, 35.5, 46, 120 }, + [70] = { 78.8, 30.5, 46, 120 }, + [71] = { 79.7, 30.4, 46, 120 }, + [72] = { 79.8, 29, 46, 120 }, + [73] = { 78.5, 29, 46, 120 }, + [74] = { 80.4, 28.7, 46, 120 }, + [75] = { 79.9, 28.5, 46, 120 }, + [76] = { 22.4, 86.4, 139, 120 }, + [77] = { 16.7, 77.5, 139, 120 }, + [78] = { 76, 72.4, 139, 120 }, + [79] = { 67.2, 72.3, 139, 120 }, + [80] = { 66.1, 72.1, 139, 120 }, + [81] = { 76.5, 72, 139, 120 }, + [82] = { 75.3, 72, 139, 120 }, + [83] = { 75.5, 71.8, 139, 120 }, + [84] = { 77, 71.5, 139, 120 }, + [85] = { 66.3, 71.5, 139, 120 }, + [86] = { 23.1, 71.4, 139, 120 }, + [87] = { 24.4, 71, 139, 120 }, + [88] = { 77, 71, 139, 120 }, + [89] = { 23.8, 71, 139, 120 }, + [90] = { 23.6, 70.9, 139, 120 }, + [91] = { 23.9, 70.7, 139, 120 }, + [92] = { 75.5, 70.5, 139, 120 }, + [93] = { 70.5, 58.5, 139, 120 }, + [94] = { 71.3, 57.6, 139, 120 }, + [95] = { 70.5, 56.1, 139, 120 }, + [96] = { 34.7, 64.8, 440, 120 }, + [97] = { 34.5, 64.8, 440, 120 }, + [98] = { 34.3, 64.6, 440, 120 }, + [99] = { 34.7, 64.5, 440, 120 }, + [100] = { 34.4, 64.5, 440, 120 }, + [101] = { 34.2, 64.4, 440, 120 }, + [102] = { 30.3, 58.4, 440, 120 }, + [103] = { 36.2, 58.2, 440, 120 }, + [104] = { 35.6, 58.1, 440, 120 }, + [105] = { 30.1, 58.1, 440, 120 }, + [106] = { 36.1, 57.9, 440, 120 }, + [107] = { 35.7, 57.8, 440, 120 }, + [108] = { 30.5, 57.7, 440, 120 }, + [109] = { 29.9, 57.7, 440, 120 }, + [110] = { 35.6, 57.6, 440, 120 }, + [111] = { 36.2, 57.5, 440, 120 }, + [112] = { 30.2, 57.4, 440, 120 }, + [113] = { 35.9, 57.4, 440, 120 }, + [114] = { 52.2, 56.9, 440, 120 }, + [115] = { 52, 56.5, 440, 120 }, + [116] = { 57.7, 53.8, 440, 120 }, + [117] = { 58.1, 53.4, 440, 120 }, + [118] = { 57.4, 52.9, 440, 120 }, + [119] = { 51.8, 50.3, 440, 120 }, + [120] = { 52, 50.3, 440, 120 }, + [121] = { 52.2, 50.3, 440, 120 }, + [122] = { 51.6, 49.8, 440, 120 }, + [123] = { 52.2, 49.5, 440, 120 }, + [124] = { 52, 49.3, 440, 120 }, + [125] = { 50.6, 38.2, 440, 120 }, + [126] = { 51.2, 38.2, 440, 120 }, + [127] = { 51, 37.7, 440, 120 }, + [128] = { 54.1, 31.9, 440, 120 }, + [129] = { 54.7, 31.8, 440, 120 }, + [130] = { 54.6, 31.6, 440, 120 }, + [131] = { 54.1, 31.5, 440, 120 }, + [132] = { 48.4, 30.3, 440, 120 }, + [133] = { 48, 30.2, 440, 120 }, + [134] = { 48.5, 30.1, 440, 120 }, + [135] = { 48.5, 30, 440, 120 }, + [136] = { 48.6, 29.8, 440, 120 }, + [137] = { 66.6, 53.3, 618, 120 }, + [138] = { 62.3, 53.1, 618, 120 }, + [139] = { 62.6, 52.7, 618, 120 }, + [140] = { 66.7, 52.7, 618, 120 }, + [141] = { 62.1, 52.5, 618, 120 }, + [142] = { 66.5, 52.4, 618, 120 }, + [143] = { 66.9, 52.3, 618, 120 }, + [144] = { 62.3, 52.2, 618, 120 }, + [145] = { 62.7, 52.2, 618, 120 }, + [146] = { 62.3, 51.8, 618, 120 }, + [147] = { 62.6, 51.5, 618, 120 }, + [148] = { 66, 51.3, 618, 120 }, + [149] = { 66.5, 51, 618, 120 }, + [150] = { 62.9, 46.9, 618, 120 }, + [151] = { 44.6, 42.4, 618, 120 }, + [152] = { 44.2, 41.9, 618, 120 }, + [153] = { 45, 41.9, 618, 120 }, + [154] = { 45, 41.8, 618, 120 }, + [155] = { 44.6, 41.7, 618, 120 }, + [156] = { 44.6, 41.4, 618, 120 }, + [157] = { 45.8, 37.8, 618, 120 }, + [158] = { 43.2, 37.8, 618, 120 }, + [159] = { 43, 37.8, 618, 120 }, + [160] = { 46.3, 37.5, 618, 120 }, + [161] = { 42.7, 37.4, 618, 120 }, + [162] = { 45.8, 37.2, 618, 120 }, + [163] = { 42.9, 37.1, 618, 120 }, + [164] = { 50.2, 18.3, 618, 120 }, + [165] = { 50.2, 18.2, 618, 120 }, + [166] = { 50, 18, 618, 120 }, + [167] = { 50.3, 17.8, 618, 120 }, + [168] = { 50.1, 17.5, 618, 120 }, + [169] = { 55, 15.4, 618, 120 }, + [170] = { 55, 15.3, 618, 120 }, + [171] = { 55.2, 15.2, 618, 120 }, + [172] = { 54.9, 15.2, 618, 120 }, + [173] = { 54.7, 14.8, 618, 120 }, + [174] = { 50.3, 12.9, 618, 120 }, + [175] = { 49.7, 12.8, 618, 120 }, + [176] = { 50.1, 12.2, 618, 120 }, + }, + }, + [181194] = { + ["coords"] = { + [1] = { 59.9, 45.1, 4, 120 }, + [2] = { 59.8, 43.8, 4, 120 }, + [3] = { 61.4, 43.5, 4, 120 }, + [4] = { 60.7, 43.5, 4, 120 }, + [5] = { 60, 43, 4, 120 }, + [6] = { 61.1, 42.2, 4, 120 }, + [7] = { 47.7, 37.2, 4, 120 }, + [8] = { 48.2, 36.7, 4, 120 }, + [9] = { 56.9, 36.2, 4, 120 }, + [10] = { 55.6, 35.6, 4, 120 }, + [11] = { 57.9, 34.9, 4, 120 }, + [12] = { 56.7, 34.4, 4, 120 }, + [13] = { 63.9, 32.1, 4, 120 }, + [14] = { 62, 30.8, 4, 120 }, + [15] = { 62.5, 29.6, 4, 120 }, + [16] = { 63, 29.5, 4, 120 }, + [17] = { 52.1, 29, 4, 120 }, + [18] = { 52.7, 28.9, 4, 120 }, + [19] = { 51, 27.6, 4, 120 }, + [20] = { 52.8, 26.5, 4, 120 }, + [21] = { 51.4, 26, 4, 120 }, + [22] = { 46.2, 21.7, 4, 120 }, + [23] = { 46.8, 21.6, 4, 120 }, + [24] = { 46.4, 20.3, 4, 120 }, + [25] = { 45.4, 19.2, 4, 120 }, + [26] = { 45.9, 18.3, 4, 120 }, + [27] = { 18, 67.2, 16, 120 }, + [28] = { 18.9, 67, 16, 120 }, + [29] = { 24.7, 59.5, 16, 120 }, + [30] = { 24.8, 59.2, 16, 120 }, + [31] = { 45, 59.1, 16, 120 }, + [32] = { 45.6, 58.7, 16, 120 }, + [33] = { 24.3, 58.7, 16, 120 }, + [34] = { 45.5, 58.1, 16, 120 }, + [35] = { 44.9, 57.8, 16, 120 }, + [36] = { 17.2, 54.8, 16, 120 }, + [37] = { 48.3, 54.6, 16, 120 }, + [38] = { 17.6, 54.3, 16, 120 }, + [39] = { 47.6, 54.2, 16, 120 }, + [40] = { 48.5, 54.2, 16, 120 }, + [41] = { 48.2, 54.1, 16, 120 }, + [42] = { 17.3, 53.7, 16, 120 }, + [43] = { 17.8, 53.6, 16, 120 }, + [44] = { 48.3, 53.3, 16, 120 }, + [45] = { 48.2, 53.3, 16, 120 }, + [46] = { 44.7, 50.5, 16, 120 }, + [47] = { 44.8, 50, 16, 120 }, + [48] = { 44.2, 49, 16, 120 }, + [49] = { 44.2, 48.9, 16, 120 }, + [50] = { 80.6, 62.7, 28, 120 }, + [51] = { 79.8, 62.1, 28, 120 }, + [52] = { 80.3, 61.1, 28, 120 }, + [53] = { 80.5, 60.9, 28, 120 }, + [54] = { 80.2, 60.5, 28, 120 }, + [55] = { 76, 55.5, 28, 120 }, + [56] = { 75.4, 55.2, 28, 120 }, + [57] = { 76.4, 54.4, 28, 120 }, + [58] = { 75.8, 54.2, 28, 120 }, + [59] = { 75.4, 53.9, 28, 120 }, + [60] = { 75.7, 53.7, 28, 120 }, + [61] = { 76.1, 53.6, 28, 120 }, + [62] = { 33.8, 71.4, 46, 120 }, + [63] = { 33, 70.8, 46, 120 }, + [64] = { 34.1, 69.7, 46, 120 }, + [65] = { 33, 69.1, 46, 120 }, + [66] = { 34.6, 68.4, 46, 120 }, + [67] = { 22.7, 68, 46, 120 }, + [68] = { 33.8, 67.8, 46, 120 }, + [69] = { 24.9, 52.2, 46, 120 }, + [70] = { 23.7, 51.4, 46, 120 }, + [71] = { 24.7, 50.8, 46, 120 }, + [72] = { 23.5, 50.2, 46, 120 }, + [73] = { 25.1, 49.4, 46, 120 }, + [74] = { 73.6, 49.1, 46, 120 }, + [75] = { 73.2, 48.4, 46, 120 }, + [76] = { 74.1, 47.2, 46, 120 }, + [77] = { 67.3, 37.6, 46, 120 }, + [78] = { 67, 35.2, 46, 120 }, + [79] = { 78.9, 30.4, 46, 120 }, + [80] = { 79.8, 30.3, 46, 120 }, + [81] = { 80.1, 29.6, 46, 120 }, + [82] = { 79.9, 28.5, 46, 120 }, + [83] = { 22.4, 86.5, 139, 120 }, + [84] = { 21.4, 85.7, 139, 120 }, + [85] = { 22, 84.6, 139, 120 }, + [86] = { 22.3, 84.4, 139, 120 }, + [87] = { 21.9, 84, 139, 120 }, + [88] = { 17.2, 78.4, 139, 120 }, + [89] = { 16.6, 78.1, 139, 120 }, + [90] = { 17.6, 77.2, 139, 120 }, + [91] = { 16.9, 76.9, 139, 120 }, + [92] = { 16.6, 76.7, 139, 120 }, + [93] = { 16.9, 76.5, 139, 120 }, + [94] = { 17.3, 76.3, 139, 120 }, + [95] = { 67.3, 72.8, 139, 120 }, + [96] = { 76.4, 72.1, 139, 120 }, + [97] = { 66.3, 71.5, 139, 120 }, + [98] = { 24.2, 71.5, 139, 120 }, + [99] = { 65.6, 71.4, 139, 120 }, + [100] = { 77.4, 70.7, 139, 120 }, + [101] = { 76.3, 70.3, 139, 120 }, + [102] = { 70.8, 57.9, 139, 120 }, + [103] = { 70.7, 57.5, 139, 120 }, + [104] = { 72, 57.3, 139, 120 }, + [105] = { 71, 56.8, 139, 120 }, + [106] = { 34.7, 64.8, 440, 120 }, + [107] = { 34.4, 64.1, 440, 120 }, + [108] = { 34.7, 64.1, 440, 120 }, + [109] = { 34.4, 63.9, 440, 120 }, + [110] = { 30.3, 58.4, 440, 120 }, + [111] = { 29.9, 58.2, 440, 120 }, + [112] = { 30.4, 58.2, 440, 120 }, + [113] = { 30.4, 57.9, 440, 120 }, + [114] = { 51.9, 56.8, 440, 120 }, + [115] = { 52.6, 56.8, 440, 120 }, + [116] = { 52.6, 56.6, 440, 120 }, + [117] = { 52.8, 56.4, 440, 120 }, + [118] = { 52.4, 56.2, 440, 120 }, + [119] = { 52.1, 56.1, 440, 120 }, + [120] = { 52.2, 55.9, 440, 120 }, + [121] = { 52.4, 55.8, 440, 120 }, + [122] = { 58, 54.1, 440, 120 }, + [123] = { 57.7, 53.8, 440, 120 }, + [124] = { 57.5, 53.2, 440, 120 }, + [125] = { 57.8, 53, 440, 120 }, + [126] = { 51.7, 50.1, 440, 120 }, + [127] = { 52.2, 49.5, 440, 120 }, + [128] = { 51.8, 49.3, 440, 120 }, + [129] = { 52.2, 49.2, 440, 120 }, + [130] = { 50.6, 38.5, 440, 120 }, + [131] = { 50.8, 38.5, 440, 120 }, + [132] = { 50.8, 38.1, 440, 120 }, + [133] = { 50.9, 38, 440, 120 }, + [134] = { 50.7, 37.9, 440, 120 }, + [135] = { 50.9, 37.8, 440, 120 }, + [136] = { 54.5, 31.8, 440, 120 }, + [137] = { 54.7, 31.8, 440, 120 }, + [138] = { 54.6, 31.6, 440, 120 }, + [139] = { 54.1, 31.6, 440, 120 }, + [140] = { 54.5, 31.4, 440, 120 }, + [141] = { 54.3, 31.3, 440, 120 }, + [142] = { 48.6, 29.7, 440, 120 }, + [143] = { 48.3, 29.6, 440, 120 }, + [144] = { 48, 29.5, 440, 120 }, + [145] = { 48.2, 29.3, 440, 120 }, + [146] = { 62.8, 53.2, 618, 120 }, + [147] = { 66.1, 52.4, 618, 120 }, + [148] = { 66.9, 52.2, 618, 120 }, + [149] = { 62.3, 52.2, 618, 120 }, + [150] = { 62.9, 51.9, 618, 120 }, + [151] = { 62.5, 51.5, 618, 120 }, + [152] = { 66.7, 51.5, 618, 120 }, + [153] = { 66, 51.3, 618, 120 }, + [154] = { 66.3, 51.3, 618, 120 }, + [155] = { 63.3, 48.4, 618, 120 }, + [156] = { 62.8, 48.1, 618, 120 }, + [157] = { 63.2, 48, 618, 120 }, + [158] = { 63, 47.6, 618, 120 }, + [159] = { 63.3, 47.5, 618, 120 }, + [160] = { 44.2, 42.4, 618, 120 }, + [161] = { 44.2, 41.9, 618, 120 }, + [162] = { 44.7, 41.7, 618, 120 }, + [163] = { 42.6, 38.3, 618, 120 }, + [164] = { 42.8, 38.2, 618, 120 }, + [165] = { 43, 37.8, 618, 120 }, + [166] = { 42.6, 37.7, 618, 120 }, + [167] = { 46.1, 37.6, 618, 120 }, + [168] = { 45.6, 37, 618, 120 }, + [169] = { 46.2, 36.8, 618, 120 }, + [170] = { 46.1, 36.4, 618, 120 }, + [171] = { 50.1, 18.6, 618, 120 }, + [172] = { 49.8, 18, 618, 120 }, + [173] = { 50, 17.7, 618, 120 }, + [174] = { 49.8, 17.6, 618, 120 }, + [175] = { 54.9, 15.2, 618, 120 }, + [176] = { 54.7, 15, 618, 120 }, + [177] = { 54.8, 14.6, 618, 120 }, + [178] = { 50, 12.9, 618, 120 }, + [179] = { 50.3, 12.6, 618, 120 }, + [180] = { 50.1, 12.2, 618, 120 }, + }, + }, + [181195] = { + ["coords"] = {}, + }, + [181197] = { + ["coords"] = {}, + }, + [181198] = { + ["coords"] = {}, + }, + [181199] = { + ["coords"] = {}, + }, + [181200] = { + ["coords"] = {}, + }, + [181201] = { + ["coords"] = {}, + }, + [181202] = { + ["coords"] = {}, + }, + [181203] = { + ["coords"] = {}, + }, + [181206] = { + ["coords"] = {}, + }, + [181207] = { + ["coords"] = {}, + }, + [181209] = { + ["coords"] = {}, + }, + [181210] = { + ["coords"] = {}, + }, + [181211] = { + ["coords"] = {}, + }, + [181212] = { + ["coords"] = {}, + }, + [181213] = { + ["coords"] = {}, + }, + [181214] = { + ["coords"] = {}, + }, + [181215] = { + ["coords"] = { + [1] = { 33.1, 60, 440, 120 }, + [2] = { 54.3, 53.4, 440, 120 }, + [3] = { 50.9, 33.2, 440, 120 }, + }, + }, + [181223] = { + ["coords"] = { + [1] = { 61.9, 37.4, 4, 120 }, + [2] = { 44, 39.9, 618, 120 }, + [3] = { 52.3, 16.4, 618, 120 }, + }, + }, + [181225] = { + ["coords"] = {}, + }, + [181227] = { + ["coords"] = { + [1] = { 48.5, 39.5, 1, 120 }, + [2] = { 49.7, 39.2, 1, 120 }, + [3] = { 35.1, 55.2, 12, 120 }, + [4] = { 32.2, 53.8, 12, 120 }, + [5] = { 34.7, 51, 12, 120 }, + [6] = { 34.2, 48.5, 12, 120 }, + [7] = { 44.6, 18.1, 14, 120 }, + [8] = { 45, 16.8, 14, 120 }, + [9] = { 60.4, 61.7, 85, 120 }, + [10] = { 38.3, 56.5, 141, 120 }, + [11] = { 37, 55.5, 141, 120 }, + [12] = { 38.9, 37.2, 215, 120 }, + [13] = { 95.1, 41.1, 1657, 120 }, + }, + }, + [181228] = { + ["coords"] = {}, + }, + [181229] = { + ["coords"] = {}, + }, + [181230] = { + ["coords"] = {}, + }, + [181231] = { + ["coords"] = {}, + }, + [181232] = { + ["coords"] = {}, + }, + [181233] = { + ["coords"] = {}, + }, + [181234] = { + ["coords"] = {}, + }, + [181235] = { + ["coords"] = {}, + }, + [181236] = { + ["coords"] = { + [1] = { 80.9, 58.5, 139, 900 }, + }, + }, + [181240] = { + ["coords"] = {}, + }, + [181241] = { + ["coords"] = {}, + }, + [181242] = { + ["coords"] = {}, + }, + [181243] = { + ["coords"] = {}, + }, + [181247] = { + ["coords"] = {}, + }, + [181254] = { + ["coords"] = { + [1] = { 81, 60.3, 139, 120 }, + [2] = { 25.4, 56.3, 141, 120 }, + [3] = { 38.6, 28.8, 215, 120 }, + [4] = { 66, 46, 1497, 120 }, + [5] = { 54.8, 61.3, 1519, 120 }, + [6] = { 34.5, 67.7, 1537, 120 }, + [7] = { 30.1, 61, 1537, 120 }, + [8] = { 52.6, 73.3, 1637, 120 }, + [9] = { 43.4, 58.8, 1638, 120 }, + [10] = { 39.4, 45, 1657, 120 }, + }, + }, + [181255] = { + ["coords"] = { + [1] = { 81, 60.5, 139, 120 }, + [2] = { 25.3, 56.3, 141, 120 }, + [3] = { 38.6, 28.9, 215, 120 }, + [4] = { 66.4, 46.2, 1497, 120 }, + [5] = { 54.8, 60.9, 1519, 120 }, + [6] = { 34.7, 68.5, 1537, 120 }, + [7] = { 30.5, 61.6, 1537, 120 }, + [8] = { 52.3, 73.3, 1637, 120 }, + [9] = { 43.5, 59.4, 1638, 120 }, + [10] = { 39, 45, 1657, 120 }, + }, + }, + [181256] = { + ["coords"] = { + [1] = { 80.9, 60.5, 139, 120 }, + [2] = { 81, 60.1, 139, 120 }, + [3] = { 80.8, 60, 139, 120 }, + [4] = { 25.5, 56.6, 141, 120 }, + [5] = { 25.3, 56.4, 141, 120 }, + [6] = { 25.5, 56.3, 141, 120 }, + [7] = { 38.6, 28.9, 215, 120 }, + [8] = { 38.3, 28.8, 215, 120 }, + [9] = { 38.6, 28.7, 215, 120 }, + [10] = { 66.3, 46.5, 1497, 120 }, + [11] = { 65.5, 46.2, 1497, 120 }, + [12] = { 65.4, 45.8, 1497, 120 }, + [13] = { 54.8, 62.2, 1519, 120 }, + [14] = { 54.7, 61.9, 1519, 120 }, + [15] = { 55.1, 61.4, 1519, 120 }, + [16] = { 34.5, 68.6, 1537, 120 }, + [17] = { 33.9, 67.5, 1537, 120 }, + [18] = { 30.3, 61.9, 1537, 120 }, + [19] = { 29.5, 61.1, 1537, 120 }, + [20] = { 29.1, 59.8, 1537, 120 }, + [21] = { 52.3, 73.6, 1637, 120 }, + [22] = { 52, 73.6, 1637, 120 }, + [23] = { 52.9, 73.4, 1637, 120 }, + [24] = { 43.2, 59.4, 1638, 120 }, + [25] = { 42, 58.7, 1638, 120 }, + [26] = { 43.3, 58.2, 1638, 120 }, + [27] = { 39.9, 46.6, 1657, 120 }, + [28] = { 39.1, 45.3, 1657, 120 }, + [29] = { 39.8, 45, 1657, 120 }, + }, + }, + [181257] = { + ["coords"] = { + [1] = { 80, 59.2, 139, 900 }, + [2] = { 80, 58.6, 139, 900 }, + }, + }, + [181287] = { + ["coords"] = {}, + }, + [181288] = { + ["coords"] = { + [1] = { 54.1, 31.4, 4, 120 }, + [2] = { 51.2, 17.1, 11, 120 }, + [3] = { 41.5, 43.2, 16, 120 }, + [4] = { 59.8, 39.3, 17, 120 }, + [5] = { 52, 97.6, 36, 120 }, + [6] = { 34, 80.4, 40, 120 }, + [7] = { 62.1, 53.4, 47, 120 }, + [8] = { 32.9, 73.1, 51, 120 }, + [9] = { 54.2, 69.8, 130, 120 }, + [10] = { 57.5, 72.7, 139, 120 }, + [11] = { 56.7, 92.3, 141, 120 }, + [12] = { 41.5, 90.7, 148, 120 }, + [13] = { 34.1, 22.3, 215, 120 }, + [14] = { 54.4, 33.8, 267, 120 }, + [15] = { 64.8, 71.7, 331, 120 }, + [16] = { 87.6, 49.6, 405, 120 }, + [17] = { 59.5, 72.5, 406, 120 }, + [18] = { 70.3, 75.9, 490, 120 }, + [19] = { 19.3, 17.4, 490, 120 }, + [20] = { 30.7, 43.1, 618, 120 }, + [21] = { 78, 18.8, 1377, 120 }, + [22] = { 66, 36.8, 1497, 120 }, + [23] = { 38.8, 61.8, 1519, 120 }, + [24] = { 64.6, 24.8, 1537, 120 }, + [25] = { 42.1, 34.2, 1637, 120 }, + [26] = { 21, 26.7, 1638, 120 }, + }, + }, + [181290] = { + ["coords"] = {}, + }, + [181300] = { + ["coords"] = { + [1] = { 32.1, 50.4, 12, 180 }, + [2] = { 32.8, 49.5, 12, 180 }, + [3] = { 66, 44.1, 1497, 180 }, + [4] = { 71.3, 92.3, 1519, 180 }, + [5] = { 73.2, 90, 1519, 180 }, + [6] = { 69.8, 89.3, 1519, 180 }, + [7] = { 69, 87.9, 1519, 180 }, + [8] = { 71.7, 87.2, 1519, 180 }, + [9] = { 70.8, 85.7, 1519, 180 }, + [10] = { 66.6, 82.5, 1519, 180 }, + [11] = { 68, 80.9, 1519, 180 }, + [12] = { 64.8, 79.1, 1519, 180 }, + [13] = { 66.2, 77.5, 1519, 180 }, + [14] = { 59.7, 68.6, 1519, 180 }, + [15] = { 60.6, 67.5, 1519, 180 }, + }, + }, + [181301] = { + ["coords"] = { + [1] = { 54.2, 31.9, 4, 120 }, + [2] = { 51.2, 17.5, 11, 120 }, + [3] = { 41.7, 43.2, 16, 120 }, + [4] = { 59.7, 39.3, 17, 120 }, + [5] = { 52.2, 97, 36, 120 }, + [6] = { 34.4, 80.6, 40, 120 }, + [7] = { 62, 52.8, 47, 120 }, + [8] = { 32.4, 72.8, 51, 120 }, + [9] = { 54.4, 69.5, 130, 120 }, + [10] = { 57.7, 73.1, 139, 120 }, + [11] = { 56.7, 91.9, 141, 120 }, + [12] = { 41.4, 90.8, 148, 120 }, + [13] = { 33.9, 22, 215, 120 }, + [14] = { 54.5, 33.3, 267, 120 }, + [15] = { 64.7, 71.1, 331, 120 }, + [16] = { 87.4, 49.3, 405, 120 }, + [17] = { 59.5, 72.8, 406, 120 }, + [18] = { 70.1, 75.5, 490, 120 }, + [19] = { 19.4, 17, 490, 120 }, + [20] = { 30.6, 43.2, 618, 120 }, + [21] = { 78.1, 18.4, 1377, 120 }, + [22] = { 37.8, 61.4, 1519, 120 }, + [23] = { 43.3, 32.4, 1637, 120 }, + [24] = { 20.3, 25.2, 1638, 120 }, + }, + }, + [181302] = { + ["coords"] = { + [1] = { 54.2, 32, 4, 120 }, + [2] = { 54.4, 31.8, 4, 120 }, + [3] = { 54.3, 31.8, 4, 120 }, + [4] = { 41.7, 43.2, 16, 120 }, + [5] = { 41.6, 43.1, 16, 120 }, + [6] = { 41.7, 43.1, 16, 120 }, + [7] = { 59.7, 39.4, 17, 120 }, + [8] = { 52.3, 97.3, 36, 120 }, + [9] = { 52.3, 96.9, 36, 120 }, + [10] = { 34.2, 80.7, 40, 120 }, + [11] = { 62, 52.9, 47, 120 }, + [12] = { 61.9, 52.9, 47, 120 }, + [13] = { 62.1, 52.7, 47, 120 }, + [14] = { 32.4, 73.1, 51, 120 }, + [15] = { 32.3, 73.1, 51, 120 }, + [16] = { 32.4, 72.6, 51, 120 }, + [17] = { 54.5, 69.6, 130, 120 }, + [18] = { 54.3, 69.5, 130, 120 }, + [19] = { 57.7, 73.2, 139, 120 }, + [20] = { 57.6, 73.2, 139, 120 }, + [21] = { 56.7, 92, 141, 120 }, + [22] = { 41.4, 90.8, 148, 120 }, + [23] = { 34, 22, 215, 120 }, + [24] = { 54.6, 33.6, 267, 120 }, + [25] = { 54.6, 33.2, 267, 120 }, + [26] = { 64.6, 71.1, 331, 120 }, + [27] = { 87.5, 49.3, 405, 120 }, + [28] = { 70.3, 75.5, 490, 120 }, + [29] = { 70.2, 75.5, 490, 120 }, + [30] = { 70, 75.5, 490, 120 }, + [31] = { 70, 75.4, 490, 120 }, + [32] = { 19.3, 17.1, 490, 120 }, + [33] = { 19.3, 17, 490, 120 }, + [34] = { 30.6, 43.4, 618, 120 }, + [35] = { 30.5, 43.3, 618, 120 }, + [36] = { 78.1, 18.5, 1377, 120 }, + [37] = { 78.1, 18.4, 1377, 120 }, + [38] = { 65.8, 37.9, 1497, 120 }, + [39] = { 65.5, 37.7, 1497, 120 }, + [40] = { 65.6, 37.6, 1497, 120 }, + [41] = { 38.4, 62.3, 1519, 120 }, + [42] = { 38.3, 62.3, 1519, 120 }, + [43] = { 37.7, 61.6, 1519, 120 }, + [44] = { 64.1, 23.3, 1537, 120 }, + [45] = { 64.2, 23.1, 1537, 120 }, + [46] = { 64.2, 23, 1537, 120 }, + [47] = { 43.1, 32.6, 1637, 120 }, + [48] = { 20.7, 25.3, 1638, 120 }, + [49] = { 20.6, 25.2, 1638, 120 }, + [50] = { 20.6, 25.1, 1638, 120 }, + }, + }, + [181305] = { + ["coords"] = { + [1] = { 54.1, 31.9, 4, 120 }, + [2] = { 51.3, 17.5, 11, 120 }, + [3] = { 41.6, 43.2, 16, 120 }, + [4] = { 59.7, 39.3, 17, 120 }, + [5] = { 52.1, 97, 36, 120 }, + [6] = { 34.5, 80.5, 40, 120 }, + [7] = { 61.9, 53, 47, 120 }, + [8] = { 32.6, 72.8, 51, 120 }, + [9] = { 54.5, 69.4, 130, 120 }, + [10] = { 57.7, 73, 139, 120 }, + [11] = { 56.6, 91.8, 141, 120 }, + [12] = { 41.4, 90.9, 148, 120 }, + [13] = { 33.9, 22.1, 215, 120 }, + [14] = { 54.4, 33.3, 267, 120 }, + [15] = { 64.7, 71.4, 331, 120 }, + [16] = { 87.3, 49.4, 405, 120 }, + [17] = { 59.5, 72.9, 406, 120 }, + [18] = { 70.1, 75.7, 490, 120 }, + [19] = { 19.4, 17.1, 490, 120 }, + [20] = { 30.6, 43.3, 618, 120 }, + [21] = { 78.2, 18.5, 1377, 120 }, + [22] = { 66.6, 37.3, 1497, 120 }, + [23] = { 37.8, 61, 1519, 120 }, + [24] = { 65.2, 26.4, 1537, 120 }, + [25] = { 43.5, 32.5, 1637, 120 }, + [26] = { 20.1, 25.7, 1638, 120 }, + }, + }, + [181306] = { + ["coords"] = { + [1] = { 54.2, 31.8, 4, 120 }, + [2] = { 51.2, 17.4, 11, 120 }, + [3] = { 34.4, 80.8, 40, 120 }, + [4] = { 32.4, 72.8, 51, 120 }, + [5] = { 54.4, 69.5, 130, 120 }, + [6] = { 57.8, 73.1, 139, 120 }, + [7] = { 33.9, 22, 215, 120 }, + [8] = { 64.7, 71.1, 331, 120 }, + [9] = { 87.4, 49.3, 405, 120 }, + [10] = { 19.4, 16.8, 490, 120 }, + [11] = { 30.6, 43.1, 618, 120 }, + [12] = { 78.2, 18.2, 1377, 120 }, + [13] = { 20.2, 25.1, 1638, 120 }, + }, + }, + [181307] = { + ["coords"] = { + [1] = { 41.6, 43.2, 16, 120 }, + [2] = { 61.9, 53, 47, 120 }, + [3] = { 32.6, 72.8, 51, 120 }, + [4] = { 70.1, 75.7, 490, 120 }, + [5] = { 66.7, 37.4, 1497, 120 }, + [6] = { 66.6, 37.2, 1497, 120 }, + [7] = { 65.1, 26.6, 1537, 120 }, + [8] = { 65.2, 26.3, 1537, 120 }, + [9] = { 43.6, 32.5, 1637, 120 }, + }, + }, + [181332] = { + ["coords"] = { + [1] = { 38.8, 61.8, 1519, 120 }, + }, + }, + [181333] = { + ["coords"] = { + [1] = { 64.6, 24.8, 1537, 120 }, + }, + }, + [181334] = { + ["coords"] = { + [1] = { 56.7, 92.3, 141, 120 }, + }, + }, + [181335] = { + ["coords"] = { + [1] = { 66, 36.8, 1497, 120 }, + }, + }, + [181336] = { + ["coords"] = { + [1] = { 42.1, 34.2, 1637, 120 }, + }, + }, + [181337] = { + ["coords"] = { + [1] = { 34.1, 22.3, 215, 120 }, + [2] = { 87.6, 49.6, 405, 120 }, + [3] = { 21, 26.7, 1638, 120 }, + }, + }, + [181338] = { + ["coords"] = { + [1] = { 57.5, 72.7, 139, 120 }, + }, + }, + [181339] = { + ["coords"] = { + [1] = { 19.3, 17.4, 490, 120 }, + [2] = { 78, 18.8, 1377, 120 }, + }, + }, + [181340] = { + ["coords"] = { + [1] = { 30.7, 43.1, 618, 120 }, + }, + }, + [181341] = { + ["coords"] = { + [1] = { 32.9, 73.1, 51, 120 }, + }, + }, + [181342] = { + ["coords"] = { + [1] = { 41.5, 43.2, 16, 120 }, + }, + }, + [181343] = { + ["coords"] = { + [1] = { 70.3, 75.9, 490, 120 }, + }, + }, + [181344] = { + ["coords"] = { + [1] = { 54.1, 31.4, 4, 120 }, + }, + }, + [181345] = { + ["coords"] = { + [1] = { 62.1, 53.4, 47, 120 }, + }, + }, + [181346] = { + ["coords"] = {}, + }, + [181347] = { + ["coords"] = {}, + }, + [181348] = { + ["coords"] = {}, + }, + [181349] = { + ["coords"] = {}, + }, + [181354] = { + ["coords"] = { + [1] = { 41.6, 10.1, 14, 120 }, + [2] = { 42.2, 9.9, 14, 120 }, + [3] = { 41.9, 9.1, 14, 120 }, + [4] = { 42.4, 8.6, 14, 120 }, + [5] = { 42.3, 8.2, 14, 120 }, + [6] = { 41.8, 8, 14, 120 }, + [7] = { 7.6, 63.3, 28, 120 }, + [8] = { 7.8, 61.8, 28, 120 }, + [9] = { 60.9, 69.4, 85, 120 }, + [10] = { 23.5, 63.2, 141, 120 }, + [11] = { 23.7, 62.4, 141, 120 }, + [12] = { 22.9, 62.3, 141, 120 }, + [13] = { 24.1, 62.1, 141, 120 }, + [14] = { 26.3, 61.3, 141, 120 }, + [15] = { 24.2, 61.2, 141, 120 }, + [16] = { 28, 60.4, 141, 120 }, + [17] = { 22.9, 60.3, 141, 120 }, + [18] = { 24.2, 60.3, 141, 120 }, + [19] = { 23.5, 60.3, 141, 120 }, + [20] = { 25.5, 60.1, 141, 120 }, + [21] = { 26.7, 60.1, 141, 120 }, + [22] = { 26.3, 60.1, 141, 120 }, + [23] = { 24.7, 59.4, 141, 120 }, + [24] = { 23.6, 59.4, 141, 120 }, + [25] = { 26.1, 59.4, 141, 120 }, + [26] = { 25.5, 59.4, 141, 120 }, + [27] = { 26.8, 59.3, 141, 120 }, + [28] = { 28, 59.3, 141, 120 }, + [29] = { 22.8, 59.2, 141, 120 }, + [30] = { 27.5, 59.2, 141, 120 }, + [31] = { 26.2, 58.4, 141, 120 }, + [32] = { 27.4, 58.4, 141, 120 }, + [33] = { 25.5, 58.3, 141, 120 }, + [34] = { 22.8, 58.3, 141, 120 }, + [35] = { 24, 58.2, 141, 120 }, + [36] = { 23.6, 58.2, 141, 120 }, + [37] = { 23.6, 57.5, 141, 120 }, + [38] = { 22.8, 57.5, 141, 120 }, + [39] = { 25.5, 57.4, 141, 120 }, + [40] = { 27.6, 57.3, 141, 120 }, + [41] = { 24.9, 57.3, 141, 120 }, + [42] = { 27.9, 57.2, 141, 120 }, + [43] = { 24.1, 56.6, 141, 120 }, + [44] = { 26.2, 56.4, 141, 120 }, + [45] = { 27.5, 56.4, 141, 120 }, + [46] = { 28, 56.3, 141, 120 }, + [47] = { 26.8, 56.2, 141, 120 }, + [48] = { 27, 55.4, 141, 120 }, + [49] = { 28.2, 55.4, 141, 120 }, + [50] = { 28.1, 54.5, 141, 120 }, + [51] = { 26.3, 54.4, 141, 120 }, + [52] = { 24.2, 54.3, 141, 120 }, + [53] = { 26.8, 54.3, 141, 120 }, + [54] = { 24.7, 54.2, 141, 120 }, + [55] = { 27.4, 54.2, 141, 120 }, + [56] = { 27.8, 53.5, 141, 120 }, + [57] = { 24.8, 53.5, 141, 120 }, + [58] = { 25.4, 53.5, 141, 120 }, + [59] = { 24.2, 53.5, 141, 120 }, + [60] = { 23.6, 53.4, 141, 120 }, + [61] = { 22.9, 53.4, 141, 120 }, + [62] = { 26.6, 53.3, 141, 120 }, + [63] = { 28.7, 53.3, 141, 120 }, + [64] = { 24.9, 52.8, 141, 120 }, + [65] = { 24.2, 52.8, 141, 120 }, + [66] = { 23.6, 52.8, 141, 120 }, + [67] = { 28.2, 52.7, 141, 120 }, + [68] = { 25.3, 52.6, 141, 120 }, + [69] = { 26.6, 52.5, 141, 120 }, + [70] = { 27.3, 52.3, 141, 120 }, + [71] = { 37.9, 29, 215, 120 }, + [72] = { 38, 28.9, 215, 120 }, + [73] = { 37.9, 28.7, 215, 120 }, + [74] = { 65.8, 68.7, 1497, 120 }, + [75] = { 70, 68, 1497, 120 }, + [76] = { 61.3, 67.8, 1497, 120 }, + [77] = { 74.3, 65.5, 1497, 120 }, + [78] = { 57.7, 65.4, 1497, 120 }, + [79] = { 77.7, 61.9, 1497, 120 }, + [80] = { 54.3, 61.4, 1497, 120 }, + [81] = { 80.1, 56.6, 1497, 120 }, + [82] = { 51.5, 55.7, 1497, 120 }, + [83] = { 81.7, 50.7, 1497, 120 }, + [84] = { 50, 49.9, 1497, 120 }, + [85] = { 69.3, 46.3, 1497, 120 }, + [86] = { 62.8, 46.1, 1497, 120 }, + [87] = { 82.4, 44.1, 1497, 120 }, + [88] = { 49.6, 43.9, 1497, 120 }, + [89] = { 69.3, 41.9, 1497, 120 }, + [90] = { 62.9, 41.6, 1497, 120 }, + [91] = { 81.5, 38.1, 1497, 120 }, + [92] = { 50.4, 37.7, 1497, 120 }, + [93] = { 80.5, 32.2, 1497, 120 }, + [94] = { 52.4, 30.8, 1497, 120 }, + [95] = { 78, 27, 1497, 120 }, + [96] = { 56, 24.5, 1497, 120 }, + [97] = { 74.3, 22.8, 1497, 120 }, + [98] = { 70.3, 20.3, 1497, 120 }, + [99] = { 61.8, 20.3, 1497, 120 }, + [100] = { 66, 19.6, 1497, 120 }, + [101] = { 52.5, 29.1, 1519, 120 }, + [102] = { 53, 28.5, 1519, 120 }, + [103] = { 53.6, 27.8, 1519, 120 }, + [104] = { 54.1, 27.3, 1519, 120 }, + [105] = { 51.7, 27.2, 1519, 120 }, + [106] = { 52.1, 26.9, 1519, 120 }, + [107] = { 52.7, 26.2, 1519, 120 }, + [108] = { 51.8, 25.7, 1519, 120 }, + [109] = { 53.2, 25.6, 1519, 120 }, + [110] = { 51.4, 25.1, 1519, 120 }, + [111] = { 50.6, 23.9, 1519, 120 }, + [112] = { 49.9, 22.6, 1519, 120 }, + [113] = { 34.5, 87.9, 1637, 120 }, + [114] = { 36.6, 87.1, 1637, 120 }, + [115] = { 35.4, 83.9, 1637, 120 }, + [116] = { 37.3, 82.1, 1637, 120 }, + [117] = { 36.9, 80.6, 1637, 120 }, + [118] = { 35.2, 79.8, 1637, 120 }, + [119] = { 68.8, 33.4, 1637, 120 }, + [120] = { 70.2, 32.8, 1637, 120 }, + [121] = { 67.3, 30.6, 1637, 120 }, + [122] = { 70.8, 30, 1637, 120 }, + [123] = { 39.8, 59.8, 1638, 120 }, + [124] = { 40.4, 59.1, 1638, 120 }, + [125] = { 39.8, 58.5, 1638, 120 }, + [126] = { 30.1, 78.2, 1657, 120 }, + [127] = { 31.2, 74.4, 1657, 120 }, + [128] = { 27.2, 74, 1657, 120 }, + [129] = { 33.2, 73.1, 1657, 120 }, + [130] = { 44, 69.1, 1657, 120 }, + [131] = { 33.4, 68.6, 1657, 120 }, + [132] = { 52.1, 64.6, 1657, 120 }, + [133] = { 27.3, 64.3, 1657, 120 }, + [134] = { 33.6, 64.2, 1657, 120 }, + [135] = { 30.4, 64.1, 1657, 120 }, + [136] = { 39.9, 63.3, 1657, 120 }, + [137] = { 45.9, 63.2, 1657, 120 }, + [138] = { 43.9, 63.2, 1657, 120 }, + [139] = { 36.2, 60.1, 1657, 120 }, + [140] = { 30.8, 60, 1657, 120 }, + [141] = { 42.8, 59.8, 1657, 120 }, + [142] = { 39.9, 59.7, 1657, 120 }, + [143] = { 46.1, 59.6, 1657, 120 }, + [144] = { 51.7, 59.4, 1657, 120 }, + [145] = { 27, 59.1, 1657, 120 }, + [146] = { 49.3, 58.8, 1657, 120 }, + [147] = { 43.4, 55.3, 1657, 120 }, + [148] = { 49.1, 55.1, 1657, 120 }, + [149] = { 39.8, 54.6, 1657, 120 }, + [150] = { 27.1, 54.4, 1657, 120 }, + [151] = { 32.5, 54.3, 1657, 120 }, + [152] = { 30.7, 54.2, 1657, 120 }, + [153] = { 30.9, 50.8, 1657, 120 }, + [154] = { 27, 50.7, 1657, 120 }, + [155] = { 39.8, 50.1, 1657, 120 }, + [156] = { 50, 49.9, 1657, 120 }, + [157] = { 36.9, 49.6, 1657, 120 }, + [158] = { 51.6, 49.5, 1657, 120 }, + [159] = { 33, 46.4, 1657, 120 }, + [160] = { 43.2, 45.7, 1657, 120 }, + [161] = { 49.4, 45.6, 1657, 120 }, + [162] = { 52.1, 44.9, 1657, 120 }, + [163] = { 46.1, 44.7, 1657, 120 }, + [164] = { 46.9, 40.7, 1657, 120 }, + [165] = { 53, 40.6, 1657, 120 }, + [166] = { 52.4, 36.2, 1657, 120 }, + [167] = { 43.5, 35.8, 1657, 120 }, + [168] = { 33.7, 35.5, 1657, 120 }, + [169] = { 46.2, 35.4, 1657, 120 }, + [170] = { 36.1, 35.2, 1657, 120 }, + [171] = { 49, 34.8, 1657, 120 }, + [172] = { 51, 31.6, 1657, 120 }, + [173] = { 36.7, 31.4, 1657, 120 }, + [174] = { 39.3, 31.4, 1657, 120 }, + [175] = { 33.6, 31.4, 1657, 120 }, + [176] = { 30.9, 31.3, 1657, 120 }, + [177] = { 27.3, 31, 1657, 120 }, + [178] = { 45.1, 30.8, 1657, 120 }, + [179] = { 55.5, 30.5, 1657, 120 }, + [180] = { 37, 28.1, 1657, 120 }, + [181] = { 33.6, 28.1, 1657, 120 }, + [182] = { 30.6, 28.1, 1657, 120 }, + [183] = { 52.7, 27.5, 1657, 120 }, + [184] = { 39.1, 27, 1657, 120 }, + [185] = { 45.3, 26.6, 1657, 120 }, + [186] = { 48.6, 25.8, 1657, 120 }, + }, + }, + [181355] = { + ["coords"] = { + [1] = { 54, 34.8, 1, 120 }, + [2] = { 54.2, 34.5, 1, 120 }, + [3] = { 51.1, 17.5, 11, 120 }, + [4] = { 51, 17, 11, 120 }, + [5] = { 41.6, 43.5, 16, 120 }, + [6] = { 41.6, 43, 16, 120 }, + [7] = { 52.5, 97.1, 36, 120 }, + [8] = { 52, 96.7, 36, 120 }, + [9] = { 34.5, 80.9, 40, 120 }, + [10] = { 34.5, 80.3, 40, 120 }, + [11] = { 62.1, 53, 47, 120 }, + [12] = { 54.3, 69.3, 130, 120 }, + [13] = { 58.2, 94.1, 141, 120 }, + [14] = { 58.1, 94.1, 141, 120 }, + [15] = { 58.6, 94.1, 141, 120 }, + [16] = { 58, 93.7, 141, 120 }, + [17] = { 57.6, 93.2, 141, 120 }, + [18] = { 57.9, 93.2, 141, 120 }, + [19] = { 57.2, 92.9, 141, 120 }, + [20] = { 57.1, 92.4, 141, 120 }, + [21] = { 56.7, 92.1, 141, 120 }, + [22] = { 56.5, 91.9, 141, 120 }, + [23] = { 24.1, 55.8, 141, 120 }, + [24] = { 23.7, 55.7, 141, 120 }, + [25] = { 24, 55.7, 141, 120 }, + [26] = { 24.1, 55.4, 141, 120 }, + [27] = { 24, 55.4, 141, 120 }, + [28] = { 23.7, 55.3, 141, 120 }, + [29] = { 41.5, 91, 148, 120 }, + [30] = { 41.6, 90.9, 148, 120 }, + [31] = { 40.8, 32.9, 215, 120 }, + [32] = { 41, 32.5, 215, 120 }, + [33] = { 37, 30.1, 215, 120 }, + [34] = { 38.9, 29.8, 215, 120 }, + [35] = { 36.9, 29.7, 215, 120 }, + [36] = { 39.1, 29.6, 215, 120 }, + [37] = { 36.7, 29.3, 215, 120 }, + [38] = { 39.4, 29, 215, 120 }, + [39] = { 39.5, 28.9, 215, 120 }, + [40] = { 39.5, 28.6, 215, 120 }, + [41] = { 39.3, 28.6, 215, 120 }, + [42] = { 38.4, 28.3, 215, 120 }, + [43] = { 38.5, 28.1, 215, 120 }, + [44] = { 37.7, 27.4, 215, 120 }, + [45] = { 37.1, 27.3, 215, 120 }, + [46] = { 39.4, 27.1, 215, 120 }, + [47] = { 37.8, 27.1, 215, 120 }, + [48] = { 37.3, 27, 215, 120 }, + [49] = { 39.4, 26.8, 215, 120 }, + [50] = { 36.5, 26.1, 215, 120 }, + [51] = { 36.6, 25.9, 215, 120 }, + [52] = { 35.4, 23.5, 215, 120 }, + [53] = { 35.2, 23.4, 215, 120 }, + [54] = { 35.6, 23.4, 215, 120 }, + [55] = { 40.5, 23.3, 215, 120 }, + [56] = { 34.9, 23.3, 215, 120 }, + [57] = { 40.2, 23.2, 215, 120 }, + [58] = { 35.3, 23.1, 215, 120 }, + [59] = { 34.9, 23, 215, 120 }, + [60] = { 40, 23, 215, 120 }, + [61] = { 34.2, 22.9, 215, 120 }, + [62] = { 34.4, 22.6, 215, 120 }, + [63] = { 35.9, 22.2, 215, 120 }, + [64] = { 36.1, 21.8, 215, 120 }, + [65] = { 34.7, 21.2, 215, 120 }, + [66] = { 34.8, 20.9, 215, 120 }, + [67] = { 54.8, 33.4, 267, 120 }, + [68] = { 54.3, 33.1, 267, 120 }, + [69] = { 64.8, 71, 331, 120 }, + [70] = { 89.1, 51.1, 405, 120 }, + [71] = { 88.9, 50.9, 405, 120 }, + [72] = { 89.3, 50.9, 405, 120 }, + [73] = { 88.5, 50.8, 405, 120 }, + [74] = { 88.9, 50.6, 405, 120 }, + [75] = { 88.5, 50.4, 405, 120 }, + [76] = { 87.7, 50.3, 405, 120 }, + [77] = { 88, 50, 405, 120 }, + [78] = { 88.3, 48.4, 405, 120 }, + [79] = { 88.4, 48.1, 405, 120 }, + [80] = { 70.1, 75.9, 490, 120 }, + [81] = { 70.4, 75.5, 490, 120 }, + [82] = { 19.6, 17, 490, 120 }, + [83] = { 30.7, 43.4, 618, 120 }, + [84] = { 30.5, 43.1, 618, 120 }, + [85] = { 78.3, 18.4, 1377, 120 }, + [86] = { 66.6, 45.1, 1497, 120 }, + [87] = { 65.4, 45, 1497, 120 }, + [88] = { 66.7, 38.5, 1497, 120 }, + [89] = { 65.3, 38.5, 1497, 120 }, + [90] = { 54.4, 67, 1519, 120 }, + [91] = { 55.1, 66.4, 1519, 120 }, + [92] = { 47.7, 65, 1519, 120 }, + [93] = { 53.7, 64.9, 1519, 120 }, + [94] = { 53.5, 64.5, 1519, 120 }, + [95] = { 47.3, 64, 1519, 120 }, + [96] = { 53, 63.8, 1519, 120 }, + [97] = { 44.4, 63.7, 1519, 120 }, + [98] = { 55.3, 63.6, 1519, 120 }, + [99] = { 49.4, 63.5, 1519, 120 }, + [100] = { 53.5, 63.2, 1519, 120 }, + [101] = { 56.8, 63, 1519, 120 }, + [102] = { 45.3, 62.6, 1519, 120 }, + [103] = { 62.2, 62.5, 1519, 120 }, + [104] = { 49.1, 62.5, 1519, 120 }, + [105] = { 57.3, 62, 1519, 120 }, + [106] = { 54.6, 62, 1519, 120 }, + [107] = { 62.4, 61.9, 1519, 120 }, + [108] = { 42.2, 61.6, 1519, 120 }, + [109] = { 52.2, 61.4, 1519, 120 }, + [110] = { 40.1, 61, 1519, 120 }, + [111] = { 51.9, 60.6, 1519, 120 }, + [112] = { 42.1, 60.1, 1519, 120 }, + [113] = { 39.7, 59.6, 1519, 120 }, + [114] = { 44.2, 38.2, 1519, 120 }, + [115] = { 45.1, 37.2, 1519, 120 }, + [116] = { 58.4, 17, 1519, 120 }, + [117] = { 18, 85.1, 1537, 120 }, + [118] = { 19.6, 83.2, 1537, 120 }, + [119] = { 16.2, 81.7, 1537, 120 }, + [120] = { 21.1, 81.2, 1537, 120 }, + [121] = { 17.7, 79.8, 1537, 120 }, + [122] = { 19.3, 77.9, 1537, 120 }, + [123] = { 37.9, 71.6, 1537, 120 }, + [124] = { 43.9, 60.1, 1537, 120 }, + [125] = { 48.7, 60.1, 1537, 120 }, + [126] = { 52.8, 59, 1537, 120 }, + [127] = { 48.7, 55.9, 1537, 120 }, + [128] = { 51.8, 55.2, 1537, 120 }, + [129] = { 56.1, 55.1, 1537, 120 }, + [130] = { 54.6, 52.3, 1537, 120 }, + [131] = { 58.4, 46.2, 1537, 120 }, + [132] = { 56.8, 45.8, 1537, 120 }, + [133] = { 56.3, 40.4, 1537, 120 }, + [134] = { 58.4, 39.4, 1537, 120 }, + [135] = { 57.8, 35.5, 1537, 120 }, + [136] = { 55.9, 32.2, 1537, 120 }, + [137] = { 62, 32, 1537, 120 }, + [138] = { 59.2, 27.2, 1537, 120 }, + [139] = { 65.1, 26, 1537, 120 }, + [140] = { 64.1, 23.8, 1537, 120 }, + [141] = { 49.3, 70.4, 1637, 120 }, + [142] = { 50.3, 69.7, 1637, 120 }, + [143] = { 48.4, 68.6, 1637, 120 }, + [144] = { 54.9, 67.9, 1637, 120 }, + [145] = { 49.3, 67.5, 1637, 120 }, + [146] = { 54.5, 67.4, 1637, 120 }, + [147] = { 46.5, 66.7, 1637, 120 }, + [148] = { 45.2, 65.8, 1637, 120 }, + [149] = { 48.6, 64, 1637, 120 }, + [150] = { 45, 63.9, 1637, 120 }, + [151] = { 50.3, 63.7, 1637, 120 }, + [152] = { 40.2, 63.5, 1637, 120 }, + [153] = { 40.8, 63, 1637, 120 }, + [154] = { 51.1, 62.9, 1637, 120 }, + [155] = { 45.1, 62.6, 1637, 120 }, + [156] = { 42.6, 62.5, 1637, 120 }, + [157] = { 49.3, 62.2, 1637, 120 }, + [158] = { 43.4, 62.1, 1637, 120 }, + [159] = { 47.9, 62, 1637, 120 }, + [160] = { 45.7, 61.9, 1637, 120 }, + [161] = { 50.1, 61.5, 1637, 120 }, + [162] = { 47.2, 61.5, 1637, 120 }, + [163] = { 43, 61.3, 1637, 120 }, + [164] = { 45.3, 59.3, 1637, 120 }, + [165] = { 48.1, 58.7, 1637, 120 }, + [166] = { 38.5, 58.6, 1637, 120 }, + [167] = { 47.2, 58.5, 1637, 120 }, + [168] = { 48.7, 58.2, 1637, 120 }, + [169] = { 39.1, 58.2, 1637, 120 }, + [170] = { 45.1, 58.1, 1637, 120 }, + [171] = { 47.1, 57.5, 1637, 120 }, + [172] = { 38.6, 54.8, 1637, 120 }, + [173] = { 37.9, 54.4, 1637, 120 }, + [174] = { 39.9, 49.3, 1637, 120 }, + [175] = { 39.2, 48.8, 1637, 120 }, + [176] = { 40.8, 45.3, 1637, 120 }, + [177] = { 40, 44.4, 1637, 120 }, + [178] = { 59.5, 44.4, 1637, 120 }, + [179] = { 43.6, 40.4, 1637, 120 }, + [180] = { 42.6, 40.4, 1637, 120 }, + [181] = { 42.8, 35.5, 1637, 120 }, + [182] = { 43.6, 35.4, 1637, 120 }, + [183] = { 42.4, 33.6, 1637, 120 }, + [184] = { 42.8, 33, 1637, 120 }, + [185] = { 54.2, 79, 1638, 120 }, + [186] = { 55.1, 77, 1638, 120 }, + [187] = { 35.6, 65.4, 1638, 120 }, + [188] = { 44.8, 63.7, 1638, 120 }, + [189] = { 35.1, 63.3, 1638, 120 }, + [190] = { 45.9, 62.9, 1638, 120 }, + [191] = { 34, 61.4, 1638, 120 }, + [192] = { 47, 59.8, 1638, 120 }, + [193] = { 47.7, 59.4, 1638, 120 }, + [194] = { 47.6, 57.7, 1638, 120 }, + [195] = { 46.9, 57.6, 1638, 120 }, + [196] = { 42.2, 56.4, 1638, 120 }, + [197] = { 42.9, 55.6, 1638, 120 }, + [198] = { 38.9, 52.2, 1638, 120 }, + [199] = { 35.9, 51.5, 1638, 120 }, + [200] = { 47.1, 50.6, 1638, 120 }, + [201] = { 39.4, 50.6, 1638, 120 }, + [202] = { 37.1, 50.1, 1638, 120 }, + [203] = { 47, 49, 1638, 120 }, + [204] = { 32.7, 45.6, 1638, 120 }, + [205] = { 33.4, 44.6, 1638, 120 }, + [206] = { 27.6, 32.9, 1638, 120 }, + [207] = { 26.7, 32.3, 1638, 120 }, + [208] = { 28.6, 32.2, 1638, 120 }, + [209] = { 52.7, 31.9, 1638, 120 }, + [210] = { 25.1, 31.7, 1638, 120 }, + [211] = { 51.3, 31.3, 1638, 120 }, + [212] = { 26.9, 30.8, 1638, 120 }, + [213] = { 25.3, 30.1, 1638, 120 }, + [214] = { 50.2, 30.1, 1638, 120 }, + [215] = { 21.8, 29.7, 1638, 120 }, + [216] = { 22.8, 28.4, 1638, 120 }, + [217] = { 30.1, 26.1, 1638, 120 }, + [218] = { 31.1, 24.6, 1638, 120 }, + [219] = { 24.1, 21.6, 1638, 120 }, + [220] = { 24.6, 20.1, 1638, 120 }, + [221] = { 33.3, 42.4, 1657, 120 }, + [222] = { 31.3, 42.4, 1657, 120 }, + [223] = { 32.4, 42.3, 1657, 120 }, + [224] = { 33.3, 40.5, 1657, 120 }, + [225] = { 32.5, 40.5, 1657, 120 }, + [226] = { 31.3, 40.4, 1657, 120 }, + }, + }, + [181356] = { + ["coords"] = {}, + }, + [181358] = { + ["coords"] = { + [1] = { 31.9, 49.9, 12, 120 }, + [2] = { 32.5, 49.1, 12, 120 }, + [3] = { 36.1, 29.9, 215, 120 }, + [4] = { 41.6, 28.1, 215, 120 }, + [5] = { 39.2, 27.4, 215, 120 }, + [6] = { 37.2, 27.2, 215, 120 }, + [7] = { 39.3, 26.6, 215, 120 }, + [8] = { 41.7, 26.5, 215, 120 }, + [9] = { 38.6, 24.8, 215, 120 }, + [10] = { 40.1, 24.4, 215, 120 }, + [11] = { 40.7, 22, 215, 120 }, + [12] = { 70.8, 91, 1519, 120 }, + [13] = { 72.5, 88.9, 1519, 120 }, + [14] = { 62.7, 74.7, 1519, 120 }, + [15] = { 64, 73.2, 1519, 120 }, + [16] = { 62.6, 64, 1519, 120 }, + [17] = { 47.4, 65.7, 1637, 120 }, + [18] = { 47.4, 65.3, 1637, 120 }, + [19] = { 31, 64.3, 1638, 120 }, + [20] = { 58.1, 55.6, 1638, 120 }, + [21] = { 46.2, 51.8, 1638, 120 }, + [22] = { 36.6, 51, 1638, 120 }, + [23] = { 46.8, 48.2, 1638, 120 }, + [24] = { 58.4, 47.5, 1638, 120 }, + [25] = { 43.3, 39.4, 1638, 120 }, + [26] = { 50.5, 37.1, 1638, 120 }, + }, + }, + [181366] = { + ["coords"] = {}, + }, + [181371] = { + ["coords"] = {}, + }, + [181373] = { + ["coords"] = { + [1] = { 64.7, 49.6, 618, 120 }, + }, + }, + [181374] = { + ["coords"] = { + [1] = { 47.8, 29.9, 4, 120 }, + }, + }, + [181375] = { + ["coords"] = {}, + }, + [181376] = { + ["coords"] = { + [1] = { 54.1, 31.4, 4, 120 }, + [2] = { 51.2, 17.1, 11, 120 }, + [3] = { 41.5, 43.2, 16, 120 }, + [4] = { 59.8, 39.3, 17, 120 }, + [5] = { 52, 97.6, 36, 120 }, + [6] = { 34, 80.4, 40, 120 }, + [7] = { 62.1, 53.4, 47, 120 }, + [8] = { 32.9, 73.1, 51, 120 }, + [9] = { 54.2, 69.8, 130, 120 }, + [10] = { 57.5, 72.7, 139, 120 }, + [11] = { 56.7, 92.3, 141, 120 }, + [12] = { 41.5, 90.7, 148, 120 }, + [13] = { 34.1, 22.3, 215, 120 }, + [14] = { 54.4, 33.8, 267, 120 }, + [15] = { 64.8, 71.7, 331, 120 }, + [16] = { 87.6, 49.6, 405, 120 }, + [17] = { 59.5, 72.5, 406, 120 }, + [18] = { 70.3, 75.9, 490, 120 }, + [19] = { 19.3, 17.4, 490, 120 }, + [20] = { 30.7, 43.1, 618, 120 }, + [21] = { 78, 18.8, 1377, 120 }, + [22] = { 66, 36.8, 1497, 120 }, + [23] = { 38.8, 61.8, 1519, 120 }, + [24] = { 64.6, 24.8, 1537, 120 }, + [25] = { 42.1, 34.2, 1637, 120 }, + [26] = { 21, 26.7, 1638, 120 }, + }, + }, + [181377] = { + ["coords"] = {}, + }, + [181388] = { + ["coords"] = { + [1] = { 54.1, 31.9, 4, 120 }, + [2] = { 59.7, 39.3, 17, 120 }, + [3] = { 52.1, 97, 36, 120 }, + [4] = { 34.5, 80.6, 40, 120 }, + [5] = { 32.5, 72.8, 51, 120 }, + [6] = { 54.5, 69.4, 130, 120 }, + [7] = { 57.7, 72.9, 139, 120 }, + [8] = { 56.6, 91.8, 141, 120 }, + [9] = { 31.3, 50.1, 141, 120 }, + [10] = { 31.2, 49.9, 141, 120 }, + [11] = { 31.5, 49.8, 141, 120 }, + [12] = { 31.5, 49.7, 141, 120 }, + [13] = { 41.4, 90.9, 148, 120 }, + [14] = { 38.9, 29.7, 215, 120 }, + [15] = { 33.9, 22.1, 215, 120 }, + [16] = { 54.4, 33.3, 267, 120 }, + [17] = { 64.7, 71.4, 331, 120 }, + [18] = { 87.4, 49.4, 405, 120 }, + [19] = { 59.5, 72.9, 406, 120 }, + [20] = { 70.1, 75.7, 490, 120 }, + [21] = { 19.4, 17.1, 490, 120 }, + [22] = { 78.2, 18.5, 1377, 120 }, + [23] = { 62.1, 45.6, 1497, 120 }, + [24] = { 69.5, 44.9, 1497, 120 }, + [25] = { 62.2, 42.5, 1497, 120 }, + [26] = { 65.3, 30.5, 1497, 120 }, + [27] = { 66.8, 30.5, 1497, 120 }, + [28] = { 65.3, 29.2, 1497, 120 }, + [29] = { 66.8, 29.2, 1497, 120 }, + [30] = { 66.2, 27.6, 1497, 120 }, + [31] = { 65.9, 27.6, 1497, 120 }, + [32] = { 66.8, 27.5, 1497, 120 }, + [33] = { 65.3, 27.5, 1497, 120 }, + [34] = { 66.9, 26.5, 1497, 120 }, + [35] = { 65.3, 26.4, 1497, 120 }, + [36] = { 66.8, 25.4, 1497, 120 }, + [37] = { 65.3, 25.4, 1497, 120 }, + [38] = { 55.9, 73, 1519, 120 }, + [39] = { 57.6, 71.6, 1519, 120 }, + [40] = { 55.4, 71.5, 1519, 120 }, + [41] = { 57.1, 70.1, 1519, 120 }, + [42] = { 52.8, 64.4, 1519, 120 }, + [43] = { 37.8, 61, 1519, 120 }, + [44] = { 33.6, 63.7, 1537, 120 }, + [45] = { 33.1, 62.8, 1537, 120 }, + [46] = { 36.8, 62.6, 1537, 120 }, + [47] = { 36.4, 61.8, 1537, 120 }, + [48] = { 35.8, 60.8, 1537, 120 }, + [49] = { 35.4, 60.1, 1537, 120 }, + [50] = { 34.9, 59.1, 1537, 120 }, + [51] = { 34.5, 58.4, 1537, 120 }, + [52] = { 19, 52.5, 1537, 120 }, + [53] = { 19.2, 50.8, 1537, 120 }, + [54] = { 54.5, 67.8, 1637, 120 }, + [55] = { 54.5, 67.7, 1637, 120 }, + [56] = { 44.8, 63.3, 1638, 120 }, + [57] = { 20.2, 25.8, 1638, 120 }, + [58] = { 67.8, 15.4, 1657, 120 }, + [59] = { 67.3, 14.3, 1657, 120 }, + [60] = { 69, 14, 1657, 120 }, + [61] = { 68.6, 13.2, 1657, 120 }, + }, + }, + [181389] = { + ["coords"] = { + [1] = { 32.2, 49.5, 12, 120 }, + [2] = { 8.5, 61.8, 28, 120 }, + [3] = { 55.5, 71.1, 85, 120 }, + [4] = { 55.4, 70.9, 85, 120 }, + [5] = { 61.9, 68.2, 85, 120 }, + [6] = { 29.6, 56.7, 141, 120 }, + [7] = { 29.6, 54.1, 141, 120 }, + [8] = { 65.9, 73.4, 1497, 120 }, + [9] = { 85.5, 44.3, 1497, 120 }, + [10] = { 36.3, 28.4, 1497, 120 }, + [11] = { 35.6, 27.3, 1497, 120 }, + [12] = { 66.1, 24.8, 1497, 120 }, + [13] = { 66.2, 14.8, 1497, 120 }, + [14] = { 71.6, 90, 1519, 120 }, + [15] = { 34.1, 82.3, 1537, 120 }, + [16] = { 28.4, 76.2, 1537, 120 }, + [17] = { 58, 74, 1537, 120 }, + [18] = { 62.3, 68.7, 1537, 120 }, + [19] = { 23.9, 68.1, 1537, 120 }, + [20] = { 21, 58.5, 1537, 120 }, + [21] = { 66, 28.8, 1537, 120 }, + [22] = { 31, 25, 1537, 120 }, + [23] = { 62.2, 21.9, 1537, 120 }, + [24] = { 35.3, 19.6, 1537, 120 }, + [25] = { 59.7, 47, 1657, 120 }, + [26] = { 59.5, 34.4, 1657, 120 }, + }, + }, + [181390] = { + ["coords"] = { + [1] = { 29, 62.9, 141, 120 }, + [2] = { 25.2, 62.9, 141, 120 }, + [3] = { 25.5, 62.9, 141, 120 }, + [4] = { 29.8, 61.7, 141, 120 }, + [5] = { 29.6, 59.9, 141, 120 }, + [6] = { 30.7, 59.2, 141, 120 }, + [7] = { 28.9, 58.2, 141, 120 }, + [8] = { 28.9, 51.8, 141, 120 }, + [9] = { 30.4, 51.3, 141, 120 }, + [10] = { 28.6, 49.6, 141, 120 }, + [11] = { 42, 33.6, 215, 120 }, + [12] = { 41.1, 28.5, 215, 120 }, + [13] = { 39.4, 27.2, 215, 120 }, + [14] = { 39.1, 27.1, 215, 120 }, + [15] = { 39.4, 26.9, 215, 120 }, + [16] = { 39.1, 26.8, 215, 120 }, + [17] = { 40.8, 26.3, 215, 120 }, + [18] = { 39.5, 25.5, 215, 120 }, + [19] = { 39.8, 23.7, 215, 120 }, + [20] = { 44.9, 22.9, 215, 120 }, + [21] = { 46.3, 67.5, 1519, 120 }, + [22] = { 49.4, 62.9, 1519, 120 }, + [23] = { 54.2, 60.6, 1519, 120 }, + [24] = { 42.6, 59.5, 1519, 120 }, + [25] = { 54, 59.4, 1519, 120 }, + [26] = { 38.1, 58.7, 1519, 120 }, + [27] = { 54.1, 58.6, 1519, 120 }, + [28] = { 30.8, 55.1, 1519, 120 }, + [29] = { 51, 51.8, 1519, 120 }, + [30] = { 59.7, 51.5, 1519, 120 }, + [31] = { 32.4, 51, 1519, 120 }, + [32] = { 64.9, 49.2, 1519, 120 }, + [33] = { 47.6, 43.1, 1519, 120 }, + [34] = { 39.9, 42.1, 1519, 120 }, + [35] = { 65.2, 37.2, 1519, 120 }, + [36] = { 50.2, 34.5, 1519, 120 }, + [37] = { 63.5, 25.9, 1519, 120 }, + [38] = { 51.6, 21.2, 1519, 120 }, + [39] = { 59.9, 82.5, 1638, 120 }, + [40] = { 55.5, 57.3, 1638, 120 }, + [41] = { 47.1, 51, 1638, 120 }, + [42] = { 45.7, 50.4, 1638, 120 }, + [43] = { 47.4, 49.3, 1638, 120 }, + [44] = { 46, 48.8, 1638, 120 }, + [45] = { 54.2, 46.7, 1638, 120 }, + [46] = { 47.8, 42.6, 1638, 120 }, + [47] = { 49, 33.9, 1638, 120 }, + [48] = { 74.4, 29.8, 1638, 120 }, + [49] = { 56.6, 76.9, 1657, 120 }, + [50] = { 38.4, 76.8, 1657, 120 }, + [51] = { 39.7, 76.7, 1657, 120 }, + [52] = { 60.8, 70.9, 1657, 120 }, + [53] = { 59.4, 62.3, 1657, 120 }, + [54] = { 64.8, 59, 1657, 120 }, + [55] = { 56.1, 54, 1657, 120 }, + [56] = { 56.1, 23.5, 1657, 120 }, + [57] = { 63.6, 20.9, 1657, 120 }, + [58] = { 54.8, 12.8, 1657, 120 }, + }, + }, + [181391] = { + ["coords"] = { + [1] = { 25.4, 56.8, 141, 120 }, + [2] = { 25, 56.7, 141, 120 }, + [3] = { 25.6, 56.7, 141, 120 }, + [4] = { 24.9, 56.6, 141, 120 }, + [5] = { 24.8, 56.4, 141, 120 }, + [6] = { 25.8, 56.4, 141, 120 }, + [7] = { 25.9, 56.2, 141, 120 }, + [8] = { 24.8, 56.2, 141, 120 }, + [9] = { 26, 56.1, 141, 120 }, + [10] = { 26.1, 56, 141, 120 }, + [11] = { 24.7, 55.9, 141, 120 }, + [12] = { 26.1, 55.8, 141, 120 }, + [13] = { 26.2, 55.7, 141, 120 }, + [14] = { 24.7, 55.3, 141, 120 }, + [15] = { 26.1, 55.1, 141, 120 }, + [16] = { 24.8, 55, 141, 120 }, + [17] = { 25.9, 54.9, 141, 120 }, + [18] = { 25.8, 54.8, 141, 120 }, + [19] = { 24.8, 54.8, 141, 120 }, + [20] = { 25.7, 54.7, 141, 120 }, + [21] = { 24.9, 54.6, 141, 120 }, + [22] = { 25, 54.5, 141, 120 }, + [23] = { 25.7, 54.4, 141, 120 }, + [24] = { 25.2, 54.3, 141, 120 }, + [25] = { 25.3, 54.2, 141, 120 }, + [26] = { 31.3, 50.2, 141, 120 }, + [27] = { 31.2, 50, 141, 120 }, + [28] = { 31.2, 49.9, 141, 120 }, + [29] = { 42, 33.1, 215, 120 }, + [30] = { 37.9, 29.8, 215, 120 }, + [31] = { 38, 29.8, 215, 120 }, + [32] = { 37.7, 29.8, 215, 120 }, + [33] = { 37.6, 29.8, 215, 120 }, + [34] = { 37.3, 29.7, 215, 120 }, + [35] = { 38.3, 29.4, 215, 120 }, + [36] = { 38.3, 29.3, 215, 120 }, + [37] = { 38.9, 28.7, 215, 120 }, + [38] = { 38.9, 28.6, 215, 120 }, + [39] = { 37.2, 28.4, 215, 120 }, + [40] = { 37.2, 28.3, 215, 120 }, + [41] = { 41, 28.1, 215, 120 }, + [42] = { 38.2, 28.1, 215, 120 }, + [43] = { 40.9, 28.1, 215, 120 }, + [44] = { 40.7, 28, 215, 120 }, + [45] = { 39, 27.9, 215, 120 }, + [46] = { 38.3, 27.8, 215, 120 }, + [47] = { 39, 27.8, 215, 120 }, + [48] = { 40.1, 27.5, 215, 120 }, + [49] = { 40, 26.9, 215, 120 }, + [50] = { 40.6, 26.7, 215, 120 }, + [51] = { 40.9, 26.6, 215, 120 }, + [52] = { 41, 26.6, 215, 120 }, + [53] = { 41.3, 26.3, 215, 120 }, + [54] = { 39.3, 26, 215, 120 }, + [55] = { 39.3, 25.9, 215, 120 }, + [56] = { 39.3, 25.6, 215, 120 }, + [57] = { 39.3, 25.5, 215, 120 }, + [58] = { 38.9, 25.3, 215, 120 }, + [59] = { 39.1, 24.7, 215, 120 }, + [60] = { 39.7, 24.6, 215, 120 }, + [61] = { 39.8, 24.6, 215, 120 }, + [62] = { 39.4, 24.3, 215, 120 }, + [63] = { 39.5, 24.2, 215, 120 }, + [64] = { 39.9, 23.9, 215, 120 }, + [65] = { 39.8, 23.9, 215, 120 }, + [66] = { 44.6, 23.2, 215, 120 }, + [67] = { 44.6, 23.1, 215, 120 }, + [68] = { 44.1, 22.5, 215, 120 }, + [69] = { 44, 22.4, 215, 120 }, + [70] = { 35.4, 21.3, 215, 120 }, + [71] = { 35.4, 21.2, 215, 120 }, + [72] = { 35.8, 21.1, 215, 120 }, + [73] = { 35.7, 21, 215, 120 }, + [74] = { 89, 48.5, 405, 120 }, + [75] = { 89, 48.4, 405, 120 }, + [76] = { 66.9, 50.5, 1497, 120 }, + [77] = { 65, 50.5, 1497, 120 }, + [78] = { 67.3, 50, 1497, 120 }, + [79] = { 64.6, 50, 1497, 120 }, + [80] = { 67.9, 49.6, 1497, 120 }, + [81] = { 64, 49.5, 1497, 120 }, + [82] = { 68.4, 49.4, 1497, 120 }, + [83] = { 63.5, 49.3, 1497, 120 }, + [84] = { 68.6, 48.8, 1497, 120 }, + [85] = { 63.2, 48.7, 1497, 120 }, + [86] = { 69.1, 48.1, 1497, 120 }, + [87] = { 62.8, 48, 1497, 120 }, + [88] = { 69.5, 47.7, 1497, 120 }, + [89] = { 62.4, 47.6, 1497, 120 }, + [90] = { 69.6, 46.9, 1497, 120 }, + [91] = { 62.3, 46.8, 1497, 120 }, + [92] = { 66.5, 46.7, 1497, 120 }, + [93] = { 65.4, 46.7, 1497, 120 }, + [94] = { 69.9, 46, 1497, 120 }, + [95] = { 62, 45.9, 1497, 120 }, + [96] = { 70.2, 45.5, 1497, 120 }, + [97] = { 61.7, 45.3, 1497, 120 }, + [98] = { 67.7, 44.9, 1497, 120 }, + [99] = { 64.2, 44.9, 1497, 120 }, + [100] = { 67.8, 43.3, 1497, 120 }, + [101] = { 64.3, 43.2, 1497, 120 }, + [102] = { 70.3, 42.9, 1497, 120 }, + [103] = { 61.7, 42.7, 1497, 120 }, + [104] = { 69.9, 42.3, 1497, 120 }, + [105] = { 62, 42.2, 1497, 120 }, + [106] = { 69.7, 41.4, 1497, 120 }, + [107] = { 62.3, 41.3, 1497, 120 }, + [108] = { 69.6, 40.6, 1497, 120 }, + [109] = { 62.4, 40.5, 1497, 120 }, + [110] = { 69.1, 40.2, 1497, 120 }, + [111] = { 62.8, 40.1, 1497, 120 }, + [112] = { 68.7, 39.5, 1497, 120 }, + [113] = { 63.3, 39.4, 1497, 120 }, + [114] = { 68.5, 38.9, 1497, 120 }, + [115] = { 63.6, 38.8, 1497, 120 }, + [116] = { 67.9, 38.7, 1497, 120 }, + [117] = { 64, 38.6, 1497, 120 }, + [118] = { 67.3, 38.2, 1497, 120 }, + [119] = { 64.7, 38.1, 1497, 120 }, + [120] = { 66.5, 37.8, 1497, 120 }, + [121] = { 65.5, 37.8, 1497, 120 }, + [122] = { 67, 37.7, 1497, 120 }, + [123] = { 65, 37.7, 1497, 120 }, + [124] = { 55.9, 73.1, 1519, 120 }, + [125] = { 55.9, 72.9, 1519, 120 }, + [126] = { 57.7, 71.6, 1519, 120 }, + [127] = { 55.4, 71.6, 1519, 120 }, + [128] = { 57.6, 71.6, 1519, 120 }, + [129] = { 55.4, 71.5, 1519, 120 }, + [130] = { 57.1, 70.2, 1519, 120 }, + [131] = { 57.1, 70.1, 1519, 120 }, + [132] = { 54.4, 65.2, 1519, 120 }, + [133] = { 54.5, 65.2, 1519, 120 }, + [134] = { 54.4, 65.1, 1519, 120 }, + [135] = { 54.6, 65.1, 1519, 120 }, + [136] = { 54.3, 65.1, 1519, 120 }, + [137] = { 54.5, 65, 1519, 120 }, + [138] = { 54.7, 65, 1519, 120 }, + [139] = { 54.2, 65, 1519, 120 }, + [140] = { 54.4, 65, 1519, 120 }, + [141] = { 54.2, 64.9, 1519, 120 }, + [142] = { 54.5, 64.9, 1519, 120 }, + [143] = { 54.4, 64.9, 1519, 120 }, + [144] = { 54.6, 64.9, 1519, 120 }, + [145] = { 54.3, 64.9, 1519, 120 }, + [146] = { 54.7, 64.9, 1519, 120 }, + [147] = { 54.4, 64.8, 1519, 120 }, + [148] = { 54.5, 64.8, 1519, 120 }, + [149] = { 54.2, 64.8, 1519, 120 }, + [150] = { 54.6, 64.8, 1519, 120 }, + [151] = { 54.3, 64.7, 1519, 120 }, + [152] = { 54.4, 64.7, 1519, 120 }, + [153] = { 54.5, 64.7, 1519, 120 }, + [154] = { 54.7, 64.7, 1519, 120 }, + [155] = { 54.6, 64.7, 1519, 120 }, + [156] = { 54.2, 64.7, 1519, 120 }, + [157] = { 54.5, 64.6, 1519, 120 }, + [158] = { 54.4, 64.6, 1519, 120 }, + [159] = { 54.7, 64.6, 1519, 120 }, + [160] = { 54.3, 64.5, 1519, 120 }, + [161] = { 54.6, 64.5, 1519, 120 }, + [162] = { 54.6, 64.4, 1519, 120 }, + [163] = { 54.3, 64.4, 1519, 120 }, + [164] = { 54.5, 64.4, 1519, 120 }, + [165] = { 54.4, 64.4, 1519, 120 }, + [166] = { 37.8, 61.1, 1519, 120 }, + [167] = { 37.9, 60.9, 1519, 120 }, + [168] = { 37.3, 60.5, 1537, 120 }, + [169] = { 36.9, 59.9, 1537, 120 }, + [170] = { 36.2, 58.5, 1537, 120 }, + [171] = { 35.9, 58.1, 1537, 120 }, + [172] = { 20.4, 52.2, 1537, 120 }, + [173] = { 18.5, 52, 1537, 120 }, + [174] = { 20.4, 51.9, 1537, 120 }, + [175] = { 20.3, 51.7, 1537, 120 }, + [176] = { 20.3, 51.5, 1537, 120 }, + [177] = { 20.3, 51.1, 1537, 120 }, + [178] = { 20.3, 50.9, 1537, 120 }, + [179] = { 18.4, 50.8, 1537, 120 }, + [180] = { 20.3, 50.6, 1537, 120 }, + [181] = { 20.2, 50.4, 1537, 120 }, + [182] = { 65.2, 26.4, 1537, 120 }, + [183] = { 54.5, 67.8, 1637, 120 }, + [184] = { 46, 54.5, 1637, 120 }, + [185] = { 45.9, 54.3, 1637, 120 }, + [186] = { 45.7, 53.9, 1637, 120 }, + [187] = { 45.6, 53.7, 1637, 120 }, + [188] = { 45.4, 53.4, 1637, 120 }, + [189] = { 45.3, 53.2, 1637, 120 }, + [190] = { 45.2, 52.9, 1637, 120 }, + [191] = { 44.2, 51, 1637, 120 }, + [192] = { 44.1, 50.8, 1637, 120 }, + [193] = { 43.9, 50.5, 1637, 120 }, + [194] = { 43.7, 49.9, 1637, 120 }, + [195] = { 60.2, 80.1, 1638, 120 }, + [196] = { 60, 80, 1638, 120 }, + [197] = { 39.9, 64, 1638, 120 }, + [198] = { 40.1, 63.8, 1638, 120 }, + [199] = { 38.7, 63.7, 1638, 120 }, + [200] = { 38.5, 63.6, 1638, 120 }, + [201] = { 36.8, 63.3, 1638, 120 }, + [202] = { 37, 63.1, 1638, 120 }, + [203] = { 41.7, 61.6, 1638, 120 }, + [204] = { 41.8, 61.4, 1638, 120 }, + [205] = { 44.6, 58.4, 1638, 120 }, + [206] = { 44.5, 58, 1638, 120 }, + [207] = { 36.4, 56.9, 1638, 120 }, + [208] = { 36.3, 56.5, 1638, 120 }, + [209] = { 55.1, 55.5, 1638, 120 }, + [210] = { 41.6, 55.5, 1638, 120 }, + [211] = { 54.8, 55.5, 1638, 120 }, + [212] = { 41.4, 55.2, 1638, 120 }, + [213] = { 53.7, 54.9, 1638, 120 }, + [214] = { 53.5, 54.7, 1638, 120 }, + [215] = { 45.2, 54.4, 1638, 120 }, + [216] = { 41.8, 54.1, 1638, 120 }, + [217] = { 45.2, 54.1, 1638, 120 }, + [218] = { 41.7, 53.8, 1638, 120 }, + [219] = { 50.7, 52.2, 1638, 120 }, + [220] = { 50.5, 52.2, 1638, 120 }, + [221] = { 50.2, 49.3, 1638, 120 }, + [222] = { 50, 49.3, 1638, 120 }, + [223] = { 53, 48.5, 1638, 120 }, + [224] = { 53.2, 48.3, 1638, 120 }, + [225] = { 54.8, 47.9, 1638, 120 }, + [226] = { 55, 47.9, 1638, 120 }, + [227] = { 56.5, 46.6, 1638, 120 }, + [228] = { 56.7, 46.6, 1638, 120 }, + [229] = { 46.6, 44.9, 1638, 120 }, + [230] = { 46.7, 44.6, 1638, 120 }, + [231] = { 46.9, 43, 1638, 120 }, + [232] = { 46.9, 42.7, 1638, 120 }, + [233] = { 44.8, 41.7, 1638, 120 }, + [234] = { 44.6, 41.6, 1638, 120 }, + [235] = { 45.7, 38.6, 1638, 120 }, + [236] = { 45.9, 38.5, 1638, 120 }, + [237] = { 48.8, 38.1, 1638, 120 }, + [238] = { 49.1, 38, 1638, 120 }, + [239] = { 47.4, 36.5, 1638, 120 }, + [240] = { 47.6, 36.3, 1638, 120 }, + [241] = { 49.6, 34.7, 1638, 120 }, + [242] = { 49.4, 34.6, 1638, 120 }, + [243] = { 72.6, 31.1, 1638, 120 }, + [244] = { 72.6, 30.7, 1638, 120 }, + [245] = { 70.2, 27.6, 1638, 120 }, + [246] = { 69.9, 27.5, 1638, 120 }, + [247] = { 27.3, 21.9, 1638, 120 }, + [248] = { 27.5, 21.6, 1638, 120 }, + [249] = { 29.3, 20.7, 1638, 120 }, + [250] = { 29.2, 20.4, 1638, 120 }, + [251] = { 39.3, 47.2, 1657, 120 }, + [252] = { 37.7, 47, 1657, 120 }, + [253] = { 40.4, 46.8, 1657, 120 }, + [254] = { 37.2, 46.3, 1657, 120 }, + [255] = { 36.7, 45.5, 1657, 120 }, + [256] = { 41.6, 45.3, 1657, 120 }, + [257] = { 42, 44.6, 1657, 120 }, + [258] = { 36.3, 44.6, 1657, 120 }, + [259] = { 42.4, 43.9, 1657, 120 }, + [260] = { 42.6, 43.4, 1657, 120 }, + [261] = { 36, 43.1, 1657, 120 }, + [262] = { 42.9, 42.7, 1657, 120 }, + [263] = { 43.2, 42, 1657, 120 }, + [264] = { 36.1, 40.1, 1657, 120 }, + [265] = { 42.8, 39.3, 1657, 120 }, + [266] = { 36.5, 39, 1657, 120 }, + [267] = { 42.1, 38.4, 1657, 120 }, + [268] = { 41.4, 37.8, 1657, 120 }, + [269] = { 36.6, 37.6, 1657, 120 }, + [270] = { 40.8, 37.2, 1657, 120 }, + [271] = { 37, 36.8, 1657, 120 }, + [272] = { 37.4, 36.3, 1657, 120 }, + [273] = { 40.7, 35.9, 1657, 120 }, + [274] = { 38.2, 35.6, 1657, 120 }, + [275] = { 39, 34.9, 1657, 120 }, + [276] = { 67.9, 15.7, 1657, 120 }, + [277] = { 67.4, 14.5, 1657, 120 }, + [278] = { 67.2, 14.1, 1657, 120 }, + }, + }, + [181392] = { + ["coords"] = { + [1] = { 60.3, 35.5, 1, 120 }, + [2] = { 54.1, 32, 4, 120 }, + [3] = { 54.3, 31.8, 4, 120 }, + [4] = { 51.1, 17.6, 11, 120 }, + [5] = { 51.3, 17.5, 11, 120 }, + [6] = { 41.6, 43.3, 16, 120 }, + [7] = { 41.7, 43.1, 16, 120 }, + [8] = { 59.7, 39.4, 17, 120 }, + [9] = { 59.7, 39.3, 17, 120 }, + [10] = { 52.2, 97.2, 36, 120 }, + [11] = { 52.2, 96.8, 36, 120 }, + [12] = { 34.4, 80.8, 40, 120 }, + [13] = { 34.3, 80.4, 40, 120 }, + [14] = { 61.9, 52.9, 47, 120 }, + [15] = { 62.1, 52.7, 47, 120 }, + [16] = { 32.6, 73, 51, 120 }, + [17] = { 32.2, 72.7, 51, 120 }, + [18] = { 54.4, 69.6, 130, 120 }, + [19] = { 54.3, 69.3, 130, 120 }, + [20] = { 57.7, 73.2, 139, 120 }, + [21] = { 57.6, 73, 139, 120 }, + [22] = { 56.7, 92, 141, 120 }, + [23] = { 56.6, 91.8, 141, 120 }, + [24] = { 41.5, 90.9, 148, 120 }, + [25] = { 41.4, 90.8, 148, 120 }, + [26] = { 39.2, 30.3, 215, 120 }, + [27] = { 39.1, 29.8, 215, 120 }, + [28] = { 39.1, 28.8, 215, 120 }, + [29] = { 33.9, 22.1, 215, 120 }, + [30] = { 34, 22, 215, 120 }, + [31] = { 34, 21.9, 215, 120 }, + [32] = { 54.6, 33.5, 267, 120 }, + [33] = { 54.5, 33.1, 267, 120 }, + [34] = { 64.8, 71.2, 331, 120 }, + [35] = { 64.7, 71.1, 331, 120 }, + [36] = { 87.3, 49.4, 405, 120 }, + [37] = { 87.5, 49.4, 405, 120 }, + [38] = { 87.4, 49.2, 405, 120 }, + [39] = { 59.6, 72.9, 406, 120 }, + [40] = { 59.4, 72.7, 406, 120 }, + [41] = { 70.1, 75.7, 490, 120 }, + [42] = { 70.2, 75.4, 490, 120 }, + [43] = { 19.3, 17.1, 490, 120 }, + [44] = { 19.5, 16.9, 490, 120 }, + [45] = { 30.6, 43.3, 618, 120 }, + [46] = { 30.6, 43.1, 618, 120 }, + [47] = { 78, 18.5, 1377, 120 }, + [48] = { 78.2, 18.3, 1377, 120 }, + [49] = { 56, 70, 1519, 120 }, + [50] = { 52, 66.2, 1519, 120 }, + [51] = { 53.4, 64.9, 1519, 120 }, + [52] = { 53.7, 62.7, 1519, 120 }, + [53] = { 38.1, 61.5, 1519, 120 }, + [54] = { 37.5, 61.3, 1519, 120 }, + [55] = { 37.9, 60.9, 1519, 120 }, + [56] = { 57.2, 89.5, 1537, 120 }, + [57] = { 55.7, 87.5, 1537, 120 }, + [58] = { 52, 85, 1537, 120 }, + [59] = { 51.1, 79.7, 1537, 120 }, + [60] = { 40.5, 76.8, 1537, 120 }, + [61] = { 71.6, 67.9, 1537, 120 }, + [62] = { 34, 62.5, 1537, 120 }, + [63] = { 30.9, 58.9, 1537, 120 }, + [64] = { 54.5, 56.7, 1537, 120 }, + [65] = { 20.7, 53.2, 1537, 120 }, + [66] = { 56.8, 52.8, 1537, 120 }, + [67] = { 18.5, 51.4, 1537, 120 }, + [68] = { 59, 44.7, 1537, 120 }, + [69] = { 24.7, 43.4, 1537, 120 }, + [70] = { 25.3, 37.2, 1537, 120 }, + [71] = { 54.8, 31, 1537, 120 }, + [72] = { 44.2, 30.6, 1537, 120 }, + [73] = { 29.7, 26.2, 1537, 120 }, + [74] = { 59.5, 23.2, 1537, 120 }, + [75] = { 50.7, 8.5, 1537, 120 }, + [76] = { 48, 8.3, 1537, 120 }, + [77] = { 37.5, 6.2, 1537, 120 }, + [78] = { 36.2, 4.3, 1537, 120 }, + [79] = { 54.1, 69.7, 1637, 120 }, + [80] = { 53.8, 69.4, 1637, 120 }, + [81] = { 53.6, 69.1, 1637, 120 }, + [82] = { 43.2, 32.8, 1637, 120 }, + [83] = { 46.4, 66.3, 1638, 120 }, + [84] = { 45.7, 63.9, 1638, 120 }, + [85] = { 45.7, 58.8, 1638, 120 }, + [86] = { 20.1, 25.6, 1638, 120 }, + [87] = { 20.6, 25.5, 1638, 120 }, + [88] = { 20.6, 24.7, 1638, 120 }, + }, + }, + [181393] = { + ["coords"] = { + [1] = { 45.5, 10.9, 14, 120 }, + [2] = { 46.6, 10.7, 14, 120 }, + [3] = { 45.3, 10.6, 14, 120 }, + [4] = { 46.4, 10.4, 14, 120 }, + [5] = { 42.8, 8.8, 14, 120 }, + [6] = { 67, 45.6, 1497, 120 }, + [7] = { 64.9, 45.6, 1497, 120 }, + [8] = { 67, 42.6, 1497, 120 }, + [9] = { 65, 42.6, 1497, 120 }, + [10] = { 55.4, 70.5, 1519, 120 }, + [11] = { 56.5, 69.5, 1519, 120 }, + [12] = { 53.3, 58.2, 1519, 120 }, + [13] = { 36.5, 62.3, 1537, 120 }, + [14] = { 35.6, 60.6, 1537, 120 }, + [15] = { 34.6, 58.9, 1537, 120 }, + [16] = { 49.1, 90.7, 1637, 120 }, + [17] = { 53.3, 89.9, 1637, 120 }, + [18] = { 48.3, 89.8, 1637, 120 }, + [19] = { 52.5, 89, 1637, 120 }, + [20] = { 38.7, 82.8, 1637, 120 }, + [21] = { 49.4, 68.8, 1637, 120 }, + [22] = { 53.6, 66, 1637, 120 }, + [23] = { 46.6, 64.1, 1637, 120 }, + [24] = { 52.9, 63.7, 1637, 120 }, + [25] = { 42.6, 61.8, 1637, 120 }, + [26] = { 38.4, 60, 1637, 120 }, + [27] = { 52.5, 58.7, 1637, 120 }, + [28] = { 51.5, 56.7, 1637, 120 }, + [29] = { 65.9, 41.3, 1637, 120 }, + [30] = { 66, 40.3, 1637, 120 }, + [31] = { 47, 39.9, 1637, 120 }, + [32] = { 45.3, 39.2, 1637, 120 }, + [33] = { 49.3, 38.4, 1637, 120 }, + [34] = { 40.8, 38.3, 1637, 120 }, + [35] = { 64.3, 37.9, 1637, 120 }, + [36] = { 64.5, 36.9, 1637, 120 }, + [37] = { 40.7, 35.5, 1637, 120 }, + [38] = { 48.5, 34, 1637, 120 }, + [39] = { 68.8, 28, 1637, 120 }, + [40] = { 69.6, 26, 1637, 120 }, + [41] = { 81.1, 23.6, 1637, 120 }, + [42] = { 81.8, 21.6, 1637, 120 }, + }, + }, + [181401] = { + ["coords"] = { + [1] = { 30.3, 56.7, 141, 120 }, + [2] = { 30.3, 56.3, 141, 120 }, + [3] = { 30.3, 56, 141, 120 }, + [4] = { 30.3, 54.7, 141, 120 }, + [5] = { 30.3, 54.4, 141, 120 }, + [6] = { 30.3, 54.1, 141, 120 }, + [7] = { 31.4, 50.4, 141, 120 }, + [8] = { 31.2, 50.1, 141, 120 }, + [9] = { 31, 49.7, 141, 120 }, + [10] = { 66.3, 65.1, 1519, 120 }, + [11] = { 67.8, 63.3, 1519, 120 }, + [12] = { 30.5, 73.3, 1637, 120 }, + [13] = { 40.5, 36.9, 1637, 120 }, + [14] = { 76.4, 33, 1637, 120 }, + [15] = { 75, 15.7, 1637, 120 }, + [16] = { 63.1, 46.8, 1657, 120 }, + [17] = { 63, 45.2, 1657, 120 }, + [18] = { 63, 43.6, 1657, 120 }, + [19] = { 62.8, 37.5, 1657, 120 }, + [20] = { 62.9, 35.8, 1657, 120 }, + [21] = { 62.8, 34.2, 1657, 120 }, + [22] = { 68.2, 16.9, 1657, 120 }, + [23] = { 67.4, 15.2, 1657, 120 }, + [24] = { 66.6, 13.3, 1657, 120 }, + }, + }, + [181402] = { + ["coords"] = {}, + }, + [181403] = { + ["coords"] = {}, + }, + [181404] = { + ["coords"] = {}, + }, + [181405] = { + ["coords"] = {}, + }, + [181431] = { + ["coords"] = { + [1] = { 46.5, 10.6, 14, 120 }, + [2] = { 42.3, 10.1, 14, 120 }, + [3] = { 46.3, 7.6, 14, 120 }, + [4] = { 44.5, 6.8, 14, 120 }, + [5] = { 42.5, 6.5, 14, 120 }, + [6] = { 7.6, 67.1, 28, 120 }, + [7] = { 8.2, 62.2, 28, 120 }, + [8] = { 61.9, 67.4, 85, 120 }, + [9] = { 74.2, 13.2, 130, 120 }, + [10] = { 56.4, 92.4, 141, 120 }, + [11] = { 55.9, 89.8, 141, 120 }, + [12] = { 25.4, 65.5, 141, 120 }, + [13] = { 29.1, 64.2, 141, 120 }, + [14] = { 23.5, 64, 141, 120 }, + [15] = { 27.1, 64, 141, 120 }, + [16] = { 25.3, 62.6, 141, 120 }, + [17] = { 30.5, 61.8, 141, 120 }, + [18] = { 29.8, 60.8, 141, 120 }, + [19] = { 25.3, 59.4, 141, 120 }, + [20] = { 31.4, 59.3, 141, 120 }, + [21] = { 28.7, 58.7, 141, 120 }, + [22] = { 30.1, 58.1, 141, 120 }, + [23] = { 26.9, 57.4, 141, 120 }, + [24] = { 25.2, 56.9, 141, 120 }, + [25] = { 25.8, 55.7, 141, 120 }, + [26] = { 24, 55.5, 141, 120 }, + [27] = { 27.4, 55.5, 141, 120 }, + [28] = { 34, 55.4, 141, 120 }, + [29] = { 29.6, 55.4, 141, 120 }, + [30] = { 32.2, 55.4, 141, 120 }, + [31] = { 30.6, 55.3, 141, 120 }, + [32] = { 35.8, 54.4, 141, 120 }, + [33] = { 25.8, 53, 141, 120 }, + [34] = { 30.1, 52.8, 141, 120 }, + [35] = { 28.3, 51.4, 141, 120 }, + [36] = { 26.4, 50.9, 141, 120 }, + [37] = { 30.8, 50.3, 141, 120 }, + [38] = { 24.2, 50.2, 141, 120 }, + [39] = { 28.7, 48.7, 141, 120 }, + [40] = { 25, 48.3, 141, 120 }, + [41] = { 41.1, 33.4, 215, 120 }, + [42] = { 42.4, 32.6, 215, 120 }, + [43] = { 39.4, 30.8, 215, 120 }, + [44] = { 42.1, 29.6, 215, 120 }, + [45] = { 37.3, 29.4, 215, 120 }, + [46] = { 38.8, 27.7, 215, 120 }, + [47] = { 41.3, 27.3, 215, 120 }, + [48] = { 39.8, 27.2, 215, 120 }, + [49] = { 39.4, 27, 215, 120 }, + [50] = { 36.6, 26, 215, 120 }, + [51] = { 38.9, 25.5, 215, 120 }, + [52] = { 42.3, 25.2, 215, 120 }, + [53] = { 41.1, 23.9, 215, 120 }, + [54] = { 40, 23.4, 215, 120 }, + [55] = { 44.6, 23.3, 215, 120 }, + [56] = { 44.3, 22.2, 215, 120 }, + [57] = { 35.9, 22, 215, 120 }, + [58] = { 34.8, 20, 215, 120 }, + [59] = { 88.3, 47.1, 405, 120 }, + [60] = { 56.4, 90.6, 1497, 120 }, + [61] = { 65.9, 71.9, 1497, 120 }, + [62] = { 49.2, 69.3, 1497, 120 }, + [63] = { 81.9, 68, 1497, 120 }, + [64] = { 75.7, 58.9, 1497, 120 }, + [65] = { 56.1, 58.6, 1497, 120 }, + [66] = { 66, 54.9, 1497, 120 }, + [67] = { 65.9, 49.8, 1497, 120 }, + [68] = { 65.9, 48.1, 1497, 120 }, + [69] = { 84.4, 45.8, 1497, 120 }, + [70] = { 69.7, 44.3, 1497, 120 }, + [71] = { 72.6, 44.3, 1497, 120 }, + [72] = { 62.2, 44.1, 1497, 120 }, + [73] = { 66, 44.1, 1497, 120 }, + [74] = { 59, 44, 1497, 120 }, + [75] = { 47.8, 43.7, 1497, 120 }, + [76] = { 66.1, 38.2, 1497, 120 }, + [77] = { 66, 36.9, 1497, 120 }, + [78] = { 66, 33.9, 1497, 120 }, + [79] = { 75.7, 29.7, 1497, 120 }, + [80] = { 66.1, 28.7, 1497, 120 }, + [81] = { 57.5, 28, 1497, 120 }, + [82] = { 81.6, 21.1, 1497, 120 }, + [83] = { 50.7, 20.9, 1497, 120 }, + [84] = { 66.2, 16.4, 1497, 120 }, + [85] = { 66.2, 11.3, 1497, 120 }, + [86] = { 69.4, 85.6, 1519, 120 }, + [87] = { 38.1, 79, 1519, 120 }, + [88] = { 64, 75.3, 1519, 120 }, + [89] = { 31.4, 73, 1519, 120 }, + [90] = { 44.8, 71.7, 1519, 120 }, + [91] = { 59.2, 66, 1519, 120 }, + [92] = { 49.7, 66, 1519, 120 }, + [93] = { 40.4, 63.2, 1519, 120 }, + [94] = { 32.6, 61.9, 1519, 120 }, + [95] = { 60.1, 59.7, 1519, 120 }, + [96] = { 67.4, 58.1, 1519, 120 }, + [97] = { 21.2, 54.7, 1519, 120 }, + [98] = { 49.7, 51.9, 1519, 120 }, + [99] = { 29, 50.8, 1519, 120 }, + [100] = { 72.7, 50.8, 1519, 120 }, + [101] = { 64.1, 48.5, 1519, 120 }, + [102] = { 57.2, 48.2, 1519, 120 }, + [103] = { 34.4, 46.5, 1519, 120 }, + [104] = { 69.4, 44.1, 1519, 120 }, + [105] = { 40.7, 37.9, 1519, 120 }, + [106] = { 64.5, 37.3, 1519, 120 }, + [107] = { 62.5, 33.2, 1519, 120 }, + [108] = { 46.7, 32.8, 1519, 120 }, + [109] = { 69.3, 28.3, 1519, 120 }, + [110] = { 54.2, 26, 1519, 120 }, + [111] = { 61.1, 23.4, 1519, 120 }, + [112] = { 55.3, 20.2, 1519, 120 }, + [113] = { 56, 9.5, 1519, 120 }, + [114] = { 50.7, 82.3, 1537, 120 }, + [115] = { 21.6, 78, 1537, 120 }, + [116] = { 62.8, 76.2, 1537, 120 }, + [117] = { 32.7, 76.2, 1537, 120 }, + [118] = { 50.6, 58.7, 1537, 120 }, + [119] = { 70.6, 50, 1537, 120 }, + [120] = { 45.5, 48.4, 1537, 120 }, + [121] = { 49.8, 43.7, 1537, 120 }, + [122] = { 21.5, 41.9, 1537, 120 }, + [123] = { 39.8, 39.3, 1537, 120 }, + [124] = { 56, 35.3, 1537, 120 }, + [125] = { 64.4, 24.7, 1537, 120 }, + [126] = { 30.5, 18.1, 1537, 120 }, + [127] = { 46.7, 11.1, 1537, 120 }, + [128] = { 52.8, 89.5, 1637, 120 }, + [129] = { 37, 87.7, 1637, 120 }, + [130] = { 52.2, 78.2, 1637, 120 }, + [131] = { 45.2, 75.4, 1637, 120 }, + [132] = { 37.7, 74.3, 1637, 120 }, + [133] = { 50.2, 71.2, 1637, 120 }, + [134] = { 31.1, 70.3, 1637, 120 }, + [135] = { 41.8, 67.9, 1637, 120 }, + [136] = { 52.7, 64.8, 1637, 120 }, + [137] = { 44.1, 63.2, 1637, 120 }, + [138] = { 17.9, 60.2, 1637, 120 }, + [139] = { 49.4, 59.4, 1637, 120 }, + [140] = { 27.9, 58.5, 1637, 120 }, + [141] = { 59.6, 56, 1637, 120 }, + [142] = { 43.5, 52.8, 1637, 120 }, + [143] = { 39, 52.4, 1637, 120 }, + [144] = { 46.9, 50.4, 1637, 120 }, + [145] = { 51.9, 45.7, 1637, 120 }, + [146] = { 59, 43.6, 1637, 120 }, + [147] = { 75.2, 40, 1637, 120 }, + [148] = { 64.4, 37.4, 1637, 120 }, + [149] = { 42.7, 36.9, 1637, 120 }, + [150] = { 70.2, 36.6, 1637, 120 }, + [151] = { 53.8, 35.3, 1637, 120 }, + [152] = { 75.8, 33.2, 1637, 120 }, + [153] = { 67, 30.9, 1637, 120 }, + [154] = { 72.3, 24.3, 1637, 120 }, + [155] = { 66.7, 18.2, 1637, 120 }, + [156] = { 55.5, 81.5, 1638, 120 }, + [157] = { 61.8, 77.4, 1638, 120 }, + [158] = { 47.2, 68.7, 1638, 120 }, + [159] = { 60.6, 62.5, 1638, 120 }, + [160] = { 37, 62, 1638, 120 }, + [161] = { 44.3, 53.2, 1638, 120 }, + [162] = { 56.4, 51.6, 1638, 120 }, + [163] = { 49.4, 50.8, 1638, 120 }, + [164] = { 47.1, 49.9, 1638, 120 }, + [165] = { 33.4, 45.1, 1638, 120 }, + [166] = { 44.9, 42.4, 1638, 120 }, + [167] = { 61.4, 40.9, 1638, 120 }, + [168] = { 55.5, 34.6, 1638, 120 }, + [169] = { 50, 32.1, 1638, 120 }, + [170] = { 73, 31.8, 1638, 120 }, + [171] = { 71.5, 26.5, 1638, 120 }, + [172] = { 30.2, 25.1, 1638, 120 }, + [173] = { 24.4, 15.6, 1638, 120 }, + [174] = { 39.2, 89.4, 1657, 120 }, + [175] = { 57.1, 83.2, 1657, 120 }, + [176] = { 30.1, 82.1, 1657, 120 }, + [177] = { 47.8, 82.1, 1657, 120 }, + [178] = { 39.1, 75.4, 1657, 120 }, + [179] = { 64.1, 71.4, 1657, 120 }, + [180] = { 60.4, 66.5, 1657, 120 }, + [181] = { 38.7, 59.9, 1657, 120 }, + [182] = { 68, 59.2, 1657, 120 }, + [183] = { 55, 56.5, 1657, 120 }, + [184] = { 62.2, 53.8, 1657, 120 }, + [185] = { 46.5, 50.1, 1657, 120 }, + [186] = { 38.5, 48.1, 1657, 120 }, + [187] = { 41.2, 42.4, 1657, 120 }, + [188] = { 32.7, 41.4, 1657, 120 }, + [189] = { 48.9, 41, 1657, 120 }, + [190] = { 81, 40.8, 1657, 120 }, + [191] = { 59.8, 40.6, 1657, 120 }, + [192] = { 72, 40.5, 1657, 120 }, + [193] = { 64.3, 40.5, 1657, 120 }, + [194] = { 89.6, 35.8, 1657, 120 }, + [195] = { 41.4, 29.3, 1657, 120 }, + [196] = { 61.9, 28, 1657, 120 }, + [197] = { 53.3, 21.3, 1657, 120 }, + [198] = { 44.3, 18.9, 1657, 120 }, + [199] = { 65.5, 16.4, 1657, 120 }, + [200] = { 33.8, 15.6, 1657, 120 }, + [201] = { 55.1, 8.4, 1657, 120 }, + [202] = { 37.3, 6.3, 1657, 120 }, + }, + ["fac"] = "AH", + }, + [181444] = { + ["coords"] = {}, + }, + [181476] = { + ["coords"] = { + [1] = { 39.9, 25.8, 139, 900 }, + }, + }, + [181477] = { + ["coords"] = {}, + }, + [181478] = { + ["coords"] = {}, + }, + [181488] = { + ["coords"] = {}, + }, + [181489] = { + ["coords"] = {}, + }, + [181495] = { + ["coords"] = {}, + }, + [181496] = { + ["coords"] = {}, + }, + [181510] = { + ["coords"] = {}, + }, + [181511] = { + ["coords"] = {}, + }, + [181512] = { + ["coords"] = {}, + }, + [181513] = { + ["coords"] = {}, + }, + [181514] = { + ["coords"] = {}, + }, + [181515] = { + ["coords"] = {}, + }, + [181516] = { + ["coords"] = {}, + }, + [181517] = { + ["coords"] = {}, + }, + [181518] = { + ["coords"] = {}, + }, + [181519] = { + ["coords"] = {}, + }, + [181520] = { + ["coords"] = {}, + }, + [181521] = { + ["coords"] = {}, + }, + [181522] = { + ["coords"] = {}, + }, + [181523] = { + ["coords"] = {}, + }, + [181524] = { + ["coords"] = {}, + }, + [181525] = { + ["coords"] = {}, + }, + [181526] = { + ["coords"] = {}, + }, + [181527] = { + ["coords"] = {}, + }, + [181528] = { + ["coords"] = {}, + }, + [181529] = { + ["coords"] = {}, + }, + [181530] = { + ["coords"] = {}, + }, + [181531] = { + ["coords"] = {}, + }, + [181532] = { + ["coords"] = {}, + }, + [181533] = { + ["coords"] = {}, + }, + [181534] = { + ["coords"] = {}, + }, + [181535] = { + ["coords"] = {}, + }, + [181536] = { + ["coords"] = {}, + }, + [181537] = { + ["coords"] = {}, + }, + [181538] = { + ["coords"] = {}, + }, + [181539] = { + ["coords"] = {}, + }, + [181540] = { + ["coords"] = {}, + }, + [181541] = { + ["coords"] = {}, + }, + [181542] = { + ["coords"] = {}, + }, + [181543] = { + ["coords"] = {}, + }, + [181544] = { + ["coords"] = {}, + }, + [181545] = { + ["coords"] = {}, + }, + [181546] = { + ["coords"] = {}, + }, + [181547] = { + ["coords"] = {}, + }, + [181548] = { + ["coords"] = {}, + }, + [181549] = { + ["coords"] = {}, + }, + [181550] = { + ["coords"] = {}, + }, + [181551] = { + ["coords"] = {}, + }, + [181552] = { + ["coords"] = {}, + }, + [181560] = { + ["coords"] = { + [1] = { 59.8, 39.3, 17, 120 }, + }, + }, + [181561] = { + ["coords"] = { + [1] = { 64.8, 71.7, 331, 120 }, + }, + }, + [181562] = { + ["coords"] = { + [1] = { 59.5, 72.5, 406, 120 }, + }, + }, + [181563] = { + ["coords"] = { + [1] = { 41.5, 90.7, 148, 120 }, + }, + }, + [181564] = { + ["coords"] = { + [1] = { 54.2, 69.8, 130, 120 }, + }, + }, + [181565] = { + ["coords"] = { + [1] = { 34, 80.4, 40, 120 }, + }, + }, + [181566] = { + ["coords"] = { + [1] = { 52, 97.6, 36, 120 }, + [2] = { 54.4, 33.8, 267, 120 }, + }, + }, + [181567] = { + ["coords"] = { + [1] = { 51.2, 17.1, 11, 120 }, + }, + }, + [181575] = { + ["coords"] = {}, + }, + [181576] = { + ["coords"] = {}, + }, + [181577] = { + ["coords"] = {}, + }, + [181578] = { + ["coords"] = {}, + }, + [181596] = { + ["coords"] = { + [1] = { 3, 47.1, 3, 900 }, + [2] = { 82, 38.3, 51, 900 }, + }, + }, + [181597] = { + ["coords"] = {}, + }, + [181598] = { + ["coords"] = { + [1] = { 46.2, 86.1, 1377, 180 }, + [2] = { 17.1, 85.7, 1377, 180 }, + [3] = { 22.8, 85.6, 1377, 180 }, + [4] = { 44.4, 85.4, 1377, 180 }, + [5] = { 48.8, 85.1, 1377, 180 }, + [6] = { 37.2, 84.6, 1377, 180 }, + [7] = { 42.5, 83.6, 1377, 180 }, + [8] = { 26.4, 81.5, 1377, 180 }, + [9] = { 20.8, 81.4, 1377, 180 }, + [10] = { 38.9, 80.8, 1377, 180 }, + [11] = { 41.4, 80.8, 1377, 180 }, + [12] = { 18.9, 80.3, 1377, 180 }, + [13] = { 22.7, 78.4, 1377, 180 }, + [14] = { 36.7, 77.5, 1377, 180 }, + [15] = { 27.4, 77.2, 1377, 180 }, + [16] = { 28, 71.8, 1377, 180 }, + [17] = { 64, 70.9, 1377, 180 }, + [18] = { 38.2, 67.2, 1377, 180 }, + [19] = { 31.3, 65.5, 1377, 180 }, + [20] = { 60.6, 63, 1377, 180 }, + [21] = { 62.8, 59.8, 1377, 180 }, + [22] = { 59.2, 58.8, 1377, 180 }, + [23] = { 45.4, 54.4, 1377, 180 }, + [24] = { 53.8, 51.3, 1377, 180 }, + [25] = { 50.5, 50.7, 1377, 180 }, + [26] = { 58.1, 50, 1377, 180 }, + [27] = { 59.7, 48.5, 1377, 180 }, + [28] = { 47.4, 46.7, 1377, 180 }, + [29] = { 49.2, 44.8, 1377, 180 }, + [30] = { 63.8, 44.5, 1377, 180 }, + [31] = { 42.8, 42, 1377, 180 }, + [32] = { 36, 38.4, 1377, 180 }, + [33] = { 33.5, 35.6, 1377, 180 }, + [34] = { 43.7, 32.6, 1377, 180 }, + [35] = { 39.5, 31.3, 1377, 180 }, + [36] = { 31.5, 31.3, 1377, 180 }, + [37] = { 36.1, 29.9, 1377, 180 }, + [38] = { 41.6, 27, 1377, 180 }, + [39] = { 34.8, 26.6, 1377, 180 }, + [40] = { 38, 26.2, 1377, 180 }, + [41] = { 39.9, 22.4, 1377, 180 }, + [42] = { 34.2, 21.1, 1377, 180 }, + }, + }, + [181599] = { + ["coords"] = {}, + }, + [181603] = { + ["coords"] = { + [1] = { 32.7, 51, 1377, 900 }, + }, + ["fac"] = "AH", + }, + [181604] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [181605] = { + ["coords"] = { + [1] = { 53.9, 32, 4, 120 }, + [2] = { 51, 17.3, 11, 120 }, + [3] = { 41.7, 42.7, 16, 120 }, + [4] = { 59.8, 39.1, 17, 120 }, + [5] = { 51.7, 97.2, 36, 120 }, + [6] = { 34.3, 80, 40, 120 }, + [7] = { 62.3, 53.1, 47, 120 }, + [8] = { 32.7, 73.9, 51, 120 }, + [9] = { 54.2, 69.2, 130, 120 }, + [10] = { 57.8, 72.6, 139, 120 }, + [11] = { 56.6, 91.5, 141, 120 }, + [12] = { 41.6, 90.8, 148, 120 }, + [13] = { 33.8, 22.3, 215, 120 }, + [14] = { 54.1, 33.5, 267, 120 }, + [15] = { 64.9, 71.1, 331, 120 }, + [16] = { 87.2, 49.6, 405, 120 }, + [17] = { 59.7, 72.7, 406, 120 }, + [18] = { 69.8, 75.3, 490, 120 }, + [19] = { 19.7, 17.4, 490, 120 }, + [20] = { 30.4, 43.3, 618, 120 }, + [21] = { 78.4, 18.8, 1377, 120 }, + [22] = { 67.2, 35.6, 1497, 120 }, + [23] = { 39.4, 62.5, 1519, 120 }, + [24] = { 66.2, 25.4, 1537, 120 }, + [25] = { 42.2, 32.6, 1637, 120 }, + [26] = { 19.7, 26.7, 1638, 120 }, + }, + }, + [181617] = { + ["coords"] = { + [1] = { 51.1, 70.2, 1377, 900 }, + }, + ["fac"] = "AH", + }, + [181618] = { + ["coords"] = { + [1] = { 32.7, 51, 1377, 900 }, + }, + }, + [181619] = { + ["coords"] = { + [1] = { 51.1, 70.2, 1377, 900 }, + }, + }, + [181633] = { + ["coords"] = { + [1] = { 50.9, 68.7, 1377, 900 }, + }, + }, + [181634] = { + ["coords"] = { + [1] = { 50.7, 69.3, 1377, 900 }, + }, + }, + [181635] = { + ["coords"] = { + [1] = { 33.1, 52.5, 1377, 900 }, + }, + }, + [181639] = { + ["coords"] = { + [1] = { 36, 7.2, 406, 900 }, + }, + ["fac"] = "A", + }, + [181640] = { + ["coords"] = {}, + }, + [181676] = { + ["coords"] = {}, + }, + [181677] = { + ["coords"] = {}, + }, + [181678] = { + ["coords"] = {}, + }, + [181682] = { + ["coords"] = {}, + ["fac"] = "A", + }, + [181695] = { + ["coords"] = {}, + }, + [181756] = { + ["coords"] = { + [1] = { 67.6, 72.8, 618, 0 }, + }, + }, + [181810] = { + ["coords"] = {}, + }, + [181852] = { + ["coords"] = {}, + }, + [181853] = { + ["coords"] = {}, + }, + [181870] = { + ["coords"] = {}, + }, + [181899] = { + ["coords"] = {}, + }, + [181955] = { + ["coords"] = {}, + ["fac"] = "H", + }, + [181962] = { + ["coords"] = { + [1] = { 51.1, 70.6, 1377, 180 }, + [2] = { 51.2, 70.6, 1377, 180 }, + [3] = { 51.2, 70.5, 1377, 180 }, + [4] = { 51.1, 70.5, 1377, 180 }, + [5] = { 51.2, 70.4, 1377, 180 }, + [6] = { 32.5, 51.2, 1377, 180 }, + [7] = { 32.6, 51.1, 1377, 180 }, + [8] = { 32.5, 51, 1377, 180 }, + [9] = { 32.6, 51, 1377, 180 }, + [10] = { 32.6, 50.9, 1377, 180 }, + }, + }, + [181985] = { + ["coords"] = {}, + }, + [181987] = { + ["coords"] = {}, + }, + [182013] = { + ["coords"] = {}, + }, + [182014] = { + ["coords"] = {}, + }, + [182018] = { + ["coords"] = {}, + }, + [182020] = { + ["coords"] = {}, + }, + [182021] = { + ["coords"] = {}, + }, + [182022] = { + ["coords"] = {}, + }, + [182023] = { + ["coords"] = {}, + }, + [182028] = { + ["coords"] = {}, + }, + [182029] = { + ["coords"] = {}, + }, + [182075] = { + ["coords"] = { + [1] = { 53.7, 21.9, 139, 900 }, + }, + }, + [182076] = { + ["coords"] = { + [1] = { 53.6, 22.1, 139, 900 }, + }, + }, + [182077] = { + ["coords"] = { + [1] = { 53.5, 22.1, 139, 900 }, + [2] = { 53.7, 21.9, 139, 900 }, + }, + }, + [182078] = { + ["coords"] = { + [1] = { 53.4, 22.1, 139, 900 }, + }, + }, + [182079] = { + ["coords"] = { + [1] = { 53.6, 21.8, 139, 900 }, + }, + }, + [182080] = { + ["coords"] = { + [1] = { 53.3, 22.1, 139, 900 }, + }, + }, + [182081] = { + ["coords"] = { + [1] = { 53.3, 22.2, 139, 900 }, + }, + }, + [182088] = { + ["coords"] = {}, + }, + [182089] = { + ["coords"] = {}, + }, + [182091] = { + ["coords"] = {}, + }, + [182096] = { + ["coords"] = {}, + }, + [182097] = { + ["coords"] = {}, + }, + [182098] = { + ["coords"] = {}, + }, + [182106] = { + ["coords"] = { + [1] = { 39.2, 76, 139, 900 }, + [2] = { 39.6, 74.5, 139, 900 }, + [3] = { 67.6, 48.8, 139, 900 }, + [4] = { 66.8, 47.7, 139, 900 }, + [5] = { 22.6, 31.9, 139, 900 }, + [6] = { 21.6, 31.3, 139, 900 }, + [7] = { 56.3, 25.3, 139, 900 }, + [8] = { 56.1, 23.7, 139, 900 }, + }, + }, + [182215] = { + ["coords"] = {}, + }, + [182216] = { + ["coords"] = {}, + }, + [182217] = { + ["coords"] = {}, + }, + [182218] = { + ["coords"] = {}, + }, + [182219] = { + ["coords"] = {}, + }, + [182220] = { + ["coords"] = {}, + }, + [182221] = { + ["coords"] = {}, + }, + [182506] = { + ["coords"] = {}, + }, + [182507] = { + ["coords"] = {}, + }, + [182509] = { + ["coords"] = {}, + }, + [182526] = { + ["coords"] = {}, + }, + [183314] = { + ["coords"] = {}, + }, + [183315] = { + ["coords"] = {}, + }, + [184057] = { + ["coords"] = {}, + }, + [184058] = { + ["coords"] = {}, + }, + [184059] = { + ["coords"] = {}, + }, + [184060] = { + ["coords"] = {}, + }, + [184061] = { + ["coords"] = {}, + }, + [184067] = { + ["coords"] = {}, + }, + [184161] = { + ["coords"] = {}, + }, + [184461] = { + ["coords"] = {}, + }, + [184846] = { + ["coords"] = {}, + }, + [184847] = { + ["coords"] = {}, + }, + [184862] = { + ["coords"] = {}, + }, + [184961] = { + ["coords"] = {}, + }, + [184962] = { + ["coords"] = {}, + }, + [184963] = { + ["coords"] = {}, + }, + [185121] = { + ["coords"] = {}, + }, + [185493] = { + ["coords"] = { + [1] = { 75.4, 67.1, 493, 900 }, + [2] = { 75.5, 67, 493, 900 }, + [3] = { 75.5, 66.9, 493, 900 }, + }, + }, + [186250] = { + ["coords"] = {}, + }, + [186263] = { + ["coords"] = {}, + }, + [186265] = { + ["coords"] = {}, + }, + [186451] = { + ["coords"] = { + [1] = { 68.2, 18.8, 148, 25 }, + }, + }, + [186881] = { + ["coords"] = {}, + }, + [190396] = { + ["coords"] = {}, + }, + [193011] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [194022] = { + ["coords"] = {}, + }, + [200001] = { + ["coords"] = {}, + }, + [200002] = { + ["coords"] = { + [1] = { 55.6, 42.7, 17, 10 }, + [2] = { 45.1, 22.5, 17, 10 }, + }, + }, + [210068] = { + ["coords"] = {}, + }, + [210210] = { + ["coords"] = {}, + }, + [210211] = { + ["coords"] = {}, + }, + [210212] = { + ["coords"] = {}, + }, + [210213] = { + ["coords"] = {}, + }, + [210214] = { + ["coords"] = {}, + }, + [210215] = { + ["coords"] = {}, + }, + [210286] = { + ["coords"] = {}, + }, + [210312] = { + ["coords"] = {}, + }, + [210313] = { + ["coords"] = {}, + }, + [210327] = { + ["coords"] = {}, + }, + [210328] = { + ["coords"] = {}, + }, + [210329] = { + ["coords"] = {}, + }, + [210330] = { + ["coords"] = {}, + }, + [210331] = { + ["coords"] = {}, + }, + [210332] = { + ["coords"] = {}, + }, + [210334] = { + ["coords"] = {}, + ["fac"] = "A", + }, + [210335] = { + ["coords"] = {}, + }, + [210336] = { + ["coords"] = {}, + }, + [210337] = { + ["coords"] = {}, + }, + [210338] = { + ["coords"] = {}, + }, + [210339] = { + ["coords"] = {}, + }, + [210341] = { + ["coords"] = {}, + }, + [210343] = { + ["coords"] = {}, + }, + [210344] = { + ["coords"] = {}, + }, + [210345] = { + ["coords"] = {}, + }, + [210346] = { + ["coords"] = {}, + }, + [210347] = { + ["coords"] = {}, + }, + [210348] = { + ["coords"] = {}, + }, + [210349] = { + ["coords"] = {}, + }, + [211016] = { + ["coords"] = {}, + }, + [211017] = { + ["coords"] = {}, + }, + [211018] = { + ["coords"] = {}, + }, + [211019] = { + ["coords"] = {}, + }, + [211020] = { + ["coords"] = {}, + }, + [211021] = { + ["coords"] = {}, + }, + [211022] = { + ["coords"] = {}, + }, + [211023] = { + ["coords"] = {}, + }, + [211024] = { + ["coords"] = {}, + }, + [211029] = { + ["coords"] = {}, + }, + [211032] = { + ["coords"] = {}, + }, + [211033] = { + ["coords"] = {}, + }, + [211034] = { + ["coords"] = {}, + }, + [211035] = { + ["coords"] = {}, + }, + [211036] = { + ["coords"] = {}, + }, + [211052] = { + ["coords"] = {}, + }, + [211053] = { + ["coords"] = {}, + }, + [211054] = { + ["coords"] = {}, + }, + [211062] = { + ["coords"] = {}, + }, + [211063] = { + ["coords"] = {}, + }, + [211064] = { + ["coords"] = {}, + }, + [211065] = { + ["coords"] = {}, + }, + [211067] = { + ["coords"] = {}, + }, + [211068] = { + ["coords"] = {}, + }, + [211084] = { + ["coords"] = {}, + }, + [300000] = { + ["coords"] = { + [1] = { 54.2, 25.3, 2597, 25 }, + }, + }, + [300057] = { + ["coords"] = { + [1] = { 65.9, 54.1, 16, 180 }, + }, + }, + [300200] = { + ["coords"] = {}, + }, + [300202] = { + ["coords"] = {}, + }, + [300203] = { + ["coords"] = {}, + }, + [300400] = { + ["coords"] = {}, + }, + [300401] = { + ["coords"] = {}, + }, + [300402] = { + ["coords"] = {}, + }, + [300403] = { + ["coords"] = {}, + }, + [300404] = { + ["coords"] = {}, + }, + [300405] = { + ["coords"] = {}, + }, + [300601] = { + ["coords"] = {}, + }, + [987658] = { + ["coords"] = {}, + }, + [3000491] = { + ["coords"] = { + [1] = { 45.3, 35.3, 361, 25 }, + }, + ["fac"] = "AH", + }, +} + +-- Source: https://raw.githubusercontent.com/shagu/pfQuest-turtle/master/db/enUS/objects-turtle.lua +RelationshipsQuestAndItemBrowserData["objects"]["enUS-turtle"] = { + [1] = "ONGOING ROLEPLAY EVENT", + [2] = "Toy Piano", + [4] = "_", + [38] = "Captain Sanders Chest", + [2844] = "Battered Chest", + [2846] = "Tattered Chest", + [3192] = "Attack Plan: Razor Hill", + [3864] = "Mighty Blaze", + [3865] = "Burning Embers", + [3866] = "Blazing Fire", + [3867] = "Mighty Blaze", + [3869] = "Mighty Blaze", + [3870] = "Mighty Blaze", + [3871] = "Mighty Blaze", + [3872] = "Mighty Blaze", + [3873] = "Mighty Blaze", + [3874] = "Blazing Fire", + [3875] = "Blazing Fire", + [3876] = "Blazing Fire", + [3877] = "Blazing Fire", + [3878] = "Blazing Fire", + [3879] = "Blazing Fire", + [3880] = "Blazing Fire", + [3881] = "Blazing Fire", + [3882] = "Blazing Fire", + [3883] = "Blazing Fire", + [3884] = "Blazing Fire", + [3885] = "Blazing Fire", + [3886] = "Blazing Fire", + [12843] = "Sunken Treasure Chest", + [19538] = "World Tree Portal", + [19539] = "Grinding Wheel", + [19540] = "Orc Manacle", + [19586] = "The Toxic Fogger", + [20668] = "_", + [22657] = "Wooden Chair", + [31445] = "Can Cook Here!", + [32349] = "_", + [33263] = "Portal to Alah\'Thalas", + [37014] = "FIZZLE\'S BATLE-READY CUTSCHEAP IF I DON\'T LOOK WHERE I CUTNO REFUNDS IF YOU LOSE YER HED", + [105180] = "Barbershop Chair", + [105181] = "Moonwell (Phasing)", + [106650] = "UL_Garbage_Bits3.mdx", + [106651] = "UL_Garbage_Bits5.mdx", + [106652] = "Mechanical Head [PH]", + [112898] = "Adventurer\'s Inn", + [112909] = "WARNING!!! DO NOT ENTER!!!", + [112910] = "Jade Mine. No entry allowed.", + [112911] = "Crescent Grove (Entrance)", + [112912] = "Crescent Grove (Exit)", + [112913] = "Crescent Grove (Collision)", + [112915] = "Black Morass (Entrance)", + [112916] = "Black Morass (Exit)", + [112917] = "Stormwind Vault (Entrance)", + [112918] = "Stormwind Vault (Exit)", + [112920] = "Scarlet Citadel (Entrance)", + [112921] = "Scarlet Citadel (Collision)", + [112923] = "Caverns of Time Placeholder Portal I (Entrance)", + [112924] = "Caverns of Time Placeholder Portal II (Entrance)", + [112940] = "Hateforge Quarry (Entrance)", + [112941] = "Hateforge Quarry (Exit)", + [140908] = "_", + [142075] = "_", + [142089] = "_", + [142093] = "_", + [142094] = "_", + [142095] = "_", + [142102] = "Dwarven Mailbox", + [142103] = "_", + [142109] = "Ornamental Mailbox", + [142110] = "_", + [142111] = "_", + [142117] = "_", + [142119] = "_", + [142180] = "Jintha\'Alor Altar", + [143981] = "_", + [143982] = "_", + [143983] = "Carved Mailbox", + [143984] = "_", + [143985] = "_", + [143986] = "_", + [143987] = "_", + [143988] = "_", + [143989] = "_", + [143990] = "_", + [144011] = "_", + [144112] = "Mechanical Mailbox", + [144125] = "_", + [144126] = "_", + [144127] = "_", + [144128] = "_", + [144129] = "_", + [144130] = "_", + [144131] = "Alliance Mailbox", + [144179] = "_", + [144570] = "_", + [153578] = "_", + [153716] = "_", + [157637] = "_", + [160842] = "_", + [163313] = "_", + [163645] = "_", + [164618] = "_", + [164840] = "_", + [171556] = "_", + [171699] = "_", + [171752] = "_", + [173047] = "_", + [173221] = "Horde Mailbox", + [174860] = "Doodad_MediumBrazier02", + [174861] = "Doodad_SmallBrazier01", + [175325] = "Caelan\'s Rest Wanted Board", + [175568] = "Caelan\'s Memorial", + [175590] = "_", + [175704] = "Signed Letter", + [175864] = "_", + [176250] = "Windrunner", + [176260] = "Portal to Stonard", + [176319] = "_", + [176324] = "_", + [176364] = "Boat to Stormwind", + [176366] = "Pet Fish", + [176399] = "Portal to Theramore", + [176404] = "_", + [176592] = "_", + [176901] = "Gate", + [176982] = "Andorhal", + [176983] = "Andorhal", + [176994] = "Hearthglen", + [177044] = "Damaged Mailbox", + [177047] = "Gate", + [177048] = "Gate", + [177049] = "Gate", + [177203] = "Karazhan Crypt Gate", + [177245] = "Gate", + [177246] = "Gate", + [177247] = "Gate", + [177248] = "Gate", + [177249] = "Gate", + [177250] = "Gate", + [177251] = "Gate", + [177252] = "Gate", + [177253] = "Gate", + [177254] = "Gate", + [177255] = "Gate", + [177256] = "Gate", + [177300] = "Karazan Crypt: Tomb Bats Waiting", + [177301] = "Karazan Crypt: Tomb Bats Active", + [177302] = "Necrotic Rune", + [177303] = "Alarus Vortex Doodad", + [177304] = "Karazan Crypt: Alarus (Spawned)", + [177305] = "Necrotic Rune", + [177306] = "Necrotic Rune", + [177307] = "Necrotic Rune", + [177308] = "Necrotic Rune", + [177309] = "Necrotic Rune", + [177310] = "Karazan Crypt: Remains Trigger", + [177311] = "Karazan Crypt: Remains Active", + [177312] = "Tomb of the Unrepetant", + [178124] = "_", + [178248] = "_", + [178644] = "_", + [178963] = "_", + [179311] = "Large Time Spark", + [179312] = "Small Time Spark", + [179313] = "Strange Device", + [179598] = "Meeting Stone", + [179865] = "Meeting Stone", + [179895] = "Primitive Mailbox", + [179896] = "_", + [179900] = "_", + [179919] = "Gate", + [180087] = "Banner", + [180211] = "_", + [180213] = "_", + [180336] = "Pet Rock", + [180408] = "_", + [180428] = "_", + [180429] = "_", + [180451] = "_", + [180523] = "_", + [180659] = "_", + [180660] = "Drop-Off Point", + [180671] = "_", + [180672] = "_", + [180863] = "Firework Rocket, Type 1 Purple BIG", + [180867] = "_", + [180891] = "_", + [180892] = "_", + [180893] = "_", + [180894] = "_", + [180895] = "_", + [180896] = "_", + [180897] = "_", + [181013] = "Fire", + [181107] = "Lightwell", + [181214] = "_", + [181236] = "_", + [181357] = "Smoke", + [181446] = "Bonfire", + [181448] = "Signaling Gem Aura", + [181450] = "Brazier", + [181455] = "Brazier", + [181574] = "Glowing Crystal", + [181580] = "Karazhan Crypt (Entrance)", + [181581] = "Karazhan Crypt (Exit)", + [181582] = "Karazhan Crypt (Collision)", + [181583] = "Ancient Thalassian Tablet", + [181584] = "Thalo\'s Skeleton", + [181600] = "Rune", + [181620] = "Unopened Crate", + [181639] = "_", + [181646] = "Ship - Auberdine to Stormwind", + [181734] = "Campfire", + [181735] = "Bonfire", + [181736] = "Campfire", + [181737] = "Campfire", + [181738] = "Meat Rack", + [181757] = "Stillpine Grain", + [181787] = "Campfire", + [181839] = "Sealed Tome", + [181851] = "Campfire", + [181853] = "_", + [181886] = "Firework Rocket, Promotion", + [181888] = "Campfire", + [182059] = "Campfire", + [182066] = "Lauranna\'s Guide to Zangarmarsh Plants", + [182114] = "Corrupted Crystal Aura", + [182211] = "Fire (Small)", + [182483] = "Uther Shrine Lightbeam", + [182485] = "Stolen Cargo", + [182535] = "Campfire", + [182536] = "Campfire", + [182564] = "Piege autel de l\'Aldor", + [182944] = "Bonfire", + [182945] = "Legion Stone Aura", + [183343] = "Warboss Nekrogg\'s Orders", + [183356] = "Theatric Lightning", + [183750] = "Chair", + [183751] = "Chair", + [183752] = "Chair", + [183754] = "Chair", + [183755] = "Chair", + [183796] = "Fire", + [183797] = "Smoke", + [183894] = "Bonfire", + [183987] = "Rocket Fire", + [183988] = "Rocket Smoke", + [183991] = "Weapon Rack", + [184006] = "Temporal Prison", + [184017] = "Bonfire", + [184092] = "Legion Communicator Aura", + [184119] = "Scrying Aura", + [184164] = "Karazhan Gatehouse Portcullis", + [184287] = "Campfire", + [184304] = "Locked Chest", + [184315] = "Bloodmaul Brew", + [184332] = "Tome of Scrying", + [184530] = "Chair", + [184531] = "Chair", + [184532] = "Chair", + [184561] = "Protectorate Disruptor", + [184616] = "Anvil", + [184617] = "Forge", + [184618] = "Cooking Fire", + [184644] = "Bonfire", + [184645] = "Bonfire", + [184646] = "Bonfire", + [184647] = "Bonfire", + [184658] = "Eye of the Citadel Aura", + [184659] = "Mysteris of the Light Aura", + [184661] = "Smoke Beacon", + [184664] = "Shadow Sight", + [184683] = "Bonfire", + [184691] = "Shadowmoon Tuber", + [184814] = "Sealed Coffin", + [184816] = "Campfire", + [184858] = "Bag A", + [184863] = "Barrel A", + [184954] = "Manaforge Smoke", + [184964] = "Speed Buff", + [184965] = "Restoration Buff", + [184966] = "Berserk Buff", + [184970] = "Speed Buff", + [184971] = "Restoration Buff", + [184972] = "Berserk Buff", + [184973] = "Speed Buff", + [184974] = "Restoration Buff", + [184975] = "Berserk Buff", + [184976] = "Speed Buff", + [184977] = "Restoration Buff", + [184978] = "Berserk Buff", + [184980] = "Felhound Poo", + [185011] = "Multi-Spectrum Light Trap", + [185155] = "Rocknail Flayer Carcass", + [185294] = "Mounted Boulder\'mok Head", + [185314] = "[DND]Dragon Totem", + [185317] = "Warp-Gate Small Fire", + [185318] = "Warp-Gate Smoke", + [185319] = "Warp-Gate Big Fire", + [185432] = "Wooden Chair", + [185474] = "Cage", + [185498] = "Campfire", + [185520] = "Fel Fire", + [185527] = "Dirt Mound", + [185529] = "Brazier", + [185564] = "Aura Trap Purple Tall", + [185578] = "Aura Trap Purple Tall", + [185579] = "Aura Trap Purple Tall", + [185582] = "Hanging, Square, Large, Christmas", + [185590] = "Sethekk Halls Moonstone", + [185595] = "Test Rift", + [185893] = "Delicious Mutton", + [185916] = "Cage Trap", + [185917] = "Doodad_PVP_Lordaeron_Door02", + [185918] = "Doodad_PVP_Lordaeron_Door01", + [185919] = "Doodad_PVP_Sunwellraid_Gate_03", + [185948] = "Simon Game Aura Blue Large", + [185949] = "Simon Game Aura Green Large", + [185950] = "Simon Game Aura Red Large", + [185951] = "Simon Game Aura Yellow Large", + [186173] = "Brewfest Keg Breakable", + [186217] = "BREWFEST - Coming Soon!", + [186218] = "Moon Well", + [186252] = "Fence", + [186253] = "DARKMOON FAIRE - COMING SOON", + [186287] = "Blackhoof Cage", + [186288] = "Raptor Bait", + [186418] = "Don de Mordant", + [186420] = "Syndicate Documents", + [186425] = "Torche en sorbier", + [186465] = "Lighthouse Beam", + [186478] = "Super Brew Stein", + [186720] = "Fire Effigy", + [186734] = "Amani Charm Box", + [186736] = "Money Bag", + [186739] = "Amani Charm Box", + [186740] = "Amani Charm Box", + [186741] = "Amani Charm Box", + [186744] = "Amani Treasure Box", + [187072] = "Razorthorn Root", + [187115] = "Alchemy Lab", + [187252] = "Campfire", + [187254] = "Rolled Scroll", + [187272] = "Generic Hoofprint", + [187273] = "Suspicious Hoofprint", + [187559] = "Horde Bonfire", + [187564] = "Alliance Bonfire", + [187576] = "Hanging, Square, Small - MFF", + [187653] = "Standing, Post - MFF", + [187667] = "Hanging, Tall/Thin, Small - MFF", + [187708] = "Torch Target Brazier", + [187918] = "Twilight Bonfire", + [187920] = "Alliance Bonfire", + [187923] = "Alliance Bonfire", + [187925] = "Alliance Bonfire", + [187926] = "Alliance Bonfire", + [187927] = "Alliance Bonfire", + [187928] = "Alliance Bonfire", + [187947] = "Horde Bonfire", + [187948] = "Horde Bonfire", + [187950] = "Horde Bonfire", + [187951] = "Horde Bonfire", + [187952] = "Horde Bonfire", + [187953] = "Horde Bonfire", + [187964] = "Horde Bonfire", + [187972] = "Horde Bonfire", + [187973] = "Horde Bonfire", + [187988] = "Twilight Torch", + [187989] = "Twilight Torch", + [188174] = "Midsummer Music Doodad", + [188214] = "Bonfire", + [188415] = "Orb of the Blue Flight", + [190395] = "Cauldron Smoke", + [190549] = "Zeppelin - Orgrimmar to Thunder Bluff", + [190550] = "Ship - Sparkwater Port to Revantusk Village", + [190552] = "Zeppelin - Orgrimmar to Kargath", + [194023] = "Nibu\'s Cage", + [200000] = "Fel Orc Encampment Custom Area", + [200003] = "Torch", + [210342] = "Glyphed Crystal", + [211085] = "Cheery\'s Floatie", + [211086] = "Wormhole", + [223363] = "Blood Ring Banner", + [223364] = "Bloodstone", + [280400] = "The Angler\'s Throne", + [300058] = "TEMP Greater Moonlight", + [300407] = "Orb of the Infinite Imps", + [300408] = "Orb of Gnomification", + [300409] = "Phantom\'s Embrace", + [300410] = "Mini Me Potion", + [300411] = "Bone Milk", + [300412] = "Concoction of Rotting Mind", + [300413] = "Book of Levitation", + [300414] = "Orb of Translocation", + [300415] = "Book of Ratocalypse", + [300416] = "Book of Haste", + [300417] = "Book of Doom (DO NOT TOUCH, KHADGAR)", + [300418] = "The Book of Boogie (PROPERTY OF KHADGAR) ", + [300419] = "Book of Combustion", + [300420] = "Volatile Fungus", + [300500] = "Event Vael", + [300510] = "WorldwmoDungeonOL_OgreHutsOgre_GuardTower.wmo", + [300511] = "WorldwmoDungeonOL_OgreHutsOgre_Hut.wmo", + [300512] = "WorldwmoDungeonOL_OgreHutsOgre_Hut_Huge.wmo", + [300513] = "WorldwmoDungeonOL_OgreHutsOgre_Hut2Story.wmo", + [300514] = "WorldwmoDungeonOL_OgreHutsOgre_HutBig.wmo", + [300515] = "worldwmodungeon estgnome_shrinkgnome_shrink.wmo", + [300516] = "WorldExpansion03DoodadsGenericAlliance_Submarine_Door.mdx", + [300517] = "NEWSTYLEVLADWMOFEUDALSHIPfeudalship.wmo", + [300518] = "NEWSTYLEVLADLAMPSTREET.mdx", + [300519] = "SUNWELLPASSIVEDOODADSSUNWELLSunwell_FX.mdx", + [300520] = "SUNWELLPASSIVEDOODADSSUNWELLSunwellRaid_Gate_02.mdx", + [300521] = "SUNWELLPASSIVEDOODADSSUNWELLSunwellRaid_Gate_03.mdx", + [300522] = "DalaranDalaran_Painting_01.mdx", + [300523] = "DalaranDalaran_Painting_03.mdx", + [300524] = "DalaranDalaran_Painting_11.mdx", + [300525] = "DalaranDalaran_Painting_12.mdx", + [300526] = "DalaranDalaran_Painting_13.mdx", + [300530] = "Winterax Supplies", + [300531] = "Stolen Weapon Plans", + [300532] = "Human Tombstone", + [379545] = "Half-Buried Treasure Chest", + [379546] = "Meeting Stone", + [379547] = "Meeting Stone", + [379548] = "Meeting Stone", + [379549] = "Growing Big and Strong: A Frosty Diet for the Average Snowman", + [379550] = "Earthen Lieutenant\'s Trove", + [380000] = "Anniversary Gift Box", + [380001] = "Anniversary Launcher", + [987654] = "Gri\'lek, with the Iron Blood", + [987655] = "Hazza\'rah, the Dreamweaver", + [987656] = "Renataki, of the Thousand Blades", + [987657] = "Wushoolay, the Storm Witch", + [987659] = "Siege Bomb", + [1000000] = "Pile of Wood", + [1000001] = "Tent (Human)", + [1000002] = "Fisherman\'s Boat", + [1000003] = "Fishing Boat (effect)", + [1000005] = "Raven Trade Co.", + [1000006] = "Door", + [1000007] = "Duskwood Bed", + [1000008] = "Player\'s House", + [1000009] = "Alliance Tower", + [1000010] = "Troll\'s Watch Tower", + [1000011] = "Horde Tower", + [1000012] = "Pillow", + [1000013] = "Big Bookshelf", + [1000014] = "Small Bookshelf", + [1000015] = "Wall Torch", + [1000016] = "Big Planet Painting", + [1000017] = "Small Planet Painting", + [1000018] = "Scroll Map", + [1000019] = "Duskwood Wardrobe", + [1000020] = "Treasure Chest", + [1000021] = "Big Fucking Ship", + [1000022] = "Valentine\'s Blanket", + [1000023] = "Fruit Bowl (Mixed)", + [1000027] = "Big Fire", + [1000028] = "The Red Fist", + [1000029] = "Symbol of the Light", + [1000030] = "Paladin Statue", + [1000031] = "Duskwood Bush 1", + [1000032] = "Stone Moonwell", + [1000033] = "Westfall Wagon", + [1000034] = "Scarecrow", + [1000035] = "Water Basin", + [1000036] = "Simple Wooden Door", + [1000037] = "Cauldron", + [1000038] = "Weapon Crate", + [1000039] = "Purple Crystal", + [1000040] = "Open Book", + [1000041] = "Nightmare Stone", + [1000042] = "Stove", + [1000043] = "Bush Fadeleaf", + [1000044] = "Bush Wntersbite", + [1000045] = "Shimmerweed Bush", + [1000050] = "Outstanding Flying Machine BNX-92", + [1000051] = "Racetrack Speed Bonus", + [1000052] = "Racetrack Freezing Trap", + [1000055] = "Speedy\'s Jukebox", + [1000060] = "Portal to Stormwind", + [1000061] = " Big Snowy Christmas Tree", + [1000062] = "Turtle WoW Christmas Tree", + [1000063] = "WINTRADING IS FORBIDDEN", + [1000064] = "lightSkeletonSitting03", + [1000065] = "Elwynn Lantern Post", + [1000067] = "Snowy Tree", + [1000068] = "Green Tree", + [1000069] = "Stone Door", + [1000070] = "Small Winter Veil Tree", + [1000071] = "Roast Boar", + [1000072] = "Pumpkin Patch", + [1000073] = "Cache of Explosives", + [1000074] = "Big Winter Veil Tree", + [1000077] = "KABOOM-Box X23B76", + [1000079] = "Stormwind Fashion House", + [1000080] = "Barbershop", + [1000081] = "Wormhole", + [1000082] = "Stolen Elwynn Pumpkin", + [1000083] = "Refreshment Portal", + [1000084] = "Refreshment Table", + [1000087] = "Soulwell Portal", + [1000089] = "Soulwell", + [1000090] = "Runed Stone", + [1000091] = "Berry Bush ", + [1000092] = "Wooden Chest", + [1000093] = "General Book Stack ", + [1000094] = "Waterfall 1", + [1000095] = "Waterfall 1", + [1000096] = "Crate ", + [1000097] = "Silvepine Bush", + [1000098] = "Catapult", + [1000099] = "Blue Lorderon Banner", + [1000100] = "Water Rift", + [1000101] = "Nox Portal top", + [1000102] = "Night Elf Lantern", + [1000103] = "Waterfall 1", + [1000104] = "Waterfall 1", + [1000105] = "Nox Portal", + [1000106] = "Water Rift", + [1000107] = "Bubbles", + [1000108] = "The Shell", + [1000167] = "Oil Canister", + [1000168] = "Small Wooden Crate", + [1000171] = "Incompleted Interrogation Report", + [1000172] = "Prison Guards\'s Coffee Mug", + [1000173] = "Iron Maiden", + [1000176] = "Dirt Mound", + [1000177] = "Gunther\'s Lockbox", + [1000191] = "Birth of Durotar Labor Union I", + [1000192] = "Birth of Durotar Labor Union II", + [1000193] = "Birth of Durotar Labor Union III", + [1000194] = "Birth of Durotar Labor Union IV", + [1000195] = "Nox Portal top", + [1000200] = "Purple Crystal", + [1000201] = "Red Crystal", + [1000202] = "Blue Crystal", + [1000215] = "Cloth Spool Yellow", + [1000216] = "Cloth Spool Red", + [1000217] = "Alliance Food Market", + [1000218] = "Cloth Supplies", + [1000219] = "Elwynn Bush Large", + [1000220] = "Stormwind Fountain Trigger", + [1000221] = "Grape Bucket", + [1000222] = "Arathi Plant", + [1000224] = "Candelabra Standing", + [1000225] = "Song Flower", + [1000226] = "Night Dragon", + [1000227] = "Warning!", + [1000228] = "Wisp", + [1000229] = "Apple", + [1000230] = "Orange", + [1000231] = "Nightelf Lantern", + [1000232] = "Bowl of Apples", + [1000233] = "Wisps", + [1000234] = "Dog House", + [1000235] = "Horde Tent", + [1000236] = "Tent (Orc)", + [1000237] = "Small Basket", + [1000238] = "Sinrek, \"The Doc\"", + [1000239] = "Sinrek, \"The Doc\"", + [1000241] = "GM Island Gazebo", + [1000245] = "High General Abbendis", + [1000246] = "Vows of the Crusade", + [1000247] = "The Light, Our Bastion", + [1000249] = "Eldarath Ley-Shard", + [1000250] = "Razlik\'s Tools", + [1000251] = "House Smoke", + [1000252] = "Scrying Bowl", + [1000253] = "Barrens Bush", + [1000254] = "Barrens Bush", + [1000255] = "Orc Brazier Lamppost", + [1000256] = "Shaman Stone", + [1000257] = "Lumber Pile Small", + [1000258] = "Lumber Pile Large", + [1000259] = "Log Machine", + [1000260] = "Stormwind Mage Porta", + [1000261] = "Duskwood Mausoleum", + [1000262] = "Little Bush 2", + [1000263] = "Little Bush 4", + [1000264] = "Statue Priest", + [1000265] = "Tauren Log Bench", + [1000266] = "Mana Rift", + [1000267] = "Bramble Staff", + [1000268] = "Cave Mine Car Wrecked", + [1000269] = "Holding Pen Bamboo Small", + [1000270] = "Cave", + [1000271] = "G_VOODOOTROLLFORCEFIELD", + [1000272] = "Bush Blindweed", + [1000273] = "Karazahn Crate", + [1000274] = "Gnome Structural SpotLight", + [1000275] = "Landing Pad", + [1000276] = "Deadwind Pass Tree", + [1000277] = "Outland Monolith", + [1000278] = "Runed Tablet", + [1000279] = "River Wheel", + [1000280] = "Ruin 01", + [1000281] = "Ruin 02", + [1000282] = "Ruin 03", + [1000283] = "Night Elf Ruins 04", + [1000284] = "Blue Crystal", + [1000285] = "GM Island Bell", + [1000286] = "CORRUPTED CRYSTAL VINE", + [1000287] = "Force Field (collision problems)", + [1000288] = "Arena Flag", + [1000289] = "Magic Vortex", + [1000290] = "Lightshaft Large", + [1000291] = "Night Elf Lantern Hanging", + [1000292] = "Hive Fireflie", + [1000293] = "Emerald Dream Catcher", + [1000294] = "Altar Of Souls", + [1000295] = "Dwarven Flying Machine NX-001", + [1000296] = "Holding Pen Bamboo large", + [1000300] = "Orgrimmar Guild Vault", + [1000302] = "Stormwind Guild Vault", + [1000307] = "Empty Flower Planter Small", + [1000308] = "Empty Flower Planter Big", + [1000309] = "Stormwind Apple Bob", + [1000310] = "Pile of Gold Coins", + [1000311] = "Theres Gold In That There Fountain", + [1000312] = "Something sparkling in the bottom...", + [1000313] = "Redwater Syndicate", + [1000314] = "Quarry a coin in Orgrimmar Waterfall!", + [1000315] = "Water Pump", + [1000316] = "Troll Pottery", + [1000317] = "Burnt Outpost", + [1000318] = "Elf Crate", + [1000319] = "Argent Dawn Banner", + [1000320] = "Plant the Blessed Seed into dirt mound.", + [1000321] = "Argent Down Yellow Aura", + [1000322] = "Green Tree", + [1000323] = "Green Tree", + [1000324] = "Green Tree", + [1000325] = "Green Tree", + [1000326] = "Green Tree", + [1000327] = "Green Tree", + [1000328] = "Green Tree", + [1000329] = "Green Tree Final", + [1000330] = "Holy Wings Yellow Aura", + [1000333] = "Goblin Brainwashing Device", + [1000334] = "Simple Wooden Planter", + [1000335] = "Planter Mud", + [1000336] = "Little sproutling. Looks healthy.", + [1000337] = "Little sproutling. It yearns for fertile soil!", + [1000338] = "Little pumpkin. Watch it grow!", + [1000339] = "Cute pumpkin looks thirsty!", + [1000340] = "Pumpkin is getting bigger!", + [1000341] = "Medium pumpkin. Water it!", + [1000342] = "Ripe, juicy pumpkin. Ready to pick!", + [1000343] = "Small berry shrub. Looks promising.", + [1000344] = "Small berry shrub. Needs fertile soil.", + [1000345] = "Berry bush growing. Patience...", + [1000346] = "Berry bush growing. Water it!", + [1000347] = "Berry bush is thriving!", + [1000348] = "Berry bush needs water!", + [1000349] = "Bush full of berries. Time to harvest!", + [1000350] = "Little sproutling. Nice and healthy!", + [1000351] = "Little sproutling needs fertile soil!", + [1000352] = "Small watermelon. Growing steadily.", + [1000353] = "Small watermelon. Water it well!", + [1000354] = "Medium watermelon. Getting bigger!", + [1000355] = "Medium watermelon. Needs more water!", + [1000356] = "Big, juicy watermelon ready to harvest!", + [1000357] = "Splash!", + [1000358] = "Little mushrooms. Looking cute.", + [1000359] = "Germinating slowly. Mushrooms need fertile soil.", + [1000360] = "Mushrooms are sprouting. Patience...", + [1000361] = "Small mushrooms need some water.", + [1000362] = "Mushrooms are germinating!", + [1000363] = "Mushrooms are growing! Water them!", + [1000364] = "Delicious, chunky mushrooms ready to harvest.", + [1000366] = "Golden Moon", + [1000370] = "Ripe Garden Pumpkin", + [1000371] = "Mountain Berry Bush", + [1000372] = "Ripe Garden Watermelon", + [1000380] = "Bone Chew Toy", + [1000381] = "Chewed Toy", + [1000383] = "Seaweed-covered Footlocker", + [1000385] = "Fake Black Lotus", + [1000386] = "Sevirian, \"The Legendary Hunter\"", + [1000388] = "Emilol", + [1000389] = "Kaja\'s Ammunition Crate", + [1000390] = "Shadowleaf Infantry Outpost", + [1000391] = "Creaking Mailbox", + [1000395] = "Brannol\'s Sewing Kit", + [1000396] = "Scepter of Defiance", + [1000400] = "Spear Tip Inn", + [1000450] = "Portal to Ironforge", + [1000451] = "Portal to Darnassus", + [1000456] = "Tent (Night Elf)", + [1000457] = "Tent (Dwarf)", + [1000458] = "Tent (Gnome)", + [1000459] = "Tent (High Elf)", + [1000460] = "Tent (Troll)", + [1000461] = "Tent (Tauren)", + [1000462] = "Tent (Undead)", + [1000463] = "Tent (Goblin)", + [1000464] = "Ape Cage", + [1000500] = "Pile of Glinting Muck", + [1000501] = "Water-Weaving and Command", + [1000502] = "Brightwater Lockbox", + [1000503] = "Sealed Trunk", + [1000504] = "WANTED!", + [1000510] = "Sealed Documents Crate", + [1000511] = "Chest of Discarded Goods", + [1000512] = "Demon Gate", + [1100000] = "Survival Tent Alliance", + [1100001] = "Survival Tent Horde", + [1771652] = "Arena Door", + [1771653] = "Arena Door (Passive)", + [1772000] = "Dry Fire Wood", + [1772001] = "Oil Canister", + [1772003] = "Summer Dew", + [1772004] = "Life\'s Dawn", + [1772005] = "Vulpa Bloom", + [1772010] = "Smultron\'s Plushie", + [1772011] = "Plushy Shiri", + [1772012] = "Aurelian\'s Plushie", + [1772013] = "Xerron\'s Voodoo Doll", + [1772014] = "Plushy Momo", + [1772015] = "Laughadin: What if we had a taunt?", + [1772016] = "Kilan: Damage Dealing for Dummies", + [1772020] = "Meeting Stone", + [1772021] = "Let\'s do this ! First Raid !Lucifron and Magmadar Defeated 7/21/19.", + [1772022] = "Many Whelps and many wipes.Onyxia Defeated 11/16/19.", + [1772023] = "Boldly, We Sought the Power of Ragnaros.Ragnaros Defeated 12/15/19.", + [1772024] = "Who\'s the Lord now ?Nefarian Defeated 6/28/20.", + [1772025] = "The day Momo died 35 times and C\'Thun once.C\'Thun Defeated 2/13/21.", + [1772027] = "Meeting Stone", + [1772028] = "Ragnar Magnus", + [1772030] = "Grim Batol Memorial", + [1772031] = "The Gate of Desolation", + [1872030] = "Meeting Stone", + [2000001] = "World Generic PassiveDoodads SummerFestival SummerFest_IceStone_01.mdx", + [2000002] = "World wmo Azeroth Buildings Duskwood_Blacksmith Duskwood_Blacksmith.wmo", + [2000003] = "World wmo Dungeon KL_AhnQiraj 40MansSilithidHall.wmo", + [2000004] = "World wmo Kalimdor Buildings OrcGreatHall AbandonedOrcGreatHall.wmo", + [2000005] = "World wmo Dungeon KL_AhnQiraj 40ManMainBossEast.wmo", + [2000006] = "World wmo Kalimdor Buildings OrcBarracks AbandonedOrcBarracks.wmo", + [2000007] = "World wmo Dungeon KL_AhnQiraj 40ManMainBoss2.wmo", + [2000008] = "World wmo Dungeon KL_AhnQiraj 40ManEnterance.wmo", + [2000009] = "World wmo Dungeon KL_AhnQiraj 40ManMainBoss1.wmo", + [2000010] = "World wmo Kalimdor Buildings OrcBlacksmith AbandonedOrcBlacksmith.wmo", + [2000011] = "World wmo Kalimdor Buildings OrcKennel AbandonedOrcKennel.wmo", + [2000012] = "World Generic DarkIronDwarf Passive Doodads Crates DarkIronCrateBroken01.mdx", + [2000013] = "World Expansion01 Doodads Sunwell Passivedoodads Sunwell Sunwell_Replica.mdx", + [2000014] = "World Generic PassiveDoodads SummerFestival SummerFest_Banner_01.mdx", + [2000015] = "World Generic PassiveDoodads SummerFestival SummerFest_Pavilion_01.mdx", + [2000016] = "World Kalimdor Silithus PassiveDoodads Crystals silithus_crystal_masterbase.mdx", + [2000017] = "World Kalimdor Silithus PassiveDoodads Crystals Silithus_commCrystal_base02.mdx", + [2000018] = "World Kalimdor Silithus PassiveDoodads Crystals Silithus_commCrystal_base03.mdx", + [2000019] = "World Azeroth Elwynn PassiveDoodads BattleGladePolearmSkull BattleGladePolearmSkull.mdx", + [2000020] = "World Kalimdor Winterspring PassiveDoodads FrostSaberRock WinterSpringFrostSaberRock.mdx", + [2000021] = "World Expansion01 Doodads Sunwell Passivedoodads Sunwell FrostwurmFellfire_Birth.mdx", + [2000022] = "World Kalimdor Winterspring PassiveDoodads FrozenWaterFalls FrozenWaterfall02.mdx", + [2000023] = "SPELLS SUNWELL_FIRE_BARRIER_EXT.MDX", + [2000024] = "World Generic PassiveDoodads SummerFestival SummerFest_Brazer_NoCollision.mdx", + [2000025] = "World Goober G_Book01_Brown.mdx", + [2000026] = "World Expansion01 Doodads Generic BloodElf Planetarium BE_Planetarium_Active.mdx", + [2000027] = "World Expansion01 Doodads Shattrath Passivedoodads BattlemasterPedestal BattlemasterPedestal.mdx", + [2000028] = "WORLD GENERIC TAUREN PASSIVE DOODADS DRUMS TAURENDRUMMED01.MDX", + [2000029] = "World Expansion01 Doodads Generic Draenei crashplate DR_crashplate01.mdx", + [2000030] = "WORLD EXPANSION01 DOODADS SUNWELL PASSIVEDOODADS SUNWELL SUNWELLRAID_GATE_04.MDX", + [2000031] = "WORLD EXPANSION01 DOODADS SUNWELL PASSIVEDOODADS SUNWELL SUNWELL_ICE_BARRIER.MDX", + [2000032] = "World Generic Human Passive Doodads Books BookSmall01.mdx", + [2000033] = "World Generic Human Passive Doodads Books BookSmall03.mdx", + [2000034] = "World Generic Human Passive Doodads Books BookSmall05.mdx", + [2000035] = "World wmo Azeroth Collidable Doodads Redridge RedridgeDocks RedRidgeSmallDock01.wmo", + [2000036] = "World wmo transports Crashed_zeppelin CrashedZeppelinPiece_01.wmo", + [2000037] = "World Generic PassiveDoodads SummerFestival SummerFest_Candle_01.mdx", + [2000038] = "World Generic PassiveDoodads SummerFestival SummerFest_Candle_02.mdx", + [2000039] = "World Goober G_BearTrapReverse.mdx", + [2000040] = "World Goober G_IceSpike_Impact.mdx", + [2000041] = "World Kalimdor Silithus PassiveDoodads Ruins SilithusRuinsObelisk03.mdx", + [2000042] = "World Kalimdor Silithus PassiveDoodads Ruins SilithusRuinsObelisk02.mdx", + [2000043] = "World Kalimdor Silithus PassiveDoodads Crystals Silithus_commCrystal_base01.mdx", + [2000044] = "WORLD GENERIC HUMAN PASSIVE DOODADS SIGNS CHEESESHOP01.MDX", + [2000045] = "WORLD GENERIC HUMAN PASSIVE DOODADS SIGNS BANK01.MDX", + [2000046] = "WORLD GENERIC HUMAN PASSIVE DOODADS SIGNS WINESHOPSIGN01.MDX", + [2000047] = "WORLD GENERIC HUMAN PASSIVE DOODADS BANNERS DWARVENBANNER01.MDX", + [2000048] = "WORLD GENERIC HUMAN PASSIVE DOODADS BANNERS WARRIORBANNER01.MDX", + [2000049] = "WORLD GENERIC HUMAN PASSIVE DOODADS BANNERS NIGHTELF01.MDX", + [2000050] = "WORLD GENERIC HUMAN PASSIVE DOODADS BANNERS MAGICBANNER01.MDX", + [2000051] = "World Generic Goblin PassiveDoodads GoblinTents GoblinTent01.mdx", + [2000052] = "World Generic Goblin PassiveDoodads GoblinTents GoblinTent02.mdx", + [2000053] = "World Generic Goblin PassiveDoodads GoblinTents GoblinTent03.mdx", + [2000054] = "World Generic Goblin PassiveDoodads GoblinTents GoblinTent04.mdx", + [2000055] = "World Generic Goblin PassiveDoodads GoblinTents GoblinTent05.mdx", + [2000056] = "World Generic Goblin PassiveDoodads GoblinTents GoblinTent07.mdx", + [2000057] = "World KhazModan Blackrock PassiveDoodads GolemParts CannonGolemArm.mdx", + [2000058] = "World Generic Human Passive Doodads ShopCounter DuskwoodShopCounter.mdx", + [2000059] = "World Expansion01 Doodads Generic Tradeskill JewelCrafting JewelCraft_Grinder01.mdx", + [2000060] = "World Generic PassiveDoodads SummerFestival SummerFest_Bonfire_Base_01.mdx", + [2000061] = "World Generic Collision Collision_PCSize.mdx", + [2000062] = "World Generic Human Passive Doodads Armor ArmorStand.mdx", + [2000063] = "World Generic Human Passive Doodads Armor ArmorMailHangingBlueLong.mdx", + [2000064] = "World Generic Human Passive Doodads Armor ArmorStandMailCoifBlue.mdx", + [2000065] = "World Generic Human Passive Doodads Armor ArmorBreastplateTrim.mdx", + [2000066] = "World Generic Human Passive Doodads Armor ArmorHelmTrim.mdx", + [2000067] = "World Generic Human Passive Doodads Armor ArmorLeatherShirtBrown.mdx", + [2000068] = "World Generic Human Passive Doodads Armor ArmorLeatherHelmBrown.mdx", + [2000069] = "World Generic Human Passive Doodads Clothing HangingCloakRed.mdx", + [2000070] = "World Kalimdor Orgrimmar PassiveDoodads thralls_throne.mdx", + [2000071] = "World Generic PassiveDoodads GrayStone GrayStone01.mdx", + [2000072] = "World Generic Human Passive Doodads Books BookSmallOpen03.mdx", + [2000073] = "World KhazModan Uldaman PassiveDoodads Debris UldamanScrollDebris03.mdx", + [2000074] = "World Expansion01 Doodads ZulAman Ruins TrollRuins_ZulAman_03.mdx", + [2000075] = "World Expansion01 Doodads Coilfang Passivedoodads mushrooms ZangarMushroom07_BlueGlow.mdx", + [2000076] = "World Generic Tauren Passive Doodads TaurenRugs TaurenRug01.mdx", + [2000077] = "World Generic Tauren Passive Doodads TaurenRugs TaurenRug02.mdx", + [2000078] = "World Lordaeron Plagueland PassiveDoodads Cages PlaugelandsCage01_ActiveTop.mdx", + [2000079] = "World Lordaeron Plagueland PassiveDoodads Cages PlaugelandsCage01_ActiveBase.mdx", + [2000080] = "World Goober G_GnomeTerminal_Collision.mdx", + [2000081] = "World Generic PassiveDoodads DeathSkeletons HumanFemaleDeathSkeleton.mdx", + [2000082] = "World Kalimdor Mauradon PassiveDoodads Crystals RubyCrystal01.mdx", + [2000083] = "WORLD EXPANSION01 DOODADS SUNWELL PASSIVEDOODADS SUNWELL SUNWELL_BOSSFORCEFIELD.MDX", + [2000084] = "World Expansion01 Doodads TheExodar Passivedoodads Shamen_Stones Draenei_Shamen_Stones_T1.mdx", + [2000085] = "World KhazModan Ironforge PassiveDoodads SlimeJars SlimeJar03.mdx", + [2000086] = "World KhazModan Blackrock PassiveDoodads GolemParts CannonGolemBust.mdx", + [2000087] = "World KhazModan Blackrock PassiveDoodads GolemParts CannonGolemFoot.mdx", + [2000088] = "WORLD EXPANSION01 DOODADS SUNWELL PASSIVEDOODADS SUNWELL SUNWELL_BOSSCOLLISION01.MDX", + [2000089] = "WORLD EXPANSION01 DOODADS SUNWELL PASSIVEDOODADS SUNWELL SUNWELL_BOSSCOLLISION02.MDX", + [2000090] = "World Azeroth Karazahn PassiveDoodads Bonfire KarazahnBonFireBlue01.mdx", + [2000091] = "World SkillActivated TradeskillNodes Yoggthorite_Miningnode_01.mdx", + [2000092] = "World wmo Azeroth Buildings GuardTower GuardTower_damaged_construction.wmo", + [2000093] = "World wmo Azeroth Buildings GuardTower GuardTower_destroyed_construction.wmo", + [2000094] = "World Expansion01 Doodads Shattrath Passivedoodads Lighting Ancient_D_Standing_Light_off.mdx", + [2000095] = "World Azeroth Stranglethorn PassiveDoodads Detail StranglePlant09.mdx", + [2000096] = "World Lordaeron Arathi PassiveDoodads bushes ArathiPlant03.mdx", + [2000097] = "World Kalimdor Felwood PassiveDoodads Bush FelwoodBush01.mdx", + [2000098] = "World Lordaeron Arathi PassiveDoodads Rocks ArathiRock02.mdx", + [2000099] = "World Generic Human Passive Doodads Armor ArmorStandMailBlue.mdx", + [2000100] = "World Azeroth SwampOSorrow PassiveDoodads Plants SwampPlant04.mdx", + [2000101] = "World Azeroth Elwynn PassiveDoodads BallistaRuined BallistaRuined.mdx", + [2000102] = "World Generic Undead Passive Doodads UndeadHooks undead_empty_hook.mdx", + [2000103] = "World Goober G_RuneGroundGreen01b.mdx", + [2000104] = "World Generic Goblin PassiveDoodads GoblinShredderSuit GoblinShredderSuit01.mdx", + [2000105] = "World Azeroth Karazahn PassiveDoodads Tables KarazahnTableSmall.mdx", + [2000106] = "World SkillActivated TradeskillNodes Bush_Goldclover.mdx", + [2000107] = "World SkillActivated TradeskillNodes Bush_Constrictorgrass.mdx", + [2000108] = "World wmo buildings OldStrat_farm.wmo", + [2000109] = "World Generic ActiveDoodads SpellPortals MagePortal_Theramore.mdx", + [2000110] = "World Generic ActiveDoodads SpellPortals MagePortal_Stonard.mdx", + [2000111] = "World Azeroth BootyBay PassiveDoodad DeadFish FishFrenzyBlue.mdx", + [2000112] = "World SkillActivated TradeskillNodes Bush_TigerLily.mdx", + [2000113] = "World SkillActivated TradeskillNodes Bush_TalandrasRose.mdx", + [2000114] = "World Goober G_XPoster.mdx", + [2000115] = "World Azeroth Karazahn PassiveDoodads Tables KarazahnTableBig.mdx", + [2000116] = "World Generic Human Passive Doodads Food&Utensils KitchenKnife.mdx", + [2000117] = "World Generic Gnome Passive Doodads GnomeRocketCarts GnomeRocketCart.mdx", + [2000118] = "World SkillActivated TradeskillNodes Cobalt_Miningnode_01.mdx", + [2000119] = "World KhazModan Uldaman PassiveDoodads Books UldamanBook02.mdx", + [2000120] = "World KhazModan Uldaman PassiveDoodads Books UldamanBook03.mdx", + [2000121] = "World Lordaeron Arathi PassiveDoodads bushes ArathiPlant02.mdx", + [2000122] = "World Lordaeron Arathi PassiveDoodads bushes ArathiPlant04.mdx", + [2000123] = "World Lordaeron Arathi PassiveDoodads bushes ArathiPlant05.mdx", + [2000124] = "World Dreaming PassiveDoodads Flowers DNRDreamBellFlower03.mdx", + [2000125] = "World Dreaming PassiveDoodads Flowers DNRDreamOrangeFlower02.mdx", + [2000126] = "World Dreaming PassiveDoodads Flowers DNRDreamBellFlower02.mdx", + [2000127] = "World Dreaming PassiveDoodads Flowers DNRDreamPurpleFlower01.mdx", + [2000128] = "World Dreaming PassiveDoodads Flowers DreamSpinningFlower01.mdx", + [2000129] = "World Scale 200YardRadiusDisc.mdx", + [2000130] = "World Goober UD_DiscoBall.mdx", + [2000131] = "World Generic Orc Passive Doodads Geyser SteamGeyser.mdx", + [2000132] = "World Generic Human Passive Doodads Steam DeadMineSteam02.mdx", + [2000133] = "World Expansion01 Doodads Coilfang Passivedoodads Steam Coilfang_steam.mdx", + [2000134] = "World Azeroth Karazahn PassiveDoodads Rubble KarazahnRockRubble02.mdx", + [2000135] = "World Expansion01 Doodads Zangar PlantGroups ZangarPlantGroup02.mdx", + [2000136] = "World Expansion01 Doodads Generic AncientOrc Windmill AO_Windmill.mdx", + [2000137] = "World Expansion01 Doodads HellfirePeninsula Trees HellfireSeedPod01.mdx", + [2000138] = "World Kalimdor Silithus PassiveDoodads Crystals silithus_crystal_formation_04.mdx", + [2000139] = "World Generic PassiveDoodads ValentinesDay ValentinesCologneBottle.mdx", + [2000140] = "World Kalimdor WailingCaverns PassiveDoodads FangDruids WC_DruidOfTheRaptorClaw.mdx", + [2000141] = "World Kalimdor Silithus PassiveDoodads SilithidWaspHusks SilithidWaspHuskWings.mdx", + [2000142] = "World KhazModan Wetlands PassiveDoodads DragonBones DragonBonesLeftWing.mdx", + [2000143] = "World Kalimdor StoneTalon ActiveDoodads Tree g_sapling03.mdx", + [2000144] = "World Kalimdor Silithus PassiveDoodads Hives SmallHive01.mdx", + [2000145] = "World Expansion01 Doodads Generic Draenei Bowls DR_Bowl_01.mdx", + [2000146] = "World KhazModan Uldaman PassiveDoodads TitanStatues TitanFemaleStatue.mdx", + [2000147] = "World Kalimdor UnGoro PassiveDoodads Geyser UngoroGeyser02.mdx", + [2000148] = "World Expansion01 Doodads ZulAman Ruins TrollRuins_ZulAman_06.mdx", + [2000149] = "World Azeroth Stranglethorn PassiveDoodads Detail StrangleThornFern05.mdx", + [2000150] = "World Expansion01 Doodads BladesEdge Trees BladesEdgeCrater01.mdx", + [2000151] = "World Generic Human Passive Doodads Armor ArmorShoulderSilver.mdx", + [2000152] = "World Generic Dwarf Passive Doodads Platters PlatterGoldSimple02.mdx", + [2000153] = "World Expansion01 Doodads Shadowmoon rune shadowmoon_rune1.mdx", + [2000154] = "World Generic Human Passive Doodads Scaffold StormwindScaffold_01.mdx", + [2000155] = "World Generic PVP UpperDeck UD_PvpTaunt.mdx", + [2000156] = "World Azeroth ZulGurub PassiveDoodads BatTotem TrollBatTotem.mdx", + [2000157] = "World KhazModan Blackrock PassiveDoodads DeathWingExperiments BlackRockBloodMachine01.mdx", + [2000158] = "World KhazModan Blackrock PassiveDoodads DeathWingExperiments BlackRockBloodMachine02.mdx", + [2000159] = "World Generic PassiveDoodads Fruits Fruit_BananaBunch.mdx", + [2000160] = "WORLD GENERIC PASSIVE DOODADS ARENAELEVATORS ORG_ARENA_PILLAR.MDX", + [2000161] = "World Generic Human Passive Doodads ValveWaterDrip DeadMineValveWaterDrip.mdx", + [2000162] = "World Expansion01 Doodads Generic BloodElf Barrel BE_Barrel_Fruit01.mdx", + [2000163] = "World Lordaeron TirisfalGlade PassiveDoodads Bodies BodyShrouded.mdx", + [2000164] = "WORLD GENERIC PASSIVE DOODADS ARENAELEVATORS ORG_ARENA_ELEVATOR.MDX", + [2000165] = "World Kalimdor Blackfathom PassiveDoodads Lights BFD_WallLight01.mdx", + [2000166] = "World Generic Human Passive Doodads Tables BloodyTable3.mdx", + [2000167] = "World KhazModan Blackrock PassiveDoodads DeathWingExperiments BlackRockBloodMachine04.mdx", + [2000168] = "World KhazModan Blackrock PassiveDoodads DeathWingExperiments BlackRockBloodVile.mdx", + [2000169] = "World Azeroth Westfall PassiveDoodads Cages HangingCage02.mdx", + [2000170] = "World Azeroth Westfall PassiveDoodads Utensils Bowl.mdx", + [2000171] = "World Dungeon CavernsOfTime PassiveDoodads HourGlass COT_HourGlass_redo.mdx", + [2000172] = "World Azeroth Karazahn PassiveDoodads BookShelves KarazahnBookshelfSmall.mdx", + [2000173] = "World Generic Human Passive Doodads Benches ShadowfangBench02.mdx", + [2000174] = "World Expansion01 Doodads Silvermyst Crystals SilvermystCrystal01_Orange.mdx", + [2000175] = "World Kalimdor Silithus PassiveDoodads Crystals FloatingRedCrystalBroken02.mdx", + [2000176] = "World Generic Dwarf Passive Doodads TavernStuff BreweryTanks01.mdx", + [2000177] = "World Generic DarkIronDwarf Passive Doodads WorkBenches DarkIronWorkbench01.mdx", + [2000178] = "World Expansion01 Doodads Shattrath Passivedoodads Holy_Energy_FX Shattrath_Draenei_Holy_FX.mdx", + [2000179] = "World Azeroth Stranglethorn PassiveDoodads GemMineCar02 GemMineCar03.mdx", + [2000180] = "World Goober G_GasTrap.mdx", + [2000181] = "World Lordaeron Scholomance PassiveDoodads TestingTubes Ghoul_in_a_jar.mdx", + [2000182] = "World Generic Dwarf Passive Doodads ExcavationTents ExcavationTent02.mdx", + [2000183] = "World Azeroth Elwynn PassiveDoodads Ballista Ballista.mdx", + [2000184] = "World Azeroth Westfall Buildings GrainSilo WestFallGrainSilo01.mdx", + [2000185] = "World Generic Human Passive Doodads WestFallGrainSiloDestroyed01.mdx", + [2000186] = "World Generic PassiveDoodads Brewfest Beerfest_MoleMachine_anim_set2.mdx", + [2000187] = "World wmo Azeroth Buildings RedRidge_human_farm RedRidge_human_farm.wmo", + [2000188] = "World wmo Azeroth Buildings RedRidge_Stable RedRidge_Stable.wmo", + [2000189] = "World wmo Azeroth Buildings RedRidge_Lumbermill RedRidge_Lumbermill.wmo", + [2000190] = "World wmo Azeroth Buildings RedRidge_Barn RedRidge_Barn.wmo", + [2000191] = "World wmo Azeroth Buildings Duskwood_Barn Duskwood_Barn.wmo", + [2000192] = "World wmo Azeroth Buildings Duskwood_Lumbermill Duskwood_Lumbermill.wmo", + [2000193] = "World wmo Azeroth Buildings Duskwood_Stable Duskwood_Stable.wmo", + [2000194] = "World wmo Azeroth Buildings Duskwood_Barn Duskwood_Barn_Closed.wmo", + [2000195] = "World wmo Azeroth Buildings RedRidge_Barn RedRidge_Barn_Closed.wmo", + [2000196] = "World wmo Azeroth Buildings RedRidge_human_farm RedRidge_human_farm_closed.wmo", + [2000197] = "World wmo Azeroth Buildings Duskwood_human_farm Duskwood_human_farm_closed.wmo", + [2000198] = "World Generic Human Passive Doodads Weapons&Armor CrimsonWallShield01.mdx", + [2000199] = "World Generic Orc Passive Doodads BurntOutposts BurntOutpost05.mdx", + [2000200] = "World Generic Orc Passive Doodads BurntOutposts BurntOutpost06.mdx", + [2000201] = "World Azeroth Westfall PassiveDoodads WestfallFence WestfallFencepost.mdx", + [2000202] = "World Azeroth Duskwood PassiveDoodads Trees DuskWoodFallenTree.mdx", + [2000203] = "World Generic PassiveDoodads Barrel BrokenBarrel01.mdx", + [2000204] = "World Generic Dwarf Passive Doodads ExcavationBarriers ExcavationBarrier02_PvPCollision.mdx", + [2000205] = "World Azeroth RedRidge PassiveDoodads Trees RedRidgeFallenTree01.mdx", + [2000206] = "World Azeroth Duskwood PassiveDoodads DuskwoodHaywagon DuskwoodHayWagon.mdx", + [2000207] = "World Lordaeron TirisfalGlade PassiveDoodads Bodies ScourgeBodyHanging01.mdx", + [2000208] = "World Lordaeron TirisfalGlade PassiveDoodads Bodies ScourgeBodyHanging02.mdx", + [2000209] = "World Lordaeron TirisfalGlade PassiveDoodads Bodies ScourgeBodyHanging03.mdx", + [2000210] = "World Azeroth Westfall PassiveDoodads Scarecrow WestFallScarecrow.mdx", + [2000211] = "World ENVIRONMENT DOODAD PLAGUELANDS ActiveDoodads PlagueCauldronActiveBase.mdx", + [2000212] = "World Expansion01 Doodads Silvermyst Crystals SilvermystCrystal03_Orange.mdx", + [2000213] = "World Expansion01 Doodads Silvermyst Crystals silvermystCrystalSmall01_Orange.mdx", + [2000214] = "World Goober G_Nexus_PulsatingPlant.mdx", + [2000215] = "World Kalimdor Feralas PassiveDoodads Fern FeralasFerns01.mdx", + [2000216] = "World Goober DeathKnight_DeathGate.mdx", + [2000217] = "World Goober G_DemonicCircleSummon_Base.mdx", + [2000218] = "World Generic Human Passive Doodads Books Book_Human_04.mdx", + [2000219] = "World Kalimdor Darkshore PassiveDoodads Ruins DarkshoreRock01.mdx", + [2000220] = "World Generic PassiveDoodads WeaponCrates WeaponCrateAllianceSwordOpen.mdx", + [2000221] = "World Azeroth Duskwood PassiveDoodads Farm Duskwood_human_farm_closed.mdx", + [2000222] = "World Azeroth RedRidge PassiveDoodads Farm RedRidge_human_farm_closed.mdx", + [2000223] = "World Azeroth RedRidge PassiveDoodads Barn RedRidge_Barn_Closed.mdx", + [2000224] = "World Azeroth Duskwood PassiveDoodads Barn Duskwood_Barn_Closed.mdx", + [2000225] = "World Azeroth Duskwood PassiveDoodads Stable Duskwood_Stable.mdx", + [2000226] = "World Azeroth RedRidge PassiveDoodads Stable RedRidge_Stable.mdx", + [2000227] = "World Expansion01 Doodads Silvermyst Crystals silvermystCrystalSmall02_Orange.mdx", + [2000228] = "World Azeroth Duskwood PassiveDoodads Farm Duskwood_lumbermill.mdx", + [2000229] = "World Azeroth RedRidge PassiveDoodads LumberMill RedRidge_lumbermill.mdx", + [2000230] = "World Goober G_BearTrap_Hunter.mdx", + [2000231] = "World Generic PVP Fires LowPolyFire_NoSmoke.mdx", + [2000232] = "World SkillActivated TradeskillNodes Bush_EvergreenMoss.mdx", + [2000233] = "World SkillActivated TradeskillNodes Bush_FrozenHerb.mdx", + [2000234] = "World SkillActivated TradeskillNodes Bush_IceThorn.mdx", + [2000235] = "World SkillActivated TradeskillNodes Bush_WhisperVine.mdx", + [2000236] = "World SkillActivated TradeskillNodes Bush_FrostLotus.mdx", + [2000237] = "World Lordaeron Stratholme PassiveDoodads FX Nox_portal_top_zero.mdx", + [2000238] = "World Goober Goblin_Lottery.mdx", + [2000239] = "World Generic PassiveDoodads Weapons stone_club01.mdx", + [2000240] = "World Generic Human Passive Doodads GunShop GunShopGunBarrel.mdx", + [2000241] = "World Expansion01 Doodads Generic Draenei Mailbox DalaranPostbox.mdx", + [2000242] = "World Generic ActiveDoodads SpellPortals MagePortal_Dalaran.mdx", + [2000243] = "World Dungeon Goldmine PassiveDoodads CaveMineKobolds CaveMineKobold06.mdx", + [2000244] = "World Dungeon Goldmine PassiveDoodads CaveMineKobolds CaveMineKobold05.mdx", + [2000245] = "World Dungeon Goldmine PassiveDoodads CaveMineKobolds CaveMineKobold04.mdx", + [2000246] = "World Dungeon Goldmine PassiveDoodads CaveMineKobolds CaveMineKobold01.mdx", + [2000247] = "World Dungeon Goldmine PassiveDoodads CaveMineKobolds CaveMineKobold02.mdx", + [2000248] = "World Expansion01 Doodads Generic BloodElf Books BE_Book_Medium01.mdx", + [2000249] = "World Generic Human Passive Doodads Books Book_Human_01.mdx", + [2000250] = "World Generic Human Passive Doodads Books Book_Troll_01.mdx", + [2000251] = "World Generic Human Passive Doodads Books Book_Human_02.mdx", + [2000252] = "World Generic Human Passive Doodads Books Book_Dwarf_02.mdx", + [2000253] = "World Generic Human Passive Doodads Books Book_Dwarf_04.mdx", + [2000254] = "World Generic Orc Passive Doodads HordeBanners HordeBanner04.mdx", + [2000255] = "World Generic Orc Passive Doodads HordeBanners HordeBanner02.mdx", + [2000256] = "World Generic Human Passive Doodads Food CheeseWheelSwiss01.mdx", + [2000257] = "World Generic Human Passive Doodads Food CheeseWheel01.mdx", + [2000258] = "World Generic Dwarf Passive Doodads ChainLinks TS_Chainmounting01.mdx", + [2000259] = "World Goober G_GnomeMailBox.mdx", + [2000260] = "World Generic Human Passive Doodads Banners StormwindLionBanner.mdx", + [2000261] = "World Generic Orc Passive Doodads Tents orctent01.mdx", + [2000262] = "World Generic PassiveDoodads GrayStone GrayStone02.mdx", + [2000263] = "SPELLS INSTANCENEWPORTAL_PURPLE.MDX", + [2000264] = "SPELLS INSTANCENEWPORTAL_PURPLE_SKULL.MDX", + [2000265] = "WORLD LORDAERON STRATHOLME PASSIVEDOODADS FX STRATHOLMEFLOATINGEMBERS.MDX", + [2000266] = "World Goober G_Necropolis02.mdx", + [2000267] = "WORLD GENERIC PASSIVEDOODADS WEAPONS HAMMER_PVPALLIANCE_A_01.MDX", + [2000268] = "WORLD GENERIC PASSIVEDOODADS WEAPONS HAMMER_MAUL_B_02.MDX", + [2000269] = "World Generic Gnome Passive Doodads GnomeMachine GnomeMachineBroken03.mdx", + [2000270] = "World Generic Gnome Passive Doodads Parts GnomeScrew08.mdx", + [2000271] = "World Expansion01 Doodads Generic Ogre Spikes OM_Iron_Spike_02.mdx", + [2000272] = "world expansion01 doodads terokkar webs terokkarweb03.mdx", + [2000273] = "world expansion01 doodads terokkar webs terokkarweb02.mdx", + [2000274] = "SPELLS INSTANCENEWPORTAL_BLUE.MDX", + [2000275] = "CREATURE HARPOON VR_HARPOON_01.MDX", + [2000276] = "world generic pvp battlefieldbanners battlefieldbanneralliance_static_wall.mdx", + [2000277] = "world generic pvp battlefieldbanners battlefieldbannerhorde_static_wall.mdx", + [2000278] = "WORLD GENERIC PASSIVE DOODADS ARENAELEVATORS ORG_ARENA_YELLOW_ELEVATOR.MDX", + [2000279] = "WORLD GENERIC PASSIVE DOODADS ARENAELEVATORS ORG_ARENA_AXE_PILLAR.MDX", + [2000280] = "WORLD GENERIC PASSIVE DOODADS ARENAELEVATORS ORG_ARENA_LIGHTNING_PILLAR.MDX", + [2000281] = "WORLD GENERIC PASSIVE DOODADS ARENAELEVATORS ORG_ARENA_IVORY_PILLAR.MDX", + [2000282] = "SPELLS ORGRIMMARARENA_FIREFX.MDX", + [2000283] = "WORLD KALIMDOR ORGRIMMAR ACTIVEDOODADS ARENA ORG_ARENA_FIREDOOR.MDX", + [2000284] = "WORLD KALIMDOR ORGRIMMAR ACTIVEDOODADS ARENA ORG_ARENA_PULLEY.MDX", + [2000285] = "WORLD KALIMDOR ORGRIMMAR ACTIVEDOODADS ARENA ORG_ARENA_YELLOW_FENCE.MDX", + [2000286] = "WORLD KALIMDOR ORGRIMMAR ACTIVEDOODADS ARENA ORG_ARENA_RED_FENCE.MDX", + [2000287] = "WORLD KALIMDOR ORGRIMMAR ACTIVEDOODADS ARENA ORG_ARENA_GEAR.MDX", + [2000288] = "SPELLS INSTANCENEWPORTAL_GREEN.MDX", + [2000289] = "SPELLS INSTANCENEWPORTAL_GREEN_SKULL.MDX", + [2000290] = "world generic dwarf passive doodads signs dwarfsign_firstaid.mdx", + [2000291] = "World Generic Human Passive Doodads Books Book_Dwarf_03.mdx", + [2000292] = "world generic orc passive doodads bowls bowlwood01.mdx", + [2000293] = "World Expansion01 Doodads Generic BloodElf Books BE_Book_Medium02.mdx", + [2000294] = "World Generic Human Passive Doodads Food RoastBoarPlatter_nocollision.mdx", + [2000295] = "World Generic Dwarf Passive Doodads TavernStuff AleKegs01.mdx", + [2000296] = "World Generic Human Passive Doodads Food CheeseWedge01.mdx", + [2000297] = "World Azeroth Elwynn PassiveDoodads Detail ElwynnPoppy1 ElwynnPoppy1.mdx", + [2000298] = "World Generic Human Passive Doodads Books Book_Human_03.mdx", + [2000299] = "World Generic Human Passive Doodads Books BookMedium02.mdx", + [2000300] = "World Generic Human Passive Doodads Books BookSmallOpen01.mdx", + [2000301] = "World Expansion01 Doodads Generic BloodElf Books BE_Book_Small02.mdx", + [2000302] = "World Generic Gnome Passive Doodads GnomeRoboArm GnomeRoboArm.mdx", + [2000303] = "World Generic Human Passive Doodads Books Book_Dwarf_01.mdx", + [2000304] = "World Generic Human Passive Doodads Books Book_Troll_02.mdx", + [2000305] = "World Generic Human Passive Doodads Books BookSmall04.mdx", + [2000306] = "world expansion01 doodads hellfirepeninsula supplies hellfiresupplies_06.mdx", + [2000307] = "World Expansion01 Doodads Generic BloodElf Cups BE_Cup01.mdx", + [2000308] = "World Generic Human Passive Doodads Mugs Goldgoblet01.mdx", + [2000309] = "World Expansion01 Doodads Generic Tradeskill JewelCrafting JewelCraft_Figurine02.mdx", + [2000310] = "world lordaeron arathi passivedoodads impalingstonecorpses impalingstone_corpse_01.mdx", + [2000311] = "world lordaeron arathi passivedoodads impalingstonecorpses impalingstone_corpse_02.mdx", + [2000312] = "world lordaeron plagueland passivedoodads bonespikes bonespike_01.mdx", + [2000313] = "world lordaeron plagueland passivedoodads bonespikes bonespike_03.mdx", + [2000314] = "World Azeroth Duskwood PassiveDoodads IronGate GatePost.mdx", + [2000315] = "World Dreaming PassiveDoodads Flowers DreamPurpleFlower03.mdx", + [2000316] = "World Dreaming PassiveDoodads Flowers DNRDreamPurpleFlower03.mdx", + [2000317] = "World wmo transports WMO_elevators org_arena_elevator_transport.wmo", + [2000318] = "World Generic Human Passive Doodads Food&Utensils Cleaver01.mdx", + [2000319] = "world generic orc passive doodads tents orctent02.mdx", + [2000320] = "world generic human passive doodads ballistaruins ballistawheel01.mdx", + [2000321] = "world generic human passive doodads catapultruins catapultwheel01.mdx", + [2000322] = "world generic darkirondwarf passive doodads grindingwheels darkirongrindingwheel.mdx", + [2000323] = "world generic dwarf passive doodads tools mallet01.mdx", + [2000324] = "world generic passivedoodads engineering spring02.mdx", + [2000325] = "world expansion01 doodads hellfirepeninsula supplies hellfiresupplies_02.mdx", + [2000326] = "world expansion01 doodads hellfirepeninsula supplies hellfiresupplies_03.mdx", + [2000327] = "world expansion01 doodads hellfirepeninsula supplies hellfiresupplies_04.mdx", + [2000328] = "world expansion01 doodads hellfirepeninsula supplies hellfiresupplies_05.mdx", + [2000329] = "WORLD GENERIC HUMAN ACTIVEDOODADS GATE ALLIANCE_BOAT_GATE_BG.MDX", + [2000330] = "WORLD GENERIC HORDE ACTIVEDOODADS GATE HORDE_BOAT_GATE_BG.MDX", + [2000331] = "world generic passivedoodads weapons shield_pvpalliance.mdx", + [2000332] = "World Generic Human Passive Doodads Armor ArmorBreastplateGold.mdx", + [2000333] = "World Generic Orc Passive Doodads Tents DurotarOrcTent01.mdx", + [2000334] = "World Generic Orc Passive Doodads Tents DurotarOrcTent02.mdx", + [2000335] = "World Azeroth BurningSteppes PassiveDoodads OrcTents OrcTent.mdx", + [2000336] = "World Expansion01 Doodads Silvermoon Flowers SilvermoonFlower04.mdx", + [2000337] = "world dreaming passivedoodads flowers dnrdreamdroopingflower01.mdx", + [2000338] = "world dreaming passivedoodads flowers dnrdreamorangeflower01.mdx", + [2000339] = "world expansion01 doodads silvermoon flowers silvermoonflower01.mdx", + [2000340] = "world expansion01 doodads silvermoon flowers silvermoonflower02.mdx", + [2000341] = "World Generic PassiveDoodads Furniture Containers TitanChest_noAnim.mdx", + [2000342] = "world generic undead passive doodads signs lordaeron_citybanner_01.mdx", + [2000343] = "WORLD GENERIC PASSIVE DOODADS ARENAELEVATORS ORG_ARENA_IVORY_PILLAR_COLLISION.MDX", + [2000344] = "WORLD GENERIC PASSIVE DOODADS ARENAELEVATORS ORG_ARENA_PILLAR_COLLISION.MDX", + [2000345] = "WORLD GENERIC PASSIVE DOODADS ARENAELEVATORS ORG_ARENA_AXE_PILLAR_COLLISION.MDX", + [2000346] = "WORLD GENERIC PASSIVE DOODADS ARENAELEVATORS ORG_ARENA_LIGHTNING_PILLAR_COLLISION.MDX", + [2000347] = "world generic dwarf passive doodads excavationtents excavationtentruined01.mdx", + [2000348] = "world generic dwarf passive doodads excavationtents excavationtentruined02.mdx", + [2000349] = "world wmo kalimdor collidabledoodads darkshore darkshoreexcavation dsexcavationplatform.wmo", + [2000350] = "world generic darkirondwarf passive doodads woodplanks darkironwoodplanks01.mdx", + [2000351] = "world generic darkirondwarf passive doodads woodplanks darkironwoodplanks03.mdx", + [2000352] = "world generic human passive doodads ballistaruins ballistabow01.mdx", + [2000353] = "world generic human passive doodads ballistaruins ballistamissle01.mdx", + [2000354] = "world outland passivedoodads campfire outlanddeadcampfire.mdx", + [2000355] = "World Expansion01 Doodads Terokkar bonepile Terokkar_bonepile01.mdx", + [2000356] = "World Generic Gnome Passive Doodads Lights GnomeMaintenanceLight01.mdx", + [2000357] = "World Generic ActiveDoodads SpellPortals MagePortal_CavernsOfTime.mdx", + [2000358] = "World Generic Undead Passive Doodads MeatWagonPieces MeatWagonWheel.mdx", + [2000359] = "World Generic Undead Passive Doodads MeatWagonPieces MeatWagonGrill.mdx", + [2000360] = "World Generic Undead Passive Doodads MeatWagonPieces MeatWagonRoller.mdx", + [2000361] = "World Generic Undead Passive Doodads MeatWagonPieces MeatWagonClaw.mdx", + [2000362] = "World Generic Undead Passive Doodads MeatWagonPieces MeatWagonBody.mdx", + [2000363] = "WORLD GENERIC GNOME PASSIVE DOODADS FURNITURE GNOMETABLE01.MDX", + [2000364] = "WORLD GENERIC UNDEAD PASSIVE DOODADS LORDAERONRAILING THRONERAILING01.MDX", + [2000365] = "WORLD GENERIC HUMAN PASSIVE DOODADS GUNSHOP GUNSHOPMORTARSHELL.MDX", + [2000366] = "WORLD GENERIC ORC PASSIVE DOODADS SHIELDS ORCSHIELD02.MDX", + [2000367] = "WORLD GENERIC ORC PASSIVE DOODADS WEAPONS ORCSPEAR03.MDX", + [2000368] = "WORLD AZEROTH BURNINGSTEPPES PASSIVEDOODADS ORCSLEEPMATS ORCSLEEPMAT03.MDX", + [2000369] = "WORLD GENERIC PASSIVEDOODADS WEAPONS SHIELD_PVPHORDE.MDX", + [2000370] = "WORLD GENERIC PASSIVEDOODADS WEAPONS HAMMER_PVPHORDE_A_01.MDX", + [2000371] = "WORLD GENERIC ORC PASSIVE DOODADS WEAPONS ORCAXE02.MDX", + [2000372] = "WORLD GENERIC PASSIVEDOODADS WEAPONS BOW_CROSSBOW_PVPALLIANCE_A_01.MDX", + [2000373] = "World Generic Tauren Passive Doodads Totems GrimTotem02.mdx", + [2000374] = "World Generic ActiveDoodads SpellPortals Portal_StrandOfTheAncients.mdx", + [2000375] = "World Generic ActiveDoodads Chests HelmChest01.mdx", + [2000376] = "world goober g_shellshield.mdx", + [2000377] = "World Expansion01 Doodads Coilfang Passivedoodads Lights Coilfang_Orb.mdx", + [2000378] = "World Generic ActiveDoodads SpellPortals MagePortal_Wintergrasp.mdx", + [2000379] = "WORLD GENERIC DWARF PASSIVE DOODADS CHAIRS DWARVENCHAIR05.MDX", + [2000380] = "WORLD GENERIC DWARF PASSIVE DOODADS CHAIRS DWARVENCHAIR04.MDX", + [2000381] = "World Generic PVP BattlefieldBanners BattlefieldBannerNeutralPost.mdx", + [2000382] = "World Kalimdor Mauradon PassiveDoodads Crystals RubyCrystal07.mdx", + [2000383] = "World Expansion01 Doodads Generic BloodElf Bottles BE_Bottle03.mdx", + [2000384] = "World Expansion01 Doodads Generic BloodElf Bottles BE_Bottle04.mdx", + [2000385] = "World Generic NightElf Passive Doodads Barrel ElfBarrel01.mdx", + [2000386] = "World Generic Human Passive Doodads Books Inscription_BookOfPower_01.mdx", + [2000387] = "World Generic Orc Passive Doodads HordeBanners HordeBanner01.mdx", + [2000388] = "World Generic Human Passive Doodads Toys ToyTrain_01.mdx", + [2000389] = "World Expansion01 Doodads Generic BloodElf Barrel BE_Barrel_01_NoCollision.mdx", + [2000390] = "World Generic NightElf Passive Doodads Barrel ElfBarrel01_NoCollision.mdx", + [2000391] = "World Expansion01 Doodads Generic BloodElf Bottles BE_Bottle04_NoCollision.mdx", + [2000392] = "World Expansion01 Doodads Generic BloodElf Bottles BE_Bottle03_NoCollision.mdx", + [2000393] = "World Generic Human Passive Doodads Food bread01_NoCollision.mdx", + [2000394] = "World Generic Human Passive Doodads Food CheeseWheel01_NoCollision.mdx", + [2000395] = "World Generic Human Passive Doodads Food CheeseWheelSwiss01_NoCollision.mdx", + [2000396] = "WORLD GENERIC PASSIVEDOODADS SHIPS HORDEZEPPELINANIMATION HORDEZEPANIMATION.MDX", + [2000397] = "World Generic PassiveDoodads Thanksgiving G_Cornucopia.mdx", + [2000398] = "World Goober G_WarlockMeetingPortal.mdx", + [2000399] = "World Generic PassiveDoodads PostBoxes PostboxWolvar.mdx", + [2000400] = "world generic goblin passivedoodads goblinrocketcarts goblinrocketcart04.mdx", + [2000401] = "World Expansion01 Doodads Generic Tradeskill JewelCrafting JewelCraft_BlueHeart_01.mdx", + [2000402] = "World Expansion01 Doodads Generic BloodElf planters BE_planter_flowers_01.mdx", + [2000403] = "World Generic PassiveDoodads Weapons Sword_Long_D_02.mdx", + [2000404] = "World Azeroth SwampOSorrow PassiveDoodads Plants SwampofSorrowLilyPad02.mdx", + [2000405] = "World Generic Dwarf Passive Doodads Banners IronForgeBannerStill.mdx", + [2000406] = "World Generic Dwarf Passive Doodads Banners IronForgeBanner_ornate01.mdx", + [2000407] = "World Generic Troll Passive Doodads Tikimasks Troll_tikimask03.mdx", + [2000408] = "World Generic NightElf Passive Doodads Lamps DarnassusStreetLamp02.mdx", + [2000409] = "World Generic Gnome Passive Doodads SignPosts GnomeSignPost02.mdx", + [2000410] = "World Generic Troll Passive Doodads Tikimasks Troll_tikimask02.mdx", + [2000411] = "World Generic Tauren Passive Doodads Totems TaurenTotem06.mdx", + [2000412] = "World Goober G_Bomb_01.mdx", + [2000413] = "CREATURE SPELLS LANDMINE01.MDX", + [2000414] = "WORLD AZEROTH WESTFALL PASSIVEDOODADS TOMBSTONES TOMBSTONE04.MDX", + [2000415] = "cameras flybyundead.mdx", + [2000416] = "World wmo Dungeon KL_AhnQiraj 40ManCourtYard.wmo", + [2000417] = "ITEM OBJECTCOMPONENTS WEAPON MISC_1H_BOTTLE_A_01.MDX", + [2000418] = "WORLD EXPANSION01 DOODADS GENERIC BLOODELF RUGS BE_RUG_MEDIUM01.MDX", + [2000419] = "WORLD EXPANSION01 DOODADS GENERIC BLOODELF RUGS BE_RUG_LARGE02.MDX", + [2000420] = "WORLD AZEROTH BURNINGSTEPPES PASSIVEDOODADS STONEBRACKETS STONEBLOCK01.MDX", + [2000421] = "world skillactivated tradeskillenablers tradeskill_fishschool_red.mdx", + [2000422] = "world goober ud_foamsword_01.mdx", + [2000423] = "world azeroth burningsteppes passivedoodads stonebrackets stoneblock02.mdx", + [2000424] = "spells creature_spellportallarge_red.mdx", + [2000425] = "creature spells creature_spellportal.mdx", + [2000426] = "world generic nightelf passive doodads screens ne_screen01.mdx", + [2000427] = "world generic passivedoodads weaponcrates weaponcratehordeaxeopen.mdx", + [2000428] = "world generic human passive doodads lights sfx_flashinglight_red.mdx", + [2000429] = "world generic orc passive doodads orcfence orcfencepost.mdx", + [2000430] = "cameras orcintro04.mdx", + [2000431] = "world generic passivedoodads fruits fruitbowl_empty.mdx", + [2000432] = "world azeroth elwynn passivedoodads battlegladeskullhuman2 battlegladeskullhuman2.mdx", + [2000433] = "item objectcomponents battlestandards battlestandard_alliance_a_01 battlestandard_alliance_a_01.mdx", + [2000434] = "world generic passivedoodads darkportals darkportal01.mdx", + [2000435] = "spells creature_spellportallarge_lightred.mdx", + [2000436] = "world generic upperdeck ud_pinatacandypile.mdx", + [2000437] = "world generic activedoodads spellportals mageportal_stairofdestiny.mdx", + [2000438] = "world generic dwarf passive doodads tables dwarventablesimple03.mdx", + [2000439] = "world generic passivedoodads thanksgiving g_indiancorn_basket.mdx", + [2000440] = "world generic dwarf passive doodads tables dwarventablesimple05.mdx", + [2000441] = "world lordaeron alteracmountains passivedoodads fruitbuckets alteracfruitbucket04.mdx", + [2000442] = "world generic tauren passive doodads baskets largebasket03.mdx", + [2000443] = "world kalimdor durotar passivedoodads rocks durotarrock02.mdx", + [2000444] = "world kalimdor tanaris passivedoodads goblin go_small_bomb_pile.mdx", + [2000445] = "spells missile_bomb.mdx", + [2000446] = "world generic passivedoodads oktoberfest beerfeststreamersx3_nonanimated.mdx", + [2000447] = "world generic passivedoodads oktoberfest beerfestwreathhanginghuge.mdx", + [2000448] = "world generic passivedoodads oktoberfest beerfest_ribbon01huge.mdx", + [2000449] = "world generic passivedoodads oktoberfest beerfestwreath01.mdx", + [2000450] = "world generic passivedoodads oktoberfest beerfest_ribbon02.mdx", + [2000451] = "world generic passivedoodads oktoberfest beerfest_brazier_03.mdx", + [2000452] = "world generic passivedoodads oktoberfest beerfest_brazier_02.mdx", + [2000453] = "world generic passivedoodads oktoberfest beerfest_crate.mdx", + [2000454] = "world generic passivedoodads oktoberfest beerfeststreamers_nonanimated.mdx", + [2000455] = "world generic passivedoodads diadelosmuertos diadelosmuertos_candyskull_01.mdx", + [2000456] = "world generic passivedoodads diadelosmuertos diadelosmuertos_vaseflowers_01.mdx", + [2000457] = "world generic passivedoodads diadelosmuertos diadelosmuertos_graveflowers_01.mdx", + [2000458] = "world wmo dungeon sunstrider_anchorage sunstrider_ship.wmo", + [2000459] = "spells creature_spellportal_yellow.mdx", + [2000460] = "spells mageportal_blank.mdx", + [2000461] = "world generic human passive doodads oildrums oildrum02.mdx", + [2000462] = "world generic human passive doodads oildrums oildrum03.mdx", + [2000463] = "world expansion01 doodads generic tradeskill jewelcrafting jewelcraft_gemcut_02.mdx", + [2000464] = "world azeroth bootybay passivedoodad sharkmodels sharkmodel01.mdx", + [2000465] = "spells creature_spellportal_blue.mdx", + [2000466] = "SPELLS INSTANCEPORTAL_GREEN_10MAN_HEROIC.MDX", + [2000467] = "SPELLS INSTANCEPORTAL_GREEN_10MAN.MDX", + [2000468] = "SPELLS INSTANCEPORTAL_GREEN_25MAN.MDX", + [2000469] = "SPELLS INSTANCEPORTAL_GREEN_25MAN_HEROIC.MDX", + [2000470] = "spells spellobject_bomb.mdx", + [2000471] = "world generic pvp teleporters bg_teleporter_alliance_01.mdx", + [2000472] = "world generic pvp teleporters bg_teleporter_horde_01.mdx", + [2000473] = "creature goblin_cannon goblin_cannon.mdx", + [2000474] = "world generic passivedoodads thanksgiving g_thanksgivingtable_01_collision.mdx", + [2000475] = "world generic pvp teleporters bg_teleporter_alliance_base.mdx", + [2000476] = "world generic pvp teleporters bg_teleporter_gunship_horde_base.mdx", + [2000477] = "world generic pvp teleporters bg_teleporter_gunship_alliance_01.mdx", + [2000478] = "world generic pvp teleporters bg_teleporter_gunship_horde_01.mdx", + [2000479] = "world generic darkirondwarf passive doodads tables darkirontable01.mdx", + [2000480] = "world wmo kalimdor buildings taurendruidtent taurendruidtent.wmo", + [2000481] = "world wmo kalimdor pvp collidabledoodads netents nightelftent01_pvp.wmo", + [2000482] = "world wmo kalimdor pvp collidabledoodads netents nightelftent02_pvp.wmo", + [2000483] = "world khazmodan blackrock passivedoodads deathwingexperiments wallmountedvial02.mdx", + [2000484] = "world generic passivedoodads particleemitters aurawhiteverytall_v2.mdx", + [2000485] = "world generic passivedoodads particleemitters auraredverytall_v2.mdx", + [2000486] = "world generic passivedoodads particleemitters aurablueverytall_v2.mdx", + [2000487] = "world generic human passive doodads clothing foldedpantsgrey.mdx", + [2000488] = "world generic human passive doodads clothing foldershirtgreen.mdx", + [2000489] = "world generic orc passive doodads tailoring clothes orcpants01.mdx", + [2000490] = "world generic nightelf passive doodads tent nightelfsingletent02.mdx", + [2000491] = "world generic nightelf passive doodads tent nightelfsingletent01.mdx", + [2000492] = "world wmo dungeon md_pirateship pirateship_plank.wmo", + [2000493] = "world wmo azeroth buildings stranglethorn_bootybay bootybayplank.wmo", + [2000494] = "world generic passivedoodads deathskeletons bloodelfmaledeathskeleton.mdx", + [2000495] = "world generic human passive doodads sacks sackherbsstack01.mdx", + [2000496] = "item objectcomponents weapon sword_1h_queldelar_d_01.mdx", + [2000497] = "item objectcomponents weapon hammer_2h_pvpalliance_a_01.mdx", + [2000498] = "world kalimdor tanaris passivedoodads goblin go_large_rocket_2.mdx", + [2000499] = "world generic orc passive doodads raptoreggs wailingcavernsraptoreggs03.mdx", + [2000500] = "world generic alliance chest alliancechest_01.mdx", + [2000501] = "world generic horde chest hordechest_01.mdx", + [2000502] = "world generic passivedoodads ships shipramps shipramp_alliance_01.mdx", + [2000503] = "world generic passivedoodads ships shipramps shipramp_horde_01.mdx", + [2000504] = "spells sword_1h_queldelar_d_01_spell.mdx", + [2000505] = "spells banish_chest_dark.mdx", + [2000506] = "spells shadowdance_state.mdx", + [2000507] = "spells seedofcorruption_state.mdx", + [2000508] = "spells shadow_precast_med_hand.mdx", + [2000509] = "spells creature_spellportal_clickable.mdx", + [2000510] = "creature crystalportal crystalportal.mdx", + [2000511] = "world generic darkirondwarf passive doodads murals darkironmural01.mdx", + [2000512] = "world generic darkirondwarf passive doodads murals darkironmural02.mdx", + [2000513] = "world generic darkirondwarf passive doodads murals darkironmural03.mdx", + [2000514] = "world generic tauren passive doodads totems grimtotem01.mdx", + [2000515] = "world generic tauren passive doodads totems grimtotem03.mdx", + [2000516] = "world generic tauren passive doodads totems grimtotem04.mdx", + [2000517] = "world generic tauren passive doodads pvpwalls azsharataurnwallpvp_01.mdx", + [2000518] = "world generic tauren passive doodads windbreaks taurenwindbreak01.mdx", + [2000519] = "world generic tauren passive doodads windbreaks taurenwindbreak03.mdx", + [2000520] = "world generic tauren passive doodads totems burned_totem01.mdx", + [2000521] = "world generic gnome passive doodads furniture gnometable05.mdx", + [2000522] = "world azeroth westfall passivedoodads furniture westfallbed01.mdx", + [2000523] = "world generic nightelf passive doodads steppingstones steppingstone02.mdx", + [2000524] = "world generic centaur passive doodads centaurtents centaurtent02.mdx", + [2000525] = "world generic gnome passive doodads hazardlights gnomehazardlightred_02.mdx", + [2000526] = "world expansion03 doodads twilighthammer altar twilightshammer_altar01.mdx", + [2000527] = "world generic human passive doodads rugs generalbearskinrug01.mdx", + [2000528] = "world expansion03 doodads twilighthammer magicaldevices twilightshammer_magicaldevice_04air.mdx", + [2000529] = "world expansion03 doodads twilighthammer magicaldevices twilightshammer_magicaldevice_04fire.mdx", + [2000530] = "world generic human passive doodads haypiles darkhaypilemedium01.mdx", + [2000531] = "world generic human passive doodads haypiles shadowfanghaypile02.mdx", + [2000532] = "world generic human passive doodads haypiles shadowfanghaypile01.mdx", + [2000533] = "world generic orc passive doodads orcfence orcfence.mdx", + [2000534] = "world generic gnome passive doodads rocketplatform gnomerocketplatform_01.mdx", + [2000535] = "world generic human passive doodads books book_troll_03.mdx", + [2000536] = "world azeroth stranglethorn passivedoodads trolldungeonserpentstatue trolldungeonserpentstatue.mdx", + [2000537] = "world kalimdor dragoncave passivedoodads blackdragoneggs blackdragonegg03.mdx", + [2000538] = "SPELLS AbolishMagic_Base.mdx", + [2000539] = "SPELLS Abyssal_Ball.mdx", + [2000540] = "SPELLS Abyssal_Impact_Base.mdx", + [2000541] = "SPELLS AcidBreath.mdx", + [2000542] = "SPELLS AcidBurn.mdx", + [2000543] = "SPELLS AcidBurn_Black.mdx", + [2000544] = "SPELLS AcidBurn_Blue.mdx", + [2000545] = "SPELLS AcidBurn_LightBlue.mdx", + [2000546] = "SPELLS AcidBurn_Orange.mdx", + [2000547] = "SPELLS AcidBurn_Purple.mdx", + [2000548] = "SPELLS AcidBurn_Red.mdx", + [2000549] = "SPELLS AcidBurn_Small.mdx", + [2000550] = "SPELLS AcidBurn_Small_Black.mdx", + [2000551] = "SPELLS AcidBurn_Small_Blue.mdx", + [2000552] = "SPELLS AcidBurn_Small_Orange.mdx", + [2000553] = "SPELLS AcidBurn_Small_Purple.mdx", + [2000554] = "SPELLS AcidBurn_Small_Red.mdx", + [2000555] = "SPELLS AcidBurn_Small_Yellow.mdx", + [2000556] = "SPELLS AcidBurn_Yellow.mdx", + [2000557] = "SPELLS AcidBurn_small_LightBlue.mdx", + [2000558] = "SPELLS AcidCloudBreath.mdx", + [2000559] = "SPELLS AcidCloudBreath_Fast.mdx", + [2000560] = "Poisoned Grain Effect (Unused)", + [2000561] = "SPELLS AcidLiquidBreath.mdx", + [2000562] = "SPELLS AdrenalineRush_Cast_Base.mdx", + [2000563] = "SPELLS Aegis.mdx", + [2000564] = "SPELLS AimedShot_Impact_Chest.mdx", + [2000565] = "SPELLS AllianceCTFflag_spell.mdx", + [2000566] = "SPELLS AmplifyMagic_Impact_Base.mdx", + [2000567] = "SPELLS AntiMagic_PreCast_Hand.mdx", + [2000568] = "SPELLS AntiMagic_State_Base.mdx", + [2000569] = "SPELLS AntiMagic_State_Red.mdx", + [2000570] = "SPELLS AntiMagic_State_blue.mdx", + [2000571] = "SPELLS ArcaneBreath.mdx", + [2000572] = "SPELLS ArcaneExplosion_Base.mdx", + [2000573] = "SPELLS ArcaneExplosion_Boss_Base.mdx", + [2000574] = "SPELLS ArcaneForceShield_Blue.mdx", + [2000575] = "SPELLS ArcaneForceShield_Dark.mdx", + [2000576] = "SPELLS ArcaneForceShield_Green.mdx", + [2000577] = "SPELLS ArcaneForceShield_Purple.mdx", + [2000578] = "SPELLS ArcaneForceShield_Red.mdx", + [2000579] = "SPELLS ArcaneForceShield_Yellow.mdx", + [2000580] = "SPELLS ArcaneIntellect_Impact_Base.mdx", + [2000581] = "SPELLS ArcanePower_State_Chest.mdx", + [2000582] = "SPELLS ArcaneReflect_State_Chest.mdx", + [2000583] = "SPELLS ArcaneShot_Area.mdx", + [2000584] = "SPELLS ArcaneShot_Missile.mdx", + [2000585] = "SPELLS ArcaneShot_Missile2.mdx", + [2000586] = "SPELLS ArcaneSpirit_Impact_Base.mdx", + [2000587] = "SPELLS ArcaneTorrent.mdx", + [2000588] = "SPELLS ArcaneVolley_Missile.mdx", + [2000589] = "SPELLS ArcaneWard_Impact_Chest.mdx", + [2000590] = "SPELLS Arcane_Fire_Weapon_Effect.mdx", + [2000591] = "SPELLS Arcane_Form_Precast.mdx", + [2000592] = "SPELLS Arcane_Missile.mdx", + [2000593] = "SPELLS Arcane_Missile_Lvl1.mdx", + [2000594] = "SPELLS Arcane_Missile_Lvl2.mdx", + [2000595] = "SPELLS Arcane_Missile_Lvl3.mdx", + [2000596] = "SPELLS Arcane_Missile_Lvl4.mdx", + [2000597] = "SPELLS Archimonde_Blue_Fire.mdx", + [2000598] = "SPELLS Archimonde_Fire.mdx", + [2000599] = "SPELLS AspectBeast_Impact_Head.mdx", + [2000600] = "SPELLS AspectCheetah_Impact_Head.mdx", + [2000601] = "SPELLS AspectHawk_Impact_Head.mdx", + [2000602] = "SPELLS AspectMonkey_Impact_Head.mdx", + [2000603] = "SPELLS AspectSnake_Impact_Head.mdx", + [2000604] = "SPELLS AspectWild_Impact_Head.mdx", + [2000605] = "SPELLS AspectWolf_Impact_Head.mdx", + [2000606] = "SPELLS Astral_Recall_Impact_Base.mdx", + [2000607] = "SPELLS AvengingWrath_Impact_Base.mdx", + [2000608] = "SPELLS AvengingWrath_State_Chest.mdx", + [2000609] = "SPELLS BackStab_Cast_Base.mdx", + [2000610] = "SPELLS BackStab_Impact_Chest.mdx", + [2000611] = "SPELLS BalanceOfNature_Impact_Base.mdx", + [2000612] = "SPELLS Banish_Chest.mdx", + [2000613] = "SPELLS Banish_Chest_Blue.mdx", + [2000614] = "SPELLS Banish_Chest_Dark.mdx", + [2000615] = "SPELLS Banish_Chest_Purple.mdx", + [2000616] = "SPELLS Banish_Chest_White.mdx", + [2000617] = "SPELLS Banish_Chest_Yellow.mdx", + [2000618] = "SPELLS BarkShield_State_Base.mdx", + [2000619] = "SPELLS Barkskin_State_Base.mdx", + [2000620] = "SPELLS BaseFlagCapRed_Impact_Base.mdx", + [2000621] = "SPELLS BasicStrike.mdx", + [2000622] = "SPELLS BattleShout_Cast_Base.mdx", + [2000623] = "SPELLS BearFrenzy.mdx", + [2000624] = "SPELLS BearFrenzyImpact.mdx", + [2000625] = "SPELLS BeastCall_Impact_Head.mdx", + [2000626] = "SPELLS BeastLore_Impact_Base.mdx", + [2000627] = "SPELLS BeastLore_Impact_Head.mdx", + [2000628] = "SPELLS BeastRageCaster.mdx", + [2000629] = "SPELLS BeastRageState.mdx", + [2000630] = "SPELLS BeastSoothe_Impact_Head.mdx", + [2000631] = "SPELLS BeastSoothe_State_Head.mdx", + [2000632] = "SPELLS BeastWithin_State_Base.mdx", + [2000633] = "SPELLS BestowDisease_Impact_Chest.mdx", + [2000634] = "SPELLS Bind2_Impact_Base.mdx", + [2000635] = "SPELLS BlackMagic_Precast_Base.mdx", + [2000636] = "SPELLS BlackRadiationFog.mdx", + [2000637] = "SPELLS BlackShot_Missile.mdx", + [2000638] = "SPELLS BlessingOfLight_Impact.mdx", + [2000639] = "SPELLS BlessingOfSacrifice_Impact.mdx", + [2000640] = "SPELLS BlessingOfSalvation_Impact.mdx", + [2000641] = "SPELLS BlessingOfSanctuary.mdx", + [2000642] = "SPELLS BlessingofAgility_Base.mdx", + [2000643] = "SPELLS BlessingofFreedom_Impact.mdx", + [2000644] = "SPELLS BlessingofFreedom_State.mdx", + [2000645] = "SPELLS BlessingofKings_Base.mdx", + [2000646] = "SPELLS BlessingofMight_Base.mdx", + [2000647] = "SPELLS BlessingofProtection_Base.mdx", + [2000648] = "SPELLS BlessingofProtection_Chest.mdx", + [2000649] = "SPELLS BlessingofProtection_Impact.mdx", + [2000650] = "SPELLS BlessingofSpellProtection_Base.mdx", + [2000651] = "SPELLS BlessingofStamina_Base.mdx", + [2000652] = "SPELLS BlessingofStrength_Base.mdx", + [2000653] = "SPELLS BlessingofWisdom_Base.mdx", + [2000654] = "SPELLS Blessingofprotection_State_Classic.mdx", + [2000655] = "SPELLS BlindingShot_Impact.mdx", + [2000656] = "SPELLS BlindingShot_Missile.mdx", + [2000657] = "SPELLS Blink_Impact_Chest.mdx", + [2000658] = "SPELLS Blizzard_Impact_Base.mdx", + [2000659] = "SPELLS BloodBoil_Impact_Chest.mdx", + [2000660] = "SPELLS BloodBolt_Chest.mdx", + [2000661] = "SPELLS BloodBolt_Missile_Low.mdx", + [2000662] = "SPELLS BloodLust_Cast_Hand.mdx", + [2000663] = "SPELLS BloodLust_Player_Cast_Head.mdx", + [2000664] = "SPELLS BloodLust_Player_State_Head.mdx", + [2000665] = "SPELLS Bloodlust_State_Hand.mdx", + [2000666] = "SPELLS BloodyExplosion.mdx", + [2000667] = "SPELLS BloodyExplosionGreen.mdx", + [2000668] = "SPELLS BlueRadiationFog.mdx", + [2000669] = "SPELLS Bomb_ExplosionA.mdx", + [2000670] = "SPELLS BoneArmor_Head.mdx", + [2000671] = "SPELLS BoneArmor_Recursive.mdx", + [2000672] = "SPELLS BoneArmor_State_Chest.mdx", + [2000673] = "SPELLS BoulderGiant_Missile.mdx", + [2000674] = "SPELLS Boulder_Missile.mdx", + [2000675] = "SPELLS BrillianceAura.mdx", + [2000676] = "SPELLS Bubble_Drunk.mdx", + [2000677] = "SPELLS BurningIntellect_Impact_Base.mdx", + [2000678] = "SPELLS BurningSpirit_Impact_Base.mdx", + [2000679] = "SPELLS BurningSpirit_Impact_Head.mdx", + [2000680] = "SPELLS BurrowEarth_Brown_Missile.mdx", + [2000681] = "SPELLS BurrowEarth_Hellfire_Missile.mdx", + [2000682] = "SPELLS CallLightning_Impact.mdx", + [2000683] = "SPELLS CatMark.mdx", + [2000684] = "SPELLS ChainLightning_Fel_Impact_Chest.mdx", + [2000685] = "SPELLS ChainLightning_Impact_Chest.mdx", + [2000686] = "SPELLS ChainsofIce_Low_Base.mdx", + [2000687] = "SPELLS ChallengingShout_Cast_Base.mdx", + [2000688] = "SPELLS ChargeTrail.mdx", + [2000689] = "SPELLS CheapShot_Cast_Base.mdx", + [2000690] = "SPELLS CheapShot_Impact_Chest.mdx", + [2000691] = "SPELLS CheapShot_State_Head.mdx", + [2000692] = "SPELLS Cheat_Death.mdx", + [2000693] = "SPELLS ChristmasSnowRain.mdx", + [2000694] = "SPELLS Circle_of_Renewal_Impact.mdx", + [2000695] = "SPELLS Clearcasting_Impact_Chest.mdx", + [2000696] = "SPELLS Cleave_Cast_Base.mdx", + [2000697] = "SPELLS Cleave_Cast_Base_Purple.mdx", + [2000698] = "SPELLS Cleave_Impact_Chest.mdx", + [2000699] = "SPELLS Clense_Base.mdx", + [2000700] = "SPELLS ConeofCold_Geo.mdx", + [2000701] = "SPELLS ConeofCold_Hand.mdx", + [2000702] = "SPELLS ConeofFire_Hand.mdx", + [2000703] = "SPELLS Conflagrate_Impact_Chest.mdx", + [2000704] = "SPELLS Confused_State_Head.mdx", + [2000705] = "SPELLS ConjureItem.mdx", + [2000706] = "SPELLS ConjureItemCast.mdx", + [2000707] = "SPELLS Consume_Magic_Impact.mdx", + [2000708] = "SPELLS CorrosiveSandBreath.mdx", + [2000709] = "SPELLS Corruption_ImpactDot_Med_Base.mdx", + [2000710] = "SPELLS CounterSpell_Impact_Chest.mdx", + [2000711] = "SPELLS CreateSoulstone_Cast.mdx", + [2000712] = "SPELLS Creature_ScourgeRuneCircleCrystal.mdx", + [2000713] = "SPELLS Creature_SpellPortalLarge_Blue.mdx", + [2000714] = "SPELLS Creature_SpellPortalLarge_Green.mdx", + [2000715] = "SPELLS Creature_SpellPortalLarge_Purple.mdx", + [2000716] = "SPELLS Creature_SpellPortalLarge_Red.mdx", + [2000717] = "SPELLS Creature_SpellPortalLarge_Yellow.mdx", + [2000718] = "SPELLS Creature_SpellPortal_Blue.mdx", + [2000719] = "SPELLS Creature_SpellPortal_Green.mdx", + [2000720] = "SPELLS Creature_SpellPortal_LargeShadow.mdx", + [2000721] = "SPELLS Creature_SpellPortal_Purple.mdx", + [2000722] = "SPELLS Creature_SpellPortal_White.mdx", + [2000723] = "SPELLS Creature_SpellPortal_Yellow.mdx", + [2000724] = "SPELLS Cripple_Impact_Base.mdx", + [2000725] = "SPELLS Cripple_State_Chest.mdx", + [2000726] = "SPELLS CthuneEyeAttack.mdx", + [2000727] = "SPELLS CurseElements_Impact_Head.mdx", + [2000728] = "SPELLS CurseOfTongues_Impact.mdx", + [2000729] = "SPELLS CurseofAgony_Head.mdx", + [2000730] = "SPELLS CurseofFrailty_Head.mdx", + [2000731] = "SPELLS CurseofMannoroth_Head.mdx", + [2000732] = "SPELLS CurseofRecklessness_Impact_Chest.mdx", + [2000733] = "SPELLS CycloneEarth_State.mdx", + [2000734] = "SPELLS CycloneFire_State.mdx", + [2000735] = "SPELLS CycloneGeo.mdx", + [2000736] = "SPELLS CycloneGeo2.mdx", + [2000737] = "SPELLS CycloneGeo2_Additive.mdx", + [2000738] = "SPELLS CycloneGeo3.mdx", + [2000739] = "SPELLS CycloneGeo3_Additive.mdx", + [2000740] = "SPELLS CycloneGeo_Additive.mdx", + [2000741] = "SPELLS CycloneRock1.mdx", + [2000742] = "SPELLS CycloneRock2.mdx", + [2000743] = "SPELLS CycloneWater_State.mdx", + [2000744] = "SPELLS Cyclone_Caster_State.mdx", + [2000745] = "SPELLS Cyclone_State.mdx", + [2000746] = "SPELLS DampenMagic_Impact_Base.mdx", + [2000747] = "SPELLS DarkRitual_PreCast_Base.mdx", + [2000748] = "SPELLS DarkmoonVengeance_Impact_Chest.mdx", + [2000749] = "SPELLS DarkmoonVengeance_Impact_Head.mdx", + [2000750] = "SPELLS Darkshade.mdx", + [2000751] = "SPELLS Deadly_Throw_Impact_Chest.mdx", + [2000752] = "SPELLS DeathAndDecay_Area_Base.mdx", + [2000753] = "SPELLS DeathAndDecay_Area_Runes.mdx", + [2000754] = "SPELLS DeathBolt_Missile_Low.mdx", + [2000755] = "SPELLS DeathCoil_Impact_Chest.mdx", + [2000756] = "SPELLS DeathCoil_Missile.mdx", + [2000757] = "SPELLS DeathWish_State_Hand.mdx", + [2000758] = "SPELLS DecisiveStrike_Impact_Chest.mdx", + [2000759] = "SPELLS DefensiveStance_Impact_Chest.mdx", + [2000760] = "SPELLS DemonArmor_Impact_Head.mdx", + [2000761] = "SPELLS DemonBreath_Impact_Head.mdx", + [2000762] = "SPELLS DemonicSacrifice_Felhunter_Chest.mdx", + [2000763] = "SPELLS DemonicSacrifice_Imp_Chest.mdx", + [2000764] = "SPELLS DemonicSacrifice_Succubus_Chest.mdx", + [2000765] = "SPELLS DemonicSacrifice_Voidwalker_Chest.mdx", + [2000766] = "SPELLS DemoralizingShout_Cast_Base.mdx", + [2000767] = "SPELLS DemoralizingShout_Impact_Head.mdx", + [2000768] = "SPELLS DetectInvis_Impact_Base.mdx", + [2000769] = "SPELLS DetectInvis_Impact_Head.mdx", + [2000770] = "SPELLS DetectMagic_Base.mdx", + [2000771] = "SPELLS DetectMagic_Recursive.mdx", + [2000772] = "SPELLS DetectSealth_State_Base.mdx", + [2000773] = "SPELLS DetectStealth_State_Head.mdx", + [2000774] = "SPELLS Deterrence_State_Base.mdx", + [2000775] = "SPELLS DevotionAura_Base.mdx", + [2000776] = "SPELLS DisEnchant_Cast_Hand.mdx", + [2000777] = "SPELLS DisEnchant_PreCast_Hand.mdx", + [2000778] = "SPELLS Disarm_Impact_Chest.mdx", + [2000779] = "SPELLS Disembowel_Impact.mdx", + [2000780] = "SPELLS Dispel_Low_Base.mdx", + [2000781] = "SPELLS Dispel_Low_Recursive.mdx", + [2000782] = "SPELLS Distract_Impact_Base.mdx", + [2000783] = "SPELLS Distract_Impact_Chest.mdx", + [2000784] = "SPELLS DivineBubble_Low_Base.mdx", + [2000785] = "SPELLS DivineIllumination_Base.mdx", + [2000786] = "SPELLS DivineShield_Low_Base.mdx", + [2000787] = "SPELLS DivineShield_Low_Chest.mdx", + [2000788] = "SPELLS DragonFlameBreath.mdx", + [2000789] = "SPELLS DragonFlameBreath180.mdx", + [2000790] = "SPELLS Dreadlord_Carrion_Impact.mdx", + [2000791] = "SPELLS Dreadlord_Carrion_Swarm_Cast.mdx", + [2000792] = "SPELLS DruidMorph_Aqua_Impact_Base.mdx", + [2000793] = "SPELLS DruidMorph_Impact_Base.mdx", + [2000794] = "SPELLS DustCloud_Land.mdx", + [2000795] = "SPELLS DustNova_Cast_Base.mdx", + [2000796] = "SPELLS DynamiteA_Missile.mdx", + [2000797] = "SPELLS DynamiteA_SpellObject.mdx", + [2000798] = "SPELLS ENCHANTMENTS BattleMasterGlow_High.mdx", + [2000799] = "SPELLS ENCHANTMENTS BlackFlame_Low.mdx", + [2000800] = "SPELLS ENCHANTMENTS BlackGlow_High.mdx", + [2000801] = "SPELLS ENCHANTMENTS BlackGlow_Low.mdx", + [2000802] = "SPELLS ENCHANTMENTS BlueFlame_High.mdx", + [2000803] = "SPELLS ENCHANTMENTS BlueFlame_Low.mdx", + [2000804] = "SPELLS ENCHANTMENTS BlueGlow_High.mdx", + [2000805] = "SPELLS ENCHANTMENTS BlueGlow_Low.mdx", + [2000806] = "SPELLS ENCHANTMENTS BlueGlow_Med.mdx", + [2000807] = "SPELLS ENCHANTMENTS DisintigrateGlow_High.mdx", + [2000808] = "SPELLS ENCHANTMENTS ExecutionerGlow_High.mdx", + [2000809] = "SPELLS ENCHANTMENTS GreenFlame_Low.mdx", + [2000810] = "SPELLS ENCHANTMENTS GreenGlow_High.mdx", + [2000811] = "SPELLS ENCHANTMENTS GreenGlow_Low.mdx", + [2000812] = "SPELLS ENCHANTMENTS MongooseGlow_High.mdx", + [2000813] = "SPELLS ENCHANTMENTS PoisonDrip.mdx", + [2000814] = "SPELLS ENCHANTMENTS PurpleFlame_Low.mdx", + [2000815] = "SPELLS ENCHANTMENTS PurpleGlow_High.mdx", + [2000816] = "SPELLS ENCHANTMENTS PurpleGlow_Low.mdx", + [2000817] = "SPELLS ENCHANTMENTS RedFlame_Low.mdx", + [2000818] = "SPELLS ENCHANTMENTS RedGlow_High.mdx", + [2000819] = "SPELLS ENCHANTMENTS RedGlow_Low.mdx", + [2000820] = "SPELLS ENCHANTMENTS Rune_Intellect.mdx", + [2000821] = "SPELLS ENCHANTMENTS SavageryGlow_High.mdx", + [2000822] = "SPELLS ENCHANTMENTS Shaman_Fire.mdx", + [2000823] = "SPELLS ENCHANTMENTS Shaman_Frost.mdx", + [2000824] = "SPELLS ENCHANTMENTS Shaman_Green.mdx", + [2000825] = "SPELLS ENCHANTMENTS Shaman_Purple.mdx", + [2000826] = "SPELLS ENCHANTMENTS Shaman_Red.mdx", + [2000827] = "SPELLS ENCHANTMENTS Shaman_Rock.mdx", + [2000828] = "SPELLS ENCHANTMENTS Shaman_Wind.mdx", + [2000829] = "SPELLS ENCHANTMENTS Shaman_Yellow.mdx", + [2000830] = "SPELLS ENCHANTMENTS SkullBalls.mdx", + [2000831] = "SPELLS ENCHANTMENTS SoulFrostGlow_High.mdx", + [2000832] = "SPELLS ENCHANTMENTS Sparkle_A.mdx", + [2000833] = "SPELLS ENCHANTMENTS SpellSurgeGlow_High.mdx", + [2000834] = "SPELLS ENCHANTMENTS SunFireGlow_High.mdx", + [2000835] = "SPELLS ENCHANTMENTS WhiteFlame_Low.mdx", + [2000836] = "SPELLS ENCHANTMENTS WhiteGlow_High.mdx", + [2000837] = "SPELLS ENCHANTMENTS WhiteGlow_Low.mdx", + [2000838] = "SPELLS ENCHANTMENTS YellowFlame_Low.mdx", + [2000839] = "SPELLS ENCHANTMENTS YellowGlow_High.mdx", + [2000840] = "SPELLS ENCHANTMENTS YellowGlow_Low.mdx", + [2000841] = "SPELLS EagleEye_Impact_Head.mdx", + [2000842] = "SPELLS EarthShield_Impact_Base.mdx", + [2000843] = "SPELLS EarthShield_State_Base.mdx", + [2000844] = "SPELLS EarthShock_Impact_Chest.mdx", + [2000845] = "SPELLS Enchant_Cast_Hand.mdx", + [2000846] = "SPELLS Enchant_PreCast_Hand.mdx", + [2000847] = "SPELLS EndlessRage_Impact_Head.mdx", + [2000848] = "SPELLS EndlessRage_State_Head.mdx", + [2000849] = "SPELLS EnslaveDemon_Impact_Base.mdx", + [2000850] = "SPELLS EnslaveDemon_Impact_Chest.mdx", + [2000851] = "SPELLS EnslaveDemon_Impact_Head.mdx", + [2000852] = "SPELLS EntanglingRoots_State.mdx", + [2000853] = "SPELLS Envenom_Cast.mdx", + [2000854] = "SPELLS Envenom_Impact_Chest.mdx", + [2000855] = "SPELLS ErrorCube.mdx", + [2000856] = "SPELLS Eviscerate_Cast_Hands.mdx", + [2000857] = "SPELLS Eviscerate_Impact_Chest.mdx", + [2000858] = "SPELLS Exorcism_Impact_Chest.mdx", + [2000859] = "SPELLS Expanding_Force_Bubble.mdx", + [2000860] = "SPELLS ExploderTrail.mdx", + [2000861] = "SPELLS Exploding_Stone_Impact.mdx", + [2000862] = "SPELLS ExplosiveGaseous_Nova.mdx", + [2000863] = "SPELLS ExplosiveTrap_Recursive.mdx", + [2000864] = "SPELLS ExposeArmor_Head.mdx", + [2000865] = "SPELLS EyesofBeast_Impact_Head.mdx", + [2000866] = "SPELLS FaerieFire_Impact.mdx", + [2000867] = "SPELLS FarSight_Impact_Base.mdx", + [2000868] = "SPELLS Feint_Impact_Chest.mdx", + [2000869] = "SPELLS FelArmor_Impact_Head.mdx", + [2000870] = "SPELLS Fel_Archimonde_Fire.mdx", + [2000871] = "SPELLS Fel_FireBlast_Impact_Chest.mdx", + [2000872] = "SPELLS Fel_FireBolt_Missile_Low.mdx", + [2000873] = "SPELLS Fel_FireNova_Area.mdx", + [2000874] = "SPELLS Fel_FireNova_State.mdx", + [2000875] = "SPELLS Fel_FireShieldFinal_Impact_Head.mdx", + [2000876] = "SPELLS Fel_FireWard_Impact_Chest.mdx", + [2000877] = "SPELLS Fel_Fire_ImpactDD_High_Chest.mdx", + [2000878] = "SPELLS Fel_Fire_Precast_Hand.mdx", + [2000879] = "SPELLS Fel_Fire_Precast_High_Hand.mdx", + [2000880] = "SPELLS Fel_Fire_Precast_Uber_Hand.mdx", + [2000881] = "SPELLS Fel_FlameBreath.mdx", + [2000882] = "SPELLS Fel_FlameBreath180.mdx", + [2000883] = "SPELLS Fel_FlameCircleEffect.mdx", + [2000884] = "SPELLS Fel_FlameShock_Impact_Chest.mdx", + [2000885] = "SPELLS Fel_FlamestrikeSmall_Impact_Base.mdx", + [2000886] = "SPELLS Fel_Flamestrike_Impact_Base.mdx", + [2000887] = "SPELLS Fel_HellFire_Area_Base.mdx", + [2000888] = "SPELLS Fel_HellFire_FirePuff_Caster_Base.mdx", + [2000889] = "SPELLS Fel_HellFire_Impact_Base.mdx", + [2000890] = "SPELLS Fel_HellFire_Impact_Caster_Base.mdx", + [2000891] = "SPELLS Fel_Immolate_Impact_Chest.mdx", + [2000892] = "SPELLS Fel_Immolate_State_Base.mdx", + [2000893] = "SPELLS Fel_LowPolyFireAnim.mdx", + [2000894] = "SPELLS Fel_PyroBlast_Missile.mdx", + [2000895] = "SPELLS Fel_RainOfFire_Impact_Base.mdx", + [2000896] = "SPELLS Fel_RainOfFire_Missile.mdx", + [2000897] = "SPELLS FireBlast_Blue_Impact_Chest.mdx", + [2000898] = "SPELLS FireBlast_Impact_Chest.mdx", + [2000899] = "SPELLS FireBolt_Blue_ImpactDD_Med_Chest.mdx", + [2000900] = "SPELLS FireBolt_Blue_Missile_Low.mdx", + [2000901] = "SPELLS FireBolt_ImpactDD_Med_Chest.mdx", + [2000902] = "SPELLS FireBolt_Missile_Low.mdx", + [2000903] = "SPELLS FireForceShield_Blue.mdx", + [2000904] = "SPELLS FireForceShield_Dark.mdx", + [2000905] = "SPELLS FireForceShield_Green.mdx", + [2000906] = "SPELLS FireForceShield_Purple.mdx", + [2000907] = "SPELLS FireForceShield_Red.mdx", + [2000908] = "SPELLS FireForceShield_Yellow.mdx", + [2000909] = "SPELLS FireNova_Area.mdx", + [2000910] = "SPELLS FireNova_Blue_Area.mdx", + [2000911] = "SPELLS FireNova_Blue_State.mdx", + [2000912] = "SPELLS FireNova_State.mdx", + [2000913] = "SPELLS FireReflect_State_Chest.mdx", + [2000914] = "SPELLS FireResistance_Impact_Base.mdx", + [2000915] = "SPELLS FireShield_Impact_Head.mdx", + [2000916] = "SPELLS FireShot_Missile.mdx", + [2000917] = "SPELLS FireStrike_Missile_Low.mdx", + [2000918] = "SPELLS FireWard_Impact_Chest.mdx", + [2000919] = "SPELLS Fire_Blue_ImpactDD_High_Chest.mdx", + [2000920] = "SPELLS Fire_Blue_Precast_Hand.mdx", + [2000921] = "SPELLS Fire_Blue_Precast_High_Hand.mdx", + [2000922] = "SPELLS Fire_Blue_Precast_Uber_Hand.mdx", + [2000923] = "SPELLS Fire_Cast_Hand.mdx", + [2000924] = "SPELLS Fire_DOT_State_Chest.mdx", + [2000925] = "SPELLS Fire_Form_Precast.mdx", + [2000926] = "SPELLS Fire_ImpactDD_Chest.mdx", + [2000927] = "SPELLS Fire_ImpactDD_High_Base.mdx", + [2000928] = "SPELLS Fire_ImpactDD_High_Chest.mdx", + [2000929] = "SPELLS Fire_ImpactDD_Low_Chest.mdx", + [2000930] = "SPELLS Fire_ImpactDD_Med_Chest.mdx", + [2000931] = "SPELLS Fire_ImpactDD_Uber_Base.mdx", + [2000932] = "SPELLS Fire_ImpactDD_Uber_Chest.mdx", + [2000933] = "SPELLS Fire_PreCast_High_Hand.mdx", + [2000934] = "SPELLS Fire_PreCast_Low_Hand.mdx", + [2000935] = "SPELLS Fire_PreCast_Med_Hand.mdx", + [2000936] = "SPELLS Fire_PreCast_Uber_Hand.mdx", + [2000937] = "SPELLS Fire_Precast_Hand.mdx", + [2000938] = "SPELLS Fire_SmokeTrail.mdx", + [2000939] = "SPELLS Fireball_Blue_Missile_High.mdx", + [2000940] = "SPELLS Fireball_Missile_High.mdx", + [2000941] = "SPELLS Fireball_Missile_Low.mdx", + [2000942] = "SPELLS Firecrackers_Thrown.mdx", + [2000943] = "SPELLS Fireshieldfinal_Impact_Head.mdx", + [2000944] = "SPELLS Firework_RomanCandle_Impact_Chest_01.mdx", + [2000945] = "SPELLS Firework_RomanCandle_Missle_01.mdx", + [2000946] = "SPELLS Fireworks_Blue_01.mdx", + [2000947] = "SPELLS Fireworks_Green_01.mdx", + [2000948] = "SPELLS Fireworks_RWB_01.mdx", + [2000949] = "SPELLS Fireworks_RedStreaks_01.mdx", + [2000950] = "SPELLS Fireworks_Red_01.mdx", + [2000951] = "SPELLS Fireworks_YellowRose.mdx", + [2000952] = "SPELLS FireySeductress.mdx", + [2000953] = "SPELLS FirstAid_Hand.mdx", + [2000954] = "SPELLS FirstAid__Impact_Base.mdx", + [2000955] = "SPELLS FistOfJustice_Cast_Base.mdx", + [2000956] = "SPELLS FistOfJustice_Impact_Chest.mdx", + [2000957] = "SPELLS FlameBreath.mdx", + [2000958] = "SPELLS FlameBreath180.mdx", + [2000959] = "SPELLS FlameBreath180_Blue.mdx", + [2000960] = "SPELLS FlameBreathMFF.mdx", + [2000961] = "SPELLS FlameBreath_Blue.mdx", + [2000962] = "SPELLS FlameCircleEffect.mdx", + [2000963] = "SPELLS FlameCircleEffect_Blue.mdx", + [2000964] = "SPELLS FlameShock_Blue_Impact_Chest.mdx", + [2000965] = "SPELLS FlameShock_Impact_Chest.mdx", + [2000966] = "SPELLS FlameStrike_ImpactDD_Med_Base.mdx", + [2000967] = "SPELLS FlamestrikeSmall_Blue_Impact_Base.mdx", + [2000968] = "SPELLS FlamestrikeSmall_Impact_Base.mdx", + [2000969] = "SPELLS Flamestrike_Area.mdx", + [2000970] = "SPELLS Flamestrike_Blue_Impact_Base.mdx", + [2000971] = "SPELLS Flamestrike_Impact.mdx", + [2000972] = "SPELLS Flamestrike_Impact_Base.mdx", + [2000973] = "SPELLS Flare_Cast_Base.mdx", + [2000974] = "SPELLS Flare_State_Base.mdx", + [2000975] = "SPELLS FlashHeal_Base.mdx", + [2000976] = "SPELLS FocusedCasting_State_Chest.mdx", + [2000977] = "SPELLS Food_HealEffect_Base.mdx", + [2000978] = "SPELLS ForceShield_AndXplosion.mdx", + [2000979] = "SPELLS ForceofNature_Impact.mdx", + [2000980] = "SPELLS FrostArmorEffect_Impact_Chest.mdx", + [2000981] = "SPELLS FrostArmor_Low_Head.mdx", + [2000982] = "SPELLS FrostBreath.mdx", + [2000983] = "SPELLS FrostReflect_State_Chest.mdx", + [2000984] = "SPELLS FrostShot_Missile.mdx", + [2000985] = "SPELLS FrostSlash_Base_Cast.mdx", + [2000986] = "SPELLS FrostTrap_Aura.mdx", + [2000987] = "SPELLS FrostTrap_Aura_noMist.mdx", + [2000988] = "SPELLS FrostWard_Impact_Chest.mdx", + [2000989] = "SPELLS Frost_Form_Precast.mdx", + [2000990] = "SPELLS Frost_Nova_area.mdx", + [2000991] = "SPELLS Frost_Nova_state.mdx", + [2000992] = "SPELLS Frostbolt.mdx", + [2000993] = "SPELLS GaseousForm.mdx", + [2000994] = "SPELLS Ghost_state.mdx", + [2000995] = "SPELLS Ghost_state2.mdx", + [2000996] = "SPELLS GhostlyStrike_Impact_Chest.mdx", + [2000997] = "SPELLS GiantInsectSwarm_State_Chest.mdx", + [2000998] = "SPELLS GiantInsectSwarm_State_Ground.mdx", + [2000999] = "SPELLS GiftOfNaaru.mdx", + [2001000] = "SPELLS GiftWaterSpirit_Impact_Base.mdx", + [2001001] = "SPELLS Goblin_Weather_Machine_Cloudy.mdx", + [2001002] = "SPELLS Goblin_Weather_Machine_Lightning.mdx", + [2001003] = "SPELLS Goblin_Weather_Machine_Rain.mdx", + [2001004] = "SPELLS Goblin_Weather_Machine_Snow.mdx", + [2001005] = "SPELLS Goblin_Weather_Machine_Sunny.mdx", + [2001006] = "SPELLS GoldArenaflag_spell.mdx", + [2001007] = "SPELLS GoldHordeflag_spell.mdx", + [2001008] = "SPELLS GooBolt_Missile_Low.mdx", + [2001009] = "SPELLS Gouge_Precast_State_Hand.mdx", + [2001010] = "SPELLS GreaterHeal_Low_Base.mdx", + [2001011] = "SPELLS GreenArenaflag_spell.mdx", + [2001012] = "SPELLS GreenGhost_state.mdx", + [2001013] = "SPELLS GreenHordeflag_spell.mdx", + [2001014] = "SPELLS GreenRadiationFog.mdx", + [2001015] = "SPELLS GroundDust.mdx", + [2001016] = "SPELLS GroundingTotem_Impact.mdx", + [2001017] = "SPELLS HOLIDAYS Valentines_BrokenHeart.mdx", + [2001018] = "SPELLS HOLIDAYS Valentines_CupidsArrow_Impact_Chest.mdx", + [2001019] = "SPELLS HOLIDAYS Valentines_CupidsArrow_Missle.mdx", + [2001020] = "SPELLS HOLIDAYS Valentines_LookingForLoveHeart.mdx", + [2001021] = "SPELLS HOLIDAYS Valentines_RoseShower_Impact_Base.mdx", + [2001022] = "SPELLS HOLIDAYS Valentines_SpellObject_CupidsBow.mdx", + [2001023] = "SPELLS HarmUndeadAura_Base.mdx", + [2001024] = "SPELLS HeadSplitter_Impact_Chest.mdx", + [2001025] = "SPELLS HeadlesshorsemanHelmet.mdx", + [2001026] = "SPELLS HealRag_State_Chest.mdx", + [2001027] = "SPELLS Heal_Low_Base.mdx", + [2001028] = "SPELLS HealingAura_Base.mdx", + [2001029] = "SPELLS HellFire_Area_Base.mdx", + [2001030] = "SPELLS HellFire_Blue_FirePuff_Caster_Base.mdx", + [2001031] = "SPELLS HellFire_Blue_Impact_Base.mdx", + [2001032] = "SPELLS HellFire_Blue_Impact_Caster_Base.mdx", + [2001033] = "SPELLS HellFire_Channel_Base.mdx", + [2001034] = "SPELLS HellFire_FirePuff_Caster_Base.mdx", + [2001035] = "SPELLS HellFire_Impact_Caster_Base.mdx", + [2001036] = "SPELLS HellFire_Impact_Head.mdx", + [2001037] = "SPELLS HellfIre_Impact_Base.mdx", + [2001038] = "SPELLS Heroism_Cast.mdx", + [2001039] = "SPELLS Heroism_State.mdx", + [2001040] = "SPELLS HitSplatFire.mdx", + [2001041] = "SPELLS HolyDivineShieldBlue_State_Base.mdx", + [2001042] = "SPELLS HolyDivineShieldDark_State_Base.mdx", + [2001043] = "SPELLS HolyDivineShieldGreen_State_Base.mdx", + [2001044] = "SPELLS HolyDivineShieldPurple_State_Base.mdx", + [2001045] = "SPELLS HolyDivineShieldRed_State_Base.mdx", + [2001046] = "SPELLS HolyDivineShield_State_Base.mdx", + [2001047] = "SPELLS HolyLight_Impact_Head.mdx", + [2001048] = "SPELLS HolyLight_Low_Head.mdx", + [2001049] = "SPELLS HolyNova_Impact_Base.mdx", + [2001050] = "SPELLS HolyProtection_Chest.mdx", + [2001051] = "SPELLS HolyReflect_State_Chest.mdx", + [2001052] = "SPELLS HolyShield_State.mdx", + [2001053] = "SPELLS HolySmite_Low_Chest.mdx", + [2001054] = "SPELLS HolyWard_Impact_Chest.mdx", + [2001055] = "SPELLS HolyWordHeal_Base.mdx", + [2001056] = "SPELLS HolyWordShield_Base.mdx", + [2001057] = "SPELLS HolyWord_Fortitude_Impact_Base.mdx", + [2001058] = "SPELLS Holy_Form_Precast.mdx", + [2001059] = "SPELLS Holy_Hammer_missile.mdx", + [2001060] = "SPELLS Holy_ImpactDD_High_Base.mdx", + [2001061] = "SPELLS Holy_ImpactDD_High_Chest.mdx", + [2001062] = "SPELLS Holy_ImpactDD_Low_Chest.mdx", + [2001063] = "SPELLS Holy_ImpactDD_Med_Chest.mdx", + [2001064] = "SPELLS Holy_ImpactDD_Uber_Base.mdx", + [2001065] = "SPELLS Holy_ImpactDD_Uber_Chest.mdx", + [2001066] = "SPELLS Holy_Missile_High.mdx", + [2001067] = "SPELLS Holy_Missile_Low.mdx", + [2001068] = "SPELLS Holy_Missile_Med.mdx", + [2001069] = "SPELLS Holy_Missile_Uber.mdx", + [2001070] = "SPELLS Holy_Precast_High_Base.mdx", + [2001071] = "SPELLS Holy_Precast_High_Hand.mdx", + [2001072] = "SPELLS Holy_Precast_Low_Hand.mdx", + [2001073] = "SPELLS Holy_Precast_Med_Hand.mdx", + [2001074] = "SPELLS Holy_Precast_Uber_Base.mdx", + [2001075] = "SPELLS Holy_Precast_Uber_Hand.mdx", + [2001076] = "SPELLS HordeCTFflag_spell.mdx", + [2001077] = "SPELLS HuntersMark_Impact_Chest.mdx", + [2001078] = "SPELLS HuntersMark_Impact_Head.mdx", + [2001079] = "SPELLS IceArmor_Low_Head.mdx", + [2001080] = "SPELLS IceBarrier_State.mdx", + [2001081] = "SPELLS IceNuke_Base_Impact.mdx", + [2001082] = "SPELLS IceNuke_Missile.mdx", + [2001083] = "SPELLS IcePrison_Base.mdx", + [2001084] = "SPELLS IceShield_State.mdx", + [2001085] = "SPELLS IceSpike_Impact_Base.mdx", + [2001086] = "SPELLS Ice_Barrier_State_Chest.mdx", + [2001087] = "SPELLS Ice_Cast_Low_Hand.mdx", + [2001088] = "SPELLS Ice_ImpactDD_High_Chest.mdx", + [2001089] = "SPELLS Ice_ImpactDD_Low_Chest.mdx", + [2001090] = "SPELLS Ice_ImpactDD_Med_Chest.mdx", + [2001091] = "SPELLS Ice_ImpactDD_Uber_Chest.mdx", + [2001092] = "SPELLS Ice_Lance_Impact.mdx", + [2001093] = "SPELLS Ice_Lance_Missile.mdx", + [2001094] = "SPELLS Ice_Missile_High.mdx", + [2001095] = "SPELLS Ice_Missile_Low.mdx", + [2001096] = "SPELLS Ice_Missile_Med.mdx", + [2001097] = "SPELLS Ice_Missile_Uber.mdx", + [2001098] = "SPELLS Ice_Precast_High_Base.mdx", + [2001099] = "SPELLS Ice_Precast_High_Hand.mdx", + [2001100] = "SPELLS Ice_Precast_High_Head.mdx", + [2001101] = "SPELLS Ice_Precast_Low_Hand.mdx", + [2001102] = "SPELLS Ice_Precast_Med_Hand.mdx", + [2001103] = "SPELLS Ice_Precast_Uber_Base.mdx", + [2001104] = "SPELLS Ice_Precast_Uber_Hand.mdx", + [2001105] = "SPELLS Ice_Precast_Uber_Head.mdx", + [2001106] = "SPELLS IcyEnchant_High.mdx", + [2001107] = "SPELLS Immolate_Blue_Impact_Chest.mdx", + [2001108] = "SPELLS Immolate_Blue_State_Base.mdx", + [2001109] = "SPELLS Immolate_Impact_Chest.mdx", + [2001110] = "SPELLS Immolate_State.mdx", + [2001111] = "SPELLS Immolate_State_Base.mdx", + [2001112] = "SPELLS ImmolationTrap_Recursive.mdx", + [2001113] = "SPELLS Incinerate_Impact_Base.mdx", + [2001114] = "SPELLS Incinerate_Low_Base.mdx", + [2001115] = "SPELLS Incinerate_Low_Base_BossAOE.mdx", + [2001116] = "SPELLS Infernal_Ball.mdx", + [2001117] = "SPELLS Infernal_Flare_Rec.mdx", + [2001118] = "SPELLS Infernal_Geo.mdx", + [2001119] = "SPELLS Infernal_Impact.mdx", + [2001120] = "SPELLS Infernal_Impact_Base.mdx", + [2001121] = "SPELLS Infernal_Smoke_Rec.mdx", + [2001122] = "SPELLS InnerFire_Base.mdx", + [2001123] = "SPELLS InnerFocus_Impact_Chest.mdx", + [2001124] = "SPELLS InnerRage_Impact_Chest.mdx", + [2001125] = "SPELLS InsectSwarm_State_Chest.mdx", + [2001126] = "SPELLS InterveneTrail.mdx", + [2001127] = "SPELLS Intervene_Impact_Chest.mdx", + [2001128] = "SPELLS IntimidatingShout_Cast_Base.mdx", + [2001129] = "SPELLS IntimidatingShout_Impact_Head.mdx", + [2001130] = "SPELLS Invisibility.mdx", + [2001131] = "SPELLS Invisibility_Impact_Base.mdx", + [2001132] = "SPELLS Invisibility_Impact_Chest.mdx", + [2001133] = "SPELLS Invisible.mdx", + [2001134] = "SPELLS Item_Bread.mdx", + [2001135] = "SPELLS Judgement_Impact_Chest.mdx", + [2001136] = "SPELLS Kick_Chest_Impact.mdx", + [2001137] = "SPELLS KidneyShot_Base_Cast.mdx", + [2001138] = "SPELLS Lacerate_Impact.mdx", + [2001139] = "SPELLS LargeBlueGreenRadiationFog.mdx", + [2001140] = "SPELLS LargeGreenRadiationFog.mdx", + [2001141] = "SPELLS Lash_Cast_Base.mdx", + [2001142] = "SPELLS LayonHands_Low_Chest.mdx", + [2001143] = "SPELLS LayonHands_Low_Head.mdx", + [2001144] = "SPELLS Learn_Impact_Base.mdx", + [2001145] = "SPELLS LesserHeal_Base.mdx", + [2001146] = "SPELLS LevelUpSpell LevelUpSpell.mdx", + [2001147] = "SPELLS LevelUp LevelUp.mdx", + [2001148] = "SPELLS Levitate_Impact_Base.mdx", + [2001149] = "SPELLS LifeBloom_Impact.mdx", + [2001150] = "SPELLS LifeBloom_State.mdx", + [2001151] = "SPELLS LifeDrain_Missile.mdx", + [2001152] = "SPELLS LifeTap.mdx", + [2001153] = "SPELLS Lifetap_State_Chest.mdx", + [2001154] = "SPELLS LightningBoltIvus_Missile.mdx", + [2001155] = "SPELLS LightningBolt_Impact_Chest.mdx", + [2001156] = "SPELLS LightningBolt_Missile.mdx", + [2001157] = "SPELLS LightningShield_Impact_Base.mdx", + [2001158] = "SPELLS LightningShield_State_Base.mdx", + [2001159] = "SPELLS LightningStorm_CloudLow_State.mdx", + [2001160] = "SPELLS LightningStorm_Cloud_State.mdx", + [2001161] = "SPELLS LightningStreak_Missile.mdx", + [2001162] = "SPELLS Lightning_Cast_Hand.mdx", + [2001163] = "SPELLS Lightning_Fel_Cast_Hand.mdx", + [2001164] = "SPELLS Lightning_Fel_PreCast_Low_Hand.mdx", + [2001165] = "SPELLS Lightning_PreCast_Low_Hand.mdx", + [2001166] = "SPELLS Lightning_Ring_Nova.mdx", + [2001167] = "SPELLS LowPolyFireAnim_Blue.mdx", + [2001168] = "SPELLS LoyaltyDown_Impact_Base.mdx", + [2001169] = "SPELLS LoyaltyDown_Impact_Head.mdx", + [2001170] = "SPELLS LoyaltyUp_Impact_Base.mdx", + [2001171] = "SPELLS LoyaltyUp_Impact_Head.mdx", + [2001172] = "SPELLS MageArmor_Impact_Head.mdx", + [2001173] = "SPELLS MagePortal_Blank.mdx", + [2001174] = "SPELLS Mage_Dragons_Breath.mdx", + [2001175] = "SPELLS MagicNet_Missile.mdx", + [2001176] = "SPELLS MagicNet_State.mdx", + [2001177] = "SPELLS MagicStoneHelmet_Green.mdx", + [2001178] = "SPELLS MagicStoneHelmet_Red.mdx", + [2001179] = "SPELLS MagicUnlock.mdx", + [2001180] = "SPELLS Magic_Cast_Hand.mdx", + [2001181] = "SPELLS Magic_PreCast_Hand.mdx", + [2001182] = "SPELLS MagtheradonCeilingChunk.mdx", + [2001183] = "SPELLS Maim_Impact_Chest.mdx", + [2001184] = "SPELLS Mame_Impact.mdx", + [2001185] = "SPELLS ManaBurn_Chest.mdx", + [2001186] = "SPELLS ManaFunnel_Impact_Chest.mdx", + [2001187] = "SPELLS ManaInfuse_Base.mdx", + [2001188] = "SPELLS ManaShield_State_Base.mdx", + [2001189] = "SPELLS ManaShield_State_Chest.mdx", + [2001190] = "SPELLS ManaShot_Missile.mdx", + [2001191] = "SPELLS ManaTideInfuse_Base.mdx", + [2001192] = "SPELLS Mana_ImpactDot_Chest.mdx", + [2001193] = "SPELLS Mangle_Impact.mdx", + [2001194] = "SPELLS MarkofBeast_Impact_Head.mdx", + [2001195] = "SPELLS MarkofWild_Impact_Head.mdx", + [2001196] = "SPELLS Mass_Dispell_Impact.mdx", + [2001197] = "SPELLS Maul.mdx", + [2001198] = "SPELLS MaulCasterBase.mdx", + [2001199] = "SPELLS MaulImpact.mdx", + [2001200] = "SPELLS Meteor_Ball_Missile.mdx", + [2001201] = "SPELLS Meteor_Impact_Base.mdx", + [2001202] = "SPELLS Meteor_Impact_Base_Red.mdx", + [2001203] = "SPELLS MightAura_Impact_Base.mdx", + [2001204] = "SPELLS MindBlast_Head.mdx", + [2001205] = "SPELLS MindRot_Head.mdx", + [2001206] = "SPELLS MiningPick_SpellObject.mdx", + [2001207] = "SPELLS Misdirection_Impact_Head.mdx", + [2001208] = "SPELLS Missile_Axe_1HOutlandRaidD06.mdx", + [2001209] = "SPELLS Missile_Axe_Copper.mdx", + [2001210] = "SPELLS Missile_Bomb.mdx", + [2001211] = "SPELLS Missile_Boomerang.mdx", + [2001212] = "SPELLS Missile_Hammer.mdx", + [2001213] = "SPELLS Missile_LeatherBall.mdx", + [2001214] = "SPELLS Missile_SawBlade.mdx", + [2001215] = "SPELLS Missile_Snowball.mdx", + [2001216] = "SPELLS Missile_Thorns.mdx", + [2001217] = "SPELLS Missile_Wave_Arcane.mdx", + [2001218] = "SPELLS Missile_Wave_Fire.mdx", + [2001219] = "SPELLS Missile_Wave_Holy.mdx", + [2001220] = "SPELLS Missile_Wave_Nature.mdx", + [2001221] = "SPELLS Missile_Wave_Shadow.mdx", + [2001222] = "SPELLS Missile_Wave_Water.mdx", + [2001223] = "SPELLS Missile_Wave_WaterGreen.mdx", + [2001224] = "SPELLS Missile_Wrench.mdx", + [2001225] = "SPELLS Missle_Rocket.mdx", + [2001226] = "SPELLS MoltenBlast_Missile.mdx", + [2001227] = "SPELLS MoltenBlast_Missile_Lvl2.mdx", + [2001228] = "SPELLS MoltenBlast_Missile_Lvl3.mdx", + [2001229] = "SPELLS Molten_Armor_Head.mdx", + [2001230] = "SPELLS MoonBeamBlue_Impact_Base.mdx", + [2001231] = "SPELLS MoonBeamRed_Impact_Base.mdx", + [2001232] = "SPELLS MoonBeam_Impact_Base.mdx", + [2001233] = "SPELLS Moonfire_Impact_Base.mdx", + [2001234] = "SPELLS MovementImmunity_Base.mdx", + [2001235] = "SPELLS Mug_Missile.mdx", + [2001236] = "SPELLS Mug_Missile_HitBounce.mdx", + [2001237] = "SPELLS MultiShot_Impact.mdx", + [2001238] = "SPELLS MultiShot_Missile.mdx", + [2001239] = "SPELLS Mutilate_Impact_Chest.mdx", + [2001240] = "SPELLS NatureReflect_State_Chest.mdx", + [2001241] = "SPELLS NatureResistance_Impact_Base.mdx", + [2001242] = "SPELLS NatureWard_Impact_Chest.mdx", + [2001243] = "SPELLS Nature_Cast_Hand.mdx", + [2001244] = "SPELLS Nature_Form_Precast.mdx", + [2001245] = "SPELLS Nature_PreCast_Low_Hand.mdx", + [2001246] = "SPELLS Nature_Precast_Chest.mdx", + [2001247] = "SPELLS NaxxramasStrike_ImpactDD_Med_Base.mdx", + [2001248] = "SPELLS NefarianFlameBreath.mdx", + [2001249] = "SPELLS NefarianFlameBreath_Impact.mdx", + [2001250] = "SPELLS Nefarian_Impact_Base.mdx", + [2001251] = "SPELLS Nefarian_State_Base.mdx", + [2001252] = "SPELLS Net_Missile.mdx", + [2001253] = "SPELLS Net_State.mdx", + [2001254] = "SPELLS NeutralCTFflag_spell.mdx", + [2001255] = "SPELLS Nightbane_Area_Base.mdx", + [2001256] = "SPELLS Nightbane_Bone_Missile.mdx", + [2001257] = "SPELLS Nightbane_Bone_Spurs.mdx", + [2001258] = "SPELLS Nightbane_Breath.mdx", + [2001259] = "SPELLS Nightbane_Fire_Missile.mdx", + [2001260] = "SPELLS Nightmare_Impact_Base.mdx", + [2001261] = "SPELLS NoName_Area.mdx", + [2001262] = "SPELLS NullifyDisease_Base.mdx", + [2001263] = "SPELLS NullifyPoison_Base.mdx", + [2001264] = "SPELLS Onyxia_Impact_Base.mdx", + [2001265] = "SPELLS OrangeRadiationFog.mdx", + [2001266] = "SPELLS PainSuppression_State.mdx", + [2001267] = "SPELLS Parachute_Wings_Head.mdx", + [2001268] = "SPELLS Pestilence_Impact_Chest.mdx", + [2001269] = "SPELLS PiercingHowl_Impact_Head.mdx", + [2001270] = "SPELLS PiercingStrike.mdx", + [2001271] = "SPELLS PiercingStrike_Cast_Hand.mdx", + [2001272] = "SPELLS PoisonElemental_Impact_Base.mdx", + [2001273] = "SPELLS PoisonShield_State_Base.mdx", + [2001274] = "SPELLS PoisonShot_Missile.mdx", + [2001275] = "SPELLS Poison_Cloud_Grobbulus.mdx", + [2001276] = "SPELLS Poison_ImpactDot_Med_Base.mdx", + [2001277] = "SPELLS Poison_ImpactDot_Med_Chest.mdx", + [2001278] = "SPELLS Poison_Impact_Chest.mdx", + [2001279] = "SPELLS Polymorph_Impact_Base.mdx", + [2001280] = "SPELLS PotionA_SpellObject.mdx", + [2001281] = "SPELLS PotionB_SpellObject.mdx", + [2001282] = "SPELLS PrayerofHealing_Chest.mdx", + [2001283] = "SPELLS PrayerofMending_Impact_Head.mdx", + [2001284] = "SPELLS ProtectionFromFire_Chest.mdx", + [2001285] = "SPELLS ProtectionFromNature_Chest.mdx", + [2001286] = "SPELLS Purge_Impact_Chest.mdx", + [2001287] = "SPELLS Purge_New_Impact_Chest.mdx", + [2001288] = "SPELLS Purify_Base.mdx", + [2001289] = "SPELLS PurpleGhost_state.mdx", + [2001290] = "SPELLS PyroBlast_Blue_Missile.mdx", + [2001291] = "SPELLS PyroBlast_Missile.mdx", + [2001292] = "SPELLS Rag_FireNova_Area.mdx", + [2001293] = "SPELLS RainOfCandys_Impact_Base.mdx", + [2001294] = "SPELLS RainOfFIre_Impact_Base.mdx", + [2001295] = "SPELLS RainOfFire_Missile.mdx", + [2001296] = "SPELLS Rake.mdx", + [2001297] = "SPELLS Rampage_State_Head.mdx", + [2001298] = "SPELLS RapidFire_Base.mdx", + [2001299] = "SPELLS Readiness_Impact_Chest.mdx", + [2001300] = "SPELLS Recklessness_Impact_Chest.mdx", + [2001301] = "SPELLS RedGhost_state.mdx", + [2001302] = "SPELLS RedRadiationFog.mdx", + [2001303] = "SPELLS Reddustcloud.mdx", + [2001304] = "SPELLS Redemption_Base.mdx", + [2001305] = "SPELLS Rejuvenation_Impact_Base.mdx", + [2001306] = "SPELLS RemoveCurse_Base.mdx", + [2001307] = "SPELLS Renew_Base.mdx", + [2001308] = "SPELLS Renew_Chest.mdx", + [2001309] = "SPELLS ReputationLevelUp.mdx", + [2001310] = "SPELLS ResFX.mdx", + [2001311] = "SPELLS ResistFrost_Chest.mdx", + [2001312] = "SPELLS Resist_Immune_Effect.mdx", + [2001313] = "SPELLS Restoration_Impact_Base.mdx", + [2001314] = "SPELLS Resurrection_Low_Base.mdx", + [2001315] = "SPELLS Retaliation_State_Chest.mdx", + [2001316] = "SPELLS RetributionAuraRed_Base.mdx", + [2001317] = "SPELLS RetributionAura_Base.mdx", + [2001318] = "SPELLS RevivePet_Impact_Base.mdx", + [2001319] = "SPELLS RibbonTrail.mdx", + [2001320] = "SPELLS RighteousFury_Chest.mdx", + [2001321] = "SPELLS RighteousnessAura_Base.mdx", + [2001322] = "SPELLS RitualSummoning_PreCast_Base.mdx", + [2001323] = "SPELLS Ritual_Arcane_PreCast_Base.mdx", + [2001324] = "SPELLS Ritual_Fire_PreCast_Base.mdx", + [2001325] = "SPELLS Ritual_Frost_PreCast_Base.mdx", + [2001326] = "SPELLS RocketLauncher_Cast.mdx", + [2001327] = "SPELLS RocketLauncher_PreCast.mdx", + [2001328] = "SPELLS Rocketblast.mdx", + [2001329] = "SPELLS RockyFrost_Nova_state.mdx", + [2001330] = "SPELLS RomanCandle_A_01.mdx", + [2001331] = "SPELLS SandVortex_State_Base.mdx", + [2001332] = "SPELLS Sap_Cast_Base.mdx", + [2001333] = "SPELLS Sap_Impact_Chest.mdx", + [2001334] = "SPELLS Sap_State_Head.mdx", + [2001335] = "SPELLS SavageBlow_Impact_Chest.mdx", + [2001336] = "SPELLS Scorch_Low_Chest.mdx", + [2001337] = "SPELLS ScorpidShot_Missile.mdx", + [2001338] = "SPELLS ScorpidSting_Impact_Base.mdx", + [2001339] = "SPELLS SealOfFury_Impact_Base.mdx", + [2001340] = "SPELLS SealOfMight_Impact_Base.mdx", + [2001341] = "SPELLS SealOfProtection_Impact_Base.mdx", + [2001342] = "SPELLS SealOfSacrifice_Impact_Base.mdx", + [2001343] = "SPELLS SealOfSalvation_Impact_Base.mdx", + [2001344] = "SPELLS SealOfWisdom_Impact_Base.mdx", + [2001345] = "SPELLS SealOfWrath_Impact_Base.mdx", + [2001346] = "SPELLS SealofBlood_Impact_Base.mdx", + [2001347] = "SPELLS SealofCrusader_Impact.mdx", + [2001348] = "SPELLS SealofLight_Impact_Base.mdx", + [2001349] = "SPELLS SealofMight_Low_Base.mdx", + [2001350] = "SPELLS SealofRighteous_Impact_Base.mdx", + [2001351] = "SPELLS SealofVengeance_Impact_Base.mdx", + [2001352] = "SPELLS Seduction_State_Head.mdx", + [2001353] = "SPELLS SeedOfCorruption_State.mdx", + [2001354] = "SPELLS SeepingGaseous_Fel_Nova.mdx", + [2001355] = "SPELLS SeepingGaseous_Nova.mdx", + [2001356] = "SPELLS SenseDemons_Impact_Head.mdx", + [2001357] = "SPELLS ShadesofDarkness_Cast.mdx", + [2001358] = "SPELLS ShadowBolt_Chest_Impact.mdx", + [2001359] = "SPELLS ShadowBolt_Missile.mdx", + [2001360] = "SPELLS ShadowBolt_Missile_NoRibbon.mdx", + [2001361] = "SPELLS ShadowMissile.mdx", + [2001362] = "SPELLS ShadowProtection_Chest.mdx", + [2001363] = "SPELLS ShadowReflect_State_Chest.mdx", + [2001364] = "SPELLS ShadowShield_Impact.mdx", + [2001365] = "SPELLS ShadowShield_State_Base.mdx", + [2001366] = "SPELLS ShadowSteps_FX.mdx", + [2001367] = "SPELLS ShadowStrike_Impact_Chest.mdx", + [2001368] = "SPELLS ShadowWard_Impact_Chest.mdx", + [2001369] = "SPELLS ShadowWordBefuddle_Head.mdx", + [2001370] = "SPELLS ShadowWordDominate_Chest.mdx", + [2001371] = "SPELLS ShadowWordFumble_Head.mdx", + [2001372] = "SPELLS ShadowWordPain_Chest.mdx", + [2001373] = "SPELLS ShadowWordSilence_Breath.mdx", + [2001374] = "SPELLS ShadowWord_Death_Impact.mdx", + [2001375] = "SPELLS Shadow_DotParticle.mdx", + [2001376] = "SPELLS Shadow_Fissure_Base.mdx", + [2001377] = "SPELLS Shadow_Form_Precast.mdx", + [2001378] = "SPELLS Shadow_Frost_Weapon_Effect.mdx", + [2001379] = "SPELLS Shadow_ImpactBuff_Base.mdx", + [2001380] = "SPELLS Shadow_ImpactDD_High_Chest.mdx", + [2001381] = "SPELLS Shadow_ImpactDD_Low_Chest.mdx", + [2001382] = "SPELLS Shadow_ImpactDD_Med_Base.mdx", + [2001383] = "SPELLS Shadow_ImpactDD_Med_Chest.mdx", + [2001384] = "SPELLS Shadow_ImpactDD_Uber_Chest.mdx", + [2001385] = "SPELLS Shadow_ImpactDot_Med_Chest.mdx", + [2001386] = "SPELLS Shadow_ImpactDot_Med_Head.mdx", + [2001387] = "SPELLS Shadow_Nova_area.mdx", + [2001388] = "SPELLS Shadow_Nova_area_noProjection.mdx", + [2001389] = "SPELLS Shadow_Precast_High_Base.mdx", + [2001390] = "SPELLS Shadow_Precast_High_Hand.mdx", + [2001391] = "SPELLS Shadow_Precast_Low_Hand.mdx", + [2001392] = "SPELLS Shadow_Precast_Med_Base.mdx", + [2001393] = "SPELLS Shadow_Precast_Med_Hand.mdx", + [2001394] = "SPELLS Shadow_Precast_Uber_Base.mdx", + [2001395] = "SPELLS Shadow_Precast_Uber_Hand.mdx", + [2001396] = "SPELLS Shadow_Snare_High_Base.mdx", + [2001397] = "SPELLS Shadow_Strikes_State_Hand.mdx", + [2001398] = "SPELLS Shadowfury_Impact_Base.mdx", + [2001399] = "SPELLS ShamanisticRage_Cast_Hand.mdx", + [2001400] = "SPELLS ShamanisticRage_State_Hand.mdx", + [2001401] = "SPELLS ShellShield_State_Base.mdx", + [2001402] = "SPELLS ShieldBash_Impact_Chest.mdx", + [2001403] = "SPELLS ShieldWallWar_Impact_Base.mdx", + [2001404] = "SPELLS ShieldWall_Impact_Base.mdx", + [2001405] = "SPELLS Shock_Impact_Chest.mdx", + [2001406] = "SPELLS Shock_Missile.mdx", + [2001407] = "SPELLS Shout_Cast.mdx", + [2001408] = "SPELLS SinisterStrike_Base_Cast.mdx", + [2001409] = "SPELLS SinisterStrike_Impact_Chest.mdx", + [2001410] = "SPELLS Skull.mdx", + [2001411] = "SPELLS Skull180.mdx", + [2001412] = "SPELLS Slam_Impact_Chest.mdx", + [2001413] = "SPELLS Sleep_State_Head.mdx", + [2001414] = "SPELLS SliceDice_Chest.mdx", + [2001415] = "SPELLS SliceDice_Impact_Chest.mdx", + [2001416] = "SPELLS SlimeLesserExplode_Missile.mdx", + [2001417] = "SPELLS SlimeLesser_Missile.mdx", + [2001418] = "SPELLS Slow_Impact_Base.mdx", + [2001419] = "SPELLS SlowingStrike_Cast_Hand.mdx", + [2001420] = "SPELLS SlowingStrike_Impact_Base.mdx", + [2001421] = "SPELLS SlowingStrike_Impact_Chest.mdx", + [2001422] = "SPELLS Smash_Impact_Chest.mdx", + [2001423] = "SPELLS SmokeFlare_Blue.mdx", + [2001424] = "SPELLS SmokeFlare_Green.mdx", + [2001425] = "SPELLS SmokeFlare_Purple.mdx", + [2001426] = "SPELLS SmokeFlare_Red.mdx", + [2001427] = "SPELLS SmokeFlare_White.mdx", + [2001428] = "SPELLS SnowballPowdery_Impact_Base.mdx", + [2001429] = "SPELLS Snowball_Impact_Chest.mdx", + [2001430] = "SPELLS SonicBoom_Missile_High.mdx", + [2001431] = "SPELLS SonicWave_Cast.mdx", + [2001432] = "SPELLS SonicWave_Cast_Down.mdx", + [2001433] = "SPELLS SonicWave_Missile.mdx", + [2001434] = "SPELLS SoothingKiss_Impact_Head.mdx", + [2001435] = "SPELLS SoulFunnel_Impact_Chest.mdx", + [2001436] = "SPELLS SoulShatter_Cast.mdx", + [2001437] = "SPELLS SoulShatter_Impact.mdx", + [2001438] = "SPELLS SoulShatter_Missile.mdx", + [2001439] = "SPELLS SoulStoneResurrection_Base.mdx", + [2001440] = "SPELLS SparkTrail.mdx", + [2001441] = "SPELLS Spawn_Impact_Base.mdx", + [2001442] = "SPELLS SpellBreak_Cast_Base.mdx", + [2001443] = "SPELLS SpellLevelUp.mdx", + [2001444] = "SPELLS SpellObject_Bomb.mdx", + [2001445] = "SPELLS SpellObject_Boomerang.mdx", + [2001446] = "SPELLS SpellObject_InvisibleTrap.mdx", + [2001447] = "SPELLS SpellObject_SmithingHammer.mdx", + [2001448] = "SPELLS SpellObject_Wrench.mdx", + [2001449] = "SPELLS SpellSteal_Impact_Chest.mdx", + [2001450] = "SPELLS SpellSteal_Missile.mdx", + [2001451] = "SPELLS Spike_Impact_Base.mdx", + [2001452] = "SPELLS Spike_Low_Base.mdx", + [2001453] = "SPELLS Spikes_Area.mdx", + [2001454] = "SPELLS SpiritArmor_Impact_Head.mdx", + [2001455] = "SPELLS Sprint_Cast_Base.mdx", + [2001456] = "SPELLS Sprint_Impact_Chest.mdx", + [2001457] = "SPELLS StarShards_Impact_Base.mdx", + [2001458] = "SPELLS Starfire_Area.mdx", + [2001459] = "SPELLS Steam.mdx", + [2001460] = "SPELLS Stoneform_State_Base.mdx", + [2001461] = "SPELLS Strike_Cast_Chest.mdx", + [2001462] = "SPELLS Strike_Impact_Chest.mdx", + [2001463] = "SPELLS StunSwirl_State_Head.mdx", + [2001464] = "SPELLS SummerFest_RoseShower_Impact_Base.mdx", + [2001465] = "SPELLS SummonPet_Cast_Impact_Base.mdx", + [2001466] = "SPELLS SummonPet_Impact_Base.mdx", + [2001467] = "SPELLS SummonWarHorse_Impact_Base.mdx", + [2001468] = "SPELLS Summon_PreCast_Hand.mdx", + [2001469] = "SPELLS Sunder_Impact_Chest.mdx", + [2001470] = "SPELLS Sunwell_Fire_Barrier.mdx", + [2001471] = "SPELLS Sunwell_WallFX.mdx", + [2001472] = "SPELLS SweepingStrike_Impact_Chest.mdx", + [2001473] = "SPELLS SwipeCaster.mdx", + [2001474] = "SPELLS SwipeImpact.mdx", + [2001475] = "SPELLS SymbolofHope_Impact_Base.mdx", + [2001476] = "SPELLS TankardA_SpellObject.mdx", + [2001477] = "SPELLS Taunt_Cast.mdx", + [2001478] = "SPELLS Taunt_Head.mdx", + [2001479] = "SPELLS Teleport.mdx", + [2001480] = "SPELLS Thorns_Base.mdx", + [2001481] = "SPELLS Thorns_Damage_Base.mdx", + [2001482] = "SPELLS Thorns_Low_Chest.mdx", + [2001483] = "SPELLS Thorns_State_Base.mdx", + [2001484] = "SPELLS ThreatReduce_Impact_Head.mdx", + [2001485] = "SPELLS ThroatShot_Impact_Chest.mdx", + [2001486] = "SPELLS ThunderClap_Cast_Base.mdx", + [2001487] = "SPELLS TorchLit.mdx", + [2001488] = "SPELLS TorchSpell.mdx", + [2001489] = "SPELLS Torch_Missile.mdx", + [2001490] = "SPELLS TotemB_SpellObject.mdx", + [2001491] = "SPELLS Tranquility_Area.mdx", + [2001492] = "SPELLS Tranquility_Impact_Base.mdx", + [2001493] = "SPELLS TrickOrTreat_Treat_Head.mdx", + [2001494] = "SPELLS TrickOrTreat_Trick_Head.mdx", + [2001495] = "SPELLS TurnUndead_Impact.mdx", + [2001496] = "SPELLS Undying_Strength_Impact_Chest.mdx", + [2001497] = "SPELLS UnholyShackles_State_Base.mdx", + [2001498] = "SPELLS UnitCube.mdx", + [2001499] = "SPELLS UnstableAffliction_Impact_Chest.mdx", + [2001500] = "SPELLS Unyielding_Will_Impact_Chest.mdx", + [2001501] = "SPELLS ValentineFireWork.mdx", + [2001502] = "SPELLS VampiricEmbrace_State_Base.mdx", + [2001503] = "SPELLS Vanish_Cast_Base.mdx", + [2001504] = "SPELLS Vengeance_State_Hand.mdx", + [2001505] = "SPELLS Victory_Rush_Impact.mdx", + [2001506] = "SPELLS WaterBolt_Missile_Low.mdx", + [2001507] = "SPELLS WaterBubble.mdx", + [2001508] = "SPELLS WaterElemental_Impact_Base.mdx", + [2001509] = "SPELLS WaterShield_Impact_Base.mdx", + [2001510] = "SPELLS WaterShield_State_Base.mdx", + [2001511] = "SPELLS WaterSteam_Impact.mdx", + [2001512] = "SPELLS WaterWalking_Impact_Head.mdx", + [2001513] = "SPELLS Water_Nova.mdx", + [2001514] = "SPELLS Waterbreathing_Impact_Base.mdx", + [2001515] = "SPELLS WaterelementalLow_Impact_Base.mdx", + [2001516] = "SPELLS Wave_Water.mdx", + [2001517] = "SPELLS WebSpin.mdx", + [2001518] = "SPELLS Web_State.mdx", + [2001519] = "SPELLS WellOfSouls_Base.mdx", + [2001520] = "SPELLS WhirlwindGeo1.mdx", + [2001521] = "SPELLS WhirlwindGeo2.mdx", + [2001522] = "SPELLS WhirlwindGeoWhite.mdx", + [2001523] = "SPELLS WhiteRadiationFog.mdx", + [2001524] = "SPELLS WisdomAura_Impact_Base.mdx", + [2001525] = "SPELLS Wrath_Impact_Chest.mdx", + [2001526] = "SPELLS Wrath_Missile.mdx", + [2001527] = "SPELLS Wrath_PreCast_Hand.mdx", + [2001528] = "SPELLS Zangarmarsh_Arcane_Missile.mdx", + [2001529] = "SPELLS lighttest.mdx", + [2001530] = "World AZEROTH BOOTYBAY PASSIVEDOODAD BOOTYENTRANCE BootyBayEntrance_02.mdx", + [2001531] = "World AZEROTH BOOTYBAY PASSIVEDOODAD DeadFish FishDeadBlue.mdx", + [2001532] = "World AZEROTH BOOTYBAY PASSIVEDOODAD DeadFish FishDeadGreen.mdx", + [2001533] = "World AZEROTH BOOTYBAY PASSIVEDOODAD DeadFish FishDeadOrange.mdx", + [2001534] = "World AZEROTH BOOTYBAY PASSIVEDOODAD DeadFish FishDeadPurple.mdx", + [2001535] = "World AZEROTH BOOTYBAY PASSIVEDOODAD DeadFish FishFrenzyBlue.mdx", + [2001536] = "World AZEROTH BOOTYBAY PASSIVEDOODAD DeadFish FishFrenzyGreen.mdx", + [2001537] = "World AZEROTH BOOTYBAY PASSIVEDOODAD DeadFish FishRack.mdx", + [2001538] = "World AZEROTH BOOTYBAY PASSIVEDOODAD FishingPoles FishingPole01.mdx", + [2001539] = "World AZEROTH BOOTYBAY PASSIVEDOODAD FishingPoles FishingPole02.mdx", + [2001540] = "World AZEROTH BOOTYBAY PASSIVEDOODAD GoblinStatue GoblinStatueBooty.mdx", + [2001541] = "World AZEROTH BOOTYBAY PASSIVEDOODAD Harpoons Harpoon01.mdx", + [2001542] = "World AZEROTH BOOTYBAY PASSIVEDOODAD SharkModels SharkModel01.mdx", + [2001543] = "World AZEROTH BURNINGSTEPPES ActiveDoodads DarkIronNode DarkIronNode.mdx", + [2001544] = "World AZEROTH BURNINGSTEPPES ActiveDoodads DarkIronNode DarkIronNodeParticleRock.mdx", + [2001545] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS AnimalHeads DeadHeadBoar.mdx", + [2001546] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS AnimalHeads DeadHeadDeer.mdx", + [2001547] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS Ashpeople AshPeople01.mdx", + [2001548] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS Ashpeople AshPeople02.mdx", + [2001549] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS Ashpeople AshPeople03.mdx", + [2001550] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS Ashpeople AshPeople04.mdx", + [2001551] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS Ashpeople AshPeople05.mdx", + [2001552] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS Bonfire OrcBonFireOff.mdx", + [2001553] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS Bonfire OrcBonFire_blue.mdx", + [2001554] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS Bridges BurningRopeBridge.mdx", + [2001555] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS BurningGiantWheel BurningGiantWheel.mdx", + [2001556] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS CliffRocks BurningSteppsCliffRock01.mdx", + [2001557] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS CliffRocks BurningSteppsCliffRock02.mdx", + [2001558] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS CliffRocks BurningSteppsCliffRock03.mdx", + [2001559] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS CliffRocks BurningSteppsCliffRock04.mdx", + [2001560] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS CliffRocks BurningSteppsCliffRock05.mdx", + [2001561] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS CliffRocks BurningSteppsCliffRock06.mdx", + [2001562] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS FALLINGEMBERS FallingEmbers.mdx", + [2001563] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS FENCES BurningSteppesFence.mdx", + [2001564] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS FENCES BurningSteppesFenceChain.mdx", + [2001565] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS FENCES BurningSteppesFencePost.mdx", + [2001566] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS LAVAALTAR LavaAltar.mdx", + [2001567] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS LAVAPLUGS LavaPlug01.mdx", + [2001568] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS LAVAPLUGS LavaPlug02.mdx", + [2001569] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS LavaBridge LavaBridge.mdx", + [2001570] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS LavaFalls LavaFallsBlackRock01.mdx", + [2001571] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS LavaFalls LavaFallsBlackRock02.mdx", + [2001572] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS LavaFalls LavaFallsBlackRock03.mdx", + [2001573] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS LavaFalls LavaFallsBlackRock04.mdx", + [2001574] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS LavaPillar LavaPillar01.mdx", + [2001575] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS LavaPillar LavaPillar02.mdx", + [2001576] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS LavaPillar LavaPillar03.mdx", + [2001577] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS LavaPillar LavaPillar04.mdx", + [2001578] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS LavaShrine LavaShrine01.mdx", + [2001579] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS LavaShrine LavaShrine02.mdx", + [2001580] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS LavaShrine LavaShrine03.mdx", + [2001581] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS LavaShrine LavaShrine04.mdx", + [2001582] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS LavaShrine SearingGorgeLavaShrine.mdx", + [2001583] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS LotharStatue LotharStatue.mdx", + [2001584] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS OGREHEADPIKE OgreHeadPike.mdx", + [2001585] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS ORCSLEEPMATS OrcSleepMat01.mdx", + [2001586] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS ORCSLEEPMATS OrcSleepMat02.mdx", + [2001587] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS ORCSLEEPMATS OrcSleepMat03.mdx", + [2001588] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS OrcAnvilStoneBurningSteppes OrcAnvilStoneBurningSteppes.", + [2001589] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS OrcBurialPyres OrcStoneBurialPyre.mdx", + [2001590] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS OrcBurialPyres OrcStoneBurialPyreBody.mdx", + [2001591] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS OrcFoundryPit OrcSmallFoundryPit.mdx", + [2001592] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS OrcTents OrcTent.mdx", + [2001593] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS OrcToolRackBurningSteppes OrcToolRackBurningSteppes.mdx", + [2001594] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS PentagramDirt PentagramDirt.mdx", + [2001595] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS RUINS BurnedBeam.mdx", + [2001596] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS Rocks BurningSteppesBoulders01.mdx", + [2001597] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS Rocks BurningSteppesBoulders02.mdx", + [2001598] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS Rocks BurningSteppesBoulders03.mdx", + [2001599] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS Rocks BurningSteppesBoulders04.mdx", + [2001600] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS Rocks BurningSteppesBoulders05.mdx", + [2001601] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS Rocks BurningSteppesBoulders06.mdx", + [2001602] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS Rocks LavaRock01.mdx", + [2001603] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS Rocks LavaRock02.mdx", + [2001604] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS Rocks LavaRock03.mdx", + [2001605] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS Rocks LavaRock04.mdx", + [2001606] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS Rocks LavaRock05.mdx", + [2001607] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS Rocks LavaRock06.mdx", + [2001608] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS SMELTINGCAULDRON SmeltingCauldron.mdx", + [2001609] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS SMOKE AshTreeSmoke01.mdx", + [2001610] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS SmeltingWeapons SmeltingWeapons.mdx", + [2001611] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS StoneBrackets StoneBlock01.mdx", + [2001612] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS StoneBrackets StoneBracket01.mdx", + [2001613] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS StoneBrackets StoneBracket02.mdx", + [2001614] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS StoneBrackets StoneBracket03.mdx", + [2001615] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS StoneGolemStatue StoneGolemStatue1-9.mdx", + [2001616] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS StoneGolemStatue StoneGolemStatue2-9.mdx", + [2001617] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS StoneGolemStatue StoneGolemStatue3-9.mdx", + [2001618] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS StoneGolemStatue StoneGolemStatue4-9.mdx", + [2001619] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS StoneGolemStatue StoneGolemStatue5-9.mdx", + [2001620] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS StoneGolemStatue StoneGolemStatue6-9.mdx", + [2001621] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS StoneGolemStatue StoneGolemStatue7-9.mdx", + [2001622] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS StoneGolemStatue StoneGolemStatue8-9.mdx", + [2001623] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS StoneGolemStatue StoneGolemStatue9-9.mdx", + [2001624] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS Trees AshTree01.mdx", + [2001625] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS Trees AshTree02.mdx", + [2001626] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS Trees AshTree03.mdx", + [2001627] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS Trees BurningMidTree01.mdx", + [2001628] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS Trees BurningMidTree02.mdx", + [2001629] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS Trees BurningMidTree03.mdx", + [2001630] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS Trees BurningMidTree04.mdx", + [2001631] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS Trees BurningSteppesTree01.mdx", + [2001632] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS Trees BurningSteppesTree02.mdx", + [2001633] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS VolcanicVents VolcanicVentLarge01.mdx", + [2001634] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS VolcanicVents VolcanicVentLargeOff01.mdx", + [2001635] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS VolcanicVents VolcanicVentMed01.mdx", + [2001636] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS VolcanicVents VolcanicVentMedOff01.mdx", + [2001637] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS VolcanicVents VolcanicVentSmall01.mdx", + [2001638] = "World AZEROTH BURNINGSTEPPES PASSIVEDOODADS VolcanicVents VolcanicVentSmallOff01.mdx", + [2001639] = "World AZEROTH DEADMINES PASSIVEDOODADS GOBLINMELTINGPOT GoblinMeltingPot.mdx", + [2001640] = "World AZEROTH DEADWINDPASS Buildings AbandonedGuardTower AbandonedHumanGuardTower.mdx", + [2001641] = "World AZEROTH DEADWINDPASS Buildings RockBridge DeadwindRockBridge.mdx", + [2001642] = "World AZEROTH DEADWINDPASS PASSIVEDOODADS DeadwindTotems DeadwindTotem01.mdx", + [2001643] = "World AZEROTH DEADWINDPASS PASSIVEDOODADS DeadwindTotems DeadwindTotem02.mdx", + [2001644] = "World AZEROTH DEADWINDPASS PASSIVEDOODADS DeadwindTotems DeadwindTotem03.mdx", + [2001645] = "World AZEROTH DEADWINDPASS PASSIVEDOODADS DeadwindTotems DeadwindTotem04.mdx", + [2001646] = "World AZEROTH DEADWINDPASS PASSIVEDOODADS HANGINGBODIES DeadwindHangingBody01.mdx", + [2001647] = "World AZEROTH DEADWINDPASS PASSIVEDOODADS HANGINGBODIES DeadwindHangingBody02.mdx", + [2001648] = "World AZEROTH DEADWINDPASS PASSIVEDOODADS HANGINGTREE DeadwindHangingTree.mdx", + [2001649] = "World AZEROTH DEADWINDPASS PASSIVEDOODADS Kharazan_Brick Kharazan_brick.mdx", + [2001650] = "World AZEROTH DEADWINDPASS PASSIVEDOODADS RockTrees DeadWindPassRockTree04.mdx", + [2001651] = "World AZEROTH DEADWINDPASS PASSIVEDOODADS RockTrees DeadWindPassRockTree05.mdx", + [2001652] = "World AZEROTH DEADWINDPASS PASSIVEDOODADS RockTrees DeadWindPassRockTree06.mdx", + [2001653] = "World AZEROTH DEADWINDPASS PASSIVEDOODADS RockTrees DeadwindPassRockTree01.mdx", + [2001654] = "World AZEROTH DEADWINDPASS PASSIVEDOODADS RockTrees DeadwindPassRockTree02.mdx", + [2001655] = "World AZEROTH DEADWINDPASS PASSIVEDOODADS RockTrees DeadwindPassRockTree03.mdx", + [2001656] = "World AZEROTH DEADWINDPASS PASSIVEDOODADS RockTrees DeadwindPassRockTreeBroken01.mdx", + [2001657] = "World AZEROTH DEADWINDPASS PASSIVEDOODADS RockTrees DeadwindPassRockTreeBroken02.mdx", + [2001658] = "World AZEROTH DEADWINDPASS PASSIVEDOODADS RockTrees DeadwindPassRockTreeBroken03.mdx", + [2001659] = "World AZEROTH DEADWINDPASS PASSIVEDOODADS Rocks DeadwindPassCliffRock01DNR.mdx", + [2001660] = "World AZEROTH DEADWINDPASS PASSIVEDOODADS Rocks DeadwindPassCliffRock02DNR.mdx", + [2001661] = "World AZEROTH DEADWINDPASS PASSIVEDOODADS Rocks DeadwindPassCliffRock03DNR.mdx", + [2001662] = "World AZEROTH DEADWINDPASS PASSIVEDOODADS Rocks DeadwindPassCliffRock04DNR.mdx", + [2001663] = "World AZEROTH DEADWINDPASS PASSIVEDOODADS Rocks DeadwindPassCliffRock05DNR.mdx", + [2001664] = "World AZEROTH DEADWINDPASS PASSIVEDOODADS Rocks DeadwindPassGroundRock01DNR.mdx", + [2001665] = "World AZEROTH DEADWINDPASS PASSIVEDOODADS Rocks DeadwindPassGroundRock02DNR.mdx", + [2001666] = "World AZEROTH DEADWINDPASS PASSIVEDOODADS Rocks DeadwindPassGroundRock03DNR.mdx", + [2001667] = "World AZEROTH DEADWINDPASS PASSIVEDOODADS Rocks RockArch01DNR.mdx", + [2001668] = "World AZEROTH DEADWINDPASS PASSIVEDOODADS Rocks RockArch02DNR.mdx", + [2001669] = "World AZEROTH DEADWINDPASS PASSIVEDOODADS Rocks RockArch03DNR.mdx", + [2001670] = "World AZEROTH DEADWINDPASS PASSIVEDOODADS Roots DeadwindPassRoot01.mdx", + [2001671] = "World AZEROTH DEADWINDPASS PASSIVEDOODADS TREES DeadwindPassMidTree01.mdx", + [2001672] = "World AZEROTH DEADWINDPASS PASSIVEDOODADS TREES DeadwindPassMidTree02.mdx", + [2001673] = "World AZEROTH DEADWINDPASS PASSIVEDOODADS Weeds DeadWindHangingWeedsGroup01.mdx", + [2001674] = "World AZEROTH DEADWINDPASS PASSIVEDOODADS Weeds DeadWindHangingWeedsGroup02.mdx", + [2001675] = "World AZEROTH DEADWINDPASS PASSIVEDOODADS Weeds DeadWindHangingWeedsGroup03.mdx", + [2001676] = "World AZEROTH DEADWINDPASS PASSIVEDOODADS Weeds DeadWindHangingWeedsLarge01.mdx", + [2001677] = "World AZEROTH DEADWINDPASS PASSIVEDOODADS Weeds DeadWindHangingWeedsLarge02.mdx", + [2001678] = "World AZEROTH DEADWINDPASS PASSIVEDOODADS Weeds DeadWindHangingWeedsSmall01.mdx", + [2001679] = "World AZEROTH DEADWINDPASS PASSIVEDOODADS Weeds DeadWindHangingWeedsSmall02.mdx", + [2001680] = "World AZEROTH DEADWINDPASS PASSIVEDOODADS Weeds DeadWindHangingWeedsSmall03.mdx", + [2001681] = "World AZEROTH DEADWINDPASS PASSIVEDOODADS Weeds DeadWindHangingWeedsSmall04.mdx", + [2001682] = "World AZEROTH DUSKWOOD BUILDINGS GYPSYWAGON GypsyWagon.mdx", + [2001683] = "World AZEROTH DUSKWOOD BUILDINGS GnollTent GnollTent02.mdx", + [2001684] = "World AZEROTH DUSKWOOD BUILDINGS GnollTent GnollTent03.mdx", + [2001685] = "World AZEROTH DUSKWOOD BUILDINGS Ogremound Ogremound.mdx", + [2001686] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Bush DuskWoodSpookyBush02.mdx", + [2001687] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Bush DuskWoodSpookybush01.mdx", + [2001688] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Bush DuskwoodBush01.mdx", + [2001689] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Bush DuskwoodBush02.mdx", + [2001690] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Bush DuskwoodBush03.mdx", + [2001691] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Bush DuskwoodBush04.mdx", + [2001692] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Bush DuskwoodBush05.mdx", + [2001693] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Bush DuskwoodBush06.mdx", + [2001694] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Bush DuskwoodBush07.mdx", + [2001695] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Bush DuskwoodSpookyBush03.mdx", + [2001696] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Bush DuskwoodSpookyBush04.mdx", + [2001697] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Bush Pumpkin01.mdx", + [2001698] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Bush PumpkinPatch01.mdx", + [2001699] = "World AZEROTH DUSKWOOD PASSIVEDOODADS CHASMBRIDGE DuskwoodChasmBridge.mdx", + [2001700] = "World AZEROTH DUSKWOOD PASSIVEDOODADS COVEREDBRIDGE DuskwoodCoveredBridge.mdx", + [2001701] = "World AZEROTH DUSKWOOD PASSIVEDOODADS CoffinLid CoffinLid.mdx", + [2001702] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Coffin Coffin.mdx", + [2001703] = "World AZEROTH DUSKWOOD PASSIVEDOODADS DarkshireEntrance DarkshireEntrance01.mdx", + [2001704] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Detail DuskwoodCatails01 DuskwoodCatails01.mdx", + [2001705] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Detail DuskwoodGrass01 DuskwoodGrass01.mdx", + [2001706] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Detail DuskwoodLillyPad01 DuskwoodLillyPad01.mdx", + [2001707] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Detail DuskwoodMushroom01 DuskwoodMushroom01.mdx", + [2001708] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Detail DuskwoodSeaWeed01 DuskwoodSeaWeed01.mdx", + [2001709] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Detail DuskwoodThornBush01 DuskwoodThornBush01.mdx", + [2001710] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Detail DuskwoodThornBush02 DuskwoodThornBush02.mdx", + [2001711] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Detail DuskwoodVine01 DuskwoodVine01.mdx", + [2001712] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Detail DuskwoodVine02 DuskwoodVine02.mdx", + [2001713] = "World AZEROTH DUSKWOOD PASSIVEDOODADS DuskwoodBarn BarnDuskwood.mdx", + [2001714] = "World AZEROTH DUSKWOOD PASSIVEDOODADS DuskwoodHaystack DuskwoodHayStack.mdx", + [2001715] = "World AZEROTH DUSKWOOD PASSIVEDOODADS DuskwoodHaywagon DuskwoodHayWagon.mdx", + [2001716] = "World AZEROTH DUSKWOOD PASSIVEDOODADS DuskwoodHearse DuskwoodHearse.mdx", + [2001717] = "World AZEROTH DUSKWOOD PASSIVEDOODADS DuskwoodScarecrow DuskScarecrow.mdx", + [2001718] = "World AZEROTH DUSKWOOD PASSIVEDOODADS DuskwoodStraw DuskwoodStraw.mdx", + [2001719] = "World AZEROTH DUSKWOOD PASSIVEDOODADS DuskwoodWheat DuskWoodWheat.mdx", + [2001720] = "World AZEROTH DUSKWOOD PASSIVEDOODADS FENCE DuskWoodFenceBrokenSegment.mdx", + [2001721] = "World AZEROTH DUSKWOOD PASSIVEDOODADS FENCE DuskWoodFencePost.mdx", + [2001722] = "World AZEROTH DUSKWOOD PASSIVEDOODADS FENCE DuskWoodFenceSegment.mdx", + [2001723] = "World AZEROTH DUSKWOOD PASSIVEDOODADS FENCE DuskWoodFenceSegment02.mdx", + [2001724] = "World AZEROTH DUSKWOOD PASSIVEDOODADS FENCE DuskwoodFenceBottom.mdx", + [2001725] = "World AZEROTH DUSKWOOD PASSIVEDOODADS FENCE DuskwoodFenceBottomBroken.mdx", + [2001726] = "World AZEROTH DUSKWOOD PASSIVEDOODADS FENCE DuskwoodFenceRail.mdx", + [2001727] = "World AZEROTH DUSKWOOD PASSIVEDOODADS FENCE DuskwoodFenceTop.mdx", + [2001728] = "World AZEROTH DUSKWOOD PASSIVEDOODADS FENCE DuskwoodFenceTopBroken.mdx", + [2001729] = "World AZEROTH DUSKWOOD PASSIVEDOODADS FENCE RockWallEnd.mdx", + [2001730] = "World AZEROTH DUSKWOOD PASSIVEDOODADS FENCE RockWallRubble.mdx", + [2001731] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Gates DuskWoodGate01.mdx", + [2001732] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Gates DuskWoodTallCemetaryGate.mdx", + [2001733] = "World AZEROTH DUSKWOOD PASSIVEDOODADS GraveFrame DuskWoodGraveFrame.mdx", + [2001734] = "World AZEROTH DUSKWOOD PASSIVEDOODADS IronGate CemetaryGate01.mdx", + [2001735] = "World AZEROTH DUSKWOOD PASSIVEDOODADS IronGate GatePost.mdx", + [2001736] = "World AZEROTH DUSKWOOD PASSIVEDOODADS IronGate GateSegment01.mdx", + [2001737] = "World AZEROTH DUSKWOOD PASSIVEDOODADS IronGate GateSegment02.mdx", + [2001738] = "World AZEROTH DUSKWOOD PASSIVEDOODADS IronGate GateSegment03.mdx", + [2001739] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Mausoleum DuskwoodMausoleum.mdx", + [2001740] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Mausoleum MausoleumActiveDoors.mdx", + [2001741] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Rocks DuskwoodBoulder01.mdx", + [2001742] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Rocks DuskwoodBoulder02.mdx", + [2001743] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Rocks DuskwoodBoulder03.mdx", + [2001744] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Ruins DuskwoodChimney01.mdx", + [2001745] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Ruins DuskwoodRuins01.mdx", + [2001746] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Ruins DuskwoodRuins02.mdx", + [2001747] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Ruins DuskwoodRuins03.mdx", + [2001748] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Ruins DuskwoodRuins04.mdx", + [2001749] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Ruins DuskwoodRuinsBeam.mdx", + [2001750] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Ruins DuskwoodRuinsBrick.mdx", + [2001751] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Ruins DuskwoodRuinsFoundation01.mdx", + [2001752] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Ruins DuskwoodRuinsFoundation02.mdx", + [2001753] = "World AZEROTH DUSKWOOD PASSIVEDOODADS SpooklessTrees DuskwoodCS01.mdx", + [2001754] = "World AZEROTH DUSKWOOD PASSIVEDOODADS SpooklessTrees DuskwoodCS02.mdx", + [2001755] = "World AZEROTH DUSKWOOD PASSIVEDOODADS SpooklessTrees DuskwoodTreeSpookless01.mdx", + [2001756] = "World AZEROTH DUSKWOOD PASSIVEDOODADS SpooklessTrees DuskwoodTreeSpookless02.mdx", + [2001757] = "World AZEROTH DUSKWOOD PASSIVEDOODADS StoneFrames DuskWoodStoneFrameCorner.mdx", + [2001758] = "World AZEROTH DUSKWOOD PASSIVEDOODADS StoneFrames DuskWoodStoneFrameLong.mdx", + [2001759] = "World AZEROTH DUSKWOOD PASSIVEDOODADS StoneFrames DuskWoodStoneFrameShort.mdx", + [2001760] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Straw DuskwoodStraw02.mdx", + [2001761] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Trees DuskWoodFallenTree.mdx", + [2001762] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Trees DuskWoodFallenTree02.mdx", + [2001763] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Trees DuskwoodBrownTree.mdx", + [2001764] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Trees DuskwoodSpookyTree01.mdx", + [2001765] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Trees DuskwoodSpookyTree02.mdx", + [2001766] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Trees DuskwoodSpookyTree03.mdx", + [2001767] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Trees DuskwoodTree06.mdx", + [2001768] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Trees DuskwoodTreeCanopy01.mdx", + [2001769] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Trees DuskwoodTreeCanopy02.mdx", + [2001770] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Trees DuskwoodTreeCanopy03.mdx", + [2001771] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Trees DuskwoodTreeStump01.mdx", + [2001772] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Trees DuskwoodTreeStump02.mdx", + [2001773] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Trees DuskwoodWhiteTree.mdx", + [2001774] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Trees Duskwoodtree05.mdx", + [2001775] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Trees NewDuskwoodTreeHuge.mdx", + [2001776] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Walls DuskWoodRockWall.mdx", + [2001777] = "World AZEROTH DUSKWOOD PASSIVEDOODADS WarningTree WarningTree.mdx", + [2001778] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Warpgate DuskwoodWarpGate.mdx", + [2001779] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Webs WebDangle01.mdx", + [2001780] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Webs WebDangle02.mdx", + [2001781] = "World AZEROTH DUSKWOOD PASSIVEDOODADS Webs WebStretch01.mdx", + [2001782] = "World AZEROTH DUSKWOOD PASSIVEDOODADS tombs DirtMound01.mdx", + [2001783] = "World AZEROTH DUSKWOOD PASSIVEDOODADS tombs TombStone05.mdx", + [2001784] = "World AZEROTH DUSKWOOD PASSIVEDOODADS tombs TombStone06.mdx", + [2001785] = "World AZEROTH DUSKWOOD PASSIVEDOODADS tombs TombStone07.mdx", + [2001786] = "World AZEROTH DUSKWOOD PASSIVEDOODADS tombs TombStone08.mdx", + [2001787] = "World AZEROTH DUSKWOOD PASSIVEDOODADS tombs TombStoneMonument01.mdx", + [2001788] = "World AZEROTH DUSKWOOD PASSIVEDOODADS tombs TombStoneMonument02.mdx", + [2001789] = "World AZEROTH DUSKWOOD PASSIVEDOODADS tombs WoodCross01.mdx", + [2001790] = "World AZEROTH DUSKWOOD PASSIVEDOODADS tombs WoodCross02.mdx", + [2001791] = "World AZEROTH ELWYNN ActiveDoodads AbbeyBell nsabbeyBell.mdx", + [2001792] = "World AZEROTH ELWYNN BUILDINGS BlackSmith BlackSmith.mdx", + [2001793] = "World AZEROTH ELWYNN BUILDINGS Bridges ElwynnFootbridge.mdx", + [2001794] = "World AZEROTH ELWYNN BUILDINGS GoldMine GoldmineTrackCurve.mdx", + [2001795] = "World AZEROTH ELWYNN BUILDINGS GoldMine GoldmineTracks.mdx", + [2001796] = "World AZEROTH ELWYNN BUILDINGS GoldMine goldmine.mdx", + [2001797] = "World AZEROTH ELWYNN BUILDINGS HumanGuardTower HumanGuardTower.mdx", + [2001798] = "World AZEROTH ELWYNN BUILDINGS HumanWatchTower HumanWatchTower.mdx", + [2001799] = "World AZEROTH ELWYNN BUILDINGS StormwindEntrance StormwindGate.mdx", + [2001800] = "World AZEROTH ELWYNN PASSIVEDOODADS Anvil Anvil.mdx", + [2001801] = "World AZEROTH ELWYNN PASSIVEDOODADS BALLISTARUINED BallistaRuined.mdx", + [2001802] = "World AZEROTH ELWYNN PASSIVEDOODADS BALLISTA Ballista.mdx", + [2001803] = "World AZEROTH ELWYNN PASSIVEDOODADS BATTLEGLADESHIELD2 BattleGladeShield2.mdx", + [2001804] = "World AZEROTH ELWYNN PASSIVEDOODADS BATTLEGLADESKULLHUMAN1 BattleGladeSkullHuman1.mdx", + [2001805] = "World AZEROTH ELWYNN PASSIVEDOODADS BattleGladeBanner1 BattleGladeBanner1.mdx", + [2001806] = "World AZEROTH ELWYNN PASSIVEDOODADS BattleGladeBanner2 BattleGladeBanner2.mdx", + [2001807] = "World AZEROTH ELWYNN PASSIVEDOODADS BattleGladeShield1 BattleGladeShield1.mdx", + [2001808] = "World AZEROTH ELWYNN PASSIVEDOODADS BattleGladeShield3 BattleGladeShield3.mdx", + [2001809] = "World AZEROTH ELWYNN PASSIVEDOODADS BattleGladeSkullHuman2 BattleGladeSkullHuman2.mdx", + [2001810] = "World AZEROTH ELWYNN PASSIVEDOODADS BattleGladeSkullOrc1 BattleGladeSkullOrc1.mdx", + [2001811] = "World AZEROTH ELWYNN PASSIVEDOODADS BattleGladeSkullOrc2 BattleGladeSkullOrc2.mdx", + [2001812] = "World AZEROTH ELWYNN PASSIVEDOODADS BattleGladeSwordSkull BattleGladeSwordSkull.mdx", + [2001813] = "World AZEROTH ELWYNN PASSIVEDOODADS BattleGladeSword BattleGladeSword.mdx", + [2001814] = "World AZEROTH ELWYNN PASSIVEDOODADS BattleGladeWoodSpikes BattleGladeWoodSpikes.mdx", + [2001815] = "World AZEROTH ELWYNN PASSIVEDOODADS Bellow Bellow.mdx", + [2001816] = "World AZEROTH ELWYNN PASSIVEDOODADS Bush ElwynnBush01.mdx", + [2001817] = "World AZEROTH ELWYNN PASSIVEDOODADS Bush ElwynnBush02.mdx", + [2001818] = "World AZEROTH ELWYNN PASSIVEDOODADS Bush ElwynnBush03.mdx", + [2001819] = "World AZEROTH ELWYNN PASSIVEDOODADS Bush ElwynnBush04.mdx", + [2001820] = "World AZEROTH ELWYNN PASSIVEDOODADS Bush ElwynnBush05.mdx", + [2001821] = "World AZEROTH ELWYNN PASSIVEDOODADS Bush ElwynnBush06.mdx", + [2001822] = "World AZEROTH ELWYNN PASSIVEDOODADS Bush ElwynnBush07.mdx", + [2001823] = "World AZEROTH ELWYNN PASSIVEDOODADS Bush ElwynnBush08.mdx", + [2001824] = "World AZEROTH ELWYNN PASSIVEDOODADS Bush ElwynnBush09.mdx", + [2001825] = "World AZEROTH ELWYNN PASSIVEDOODADS CAMPFIRE ElwynnCampfire.mdx", + [2001826] = "World AZEROTH ELWYNN PASSIVEDOODADS CAMPFIRE ElwynnCampfire_blue.mdx", + [2001827] = "World AZEROTH ELWYNN PASSIVEDOODADS CLIFFROCKS ElwynnCliffRock01.mdx", + [2001828] = "World AZEROTH ELWYNN PASSIVEDOODADS CLIFFROCKS ElwynnCliffRock02.mdx", + [2001829] = "World AZEROTH ELWYNN PASSIVEDOODADS CLIFFROCKS ElwynnCliffRock03.mdx", + [2001830] = "World AZEROTH ELWYNN PASSIVEDOODADS CLIFFROCKS ElwynnCliffRock04.mdx", + [2001831] = "World AZEROTH ELWYNN PASSIVEDOODADS CLIFFROCKS ElwynnCliffRock05.mdx", + [2001832] = "World AZEROTH ELWYNN PASSIVEDOODADS CornCrop CornCropLowPoly.mdx", + [2001833] = "World AZEROTH ELWYNN PASSIVEDOODADS CornCrop CornCropRow.mdx", + [2001834] = "World AZEROTH ELWYNN PASSIVEDOODADS CornCrop CornCropRowLowPoly01.mdx", + [2001835] = "World AZEROTH ELWYNN PASSIVEDOODADS CornCrop CornCropRowLowPoly02.mdx", + [2001836] = "World AZEROTH ELWYNN PASSIVEDOODADS CornCrop corn.mdx", + [2001837] = "World AZEROTH ELWYNN PASSIVEDOODADS CornCrop corncrop1.mdx", + [2001838] = "World AZEROTH ELWYNN PASSIVEDOODADS CornCrop corncrop2.mdx", + [2001839] = "World AZEROTH ELWYNN PASSIVEDOODADS CornCrop corncrop3.mdx", + [2001840] = "World AZEROTH ELWYNN PASSIVEDOODADS CornCrop corncropdead.mdx", + [2001841] = "World AZEROTH ELWYNN PASSIVEDOODADS DETAIL ELWYNNSEAWEED01 ElwynnSeaWeed01.mdx", + [2001842] = "World AZEROTH ELWYNN PASSIVEDOODADS DETAIL ElwynnCatails01 ElwynnCatails01.mdx", + [2001843] = "World AZEROTH ELWYNN PASSIVEDOODADS DETAIL ElwynnCatails02 ElwynnCatails02.mdx", + [2001844] = "World AZEROTH ELWYNN PASSIVEDOODADS DETAIL ElwynnDetailFlowers ElwynnDetailFlowers01.mdx", + [2001845] = "World AZEROTH ELWYNN PASSIVEDOODADS DETAIL ElwynnDetailFlowers ElwynnDetailFlowers02.mdx", + [2001846] = "World AZEROTH ELWYNN PASSIVEDOODADS DETAIL ElwynnDetailGrass ElwynnDetailGrass01.mdx", + [2001847] = "World AZEROTH ELWYNN PASSIVEDOODADS DETAIL ElwynnDetailGrass ElwynnDetailGrass02.mdx", + [2001848] = "World AZEROTH ELWYNN PASSIVEDOODADS DETAIL ElwynnDetailGrass ElwynnDetailGrass03.mdx", + [2001849] = "World AZEROTH ELWYNN PASSIVEDOODADS DETAIL ElwynnDetailGrass ElwynnDetailGrass04.mdx", + [2001850] = "World AZEROTH ELWYNN PASSIVEDOODADS DETAIL ElwynnDetailRocks ElwynnDetailRock01.mdx", + [2001851] = "World AZEROTH ELWYNN PASSIVEDOODADS DETAIL ElwynnDetailRocks ElwynnDetailRock02.mdx", + [2001852] = "World AZEROTH ELWYNN PASSIVEDOODADS DETAIL ElwynnFlower01.mdx", + [2001853] = "World AZEROTH ELWYNN PASSIVEDOODADS DETAIL ElwynnFlower02.mdx", + [2001854] = "World AZEROTH ELWYNN PASSIVEDOODADS DETAIL ElwynnGrass01.mdx", + [2001855] = "World AZEROTH ELWYNN PASSIVEDOODADS DETAIL ElwynnGrass02 ElwynnGrass02.mdx", + [2001856] = "World AZEROTH ELWYNN PASSIVEDOODADS DETAIL ElwynnGrass1 ElwynnGrass1.mdx", + [2001857] = "World AZEROTH ELWYNN PASSIVEDOODADS DETAIL ElwynnLillyPad01 ElwynnLillyPad01.mdx", + [2001858] = "World AZEROTH ELWYNN PASSIVEDOODADS DETAIL ElwynnMelon01.mdx", + [2001859] = "World AZEROTH ELWYNN PASSIVEDOODADS DETAIL ElwynnPoppy1 ElwynnPoppy1.mdx", + [2001860] = "World AZEROTH ELWYNN PASSIVEDOODADS DETAIL ElwynnPoppy2 ElwynnPoppy2.mdx", + [2001861] = "World AZEROTH ELWYNN PASSIVEDOODADS DETAIL ElwynnReeds01 ElwynnReeds01.mdx", + [2001862] = "World AZEROTH ELWYNN PASSIVEDOODADS DETAIL ElwynnRock1 ElwynnRock1.mdx", + [2001863] = "World AZEROTH ELWYNN PASSIVEDOODADS DETAIL ElwynnRock2 ElwynnRock2.mdx", + [2001864] = "World AZEROTH ELWYNN PASSIVEDOODADS DETAIL ElwynnShrub1 ElwynnShrub1.mdx", + [2001865] = "World AZEROTH ELWYNN PASSIVEDOODADS DETAIL ElwynnThornBush01 ElwynnThornBush01.mdx", + [2001866] = "World AZEROTH ELWYNN PASSIVEDOODADS DETAIL ElwynnThornBush02 ElwynnThornBush02.mdx", + [2001867] = "World AZEROTH ELWYNN PASSIVEDOODADS DETAIL ElwynnVines01 ElwynnVines01.mdx", + [2001868] = "World AZEROTH ELWYNN PASSIVEDOODADS DETAIL ElwynnVines02 ElwynnVines02.mdx", + [2001869] = "World AZEROTH ELWYNN PASSIVEDOODADS DETAIL ElwynnVineyard ElwynnVineyard01.mdx", + [2001870] = "World AZEROTH ELWYNN PASSIVEDOODADS DETAIL ElwynnWheat ElwynnWheat01.mdx", + [2001871] = "World AZEROTH ELWYNN PASSIVEDOODADS ELWYNNFENCES ElwynnFenceSimple.mdx", + [2001872] = "World AZEROTH ELWYNN PASSIVEDOODADS ELWYNNFENCES ElwynnFenceSimplePost.mdx", + [2001873] = "World AZEROTH ELWYNN PASSIVEDOODADS ELWYNNFENCES ElwynnFenceTop.mdx", + [2001874] = "World AZEROTH ELWYNN PASSIVEDOODADS ELWYNNFENCES ElwynnStoneFence.mdx", + [2001875] = "World AZEROTH ELWYNN PASSIVEDOODADS ELWYNNFENCES ElwynnStoneFencePost.mdx", + [2001876] = "World AZEROTH ELWYNN PASSIVEDOODADS ELWYNNFENCES ElwynnWoodFence01.mdx", + [2001877] = "World AZEROTH ELWYNN PASSIVEDOODADS ELWYNNFENCES ElwynnWoodPost01.mdx", + [2001878] = "World AZEROTH ELWYNN PASSIVEDOODADS EyeOfAzora EyeOfAzora.mdx", + [2001879] = "World AZEROTH ELWYNN PASSIVEDOODADS Haystacks haystack01.mdx", + [2001880] = "World AZEROTH ELWYNN PASSIVEDOODADS Haystacks haystack02.mdx", + [2001881] = "World AZEROTH ELWYNN PASSIVEDOODADS JUGS jug01.mdx", + [2001882] = "World AZEROTH ELWYNN PASSIVEDOODADS JUGS jug02.mdx", + [2001883] = "World AZEROTH ELWYNN PASSIVEDOODADS Jars Jar01.mdx", + [2001884] = "World AZEROTH ELWYNN PASSIVEDOODADS Jars Jar02.mdx", + [2001885] = "World AZEROTH ELWYNN PASSIVEDOODADS Jars Jar03.mdx", + [2001886] = "World AZEROTH ELWYNN PASSIVEDOODADS LAMPPOST LampPost.mdx", + [2001887] = "World AZEROTH ELWYNN PASSIVEDOODADS MineCart ElwynnMineCart.mdx", + [2001888] = "World AZEROTH ELWYNN PASSIVEDOODADS MonumentRock MonumentRock.mdx", + [2001889] = "World AZEROTH ELWYNN PASSIVEDOODADS Pick Pick.mdx", + [2001890] = "World AZEROTH ELWYNN PASSIVEDOODADS RuinedCatapult RuinedCatapult.mdx", + [2001891] = "World AZEROTH ELWYNN PASSIVEDOODADS RuinedFountain RuinedFountain.mdx", + [2001892] = "World AZEROTH ELWYNN PASSIVEDOODADS SKELETON BattleGladeSkullHumanDark.mdx", + [2001893] = "World AZEROTH ELWYNN PASSIVEDOODADS SKELETON BattleGladeSpineHumanDark.mdx", + [2001894] = "World AZEROTH ELWYNN PASSIVEDOODADS SKELETON BattleGladebonesHumanDark.mdx", + [2001895] = "World AZEROTH ELWYNN PASSIVEDOODADS SKELETON BattleGladebskeletonhumandark.mdx", + [2001896] = "World AZEROTH ELWYNN PASSIVEDOODADS SMALLDOCK SmallDock.mdx", + [2001897] = "World AZEROTH ELWYNN PASSIVEDOODADS Shovel Shovel.mdx", + [2001898] = "World AZEROTH ELWYNN PASSIVEDOODADS Signs Directional Duskwooddirectionalsign.mdx", + [2001899] = "World AZEROTH ELWYNN PASSIVEDOODADS Signs Directional Goldshiredirectionalsign.mdx", + [2001900] = "World AZEROTH ELWYNN PASSIVEDOODADS Signs Directional Northshiredirectionalsign.mdx", + [2001901] = "World AZEROTH ELWYNN PASSIVEDOODADS Signs Directional Runestonedirectionalsign.mdx", + [2001902] = "World AZEROTH ELWYNN PASSIVEDOODADS Signs Directional Stormwinddirectionalsign.mdx", + [2001903] = "World AZEROTH ELWYNN PASSIVEDOODADS Signs Directional Westfalldirectionalsign.mdx", + [2001904] = "World AZEROTH ELWYNN PASSIVEDOODADS Signs GenericPosts GenericSmallSignPost01.mdx", + [2001905] = "World AZEROTH ELWYNN PASSIVEDOODADS Signs Shop HumanAlchemistSign.mdx", + [2001906] = "World AZEROTH ELWYNN PASSIVEDOODADS Signs Shop HumanBaitandTackleSign.mdx", + [2001907] = "World AZEROTH ELWYNN PASSIVEDOODADS Signs Shop HumanBankSign.mdx", + [2001908] = "World AZEROTH ELWYNN PASSIVEDOODADS Signs Shop HumanBlacksmithSign.mdx", + [2001909] = "World AZEROTH ELWYNN PASSIVEDOODADS Signs Shop HumanBoathouseSign.mdx", + [2001910] = "World AZEROTH ELWYNN PASSIVEDOODADS Signs Shop HumanInnSign.mdx", + [2001911] = "World AZEROTH ELWYNN PASSIVEDOODADS Signs Shop HumanInnSignPost.mdx", + [2001912] = "World AZEROTH ELWYNN PASSIVEDOODADS Signs Shop HumanMagicshopSign.mdx", + [2001913] = "World AZEROTH ELWYNN PASSIVEDOODADS Signs Shop HumanTannerSign.mdx", + [2001914] = "World AZEROTH ELWYNN PASSIVEDOODADS Spike Spike.mdx", + [2001915] = "World AZEROTH ELWYNN PASSIVEDOODADS Statue LionStatue.mdx", + [2001916] = "World AZEROTH ELWYNN PASSIVEDOODADS StonePyre StonePyre.mdx", + [2001917] = "World AZEROTH ELWYNN PASSIVEDOODADS Tables RoundTable RoundTable.mdx", + [2001918] = "World AZEROTH ELWYNN PASSIVEDOODADS Tree ElwynnLog01.mdx", + [2001919] = "World AZEROTH ELWYNN PASSIVEDOODADS Tree ElwynnLog02.mdx", + [2001920] = "World AZEROTH ELWYNN PASSIVEDOODADS Trees CanopylessTree01.mdx", + [2001921] = "World AZEROTH ELWYNN PASSIVEDOODADS Trees CanopylessTree02.mdx", + [2001922] = "World AZEROTH ELWYNN PASSIVEDOODADS Trees CanopylessTree03.mdx", + [2001923] = "World AZEROTH ELWYNN PASSIVEDOODADS Trees CanopylessTree04.mdx", + [2001924] = "World AZEROTH ELWYNN PASSIVEDOODADS Trees ElwynnFirTree01.mdx", + [2001925] = "World AZEROTH ELWYNN PASSIVEDOODADS Trees ElwynnTree01 ElwynnPine01.mdx", + [2001926] = "World AZEROTH ELWYNN PASSIVEDOODADS Trees ElwynnTree01 ElwynnPine02.mdx", + [2001927] = "World AZEROTH ELWYNN PASSIVEDOODADS Trees ElwynnTreeCanopy02.mdx", + [2001928] = "World AZEROTH ELWYNN PASSIVEDOODADS Trees ElwynnTreeMid01.mdx", + [2001929] = "World AZEROTH ELWYNN PASSIVEDOODADS Trees Stumps ElwynnTreeStump01.mdx", + [2001930] = "World AZEROTH ELWYNN PASSIVEDOODADS Trees Stumps ElwynnTreeStump02.mdx", + [2001931] = "World AZEROTH ELWYNN PASSIVEDOODADS Vineyard Vineyard.mdx", + [2001932] = "World AZEROTH ELWYNN PASSIVEDOODADS Vineyard VineyardCube01.mdx", + [2001933] = "World AZEROTH ELWYNN PASSIVEDOODADS Vineyard VineyardCube02.mdx", + [2001934] = "World AZEROTH ELWYNN PASSIVEDOODADS Vineyard VineyardLowpoly.mdx", + [2001935] = "World AZEROTH ELWYNN PASSIVEDOODADS Vineyard VineyardWired.mdx", + [2001936] = "World AZEROTH ELWYNN PASSIVEDOODADS WaterBasin WaterBasin.mdx", + [2001937] = "World AZEROTH ELWYNN PASSIVEDOODADS Waterfall ElwynnMediumWaterfall01.mdx", + [2001938] = "World AZEROTH ELWYNN PASSIVEDOODADS Waterfall ElwynnTallWaterfall01.mdx", + [2001939] = "World AZEROTH KARAZAHN ACTIVEDOODADS KarazahnPortcullis.mdx", + [2001940] = "World AZEROTH KARAZAHN ACTIVEDOODADS Karazahn_CptnQrtzDoors.mdx", + [2001941] = "World AZEROTH KARAZAHN ACTIVEDOODADS Karazahn_SecretDoor01.mdx", + [2001942] = "World AZEROTH KARAZAHN ACTIVEDOODADS Karazahn_gatedoors.mdx", + [2001943] = "World AZEROTH KARAZAHN PASSIVEDOODADS BONFIRE KarazahnBonFire01.mdx", + [2001944] = "World AZEROTH KARAZAHN PASSIVEDOODADS BONFIRE KarazahnBonFire02.mdx", + [2001945] = "World AZEROTH KARAZAHN PASSIVEDOODADS Barrel KarazahnBarrel01.mdx", + [2001946] = "World AZEROTH KARAZAHN PASSIVEDOODADS Barrel KarazahnBarrel02.mdx", + [2001947] = "World AZEROTH KARAZAHN PASSIVEDOODADS BookShelves KarazahnBookshelfLarge.mdx", + [2001948] = "World AZEROTH KARAZAHN PASSIVEDOODADS BookShelves KarazahnBookshelfSmall.mdx", + [2001949] = "World AZEROTH KARAZAHN PASSIVEDOODADS BrokenCart KN_BrokenCart.mdx", + [2001950] = "World AZEROTH KARAZAHN PASSIVEDOODADS BrokenCart KN_BrokenCart02.mdx", + [2001951] = "World AZEROTH KARAZAHN PASSIVEDOODADS CHANDELIERS KarazanChandelier_01.mdx", + [2001952] = "World AZEROTH KARAZAHN PASSIVEDOODADS CHANDELIERS KarazanChandelier_02.mdx", + [2001953] = "World AZEROTH KARAZAHN PASSIVEDOODADS CHANDELIERS KarazanChandelier_03.mdx", + [2001954] = "World AZEROTH KARAZAHN PASSIVEDOODADS CHANDELIERS KarazanChandelier_03_broken.mdx", + [2001955] = "World AZEROTH KARAZAHN PASSIVEDOODADS CRATES KarazahnCrate01.mdx", + [2001956] = "World AZEROTH KARAZAHN PASSIVEDOODADS CRATES KarazahnCrate02.mdx", + [2001957] = "World AZEROTH KARAZAHN PASSIVEDOODADS GRAINSACKS KN_GrainSack01.mdx", + [2001958] = "World AZEROTH KARAZAHN PASSIVEDOODADS GRAINSACKS KN_GrainSack02.mdx", + [2001959] = "World AZEROTH KARAZAHN PASSIVEDOODADS GRAINSACKS KN_GrainSack03.mdx", + [2001960] = "World AZEROTH KARAZAHN PASSIVEDOODADS GRAINSACKS KN_SpilledSack01.mdx", + [2001961] = "World AZEROTH KARAZAHN PASSIVEDOODADS KarazahnWebs KarazahnWeb01.mdx", + [2001962] = "World AZEROTH KARAZAHN PASSIVEDOODADS KarazahnWebs KarazahnWeb02.mdx", + [2001963] = "World AZEROTH KARAZAHN PASSIVEDOODADS KarazahnWebs KarazahnWeb03.mdx", + [2001964] = "World AZEROTH KARAZAHN PASSIVEDOODADS Pedestals KarazahnPedestals01.mdx", + [2001965] = "World AZEROTH KARAZAHN PASSIVEDOODADS Pedestals KarazahnPedestals02.mdx", + [2001966] = "World AZEROTH KARAZAHN PASSIVEDOODADS Rubble KarazahnRockRubble01.mdx", + [2001967] = "World AZEROTH KARAZAHN PASSIVEDOODADS Rubble KarazahnRockRubble02.mdx", + [2001968] = "World AZEROTH KARAZAHN PASSIVEDOODADS SCONCES KarazahnSconce01.mdx", + [2001969] = "World AZEROTH KARAZAHN PASSIVEDOODADS SCONCES KarazahnSconce02.mdx", + [2001970] = "World AZEROTH KARAZAHN PASSIVEDOODADS SCONCES KarazahnSconce03.mdx", + [2001971] = "World AZEROTH KARAZAHN PASSIVEDOODADS SCONCES KarazahnSconce04.mdx", + [2001972] = "World AZEROTH KARAZAHN PASSIVEDOODADS SCONCES KarazahnSconce05.mdx", + [2001973] = "World AZEROTH KARAZAHN PASSIVEDOODADS SCONCES KarazahnSconce06.mdx", + [2001974] = "World AZEROTH KARAZAHN PASSIVEDOODADS SCONCES KarazahnSconce07.mdx", + [2001975] = "World AZEROTH KARAZAHN PASSIVEDOODADS STARLAB KarazahnStarlab.mdx", + [2001976] = "World AZEROTH KARAZAHN PASSIVEDOODADS THRONE KarazahnThrone01.mdx", + [2001977] = "World AZEROTH KARAZAHN PASSIVEDOODADS Tables KarazahnTableBig.mdx", + [2001978] = "World AZEROTH KARAZAHN PASSIVEDOODADS Tables KarazahnTableSmall.mdx", + [2001979] = "World AZEROTH KARAZAHN PASSIVEDOODADS Tapestries KarazanTapestry01.mdx", + [2001980] = "World AZEROTH KARAZAHN PASSIVEDOODADS Tapestries KarazanTapestry02.mdx", + [2001981] = "World AZEROTH KARAZAHN PASSIVEDOODADS Theater Karazahn_RJ_Balcony.mdx", + [2001982] = "World AZEROTH KARAZAHN PASSIVEDOODADS Theater Karazahn_RJ_Moon.mdx", + [2001983] = "World AZEROTH KARAZAHN PASSIVEDOODADS Theater Karazahn_RJ_Stars.mdx", + [2001984] = "World AZEROTH KARAZAHN PASSIVEDOODADS Theater Karazahn_RRH_Forest.mdx", + [2001985] = "World AZEROTH KARAZAHN PASSIVEDOODADS Theater Karazahn_RRH_House.mdx", + [2001986] = "World AZEROTH KARAZAHN PASSIVEDOODADS Theater Karazahn_RRH_Tree.mdx", + [2001987] = "World AZEROTH KARAZAHN PASSIVEDOODADS Theater Karazahn_WO_Hay.mdx", + [2001988] = "World AZEROTH KARAZAHN PASSIVEDOODADS Theater Karazan_WO_BrickRoad.mdx", + [2001989] = "World AZEROTH KARAZAHN PASSIVEDOODADS VolumetricLights KarazahnDiningRays.mdx", + [2001990] = "World AZEROTH PVP PassiveDoodads BridgeRuins pvp_bridge_parts02.mdx", + [2001991] = "World AZEROTH PVP PassiveDoodads BridgeRuins pvp_bridge_parts03.mdx", + [2001992] = "World AZEROTH PVP PassiveDoodads BridgeRuins pvp_bridge_parts05.mdx", + [2001993] = "World AZEROTH REDRIDGE PASSIVEDOODADS BRICKS RedRidgeBridgeBrick01.mdx", + [2001994] = "World AZEROTH REDRIDGE PASSIVEDOODADS BRICKS RedRidgeBridgeBrick02.mdx", + [2001995] = "World AZEROTH REDRIDGE PASSIVEDOODADS BRICKS RedRidgeBridgeBrick03.mdx", + [2001996] = "World AZEROTH REDRIDGE PASSIVEDOODADS Bush RedridgeBush01.mdx", + [2001997] = "World AZEROTH REDRIDGE PASSIVEDOODADS Bush RedridgeBush02.mdx", + [2001998] = "World AZEROTH REDRIDGE PASSIVEDOODADS Bush RedridgeBush03.mdx", + [2001999] = "World AZEROTH REDRIDGE PASSIVEDOODADS DOCKPIECES RedRidgeDocksBeam01.mdx", + [2002000] = "World AZEROTH REDRIDGE PASSIVEDOODADS DOCKPIECES RedRidgeDocksBoardwalk01.mdx", + [2002001] = "World AZEROTH REDRIDGE PASSIVEDOODADS DOCKPIECES RedRidgeDocksPlank01.mdx", + [2002002] = "World AZEROTH REDRIDGE PASSIVEDOODADS DOCKPIECES RedRidgeDocksPylon01.mdx", + [2002003] = "World AZEROTH REDRIDGE PASSIVEDOODADS DOCKPIECES RedRidgeDocksboardwalk02.mdx", + [2002004] = "World AZEROTH REDRIDGE PASSIVEDOODADS DOCKPIECES RedRidgeDocksboardwalk03.mdx", + [2002005] = "World AZEROTH REDRIDGE PASSIVEDOODADS Detail CatailPatch catailpatch01.mdx", + [2002006] = "World AZEROTH REDRIDGE PASSIVEDOODADS Docks RedRidgeDocks01.mdx", + [2002007] = "World AZEROTH REDRIDGE PASSIVEDOODADS Docks RedRidgeDocks03.mdx", + [2002008] = "World AZEROTH REDRIDGE PASSIVEDOODADS Misc InsectMound.mdx", + [2002009] = "World AZEROTH REDRIDGE PASSIVEDOODADS Rocks RedridgeRock01.mdx", + [2002010] = "World AZEROTH REDRIDGE PASSIVEDOODADS Rocks RedridgeRock02.mdx", + [2002011] = "World AZEROTH REDRIDGE PASSIVEDOODADS Rocks RedridgeRock03.mdx", + [2002012] = "World AZEROTH REDRIDGE PASSIVEDOODADS SPIKEWALL BattleGladeWoodSpikesLongRow.mdx", + [2002013] = "World AZEROTH REDRIDGE PASSIVEDOODADS SPIKEWALL BattleGladeWoodSpikesShortRow.mdx", + [2002014] = "World AZEROTH REDRIDGE PASSIVEDOODADS Stumps RedridgeStump02.mdx", + [2002015] = "World AZEROTH REDRIDGE PASSIVEDOODADS Trees RedRidgeFallenTree01.mdx", + [2002016] = "World AZEROTH REDRIDGE PASSIVEDOODADS Trees RedRidgeFallenTree01Moss.mdx", + [2002017] = "World AZEROTH REDRIDGE PASSIVEDOODADS Trees RedRidgeFallenTree02.mdx", + [2002018] = "World AZEROTH REDRIDGE PASSIVEDOODADS Trees RedRidgeFallenTree02Moss.mdx", + [2002019] = "World AZEROTH REDRIDGE PASSIVEDOODADS Trees RedRidgeFallenTree03.mdx", + [2002020] = "World AZEROTH REDRIDGE PASSIVEDOODADS Trees RedridgeTree01.mdx", + [2002021] = "World AZEROTH REDRIDGE PASSIVEDOODADS Trees RedridgeTree02.mdx", + [2002022] = "World AZEROTH REDRIDGE PASSIVEDOODADS Trees RedridgeTreeCanopy01.mdx", + [2002023] = "World AZEROTH REDRIDGE PASSIVEDOODADS Trees RedridgeTreeCanopy02.mdx", + [2002024] = "World AZEROTH REDRIDGE PASSIVEDOODADS Trees RedridgeTreeMid01.mdx", + [2002025] = "World AZEROTH REDRIDGE PASSIVEDOODADS Trees RedridgeTreeStump01.mdx", + [2002026] = "World AZEROTH STRANGLETHORN ACTIVEDOODADS CAGES Cage01.mdx", + [2002027] = "World AZEROTH STRANGLETHORN ACTIVEDOODADS CAGES Cage02.mdx", + [2002028] = "World AZEROTH STRANGLETHORN ACTIVEDOODADS CAGES Cage03.mdx", + [2002029] = "World AZEROTH STRANGLETHORN ACTIVEDOODADS HoldingPen HoldingPen.mdx", + [2002030] = "World AZEROTH STRANGLETHORN BUILDINGS CRASHZEPPELIN CrashZeppelin.mdx", + [2002031] = "World AZEROTH STRANGLETHORN BUILDINGS OilRig OilRig.mdx", + [2002032] = "World AZEROTH STRANGLETHORN BUILDINGS RuneStoneMoss_01 RuneStoneMoss_01.mdx", + [2002033] = "World AZEROTH STRANGLETHORN BUILDINGS TROLLWATCHTOWER TrollWatchTower.mdx", + [2002034] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS Aquaduct aquaductstone_corner1.mdx", + [2002035] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS Aquaduct aquaductstone_corner2.mdx", + [2002036] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS Aquaduct aquaductstone_longpillar.mdx", + [2002037] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS Aquaduct aquaductstone_pillar1.mdx", + [2002038] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS Aquaduct aquaductstone_pillar2.mdx", + [2002039] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS Aquaduct aquaductstone_pillar3.mdx", + [2002040] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS Aquaduct aquaductstone_short.mdx", + [2002041] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS Aquaduct aquaductstone_straight.mdx", + [2002042] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS Aquaduct aquaductstone_straight6.mdx", + [2002043] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS BRIDGE JaguarStatue.mdx", + [2002044] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS BRIDGE RopeBridge.mdx", + [2002045] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS BRIDGE StonebridgeLong.mdx", + [2002046] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS BRIDGE StonebridgeShort.mdx", + [2002047] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS BRIDGE StrangleChasmBridge.mdx", + [2002048] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS CrystalCreatures CrystallizedHuman01.mdx", + [2002049] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS CrystalCreatures CrystallizedHuman02.mdx", + [2002050] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS CrystalCreatures CrystallizedHuman03.mdx", + [2002051] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS CrystalCreatures CrystallizedTroll01.mdx", + [2002052] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS CrystalCreatures CrystallizedTroll02.mdx", + [2002053] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS CrystalCreatures CrystallizedTroll03.mdx", + [2002054] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS Detail StranglePlant06.mdx", + [2002055] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS Detail StranglePlant07.mdx", + [2002056] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS Detail StranglePlant08.mdx", + [2002057] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS Detail StranglePlant09.mdx", + [2002058] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS Detail StranglePlant10.mdx", + [2002059] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS Detail StrangleThornFern01.mdx", + [2002060] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS Detail StrangleThornFern05.mdx", + [2002061] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS Detail StrangleThornFern06.mdx", + [2002062] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS Detail StrangleThornPlant01.mdx", + [2002063] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS Detail StrangleThornPlant02.mdx", + [2002064] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS Detail StrangleThornPlant05.mdx", + [2002065] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS Detail StranglethornFern02.mdx", + [2002066] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS Detail StranglethornFern03.mdx", + [2002067] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS Detail StranglethornFern04.mdx", + [2002068] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS Detail StranglethornPlant03.mdx", + [2002069] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS Detail StranglethornPlant04.mdx", + [2002070] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS DiamondMineWallLantern DiamondMineWallLantern.mdx", + [2002071] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS GemMineCar01 GemMineCar01.mdx", + [2002072] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS GemMineCar02 GemMineCar02.mdx", + [2002073] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS HolySpringWell HolySpringWell.mdx", + [2002074] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS OverGrowth02 OverGrowth02.mdx", + [2002075] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS Post BootyBayPost.mdx", + [2002076] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS RUINS StranglethornRuins01.mdx", + [2002077] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS RUINS StranglethornRuins02.mdx", + [2002078] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS RUINS StranglethornRuins03.mdx", + [2002079] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS RUINS StranglethornRuins04.mdx", + [2002080] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS RUINS StranglethornRuins05.mdx", + [2002081] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS RUINS StranglethornRuins06.mdx", + [2002082] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS RUINS StranglethornRuins07.mdx", + [2002083] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS RUINS StranglethornRuins08.mdx", + [2002084] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS RUINS StranglethornRuins09.mdx", + [2002085] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS RUINS StranglethornRuins10.mdx", + [2002086] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS RUINS StranglethornRuins11.mdx", + [2002087] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS RUINS StranglethornRuins12.mdx", + [2002088] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS RUINS StranglethornRuins13.mdx", + [2002089] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS RUINS StranglethornRuins14.mdx", + [2002090] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS RUINS StranglethornRuins15.mdx", + [2002091] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS RUINS StranglethornRuins16.mdx", + [2002092] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS RUINS StranglethornRuins17.mdx", + [2002093] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS RUINS StranglethornRuins18.mdx", + [2002094] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS RUINS StranglethornRuins19.mdx", + [2002095] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS RUINS StranglethornRuins20.mdx", + [2002096] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS RUINS StranglethornRuins21.mdx", + [2002097] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS RUINS Stranglethornruins_pylon.mdx", + [2002098] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS Rocks StranglethornCliffRock01.mdx", + [2002099] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS Rocks StranglethornCliffRock02.mdx", + [2002100] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS Rocks StranglethornCliffRock03.mdx", + [2002101] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS SERPENTSTATUE02 SerpentStatue02.mdx", + [2002102] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS StrangleDeadTrees StrangleDeadTree01.mdx", + [2002103] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS TROLLSHRINE TrollShrine.mdx", + [2002104] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS TROLLSHRINE stranglethorntikihead.mdx", + [2002105] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS Trees BootyBayTree01.mdx", + [2002106] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS Trees StrangleDeadTreeNoVine.mdx", + [2002107] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS Trees StrangleThornRoot01.mdx", + [2002108] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS Trees StrangleThornRoot02.mdx", + [2002109] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS Trees StrangleThornRoot03.mdx", + [2002110] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS Trees StranglethornTree01 StranglethornTree01.mdx", + [2002111] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS Trees StranglethornTree02 StranglethornTree02.mdx", + [2002112] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS Trees StranglethornTree04 StranglethornTree04.mdx", + [2002113] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS TrollDrum TrollDrumSoundObj.mdx", + [2002114] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS TrollDungeonSerpentStatue TrollDungeonSerpentStatue.mdx", + [2002115] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS WATERFALL StranglethornWaterfall01.mdx", + [2002116] = "World AZEROTH SWAMPOSORROW Buildings RuneStoneCrud_01 RuneStoneCrud_01.mdx", + [2002117] = "World AZEROTH SWAMPOSORROW PASSIVEDOODADS PLANTS SwampPlant03.mdx", + [2002118] = "World AZEROTH SWAMPOSORROW PASSIVEDOODADS PLANTS SwampPlant04.mdx", + [2002119] = "World AZEROTH SWAMPOSORROW PASSIVEDOODADS PLANTS SwampPlant05.mdx", + [2002120] = "World AZEROTH SWAMPOSORROW PASSIVEDOODADS PLANTS SwampSorrowPlant01.mdx", + [2002121] = "World AZEROTH SWAMPOSORROW PASSIVEDOODADS PLANTS SwampSorrowRoot01.mdx", + [2002122] = "World AZEROTH SWAMPOSORROW PASSIVEDOODADS PLANTS SwampSorrowRoot02.mdx", + [2002123] = "World AZEROTH SWAMPOSORROW PASSIVEDOODADS PLANTS SwampSorrowRoot03.mdx", + [2002124] = "World AZEROTH SWAMPOSORROW PASSIVEDOODADS PLANTS SwampofSorrowLilyPad01.mdx", + [2002125] = "World AZEROTH SWAMPOSORROW PASSIVEDOODADS PLANTS SwampofSorrowLilyPad02.mdx", + [2002126] = "World AZEROTH SWAMPOSORROW PASSIVEDOODADS Rocks SwampSorrowRock01.mdx", + [2002127] = "World AZEROTH SWAMPOSORROW PASSIVEDOODADS Rocks SwampSorrowRock02.mdx", + [2002128] = "World AZEROTH SWAMPOSORROW PASSIVEDOODADS Rocks SwampSorrowRock03.mdx", + [2002129] = "World AZEROTH SWAMPOSORROW PASSIVEDOODADS SWAMPBOATS SwampBoat01.mdx", + [2002130] = "World AZEROTH SWAMPOSORROW PASSIVEDOODADS SwampBeastBones SwampBeastBone01.mdx", + [2002131] = "World AZEROTH SWAMPOSORROW PASSIVEDOODADS SwampSkulls SwampSkulls01.mdx", + [2002132] = "World AZEROTH SWAMPOSORROW PASSIVEDOODADS SwampSkulls SwampSkulls02.mdx", + [2002133] = "World AZEROTH SWAMPOSORROW PASSIVEDOODADS SwampSnakeStatue SwampSnakeStatue01.mdx", + [2002134] = "World AZEROTH SWAMPOSORROW PASSIVEDOODADS SwampWagon SwampWagon01.mdx", + [2002135] = "World AZEROTH SWAMPOSORROW PASSIVEDOODADS TreeHuts LostTreeHuts01.mdx", + [2002136] = "World AZEROTH SWAMPOSORROW PASSIVEDOODADS TreeHuts LostTreeHuts02.mdx", + [2002137] = "World AZEROTH SWAMPOSORROW PASSIVEDOODADS TreeHuts LostTreeHuts03.mdx", + [2002138] = "World AZEROTH SWAMPOSORROW PASSIVEDOODADS Vines SwampHangingVines02.mdx", + [2002139] = "World AZEROTH SWAMPOSORROW PASSIVEDOODADS WATERHUTS WaterHut01.mdx", + [2002140] = "World AZEROTH SWAMPOSORROW PASSIVEDOODADS WATERHUTS WaterHut02.mdx", + [2002141] = "World AZEROTH SWAMPOSORROW PASSIVEDOODADS treelogs SwampTreeLog01.mdx", + [2002142] = "World AZEROTH SWAMPOSORROW PASSIVEDOODADS treelogs SwampTreeLog02.mdx", + [2002143] = "World AZEROTH SWAMPOSORROW PASSIVEDOODADS treelogs SwampTreeLog03.mdx", + [2002144] = "World AZEROTH SWAMPOSORROW PASSIVEDOODADS treelogs SwampTreeLog04.mdx", + [2002145] = "World AZEROTH SWAMPOSORROW PASSIVEDOODADS trees SwampSorrowCanopyTree01.mdx", + [2002146] = "World AZEROTH SWAMPOSORROW PASSIVEDOODADS trees SwampSorrowCanopyTree02.mdx", + [2002147] = "World AZEROTH SWAMPOSORROW PASSIVEDOODADS trees SwampSorrowCanopyTree03.mdx", + [2002148] = "World AZEROTH SWAMPOSORROW PASSIVEDOODADS trees SwampSorrowCanopyTree04.mdx", + [2002149] = "World AZEROTH SWAMPOSORROW PASSIVEDOODADS trees SwampSorrowCanopyTree05.mdx", + [2002150] = "World AZEROTH SWAMPOSORROW PASSIVEDOODADS trees SwampSorrowCanopyTree06.mdx", + [2002151] = "World AZEROTH SWAMPOSORROW PASSIVEDOODADS trees SwampSorrowTree01.mdx", + [2002152] = "World AZEROTH SWAMPOSORROW PASSIVEDOODADS trees SwampSorrowTree02.mdx", + [2002153] = "World AZEROTH SunkenTemple PassiveDoodads SerpentAltar SerpentAltar.mdx", + [2002154] = "World AZEROTH THEBLASTEDLANDS PASSIVEDOODADS BONES BlastedLandsBlastedCow.mdx", + [2002155] = "World AZEROTH THEBLASTEDLANDS PASSIVEDOODADS BONES BlastedLandsBonePile02.mdx", + [2002156] = "World AZEROTH THEBLASTEDLANDS PASSIVEDOODADS BONES BlastedLandsBonePile03.mdx", + [2002157] = "World AZEROTH THEBLASTEDLANDS PASSIVEDOODADS BONES BlastedLandsSkull01.mdx", + [2002158] = "World AZEROTH THEBLASTEDLANDS PASSIVEDOODADS BONES BlastedLandsSkull02.mdx", + [2002159] = "World AZEROTH THEBLASTEDLANDS PASSIVEDOODADS BONES BlastedLandsSpine01.mdx", + [2002160] = "World AZEROTH THEBLASTEDLANDS PASSIVEDOODADS BONES BlastedLandsbone01.mdx", + [2002161] = "World AZEROTH THEBLASTEDLANDS PASSIVEDOODADS Column BlastedlandsBrokenColumn01.mdx", + [2002162] = "World AZEROTH THEBLASTEDLANDS PASSIVEDOODADS Column BlastedlandsBrokenColumn02.mdx", + [2002163] = "World AZEROTH THEBLASTEDLANDS PASSIVEDOODADS Detail BlastedlandsRock01.mdx", + [2002164] = "World AZEROTH THEBLASTEDLANDS PASSIVEDOODADS RUINS BlastedLandsPortalRuins01.mdx", + [2002165] = "World AZEROTH THEBLASTEDLANDS PASSIVEDOODADS RUINS BlastedLandsPortalRuins02.mdx", + [2002166] = "World AZEROTH THEBLASTEDLANDS PASSIVEDOODADS RUINS BlastedLandsPortalRuins03.mdx", + [2002167] = "World AZEROTH THEBLASTEDLANDS PASSIVEDOODADS RUINS BlastedLandsRuins01.mdx", + [2002168] = "World AZEROTH THEBLASTEDLANDS PASSIVEDOODADS RUINS BlastedLandsRuins02.mdx", + [2002169] = "World AZEROTH THEBLASTEDLANDS PASSIVEDOODADS RUINS BlastedLandsRuins03.mdx", + [2002170] = "World AZEROTH THEBLASTEDLANDS PASSIVEDOODADS RUINS BlastedLandsRuinsTusk.mdx", + [2002171] = "World AZEROTH THEBLASTEDLANDS PASSIVEDOODADS RUINS BrokenGateArch.mdx", + [2002172] = "World AZEROTH THEBLASTEDLANDS PASSIVEDOODADS RUINS BrokenGateChain01.mdx", + [2002173] = "World AZEROTH THEBLASTEDLANDS PASSIVEDOODADS RUINS BrokenGateChain02.mdx", + [2002174] = "World AZEROTH THEBLASTEDLANDS PASSIVEDOODADS RUINS BrokenGateSide01.mdx", + [2002175] = "World AZEROTH THEBLASTEDLANDS PASSIVEDOODADS RUINS BrokenGateSide02.mdx", + [2002176] = "World AZEROTH THEBLASTEDLANDS PASSIVEDOODADS RUINS BrokenGateWall.mdx", + [2002177] = "World AZEROTH THEBLASTEDLANDS PASSIVEDOODADS RUINS BrokenGateWood01.mdx", + [2002178] = "World AZEROTH THEBLASTEDLANDS PASSIVEDOODADS RUINS BrokenGateWood02.mdx", + [2002179] = "World AZEROTH THEBLASTEDLANDS PASSIVEDOODADS RUINS BrokenGateWood03.mdx", + [2002180] = "World AZEROTH THEBLASTEDLANDS PASSIVEDOODADS Roots BlastedLandsRoot01.mdx", + [2002181] = "World AZEROTH THEBLASTEDLANDS PASSIVEDOODADS Roots BlastedLandsRoot03.mdx", + [2002182] = "World AZEROTH THEBLASTEDLANDS PASSIVEDOODADS Trees BlastedLandsAshTree02.mdx", + [2002183] = "World AZEROTH THEBLASTEDLANDS PASSIVEDOODADS Trees BlastedLandsAshTree03.mdx", + [2002184] = "World AZEROTH THEBLASTEDLANDS PASSIVEDOODADS Trees BlastedLandsBlastedTree01.mdx", + [2002185] = "World AZEROTH THEBLASTEDLANDS PASSIVEDOODADS Trees BlastedLandsBlastedTree03.mdx", + [2002186] = "World AZEROTH THEBLASTEDLANDS PASSIVEDOODADS Trees BlastedLandsBlastedTree04.mdx", + [2002187] = "World AZEROTH THEBLASTEDLANDS PASSIVEDOODADS Trees BlastedLandsTree01.mdx", + [2002188] = "World AZEROTH THEBLASTEDLANDS PASSIVEDOODADS rocks BlastedlandsPortalRock01.mdx", + [2002189] = "World AZEROTH THEBLASTEDLANDS PASSIVEDOODADS rocks BlastedlandsPortalRock02.mdx", + [2002190] = "World AZEROTH THEBLASTEDLANDS PASSIVEDOODADS rocks BlastedlandsPortalRock03.mdx", + [2002191] = "World AZEROTH THEBLASTEDLANDS PASSIVEDOODADS rocks BlastedlandsRock02.mdx", + [2002192] = "World AZEROTH THEBLASTEDLANDS PASSIVEDOODADS rocks BlastedlandsRock03.mdx", + [2002193] = "World AZEROTH WESTFALL Buildings Church WestfallChurch.mdx", + [2002194] = "World AZEROTH WESTFALL Buildings GrainSilo WestFallGrainSilo01.mdx", + [2002195] = "World AZEROTH WESTFALL Buildings Lighthouse WestfallLighthouse.mdx", + [2002196] = "World AZEROTH WESTFALL Buildings Shed WestfallShed.mdx", + [2002197] = "World AZEROTH WESTFALL Buildings Windmill WestfallWindmill.mdx", + [2002198] = "World AZEROTH WESTFALL PASSIVEDOODADS Aquaduct aquaduct_corner1.mdx", + [2002199] = "World AZEROTH WESTFALL PASSIVEDOODADS Aquaduct aquaduct_corner2.mdx", + [2002200] = "World AZEROTH WESTFALL PASSIVEDOODADS Aquaduct aquaduct_longpillar.mdx", + [2002201] = "World AZEROTH WESTFALL PASSIVEDOODADS Aquaduct aquaduct_pillar1.mdx", + [2002202] = "World AZEROTH WESTFALL PASSIVEDOODADS Aquaduct aquaduct_pillar2.mdx", + [2002203] = "World AZEROTH WESTFALL PASSIVEDOODADS Aquaduct aquaduct_pillar3.mdx", + [2002204] = "World AZEROTH WESTFALL PASSIVEDOODADS Aquaduct aquaduct_short.mdx", + [2002205] = "World AZEROTH WESTFALL PASSIVEDOODADS Aquaduct aquaduct_straight.mdx", + [2002206] = "World AZEROTH WESTFALL PASSIVEDOODADS Aquaduct aquaduct_straight6.mdx", + [2002207] = "World AZEROTH WESTFALL PASSIVEDOODADS Aquaduct aquaduct_xsupport.mdx", + [2002208] = "World AZEROTH WESTFALL PASSIVEDOODADS BARREL WestFallBarrel01.mdx", + [2002209] = "World AZEROTH WESTFALL PASSIVEDOODADS BrokenCart BrokenCart.mdx", + [2002210] = "World AZEROTH WESTFALL PASSIVEDOODADS ButterChurner ButterChurner.mdx", + [2002211] = "World AZEROTH WESTFALL PASSIVEDOODADS Cages HangingCage01.mdx", + [2002212] = "World AZEROTH WESTFALL PASSIVEDOODADS Cages HangingCage02.mdx", + [2002213] = "World AZEROTH WESTFALL PASSIVEDOODADS Crate WestFallCrate.mdx", + [2002214] = "World AZEROTH WESTFALL PASSIVEDOODADS DEADSEAMONSTER DeadSeaMonster.mdx", + [2002215] = "World AZEROTH WESTFALL PASSIVEDOODADS DEADSEAMONSTER SeaMonsterChunk.mdx", + [2002216] = "World AZEROTH WESTFALL PASSIVEDOODADS DeadCow deadcow.mdx", + [2002217] = "World AZEROTH WESTFALL PASSIVEDOODADS DeadMule deadmule.mdx", + [2002218] = "World AZEROTH WESTFALL PASSIVEDOODADS Detail WestFallBerryBush.mdx", + [2002219] = "World AZEROTH WESTFALL PASSIVEDOODADS Detail WestFallBush01.mdx", + [2002220] = "World AZEROTH WESTFALL PASSIVEDOODADS Detail WestFallCabbage.mdx", + [2002221] = "World AZEROTH WESTFALL PASSIVEDOODADS Detail WestFallCatails.mdx", + [2002222] = "World AZEROTH WESTFALL PASSIVEDOODADS Detail WestFallCotton.mdx", + [2002223] = "World AZEROTH WESTFALL PASSIVEDOODADS Detail WestFallDandilion.mdx", + [2002224] = "World AZEROTH WESTFALL PASSIVEDOODADS Detail WestFallDriftwood.mdx", + [2002225] = "World AZEROTH WESTFALL PASSIVEDOODADS Detail WestFallMandrake.mdx", + [2002226] = "World AZEROTH WESTFALL PASSIVEDOODADS Detail WestFallTobbaco.mdx", + [2002227] = "World AZEROTH WESTFALL PASSIVEDOODADS Detail WestFallWheat01.mdx", + [2002228] = "World AZEROTH WESTFALL PASSIVEDOODADS Detail WestFallWheat02.mdx", + [2002229] = "World AZEROTH WESTFALL PASSIVEDOODADS Detail WestfallCornField.mdx", + [2002230] = "World AZEROTH WESTFALL PASSIVEDOODADS Detail WestfallReeds01.mdx", + [2002231] = "World AZEROTH WESTFALL PASSIVEDOODADS Detail WestfallWheat03.mdx", + [2002232] = "World AZEROTH WESTFALL PASSIVEDOODADS Furniture westfallbed01.mdx", + [2002233] = "World AZEROTH WESTFALL PASSIVEDOODADS GrindStone GrindStone.mdx", + [2002234] = "World AZEROTH WESTFALL PASSIVEDOODADS HaremPillow01 HaremPillow01.mdx", + [2002235] = "World AZEROTH WESTFALL PASSIVEDOODADS HaremPillow02 HaremPillow02.mdx", + [2002236] = "World AZEROTH WESTFALL PASSIVEDOODADS Harness harness.mdx", + [2002237] = "World AZEROTH WESTFALL PASSIVEDOODADS HayStack WestFallHayStack01.mdx", + [2002238] = "World AZEROTH WESTFALL PASSIVEDOODADS HayStack WestFallHayStack02.mdx", + [2002239] = "World AZEROTH WESTFALL PASSIVEDOODADS HayWagon WestfallHayWagon.mdx", + [2002240] = "World AZEROTH WESTFALL PASSIVEDOODADS LAMPPOST WestfallLampPost.mdx", + [2002241] = "World AZEROTH WESTFALL PASSIVEDOODADS LAMPPOST WestfallLampPost01.mdx", + [2002242] = "World AZEROTH WESTFALL PASSIVEDOODADS LAMPPOST WestfallLampPost02.mdx", + [2002243] = "World AZEROTH WESTFALL PASSIVEDOODADS LampDeadMines LampDeadMines.mdx", + [2002244] = "World AZEROTH WESTFALL PASSIVEDOODADS LightHouseBeam LightHouseEffect.mdx", + [2002245] = "World AZEROTH WESTFALL PASSIVEDOODADS Outhouse OutHouse.mdx", + [2002246] = "World AZEROTH WESTFALL PASSIVEDOODADS Plow Plow.mdx", + [2002247] = "World AZEROTH WESTFALL PASSIVEDOODADS ROCKS WestFallBoulder01.mdx", + [2002248] = "World AZEROTH WESTFALL PASSIVEDOODADS ROCKS WestFallBoulder02.mdx", + [2002249] = "World AZEROTH WESTFALL PASSIVEDOODADS RakeCart RakeCart.mdx", + [2002250] = "World AZEROTH WESTFALL PASSIVEDOODADS RugRacks RugRack01.mdx", + [2002251] = "World AZEROTH WESTFALL PASSIVEDOODADS RugRacks RugRack02.mdx", + [2002252] = "World AZEROTH WESTFALL PASSIVEDOODADS Scarecrow WestFallScarecrow.mdx", + [2002253] = "World AZEROTH WESTFALL PASSIVEDOODADS SunkenAnchor SunkenAnchor.mdx", + [2002254] = "World AZEROTH WESTFALL PASSIVEDOODADS Tombstones TombStone01.mdx", + [2002255] = "World AZEROTH WESTFALL PASSIVEDOODADS Tombstones TombStone02.mdx", + [2002256] = "World AZEROTH WESTFALL PASSIVEDOODADS Tombstones TombStone03.mdx", + [2002257] = "World AZEROTH WESTFALL PASSIVEDOODADS Tombstones TombStone04.mdx", + [2002258] = "World AZEROTH WESTFALL PASSIVEDOODADS TreeStumps WestFallTreeStump01.mdx", + [2002259] = "World AZEROTH WESTFALL PASSIVEDOODADS TreeStumps WestFallTreeStump02.mdx", + [2002260] = "World AZEROTH WESTFALL PASSIVEDOODADS Trees WestFallTree01.mdx", + [2002261] = "World AZEROTH WESTFALL PASSIVEDOODADS Trees WestFallTree02.mdx", + [2002262] = "World AZEROTH WESTFALL PASSIVEDOODADS Trees WestFallTree03.mdx", + [2002263] = "World AZEROTH WESTFALL PASSIVEDOODADS Trees WestFallTree04.mdx", + [2002264] = "World AZEROTH WESTFALL PASSIVEDOODADS Trees WestFallTreeCanopy01.mdx", + [2002265] = "World AZEROTH WESTFALL PASSIVEDOODADS Utensils Bowl.mdx", + [2002266] = "World AZEROTH WESTFALL PASSIVEDOODADS Utensils Plate.mdx", + [2002267] = "World AZEROTH WESTFALL PASSIVEDOODADS Utensils Stein.mdx", + [2002268] = "World AZEROTH WESTFALL PASSIVEDOODADS WRECKEDROWBOAT WreckedRowBoat.mdx", + [2002269] = "World AZEROTH WESTFALL PASSIVEDOODADS Westfall Stable WestFallStable01.mdx", + [2002270] = "World AZEROTH WESTFALL PASSIVEDOODADS Westfall Wagon WestfallWagon01.mdx", + [2002271] = "World AZEROTH WESTFALL PASSIVEDOODADS WestfallChair WestfallChair.mdx", + [2002272] = "World AZEROTH WESTFALL PASSIVEDOODADS WestfallFence WestfallFence.mdx", + [2002273] = "World AZEROTH WESTFALL PASSIVEDOODADS WestfallFence WestfallFenceEnd.mdx", + [2002274] = "World AZEROTH WESTFALL PASSIVEDOODADS WestfallFence WestfallFencepost.mdx", + [2002275] = "World AZEROTH WESTFALL PASSIVEDOODADS WestfallFountain WestfallFountain.mdx", + [2002276] = "World AZEROTH WESTFALL PASSIVEDOODADS WestfallRuins WestfallRuins01.mdx", + [2002277] = "World AZEROTH WESTFALL PASSIVEDOODADS WestfallRuins WestfallRuins02.mdx", + [2002278] = "World AZEROTH WESTFALL PASSIVEDOODADS WestfallRuins WestfallRuins03.mdx", + [2002279] = "World AZEROTH WESTFALL PASSIVEDOODADS WestfallRuins WestfallRuins04.mdx", + [2002280] = "World AZEROTH WESTFALL PASSIVEDOODADS WestfallSkeleton WestfallSkeleton.mdx", + [2002281] = "World AZEROTH WESTFALL PASSIVEDOODADS WestfallTable WestfallTable.mdx", + [2002282] = "World AZEROTH WESTFALL PASSIVEDOODADS WestfallVineyards WestfallVineyard01.mdx", + [2002283] = "World AZEROTH ZULGURUB ACTIVEDOODADS Doors CollisionWallPenDoor01.mdx", + [2002284] = "World AZEROTH ZULGURUB ACTIVEDOODADS Doors ZulGurubForcefield.mdx", + [2002285] = "World AZEROTH ZULGURUB ACTIVEDOODADS Doors ZulGurubPenDoor.mdx", + [2002286] = "World AZEROTH ZULGURUB ACTIVEDOODADS MainDoor ZulGurubMainDoor.mdx", + [2002287] = "World AZEROTH ZULGURUB ACTIVEDOODADS SpiderArea NastySpiderEgg.mdx", + [2002288] = "World AZEROTH ZULGURUB ACTIVEDOODADS VOODOOPILE VoodooPile01.mdx", + [2002289] = "World AZEROTH ZULGURUB PASSIVEDOODADS BatTotem TrollBatTotem.mdx", + [2002290] = "World AZEROTH ZULGURUB PASSIVEDOODADS HEART heartofhakkar.mdx", + [2002291] = "World AZEROTH ZULGURUB PASSIVEDOODADS Lightning ZulGurubLightningMadness.mdx", + [2002292] = "World AZEROTH ZULGURUB PASSIVEDOODADS Ruins ZulGurubRuins04.mdx", + [2002293] = "World AZEROTH ZULGURUB PASSIVEDOODADS Ruins ZulGurubRuins05.mdx", + [2002294] = "World AZEROTH ZULGURUB PASSIVEDOODADS Ruins ZulGurubRuins06.mdx", + [2002295] = "World AZEROTH ZULGURUB PASSIVEDOODADS Ruins ZulGurubRuins07.mdx", + [2002296] = "World AZEROTH ZULGURUB PASSIVEDOODADS SPIDERAREA NastySpiderWeb01.mdx", + [2002297] = "World AZEROTH ZULGURUB PASSIVEDOODADS SPIDERAREA NastySpiderWeb02.mdx", + [2002298] = "World AZEROTH ZULGURUB PASSIVEDOODADS SPIDERAREA NastySpiderWeb03.mdx", + [2002299] = "World AZEROTH ZULGURUB PASSIVEDOODADS SPIDERAREA SpiderPod01.mdx", + [2002300] = "World AZEROTH ZULGURUB PASSIVEDOODADS SPIDERAREA SpiderPod02.mdx", + [2002301] = "World AZEROTH ZULGURUB PASSIVEDOODADS Trees ZulGurubTree01.mdx", + [2002302] = "World AZEROTH ZULGURUB PASSIVEDOODADS Trees ZulGurubTree02.mdx", + [2002303] = "World AZEROTH ZULGURUB PASSIVEDOODADS Trees ZulGurubTree03.mdx", + [2002304] = "World AZEROTH ZULGURUB PASSIVEDOODADS Trees ZulGurubTree04.mdx", + [2002305] = "World AZEROTH ZULGURUB PASSIVEDOODADS Trees ZulGurubTree05.mdx", + [2002306] = "World ArtTest Boxtest xyz.mdx", + [2002307] = "World CRITTER BIRDS Bird01.mdx", + [2002308] = "World CRITTER BIRDS Bird02.mdx", + [2002309] = "World CRITTER BIRDS Wasp01.mdx", + [2002310] = "World CRITTER BIRDS Wasp02.mdx", + [2002311] = "World CRITTER FISH Fish01.mdx", + [2002312] = "World CRITTER FireFlies FireFlies01.mdx", + [2002313] = "World CRITTER bats Bat01.mdx", + [2002314] = "World CRITTER bats Bat02.mdx", + [2002315] = "World CRITTER butterflies ButterflyOrange01.mdx", + [2002316] = "World CRITTER butterflies ButterflyPurple01.mdx", + [2002317] = "World CRITTER butterflies ButterflyWhite01.mdx", + [2002318] = "World CRITTER flies Flies01.mdx", + [2002319] = "World DREAMING PASSIVEDOODADS DreamCatchers EmeraldDreamCatcher01.mdx", + [2002320] = "World DREAMING PASSIVEDOODADS DreamCatchers EmeraldDreamCatcher02.mdx", + [2002321] = "World DREAMING PASSIVEDOODADS DreamCatchers EmeraldDreamCatcher03.mdx", + [2002322] = "World DREAMING PASSIVEDOODADS DreamCatchers EmeraldDreamCatcher04.mdx", + [2002323] = "World DREAMING PASSIVEDOODADS FLOWERS DNRDreamBellFlower01.mdx", + [2002324] = "World DREAMING PASSIVEDOODADS FLOWERS DNRDreamBellFlower02.mdx", + [2002325] = "World DREAMING PASSIVEDOODADS FLOWERS DNRDreamBellFlower03.mdx", + [2002326] = "World DREAMING PASSIVEDOODADS FLOWERS DNRDreamDrippingFlower01.mdx", + [2002327] = "World DREAMING PASSIVEDOODADS FLOWERS DNRDreamDrippingFlower02.mdx", + [2002328] = "World DREAMING PASSIVEDOODADS FLOWERS DNRDreamDroopingFlower01.mdx", + [2002329] = "World DREAMING PASSIVEDOODADS FLOWERS DNRDreamDroopingFlower02.mdx", + [2002330] = "World DREAMING PASSIVEDOODADS FLOWERS DNRDreamOrangeFlower01.mdx", + [2002331] = "World DREAMING PASSIVEDOODADS FLOWERS DNRDreamOrangeFlower02.mdx", + [2002332] = "World DREAMING PASSIVEDOODADS FLOWERS DNRDreamPurpleFlower01.mdx", + [2002333] = "World DREAMING PASSIVEDOODADS FLOWERS DNRDreamPurpleFlower02.mdx", + [2002334] = "World DREAMING PASSIVEDOODADS FLOWERS DNRDreamPurpleFlower03.mdx", + [2002335] = "World DREAMING PASSIVEDOODADS FLOWERS DNRDreamSpinningFlower01.mdx", + [2002336] = "World DREAMING PASSIVEDOODADS TREES EmeraldDreamFountainTree01.mdx", + [2002337] = "World DREAMING PASSIVEDOODADS TREES EmeraldDreamFountainTree02.mdx", + [2002338] = "World DREAMING PASSIVEDOODADS TREES EmeraldDreamFountainTree03.mdx", + [2002339] = "World DREAMING PASSIVEDOODADS TREES EmeraldDreamFountainTree04.mdx", + [2002340] = "World DREAMING PASSIVEDOODADS TREES EmeraldDreamFountainTree05.mdx", + [2002341] = "World DUNGEON CAVERNSOFTIME ActiveDoodads CavernsofTimeDoor CavernDoor.mdx", + [2002342] = "World DUNGEON CAVERNSOFTIME PASSIVEDOODADS DARKPORTAL COT_portalparticles.mdx", + [2002343] = "World DUNGEON CAVERNSOFTIME PASSIVEDOODADS DARKPORTAL COT_standingstone01.mdx", + [2002344] = "World DUNGEON CAVERNSOFTIME PASSIVEDOODADS DARKPORTAL COT_standingstone02.mdx", + [2002345] = "World DUNGEON CAVERNSOFTIME PASSIVEDOODADS EnergyTrails EnergyTrail01.mdx", + [2002346] = "World DUNGEON CAVERNSOFTIME PASSIVEDOODADS EnergyTrails EnergyTrail01B.mdx", + [2002347] = "World DUNGEON CAVERNSOFTIME PASSIVEDOODADS EnergyTrails EnergyTrail01C.mdx", + [2002348] = "World DUNGEON CAVERNSOFTIME PASSIVEDOODADS EnergyTrails EnergyTrail02.mdx", + [2002349] = "World DUNGEON CAVERNSOFTIME PASSIVEDOODADS EnergyTrails EnergyTrail02B.mdx", + [2002350] = "World DUNGEON CAVERNSOFTIME PASSIVEDOODADS EnergyTrails EnergyTrail03.mdx", + [2002351] = "World DUNGEON CAVERNSOFTIME PASSIVEDOODADS EnergyTrails EnergyTrail03B.mdx", + [2002352] = "World DUNGEON CAVERNSOFTIME PASSIVEDOODADS EnergyTrails EnergyTrail04.mdx", + [2002353] = "World DUNGEON CAVERNSOFTIME PASSIVEDOODADS EnergyTrails EnergyTrail04B.mdx", + [2002354] = "World DUNGEON CAVERNSOFTIME PASSIVEDOODADS EnergyTrails EnergyTrail05.mdx", + [2002355] = "World DUNGEON CAVERNSOFTIME PASSIVEDOODADS EnergyTrails EnergyTrail05B.mdx", + [2002356] = "World DUNGEON CAVERNSOFTIME PASSIVEDOODADS EnergyTrails EnergyTrail05C.mdx", + [2002357] = "World DUNGEON CAVERNSOFTIME PASSIVEDOODADS EnergyTrails EnergyTrailHourglass.mdx", + [2002358] = "World DUNGEON CAVERNSOFTIME PASSIVEDOODADS EnergyTrails EnergyTrailHourglassB.mdx", + [2002359] = "World DUNGEON CAVERNSOFTIME PASSIVEDOODADS EnergyTrails EnergyTrailHourglassBlue.mdx", + [2002360] = "World DUNGEON CAVERNSOFTIME PASSIVEDOODADS EnergyTrails EnergyTrailHourglassPink.mdx", + [2002361] = "World DUNGEON CAVERNSOFTIME PASSIVEDOODADS EnergyTrails EnergyTrailHourglassRed.mdx", + [2002362] = "World DUNGEON CAVERNSOFTIME PASSIVEDOODADS HourGlass COT_HourGlass.mdx", + [2002363] = "World DUNGEON CAVERNSOFTIME PASSIVEDOODADS HourGlass COT_HourGlass_redo.mdx", + [2002364] = "World DUNGEON CAVERNSOFTIME PASSIVEDOODADS Portal COT_portal01.mdx", + [2002365] = "World DUNGEON Cave PassiveDoodads Crystals BasiliskCrystal02.mdx", + [2002366] = "World DUNGEON Cave PassiveDoodads Crystals CaveMineCrystalFormation01.mdx", + [2002367] = "World DUNGEON Cave PassiveDoodads Crystals CaveMineCrystalFormation02.mdx", + [2002368] = "World DUNGEON Cave PassiveDoodads Crystals CaveMineCrystalFormation03.mdx", + [2002369] = "World DUNGEON Cave PassiveDoodads Crystals CaveMineCrystalFormation04.mdx", + [2002370] = "World DUNGEON Cave PassiveDoodads Crystals CaveMineCrystalFormation05.mdx", + [2002371] = "World DUNGEON Cave PassiveDoodads Crystals CaveMineCrystalFormation06.mdx", + [2002372] = "World DUNGEON Cave PassiveDoodads Crystals CaveMineCrystalFormation07.mdx", + [2002373] = "World DUNGEON Cave PassiveDoodads Crystals CaveMineCrystalFormation08.mdx", + [2002374] = "World DUNGEON Cave PassiveDoodads Icicles Caveicicle1.mdx", + [2002375] = "World DUNGEON Cave PassiveDoodads Icicles Caveicicle2.mdx", + [2002376] = "World DUNGEON Cave PassiveDoodads Stalagmite Stalagmite01.mdx", + [2002377] = "World DUNGEON Cave PassiveDoodads Stalagtite DeadminesStalagtite01.mdx", + [2002378] = "World DUNGEON Cave PassiveDoodads Stalagtite DeadminesStalagtite02.mdx", + [2002379] = "World DUNGEON Cave PassiveDoodads Stalagtite Stalagtite01.mdx", + [2002380] = "World DUNGEON Cave PassiveDoodads Stalagtite Stalagtite02.mdx", + [2002381] = "World DUNGEON GOLDMINE PASSIVEDOODADS CAVEMINEKOBOLDS CaveMineKobold01.mdx", + [2002382] = "World DUNGEON GOLDMINE PASSIVEDOODADS CAVEMINEKOBOLDS CaveMineKobold02.mdx", + [2002383] = "World DUNGEON GOLDMINE PASSIVEDOODADS CAVEMINEKOBOLDS CaveMineKobold04.mdx", + [2002384] = "World DUNGEON GOLDMINE PASSIVEDOODADS CAVEMINEKOBOLDS CaveMineKobold05.mdx", + [2002385] = "World DUNGEON GOLDMINE PASSIVEDOODADS CAVEMINEKOBOLDS CaveMineKobold06.mdx", + [2002386] = "World DUNGEON GOLDMINE PASSIVEDOODADS CaveLanterns CaveMineLantern01.mdx", + [2002387] = "World DUNGEON GOLDMINE PASSIVEDOODADS CaveLanterns CaveMineLantern02.mdx", + [2002388] = "World DUNGEON GOLDMINE PASSIVEDOODADS CaveLanterns CaveMineLantern03.mdx", + [2002389] = "World DUNGEON GOLDMINE PASSIVEDOODADS CaveMineSpiderPillar01 CaveMineSpiderPillar01.mdx", + [2002390] = "World DUNGEON GOLDMINE PASSIVEDOODADS CaveSpiderwebs CaveSpiderWeb01.mdx", + [2002391] = "World DUNGEON GOLDMINE PASSIVEDOODADS CaveSpiderwebs CaveSpiderWeb02.mdx", + [2002392] = "World DUNGEON GoldshireInn InnBarrel InnBarrel.mdx", + [2002393] = "World DUNGEON GoldshireInn InnBedCanopy InnBedCanopy.mdx", + [2002394] = "World DUNGEON GoldshireInn InnChandelier InnChandelier.mdx", + [2002395] = "World DUNGEON GoldshireInn InnLantern InnLantern.mdx", + [2002396] = "World DUNGEON GoldshireInn InnPillow InnPillow.mdx", + [2002397] = "World DUNGEON GoldshireInn Innbed InnBed.mdx", + [2002398] = "World DUNGEON SCARLETMONASTERY PASSIVEDOODADS Fountains FishFountain.mdx", + [2002399] = "World DUNGEON SCARLETMONASTERY PASSIVEDOODADS Fountains MonasteryFalls.mdx", + [2002400] = "World DUNGEON SCARLETMONASTERY PASSIVEDOODADS STATUES StatueFountain.mdx", + [2002401] = "World DUNGEON SCARLETMONASTERY PASSIVEDOODADS STATUES statueDMmountainking.mdx", + [2002402] = "World DUNGEON SCARLETMONASTERY PASSIVEDOODADS STATUES statueHEFranger.mdx", + [2002403] = "World DUNGEON SCARLETMONASTERY PASSIVEDOODADS STATUES statueHEMmage.mdx", + [2002404] = "World DUNGEON SCARLETMONASTERY PASSIVEDOODADS STATUES statueHFspear.mdx", + [2002405] = "World DUNGEON SCARLETMONASTERY PASSIVEDOODADS STATUES statueHFsunshield.mdx", + [2002406] = "World DUNGEON SCARLETMONASTERY PASSIVEDOODADS STATUES statueHFsunshieldClean.mdx", + [2002407] = "World DUNGEON SCARLETMONASTERY PASSIVEDOODADS STATUES statueHFtwinblades.mdx", + [2002408] = "World DUNGEON SCARLETMONASTERY PASSIVEDOODADS STATUES statueHMcaptain.mdx", + [2002409] = "World DUNGEON SCARLETMONASTERY PASSIVEDOODADS STATUES statueHMcaptainClean.mdx", + [2002410] = "World DUNGEON SCARLETMONASTERY PASSIVEDOODADS STATUES statueHMcrusader.mdx", + [2002411] = "World DUNGEON SCARLETMONASTERY PASSIVEDOODADS STATUES statueHMcrusaderClean.mdx", + [2002412] = "World DUNGEON SCARLETMONASTERY PASSIVEDOODADS STATUES statueHMcrusaderSoldier.mdx", + [2002413] = "World DUNGEON SCARLETMONASTERY PASSIVEDOODADS STATUES statueHMonearm.mdx", + [2002414] = "World DUNGEON SCARLETMONASTERY PASSIVEDOODADS STATUES statueHMpaladin.mdx", + [2002415] = "World DUNGEON SCARLETMONASTERY PASSIVEDOODADS STATUES statueHMpriest.mdx", + [2002416] = "World Detail DrkBus01.mdx", + [2002417] = "World Detail DrkBus02.mdx", + [2002418] = "World Detail DrkBus03.mdx", + [2002419] = "World Detail DrkBus04.mdx", + [2002420] = "World Detail DrkBus05.mdx", + [2002421] = "World Detail DrkBus06.mdx", + [2002422] = "World Detail DrkBus07.mdx", + [2002423] = "World Detail DrkGra01.mdx", + [2002424] = "World Detail DrkGra02.mdx", + [2002425] = "World Detail DrkGra03.mdx", + [2002426] = "World Detail DrkGra04.mdx", + [2002427] = "World Detail DrkGra05.mdx", + [2002428] = "World Detail DrkGra06.mdx", + [2002429] = "World ENVIRONMENT DOODAD ANQUIRAJ Fireflies Hive_Fireflies_01.mdx", + [2002430] = "World ENVIRONMENT DOODAD ANQUIRAJ Fireflies Hive_Fireflies_Large.mdx", + [2002431] = "World ENVIRONMENT DOODAD ANQUIRAJ Lightshaft Hive_lightshaft01.mdx", + [2002432] = "World ENVIRONMENT DOODAD ANQUIRAJ Lightshaft Hive_lightshaft02.mdx", + [2002433] = "World ENVIRONMENT DOODAD ANQUIRAJ Sandwaterfall Hive_Sand.mdx", + [2002434] = "World ENVIRONMENT DOODAD ANQUIRAJ Sandwaterfall Hive_SandWaterfall.mdx", + [2002435] = "World ENVIRONMENT DOODAD ANQUIRAJ Steam HiveSteam.mdx", + [2002436] = "World ENVIRONMENT DOODAD CARNIVAL AnimalTrainer.mdx", + [2002437] = "World ENVIRONMENT DOODAD CARNIVAL Carni_Cannon.mdx", + [2002438] = "World ENVIRONMENT DOODAD CARNIVAL Carni_CannonTarget.mdx", + [2002439] = "World ENVIRONMENT DOODAD CARNIVAL Carni_Wagon01.mdx", + [2002440] = "World ENVIRONMENT DOODAD CARNIVAL Carni_Wagon_empty01.mdx", + [2002441] = "World ENVIRONMENT DOODAD CARNIVAL CarnieTent_small01.mdx", + [2002442] = "World ENVIRONMENT DOODAD CARNIVAL Carnie_Merchant01.mdx", + [2002443] = "World ENVIRONMENT DOODAD CARNIVAL CarnivalRailing.mdx", + [2002444] = "World ENVIRONMENT DOODAD CARNIVAL Carnival_Banner01.mdx", + [2002445] = "World ENVIRONMENT DOODAD CARNIVAL Carnival_Banner02.mdx", + [2002446] = "World ENVIRONMENT DOODAD CARNIVAL CokeTent.mdx", + [2002447] = "World ENVIRONMENT DOODAD CARNIVAL DarkMoonFairePoster.mdx", + [2002448] = "World ENVIRONMENT DOODAD CARNIVAL FortuneTeller.mdx", + [2002449] = "World ENVIRONMENT DOODAD CARNIVAL HayBail01.mdx", + [2002450] = "World ENVIRONMENT DOODAD CARNIVAL HayBail02.mdx", + [2002451] = "World ENVIRONMENT DOODAD CARNIVAL TargetPractice.mdx", + [2002452] = "World ENVIRONMENT DOODAD CARNIVAL TicketMaster.mdx", + [2002453] = "World ENVIRONMENT DOODAD DESOLACE CentaurRuins Centaur_Arch01.mdx", + [2002454] = "World ENVIRONMENT DOODAD DESOLACE CentaurRuins Centaur_Brokepillar01.mdx", + [2002455] = "World ENVIRONMENT DOODAD DESOLACE CentaurRuins Centaur_brokearch01.mdx", + [2002456] = "World ENVIRONMENT DOODAD DESOLACE CentaurRuins Centaur_brokearch02.mdx", + [2002457] = "World ENVIRONMENT DOODAD DESOLACE CentaurRuins Centaur_pillar01.mdx", + [2002458] = "World ENVIRONMENT DOODAD DESOLACE CentaurRuins Centaur_wall01.mdx", + [2002459] = "World ENVIRONMENT DOODAD DESOLACE CentaurRuins Centaur_wall_ruin01.mdx", + [2002460] = "World ENVIRONMENT DOODAD GENERALDOODADS ELEMENTALRIFTS AirRift.mdx", + [2002461] = "World ENVIRONMENT DOODAD GENERALDOODADS ELEMENTALRIFTS EarthRift.mdx", + [2002462] = "World ENVIRONMENT DOODAD GENERALDOODADS ELEMENTALRIFTS FireRift.mdx", + [2002463] = "World ENVIRONMENT DOODAD GENERALDOODADS ELEMENTALRIFTS WaterRift.mdx", + [2002464] = "World ENVIRONMENT DOODAD GENERALDOODADS HelpWantedPoster Helpwantedposter.mdx", + [2002465] = "World ENVIRONMENT DOODAD GENERALDOODADS NightElfLanternBlue NE_LanternBlue01.mdx", + [2002466] = "World ENVIRONMENT DOODAD GENERALDOODADS NightElfWeapons NE_Glaive01.mdx", + [2002467] = "World ENVIRONMENT DOODAD GENERALDOODADS NightElfWeapons NE_Glaive02.mdx", + [2002468] = "World ENVIRONMENT DOODAD GENERALDOODADS NightElfWeapons NE_Glaive03.mdx", + [2002469] = "World ENVIRONMENT DOODAD GENERALDOODADS NightElfWeapons NE_Glaive04.mdx", + [2002470] = "World ENVIRONMENT DOODAD GENERALDOODADS PACKAGE Horde_package01.mdx", + [2002471] = "World ENVIRONMENT DOODAD GENERALDOODADS PaladinShrine PaladinShrine.mdx", + [2002472] = "World ENVIRONMENT DOODAD Naxxramas IcyRune01.mdx", + [2002473] = "World ENVIRONMENT DOODAD PLAGUELANDS ActiveDoodads PlagueCauldronActive.mdx", + [2002474] = "World ENVIRONMENT DOODAD PLAGUELANDS ActiveDoodads PlagueCauldronActiveBase.mdx", + [2002475] = "World ENVIRONMENT DOODAD WINTERSPRINGGROVE CrackedIce cracked_ice01.mdx", + [2002476] = "World EXPANSION01 DOODADS BLADESEDGE ROCKS BladesEdgeCliffRock01.mdx", + [2002477] = "World EXPANSION01 DOODADS BLADESEDGE ROCKS BladesEdgeCliffRock02.mdx", + [2002478] = "World EXPANSION01 DOODADS BLADESEDGE ROCKS BladesEdgeRock_Finger01.mdx", + [2002479] = "World EXPANSION01 DOODADS BLADESEDGE ROCKS BladesEdgeRock_Finger02.mdx", + [2002480] = "World EXPANSION01 DOODADS BLADESEDGE ROCKS BladesEdgeRock_Finger03.mdx", + [2002481] = "World EXPANSION01 DOODADS BLADESEDGE ROCKS BladesEdge_FloatingSmall01.mdx", + [2002482] = "World EXPANSION01 DOODADS BLADESEDGE ROCKS BladesEdge_FloatingSmall02.mdx", + [2002483] = "World EXPANSION01 DOODADS COILFANG ACTIVEDOODADS PUMPINGDOOR Coilfang_PumpingDoor.mdx", + [2002484] = "World EXPANSION01 DOODADS COILFANG PASSIVEDOODADS Steam Coilfang_steam.mdx", + [2002485] = "World EXPANSION01 DOODADS GENERIC AncientOrc Banners AO_Banner02.mdx", + [2002486] = "World EXPANSION01 DOODADS GENERIC BLOODELF Banners BE_Banner03.mdx", + [2002487] = "World EXPANSION01 DOODADS GENERIC BLOODELF Banners BE_Banner_TallRed.mdx", + [2002488] = "World EXPANSION01 DOODADS GENERIC BLOODELF HEDGE BE_Hedge_Hanging02.mdx", + [2002489] = "World EXPANSION01 DOODADS GENERIC BLOODELF HEDGE SilvermoonHedge01.mdx", + [2002490] = "World EXPANSION01 DOODADS GENERIC BLOODELF Jars BE_jar_03.mdx", + [2002491] = "World EXPANSION01 DOODADS GENERIC BLOODELF Jars BE_jar_04.mdx", + [2002492] = "World EXPANSION01 DOODADS GENERIC BLOODELF PLANETARIUM BE_Planetarium_Active.mdx", + [2002493] = "World EXPANSION01 DOODADS GENERIC BLOODELF PowerOrb BloodElf_PowerOrb_Red.mdx", + [2002494] = "World EXPANSION01 DOODADS GENERIC BLOODELF TRANSLOCATOR BE_Translocator.mdx", + [2002495] = "World EXPANSION01 DOODADS GENERIC DRAENEI BENCH DR_Bench_01.mdx", + [2002496] = "World EXPANSION01 DOODADS GENERIC DRAENEI Bottles DR_Bottle_01.mdx", + [2002497] = "World EXPANSION01 DOODADS GENERIC DRAENEI Bottles DR_Bottle_02.mdx", + [2002498] = "World EXPANSION01 DOODADS GENERIC DRAENEI Bowls DR_Bowl_01.mdx", + [2002499] = "World EXPANSION01 DOODADS GENERIC DRAENEI Bowls DR_Bowl_02.mdx", + [2002500] = "World EXPANSION01 DOODADS GENERIC DRAENEI COOKPOTS DR_Cookpot_01.mdx", + [2002501] = "World EXPANSION01 DOODADS GENERIC DRAENEI Crates DR_Crate_01.mdx", + [2002502] = "World EXPANSION01 DOODADS GENERIC DRAENEI Crates DR_Crate_02.mdx", + [2002503] = "World EXPANSION01 DOODADS GENERIC DRAENEI Fountian DR_fountian.mdx", + [2002504] = "World EXPANSION01 DOODADS GENERIC DRAENEI KnickKnacks DR_Banner02.mdx", + [2002505] = "World EXPANSION01 DOODADS GENERIC DRAENEI KnickKnacks DR_KnickKnack_02.mdx", + [2002506] = "World EXPANSION01 DOODADS GENERIC DRAENEI KnickKnacks DR_KnickKnack_02b.mdx", + [2002507] = "World EXPANSION01 DOODADS GENERIC DRAENEI Lampposts DR_Lamppost_01.mdx", + [2002508] = "World EXPANSION01 DOODADS GENERIC DRAENEI Lampposts DR_Lamppost_02.mdx", + [2002509] = "World EXPANSION01 DOODADS GENERIC DRAENEI Lanterns DR_Lantern_01.mdx", + [2002510] = "World EXPANSION01 DOODADS GENERIC DRAENEI Tables DR_Table_Medium_01.mdx", + [2002511] = "World EXPANSION01 DOODADS GENERIC DRAENEI Tables DR_Table_Small_02.mdx", + [2002512] = "World EXPANSION01 DOODADS GENERIC DRAENEI Tents DR_Tent_01.mdx", + [2002513] = "World EXPANSION01 DOODADS GENERIC DRAENEI Tents DR_Tent_02.mdx", + [2002514] = "World EXPANSION01 DOODADS GENERIC ETHEREAL PORTAL ET_Portal01Off.mdx", + [2002515] = "World EXPANSION01 DOODADS GENERIC OGRE Bones OM_Bones_03.mdx", + [2002516] = "World EXPANSION01 DOODADS GENERIC Outland Rocks OverhangRock_Large_01.mdx", + [2002517] = "World EXPANSION01 DOODADS GENERIC Outland Rocks OverhangRock_Large_02.mdx", + [2002518] = "World EXPANSION01 DOODADS GENERIC Tradeskill JewelCrafting JewelCraft_Figurine01.mdx", + [2002519] = "World EXPANSION01 DOODADS GENERIC Tradeskill JewelCrafting JewelCraft_Figurine02.mdx", + [2002520] = "World EXPANSION01 DOODADS GENERIC Tradeskill JewelCrafting JewelCraft_GemCut_01.mdx", + [2002521] = "World EXPANSION01 DOODADS GENERIC Tradeskill JewelCrafting JewelCraft_GemCut_02.mdx", + [2002522] = "World EXPANSION01 DOODADS GENERIC Tradeskill JewelCrafting JewelCraft_GemUncut_01.mdx", + [2002523] = "World EXPANSION01 DOODADS GENERIC Tradeskill JewelCrafting JewelCraft_GemUncut_02.mdx", + [2002524] = "World EXPANSION01 DOODADS GENERIC Tradeskill JewelCrafting JewelCraft_GemUncut_03.mdx", + [2002525] = "World EXPANSION01 DOODADS GENERIC Tradeskill JewelCrafting JewelCraft_Grinder01.mdx", + [2002526] = "World EXPANSION01 DOODADS GHOSTLANDS Webs GhostlandsWebDangle_02.mdx", + [2002527] = "World EXPANSION01 DOODADS GHOSTLANDS Webs GhostlandsWeb_02.mdx", + [2002528] = "World EXPANSION01 DOODADS GHOSTLANDS Webs GhostlandsWeb_03.mdx", + [2002529] = "World EXPANSION01 DOODADS HELLFIRECITADEL DEMONWING Activedoodads switches HF_floor_switch.mdx", + [2002530] = "World EXPANSION01 DOODADS HELLFIRECITADEL DEMONWING PASSIVEDOODADS DOORS Main_Prison _Door.mdx", + [2002531] = "World EXPANSION01 DOODADS HELLFIRECITADEL PASSIVEDOODADS Barrier Hellfire_barrier.mdx", + [2002532] = "World EXPANSION01 DOODADS HellfirePeninsula DARKPORTAL Hellfire_DarkPortal_FX.mdx", + [2002533] = "World EXPANSION01 DOODADS HellfirePeninsula FIREWALL Hellfire_Firewall_01.mdx", + [2002534] = "World EXPANSION01 DOODADS HellfirePeninsula Supplies HellfireSupplies_01.mdx", + [2002535] = "World EXPANSION01 DOODADS HellfirePeninsula Supplies HellfireSupplies_02.mdx", + [2002536] = "World EXPANSION01 DOODADS HellfirePeninsula Supplies HellfireSupplies_03.mdx", + [2002537] = "World EXPANSION01 DOODADS HellfirePeninsula Supplies HellfireSupplies_04.mdx", + [2002538] = "World EXPANSION01 DOODADS HellfirePeninsula Supplies HellfireSupplies_05.mdx", + [2002539] = "World EXPANSION01 DOODADS HellfirePeninsula Supplies HellfireSupplies_06.mdx", + [2002540] = "World EXPANSION01 DOODADS HellfirePeninsula WAGONS HumanWagon01.mdx", + [2002541] = "World EXPANSION01 DOODADS HellfirePeninsula WAGONS OrcWagon07.mdx", + [2002542] = "World EXPANSION01 DOODADS PVP Activedoodads Doors PVP_Lordaeron_Door.mdx", + [2002543] = "World EXPANSION01 DOODADS PVP Activedoodads Doors PVP_Ogre_Door_Front.mdx", + [2002544] = "World EXPANSION01 DOODADS PVP Activedoodads Doors PVP_Ogre_Door_Interior.mdx", + [2002545] = "World EXPANSION01 DOODADS PVP Activedoodads Doors PVP_Orc_Door_Front.mdx", + [2002546] = "World EXPANSION01 DOODADS PVP Activedoodads Doors PVP_Orc_Door_Interior.mdx", + [2002547] = "World EXPANSION01 DOODADS SILVERMYST CRYSTALS silvermystCrystalSmall03.mdx", + [2002548] = "World EXPANSION01 DOODADS SILVERMYST Smoke D_smoke.mdx", + [2002549] = "World EXPANSION01 DOODADS Shadowmoon rune shadowmoon_rune1.mdx", + [2002550] = "World GENERIC ACTIVEDOODADS Bushes BerryBush01.mdx", + [2002551] = "World GENERIC ACTIVEDOODADS CHEST02 Chest02.mdx", + [2002552] = "World GENERIC ACTIVEDOODADS CHEST03 Chest03.mdx", + [2002553] = "World GENERIC ACTIVEDOODADS Chest01 Chest01.mdx", + [2002554] = "World GENERIC ACTIVEDOODADS Chest04 Chest04.mdx", + [2002555] = "World GENERIC ACTIVEDOODADS Chests Chest01b.mdx", + [2002556] = "World GENERIC ACTIVEDOODADS Chests Chest01c.mdx", + [2002557] = "World GENERIC ACTIVEDOODADS Christmas SnowBallMound01.mdx", + [2002558] = "World GENERIC ACTIVEDOODADS Clam GiantClamActive.mdx", + [2002559] = "World GENERIC ACTIVEDOODADS Doors GiantPortcullis GiantPortcullisFlatBottom01.mdx", + [2002560] = "World GENERIC ACTIVEDOODADS Doors GnomereganDoors GnomereganDoor01.mdx", + [2002561] = "World GENERIC ACTIVEDOODADS Doors SunkenTempleDoors SunkTemple_portcullis.mdx", + [2002562] = "World GENERIC ACTIVEDOODADS Doors UldamanDoors UldamanDoor01.mdx", + [2002563] = "World GENERIC ACTIVEDOODADS INSTANCEPORTAL InstancePortal.mdx", + [2002564] = "World GENERIC ACTIVEDOODADS INSTANCEPORTAL InstancePortalCollision.mdx", + [2002565] = "World GENERIC ACTIVEDOODADS INSTANCEPORTAL InstancePortal_Green.mdx", + [2002566] = "World GENERIC ACTIVEDOODADS INSTANCEPORTAL InstancePortal_PurpleDifficulty.mdx", + [2002567] = "World GENERIC ACTIVEDOODADS INSTANCEPORTAL InstancePortal_PurpleDifficultyIcon.mdx", + [2002568] = "World GENERIC ACTIVEDOODADS INSTANCEPORTAL InstancePortal_Red.mdx", + [2002569] = "World GENERIC ACTIVEDOODADS INSTANCEPORTAL InstancePortal_White.mdx", + [2002570] = "World GENERIC ACTIVEDOODADS INSTANCEPORTAL Summon_Ritual.mdx", + [2002571] = "World GENERIC ACTIVEDOODADS INSTANCEPORTAL Temporal_Displacement.mdx", + [2002572] = "World GENERIC ACTIVEDOODADS MeetingStones Meetingstone01.mdx", + [2002573] = "World GENERIC ACTIVEDOODADS MeetingStones Meetingstone02.mdx", + [2002574] = "World GENERIC ACTIVEDOODADS MeetingStones Meetingstone03.mdx", + [2002575] = "World GENERIC ACTIVEDOODADS MeetingStones Meetingstone04.mdx", + [2002576] = "World GENERIC ACTIVEDOODADS MeetingStones Meetingstone05.mdx", + [2002577] = "World GENERIC ACTIVEDOODADS Rocks GemRock01.mdx", + [2002578] = "World GENERIC ACTIVEDOODADS SpellPortals MagePortal_Darnassus.mdx", + [2002579] = "World GENERIC ACTIVEDOODADS SpellPortals MagePortal_Exodar.mdx", + [2002580] = "World GENERIC ACTIVEDOODADS SpellPortals MagePortal_Ironforge.mdx", + [2002581] = "World GENERIC ACTIVEDOODADS SpellPortals MagePortal_Karazhan.mdx", + [2002582] = "World GENERIC ACTIVEDOODADS SpellPortals MagePortal_Maraudon.mdx", + [2002583] = "World GENERIC ACTIVEDOODADS SpellPortals MagePortal_Ogrimmar.mdx", + [2002584] = "World GENERIC ACTIVEDOODADS SpellPortals MagePortal_Shattrath.mdx", + [2002585] = "World GENERIC ACTIVEDOODADS SpellPortals MagePortal_Stormwind.mdx", + [2002586] = "World GENERIC ACTIVEDOODADS SpellPortals MagePortal_Sunwell.mdx", + [2002587] = "World GENERIC ACTIVEDOODADS SpellPortals MagePortal_ThunderBluff.mdx", + [2002588] = "World GENERIC ACTIVEDOODADS SpellPortals MagePortal_UnderCity.mdx", + [2002589] = "World GENERIC ACTIVEDOODADS TrollChest TrollChest.mdx", + [2002590] = "World GENERIC ACTIVEDOODADS WORLDTREEPORTALS WorldTreePortal01.mdx", + [2002591] = "World GENERIC BLOODELF PASSIVE DOODADS BE_jar_01.mdx", + [2002592] = "World GENERIC BLOODELF PASSIVE DOODADS BE_jar_02.mdx", + [2002593] = "World GENERIC Buildings HumanTentLarge HumanTentLarge.mdx", + [2002594] = "World GENERIC Buildings HumanTentMedium HumanTentMedium.mdx", + [2002595] = "World GENERIC Centaur Passive Doodads CentaurRuins Centaur_Arch01.mdx", + [2002596] = "World GENERIC Centaur Passive Doodads CentaurRuins Centaur_Brokepillar01.mdx", + [2002597] = "World GENERIC Centaur Passive Doodads CentaurRuins Centaur_brokearch01.mdx", + [2002598] = "World GENERIC Centaur Passive Doodads CentaurRuins Centaur_brokearch02.mdx", + [2002599] = "World GENERIC Centaur Passive Doodads CentaurRuins Centaur_pillar01.mdx", + [2002600] = "World GENERIC Centaur Passive Doodads CentaurRuins Centaur_wall01.mdx", + [2002601] = "World GENERIC Centaur Passive Doodads CentaurRuins Centaur_wall_ruin01.mdx", + [2002602] = "World GENERIC Centaur Passive Doodads CentaurTents CentaurTent01.mdx", + [2002603] = "World GENERIC Centaur Passive Doodads CentaurTents CentaurTent02.mdx", + [2002604] = "World GENERIC Collision Collision_PCSize.mdx", + [2002605] = "World GENERIC DARKIRONDWARF Active Doodads Runes DarkIronDwarfRune_A.mdx", + [2002606] = "World GENERIC DARKIRONDWARF Active Doodads Runes DarkIronDwarfRune_A1.mdx", + [2002607] = "World GENERIC DARKIRONDWARF Active Doodads Runes DarkIronDwarfRune_B.mdx", + [2002608] = "World GENERIC DARKIRONDWARF Active Doodads Runes DarkIronDwarfRune_C.mdx", + [2002609] = "World GENERIC DARKIRONDWARF Active Doodads Runes DarkIronDwarfRune_E.mdx", + [2002610] = "World GENERIC DARKIRONDWARF Active Doodads Runes DarkIronDwarfRune_F.mdx", + [2002611] = "World GENERIC DARKIRONDWARF Active Doodads Runes DarkIronDwarfRune_G.mdx", + [2002612] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS Beds DarkIronDwarfBed01.mdx", + [2002613] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS Beds DarkIronDwarfBed02.mdx", + [2002614] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS Beds DarkIronDwarfBed03.mdx", + [2002615] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS CORPSES DarkIronDwarfCorpse01.mdx", + [2002616] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS CORPSES DarkIronDwarfCorpse02.mdx", + [2002617] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS CORPSES DarkIronDwarfCorpse03.mdx", + [2002618] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS CORPSES DarkIronDwarfCorpse04.mdx", + [2002619] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS Chairs DarkIronChair01.mdx", + [2002620] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS Chairs DarkIronChair02.mdx", + [2002621] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS Chairs DarkIronChair03.mdx", + [2002622] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS Chairs DarkIronChairBroken01.mdx", + [2002623] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS Chairs DarkIronChairBroken02.mdx", + [2002624] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS Chairs DarkIronChairBroken03.mdx", + [2002625] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS Crates DarkIronCrate01.mdx", + [2002626] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS Crates DarkIronCrate02.mdx", + [2002627] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS Crates DarkIronCrateBroken01.mdx", + [2002628] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS Crates DarkIronCrateBroken02.mdx", + [2002629] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS GrindingWheels DarkIronGrindingWheel.mdx", + [2002630] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS GrindingWheels DarkIronGrindingWheelBroken.mdx", + [2002631] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS HayPiles DarkHayPileLarge01.mdx", + [2002632] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS KEGS DarkIronKeg01.mdx", + [2002633] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS KEGS DarkIronKegBroken01.mdx", + [2002634] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS KEGS DarkIronKegBroken02.mdx", + [2002635] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS KEGS DarkIronKegStand01.mdx", + [2002636] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS KEGS DarkIronKegWStand01.mdx", + [2002637] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS Lamps DarkIronHangingLamp01.mdx", + [2002638] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS Lamps DarkIronHangingLamp02.mdx", + [2002639] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS Lamps DarkIronHangingLampBroken01.mdx", + [2002640] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS Lights DarkIronLightBroken01.mdx", + [2002641] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS Lights DarkIronLightBroken02.mdx", + [2002642] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS MANACLES BlackrockOrcManacle01.mdx", + [2002643] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS MANACLES DarkIronDwarfManacle01.mdx", + [2002644] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS Murals DarkIronMural01.mdx", + [2002645] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS Murals DarkIronMural02.mdx", + [2002646] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS Murals DarkIronMural03.mdx", + [2002647] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS Skeletons SkeletonLaying01.mdx", + [2002648] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS Skeletons SkeletonLaying02.mdx", + [2002649] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS Skeletons SkeletonLaying03.mdx", + [2002650] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS Skeletons SkeletonSitting01.mdx", + [2002651] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS Skeletons SkeletonSitting02.mdx", + [2002652] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS Skeletons SkeletonSitting03.mdx", + [2002653] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS Skeletons SkeletonSitting04.mdx", + [2002654] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS StretchedSkins BlackRockStretchedSkin01.mdx", + [2002655] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS StretchedSkins BlackRockStretchedSkin02.mdx", + [2002656] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS TAPESTRIES DarkIronTapestry02.mdx", + [2002657] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS TAPESTRIES DarkIronTapestry03.mdx", + [2002658] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS Tables DarkIronTable01.mdx", + [2002659] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS Tables DarkIronTableBroken01.mdx", + [2002660] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS Throne DarkIronThrone.mdx", + [2002661] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS Tools DarkIronSaw01.mdx", + [2002662] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS Tools DarkIronSawBroken01.mdx", + [2002663] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS WoodPiles DarkIronWoodPile01.mdx", + [2002664] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS WoodPiles DarkIronWoodPile02.mdx", + [2002665] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS WoodPlanks DarkIronWoodPlanks01.mdx", + [2002666] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS WoodPlanks DarkIronWoodPlanks02.mdx", + [2002667] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS WoodPlanks DarkIronWoodPlanks03.mdx", + [2002668] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS WoodPlanks DarkIronWoodPlanks04.mdx", + [2002669] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS WoodPlanks DarkIronWoodPlanks05.mdx", + [2002670] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS WoodPlanks DarkIronWoodPlanks06.mdx", + [2002671] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS WoodPlanks DarkIronWoodPlanks07.mdx", + [2002672] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS WorkBenches DarkIronWorkbench01.mdx", + [2002673] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS WorkBenches DarkIronWorkbench02.mdx", + [2002674] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS WorkBenches DarkIronWorkbenchBroken01.mdx", + [2002675] = "World GENERIC DARKIRONDWARF PASSIVE DOODADS WorkBenches DarkIronWorkbenchBroken02.mdx", + [2002676] = "World GENERIC DWARF ACTIVE DOODADS DOORS DwarvenTunnelPortcullis.mdx", + [2002677] = "World GENERIC DWARF PASSIVE DOODADS BARRELS DwarvenBarrel01.mdx", + [2002678] = "World GENERIC DWARF PASSIVE DOODADS Banners IronForgeBanner01.mdx", + [2002679] = "World GENERIC DWARF PASSIVE DOODADS Banners IronForgeBannerStill.mdx", + [2002680] = "World GENERIC DWARF PASSIVE DOODADS Banners IronForgeBanner_ornate01.mdx", + [2002681] = "World GENERIC DWARF PASSIVE DOODADS Battlements DwarvenBattlementLarge01.mdx", + [2002682] = "World GENERIC DWARF PASSIVE DOODADS Battlements DwarvenBattlementMossy01.mdx", + [2002683] = "World GENERIC DWARF PASSIVE DOODADS Battlements DwarvenBattlementMossy02.mdx", + [2002684] = "World GENERIC DWARF PASSIVE DOODADS Battlements DwarvenBattlementMossy03.mdx", + [2002685] = "World GENERIC DWARF PASSIVE DOODADS Battlements DwarvenBattlementMossy04.mdx", + [2002686] = "World GENERIC DWARF PASSIVE DOODADS Battlements DwarvenBattlementMossy05.mdx", + [2002687] = "World GENERIC DWARF PASSIVE DOODADS Battlements DwarvenBattlementMossy06.mdx", + [2002688] = "World GENERIC DWARF PASSIVE DOODADS Battlements DwarvenBattlementMossy07.mdx", + [2002689] = "World GENERIC DWARF PASSIVE DOODADS Battlements DwarvenBattlementSmall01.mdx", + [2002690] = "World GENERIC DWARF PASSIVE DOODADS Battlements DwarvenBattlementSnowy01.mdx", + [2002691] = "World GENERIC DWARF PASSIVE DOODADS Battlements DwarvenBattlementSnowy02.mdx", + [2002692] = "World GENERIC DWARF PASSIVE DOODADS Battlements DwarvenBattlementSnowy03.mdx", + [2002693] = "World GENERIC DWARF PASSIVE DOODADS Battlements DwarvenBattlementSnowy04.mdx", + [2002694] = "World GENERIC DWARF PASSIVE DOODADS Battlements DwarvenBattlementSnowy05.mdx", + [2002695] = "World GENERIC DWARF PASSIVE DOODADS Battlements DwarvenBattlementSnowy06.mdx", + [2002696] = "World GENERIC DWARF PASSIVE DOODADS Battlements DwarvenBattlementSnowy07.mdx", + [2002697] = "World GENERIC DWARF PASSIVE DOODADS Battlements SnowyBattlementLarge01.mdx", + [2002698] = "World GENERIC DWARF PASSIVE DOODADS Battlements SnowyBattlementSmall01.mdx", + [2002699] = "World GENERIC DWARF PASSIVE DOODADS Beds DwarvenBed01.mdx", + [2002700] = "World GENERIC DWARF PASSIVE DOODADS Benches IronForgeBench_average01.mdx", + [2002701] = "World GENERIC DWARF PASSIVE DOODADS Benches IronForgeBench_ornate01.mdx", + [2002702] = "World GENERIC DWARF PASSIVE DOODADS Benches IronForgeBench_simple01.mdx", + [2002703] = "World GENERIC DWARF PASSIVE DOODADS Bookshelves BookshelfDwarvenAverage01.mdx", + [2002704] = "World GENERIC DWARF PASSIVE DOODADS Bookshelves BookshelfDwarvenAverage02.mdx", + [2002705] = "World GENERIC DWARF PASSIVE DOODADS Bookshelves BookshelfDwarvenAverage03.mdx", + [2002706] = "World GENERIC DWARF PASSIVE DOODADS Bookshelves BookshelfDwarvenAverage05.mdx", + [2002707] = "World GENERIC DWARF PASSIVE DOODADS Bookshelves BookshelfDwarvenOrnate01.mdx", + [2002708] = "World GENERIC DWARF PASSIVE DOODADS Bookshelves BookshelfDwarvenOrnate02.mdx", + [2002709] = "World GENERIC DWARF PASSIVE DOODADS Bookshelves BookshelfDwarvenOrnate03.mdx", + [2002710] = "World GENERIC DWARF PASSIVE DOODADS Bookshelves BookshelfDwarvenOrnate04.mdx", + [2002711] = "World GENERIC DWARF PASSIVE DOODADS Bookshelves BookshelfDwarvenOrnate05.mdx", + [2002712] = "World GENERIC DWARF PASSIVE DOODADS Bookshelves BookshelfDwarvenSimple01.mdx", + [2002713] = "World GENERIC DWARF PASSIVE DOODADS Bookshelves BookshelfDwarvenSimple02.mdx", + [2002714] = "World GENERIC DWARF PASSIVE DOODADS Bookshelves BookshelfDwarvenSimple03.mdx", + [2002715] = "World GENERIC DWARF PASSIVE DOODADS Bookshelves BookshelfDwarvenSimple04.mdx", + [2002716] = "World GENERIC DWARF PASSIVE DOODADS Bookshelves DwarvenBookshelfLarge.mdx", + [2002717] = "World GENERIC DWARF PASSIVE DOODADS Bookshelves DwarvenBookshelfSmall.mdx", + [2002718] = "World GENERIC DWARF PASSIVE DOODADS Braziers DwarvenBrazier01.mdx", + [2002719] = "World GENERIC DWARF PASSIVE DOODADS Braziers DwarvenBrazier02.mdx", + [2002720] = "World GENERIC DWARF PASSIVE DOODADS Braziers StormwindDwarfBrazier.mdx", + [2002721] = "World GENERIC DWARF PASSIVE DOODADS ChainLinks TS_Chain01.mdx", + [2002722] = "World GENERIC DWARF PASSIVE DOODADS ChainLinks TS_Chain02.mdx", + [2002723] = "World GENERIC DWARF PASSIVE DOODADS Chairs DwarvenChair01.mdx", + [2002724] = "World GENERIC DWARF PASSIVE DOODADS Chairs DwarvenChair02.mdx", + [2002725] = "World GENERIC DWARF PASSIVE DOODADS Chairs DwarvenChair03.mdx", + [2002726] = "World GENERIC DWARF PASSIVE DOODADS Chairs DwarvenHighEndChair.mdx", + [2002727] = "World GENERIC DWARF PASSIVE DOODADS Chairs IronForgeChair_average01.mdx", + [2002728] = "World GENERIC DWARF PASSIVE DOODADS Chairs IronForgeChair_ornate01.mdx", + [2002729] = "World GENERIC DWARF PASSIVE DOODADS Chairs IronForgeChair_simple01.mdx", + [2002730] = "World GENERIC DWARF PASSIVE DOODADS ConstructionSigns UnderConstruction01.mdx", + [2002731] = "World GENERIC DWARF PASSIVE DOODADS ConstructionSigns UnderConstruction02.mdx", + [2002732] = "World GENERIC DWARF PASSIVE DOODADS DWARFCORPSE CorpseSkeletonDwarf.mdx", + [2002733] = "World GENERIC DWARF PASSIVE DOODADS Debris TS_Debris01.mdx", + [2002734] = "World GENERIC DWARF PASSIVE DOODADS Debris TS_Debris02.mdx", + [2002735] = "World GENERIC DWARF PASSIVE DOODADS Debris TS_Debris03.mdx", + [2002736] = "World GENERIC DWARF PASSIVE DOODADS Debris TS_Debris04.mdx", + [2002737] = "World GENERIC DWARF PASSIVE DOODADS Debris TS_Debris05.mdx", + [2002738] = "World GENERIC DWARF PASSIVE DOODADS Debris TS_Debris06.mdx", + [2002739] = "World GENERIC DWARF PASSIVE DOODADS Debris TS_Debris07.mdx", + [2002740] = "World GENERIC DWARF PASSIVE DOODADS Debris TS_Debris08.mdx", + [2002741] = "World GENERIC DWARF PASSIVE DOODADS Debris TS_Debris09.mdx", + [2002742] = "World GENERIC DWARF PASSIVE DOODADS Debris TS_Debris10.mdx", + [2002743] = "World GENERIC DWARF PASSIVE DOODADS Docks AnvilmarDock01.mdx", + [2002744] = "World GENERIC DWARF PASSIVE DOODADS Dynamite GunShopDynamiteBundle.mdx", + [2002745] = "World GENERIC DWARF PASSIVE DOODADS EXCAVATIONBARRIERS ExcavationBarrier01.mdx", + [2002746] = "World GENERIC DWARF PASSIVE DOODADS EXCAVATIONBARRIERS ExcavationBarrier01B_PvPCollision.mdx", + [2002747] = "World GENERIC DWARF PASSIVE DOODADS EXCAVATIONBARRIERS ExcavationBarrier02B.mdx", + [2002748] = "World GENERIC DWARF PASSIVE DOODADS EXCAVATIONBARRIERS ExcavationBarrier02B_PvPCollision.mdx", + [2002749] = "World GENERIC DWARF PASSIVE DOODADS EXCAVATIONBARRIERS ExcavationBarrier02_PvPCollision.mdx", + [2002750] = "World GENERIC DWARF PASSIVE DOODADS EXCAVATIONBARRIERS ExcavationBarrier03.mdx", + [2002751] = "World GENERIC DWARF PASSIVE DOODADS EXCAVATIONBARRIERS ExcavationBarrier03B.mdx", + [2002752] = "World GENERIC DWARF PASSIVE DOODADS EXCAVATIONBARRIERS ExcavationBarrier03B_PvPCollision.mdx", + [2002753] = "World GENERIC DWARF PASSIVE DOODADS EXCAVATIONBARRIERS ExcavationBarrier03_PvPCollision.mdx", + [2002754] = "World GENERIC DWARF PASSIVE DOODADS EXCAVATIONBARRIERS ExcavationBarrier04.mdx", + [2002755] = "World GENERIC DWARF PASSIVE DOODADS EXCAVATIONBARRIERS ExcavationBarrier04B.mdx", + [2002756] = "World GENERIC DWARF PASSIVE DOODADS EXCAVATIONBARRIERS ExcavationBarrier04B_PvPCollision.mdx", + [2002757] = "World GENERIC DWARF PASSIVE DOODADS EXCAVATIONBARRIERS ExcavationBarrier04_PvPCollision.mdx", + [2002758] = "World GENERIC DWARF PASSIVE DOODADS EXCAVATIONCRANE ExcavationCrane.mdx", + [2002759] = "World GENERIC DWARF PASSIVE DOODADS EXCAVATIONRAILINGPOST ExcavationRailingPost.mdx", + [2002760] = "World GENERIC DWARF PASSIVE DOODADS EXCAVATIONRAILINGPOST ExcavationRailingPostRope.mdx", + [2002761] = "World GENERIC DWARF PASSIVE DOODADS EXCAVATIONROPESTAKE ExcavationRope.mdx", + [2002762] = "World GENERIC DWARF PASSIVE DOODADS EXCAVATIONROPESTAKE ExcavationRopeStake.mdx", + [2002763] = "World GENERIC DWARF PASSIVE DOODADS EXCAVATIONTENTPAVILLIONRUINED ExcavationTentPavillionRuined01.md", + [2002764] = "World GENERIC DWARF PASSIVE DOODADS EXCAVATIONTENTS ExcavationTent01.mdx", + [2002765] = "World GENERIC DWARF PASSIVE DOODADS EXCAVATIONTENTS ExcavationTent02.mdx", + [2002766] = "World GENERIC DWARF PASSIVE DOODADS EXCAVATIONTENTS ExcavationTentRuined01.mdx", + [2002767] = "World GENERIC DWARF PASSIVE DOODADS EXCAVATIONTENTS ExcavationTentRuined02.mdx", + [2002768] = "World GENERIC DWARF PASSIVE DOODADS EXCAVATIONWATERWAGON ExcavationWaterWagon.mdx", + [2002769] = "World GENERIC DWARF PASSIVE DOODADS ExcavationBannerStands ExcavationBannerStand.mdx", + [2002770] = "World GENERIC DWARF PASSIVE DOODADS ExcavationBannerStands ExcavationBannerStand01.mdx", + [2002771] = "World GENERIC DWARF PASSIVE DOODADS ExcavationBannerStands ExcavationBannerStand02.mdx", + [2002772] = "World GENERIC DWARF PASSIVE DOODADS ExcavationBarrierPlank ExcavationBarrierPlank.mdx", + [2002773] = "World GENERIC DWARF PASSIVE DOODADS ExcavationBarrierPlank ExcavationBarrierPlank02.mdx", + [2002774] = "World GENERIC DWARF PASSIVE DOODADS ExcavationBarrierPlank ExcavationBarrierPlank02b.mdx", + [2002775] = "World GENERIC DWARF PASSIVE DOODADS ExcavationBarrierPlank ExcavationBarrierPlank02c.mdx", + [2002776] = "World GENERIC DWARF PASSIVE DOODADS ExcavationBarrierPlank ExcavationBarrierPlank03.mdx", + [2002777] = "World GENERIC DWARF PASSIVE DOODADS ExcavationBarrierPlank ExcavationBarrierPlank03b.mdx", + [2002778] = "World GENERIC DWARF PASSIVE DOODADS ExcavationBarrierPlank ExcavationBarrierPlank03c.mdx", + [2002779] = "World GENERIC DWARF PASSIVE DOODADS ExcavationBarrierPole ExcavationBarrierPole.mdx", + [2002780] = "World GENERIC DWARF PASSIVE DOODADS ExcavationBarrierPole ExcavationBarrierPole02.mdx", + [2002781] = "World GENERIC DWARF PASSIVE DOODADS ExcavationBarrierPole ExcavationBarrierPole03.mdx", + [2002782] = "World GENERIC DWARF PASSIVE DOODADS ExcavationBarrierPole ExcavationBarrierPole04.mdx", + [2002783] = "World GENERIC DWARF PASSIVE DOODADS ExcavationDwarvenRuins ExcavationDwarvenRuins01.mdx", + [2002784] = "World GENERIC DWARF PASSIVE DOODADS ExcavationDwarvenRuins ExcavationDwarvenRuins02.mdx", + [2002785] = "World GENERIC DWARF PASSIVE DOODADS ExcavationRailingRail ExcavationRailingRail.mdx", + [2002786] = "World GENERIC DWARF PASSIVE DOODADS ExcavationStake ExcavationStake.mdx", + [2002787] = "World GENERIC DWARF PASSIVE DOODADS ExcavationTentPavillion ExcavationTentPavillion.mdx", + [2002788] = "World GENERIC DWARF PASSIVE DOODADS Forgebonfire Forgebonfire.mdx", + [2002789] = "World GENERIC DWARF PASSIVE DOODADS GUNRACKS GunRack01A.mdx", + [2002790] = "World GENERIC DWARF PASSIVE DOODADS GUNRACKS GunRack01B.mdx", + [2002791] = "World GENERIC DWARF PASSIVE DOODADS GUNRACKS GunRack01C.mdx", + [2002792] = "World GENERIC DWARF PASSIVE DOODADS GUNRACKS GunRack01D.mdx", + [2002793] = "World GENERIC DWARF PASSIVE DOODADS GUNRACKS GunRack02A.mdx", + [2002794] = "World GENERIC DWARF PASSIVE DOODADS GUNRACKS GunRack02B.mdx", + [2002795] = "World GENERIC DWARF PASSIVE DOODADS GUNRACKS GunRack02C.mdx", + [2002796] = "World GENERIC DWARF PASSIVE DOODADS GUNRACKS GunRack02D.mdx", + [2002797] = "World GENERIC DWARF PASSIVE DOODADS GYROCOPTER gyrocopter.mdx", + [2002798] = "World GENERIC DWARF PASSIVE DOODADS Guns RifleDwarven.mdx", + [2002799] = "World GENERIC DWARF PASSIVE DOODADS LANTERNS DwarvenHangingLanternHUGE.mdx", + [2002800] = "World GENERIC DWARF PASSIVE DOODADS LANTERNS DwarvenHangingLanternLarge01.mdx", + [2002801] = "World GENERIC DWARF PASSIVE DOODADS LANTERNS DwarvenHangingLanternMedium01.mdx", + [2002802] = "World GENERIC DWARF PASSIVE DOODADS LANTERNS DwarvenHangingLanternSmall01.mdx", + [2002803] = "World GENERIC DWARF PASSIVE DOODADS LANTERNS GiantLantern01.mdx", + [2002804] = "World GENERIC DWARF PASSIVE DOODADS LANTERNS IronForgeHangingLantern01.mdx", + [2002805] = "World GENERIC DWARF PASSIVE DOODADS LANTERNS IronForgeHangingLantern_new.mdx", + [2002806] = "World GENERIC DWARF PASSIVE DOODADS LANTERNS MediumLantern01.mdx", + [2002807] = "World GENERIC DWARF PASSIVE DOODADS LANTERNS MediumLantern02.mdx", + [2002808] = "World GENERIC DWARF PASSIVE DOODADS LANTERNS New_Large_Lantern01.mdx", + [2002809] = "World GENERIC DWARF PASSIVE DOODADS LANTERNS New_Medium_Lantern02.mdx", + [2002810] = "World GENERIC DWARF PASSIVE DOODADS LANTERNS New_Small_Lantern01.mdx", + [2002811] = "World GENERIC DWARF PASSIVE DOODADS LANTERNS New_Small_Lantern02.mdx", + [2002812] = "World GENERIC DWARF PASSIVE DOODADS LANTERNS SmallLantern01.mdx", + [2002813] = "World GENERIC DWARF PASSIVE DOODADS LANTERNS SmallLantern02.mdx", + [2002814] = "World GENERIC DWARF PASSIVE DOODADS LANTERNS mininglamp01.mdx", + [2002815] = "World GENERIC DWARF PASSIVE DOODADS LANTERNS mininglamp02.mdx", + [2002816] = "World GENERIC DWARF PASSIVE DOODADS LampPosts AnvilmarLampPost.mdx", + [2002817] = "World GENERIC DWARF PASSIVE DOODADS LampPosts LochLampPost.mdx", + [2002818] = "World GENERIC DWARF PASSIVE DOODADS MUSEUM Fossil01.mdx", + [2002819] = "World GENERIC DWARF PASSIVE DOODADS MineCarts MineCartGiant.mdx", + [2002820] = "World GENERIC DWARF PASSIVE DOODADS Platters PlatterGoldOrnate01.mdx", + [2002821] = "World GENERIC DWARF PASSIVE DOODADS Platters PlatterGoldOrnate02.mdx", + [2002822] = "World GENERIC DWARF PASSIVE DOODADS Platters PlatterGoldSimple01.mdx", + [2002823] = "World GENERIC DWARF PASSIVE DOODADS Platters PlatterGoldSimple02.mdx", + [2002824] = "World GENERIC DWARF PASSIVE DOODADS PowderKegs PowderKeg01.mdx", + [2002825] = "World GENERIC DWARF PASSIVE DOODADS PowderKegs PowderKegFused.mdx", + [2002826] = "World GENERIC DWARF PASSIVE DOODADS STEINS DwarvenStein01.mdx", + [2002827] = "World GENERIC DWARF PASSIVE DOODADS STEINS DwarvenStein02.mdx", + [2002828] = "World GENERIC DWARF PASSIVE DOODADS SharpeningWheel DwarvenSharpeningWheel01.mdx", + [2002829] = "World GENERIC DWARF PASSIVE DOODADS SignPosts DwarvenSignPost01.mdx", + [2002830] = "World GENERIC DWARF PASSIVE DOODADS SignPosts DwarvenSignPostPointer01.mdx", + [2002831] = "World GENERIC DWARF PASSIVE DOODADS Signs DwarfSign_Alchemist.mdx", + [2002832] = "World GENERIC DWARF PASSIVE DOODADS Signs DwarfSign_Armory.mdx", + [2002833] = "World GENERIC DWARF PASSIVE DOODADS Signs DwarfSign_Axes.mdx", + [2002834] = "World GENERIC DWARF PASSIVE DOODADS Signs DwarfSign_Bags.mdx", + [2002835] = "World GENERIC DWARF PASSIVE DOODADS Signs DwarfSign_Bakery.mdx", + [2002836] = "World GENERIC DWARF PASSIVE DOODADS Signs DwarfSign_Bank.mdx", + [2002837] = "World GENERIC DWARF PASSIVE DOODADS Signs DwarfSign_Blacksmith.mdx", + [2002838] = "World GENERIC DWARF PASSIVE DOODADS Signs DwarfSign_Cartography.mdx", + [2002839] = "World GENERIC DWARF PASSIVE DOODADS Signs DwarfSign_Cheese.mdx", + [2002840] = "World GENERIC DWARF PASSIVE DOODADS Signs DwarfSign_ClothArmor.mdx", + [2002841] = "World GENERIC DWARF PASSIVE DOODADS Signs DwarfSign_Cook.mdx", + [2002842] = "World GENERIC DWARF PASSIVE DOODADS Signs DwarfSign_Daggers.mdx", + [2002843] = "World GENERIC DWARF PASSIVE DOODADS Signs DwarfSign_Drinks.mdx", + [2002844] = "World GENERIC DWARF PASSIVE DOODADS Signs DwarfSign_Enchanting.mdx", + [2002845] = "World GENERIC DWARF PASSIVE DOODADS Signs DwarfSign_Fireworks.mdx", + [2002846] = "World GENERIC DWARF PASSIVE DOODADS Signs DwarfSign_FirstAid.mdx", + [2002847] = "World GENERIC DWARF PASSIVE DOODADS Signs DwarfSign_Fishing.mdx", + [2002848] = "World GENERIC DWARF PASSIVE DOODADS Signs DwarfSign_Fletcher.mdx", + [2002849] = "World GENERIC DWARF PASSIVE DOODADS Signs DwarfSign_GeneralGoods.mdx", + [2002850] = "World GENERIC DWARF PASSIVE DOODADS Signs DwarfSign_Gryphon.mdx", + [2002851] = "World GENERIC DWARF PASSIVE DOODADS Signs DwarfSign_Gunsmith.mdx", + [2002852] = "World GENERIC DWARF PASSIVE DOODADS Signs DwarfSign_Herbalist.mdx", + [2002853] = "World GENERIC DWARF PASSIVE DOODADS Signs DwarfSign_Inscribing.mdx", + [2002854] = "World GENERIC DWARF PASSIVE DOODADS Signs DwarfSign_LeatherArmor.mdx", + [2002855] = "World GENERIC DWARF PASSIVE DOODADS Signs DwarfSign_Lockpicking.mdx", + [2002856] = "World GENERIC DWARF PASSIVE DOODADS Signs DwarfSign_Maces.mdx", + [2002857] = "World GENERIC DWARF PASSIVE DOODADS Signs DwarfSign_MagicShop.mdx", + [2002858] = "World GENERIC DWARF PASSIVE DOODADS Signs DwarfSign_MailArmor.mdx", + [2002859] = "World GENERIC DWARF PASSIVE DOODADS Signs DwarfSign_Meat.mdx", + [2002860] = "World GENERIC DWARF PASSIVE DOODADS Signs DwarfSign_Miner.mdx", + [2002861] = "World GENERIC DWARF PASSIVE DOODADS Signs DwarfSign_Misc.mdx", + [2002862] = "World GENERIC DWARF PASSIVE DOODADS Signs DwarfSign_Staves.mdx", + [2002863] = "World GENERIC DWARF PASSIVE DOODADS Signs DwarfSign_Swords.mdx", + [2002864] = "World GENERIC DWARF PASSIVE DOODADS Signs DwarfSign_Tabard.mdx", + [2002865] = "World GENERIC DWARF PASSIVE DOODADS Signs DwarfSign_Tailor.mdx", + [2002866] = "World GENERIC DWARF PASSIVE DOODADS Signs DwarfSign_Tavern.mdx", + [2002867] = "World GENERIC DWARF PASSIVE DOODADS Signs DwarfSign_Weaponry.mdx", + [2002868] = "World GENERIC DWARF PASSIVE DOODADS Signs DwarfSign_Winery.mdx", + [2002869] = "World GENERIC DWARF PASSIVE DOODADS Signs GnomeSign_Engineer.mdx", + [2002870] = "World GENERIC DWARF PASSIVE DOODADS TABLES DwarvenTableAverage01.mdx", + [2002871] = "World GENERIC DWARF PASSIVE DOODADS TABLES DwarvenTableAverage02.mdx", + [2002872] = "World GENERIC DWARF PASSIVE DOODADS TABLES DwarvenTableAverage03.mdx", + [2002873] = "World GENERIC DWARF PASSIVE DOODADS TABLES DwarvenTableAverage04.mdx", + [2002874] = "World GENERIC DWARF PASSIVE DOODADS TABLES DwarvenTableAverage05.mdx", + [2002875] = "World GENERIC DWARF PASSIVE DOODADS TABLES DwarvenTableLarge.mdx", + [2002876] = "World GENERIC DWARF PASSIVE DOODADS TABLES DwarvenTableOrnate01.mdx", + [2002877] = "World GENERIC DWARF PASSIVE DOODADS TABLES DwarvenTableOrnate02.mdx", + [2002878] = "World GENERIC DWARF PASSIVE DOODADS TABLES DwarvenTableOrnate03.mdx", + [2002879] = "World GENERIC DWARF PASSIVE DOODADS TABLES DwarvenTableOrnate04.mdx", + [2002880] = "World GENERIC DWARF PASSIVE DOODADS TABLES DwarvenTableOrnate05.mdx", + [2002881] = "World GENERIC DWARF PASSIVE DOODADS TABLES DwarvenTableOrnate06.mdx", + [2002882] = "World GENERIC DWARF PASSIVE DOODADS TABLES DwarvenTableOrnate07.mdx", + [2002883] = "World GENERIC DWARF PASSIVE DOODADS TABLES DwarvenTableOrnate08.mdx", + [2002884] = "World GENERIC DWARF PASSIVE DOODADS TABLES DwarvenTableSimple01.mdx", + [2002885] = "World GENERIC DWARF PASSIVE DOODADS TABLES DwarvenTableSimple02.mdx", + [2002886] = "World GENERIC DWARF PASSIVE DOODADS TABLES DwarvenTableSimple03.mdx", + [2002887] = "World GENERIC DWARF PASSIVE DOODADS TABLES DwarvenTableSimple04.mdx", + [2002888] = "World GENERIC DWARF PASSIVE DOODADS TABLES DwarvenTableSimple05.mdx", + [2002889] = "World GENERIC DWARF PASSIVE DOODADS TABLES DwarvenTableSmall.mdx", + [2002890] = "World GENERIC DWARF PASSIVE DOODADS TABLES ReadingTable01.mdx", + [2002891] = "World GENERIC DWARF PASSIVE DOODADS TARGETS GunTargetStand.mdx", + [2002892] = "World GENERIC DWARF PASSIVE DOODADS TARGETS TargetAxe01.mdx", + [2002893] = "World GENERIC DWARF PASSIVE DOODADS TARGETS TargetAxe02.mdx", + [2002894] = "World GENERIC DWARF PASSIVE DOODADS TARGETS TargetAxe03.mdx", + [2002895] = "World GENERIC DWARF PASSIVE DOODADS TARGETS TargetHammer01.mdx", + [2002896] = "World GENERIC DWARF PASSIVE DOODADS TARGETS TargetHammer02.mdx", + [2002897] = "World GENERIC DWARF PASSIVE DOODADS TARGETS TargetHammer03.mdx", + [2002898] = "World GENERIC DWARF PASSIVE DOODADS TARGETS TargetOgre01.mdx", + [2002899] = "World GENERIC DWARF PASSIVE DOODADS TARGETS TargetOrc01.mdx", + [2002900] = "World GENERIC DWARF PASSIVE DOODADS TARGETS TargetOrc02.mdx", + [2002901] = "World GENERIC DWARF PASSIVE DOODADS TavernStuff AleKegFoot.mdx", + [2002902] = "World GENERIC DWARF PASSIVE DOODADS TavernStuff AleKegSingle.mdx", + [2002903] = "World GENERIC DWARF PASSIVE DOODADS TavernStuff AleKegs01.mdx", + [2002904] = "World GENERIC DWARF PASSIVE DOODADS TavernStuff BreweryTanks01.mdx", + [2002905] = "World GENERIC DWARF PASSIVE DOODADS TavernStuff GrainSacs01.mdx", + [2002906] = "World GENERIC DWARF PASSIVE DOODADS TavernStuff GrainSacs02.mdx", + [2002907] = "World GENERIC DWARF PASSIVE DOODADS TavernStuff Sink01.mdx", + [2002908] = "World GENERIC DWARF PASSIVE DOODADS Tilings DwarvenTiling01.mdx", + [2002909] = "World GENERIC DWARF PASSIVE DOODADS Tilings DwarvenTiling02.mdx", + [2002910] = "World GENERIC DWARF PASSIVE DOODADS Tilings DwarvenTiling03.mdx", + [2002911] = "World GENERIC DWARF PASSIVE DOODADS Tools Lunchbox01.mdx", + [2002912] = "World GENERIC DWARF PASSIVE DOODADS Tools Mallet01.mdx", + [2002913] = "World GENERIC DWARF PASSIVE DOODADS Tools Toolbox01.mdx", + [2002914] = "World GENERIC DWARF PASSIVE DOODADS Tools Wrench01.mdx", + [2002915] = "World GENERIC DWARF PASSIVE DOODADS Tools screwdriver01.mdx", + [2002916] = "World GENERIC DWARF PASSIVE DOODADS WARDROBE WardrobeDwarvenAverage01.mdx", + [2002917] = "World GENERIC DWARF PASSIVE DOODADS WARDROBE WardrobeDwarvenAverage02.mdx", + [2002918] = "World GENERIC DWARF PASSIVE DOODADS WARDROBE WardrobeDwarvenAverage03.mdx", + [2002919] = "World GENERIC DWARF PASSIVE DOODADS WARDROBE WardrobeDwarvenOrnate01.mdx", + [2002920] = "World GENERIC DWARF PASSIVE DOODADS WARDROBE WardrobeDwarvenOrnate02.mdx", + [2002921] = "World GENERIC DWARF PASSIVE DOODADS WARDROBE WardrobeDwarvenOrnate03.mdx", + [2002922] = "World GENERIC DWARF PASSIVE DOODADS WARDROBE WardrobeDwarvenSimple01.mdx", + [2002923] = "World GENERIC DWARF PASSIVE DOODADS WARDROBE WardrobeDwarvenSimple02.mdx", + [2002924] = "World GENERIC DWARF PASSIVE DOODADS WARDROBE WardrobeDwarvenSimple03.mdx", + [2002925] = "World GENERIC GNOME ACTIVEDOODADS GNOMEMACHINE GnomeMachine.mdx", + [2002926] = "World GENERIC GNOME PASSIVE DOODADS BUCKETS Gnomebucket01.mdx", + [2002927] = "World GENERIC GNOME PASSIVE DOODADS BUCKETS Gnomebucket02.mdx", + [2002928] = "World GENERIC GNOME PASSIVE DOODADS BUCKETS Gnomebucket03.mdx", + [2002929] = "World GENERIC GNOME PASSIVE DOODADS BUCKETS Gnomebucket04.mdx", + [2002930] = "World GENERIC GNOME PASSIVE DOODADS BUCKETS Gnomebucket05.mdx", + [2002931] = "World GENERIC GNOME PASSIVE DOODADS ElevatorParts GnomeElevatorCar01.mdx", + [2002932] = "World GENERIC GNOME PASSIVE DOODADS ElevatorParts GnomeElevatorCar02.mdx", + [2002933] = "World GENERIC GNOME PASSIVE DOODADS ElevatorParts GnomeElevatorCar03.mdx", + [2002934] = "World GENERIC GNOME PASSIVE DOODADS ElevatorParts GnomeElevatorCar05.mdx", + [2002935] = "World GENERIC GNOME PASSIVE DOODADS FURNITURE GnomeBed01.mdx", + [2002936] = "World GENERIC GNOME PASSIVE DOODADS FURNITURE GnomeBed02.mdx", + [2002937] = "World GENERIC GNOME PASSIVE DOODADS FURNITURE GnomeBed03.mdx", + [2002938] = "World GENERIC GNOME PASSIVE DOODADS FURNITURE GnomeBedSlanted01.mdx", + [2002939] = "World GENERIC GNOME PASSIVE DOODADS FURNITURE GnomeBenchSittable.mdx", + [2002940] = "World GENERIC GNOME PASSIVE DOODADS FURNITURE GnomeChair01.mdx", + [2002941] = "World GENERIC GNOME PASSIVE DOODADS FURNITURE GnomeChair02.mdx", + [2002942] = "World GENERIC GNOME PASSIVE DOODADS FURNITURE GnomeChair03.mdx", + [2002943] = "World GENERIC GNOME PASSIVE DOODADS FURNITURE GnomeTable01.mdx", + [2002944] = "World GENERIC GNOME PASSIVE DOODADS FURNITURE GnomeTable02.mdx", + [2002945] = "World GENERIC GNOME PASSIVE DOODADS FURNITURE GnomeTable03.mdx", + [2002946] = "World GENERIC GNOME PASSIVE DOODADS FURNITURE GnomeTable04.mdx", + [2002947] = "World GENERIC GNOME PASSIVE DOODADS FURNITURE GnomeTable05.mdx", + [2002948] = "World GENERIC GNOME PASSIVE DOODADS GNOMEMACHINE GnomeMachine01.mdx", + [2002949] = "World GENERIC GNOME PASSIVE DOODADS GNOMEMACHINE GnomeMachine02.mdx", + [2002950] = "World GENERIC GNOME PASSIVE DOODADS GNOMEMACHINE GnomeMachine03.mdx", + [2002951] = "World GENERIC GNOME PASSIVE DOODADS GNOMEMACHINE GnomeMachine04.mdx", + [2002952] = "World GENERIC GNOME PASSIVE DOODADS GNOMEMACHINE GnomeMachine05.mdx", + [2002953] = "World GENERIC GNOME PASSIVE DOODADS GNOMEMACHINE GnomeMachineBroken03.mdx", + [2002954] = "World GENERIC GNOME PASSIVE DOODADS GNOMEMACHINE GnomeMachineBroken04.mdx", + [2002955] = "World GENERIC GNOME PASSIVE DOODADS GNOMEMACHINE GnomeMachineBroken05.mdx", + [2002956] = "World GENERIC GNOME PASSIVE DOODADS GNOMEMACHINE GnomeSubwayGlass.mdx", + [2002957] = "World GENERIC GNOME PASSIVE DOODADS GNOMEMACHINE GnomeSubwaySign.mdx", + [2002958] = "World GENERIC GNOME PASSIVE DOODADS Gears&Levers GnomeBigGear.mdx", + [2002959] = "World GENERIC GNOME PASSIVE DOODADS Gears&Levers GnomeGauge01.mdx", + [2002960] = "World GENERIC GNOME PASSIVE DOODADS Gears&Levers GnomeLever.mdx", + [2002961] = "World GENERIC GNOME PASSIVE DOODADS Gears&Levers GnomeMCWheel.mdx", + [2002962] = "World GENERIC GNOME PASSIVE DOODADS Gears&Levers GnomeSmallGear.mdx", + [2002963] = "World GENERIC GNOME PASSIVE DOODADS GnomeMachinery GnomeHutElevator.mdx", + [2002964] = "World GENERIC GNOME PASSIVE DOODADS GnomeMachinery GnomeHutMachinery.mdx", + [2002965] = "World GENERIC GNOME PASSIVE DOODADS GnomeRoboArm GnomeRoboArm.mdx", + [2002966] = "World GENERIC GNOME PASSIVE DOODADS GnomeRocketCarts CrashedGnomeRC.mdx", + [2002967] = "World GENERIC GNOME PASSIVE DOODADS GnomeRocketCarts GnomeRocketCart.mdx", + [2002968] = "World GENERIC GNOME PASSIVE DOODADS GnomeWallAddons GnomeWallAddon01.mdx", + [2002969] = "World GENERIC GNOME PASSIVE DOODADS HazardLights GnomeHazardLight01.mdx", + [2002970] = "World GENERIC GNOME PASSIVE DOODADS HazardLights GnomeHazardLight02.mdx", + [2002971] = "World GENERIC GNOME PASSIVE DOODADS HazardLights GnomeHazardLightRed.mdx", + [2002972] = "World GENERIC GNOME PASSIVE DOODADS LIGHTS GnomeMaintenanceLight01.mdx", + [2002973] = "World GENERIC GNOME PASSIVE DOODADS LIGHTS GnomeMaintenanceLight02.mdx", + [2002974] = "World GENERIC GNOME PASSIVE DOODADS LIGHTS GnomeStructuralSpotLight01.mdx", + [2002975] = "World GENERIC GNOME PASSIVE DOODADS LIGHTS GnomeStructuralSpotLight02.mdx", + [2002976] = "World GENERIC GNOME PASSIVE DOODADS Parts GnomeScrew01.mdx", + [2002977] = "World GENERIC GNOME PASSIVE DOODADS Parts GnomeScrew02.mdx", + [2002978] = "World GENERIC GNOME PASSIVE DOODADS Parts GnomeScrew03.mdx", + [2002979] = "World GENERIC GNOME PASSIVE DOODADS Parts GnomeScrew04.mdx", + [2002980] = "World GENERIC GNOME PASSIVE DOODADS Parts GnomeScrew05.mdx", + [2002981] = "World GENERIC GNOME PASSIVE DOODADS Parts GnomeScrew06.mdx", + [2002982] = "World GENERIC GNOME PASSIVE DOODADS Parts GnomeScrew07.mdx", + [2002983] = "World GENERIC GNOME PASSIVE DOODADS Parts GnomeScrew08.mdx", + [2002984] = "World GENERIC GNOME PASSIVE DOODADS Parts GnomeScrew09.mdx", + [2002985] = "World GENERIC GNOME PASSIVE DOODADS Parts GnomeSteelPlate01.mdx", + [2002986] = "World GENERIC GNOME PASSIVE DOODADS Parts GnomeSteelPlate02.mdx", + [2002987] = "World GENERIC GNOME PASSIVE DOODADS Parts GnomeSteelPlate03.mdx", + [2002988] = "World GENERIC GNOME PASSIVE DOODADS Parts GnomeSteelPlate04.mdx", + [2002989] = "World GENERIC GNOME PASSIVE DOODADS Parts GnomeSteelPlate05.mdx", + [2002990] = "World GENERIC GNOME PASSIVE DOODADS Pipes GnomePipe01.mdx", + [2002991] = "World GENERIC GNOME PASSIVE DOODADS Pipes GnomePipe02.mdx", + [2002992] = "World GENERIC GNOME PASSIVE DOODADS Pipes GnomePipe04.mdx", + [2002993] = "World GENERIC GNOME PASSIVE DOODADS SPIDERTANK GnomeSpiderTank01.mdx", + [2002994] = "World GENERIC GNOME PASSIVE DOODADS SignPosts GnomeStreetSign01.mdx", + [2002995] = "World GENERIC GNOME PASSIVE DOODADS SteamWhistles GnomeWhistle02.mdx", + [2002996] = "World GENERIC GNOME PASSIVE DOODADS SteamWhistles GnomeWhistle03.mdx", + [2002997] = "World GENERIC GNOME PASSIVE DOODADS SteamWhistles GnomeWhistle04.mdx", + [2002998] = "World GENERIC GNOME PASSIVE DOODADS Subway SubwayCar.mdx", + [2002999] = "World GENERIC GNOME PASSIVE DOODADS Subway SubwayRamp.mdx", + [2003000] = "World GENERIC GNOME PASSIVE DOODADS Subway UnderwaterLightShaft.mdx", + [2003001] = "World GENERIC GNOME PASSIVE DOODADS Tools GnomeTool01.mdx", + [2003002] = "World GENERIC GNOME PASSIVE DOODADS Tools GnomeTool02.mdx", + [2003003] = "World GENERIC GNOME PASSIVE DOODADS Tools GnomeTool03.mdx", + [2003004] = "World GENERIC GNOME PASSIVE DOODADS Tools GnomeTool04.mdx", + [2003005] = "World GENERIC GNOME PASSIVE DOODADS Tools GnomeTool05.mdx", + [2003006] = "World GENERIC GNOME PASSIVE DOODADS Tools GnomeTool06.mdx", + [2003007] = "World GENERIC GOBLIN PASSIVEDOODADS ControlPanel GoblinControlPanel.mdx", + [2003008] = "World GENERIC GOBLIN PASSIVEDOODADS GOBLINMACHINERY GoblinHutBottles.mdx", + [2003009] = "World GENERIC GOBLIN PASSIVEDOODADS GOBLINMACHINERY GoblinMachinery.mdx", + [2003010] = "World GENERIC GOBLIN PASSIVEDOODADS GOBLINROCKETCARTS CrashedGoblinRC.mdx", + [2003011] = "World GENERIC GOBLIN PASSIVEDOODADS GOBLINROCKETCARTS GoblinRocketCart01.mdx", + [2003012] = "World GENERIC GOBLIN PASSIVEDOODADS GOBLINROCKETCARTS GoblinRocketCart02.mdx", + [2003013] = "World GENERIC GOBLIN PASSIVEDOODADS GOBLINROCKETCARTS GoblinRocketCart03.mdx", + [2003014] = "World GENERIC GOBLIN PASSIVEDOODADS GOBLINROCKETCARTS GoblinRocketCart04.mdx", + [2003015] = "World GENERIC GOBLIN PASSIVEDOODADS GOBLINROCKETCARTS GoblinRocketCart05.mdx", + [2003016] = "World GENERIC GOBLIN PASSIVEDOODADS GOBLINTENTS GoblinTent03.mdx", + [2003017] = "World GENERIC GOBLIN PASSIVEDOODADS GOBLINTENTS GoblinTent04.mdx", + [2003018] = "World GENERIC GOBLIN PASSIVEDOODADS GOBLINTENTS GoblinTent05.mdx", + [2003019] = "World GENERIC GOBLIN PASSIVEDOODADS GOBLINTENTS GoblinTent06.mdx", + [2003020] = "World GENERIC GOBLIN PASSIVEDOODADS GOBLINTENTS GoblinTent07.mdx", + [2003021] = "World GENERIC GOBLIN PASSIVEDOODADS GoblinShredderSuit GoblinShredderSuit01.mdx", + [2003022] = "World GENERIC GOBLIN PASSIVEDOODADS GoblinShredderSuit GoblinShredderSuit02.mdx", + [2003023] = "World GENERIC GOBLIN PASSIVEDOODADS GoblinTNTWagon GoblinWagonTNT_01.mdx", + [2003024] = "World GENERIC HUMAN ACTIVEDOODADS DOORS DeadmineDoor01.mdx", + [2003025] = "World GENERIC HUMAN ACTIVEDOODADS DOORS DeadmineDoor02.mdx", + [2003026] = "World GENERIC HUMAN ACTIVEDOODADS DOORS FarmDoor01test.mdx", + [2003027] = "World GENERIC HUMAN ACTIVEDOODADS DOORS GenericWroughtGate01.mdx", + [2003028] = "World GENERIC HUMAN ACTIVEDOODADS DOORS MonestaryBossDoor.mdx", + [2003029] = "World GENERIC HUMAN ACTIVEDOODADS DOORS MonestaryHallDoor.mdx", + [2003030] = "World GENERIC HUMAN ACTIVEDOODADS DOORS MonestarySecretDoor.mdx", + [2003031] = "World GENERIC HUMAN ACTIVEDOODADS DOORS PortcullisActive.mdx", + [2003032] = "World GENERIC HUMAN ACTIVEDOODADS DOORS ScarletCathedralDoor.mdx", + [2003033] = "World GENERIC HUMAN ACTIVEDOODADS DOORS ShadowFangDoor01.mdx", + [2003034] = "World GENERIC HUMAN ACTIVEDOODADS DOORS ShadowFangDoor02.mdx", + [2003035] = "World GENERIC HUMAN ACTIVEDOODADS DOORS UndeadWroughtGate01.mdx", + [2003036] = "World GENERIC HUMAN ACTIVEDOODADS DOORS WroughtIronDoor.mdx", + [2003037] = "World GENERIC HUMAN ACTIVEDOODADS DOORS WroughtIronDoor02.mdx", + [2003038] = "World GENERIC HUMAN ACTIVEDOODADS Shadowfang WizardsSphere.mdx", + [2003039] = "World GENERIC HUMAN PASSIVE DOODADS ANIMALHEADS DuskwoodBoarHead01.mdx", + [2003040] = "World GENERIC HUMAN PASSIVE DOODADS ANIMALHEADS StuffedBear.mdx", + [2003041] = "World GENERIC HUMAN PASSIVE DOODADS ANIMALHEADS StuffedFrenzy.mdx", + [2003042] = "World GENERIC HUMAN PASSIVE DOODADS ANIMALHEADS StuffedTallStrider.mdx", + [2003043] = "World GENERIC HUMAN PASSIVE DOODADS Altars Altar01.mdx", + [2003044] = "World GENERIC HUMAN PASSIVE DOODADS Altars Altar02.mdx", + [2003045] = "World GENERIC HUMAN PASSIVE DOODADS Altars GeneralAltar01.mdx", + [2003046] = "World GENERIC HUMAN PASSIVE DOODADS Anchor DeadMineAnchor.mdx", + [2003047] = "World GENERIC HUMAN PASSIVE DOODADS Anchors BootyAnchor.mdx", + [2003048] = "World GENERIC HUMAN PASSIVE DOODADS ArcheryTargets StormWindArcheryTarget01.mdx", + [2003049] = "World GENERIC HUMAN PASSIVE DOODADS Arches GardenArch.mdx", + [2003050] = "World GENERIC HUMAN PASSIVE DOODADS Arches GardenArchLeftPost.mdx", + [2003051] = "World GENERIC HUMAN PASSIVE DOODADS Arches GardenArchRightPost.mdx", + [2003052] = "World GENERIC HUMAN PASSIVE DOODADS Arches GardenArchTop.mdx", + [2003053] = "World GENERIC HUMAN PASSIVE DOODADS Arches trellis01.mdx", + [2003054] = "World GENERIC HUMAN PASSIVE DOODADS Arches trellis02.mdx", + [2003055] = "World GENERIC HUMAN PASSIVE DOODADS Armor ArmorBracerBlue.mdx", + [2003056] = "World GENERIC HUMAN PASSIVE DOODADS Armor ArmorBracerGold.mdx", + [2003057] = "World GENERIC HUMAN PASSIVE DOODADS Armor ArmorBracerSilver.mdx", + [2003058] = "World GENERIC HUMAN PASSIVE DOODADS Armor ArmorBracerTrim.mdx", + [2003059] = "World GENERIC HUMAN PASSIVE DOODADS Armor ArmorBreastplateBlue.mdx", + [2003060] = "World GENERIC HUMAN PASSIVE DOODADS Armor ArmorBreastplateGold.mdx", + [2003061] = "World GENERIC HUMAN PASSIVE DOODADS Armor ArmorBreastplateGreen.mdx", + [2003062] = "World GENERIC HUMAN PASSIVE DOODADS Armor ArmorBreastplateTrim.mdx", + [2003063] = "World GENERIC HUMAN PASSIVE DOODADS Armor ArmorHelmBlueVisorDown.mdx", + [2003064] = "World GENERIC HUMAN PASSIVE DOODADS Armor ArmorHelmBlueVisorUp.mdx", + [2003065] = "World GENERIC HUMAN PASSIVE DOODADS Armor ArmorHelmGold.mdx", + [2003066] = "World GENERIC HUMAN PASSIVE DOODADS Armor ArmorHelmGreen.mdx", + [2003067] = "World GENERIC HUMAN PASSIVE DOODADS Armor ArmorHelmGreenFlat.mdx", + [2003068] = "World GENERIC HUMAN PASSIVE DOODADS Armor ArmorHelmTrim.mdx", + [2003069] = "World GENERIC HUMAN PASSIVE DOODADS Armor ArmorHelmTrimFlat.mdx", + [2003070] = "World GENERIC HUMAN PASSIVE DOODADS Armor ArmorHelmVisorBlue.mdx", + [2003071] = "World GENERIC HUMAN PASSIVE DOODADS Armor ArmorLeatherBracerBlack.mdx", + [2003072] = "World GENERIC HUMAN PASSIVE DOODADS Armor ArmorLeatherBracerBrown.mdx", + [2003073] = "World GENERIC HUMAN PASSIVE DOODADS Armor ArmorLeatherBracerDark.mdx", + [2003074] = "World GENERIC HUMAN PASSIVE DOODADS Armor ArmorLeatherBracerOrange.mdx", + [2003075] = "World GENERIC HUMAN PASSIVE DOODADS Armor ArmorLeatherHelmBlack.mdx", + [2003076] = "World GENERIC HUMAN PASSIVE DOODADS Armor ArmorLeatherHelmBlackFlat.mdx", + [2003077] = "World GENERIC HUMAN PASSIVE DOODADS Armor ArmorLeatherHelmBrown.mdx", + [2003078] = "World GENERIC HUMAN PASSIVE DOODADS Armor ArmorLeatherHelmBrownFlat.mdx", + [2003079] = "World GENERIC HUMAN PASSIVE DOODADS Armor ArmorLeatherLegPLateOrange.mdx", + [2003080] = "World GENERIC HUMAN PASSIVE DOODADS Armor ArmorLeatherLegPlateBlack.mdx", + [2003081] = "World GENERIC HUMAN PASSIVE DOODADS Armor ArmorLeatherLegPlateBrown.mdx", + [2003082] = "World GENERIC HUMAN PASSIVE DOODADS Armor ArmorLeatherLegPlateDark.mdx", + [2003083] = "World GENERIC HUMAN PASSIVE DOODADS Armor ArmorLeatherShirtBlack.mdx", + [2003084] = "World GENERIC HUMAN PASSIVE DOODADS Armor ArmorLeatherShirtBrown.mdx", + [2003085] = "World GENERIC HUMAN PASSIVE DOODADS Armor ArmorLeatherShirtDark.mdx", + [2003086] = "World GENERIC HUMAN PASSIVE DOODADS Armor ArmorLeatherShirtOrange.mdx", + [2003087] = "World GENERIC HUMAN PASSIVE DOODADS Armor ArmorLeatherShoulderBlack.mdx", + [2003088] = "World GENERIC HUMAN PASSIVE DOODADS Armor ArmorLeatherShoulderDark.mdx", + [2003089] = "World GENERIC HUMAN PASSIVE DOODADS Armor ArmorLeatherShoulderOrange.mdx", + [2003090] = "World GENERIC HUMAN PASSIVE DOODADS Armor ArmorLegPlateBlue.mdx", + [2003091] = "World GENERIC HUMAN PASSIVE DOODADS Armor ArmorLegPlateGold.mdx", + [2003092] = "World GENERIC HUMAN PASSIVE DOODADS Armor ArmorLegPlateSilver.mdx", + [2003093] = "World GENERIC HUMAN PASSIVE DOODADS Armor ArmorLegPlateTrim.mdx", + [2003094] = "World GENERIC HUMAN PASSIVE DOODADS Armor ArmorMailHangingBlue.mdx", + [2003095] = "World GENERIC HUMAN PASSIVE DOODADS Armor ArmorMailHangingBlueLong.mdx", + [2003096] = "World GENERIC HUMAN PASSIVE DOODADS Armor ArmorMailHangingGold.mdx", + [2003097] = "World GENERIC HUMAN PASSIVE DOODADS Armor ArmorMailHangingGoldLong.mdx", + [2003098] = "World GENERIC HUMAN PASSIVE DOODADS Armor ArmorMailHangingRed.mdx", + [2003099] = "World GENERIC HUMAN PASSIVE DOODADS Armor ArmorMailHangingRedLong.mdx", + [2003100] = "World GENERIC HUMAN PASSIVE DOODADS Armor ArmorShoulderBlue.mdx", + [2003101] = "World GENERIC HUMAN PASSIVE DOODADS Armor ArmorShoulderGold.mdx", + [2003102] = "World GENERIC HUMAN PASSIVE DOODADS Armor ArmorShoulderSilver.mdx", + [2003103] = "World GENERIC HUMAN PASSIVE DOODADS Armor ArmorShoulderTrim.mdx", + [2003104] = "World GENERIC HUMAN PASSIVE DOODADS Armor ArmorStand.mdx", + [2003105] = "World GENERIC HUMAN PASSIVE DOODADS Armor ArmorStandMailBlue.mdx", + [2003106] = "World GENERIC HUMAN PASSIVE DOODADS Armor ArmorStandMailCoifBlue.mdx", + [2003107] = "World GENERIC HUMAN PASSIVE DOODADS Artwork Painting05.mdx", + [2003108] = "World GENERIC HUMAN PASSIVE DOODADS Artwork Painting06.mdx", + [2003109] = "World GENERIC HUMAN PASSIVE DOODADS Artwork Painting07.mdx", + [2003110] = "World GENERIC HUMAN PASSIVE DOODADS Artwork Painting08.mdx", + [2003111] = "World GENERIC HUMAN PASSIVE DOODADS Artwork Painting09.mdx", + [2003112] = "World GENERIC HUMAN PASSIVE DOODADS Artwork Painting10.mdx", + [2003113] = "World GENERIC HUMAN PASSIVE DOODADS Artwork Painting11.mdx", + [2003114] = "World GENERIC HUMAN PASSIVE DOODADS Artwork Painting12.mdx", + [2003115] = "World GENERIC HUMAN PASSIVE DOODADS Artwork Painting13.mdx", + [2003116] = "World GENERIC HUMAN PASSIVE DOODADS Artwork Painting14.mdx", + [2003117] = "World GENERIC HUMAN PASSIVE DOODADS Artwork Painting15.mdx", + [2003118] = "World GENERIC HUMAN PASSIVE DOODADS BOOKS BookLarge01.mdx", + [2003119] = "World GENERIC HUMAN PASSIVE DOODADS BOOKS BookLarge02.mdx", + [2003120] = "World GENERIC HUMAN PASSIVE DOODADS BOOKS BookLarge03.mdx", + [2003121] = "World GENERIC HUMAN PASSIVE DOODADS BOOKS BookLargeOpen01.mdx", + [2003122] = "World GENERIC HUMAN PASSIVE DOODADS BOOKS BookLargeOpen02.mdx", + [2003123] = "World GENERIC HUMAN PASSIVE DOODADS BOOKS BookLargeOpen03.mdx", + [2003124] = "World GENERIC HUMAN PASSIVE DOODADS BOOKS BookMedium01.mdx", + [2003125] = "World GENERIC HUMAN PASSIVE DOODADS BOOKS BookMedium02.mdx", + [2003126] = "World GENERIC HUMAN PASSIVE DOODADS BOOKS BookMedium03.mdx", + [2003127] = "World GENERIC HUMAN PASSIVE DOODADS BOOKS BookMedium04.mdx", + [2003128] = "World GENERIC HUMAN PASSIVE DOODADS BOOKS BookMedium05.mdx", + [2003129] = "World GENERIC HUMAN PASSIVE DOODADS BOOKS BookMedium06.mdx", + [2003130] = "World GENERIC HUMAN PASSIVE DOODADS BOOKS BookMedium07.mdx", + [2003131] = "World GENERIC HUMAN PASSIVE DOODADS BOOKS BookMediumOpen01.mdx", + [2003132] = "World GENERIC HUMAN PASSIVE DOODADS BOOKS BookMediumOpen02.mdx", + [2003133] = "World GENERIC HUMAN PASSIVE DOODADS BOOKS BookMediumOpen03.mdx", + [2003134] = "World GENERIC HUMAN PASSIVE DOODADS BOOKS BookMediumOpen04.mdx", + [2003135] = "World GENERIC HUMAN PASSIVE DOODADS BOOKS BookMediumOpen05.mdx", + [2003136] = "World GENERIC HUMAN PASSIVE DOODADS BOOKS BookSmall01.mdx", + [2003137] = "World GENERIC HUMAN PASSIVE DOODADS BOOKS BookSmall02.mdx", + [2003138] = "World GENERIC HUMAN PASSIVE DOODADS BOOKS BookSmall03.mdx", + [2003139] = "World GENERIC HUMAN PASSIVE DOODADS BOOKS BookSmall04.mdx", + [2003140] = "World GENERIC HUMAN PASSIVE DOODADS BOOKS BookSmall05.mdx", + [2003141] = "World GENERIC HUMAN PASSIVE DOODADS BOOKS BookSmallOpen01.mdx", + [2003142] = "World GENERIC HUMAN PASSIVE DOODADS BOOKS BookSmallOpen02.mdx", + [2003143] = "World GENERIC HUMAN PASSIVE DOODADS BOOKS BookSmallOpen03.mdx", + [2003144] = "World GENERIC HUMAN PASSIVE DOODADS BOOKS BookSmallOpen04.mdx", + [2003145] = "World GENERIC HUMAN PASSIVE DOODADS BOOKS BookSmallOpen05.mdx", + [2003146] = "World GENERIC HUMAN PASSIVE DOODADS BOOKS GeneralBook01.mdx", + [2003147] = "World GENERIC HUMAN PASSIVE DOODADS BUCKETS CaveKoboldBucket.mdx", + [2003148] = "World GENERIC HUMAN PASSIVE DOODADS BUCKETS bucket.mdx", + [2003149] = "World GENERIC HUMAN PASSIVE DOODADS BallandChain BallAndChain01.mdx", + [2003150] = "World GENERIC HUMAN PASSIVE DOODADS BallistaRuins BallistaBow01.mdx", + [2003151] = "World GENERIC HUMAN PASSIVE DOODADS BallistaRuins BallistaFrame01.mdx", + [2003152] = "World GENERIC HUMAN PASSIVE DOODADS BallistaRuins BallistaMissle01.mdx", + [2003153] = "World GENERIC HUMAN PASSIVE DOODADS BallistaRuins BallistaWheel01.mdx", + [2003154] = "World GENERIC HUMAN PASSIVE DOODADS Banners BannerArgentDawn.mdx", + [2003155] = "World GENERIC HUMAN PASSIVE DOODADS Banners BlueLorderonBanner.mdx", + [2003156] = "World GENERIC HUMAN PASSIVE DOODADS Banners CrimsonBanner01.mdx", + [2003157] = "World GENERIC HUMAN PASSIVE DOODADS Banners DurnholdeBannerNew.mdx", + [2003158] = "World GENERIC HUMAN PASSIVE DOODADS Banners Durnholdebanner01.mdx", + [2003159] = "World GENERIC HUMAN PASSIVE DOODADS Banners Durnholdebanner02.mdx", + [2003160] = "World GENERIC HUMAN PASSIVE DOODADS Banners DwarvenBanner01.mdx", + [2003161] = "World GENERIC HUMAN PASSIVE DOODADS Banners HolyBanner01.mdx", + [2003162] = "World GENERIC HUMAN PASSIVE DOODADS Banners KulTirasBanner01.mdx", + [2003163] = "World GENERIC HUMAN PASSIVE DOODADS Banners KulTirasBanner02.mdx", + [2003164] = "World GENERIC HUMAN PASSIVE DOODADS Banners MagicBanner01.mdx", + [2003165] = "World GENERIC HUMAN PASSIVE DOODADS Banners NightElf01.mdx", + [2003166] = "World GENERIC HUMAN PASSIVE DOODADS Banners ScarletBanner01.mdx", + [2003167] = "World GENERIC HUMAN PASSIVE DOODADS Banners ScarletBanner02.mdx", + [2003168] = "World GENERIC HUMAN PASSIVE DOODADS Banners ScarletBanner03.mdx", + [2003169] = "World GENERIC HUMAN PASSIVE DOODADS Banners ScarletBannerClean.mdx", + [2003170] = "World GENERIC HUMAN PASSIVE DOODADS Banners ScarletBannerLong.mdx", + [2003171] = "World GENERIC HUMAN PASSIVE DOODADS Banners ShadowfangBanner01.mdx", + [2003172] = "World GENERIC HUMAN PASSIVE DOODADS Banners ShadowfangBanner02.mdx", + [2003173] = "World GENERIC HUMAN PASSIVE DOODADS Banners StormwindGriffonBanner01.mdx", + [2003174] = "World GENERIC HUMAN PASSIVE DOODADS Banners StormwindLionBanner.mdx", + [2003175] = "World GENERIC HUMAN PASSIVE DOODADS Banners StormwindMageBanner01.mdx", + [2003176] = "World GENERIC HUMAN PASSIVE DOODADS Banners WarriorBanner01.mdx", + [2003177] = "World GENERIC HUMAN PASSIVE DOODADS Beds Bunkbed01.mdx", + [2003178] = "World GENERIC HUMAN PASSIVE DOODADS Beds DuskwoodBed.mdx", + [2003179] = "World GENERIC HUMAN PASSIVE DOODADS BeerKegs BeerKeg01.mdx", + [2003180] = "World GENERIC HUMAN PASSIVE DOODADS BeerKegs BeerKeg01_NoCollide.mdx", + [2003181] = "World GENERIC HUMAN PASSIVE DOODADS BeerKegs BeerKeg02.mdx", + [2003182] = "World GENERIC HUMAN PASSIVE DOODADS Bellows DuskwoodBellows.mdx", + [2003183] = "World GENERIC HUMAN PASSIVE DOODADS Bellows bellows.mdx", + [2003184] = "World GENERIC HUMAN PASSIVE DOODADS Benches DuskwoodBench.mdx", + [2003185] = "World GENERIC HUMAN PASSIVE DOODADS Benches ShadowfangBench01.mdx", + [2003186] = "World GENERIC HUMAN PASSIVE DOODADS Benches ShadowfangBench02.mdx", + [2003187] = "World GENERIC HUMAN PASSIVE DOODADS Benches StormWindBench01.mdx", + [2003188] = "World GENERIC HUMAN PASSIVE DOODADS BookShelves AbbeyShelf01.mdx", + [2003189] = "World GENERIC HUMAN PASSIVE DOODADS BookShelves AbbeyShelf01_Unselectable.mdx", + [2003190] = "World GENERIC HUMAN PASSIVE DOODADS BookShelves AbbeyShelf02.mdx", + [2003191] = "World GENERIC HUMAN PASSIVE DOODADS BookShelves AbbeyShelf02_Unselectable.mdx", + [2003192] = "World GENERIC HUMAN PASSIVE DOODADS BookShelves DuskwoodBookshelf01.mdx", + [2003193] = "World GENERIC HUMAN PASSIVE DOODADS BookShelves DuskwoodBookshelf02.mdx", + [2003194] = "World GENERIC HUMAN PASSIVE DOODADS BookShelves DuskwoodBookshelf03.mdx", + [2003195] = "World GENERIC HUMAN PASSIVE DOODADS BookStacks GeneralBookStackShort01.mdx", + [2003196] = "World GENERIC HUMAN PASSIVE DOODADS BookStacks GeneralBookStackTall01.mdx", + [2003197] = "World GENERIC HUMAN PASSIVE DOODADS Bottles Bottle01.mdx", + [2003198] = "World GENERIC HUMAN PASSIVE DOODADS Bottles BottleSmoke.mdx", + [2003199] = "World GENERIC HUMAN PASSIVE DOODADS Bottles GreenBottle01.mdx", + [2003200] = "World GENERIC HUMAN PASSIVE DOODADS Braziers HumanBrazierCorrupt.mdx", + [2003201] = "World GENERIC HUMAN PASSIVE DOODADS Braziers HumanBrazierMagic.mdx", + [2003202] = "World GENERIC HUMAN PASSIVE DOODADS Braziers StormwindBrazier01.mdx", + [2003203] = "World GENERIC HUMAN PASSIVE DOODADS CANDELABRAS CandelabraTall01.mdx", + [2003204] = "World GENERIC HUMAN PASSIVE DOODADS CANDELABRAS CandelabraTall02.mdx", + [2003205] = "World GENERIC HUMAN PASSIVE DOODADS CANDELABRAS GeneralCandelabra01.mdx", + [2003206] = "World GENERIC HUMAN PASSIVE DOODADS CANNON Cannon01.mdx", + [2003207] = "World GENERIC HUMAN PASSIVE DOODADS CANNON CannonLarge.mdx", + [2003208] = "World GENERIC HUMAN PASSIVE DOODADS CANNON DeadMinesCannon01.mdx", + [2003209] = "World GENERIC HUMAN PASSIVE DOODADS CAULDRONS Cauldron.mdx", + [2003210] = "World GENERIC HUMAN PASSIVE DOODADS CAULDRONS Cauldronempty.mdx", + [2003211] = "World GENERIC HUMAN PASSIVE DOODADS CLOTH ClothBoltBlue.mdx", + [2003212] = "World GENERIC HUMAN PASSIVE DOODADS CLOTH ClothBoltGreen.mdx", + [2003213] = "World GENERIC HUMAN PASSIVE DOODADS CLOTH ClothBoltRed.mdx", + [2003214] = "World GENERIC HUMAN PASSIVE DOODADS CLOTH ClothBoltWhite.mdx", + [2003215] = "World GENERIC HUMAN PASSIVE DOODADS CLOTH ClothSpoolBlue.mdx", + [2003216] = "World GENERIC HUMAN PASSIVE DOODADS CLOTH ClothSpoolBlueLow.mdx", + [2003217] = "World GENERIC HUMAN PASSIVE DOODADS CLOTH ClothSpoolRedLow.mdx", + [2003218] = "World GENERIC HUMAN PASSIVE DOODADS CLOTH ClothSpoolYellow.mdx", + [2003219] = "World GENERIC HUMAN PASSIVE DOODADS CLOTH ClothYarnBlue.mdx", + [2003220] = "World GENERIC HUMAN PASSIVE DOODADS CLOTH ClothYarnBlueLow.mdx", + [2003221] = "World GENERIC HUMAN PASSIVE DOODADS CLOTH ClothYarnRedLow.mdx", + [2003222] = "World GENERIC HUMAN PASSIVE DOODADS CLOTH ClothYarnYellow.mdx", + [2003223] = "World GENERIC HUMAN PASSIVE DOODADS CRATES CrateGrain01.mdx", + [2003224] = "World GENERIC HUMAN PASSIVE DOODADS CRATES CrateGrainLid.mdx", + [2003225] = "World GENERIC HUMAN PASSIVE DOODADS CRATES CrateGrainOpen.mdx", + [2003226] = "World GENERIC HUMAN PASSIVE DOODADS CRATES GrainCrate01.mdx", + [2003227] = "World GENERIC HUMAN PASSIVE DOODADS CRATES ReplaceCrate01.mdx", + [2003228] = "World GENERIC HUMAN PASSIVE DOODADS CRATES ReplaceCrate02.mdx", + [2003229] = "World GENERIC HUMAN PASSIVE DOODADS CRATES ReplaceCrate03.mdx", + [2003230] = "World GENERIC HUMAN PASSIVE DOODADS CRATES StormwindCrate01.mdx", + [2003231] = "World GENERIC HUMAN PASSIVE DOODADS CannonBallStack DeadMineCannonBallStack.mdx", + [2003232] = "World GENERIC HUMAN PASSIVE DOODADS CargoBoxes DeadMineCargoBoxes.mdx", + [2003233] = "World GENERIC HUMAN PASSIVE DOODADS CargoNetBoxes DeadMineCargoNetBoxes.mdx", + [2003234] = "World GENERIC HUMAN PASSIVE DOODADS CargoNets DeadMineCargoNet01.mdx", + [2003235] = "World GENERIC HUMAN PASSIVE DOODADS CargoNets DeadMineCargoNet02.mdx", + [2003236] = "World GENERIC HUMAN PASSIVE DOODADS CargoNets DeadMineCargoNetHang.mdx", + [2003237] = "World GENERIC HUMAN PASSIVE DOODADS CargoNets DeadMineCargoNetHangShort.mdx", + [2003238] = "World GENERIC HUMAN PASSIVE DOODADS CargoNets DeadMineCargoNetLarge.mdx", + [2003239] = "World GENERIC HUMAN PASSIVE DOODADS CatapultRuins CatapultArm.mdx", + [2003240] = "World GENERIC HUMAN PASSIVE DOODADS CatapultRuins CatapultBall01.mdx", + [2003241] = "World GENERIC HUMAN PASSIVE DOODADS CatapultRuins CatapultBeam.mdx", + [2003242] = "World GENERIC HUMAN PASSIVE DOODADS CatapultRuins CatapultTrunk01.mdx", + [2003243] = "World GENERIC HUMAN PASSIVE DOODADS CatapultRuins CatapultTrunk02.mdx", + [2003244] = "World GENERIC HUMAN PASSIVE DOODADS CatapultRuins CatapultWheel01.mdx", + [2003245] = "World GENERIC HUMAN PASSIVE DOODADS CaveMinePump MinePump01.mdx", + [2003246] = "World GENERIC HUMAN PASSIVE DOODADS CaveRoof DNRDeadMinesCaveRoof.mdx", + [2003247] = "World GENERIC HUMAN PASSIVE DOODADS CaveRoof DeadMinesCaveRoof.mdx", + [2003248] = "World GENERIC HUMAN PASSIVE DOODADS Chairs GMChairLoEnd01.mdx", + [2003249] = "World GENERIC HUMAN PASSIVE DOODADS Chairs GeneralChairHighEnd01.mdx", + [2003250] = "World GENERIC HUMAN PASSIVE DOODADS Chairs GeneralChairLoEnd01.mdx", + [2003251] = "World GENERIC HUMAN PASSIVE DOODADS Chairs GeneralMedChair01.mdx", + [2003252] = "World GENERIC HUMAN PASSIVE DOODADS Chairs ShadowfangChair01.mdx", + [2003253] = "World GENERIC HUMAN PASSIVE DOODADS Chairs ShadowfangChair02.mdx", + [2003254] = "World GENERIC HUMAN PASSIVE DOODADS Chimneys GeneralChimney01.mdx", + [2003255] = "World GENERIC HUMAN PASSIVE DOODADS Chimneys GeneralChimney02.mdx", + [2003256] = "World GENERIC HUMAN PASSIVE DOODADS Clothing BootRack01.mdx", + [2003257] = "World GENERIC HUMAN PASSIVE DOODADS Clothing BootsLeatherBlack.mdx", + [2003258] = "World GENERIC HUMAN PASSIVE DOODADS Clothing BootsLeatherBrown01.mdx", + [2003259] = "World GENERIC HUMAN PASSIVE DOODADS Clothing BootsLeatherDark.mdx", + [2003260] = "World GENERIC HUMAN PASSIVE DOODADS Clothing ClothYarnBallRed.mdx", + [2003261] = "World GENERIC HUMAN PASSIVE DOODADS Clothing ClothYarnBallYellow.mdx", + [2003262] = "World GENERIC HUMAN PASSIVE DOODADS Clothing FoldedPantsBrown.mdx", + [2003263] = "World GENERIC HUMAN PASSIVE DOODADS Clothing FoldedPantsGrey.mdx", + [2003264] = "World GENERIC HUMAN PASSIVE DOODADS Clothing FoldedShirtBrown.mdx", + [2003265] = "World GENERIC HUMAN PASSIVE DOODADS Clothing FolderShirtGreen.mdx", + [2003266] = "World GENERIC HUMAN PASSIVE DOODADS Clothing HangingCloakBlue.mdx", + [2003267] = "World GENERIC HUMAN PASSIVE DOODADS Clothing HangingCloakRed.mdx", + [2003268] = "World GENERIC HUMAN PASSIVE DOODADS Clothing HangingPantsBrown.mdx", + [2003269] = "World GENERIC HUMAN PASSIVE DOODADS Clothing HangingPantsClotheslineBrown.mdx", + [2003270] = "World GENERIC HUMAN PASSIVE DOODADS Clothing HangingPantsClotheslineGrey.mdx", + [2003271] = "World GENERIC HUMAN PASSIVE DOODADS Clothing HangingPantsGrey.mdx", + [2003272] = "World GENERIC HUMAN PASSIVE DOODADS Clothing HangingShirtBrown.mdx", + [2003273] = "World GENERIC HUMAN PASSIVE DOODADS Clothing HangingShirtClotheslineBrown.mdx", + [2003274] = "World GENERIC HUMAN PASSIVE DOODADS Clothing HangingShirtClotheslineGreen.mdx", + [2003275] = "World GENERIC HUMAN PASSIVE DOODADS Clothing HangingShirtGreen.mdx", + [2003276] = "World GENERIC HUMAN PASSIVE DOODADS Cups MetalCup03.mdx", + [2003277] = "World GENERIC HUMAN PASSIVE DOODADS Cups MetalCup04.mdx", + [2003278] = "World GENERIC HUMAN PASSIVE DOODADS DOLLS ragdoll01.mdx", + [2003279] = "World GENERIC HUMAN PASSIVE DOODADS DOLLS ragdoll_02.mdx", + [2003280] = "World GENERIC HUMAN PASSIVE DOODADS DOLLS ragdoll_03.mdx", + [2003281] = "World GENERIC HUMAN PASSIVE DOODADS DOLLS ragdoll_04.mdx", + [2003282] = "World GENERIC HUMAN PASSIVE DOODADS DOLLS ragdoll_05.mdx", + [2003283] = "World GENERIC HUMAN PASSIVE DOODADS DeadMineCleat DeadMineCleat.mdx", + [2003284] = "World GENERIC HUMAN PASSIVE DOODADS DeadMinePowderKeg DeadMinePowderKeg.mdx", + [2003285] = "World GENERIC HUMAN PASSIVE DOODADS Desks FancyDesk01.mdx", + [2003286] = "World GENERIC HUMAN PASSIVE DOODADS Drapery Drapery02.mdx", + [2003287] = "World GENERIC HUMAN PASSIVE DOODADS Dredge CaveKoboldDredge.mdx", + [2003288] = "World GENERIC HUMAN PASSIVE DOODADS ElevatorParts BurningSteppsElevator.mdx", + [2003289] = "World GENERIC HUMAN PASSIVE DOODADS FLAGPOLE Flagpole01.mdx", + [2003290] = "World GENERIC HUMAN PASSIVE DOODADS FOOD&UTENSILS Cleaver01.mdx", + [2003291] = "World GENERIC HUMAN PASSIVE DOODADS FOOD&UTENSILS Haunch.mdx", + [2003292] = "World GENERIC HUMAN PASSIVE DOODADS FOOD&UTENSILS KitchenKnife.mdx", + [2003293] = "World GENERIC HUMAN PASSIVE DOODADS FOOD&UTENSILS KitchenKnife01.mdx", + [2003294] = "World GENERIC HUMAN PASSIVE DOODADS FOOD&UTENSILS TurkeyLeg.mdx", + [2003295] = "World GENERIC HUMAN PASSIVE DOODADS FOOD BreadFrench01.mdx", + [2003296] = "World GENERIC HUMAN PASSIVE DOODADS FOOD BreadFrenchHalf.mdx", + [2003297] = "World GENERIC HUMAN PASSIVE DOODADS FOOD BreadLoaf01.mdx", + [2003298] = "World GENERIC HUMAN PASSIVE DOODADS FOOD BreadLoafHalf.mdx", + [2003299] = "World GENERIC HUMAN PASSIVE DOODADS FOOD BreadSlice.mdx", + [2003300] = "World GENERIC HUMAN PASSIVE DOODADS FOOD CheeseWedge01.mdx", + [2003301] = "World GENERIC HUMAN PASSIVE DOODADS FOOD CheeseWedgeSwiss01.mdx", + [2003302] = "World GENERIC HUMAN PASSIVE DOODADS FOOD CheeseWheel01.mdx", + [2003303] = "World GENERIC HUMAN PASSIVE DOODADS FOOD CheeseWheelSwiss01.mdx", + [2003304] = "World GENERIC HUMAN PASSIVE DOODADS FOOD FishPlatter01.mdx", + [2003305] = "World GENERIC HUMAN PASSIVE DOODADS FOOD GoldFruitBowl01.mdx", + [2003306] = "World GENERIC HUMAN PASSIVE DOODADS FOOD Muffin01.mdx", + [2003307] = "World GENERIC HUMAN PASSIVE DOODADS FOOD Pie01.mdx", + [2003308] = "World GENERIC HUMAN PASSIVE DOODADS FOOD RoastBoarPlatter.mdx", + [2003309] = "World GENERIC HUMAN PASSIVE DOODADS FOOD bread01.mdx", + [2003310] = "World GENERIC HUMAN PASSIVE DOODADS Fire UndeadCampfire.mdx", + [2003311] = "World GENERIC HUMAN PASSIVE DOODADS Fire UndeadFireLarge.mdx", + [2003312] = "World GENERIC HUMAN PASSIVE DOODADS Fire UndeadFireSmall.mdx", + [2003313] = "World GENERIC HUMAN PASSIVE DOODADS Flowers FlowersBunch01.mdx", + [2003314] = "World GENERIC HUMAN PASSIVE DOODADS Flowers FlowersBunch02.mdx", + [2003315] = "World GENERIC HUMAN PASSIVE DOODADS Flowers FlowersBunch03.mdx", + [2003316] = "World GENERIC HUMAN PASSIVE DOODADS Flowers FlowersBunch04.mdx", + [2003317] = "World GENERIC HUMAN PASSIVE DOODADS Flowers FlowersBunch05.mdx", + [2003318] = "World GENERIC HUMAN PASSIVE DOODADS Flowers FlowersBunchDead01.mdx", + [2003319] = "World GENERIC HUMAN PASSIVE DOODADS Flowers FlowersBunchDead02.mdx", + [2003320] = "World GENERIC HUMAN PASSIVE DOODADS Flowers FlowersWreath01.mdx", + [2003321] = "World GENERIC HUMAN PASSIVE DOODADS Flowers FlowersWreath02.mdx", + [2003322] = "World GENERIC HUMAN PASSIVE DOODADS Flowers FlowersWreathDead01.mdx", + [2003323] = "World GENERIC HUMAN PASSIVE DOODADS Footlockers DuskwoodFootLocker01.mdx", + [2003324] = "World GENERIC HUMAN PASSIVE DOODADS Fountains PlaguedFountain.mdx", + [2003325] = "World GENERIC HUMAN PASSIVE DOODADS Fountains SnowFountain.mdx", + [2003326] = "World GENERIC HUMAN PASSIVE DOODADS Fountains StormwindFountain01.mdx", + [2003327] = "World GENERIC HUMAN PASSIVE DOODADS Fountains TirisfallFountain.mdx", + [2003328] = "World GENERIC HUMAN PASSIVE DOODADS GLOBES Globe01.mdx", + [2003329] = "World GENERIC HUMAN PASSIVE DOODADS Goblets Goblet02.mdx", + [2003330] = "World GENERIC HUMAN PASSIVE DOODADS GryphonRoost GryphonRoost01.mdx", + [2003331] = "World GENERIC HUMAN PASSIVE DOODADS GunShop GunLongRifle.mdx", + [2003332] = "World GENERIC HUMAN PASSIVE DOODADS GunShop GunShopAmmoBoxBlue.mdx", + [2003333] = "World GENERIC HUMAN PASSIVE DOODADS GunShop GunShopAmmoBoxBlueBlock.mdx", + [2003334] = "World GENERIC HUMAN PASSIVE DOODADS GunShop GunShopAmmoBoxRed.mdx", + [2003335] = "World GENERIC HUMAN PASSIVE DOODADS GunShop GunShopAmmoBoxRedBlock.mdx", + [2003336] = "World GENERIC HUMAN PASSIVE DOODADS GunShop GunShopBomb.mdx", + [2003337] = "World GENERIC HUMAN PASSIVE DOODADS GunShop GunShopDynamite.mdx", + [2003338] = "World GENERIC HUMAN PASSIVE DOODADS GunShop GunShopFireworks01.mdx", + [2003339] = "World GENERIC HUMAN PASSIVE DOODADS GunShop GunShopFireworks02.mdx", + [2003340] = "World GENERIC HUMAN PASSIVE DOODADS GunShop GunShopFireworks03.mdx", + [2003341] = "World GENERIC HUMAN PASSIVE DOODADS GunShop GunShopFireworks04.mdx", + [2003342] = "World GENERIC HUMAN PASSIVE DOODADS GunShop GunShopFireworksBarrel.mdx", + [2003343] = "World GENERIC HUMAN PASSIVE DOODADS GunShop GunShopFireworksBig01.mdx", + [2003344] = "World GENERIC HUMAN PASSIVE DOODADS GunShop GunShopFireworksBig02.mdx", + [2003345] = "World GENERIC HUMAN PASSIVE DOODADS GunShop GunShopGunBarrel.mdx", + [2003346] = "World GENERIC HUMAN PASSIVE DOODADS GunShop GunShopGunStock.mdx", + [2003347] = "World GENERIC HUMAN PASSIVE DOODADS GunShop GunShopMortar.mdx", + [2003348] = "World GENERIC HUMAN PASSIVE DOODADS GunShop GunShopMortarShell.mdx", + [2003349] = "World GENERIC HUMAN PASSIVE DOODADS GunShop GunShopPowderKegOpen.mdx", + [2003350] = "World GENERIC HUMAN PASSIVE DOODADS GunShop GunShopTarget01.mdx", + [2003351] = "World GENERIC HUMAN PASSIVE DOODADS GunShop GunShopTarget02.mdx", + [2003352] = "World GENERIC HUMAN PASSIVE DOODADS GunShop GunShopTarget03.mdx", + [2003353] = "World GENERIC HUMAN PASSIVE DOODADS GunShop GunShopTarget04.mdx", + [2003354] = "World GENERIC HUMAN PASSIVE DOODADS GunShop GunSniperRifle.mdx", + [2003355] = "World GENERIC HUMAN PASSIVE DOODADS GunShop GunTripod.mdx", + [2003356] = "World GENERIC HUMAN PASSIVE DOODADS GypsyWagons StormwindGypsywagon01.mdx", + [2003357] = "World GENERIC HUMAN PASSIVE DOODADS HEARSE MoonBrookHearse.mdx", + [2003358] = "World GENERIC HUMAN PASSIVE DOODADS Hanging Cages GeneralHangingCage01.mdx", + [2003359] = "World GENERIC HUMAN PASSIVE DOODADS HangingLanterns GeneralHangingLantern01.mdx", + [2003360] = "World GENERIC HUMAN PASSIVE DOODADS HangingLanterns GeneralHangingLanternLong.mdx", + [2003361] = "World GENERIC HUMAN PASSIVE DOODADS HayPiles DarkHayPileMedium01.mdx", + [2003362] = "World GENERIC HUMAN PASSIVE DOODADS HayPiles ShadowfangHayPile01.mdx", + [2003363] = "World GENERIC HUMAN PASSIVE DOODADS HayPiles ShadowfangHayPile02.mdx", + [2003364] = "World GENERIC HUMAN PASSIVE DOODADS LAMPS LampPostBroken.mdx", + [2003365] = "World GENERIC HUMAN PASSIVE DOODADS LAMPS PlaguelandsLamp.mdx", + [2003366] = "World GENERIC HUMAN PASSIVE DOODADS LAMPS StormwindCanalLamp01.mdx", + [2003367] = "World GENERIC HUMAN PASSIVE DOODADS LAMPS StormwindStreetlamp01.mdx", + [2003368] = "World GENERIC HUMAN PASSIVE DOODADS LAMPS TirisfallStreetLamp01.mdx", + [2003369] = "World GENERIC HUMAN PASSIVE DOODADS LAMPS WesternPlaguelandsLampost01.mdx", + [2003370] = "World GENERIC HUMAN PASSIVE DOODADS LAMPS WesternPlaguelandsLampost02.mdx", + [2003371] = "World GENERIC HUMAN PASSIVE DOODADS LAMPS WesternPlaguelandsLampostBroken01.mdx", + [2003372] = "World GENERIC HUMAN PASSIVE DOODADS LAMPS WesternPlaguelandsLampostBroken02.mdx", + [2003373] = "World GENERIC HUMAN PASSIVE DOODADS LAMPS WesternPlaguelandsLampostStraight.mdx", + [2003374] = "World GENERIC HUMAN PASSIVE DOODADS LAMPS WesternPlaguelandsLampostStraightOff.mdx", + [2003375] = "World GENERIC HUMAN PASSIVE DOODADS LampPosts DuskwoodLamppost.mdx", + [2003376] = "World GENERIC HUMAN PASSIVE DOODADS LampPosts DuskwoodLamppostBroken.mdx", + [2003377] = "World GENERIC HUMAN PASSIVE DOODADS Lanterns GeneralLantern01.mdx", + [2003378] = "World GENERIC HUMAN PASSIVE DOODADS Lanterns GeneralLantern02.mdx", + [2003379] = "World GENERIC HUMAN PASSIVE DOODADS Lanterns GeneralLantern03.mdx", + [2003380] = "World GENERIC HUMAN PASSIVE DOODADS Lanterns GeneralLantern04.mdx", + [2003381] = "World GENERIC HUMAN PASSIVE DOODADS LogMachines LogMachine02.mdx", + [2003382] = "World GENERIC HUMAN PASSIVE DOODADS LogMachines LogMachine03.mdx", + [2003383] = "World GENERIC HUMAN PASSIVE DOODADS Loom LoomHumanBlue.mdx", + [2003384] = "World GENERIC HUMAN PASSIVE DOODADS Loom LoomHumanWhite.mdx", + [2003385] = "World GENERIC HUMAN PASSIVE DOODADS LumberPiles DeadMineLumberPileSmall.mdx", + [2003386] = "World GENERIC HUMAN PASSIVE DOODADS MEAT BloodyMeat01.mdx", + [2003387] = "World GENERIC HUMAN PASSIVE DOODADS MEAT BloodyMeat02.mdx", + [2003388] = "World GENERIC HUMAN PASSIVE DOODADS MUGS Goldgoblet01.mdx", + [2003389] = "World GENERIC HUMAN PASSIVE DOODADS MUGS Goldgobletfilled01.mdx", + [2003390] = "World GENERIC HUMAN PASSIVE DOODADS MUGS Mug01.mdx", + [2003391] = "World GENERIC HUMAN PASSIVE DOODADS MUGS Mug02.mdx", + [2003392] = "World GENERIC HUMAN PASSIVE DOODADS MUGS MugFoam01.mdx", + [2003393] = "World GENERIC HUMAN PASSIVE DOODADS MUGS Stein01.mdx", + [2003394] = "World GENERIC HUMAN PASSIVE DOODADS MUSEUMSKELETONS DragonSkeletonHanging.mdx", + [2003395] = "World GENERIC HUMAN PASSIVE DOODADS MUSEUMSKELETONS DragonSkullHanging.mdx", + [2003396] = "World GENERIC HUMAN PASSIVE DOODADS MineMachine CaveKoboldMineMachine.mdx", + [2003397] = "World GENERIC HUMAN PASSIVE DOODADS MiningSifters miningsifter01.mdx", + [2003398] = "World GENERIC HUMAN PASSIVE DOODADS MiningSifters miningsifter02.mdx", + [2003399] = "World GENERIC HUMAN PASSIVE DOODADS MiningTroughs miningtroughlarge.mdx", + [2003400] = "World GENERIC HUMAN PASSIVE DOODADS MiningTroughs miningtroughsmall.mdx", + [2003401] = "World GENERIC HUMAN PASSIVE DOODADS Mops mop.mdx", + [2003402] = "World GENERIC HUMAN PASSIVE DOODADS OILDRUMS oildrum01.mdx", + [2003403] = "World GENERIC HUMAN PASSIVE DOODADS OnxiaTrophy AllianceHangingNefarianTrophy.mdx", + [2003404] = "World GENERIC HUMAN PASSIVE DOODADS OnxiaTrophy AllianceHangingOnyxiaTrophy.mdx", + [2003405] = "World GENERIC HUMAN PASSIVE DOODADS Outposts GeneralOutpost01.mdx", + [2003406] = "World GENERIC HUMAN PASSIVE DOODADS Outposts GeneralOutpost02.mdx", + [2003407] = "World GENERIC HUMAN PASSIVE DOODADS Outposts GeneralOutpost03.mdx", + [2003408] = "World GENERIC HUMAN PASSIVE DOODADS Outposts GeneralOutpost04.mdx", + [2003409] = "World GENERIC HUMAN PASSIVE DOODADS Outposts GeneralOutpost05.mdx", + [2003410] = "World GENERIC HUMAN PASSIVE DOODADS Outposts GeneralOutpost06.mdx", + [2003411] = "World GENERIC HUMAN PASSIVE DOODADS Outposts GeneralOutpost07.mdx", + [2003412] = "World GENERIC HUMAN PASSIVE DOODADS PLANTERBOXES StormwindPlanter.mdx", + [2003413] = "World GENERIC HUMAN PASSIVE DOODADS PLANTERBOXES StormwindWindowPlanterA.mdx", + [2003414] = "World GENERIC HUMAN PASSIVE DOODADS PLANTERBOXES StormwindWindowPlanterB.mdx", + [2003415] = "World GENERIC HUMAN PASSIVE DOODADS PLANTERBOXES StormwindWindowPlanterEmpty.mdx", + [2003416] = "World GENERIC HUMAN PASSIVE DOODADS PLANTERBOXES StormwindWindowPlantergrass.mdx", + [2003417] = "World GENERIC HUMAN PASSIVE DOODADS PLANTERBOXES TirisfallPlanter.mdx", + [2003418] = "World GENERIC HUMAN PASSIVE DOODADS PLANTERBOXES TirisfallWindowPlanterA.mdx", + [2003419] = "World GENERIC HUMAN PASSIVE DOODADS PLANTERBOXES TirisfallWindowPlanterB.mdx", + [2003420] = "World GENERIC HUMAN PASSIVE DOODADS PULLEYS ExteriorPulley.mdx", + [2003421] = "World GENERIC HUMAN PASSIVE DOODADS PULLEYS ExteriorPulleyForE3.mdx", + [2003422] = "World GENERIC HUMAN PASSIVE DOODADS PeasantLumber PeasantLumber01.mdx", + [2003423] = "World GENERIC HUMAN PASSIVE DOODADS Pews GeneralChurchPew01.mdx", + [2003424] = "World GENERIC HUMAN PASSIVE DOODADS Plates GeneralDirtyPlate01.mdx", + [2003425] = "World GENERIC HUMAN PASSIVE DOODADS Podiums DuskwoodPodium01.mdx", + [2003426] = "World GENERIC HUMAN PASSIVE DOODADS Posters MissingPoster01.mdx", + [2003427] = "World GENERIC HUMAN PASSIVE DOODADS Posters MissingPoster02.mdx", + [2003428] = "World GENERIC HUMAN PASSIVE DOODADS RUGS GeneralBearSkinRug01.mdx", + [2003429] = "World GENERIC HUMAN PASSIVE DOODADS RUGS KarazahnRugGreen.mdx", + [2003430] = "World GENERIC HUMAN PASSIVE DOODADS RUGS KarazahnRugOrange.mdx", + [2003431] = "World GENERIC HUMAN PASSIVE DOODADS RUGS KarazahnRugPurple.mdx", + [2003432] = "World GENERIC HUMAN PASSIVE DOODADS RUGS KarazahnRugRed.mdx", + [2003433] = "World GENERIC HUMAN PASSIVE DOODADS RUGS StormwindRug01.mdx", + [2003434] = "World GENERIC HUMAN PASSIVE DOODADS RUGS StormwindRug02.mdx", + [2003435] = "World GENERIC HUMAN PASSIVE DOODADS RamRod DeadMineGiantRamRod.mdx", + [2003436] = "World GENERIC HUMAN PASSIVE DOODADS RopeLadders RopeLadder01.mdx", + [2003437] = "World GENERIC HUMAN PASSIVE DOODADS Ropes CaveKoboldRopeCoil.mdx", + [2003438] = "World GENERIC HUMAN PASSIVE DOODADS SACKS PlaguedGrainSack01.mdx", + [2003439] = "World GENERIC HUMAN PASSIVE DOODADS SACKS PlaguedGrainSack02.mdx", + [2003440] = "World GENERIC HUMAN PASSIVE DOODADS SACKS SackHerbsPeacebloom01.mdx", + [2003441] = "World GENERIC HUMAN PASSIVE DOODADS SACKS SackHerbsStack01.mdx", + [2003442] = "World GENERIC HUMAN PASSIVE DOODADS SACKS SackHerbsStack02.mdx", + [2003443] = "World GENERIC HUMAN PASSIVE DOODADS SACKS SackHerbsStranglekelp01.mdx", + [2003444] = "World GENERIC HUMAN PASSIVE DOODADS SPIDEREGGSSACK CaveKoboldSpiderEggsSack.mdx", + [2003445] = "World GENERIC HUMAN PASSIVE DOODADS SPIDEREGGSSACK SpiderEggSack02.mdx", + [2003446] = "World GENERIC HUMAN PASSIVE DOODADS SPIDEREGGSSACK SpiderEggSack03.mdx", + [2003447] = "World GENERIC HUMAN PASSIVE DOODADS SPIDEREGGSSACK SpiderEggSack04.mdx", + [2003448] = "World GENERIC HUMAN PASSIVE DOODADS STONEFENCE GenericFencePost.mdx", + [2003449] = "World GENERIC HUMAN PASSIVE DOODADS STONEFENCE GenericWroughtFence01.mdx", + [2003450] = "World GENERIC HUMAN PASSIVE DOODADS STORMWIND AllianceMapTable.mdx", + [2003451] = "World GENERIC HUMAN PASSIVE DOODADS STORMWIND StormwindDoor.mdx", + [2003452] = "World GENERIC HUMAN PASSIVE DOODADS STORMWIND StormwindNightElfTree.mdx", + [2003453] = "World GENERIC HUMAN PASSIVE DOODADS Sarcophagi Sarcophagus.mdx", + [2003454] = "World GENERIC HUMAN PASSIVE DOODADS Scribestations GeneralScribestation01.mdx", + [2003455] = "World GENERIC HUMAN PASSIVE DOODADS Scrolls ScrollA02.mdx", + [2003456] = "World GENERIC HUMAN PASSIVE DOODADS Scrolls ScrollA03.mdx", + [2003457] = "World GENERIC HUMAN PASSIVE DOODADS Scrolls ScrollB01.mdx", + [2003458] = "World GENERIC HUMAN PASSIVE DOODADS Scrolls ScrollB02.mdx", + [2003459] = "World GENERIC HUMAN PASSIVE DOODADS Scrolls ScrollB03.mdx", + [2003460] = "World GENERIC HUMAN PASSIVE DOODADS Scrolls ScrollMap.mdx", + [2003461] = "World GENERIC HUMAN PASSIVE DOODADS Shack Shack.mdx", + [2003462] = "World GENERIC HUMAN PASSIVE DOODADS ShopCounter DuskwoodShopCounter.mdx", + [2003463] = "World GENERIC HUMAN PASSIVE DOODADS ShopCounter DuskwoodShopCounter02.mdx", + [2003464] = "World GENERIC HUMAN PASSIVE DOODADS SignPosts HumanSignPost01.mdx", + [2003465] = "World GENERIC HUMAN PASSIVE DOODADS SignPosts HumanSignPost02.mdx", + [2003466] = "World GENERIC HUMAN PASSIVE DOODADS SignPosts HumanSignPost03.mdx", + [2003467] = "World GENERIC HUMAN PASSIVE DOODADS SignPosts HumanSignPost04.mdx", + [2003468] = "World GENERIC HUMAN PASSIVE DOODADS SignPosts HumanSignPost05.mdx", + [2003469] = "World GENERIC HUMAN PASSIVE DOODADS SignPosts HumanSignPostPointer01.mdx", + [2003470] = "World GENERIC HUMAN PASSIVE DOODADS SignPosts HumanSignPostPointer02.mdx", + [2003471] = "World GENERIC HUMAN PASSIVE DOODADS SignPosts HumanSignPostPointer03.mdx", + [2003472] = "World GENERIC HUMAN PASSIVE DOODADS SignPosts HumanSignPostPointer04.mdx", + [2003473] = "World GENERIC HUMAN PASSIVE DOODADS SignPosts HumanSignPostPointer05.mdx", + [2003474] = "World GENERIC HUMAN PASSIVE DOODADS SignPosts StoneSignPointer01.mdx", + [2003475] = "World GENERIC HUMAN PASSIVE DOODADS SignPosts StoneSignPost01.mdx", + [2003476] = "World GENERIC HUMAN PASSIVE DOODADS SignPosts WoodSignPointerNice01.mdx", + [2003477] = "World GENERIC HUMAN PASSIVE DOODADS SignPosts WoodSignPointerWorn01.mdx", + [2003478] = "World GENERIC HUMAN PASSIVE DOODADS SignPosts WoodSignPostNice01.mdx", + [2003479] = "World GENERIC HUMAN PASSIVE DOODADS SignPosts WoodSignPostWorn01.mdx", + [2003480] = "World GENERIC HUMAN PASSIVE DOODADS Signs AlchemistsShop01.mdx", + [2003481] = "World GENERIC HUMAN PASSIVE DOODADS Signs ArmorerShop01.mdx", + [2003482] = "World GENERIC HUMAN PASSIVE DOODADS Signs BakerShop01.mdx", + [2003483] = "World GENERIC HUMAN PASSIVE DOODADS Signs Bank01.mdx", + [2003484] = "World GENERIC HUMAN PASSIVE DOODADS Signs ButcherShopSign01.mdx", + [2003485] = "World GENERIC HUMAN PASSIVE DOODADS Signs CaveKoboldDangerSign.mdx", + [2003486] = "World GENERIC HUMAN PASSIVE DOODADS Signs CheeseShop01.mdx", + [2003487] = "World GENERIC HUMAN PASSIVE DOODADS Signs FletcherShop01.mdx", + [2003488] = "World GENERIC HUMAN PASSIVE DOODADS Signs Florist01.mdx", + [2003489] = "World GENERIC HUMAN PASSIVE DOODADS Signs GeneralStore01.mdx", + [2003490] = "World GENERIC HUMAN PASSIVE DOODADS Signs NobleHouse01.mdx", + [2003491] = "World GENERIC HUMAN PASSIVE DOODADS Signs Tailor01.mdx", + [2003492] = "World GENERIC HUMAN PASSIVE DOODADS Signs Tavern01.mdx", + [2003493] = "World GENERIC HUMAN PASSIVE DOODADS Signs VisitorsCenter01.mdx", + [2003494] = "World GENERIC HUMAN PASSIVE DOODADS Signs WIneShopSign01.mdx", + [2003495] = "World GENERIC HUMAN PASSIVE DOODADS Signs WeaponsmithShop01.mdx", + [2003496] = "World GENERIC HUMAN PASSIVE DOODADS SmokeStack SmokeStack.mdx", + [2003497] = "World GENERIC HUMAN PASSIVE DOODADS SpiderEggsGround CaveKoboldSpiderEggsGround.mdx", + [2003498] = "World GENERIC HUMAN PASSIVE DOODADS Statues BustHF01.mdx", + [2003499] = "World GENERIC HUMAN PASSIVE DOODADS Statues BustHF02.mdx", + [2003500] = "World GENERIC HUMAN PASSIVE DOODADS Statues BustHF04.mdx", + [2003501] = "World GENERIC HUMAN PASSIVE DOODADS Statues BustHM01.mdx", + [2003502] = "World GENERIC HUMAN PASSIVE DOODADS Statues BustHM02.mdx", + [2003503] = "World GENERIC HUMAN PASSIVE DOODADS Statues DuskStatue01.mdx", + [2003504] = "World GENERIC HUMAN PASSIVE DOODADS Statues DuskStatue02.mdx", + [2003505] = "World GENERIC HUMAN PASSIVE DOODADS Statues NorthshireAbbeyBust01.mdx", + [2003506] = "World GENERIC HUMAN PASSIVE DOODADS Statues StatueAlleria.mdx", + [2003507] = "World GENERIC HUMAN PASSIVE DOODADS Statues StatueDanath.mdx", + [2003508] = "World GENERIC HUMAN PASSIVE DOODADS Statues StatueKhadgar.mdx", + [2003509] = "World GENERIC HUMAN PASSIVE DOODADS Statues StatueLion.mdx", + [2003510] = "World GENERIC HUMAN PASSIVE DOODADS Statues StatueTuralyon.mdx", + [2003511] = "World GENERIC HUMAN PASSIVE DOODADS Statues UtherStatue.mdx", + [2003512] = "World GENERIC HUMAN PASSIVE DOODADS SteamGauges DeadMineSteamGauge01.mdx", + [2003513] = "World GENERIC HUMAN PASSIVE DOODADS SteamGauges DeadMineSteamGauge02.mdx", + [2003514] = "World GENERIC HUMAN PASSIVE DOODADS SteamGauges DeadMineSteamGauge03.mdx", + [2003515] = "World GENERIC HUMAN PASSIVE DOODADS SteamWhistles DeadMineSteamWhistle.mdx", + [2003516] = "World GENERIC HUMAN PASSIVE DOODADS SteamWhistles DeadMineSteamWhistleOn.mdx", + [2003517] = "World GENERIC HUMAN PASSIVE DOODADS Steam DeadMineSteam01.mdx", + [2003518] = "World GENERIC HUMAN PASSIVE DOODADS Steam DeadMineSteam02.mdx", + [2003519] = "World GENERIC HUMAN PASSIVE DOODADS StonePyres StonePyre01.mdx", + [2003520] = "World GENERIC HUMAN PASSIVE DOODADS Stoves potbellystove.mdx", + [2003521] = "World GENERIC HUMAN PASSIVE DOODADS Stoves potbellystovepipe.mdx", + [2003522] = "World GENERIC HUMAN PASSIVE DOODADS Stoves potbellystovewall.mdx", + [2003523] = "World GENERIC HUMAN PASSIVE DOODADS Tables BloodyTable1.mdx", + [2003524] = "World GENERIC HUMAN PASSIVE DOODADS Tables BloodyTable2.mdx", + [2003525] = "World GENERIC HUMAN PASSIVE DOODADS Tables BloodyTable3.mdx", + [2003526] = "World GENERIC HUMAN PASSIVE DOODADS Tables DuskwoodTable01.mdx", + [2003527] = "World GENERIC HUMAN PASSIVE DOODADS Tables InnTable.mdx", + [2003528] = "World GENERIC HUMAN PASSIVE DOODADS Tables InnTableSmall.mdx", + [2003529] = "World GENERIC HUMAN PASSIVE DOODADS Tables ShadowfangTable01.mdx", + [2003530] = "World GENERIC HUMAN PASSIVE DOODADS Tables ShadowfangTable02.mdx", + [2003531] = "World GENERIC HUMAN PASSIVE DOODADS TortureDevices GeneralIronMaiden01.mdx", + [2003532] = "World GENERIC HUMAN PASSIVE DOODADS TortureDevices GeneralRack01.mdx", + [2003533] = "World GENERIC HUMAN PASSIVE DOODADS TortureDevices GeneralStocks01.mdx", + [2003534] = "World GENERIC HUMAN PASSIVE DOODADS VIALS SmallVials.mdx", + [2003535] = "World GENERIC HUMAN PASSIVE DOODADS VIALS VialsBottles.mdx", + [2003536] = "World GENERIC HUMAN PASSIVE DOODADS ValveSteam DeadMineValveSteam01.mdx", + [2003537] = "World GENERIC HUMAN PASSIVE DOODADS ValveSteam DeadMineValveSteam02.mdx", + [2003538] = "World GENERIC HUMAN PASSIVE DOODADS ValveWaterDrip DeadMineValveWaterDrip.mdx", + [2003539] = "World GENERIC HUMAN PASSIVE DOODADS Valves DeadMineValve.mdx", + [2003540] = "World GENERIC HUMAN PASSIVE DOODADS VendorAwnings StormwindVendorAwning01.mdx", + [2003541] = "World GENERIC HUMAN PASSIVE DOODADS WEAPONS&ARMOR 2SidedPickAxe.mdx", + [2003542] = "World GENERIC HUMAN PASSIVE DOODADS WEAPONS&ARMOR CrimsonWallShield01.mdx", + [2003543] = "World GENERIC HUMAN PASSIVE DOODADS WEAPONS&ARMOR HumanArrow.mdx", + [2003544] = "World GENERIC HUMAN PASSIVE DOODADS WEAPONS&ARMOR HumanArrows.mdx", + [2003545] = "World GENERIC HUMAN PASSIVE DOODADS WEAPONS&ARMOR HumanAxe01.mdx", + [2003546] = "World GENERIC HUMAN PASSIVE DOODADS WEAPONS&ARMOR HumanAxe02.mdx", + [2003547] = "World GENERIC HUMAN PASSIVE DOODADS WEAPONS&ARMOR HumanBow01.mdx", + [2003548] = "World GENERIC HUMAN PASSIVE DOODADS WEAPONS&ARMOR HumanBow02.mdx", + [2003549] = "World GENERIC HUMAN PASSIVE DOODADS WEAPONS&ARMOR HumanHammer01.mdx", + [2003550] = "World GENERIC HUMAN PASSIVE DOODADS WEAPONS&ARMOR HumanHammer02.mdx", + [2003551] = "World GENERIC HUMAN PASSIVE DOODADS WEAPONS&ARMOR HumanMace01.mdx", + [2003552] = "World GENERIC HUMAN PASSIVE DOODADS WEAPONS&ARMOR HumanMace02.mdx", + [2003553] = "World GENERIC HUMAN PASSIVE DOODADS WEAPONS&ARMOR HumanSpear01.mdx", + [2003554] = "World GENERIC HUMAN PASSIVE DOODADS WEAPONS&ARMOR HumanSpear02.mdx", + [2003555] = "World GENERIC HUMAN PASSIVE DOODADS WEAPONS&ARMOR HumanStaff01.mdx", + [2003556] = "World GENERIC HUMAN PASSIVE DOODADS WEAPONS&ARMOR HumanStaff02.mdx", + [2003557] = "World GENERIC HUMAN PASSIVE DOODADS WEAPONS&ARMOR HumanSword01.mdx", + [2003558] = "World GENERIC HUMAN PASSIVE DOODADS WEAPONS&ARMOR HumanSword02.mdx", + [2003559] = "World GENERIC HUMAN PASSIVE DOODADS WEAPONS&ARMOR WallShield03.mdx", + [2003560] = "World GENERIC HUMAN PASSIVE DOODADS WEAPONS&ARMOR WallSword01.mdx", + [2003561] = "World GENERIC HUMAN PASSIVE DOODADS WEAPONS&ARMOR orcArrow.mdx", + [2003562] = "World GENERIC HUMAN PASSIVE DOODADS Walls GreatWall_portcullis.mdx", + [2003563] = "World GENERIC HUMAN PASSIVE DOODADS Wardrobe DuskwoodWardrobe01.mdx", + [2003564] = "World GENERIC HUMAN PASSIVE DOODADS Wardrobe DuskwoodWardrobe02.mdx", + [2003565] = "World GENERIC HUMAN PASSIVE DOODADS WaterDrops DeadMineWaterDrops.mdx", + [2003566] = "World GENERIC HUMAN PASSIVE DOODADS WeaponRacks GeneralWeaponrack01.mdx", + [2003567] = "World GENERIC HUMAN PASSIVE DOODADS WestFallGrainSiloDestroyed01.mdx", + [2003568] = "World GENERIC HUMAN PASSIVE DOODADS WoodenDummies GeneralWoodenDummy02.mdx", + [2003569] = "World GENERIC HUMAN PASSIVE DOODADS WoodenDummies StormWindWoodenDummy01.mdx", + [2003570] = "World GENERIC HUMAN PASSIVE DOODADS WoodenRails Rail_Wooden02.mdx", + [2003571] = "World GENERIC HUMAN PASSIVE DOODADS WoodenStairs WoodenStairs01.mdx", + [2003572] = "World GENERIC HUMAN PASSIVE DOODADS WoodenStairs WoodenStairs02.mdx", + [2003573] = "World GENERIC HUMAN PASSIVE DOODADS WreckedBuildings WreckedBuildingHBase01.mdx", + [2003574] = "World GENERIC HUMAN PASSIVE DOODADS WreckedBuildings WreckedBuildingHBase02.mdx", + [2003575] = "World GENERIC HUMAN PASSIVE DOODADS WreckedBuildings WreckedBuildingHBase03.mdx", + [2003576] = "World GENERIC HUMAN PASSIVE DOODADS WreckedBuildings WreckedBuildingHRedBrick01.mdx", + [2003577] = "World GENERIC HUMAN PASSIVE DOODADS WreckedBuildings WreckedBuildingHWall01.mdx", + [2003578] = "World GENERIC HUMAN PASSIVE DOODADS WreckedBuildings WreckedBuildingHWall02.mdx", + [2003579] = "World GENERIC HUMAN PASSIVE DOODADS firewood FirewoodPile01.mdx", + [2003580] = "World GENERIC HUMAN PASSIVE DOODADS firewood FirewoodPile03.mdx", + [2003581] = "World GENERIC HUMAN PassiveDoodads PrisonCell PrisonCell01.mdx", + [2003582] = "World GENERIC Makura Passive Doodads MakuraShells MakuraShells01.mdx", + [2003583] = "World GENERIC Makura Passive Doodads MakuraShells MakuraShells02.mdx", + [2003584] = "World GENERIC Makura Passive Doodads MakuraShells MakuraShells03.mdx", + [2003585] = "World GENERIC Makura Passive Doodads MakuraShells MakuraShells04.mdx", + [2003586] = "World GENERIC Makura Passive Doodads MakuraShells MakuraShells05.mdx", + [2003587] = "World GENERIC Makura Passive Doodads MakuraShells MakuraShells06.mdx", + [2003588] = "World GENERIC Makura Passive Doodads MakuraShells MakuraShells07.mdx", + [2003589] = "World GENERIC Makura Passive Doodads MakuraShells MakuraShells08.mdx", + [2003590] = "World GENERIC Murloc Passive Doodads Altars MurlocAltar_01.mdx", + [2003591] = "World GENERIC NIGHTELF ActiveDoodads Doors BFD_BrassDoors.mdx", + [2003592] = "World GENERIC NIGHTELF PASSIVE DOODADS BOWLS NightelfBowl.mdx", + [2003593] = "World GENERIC NIGHTELF PASSIVE DOODADS Banners NightElfOwlBanner01.mdx", + [2003594] = "World GENERIC NIGHTELF PASSIVE DOODADS Banners NightElfOwlBanner02.mdx", + [2003595] = "World GENERIC NIGHTELF PASSIVE DOODADS Banners NightElfOwlBanner03.mdx", + [2003596] = "World GENERIC NIGHTELF PASSIVE DOODADS Banners NightElfTreeBanner01.mdx", + [2003597] = "World GENERIC NIGHTELF PASSIVE DOODADS Banners NightElfTreeBanner02.mdx", + [2003598] = "World GENERIC NIGHTELF PASSIVE DOODADS Barrel ElfBarrel01.mdx", + [2003599] = "World GENERIC NIGHTELF PASSIVE DOODADS Beds elfbed01.mdx", + [2003600] = "World GENERIC NIGHTELF PASSIVE DOODADS Beds elfbed02.mdx", + [2003601] = "World GENERIC NIGHTELF PASSIVE DOODADS Beds elfbed03.mdx", + [2003602] = "World GENERIC NIGHTELF PASSIVE DOODADS CANDLES NE_Candle01.mdx", + [2003603] = "World GENERIC NIGHTELF PASSIVE DOODADS CANDLES NE_FloatingCandles.mdx", + [2003604] = "World GENERIC NIGHTELF PASSIVE DOODADS CRATES ElfCrate01.mdx", + [2003605] = "World GENERIC NIGHTELF PASSIVE DOODADS Dressers NE_Dresser01.mdx", + [2003606] = "World GENERIC NIGHTELF PASSIVE DOODADS DruidBeds WailingDruidBed.mdx", + [2003607] = "World GENERIC NIGHTELF PASSIVE DOODADS FOUNTAINS ElvenFountain.mdx", + [2003608] = "World GENERIC NIGHTELF PASSIVE DOODADS Furniture ElvenStoneStool01.mdx", + [2003609] = "World GENERIC NIGHTELF PASSIVE DOODADS Furniture ElvenStoneTable01.mdx", + [2003610] = "World GENERIC NIGHTELF PASSIVE DOODADS Furniture StoneBench01.mdx", + [2003611] = "World GENERIC NIGHTELF PASSIVE DOODADS GardenBenches GardenBench01.mdx", + [2003612] = "World GENERIC NIGHTELF PASSIVE DOODADS GardenBenches GardenBench02.mdx", + [2003613] = "World GENERIC NIGHTELF PASSIVE DOODADS GardenBenches GardenBench03.mdx", + [2003614] = "World GENERIC NIGHTELF PASSIVE DOODADS Gates KalidarMoonGate.mdx", + [2003615] = "World GENERIC NIGHTELF PASSIVE DOODADS Gazibos KalidarGazibo.mdx", + [2003616] = "World GENERIC NIGHTELF PASSIVE DOODADS GlaiveThrower NightElfGlaiveThrowerBlade_Doodad01.mdx", + [2003617] = "World GENERIC NIGHTELF PASSIVE DOODADS GlaiveThrower NightElfGlaiveThrower_Doodad01.mdx", + [2003618] = "World GENERIC NIGHTELF PASSIVE DOODADS HippogryphRoost HippogryphRoost.mdx", + [2003619] = "World GENERIC NIGHTELF PASSIVE DOODADS LAMPS DarnassusStreetLamp01.mdx", + [2003620] = "World GENERIC NIGHTELF PASSIVE DOODADS LAMPS DarnassusStreetLamp02.mdx", + [2003621] = "World GENERIC NIGHTELF PASSIVE DOODADS LAMPS DarnassusWreckedStreetLamp01.mdx", + [2003622] = "World GENERIC NIGHTELF PASSIVE DOODADS LAMPS DarnassusWreckedStreetLamp02.mdx", + [2003623] = "World GENERIC NIGHTELF PASSIVE DOODADS LAMPS KalidarStreetLamp01.mdx", + [2003624] = "World GENERIC NIGHTELF PASSIVE DOODADS LAMPS KalidarStreetLamp02.mdx", + [2003625] = "World GENERIC NIGHTELF PASSIVE DOODADS Lanterns NightElfHangingLantern.mdx", + [2003626] = "World GENERIC NIGHTELF PASSIVE DOODADS Lanterns NightElfLantern02.mdx", + [2003627] = "World GENERIC NIGHTELF PASSIVE DOODADS Lanterns NightelfLantern01.mdx", + [2003628] = "World GENERIC NIGHTELF PASSIVE DOODADS MAGICALIMPLEMENTS NEMagicImplement01.mdx", + [2003629] = "World GENERIC NIGHTELF PASSIVE DOODADS MAGICALIMPLEMENTS NEMagicImplement02.mdx", + [2003630] = "World GENERIC NIGHTELF PASSIVE DOODADS MAGICALIMPLEMENTS NEMagicImplement03.mdx", + [2003631] = "World GENERIC NIGHTELF PASSIVE DOODADS MAGICALIMPLEMENTS NEMagicImplement04.mdx", + [2003632] = "World GENERIC NIGHTELF PASSIVE DOODADS MAGICALIMPLEMENTS NEMagicImplement05.mdx", + [2003633] = "World GENERIC NIGHTELF PASSIVE DOODADS MAGICALIMPLEMENTS NEMagicImplement06.mdx", + [2003634] = "World GENERIC NIGHTELF PASSIVE DOODADS MAGICALIMPLEMENTS NEMagicImplement07.mdx", + [2003635] = "World GENERIC NIGHTELF PASSIVE DOODADS MAGICALIMPLEMENTS NEMagicImplement08.mdx", + [2003636] = "World GENERIC NIGHTELF PASSIVE DOODADS MAGICALIMPLEMENTS NEMagicImplement09.mdx", + [2003637] = "World GENERIC NIGHTELF PASSIVE DOODADS MAGICALIMPLEMENTS NEMagicImplement10.mdx", + [2003638] = "World GENERIC NIGHTELF PASSIVE DOODADS MOONWELLLIGHT MoonWellLight.mdx", + [2003639] = "World GENERIC NIGHTELF PASSIVE DOODADS Pottery ElvenPottery01.mdx", + [2003640] = "World GENERIC NIGHTELF PASSIVE DOODADS Pottery ElvenPottery02.mdx", + [2003641] = "World GENERIC NIGHTELF PASSIVE DOODADS Pottery ElvenPottery03.mdx", + [2003642] = "World GENERIC NIGHTELF PASSIVE DOODADS Pottery ElvenPottery04.mdx", + [2003643] = "World GENERIC NIGHTELF PASSIVE DOODADS PvPWalls AszharaPVP_Walls_01.mdx", + [2003644] = "World GENERIC NIGHTELF PASSIVE DOODADS PvPWalls AszharaPVP_Walls_02.mdx", + [2003645] = "World GENERIC NIGHTELF PASSIVE DOODADS PvPWalls AszharaPVP_Walls_03.mdx", + [2003646] = "World GENERIC NIGHTELF PASSIVE DOODADS RUINS AZRElfRuin01.mdx", + [2003647] = "World GENERIC NIGHTELF PASSIVE DOODADS RUINS AZRElfRuin02.mdx", + [2003648] = "World GENERIC NIGHTELF PASSIVE DOODADS RUINS AZRElfRuin03.mdx", + [2003649] = "World GENERIC NIGHTELF PASSIVE DOODADS RUINS AZRElfRuin04.mdx", + [2003650] = "World GENERIC NIGHTELF PASSIVE DOODADS RUINS AZRElfRuin05.mdx", + [2003651] = "World GENERIC NIGHTELF PASSIVE DOODADS RUINS AZRElfRuin06.mdx", + [2003652] = "World GENERIC NIGHTELF PASSIVE DOODADS RUINS AZRElfRuin07.mdx", + [2003653] = "World GENERIC NIGHTELF PASSIVE DOODADS RUINS AZRElfRuin08.mdx", + [2003654] = "World GENERIC NIGHTELF PASSIVE DOODADS RUINS AZRElfRuin09.mdx", + [2003655] = "World GENERIC NIGHTELF PASSIVE DOODADS RUINS AZRElfRuin10.mdx", + [2003656] = "World GENERIC NIGHTELF PASSIVE DOODADS RUINS NewElfRuin01.mdx", + [2003657] = "World GENERIC NIGHTELF PASSIVE DOODADS RUINS NewElfRuin02.mdx", + [2003658] = "World GENERIC NIGHTELF PASSIVE DOODADS RUINS NewElfRuin03.mdx", + [2003659] = "World GENERIC NIGHTELF PASSIVE DOODADS RUINS NewElfRuin04.mdx", + [2003660] = "World GENERIC NIGHTELF PASSIVE DOODADS RUINS NewElfRuin05.mdx", + [2003661] = "World GENERIC NIGHTELF PASSIVE DOODADS RUINS NewElfRuin06.mdx", + [2003662] = "World GENERIC NIGHTELF PASSIVE DOODADS RUINS NewElfRuin07.mdx", + [2003663] = "World GENERIC NIGHTELF PASSIVE DOODADS RUINS NewElfRuin08.mdx", + [2003664] = "World GENERIC NIGHTELF PASSIVE DOODADS RUINS NewElfRuin09.mdx", + [2003665] = "World GENERIC NIGHTELF PASSIVE DOODADS RUINS NewElfRuin10.mdx", + [2003666] = "World GENERIC NIGHTELF PASSIVE DOODADS RUINS NightElfRuins01.mdx", + [2003667] = "World GENERIC NIGHTELF PASSIVE DOODADS RUINS NightElfRuins02.mdx", + [2003668] = "World GENERIC NIGHTELF PASSIVE DOODADS RUINS NightElfRuins03.mdx", + [2003669] = "World GENERIC NIGHTELF PASSIVE DOODADS RUINS NightElfRuins04.mdx", + [2003670] = "World GENERIC NIGHTELF PASSIVE DOODADS RUINS NightElfRuins05.mdx", + [2003671] = "World GENERIC NIGHTELF PASSIVE DOODADS RUINS NightElfRuins07.mdx", + [2003672] = "World GENERIC NIGHTELF PASSIVE DOODADS STATUES DruidStone.mdx", + [2003673] = "World GENERIC NIGHTELF PASSIVE DOODADS STATUES KalidarWoodStatue01.mdx", + [2003674] = "World GENERIC NIGHTELF PASSIVE DOODADS STATUES StatueAszharaArm.mdx", + [2003675] = "World GENERIC NIGHTELF PASSIVE DOODADS STATUES StatueAszharaFeet.mdx", + [2003676] = "World GENERIC NIGHTELF PASSIVE DOODADS STATUES StatueAszharaHead.mdx", + [2003677] = "World GENERIC NIGHTELF PASSIVE DOODADS STATUES StatueNEPriestess.mdx", + [2003678] = "World GENERIC NIGHTELF PASSIVE DOODADS STATUES WoodWreckedStatue02.mdx", + [2003679] = "World GENERIC NIGHTELF PASSIVE DOODADS Screens NE_Screen01.mdx", + [2003680] = "World GENERIC NIGHTELF PASSIVE DOODADS SignPosts NightElfSignPost01.mdx", + [2003681] = "World GENERIC NIGHTELF PASSIVE DOODADS SignPosts NightElfSignPost02.mdx", + [2003682] = "World GENERIC NIGHTELF PASSIVE DOODADS SignPosts NightElfSignPostPointer01.mdx", + [2003683] = "World GENERIC NIGHTELF PASSIVE DOODADS SignPosts NightElfSignPostPointer02.mdx", + [2003684] = "World GENERIC NIGHTELF PASSIVE DOODADS Signs NightElfShopSignBase01.mdx", + [2003685] = "World GENERIC NIGHTELF PASSIVE DOODADS Signs NightElfSign_Alchemist.mdx", + [2003686] = "World GENERIC NIGHTELF PASSIVE DOODADS Signs NightElfSign_Armory.mdx", + [2003687] = "World GENERIC NIGHTELF PASSIVE DOODADS Signs NightElfSign_Axes.mdx", + [2003688] = "World GENERIC NIGHTELF PASSIVE DOODADS Signs NightElfSign_Bags.mdx", + [2003689] = "World GENERIC NIGHTELF PASSIVE DOODADS Signs NightElfSign_Baker.mdx", + [2003690] = "World GENERIC NIGHTELF PASSIVE DOODADS Signs NightElfSign_Bank.mdx", + [2003691] = "World GENERIC NIGHTELF PASSIVE DOODADS Signs NightElfSign_Blacksmith.mdx", + [2003692] = "World GENERIC NIGHTELF PASSIVE DOODADS Signs NightElfSign_Bows.mdx", + [2003693] = "World GENERIC NIGHTELF PASSIVE DOODADS Signs NightElfSign_BreadShop.mdx", + [2003694] = "World GENERIC NIGHTELF PASSIVE DOODADS Signs NightElfSign_Cartography.mdx", + [2003695] = "World GENERIC NIGHTELF PASSIVE DOODADS Signs NightElfSign_ClothArmor.mdx", + [2003696] = "World GENERIC NIGHTELF PASSIVE DOODADS Signs NightElfSign_Cooking.mdx", + [2003697] = "World GENERIC NIGHTELF PASSIVE DOODADS Signs NightElfSign_Daggers.mdx", + [2003698] = "World GENERIC NIGHTELF PASSIVE DOODADS Signs NightElfSign_Drinks.mdx", + [2003699] = "World GENERIC NIGHTELF PASSIVE DOODADS Signs NightElfSign_Enchanting.mdx", + [2003700] = "World GENERIC NIGHTELF PASSIVE DOODADS Signs NightElfSign_Engineering.mdx", + [2003701] = "World GENERIC NIGHTELF PASSIVE DOODADS Signs NightElfSign_FirstAid.mdx", + [2003702] = "World GENERIC NIGHTELF PASSIVE DOODADS Signs NightElfSign_Fishing.mdx", + [2003703] = "World GENERIC NIGHTELF PASSIVE DOODADS Signs NightElfSign_Fletcher.mdx", + [2003704] = "World GENERIC NIGHTELF PASSIVE DOODADS Signs NightElfSign_Florist.mdx", + [2003705] = "World GENERIC NIGHTELF PASSIVE DOODADS Signs NightElfSign_General.mdx", + [2003706] = "World GENERIC NIGHTELF PASSIVE DOODADS Signs NightElfSign_Herbalist.mdx", + [2003707] = "World GENERIC NIGHTELF PASSIVE DOODADS Signs NightElfSign_Hippogryph.mdx", + [2003708] = "World GENERIC NIGHTELF PASSIVE DOODADS Signs NightElfSign_Inscribing.mdx", + [2003709] = "World GENERIC NIGHTELF PASSIVE DOODADS Signs NightElfSign_LeatherArmor.mdx", + [2003710] = "World GENERIC NIGHTELF PASSIVE DOODADS Signs NightElfSign_Lockpicking.mdx", + [2003711] = "World GENERIC NIGHTELF PASSIVE DOODADS Signs NightElfSign_Maces.mdx", + [2003712] = "World GENERIC NIGHTELF PASSIVE DOODADS Signs NightElfSign_MagicShop.mdx", + [2003713] = "World GENERIC NIGHTELF PASSIVE DOODADS Signs NightElfSign_MailArmor.mdx", + [2003714] = "World GENERIC NIGHTELF PASSIVE DOODADS Signs NightElfSign_MeatShop.mdx", + [2003715] = "World GENERIC NIGHTELF PASSIVE DOODADS Signs NightElfSign_Mining.mdx", + [2003716] = "World GENERIC NIGHTELF PASSIVE DOODADS Signs NightElfSign_NobleHouse.mdx", + [2003717] = "World GENERIC NIGHTELF PASSIVE DOODADS Signs NightElfSign_Poisons.mdx", + [2003718] = "World GENERIC NIGHTELF PASSIVE DOODADS Signs NightElfSign_Shields.mdx", + [2003719] = "World GENERIC NIGHTELF PASSIVE DOODADS Signs NightElfSign_Staves.mdx", + [2003720] = "World GENERIC NIGHTELF PASSIVE DOODADS Signs NightElfSign_Swords.mdx", + [2003721] = "World GENERIC NIGHTELF PASSIVE DOODADS Signs NightElfSign_Tabard.mdx", + [2003722] = "World GENERIC NIGHTELF PASSIVE DOODADS Signs NightElfSign_Tailor.mdx", + [2003723] = "World GENERIC NIGHTELF PASSIVE DOODADS Signs NightElfSign_Tavern.mdx", + [2003724] = "World GENERIC NIGHTELF PASSIVE DOODADS Signs NightElfSign_Weaponsmith.mdx", + [2003725] = "World GENERIC NIGHTELF PASSIVE DOODADS Signs NightElfSign_Welcome.mdx", + [2003726] = "World GENERIC NIGHTELF PASSIVE DOODADS Signs NightElfSign_Wine.mdx", + [2003727] = "World GENERIC NIGHTELF PASSIVE DOODADS Statue KalidarWoodStatue02.mdx", + [2003728] = "World GENERIC NIGHTELF PASSIVE DOODADS SteppingStones SteppingStone01.mdx", + [2003729] = "World GENERIC NIGHTELF PASSIVE DOODADS SteppingStones SteppingStone02.mdx", + [2003730] = "World GENERIC NIGHTELF PASSIVE DOODADS StoneRunes KalidarStoneRune01.mdx", + [2003731] = "World GENERIC NIGHTELF PASSIVE DOODADS StoneRunes KalidarStoneRune02.mdx", + [2003732] = "World GENERIC NIGHTELF PASSIVE DOODADS StoneRunes KalidarStoneRune03.mdx", + [2003733] = "World GENERIC NIGHTELF PASSIVE DOODADS Tables ElvenWoodenTable01.mdx", + [2003734] = "World GENERIC NIGHTELF PASSIVE DOODADS TaxiFlags TaxiFlagNightElf.mdx", + [2003735] = "World GENERIC NIGHTELF PASSIVE DOODADS TeleportTree TeleportTree.mdx", + [2003736] = "World GENERIC NIGHTELF PASSIVE DOODADS Totems NightElfWarningTotem_01.mdx", + [2003737] = "World GENERIC NIGHTELF PASSIVE DOODADS Totems NightElfWarningTotem_02.mdx", + [2003738] = "World GENERIC NIGHTELF PASSIVE DOODADS Totems NightElfWarningTotem_03.mdx", + [2003739] = "World GENERIC NIGHTELF PASSIVE DOODADS Wagons NightElfWagon.mdx", + [2003740] = "World GENERIC NIGHTELF PASSIVE DOODADS WallHangings elfwallhanging01.mdx", + [2003741] = "World GENERIC NIGHTELF PASSIVE DOODADS WallHangings elfwallhanging02.mdx", + [2003742] = "World GENERIC NIGHTELF PASSIVE DOODADS WallHangings elfwallhanging03.mdx", + [2003743] = "World GENERIC NIGHTELF PASSIVE DOODADS WallHangings elfwallhanging04.mdx", + [2003744] = "World GENERIC NIGHTELF PASSIVE DOODADS WallHangings elfwallhanging05.mdx", + [2003745] = "World GENERIC NIGHTELF PASSIVE DOODADS WallHangings elfwallhanging06.mdx", + [2003746] = "World GENERIC NIGHTELF PASSIVE DOODADS WallHangings elfwallhanging07.mdx", + [2003747] = "World GENERIC NIGHTELF PASSIVE DOODADS WallHangings elfwallhanging08.mdx", + [2003748] = "World GENERIC NIGHTELF PASSIVE DOODADS WallHangings elfwallhanging09.mdx", + [2003749] = "World GENERIC NIGHTELF PASSIVE DOODADS WallHangings elfwallhanging10.mdx", + [2003750] = "World GENERIC NIGHTELF PASSIVE DOODADS WallHangings elfwallhanging11.mdx", + [2003751] = "World GENERIC NIGHTELF PASSIVE DOODADS WallHangings elfwallhanging12.mdx", + [2003752] = "World GENERIC OGRE ActiveDoodads OgreHead GlowingOgreHead.mdx", + [2003753] = "World GENERIC OGRE ActiveDoodads OgreHead PikeForked.mdx", + [2003754] = "World GENERIC OGRE PASSIVE DOODADS OGREMEATCHAINS OgreMeatChain01.mdx", + [2003755] = "World GENERIC OGRE PASSIVE DOODADS OGREMEATCHAINS OgreMeatChain02.mdx", + [2003756] = "World GENERIC OGRE PASSIVE DOODADS OGREMEATCHAINS OgreMeatChain03.mdx", + [2003757] = "World GENERIC OGRE PASSIVE DOODADS OGREMEATCHAINS OgreMeatChain04.mdx", + [2003758] = "World GENERIC OGRE PASSIVE DOODADS OgreBackpacks OgreBackpack01.mdx", + [2003759] = "World GENERIC OGRE PASSIVE DOODADS OgreBackpacks OgreBackpack02.mdx", + [2003760] = "World GENERIC OGRE PASSIVE DOODADS OgreMoundRocks BrogreMoundRock01.mdx", + [2003761] = "World GENERIC OGRE PASSIVE DOODADS OgreMoundRocks BrogreMoundRock02.mdx", + [2003762] = "World GENERIC OGRE PASSIVE DOODADS OgreMoundRocks BrogreMoundRock03.mdx", + [2003763] = "World GENERIC OGRE PASSIVE DOODADS OgreMoundRocks BrogreMoundRock04.mdx", + [2003764] = "World GENERIC OGRE PASSIVE DOODADS OgreMoundRocks BrogreMoundRock05.mdx", + [2003765] = "World GENERIC OGRE PASSIVE DOODADS OgreMoundRocks BrogreMoundRock06.mdx", + [2003766] = "World GENERIC OGRE PASSIVE DOODADS OgreMoundRocks GrogreMoundRock01.mdx", + [2003767] = "World GENERIC OGRE PASSIVE DOODADS OgreMoundRocks GrogreMoundRock02.mdx", + [2003768] = "World GENERIC OGRE PASSIVE DOODADS OgreMoundRocks GrogreMoundRock03.mdx", + [2003769] = "World GENERIC OGRE PASSIVE DOODADS OgreMoundRocks GrogreMoundRock04.mdx", + [2003770] = "World GENERIC OGRE PASSIVE DOODADS OgreMoundRocks GrogreMoundRock05.mdx", + [2003771] = "World GENERIC OGRE PASSIVE DOODADS OgreMoundRocks GrogreMoundRock06.mdx", + [2003772] = "World GENERIC OGRE PASSIVE DOODADS OgreMoundRocks OgreMoundRock01.mdx", + [2003773] = "World GENERIC OGRE PASSIVE DOODADS OgreMoundRocks OgreMoundRock02.mdx", + [2003774] = "World GENERIC OGRE PASSIVE DOODADS OgreMoundRocks OgreMoundRock03.mdx", + [2003775] = "World GENERIC OGRE PASSIVE DOODADS OgreMoundRocks OgreMoundRock04.mdx", + [2003776] = "World GENERIC OGRE PASSIVE DOODADS OgreMoundRocks OgreMoundRock05.mdx", + [2003777] = "World GENERIC OGRE PASSIVE DOODADS OgreMoundRocks OgreMoundRock06.mdx", + [2003778] = "World GENERIC OGRE PASSIVE DOODADS OgreMoundRocks SnogreMoundRock01.mdx", + [2003779] = "World GENERIC OGRE PASSIVE DOODADS OgreMoundRocks SnogreMoundRock02.mdx", + [2003780] = "World GENERIC OGRE PASSIVE DOODADS OgreMoundRocks SnogreMoundRock03.mdx", + [2003781] = "World GENERIC OGRE PASSIVE DOODADS OgreMoundRocks SnogreMoundRock04.mdx", + [2003782] = "World GENERIC OGRE PASSIVE DOODADS OgreMoundRocks SnogreMoundRock05.mdx", + [2003783] = "World GENERIC OGRE PASSIVE DOODADS OgreMoundRocks SnogreMoundRock06.mdx", + [2003784] = "World GENERIC OGRE PASSIVE DOODADS OgreMoundVent OgreSmokeVent01.mdx", + [2003785] = "World GENERIC OGRE PASSIVE DOODADS OgreThrone OgreThrone.mdx", + [2003786] = "World GENERIC OGRE PASSIVE DOODADS POODAD Poodad01.mdx", + [2003787] = "World GENERIC OGRE PASSIVE DOODADS TORCHES OgreWallTorch.mdx", + [2003788] = "World GENERIC OGRE PASSIVE DOODADS TORCHES OgreWallTorchBlue.mdx", + [2003789] = "World GENERIC OGRE PASSIVE DOODADS TORCHES OgreWallTorchGreen.mdx", + [2003790] = "World GENERIC OGRE PASSIVE DOODADS TORCHES OgreWallTorchRed.mdx", + [2003791] = "World GENERIC OGRE PASSIVE DOODADS TORCHES OgreWallTorchpurple.mdx", + [2003792] = "World GENERIC ORC PASSIVE DOODADS ALTAROFSTORMSSTATUES Altarofstormsstatue.mdx", + [2003793] = "World GENERIC ORC PASSIVE DOODADS AnimalSkulls Boarskull.mdx", + [2003794] = "World GENERIC ORC PASSIVE DOODADS AnimalSkulls CarnosaurSkull.mdx", + [2003795] = "World GENERIC ORC PASSIVE DOODADS AnimalSkulls TallStriderSkull.mdx", + [2003796] = "World GENERIC ORC PASSIVE DOODADS AnimalSkulls TigerSkull.mdx", + [2003797] = "World GENERIC ORC PASSIVE DOODADS BANNERS ClanBanner.mdx", + [2003798] = "World GENERIC ORC PASSIVE DOODADS BANNERS ClanBanner01.mdx", + [2003799] = "World GENERIC ORC PASSIVE DOODADS BANNERS ClanBanner02.mdx", + [2003800] = "World GENERIC ORC PASSIVE DOODADS BANNERS ClanBanner03.mdx", + [2003801] = "World GENERIC ORC PASSIVE DOODADS BANNERS ClanBanner04.mdx", + [2003802] = "World GENERIC ORC PASSIVE DOODADS BANNERS ClanBanner05.mdx", + [2003803] = "World GENERIC ORC PASSIVE DOODADS BANNERS ClanBanner06.mdx", + [2003804] = "World GENERIC ORC PASSIVE DOODADS BANNERS ClanBanner07Warsong.mdx", + [2003805] = "World GENERIC ORC PASSIVE DOODADS BANNERS FelOrcBanner01.mdx", + [2003806] = "World GENERIC ORC PASSIVE DOODADS BANNERS OgreBannerBoar.mdx", + [2003807] = "World GENERIC ORC PASSIVE DOODADS BANNERS OgreBannerSnow.mdx", + [2003808] = "World GENERIC ORC PASSIVE DOODADS BANNERS OgreBannerTiger.mdx", + [2003809] = "World GENERIC ORC PASSIVE DOODADS BANNERS OrcBanner1.mdx", + [2003810] = "World GENERIC ORC PASSIVE DOODADS BANNERS OrcBanner2.mdx", + [2003811] = "World GENERIC ORC PASSIVE DOODADS BANNERS OrcBanner3.mdx", + [2003812] = "World GENERIC ORC PASSIVE DOODADS BARRELSANDCRATES OrcBarrel03.mdx", + [2003813] = "World GENERIC ORC PASSIVE DOODADS BARRELSANDCRATES OrcBarrel04.mdx", + [2003814] = "World GENERIC ORC PASSIVE DOODADS BARRELSANDCRATES OrcCrate01.mdx", + [2003815] = "World GENERIC ORC PASSIVE DOODADS BARRELSANDCRATES OrcCrate02.mdx", + [2003816] = "World GENERIC ORC PASSIVE DOODADS BARRELSANDCRATES OrcCrate03.mdx", + [2003817] = "World GENERIC ORC PASSIVE DOODADS BARRELSANDCRATES OrcCrate06.mdx", + [2003818] = "World GENERIC ORC PASSIVE DOODADS BARRELSANDCRATES OrcCrate07.mdx", + [2003819] = "World GENERIC ORC PASSIVE DOODADS BARRELSANDCRATES OrcCrate08.mdx", + [2003820] = "World GENERIC ORC PASSIVE DOODADS BARRELSANDCRATES OrcCrate09.mdx", + [2003821] = "World GENERIC ORC PASSIVE DOODADS BARRELSANDCRATES OrcCrate10.mdx", + [2003822] = "World GENERIC ORC PASSIVE DOODADS BARRELSANDCRATES OrcCrateBroken01.mdx", + [2003823] = "World GENERIC ORC PASSIVE DOODADS BARRELSANDCRATES OrcCrateBroken02.mdx", + [2003824] = "World GENERIC ORC PASSIVE DOODADS BARRELSANDCRATES OrcCrateBroken03.mdx", + [2003825] = "World GENERIC ORC PASSIVE DOODADS BARRELSANDCRATES Orcbarrel01.mdx", + [2003826] = "World GENERIC ORC PASSIVE DOODADS BONES WailingCavernsHangingBones01.mdx", + [2003827] = "World GENERIC ORC PASSIVE DOODADS BONES WailingCavernsHangingBones02.mdx", + [2003828] = "World GENERIC ORC PASSIVE DOODADS BONES WailingCavernsHangingBones03.mdx", + [2003829] = "World GENERIC ORC PASSIVE DOODADS BOTTLES OrcBottle01.mdx", + [2003830] = "World GENERIC ORC PASSIVE DOODADS Blankets MarketBlanket01.mdx", + [2003831] = "World GENERIC ORC PASSIVE DOODADS Bongs HookahBong01.mdx", + [2003832] = "World GENERIC ORC PASSIVE DOODADS Bowls BowlWood01.mdx", + [2003833] = "World GENERIC ORC PASSIVE DOODADS Bowls BowlWood02.mdx", + [2003834] = "World GENERIC ORC PASSIVE DOODADS Braziers Blackrockorccampfire.mdx", + [2003835] = "World GENERIC ORC PASSIVE DOODADS Braziers MediumBrazier01.mdx", + [2003836] = "World GENERIC ORC PASSIVE DOODADS Braziers MediumBrazierNoOmni01.mdx", + [2003837] = "World GENERIC ORC PASSIVE DOODADS Braziers MediumBrazierPurple01.mdx", + [2003838] = "World GENERIC ORC PASSIVE DOODADS Braziers OrcBrazier_CampFire01.mdx", + [2003839] = "World GENERIC ORC PASSIVE DOODADS Braziers SmallBrazier01.mdx", + [2003840] = "World GENERIC ORC PASSIVE DOODADS Braziers SmallBrazierNoOmni01.mdx", + [2003841] = "World GENERIC ORC PASSIVE DOODADS Braziers SmallBrazierPurple01.mdx", + [2003842] = "World GENERIC ORC PASSIVE DOODADS Braziers SmallBrazierPurpleHanging.mdx", + [2003843] = "World GENERIC ORC PASSIVE DOODADS Braziers TallBrazier01.mdx", + [2003844] = "World GENERIC ORC PASSIVE DOODADS Braziers TallBrazierNoOmni01.mdx", + [2003845] = "World GENERIC ORC PASSIVE DOODADS BurntOutposts BurntOutpost01.mdx", + [2003846] = "World GENERIC ORC PASSIVE DOODADS BurntOutposts BurntOutpost02.mdx", + [2003847] = "World GENERIC ORC PASSIVE DOODADS BurntOutposts BurntOutpost03.mdx", + [2003848] = "World GENERIC ORC PASSIVE DOODADS BurntOutposts BurntOutpost04.mdx", + [2003849] = "World GENERIC ORC PASSIVE DOODADS BurntOutposts BurntOutpost05.mdx", + [2003850] = "World GENERIC ORC PASSIVE DOODADS BurntOutposts BurntOutpost06.mdx", + [2003851] = "World GENERIC ORC PASSIVE DOODADS BurntOutposts BurntOutpost07.mdx", + [2003852] = "World GENERIC ORC PASSIVE DOODADS FIREPITS LargeFirePit01.mdx", + [2003853] = "World GENERIC ORC PASSIVE DOODADS FIREPITS SmallFirePit01.mdx", + [2003854] = "World GENERIC ORC PASSIVE DOODADS FeedingTroughs FeedTroph01.mdx", + [2003855] = "World GENERIC ORC PASSIVE DOODADS Flags OrcFlappingFlag01.mdx", + [2003856] = "World GENERIC ORC PASSIVE DOODADS Geyser SteamGeyser.mdx", + [2003857] = "World GENERIC ORC PASSIVE DOODADS HANGINGBONES OrcHangingBones01.mdx", + [2003858] = "World GENERIC ORC PASSIVE DOODADS HANGINGBONES OrcHangingBones02.mdx", + [2003859] = "World GENERIC ORC PASSIVE DOODADS HANGINGBONES OrcHangingBones03.mdx", + [2003860] = "World GENERIC ORC PASSIVE DOODADS HANGINGBONES OrcHangingBones04.mdx", + [2003861] = "World GENERIC ORC PASSIVE DOODADS Hammocks Hammock01.mdx", + [2003862] = "World GENERIC ORC PASSIVE DOODADS Hammocks Hammock02.mdx", + [2003863] = "World GENERIC ORC PASSIVE DOODADS Hammocks Hammock03.mdx", + [2003864] = "World GENERIC ORC PASSIVE DOODADS Hammocks Hammock04.mdx", + [2003865] = "World GENERIC ORC PASSIVE DOODADS HordeBanners HordeBanner01.mdx", + [2003866] = "World GENERIC ORC PASSIVE DOODADS HordeBanners HordeBanner02.mdx", + [2003867] = "World GENERIC ORC PASSIVE DOODADS HordeBanners HordeBanner03.mdx", + [2003868] = "World GENERIC ORC PASSIVE DOODADS HordeBanners HordeBanner04.mdx", + [2003869] = "World GENERIC ORC PASSIVE DOODADS JARS JarOrc01.mdx", + [2003870] = "World GENERIC ORC PASSIVE DOODADS JARS JarOrc02.mdx", + [2003871] = "World GENERIC ORC PASSIVE DOODADS JARS JarOrc03.mdx", + [2003872] = "World GENERIC ORC PASSIVE DOODADS JARS JarOrc04.mdx", + [2003873] = "World GENERIC ORC PASSIVE DOODADS JARS JarOrc05.mdx", + [2003874] = "World GENERIC ORC PASSIVE DOODADS JARS JarOrc06.mdx", + [2003875] = "World GENERIC ORC PASSIVE DOODADS Jugs OrcJug01.mdx", + [2003876] = "World GENERIC ORC PASSIVE DOODADS Jugs OrcJug02.mdx", + [2003877] = "World GENERIC ORC PASSIVE DOODADS KODOWAGON Kodowagon.mdx", + [2003878] = "World GENERIC ORC PASSIVE DOODADS LampPosts OrcBrazierLamppost01.mdx", + [2003879] = "World GENERIC ORC PASSIVE DOODADS LampPosts OrcBrazierStreetLamp.mdx", + [2003880] = "World GENERIC ORC PASSIVE DOODADS LampPosts OrcBrazier_LightpostBarrens.mdx", + [2003881] = "World GENERIC ORC PASSIVE DOODADS Lanterns OrcHangingLantern.mdx", + [2003882] = "World GENERIC ORC PASSIVE DOODADS MeatRacks RawMeatRack01.mdx", + [2003883] = "World GENERIC ORC PASSIVE DOODADS MeatRacks SmokedMeatRack01.mdx", + [2003884] = "World GENERIC ORC PASSIVE DOODADS Mugs OrcMug01.mdx", + [2003885] = "World GENERIC ORC PASSIVE DOODADS OrcFence OrcFence.mdx", + [2003886] = "World GENERIC ORC PASSIVE DOODADS OrcFence OrcFencePost.mdx", + [2003887] = "World GENERIC ORC PASSIVE DOODADS Pinata QuillBoarPinata.mdx", + [2003888] = "World GENERIC ORC PASSIVE DOODADS Pitchers OrcPitcher01.mdx", + [2003889] = "World GENERIC ORC PASSIVE DOODADS Plants wailingFern06.mdx", + [2003890] = "World GENERIC ORC PASSIVE DOODADS Plants wailingPlant01.mdx", + [2003891] = "World GENERIC ORC PASSIVE DOODADS Plants wailingPlant02.mdx", + [2003892] = "World GENERIC ORC PASSIVE DOODADS Plants wailingPlantPurple01.mdx", + [2003893] = "World GENERIC ORC PASSIVE DOODADS RUGS CentaurRug01.mdx", + [2003894] = "World GENERIC ORC PASSIVE DOODADS RUGS FurRug01.mdx", + [2003895] = "World GENERIC ORC PASSIVE DOODADS RUGS KotoSkinRug01.mdx", + [2003896] = "World GENERIC ORC PASSIVE DOODADS RaptorEggs WailingCavernsRaptorEggs01.mdx", + [2003897] = "World GENERIC ORC PASSIVE DOODADS RaptorEggs WailingCavernsRaptorEggs02.mdx", + [2003898] = "World GENERIC ORC PASSIVE DOODADS RaptorEggs WailingCavernsRaptorEggs03.mdx", + [2003899] = "World GENERIC ORC PASSIVE DOODADS RaptorEggs WailingCavernsRaptorEggs04.mdx", + [2003900] = "World GENERIC ORC PASSIVE DOODADS RaptorNests WailingCavernsRaptorNest01.mdx", + [2003901] = "World GENERIC ORC PASSIVE DOODADS RaptorNests WailingCavernsRaptorNest02.mdx", + [2003902] = "World GENERIC ORC PASSIVE DOODADS Rickshaw Rickshaw.mdx", + [2003903] = "World GENERIC ORC PASSIVE DOODADS Roasts RoastBoar.mdx", + [2003904] = "World GENERIC ORC PASSIVE DOODADS Roasts RoastTallStrider01.mdx", + [2003905] = "World GENERIC ORC PASSIVE DOODADS Roasts RoastTallStrider02.mdx", + [2003906] = "World GENERIC ORC PASSIVE DOODADS Saddles DireWolfSaddle.mdx", + [2003907] = "World GENERIC ORC PASSIVE DOODADS Saddles TallStriderSaddle.mdx", + [2003908] = "World GENERIC ORC PASSIVE DOODADS Saddles WyvernSaddle.mdx", + [2003909] = "World GENERIC ORC PASSIVE DOODADS Shields OrcShield01.mdx", + [2003910] = "World GENERIC ORC PASSIVE DOODADS Shields OrcShield02.mdx", + [2003911] = "World GENERIC ORC PASSIVE DOODADS Shields OrcShield03.mdx", + [2003912] = "World GENERIC ORC PASSIVE DOODADS SignPosts OrcSignPost01.mdx", + [2003913] = "World GENERIC ORC PASSIVE DOODADS SignPosts OrcSignPost02.mdx", + [2003914] = "World GENERIC ORC PASSIVE DOODADS SignPosts OrcSignPostPointer01.mdx", + [2003915] = "World GENERIC ORC PASSIVE DOODADS SignPosts OrcSignPostPointer02.mdx", + [2003916] = "World GENERIC ORC PASSIVE DOODADS SignPosts orcsignpost03.mdx", + [2003917] = "World GENERIC ORC PASSIVE DOODADS SignPosts orcsignpostpointer03.mdx", + [2003918] = "World GENERIC ORC PASSIVE DOODADS Signs OrcSign_Alchemist.mdx", + [2003919] = "World GENERIC ORC PASSIVE DOODADS Signs OrcSign_Armory.mdx", + [2003920] = "World GENERIC ORC PASSIVE DOODADS Signs OrcSign_Axes.mdx", + [2003921] = "World GENERIC ORC PASSIVE DOODADS Signs OrcSign_Bags.mdx", + [2003922] = "World GENERIC ORC PASSIVE DOODADS Signs OrcSign_Bank.mdx", + [2003923] = "World GENERIC ORC PASSIVE DOODADS Signs OrcSign_Blacksmith.mdx", + [2003924] = "World GENERIC ORC PASSIVE DOODADS Signs OrcSign_Bows.mdx", + [2003925] = "World GENERIC ORC PASSIVE DOODADS Signs OrcSign_Bread.mdx", + [2003926] = "World GENERIC ORC PASSIVE DOODADS Signs OrcSign_Cartography.mdx", + [2003927] = "World GENERIC ORC PASSIVE DOODADS Signs OrcSign_Cheese.mdx", + [2003928] = "World GENERIC ORC PASSIVE DOODADS Signs OrcSign_ClothArmor.mdx", + [2003929] = "World GENERIC ORC PASSIVE DOODADS Signs OrcSign_Cooking.mdx", + [2003930] = "World GENERIC ORC PASSIVE DOODADS Signs OrcSign_Daggers.mdx", + [2003931] = "World GENERIC ORC PASSIVE DOODADS Signs OrcSign_Drinks.mdx", + [2003932] = "World GENERIC ORC PASSIVE DOODADS Signs OrcSign_Enchanting.mdx", + [2003933] = "World GENERIC ORC PASSIVE DOODADS Signs OrcSign_Engineering.mdx", + [2003934] = "World GENERIC ORC PASSIVE DOODADS Signs OrcSign_FirstAid.mdx", + [2003935] = "World GENERIC ORC PASSIVE DOODADS Signs OrcSign_Fishing.mdx", + [2003936] = "World GENERIC ORC PASSIVE DOODADS Signs OrcSign_Fletcher.mdx", + [2003937] = "World GENERIC ORC PASSIVE DOODADS Signs OrcSign_Food.mdx", + [2003938] = "World GENERIC ORC PASSIVE DOODADS Signs OrcSign_General.mdx", + [2003939] = "World GENERIC ORC PASSIVE DOODADS Signs OrcSign_Guns.mdx", + [2003940] = "World GENERIC ORC PASSIVE DOODADS Signs OrcSign_Herbalist.mdx", + [2003941] = "World GENERIC ORC PASSIVE DOODADS Signs OrcSign_Inscribing.mdx", + [2003942] = "World GENERIC ORC PASSIVE DOODADS Signs OrcSign_LeatherArmor.mdx", + [2003943] = "World GENERIC ORC PASSIVE DOODADS Signs OrcSign_Lockpicking.mdx", + [2003944] = "World GENERIC ORC PASSIVE DOODADS Signs OrcSign_Maces.mdx", + [2003945] = "World GENERIC ORC PASSIVE DOODADS Signs OrcSign_MagicShop.mdx", + [2003946] = "World GENERIC ORC PASSIVE DOODADS Signs OrcSign_MailArmor.mdx", + [2003947] = "World GENERIC ORC PASSIVE DOODADS Signs OrcSign_Meat.mdx", + [2003948] = "World GENERIC ORC PASSIVE DOODADS Signs OrcSign_Mining.mdx", + [2003949] = "World GENERIC ORC PASSIVE DOODADS Signs OrcSign_Misc.mdx", + [2003950] = "World GENERIC ORC PASSIVE DOODADS Signs OrcSign_Poisons.mdx", + [2003951] = "World GENERIC ORC PASSIVE DOODADS Signs OrcSign_Shields.mdx", + [2003952] = "World GENERIC ORC PASSIVE DOODADS Signs OrcSign_Staves.mdx", + [2003953] = "World GENERIC ORC PASSIVE DOODADS Signs OrcSign_Swords.mdx", + [2003954] = "World GENERIC ORC PASSIVE DOODADS Signs OrcSign_Tabard.mdx", + [2003955] = "World GENERIC ORC PASSIVE DOODADS Signs OrcSign_Tailor.mdx", + [2003956] = "World GENERIC ORC PASSIVE DOODADS Signs OrcSign_Tavern.mdx", + [2003957] = "World GENERIC ORC PASSIVE DOODADS Signs OrcSign_VisitorCenter.mdx", + [2003958] = "World GENERIC ORC PASSIVE DOODADS Signs OrcSign_Weapons.mdx", + [2003959] = "World GENERIC ORC PASSIVE DOODADS Signs OrcSign_Winery.mdx", + [2003960] = "World GENERIC ORC PASSIVE DOODADS Signs OrcSign_Wyvern.mdx", + [2003961] = "World GENERIC ORC PASSIVE DOODADS Spits SpitMetal.mdx", + [2003962] = "World GENERIC ORC PASSIVE DOODADS Spits SpitWood.mdx", + [2003963] = "World GENERIC ORC PASSIVE DOODADS Statues HellscreamMonument_01.mdx", + [2003964] = "World GENERIC ORC PASSIVE DOODADS StoneBrazier WailingStoneBrazier.mdx", + [2003965] = "World GENERIC ORC PASSIVE DOODADS TABLECOOKER OrcTableCooker01.mdx", + [2003966] = "World GENERIC ORC PASSIVE DOODADS TABLECOOKER OrcTableCooker01Fire.mdx", + [2003967] = "World GENERIC ORC PASSIVE DOODADS Tables OrcBench01.mdx", + [2003968] = "World GENERIC ORC PASSIVE DOODADS Tables OrcTable01.mdx", + [2003969] = "World GENERIC ORC PASSIVE DOODADS Tailoring Bolts OrcBoltBlue.mdx", + [2003970] = "World GENERIC ORC PASSIVE DOODADS Tailoring Bolts OrcBoltGreen.mdx", + [2003971] = "World GENERIC ORC PASSIVE DOODADS Tailoring Bolts OrcBoltRed.mdx", + [2003972] = "World GENERIC ORC PASSIVE DOODADS Tailoring Bolts OrcBoltWhite.mdx", + [2003973] = "World GENERIC ORC PASSIVE DOODADS Tailoring Boots OrcBoots01.mdx", + [2003974] = "World GENERIC ORC PASSIVE DOODADS Tailoring Boots OrcBoots02.mdx", + [2003975] = "World GENERIC ORC PASSIVE DOODADS Tailoring Boots OrcBoots03.mdx", + [2003976] = "World GENERIC ORC PASSIVE DOODADS Tailoring Clothes OrcHangingPants01.mdx", + [2003977] = "World GENERIC ORC PASSIVE DOODADS Tailoring Clothes OrcHangingShirt01.mdx", + [2003978] = "World GENERIC ORC PASSIVE DOODADS Tailoring Clothes OrcPants01.mdx", + [2003979] = "World GENERIC ORC PASSIVE DOODADS Tailoring Clothes OrcShirt01.mdx", + [2003980] = "World GENERIC ORC PASSIVE DOODADS Tailoring Spools OrcSpoolBlueLow.mdx", + [2003981] = "World GENERIC ORC PASSIVE DOODADS Tailoring Spools OrcSpoolGreenLow.mdx", + [2003982] = "World GENERIC ORC PASSIVE DOODADS Tailoring Spools OrcSpoolOrange.mdx", + [2003983] = "World GENERIC ORC PASSIVE DOODADS Tailoring Spools OrcSpoolPurple.mdx", + [2003984] = "World GENERIC ORC PASSIVE DOODADS Tailoring Spools OrcSpoolRed.mdx", + [2003985] = "World GENERIC ORC PASSIVE DOODADS Tailoring Spools OrcSpoolRedLow.mdx", + [2003986] = "World GENERIC ORC PASSIVE DOODADS Tailoring Spools OrcSpoolYellow.mdx", + [2003987] = "World GENERIC ORC PASSIVE DOODADS Tailoring Yarn OrcYarnRed.mdx", + [2003988] = "World GENERIC ORC PASSIVE DOODADS Tailoring Yarn OrcYarnYellow.mdx", + [2003989] = "World GENERIC ORC PASSIVE DOODADS TaxiFlags OrcTaxiFlag.mdx", + [2003990] = "World GENERIC ORC PASSIVE DOODADS Tents DurotarOrcTent01.mdx", + [2003991] = "World GENERIC ORC PASSIVE DOODADS Tents DurotarOrcTent02.mdx", + [2003992] = "World GENERIC ORC PASSIVE DOODADS Tents orctent01.mdx", + [2003993] = "World GENERIC ORC PASSIVE DOODADS Tents orctent02.mdx", + [2003994] = "World GENERIC ORC PASSIVE DOODADS Trays EggTray.mdx", + [2003995] = "World GENERIC ORC PASSIVE DOODADS Utensils LadleMetal.mdx", + [2003996] = "World GENERIC ORC PASSIVE DOODADS Utensils LadleWood.mdx", + [2003997] = "World GENERIC ORC PASSIVE DOODADS Utensils SerratedCleaver.mdx", + [2003998] = "World GENERIC ORC PASSIVE DOODADS VOODOOSTUFF BubblingBowl01.mdx", + [2003999] = "World GENERIC ORC PASSIVE DOODADS VOODOOSTUFF BubblingBowl02.mdx", + [2004000] = "World GENERIC ORC PASSIVE DOODADS VOODOOSTUFF SkullCandle01.mdx", + [2004001] = "World GENERIC ORC PASSIVE DOODADS VOODOOSTUFF SkullCandle02.mdx", + [2004002] = "World GENERIC ORC PASSIVE DOODADS VOODOOSTUFF VoodooDoll01.mdx", + [2004003] = "World GENERIC ORC PASSIVE DOODADS VOODOOSTUFF VoodooDoll02.mdx", + [2004004] = "World GENERIC ORC PASSIVE DOODADS VOODOOSTUFF VoodooDrum01.mdx", + [2004005] = "World GENERIC ORC PASSIVE DOODADS VOODOOSTUFF VoodooDrum02.mdx", + [2004006] = "World GENERIC ORC PASSIVE DOODADS VOODOOSTUFF VoodooDrum03.mdx", + [2004007] = "World GENERIC ORC PASSIVE DOODADS WAGONS OrcWagon01.mdx", + [2004008] = "World GENERIC ORC PASSIVE DOODADS WAGONS OrcWagon02.mdx", + [2004009] = "World GENERIC ORC PASSIVE DOODADS WAGONS OrcWagon03.mdx", + [2004010] = "World GENERIC ORC PASSIVE DOODADS WAGONS OrcWagon04.mdx", + [2004011] = "World GENERIC ORC PASSIVE DOODADS WAGONS OrcWagon05.mdx", + [2004012] = "World GENERIC ORC PASSIVE DOODADS WantedPosters WantedPosterFramed01.mdx", + [2004013] = "World GENERIC ORC PASSIVE DOODADS WantedPosters WantedPosterScroll01.mdx", + [2004014] = "World GENERIC ORC PASSIVE DOODADS WantedPosters WantedPosterStuck01.mdx", + [2004015] = "World GENERIC ORC PASSIVE DOODADS WantedPosters WantedPosterWood01.mdx", + [2004016] = "World GENERIC ORC PASSIVE DOODADS Weapons OrcAxe01.mdx", + [2004017] = "World GENERIC ORC PASSIVE DOODADS Weapons OrcAxe02.mdx", + [2004018] = "World GENERIC ORC PASSIVE DOODADS Weapons OrcAxe03.mdx", + [2004019] = "World GENERIC ORC PASSIVE DOODADS Weapons OrcSpear01.mdx", + [2004020] = "World GENERIC ORC PASSIVE DOODADS Weapons OrcSpear02.mdx", + [2004021] = "World GENERIC ORC PASSIVE DOODADS Weapons OrcSpear03.mdx", + [2004022] = "World GENERIC ORC PASSIVE DOODADS Weapons OrcStaff01.mdx", + [2004023] = "World GENERIC ORC PASSIVE DOODADS Weapons OrcStaff02.mdx", + [2004024] = "World GENERIC ORC PASSIVE DOODADS Weapons OrcStaff03.mdx", + [2004025] = "World GENERIC ORC PASSIVE DOODADS Weapons OrcStaff04.mdx", + [2004026] = "World GENERIC ORC PASSIVE DOODADS Weapons OrcStaff05.mdx", + [2004027] = "World GENERIC ORC PASSIVE DOODADS Weapons OrcSword02.mdx", + [2004028] = "World GENERIC ORC PASSIVE DOODADS Weapons OrcSword03.mdx", + [2004029] = "World GENERIC ORC PASSIVE DOODADS WyvernNests WyvernNest01.mdx", + [2004030] = "World GENERIC ORC PASSIVE DOODADS WyvernNests WyvernNest02.mdx", + [2004031] = "World GENERIC ORC PASSIVE DOODADS WyvernRoost WyvernRoost01.mdx", + [2004032] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Cloth_Level01.mdx", + [2004033] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Cloth_Level02.mdx", + [2004034] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Cloth_Level03.mdx", + [2004035] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Cloth_Level04.mdx", + [2004036] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Cloth_Level05.mdx", + [2004037] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Cloth_Level06.mdx", + [2004038] = "World GENERIC PASSIVEDOODADS AHNQIRAJ FoodHerbs_Level01.mdx", + [2004039] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Food_Level02.mdx", + [2004040] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Food_Level03.mdx", + [2004041] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Food_Level04.mdx", + [2004042] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Food_Level05.mdx", + [2004043] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Food_Level06.mdx", + [2004044] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Herbs_Level02.mdx", + [2004045] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Herbs_Level03.mdx", + [2004046] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Herbs_level04.mdx", + [2004047] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Herbs_level05.mdx", + [2004048] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Herbs_level06.mdx", + [2004049] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Horde_Cloth01.mdx", + [2004050] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Horde_Cloth02.mdx", + [2004051] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Horde_Cloth03.mdx", + [2004052] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Horde_Cloth04.mdx", + [2004053] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Horde_Cloth05.mdx", + [2004054] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Horde_Cloth06.mdx", + [2004055] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Horde_Food01.mdx", + [2004056] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Horde_Food02.mdx", + [2004057] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Horde_Food03.mdx", + [2004058] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Horde_Food04.mdx", + [2004059] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Horde_Food05.mdx", + [2004060] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Horde_Food06.mdx", + [2004061] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Horde_Furs01.mdx", + [2004062] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Horde_Furs02.mdx", + [2004063] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Horde_Furs03.mdx", + [2004064] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Horde_Furs04.mdx", + [2004065] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Horde_Furs05.mdx", + [2004066] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Horde_Furs06.mdx", + [2004067] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Horde_Herbs01.mdx", + [2004068] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Horde_Herbs02.mdx", + [2004069] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Horde_Herbs03.mdx", + [2004070] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Horde_Herbs04.mdx", + [2004071] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Horde_Herbs05.mdx", + [2004072] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Horde_Herbs06.mdx", + [2004073] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Horde_Metal01.mdx", + [2004074] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Horde_Metal02.mdx", + [2004075] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Horde_Metal03.mdx", + [2004076] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Horde_Metal04.mdx", + [2004077] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Horde_Metal05.mdx", + [2004078] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Horde_Metal06.mdx", + [2004079] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Leather_Level01.mdx", + [2004080] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Leather_Level02.mdx", + [2004081] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Leather_Level03.mdx", + [2004082] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Leather_Level04.mdx", + [2004083] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Leather_Level05.mdx", + [2004084] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Leather_Level06.mdx", + [2004085] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Metals_Level01.mdx", + [2004086] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Metals_Level02.mdx", + [2004087] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Metals_Level03.mdx", + [2004088] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Metals_Level04.mdx", + [2004089] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Metals_Level05.mdx", + [2004090] = "World GENERIC PASSIVEDOODADS AHNQIRAJ Metals_Level06.mdx", + [2004091] = "World GENERIC PASSIVEDOODADS BABIES Baby_Dw.mdx", + [2004092] = "World GENERIC PASSIVEDOODADS BABIES Baby_Gn.mdx", + [2004093] = "World GENERIC PASSIVEDOODADS BABIES Baby_Hu.mdx", + [2004094] = "World GENERIC PASSIVEDOODADS BABIES Baby_Ne.mdx", + [2004095] = "World GENERIC PASSIVEDOODADS BABIES Baby_Or.mdx", + [2004096] = "World GENERIC PASSIVEDOODADS BABIES Baby_Ta.mdx", + [2004097] = "World GENERIC PASSIVEDOODADS BABIES Baby_Tr.mdx", + [2004098] = "World GENERIC PASSIVEDOODADS Band final_stage.mdx", + [2004099] = "World GENERIC PASSIVEDOODADS Barrel Barrel01.mdx", + [2004100] = "World GENERIC PASSIVEDOODADS Barrel BarrelLowPoly.mdx", + [2004101] = "World GENERIC PASSIVEDOODADS BindStone NewBindStone.mdx", + [2004102] = "World GENERIC PASSIVEDOODADS Bleachers BleacherSeat1A.mdx", + [2004103] = "World GENERIC PASSIVEDOODADS Bleachers BleacherSeat1B.mdx", + [2004104] = "World GENERIC PASSIVEDOODADS Bleachers BleacherSeat1C.mdx", + [2004105] = "World GENERIC PASSIVEDOODADS Bleachers BleacherSeat1D.mdx", + [2004106] = "World GENERIC PASSIVEDOODADS Bleachers BleachersWood01.mdx", + [2004107] = "World GENERIC PASSIVEDOODADS Brewfest Beerfest_MoleMachine.mdx", + [2004108] = "World GENERIC PASSIVEDOODADS BrokenTrap BrokenFreezingTrap.mdx", + [2004109] = "World GENERIC PASSIVEDOODADS CHRISTMAS G_Nutcracker.mdx", + [2004110] = "World GENERIC PASSIVEDOODADS CHRISTMAS G_XmasWreath.mdx", + [2004111] = "World GENERIC PASSIVEDOODADS CHRISTMAS LunarNewYear_Lights.mdx", + [2004112] = "World GENERIC PASSIVEDOODADS CHRISTMAS LunarNewYear_LightsX3.mdx", + [2004113] = "World GENERIC PASSIVEDOODADS CHRISTMAS XmasGift01.mdx", + [2004114] = "World GENERIC PASSIVEDOODADS CHRISTMAS XmasGift02.mdx", + [2004115] = "World GENERIC PASSIVEDOODADS CHRISTMAS XmasGift03.mdx", + [2004116] = "World GENERIC PASSIVEDOODADS CHRISTMAS XmasGift04.mdx", + [2004117] = "World GENERIC PASSIVEDOODADS CHRISTMAS XmasGift05.mdx", + [2004118] = "World GENERIC PASSIVEDOODADS CHRISTMAS XmasGift06.mdx", + [2004119] = "World GENERIC PASSIVEDOODADS CHRISTMAS XmasRopeLine.mdx", + [2004120] = "World GENERIC PASSIVEDOODADS CHRISTMAS XmasRopeLinePole.mdx", + [2004121] = "World GENERIC PASSIVEDOODADS CHRISTMAS XmasStocking01.mdx", + [2004122] = "World GENERIC PASSIVEDOODADS CHRISTMAS XmasStocking02.mdx", + [2004123] = "World GENERIC PASSIVEDOODADS CHRISTMAS XmasStocking03.mdx", + [2004124] = "World GENERIC PASSIVEDOODADS CHRISTMAS XmasTree_LargeAlliance01.mdx", + [2004125] = "World GENERIC PASSIVEDOODADS CHRISTMAS XmasTree_LargeAlliance01White.mdx", + [2004126] = "World GENERIC PASSIVEDOODADS CHRISTMAS XmasTree_LargeHorde01.mdx", + [2004127] = "World GENERIC PASSIVEDOODADS CHRISTMAS XmasTree_MediumAlliance01.mdx", + [2004128] = "World GENERIC PASSIVEDOODADS CHRISTMAS XmasTree_MediumHorde01.mdx", + [2004129] = "World GENERIC PASSIVEDOODADS CHRISTMAS Xmas_lights.mdx", + [2004130] = "World GENERIC PASSIVEDOODADS CHRISTMAS Xmas_lightsX3.mdx", + [2004131] = "World GENERIC PASSIVEDOODADS CHRISTMAS Xmas_lights_broken.mdx", + [2004132] = "World GENERIC PASSIVEDOODADS CHRISTMAS Xmas_lights_broken3X.mdx", + [2004133] = "World GENERIC PASSIVEDOODADS CHRISTMAS mistletoe.mdx", + [2004134] = "World GENERIC PASSIVEDOODADS CHRISTMAS mistletoe02.mdx", + [2004135] = "World GENERIC PASSIVEDOODADS Crate01 Crate01.mdx", + [2004136] = "World GENERIC PASSIVEDOODADS Crate02 Crate02.mdx", + [2004137] = "World GENERIC PASSIVEDOODADS CratesFirstAid CrateAllianceFirstAid01.mdx", + [2004138] = "World GENERIC PASSIVEDOODADS CratesFirstAid CrateHordeFirstAid01.mdx", + [2004139] = "World GENERIC PASSIVEDOODADS CreatureDeathSkeletons DragonFootSoldierBones.mdx", + [2004140] = "World GENERIC PASSIVEDOODADS DEATHSKELETONS BloodElfFemaleDeathSkeleton.mdx", + [2004141] = "World GENERIC PASSIVEDOODADS DEATHSKELETONS BloodElfMaleDeathSkeleton.mdx", + [2004142] = "World GENERIC PASSIVEDOODADS DEATHSKELETONS DraeneiFemaleDeathSkeleton.mdx", + [2004143] = "World GENERIC PASSIVEDOODADS DEATHSKELETONS DraeneiMaleDeathSkeleton.mdx", + [2004144] = "World GENERIC PASSIVEDOODADS DEATHSKELETONS DwarfFemaleDeathSkeleton.mdx", + [2004145] = "World GENERIC PASSIVEDOODADS DEATHSKELETONS DwarfMaleDeathSkeleton.mdx", + [2004146] = "World GENERIC PASSIVEDOODADS DEATHSKELETONS GnomeFemaleDeathSkeleton.mdx", + [2004147] = "World GENERIC PASSIVEDOODADS DEATHSKELETONS GnomeMaleDeathSkeleton.mdx", + [2004148] = "World GENERIC PASSIVEDOODADS DEATHSKELETONS HumanFemaleDeathSkeleton.mdx", + [2004149] = "World GENERIC PASSIVEDOODADS DEATHSKELETONS HumanMaleDeathSkeleton.mdx", + [2004150] = "World GENERIC PASSIVEDOODADS DEATHSKELETONS NightElfFemaleDeathSkeleton.mdx", + [2004151] = "World GENERIC PASSIVEDOODADS DEATHSKELETONS NightElfMaleDeathSkeleton.mdx", + [2004152] = "World GENERIC PASSIVEDOODADS DEATHSKELETONS OrcFemaleDeathSkeleton.mdx", + [2004153] = "World GENERIC PASSIVEDOODADS DEATHSKELETONS OrcMaleDeathSkeleton.mdx", + [2004154] = "World GENERIC PASSIVEDOODADS DEATHSKELETONS ScourgeFemaleDeathSkeleton.mdx", + [2004155] = "World GENERIC PASSIVEDOODADS DEATHSKELETONS ScourgeMaleDeathSkeleton.mdx", + [2004156] = "World GENERIC PASSIVEDOODADS DEATHSKELETONS TaurenFemaleDeathSkeleton.mdx", + [2004157] = "World GENERIC PASSIVEDOODADS DEATHSKELETONS TaurenMaleDeathSkeleton.mdx", + [2004158] = "World GENERIC PASSIVEDOODADS DEATHSKELETONS TrollFemaleDeathSkeleton.mdx", + [2004159] = "World GENERIC PASSIVEDOODADS DEATHSKELETONS TrollMaleDeathSkeleton.mdx", + [2004160] = "World GENERIC PASSIVEDOODADS DUELINGFLAG DuelingFlag.mdx", + [2004161] = "World GENERIC PASSIVEDOODADS DarkPortals DarkPortal01.mdx", + [2004162] = "World GENERIC PASSIVEDOODADS DarkPortals DarkPortal_Blasted_FX.mdx", + [2004163] = "World GENERIC PASSIVEDOODADS DeadTreeLogs DeadTreeLog01.mdx", + [2004164] = "World GENERIC PASSIVEDOODADS DeadTreeLogs DeadTreeLog02.mdx", + [2004165] = "World GENERIC PASSIVEDOODADS DeadTreeLogs DeadTreeLog03.mdx", + [2004166] = "World GENERIC PASSIVEDOODADS DeadTreeLogs DeadTreeLog04.mdx", + [2004167] = "World GENERIC PASSIVEDOODADS DirectionalMarker DirectionalMarker.mdx", + [2004168] = "World GENERIC PASSIVEDOODADS DirectionalMarker DirectionalMarker02.mdx", + [2004169] = "World GENERIC PASSIVEDOODADS Doors doortest01.mdx", + [2004170] = "World GENERIC PASSIVEDOODADS EasterEggs EasterEgg01.mdx", + [2004171] = "World GENERIC PASSIVEDOODADS EasterEggs EasterEgg02.mdx", + [2004172] = "World GENERIC PASSIVEDOODADS EasterEggs EasterEgg03.mdx", + [2004173] = "World GENERIC PASSIVEDOODADS EasterEggs EasterEgg04.mdx", + [2004174] = "World GENERIC PASSIVEDOODADS EasterEggs EasterEgg05.mdx", + [2004175] = "World GENERIC PASSIVEDOODADS Engineering Spring.mdx", + [2004176] = "World GENERIC PASSIVEDOODADS Engineering Spring02.mdx", + [2004177] = "World GENERIC PASSIVEDOODADS FLYINGINSECTS FlyingSmallInsects.mdx", + [2004178] = "World GENERIC PASSIVEDOODADS FRUITS FruitBowl_Apples.mdx", + [2004179] = "World GENERIC PASSIVEDOODADS FRUITS FruitBowl_Empty.mdx", + [2004180] = "World GENERIC PASSIVEDOODADS FRUITS FruitBowl_Mixed.mdx", + [2004181] = "World GENERIC PASSIVEDOODADS FRUITS Fruit_Apple.mdx", + [2004182] = "World GENERIC PASSIVEDOODADS FRUITS Fruit_Banana.mdx", + [2004183] = "World GENERIC PASSIVEDOODADS FRUITS Fruit_BananaBunch.mdx", + [2004184] = "World GENERIC PASSIVEDOODADS FRUITS Fruit_Melon.mdx", + [2004185] = "World GENERIC PASSIVEDOODADS FRUITS Fruit_MelonSlice01.mdx", + [2004186] = "World GENERIC PASSIVEDOODADS FRUITS Fruit_MelonSlice02.mdx", + [2004187] = "World GENERIC PASSIVEDOODADS FRUITS Fruit_Orange.mdx", + [2004188] = "World GENERIC PASSIVEDOODADS FRUITS Fruit_OrangeSlice.mdx", + [2004189] = "World GENERIC PASSIVEDOODADS FRUITS Fruit_Pear.mdx", + [2004190] = "World GENERIC PASSIVEDOODADS Feathers FeatherBigBlue.mdx", + [2004191] = "World GENERIC PASSIVEDOODADS Feathers FeatherBigBrown.mdx", + [2004192] = "World GENERIC PASSIVEDOODADS Feathers FeatherBigRed.mdx", + [2004193] = "World GENERIC PASSIVEDOODADS Fish fishskel01.mdx", + [2004194] = "World GENERIC PASSIVEDOODADS Fish fishskel02.mdx", + [2004195] = "World GENERIC PASSIVEDOODADS FloatingDebris FloatingBarrel01.mdx", + [2004196] = "World GENERIC PASSIVEDOODADS FloatingDebris FloatingBarrel02.mdx", + [2004197] = "World GENERIC PASSIVEDOODADS FloatingDebris FloatingBoards01.mdx", + [2004198] = "World GENERIC PASSIVEDOODADS FloatingDebris FloatingCoffin01.mdx", + [2004199] = "World GENERIC PASSIVEDOODADS FloatingDebris FloatingCrate01.mdx", + [2004200] = "World GENERIC PASSIVEDOODADS FloatingDebris FloatingTree01.mdx", + [2004201] = "World GENERIC PASSIVEDOODADS FloatingDebris FloatingTree02.mdx", + [2004202] = "World GENERIC PASSIVEDOODADS FloatingDebris FloatingTree03.mdx", + [2004203] = "World GENERIC PASSIVEDOODADS Furniture Containers Barrel02.mdx", + [2004204] = "World GENERIC PASSIVEDOODADS Furniture Containers Crate03.mdx", + [2004205] = "World GENERIC PASSIVEDOODADS Furniture Containers Sack01.mdx", + [2004206] = "World GENERIC PASSIVEDOODADS Furniture Containers Sack02.mdx", + [2004207] = "World GENERIC PASSIVEDOODADS Furniture Containers TitanChest.mdx", + [2004208] = "World GENERIC PASSIVEDOODADS Furniture Containers TitanVase01.mdx", + [2004209] = "World GENERIC PASSIVEDOODADS Furniture Containers exploding_package.mdx", + [2004210] = "World GENERIC PASSIVEDOODADS Furniture Refuse Bone01.mdx", + [2004211] = "World GENERIC PASSIVEDOODADS Furniture Refuse Bone02.mdx", + [2004212] = "World GENERIC PASSIVEDOODADS GrayStone GrayStone01.mdx", + [2004213] = "World GENERIC PASSIVEDOODADS GrayStone GrayStone02.mdx", + [2004214] = "World GENERIC PASSIVEDOODADS GuildBank GuildVault_BloodElf_01.mdx", + [2004215] = "World GENERIC PASSIVEDOODADS GuildBank GuildVault_Draenei_01.mdx", + [2004216] = "World GENERIC PASSIVEDOODADS GuildBank GuildVault_Dwarf_01.mdx", + [2004217] = "World GENERIC PASSIVEDOODADS GuildBank GuildVault_Goblin_01.mdx", + [2004218] = "World GENERIC PASSIVEDOODADS GuildBank GuildVault_Human_01.mdx", + [2004219] = "World GENERIC PASSIVEDOODADS GuildBank GuildVault_NightElf_01.mdx", + [2004220] = "World GENERIC PASSIVEDOODADS GuildBank GuildVault_Orc_01.mdx", + [2004221] = "World GENERIC PASSIVEDOODADS GuildBank GuildVault_Tauren_01.mdx", + [2004222] = "World GENERIC PASSIVEDOODADS GuildBank GuildVault_Undercity_01.mdx", + [2004223] = "World GENERIC PASSIVEDOODADS HALLOWEEN BurningAsh01.mdx", + [2004224] = "World GENERIC PASSIVEDOODADS HALLOWEEN BurningWickerman01.mdx", + [2004225] = "World GENERIC PASSIVEDOODADS HALLOWEEN HangingSkullLight01.mdx", + [2004226] = "World GENERIC PASSIVEDOODADS HALLOWEEN HangingSkullLight02.mdx", + [2004227] = "World GENERIC PASSIVEDOODADS Hides HideStack01.mdx", + [2004228] = "World GENERIC PASSIVEDOODADS Hides HideStack02.mdx", + [2004229] = "World GENERIC PASSIVEDOODADS LIGHTS Bigcandle.mdx", + [2004230] = "World GENERIC PASSIVEDOODADS LIGHTS Candelabra01.mdx", + [2004231] = "World GENERIC PASSIVEDOODADS LIGHTS Candelabra02.mdx", + [2004232] = "World GENERIC PASSIVEDOODADS LIGHTS CandelabraTallWall01.mdx", + [2004233] = "World GENERIC PASSIVEDOODADS LIGHTS CandelabraTallWall02.mdx", + [2004234] = "World GENERIC PASSIVEDOODADS LIGHTS Candle01.mdx", + [2004235] = "World GENERIC PASSIVEDOODADS LIGHTS Candle02.mdx", + [2004236] = "World GENERIC PASSIVEDOODADS LIGHTS Candle03.mdx", + [2004237] = "World GENERIC PASSIVEDOODADS LIGHTS CandleBlack01.mdx", + [2004238] = "World GENERIC PASSIVEDOODADS LIGHTS CandleOff01.mdx", + [2004239] = "World GENERIC PASSIVEDOODADS LIGHTS CandleOff02.mdx", + [2004240] = "World GENERIC PASSIVEDOODADS LIGHTS CandleOff03.mdx", + [2004241] = "World GENERIC PASSIVEDOODADS LIGHTS Chandelier01.mdx", + [2004242] = "World GENERIC PASSIVEDOODADS LIGHTS FreestandingTorch01.mdx", + [2004243] = "World GENERIC PASSIVEDOODADS LIGHTS FreestandingTorch02.mdx", + [2004244] = "World GENERIC PASSIVEDOODADS LIGHTS FreestandingTorch04_GIANT.mdx", + [2004245] = "World GENERIC PASSIVEDOODADS LIGHTS FreestandingTorch04_HUGE.mdx", + [2004246] = "World GENERIC PASSIVEDOODADS LIGHTS FreestandingTorch04_HUGEblue.mdx", + [2004247] = "World GENERIC PASSIVEDOODADS LIGHTS GeneralTorch01.mdx", + [2004248] = "World GENERIC PASSIVEDOODADS LIGHTS GeneralTorch02.mdx", + [2004249] = "World GENERIC PASSIVEDOODADS LIGHTS Torch.mdx", + [2004250] = "World GENERIC PASSIVEDOODADS LIGHTS Torch_out.mdx", + [2004251] = "World GENERIC PASSIVEDOODADS LunarNewYear FirecrackerString_Blue01.mdx", + [2004252] = "World GENERIC PASSIVEDOODADS LunarNewYear FirecrackerString_Red01.mdx", + [2004253] = "World GENERIC PASSIVEDOODADS LunarNewYear LuckyMoneyEnvelope_01.mdx", + [2004254] = "World GENERIC PASSIVEDOODADS LunarNewYear LunarNewYearBanner_Alliance_Hanging.mdx", + [2004255] = "World GENERIC PASSIVEDOODADS LunarNewYear LunarNewYearBanner_Alliance_Hanging02.mdx", + [2004256] = "World GENERIC PASSIVEDOODADS LunarNewYear LunarNewYearBanner_Alliance_Standing.mdx", + [2004257] = "World GENERIC PASSIVEDOODADS LunarNewYear LunarNewYearBanner_Horde_Hanging.mdx", + [2004258] = "World GENERIC PASSIVEDOODADS LunarNewYear LunarNewYearBanner_Horde_Hanging02.mdx", + [2004259] = "World GENERIC PASSIVEDOODADS LunarNewYear LunarNewYearBanner_Horde_Standing.mdx", + [2004260] = "World GENERIC PASSIVEDOODADS LunarNewYear LunarNewYearLantern_Alliance_Hanging.mdx", + [2004261] = "World GENERIC PASSIVEDOODADS LunarNewYear LunarNewYearLantern_Alliance_Standing.mdx", + [2004262] = "World GENERIC PASSIVEDOODADS LunarNewYear LunarNewYearLantern_Horde_Hanging.mdx", + [2004263] = "World GENERIC PASSIVEDOODADS LunarNewYear LunarNewYearLantern_Horde_Standing.mdx", + [2004264] = "World GENERIC PASSIVEDOODADS LunarNewYear LunarNewYear_HeroPortrait_Dw.mdx", + [2004265] = "World GENERIC PASSIVEDOODADS LunarNewYear LunarNewYear_HeroPortrait_Gn.mdx", + [2004266] = "World GENERIC PASSIVEDOODADS LunarNewYear LunarNewYear_HeroPortrait_Hu.mdx", + [2004267] = "World GENERIC PASSIVEDOODADS LunarNewYear LunarNewYear_HeroPortrait_Ne.mdx", + [2004268] = "World GENERIC PASSIVEDOODADS LunarNewYear LunarNewYear_HeroPortrait_Or.mdx", + [2004269] = "World GENERIC PASSIVEDOODADS LunarNewYear LunarNewYear_HeroPortrait_Sc.mdx", + [2004270] = "World GENERIC PASSIVEDOODADS LunarNewYear LunarNewYear_HeroPortrait_Ta.mdx", + [2004271] = "World GENERIC PASSIVEDOODADS LunarNewYear LunarNewYear_HeroPortrait_Tr.mdx", + [2004272] = "World GENERIC PASSIVEDOODADS METALBARS MetalBarStack01Copper.mdx", + [2004273] = "World GENERIC PASSIVEDOODADS METALBARS MetalBarStack01Iron.mdx", + [2004274] = "World GENERIC PASSIVEDOODADS METALBARS MetalBarStack01Mithril.mdx", + [2004275] = "World GENERIC PASSIVEDOODADS METALBARS MetalBarStack01Truesilver.mdx", + [2004276] = "World GENERIC PASSIVEDOODADS METALBARS MetalBarStack02Copper.mdx", + [2004277] = "World GENERIC PASSIVEDOODADS METALBARS MetalBarStack02Iron.mdx", + [2004278] = "World GENERIC PASSIVEDOODADS METALBARS MetalBarStack02Mithril.mdx", + [2004279] = "World GENERIC PASSIVEDOODADS METALBARS MetalBarStack02Truesilver.mdx", + [2004280] = "World GENERIC PASSIVEDOODADS METALBARS MetalBars01Copper.mdx", + [2004281] = "World GENERIC PASSIVEDOODADS METALBARS MetalBars01Iron.mdx", + [2004282] = "World GENERIC PASSIVEDOODADS METALBARS MetalBars01Mithril.mdx", + [2004283] = "World GENERIC PASSIVEDOODADS METALBARS MetalBars01Truesilver.mdx", + [2004284] = "World GENERIC PASSIVEDOODADS MISC MINECARS CaveMineCar01.mdx", + [2004285] = "World GENERIC PASSIVEDOODADS MISC MINECARS CaveMineCarWrecked01.mdx", + [2004286] = "World GENERIC PASSIVEDOODADS MISC MINECARS CaveMineCarWrecked02.mdx", + [2004287] = "World GENERIC PASSIVEDOODADS MISC MINECARS CaveMinePulley01.mdx", + [2004288] = "World GENERIC PASSIVEDOODADS MISC MINECARS CaveMinePulley02.mdx", + [2004289] = "World GENERIC PASSIVEDOODADS MISC Pulleys Pulley.mdx", + [2004290] = "World GENERIC PASSIVEDOODADS MISC WheelBarrow CaveMineWheelbarrow01.mdx", + [2004291] = "World GENERIC PASSIVEDOODADS Oktoberfest Beerfest_Banner02.mdx", + [2004292] = "World GENERIC PASSIVEDOODADS Oktoberfest Beerfest_BeerVendor.mdx", + [2004293] = "World GENERIC PASSIVEDOODADS Oktoberfest Beerfest_FoodTent.mdx", + [2004294] = "World GENERIC PASSIVEDOODADS Oktoberfest Beerfest_OpenTent.mdx", + [2004295] = "World GENERIC PASSIVEDOODADS Oktoberfest Beerfest_Wagon.mdx", + [2004296] = "World GENERIC PASSIVEDOODADS Oktoberfest Beerfest_Wagon_Full.mdx", + [2004297] = "World GENERIC PASSIVEDOODADS Oktoberfest FlamingPumpkinHead.mdx", + [2004298] = "World GENERIC PASSIVEDOODADS Oktoberfest PumpkinHead.mdx", + [2004299] = "World GENERIC PASSIVEDOODADS PLAINRUNE PlainRune.mdx", + [2004300] = "World GENERIC PASSIVEDOODADS PLAINRUNE RuneStone.mdx", + [2004301] = "World GENERIC PASSIVEDOODADS POSTBOXES PostBoxBloodElf.mdx", + [2004302] = "World GENERIC PASSIVEDOODADS POSTBOXES PostBoxDwarf.mdx", + [2004303] = "World GENERIC PASSIVEDOODADS POSTBOXES PostBoxGnome.mdx", + [2004304] = "World GENERIC PASSIVEDOODADS POSTBOXES PostBoxHuman.mdx", + [2004305] = "World GENERIC PASSIVEDOODADS POSTBOXES PostBoxNightElf.mdx", + [2004306] = "World GENERIC PASSIVEDOODADS POSTBOXES PostBoxOrc.mdx", + [2004307] = "World GENERIC PASSIVEDOODADS POSTBOXES PostBoxTauren.mdx", + [2004308] = "World GENERIC PASSIVEDOODADS POSTBOXES PostBoxTroll.mdx", + [2004309] = "World GENERIC PASSIVEDOODADS POSTBOXES PostBoxUndead.mdx", + [2004310] = "World GENERIC PASSIVEDOODADS ParticleEmitters AshenvaleWisps.mdx", + [2004311] = "World GENERIC PASSIVEDOODADS ParticleEmitters AuraBlue.mdx", + [2004312] = "World GENERIC PASSIVEDOODADS ParticleEmitters AuraBlueHuge.mdx", + [2004313] = "World GENERIC PASSIVEDOODADS ParticleEmitters AuraBlueShort.mdx", + [2004314] = "World GENERIC PASSIVEDOODADS ParticleEmitters AuraBlueTall.mdx", + [2004315] = "World GENERIC PASSIVEDOODADS ParticleEmitters AuraBlueVeryTall.mdx", + [2004316] = "World GENERIC PASSIVEDOODADS ParticleEmitters AuraGreen.mdx", + [2004317] = "World GENERIC PASSIVEDOODADS ParticleEmitters AuraGreenShort.mdx", + [2004318] = "World GENERIC PASSIVEDOODADS ParticleEmitters AuraGreenTall.mdx", + [2004319] = "World GENERIC PASSIVEDOODADS ParticleEmitters AuraGreenVeryTall.mdx", + [2004320] = "World GENERIC PASSIVEDOODADS ParticleEmitters AuraPurple.mdx", + [2004321] = "World GENERIC PASSIVEDOODADS ParticleEmitters AuraPurpleShort.mdx", + [2004322] = "World GENERIC PASSIVEDOODADS ParticleEmitters AuraPurpleTall.mdx", + [2004323] = "World GENERIC PASSIVEDOODADS ParticleEmitters AuraPurpleVeryTall.mdx", + [2004324] = "World GENERIC PASSIVEDOODADS ParticleEmitters AuraRed.mdx", + [2004325] = "World GENERIC PASSIVEDOODADS ParticleEmitters AuraRedHuge.mdx", + [2004326] = "World GENERIC PASSIVEDOODADS ParticleEmitters AuraRedShort.mdx", + [2004327] = "World GENERIC PASSIVEDOODADS ParticleEmitters AuraRedTall.mdx", + [2004328] = "World GENERIC PASSIVEDOODADS ParticleEmitters AuraRedVeryTall.mdx", + [2004329] = "World GENERIC PASSIVEDOODADS ParticleEmitters AuraYellow.mdx", + [2004330] = "World GENERIC PASSIVEDOODADS ParticleEmitters AuraYellowHuge.mdx", + [2004331] = "World GENERIC PASSIVEDOODADS ParticleEmitters AuraYellowShort.mdx", + [2004332] = "World GENERIC PASSIVEDOODADS ParticleEmitters AuraYellowTall.mdx", + [2004333] = "World GENERIC PASSIVEDOODADS ParticleEmitters AuraYellowVeryTall.mdx", + [2004334] = "World GENERIC PASSIVEDOODADS ParticleEmitters Blacksmith_smoke.mdx", + [2004335] = "World GENERIC PASSIVEDOODADS ParticleEmitters BlastedLandsLightningbolt01.mdx", + [2004336] = "World GENERIC PASSIVEDOODADS ParticleEmitters Bubbles01.mdx", + [2004337] = "World GENERIC PASSIVEDOODADS ParticleEmitters BubblesB.mdx", + [2004338] = "World GENERIC PASSIVEDOODADS ParticleEmitters BubblesB_BigEmitter.mdx", + [2004339] = "World GENERIC PASSIVEDOODADS ParticleEmitters CeilingDustEmitter.mdx", + [2004340] = "World GENERIC PASSIVEDOODADS ParticleEmitters DruidWisp01.mdx", + [2004341] = "World GENERIC PASSIVEDOODADS ParticleEmitters DustwallowGroundFogPlane.mdx", + [2004342] = "World GENERIC PASSIVEDOODADS ParticleEmitters Dustwallowgroundfog.mdx", + [2004343] = "World GENERIC PASSIVEDOODADS ParticleEmitters FeralasLightBlue.mdx", + [2004344] = "World GENERIC PASSIVEDOODADS ParticleEmitters FeralasLightGreen.mdx", + [2004345] = "World GENERIC PASSIVEDOODADS ParticleEmitters FeralasLightPurple.mdx", + [2004346] = "World GENERIC PASSIVEDOODADS ParticleEmitters FeralasLightYellow.mdx", + [2004347] = "World GENERIC PASSIVEDOODADS ParticleEmitters FlameCircle.mdx", + [2004348] = "World GENERIC PASSIVEDOODADS ParticleEmitters Fogbox.mdx", + [2004349] = "World GENERIC PASSIVEDOODADS ParticleEmitters FountainParticles.mdx", + [2004350] = "World GENERIC PASSIVEDOODADS ParticleEmitters GreenGroundFog.mdx", + [2004351] = "World GENERIC PASSIVEDOODADS ParticleEmitters GreyGroundFog.mdx", + [2004352] = "World GENERIC PASSIVEDOODADS ParticleEmitters HouseSmoke.mdx", + [2004353] = "World GENERIC PASSIVEDOODADS ParticleEmitters LavaParticleSplash.mdx", + [2004354] = "World GENERIC PASSIVEDOODADS ParticleEmitters LavaSmokeEmitter.mdx", + [2004355] = "World GENERIC PASSIVEDOODADS ParticleEmitters LavaSmokeEmitterB.mdx", + [2004356] = "World GENERIC PASSIVEDOODADS ParticleEmitters LavaSplashParticle.mdx", + [2004357] = "World GENERIC PASSIVEDOODADS ParticleEmitters MountainCaveRiver.mdx", + [2004358] = "World GENERIC PASSIVEDOODADS ParticleEmitters OrangeGroundFog.mdx", + [2004359] = "World GENERIC PASSIVEDOODADS ParticleEmitters OutlandDemonGlow.mdx", + [2004360] = "World GENERIC PASSIVEDOODADS ParticleEmitters PurpleGroundFog.mdx", + [2004361] = "World GENERIC PASSIVEDOODADS ParticleEmitters ShadowfangFog01.mdx", + [2004362] = "World GENERIC PASSIVEDOODADS ParticleEmitters ShrineAuraBlue.mdx", + [2004363] = "World GENERIC PASSIVEDOODADS ParticleEmitters Steam02.mdx", + [2004364] = "World GENERIC PASSIVEDOODADS ParticleEmitters Steam03.mdx", + [2004365] = "World GENERIC PASSIVEDOODADS ParticleEmitters Steam04.mdx", + [2004366] = "World GENERIC PASSIVEDOODADS ParticleEmitters SunkenFlame01.mdx", + [2004367] = "World GENERIC PASSIVEDOODADS ParticleEmitters flyswarms.mdx", + [2004368] = "World GENERIC PASSIVEDOODADS Plaque PlaqueBronze01.mdx", + [2004369] = "World GENERIC PASSIVEDOODADS Plaque PlaqueBronze02.mdx", + [2004370] = "World GENERIC PASSIVEDOODADS Plaque PlaqueSilver01.mdx", + [2004371] = "World GENERIC PASSIVEDOODADS Plaque PlaqueSilver02.mdx", + [2004372] = "World GENERIC PASSIVEDOODADS Plaque PlaqueStone01.mdx", + [2004373] = "World GENERIC PASSIVEDOODADS SKELETONS ChainedSkeleton01.mdx", + [2004374] = "World GENERIC PASSIVEDOODADS SKELETONS ChainedSkeleton02.mdx", + [2004375] = "World GENERIC PASSIVEDOODADS SKELETONS ChainedSkeleton03.mdx", + [2004376] = "World GENERIC PASSIVEDOODADS SKELETONS ChainedSkeleton04.mdx", + [2004377] = "World GENERIC PASSIVEDOODADS SKELETONS ChainedSkeleton05.mdx", + [2004378] = "World GENERIC PASSIVEDOODADS SKELETONS ChainedSkeleton06.mdx", + [2004379] = "World GENERIC PASSIVEDOODADS SKELETONS lightSkeletonLaying01.mdx", + [2004380] = "World GENERIC PASSIVEDOODADS SKELETONS lightSkeletonLaying02.mdx", + [2004381] = "World GENERIC PASSIVEDOODADS SKELETONS lightSkeletonLaying03.mdx", + [2004382] = "World GENERIC PASSIVEDOODADS SKELETONS lightSkeletonSitting01.mdx", + [2004383] = "World GENERIC PASSIVEDOODADS SKELETONS lightSkeletonSitting02.mdx", + [2004384] = "World GENERIC PASSIVEDOODADS SKELETONS lightSkeletonSitting03.mdx", + [2004385] = "World GENERIC PASSIVEDOODADS SKELETONS lightSkeletonSitting04.mdx", + [2004386] = "World GENERIC PASSIVEDOODADS SKELETONS skeletalServant01.mdx", + [2004387] = "World GENERIC PASSIVEDOODADS SKELETONS skeletalServant02.mdx", + [2004388] = "World GENERIC PASSIVEDOODADS SKELETONS skeletalServant03.mdx", + [2004389] = "World GENERIC PASSIVEDOODADS ShamanStone ShamanStone01.mdx", + [2004390] = "World GENERIC PASSIVEDOODADS ShieldRacks RackShieldAlliance01.mdx", + [2004391] = "World GENERIC PASSIVEDOODADS ShieldRacks RackShieldAlliance02.mdx", + [2004392] = "World GENERIC PASSIVEDOODADS ShieldRacks RackShieldHorde01.mdx", + [2004393] = "World GENERIC PASSIVEDOODADS ShieldRacks RackShieldHorde02.mdx", + [2004394] = "World GENERIC PASSIVEDOODADS Ships SHIPRAMPS ShipRamp01.mdx", + [2004395] = "World GENERIC PASSIVEDOODADS Ships ShipAnimation Transportship_NE_DoodadsMoving.mdx", + [2004396] = "World GENERIC PASSIVEDOODADS Ships ShipAnimation Transportship_NE_DoodadsStationary.mdx", + [2004397] = "World GENERIC PASSIVEDOODADS Ships ShipAnimation Transportship_NE_DoodadsStationaryPlanked.mdx", + [2004398] = "World GENERIC PASSIVEDOODADS Ships ShipAnimation transportship_sails.mdx", + [2004399] = "World GENERIC PASSIVEDOODADS Ships ZeppelinAnimation zepanimation.mdx", + [2004400] = "World GENERIC PASSIVEDOODADS SummerFestival SummerFest_Banner_01.mdx", + [2004401] = "World GENERIC PASSIVEDOODADS SummerFestival SummerFest_Bonfire_Base_01.mdx", + [2004402] = "World GENERIC PASSIVEDOODADS SummerFestival SummerFest_Bonfire_Large01.mdx", + [2004403] = "World GENERIC PASSIVEDOODADS SummerFestival SummerFest_Bonfire_Large02.mdx", + [2004404] = "World GENERIC PASSIVEDOODADS SummerFestival SummerFest_Bonfire_Large03.mdx", + [2004405] = "World GENERIC PASSIVEDOODADS SummerFestival SummerFest_Bonfire_Large04.mdx", + [2004406] = "World GENERIC PASSIVEDOODADS SummerFestival SummerFest_Bonfire_OFF.mdx", + [2004407] = "World GENERIC PASSIVEDOODADS SummerFestival SummerFest_Bonfire_ON.mdx", + [2004408] = "World GENERIC PASSIVEDOODADS SummerFestival SummerFest_Bonfire_Small01.mdx", + [2004409] = "World GENERIC PASSIVEDOODADS SummerFestival SummerFest_Bonfire_Small02.mdx", + [2004410] = "World GENERIC PASSIVEDOODADS SummerFestival SummerFest_Bonfire_Small03.mdx", + [2004411] = "World GENERIC PASSIVEDOODADS SummerFestival SummerFest_Bonfire_Small04.mdx", + [2004412] = "World GENERIC PASSIVEDOODADS SummerFestival SummerFest_Brazer_NoCollision.mdx", + [2004413] = "World GENERIC PASSIVEDOODADS SummerFestival SummerFest_Brazier_01.mdx", + [2004414] = "World GENERIC PASSIVEDOODADS SummerFestival SummerFest_Brazier_02.mdx", + [2004415] = "World GENERIC PASSIVEDOODADS SummerFestival SummerFest_Brazier_03.mdx", + [2004416] = "World GENERIC PASSIVEDOODADS SummerFestival SummerFest_Candle_01.mdx", + [2004417] = "World GENERIC PASSIVEDOODADS SummerFestival SummerFest_Candle_02.mdx", + [2004418] = "World GENERIC PASSIVEDOODADS SummerFestival SummerFest_Crate.mdx", + [2004419] = "World GENERIC PASSIVEDOODADS SummerFestival SummerFest_IceStone_01.mdx", + [2004420] = "World GENERIC PASSIVEDOODADS SummerFestival SummerFest_MayPole.mdx", + [2004421] = "World GENERIC PASSIVEDOODADS SummerFestival SummerFest_Pavilion_01.mdx", + [2004422] = "World GENERIC PASSIVEDOODADS SummerFestival SummerFest_Ribbon01huge.mdx", + [2004423] = "World GENERIC PASSIVEDOODADS SummerFestival SummerFest_Ribbon02.mdx", + [2004424] = "World GENERIC PASSIVEDOODADS SummerFestival SummerFest_Streamers.mdx", + [2004425] = "World GENERIC PASSIVEDOODADS SummerFestival SummerFest_Streamersx3.mdx", + [2004426] = "World GENERIC PASSIVEDOODADS SummerFestival SummerFest_Wreath01.mdx", + [2004427] = "World GENERIC PASSIVEDOODADS SummerFestival SummerFest_WreathFloating.mdx", + [2004428] = "World GENERIC PASSIVEDOODADS SummerFestival SummerFest_WreathHanginghuge.mdx", + [2004429] = "World GENERIC PASSIVEDOODADS TREASUREPILES GoldPileLarge01.mdx", + [2004430] = "World GENERIC PASSIVEDOODADS TREASUREPILES GoldPilemedium01.mdx", + [2004431] = "World GENERIC PASSIVEDOODADS TREASUREPILES GoldPilesmall01.mdx", + [2004432] = "World GENERIC PASSIVEDOODADS TestBall TestBall.mdx", + [2004433] = "World GENERIC PASSIVEDOODADS Thanksgiving G_Cornucopia.mdx", + [2004434] = "World GENERIC PASSIVEDOODADS Thanksgiving G_IndianCorn_Basket.mdx", + [2004435] = "World GENERIC PASSIVEDOODADS Thanksgiving G_PilgrimHat.mdx", + [2004436] = "World GENERIC PASSIVEDOODADS Thanksgiving G_Pumpkin.mdx", + [2004437] = "World GENERIC PASSIVEDOODADS Thanksgiving G_PumpkinwHat.mdx", + [2004438] = "World GENERIC PASSIVEDOODADS Thanksgiving G_Squash01.mdx", + [2004439] = "World GENERIC PASSIVEDOODADS Thanksgiving G_Squash02.mdx", + [2004440] = "World GENERIC PASSIVEDOODADS Thanksgiving G_Squash03.mdx", + [2004441] = "World GENERIC PASSIVEDOODADS Thanksgiving G_Squash04.mdx", + [2004442] = "World GENERIC PASSIVEDOODADS Thanksgiving G_SquashGreen.mdx", + [2004443] = "World GENERIC PASSIVEDOODADS Thanksgiving G_SquashLong.mdx", + [2004444] = "World GENERIC PASSIVEDOODADS Traps SpellObject_InvisibleTrap.mdx", + [2004445] = "World GENERIC PASSIVEDOODADS TugofWar GryphonRoost_Ruined.mdx", + [2004446] = "World GENERIC PASSIVEDOODADS TugofWar TugofWar_DustExtractor.mdx", + [2004447] = "World GENERIC PASSIVEDOODADS TugofWar TugofWar_RedDustBag01.mdx", + [2004448] = "World GENERIC PASSIVEDOODADS TugofWar TugofWar_RedSpiceExplosion.mdx", + [2004449] = "World GENERIC PASSIVEDOODADS TugofWar TugofWar_RedSpiceGeyser.mdx", + [2004450] = "World GENERIC PASSIVEDOODADS TugofWar TugofWar_RedSpiceMissile.mdx", + [2004451] = "World GENERIC PASSIVEDOODADS TugofWar TugofWar_RedSpicePile.mdx", + [2004452] = "World GENERIC PASSIVEDOODADS ValentinesDay ValentineBasket_01.mdx", + [2004453] = "World GENERIC PASSIVEDOODADS ValentinesDay ValentineUmbrella_01.mdx", + [2004454] = "World GENERIC PASSIVEDOODADS ValentinesDay ValentinesArc.mdx", + [2004455] = "World GENERIC PASSIVEDOODADS ValentinesDay ValentinesCandle.mdx", + [2004456] = "World GENERIC PASSIVEDOODADS ValentinesDay ValentinesChocolate.mdx", + [2004457] = "World GENERIC PASSIVEDOODADS ValentinesDay ValentinesChocolateGreen.mdx", + [2004458] = "World GENERIC PASSIVEDOODADS ValentinesDay ValentinesChocolatePurple.mdx", + [2004459] = "World GENERIC PASSIVEDOODADS ValentinesDay ValentinesChocolateYellow.mdx", + [2004460] = "World GENERIC PASSIVEDOODADS ValentinesDay ValentinesCologneBottle.mdx", + [2004461] = "World GENERIC PASSIVEDOODADS ValentinesDay ValentinesCrate.mdx", + [2004462] = "World GENERIC PASSIVEDOODADS ValentinesDay ValentinesPerfumeBottle.mdx", + [2004463] = "World GENERIC PASSIVEDOODADS ValentinesDay ValentinesPlant.mdx", + [2004464] = "World GENERIC PASSIVEDOODADS ValentinesDay ValentinesRibbon01.mdx", + [2004465] = "World GENERIC PASSIVEDOODADS ValentinesDay ValentinesRibbon01huge.mdx", + [2004466] = "World GENERIC PASSIVEDOODADS ValentinesDay ValentinesRibbon02.mdx", + [2004467] = "World GENERIC PASSIVEDOODADS ValentinesDay ValentinesStreamers.mdx", + [2004468] = "World GENERIC PASSIVEDOODADS ValentinesDay ValentinesStreamersx3.mdx", + [2004469] = "World GENERIC PASSIVEDOODADS ValentinesDay ValentinesWreath01.mdx", + [2004470] = "World GENERIC PASSIVEDOODADS ValentinesDay ValentinesWreath01huge.mdx", + [2004471] = "World GENERIC PASSIVEDOODADS ValentinesDay ValentinesWreathFloating.mdx", + [2004472] = "World GENERIC PASSIVEDOODADS ValentinesDay ValentinesWreathHanging.mdx", + [2004473] = "World GENERIC PASSIVEDOODADS ValentinesDay ValentinesWreathHanginghuge.mdx", + [2004474] = "World GENERIC PASSIVEDOODADS ValentinesDay Valentines_Blanket.mdx", + [2004475] = "World GENERIC PASSIVEDOODADS WATERFALLS DamWaterfall01.mdx", + [2004476] = "World GENERIC PASSIVEDOODADS WEAPONS BoneClub01.mdx", + [2004477] = "World GENERIC PASSIVEDOODADS WEAPONS FlintSpear01.mdx", + [2004478] = "World GENERIC PASSIVEDOODADS WEAPONS SkullClub01.mdx", + [2004479] = "World GENERIC PASSIVEDOODADS WEAPONS SteelSpear01.mdx", + [2004480] = "World GENERIC PASSIVEDOODADS WEAPONS WoodClub01.mdx", + [2004481] = "World GENERIC PASSIVEDOODADS WEAPONS bone_bow.mdx", + [2004482] = "World GENERIC PASSIVEDOODADS WEAPONS bone_shield.mdx", + [2004483] = "World GENERIC PASSIVEDOODADS WEAPONS caveman_club01.mdx", + [2004484] = "World GENERIC PASSIVEDOODADS WEAPONS flint_club01.mdx", + [2004485] = "World GENERIC PASSIVEDOODADS WEAPONS flint_spear02.mdx", + [2004486] = "World GENERIC PASSIVEDOODADS WEAPONS knotted_club01.mdx", + [2004487] = "World GENERIC PASSIVEDOODADS WEAPONS leather_shield.mdx", + [2004488] = "World GENERIC PASSIVEDOODADS WEAPONS naga_trident.mdx", + [2004489] = "World GENERIC PASSIVEDOODADS WEAPONS skullspear01.mdx", + [2004490] = "World GENERIC PASSIVEDOODADS WEAPONS spiked_club01.mdx", + [2004491] = "World GENERIC PASSIVEDOODADS WEAPONS stone_club01.mdx", + [2004492] = "World GENERIC PASSIVEDOODADS WEAPONS stone_spear01.mdx", + [2004493] = "World GENERIC PASSIVEDOODADS WEAPONS wicker_bow.mdx", + [2004494] = "World GENERIC PASSIVEDOODADS WEAPONS wicker_shield.mdx", + [2004495] = "World GENERIC PASSIVEDOODADS WINDBLOWN DustWestfall.mdx", + [2004496] = "World GENERIC PASSIVEDOODADS WINDBLOWN SnowDunMorogh.mdx", + [2004497] = "World GENERIC PASSIVEDOODADS Wall Bones CaveWallBones01.mdx", + [2004498] = "World GENERIC PASSIVEDOODADS Wall Bones CaveWallBones02.mdx", + [2004499] = "World GENERIC PASSIVEDOODADS Waterfall NewWaterfall.mdx", + [2004500] = "World GENERIC PASSIVEDOODADS Waterfall Waterfall-Long.mdx", + [2004501] = "World GENERIC PASSIVEDOODADS WeaponCrates WeaponCrateAllianceSword.mdx", + [2004502] = "World GENERIC PASSIVEDOODADS WeaponCrates WeaponCrateAllianceSwordLid.mdx", + [2004503] = "World GENERIC PASSIVEDOODADS WeaponCrates WeaponCrateAllianceSwordOpen.mdx", + [2004504] = "World GENERIC PASSIVEDOODADS WeaponCrates WeaponCrateHordeAxe.mdx", + [2004505] = "World GENERIC PASSIVEDOODADS WeaponCrates WeaponCrateHordeAxeLid.mdx", + [2004506] = "World GENERIC PASSIVEDOODADS WeaponCrates WeaponCrateHordeAxeOpen.mdx", + [2004507] = "World GENERIC PASSIVEDOODADS Well Well.mdx", + [2004508] = "World GENERIC PASSIVEDOODADS WindowBeam windowbeam01.mdx", + [2004509] = "World GENERIC PASSIVEDOODADS WindowBeam windowbeam02.mdx", + [2004510] = "World GENERIC PVP BATTLEFIELDBANNERS BattlefieldBannerAlliance.mdx", + [2004511] = "World GENERIC PVP BATTLEFIELDBANNERS BattlefieldBannerAllianceBW.mdx", + [2004512] = "World GENERIC PVP BATTLEFIELDBANNERS BattlefieldBannerAllianceBWFlagOnly.mdx", + [2004513] = "World GENERIC PVP BATTLEFIELDBANNERS BattlefieldBannerAllianceFlagOnly.mdx", + [2004514] = "World GENERIC PVP BATTLEFIELDBANNERS BattlefieldBannerAllianceLarge.mdx", + [2004515] = "World GENERIC PVP BATTLEFIELDBANNERS BattlefieldBannerAllianceLargeBW.mdx", + [2004516] = "World GENERIC PVP BATTLEFIELDBANNERS BattlefieldBannerAllianceStatusBar2Min.mdx", + [2004517] = "World GENERIC PVP BATTLEFIELDBANNERS BattlefieldBannerAlliance_static.mdx", + [2004518] = "World GENERIC PVP BATTLEFIELDBANNERS BattlefieldBannerHorde.mdx", + [2004519] = "World GENERIC PVP BATTLEFIELDBANNERS BattlefieldBannerHordeBW.mdx", + [2004520] = "World GENERIC PVP BATTLEFIELDBANNERS BattlefieldBannerHordeBWFlagOnly.mdx", + [2004521] = "World GENERIC PVP BATTLEFIELDBANNERS BattlefieldBannerHordeFlagOnly.mdx", + [2004522] = "World GENERIC PVP BATTLEFIELDBANNERS BattlefieldBannerHordeLarge.mdx", + [2004523] = "World GENERIC PVP BATTLEFIELDBANNERS BattlefieldBannerHordeLargeBW.mdx", + [2004524] = "World GENERIC PVP BATTLEFIELDBANNERS BattlefieldBannerHorde_static.mdx", + [2004525] = "World GENERIC PVP BATTLEFIELDBANNERS BattlefieldBannerNeutral.mdx", + [2004526] = "World GENERIC PVP BATTLEFIELDBANNERS BattlefieldBannerNeutralFlagOnly.mdx", + [2004527] = "World GENERIC PVP BATTLEFIELDBANNERS BattlefieldBannerNeutralPost.mdx", + [2004528] = "World GENERIC PVP BATTLEFIELDBANNERS BattlefieldBanner_State_Base_Plaguelands.mdx", + [2004529] = "World GENERIC PVP BATTLEFIELDBANNERS BattlefieldBanner_State_FlagA_Plaguelands.mdx", + [2004530] = "World GENERIC PVP BATTLEFIELDBANNERS BattlefieldBanner_State_FlagH_Plaguelands.mdx", + [2004531] = "World GENERIC PVP BATTLEFIELDBANNERS BattlefieldBanner_State_FlagN_Plaguelands.mdx", + [2004532] = "World GENERIC PVP CTFFLAGS AllianceCTFflag.mdx", + [2004533] = "World GENERIC PVP CTFFLAGS HordeCTFflag.mdx", + [2004534] = "World GENERIC PVP CTFFLAGS NeutralCTFflag.mdx", + [2004535] = "World GENERIC PVP CollisionWall CollisionWallPvP01.mdx", + [2004536] = "World GENERIC PVP CollisionWall CollisionWallPvP01_Textured.mdx", + [2004537] = "World GENERIC PVP Fires LowPolyFire.mdx", + [2004538] = "World GENERIC PVP Fires LowPolyFireAnim.mdx", + [2004539] = "World GENERIC PVP Runes PVP_Rune_Berserker.mdx", + [2004540] = "World GENERIC PVP Runes PVP_Rune_Invis.mdx", + [2004541] = "World GENERIC PVP Runes PVP_Rune_Restoration.mdx", + [2004542] = "World GENERIC PVP Runes PVP_Rune_Speed.mdx", + [2004543] = "World GENERIC PVP Runes PVP_Rune_Speed_Icon.mdx", + [2004544] = "World GENERIC PVP Warsong NightElfCTFFlagPlaceGlow.mdx", + [2004545] = "World GENERIC PVP Warsong OrcCTFFlagPlaceGlow.mdx", + [2004546] = "World GENERIC PVP Warsong WarsongCTFNightElfTopLight.mdx", + [2004547] = "World GENERIC PVP Warsong WarsongGulch_Orc_door01.mdx", + [2004548] = "World GENERIC PVP Warsong Windows ElfWindow.mdx", + [2004549] = "World GENERIC PVP Warsong Windows orcwindow.mdx", + [2004550] = "World GENERIC Passive Doodads Shoutbox ShoutBox_Generic.mdx", + [2004551] = "World GENERIC Passive Doodads WantedPosters NewWantedPoster01.mdx", + [2004552] = "World GENERIC Passive Doodads WantedPosters NewWantedPoster02.mdx", + [2004553] = "World GENERIC Passive Doodads WantedPosters NewWantedPoster03.mdx", + [2004554] = "World GENERIC Passive Doodads WantedPosters NewWantedPoster04.mdx", + [2004555] = "World GENERIC Pirate Passive Doodads PirateLandmarks PirateLandmark.mdx", + [2004556] = "World GENERIC QuilBoar ActiveDoodads Doors RazorfenForceField01.mdx", + [2004557] = "World GENERIC QuilBoar Passive Doodads Barbs barbs_01.mdx", + [2004558] = "World GENERIC QuilBoar Passive Doodads Barbs barbs_02.mdx", + [2004559] = "World GENERIC QuilBoar Passive Doodads Huts Quillboar_hut01.mdx", + [2004560] = "World GENERIC QuilBoar Passive Doodads Huts Quillboar_small_hut01.mdx", + [2004561] = "World GENERIC QuilBoar Passive Doodads LeanTos RazorFen Leanto03.mdx", + [2004562] = "World GENERIC QuilBoar Passive Doodads Post QuillboarPost.mdx", + [2004563] = "World GENERIC QuilBoar Passive Doodads QuilboarRockPaintings QuillboarPaintingCliff01.mdx", + [2004564] = "World GENERIC QuilBoar Passive Doodads QuilboarRockPaintings QuillboarPaintingRock01.mdx", + [2004565] = "World GENERIC QuilBoar Passive Doodads ThornCanopies ThornCanopy_01.mdx", + [2004566] = "World GENERIC QuilBoar Passive Doodads ThornCanopies ThornCanopy_02.mdx", + [2004567] = "World GENERIC QuilBoar Passive Doodads ThornCanopies ThornCanopy_03.mdx", + [2004568] = "World GENERIC QuilBoar Passive Doodads ThornCanopies razorfen_canopy01.mdx", + [2004569] = "World GENERIC QuilBoar Passive Doodads ThornCanopies razorfen_canopy01_hole.mdx", + [2004570] = "World GENERIC QuilBoar Passive Doodads ThornCanopies razorfen_canopy02.mdx", + [2004571] = "World GENERIC QuilBoar Passive Doodads Troughs RazorFenTrough01.mdx", + [2004572] = "World GENERIC Satyr Passive Doodads Container SatyrContainer01.mdx", + [2004573] = "World GENERIC Satyr Passive Doodads Container SatyrContainer02.mdx", + [2004574] = "World GENERIC Satyr Passive Doodads Container SatyrContainer03.mdx", + [2004575] = "World GENERIC Satyr Passive Doodads Tents SatyrTent01.mdx", + [2004576] = "World GENERIC Satyr Passive Doodads Tents SatyrTent02.mdx", + [2004577] = "World GENERIC Satyr Passive Doodads Tents SatyrTent03.mdx", + [2004578] = "World GENERIC TAUREN PASSIVE DOODADS ANIMALCAGES AnimalCage01.mdx", + [2004579] = "World GENERIC TAUREN PASSIVE DOODADS ANIMALCAGES AnimalCage02.mdx", + [2004580] = "World GENERIC TAUREN PASSIVE DOODADS ANIMALCAGES AnimalCage03.mdx", + [2004581] = "World GENERIC TAUREN PASSIVE DOODADS ANIMALCAGES AnimalCage04.mdx", + [2004582] = "World GENERIC TAUREN PASSIVE DOODADS ArcheryTargets ArcheryTargetDwarf01.mdx", + [2004583] = "World GENERIC TAUREN PASSIVE DOODADS ArcheryTargets ArcheryTargetHuman01.mdx", + [2004584] = "World GENERIC TAUREN PASSIVE DOODADS BOWLS TaurenBowl01.mdx", + [2004585] = "World GENERIC TAUREN PASSIVE DOODADS BOWLS TaurenBowl02.mdx", + [2004586] = "World GENERIC TAUREN PASSIVE DOODADS BOWLS TaurenBowl03.mdx", + [2004587] = "World GENERIC TAUREN PASSIVE DOODADS BOWLS TaurenBowl04.mdx", + [2004588] = "World GENERIC TAUREN PASSIVE DOODADS BOWLS TaurenBowl05.mdx", + [2004589] = "World GENERIC TAUREN PASSIVE DOODADS BOWLS TaurenBowl06.mdx", + [2004590] = "World GENERIC TAUREN PASSIVE DOODADS BOWLS TaurenBowl07.mdx", + [2004591] = "World GENERIC TAUREN PASSIVE DOODADS BOWLS TaurenBowl08.mdx", + [2004592] = "World GENERIC TAUREN PASSIVE DOODADS BOWLS TaurenBowl09.mdx", + [2004593] = "World GENERIC TAUREN PASSIVE DOODADS BabyWheels BabyWheel01.mdx", + [2004594] = "World GENERIC TAUREN PASSIVE DOODADS BallandHoop TaurenBallHoopStand.mdx", + [2004595] = "World GENERIC TAUREN PASSIVE DOODADS BallandHoop TaurenLeatherBall.mdx", + [2004596] = "World GENERIC TAUREN PASSIVE DOODADS Baskets FlatBasket01.mdx", + [2004597] = "World GENERIC TAUREN PASSIVE DOODADS Baskets LargeBasket01.mdx", + [2004598] = "World GENERIC TAUREN PASSIVE DOODADS Baskets LargeBasket02.mdx", + [2004599] = "World GENERIC TAUREN PASSIVE DOODADS Baskets LargeBasket03.mdx", + [2004600] = "World GENERIC TAUREN PASSIVE DOODADS Baskets SmallBasket01.mdx", + [2004601] = "World GENERIC TAUREN PASSIVE DOODADS Baskets SmallBasket02.mdx", + [2004602] = "World GENERIC TAUREN PASSIVE DOODADS Baskets SmallBasket03.mdx", + [2004603] = "World GENERIC TAUREN PASSIVE DOODADS CarvingTools CarvingChisel01.mdx", + [2004604] = "World GENERIC TAUREN PASSIVE DOODADS CarvingTools CarvingChisel02.mdx", + [2004605] = "World GENERIC TAUREN PASSIVE DOODADS CarvingTools CarvingHammer01.mdx", + [2004606] = "World GENERIC TAUREN PASSIVE DOODADS CarvingTools CarvingHatchet01.mdx", + [2004607] = "World GENERIC TAUREN PASSIVE DOODADS Chairs TaurenLogChair01.mdx", + [2004608] = "World GENERIC TAUREN PASSIVE DOODADS Chairs TaurenLogChair02.mdx", + [2004609] = "World GENERIC TAUREN PASSIVE DOODADS Chimes TaurenChimesBells.mdx", + [2004610] = "World GENERIC TAUREN PASSIVE DOODADS Chimes TaurenChimesWood.mdx", + [2004611] = "World GENERIC TAUREN PASSIVE DOODADS DRUMS TaurenDrumGiant01.mdx", + [2004612] = "World GENERIC TAUREN PASSIVE DOODADS DRUMS TaurenDrumMed01.mdx", + [2004613] = "World GENERIC TAUREN PASSIVE DOODADS DRUMS TaurenDrumSmall01.mdx", + [2004614] = "World GENERIC TAUREN PASSIVE DOODADS DreamCatchers DreamCatcher01.mdx", + [2004615] = "World GENERIC TAUREN PASSIVE DOODADS DreamCatchers DreamCatcher02.mdx", + [2004616] = "World GENERIC TAUREN PASSIVE DOODADS DreamCatchers DreamCatcher03.mdx", + [2004617] = "World GENERIC TAUREN PASSIVE DOODADS FuneralPyres FuneralPyre02.mdx", + [2004618] = "World GENERIC TAUREN PASSIVE DOODADS HitchingPosts TaurenHitchingPost.mdx", + [2004619] = "World GENERIC TAUREN PASSIVE DOODADS HotSpringsSteam HotSpringsSteam.mdx", + [2004620] = "World GENERIC TAUREN PASSIVE DOODADS KITES TaurenKite01.mdx", + [2004621] = "World GENERIC TAUREN PASSIVE DOODADS KITES TaurenKite02.mdx", + [2004622] = "World GENERIC TAUREN PASSIVE DOODADS KITES TaurenKite03.mdx", + [2004623] = "World GENERIC TAUREN PASSIVE DOODADS Kilns TaurenKiln01.mdx", + [2004624] = "World GENERIC TAUREN PASSIVE DOODADS KodoHide TaurenKodoHide.mdx", + [2004625] = "World GENERIC TAUREN PASSIVE DOODADS KodoHornContainers BagKodoHorns.mdx", + [2004626] = "World GENERIC TAUREN PASSIVE DOODADS KodoHornContainers BasketKodoHorns.mdx", + [2004627] = "World GENERIC TAUREN PASSIVE DOODADS KodoHornContainers BasketKodoHorns2.mdx", + [2004628] = "World GENERIC TAUREN PASSIVE DOODADS KodoSkulls KodoSkulls01.mdx", + [2004629] = "World GENERIC TAUREN PASSIVE DOODADS KodoSkulls KodoSkulls02.mdx", + [2004630] = "World GENERIC TAUREN PASSIVE DOODADS KodoSkulls KodoSkulls03.mdx", + [2004631] = "World GENERIC TAUREN PASSIVE DOODADS LAMPPOSTS TaurenLampPost.mdx", + [2004632] = "World GENERIC TAUREN PASSIVE DOODADS LAMPPOSTS TaurenLampPost02.mdx", + [2004633] = "World GENERIC TAUREN PASSIVE DOODADS LAMPPOSTS TaurenLampPostBroken.mdx", + [2004634] = "World GENERIC TAUREN PASSIVE DOODADS LAMPPOSTS TaurenLampPostBroken02.mdx", + [2004635] = "World GENERIC TAUREN PASSIVE DOODADS LOOM TaurenLoomBlue.mdx", + [2004636] = "World GENERIC TAUREN PASSIVE DOODADS LOOM TaurenLoomWhite.mdx", + [2004637] = "World GENERIC TAUREN PASSIVE DOODADS MortarPestle MortarPestle.mdx", + [2004638] = "World GENERIC TAUREN PASSIVE DOODADS PeacePipe PeacePipe05.mdx", + [2004639] = "World GENERIC TAUREN PASSIVE DOODADS PvPWalls AzsharaTaurnWallPVP_01.mdx", + [2004640] = "World GENERIC TAUREN PASSIVE DOODADS Rattles TaurenRattle01.mdx", + [2004641] = "World GENERIC TAUREN PASSIVE DOODADS Rattles TaurenRattle02.mdx", + [2004642] = "World GENERIC TAUREN PASSIVE DOODADS Sacks TaurenSack01.mdx", + [2004643] = "World GENERIC TAUREN PASSIVE DOODADS Sacks TaurenSack02.mdx", + [2004644] = "World GENERIC TAUREN PASSIVE DOODADS Sacks TaurenSack03.mdx", + [2004645] = "World GENERIC TAUREN PASSIVE DOODADS SandPaintings TaurenSandPainting01.mdx", + [2004646] = "World GENERIC TAUREN PASSIVE DOODADS SandPaintings TaurenSandPainting02.mdx", + [2004647] = "World GENERIC TAUREN PASSIVE DOODADS SandPaintings TaurenSandPainting03.mdx", + [2004648] = "World GENERIC TAUREN PASSIVE DOODADS SandPaintings TaurenSandPainting04.mdx", + [2004649] = "World GENERIC TAUREN PASSIVE DOODADS SandPaintings TaurenSandPainting05.mdx", + [2004650] = "World GENERIC TAUREN PASSIVE DOODADS SignPosts TaurenSignPost01.mdx", + [2004651] = "World GENERIC TAUREN PASSIVE DOODADS SignPosts TaurenSignPost02.mdx", + [2004652] = "World GENERIC TAUREN PASSIVE DOODADS SignPosts TaurenSignPostPointer01.mdx", + [2004653] = "World GENERIC TAUREN PASSIVE DOODADS SignPosts TaurenSignPostPointer02.mdx", + [2004654] = "World GENERIC TAUREN PASSIVE DOODADS Signs TaurenSign_Alchemist.mdx", + [2004655] = "World GENERIC TAUREN PASSIVE DOODADS Signs TaurenSign_Armory.mdx", + [2004656] = "World GENERIC TAUREN PASSIVE DOODADS Signs TaurenSign_Bank.mdx", + [2004657] = "World GENERIC TAUREN PASSIVE DOODADS Signs TaurenSign_Blacksmith.mdx", + [2004658] = "World GENERIC TAUREN PASSIVE DOODADS Signs TaurenSign_Bows.mdx", + [2004659] = "World GENERIC TAUREN PASSIVE DOODADS Signs TaurenSign_Cartography.mdx", + [2004660] = "World GENERIC TAUREN PASSIVE DOODADS Signs TaurenSign_ClothArmor.mdx", + [2004661] = "World GENERIC TAUREN PASSIVE DOODADS Signs TaurenSign_Cooking.mdx", + [2004662] = "World GENERIC TAUREN PASSIVE DOODADS Signs TaurenSign_Drinks.mdx", + [2004663] = "World GENERIC TAUREN PASSIVE DOODADS Signs TaurenSign_Enchanting.mdx", + [2004664] = "World GENERIC TAUREN PASSIVE DOODADS Signs TaurenSign_Engineering.mdx", + [2004665] = "World GENERIC TAUREN PASSIVE DOODADS Signs TaurenSign_FirstAid.mdx", + [2004666] = "World GENERIC TAUREN PASSIVE DOODADS Signs TaurenSign_Fishing.mdx", + [2004667] = "World GENERIC TAUREN PASSIVE DOODADS Signs TaurenSign_Fletcher.mdx", + [2004668] = "World GENERIC TAUREN PASSIVE DOODADS Signs TaurenSign_Food.mdx", + [2004669] = "World GENERIC TAUREN PASSIVE DOODADS Signs TaurenSign_General.mdx", + [2004670] = "World GENERIC TAUREN PASSIVE DOODADS Signs TaurenSign_Guns.mdx", + [2004671] = "World GENERIC TAUREN PASSIVE DOODADS Signs TaurenSign_Herbalist.mdx", + [2004672] = "World GENERIC TAUREN PASSIVE DOODADS Signs TaurenSign_Inn.mdx", + [2004673] = "World GENERIC TAUREN PASSIVE DOODADS Signs TaurenSign_Inscribing.mdx", + [2004674] = "World GENERIC TAUREN PASSIVE DOODADS Signs TaurenSign_LeatherArmor.mdx", + [2004675] = "World GENERIC TAUREN PASSIVE DOODADS Signs TaurenSign_Lockpicking.mdx", + [2004676] = "World GENERIC TAUREN PASSIVE DOODADS Signs TaurenSign_Maces.mdx", + [2004677] = "World GENERIC TAUREN PASSIVE DOODADS Signs TaurenSign_MagicShop.mdx", + [2004678] = "World GENERIC TAUREN PASSIVE DOODADS Signs TaurenSign_MailArmor.mdx", + [2004679] = "World GENERIC TAUREN PASSIVE DOODADS Signs TaurenSign_Meat.mdx", + [2004680] = "World GENERIC TAUREN PASSIVE DOODADS Signs TaurenSign_Poisons.mdx", + [2004681] = "World GENERIC TAUREN PASSIVE DOODADS Signs TaurenSign_Swords.mdx", + [2004682] = "World GENERIC TAUREN PASSIVE DOODADS Signs TaurenSign_Tabard.mdx", + [2004683] = "World GENERIC TAUREN PASSIVE DOODADS Signs TaurenSign_Tailor.mdx", + [2004684] = "World GENERIC TAUREN PASSIVE DOODADS Signs TaurenSign_Tavern.mdx", + [2004685] = "World GENERIC TAUREN PASSIVE DOODADS Signs TaurenSign_WarHarness.mdx", + [2004686] = "World GENERIC TAUREN PASSIVE DOODADS Signs TaurenSign_Weapons.mdx", + [2004687] = "World GENERIC TAUREN PASSIVE DOODADS Signs TaurenSign_Wine.mdx", + [2004688] = "World GENERIC TAUREN PASSIVE DOODADS Signs TaurenSign_Wyvern.mdx", + [2004689] = "World GENERIC TAUREN PASSIVE DOODADS Signs TaurenSign_mining.mdx", + [2004690] = "World GENERIC TAUREN PASSIVE DOODADS Smoke TaurenColoredSmoke01.mdx", + [2004691] = "World GENERIC TAUREN PASSIVE DOODADS TAURENTRAVOIS Travois.mdx", + [2004692] = "World GENERIC TAUREN PASSIVE DOODADS TAURENWINDMILLS TaurenWindmillA.mdx", + [2004693] = "World GENERIC TAUREN PASSIVE DOODADS TAURENWINDMILLS TaurenWindmillB.mdx", + [2004694] = "World GENERIC TAUREN PASSIVE DOODADS TAURENWINDMILLS TaurenWindmillC.mdx", + [2004695] = "World GENERIC TAUREN PASSIVE DOODADS TallStriderMeat TallStriderMeat01.mdx", + [2004696] = "World GENERIC TAUREN PASSIVE DOODADS TallStriderMeat TallStriderMeat02.mdx", + [2004697] = "World GENERIC TAUREN PASSIVE DOODADS TaurenCanoe Taurencanoe.mdx", + [2004698] = "World GENERIC TAUREN PASSIVE DOODADS TaurenCurtains TaurenBeadCurtain01.mdx", + [2004699] = "World GENERIC TAUREN PASSIVE DOODADS TaurenMummies TaurenMummy.mdx", + [2004700] = "World GENERIC TAUREN PASSIVE DOODADS TaurenPlow TaurenPlow.mdx", + [2004701] = "World GENERIC TAUREN PASSIVE DOODADS TaurenRugs TaurenRug01.mdx", + [2004702] = "World GENERIC TAUREN PASSIVE DOODADS TaurenRugs TaurenRug02.mdx", + [2004703] = "World GENERIC TAUREN PASSIVE DOODADS TaurenRugs TaurenRug03.mdx", + [2004704] = "World GENERIC TAUREN PASSIVE DOODADS TaurenRugs TaurenRug04.mdx", + [2004705] = "World GENERIC TAUREN PASSIVE DOODADS TaurenShirts TaurenShirtHangingBlue.mdx", + [2004706] = "World GENERIC TAUREN PASSIVE DOODADS TaurenShirts TaurenShirtHangingBrown.mdx", + [2004707] = "World GENERIC TAUREN PASSIVE DOODADS TaurenWallHangings TaurenWallHanging01.mdx", + [2004708] = "World GENERIC TAUREN PASSIVE DOODADS TaurenWallHangings TaurenWallHanging02.mdx", + [2004709] = "World GENERIC TAUREN PASSIVE DOODADS TaurenWallHangings TaurenWallHanging03.mdx", + [2004710] = "World GENERIC TAUREN PASSIVE DOODADS TaurenWallScrolls TaurenWallScroll01.mdx", + [2004711] = "World GENERIC TAUREN PASSIVE DOODADS TaurenWallScrolls TaurenWallScroll01Blue.mdx", + [2004712] = "World GENERIC TAUREN PASSIVE DOODADS TaurenWallScrolls TaurenWallScroll02.mdx", + [2004713] = "World GENERIC TAUREN PASSIVE DOODADS TaurenWallScrolls TaurenWallScroll02Blue.mdx", + [2004714] = "World GENERIC TAUREN PASSIVE DOODADS TaurenWallScrolls TaurenWallScroll03.mdx", + [2004715] = "World GENERIC TAUREN PASSIVE DOODADS Totems Burned_Totem01.mdx", + [2004716] = "World GENERIC TAUREN PASSIVE DOODADS Totems Burned_Totem02.mdx", + [2004717] = "World GENERIC TAUREN PASSIVE DOODADS Totems GrimTotem01.mdx", + [2004718] = "World GENERIC TAUREN PASSIVE DOODADS Totems GrimTotem02.mdx", + [2004719] = "World GENERIC TAUREN PASSIVE DOODADS Totems GrimTotem03.mdx", + [2004720] = "World GENERIC TAUREN PASSIVE DOODADS Totems GrimTotem04.mdx", + [2004721] = "World GENERIC TAUREN PASSIVE DOODADS Totems TaurenTotem01.mdx", + [2004722] = "World GENERIC TAUREN PASSIVE DOODADS Totems TaurenTotem02.mdx", + [2004723] = "World GENERIC TAUREN PASSIVE DOODADS Totems TaurenTotem03.mdx", + [2004724] = "World GENERIC TAUREN PASSIVE DOODADS Totems TaurenTotem04.mdx", + [2004725] = "World GENERIC TAUREN PASSIVE DOODADS Totems TaurenTotem05.mdx", + [2004726] = "World GENERIC TAUREN PASSIVE DOODADS Totems TaurenTotem06.mdx", + [2004727] = "World GENERIC TAUREN PASSIVE DOODADS Totems TaurenTotem07.mdx", + [2004728] = "World GENERIC TAUREN PASSIVE DOODADS Totems TaurenTotem08.mdx", + [2004729] = "World GENERIC TAUREN PASSIVE DOODADS Totems TaurenTotem09.mdx", + [2004730] = "World GENERIC TAUREN PASSIVE DOODADS WARHARNASSES WarHarnessFloor01.mdx", + [2004731] = "World GENERIC TAUREN PASSIVE DOODADS WARHARNASSES WarHarnessFloor02.mdx", + [2004732] = "World GENERIC TAUREN PASSIVE DOODADS WARHARNASSES WarHarnessFloor03.mdx", + [2004733] = "World GENERIC TAUREN PASSIVE DOODADS WARHARNASSES WarHarnessFloor04.mdx", + [2004734] = "World GENERIC TAUREN PASSIVE DOODADS WARHARNASSES WarHarnessTotem01.mdx", + [2004735] = "World GENERIC TAUREN PASSIVE DOODADS WARHARNASSES WarHarnessTotem02.mdx", + [2004736] = "World GENERIC TAUREN PASSIVE DOODADS WARHARNASSES WarHarnessTotem03.mdx", + [2004737] = "World GENERIC TAUREN PASSIVE DOODADS WARHARNASSES WarHarnessTotem04.mdx", + [2004738] = "World GENERIC TAUREN PASSIVE DOODADS WARHARNASSES WarHarnessWall01.mdx", + [2004739] = "World GENERIC TAUREN PASSIVE DOODADS WARHARNASSES WarHarnessWall02.mdx", + [2004740] = "World GENERIC TAUREN PASSIVE DOODADS WARHARNASSES WarHarnessWall03.mdx", + [2004741] = "World GENERIC TAUREN PASSIVE DOODADS WARHARNASSES WarHarnessWall04.mdx", + [2004742] = "World GENERIC TAUREN PASSIVE DOODADS WaterTroughs WaterTroughLarge01.mdx", + [2004743] = "World GENERIC TAUREN PASSIVE DOODADS WaterTroughs WaterTroughSmall01.mdx", + [2004744] = "World GENERIC TAUREN PASSIVE DOODADS Weapons Tauren_WeaponAxe01.mdx", + [2004745] = "World GENERIC TAUREN PASSIVE DOODADS Weapons Tauren_WeaponLog01.mdx", + [2004746] = "World GENERIC TAUREN PASSIVE DOODADS Weapons Tauren_WeaponLog02.mdx", + [2004747] = "World GENERIC TAUREN PASSIVE DOODADS Weapons Tauren_WeaponRack01.mdx", + [2004748] = "World GENERIC TAUREN PASSIVE DOODADS Weapons Tauren_WeaponRack02.mdx", + [2004749] = "World GENERIC TAUREN PASSIVE DOODADS Weapons Tauren_WeaponRackWrecked.mdx", + [2004750] = "World GENERIC TAUREN PASSIVE DOODADS Weapons Tauren_WeaponSpear.mdx", + [2004751] = "World GENERIC TAUREN PASSIVE DOODADS Windbreaks TaurenWindbreak01.mdx", + [2004752] = "World GENERIC TAUREN PASSIVE DOODADS Windbreaks TaurenWindbreak02.mdx", + [2004753] = "World GENERIC TAUREN PASSIVE DOODADS Windbreaks TaurenWindbreak03.mdx", + [2004754] = "World GENERIC TAUREN PASSIVE DOODADS Windbreaks TaurenWindbreak04.mdx", + [2004755] = "World GENERIC TAUREN PASSIVE DOODADS Windmills WindMillGiant01.mdx", + [2004756] = "World GENERIC TAUREN PASSIVE DOODADS Windmills WindMillSmall01.mdx", + [2004757] = "World GENERIC TAUREN PASSIVE DOODADS Windmills WindMillTall01.mdx", + [2004758] = "World GENERIC TROLL PASSIVE DOODADS MUMMYTROLLS MummyTroll01.mdx", + [2004759] = "World GENERIC TROLL PASSIVE DOODADS SNAKEGARGOYLE Snakegargoyle.mdx", + [2004760] = "World GENERIC TROLL PASSIVE DOODADS SkulTikis skulltiki.mdx", + [2004761] = "World GENERIC TROLL PASSIVE DOODADS TROLLTABLETS TrollTablet.mdx", + [2004762] = "World GENERIC TROLL PASSIVE DOODADS Tikimasks Troll_tikimask01.mdx", + [2004763] = "World GENERIC TROLL PASSIVE DOODADS Tikimasks Troll_tikimask02.mdx", + [2004764] = "World GENERIC TROLL PASSIVE DOODADS Tikimasks Troll_tikimask03.mdx", + [2004765] = "World GENERIC UNDEAD PASSIVE DOODADS BatRoost BatRoost.mdx", + [2004766] = "World GENERIC UNDEAD PASSIVE DOODADS BatRoost BatRoost02.mdx", + [2004767] = "World GENERIC UNDEAD PASSIVE DOODADS BatRoost BatRoost03.mdx", + [2004768] = "World GENERIC UNDEAD PASSIVE DOODADS Bell Lordaeron_bell_01.mdx", + [2004769] = "World GENERIC UNDEAD PASSIVE DOODADS Bell Lordaeron_bell_02.mdx", + [2004770] = "World GENERIC UNDEAD PASSIVE DOODADS Furniture Lordaeron_Bench_01.mdx", + [2004771] = "World GENERIC UNDEAD PASSIVE DOODADS Furniture Lordaeron_Bench_02.mdx", + [2004772] = "World GENERIC UNDEAD PASSIVE DOODADS LORDAERONTHRONE TyranusThrone.mdx", + [2004773] = "World GENERIC UNDEAD PASSIVE DOODADS LordaeronBrazier LordaeronBrazier01.mdx", + [2004774] = "World GENERIC UNDEAD PASSIVE DOODADS LordaeronRailing ThroneRailing01.mdx", + [2004775] = "World GENERIC UNDEAD PASSIVE DOODADS LordaeronTowers UndercityTower01.mdx", + [2004776] = "World GENERIC UNDEAD PASSIVE DOODADS LordaeronTowers UndercityTower02.mdx", + [2004777] = "World GENERIC UNDEAD PASSIVE DOODADS LordaeronTowers UndercityTower03.mdx", + [2004778] = "World GENERIC UNDEAD PASSIVE DOODADS LordaeronTowers UndercityTower04.mdx", + [2004779] = "World GENERIC UNDEAD PASSIVE DOODADS MEATWAGON MeatWagonWrecked01.mdx", + [2004780] = "World GENERIC UNDEAD PASSIVE DOODADS MeatWagonHauler MeatWagonHauler.mdx MeatWagonHauler.mdx", + [2004781] = "World GENERIC UNDEAD PASSIVE DOODADS MeatWagonPieces MeatWagonClaw.mdx", + [2004782] = "World GENERIC UNDEAD PASSIVE DOODADS MeatWagonPieces MeatWagonGrill.mdx", + [2004783] = "World GENERIC UNDEAD PASSIVE DOODADS MeatWagonPieces MeatWagonRoller.mdx", + [2004784] = "World GENERIC UNDEAD PASSIVE DOODADS MeatWagonPieces MeatWagonWheel.mdx", + [2004785] = "World GENERIC UNDEAD PASSIVE DOODADS STONEFENCE UndeadFencePost.mdx", + [2004786] = "World GENERIC UNDEAD PASSIVE DOODADS STONEFENCE UndeadStoneWroughtIronFence.mdx", + [2004787] = "World GENERIC UNDEAD PASSIVE DOODADS Signs Lordaeron_Signpost_01.mdx", + [2004788] = "World GENERIC UNDEAD PASSIVE DOODADS Signs Lordaeron_citybanner_01.mdx", + [2004789] = "World GENERIC UNDEAD PASSIVE DOODADS Signs UndeadSign_Alchemist.mdx", + [2004790] = "World GENERIC UNDEAD PASSIVE DOODADS Signs UndeadSign_Armory.mdx", + [2004791] = "World GENERIC UNDEAD PASSIVE DOODADS Signs UndeadSign_Axes.mdx", + [2004792] = "World GENERIC UNDEAD PASSIVE DOODADS Signs UndeadSign_Bags.mdx", + [2004793] = "World GENERIC UNDEAD PASSIVE DOODADS Signs UndeadSign_Bank.mdx", + [2004794] = "World GENERIC UNDEAD PASSIVE DOODADS Signs UndeadSign_BatRider.mdx", + [2004795] = "World GENERIC UNDEAD PASSIVE DOODADS Signs UndeadSign_Blacksmith.mdx", + [2004796] = "World GENERIC UNDEAD PASSIVE DOODADS Signs UndeadSign_Bows.mdx", + [2004797] = "World GENERIC UNDEAD PASSIVE DOODADS Signs UndeadSign_Bread.mdx", + [2004798] = "World GENERIC UNDEAD PASSIVE DOODADS Signs UndeadSign_Cartography.mdx", + [2004799] = "World GENERIC UNDEAD PASSIVE DOODADS Signs UndeadSign_Cheese.mdx", + [2004800] = "World GENERIC UNDEAD PASSIVE DOODADS Signs UndeadSign_ClothArmor.mdx", + [2004801] = "World GENERIC UNDEAD PASSIVE DOODADS Signs UndeadSign_Cook.mdx", + [2004802] = "World GENERIC UNDEAD PASSIVE DOODADS Signs UndeadSign_Daggers.mdx", + [2004803] = "World GENERIC UNDEAD PASSIVE DOODADS Signs UndeadSign_Drinks.mdx", + [2004804] = "World GENERIC UNDEAD PASSIVE DOODADS Signs UndeadSign_Enchanting.mdx", + [2004805] = "World GENERIC UNDEAD PASSIVE DOODADS Signs UndeadSign_Engineering.mdx", + [2004806] = "World GENERIC UNDEAD PASSIVE DOODADS Signs UndeadSign_FirstAid.mdx", + [2004807] = "World GENERIC UNDEAD PASSIVE DOODADS Signs UndeadSign_Fish.mdx", + [2004808] = "World GENERIC UNDEAD PASSIVE DOODADS Signs UndeadSign_Fletcher.mdx", + [2004809] = "World GENERIC UNDEAD PASSIVE DOODADS Signs UndeadSign_General.mdx", + [2004810] = "World GENERIC UNDEAD PASSIVE DOODADS Signs UndeadSign_Herbalist.mdx", + [2004811] = "World GENERIC UNDEAD PASSIVE DOODADS Signs UndeadSign_Inscribing.mdx", + [2004812] = "World GENERIC UNDEAD PASSIVE DOODADS Signs UndeadSign_LeatherArmor.mdx", + [2004813] = "World GENERIC UNDEAD PASSIVE DOODADS Signs UndeadSign_Lockpicking.mdx", + [2004814] = "World GENERIC UNDEAD PASSIVE DOODADS Signs UndeadSign_Maces.mdx", + [2004815] = "World GENERIC UNDEAD PASSIVE DOODADS Signs UndeadSign_Magic.mdx", + [2004816] = "World GENERIC UNDEAD PASSIVE DOODADS Signs UndeadSign_MailArmor.mdx", + [2004817] = "World GENERIC UNDEAD PASSIVE DOODADS Signs UndeadSign_Meat.mdx", + [2004818] = "World GENERIC UNDEAD PASSIVE DOODADS Signs UndeadSign_Miner.mdx", + [2004819] = "World GENERIC UNDEAD PASSIVE DOODADS Signs UndeadSign_Misc.mdx", + [2004820] = "World GENERIC UNDEAD PASSIVE DOODADS Signs UndeadSign_Poison.mdx", + [2004821] = "World GENERIC UNDEAD PASSIVE DOODADS Signs UndeadSign_Staves.mdx", + [2004822] = "World GENERIC UNDEAD PASSIVE DOODADS Signs UndeadSign_Tabard.mdx", + [2004823] = "World GENERIC UNDEAD PASSIVE DOODADS Signs UndeadSign_Tailor.mdx", + [2004824] = "World GENERIC UNDEAD PASSIVE DOODADS Signs UndeadSign_Tavern.mdx", + [2004825] = "World GENERIC UNDEAD PASSIVE DOODADS Signs UndeadSign_Weapons.mdx", + [2004826] = "World GENERIC UNDEAD PASSIVE DOODADS Signs UndeadSign_Winery.mdx", + [2004827] = "World GENERIC UNDEAD PASSIVE DOODADS Statues Lordaeron_statue_01.mdx", + [2004828] = "World GENERIC UNDEAD PASSIVE DOODADS Statues Lordaeron_statue_02.mdx", + [2004829] = "World GENERIC UNDEAD PASSIVE DOODADS Statues Lordaeron_statue_03.mdx", + [2004830] = "World GENERIC UNDEAD PASSIVE DOODADS TaxiFlags TaxiFlagUndead.mdx", + [2004831] = "World GENERIC UNDEAD PASSIVE DOODADS UNDERCITYCHANDELIERS UnDeadChandelier01.mdx", + [2004832] = "World GENERIC UNDEAD PASSIVE DOODADS UNDERCITYCHANDELIERS UnDeadChandelier02.mdx", + [2004833] = "World GENERIC UNDEAD PASSIVE DOODADS UNDERCITYSLIMEFALLS Skullspoutsplash.mdx", + [2004834] = "World GENERIC UNDEAD PASSIVE DOODADS UNDERCITYSLIMEFALLS UndercitySlimeFalls01.mdx", + [2004835] = "World GENERIC UNDEAD PASSIVE DOODADS UNDERCITYWORM UndercityMonsterBirth.mdx", + [2004836] = "World GENERIC UNDEAD PASSIVE DOODADS UNDERCITYWORM UndercityWorm.mdx", + [2004837] = "World GENERIC UNDEAD PASSIVE DOODADS UndeadAlchemyTable undead_alchemy_table.mdx", + [2004838] = "World GENERIC UNDEAD PASSIVE DOODADS UndeadCrankwheels undead_crankwheel.mdx", + [2004839] = "World GENERIC UNDEAD PASSIVE DOODADS UndeadHooks UndeadHookArm01.mdx", + [2004840] = "World GENERIC UNDEAD PASSIVE DOODADS UndeadHooks UndeadHookBody01.mdx", + [2004841] = "World GENERIC UNDEAD PASSIVE DOODADS UndeadHooks UndeadHookFoot01.mdx", + [2004842] = "World GENERIC UNDEAD PASSIVE DOODADS UndeadHooks UndeadHookHead01.mdx", + [2004843] = "World GENERIC UNDEAD PASSIVE DOODADS UndeadHooks undead_empty_hook.mdx", + [2004844] = "World GENERIC UNDEAD PASSIVE DOODADS UndeadMeter undead_meter.mdx", + [2004845] = "World GENERIC UNDEAD PASSIVE DOODADS UndeadOperatingTable undead_operation_table.mdx", + [2004846] = "World GENERIC UNDEAD PASSIVE DOODADS UndeadTelsaCoil undead_teslacoil.mdx", + [2004847] = "World GENERIC UNDEAD PASSIVE DOODADS Undercity Torches Undead_torch01.mdx", + [2004848] = "World GENERIC UNDEAD PASSIVE DOODADS Undercity Torches Undead_torch02.mdx", + [2004849] = "World GENERIC UNDEAD PASSIVE DOODADS UndercityElevators UndeadElevator.mdx", + [2004850] = "World GENERIC UNDEAD PASSIVE DOODADS UndercityElevators UndeadElevatorDoor.mdx", + [2004851] = "World GENERIC UNDEAD PASSIVE DOODADS UndercityLanterns UnDeadHangingLantern01.mdx", + [2004852] = "World GENERIC UNDEAD PASSIVE DOODADS UndercitySignPosts UnderCitySignPost.mdx", + [2004853] = "World GENERIC UNDEAD PASSIVE DOODADS UndercitySignPosts UnderCitySignPostPointer.mdx", + [2004854] = "World GENERIC UNDEAD PASSIVE DOODADS UndercitySkylight UndercitySkylight01.mdx", + [2004855] = "World GENERIC UNDEAD PASSIVE DOODADS UndercitySlimeBubbles UndercitySlimeBubbles01.mdx", + [2004856] = "World GENERIC UNDEAD PASSIVE DOODADS UndercitySlimeBubbles UndercitySlimeBubbles02.mdx", + [2004857] = "World GENERIC UNDEAD PASSIVE DOODADS UndercitySlimeSpouts skullspout01.mdx", + [2004858] = "World GENERIC Underwater PassiveDoodads Plants Plant01.mdx", + [2004859] = "World GENERIC Underwater PassiveDoodads Plants Plant02.mdx", + [2004860] = "World GENERIC Underwater PassiveDoodads Plants Plant03.mdx", + [2004861] = "World GENERIC Underwater PassiveDoodads Plants Plant04.mdx", + [2004862] = "World GENERIC Underwater PassiveDoodads Plants Plant05.mdx", + [2004863] = "World GENERIC Underwater PassiveDoodads Plants Plant06.mdx", + [2004864] = "World GENERIC Underwater PassiveDoodads Plants Plant07.mdx", + [2004865] = "World GENERIC Underwater PassiveDoodads Plants Plant08.mdx", + [2004866] = "World GENERIC Underwater PassiveDoodads Plants Plant09.mdx", + [2004867] = "World GENERIC Underwater PassiveDoodads Plants Plant10.mdx", + [2004868] = "World GENERIC Underwater PassiveDoodads Plants SeaWeed01.mdx", + [2004869] = "World GENERIC Underwater PassiveDoodads Plants SeaWeed02.mdx", + [2004870] = "World GENERIC Underwater PassiveDoodads Rocks UnderwaterRock01.mdx", + [2004871] = "World GENERIC Underwater PassiveDoodads Rocks UnderwaterRock02.mdx", + [2004872] = "World GENERIC Underwater PassiveDoodads Rocks UnderwaterRock03.mdx", + [2004873] = "World GENERIC Underwater PassiveDoodads SeaWeed GenericSeaWeed01.mdx", + [2004874] = "World GENERIC Underwater PassiveDoodads SeaWeed GenericSeaWeed02.mdx", + [2004875] = "World GENERIC Underwater PassiveDoodads SeaWeed GenericSeaWeed03.mdx", + [2004876] = "World GENERIC Underwater PassiveDoodads SeaWeed GenericSeaWeed04.mdx", + [2004877] = "World GENERIC Underwater PassiveDoodads SeaWeed GenericSeaWeed05.mdx", + [2004878] = "World GENERIC Underwater PassiveDoodads SeaWeed GenericSeaWeed06.mdx", + [2004879] = "World GENERIC Underwater PassiveDoodads SeaWeed GenericSeaWeed07.mdx", + [2004880] = "World GENERIC Underwater PassiveDoodads SeaWeed GenericSeaWeed08.mdx", + [2004881] = "World GENERIC Underwater PassiveDoodads SeaWeed GenericSeaWeed09.mdx", + [2004882] = "World GENERIC Underwater PassiveDoodads SeaWeed GenericSeaWeed10.mdx", + [2004883] = "World GENERIC Underwater PassiveDoodads SeaWeed GenericSeaWeed11.mdx", + [2004884] = "World GENERIC Underwater PassiveDoodads SeaWeed GenericSeaWeed12.mdx", + [2004885] = "World GENERIC Underwater PassiveDoodads SeaWeed GenericSeaWeed13.mdx", + [2004886] = "World GENERIC Underwater PassiveDoodads SeaWeed GenericSeaWeed14.mdx", + [2004887] = "World Goober DarkIronKegShotgun.mdx", + [2004888] = "World Goober G_AlchemySet01.mdx", + [2004889] = "World Goober G_AltarOfSouls.mdx", + [2004890] = "World Goober G_AppleBob_01.mdx", + [2004891] = "World Goober G_Barrel.mdx", + [2004892] = "World Goober G_BarrelExplode.mdx", + [2004893] = "World Goober G_BellShip.mdx", + [2004894] = "World Goober G_Blanket.mdx", + [2004895] = "World Goober G_BlanketGrill.mdx", + [2004896] = "World Goober G_BlanketUmbrella.mdx", + [2004897] = "World Goober G_BombFactory.mdx", + [2004898] = "World Goober G_Bonfire.mdx", + [2004899] = "World Goober G_Book01.mdx", + [2004900] = "World Goober G_BookOpenMediumBlack.mdx", + [2004901] = "World Goober G_BookOpenMediumBlue.mdx", + [2004902] = "World Goober G_BookOpenMediumBrown.mdx", + [2004903] = "World Goober G_BookOpenMediumGreen.mdx", + [2004904] = "World Goober G_BookOpenMediumRed.mdx", + [2004905] = "World Goober G_BookTrapArm.mdx", + [2004906] = "World Goober G_BookTrapEye.mdx", + [2004907] = "World Goober G_BookTrapFire.mdx", + [2004908] = "World Goober G_Brazier01.mdx", + [2004909] = "World Goober G_BrazierOrcBlue.mdx", + [2004910] = "World Goober G_BrazierOrcGreen.mdx", + [2004911] = "World Goober G_BrazierOrcPurple.mdx", + [2004912] = "World Goober G_BrazierOrcRed.mdx", + [2004913] = "World Goober G_BrazierTroll.mdx", + [2004914] = "World Goober G_ButtonBigRed.mdx", + [2004915] = "World Goober G_Cage.mdx", + [2004916] = "World Goober G_Cage02.mdx", + [2004917] = "World Goober G_Cage03.mdx", + [2004918] = "World Goober G_CageBase.mdx", + [2004919] = "World Goober G_CageDoorBamboo.mdx", + [2004920] = "World Goober G_CameraShake01.mdx", + [2004921] = "World Goober G_CameraShake02.mdx", + [2004922] = "World Goober G_CameraShake03.mdx", + [2004923] = "World Goober G_CandyBucket_01.mdx", + [2004924] = "World Goober G_Cannon01.mdx", + [2004925] = "World Goober G_CaveIn.mdx", + [2004926] = "World Goober G_ChestAhnQiraj.mdx", + [2004927] = "World Goober G_ChestTitan.mdx", + [2004928] = "World Goober G_ConjureTable.mdx", + [2004929] = "World Goober G_ControlConsoleTonk.mdx", + [2004930] = "World Goober G_ControlConsoleZippelin.mdx", + [2004931] = "World Goober G_Crate01.mdx", + [2004932] = "World Goober G_Crate02.mdx", + [2004933] = "World Goober G_CrateAnimal.mdx", + [2004934] = "World Goober G_DragonEggBlack.mdx", + [2004935] = "World Goober G_DragonEggFreeze.mdx", + [2004936] = "World Goober G_DragonEggPrismatic01.mdx", + [2004937] = "World Goober G_DwarvenMemorial.mdx", + [2004938] = "World Goober G_EggAlien.mdx", + [2004939] = "World Goober G_EggSpider.mdx", + [2004940] = "World Goober G_EpicBrazierBlue.mdx", + [2004941] = "World Goober G_EpicBrazierYellow.mdx", + [2004942] = "World Goober G_EssenceDistiller.mdx", + [2004943] = "World Goober G_ExplosiveTrap.mdx", + [2004944] = "World Goober G_Firework01Blue.mdx", + [2004945] = "World Goober G_Firework01Green.mdx", + [2004946] = "World Goober G_Firework01Purple.mdx", + [2004947] = "World Goober G_Firework01Red.mdx", + [2004948] = "World Goober G_Firework01White.mdx", + [2004949] = "World Goober G_Firework01Yellow.mdx", + [2004950] = "World Goober G_Firework02Blue.mdx", + [2004951] = "World Goober G_Firework02Green.mdx", + [2004952] = "World Goober G_Firework02Purple.mdx", + [2004953] = "World Goober G_Firework02Red.mdx", + [2004954] = "World Goober G_Firework02White.mdx", + [2004955] = "World Goober G_Firework02Yellow.mdx", + [2004956] = "World Goober G_Firework03Red.mdx", + [2004957] = "World Goober G_FireworkLauncher01.mdx", + [2004958] = "World Goober G_FireworkLauncher02.mdx", + [2004959] = "World Goober G_FishingBobber.mdx", + [2004960] = "World Goober G_Fissure.mdx", + [2004961] = "World Goober G_FlyingMachine.mdx", + [2004962] = "World Goober G_FoggerPoison.mdx", + [2004963] = "World Goober G_FreezingTrap.mdx", + [2004964] = "World Goober G_FrostTrap.mdx", + [2004965] = "World Goober G_GhostTrap.mdx", + [2004966] = "World Goober G_GhostTrapChest.mdx", + [2004967] = "World Goober G_Ghost_01.mdx", + [2004968] = "World Goober G_GnomeMultiBox.mdx", + [2004969] = "World Goober G_GnomeSparklematic.mdx", + [2004970] = "World Goober G_GnomeTerminal.mdx", + [2004971] = "World Goober G_GnomeTerminal_Collision.mdx", + [2004972] = "World Goober G_GoblinTeleporter.mdx", + [2004973] = "World Goober G_GongRFD.mdx", + [2004974] = "World Goober G_GongTroll01.mdx", + [2004975] = "World Goober G_GraveBurst.mdx", + [2004976] = "World Goober G_GraveBurstTanaris.mdx", + [2004977] = "World Goober G_HangingSkeleton_01.mdx", + [2004978] = "World Goober G_HologramBaseTanaris.mdx", + [2004979] = "World Goober G_HologramDwarf.mdx", + [2004980] = "World Goober G_HologramTrogg.mdx", + [2004981] = "World Goober G_HolyLightWell.mdx", + [2004982] = "World Goober G_IceBlock.mdx", + [2004983] = "World Goober G_IceSpike_Impact.mdx", + [2004984] = "World Goober G_ImmolationTrap.mdx", + [2004985] = "World Goober G_ImpBottle.mdx", + [2004986] = "World Goober G_JewelBlack.mdx", + [2004987] = "World Goober G_JewelBlue.mdx", + [2004988] = "World Goober G_JewelRed.mdx", + [2004989] = "World Goober G_Keg.mdx", + [2004990] = "World Goober G_KruskSpear.mdx", + [2004991] = "World Goober G_LeverMetal.mdx", + [2004992] = "World Goober G_ManaRift.mdx", + [2004993] = "World Goober G_MausoleumSeal.mdx", + [2004994] = "World Goober G_MausoleumSealTrigger.mdx", + [2004995] = "World Goober G_MineCar.mdx", + [2004996] = "World Goober G_Mortar.mdx", + [2004997] = "World Goober G_MummyTroll.mdx", + [2004998] = "World Goober G_NETablet.mdx", + [2004999] = "World Goober G_Promotion_Purple.mdx", + [2005000] = "World Goober G_PulsatingPlant.mdx", + [2005001] = "World Goober G_Pumpkin_02.mdx", + [2005002] = "World Goober G_Pumpkin_03.mdx", + [2005003] = "World Goober G_RelicNECat.mdx", + [2005004] = "World Goober G_RelicNECup.mdx", + [2005005] = "World Goober G_RelicNEFigurine.mdx", + [2005006] = "World Goober G_RelicNESphere.mdx", + [2005007] = "World Goober G_RitualOfDoom.mdx", + [2005008] = "World Goober G_RitualOfSouls.mdx", + [2005009] = "World Goober G_RitualOfSouls_Blue.mdx", + [2005010] = "World Goober G_RuneBlue01.mdx", + [2005011] = "World Goober G_RuneGroundBlue01.mdx", + [2005012] = "World Goober G_RuneGroundGreen01.mdx", + [2005013] = "World Goober G_RuneGroundPurple01.mdx", + [2005014] = "World Goober G_ScourgeRuneCircleCrystal.mdx", + [2005015] = "World Goober G_Scroll01.mdx", + [2005016] = "World Goober G_ScryingBowl.mdx", + [2005017] = "World Goober G_SoundObject.mdx", + [2005018] = "World Goober G_SoundPortal.mdx", + [2005019] = "World Goober G_Spirittotem.mdx", + [2005020] = "World Goober G_SporeMushroom.mdx", + [2005021] = "World Goober G_StonesOfBinding.mdx", + [2005022] = "World Goober G_TentBurninator.mdx", + [2005023] = "World Goober G_Torch01.mdx", + [2005024] = "World Goober G_TorchLever.mdx", + [2005025] = "World Goober G_UldamanMap.mdx", + [2005026] = "World Goober G_VooDooTrollForceField.mdx", + [2005027] = "World Goober G_Water_Barrel_01.mdx", + [2005028] = "World Goober G_Water_Buckets_01.mdx", + [2005029] = "World Goober G_Water_Buckets_02.mdx", + [2005030] = "World Goober G_Watermelon.mdx", + [2005031] = "World Goober G_WellOfSouls_Channeling.mdx", + [2005032] = "World Goober G_WitchBroom_01.mdx", + [2005033] = "World Goober G_WitchHat_01.mdx", + [2005034] = "World Goober G_XMasTree.mdx", + [2005035] = "World Goober G_bombwagon.mdx", + [2005036] = "World Goober Goblin_Lottery.mdx", + [2005037] = "World Goober LandMineAlteracValley.mdx", + [2005038] = "World KALIMDOR ASHENVALE ActiveDoodads MannarothSpear AshenvaleMannarothSpear.mdx", + [2005039] = "World KALIMDOR ASHENVALE PASSIVEDOODADS AshenvaleRocks AshenvaleRock01.mdx", + [2005040] = "World KALIMDOR ASHENVALE PASSIVEDOODADS AshenvaleRocks AshenvaleRock02.mdx", + [2005041] = "World KALIMDOR ASHENVALE PASSIVEDOODADS AshenvaleRocks AshenvaleRock03.mdx", + [2005042] = "World KALIMDOR ASHENVALE PASSIVEDOODADS AshenvaleRocks AshenvaleRock04.mdx", + [2005043] = "World KALIMDOR ASHENVALE PASSIVEDOODADS AshenvaleRoots AshenvaleRoots01.mdx", + [2005044] = "World KALIMDOR ASHENVALE PASSIVEDOODADS AshenvaleRoots AshenvaleRoots02.mdx", + [2005045] = "World KALIMDOR ASHENVALE PASSIVEDOODADS AshenvaleRoots AshenvaleRoots03.mdx", + [2005046] = "World KALIMDOR ASHENVALE PASSIVEDOODADS AshenvaleRoots AshenvaleRoots04.mdx", + [2005047] = "World KALIMDOR ASHENVALE PASSIVEDOODADS AshenvaleStumps AshenvaleStump01.mdx", + [2005048] = "World KALIMDOR ASHENVALE PASSIVEDOODADS AshenvaleStumps AshenvaleStump02.mdx", + [2005049] = "World KALIMDOR ASHENVALE PASSIVEDOODADS AshenvaleStumps AshenvaleTreeStump01.mdx", + [2005050] = "World KALIMDOR ASHENVALE PASSIVEDOODADS AshenvaleStumps AshenvaleTreeStump02.mdx", + [2005051] = "World KALIMDOR ASHENVALE PASSIVEDOODADS AshenvaleStumps AshenvaleTreeStump03.mdx", + [2005052] = "World KALIMDOR ASHENVALE PASSIVEDOODADS AshenvaleStumps AshenvaleTreeStump04.mdx", + [2005053] = "World KALIMDOR ASHENVALE PASSIVEDOODADS AshenvaleTreeLogs AshenvaleTreeLog01.mdx", + [2005054] = "World KALIMDOR ASHENVALE PASSIVEDOODADS AshenvaleTreeLogs AshenvaleTreeLog02.mdx", + [2005055] = "World KALIMDOR ASHENVALE PASSIVEDOODADS AshenvaleTrees AshenvaleCutTree01.mdx", + [2005056] = "World KALIMDOR ASHENVALE PASSIVEDOODADS AshenvaleTrees AshenvaleCutTree02.mdx", + [2005057] = "World KALIMDOR ASHENVALE PASSIVEDOODADS AshenvaleTrees AshenvaleTree01.mdx", + [2005058] = "World KALIMDOR ASHENVALE PASSIVEDOODADS AshenvaleTrees AshenvaleTree02.mdx", + [2005059] = "World KALIMDOR ASHENVALE PASSIVEDOODADS AshenvaleTrees AshenvaleTree03.mdx", + [2005060] = "World KALIMDOR ASHENVALE PASSIVEDOODADS AshenvaleTrees AshenvaleTree04.mdx", + [2005061] = "World KALIMDOR ASHENVALE PASSIVEDOODADS AshenvaleTrees AshenvaleTree05.mdx", + [2005062] = "World KALIMDOR ASHENVALE PASSIVEDOODADS Bush AshenvalePlantStardust.mdx", + [2005063] = "World KALIMDOR ASHENVALE PASSIVEDOODADS SATYRTOTEM AshenSatyrTotem01.mdx", + [2005064] = "World KALIMDOR ASHENVALE PASSIVEDOODADS SATYRTOTEM AshenSatyrTotem02.mdx", + [2005065] = "World KALIMDOR ASHENVALE PASSIVEDOODADS SATYRTOTEM AshenSatyrTotem03.mdx", + [2005066] = "World KALIMDOR ASHENVALE PASSIVEDOODADS SATYRTOTEM AshenSatyrTotem04.mdx", + [2005067] = "World KALIMDOR ASHENVALE PASSIVEDOODADS SATYRTOTEM AshenSatyrTotem05.mdx", + [2005068] = "World KALIMDOR ASHENVALE PASSIVEDOODADS SHRINES CorruptDryadShrine01.mdx", + [2005069] = "World KALIMDOR ASHENVALE PASSIVEDOODADS SHRINES DryadShrine01.mdx", + [2005070] = "World KALIMDOR ASHENVALE PASSIVEDOODADS SHRINES DryadShrine02.mdx", + [2005071] = "World KALIMDOR ASHENVALE PASSIVEDOODADS SHRINES NEShrine.mdx", + [2005072] = "World KALIMDOR ASHENVALE PASSIVEDOODADS SHRINES NEShrineSatyr.mdx", + [2005073] = "World KALIMDOR ASHENVALE PASSIVEDOODADS SatyrRuins RuinsSatyrAltPillar01.mdx", + [2005074] = "World KALIMDOR ASHENVALE PASSIVEDOODADS SatyrRuins RuinsSatyrArch.mdx", + [2005075] = "World KALIMDOR ASHENVALE PASSIVEDOODADS SatyrRuins RuinsSatyrPillar01.mdx", + [2005076] = "World KALIMDOR ASHENVALE PASSIVEDOODADS SatyrRuins RuinsSatyrPillar02.mdx", + [2005077] = "World KALIMDOR ASHENVALE PASSIVEDOODADS SatyrRuins RuinsSatyrPillar03.mdx", + [2005078] = "World KALIMDOR ASHENVALE PASSIVEDOODADS SatyrRuins RuinsSatyrWall01.mdx", + [2005079] = "World KALIMDOR ASHENVALE PASSIVEDOODADS SatyrRuins RuinsSatyrWall02.mdx", + [2005080] = "World KALIMDOR ASHENVALE PASSIVEDOODADS SatyrRuins RuinsSatyrWall03.mdx", + [2005081] = "World KALIMDOR ASHENVALE PASSIVEDOODADS SatyrRuins RuinsSatyrWall04.mdx", + [2005082] = "World KALIMDOR ASHENVALE PASSIVEDOODADS SatyrRuins RuinsSatyrWall05.mdx", + [2005083] = "World KALIMDOR ASHENVALE PASSIVEDOODADS SatyrRuins RuinsSatyrWall06.mdx", + [2005084] = "World KALIMDOR AZSHARA ActiveDoodads ArcaneCrystal ArcaneCrystal.mdx", + [2005085] = "World KALIMDOR AZSHARA ActiveDoodads StoneTablets AzsharaStoneTablet01.mdx", + [2005086] = "World KALIMDOR AZSHARA ActiveDoodads StoneTablets AzsharaStoneTablet02.mdx", + [2005087] = "World KALIMDOR AZSHARA ActiveDoodads StoneTablets AzsharaStoneTablet03.mdx", + [2005088] = "World KALIMDOR AZSHARA ActiveDoodads StoneTablets AzsharaStoneTablet04.mdx", + [2005089] = "World KALIMDOR AZSHARA PASSIVEDOODADS Anemone Anemone01.mdx", + [2005090] = "World KALIMDOR AZSHARA PASSIVEDOODADS Anemone Anemone02.mdx", + [2005091] = "World KALIMDOR AZSHARA PASSIVEDOODADS Anemone SeaUrchin01.mdx", + [2005092] = "World KALIMDOR AZSHARA PASSIVEDOODADS BUBBLES AzsharaBubble2.mdx", + [2005093] = "World KALIMDOR AZSHARA PASSIVEDOODADS BUBBLES AzsharaBubbles.mdx", + [2005094] = "World KALIMDOR AZSHARA PASSIVEDOODADS BarnacleRock BarnacleRock01.mdx", + [2005095] = "World KALIMDOR AZSHARA PASSIVEDOODADS Coral Coral01.mdx", + [2005096] = "World KALIMDOR AZSHARA PASSIVEDOODADS Coral CoralTree01.mdx", + [2005097] = "World KALIMDOR AZSHARA PASSIVEDOODADS Coral CoralTree02.mdx", + [2005098] = "World KALIMDOR AZSHARA PASSIVEDOODADS DRAGONSTATUES AzharaDragonStatue_01.mdx", + [2005099] = "World KALIMDOR AZSHARA PASSIVEDOODADS DRAGONSTATUES AzharaDragonStatue_02.mdx", + [2005100] = "World KALIMDOR AZSHARA PASSIVEDOODADS DebrisWall AzsharaDebrisWall.mdx", + [2005101] = "World KALIMDOR AZSHARA PASSIVEDOODADS NagaFlags NagaFlag01.mdx", + [2005102] = "World KALIMDOR AZSHARA PASSIVEDOODADS NagaFlags NagaFlag02.mdx", + [2005103] = "World KALIMDOR AZSHARA PASSIVEDOODADS NagaPagoda NagaPagoda02.mdx", + [2005104] = "World KALIMDOR AZSHARA PASSIVEDOODADS Rocks AzsharaRock01.mdx", + [2005105] = "World KALIMDOR AZSHARA PASSIVEDOODADS Rocks AzsharaRock02.mdx", + [2005106] = "World KALIMDOR AZSHARA PASSIVEDOODADS Rocks AzsharaRock03.mdx", + [2005107] = "World KALIMDOR AZSHARA PASSIVEDOODADS Rocks AzsharaRock04.mdx", + [2005108] = "World KALIMDOR AZSHARA PASSIVEDOODADS Rocks AzsharaRock05.mdx", + [2005109] = "World KALIMDOR AZSHARA PASSIVEDOODADS Seashells AzsharaShell01.mdx", + [2005110] = "World KALIMDOR AZSHARA PASSIVEDOODADS Seashells AzsharaShell02.mdx", + [2005111] = "World KALIMDOR AZSHARA PASSIVEDOODADS Seashells AzsharaShell03.mdx", + [2005112] = "World KALIMDOR AZSHARA PASSIVEDOODADS Seashells AzsharaShell04.mdx", + [2005113] = "World KALIMDOR AZSHARA PASSIVEDOODADS Seashells AzsharaShell05.mdx", + [2005114] = "World KALIMDOR AZSHARA PASSIVEDOODADS Seashells AzsharaShell06.mdx", + [2005115] = "World KALIMDOR AZSHARA PASSIVEDOODADS Seashells AzsharaShell07.mdx", + [2005116] = "World KALIMDOR AZSHARA PASSIVEDOODADS Seashells AzsharaShell08.mdx", + [2005117] = "World KALIMDOR AZSHARA PASSIVEDOODADS Seaweed SeaWeed01.mdx", + [2005118] = "World KALIMDOR AZSHARA PASSIVEDOODADS Seaweed SeaWeed02.mdx", + [2005119] = "World KALIMDOR AZSHARA PASSIVEDOODADS Starfish Starfish02.mdx", + [2005120] = "World KALIMDOR AZSHARA PASSIVEDOODADS Trees AZR_Tree01.mdx", + [2005121] = "World KALIMDOR AZSHARA PASSIVEDOODADS Trees AZR_Tree02.mdx", + [2005122] = "World KALIMDOR AZSHARA PASSIVEDOODADS Trees AZR_Tree03.mdx", + [2005123] = "World KALIMDOR AZSHARA PASSIVEDOODADS Trees AZR_Tree04.mdx", + [2005124] = "World KALIMDOR AZSHARA PASSIVEDOODADS Trees AZR_Tree05.mdx", + [2005125] = "World KALIMDOR AZSHARA PASSIVEDOODADS Trees AZR_Tree06.mdx", + [2005126] = "World KALIMDOR AZSHARA PASSIVEDOODADS Trees AZR_Tree07.mdx", + [2005127] = "World KALIMDOR AZSHARA SeaPlants Anemity01_02000 Anemity01_02.mdx", + [2005128] = "World KALIMDOR AZSHARA SeaPlants BarnacleRock01_04 BarnacleRock01_04.mdx", + [2005129] = "World KALIMDOR AZSHARA SeaPlants Coral03_01 Coral03_01.mdx", + [2005130] = "World KALIMDOR AZSHARA SeaPlants CoralTree01_06 CoralTree01_06.mdx", + [2005131] = "World KALIMDOR AZSHARA SeaPlants CoralTree02_07 CoralTree02_07.mdx", + [2005132] = "World KALIMDOR AZSHARA SeaPlants SeaUrchin01_05 SeaUrchin01_05.mdx", + [2005133] = "World KALIMDOR AZSHARA SeaPlants StarFish01_02 StarFish01_02.mdx", + [2005134] = "World KALIMDOR BLACKFATHOM PASSIVEDOODADS Braziers BFD_NagaBrazier.mdx", + [2005135] = "World KALIMDOR BLACKFATHOM PASSIVEDOODADS Furniture BFD_stonechair01.mdx", + [2005136] = "World KALIMDOR BLACKFATHOM PASSIVEDOODADS Furniture BFD_stonechair02.mdx", + [2005137] = "World KALIMDOR BLACKFATHOM PASSIVEDOODADS Furniture BFD_stonechair03.mdx", + [2005138] = "World KALIMDOR BLACKFATHOM PASSIVEDOODADS Lights BFD_WallLight01.mdx", + [2005139] = "World KALIMDOR BLACKFATHOM PASSIVEDOODADS Lights BFD_WallLight03.mdx", + [2005140] = "World KALIMDOR BLACKFATHOM PASSIVEDOODADS Lights BFD_WallLight04.mdx", + [2005141] = "World KALIMDOR BLACKFATHOM PASSIVEDOODADS Lights BFD_WallLight05.mdx", + [2005142] = "World KALIMDOR BLACKFATHOM PASSIVEDOODADS Lights BFD_WallLight06.mdx", + [2005143] = "World KALIMDOR BLACKFATHOM PASSIVEDOODADS Lights BFD_WallLight07.mdx", + [2005144] = "World KALIMDOR BLACKFATHOM PASSIVEDOODADS Lights BFD_WallTorch01.mdx", + [2005145] = "World KALIMDOR BLACKFATHOM PASSIVEDOODADS Lights BFD_Wisp01.mdx", + [2005146] = "World KALIMDOR BLACKFATHOM PASSIVEDOODADS Lights BFD_WispLarge.mdx", + [2005147] = "World KALIMDOR BLACKFATHOM PASSIVEDOODADS Lights BFD_WispMed.mdx", + [2005148] = "World KALIMDOR BLACKFATHOM PASSIVEDOODADS Lights BFD_WispSmall.mdx", + [2005149] = "World KALIMDOR BLACKFATHOM PASSIVEDOODADS Lights BFD_WispSmallGreen.mdx", + [2005150] = "World KALIMDOR BLACKFATHOM PASSIVEDOODADS Lights BFD_WispSmallPurple.mdx", + [2005151] = "World KALIMDOR BLACKFATHOM PASSIVEDOODADS Pottery BFD_BrokenPottery01.mdx", + [2005152] = "World KALIMDOR BLACKFATHOM PASSIVEDOODADS Pottery BFD_BrokenPottery02.mdx", + [2005153] = "World KALIMDOR BLACKFATHOM PASSIVEDOODADS Pottery Blackfathom_pot01.mdx", + [2005154] = "World KALIMDOR BLACKFATHOM PASSIVEDOODADS Pottery Blackfathom_pot02.mdx", + [2005155] = "World KALIMDOR BLACKFATHOM PASSIVEDOODADS Pottery Blackfathom_pot03.mdx", + [2005156] = "World KALIMDOR BLACKFATHOM PASSIVEDOODADS Pottery Blackfathom_pot04.mdx", + [2005157] = "World KALIMDOR BLACKFATHOM PASSIVEDOODADS STATUE BFD_StatueNagaPriestess.mdx", + [2005158] = "World KALIMDOR BLACKFATHOM PASSIVEDOODADS Waterfalls BFD_Waterfalls10.mdx", + [2005159] = "World KALIMDOR BLACKFATHOM PASSIVEDOODADS Waterfalls BFD_Waterfalls11.mdx", + [2005160] = "World KALIMDOR BLACKFATHOM PASSIVEDOODADS Waterfalls BFD_waterfalls01.mdx", + [2005161] = "World KALIMDOR BLACKFATHOM PASSIVEDOODADS Waterfalls BFD_waterfalls02.mdx", + [2005162] = "World KALIMDOR BLACKFATHOM PASSIVEDOODADS Waterfalls BFD_waterfalls03.mdx", + [2005163] = "World KALIMDOR BLACKFATHOM PASSIVEDOODADS Waterfalls BFD_waterfalls04.mdx", + [2005164] = "World KALIMDOR BLACKFATHOM PASSIVEDOODADS Waterfalls BFD_waterfalls05.mdx", + [2005165] = "World KALIMDOR BLACKFATHOM PASSIVEDOODADS Waterfalls BFD_waterfalls06.mdx", + [2005166] = "World KALIMDOR BLACKFATHOM PASSIVEDOODADS Waterfalls BFD_waterfalls07.mdx", + [2005167] = "World KALIMDOR BLACKFATHOM PASSIVEDOODADS Waterfalls BFD_waterfalls08.mdx", + [2005168] = "World KALIMDOR BLACKFATHOM PASSIVEDOODADS Waterfalls BFD_waterfalls09.mdx", + [2005169] = "World KALIMDOR Barrens PassiveDoodads Bones KotoBeastBone01.mdx", + [2005170] = "World KALIMDOR Barrens PassiveDoodads Bones KotoBeastBone02.mdx", + [2005171] = "World KALIMDOR Barrens PassiveDoodads Bones KotoBeastBone03.mdx", + [2005172] = "World KALIMDOR Barrens PassiveDoodads Bones KotoBeastBone04.mdx", + [2005173] = "World KALIMDOR Barrens PassiveDoodads Bones KotoBeastBone05.mdx", + [2005174] = "World KALIMDOR Barrens PassiveDoodads Bushes BarrensBush01.mdx", + [2005175] = "World KALIMDOR Barrens PassiveDoodads Bushes BarrensBush02.mdx", + [2005176] = "World KALIMDOR Barrens PassiveDoodads Bushes BarrensBush03.mdx", + [2005177] = "World KALIMDOR Barrens PassiveDoodads KodoEggs KodoEgg01.mdx", + [2005178] = "World KALIMDOR Barrens PassiveDoodads KodoEggs KodoEgg02.mdx", + [2005179] = "World KALIMDOR Barrens PassiveDoodads LampPosts BarrensLampPost01.mdx", + [2005180] = "World KALIMDOR Barrens PassiveDoodads MkShrine MKShrine.mdx", + [2005181] = "World KALIMDOR Barrens PassiveDoodads Mounds BarrensTermiteMound01.mdx", + [2005182] = "World KALIMDOR Barrens PassiveDoodads Mounds BarrensTermiteMound02.mdx", + [2005183] = "World KALIMDOR Barrens PassiveDoodads Mounds BarrensTermiteMound03.mdx", + [2005184] = "World KALIMDOR Barrens PassiveDoodads Mounds BarrensTermiteMound04.mdx", + [2005185] = "World KALIMDOR Barrens PassiveDoodads RaptorHuts RaptorHut01.mdx", + [2005186] = "World KALIMDOR Barrens PassiveDoodads RaptorHuts RaptorHut02.mdx", + [2005187] = "World KALIMDOR Barrens PassiveDoodads Trees BarrensTree01.mdx", + [2005188] = "World KALIMDOR Barrens PassiveDoodads Trees BarrensTree02.mdx", + [2005189] = "World KALIMDOR Barrens PassiveDoodads Trees BarrensTree03.mdx", + [2005190] = "World KALIMDOR Barrens PassiveDoodads Trees BarrensTree04.mdx", + [2005191] = "World KALIMDOR Barrens PassiveDoodads Trees BarrensTree05.mdx", + [2005192] = "World KALIMDOR Barrens PassiveDoodads Trees BarrensTree06.mdx", + [2005193] = "World KALIMDOR Barrens PassiveDoodads Trees BarrensTree07.mdx", + [2005194] = "World KALIMDOR Barrens PassiveDoodads Trees BarrensTree08.mdx", + [2005195] = "World KALIMDOR Barrens PassiveDoodads Trees BarrensTree09.mdx", + [2005196] = "World KALIMDOR Barrens PassiveDoodads Trees BarrensTree10.mdx", + [2005197] = "World KALIMDOR Barrens PassiveDoodads Wagon BarrensBustedWagon.mdx", + [2005198] = "World KALIMDOR Barrens PassiveDoodads Wagon BarrensWagon01.mdx", + [2005199] = "World KALIMDOR Barrens PassiveDoodads Wagon BarrensWagon02.mdx", + [2005200] = "World KALIMDOR Barrens PassiveDoodads Wagon BarrensWagon03.mdx", + [2005201] = "World KALIMDOR Barrens PassiveDoodads waterwheel orc_waterwheel.mdx", + [2005202] = "World KALIMDOR Buildings Desolace CentaurHornCover.mdx", + [2005203] = "World KALIMDOR Buildings Desolace CentaurHornMouthpiece.mdx", + [2005204] = "World KALIMDOR DARKSHORE ACTIVEDOODADS ILLIDANCRYSTAL IllidanCrystal01.mdx", + [2005205] = "World KALIMDOR DARKSHORE GiantSeaTurtle GiantSeaTurtle03.mdx", + [2005206] = "World KALIMDOR DARKSHORE GiantSeaTurtle GiantSeaTurtle04.mdx", + [2005207] = "World KALIMDOR DARKSHORE GiantSnakeSkulls SnakeSkullGiant.mdx", + [2005208] = "World KALIMDOR DARKSHORE GiantSnakeSpines SnakeSpineGiant01.mdx", + [2005209] = "World KALIMDOR DARKSHORE GiantSnakeSpines SnakeSpineGiant02.mdx", + [2005210] = "World KALIMDOR DARKSHORE GiantSnakeSpines SnakeSpineGiant03.mdx", + [2005211] = "World KALIMDOR DARKSHORE PASSIVEDOODADS Anchors DarkshoreAnchor01.mdx", + [2005212] = "World KALIMDOR DARKSHORE PASSIVEDOODADS BUSHES DarkshoreBush01.mdx", + [2005213] = "World KALIMDOR DARKSHORE PASSIVEDOODADS BUSHES DarkshoreBush02.mdx", + [2005214] = "World KALIMDOR DARKSHORE PASSIVEDOODADS BUSHES DarkshoreBush03.mdx", + [2005215] = "World KALIMDOR DARKSHORE PASSIVEDOODADS BUSHES DarkshoreBush04.mdx", + [2005216] = "World KALIMDOR DARKSHORE PASSIVEDOODADS BUSHES DarkshoreBush05.mdx", + [2005217] = "World KALIMDOR DARKSHORE PASSIVEDOODADS Boats DarkshoreBoat.mdx", + [2005218] = "World KALIMDOR DARKSHORE PASSIVEDOODADS DOCKS DarkshoreDock01.mdx", + [2005219] = "World KALIMDOR DARKSHORE PASSIVEDOODADS DOCKS DarkshoreDockRamp01.mdx", + [2005220] = "World KALIMDOR DARKSHORE PASSIVEDOODADS DarkshoreLogs DarkshoreLog01.mdx", + [2005221] = "World KALIMDOR DARKSHORE PASSIVEDOODADS DarkshoreLogs DarkshoreLog02.mdx", + [2005222] = "World KALIMDOR DARKSHORE PASSIVEDOODADS DarkshoreTrees DarkshoreTree01.mdx", + [2005223] = "World KALIMDOR DARKSHORE PASSIVEDOODADS DarkshoreTrees DarkshoreTree02.mdx", + [2005224] = "World KALIMDOR DARKSHORE PASSIVEDOODADS DarkshoreTrees DarkshoreTree03.mdx", + [2005225] = "World KALIMDOR DARKSHORE PASSIVEDOODADS DarkshoreTrees DarkshoreTree04.mdx", + [2005226] = "World KALIMDOR DARKSHORE PASSIVEDOODADS DarkshoreTrees DarkshoreTree05.mdx", + [2005227] = "World KALIMDOR DARKSHORE PASSIVEDOODADS DarkshoreTrees DarkshoreTree06.mdx", + [2005228] = "World KALIMDOR DARKSHORE PASSIVEDOODADS DarkshoreTrees DarkshoreTree07.mdx", + [2005229] = "World KALIMDOR DARKSHORE PASSIVEDOODADS DarkshoreTrees DarkshoreTree08.mdx", + [2005230] = "World KALIMDOR DARKSHORE PASSIVEDOODADS Dock DarkshoreDock.mdx", + [2005231] = "World KALIMDOR DARKSHORE PASSIVEDOODADS FallenTreeRoots DarkshoreFallenTreeRoots01.mdx", + [2005232] = "World KALIMDOR DARKSHORE PASSIVEDOODADS Gazeebo DarkshoreGazeebo.mdx", + [2005233] = "World KALIMDOR DARKSHORE PASSIVEDOODADS Gazeebo DarkshoreGazeeboRuined01.mdx", + [2005234] = "World KALIMDOR DARKSHORE PASSIVEDOODADS GlaiveMasterRoots GlaiveMasterRoots01.mdx", + [2005235] = "World KALIMDOR DARKSHORE PASSIVEDOODADS GlaiveMasterRoots GlaiveMasterRoots02.mdx", + [2005236] = "World KALIMDOR DARKSHORE PASSIVEDOODADS GlaiveMasterTentacles GlaiveMasterTentacle.mdx", + [2005237] = "World KALIMDOR DARKSHORE PASSIVEDOODADS GlaiveMasterTentacles GlaiveMasterTentacleEnd.mdx", + [2005238] = "World KALIMDOR DARKSHORE PASSIVEDOODADS GlaiveMaster GlaiveMaster.mdx", + [2005239] = "World KALIMDOR DARKSHORE PASSIVEDOODADS LAMP DarkStreetLamp.mdx", + [2005240] = "World KALIMDOR DARKSHORE PASSIVEDOODADS LAMP DarkStreetLamp02.mdx", + [2005241] = "World KALIMDOR DARKSHORE PASSIVEDOODADS Moongate DarkshoreMoonGate.mdx", + [2005242] = "World KALIMDOR DARKSHORE PASSIVEDOODADS Moongate DarkshoreMoonGateBase.mdx", + [2005243] = "World KALIMDOR DARKSHORE PASSIVEDOODADS Moongate DarkshoreMoonGateTop.mdx", + [2005244] = "World KALIMDOR DARKSHORE PASSIVEDOODADS Rocks DarkshoreRock03.mdx", + [2005245] = "World KALIMDOR DARKSHORE PASSIVEDOODADS Ruins DarkshoreRock01.mdx", + [2005246] = "World KALIMDOR DARKSHORE PASSIVEDOODADS Ruins DarkshoreRock02.mdx", + [2005247] = "World KALIMDOR DARKSHORE PASSIVEDOODADS Ruins DarkshoreRuinPillar01.mdx", + [2005248] = "World KALIMDOR DARKSHORE PASSIVEDOODADS Ruins DarkshoreRuinPillar02.mdx", + [2005249] = "World KALIMDOR DARKSHORE PASSIVEDOODADS Ruins DarkshoreRuinPillar03.mdx", + [2005250] = "World KALIMDOR DARKSHORE PASSIVEDOODADS Ruins DarkshoreRuinPillar04.mdx", + [2005251] = "World KALIMDOR DARKSHORE PASSIVEDOODADS Ruins DarkshoreRuinPillar05.mdx", + [2005252] = "World KALIMDOR DARKSHORE PASSIVEDOODADS Ruins DarkshoreRuinWall01.mdx", + [2005253] = "World KALIMDOR DARKSHORE PASSIVEDOODADS Ruins DarkshoreRuinWall02.mdx", + [2005254] = "World KALIMDOR DARKSHORE PASSIVEDOODADS Ruins DarkshoreRuinWall03.mdx", + [2005255] = "World KALIMDOR DARKSHORE PASSIVEDOODADS Ruins DarkshoreRuinWall04.mdx", + [2005256] = "World KALIMDOR DARKSHORE PASSIVEDOODADS Ruins DarkshoreRuinWall05.mdx", + [2005257] = "World KALIMDOR DARKSHORE PASSIVEDOODADS Ruins DarkshoreRuinWall06.mdx", + [2005258] = "World KALIMDOR DARKSHORE PASSIVEDOODADS Trees DarkshoreFallenTree01.mdx", + [2005259] = "World KALIMDOR DARKSHORE THRESHADONCORPSE DarkshoreThreshadonCorpse.mdx", + [2005260] = "World KALIMDOR DESOLACE PASSIVEDOODADS DefiledTotem01.mdx", + [2005261] = "World KALIMDOR DESOLACE PASSIVEDOODADS DefiledTotem02.mdx", + [2005262] = "World KALIMDOR DESOLACE PASSIVEDOODADS KODOGRAVEBONES BannerCentaur01.mdx", + [2005263] = "World KALIMDOR DESOLACE PASSIVEDOODADS KODOGRAVEBONES BannerCentaur02.mdx", + [2005264] = "World KALIMDOR DESOLACE PASSIVEDOODADS KODOGRAVEBONES BannerCentaur03.mdx", + [2005265] = "World KALIMDOR DESOLACE PASSIVEDOODADS KODOGRAVEBONES BannerCentaur04.mdx", + [2005266] = "World KALIMDOR DESOLACE PASSIVEDOODADS KODOGRAVEBONES KodoGrave01.mdx", + [2005267] = "World KALIMDOR DESOLACE PASSIVEDOODADS KODOGRAVEBONES KodoGrave02.mdx", + [2005268] = "World KALIMDOR DESOLACE PASSIVEDOODADS KODOGRAVEBONES KodoGrave03.mdx", + [2005269] = "World KALIMDOR DESOLACE PASSIVEDOODADS KODOGRAVEBONES KodoGrave04.mdx", + [2005270] = "World KALIMDOR DESOLACE PASSIVEDOODADS KODOGRAVEBONES KodoGrave05.mdx", + [2005271] = "World KALIMDOR DESOLACE PASSIVEDOODADS KODOGRAVEBONES KodoGrave07.mdx", + [2005272] = "World KALIMDOR DESOLACE PASSIVEDOODADS KODOGRAVEBONES KodoGrave08.mdx", + [2005273] = "World KALIMDOR DESOLACE PASSIVEDOODADS KODOGRAVEBONES KodoGrave09.mdx", + [2005274] = "World KALIMDOR DESOLACE PASSIVEDOODADS KODOGRAVEBONES KodoGrave10.mdx", + [2005275] = "World KALIMDOR DESOLACE PASSIVEDOODADS KODOGRAVEBONES KodoGrave11.mdx", + [2005276] = "World KALIMDOR DESOLACE PASSIVEDOODADS KODOGRAVEBONES KodoGrave12.mdx", + [2005277] = "World KALIMDOR DESOLACE PASSIVEDOODADS KODOGRAVEBONES KodoGrave13.mdx", + [2005278] = "World KALIMDOR DESOLACE PASSIVEDOODADS Mushrooms DesolaceMushroom.mdx", + [2005279] = "World KALIMDOR DESOLACE PASSIVEDOODADS Rocks DesolaceRock01.mdx", + [2005280] = "World KALIMDOR DESOLACE PASSIVEDOODADS Rocks DesolaceRock02.mdx", + [2005281] = "World KALIMDOR DESOLACE PASSIVEDOODADS Rocks DesolaceRock03.mdx", + [2005282] = "World KALIMDOR DESOLACE PASSIVEDOODADS Rocks DesolaceRock04.mdx", + [2005283] = "World KALIMDOR DESOLACE PASSIVEDOODADS SpearWalls CentaurSpears01.mdx", + [2005284] = "World KALIMDOR DESOLACE PASSIVEDOODADS SpearWalls CentaurSpears02.mdx", + [2005285] = "World KALIMDOR DESOLACE PASSIVEDOODADS SpearWalls CentaurSpearsCone.mdx", + [2005286] = "World KALIMDOR DIREMAUL ACTIVEDOODADS CrystalCorrupter CorruptedCrystalShard.mdx", + [2005287] = "World KALIMDOR DIREMAUL ACTIVEDOODADS CrystalCorrupter CorruptedCrystalVine.mdx", + [2005288] = "World KALIMDOR DIREMAUL ACTIVEDOODADS Doors DireMaulBossForceField.mdx", + [2005289] = "World KALIMDOR DIREMAUL ACTIVEDOODADS Doors DireMaulDoor01.mdx", + [2005290] = "World KALIMDOR DIREMAUL ACTIVEDOODADS Doors DireMaulDoor02.mdx", + [2005291] = "World KALIMDOR DIREMAUL ACTIVEDOODADS Doors DireMaulDoor03.mdx", + [2005292] = "World KALIMDOR DIREMAUL ACTIVEDOODADS Doors DireMaulDoor04.mdx", + [2005293] = "World KALIMDOR DIREMAUL ACTIVEDOODADS Doors DireMaulSmallInstanceDoor.mdx", + [2005294] = "World KALIMDOR DIREMAUL ACTIVEDOODADS LIGHTCRYSTAL DireMaulCrystalGenerator.mdx", + [2005295] = "World KALIMDOR DIREMAUL ACTIVEDOODADS NIGHTMARESUMMONING NightmareBell.mdx", + [2005296] = "World KALIMDOR DIREMAUL ACTIVEDOODADS NIGHTMARESUMMONING NightmareCandle.mdx", + [2005297] = "World KALIMDOR DIREMAUL ACTIVEDOODADS NIGHTMARESUMMONING NightmareStone.mdx", + [2005298] = "World KALIMDOR DIREMAUL ACTIVEDOODADS WarlockCircle WarlockMountRitualCircle01.mdx", + [2005299] = "World KALIMDOR DIREMAUL ACTIVEDOODADS WarlockCircle WarlockMountRitualCircle01a.mdx", + [2005300] = "World KALIMDOR DIREMAUL ACTIVEDOODADS WarlockCircle WarlockMountRitualCircle01b.mdx", + [2005301] = "World KALIMDOR DIREMAUL ACTIVEDOODADS WarlockCircle WarlockMountRitualCircle01c.mdx", + [2005302] = "World KALIMDOR DIREMAUL ACTIVEDOODADS WarlockCircle WarlockMountRitualCircle01d.mdx", + [2005303] = "World KALIMDOR DIREMAUL PassiveDoodads AnimalHeadStatues DireMaulStoneBearStatue.mdx", + [2005304] = "World KALIMDOR DIREMAUL PassiveDoodads AnimalHeadStatues DireMaulStoneDeerStatue.mdx", + [2005305] = "World KALIMDOR DIREMAUL PassiveDoodads AnimalHeadStatues DireMaulStoneOwlStatue.mdx", + [2005306] = "World KALIMDOR DIREMAUL PassiveDoodads Banners DireMaul_Banner.mdx", + [2005307] = "World KALIMDOR DIREMAUL PassiveDoodads Banners DireMaul_Banner_Post.mdx", + [2005308] = "World KALIMDOR DIREMAUL PassiveDoodads Banners DireMaul_Banner_Tattered.mdx", + [2005309] = "World KALIMDOR DIREMAUL PassiveDoodads Banners DireMaul_Banner_Torn01.mdx", + [2005310] = "World KALIMDOR DIREMAUL PassiveDoodads Banners DireMaul_Banner_Torn02.mdx", + [2005311] = "World KALIMDOR DIREMAUL PassiveDoodads Banners OgrePostBanner.mdx", + [2005312] = "World KALIMDOR DIREMAUL PassiveDoodads Banners OgreStapledWallBanner.mdx", + [2005313] = "World KALIMDOR DIREMAUL PassiveDoodads Banners OgreStapledWallBanner02.mdx", + [2005314] = "World KALIMDOR DIREMAUL PassiveDoodads DeadTrees BrokenFeralastree01.mdx", + [2005315] = "World KALIMDOR DIREMAUL PassiveDoodads GoldenHighElfStatue01.mdx", + [2005316] = "World KALIMDOR DIREMAUL PassiveDoodads GoldenHighElfStatue02.mdx", + [2005317] = "World KALIMDOR DIREMAUL PassiveDoodads GoldenHighElfStatue03.mdx", + [2005318] = "World KALIMDOR DIREMAUL PassiveDoodads OGRECAMPFIRES OgreCampfire01.mdx", + [2005319] = "World KALIMDOR DIREMAUL PassiveDoodads OGRELADDER DireMaulOgreLadder01.mdx", + [2005320] = "World KALIMDOR DIREMAUL PassiveDoodads OgrePosts DireMaulOgrePost01.mdx", + [2005321] = "World KALIMDOR DIREMAUL PassiveDoodads OgrePosts DireMaulOgrePost02.mdx", + [2005322] = "World KALIMDOR DIREMAUL PassiveDoodads OgrePosts DireMaulOgrePost03.mdx", + [2005323] = "World KALIMDOR DIREMAUL PassiveDoodads OgrePosts DireMaulOgrePost04.mdx", + [2005324] = "World KALIMDOR DIREMAUL PassiveDoodads OgreScaffolding DireMaulOgreScaffolding01.mdx", + [2005325] = "World KALIMDOR DIREMAUL PassiveDoodads Rubble DireMaulFloorRubble01.mdx", + [2005326] = "World KALIMDOR DIREMAUL PassiveDoodads Rubble DireMaulFloorRubble02.mdx", + [2005327] = "World KALIMDOR DIREMAUL PassiveDoodads Rubble DireMaulFloorRubble03.mdx", + [2005328] = "World KALIMDOR DIREMAUL PassiveDoodads Rubble DireMaulGroundRubble01.mdx", + [2005329] = "World KALIMDOR DIREMAUL PassiveDoodads Rubble DireMaulGroundRubble02.mdx", + [2005330] = "World KALIMDOR DIREMAUL PassiveDoodads Rubble DireMaulGroundRubble03.mdx", + [2005331] = "World KALIMDOR DIREMAUL PassiveDoodads Rubble DireMaulStoneStatue01.mdx", + [2005332] = "World KALIMDOR DIREMAUL PassiveDoodads Rubble DireMaulStoneStatue02.mdx", + [2005333] = "World KALIMDOR DIREMAUL PassiveDoodads Rubble DireMaulStoneStatue03.mdx", + [2005334] = "World KALIMDOR DIREMAUL PassiveDoodads Rubble DireMaulStoneStatue04.mdx", + [2005335] = "World KALIMDOR DIREMAUL PassiveDoodads Rubble DireMaulTreeRoot01.mdx", + [2005336] = "World KALIMDOR DIREMAUL PassiveDoodads Rubble DireMaulTreeRoot02.mdx", + [2005337] = "World KALIMDOR DIREMAUL PassiveDoodads Rubble DireMaulTreeRoot03.mdx", + [2005338] = "World KALIMDOR DIREMAUL PassiveDoodads Rubble DireMaulTreeRoot04.mdx", + [2005339] = "World KALIMDOR DIREMAUL PassiveDoodads Rubble DireMaulTreeRoot05.mdx", + [2005340] = "World KALIMDOR DIREMAUL PassiveDoodads Rubble DireMaulTreeRoot06.mdx", + [2005341] = "World KALIMDOR DIREMAUL PassiveDoodads Rubble DireMaulTrimRubble01.mdx", + [2005342] = "World KALIMDOR DIREMAUL PassiveDoodads Rubble DireMaulTrimRubble02.mdx", + [2005343] = "World KALIMDOR DIREMAUL PassiveDoodads Rubble DireMaulTrimRubble03.mdx", + [2005344] = "World KALIMDOR DIREMAUL PassiveDoodads Rubble DireMaulWallRubble01.mdx", + [2005345] = "World KALIMDOR DIREMAUL PassiveDoodads Rubble DireMaulWallRubble02.mdx", + [2005346] = "World KALIMDOR DIREMAUL PassiveDoodads Rubble DireMaulWallRubble03.mdx", + [2005347] = "World KALIMDOR DIREMAUL PassiveDoodads TreePlanters DeadTreePlanterBox.mdx", + [2005348] = "World KALIMDOR DIREMAUL PassiveDoodads TreePlanters DeadTreePlanterBox02.mdx", + [2005349] = "World KALIMDOR DIREMAUL PassiveDoodads TreePlanters DeadTreePlanterBox03.mdx", + [2005350] = "World KALIMDOR DIREMAUL PassiveDoodads Trees GardenTreeCanopy.mdx", + [2005351] = "World KALIMDOR DIREMAUL PassiveDoodads Trees GardenTreeFeralas.mdx", + [2005352] = "World KALIMDOR DIREMAUL PassiveDoodads Trees GardenTreeFeralasB.mdx", + [2005353] = "World KALIMDOR DIREMAUL PassiveDoodads Trees GardenTreeHuge.mdx", + [2005354] = "World KALIMDOR DIREMAUL PassiveDoodads VORTEX DiremaulMagicVortex.mdx", + [2005355] = "World KALIMDOR DRAGONCAVE PASSIVEDOODADS Artifact DragonCaveArtifact.mdx", + [2005356] = "World KALIMDOR DRAGONCAVE PASSIVEDOODADS BLACKDRAGONEGGS BlackDragonEgg01.mdx", + [2005357] = "World KALIMDOR DRAGONCAVE PASSIVEDOODADS BLACKDRAGONEGGS BlackDragonEgg02.mdx", + [2005358] = "World KALIMDOR DRAGONCAVE PASSIVEDOODADS BLACKDRAGONEGGS BlackDragonEgg03.mdx", + [2005359] = "World KALIMDOR DRAGONCAVE PASSIVEDOODADS CHARREDBODIES CharredBody01.mdx", + [2005360] = "World KALIMDOR DRAGONCAVE PASSIVEDOODADS CHARREDBODIES CharredBody02.mdx", + [2005361] = "World KALIMDOR DRAGONCAVE PASSIVEDOODADS CHARREDBODIES CharredBody03.mdx", + [2005362] = "World KALIMDOR DRAGONCAVE PASSIVEDOODADS CHARREDBODIES CharredBody04.mdx", + [2005363] = "World KALIMDOR DRAGONCAVE PASSIVEDOODADS CHARREDBODIES CharredBody05.mdx", + [2005364] = "World KALIMDOR DRAGONCAVE PASSIVEDOODADS CHARREDBODIES CharredBody06.mdx", + [2005365] = "World KALIMDOR DRAGONCAVE PASSIVEDOODADS CHARREDBODIES CharredBody07.mdx", + [2005366] = "World KALIMDOR DRAGONCAVE PASSIVEDOODADS CHARREDBODIES DragonFireCharmark01.mdx", + [2005367] = "World KALIMDOR DRAGONCAVE PASSIVEDOODADS CHARREDBODIES DragonFireCharmark02.mdx", + [2005368] = "World KALIMDOR DRAGONCAVE PASSIVEDOODADS FireEmbers DragonCaveFireEmbers.mdx", + [2005369] = "World KALIMDOR Durotar PassiveDoodads Bridge TaurenBridge01Lantern.mdx", + [2005370] = "World KALIMDOR Durotar PassiveDoodads Bushes CactusApple01.mdx", + [2005371] = "World KALIMDOR Durotar PassiveDoodads Bushes DurotarBush01.mdx", + [2005372] = "World KALIMDOR Durotar PassiveDoodads Bushes DurotarBush02.mdx", + [2005373] = "World KALIMDOR Durotar PassiveDoodads Bushes DurotarBush03.mdx", + [2005374] = "World KALIMDOR Durotar PassiveDoodads Bushes DurotarBush04.mdx", + [2005375] = "World KALIMDOR Durotar PassiveDoodads Rocks DurotarCliffRock01.mdx", + [2005376] = "World KALIMDOR Durotar PassiveDoodads Rocks DurotarCliffRock02.mdx", + [2005377] = "World KALIMDOR Durotar PassiveDoodads Rocks DurotarCliffRock03.mdx", + [2005378] = "World KALIMDOR Durotar PassiveDoodads Rocks DurotarCliffRock04.mdx", + [2005379] = "World KALIMDOR Durotar PassiveDoodads Rocks DurotarCliffRock05.mdx", + [2005380] = "World KALIMDOR Durotar PassiveDoodads Rocks DurotarCliffRock06.mdx", + [2005381] = "World KALIMDOR Durotar PassiveDoodads Rocks DurotarCliffRock07.mdx", + [2005382] = "World KALIMDOR Durotar PassiveDoodads Rocks DurotarCliffRock08.mdx", + [2005383] = "World KALIMDOR Durotar PassiveDoodads Rocks DurotarRock01.mdx", + [2005384] = "World KALIMDOR Durotar PassiveDoodads Rocks DurotarRock02.mdx", + [2005385] = "World KALIMDOR Durotar PassiveDoodads Rocks DurotarRock03.mdx", + [2005386] = "World KALIMDOR Durotar PassiveDoodads Rocks DurotarRock04.mdx", + [2005387] = "World KALIMDOR Durotar PassiveDoodads Rocks DurotarRock05.mdx", + [2005388] = "World KALIMDOR Durotar PassiveDoodads Rocks DurotarRock06.mdx", + [2005389] = "World KALIMDOR Durotar PassiveDoodads Rocks DurotarRock07.mdx", + [2005390] = "World KALIMDOR Durotar PassiveDoodads Rocks DurotarRock08.mdx", + [2005391] = "World KALIMDOR Durotar PassiveDoodads Rocks FlatRock01.mdx", + [2005392] = "World KALIMDOR Durotar PassiveDoodads Trees DurotarPalm01.mdx", + [2005393] = "World KALIMDOR Durotar PassiveDoodads Trees DurotarPalm02.mdx", + [2005394] = "World KALIMDOR Durotar PassiveDoodads Trees DurotarPalm03.mdx", + [2005395] = "World KALIMDOR Durotar PassiveDoodads Trees DurotarTree01.mdx", + [2005396] = "World KALIMDOR Durotar PassiveDoodads Trees DurotarTree02.mdx", + [2005397] = "World KALIMDOR Durotar PassiveDoodads Trees DurotarTree03.mdx", + [2005398] = "World KALIMDOR Durotar PassiveDoodads Trees DurotarTree04.mdx", + [2005399] = "World KALIMDOR Durotar PassiveDoodads Trees DurotarTree05.mdx", + [2005400] = "World KALIMDOR Durotar PassiveDoodads Trees DurotarTree06.mdx", + [2005401] = "World KALIMDOR Durotar PassiveDoodads Trees DurotarTree08.mdx", + [2005402] = "World KALIMDOR Dustwallow PassiveDoodads Bushes DustwallowBush01.mdx", + [2005403] = "World KALIMDOR Dustwallow PassiveDoodads Bushes DustwallowBush02.mdx", + [2005404] = "World KALIMDOR Dustwallow PassiveDoodads Bushes DustwallowShrub01.mdx", + [2005405] = "World KALIMDOR Dustwallow PassiveDoodads Bushes DustwallowShrub02.mdx", + [2005406] = "World KALIMDOR Dustwallow PassiveDoodads Bushes DustwallowShrub03.mdx", + [2005407] = "World KALIMDOR Dustwallow PassiveDoodads Bushes DustwallowShrub04.mdx", + [2005408] = "World KALIMDOR Dustwallow PassiveDoodads Outposts DustwallowOutpost01.mdx", + [2005409] = "World KALIMDOR Dustwallow PassiveDoodads Outposts DustwallowOutpost02.mdx", + [2005410] = "World KALIMDOR Dustwallow PassiveDoodads Outposts DustwallowOutpost03.mdx", + [2005411] = "World KALIMDOR Dustwallow PassiveDoodads Outposts DustwallowOutpost04.mdx", + [2005412] = "World KALIMDOR Dustwallow PassiveDoodads Outposts DustwallowOutpost05.mdx", + [2005413] = "World KALIMDOR Dustwallow PassiveDoodads Outposts DustwallowOutpost06.mdx", + [2005414] = "World KALIMDOR Dustwallow PassiveDoodads Trees DustwallowTree01.mdx", + [2005415] = "World KALIMDOR Dustwallow PassiveDoodads Trees DustwallowTree02.mdx", + [2005416] = "World KALIMDOR Dustwallow PassiveDoodads Trees DustwallowTree03.mdx", + [2005417] = "World KALIMDOR Dustwallow PassiveDoodads Trees DustwallowTree04.mdx", + [2005418] = "World KALIMDOR Dustwallow PassiveDoodads Trees DustwallowTree05.mdx", + [2005419] = "World KALIMDOR Dustwallow PassiveDoodads Trees DustwallowTree06.mdx", + [2005420] = "World KALIMDOR Dustwallow PassiveDoodads Trees DustwallowTree07.mdx", + [2005421] = "World KALIMDOR Dustwallow PassiveDoodads Trees DustwallowTree08.mdx", + [2005422] = "World KALIMDOR Dustwallow PassiveDoodads Walls DuskwallowStoneWall01.mdx", + [2005423] = "World KALIMDOR Dustwallow PassiveDoodads Walls DuskwallowStoneWall02.mdx", + [2005424] = "World KALIMDOR Dustwallow PassiveDoodads Walls DuskwallowStoneWallPost.mdx", + [2005425] = "World KALIMDOR Dustwallow PassiveDoodads Walls DustwallowWall01.mdx", + [2005426] = "World KALIMDOR Dustwallow PassiveDoodads Walls DustwallowWall02.mdx", + [2005427] = "World KALIMDOR Dustwallow PassiveDoodads Walls DustwallowWall03.mdx", + [2005428] = "World KALIMDOR Dustwallow PassiveDoodads Walls DustwallowWallPost.mdx", + [2005429] = "World KALIMDOR FELWOOD ActiveDoodads IllidanCrystal IllidanCrystal02.mdx", + [2005430] = "World KALIMDOR FELWOOD PASSIVEDOODADS Bush FelwoodBush01.mdx", + [2005431] = "World KALIMDOR FELWOOD PASSIVEDOODADS Bush FelwoodBush02.mdx", + [2005432] = "World KALIMDOR FELWOOD PASSIVEDOODADS Bush FelwoodBush03.mdx", + [2005433] = "World KALIMDOR FELWOOD PASSIVEDOODADS Bush FelwoodBush04.mdx", + [2005434] = "World KALIMDOR FELWOOD PASSIVEDOODADS DesolaceBubbles DesolaceBubble01.mdx", + [2005435] = "World KALIMDOR FELWOOD PASSIVEDOODADS DesolaceBubbles DesolaceBubbles01.mdx", + [2005436] = "World KALIMDOR FELWOOD PASSIVEDOODADS FelwoodBubbles FelwoodBubble01.mdx", + [2005437] = "World KALIMDOR FELWOOD PASSIVEDOODADS FelwoodBubbles FelwoodBubbles01.mdx", + [2005438] = "World KALIMDOR FELWOOD PASSIVEDOODADS FelwoodMushrooms FelwoodMushroom01.mdx", + [2005439] = "World KALIMDOR FELWOOD PASSIVEDOODADS FelwoodMushrooms FelwoodMushroom02.mdx", + [2005440] = "World KALIMDOR FELWOOD PASSIVEDOODADS FelwoodMushrooms FelwoodMushroomAnim.mdx", + [2005441] = "World KALIMDOR FELWOOD PASSIVEDOODADS Lamp FelwoodLamp01.mdx", + [2005442] = "World KALIMDOR FELWOOD PASSIVEDOODADS PLANTSQUEST NightDragon01.mdx", + [2005443] = "World KALIMDOR FELWOOD PASSIVEDOODADS PLANTSQUEST NightDragon02.mdx", + [2005444] = "World KALIMDOR FELWOOD PASSIVEDOODADS PLANTSQUEST SongFlower01.mdx", + [2005445] = "World KALIMDOR FELWOOD PASSIVEDOODADS PLANTSQUEST SongFlower02.mdx", + [2005446] = "World KALIMDOR FELWOOD PASSIVEDOODADS PLANTSQUEST WhipperRoot01.mdx", + [2005447] = "World KALIMDOR FELWOOD PASSIVEDOODADS PLANTSQUEST WhipperRoot02.mdx", + [2005448] = "World KALIMDOR FELWOOD PASSIVEDOODADS PLANTSQUEST Windblossom01.mdx", + [2005449] = "World KALIMDOR FELWOOD PASSIVEDOODADS PLANTSQUEST Windblossom02.mdx", + [2005450] = "World KALIMDOR FELWOOD PASSIVEDOODADS Roots FelwoodRoots01.mdx", + [2005451] = "World KALIMDOR FELWOOD PASSIVEDOODADS Roots FelwoodRoots02.mdx", + [2005452] = "World KALIMDOR FELWOOD PASSIVEDOODADS Roots FelwoodRoots03.mdx", + [2005453] = "World KALIMDOR FELWOOD PASSIVEDOODADS Roots FelwoodRoots04.mdx", + [2005454] = "World KALIMDOR FELWOOD PASSIVEDOODADS Roots FelwoodRoots05.mdx", + [2005455] = "World KALIMDOR FELWOOD PASSIVEDOODADS TreeEants PetrifiedTreant01.mdx", + [2005456] = "World KALIMDOR FELWOOD PASSIVEDOODADS TreeEants PetrifiedTreant02.mdx", + [2005457] = "World KALIMDOR FELWOOD PASSIVEDOODADS TreeEants PetrifiedTreant03.mdx", + [2005458] = "World KALIMDOR FELWOOD PASSIVEDOODADS Tree FelwoodTree01.mdx", + [2005459] = "World KALIMDOR FELWOOD PASSIVEDOODADS Tree FelwoodTree02.mdx", + [2005460] = "World KALIMDOR FELWOOD PASSIVEDOODADS Tree FelwoodTree03.mdx", + [2005461] = "World KALIMDOR FELWOOD PASSIVEDOODADS Tree FelwoodTree04.mdx", + [2005462] = "World KALIMDOR FELWOOD PASSIVEDOODADS Tree FelwoodTree05.mdx", + [2005463] = "World KALIMDOR FELWOOD PASSIVEDOODADS Tree FelwoodTree06.mdx", + [2005464] = "World KALIMDOR FELWOOD PASSIVEDOODADS Tree FelwoodTree07.mdx", + [2005465] = "World KALIMDOR FELWOOD PASSIVEDOODADS Tree FelwoodTreeAnim01.mdx", + [2005466] = "World KALIMDOR FELWOOD PASSIVEDOODADS Tree FelwoodTreeAnim02.mdx", + [2005467] = "World KALIMDOR FELWOOD PASSIVEDOODADS Tree FelwoodTreeAnim03.mdx", + [2005468] = "World KALIMDOR FELWOOD PASSIVEDOODADS Tree FelwoodTreeStump01.mdx", + [2005469] = "World KALIMDOR FELWOOD PASSIVEDOODADS Tree FelwoodTreeSub01.mdx", + [2005470] = "World KALIMDOR FELWOOD PASSIVEDOODADS Tree FelwoodTreeSub02.mdx", + [2005471] = "World KALIMDOR FELWOOD PASSIVEDOODADS Tree FelwoodTreeSub03.mdx", + [2005472] = "World KALIMDOR FELWOOD PASSIVEDOODADS Tree FelwoodTreeSub04.mdx", + [2005473] = "World KALIMDOR FELWOOD PASSIVEDOODADS WATERFALL FelRockWaterFall.mdx", + [2005474] = "World KALIMDOR FELWOOD PASSIVEDOODADS WATERFALL FelwoodTallWaterfall01.mdx", + [2005475] = "World KALIMDOR FERALAS PASSIVEDOODADS Fern FeralasFerns01.mdx", + [2005476] = "World KALIMDOR FERALAS PASSIVEDOODADS Stones FeralasStone01.mdx", + [2005477] = "World KALIMDOR FERALAS PASSIVEDOODADS Stones FeralasStone02.mdx", + [2005478] = "World KALIMDOR FERALAS PASSIVEDOODADS TREE FeralasTree01.mdx", + [2005479] = "World KALIMDOR FERALAS PASSIVEDOODADS TREE FeralasTree02.mdx", + [2005480] = "World KALIMDOR FERALAS PASSIVEDOODADS TREE FeralasTree03.mdx", + [2005481] = "World KALIMDOR FERALAS PASSIVEDOODADS TREE FeralasTree04.mdx", + [2005482] = "World KALIMDOR FERALAS PASSIVEDOODADS TREE FeralasTree05.mdx", + [2005483] = "World KALIMDOR FERALAS PASSIVEDOODADS TREE FeralasTreeRoots01.mdx", + [2005484] = "World KALIMDOR FERALAS PASSIVEDOODADS TREE FeralasTreeRoots02.mdx", + [2005485] = "World KALIMDOR FERALAS PASSIVEDOODADS TREE FeralasTreeRoots03.mdx", + [2005486] = "World KALIMDOR FERALAS PASSIVEDOODADS TREE FeralasTreeRoots04.mdx", + [2005487] = "World KALIMDOR FERALAS PASSIVEDOODADS TREE FeralasTreeStump01.mdx", + [2005488] = "World KALIMDOR FERALAS PASSIVEDOODADS TREE FeralasTreeStump02.mdx", + [2005489] = "World KALIMDOR Generic PassiveDoodads ElevenDestoryerWreckBack ElvenDestroyerWreckBack.mdx", + [2005490] = "World KALIMDOR Generic PassiveDoodads ElevenDestoryerWreckFront ElvenDestroyerWreckFront.mdx", + [2005491] = "World KALIMDOR Generic PassiveDoodads ElevenDestoryerWreckSails ElvenDestroyerWreckSails.mdx", + [2005492] = "World KALIMDOR Generic PassiveDoodads NightElfGuardTower NightElfGuardTower.mdx", + [2005493] = "World KALIMDOR HYJAL ActiveDoodads Doors HyjalGate.mdx", + [2005494] = "World KALIMDOR HYJAL PASSIVEDOODADS THEWORLDTREE TheWorldTree.mdx", + [2005495] = "World KALIMDOR HYJAL PASSIVEDOODADS TREES HyjalFallenTree01.mdx", + [2005496] = "World KALIMDOR HYJAL PASSIVEDOODADS TREES HyjalTree01.mdx", + [2005497] = "World KALIMDOR HYJAL PASSIVEDOODADS TREES HyjalTree02.mdx", + [2005498] = "World KALIMDOR HYJAL PASSIVEDOODADS TREES HyjalTree03.mdx", + [2005499] = "World KALIMDOR HYJAL PASSIVEDOODADS TREES HyjalTree04.mdx", + [2005500] = "World KALIMDOR HYJAL PASSIVEDOODADS TREES HyjalTree05.mdx", + [2005501] = "World KALIMDOR HYJAL PASSIVEDOODADS rocks HyjalRock01.mdx", + [2005502] = "World KALIMDOR HYJAL PASSIVEDOODADS rocks HyjalRock02.mdx", + [2005503] = "World KALIMDOR HYJAL PASSIVEDOODADS rocks HyjalRock03.mdx", + [2005504] = "World KALIMDOR HYJAL PASSIVEDOODADS rocks HyjalRock04.mdx", + [2005505] = "World KALIMDOR KALIDAR PASSIVEDOODADS FURBOLGTENT FurbolgTent.mdx", + [2005506] = "World KALIMDOR KALIDAR PASSIVEDOODADS FURBOLGTENT FurbolgTent2.mdx", + [2005507] = "World KALIMDOR KALIDAR PASSIVEDOODADS FelPineCone FelPineCone.mdx", + [2005508] = "World KALIMDOR KALIDAR PASSIVEDOODADS FurbolgTotem FurbolgTotem01.mdx", + [2005509] = "World KALIMDOR KALIDAR PASSIVEDOODADS FurbolgTotem FurbolgTotem02.mdx", + [2005510] = "World KALIMDOR KALIDAR PASSIVEDOODADS KALIDARROOTS KalidarGiantRoot01.mdx", + [2005511] = "World KALIMDOR KALIDAR PASSIVEDOODADS KALIDARROOTS KalidarGiantRoot02.mdx", + [2005512] = "World KALIMDOR KALIDAR PASSIVEDOODADS KALIDARROOTS KalidarRoots01.mdx", + [2005513] = "World KALIMDOR KALIDAR PASSIVEDOODADS KALIDARROOTS KalidarRoots02.mdx", + [2005514] = "World KALIMDOR KALIDAR PASSIVEDOODADS KALIDARROOTS KalidarRoots03.mdx", + [2005515] = "World KALIMDOR KALIDAR PASSIVEDOODADS KALIDARROOTS KalidarRoots04.mdx", + [2005516] = "World KALIMDOR KALIDAR PASSIVEDOODADS KalidarBushes KalidarBush01.mdx", + [2005517] = "World KALIMDOR KALIDAR PASSIVEDOODADS KalidarBushes KalidarBush02.mdx", + [2005518] = "World KALIMDOR KALIDAR PASSIVEDOODADS KalidarBushes KalidarBush03.mdx", + [2005519] = "World KALIMDOR KALIDAR PASSIVEDOODADS KalidarBushes KalidarBush04.mdx", + [2005520] = "World KALIMDOR KALIDAR PASSIVEDOODADS KalidarHarpyNest KalidarNest01.mdx", + [2005521] = "World KALIMDOR KALIDAR PASSIVEDOODADS KalidarHarpyNest KalidarNest02.mdx", + [2005522] = "World KALIMDOR KALIDAR PASSIVEDOODADS KalidarTreeLogs KalidarTreelog01.mdx", + [2005523] = "World KALIMDOR KALIDAR PASSIVEDOODADS KalidarTreeLogs KalidarTreelog02.mdx", + [2005524] = "World KALIMDOR KALIDAR PASSIVEDOODADS KalidarTreeStumps KalidarTreeStump01.mdx", + [2005525] = "World KALIMDOR KALIDAR PASSIVEDOODADS KalidarTreeStumps KalidarTreeStump02.mdx", + [2005526] = "World KALIMDOR KALIDAR PASSIVEDOODADS KalidarTrees KalidarFallenTree01.mdx", + [2005527] = "World KALIMDOR KALIDAR PASSIVEDOODADS KalidarTrees KalidarTree01.mdx", + [2005528] = "World KALIMDOR KALIDAR PASSIVEDOODADS KalidarTrees KalidarTree02.mdx", + [2005529] = "World KALIMDOR KALIDAR PASSIVEDOODADS KalidarTrees KalidarTree03.mdx", + [2005530] = "World KALIMDOR KALIDAR PASSIVEDOODADS KalidarTrees KalidarTree04.mdx", + [2005531] = "World KALIMDOR KALIDAR PASSIVEDOODADS KalidarTrees KalidarTree05.mdx", + [2005532] = "World KALIMDOR KALIDAR PASSIVEDOODADS KalidarTrees KalidarTree06.mdx", + [2005533] = "World KALIMDOR KALIDAR PASSIVEDOODADS KalidarTrees KalidarTree07.mdx", + [2005534] = "World KALIMDOR KALIDAR PASSIVEDOODADS KalidarTrees KalidarTree08.mdx", + [2005535] = "World KALIMDOR KALIDAR PASSIVEDOODADS KalidarTrees KalidarTree09.mdx", + [2005536] = "World KALIMDOR KALIDAR PASSIVEDOODADS MoonWellWater MooWellWaterFX.mdx", + [2005537] = "World KALIMDOR KALIDAR PASSIVEDOODADS ORACLETREE OracleTree.mdx", + [2005538] = "World KALIMDOR KALIDAR PASSIVEDOODADS ORACLETREE OracleTreeBank.mdx", + [2005539] = "World KALIMDOR MAURADON ActiveDoodads Button CentaurTeleporter01.mdx", + [2005540] = "World KALIMDOR MAURADON ActiveDoodads Button MaraudonStaffCreator.mdx", + [2005541] = "World KALIMDOR MAURADON ActiveDoodads Doors Stone_Door01.mdx", + [2005542] = "World KALIMDOR MAURADON PASSIVEDOODADS BRIDGEBRAZIERS BridgeBrazierBlue01.mdx", + [2005543] = "World KALIMDOR MAURADON PASSIVEDOODADS BRIDGEBRAZIERS BridgeBrazierGreen01.mdx", + [2005544] = "World KALIMDOR MAURADON PASSIVEDOODADS BRIDGEBRAZIERS BridgeBrazierPurple01.mdx", + [2005545] = "World KALIMDOR MAURADON PASSIVEDOODADS CORRUPTEDPLANTS MaraudonCorruptedTree01.mdx", + [2005546] = "World KALIMDOR MAURADON PASSIVEDOODADS CORRUPTEDPLANTS MaraudonCorruptedTree02.mdx", + [2005547] = "World KALIMDOR MAURADON PASSIVEDOODADS CORRUPTEDPLANTS MaraudonMuShroomLight01.mdx", + [2005548] = "World KALIMDOR MAURADON PASSIVEDOODADS CORRUPTEDPLANTS MaraudonMushroomLight02.mdx", + [2005549] = "World KALIMDOR MAURADON PASSIVEDOODADS CORRUPTEDPLANTS MaraudonPuffBallRed.mdx", + [2005550] = "World KALIMDOR MAURADON PASSIVEDOODADS CORRUPTEDPLANTS MaraudonPuffBallRed02.mdx", + [2005551] = "World KALIMDOR MAURADON PASSIVEDOODADS CORRUPTEDPLANTS MaraudonPuffBallRed03.mdx", + [2005552] = "World KALIMDOR MAURADON PASSIVEDOODADS CORRUPTEDPLANTS MaraudonSpawnerTree.mdx", + [2005553] = "World KALIMDOR MAURADON PASSIVEDOODADS CORRUPTEDPLANTS MaraudonSpewerTree.mdx", + [2005554] = "World KALIMDOR MAURADON PASSIVEDOODADS CORRUPTEDPLANTS MaraudonSpewerTreeBossColor.mdx", + [2005555] = "World KALIMDOR MAURADON PASSIVEDOODADS CORRUPTEDPLANTS MaraudonSporeTree.mdx", + [2005556] = "World KALIMDOR MAURADON PASSIVEDOODADS CORRUPTEDPLANTS MaraudonTransitionTree01.mdx", + [2005557] = "World KALIMDOR MAURADON PASSIVEDOODADS CORRUPTEDPLANTS MaraudonTransitionTree02.mdx", + [2005558] = "World KALIMDOR MAURADON PASSIVEDOODADS CRYSTALS AmethystCrystal01.mdx", + [2005559] = "World KALIMDOR MAURADON PASSIVEDOODADS CRYSTALS AmethystCrystal02.mdx", + [2005560] = "World KALIMDOR MAURADON PASSIVEDOODADS CRYSTALS AmethystCrystal03.mdx", + [2005561] = "World KALIMDOR MAURADON PASSIVEDOODADS CRYSTALS AmethystCrystal04.mdx", + [2005562] = "World KALIMDOR MAURADON PASSIVEDOODADS CRYSTALS AmethystCrystal05.mdx", + [2005563] = "World KALIMDOR MAURADON PASSIVEDOODADS CRYSTALS AmethystCrystal06.mdx", + [2005564] = "World KALIMDOR MAURADON PASSIVEDOODADS CRYSTALS DiamondCrystal01.mdx", + [2005565] = "World KALIMDOR MAURADON PASSIVEDOODADS CRYSTALS DiamondCrystal02.mdx", + [2005566] = "World KALIMDOR MAURADON PASSIVEDOODADS CRYSTALS DiamondCrystal03.mdx", + [2005567] = "World KALIMDOR MAURADON PASSIVEDOODADS CRYSTALS DiamondCrystal04.mdx", + [2005568] = "World KALIMDOR MAURADON PASSIVEDOODADS CRYSTALS MaraudonCrystalRed01.mdx", + [2005569] = "World KALIMDOR MAURADON PASSIVEDOODADS CRYSTALS RubyCrystal01.mdx", + [2005570] = "World KALIMDOR MAURADON PASSIVEDOODADS CRYSTALS RubyCrystal02.mdx", + [2005571] = "World KALIMDOR MAURADON PASSIVEDOODADS CRYSTALS RubyCrystal03.mdx", + [2005572] = "World KALIMDOR MAURADON PASSIVEDOODADS CRYSTALS RubyCrystal04.mdx", + [2005573] = "World KALIMDOR MAURADON PASSIVEDOODADS CRYSTALS RubyCrystal05.mdx", + [2005574] = "World KALIMDOR MAURADON PASSIVEDOODADS CRYSTALS RubyCrystal06.mdx", + [2005575] = "World KALIMDOR MAURADON PASSIVEDOODADS CRYSTALS RubyCrystal07.mdx", + [2005576] = "World KALIMDOR MAURADON PASSIVEDOODADS CRYSTALS RubyCrystal08.mdx", + [2005577] = "World KALIMDOR MAURADON PASSIVEDOODADS CRYSTALS RubyCrystal09.mdx", + [2005578] = "World KALIMDOR MAURADON PASSIVEDOODADS CRYSTALS RubyCrystalLarge01.mdx", + [2005579] = "World KALIMDOR MAURADON PASSIVEDOODADS CRYSTALS RubyCrystalTall01.mdx", + [2005580] = "World KALIMDOR MAURADON PASSIVEDOODADS CentaurBraziers CentaurBrazierRed01.mdx", + [2005581] = "World KALIMDOR MAURADON PASSIVEDOODADS CentaurStatue CentaurStatue01.mdx", + [2005582] = "World KALIMDOR MAURADON PASSIVEDOODADS Flowers Maraudon_DrippingFlower01.mdx", + [2005583] = "World KALIMDOR MAURADON PASSIVEDOODADS GroveGraveMound GroveGraveMound01.mdx", + [2005584] = "World KALIMDOR MAURADON PASSIVEDOODADS MUSHROOMS MaraudonMushroomSpikey01.mdx", + [2005585] = "World KALIMDOR MAURADON PASSIVEDOODADS MUSHROOMS MaraudonMushroomSpikey02.mdx", + [2005586] = "World KALIMDOR MAURADON PASSIVEDOODADS MUSHROOMS MaraudonShroom01.mdx", + [2005587] = "World KALIMDOR MAURADON PASSIVEDOODADS MUSHROOMS MaraudonShroom02.mdx", + [2005588] = "World KALIMDOR MAURADON PASSIVEDOODADS MUSHROOMS MaraudonShroom03.mdx", + [2005589] = "World KALIMDOR MAURADON PASSIVEDOODADS MauradonDetail MaraudonDetail01.mdx", + [2005590] = "World KALIMDOR MAURADON PASSIVEDOODADS MauradonDetail MaraudonDetail02.mdx", + [2005591] = "World KALIMDOR MAURADON PASSIVEDOODADS MauradonDetail MaraudonDetail03.mdx", + [2005592] = "World KALIMDOR MAURADON PASSIVEDOODADS MauradonDetail MaraudonDetail04.mdx", + [2005593] = "World KALIMDOR MAURADON PASSIVEDOODADS MauradonDetail MaraudonDetail05.mdx", + [2005594] = "World KALIMDOR MAURADON PASSIVEDOODADS MauradonDetail MaraudonDetail06.mdx", + [2005595] = "World KALIMDOR MAURADON PASSIVEDOODADS MauradonDetail MaraudonDetail07.mdx", + [2005596] = "World KALIMDOR MAURADON PASSIVEDOODADS Pods MaraudonPod01.mdx", + [2005597] = "World KALIMDOR MAURADON PASSIVEDOODADS Pods MaraudonPod02.mdx", + [2005598] = "World KALIMDOR MAURADON PASSIVEDOODADS Roots MaraudonRoot01.mdx", + [2005599] = "World KALIMDOR MAURADON PASSIVEDOODADS Roots MaraudonRoot02.mdx", + [2005600] = "World KALIMDOR MAURADON PASSIVEDOODADS Roots MaraudonRoot03.mdx", + [2005601] = "World KALIMDOR MAURADON PASSIVEDOODADS Roots MaraudonRoot04.mdx", + [2005602] = "World KALIMDOR MAURADON PASSIVEDOODADS Roots MaraudonRoot05.mdx", + [2005603] = "World KALIMDOR MAURADON PASSIVEDOODADS Roots MaraudonRoot06.mdx", + [2005604] = "World KALIMDOR MAURADON PASSIVEDOODADS Roots MaraudonRoot07.mdx", + [2005605] = "World KALIMDOR MAURADON PASSIVEDOODADS RuinedTents RuinedCentaurTent01.mdx", + [2005606] = "World KALIMDOR MAURADON PASSIVEDOODADS RuinedTents RuinedCentaurTent02.mdx", + [2005607] = "World KALIMDOR MAURADON PASSIVEDOODADS RuinedTents RuinedCentaurTent03.mdx", + [2005608] = "World KALIMDOR MAURADON PASSIVEDOODADS RuinedTents RuinedCentaurTent04.mdx", + [2005609] = "World KALIMDOR MAURADON PASSIVEDOODADS SATYRBANNERS MrdnSatyrBanner01.mdx", + [2005610] = "World KALIMDOR MAURADON PASSIVEDOODADS SATYRBANNERS MrdnSatyrBanner02.mdx", + [2005611] = "World KALIMDOR MAURADON PASSIVEDOODADS SATYRBANNERS MrdnSatyrBanner03.mdx", + [2005612] = "World KALIMDOR MAURADON PASSIVEDOODADS SATYRHANGINGBRAZIERS SatyrHangingBrazierBlue01.mdx", + [2005613] = "World KALIMDOR MAURADON PASSIVEDOODADS SATYRHANGINGBRAZIERS SatyrHangingBrazierBlue02.mdx", + [2005614] = "World KALIMDOR MAURADON PASSIVEDOODADS SATYRHANGINGBRAZIERS SatyrHangingBrazierPurple01.mdx", + [2005615] = "World KALIMDOR MAURADON PASSIVEDOODADS SPORELIGHT SporeLight01.mdx", + [2005616] = "World KALIMDOR MAURADON PASSIVEDOODADS SPORELIGHT SporeLightYellow01.mdx", + [2005617] = "World KALIMDOR MAURADON PASSIVEDOODADS SatyrFloorBraziers SatyrFloorBrazierBlue01.mdx", + [2005618] = "World KALIMDOR MAURADON PASSIVEDOODADS SatyrFloorBraziers SatyrFloorBrazierGreen01.mdx", + [2005619] = "World KALIMDOR MAURADON PASSIVEDOODADS SatyrFloorBraziers SatyrFloorBrazierPurple01.mdx", + [2005620] = "World KALIMDOR MAURADON PASSIVEDOODADS SatyrGraves Satyr_Graves01.mdx", + [2005621] = "World KALIMDOR MAURADON PASSIVEDOODADS SatyrGraves Satyr_Graves02.mdx", + [2005622] = "World KALIMDOR MAURADON PASSIVEDOODADS SatyrGraves Satyr_Graves03.mdx", + [2005623] = "World KALIMDOR MAURADON PASSIVEDOODADS SatyrGraves Satyr_Graves04.mdx", + [2005624] = "World KALIMDOR MAURADON PASSIVEDOODADS SatyrGraves Satyr_Graves05.mdx", + [2005625] = "World KALIMDOR MAURADON PASSIVEDOODADS SatyrGraves Satyr_Graves06.mdx", + [2005626] = "World KALIMDOR MAURADON PASSIVEDOODADS SatyrWalls SatyrWall01.mdx", + [2005627] = "World KALIMDOR MAURADON PASSIVEDOODADS SatyrWalls SatyrWall02.mdx", + [2005628] = "World KALIMDOR MAURADON PASSIVEDOODADS SatyrWalls SatyrWall03.mdx", + [2005629] = "World KALIMDOR MAURADON PASSIVEDOODADS SatyrWalls SatyrWall04.mdx", + [2005630] = "World KALIMDOR MAURADON PASSIVEDOODADS Spores MaraudonSpore01.mdx", + [2005631] = "World KALIMDOR MAURADON PASSIVEDOODADS Stalactites MaraudonStalactites01.mdx", + [2005632] = "World KALIMDOR MAURADON PASSIVEDOODADS Stalactites MaraudonStalactites02.mdx", + [2005633] = "World KALIMDOR MAURADON PASSIVEDOODADS Stalactites MaraudonStalactites03.mdx", + [2005634] = "World KALIMDOR MAURADON PASSIVEDOODADS Stalactites MaraudonStalactites04.mdx", + [2005635] = "World KALIMDOR MAURADON PASSIVEDOODADS Stalactites MaraudonStalactites05.mdx", + [2005636] = "World KALIMDOR MAURADON PASSIVEDOODADS Waterfalls MaraudonCorruptedFalls.mdx", + [2005637] = "World KALIMDOR MAURADON PASSIVEDOODADS Waterfalls MaraudonCorruptedFalls02.mdx", + [2005638] = "World KALIMDOR MAURADON PASSIVEDOODADS Waterfalls MaraudonCorruptedFalls03.mdx", + [2005639] = "World KALIMDOR MAURADON PASSIVEDOODADS Waterfalls Maraudon_Waterfall01.mdx", + [2005640] = "World KALIMDOR MAURADON PASSIVEDOODADS Waterfalls Maraudon_Waterfall02.mdx", + [2005641] = "World KALIMDOR MAURADON PASSIVEDOODADS Waterfalls Maraudon_Waterfall03.mdx", + [2005642] = "World KALIMDOR MAURADON PASSIVEDOODADS Waterfalls Maraudon_Waterfall04.mdx", + [2005643] = "World KALIMDOR MAURADON PASSIVEDOODADS vines MaraudonNastyVine01.mdx", + [2005644] = "World KALIMDOR MAURADON PASSIVEDOODADS vines MaraudonNastyVine02.mdx", + [2005645] = "World KALIMDOR MAURADON PASSIVEDOODADS vines MaraudonNastyVine03.mdx", + [2005646] = "World KALIMDOR MAURADON PASSIVEDOODADS vines MaraudonNastyVine04.mdx", + [2005647] = "World KALIMDOR MAURADON PASSIVEDOODADS vines MaraudonNastyVine05.mdx", + [2005648] = "World KALIMDOR MAURADON PASSIVEDOODADS vines MaraudonNastyVine06.mdx", + [2005649] = "World KALIMDOR MAURADON PASSIVEDOODADS vines MaraudonNastyVine07.mdx", + [2005650] = "World KALIMDOR MOONGLADE PASSIVEDOODADS DruidStone DruidStone.mdx", + [2005651] = "World KALIMDOR MOONGLADE PASSIVEDOODADS DruidStone DruidStonetopless.mdx", + [2005652] = "World KALIMDOR MOONGLADE PASSIVEDOODADS MOONGLADETREES MoongladeTree01.mdx", + [2005653] = "World KALIMDOR MOONGLADE PASSIVEDOODADS MOONGLADETREES MoongladeTree02.mdx", + [2005654] = "World KALIMDOR MOONGLADE PASSIVEDOODADS MOONGLADETREES MoongladeTree03.mdx", + [2005655] = "World KALIMDOR MOONGLADE PASSIVEDOODADS MOONGLADETREES MoongladeTree04.mdx", + [2005656] = "World KALIMDOR MOONGLADE PASSIVEDOODADS MOONGLADETREES MoongladeTree05.mdx", + [2005657] = "World KALIMDOR MOONGLADE PASSIVEDOODADS MOONGLADETREES MoongladeTree06.mdx", + [2005658] = "World KALIMDOR MOONGLADE PASSIVEDOODADS MOONGLADETREES MoongladeTree07.mdx", + [2005659] = "World KALIMDOR MOONGLADE PASSIVEDOODADS MOONGLADETREES MoongladeTree08.mdx", + [2005660] = "World KALIMDOR MOONGLADE PASSIVEDOODADS MoongladeBushes MoongladeBush01.mdx", + [2005661] = "World KALIMDOR MOONGLADE PASSIVEDOODADS MoongladeBushes MoongladeBush02.mdx", + [2005662] = "World KALIMDOR MULGORE PASSIVEDOODADS BurnedWagons BurnedGypsywagon01.mdx", + [2005663] = "World KALIMDOR MULGORE PASSIVEDOODADS FuneralPyres FuneralPyre01.mdx", + [2005664] = "World KALIMDOR MULGORE PASSIVEDOODADS RockArch MullgoreRockArch.mdx", + [2005665] = "World KALIMDOR MULGORE PASSIVEDOODADS Rocks MullgoreRock02.mdx", + [2005666] = "World KALIMDOR MULGORE PASSIVEDOODADS Rocks MullgoreRock03.mdx", + [2005667] = "World KALIMDOR MULGORE PASSIVEDOODADS Rocks MullgoreRock04.mdx", + [2005668] = "World KALIMDOR MULGORE PASSIVEDOODADS Rocks mullgoreRock01.mdx", + [2005669] = "World KALIMDOR MULGORE PASSIVEDOODADS Thorns Mullgorethorn01.mdx", + [2005670] = "World KALIMDOR MULGORE PASSIVEDOODADS Thorns MullgorethornSpike.mdx", + [2005671] = "World KALIMDOR MULGORE PASSIVEDOODADS Thorns mullgorethorn02.mdx", + [2005672] = "World KALIMDOR MULGORE PASSIVEDOODADS Thorns mullgorethorn03.mdx", + [2005673] = "World KALIMDOR MULGORE PASSIVEDOODADS Thorns mullgorethorn04.mdx", + [2005674] = "World KALIMDOR MULGORE PASSIVEDOODADS Thorns mullgorethorn05.mdx", + [2005675] = "World KALIMDOR MULGORE PASSIVEDOODADS Thorns mullgorethorn06.mdx", + [2005676] = "World KALIMDOR MULGORE PASSIVEDOODADS Thorns mullgorethorn07.mdx", + [2005677] = "World KALIMDOR MULGORE PASSIVEDOODADS ThunderbluffElevator ElevatorCar.mdx", + [2005678] = "World KALIMDOR MULGORE PASSIVEDOODADS ThunderbluffElevator KodoElevatorMachine.mdx", + [2005679] = "World KALIMDOR MULGORE PASSIVEDOODADS Trees MullgoreFallenTree01.mdx", + [2005680] = "World KALIMDOR MULGORE PASSIVEDOODADS Trees MullgoreTree01.mdx", + [2005681] = "World KALIMDOR MULGORE PASSIVEDOODADS Trees MullgoreTree02.mdx", + [2005682] = "World KALIMDOR ONYXIASLAIR Doors OnyxiasGate01.mdx", + [2005683] = "World KALIMDOR ONYXIASLAIR FallingRocks OnyziasLairFallingRocks.mdx", + [2005684] = "World KALIMDOR ONYXIASLAIR LAVATRAPS OnyziasLairLavaSplash.mdx", + [2005685] = "World KALIMDOR ONYXIASLAIR LAVATRAPS OnyziasLairLavaTrap.mdx", + [2005686] = "World KALIMDOR ONYXIASLAIR LAVATRAPS OnyziasLairLavaTrapMirror.mdx", + [2005687] = "World KALIMDOR ORGRIMMAR PASSIVEDOODADS AuctionHouse KL_AuctionHouseCollide.mdx", + [2005688] = "World KALIMDOR ORGRIMMAR PASSIVEDOODADS Doors OrgrimmarDoor.mdx", + [2005689] = "World KALIMDOR ORGRIMMAR PASSIVEDOODADS MagtheridonTrophyPost MagtheridonTrophyPost.mdx", + [2005690] = "World KALIMDOR ORGRIMMAR PASSIVEDOODADS ManarothTree manerothTree.mdx", + [2005691] = "World KALIMDOR ORGRIMMAR PASSIVEDOODADS MapTable HordeMapTable.mdx", + [2005692] = "World KALIMDOR ORGRIMMAR PASSIVEDOODADS MapTable HordeMapTable_Outland.mdx", + [2005693] = "World KALIMDOR ORGRIMMAR PASSIVEDOODADS ORGRIMMARBONFIRE OrgrimmarBonFire01.mdx", + [2005694] = "World KALIMDOR ORGRIMMAR PASSIVEDOODADS ORGRIMMARBONFIRE OrgrimmarFloatingEmbers.mdx", + [2005695] = "World KALIMDOR ORGRIMMAR PASSIVEDOODADS ORGRIMMARBONFIRE OrgrimmarSmokeEmitter.mdx", + [2005696] = "World KALIMDOR ORGRIMMAR PASSIVEDOODADS OnyxiaTrophyPost HordeNefarianPost.mdx", + [2005697] = "World KALIMDOR ORGRIMMAR PASSIVEDOODADS OnyxiaTrophyPost HordeOnyxiaTrophyPost.mdx", + [2005698] = "World KALIMDOR ORGRIMMAR PASSIVEDOODADS Pentagram OrgrimmarPentagram.mdx", + [2005699] = "World KALIMDOR ORGRIMMAR PASSIVEDOODADS Waterfalls Orgrimmar_WaterfallA.mdx", + [2005700] = "World KALIMDOR ORGRIMMAR PASSIVEDOODADS thralls_throne.mdx", + [2005701] = "World KALIMDOR Razorfen ActiveDoodads RazorfenDoors RazorfenDoor01.mdx", + [2005702] = "World KALIMDOR Razorfen ActiveDoodads RazorfenDoors RazorfenDoor02.mdx", + [2005703] = "World KALIMDOR Razorfen ActiveDoodads RazorfenDoors RazorfenDoor03.mdx", + [2005704] = "World KALIMDOR Razorfen ActiveDoodads RazorfenDoors RazorfenDoor04.mdx", + [2005705] = "World KALIMDOR Razorfen ActiveDoodads RazorfenDoors RazorfenDoor05.mdx", + [2005706] = "World KALIMDOR SILITHIDHIVE PASSIVEDOODADS Lights SilithidLight02.mdx", + [2005707] = "World KALIMDOR SILITHIDHIVE PASSIVEDOODADS Membranes SilithidMembrane_01.mdx", + [2005708] = "World KALIMDOR SILITHIDHIVE PASSIVEDOODADS Membranes SilithidMembrane_02.mdx", + [2005709] = "World KALIMDOR SILITHIDHIVE PASSIVEDOODADS Membranes SilithidMembrane_03.mdx", + [2005710] = "World KALIMDOR SILITHIDHIVE PASSIVEDOODADS Membranes exterior_arch01.mdx", + [2005711] = "World KALIMDOR SILITHIDHIVE PASSIVEDOODADS Membranes exterior_arch02.mdx", + [2005712] = "World KALIMDOR SILITHIDHIVE PASSIVEDOODADS SILITHIDMODELS SilithidDragonflyModel_01.mdx", + [2005713] = "World KALIMDOR SILITHIDHIVE PASSIVEDOODADS SILITHIDMODELS SilithidLarvaModel_01.mdx", + [2005714] = "World KALIMDOR SILITHIDHIVE PASSIVEDOODADS SILITHIDMODELS SilithidPillBug01.mdx", + [2005715] = "World KALIMDOR SILITHIDHIVE PASSIVEDOODADS Spikes Silithidspike_01.mdx", + [2005716] = "World KALIMDOR SILITHIDHIVE PASSIVEDOODADS Spikes Silithidspike_02.mdx", + [2005717] = "World KALIMDOR SILITHIDHIVE PASSIVEDOODADS Spikes Silithidspike_03.mdx", + [2005718] = "World KALIMDOR SILITHUS ACTIVEDOODADS AHNQIRAJDOOR AhnQirajDoor01.mdx", + [2005719] = "World KALIMDOR SILITHUS ACTIVEDOODADS AHNQIRAJDOOR AhnQirajDoor02.mdx", + [2005720] = "World KALIMDOR SILITHUS ACTIVEDOODADS AHNQIRAJDOOR AhnQirajSandTrap.mdx", + [2005721] = "World KALIMDOR SILITHUS ACTIVEDOODADS AHNQIRAJDOOR Ahn_Qiraj_DoorPlug.mdx", + [2005722] = "World KALIMDOR SILITHUS ACTIVEDOODADS AHNQIRAJDOOR Ahn_Qiraj_DoorRoots.mdx", + [2005723] = "World KALIMDOR SILITHUS ACTIVEDOODADS AHNQIRAJDOOR Ahn_Qiraj_DoorRunes.mdx", + [2005724] = "World KALIMDOR SILITHUS ACTIVEDOODADS Ahn_Quiraj_OssirianCrystal Ahn_quiraj_ossirianCrystal.mdx", + [2005725] = "World KALIMDOR SILITHUS ACTIVEDOODADS EggLayer AhnQirajEggLayer.mdx", + [2005726] = "World KALIMDOR SILITHUS ACTIVEDOODADS SandWorm SandWorm_RockBase.mdx", + [2005727] = "World KALIMDOR SILITHUS PASSIVEDOODADS AHNQIRAJ TORCH AhnQirajWallTorch01.mdx", + [2005728] = "World KALIMDOR SILITHUS PASSIVEDOODADS AhnQiraCoffins AQ_coffinbase.mdx", + [2005729] = "World KALIMDOR SILITHUS PASSIVEDOODADS AhnQiraCoffins AQ_coffinlid01.mdx", + [2005730] = "World KALIMDOR SILITHUS PASSIVEDOODADS AhnQiraCoffins AQ_coffinlid02.mdx", + [2005731] = "World KALIMDOR SILITHUS PASSIVEDOODADS AhnQiraCoffins AQ_coffinlid03.mdx", + [2005732] = "World KALIMDOR SILITHUS PASSIVEDOODADS AhnQiraCoffins AQ_coffinlid04.mdx", + [2005733] = "World KALIMDOR SILITHUS PASSIVEDOODADS AhnQirajAltar AhnQirajAlter.mdx", + [2005734] = "World KALIMDOR SILITHUS PASSIVEDOODADS AhnQirajGlow QuirajGlow.mdx", + [2005735] = "World KALIMDOR SILITHUS PASSIVEDOODADS AhnQirajSconces AhnQirajSconce01.mdx", + [2005736] = "World KALIMDOR SILITHUS PASSIVEDOODADS AhnQirajSconces AhnQirajSconce02.mdx", + [2005737] = "World KALIMDOR SILITHUS PASSIVEDOODADS AhnQirajSconces AhnQirajSconce03.mdx", + [2005738] = "World KALIMDOR SILITHUS PASSIVEDOODADS AhnQirajSconces AhnQirajSconce04.mdx", + [2005739] = "World KALIMDOR SILITHUS PASSIVEDOODADS AhnQirajStairs AhnQiraj_Slab01.mdx", + [2005740] = "World KALIMDOR SILITHUS PASSIVEDOODADS AhnQirajStairs AhnQiraj_Stair01.mdx", + [2005741] = "World KALIMDOR SILITHUS PASSIVEDOODADS AhnQirajStairs AhnQiraj_Stair02.mdx", + [2005742] = "World KALIMDOR SILITHUS PASSIVEDOODADS AhnQirajStones Ahn_Qirajbrick01.mdx", + [2005743] = "World KALIMDOR SILITHUS PASSIVEDOODADS AhnQirajStones Ahn_Qirajbrick02.mdx", + [2005744] = "World KALIMDOR SILITHUS PASSIVEDOODADS AhnQirajStones Ahn_Qirajobelisk.mdx", + [2005745] = "World KALIMDOR SILITHUS PASSIVEDOODADS CRYSTALS FloatingPurpleCrystal01.mdx", + [2005746] = "World KALIMDOR SILITHUS PASSIVEDOODADS CRYSTALS FloatingPurpleCrystalBroken01.mdx", + [2005747] = "World KALIMDOR SILITHUS PASSIVEDOODADS CRYSTALS FloatingPurpleCrystalBroken02.mdx", + [2005748] = "World KALIMDOR SILITHUS PASSIVEDOODADS CRYSTALS FloatingPurpleCrystalBroken03.mdx", + [2005749] = "World KALIMDOR SILITHUS PASSIVEDOODADS CRYSTALS FloatingRedCrystal01.mdx", + [2005750] = "World KALIMDOR SILITHUS PASSIVEDOODADS CRYSTALS FloatingRedCrystalBroken01.mdx", + [2005751] = "World KALIMDOR SILITHUS PASSIVEDOODADS CRYSTALS FloatingRedCrystalBroken02.mdx", + [2005752] = "World KALIMDOR SILITHUS PASSIVEDOODADS CRYSTALS FloatingRedCrystalBroken03.mdx", + [2005753] = "World KALIMDOR SILITHUS PASSIVEDOODADS CRYSTALS GlyphedCrystal.mdx", + [2005754] = "World KALIMDOR SILITHUS PASSIVEDOODADS CRYSTALS Silithus_commCrystal_base01.mdx", + [2005755] = "World KALIMDOR SILITHUS PASSIVEDOODADS CRYSTALS Silithus_commCrystal_base02.mdx", + [2005756] = "World KALIMDOR SILITHUS PASSIVEDOODADS CRYSTALS Silithus_commCrystal_base03.mdx", + [2005757] = "World KALIMDOR SILITHUS PASSIVEDOODADS CRYSTALS Silithus_commnicationCrystal_01.mdx", + [2005758] = "World KALIMDOR SILITHUS PASSIVEDOODADS CRYSTALS Silithus_commnicationCrystal_02.mdx", + [2005759] = "World KALIMDOR SILITHUS PASSIVEDOODADS CRYSTALS Silithus_commnicationCrystal_03.mdx", + [2005760] = "World KALIMDOR SILITHUS PASSIVEDOODADS CRYSTALS silithus_crystal_clump_01.mdx", + [2005761] = "World KALIMDOR SILITHUS PASSIVEDOODADS CRYSTALS silithus_crystal_clump_02.mdx", + [2005762] = "World KALIMDOR SILITHUS PASSIVEDOODADS CRYSTALS silithus_crystal_clump_03.mdx", + [2005763] = "World KALIMDOR SILITHUS PASSIVEDOODADS CRYSTALS silithus_crystal_clump_04.mdx", + [2005764] = "World KALIMDOR SILITHUS PASSIVEDOODADS CRYSTALS silithus_crystal_formation_01.mdx", + [2005765] = "World KALIMDOR SILITHUS PASSIVEDOODADS CRYSTALS silithus_crystal_formation_02.mdx", + [2005766] = "World KALIMDOR SILITHUS PASSIVEDOODADS CRYSTALS silithus_crystal_formation_03.mdx", + [2005767] = "World KALIMDOR SILITHUS PASSIVEDOODADS CRYSTALS silithus_crystal_formation_04.mdx", + [2005768] = "World KALIMDOR SILITHUS PASSIVEDOODADS CRYSTALS silithus_crystal_masterbase.mdx", + [2005769] = "World KALIMDOR SILITHUS PASSIVEDOODADS CRYSTALS silithus_crystal_nub_01.mdx", + [2005770] = "World KALIMDOR SILITHUS PASSIVEDOODADS CRYSTALS silithus_crystal_nub_02.mdx", + [2005771] = "World KALIMDOR SILITHUS PASSIVEDOODADS CRYSTALS silithus_crystal_nub_03.mdx", + [2005772] = "World KALIMDOR SILITHUS PASSIVEDOODADS CRYSTALS silithus_crystal_nub_04.mdx", + [2005773] = "World KALIMDOR SILITHUS PASSIVEDOODADS CRYSTALS silithus_crystal_nub_05.mdx", + [2005774] = "World KALIMDOR SILITHUS PASSIVEDOODADS CRYSTALS silithus_crystal_nub_06.mdx", + [2005775] = "World KALIMDOR SILITHUS PASSIVEDOODADS CRYSTALS silithus_crystal_spike_01.mdx", + [2005776] = "World KALIMDOR SILITHUS PASSIVEDOODADS CRYSTALS silithus_crystal_spike_02.mdx", + [2005777] = "World KALIMDOR SILITHUS PASSIVEDOODADS CRYSTALS silithus_crystal_spike_03.mdx", + [2005778] = "World KALIMDOR SILITHUS PASSIVEDOODADS CRYSTALS silithus_crystal_spike_04.mdx", + [2005779] = "World KALIMDOR SILITHUS PASSIVEDOODADS DUSTDEVIL AhnQirajDustDevil.mdx", + [2005780] = "World KALIMDOR SILITHUS PASSIVEDOODADS Elven NightElfRuinArchSilithus01.mdx", + [2005781] = "World KALIMDOR SILITHUS PASSIVEDOODADS Elven NightElfRuinWallSilithus01.mdx", + [2005782] = "World KALIMDOR SILITHUS PASSIVEDOODADS Elven NightElfRuinWallSilithus01b.mdx", + [2005783] = "World KALIMDOR SILITHUS PASSIVEDOODADS Elven NightElfRuinWallSilithus02.mdx", + [2005784] = "World KALIMDOR SILITHUS PASSIVEDOODADS Elven NightElfRuinWallSilithus03.mdx", + [2005785] = "World KALIMDOR SILITHUS PASSIVEDOODADS Elven NightElfRuinWallSilithusRubble01.mdx", + [2005786] = "World KALIMDOR SILITHUS PASSIVEDOODADS Elven NightElfRuinWallSilithusRubble02.mdx", + [2005787] = "World KALIMDOR SILITHUS PASSIVEDOODADS Elven elventowerRoofSilithus02.mdx", + [2005788] = "World KALIMDOR SILITHUS PASSIVEDOODADS Elven elventowerSilithus02.mdx", + [2005789] = "World KALIMDOR SILITHUS PASSIVEDOODADS Elven elventowerSilithus03.mdx", + [2005790] = "World KALIMDOR SILITHUS PASSIVEDOODADS Elven elventowerSilithusHorn.mdx", + [2005791] = "World KALIMDOR SILITHUS PASSIVEDOODADS GONG SilithidGong.mdx", + [2005792] = "World KALIMDOR SILITHUS PASSIVEDOODADS GONG SilithidGongPodium.mdx", + [2005793] = "World KALIMDOR SILITHUS PASSIVEDOODADS Hives SilithusHangingHive01.mdx", + [2005794] = "World KALIMDOR SILITHUS PASSIVEDOODADS Hives SmallHive01.mdx", + [2005795] = "World KALIMDOR SILITHUS PASSIVEDOODADS Hives SmallHive02.mdx", + [2005796] = "World KALIMDOR SILITHUS PASSIVEDOODADS Hives SmallHive03.mdx", + [2005797] = "World KALIMDOR SILITHUS PASSIVEDOODADS InsectMound SilithusInsectMound01.mdx", + [2005798] = "World KALIMDOR SILITHUS PASSIVEDOODADS InsectMound SilithusInsectMound02.mdx", + [2005799] = "World KALIMDOR SILITHUS PASSIVEDOODADS InsectMound SilithusInsectMound03.mdx", + [2005800] = "World KALIMDOR SILITHUS PASSIVEDOODADS MasterHiveSwarm masterhiveswarm.mdx", + [2005801] = "World KALIMDOR SILITHUS PASSIVEDOODADS Mummies AQ_mummy01.mdx", + [2005802] = "World KALIMDOR SILITHUS PASSIVEDOODADS Mummies AQ_mummy02.mdx", + [2005803] = "World KALIMDOR SILITHUS PASSIVEDOODADS Mummies AQ_mummy03.mdx", + [2005804] = "World KALIMDOR SILITHUS PASSIVEDOODADS Obsidianstatue ObsidianStatue.mdx", + [2005805] = "World KALIMDOR SILITHUS PASSIVEDOODADS Pods SilithusPod01.mdx", + [2005806] = "World KALIMDOR SILITHUS PASSIVEDOODADS Pods SilithusPod02.mdx", + [2005807] = "World KALIMDOR SILITHUS PASSIVEDOODADS Pods SilithusPod03.mdx", + [2005808] = "World KALIMDOR SILITHUS PASSIVEDOODADS Pylons SilithusPylon.mdx", + [2005809] = "World KALIMDOR SILITHUS PASSIVEDOODADS Pylons SilithusPylonBroken.mdx", + [2005810] = "World KALIMDOR SILITHUS PASSIVEDOODADS QuirajRuins QuirajFallenWall01.mdx", + [2005811] = "World KALIMDOR SILITHUS PASSIVEDOODADS QuirajRuins QuirajLWall01.mdx", + [2005812] = "World KALIMDOR SILITHUS PASSIVEDOODADS QuirajRuins QuirajLWall02.mdx", + [2005813] = "World KALIMDOR SILITHUS PASSIVEDOODADS QuirajRuins QuirajLWall03.mdx", + [2005814] = "World KALIMDOR SILITHUS PASSIVEDOODADS QuirajRuins QuirajPillar.mdx", + [2005815] = "World KALIMDOR SILITHUS PASSIVEDOODADS QuirajRuins QuirajPillarBroken.mdx", + [2005816] = "World KALIMDOR SILITHUS PASSIVEDOODADS QuirajRuins QuirajRuinBlock01.mdx", + [2005817] = "World KALIMDOR SILITHUS PASSIVEDOODADS QuirajRuins QuirajRuinBlock02.mdx", + [2005818] = "World KALIMDOR SILITHUS PASSIVEDOODADS QuirajRuins QuirajRuinBlock03.mdx", + [2005819] = "World KALIMDOR SILITHUS PASSIVEDOODADS QuirajRuins QuirajTWall01.mdx", + [2005820] = "World KALIMDOR SILITHUS PASSIVEDOODADS QuirajRuins QuirajTWall02.mdx", + [2005821] = "World KALIMDOR SILITHUS PASSIVEDOODADS QuirajRuins QuirajTWall03.mdx", + [2005822] = "World KALIMDOR SILITHUS PASSIVEDOODADS QuirajRuins QuirajTWallRoof01.mdx", + [2005823] = "World KALIMDOR SILITHUS PASSIVEDOODADS QuirajRuins QuirajTWallRoof02.mdx", + [2005824] = "World KALIMDOR SILITHUS PASSIVEDOODADS QuirajRuins QuirajTower03Roof.mdx", + [2005825] = "World KALIMDOR SILITHUS PASSIVEDOODADS QuirajRuins QuirajTowerFallen.mdx", + [2005826] = "World KALIMDOR SILITHUS PASSIVEDOODADS QuirajRuins QuirajWall01.mdx", + [2005827] = "World KALIMDOR SILITHUS PASSIVEDOODADS QuirajRuins QuirajWall02.mdx", + [2005828] = "World KALIMDOR SILITHUS PASSIVEDOODADS QuirajRuins QuirajWall03.mdx", + [2005829] = "World KALIMDOR SILITHUS PASSIVEDOODADS Quiraj_small_swarm Quiraj_small_swarm.mdx", + [2005830] = "World KALIMDOR SILITHUS PASSIVEDOODADS Quirajbeeroomswarm Quiraj_beeroom_swarm.mdx", + [2005831] = "World KALIMDOR SILITHUS PASSIVEDOODADS Ruins SilithusGate01.mdx", + [2005832] = "World KALIMDOR SILITHUS PASSIVEDOODADS Ruins SilithusRuinsObelisk01.mdx", + [2005833] = "World KALIMDOR SILITHUS PASSIVEDOODADS Ruins SilithusRuinsObelisk02.mdx", + [2005834] = "World KALIMDOR SILITHUS PASSIVEDOODADS Ruins SilithusRuinsObelisk03.mdx", + [2005835] = "World KALIMDOR SILITHUS PASSIVEDOODADS Ruins SilithusRuinsPillar02.mdx", + [2005836] = "World KALIMDOR SILITHUS PASSIVEDOODADS Ruins SilithusRuinsWall01.mdx", + [2005837] = "World KALIMDOR SILITHUS PASSIVEDOODADS Ruins SilithusRuinsWall02.mdx", + [2005838] = "World KALIMDOR SILITHUS PASSIVEDOODADS Ruins SilithusRuinsWall03.mdx", + [2005839] = "World KALIMDOR SILITHUS PASSIVEDOODADS Ruins SilithusRuinsWall04.mdx", + [2005840] = "World KALIMDOR SILITHUS PASSIVEDOODADS Ruins SilithusRuinsWall05.mdx", + [2005841] = "World KALIMDOR SILITHUS PASSIVEDOODADS Ruins SilithusRuinsWall06.mdx", + [2005842] = "World KALIMDOR SILITHUS PASSIVEDOODADS Ruins SilithusRuinsWall07.mdx", + [2005843] = "World KALIMDOR SILITHUS PASSIVEDOODADS SilithidTankHusks SilithidTankHuskAbdomen.mdx", + [2005844] = "World KALIMDOR SILITHUS PASSIVEDOODADS SilithidTankHusks SilithidTankHuskFullBody.mdx", + [2005845] = "World KALIMDOR SILITHUS PASSIVEDOODADS SilithidTankHusks SilithidTankHuskHead.mdx", + [2005846] = "World KALIMDOR SILITHUS PASSIVEDOODADS SilithidTankHusks SilithidTankHuskLeg.mdx", + [2005847] = "World KALIMDOR SILITHUS PASSIVEDOODADS SilithidTankHusks SilithidTankHuskThorax.mdx", + [2005848] = "World KALIMDOR SILITHUS PASSIVEDOODADS SilithidWaspHusks SilithidWaspHuskAbdomen.mdx", + [2005849] = "World KALIMDOR SILITHUS PASSIVEDOODADS SilithidWaspHusks SilithidWaspHuskFullBody.mdx", + [2005850] = "World KALIMDOR SILITHUS PASSIVEDOODADS SilithidWaspHusks SilithidWaspHuskHead.mdx", + [2005851] = "World KALIMDOR SILITHUS PASSIVEDOODADS SilithidWaspHusks SilithidWaspHuskLeg.mdx", + [2005852] = "World KALIMDOR SILITHUS PASSIVEDOODADS SilithidWaspHusks SilithidWaspHuskThorax.mdx", + [2005853] = "World KALIMDOR SILITHUS PASSIVEDOODADS SilithidWaspHusks SilithidWaspHuskWings.mdx", + [2005854] = "World KALIMDOR SILITHUS PASSIVEDOODADS SilithusRuinsPillarTop SilithusRuinsPillarTop.mdx", + [2005855] = "World KALIMDOR SILITHUS PASSIVEDOODADS TwilightTablet TwilightTabletLower.mdx", + [2005856] = "World KALIMDOR SILITHUS PASSIVEDOODADS TwilightTablet TwilightTabletUpper.mdx", + [2005857] = "World KALIMDOR SILITHUS PASSIVEDOODADS WATERFALLS SilithusSandWaterFallMeduim.mdx", + [2005858] = "World KALIMDOR SILITHUS PASSIVEDOODADS WATERFALLS SilithusSandWaterfallLarge.mdx", + [2005859] = "World KALIMDOR SILITHUS PASSIVEDOODADS WATERFALLS SilithusSandWaterfallSmall.mdx", + [2005860] = "World KALIMDOR SILITHUS PASSIVEDOODADS WATERFALLS SilithusSandWaterfallSplash.mdx", + [2005861] = "World KALIMDOR SILITHUS PASSIVEDOODADS WaspSwarm WaspSwarm.mdx", + [2005862] = "World KALIMDOR STONETALON ActiveDoodads Tree g_sapling01.mdx", + [2005863] = "World KALIMDOR STONETALON ActiveDoodads Tree g_sapling02.mdx", + [2005864] = "World KALIMDOR STONETALON ActiveDoodads Tree sapling01.mdx", + [2005865] = "World KALIMDOR STONETALON PASSIVEDOODADS HarpyNests StoneTalonHarpysNest01.mdx", + [2005866] = "World KALIMDOR STONETALON PASSIVEDOODADS HarpyNests StoneTalonHarpysNest02.mdx", + [2005867] = "World KALIMDOR STONETALON PASSIVEDOODADS Rock StonetalonRockOutCrop01.mdx", + [2005868] = "World KALIMDOR STONETALON PASSIVEDOODADS TREES BurntStoneTree01.mdx", + [2005869] = "World KALIMDOR STONETALON PASSIVEDOODADS TREES BurntStoneTree07.mdx", + [2005870] = "World KALIMDOR STONETALON PASSIVEDOODADS TREES BurntStoneTree08.mdx", + [2005871] = "World KALIMDOR STONETALON PASSIVEDOODADS TREES StoneTree01.mdx", + [2005872] = "World KALIMDOR STONETALON PASSIVEDOODADS TREES StoneTree02.mdx", + [2005873] = "World KALIMDOR STONETALON PASSIVEDOODADS TREES StoneTree03.mdx", + [2005874] = "World KALIMDOR STONETALON PASSIVEDOODADS TREES StoneTree04.mdx", + [2005875] = "World KALIMDOR STONETALON PASSIVEDOODADS TREES StoneTree06.mdx", + [2005876] = "World KALIMDOR STONETALON PASSIVEDOODADS TREES StoneTree07.mdx", + [2005877] = "World KALIMDOR STONETALON PASSIVEDOODADS TREES StoneTree08.mdx", + [2005878] = "World KALIMDOR STONETALON PASSIVEDOODADS TREES StoneTreeLog01.mdx", + [2005879] = "World KALIMDOR STONETALON PASSIVEDOODADS TREES StoneTreeLog02.mdx", + [2005880] = "World KALIMDOR STONETALON PASSIVEDOODADS TREES StoneTreeLog03.mdx", + [2005881] = "World KALIMDOR STONETALON PASSIVEDOODADS Tools StoneTalonTools_Crank01.mdx", + [2005882] = "World KALIMDOR STONETALON PASSIVEDOODADS Tools StoneTalonTools_Saw01.mdx", + [2005883] = "World KALIMDOR STONETALON PASSIVEDOODADS TreeStumps BurntStoneTreeStump02.mdx", + [2005884] = "World KALIMDOR STONETALON PASSIVEDOODADS TreeStumps BurntStoneTreeStump03.mdx", + [2005885] = "World KALIMDOR STONETALON PASSIVEDOODADS TreeStumps StoneTreeStump01.mdx", + [2005886] = "World KALIMDOR STONETALON PASSIVEDOODADS TreeStumps StoneTreeStump02.mdx", + [2005887] = "World KALIMDOR STONETALON PASSIVEDOODADS TreeStumps StoneTreeStump03.mdx", + [2005888] = "World KALIMDOR STONETALON PASSIVEDOODADS TreeStumps StoneTreeStump04.mdx", + [2005889] = "World KALIMDOR STONETALON PASSIVEDOODADS WATERWHEEL StonetalonWaterWheel.mdx", + [2005890] = "World KALIMDOR STONETALON PASSIVEDOODADS WebbedTrees StoneTree01_web.mdx", + [2005891] = "World KALIMDOR STONETALON PASSIVEDOODADS WebbedTrees StoneTree02_web.mdx", + [2005892] = "World KALIMDOR STONETALON PASSIVEDOODADS WebbedTrees StoneTree03_web.mdx", + [2005893] = "World KALIMDOR STONETALON PASSIVEDOODADS WebbedTrees StoneTree07_Web.mdx", + [2005894] = "World KALIMDOR TIMBERMAW ActiveDoodads WoodenDoor TimberMawWoodenDoor.mdx", + [2005895] = "World KALIMDOR TIMBERMAW PASSIVEDOODADS TIMBERMAWFLOWERS TimbermawFlower01.mdx", + [2005896] = "World KALIMDOR TIMBERMAW PASSIVEDOODADS TIMBERMAWFLOWERS TimbermawFlower02.mdx", + [2005897] = "World KALIMDOR Tanaris ActiveDoodads TrollGate TanarisTrollGate.mdx", + [2005898] = "World KALIMDOR Tanaris PassiveDoodads Cacti TanarisCactus01.mdx", + [2005899] = "World KALIMDOR Tanaris PassiveDoodads Cacti TanarisCactus02.mdx", + [2005900] = "World KALIMDOR Tanaris PassiveDoodads Cacti TanarisCactus03.mdx", + [2005901] = "World KALIMDOR Tanaris PassiveDoodads Cacti TanarisCactus04.mdx", + [2005902] = "World KALIMDOR Tanaris PassiveDoodads Cacti TanarisCactus05.mdx", + [2005903] = "World KALIMDOR Tanaris PassiveDoodads Cacti TanarisCactus06.mdx", + [2005904] = "World KALIMDOR Tanaris PassiveDoodads DesertHoldingPen DesertHoldingPen.mdx", + [2005905] = "World KALIMDOR Tanaris PassiveDoodads Goblin TanarisGoblinWall01.mdx", + [2005906] = "World KALIMDOR Tanaris PassiveDoodads Goblin TanarisGoblinWall02.mdx", + [2005907] = "World KALIMDOR Tanaris PassiveDoodads Goblin TanarisGoblinWallCurve01.mdx", + [2005908] = "World KALIMDOR Tanaris PassiveDoodads Goblin TanarisGoblinWallGateBigBits.mdx", + [2005909] = "World KALIMDOR Tanaris PassiveDoodads Goblin TanarisGoblinWallPost01.mdx", + [2005910] = "World KALIMDOR Tanaris PassiveDoodads Rocks TanarisRock01.mdx", + [2005911] = "World KALIMDOR Tanaris PassiveDoodads Rocks TanarisRock02.mdx", + [2005912] = "World KALIMDOR Tanaris PassiveDoodads Rocks TanarisRock03.mdx", + [2005913] = "World KALIMDOR Tanaris PassiveDoodads Rocks TanarisRock04.mdx", + [2005914] = "World KALIMDOR Tanaris PassiveDoodads Rocks TanarisRock05.mdx", + [2005915] = "World KALIMDOR Tanaris PassiveDoodads Rocks TanarisRock06.mdx", + [2005916] = "World KALIMDOR Tanaris PassiveDoodads Rocks TanarisRock07.mdx", + [2005917] = "World KALIMDOR Tanaris PassiveDoodads WaterTower TanarisWaterTower.mdx", + [2005918] = "World KALIMDOR ThousandNeedles PassiveDoodads Bleachers GnomeBleachers.mdx", + [2005919] = "World KALIMDOR ThousandNeedles PassiveDoodads Bleachers GoblinBleachers.mdx", + [2005920] = "World KALIMDOR ThousandNeedles PassiveDoodads Bridge ThousandNeedlesBridge.mdx", + [2005921] = "World KALIMDOR ThousandNeedles PassiveDoodads HayBails Back-stop.mdx", + [2005922] = "World KALIMDOR ThousandNeedles PassiveDoodads HayBails Straightaway01.mdx", + [2005923] = "World KALIMDOR ThousandNeedles PassiveDoodads HayBails Straightaway02.mdx", + [2005924] = "World KALIMDOR ThousandNeedles PassiveDoodads HayBails Straightaway03.mdx", + [2005925] = "World KALIMDOR ThousandNeedles PassiveDoodads HayBails Straightaway04.mdx", + [2005926] = "World KALIMDOR ThousandNeedles PassiveDoodads HayBails Turn01-1.mdx", + [2005927] = "World KALIMDOR ThousandNeedles PassiveDoodads HayBails Turn01-2.mdx", + [2005928] = "World KALIMDOR ThousandNeedles PassiveDoodads HayBails Turn02-1.mdx", + [2005929] = "World KALIMDOR ThousandNeedles PassiveDoodads HayBails Turn02-2.mdx", + [2005930] = "World KALIMDOR ThousandNeedles PassiveDoodads HayBails Turn03.mdx", + [2005931] = "World KALIMDOR ThousandNeedles PassiveDoodads HayBails Turn04.mdx", + [2005932] = "World KALIMDOR ThousandNeedles PassiveDoodads HayBails Turn05-1.mdx", + [2005933] = "World KALIMDOR ThousandNeedles PassiveDoodads HayBails Turn05-2.mdx", + [2005934] = "World KALIMDOR ThousandNeedles PassiveDoodads HayBails Turn06.mdx", + [2005935] = "World KALIMDOR ThousandNeedles PassiveDoodads RacingFlags RacingFlag01.mdx", + [2005936] = "World KALIMDOR ThousandNeedles PassiveDoodads Rocks SaltFlatRock_01.mdx", + [2005937] = "World KALIMDOR ThousandNeedles PassiveDoodads Rocks SaltFlatRock_02.mdx", + [2005938] = "World KALIMDOR ThousandNeedles PassiveDoodads Rocks SaltFlatRock_03.mdx", + [2005939] = "World KALIMDOR ThousandNeedles PassiveDoodads Rocks SaltFlatRock_04.mdx", + [2005940] = "World KALIMDOR ThousandNeedles PassiveDoodads Rocks ThousandRock01.mdx", + [2005941] = "World KALIMDOR ThousandNeedles PassiveDoodads Rocks ThousandRock02.mdx", + [2005942] = "World KALIMDOR ThousandNeedles PassiveDoodads Rocks ThousandRock03.mdx", + [2005943] = "World KALIMDOR ThousandNeedles PassiveDoodads Rocks ThousandRock04.mdx", + [2005944] = "World KALIMDOR ThousandNeedles PassiveDoodads Rocks ThousandRock05.mdx", + [2005945] = "World KALIMDOR ThousandNeedles PassiveDoodads Rocks ThousandRock06.mdx", + [2005946] = "World KALIMDOR ThousandNeedles PassiveDoodads Rocks ThousandRock07.mdx", + [2005947] = "World KALIMDOR ThousandNeedles PassiveDoodads Rocks ThousandRock08.mdx", + [2005948] = "World KALIMDOR ThousandNeedles PassiveDoodads Rocks ThousandRock09.mdx", + [2005949] = "World KALIMDOR ThousandNeedles PassiveDoodads Rocks ThousandRock10.mdx", + [2005950] = "World KALIMDOR ThousandNeedles PassiveDoodads Rocks ThousandRock11.mdx", + [2005951] = "World KALIMDOR ThousandNeedles PassiveDoodads Rocks ThousandRock12.mdx", + [2005952] = "World KALIMDOR ThousandNeedles PassiveDoodads Rocks ThousandRock13.mdx", + [2005953] = "World KALIMDOR ThousandNeedles PassiveDoodads Rocks ThousandRock14.mdx", + [2005954] = "World KALIMDOR ThousandNeedles PassiveDoodads Rocks ThousandRock15.mdx", + [2005955] = "World KALIMDOR ThousandNeedles PassiveDoodads SnakeNests snake_nest_001.mdx", + [2005956] = "World KALIMDOR ThousandNeedles PassiveDoodads SnakeNests snake_nest_002.mdx", + [2005957] = "World KALIMDOR ThousandNeedles PassiveDoodads WyvernEggs WyvernEggs01.mdx", + [2005958] = "World KALIMDOR ThousandNeedles PassiveDoodads WyvernEggs WyvernEggs02.mdx", + [2005959] = "World KALIMDOR UNGORO PASSIVEDOODADS Archway UngoroArchway01.mdx", + [2005960] = "World KALIMDOR UNGORO PASSIVEDOODADS CRYSTALS UngoroCrystalPylon01.mdx", + [2005961] = "World KALIMDOR UNGORO PASSIVEDOODADS Geyser UngoroGeyser01.mdx", + [2005962] = "World KALIMDOR UNGORO PASSIVEDOODADS Geyser UngoroGeyser02.mdx", + [2005963] = "World KALIMDOR UNGORO PASSIVEDOODADS Rocks UngoroRock06.mdx", + [2005964] = "World KALIMDOR UNGORO PASSIVEDOODADS Rocks UngoroRock07.mdx", + [2005965] = "World KALIMDOR UNGORO PASSIVEDOODADS Rocks UngoroRock08.mdx", + [2005966] = "World KALIMDOR UNGORO PASSIVEDOODADS Rocks UngoroRock09.mdx", + [2005967] = "World KALIMDOR UNGORO PASSIVEDOODADS Rocks UngoroRock10.mdx", + [2005968] = "World KALIMDOR UNGORO PASSIVEDOODADS Rocks UngoroRock11.mdx", + [2005969] = "World KALIMDOR UNGORO PASSIVEDOODADS Rocks UngoroRock12.mdx", + [2005970] = "World KALIMDOR UNGORO PASSIVEDOODADS Rocks UngoroRock13.mdx", + [2005971] = "World KALIMDOR UNGORO PASSIVEDOODADS Rocks UngoroRock14.mdx", + [2005972] = "World KALIMDOR UNGORO PASSIVEDOODADS Rocks UngoroRock15.mdx", + [2005973] = "World KALIMDOR UNGORO PASSIVEDOODADS ThreshadonCorpse UngoroThreshadonCorpse.mdx", + [2005974] = "World KALIMDOR UNGORO PASSIVEDOODADS Trees UngoroTreeBite.mdx", + [2005975] = "World KALIMDOR UNGORO PASSIVEDOODADS Trees UngoroTreeBreak.mdx", + [2005976] = "World KALIMDOR UNGORO PASSIVEDOODADS Trees UngoroTreeBreak2.mdx", + [2005977] = "World KALIMDOR UNGORO PASSIVEDOODADS TrexFootprint TRexFootprint.mdx", + [2005978] = "World KALIMDOR UNGORO PASSIVEDOODADS UngoroBubbles UngoroBlackBubble.mdx", + [2005979] = "World KALIMDOR WAILINGCAVERNS PASSIVEDOODADS Baskets wc_basket01.mdx", + [2005980] = "World KALIMDOR WAILINGCAVERNS PASSIVEDOODADS Cages wc_cage01.mdx", + [2005981] = "World KALIMDOR WAILINGCAVERNS PASSIVEDOODADS FANGDRUIDS WC_BasinStone.mdx", + [2005982] = "World KALIMDOR WAILINGCAVERNS PASSIVEDOODADS FANGDRUIDS WC_BedStone.mdx", + [2005983] = "World KALIMDOR WAILINGCAVERNS PASSIVEDOODADS FANGDRUIDS WC_BenchStone.mdx", + [2005984] = "World KALIMDOR WAILINGCAVERNS PASSIVEDOODADS FANGDRUIDS WC_BenchStone02.mdx", + [2005985] = "World KALIMDOR WAILINGCAVERNS PASSIVEDOODADS FANGDRUIDS WC_Cairn.mdx", + [2005986] = "World KALIMDOR WAILINGCAVERNS PASSIVEDOODADS FANGDRUIDS WC_DruidOfTheQuatlCircle.mdx", + [2005987] = "World KALIMDOR WAILINGCAVERNS PASSIVEDOODADS FANGDRUIDS WC_DruidOfTheRaptorCircle.mdx", + [2005988] = "World KALIMDOR WAILINGCAVERNS PASSIVEDOODADS FANGDRUIDS WC_DruidOfTheRaptorClaw.mdx", + [2005989] = "World KALIMDOR WAILINGCAVERNS PASSIVEDOODADS FANGDRUIDS WC_DruidOfTheRaptorTooth.mdx", + [2005990] = "World KALIMDOR WAILINGCAVERNS PASSIVEDOODADS FANGDRUIDS WC_DruidOfTheSerpentCircle.mdx", + [2005991] = "World KALIMDOR WAILINGCAVERNS PASSIVEDOODADS FANGDRUIDS WC_DruidOfTheSerpentStone.mdx", + [2005992] = "World KALIMDOR WAILINGCAVERNS PASSIVEDOODADS FANGDRUIDS WC_DruidOfTheSerpentStoneHead.mdx", + [2005993] = "World KALIMDOR WAILINGCAVERNS PASSIVEDOODADS FANGDRUIDS WC_DruidOfTheThunderCircle.mdx", + [2005994] = "World KALIMDOR WAILINGCAVERNS PASSIVEDOODADS FANGDRUIDS WC_DruidOfTheThunderSpine.mdx", + [2005995] = "World KALIMDOR WAILINGCAVERNS PASSIVEDOODADS FANGDRUIDS WC_StoolStone.mdx", + [2005996] = "World KALIMDOR WAILINGCAVERNS PASSIVEDOODADS FANGDRUIDS WC_TableStone.mdx", + [2005997] = "World KALIMDOR WAILINGCAVERNS PASSIVEDOODADS HangingHeads WC_HangingHead01.mdx", + [2005998] = "World KALIMDOR WAILINGCAVERNS PASSIVEDOODADS StickBundles wc_stickbundle01.mdx", + [2005999] = "World KALIMDOR WAILINGCAVERNS PASSIVEDOODADS StickBundles wc_stickbundle02.mdx", + [2006000] = "World KALIMDOR WAILINGCAVERNS PASSIVEDOODADS StickBundles wc_stickbundle03.mdx", + [2006001] = "World KALIMDOR WAILINGCAVERNS PASSIVEDOODADS Waterfalls WailingWaterFall01.mdx", + [2006002] = "World KALIMDOR Winterspring ActiveDoodads Altar WinterspringAltar01.mdx", + [2006003] = "World KALIMDOR Winterspring PassiveDoodads FrostSaberRock WinterSpringFrostSaberRock.mdx", + [2006004] = "World KALIMDOR Winterspring PassiveDoodads FrozenWaterFalls FrozenWaterfall01.mdx", + [2006005] = "World KALIMDOR Winterspring PassiveDoodads FrozenWaterFalls FrozenWaterfall02.mdx", + [2006006] = "World KALIMDOR Winterspring PassiveDoodads FrozenWaterFalls FrozenWaterfall03.mdx", + [2006007] = "World KALIMDOR Winterspring PassiveDoodads FurbolgTent FurbolgTentSnow.mdx", + [2006008] = "World KALIMDOR Winterspring PassiveDoodads FurbolgTent FurbolgTentSnow2.mdx", + [2006009] = "World KALIMDOR Winterspring PassiveDoodads FurbolgTotems FurbolgTotemSnow01.mdx", + [2006010] = "World KALIMDOR Winterspring PassiveDoodads FurbolgTotems FurbolgTotemSnow02.mdx", + [2006011] = "World KALIMDOR Winterspring PassiveDoodads Rocks WinterSpringRock01.mdx", + [2006012] = "World KALIMDOR Winterspring PassiveDoodads Rocks WinterSpringRock02.mdx", + [2006013] = "World KALIMDOR Winterspring PassiveDoodads Rocks WinterSpringRock03.mdx", + [2006014] = "World KALIMDOR Winterspring PassiveDoodads Rocks WinterSpringRock04.mdx", + [2006015] = "World KALIMDOR Winterspring PassiveDoodads Rocks WinterSpringRock05.mdx", + [2006016] = "World KALIMDOR Winterspring PassiveDoodads Rocks WinterSpringRock06.mdx", + [2006017] = "World KALIMDOR Winterspring PassiveDoodads Rocks WinterSpringRock07.mdx", + [2006018] = "World KALIMDOR Winterspring PassiveDoodads Rocks WinterSpringRock08.mdx", + [2006019] = "World KALIMDOR Winterspring PassiveDoodads Trees NewWinterspringMidTree01.mdx", + [2006020] = "World KALIMDOR Winterspring PassiveDoodads Trees NewWinterspringMidTree02.mdx", + [2006021] = "World KALIMDOR Winterspring PassiveDoodads Trees NewWinterspringTree01.mdx", + [2006022] = "World KALIMDOR Winterspring PassiveDoodads Trees NewWinterspringTree02.mdx", + [2006023] = "World KALIMDOR Winterspring PassiveDoodads Trees NewWinterspringTree05.mdx", + [2006024] = "World KALIMDOR Winterspring PassiveDoodads WinterspringBushes WinterSpringBush01.mdx", + [2006025] = "World KALIMDOR Winterspring PassiveDoodads WinterspringFallenTrees WinterSpringFallenBranch01.mdx", + [2006026] = "World KALIMDOR Winterspring PassiveDoodads WinterspringFallenTrees WinterSpringFallenTree01.mdx", + [2006027] = "World KALIMDOR Winterspring PassiveDoodads WinterspringFallenTrees WinterSpringFallenTree02.mdx", + [2006028] = "World KALIMDOR Winterspring PassiveDoodads WinterspringTrees WinterSpringTree01.mdx", + [2006029] = "World KALIMDOR Winterspring PassiveDoodads WinterspringTrees WinterSpringTree02.mdx", + [2006030] = "World KALIMDOR Winterspring PassiveDoodads WinterspringTrees WinterSpringTree03.mdx", + [2006031] = "World KALIMDOR Winterspring PassiveDoodads WorldTreeRoots WinterSpringWorldTreeRoot01.mdx", + [2006032] = "World KALIMDOR Winterspring PassiveDoodads WorldTreeRoots WinterSpringWorldTreeRoot02.mdx", + [2006033] = "World KALIMDOR Winterspring PassiveDoodads WorldTreeRoots WinterSpringWorldTreeRoot03.mdx", + [2006034] = "World KALIMDOR Winterspring PassiveDoodads WorldTreeRoots WinterSpringWorldTreeRoot04.mdx", + [2006035] = "World KHAZMODAN BADLANDS PASSIVEDOODADS Bones BadlandsBones01.mdx", + [2006036] = "World KHAZMODAN BADLANDS PASSIVEDOODADS Bones BadlandsBones02.mdx", + [2006037] = "World KHAZMODAN BADLANDS PASSIVEDOODADS Bones BadlandsBones03.mdx", + [2006038] = "World KHAZMODAN BADLANDS PASSIVEDOODADS Cactus BadlandsCactus_1.mdx", + [2006039] = "World KHAZMODAN BADLANDS PASSIVEDOODADS Cactus BadlandsCactus_10.mdx", + [2006040] = "World KHAZMODAN BADLANDS PASSIVEDOODADS Cactus BadlandsCactus_2.mdx", + [2006041] = "World KHAZMODAN BADLANDS PASSIVEDOODADS Cactus BadlandsCactus_3.mdx", + [2006042] = "World KHAZMODAN BADLANDS PASSIVEDOODADS Cactus BadlandsCactus_4.mdx", + [2006043] = "World KHAZMODAN BADLANDS PASSIVEDOODADS Cactus BadlandsCactus_5.mdx", + [2006044] = "World KHAZMODAN BADLANDS PASSIVEDOODADS Cactus BadlandsCactus_6.mdx", + [2006045] = "World KHAZMODAN BADLANDS PASSIVEDOODADS Cactus BadlandsCactus_7.mdx", + [2006046] = "World KHAZMODAN BADLANDS PASSIVEDOODADS Cactus BadlandsCactus_8.mdx", + [2006047] = "World KHAZMODAN BADLANDS PASSIVEDOODADS Cactus BadlandsCactus_9.mdx", + [2006048] = "World KHAZMODAN BADLANDS PASSIVEDOODADS QuestBlade QuestBladeBadlands.mdx", + [2006049] = "World KHAZMODAN BADLANDS PASSIVEDOODADS RUNE PentagramDirtBadlands.mdx", + [2006050] = "World KHAZMODAN BADLANDS PASSIVEDOODADS Rocks BadlandsRock01.mdx", + [2006051] = "World KHAZMODAN BADLANDS PASSIVEDOODADS Rocks BadlandsRock02.mdx", + [2006052] = "World KHAZMODAN BADLANDS PASSIVEDOODADS Rocks BadlandsRock03.mdx", + [2006053] = "World KHAZMODAN BADLANDS PASSIVEDOODADS Rocks BadlandsRock04.mdx", + [2006054] = "World KHAZMODAN BADLANDS PASSIVEDOODADS Rocks BadlandsRock05.mdx", + [2006055] = "World KHAZMODAN BADLANDS PASSIVEDOODADS Rocks BadlandsRock06.mdx", + [2006056] = "World KHAZMODAN BADLANDS PASSIVEDOODADS Rocks BadlandsRock07.mdx", + [2006057] = "World KHAZMODAN BADLANDS PASSIVEDOODADS Rocks BadlandsRock08.mdx", + [2006058] = "World KHAZMODAN BADLANDS PASSIVEDOODADS SkeletalKing BadlandsSkeletalKing.mdx", + [2006059] = "World KHAZMODAN BADLANDS PASSIVEDOODADS Statues BadlandsCobraPillar01.mdx", + [2006060] = "World KHAZMODAN BADLANDS PASSIVEDOODADS Statues BadlandsCobraPillar02.mdx", + [2006061] = "World KHAZMODAN BADLANDS PASSIVEDOODADS Statues BadlandsCobraPillar03.mdx", + [2006062] = "World KHAZMODAN BADLANDS PASSIVEDOODADS Statues BadlandsCobraStatue01.mdx", + [2006063] = "World KHAZMODAN BADLANDS PASSIVEDOODADS Statues BadlandsCobraStatue02.mdx", + [2006064] = "World KHAZMODAN BADLANDS PASSIVEDOODADS Statues BadlandsCobraStatue03.mdx", + [2006065] = "World KHAZMODAN BADLANDS PASSIVEDOODADS Trees BadlandsCactus01.mdx", + [2006066] = "World KHAZMODAN BADLANDS PASSIVEDOODADS Trees BadlandsCactus02.mdx", + [2006067] = "World KHAZMODAN BADLANDS PASSIVEDOODADS Trees BadlandsCactus03.mdx", + [2006068] = "World KHAZMODAN BADLANDS PASSIVEDOODADS Trees BadlandsPalmTree01.mdx", + [2006069] = "World KHAZMODAN BADLANDS PASSIVEDOODADS Trees BadlandsPalmTree02.mdx", + [2006070] = "World KHAZMODAN BADLANDS PASSIVEDOODADS Trees BadlandsTree01.mdx", + [2006071] = "World KHAZMODAN BADLANDS PASSIVEDOODADS Trees BadlandsTree01Dead.mdx", + [2006072] = "World KHAZMODAN BADLANDS PASSIVEDOODADS Trees BadlandsTree01Fallen.mdx", + [2006073] = "World KHAZMODAN BADLANDS PASSIVEDOODADS Trees BadlandsTree02.mdx", + [2006074] = "World KHAZMODAN BADLANDS PASSIVEDOODADS Trees BadlandsTree02Dead.mdx", + [2006075] = "World KHAZMODAN BADLANDS PASSIVEDOODADS Trees BadlandsTree02Fallen.mdx", + [2006076] = "World KHAZMODAN BADLANDS PASSIVEDOODADS Trees BadlandsTree03.mdx", + [2006077] = "World KHAZMODAN BADLANDS PASSIVEDOODADS Trees BadlandsTree03Dead.mdx", + [2006078] = "World KHAZMODAN BADLANDS PASSIVEDOODADS Trees BadlandsTree04.mdx", + [2006079] = "World KHAZMODAN BADLANDS PASSIVEDOODADS Trees BadlandsTreeStump01.mdx", + [2006080] = "World KHAZMODAN BADLANDS PASSIVEDOODADS Wagon BadlandsSunkenWagon.mdx", + [2006081] = "World KHAZMODAN BADLANDS PASSIVEDOODADS bushes BadlandsShrub01.mdx", + [2006082] = "World KHAZMODAN BADLANDS PASSIVEDOODADS bushes BadlandsShrub02.mdx", + [2006083] = "World KHAZMODAN BADLANDS PASSIVEDOODADS bushes BadlandsShrub03.mdx", + [2006084] = "World KHAZMODAN BADLANDS PASSIVEDOODADS bushes BadlandsShrub03Dead.mdx", + [2006085] = "World KHAZMODAN BADLANDS PASSIVEDOODADS bushes BadlandsShrub04.mdx", + [2006086] = "World KHAZMODAN BADLANDS PASSIVEDOODADS bushes BadlandsShrub04Dead.mdx", + [2006087] = "World KHAZMODAN BADLANDS PASSIVEDOODADS bushes BadlandsShrub05.mdx", + [2006088] = "World KHAZMODAN BADLANDS PASSIVEDOODADS bushes BadlandsShrub06.mdx", + [2006089] = "World KHAZMODAN BADLANDS PASSIVEDOODADS bushes BadlandsShrub07.mdx", + [2006090] = "World KHAZMODAN BADLANDS PASSIVEDOODADS bushes BadlandsShrub08.mdx", + [2006091] = "World KHAZMODAN BLACKROCK ACTIVEDOODADS ANVIL DarkIronAnvil.mdx", + [2006092] = "World KHAZMODAN BLACKROCK ACTIVEDOODADS ANVIL DarkIronForge.mdx", + [2006093] = "World KHAZMODAN BLACKROCK ACTIVEDOODADS AltarRitual BlackrockAltarRitual.mdx", + [2006094] = "World KHAZMODAN BLACKROCK ACTIVEDOODADS ArenaFlag ArenaFlag.mdx", + [2006095] = "World KHAZMODAN BLACKROCK ACTIVEDOODADS Chalice BlackRockChalice.mdx", + [2006096] = "World KHAZMODAN BLACKROCK ACTIVEDOODADS DarkIronBrazier DarkIronBrazier.mdx", + [2006097] = "World KHAZMODAN BLACKROCK ACTIVEDOODADS Safe DarkIronSafe.mdx", + [2006098] = "World KHAZMODAN BLACKROCK ACTIVEDOODADS Seal BlackRockSeal.mdx", + [2006099] = "World KHAZMODAN BLACKROCK ACTIVEDOODADS StatueThaurissan StatueDarkIronThaurissan.mdx", + [2006100] = "World KHAZMODAN BLACKROCK ACTIVEDOODADS StatueThaurissan StatueDarkIronThaurissanHammer.mdx", + [2006101] = "World KHAZMODAN BLACKROCK ACTIVEDOODADS SuppressionTrap BlackrockSuppressionTrap.mdx", + [2006102] = "World KHAZMODAN BLACKROCK ACTIVEDOODADS Vault BlackRockVaultDepositDoor01.mdx", + [2006103] = "World KHAZMODAN BLACKROCK ACTIVEDOODADS Vault BlackRockVaultDepositDoor02.mdx", + [2006104] = "World KHAZMODAN BLACKROCK ACTIVEDOODADS Vault BlackRockVaultSecretDoor.mdx", + [2006105] = "World KHAZMODAN BLACKROCK ACTIVEDOODADS Vault BlackRockVaultSpecialDoor.mdx", + [2006106] = "World KHAZMODAN BLACKROCK PASSIVEDOODADS BlackRockTeslaCoil.mdx", + [2006107] = "World KHAZMODAN BLACKROCK PASSIVEDOODADS BlackrockLavaBubbles BlackrockStatueLavaBubble.mdx", + [2006108] = "World KHAZMODAN BLACKROCK PASSIVEDOODADS BlackrockLavaBubbles BlackrockStatueLavaBubbles.mdx", + [2006109] = "World KHAZMODAN BLACKROCK PASSIVEDOODADS BlackrockLavaBubbles BlackrockStatueLavaSplash.mdx", + [2006110] = "World KHAZMODAN BLACKROCK PASSIVEDOODADS BlackrockLavaFlow BlackRockLavaFalls01.mdx", + [2006111] = "World KHAZMODAN BLACKROCK PASSIVEDOODADS BlackrockLavaFlow BlackRockLavaFalls02.mdx", + [2006112] = "World KHAZMODAN BLACKROCK PASSIVEDOODADS BlackrockLavaFlow BlackRockMouthLava01.mdx", + [2006113] = "World KHAZMODAN BLACKROCK PASSIVEDOODADS BlackrockLavaFlow BlackRockMouthLava02.mdx", + [2006114] = "World KHAZMODAN BLACKROCK PASSIVEDOODADS BlackrockLavaFlow BlackrockStatueLavaFlow.mdx", + [2006115] = "World KHAZMODAN BLACKROCK PASSIVEDOODADS BlackrockLavaFlow BlackrockStatueLavaFlowWide.mdx", + [2006116] = "World KHAZMODAN BLACKROCK PASSIVEDOODADS BlackrockPortraits BankPortrait.mdx", + [2006117] = "World KHAZMODAN BLACKROCK PASSIVEDOODADS BlackrockPortraits BankPortraitPlate.mdx", + [2006118] = "World KHAZMODAN BLACKROCK PASSIVEDOODADS Blackrockdirectionalsign Blackrockdirectionalsign.mdx", + [2006119] = "World KHAZMODAN BLACKROCK PASSIVEDOODADS BlackwingThrone BlackwingLair_throne.mdx", + [2006120] = "World KHAZMODAN BLACKROCK PASSIVEDOODADS DEATHWINGEXPERIMENTS BlackRockBloodMachine01.mdx", + [2006121] = "World KHAZMODAN BLACKROCK PASSIVEDOODADS DEATHWINGEXPERIMENTS BlackRockBloodMachine02.mdx", + [2006122] = "World KHAZMODAN BLACKROCK PASSIVEDOODADS DEATHWINGEXPERIMENTS BlackRockBloodMachine03.mdx", + [2006123] = "World KHAZMODAN BLACKROCK PASSIVEDOODADS DEATHWINGEXPERIMENTS BlackRockBloodMachine04.mdx", + [2006124] = "World KHAZMODAN BLACKROCK PASSIVEDOODADS DEATHWINGEXPERIMENTS BlackRockBloodVile.mdx", + [2006125] = "World KHAZMODAN BLACKROCK PASSIVEDOODADS DEATHWINGEXPERIMENTS HangingDragon01.mdx", + [2006126] = "World KHAZMODAN BLACKROCK PASSIVEDOODADS DEATHWINGEXPERIMENTS HangingDragon02.mdx", + [2006127] = "World KHAZMODAN BLACKROCK PASSIVEDOODADS DEATHWINGEXPERIMENTS WallMountedVial01.mdx", + [2006128] = "World KHAZMODAN BLACKROCK PASSIVEDOODADS DEATHWINGEXPERIMENTS WallMountedVial02.mdx", + [2006129] = "World KHAZMODAN BLACKROCK PASSIVEDOODADS Doors BlackRockCellDoor01.mdx", + [2006130] = "World KHAZMODAN BLACKROCK PASSIVEDOODADS Doors BlackRockDoorSingle.mdx", + [2006131] = "World KHAZMODAN BLACKROCK PASSIVEDOODADS Doors BlackRockDoors01.mdx", + [2006132] = "World KHAZMODAN BLACKROCK PASSIVEDOODADS Doors BlackRockHugeDoors.mdx", + [2006133] = "World KHAZMODAN BLACKROCK PASSIVEDOODADS Doors BlackRockHugeDoorsMechanism.mdx", + [2006134] = "World KHAZMODAN BLACKROCK PASSIVEDOODADS Doors BlackRockHugeDoorsMechanismLock.mdx", + [2006135] = "World KHAZMODAN BLACKROCK PASSIVEDOODADS Doors BlackRockHugeDoorsOpenDoorCollision.mdx", + [2006136] = "World KHAZMODAN BLACKROCK PASSIVEDOODADS Doors BlackRockHugeDoorsPortcullis.mdx", + [2006137] = "World KHAZMODAN BLACKROCK PASSIVEDOODADS Doors BlackRockIronDoor01.mdx", + [2006138] = "World KHAZMODAN BLACKROCK PASSIVEDOODADS Doors DarkIronPortcullis.mdx", + [2006139] = "World KHAZMODAN BLACKROCK PASSIVEDOODADS DragonKinEggs DragonkinEgg.mdx", + [2006140] = "World KHAZMODAN BLACKROCK PASSIVEDOODADS DragonKinEggs DragonkinEggBroken.mdx", + [2006141] = "World KHAZMODAN BLACKROCK PASSIVEDOODADS DragonKinNests DragonKinNest01.mdx", + [2006142] = "World KHAZMODAN BLACKROCK PASSIVEDOODADS DragonKinNests DragonKinNest02.mdx", + [2006143] = "World KHAZMODAN BLACKROCK PASSIVEDOODADS DragonKinNests DragonKinNest03.mdx", + [2006144] = "World KHAZMODAN BLACKROCK PASSIVEDOODADS DragonKinNests DragonKinNestclump01.mdx", + [2006145] = "World KHAZMODAN BLACKROCK PASSIVEDOODADS GolemParts CannonGolemArm.mdx", + [2006146] = "World KHAZMODAN BLACKROCK PASSIVEDOODADS GolemParts CannonGolemCannon.mdx", + [2006147] = "World KHAZMODAN BLACKROCK PASSIVEDOODADS GolemParts CannonGolemFoot.mdx", + [2006148] = "World KHAZMODAN BLACKROCK PASSIVEDOODADS GolemParts CannonGolemOperationTable.mdx", + [2006149] = "World KHAZMODAN BLACKROCK PASSIVEDOODADS GolemParts CannonGolemWaist.mdx", + [2006150] = "World KHAZMODAN BLACKROCK PASSIVEDOODADS Hooks BlackRockHookArm01.mdx", + [2006151] = "World KHAZMODAN BLACKROCK PASSIVEDOODADS Hooks BlackRockHookBody01.mdx", + [2006152] = "World KHAZMODAN BLACKROCK PASSIVEDOODADS Hooks BlackRockHookCannon01.mdx", + [2006153] = "World KHAZMODAN BLACKROCK PASSIVEDOODADS Hooks BlackRockHookEmpty.mdx", + [2006154] = "World KHAZMODAN BLACKROCK PASSIVEDOODADS Hooks BlackRockHookFoot01.mdx", + [2006155] = "World KHAZMODAN BLACKROCK PASSIVEDOODADS Hooks BlackRockHookHead01.mdx", + [2006156] = "World KHAZMODAN BLACKROCK PASSIVEDOODADS MuseumGem MuseumGem01.mdx", + [2006157] = "World KHAZMODAN BLACKROCK PASSIVEDOODADS WarchiefsHead WarchiefRendsHead.mdx", + [2006158] = "World KHAZMODAN IRONFORGE BUILDINGS FORTRESS01_06 Fortress01_06.mdx", + [2006159] = "World KHAZMODAN IRONFORGE BUILDINGS FORTRESS01_09 Fortress01_09.mdx", + [2006160] = "World KHAZMODAN IRONFORGE BUILDINGS Fortress01_08 Fortress01_08.mdx", + [2006161] = "World KHAZMODAN IRONFORGE BUILDINGS Fortress02_04 Fortress02_04.mdx", + [2006162] = "World KHAZMODAN IRONFORGE BUILDINGS Fortress02_06 Fortress02_06.mdx", + [2006163] = "World KHAZMODAN IRONFORGE BUILDINGS Fortress02_07 Fortress02_07.mdx", + [2006164] = "World KHAZMODAN IRONFORGE BUILDINGS Fortress03_03 Fortress03_03.mdx", + [2006165] = "World KHAZMODAN IRONFORGE BUILDINGS Fortress03_04a Fortress03_04a.mdx", + [2006166] = "World KHAZMODAN IRONFORGE BUILDINGS Fortress03_04b Fortress03_04b.mdx", + [2006167] = "World KHAZMODAN IRONFORGE BUILDINGS Fortress03_05 Fortress03_05.mdx", + [2006168] = "World KHAZMODAN IRONFORGE BUILDINGS Fortress03_05b Fortress03_05b.mdx", + [2006169] = "World KHAZMODAN IRONFORGE BUILDINGS Fortress04_03 Fortress04_03.mdx", + [2006170] = "World KHAZMODAN IRONFORGE BUILDINGS Fortress04_05 Fortress04_05.mdx", + [2006171] = "World KHAZMODAN IRONFORGE BUILDINGS Fortress04_06 Fortress04_06.mdx", + [2006172] = "World KHAZMODAN IRONFORGE BUILDINGS Fortress05_03 Fortress05_03.mdx", + [2006173] = "World KHAZMODAN IRONFORGE BUILDINGS Fortress05_05 Fortress05_05.mdx", + [2006174] = "World KHAZMODAN IRONFORGE BUILDINGS RuneStoneSnow_01 RuneStoneSnow_01.mdx", + [2006175] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS AuctionHouse AuctioneerCollision.mdx", + [2006176] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS Banners DwarfBannerBlue01.mdx", + [2006177] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS Banners DwarfBannerGold01.mdx", + [2006178] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS Banners DwarfBannerRed01.mdx", + [2006179] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS Banners DwarfBannerSilver01.mdx", + [2006180] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS Bush IronForgeAngledBush01.mdx", + [2006181] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS Bush IronForgeBush01.mdx", + [2006182] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS Bush IronForgeSnowyBush02.mdx", + [2006183] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS Elevators IronforgeElevator.mdx", + [2006184] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS Elevators IronforgeElevatorDoor.mdx", + [2006185] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS Elevators IronforgeHouseElevator.mdx", + [2006186] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS Fences DunMoroghStoneFence01.mdx", + [2006187] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS Fences DunMoroghStoneFence02.mdx", + [2006188] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS Fences DunMoroghStoneFence03.mdx", + [2006189] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS Fences DunMoroghStoneFence04.mdx", + [2006190] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS GarageMachine GarageMachine.mdx", + [2006191] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS GnomeArea GnomeKingGear.mdx", + [2006192] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS GnomeArea GnomeKingGearSmall.mdx", + [2006193] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS GnomeArea GnomeKingSpiralGear.mdx", + [2006194] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS GnomeArea GnomeKingWormGear.mdx", + [2006195] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS GnomeArea Vent GnomereganVent.mdx", + [2006196] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS GreatForge TheGreatAnvil.mdx", + [2006197] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS HammerQuest01 HammerQuest01.mdx", + [2006198] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS HotCoals HotCoals.mdx", + [2006199] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS LavaSteam ForgeLavaA.mdx", + [2006200] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS LavaSteam ForgeLavaB.mdx", + [2006201] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS LavaSteam IronforgeBellow.mdx", + [2006202] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS LavaSteam IronforgePiston.mdx", + [2006203] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS LavaSteam IronforgeWheel.mdx", + [2006204] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS LavaSteam LavaPots.mdx", + [2006205] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS LavaSteam LavaSteam.mdx", + [2006206] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS MUSEUMEXHIBITS DwarvenGlobe01.mdx", + [2006207] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS MUSEUMEXHIBITS GiantRamExhibit.mdx", + [2006208] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS MUSEUMEXHIBITS GryphonClawExhibit.mdx", + [2006209] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS MargolReaverHorn MargolReaverHorn.mdx", + [2006210] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS Plaques DwarfMuseumPlaque01.mdx", + [2006211] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS ROCKS IronForgeCliff01.mdx", + [2006212] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS ROCKS IronForgeCliff02.mdx", + [2006213] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS ROCKS IronForgeCliff03.mdx", + [2006214] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS ROCKS IronForgeCliff04.mdx", + [2006215] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS ROCKS SnowyTowerRock01.mdx", + [2006216] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS ROCKS SnowyTowerRock02.mdx", + [2006217] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS ROCKS SnowyTowerRock03.mdx", + [2006218] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS SLIMEJARS SlimeJar01.mdx", + [2006219] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS SLIMEJARS SlimeJar02.mdx", + [2006220] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS SLIMEJARS SlimeJar03.mdx", + [2006221] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS STATUES IronforgeStatue_01.mdx", + [2006222] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS SignPosts IronforgeSignPost.mdx", + [2006223] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS SignPosts IronforgeSignPostPointer.mdx", + [2006224] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS SteamTank IronForgeSteamTank.mdx", + [2006225] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS SteamTank IronForgeSteamTankDrag.mdx", + [2006226] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS SteamTank IronForgeSteamTankRuined01.mdx", + [2006227] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS SteamTank RuinedSteamTankAxle01.mdx", + [2006228] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS SteamTank RuinedSteamTankGasTank01.mdx", + [2006229] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS SteamTank RuinedSteamTankWheel01.mdx", + [2006230] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS THRONE DwarvenThrone01.mdx", + [2006231] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS ThroneRoom IronforgeCrystalRoof.mdx", + [2006232] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS Trees IronForgePine01.mdx", + [2006233] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS Trees IronForgePine02.mdx", + [2006234] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS Trees IronForgeSnowTree01.mdx", + [2006235] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS Trees IronForgeTree01.mdx", + [2006236] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS Trees IronForgeTree02.mdx", + [2006237] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS Trees IronForgeTree03.mdx", + [2006238] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS Trees IronStump01.mdx", + [2006239] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS Trees IronStump02.mdx", + [2006240] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS Trees IronStump03.mdx", + [2006241] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS Trees IronStump04.mdx", + [2006242] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS Trees IronStump05.mdx", + [2006243] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS Trees IronforgeTree04.mdx", + [2006244] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS Trees WinterMidTree01.mdx", + [2006245] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS Trees WinterMidTree02.mdx", + [2006246] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS Trees WinterMidTree03.mdx", + [2006247] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS Trees WinterSmallTree01.mdx", + [2006248] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS Trees WinterSmallTree02.mdx", + [2006249] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS Trees WinterTree01.mdx", + [2006250] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS Trees WinterTree02.mdx", + [2006251] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS Trees WinterTree03.mdx", + [2006252] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS Trees WinterTree04.mdx", + [2006253] = "World KHAZMODAN IRONFORGE PASSIVEDOODADS Trees WinterTree05.mdx", + [2006254] = "World KHAZMODAN LOCHMODAN PASSIVEDOODADS Bushes LochModanShrub01.mdx", + [2006255] = "World KHAZMODAN LOCHMODAN PASSIVEDOODADS Bushes LochModanShrub02.mdx", + [2006256] = "World KHAZMODAN LOCHMODAN PASSIVEDOODADS Bushes LochModanShrub03.mdx", + [2006257] = "World KHAZMODAN LOCHMODAN PASSIVEDOODADS Bushes LochModanShrub04.mdx", + [2006258] = "World KHAZMODAN LOCHMODAN PASSIVEDOODADS Bushes LochModanShrub06.mdx", + [2006259] = "World KHAZMODAN LOCHMODAN PASSIVEDOODADS Bushes LochModanShurb05.mdx", + [2006260] = "World KHAZMODAN LOCHMODAN PASSIVEDOODADS DAM testdam01.mdx", + [2006261] = "World KHAZMODAN LOCHMODAN PASSIVEDOODADS Fences LochModanStoneFence01.mdx", + [2006262] = "World KHAZMODAN LOCHMODAN PASSIVEDOODADS Fences LochModanStoneFence02.mdx", + [2006263] = "World KHAZMODAN LOCHMODAN PASSIVEDOODADS Fences LochModanStoneFence03.mdx", + [2006264] = "World KHAZMODAN LOCHMODAN PASSIVEDOODADS Fences LochModanStoneFence04.mdx", + [2006265] = "World KHAZMODAN LOCHMODAN PASSIVEDOODADS Fences LochModanWoodFence01.mdx", + [2006266] = "World KHAZMODAN LOCHMODAN PASSIVEDOODADS Fences LochModanWoodFence02.mdx", + [2006267] = "World KHAZMODAN LOCHMODAN PASSIVEDOODADS Fences LochModanWoodFence03.mdx", + [2006268] = "World KHAZMODAN LOCHMODAN PASSIVEDOODADS Fences LochModanWoodFence04.mdx", + [2006269] = "World KHAZMODAN LOCHMODAN PASSIVEDOODADS Grass LochTallGrass01.mdx", + [2006270] = "World KHAZMODAN LOCHMODAN PASSIVEDOODADS Grass LochTallGrass02.mdx", + [2006271] = "World KHAZMODAN LOCHMODAN PASSIVEDOODADS Grass LochTallGrass03.mdx", + [2006272] = "World KHAZMODAN LOCHMODAN PASSIVEDOODADS Grass LochTallGrass04.mdx", + [2006273] = "World KHAZMODAN LOCHMODAN PASSIVEDOODADS Logs LochLog01.mdx", + [2006274] = "World KHAZMODAN LOCHMODAN PASSIVEDOODADS TitanRuins TitanRuinsArch01.mdx", + [2006275] = "World KHAZMODAN LOCHMODAN PASSIVEDOODADS TitanRuins TitanRuinsArch02.mdx", + [2006276] = "World KHAZMODAN LOCHMODAN PASSIVEDOODADS TitanRuins TitanRuinsBlock01.mdx", + [2006277] = "World KHAZMODAN LOCHMODAN PASSIVEDOODADS TitanRuins TitanRuinsBlock02.mdx", + [2006278] = "World KHAZMODAN LOCHMODAN PASSIVEDOODADS TitanRuins TitanRuinsHead01.mdx", + [2006279] = "World KHAZMODAN LOCHMODAN PASSIVEDOODADS TitanRuins TitanRuinsPillar01.mdx", + [2006280] = "World KHAZMODAN LOCHMODAN PASSIVEDOODADS TitanRuins TitanRuinsPillar02.mdx", + [2006281] = "World KHAZMODAN LOCHMODAN PASSIVEDOODADS TitanRuins TitanRuinsPillar03.mdx", + [2006282] = "World KHAZMODAN LOCHMODAN PASSIVEDOODADS TitanRuins TitanRuinsPillar04.mdx", + [2006283] = "World KHAZMODAN LOCHMODAN PASSIVEDOODADS TitanRuins TitanRuinsPillar05.mdx", + [2006284] = "World KHAZMODAN LOCHMODAN PASSIVEDOODADS TitanRuins TitanRuinsWall01.mdx", + [2006285] = "World KHAZMODAN LOCHMODAN PASSIVEDOODADS TitanRuins TitanRuinsWall02.mdx", + [2006286] = "World KHAZMODAN LOCHMODAN PASSIVEDOODADS TitanRuins TitanRuinsWall03.mdx", + [2006287] = "World KHAZMODAN LOCHMODAN PASSIVEDOODADS TitanRuins TitanRuinsWall04.mdx", + [2006288] = "World KHAZMODAN LOCHMODAN PASSIVEDOODADS TitanRuins TitanRuinsWall05.mdx", + [2006289] = "World KHAZMODAN LOCHMODAN PASSIVEDOODADS Trees LochModanFallenTree01.mdx", + [2006290] = "World KHAZMODAN LOCHMODAN PASSIVEDOODADS Trees LochModanTree01.mdx", + [2006291] = "World KHAZMODAN LOCHMODAN PASSIVEDOODADS Trees LochModanTree02.mdx", + [2006292] = "World KHAZMODAN LOCHMODAN PASSIVEDOODADS Trees LochModanTree03.mdx", + [2006293] = "World KHAZMODAN LOCHMODAN PASSIVEDOODADS Trees LochModanTree04.mdx", + [2006294] = "World KHAZMODAN LOCHMODAN PASSIVEDOODADS Trees LochModanTree05.mdx", + [2006295] = "World KHAZMODAN LOCHMODAN PASSIVEDOODADS Trees LochModanTree06.mdx", + [2006296] = "World KHAZMODAN LOCHMODAN PASSIVEDOODADS Trees LochModanTree07.mdx", + [2006297] = "World KHAZMODAN LOCHMODAN PASSIVEDOODADS Trees LochModanTree08.mdx", + [2006298] = "World KHAZMODAN LOCHMODAN PASSIVEDOODADS Trees LochModanTree09.mdx", + [2006299] = "World KHAZMODAN LOCHMODAN PASSIVEDOODADS Trees LochModanTreeLog01.mdx", + [2006300] = "World KHAZMODAN LOCHMODAN PASSIVEDOODADS Trees LochModanTreeStump01.mdx", + [2006301] = "World KHAZMODAN LOCHMODAN PASSIVEDOODADS Trees LochModanTreeStump02.mdx", + [2006302] = "World KHAZMODAN LOCHMODAN PASSIVEDOODADS Trees LochTallGrass05.mdx", + [2006303] = "World KHAZMODAN LOCHMODAN PASSIVEDOODADS Trees LochTallGrass06.mdx", + [2006304] = "World KHAZMODAN LOCHMODAN PASSIVEDOODADS Trees LochTallGrass07.mdx", + [2006305] = "World KHAZMODAN ULDAMAN ActiveDoodads Altar StoneKeeperAltar.mdx", + [2006306] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS BOOKS UldamanBook01.mdx", + [2006307] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS BOOKS UldamanBook02.mdx", + [2006308] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS BOOKS UldamanBook03.mdx", + [2006309] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS BOOKS UldamanBookBroken01.mdx", + [2006310] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS BOOKS UldamanBookBroken02.mdx", + [2006311] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Banners Banner01.mdx", + [2006312] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Banners Banner02.mdx", + [2006313] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Banners BannerRuined01.mdx", + [2006314] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Banners BannerRuined02.mdx", + [2006315] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Benches UldamanBench01.mdx", + [2006316] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Benches UldamanBench02.mdx", + [2006317] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Benches UldamanBenchBroken01.mdx", + [2006318] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Benches UldamanBenchRuined01.mdx", + [2006319] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Benches UldamanBenchRuined02.mdx", + [2006320] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Bookshelves UldamanBookshelf.mdx", + [2006321] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Bookshelves UldamanBookshelf01.mdx", + [2006322] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Bookshelves UldamanBookshelfBroken.mdx", + [2006323] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Bookshelves UldamanBookshelfBroken01.mdx", + [2006324] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Braziers UldamanBrazier01.mdx", + [2006325] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Braziers UldamanBrazierBroken01.mdx", + [2006326] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Debris UldamanScrollDebris01.mdx", + [2006327] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Debris UldamanScrollDebris02.mdx", + [2006328] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Debris UldamanScrollDebris03.mdx", + [2006329] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Lamps UldamanLamp.mdx", + [2006330] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Lamps UldamanLampAndPost.mdx", + [2006331] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Lamps UldamanLampAndPostBusted01.mdx", + [2006332] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Lamps UldamanLampAndPostBusted02.mdx", + [2006333] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Lamps UldamanLampAndPostBusted03.mdx", + [2006334] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Lamps UldamanLampAndPostBusted04.mdx", + [2006335] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Lamps UldamanLampBroken.mdx", + [2006336] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Lamps UldamanLampFallen.mdx", + [2006337] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Lamps UldamanLantern.mdx", + [2006338] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Paintings Painting01.mdx", + [2006339] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Paintings Painting02.mdx", + [2006340] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Paintings PaintingRuined01.mdx", + [2006341] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Paintings PaintingRuined02.mdx", + [2006342] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS PlatinumDisk PlatinumDisk.mdx", + [2006343] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Pots UldamanPot01.mdx", + [2006344] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Pots UldamanPot02.mdx", + [2006345] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Pots UldamanPot03.mdx", + [2006346] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Pots UldamanPotBroken01.mdx", + [2006347] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Pots UldamanPotBroken02.mdx", + [2006348] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Pots UldamanPotBroken03.mdx", + [2006349] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Scrolls UldamanScroll01.mdx", + [2006350] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Scrolls UldamanScroll02.mdx", + [2006351] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Scrolls UldamanScroll03.mdx", + [2006352] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Scrolls UldamanScrollClasp.mdx", + [2006353] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Signs UldamanStreetSign.mdx", + [2006354] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Signs UldamanStreetSignBusted.mdx", + [2006355] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Statues UldamanDwarfStatue.mdx", + [2006356] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Statues UldamanMountainGiantStatue.mdx", + [2006357] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Statues UldamanSeaGiantStatue.mdx", + [2006358] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Statues UldamanStoneGiantStatue.mdx", + [2006359] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Statues UldamanTroglodyteStatue.mdx", + [2006360] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Statues UldamanTrollStatue.mdx", + [2006361] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS StoneKeeper StoneKeeperDead01.mdx", + [2006362] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Tables UldamanTable01.mdx", + [2006363] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Tables UldamanTableBroken01.mdx", + [2006364] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Tables UldamanTableNew.mdx", + [2006365] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Tables UldamanTableRuined.mdx", + [2006366] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Tapestries Tapestry01.mdx", + [2006367] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Tapestries Tapestry02.mdx", + [2006368] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Tapestries TapestryRuined01.mdx", + [2006369] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Tapestries TapestryRuined02.mdx", + [2006370] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS TitanStatues TitanEntranceStatue.mdx", + [2006371] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS TitanStatues TitanFemaleStatue.mdx", + [2006372] = "World KHAZMODAN WETLANDS PASSIVEDOODADS BLACKROCKBANNERS BlackRockClanBanner01.mdx", + [2006373] = "World KHAZMODAN WETLANDS PASSIVEDOODADS BUSHES WetlandGrass01.mdx", + [2006374] = "World KHAZMODAN WETLANDS PASSIVEDOODADS BUSHES WetlandGrass02.mdx", + [2006375] = "World KHAZMODAN WETLANDS PASSIVEDOODADS BUSHES WetlandGrass03.mdx", + [2006376] = "World KHAZMODAN WETLANDS PASSIVEDOODADS BUSHES WetlandGrass04.mdx", + [2006377] = "World KHAZMODAN WETLANDS PASSIVEDOODADS BUSHES WetlandGrass05.mdx", + [2006378] = "World KHAZMODAN WETLANDS PASSIVEDOODADS BUSHES WetlandShrub01.mdx", + [2006379] = "World KHAZMODAN WETLANDS PASSIVEDOODADS BUSHES WetlandShrub02.mdx", + [2006380] = "World KHAZMODAN WETLANDS PASSIVEDOODADS BUSHES WetlandShrub03.mdx", + [2006381] = "World KHAZMODAN WETLANDS PASSIVEDOODADS BUSHES WetlandShrub04.mdx", + [2006382] = "World KHAZMODAN WETLANDS PASSIVEDOODADS BUSHES WetlandShrub05.mdx", + [2006383] = "World KHAZMODAN WETLANDS PASSIVEDOODADS BUSHES WetlandShrub06.mdx", + [2006384] = "World KHAZMODAN WETLANDS PASSIVEDOODADS BUSHES WetlandShrub07.mdx", + [2006385] = "World KHAZMODAN WETLANDS PASSIVEDOODADS BUSHES WetlandShrub08.mdx", + [2006386] = "World KHAZMODAN WETLANDS PASSIVEDOODADS BUSHES WetlandShrub09.mdx", + [2006387] = "World KHAZMODAN WETLANDS PASSIVEDOODADS BUSHES WetlandsShrub04.mdx", + [2006388] = "World KHAZMODAN WETLANDS PASSIVEDOODADS BUSHES WetlandsShrub05.mdx", + [2006389] = "World KHAZMODAN WETLANDS PASSIVEDOODADS BUSHES WetlandsShrub06.mdx", + [2006390] = "World KHAZMODAN WETLANDS PASSIVEDOODADS BUSHES WetlandsShrub07.mdx", + [2006391] = "World KHAZMODAN WETLANDS PASSIVEDOODADS BUSHES WetlandsShurb08.mdx", + [2006392] = "World KHAZMODAN WETLANDS PASSIVEDOODADS BUSHES WetlandsShurb09.mdx", + [2006393] = "World KHAZMODAN WETLANDS PASSIVEDOODADS DragonBones DragonBonesBody.mdx", + [2006394] = "World KHAZMODAN WETLANDS PASSIVEDOODADS DragonBones DragonBonesBody_noCollision.mdx", + [2006395] = "World KHAZMODAN WETLANDS PASSIVEDOODADS DragonBones DragonBonesLeftWing.mdx", + [2006396] = "World KHAZMODAN WETLANDS PASSIVEDOODADS DragonBones DragonBonesLeftWing_noCollision.mdx", + [2006397] = "World KHAZMODAN WETLANDS PASSIVEDOODADS DragonBones DragonBonesRightWing.mdx", + [2006398] = "World KHAZMODAN WETLANDS PASSIVEDOODADS DragonBones DragonBonesRightWing_noCollision.mdx", + [2006399] = "World KHAZMODAN WETLANDS PASSIVEDOODADS DragonBones DragonBonesSkull.mdx", + [2006400] = "World KHAZMODAN WETLANDS PASSIVEDOODADS DragonBones DragonBonesSkull_noCollision.mdx", + [2006401] = "World KHAZMODAN WETLANDS PASSIVEDOODADS DragonEggs DragonEgg01.mdx", + [2006402] = "World KHAZMODAN WETLANDS PASSIVEDOODADS DragonEggs DragonEgg02.mdx", + [2006403] = "World KHAZMODAN WETLANDS PASSIVEDOODADS DragonMawGates DragonmawBanner.mdx", + [2006404] = "World KHAZMODAN WETLANDS PASSIVEDOODADS DragonMawGates DragonmawGate.mdx", + [2006405] = "World KHAZMODAN WETLANDS PASSIVEDOODADS DragonMawGates DragonmawWall.mdx", + [2006406] = "World KHAZMODAN WETLANDS PASSIVEDOODADS DwarfBones DwarveBone01.mdx", + [2006407] = "World KHAZMODAN WETLANDS PASSIVEDOODADS DwarfBones DwarveBone02.mdx", + [2006408] = "World KHAZMODAN WETLANDS PASSIVEDOODADS RaptorBones RaptorBone01.mdx", + [2006409] = "World KHAZMODAN WETLANDS PASSIVEDOODADS Totem DragonTotem01.mdx", + [2006410] = "World KHAZMODAN WETLANDS PASSIVEDOODADS Totem DragonTotem02.mdx", + [2006411] = "World KHAZMODAN WETLANDS PASSIVEDOODADS Trees WetlandTree01.mdx", + [2006412] = "World KHAZMODAN WETLANDS PASSIVEDOODADS Trees WetlandTree02.mdx", + [2006413] = "World KHAZMODAN WETLANDS PASSIVEDOODADS Trees WetlandTree03.mdx", + [2006414] = "World KHAZMODAN WETLANDS PASSIVEDOODADS Trees WetlandTree04.mdx", + [2006415] = "World KHAZMODAN WETLANDS PASSIVEDOODADS Trees WetlandTree05.mdx", + [2006416] = "World KHAZMODAN WETLANDS PASSIVEDOODADS Trees WetlandTree06.mdx", + [2006417] = "World KHAZMODAN WETLANDS PASSIVEDOODADS Trees WetlandsNest01.mdx", + [2006418] = "World KHAZMODAN WETLANDS PASSIVEDOODADS Trees WetlandsNest02.mdx", + [2006419] = "World KHAZMODAN WETLANDS PASSIVEDOODADS Trees WetlandsTree04.mdx", + [2006420] = "World KHAZMODAN WETLANDS PASSIVEDOODADS Trees WetlandsTreeStump01.mdx", + [2006421] = "World KHAZMODAN WETLANDS PASSIVEDOODADS Trees WetlandsTreeStump02.mdx", + [2006422] = "World KHAZMODAN WETLANDS PASSIVEDOODADS Trees WetlandsTreeStump03.mdx", + [2006423] = "World KHAZMODAN WETLANDS PASSIVEDOODADS WETLANDSWAGONS WetlandsWagon01.mdx", + [2006424] = "World KHAZMODAN WETLANDS PASSIVEDOODADS WETLANDSWAGONS WetlandsWagon02.mdx", + [2006425] = "World KHAZMODAN WETLANDS PASSIVEDOODADS WETLANDSWAGONS WetlandsWagon03.mdx", + [2006426] = "World KHAZMODAN WETLANDS PASSIVEDOODADS WETLANDSWAGONS WetlandsWagonNest.mdx", + [2006427] = "World LORDAERON ALTERACMOUNTAINS PASSIVEDOODADS Bushes AlteracShrub01.mdx", + [2006428] = "World LORDAERON ALTERACMOUNTAINS PASSIVEDOODADS Bushes AlteracShrub02.mdx", + [2006429] = "World LORDAERON ALTERACMOUNTAINS PASSIVEDOODADS Bushes AlteracShrub03.mdx", + [2006430] = "World LORDAERON ALTERACMOUNTAINS PASSIVEDOODADS DALARAN DalaranDome.mdx", + [2006431] = "World LORDAERON ALTERACMOUNTAINS PASSIVEDOODADS OpenGraves AlteracOpenGrave01.mdx", + [2006432] = "World LORDAERON ALTERACMOUNTAINS PASSIVEDOODADS Rocks AlteracBoulder01.mdx", + [2006433] = "World LORDAERON ALTERACMOUNTAINS PASSIVEDOODADS Rocks AlteracBoulder02.mdx", + [2006434] = "World LORDAERON ALTERACMOUNTAINS PASSIVEDOODADS Rocks AlteracBoulder03.mdx", + [2006435] = "World LORDAERON ALTERACMOUNTAINS PASSIVEDOODADS Rocks AlteracBoulder04.mdx", + [2006436] = "World LORDAERON ALTERACMOUNTAINS PASSIVEDOODADS Rocks AlteracBoulder05.mdx", + [2006437] = "World LORDAERON ALTERACMOUNTAINS PASSIVEDOODADS Trees AlteracTree01.mdx", + [2006438] = "World LORDAERON ALTERACMOUNTAINS PASSIVEDOODADS Trees AlteracTree02.mdx", + [2006439] = "World LORDAERON ALTERACMOUNTAINS PASSIVEDOODADS Trees AlteracTree03.mdx", + [2006440] = "World LORDAERON ALTERACMOUNTAINS PASSIVEDOODADS Trees AlteracTree04.mdx", + [2006441] = "World LORDAERON ALTERACMOUNTAINS PASSIVEDOODADS Trees AlteracTree08.mdx", + [2006442] = "World LORDAERON ALTERACMOUNTAINS PASSIVEDOODADS Trees AlteracTree09.mdx", + [2006443] = "World LORDAERON ALTERACMOUNTAINS PASSIVEDOODADS WaterTower AlteracWaterTower.mdx", + [2006444] = "World LORDAERON AeriePeaks PassiveDoodads Boulders AerieBoulder01.mdx", + [2006445] = "World LORDAERON AeriePeaks PassiveDoodads Boulders AerieBoulder02.mdx", + [2006446] = "World LORDAERON AeriePeaks PassiveDoodads Boulders AerieBoulder03.mdx", + [2006447] = "World LORDAERON AeriePeaks PassiveDoodads Boulders AerieBoulder04.mdx", + [2006448] = "World LORDAERON AeriePeaks PassiveDoodads Bushes AeriePeaksBush01.mdx", + [2006449] = "World LORDAERON AeriePeaks PassiveDoodads Bushes AeriePeaksBush02.mdx", + [2006450] = "World LORDAERON AeriePeaks PassiveDoodads Cliff AeriePeaksRockOutCrop01.mdx", + [2006451] = "World LORDAERON AeriePeaks PassiveDoodads GriffonDoodads GriffonMemorialFetish01.mdx", + [2006452] = "World LORDAERON AeriePeaks PassiveDoodads GriffonDoodads GriffonMemorialFetish02.mdx", + [2006453] = "World LORDAERON AeriePeaks PassiveDoodads GriffonDoodads GriffonMemorialFetish03.mdx", + [2006454] = "World LORDAERON AeriePeaks PassiveDoodads GriffonDoodads GriffonMemorialFetish04.mdx", + [2006455] = "World LORDAERON AeriePeaks PassiveDoodads GriffonDoodads GriffonMemorialTree01.mdx", + [2006456] = "World LORDAERON AeriePeaks PassiveDoodads GriffonDoodads GriffonMemorialTree02.mdx", + [2006457] = "World LORDAERON AeriePeaks PassiveDoodads GriffonDoodads GriffonMemorialTree03.mdx", + [2006458] = "World LORDAERON AeriePeaks PassiveDoodads Trees AeriePeaksFir01.mdx", + [2006459] = "World LORDAERON AeriePeaks PassiveDoodads Trees AeriePeaksFir02.mdx", + [2006460] = "World LORDAERON AeriePeaks PassiveDoodads Trees AeriePeaksStump01.mdx", + [2006461] = "World LORDAERON AeriePeaks PassiveDoodads Trees AerieTree01.mdx", + [2006462] = "World LORDAERON AeriePeaks PassiveDoodads Trees AerieTree02.mdx", + [2006463] = "World LORDAERON AeriePeaks PassiveDoodads Trees AerieTree03.mdx", + [2006464] = "World LORDAERON AeriePeaks PassiveDoodads Trees AerieTree04.mdx", + [2006465] = "World LORDAERON AeriePeaks PassiveDoodads Trees AerieTree05.mdx", + [2006466] = "World LORDAERON Arathi ActiveDoodads BrambleStaff BrambleStaff.mdx", + [2006467] = "World LORDAERON Arathi PassiveDoodads Boardwalk ArathiBoardwalk01.mdx", + [2006468] = "World LORDAERON Arathi PassiveDoodads Boardwalk ArathiBoardwalk02.mdx", + [2006469] = "World LORDAERON Arathi PassiveDoodads Boardwalk ArathiBoardwalk03.mdx", + [2006470] = "World LORDAERON Arathi PassiveDoodads Boardwalk ArathiBoardwalk04.mdx", + [2006471] = "World LORDAERON Arathi PassiveDoodads FarmHouses ArathiFarmHouse01.mdx", + [2006472] = "World LORDAERON Arathi PassiveDoodads FarmHouses ArathiFarmHouse02.mdx", + [2006473] = "World LORDAERON Arathi PassiveDoodads ImpalingStoneCorpses ImpalingStone_corpse_01.mdx", + [2006474] = "World LORDAERON Arathi PassiveDoodads ImpalingStoneCorpses impalingstone_corpse_02.mdx", + [2006475] = "World LORDAERON Arathi PassiveDoodads ImpalingStones impalingstone02.mdx", + [2006476] = "World LORDAERON Arathi PassiveDoodads Rocks ArathiFlatRock01.mdx", + [2006477] = "World LORDAERON Arathi PassiveDoodads Rocks ArathiRock01.mdx", + [2006478] = "World LORDAERON Arathi PassiveDoodads Rocks ArathiRock02.mdx", + [2006479] = "World LORDAERON Arathi PassiveDoodads Rocks ArathiRock03.mdx", + [2006480] = "World LORDAERON Arathi PassiveDoodads Rocks ArathiRock04.mdx", + [2006481] = "World LORDAERON Arathi PassiveDoodads Rocks ArathiRock05.mdx", + [2006482] = "World LORDAERON Arathi PassiveDoodads Rocks ArathiRock06.mdx", + [2006483] = "World LORDAERON Arathi PassiveDoodads Rocks ArathiRock07.mdx", + [2006484] = "World LORDAERON Arathi PassiveDoodads Rocks ArathiRock08.mdx", + [2006485] = "World LORDAERON Arathi PassiveDoodads Rocks ArathiRock09.mdx", + [2006486] = "World LORDAERON Arathi PassiveDoodads Rocks ArathiRock10.mdx", + [2006487] = "World LORDAERON Arathi PassiveDoodads Rocks ArathiRock11.mdx", + [2006488] = "World LORDAERON Arathi PassiveDoodads Rocks ArathiRock12.mdx", + [2006489] = "World LORDAERON Arathi PassiveDoodads Rocks ArathiRock13.mdx", + [2006490] = "World LORDAERON Arathi PassiveDoodads Rocks ArathiRock14.mdx", + [2006491] = "World LORDAERON Arathi PassiveDoodads Trees ArathiStump01.mdx", + [2006492] = "World LORDAERON Arathi PassiveDoodads Trees ArathiStump02.mdx", + [2006493] = "World LORDAERON Arathi PassiveDoodads Trees ArathiStump03.mdx", + [2006494] = "World LORDAERON Arathi PassiveDoodads Trees ArathiTree01.mdx", + [2006495] = "World LORDAERON Arathi PassiveDoodads Trees ArathiTree02.mdx", + [2006496] = "World LORDAERON Arathi PassiveDoodads Trees ArathiTree03.mdx", + [2006497] = "World LORDAERON Arathi PassiveDoodads Trees ArathiTree04.mdx", + [2006498] = "World LORDAERON Arathi PassiveDoodads Trees ArathiTree05.mdx", + [2006499] = "World LORDAERON Arathi PassiveDoodads Trees ArathiTree_dead_001.mdx", + [2006500] = "World LORDAERON Arathi PassiveDoodads Trees ArathiTree_dead_002.mdx", + [2006501] = "World LORDAERON Arathi PassiveDoodads Trees ArathiTree_dead_003.mdx", + [2006502] = "World LORDAERON Arathi PassiveDoodads Trees ArathiTree_dead_004.mdx", + [2006503] = "World LORDAERON Arathi PassiveDoodads bushes ArathiPlant01.mdx", + [2006504] = "World LORDAERON Arathi PassiveDoodads bushes ArathiPlant02.mdx", + [2006505] = "World LORDAERON Arathi PassiveDoodads bushes ArathiPlant03.mdx", + [2006506] = "World LORDAERON Arathi PassiveDoodads bushes ArathiPlant04.mdx", + [2006507] = "World LORDAERON Arathi PassiveDoodads bushes ArathiPlant05.mdx", + [2006508] = "World LORDAERON Arathi PassiveDoodads bushes ArathiPlant06.mdx", + [2006509] = "World LORDAERON PLAGUELAND ActiveDoodads Dolly InfestedDollyHead.mdx", + [2006510] = "World LORDAERON PLAGUELAND ActiveDoodads Dolly InfestedDollyLeftSide.mdx", + [2006511] = "World LORDAERON PLAGUELAND ActiveDoodads Dolly InfestedDollyRightSide.mdx", + [2006512] = "World LORDAERON PLAGUELAND ActiveDoodads Dolly InfestedDollyWhole.mdx", + [2006513] = "World LORDAERON PLAGUELAND ActiveDoodads Outhouse OuthouseTrapped.mdx", + [2006514] = "World LORDAERON PLAGUELAND ActiveDoodads PVPFlags EPL_PVPFlags_NorthFort.mdx", + [2006515] = "World LORDAERON PLAGUELAND PASSIVEDOODADS ArcOfTriumph ArcOfTriumphPlagued01.mdx", + [2006516] = "World LORDAERON PLAGUELAND PASSIVEDOODADS BloodOfHeroes BloodOfHeroes.mdx", + [2006517] = "World LORDAERON PLAGUELAND PASSIVEDOODADS BoneSpikes BoneSpike_01.mdx", + [2006518] = "World LORDAERON PLAGUELAND PASSIVEDOODADS BoneSpikes BoneSpike_02.mdx", + [2006519] = "World LORDAERON PLAGUELAND PASSIVEDOODADS BoneSpikes BoneSpike_03.mdx", + [2006520] = "World LORDAERON PLAGUELAND PASSIVEDOODADS BoneWalls BoneWall_01.mdx", + [2006521] = "World LORDAERON PLAGUELAND PASSIVEDOODADS Bushes PlaguelandwesternBush01.mdx", + [2006522] = "World LORDAERON PLAGUELAND PASSIVEDOODADS Bushes PlaguelandwesternBush02.mdx", + [2006523] = "World LORDAERON PLAGUELAND PASSIVEDOODADS Bushes PlaguelandwesternBush03.mdx", + [2006524] = "World LORDAERON PLAGUELAND PASSIVEDOODADS Bushes PlaguelandwesternBush04.mdx", + [2006525] = "World LORDAERON PLAGUELAND PASSIVEDOODADS ForsakenBanner ForsakenBanner01.mdx", + [2006526] = "World LORDAERON PLAGUELAND PASSIVEDOODADS HAYSTACKS PlaguelandHayStack.mdx", + [2006527] = "World LORDAERON PLAGUELAND PASSIVEDOODADS HangingScourge ScourgeBodyHangingFemale01.mdx", + [2006528] = "World LORDAERON PLAGUELAND PASSIVEDOODADS HangingScourge ScourgeBodyHangingFemale02.mdx", + [2006529] = "World LORDAERON PLAGUELAND PASSIVEDOODADS PLAGUECAULDRON PlagueCauldron.mdx", + [2006530] = "World LORDAERON PLAGUELAND PASSIVEDOODADS PlaguedChariot PlagueChariot.mdx", + [2006531] = "World LORDAERON PLAGUELAND PASSIVEDOODADS PlaguedWagons PlagueWagon.mdx", + [2006532] = "World LORDAERON PLAGUELAND PASSIVEDOODADS TREES PlaguedFallenTree01.mdx", + [2006533] = "World LORDAERON PLAGUELAND PASSIVEDOODADS TREES PlaguelandMushroom01.mdx", + [2006534] = "World LORDAERON PLAGUELAND PASSIVEDOODADS TREES PlaguelandMushroom02.mdx", + [2006535] = "World LORDAERON PLAGUELAND PASSIVEDOODADS TREES PlaguelandMushroom03.mdx", + [2006536] = "World LORDAERON PLAGUELAND PASSIVEDOODADS TREES PlaguelandMushroom04.mdx", + [2006537] = "World LORDAERON PLAGUELAND PASSIVEDOODADS TREES PlaguelandStump01.mdx", + [2006538] = "World LORDAERON PLAGUELAND PASSIVEDOODADS TREES PlaguelandStump02.mdx", + [2006539] = "World LORDAERON PLAGUELAND PASSIVEDOODADS TREES PlaguelandStump03.mdx", + [2006540] = "World LORDAERON PLAGUELAND PASSIVEDOODADS TREES PlaguelandStump04.mdx", + [2006541] = "World LORDAERON PLAGUELAND PASSIVEDOODADS TREES PlaguelandTree01.mdx", + [2006542] = "World LORDAERON PLAGUELAND PASSIVEDOODADS TREES PlaguelandTree02.mdx", + [2006543] = "World LORDAERON PLAGUELAND PASSIVEDOODADS TREES PlaguelandTree03.mdx", + [2006544] = "World LORDAERON PLAGUELAND PASSIVEDOODADS TREES PlaguelandTree04.mdx", + [2006545] = "World LORDAERON PLAGUELAND PASSIVEDOODADS TREES PlaguelandTree05.mdx", + [2006546] = "World LORDAERON PLAGUELAND PASSIVEDOODADS TREES PlaguelandTree06.mdx", + [2006547] = "World LORDAERON PLAGUELAND PASSIVEDOODADS TREES PlaguelandTree07.mdx", + [2006548] = "World LORDAERON PLAGUELAND PASSIVEDOODADS TREES PlaguelandTree08.mdx", + [2006549] = "World LORDAERON PLAGUELAND PASSIVEDOODADS TREES PlaguelandTree09.mdx", + [2006550] = "World LORDAERON PLAGUELAND PASSIVEDOODADS TREES PlaguelandTree10.mdx", + [2006551] = "World LORDAERON PLAGUELAND PASSIVEDOODADS TREES PlaguelandTree11.mdx", + [2006552] = "World LORDAERON PLAGUELAND PASSIVEDOODADS TREES PlaguelandTree12.mdx", + [2006553] = "World LORDAERON PLAGUELAND PASSIVEDOODADS TREES PlaguelandTree13.mdx", + [2006554] = "World LORDAERON PLAGUELAND PASSIVEDOODADS TreeBarrier TreeBarrier01.mdx", + [2006555] = "World LORDAERON PLAGUELAND PASSIVEDOODADS Walls UndeadWall_01.mdx", + [2006556] = "World LORDAERON PLAGUELAND PASSIVEDOODADS plants PlaguelandFern01.mdx", + [2006557] = "World LORDAERON PLAGUELAND PASSIVEDOODADS plants PlaguelandFern02.mdx", + [2006558] = "World LORDAERON PLAGUELAND PASSIVEDOODADS plants PlaguelandFern03.mdx", + [2006559] = "World LORDAERON PLAGUELAND PASSIVEDOODADS plants PlaguelandFern04.mdx", + [2006560] = "World LORDAERON PLAGUELAND PASSIVEDOODADS plants PlaguelandPuffs01.mdx", + [2006561] = "World LORDAERON PLAGUELAND PASSIVEDOODADS plants PlaguelandPuffs02.mdx", + [2006562] = "World LORDAERON PLAGUELAND PASSIVEDOODADS plants PlaguelandPuffs03.mdx", + [2006563] = "World LORDAERON PLAGUELAND PASSIVEDOODADS plants PlaguelandPuffs04.mdx", + [2006564] = "World LORDAERON PLAGUELAND PASSIVEDOODADS rocks PlaguelandRock01.mdx", + [2006565] = "World LORDAERON PLAGUELAND PASSIVEDOODADS rocks PlaguelandRock02.mdx", + [2006566] = "World LORDAERON PLAGUELAND PASSIVEDOODADS rocks PlaguelandRock03.mdx", + [2006567] = "World LORDAERON PLAGUELAND PASSIVEDOODADS rocks PlaguelandRock04.mdx", + [2006568] = "World LORDAERON PLAGUELAND PASSIVEDOODADS rocks PlaguelandRock05.mdx", + [2006569] = "World LORDAERON PLAGUELAND PASSIVEDOODADS rocks PlaguelandRock06.mdx", + [2006570] = "World LORDAERON PLAGUELAND PASSIVEDOODADS rocks PlaguelandRock07.mdx", + [2006571] = "World LORDAERON PLAGUELAND PASSIVEDOODADS rocks PlaguelandRock08.mdx", + [2006572] = "World LORDAERON SCHOLOMANCE PASSIVEDOODADS BOOKSHELVES Scholme_Bookshelf.mdx", + [2006573] = "World LORDAERON SCHOLOMANCE PASSIVEDOODADS BOOKSHELVES Scholme_BookshelfLarge.mdx", + [2006574] = "World LORDAERON SCHOLOMANCE PASSIVEDOODADS BOOKSHELVES Scholme_BookshelfSmall.mdx", + [2006575] = "World LORDAERON SCHOLOMANCE PASSIVEDOODADS BRAZIER ScholomanceBrazier01Green.mdx", + [2006576] = "World LORDAERON SCHOLOMANCE PASSIVEDOODADS BRAZIER ScholomanceBrazier01Orange.mdx", + [2006577] = "World LORDAERON SCHOLOMANCE PASSIVEDOODADS BRAZIER ScholomanceBrazier01Purple.mdx", + [2006578] = "World LORDAERON SCHOLOMANCE PASSIVEDOODADS CANDLES FloorCandlesCorner01.mdx", + [2006579] = "World LORDAERON SCHOLOMANCE PASSIVEDOODADS CANDLES FloorCandlesCorner01Green.mdx", + [2006580] = "World LORDAERON SCHOLOMANCE PASSIVEDOODADS CANDLES FloorCandlesCorner01Red.mdx", + [2006581] = "World LORDAERON SCHOLOMANCE PASSIVEDOODADS CANDLES FloorCandlesStraight02.mdx", + [2006582] = "World LORDAERON SCHOLOMANCE PASSIVEDOODADS CANDLES FloorCandlesStraight02Green.mdx", + [2006583] = "World LORDAERON SCHOLOMANCE PASSIVEDOODADS CANDLES FloorCandlesStraight02Red.mdx", + [2006584] = "World LORDAERON SCHOLOMANCE PASSIVEDOODADS CANDLES FloorCandlesStraight04.mdx", + [2006585] = "World LORDAERON SCHOLOMANCE PASSIVEDOODADS CANDLES FloorCandlesStraight04Green.mdx", + [2006586] = "World LORDAERON SCHOLOMANCE PASSIVEDOODADS CANDLES FloorCandlesStraight04Red.mdx", + [2006587] = "World LORDAERON SCHOLOMANCE PASSIVEDOODADS CANDLES Scholme_Candelabra.mdx", + [2006588] = "World LORDAERON SCHOLOMANCE PASSIVEDOODADS CANDLES Scholme_Candelabra02.mdx", + [2006589] = "World LORDAERON SCHOLOMANCE PASSIVEDOODADS CANDLES Scholme_Candelabra03.mdx", + [2006590] = "World LORDAERON SCHOLOMANCE PASSIVEDOODADS CANDLES Scholme_GreenCandelabra.mdx", + [2006591] = "World LORDAERON SCHOLOMANCE PASSIVEDOODADS CANDLES Scholme_GreenCandelabra02.mdx", + [2006592] = "World LORDAERON SCHOLOMANCE PASSIVEDOODADS CANDLES Scholme_GreenCandelabra03.mdx", + [2006593] = "World LORDAERON SCHOLOMANCE PASSIVEDOODADS CANDLES Scholme_GreenRug.mdx", + [2006594] = "World LORDAERON SCHOLOMANCE PASSIVEDOODADS CANDLES Scholme_PurpleRug.mdx", + [2006595] = "World LORDAERON SCHOLOMANCE PASSIVEDOODADS CANDLES Scholme_RedCandelabra.mdx", + [2006596] = "World LORDAERON SCHOLOMANCE PASSIVEDOODADS CANDLES Scholme_RedCandelabra02.mdx", + [2006597] = "World LORDAERON SCHOLOMANCE PASSIVEDOODADS CANDLES Scholme_RedCandelabra03.mdx", + [2006598] = "World LORDAERON SCHOLOMANCE PASSIVEDOODADS CAULDRONS GreenBubblingcauldron.mdx", + [2006599] = "World LORDAERON SCHOLOMANCE PASSIVEDOODADS CAULDRONS RedBubblingcauldron.mdx", + [2006600] = "World LORDAERON SCHOLOMANCE PASSIVEDOODADS CAULDRONS YellowBubblingcauldron.mdx", + [2006601] = "World LORDAERON SCHOLOMANCE PASSIVEDOODADS CRYSTALBALL ScholomanceCrystalBall01.mdx", + [2006602] = "World LORDAERON SCHOLOMANCE PASSIVEDOODADS Chandelier Scholme_Chandelier.mdx", + [2006603] = "World LORDAERON SCHOLOMANCE PASSIVEDOODADS OperationTables CreepyOperationTable01.mdx", + [2006604] = "World LORDAERON SCHOLOMANCE PASSIVEDOODADS Rugs Scholme_LogoRug.mdx", + [2006605] = "World LORDAERON SCHOLOMANCE PASSIVEDOODADS Smoke ScholomanceSmoke01.mdx", + [2006606] = "World LORDAERON SCHOLOMANCE PASSIVEDOODADS StoneLogo Scholme_StoneLogo.mdx", + [2006607] = "World LORDAERON SCHOLOMANCE PASSIVEDOODADS Tapestries Scholme_Logo.mdx", + [2006608] = "World LORDAERON SCHOLOMANCE PASSIVEDOODADS Tapestries Scholme_tapestryAnim.mdx", + [2006609] = "World LORDAERON SCHOLOMANCE PASSIVEDOODADS Tapestries Scholme_tapestryRune.mdx", + [2006610] = "World LORDAERON SCHOLOMANCE PASSIVEDOODADS Tapestries Scholme_tapestrySkull.mdx", + [2006611] = "World LORDAERON SCHOLOMANCE PASSIVEDOODADS Tapestries Scholme_tapestryWeb.mdx", + [2006612] = "World LORDAERON SCHOLOMANCE PASSIVEDOODADS TestingTubes Empty_testing_jar.mdx", + [2006613] = "World LORDAERON SCHOLOMANCE PASSIVEDOODADS TestingTubes Ghoul_in_a_jar.mdx", + [2006614] = "World LORDAERON SCHOLOMANCE PASSIVEDOODADS TestingTubes Skeleton_in_a_jar.mdx", + [2006615] = "World LORDAERON SCHOLOMANCE PASSIVEDOODADS diseasedpumpkin DiseasedPumpkin.mdx", + [2006616] = "World LORDAERON SILVERMOON PASSIVEDOODADS TREES SilvermoonDeadTree04.mdx", + [2006617] = "World LORDAERON SILVERMOON PASSIVEDOODADS TREES SilvermoonPine03.mdx", + [2006618] = "World LORDAERON SILVERMOON PASSIVEDOODADS TREES SilvermoonTree04.mdx", + [2006619] = "World LORDAERON SILVERMOON PASSIVEDOODADS TREES SilvermoonTree07.mdx", + [2006620] = "World LORDAERON STRATHOLME ACTIVEDOODADS DOORS LargePortcullis.mdx", + [2006621] = "World LORDAERON STRATHOLME ACTIVEDOODADS DOORS Nox_door_abom.mdx", + [2006622] = "World LORDAERON STRATHOLME ACTIVEDOODADS DOORS Nox_door_abom_mini.mdx", + [2006623] = "World LORDAERON STRATHOLME ACTIVEDOODADS DOORS Nox_door_deathknight.mdx", + [2006624] = "World LORDAERON STRATHOLME ACTIVEDOODADS DOORS Nox_door_plague.mdx", + [2006625] = "World LORDAERON STRATHOLME ACTIVEDOODADS DOORS Nox_door_slime.mdx", + [2006626] = "World LORDAERON STRATHOLME ACTIVEDOODADS DOORS Nox_door_spider.mdx", + [2006627] = "World LORDAERON STRATHOLME ACTIVEDOODADS DOORS SmallPortcullis.mdx", + [2006628] = "World LORDAERON STRATHOLME ACTIVEDOODADS DOORS ZigguratDoor.mdx", + [2006629] = "World LORDAERON STRATHOLME ACTIVEDOODADS DOORS frostwyrm_waterfall.mdx", + [2006630] = "World LORDAERON STRATHOLME ACTIVEDOODADS DOORS nox_door_portcullis.mdx", + [2006631] = "World LORDAERON STRATHOLME ACTIVEDOODADS DOORS nox_door_web_boss.mdx", + [2006632] = "World LORDAERON STRATHOLME ACTIVEDOODADS DOORS nox_door_web_large.mdx", + [2006633] = "World LORDAERON STRATHOLME ACTIVEDOODADS Furnace Furnace_Skull01.mdx", + [2006634] = "Pauper\'s Walk", + [2006635] = "World LORDAERON STRATHOLME ACTIVEDOODADS PostboxDestroyed StratholmePostBoxRuined.mdx", + [2006636] = "World LORDAERON STRATHOLME ACTIVEDOODADS SporeTrap PlagueWingSporeTrap.mdx", + [2006637] = "World LORDAERON STRATHOLME ACTIVEDOODADS tesla nox_tesla.mdx", + [2006638] = "World LORDAERON STRATHOLME PASSIVEDOODADS Anvil nox_anvil.mdx", + [2006639] = "World LORDAERON STRATHOLME PASSIVEDOODADS FX BlackCitadel_ExteriorSlimeFalls.mdx", + [2006640] = "World LORDAERON STRATHOLME PASSIVEDOODADS FX Naxxramas_Frostwyrm_Birth.mdx", + [2006641] = "World LORDAERON STRATHOLME PASSIVEDOODADS FX Nox_portal_bottom.mdx", + [2006642] = "World LORDAERON STRATHOLME PASSIVEDOODADS FX Nox_portal_orange.mdx", + [2006643] = "World LORDAERON STRATHOLME PASSIVEDOODADS FX Nox_portal_orange_bossroom.mdx", + [2006644] = "World LORDAERON STRATHOLME PASSIVEDOODADS FX Nox_portal_orange_bossroom_eye.mdx", + [2006645] = "World LORDAERON STRATHOLME PASSIVEDOODADS FX Nox_portal_purple.mdx", + [2006646] = "World LORDAERON STRATHOLME PASSIVEDOODADS FX Nox_portal_purple_bossroom.mdx", + [2006647] = "World LORDAERON STRATHOLME PASSIVEDOODADS FX Nox_portal_purple_bossroom_eye.mdx", + [2006648] = "World LORDAERON STRATHOLME PASSIVEDOODADS FX Nox_portal_red.mdx", + [2006649] = "World LORDAERON STRATHOLME PASSIVEDOODADS FX Nox_portal_red_bossroom.mdx", + [2006650] = "World LORDAERON STRATHOLME PASSIVEDOODADS FX Nox_portal_red_bossroom_eye.mdx", + [2006651] = "World LORDAERON STRATHOLME PASSIVEDOODADS FX Nox_portal_top.mdx", + [2006652] = "World LORDAERON STRATHOLME PASSIVEDOODADS FX Nox_portal_yellow.mdx", + [2006653] = "World LORDAERON STRATHOLME PASSIVEDOODADS FX Nox_portal_yellow_bossroom.mdx", + [2006654] = "World LORDAERON STRATHOLME PASSIVEDOODADS FX Nox_portal_yellow_bossroom_eye.mdx", + [2006655] = "World LORDAERON STRATHOLME PASSIVEDOODADS FX StratholmeFloatingEmbers.mdx", + [2006656] = "World LORDAERON STRATHOLME PASSIVEDOODADS FX kelthuzad_window_portal.mdx", + [2006657] = "World LORDAERON STRATHOLME PASSIVEDOODADS NaxxramasSlimeFalls Naxxramas_Frostwyrm_Slimefall.mdx", + [2006658] = "World LORDAERON STRATHOLME PASSIVEDOODADS WEBS BossWeb_Doodad01.mdx", + [2006659] = "World LORDAERON STRATHOLME PASSIVEDOODADS WEBS BossWeb_Doodad02.mdx", + [2006660] = "World LORDAERON STRATHOLME PASSIVEDOODADS WEBS HallwayWeb_Doodad01.mdx", + [2006661] = "World LORDAERON STRATHOLME PASSIVEDOODADS WEBS HallwayWeb_Doodad02.mdx", + [2006662] = "World LORDAERON STRATHOLME PASSIVEDOODADS WEBS HallwayWeb_Doodad03.mdx", + [2006663] = "World LORDAERON STRATHOLME PASSIVEDOODADS WEBS RampWeb_Doodad01.mdx", + [2006664] = "World LORDAERON STRATHOLME PASSIVEDOODADS Window Nox_Window01.mdx", + [2006665] = "World LORDAERON STRATHOLME PASSIVEDOODADS signs RuinedSign01.mdx", + [2006666] = "World LORDAERON STRATHOLME PASSIVEDOODADS signs RuinedSign02.mdx", + [2006667] = "World LORDAERON STRATHOLME PASSIVEDOODADS signs RuinedSign03.mdx", + [2006668] = "World LORDAERON STRATHOLME PASSIVEDOODADS throne kelthuzad_throne.mdx", + [2006669] = "World LORDAERON SilverPine PassiveDoodads Boardwalks SilverPineBoardwalk01.mdx", + [2006670] = "World LORDAERON SilverPine PassiveDoodads Docks SilverPineDocks01.mdx", + [2006671] = "World LORDAERON SilverPine PassiveDoodads TreeStumps SilverPineTreeStump01.mdx", + [2006672] = "World LORDAERON SilverPine PassiveDoodads TreeStumps SilverPineTreeStump02.mdx", + [2006673] = "World LORDAERON SilverPine PassiveDoodads Trees SilverPineTree01.mdx", + [2006674] = "World LORDAERON SilverPine PassiveDoodads Trees SilverPineTree01Fallen.mdx", + [2006675] = "World LORDAERON SilverPine PassiveDoodads Trees SilverPineTree02.mdx", + [2006676] = "World LORDAERON SilverPine PassiveDoodads Trees SilverPineTree03.mdx", + [2006677] = "World LORDAERON SilverPine PassiveDoodads Trees SilverPineTree04.mdx", + [2006678] = "World LORDAERON SilverPine PassiveDoodads bushes SilverPineBush01.mdx", + [2006679] = "World LORDAERON SilverPine PassiveDoodads bushes SilverPineBush02.mdx", + [2006680] = "World LORDAERON SilverPine PassiveDoodads bushes SilverPineBush03.mdx", + [2006681] = "World LORDAERON TIRISFALGLADE PASSIVEDOODADS ArcOfTriumph ArcOfTriumph01.mdx", + [2006682] = "World LORDAERON TIRISFALGLADE PASSIVEDOODADS BARRICADE TirisfallBarricade.mdx", + [2006683] = "World LORDAERON TIRISFALGLADE PASSIVEDOODADS Boardwalk TirisfallBoardwalk01.mdx", + [2006684] = "World LORDAERON TIRISFALGLADE PASSIVEDOODADS Boardwalk TirisfallBoardwalk02.mdx", + [2006685] = "World LORDAERON TIRISFALGLADE PASSIVEDOODADS Bodies BodyShrouded.mdx", + [2006686] = "World LORDAERON TIRISFALGLADE PASSIVEDOODADS Bodies MassGrave.mdx", + [2006687] = "World LORDAERON TIRISFALGLADE PASSIVEDOODADS Bodies ScourgeBodyHanging01.mdx", + [2006688] = "World LORDAERON TIRISFALGLADE PASSIVEDOODADS Bodies ScourgeBodyHanging02.mdx", + [2006689] = "World LORDAERON TIRISFALGLADE PASSIVEDOODADS Bodies ScourgeBodyHanging03.mdx", + [2006690] = "World LORDAERON TIRISFALGLADE PASSIVEDOODADS Bushes TirisfallBush01.mdx", + [2006691] = "World LORDAERON TIRISFALGLADE PASSIVEDOODADS Bushes TirisfallGladeBush03.mdx", + [2006692] = "World LORDAERON TIRISFALGLADE PASSIVEDOODADS Bushes TirisfallGladeBush04.mdx", + [2006693] = "World LORDAERON TIRISFALGLADE PASSIVEDOODADS Doomweed Doomweed01.mdx", + [2006694] = "World LORDAERON TIRISFALGLADE PASSIVEDOODADS GRAVES BrillCoffins.mdx", + [2006695] = "World LORDAERON TIRISFALGLADE PASSIVEDOODADS GRAVES BrillGraves01.mdx", + [2006696] = "World LORDAERON TIRISFALGLADE PASSIVEDOODADS GRAVES BrillGraves02.mdx", + [2006697] = "World LORDAERON TIRISFALGLADE PASSIVEDOODADS GRAVES BrillGraves03.mdx", + [2006698] = "World LORDAERON TIRISFALGLADE PASSIVEDOODADS GRAVES BrillGraves04.mdx", + [2006699] = "World LORDAERON TIRISFALGLADE PASSIVEDOODADS GRAVES TirisfallGraveDirtMound01.mdx", + [2006700] = "World LORDAERON TIRISFALGLADE PASSIVEDOODADS GRAVES TirisfallGraveDirtMound02.mdx", + [2006701] = "World LORDAERON TIRISFALGLADE PASSIVEDOODADS GRAVES TirisfallOpenGrave01.mdx", + [2006702] = "World LORDAERON TIRISFALGLADE PASSIVEDOODADS Gloomweed Gloomweed01.mdx", + [2006703] = "World LORDAERON TIRISFALGLADE PASSIVEDOODADS Outposts TirisfallOutpost01.mdx", + [2006704] = "World LORDAERON TIRISFALGLADE PASSIVEDOODADS Outposts TirisfallOutpost02.mdx", + [2006705] = "World LORDAERON TIRISFALGLADE PASSIVEDOODADS Outposts TirisfallOutpost03.mdx", + [2006706] = "World LORDAERON TIRISFALGLADE PASSIVEDOODADS Outposts TirisfallOutpost04.mdx", + [2006707] = "World LORDAERON TIRISFALGLADE PASSIVEDOODADS Outposts TirisfallOutpost05.mdx", + [2006708] = "World LORDAERON TIRISFALGLADE PASSIVEDOODADS Outposts TirisfallOutpost06.mdx", + [2006709] = "World LORDAERON TIRISFALGLADE PASSIVEDOODADS Outposts TirisfallOutpost07.mdx", + [2006710] = "World LORDAERON TIRISFALGLADE PASSIVEDOODADS Trees TirisfalGladeTree01.mdx", + [2006711] = "World LORDAERON TIRISFALGLADE PASSIVEDOODADS Trees TirisfallFallenTree01.mdx", + [2006712] = "World LORDAERON TIRISFALGLADE PASSIVEDOODADS Trees TirisfallFallenTree02.mdx", + [2006713] = "World LORDAERON TIRISFALGLADE PASSIVEDOODADS Trees TirisfallFallenTree03.mdx", + [2006714] = "World LORDAERON TIRISFALGLADE PASSIVEDOODADS Trees TirisfallFallenTree04.mdx", + [2006715] = "World LORDAERON TIRISFALGLADE PASSIVEDOODADS Trees TirisfallGladeCanopyTree02.mdx", + [2006716] = "World LORDAERON TIRISFALGLADE PASSIVEDOODADS Trees TirisfallGladeCanopyTree03.mdx", + [2006717] = "World LORDAERON TIRISFALGLADE PASSIVEDOODADS Trees TirisfallGladeCanopyTree04.mdx", + [2006718] = "World LORDAERON TIRISFALGLADE PASSIVEDOODADS Trees TirisfallGladeCanopyTree05.mdx", + [2006719] = "World LORDAERON TIRISFALGLADE PASSIVEDOODADS Trees TirisfallGladeCanopyTree06.mdx", + [2006720] = "World LORDAERON TIRISFALGLADE PASSIVEDOODADS Trees TirisfallGladeCanopyTree07.mdx", + [2006721] = "World LORDAERON TIRISFALGLADE PASSIVEDOODADS Trees TirisfallTreeStump01.mdx", + [2006722] = "World LORDAERON TIRISFALGLADE PASSIVEDOODADS Trees TirisfallTreeStump02.mdx", + [2006723] = "World LORDAERON TIRISFALGLADE PASSIVEDOODADS UTHERSHRINE UtherShrinePedestal.mdx", + [2006724] = "World NoDXT Detail ApkBus01.mdx", + [2006725] = "World NoDXT Detail ApkBus02.mdx", + [2006726] = "World NoDXT Detail ApkBus03.mdx", + [2006727] = "World NoDXT Detail ApkBus04.mdx", + [2006728] = "World NoDXT Detail ApkBus05.mdx", + [2006729] = "World NoDXT Detail ApkFlo01.mdx", + [2006730] = "World NoDXT Detail ApkFlo02.mdx", + [2006731] = "World NoDXT Detail ApkFlo03.mdx", + [2006732] = "World NoDXT Detail ApkGra01.mdx", + [2006733] = "World NoDXT Detail ApkGra02.mdx", + [2006734] = "World NoDXT Detail ApkGra03.mdx", + [2006735] = "World NoDXT Detail ApkGra04.mdx", + [2006736] = "World NoDXT Detail ArhBus01.mdx", + [2006737] = "World NoDXT Detail ArhBus02.mdx", + [2006738] = "World NoDXT Detail ArhFlo01.mdx", + [2006739] = "World NoDXT Detail ArhFlo02.mdx", + [2006740] = "World NoDXT Detail ArhFlo03.mdx", + [2006741] = "World NoDXT Detail ArhFlo04.mdx", + [2006742] = "World NoDXT Detail ArhFlo05.mdx", + [2006743] = "World NoDXT Detail ArhGra01.mdx", + [2006744] = "World NoDXT Detail ArhGra02.mdx", + [2006745] = "World NoDXT Detail ArhGra03.mdx", + [2006746] = "World NoDXT Detail ArhRoc01.mdx", + [2006747] = "World NoDXT Detail ArhRoc02.mdx", + [2006748] = "World NoDXT Detail ArhWet01.mdx", + [2006749] = "World NoDXT Detail ArhWet02.mdx", + [2006750] = "World NoDXT Detail AtcBus01.mdx", + [2006751] = "World NoDXT Detail AtcBus02.mdx", + [2006752] = "World NoDXT Detail AtcBus03.mdx", + [2006753] = "World NoDXT Detail AtcBus04.mdx", + [2006754] = "World NoDXT Detail AtcBus05.mdx", + [2006755] = "World NoDXT Detail AtcFlo01.mdx", + [2006756] = "World NoDXT Detail AtcFlo02.mdx", + [2006757] = "World NoDXT Detail AtcFlo03.mdx", + [2006758] = "World NoDXT Detail AtcGra01.mdx", + [2006759] = "World NoDXT Detail AtcGra02.mdx", + [2006760] = "World NoDXT Detail AtcGra03.mdx", + [2006761] = "World NoDXT Detail AtcGra04.mdx", + [2006762] = "World NoDXT Detail AzhBus01.mdx", + [2006763] = "World NoDXT Detail AzhBus02.mdx", + [2006764] = "World NoDXT Detail AzhBus03.mdx", + [2006765] = "World NoDXT Detail AzhBus04.mdx", + [2006766] = "World NoDXT Detail AzhBus05.mdx", + [2006767] = "World NoDXT Detail AzhBus06.mdx", + [2006768] = "World NoDXT Detail AzhBus07.mdx", + [2006769] = "World NoDXT Detail AzhBus08.mdx", + [2006770] = "World NoDXT Detail AzhGra01.mdx", + [2006771] = "World NoDXT Detail AzhGra02.mdx", + [2006772] = "World NoDXT Detail Azhshel01.mdx", + [2006773] = "World NoDXT Detail Azhshel02.mdx", + [2006774] = "World NoDXT Detail Azhshel03.mdx", + [2006775] = "World NoDXT Detail BadBus01.mdx", + [2006776] = "World NoDXT Detail BadBus02.mdx", + [2006777] = "World NoDXT Detail BadBus03.mdx", + [2006778] = "World NoDXT Detail BadBus04.mdx", + [2006779] = "World NoDXT Detail BadBus05.mdx", + [2006780] = "World NoDXT Detail BadBus06.mdx", + [2006781] = "World NoDXT Detail BadBus07.mdx", + [2006782] = "World NoDXT Detail BadBus08.mdx", + [2006783] = "World NoDXT Detail BadGra01.mdx", + [2006784] = "World NoDXT Detail BadGra02.mdx", + [2006785] = "World NoDXT Detail BadRoc01.mdx", + [2006786] = "World NoDXT Detail BadRoc02.mdx", + [2006787] = "World NoDXT Detail BadRoc03.mdx", + [2006788] = "World NoDXT Detail BarBus01.mdx", + [2006789] = "World NoDXT Detail BarBus02.mdx", + [2006790] = "World NoDXT Detail BarBus03.mdx", + [2006791] = "World NoDXT Detail BarBus04.mdx", + [2006792] = "World NoDXT Detail BarGra01.mdx", + [2006793] = "World NoDXT Detail BarGra02.mdx", + [2006794] = "World NoDXT Detail BarGra03.mdx", + [2006795] = "World NoDXT Detail BarGra04.mdx", + [2006796] = "World NoDXT Detail BarGra05.mdx", + [2006797] = "World NoDXT Detail BarGra06.mdx", + [2006798] = "World NoDXT Detail BarGra07.mdx", + [2006799] = "World NoDXT Detail BarGra08.mdx", + [2006800] = "World NoDXT Detail BarRoc01.mdx", + [2006801] = "World NoDXT Detail BarRoc02.mdx", + [2006802] = "World NoDXT Detail BarRoc03.mdx", + [2006803] = "World NoDXT Detail BarRoc04.mdx", + [2006804] = "World NoDXT Detail BarRoc05.mdx", + [2006805] = "World NoDXT Detail BarRoc06.mdx", + [2006806] = "World NoDXT Detail BlaRoc01.mdx", + [2006807] = "World NoDXT Detail BlaRoc02.mdx", + [2006808] = "World NoDXT Detail BlaRoc03.mdx", + [2006809] = "World NoDXT Detail BlaRoc04.mdx", + [2006810] = "World NoDXT Detail BlaRoc05.mdx", + [2006811] = "World NoDXT Detail BlaRoc06.mdx", + [2006812] = "World NoDXT Detail BlaRoc07.mdx", + [2006813] = "World NoDXT Detail BlaRoc08.mdx", + [2006814] = "World NoDXT Detail BlaRoc09.mdx", + [2006815] = "World NoDXT Detail BlaRoc10.mdx", + [2006816] = "World NoDXT Detail BlaRoc11.mdx", + [2006817] = "World NoDXT Detail BlaRoc12.mdx", + [2006818] = "World NoDXT Detail BlaRoc13.mdx", + [2006819] = "World NoDXT Detail BstBra01.mdx", + [2006820] = "World NoDXT Detail BstBra02.mdx", + [2006821] = "World NoDXT Detail BstBra03.mdx", + [2006822] = "World NoDXT Detail BstBra04.mdx", + [2006823] = "World NoDXT Detail BstBra05.mdx", + [2006824] = "World NoDXT Detail BstBra06.mdx", + [2006825] = "World NoDXT Detail BstBra07.mdx", + [2006826] = "World NoDXT Detail BstBra08.mdx", + [2006827] = "World NoDXT Detail BstRoc01.mdx", + [2006828] = "World NoDXT Detail BstRoc02.mdx", + [2006829] = "World NoDXT Detail BstRoc03.mdx", + [2006830] = "World NoDXT Detail BstRoc04.mdx", + [2006831] = "World NoDXT Detail BstRoc05.mdx", + [2006832] = "World NoDXT Detail DrkBus01.mdx", + [2006833] = "World NoDXT Detail DrkBus02.mdx", + [2006834] = "World NoDXT Detail DrkBus03.mdx", + [2006835] = "World NoDXT Detail DrkBus04.mdx", + [2006836] = "World NoDXT Detail DrkBus05.mdx", + [2006837] = "World NoDXT Detail DrkBus06.mdx", + [2006838] = "World NoDXT Detail DrkBus07.mdx", + [2006839] = "World NoDXT Detail DrkGra01.mdx", + [2006840] = "World NoDXT Detail DrkGra02.mdx", + [2006841] = "World NoDXT Detail DrkGra03.mdx", + [2006842] = "World NoDXT Detail DrkGra04.mdx", + [2006843] = "World NoDXT Detail DrkGra05.mdx", + [2006844] = "World NoDXT Detail DrkGra06.mdx", + [2006845] = "World NoDXT Detail DskFlo01.mdx", + [2006846] = "World NoDXT Detail DskFlo02.mdx", + [2006847] = "World NoDXT Detail DskGra01.mdx", + [2006848] = "World NoDXT Detail DskGra02.mdx", + [2006849] = "World NoDXT Detail DskGra03.mdx", + [2006850] = "World NoDXT Detail DskGra04.mdx", + [2006851] = "World NoDXT Detail DskGra05.mdx", + [2006852] = "World NoDXT Detail DskGra06.mdx", + [2006853] = "World NoDXT Detail DslBon01.mdx", + [2006854] = "World NoDXT Detail DslBon02.mdx", + [2006855] = "World NoDXT Detail DslBon03.mdx", + [2006856] = "World NoDXT Detail DslBon04.mdx", + [2006857] = "World NoDXT Detail DslBon05.mdx", + [2006858] = "World NoDXT Detail DslBon06.mdx", + [2006859] = "World NoDXT Detail DslBon07.mdx", + [2006860] = "World NoDXT Detail DslBon08.mdx", + [2006861] = "World NoDXT Detail DslRoc01.mdx", + [2006862] = "World NoDXT Detail DslRoc02.mdx", + [2006863] = "World NoDXT Detail DunBra01.mdx", + [2006864] = "World NoDXT Detail DunBra02.mdx", + [2006865] = "World NoDXT Detail DunBra03.mdx", + [2006866] = "World NoDXT Detail DunBra04.mdx", + [2006867] = "World NoDXT Detail DunBus01.mdx", + [2006868] = "World NoDXT Detail DunBus02.mdx", + [2006869] = "World NoDXT Detail DunBus03.mdx", + [2006870] = "World NoDXT Detail DunGra01.mdx", + [2006871] = "World NoDXT Detail DunGra02.mdx", + [2006872] = "World NoDXT Detail DunGra03.mdx", + [2006873] = "World NoDXT Detail DunGra04.mdx", + [2006874] = "World NoDXT Detail DunRoc01.mdx", + [2006875] = "World NoDXT Detail DunRoc02.mdx", + [2006876] = "World NoDXT Detail DurBus01.mdx", + [2006877] = "World NoDXT Detail DurBus02.mdx", + [2006878] = "World NoDXT Detail DurBus03.mdx", + [2006879] = "World NoDXT Detail DurBus04.mdx", + [2006880] = "World NoDXT Detail DurBus05.mdx", + [2006881] = "World NoDXT Detail DurBus06.mdx", + [2006882] = "World NoDXT Detail DurGra01.mdx", + [2006883] = "World NoDXT Detail DurGra02.mdx", + [2006884] = "World NoDXT Detail DurGra03.mdx", + [2006885] = "World NoDXT Detail DurIFl01.mdx", + [2006886] = "World NoDXT Detail DurIFl02.mdx", + [2006887] = "World NoDXT Detail DurIFl03.mdx", + [2006888] = "World NoDXT Detail DurIFl04.mdx", + [2006889] = "World NoDXT Detail DurIFl05.mdx", + [2006890] = "World NoDXT Detail DurIbu01.mdx", + [2006891] = "World NoDXT Detail DurIbu02.mdx", + [2006892] = "World NoDXT Detail DurIbu03.mdx", + [2006893] = "World NoDXT Detail DurIgr01.mdx", + [2006894] = "World NoDXT Detail DurIgr02.mdx", + [2006895] = "World NoDXT Detail DurIgr03.mdx", + [2006896] = "World NoDXT Detail DurIgr04.mdx", + [2006897] = "World NoDXT Detail DurIro01.mdx", + [2006898] = "World NoDXT Detail DurIro02.mdx", + [2006899] = "World NoDXT Detail DurRoc01.mdx", + [2006900] = "World NoDXT Detail DurRoc02.mdx", + [2006901] = "World NoDXT Detail DurRoc03.mdx", + [2006902] = "World NoDXT Detail DurRoc04.mdx", + [2006903] = "World NoDXT Detail DwmBus01.mdx", + [2006904] = "World NoDXT Detail DwmBus02.mdx", + [2006905] = "World NoDXT Detail DwmBus03.mdx", + [2006906] = "World NoDXT Detail DwmBus04.mdx", + [2006907] = "World NoDXT Detail DwmBus05.mdx", + [2006908] = "World NoDXT Detail DwmGra01.mdx", + [2006909] = "World NoDXT Detail DwmGra02.mdx", + [2006910] = "World NoDXT Detail DwmGra03.mdx", + [2006911] = "World NoDXT Detail DwmGra04.mdx", + [2006912] = "World NoDXT Detail DwmGra05.mdx", + [2006913] = "World NoDXT Detail DwmGra06.mdx", + [2006914] = "World NoDXT Detail DwmRoc01.mdx", + [2006915] = "World NoDXT Detail DwmRoc02.mdx", + [2006916] = "World NoDXT Detail DwpBra01.mdx", + [2006917] = "World NoDXT Detail DwpBra02.mdx", + [2006918] = "World NoDXT Detail DwpBra03.mdx", + [2006919] = "World NoDXT Detail DwpGra01.mdx", + [2006920] = "World NoDXT Detail DwpGra02.mdx", + [2006921] = "World NoDXT Detail DwpGra03.mdx", + [2006922] = "World NoDXT Detail DwpRoc01.mdx", + [2006923] = "World NoDXT Detail DwpRoc02.mdx", + [2006924] = "World NoDXT Detail DwpRoc03.mdx", + [2006925] = "World NoDXT Detail DwpWea01.mdx", + [2006926] = "World NoDXT Detail DwpWea02.mdx", + [2006927] = "World NoDXT Detail DwpWea03.mdx", + [2006928] = "World NoDXT Detail DwpWea04.mdx", + [2006929] = "World NoDXT Detail ElwFlo01.mdx", + [2006930] = "World NoDXT Detail ElwFlo02.mdx", + [2006931] = "World NoDXT Detail ElwFlo03.mdx", + [2006932] = "World NoDXT Detail ElwGra01.mdx", + [2006933] = "World NoDXT Detail ElwGra02.mdx", + [2006934] = "World NoDXT Detail ElwGra03.mdx", + [2006935] = "World NoDXT Detail ElwGra04.mdx", + [2006936] = "World NoDXT Detail ElwGra05.mdx", + [2006937] = "World NoDXT Detail ElwGra06.mdx", + [2006938] = "World NoDXT Detail ElwGra07.mdx", + [2006939] = "World NoDXT Detail ElwGra08.mdx", + [2006940] = "World NoDXT Detail ElwRoc01.mdx", + [2006941] = "World NoDXT Detail ElwRoc02.mdx", + [2006942] = "World NoDXT Detail EmdCre01.mdx", + [2006943] = "World NoDXT Detail EmdCre02.mdx", + [2006944] = "World NoDXT Detail EmdCre03.mdx", + [2006945] = "World NoDXT Detail EmdCre04.mdx", + [2006946] = "World NoDXT Detail EmdCre05.mdx", + [2006947] = "World NoDXT Detail EmdCre06.mdx", + [2006948] = "World NoDXT Detail EmdFlo01.mdx", + [2006949] = "World NoDXT Detail EmdFlo02.mdx", + [2006950] = "World NoDXT Detail EmdGra01.mdx", + [2006951] = "World NoDXT Detail EmdGra02.mdx", + [2006952] = "World NoDXT Detail EmdGra03.mdx", + [2006953] = "World NoDXT Detail EmdGra04.mdx", + [2006954] = "World NoDXT Detail EmdGra05.mdx", + [2006955] = "World NoDXT Detail EmdGra06.mdx", + [2006956] = "World NoDXT Detail EplBon01.mdx", + [2006957] = "World NoDXT Detail EplBon02.mdx", + [2006958] = "World NoDXT Detail EplBon03.mdx", + [2006959] = "World NoDXT Detail EplBon04.mdx", + [2006960] = "World NoDXT Detail EplBon05.mdx", + [2006961] = "World NoDXT Detail EplBon06.mdx", + [2006962] = "World NoDXT Detail EplBus01.mdx", + [2006963] = "World NoDXT Detail EplBus02.mdx", + [2006964] = "World NoDXT Detail EplBus03.mdx", + [2006965] = "World NoDXT Detail EplBus04.mdx", + [2006966] = "World NoDXT Detail EplBus05.mdx", + [2006967] = "World NoDXT Detail EplBus06.mdx", + [2006968] = "World NoDXT Detail EplBus07.mdx", + [2006969] = "World NoDXT Detail EplGra01.mdx", + [2006970] = "World NoDXT Detail EplGra02.mdx", + [2006971] = "World NoDXT Detail EplGra03.mdx", + [2006972] = "World NoDXT Detail EplMus01.mdx", + [2006973] = "World NoDXT Detail EplMus02.mdx", + [2006974] = "World NoDXT Detail FelBus01.mdx", + [2006975] = "World NoDXT Detail FelBus02.mdx", + [2006976] = "World NoDXT Detail FelBus03.mdx", + [2006977] = "World NoDXT Detail FelBus04.mdx", + [2006978] = "World NoDXT Detail FelFlo01.mdx", + [2006979] = "World NoDXT Detail FelFlo02.mdx", + [2006980] = "World NoDXT Detail FelGra01.mdx", + [2006981] = "World NoDXT Detail FelGra02.mdx", + [2006982] = "World NoDXT Detail FelGra03.mdx", + [2006983] = "World NoDXT Detail FelGra04.mdx", + [2006984] = "World NoDXT Detail GstBus01.mdx", + [2006985] = "World NoDXT Detail GstBus02.mdx", + [2006986] = "World NoDXT Detail GstBus03.mdx", + [2006987] = "World NoDXT Detail GstFlo03.mdx", + [2006988] = "World NoDXT Detail GstGra02.mdx", + [2006989] = "World NoDXT Detail GstGra03.mdx", + [2006990] = "World NoDXT Detail HyjBus01.mdx", + [2006991] = "World NoDXT Detail HyjBus02.mdx", + [2006992] = "World NoDXT Detail HyjBus03.mdx", + [2006993] = "World NoDXT Detail HyjBus04.mdx", + [2006994] = "World NoDXT Detail HyjBus05.mdx", + [2006995] = "World NoDXT Detail HyjGra01.mdx", + [2006996] = "World NoDXT Detail HyjGra02.mdx", + [2006997] = "World NoDXT Detail HyjGra03.mdx", + [2006998] = "World NoDXT Detail KalBus01.mdx", + [2006999] = "World NoDXT Detail KalBus02.mdx", + [2007000] = "World NoDXT Detail KalBus03.mdx", + [2007001] = "World NoDXT Detail KalBus04.mdx", + [2007002] = "World NoDXT Detail KalFlo01.mdx", + [2007003] = "World NoDXT Detail KalFlo02.mdx", + [2007004] = "World NoDXT Detail KalFlo03.mdx", + [2007005] = "World NoDXT Detail KalFlo04.mdx", + [2007006] = "World NoDXT Detail KalGra01.mdx", + [2007007] = "World NoDXT Detail KalGra02.mdx", + [2007008] = "World NoDXT Detail KalGra03.mdx", + [2007009] = "World NoDXT Detail KalGra04.mdx", + [2007010] = "World NoDXT Detail KalGra05.mdx", + [2007011] = "World NoDXT Detail LakGra01.mdx", + [2007012] = "World NoDXT Detail LakGra02.mdx", + [2007013] = "World NoDXT Detail LakGra03.mdx", + [2007014] = "World NoDXT Detail LakGra04.mdx", + [2007015] = "World NoDXT Detail LakGra05.mdx", + [2007016] = "World NoDXT Detail LakGra06.mdx", + [2007017] = "World NoDXT Detail LakGra07.mdx", + [2007018] = "World NoDXT Detail LchBus01.mdx", + [2007019] = "World NoDXT Detail LchFlo01.mdx", + [2007020] = "World NoDXT Detail LchFlo02.mdx", + [2007021] = "World NoDXT Detail LchFlo03.mdx", + [2007022] = "World NoDXT Detail LchFlo04.mdx", + [2007023] = "World NoDXT Detail LchFlo05.mdx", + [2007024] = "World NoDXT Detail LchFlo06.mdx", + [2007025] = "World NoDXT Detail LchFlo07.mdx", + [2007026] = "World NoDXT Detail LchFlo08.mdx", + [2007027] = "World NoDXT Detail LchFlo09.mdx", + [2007028] = "World NoDXT Detail LchGra01.mdx", + [2007029] = "World NoDXT Detail LchGra02.mdx", + [2007030] = "World NoDXT Detail LchGra03.mdx", + [2007031] = "World NoDXT Detail LchRoc01.mdx", + [2007032] = "World NoDXT Detail LchRoc02.mdx", + [2007033] = "World NoDXT Detail LchRoc03.mdx", + [2007034] = "World NoDXT Detail LchRoc04.mdx", + [2007035] = "World NoDXT Detail MulBus01.mdx", + [2007036] = "World NoDXT Detail MulBus02.mdx", + [2007037] = "World NoDXT Detail MulBus03.mdx", + [2007038] = "World NoDXT Detail MulBus04.mdx", + [2007039] = "World NoDXT Detail MulFlo01.mdx", + [2007040] = "World NoDXT Detail MulGra01.mdx", + [2007041] = "World NoDXT Detail MulGra02.mdx", + [2007042] = "World NoDXT Detail MulGra03.mdx", + [2007043] = "World NoDXT Detail MulGra04.mdx", + [2007044] = "World NoDXT Detail MulGra05.mdx", + [2007045] = "World NoDXT Detail MulGra06.mdx", + [2007046] = "World NoDXT Detail MulRoc01.mdx", + [2007047] = "World NoDXT Detail MulRoc02.mdx", + [2007048] = "World NoDXT Detail NagGra02.mdx", + [2007049] = "World NoDXT Detail NagGra03.mdx", + [2007050] = "World NoDXT Detail NagGra04.mdx", + [2007051] = "World NoDXT Detail NagGra06.mdx", + [2007052] = "World NoDXT Detail PlagueLandsFun01.mdx", + [2007053] = "World NoDXT Detail PlagueLandsFun02.mdx", + [2007054] = "World NoDXT Detail PlagueLandsGra01.mdx", + [2007055] = "World NoDXT Detail PlagueLandsGra02.mdx", + [2007056] = "World NoDXT Detail PlagueLandsMus01.mdx", + [2007057] = "World NoDXT Detail PlagueLandsMus02.mdx", + [2007058] = "World NoDXT Detail PlagueLandsPla01.mdx", + [2007059] = "World NoDXT Detail PlagueLandsPla02.mdx", + [2007060] = "World NoDXT Detail PlagueLandsRoc01.mdx", + [2007061] = "World NoDXT Detail PlagueLandsSpo01.mdx", + [2007062] = "World NoDXT Detail RedBus01.mdx", + [2007063] = "World NoDXT Detail RedBus02.mdx", + [2007064] = "World NoDXT Detail RedBus03.mdx", + [2007065] = "World NoDXT Detail RedFlo01.mdx", + [2007066] = "World NoDXT Detail RedFlo02.mdx", + [2007067] = "World NoDXT Detail RedFlo03.mdx", + [2007068] = "World NoDXT Detail RedFlo04.mdx", + [2007069] = "World NoDXT Detail RedGra01.mdx", + [2007070] = "World NoDXT Detail RedGra02.mdx", + [2007071] = "World NoDXT Detail RedRoc01.mdx", + [2007072] = "World NoDXT Detail RedRoc02.mdx", + [2007073] = "World NoDXT Detail SivBus01.mdx", + [2007074] = "World NoDXT Detail SivBus02.mdx", + [2007075] = "World NoDXT Detail SivCon01.mdx", + [2007076] = "World NoDXT Detail SivCon02.mdx", + [2007077] = "World NoDXT Detail SivFlo01.mdx", + [2007078] = "World NoDXT Detail SivFlo02.mdx", + [2007079] = "World NoDXT Detail SivFlo03.mdx", + [2007080] = "World NoDXT Detail SivGra01.mdx", + [2007081] = "World NoDXT Detail SivRoc01.mdx", + [2007082] = "World NoDXT Detail SivRoc02.mdx", + [2007083] = "World NoDXT Detail SivSap01.mdx", + [2007084] = "World NoDXT Detail SivTho01.mdx", + [2007085] = "World NoDXT Detail SivTho02.mdx", + [2007086] = "World NoDXT Detail SivTho03.mdx", + [2007087] = "World NoDXT Detail SivTho04.mdx", + [2007088] = "World NoDXT Detail SivTho05.mdx", + [2007089] = "World NoDXT Detail SivVin01.mdx", + [2007090] = "World NoDXT Detail SmnFlo01.mdx", + [2007091] = "World NoDXT Detail SmnFlo02.mdx", + [2007092] = "World NoDXT Detail SosBus01.mdx", + [2007093] = "World NoDXT Detail SosBus02.mdx", + [2007094] = "World NoDXT Detail SosBus03.mdx", + [2007095] = "World NoDXT Detail SosBus04.mdx", + [2007096] = "World NoDXT Detail SosBus05.mdx", + [2007097] = "World NoDXT Detail SosFlo01.mdx", + [2007098] = "World NoDXT Detail SosFlo02.mdx", + [2007099] = "World NoDXT Detail SosFlo03.mdx", + [2007100] = "World NoDXT Detail SosGra01.mdx", + [2007101] = "World NoDXT Detail SosGra02.mdx", + [2007102] = "World NoDXT Detail SosGra03.mdx", + [2007103] = "World NoDXT Detail SosGra04.mdx", + [2007104] = "World NoDXT Detail SosGra05.mdx", + [2007105] = "World NoDXT Detail SosGra06.mdx", + [2007106] = "World NoDXT Detail SosGra07.mdx", + [2007107] = "World NoDXT Detail StlBus01.mdx", + [2007108] = "World NoDXT Detail StlBus02.mdx", + [2007109] = "World NoDXT Detail StlBus03.mdx", + [2007110] = "World NoDXT Detail StlFlo01.mdx", + [2007111] = "World NoDXT Detail StlFlo02.mdx", + [2007112] = "World NoDXT Detail StlFlo03.mdx", + [2007113] = "World NoDXT Detail StlFlo04.mdx", + [2007114] = "World NoDXT Detail StlFlo05.mdx", + [2007115] = "World NoDXT Detail StlGra01.mdx", + [2007116] = "World NoDXT Detail StlGra02.mdx", + [2007117] = "World NoDXT Detail StlGra03.mdx", + [2007118] = "World NoDXT Detail StlRoc01.mdx", + [2007119] = "World NoDXT Detail StlRoc02.mdx", + [2007120] = "World NoDXT Detail StmBra01.mdx", + [2007121] = "World NoDXT Detail StmBra02.mdx", + [2007122] = "World NoDXT Detail StmBra03.mdx", + [2007123] = "World NoDXT Detail StmBra04.mdx", + [2007124] = "World NoDXT Detail StmGra01.mdx", + [2007125] = "World NoDXT Detail StmGra02.mdx", + [2007126] = "World NoDXT Detail StmGra03.mdx", + [2007127] = "World NoDXT Detail StmGra04.mdx", + [2007128] = "World NoDXT Detail StmGra05.mdx", + [2007129] = "World NoDXT Detail TifBus01.mdx", + [2007130] = "World NoDXT Detail TifBus02.mdx", + [2007131] = "World NoDXT Detail TifCon01.mdx", + [2007132] = "World NoDXT Detail TifCon02.mdx", + [2007133] = "World NoDXT Detail TifGra01.mdx", + [2007134] = "World NoDXT Detail TifPla01.mdx", + [2007135] = "World NoDXT Detail TifRoc01.mdx", + [2007136] = "World NoDXT Detail TifRoc02.mdx", + [2007137] = "World NoDXT Detail TifShl01.mdx", + [2007138] = "World NoDXT Detail TifShl02.mdx", + [2007139] = "World NoDXT Detail TifShl03.mdx", + [2007140] = "World NoDXT Detail TifTho01.mdx", + [2007141] = "World NoDXT Detail TifTho02.mdx", + [2007142] = "World NoDXT Detail TifTho03.mdx", + [2007143] = "World NoDXT Detail TifTho04.mdx", + [2007144] = "World NoDXT Detail Tifsap01.mdx", + [2007145] = "World NoDXT Detail TkrBra01.mdx", + [2007146] = "World NoDXT Detail TkrBra03.mdx", + [2007147] = "World NoDXT Detail TkrGra02.mdx", + [2007148] = "World NoDXT Detail TkrGra03.mdx", + [2007149] = "World NoDXT Detail TkrRoc02.mdx", + [2007150] = "World NoDXT Detail TkrRoc03.mdx", + [2007151] = "World NoDXT Detail TkrWea01.mdx", + [2007152] = "World NoDXT Detail TkrWea02.mdx", + [2007153] = "World NoDXT Detail TkrWea03.mdx", + [2007154] = "World NoDXT Detail TkrWea04.mdx", + [2007155] = "World NoDXT Detail UngBun01.mdx", + [2007156] = "World NoDXT Detail UngBun02.mdx", + [2007157] = "World NoDXT Detail UngBun03.mdx", + [2007158] = "World NoDXT Detail UngFlo01.mdx", + [2007159] = "World NoDXT Detail UngFlo02.mdx", + [2007160] = "World NoDXT Detail UngGra01.mdx", + [2007161] = "World NoDXT Detail UngGra02.mdx", + [2007162] = "World NoDXT Detail UngGra03.mdx", + [2007163] = "World NoDXT Detail UngGra04.mdx", + [2007164] = "World NoDXT Detail UngGra05.mdx", + [2007165] = "World NoDXT Detail UngGra06.mdx", + [2007166] = "World NoDXT Detail UngGra07.mdx", + [2007167] = "World NoDXT Detail UngGra08.mdx", + [2007168] = "World NoDXT Detail UnwCor01.mdx", + [2007169] = "World NoDXT Detail UnwCor02.mdx", + [2007170] = "World NoDXT Detail UnwCor03.mdx", + [2007171] = "World NoDXT Detail UnwCor04.mdx", + [2007172] = "World NoDXT Detail UnwCor05.mdx", + [2007173] = "World NoDXT Detail UnwCor06.mdx", + [2007174] = "World NoDXT Detail UnwCor07.mdx", + [2007175] = "World NoDXT Detail UnwCor08.mdx", + [2007176] = "World NoDXT Detail UnwCor09.mdx", + [2007177] = "World NoDXT Detail UnwGra01.mdx", + [2007178] = "World NoDXT Detail UnwGra02.mdx", + [2007179] = "World NoDXT Detail UnwGra03.mdx", + [2007180] = "World NoDXT Detail UnwShl01.mdx", + [2007181] = "World NoDXT Detail UnwShl02.mdx", + [2007182] = "World NoDXT Detail WesBus01.mdx", + [2007183] = "World NoDXT Detail WesBus02.mdx", + [2007184] = "World NoDXT Detail WesBus03.mdx", + [2007185] = "World NoDXT Detail WesFlo01.mdx", + [2007186] = "World NoDXT Detail WesGra01.mdx", + [2007187] = "World NoDXT Detail WesGra02.mdx", + [2007188] = "World NoDXT Detail WesGra03.mdx", + [2007189] = "World NoDXT Detail WesGra04.mdx", + [2007190] = "World NoDXT Detail WesRoc01.mdx", + [2007191] = "World NoDXT Detail WesRoc02.mdx", + [2007192] = "World NoDXT Detail WesShe01.mdx", + [2007193] = "World NoDXT Detail WesShe02.mdx", + [2007194] = "World NoDXT Detail WesShe03.mdx", + [2007195] = "World NoDXT Detail WesWea01.mdx", + [2007196] = "World NoDXT Detail WesWea02.mdx", + [2007197] = "World NoDXT Detail WesWea03.mdx", + [2007198] = "World NoDXT Detail WesWea04.mdx", + [2007199] = "World NoDXT Detail WetBus01.mdx", + [2007200] = "World NoDXT Detail WetBus02.mdx", + [2007201] = "World NoDXT Detail WetBus03.mdx", + [2007202] = "World NoDXT Detail WetFlo01.mdx", + [2007203] = "World NoDXT Detail WetFlo02.mdx", + [2007204] = "World NoDXT Detail WetFlo03.mdx", + [2007205] = "World NoDXT Detail WetFlo04.mdx", + [2007206] = "World NoDXT Detail WetFlo05.mdx", + [2007207] = "World NoDXT Detail WetGra01.mdx", + [2007208] = "World NoDXT Detail WetGra02.mdx", + [2007209] = "World NoDXT Detail WetGra03.mdx", + [2007210] = "World NoDXT Detail bllbus01.mdx", + [2007211] = "World NoDXT Detail bllroc01.mdx", + [2007212] = "World NoDXT Detail bllroc02.mdx", + [2007213] = "World NoDXT Detail bllroc03.mdx", + [2007214] = "World NoDXT Detail bllroc04.mdx", + [2007215] = "World NoDXT Detail bllroc05.mdx", + [2007216] = "World NoDXT Detail bllroc06.mdx", + [2007217] = "World NoDXT Detail bllroc07.mdx", + [2007218] = "World NoDXT Detail bllroc08.mdx", + [2007219] = "World NoDXT Detail bmyBus01.mdx", + [2007220] = "World NoDXT Detail bmyBus02.mdx", + [2007221] = "World NoDXT Detail bmyBus03.mdx", + [2007222] = "World NoDXT Detail bmyBus04.mdx", + [2007223] = "World NoDXT Detail bmyBus05.mdx", + [2007224] = "World NoDXT Detail bmyFlo01.mdx", + [2007225] = "World NoDXT Detail bmyFlo02.mdx", + [2007226] = "World NoDXT Detail bmyGra01.mdx", + [2007227] = "World NoDXT Detail bmyGra02.mdx", + [2007228] = "World NoDXT Detail bmyGra03.mdx", + [2007229] = "World NoDXT Detail bmyGra04.mdx", + [2007230] = "World NoDXT Detail smyBus01.mdx", + [2007231] = "World NoDXT Detail smyBus02.mdx", + [2007232] = "World NoDXT Detail smyBus03.mdx", + [2007233] = "World NoDXT Detail smyBus04.mdx", + [2007234] = "World NoDXT Detail smyBus05.mdx", + [2007235] = "World NoDXT Detail smyFlo01.mdx", + [2007236] = "World NoDXT Detail smyFlo02.mdx", + [2007237] = "World NoDXT Detail smyGra01.mdx", + [2007238] = "World NoDXT Detail smyGra02.mdx", + [2007239] = "World NoDXT Detail smyGra03.mdx", + [2007240] = "World NoDXT Detail smyGra04.mdx", + [2007241] = "World NoDXT GENERIC PASSIVEDOODADS VOLUMETRICLIGHTS AhnQiraj_lightshaft.mdx", + [2007242] = "World NoDXT GENERIC PASSIVEDOODADS VOLUMETRICLIGHTS COT_lightshaftA.mdx", + [2007243] = "World NoDXT GENERIC PASSIVEDOODADS VOLUMETRICLIGHTS DarnassisLightShaft.mdx", + [2007244] = "World NoDXT GENERIC PASSIVEDOODADS VOLUMETRICLIGHTS KarazahnDiningRays.mdx", + [2007245] = "World NoDXT GENERIC PASSIVEDOODADS VOLUMETRICLIGHTS LD_lightshaft01.mdx", + [2007246] = "World NoDXT GENERIC PASSIVEDOODADS VOLUMETRICLIGHTS LD_lightshaft02.mdx", + [2007247] = "World NoDXT GENERIC PASSIVEDOODADS VOLUMETRICLIGHTS LightShaftA.mdx", + [2007248] = "World NoDXT GENERIC PASSIVEDOODADS VOLUMETRICLIGHTS LightShaftB.mdx", + [2007249] = "World NoDXT GENERIC PASSIVEDOODADS VOLUMETRICLIGHTS LightShaftC.mdx", + [2007250] = "World NoDXT GENERIC PASSIVEDOODADS VOLUMETRICLIGHTS LightShaftThorns.mdx", + [2007251] = "World NoDXT GENERIC PASSIVEDOODADS VOLUMETRICLIGHTS ST_LightShaft.mdx", + [2007252] = "World NoDXT GENERIC PASSIVEDOODADS VOLUMETRICLIGHTS UtherShrineLightBeam.mdx", + [2007253] = "World OUTLAND PASSIVEDOODADS BLADETHROWER bladethrowerruined01.mdx", + [2007254] = "World OUTLAND PASSIVEDOODADS BLADETHROWER orcblade.mdx", + [2007255] = "World OUTLAND PASSIVEDOODADS CAMPFIRE OutlandDeadCampfire.mdx", + [2007256] = "World OUTLAND PASSIVEDOODADS FloatingRubble OutlandTowerFloatingRubble.mdx", + [2007257] = "World OUTLAND PASSIVEDOODADS HANGINGCRYSTALS outlandhangingcrystal01.mdx", + [2007258] = "World OUTLAND PASSIVEDOODADS MONUMENT OutlandMonolith.mdx", + [2007259] = "World OUTLAND PASSIVEDOODADS Plants outlandplant01.mdx", + [2007260] = "World OUTLAND PASSIVEDOODADS Plants outlandplant02.mdx", + [2007261] = "World OUTLAND PASSIVEDOODADS Plants outlandplant03.mdx", + [2007262] = "World OUTLAND PASSIVEDOODADS Plants outlandplant04.mdx", + [2007263] = "World OUTLAND PASSIVEDOODADS Plants outlandplant05.mdx", + [2007264] = "World OUTLAND PASSIVEDOODADS Plants outlandplant06.mdx", + [2007265] = "World OUTLAND PASSIVEDOODADS Rocks OutlandAlienRock01.mdx", + [2007266] = "World OUTLAND PASSIVEDOODADS Rocks OutlandAlienRock02.mdx", + [2007267] = "World OUTLAND PASSIVEDOODADS Rocks OutlandAlienRock03.mdx", + [2007268] = "World OUTLAND PASSIVEDOODADS Rocks OutlandAlienRock04.mdx", + [2007269] = "World OUTLAND PASSIVEDOODADS Rocks OutlandAlienRock05.mdx", + [2007270] = "World OUTLAND PASSIVEDOODADS Rocks floatingrocklarge01.mdx", + [2007271] = "World OUTLAND PASSIVEDOODADS Rocks floatingrocklarge02.mdx", + [2007272] = "World OUTLAND PASSIVEDOODADS Rocks floatingrocklarge03.mdx", + [2007273] = "World OUTLAND PASSIVEDOODADS Rocks floatingrockmedium01.mdx", + [2007274] = "World OUTLAND PASSIVEDOODADS Rocks floatingrockmedium02.mdx", + [2007275] = "World OUTLAND PASSIVEDOODADS Rocks floatingrockmedium03.mdx", + [2007276] = "World OUTLAND PASSIVEDOODADS Rocks floatingrocksmall01.mdx", + [2007277] = "World OUTLAND PASSIVEDOODADS Rocks floatingrocksmall02.mdx", + [2007278] = "World OUTLAND PASSIVEDOODADS Rocks floatingrocksmall03.mdx", + [2007279] = "World OUTLAND PASSIVEDOODADS Rocks outlandspookyrock01.mdx", + [2007280] = "World OUTLAND PASSIVEDOODADS Rocks outlandspookyrock02.mdx", + [2007281] = "World OUTLAND PASSIVEDOODADS Rocks outlandspookyrock03.mdx", + [2007282] = "World OUTLAND PASSIVEDOODADS Rocks outlandspookyrock04.mdx", + [2007283] = "World OUTLAND PASSIVEDOODADS Roots OutlandRoot01.mdx", + [2007284] = "World OUTLAND PASSIVEDOODADS Roots OutlandRoot02.mdx", + [2007285] = "World OUTLAND PASSIVEDOODADS Roots OutlandRoot03.mdx", + [2007286] = "World OUTLAND PASSIVEDOODADS Rubble outlandrubble01.mdx", + [2007287] = "World OUTLAND PASSIVEDOODADS Rubble outlandrubble02.mdx", + [2007288] = "World OUTLAND PASSIVEDOODADS Rubble outlandrubble03.mdx", + [2007289] = "World OUTLAND PASSIVEDOODADS Rubble outlandrubble04.mdx", + [2007290] = "World OUTLAND PASSIVEDOODADS Rubble outlandrubble05.mdx", + [2007291] = "World OUTLAND PASSIVEDOODADS SkyBox OutlandSkyBox.mdx", + [2007292] = "World OUTLAND PASSIVEDOODADS TREES OutlandTreeStump01.mdx", + [2007293] = "World OUTLAND PASSIVEDOODADS TREES OutlandTreeStump02.mdx", + [2007294] = "World OUTLAND PASSIVEDOODADS TREES OutlandTreeStump03.mdx", + [2007295] = "World OUTLAND PASSIVEDOODADS TREES OutlandUmbrellatree01.mdx", + [2007296] = "World OUTLAND PASSIVEDOODADS TREES OutlandUmbrellatree02.mdx", + [2007297] = "World OUTLAND PASSIVEDOODADS TREES OutlandUmbrellatree03.mdx", + [2007298] = "World OUTLAND PASSIVEDOODADS TREES OutlandUmbrellatree04.mdx", + [2007299] = "World OUTLAND PASSIVEDOODADS TREES OutlandUmbrellatree05.mdx", + [2007300] = "World OUTLAND PASSIVEDOODADS TREES OutlandUmbrellatree06.mdx", + [2007301] = "World OUTLAND PASSIVEDOODADS TREES OutlandUmbrellatree07.mdx", + [2007302] = "World OUTLAND PASSIVEDOODADS TREES OutlandUmbrellatree08.mdx", + [2007303] = "World OUTLAND PASSIVEDOODADS TREES OutlandUmbrellatree09.mdx", + [2007304] = "World OUTLAND PASSIVEDOODADS TREES OutlandUmbrellatree10.mdx", + [2007305] = "World OUTLAND PASSIVEDOODADS TREES outlandaloetree01.mdx", + [2007306] = "World OUTLAND PASSIVEDOODADS TREES outlandaloetree02.mdx", + [2007307] = "World OUTLAND PASSIVEDOODADS TREES outlandaloetree03.mdx", + [2007308] = "World OUTLAND PASSIVEDOODADS TREES outlandburnttree01.mdx", + [2007309] = "World OUTLAND PASSIVEDOODADS TREES outlandburnttree02.mdx", + [2007310] = "World OUTLAND PASSIVEDOODADS TREES outlandburnttree03.mdx", + [2007311] = "World OUTLAND PASSIVEDOODADS TREES outlandburnttree04.mdx", + [2007312] = "World OUTLAND PASSIVEDOODADS TREES outlandfloatingtree01.mdx", + [2007313] = "World OUTLAND PASSIVEDOODADS TREES outlandfloatingtree02.mdx", + [2007314] = "World OUTLAND PASSIVEDOODADS TREES outlandfloatingtree03.mdx", + [2007315] = "World OUTLAND PASSIVEDOODADS TankParts humantankcannon.mdx", + [2007316] = "World OUTLAND PASSIVEDOODADS TankParts humantanktower.mdx", + [2007317] = "World OUTLAND PASSIVEDOODADS TankParts humantankwheel.mdx", + [2007318] = "World OUTLAND PASSIVEDOODADS Thorns outlandthorn01.mdx", + [2007319] = "World OUTLAND PASSIVEDOODADS Thorns outlandthorn02.mdx", + [2007320] = "World OUTLAND PASSIVEDOODADS Thorns outlandthorn03.mdx", + [2007321] = "World OUTLAND PASSIVEDOODADS Thorns outlandthorn04.mdx", + [2007322] = "World OUTLAND PASSIVEDOODADS Thorns outlandthorn05.mdx", + [2007323] = "World OUTLAND PASSIVEDOODADS Thorns outlandthorn06.mdx", + [2007324] = "World OUTLAND PASSIVEDOODADS Thorns outlandthorn07.mdx", + [2007325] = "World OUTLAND PASSIVEDOODADS caltrop01.mdx", + [2007326] = "World SKILLACTIVATED CONTAINERS TreasureChest01.mdx", + [2007327] = "World SKILLACTIVATED TRADESKILLENABLERS BlacksmithForge.mdx", + [2007328] = "World SKILLACTIVATED TRADESKILLENABLERS Engineering_Autolathe_01.mdx", + [2007329] = "World SKILLACTIVATED TRADESKILLENABLERS Tradeskill_AlchemySet_01.mdx", + [2007330] = "World SKILLACTIVATED TRADESKILLENABLERS Tradeskill_AlchemySet_02.mdx", + [2007331] = "World SKILLACTIVATED TRADESKILLENABLERS Tradeskill_AlchemySet_03.mdx", + [2007332] = "World SKILLACTIVATED TRADESKILLENABLERS Tradeskill_Anvil_01.mdx", + [2007333] = "World SKILLACTIVATED TRADESKILLENABLERS Tradeskill_Anvil_02.mdx", + [2007334] = "World SKILLACTIVATED TRADESKILLENABLERS Tradeskill_FishSchool_01.mdx", + [2007335] = "World SKILLACTIVATED TRADESKILLENABLERS Tradeskill_FishSchool_02.mdx", + [2007336] = "World SKILLACTIVATED TRADESKILLENABLERS Tradeskill_FishSchool_03.mdx", + [2007337] = "World SKILLACTIVATED TRADESKILLENABLERS Tradeskill_FishSchool_EelsYellow.mdx", + [2007338] = "World SKILLACTIVATED TRADESKILLENABLERS Tradeskill_FishSchool_ElementalFire.mdx", + [2007339] = "World SKILLACTIVATED TRADESKILLENABLERS Tradeskill_FishSchool_ElementalWater.mdx", + [2007340] = "World SKILLACTIVATED TRADESKILLENABLERS Tradeskill_FishSchool_Oil.mdx", + [2007341] = "World SKILLACTIVATED TRADESKILLENABLERS Tradeskill_FishSchool_Shipwreck.mdx", + [2007342] = "World SKILLACTIVATED TRADESKILLENABLERS Tradeskill_Forge_02.mdx", + [2007343] = "World SKILLACTIVATED TRADESKILLENABLERS Tradeskill_Forge_03.mdx", + [2007344] = "World SKILLACTIVATED TradeskillNodes Adamantium_Miningnode_01.mdx", + [2007345] = "World SKILLACTIVATED TradeskillNodes Bush_ArthasTears.mdx", + [2007346] = "World SKILLACTIVATED TradeskillNodes Bush_BlackLotus.mdx", + [2007347] = "World SKILLACTIVATED TradeskillNodes Bush_Blindweed.mdx", + [2007348] = "World SKILLACTIVATED TradeskillNodes Bush_BloodThistle.mdx", + [2007349] = "World SKILLACTIVATED TradeskillNodes Bush_Bruiseweed01.mdx", + [2007350] = "World SKILLACTIVATED TradeskillNodes Bush_Crownroyal01.mdx", + [2007351] = "World SKILLACTIVATED TradeskillNodes Bush_DreamFoil.mdx", + [2007352] = "World SKILLACTIVATED TradeskillNodes Bush_Fadeleaf01.mdx", + [2007353] = "World SKILLACTIVATED TradeskillNodes Bush_Firebloom.mdx", + [2007354] = "World SKILLACTIVATED TradeskillNodes Bush_Goldthorn01.mdx", + [2007355] = "World SKILLACTIVATED TradeskillNodes Bush_Gravemoss01.mdx", + [2007356] = "World SKILLACTIVATED TradeskillNodes Bush_GromsBlood.mdx", + [2007357] = "World SKILLACTIVATED TradeskillNodes Bush_IceCap.mdx", + [2007358] = "World SKILLACTIVATED TradeskillNodes Bush_Khadgarswhisker01.mdx", + [2007359] = "World SKILLACTIVATED TradeskillNodes Bush_Magebloom01.mdx", + [2007360] = "World SKILLACTIVATED TradeskillNodes Bush_MountainSilverSage.mdx", + [2007361] = "World SKILLACTIVATED TradeskillNodes Bush_Mushroom01.mdx", + [2007362] = "World SKILLACTIVATED TradeskillNodes Bush_Mushroom02.mdx", + [2007363] = "World SKILLACTIVATED TradeskillNodes Bush_Mushroom03.mdx", + [2007364] = "World SKILLACTIVATED TradeskillNodes Bush_Peacebloom01.mdx", + [2007365] = "World SKILLACTIVATED TradeskillNodes Bush_PlagueBloom.mdx", + [2007366] = "World SKILLACTIVATED TradeskillNodes Bush_PurpleLotus.mdx", + [2007367] = "World SKILLACTIVATED TradeskillNodes Bush_Sansam.mdx", + [2007368] = "World SKILLACTIVATED TradeskillNodes Bush_Silverleaf01.mdx", + [2007369] = "World SKILLACTIVATED TradeskillNodes Bush_Snakebloom01.mdx", + [2007370] = "World SKILLACTIVATED TradeskillNodes Bush_Snakeroot.mdx", + [2007371] = "World SKILLACTIVATED TradeskillNodes Bush_SpineLeaf.mdx", + [2007372] = "World SKILLACTIVATED TradeskillNodes Bush_Stardust.mdx", + [2007373] = "World SKILLACTIVATED TradeskillNodes Bush_Steelbloom01.mdx", + [2007374] = "World SKILLACTIVATED TradeskillNodes Bush_Stranglekelp01.mdx", + [2007375] = "World SKILLACTIVATED TradeskillNodes Bush_Sungrass.mdx", + [2007376] = "World SKILLACTIVATED TradeskillNodes Bush_Swiftthistle01.mdx", + [2007377] = "World SKILLACTIVATED TradeskillNodes Bush_Thornroot01.mdx", + [2007378] = "World SKILLACTIVATED TradeskillNodes Bush_liferoot01.mdx", + [2007379] = "World SKILLACTIVATED TradeskillNodes Bush_wintersbite01.mdx", + [2007380] = "World SKILLACTIVATED TradeskillNodes FelIron_Miningnode_01.mdx", + [2007381] = "World SKILLACTIVATED TradeskillNodes Incendicite_Miningnode_01.mdx", + [2007382] = "World SKILLACTIVATED TradeskillNodes Iron_Miningnode_01.mdx", + [2007383] = "World SKILLACTIVATED TradeskillNodes Khorium_Miningnode_01.mdx", + [2007384] = "World SKILLACTIVATED TradeskillNodes Obsidian_Miningnode_01.mdx", + [2007385] = "World SKILLACTIVATED TradeskillNodes RichThorium_Miningnode_01.mdx", + [2007386] = "World SKILLACTIVATED TradeskillNodes Silithid_Miningnode_01.mdx", + [2007387] = "World SKILLACTIVATED TradeskillNodes Thorium_Miningnode_01.mdx", + [2007388] = "World SKILLACTIVATED TradeskillNodes TrueSilver_Miningnode_01.mdx", + [2007389] = "World SKILLACTIVATED TradeskillNodes copper_Miningnode_01.mdx", + [2007390] = "World SKILLACTIVATED TradeskillNodes gold_Miningnode_01.mdx", + [2007391] = "World SKILLACTIVATED TradeskillNodes goldthorn_01.mdx", + [2007392] = "World SKILLACTIVATED TradeskillNodes mithril_Miningnode_01.mdx", + [2007393] = "World SKILLACTIVATED TradeskillNodes stranglekelp_01.mdx", + [2007394] = "World SKILLACTIVATED TradeskillNodes tin_Miningnode_01.mdx", + [2007395] = "World Scale 1000x1000.mdx", + [2007396] = "World Scale 100x100.mdx", + [2007397] = "World Scale 250x250.mdx", + [2007398] = "World Scale 500x500.mdx", + [2007399] = "World Scale 50x50.mdx", + [2007400] = "World Scale HumanMaleScale.mdx", + [2007401] = "World wmo Azeroth Buildings AltarOfStorms AltarOfStorms.wmo", + [2007402] = "World wmo Azeroth Buildings Big_Keep Big_Keep.wmo", + [2007403] = "World wmo Azeroth Buildings Castle castle01.wmo", + [2007404] = "World wmo Azeroth Buildings Castle castle02.wmo", + [2007405] = "World wmo Azeroth Buildings Castle castle03.wmo", + [2007406] = "World wmo Azeroth Buildings Chapel Chapel.wmo", + [2007407] = "World wmo Azeroth Buildings Chapel DuskwoodChapel.wmo", + [2007408] = "World wmo Azeroth Buildings Chapel RedridgeChapel.wmo", + [2007409] = "World wmo Azeroth Buildings DuskwoodAbandoned_Barn DuskwoodAbandoned_Barn.wmo", + [2007410] = "World wmo Azeroth Buildings DuskwoodAbandoned_Blacksmith DuskwoodAbandoned_Blacksmith.wmo", + [2007411] = "World wmo Azeroth Buildings DuskwoodAbandoned_HumanTwoStory DuskwoodAbandoned_HumanTwoStory.wmo", + [2007412] = "World wmo Azeroth Buildings DuskwoodAbandoned_Lumbermill DuskwoodAbandoned_lumbermill.wmo", + [2007413] = "World wmo Azeroth Buildings DuskwoodAbandoned_TownHall_NoWall DuskwoodAbandoned_TownHall_NoWall.wmo", + [2007414] = "World wmo Azeroth Buildings DuskwoodAbandoned_human_farm DuskwoodAbandoned_human_farm.wmo", + [2007415] = "World wmo Azeroth Buildings Duskwood_Barn Duskwood_Barn.wmo", + [2007416] = "World wmo Azeroth Buildings Duskwood_Barn Duskwood_Barn_Closed.wmo", + [2007417] = "World wmo Azeroth Buildings Duskwood_Barracks duskwood_barracks.wmo", + [2007418] = "World wmo Azeroth Buildings Duskwood_Blacksmith Duskwood_Blacksmith.wmo", + [2007419] = "World wmo Azeroth Buildings Duskwood_HumanTwoStory Duskwood_HumanTwoStory.wmo", + [2007420] = "World wmo Azeroth Buildings Duskwood_Human_Farm_Burnt DuskwoodFarmHouseburnt.wmo", + [2007421] = "World wmo Azeroth Buildings Duskwood_Lumbermill Duskwood_lumbermill.wmo", + [2007422] = "World wmo Azeroth Buildings Duskwood_MageTower Duskwood_MageTower.wmo", + [2007423] = "World wmo Azeroth Buildings Duskwood_Stable Duskwood_Stable.wmo", + [2007424] = "World wmo Azeroth Buildings Duskwood_TownHall Duskwood_TownHall.wmo", + [2007425] = "World wmo Azeroth Buildings Duskwood_TownHall_NoWall Duskwood_TownHall_NoWall.wmo", + [2007426] = "World wmo Azeroth Buildings Duskwood_human_farm Duskwood_human_farm.wmo", + [2007427] = "World wmo Azeroth Buildings Duskwood_human_farm Duskwood_human_farm_closed.wmo", + [2007428] = "World wmo Azeroth Buildings GnomeHut GnomeHut.wmo", + [2007429] = "World wmo Azeroth Buildings GnomeHut GnomeHutTwoStory.wmo", + [2007430] = "World wmo Azeroth Buildings GoldshireBlacksmith goldshireblacksmith.wmo", + [2007431] = "World wmo Azeroth Buildings GoldshireInn GoldshireInn.wmo", + [2007432] = "World wmo Azeroth Buildings GoldshireInn GoldshireInn_closed.wmo", + [2007433] = "World wmo Azeroth Buildings GriffonAviary GriffonAviary.wmo", + [2007434] = "World wmo Azeroth Buildings GuardTower GuardTower.wmo", + [2007435] = "World wmo Azeroth Buildings GuardTower GuardTower_damaged.wmo", + [2007436] = "World wmo Azeroth Buildings GuardTower GuardTower_damaged_construction.wmo", + [2007437] = "World wmo Azeroth Buildings GuardTower GuardTower_destroyed.wmo", + [2007438] = "World wmo Azeroth Buildings GuardTower GuardTower_destroyed_construction.wmo", + [2007439] = "World wmo Azeroth Buildings GuardTower GuardTower_intact.wmo", + [2007440] = "World wmo Azeroth Buildings GuardTower_Ruined RuinedHumanGuardTower01.wmo", + [2007441] = "World wmo Azeroth Buildings GuildHouses GuildHouseA.wmo", + [2007442] = "World wmo Azeroth Buildings GuildHouses GuildHouseB.wmo", + [2007443] = "World wmo Azeroth Buildings HillsbradTerraceWall HillsbradTerraceWall.wmo", + [2007444] = "World wmo Azeroth Buildings HumanTwoStory HumanTwoStory.wmo", + [2007445] = "World wmo Azeroth Buildings HumanTwoStory HumanTwoStory_closed.wmo", + [2007446] = "World wmo Azeroth Buildings Human_Barn_Silo barn.wmo", + [2007447] = "World wmo Azeroth Buildings Human_Barn_Silo barn_closed.wmo", + [2007448] = "World wmo Azeroth Buildings Human_Barn_Silo silo.wmo", + [2007449] = "World wmo Azeroth Buildings Human_Barracks Human_Barracks.wmo", + [2007450] = "World wmo Azeroth Buildings Human_farm_test farmtest.wmo", + [2007451] = "World wmo Azeroth Buildings IntactPrisonTower IntactPrisonTower.wmo", + [2007452] = "World wmo Azeroth Buildings KeepWall Gate01.wmo", + [2007453] = "World wmo Azeroth Buildings KeepWall Gate02.wmo", + [2007454] = "World wmo Azeroth Buildings KeepWall Gate03.wmo", + [2007455] = "World wmo Azeroth Buildings KeepWall GateRuined01.wmo", + [2007456] = "World wmo Azeroth Buildings KeepWall GateRuined02.wmo", + [2007457] = "World wmo Azeroth Buildings KeepWall KeepBridge01.wmo", + [2007458] = "World wmo Azeroth Buildings KeepWall LowWallPost01.wmo", + [2007459] = "World wmo Azeroth Buildings KeepWall WallPiece01.wmo", + [2007460] = "World wmo Azeroth Buildings KeepWall WallPiece02.wmo", + [2007461] = "World wmo Azeroth Buildings KeepWall WallPiece03.wmo", + [2007462] = "World wmo Azeroth Buildings KeepWall WallPiece04.wmo", + [2007463] = "World wmo Azeroth Buildings KeepWall WallPiece05.wmo", + [2007464] = "World wmo Azeroth Buildings KeepWall WallPieceRuin01.wmo", + [2007465] = "World wmo Azeroth Buildings KeepWall WallPieceRuin02.wmo", + [2007466] = "World wmo Azeroth Buildings KeepWall WallPieceRuin03.wmo", + [2007467] = "World wmo Azeroth Buildings KeepWall WallPieceRuin04.wmo", + [2007468] = "World wmo Azeroth Buildings KeepWall WallPieceStairs01.wmo", + [2007469] = "World wmo Azeroth Buildings KeepWall WallPost01.wmo", + [2007470] = "World wmo Azeroth Buildings KeepWall WallPost02.wmo", + [2007471] = "World wmo Azeroth Buildings KeepWall WallPostRuined01.wmo", + [2007472] = "World wmo Azeroth Buildings KeepWall WallPostTunnel01.wmo", + [2007473] = "World wmo Azeroth Buildings LumberMill lumbermill.wmo", + [2007474] = "World wmo Azeroth Buildings Magetower magetower.wmo", + [2007475] = "World wmo Azeroth Buildings Moonbrook_Blacksmith Moonbrook_Blacksmith.wmo", + [2007476] = "World wmo Azeroth Buildings Moonbrook_HumanTwoStory Moonbrook_HumanTwoStory.wmo", + [2007477] = "World wmo Azeroth Buildings Moonbrook_TownHall_NoWall Moonbrook_TownHall_NoWall.wmo", + [2007478] = "World wmo Azeroth Buildings Moonbrook_human_farm Moonbrook_human_farm.wmo", + [2007479] = "World wmo Azeroth Buildings NSabbey NSabbey.wmo", + [2007480] = "World wmo Azeroth Buildings OilPlatform OilPlatform.wmo", + [2007481] = "World wmo Azeroth Buildings OilPlatform OilPlatformSmall.wmo", + [2007482] = "World wmo Azeroth Buildings Oil_Platform oil_platform.wmo", + [2007483] = "World wmo Azeroth Buildings Prison_Camp PrisonGuardTower.wmo", + [2007484] = "World wmo Azeroth Buildings Prison_Camp PrisonOubliette.wmo", + [2007485] = "World wmo Azeroth Buildings Prison_Camp PrisonOublietteLarge.wmo", + [2007486] = "World wmo Azeroth Buildings Prison_Camp PrisonOublietteTunnel.wmo", + [2007487] = "World wmo Azeroth Buildings Prison_Camp PrisonOublietteWater.wmo", + [2007488] = "World wmo Azeroth Buildings Prison_Camp prisonHQ.wmo", + [2007489] = "World wmo Azeroth Buildings Prison_Camp prisonLonghouse.wmo", + [2007490] = "World wmo Azeroth Buildings Prison_Camp prisonLonghouse_Redridge.wmo", + [2007491] = "World wmo Azeroth Buildings RedRidge_Barn RedRidge_Barn.wmo", + [2007492] = "World wmo Azeroth Buildings RedRidge_Barn RedRidge_Barn_Closed.wmo", + [2007493] = "World wmo Azeroth Buildings RedRidge_Barracks redridge_barracks.wmo", + [2007494] = "World wmo Azeroth Buildings RedRidge_Blacksmith RedRidge_Blacksmith.wmo", + [2007495] = "World wmo Azeroth Buildings RedRidge_HumanTwoStory RedRidge_HumanTwoStory.wmo", + [2007496] = "World wmo Azeroth Buildings RedRidge_Lumbermill RedRidge_lumbermill.wmo", + [2007497] = "World wmo Azeroth Buildings RedRidge_MageTower RedRidge_MageTower.wmo", + [2007498] = "World wmo Azeroth Buildings RedRidge_Stable RedRidge_Stable.wmo", + [2007499] = "World wmo Azeroth Buildings RedRidge_TownHall RedRidge_TownHall.wmo", + [2007500] = "World wmo Azeroth Buildings RedRidge_TownHall_NoWall RedRidge_TownHall_NoWall.wmo", + [2007501] = "World wmo Azeroth Buildings RedRidge_human_farm RedRidge_human_farm.wmo", + [2007502] = "World wmo Azeroth Buildings RedRidge_human_farm RedRidge_human_farm_closed.wmo", + [2007503] = "World wmo Azeroth Buildings RuinedCathedral RuinedCathedral.wmo", + [2007504] = "World wmo Azeroth Buildings Scarlet_Monestary Scarlet_Monestary.wmo", + [2007505] = "World wmo Azeroth Buildings Stable stable.wmo", + [2007506] = "World wmo Azeroth Buildings Stormwind AZ_PvPbarracks.wmo", + [2007507] = "World wmo Azeroth Buildings Stormwind SW_Harbor_Docks.wmo", + [2007508] = "World wmo Azeroth Buildings Stormwind SW_Harbor_LGPillar.wmo", + [2007509] = "World wmo Azeroth Buildings Stormwind SW_Harbor_LGWall02.wmo", + [2007510] = "World wmo Azeroth Buildings Stormwind SW_Harbor_LgTwr02.wmo", + [2007511] = "World wmo Azeroth Buildings Stormwind SW_Harbor_LgTwr03.wmo", + [2007512] = "World wmo Azeroth Buildings Stormwind SW_Harbor_LgWall01.wmo", + [2007513] = "World wmo Azeroth Buildings Stormwind SW_Harbor_Lighthouse.wmo", + [2007514] = "World wmo Azeroth Buildings Stormwind SW_Harbor_LowStair.wmo", + [2007515] = "World wmo Azeroth Buildings Stormwind SW_Harbor_LowStr.wmo", + [2007516] = "World wmo Azeroth Buildings Stormwind SW_Harbor_LowTwr.wmo", + [2007517] = "World wmo Azeroth Buildings Stormwind SW_Harbor_Lowmain.wmo", + [2007518] = "World wmo Azeroth Buildings Stormwind SW_Harbor_ShipShelter.wmo", + [2007519] = "World wmo Azeroth Buildings Stormwind Stormwind.wmo", + [2007520] = "World wmo Azeroth Buildings Stormwind StormwindHangar.wmo", + [2007521] = "World wmo Azeroth Buildings Stormwind StormwindHarbor.wmo", + [2007522] = "World wmo Azeroth Buildings Stranglethorn_BootyBay BootyBay.wmo", + [2007523] = "World wmo Azeroth Buildings Stranglethorn_BootyBay BootyBayPlank.wmo", + [2007524] = "World wmo Azeroth Buildings Stranglethorn_BootyBay BootyBay_fortress1.wmo", + [2007525] = "World wmo Azeroth Buildings Stranglethorn_BootyBay BootyBay_fortress2.wmo", + [2007526] = "World wmo Azeroth Buildings Stranglethorn_BootyBay BootyBay_house1.wmo", + [2007527] = "World wmo Azeroth Buildings Stranglethorn_BootyBay BootyBay_house2.wmo", + [2007528] = "World wmo Azeroth Buildings Stranglethorn_BootyBay BootyBay_railing.wmo", + [2007529] = "World wmo Azeroth Buildings Stranglethorn_BootyBay BootyBay_warehouse.wmo", + [2007530] = "World wmo Azeroth Buildings Stranglethorn_BootyBay ratchet_dock.wmo", + [2007531] = "World wmo Azeroth Buildings Stranglethorn_ruins Stranglethorn_ruins01.wmo", + [2007532] = "World wmo Azeroth Buildings Stranglethorn_ruins Stranglethorn_ruins02.wmo", + [2007533] = "World wmo Azeroth Buildings Stranglethorn_ruins Stranglethorn_ruins03.wmo", + [2007534] = "World wmo Azeroth Buildings Stranglethorn_ruins Stranglethorn_ruins04.wmo", + [2007535] = "World wmo Azeroth Buildings Stranglethorn_ruins Stranglethorn_ruins05.wmo", + [2007536] = "World wmo Azeroth Buildings Stranglethorn_ruins Stranglethorn_ruins06.wmo", + [2007537] = "World wmo Azeroth Buildings Stranglethorn_ruins Stranglethorn_ruins07.wmo", + [2007538] = "World wmo Azeroth Buildings Stranglethorn_ruins Stranglethorn_ruins08.wmo", + [2007539] = "World wmo Azeroth Buildings Stranglethorn_ruins Stranglethorn_ruins09.wmo", + [2007540] = "World wmo Azeroth Buildings Stranglethorn_ruins Stranglethorn_ruins10.wmo", + [2007541] = "World wmo Azeroth Buildings Stranglethorn_ruins Stranglethorn_ruins11.wmo", + [2007542] = "World wmo Azeroth Buildings Stranglethorn_ruins Stranglethorn_ruins12.wmo", + [2007543] = "World wmo Azeroth Buildings Stranglethorn_ruins Stranglethorn_ruins13.wmo", + [2007544] = "World wmo Azeroth Buildings Stranglethorn_ruins Stranglethorn_ruins14.wmo", + [2007545] = "World wmo Azeroth Buildings Stranglethorn_ruins Stranglethorn_ruins15.wmo", + [2007546] = "World wmo Azeroth Buildings Stranglethorn_ruins Stranglethorn_ruins16.wmo", + [2007547] = "World wmo Azeroth Buildings Stranglethorn_ruins Stranglethorn_ruins17.wmo", + [2007548] = "World wmo Azeroth Buildings Stranglethorn_ruins Stranglethorn_ruins18.wmo", + [2007549] = "World wmo Azeroth Buildings TownHall TownHall.wmo", + [2007550] = "World wmo Azeroth Buildings TownHall_NoWall TownHall_NoWall.wmo", + [2007551] = "World wmo Azeroth Buildings Westfall_Barn Westfall_Barn.wmo", + [2007552] = "World wmo Azeroth Buildings Westfall_Barracks westfall_barracks.wmo", + [2007553] = "World wmo Azeroth Buildings Westfall_Blacksmith Westfall_Blacksmith.wmo", + [2007554] = "World wmo Azeroth Buildings Westfall_GuardTower Westfall_GuardTower.wmo", + [2007555] = "World wmo Azeroth Buildings Westfall_HumanTwoStory Westfall_HumanTwoStory.wmo", + [2007556] = "World wmo Azeroth Buildings Westfall_Lumbermill Westfall_lumbermill.wmo", + [2007557] = "World wmo Azeroth Buildings Westfall_MageTower Westfall_MageTower.wmo", + [2007558] = "World wmo Azeroth Buildings Westfall_Stable Westfall_Stable.wmo", + [2007559] = "World wmo Azeroth Buildings Westfall_Stable Westfall_StableB.wmo", + [2007560] = "World wmo Azeroth Buildings Westfall_TownHall Westfall_TownHall.wmo", + [2007561] = "World wmo Azeroth Buildings Westfall_TownHall_NoWall Westfall_TownHall_NoWall.wmo", + [2007562] = "World wmo Azeroth Buildings Westfall_human_farm Westfall_human_farm.wmo", + [2007563] = "World wmo Azeroth Buildings Westfall_human_farm Westfall_human_farmB.wmo", + [2007564] = "World wmo Azeroth Buildings Westfall_human_farm_Burnt WestFallFarmHouseburnt.wmo", + [2007565] = "World wmo Azeroth Buildings WorldTree DuskWorldTree.wmo", + [2007566] = "World wmo Azeroth Buildings WorldTree WorldTree.wmo", + [2007567] = "World wmo Azeroth Buildings Ziggurat TrollZiggurat.wmo", + [2007568] = "World wmo Azeroth Buildings ZulGurub ZulGurub.wmo", + [2007569] = "World wmo Azeroth Buildings ZulGurub ZulGurubCity.wmo", + [2007570] = "World wmo Azeroth Buildings ZulGurub ZulGurubEntrance.wmo", + [2007571] = "World wmo Azeroth Buildings ZulGurub ZulGurubRuins01.wmo", + [2007572] = "World wmo Azeroth Buildings ZulGurub ZulGurubRuins02.wmo", + [2007573] = "World wmo Azeroth Buildings ZulGurub ZulKunda.wmo", + [2007574] = "World wmo Azeroth Buildings ZulGurub ZulRandomRuins.wmo", + [2007575] = "World wmo Azeroth Buildings human_farm farm.wmo", + [2007576] = "World wmo Azeroth Buildings human_farm farm_closed.wmo", + [2007577] = "World wmo Azeroth Buildings zulgurub_ziggurat ZulGurub_Ziggurat.wmo", + [2007578] = "World wmo Azeroth Collidable Doodads AllianceShrine AllianceShrine.wmo", + [2007579] = "World wmo Azeroth Collidable Doodads Duskwood ChasmBridge DuskwoodChasmBridge.wmo", + [2007580] = "World wmo Azeroth Collidable Doodads Duskwood CoveredBridge DuskwoodCoveredBridge.wmo", + [2007581] = "World wmo Azeroth Collidable Doodads Duskwood OpenGrave DuskwoodOpenGrave.wmo", + [2007582] = "World wmo Azeroth Collidable Doodads Elwynn AbbeyGate02 abbeygate02.wmo", + [2007583] = "World wmo Azeroth Collidable Doodads Elwynn AbbeyGate abbeygate01.wmo", + [2007584] = "World wmo Azeroth Collidable Doodads Elwynn Bleachers BleachersWood02.wmo", + [2007585] = "World wmo Azeroth Collidable Doodads Elwynn ElwynnLakeBridge ElwynnLakeBridge.wmo", + [2007586] = "World wmo Azeroth Collidable Doodads Elwynn FootBridge ElwynnFootbridge.wmo", + [2007587] = "World wmo Azeroth Collidable Doodads Elwynn LionBridge ElwynnLionBridge.wmo", + [2007588] = "World wmo Azeroth Collidable Doodads Elwynn ValleyOfHeroesBridge HeroBridge.wmo", + [2007589] = "World wmo Azeroth Collidable Doodads Elwynn ValleyOfHeroesGate HeroGate.wmo", + [2007590] = "World wmo Azeroth Collidable Doodads Elwynn WideBridge ElwynnWideBridge.wmo", + [2007591] = "World wmo Azeroth Collidable Doodads HordeShrine HordeShrine.wmo", + [2007592] = "World wmo Azeroth Collidable Doodads IronForge Footbridge IronFootbridge.wmo", + [2007593] = "World wmo Azeroth Collidable Doodads IronForge IronforgeRopeBridge01 IronforgeRopeBridge01.wmo", + [2007594] = "World wmo Azeroth Collidable Doodads IronForge StoneBridge IronStonebridge.wmo", + [2007595] = "World wmo Azeroth Collidable Doodads PVP Bridges pvp_bridge01.wmo", + [2007596] = "World wmo Azeroth Collidable Doodads PVP Bridges pvp_bridge02.wmo", + [2007597] = "World wmo Azeroth Collidable Doodads Redridge RedRidgeDamagedBridge RedridgeDamagedBridge.wmo", + [2007598] = "World wmo Azeroth Collidable Doodads Redridge RedRidgeDocks01 RedRidgeDocks01.wmo", + [2007599] = "World wmo Azeroth Collidable Doodads Redridge RedRidgeDocks02 RedRidgeDocks02.wmo", + [2007600] = "World wmo Azeroth Collidable Doodads Redridge RedRidgeDocks03 RedRidgeDocks03.wmo", + [2007601] = "World wmo Azeroth Collidable Doodads Redridge RedRidgeFootbridge RedRidgeFootbridge.wmo", + [2007602] = "World wmo Azeroth Collidable Doodads Redridge RedridgeDocks RedRidgeSmallDock01.wmo", + [2007603] = "World wmo Azeroth Collidable Doodads Redridge RedridgeDocks RedRidgeSmallDock02.wmo", + [2007604] = "World wmo Azeroth Collidable Doodads Stranglethorn HoldingPen HoldingPenBamboo.wmo", + [2007605] = "World wmo Azeroth Collidable Doodads Stranglethorn OilRefinery OilRefinery.wmo", + [2007606] = "World wmo Azeroth Collidable Doodads Stranglethorn RopeBridge RopeBridge.wmo", + [2007607] = "World wmo Azeroth Collidable Doodads Stranglethorn RopeBridge RopeBridgeShort.wmo", + [2007608] = "World wmo Azeroth Collidable Doodads Stranglethorn RopeBridge RopeBridgeSmall.wmo", + [2007609] = "World wmo Azeroth Collidable Doodads Stranglethorn StrangleRuinStair StrangleRuinStair.wmo", + [2007610] = "World wmo Azeroth Collidable Doodads Stranglethorn StrangleRuinStair StrangleRuinStair02.wmo", + [2007611] = "World wmo Azeroth Collidable Doodads Stranglethorn StranglethornArenaGate StrangleArenaGate01.wmo", + [2007612] = "World wmo Azeroth Collidable Doodads Stranglethorn StranglethornArena StrangleGladiatorArena.wmo", + [2007613] = "World wmo Azeroth Collidable Doodads Stranglethorn StranglethornRuins01 StranglethornRuins01.wmo", + [2007614] = "World wmo Azeroth Collidable Doodads Stranglethorn StranglethornRuins02 StranglethornRuins02.wmo", + [2007615] = "World wmo Azeroth Collidable Doodads Stranglethorn StranglethornRuins04 StranglethornRuins04.wmo", + [2007616] = "World wmo Azeroth Collidable Doodads Stranglethorn StranglethornRuins11 StranglethornRuins11.wmo", + [2007617] = "World wmo Azeroth Collidable Doodads Stranglethorn StranglethornRuins12 StranglethornRuins12.wmo", + [2007618] = "World wmo Azeroth Collidable Doodads Stranglethorn StranglethornRuins13 StranglethornRuins13.wmo", + [2007619] = "World wmo Azeroth Collidable Doodads Stranglethorn StranglethornRuins16 StranglethornRuins16.wmo", + [2007620] = "World wmo Azeroth Collidable Doodads SwampofSorrows BridgeStranglethorn BridgeStranglethorn.wmo", + [2007621] = "World wmo Azeroth Collidable Doodads SwampofSorrows SwampBridge01 SwampBridge01.wmo", + [2007622] = "World wmo Azeroth Collidable Doodads SwampofSorrows SwampDock01 SwampDock01.wmo", + [2007623] = "World wmo Azeroth Collidable Doodads SwampofSorrows WaterHuts WaterHut_Large.wmo", + [2007624] = "World wmo Azeroth Collidable Doodads Westfall HumanBoatHouse HumanBoatHouse.wmo", + [2007625] = "World wmo Azeroth Collidable Doodads Westfall WestfallGrainSilo01 WestFallGrainSilo01.wmo", + [2007626] = "World wmo Azeroth Collidable Doodads Wetlands WetlandsHumanDock01 WetlandsHumanDock01.wmo", + [2007627] = "World wmo Azeroth Collidable Doodads Wetlands WetlandsWagon Final WetlandsBustedWagon.wmo", + [2007628] = "World wmo Dungeon AZ_Blackrock Blackrock.wmo", + [2007629] = "World wmo Dungeon AZ_Blackrock Blackrock2.wmo", + [2007630] = "World wmo Dungeon AZ_Blackrock Blackrock_lower_guild.wmo", + [2007631] = "World wmo Dungeon AZ_Blackrock Blackrock_lower_instance.wmo", + [2007632] = "World wmo Dungeon AZ_Blackrock Blackrock_upper_guild.wmo", + [2007633] = "World wmo Dungeon AZ_Blackrock Blackrock_upper_instance.wmo", + [2007634] = "World wmo Dungeon AZ_Deadmines AZ_Deadmines_A.wmo", + [2007635] = "World wmo Dungeon AZ_Deadmines AZ_Deadmines_B.wmo", + [2007636] = "World wmo Dungeon AZ_Deadmines AZ_Deadmines_C.wmo", + [2007637] = "World wmo Dungeon AZ_Deadmines AZ_Deadmines_D.wmo", + [2007638] = "World wmo Dungeon AZ_Karazahn Kharazan.wmo", + [2007639] = "World wmo Dungeon AZ_StormwindPrisons StormwindJail.wmo", + [2007640] = "World wmo Dungeon AZ_StormwindPrisons StormwindPrison.wmo", + [2007641] = "World wmo Dungeon AZ_Subway Subway.wmo", + [2007642] = "World wmo Dungeon CavernsOfTime COT_Arm3.wmo", + [2007643] = "World wmo Dungeon CavernsOfTime CavernsOFTimeEntrance.wmo", + [2007644] = "World wmo Dungeon CavernsOfTime CavernsofTime.wmo", + [2007645] = "World wmo Dungeon CavernsOfTime CavernsofTimeHyjal.wmo", + [2007646] = "World wmo Dungeon GM_Dungeon GMDungeon.wmo", + [2007647] = "World wmo Dungeon KL_AhnQiraj 40ManArmyGeneral.wmo", + [2007648] = "World wmo Dungeon KL_AhnQiraj 40ManCanalInner.wmo", + [2007649] = "World wmo Dungeon KL_AhnQiraj 40ManCanalOuter.wmo", + [2007650] = "World wmo Dungeon KL_AhnQiraj 40ManCourtYard.wmo", + [2007651] = "World wmo Dungeon KL_AhnQiraj 40ManDroneBoss.wmo", + [2007652] = "World wmo Dungeon KL_AhnQiraj 40ManEggLayerBoss.wmo", + [2007653] = "World wmo Dungeon KL_AhnQiraj 40ManEnterance.wmo", + [2007654] = "World wmo Dungeon KL_AhnQiraj 40ManMainBoss1.wmo", + [2007655] = "World wmo Dungeon KL_AhnQiraj 40ManMainBoss2.wmo", + [2007656] = "World wmo Dungeon KL_AhnQiraj 40ManMainBossEast.wmo", + [2007657] = "World wmo Dungeon KL_AhnQiraj 40ManMainBossWest.wmo", + [2007658] = "World wmo Dungeon KL_AhnQiraj 40ManReaverBoss.wmo", + [2007659] = "World wmo Dungeon KL_AhnQiraj 40MansSilithidHall.wmo", + [2007660] = "World wmo Dungeon KL_AhnQiraj Ahn_Qiraj.wmo", + [2007661] = "World wmo Dungeon KL_AhnQiraj Ahn_Qiraj_city.wmo", + [2007662] = "World wmo Dungeon KL_AhnQiraj Ahn_Qiraj_columnA.wmo", + [2007663] = "World wmo Dungeon KL_AhnQiraj Ahn_Qiraj_columnB.wmo", + [2007664] = "World wmo Dungeon KL_AhnQiraj Ahn_Qiraj_columnC.wmo", + [2007665] = "World wmo Dungeon KL_AhnQiraj Ahn_Qiraj_columnD.wmo", + [2007666] = "World wmo Dungeon KL_AhnQiraj Ahn_Qiraj_columnE.wmo", + [2007667] = "World wmo Dungeon KL_AhnQiraj Ahn_Qiraj_columnF.wmo", + [2007668] = "World wmo Dungeon KL_AhnQiraj Ahn_Qiraj_columnG.wmo", + [2007669] = "World wmo Dungeon KL_AhnQiraj Ahn_Qiraj_columnH.wmo", + [2007670] = "World wmo Dungeon KL_AhnQiraj Ahn_Qiraj_entrance.wmo", + [2007671] = "World wmo Dungeon KL_AhnQiraj Ahn_Qiraj_facade.wmo", + [2007672] = "World wmo Dungeon KL_AhnQiraj Ahn_Qiraj_object.wmo", + [2007673] = "World wmo Dungeon KL_AhnQiraj Ahn_Qiraj_object02.wmo", + [2007674] = "World wmo Dungeon KL_AhnQiraj Ahn_Qirajwall01.wmo", + [2007675] = "World wmo Dungeon KL_AhnQiraj Ahn_Qirajwall02.wmo", + [2007676] = "World wmo Dungeon KL_AhnQiraj Ahn_Qirajwall03.wmo", + [2007677] = "World wmo Dungeon KL_AhnQiraj EasternBackLandscape.wmo", + [2007678] = "World wmo Dungeon KL_AhnQiraj EasternFrontLandscape.wmo", + [2007679] = "World wmo Dungeon KL_AhnQiraj EggLayerAdd.wmo", + [2007680] = "World wmo Dungeon KL_AhnQiraj InnerGateEnterance.wmo", + [2007681] = "World wmo Dungeon KL_AhnQiraj InnerLandscape.wmo", + [2007682] = "World wmo Dungeon KL_AhnQiraj MainBossAdd.wmo", + [2007683] = "World wmo Dungeon KL_AhnQiraj OuterGateEnterance.wmo", + [2007684] = "World wmo Dungeon KL_AhnQiraj TempleRuinsEnterance.wmo", + [2007685] = "World wmo Dungeon KL_AhnQiraj WesternBackLandscape.wmo", + [2007686] = "World wmo Dungeon KL_AhnQiraj WesternFrontLandscape.wmo", + [2007687] = "World wmo Dungeon KL_Blackfathom Blackfathom.wmo", + [2007688] = "World wmo Dungeon KL_Blackfathom Blackfathom_instance.wmo", + [2007689] = "World wmo Dungeon KL_Blackfathom Old_Blackfathom_facade.wmo", + [2007690] = "World wmo Dungeon KL_DireMaul KL_Diremaul.wmo", + [2007691] = "World wmo Dungeon KL_DireMaul KL_Diremaul_Instance.wmo", + [2007692] = "World wmo Dungeon KL_DireMaul KL_Diremaul__BackEnt.wmo", + [2007693] = "World wmo Dungeon KL_Maraudon KL_Maraudon.wmo", + [2007694] = "World wmo Dungeon KL_Maraudon KL_Maraudon_instance01.wmo", + [2007695] = "World wmo Dungeon KL_OnyxiasLair KL_OnyxiasLair.wmo", + [2007696] = "World wmo Dungeon KL_OnyxiasLair KL_OnyxiasLair_A.wmo", + [2007697] = "World wmo Dungeon KL_OnyxiasLair KL_OnyxiasLair_B.wmo", + [2007698] = "World wmo Dungeon KL_OrgrimmarLavaDungeon LavaDungeon.wmo", + [2007699] = "World wmo Dungeon KL_Razorfen RazorfenDowns.wmo", + [2007700] = "World wmo Dungeon KL_Razorfen RazorfenDowns_instance.wmo", + [2007701] = "World wmo Dungeon KL_Razorfen RazorfenKraul.wmo", + [2007702] = "World wmo Dungeon KL_Razorfen RazorfenKraul_instance.wmo", + [2007703] = "World wmo Dungeon KL_Wailing wailingcaverns.wmo", + [2007704] = "World wmo Dungeon KL_Wailing wailingcaverns_instance.wmo", + [2007705] = "World wmo Dungeon KL_Wailing wailingcaverns_teeth.wmo", + [2007706] = "World wmo Dungeon KZ_Gnomeragon KZ_Gnomeragon.wmo", + [2007707] = "World wmo Dungeon KZ_Gnomeragon KZ_Gnomeragon_Instance.wmo", + [2007708] = "World wmo Dungeon KZ_Uldaman KZ_Uldaman.wmo", + [2007709] = "World wmo Dungeon KZ_Uldaman KZ_Uldaman_A.wmo", + [2007710] = "World wmo Dungeon KZ_Uldaman KZ_Uldaman_B.wmo", + [2007711] = "World wmo Dungeon KZ_Uldaman KZ_Uldaman_C.wmo", + [2007712] = "World wmo Dungeon LD_DragonIsles DragonIsles_A.wmo", + [2007713] = "World wmo Dungeon LD_DragonIsles DragonIsles_B.wmo", + [2007714] = "World wmo Dungeon LD_DragonIsles DragonIsles_C.wmo", + [2007715] = "World wmo Dungeon LD_DragonIsles DragonIsles_D.wmo", + [2007716] = "World wmo Dungeon LD_ScarletMonestary Monestary_Cathedral.wmo", + [2007717] = "World wmo Dungeon LD_ScarletMonestary Monestary_Cemetery.wmo", + [2007718] = "World wmo Dungeon LD_ScarletMonestary Monestary_Library.wmo", + [2007719] = "World wmo Dungeon LD_ShadowFang LD_ShadowFang.wmo", + [2007720] = "World wmo Dungeon LD_ShadowFang LD_ShadowFangInterior.wmo", + [2007721] = "World wmo Dungeon LD_Stratholme FrostWyrm_Final01.wmo", + [2007722] = "World wmo Dungeon LD_Stratholme Stratholme.wmo", + [2007723] = "World wmo Dungeon LD_Stratholme Stratholme_A.wmo", + [2007724] = "World wmo Dungeon LD_Stratholme Stratholme_B.wmo", + [2007725] = "World wmo Dungeon LD_Stratholme Stratholme_C.wmo", + [2007726] = "World wmo Dungeon LD_Stratholme Stratholme_raid.wmo", + [2007727] = "World wmo Dungeon MD_Algazgate AlgazGate.wmo", + [2007728] = "World wmo Dungeon MD_AnimalDen AnimalDen.wmo", + [2007729] = "World wmo Dungeon MD_Anvilmarpass Anvilmarpass.wmo", + [2007730] = "World wmo Dungeon MD_BarrowDensOneRm BarrowDensOneRm.wmo", + [2007731] = "World wmo Dungeon MD_BarrowDensOneRm CorruptBarrowDensOneRoom.wmo", + [2007732] = "World wmo Dungeon MD_BarrowDens BarrowDens.wmo", + [2007733] = "World wmo Dungeon MD_BarrowDens BarrowDens_B.wmo", + [2007734] = "World wmo Dungeon MD_BarrowDens BarrowDens_C.wmo", + [2007735] = "World wmo Dungeon MD_BarrowDens CorruptBarrowDens.wmo", + [2007736] = "World wmo Dungeon MD_CaveTunnels MD_CaveTunnel01.wmo", + [2007737] = "World wmo Dungeon MD_CaveTunnels MD_ColdCaveTunnel01.wmo", + [2007738] = "World wmo Dungeon MD_CaveTunnels MD_StoneAshen_Tunnel.wmo", + [2007739] = "World wmo Dungeon MD_CaveTunnels MD_WarmCaveTunnel01.wmo", + [2007740] = "World wmo Dungeon MD_CaveTunnels PvP_Alterac_Ent01.wmo", + [2007741] = "World wmo Dungeon MD_CaveTunnels PvP_Alterac_Snow01.wmo", + [2007742] = "World wmo Dungeon MD_Caveden MD_IceDen.wmo", + [2007743] = "World wmo Dungeon MD_Caveden MD_JungleDen.wmo", + [2007744] = "World wmo Dungeon MD_Caveden MD_MushroomDen.wmo", + [2007745] = "World wmo Dungeon MD_Caveden MD_TrollDen.wmo", + [2007746] = "World wmo Dungeon MD_Caveden MD_TrollDen_Warm.wmo", + [2007747] = "World wmo Dungeon MD_Caveden MD_VolcanicDen.wmo", + [2007748] = "World wmo Dungeon MD_Caveden MD_WarmDen.wmo", + [2007749] = "World wmo Dungeon MD_CryptOneRm MD_CryptOneRm.wmo", + [2007750] = "World wmo Dungeon MD_CryptSchool MD_CryptSchool.wmo", + [2007751] = "World wmo Dungeon MD_CryptSimpleEnt MD_CryptSimpleEnt.wmo", + [2007752] = "World wmo Dungeon MD_Crypt MD_Crypt.wmo", + [2007753] = "World wmo Dungeon MD_Crypt MD_Crypt_B.wmo", + [2007754] = "World wmo Dungeon MD_Crypt MD_Crypt_C.wmo", + [2007755] = "World wmo Dungeon MD_Crypt MD_Crypt_D.wmo", + [2007756] = "World wmo Dungeon MD_Dwarven Tunnels LargeTunnel.wmo", + [2007757] = "World wmo Dungeon MD_Dwarven Tunnels MediumTunnel.wmo", + [2007758] = "World wmo Dungeon MD_Dwarven Tunnels MediumTunnel_Snow.wmo", + [2007759] = "World wmo Dungeon MD_Dwarven Tunnels SmallTunnel.wmo", + [2007760] = "World wmo Dungeon MD_Dwarven Tunnels SmallTunnel_Snow.wmo", + [2007761] = "World wmo Dungeon MD_FishingHole MD_FishingHoleIce.wmo", + [2007762] = "World wmo Dungeon MD_Goldmine MD_Goldmine.wmo", + [2007763] = "World wmo Dungeon MD_Goldmine MD_Goldmine_1Room.wmo", + [2007764] = "World wmo Dungeon MD_Goldmine MD_Goldmine_hellfire_human.wmo", + [2007765] = "World wmo Dungeon MD_Goldmine MD_Goldmine_variantA.wmo", + [2007766] = "World wmo Dungeon MD_Goldmine MD_Goldmine_variantB.wmo", + [2007767] = "World wmo Dungeon MD_Goldmine MD_Goldmine_variantC.wmo", + [2007768] = "World wmo Dungeon MD_Goldmine MD_Goldmine_variantD.wmo", + [2007769] = "World wmo Dungeon MD_Goldmine MD_Goldmine_variantE.wmo", + [2007770] = "World wmo Dungeon MD_Goldmine MD_Goldmine_variantF.wmo", + [2007771] = "World wmo Dungeon MD_Hive exterior_arch.wmo", + [2007772] = "World wmo Dungeon MD_Hive exterior_piece01.wmo", + [2007773] = "World wmo Dungeon MD_Hive exterior_piece02.wmo", + [2007774] = "World wmo Dungeon MD_Hive exterior_piece03.wmo", + [2007775] = "World wmo Dungeon MD_Hive exterior_piece04.wmo", + [2007776] = "World wmo Dungeon MD_Hive exterior_piece05.wmo", + [2007777] = "World wmo Dungeon MD_Hive mini-hive_A.wmo", + [2007778] = "World wmo Dungeon MD_Hive mini-hive_B.wmo", + [2007779] = "World wmo Dungeon MD_Hive mini-hive_C.wmo", + [2007780] = "World wmo Dungeon MD_Hive mini-hive_C_albino.wmo", + [2007781] = "World wmo Dungeon MD_Hive mini-hive_D.wmo", + [2007782] = "World wmo Dungeon MD_Hive mini-hive_D_albino.wmo", + [2007783] = "World wmo Dungeon MD_Hive mini-hive_E.wmo", + [2007784] = "World wmo Dungeon MD_Hive mini-hive_E_albino.wmo", + [2007785] = "World wmo Dungeon MD_Hive mini-hive_F.wmo", + [2007786] = "World wmo Dungeon MD_Hive mini-hive_F_albino.wmo", + [2007787] = "World wmo Dungeon MD_Hordemine MD_Hordemine.wmo", + [2007788] = "World wmo Dungeon MD_Hordemine MD_Hordemine1Room.wmo", + [2007789] = "World wmo Dungeon MD_Mountaincave MD_Icecave.wmo", + [2007790] = "World wmo Dungeon MD_Mountaincave MD_Icecave02.wmo", + [2007791] = "World wmo Dungeon MD_Mountaincave MD_Icecave03.wmo", + [2007792] = "World wmo Dungeon MD_Mountaincave MD_Icecave04.wmo", + [2007793] = "World wmo Dungeon MD_Mountaincave MD_Icecave05.wmo", + [2007794] = "World wmo Dungeon MD_Mountaincave MD_Icecave_Medium.wmo", + [2007795] = "World wmo Dungeon MD_Mountaincave MD_Junglecave.wmo", + [2007796] = "World wmo Dungeon MD_Mountaincave MD_Junglecave07.wmo", + [2007797] = "World wmo Dungeon MD_Mountaincave MD_Junglecave_Crystal.wmo", + [2007798] = "World wmo Dungeon MD_Mountaincave MD_Junglecave_Medium.wmo", + [2007799] = "World wmo Dungeon MD_Mountaincave MD_Mountaincave_Medium_B.wmo", + [2007800] = "World wmo Dungeon MD_Mountaincave MD_Mountaincave_Medium_C.wmo", + [2007801] = "World wmo Dungeon MD_Mountaincave MD_Mountaincave_Medium_D.wmo", + [2007802] = "World wmo Dungeon MD_Mountaincave MD_Mountaincave_Medium_E.wmo", + [2007803] = "World wmo Dungeon MD_Mountaincave MD_Mountaincave_Medium_F.wmo", + [2007804] = "World wmo Dungeon MD_Mountaincave MD_Mountaincave_Medium_G.wmo", + [2007805] = "World wmo Dungeon MD_Mountaincave MD_Mountaincave_Medium_G_Warm.wmo", + [2007806] = "World wmo Dungeon MD_Mountaincave MD_Mountaincave_Medium_H.wmo", + [2007807] = "World wmo Dungeon MD_Mountaincave MD_Mushroomcave.wmo", + [2007808] = "World wmo Dungeon MD_Mountaincave MD_Mushroomcave02.wmo", + [2007809] = "World wmo Dungeon MD_Mountaincave MD_Mushroomcave03.wmo", + [2007810] = "World wmo Dungeon MD_Mountaincave MD_Mushroomcave04.wmo", + [2007811] = "World wmo Dungeon MD_Mountaincave MD_Mushroomcave05.wmo", + [2007812] = "World wmo Dungeon MD_Mountaincave MD_Mushroomcave06.wmo", + [2007813] = "World wmo Dungeon MD_Mountaincave MD_Mushroomcave07.wmo", + [2007814] = "World wmo Dungeon MD_Mountaincave MD_Mushroomcave08.wmo", + [2007815] = "World wmo Dungeon MD_Mountaincave MD_Mushroomcave09.wmo", + [2007816] = "World wmo Dungeon MD_Mountaincave MD_Mushroomcave10.wmo", + [2007817] = "World wmo Dungeon MD_Mountaincave MD_Underwatercave_Medium.wmo", + [2007818] = "World wmo Dungeon MD_Mountaincave MD_Warmcave.wmo", + [2007819] = "World wmo Dungeon MD_Mountaincave MD_Warmcave_Medium.wmo", + [2007820] = "World wmo Dungeon MD_Mountaincave md_mountaincave_medium.wmo", + [2007821] = "World wmo Dungeon MD_Ogremound MD_Brogremound.wmo", + [2007822] = "World wmo Dungeon MD_Ogremound MD_Brogremound1Room.wmo", + [2007823] = "World wmo Dungeon MD_Ogremound MD_Grogremound.wmo", + [2007824] = "World wmo Dungeon MD_Ogremound MD_Grogremound1Room.wmo", + [2007825] = "World wmo Dungeon MD_Ogremound MD_OgreMine1.wmo", + [2007826] = "World wmo Dungeon MD_Ogremound MD_OgreMine2.wmo", + [2007827] = "World wmo Dungeon MD_Ogremound MD_OgreMine3.wmo", + [2007828] = "World wmo Dungeon MD_Ogremound MD_Ogremound.wmo", + [2007829] = "World wmo Dungeon MD_Ogremound MD_Ogremound1Room.wmo", + [2007830] = "World wmo Dungeon MD_Ogremound MD_Snogremound.wmo", + [2007831] = "World wmo Dungeon MD_Ogremound MD_Snogremound1Room.wmo", + [2007832] = "World wmo Dungeon MD_Pirateship Pirateship.wmo", + [2007833] = "World wmo Dungeon MD_Pirateship Pirateship_NoCannons.wmo", + [2007834] = "World wmo Dungeon MD_Pirateship Pirateship_plank.wmo", + [2007835] = "World wmo Dungeon MD_Ruinedfortress MD_RuinedFortress.wmo", + [2007836] = "World wmo Dungeon MD_Ruinedkeep Ruinedkeep.wmo", + [2007837] = "World wmo Dungeon MD_Ruinedkeep Ruinedkeep_crypt.wmo", + [2007838] = "World wmo Dungeon MD_Ruinedkeep Ruinedkeep_crypt_facade.wmo", + [2007839] = "World wmo Dungeon MD_Ruinedkeep Ruinedkeep_crypt_instance.wmo", + [2007840] = "World wmo Dungeon MD_Shipwreck Shipwreck_A.wmo", + [2007841] = "World wmo Dungeon MD_Shipwreck Shipwreck_B.wmo", + [2007842] = "World wmo Dungeon MD_Shipwreck Shipwreck_C.wmo", + [2007843] = "World wmo Dungeon MD_Shipwreck Shipwreck_D.wmo", + [2007844] = "World wmo Dungeon MD_Shipwreck Transport_Shipwreck.wmo", + [2007845] = "World wmo Dungeon MD_Spidermine MD_Spidermine.wmo", + [2007846] = "World wmo Dungeon MD_Spidermine MD_Spidermine_nokobolds.wmo", + [2007847] = "World wmo Dungeon MD_Stratholme_Plaguewood_Tunnel MD_Stratholme_Plaguewood_Tunnel.wmo", + [2007848] = "World wmo Dungeon MD_TimbermawHold MD_Furbog_01.wmo", + [2007849] = "World wmo Dungeon MD_TimbermawHold MD_TimbermawHold.wmo", + [2007850] = "World wmo Dungeon Monestary Scarlet_Monestary_Interior.wmo", + [2007851] = "World wmo Dungeon OL_OgreHuts PVP_Ogre_Arena01.wmo", + [2007852] = "World wmo Dungeon OL_OgreHuts PVP_Ogre_Arena01_Inst.wmo", + [2007853] = "World wmo Dungeon SunkenTemple AZ_SunkenTemple.wmo", + [2007854] = "World wmo Dungeon SunkenTemple AZ_SunkenTemple_Instance.wmo", + [2007855] = "World wmo Dungeon Sunstrider_Anchorage Sunstrider_dock.wmo", + [2007856] = "World wmo Dungeon Sunstrider_Anchorage Sunstrider_shipdock.wmo", + [2007857] = "World wmo Dungeon test collintest.wmo", + [2007858] = "World wmo Dungeon test missingwmo.wmo", + [2007859] = "World wmo Dungeon test test.wmo", + [2007860] = "World wmo Kalimdor Buildings AzsharaOutpost AzsharaOutpost.wmo", + [2007861] = "World wmo Kalimdor Buildings ClassicalElfRuins AZRClassicalElfRuin01.wmo", + [2007862] = "World wmo Kalimdor Buildings ClassicalElfRuins AZRClassicalElfRuin02.wmo", + [2007863] = "World wmo Kalimdor Buildings ClassicalElfRuins AZRClassicalElfRuin03.wmo", + [2007864] = "World wmo Kalimdor Buildings ClassicalElfRuins AZRClassicalElfRuin04.wmo", + [2007865] = "World wmo Kalimdor Buildings ClassicalElfRuins AZRClassicalElfRuin05.wmo", + [2007866] = "World wmo Kalimdor Buildings ClassicalElfRuins AZRClassicalElfRuin06.wmo", + [2007867] = "World wmo Kalimdor Buildings ClassicalElfRuins AZRClassicalElfRuin07.wmo", + [2007868] = "World wmo Kalimdor Buildings ClassicalElfRuins AZRClassicalElfRuin08.wmo", + [2007869] = "World wmo Kalimdor Buildings ClassicalElfRuins AZRClassicalElfRuin09.wmo", + [2007870] = "World wmo Kalimdor Buildings ClassicalElfRuins AZRClassicalElfRuin10.wmo", + [2007871] = "World wmo Kalimdor Buildings ClassicalElfRuins AZRClassicalElfRuin11.wmo", + [2007872] = "World wmo Kalimdor Buildings ClassicalElfRuins ClassicalElfRuin01.wmo", + [2007873] = "World wmo Kalimdor Buildings ClassicalElfRuins ClassicalElfRuin02.wmo", + [2007874] = "World wmo Kalimdor Buildings ClassicalElfRuins ClassicalElfRuin03.wmo", + [2007875] = "World wmo Kalimdor Buildings ClassicalElfRuins ClassicalElfRuin04.wmo", + [2007876] = "World wmo Kalimdor Buildings ClassicalElfRuins ClassicalElfRuin05.wmo", + [2007877] = "World wmo Kalimdor Buildings ClassicalElfRuins ClassicalElfRuin06.wmo", + [2007878] = "World wmo Kalimdor Buildings ClassicalElfRuins ClassicalElfRuin07.wmo", + [2007879] = "World wmo Kalimdor Buildings ClassicalElfRuins ClassicalElfRuin08.wmo", + [2007880] = "World wmo Kalimdor Buildings ClassicalElfRuins ClassicalElfRuin10.wmo", + [2007881] = "World wmo Kalimdor Buildings ClassicalElfRuins ClassicalElfTemple.wmo", + [2007882] = "World wmo Kalimdor Buildings ClassicalElfRuins ClassicalElfTemple2.wmo", + [2007883] = "World wmo Kalimdor Buildings ClassicalElfRuins SnowClassicalElfRuin02.wmo", + [2007884] = "World wmo Kalimdor Buildings ClassicalElfRuins SnowClassicalElfRuin03.wmo", + [2007885] = "World wmo Kalimdor Buildings ClassicalElfRuins SnowClassicalElfRuin05.wmo", + [2007886] = "World wmo Kalimdor Buildings Durotar TiriGardeKeep TiriGardeKeep01.wmo", + [2007887] = "World wmo Kalimdor Buildings Durotar TiriGardeKeep TiriGardeKeep02.wmo", + [2007888] = "World wmo Kalimdor Buildings GoblinHoldingPen GoblinHoldingPen.wmo", + [2007889] = "World wmo Kalimdor Buildings GoblinHut GoblinHut.wmo", + [2007890] = "World wmo Kalimdor Buildings GoblinHut KL_Goblin_ice_observatory.wmo", + [2007891] = "World wmo Kalimdor Buildings GoblinHut KL_Goblin_igloo_A.wmo", + [2007892] = "World wmo Kalimdor Buildings GoblinHut KL_Goblin_igloo_B.wmo", + [2007893] = "World wmo Kalimdor Buildings GoblinHut KL_Goblin_igloo_C.wmo", + [2007894] = "World wmo Kalimdor Buildings GoblinHut KL_Goblin_igloo_D.wmo", + [2007895] = "World wmo Kalimdor Buildings GoblinHut KL_Tanaris_GoblinBld_A.wmo", + [2007896] = "World wmo Kalimdor Buildings GoblinHut KL_Tanaris_GoblinBld_B.wmo", + [2007897] = "World wmo Kalimdor Buildings GoblinHut KL_Tanaris_GoblinBld_C.wmo", + [2007898] = "World wmo Kalimdor Buildings GoblinHut KL_Tanaris_GoblinBld_D.wmo", + [2007899] = "World wmo Kalimdor Buildings GoblinLab GoblinLab.wmo", + [2007900] = "World wmo Kalimdor Buildings NagaPagoda NagaPagoda01.wmo", + [2007901] = "World wmo Kalimdor Buildings NightElf2Story DSNightElf2Story.wmo", + [2007902] = "World wmo Kalimdor Buildings NightElf2Story NightElf2Story.wmo", + [2007903] = "World wmo Kalimdor Buildings NightElfAbbey NightElfAbbey.wmo", + [2007904] = "World wmo Kalimdor Buildings NightElfDruidTower DSNightElfDruidTower.wmo", + [2007905] = "World wmo Kalimdor Buildings NightElfDruidTower NightElfDruidTower.wmo", + [2007906] = "World wmo Kalimdor Buildings NightElfGuardTower NightElfGuardTower.wmo", + [2007907] = "World wmo Kalimdor Buildings NightElfGuardTower NightElfGuardTower_B.wmo", + [2007908] = "World wmo Kalimdor Buildings NightElfGuardTower NightElfPVPGuardTower.wmo", + [2007909] = "World wmo Kalimdor Buildings NightElfHuntersLodge DSNightElfHuntersLodge.wmo", + [2007910] = "World wmo Kalimdor Buildings NightElfHuntersLodge NightElfHuntersLodge.wmo", + [2007911] = "World wmo Kalimdor Buildings NightElfInn DSNightElfInn.wmo", + [2007912] = "World wmo Kalimdor Buildings NightElfInn NightElfInn.wmo", + [2007913] = "World wmo Kalimdor Buildings NightElfMoonWell DSNightElfMoonWell.wmo", + [2007914] = "World wmo Kalimdor Buildings NightElfMoonWell DSNightElfMoonWellOrnate.wmo", + [2007915] = "World wmo Kalimdor Buildings NightElfMoonWell GiantMoonwell.wmo", + [2007916] = "World wmo Kalimdor Buildings NightElfMoonWell NightElfMoonWell.wmo", + [2007917] = "World wmo Kalimdor Buildings NightElfMoonWell NightElfMoonWellOrnate.wmo", + [2007918] = "World wmo Kalimdor Buildings NightElfOutpost NightElfOutpost.wmo", + [2007919] = "World wmo Kalimdor Buildings NightElfOutpost NightElfOutpost_B.wmo", + [2007920] = "World wmo Kalimdor Buildings NightElfSmallHouse DSNightElfSmallHouse.wmo", + [2007921] = "World wmo Kalimdor Buildings NightElfSmallHouse NightElfSmallHouse.wmo", + [2007922] = "World wmo Kalimdor Buildings NightElfSouthGate southGate.wmo", + [2007923] = "World wmo Kalimdor Buildings OrcBarracks AbandonedOrcBarracks.wmo", + [2007924] = "World wmo Kalimdor Buildings OrcBarracks BlackrockOrcBarracks.wmo", + [2007925] = "World wmo Kalimdor Buildings OrcBarracks OrcBarracks.wmo", + [2007926] = "World wmo Kalimdor Buildings OrcBarracks SwampOrcBarracks.wmo", + [2007927] = "World wmo Kalimdor Buildings OrcBlacksmith AbandonedOrcBlacksmith.wmo", + [2007928] = "World wmo Kalimdor Buildings OrcBlacksmith BlackrockOrcBlacksmith.wmo", + [2007929] = "World wmo Kalimdor Buildings OrcBlacksmith SwampOrcBlacksmith.wmo", + [2007930] = "World wmo Kalimdor Buildings OrcBlacksmith orcblacksmith.wmo", + [2007931] = "World wmo Kalimdor Buildings OrcFortress BlackrockOrcFortress.wmo", + [2007932] = "World wmo Kalimdor Buildings OrcFortress OrcFortress.wmo", + [2007933] = "World wmo Kalimdor Buildings OrcFortress SwampOrcFortress.wmo", + [2007934] = "World wmo Kalimdor Buildings OrcGreatHall AbandonedOrcGreatHall.wmo", + [2007935] = "World wmo Kalimdor Buildings OrcGreatHall BlackrockOrcGreatHall.wmo", + [2007936] = "World wmo Kalimdor Buildings OrcGreatHall OrcGreatHall.wmo", + [2007937] = "World wmo Kalimdor Buildings OrcGreatHall SwampOrcGreatHall.wmo", + [2007938] = "World wmo Kalimdor Buildings OrcHut BlackrockOrcHut.wmo", + [2007939] = "World wmo Kalimdor Buildings OrcHut OrcHut.wmo", + [2007940] = "World wmo Kalimdor Buildings OrcInn OrcInn.wmo", + [2007941] = "World wmo Kalimdor Buildings OrcKennel AbandonedOrcKennel.wmo", + [2007942] = "World wmo Kalimdor Buildings OrcKennel BlackrockOrcKennel.wmo", + [2007943] = "World wmo Kalimdor Buildings OrcKennel OrcKennel.wmo", + [2007944] = "World wmo Kalimdor Buildings OrcKennel SwampOrcKennel.wmo", + [2007945] = "World wmo Kalimdor Buildings OrcMageTower BlackrockOrcMageTower.wmo", + [2007946] = "World wmo Kalimdor Buildings OrcMageTower OrcMageTower.wmo", + [2007947] = "World wmo Kalimdor Buildings OrcMageTower SwampOrcMageTower.wmo", + [2007948] = "World wmo Kalimdor Buildings OrcMageTower abandonedOrcMageTower.wmo", + [2007949] = "World wmo Kalimdor Buildings OrcMedium AbandonedOrcMedium.wmo", + [2007950] = "World wmo Kalimdor Buildings OrcMedium BlackrockOrcMedium.wmo", + [2007951] = "World wmo Kalimdor Buildings OrcMedium OrcMedium.wmo", + [2007952] = "World wmo Kalimdor Buildings OrcMedium SwampOrcMedium.wmo", + [2007953] = "World wmo Kalimdor Buildings OrcTower AbandonedOrcTower.wmo", + [2007954] = "World wmo Kalimdor Buildings OrcTower BlackrockOrcTower.wmo", + [2007955] = "World wmo Kalimdor Buildings OrcTower OrcTower.wmo", + [2007956] = "World wmo Kalimdor Buildings OrcTower SwampOrcTower.wmo", + [2007957] = "World wmo Kalimdor Buildings OrcTwoStory BlackrockOrcTwoStory.wmo", + [2007958] = "World wmo Kalimdor Buildings OrcTwoStory OrcTwoStory.wmo", + [2007959] = "World wmo Kalimdor Buildings OrcZeppelinHouse OrcZeppelinHouse.wmo", + [2007960] = "World wmo Kalimdor Buildings Quillboar Bighouse.wmo", + [2007961] = "World wmo Kalimdor Buildings Quillboar Hut.wmo", + [2007962] = "World wmo Kalimdor Buildings Quillboar Ladder.wmo", + [2007963] = "World wmo Kalimdor Buildings Quillboar Wallhut.wmo", + [2007964] = "World wmo Kalimdor Buildings Quillboar Wallhut2.wmo", + [2007965] = "World wmo Kalimdor Buildings TanarisRuins TanarisRuins01.wmo", + [2007966] = "World wmo Kalimdor Buildings TanarisRuins TanarisRuins02.wmo", + [2007967] = "World wmo Kalimdor Buildings TanarisRuins TanarisRuins03.wmo", + [2007968] = "World wmo Kalimdor Buildings TanarisRuins TanarisRuins04.wmo", + [2007969] = "World wmo Kalimdor Buildings TanarisRuins TanarisRuins05.wmo", + [2007970] = "World wmo Kalimdor Buildings TanarisRuins TanarisRuins06.wmo", + [2007971] = "World wmo Kalimdor Buildings TanarisRuins TanarisRuins07.wmo", + [2007972] = "World wmo Kalimdor Buildings TanarisRuins TanarisRuins09.wmo", + [2007973] = "World wmo Kalimdor Buildings TanarisRuins TanarisRuins11.wmo", + [2007974] = "World wmo Kalimdor Buildings TanarisRuins TanarisRuins12.wmo", + [2007975] = "World wmo Kalimdor Buildings TanarisRuins TanarisRuins13.wmo", + [2007976] = "World wmo Kalimdor Buildings TanarisRuins TanarisRuins14.wmo", + [2007977] = "World wmo Kalimdor Buildings TanarisRuins TanarisRuins15.wmo", + [2007978] = "World wmo Kalimdor Buildings TanarisShipYard TanarisShipYard.wmo", + [2007979] = "World wmo Kalimdor Buildings TaurenDruidTent TaurenDruidTent.wmo", + [2007980] = "World wmo Kalimdor Buildings TaurenHunterTent TaurenHunterTent.wmo", + [2007981] = "World wmo Kalimdor Buildings TaurenHuts RuinedTaurenChickenHut.wmo", + [2007982] = "World wmo Kalimdor Buildings TaurenHuts RuinedTaurenHutB.wmo", + [2007983] = "World wmo Kalimdor Buildings TaurenHuts RuinedTaurenTallHut.wmo", + [2007984] = "World wmo Kalimdor Buildings TaurenHuts RuinedTaurenTepee.wmo", + [2007985] = "World wmo Kalimdor Buildings TaurenHuts TaurenChickenHut.wmo", + [2007986] = "World wmo Kalimdor Buildings TaurenHuts TaurenHutA.wmo", + [2007987] = "World wmo Kalimdor Buildings TaurenHuts TaurenHutB.wmo", + [2007988] = "World wmo Kalimdor Buildings TaurenHuts TaurenHutBig.wmo", + [2007989] = "World wmo Kalimdor Buildings TaurenHuts TaurenHutC.wmo", + [2007990] = "World wmo Kalimdor Buildings TaurenHuts TaurenHutD.wmo", + [2007991] = "World wmo Kalimdor Buildings TaurenHuts TaurenTallHut.wmo", + [2007992] = "World wmo Kalimdor Buildings TaurenHuts TaurenTepee.wmo", + [2007993] = "World wmo Kalimdor Buildings TaurenLonghouse TaurenLonghouse.wmo", + [2007994] = "World wmo Kalimdor Buildings TaurenShamanTent TaurenShamanTent.wmo", + [2007995] = "World wmo Kalimdor Buildings TrollBridge Trollbridge.wmo", + [2007996] = "World wmo Kalimdor Buildings TrollBurrow AbandonedTrollBurrow.wmo", + [2007997] = "World wmo Kalimdor Buildings TrollBurrow BlackrockTrollBurrow.wmo", + [2007998] = "World wmo Kalimdor Buildings TrollBurrow SwampTrollBurrow.wmo", + [2007999] = "World wmo Kalimdor Buildings TrollBurrow TrollBurrow.wmo", + [2008000] = "World wmo Kalimdor Buildings TrollHotel troll_hotel01.wmo", + [2008001] = "World wmo Kalimdor Buildings TrollHotel troll_hotel_burn01.wmo", + [2008002] = "World wmo Kalimdor Buildings TrollShop trollshop01.wmo", + [2008003] = "World wmo Kalimdor Buildings TrollShoppingMall trollshoppingmall01.wmo", + [2008004] = "World wmo Kalimdor Buildings Trollhut TrollHut_DesertSmall.wmo", + [2008005] = "World wmo Kalimdor Buildings Trollhut Trollhut_Desert.wmo", + [2008006] = "World wmo Kalimdor Buildings Trollhut trollhut01.wmo", + [2008007] = "World wmo Kalimdor Buildings Trollhut trollhutSmall01.wmo", + [2008008] = "World wmo Kalimdor Buildings Trollhut trollhut_burn01.wmo", + [2008009] = "World wmo Kalimdor Buildings Trollhut trolltent.wmo", + [2008010] = "World wmo Kalimdor Buildings WyvernNest WyvernNest.wmo", + [2008011] = "World wmo Kalimdor CollidableDoodads Barrens ExcavationPlatform ExcavationPlatform.wmo", + [2008012] = "World wmo Kalimdor CollidableDoodads Darkshore AuberdineDocks AuberdineDock.wmo", + [2008013] = "World wmo Kalimdor CollidableDoodads Darkshore Bridge DarkshoreBridge Brian DarkshoreBridge01.wmo", + [2008014] = "World wmo Kalimdor CollidableDoodads Darkshore Bridge DarkshoreBridge Brian DarkshoreBridge02.wmo", + [2008015] = "World wmo Kalimdor CollidableDoodads Darkshore Bridge DarkshoreBridge Brian DarkshoreBridge03.wmo", + [2008016] = "World wmo Kalimdor CollidableDoodads Darkshore Bridge DarkshoreBridge Brian DarkshoreBridge04.wmo", + [2008017] = "World wmo Kalimdor CollidableDoodads Darkshore DarkshoreDocks DarkshoreDocks01.wmo", + [2008018] = "World wmo Kalimdor CollidableDoodads Darkshore DarkshoreDocks DarkshoreDocks02.wmo", + [2008019] = "World wmo Kalimdor CollidableDoodads Darkshore DarkshoreDocks DarkshoreDocks03.wmo", + [2008020] = "World wmo Kalimdor CollidableDoodads Darkshore DarkshoreDocks DarkshoreDocksAberdeen.wmo", + [2008021] = "World wmo Kalimdor CollidableDoodads Darkshore DarkshoreDocks DarkshoreDocksCurve.wmo", + [2008022] = "World wmo Kalimdor CollidableDoodads Darkshore DarkshoreExcavation DSExcavationPlatform.wmo", + [2008023] = "World wmo Kalimdor CollidableDoodads Darkshore DarkshoreExcavation DSExcavationRailin.wmo", + [2008024] = "World wmo Kalimdor CollidableDoodads Darkshore GiantSeaTurtle01 GiantSeaTurtle01.wmo", + [2008025] = "World wmo Kalimdor CollidableDoodads Darkshore GiantSeaTurtle02 GiantSeaTurtle02.wmo", + [2008026] = "World wmo Kalimdor CollidableDoodads Darkshore SnakeSpine SnakeSpineGiantArch.wmo", + [2008027] = "World wmo Kalimdor CollidableDoodads Darkshore WreckedElvenDestroyer ElvenDestroyerWreckBack.wmo", + [2008028] = "World wmo Kalimdor CollidableDoodads Darkshore WreckedElvenDestroyer ElvenDestroyerWreckFront.wmo", + [2008029] = "World wmo Kalimdor CollidableDoodads Desolace CentaurHorn.wmo", + [2008030] = "World wmo Kalimdor CollidableDoodads Durotar DurotarBridge DurotarBridge01.wmo", + [2008031] = "World wmo Kalimdor CollidableDoodads Durotar Rocks DurotarRootedRock03.wmo", + [2008032] = "World wmo Kalimdor CollidableDoodads Durotar StoneGate DurotarGate.wmo", + [2008033] = "World wmo Kalimdor CollidableDoodads DustwallowMarsh CrashedZippelin Final CrashedZippelin.wmo", + [2008034] = "World wmo Kalimdor CollidableDoodads DustwallowMarsh DustWallowFootbridge DustWallowFootbridge.wmo", + [2008035] = "World wmo Kalimdor CollidableDoodads DustwallowMarsh TheramoreDocks TheramoreDocks.wmo", + [2008036] = "World wmo Kalimdor CollidableDoodads Feralas FeathermoonDock feathermoon_dock.wmo", + [2008037] = "World wmo Kalimdor CollidableDoodads Feralas FeralasStoneBridge FeralasStoneBridge01.wmo", + [2008038] = "World wmo Kalimdor CollidableDoodads Hyjal HyjalDemon HyjalDemon01.wmo", + [2008039] = "World wmo Kalimdor CollidableDoodads Hyjal WorldTreeRoots WorldTreeRoots01.wmo", + [2008040] = "World wmo Kalimdor CollidableDoodads Hyjal WorldTreeRoots WorldTreeRoots02.wmo", + [2008041] = "World wmo Kalimdor CollidableDoodads Hyjal WorldTreeRoots WorldTreeRoots03.wmo", + [2008042] = "World wmo Kalimdor CollidableDoodads Kalidar KalidarBridge KalidarBridge01.wmo", + [2008043] = "World wmo Kalimdor CollidableDoodads Kalidar KalidarDock KalidarDock01.wmo", + [2008044] = "World wmo Kalimdor CollidableDoodads Kalidar KalidarTreeBranch KalidarTreeBranch.wmo", + [2008045] = "World wmo Kalimdor CollidableDoodads Moonglade Bridge MoongladeBridge.wmo", + [2008046] = "World wmo Kalimdor CollidableDoodads Mulgore CentaurTents CentaurTent02.wmo", + [2008047] = "World wmo Kalimdor CollidableDoodads Mulgore CentaurTents CentaurTent03.wmo", + [2008048] = "World wmo Kalimdor CollidableDoodads Mulgore CentaurTents CentaurTentCommand.wmo", + [2008049] = "World wmo Kalimdor CollidableDoodads Mulgore CrossroadsBridge Crossroadsbridge.wmo", + [2008050] = "World wmo Kalimdor CollidableDoodads Mulgore TaurenBridge01 TaurenBridge01.wmo", + [2008051] = "World wmo Kalimdor CollidableDoodads Mulgore TaurenTent01 TaurenTent01.wmo", + [2008052] = "World wmo Kalimdor CollidableDoodads Orcbridge Orcbridge.wmo", + [2008053] = "World wmo Kalimdor CollidableDoodads Silithus NightElf2StorySilithus.wmo", + [2008054] = "World wmo Kalimdor CollidableDoodads Silithus NightElfMoonWellDefiled.wmo", + [2008055] = "World wmo Kalimdor CollidableDoodads Silithus NightElfOutpost_silithus.wmo", + [2008056] = "World wmo Kalimdor CollidableDoodads Silithus QuirajTower01.wmo", + [2008057] = "World wmo Kalimdor CollidableDoodads Silithus QuirajTower02.wmo", + [2008058] = "World wmo Kalimdor CollidableDoodads Silithus QuirajTower03.wmo", + [2008059] = "World wmo Kalimdor CollidableDoodads Silithus QuirajTowerBase.wmo", + [2008060] = "World wmo Kalimdor CollidableDoodads Silithus elventowerSilithus01.wmo", + [2008061] = "World wmo Kalimdor CollidableDoodads Silithus masterhive.wmo", + [2008062] = "World wmo Kalimdor CollidableDoodads Stonetalon LandingPad LandingPad01.wmo", + [2008063] = "World wmo Kalimdor CollidableDoodads Stonetalon LoggingPlatform Loggingplatform.wmo", + [2008064] = "World wmo Kalimdor CollidableDoodads Stonetalon MonsterMachine MonsterLogMachine_01.wmo", + [2008065] = "World wmo Kalimdor CollidableDoodads Stonetalon StonetalonWheelPlatform StonetalonWheelPlatform.wmo", + [2008066] = "World wmo Kalimdor CollidableDoodads Tanaris GadgetzanWall GadgetzanWall.wmo", + [2008067] = "World wmo Kalimdor CollidableDoodads Tanaris GoblinGates TanarisGoblinWallGate01.wmo", + [2008068] = "World wmo Kalimdor CollidableDoodads Tanaris GoblinGates TanarisGoblinWallGateBig.wmo", + [2008069] = "World wmo Kalimdor CollidableDoodads Tanaris TrollTent TrollTentDesert01.wmo", + [2008070] = "World wmo Kalimdor CollidableDoodads Tanaris TrollTent TrollTentSand01.wmo", + [2008071] = "World wmo Kalimdor CollidableDoodads Teldrassil Dock TeldrassilPortDock.wmo", + [2008072] = "World wmo Kalimdor CollidableDoodads ThousandNeedles BleachedElvenDestroyer BleachedElvenDestroyer.w", + [2008073] = "World wmo Kalimdor CollidableDoodads ThousandNeedles Bridge 1000NeedlesBridge.wmo", + [2008074] = "World wmo Kalimdor CollidableDoodads Winterspring Bridges WinterspringRockBridge.wmo", + [2008075] = "World wmo Kalimdor CollidableDoodads Winterspring EverlookWall EverlookWall.wmo", + [2008076] = "World wmo Kalimdor CollidableDoodads Winterspring FrostSabreRock WinterSpringFrostSaberRock.wmo", + [2008077] = "World wmo Kalimdor Darnassis Darnassis.wmo", + [2008078] = "World wmo Kalimdor Desolace DesolaceBridge DesolaceBridge01.wmo", + [2008079] = "World wmo Kalimdor Desolace RockBrodge DesolaceRockBridge.wmo", + [2008080] = "World wmo Kalimdor Draenei_Abbey Draenei_Abbey_Piece01.wmo", + [2008081] = "World wmo Kalimdor Draenei_Abbey Draenei_Abbey_Piece04.wmo", + [2008082] = "World wmo Kalimdor Draenei_Engineeringbay Draenei_Engineeringbay.wmo", + [2008083] = "World wmo Kalimdor Ogrimmar KL_PvPBarracks.wmo", + [2008084] = "World wmo Kalimdor Ogrimmar Ogrimmar.wmo", + [2008085] = "World wmo Kalimdor PVP CollidableDoodads Walls OrcGatePvP.wmo", + [2008086] = "World wmo Kalimdor ThunderBluff DruidMesaA.wmo", + [2008087] = "World wmo Kalimdor ThunderBluff DruidMesaB.wmo", + [2008088] = "World wmo Kalimdor ThunderBluff GiantTotem.wmo", + [2008089] = "World wmo Kalimdor ThunderBluff LowerMesaA.wmo", + [2008090] = "World wmo Kalimdor ThunderBluff LowerMesaB.wmo", + [2008091] = "World wmo Kalimdor ThunderBluff LowerMesaC.wmo", + [2008092] = "World wmo Kalimdor ThunderBluff LowerMesaD.wmo", + [2008093] = "World wmo Kalimdor ThunderBluff LowerMesaE.wmo", + [2008094] = "World wmo Kalimdor ThunderBluff LowerMesaF.wmo", + [2008095] = "World wmo Kalimdor ThunderBluff MidMesaA.wmo", + [2008096] = "World wmo Kalimdor ThunderBluff MidMesaB.wmo", + [2008097] = "World wmo Kalimdor ThunderBluff MidMesaC.wmo", + [2008098] = "World wmo Kalimdor ThunderBluff MidMesaD.wmo", + [2008099] = "World wmo Kalimdor ThunderBluff ShamanMesa.wmo", + [2008100] = "World wmo Kalimdor ThunderBluff UndeadCave.wmo", + [2008101] = "World wmo Kalimdor ThunderBluff UpperMesaA.wmo", + [2008102] = "World wmo Kalimdor ThunderBluff UpperMesaB.wmo", + [2008103] = "World wmo Kalimdor ThunderBluff UpperMesaC.wmo", + [2008104] = "World wmo Kalimdor ThunderBluff UpperMesaD.wmo", + [2008105] = "World wmo Kalimdor ThunderBluff UpperMesaE.wmo", + [2008106] = "World wmo Kalimdor ThunderBluff WarriorMesaA.wmo", + [2008107] = "World wmo Kalimdor ThunderBluff WarriorMesaB.wmo", + [2008108] = "World wmo Kalimdor Winterspring MD_WinterspringCave01.wmo", + [2008109] = "World wmo KhazModan Buildings Anvilmar AnvilMar.wmo", + [2008110] = "World wmo KhazModan Buildings Dwarven_Barracks snow_barracks snow_dwarfbarracks.wmo", + [2008111] = "World wmo KhazModan Buildings Dwarven_Barracks wetlands_barracks wet_dwarfbarracks.wmo", + [2008112] = "World wmo KhazModan Buildings Dwarven_Blacksmith Snow_Blacksmith snow_blacksmith.wmo", + [2008113] = "World wmo KhazModan Buildings Dwarven_GriffonAviary Dwarven_GriffonAviary.wmo", + [2008114] = "World wmo KhazModan Buildings Dwarven_GuardTower Dwarven_GuardTower.wmo", + [2008115] = "World wmo KhazModan Buildings Dwarven_SnowStable Dwarven_SnowStable.wmo", + [2008116] = "World wmo KhazModan Buildings Dwarven_SnowTower Dwarven_PVPSnowTower.wmo", + [2008117] = "World wmo KhazModan Buildings Dwarven_SnowTower Dwarven_SnowTower.wmo", + [2008118] = "World wmo KhazModan Buildings Dwarven_Stable Dwarven_Stable.wmo", + [2008119] = "World wmo KhazModan Buildings Dwarven_Tavern snow_tavern Snow_Tavern.wmo", + [2008120] = "World wmo KhazModan Buildings Dwarven_Tavern wetlands_tavern wet_Tavern.wmo", + [2008121] = "World wmo KhazModan Buildings GreatWall GreatWall_Gate.wmo", + [2008122] = "World wmo KhazModan Buildings GreatWall GreatWall_tower_01.wmo", + [2008123] = "World wmo KhazModan Buildings GreatWall GreatWall_tower_02.wmo", + [2008124] = "World wmo KhazModan Buildings GreatWall GreatWall_wall_01.wmo", + [2008125] = "World wmo KhazModan Buildings GreatWall GreatWall_wall_02.wmo", + [2008126] = "World wmo KhazModan Buildings GreatWall GreatWall_wall_03.wmo", + [2008127] = "World wmo KhazModan Buildings GreatWall GreatWall_wall_04.wmo", + [2008128] = "World wmo KhazModan Buildings SearingGorge DarkIronCrane.wmo", + [2008129] = "World wmo KhazModan Buildings SearingGorge DarkIronTower.wmo", + [2008130] = "World wmo KhazModan Buildings ThandolSpan_Bridge ThandolSpan.wmo", + [2008131] = "World wmo KhazModan Buildings Wetlands_GrimBatol Wetlands_GrimBatol.wmo", + [2008132] = "World wmo KhazModan Buildings dwarven_1story_hovel mud_hovel mud_hovel.wmo", + [2008133] = "World wmo KhazModan Buildings dwarven_1story_hovel snow_hovel hovel_machine.wmo", + [2008134] = "World wmo KhazModan Buildings dwarven_1story_hovel snow_hovel snow_hovel.wmo", + [2008135] = "World wmo KhazModan Buildings dwarven_2story_hovel mud_2story mud_2story.wmo", + [2008136] = "World wmo KhazModan Buildings dwarven_2story_hovel snow_2story snow_2story.wmo", + [2008137] = "World wmo KhazModan Cities Ironforge ironforge.wmo", + [2008138] = "World wmo KhazModan Collidable Doodads GolBolarPlatform GolBolarPlatform.wmo", + [2008139] = "World wmo KhazModan Collidable Doodads LochModan DwarvenDam DwarvenDam01.wmo", + [2008140] = "World wmo KhazModan Collidable Doodads LochModan DwarvenDock DwarvenDock01.wmo", + [2008141] = "World wmo KhazModan Collidable Doodads LochModan DwarvenSentinels DwarvenSentinel01.wmo", + [2008142] = "World wmo KhazModan Collidable Doodads LochModan DwarvenSentinels DwarvenSentinel02.wmo", + [2008143] = "World wmo KhazModan Collidable Doodads LochModan ExcavationSite ExcavationPlatform01.wmo", + [2008144] = "World wmo KhazModan Collidable Doodads LochModan ExcavationSite ExcavationPlatform02.wmo", + [2008145] = "World wmo KhazModan Collidable Doodads LochModan ExcavationSite ExcavationPlatform03.wmo", + [2008146] = "World wmo KhazModan Collidable Doodads LochModan NetherguardWall NetherguardWall.wmo", + [2008147] = "World wmo KhazModan Collidable Doodads SearingGorge SearingGorgeScaffold SearingGorgeScaffold.wmo", + [2008148] = "World wmo KhazModan CollidableDoodads MenethilDocks MenethilDocks.wmo", + [2008149] = "World wmo KhazModan CollidableDoodads WetlandsFootbridge WetlandsFootbridge01.wmo", + [2008150] = "World wmo Lorderon Buildings Alterac GreenHouse01.wmo", + [2008151] = "World wmo Lorderon Buildings EasternPlaguelands Cathedral Cathedral.wmo", + [2008152] = "World wmo Lorderon Buildings EasternPlaguelands NaxPortal epl_portal.wmo", + [2008153] = "World wmo Lorderon Buildings EasternPlaguelands UndeadSlaughterhouse SlaughterHouse.wmo", + [2008154] = "World wmo Lorderon Buildings EasternPlaguelands UndeadZiggurat UndeadZiggurat.wmo", + [2008155] = "World wmo Lorderon Buildings Ghostlands Dock Ghostlands_Dock01.wmo", + [2008156] = "World wmo Lorderon Buildings Ghostlands Fountain GhostlandsFountian.wmo", + [2008157] = "World wmo Lorderon Buildings Silvermoon BloodElf_Dock BE_Dock01.wmo", + [2008158] = "World wmo Lorderon Buildings Silvermoon BloodElf_Gate BloodElf_Gate01.wmo", + [2008159] = "World wmo Lorderon Buildings Silvermoon BloodElf_Platform BE_platform_01.wmo", + [2008160] = "World wmo Lorderon Buildings Silvermoon BloodElf_Platform BE_platform_02.wmo", + [2008161] = "World wmo Lorderon Buildings Silvermoon BloodElf_Platform BE_platform_03.wmo", + [2008162] = "World wmo Lorderon Buildings TirisfalGlade FenrisKeep FenrisKeep.wmo", + [2008163] = "World wmo Lorderon Buildings TirisfalGlade LorderonZeppelinTower LorderonZeppelin.wmo", + [2008164] = "World wmo Lorderon Buildings TirisfalGlade Mausoleum MausoleumActive.wmo", + [2008165] = "World wmo Lorderon Buildings TirisfalGlade UtherShrine UtherShrine.wmo", + [2008166] = "World wmo Lorderon Buildings Wetlands BridgeBigWhite BridgeBigWhite.wmo", + [2008167] = "World wmo Lorderon Buildings ZulAman FTroll_Ruins FTroll_Ruins_Stairs01.wmo", + [2008168] = "World wmo Lorderon Buildings ZulAman ZulAman_Enterance Zulamon_Enterance.wmo", + [2008169] = "World wmo Lorderon Buildings ZulAman ZulAman_Pieces Zulaman_Pillar_A.wmo", + [2008170] = "World wmo Lorderon Buildings ZulAman ZulAman_Pieces Zulaman_Pillar_A_Broken.wmo", + [2008171] = "World wmo Lorderon Buildings ZulAman ZulAman_Pieces Zulaman_Pillar_B.wmo", + [2008172] = "World wmo Lorderon Buildings ZulAman ZulAman_Pieces Zulaman_Pillar_B_Broken.wmo", + [2008173] = "World wmo Lorderon Buildings ZulAman ZulAman_Pieces Zulaman_Wall_A_Double.wmo", + [2008174] = "World wmo Lorderon CollidableDoodads ArathiHighlands Bridge ArathiStoneBridge01.wmo", + [2008175] = "World wmo Lorderon CollidableDoodads ArathiHighlands Bridge ArathiStoneBridge02.wmo", + [2008176] = "World wmo Lorderon CollidableDoodads ArathiHighlands Bridge ArathiStoneBridge03.wmo", + [2008177] = "World wmo Lorderon CollidableDoodads ArathiHighlands DurnholdeDestroyedWalls DurnholdeDestroyedWall.", + [2008178] = "World wmo Lorderon CollidableDoodads ArathiHighlands Durnholde DurnholdeInnerWall.wmo", + [2008179] = "World wmo Lorderon CollidableDoodads ArathiHighlands HumanRuinedBuildings ChimneyTop.wmo", + [2008180] = "World wmo Lorderon CollidableDoodads ArathiHighlands HumanRuinedBuildings HuRuinedBuilding_Collapsed", + [2008181] = "World wmo Lorderon CollidableDoodads ArathiHighlands HumanRuinedBuildings HuRuinedBuildingsBig01.wmo", + [2008182] = "World wmo Lorderon CollidableDoodads ArathiHighlands HumanRuinedBuildings HuRuinedBuildingsBig02.wmo", + [2008183] = "World wmo Lorderon CollidableDoodads ArathiHighlands HumanRuinedBuildings HuRuinedBuildingsBig03.wmo", + [2008184] = "World wmo Lorderon CollidableDoodads ArathiHighlands HumanRuinedBuildings HuRuinedBuildingsMed01.wmo", + [2008185] = "World wmo Lorderon CollidableDoodads ArathiHighlands HumanRuinedBuildings HuRuinedBuildingsMed02.wmo", + [2008186] = "World wmo Lorderon CollidableDoodads ArathiHighlands HumanRuinedBuildings HuRuinedBuildingsSm01_Wine", + [2008187] = "World wmo Lorderon CollidableDoodads ArathiHighlands HumanRuinedBuildings HuRuinedBuildingsSmall01.w", + [2008188] = "World wmo Lorderon CollidableDoodads ArathiHighlands HumanRuinedBuildings HuRuinedBuildingsSmall02.w", + [2008189] = "World wmo Lorderon CollidableDoodads ArathiHighlands Stromguard Stromguard.wmo", + [2008190] = "World wmo Lorderon CollidableDoodads ArathiHighlands WreckedBuildingHCorner01 WreckedBuildingHCorner", + [2008191] = "World wmo Lorderon CollidableDoodads ArathiHighlands WreckedBuildingHCorner02 WreckedBuildingHCorner", + [2008192] = "World wmo Lorderon CollidableDoodads EasternPlaguelands PlagueBlockade PlagueBlockade.wmo", + [2008193] = "World wmo Lorderon CollidableDoodads Hinterlands TrollCityPieces AerieTrollCityAmpatheater.wmo", + [2008194] = "World wmo Lorderon CollidableDoodads Hinterlands TrollCityPieces AerieTrollCityArena.wmo", + [2008195] = "World wmo Lorderon CollidableDoodads Hinterlands TrollCityPieces AerieTrollCityLevel1.wmo", + [2008196] = "World wmo Lorderon CollidableDoodads Hinterlands TrollCityPieces AerieTrollCityLevel2.wmo", + [2008197] = "World wmo Lorderon CollidableDoodads Hinterlands TrollCityPieces AerieTrollCityLevel3.wmo", + [2008198] = "World wmo Lorderon CollidableDoodads Hinterlands TrollCityPieces AerieTrollCityLevel4.wmo", + [2008199] = "World wmo Lorderon CollidableDoodads Hinterlands TrollCityPieces AerieTrollCityLevel5.wmo", + [2008200] = "World wmo Lorderon CollidableDoodads Hinterlands TrollCityPieces AerieTrollCityLevel6.wmo", + [2008201] = "World wmo Lorderon CollidableDoodads Hinterlands TrollCityPieces AerieTrollCityLevel7.wmo", + [2008202] = "World wmo Lorderon CollidableDoodads PlagueLandBridge PlaguelandsBridge.wmo", + [2008203] = "World wmo Lorderon Undercity Undercity.wmo", + [2008204] = "World wmo Lorderon Undercity Undercitywall01.wmo", + [2008205] = "World wmo Outland AncOrcBuildings AncOrcFarm_D.wmo", + [2008206] = "World wmo Outland AncOrcBuildings AncOrcHutSmall_D.wmo", + [2008207] = "World wmo Outland AncOrcBuildings AncOrcLumberMill_D.wmo", + [2008208] = "World wmo Outland DarkPortal DarkPortal.wmo", + [2008209] = "World wmo Outland DarkPortal DarkPortalAnim01.mdx", + [2008210] = "World wmo Outland DraeniBuildings Draenei_bridge01.wmo", + [2008211] = "World wmo Outland DraeniBuildings draeniHutHooded01.wmo", + [2008212] = "World wmo Outland DraeniBuildings draeniTower01.wmo", + [2008213] = "World wmo Outland HumanBuildings RuinedHumanGuardTower02.wmo", + [2008214] = "World wmo Outland HumanBuildings outlandRuinedMageTower.wmo", + [2008215] = "World wmo Outland HumanBuildings outlandhumantower02.wmo", + [2008216] = "World wmo Outland HumanBuildings outlandhumantower03.wmo", + [2008217] = "World wmo Outland HumanBuildings outlandhumantower04.wmo", + [2008218] = "World wmo Outland HumanBuildings outlandruinhumanbarracks01.wmo", + [2008219] = "World wmo Outland HumanTank humantank01.wmo", + [2008220] = "World wmo Outland HumanTank humantank02.wmo", + [2008221] = "World wmo Outland HumanTank humantank03.wmo", + [2008222] = "World wmo Outland OrcBuildings outlandorcbarracks01.wmo", + [2008223] = "World wmo Outland OrcBuildings outlandorcfortressruin01.wmo", + [2008224] = "World wmo Outland OrcBuildings outlandorcpigfarm01.wmo", + [2008225] = "World wmo Outland OrcBuildings outlandorctower01.wmo", + [2008226] = "World wmo Outland OrcBuildings outlandorctower02.wmo", + [2008227] = "World wmo Outland OrcBuildings outlandorctower03.wmo", + [2008228] = "World wmo Outland OrcBuildings outlandorctower04.wmo", + [2008229] = "World wmo Outland OrcBuildings outlandorctower05.wmo", + [2008230] = "World wmo Outland OrcBuildings outlandpigfarmruin02.wmo", + [2008231] = "World wmo Outland bladesedge bridge BladesEdgeRockbridge02.wmo", + [2008232] = "World wmo PlayerHousing Human HumanLevelOneTest.wmo", + [2008233] = "World wmo PlayerHousing Human HumanLevelThreeTest.wmo", + [2008234] = "World wmo PvP Alterac Walls AlteracValleyHordeWallsLower.wmo", + [2008235] = "World wmo PvP Alterac Walls AlteracValleyHordeWallsUpper.wmo", + [2008236] = "World wmo PvP Buildings AncientOrcArena ancorc_PVPstadium.wmo", + [2008237] = "World wmo PvP Buildings AncientOrcArena ancorc_PVPstadium_Inst.wmo", + [2008238] = "World wmo PvP Buildings CTF CTFNightelf_A.wmo", + [2008239] = "World wmo PvP Buildings CTF CTFOrc_A.wmo", + [2008240] = "World wmo PvP Buildings CTF CTFOrc_Aclifftower.wmo", + [2008241] = "World wmo PvP Buildings CTF CTFhuman.wmo", + [2008242] = "World wmo PvP Buildings CTF PVPEntrance_Nightelf.wmo", + [2008243] = "World wmo PvP Buildings Dalaran dalaran_sewer_arena.wmo", + [2008244] = "World wmo PvP Buildings DwarfStronghold DwarfStronghold.wmo", + [2008245] = "World wmo PvP Buildings Lordaeron PVP_Lordaeron_Arena.wmo", + [2008246] = "World wmo PvP Buildings OrcBarracksPvP AlteracGeneralOrcFortress.wmo", + [2008247] = "World wmo PvP Buildings OrcBarracksPvP OrcBarracksPvP.wmo", + [2008248] = "World wmo PvP Buildings OrcTower PvP_DarkOrcTower.wmo", + [2008249] = "World wmo PvP Buildings OrcTower PvP_OrcTower.wmo", + [2008250] = "World wmo PvP Buildings Orgrimmar OrgrimmarArena.wmo", + [2008251] = "World wmo PvP Buildings TaurenGate PvP_TaurenGate01.wmo", + [2008252] = "World wmo PvP Fence ArathiAllianceFence.wmo", + [2008253] = "World wmo PvP Fence ArathiHordeFence.wmo", + [2008254] = "World wmo cameron.wmo", + [2008255] = "World wmo elevators ThousandNeedlesElevator ThousandNeedlesElevator.wmo", + [2008256] = "World wmo landfeatures Nagrand cliff01.wmo", + [2008257] = "World wmo landfeatures Nagrand cliff02.wmo", + [2008258] = "World wmo landfeatures Nagrand cliff03.wmo", + [2008259] = "World wmo transports BlackCitadel BlackCitadel.wmo", + [2008260] = "World wmo transports Crashed_zeppelin CrashedTransport_Horde_Zeppelin.wmo", + [2008261] = "World wmo transports WMO_elevators org_arena_axe_pillar_transport.wmo", + [2008262] = "World wmo transports WMO_elevators org_arena_elevator_transport.wmo", + [2008263] = "World wmo transports WMO_elevators org_arena_ivory_pillar_transport.wmo", + [2008264] = "World wmo transports WMO_elevators org_arena_lightning_pillar_transport.wmo", + [2008265] = "World wmo transports WMO_elevators org_arena_pillar.wmo", + [2008266] = "World wmo transports WMO_elevators org_arena_pillar_transport.wmo", + [2008267] = "World wmo transports WMO_elevators org_arena_yellow_elevator_transport.wmo", + [2008268] = "World wmo transports passengership transportship_A.wmo", + [2008269] = "World wmo transports transport_horde_zeppelin Transport_Horde_Zeppelin.wmo", + [2008270] = "World wmo transports transport_ship transportship.wmo", + [2008271] = "World wmo transports transport_ship_NE Transportship_NE.wmo", + [2008272] = "World wmo transports transport_ship_NE Transportship_NE_Stationary.wmo", + [2008273] = "World wmo transports transport_ship_UD Transport_Ship_UD.wmo", + [2008274] = "World wmo transports transport_zeppelin transport_zeppelin.wmo", + [2008275] = "spell SonicBoom_ImpactDD_Uber_Chest.mdx", + [2008276] = "SPELLS ArcaneLightning.mdx", + [2008277] = "SPELLS ArcaneLightning01.mdx", + [2008278] = "SPELLS ArcaneLightning02.mdx", + [2008279] = "SPELLS BurrowEarth_BoneWaste_Missile.mdx", + [2008280] = "SPELLS FloatingMine.mdx", + [2008281] = "SPELLS FloatingMinePulse.mdx", + [2008282] = "SPELLS HellfireRaid_Dust_Impact_Base.mdx", + [2008283] = "SPELLS Illidan_Glave_Missile.mdx", + [2008284] = "SPELLS IncinerateBlue_Impact_Base.mdx", + [2008285] = "SPELLS IncinerateBlue_Low_Base.mdx", + [2008286] = "SPELLS NagaLordShell_Impact.mdx", + [2008287] = "SPELLS NagaLordShell_Missile.mdx", + [2008288] = "SPELLS Sunwell_GroundFX.mdx", + [2008289] = "SPELLS WaterLiquidBreath.mdx", + [2008290] = "World AZEROTH KARAZAHN ACTIVEDOODADS Karazahn_SecretDoor.mdx", + [2008291] = "World AZEROTH KARAZAHN ACTIVEDOODADS Karazahn_bridgedoors.mdx", + [2008292] = "World AZEROTH KARAZAHN ACTIVEDOODADS Karazahn_chessroomdoors.mdx", + [2008293] = "World AZEROTH KARAZAHN ACTIVEDOODADS Karazahn_diningDoors.mdx", + [2008294] = "World AZEROTH KARAZAHN ACTIVEDOODADS Karazahn_diningruinDoor.mdx", + [2008295] = "World AZEROTH KARAZAHN ACTIVEDOODADS Karazahn_secretroomDoor.mdx", + [2008296] = "World AZEROTH KARAZAHN ACTIVEDOODADS Karazahn_silverrmDoor01.mdx", + [2008297] = "World AZEROTH KARAZAHN ACTIVEDOODADS Karazahn_silverrmDoor02.mdx", + [2008298] = "World AZEROTH KARAZAHN ACTIVEDOODADS Karazahn_stageDoor.mdx", + [2008299] = "World AZEROTH KARAZAHN ACTIVEDOODADS Karazhan_Red_Curtain.mdx", + [2008300] = "World AZEROTH KARAZAHN ACTIVEDOODADS karazhan_observe_door.mdx", + [2008301] = "World AZEROTH KARAZAHN PASSIVEDOODADS BookShelves KarazahnBookshelfXtralarge.mdx", + [2008302] = "World AZEROTH KARAZAHN PASSIVEDOODADS BurningBooks BooksOnFire.mdx", + [2008303] = "World AZEROTH KARAZAHN PASSIVEDOODADS OWLSTATUE Karazahn_owlstatue.mdx", + [2008304] = "World AZEROTH KARAZAHN PASSIVEDOODADS Rubble Karazahn_Rubble_Floating.mdx", + [2008305] = "World DUNGEON CAVERNSOFTIME PASSIVEDOODADS Portal COT_portalFX.mdx", + [2008306] = "World DUNGEON Sunwell Sunwell_Bushes.mdx", + [2008307] = "World DUNGEON Sunwell Sunwell_Lamps.mdx", + [2008308] = "World DUNGEON Sunwell Sunwell_Trees.mdx", + [2008309] = "World ENVIRONMENT DOODAD GENERALDOODADS AltarOfTidalMastery AltarTidalMastery01.mdx", + [2008310] = "World ENVIRONMENT DOODAD GENERALDOODADS NovaGrave NovaGrave1.mdx", + [2008311] = "World EXPANSION01 DOODADS AUCHINDOUN PASSIVEDOODADS BRIDGE_FX Auchindoun_Bridge_FX.mdx", + [2008312] = "World EXPANSION01 DOODADS AUCHINDOUN PASSIVEDOODADS BRIDGE_FX Auchindoun_Bridge_Spirits_Floating.mdx", + [2008313] = "World EXPANSION01 DOODADS AUCHINDOUN PASSIVEDOODADS BRIDGE_FX Auchindoun_Bridge_Spirits_Flying.mdx", + [2008314] = "World EXPANSION01 DOODADS AUCHINDOUN PASSIVEDOODADS BRIDGE_FX Auchindoun_Bridge_Spirits_Simple.mdx", + [2008315] = "World EXPANSION01 DOODADS AUCHINDOUN PASSIVEDOODADS BRIDGE_FX Auchindoun_Bridge_Swirl_Filler.mdx", + [2008316] = "World EXPANSION01 DOODADS AUCHINDOUN PASSIVEDOODADS BRIDGE_FX Auchindoun_Bridge_VolumeLight.mdx", + [2008317] = "World EXPANSION01 DOODADS AUCHINDOUN PASSIVEDOODADS Coffin Ancient_D_Coffin.mdx", + [2008318] = "World EXPANSION01 DOODADS AUCHINDOUN PASSIVEDOODADS Doors Auchindoun_Door_Swinging.mdx", + [2008319] = "World EXPANSION01 DOODADS AUCHINDOUN PASSIVEDOODADS Ethereal_Ribbons Auchindoun_Ethereal_Ribbon_Type", + [2008320] = "World EXPANSION01 DOODADS AUCHINDOUN PASSIVEDOODADS Ethereal_Ribbons Auchindoun_Ethereal_Ribbon_Type", + [2008321] = "World EXPANSION01 DOODADS AUCHINDOUN PASSIVEDOODADS Ethereal_Ribbons Auchindoun_Ethereal_Ribbon_Type", + [2008322] = "World EXPANSION01 DOODADS AUCHINDOUN PASSIVEDOODADS Ethereal_Ribbons Auchindoun_Ethereal_Ribbon_Type", + [2008323] = "World EXPANSION01 DOODADS AUCHINDOUN PASSIVEDOODADS Ethereal_Ribbons Auchindoun_Ethereal_Ribbon_Type", + [2008324] = "World EXPANSION01 DOODADS AUCHINDOUN PASSIVEDOODADS Ethereal_Ribbons_Individual Auch_Etherreal_Ribbo", + [2008325] = "World EXPANSION01 DOODADS AUCHINDOUN PASSIVEDOODADS Ethereal_Ribbons_Individual Auch_Etherreal_Ribbo", + [2008326] = "World EXPANSION01 DOODADS AUCHINDOUN PASSIVEDOODADS Ethereal_Ribbons_Individual Auch_Etherreal_Ribbo", + [2008327] = "World EXPANSION01 DOODADS AUCHINDOUN PASSIVEDOODADS Ethereal_Ribbons_Individual Auch_Etherreal_Ribbo", + [2008328] = "World EXPANSION01 DOODADS AUCHINDOUN PASSIVEDOODADS Ethereal_Ribbons_Individual Auch_Etherreal_Ribbo", + [2008329] = "World EXPANSION01 DOODADS AUCHINDOUN PASSIVEDOODADS Ethereal_Ribbons_Individual Auch_Etherreal_Ribbo", + [2008330] = "World EXPANSION01 DOODADS AUCHINDOUN PASSIVEDOODADS Ethereal_Ribbons_Individual Auch_Etherreal_Ribbo", + [2008331] = "World EXPANSION01 DOODADS AUCHINDOUN PASSIVEDOODADS Ethereal_Ribbons_Individual Auch_Etherreal_Ribbo", + [2008332] = "World EXPANSION01 DOODADS AUCHINDOUN PASSIVEDOODADS Ethereal_Ribbons_Individual Auch_Etherreal_Ribbo", + [2008333] = "World EXPANSION01 DOODADS AUCHINDOUN PASSIVEDOODADS Ethereal_Ribbons_Individual Auch_Etherreal_Ribbo", + [2008334] = "World EXPANSION01 DOODADS AUCHINDOUN PASSIVEDOODADS Ethereal_Ribbons_Individual Auch_Etherreal_Ribbo", + [2008335] = "World EXPANSION01 DOODADS AUCHINDOUN PASSIVEDOODADS Ethereal_Ribbons_Individual Auch_Etherreal_Ribbo", + [2008336] = "World EXPANSION01 DOODADS AUCHINDOUN PASSIVEDOODADS Ethereal_Ribbons_Individual Auch_Etherreal_Ribbo", + [2008337] = "World EXPANSION01 DOODADS AUCHINDOUN PASSIVEDOODADS Ethereal_Ribbons_Individual Auch_Etherreal_Ribbo", + [2008338] = "World EXPANSION01 DOODADS AUCHINDOUN PASSIVEDOODADS Ethereal_Ribbons_Individual Auch_Etherreal_Ribbo", + [2008339] = "World EXPANSION01 DOODADS AUCHINDOUN PASSIVEDOODADS SPIRIT_FX Draenei_Spirit_Head.mdx", + [2008340] = "World EXPANSION01 DOODADS AUCHINDOUN PASSIVEDOODADS SPIRIT_FX Draenei_Spirit_Red.mdx", + [2008341] = "World EXPANSION01 DOODADS Arakkoa Passivedoodads Arakkoa_Hut_Glow Arakkoahouse_InteriorGlow.mdx", + [2008342] = "World EXPANSION01 DOODADS Arakkoa Passivedoodads Arakkoa_Hut_Glow Arakkoahut_InteriorGlow.mdx", + [2008343] = "World EXPANSION01 DOODADS Arakkoa Passivedoodads Arakkoa_Hut_Glow Arakkoashack_InsideGlow.mdx", + [2008344] = "World EXPANSION01 DOODADS BLACKTEMPLE Activedoodads Doors BT_CommonDoor.mdx", + [2008345] = "World EXPANSION01 DOODADS BLACKTEMPLE Activedoodads Doors BT_Gate.mdx", + [2008346] = "World EXPANSION01 DOODADS BLACKTEMPLE Activedoodads Doors BT_Gate_Solid.mdx", + [2008347] = "World EXPANSION01 DOODADS BLACKTEMPLE Activedoodads Doors BT_Illidan_Door.mdx", + [2008348] = "World EXPANSION01 DOODADS BLACKTEMPLE Activedoodads Doors BT_Illidan_Door_Left.mdx", + [2008349] = "World EXPANSION01 DOODADS BLACKTEMPLE Activedoodads Doors BT_Illidan_Door_Right.mdx", + [2008350] = "World EXPANSION01 DOODADS BLACKTEMPLE Activedoodads Doors BT_MainDoor.mdx", + [2008351] = "World EXPANSION01 DOODADS BLACKTEMPLE Activedoodads Doors BlackTemple_Gen_Door.mdx", + [2008352] = "World EXPANSION01 DOODADS BLACKTEMPLE PASSIVEDOODADS BLUEENERGY BlackTemple_Waterfall_Type1.mdx", + [2008353] = "World EXPANSION01 DOODADS BLACKTEMPLE PASSIVEDOODADS BRAZIER BT_Brazier.mdx", + [2008354] = "World EXPANSION01 DOODADS BLACKTEMPLE PASSIVEDOODADS BRAZIER BT_Brazier_Blue.mdx", + [2008355] = "World EXPANSION01 DOODADS BLACKTEMPLE PASSIVEDOODADS BRAZIER BT_Brazier_Green.mdx", + [2008356] = "World EXPANSION01 DOODADS BLACKTEMPLE PASSIVEDOODADS BRAZIER BT_Brazier_Red.mdx", + [2008357] = "World EXPANSION01 DOODADS BLACKTEMPLE PASSIVEDOODADS BRAZIER BT_Brazier_Violet.mdx", + [2008358] = "World EXPANSION01 DOODADS BLACKTEMPLE PASSIVEDOODADS BRAZIER BT_Brazier_Yellow.mdx", + [2008359] = "World EXPANSION01 DOODADS BLACKTEMPLE PASSIVEDOODADS BRAZIER BT_Brazier_broken.mdx", + [2008360] = "World EXPANSION01 DOODADS BLACKTEMPLE PASSIVEDOODADS Drapes BT_Drapes.mdx", + [2008361] = "World EXPANSION01 DOODADS BLACKTEMPLE PASSIVEDOODADS SEWERWATER BT_SewerFall.mdx", + [2008362] = "World EXPANSION01 DOODADS BLACKTEMPLE PASSIVEDOODADS SEWERWATER BT_SewerGutter_Hall.mdx", + [2008363] = "World EXPANSION01 DOODADS BLACKTEMPLE PASSIVEDOODADS SEWERWATER BT_SewerGutter_Section2.mdx", + [2008364] = "World EXPANSION01 DOODADS BLACKTEMPLE PASSIVEDOODADS SEWERWATER BT_SewerRamp.mdx", + [2008365] = "World EXPANSION01 DOODADS BLACKTEMPLE PASSIVEDOODADS SEWERWATER BT_SewerWater_BossRoom.mdx", + [2008366] = "World EXPANSION01 DOODADS BLACKTEMPLE PASSIVEDOODADS SEWERWATER BT_SewerWater_Section1.mdx", + [2008367] = "World EXPANSION01 DOODADS BLACKTEMPLE PASSIVEDOODADS Statue BT_StatueEyes.mdx", + [2008368] = "World EXPANSION01 DOODADS BLACKTEMPLE PASSIVEDOODADS Statue BT_StatueEyes_Green.mdx", + [2008369] = "World EXPANSION01 DOODADS BLACKTEMPLE PASSIVEDOODADS Vines BT_Vines01.mdx", + [2008370] = "World EXPANSION01 DOODADS BLACKTEMPLE PASSIVEDOODADS Vines BT_Vines02.mdx", + [2008371] = "World EXPANSION01 DOODADS BLADESEDGE Bush BladesEdgeBush01.mdx", + [2008372] = "World EXPANSION01 DOODADS BLADESEDGE Bush BladesEdgeBush02.mdx", + [2008373] = "World EXPANSION01 DOODADS BLADESEDGE DarkPortal DarkPortal_BladesEdge_Particles.mdx", + [2008374] = "World EXPANSION01 DOODADS BLADESEDGE Dragon BEM_Dragon_01.mdx", + [2008375] = "World EXPANSION01 DOODADS BLADESEDGE Dragon BEM_Dragon_02.mdx", + [2008376] = "World EXPANSION01 DOODADS BLADESEDGE Dragon BEM_Dragon_03.mdx", + [2008377] = "World EXPANSION01 DOODADS BLADESEDGE Dragon BEM_Dragon_04.mdx", + [2008378] = "World EXPANSION01 DOODADS BLADESEDGE Dragon BEM_Dragon_05.mdx", + [2008379] = "World EXPANSION01 DOODADS BLADESEDGE Ogrila OgrilaCrystals Ogrila_Crystal01.mdx", + [2008380] = "World EXPANSION01 DOODADS BLADESEDGE Ogrila OgrilaCrystals Ogrila_Crystal02.mdx", + [2008381] = "World EXPANSION01 DOODADS BLADESEDGE Ogrila OgrilaCrystals Ogrila_Crystal03.mdx", + [2008382] = "World EXPANSION01 DOODADS BLADESEDGE Ogrila OgrilaHut Ogrila_Banner.mdx", + [2008383] = "World EXPANSION01 DOODADS BLADESEDGE Ogrila OgrilaHut Ogrila_Hut.mdx", + [2008384] = "World EXPANSION01 DOODADS BLADESEDGE ROCKS BladesEdgeCliffRock03.mdx", + [2008385] = "World EXPANSION01 DOODADS BLADESEDGE ROCKS BladesEdgeGroundRock01.mdx", + [2008386] = "World EXPANSION01 DOODADS BLADESEDGE ROCKS BladesEdgeGroundRock02.mdx", + [2008387] = "World EXPANSION01 DOODADS BLADESEDGE ROCKS BladesEdgeGroundRock03.mdx", + [2008388] = "World EXPANSION01 DOODADS BLADESEDGE ROCKS BladesEdgeRockarch01.mdx", + [2008389] = "World EXPANSION01 DOODADS BLADESEDGE ROCKS BladesEdgeRockarch02.mdx", + [2008390] = "World EXPANSION01 DOODADS BLADESEDGE ROCKS BladesEdgeRockbridge01.mdx", + [2008391] = "World EXPANSION01 DOODADS BLADESEDGE ROCKS BladesEdge_OverhangRock_Large_01.mdx", + [2008392] = "World EXPANSION01 DOODADS BLADESEDGE ROCKS BladesEdge_OverhangRock_Large_02.mdx", + [2008393] = "World EXPANSION01 DOODADS BLADESEDGE ROCKS BladesEdge_OverhangRock_Small_01.mdx", + [2008394] = "World EXPANSION01 DOODADS BLADESEDGE ROCKS BladesEdge_OverhangRock_Small_02.mdx", + [2008395] = "World EXPANSION01 DOODADS BLADESEDGE ROCKS BladesEdge_OverhangRock_Small_03.mdx", + [2008396] = "World EXPANSION01 DOODADS BLADESEDGE SIMON SimonGame_FloatingCrystal.mdx", + [2008397] = "World EXPANSION01 DOODADS BLADESEDGE SIMON SimonGame_LargeBase.mdx", + [2008398] = "World EXPANSION01 DOODADS BLADESEDGE SIMON SimonGame_LargeBlueTree.mdx", + [2008399] = "World EXPANSION01 DOODADS BLADESEDGE SIMON SimonGame_LargeGreenTree.mdx", + [2008400] = "World EXPANSION01 DOODADS BLADESEDGE SIMON SimonGame_LargeRedTree.mdx", + [2008401] = "World EXPANSION01 DOODADS BLADESEDGE SIMON SimonGame_LargeYellowTree.mdx", + [2008402] = "World EXPANSION01 DOODADS BLADESEDGE SIMON SimonGame_SmallBlueBase.mdx", + [2008403] = "World EXPANSION01 DOODADS BLADESEDGE SIMON SimonGame_SmallBlueTree.mdx", + [2008404] = "World EXPANSION01 DOODADS BLADESEDGE SIMON SimonGame_SmallGreenBase.mdx", + [2008405] = "World EXPANSION01 DOODADS BLADESEDGE SIMON SimonGame_SmallGreenTree.mdx", + [2008406] = "World EXPANSION01 DOODADS BLADESEDGE SIMON SimonGame_SmallRedBase.mdx", + [2008407] = "World EXPANSION01 DOODADS BLADESEDGE SIMON SimonGame_SmallRedTree.mdx", + [2008408] = "World EXPANSION01 DOODADS BLADESEDGE SIMON SimonGame_SmallYellowBase.mdx", + [2008409] = "World EXPANSION01 DOODADS BLADESEDGE SIMON SimonGame_SmallYellowTree.mdx", + [2008410] = "World EXPANSION01 DOODADS BLADESEDGE Trees BladesEdgeCrater01.mdx", + [2008411] = "World EXPANSION01 DOODADS BLADESEDGE Trees BladesEdgeTree01.mdx", + [2008412] = "World EXPANSION01 DOODADS BLADESEDGE Trees BladesEdgeTree02.mdx", + [2008413] = "World EXPANSION01 DOODADS BLADESEDGE Trees BladesEdgeTree03.mdx", + [2008414] = "World EXPANSION01 DOODADS BLADESEDGE Trees BladesEdgeTree04.mdx", + [2008415] = "World EXPANSION01 DOODADS BLADESEDGE Trees BladesEdgeTree05.mdx", + [2008416] = "World EXPANSION01 DOODADS BLADESEDGE Trees BladesEdgeTree06.mdx", + [2008417] = "World EXPANSION01 DOODADS BLADESEDGE Trees BladesEdgeTree07.mdx", + [2008418] = "World EXPANSION01 DOODADS BLADESEDGE Trees BladesEdgeTree08.mdx", + [2008419] = "World EXPANSION01 DOODADS BLADESEDGE Trees BladesEdgeTreeStump.mdx", + [2008420] = "World EXPANSION01 DOODADS BLADESEDGE Trees BladesTerokkarBush01.mdx", + [2008421] = "World EXPANSION01 DOODADS BLADESEDGE Trees BladesTerokkarFallenTree.mdx", + [2008422] = "World EXPANSION01 DOODADS BLADESEDGE Trees BladesTerokkarTreeLarge.mdx", + [2008423] = "World EXPANSION01 DOODADS BLADESEDGE Trees BladesTerokkarTreeMedium.mdx", + [2008424] = "World EXPANSION01 DOODADS BLADESEDGE Trees BladesTerokkarTreeNoLeaves01.mdx", + [2008425] = "World EXPANSION01 DOODADS BLADESEDGE Trees BladesTerokkarTreeNoLeaves02.mdx", + [2008426] = "World EXPANSION01 DOODADS BLADESEDGE Trees BladesTerokkarTreeSapling.mdx", + [2008427] = "World EXPANSION01 DOODADS BLADESEDGE Trees BladesTerokkarTreeSmall.mdx", + [2008428] = "World EXPANSION01 DOODADS BLADESEDGE Trees BladesTerokkarTreeStump.mdx", + [2008429] = "World EXPANSION01 DOODADS BLADESEDGE Trees BladesTerokkarTreeStump02.mdx", + [2008430] = "World EXPANSION01 DOODADS BLOODMYST BE_PORTAL Bloodmyst_BE_Portal.mdx", + [2008431] = "World EXPANSION01 DOODADS BLOODMYST CRYSTALS BloodmystCrystal01.mdx", + [2008432] = "World EXPANSION01 DOODADS BLOODMYST CRYSTALS BloodmystCrystal02.mdx", + [2008433] = "World EXPANSION01 DOODADS BLOODMYST CRYSTALS BloodmystCrystal03.mdx", + [2008434] = "World EXPANSION01 DOODADS BLOODMYST CRYSTALS BloodmystCrystalAparatus01.mdx", + [2008435] = "World EXPANSION01 DOODADS BLOODMYST CRYSTALS BloodmystCrystalBig01_Corrupted.mdx", + [2008436] = "World EXPANSION01 DOODADS BLOODMYST CRYSTALS BloodmystCrystalBig02_Corrupted.mdx", + [2008437] = "World EXPANSION01 DOODADS BLOODMYST CRYSTALS BloodmystCrystalBig03_Corrupted.mdx", + [2008438] = "World EXPANSION01 DOODADS BLOODMYST CRYSTALS BloodmystCrystalFloating01.mdx", + [2008439] = "World EXPANSION01 DOODADS BLOODMYST CRYSTALS BloodmystCrystalSmall01_Corrupted.mdx", + [2008440] = "World EXPANSION01 DOODADS BLOODMYST CRYSTALS BloodmystCrystalSmall02_Corrupted.mdx", + [2008441] = "World EXPANSION01 DOODADS BLOODMYST CRYSTALS BloodmystCrystalSmall03_Corrupted.mdx", + [2008442] = "World EXPANSION01 DOODADS BLOODMYST POWERCORE Bloodmyst_powercore.mdx", + [2008443] = "World EXPANSION01 DOODADS BLOODMYST POWERCORE PowerCore_Coil_FX.mdx", + [2008444] = "World EXPANSION01 DOODADS BLOODMYST Rocks BloodmystRockRune01.mdx", + [2008445] = "World EXPANSION01 DOODADS BLOODMYST Rocks BloodmystRockRune02.mdx", + [2008446] = "World EXPANSION01 DOODADS BLOODMYST Trees BloodMystRedWaterfall.mdx", + [2008447] = "World EXPANSION01 DOODADS BLOODMYST Trees BloodMystTree01_Web.mdx", + [2008448] = "World EXPANSION01 DOODADS BLOODMYST Trees BloodMystTree02_Web.mdx", + [2008449] = "World EXPANSION01 DOODADS BLOODMYST Trees BloodMystTree03_Web.mdx", + [2008450] = "World EXPANSION01 DOODADS BLOODMYST Trees BloodMystTree07_Web.mdx", + [2008451] = "World EXPANSION01 DOODADS BLOODMYST Trees BloodmystBush01.mdx", + [2008452] = "World EXPANSION01 DOODADS BLOODMYST Trees BloodmystBush02.mdx", + [2008453] = "World EXPANSION01 DOODADS BLOODMYST Trees BloodmystBush03.mdx", + [2008454] = "World EXPANSION01 DOODADS BLOODMYST Trees BloodmystTree01.mdx", + [2008455] = "World EXPANSION01 DOODADS BLOODMYST Trees BloodmystTree02.mdx", + [2008456] = "World EXPANSION01 DOODADS BLOODMYST Trees BloodmystTreeCrystal01.mdx", + [2008457] = "World EXPANSION01 DOODADS BLOODMYST Trees BloodmystTreeCrystal02.mdx", + [2008458] = "World EXPANSION01 DOODADS BLOODMYST Trees BloodmystTreeFallen.mdx", + [2008459] = "World EXPANSION01 DOODADS BLOODMYST Trees BloodmystTreeRunes01.mdx", + [2008460] = "World EXPANSION01 DOODADS BLOODMYST Trees BloodmystTreeRunes02.mdx", + [2008461] = "World EXPANSION01 DOODADS BLOODMYST Webs CocoonTrap_Yellow.mdx", + [2008462] = "World EXPANSION01 DOODADS BLOODMYST Webs Cocoon_Yellow.mdx", + [2008463] = "World EXPANSION01 DOODADS BLOODMYST Webs NastySpiderWeb_Yellow.mdx", + [2008464] = "World EXPANSION01 DOODADS BLOODMYST Webs SpiderEggSack_Yellow.mdx", + [2008465] = "World EXPANSION01 DOODADS BLOODMYST Webs WebDangle_Yellow.mdx", + [2008466] = "World EXPANSION01 DOODADS BoneWastes BoneShrine BoneWastesBoneShrine01.mdx", + [2008467] = "World EXPANSION01 DOODADS BoneWastes Trees BoneWastesTreeTrunk01.mdx", + [2008468] = "World EXPANSION01 DOODADS BoneWastes Trees BoneWastesTreeTrunk02.mdx", + [2008469] = "World EXPANSION01 DOODADS BoneWastes Trees BoneWastesTreeTrunk03.mdx", + [2008470] = "World EXPANSION01 DOODADS BoneWastes Trees BoneWastesTreeTrunk04.mdx", + [2008471] = "World EXPANSION01 DOODADS BoneWastes Trees BoneWastesTreeTrunk05.mdx", + [2008472] = "World EXPANSION01 DOODADS BoneWastes Trees BoneWastesTreeTrunk06.mdx", + [2008473] = "World EXPANSION01 DOODADS COILFANG ACTIVEDOODADS ENERGYTOWER Coilfang Towers E_Particle.mdx", + [2008474] = "World EXPANSION01 DOODADS COILFANG ACTIVEDOODADS RAID_BRIDGE Coilfang_Raid_Bridge_Part1.mdx", + [2008475] = "World EXPANSION01 DOODADS COILFANG ACTIVEDOODADS RAID_BRIDGE Coilfang_Raid_Bridge_Part2.mdx", + [2008476] = "World EXPANSION01 DOODADS COILFANG ACTIVEDOODADS RAID_BRIDGE Coilfang_Raid_Bridge_Part3.mdx", + [2008477] = "World EXPANSION01 DOODADS COILFANG ACTIVEDOODADS RAID_BRIDGE_CONTROL Coilfang_Raid_Bridge_Controls.m", + [2008478] = "World EXPANSION01 DOODADS COILFANG ACTIVEDOODADS RAID_BRIDGE_CONTROL Coilfang_Raid_Console.mdx", + [2008479] = "World EXPANSION01 DOODADS COILFANG ACTIVEDOODADS RAID_BRIDGE_CONTROL Coilfang_Raid_Gate.mdx", + [2008480] = "World EXPANSION01 DOODADS COILFANG ACTIVEDOODADS RAID_DOOR Coilfang_Raid_Door.mdx", + [2008481] = "World EXPANSION01 DOODADS COILFANG ACTIVEDOODADS Steam Coilfang_steam_off_on.mdx", + [2008482] = "World EXPANSION01 DOODADS COILFANG ACTIVEDOODADS elevator CF_elevatorPlatform.mdx", + [2008483] = "World EXPANSION01 DOODADS COILFANG ACTIVEDOODADS elevator CF_elevatorPlatform_small.mdx", + [2008484] = "World EXPANSION01 DOODADS COILFANG PASSIVEDOODADS BLUEENERGY Coilfang_Blue_Energy.mdx", + [2008485] = "World EXPANSION01 DOODADS COILFANG PASSIVEDOODADS LIGHTS Coilfang_Floor_Light.mdx", + [2008486] = "World EXPANSION01 DOODADS COILFANG PASSIVEDOODADS LIGHTS Coilfang_Orb.mdx", + [2008487] = "World EXPANSION01 DOODADS COILFANG PASSIVEDOODADS LIGHTS Coilfang_Orb_Orange.mdx", + [2008488] = "World EXPANSION01 DOODADS COILFANG PASSIVEDOODADS LIGHTS Coilfang_Wall_Light.mdx", + [2008489] = "World EXPANSION01 DOODADS COILFANG PASSIVEDOODADS LIGHTS Coilfang_circularLightwindow_BLUE.mdx", + [2008490] = "World EXPANSION01 DOODADS COILFANG PASSIVEDOODADS PUMP Coilfang_pump.mdx", + [2008491] = "World EXPANSION01 DOODADS COILFANG PASSIVEDOODADS PUMP Coilfang_pump_Raidwater.mdx", + [2008492] = "World EXPANSION01 DOODADS COILFANG PASSIVEDOODADS RAID CF_Raid_giantpump.mdx", + [2008493] = "World EXPANSION01 DOODADS COILFANG PASSIVEDOODADS Steam Coilfang_steam_Choppy.mdx", + [2008494] = "World EXPANSION01 DOODADS COILFANG PASSIVEDOODADS Waterfalls Coilfang_Marsh_Waterfall.mdx", + [2008495] = "World EXPANSION01 DOODADS COILFANG PASSIVEDOODADS Waterfalls Coilfang_waterfall_Type1.mdx", + [2008496] = "World EXPANSION01 DOODADS COILFANG PASSIVEDOODADS Waterfalls Coilfang_waterfall_Type2.mdx", + [2008497] = "World EXPANSION01 DOODADS COILFANG PASSIVEDOODADS Waterfalls Coilfang_waterfall_Type3.mdx", + [2008498] = "World EXPANSION01 DOODADS COILFANG PASSIVEDOODADS cages cf_groundcage.mdx", + [2008499] = "World EXPANSION01 DOODADS COILFANG PASSIVEDOODADS cages cf_hangingcage.mdx", + [2008500] = "World EXPANSION01 DOODADS COILFANG PASSIVEDOODADS mushrooms ZangarMushroom06_BlueGlow.mdx", + [2008501] = "World EXPANSION01 DOODADS COILFANG PASSIVEDOODADS mushrooms ZangarMushroom07_BlueGlow.mdx", + [2008502] = "World EXPANSION01 DOODADS COILFANG PASSIVEDOODADS pipePieces CF_pipeA.mdx", + [2008503] = "World EXPANSION01 DOODADS COILFANG PASSIVEDOODADS pipePieces CF_pipeB.mdx", + [2008504] = "World EXPANSION01 DOODADS COILFANG PASSIVEDOODADS pipePieces CF_pipeC.mdx", + [2008505] = "World EXPANSION01 DOODADS COILFANG PASSIVEDOODADS railing CF_railing.mdx", + [2008506] = "World EXPANSION01 DOODADS COILFANG PASSIVEDOODADS windows giantGlasswindow01.mdx", + [2008507] = "World EXPANSION01 DOODADS EVERSONG FENCE BE_Fence_Eversong01.mdx", + [2008508] = "World EXPANSION01 DOODADS EVERSONG FENCE BE_Fence_Eversong02.mdx", + [2008509] = "World EXPANSION01 DOODADS EVERSONG FENCE BE_Fence_Eversong03.mdx", + [2008510] = "World EXPANSION01 DOODADS EVERSONG Lamppost BE_Lamppost_Eversong01-optimized.mdx", + [2008511] = "World EXPANSION01 DOODADS EVERSONG Lamppost BE_Lamppost_Eversong01.mdx", + [2008512] = "World EXPANSION01 DOODADS EVERSONG Signpost BE_Signpost_Eversong.mdx", + [2008513] = "World EXPANSION01 DOODADS EVERSONG Signpost BE_Signpost_Sign_Eversong.mdx", + [2008514] = "World EXPANSION01 DOODADS GENERIC ARAKKOA AK_AlchemyBottle01.mdx", + [2008515] = "World EXPANSION01 DOODADS GENERIC ARAKKOA AK_AlchemyBottle02.mdx", + [2008516] = "World EXPANSION01 DOODADS GENERIC ARAKKOA AK_AlchemyBottle03.mdx", + [2008517] = "World EXPANSION01 DOODADS GENERIC ARAKKOA Banners AK_banner01.mdx", + [2008518] = "World EXPANSION01 DOODADS GENERIC ARAKKOA CrystalBall AK_CrystalBall01.mdx", + [2008519] = "World EXPANSION01 DOODADS GENERIC ARAKKOA CrystalBall AK_CrystalBall02.mdx", + [2008520] = "World EXPANSION01 DOODADS GENERIC ARAKKOA NEST AK_Egg01.mdx", + [2008521] = "World EXPANSION01 DOODADS GENERIC ARAKKOA NEST AK_Egg02.mdx", + [2008522] = "World EXPANSION01 DOODADS GENERIC ARAKKOA NEST AK_NestDebris01.mdx", + [2008523] = "World EXPANSION01 DOODADS GENERIC ARAKKOA SCARECROW AK_Scarecrow01.mdx", + [2008524] = "World EXPANSION01 DOODADS GENERIC ARAKKOA Shelters Ak_Shelter01.mdx", + [2008525] = "World EXPANSION01 DOODADS GENERIC ARAKKOA Shelters Ak_Shelter02.mdx", + [2008526] = "World EXPANSION01 DOODADS GENERIC ARAKKOA Shelters Ak_Shelter03.mdx", + [2008527] = "World EXPANSION01 DOODADS GENERIC ARAKKOA TOTEM AK_Totem01.mdx", + [2008528] = "World EXPANSION01 DOODADS GENERIC ARAKKOA TOTEM AK_Totem02.mdx", + [2008529] = "World EXPANSION01 DOODADS GENERIC ARAKKOA TRADESKILL AK_AlchemySet01.mdx", + [2008530] = "World EXPANSION01 DOODADS GENERIC ARAKKOA TRADESKILL AK_BlacksmithSet01.mdx", + [2008531] = "World EXPANSION01 DOODADS GENERIC ARAKKOA Torch AK_Torch01.mdx", + [2008532] = "World EXPANSION01 DOODADS GENERIC AncientOrc Banners AO_Banner01.mdx", + [2008533] = "World EXPANSION01 DOODADS GENERIC AncientOrc Banners AO_Wall_Hanging_01.mdx", + [2008534] = "World EXPANSION01 DOODADS GENERIC AncientOrc Banners AO_Wall_Hanging_02.mdx", + [2008535] = "World EXPANSION01 DOODADS GENERIC AncientOrc Banners AO_Wall_Hanging_03.mdx", + [2008536] = "World EXPANSION01 DOODADS GENERIC AncientOrc Banners AO_Wall_Hanging_04.mdx", + [2008537] = "World EXPANSION01 DOODADS GENERIC AncientOrc Boardwalk AO_Boardwalk01.mdx", + [2008538] = "World EXPANSION01 DOODADS GENERIC AncientOrc Boardwalk AO_Boardwalk02.mdx", + [2008539] = "World EXPANSION01 DOODADS GENERIC AncientOrc Boardwalk AO_Boardwalk03.mdx", + [2008540] = "World EXPANSION01 DOODADS GENERIC AncientOrc Boardwalk AO_Boardwalk04.mdx", + [2008541] = "World EXPANSION01 DOODADS GENERIC AncientOrc Boardwalk AO_Boardwalk05.mdx", + [2008542] = "World EXPANSION01 DOODADS GENERIC AncientOrc Boardwalk AO_Boardwalk_Corner.mdx", + [2008543] = "World EXPANSION01 DOODADS GENERIC AncientOrc BridgePieces AO_BridgeLong01.mdx", + [2008544] = "World EXPANSION01 DOODADS GENERIC AncientOrc BridgePieces AO_BridgeLong02.mdx", + [2008545] = "World EXPANSION01 DOODADS GENERIC AncientOrc BridgePieces AO_Bridgerock01.mdx", + [2008546] = "World EXPANSION01 DOODADS GENERIC AncientOrc BridgePieces AO_Bridgetree01.mdx", + [2008547] = "World EXPANSION01 DOODADS GENERIC AncientOrc Lampost AO_Lamppost01.mdx", + [2008548] = "World EXPANSION01 DOODADS GENERIC AncientOrc Lampost AO_Lamppost02.mdx", + [2008549] = "World EXPANSION01 DOODADS GENERIC AncientOrc OutpostWalls AO_OutpostWall01.mdx", + [2008550] = "World EXPANSION01 DOODADS GENERIC AncientOrc OutpostWalls AO_OutpostWall02.mdx", + [2008551] = "World EXPANSION01 DOODADS GENERIC AncientOrc OutpostWalls AO_OutpostWall03.mdx", + [2008552] = "World EXPANSION01 DOODADS GENERIC AncientOrc OutpostWalls AO_OutpostWall04.mdx", + [2008553] = "World EXPANSION01 DOODADS GENERIC AncientOrc OutpostWalls AO_OutpostWall05.mdx", + [2008554] = "World EXPANSION01 DOODADS GENERIC AncientOrc OutpostWalls AO_OutpostWall06.mdx", + [2008555] = "World EXPANSION01 DOODADS GENERIC AncientOrc OutpostWalls AO_OutpostWall07.mdx", + [2008556] = "World EXPANSION01 DOODADS GENERIC AncientOrc Pyres AO_Pyre01.mdx", + [2008557] = "World EXPANSION01 DOODADS GENERIC AncientOrc Pyres AO_Pyre02.mdx", + [2008558] = "World EXPANSION01 DOODADS GENERIC AncientOrc Signposts AO_Signpost01.mdx", + [2008559] = "World EXPANSION01 DOODADS GENERIC AncientOrc Signposts AO_Signpostpointer01.mdx", + [2008560] = "World EXPANSION01 DOODADS GENERIC AncientOrc Sticks AO_Sticks_01.mdx", + [2008561] = "World EXPANSION01 DOODADS GENERIC AncientOrc Totem AO_Totem01.mdx", + [2008562] = "World EXPANSION01 DOODADS GENERIC AncientOrc Windmill AO_Windmill.mdx", + [2008563] = "World EXPANSION01 DOODADS GENERIC AncientOrc barrel AO_Barrel01.mdx", + [2008564] = "World EXPANSION01 DOODADS GENERIC AncientOrc crates AO_OrcCrate01.mdx", + [2008565] = "World EXPANSION01 DOODADS GENERIC AncientOrc crates AO_OrcCrate02.mdx", + [2008566] = "World EXPANSION01 DOODADS GENERIC AncientOrc crates AO_OrcCrate03.mdx", + [2008567] = "World EXPANSION01 DOODADS GENERIC BLOODELF BALLISTA BE_Ballista01.mdx", + [2008568] = "World EXPANSION01 DOODADS GENERIC BLOODELF BALLISTA BE_BallistaArm.mdx", + [2008569] = "World EXPANSION01 DOODADS GENERIC BLOODELF BALLISTA BE_BallistaRail.mdx", + [2008570] = "World EXPANSION01 DOODADS GENERIC BLOODELF BALLISTA BE_BallistaShield.mdx", + [2008571] = "World EXPANSION01 DOODADS GENERIC BLOODELF BALLISTA BE_BallistaSlide.mdx", + [2008572] = "World EXPANSION01 DOODADS GENERIC BLOODELF BALLISTA BE_BallistaWheel.mdx", + [2008573] = "World EXPANSION01 DOODADS GENERIC BLOODELF BALLISTA BE_BallistaWinch.mdx", + [2008574] = "World EXPANSION01 DOODADS GENERIC BLOODELF BALLISTA BE_BallistaWrecked01.mdx", + [2008575] = "World EXPANSION01 DOODADS GENERIC BLOODELF BALLISTA BE_StatueGhostlands01.mdx", + [2008576] = "World EXPANSION01 DOODADS GENERIC BLOODELF BEDS BE_Bed_01.mdx", + [2008577] = "World EXPANSION01 DOODADS GENERIC BLOODELF BEDS BE_Bed_02.mdx", + [2008578] = "World EXPANSION01 DOODADS GENERIC BLOODELF BEDS BE_Bed_Wrecked_01.mdx", + [2008579] = "World EXPANSION01 DOODADS GENERIC BLOODELF BENCHES BE_Bench01.mdx", + [2008580] = "World EXPANSION01 DOODADS GENERIC BLOODELF BENCHES BE_Bench_Garden01.mdx", + [2008581] = "World EXPANSION01 DOODADS GENERIC BLOODELF BENCHES BE_Bench_Wrecked_01.mdx", + [2008582] = "World EXPANSION01 DOODADS GENERIC BLOODELF BOOKSHELF BE_BookshelfEmpty_01.mdx", + [2008583] = "World EXPANSION01 DOODADS GENERIC BLOODELF BOOKSHELF BE_BookshelfEmpty_02.mdx", + [2008584] = "World EXPANSION01 DOODADS GENERIC BLOODELF BOOKSHELF BE_BookshelfFilled_01.mdx", + [2008585] = "World EXPANSION01 DOODADS GENERIC BLOODELF BOOKSHELF BE_BookshelfFilled_02.mdx", + [2008586] = "World EXPANSION01 DOODADS GENERIC BLOODELF BOOKSHELF BE_BookshelfShort.mdx", + [2008587] = "World EXPANSION01 DOODADS GENERIC BLOODELF BOOKSHELF BE_BookshelfSpiral.mdx", + [2008588] = "World EXPANSION01 DOODADS GENERIC BLOODELF BOOKSHELF BE_BookshelfTall.mdx", + [2008589] = "World EXPANSION01 DOODADS GENERIC BLOODELF BOOKSHELF BE_Bookshelf_Wrecked_01.mdx", + [2008590] = "World EXPANSION01 DOODADS GENERIC BLOODELF BOOKSHELF BE_Bookshelf_Wrecked_02.mdx", + [2008591] = "World EXPANSION01 DOODADS GENERIC BLOODELF BOOKS BE_Book_Large01.mdx", + [2008592] = "World EXPANSION01 DOODADS GENERIC BLOODELF BOOKS BE_Book_Large02.mdx", + [2008593] = "World EXPANSION01 DOODADS GENERIC BLOODELF BOOKS BE_Book_Large05.mdx", + [2008594] = "World EXPANSION01 DOODADS GENERIC BLOODELF BOOKS BE_Book_Medium01.mdx", + [2008595] = "World EXPANSION01 DOODADS GENERIC BLOODELF BOOKS BE_Book_Medium02.mdx", + [2008596] = "World EXPANSION01 DOODADS GENERIC BLOODELF BOOKS BE_Book_Small01.mdx", + [2008597] = "World EXPANSION01 DOODADS GENERIC BLOODELF BOOKS BE_Book_Small02.mdx", + [2008598] = "World EXPANSION01 DOODADS GENERIC BLOODELF Banners BE_Banner01.mdx", + [2008599] = "World EXPANSION01 DOODADS GENERIC BLOODELF Banners BE_Banner02.mdx", + [2008600] = "World EXPANSION01 DOODADS GENERIC BLOODELF Banners BE_Banner04.mdx", + [2008601] = "World EXPANSION01 DOODADS GENERIC BLOODELF Banners BE_Banner_Kael_01.mdx", + [2008602] = "World EXPANSION01 DOODADS GENERIC BLOODELF Banners BE_Banner_Kael_02.mdx", + [2008603] = "World EXPANSION01 DOODADS GENERIC BLOODELF Banners BE_Banner_Kael_03.mdx", + [2008604] = "World EXPANSION01 DOODADS GENERIC BLOODELF Banners BE_Banner_ShatariSkyguard.mdx", + [2008605] = "World EXPANSION01 DOODADS GENERIC BLOODELF Banners BE_Banner_TallBlack.mdx", + [2008606] = "World EXPANSION01 DOODADS GENERIC BLOODELF Banners BE_Banner_TallBlue.mdx", + [2008607] = "World EXPANSION01 DOODADS GENERIC BLOODELF Banners BE_Banner_TallPurple.mdx", + [2008608] = "World EXPANSION01 DOODADS GENERIC BLOODELF Banners BE_Banner_Wide_Black.mdx", + [2008609] = "World EXPANSION01 DOODADS GENERIC BLOODELF Banners BE_Banner_Wide_Blue.mdx", + [2008610] = "World EXPANSION01 DOODADS GENERIC BLOODELF Banners BE_Banner_Wide_Purple.mdx", + [2008611] = "World EXPANSION01 DOODADS GENERIC BLOODELF Banners BE_Banner_Wide_Red.mdx", + [2008612] = "World EXPANSION01 DOODADS GENERIC BLOODELF Banners BE_Banner_Wide_Red_Anim.mdx", + [2008613] = "World EXPANSION01 DOODADS GENERIC BLOODELF Banners BE_Banner_Wide_Red_Anim02.mdx", + [2008614] = "World EXPANSION01 DOODADS GENERIC BLOODELF Banners BE_Banner_Wide_Red_Anim03.mdx", + [2008615] = "World EXPANSION01 DOODADS GENERIC BLOODELF Banners BE_Banner_Wide_Red_Torn01.mdx", + [2008616] = "World EXPANSION01 DOODADS GENERIC BLOODELF Bannister be_bannister.mdx", + [2008617] = "World EXPANSION01 DOODADS GENERIC BLOODELF Barrel BE_Barrel_01.mdx", + [2008618] = "World EXPANSION01 DOODADS GENERIC BLOODELF Barrel BE_Barrel_Broken_01.mdx", + [2008619] = "World EXPANSION01 DOODADS GENERIC BLOODELF Barrel BE_Barrel_Broken_02.mdx", + [2008620] = "World EXPANSION01 DOODADS GENERIC BLOODELF BarrierSpikes BE_BarrierSpikes01.mdx", + [2008621] = "World EXPANSION01 DOODADS GENERIC BLOODELF BarrierSpikes BE_BarrierSpikes02.mdx", + [2008622] = "World EXPANSION01 DOODADS GENERIC BLOODELF BarrierSpikes BE_BarrierSpikes03.mdx", + [2008623] = "World EXPANSION01 DOODADS GENERIC BLOODELF Bottles BE_Bottle01.mdx", + [2008624] = "World EXPANSION01 DOODADS GENERIC BLOODELF Bottles BE_Bottle02.mdx", + [2008625] = "World EXPANSION01 DOODADS GENERIC BLOODELF Bottles BE_Bottle03.mdx", + [2008626] = "World EXPANSION01 DOODADS GENERIC BLOODELF Bottles BE_Bottle04.mdx", + [2008627] = "World EXPANSION01 DOODADS GENERIC BLOODELF Broom BE_Mop01.mdx", + [2008628] = "World EXPANSION01 DOODADS GENERIC BLOODELF CHANDELIER BE_chandelier01.mdx", + [2008629] = "World EXPANSION01 DOODADS GENERIC BLOODELF COUCH BE_Couch01.mdx", + [2008630] = "World EXPANSION01 DOODADS GENERIC BLOODELF Candles BE_Candle_01.mdx", + [2008631] = "World EXPANSION01 DOODADS GENERIC BLOODELF Candles BE_Candle_02.mdx", + [2008632] = "World EXPANSION01 DOODADS GENERIC BLOODELF Candles BE_Candleabra01.mdx", + [2008633] = "World EXPANSION01 DOODADS GENERIC BLOODELF Chairs BE_Chair01.mdx", + [2008634] = "World EXPANSION01 DOODADS GENERIC BLOODELF Chairs BE_Chair02.mdx", + [2008635] = "World EXPANSION01 DOODADS GENERIC BLOODELF Chairs BE_Chair03.mdx", + [2008636] = "World EXPANSION01 DOODADS GENERIC BLOODELF Chairs BE_Chair04.mdx", + [2008637] = "World EXPANSION01 DOODADS GENERIC BLOODELF Chairs BE_Chair_Wrecked_01.mdx", + [2008638] = "World EXPANSION01 DOODADS GENERIC BLOODELF Chairs BE_Chair_Wrecked_02.mdx", + [2008639] = "World EXPANSION01 DOODADS GENERIC BLOODELF Chairs BE_Throne_01.mdx", + [2008640] = "World EXPANSION01 DOODADS GENERIC BLOODELF Cookpot BE_cookPot01.mdx", + [2008641] = "World EXPANSION01 DOODADS GENERIC BLOODELF Crate BE_Crate01.mdx", + [2008642] = "World EXPANSION01 DOODADS GENERIC BLOODELF Cups BE_Cup01.mdx", + [2008643] = "World EXPANSION01 DOODADS GENERIC BLOODELF Cups BE_Cup02.mdx", + [2008644] = "World EXPANSION01 DOODADS GENERIC BLOODELF Cups BE_Mug01.mdx", + [2008645] = "World EXPANSION01 DOODADS GENERIC BLOODELF DRAPERY BE_Drapery_01.mdx", + [2008646] = "World EXPANSION01 DOODADS GENERIC BLOODELF DRAPERY BE_Drapery_02.mdx", + [2008647] = "World EXPANSION01 DOODADS GENERIC BLOODELF DRAPERY BE_Drapery_03.mdx", + [2008648] = "World EXPANSION01 DOODADS GENERIC BLOODELF DRAPERY BE_Drapery_04.mdx", + [2008649] = "World EXPANSION01 DOODADS GENERIC BLOODELF DRAPERY BE_Drapery_05.mdx", + [2008650] = "World EXPANSION01 DOODADS GENERIC BLOODELF DRAPERY BE_Drapery_06.mdx", + [2008651] = "World EXPANSION01 DOODADS GENERIC BLOODELF DemonCrystals BE_DemonCrystal_01.mdx", + [2008652] = "World EXPANSION01 DOODADS GENERIC BLOODELF DemonCrystals BE_DemonCrystal_02.mdx", + [2008653] = "World EXPANSION01 DOODADS GENERIC BLOODELF DemonEnergyCollectors BE_DemonEnergyCollector01.mdx", + [2008654] = "World EXPANSION01 DOODADS GENERIC BLOODELF FOUNTAINS BE_Fountain01.mdx", + [2008655] = "World EXPANSION01 DOODADS GENERIC BLOODELF FOUNTAINS BE_Fountain01_base.mdx", + [2008656] = "World EXPANSION01 DOODADS GENERIC BLOODELF FOUNTAINS BE_FountainInnardsSilvermoon.mdx", + [2008657] = "World EXPANSION01 DOODADS GENERIC BLOODELF Food BE_Fish01.mdx", + [2008658] = "World EXPANSION01 DOODADS GENERIC BLOODELF Food BE_Meat01.mdx", + [2008659] = "World EXPANSION01 DOODADS GENERIC BLOODELF Forge BE_Forge.mdx", + [2008660] = "World EXPANSION01 DOODADS GENERIC BLOODELF Forge BE_Forge01.mdx", + [2008661] = "World EXPANSION01 DOODADS GENERIC BLOODELF Graveyard BE_Gravestone01.mdx", + [2008662] = "World EXPANSION01 DOODADS GENERIC BLOODELF Graveyard BE_Gravestone02.mdx", + [2008663] = "World EXPANSION01 DOODADS GENERIC BLOODELF Graveyard BE_Gravestone03.mdx", + [2008664] = "World EXPANSION01 DOODADS GENERIC BLOODELF Graveyard BE_Tomb01.mdx", + [2008665] = "World EXPANSION01 DOODADS GENERIC BLOODELF HEDGE BE_Hedge_Hanging01.mdx", + [2008666] = "World EXPANSION01 DOODADS GENERIC BLOODELF HEDGE BE_Hedge_Hanging03.mdx", + [2008667] = "World EXPANSION01 DOODADS GENERIC BLOODELF HEDGE BE_Hedge_Hanging04.mdx", + [2008668] = "World EXPANSION01 DOODADS GENERIC BLOODELF HEDGE BE_Hedge_Hanging05.mdx", + [2008669] = "World EXPANSION01 DOODADS GENERIC BLOODELF HEDGE BE_Hedge_Hanging06.mdx", + [2008670] = "World EXPANSION01 DOODADS GENERIC BLOODELF HEDGE BE_Hedge_Hanging07.mdx", + [2008671] = "World EXPANSION01 DOODADS GENERIC BLOODELF HEDGE BE_Hedge_Hanging08.mdx", + [2008672] = "World EXPANSION01 DOODADS GENERIC BLOODELF HEDGE BE_Hedge_Hanging09.mdx", + [2008673] = "World EXPANSION01 DOODADS GENERIC BLOODELF HEDGE BE_Hedge_Hanging10.mdx", + [2008674] = "World EXPANSION01 DOODADS GENERIC BLOODELF HEDGE BE_Hedge_Hanging11.mdx", + [2008675] = "World EXPANSION01 DOODADS GENERIC BLOODELF HEDGE BE_Hedge_Hanging12.mdx", + [2008676] = "World EXPANSION01 DOODADS GENERIC BLOODELF Hookah BE_Hookah_01.mdx", + [2008677] = "World EXPANSION01 DOODADS GENERIC BLOODELF Hookah BE_Hookah_02.mdx", + [2008678] = "World EXPANSION01 DOODADS GENERIC BLOODELF INSTRUMENTS BE_Harp01.mdx", + [2008679] = "World EXPANSION01 DOODADS GENERIC BLOODELF INSTRUMENTS BE_Lute01.mdx", + [2008680] = "World EXPANSION01 DOODADS GENERIC BLOODELF Incense BE_Incense_01.mdx", + [2008681] = "World EXPANSION01 DOODADS GENERIC BLOODELF KnickKnacks BE_MagicalKnickKnack02.mdx", + [2008682] = "World EXPANSION01 DOODADS GENERIC BLOODELF KnickKnacks BE_MagicalKnickKnack03.mdx", + [2008683] = "World EXPANSION01 DOODADS GENERIC BLOODELF KnickKnacks BE_MagicalKnickKnack04.mdx", + [2008684] = "World EXPANSION01 DOODADS GENERIC BLOODELF Lamp BE_Lamp01.mdx", + [2008685] = "World EXPANSION01 DOODADS GENERIC BLOODELF Lantern BE_Lantern01.mdx", + [2008686] = "World EXPANSION01 DOODADS GENERIC BLOODELF Lava BE_LavaPool.mdx", + [2008687] = "World EXPANSION01 DOODADS GENERIC BLOODELF Loom BE_Loom_01.mdx", + [2008688] = "World EXPANSION01 DOODADS GENERIC BLOODELF MerchantStand BE_MerchantStand01.mdx", + [2008689] = "World EXPANSION01 DOODADS GENERIC BLOODELF MerchantStand BE_MerchantStand02.mdx", + [2008690] = "World EXPANSION01 DOODADS GENERIC BLOODELF MerchantStand BE_MerchantStand03.mdx", + [2008691] = "World EXPANSION01 DOODADS GENERIC BLOODELF PLANETARIUM BE_PlanetariumDestroyed01.mdx", + [2008692] = "World EXPANSION01 DOODADS GENERIC BLOODELF PLANETARIUM BE_PlanetariumDestroyed02.mdx", + [2008693] = "World EXPANSION01 DOODADS GENERIC BLOODELF PLANETARIUM BE_PlanetariumDestroyed03.mdx", + [2008694] = "World EXPANSION01 DOODADS GENERIC BLOODELF PLANETARIUM BE_PlanetariumDestroyed04.mdx", + [2008695] = "World EXPANSION01 DOODADS GENERIC BLOODELF POSTERS BE_Signs_Wanted.mdx", + [2008696] = "World EXPANSION01 DOODADS GENERIC BLOODELF Pillar BE_Roadpillar01.mdx", + [2008697] = "World EXPANSION01 DOODADS GENERIC BLOODELF Pillows BE_Pillow_01.mdx", + [2008698] = "World EXPANSION01 DOODADS GENERIC BLOODELF Pillows BE_Pillow_02.mdx", + [2008699] = "World EXPANSION01 DOODADS GENERIC BLOODELF Pillows BE_Pillow_03.mdx", + [2008700] = "World EXPANSION01 DOODADS GENERIC BLOODELF Pillows BE_Pillow_04.mdx", + [2008701] = "World EXPANSION01 DOODADS GENERIC BLOODELF Podium BE_Podium01.mdx", + [2008702] = "World EXPANSION01 DOODADS GENERIC BLOODELF PowerOrb BloodElf_PowerOrb_Green.mdx", + [2008703] = "World EXPANSION01 DOODADS GENERIC BLOODELF RUGS BE_Rug_Large01.mdx", + [2008704] = "World EXPANSION01 DOODADS GENERIC BLOODELF RUGS BE_Rug_Large02.mdx", + [2008705] = "World EXPANSION01 DOODADS GENERIC BLOODELF RUGS BE_Rug_LargeRuined01.mdx", + [2008706] = "World EXPANSION01 DOODADS GENERIC BLOODELF RUGS BE_Rug_LargeRuined02.mdx", + [2008707] = "World EXPANSION01 DOODADS GENERIC BLOODELF RUGS BE_Rug_Medium01.mdx", + [2008708] = "World EXPANSION01 DOODADS GENERIC BLOODELF RUGS BE_Rug_Medium02.mdx", + [2008709] = "World EXPANSION01 DOODADS GENERIC BLOODELF RUGS BE_Rug_MediumRuined01.mdx", + [2008710] = "World EXPANSION01 DOODADS GENERIC BLOODELF RUGS BE_Rug_MediumRuined02.mdx", + [2008711] = "World EXPANSION01 DOODADS GENERIC BLOODELF RUGS BE_Rug_Small01.mdx", + [2008712] = "World EXPANSION01 DOODADS GENERIC BLOODELF RUGS BE_Rug_Small02.mdx", + [2008713] = "World EXPANSION01 DOODADS GENERIC BLOODELF RUGS BE_Rug_SmallRuined01.mdx", + [2008714] = "World EXPANSION01 DOODADS GENERIC BLOODELF RUGS BE_Rug_SmallRuined02.mdx", + [2008715] = "World EXPANSION01 DOODADS GENERIC BLOODELF RUNESTONE BE_Runestone01.mdx", + [2008716] = "World EXPANSION01 DOODADS GENERIC BLOODELF RoadSign BE_RoadSign_Sign01.mdx", + [2008717] = "World EXPANSION01 DOODADS GENERIC BLOODELF Rowboat BE_Rowboat.mdx", + [2008718] = "World EXPANSION01 DOODADS GENERIC BLOODELF Rowboat BE_Rowboatwrecked.mdx", + [2008719] = "World EXPANSION01 DOODADS GENERIC BLOODELF SCONCE BE_Sconce01.mdx", + [2008720] = "World EXPANSION01 DOODADS GENERIC BLOODELF SCONCE BE_Sconce02.mdx", + [2008721] = "World EXPANSION01 DOODADS GENERIC BLOODELF SCRYINGORB BE_ScryingOrb.mdx", + [2008722] = "World EXPANSION01 DOODADS GENERIC BLOODELF SCRYINGORB BE_ScryingOrb_Epic.mdx", + [2008723] = "World EXPANSION01 DOODADS GENERIC BLOODELF SHROOMS GhostlandsShroom01.mdx", + [2008724] = "World EXPANSION01 DOODADS GENERIC BLOODELF SHROOMS GhostlandsSporeMound01.mdx", + [2008725] = "World EXPANSION01 DOODADS GENERIC BLOODELF STATUES BE_Statue01.mdx", + [2008726] = "World EXPANSION01 DOODADS GENERIC BLOODELF STATUES BE_Statue02.mdx", + [2008727] = "World EXPANSION01 DOODADS GENERIC BLOODELF STATUES BE_StatueBig.mdx", + [2008728] = "World EXPANSION01 DOODADS GENERIC BLOODELF STATUES BE_StatueMale.mdx", + [2008729] = "World EXPANSION01 DOODADS GENERIC BLOODELF STATUES BE_StatueRanger.mdx", + [2008730] = "World EXPANSION01 DOODADS GENERIC BLOODELF Shield BE_Shield01.mdx", + [2008731] = "World EXPANSION01 DOODADS GENERIC BLOODELF Shield BE_Shield02.mdx", + [2008732] = "World EXPANSION01 DOODADS GENERIC BLOODELF Shield BE_Shield03.mdx", + [2008733] = "World EXPANSION01 DOODADS GENERIC BLOODELF ShopSigns BE_Signs_Alchemy.mdx", + [2008734] = "World EXPANSION01 DOODADS GENERIC BLOODELF ShopSigns BE_Signs_Axe.mdx", + [2008735] = "World EXPANSION01 DOODADS GENERIC BLOODELF ShopSigns BE_Signs_Bank.mdx", + [2008736] = "World EXPANSION01 DOODADS GENERIC BLOODELF ShopSigns BE_Signs_Book.mdx", + [2008737] = "World EXPANSION01 DOODADS GENERIC BLOODELF ShopSigns BE_Signs_Bow.mdx", + [2008738] = "World EXPANSION01 DOODADS GENERIC BLOODELF ShopSigns BE_Signs_Bread.mdx", + [2008739] = "World EXPANSION01 DOODADS GENERIC BLOODELF ShopSigns BE_Signs_Cheese.mdx", + [2008740] = "World EXPANSION01 DOODADS GENERIC BLOODELF ShopSigns BE_Signs_Cooking.mdx", + [2008741] = "World EXPANSION01 DOODADS GENERIC BLOODELF ShopSigns BE_Signs_Drink.mdx", + [2008742] = "World EXPANSION01 DOODADS GENERIC BLOODELF ShopSigns BE_Signs_Engineering.mdx", + [2008743] = "World EXPANSION01 DOODADS GENERIC BLOODELF ShopSigns BE_Signs_GeneralShop.mdx", + [2008744] = "World EXPANSION01 DOODADS GENERIC BLOODELF ShopSigns BE_Signs_Helm.mdx", + [2008745] = "World EXPANSION01 DOODADS GENERIC BLOODELF ShopSigns BE_Signs_Herbalism.mdx", + [2008746] = "World EXPANSION01 DOODADS GENERIC BLOODELF ShopSigns BE_Signs_Meat.mdx", + [2008747] = "World EXPANSION01 DOODADS GENERIC BLOODELF ShopSigns BE_Signs_Poison.mdx", + [2008748] = "World EXPANSION01 DOODADS GENERIC BLOODELF ShopSigns BE_Signs_Shield.mdx", + [2008749] = "World EXPANSION01 DOODADS GENERIC BLOODELF ShopSigns BE_Signs_Staff.mdx", + [2008750] = "World EXPANSION01 DOODADS GENERIC BLOODELF ShopSigns BE_Signs_Sword.mdx", + [2008751] = "World EXPANSION01 DOODADS GENERIC BLOODELF ShopSigns BE_Signs_Tailor.mdx", + [2008752] = "World EXPANSION01 DOODADS GENERIC BLOODELF ShopSigns BE_Signs_Tavern.mdx", + [2008753] = "World EXPANSION01 DOODADS GENERIC BLOODELF TABLES BE_Table_Large01.mdx", + [2008754] = "World EXPANSION01 DOODADS GENERIC BLOODELF TABLES BE_Table_Large02.mdx", + [2008755] = "World EXPANSION01 DOODADS GENERIC BLOODELF TABLES BE_Table_Large03.mdx", + [2008756] = "World EXPANSION01 DOODADS GENERIC BLOODELF TABLES BE_Table_Wrecked_01.mdx", + [2008757] = "World EXPANSION01 DOODADS GENERIC BLOODELF TABLES BE_Table_Wrecked_02.mdx", + [2008758] = "World EXPANSION01 DOODADS GENERIC BLOODELF TABLES BE_table_small01.mdx", + [2008759] = "World EXPANSION01 DOODADS GENERIC BLOODELF TENTS BE_Tent02.mdx", + [2008760] = "World EXPANSION01 DOODADS GENERIC BLOODELF TENTS BE_Tent03.mdx", + [2008761] = "World EXPANSION01 DOODADS GENERIC BLOODELF TENTS BE_Tent04.mdx", + [2008762] = "World EXPANSION01 DOODADS GENERIC BLOODELF TENTS BE_TentWrecked01.mdx", + [2008763] = "World EXPANSION01 DOODADS GENERIC BLOODELF TRANSLOCATOR BE_Translocator_minor.mdx", + [2008764] = "World EXPANSION01 DOODADS GENERIC BLOODELF TREES GhostlandsSmallTree01.mdx", + [2008765] = "World EXPANSION01 DOODADS GENERIC BLOODELF TREES GhostlandsSmallTree02.mdx", + [2008766] = "World EXPANSION01 DOODADS GENERIC BLOODELF TREES GhostlandsSmallTree03.mdx", + [2008767] = "World EXPANSION01 DOODADS GENERIC BLOODELF TREES GhostlandsTree01.mdx", + [2008768] = "World EXPANSION01 DOODADS GENERIC BLOODELF TREES GhostlandsTree02.mdx", + [2008769] = "World EXPANSION01 DOODADS GENERIC BLOODELF TREES GhostlandsTree03.mdx", + [2008770] = "World EXPANSION01 DOODADS GENERIC BLOODELF TREES GhostlandsTree04.mdx", + [2008771] = "World EXPANSION01 DOODADS GENERIC BLOODELF TREES GhostlandsTree05.mdx", + [2008772] = "World EXPANSION01 DOODADS GENERIC BLOODELF TREES SilvermoonBush01.mdx", + [2008773] = "World EXPANSION01 DOODADS GENERIC BLOODELF TREES SilvermoonBush02.mdx", + [2008774] = "World EXPANSION01 DOODADS GENERIC BLOODELF TREES SilvermoonBush03.mdx", + [2008775] = "World EXPANSION01 DOODADS GENERIC BLOODELF TREES SilvermoonBush04.mdx", + [2008776] = "World EXPANSION01 DOODADS GENERIC BLOODELF TREES SilvermoonTree09.mdx", + [2008777] = "World EXPANSION01 DOODADS GENERIC BLOODELF TREES SilvermoonTree10.mdx", + [2008778] = "World EXPANSION01 DOODADS GENERIC BLOODELF Teleporter BE_Teleporter_01.mdx", + [2008779] = "World EXPANSION01 DOODADS GENERIC BLOODELF WAGON BE_Wagon.mdx", + [2008780] = "World EXPANSION01 DOODADS GENERIC BLOODELF WAGON BE_Wagon02.mdx", + [2008781] = "World EXPANSION01 DOODADS GENERIC BLOODELF WAGON BE_Wagon_Wrecked.mdx", + [2008782] = "World EXPANSION01 DOODADS GENERIC BLOODELF WeaponRacks BE_Weaponrack_01.mdx", + [2008783] = "World EXPANSION01 DOODADS GENERIC BLOODELF WeaponRacks BE_Weaponrack_02.mdx", + [2008784] = "World EXPANSION01 DOODADS GENERIC BLOODELF Weapons BE_Knife01.mdx", + [2008785] = "World EXPANSION01 DOODADS GENERIC BLOODELF Weapons BE_Knife02.mdx", + [2008786] = "World EXPANSION01 DOODADS GENERIC BLOODELF Weapons BE_Knife03.mdx", + [2008787] = "World EXPANSION01 DOODADS GENERIC BLOODELF Weapons BE_Stave02.mdx", + [2008788] = "World EXPANSION01 DOODADS GENERIC BLOODELF Weapons BE_Sword01.mdx", + [2008789] = "World EXPANSION01 DOODADS GENERIC BLOODELF Weapons BE_Sword02.mdx", + [2008790] = "World EXPANSION01 DOODADS GENERIC BLOODELF Weapons BE_Sword03.mdx", + [2008791] = "World EXPANSION01 DOODADS GENERIC BLOODELF campfire BE_Campfire01.mdx", + [2008792] = "World EXPANSION01 DOODADS GENERIC BLOODELF campfire BE_Campfire02.mdx", + [2008793] = "World EXPANSION01 DOODADS GENERIC BLOODELF planters BE_planter_flowers_01.mdx", + [2008794] = "World EXPANSION01 DOODADS GENERIC BLOODELF planters BE_planter_long_01.mdx", + [2008795] = "World EXPANSION01 DOODADS GENERIC BLOODELF planters BE_planter_long_02.mdx", + [2008796] = "World EXPANSION01 DOODADS GENERIC BLOODELF planters BE_planter_long_03.mdx", + [2008797] = "World EXPANSION01 DOODADS GENERIC BLOODELF planters BE_planter_medium_01.mdx", + [2008798] = "World EXPANSION01 DOODADS GENERIC BLOODELF planters BE_planter_medium_02.mdx", + [2008799] = "World EXPANSION01 DOODADS GENERIC BLOODELF planters BE_planter_medium_03.mdx", + [2008800] = "World EXPANSION01 DOODADS GENERIC BLOODELF planters BE_planter_short_01.mdx", + [2008801] = "World EXPANSION01 DOODADS GENERIC BLOODELF planters BE_planter_short_02.mdx", + [2008802] = "World EXPANSION01 DOODADS GENERIC BLOODELF planters BE_planter_short_03.mdx", + [2008803] = "World EXPANSION01 DOODADS GENERIC BURNINGLEGION BANNERS BU_Banner_01.mdx", + [2008804] = "World EXPANSION01 DOODADS GENERIC BURNINGLEGION BANNERS BU_Banner_02.mdx", + [2008805] = "World EXPANSION01 DOODADS GENERIC BURNINGLEGION Braziers BU_Brazier_01.mdx", + [2008806] = "World EXPANSION01 DOODADS GENERIC BURNINGLEGION CANNON BU_Cannon_01.mdx", + [2008807] = "World EXPANSION01 DOODADS GENERIC BURNINGLEGION CANNON BU_Cannon_Base.mdx", + [2008808] = "World EXPANSION01 DOODADS GENERIC BURNINGLEGION CANNON BU_Cannon_Base_02.mdx", + [2008809] = "World EXPANSION01 DOODADS GENERIC BURNINGLEGION CrystalForge BU_CrystalForge.mdx", + [2008810] = "World EXPANSION01 DOODADS GENERIC BURNINGLEGION CrystalForge BU_CrystalForgeController.mdx", + [2008811] = "World EXPANSION01 DOODADS GENERIC BURNINGLEGION FelCannonBalls FelCannonBalls01.mdx", + [2008812] = "World EXPANSION01 DOODADS GENERIC BURNINGLEGION FelCannonBalls FelCannonBalls02.mdx", + [2008813] = "World EXPANSION01 DOODADS GENERIC BURNINGLEGION FelReaver BU_Felreaver_01.mdx", + [2008814] = "World EXPANSION01 DOODADS GENERIC BURNINGLEGION FelReaver BU_Felreaver_02.mdx", + [2008815] = "World EXPANSION01 DOODADS GENERIC BURNINGLEGION FelReaver BU_Felreaver_03.mdx", + [2008816] = "World EXPANSION01 DOODADS GENERIC BURNINGLEGION FelReaver BU_Felreaver_04.mdx", + [2008817] = "World EXPANSION01 DOODADS GENERIC BURNINGLEGION FelReaver BU_Felreaver_05.mdx", + [2008818] = "World EXPANSION01 DOODADS GENERIC BURNINGLEGION FelReaver BU_Felreaver_06.mdx", + [2008819] = "World EXPANSION01 DOODADS GENERIC BURNINGLEGION Generator BU_Generator_01.mdx", + [2008820] = "World EXPANSION01 DOODADS GENERIC BURNINGLEGION Ruins BU_Junk_01.mdx", + [2008821] = "World EXPANSION01 DOODADS GENERIC BURNINGLEGION Ruins BU_Junk_02.mdx", + [2008822] = "World EXPANSION01 DOODADS GENERIC BURNINGLEGION Ruins BU_Oblisk_01.mdx", + [2008823] = "World EXPANSION01 DOODADS GENERIC BURNINGLEGION Ruins BU_Smoke_Stack_01.mdx", + [2008824] = "World EXPANSION01 DOODADS GENERIC BURNINGLEGION TELEPORTER BU_Teleporter_01.mdx", + [2008825] = "World EXPANSION01 DOODADS GENERIC BURNINGLEGION TELEPORTER BU_Teleporter_02.mdx", + [2008826] = "World EXPANSION01 DOODADS GENERIC BURNINGLEGION TRADESKILL BU_Forge_01.mdx", + [2008827] = "World EXPANSION01 DOODADS GENERIC DRAENEI BANNER DR_Banner01.mdx", + [2008828] = "World EXPANSION01 DOODADS GENERIC DRAENEI Bed Draenei_bed01.mdx", + [2008829] = "World EXPANSION01 DOODADS GENERIC DRAENEI BlackSmith DR_Anvil_01.mdx", + [2008830] = "World EXPANSION01 DOODADS GENERIC DRAENEI BlackSmith DR_Forge_01.mdx", + [2008831] = "World EXPANSION01 DOODADS GENERIC DRAENEI Brazier DR_Brazier_01.mdx", + [2008832] = "World EXPANSION01 DOODADS GENERIC DRAENEI Brazier DR_Brazier_02.mdx", + [2008833] = "World EXPANSION01 DOODADS GENERIC DRAENEI Brazier DR_Brazier_03.mdx", + [2008834] = "World EXPANSION01 DOODADS GENERIC DRAENEI CRYOPODS DR_CryoPod_Bottom.mdx", + [2008835] = "World EXPANSION01 DOODADS GENERIC DRAENEI CRYOPODS DR_CryoPod_Intact.mdx", + [2008836] = "World EXPANSION01 DOODADS GENERIC DRAENEI CRYOPODS DR_CryoPod_Top.mdx", + [2008837] = "World EXPANSION01 DOODADS GENERIC DRAENEI CRYOPODS DR_CryoPod_Wrecked.mdx", + [2008838] = "World EXPANSION01 DOODADS GENERIC DRAENEI Cables DR_cable_medium.mdx", + [2008839] = "World EXPANSION01 DOODADS GENERIC DRAENEI Cables DR_cable_thin.mdx", + [2008840] = "World EXPANSION01 DOODADS GENERIC DRAENEI Cables DR_cable_wide.mdx", + [2008841] = "World EXPANSION01 DOODADS GENERIC DRAENEI Chandelier DR_Chandelier_01.mdx", + [2008842] = "World EXPANSION01 DOODADS GENERIC DRAENEI Crystals HellfireCrystalFormation_01_pink.mdx", + [2008843] = "World EXPANSION01 DOODADS GENERIC DRAENEI Cups DR_cup_01.mdx", + [2008844] = "World EXPANSION01 DOODADS GENERIC DRAENEI Cups DR_cup_02.mdx", + [2008845] = "World EXPANSION01 DOODADS GENERIC DRAENEI Draenei_Arches Tech_Arch01.mdx", + [2008846] = "World EXPANSION01 DOODADS GENERIC DRAENEI Draenei_Arches Tech_Arch02.mdx", + [2008847] = "World EXPANSION01 DOODADS GENERIC DRAENEI Draenei_Wreckage Draenei_Wreckage_claw.mdx", + [2008848] = "World EXPANSION01 DOODADS GENERIC DRAENEI Draenei_Wreckage Draenei_Wreckage_frame.mdx", + [2008849] = "World EXPANSION01 DOODADS GENERIC DRAENEI Draenei_Wreckage Draenei_Wreckage_smallwindow.mdx", + [2008850] = "World EXPANSION01 DOODADS GENERIC DRAENEI Exodar ExodarBridge01.mdx", + [2008851] = "World EXPANSION01 DOODADS GENERIC DRAENEI Exodar ExodarBridge02.mdx", + [2008852] = "World EXPANSION01 DOODADS GENERIC DRAENEI Exodar ExodarBridge03.mdx", + [2008853] = "World EXPANSION01 DOODADS GENERIC DRAENEI Exodar Exodarplatform01.mdx", + [2008854] = "World EXPANSION01 DOODADS GENERIC DRAENEI ExxodarWalls DR_ExodarWall01.mdx", + [2008855] = "World EXPANSION01 DOODADS GENERIC DRAENEI ExxodarWalls DR_ExodarWall02.mdx", + [2008856] = "World EXPANSION01 DOODADS GENERIC DRAENEI Fountain GlowyWaterStream01.mdx", + [2008857] = "World EXPANSION01 DOODADS GENERIC DRAENEI Fountian DR_fountian_ruined.mdx", + [2008858] = "World EXPANSION01 DOODADS GENERIC DRAENEI GRAVEYARD DR_Tomb.mdx", + [2008859] = "World EXPANSION01 DOODADS GENERIC DRAENEI GRAVEYARD DR_Tombstone01.mdx", + [2008860] = "World EXPANSION01 DOODADS GENERIC DRAENEI GRAVEYARD DR_Tombstone02.mdx", + [2008861] = "World EXPANSION01 DOODADS GENERIC DRAENEI GRAVEYARD DR_Tombstone03.mdx", + [2008862] = "World EXPANSION01 DOODADS GENERIC DRAENEI Glow DR_glow.mdx", + [2008863] = "World EXPANSION01 DOODADS GENERIC DRAENEI Glow DR_glow_blue.mdx", + [2008864] = "World EXPANSION01 DOODADS GENERIC DRAENEI Glow DR_rays_blue.mdx", + [2008865] = "World EXPANSION01 DOODADS GENERIC DRAENEI Glow DR_rays_orange.mdx", + [2008866] = "World EXPANSION01 DOODADS GENERIC DRAENEI Glow DR_rays_pink.mdx", + [2008867] = "World EXPANSION01 DOODADS GENERIC DRAENEI HOLO DR_Draenei_HoloRunes01.mdx", + [2008868] = "World EXPANSION01 DOODADS GENERIC DRAENEI HOLO DR_Draenei_HoloRunes01_Big.mdx", + [2008869] = "World EXPANSION01 DOODADS GENERIC DRAENEI HOLO DR_Draenei_HoloRunes01_BigRed.mdx", + [2008870] = "World EXPANSION01 DOODADS GENERIC DRAENEI HOLO DR_Draenei_HoloRunes02.mdx", + [2008871] = "World EXPANSION01 DOODADS GENERIC DRAENEI HOLO DR_Draenei_HoloRunes02_Big.mdx", + [2008872] = "World EXPANSION01 DOODADS GENERIC DRAENEI HOLO DR_Draenei_HoloRunes02_BigRed.mdx", + [2008873] = "World EXPANSION01 DOODADS GENERIC DRAENEI HOLO DR_Draenei_HoloRunes03.mdx", + [2008874] = "World EXPANSION01 DOODADS GENERIC DRAENEI HOLO DR_Draenei_HoloRunes03_Big.mdx", + [2008875] = "World EXPANSION01 DOODADS GENERIC DRAENEI HOLO DR_Draenei_HoloRunes03_BigRed.mdx", + [2008876] = "World EXPANSION01 DOODADS GENERIC DRAENEI HolographicStand DR_holographic_stand.mdx", + [2008877] = "World EXPANSION01 DOODADS GENERIC DRAENEI KnickKnacks DR_CryoPod_Intact2.mdx", + [2008878] = "World EXPANSION01 DOODADS GENERIC DRAENEI KnickKnacks DR_KnickKnack_01.mdx", + [2008879] = "World EXPANSION01 DOODADS GENERIC DRAENEI KnickKnacks DR_KnickKnack_03.mdx", + [2008880] = "World EXPANSION01 DOODADS GENERIC DRAENEI KnickKnacks DR_KnickKnack_04.mdx", + [2008881] = "World EXPANSION01 DOODADS GENERIC DRAENEI Loom DR_Loom_01.mdx", + [2008882] = "World EXPANSION01 DOODADS GENERIC DRAENEI Machines DR_MachineParts01.mdx", + [2008883] = "World EXPANSION01 DOODADS GENERIC DRAENEI Mailbox DraeneiPostbox.mdx", + [2008884] = "World EXPANSION01 DOODADS GENERIC DRAENEI Parasol DR_Parasol_large.mdx", + [2008885] = "World EXPANSION01 DOODADS GENERIC DRAENEI Parasol DR_Parasol_small.mdx", + [2008886] = "World EXPANSION01 DOODADS GENERIC DRAENEI Posters DR_signs_wanted.mdx", + [2008887] = "World EXPANSION01 DOODADS GENERIC DRAENEI SHOPSIGNS DR_signs_alchemy.mdx", + [2008888] = "World EXPANSION01 DOODADS GENERIC DRAENEI SHOPSIGNS DR_signs_anvil.mdx", + [2008889] = "World EXPANSION01 DOODADS GENERIC DRAENEI SHOPSIGNS DR_signs_axes.mdx", + [2008890] = "World EXPANSION01 DOODADS GENERIC DRAENEI SHOPSIGNS DR_signs_bank.mdx", + [2008891] = "World EXPANSION01 DOODADS GENERIC DRAENEI SHOPSIGNS DR_signs_book.mdx", + [2008892] = "World EXPANSION01 DOODADS GENERIC DRAENEI SHOPSIGNS DR_signs_bow.mdx", + [2008893] = "World EXPANSION01 DOODADS GENERIC DRAENEI SHOPSIGNS DR_signs_bread.mdx", + [2008894] = "World EXPANSION01 DOODADS GENERIC DRAENEI SHOPSIGNS DR_signs_cheese.mdx", + [2008895] = "World EXPANSION01 DOODADS GENERIC DRAENEI SHOPSIGNS DR_signs_container.mdx", + [2008896] = "World EXPANSION01 DOODADS GENERIC DRAENEI SHOPSIGNS DR_signs_cooking.mdx", + [2008897] = "World EXPANSION01 DOODADS GENERIC DRAENEI SHOPSIGNS DR_signs_engineering.mdx", + [2008898] = "World EXPANSION01 DOODADS GENERIC DRAENEI SHOPSIGNS DR_signs_generalshop.mdx", + [2008899] = "World EXPANSION01 DOODADS GENERIC DRAENEI SHOPSIGNS DR_signs_helm.mdx", + [2008900] = "World EXPANSION01 DOODADS GENERIC DRAENEI SHOPSIGNS DR_signs_herbalism.mdx", + [2008901] = "World EXPANSION01 DOODADS GENERIC DRAENEI SHOPSIGNS DR_signs_meat.mdx", + [2008902] = "World EXPANSION01 DOODADS GENERIC DRAENEI SHOPSIGNS DR_signs_poisons.mdx", + [2008903] = "World EXPANSION01 DOODADS GENERIC DRAENEI SHOPSIGNS DR_signs_shield.mdx", + [2008904] = "World EXPANSION01 DOODADS GENERIC DRAENEI SHOPSIGNS DR_signs_staff.mdx", + [2008905] = "World EXPANSION01 DOODADS GENERIC DRAENEI SHOPSIGNS DR_signs_swords.mdx", + [2008906] = "World EXPANSION01 DOODADS GENERIC DRAENEI SHOPSIGNS DR_signs_tailor.mdx", + [2008907] = "World EXPANSION01 DOODADS GENERIC DRAENEI SHOPSIGNS DR_signs_tavern.mdx", + [2008908] = "World EXPANSION01 DOODADS GENERIC DRAENEI Signs DR_Signpost_01.mdx", + [2008909] = "World EXPANSION01 DOODADS GENERIC DRAENEI Signs DR_Signpost_Sign01.mdx", + [2008910] = "World EXPANSION01 DOODADS GENERIC DRAENEI TEMPESTKEEP FactoryBridge.mdx", + [2008911] = "World EXPANSION01 DOODADS GENERIC DRAENEI TEMPESTKEEP FactoryElevator.mdx", + [2008912] = "World EXPANSION01 DOODADS GENERIC DRAENEI TEMPESTKEEP FactoryEnergyCube.mdx", + [2008913] = "World EXPANSION01 DOODADS GENERIC DRAENEI TEMPESTKEEP FactoryEnergyCube_3x3.mdx", + [2008914] = "World EXPANSION01 DOODADS GENERIC DRAENEI TEMPESTKEEP FactoryFloor.mdx", + [2008915] = "World EXPANSION01 DOODADS GENERIC DRAENEI TEMPESTKEEP Narru_Crystal_Corrupted.mdx", + [2008916] = "World EXPANSION01 DOODADS GENERIC DRAENEI TEMPESTKEEP Narru_Crystal_Corrupted_NO_Lightning.mdx", + [2008917] = "World EXPANSION01 DOODADS GENERIC DRAENEI TEMPESTKEEP Raid_Circle_floor.mdx", + [2008918] = "World EXPANSION01 DOODADS GENERIC DRAENEI TEMPESTKEEP atriumbridge.mdx", + [2008919] = "World EXPANSION01 DOODADS GENERIC DRAENEI TUBES draenei_tubes.mdx", + [2008920] = "World EXPANSION01 DOODADS GENERIC DRAENEI TUBES draenei_tubes_offset.mdx", + [2008921] = "World EXPANSION01 DOODADS GENERIC DRAENEI Wall Draenei_AncientWall01.mdx", + [2008922] = "World EXPANSION01 DOODADS GENERIC DRAENEI Wall Draenei_AncientWall02.mdx", + [2008923] = "World EXPANSION01 DOODADS GENERIC DRAENEI crashplate DR_crashplate01.mdx", + [2008924] = "World EXPANSION01 DOODADS GENERIC DRAENEI crashplate DR_crashplate02.mdx", + [2008925] = "World EXPANSION01 DOODADS GENERIC ETHEREAL BARREL ET_Barrel01.mdx", + [2008926] = "World EXPANSION01 DOODADS GENERIC ETHEREAL BARREL ET_Barrel01Off.mdx", + [2008927] = "World EXPANSION01 DOODADS GENERIC ETHEREAL CRATE ET_Crate01.mdx", + [2008928] = "World EXPANSION01 DOODADS GENERIC ETHEREAL CRATE ET_Crate01Off.mdx", + [2008929] = "World EXPANSION01 DOODADS GENERIC ETHEREAL Cage ET_Cage.mdx", + [2008930] = "World EXPANSION01 DOODADS GENERIC ETHEREAL Cage ET_CageBase.mdx", + [2008931] = "World EXPANSION01 DOODADS GENERIC ETHEREAL Collector ET_Collector01.mdx", + [2008932] = "World EXPANSION01 DOODADS GENERIC ETHEREAL CrystalForge ET_CrystalForge.mdx", + [2008933] = "World EXPANSION01 DOODADS GENERIC ETHEREAL CrystalForge ET_CrystalForgeController.mdx", + [2008934] = "World EXPANSION01 DOODADS GENERIC ETHEREAL HolographicStand ET_Holographic_Stand.mdx", + [2008935] = "World EXPANSION01 DOODADS GENERIC ETHEREAL LAMPPOST ET_Lamppost01.mdx", + [2008936] = "World EXPANSION01 DOODADS GENERIC ETHEREAL LAMPPOST ET_Lamppost01Off.mdx", + [2008937] = "World EXPANSION01 DOODADS GENERIC ETHEREAL PORTAL ET_Portal01.mdx", + [2008938] = "World EXPANSION01 DOODADS GENERIC ETHEREAL PORTAL ET_Portal01OffHalf.mdx", + [2008939] = "World EXPANSION01 DOODADS GENERIC ETHEREAL Standard ET_Standard.mdx", + [2008940] = "World EXPANSION01 DOODADS GENERIC ETHEREAL Tents ET_Tent01.mdx", + [2008941] = "World EXPANSION01 DOODADS GENERIC ETHEREAL Tents ET_Tent02.mdx", + [2008942] = "World EXPANSION01 DOODADS GENERIC FishFrenzy FishFrenzy.mdx", + [2008943] = "World EXPANSION01 DOODADS GENERIC Ghostlands Graveyard Ghostlands_Gravestone01.mdx", + [2008944] = "World EXPANSION01 DOODADS GENERIC Ghostlands Graveyard Ghostlands_Gravestone02.mdx", + [2008945] = "World EXPANSION01 DOODADS GENERIC Ghostlands Graveyard Ghostlands_Gravestone03.mdx", + [2008946] = "World EXPANSION01 DOODADS GENERIC Ghostlands Graveyard Ghostlands_Tomb01.mdx", + [2008947] = "World EXPANSION01 DOODADS GENERIC Holograms Hologram_DoomGuard.mdx", + [2008948] = "World EXPANSION01 DOODADS GENERIC Holograms Hologram_Dreadlord.mdx", + [2008949] = "World EXPANSION01 DOODADS GENERIC Holograms Hologram_Eredar.mdx", + [2008950] = "World EXPANSION01 DOODADS GENERIC Holograms Hologram_FelHound.mdx", + [2008951] = "World EXPANSION01 DOODADS GENERIC Holograms Hologram_Felguard.mdx", + [2008952] = "World EXPANSION01 DOODADS GENERIC Holograms Hologram_Ganarg.mdx", + [2008953] = "World EXPANSION01 DOODADS GENERIC Holograms Hologram_Imp.mdx", + [2008954] = "World EXPANSION01 DOODADS GENERIC Holograms Hologram_Infernal.mdx", + [2008955] = "World EXPANSION01 DOODADS GENERIC Holograms Hologram_Moarg.mdx", + [2008956] = "World EXPANSION01 DOODADS GENERIC Holograms Hologram_Pitlord.mdx", + [2008957] = "World EXPANSION01 DOODADS GENERIC Holograms Hologram_Shivan.mdx", + [2008958] = "World EXPANSION01 DOODADS GENERIC Holograms Hologram_Succubus.mdx", + [2008959] = "World EXPANSION01 DOODADS GENERIC Holograms Hologram_VoidWalker.mdx", + [2008960] = "World EXPANSION01 DOODADS GENERIC Holograms Hologram_Wrathguard.mdx", + [2008961] = "World EXPANSION01 DOODADS GENERIC Illidan Banners BannerIllidan.mdx", + [2008962] = "World EXPANSION01 DOODADS GENERIC LostOnes Wagon LO_Wagon_01.mdx", + [2008963] = "World EXPANSION01 DOODADS GENERIC LostOnes WeaponRack LO_Weaponrack.mdx", + [2008964] = "World EXPANSION01 DOODADS GENERIC NAGA Ark NA_Ark.mdx", + [2008965] = "World EXPANSION01 DOODADS GENERIC NAGA Banner NA_Banner01.mdx", + [2008966] = "World EXPANSION01 DOODADS GENERIC NAGA Crates NA_Crate01.mdx", + [2008967] = "World EXPANSION01 DOODADS GENERIC NAGA Crates NA_Crate02.mdx", + [2008968] = "World EXPANSION01 DOODADS GENERIC NAGA Distiller NA_Distiller.mdx", + [2008969] = "World EXPANSION01 DOODADS GENERIC NAGA Jars NA_Jar01.mdx", + [2008970] = "World EXPANSION01 DOODADS GENERIC NAGA Jars NA_Jar02.mdx", + [2008971] = "World EXPANSION01 DOODADS GENERIC NAGA Pagoda NagaPagodaHut01.mdx", + [2008972] = "World EXPANSION01 DOODADS GENERIC NAGA TORCH NA_Torch01.mdx", + [2008973] = "World EXPANSION01 DOODADS GENERIC NAGA WeaponStacks NA_WeaponStack01.mdx", + [2008974] = "World EXPANSION01 DOODADS GENERIC NAGA WeaponStacks NA_WeaponStack02.mdx", + [2008975] = "World EXPANSION01 DOODADS GENERIC OGRE Bones OM_Bones_01.mdx", + [2008976] = "World EXPANSION01 DOODADS GENERIC OGRE Bones OM_Bones_02.mdx", + [2008977] = "World EXPANSION01 DOODADS GENERIC OGRE CHAINS OM_Chains_01.mdx", + [2008978] = "World EXPANSION01 DOODADS GENERIC OGRE CHAINS OM_Chains_02.mdx", + [2008979] = "World EXPANSION01 DOODADS GENERIC OGRE CHAINS OM_Chains_03.mdx", + [2008980] = "World EXPANSION01 DOODADS GENERIC OGRE CHAINS OM_Chains_04.mdx", + [2008981] = "World EXPANSION01 DOODADS GENERIC OGRE Chair OM_Chair_01.mdx", + [2008982] = "World EXPANSION01 DOODADS GENERIC OGRE Fires OM_Campfire_01.mdx", + [2008983] = "World EXPANSION01 DOODADS GENERIC OGRE Fires OM_Torch_01.mdx", + [2008984] = "World EXPANSION01 DOODADS GENERIC OGRE Forge OM_Forge_01.mdx", + [2008985] = "World EXPANSION01 DOODADS GENERIC OGRE Pillar OM_Pillar_01.mdx", + [2008986] = "World EXPANSION01 DOODADS GENERIC OGRE Rocks OM_Rock_01.mdx", + [2008987] = "World EXPANSION01 DOODADS GENERIC OGRE Rocks OM_Rock_02.mdx", + [2008988] = "World EXPANSION01 DOODADS GENERIC OGRE Rocks OM_Rock_03.mdx", + [2008989] = "World EXPANSION01 DOODADS GENERIC OGRE Rocks OM_Rock_04.mdx", + [2008990] = "World EXPANSION01 DOODADS GENERIC OGRE Rocks OM_Rock_05.mdx", + [2008991] = "World EXPANSION01 DOODADS GENERIC OGRE SPIKES OM_Iron_Spike_01.mdx", + [2008992] = "World EXPANSION01 DOODADS GENERIC OGRE SPIKES OM_Iron_Spike_02.mdx", + [2008993] = "World EXPANSION01 DOODADS GENERIC OGRE Stonehenge OM_Stonehenge_01.mdx", + [2008994] = "World EXPANSION01 DOODADS GENERIC OGRE Stonehenge OM_Stonehenge_02.mdx", + [2008995] = "World EXPANSION01 DOODADS GENERIC OGRE Stonehenge OM_Stonehenge_03.mdx", + [2008996] = "World EXPANSION01 DOODADS GENERIC OGRE Table OM_Table_01.mdx", + [2008997] = "World EXPANSION01 DOODADS GENERIC OGRE Tents OM_Tent_01.mdx", + [2008998] = "World EXPANSION01 DOODADS GENERIC OGRE Tents OM_Tent_02.mdx", + [2008999] = "World EXPANSION01 DOODADS GENERIC OGRE Tents OM_Tent_03.mdx", + [2009000] = "World EXPANSION01 DOODADS GENERIC OGRE Totem OM_Totem_01.mdx", + [2009001] = "World EXPANSION01 DOODADS GENERIC OGRE Weapons OM_Weaponrack_01.mdx", + [2009002] = "World EXPANSION01 DOODADS GENERIC OGRE Weapons OM_Weapons_01.mdx", + [2009003] = "World EXPANSION01 DOODADS GENERIC OGRE Weapons OM_Weapons_02.mdx", + [2009004] = "World EXPANSION01 DOODADS GENERIC OGRE Weapons OM_Weapons_03.mdx", + [2009005] = "World EXPANSION01 DOODADS GENERIC OGRE Weapons OM_Weapons_04.mdx", + [2009006] = "World EXPANSION01 DOODADS GENERIC Outland Rocks OverhangRock_Large_03.mdx", + [2009007] = "World EXPANSION01 DOODADS GENERIC Outland Rocks OverhangRock_Small_01.mdx", + [2009008] = "World EXPANSION01 DOODADS GENERIC Outland Rocks OverhangRock_Small_02.mdx", + [2009009] = "World EXPANSION01 DOODADS GENERIC Outland Rocks OverhangRock_Small_03.mdx", + [2009010] = "World EXPANSION01 DOODADS GENERIC SHADOWCOUNCIL Banners ShadowCouncil_Banner01.mdx", + [2009011] = "World EXPANSION01 DOODADS GENERIC SHADOWCOUNCIL Banners ShadowCouncil_Banner02.mdx", + [2009012] = "World EXPANSION01 DOODADS GENERIC SHADOWCOUNCIL MAGICDEVICES ShadowCouncil_MagicDevice01.mdx", + [2009013] = "World EXPANSION01 DOODADS GENERIC SHADOWCOUNCIL MAGICDEVICES ShadowCouncil_MagicDevice02.mdx", + [2009014] = "World EXPANSION01 DOODADS GENERIC SHADOWCOUNCIL Tents ShadowCouncil_Tent01.mdx", + [2009015] = "World EXPANSION01 DOODADS GENERIC SHADOWCOUNCIL Tents ShadowCouncil_Tent02.mdx", + [2009016] = "World EXPANSION01 DOODADS GENERIC SHADOWCOUNCIL Torch ShadowCouncil_Torch.mdx", + [2009017] = "World EXPANSION01 DOODADS GHOSTLANDS Arch Ghostlands_Arch_01.mdx", + [2009018] = "World EXPANSION01 DOODADS GHOSTLANDS Bushes GhostlandsBush01.mdx", + [2009019] = "World EXPANSION01 DOODADS GHOSTLANDS Bushes GhostlandsBush02.mdx", + [2009020] = "World EXPANSION01 DOODADS GHOSTLANDS Fence Fence_Ghostlands01.mdx", + [2009021] = "World EXPANSION01 DOODADS GHOSTLANDS Fence Fence_Ghostlands02.mdx", + [2009022] = "World EXPANSION01 DOODADS GHOSTLANDS Fence Fence_Ghostlands03.mdx", + [2009023] = "World EXPANSION01 DOODADS GHOSTLANDS Fence Fence_Ghostlands04.mdx", + [2009024] = "World EXPANSION01 DOODADS GHOSTLANDS Lampposts BE_Lamppost_Ghostlands01.mdx", + [2009025] = "World EXPANSION01 DOODADS GHOSTLANDS Lampposts BE_Lamppost_Ghostlands02.mdx", + [2009026] = "World EXPANSION01 DOODADS GHOSTLANDS Rocks GhostlandsCliffRock01.mdx", + [2009027] = "World EXPANSION01 DOODADS GHOSTLANDS Rocks GhostlandsCliffRock02.mdx", + [2009028] = "World EXPANSION01 DOODADS GHOSTLANDS Roots GhostlandsSmallRoots01.mdx", + [2009029] = "World EXPANSION01 DOODADS GHOSTLANDS Roots GhostlandsSmallRoots02.mdx", + [2009030] = "World EXPANSION01 DOODADS GHOSTLANDS Roots GhostlandsSmallRoots03.mdx", + [2009031] = "World EXPANSION01 DOODADS GHOSTLANDS Roots GhostlandsSmallRoots04.mdx", + [2009032] = "World EXPANSION01 DOODADS GHOSTLANDS Signpost BE_Signpost_Ghostlands.mdx", + [2009033] = "World EXPANSION01 DOODADS GHOSTLANDS Signpost BE_Signpost_Sign_Ghostlands.mdx", + [2009034] = "World EXPANSION01 DOODADS GHOSTLANDS Skulls Swath_Skull.mdx", + [2009035] = "World EXPANSION01 DOODADS GHOSTLANDS Webs GhostlandsWebDangle_01.mdx", + [2009036] = "World EXPANSION01 DOODADS GHOSTLANDS Webs GhostlandsWeb_01.mdx", + [2009037] = "World EXPANSION01 DOODADS GHOSTLANDS Webs Ghostlands_WebStretch_01.mdx", + [2009038] = "World EXPANSION01 DOODADS GHOSTLANDS moonstone ghostlands_moonstone.mdx", + [2009039] = "World EXPANSION01 DOODADS HELLFIRECITADEL Activedoodads Cube MagtheradonCube.mdx", + [2009040] = "World EXPANSION01 DOODADS HELLFIRECITADEL Activedoodads Doors HF_Mag_door.mdx", + [2009041] = "World EXPANSION01 DOODADS HELLFIRECITADEL Activedoodads Doors hellfire_Bossdoor01.mdx", + [2009042] = "World EXPANSION01 DOODADS HELLFIRECITADEL Activedoodads Raid_FX Hellfire_Raid_FX.mdx", + [2009043] = "World EXPANSION01 DOODADS HELLFIRECITADEL Activedoodads Raid_FX Raid_Column_FX.mdx", + [2009044] = "World EXPANSION01 DOODADS HELLFIRECITADEL DEMONWING Activedoodads Chamber Hellfire_DW_FellConversion", + [2009045] = "World EXPANSION01 DOODADS HELLFIRECITADEL DEMONWING Activedoodads Cracks Hellfire_DW_LargeFloor_Crac", + [2009046] = "World EXPANSION01 DOODADS HELLFIRECITADEL DEMONWING Activedoodads Cracks Hellfire_DW_SmallFloor_Crac", + [2009047] = "World EXPANSION01 DOODADS HELLFIRECITADEL DEMONWING Activedoodads Doors Hellfire_DW_MainPrisonEntry.", + [2009048] = "World EXPANSION01 DOODADS HELLFIRECITADEL DEMONWING Activedoodads Doors Hellfire_DW_PrisonDoor.mdx", + [2009049] = "World EXPANSION01 DOODADS HELLFIRECITADEL DEMONWING Activedoodads Summon_Door Hellfire_DW_SummonRoom", + [2009050] = "World EXPANSION01 DOODADS HELLFIRECITADEL DEMONWING Activedoodads Summoning_power_room Hellfire_DW_S", + [2009051] = "World EXPANSION01 DOODADS HELLFIRECITADEL DEMONWING PASSIVEDOODADS CHAMBER DW_ConversionChamber.mdx", + [2009052] = "World EXPANSION01 DOODADS HELLFIRECITADEL DEMONWING PASSIVEDOODADS CHAMBER Hellfire_DW_ConversionCha", + [2009053] = "World EXPANSION01 DOODADS HELLFIRECITADEL DEMONWING PASSIVEDOODADS CRACKS Hellfire_DW_LargeFloor_Cra", + [2009054] = "World EXPANSION01 DOODADS HELLFIRECITADEL DEMONWING PASSIVEDOODADS CRACKS Hellfire_DW_LargeWall_Crac", + [2009055] = "World EXPANSION01 DOODADS HELLFIRECITADEL DEMONWING PASSIVEDOODADS CRACKS Hellfire_DW_SmallFloor_Cra", + [2009056] = "World EXPANSION01 DOODADS HELLFIRECITADEL DEMONWING PASSIVEDOODADS CRACKS Hellfire_DW_SmallWall_Crac", + [2009057] = "World EXPANSION01 DOODADS HELLFIRECITADEL DEMONWING PASSIVEDOODADS DOORS Hellfire_DW_CellDoor.mdx", + [2009058] = "World EXPANSION01 DOODADS HELLFIRECITADEL DEMONWING PASSIVEDOODADS DOORS Hellfire_DW_PrisonEntry.mdx", + [2009059] = "World EXPANSION01 DOODADS HELLFIRECITADEL DEMONWING PASSIVEDOODADS DW_BRAIZER Hellfire_DW_FloorBraiz", + [2009060] = "World EXPANSION01 DOODADS HELLFIRECITADEL DEMONWING PASSIVEDOODADS DW_BRAIZER Hellfire_DW_HangingBra", + [2009061] = "World EXPANSION01 DOODADS HELLFIRECITADEL DEMONWING PASSIVEDOODADS DW_Banners Hellfire_DW_banner_Typ", + [2009062] = "World EXPANSION01 DOODADS HELLFIRECITADEL DEMONWING PASSIVEDOODADS DW_Banners Hellfire_DW_banner_Typ", + [2009063] = "World EXPANSION01 DOODADS HELLFIRECITADEL DEMONWING PASSIVEDOODADS DW_Banners Hellfire_DW_banner_Typ", + [2009064] = "World EXPANSION01 DOODADS HELLFIRECITADEL DEMONWING PASSIVEDOODADS DW_Banners Hellfire_DW_banner_Typ", + [2009065] = "World EXPANSION01 DOODADS HELLFIRECITADEL DEMONWING PASSIVEDOODADS DW_Banners Hellfire_DW_banner_Typ", + [2009066] = "World EXPANSION01 DOODADS HELLFIRECITADEL DEMONWING PASSIVEDOODADS DW_Banners Hellfire_DW_banner_Typ", + [2009067] = "World EXPANSION01 DOODADS HELLFIRECITADEL DEMONWING PASSIVEDOODADS DW_HOOKS Hellfire_DW_hook.mdx", + [2009068] = "World EXPANSION01 DOODADS HELLFIRECITADEL DEMONWING PASSIVEDOODADS DW_HOOKS Hellfire_DW_hook_Swing.m", + [2009069] = "World EXPANSION01 DOODADS HELLFIRECITADEL DEMONWING PASSIVEDOODADS DW_Lantern HF_DemonWing_Lantern_N", + [2009070] = "World EXPANSION01 DOODADS HELLFIRECITADEL DEMONWING PASSIVEDOODADS DW_Pipes Hellfire_DW_pipe_Type1.m", + [2009071] = "World EXPANSION01 DOODADS HELLFIRECITADEL DEMONWING PASSIVEDOODADS DW_Pipes Hellfire_DW_pipe_Type2.m", + [2009072] = "World EXPANSION01 DOODADS HELLFIRECITADEL DEMONWING PASSIVEDOODADS DW_Pipes Hellfire_DW_pipe_Type3.m", + [2009073] = "World EXPANSION01 DOODADS HELLFIRECITADEL DEMONWING PASSIVEDOODADS DW_Pipes Hellfire_DW_pipe_Type4.m", + [2009074] = "World EXPANSION01 DOODADS HELLFIRECITADEL DEMONWING PASSIVEDOODADS DW_Pipes Hellfire_DW_pipe_TypeBas", + [2009075] = "World EXPANSION01 DOODADS HELLFIRECITADEL DEMONWING PASSIVEDOODADS LANTERN HF_DemonWing_Lantern.mdx", + [2009076] = "World EXPANSION01 DOODADS HELLFIRECITADEL DEMONWING PASSIVEDOODADS MACHINE Hellfire_DW_Machine_FIN2.", + [2009077] = "World EXPANSION01 DOODADS HELLFIRECITADEL DEMONWING PASSIVEDOODADS MACHINE Hellfire_DW_Machine_Ver2.", + [2009078] = "World EXPANSION01 DOODADS HELLFIRECITADEL DEMONWING PASSIVEDOODADS MACHINE Hellfire_DW_Machine_Ver3.", + [2009079] = "World EXPANSION01 DOODADS HELLFIRECITADEL DEMONWING PASSIVEDOODADS MACHINE Hellfire_DW_Tank.mdx", + [2009080] = "World EXPANSION01 DOODADS HELLFIRECITADEL PASSIVEDOODADS BRAIZERS Hellfire_FloorBraizer.mdx", + [2009081] = "World EXPANSION01 DOODADS HELLFIRECITADEL PASSIVEDOODADS BRAIZERS Hellfire_FloorBraizer_Broken.mdx", + [2009082] = "World EXPANSION01 DOODADS HELLFIRECITADEL PASSIVEDOODADS BRAIZERS Hellfire_FloorBraizer_Purple.mdx", + [2009083] = "World EXPANSION01 DOODADS HELLFIRECITADEL PASSIVEDOODADS BRAIZERS Hellfire_HangingBraizer.mdx", + [2009084] = "World EXPANSION01 DOODADS HELLFIRECITADEL PASSIVEDOODADS BRAIZERS Hellfire_HangingBraizer_PurpleFlam", + [2009085] = "World EXPANSION01 DOODADS HELLFIRECITADEL PASSIVEDOODADS BRAIZERS Hellfire_StandingBraizer_Purple.md", + [2009086] = "World EXPANSION01 DOODADS HELLFIRECITADEL PASSIVEDOODADS Banners Hellfire_banner_Type01.mdx", + [2009087] = "World EXPANSION01 DOODADS HELLFIRECITADEL PASSIVEDOODADS Banners Hellfire_banner_Type01_burning.mdx", + [2009088] = "World EXPANSION01 DOODADS HELLFIRECITADEL PASSIVEDOODADS Banners Hellfire_banner_Type02.mdx", + [2009089] = "World EXPANSION01 DOODADS HELLFIRECITADEL PASSIVEDOODADS Banners Hellfire_banner_Type03.mdx", + [2009090] = "World EXPANSION01 DOODADS HELLFIRECITADEL PASSIVEDOODADS Banners Hellfire_banner_Type04.mdx", + [2009091] = "World EXPANSION01 DOODADS HELLFIRECITADEL PASSIVEDOODADS Banners Hellfire_banner_TypeLarge_LongChain", + [2009092] = "World EXPANSION01 DOODADS HELLFIRECITADEL PASSIVEDOODADS Banners Hellfire_banner_TypeSmall_ShortChai", + [2009093] = "World EXPANSION01 DOODADS HELLFIRECITADEL PASSIVEDOODADS Banners Hellfire_banner_TypeWide.mdx", + [2009094] = "World EXPANSION01 DOODADS HELLFIRECITADEL PASSIVEDOODADS TORCHES Hellfire_GasTorch01.mdx", + [2009095] = "World EXPANSION01 DOODADS HELLFIRECITADEL PASSIVEDOODADS Throne Hellfire_militaryWing_Throne.mdx", + [2009096] = "World EXPANSION01 DOODADS HellfirePeninsula Banners Hellfire_OldOrcBanner01.mdx", + [2009097] = "World EXPANSION01 DOODADS HellfirePeninsula Banners Hellfire_OldOrcBanner02.mdx", + [2009098] = "World EXPANSION01 DOODADS HellfirePeninsula Bushes HellfireBushThorn01.mdx", + [2009099] = "World EXPANSION01 DOODADS HellfirePeninsula Bushes HellfireBushThorn02.mdx", + [2009100] = "World EXPANSION01 DOODADS HellfirePeninsula Bushes HellfireBushThorn03.mdx", + [2009101] = "World EXPANSION01 DOODADS HellfirePeninsula CRYSTALS HellfireCrystal01.mdx", + [2009102] = "World EXPANSION01 DOODADS HellfirePeninsula CRYSTALS HellfireCrystalFormation_01.mdx", + [2009103] = "World EXPANSION01 DOODADS HellfirePeninsula CRYSTALS HellfireCrystalFormation_02.mdx", + [2009104] = "World EXPANSION01 DOODADS HellfirePeninsula CRYSTALS HellfireCrystalFormation_03.mdx", + [2009105] = "World EXPANSION01 DOODADS HellfirePeninsula Curb HellfireCurb_01.mdx", + [2009106] = "World EXPANSION01 DOODADS HellfirePeninsula Curb HellfireCurb_02.mdx", + [2009107] = "World EXPANSION01 DOODADS HellfirePeninsula Curb HellfireCurb_03.mdx", + [2009108] = "World EXPANSION01 DOODADS HellfirePeninsula Curb HellfireCurb_Fire_01.mdx", + [2009109] = "World EXPANSION01 DOODADS HellfirePeninsula Curb HellfireCurb_Fire_02.mdx", + [2009110] = "World EXPANSION01 DOODADS HellfirePeninsula Curb Hellfire_fireparticle.mdx", + [2009111] = "World EXPANSION01 DOODADS HellfirePeninsula DraeneiFence DR_post_hellfire.mdx", + [2009112] = "World EXPANSION01 DOODADS HellfirePeninsula DraeneiFence DR_post_hellfire_ruin.mdx", + [2009113] = "World EXPANSION01 DOODADS HellfirePeninsula DraeneiFence DR_wall_hellfire.mdx", + [2009114] = "World EXPANSION01 DOODADS HellfirePeninsula DraeneiFence DR_wall_hellfire_ruin.mdx", + [2009115] = "World EXPANSION01 DOODADS HellfirePeninsula FIREWALL Hellfire_Fel_Firewall_01.mdx", + [2009116] = "World EXPANSION01 DOODADS HellfirePeninsula HellfireFloatingRock HellfireFloatingRock_Large_01.mdx", + [2009117] = "World EXPANSION01 DOODADS HellfirePeninsula HellfireFloatingRock HellfireFloatingRock_Large_02.mdx", + [2009118] = "World EXPANSION01 DOODADS HellfirePeninsula HellfireFloatingRock HellfireFloatingRock_Large_03.mdx", + [2009119] = "World EXPANSION01 DOODADS HellfirePeninsula HellfireFloatingRock HellfireFloatingRock_Small_01.mdx", + [2009120] = "World EXPANSION01 DOODADS HellfirePeninsula HellfireFloatingRock HellfireFloatingRock_Small_02.mdx", + [2009121] = "World EXPANSION01 DOODADS HellfirePeninsula HellfireFloatingRock HellfireFloatingRock_Small_03.mdx", + [2009122] = "World EXPANSION01 DOODADS HellfirePeninsula HellfireOverhangRock Hellfire_OverhangRock_Large_01.mdx", + [2009123] = "World EXPANSION01 DOODADS HellfirePeninsula HellfireOverhangRock Hellfire_OverhangRock_Large_02.mdx", + [2009124] = "World EXPANSION01 DOODADS HellfirePeninsula HellfireOverhangRock Hellfire_OverhangRock_Large_03.mdx", + [2009125] = "World EXPANSION01 DOODADS HellfirePeninsula HellfireOverhangRock Hellfire_OverhangRock_Small_01.mdx", + [2009126] = "World EXPANSION01 DOODADS HellfirePeninsula HellfireOverhangRock Hellfire_OverhangRock_Small_02.mdx", + [2009127] = "World EXPANSION01 DOODADS HellfirePeninsula HellfireOverhangRock Hellfire_OverhangRock_Small_03.mdx", + [2009128] = "World EXPANSION01 DOODADS HellfirePeninsula HellfireWarpStorm HellfireWarpStorm01.mdx", + [2009129] = "World EXPANSION01 DOODADS HellfirePeninsula Monolith HellfireMonolith01.mdx", + [2009130] = "World EXPANSION01 DOODADS HellfirePeninsula PVPFlags Hellfire_PVPFlags_NorthFort.mdx", + [2009131] = "World EXPANSION01 DOODADS HellfirePeninsula PVPFlags Hellfire_PVPFlags_NorthFortFlagsA.mdx", + [2009132] = "World EXPANSION01 DOODADS HellfirePeninsula PVPFlags Hellfire_PVPFlags_NorthFortFlagsH.mdx", + [2009133] = "World EXPANSION01 DOODADS HellfirePeninsula PVPFlags Hellfire_PVPFlags_NorthFortFlagsN.mdx", + [2009134] = "World EXPANSION01 DOODADS HellfirePeninsula PVPFlags Hellfire_PVPFlags_SouthFort.mdx", + [2009135] = "World EXPANSION01 DOODADS HellfirePeninsula PVPFlags Hellfire_PVPFlags_SouthFortFlagsA.mdx", + [2009136] = "World EXPANSION01 DOODADS HellfirePeninsula PVPFlags Hellfire_PVPFlags_SouthFortFlagsH.mdx", + [2009137] = "World EXPANSION01 DOODADS HellfirePeninsula PVPFlags Hellfire_PVPFlags_SouthFortFlagsN.mdx", + [2009138] = "World EXPANSION01 DOODADS HellfirePeninsula PVPFlags Hellfire_PVPFlags_WestFort.mdx", + [2009139] = "World EXPANSION01 DOODADS HellfirePeninsula PVPFlags Hellfire_PVPFlags_WestFortFlagsA.mdx", + [2009140] = "World EXPANSION01 DOODADS HellfirePeninsula PVPFlags Hellfire_PVPFlags_WestFortFlagsH.mdx", + [2009141] = "World EXPANSION01 DOODADS HellfirePeninsula PVPFlags Hellfire_PVPFlags_WestFortFlagsN.mdx", + [2009142] = "World EXPANSION01 DOODADS HellfirePeninsula Platform Ancient_draenei_plaform_06.mdx", + [2009143] = "World EXPANSION01 DOODADS HellfirePeninsula Platform Ancient_draenei_plaform_07.mdx", + [2009144] = "World EXPANSION01 DOODADS HellfirePeninsula RocksCliff HellfireCliffRocks01.mdx", + [2009145] = "World EXPANSION01 DOODADS HellfirePeninsula RocksCliff HellfireCliffRocks02.mdx", + [2009146] = "World EXPANSION01 DOODADS HellfirePeninsula RocksCliff HellfireCliffRocks03.mdx", + [2009147] = "World EXPANSION01 DOODADS HellfirePeninsula RocksCliff HellfireCliffRocks04.mdx", + [2009148] = "World EXPANSION01 DOODADS HellfirePeninsula RocksCliff HellfireCliffRocks05.mdx", + [2009149] = "World EXPANSION01 DOODADS HellfirePeninsula RocksFloating HellfireRocks_FloatingLarge01.mdx", + [2009150] = "World EXPANSION01 DOODADS HellfirePeninsula RocksFloating HellfireRocks_FloatingLarge02.mdx", + [2009151] = "World EXPANSION01 DOODADS HellfirePeninsula RocksFloating HellfireRocks_FloatingLarge03.mdx", + [2009152] = "World EXPANSION01 DOODADS HellfirePeninsula RocksFloating HellfireRocks_FloatingMedium01.mdx", + [2009153] = "World EXPANSION01 DOODADS HellfirePeninsula RocksFloating HellfireRocks_FloatingMedium02.mdx", + [2009154] = "World EXPANSION01 DOODADS HellfirePeninsula RocksFloating HellfireRocks_FloatingMedium03.mdx", + [2009155] = "World EXPANSION01 DOODADS HellfirePeninsula RocksFloating HellfireRocks_FloatingSmall01.mdx", + [2009156] = "World EXPANSION01 DOODADS HellfirePeninsula RocksFloating HellfireRocks_FloatingSmall02.mdx", + [2009157] = "World EXPANSION01 DOODADS HellfirePeninsula RocksFloating HellfireRocks_FloatingSmall03.mdx", + [2009158] = "World EXPANSION01 DOODADS HellfirePeninsula Rocks HellfireRock_Razor01.mdx", + [2009159] = "World EXPANSION01 DOODADS HellfirePeninsula Rocks HellfireRock_Razor02.mdx", + [2009160] = "World EXPANSION01 DOODADS HellfirePeninsula Rocks HellfireRock_Razor03.mdx", + [2009161] = "World EXPANSION01 DOODADS HellfirePeninsula Rocks HellfireRock_Short01.mdx", + [2009162] = "World EXPANSION01 DOODADS HellfirePeninsula Rocks HellfireRock_Short02.mdx", + [2009163] = "World EXPANSION01 DOODADS HellfirePeninsula Rocks HellfireRock_Short03.mdx", + [2009164] = "World EXPANSION01 DOODADS HellfirePeninsula Rocks HellfireRock_tall01.mdx", + [2009165] = "World EXPANSION01 DOODADS HellfirePeninsula Rocks HellfireRock_tall02.mdx", + [2009166] = "World EXPANSION01 DOODADS HellfirePeninsula Rocks HellfireRock_tall03.mdx", + [2009167] = "World EXPANSION01 DOODADS HellfirePeninsula SandTrap HellfireSandTrap.mdx", + [2009168] = "World EXPANSION01 DOODADS HellfirePeninsula Trees HellfireSeedPod01.mdx", + [2009169] = "World EXPANSION01 DOODADS HellfirePeninsula Trees HellfireTreeThorns01.mdx", + [2009170] = "World EXPANSION01 DOODADS HellfirePeninsula Trees HellfireTreeThorns02.mdx", + [2009171] = "World EXPANSION01 DOODADS HellfirePeninsula Trees HellfireTreeThorns03.mdx", + [2009172] = "World EXPANSION01 DOODADS HellfirePeninsula Trees HellfireTreeThorns04.mdx", + [2009173] = "World EXPANSION01 DOODADS HellfirePeninsula Trees HellfireTreeThorns05.mdx", + [2009174] = "World EXPANSION01 DOODADS HellfirePeninsula Trees HellfireTreeThorns06.mdx", + [2009175] = "World EXPANSION01 DOODADS HellfirePeninsula Trees HellfireTreeThornsPods01.mdx", + [2009176] = "World EXPANSION01 DOODADS HellfirePeninsula gravestones Hellfire_gravestones_Horde_01.mdx", + [2009177] = "World EXPANSION01 DOODADS HellfirePeninsula gravestones Hellfire_gravestones_Horde_02.mdx", + [2009178] = "World EXPANSION01 DOODADS HellfirePeninsula gravestones Hellfire_gravestones_Horde_03.mdx", + [2009179] = "World EXPANSION01 DOODADS HellfirePeninsula lamppost Ancient_Drainei_LampPost.mdx", + [2009180] = "World EXPANSION01 DOODADS HellfirePeninsula lamppost Ancient_Drainei_LampPost_Ruined.mdx", + [2009181] = "World EXPANSION01 DOODADS HellfirePeninsula lamppost DR_Signpost_Sign_ancient.mdx", + [2009182] = "World EXPANSION01 DOODADS HellfirePeninsula lamppost DR_Signpost_ancient.mdx", + [2009183] = "World EXPANSION01 DOODADS M2lights m2_light_lightblue.mdx", + [2009184] = "World EXPANSION01 DOODADS NAGRAND Bush NagrandBush01.mdx", + [2009185] = "World EXPANSION01 DOODADS NAGRAND Bush NagrandBush02.mdx", + [2009186] = "World EXPANSION01 DOODADS NAGRAND Bush NagrandBush03.mdx", + [2009187] = "World EXPANSION01 DOODADS NAGRAND Bush NagrandBush04.mdx", + [2009188] = "World EXPANSION01 DOODADS NAGRAND DIAMONDMOUNT DM_Crystal_Bunch.mdx", + [2009189] = "World EXPANSION01 DOODADS NAGRAND DIAMONDMOUNT DM_Crystal_Large.mdx", + [2009190] = "World EXPANSION01 DOODADS NAGRAND DIAMONDMOUNT DM_Crystal_Slim.mdx", + [2009191] = "World EXPANSION01 DOODADS NAGRAND DIAMONDMOUNT Diamond Moutain.mdx", + [2009192] = "World EXPANSION01 DOODADS NAGRAND DIAMONDMOUNT DiamondMountain_Bit.mdx", + [2009193] = "World EXPANSION01 DOODADS NAGRAND DIAMONDMOUNT DiamondMountain_Final.mdx", + [2009194] = "World EXPANSION01 DOODADS NAGRAND DIAMONDMOUNT DiamondMountain_MediumBit.mdx", + [2009195] = "World EXPANSION01 DOODADS NAGRAND Grass NagrandTest.mdx", + [2009196] = "World EXPANSION01 DOODADS NAGRAND Roots NagrandCorruptedRoot01.mdx", + [2009197] = "World EXPANSION01 DOODADS NAGRAND Roots NagrandCorruptedRoot02.mdx", + [2009198] = "World EXPANSION01 DOODADS NAGRAND Roots NagrandRoot01.mdx", + [2009199] = "World EXPANSION01 DOODADS NAGRAND Roots NagrandRoot01varA.mdx", + [2009200] = "World EXPANSION01 DOODADS NAGRAND Roots NagrandRoot02.mdx", + [2009201] = "World EXPANSION01 DOODADS NAGRAND Roots NagrandRoot02varA.mdx", + [2009202] = "World EXPANSION01 DOODADS NAGRAND Roots NagrandRoot03.mdx", + [2009203] = "World EXPANSION01 DOODADS NAGRAND Roots NagrandRoot03varA.mdx", + [2009204] = "World EXPANSION01 DOODADS NAGRAND Roots NagrandRoot04.mdx", + [2009205] = "World EXPANSION01 DOODADS NAGRAND Roots NagrandRoot04varA.mdx", + [2009206] = "World EXPANSION01 DOODADS NAGRAND Roots NagrandRoot05.mdx", + [2009207] = "World EXPANSION01 DOODADS NAGRAND Roots NagrandRoot05varA.mdx", + [2009208] = "World EXPANSION01 DOODADS NAGRAND Trees NagrandCorruptedTree01.mdx", + [2009209] = "World EXPANSION01 DOODADS NAGRAND Trees NagrandCorruptedTree02.mdx", + [2009210] = "World EXPANSION01 DOODADS NAGRAND Trees NagrandCorruptedTree03.mdx", + [2009211] = "World EXPANSION01 DOODADS NAGRAND Trees NagrandTree01.mdx", + [2009212] = "World EXPANSION01 DOODADS NAGRAND Trees NagrandTree02.mdx", + [2009213] = "World EXPANSION01 DOODADS NAGRAND Trees NagrandTree03.mdx", + [2009214] = "World EXPANSION01 DOODADS NAGRAND Trees NagrandTree04.mdx", + [2009215] = "World EXPANSION01 DOODADS NAGRAND Trees NagrandTree05.mdx", + [2009216] = "World EXPANSION01 DOODADS NAGRAND Trees NagrandTree06.mdx", + [2009217] = "World EXPANSION01 DOODADS NAGRAND Trees NagrandTree07.mdx", + [2009218] = "World EXPANSION01 DOODADS NAGRAND Trees NagrandTree08.mdx", + [2009219] = "World EXPANSION01 DOODADS NAGRAND Trees NagrandTree09.mdx", + [2009220] = "World EXPANSION01 DOODADS NETHERSTORM BIODOMES NS_BioDome_All_FX_North.mdx", + [2009221] = "World EXPANSION01 DOODADS NETHERSTORM BIODOMES NS_BioDome_All_FX_South.mdx", + [2009222] = "World EXPANSION01 DOODADS NETHERSTORM BIODOMES NS_BioDome_All_FX_Stormspire.mdx", + [2009223] = "World EXPANSION01 DOODADS NETHERSTORM BIODOMES NS_BioDome_BG.mdx", + [2009224] = "World EXPANSION01 DOODADS NETHERSTORM BIODOMES NS_BioDome_Generic.mdx", + [2009225] = "World EXPANSION01 DOODADS NETHERSTORM BIODOMES NS_BioDome_Stormspire.mdx", + [2009226] = "World EXPANSION01 DOODADS NETHERSTORM BIODOMES NS_BioDome_device.mdx", + [2009227] = "World EXPANSION01 DOODADS NETHERSTORM BIODOMES NS_BioDome_pylon_effects.mdx", + [2009228] = "World EXPANSION01 DOODADS NETHERSTORM COLLECTORTOP CollectorTop.mdx", + [2009229] = "World EXPANSION01 DOODADS NETHERSTORM COLLECTORTOP CollectorTop_Nether.mdx", + [2009230] = "World EXPANSION01 DOODADS NETHERSTORM COLLECTORTOP CollectorTop_off.mdx", + [2009231] = "World EXPANSION01 DOODADS NETHERSTORM CollectorCap NetherCollectorCap.mdx", + [2009232] = "World EXPANSION01 DOODADS NETHERSTORM CollectorTubes CollectorTubes.mdx", + [2009233] = "World EXPANSION01 DOODADS NETHERSTORM CollectorTubes CollectorTubes_building_attach.mdx", + [2009234] = "World EXPANSION01 DOODADS NETHERSTORM CollectorTubes CollectorTubes_building_attach_off.mdx", + [2009235] = "World EXPANSION01 DOODADS NETHERSTORM CollectorTubes CollectorTubes_joint_45.mdx", + [2009236] = "World EXPANSION01 DOODADS NETHERSTORM CollectorTubes CollectorTubes_joint_90.mdx", + [2009237] = "World EXPANSION01 DOODADS NETHERSTORM CollectorTubes CollectorTubes_joint_ground.mdx", + [2009238] = "World EXPANSION01 DOODADS NETHERSTORM CollectorTubes CollectorTubes_straight.mdx", + [2009239] = "World EXPANSION01 DOODADS NETHERSTORM CollectorTubes CollectorTubes_straight_medium.mdx", + [2009240] = "World EXPANSION01 DOODADS NETHERSTORM CollectorTubes CollectorTubes_straight_medium_off.mdx", + [2009241] = "World EXPANSION01 DOODADS NETHERSTORM CollectorTubes CollectorTubes_straight_off.mdx", + [2009242] = "World EXPANSION01 DOODADS NETHERSTORM CollectorTubes CollectorTubes_straight_short.mdx", + [2009243] = "World EXPANSION01 DOODADS NETHERSTORM CollectorTubes CollectorTubes_straight_short_off.mdx", + [2009244] = "World EXPANSION01 DOODADS NETHERSTORM CollectorTubes CollectorTubes_straight_states.mdx", + [2009245] = "World EXPANSION01 DOODADS NETHERSTORM CollectorTubes CollectorTubes_support.mdx", + [2009246] = "World EXPANSION01 DOODADS NETHERSTORM Crackeffects NetherstormCrackSmoke01.mdx", + [2009247] = "World EXPANSION01 DOODADS NETHERSTORM Crackeffects NetherstormCrackSmokeBlue.mdx", + [2009248] = "World EXPANSION01 DOODADS NETHERSTORM DIRT NetherGraveDirtMound01.mdx", + [2009249] = "World EXPANSION01 DOODADS NETHERSTORM Float_Particles Netherstorm_Particles.mdx", + [2009250] = "World EXPANSION01 DOODADS NETHERSTORM Float_Particles Netherstorm_Particles_Pink.mdx", + [2009251] = "World EXPANSION01 DOODADS NETHERSTORM FloatingRocks Netherstorm_FloatingSmall01.mdx", + [2009252] = "World EXPANSION01 DOODADS NETHERSTORM FloatingRocks Netherstorm_FloatingSmall02.mdx", + [2009253] = "World EXPANSION01 DOODADS NETHERSTORM FloatingRocks Netherstorm_OverhangRock_Large_01.mdx", + [2009254] = "World EXPANSION01 DOODADS NETHERSTORM FloatingRocks Netherstorm_OverhangRock_Large_02.mdx", + [2009255] = "World EXPANSION01 DOODADS NETHERSTORM FloatingRocks Netherstorm_OverhangRock_Small_01.mdx", + [2009256] = "World EXPANSION01 DOODADS NETHERSTORM FloatingRocks Netherstorm_OverhangRock_Small_02.mdx", + [2009257] = "World EXPANSION01 DOODADS NETHERSTORM FloatingRocks Netherstorm_OverhangRock_Small_03.mdx", + [2009258] = "World EXPANSION01 DOODADS NETHERSTORM FloatingRocks Netherstorm_Short02.mdx", + [2009259] = "World EXPANSION01 DOODADS NETHERSTORM GOBLINBRIDGE OL_GoblinBridge_Gears01.mdx", + [2009260] = "World EXPANSION01 DOODADS NETHERSTORM GoblinWall Netherstorm_GoblinWall01.mdx", + [2009261] = "World EXPANSION01 DOODADS NETHERSTORM GoblinWall Netherstorm_GoblinWall02.mdx", + [2009262] = "World EXPANSION01 DOODADS NETHERSTORM GoblinWall Netherstorm_GoblinWallCurve01.mdx", + [2009263] = "World EXPANSION01 DOODADS NETHERSTORM GoblinWall Netherstorm_GoblinWallGate01.mdx", + [2009264] = "World EXPANSION01 DOODADS NETHERSTORM GoblinWall Netherstorm_GoblinWallPost01.mdx", + [2009265] = "World EXPANSION01 DOODADS NETHERSTORM GoblinWall Netherstorm_GoblinWall_BlastEast.mdx", + [2009266] = "World EXPANSION01 DOODADS NETHERSTORM GoblinWall Netherstorm_GoblinWall_BlastWest.mdx", + [2009267] = "World EXPANSION01 DOODADS NETHERSTORM LIGHTNING NetherstormCrackLighting01.mdx", + [2009268] = "World EXPANSION01 DOODADS NETHERSTORM LIGHTNING NetherstormCrackSmokeOnly01.mdx", + [2009269] = "World EXPANSION01 DOODADS NETHERSTORM LIGHTNING NetherstormLightning01.mdx", + [2009270] = "World EXPANSION01 DOODADS NETHERSTORM LIGHTNING NetherstormLightning02.mdx", + [2009271] = "World EXPANSION01 DOODADS NETHERSTORM LIGHTNING NetherstormLightning03.mdx", + [2009272] = "World EXPANSION01 DOODADS NETHERSTORM LIGHTNING NetherstormLightning04.mdx", + [2009273] = "World EXPANSION01 DOODADS NETHERSTORM LIGHTNING NetherstormLightning05.mdx", + [2009274] = "World EXPANSION01 DOODADS NETHERSTORM LIGHTNING NetherstormLightning06.mdx", + [2009275] = "World EXPANSION01 DOODADS NETHERSTORM Rocks NS_Rock_01.mdx", + [2009276] = "World EXPANSION01 DOODADS NETHERSTORM Rocks NS_Rock_02.mdx", + [2009277] = "World EXPANSION01 DOODADS NETHERSTORM Rocks NS_Rock_03.mdx", + [2009278] = "World EXPANSION01 DOODADS NETHERSTORM Rocks NS_Rock_04.mdx", + [2009279] = "World EXPANSION01 DOODADS NETHERSTORM Rocks NS_Rock_05.mdx", + [2009280] = "World EXPANSION01 DOODADS NETHERSTORM Rocks NS_Rock_06.mdx", + [2009281] = "World EXPANSION01 DOODADS NETHERSTORM Rocks NS_Rock_07.mdx", + [2009282] = "World EXPANSION01 DOODADS NETHERSTORM Rocks NS_Rock_08.mdx", + [2009283] = "World EXPANSION01 DOODADS NETHERSTORM Rocks NS_Rock_09.mdx", + [2009284] = "World EXPANSION01 DOODADS NETHERSTORM Rocks NS_Rock_10.mdx", + [2009285] = "World EXPANSION01 DOODADS NETHERSTORM Rocks NS_Rock_11.mdx", + [2009286] = "World EXPANSION01 DOODADS NETHERSTORM Rocks NS_Rock_12.mdx", + [2009287] = "World EXPANSION01 DOODADS NETHERSTORM Rocks NS_Rock_13.mdx", + [2009288] = "World EXPANSION01 DOODADS NETHERSTORM Rocks NS_Rock_14.mdx", + [2009289] = "World EXPANSION01 DOODADS NETHERSTORM SporeMound NetherstormSporeMound01.mdx", + [2009290] = "World EXPANSION01 DOODADS SHATTRATH Activedoodads elevator AncDrae_elevatorPiece.mdx", + [2009291] = "World EXPANSION01 DOODADS SHATTRATH Activedoodads elevator AncDrae_elevatorPiece_netherstorm.mdx", + [2009292] = "World EXPANSION01 DOODADS SHATTRATH Activedoodads events shattrathSoupTent.mdx", + [2009293] = "World EXPANSION01 DOODADS SHATTRATH PASSIVEDOODADS BattlemasterPedestal BattlemasterPedestal.mdx", + [2009294] = "World EXPANSION01 DOODADS SHATTRATH PASSIVEDOODADS Bookshelf Ancient_D_Bookshelf.mdx", + [2009295] = "World EXPANSION01 DOODADS SHATTRATH PASSIVEDOODADS CRYSTAL_TOPS HF_outpostcrystals.mdx", + [2009296] = "World EXPANSION01 DOODADS SHATTRATH PASSIVEDOODADS CRYSTAL_TOPS Outpost_Crystals1.mdx", + [2009297] = "World EXPANSION01 DOODADS SHATTRATH PASSIVEDOODADS CRYSTAL_TOPS Shattrath_Crystal_Bank.mdx", + [2009298] = "World EXPANSION01 DOODADS SHATTRATH PASSIVEDOODADS CRYSTAL_TOPS Shattrath_Crystal_Inn_Bottom.mdx", + [2009299] = "World EXPANSION01 DOODADS SHATTRATH PASSIVEDOODADS CRYSTAL_TOPS Shattrath_Crystal_Inn_Floating.mdx", + [2009300] = "World EXPANSION01 DOODADS SHATTRATH PASSIVEDOODADS CRYSTAL_TOPS Shattrath_Crystal_Temple_EXT.mdx", + [2009301] = "World EXPANSION01 DOODADS SHATTRATH PASSIVEDOODADS CRYSTAL_TOPS Shattrath_Crystal_Temple_INT.mdx", + [2009302] = "World EXPANSION01 DOODADS SHATTRATH PASSIVEDOODADS CRYSTAL_TOPS Shattrath_Crystal_Terrace.mdx", + [2009303] = "World EXPANSION01 DOODADS SHATTRATH PASSIVEDOODADS CRYSTAL_TOPS Shattrath_Crystal_holyAldurtemple.md", + [2009304] = "World EXPANSION01 DOODADS SHATTRATH PASSIVEDOODADS CRYSTAL_TOPS Shattrath_Crystal_hutA.mdx", + [2009305] = "World EXPANSION01 DOODADS SHATTRATH PASSIVEDOODADS CRYSTAL_TOPS Shattrath_Crystal_hutB.mdx", + [2009306] = "World EXPANSION01 DOODADS SHATTRATH PASSIVEDOODADS CRYSTAL_TOPS Shattrath_Crystal_hutC.mdx", + [2009307] = "World EXPANSION01 DOODADS SHATTRATH PASSIVEDOODADS CRYSTAL_TOPS Shattrath_Crystal_outpost.mdx", + [2009308] = "World EXPANSION01 DOODADS SHATTRATH PASSIVEDOODADS Central_Energy_FX Shattrath_Narru_Energy_FX.mdx", + [2009309] = "World EXPANSION01 DOODADS SHATTRATH PASSIVEDOODADS Holy_Energy_FX Shattrath_Draenei_Holy_FX.mdx", + [2009310] = "World EXPANSION01 DOODADS SHATTRATH PASSIVEDOODADS LIGHTING Ancient_D_Braizer.mdx", + [2009311] = "World EXPANSION01 DOODADS SHATTRATH PASSIVEDOODADS LIGHTING Ancient_D_Braizer_Blue.mdx", + [2009312] = "World EXPANSION01 DOODADS SHATTRATH PASSIVEDOODADS LIGHTING Ancient_D_Braizer_Blue_LowBatch.mdx", + [2009313] = "World EXPANSION01 DOODADS SHATTRATH PASSIVEDOODADS LIGHTING Ancient_D_Braizer_Blue_ShortSmoke.mdx", + [2009314] = "World EXPANSION01 DOODADS SHATTRATH PASSIVEDOODADS LIGHTING Ancient_D_Braizer_Broken.mdx", + [2009315] = "World EXPANSION01 DOODADS SHATTRATH PASSIVEDOODADS LIGHTING Ancient_D_Braizer_Red.mdx", + [2009316] = "World EXPANSION01 DOODADS SHATTRATH PASSIVEDOODADS LIGHTING Ancient_D_Sconce.mdx", + [2009317] = "World EXPANSION01 DOODADS SHATTRATH PASSIVEDOODADS LIGHTING Ancient_D_Sconce_Off.mdx", + [2009318] = "World EXPANSION01 DOODADS SHATTRATH PASSIVEDOODADS LIGHTING Ancient_D_Standing_Light.mdx", + [2009319] = "World EXPANSION01 DOODADS SHATTRATH PASSIVEDOODADS LIGHTING Ancient_D_Standing_Light_off.mdx", + [2009320] = "World EXPANSION01 DOODADS SHATTRATH PASSIVEDOODADS giantdoodads Shattrath_scryerDoodads.mdx", + [2009321] = "World EXPANSION01 DOODADS SHATTRATH PASSIVEDOODADS giantdoodads Shattrath_scryerDoodads_backcrates.m", + [2009322] = "World EXPANSION01 DOODADS SILVERMOON Bushes SilvermoonBush05.mdx", + [2009323] = "World EXPANSION01 DOODADS SILVERMOON Bushes SilvermoonBush06.mdx", + [2009324] = "World EXPANSION01 DOODADS SILVERMOON FLOWERS SilvermoonFlower01.mdx", + [2009325] = "World EXPANSION01 DOODADS SILVERMOON FLOWERS SilvermoonFlower02.mdx", + [2009326] = "World EXPANSION01 DOODADS SILVERMOON FLOWERS SilvermoonFlower03.mdx", + [2009327] = "World EXPANSION01 DOODADS SILVERMOON FLOWERS SilvermoonFlower04.mdx", + [2009328] = "World EXPANSION01 DOODADS SILVERMOON FLOWERS SilvermoonFlower05.mdx", + [2009329] = "World EXPANSION01 DOODADS SILVERMOON FLOWERS SilvermoonFlower06.mdx", + [2009330] = "World EXPANSION01 DOODADS SILVERMOON FloatingDandelions FloatingDandelions01.mdx", + [2009331] = "World EXPANSION01 DOODADS SILVERMOON Rocks EversongCliffRock01.mdx", + [2009332] = "World EXPANSION01 DOODADS SILVERMOON Rocks EversongCliffRock02.mdx", + [2009333] = "World EXPANSION01 DOODADS SILVERMOON Trees SilvermoonTree08.mdx", + [2009334] = "World EXPANSION01 DOODADS SILVERMOON Water BigFountainWater.mdx", + [2009335] = "World EXPANSION01 DOODADS SILVERMYST Bushes SilvermystBush01.mdx", + [2009336] = "World EXPANSION01 DOODADS SILVERMYST Bushes SilvermystBush02.mdx", + [2009337] = "World EXPANSION01 DOODADS SILVERMYST Bushes SilvermystBush03.mdx", + [2009338] = "World EXPANSION01 DOODADS SILVERMYST CRYSTALS SilvermystCrystal01.mdx", + [2009339] = "World EXPANSION01 DOODADS SILVERMYST CRYSTALS SilvermystCrystal01_Orange.mdx", + [2009340] = "World EXPANSION01 DOODADS SILVERMYST CRYSTALS SilvermystCrystal01_Yellow.mdx", + [2009341] = "World EXPANSION01 DOODADS SILVERMYST CRYSTALS SilvermystCrystal02.mdx", + [2009342] = "World EXPANSION01 DOODADS SILVERMYST CRYSTALS SilvermystCrystal02_Orange.mdx", + [2009343] = "World EXPANSION01 DOODADS SILVERMYST CRYSTALS SilvermystCrystal02_Yellow.mdx", + [2009344] = "World EXPANSION01 DOODADS SILVERMYST CRYSTALS SilvermystCrystal03.mdx", + [2009345] = "World EXPANSION01 DOODADS SILVERMYST CRYSTALS SilvermystCrystal03_Orange.mdx", + [2009346] = "World EXPANSION01 DOODADS SILVERMYST CRYSTALS SilvermystCrystal03_Yellow.mdx", + [2009347] = "World EXPANSION01 DOODADS SILVERMYST CRYSTALS SilvermystCrystalBig01.mdx", + [2009348] = "World EXPANSION01 DOODADS SILVERMYST CRYSTALS SilvermystCrystalBig01_Orange.mdx", + [2009349] = "World EXPANSION01 DOODADS SILVERMYST CRYSTALS SilvermystCrystalBig01_Yellow.mdx", + [2009350] = "World EXPANSION01 DOODADS SILVERMYST CRYSTALS SilvermystCrystalBig02.mdx", + [2009351] = "World EXPANSION01 DOODADS SILVERMYST CRYSTALS SilvermystCrystalBig02_Orange.mdx", + [2009352] = "World EXPANSION01 DOODADS SILVERMYST CRYSTALS SilvermystCrystalBig02_Yellow.mdx", + [2009353] = "World EXPANSION01 DOODADS SILVERMYST CRYSTALS SilvermystCrystalBig03.mdx", + [2009354] = "World EXPANSION01 DOODADS SILVERMYST CRYSTALS SilvermystCrystalBig03_Orange.mdx", + [2009355] = "World EXPANSION01 DOODADS SILVERMYST CRYSTALS SilvermystCrystalBig03_Yellow.mdx", + [2009356] = "World EXPANSION01 DOODADS SILVERMYST CRYSTALS silvermystCrystalSmall01.mdx", + [2009357] = "World EXPANSION01 DOODADS SILVERMYST CRYSTALS silvermystCrystalSmall01_Orange.mdx", + [2009358] = "World EXPANSION01 DOODADS SILVERMYST CRYSTALS silvermystCrystalSmall01_Yellow.mdx", + [2009359] = "World EXPANSION01 DOODADS SILVERMYST CRYSTALS silvermystCrystalSmall02.mdx", + [2009360] = "World EXPANSION01 DOODADS SILVERMYST CRYSTALS silvermystCrystalSmall02_Orange.mdx", + [2009361] = "World EXPANSION01 DOODADS SILVERMYST CRYSTALS silvermystCrystalSmall02_Yellow.mdx", + [2009362] = "World EXPANSION01 DOODADS SILVERMYST CRYSTALS silvermystCrystalSmall03_Orange.mdx", + [2009363] = "World EXPANSION01 DOODADS SILVERMYST CRYSTALS silvermystCrystalSmall03_Yellow.mdx", + [2009364] = "World EXPANSION01 DOODADS SILVERMYST CRYSTALS silvermyst_Elfinn_Crystal.mdx", + [2009365] = "World EXPANSION01 DOODADS SILVERMYST Compass SilvermystCompass01.mdx", + [2009366] = "World EXPANSION01 DOODADS SILVERMYST LIGHTSHAFT silvermyst_lightshaft.mdx", + [2009367] = "World EXPANSION01 DOODADS SILVERMYST LIGHTSHAFT silvermyst_lightshaft02.mdx", + [2009368] = "World EXPANSION01 DOODADS SILVERMYST LIGHTSHAFT silvermyst_lightshaft03.mdx", + [2009369] = "World EXPANSION01 DOODADS SILVERMYST LeafPile Silvermyst_LeafPile.mdx", + [2009370] = "World EXPANSION01 DOODADS SILVERMYST Lightning SilverMystLightningbolt01.mdx", + [2009371] = "World EXPANSION01 DOODADS SILVERMYST Moonstone silvermyst_moonstone_blue.mdx", + [2009372] = "World EXPANSION01 DOODADS SILVERMYST Moonstone silvermyst_moonstone_green.mdx", + [2009373] = "World EXPANSION01 DOODADS SILVERMYST Moonstone silvermyst_moonstone_red.mdx", + [2009374] = "World EXPANSION01 DOODADS SILVERMYST Trees SilvermystTree01.mdx", + [2009375] = "World EXPANSION01 DOODADS SILVERMYST Trees SilvermystTree02.mdx", + [2009376] = "World EXPANSION01 DOODADS SILVERMYST Trees SilvermystTree03.mdx", + [2009377] = "World EXPANSION01 DOODADS SILVERMYST Trees SilvermystTree04.mdx", + [2009378] = "World EXPANSION01 DOODADS SILVERMYST Trees SilvermystTree05.mdx", + [2009379] = "World EXPANSION01 DOODADS SILVERMYST Trees SilvermystTreeRoots01.mdx", + [2009380] = "World EXPANSION01 DOODADS SILVERMYST Trees SilvermystTreeTorn01.mdx", + [2009381] = "World EXPANSION01 DOODADS SILVERMYST Trees SilvermystTreeTorn02.mdx", + [2009382] = "World EXPANSION01 DOODADS SILVERMYST Trees SilvermystTreeTorn03.mdx", + [2009383] = "World EXPANSION01 DOODADS SILVERMYST Trees SilvermystTreeTorn04.mdx", + [2009384] = "World EXPANSION01 DOODADS SILVERMYST Trees silvermystTree_fallen01.mdx", + [2009385] = "World EXPANSION01 DOODADS SUNWELL PASSIVEDOODADS SUNWELL FrostwurmFellfire_Birth.mdx", + [2009386] = "World EXPANSION01 DOODADS SUNWELL PASSIVEDOODADS SUNWELL SunwellRaid_Gate_01.mdx", + [2009387] = "World EXPANSION01 DOODADS SUNWELL PASSIVEDOODADS SUNWELL SunwellRaid_Gate_02.mdx", + [2009388] = "World EXPANSION01 DOODADS SUNWELL PASSIVEDOODADS SUNWELL SunwellRaid_Gate_03.mdx", + [2009389] = "World EXPANSION01 DOODADS SUNWELL PASSIVEDOODADS SUNWELL SunwellRaid_Gate_04.mdx", + [2009390] = "World EXPANSION01 DOODADS SUNWELL PASSIVEDOODADS SUNWELL Sunwell_BossCollision01.mdx", + [2009391] = "World EXPANSION01 DOODADS SUNWELL PASSIVEDOODADS SUNWELL Sunwell_BossCollision02.mdx", + [2009392] = "World EXPANSION01 DOODADS SUNWELL PASSIVEDOODADS SUNWELL Sunwell_BossForceField.mdx", + [2009393] = "World EXPANSION01 DOODADS SUNWELL PASSIVEDOODADS SUNWELL Sunwell_Ice_Barrier.mdx", + [2009394] = "World EXPANSION01 DOODADS SUNWELL PASSIVEDOODADS SUNWELL Sunwell_Replica.mdx", + [2009395] = "World EXPANSION01 DOODADS SUNWELL PASSIVEDOODADS SUNWELL Sunwell_WindowDust.mdx", + [2009396] = "World EXPANSION01 DOODADS Shadowmoon Base OL_DwarvenBattlementMossy01.mdx", + [2009397] = "World EXPANSION01 DOODADS Shadowmoon Base OL_DwarvenBattlementMossy02.mdx", + [2009398] = "World EXPANSION01 DOODADS Shadowmoon Base OL_DwarvenBattlementMossy03.mdx", + [2009399] = "World EXPANSION01 DOODADS Shadowmoon Base OL_DwarvenBattlementMossy04.mdx", + [2009400] = "World EXPANSION01 DOODADS Shadowmoon Base OL_DwarvenBattlementMossy05.mdx", + [2009401] = "World EXPANSION01 DOODADS Shadowmoon Base OL_DwarvenBattlementMossy06.mdx", + [2009402] = "World EXPANSION01 DOODADS Shadowmoon Base OL_DwarvenBattlementMossy07.mdx", + [2009403] = "World EXPANSION01 DOODADS Shadowmoon Base OL_LochLampPost.mdx", + [2009404] = "World EXPANSION01 DOODADS Shadowmoon Base OL_LochModanStoneFence02.mdx", + [2009405] = "World EXPANSION01 DOODADS Shadowmoon Graveyard Shadowmoon_gravestones_Horde_01.mdx", + [2009406] = "World EXPANSION01 DOODADS Shadowmoon Graveyard Shadowmoon_gravestones_Horde_02.mdx", + [2009407] = "World EXPANSION01 DOODADS Shadowmoon Graveyard Shadowmoon_gravestones_Horde_03.mdx", + [2009408] = "World EXPANSION01 DOODADS Shadowmoon Guyser Shadowmoon_lavaguyser.mdx", + [2009409] = "World EXPANSION01 DOODADS Shadowmoon Guyser Shadowmoon_lavasplash01.mdx", + [2009410] = "World EXPANSION01 DOODADS Shadowmoon Guyser Shadowmoon_lavasplash02.mdx", + [2009411] = "World EXPANSION01 DOODADS Shadowmoon LavaPlugs ShadowmoonLavaPlaug01.mdx", + [2009412] = "World EXPANSION01 DOODADS Shadowmoon LavaPlugs ShadowmoonLavaPlaug02.mdx", + [2009413] = "World EXPANSION01 DOODADS Shadowmoon MarkofKael MarkofKael.mdx", + [2009414] = "World EXPANSION01 DOODADS Shadowmoon Meteor ShadowmoonMeteorA.mdx", + [2009415] = "World EXPANSION01 DOODADS Shadowmoon Meteor ShadowmoonMeteorB.mdx", + [2009416] = "World EXPANSION01 DOODADS Shadowmoon Meteor ShadowmoonMeteorC.mdx", + [2009417] = "World EXPANSION01 DOODADS Shadowmoon Meteor ShadowmoonMeteorD.mdx", + [2009418] = "World EXPANSION01 DOODADS Shadowmoon Meteor ShadowmoonMeteorE.mdx", + [2009419] = "World EXPANSION01 DOODADS Shadowmoon ROCKS Shadowmoon_FloatingSmall01.mdx", + [2009420] = "World EXPANSION01 DOODADS Shadowmoon ROCKS Shadowmoon_FloatingSmall02.mdx", + [2009421] = "World EXPANSION01 DOODADS Shadowmoon ROCKS Shadowmoon_OverhangRock_Large_01.mdx", + [2009422] = "World EXPANSION01 DOODADS Shadowmoon ROCKS Shadowmoon_OverhangRock_Large_02.mdx", + [2009423] = "World EXPANSION01 DOODADS Shadowmoon ROCKS Shadowmoon_OverhangRock_Small_01.mdx", + [2009424] = "World EXPANSION01 DOODADS Shadowmoon ROCKS Shadowmoon_OverhangRock_Small_02.mdx", + [2009425] = "World EXPANSION01 DOODADS Shadowmoon ROCKS Shadowmoon_OverhangRock_Small_03.mdx", + [2009426] = "World EXPANSION01 DOODADS Shadowmoon ROCKS Shadowmoon_Short02.mdx", + [2009427] = "World EXPANSION01 DOODADS Shadowmoon ROCKS Shadowmoon_rock_01.mdx", + [2009428] = "World EXPANSION01 DOODADS Shadowmoon ROCKS Shadowmoon_rock_02.mdx", + [2009429] = "World EXPANSION01 DOODADS Shadowmoon ROCKS Shadowmoon_rock_03.mdx", + [2009430] = "World EXPANSION01 DOODADS Shadowmoon ROCKS Shadowmoon_rock_04.mdx", + [2009431] = "World EXPANSION01 DOODADS Shadowmoon ROCKS Shadowmoon_rock_05.mdx", + [2009432] = "World EXPANSION01 DOODADS Shadowmoon ROCKS Shadowmoon_rock_06.mdx", + [2009433] = "World EXPANSION01 DOODADS Shadowmoon ROCKS Shadowmoon_rock_07.mdx", + [2009434] = "World EXPANSION01 DOODADS Shadowmoon SMOKE BurningAsh02.mdx", + [2009435] = "World EXPANSION01 DOODADS Shadowmoon SMOKE BurningAsh03.mdx", + [2009436] = "World EXPANSION01 DOODADS Shadowmoon SMOKE ShadowmoonCrackSmoke01.mdx", + [2009437] = "World EXPANSION01 DOODADS Shadowmoon Volcano ShadowmoonVolcanoTop.mdx", + [2009438] = "World EXPANSION01 DOODADS Shadowmoon brazier ShadowmoonBlackTempleBrazier01.mdx", + [2009439] = "World EXPANSION01 DOODADS Shadowmoon crystals ChromaticCrystralFormation_01.mdx", + [2009440] = "World EXPANSION01 DOODADS Shadowmoon crystals ChromaticCrystralFormation_02.mdx", + [2009441] = "World EXPANSION01 DOODADS Shadowmoon crystals ChromaticCrystralFormation_03.mdx", + [2009442] = "World EXPANSION01 DOODADS Shadowmoon quest infernallowpoly.mdx", + [2009443] = "World EXPANSION01 DOODADS Shadowmoon rune shadowmoon_rune2.mdx", + [2009444] = "World EXPANSION01 DOODADS Shadowmoon scaffolding Shadowmoon_scaffolding01.mdx", + [2009445] = "World EXPANSION01 DOODADS Shadowmoon scaffolding Shadowmoon_scaffolding02.mdx", + [2009446] = "World EXPANSION01 DOODADS Shadowmoon scaffolding Shadowmoon_scaffolding03.mdx", + [2009447] = "World EXPANSION01 DOODADS TEMPESTKEEP ACTIVEDOODADS ARCANE_BOSS_POD TK_Boss_Pod.mdx", + [2009448] = "World EXPANSION01 DOODADS TEMPESTKEEP ACTIVEDOODADS Arcane_Doors TK_Arcane_Door_Horiz.mdx", + [2009449] = "World EXPANSION01 DOODADS TEMPESTKEEP ACTIVEDOODADS Arcane_Doors TK_Arcane_Door_Vert.mdx", + [2009450] = "World EXPANSION01 DOODADS TEMPESTKEEP ACTIVEDOODADS Arcane_Pod TK_Prison_Cell.mdx", + [2009451] = "World EXPANSION01 DOODADS TEMPESTKEEP ACTIVEDOODADS CONTROL_CONSOLE TK_Main_Control_Console.mdx", + [2009452] = "World EXPANSION01 DOODADS TEMPESTKEEP ACTIVEDOODADS CONTROL_CONSOLE TK_Short_Control_Console.mdx", + [2009453] = "World EXPANSION01 DOODADS TEMPESTKEEP ACTIVEDOODADS CONTROL_CONSOLE TK_Tall_Control_Console.mdx", + [2009454] = "World EXPANSION01 DOODADS TEMPESTKEEP ACTIVEDOODADS Crystals TK_Exterior_Crystals.mdx", + [2009455] = "World EXPANSION01 DOODADS TEMPESTKEEP ACTIVEDOODADS Factory_Door TK_Factory_Door.mdx", + [2009456] = "World EXPANSION01 DOODADS TEMPESTKEEP ACTIVEDOODADS Factory_Door TK_Factory_Door_Vert.mdx", + [2009457] = "World EXPANSION01 DOODADS TEMPESTKEEP ACTIVEDOODADS Kael_Statue Kael_Explode_FX_Left.mdx", + [2009458] = "World EXPANSION01 DOODADS TEMPESTKEEP ACTIVEDOODADS Kael_Statue Kael_Explode_FX_Right.mdx", + [2009459] = "World EXPANSION01 DOODADS TEMPESTKEEP ACTIVEDOODADS Raid_Door TK_Raid_Door.mdx", + [2009460] = "World EXPANSION01 DOODADS TEMPESTKEEP ACTIVEDOODADS Raid_Windows TK_Raid_Windows_Tall.mdx", + [2009461] = "World EXPANSION01 DOODADS TEMPESTKEEP PASSIVEDOODADS Bridges TK_bridge_graphics.mdx", + [2009462] = "World EXPANSION01 DOODADS TEMPESTKEEP PASSIVEDOODADS Bridges TK_bridge_graphics2.mdx", + [2009463] = "World EXPANSION01 DOODADS TEMPESTKEEP PASSIVEDOODADS Container TK_Container_01.mdx", + [2009464] = "World EXPANSION01 DOODADS TEMPESTKEEP PASSIVEDOODADS Container TK_Container_02.mdx", + [2009465] = "World EXPANSION01 DOODADS TEMPESTKEEP PASSIVEDOODADS Crystals TK_Exterior_Crystals_Bottom.mdx", + [2009466] = "World EXPANSION01 DOODADS TEMPESTKEEP PASSIVEDOODADS Crystals TK_Exterior_Crystals_Top.mdx", + [2009467] = "World EXPANSION01 DOODADS TEMPESTKEEP PASSIVEDOODADS Crystals TK_SmallWing_Arcane_Crystals_Bottom.md", + [2009468] = "World EXPANSION01 DOODADS TEMPESTKEEP PASSIVEDOODADS Crystals TK_SmallWing_Arcane_Crystals_Top.mdx", + [2009469] = "World EXPANSION01 DOODADS TEMPESTKEEP PASSIVEDOODADS Crystals TK_SmallWing_Crystals.mdx", + [2009470] = "World EXPANSION01 DOODADS TEMPESTKEEP PASSIVEDOODADS Crystals TK_SmallWing_Crystals_Bottom.mdx", + [2009471] = "World EXPANSION01 DOODADS TEMPESTKEEP PASSIVEDOODADS Crystals TK_SmallWing_Crystals_Top.mdx", + [2009472] = "World EXPANSION01 DOODADS TEMPESTKEEP PASSIVEDOODADS Crystals TK_SmallWing_Factory_Crystals_Bottom.m", + [2009473] = "World EXPANSION01 DOODADS TEMPESTKEEP PASSIVEDOODADS Crystals TK_SmallWing_Factory_Crystals_Top.mdx", + [2009474] = "World EXPANSION01 DOODADS TEMPESTKEEP PASSIVEDOODADS FORCEFIELDS TK_Energy_Exhaust_01.mdx", + [2009475] = "World EXPANSION01 DOODADS TEMPESTKEEP PASSIVEDOODADS FORCEFIELDS TK_forcefield_atrium_outline.mdx", + [2009476] = "World EXPANSION01 DOODADS TEMPESTKEEP PASSIVEDOODADS FORCEFIELDS TK_forcefield_entry_outline.mdx", + [2009477] = "World EXPANSION01 DOODADS TEMPESTKEEP PASSIVEDOODADS FORCEFIELDS TK_forcefield_outline.mdx", + [2009478] = "World EXPANSION01 DOODADS TEMPESTKEEP PASSIVEDOODADS PRISONBRIDGES TK_Helix_Floor_Reflection.mdx", + [2009479] = "World EXPANSION01 DOODADS TEMPESTKEEP PASSIVEDOODADS PRISONBRIDGES TK_Main_Bridge_Reflection.mdx", + [2009480] = "World EXPANSION01 DOODADS TEMPESTKEEP PASSIVEDOODADS PRISONBRIDGES TK_Ramp_Reflection.mdx", + [2009481] = "World EXPANSION01 DOODADS TEMPESTKEEP PASSIVEDOODADS PRISONCELLGLASS TK_Prison_Cell_Dark.mdx", + [2009482] = "World EXPANSION01 DOODADS TEMPESTKEEP PASSIVEDOODADS PRISONCELLGLASS TK_Prison_Cell_Illuminated.mdx", + [2009483] = "World EXPANSION01 DOODADS TEMPESTKEEP PASSIVEDOODADS PRISONCELLGLASS TK_Prison_Cell_TopOnly.mdx", + [2009484] = "World EXPANSION01 DOODADS TEMPESTKEEP PASSIVEDOODADS PRISONFX TK_Lightning_Ball.mdx", + [2009485] = "World EXPANSION01 DOODADS TEMPESTKEEP PASSIVEDOODADS PRISONFX TK_Lightning_Diagonal.mdx", + [2009486] = "World EXPANSION01 DOODADS TEMPESTKEEP PASSIVEDOODADS PRISONFX TK_Lightning_Diagonal_Ball.mdx", + [2009487] = "World EXPANSION01 DOODADS TEMPESTKEEP PASSIVEDOODADS PRISONFX TK_Lightning_FX_3_Sides_Room.mdx", + [2009488] = "World EXPANSION01 DOODADS TEMPESTKEEP PASSIVEDOODADS PRISONFX TK_Lightning_FX_Helix_Room.mdx", + [2009489] = "World EXPANSION01 DOODADS TEMPESTKEEP PASSIVEDOODADS PRISONFX TK_Lightning_FX_Tri_Room.mdx", + [2009490] = "World EXPANSION01 DOODADS TEMPESTKEEP PASSIVEDOODADS PRISONFX TK_Lightning_Horizontal.mdx", + [2009491] = "World EXPANSION01 DOODADS TEMPESTKEEP PASSIVEDOODADS PRISONFX TK_Prison_FX.mdx", + [2009492] = "World EXPANSION01 DOODADS TEROKKAR BOMB BE_ArcaneBomb.mdx", + [2009493] = "World EXPANSION01 DOODADS TEROKKAR BOMB BE_ArcaneBomb_Orb.mdx", + [2009494] = "World EXPANSION01 DOODADS TEROKKAR Bushes ChokeberryBush.mdx", + [2009495] = "World EXPANSION01 DOODADS TEROKKAR Bushes TerokkarBush01.mdx", + [2009496] = "World EXPANSION01 DOODADS TEROKKAR Crystal TerokkarCrystal01.mdx", + [2009497] = "World EXPANSION01 DOODADS TEROKKAR Crystal TerokkarCrystal02.mdx", + [2009498] = "World EXPANSION01 DOODADS TEROKKAR Crystal TerokkarCrystal03.mdx", + [2009499] = "World EXPANSION01 DOODADS TEROKKAR LIGHTRAY Terokkar_Lightray01.mdx", + [2009500] = "World EXPANSION01 DOODADS TEROKKAR LIGHTRAY Terokkar_Lightray02.mdx", + [2009501] = "World EXPANSION01 DOODADS TEROKKAR PineCone TerokkarPineCone.mdx", + [2009502] = "World EXPANSION01 DOODADS TEROKKAR Rocks Terokkar_FloatingSmall01.mdx", + [2009503] = "World EXPANSION01 DOODADS TEROKKAR Rocks Terokkar_FloatingSmall02.mdx", + [2009504] = "World EXPANSION01 DOODADS TEROKKAR Rocks Terokkar_OverhangRock_Large_01.mdx", + [2009505] = "World EXPANSION01 DOODADS TEROKKAR Rocks Terokkar_OverhangRock_Large_02.mdx", + [2009506] = "World EXPANSION01 DOODADS TEROKKAR Rocks Terokkar_OverhangRock_Small_01.mdx", + [2009507] = "World EXPANSION01 DOODADS TEROKKAR Rocks Terokkar_OverhangRock_Small_02.mdx", + [2009508] = "World EXPANSION01 DOODADS TEROKKAR Rocks Terokkar_OverhangRock_Small_03.mdx", + [2009509] = "World EXPANSION01 DOODADS TEROKKAR Ruin Terokkar_Auch_ruin01.mdx", + [2009510] = "World EXPANSION01 DOODADS TEROKKAR Ruin Terokkar_Auch_ruin02.mdx", + [2009511] = "World EXPANSION01 DOODADS TEROKKAR Ruin Terokkar_Auch_ruin03.mdx", + [2009512] = "World EXPANSION01 DOODADS TEROKKAR Ruin Terokkar_Auch_ruin04.mdx", + [2009513] = "World EXPANSION01 DOODADS TEROKKAR Ruin Terokkar_Auch_ruin05.mdx", + [2009514] = "World EXPANSION01 DOODADS TEROKKAR Ruin Terokkar_Auch_ruin06.mdx", + [2009515] = "World EXPANSION01 DOODADS TEROKKAR Ruin Terokkar_Auch_ruin07.mdx", + [2009516] = "World EXPANSION01 DOODADS TEROKKAR Ruin Terokkar_Auch_ruin08.mdx", + [2009517] = "World EXPANSION01 DOODADS TEROKKAR Ruin Terokkar_Auch_ruin09.mdx", + [2009518] = "World EXPANSION01 DOODADS TEROKKAR Ruin Terokkar_Auch_ruin10.mdx", + [2009519] = "World EXPANSION01 DOODADS TEROKKAR SHRINE Terokkar_boneshrine_arch01.mdx", + [2009520] = "World EXPANSION01 DOODADS TEROKKAR SHRINE Terokkar_boneshrine_arch02.mdx", + [2009521] = "World EXPANSION01 DOODADS TEROKKAR Signposts Terokkar_Signpost_01.mdx", + [2009522] = "World EXPANSION01 DOODADS TEROKKAR Signposts Terokkar_Signpost_Sign.mdx", + [2009523] = "World EXPANSION01 DOODADS TEROKKAR TREES TerokkarFallenTree.mdx", + [2009524] = "World EXPANSION01 DOODADS TEROKKAR TREES TerokkarTreeLarge.mdx", + [2009525] = "World EXPANSION01 DOODADS TEROKKAR TREES TerokkarTreeLargePineCones.mdx", + [2009526] = "World EXPANSION01 DOODADS TEROKKAR TREES TerokkarTreeMedium.mdx", + [2009527] = "World EXPANSION01 DOODADS TEROKKAR TREES TerokkarTreeMediumPineCones.mdx", + [2009528] = "World EXPANSION01 DOODADS TEROKKAR TREES TerokkarTreeNoLeaves01.mdx", + [2009529] = "World EXPANSION01 DOODADS TEROKKAR TREES TerokkarTreeNoLeaves02.mdx", + [2009530] = "World EXPANSION01 DOODADS TEROKKAR TREES TerokkarTreeSapling.mdx", + [2009531] = "World EXPANSION01 DOODADS TEROKKAR TREES TerokkarTreeSmall.mdx", + [2009532] = "World EXPANSION01 DOODADS TEROKKAR TREES TerokkarTreeStump.mdx", + [2009533] = "World EXPANSION01 DOODADS TEROKKAR TREES TerokkarTreeStump02.mdx", + [2009534] = "World EXPANSION01 DOODADS TEROKKAR Walls Terokkar_post_01.mdx", + [2009535] = "World EXPANSION01 DOODADS TEROKKAR Walls Terokkar_post_ruin_01.mdx", + [2009536] = "World EXPANSION01 DOODADS TEROKKAR Walls Terokkar_wall_01.mdx", + [2009537] = "World EXPANSION01 DOODADS TEROKKAR Walls Terokkar_wall_ruin_01.mdx", + [2009538] = "World EXPANSION01 DOODADS TEROKKAR Webs TerokkarWeb01.mdx", + [2009539] = "World EXPANSION01 DOODADS TEROKKAR Webs TerokkarWeb02.mdx", + [2009540] = "World EXPANSION01 DOODADS TEROKKAR Webs TerokkarWeb03.mdx", + [2009541] = "World EXPANSION01 DOODADS TEROKKAR Webs TerokkarWeb04.mdx", + [2009542] = "World EXPANSION01 DOODADS TEROKKAR bonepile Terokkar_bonepile01.mdx", + [2009543] = "World EXPANSION01 DOODADS TEROKKAR bonepile Terokkar_bonepile02.mdx", + [2009544] = "World EXPANSION01 DOODADS THEEXODAR PASSIVEDOODADS CLOTHOBJECTS Exodar_Long_Banner.mdx", + [2009545] = "World EXPANSION01 DOODADS THEEXODAR PASSIVEDOODADS CLOTHOBJECTS Exodar_Long_Banner_Anim.mdx", + [2009546] = "World EXPANSION01 DOODADS THEEXODAR PASSIVEDOODADS CLOTHOBJECTS Exodar_Medium_Banner.mdx", + [2009547] = "World EXPANSION01 DOODADS THEEXODAR PASSIVEDOODADS CLOTHOBJECTS Exodar_Medium_Banner_anim.mdx", + [2009548] = "World EXPANSION01 DOODADS THEEXODAR PASSIVEDOODADS CLOTHOBJECTS Exodar_Medium_Hang_Banner.mdx", + [2009549] = "World EXPANSION01 DOODADS THEEXODAR PASSIVEDOODADS CLOTHOBJECTS Exodar_Medium_Hang_Banner_Anim.mdx", + [2009550] = "World EXPANSION01 DOODADS THEEXODAR PASSIVEDOODADS CLOTHOBJECTS Exodar_Medium_Hang_Banner_Anim_Type2", + [2009551] = "World EXPANSION01 DOODADS THEEXODAR PASSIVEDOODADS CLOTHOBJECTS Exodar_Thin2_Hang_Banner.mdx", + [2009552] = "World EXPANSION01 DOODADS THEEXODAR PASSIVEDOODADS CLOTHOBJECTS Exodar_Thin_Banner.mdx", + [2009553] = "World EXPANSION01 DOODADS THEEXODAR PASSIVEDOODADS CLOTHOBJECTS Exodar_Thin_Banner_anim.mdx", + [2009554] = "World EXPANSION01 DOODADS THEEXODAR PASSIVEDOODADS CLOTHOBJECTS Exodar_Thin_Hang_Banner.mdx", + [2009555] = "World EXPANSION01 DOODADS THEEXODAR PASSIVEDOODADS CLOTHOBJECTS Exodar_Thin_Hang_Banner_Anim.mdx", + [2009556] = "World EXPANSION01 DOODADS THEEXODAR PASSIVEDOODADS CLOTHOBJECTS Exodar_Thin_Hang_Banner_AnimType2.md", + [2009557] = "World EXPANSION01 DOODADS THEEXODAR PASSIVEDOODADS CLOTHOBJECTS Exodar_Thin_Hang_Banner_AnimType3.md", + [2009558] = "World EXPANSION01 DOODADS THEEXODAR PASSIVEDOODADS CLOTHOBJECTS Exodar_Tri_Banner_Blue.mdx", + [2009559] = "World EXPANSION01 DOODADS THEEXODAR PASSIVEDOODADS CLOTHOBJECTS Exodar_Tri_Banner_Red.mdx", + [2009560] = "World EXPANSION01 DOODADS THEEXODAR PASSIVEDOODADS CLOTHOBJECTS Exodar_Tri_Banner_S_Blue.mdx", + [2009561] = "World EXPANSION01 DOODADS THEEXODAR PASSIVEDOODADS CLOTHOBJECTS Exodar_Tri_Banner_S_Red.mdx", + [2009562] = "World EXPANSION01 DOODADS THEEXODAR PASSIVEDOODADS CLOTHOBJECTS Exodar_wide_Banner.mdx", + [2009563] = "World EXPANSION01 DOODADS THEEXODAR PASSIVEDOODADS CLOTHOBJECTS Exodar_wide_Banner_Anim.mdx", + [2009564] = "World EXPANSION01 DOODADS THEEXODAR PASSIVEDOODADS CLOTHOBJECTS Exodar_wide_Hang_Banner.mdx", + [2009565] = "World EXPANSION01 DOODADS THEEXODAR PASSIVEDOODADS CLOTHOBJECTS Exodar_wide_Hang_Banner_Anim.mdx", + [2009566] = "World EXPANSION01 DOODADS THEEXODAR PASSIVEDOODADS CLOTHOBJECTS Exodar_wide_Hang_Banner_Anim_Type2.m", + [2009567] = "World EXPANSION01 DOODADS THEEXODAR PASSIVEDOODADS CLOTHOBJECTS Exodar_wide_Hang_Banner_Anim_Type3.m", + [2009568] = "World EXPANSION01 DOODADS THEEXODAR PASSIVEDOODADS CRYSTALS Exodar_Center_Naaru_Crystals.mdx", + [2009569] = "World EXPANSION01 DOODADS THEEXODAR PASSIVEDOODADS CRYSTALS Exodar_Crystal_Chandelier.mdx", + [2009570] = "World EXPANSION01 DOODADS THEEXODAR PASSIVEDOODADS CRYSTALS Exodar_Crystal_Large.mdx", + [2009571] = "World EXPANSION01 DOODADS THEEXODAR PASSIVEDOODADS CRYSTALS Exodar_Crystal_Large_Yelllow.mdx", + [2009572] = "World EXPANSION01 DOODADS THEEXODAR PASSIVEDOODADS CRYSTALS Exodar_Crystal_Thin.mdx", + [2009573] = "World EXPANSION01 DOODADS THEEXODAR PASSIVEDOODADS CRYSTALS Exodar_Crystal_Thin_Type2.mdx", + [2009574] = "World EXPANSION01 DOODADS THEEXODAR PASSIVEDOODADS CRYSTALS Exodar_Crystal_Thin_Yellow.mdx", + [2009575] = "World EXPANSION01 DOODADS THEEXODAR PASSIVEDOODADS CRYSTALS Exodar_Crystal_Yellow_Bunch.mdx", + [2009576] = "World EXPANSION01 DOODADS THEEXODAR PASSIVEDOODADS Crystal Crystal_Corrupted.mdx", + [2009577] = "World EXPANSION01 DOODADS THEEXODAR PASSIVEDOODADS Crystal Narru_Crystal_Pot.mdx", + [2009578] = "World EXPANSION01 DOODADS THEEXODAR PASSIVEDOODADS Light_Sconces Exodar_Sconce.mdx", + [2009579] = "World EXPANSION01 DOODADS THEEXODAR PASSIVEDOODADS Light_Sconces Exodar_Sconce_Blue.mdx", + [2009580] = "World EXPANSION01 DOODADS THEEXODAR PASSIVEDOODADS Light_Sconces Exodar_Sconce_Magenta.mdx", + [2009581] = "World EXPANSION01 DOODADS THEEXODAR PASSIVEDOODADS Naaru_core Exodar_NaruCore_FX.mdx", + [2009582] = "World EXPANSION01 DOODADS THEEXODAR PASSIVEDOODADS Paladin_energy_FX Exodar_Paladin_Shrine_EnergyFX.", + [2009583] = "World EXPANSION01 DOODADS THEEXODAR PASSIVEDOODADS SKY_PORTAL Exodar_Sky_portal.mdx", + [2009584] = "World EXPANSION01 DOODADS THEEXODAR PASSIVEDOODADS Shamen_Stones Draenei_Shamen_Stones_T1.mdx", + [2009585] = "World EXPANSION01 DOODADS THEEXODAR PASSIVEDOODADS Shamen_Stones Draenei_Shamen_Stones_T1_Broken.mdx", + [2009586] = "World EXPANSION01 DOODADS THEEXODAR PASSIVEDOODADS Shamen_Stones Draenei_Shamen_Stones_T2.mdx", + [2009587] = "World EXPANSION01 DOODADS THEEXODAR PASSIVEDOODADS Shamen_Stones Draenei_Shamen_Stones_Yellow_T1.mdx", + [2009588] = "World EXPANSION01 DOODADS THEEXODAR PASSIVEDOODADS Shamen_Stones Draenei_Shamen_Stones_Yellow_T1_Bro", + [2009589] = "World EXPANSION01 DOODADS THEEXODAR PASSIVEDOODADS Shamen_Stones Draenei_Shamen_Stones_Yellow_T2.mdx", + [2009590] = "World EXPANSION01 DOODADS THEEXODAR PASSIVEDOODADS Signs Exodar_Cheese_Sign.mdx", + [2009591] = "World EXPANSION01 DOODADS THEEXODAR PASSIVEDOODADS Signs Exodar_Herbalism_Sign.mdx", + [2009592] = "World EXPANSION01 DOODADS THEEXODAR PASSIVEDOODADS Signs Exodar_Hunter_Sign.mdx", + [2009593] = "World EXPANSION01 DOODADS THEEXODAR PASSIVEDOODADS Signs Exodar_Inn_Sign.mdx", + [2009594] = "World EXPANSION01 DOODADS THEEXODAR PASSIVEDOODADS Signs Exodar_Smith_Sign.mdx", + [2009595] = "World EXPANSION01 DOODADS THEEXODAR PASSIVEDOODADS Signs Exodar_Warrior_Sign.mdx", + [2009596] = "World EXPANSION01 DOODADS ZANGAR Bush ZangarGrass01.mdx", + [2009597] = "World EXPANSION01 DOODADS ZANGAR Bush ZangarGrass01_husk.mdx", + [2009598] = "World EXPANSION01 DOODADS ZANGAR FLOATINGSPORE ZM_Big_Spore_Anim_01.mdx", + [2009599] = "World EXPANSION01 DOODADS ZANGAR FLOATINGSPORE ZM_Big_Spore_Anim_02.mdx", + [2009600] = "World EXPANSION01 DOODADS ZANGAR FLOATINGSPORE ZM_Big_Spore_Anim_03.mdx", + [2009601] = "World EXPANSION01 DOODADS ZANGAR FLOATINGSPORE ZM_Big_spore_01.mdx", + [2009602] = "World EXPANSION01 DOODADS ZANGAR FLOATINGSPORE ZM_Big_spore_02.mdx", + [2009603] = "World EXPANSION01 DOODADS ZANGAR FLOATINGSPORE ZM_Big_spore_03.mdx", + [2009604] = "World EXPANSION01 DOODADS ZANGAR FLOATINGSPORE ZangarMarsh_floatingSpore01.mdx", + [2009605] = "World EXPANSION01 DOODADS ZANGAR FLOATINGSPORE ZangarMarsh_floatingSpore02.mdx", + [2009606] = "World EXPANSION01 DOODADS ZANGAR FOUNTAIN ZangarFountain01.mdx", + [2009607] = "World EXPANSION01 DOODADS ZANGAR Fog ZangarFogring01.mdx", + [2009608] = "World EXPANSION01 DOODADS ZANGAR LAMP ZangarLamppost01.mdx", + [2009609] = "World EXPANSION01 DOODADS ZANGAR LILYPADS ZangarLilypad01.mdx", + [2009610] = "World EXPANSION01 DOODADS ZANGAR LILYPADS ZangarLilypad02.mdx", + [2009611] = "World EXPANSION01 DOODADS ZANGAR LILYPADS ZangarLilypad03.mdx", + [2009612] = "World EXPANSION01 DOODADS ZANGAR LILYPADS ZangarLilypad04.mdx", + [2009613] = "World EXPANSION01 DOODADS ZANGAR LILYPADS ZangarLilypad05.mdx", + [2009614] = "World EXPANSION01 DOODADS ZANGAR LILYPADS ZangarLilypad06.mdx", + [2009615] = "World EXPANSION01 DOODADS ZANGAR Logs ZangarLog01.mdx", + [2009616] = "World EXPANSION01 DOODADS ZANGAR Logs ZangarLog02.mdx", + [2009617] = "World EXPANSION01 DOODADS ZANGAR LostOnes LO_well_01.mdx", + [2009618] = "World EXPANSION01 DOODADS ZANGAR MUSHROOM ZangarFallenShroom01.mdx", + [2009619] = "World EXPANSION01 DOODADS ZANGAR MUSHROOM ZangarFallenShroom02.mdx", + [2009620] = "World EXPANSION01 DOODADS ZANGAR MUSHROOM ZangarMushroom01.mdx", + [2009621] = "World EXPANSION01 DOODADS ZANGAR MUSHROOM ZangarMushroom02.mdx", + [2009622] = "World EXPANSION01 DOODADS ZANGAR MUSHROOM ZangarMushroom03.mdx", + [2009623] = "World EXPANSION01 DOODADS ZANGAR MUSHROOM ZangarMushroom04.mdx", + [2009624] = "World EXPANSION01 DOODADS ZANGAR MUSHROOM ZangarMushroom05.mdx", + [2009625] = "World EXPANSION01 DOODADS ZANGAR MUSHROOM ZangarMushroom06_Blue.mdx", + [2009626] = "World EXPANSION01 DOODADS ZANGAR MUSHROOM ZangarMushroom06_Green.mdx", + [2009627] = "World EXPANSION01 DOODADS ZANGAR MUSHROOM ZangarMushroom06_Orange.mdx", + [2009628] = "World EXPANSION01 DOODADS ZANGAR MUSHROOM ZangarMushroom07_Blue.mdx", + [2009629] = "World EXPANSION01 DOODADS ZANGAR MUSHROOM ZangarMushroom07_Green.mdx", + [2009630] = "World EXPANSION01 DOODADS ZANGAR MUSHROOM ZangarMushroom07_Orange.mdx", + [2009631] = "World EXPANSION01 DOODADS ZANGAR MUSHROOM ZangarMushroomBlue.mdx", + [2009632] = "World EXPANSION01 DOODADS ZANGAR MUSHROOM ZangarMushroomGreen.mdx", + [2009633] = "World EXPANSION01 DOODADS ZANGAR MUSHROOM ZangarMushroomPurple.mdx", + [2009634] = "World EXPANSION01 DOODADS ZANGAR MUSHROOM ZangarMushroomShelf01.mdx", + [2009635] = "World EXPANSION01 DOODADS ZANGAR MUSHROOM ZangarMushroomShelf02.mdx", + [2009636] = "World EXPANSION01 DOODADS ZANGAR MUSHROOM ZangarMushroomShelf03.mdx", + [2009637] = "World EXPANSION01 DOODADS ZANGAR MUSHROOM ZangarMushroomTree05.mdx", + [2009638] = "World EXPANSION01 DOODADS ZANGAR MUSHROOM ZangarMushroomTree06.mdx", + [2009639] = "World EXPANSION01 DOODADS ZANGAR MUSHROOM ZangarMushroomTree07.mdx", + [2009640] = "World EXPANSION01 DOODADS ZANGAR MUSHROOM ZangarMushroomTree08Dead.mdx", + [2009641] = "World EXPANSION01 DOODADS ZANGAR MUSHROOM ZangarMushroomTree09Dying.mdx", + [2009642] = "World EXPANSION01 DOODADS ZANGAR MUSHROOM ZangarMushroomTreeSmall01.mdx", + [2009643] = "World EXPANSION01 DOODADS ZANGAR MUSHROOM ZangarMushroomTreeSmall02.mdx", + [2009644] = "World EXPANSION01 DOODADS ZANGAR MUSHROOM ZangarMushroomTreeSmall03.mdx", + [2009645] = "World EXPANSION01 DOODADS ZANGAR MUSHROOM ZangarMushroomWater01.mdx", + [2009646] = "World EXPANSION01 DOODADS ZANGAR MUSHROOM ZangarMushroomWater02.mdx", + [2009647] = "World EXPANSION01 DOODADS ZANGAR MUSHROOM ZangarMushroomWater03.mdx", + [2009648] = "World EXPANSION01 DOODADS ZANGAR MUSHROOM ZangarTreeSmallBlue.mdx", + [2009649] = "World EXPANSION01 DOODADS ZANGAR MUSHROOM ZangarTreeSmallBlue01.mdx", + [2009650] = "World EXPANSION01 DOODADS ZANGAR MUSHROOM ZangarTreeSmallGreen.mdx", + [2009651] = "World EXPANSION01 DOODADS ZANGAR MUSHROOM ZangarTreeSmallGreen01.mdx", + [2009652] = "World EXPANSION01 DOODADS ZANGAR MUSHROOM ZangarTreeSmallPurple.mdx", + [2009653] = "World EXPANSION01 DOODADS ZANGAR MUSHROOM ZangarTreeSmallPurple01.mdx", + [2009654] = "World EXPANSION01 DOODADS ZANGAR MushroomTrees ZangarBushWithered01.mdx", + [2009655] = "World EXPANSION01 DOODADS ZANGAR MushroomTrees ZangarBushWithered02.mdx", + [2009656] = "World EXPANSION01 DOODADS ZANGAR MushroomTrees ZangarMushroomTree01.mdx", + [2009657] = "World EXPANSION01 DOODADS ZANGAR MushroomTrees ZangarMushroomTree02.mdx", + [2009658] = "World EXPANSION01 DOODADS ZANGAR MushroomTrees ZangarMushroomTree03.mdx", + [2009659] = "World EXPANSION01 DOODADS ZANGAR MushroomTrees ZangarMushroomTree04.mdx", + [2009660] = "World EXPANSION01 DOODADS ZANGAR MushroomTrees ZangarTreeBlue01.mdx", + [2009661] = "World EXPANSION01 DOODADS ZANGAR MushroomTrees ZangarTreeBlue02.mdx", + [2009662] = "World EXPANSION01 DOODADS ZANGAR MushroomTrees ZangarTreeBlue03.mdx", + [2009663] = "World EXPANSION01 DOODADS ZANGAR MushroomTrees ZangarTreeBlue04.mdx", + [2009664] = "World EXPANSION01 DOODADS ZANGAR MushroomTrees ZangarTreeGreen01.mdx", + [2009665] = "World EXPANSION01 DOODADS ZANGAR MushroomTrees ZangarTreeGreen02.mdx", + [2009666] = "World EXPANSION01 DOODADS ZANGAR MushroomTrees ZangarTreeGreen03.mdx", + [2009667] = "World EXPANSION01 DOODADS ZANGAR MushroomTrees ZangarTreeGreen04.mdx", + [2009668] = "World EXPANSION01 DOODADS ZANGAR MushroomTrees ZangarTreePurple01.mdx", + [2009669] = "World EXPANSION01 DOODADS ZANGAR MushroomTrees ZangarTreePurple02.mdx", + [2009670] = "World EXPANSION01 DOODADS ZANGAR MushroomTrees ZangarTreePurple03.mdx", + [2009671] = "World EXPANSION01 DOODADS ZANGAR MushroomTrees ZangarTreePurple04.mdx", + [2009672] = "World EXPANSION01 DOODADS ZANGAR MushroomTrees ZangarTreeWithered01.mdx", + [2009673] = "World EXPANSION01 DOODADS ZANGAR MushroomTrees ZangarTreeWithered02.mdx", + [2009674] = "World EXPANSION01 DOODADS ZANGAR MushroomTrees ZangarTreeWithered03.mdx", + [2009675] = "World EXPANSION01 DOODADS ZANGAR MushroomTrees ZangarTreeWithered04.mdx", + [2009676] = "World EXPANSION01 DOODADS ZANGAR MushroomTrees ZangarTreeWithered05.mdx", + [2009677] = "World EXPANSION01 DOODADS ZANGAR Mushroombase mushroombase_beacon.mdx", + [2009678] = "World EXPANSION01 DOODADS ZANGAR Mushroombase mushroombase_bottom.mdx", + [2009679] = "World EXPANSION01 DOODADS ZANGAR Mushroombase mushroombase_elevator.mdx", + [2009680] = "World EXPANSION01 DOODADS ZANGAR PlantGroups ZangarPlantGroup01.mdx", + [2009681] = "World EXPANSION01 DOODADS ZANGAR PlantGroups ZangarPlantGroup03.mdx", + [2009682] = "World EXPANSION01 DOODADS ZANGAR PlantGroups ZangarPlantGroup04.mdx", + [2009683] = "World EXPANSION01 DOODADS ZANGAR PlantGroups ZangarPlantGroup05.mdx", + [2009684] = "World EXPANSION01 DOODADS ZANGAR Pollen ZM_bluePollen.mdx", + [2009685] = "World EXPANSION01 DOODADS ZANGAR Road ZangarWalkway01.mdx", + [2009686] = "World EXPANSION01 DOODADS ZANGAR Road ZangarWalkway02.mdx", + [2009687] = "World EXPANSION01 DOODADS ZANGAR Road ZangarWalkway03.mdx", + [2009688] = "World EXPANSION01 DOODADS ZANGAR Road ZangarWalkwayEnd01.mdx", + [2009689] = "World EXPANSION01 DOODADS ZANGAR Road ZangarWalkwayEnd02.mdx", + [2009690] = "World EXPANSION01 DOODADS ZANGAR Road ZangarWalkway_board.mdx", + [2009691] = "World EXPANSION01 DOODADS ZANGAR Road ZangarWalkway_pole.mdx", + [2009692] = "World EXPANSION01 DOODADS ZANGAR Road ZangarWalkway_wide01.mdx", + [2009693] = "World EXPANSION01 DOODADS ZANGAR Road ZangarWalkway_wide02.mdx", + [2009694] = "World EXPANSION01 DOODADS ZANGAR Road ZangarWalkway_wide03.mdx", + [2009695] = "World EXPANSION01 DOODADS ZANGAR Road ZangarWalkway_wide04.mdx", + [2009696] = "World EXPANSION01 DOODADS ZANGAR Rocks Zangar_FloatingSmall01.mdx", + [2009697] = "World EXPANSION01 DOODADS ZANGAR Rocks Zangar_FloatingSmall02.mdx", + [2009698] = "World EXPANSION01 DOODADS ZANGAR Rocks Zangar_OverhangRock_Large_01.mdx", + [2009699] = "World EXPANSION01 DOODADS ZANGAR Rocks Zangar_OverhangRock_Large_02.mdx", + [2009700] = "World EXPANSION01 DOODADS ZANGAR Rocks Zangar_OverhangRock_Small_01.mdx", + [2009701] = "World EXPANSION01 DOODADS ZANGAR Rocks Zangar_OverhangRock_Small_02.mdx", + [2009702] = "World EXPANSION01 DOODADS ZANGAR Rocks Zangar_OverhangRock_Small_03.mdx", + [2009703] = "World EXPANSION01 DOODADS ZANGAR Signposts ZangarSignpost01.mdx", + [2009704] = "World EXPANSION01 DOODADS ZANGAR Signposts ZangarSignpostpointer01.mdx", + [2009705] = "World EXPANSION01 DOODADS ZANGAR Stump ZangarShroomStump01.mdx", + [2009706] = "World EXPANSION01 DOODADS ZANGAR Stump ZangarShroomStump02.mdx", + [2009707] = "World EXPANSION01 DOODADS ZANGAR Stump ZangarShroomStump03.mdx", + [2009708] = "World EXPANSION01 DOODADS ZULAMAN DOORS ZulAman_EntranceGate.mdx", + [2009709] = "World EXPANSION01 DOODADS ZULAMAN DOORS ZulAman_FireDoor.mdx", + [2009710] = "World EXPANSION01 DOODADS ZULAMAN DOORS ZulAman_LynxGate.mdx", + [2009711] = "World EXPANSION01 DOODADS ZULAMAN DOORS ZulAman_TorchFire.mdx", + [2009712] = "World EXPANSION01 DOODADS ZULAMAN DOORS ZulAman_WindDoor.mdx", + [2009713] = "World EXPANSION01 DOODADS ZULAMAN FOUNTAIN ForestTrollDungeonFountain.mdx", + [2009714] = "World EXPANSION01 DOODADS ZULAMAN GONG ForestTrollDungeonGong.mdx", + [2009715] = "World EXPANSION01 DOODADS ZULAMAN Gargoyle EagleGargoyle.mdx", + [2009716] = "World EXPANSION01 DOODADS ZULAMAN RUINS TrollRuins_ZulAman_01.mdx", + [2009717] = "World EXPANSION01 DOODADS ZULAMAN RUINS TrollRuins_ZulAman_02.mdx", + [2009718] = "World EXPANSION01 DOODADS ZULAMAN RUINS TrollRuins_ZulAman_04.mdx", + [2009719] = "World EXPANSION01 DOODADS ZULAMAN RUINS TrollRuins_ZulAman_05.mdx", + [2009720] = "World EXPANSION01 DOODADS ZULAMAN RUINS TrollRuins_ZulAman_06.mdx", + [2009721] = "World EXPANSION01 DOODADS ZULAMAN RUINS TrollRuins_ZulAman_07.mdx", + [2009722] = "World EXPANSION01 DOODADS ZULAMAN RUINS TrollRuins_ZulAman_08.mdx", + [2009723] = "World EXPANSION01 DOODADS ZULAMAN RUINS TrollRuins_ZulAman_09.mdx", + [2009724] = "World EXPANSION01 DOODADS ZULAMAN RUINS TrollRuins_ZulAman_10.mdx", + [2009725] = "World EXPANSION01 DOODADS ZULAMAN RUINS TrollRuins_ZulAman_11.mdx", + [2009726] = "World EXPANSION01 DOODADS ZULAMAN RUINS TrollRuins_ZulAman_12.mdx", + [2009727] = "World EXPANSION01 DOODADS ZULAMAN RUINS TrollRuins_ZulAman_14.mdx", + [2009728] = "World EXPANSION01 DOODADS ZULAMAN RUINS TrollRuins_ZulAman_15.mdx", + [2009729] = "World EXPANSION01 DOODADS ZULAMAN RUINS TrollRuins_ZulAman_16.mdx", + [2009730] = "World EXPANSION01 DOODADS ZULAMAN RUINS TrollRuins_ZulAman_17.mdx", + [2009731] = "World EXPANSION01 DOODADS ZULAMAN RUINS TrollRuins_ZulAman_18.mdx", + [2009732] = "World EXPANSION01 DOODADS ZULAMAN RUINS TrollRuins_ZulAman_20.mdx", + [2009733] = "World EXPANSION01 DOODADS ZULAMAN RUINS TrollRuins_ZulAman_21.mdx", + [2009734] = "World EXPANSION01 DOODADS ZULAMAN Statues EagleStatue01.mdx", + [2009735] = "World EXPANSION01 DOODADS ZULAMAN TABLET ForestTrollTablet.mdx", + [2009736] = "World EXPANSION01 DOODADS ZULAMAN Tiki TrollSkullTiki.mdx", + [2009737] = "World EXPANSION01 DOODADS ZULAMAN Trees ZulAmanTree01.mdx", + [2009738] = "World EXPANSION01 DOODADS ZULAMAN Trees ZulAmanTree02.mdx", + [2009739] = "World EXPANSION01 DOODADS ZULAMAN Trees ZulAmanTree03.mdx", + [2009740] = "World EXPANSION01 DOODADS ZULAMAN WATERFALLS ZulAmanWaterFalls.mdx", + [2009741] = "World EXPANSION01 DOODADS ZULAMAN Wall ForestTrollDungeonBasinWall.mdx", + [2009742] = "World GENERIC BLOODELF PASSIVE DOODADS BE_Fence_001.mdx", + [2009743] = "World GENERIC BLOODELF PASSIVE DOODADS BE_SignpostSign_stone_01.mdx", + [2009744] = "World GENERIC BLOODELF PASSIVE DOODADS BE_SignpostSign_wood_01.mdx", + [2009745] = "World GENERIC BLOODELF PASSIVE DOODADS BE_fencePost_001.mdx", + [2009746] = "World GENERIC BLOODELF PASSIVE DOODADS BE_lantern_blue_001.mdx", + [2009747] = "World GENERIC BLOODELF PASSIVE DOODADS BE_lantern_busted_001.mdx", + [2009748] = "World GENERIC BLOODELF PASSIVE DOODADS BE_lantern_red_001.mdx", + [2009749] = "World GENERIC BLOODELF PASSIVE DOODADS BE_sign_post_001.mdx", + [2009750] = "World GENERIC BLOODELF PASSIVE DOODADS BL_sq_Crate_001.mdx", + [2009751] = "World GENERIC BLOODELF PASSIVE DOODADS BL_sq_Crate_002.mdx", + [2009752] = "World GENERIC BLOODELF PASSIVE DOODADS BL_sq_Crate_003.mdx", + [2009753] = "World GENERIC BLOODELF PASSIVE DOODADS BL_sq_Crate_004_lid.mdx", + [2009754] = "World GENERIC BLOODELF PASSIVE DOODADS BL_sq_Crate_004_open.mdx", + [2009755] = "World GENERIC GNOME PASSIVE DOODADS GNOMEMACHINE GnomeMachine06.mdx", + [2009756] = "World GENERIC HUMAN PASSIVE DOODADS Banners AllianceVeteranBanner01.mdx", + [2009757] = "World GENERIC HUMAN PASSIVE DOODADS Banners AllianceVeteranBanner02.mdx", + [2009758] = "World GENERIC HUMAN PASSIVE DOODADS Banners AllianceVeteranBanner03.mdx", + [2009759] = "World GENERIC HUMAN PASSIVE DOODADS Banners AllianceVeteranBanner04.mdx", + [2009760] = "World GENERIC OGRE PASSIVE DOODADS GronnFacade Gruul_facade_01.mdx", + [2009761] = "World GENERIC OGRE PASSIVE DOODADS GronnGates Portcullis_Gronn.mdx", + [2009762] = "World GENERIC ORC PASSIVE DOODADS WyvernRoost WyvernRoost_Ruined.mdx", + [2009763] = "World GENERIC OmniLights Green_Omni.mdx", + [2009764] = "World GENERIC OwlBear OwlBearSkulls OwlBearSkull01.mdx", + [2009765] = "World GENERIC OwlBear OwlBearTotems OwlBearHangingTotem01.mdx", + [2009766] = "World GENERIC OwlBear OwlBearTotems OwlBearHangingTotem02.mdx", + [2009767] = "World GENERIC OwlBear OwlBearTotems OwlBearHangingTotem03.mdx", + [2009768] = "World GENERIC OwlBear OwlBearTotems OwlBearScareCrow01.mdx", + [2009769] = "World GENERIC OwlBear OwlBearTotems OwlBearScareCrow02.mdx", + [2009770] = "World GENERIC OwlBear OwlBearTotems OwlBearTotem01.mdx", + [2009771] = "World GENERIC OwlBear Rocks OwlBearRock01.mdx", + [2009772] = "World GENERIC OwlBear Rocks OwlBearRock02.mdx", + [2009773] = "World GENERIC OwlBear Rocks OwlBearRock03.mdx", + [2009774] = "World Goober G_BarrelRed.mdx", + [2009775] = "World Goober G_Book01_Black.mdx", + [2009776] = "World Goober G_Book01_Blue.mdx", + [2009777] = "World Goober G_Book01_Brown.mdx", + [2009778] = "World Goober G_Book01_Green.mdx", + [2009779] = "World Goober G_Book01_Red.mdx", + [2009780] = "World Goober G_BookOpenMedium07.mdx", + [2009781] = "World Goober G_DragonEggChromatic.mdx", + [2009782] = "World Goober G_DragonEggFreezeChromatic.mdx", + [2009783] = "World Goober G_GasTrap.mdx", + [2009784] = "World Goober G_NagaShellMissile.mdx", + [2009785] = "World Goober G_RuneGroundGreen01b.mdx", + [2009786] = "World Goober G_SpikeTrap.mdx", + [2009787] = "World KALIMDOR DIREMAUL ACTIVEDOODADS CrystalCorrupter CorruptedCrystalShard_blue.mdx", + [2009788] = "World KALIMDOR FERALAS PASSIVEDOODADS TREE FeralasTree04_Capped.mdx", + [2009789] = "World KALIMDOR HYJAL PASSIVEDOODADS THEWORLDTREE TheWorldTree_02.mdx", + [2009790] = "World LORDAERON SILVERMOON PASSIVEDOODADS TREES SilvermoonBurntTree01.mdx", + [2009791] = "World LORDAERON SILVERMOON PASSIVEDOODADS TREES SilvermoonBurntTree02.mdx", + [2009792] = "World LORDAERON SILVERMOON PASSIVEDOODADS TREES SilvermoonBurntTree03.mdx", + [2009793] = "World LORDAERON SILVERMOON PASSIVEDOODADS TREES SilvermoonBurntTree04.mdx", + [2009794] = "World LORDAERON SILVERMOON PASSIVEDOODADS TREES SilvermoonDeadTree01.mdx", + [2009795] = "World LORDAERON SILVERMOON PASSIVEDOODADS TREES SilvermoonDeadTree02.mdx", + [2009796] = "World LORDAERON SILVERMOON PASSIVEDOODADS TREES SilvermoonDeadTree03.mdx", + [2009797] = "World LORDAERON SILVERMOON PASSIVEDOODADS TREES SilvermoonPine01.mdx", + [2009798] = "World LORDAERON SILVERMOON PASSIVEDOODADS TREES SilvermoonPine02.mdx", + [2009799] = "World LORDAERON SILVERMOON PASSIVEDOODADS TREES SilvermoonPine04.mdx", + [2009800] = "World LORDAERON SILVERMOON PASSIVEDOODADS TREES SilvermoonSmallRoots01.mdx", + [2009801] = "World LORDAERON SILVERMOON PASSIVEDOODADS TREES SilvermoonSmallRoots02.mdx", + [2009802] = "World LORDAERON SILVERMOON PASSIVEDOODADS TREES SilvermoonSmallRoots03.mdx", + [2009803] = "World LORDAERON SILVERMOON PASSIVEDOODADS TREES SilvermoonSmallRoots04.mdx", + [2009804] = "World LORDAERON SILVERMOON PASSIVEDOODADS TREES SilvermoonSmallTree01.mdx", + [2009805] = "World LORDAERON SILVERMOON PASSIVEDOODADS TREES SilvermoonSmallTree02.mdx", + [2009806] = "World LORDAERON SILVERMOON PASSIVEDOODADS TREES SilvermoonSmallTree03.mdx", + [2009807] = "World LORDAERON SILVERMOON PASSIVEDOODADS TREES SilvermoonSmallTree04.mdx", + [2009808] = "World LORDAERON SILVERMOON PASSIVEDOODADS TREES SilvermoonSmallTree05.mdx", + [2009809] = "World LORDAERON SILVERMOON PASSIVEDOODADS TREES SilvermoonSmallTree06.mdx", + [2009810] = "World LORDAERON SILVERMOON PASSIVEDOODADS TREES SilvermoonSmallTree07.mdx", + [2009811] = "World LORDAERON SILVERMOON PASSIVEDOODADS TREES SilvermoonSmallTree08.mdx", + [2009812] = "World LORDAERON SILVERMOON PASSIVEDOODADS TREES SilvermoonTree01.mdx", + [2009813] = "World LORDAERON SILVERMOON PASSIVEDOODADS TREES SilvermoonTree02.mdx", + [2009814] = "World LORDAERON SILVERMOON PASSIVEDOODADS TREES SilvermoonTree03.mdx", + [2009815] = "World LORDAERON SILVERMOON PASSIVEDOODADS TREES SilvermoonTree05.mdx", + [2009816] = "World LORDAERON SILVERMOON PASSIVEDOODADS TREES SilvermoonTree06.mdx", + [2009817] = "World LORDAERON SILVERMOON PASSIVEDOODADS TREES SilvermoonTreeLog01.mdx", + [2009818] = "World LORDAERON SILVERMOON PASSIVEDOODADS TREES SilvermoonTreeStump01.mdx", + [2009819] = "World LORDAERON SILVERMOON PASSIVEDOODADS TREES SilvermoonTreeStump02.mdx", + [2009820] = "World LORDAERON SILVERMOON PASSIVEDOODADS TREES SilvermoonTreeStump03.mdx", + [2009821] = "World LORDAERON STRATHOLME PASSIVEDOODADS FX Fel_StratholmeFireSmokeEmbers.mdx", + [2009822] = "World NoDXT Detail GstFlo01.mdx", + [2009823] = "World NoDXT Detail GstFlo02.mdx", + [2009824] = "World NoDXT Detail GstGra01.mdx", + [2009825] = "World NoDXT Detail NagGra01.mdx", + [2009826] = "World NoDXT Detail NagGra05.mdx", + [2009827] = "World NoDXT Detail NethRoc01.mdx", + [2009828] = "World NoDXT Detail NethRoc02.mdx", + [2009829] = "World NoDXT Detail SmnFlo03.mdx", + [2009830] = "World NoDXT Detail SmnGra01.mdx", + [2009831] = "World NoDXT Detail SmnGra02.mdx", + [2009832] = "World NoDXT Detail TkrBra02.mdx", + [2009833] = "World NoDXT Detail TkrGra01.mdx", + [2009834] = "World NoDXT Detail TkrRoc01.mdx", + [2009835] = "World NoDXT Detail zmGra01.mdx", + [2009836] = "World NoDXT Detail zmGra02.mdx", + [2009837] = "World NoDXT Detail zmGra03.mdx", + [2009838] = "World NoDXT Detail zmGra04.mdx", + [2009839] = "World NoDXT Detail zmGra06.mdx", + [2009840] = "World NoDXT Detail zmGra07.mdx", + [2009841] = "World NoDXT Detail zmMush01.mdx", + [2009842] = "World NoDXT Detail zmSpo05.mdx", + [2009843] = "World SKILLACTIVATED TradeskillNodes AncientGem_Miningnode_01.mdx", + [2009844] = "World SKILLACTIVATED TradeskillNodes Bush_AncientLichen.mdx", + [2009845] = "World SKILLACTIVATED TradeskillNodes Bush_Dreamingglory.mdx", + [2009846] = "World SKILLACTIVATED TradeskillNodes Bush_Felweed.mdx", + [2009847] = "World SKILLACTIVATED TradeskillNodes Bush_Flamecap.mdx", + [2009848] = "World SKILLACTIVATED TradeskillNodes Bush_Manathistle.mdx", + [2009849] = "World SKILLACTIVATED TradeskillNodes Bush_Netherbloom.mdx", + [2009850] = "World SKILLACTIVATED TradeskillNodes Bush_NightmareVine.mdx", + [2009851] = "World SKILLACTIVATED TradeskillNodes Bush_Ragveil.mdx", + [2009852] = "World SKILLACTIVATED TradeskillNodes Bush_Terrocone.mdx", + [2009853] = "World wmo Azeroth Buildings Duskwood_MageTower Duskwood_MageTowerPurple.wmo", + [2009854] = "World wmo Azeroth Buildings Duskwood_MageTower NetherPvP_MageTower.wmo", + [2009855] = "World wmo Azeroth Buildings KeepWall KeepWalls_HellfireWeld01.wmo", + [2009856] = "World wmo Azeroth Buildings Magetower COT_magetower01.wmo", + [2009857] = "World wmo Blacktemple BarrierSpikesWall BT_BarrierSpikesWall01.wmo", + [2009858] = "World wmo Blacktemple BarrierSpikesWall BT_BarrierSpikesWall02.wmo", + [2009859] = "World wmo Blacktemple WarMachines WarMachine01.wmo", + [2009860] = "World wmo Blacktemple WarMachines WarMachine02.wmo", + [2009861] = "World wmo Dungeon AZ_Karazahn Kharazan_instance.wmo", + [2009862] = "World wmo Dungeon Blacktemple Blacktemple.wmo", + [2009863] = "World wmo Dungeon Blacktemple Blacktemple_entrance.wmo", + [2009864] = "World wmo Dungeon Blacktemple Blacktemple_facade.wmo", + [2009865] = "World wmo Dungeon Blacktemple ShadowMoon_BattlementLeft.wmo", + [2009866] = "World wmo Dungeon Blacktemple ShadowMoon_BattlementWall01.wmo", + [2009867] = "World wmo Dungeon Blacktemple ShadowMoon_Battlementright.wmo", + [2009868] = "World wmo Dungeon Blacktemple ShadowMoon_Wall_crack.wmo", + [2009869] = "World wmo Dungeon CavernsOfTime COT_Arm1.wmo", + [2009870] = "World wmo Dungeon CavernsOfTime COT_Arm2.wmo", + [2009871] = "World wmo Dungeon CavernsOfTime HyjalTreeAreaCollision.wmo", + [2009872] = "World wmo Dungeon Hellfire Hellfire_Citadel.wmo", + [2009873] = "World wmo Dungeon Hellfire Hellfire_Military.wmo", + [2009874] = "World wmo Dungeon Hellfire Hellfire_raid.wmo", + [2009875] = "World wmo Dungeon Hellfire Hellfire_ramparts.wmo", + [2009876] = "World wmo Dungeon Hellfire hellfire_DemonWing.wmo", + [2009877] = "World wmo Dungeon Hellfire hellfire_wall01.wmo", + [2009878] = "World wmo Dungeon Hellfire hellfire_wall02.wmo", + [2009879] = "World wmo Dungeon Hellfire hellfire_wall03.wmo", + [2009880] = "World wmo Dungeon Hellfire hellfire_wall04.wmo", + [2009881] = "World wmo Dungeon MD_Bloodelf_crystaltower BloodElf_Micro.wmo", + [2009882] = "World wmo Dungeon MD_CaveTunnels BladesEdgeOgreTunnel.wmo", + [2009883] = "World wmo Dungeon MD_CaveTunnels BladesEdgeOgreTunnel2.wmo", + [2009884] = "World wmo Dungeon MD_CaveTunnels BladesEdgeOgreTunnel3.wmo", + [2009885] = "World wmo Dungeon MD_CaveTunnels BladesEdgeOgreTunnel4.wmo", + [2009886] = "World wmo Dungeon MD_CaveTunnels BladesEdgeOgreTunnel5.wmo", + [2009887] = "World wmo Dungeon MD_DiamondMt DiamondMountain.wmo", + [2009888] = "World wmo Dungeon MD_Mountaincave MD_Mushroomcave09B.wmo", + [2009889] = "World wmo Dungeon MD_Mountaincave MD_Nagacave.wmo", + [2009890] = "World wmo Dungeon MD_Mountaincave MD_hellfirecave.wmo", + [2009891] = "World wmo Dungeon MD_gorge Shadowmoon_orc_hideout.wmo", + [2009892] = "World wmo Dungeon MD_gorge hellfire_cave_01.wmo", + [2009893] = "World wmo Dungeon MD_gorge hellfire_human_seigetower.wmo", + [2009894] = "World wmo Dungeon MD_gorge hellfire_human_seigetower_B.wmo", + [2009895] = "World wmo Dungeon MD_gorge hellfire_human_seigetower_C.wmo", + [2009896] = "World wmo Dungeon MD_gorge hellfire_orc_hideout.wmo", + [2009897] = "World wmo Dungeon OL_Auchindoun Auchindoun_Enterance.wmo", + [2009898] = "World wmo Dungeon OL_Auchindoun Draenei_wing.wmo", + [2009899] = "World wmo Dungeon OL_Auchindoun OL_Crypt.wmo", + [2009900] = "World wmo Dungeon OL_Auchindoun bridge Auchindoun_bridge.wmo", + [2009901] = "World wmo Dungeon OL_Auchindoun demon_wing.wmo", + [2009902] = "World wmo Dungeon OL_Auchindoun ethereal_wing.wmo", + [2009903] = "World wmo Dungeon OL_Auchindoun shadow_council_wing.wmo", + [2009904] = "World wmo Dungeon OL_Coilfang CF_exteriorPumpA.wmo", + [2009905] = "World wmo Dungeon OL_Coilfang Coilfang_Draenei.wmo", + [2009906] = "World wmo Dungeon OL_Coilfang Coilfang_Marsh.wmo", + [2009907] = "World wmo Dungeon OL_Coilfang Coilfang_Pumping.wmo", + [2009908] = "World wmo Dungeon OL_Coilfang Coilfang_Raid.wmo", + [2009909] = "World wmo Dungeon OL_Coilfang Coilfang_zangarentrance.wmo", + [2009910] = "World wmo Dungeon OL_GronnRaid Gronnraid.wmo", + [2009911] = "World wmo Dungeon OL_GronnRaid Gronnraid_facade.wmo", + [2009912] = "World wmo Dungeon OL_OgreHuts Ogre_GuardTower.wmo", + [2009913] = "World wmo Dungeon OL_OgreHuts Ogre_Hut2Story.wmo", + [2009914] = "World wmo Dungeon OL_OgreHuts Ogre_HutBig.wmo", + [2009915] = "World wmo Dungeon OL_OgreHuts Ogre_Hut_Huge.wmo", + [2009916] = "World wmo Dungeon OL_OgreHuts Ogre_Hut_Mushroom.wmo", + [2009917] = "World wmo Dungeon OL_TempestKeep TK_Arcane.wmo", + [2009918] = "World wmo Dungeon OL_TempestKeep TK_Atrium.wmo", + [2009919] = "World wmo Dungeon OL_TempestKeep TK_Exterior.wmo", + [2009920] = "World wmo Dungeon OL_TempestKeep TK_Exterior_smallwing.wmo", + [2009921] = "World wmo Dungeon OL_TempestKeep TK_Exterior_smallwing_Arcane.wmo", + [2009922] = "World wmo Dungeon OL_TempestKeep TK_Exterior_smallwing_Factory.wmo", + [2009923] = "World wmo Dungeon OL_TempestKeep TK_Factory.wmo", + [2009924] = "World wmo Dungeon OL_TempestKeep TK_Raid.wmo", + [2009925] = "World wmo Dungeon QT_Sunwell Sunwell.wmo", + [2009926] = "World wmo Dungeon QT_Sunwell_5Man Sunwell_5Man.wmo", + [2009927] = "World wmo Dungeon QT_Sunwell_Dock Sunwell_Dock.wmo", + [2009928] = "World wmo Dungeon QT_Sunwell_Facades Sunwell_Magister_Facade.wmo", + [2009929] = "World wmo Dungeon QT_Sunwell_Facades Sunwell_Raid_Facade.wmo", + [2009930] = "World wmo Dungeon Sunstrider_Anchorage SunstriderAnchorage.wmo", + [2009931] = "World wmo Dungeon Sunstrider_Anchorage Sunstrider_ship.wmo", + [2009932] = "World wmo Dungeon Terokkar_trees Terokkar_tree_micro.wmo", + [2009933] = "World wmo Dungeon Terokkar_trees Terokkar_trees01.wmo", + [2009934] = "World wmo Dungeon Terokkar_trees Terokkar_trees02.wmo", + [2009935] = "World wmo Dungeon Terokkar_trees Terokkar_trees03.wmo", + [2009936] = "World wmo Dungeon woodtroll_temple woodtroll_temple.wmo", + [2009937] = "World wmo Dungeon woodtroll_temple woodtroll_temple02.wmo", + [2009938] = "World wmo Kalimdor Buildings Azuremyst Dock Azuremyst_Dock.wmo", + [2009939] = "World wmo Kalimdor Buildings Dwarf OL_Dwarven_GuardTower.wmo", + [2009940] = "World wmo Kalimdor Buildings Dwarf OL_Dwarven_Stable.wmo", + [2009941] = "World wmo Kalimdor Buildings Dwarf OL_Dwarven_WatchTower.wmo", + [2009942] = "World wmo Kalimdor Buildings Dwarf OL_dwarfbarracks.wmo", + [2009943] = "World wmo Kalimdor Buildings Dwarf OL_mud_hovel.wmo", + [2009944] = "World wmo Kalimdor Buildings NagaPagoda NagaPagodaHut02.wmo", + [2009945] = "World wmo Kalimdor Buildings NightElfGuardTower DSNightElfGuardTower.wmo", + [2009946] = "World wmo Kalimdor Buildings NightElfSmallHouse DSNightElfSmallHouse2.wmo", + [2009947] = "World wmo Kalimdor Buildings OrcMageTower OrcMageTower_expansion.wmo", + [2009948] = "World wmo Kalimdor Buildings OrcMageTower SwampOrcMageTower_expansion.wmo", + [2009949] = "World wmo Kalimdor DraeneiCity OL_Draenei_City.wmo", + [2009950] = "World wmo Kalimdor Draenei_Abbey Draenei_Abbey.wmo", + [2009951] = "World wmo Kalimdor Draenei_Abbey Draenei_Abbey_Piece02.wmo", + [2009952] = "World wmo Kalimdor Draenei_Abbey Draenei_Abbey_Piece03.wmo", + [2009953] = "World wmo Kalimdor Draenei_Bloodwatch Draenei_BloodwatchTower.wmo", + [2009954] = "World wmo Kalimdor Draenei_Crypt Draenei_entrycrypt.wmo", + [2009955] = "World wmo Kalimdor Draenei_Crypt Draenei_entrycryptbroke.wmo", + [2009956] = "World wmo Kalimdor Draenei_Crypt Draenei_entrycryptbroke02.wmo", + [2009957] = "World wmo Kalimdor Draenei_Medical Draenei_Medical.wmo", + [2009958] = "World wmo Kalimdor NetherBridges Goblin_NetherBridge01.wmo", + [2009959] = "World wmo Kalimdor NetherBridges NetherBridge01.wmo", + [2009960] = "World wmo Kalimdor NetherBridges NetherBridge02.wmo", + [2009961] = "World wmo Kalimdor NetherBridges NetherBridge03.wmo", + [2009962] = "World wmo Kalimdor NetherBridges NetherBridge04.wmo", + [2009963] = "World wmo Kalimdor NetherBridges NetherBridge05.wmo", + [2009964] = "World wmo Kalimdor NetherBridges NetherBridge06.wmo", + [2009965] = "World wmo Kalimdor NetherBridges NetherBridge07.wmo", + [2009966] = "World wmo Kalimdor NetherCollector NetherCollector.wmo", + [2009967] = "World wmo Kalimdor NetherCollector NetherCollector_google.wmo", + [2009968] = "World wmo Kalimdor Silvermyst Bridge silvermyst_bridge.wmo", + [2009969] = "World wmo Kalimdor Silvermyst Buildings OwlBearDen OwlBearDen01.wmo", + [2009970] = "World wmo Kalimdor Silvermyst Buildings OwlBearDen OwlBearDen02.wmo", + [2009971] = "World wmo Kalimdor Silvermyst Buildings OwlBearDen OwlBearDen03.wmo", + [2009972] = "World wmo Kalimdor Silvermyst Buildings RuinedInn silvermyst_elfinn_ruined.wmo", + [2009973] = "World wmo Lorderon Buildings Bloodelf_Abandoned BE_3story_aban.wmo", + [2009974] = "World wmo Lorderon Buildings Bloodelf_Abandoned BE_3story_alt_aban.wmo", + [2009975] = "World wmo Lorderon Buildings Bloodelf_Abandoned BloodElf_Arcane_Sanctum_Aban.wmo", + [2009976] = "World wmo Lorderon Buildings Bloodelf_Abandoned BloodElf_GuardTower01_aban.wmo", + [2009977] = "World wmo Lorderon Buildings Bloodelf_Abandoned BloodElf_Hunter_Lodge_Aban.wmo", + [2009978] = "World wmo Lorderon Buildings Bloodelf_Abandoned BloodElf_SmallGazebo01_aban.wmo", + [2009979] = "World wmo Lorderon Buildings Bloodelf_Abandoned BloodElf_TwoStory01_Aban.wmo", + [2009980] = "World wmo Lorderon Buildings Bloodelf_Abandoned Bloodelf_SmallHouse02_aban.wmo", + [2009981] = "World wmo Lorderon Buildings Bloodelf_Abandoned Bloodelf_SmallHouse_aban01.wmo", + [2009982] = "World wmo Lorderon Buildings Bloodelf_Abandoned Windrunner_Spire.wmo", + [2009983] = "World wmo Lorderon Buildings EasternPlaguelands UndeadZiggurat Undead_RogueTemple01.wmo", + [2009984] = "World wmo Lorderon Buildings EasternPlaguelands UndeadZiggurat Undead_SkullTower01.wmo", + [2009985] = "World wmo Lorderon Buildings Eversong Footbridge Eversong_Footbridge.wmo", + [2009986] = "World wmo Lorderon Buildings Ghostlands BloodElf_Platform BE_Platform_Ghostlands_01.wmo", + [2009987] = "World wmo Lorderon Buildings Ghostlands Footbridge ghostlands_Footbridge.wmo", + [2009988] = "World wmo Lorderon Buildings Ghostlands ScourgeWall Ghostlands_ScourgeWall_Front.wmo", + [2009989] = "World wmo Lorderon Buildings Silvermoon Abandoned Slvrmn_2Story01.wmo", + [2009990] = "World wmo Lorderon Buildings Silvermoon Abandoned Slvrmn_3Story01.wmo", + [2009991] = "World wmo Lorderon Buildings Silvermoon Abandoned Two_Story01.wmo", + [2009992] = "World wmo Lorderon Buildings Silvermoon Abandoned slvrmn_2Storylong.wmo", + [2009993] = "World wmo Lorderon Buildings Silvermoon ArcaneSanctum BloodElf_Arcane_Sanctum.wmo", + [2009994] = "World wmo Lorderon Buildings Silvermoon BloodElfLodge BloodElf_Hunter_Lodge.wmo", + [2009995] = "World wmo Lorderon Buildings Silvermoon BloodElf_Bridge BE_ArchBridge01.wmo", + [2009996] = "World wmo Lorderon Buildings Silvermoon BloodElf_Bridge BE_SunstriderBridge.wmo", + [2009997] = "World wmo Lorderon Buildings Silvermoon BloodElf_Foutain BE_FountainSilvermoon.wmo", + [2009998] = "World wmo Lorderon Buildings Silvermoon BloodElf_Gate BloodElf_Gate.wmo", + [2009999] = "World wmo Lorderon Buildings Silvermoon BloodElf_GuardTower BloodElf_GuardTower01.wmo", + [2010000] = "World wmo Lorderon Buildings Silvermoon BloodElf_GuardTower HighElf_GuardTower01.wmo", + [2010001] = "World wmo Lorderon Buildings Silvermoon BloodElf_MiliatryTent BloodElf_MilitaryTent.wmo", + [2010002] = "World wmo Lorderon Buildings Silvermoon BloodElf_Platform BE_Tomb01.wmo", + [2010003] = "World wmo Lorderon Buildings Silvermoon BloodElf_Platform BE_platform_04.wmo", + [2010004] = "World wmo Lorderon Buildings Silvermoon BloodElf_Platform BloodElf_platform.wmo", + [2010005] = "World wmo Lorderon Buildings Silvermoon BloodElf_Pond BloodElf_Pond01.wmo", + [2010006] = "World wmo Lorderon Buildings Silvermoon BloodElf_SmallGazebo01 BloodElf_SmallGazebo01.wmo", + [2010007] = "World wmo Lorderon Buildings Silvermoon BloodElf_Stairs BE_GardenStairs01.wmo", + [2010008] = "World wmo Lorderon Buildings Silvermoon BloodElf_Stairs BE_GardenWall01.wmo", + [2010009] = "World wmo Lorderon Buildings Silvermoon BloodElf_Stairs BloodElf_Stairs01.wmo", + [2010010] = "World wmo Lorderon Buildings Silvermoon BloodElf_Stairs BloodElf_Stairs02.wmo", + [2010011] = "World wmo Lorderon Buildings Silvermoon BloodElf_Stairs BloodElf_Stairs03.wmo", + [2010012] = "World wmo Lorderon Buildings Silvermoon BloodElf_Stairs Bloodelf_Stairs04.wmo", + [2010013] = "World wmo Lorderon Buildings Silvermoon BloodElf_Tower BloodElf_Tower.wmo", + [2010014] = "World wmo Lorderon Buildings Silvermoon BloodElf_TwoStory01 BloodElf_TwoStory01.wmo", + [2010015] = "World wmo Lorderon Buildings Silvermoon BloodElf_Wall BloodElf_Wall.wmo", + [2010016] = "World wmo Lorderon Buildings Silvermoon BloodElf_smallhouse Bloodelf_SmallHouse01.wmo", + [2010017] = "World wmo Lorderon Buildings Silvermoon BloodElf_smallhouse Bloodelf_SmallHouse02.wmo", + [2010018] = "World wmo Lorderon Buildings Silvermoon BloodElf_smallhouse Bloodelf_SmallHouse03.wmo", + [2010019] = "World wmo Lorderon Buildings Silvermoon BloodElf_smallhouse HighElf_SmallHouse01.wmo", + [2010020] = "World wmo Lorderon Buildings Silvermoon Scrying_Tower Scrying_Tower.wmo", + [2010021] = "World wmo Lorderon Buildings Silvermoon Silvermoon_City_01.wmo", + [2010022] = "World wmo Lorderon Buildings ZulAman Entrance Zulaman_Entrance.wmo", + [2010023] = "World wmo Lorderon Buildings ZulAman FTrollTemples BearGod_HighPriest.wmo", + [2010024] = "World wmo Lorderon Buildings ZulAman FTrollTemples DragonHawkGod_Temple.wmo", + [2010025] = "World wmo Lorderon Buildings ZulAman FTrollTemples EagleGod_HighPriest.wmo", + [2010026] = "World wmo Lorderon Buildings ZulAman FTrollTemples God_Altar.wmo", + [2010027] = "World wmo Lorderon Buildings ZulAman FTrollTemples LynxGod_HighPriest.wmo", + [2010028] = "World wmo Lorderon Buildings ZulAman FTrollTemples Zulaman_EntranceBack.wmo", + [2010029] = "World wmo Lorderon Buildings ZulAman FTrollTemples Zulaman_Warlord_Zuljin_Temple.wmo", + [2010030] = "World wmo Lorderon Buildings ZulAman FTroll_Huts Forrest_Troll_Hut2Story.wmo", + [2010031] = "World wmo Lorderon Buildings ZulAman FTroll_Huts Forrest_Troll_HutSmall01.wmo", + [2010032] = "World wmo Lorderon Buildings ZulAman FTroll_Ruins FTroll_Ruins_CornerTall01.wmo", + [2010033] = "World wmo Lorderon Buildings ZulAman FTroll_Ruins FTroll_Ruins_Cornersmall01.wmo", + [2010034] = "World wmo Lorderon Buildings ZulAman FTroll_Ruins FTroll_Ruins_Wall01.wmo", + [2010035] = "World wmo Lorderon Buildings ZulAman FTroll_Ruins FTroll_Ruins_Wall02.wmo", + [2010036] = "World wmo Lorderon Buildings ZulAman Fountain Zulaman_Fountain.wmo", + [2010037] = "World wmo Lorderon Buildings ZulAman ZulAman_Pieces ZulAmanWall01.wmo", + [2010038] = "World wmo Lorderon Buildings ZulAman ZulAman_Pieces ZulAmanWall02.wmo", + [2010039] = "World wmo Lorderon Buildings ZulAman ZulAman_Pieces ZulAmanWall03.wmo", + [2010040] = "World wmo Lorderon Buildings ZulAman ZulAman_Pieces ZulAmanWall04.wmo", + [2010041] = "World wmo Lorderon Buildings ZulAman ZulAman_Pieces ZulAmanWall05.wmo", + [2010042] = "World wmo Lorderon Buildings ZulAman ZulAman_Pieces ZulAmanWall06.wmo", + [2010043] = "World wmo Lorderon Buildings ZulAman ZulAman_Pieces ZulAmanWall07.wmo", + [2010044] = "World wmo Lorderon Buildings ZulAman ZulAman_Pieces ZulAmanWall08.wmo", + [2010045] = "World wmo Lorderon Buildings ZulAman ZulAman_Pieces ZulAmanWall09.wmo", + [2010046] = "World wmo Lorderon Buildings ZulAman ZulAman_Pieces ZulAmanWall10.wmo", + [2010047] = "World wmo Lorderon Buildings ZulAman ZulAman_Pieces ZulAmanWall11.wmo", + [2010048] = "World wmo Lorderon Buildings ZulAman ZulAman_Pieces Zulaman_EagleWall.wmo", + [2010049] = "World wmo Lorderon Buildings ZulAman ZulAman_Pieces Zulaman_Ruins_01.wmo", + [2010050] = "World wmo Lorderon Buildings ZulAman ZulAman_Pieces Zulaman_Spearwall.wmo", + [2010051] = "World wmo Lorderon Buildings ZulAman ZulAman_Pieces Zulaman_Wall_C.wmo", + [2010052] = "World wmo Lorderon Buildings ZulAman ZulAman_Pieces Zulaman_fallenlog.wmo", + [2010053] = "World wmo Outland AncOrcBuildings AO_BridgeArch01.wmo", + [2010054] = "World wmo Outland AncOrcBuildings AO_BridgeLong01.wmo", + [2010055] = "World wmo Outland AncOrcBuildings AO_BridgeLong02.wmo", + [2010056] = "World wmo Outland AncOrcBuildings AO_BridgeLong03.wmo", + [2010057] = "World wmo Outland AncOrcBuildings AO_BridgeWalkwayLong01.wmo", + [2010058] = "World wmo Outland AncOrcBuildings AO_BridgeWalkwayShort01.wmo", + [2010059] = "World wmo Outland AncOrcBuildings AO_Footbridge01.wmo", + [2010060] = "World wmo Outland AncOrcBuildings AncOrcFarm.wmo", + [2010061] = "World wmo Outland AncOrcBuildings AncOrcHutBig.wmo", + [2010062] = "World wmo Outland AncOrcBuildings AncOrcHutSmall.wmo", + [2010063] = "World wmo Outland AncOrcBuildings AncOrcLumberMill.wmo", + [2010064] = "World wmo Outland AncOrcBuildings AncOrcTownHall.wmo", + [2010065] = "World wmo Outland ArokkoaBuildings Arakkoahouse.wmo", + [2010066] = "World wmo Outland ArokkoaBuildings Arakkoahut.wmo", + [2010067] = "World wmo Outland ArokkoaBuildings Arakkoahut_destroyed.wmo", + [2010068] = "World wmo Outland ArokkoaBuildings Arakkoashack.wmo", + [2010069] = "World wmo Outland ArokkoaBuildings Arakkoashack_destroyed.wmo", + [2010070] = "World wmo Outland ArokkoaBuildings Arakkoatent.wmo", + [2010071] = "World wmo Outland BrokenBuildings Broken_bdelftower.wmo", + [2010072] = "World wmo Outland BrokenBuildings Brokenhut_01.wmo", + [2010073] = "World wmo Outland BrokenBuildings Brokenhut_02.wmo", + [2010074] = "World wmo Outland BrokenBuildings Brokenhut_03.wmo", + [2010075] = "World wmo Outland BrokenBuildings Brokenpiece_01.wmo", + [2010076] = "World wmo Outland BrokenBuildings Brokenpiece_02.wmo", + [2010077] = "World wmo Outland BrokenBuildings Thebroken_house01.wmo", + [2010078] = "World wmo Outland BrokenBuildings Thebroken_house03.wmo", + [2010079] = "World wmo Outland BrokenBuildings Thebroken_house04.wmo", + [2010080] = "World wmo Outland DarkPortal DarkPortal_Temple.wmo", + [2010081] = "World wmo Outland DarkPortal war2darkportal.wmo", + [2010082] = "World wmo Outland DraeniBuildings AncDraeFlyM.wmo", + [2010083] = "World wmo Outland DraeniBuildings AncDraeHutA.wmo", + [2010084] = "World wmo Outland DraeniBuildings AncDraeHutB.wmo", + [2010085] = "World wmo Outland DraeniBuildings AncDraeHutC.wmo", + [2010086] = "World wmo Outland DraeniBuildings AncDraePost.wmo", + [2010087] = "World wmo Outland DraeniBuildings AncDraeSmith.wmo", + [2010088] = "World wmo Outland DraeniBuildings AncDraeTemple.wmo", + [2010089] = "World wmo Outland DraeniBuildings AncDrae_terrace.wmo", + [2010090] = "World wmo Outland DraeniBuildings DR_Stairs.wmo", + [2010091] = "World wmo Outland DraeniBuildings Draenei_bridge02.wmo", + [2010092] = "World wmo Outland DraeniBuildings Draenei_bridge03.wmo", + [2010093] = "World wmo Outland DraeniBuildings HF_draenei_outposthut.wmo", + [2010094] = "World wmo Outland DraeniBuildings HF_draenei_outpostpilllar.wmo", + [2010095] = "World wmo Outland DraeniBuildings HF_draenei_outpostpilllarbroke.wmo", + [2010096] = "World wmo Outland DraeniBuildings HF_draenei_outpoststairs.wmo", + [2010097] = "World wmo Outland DraeniBuildings HF_draenei_outposttemple.wmo", + [2010098] = "World wmo Outland DraeniBuildings HF_draenei_outpostwall.wmo", + [2010099] = "World wmo Outland DraeniBuildings HF_draenei_outpostwall02.wmo", + [2010100] = "World wmo Outland DraeniBuildings HF_draenei_outpostwall02broken.wmo", + [2010101] = "World wmo Outland DraeniBuildings HF_draenei_outpostwall_stairs.wmo", + [2010102] = "World wmo Outland DraeniBuildings HF_draenei_outpostwallbroken.wmo", + [2010103] = "World wmo Outland DraeniBuildings HF_draenei_outpostwallbroken01.wmo", + [2010104] = "World wmo Outland DraeniBuildings HF_draenei_outpostwallpiece.wmo", + [2010105] = "World wmo Outland DraeniBuildings HF_draenei_pod01.wmo", + [2010106] = "World wmo Outland DraeniBuildings HF_draenei_wallpiecebroke.wmo", + [2010107] = "World wmo Outland FloatingBuildings Hellfire_Rocktower.wmo", + [2010108] = "World wmo Outland HumanBuildings Hellfire_HonorKeepWall.wmo", + [2010109] = "World wmo Outland KilJaedenThrone OL_KilJaeden_Throne.wmo", + [2010110] = "World wmo Outland LostOnes LO_Tower01.wmo", + [2010111] = "World wmo Outland LostOnes LO_house01.wmo", + [2010112] = "World wmo Outland LostOnes LO_house02.wmo", + [2010113] = "World wmo Outland Nagrand DarkPortal DarkPortal_Nagrand.wmo", + [2010114] = "World wmo Outland Nagrand Docks NagrandDocks01.wmo", + [2010115] = "World wmo Outland Neterstorm Area52 Netherstorm_Area52Wall_01.wmo", + [2010116] = "World wmo Outland Neterstorm BioDomes NS_BioDome_Generic_Cage.wmo", + [2010117] = "World wmo Outland Neterstorm BioDomes NS_BioDome_Generic_Cage_North.wmo", + [2010118] = "World wmo Outland Neterstorm BioDomes NS_BioDome_Generic_Cage_South.wmo", + [2010119] = "World wmo Outland Neterstorm BioDomes NS_BioDome_Stormspire_Cage.wmo", + [2010120] = "World wmo Outland Neterstorm Bridges Goblin_BridgeSmall01.wmo", + [2010121] = "World wmo Outland Neterstorm Bridges Netherstorm_GoblinBridge_01.wmo", + [2010122] = "World wmo Outland Neterstorm Bridges Netherstorm_GoblinBridge_02.wmo", + [2010123] = "World wmo Outland Neterstorm GoblinBuildings OL_Nether_GoblinBld_A.wmo", + [2010124] = "World wmo Outland Neterstorm GoblinBuildings OL_Nether_GoblinBld_B.wmo", + [2010125] = "World wmo Outland Neterstorm GoblinBuildings OL_Nether_GoblinBld_C.wmo", + [2010126] = "World wmo Outland Neterstorm GoblinBuildings OL_Nether_GoblinBld_D.wmo", + [2010127] = "World wmo Outland Neterstorm GoblinBuildings OL_Nether_GoblinTop_C.wmo", + [2010128] = "World wmo Outland NetherMicros NetherMicro_01.wmo", + [2010129] = "World wmo Outland NetherMicros NetherMicro_02.wmo", + [2010130] = "World wmo Outland OrcBuildings AncOrcWatchTower.wmo", + [2010131] = "World wmo Outland OrcBuildings outlandorcfortressruin01_expansion.wmo", + [2010132] = "World wmo Outland Shadowmoon CoilfangMicro Coilfang_micro.wmo", + [2010133] = "World wmo Outland Shadowmoon Prison OL_ShadowmoonPrison.wmo", + [2010134] = "World wmo Outland Shadowmoon Rocks Shadowmoon_OverhangRock_Large_01.wmo", + [2010135] = "World wmo Outland Shadowmoon Rocks Shadowmoon_OverhangRock_Large_02.wmo", + [2010136] = "World wmo Outland Shadowmoon Slagpit Shadowmoon_Slagpit01.wmo", + [2010137] = "World wmo Outland SporeBuildings SporeHut_01.wmo", + [2010138] = "World wmo Outland Terokkar Boneshrine Terokkar_boneshrine.wmo", + [2010139] = "World wmo Outland Terokkar ShattrathCity.wmo", + [2010140] = "World wmo Outland Terokkar Shattrath_barrierHills.wmo", + [2010141] = "World wmo Outland Terokkar Terokkar_Draenei_bridge01.wmo", + [2010142] = "World wmo Outland TrollBuildings Zangar_troll_hotel01.wmo", + [2010143] = "World wmo Outland TrollBuildings Zangar_trollhutSmall01.wmo", + [2010144] = "World wmo Outland TrollBuildings Zangar_trollshop01.wmo", + [2010145] = "World wmo Outland TrollBuildings Zangar_trollshoppingmall01.wmo", + [2010146] = "World wmo Outland ZangarMushroomBase Mushroombase.wmo", + [2010147] = "World wmo Outland Zangar Bridge ZangarTreeBridge01.wmo", + [2010148] = "World wmo Outland Zangar DarkPortal DarkPortal_Zangar.wmo", + [2010149] = "World wmo Outland Zangar HordeBase Zangar_HordeOutpost_01.wmo", + [2010150] = "World wmo Outland Zangar HordeBase Zangar_Hordebase_01.wmo", + [2010151] = "World wmo Outland Zangar HordeBase Zangar_Hordebase_02.wmo", + [2010152] = "World wmo Outland Zangar HordeBase Zangar_Hordebase_03.wmo", + [2010153] = "World wmo Outland Zangar HordeBase Zangar_Hordebase_04.wmo", + [2010154] = "World wmo Outland Zangar HordeBase Zangar_Hordebase_05.wmo", + [2010155] = "World wmo Outland Zangar HordeBase Zangar_Hordebase_06.wmo", + [2010156] = "World wmo Outland Zangar HordeBase Zangar_Hordebase_07.wmo", + [2010157] = "World wmo Outland Zangar HordeBase Zangar_Hordebase_08.wmo", + [2010158] = "World wmo Outland Zangar Road Zangar_Road_01.wmo", + [2010159] = "World wmo Outland Zangar Road Zangar_Road_02.wmo", + [2010160] = "World wmo Outland Zangar Road Zangar_Road_03.wmo", + [2010161] = "World wmo Outland Zangar Road Zangar_Road_04.wmo", + [2010162] = "World wmo Outland Zangar Road Zangar_Road_05.wmo", + [2010163] = "World wmo Outland Zangar Road Zangar_Road_06.wmo", + [2010164] = "World wmo Outland Zangar Road Zangar_Road_07_HordeBase.wmo", + [2010165] = "World wmo Outland Zangar Road Zangar_Road_08_Chop.wmo", + [2010166] = "World wmo Outland Zangar Road Zangar_Road_09.wmo", + [2010167] = "World wmo Outland Zangar Road Zangar_Road_10.wmo", + [2010168] = "World wmo Outland Zangar Road Zangar_Road_11.wmo", + [2010169] = "World wmo Outland Zangar Road Zangar_Road_12.wmo", + [2010170] = "World wmo Outland Zangar Road Zangar_Road_13.wmo", + [2010171] = "World wmo Outland Zangar Road Zangar_Road_14.wmo", + [2010172] = "World wmo Outland Zangar Road Zangar_Road_15_AllianceBase.wmo", + [2010173] = "World wmo Outland Zangar Road Zangar_Road_16_Husk.wmo", + [2010174] = "World wmo Outland Zangar Road Zangar_Road_17.wmo", + [2010175] = "World wmo Outland Zangar Road Zangar_Road_18.wmo", + [2010176] = "World wmo Outland Zangar Road Zangar_Road_19_Cenarion.wmo", + [2010177] = "World wmo Outland Zangar Road Zangar_Road_20_Cenarion.wmo", + [2010178] = "World wmo Outland Zangar Road Zangar_Road_21.wmo", + [2010179] = "World wmo Outland Zangar Road Zangar_Road_22.wmo", + [2010180] = "World wmo Outland Zangar Road Zangar_Road_23.wmo", + [2010181] = "World wmo Outland Zangar Road Zangar_Road_24.wmo", + [2010182] = "World wmo Outland Zangar Road Zangar_Road_25.wmo", + [2010183] = "World wmo Outland Zangar Road Zangar_Road_26.wmo", + [2010184] = "World wmo Outland Zangar Road Zangar_Road_27.wmo", + [2010185] = "World wmo Outland Zangar Road Zangar_Road_28.wmo", + [2010186] = "World wmo Outland Zangar Staircase ZM_Staircase01.wmo", + [2010187] = "World wmo Outland Zangar Staircase ZM_Staircase02.wmo", + [2010188] = "World wmo Outland bladesedge DarkPortal DarkPortal_BladesEdge.wmo", + [2010189] = "World wmo Outland bladesedge OgreRock BladesEdgeOgreRock.wmo", + [2010190] = "World wmo PvP Buildings CTF hellfire_orc_fort_A.wmo", + [2010191] = "World wmo PvP Buildings CTF hellfire_orc_fort_B.wmo", + [2010192] = "World wmo PvP Buildings CTF hellfire_orc_fort_C.wmo", + [2010193] = "World wmo elevators ancDraeneiElevator ancDrae_elevator.wmo", + [2010194] = "World ExteriorDesigners Test ED_TestDoodad.mdx", + [2010195] = "World Goober G_Waterfallgeo.mdx", + [2010196] = "World NoDXT Detail HoFBushyB01.mdx", + [2010197] = "World NoDXT Detail HoFBushyB02.mdx", + [2010198] = "World NoDXT Detail HoFBushyC01.mdx", + [2010199] = "World NoDXT Detail HoFBushyC02.mdx", + [2010200] = "World NoDXT Detail HoFGrassG01.mdx", + [2010201] = "World NoDXT Detail HoFGrassG02.mdx", + [2010202] = "World NoDXT Detail HoFGrassyD01.mdx", + [2010203] = "World NoDXT Detail HoFGrassyD02.mdx", + [2010204] = "World wmo Azeroth Buildings Prison_Camp prisonHQ_Redridge.wmo", + [2010205] = "World wmo Azeroth Buildings Westfall_Stable Westfall_StableC.wmo", + [2010206] = "World wmo Azeroth Collidable Doodads Duskwood ChasmBridge DuskwoodChasmBridgeLong.wmo", + [2010207] = "World wmo Dungeon MD_Mountaincave MD_CorruptCave01.wmo", + [2010208] = "World wmo Dungeon MD_Mountaincave MD_CorruptCave02.wmo", + [2010209] = "World wmo Dungeon MD_Mountaincave MD_Icecave06.wmo", + [2010210] = "World wmo Dungeon MD_Mountaincave MD_Icecave07.wmo", + [2010211] = "World wmo Dungeon MD_Mountaincave MD_Icecave08.wmo", + [2010212] = "World wmo Dungeon MD_NagaTemple MD_NagaTemple.wmo", + [2010213] = "World wmo Dungeon MD_Shipwreck Shipwreck_DBack.wmo", + [2010214] = "World wmo Dungeon MD_Shipwreck Shipwreck_DFront.wmo", + [2010215] = "World wmo Dungeon MD_Sinkhole Sinkhole_med_01.wmo", + [2010216] = "World wmo Dungeon MD_Sinkhole Sinkhole_small_01.wmo", + [2010217] = "World wmo Dungeon test light_test.wmo", + [2010218] = "World wmo Exterior_Designers ED_BuildingTest.wmo", + [2010219] = "World wmo Exterior_Designers ED_ZD_Ziggurat.wmo", + [2010220] = "World wmo Kalimdor Winterspring MD_WinterspringCave02.wmo", + [2010221] = "World wmo Lorderon Buildings ZulAman FTroll_Ruins FTroll_Ruins_Stairs02.wmo", + [2010222] = "World wmo Lorderon Buildings ZulAman FTroll_Ruins FTroll_Ruins_Stairs03.wmo", + [2010223] = "World wmo transports Crashed_zeppelin CrashedZeppelinPiece_01.wmo", + [2010224] = "World wmo transports Crashed_zeppelin CrashedZeppelinPiece_02.wmo", + [2010225] = "World wmo transports Undead Ship_UD_Transport.wmo", + [2010226] = "World wmo transports WMO_elevators AncDrae_elevatorPiece_transport.wmo", + [2010227] = "World wmo transports WMO_elevators GunDrak_Elevator_01_transport.wmo", + [2010228] = "World wmo transports WMO_elevators GunDrak_TrapDoor01_transport.wmo", + [2010229] = "World wmo transports transport_ship_Pirate Transport_Pirate_ship.wmo", + [2010230] = "SPELLS ArcaneExplosion_Base.mdx", + [2010231] = "SPELLS ArcaneShot_Area.mdx", + [2010232] = "SPELLS ArcaneShot_Missile.mdx", + [2010233] = "SPELLS ArcaneTorrent.mdx", + [2010234] = "SPELLS Archimonde_Blue_Fire.mdx", + [2010235] = "SPELLS Archimonde_Fire.mdx", + [2010236] = "SPELLS AvengingWrath_Impact_Base.mdx", + [2010237] = "SPELLS Barkskin_State_Base.mdx", + [2010238] = "SPELLS BattleShout_Cast_Base.mdx", + [2010239] = "SPELLS BeastRageCaster.mdx", + [2010240] = "SPELLS BlackShot_Missile.mdx", + [2010241] = "SPELLS BlessingofFreedom_Impact.mdx", + [2010242] = "SPELLS BlessingofFreedom_State.mdx", + [2010243] = "SPELLS BlessingofKings_Base.mdx", + [2010244] = "SPELLS BlessingofProtection_Impact.mdx", + [2010245] = "SPELLS BlessingOfSalvation_Impact.mdx", + [2010246] = "SPELLS BlessingofWisdom_Base.mdx", + [2010247] = "SPELLS BlindingShot_Missile.mdx", + [2010248] = "SPELLS BloodBolt_Missile_Low.mdx", + [2010249] = "SPELLS ChallengingShout_Cast_Base.mdx", + [2010250] = "SPELLS ChristmasSnowRain.mdx", + [2010251] = "SPELLS DeathAndDecay_Area_Runes.mdx", + [2010252] = "SPELLS DeathKnight_UnholyBlight.mdx", + [2010253] = "SPELLS DemoralizingShout_Cast_Base.mdx", + [2010254] = "SPELLS DevotionAura_Base.mdx", + [2010255] = "SPELLS DisEnchant_Cast_Hand.mdx", + [2010256] = "SPELLS EarthShield_State_Base.mdx", + [2010257] = "SPELLS FaerieFire_Impact.mdx", + [2010258] = "SPELLS Fel_Archimonde_Fire.mdx", + [2010259] = "SPELLS Fel_RainOfFire_Missile.mdx", + [2010260] = "SPELLS Fireball_Missile_High.mdx", + [2010261] = "SPELLS Fireball_Missile_Low.mdx", + [2010262] = "SPELLS FireNova_Area.mdx", + [2010263] = "SPELLS FireShot_Missile.mdx", + [2010264] = "SPELLS Fireworks_Blue_01.mdx", + [2010265] = "SPELLS FistOfJustice_Cast_Base.mdx", + [2010266] = "SPELLS Flamestrike_Impact_Base.mdx", + [2010267] = "SPELLS Frost_Nova_area.mdx", + [2010268] = "SPELLS Frostbolt.mdx", + [2010269] = "SPELLS IceBarrier_State.mdx", + [2010270] = "SPELLS IcePrison_Base.mdx", + [2010271] = "SPELLS IntimidatingShout_Cast_Base.mdx", + [2010272] = "SPELLS Invisibility_Impact_Chest.mdx", + [2010273] = "SPELLS ManaShot_Missile.mdx", + [2010274] = "SPELLS Mass_Dispell_Impact.mdx", + [2010275] = "SPELLS MightAura_Impact_Base.mdx", + [2010276] = "SPELLS Missile_Bomb.mdx", + [2010277] = "SPELLS Missile_Wave_Fire.mdx", + [2010278] = "SPELLS PyroBlast_Missile.mdx", + [2010279] = "SPELLS RainOfCandys_Impact_Base.mdx", + [2010280] = "SPELLS RainOfFire_Missile.mdx", + [2010281] = "SPELLS Restoration_Impact_Base.mdx", + [2010282] = "SPELLS RetributionAuraRed_Base.mdx", + [2010283] = "SPELLS RevivePet_Impact_Base.mdx", + [2010284] = "SPELLS RitualSummoning_PreCast_Base.mdx", + [2010285] = "SPELLS ScorpidShot_Missile.mdx", + [2010286] = "SPELLS SealOfFury_Impact_Base.mdx", + [2010287] = "SPELLS SealOfWisdom_Impact_Base.mdx", + [2010288] = "SPELLS SealOfWrath_Impact_Base.mdx", + [2010289] = "SPELLS Shadow_Nova_area_noProjection.mdx", + [2010290] = "SPELLS Shadow_Strikes_State_Hand.mdx", + [2010291] = "SPELLS Shadowfury_Impact_Base.mdx", + [2010292] = "SPELLS ShadowShield_Impact.mdx", + [2010293] = "SPELLS ShadowShield_State_Base.mdx", + [2010294] = "SPELLS SlowingStrike_Impact_Base.mdx", + [2010295] = "SPELLS SonicWave_Cast.mdx", + [2010296] = "SPELLS SpellObject_InvisibleTrap.mdx", + [2010297] = "SPELLS Spike_Impact_Base.mdx", + [2010298] = "SPELLS SummerFest_RoseShower_Impact_Base.mdx", + [2010299] = "SPELLS Undying_Strength_Impact_Chest.mdx", + [2010300] = "SPELLS Unyielding_Will_Impact_Chest.mdx", + [2010301] = "SPELLS Zangarmarsh_Arcane_Missile.mdx", + [2010302] = "World AZEROTH BURNINGSTEPPES ActiveDoodads DarkIronNode DarkIronNode.mdx", + [2010303] = "World Azeroth Elwynn PassiveDoodads BattleGladeBanner1 BattleGladeBanner1.mdx", + [2010304] = "World Azeroth Elwynn PassiveDoodads BattleGladeBanner2 BattleGladeBanner2.mdx", + [2010305] = "World AZEROTH ELWYNN PASSIVEDOODADS ELWYNNFENCES ElwynnWoodFence01.mdx", + [2010306] = "World Azeroth Elwynn PassiveDoodads LAMPPOST LampPost.mdx", + [2010307] = "World Azeroth KARAZAHN PASSIVEDOODADS VolumetricLights KarazahnDiningRays.mdx", + [2010308] = "World AZEROTH PVP PassiveDoodads BridgeRuins pvp_bridge_parts03.mdx", + [2010309] = "World Azeroth REDRIDGE PASSIVEDOODADS BRICKS RedRidgeBridgeBrick01.mdx", + [2010310] = "World AZEROTH STRANGLETHORN PASSIVEDOODADS GemMineCar02 GemMineCar02.mdx", + [2010311] = "World Azeroth ZULGURUB PASSIVEDOODADS HEART heartofhakkar.mdx", + [2010312] = "World Detail DrkBus01.mdx", + [2010313] = "World Detail DrkBus02.mdx", + [2010314] = "World Detail DrkBus03.mdx", + [2010315] = "World Detail DrkBus04.mdx", + [2010316] = "World Detail DrkBus05.mdx", + [2010317] = "World Detail DrkBus06.mdx", + [2010318] = "World Detail DrkBus07.mdx", + [2010319] = "World Detail DrkGra01.mdx", + [2010320] = "World Detail DrkGra02.mdx", + [2010321] = "World Detail DrkGra03.mdx", + [2010322] = "World Detail DrkGra04.mdx", + [2010323] = "World Detail DrkGra05.mdx", + [2010324] = "World Detail DrkGra06.mdx", + [2010325] = "World DUNGEON CAVERNSOFTIME PASSIVEDOODADS HourGlass COT_HourGlass_redo.mdx", + [2010326] = "World EXPANSION01 DOODADS BLACKTEMPLE PASSIVEDOODADS BLUEENERGY BlackTemple_Waterfall_Type1.mdx", + [2010327] = "World EXPANSION01 DOODADS BLOODMYST POWERCORE Bloodmyst_powercore.mdx", + [2010328] = "World EXPANSION01 DOODADS COILFANG ACTIVEDOODADS elevator CF_elevatorPlatform_small.mdx", + [2010329] = "World EXPANSION01 DOODADS COILFANG ACTIVEDOODADS RAID_BRIDGE Coilfang_Raid_Bridge_Part1.mdx", + [2010330] = "World EXPANSION01 DOODADS COILFANG ACTIVEDOODADS RAID_BRIDGE Coilfang_Raid_Bridge_Part2.mdx", + [2010331] = "World EXPANSION01 DOODADS COILFANG ACTIVEDOODADS RAID_BRIDGE Coilfang_Raid_Bridge_Part3.mdx", + [2010332] = "World EXPANSION01 DOODADS Coilfang PASSIVEDOODADS Waterfalls Coilfang_Marsh_Waterfall.mdx", + [2010333] = "World EXPANSION01 DOODADS GENERIC ARAKKOA TOTEM AK_Totem01.mdx", + [2010334] = "World EXPANSION01 DOODADS GENERIC BLOODELF Bannister be_bannister.mdx", + [2010335] = "World EXPANSION01 DOODADS GENERIC BLOODELF Broom BE_Mop01.mdx", + [2010336] = "World EXPANSION01 DOODADS GENERIC BLOODELF INSTRUMENTS BE_Lute01.mdx", + [2010337] = "World EXPANSION01 DOODADS GENERIC BLOODELF PLANETARIUM BE_Planetarium_Active.mdx", + [2010338] = "World EXPANSION01 DOODADS GENERIC BLOODELF Podium BE_Podium01.mdx", + [2010339] = "World EXPANSION01 DOODADS GENERIC BLOODELF SCRYINGORB BE_ScryingOrb.mdx", + [2010340] = "World EXPANSION01 DOODADS GENERIC DRAENEI Bowls DR_Bowl_01.mdx", + [2010341] = "World EXPANSION01 DOODADS GENERIC DRAENEI TUBES draenei_tubes_offset.mdx", + [2010342] = "World EXPANSION01 DOODADS GENERIC OGRE Bones OM_Bones_03.mdx", + [2010343] = "World EXPANSION01 DOODADS GENERIC TRADESKILL JEWELCRAFTING JewelCraft_GemCut_02.mdx", + [2010344] = "World EXPANSION01 DOODADS GHOSTLANDS WEBS GhostlandsWeb_01.mdx", + [2010345] = "World EXPANSION01 DOODADS GHOSTLANDS WEBS GhostlandsWebDangle_01.mdx", + [2010346] = "World EXPANSION01 DOODADS HELLFIRECITADEL Activedoodads Raid_FX Hellfire_Raid_FX.mdx", + [2010347] = "World EXPANSION01 DOODADS HELLFIRECITADEL Activedoodads Raid_FX Raid_Column_FX.mdx", + [2010348] = "World EXPANSION01 DOODADS HELLFIRECITADEL DEMONWING Activedoodads Doors Hellfire_DW_MainPrisonEntry.", + [2010349] = "World EXPANSION01 DOODADS HELLFIRECITADEL DEMONWING Activedoodads Summon_Door Hellfire_DW_SummonRoom", + [2010350] = "World EXPANSION01 DOODADS HELLFIRECITADEL DEMONWING PASSIVEDOODADS DOORS Main_Prison _Door.mdx", + [2010351] = "World EXPANSION01 DOODADS HELLFIRECITADEL DEMONWING PASSIVEDOODADS MACHINE Hellfire_DW_Machine_FIN2.", + [2010352] = "World EXPANSION01 DOODADS HELLFIRECITADEL PASSIVEDOODADS BRAIZERS Hellfire_FloorBraizer.mdx", + [2010353] = "World EXPANSION01 DOODADS HELLFIRECITADEL PASSIVEDOODADS BRAIZERS Hellfire_FloorBraizer_Purple.mdx", + [2010354] = "World EXPANSION01 DOODADS HELLFIREPENINSULA Supplies HellfireSupplies_04.mdx", + [2010355] = "World EXPANSION01 DOODADS NETHERSTORM COLLECTORTOP CollectorTop_Nether.mdx", + [2010356] = "World EXPANSION01 DOODADS SHATTRATH Activedoodads elevator AncDrae_elevatorPiece.mdx", + [2010357] = "World EXPANSION01 DOODADS SHATTRATH Activedoodads elevator AncDrae_elevatorPiece_netherstorm.mdx", + [2010358] = "World EXPANSION01 DOODADS TEMPESTKEEP ACTIVEDOODADS ARCANE_BOSS_POD TK_Boss_Pod.mdx", + [2010359] = "World EXPANSION01 DOODADS TEMPESTKEEP ACTIVEDOODADS Arcane_Doors TK_Arcane_Door_Horiz.mdx", + [2010360] = "World EXPANSION01 DOODADS TEMPESTKEEP ACTIVEDOODADS Arcane_Doors TK_Arcane_Door_Vert.mdx", + [2010361] = "World EXPANSION01 DOODADS TEMPESTKEEP ACTIVEDOODADS Kael_Statue Kael_Explode_FX_Right.mdx", + [2010362] = "World EXPANSION01 DOODADS TEMPESTKEEP ACTIVEDOODADS Raid_Door TK_Raid_Door.mdx", + [2010363] = "World EXPANSION01 DOODADS TEMPESTKEEP ACTIVEDOODADS Raid_Windows TK_Raid_Windows_Tall.mdx", + [2010364] = "World EXPANSION01 DOODADS THEEXODAR PASSIVEDOODADS CLOTHOBJECTS Exodar_Thin_Hang_Banner_AnimType2.md", + [2010365] = "World EXPANSION01 DOODADS ZANGAR Mushroombase mushroombase_elevator.mdx", + [2010366] = "World EXPANSION01 DOODADS ZULAMAN DOORS ZulAman_LynxGate.mdx", + [2010367] = "World Generic Centaur Passive Doodads CentaurTents CentaurTent02.mdx", + [2010368] = "World Generic DWARF PASSIVE DOODADS Banners IronForgeBanner01.mdx", + [2010369] = "World Generic DWARF PASSIVE DOODADS TARGETS TargetAxe03.mdx", + [2010370] = "World GENERIC GNOME PASSIVE DOODADS ElevatorParts GnomeElevatorCar01.mdx", + [2010371] = "World GENERIC GNOME PASSIVE DOODADS GNOMEMACHINE GnomeMachine03.mdx", + [2010372] = "World GENERIC GNOME PASSIVE DOODADS GnomeMachinery GnomeHutElevator.mdx", + [2010373] = "World GENERIC GNOME PASSIVE DOODADS LIGHTS GnomeStructuralSpotLight02.mdx", + [2010374] = "World Generic GNOME PASSIVE DOODADS Tools GnomeTool01.mdx", + [2010375] = "World Generic HUMAN PASSIVE DOODADS Artwork Painting07.mdx", + [2010376] = "World Generic HUMAN PASSIVE DOODADS Artwork Painting11.mdx", + [2010377] = "World Generic HUMAN PASSIVE DOODADS Artwork Painting14.mdx", + [2010378] = "World Generic HUMAN PASSIVE DOODADS Artwork Painting15.mdx", + [2010379] = "World Generic Human Passive Doodads BallistaRuins BallistaMissle01.mdx", + [2010380] = "World Generic Human Passive Doodads Banners DwarvenBanner01.mdx", + [2010381] = "World GENERIC HUMAN PASSIVE DOODADS Clothing BootRack01.mdx", + [2010382] = "World GENERIC HUMAN PASSIVE DOODADS MEAT BloodyMeat01.mdx", + [2010383] = "World GENERIC HUMAN PASSIVE DOODADS MEAT BloodyMeat02.mdx", + [2010384] = "World Generic Human Passive Doodads STORMWIND AllianceMapTable.mdx", + [2010385] = "World Generic Human Passive Doodads Toys ToyTrain_dalaran.mdx", + [2010386] = "World GENERIC NIGHTELF PASSIVE DOODADS HippogryphRoost HippogryphRoost.mdx", + [2010387] = "World Generic NIGHTELF PASSIVE DOODADS Lanterns NightElfLantern02.mdx", + [2010388] = "World Generic NIGHTELF PASSIVE DOODADS RUINS AZRElfRuin04.mdx", + [2010389] = "World Generic NIGHTELF PASSIVE DOODADS RUINS NewElfRuin08.mdx", + [2010390] = "World Generic NIGHTELF PASSIVE DOODADS STATUES DruidStone.mdx", + [2010391] = "World Generic ORC PASSIVE DOODADS BANNERS ClanBanner.mdx", + [2010392] = "World Generic ORC PASSIVE DOODADS BANNERS ClanBanner01.mdx", + [2010393] = "World Generic ORC PASSIVE DOODADS BANNERS ClanBanner02.mdx", + [2010394] = "World Generic ORC PASSIVE DOODADS BANNERS ClanBanner03.mdx", + [2010395] = "World Generic ORC PASSIVE DOODADS BANNERS ClanBanner04.mdx", + [2010396] = "World Generic ORC PASSIVE DOODADS BANNERS ClanBanner05.mdx", + [2010397] = "World Generic ORC PASSIVE DOODADS BANNERS ClanBanner06.mdx", + [2010398] = "World Generic ORC PASSIVE DOODADS BANNERS ClanBanner07Warsong.mdx", + [2010399] = "World Generic ORC PASSIVE DOODADS BANNERS OgreBannerSnow.mdx", + [2010400] = "World Generic ORC PASSIVE DOODADS Braziers MediumBrazierNoOmni01.mdx", + [2010401] = "World Generic ORC PASSIVE DOODADS Tents orctent01.mdx", + [2010402] = "World Generic ORC PASSIVE DOODADS Tents orctent02.mdx", + [2010403] = "World Generic ORC PASSIVE DOODADS WAGONS OrcWagon01.mdx", + [2010404] = "World Generic PASSIVEDOODADS Bleachers BleachersWood01.mdx", + [2010405] = "World GENERIC PASSIVEDOODADS DEATHSKELETONS BloodElfFemaleDeathSkeleton.mdx", + [2010406] = "World GENERIC PASSIVEDOODADS DEATHSKELETONS BloodElfMaleDeathSkeleton.mdx", + [2010407] = "World GENERIC PASSIVEDOODADS DEATHSKELETONS DraeneiFemaleDeathSkeleton.mdx", + [2010408] = "World GENERIC PASSIVEDOODADS DEATHSKELETONS DraeneiMaleDeathSkeleton.mdx", + [2010409] = "World GENERIC PASSIVEDOODADS DEATHSKELETONS DwarfFemaleDeathSkeleton.mdx", + [2010410] = "World GENERIC PASSIVEDOODADS DEATHSKELETONS DwarfMaleDeathSkeleton.mdx", + [2010411] = "World GENERIC PASSIVEDOODADS DEATHSKELETONS GnomeFemaleDeathSkeleton.mdx", + [2010412] = "World GENERIC PASSIVEDOODADS DEATHSKELETONS GnomeMaleDeathSkeleton.mdx", + [2010413] = "World GENERIC PASSIVEDOODADS DEATHSKELETONS HumanFemaleDeathSkeleton.mdx", + [2010414] = "World GENERIC PASSIVEDOODADS DEATHSKELETONS HumanMaleDeathSkeleton.mdx", + [2010415] = "World GENERIC PASSIVEDOODADS DEATHSKELETONS NightElfFemaleDeathSkeleton.mdx", + [2010416] = "World GENERIC PASSIVEDOODADS DEATHSKELETONS NightElfMaleDeathSkeleton.mdx", + [2010417] = "World GENERIC PASSIVEDOODADS DEATHSKELETONS OrcFemaleDeathSkeleton.mdx", + [2010418] = "World GENERIC PASSIVEDOODADS DEATHSKELETONS OrcMaleDeathSkeleton.mdx", + [2010419] = "World GENERIC PASSIVEDOODADS DEATHSKELETONS ScourgeFemaleDeathSkeleton.mdx", + [2010420] = "World GENERIC PASSIVEDOODADS DEATHSKELETONS ScourgeMaleDeathSkeleton.mdx", + [2010421] = "World GENERIC PASSIVEDOODADS DEATHSKELETONS TaurenFemaleDeathSkeleton.mdx", + [2010422] = "World GENERIC PASSIVEDOODADS DEATHSKELETONS TaurenMaleDeathSkeleton.mdx", + [2010423] = "World GENERIC PASSIVEDOODADS DEATHSKELETONS TrollFemaleDeathSkeleton.mdx", + [2010424] = "World GENERIC PASSIVEDOODADS DEATHSKELETONS TrollMaleDeathSkeleton.mdx", + [2010425] = "World Generic PASSIVEDOODADS LIGHTS CandleOff01.mdx", + [2010426] = "World Generic PASSIVEDOODADS LIGHTS CandleOff03.mdx", + [2010427] = "World Generic PASSIVEDOODADS ParticleEmitters AuraBlueVeryTall.mdx", + [2010428] = "World Generic PASSIVEDOODADS ParticleEmitters AuraRedVeryTall.mdx", + [2010429] = "World Generic PASSIVEDOODADS ParticleEmitters AuraYellowVeryTall.mdx", + [2010430] = "World GENERIC PASSIVEDOODADS PLAINRUNE RuneStone.mdx", + [2010431] = "World Generic PASSIVEDOODADS Wall Bones CaveWallBones02.mdx", + [2010432] = "World Generic PVP BattlefieldBanners BattlefieldBanner_State_Base_Plaguelands.mdx", + [2010433] = "World Generic PVP BattlefieldBanners BattlefieldBanner_State_FlagA_Plaguelands.mdx", + [2010434] = "World Generic PVP BattlefieldBanners BattlefieldBanner_State_FlagH_Plaguelands.mdx", + [2010435] = "World Generic PVP BattlefieldBanners BattlefieldBanner_State_FlagN_Plaguelands.mdx", + [2010436] = "World Generic TAUREN PASSIVE DOODADS Totems GrimTotem02.mdx", + [2010437] = "World Generic TAUREN PASSIVE DOODADS Windmills WindMillGiant01.mdx", + [2010438] = "World Generic UNDEAD PASSIVE DOODADS MeatWagonHauler MeatWagonHauler.mdx MeatWagonHauler.mdx", + [2010439] = "World GENERIC UNDEAD PASSIVE DOODADS UNDERCITYWORM UndercityMonsterBirth.mdx", + [2010440] = "World GENERIC UNDEAD PASSIVE DOODADS UNDERCITYWORM UndercityWorm.mdx", + [2010441] = "World Goober G_BookOpenMedium07.mdx", + [2010442] = "World Goober G_BookOpenMediumBlack.mdx", + [2010443] = "World Goober G_BookOpenMediumBlue.mdx", + [2010444] = "World Goober G_BookOpenMediumGreen.mdx", + [2010445] = "World Goober G_BookTrapEye.mdx", + [2010446] = "World Goober G_Crate01.mdx", + [2010447] = "World Goober G_DragonEggBlack.mdx", + [2010448] = "World Goober G_DragonEggChromatic.mdx", + [2010449] = "World Goober G_DragonEggFreeze.mdx", + [2010450] = "World Goober G_DragonEggFreezeChromatic.mdx", + [2010451] = "World Goober G_FishingBobber.mdx", + [2010452] = "World Goober G_GraveBurst.mdx", + [2010453] = "World Goober G_GraveBurstTanaris.mdx", + [2010454] = "World GOOBER G_HolyLightWell.mdx", + [2010455] = "World Goober G_PulsatingPlant.mdx", + [2010456] = "World Goober G_RuneGroundGreen01b.mdx", + [2010457] = "World Goober G_Torch01.mdx", + [2010458] = "World Goober G_UldamanMap.mdx", + [2010459] = "World KALIMDOR ASHENVALE PASSIVEDOODADS SatyrRuins RuinsSatyrArch.mdx", + [2010460] = "World KALIMDOR DIREMAUL ACTIVEDOODADS Doors DireMaulDoor04.mdx", + [2010461] = "World KALIMDOR SILITHUS ACTIVEDOODADS EggLayer AhnQirajEggLayer.mdx", + [2010462] = "World KALIMDOR SILITHUS PASSIVEDOODADS Elven elventowerSilithusHorn.mdx", + [2010463] = "World KALIMDOR Tanaris PassiveDoodads Goblin TanarisGoblinWallGateBigBits.mdx", + [2010464] = "World KHAZMODAN BLACKROCK ACTIVEDOODADS ANVIL DarkIronAnvil.mdx", + [2010465] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS BOOKS UldamanBook01.mdx", + [2010466] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Paintings Painting01.mdx", + [2010467] = "World KHAZMODAN WETLANDS PASSIVEDOODADS BLACKROCKBANNERS BlackRockClanBanner01.mdx", + [2010468] = "World KHAZMODAN WETLANDS PASSIVEDOODADS DragonMawGates DragonmawBanner.mdx", + [2010469] = "World LORDAERON PLAGUELAND PASSIVEDOODADS Cages PlaugelandsCage01.mdx", + [2010470] = "World Lordaeron STRATHOLME PASSIVEDOODADS FX Fel_StratholmeFireSmokeEmbers.mdx", + [2010471] = "World LORDAERON STRATHOLME PASSIVEDOODADS FX Naxxramas_Frostwyrm_Birth.mdx", + [2010472] = "World LORDAERON TIRISFALGLADE PASSIVEDOODADS BARRICADE TirisfallBarricade.mdx", + [2010473] = "World NoDXT Generic PassiveDoodads VolumetricLights KarazahnDiningRays.mdx", + [2010474] = "World SKILLACTIVATED TradeskillNodes Bush_Snakebloom01.mdx", + [2010475] = "World wmo Azeroth Buildings GuardTower GuardTower.wmo", + [2010476] = "World wmo Azeroth Buildings Magetower magetower.wmo", + [2010477] = "World wmo Azeroth Buildings OilPlatform OilPlatform.wmo", + [2010478] = "World wmo Azeroth Buildings Prison_Camp prisonHQ.wmo", + [2010479] = "World wmo Azeroth Buildings RedRidge_Barracks redridge_barracks.wmo", + [2010480] = "World wmo Azeroth Buildings RedRidge_TownHall RedRidge_TownHall.wmo", + [2010481] = "World wmo Azeroth Buildings Stormwind Stormwind.wmo", + [2010482] = "World wmo Azeroth Buildings Stormwind SW_Harbor_Lighthouse.wmo", + [2010483] = "World wmo Azeroth Buildings Stranglethorn_BootyBay BootyBay.wmo", + [2010484] = "World wmo Azeroth Buildings ZulGurub ZulGurubCity.wmo", + [2010485] = "World wmo Azeroth Collidable Doodads Redridge RedridgeDocks RedRidgeSmallDock01.wmo", + [2010486] = "World wmo Azeroth Collidable Doodads Redridge RedridgeDocks RedRidgeSmallDock02.wmo", + [2010487] = "World wmo Dungeon AZ_Blackrock Blackrock2.wmo", + [2010488] = "World wmo Dungeon AZ_Blackrock Blackrock_lower_instance.wmo", + [2010489] = "World wmo Dungeon AZ_Blackrock Blackrock_upper_guild.wmo", + [2010490] = "World wmo Dungeon AZ_Karazahn Kharazan_instance.wmo", + [2010491] = "World wmo Dungeon BoreanMagnataurMicro BoreanMagnataurMicro.wmo", + [2010492] = "World wmo Dungeon BoreanMagnataurMicro BoreanMagnataurMicro03.wmo", + [2010493] = "World wmo Dungeon BoreanMagnataurMicro BoreanMagnataurMicro_1room.wmo", + [2010494] = "World wmo Dungeon Hellfire Hellfire_raid.wmo", + [2010495] = "World wmo Dungeon KL_AhnQiraj InnerGateEnterance.wmo", + [2010496] = "World wmo Dungeon LD_ShadowFang LD_ShadowFangInterior.wmo", + [2010497] = "World wmo Dungeon LD_Stratholme FrostWyrm_Final01.wmo", + [2010498] = "World wmo Dungeon LD_Stratholme Stratholme_B.wmo", + [2010499] = "World wmo Dungeon LD_Stratholme Stratholme_raid.wmo", + [2010500] = "World wmo Dungeon MD_Caveden MD_TrollDen.wmo", + [2010501] = "World wmo Dungeon MD_CaveTunnels PvP_Alterac_Snow01.wmo", + [2010502] = "World wmo Dungeon MD_Crypt MD_Crypt.wmo", + [2010503] = "World wmo Dungeon MD_Mountaincave MD_CorruptCave02.wmo", + [2010504] = "World wmo Dungeon MD_Mountaincave MD_Icecave06.wmo", + [2010505] = "World wmo Dungeon MD_Mountaincave MD_Icecave07.wmo", + [2010506] = "World wmo Dungeon MD_NagaTemple MD_NagaTemple.wmo", + [2010507] = "World wmo Dungeon MD_Pirateship Pirateship.wmo", + [2010508] = "World wmo Dungeon MD_ZD_Coliseum ZD_Coliseum.wmo", + [2010509] = "World wmo Dungeon OL_Coilfang Coilfang_Draenei.wmo", + [2010510] = "World wmo Dungeon OL_Coilfang Coilfang_Raid.wmo", + [2010511] = "World wmo Dungeon OL_OgreHuts PVP_Ogre_Arena01.wmo", + [2010512] = "World wmo Dungeon OL_TempestKeep TK_Factory.wmo", + [2010513] = "World wmo Dungeon QT_Sunwell Sunwell.wmo", + [2010514] = "World wmo Dungeon QT_Sunwell_5Man Sunwell_5Man.wmo", + [2010515] = "World wmo Dungeon QT_Sunwell_Facades Sunwell_Magister_Facade.wmo", + [2010516] = "World wmo Dungeon Sunstrider_Anchorage Sunstrider_ship_blue.wmo", + [2010517] = "World wmo Dungeon Terokkar_trees Terokkar_tree_micro.wmo", + [2010518] = "World wmo Dungeon test missingwmo.wmo", + [2010519] = "World wmo Dungeon Wintergrasp Wintergrasp_Raid.wmo", + [2010520] = "World wmo Dungeon woodtroll_temple woodtroll_temple02.wmo", + [2010521] = "World wmo Kalimdor Buildings Azuremyst Dock Azuremyst_Dock.wmo", + [2010522] = "World wmo Kalimdor Buildings GoblinHut KL_Goblin_igloo_B.wmo", + [2010523] = "World wmo Kalimdor Buildings NightElfDruidTower NightElfDruidTower.wmo", + [2010524] = "World wmo Kalimdor Buildings OrcFortress BlackrockOrcFortress.wmo", + [2010525] = "World wmo Kalimdor Buildings OrcGreatHall BlackrockOrcGreatHall.wmo", + [2010526] = "World wmo Kalimdor Buildings OrcZeppelinHouse OrcZeppelinHouse.wmo", + [2010527] = "World wmo Kalimdor Buildings OrcZeppelinHouse OrcZeppelinHouse_Durotar01.wmo", + [2010528] = "World wmo Kalimdor Buildings OrcZeppelinHouse OrcZeppelinHouse_GromGol.wmo", + [2010529] = "World wmo Kalimdor Buildings TanarisRuins TanarisRuins05.wmo", + [2010530] = "World wmo Kalimdor CollidableDoodads Darkshore DarkshoreExcavation DSExcavationPlatform.wmo", + [2010531] = "World wmo Kalimdor CollidableDoodads Mulgore TaurenTent01 TaurenTent01.wmo", + [2010532] = "World wmo Kalimdor DraeneiCity OL_Draenei_City.wmo", + [2010533] = "World wmo Kalimdor Ogrimmar Ogrimmar.wmo", + [2010534] = "World wmo Kalimdor ThunderBluff TB_ZeppelinDock.wmo", + [2010535] = "World wmo Kalimdor Winterspring MD_WinterspringCave01.wmo", + [2010536] = "World wmo Kalimdor Winterspring MD_WinterspringCave02.wmo", + [2010537] = "World wmo KhazModan Buildings Dwarven_GuardTower Dwarven_GuardTower.wmo", + [2010538] = "World wmo KhazModan Buildings Dwarven_SnowTower Dwarven_PVPSnowTower.wmo", + [2010539] = "World wmo KhazModan Buildings Dwarven_SnowTower Dwarven_SnowTower.wmo", + [2010540] = "World wmo KhazModan Cities Ironforge ironforge.wmo", + [2010541] = "World wmo KhazModan Collidable Doodads SearingGorge SearingGorgeScaffold SearingGorgeScaffold.wmo", + [2010542] = "World wmo Lorderon Buildings EasternPlaguelands UndeadZiggurat UndeadZiggurat.wmo", + [2010543] = "World wmo Lorderon Buildings Silvermoon ArcaneSanctum BloodElf_Arcane_Sanctum.wmo", + [2010544] = "World wmo Lorderon Buildings Silvermoon BloodElf_smallhouse Bloodelf_SmallHouse01.wmo", + [2010545] = "World wmo Lorderon Buildings Silvermoon BloodElf_smallhouse Bloodelf_SmallHouse03.wmo", + [2010546] = "World wmo Lorderon Buildings Silvermoon Silvermoon_City_01.wmo", + [2010547] = "World wmo Lorderon Buildings TirisfalGlade LorderonZeppelinTower LorderonZeppelin.wmo", + [2010548] = "World wmo Lorderon Buildings ZulAman Entrance Zulaman_Entrance_ClosedDoor.wmo", + [2010549] = "World wmo Lorderon Buildings ZulAman ZulAman_Pieces Zulaman_Ruins_01.wmo", + [2010550] = "World wmo Lorderon Undercity Undercity.wmo", + [2010551] = "World wmo Outland LostOnes LO_house01.wmo", + [2010552] = "World wmo Outland LostOnes LO_Tower01.wmo", + [2010553] = "World wmo Outland Neterstorm GoblinBuildings OL_Nether_GoblinBld_C.wmo", + [2010554] = "World wmo PvP Buildings CTF CTFNightelf_A.wmo", + [2010555] = "World wmo PvP Buildings CTF CTFOrc_A.wmo", + [2010556] = "World wmo PvP Buildings Lordaeron PVP_Lordaeron_Arena.wmo", + [2010557] = "World wmo PvP Buildings OrcTower PvP_DarkOrcTower.wmo", + [2010558] = "World wmo PvP Buildings Orgrimmar OrgrimmarArena.wmo", + [2010559] = "World wmo Test test_petes_wmo_rotation_test.wmo", + [2010560] = "World wmo transports BlackCitadel BlackCitadel.wmo", + [2010561] = "World wmo transports transport_horde_zeppelin Transport_Horde_Zeppelin.wmo", + [2010562] = "World wmo transports transport_ship transportship.wmo", + [2010563] = "World wmo transports transport_zeppelin transport_zeppelin.wmo", + [2010564] = "World wmo transports WMO_elevators GunDrak_Elevator_01_transport.wmo", + [2010565] = "World wmo transports WMO_elevators GunDrak_Trapdoor_02_transport.wmo", + [2010566] = "World wmo transports WMO_elevators Nexus_Raid_Floating_platform_model_transport.wmo", + [2010567] = "World wmo transports wmo_elevators Orc_Fortress_Elevator01_transport.wmo", + [2010568] = "World wmo transports WMO_elevators org_arena_axe_pillar_transport.wmo", + [2010569] = "World wmo transports WMO_elevators org_arena_elevator_transport.wmo", + [2010570] = "World wmo transports WMO_elevators org_arena_ivory_pillar_transport.wmo", + [2010571] = "World wmo transports WMO_elevators org_arena_lightning_pillar_transport.wmo", + [2010572] = "World wmo transports WMO_elevators org_arena_pillar_transport.wmo", + [2010573] = "Spells Missile_Wave_Water.mdx", + [2010574] = "World EXPANSION01 DOODADS AUCHINDOUN PASSIVEDOODADS BRIDGE_FX Auchindoun_Bridge_Spirits_Floating.mdx", + [2010575] = "World EXPANSION01 DOODADS AUCHINDOUN PASSIVEDOODADS BRIDGE_FX Auchindoun_Bridge_Spirits_Simple.mdx", + [2010576] = "World EXPANSION01 DOODADS BLADESEDGE SIMON SimonGame_FloatingCrystal.mdx", + [2010577] = "World EXPANSION01 DOODADS BLOODMYST POWERCORE PowerCore_Coil_FX.mdx", + [2010578] = "World EXPANSION01 DOODADS GENERIC BLOODELF BARREL BE_Barrel_Broken_02.mdx", + [2010579] = "World EXPANSION01 DOODADS GENERIC BLOODELF DemonCrystals BE_DemonCrystal_01.mdx", + [2010580] = "World EXPANSION01 DOODADS GENERIC BLOODELF DemonCrystals BE_DemonCrystal_02.mdx", + [2010581] = "World EXPANSION01 DOODADS GENERIC BLOODELF MERCHANTSTAND BE_MerchantStand02.mdx", + [2010582] = "World EXPANSION01 DOODADS GENERIC BLOODELF Rowboat BE_Rowboat.mdx", + [2010583] = "World EXPANSION01 DOODADS GENERIC DRAENEI TEMPESTKEEP Narru_Crystal_Corrupted.mdx", + [2010584] = "World EXPANSION01 DOODADS GENERIC NAGA Banner NA_Banner01.mdx", + [2010585] = "World Generic Human Passive Doodads ANIMALHEADS StuffedTallStrider.mdx", + [2010586] = "World Generic Orc Passive Doodads VOODOOSTUFF SkullCandle01.mdx", + [2010587] = "World Generic PassiveDoodads Lights Bigcandle.mdx", + [2010588] = "World Generic PassiveDoodads Plaque PlaqueSilver02.mdx", + [2010589] = "World Generic PassiveDoodads VALENTINESDAY ValentinesArc.mdx", + [2010590] = "World Generic PassiveDoodads VALENTINESDAY ValentinesPlant.mdx", + [2010591] = "World Goober G_IceBlock.mdx", + [2010592] = "World KALIMDOR DARKSHORE PASSIVEDOODADS Boats DarkshoreBoat.mdx", + [2010593] = "World KALIMDOR SILITHUS ACTIVEDOODADS EggLayer AhnQirajEggLayer.mdx", + [2010594] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Banners Banner01.mdx", + [2010595] = "World KHAZMODAN ULDAMAN PASSIVEDOODADS Banners Banner02.mdx", + [2010596] = "World KHAZMODAN WETLANDS PASSIVEDOODADS DragonBones DragonBonesBody.mdx", + [2010597] = "World wmo Azeroth Buildings Duskwood_Blacksmith Blacksmith_AB.wmo", + [2010598] = "World wmo Azeroth Buildings Duskwood_human_farm humanfarm_AB.wmo", + [2010599] = "World wmo Azeroth Buildings Duskwood_Stable Stable_AB.wmo", + [2010600] = "World wmo Azeroth Buildings OilPlatform OilPlatform.wmo", + [2010601] = "World wmo Dungeon CavernsOfTime CavernsofTime.wmo", + [2010602] = "World wmo Dungeon KL_OnyxiasLair KL_OnyxiasLair_A.wmo", + [2010603] = "World wmo Dungeon KL_OnyxiasLair KL_OnyxiasLair_B.wmo", + [2010604] = "World wmo Dungeon LD_Stratholme FrostWyrm_Final01.wmo", + [2010605] = "World wmo Dungeon LD_Stratholme Stratholme_raid.wmo", + [2010606] = "World wmo Dungeon MD_Pirateship Pirateship_plank_dock.wmo", + [2010607] = "World wmo Dungeon OL_OgreHuts PVP_Ogre_Arena01_Inst.wmo", + [2010608] = "World wmo Kalimdor Buildings OrcZeppelinHouse OrcZeppelinHouse_Durotar01.wmo", + [2010609] = "World wmo Lorderon Undercity Undercity.wmo", + [2010610] = "World wmo PvP Buildings AncientOrcArena ancorc_PVPstadium.wmo", + [2010611] = "World wmo PvP Buildings AncientOrcArena ancorc_PVPstadium_Inst.wmo", + [2010612] = "World wmo PvP Buildings CTF CTFNightelf_A.wmo", + [2010613] = "World wmo PvP Buildings CTF CTFOrc_A.wmo", + [2010614] = "World wmo PvP Buildings Lordaeron PVP_Lordaeron_Arena.wmo", + [2010615] = "World wmo PvP Buildings Orgrimmar OrgrimmarArena.wmo", + [2010616] = "World wmo transports transport_ship transportship.wmo", + [2010617] = "World wmo transports transport_zeppelin transport_zeppelin.wmo", + [2010618] = "Spells CallLightning_Impact.mdx", + [2010619] = "Spells Dispel_Low_Base.mdx", + [2010620] = "Spells MoonBeamBlue_Impact_Base.mdx", + [2010621] = "World EXPANSION01 DOODADS GENERIC ETHEREAL PORTAL ET_Portal01Off.mdx", + [2010622] = "World EXPANSION01 DOODADS ZANGAR Logs ZangarLog01.mdx", + [2010623] = "World EXPANSION01 DOODADS ZANGAR MUSHROOM ZangarFallenShroom01.mdx", + [2010624] = "World GENERIC Gnome Passive Doodads GnomeMachinery GnomeHutMachinery.mdx", + [2010625] = "World GOOBER G_FireworkLauncher02.mdx", + [2010626] = "World LORDAERON SCHOLOMANCE PASSIVEDOODADS CHANDELIER Scholme_Chandelier.mdx", + [2010627] = "World wmo Dungeon MD_CaveTunnels PvP_Alterac_Ent01.wmo", + [2010628] = "Interface Glues Models UI_RS_Dwarf UI_RS_Dwarf.mdx", + [2010629] = "Interface Glues Models UI_RS_Human UI_RS_Human.mdx", + [2010630] = "Interface Glues Models UI_RS_Nightelf UI_RS_Nightelf.mdx", + [2010631] = "Interface Glues Models UI_RS_Dwarf UI_RS_Dwarf.mdx", + [2010632] = "Interface Glues Models UI_RS_Orc UI_RS_Orc.mdx", + [2010633] = "Interface Glues Models UI_RS_Scourge UI_RS_Scourge.mdx", + [2010634] = "Interface Glues Models UI_RS_Tauren UI_RS_Tauren.mdx", + [2010635] = "Humanhouse DuskwoodHouse_Large.wmo", + [2010636] = "Humanhouse DuskwoodHouse_Medium.wmo", + [2010637] = "Humanhouse ElwynnHouse_Large.wmo", + [2010638] = "Humanhouse ElwynnHouse_Medium.wmo", + [2010639] = "Humanhouse ElwynnHouse_Small.wmo", + [2010640] = "Humanhouse WestfallHouse_MediumShingles.wmo", + [2010641] = "Humanhouse WestfallHouse_MediumStraw.wmo", + [2010642] = "Humanhouse WestfallHouse_SmallStraw.wmo", + [2010643] = "World Expansion02 Doodads Generic HighElf HE_Ballista_01.mdx", + [2010644] = "World Expansion02 Doodads Generic HighElf HE_Banner_03.mdx", + [2010645] = "World Expansion02 Doodads Generic HighElf HE_Tent_01.mdx", + [2010646] = "World Expansion06 Doodads Dalaran 7dl_dalaran_paintingwitch01.mdx", + [2010647] = "World wmo KhazModan Cities Ironforge alphairon.wmo", + [2010650] = "BarberShop_Mirror_01", + [2010651] = "G_Water_Buckets", + [2010652] = "Arugals_Tower01", + [2010653] = "Lighthousered", + [2010654] = "HE_Wagon_01", + [2010655] = "HE_Banner_02", + [2010656] = "HE_Banner_01", + [2010657] = "G_ArcanePrison", + [2010658] = "G_BookTrapLightGoo", + [2010659] = "ND_BearCave", + [2010660] = "Goblin_Fuelcell", + [2010661] = "Dalaran_Crate_01", + [2010662] = "Nifty_StopWatch", + [2010663] = "Tradeskill_FirstAid_01", + [2010664] = "Tradeskill_FirstAid_02", + [2010665] = "ND_VentureBay_CraneBoat", + [2010666] = "G_BookTrapLightEvil", + [2010667] = "ED_Juggernaught", + [2010668] = "Sunstrider_ship_blue", + [2010670] = "Prison", + [2010671] = "Longhouse", + [2010672] = "Priory", + [2010673] = "Camp", + [2010674] = "Camp2", + [2010675] = "WorldExpansion02DoodadsGrizzlyHillsTreesGrizzlyHills_Clovers01.mdx", + [2010676] = "WorldExpansion02DoodadsGrizzlyHillsTreesGrizzlyHills_Clovers03.mdx", + [2010677] = "WorldGenericHumanPassive DoodadsBottlesGreenBottle01.mdx", + [2010678] = "WorldExpansion02DoodadsDalaranDalaran_Chair_01.mdx", + [2010679] = "WorldExpansion02DoodadsDalaranDalaran_Bed_02.mdx", + [2010680] = "WorldExpansion02DoodadsDalaranDalaran_BeerTable_01.mdx", + [2010681] = "WorldExpansion02DoodadsDalaranDalaran_BeerTable_Seat_01.mdx", + [2010682] = "WorldExpansion02DoodadsGenericInscriptionInscription_Quill_Frosty.mdx", + [2010683] = "WorldGenericPassiveDoodadsThanksgivingG_ThanksgivingChair_01.mdx", + [2010684] = "WorldGenericPassiveDoodadsThanksgivingG_ThanksgivingPlate_01.mdx", + [2010685] = "worldgenericpassivedoodadsthanksgivingg_thanksgivingtable_01_collision.mdx", + [2010686] = "gobspianopiano.mdx", + [2010687] = "WorldcustomALbanneralbanner01.mdx", + [2010688] = "WorldcustomALbanneralbanner02.mdx", + [2010689] = "WorldcustomALbanneralbanner03.mdx", + [2010690] = "WorldcustomSTbannerstbanner01.mdx", + [2010691] = "WorldcustomSTbannerstbanner02.mdx", + [2010692] = "WorldcustomSTbannerstbanner03.mdx", + [2010693] = "gobsboralusbannerboralusbanner01.mdx", + [2010694] = "gobsboralusbannerboralusbanner02.mdx", + [2010697] = "Wooden Chair", + [2010698] = "ivent_trigger", + [2010699] = "ivent_trigger", + [2010700] = "Shagu\'s Shisha", + [2010701] = "Flup\'s bone", + [2010796] = "Tree of Lashes", + [2010797] = "Frostly", + [2010798] = "The Azurestone", + [2010799] = "Moo Rune", + [2010800] = "Pedestal", + [2010801] = "Spitelash Shrine", + [2010802] = "Wildtusk Shrine", + [2010803] = "Woven Basket", + [2010804] = "Dispelling Scroll Explotion", + [2010805] = "Sunken Chest", + [2010806] = "Har Na\'lan\'s Crate", + [2010807] = "Sealed Naga Trunk", + [2010808] = "Pile of Glinting Sand", + [2010809] = "Gnomish Trunk", + [2010810] = "Mysterious Trunk", + [2010811] = "Mysterious Muddy Pile", + [2010812] = "Mysterious Grave", + [2010813] = "Mysterious Sunken Chest", + [2010814] = "Mysterious Charred Locker", + [2010815] = "Bowl of Sacred Water", + [2010816] = "Sunken Locker", + [2010817] = "Site Control Panel", + [2010818] = "Fendo\'s Toolbox", + [2010819] = "Container of Moonwell Water", + [2010820] = "Sorrowmoss Mushroom", + [2010821] = "Cracked Crate", + [2010822] = "Kul Tiran Trunk", + [2010823] = "Forgotten Tome", + [2010824] = "Grain Sack", + [2010825] = "Crate labelled \"B\"", + [2010826] = "Crate labelled \"A\"", + [2010827] = "Mechagnome Head", + [2010828] = "Ancient Treasure Chest", + [2010829] = "Waterlogged Trunk", + [2010830] = "Half Buried Barrel", + [2010831] = "Hazzuri Basket", + [2010832] = "Hazu Leaf", + [2010833] = "Blackwater Weapon Crate", + [2010834] = "Blast Powder Keg", + [2010835] = "Gobcrank Flazwanger", + [2010836] = "Huge Keg of Rum", + [2010837] = "Captain Blackeye\'s Footlocker", + [2010838] = "Tainted Sap", + [2010839] = "Hanging Bag", + [2010840] = "Steamwheedle Barrel", + [2010841] = "Dirt Mound", + [2010842] = "Magically Sealed Door", + [2010843] = "Refined Gem Shipment", + [2010844] = "Mysterious Shipment", + [2010845] = "Mucky Book", + [2010846] = "Aged Wooden Chest", + [2010847] = "Fire Beckoning and Command", + [2010848] = "Sealed Highborne Chest", + [2010849] = "Way-Stone of Eldarath", + [2010850] = "Way-Stone of Dorath", + [2010851] = "Ashan Stone", + [2010852] = "Gor\'dosh Basket", + [2010853] = "spells creature_spellportal_blue.mdx", + [2010854] = "Uncommon Journal", + [2010855] = "Arcane Goods", + [2010856] = "Melenas\'s Belongings", + [2010857] = "Distinct Sword", + [2010858] = "Naga Chest of Treasure", + [2010859] = "Weathered Journal", + [2010860] = "Kalanar\'s Strongbox", + [2010861] = "Venture Co. Equipment", + [2010862] = "Bloodsail Supply Crate", + [2010863] = "General Good Crate", + [2010864] = "Bananas", + [2010865] = "SANDWATERFALL - LARGE", + [2010866] = "Ghost Gate - LARGE", + [2010867] = "Vault Armory Equipment", + [2010868] = "Quest 40295 Custom Trigger", + [2010869] = "Spiritleaf", + [2010870] = "Arcanist Sovatir\'s Torn Notes", + [2010871] = "Lyvdia Dawnbird", + [2010872] = "Highborne Golden Statue", + [2010873] = "Arcanist Sovatir\'s Torn Notes", + [2010874] = "Atal\'ai Chest", + [2010875] = "Southfury Trading Company", + [2010876] = "Auribloom", + [2010877] = "The Dark-Rune Anvil", + [2010878] = "Crate in High Elven Wrecks", + [2010879] = "Moonwell Water Splash", + [2010880] = "Moonwell (Event)", + [2010882] = "Shalandis Ship", + [2010883] = "Corrupted Felstone", + [2010884] = "Guide to a Sailor\'s Stomach", + [2010885] = "Demonic Chest", + [2010886] = "Aurelian", + [2010887] = "History of Darrowgaze", + [2010888] = "Oil Barrel", + [2010889] = "Thalassian Alliance", + [2010890] = "Quest 40420 Custom Trigger", + [2010891] = "Arcane Intricacies and Magical Phenomenon", + [2010892] = "Garrison Supply Cache", + [2010893] = "Carrying Basket", + [2010894] = "Ceremonial Container", + [2010895] = "Drum of Passing", + [2010896] = "Uneven Dirt", + [2010897] = "Important Documents", + [2010898] = "Forgotten Trunk", + [2010899] = "Jangolode Shipment", + [2010900] = "Gold Coast Shipment", + [2010901] = "Lordaeron Stamped Crate", + [2010902] = "Sealed Documents Container", + [2010903] = "Quest 40486 Custom Trigger", + [2010904] = "Stronghold Documents", + [2010905] = "Transfer Documents I", + [2010906] = "Transfer Documents II", + [2010907] = "Transfer Documents III", + [2010908] = "Garrison and Supply Documents", + [2010909] = "Sack of Magical Grains", + [2010910] = "PUNISHMENT FOR THOSE THAT DO NOT WORK HARD", + [2010911] = "NO ENTRY UNLESS GRANTED BY HIGH FOREMAN", + [2010912] = "JUSTICE DEMANDS SACRIFICE", + [2010913] = "RULES AND REGULATIONS BOARD", + [2010914] = "Elvish Notes", + [2010915] = "Ancient Burial Container", + [2010916] = "Hawk\'s Talon", + [2010917] = "Turtle Meat", + [2010918] = "Abandoned Murloc Hut", + [2010919] = "Abandoned Murloc Nest", + [2010920] = "Turmoiled Grave", + [2010921] = "Theramore Trunk", + [2010922] = "Personal Belongings", + [2010923] = "A Turmoiled Grave", + [2010924] = "A Curious Leaf", + [2010925] = "Cottontail Sprig", + [2010926] = "Turbo-Scan Filtronomitor", + [2010927] = "Abandoned Footlocker", + [2010928] = "Carver\'s Chest", + [2010929] = "Redbrand Archive", + [2010930] = "Crop Harvest", + [2010931] = "Box of Spare Parts", + [2010932] = "Blacksand Oil", + [2010933] = "Crystalline Resonation Crystal", + [2010934] = "Crystalline Harmonization Crystal", + [2010935] = "Secured Angor Chest", + [2010936] = "Expedition Supplies", + [2010937] = "Alor\'el", + [2010938] = "Mashan\'she Silversage", + [2010939] = "Communitypainting1", + [2010940] = "Communitypainting2", + [2010941] = "Communitypainting3", + [2010942] = "Communitypainting4", + [2010943] = "Windshear Chest", + [2010944] = "Sputtervalve Conductor", + [2010945] = "Stolen Crate", + [2010946] = "Gong of Corthan", + [2010947] = "Ancient Chest", + [2010948] = "Ripe Tel\'Abim Banana", + [2010949] = "Ripe Tel\'Abim Bundle", + [2010950] = "Tel Co. Backup Seal-Valve", + [2010951] = "Shellcoin, INVEST IN YOUR FUTURE", + [2010952] = "Shellcoin, the currency of the titans.", + [2010953] = "Buy shellcoin, and obtain wealth NOW.", + [2010954] = "The future is here.", + [2010955] = "Shellcoin Information Panel", + [2010956] = "Shellcoin Information Panel", + [2010957] = "Shellcoin, duty bound, and Horde Sponsored.", + [2010958] = "Shellcoin, making peons into Warchiefs.", + [2010959] = "Buy Shellcoin, and obtain power beyond your wildest dreams!", + [2010960] = "A new era has come, claim Shellcoin NOW!", + [2010961] = "Wazlon\'s Toolbox", + [2010962] = "Strange Tel\'Abim Banana", + [2010963] = "The Gargantuan Banana", + [2010964] = "Communitypainting5", + [2010965] = "Communitypainting6", + [2010966] = "Communitypainting7", + [2010967] = "Winter Veil Keg", + [2010968] = "Foreign Chest", + [2010969] = "Inconspicuous Totem", + [2010970] = "Incense Brazier", + [2010971] = "Carus\' Gift", + [2010972] = "Tel Co. Bounty Board", + [2010973] = "Screwfuse 1000", + [2010974] = "Magma Condensor Crate", + [2010975] = "Intricate Arcanite Barrels", + [2010976] = "Ancient Troll Tablet", + [2010977] = "Ancient Dirt Mound", + [2010978] = "Smuggled Gunpowder", + [2010979] = "Smuggled Procurements", + [2010980] = "World Expansion02 Doodads Dalaran Dalaran_Painting_16.mdx", + [2010981] = "World Expansion02 Doodads Dalaran Dalaran_Painting_17.mdx", + [2010982] = "World GENERIC HUMAN PASSIVE DOODADS Artwork Painting16.mdx", + [2010983] = "World GENERIC HUMAN PASSIVE DOODADS Artwork Painting17.mdx", + [2010984] = "World GENERIC HUMAN PASSIVE DOODADS Artwork Painting18.mdx", + [2010985] = "World GENERIC HUMAN PASSIVE DOODADS Artwork Painting19.mdx", + [2010986] = "World custom cellar01 twow_mysteriesofazeroth_cellar_01.wmo", + [2010987] = "world wmo kalimdor buildings ClassicalElfRuins AZRClassicalElfRuin_uwhite05.wmo", + [2010988] = "world wmo kalimdor Hyjal Hyjal_Malorne_Shrine_Intact.wmo", + [2010989] = "world Kalimdor Hyjal Shrines Hyjal_Malorne_Shrine_Intact_Doodads.mdx", + [2010990] = "world wmo Northrend Buildings Human DB_Barracks.wmo", + [2010991] = "world wmo Northrend Buildings Human ND_Human_Boreanalliancetown_Barracks ND_Human_Borean_Bridge.wmo", + [2010992] = "World custom camp camp3.wmo", + [2010993] = "World custom kttheatre kttheatre2.wmo", + [2010994] = "World custom farm farm.wmo", + [2010995] = "World custom farm farm2.wmo", + [2010996] = "world custom WMO Halcellar twow_mysteriesofazeroth_cellar_01.wmo", + [2010997] = "World wmo transports highelfships highelf_ship.wmo", + [2010998] = "world wmo azeroth buildings stormwind custom keep sw_keep_wall03.wmo", + [2010999] = "world wmo azeroth buildings stormwind custom keep gn_keep_wall03.wmo", + [2011000] = "world wmo azeroth buildings stormwind custom keep sw_keep_wall01.wmo", + [2011001] = "world wmo azeroth buildings stormwind custom keep sw_keep_wall04.wmo", + [2011002] = "world wmo azeroth buildings stormwind custom keep sw_keep_tower01.wmo", + [2011003] = "world wmo azeroth buildings stormwind custom keep sw_keep_tower02.wmo", + [2011004] = "world wmo azeroth buildings stormwind custom keep sw_keep_tower03.wmo", + [2011005] = "world wmo azeroth buildings stormwind custom keep sw_keep_tower04.wmo", + [2011006] = "world wmo azeroth buildings stormwind custom keep sw_keep_tower05.wmo", + [2011007] = "world wmo azeroth buildings stormwind custom keep sw_keep_tower06.wmo", + [2011008] = "world wmo azeroth buildings stormwind custom keep gn_keep_wall01.wmo", + [2011009] = "world wmo azeroth buildings stormwind custom keep gn_keep_wall04.wmo", + [2011010] = "world wmo azeroth buildings stormwind custom keep gn_keep_tower01.wmo", + [2011011] = "world wmo azeroth buildings stormwind custom keep gn_keep_tower02.wmo", + [2011012] = "world wmo azeroth buildings stormwind custom keep gn_keep_tower03.wmo", + [2011013] = "world wmo azeroth buildings stormwind custom keep gn_keep_tower04.wmo", + [2011014] = "world wmo azeroth buildings stormwind custom keep gn_keep_tower05.wmo", + [2011015] = "world wmo azeroth buildings stormwind custom keep gn_keep_tower06.wmo", + [2011016] = "world azeroth buildings houses gn_cth_house01.wmo", + [2011017] = "world azeroth buildings houses sw_cth_house01.wmo", + [2011018] = "world azeroth buildings houses sw_cth_house02.wmo", + [2011019] = "world azeroth buildings houses sw_cth_house03.wmo", + [2011020] = "world azeroth buildings houses sw_cth_house04.wmo", + [2011021] = "world azeroth buildings houses sw_cth_house05.wmo", + [2011022] = "world azeroth buildings houses sw_cth_house06.wmo", + [2011023] = "world azeroth buildings houses sw_cth_house07.wmo", + [2011024] = "world azeroth buildings houses gn_cth_house01.wmo", + [2011025] = "world azeroth buildings houses gn_cth_house02.wmo", + [2011026] = "world azeroth buildings houses gn_cth_house03.wmo", + [2011027] = "world azeroth buildings houses gn_cth_house04.wmo", + [2011028] = "world azeroth buildings houses gn_cth_house05.wmo", + [2011029] = "world azeroth buildings houses gn_cth_house06.wmo", + [2011030] = "world azeroth buildings houses gn_cth_house07.wmo", + [2011031] = "world azeroth buildings houses Ldrn_house04.wmo", + [2011032] = "world azeroth buildings houses Ldrn_house05.wmo", + [2011033] = "world azeroth buildings houses Giln_house04.wmo", + [2011034] = "world azeroth buildings houses Giln_house05.wmo", + [2011035] = "Gilneas City", + [2011036] = "Ravenshire", + [2011037] = "Greyshire", + [2011038] = "The Greymane Wall", + [2011039] = "Stillward Church", + [2011040] = "Dryrock Valley", + [2011041] = "Shademore Tavern", + [2011042] = "Gilneas Memorial Stone", + [2011043] = "Medivh\'s Merlot", + [2011044] = "Medivh\'s Merlot Blue", + [2011045] = "First Feather of Medivh", + [2011046] = "Second Feather of Medivh", + [2011047] = "Third Feather of Medivh", + [2011048] = "Fourth Feather of Medivh", + [2011049] = "Treatise on Magical Locks and Keys", + [2011050] = "The Prophet\'s Warnings and the Gilneas Brigade", + [2011051] = "The Dwarves of Gelnor", + [2011052] = "HFjord_Fog_01.mdx", + [2011053] = "GilneasAbandoned_Barn.wmo", + [2011054] = "GilneasAbandoned_human_farm.wmo", + [2011055] = "GilneasAbandoned_HumanTwoStory.wmo", + [2011056] = "GilneasAbandoned_TownHall_NoWall.wmo", + [2011057] = "gate06.wmo", + [2011058] = "gate06_gilneas.wmo", + [2011059] = "red_gate.wmo", + [2011060] = "gil_gate.wmo", + [2011061] = "High1ElfHuntersLodge.wmo", + [2011062] = "Gilneas_human_farmB.wmo", + [2011063] = "Gilneas_humantwostory.wmo", + [2011064] = "Gilneas_Stable.wmo", + [2011065] = "Gilneas_TownHall_NoWall.wmo", + [2011066] = "Gilneas_Blacksmith.wmo", + [2011067] = "gate01_gilneas.wmo", + [2011068] = "HE_Scrying_Tower.wmo", + [2011069] = "High1Elf_TwoStory01.wmo", + [2011070] = "High1Elf_Wall.wmo", + [2011071] = "High1Elf_Hunter_Lodge.wmo", + [2011072] = "High1Elf_Arcane_Sanctum.wmo", + [2011073] = "High1Elf_platform.wmo", + [2011074] = "High1Elf_SmallGazebo01.wmo", + [2011075] = "High1Elf_Stairs04.wmo", + [2011076] = "Worgen_Telescope.mdx", + [2011077] = "Dalaran_CrystalBall_01.mdx", + [2011078] = "PostBoxHigh1Elf.mdx", + [2011079] = "Wildhammer_Banner_02.mdx", + [2011080] = "Wildhammer_Gryphon_Chicks.mdx", + [2011081] = "Wildhammer_Stonethrower_01.mdx", + [2011082] = "AlteracLadder01.mdx", + [2011083] = "JewelCraft_GemCut_04.mdx", + [2011084] = "JewelCraft_Necklace01.mdx", + [2011085] = "GuildVault_HighElf_01.mdx", + [2011086] = "HE_Fence_001.mdx", + [2011087] = "HE_Fencepost_001.mdx", + [2011088] = "HE_Tomb01.mdx", + [2011089] = "HE_Bed_02.mdx", + [2011090] = "HE_TRANSLOCATOR_MINOR.MDX", + [2011091] = "HE_MerchantStand02.mdx", + [2011092] = "HE_MerchantStand03.mdx", + [2011093] = "Highborne_Telescope.mdx", + [2011094] = "HE_Tent03.mdx", + [2011095] = "HE_Tent04.mdx", + [2011096] = "CryptFinal20.wmo", + [2011097] = "Tinkertown.wmo", + [2011098] = "Crystalsong_Ruins_Ramp_01.mdx", + [2011099] = "Crystalsong_Ruins_Column_01.mdx", + [2011100] = "AzjolRoofGiant.wmo", + [2011101] = "Highborne Mailbox", + [2011102] = "Illidari Mailbox", + [2011103] = "Warden Mailbox", + [2011104] = "JewelCraft_GemCut_03.mdx", + [2011105] = "Weathered Chest", + [2011107] = "Gallows01,mdx", + [2011108] = "World GENERIC HUMAN PASSIVE DOODADS Desks FancyDesk01.mdx", + [2011109] = "Shell Co has relocated!", + [2011110] = "Dreamsight Gem Spell Focus", + [2020000] = "Joshua the Redeemer", + [2020001] = "The Crying Pony", + [2020002] = "Huntsman\'s Axe", + [2020003] = "Millie\'s Apothecary", + [2020004] = "True Blades", + [2020005] = "Spider\'s Thread", + [2020006] = "Shoemaker and Co.", + [2020007] = "The Luring Rod", + [2020008] = "Flappy Chicken", + [2020009] = "Micah\'s Goods", + [2020010] = "A Hat You Need", + [2020011] = "Orven Vintage Limited", + [2020012] = "Gilneas City Customs", + [2020013] = "Gelson Crossbows", + [2020014] = "Adaman Armor", + [2020015] = "Dawnstone Plans", + [2020016] = "Sack of Mithril Ore", + [2020017] = "Alpha Channel Valve", + [2020018] = "Reserve Pump Lever", + [2020019] = "Hydrocondensor Modulator", + [2020020] = "Schematic: High Energy Regulator", + [2020021] = "Spare Parts", + [2020022] = "Dark Iron Technology", + [2020023] = "Hyjalroot", + [2020024] = "\'On the Powers of Blood\'", + [2020025] = "Aliattan Anderson\'s Journal", + [2020026] = "Aliattan\'s Campfire", + [2020027] = "Harlow Family Chest", + [2020028] = "Mysterious Mailbox", + [2020029] = "Stolen Oil Shipment", + [2020030] = "Spare Wagon Wheel", + [2020031] = "Medical Crate", + [2020032] = "The Founding of Ronae\'Thalas", + [2020033] = "Deed to Ravenshire", + [2020034] = "Crystalvein", + [2020035] = "Grave of Franklin Blackheart", + [2020036] = "Runestone of Nordrassil", + [2020037] = "Runestone of Cenarius", + [2020038] = "Ravenwood Chest", + [2020039] = "Shard of Midnight", + [2020040] = "Lost and Found Box", + [2020041] = "Rothlen Chest", + [2020042] = "Favor of Erennius", + [2020043] = "Sealed Barrow Trunk", + [2020044] = "Memento of Greyshire", + [2020045] = "Tear of Zalmos", + [2020046] = "Serpentroot", + [2020047] = "Shame of the Sentinels", + [2020048] = "Velinde\'s Memory", + [2020049] = "Druidic Writings", + [2020050] = "Backup Servant Storage", + [2020051] = "Strange Marble Bust", + [2020052] = "The Orb of Pyforos", + [2020053] = "Hyjal Flora", + [2020054] = "Buckle Up", + [2020055] = "Book of Ur: Volume Two", + [2020056] = "Painting of Mia", + [2020057] = "Manuscript on Hydromancy II", + [2020058] = "World Generic Passive Doodads Sholazar_BambooA.mdx", + [2020059] = "World Generic Passive Doodads Sholazar_BambooB.mdx", + [2020060] = "World Generic PVP OilRigs BF2_OilTower_01.mdx", + [2020061] = "World Generic PVP OilRigs BF2_OilTower_02.mdx", + [2020062] = "Aerie Peak Gravestone", + [2020063] = "Coalpile", + [2020064] = "Hangmans Plunder\'s Logbook", + [2020065] = "Crudely Broken Locker", + [2020066] = "Bucket of Tools", + [2020067] = "Overdue Shipment", + [2020068] = "Venture Co. Lockbox", + [2020069] = "Blackstone Sea Shell", + [2020070] = "Wine", + [2020071] = "Gallifrey", + [2020072] = "Thalassian Daisy", + [2020073] = "Arcane Crystal Package", + [2020074] = "Tarnished Mace", + [2020075] = "Stolen Water", + [2020076] = "Boat to Alah\'Thalas", + [2020077] = "Sealed Venture Crate", + [2020078] = "Bucket of Grapes", + [2020079] = "Party Supplies", + [2020080] = "Autumnal Bush", + [2020081] = "Mana Core", + [2020082] = "Arcane Crystal Crate", + [2020083] = "Saelyn\'s Shipment", + [2020084] = "Ancient Acorn", + [2020085] = "Memorial Plaque", + [2020086] = "Magister Translocation Orb", + [2020087] = "Council Translocation Orb", + [2020088] = "The Hearth of Grim Batol", + [2020089] = "Ironforge Jewelers Guild", + [2020090] = "Fencer Family Jewels", + [2020091] = "High Quality Ammo Crate", + [2020092] = "High Quality Ammo Crate", + [2020093] = "Jewelcrafting", + [2020094] = "Asoran\'s Jewelry House", + [2020095] = "Gemstone Deposit", + [2020096] = "Gilnean Jewelry: A Compendium", + [2020097] = "Wet Bag", + [2020098] = "Khadgar\'s Journal", + [2020099] = "Resonating Pedestal", + [2020100] = "Timbermaw Herb Basket", + [2020101] = "Goldsmithing Plans", + [2020102] = "Goldsmithing Plans", + [2020103] = "Gemology Plans", + [2020104] = "Gemology Plans", + [2020105] = "Altar of Cla\'ckora", + [2020106] = "Mosscovered Chest", + [2020107] = "Tattered Journal", + [2020108] = "Overgrown Mound", + [2020109] = "Magical Telescope", + [2020110] = "Glimmering Shard", + [2020111] = "Recipes of Kezan", + [2020112] = "of Ancients and Treants", + [2020113] = "Celia\'s Journal", + [2020114] = "Beacon of Power", + [2020115] = "Ironvine Root", + [2020116] = "Medivh\'s Translocation Orb", + [2020117] = "Half-empty Fruitbowl", + [2020118] = "Ordinary Painting", + [2020119] = "Marble Lion Statue", + [2020120] = "Observatory Wardrobe", + [2020121] = "Inconspicuous Pedestal", + [2020122] = "Tiny Chest", + [2020123] = "Cold Campfire", + [2020124] = "Abandoned Locker", + [2020125] = "Pedestal Plaque", + [2020126] = "Vorgendor: Myths from the Blood Dimension", + [2020127] = "The Siege of Balor", + [2020128] = "The Founding of Balor", + [2020129] = "Viridian Mushroom", + [2020130] = "Dragon Brazier", + [2020131] = "Staff of Chen", + [2020132] = "Willey\'s Personal Stache", + [2020133] = "Eskhandar", + [2020134] = "Quillboar Cache", + [2020135] = "Scarlet Footlocker", + [2020136] = "Silver Hops Shrub", + [2020137] = "Black Hops Shrub", + [2020138] = "Hillsbrad Hops", + [2020139] = "Stout Hops Shrub", + [2020140] = "Ambershire", + [2020141] = "Crawford Winery", + [2020142] = "Birkhaven", + [2020143] = "Amberwood Keep", + [2020144] = "Stillheart Port", + [2020145] = "Ambershire", + [2020146] = "Tower of Magilou", + [2020147] = "Saint Mara Abbey", + [2020148] = "Honey Drop Inn", + [2020149] = "The Plump Pumpkin", + [2020150] = "Queen Tiffin Ellerian Wrynn - The Light of our Kingdom", + [2020151] = "In Honor of our Fallen Heroes", + [2020152] = "Legacy of Stormwind\'s Court Magicians", + [2020153] = "Saint Mara Fordragon", + [2020154] = "Magilou\'s Almanac", + [2020155] = "Dusty Urn", + [2020156] = "Crawford Family Chest", + [2020157] = "Suspicious Pumpkin", + [2020158] = "Half-Buried Container", + [2020159] = "Weird Barrel", + [2020160] = "Dragon Vault", + [2020161] = "Flame of Farrak", + [2020162] = "Inconspicuous Documents", + [2020163] = "Blackrock Coffer", + [2020164] = "Deathcap", + [2020165] = "Widow\'s Frill", + [2020166] = "Zappo\'s Recording Box", + [2020167] = "Hidden Locker", + [2020168] = "Shatterblade Bounty Board", + [2020169] = "Autumny Leaf Pile", + [2020170] = "Black Sealed Chest", + [2020171] = "Ingvild\'s Pie", + [2020172] = "Crawford Wardrobe", + [2020173] = "Dark Iron Gunpowder Keg", + [2020174] = "Stolen Horse Feed Sack", + [2020175] = "\'Grimmen Greens\'", + [2020176] = "Winter\'s Kiss", + [2020177] = "Muddy Journal", + [2020178] = "Unremarkable Barrel", + [2020179] = "Unremarkable Crate", + [2020180] = "Unremarkable Box", + [2020181] = "Wooden Plank", + [2020182] = "Tidal Altar", + [2020183] = "Unsent Letter", + [2020184] = "Sir Edrin Vellas, the Gallant Knight - Beginnings", + [2020185] = "Sir Edrin Vellas, the Gallant Knight - Trials", + [2020186] = "Sir Edrin Vellas, the Gallant Knight - Legacy", + [2020187] = "Solutions To Arcane Resonance", + [2020188] = "Sir Wolram Notleigh", + [2020189] = "Stolgaz Documents", + [2020190] = "Dark Iron Components", + [2020191] = "Intricate Parts", + [2020192] = "Reachroot", + [2020193] = "Flame of Dagnoth", + [2020194] = "Royal Seal Letter", + [2020195] = "Arc\'Tiras – Study", + [2020196] = "Tempered Blade", + [2020197] = "Eternal Flame", + [2020198] = "Redbrand Tablet", + [2020199] = "Lena Bright", + [2020200] = "Wilfred Tilley", + [2020201] = "Reinhold Ellerian", + [2020202] = "Bartholomew Gallagher", + [2020203] = "Tiffany Birkton", + [2020204] = "Dun Kithas", + [2020205] = "Stolgaz Keep", + [2020206] = "East Ridge Outpost", + [2020207] = "Baggoth\'s Rampart", + [2020208] = "Barleycrest Farmstead", + [2020209] = "Farstrider Lodge", + [2020210] = "The Grim Hollow", + [2020211] = "Slatebeard\'s Forge", + [2020212] = "Grim Batol Memorial", + [2020213] = "Shatterblade Post", + [2020214] = "Dathronag the Mighty", + [2020215] = "Algoron the Uniter", + [2020216] = "Lower Reserve Memorial", + [2020217] = "Kwabit\'s Chest", + [2020218] = "Ravasaur Egg", + [2020219] = "Chest of Dathronag", + [2020220] = "Pedestal of Unity", + [2020221] = "Sermon of the Church", + [2020222] = "Dusty Wardrobe", + [2020223] = "Core of Arc\'Tiras", + [2020224] = "Darkedged Bone", + [2020225] = "Control Panel Alpha", + [2020226] = "Control Panel Beta", + [2020227] = "Control Panel Gamma", + [2020228] = "Control Panel Delta", + [2020229] = "Undermine Shipment", + [2020230] = "Daria Balor, Protector of our Home", + [2020231] = "Earthen Ring Memorial", + [2020232] = "Lower Reserve Gate", + [2020233] = "Stormwrought Castle Gate", + [2020234] = "Moonshrine Bloom", + [2020235] = "Crate of Balor Moonshine", + [2020236] = "Chamber Lever", + [2020237] = "Replenishable Mana Crystal", + [2020238] = "Earthen Relic", + [2020239] = "Groldan\'s Stash", + [2020240] = "Rusty Locket", + [2020241] = "Withered Cross", + [2020242] = "Logbook of The Rat\'s Nest", + [2020243] = "Banner of Baggoth", + [2020244] = "Dragonmaw Supply Crate", + [2020245] = "Brangar\'s Grain Crate", + [2020246] = "Brangar\'s Journal", + [2020247] = "Old Wildhammer Book", + [2020248] = "Stone Brick", + [2020249] = "Stormwrought Crystal", + [2020250] = "Forgotten Diary ", + [2020251] = "Dragonmaw Retreat Reserve Gate", + [2020252] = "Ancient Wildhammer Tome", + [2020253] = "Servo-Motor 3000", + [2020254] = "Kalke\'s Toolbox", + [2050505] = "Karaforty Portcullis Gate", + [3000100] = "FM Acquisition, Blastentom\'s Property", + [3000101] = "Quest 70029 Custom Trigger", + [3000102] = "Quest 39001 Custom Trigger", + [3000105] = "Zeppelin\'s Shortwave Radio", + [3000200] = "Bundle of Wood", + [3000202] = "Well", + [3000203] = "Shadowforge Cage", + [3000204] = "Portal to Goldshire", + [3000205] = "Portal to Goldshire", + [3000206] = "Loch Modan Pumpkin", + [3000207] = "Loch Modan Berry Bush", + [3000208] = "Thalassian Mailbox", + [3000209] = "Locked Crypt Door", + [3000220] = "Portal to Alah\'Thalas", + [3000221] = "Portal to Alah\'Thalas", + [3000222] = "Arcane Crystal", + [3000223] = "Arcane Artifact", + [3000224] = "Translocation Orb", + [3000225] = "Translocation Orb", + [3000227] = "Trash", + [3000228] = "Trash", + [3000229] = "Trash", + [3000235] = "Quark\'s Cargo", + [3000236] = "Sturk\'s Chest", + [3000238] = "Poppy", + [3000240] = "Portal to Amani\'Alor", + [3000241] = "Portal to Amani\'Alor", + [3000242] = "Spirit Pyre", + [3000245] = "Zeppelin Cargo", + [3000246] = "Mysterious Glittering Object", + [3000247] = "Freshly Cut Wood", + [3000248] = "Barrel of Oil", + [3000270] = "Defense Portal", + [3000271] = "Debilitating Device", + [3000273] = "stormwind_vault_rat_trap", + [3000275] = "Stormwind Vault Portcullis Small", + [3000276] = "Stormwind Vault Portcullis Small", + [3000280] = "Rosemary", + [3000282] = "Stormwind Vault (Collision)", + [3000284] = "Mysterious Glittering Object", + [3000290] = "darkstatue", + [3000291] = "ND_Necropolis01", + [3000292] = "g_thanksgivingtable_01", + [3000293] = "PVP_Lordaeron_Arena", + [3000294] = "PVP_Ogre_Arena01", + [3000295] = "PVP_Ogre_Arena01", + [3000296] = "PBaby_He", + [3000297] = "PVP_Lordaeron_Door", + [3000298] = "PVP_Ogre_Door_Front", + [3000299] = "PVP_Ogre_Door_Enterior", + [3000300] = "BE_Tent_Red_02", + [3000301] = "LD_FoodCart01", + [3000302] = "LD_FoodCart02", + [3000303] = "Sherpa_Bedroll_0", + [3000304] = "Sherpa_Bedroll_2", + [3000305] = "Goblin_Oildrum_01", + [3000306] = "Goblin_Tub_02", + [3000307] = "Goblin_Kezan_BeachChair_01", + [3000308] = "Goblin_Kezan_BeachChair_02", + [3000309] = "Goblin_Kezan_PoolPony_Floating_Blue_01", + [3000310] = "Goblin_Kezan_PoolPony_Floating_Green_01", + [3000311] = "Goblin_Kezan_PoolPony_Floating_Orange_01", + [3000312] = "Goblin_Kezan_PoolPony_Stationary_Blue_01", + [3000313] = "Goblin_Kezan_PoolPony_Stationary_Orange_01.", + [3000314] = "Goblin_Kezan_PoolPony_Stationary_Green_01", + [3000315] = "Goblin_BeachBucket_01", + [3000316] = "Goblin_BeachBucket_02", + [3000317] = "Goblin_BeachParasol_02", + [3000318] = "Goblin_BeachParasol_03", + [3000319] = "Goblin_BeachParasol_04", + [3000320] = "Goblin_BeachParasol_06", + [3000321] = "Goblin_BeachTowel_01", + [3000322] = "Goblin_BeachTowel_02", + [3000325] = "BE_Tent_Red_01", + [3000330] = "EnwynnChurch", + [3000331] = "BarnEnwynn", + [3000332] = "SoccerBall", + [3000333] = "ClassicalELfRuin", + [3000343] = "Shimmering Shell", + [3000493] = "utari_house 1", + [3000494] = "utari_house 2", + [3000495] = "utari_house 3", + [3000496] = "utari_inn", + [3000497] = "utari_lumbermill", + [3000498] = "utari_market", + [3000499] = "utari_shop 1", + [3000500] = "utari_shop 2", + [3000501] = "utari_shop 3", + [3000502] = "utari_shrine", + [3000503] = "utari_stair", + [3000504] = "utari_tower", + [3000505] = "utari_hall", + [3000506] = "karazhan_wmo", + [3000507] = "goblin_beach_towel 1", + [3000508] = "goblin_beach_towel 2", + [3000509] = "human_guard_tower", + [3000510] = "Corrupted Crystal", + [3000511] = "Small Force Field", + [3000513] = "Medium Force Field", + [3000519] = "WorldExpansion02DoodadsULDUARUL_Ulduar_doors03.mdx", + [3000520] = "Areyntall Strongbox", + [3000525] = "Invisible Reset Trigger", + [3000600] = "Worldcustomgnshipgnship_int.wmo", + [3000601] = "Worldcustomkt_barnkt_barn.wmo", + [3000602] = "Worldcustomkt_barrackskt_barracks.wmo", + [3000603] = "Worldcustomkt_bsktbs.wmo", + [3000604] = "Worldcustomkt_chapelktchapel.wmo", + [3000605] = "Worldcustomkt_farmktfarm.wmo", + [3000606] = "Worldcustomkt_innktinn.wmo", + [3000607] = "Worldcustomkt_longhousedal_hq.wmo", + [3000608] = "Worldcustomkt_longhousedal_woodtower.wmo", + [3000609] = "Worldcustomkt_longhousekt_hq.wmo", + [3000610] = "Worldcustomkt_longhousekt_lo.wmo", + [3000611] = "Worldcustomkt_longhousekt_woodtower.wmo", + [3000612] = "Worldcustomkt_lumbermillkt_lumbermill.wmo", + [3000613] = "Worldcustomkt_magetowerkt_magetower.wmo", + [3000614] = "Worldcustomkt_manorkt_manor.wmo", + [3000615] = "Worldcustomkt_stablekt_stable.wmo", + [3000616] = "Worldcustomkt_tower2kttower2.wmo", + [3000617] = "Worldcustomkt_townkttownhall.wmo", + [3000618] = "Worldcustomkt_twostorykt_twostory.wmo", + [3000619] = "Worldcustomkt_windmillktwindmill.wmo", + [3000620] = "Worldcustomktcathedralktcathedral.wmo", + [3000621] = "Worldcustomktgate2ktgate2.wmo", + [3000622] = "Worldcustomktpalisadektpalisade.wmo", + [3000623] = "Worldcustomktpalisadektpalisade2.wmo", + [3000624] = "Worldcustomkttheatrekttheatre.wmo", + [3000625] = "WorldcustomDalaranDAbarrackal_barracks.wmo", + [3000626] = "WorldcustomDalaranDAbsalbs.wmo", + [3000627] = "WorldcustomDalaranDAcampusprisonlonghouse_lordaeron.wmo", + [3000628] = "WorldcustomDalaranDAfarmalfarm.wmo", + [3000629] = "WorldcustomDalaranDAinnalinn.wmo", + [3000630] = "WorldcustomDalaranDAtwostoryal_twostory.wmo", + [3000631] = "WorldcustomDalaranmagetowermagetower.wmo", + [3000632] = "WorldcustomDalaransanctumhighelf_smallhouse01.wmo", + [3000633] = "WorldcustomDalaranstablestable.wmo", + [3000634] = "WorldExpansion02DoodadsGenericBarberShopBarbershop_PoleStanding.mdx", + [3000635] = "WorldExpansion02DoodadsGenericBarberShopBarbershop_PoleWall.mdx", + [3000636] = "WorldExpansion02DoodadsGenericBarberShopBarbershop_Poster01.mdx", + [3000637] = "WorldExpansion02DoodadsGenericBarberShopBarbershop_Poster02.mdx", + [3000638] = "WorldExpansion02DoodadsGenericBarberShopBarbershop_Razor.mdx", + [3000639] = "WorldExpansion02DoodadsGenericBarberShopBarbershop_ShaveBrush.mdx", + [3000640] = "WorldExpansion02DoodadsGenericBarberShopBarbershop_ShaveCup.mdx", + [3000641] = "WorldExpansion02DoodadsGenericBarberShopBarbershop_Wig01.mdx", + [3000642] = "WorldExpansion02DoodadsGenericBarberShopBarbershop_Wig02.mdx", + [3000643] = "WorldExpansion02DoodadsGenericBarberShopBarbershop_Wig03.mdx", + [3000644] = "WorldExpansion02DoodadsGenericBarberShopBarbershop_Wig04.mdx", + [3000645] = "WorldExpansion02DoodadsGenericBarberShopBarbershop_Wig05.mdx", + [3000646] = "WorldGENERICPASSIVEDOODADSFISHFish_Undead_01.mdx", + [3000647] = "WorldSKILLACTIVATEDTRADESKILLENABLERSTradeskill_FishSchool_Blue.mdx", + [3000648] = "WorldSKILLACTIVATEDTRADESKILLENABLERSTradeskill_FishSchool_Green.mdx", + [3000649] = "WorldExpansion02DoodadsULDUARUL_Garbage_Bits3.mdx", + [3000650] = "WorldExpansion02DoodadsULDUARUL_Garbage_Bits5.mdx", + [3000651] = "WorldExpansion02DoodadsULDUARUL_Ulduar_doors03.mdx", + [3000652] = "WorldExpansion02DoodadsULDUARUL_Anvil.mdx", + [3000653] = "WorldExpansion02DoodadsULDUARUL_ThroneBase.mdx", + [3000654] = "WorldExpansion02DoodadsULDUARUL_TeleportationPad.mdx", + [3000655] = "WorldExpansion02DoodadsULDUARUL_gnomewing_TeleportPad.mdx", + [3000656] = "WorldExpansion02DoodadsULDUARUL_button_Control_Unit02.mdx", + [3000657] = "WorldExpansion02DoodadsULDUARUL_button_Control_Unit02.mdx", + [3000658] = "WorldDungeonWellofEternityBannersBanner_Azshara_NightElf_01.mdx", + [3000659] = "WorldEXPANSION04DOODADSPandarenPA_Food_Tea_01.mdx", + [3000660] = "WorldExpansion01DoodadsGenericOgreBonesOM_Bones_01.mdx", + [3000661] = "WorldExpansion01DoodadsGenericOgreBonesOM_Bones_03.mdx", + [3000662] = "WorldExpansion01DoodadsShadowmoonGuyserShadowmoon_lavasplash01.mdx", + [3000663] = "WorldwmoDungeonMD_OgremoundMD_OgreMine3.wmo", + [3000664] = "WorldwmoDungeonMD_OgremoundNagrand_Ogremound01.wmo", + [3000665] = "WorldwmoKalimdorBuildingsDwarfOL_Dwarven_WatchTower.wmo", + [3000666] = "WorldwmoNorthrendBuildingsHumanND_Human_Boreanalliancetown_BarracksND_Human_Borean_Bridge.wmo", + [3000667] = "WorldwmoOutlandShadowmoonSlagpitShadowmoon_Slagpit01.wmo", + [3000668] = "WorldwmoOutlandShadowmoonSlagpitShadowmoon_Slagpit0C.wmo", + [3000669] = "WorldwmoOutlandShadowmoonSlagpitShadowmoon_Slagpit0C.wmo", + [3000670] = "worldwmoOutlandAncOrcBuildingsAO_BridgeArch01.wmo", + [3000671] = "worldwmoOutlandAncOrcBuildingsAO_BridgeLong01.wmo", + [3000672] = "worldwmoOutlandAncOrcBuildingsAO_BridgeLong02.wmo", + [3000673] = "worldwmoOutlandAncOrcBuildingsAO_BridgeLong03.wmo", + [3000674] = "worldwmoOutlandAncOrcBuildingsAO_BridgeWalkwayLong01.wmo", + [3000675] = "worldwmoOutlandAncOrcBuildingsAO_BridgeWalkwayShort01.wmo", + [3000676] = "worldwmoOutlandAncOrcBuildingsAO_Footbridge01.wmo", + [3000677] = "worldwmoOutlandBrokenBuildingsBroken_bdelftower.wmo", + [3000678] = "WorldwmoDungeonMonestaryScarlet_Munistary_Interior.wmo", + [3000679] = "WorldwmoDungeonOL_OgreHutsOgre_GuardTower.wmo", + [3000680] = "WorldwmoDungeonOL_OgreHutsOgre_Hut.wmo", + [3000681] = "WorldwmoDungeonOL_OgreHutsOgre_Hut_Huge.wmo", + [3000682] = "WorldwmoDungeonOL_OgreHutsOgre_Hut2Story.wmo", + [3000683] = "WorldwmoDungeonOL_OgreHutsOgre_HutBig.wmo", + [3000684] = "Blazing Forge Kit: Forge", + [3000685] = "Blazing Forge Kit: Anvil", + [3000687] = "Sacred Chalice", + [3000688] = "Moonwell", + [3000690] = "Autumn Moon Plate", + [3000691] = "Autumn Moon Lantern", + [3002965] = "Dungeon Portal - Dragonmaw Retreat", + [4000509] = "Vault Door", + [5000000] = "SC_ENTERANCE_DOOR", + [5000001] = "SC_VENDOR_DOOR_LEFT", + [5000002] = "SC_VENDOR_DOOR_RIGHT", + [5000003] = "SC_DAELUS_DOOR", + [5000004] = "SC_DAELUS_DOOR_LOCKED", + [5000005] = "SC_NOLIN_DOOR_LOCKED", + [5000006] = "SC_ARDAEUS_ENTRANCE_DOOR", + [5000007] = "SC_ARDAEUS_EXIT_DOOR", + [5000008] = "SC_MARIELLA_DOOR", + [5000009] = "SC_RIGHT_WING_DOOR", + [5000010] = "SC_ABBENDIS_ENTRANCE_DOOR", + [5000011] = "SC_ABBENDIS_LOCKED_DOOR", + [5000012] = "SC_SUMMONING_CIRCLE", + [5000013] = "SC_MIRELLAS_ACHIEVEMENT_CHEST", + [5000014] = "SC_ARDAEUS_ACHIEVEMENT_CHEST", + [5000050] = "Baron Rivendare\'s Chest", + [6000001] = "The Illspring Estate", + [6000002] = "Orgrimmar Outskirts", + [6000003] = "", + [6000004] = "THE OLD CHURCH OF WESTFALL IS CLOSED", + [7000030] = "Strangely Giant Egg", + [7000031] = "Corrupted Dragon Egg", + [7000032] = "Lighting Impact Large", + [7000035] = "Time Rift Despawn Spell", + [7000036] = "Whisperwind Grove", +} + +-- Source: https://raw.githubusercontent.com/shagu/pfQuest-turtle/master/db/objects-turtle.lua +RelationshipsQuestAndItemBrowserData["objects"]["data-turtle"] = { + [1] = { + ["coords"] = {}, + }, + [2] = { + ["coords"] = {}, + }, + [4] = "_", + [31] = { + ["coords"] = { + [1] = { 84.5, 46.8, 44, 2 }, + }, + ["fac"] = "A", + }, + [32] = { + ["coords"] = { + [1] = { 41.5, 54.7, 44, 2 }, + }, + ["fac"] = "A", + }, + [33] = { + ["coords"] = { + [1] = { 26, 16.9, 40, 1 }, + [2] = { 52.1, 52.7, 876, 0 }, + }, + }, + [34] = { + ["coords"] = { + [1] = { 40.6, 17, 40, 1 }, + }, + }, + [35] = { + ["coords"] = { + [1] = { 25.9, 47.8, 40, 1 }, + }, + }, + [36] = { + ["coords"] = { + [1] = { 40.5, 47.8, 40, 1 }, + }, + }, + [37] = { + ["coords"] = { + [1] = { 28.9, 30.5, 10, 1 }, + }, + ["fac"] = "A", + }, + [38] = { + ["coords"] = {}, + }, + [47] = { + ["coords"] = { + [1] = { 26.8, 46.4, 44, 2 }, + }, + ["fac"] = "A", + }, + [52] = { + ["coords"] = { + [1] = { 22.9, 12, 33, 5 }, + }, + }, + [54] = { + ["coords"] = { + [1] = { 24.7, 8.9, 33, 5 }, + }, + }, + [57] = { + ["coords"] = { + [1] = { 29.5, 19.1, 33, 5 }, + }, + }, + [58] = { + ["coords"] = { + [1] = { 24.8, 23, 33, 5 }, + }, + }, + [59] = { + ["coords"] = { + [1] = { 49.9, 77.7, 10, 1 }, + }, + ["fac"] = "A", + }, + [60] = { + ["coords"] = { + [1] = { 29.6, 46.2, 44, 2 }, + }, + ["fac"] = "A", + }, + [61] = { + ["coords"] = { + [1] = { 17.7, 29.1, 10, 1 }, + }, + ["fac"] = "A", + }, + [76] = { + ["coords"] = { + [1] = { 63.2, 49.8, 44, 2 }, + }, + ["fac"] = "A", + }, + [119] = { + ["coords"] = { + [1] = { 33.4, 76.4, 10, 1 }, + }, + }, + [256] = { + ["coords"] = { + [1] = { 37.3, 46.5, 38, 7200 }, + [2] = { 17.6, 68.1, 5602, 7200 }, + }, + ["fac"] = "A", + }, + [257] = { + ["coords"] = { + [1] = { 56.1, 13.2, 38, 2 }, + [2] = { 27.2, 51, 5602, 2 }, + }, + ["fac"] = "A", + }, + [259] = { + ["coords"] = { + [1] = { 13.9, 34.8, 11, 2 }, + }, + ["fac"] = "A", + }, + [261] = { + ["coords"] = { + [1] = { 13.5, 41.4, 11, 2 }, + }, + ["fac"] = "A", + }, + [271] = { + ["coords"] = { + [1] = { 35.1, 26.9, 38, 60 }, + [2] = { 34.8, 26.7, 38, 60 }, + [3] = { 34.2, 26.5, 38, 60 }, + [4] = { 36.7, 26.1, 38, 60 }, + [5] = { 36.3, 24.8, 38, 60 }, + [6] = { 35.3, 24.4, 38, 60 }, + [7] = { 35.7, 24.3, 38, 60 }, + [8] = { 34.9, 23.4, 38, 60 }, + [9] = { 36.4, 20.7, 38, 60 }, + [10] = { 35.5, 19.9, 38, 60 }, + [11] = { 16.5, 58, 5602, 60 }, + [12] = { 16.4, 57.9, 5602, 60 }, + [13] = { 16.1, 57.8, 5602, 60 }, + [14] = { 17.4, 57.6, 5602, 60 }, + [15] = { 17.1, 56.9, 5602, 60 }, + [16] = { 16.6, 56.7, 5602, 60 }, + [17] = { 16.8, 56.7, 5602, 60 }, + [18] = { 16.4, 56.2, 5602, 60 }, + [19] = { 17.2, 54.8, 5602, 60 }, + [20] = { 16.7, 54.4, 5602, 60 }, + }, + }, + [272] = { + ["coords"] = { + [1] = { 38.5, 53.9, 1, 5 }, + }, + }, + [276] = { + ["coords"] = { + [1] = { 41.2, 44.9, 1, 120 }, + [2] = { 41, 44.7, 1, 120 }, + [3] = { 41.2, 44.5, 1, 120 }, + [4] = { 41.5, 44.4, 1, 120 }, + [5] = { 41.7, 44.2, 1, 120 }, + [6] = { 41.3, 43.8, 1, 120 }, + [7] = { 41.4, 43.8, 1, 120 }, + [8] = { 42.5, 36.4, 1, 120 }, + [9] = { 42, 36, 1, 120 }, + [10] = { 41.3, 35.9, 1, 120 }, + [11] = { 42.6, 35.6, 1, 120 }, + [12] = { 40.7, 35.2, 1, 120 }, + [13] = { 42.1, 35.2, 1, 120 }, + [14] = { 40.6, 34.9, 1, 120 }, + [15] = { 40.7, 34.8, 1, 120 }, + [16] = { 41.5, 34.6, 1, 120 }, + [17] = { 38.9, 29.8, 14, 120 }, + [18] = { 42.3, 27.2, 14, 120 }, + [19] = { 41.8, 26.9, 14, 120 }, + [20] = { 39.3, 25.5, 14, 120 }, + [21] = { 41, 25.1, 14, 120 }, + [22] = { 42.2, 25, 14, 120 }, + [23] = { 43, 24.5, 14, 120 }, + [24] = { 42.7, 24.5, 14, 120 }, + [25] = { 43.4, 24.5, 14, 120 }, + [26] = { 43.9, 23.7, 14, 120 }, + [27] = { 40.3, 23.7, 14, 120 }, + [28] = { 39.7, 23.3, 14, 120 }, + }, + }, + [290] = { + ["coords"] = { + [1] = { 49.3, 19.3, 40, 5 }, + }, + }, + [298] = { + ["coords"] = { + [1] = { 95.1, 46.7, 1, 7200 }, + [2] = { 32.1, 50.1, 38, 7200 }, + [3] = { 15, 69.9, 5602, 7200 }, + }, + }, + [299] = { + ["coords"] = { + [1] = { 95, 46.7, 1, 7200 }, + [2] = { 32.1, 50.1, 38, 7200 }, + [3] = { 15, 69.9, 5602, 7200 }, + }, + }, + [301] = { + ["coords"] = { + [1] = { 95, 46.6, 1, 7200 }, + [2] = { 32.1, 50, 38, 7200 }, + [3] = { 15, 69.9, 5602, 7200 }, + }, + }, + [302] = { + ["coords"] = { + [1] = { 95, 46.7, 1, 7200 }, + [2] = { 32.1, 50.1, 38, 7200 }, + [3] = { 15, 69.9, 5602, 7200 }, + }, + }, + [303] = { + ["coords"] = { + [1] = { 26.3, 22.4, 38, 7200 }, + [2] = { 12, 55.7, 5602, 7200 }, + }, + }, + [304] = { + ["coords"] = { + [1] = { 26.4, 22.3, 38, 7200 }, + [2] = { 12.1, 55.6, 5602, 7200 }, + }, + }, + [305] = { + ["coords"] = { + [1] = { 26.4, 22.4, 38, 7200 }, + [2] = { 12.1, 55.7, 5602, 7200 }, + }, + }, + [306] = { + ["coords"] = { + [1] = { 23, 71.1, 38, 7200 }, + [2] = { 10.3, 80.7, 5602, 7200 }, + }, + }, + [307] = { + ["coords"] = { + [1] = { 23, 71.2, 38, 7200 }, + [2] = { 10.3, 80.7, 5602, 7200 }, + }, + }, + [308] = { + ["coords"] = { + [1] = { 23, 71.1, 38, 7200 }, + [2] = { 10.3, 80.7, 5602, 7200 }, + }, + }, + [321] = { + ["coords"] = { + [1] = { 78.4, 35.9, 10, 1 }, + }, + }, + [324] = { + ["coords"] = { + [1] = { 57.6, 60.1, 4, 2700 }, + [2] = { 56.7, 59.8, 4, 2700 }, + [3] = { 54.8, 57.5, 4, 2700 }, + [4] = { 54.9, 55.7, 4, 2700 }, + [5] = { 55.8, 53.4, 4, 2700 }, + [6] = { 64.8, 50.1, 4, 2700 }, + [7] = { 49.4, 48, 4, 2700 }, + [8] = { 48.8, 43.5, 4, 2700 }, + [9] = { 51.4, 42.3, 4, 2700 }, + [10] = { 60.6, 40.8, 4, 2700 }, + [11] = { 57.4, 36.7, 4, 2700 }, + [12] = { 38, 34.7, 4, 2700 }, + [13] = { 38.2, 33.2, 4, 2700 }, + [14] = { 48.5, 33, 4, 2700 }, + [15] = { 51.7, 31.9, 4, 2700 }, + [16] = { 61.6, 31.5, 4, 2700 }, + [17] = { 66, 31.2, 4, 2700 }, + [18] = { 40.9, 30.4, 4, 2700 }, + [19] = { 66, 29.9, 4, 2700 }, + [20] = { 46, 29.3, 4, 2700 }, + [21] = { 38.5, 29.3, 4, 2700 }, + [22] = { 64.2, 29.2, 4, 2700 }, + [23] = { 39.2, 28.5, 4, 2700 }, + [24] = { 42.1, 24.1, 4, 2700 }, + [25] = { 43.2, 20.8, 4, 2700 }, + [26] = { 44.1, 19.2, 4, 2700 }, + [27] = { 44.3, 13.9, 4, 2700 }, + [28] = { 46.1, 13.8, 4, 2700 }, + [29] = { 57.7, 12.7, 4, 2700 }, + [30] = { 61.5, 71.2, 8, 2700 }, + [31] = { 46.9, 65.5, 8, 2700 }, + [32] = { 50.6, 65.3, 8, 2700 }, + [33] = { 44.9, 60, 8, 2700 }, + [34] = { 41.3, 59.8, 8, 2700 }, + [35] = { 73.4, 86.4, 16, 2700 }, + [36] = { 64, 85.4, 16, 2700 }, + [37] = { 36.8, 64.3, 16, 2700 }, + [38] = { 42.9, 62.8, 16, 2700 }, + [39] = { 38.1, 62.2, 16, 2700 }, + [40] = { 37, 61.6, 16, 2700 }, + [41] = { 41, 57.3, 16, 2700 }, + [42] = { 61.2, 50.1, 16, 2700 }, + [43] = { 41, 46.1, 16, 2700 }, + [44] = { 56.8, 44.8, 16, 2700 }, + [45] = { 74.2, 44.1, 16, 2700 }, + [46] = { 90.3, 35.2, 16, 2700 }, + [47] = { 89.3, 34.6, 16, 2700 }, + [48] = { 38.1, 34, 16, 2700 }, + [49] = { 39.2, 32.9, 16, 2700 }, + [50] = { 67.5, 32, 16, 2700 }, + [51] = { 80.2, 28.6, 16, 2700 }, + [52] = { 56.1, 28.4, 16, 2700 }, + [53] = { 56.4, 26.4, 16, 2700 }, + [54] = { 62.6, 26.3, 16, 2700 }, + [55] = { 61.9, 26.3, 16, 2700 }, + [56] = { 69.9, 19.6, 16, 2700 }, + [57] = { 41.3, 19.3, 16, 2700 }, + [58] = { 68.1, 18.9, 16, 2700 }, + [59] = { 77.7, 15.6, 16, 2700 }, + [60] = { 91.5, 96.3, 25, 2700 }, + [61] = { 94.4, 62.1, 25, 2700 }, + [62] = { 89.4, 62.1, 25, 2700 }, + [63] = { 94.6, 55.5, 25, 2700 }, + [64] = { 91.6, 54.9, 25, 2700 }, + [65] = { 61.2, 61.9, 28, 2700 }, + [66] = { 54, 61.1, 28, 2700 }, + [67] = { 65.2, 60.5, 28, 2700 }, + [68] = { 52.5, 58.8, 28, 2700 }, + [69] = { 51.9, 57.9, 28, 2700 }, + [70] = { 55.4, 57.6, 28, 2700 }, + [71] = { 66.9, 54.2, 28, 2700 }, + [72] = { 55, 53.6, 28, 2700 }, + [73] = { 68, 52.6, 28, 2700 }, + [74] = { 60.7, 49.4, 28, 2700 }, + [75] = { 44.6, 42.5, 28, 2700 }, + [76] = { 49.7, 40.4, 28, 2700 }, + [77] = { 65, 38.7, 28, 2700 }, + [78] = { 47.8, 38.3, 28, 2700 }, + [79] = { 61.5, 37.7, 28, 2700 }, + [80] = { 64, 37.7, 28, 2700 }, + [81] = { 43.7, 36.9, 28, 2700 }, + [82] = { 64.9, 36.6, 28, 2700 }, + [83] = { 54.7, 36.2, 28, 2700 }, + [84] = { 47.6, 35.9, 28, 2700 }, + [85] = { 64.2, 33.5, 28, 2700 }, + [86] = { 47.4, 27.8, 28, 2700 }, + [87] = { 53.5, 26.4, 28, 2700 }, + [88] = { 50.2, 24.8, 28, 2700 }, + [89] = { 48.6, 23.8, 28, 2700 }, + [90] = { 70.4, 23.5, 28, 2700 }, + [91] = { 52.3, 21, 28, 2700 }, + [92] = { 48.6, 20.5, 28, 2700 }, + [93] = { 48.8, 20.3, 28, 2700 }, + [94] = { 41.5, 20.1, 28, 2700 }, + [95] = { 40.9, 14.3, 28, 2700 }, + [96] = { 48.2, 13.2, 28, 2700 }, + [97] = { 46.1, 11.9, 28, 2700 }, + [98] = { 42.2, 11.8, 28, 2700 }, + [99] = { 81.8, 22.4, 45, 2700 }, + [100] = { 23, 73.2, 46, 2700 }, + [101] = { 89.3, 70.9, 46, 2700 }, + [102] = { 30.1, 70.5, 46, 2700 }, + [103] = { 21.8, 69.9, 46, 2700 }, + [104] = { 35.3, 69.6, 46, 2700 }, + [105] = { 89.4, 68, 46, 2700 }, + [106] = { 23.4, 67, 46, 2700 }, + [107] = { 22, 66.5, 46, 2700 }, + [108] = { 91.4, 66.3, 46, 2700 }, + [109] = { 25.7, 65, 46, 2700 }, + [110] = { 27, 64.2, 46, 2700 }, + [111] = { 72, 64.1, 46, 2700 }, + [112] = { 22.9, 64.1, 46, 2700 }, + [113] = { 90.8, 63.3, 46, 2700 }, + [114] = { 48.8, 62.6, 46, 2700 }, + [115] = { 22.5, 62.5, 46, 2700 }, + [116] = { 42.2, 62.1, 46, 2700 }, + [117] = { 91.5, 61.3, 46, 2700 }, + [118] = { 43.6, 59.6, 46, 2700 }, + [119] = { 47.2, 59.5, 46, 2700 }, + [120] = { 30.3, 58.6, 46, 2700 }, + [121] = { 36.3, 58.2, 46, 2700 }, + [122] = { 16.9, 58.1, 46, 2700 }, + [123] = { 65, 57.9, 46, 2700 }, + [124] = { 59.5, 57.1, 46, 2700 }, + [125] = { 36.3, 56.6, 46, 2700 }, + [126] = { 74.3, 56.3, 46, 2700 }, + [127] = { 70, 56.3, 46, 2700 }, + [128] = { 75.2, 56, 46, 2700 }, + [129] = { 74.8, 55.9, 46, 2700 }, + [130] = { 76.4, 55.4, 46, 2700 }, + [131] = { 62.2, 54.9, 46, 2700 }, + [132] = { 26.5, 54.8, 46, 2700 }, + [133] = { 67, 53.6, 46, 2700 }, + [134] = { 47.5, 50.8, 46, 2700 }, + [135] = { 16.3, 50.7, 46, 2700 }, + [136] = { 80.9, 48.5, 46, 2700 }, + [137] = { 81.8, 48.5, 46, 2700 }, + [138] = { 79.9, 47.8, 46, 2700 }, + [139] = { 96.8, 47.5, 46, 2700 }, + [140] = { 26.1, 45.8, 46, 2700 }, + [141] = { 79.6, 45.6, 46, 2700 }, + [142] = { 81.1, 45, 46, 2700 }, + [143] = { 41.8, 44.8, 46, 2700 }, + [144] = { 20.8, 44.8, 46, 2700 }, + [145] = { 67.7, 44.4, 46, 2700 }, + [146] = { 77.5, 44, 46, 2700 }, + [147] = { 83.5, 44, 46, 2700 }, + [148] = { 64.6, 44, 46, 2700 }, + [149] = { 56, 43.4, 46, 2700 }, + [150] = { 42.3, 43.1, 46, 2700 }, + [151] = { 50.3, 42.9, 46, 2700 }, + [152] = { 57.9, 42.4, 46, 2700 }, + [153] = { 20.8, 42.3, 46, 2700 }, + [154] = { 78.4, 41.3, 46, 2700 }, + [155] = { 39.7, 41.3, 46, 2700 }, + [156] = { 38, 41, 46, 2700 }, + [157] = { 44.3, 40.6, 46, 2700 }, + [158] = { 81.4, 40.4, 46, 2700 }, + [159] = { 72, 40.2, 46, 2700 }, + [160] = { 81.4, 40.1, 46, 2700 }, + [161] = { 61.2, 39.8, 46, 2700 }, + [162] = { 60.7, 39.7, 46, 2700 }, + [163] = { 39.1, 38.3, 46, 2700 }, + [164] = { 57.6, 37.6, 46, 2700 }, + [165] = { 42.6, 37.4, 46, 2700 }, + [166] = { 64.2, 36.8, 46, 2700 }, + [167] = { 46.8, 35.8, 46, 2700 }, + [168] = { 63.7, 35.7, 46, 2700 }, + [169] = { 47.3, 33.5, 46, 2700 }, + [170] = { 61.8, 31.2, 46, 2700 }, + [171] = { 39.8, 30.1, 46, 2700 }, + [172] = { 38.6, 30.1, 46, 2700 }, + [173] = { 55.1, 30, 46, 2700 }, + [174] = { 15, 30, 46, 2700 }, + [175] = { 39.9, 28.5, 46, 2700 }, + [176] = { 39.1, 28.4, 46, 2700 }, + [177] = { 63.9, 27.6, 46, 2700 }, + [178] = { 72.4, 27.3, 46, 2700 }, + [179] = { 62.5, 27.1, 46, 2700 }, + [180] = { 58.5, 25.2, 46, 2700 }, + [181] = { 64.1, 24.7, 46, 2700 }, + [182] = { 62.8, 24.5, 46, 2700 }, + [183] = { 65.8, 22.7, 46, 2700 }, + [184] = { 58.1, 83.3, 47, 2700 }, + [185] = { 57.9, 69.9, 47, 2700 }, + [186] = { 56.1, 68.2, 47, 2700 }, + [187] = { 57.6, 67, 47, 2700 }, + [188] = { 71.7, 66.2, 47, 2700 }, + [189] = { 60.1, 59.4, 47, 2700 }, + [190] = { 68.1, 55.1, 47, 2700 }, + [191] = { 66.8, 52.4, 47, 2700 }, + [192] = { 79.4, 50, 47, 2700 }, + [193] = { 65.7, 41.8, 47, 2700 }, + [194] = { 48.9, 99.8, 51, 2700 }, + [195] = { 21.6, 79.6, 51, 2700 }, + [196] = { 20.5, 78.1, 51, 2700 }, + [197] = { 31.4, 75.9, 51, 2700 }, + [198] = { 26.5, 66.2, 51, 2700 }, + [199] = { 38.5, 63.3, 51, 2700 }, + [200] = { 23.7, 53.2, 51, 2700 }, + [201] = { 23.3, 43.7, 51, 2700 }, + [202] = { 34.2, 42.2, 51, 2700 }, + [203] = { 41.7, 41.5, 51, 2700 }, + [204] = { 40.5, 39.1, 51, 2700 }, + [205] = { 24, 36.6, 51, 2700 }, + [206] = { 15.7, 32.4, 51, 2700 }, + [207] = { 22.5, 30.9, 51, 2700 }, + [208] = { 23, 30.3, 51, 2700 }, + [209] = { 22.5, 24.4, 51, 2700 }, + [210] = { 97.4, 34.7, 85, 2700 }, + [211] = { 83.5, 88.2, 139, 2700 }, + [212] = { 66.2, 84.7, 139, 2700 }, + [213] = { 46.7, 84.3, 139, 2700 }, + [214] = { 41.5, 84.1, 139, 2700 }, + [215] = { 45.9, 83.4, 139, 2700 }, + [216] = { 86.7, 80.5, 139, 2700 }, + [217] = { 75.6, 80.2, 139, 2700 }, + [218] = { 78.7, 77.9, 139, 2700 }, + [219] = { 55.7, 77.6, 139, 2700 }, + [220] = { 84.1, 74.4, 139, 2700 }, + [221] = { 47.4, 71.3, 139, 2700 }, + [222] = { 56.9, 69.2, 139, 2700 }, + [223] = { 56.1, 67.2, 139, 2700 }, + [224] = { 73.8, 65.8, 139, 2700 }, + [225] = { 57.2, 64.7, 139, 2700 }, + [226] = { 76.6, 64.3, 139, 2700 }, + [227] = { 30.5, 64.2, 139, 2700 }, + [228] = { 54.9, 64.1, 139, 2700 }, + [229] = { 72.4, 63.3, 139, 2700 }, + [230] = { 77.1, 61.3, 139, 2700 }, + [231] = { 20.7, 52.7, 139, 2700 }, + [232] = { 43.3, 51, 139, 2700 }, + [233] = { 19.3, 51, 139, 2700 }, + [234] = { 72.9, 49.7, 139, 2700 }, + [235] = { 57.8, 49.4, 139, 2700 }, + [236] = { 20.3, 49.3, 139, 2700 }, + [237] = { 56.1, 49.3, 139, 2700 }, + [238] = { 18.5, 48.9, 139, 2700 }, + [239] = { 71.6, 48.9, 139, 2700 }, + [240] = { 40.2, 47.2, 139, 2700 }, + [241] = { 84.5, 47.2, 139, 2700 }, + [242] = { 71.3, 45.5, 139, 2700 }, + [243] = { 80.8, 45.1, 139, 2700 }, + [244] = { 81.6, 45, 139, 2700 }, + [245] = { 87.8, 43.9, 139, 2700 }, + [246] = { 52.8, 43.8, 139, 2700 }, + [247] = { 32.5, 43, 139, 2700 }, + [248] = { 10.9, 42.9, 139, 2700 }, + [249] = { 81.3, 41.3, 139, 2700 }, + [250] = { 83.7, 36.2, 139, 2700 }, + [251] = { 61.2, 30.8, 139, 2700 }, + [252] = { 63.8, 30, 139, 2700 }, + [253] = { 28.4, 30, 139, 2700 }, + [254] = { 72.9, 28.5, 139, 2700 }, + [255] = { 59.7, 27.9, 139, 2700 }, + [256] = { 54.2, 27.7, 139, 2700 }, + [257] = { 68.4, 26.5, 139, 2700 }, + [258] = { 61.8, 25.4, 139, 2700 }, + [259] = { 65.1, 23.4, 139, 2700 }, + [260] = { 65.4, 22.6, 139, 2700 }, + [261] = { 68.7, 22.1, 139, 2700 }, + [262] = { 66.6, 21.8, 139, 2700 }, + [263] = { 69.3, 21, 139, 2700 }, + [264] = { 73.3, 18.1, 139, 2700 }, + [265] = { 73.5, 17.9, 139, 2700 }, + [266] = { 69.8, 12.6, 139, 2700 }, + [267] = { 54.7, 84, 148, 2700 }, + [268] = { 50.3, 81.7, 148, 2700 }, + [269] = { 54.5, 45.4, 148, 2700 }, + [270] = { 25.2, 72.3, 357, 2700 }, + [271] = { 45.4, 69.4, 357, 2700 }, + [272] = { 62.4, 69.3, 357, 2700 }, + [273] = { 65.4, 26.9, 357, 2700 }, + [274] = { 66.2, 26.3, 357, 2700 }, + [275] = { 41.1, 81.5, 361, 2700 }, + [276] = { 41, 75.3, 361, 2700 }, + [277] = { 39.7, 64.4, 361, 2700 }, + [278] = { 34.7, 61.8, 361, 2700 }, + [279] = { 37.5, 54.2, 361, 2700 }, + [280] = { 37.7, 52.7, 361, 2700 }, + [281] = { 51.4, 52.1, 361, 2700 }, + [282] = { 37.8, 52, 361, 2700 }, + [283] = { 38.1, 50.4, 361, 2700 }, + [284] = { 49.6, 49.6, 361, 2700 }, + [285] = { 37.7, 47, 361, 2700 }, + [286] = { 39, 46.4, 361, 2700 }, + [287] = { 53.9, 45.3, 361, 2700 }, + [288] = { 56.3, 44.3, 361, 2700 }, + [289] = { 54.5, 43.2, 361, 2700 }, + [290] = { 56.6, 42, 361, 2700 }, + [291] = { 55.8, 41.9, 361, 2700 }, + [292] = { 55.1, 40.7, 361, 2700 }, + [293] = { 42.8, 40.2, 361, 2700 }, + [294] = { 37.9, 33.4, 361, 2700 }, + [295] = { 50, 31.9, 361, 2700 }, + [296] = { 49.4, 27.4, 361, 2700 }, + [297] = { 57.4, 25.7, 361, 2700 }, + [298] = { 62.9, 24, 361, 2700 }, + [299] = { 60.4, 22.6, 361, 2700 }, + [300] = { 57.8, 22.1, 361, 2700 }, + [301] = { 61, 21.8, 361, 2700 }, + [302] = { 39.5, 20.4, 361, 2700 }, + [303] = { 57.3, 19.5, 361, 2700 }, + [304] = { 56.4, 17.6, 361, 2700 }, + [305] = { 47.8, 14.2, 361, 2700 }, + [306] = { 64.3, 12.8, 361, 2700 }, + [307] = { 64.4, 10.5, 361, 2700 }, + [308] = { 64.4, 6.5, 361, 2700 }, + [309] = { 26.4, 89.6, 408, 2700 }, + [310] = { 27.1, 88.8, 408, 2700 }, + [311] = { 69.2, 73.5, 408, 2700 }, + [312] = { 66.8, 71, 408, 2700 }, + [313] = { 69.6, 69.6, 408, 2700 }, + [314] = { 42.4, 62.5, 408, 2700 }, + [315] = { 47.7, 51.2, 408, 2700 }, + [316] = { 49.1, 50.3, 408, 2700 }, + [317] = { 48.9, 44.7, 408, 2700 }, + [318] = { 63.9, 74.4, 409, 2700 }, + [319] = { 61.6, 73.2, 409, 2700 }, + [320] = { 63.1, 73, 409, 2700 }, + [321] = { 65.3, 72.2, 409, 2700 }, + [322] = { 62.2, 71, 409, 2700 }, + [323] = { 72.5, 60.6, 409, 2700 }, + [324] = { 45.8, 58.5, 409, 2700 }, + [325] = { 34.6, 26.2, 409, 2700 }, + [326] = { 29.2, 84, 440, 2700 }, + [327] = { 24.2, 79.4, 440, 2700 }, + [328] = { 22.6, 79.2, 440, 2700 }, + [329] = { 26.4, 79.2, 440, 2700 }, + [330] = { 23.9, 75.8, 440, 2700 }, + [331] = { 55.4, 73, 440, 2700 }, + [332] = { 27.5, 72.8, 440, 2700 }, + [333] = { 28.4, 71.9, 440, 2700 }, + [334] = { 28.1, 70.5, 440, 2700 }, + [335] = { 27.4, 68.7, 440, 2700 }, + [336] = { 29.7, 67.9, 440, 2700 }, + [337] = { 29.4, 64.8, 440, 2700 }, + [338] = { 31.2, 64.6, 440, 2700 }, + [339] = { 29.4, 64.3, 440, 2700 }, + [340] = { 54.4, 53.6, 440, 2700 }, + [341] = { 64, 53.3, 440, 2700 }, + [342] = { 30.1, 53, 440, 2700 }, + [343] = { 37, 52.9, 440, 2700 }, + [344] = { 32.9, 52.9, 440, 2700 }, + [345] = { 64, 52.8, 440, 2700 }, + [346] = { 52.6, 51.7, 440, 2700 }, + [347] = { 37.7, 51.6, 440, 2700 }, + [348] = { 61.3, 51, 440, 2700 }, + [349] = { 72.2, 50.9, 440, 2700 }, + [350] = { 35.9, 50.5, 440, 2700 }, + [351] = { 73.4, 50, 440, 2700 }, + [352] = { 62.7, 48.8, 440, 2700 }, + [353] = { 61.1, 48.3, 440, 2700 }, + [354] = { 64.4, 47.1, 440, 2700 }, + [355] = { 61.6, 47.1, 440, 2700 }, + [356] = { 62.9, 46.2, 440, 2700 }, + [357] = { 34.9, 46.1, 440, 2700 }, + [358] = { 53.1, 45.7, 440, 2700 }, + [359] = { 30.8, 45.6, 440, 2700 }, + [360] = { 31.6, 44.8, 440, 2700 }, + [361] = { 64.1, 44.8, 440, 2700 }, + [362] = { 31, 44.7, 440, 2700 }, + [363] = { 73.3, 44.5, 440, 2700 }, + [364] = { 32.2, 44.1, 440, 2700 }, + [365] = { 31, 44, 440, 2700 }, + [366] = { 51.2, 43.8, 440, 2700 }, + [367] = { 72.3, 43.8, 440, 2700 }, + [368] = { 32, 43.7, 440, 2700 }, + [369] = { 30.5, 43.6, 440, 2700 }, + [370] = { 71.7, 43.1, 440, 2700 }, + [371] = { 71.2, 42.3, 440, 2700 }, + [372] = { 70.1, 42.2, 440, 2700 }, + [373] = { 68.1, 41.8, 440, 2700 }, + [374] = { 67.4, 40.5, 440, 2700 }, + [375] = { 66.5, 38.8, 440, 2700 }, + [376] = { 56.9, 36.5, 440, 2700 }, + [377] = { 53.3, 34.5, 440, 2700 }, + [378] = { 53.1, 33.7, 440, 2700 }, + [379] = { 66.5, 33.3, 440, 2700 }, + [380] = { 36.5, 33, 440, 2700 }, + [381] = { 65.9, 31.2, 440, 2700 }, + [382] = { 64, 30.3, 440, 2700 }, + [383] = { 57.8, 27.3, 440, 2700 }, + [384] = { 41.4, 26.7, 440, 2700 }, + [385] = { 44.1, 25.9, 440, 2700 }, + [386] = { 57, 25.8, 440, 2700 }, + [387] = { 32, 24.9, 440, 2700 }, + [388] = { 56.4, 23.9, 440, 2700 }, + [389] = { 59.2, 23.3, 440, 2700 }, + [390] = { 62.3, 23, 440, 2700 }, + [391] = { 31.5, 22.9, 440, 2700 }, + [392] = { 61.5, 22.7, 440, 2700 }, + [393] = { 56, 92.7, 490, 2700 }, + [394] = { 42.5, 91.5, 490, 2700 }, + [395] = { 61.7, 84.9, 490, 2700 }, + [396] = { 77.8, 81.4, 490, 2700 }, + [397] = { 48.8, 80.3, 490, 2700 }, + [398] = { 64.8, 80.3, 490, 2700 }, + [399] = { 78.2, 79.7, 490, 2700 }, + [400] = { 78.1, 78.3, 490, 2700 }, + [401] = { 38.4, 78, 490, 2700 }, + [402] = { 77.2, 77.6, 490, 2700 }, + [403] = { 50.4, 76.1, 490, 2700 }, + [404] = { 50.5, 75.6, 490, 2700 }, + [405] = { 30.7, 74.7, 490, 2700 }, + [406] = { 10.2, 73.1, 490, 2700 }, + [407] = { 31, 71.6, 490, 2700 }, + [408] = { 73.6, 70.4, 490, 2700 }, + [409] = { 28.5, 70.3, 490, 2700 }, + [410] = { 74.2, 69.9, 490, 2700 }, + [411] = { 34.1, 69.5, 490, 2700 }, + [412] = { 63.1, 66.5, 490, 2700 }, + [413] = { 59.4, 65.5, 490, 2700 }, + [414] = { 37, 64.9, 490, 2700 }, + [415] = { 45.5, 64.8, 490, 2700 }, + [416] = { 40.9, 64.8, 490, 2700 }, + [417] = { 75.6, 63.7, 490, 2700 }, + [418] = { 22.2, 60.3, 490, 2700 }, + [419] = { 21.9, 60.1, 490, 2700 }, + [420] = { 23.8, 57.1, 490, 2700 }, + [421] = { 48, 56, 490, 2700 }, + [422] = { 46.7, 53.8, 490, 2700 }, + [423] = { 50.2, 52.6, 490, 2700 }, + [424] = { 54.1, 51.9, 490, 2700 }, + [425] = { 46.1, 50.9, 490, 2700 }, + [426] = { 54.3, 50.8, 490, 2700 }, + [427] = { 52.1, 50.6, 490, 2700 }, + [428] = { 76.6, 50.5, 490, 2700 }, + [429] = { 54.6, 50.4, 490, 2700 }, + [430] = { 76.8, 49.5, 490, 2700 }, + [431] = { 47.3, 47.4, 490, 2700 }, + [432] = { 54, 46.6, 490, 2700 }, + [433] = { 46.6, 44.9, 490, 2700 }, + [434] = { 79.9, 42.7, 490, 2700 }, + [435] = { 20.8, 42.4, 490, 2700 }, + [436] = { 78, 41, 490, 2700 }, + [437] = { 76.3, 40.3, 490, 2700 }, + [438] = { 25.5, 39.8, 490, 2700 }, + [439] = { 75.6, 39.7, 490, 2700 }, + [440] = { 79, 39, 490, 2700 }, + [441] = { 9, 37.5, 490, 2700 }, + [442] = { 55.5, 35.2, 490, 2700 }, + [443] = { 45.4, 35.2, 490, 2700 }, + [444] = { 63, 33.4, 490, 2700 }, + [445] = { 75.8, 32.6, 490, 2700 }, + [446] = { 12.3, 27.3, 490, 2700 }, + [447] = { 69, 17.7, 490, 2700 }, + [448] = { 67.7, 16.8, 490, 2700 }, + [449] = { 67.6, 16.7, 490, 2700 }, + [450] = { 63.9, 16.2, 490, 2700 }, + [451] = { 65.7, 15.5, 490, 2700 }, + [452] = { 67.4, 13.6, 490, 2700 }, + [453] = { 48.6, 12.7, 490, 2700 }, + [454] = { 56.6, 11.7, 490, 2700 }, + [455] = { 55.8, 87.8, 616, 2700 }, + [456] = { 94.6, 84.6, 616, 2700 }, + [457] = { 61.7, 84.2, 616, 2700 }, + [458] = { 58.7, 79.9, 616, 2700 }, + [459] = { 95.2, 79.3, 616, 2700 }, + [460] = { 46.4, 78.4, 616, 2700 }, + [461] = { 91.8, 76.8, 616, 2700 }, + [462] = { 95, 74.2, 616, 2700 }, + [463] = { 44.6, 73.9, 616, 2700 }, + [464] = { 40.7, 73.5, 616, 2700 }, + [465] = { 48.1, 72.3, 616, 2700 }, + [466] = { 21.9, 71.6, 616, 2700 }, + [467] = { 70.1, 71.3, 616, 2700 }, + [468] = { 74.9, 70.2, 616, 2700 }, + [469] = { 28.3, 70, 616, 2700 }, + [470] = { 64.1, 69.8, 616, 2700 }, + [471] = { 57.4, 68.7, 616, 2700 }, + [472] = { 78.4, 68.1, 616, 2700 }, + [473] = { 50.7, 66.6, 616, 2700 }, + [474] = { 83.9, 66.1, 616, 2700 }, + [475] = { 88.4, 65.4, 616, 2700 }, + [476] = { 70, 64.8, 616, 2700 }, + [477] = { 83.4, 63.6, 616, 2700 }, + [478] = { 64.6, 63.3, 616, 2700 }, + [479] = { 38.8, 61.7, 616, 2700 }, + [480] = { 61.3, 59.8, 616, 2700 }, + [481] = { 64.8, 59.1, 616, 2700 }, + [482] = { 55.1, 58.5, 616, 2700 }, + [483] = { 12.5, 58, 616, 2700 }, + [484] = { 49.4, 57.2, 616, 2700 }, + [485] = { 64.8, 55.4, 616, 2700 }, + [486] = { 23.3, 55.3, 616, 2700 }, + [487] = { 61.7, 54.9, 616, 2700 }, + [488] = { 52.2, 52.7, 616, 2700 }, + [489] = { 34.7, 50.1, 616, 2700 }, + [490] = { 64.4, 50, 616, 2700 }, + [491] = { 44.8, 50, 616, 2700 }, + [492] = { 70.7, 48.7, 616, 2700 }, + [493] = { 29.9, 48.6, 616, 2700 }, + [494] = { 7.2, 46.1, 616, 2700 }, + [495] = { 17.4, 45.6, 616, 2700 }, + [496] = { 31.1, 45.3, 616, 2700 }, + [497] = { 67.9, 43.7, 616, 2700 }, + [498] = { 37.9, 43.1, 616, 2700 }, + [499] = { 21.1, 43.1, 616, 2700 }, + [500] = { 26.2, 42.4, 616, 2700 }, + [501] = { 4.1, 41.7, 616, 2700 }, + [502] = { 47.2, 41.1, 616, 2700 }, + [503] = { 16.4, 36.2, 616, 2700 }, + [504] = { 73.3, 35.6, 616, 2700 }, + [505] = { 14, 34.3, 616, 2700 }, + [506] = { 34.9, 34.1, 616, 2700 }, + [507] = { 11.7, 34.1, 616, 2700 }, + [508] = { 16.1, 32.3, 616, 2700 }, + [509] = { 65.5, 31.4, 616, 2700 }, + [510] = { 43, 30.8, 616, 2700 }, + [511] = { 12.9, 30.3, 616, 2700 }, + [512] = { 46.7, 29.8, 616, 2700 }, + [513] = { 16.5, 28.1, 616, 2700 }, + [514] = { 15.1, 28, 616, 2700 }, + [515] = { 14, 25.7, 616, 2700 }, + [516] = { 52.3, 23.1, 616, 2700 }, + [517] = { 70.1, 22.8, 616, 2700 }, + [518] = { 62, 18.7, 616, 2700 }, + [519] = { 92, 10.7, 616, 2700 }, + [520] = { 4.7, 10, 616, 2700 }, + [521] = { 94.5, 6.1, 616, 2700 }, + [522] = { 3.6, 2, 616, 2700 }, + [523] = { 94.5, 1.7, 616, 2700 }, + [524] = { 99.5, 1.6, 616, 2700 }, + [525] = { 56.8, 89.9, 618, 2700 }, + [526] = { 57.1, 89.5, 618, 2700 }, + [527] = { 53.5, 89.2, 618, 2700 }, + [528] = { 58.4, 88.8, 618, 2700 }, + [529] = { 59, 88.6, 618, 2700 }, + [530] = { 59.6, 87.9, 618, 2700 }, + [531] = { 53.8, 86.7, 618, 2700 }, + [532] = { 59.4, 86.3, 618, 2700 }, + [533] = { 52.2, 85.6, 618, 2700 }, + [534] = { 53.6, 84.5, 618, 2700 }, + [535] = { 59, 84.4, 618, 2700 }, + [536] = { 61.1, 84.3, 618, 2700 }, + [537] = { 62.4, 82.7, 618, 2700 }, + [538] = { 60.6, 82, 618, 2700 }, + [539] = { 46.1, 81.7, 618, 2700 }, + [540] = { 71.2, 81.2, 618, 2700 }, + [541] = { 48.6, 80.8, 618, 2700 }, + [542] = { 50.7, 80.5, 618, 2700 }, + [543] = { 61.2, 80.4, 618, 2700 }, + [544] = { 48.4, 79.7, 618, 2700 }, + [545] = { 65.5, 79.5, 618, 2700 }, + [546] = { 60.3, 78.8, 618, 2700 }, + [547] = { 61.7, 78.6, 618, 2700 }, + [548] = { 59.5, 77.6, 618, 2700 }, + [549] = { 56.6, 77.6, 618, 2700 }, + [550] = { 57.4, 72.5, 618, 2700 }, + [551] = { 62.8, 71.1, 618, 2700 }, + [552] = { 64.6, 70.4, 618, 2700 }, + [553] = { 66.2, 69.2, 618, 2700 }, + [554] = { 60.5, 68.3, 618, 2700 }, + [555] = { 63.2, 67.7, 618, 2700 }, + [556] = { 61.1, 64, 618, 2700 }, + [557] = { 59.6, 63.4, 618, 2700 }, + [558] = { 57.8, 61.1, 618, 2700 }, + [559] = { 64.6, 60.8, 618, 2700 }, + [560] = { 66.7, 60.1, 618, 2700 }, + [561] = { 65.3, 58.6, 618, 2700 }, + [562] = { 52.3, 55.7, 618, 2700 }, + [563] = { 57.1, 55.3, 618, 2700 }, + [564] = { 53.4, 53.7, 618, 2700 }, + [565] = { 53.4, 51.6, 618, 2700 }, + [566] = { 55.7, 51.6, 618, 2700 }, + [567] = { 54.7, 49.7, 618, 2700 }, + [568] = { 55.7, 48.9, 618, 2700 }, + [569] = { 51.3, 45.1, 618, 2700 }, + [570] = { 55.9, 44.7, 618, 2700 }, + [571] = { 56.9, 44.6, 618, 2700 }, + [572] = { 52.8, 44.4, 618, 2700 }, + [573] = { 55.7, 44.3, 618, 2700 }, + [574] = { 53.8, 43.8, 618, 2700 }, + [575] = { 50.3, 43.7, 618, 2700 }, + [576] = { 55.5, 43.6, 618, 2700 }, + [577] = { 50.1, 43.4, 618, 2700 }, + [578] = { 56.5, 42.7, 618, 2700 }, + [579] = { 69.6, 41.8, 618, 2700 }, + [580] = { 53, 41.1, 618, 2700 }, + [581] = { 49.9, 41, 618, 2700 }, + [582] = { 24.5, 39.9, 618, 2700 }, + [583] = { 70.2, 39.8, 618, 2700 }, + [584] = { 70.8, 39.7, 618, 2700 }, + [585] = { 52.1, 39.5, 618, 2700 }, + [586] = { 55.1, 39.2, 618, 2700 }, + [587] = { 67.7, 38.6, 618, 2700 }, + [588] = { 69.4, 38.5, 618, 2700 }, + [589] = { 70, 38.2, 618, 2700 }, + [590] = { 24.6, 38.1, 618, 2700 }, + [591] = { 66.5, 37.5, 618, 2700 }, + [592] = { 68.6, 37.4, 618, 2700 }, + [593] = { 68, 35.6, 618, 2700 }, + [594] = { 24.6, 34.9, 618, 2700 }, + [595] = { 51.5, 18.6, 618, 2700 }, + [596] = { 50.3, 16.9, 618, 2700 }, + [597] = { 60.6, 15.9, 618, 2700 }, + [598] = { 54.8, 10.5, 618, 2700 }, + [599] = { 48.3, 9.2, 618, 2700 }, + [600] = { 51.1, 7, 618, 2700 }, + [601] = { 47.8, 6.6, 618, 2700 }, + [602] = { 48.7, 6.4, 618, 2700 }, + [603] = { 63.8, 94, 1377, 2700 }, + [604] = { 57, 90.8, 1377, 2700 }, + [605] = { 40.4, 90.7, 1377, 2700 }, + [606] = { 48.9, 86.9, 1377, 2700 }, + [607] = { 32.3, 83.8, 1377, 2700 }, + [608] = { 66.9, 81.5, 1377, 2700 }, + [609] = { 40.4, 79.9, 1377, 2700 }, + [610] = { 62.8, 78.8, 1377, 2700 }, + [611] = { 43.7, 78.5, 1377, 2700 }, + [612] = { 44.2, 78, 1377, 2700 }, + [613] = { 68.3, 77.9, 1377, 2700 }, + [614] = { 19.7, 76.1, 1377, 2700 }, + [615] = { 61.2, 76, 1377, 2700 }, + [616] = { 36.9, 71, 1377, 2700 }, + [617] = { 41.4, 67.1, 1377, 2700 }, + [618] = { 17.9, 66.5, 1377, 2700 }, + [619] = { 65.4, 65, 1377, 2700 }, + [620] = { 81.1, 64.3, 1377, 2700 }, + [621] = { 80.8, 64.2, 1377, 2700 }, + [622] = { 48.2, 61.9, 1377, 2700 }, + [623] = { 37.7, 61.1, 1377, 2700 }, + [624] = { 54.4, 60.2, 1377, 2700 }, + [625] = { 58.6, 51.5, 1377, 2700 }, + [626] = { 79.7, 45.4, 1377, 2700 }, + [627] = { 33.4, 41.7, 1377, 2700 }, + [628] = { 67.1, 40.1, 1377, 2700 }, + [629] = { 26.5, 33.3, 1377, 2700 }, + [630] = { 49.1, 29.6, 1377, 2700 }, + [631] = { 70.6, 29.4, 1377, 2700 }, + [632] = { 32.5, 28.1, 1377, 2700 }, + [633] = { 51.1, 23.8, 1377, 2700 }, + [634] = { 32.2, 23.1, 1377, 2700 }, + [635] = { 28.8, 22.6, 1377, 2700 }, + [636] = { 50.7, 21.9, 1377, 2700 }, + [637] = { 65.2, 21.6, 1377, 2700 }, + [638] = { 60.4, 21.3, 1377, 2700 }, + [639] = { 58.3, 21.3, 1377, 2700 }, + [640] = { 31.3, 20.1, 1377, 2700 }, + [641] = { 36.6, 18.3, 1377, 2700 }, + [642] = { 49.7, 17.7, 1377, 2700 }, + [643] = { 40.9, 17.2, 1377, 2700 }, + [644] = { 58.3, 15.3, 1377, 2700 }, + [645] = { 46.2, 15.2, 1377, 2700 }, + [646] = { 42, 11.8, 1377, 2700 }, + [647] = { 20.7, 35.7, 1941, 2700 }, + [648] = { 69.6, 34.2, 1941, 2700 }, + [649] = { 69.7, 31.9, 1941, 2700 }, + [650] = { 11.3, 25.7, 1941, 2700 }, + [651] = { 55.6, 22.3, 1941, 2700 }, + [652] = { 63, 10.8, 1941, 2700 }, + [653] = { 54.9, 8.1, 1941, 2700 }, + [654] = { 71.9, 2.2, 1941, 2700 }, + [655] = { 57.6, 2.1, 1941, 2700 }, + [656] = { 84.4, 24.3, 2557, 2700 }, + [657] = { 88.5, 21.1, 2557, 2700 }, + [658] = { 57.4, 79.5, 2597, 2700 }, + [659] = { 43.3, 73, 2597, 2700 }, + [660] = { 45.6, 71.1, 2597, 2700 }, + [661] = { 42.6, 28.7, 2597, 2700 }, + [662] = { 47.2, 28, 2597, 2700 }, + [663] = { 42.5, 24.6, 2597, 2700 }, + [664] = { 49.8, 9.6, 2597, 2700 }, + [665] = { 51.8, 7.3, 2597, 2700 }, + [666] = { 50.3, 7.2, 2597, 2700 }, + [667] = { 53.1, 6.2, 2597, 2700 }, + [668] = { 50, 4.3, 2597, 2700 }, + [669] = { 52.5, 4, 2597, 2700 }, + [670] = { 87.4, 4.6, 3478, 2700 }, + [671] = { 81.7, 2.1, 3478, 2700 }, + [672] = { 67.7, 2, 3478, 2700 }, + [673] = { 43.2, 74.2, 4012, 2700 }, + [674] = { 22.1, 69.9, 4012, 2700 }, + [675] = { 47.2, 64.7, 4012, 2700 }, + [676] = { 33.6, 64.4, 4012, 2700 }, + [677] = { 37.5, 61.6, 4012, 2700 }, + [678] = { 9.3, 61.2, 4012, 2700 }, + [679] = { 44, 57.3, 4012, 2700 }, + [680] = { 10.7, 50.9, 4012, 2700 }, + [681] = { 9.7, 48.4, 4012, 2700 }, + [682] = { 31.4, 46.8, 4012, 2700 }, + [683] = { 11.1, 45.4, 4012, 2700 }, + [684] = { 34.9, 44.9, 4012, 2700 }, + [685] = { 8.3, 44.6, 4012, 2700 }, + [686] = { 29.7, 43.7, 4012, 2700 }, + [687] = { 35.5, 41.3, 4012, 2700 }, + [688] = { 30.3, 27, 4012, 2700 }, + [689] = { 11.7, 26.6, 4012, 2700 }, + [690] = { 9.7, 26.5, 4012, 2700 }, + [691] = { 28.7, 26, 4012, 2700 }, + [692] = { 44.5, 24, 4012, 2700 }, + [693] = { 28.4, 21.8, 4012, 2700 }, + [694] = { 40, 21.4, 4012, 2700 }, + [695] = { 40.9, 21.3, 4012, 2700 }, + [696] = { 48.6, 19.9, 4012, 2700 }, + [697] = { 5.7, 19.8, 4012, 2700 }, + [698] = { 40.6, 16.8, 4012, 2700 }, + [699] = { 43.5, 10.6, 4012, 2700 }, + [700] = { 16, 3.9, 4012, 2700 }, + [701] = { 19.1, 2.9, 4012, 2700 }, + [702] = { 30.3, 1.1, 4012, 2700 }, + [703] = { 14.1, 0.4, 4012, 2700 }, + [704] = { 7.4, 0.1, 4012, 2700 }, + [705] = { 63.2, 80, 5103, 604800 }, + [706] = { 45.6, 78.4, 5103, 604800 }, + [707] = { 25.4, 64.7, 5103, 604800 }, + [708] = { 60.7, 64.4, 5103, 604800 }, + [709] = { 22.8, 36.3, 5103, 604800 }, + [710] = { 80.2, 31.1, 5103, 604800 }, + [711] = { 62, 83, 5121, 2700 }, + [712] = { 58.5, 69.9, 5121, 2700 }, + [713] = { 61, 69.7, 5121, 2700 }, + [714] = { 54.1, 69.2, 5121, 2700 }, + [715] = { 59.4, 66.6, 5121, 2700 }, + [716] = { 43.3, 65.4, 5121, 2700 }, + [717] = { 49.2, 56.6, 5121, 2700 }, + [718] = { 52.5, 54.8, 5121, 2700 }, + [719] = { 54.6, 54.1, 5121, 2700 }, + [720] = { 52.2, 53.9, 5121, 2700 }, + [721] = { 56.4, 53, 5121, 2700 }, + [722] = { 55.3, 51.8, 5121, 2700 }, + [723] = { 61.8, 51.8, 5121, 2700 }, + [724] = { 40.6, 51, 5121, 2700 }, + [725] = { 45.4, 49.3, 5121, 2700 }, + [726] = { 57.6, 49.1, 5121, 2700 }, + [727] = { 53, 48.9, 5121, 2700 }, + [728] = { 52.1, 48.2, 5121, 2700 }, + [729] = { 56.9, 47.7, 5121, 2700 }, + [730] = { 0.6, 47.2, 5121, 2700 }, + [731] = { 3.2, 45.3, 5121, 2700 }, + [732] = { 50.7, 41.1, 5121, 2700 }, + [733] = { 57.1, 38.5, 5121, 2700 }, + [734] = { 63.3, 35.4, 5121, 2700 }, + [735] = { 3.1, 33.8, 5121, 2700 }, + [736] = { 0.9, 32.2, 5121, 2700 }, + [737] = { 60.8, 23.6, 5121, 2700 }, + [738] = { 48.8, 18.8, 5121, 2700 }, + [739] = { 10.9, 96.8, 5225, 2700 }, + [740] = { 21.1, 95.3, 5225, 2700 }, + [741] = { 18.2, 93.5, 5225, 2700 }, + [742] = { 73.9, 93.4, 5225, 2700 }, + [743] = { 12.8, 93.3, 5225, 2700 }, + [744] = { 98.7, 98.9, 5581, 2700 }, + [745] = { 97.6, 95.9, 5581, 2700 }, + [746] = { 99, 93.3, 5581, 2700 }, + [747] = { 97.8, 92.8, 5581, 2700 }, + [748] = { 98.6, 90.7, 5581, 2700 }, + [749] = { 98.2, 89.2, 5581, 2700 }, + [750] = { 93.2, 85.2, 5581, 2700 }, + [751] = { 92.6, 78.5, 5581, 2700 }, + [752] = { 96.7, 73.2, 5581, 2700 }, + [753] = { 96.7, 70.9, 5581, 2700 }, + [754] = { 91.4, 59.8, 5581, 2700 }, + [755] = { 94.5, 44.4, 5581, 2700 }, + [756] = { 93.7, 43.3, 5581, 2700 }, + [757] = { 97.9, 35.1, 5581, 2700 }, + [758] = { 96, 26.2, 5581, 2700 }, + [759] = { 95.7, 19.6, 5581, 2700 }, + [760] = { 96.2, 14.7, 5581, 2700 }, + [761] = { 90.4, 11.8, 5581, 2700 }, + [762] = { 95.1, 10.8, 5581, 2700 }, + [763] = { 95.5, 10.4, 5581, 2700 }, + [764] = { 95.1, 6.3, 5581, 2700 }, + }, + }, + [331] = { + ["coords"] = { + [1] = { 36.5, 42.1, 11, 5 }, + }, + }, + [333] = { + ["coords"] = { + [1] = { 35.2, 44.4, 11, 5 }, + }, + }, + [334] = { + ["coords"] = { + [1] = { 34.4, 44.5, 11, 5 }, + }, + }, + [372] = { + ["coords"] = { + [1] = { 45.4, 51.8, 1, 900 }, + [2] = { 9, 64.3, 28, 25 }, + [3] = { 22, 58.7, 45, 25 }, + }, + }, + [375] = { + ["coords"] = { + [1] = { 35.5, 52.4, 85, 60 }, + [2] = { 34.4, 52.3, 85, 60 }, + [3] = { 36.1, 52, 85, 25 }, + [4] = { 35, 51.7, 85, 60 }, + [5] = { 34.6, 51.6, 85, 60 }, + [6] = { 36.2, 51.3, 85, 60 }, + [7] = { 34.4, 51.2, 85, 25 }, + [8] = { 35.3, 50.9, 85, 60 }, + [9] = { 36.2, 50.4, 85, 25 }, + [10] = { 36.6, 50.1, 85, 25 }, + [11] = { 34.4, 49.9, 85, 25 }, + [12] = { 35, 49.8, 85, 25 }, + [13] = { 34.2, 49.7, 85, 25 }, + [14] = { 36, 49.4, 85, 60 }, + [15] = { 37.3, 49.2, 85, 60 }, + [16] = { 34.5, 49, 85, 25 }, + [17] = { 31.9, 46.7, 85, 60 }, + }, + }, + [376] = { + ["coords"] = { + [1] = { 49.9, 39.3, 11, 7200 }, + [2] = { 7.1, 9.1, 5602, 7200 }, + }, + }, + [377] = { + ["coords"] = { + [1] = { 49.9, 39.3, 11, 7200 }, + [2] = { 7.1, 9.2, 5602, 7200 }, + }, + }, + [378] = { + ["coords"] = { + [1] = { 49.9, 39.3, 11, 7200 }, + [2] = { 7.1, 9.1, 5602, 7200 }, + }, + }, + [379] = { + ["coords"] = { + [1] = { 56.2, 52.6, 11, 7200 }, + [2] = { 11.9, 19.3, 5602, 7200 }, + }, + }, + [380] = { + ["coords"] = { + [1] = { 56.2, 52.6, 11, 7200 }, + [2] = { 11.9, 19.4, 5602, 7200 }, + }, + }, + [381] = { + ["coords"] = { + [1] = { 56.2, 52.7, 11, 7200 }, + [2] = { 11.9, 19.4, 5602, 7200 }, + }, + }, + [382] = { + ["coords"] = { + [1] = { 56.2, 52.6, 11, 7200 }, + [2] = { 11.9, 19.4, 5602, 7200 }, + }, + }, + [759] = { + ["coords"] = { + [1] = { 29, 61.9, 33, 120 }, + }, + }, + [1165] = { + ["coords"] = { + [1] = { 68, 42.1, 85, 3 }, + }, + }, + [1166] = { + ["coords"] = { + [1] = { 36.2, 54.5, 40, 5 }, + }, + }, + [1560] = { + ["coords"] = { + [1] = { 44.3, 65.8, 12, 5 }, + }, + }, + [1561] = { + ["coords"] = { + [1] = { 42.5, 72, 1519, 180 }, + }, + ["fac"] = "A", + }, + [1562] = { + ["coords"] = { + [1] = { 85.7, 69.5, 12, 30 }, + }, + }, + [1585] = { + ["coords"] = { + [1] = { 50.6, 14.3, 38, 2 }, + [2] = { 24.4, 51.5, 5602, 2 }, + }, + ["fac"] = "A", + }, + [1587] = { + ["coords"] = { + [1] = { 68.4, 54.4, 1, 900 }, + [2] = { 52.1, 29.9, 17, 25 }, + [3] = { 22, 58.8, 45, 25 }, + [4] = { 67.9, 18.2, 148, 300 }, + [5] = { 68.1, 18.1, 148, 300 }, + [6] = { 68.2, 18, 148, 300 }, + [7] = { 68.3, 18, 148, 300 }, + [8] = { 68.5, 17.9, 148, 300 }, + [9] = { 36.9, 74, 1519, 300 }, + [10] = { 36.6, 73.3, 1519, 300 }, + [11] = { 37.1, 73.1, 1519, 300 }, + [12] = { 76.8, 53.9, 1519, 25 }, + [13] = { 51.2, 70.7, 1637, 25 }, + }, + }, + [1593] = { + ["coords"] = { + [1] = { 58.4, 34.9, 130, 2 }, + }, + ["fac"] = "H", + }, + [1594] = { + ["coords"] = { + [1] = { 43, 73.2, 130, 2 }, + [2] = { 43.9, 1, 5179, 2 }, + }, + }, + [1599] = { + ["coords"] = { + [1] = { 67.9, 24.9, 130, 2 }, + }, + ["fac"] = "H", + }, + [1604] = { + ["coords"] = { + [1] = { 47.6, 47.4, 11, 0 }, + [2] = { 47.5, 47, 11, 0 }, + [3] = { 5.3, 15.3, 5602, 0 }, + [4] = { 5.2, 15.1, 5602, 0 }, + }, + }, + [1605] = { + ["coords"] = { + [1] = { 47.6, 47.4, 11, 0 }, + [2] = { 47.6, 47.3, 11, 0 }, + [3] = { 47.5, 47.1, 11, 0 }, + [4] = { 47.5, 47, 11, 0 }, + [5] = { 47.4, 47, 11, 0 }, + [6] = { 5.3, 15.3, 5602, 0 }, + [7] = { 5.2, 15.1, 5602, 0 }, + [8] = { 5.2, 15, 5602, 0 }, + }, + }, + [1607] = { + ["coords"] = { + [1] = { 47.6, 47.4, 11, 0 }, + [2] = { 47.6, 47.3, 11, 0 }, + [3] = { 47.5, 47, 11, 0 }, + [4] = { 47.4, 47, 11, 0 }, + [5] = { 47.5, 46.9, 11, 0 }, + [6] = { 5.3, 15.3, 5602, 0 }, + [7] = { 5.2, 15.1, 5602, 0 }, + [8] = { 5.2, 15, 5602, 0 }, + }, + }, + [1609] = { + ["coords"] = { + [1] = { 47.5, 47, 11, 2 }, + [2] = { 5.2, 15.1, 5602, 2 }, + }, + ["fac"] = "A", + }, + [1610] = { + ["coords"] = { + [1] = { 47.7, 65.2, 11, 900 }, + [2] = { 46.1, 64.9, 11, 900 }, + [3] = { 45.7, 64.3, 11, 900 }, + [4] = { 50, 62.9, 11, 900 }, + [5] = { 48.6, 62.8, 11, 900 }, + [6] = { 46.8, 62.3, 11, 900 }, + [7] = { 50.5, 62.2, 11, 900 }, + [8] = { 51.2, 62.2, 11, 900 }, + [9] = { 48.4, 62.2, 11, 900 }, + [10] = { 47.2, 61.9, 11, 900 }, + [11] = { 50.6, 61.3, 11, 900 }, + [12] = { 51.7, 61.3, 11, 900 }, + [13] = { 45.7, 60.4, 11, 900 }, + [14] = { 50.3, 60.1, 11, 900 }, + [15] = { 49.6, 59.5, 11, 900 }, + [16] = { 50.7, 59.2, 11, 900 }, + [17] = { 50.2, 58.8, 11, 900 }, + [18] = { 49.6, 58.3, 11, 900 }, + [19] = { 5.4, 29.1, 5602, 900 }, + [20] = { 4.2, 28.8, 5602, 900 }, + [21] = { 3.8, 28.3, 5602, 900 }, + [22] = { 7.2, 27.3, 5602, 900 }, + [23] = { 6.1, 27.2, 5602, 900 }, + [24] = { 4.7, 26.8, 5602, 900 }, + [25] = { 7.5, 26.8, 5602, 900 }, + [26] = { 8.1, 26.7, 5602, 900 }, + [27] = { 5.9, 26.7, 5602, 900 }, + [28] = { 5, 26.5, 5602, 900 }, + [29] = { 7.6, 26.1, 5602, 900 }, + [30] = { 8.5, 26, 5602, 900 }, + [31] = { 3.9, 25.4, 5602, 900 }, + [32] = { 7.4, 25.2, 5602, 900 }, + [33] = { 6.8, 24.7, 5602, 900 }, + [34] = { 7.7, 24.4, 5602, 900 }, + [35] = { 7.3, 24.1, 5602, 900 }, + [36] = { 6.9, 23.8, 5602, 900 }, + }, + }, + [1617] = { + ["coords"] = { + [1] = { 48.2, 64.2, 1, 900 }, + [2] = { 49.4, 63.3, 1, 900 }, + [3] = { 47, 62.9, 1, 900 }, + [4] = { 56.3, 61.3, 1, 900 }, + [5] = { 49, 61.2, 1, 900 }, + [6] = { 50.8, 60.4, 1, 900 }, + [7] = { 38, 60.3, 1, 900 }, + [8] = { 37, 60.2, 1, 900 }, + [9] = { 49.8, 59.9, 1, 900 }, + [10] = { 64.3, 59.7, 1, 900 }, + [11] = { 40.3, 59.6, 1, 900 }, + [12] = { 63.4, 59, 1, 900 }, + [13] = { 55.1, 59, 1, 900 }, + [14] = { 39.3, 59, 1, 900 }, + [15] = { 45.1, 58.9, 1, 900 }, + [16] = { 35.5, 58.3, 1, 900 }, + [17] = { 45.6, 58.1, 1, 900 }, + [18] = { 40.1, 58, 1, 900 }, + [19] = { 57.1, 57.9, 1, 900 }, + [20] = { 32.8, 57.8, 1, 900 }, + [21] = { 44.4, 57.4, 1, 900 }, + [22] = { 31.7, 57.3, 1, 900 }, + [23] = { 76.3, 57, 1, 900 }, + [24] = { 78.9, 56.9, 1, 900 }, + [25] = { 43.9, 56.7, 1, 900 }, + [26] = { 45.3, 56.6, 1, 900 }, + [27] = { 54.5, 56.2, 1, 900 }, + [28] = { 32.1, 55.6, 1, 900 }, + [29] = { 63.6, 55.3, 1, 900 }, + [30] = { 58.1, 54.6, 1, 900 }, + [31] = { 31.7, 54.3, 1, 900 }, + [32] = { 29.2, 53.9, 1, 900 }, + [33] = { 71, 51.1, 1, 900 }, + [34] = { 30.1, 50.5, 1, 900 }, + [35] = { 74.7, 50.5, 1, 900 }, + [36] = { 69.5, 50, 1, 900 }, + [37] = { 72.1, 49, 1, 900 }, + [38] = { 28.8, 47.9, 1, 900 }, + [39] = { 47.8, 44.7, 1, 900 }, + [40] = { 28.1, 44.1, 1, 900 }, + [41] = { 47.3, 43.2, 1, 900 }, + [42] = { 46.4, 43, 1, 900 }, + [43] = { 27.3, 41.7, 1, 900 }, + [44] = { 45.9, 41.4, 1, 900 }, + [45] = { 46.8, 41.2, 1, 900 }, + [46] = { 46.2, 40.1, 1, 900 }, + [47] = { 29.8, 38.5, 1, 900 }, + [48] = { 44, 36.6, 1, 900 }, + [49] = { 37.7, 36.3, 1, 900 }, + [50] = { 34.7, 33.7, 1, 900 }, + [51] = { 43.9, 33.5, 1, 900 }, + [52] = { 38, 33.4, 1, 900 }, + [53] = { 44.5, 31.4, 1, 900 }, + [54] = { 43.1, 30.1, 1, 900 }, + [55] = { 48.4, 5.3, 3, 900 }, + [56] = { 49.4, 4.3, 3, 900 }, + [57] = { 48.2, 3.6, 3, 900 }, + [58] = { 24.9, 92.4, 12, 900 }, + [59] = { 27.6, 91.9, 12, 900 }, + [60] = { 30.8, 89.4, 12, 900 }, + [61] = { 45.7, 89.2, 12, 900 }, + [62] = { 34.2, 88.1, 12, 900 }, + [63] = { 26.5, 87.9, 12, 900 }, + [64] = { 27, 84.5, 12, 900 }, + [65] = { 40.4, 84.2, 12, 900 }, + [66] = { 76.5, 83.9, 12, 900 }, + [67] = { 42.8, 83.9, 12, 900 }, + [68] = { 18.9, 83.4, 12, 900 }, + [69] = { 85.8, 83, 12, 900 }, + [70] = { 49.9, 80.9, 12, 900 }, + [71] = { 66.5, 80.9, 12, 900 }, + [72] = { 81.1, 80.6, 12, 900 }, + [73] = { 35, 80, 12, 900 }, + [74] = { 37.7, 79.7, 12, 900 }, + [75] = { 42.4, 79.4, 12, 900 }, + [76] = { 61.7, 78.9, 12, 900 }, + [77] = { 79, 77.8, 12, 900 }, + [78] = { 23.3, 77.7, 12, 900 }, + [79] = { 68.9, 76.2, 12, 900 }, + [80] = { 75.3, 75.8, 12, 900 }, + [81] = { 44.8, 75.7, 12, 900 }, + [82] = { 17.4, 75.7, 12, 900 }, + [83] = { 57.6, 75.5, 12, 900 }, + [84] = { 40.1, 74.8, 12, 900 }, + [85] = { 35.1, 74.5, 12, 900 }, + [86] = { 39, 72.7, 12, 900 }, + [87] = { 29.4, 71.5, 12, 900 }, + [88] = { 35.1, 70.7, 12, 900 }, + [89] = { 53.8, 70.3, 12, 900 }, + [90] = { 77.5, 70.1, 12, 900 }, + [91] = { 50.9, 69.2, 12, 900 }, + [92] = { 61.4, 68.5, 12, 900 }, + [93] = { 27.2, 68.3, 12, 900 }, + [94] = { 69, 68.1, 12, 900 }, + [95] = { 79.4, 68, 12, 900 }, + [96] = { 73.3, 67.4, 12, 900 }, + [97] = { 34.9, 66.9, 12, 900 }, + [98] = { 56.3, 66.9, 12, 900 }, + [99] = { 31.3, 66.8, 12, 900 }, + [100] = { 30.3, 66.6, 12, 900 }, + [101] = { 60.6, 65.4, 12, 900 }, + [102] = { 67.6, 65.1, 12, 900 }, + [103] = { 87.3, 64.9, 12, 900 }, + [104] = { 77.1, 63.1, 12, 900 }, + [105] = { 51.9, 63.1, 12, 900 }, + [106] = { 81.5, 62.9, 12, 900 }, + [107] = { 64.5, 62.6, 12, 900 }, + [108] = { 36, 61.9, 12, 900 }, + [109] = { 60.7, 60.9, 12, 900 }, + [110] = { 54.3, 60.3, 12, 900 }, + [111] = { 57.7, 60.2, 12, 900 }, + [112] = { 36.9, 58.1, 12, 900 }, + [113] = { 34, 58.1, 12, 900 }, + [114] = { 30.6, 57.7, 12, 900 }, + [115] = { 41.2, 57.6, 12, 900 }, + [116] = { 43.3, 56.7, 12, 900 }, + [117] = { 41.4, 55.3, 12, 900 }, + [118] = { 32.8, 54.5, 12, 900 }, + [119] = { 80.5, 54.4, 12, 900 }, + [120] = { 62.8, 53.9, 12, 900 }, + [121] = { 39.8, 53.4, 12, 900 }, + [122] = { 41.4, 52.1, 12, 900 }, + [123] = { 44.7, 51.3, 12, 900 }, + [124] = { 68.1, 50.8, 12, 900 }, + [125] = { 66.5, 42.8, 12, 900 }, + [126] = { 71.2, 42, 12, 900 }, + [127] = { 76.6, 41.1, 12, 900 }, + [128] = { 60.7, 91.5, 14, 900 }, + [129] = { 54.9, 80.5, 14, 900 }, + [130] = { 53.7, 80.4, 14, 900 }, + [131] = { 51.6, 77.6, 14, 900 }, + [132] = { 52.5, 76.3, 14, 900 }, + [133] = { 50.5, 75.1, 14, 900 }, + [134] = { 49.3, 74.1, 14, 900 }, + [135] = { 51.4, 73.9, 14, 900 }, + [136] = { 54, 73.1, 14, 900 }, + [137] = { 44.7, 72.6, 14, 900 }, + [138] = { 42.3, 70.6, 14, 900 }, + [139] = { 56.2, 69.1, 14, 900 }, + [140] = { 55.3, 69.1, 14, 900 }, + [141] = { 56.2, 68.6, 14, 900 }, + [142] = { 56, 68.3, 14, 900 }, + [143] = { 55.6, 67.6, 14, 900 }, + [144] = { 55.2, 66.9, 14, 900 }, + [145] = { 41.5, 66.8, 14, 900 }, + [146] = { 56, 66.7, 14, 900 }, + [147] = { 54.8, 66.4, 14, 900 }, + [148] = { 42.3, 66.2, 14, 900 }, + [149] = { 41.7, 65.7, 14, 900 }, + [150] = { 51.5, 65.4, 14, 900 }, + [151] = { 42.1, 65.4, 14, 900 }, + [152] = { 98.9, 63.7, 14, 900 }, + [153] = { 55, 63.6, 14, 900 }, + [154] = { 55, 63.3, 14, 900 }, + [155] = { 54.9, 62.8, 14, 900 }, + [156] = { 51.3, 62.5, 14, 900 }, + [157] = { 55, 62.3, 14, 900 }, + [158] = { 54.8, 61.4, 14, 900 }, + [159] = { 60.5, 60.8, 14, 900 }, + [160] = { 52.7, 59.6, 14, 900 }, + [161] = { 51.8, 59.5, 14, 900 }, + [162] = { 52.6, 59, 14, 900 }, + [163] = { 51.9, 58.5, 14, 900 }, + [164] = { 58.3, 58.1, 14, 900 }, + [165] = { 58.7, 57.7, 14, 900 }, + [166] = { 50.6, 56.8, 14, 900 }, + [167] = { 60.3, 56.3, 14, 900 }, + [168] = { 60.4, 55.2, 14, 900 }, + [169] = { 60.2, 54.8, 14, 900 }, + [170] = { 54.8, 54.7, 14, 900 }, + [171] = { 60.6, 54.6, 14, 900 }, + [172] = { 60.3, 52.8, 14, 900 }, + [173] = { 96.4, 51.7, 14, 900 }, + [174] = { 42.9, 51.1, 14, 900 }, + [175] = { 50.2, 51, 14, 900 }, + [176] = { 43.6, 50.7, 14, 900 }, + [177] = { 44.7, 49.6, 14, 900 }, + [178] = { 47.6, 49.5, 14, 900 }, + [179] = { 44.8, 49.5, 14, 900 }, + [180] = { 49.7, 49.1, 14, 900 }, + [181] = { 46.9, 48.9, 14, 900 }, + [182] = { 50.4, 48.8, 14, 900 }, + [183] = { 40.1, 48.4, 14, 900 }, + [184] = { 47.6, 48.1, 14, 900 }, + [185] = { 56.7, 48, 14, 900 }, + [186] = { 50.8, 47.6, 14, 900 }, + [187] = { 56.6, 47.5, 14, 900 }, + [188] = { 47.9, 47.5, 14, 900 }, + [189] = { 47.7, 47.5, 14, 900 }, + [190] = { 50.3, 47.2, 14, 900 }, + [191] = { 47.7, 47.1, 14, 900 }, + [192] = { 56.3, 47, 14, 900 }, + [193] = { 56.5, 46.8, 14, 900 }, + [194] = { 98.7, 46.6, 14, 900 }, + [195] = { 49.8, 46.1, 14, 900 }, + [196] = { 44.6, 42.9, 14, 900 }, + [197] = { 57.2, 41.9, 14, 900 }, + [198] = { 57.1, 41.8, 14, 900 }, + [199] = { 58.6, 41.5, 14, 900 }, + [200] = { 57.5, 41.5, 14, 900 }, + [201] = { 56.1, 41.3, 14, 900 }, + [202] = { 58.1, 41.3, 14, 900 }, + [203] = { 38.8, 41.1, 14, 900 }, + [204] = { 58.4, 40.9, 14, 900 }, + [205] = { 40.3, 40.7, 14, 900 }, + [206] = { 39.3, 40.5, 14, 900 }, + [207] = { 56, 40.5, 14, 900 }, + [208] = { 40.1, 40.4, 14, 900 }, + [209] = { 57, 39.1, 14, 900 }, + [210] = { 56.4, 37.7, 14, 900 }, + [211] = { 46.9, 36, 14, 900 }, + [212] = { 56, 35.7, 14, 900 }, + [213] = { 55.9, 35.6, 14, 900 }, + [214] = { 55.7, 34.5, 14, 900 }, + [215] = { 56, 33.1, 14, 900 }, + [216] = { 55.7, 32.7, 14, 900 }, + [217] = { 55.9, 32.2, 14, 900 }, + [218] = { 57.1, 30.9, 14, 900 }, + [219] = { 36.7, 30.3, 14, 900 }, + [220] = { 52.3, 29.8, 14, 900 }, + [221] = { 37.8, 29.6, 14, 900 }, + [222] = { 46.2, 29.3, 14, 900 }, + [223] = { 58.5, 29.1, 14, 900 }, + [224] = { 55.4, 28, 14, 900 }, + [225] = { 56.3, 26.3, 14, 900 }, + [226] = { 58.9, 25.9, 14, 900 }, + [227] = { 42.6, 24.6, 14, 900 }, + [228] = { 42.8, 24.1, 14, 900 }, + [229] = { 44.1, 24.1, 14, 900 }, + [230] = { 58, 23.1, 14, 900 }, + [231] = { 37.7, 21.3, 14, 900 }, + [232] = { 57.4, 21.3, 14, 900 }, + [233] = { 38.6, 21.2, 14, 900 }, + [234] = { 37.4, 20.6, 14, 900 }, + [235] = { 57.6, 20.3, 14, 900 }, + [236] = { 39.9, 20.3, 14, 900 }, + [237] = { 39, 20.1, 14, 900 }, + [238] = { 56.8, 18.1, 14, 900 }, + [239] = { 56.7, 17.5, 14, 900 }, + [240] = { 57, 17.4, 14, 900 }, + [241] = { 57, 17.3, 14, 900 }, + [242] = { 58.1, 16.9, 14, 900 }, + [243] = { 53.6, 16.8, 14, 900 }, + [244] = { 58.4, 16.5, 14, 900 }, + [245] = { 58.3, 16.3, 14, 900 }, + [246] = { 42, 15.7, 14, 900 }, + [247] = { 40.3, 15, 14, 900 }, + [248] = { 39.8, 14.8, 14, 900 }, + [249] = { 40.2, 14.8, 14, 900 }, + [250] = { 41.8, 14.7, 14, 900 }, + [251] = { 41, 14.4, 14, 900 }, + [252] = { 42.5, 14.3, 14, 900 }, + [253] = { 43.2, 13.8, 14, 900 }, + [254] = { 43.2, 13.7, 14, 900 }, + [255] = { 43.6, 13.6, 14, 900 }, + [256] = { 43.5, 13.5, 14, 900 }, + [257] = { 49.6, 12.3, 14, 900 }, + [258] = { 51.2, 11.5, 14, 900 }, + [259] = { 38.8, 60.1, 17, 900 }, + [260] = { 39, 58.5, 17, 900 }, + [261] = { 39.5, 58.4, 17, 900 }, + [262] = { 38.5, 58.4, 17, 900 }, + [263] = { 38.3, 58, 17, 900 }, + [264] = { 38.8, 58, 17, 900 }, + [265] = { 38.4, 57.5, 17, 900 }, + [266] = { 38.5, 57.1, 17, 900 }, + [267] = { 37.5, 57, 17, 900 }, + [268] = { 38.2, 57, 17, 900 }, + [269] = { 37.8, 56.7, 17, 900 }, + [270] = { 37.4, 56.3, 17, 900 }, + [271] = { 54.2, 52.4, 17, 900 }, + [272] = { 35.7, 52.2, 17, 900 }, + [273] = { 55.9, 51.7, 17, 900 }, + [274] = { 55.1, 51.6, 17, 900 }, + [275] = { 55.4, 51.5, 17, 900 }, + [276] = { 55.3, 47.5, 17, 900 }, + [277] = { 54.5, 47.1, 17, 900 }, + [278] = { 76.9, 44.9, 17, 900 }, + [279] = { 55.8, 43.7, 17, 900 }, + [280] = { 56.4, 43.3, 17, 900 }, + [281] = { 53.5, 43.2, 17, 900 }, + [282] = { 34.5, 43.2, 17, 900 }, + [283] = { 54.9, 42.8, 17, 900 }, + [284] = { 47, 41.6, 17, 900 }, + [285] = { 57.4, 41.4, 17, 900 }, + [286] = { 46.1, 41.4, 17, 900 }, + [287] = { 55.5, 41.2, 17, 900 }, + [288] = { 46.3, 41.1, 17, 900 }, + [289] = { 48.4, 41, 17, 900 }, + [290] = { 47.2, 40.3, 17, 900 }, + [291] = { 51.8, 39.1, 17, 900 }, + [292] = { 48.4, 39, 17, 900 }, + [293] = { 45, 38.7, 17, 900 }, + [294] = { 47.2, 38.5, 17, 900 }, + [295] = { 45.7, 38.4, 17, 900 }, + [296] = { 46.1, 38.1, 17, 900 }, + [297] = { 46.5, 38.1, 17, 900 }, + [298] = { 47.8, 37.9, 17, 900 }, + [299] = { 46.8, 37.9, 17, 900 }, + [300] = { 46.5, 37.8, 17, 900 }, + [301] = { 34.3, 37.7, 17, 900 }, + [302] = { 47.4, 37.7, 17, 900 }, + [303] = { 46.7, 37.6, 17, 900 }, + [304] = { 48.2, 37.6, 17, 900 }, + [305] = { 47, 37.6, 17, 900 }, + [306] = { 35.7, 37.3, 17, 900 }, + [307] = { 46.4, 37.2, 17, 900 }, + [308] = { 46.3, 37.2, 17, 900 }, + [309] = { 46, 37.1, 17, 900 }, + [310] = { 45.8, 36.8, 17, 900 }, + [311] = { 45.8, 36.7, 17, 900 }, + [312] = { 45.4, 36.6, 17, 900 }, + [313] = { 52.9, 36.4, 17, 900 }, + [314] = { 45.3, 36.3, 17, 900 }, + [315] = { 54.1, 35.7, 17, 900 }, + [316] = { 67.3, 33.9, 17, 900 }, + [317] = { 50.1, 33.9, 17, 900 }, + [318] = { 52.6, 32.7, 17, 900 }, + [319] = { 30.5, 32.1, 17, 900 }, + [320] = { 52.6, 32.1, 17, 900 }, + [321] = { 31.7, 31.5, 17, 900 }, + [322] = { 51.2, 31.4, 17, 900 }, + [323] = { 45.3, 30.9, 17, 900 }, + [324] = { 50.4, 30.2, 17, 900 }, + [325] = { 46.7, 29.6, 17, 900 }, + [326] = { 47.9, 28.6, 17, 900 }, + [327] = { 48, 28.6, 17, 900 }, + [328] = { 49.5, 27.3, 17, 900 }, + [329] = { 54.8, 27.2, 17, 900 }, + [330] = { 45.6, 27.2, 17, 900 }, + [331] = { 51.4, 26, 17, 900 }, + [332] = { 57.2, 25.3, 17, 900 }, + [333] = { 54.5, 25.1, 17, 900 }, + [334] = { 56.8, 25.1, 17, 900 }, + [335] = { 57.5, 25.1, 17, 900 }, + [336] = { 51.5, 24.9, 17, 900 }, + [337] = { 51.4, 24.5, 17, 900 }, + [338] = { 53, 24.5, 17, 900 }, + [339] = { 50, 24.3, 17, 900 }, + [340] = { 48, 24.3, 17, 900 }, + [341] = { 50, 24.1, 17, 900 }, + [342] = { 50.3, 24.1, 17, 900 }, + [343] = { 51.3, 24, 17, 900 }, + [344] = { 50, 23.7, 17, 900 }, + [345] = { 49.8, 23.7, 17, 900 }, + [346] = { 50.4, 23.7, 17, 900 }, + [347] = { 50.3, 23.6, 17, 900 }, + [348] = { 50, 23.4, 17, 900 }, + [349] = { 44.5, 23.1, 17, 900 }, + [350] = { 54.7, 22, 17, 900 }, + [351] = { 42.8, 21.4, 17, 900 }, + [352] = { 45.6, 21.3, 17, 900 }, + [353] = { 41, 21.2, 17, 900 }, + [354] = { 53.3, 20.3, 17, 900 }, + [355] = { 57, 20.2, 17, 900 }, + [356] = { 61, 19, 17, 900 }, + [357] = { 41.4, 18.2, 17, 900 }, + [358] = { 41.2, 17.8, 17, 900 }, + [359] = { 53.7, 17.6, 17, 900 }, + [360] = { 41.5, 17.5, 17, 900 }, + [361] = { 59.5, 17.2, 17, 900 }, + [362] = { 40.5, 17.1, 17, 900 }, + [363] = { 55.5, 16.9, 17, 900 }, + [364] = { 61.4, 16.3, 17, 900 }, + [365] = { 62.1, 16.2, 17, 900 }, + [366] = { 60.7, 15.7, 17, 900 }, + [367] = { 38.7, 15.5, 17, 900 }, + [368] = { 38.6, 15.4, 17, 900 }, + [369] = { 38.9, 15, 17, 900 }, + [370] = { 39.6, 14.7, 17, 900 }, + [371] = { 38.9, 13.8, 17, 900 }, + [372] = { 64.4, 12.9, 17, 900 }, + [373] = { 49.5, 12.8, 17, 900 }, + [374] = { 65, 12.6, 17, 900 }, + [375] = { 64.9, 8.2, 17, 900 }, + [376] = { 65.4, 8.2, 17, 900 }, + [377] = { 64.8, 7.9, 17, 900 }, + [378] = { 24.6, 61.5, 28, 900 }, + [379] = { 19.3, 59.2, 28, 900 }, + [380] = { 18.3, 53.3, 28, 900 }, + [381] = { 27.1, 52.7, 28, 900 }, + [382] = { 23.5, 48.9, 28, 900 }, + [383] = { 33.4, 26.2, 28, 900 }, + [384] = { 46.7, 81, 38, 900 }, + [385] = { 30.6, 80.2, 38, 900 }, + [386] = { 47.7, 80.1, 38, 900 }, + [387] = { 46.5, 79.5, 38, 900 }, + [388] = { 33.1, 79.4, 38, 900 }, + [389] = { 48.3, 77.2, 38, 900 }, + [390] = { 46.2, 76.5, 38, 900 }, + [391] = { 37.2, 76.1, 38, 900 }, + [392] = { 40, 75.8, 38, 900 }, + [393] = { 30, 75.8, 38, 900 }, + [394] = { 47.8, 74.8, 38, 900 }, + [395] = { 39.9, 73.9, 38, 900 }, + [396] = { 35.2, 70.9, 38, 900 }, + [397] = { 40.1, 69.7, 38, 900 }, + [398] = { 41.8, 69.4, 38, 900 }, + [399] = { 32.4, 68.9, 38, 900 }, + [400] = { 42.7, 62.3, 38, 900 }, + [401] = { 43, 58.8, 38, 900 }, + [402] = { 26.5, 57.9, 38, 900 }, + [403] = { 33.3, 55.7, 38, 900 }, + [404] = { 35.8, 52, 38, 900 }, + [405] = { 28.4, 43.9, 38, 900 }, + [406] = { 30.9, 43.1, 38, 900 }, + [407] = { 27.8, 40.3, 38, 900 }, + [408] = { 34.3, 40.3, 38, 900 }, + [409] = { 54.6, 38.2, 38, 900 }, + [410] = { 53.8, 37.9, 38, 900 }, + [411] = { 56.3, 37.1, 38, 900 }, + [412] = { 36.8, 36.5, 38, 900 }, + [413] = { 53.6, 36.1, 38, 900 }, + [414] = { 51.5, 35.9, 38, 900 }, + [415] = { 56.4, 35.7, 38, 900 }, + [416] = { 52.1, 35.7, 38, 900 }, + [417] = { 54.6, 35.6, 38, 900 }, + [418] = { 31.9, 35.5, 38, 900 }, + [419] = { 51.1, 35, 38, 900 }, + [420] = { 39, 34.7, 38, 900 }, + [421] = { 54.7, 34.2, 38, 900 }, + [422] = { 52, 34.2, 38, 900 }, + [423] = { 56.2, 33.9, 38, 900 }, + [424] = { 34.5, 33.7, 38, 900 }, + [425] = { 54.6, 33.3, 38, 900 }, + [426] = { 55.9, 32.7, 38, 900 }, + [427] = { 31.7, 31.6, 38, 900 }, + [428] = { 37, 30.4, 38, 900 }, + [429] = { 28.1, 30.2, 38, 900 }, + [430] = { 54.6, 28.9, 38, 900 }, + [431] = { 54.2, 28.9, 38, 900 }, + [432] = { 55.2, 28.8, 38, 900 }, + [433] = { 55, 28.6, 38, 900 }, + [434] = { 54.4, 28.5, 38, 900 }, + [435] = { 55.6, 28.4, 38, 900 }, + [436] = { 53.7, 28.2, 38, 900 }, + [437] = { 25.1, 28, 38, 900 }, + [438] = { 55.8, 27.9, 38, 900 }, + [439] = { 55.3, 27.7, 38, 900 }, + [440] = { 59.7, 27.6, 38, 900 }, + [441] = { 58.4, 27.6, 38, 900 }, + [442] = { 55.7, 27, 38, 900 }, + [443] = { 54.9, 26.4, 38, 900 }, + [444] = { 58.6, 26.1, 38, 900 }, + [445] = { 39, 26, 38, 900 }, + [446] = { 55.1, 25.9, 38, 900 }, + [447] = { 58.3, 25.5, 38, 900 }, + [448] = { 55, 24.4, 38, 900 }, + [449] = { 53.7, 24.2, 38, 900 }, + [450] = { 54.3, 24.2, 38, 900 }, + [451] = { 52.5, 24, 38, 900 }, + [452] = { 24.9, 23.8, 38, 900 }, + [453] = { 54.4, 23.1, 38, 900 }, + [454] = { 53.7, 21.8, 38, 900 }, + [455] = { 40.3, 21.6, 38, 900 }, + [456] = { 27.2, 19, 38, 900 }, + [457] = { 30.1, 17.7, 38, 900 }, + [458] = { 21.8, 16.6, 38, 900 }, + [459] = { 39.3, 14.2, 38, 900 }, + [460] = { 36.2, 13.3, 38, 900 }, + [461] = { 30.5, 11.2, 38, 900 }, + [462] = { 48.2, 77.2, 40, 900 }, + [463] = { 60.6, 75.8, 40, 900 }, + [464] = { 56.3, 70.3, 40, 900 }, + [465] = { 33.6, 63.5, 40, 900 }, + [466] = { 32, 47.8, 40, 900 }, + [467] = { 50.6, 40, 40, 900 }, + [468] = { 47.7, 38.9, 40, 900 }, + [469] = { 43, 37.6, 40, 900 }, + [470] = { 56.1, 35.3, 40, 900 }, + [471] = { 36.8, 32.8, 40, 900 }, + [472] = { 39.4, 32.4, 40, 900 }, + [473] = { 57.6, 31.2, 40, 900 }, + [474] = { 40.9, 26.8, 40, 900 }, + [475] = { 45.9, 25.7, 40, 900 }, + [476] = { 59, 24.8, 40, 900 }, + [477] = { 42.4, 20.8, 40, 900 }, + [478] = { 61.1, 20.1, 40, 900 }, + [479] = { 49.2, 17.8, 40, 900 }, + [480] = { 59.1, 15.3, 40, 900 }, + [481] = { 51.8, 14.4, 40, 900 }, + [482] = { 56.4, 14.1, 40, 900 }, + [483] = { 45.3, 13.5, 40, 900 }, + [484] = { 59.6, 12.5, 40, 900 }, + [485] = { 58.4, 8.4, 40, 900 }, + [486] = { 81.3, 74.1, 85, 900 }, + [487] = { 76.3, 71.9, 85, 900 }, + [488] = { 51.5, 70.9, 85, 900 }, + [489] = { 43.5, 69.8, 85, 900 }, + [490] = { 48.6, 68.7, 85, 900 }, + [491] = { 41.8, 67.3, 85, 900 }, + [492] = { 75.3, 66.4, 85, 900 }, + [493] = { 83.7, 65.8, 85, 900 }, + [494] = { 46.4, 65.7, 85, 900 }, + [495] = { 51.6, 65.7, 85, 900 }, + [496] = { 48.7, 64.8, 85, 900 }, + [497] = { 41.3, 63.7, 85, 900 }, + [498] = { 80.3, 62.1, 85, 900 }, + [499] = { 50.2, 61.6, 85, 900 }, + [500] = { 18.2, 61.5, 85, 900 }, + [501] = { 53.2, 61.5, 85, 900 }, + [502] = { 48.2, 61.1, 85, 900 }, + [503] = { 42.9, 61.1, 85, 900 }, + [504] = { 70.9, 60.4, 85, 900 }, + [505] = { 67, 59, 85, 900 }, + [506] = { 46.1, 58.9, 85, 900 }, + [507] = { 59.9, 58.8, 85, 900 }, + [508] = { 48.5, 58.8, 85, 900 }, + [509] = { 77.1, 58.6, 85, 900 }, + [510] = { 54.7, 58.5, 85, 900 }, + [511] = { 51.2, 58, 85, 900 }, + [512] = { 40.1, 56.9, 85, 900 }, + [513] = { 16.7, 56.2, 85, 900 }, + [514] = { 54.4, 55.3, 85, 900 }, + [515] = { 50.3, 55.1, 85, 900 }, + [516] = { 75.1, 54.5, 85, 900 }, + [517] = { 49.7, 54.3, 85, 900 }, + [518] = { 83.3, 54.2, 85, 900 }, + [519] = { 41.7, 53.4, 85, 900 }, + [520] = { 51.9, 53, 85, 900 }, + [521] = { 47.5, 52.5, 85, 900 }, + [522] = { 53.3, 52.5, 85, 900 }, + [523] = { 64.5, 52.4, 85, 900 }, + [524] = { 33.5, 52.2, 85, 900 }, + [525] = { 45.3, 52.2, 85, 900 }, + [526] = { 39.4, 51.4, 85, 900 }, + [527] = { 42.6, 51.2, 85, 900 }, + [528] = { 29.9, 50.5, 85, 900 }, + [529] = { 56.2, 50.5, 85, 900 }, + [530] = { 53.7, 49.9, 85, 900 }, + [531] = { 75, 49.7, 85, 900 }, + [532] = { 66.4, 49.1, 85, 900 }, + [533] = { 40.8, 49.1, 85, 900 }, + [534] = { 89.4, 48.9, 85, 900 }, + [535] = { 57.4, 48.5, 85, 900 }, + [536] = { 56.3, 47.2, 85, 900 }, + [537] = { 41.6, 46.5, 85, 900 }, + [538] = { 36.2, 46.3, 85, 900 }, + [539] = { 54, 46, 85, 900 }, + [540] = { 44.7, 45.5, 85, 900 }, + [541] = { 38.3, 45.4, 85, 900 }, + [542] = { 61, 44.2, 85, 900 }, + [543] = { 56.6, 44, 85, 900 }, + [544] = { 43.1, 42.3, 85, 900 }, + [545] = { 89.7, 40.6, 85, 900 }, + [546] = { 79.4, 40.1, 85, 900 }, + [547] = { 60, 38.8, 85, 900 }, + [548] = { 56, 38.8, 85, 900 }, + [549] = { 58, 38.6, 85, 900 }, + [550] = { 38.9, 38.1, 85, 900 }, + [551] = { 64.8, 38.1, 85, 900 }, + [552] = { 73.2, 37.2, 85, 900 }, + [553] = { 61.9, 37.2, 85, 900 }, + [554] = { 48.2, 37.1, 85, 900 }, + [555] = { 71.5, 36.8, 85, 900 }, + [556] = { 63.5, 35.5, 85, 900 }, + [557] = { 58, 33.9, 85, 900 }, + [558] = { 66.6, 33, 85, 900 }, + [559] = { 61.4, 32.8, 85, 900 }, + [560] = { 75.4, 32.7, 85, 900 }, + [561] = { 49.4, 30.2, 85, 900 }, + [562] = { 58.6, 30.2, 85, 900 }, + [563] = { 43.5, 29.9, 85, 900 }, + [564] = { 52.8, 29.7, 85, 900 }, + [565] = { 62.6, 81.7, 130, 900 }, + [566] = { 55.4, 40.1, 130, 900 }, + [567] = { 73.4, 35.3, 130, 900 }, + [568] = { 41.9, 31.2, 130, 900 }, + [569] = { 44.4, 31.1, 130, 900 }, + [570] = { 42.2, 29.5, 130, 900 }, + [571] = { 48.9, 27.5, 130, 900 }, + [572] = { 50.3, 27.5, 130, 900 }, + [573] = { 44.8, 27.4, 130, 900 }, + [574] = { 77.9, 26.9, 130, 900 }, + [575] = { 54.8, 25.6, 130, 900 }, + [576] = { 40.8, 25.1, 130, 900 }, + [577] = { 39.7, 24.5, 130, 900 }, + [578] = { 44.2, 24.1, 130, 900 }, + [579] = { 40.5, 22.9, 130, 900 }, + [580] = { 53.3, 22.7, 130, 900 }, + [581] = { 55.2, 22.5, 130, 900 }, + [582] = { 48.2, 21.8, 130, 900 }, + [583] = { 47.3, 21.7, 130, 900 }, + [584] = { 51.1, 21.2, 130, 900 }, + [585] = { 38.9, 21, 130, 900 }, + [586] = { 50.9, 20, 130, 900 }, + [587] = { 36.2, 19.9, 130, 900 }, + [588] = { 54.8, 19.6, 130, 900 }, + [589] = { 43, 19.4, 130, 900 }, + [590] = { 48.6, 19.3, 130, 900 }, + [591] = { 48.2, 19.2, 130, 900 }, + [592] = { 52.1, 18.8, 130, 900 }, + [593] = { 47.7, 18.8, 130, 900 }, + [594] = { 45.6, 18.6, 130, 900 }, + [595] = { 44.2, 18.5, 130, 900 }, + [596] = { 39.3, 17.6, 130, 900 }, + [597] = { 51.9, 17.4, 130, 900 }, + [598] = { 52.1, 16.5, 130, 900 }, + [599] = { 39.7, 16.5, 130, 900 }, + [600] = { 44.7, 16.3, 130, 900 }, + [601] = { 54.7, 14.6, 130, 900 }, + [602] = { 52.2, 11.9, 130, 900 }, + [603] = { 62.1, 11.5, 130, 900 }, + [604] = { 57.1, 10.9, 130, 900 }, + [605] = { 58.2, 9.6, 130, 900 }, + [606] = { 61.2, 8.8, 130, 900 }, + [607] = { 57.4, 8.8, 130, 900 }, + [608] = { 59.2, 8.7, 130, 900 }, + [609] = { 66.6, 8.4, 130, 900 }, + [610] = { 62.5, 8.4, 130, 900 }, + [611] = { 69.2, 8.3, 130, 900 }, + [612] = { 56.3, 8.2, 130, 900 }, + [613] = { 64.1, 6.9, 130, 900 }, + [614] = { 64.2, 6.8, 130, 900 }, + [615] = { 11.7, 14.1, 139, 900 }, + [616] = { 39.1, 80.4, 141, 900 }, + [617] = { 42.5, 78.7, 141, 900 }, + [618] = { 46.3, 78.5, 141, 900 }, + [619] = { 57.8, 77.2, 141, 900 }, + [620] = { 56, 77, 141, 900 }, + [621] = { 46.4, 76, 141, 900 }, + [622] = { 46.3, 74.3, 141, 900 }, + [623] = { 56.4, 74.1, 141, 900 }, + [624] = { 62.6, 73.7, 141, 900 }, + [625] = { 49.4, 73, 141, 900 }, + [626] = { 54.6, 72.7, 141, 900 }, + [627] = { 55.3, 72.6, 141, 900 }, + [628] = { 43.4, 71.1, 141, 900 }, + [629] = { 64.1, 70.9, 141, 900 }, + [630] = { 64.6, 70, 141, 900 }, + [631] = { 52, 69.2, 141, 900 }, + [632] = { 62.8, 67.8, 141, 900 }, + [633] = { 64.1, 65, 141, 900 }, + [634] = { 38.6, 64.9, 141, 900 }, + [635] = { 62.6, 64.3, 141, 900 }, + [636] = { 59.1, 62.8, 141, 900 }, + [637] = { 61.1, 62.3, 141, 900 }, + [638] = { 39.6, 61.9, 141, 900 }, + [639] = { 49.2, 61.6, 141, 900 }, + [640] = { 68.8, 61.6, 141, 900 }, + [641] = { 65.5, 61.3, 141, 900 }, + [642] = { 53.3, 60.2, 141, 900 }, + [643] = { 49, 58.3, 141, 900 }, + [644] = { 67.6, 58.1, 141, 900 }, + [645] = { 69.5, 55, 141, 900 }, + [646] = { 47.4, 54.7, 141, 900 }, + [647] = { 56.5, 54.7, 141, 900 }, + [648] = { 44.7, 54, 141, 900 }, + [649] = { 69.9, 53.5, 141, 900 }, + [650] = { 50.3, 52.7, 141, 900 }, + [651] = { 51.4, 52.4, 141, 900 }, + [652] = { 68.8, 51.2, 141, 900 }, + [653] = { 66.2, 50.9, 141, 900 }, + [654] = { 46.7, 47.1, 141, 900 }, + [655] = { 40.8, 46.5, 141, 900 }, + [656] = { 37.7, 42.4, 141, 900 }, + [657] = { 46.3, 42.2, 141, 900 }, + [658] = { 46.6, 39.7, 141, 900 }, + [659] = { 43.5, 39, 141, 900 }, + [660] = { 36.6, 37.3, 141, 900 }, + [661] = { 35.3, 31.7, 141, 900 }, + [662] = { 43, 89.3, 148, 900 }, + [663] = { 37.8, 88.8, 148, 900 }, + [664] = { 42.2, 88.1, 148, 900 }, + [665] = { 38.3, 84.7, 148, 900 }, + [666] = { 38.6, 84.5, 148, 900 }, + [667] = { 41.9, 84.5, 148, 900 }, + [668] = { 39, 84.2, 148, 900 }, + [669] = { 39.7, 82.4, 148, 900 }, + [670] = { 40.5, 77.2, 148, 900 }, + [671] = { 39.9, 75.2, 148, 900 }, + [672] = { 40.1, 72, 148, 900 }, + [673] = { 40.6, 71.8, 148, 900 }, + [674] = { 41.8, 65.5, 148, 900 }, + [675] = { 39.7, 62.2, 148, 900 }, + [676] = { 43.1, 57.6, 148, 900 }, + [677] = { 43.8, 57.2, 148, 900 }, + [678] = { 44.9, 55.5, 148, 900 }, + [679] = { 42.3, 54.5, 148, 900 }, + [680] = { 39.1, 53.9, 148, 900 }, + [681] = { 39.9, 52, 148, 900 }, + [682] = { 42.8, 51.3, 148, 900 }, + [683] = { 38.7, 51.2, 148, 900 }, + [684] = { 38.6, 50.6, 148, 900 }, + [685] = { 44.3, 50.3, 148, 900 }, + [686] = { 39.3, 49.5, 148, 900 }, + [687] = { 44.6, 46.6, 148, 900 }, + [688] = { 44.1, 45.3, 148, 900 }, + [689] = { 45.2, 43.4, 148, 900 }, + [690] = { 45.4, 42.6, 148, 900 }, + [691] = { 44.7, 42.2, 148, 900 }, + [692] = { 44, 41.2, 148, 900 }, + [693] = { 39.2, 39.7, 148, 900 }, + [694] = { 39.4, 38.7, 148, 900 }, + [695] = { 49.9, 35.1, 148, 900 }, + [696] = { 41, 34.5, 148, 900 }, + [697] = { 40.7, 34.3, 148, 900 }, + [698] = { 41.2, 33.7, 148, 900 }, + [699] = { 52.9, 32.8, 148, 900 }, + [700] = { 52.2, 32.8, 148, 900 }, + [701] = { 52.3, 30.7, 148, 900 }, + [702] = { 44.4, 30.2, 148, 900 }, + [703] = { 54.1, 29.9, 148, 900 }, + [704] = { 44.2, 29.6, 148, 900 }, + [705] = { 43.4, 28.7, 148, 900 }, + [706] = { 48.3, 27.9, 148, 900 }, + [707] = { 49.4, 27.9, 148, 900 }, + [708] = { 43.1, 27.7, 148, 900 }, + [709] = { 57.7, 27.7, 148, 900 }, + [710] = { 43.5, 27.5, 148, 900 }, + [711] = { 43.8, 27.5, 148, 900 }, + [712] = { 43.6, 27.4, 148, 900 }, + [713] = { 44.1, 27.2, 148, 900 }, + [714] = { 49.7, 27.1, 148, 900 }, + [715] = { 58, 27, 148, 900 }, + [716] = { 56.8, 27, 148, 900 }, + [717] = { 57.5, 26.9, 148, 900 }, + [718] = { 54.7, 26.3, 148, 900 }, + [719] = { 53.3, 25.9, 148, 900 }, + [720] = { 45.9, 25.7, 148, 900 }, + [721] = { 59, 25.6, 148, 900 }, + [722] = { 56.9, 25.1, 148, 900 }, + [723] = { 53.6, 23.9, 148, 900 }, + [724] = { 53.8, 23.7, 148, 900 }, + [725] = { 34.2, 80.9, 215, 900 }, + [726] = { 37.7, 77.8, 215, 900 }, + [727] = { 35.1, 74.2, 215, 900 }, + [728] = { 64, 71.2, 215, 900 }, + [729] = { 44.9, 70.3, 215, 900 }, + [730] = { 47.8, 68.5, 215, 900 }, + [731] = { 44.2, 67.3, 215, 900 }, + [732] = { 57.8, 64.5, 215, 900 }, + [733] = { 41.2, 64.3, 215, 900 }, + [734] = { 38.7, 63.9, 215, 900 }, + [735] = { 65.4, 63.4, 215, 900 }, + [736] = { 34.5, 62.4, 215, 900 }, + [737] = { 56.4, 62.2, 215, 900 }, + [738] = { 62.1, 61.7, 215, 900 }, + [739] = { 60.7, 61.4, 215, 900 }, + [740] = { 62.4, 60.8, 215, 900 }, + [741] = { 60.7, 60.5, 215, 900 }, + [742] = { 65.8, 60.3, 215, 900 }, + [743] = { 66.6, 60.1, 215, 900 }, + [744] = { 64.7, 60.1, 215, 900 }, + [745] = { 62.5, 59.7, 215, 900 }, + [746] = { 38.6, 59.6, 215, 900 }, + [747] = { 64.3, 59.3, 215, 900 }, + [748] = { 65.2, 59.3, 215, 900 }, + [749] = { 58.3, 59.1, 215, 900 }, + [750] = { 58.2, 58.9, 215, 900 }, + [751] = { 62.7, 58.5, 215, 900 }, + [752] = { 61.7, 58.5, 215, 900 }, + [753] = { 53.5, 58.4, 215, 900 }, + [754] = { 64.6, 58.3, 215, 900 }, + [755] = { 58.4, 58.1, 215, 900 }, + [756] = { 35.3, 57.9, 215, 900 }, + [757] = { 64.7, 57.6, 215, 900 }, + [758] = { 62.8, 57.5, 215, 900 }, + [759] = { 64.2, 57.4, 215, 900 }, + [760] = { 58.9, 56.9, 215, 900 }, + [761] = { 63.3, 56.7, 215, 900 }, + [762] = { 60.7, 56.5, 215, 900 }, + [763] = { 62.5, 56, 215, 900 }, + [764] = { 59.7, 55.6, 215, 900 }, + [765] = { 55.1, 54.8, 215, 900 }, + [766] = { 37.9, 52.9, 215, 900 }, + [767] = { 45.5, 51.9, 215, 900 }, + [768] = { 56.1, 50.5, 215, 900 }, + [769] = { 41.1, 49.3, 215, 900 }, + [770] = { 37.6, 48.5, 215, 900 }, + [771] = { 59.3, 47.9, 215, 900 }, + [772] = { 48.1, 47.2, 215, 900 }, + [773] = { 47, 45.1, 215, 900 }, + [774] = { 57.8, 44.4, 215, 900 }, + [775] = { 35.5, 43.5, 215, 900 }, + [776] = { 38.6, 42.8, 215, 900 }, + [777] = { 53.6, 42.3, 215, 900 }, + [778] = { 31.2, 42.2, 215, 900 }, + [779] = { 55.6, 41.7, 215, 900 }, + [780] = { 49.2, 40.8, 215, 900 }, + [781] = { 46, 38.4, 215, 900 }, + [782] = { 51.1, 37.9, 215, 900 }, + [783] = { 34, 37.5, 215, 900 }, + [784] = { 37.7, 36.6, 215, 900 }, + [785] = { 56.9, 36.5, 215, 900 }, + [786] = { 47.1, 33.9, 215, 900 }, + [787] = { 33.8, 33.6, 215, 900 }, + [788] = { 44.6, 32.8, 215, 900 }, + [789] = { 56.8, 30.2, 215, 900 }, + [790] = { 47.6, 29.4, 215, 900 }, + [791] = { 51, 28.3, 215, 900 }, + [792] = { 47.9, 25.8, 215, 900 }, + [793] = { 34.1, 24.3, 215, 900 }, + [794] = { 53.6, 19.7, 215, 900 }, + [795] = { 39.6, 19.5, 215, 900 }, + [796] = { 56.4, 19.3, 215, 900 }, + [797] = { 59.1, 18.6, 215, 900 }, + [798] = { 41.8, 18.5, 215, 900 }, + [799] = { 50.6, 16.7, 215, 900 }, + [800] = { 46.7, 16.6, 215, 900 }, + [801] = { 38.5, 16.3, 215, 900 }, + [802] = { 36.5, 16.1, 215, 900 }, + [803] = { 42.2, 11.9, 215, 900 }, + [804] = { 36.6, 9.2, 215, 900 }, + [805] = { 49, 8.3, 215, 900 }, + [806] = { 51.4, 7, 215, 900 }, + [807] = { 7.7, 47.8, 267, 900 }, + [808] = { 84.2, 72.4, 405, 900 }, + [809] = { 87.4, 67.1, 405, 900 }, + [810] = { 87.2, 62.5, 405, 900 }, + [811] = { 87.6, 51.9, 405, 900 }, + [812] = { 90.4, 34.7, 405, 900 }, + [813] = { 73.4, 99.7, 406, 900 }, + [814] = { 75.5, 98.6, 406, 900 }, + [815] = { 20.8, 98.8, 718, 900 }, + [816] = { 13, 97.9, 718, 900 }, + [817] = { 11.7, 91.5, 718, 900 }, + [818] = { 96.4, 49.9, 718, 900 }, + [819] = { 94.9, 6.3, 1337, 900 }, + [820] = { 16.1, 2.6, 1337, 900 }, + [821] = { 99.7, 2, 1337, 900 }, + [822] = { 17.5, 27.5, 1497, 900 }, + [823] = { 5.5, 42.2, 2040, 900 }, + [824] = { 66.4, 10.7, 5179, 900 }, + [825] = { 33.9, 76, 5225, 900 }, + [826] = { 53, 73.5, 5225, 900 }, + [827] = { 42.4, 72.1, 5225, 900 }, + [828] = { 46.3, 63, 5225, 900 }, + [829] = { 47.4, 54.4, 5225, 900 }, + [830] = { 31.7, 50.1, 5225, 900 }, + [831] = { 26.6, 30.9, 5225, 900 }, + [832] = { 40.4, 22.2, 5225, 900 }, + [833] = { 48.4, 80.1, 5536, 900 }, + [834] = { 37.1, 74.3, 5536, 900 }, + [835] = { 42.5, 71.7, 5536, 900 }, + [836] = { 68.5, 55.4, 5536, 900 }, + [837] = { 31.7, 48.8, 5536, 900 }, + [838] = { 53.8, 43.2, 5536, 900 }, + [839] = { 36.8, 38, 5536, 900 }, + [840] = { 53.5, 33.8, 5536, 900 }, + [841] = { 61.1, 33.6, 5536, 900 }, + [842] = { 43.8, 30.9, 5536, 900 }, + [843] = { 22.5, 85.7, 5602, 900 }, + [844] = { 14.2, 85.4, 5602, 900 }, + [845] = { 23, 85.3, 5602, 900 }, + [846] = { 22.4, 85, 5602, 900 }, + [847] = { 15.5, 84.9, 5602, 900 }, + [848] = { 23.3, 83.8, 5602, 900 }, + [849] = { 22.2, 83.5, 5602, 900 }, + [850] = { 17.6, 83.2, 5602, 900 }, + [851] = { 19, 83.1, 5602, 900 }, + [852] = { 13.9, 83.1, 5602, 900 }, + [853] = { 23, 82.6, 5602, 900 }, + [854] = { 19, 82.1, 5602, 900 }, + [855] = { 16.5, 80.6, 5602, 900 }, + [856] = { 19.1, 79.9, 5602, 900 }, + [857] = { 19.9, 79.8, 5602, 900 }, + [858] = { 15.1, 79.5, 5602, 900 }, + [859] = { 0.2, 79.3, 5602, 900 }, + [860] = { 20.4, 76.1, 5602, 900 }, + [861] = { 20.6, 74.4, 5602, 900 }, + [862] = { 12.1, 73.9, 5602, 900 }, + [863] = { 15.6, 72.8, 5602, 900 }, + [864] = { 16.9, 70.9, 5602, 900 }, + [865] = { 13.1, 66.7, 5602, 900 }, + [866] = { 14.4, 66.3, 5602, 900 }, + [867] = { 12.8, 64.9, 5602, 900 }, + [868] = { 16.1, 64.8, 5602, 900 }, + [869] = { 26.5, 63.8, 5602, 900 }, + [870] = { 26.1, 63.6, 5602, 900 }, + [871] = { 27.4, 63.2, 5602, 900 }, + [872] = { 17.4, 62.9, 5602, 900 }, + [873] = { 26, 62.7, 5602, 900 }, + [874] = { 24.9, 62.6, 5602, 900 }, + [875] = { 27.4, 62.5, 5602, 900 }, + [876] = { 25.2, 62.5, 5602, 900 }, + [877] = { 26.5, 62.5, 5602, 900 }, + [878] = { 14.9, 62.4, 5602, 900 }, + [879] = { 24.7, 62.1, 5602, 900 }, + [880] = { 18.5, 62, 5602, 900 }, + [881] = { 26.5, 61.7, 5602, 900 }, + [882] = { 25.2, 61.7, 5602, 900 }, + [883] = { 27.3, 61.6, 5602, 900 }, + [884] = { 16.2, 61.5, 5602, 900 }, + [885] = { 26.5, 61.3, 5602, 900 }, + [886] = { 27.2, 61, 5602, 900 }, + [887] = { 14.8, 60.4, 5602, 900 }, + [888] = { 17.5, 59.8, 5602, 900 }, + [889] = { 12.9, 59.7, 5602, 900 }, + [890] = { 26.5, 59, 5602, 900 }, + [891] = { 26.3, 59, 5602, 900 }, + [892] = { 26.8, 59, 5602, 900 }, + [893] = { 26.7, 58.8, 5602, 900 }, + [894] = { 26.4, 58.8, 5602, 900 }, + [895] = { 27, 58.8, 5602, 900 }, + [896] = { 26, 58.7, 5602, 900 }, + [897] = { 11.4, 58.6, 5602, 900 }, + [898] = { 27.1, 58.5, 5602, 900 }, + [899] = { 26.9, 58.4, 5602, 900 }, + [900] = { 29.1, 58.4, 5602, 900 }, + [901] = { 28.4, 58.3, 5602, 900 }, + [902] = { 27.1, 58.1, 5602, 900 }, + [903] = { 26.6, 57.8, 5602, 900 }, + [904] = { 28.6, 57.6, 5602, 900 }, + [905] = { 18.5, 57.5, 5602, 900 }, + [906] = { 26.8, 57.5, 5602, 900 }, + [907] = { 28.4, 57.3, 5602, 900 }, + [908] = { 26.7, 56.7, 5602, 900 }, + [909] = { 26, 56.6, 5602, 900 }, + [910] = { 26.4, 56.6, 5602, 900 }, + [911] = { 25.4, 56.5, 5602, 900 }, + [912] = { 11.3, 56.4, 5602, 900 }, + [913] = { 26.4, 56.1, 5602, 900 }, + [914] = { 26, 55.4, 5602, 900 }, + [915] = { 19.2, 55.2, 5602, 900 }, + [916] = { 12.5, 53.9, 5602, 900 }, + [917] = { 14, 53.3, 5602, 900 }, + [918] = { 9.7, 52.7, 5602, 900 }, + [919] = { 18.7, 51.5, 5602, 900 }, + [920] = { 17.1, 51, 5602, 900 }, + [921] = { 14.2, 49.9, 5602, 900 }, + }, + }, + [1618] = { + ["coords"] = { + [1] = { 46.1, 63.7, 1, 900 }, + [2] = { 48, 62.6, 1, 900 }, + [3] = { 49.6, 61.5, 1, 900 }, + [4] = { 75.9, 61.2, 1, 900 }, + [5] = { 40.1, 60.7, 1, 900 }, + [6] = { 34.6, 60.3, 1, 900 }, + [7] = { 59, 60.2, 1, 900 }, + [8] = { 35.4, 59.8, 1, 900 }, + [9] = { 48.8, 58.6, 1, 900 }, + [10] = { 44.4, 58.2, 1, 900 }, + [11] = { 34.3, 57.8, 1, 900 }, + [12] = { 54.3, 57.5, 1, 900 }, + [13] = { 59.6, 57.4, 1, 900 }, + [14] = { 42.2, 56.9, 1, 900 }, + [15] = { 61.9, 56.1, 1, 900 }, + [16] = { 40.8, 55.8, 1, 900 }, + [17] = { 42.3, 55.6, 1, 900 }, + [18] = { 57.3, 55.6, 1, 900 }, + [19] = { 48.1, 55.5, 1, 900 }, + [20] = { 72.9, 54.6, 1, 900 }, + [21] = { 50, 53.6, 1, 900 }, + [22] = { 70.6, 52.4, 1, 900 }, + [23] = { 29.8, 51.7, 1, 900 }, + [24] = { 50.5, 51.3, 1, 900 }, + [25] = { 73.8, 51.2, 1, 900 }, + [26] = { 58.3, 51, 1, 900 }, + [27] = { 65.5, 50.3, 1, 900 }, + [28] = { 48.4, 50, 1, 900 }, + [29] = { 29, 48.6, 1, 900 }, + [30] = { 27.7, 48.4, 1, 900 }, + [31] = { 56.2, 48.3, 1, 900 }, + [32] = { 49.6, 47.8, 1, 900 }, + [33] = { 55.1, 47.4, 1, 900 }, + [34] = { 43.3, 47, 1, 900 }, + [35] = { 50.2, 45.7, 1, 900 }, + [36] = { 51.6, 45.5, 1, 900 }, + [37] = { 28, 42.2, 1, 900 }, + [38] = { 27.6, 37, 1, 900 }, + [39] = { 33.9, 35.8, 1, 900 }, + [40] = { 37.3, 35.5, 1, 900 }, + [41] = { 33.5, 32.7, 1, 900 }, + [42] = { 40.4, 90.5, 12, 900 }, + [43] = { 25.7, 88.9, 12, 900 }, + [44] = { 35.6, 87.6, 12, 900 }, + [45] = { 38.8, 87.5, 12, 900 }, + [46] = { 46.2, 86.1, 12, 900 }, + [47] = { 84, 85.1, 12, 900 }, + [48] = { 25.9, 84.6, 12, 900 }, + [49] = { 53.3, 84, 12, 900 }, + [50] = { 49, 83.2, 12, 900 }, + [51] = { 26.2, 81.5, 12, 900 }, + [52] = { 68.5, 81.4, 12, 900 }, + [53] = { 88.4, 81.2, 12, 900 }, + [54] = { 95.8, 81.1, 12, 900 }, + [55] = { 47, 81, 12, 900 }, + [56] = { 95.3, 78, 12, 900 }, + [57] = { 88.5, 77.1, 12, 900 }, + [58] = { 39.9, 76.5, 12, 900 }, + [59] = { 77, 76.4, 12, 900 }, + [60] = { 22.7, 75.6, 12, 900 }, + [61] = { 46.8, 74.6, 12, 900 }, + [62] = { 27.9, 73.9, 12, 900 }, + [63] = { 87.1, 71, 12, 900 }, + [64] = { 43.8, 71, 12, 900 }, + [65] = { 40.9, 69.6, 12, 900 }, + [66] = { 35.6, 69.4, 12, 900 }, + [67] = { 64.1, 65.3, 12, 900 }, + [68] = { 86, 65.3, 12, 900 }, + [69] = { 63.9, 63.8, 12, 900 }, + [70] = { 45.2, 63.5, 12, 900 }, + [71] = { 66.5, 63.2, 12, 900 }, + [72] = { 62.1, 62.6, 12, 900 }, + [73] = { 70.6, 61.6, 12, 900 }, + [74] = { 85.9, 61, 12, 900 }, + [75] = { 42.8, 61, 12, 900 }, + [76] = { 37.1, 60.9, 12, 900 }, + [77] = { 49.5, 59.6, 12, 900 }, + [78] = { 78.8, 58.3, 12, 900 }, + [79] = { 35.2, 58.1, 12, 900 }, + [80] = { 62.5, 58.1, 12, 900 }, + [81] = { 44.7, 55.2, 12, 900 }, + [82] = { 74.6, 53.8, 12, 900 }, + [83] = { 40.9, 53.7, 12, 900 }, + [84] = { 60.1, 89.3, 14, 900 }, + [85] = { 52.5, 79.9, 14, 900 }, + [86] = { 54, 78.1, 14, 900 }, + [87] = { 57.8, 71.5, 14, 900 }, + [88] = { 54.5, 67.8, 14, 900 }, + [89] = { 54.1, 64.2, 14, 900 }, + [90] = { 95.8, 64, 14, 900 }, + [91] = { 52.2, 63.4, 14, 900 }, + [92] = { 94.9, 60.6, 14, 900 }, + [93] = { 52.7, 60.3, 14, 900 }, + [94] = { 52.4, 58, 14, 900 }, + [95] = { 96.1, 56.3, 14, 900 }, + [96] = { 36.4, 56.3, 14, 900 }, + [97] = { 52.1, 55.5, 14, 900 }, + [98] = { 54.6, 55.5, 14, 900 }, + [99] = { 36.4, 53.6, 14, 900 }, + [100] = { 55, 51.8, 14, 900 }, + [101] = { 58.9, 50.7, 14, 900 }, + [102] = { 37, 50.1, 14, 900 }, + [103] = { 41.4, 49.8, 14, 900 }, + [104] = { 43.2, 49, 14, 900 }, + [105] = { 54.7, 49, 14, 900 }, + [106] = { 38.7, 48.3, 14, 900 }, + [107] = { 36.4, 47.3, 14, 900 }, + [108] = { 99.2, 46.3, 14, 900 }, + [109] = { 42.1, 46.1, 14, 900 }, + [110] = { 39.5, 45.4, 14, 900 }, + [111] = { 44.2, 45.3, 14, 900 }, + [112] = { 58.3, 43.3, 14, 900 }, + [113] = { 38.2, 39.7, 14, 900 }, + [114] = { 42.8, 39.6, 14, 900 }, + [115] = { 55.4, 38.3, 14, 900 }, + [116] = { 45.6, 37.6, 14, 900 }, + [117] = { 40.1, 37.6, 14, 900 }, + [118] = { 42.1, 35.9, 14, 900 }, + [119] = { 50.8, 34.9, 14, 900 }, + [120] = { 38.8, 34.6, 14, 900 }, + [121] = { 55, 34.6, 14, 900 }, + [122] = { 36.8, 31.8, 14, 900 }, + [123] = { 42.5, 31.1, 14, 900 }, + [124] = { 54.6, 30.3, 14, 900 }, + [125] = { 35.7, 28.4, 14, 900 }, + [126] = { 54.6, 27.6, 14, 900 }, + [127] = { 37.1, 26.6, 14, 900 }, + [128] = { 50.6, 26.5, 14, 900 }, + [129] = { 45.4, 22.3, 14, 900 }, + [130] = { 56.9, 21.5, 14, 900 }, + [131] = { 42.5, 20.7, 14, 900 }, + [132] = { 40.6, 19.4, 14, 900 }, + [133] = { 44.5, 18.6, 14, 900 }, + [134] = { 56.1, 18.2, 14, 900 }, + [135] = { 42.4, 16.8, 14, 900 }, + [136] = { 50.6, 16.2, 14, 900 }, + [137] = { 54.8, 15.3, 14, 900 }, + [138] = { 57.2, 13.9, 14, 900 }, + [139] = { 53, 13, 14, 900 }, + [140] = { 44.6, 77.6, 17, 900 }, + [141] = { 45, 77.4, 17, 900 }, + [142] = { 49.1, 76.4, 17, 900 }, + [143] = { 44.8, 75.8, 17, 900 }, + [144] = { 47.8, 74.9, 17, 900 }, + [145] = { 44.8, 73.9, 17, 900 }, + [146] = { 42.6, 71.2, 17, 900 }, + [147] = { 45.5, 65.6, 17, 900 }, + [148] = { 49, 62.6, 17, 900 }, + [149] = { 44.5, 62.6, 17, 900 }, + [150] = { 48.7, 61.2, 17, 900 }, + [151] = { 43.4, 60.6, 17, 900 }, + [152] = { 39.5, 60.6, 17, 900 }, + [153] = { 46.1, 60.2, 17, 900 }, + [154] = { 48, 59.2, 17, 900 }, + [155] = { 46.3, 58.4, 17, 900 }, + [156] = { 39.2, 57.6, 17, 900 }, + [157] = { 41.4, 57.3, 17, 900 }, + [158] = { 48.8, 56.4, 17, 900 }, + [159] = { 45.1, 56.3, 17, 900 }, + [160] = { 44.7, 55.4, 17, 900 }, + [161] = { 45.4, 53.2, 17, 900 }, + [162] = { 48.4, 51.8, 17, 900 }, + [163] = { 64, 48.3, 17, 900 }, + [164] = { 46.1, 48.2, 17, 900 }, + [165] = { 43.7, 47.9, 17, 900 }, + [166] = { 47, 47.8, 17, 900 }, + [167] = { 43.1, 46.3, 17, 900 }, + [168] = { 46.1, 44, 17, 900 }, + [169] = { 76.6, 43.7, 17, 900 }, + [170] = { 45.8, 41.9, 17, 900 }, + [171] = { 34.9, 40.9, 17, 900 }, + [172] = { 35.6, 38.7, 17, 900 }, + [173] = { 53.7, 37.9, 17, 900 }, + [174] = { 51.7, 37.9, 17, 900 }, + [175] = { 48.6, 37.5, 17, 900 }, + [176] = { 33, 36.4, 17, 900 }, + [177] = { 32.3, 34.4, 17, 900 }, + [178] = { 60.3, 34.4, 17, 900 }, + [179] = { 61.2, 33.1, 17, 900 }, + [180] = { 32.2, 32.9, 17, 900 }, + [181] = { 49.4, 30.1, 17, 900 }, + [182] = { 46.2, 30, 17, 900 }, + [183] = { 60.9, 30, 17, 900 }, + [184] = { 54, 29.9, 17, 900 }, + [185] = { 43.9, 28.4, 17, 900 }, + [186] = { 54.1, 28.4, 17, 900 }, + [187] = { 54, 28, 17, 900 }, + [188] = { 51.4, 27.1, 17, 900 }, + [189] = { 54.7, 27.1, 17, 900 }, + [190] = { 55.2, 27, 17, 900 }, + [191] = { 55.3, 26.7, 17, 900 }, + [192] = { 54.9, 26.7, 17, 900 }, + [193] = { 53.7, 26.6, 17, 900 }, + [194] = { 64.2, 26.5, 17, 900 }, + [195] = { 59.2, 26.2, 17, 900 }, + [196] = { 55, 26, 17, 900 }, + [197] = { 61.9, 25.1, 17, 900 }, + [198] = { 64.3, 25.1, 17, 900 }, + [199] = { 58, 24.6, 17, 900 }, + [200] = { 56.7, 24.5, 17, 900 }, + [201] = { 60.9, 22.7, 17, 900 }, + [202] = { 64.2, 21.8, 17, 900 }, + [203] = { 53.3, 21.1, 17, 900 }, + [204] = { 54.3, 21, 17, 900 }, + [205] = { 56, 20.2, 17, 900 }, + [206] = { 51.4, 19.7, 17, 900 }, + [207] = { 59.6, 18.1, 17, 900 }, + [208] = { 45.6, 15.6, 17, 900 }, + [209] = { 52.2, 14.6, 17, 900 }, + [210] = { 49.3, 14, 17, 900 }, + [211] = { 46.4, 13.9, 17, 900 }, + [212] = { 47.7, 13.8, 17, 900 }, + [213] = { 48.4, 13.7, 17, 900 }, + [214] = { 46.6, 13.7, 17, 900 }, + [215] = { 48.2, 13.6, 17, 900 }, + [216] = { 51.1, 13.3, 17, 900 }, + [217] = { 48.1, 13.1, 17, 900 }, + [218] = { 55.1, 12.1, 17, 900 }, + [219] = { 63.9, 11.9, 17, 900 }, + [220] = { 64.6, 11, 17, 900 }, + [221] = { 56.3, 10, 17, 900 }, + [222] = { 60.3, 7.9, 17, 900 }, + [223] = { 60.3, 7.6, 17, 900 }, + [224] = { 59.2, 7.4, 17, 900 }, + [225] = { 59.9, 7.1, 17, 900 }, + [226] = { 24.9, 60.5, 28, 900 }, + [227] = { 19.8, 60.4, 28, 900 }, + [228] = { 21.5, 55.7, 28, 900 }, + [229] = { 16.7, 54.6, 28, 900 }, + [230] = { 24.6, 54.2, 28, 900 }, + [231] = { 22.7, 48.6, 28, 900 }, + [232] = { 20.8, 77.1, 38, 900 }, + [233] = { 58.3, 76.6, 38, 900 }, + [234] = { 33.4, 75, 38, 900 }, + [235] = { 51.6, 70.4, 38, 900 }, + [236] = { 49.1, 70.3, 38, 900 }, + [237] = { 61.1, 59.9, 38, 900 }, + [238] = { 42.6, 55, 38, 900 }, + [239] = { 40, 50.8, 38, 900 }, + [240] = { 67.9, 49.6, 38, 900 }, + [241] = { 29.3, 46.1, 38, 900 }, + [242] = { 67.9, 42.3, 38, 900 }, + [243] = { 36, 32.4, 38, 900 }, + [244] = { 26.8, 30.3, 38, 900 }, + [245] = { 60.7, 27.9, 38, 900 }, + [246] = { 39.6, 23.3, 38, 900 }, + [247] = { 24.5, 14.7, 38, 900 }, + [248] = { 28.7, 14.3, 38, 900 }, + [249] = { 36.8, 72.9, 40, 900 }, + [250] = { 53.2, 68.7, 40, 900 }, + [251] = { 51, 61.4, 40, 900 }, + [252] = { 55.5, 60.6, 40, 900 }, + [253] = { 45.2, 55.6, 40, 900 }, + [254] = { 45.3, 46, 40, 900 }, + [255] = { 59.6, 41.3, 40, 900 }, + [256] = { 30.9, 37.5, 40, 900 }, + [257] = { 35.6, 36.1, 40, 900 }, + [258] = { 59.2, 34.4, 40, 900 }, + [259] = { 35.3, 29.4, 40, 900 }, + [260] = { 46.3, 27.3, 40, 900 }, + [261] = { 56.8, 26.9, 40, 900 }, + [262] = { 53.7, 21, 40, 900 }, + [263] = { 51.3, 17.1, 40, 900 }, + [264] = { 10, 85.7, 44, 900 }, + [265] = { 9.3, 80.9, 44, 900 }, + [266] = { 15.1, 70.6, 44, 900 }, + [267] = { 34.7, 63.5, 44, 900 }, + [268] = { 70.7, 44.6, 44, 900 }, + [269] = { 67.7, 40.4, 44, 900 }, + [270] = { 43.2, 39.2, 44, 900 }, + [271] = { 63, 39.1, 44, 900 }, + [272] = { 81.6, 73.2, 85, 900 }, + [273] = { 76.8, 73.1, 85, 900 }, + [274] = { 52.8, 71.2, 85, 900 }, + [275] = { 50.8, 70, 85, 900 }, + [276] = { 78.3, 68.6, 85, 900 }, + [277] = { 73.8, 67.6, 85, 900 }, + [278] = { 81.3, 67.3, 85, 900 }, + [279] = { 50, 65.9, 85, 900 }, + [280] = { 72, 64.8, 85, 900 }, + [281] = { 50.9, 64.3, 85, 900 }, + [282] = { 49.4, 63.3, 85, 900 }, + [283] = { 55.3, 63.1, 85, 900 }, + [284] = { 79.5, 61.9, 85, 900 }, + [285] = { 45.3, 61.3, 85, 900 }, + [286] = { 57.6, 60.8, 85, 900 }, + [287] = { 51.8, 60.8, 85, 900 }, + [288] = { 53.8, 60.1, 85, 900 }, + [289] = { 73.7, 59.7, 85, 900 }, + [290] = { 69.2, 59.4, 85, 900 }, + [291] = { 42.3, 58.3, 85, 900 }, + [292] = { 57.1, 58.1, 85, 900 }, + [293] = { 20.7, 57.6, 85, 900 }, + [294] = { 43.8, 57.5, 85, 900 }, + [295] = { 60.6, 57.1, 85, 900 }, + [296] = { 65.5, 55.1, 85, 900 }, + [297] = { 46, 54.7, 85, 900 }, + [298] = { 69.2, 54.4, 85, 900 }, + [299] = { 51.5, 54.3, 85, 900 }, + [300] = { 57.4, 54.2, 85, 900 }, + [301] = { 39.5, 53.4, 85, 900 }, + [302] = { 48.4, 51.5, 85, 900 }, + [303] = { 46.1, 51.4, 85, 900 }, + [304] = { 51.6, 50.8, 85, 900 }, + [305] = { 64.9, 50.7, 85, 900 }, + [306] = { 66, 50.6, 85, 900 }, + [307] = { 32.7, 50.6, 85, 900 }, + [308] = { 85.3, 50.4, 85, 900 }, + [309] = { 71.8, 49.4, 85, 900 }, + [310] = { 45.4, 49, 85, 900 }, + [311] = { 38.4, 48.9, 85, 900 }, + [312] = { 47.1, 48.2, 85, 900 }, + [313] = { 36.1, 47.4, 85, 900 }, + [314] = { 72.6, 46.8, 85, 900 }, + [315] = { 76.2, 46.4, 85, 900 }, + [316] = { 53.2, 46.2, 85, 900 }, + [317] = { 62.9, 45.8, 85, 900 }, + [318] = { 19.8, 44.7, 85, 900 }, + [319] = { 37.7, 43.4, 85, 900 }, + [320] = { 84.5, 42.6, 85, 900 }, + [321] = { 64.7, 42, 85, 900 }, + [322] = { 60.9, 41.6, 85, 900 }, + [323] = { 44.3, 40.1, 85, 900 }, + [324] = { 46.8, 39.6, 85, 900 }, + [325] = { 56.9, 38.7, 85, 900 }, + [326] = { 66.6, 38.1, 85, 900 }, + [327] = { 77.2, 38, 85, 900 }, + [328] = { 49.9, 37.3, 85, 900 }, + [329] = { 46.8, 35, 85, 900 }, + [330] = { 65.5, 34.4, 85, 900 }, + [331] = { 72, 34, 85, 900 }, + [332] = { 50.8, 32.1, 85, 900 }, + [333] = { 48.2, 31.7, 85, 900 }, + [334] = { 44.2, 30.8, 85, 900 }, + [335] = { 48.7, 28.3, 85, 900 }, + [336] = { 45.6, 83.3, 130, 900 }, + [337] = { 61.3, 79.5, 130, 900 }, + [338] = { 43.5, 79.1, 130, 900 }, + [339] = { 52.5, 76.3, 130, 900 }, + [340] = { 62.6, 74.4, 130, 900 }, + [341] = { 52, 74.3, 130, 900 }, + [342] = { 49.6, 72.6, 130, 900 }, + [343] = { 54.9, 68.3, 130, 900 }, + [344] = { 59.5, 65.2, 130, 900 }, + [345] = { 55.2, 63.2, 130, 900 }, + [346] = { 51.8, 62.2, 130, 900 }, + [347] = { 51.3, 58.8, 130, 900 }, + [348] = { 53.6, 55.9, 130, 900 }, + [349] = { 65.9, 54, 130, 900 }, + [350] = { 66.5, 48, 130, 900 }, + [351] = { 39.6, 29.8, 130, 900 }, + [352] = { 38.8, 28.2, 130, 900 }, + [353] = { 38.2, 26.2, 130, 900 }, + [354] = { 47.2, 25, 130, 900 }, + [355] = { 56.6, 22.1, 130, 900 }, + [356] = { 42.1, 21.4, 130, 900 }, + [357] = { 52, 20.2, 130, 900 }, + [358] = { 47.4, 20.1, 130, 900 }, + [359] = { 56.7, 18.6, 130, 900 }, + [360] = { 58.7, 16.3, 130, 900 }, + [361] = { 59.9, 15.5, 130, 900 }, + [362] = { 57.8, 14.4, 130, 900 }, + [363] = { 61.6, 13.4, 130, 900 }, + [364] = { 54.7, 13.1, 130, 900 }, + [365] = { 56.3, 12.8, 130, 900 }, + [366] = { 58.2, 11.4, 130, 900 }, + [367] = { 59.9, 9.8, 130, 900 }, + [368] = { 8.9, 17.2, 139, 900 }, + [369] = { 41.2, 79, 141, 900 }, + [370] = { 45.2, 76, 141, 900 }, + [371] = { 52.6, 73.8, 141, 900 }, + [372] = { 56, 72, 141, 900 }, + [373] = { 63.1, 71.6, 141, 900 }, + [374] = { 57.6, 70.6, 141, 900 }, + [375] = { 40.1, 69.2, 141, 900 }, + [376] = { 49.6, 68.1, 141, 900 }, + [377] = { 38.6, 67.1, 141, 900 }, + [378] = { 55.3, 66.8, 141, 900 }, + [379] = { 57.5, 64.9, 141, 900 }, + [380] = { 54.8, 63.6, 141, 900 }, + [381] = { 63.7, 63.6, 141, 900 }, + [382] = { 51, 62.4, 141, 900 }, + [383] = { 53.1, 62.4, 141, 900 }, + [384] = { 67.6, 61.8, 141, 900 }, + [385] = { 61.8, 61.3, 141, 900 }, + [386] = { 60.1, 61.3, 141, 900 }, + [387] = { 63.7, 61.3, 141, 900 }, + [388] = { 40.5, 60.3, 141, 900 }, + [389] = { 67.1, 59.6, 141, 900 }, + [390] = { 51.5, 59.5, 141, 900 }, + [391] = { 69.6, 58.8, 141, 900 }, + [392] = { 61, 58.1, 141, 900 }, + [393] = { 40.1, 55.5, 141, 900 }, + [394] = { 49.3, 55.4, 141, 900 }, + [395] = { 60.9, 55.2, 141, 900 }, + [396] = { 60.6, 53.9, 141, 900 }, + [397] = { 41.6, 53.2, 141, 900 }, + [398] = { 65.5, 51.8, 141, 900 }, + [399] = { 41.1, 48.5, 141, 900 }, + [400] = { 43.8, 45.9, 141, 900 }, + [401] = { 46.5, 45.8, 141, 900 }, + [402] = { 41.8, 44.6, 141, 900 }, + [403] = { 37.9, 43.2, 141, 900 }, + [404] = { 45.9, 43, 141, 900 }, + [405] = { 46, 41.1, 141, 900 }, + [406] = { 37.3, 40.3, 141, 900 }, + [407] = { 44.2, 39.4, 141, 900 }, + [408] = { 45.9, 36.6, 141, 900 }, + [409] = { 36, 35.1, 141, 900 }, + [410] = { 41, 33.4, 141, 900 }, + [411] = { 45, 31.5, 141, 900 }, + [412] = { 44.3, 91.8, 148, 900 }, + [413] = { 43.1, 84, 148, 900 }, + [414] = { 37.7, 82.6, 148, 900 }, + [415] = { 43.4, 79.8, 148, 900 }, + [416] = { 45.2, 55.3, 148, 900 }, + [417] = { 43.5, 54.4, 148, 900 }, + [418] = { 46.5, 49, 148, 900 }, + [419] = { 43.4, 47.4, 148, 900 }, + [420] = { 38.9, 47.3, 148, 900 }, + [421] = { 43.2, 43, 148, 900 }, + [422] = { 47.6, 41.1, 148, 900 }, + [423] = { 41.7, 37, 148, 900 }, + [424] = { 49.8, 30.9, 148, 900 }, + [425] = { 56.7, 24.4, 148, 900 }, + [426] = { 46.3, 23.8, 148, 900 }, + [427] = { 56.2, 20.8, 148, 900 }, + [428] = { 60.8, 15.5, 148, 900 }, + [429] = { 61.1, 12.6, 148, 900 }, + [430] = { 52.5, 68.5, 215, 900 }, + [431] = { 66.1, 68.2, 215, 900 }, + [432] = { 41.4, 66.5, 215, 900 }, + [433] = { 37, 66.4, 215, 900 }, + [434] = { 66.7, 64.6, 215, 900 }, + [435] = { 55.1, 64.5, 215, 900 }, + [436] = { 36.8, 62.6, 215, 900 }, + [437] = { 40.7, 62.5, 215, 900 }, + [438] = { 59.6, 60.5, 215, 900 }, + [439] = { 66.2, 58.6, 215, 900 }, + [440] = { 70.4, 58, 215, 900 }, + [441] = { 62.3, 57.8, 215, 900 }, + [442] = { 36.9, 56.9, 215, 900 }, + [443] = { 59, 55.9, 215, 900 }, + [444] = { 38.9, 51.1, 215, 900 }, + [445] = { 42.2, 50.9, 215, 900 }, + [446] = { 46.7, 49, 215, 900 }, + [447] = { 38.9, 48.5, 215, 900 }, + [448] = { 43.5, 47.2, 215, 900 }, + [449] = { 57.5, 47, 215, 900 }, + [450] = { 57.5, 46.3, 215, 900 }, + [451] = { 36.9, 45.2, 215, 900 }, + [452] = { 53.8, 44.1, 215, 900 }, + [453] = { 56.3, 44, 215, 900 }, + [454] = { 46, 43.2, 215, 900 }, + [455] = { 34.3, 42.2, 215, 900 }, + [456] = { 51.2, 41.2, 215, 900 }, + [457] = { 38.3, 41.1, 215, 900 }, + [458] = { 43.5, 40.5, 215, 900 }, + [459] = { 36.3, 38.7, 215, 900 }, + [460] = { 36.6, 37.7, 215, 900 }, + [461] = { 54.4, 37.1, 215, 900 }, + [462] = { 49.2, 36.3, 215, 900 }, + [463] = { 35, 33.5, 215, 900 }, + [464] = { 51.9, 32.5, 215, 900 }, + [465] = { 46.7, 32.3, 215, 900 }, + [466] = { 51.2, 32.3, 215, 900 }, + [467] = { 44.9, 29.7, 215, 900 }, + [468] = { 55, 29.5, 215, 900 }, + [469] = { 33.6, 29.5, 215, 900 }, + [470] = { 49.4, 28.4, 215, 900 }, + [471] = { 46.6, 27.6, 215, 900 }, + [472] = { 34.3, 25.9, 215, 900 }, + [473] = { 52.5, 25.7, 215, 900 }, + [474] = { 57.7, 25.6, 215, 900 }, + [475] = { 31.7, 25.6, 215, 900 }, + [476] = { 59, 21.3, 215, 900 }, + [477] = { 55.2, 20.8, 215, 900 }, + [478] = { 38.4, 20.6, 215, 900 }, + [479] = { 32.5, 19, 215, 900 }, + [480] = { 51.7, 18.7, 215, 900 }, + [481] = { 45.3, 16.9, 215, 900 }, + [482] = { 53.8, 16.8, 215, 900 }, + [483] = { 37.6, 16.6, 215, 900 }, + [484] = { 48.6, 14.8, 215, 900 }, + [485] = { 38.1, 12.9, 215, 900 }, + [486] = { 52.6, 12.8, 215, 900 }, + [487] = { 38.9, 10.3, 215, 900 }, + [488] = { 52.4, 9.9, 215, 900 }, + [489] = { 48, 9.8, 215, 900 }, + [490] = { 44, 9.3, 215, 900 }, + [491] = { 6, 45, 267, 900 }, + [492] = { 7.7, 38.3, 267, 900 }, + [493] = { 12, 11.5, 267, 900 }, + [494] = { 87.8, 72.4, 405, 900 }, + [495] = { 88.6, 62.4, 405, 900 }, + [496] = { 87, 57.8, 405, 900 }, + [497] = { 87.8, 53.7, 405, 900 }, + [498] = { 84.9, 53.4, 405, 900 }, + [499] = { 85.7, 45.9, 405, 900 }, + [500] = { 23.9, 15.5, 406, 900 }, + [501] = { 22, 11.9, 406, 900 }, + [502] = { 23, 10.3, 406, 900 }, + [503] = { 23.7, 29.1, 1497, 900 }, + [504] = { 14, 15.7, 1581, 900 }, + [505] = { 16.4, 89.7, 2040, 900 }, + [506] = { 46.9, 12.6, 5179, 900 }, + [507] = { 64.9, 8.2, 5179, 900 }, + [508] = { 44.5, 7.7, 5179, 900 }, + [509] = { 54.8, 4.5, 5179, 900 }, + [510] = { 66.4, 2.4, 5179, 900 }, + [511] = { 54.2, 2.3, 5179, 900 }, + [512] = { 51.5, 0.3, 5179, 900 }, + [513] = { 49.4, 77.4, 5225, 900 }, + [514] = { 33.7, 68.3, 5225, 900 }, + [515] = { 56.4, 66.7, 5225, 900 }, + [516] = { 42.5, 65, 5225, 900 }, + [517] = { 51.8, 60, 5225, 900 }, + [518] = { 54.1, 49.8, 5225, 900 }, + [519] = { 34.4, 44.7, 5225, 900 }, + [520] = { 45.6, 44.7, 5225, 900 }, + [521] = { 30.4, 35.5, 5225, 900 }, + [522] = { 31.6, 22.2, 5225, 900 }, + [523] = { 43.7, 81.3, 5536, 900 }, + [524] = { 30.5, 75, 5536, 900 }, + [525] = { 64.2, 73.5, 5536, 900 }, + [526] = { 28.6, 67.7, 5536, 900 }, + [527] = { 66, 64.4, 5536, 900 }, + [528] = { 31.2, 58.6, 5536, 900 }, + [529] = { 44.7, 45.7, 5536, 900 }, + [530] = { 60.9, 45.2, 5536, 900 }, + [531] = { 37.8, 37.5, 5536, 900 }, + [532] = { 66.2, 37.1, 5536, 900 }, + [533] = { 51, 27.1, 5536, 900 }, + [534] = { 68.8, 25.4, 5536, 900 }, + [535] = { 48.9, 20.6, 5536, 900 }, + [536] = { 76.1, 90.4, 5581, 900 }, + [537] = { 9.2, 83.7, 5602, 900 }, + [538] = { 28.4, 83.5, 5602, 900 }, + [539] = { 15.6, 82.7, 5602, 900 }, + [540] = { 25, 80.3, 5602, 900 }, + [541] = { 23.7, 80.2, 5602, 900 }, + [542] = { 29.8, 74.9, 5602, 900 }, + [543] = { 20.3, 72.4, 5602, 900 }, + [544] = { 19, 70.3, 5602, 900 }, + [545] = { 33.3, 69.6, 5602, 900 }, + [546] = { 13.5, 67.8, 5602, 900 }, + [547] = { 33.3, 65.9, 5602, 900 }, + [548] = { 17, 60.8, 5602, 900 }, + [549] = { 12.3, 59.8, 5602, 900 }, + [550] = { 29.6, 58.5, 5602, 900 }, + [551] = { 18.8, 56.1, 5602, 900 }, + [552] = { 11.1, 51.7, 5602, 900 }, + [553] = { 13.2, 51.5, 5602, 900 }, + }, + }, + [1619] = { + ["coords"] = { + [1] = { 49.2, 63.9, 1, 900 }, + [2] = { 59, 63, 1, 900 }, + [3] = { 39.4, 62.5, 1, 900 }, + [4] = { 47.1, 62, 1, 900 }, + [5] = { 37, 61.6, 1, 900 }, + [6] = { 34.1, 59.9, 1, 900 }, + [7] = { 47.7, 59.5, 1, 900 }, + [8] = { 70.7, 59.3, 1, 900 }, + [9] = { 44.8, 59.2, 1, 900 }, + [10] = { 57.9, 58.7, 1, 900 }, + [11] = { 67.3, 58.1, 1, 900 }, + [12] = { 68.3, 57.8, 1, 900 }, + [13] = { 49.6, 57.7, 1, 900 }, + [14] = { 58, 57.5, 1, 900 }, + [15] = { 35.5, 57.5, 1, 900 }, + [16] = { 62.7, 57.4, 1, 900 }, + [17] = { 71.1, 57.2, 1, 900 }, + [18] = { 63.9, 56.3, 1, 900 }, + [19] = { 48.7, 56.1, 1, 900 }, + [20] = { 70.5, 54.9, 1, 900 }, + [21] = { 65.3, 54.9, 1, 900 }, + [22] = { 59.1, 54.9, 1, 900 }, + [23] = { 49.4, 53.5, 1, 900 }, + [24] = { 72.9, 53.4, 1, 900 }, + [25] = { 60.7, 53.4, 1, 900 }, + [26] = { 61.6, 53.1, 1, 900 }, + [27] = { 65.2, 52.7, 1, 900 }, + [28] = { 74.5, 52.1, 1, 900 }, + [29] = { 67.1, 50.1, 1, 900 }, + [30] = { 73.4, 48.4, 1, 900 }, + [31] = { 76.1, 47.8, 1, 900 }, + [32] = { 84.4, 81.2, 12, 900 }, + [33] = { 51.5, 81.2, 12, 900 }, + [34] = { 85.8, 80.6, 12, 900 }, + [35] = { 82.9, 79.8, 12, 900 }, + [36] = { 84.9, 77.6, 12, 900 }, + [37] = { 50.6, 74, 12, 900 }, + [38] = { 65.2, 72.1, 12, 900 }, + [39] = { 66.2, 70.8, 12, 900 }, + [40] = { 67.5, 69.2, 12, 900 }, + [41] = { 25.2, 66.9, 12, 900 }, + [42] = { 88.5, 62.1, 12, 900 }, + [43] = { 85.1, 58.7, 12, 900 }, + [44] = { 52.5, 57.6, 12, 900 }, + [45] = { 55.3, 56.9, 12, 900 }, + [46] = { 58.7, 56.3, 12, 900 }, + [47] = { 30.8, 55.7, 12, 900 }, + [48] = { 50.7, 54.9, 12, 900 }, + [49] = { 73.6, 54.7, 12, 900 }, + [50] = { 37.8, 50.6, 12, 900 }, + [51] = { 48.1, 50.3, 12, 900 }, + [52] = { 40.2, 47.9, 12, 900 }, + [53] = { 78.3, 38.6, 12, 900 }, + [54] = { 51.2, 72.8, 14, 900 }, + [55] = { 54.1, 70.5, 14, 900 }, + [56] = { 54.8, 60.3, 14, 900 }, + [57] = { 54.4, 57.9, 14, 900 }, + [58] = { 51.7, 54.6, 14, 900 }, + [59] = { 60.2, 54, 14, 900 }, + [60] = { 53.7, 53.4, 14, 900 }, + [61] = { 38.2, 50.2, 14, 900 }, + [62] = { 40.2, 49.8, 14, 900 }, + [63] = { 49.6, 47.3, 14, 900 }, + [64] = { 57.8, 45, 14, 900 }, + [65] = { 60.1, 41.6, 14, 900 }, + [66] = { 42.4, 40, 14, 900 }, + [67] = { 37.7, 39, 14, 900 }, + [68] = { 48.4, 38.3, 14, 900 }, + [69] = { 37.2, 36.7, 14, 900 }, + [70] = { 40.2, 32.6, 14, 900 }, + [71] = { 53.8, 32.5, 14, 900 }, + [72] = { 33.5, 31.1, 14, 900 }, + [73] = { 47.7, 30, 14, 900 }, + [74] = { 36.1, 29.6, 14, 900 }, + [75] = { 33.6, 28, 14, 900 }, + [76] = { 45, 28, 14, 900 }, + [77] = { 33.5, 26.8, 14, 900 }, + [78] = { 33.8, 26, 14, 900 }, + [79] = { 39.2, 25.4, 14, 900 }, + [80] = { 39.6, 24.1, 14, 900 }, + [81] = { 44.9, 20.1, 14, 900 }, + [82] = { 48, 19.6, 14, 900 }, + [83] = { 55.6, 19, 14, 900 }, + [84] = { 41, 18.7, 14, 900 }, + [85] = { 41, 16.3, 14, 900 }, + [86] = { 51.5, 15.6, 14, 900 }, + [87] = { 56.1, 14, 14, 900 }, + [88] = { 43.2, 78.2, 17, 900 }, + [89] = { 40.2, 62.9, 17, 900 }, + [90] = { 43, 61.6, 17, 900 }, + [91] = { 40.6, 57.7, 17, 900 }, + [92] = { 42.6, 56, 17, 900 }, + [93] = { 36.6, 54.3, 17, 900 }, + [94] = { 36.3, 51.5, 17, 900 }, + [95] = { 44.4, 51.5, 17, 900 }, + [96] = { 45.3, 50.7, 17, 900 }, + [97] = { 35.8, 50.5, 17, 900 }, + [98] = { 62.3, 49.8, 17, 900 }, + [99] = { 64.2, 49.4, 17, 900 }, + [100] = { 64, 49.4, 17, 900 }, + [101] = { 64.4, 49.4, 17, 900 }, + [102] = { 63.2, 49.3, 17, 900 }, + [103] = { 63.4, 48.8, 17, 900 }, + [104] = { 64.6, 48.8, 17, 900 }, + [105] = { 63.9, 48.6, 17, 900 }, + [106] = { 64.3, 48.5, 17, 900 }, + [107] = { 63.6, 48.2, 17, 900 }, + [108] = { 64.3, 48.2, 17, 900 }, + [109] = { 64.4, 48.1, 17, 900 }, + [110] = { 64.9, 48, 17, 900 }, + [111] = { 64.7, 47.8, 17, 900 }, + [112] = { 63.8, 47.7, 17, 900 }, + [113] = { 63.6, 47.5, 17, 900 }, + [114] = { 63.3, 47.2, 17, 900 }, + [115] = { 64.6, 47.1, 17, 900 }, + [116] = { 64, 46.7, 17, 900 }, + [117] = { 63.8, 46.5, 17, 900 }, + [118] = { 64.1, 46.1, 17, 900 }, + [119] = { 60.1, 45.5, 17, 900 }, + [120] = { 59.8, 45.3, 17, 900 }, + [121] = { 64.1, 45.1, 17, 900 }, + [122] = { 60.4, 45.1, 17, 900 }, + [123] = { 60.2, 45.1, 17, 900 }, + [124] = { 59.9, 45, 17, 900 }, + [125] = { 64.2, 45, 17, 900 }, + [126] = { 59.7, 44.9, 17, 900 }, + [127] = { 60.2, 44.9, 17, 900 }, + [128] = { 59.9, 44.8, 17, 900 }, + [129] = { 64.3, 44.6, 17, 900 }, + [130] = { 63.7, 44.6, 17, 900 }, + [131] = { 64.7, 44.6, 17, 900 }, + [132] = { 35, 44.4, 17, 900 }, + [133] = { 64.3, 44.3, 17, 900 }, + [134] = { 64.6, 44.3, 17, 900 }, + [135] = { 64.9, 44.1, 17, 900 }, + [136] = { 63.5, 43.9, 17, 900 }, + [137] = { 64.7, 43.8, 17, 900 }, + [138] = { 64.3, 43.5, 17, 900 }, + [139] = { 64.1, 43.3, 17, 900 }, + [140] = { 61.7, 42.7, 17, 900 }, + [141] = { 61.7, 42.5, 17, 900 }, + [142] = { 61.6, 42.3, 17, 900 }, + [143] = { 61.8, 42.3, 17, 900 }, + [144] = { 61.4, 41.9, 17, 900 }, + [145] = { 61.7, 41.9, 17, 900 }, + [146] = { 61.6, 41.8, 17, 900 }, + [147] = { 61.8, 41.7, 17, 900 }, + [148] = { 60.9, 41.5, 17, 900 }, + [149] = { 60.9, 41.3, 17, 900 }, + [150] = { 42.8, 41.2, 17, 900 }, + [151] = { 36.4, 38.6, 17, 900 }, + [152] = { 42.8, 38.3, 17, 900 }, + [153] = { 43, 37.1, 17, 900 }, + [154] = { 34.5, 36.8, 17, 900 }, + [155] = { 33.7, 36.3, 17, 900 }, + [156] = { 37.9, 34.7, 17, 900 }, + [157] = { 42.8, 34.7, 17, 900 }, + [158] = { 42.6, 34.6, 17, 900 }, + [159] = { 43, 34.3, 17, 900 }, + [160] = { 43.1, 34.1, 17, 900 }, + [161] = { 33.3, 32.9, 17, 900 }, + [162] = { 40.7, 32.1, 17, 900 }, + [163] = { 32.6, 31.9, 17, 900 }, + [164] = { 40.8, 30.5, 17, 900 }, + [165] = { 40.8, 30.3, 17, 900 }, + [166] = { 40.9, 30.2, 17, 900 }, + [167] = { 40.4, 30.1, 17, 900 }, + [168] = { 61.5, 28.1, 17, 900 }, + [169] = { 40.6, 27.4, 17, 900 }, + [170] = { 61.2, 26.6, 17, 900 }, + [171] = { 36.9, 26.1, 17, 900 }, + [172] = { 40.1, 25.4, 17, 900 }, + [173] = { 42.8, 24.4, 17, 900 }, + [174] = { 43.7, 24.2, 17, 900 }, + [175] = { 44, 24.1, 17, 900 }, + [176] = { 44, 23.8, 17, 900 }, + [177] = { 39.6, 23.6, 17, 900 }, + [178] = { 39.3, 23.3, 17, 900 }, + [179] = { 39.6, 23.3, 17, 900 }, + [180] = { 43.2, 23.3, 17, 900 }, + [181] = { 39.5, 23, 17, 900 }, + [182] = { 40.4, 22.8, 17, 900 }, + [183] = { 40.7, 22.8, 17, 900 }, + [184] = { 40.8, 22.1, 17, 900 }, + [185] = { 40.1, 22, 17, 900 }, + [186] = { 40.8, 21.9, 17, 900 }, + [187] = { 50.3, 21.8, 17, 900 }, + [188] = { 40.4, 21.8, 17, 900 }, + [189] = { 61.3, 21.4, 17, 900 }, + [190] = { 44.7, 20.8, 17, 900 }, + [191] = { 58.9, 20.7, 17, 900 }, + [192] = { 59, 20.5, 17, 900 }, + [193] = { 59.5, 20, 17, 900 }, + [194] = { 60.5, 19.6, 17, 900 }, + [195] = { 60.4, 19.6, 17, 900 }, + [196] = { 59.6, 19.5, 17, 900 }, + [197] = { 60.7, 19.4, 17, 900 }, + [198] = { 59.8, 19.3, 17, 900 }, + [199] = { 41.7, 19.3, 17, 900 }, + [200] = { 60.5, 19.2, 17, 900 }, + [201] = { 60.9, 19.1, 17, 900 }, + [202] = { 41.8, 19, 17, 900 }, + [203] = { 42, 18.8, 17, 900 }, + [204] = { 41.6, 18.7, 17, 900 }, + [205] = { 60.9, 18.6, 17, 900 }, + [206] = { 41.7, 18.4, 17, 900 }, + [207] = { 60.8, 18.3, 17, 900 }, + [208] = { 61.1, 18.3, 17, 900 }, + [209] = { 61.2, 18.1, 17, 900 }, + [210] = { 60.8, 18, 17, 900 }, + [211] = { 41.1, 18, 17, 900 }, + [212] = { 61.2, 17.7, 17, 900 }, + [213] = { 61.5, 17.6, 17, 900 }, + [214] = { 60.9, 17.5, 17, 900 }, + [215] = { 61.4, 17.1, 17, 900 }, + [216] = { 61.1, 16.8, 17, 900 }, + [217] = { 61, 16.7, 17, 900 }, + [218] = { 61.9, 16.7, 17, 900 }, + [219] = { 61.5, 16.6, 17, 900 }, + [220] = { 61.8, 16.5, 17, 900 }, + [221] = { 62.1, 14.9, 17, 900 }, + [222] = { 62, 14.1, 17, 900 }, + [223] = { 62.7, 13.4, 17, 900 }, + [224] = { 64.1, 12.5, 17, 900 }, + [225] = { 62.3, 12.1, 17, 900 }, + [226] = { 61.8, 11.9, 17, 900 }, + [227] = { 62.8, 11.7, 17, 900 }, + [228] = { 62.1, 11.6, 17, 900 }, + [229] = { 62.7, 11.1, 17, 900 }, + [230] = { 62.9, 10.7, 17, 900 }, + [231] = { 61.9, 10.5, 17, 900 }, + [232] = { 62.3, 9.9, 17, 900 }, + [233] = { 62, 9.6, 17, 900 }, + [234] = { 63, 9.3, 17, 900 }, + [235] = { 62.6, 9, 17, 900 }, + [236] = { 62.3, 9, 17, 900 }, + [237] = { 26.9, 56, 28, 900 }, + [238] = { 25.6, 51.4, 28, 900 }, + [239] = { 24.2, 48.9, 28, 900 }, + [240] = { 27.8, 21.4, 28, 900 }, + [241] = { 36.4, 77.9, 38, 900 }, + [242] = { 39.5, 66.7, 38, 900 }, + [243] = { 40.2, 61.1, 38, 900 }, + [244] = { 27.2, 60.4, 38, 900 }, + [245] = { 32.7, 59, 38, 900 }, + [246] = { 37.6, 56.2, 38, 900 }, + [247] = { 25.1, 48.5, 38, 900 }, + [248] = { 24.7, 38.6, 38, 900 }, + [249] = { 27.6, 61.2, 40, 900 }, + [250] = { 28.1, 43.7, 40, 900 }, + [251] = { 32.4, 40.9, 40, 900 }, + [252] = { 39.9, 38.9, 40, 900 }, + [253] = { 30.5, 38.9, 40, 900 }, + [254] = { 39.4, 38.6, 40, 900 }, + [255] = { 39.1, 38.6, 40, 900 }, + [256] = { 37.9, 37.9, 40, 900 }, + [257] = { 38.9, 37.8, 40, 900 }, + [258] = { 30.5, 36.3, 40, 900 }, + [259] = { 40.4, 35.1, 40, 900 }, + [260] = { 41, 34.2, 40, 900 }, + [261] = { 44.5, 34.2, 40, 900 }, + [262] = { 41.7, 33.9, 40, 900 }, + [263] = { 42, 33.8, 40, 900 }, + [264] = { 42.2, 32.9, 40, 900 }, + [265] = { 41.8, 32.7, 40, 900 }, + [266] = { 28.3, 32.1, 40, 900 }, + [267] = { 46.4, 31.4, 40, 900 }, + [268] = { 46.1, 28.9, 40, 900 }, + [269] = { 45.5, 27.2, 40, 900 }, + [270] = { 40.9, 16.2, 40, 900 }, + [271] = { 53.2, 12.5, 40, 900 }, + [272] = { 57.9, 10.5, 40, 900 }, + [273] = { 48.5, 81.2, 44, 900 }, + [274] = { 60.8, 79.6, 44, 900 }, + [275] = { 40.4, 79, 44, 900 }, + [276] = { 20.7, 74.6, 44, 900 }, + [277] = { 27, 71.8, 44, 900 }, + [278] = { 52.8, 71.6, 44, 900 }, + [279] = { 78.8, 67.5, 44, 900 }, + [280] = { 25, 64.2, 44, 900 }, + [281] = { 86.2, 62.1, 44, 900 }, + [282] = { 15.4, 59.1, 44, 900 }, + [283] = { 71.4, 59, 44, 900 }, + [284] = { 14.6, 53.2, 44, 900 }, + [285] = { 69.1, 52.5, 44, 900 }, + [286] = { 57.3, 49, 44, 900 }, + [287] = { 69.2, 48.6, 44, 900 }, + [288] = { 76.8, 42.5, 44, 900 }, + [289] = { 82, 36.4, 44, 900 }, + [290] = { 74.4, 36.1, 44, 900 }, + [291] = { 50.9, 32.9, 44, 900 }, + [292] = { 19, 32.7, 44, 900 }, + [293] = { 24.6, 32.3, 44, 900 }, + [294] = { 48.2, 14.1, 44, 900 }, + [295] = { 34.9, 9.6, 44, 900 }, + [296] = { 70.4, 86.2, 46, 900 }, + [297] = { 83.5, 68.9, 85, 900 }, + [298] = { 48.3, 67.4, 85, 900 }, + [299] = { 71.5, 65.8, 85, 900 }, + [300] = { 43.8, 65.7, 85, 900 }, + [301] = { 21.6, 65.7, 85, 900 }, + [302] = { 82.2, 64.6, 85, 900 }, + [303] = { 81, 62.2, 85, 900 }, + [304] = { 11.3, 61.1, 85, 900 }, + [305] = { 66.6, 59.1, 85, 900 }, + [306] = { 81.8, 57, 85, 900 }, + [307] = { 74.9, 56.5, 85, 900 }, + [308] = { 22.7, 51.9, 85, 900 }, + [309] = { 62.5, 50, 85, 900 }, + [310] = { 75.4, 47, 85, 900 }, + [311] = { 51.7, 45.6, 85, 900 }, + [312] = { 59.8, 45.4, 85, 900 }, + [313] = { 48.5, 44.3, 85, 900 }, + [314] = { 79.1, 44.1, 85, 900 }, + [315] = { 51.2, 43.5, 85, 900 }, + [316] = { 78.9, 41.4, 85, 900 }, + [317] = { 74, 40.5, 85, 900 }, + [318] = { 54.7, 40.2, 85, 900 }, + [319] = { 37.4, 39.3, 85, 900 }, + [320] = { 39, 36.9, 85, 900 }, + [321] = { 84.3, 36, 85, 900 }, + [322] = { 56, 34.9, 85, 900 }, + [323] = { 76.1, 34.6, 85, 900 }, + [324] = { 50.8, 33.4, 85, 900 }, + [325] = { 42.4, 31.9, 85, 900 }, + [326] = { 75.9, 31.9, 85, 900 }, + [327] = { 82.5, 31.6, 85, 900 }, + [328] = { 74.4, 31.2, 85, 900 }, + [329] = { 55.3, 31, 85, 900 }, + [330] = { 57.4, 30.6, 85, 900 }, + [331] = { 63.1, 28.2, 85, 900 }, + [332] = { 57.4, 28.1, 85, 900 }, + [333] = { 47.5, 27.5, 85, 900 }, + [334] = { 53.3, 84.9, 130, 900 }, + [335] = { 64.3, 80.7, 130, 900 }, + [336] = { 63.4, 56, 130, 900 }, + [337] = { 64.6, 53.3, 130, 900 }, + [338] = { 51.4, 49.7, 130, 900 }, + [339] = { 54, 48.4, 130, 900 }, + [340] = { 65.2, 46.8, 130, 900 }, + [341] = { 54.7, 46, 130, 900 }, + [342] = { 50.2, 45, 130, 900 }, + [343] = { 49.8, 43, 130, 900 }, + [344] = { 46.1, 32.5, 130, 900 }, + [345] = { 46, 30.3, 130, 900 }, + [346] = { 50.6, 30, 130, 900 }, + [347] = { 52.2, 30, 130, 900 }, + [348] = { 54.2, 27.7, 130, 900 }, + [349] = { 47.3, 27.1, 130, 900 }, + [350] = { 19.7, 8.5, 139, 900 }, + [351] = { 40.8, 80, 141, 900 }, + [352] = { 38.3, 79.4, 141, 900 }, + [353] = { 44.9, 75.3, 141, 900 }, + [354] = { 58.8, 74.3, 141, 900 }, + [355] = { 50.3, 73.8, 141, 900 }, + [356] = { 51.7, 73, 141, 900 }, + [357] = { 39.7, 71.1, 141, 900 }, + [358] = { 38.7, 69, 141, 900 }, + [359] = { 51.1, 67.1, 141, 900 }, + [360] = { 37.1, 66, 141, 900 }, + [361] = { 40.4, 63.3, 141, 900 }, + [362] = { 49, 62.7, 141, 900 }, + [363] = { 39.8, 59.4, 141, 900 }, + [364] = { 47.9, 56.4, 141, 900 }, + [365] = { 41.1, 56.3, 141, 900 }, + [366] = { 45.1, 55.5, 141, 900 }, + [367] = { 45.1, 53.7, 141, 900 }, + [368] = { 44.3, 48.6, 141, 900 }, + [369] = { 48.1, 45.1, 141, 900 }, + [370] = { 36.3, 42.3, 141, 900 }, + [371] = { 47, 41.3, 141, 900 }, + [372] = { 44.7, 39.3, 141, 900 }, + [373] = { 39.9, 35.9, 141, 900 }, + [374] = { 34.7, 35.8, 141, 900 }, + [375] = { 47.8, 33.4, 141, 900 }, + [376] = { 41.4, 30.6, 141, 900 }, + [377] = { 35.1, 90.8, 148, 900 }, + [378] = { 32.4, 90, 148, 900 }, + [379] = { 38.4, 88.9, 148, 900 }, + [380] = { 44.4, 88.2, 148, 900 }, + [381] = { 34.1, 85.9, 148, 900 }, + [382] = { 43.6, 85.2, 148, 900 }, + [383] = { 32.9, 83.7, 148, 900 }, + [384] = { 39.2, 80.8, 148, 900 }, + [385] = { 39.5, 72.3, 148, 900 }, + [386] = { 42.6, 71.9, 148, 900 }, + [387] = { 42.1, 67.9, 148, 900 }, + [388] = { 43.1, 66.9, 148, 900 }, + [389] = { 44.4, 62.9, 148, 900 }, + [390] = { 47, 52.6, 148, 900 }, + [391] = { 47.3, 48.8, 148, 900 }, + [392] = { 42.7, 46.4, 148, 900 }, + [393] = { 41.4, 39.5, 148, 900 }, + [394] = { 41.5, 35.5, 148, 900 }, + [395] = { 59.6, 27.2, 148, 900 }, + [396] = { 61.6, 21.2, 148, 900 }, + [397] = { 55.8, 74.7, 215, 900 }, + [398] = { 54.1, 74.3, 215, 900 }, + [399] = { 52.8, 74.1, 215, 900 }, + [400] = { 52, 71.6, 215, 900 }, + [401] = { 66.3, 71, 215, 900 }, + [402] = { 34.8, 69.7, 215, 900 }, + [403] = { 68.1, 68.9, 215, 900 }, + [404] = { 35.3, 60.8, 215, 900 }, + [405] = { 69, 58.8, 215, 900 }, + [406] = { 34.5, 57.3, 215, 900 }, + [407] = { 34.9, 54.6, 215, 900 }, + [408] = { 61, 52.1, 215, 900 }, + [409] = { 32.5, 48.6, 215, 900 }, + [410] = { 33.4, 47.1, 215, 900 }, + [411] = { 60.4, 46.6, 215, 900 }, + [412] = { 59.5, 44.5, 215, 900 }, + [413] = { 57.6, 43.2, 215, 900 }, + [414] = { 34, 35.3, 215, 900 }, + [415] = { 57.9, 32.5, 215, 900 }, + [416] = { 60.6, 21.2, 215, 900 }, + [417] = { 56.8, 17.5, 215, 900 }, + [418] = { 55.2, 16.5, 215, 900 }, + [419] = { 63.5, 13.5, 215, 900 }, + [420] = { 36.3, 12.3, 215, 900 }, + [421] = { 54.5, 9.8, 215, 900 }, + [422] = { 53, 7.9, 215, 900 }, + [423] = { 38.3, 7.7, 215, 900 }, + [424] = { 10, 46.5, 267, 900 }, + [425] = { 30.9, 28.6, 361, 900 }, + [426] = { 86.7, 78, 405, 900 }, + [427] = { 87.5, 64.5, 405, 900 }, + [428] = { 76.9, 99.4, 406, 900 }, + [429] = { 64.3, 99.2, 406, 900 }, + [430] = { 84.1, 89.7, 406, 900 }, + [431] = { 85, 56.4, 718, 604800 }, + [432] = { 95.3, 43.7, 718, 604800 }, + [433] = { 70.4, 37.8, 718, 604800 }, + [434] = { 34.2, 34.1, 718, 604800 }, + [435] = { 81.8, 28.5, 718, 604800 }, + [436] = { 23.3, 21.3, 718, 604800 }, + [437] = { 16.7, 45.9, 796, 900 }, + [438] = { 95.9, 91.6, 1657, 900 }, + [439] = { 3, 89.7, 2040, 900 }, + [440] = { 24.7, 86.6, 2040, 900 }, + [441] = { 55.7, 14.4, 5179, 900 }, + [442] = { 68.3, 9.6, 5179, 900 }, + [443] = { 30.3, 83.5, 5225, 900 }, + [444] = { 27.1, 75.2, 5225, 900 }, + [445] = { 35.1, 73.4, 5225, 900 }, + [446] = { 63.1, 66.6, 5225, 900 }, + [447] = { 28, 56.8, 5225, 900 }, + [448] = { 39.2, 44.7, 5225, 900 }, + [449] = { 49.5, 43.2, 5225, 900 }, + [450] = { 37.2, 33.6, 5225, 900 }, + [451] = { 27.3, 21.9, 5225, 900 }, + [452] = { 56.5, 76.2, 5536, 900 }, + [453] = { 58.8, 75, 5536, 900 }, + [454] = { 61, 55.3, 5536, 900 }, + [455] = { 47, 53.2, 5536, 900 }, + [456] = { 42.3, 51.2, 5536, 900 }, + [457] = { 72.9, 47.8, 5536, 900 }, + [458] = { 54.2, 20.2, 5536, 900 }, + [459] = { 65.5, 17.5, 5536, 900 }, + [460] = { 17.2, 84.2, 5602, 900 }, + [461] = { 18.8, 78.4, 5602, 900 }, + [462] = { 19.1, 75.5, 5602, 900 }, + [463] = { 12.5, 75.2, 5602, 900 }, + [464] = { 15.3, 74.5, 5602, 900 }, + [465] = { 17.8, 73, 5602, 900 }, + [466] = { 11.4, 69.1, 5602, 900 }, + [467] = { 11.2, 64, 5602, 900 }, + }, + }, + [1620] = { + ["coords"] = { + [1] = { 65, 76.4, 10, 900 }, + [2] = { 47.8, 76.1, 10, 900 }, + [3] = { 52.1, 75.9, 10, 900 }, + [4] = { 72.2, 74, 10, 900 }, + [5] = { 40.1, 73.6, 10, 900 }, + [6] = { 49.4, 73, 10, 900 }, + [7] = { 33.8, 72.2, 10, 900 }, + [8] = { 13, 70.6, 10, 900 }, + [9] = { 50.1, 70.6, 10, 900 }, + [10] = { 82.1, 60.7, 10, 900 }, + [11] = { 59.5, 59, 10, 900 }, + [12] = { 9.2, 45.4, 10, 900 }, + [13] = { 55.3, 75.6, 11, 900 }, + [14] = { 67.5, 71.7, 11, 900 }, + [15] = { 55.3, 66.8, 11, 900 }, + [16] = { 62, 66.5, 11, 900 }, + [17] = { 62.6, 66.2, 11, 900 }, + [18] = { 56.3, 64.2, 11, 900 }, + [19] = { 66.1, 64.2, 11, 900 }, + [20] = { 55.4, 61.7, 11, 900 }, + [21] = { 59.3, 53.2, 11, 900 }, + [22] = { 35.1, 51.7, 11, 900 }, + [23] = { 36.1, 48.2, 11, 900 }, + [24] = { 34, 44.1, 11, 900 }, + [25] = { 69.9, 43.5, 11, 900 }, + [26] = { 55.3, 42.4, 11, 900 }, + [27] = { 66.2, 41.1, 11, 900 }, + [28] = { 18.5, 40.5, 11, 900 }, + [29] = { 52.1, 36, 11, 900 }, + [30] = { 24.8, 33.6, 11, 900 }, + [31] = { 53, 33.3, 11, 900 }, + [32] = { 55.4, 29.6, 11, 900 }, + [33] = { 23, 27.9, 11, 900 }, + [34] = { 53.6, 26.8, 11, 900 }, + [35] = { 60.9, 25.2, 11, 900 }, + [36] = { 32.3, 15.5, 11, 900 }, + [37] = { 95.2, 74.8, 12, 900 }, + [38] = { 38.4, 55.8, 14, 900 }, + [39] = { 44.2, 49.6, 14, 900 }, + [40] = { 44.3, 49.5, 14, 900 }, + [41] = { 33.7, 35.4, 14, 900 }, + [42] = { 33.6, 34.1, 14, 900 }, + [43] = { 48.5, 34.1, 14, 900 }, + [44] = { 33.7, 33.5, 14, 900 }, + [45] = { 58.1, 29.6, 14, 900 }, + [46] = { 33.6, 28.9, 14, 900 }, + [47] = { 40.4, 28.2, 14, 900 }, + [48] = { 42.5, 26.7, 14, 900 }, + [49] = { 50.6, 26.5, 14, 900 }, + [50] = { 33.8, 26.2, 14, 900 }, + [51] = { 43.2, 24, 14, 900 }, + [52] = { 51.9, 23.8, 14, 900 }, + [53] = { 54.1, 22.9, 14, 900 }, + [54] = { 51.5, 19.2, 14, 900 }, + [55] = { 57.9, 17, 14, 900 }, + [56] = { 44.3, 90.7, 17, 900 }, + [57] = { 44.2, 90.1, 17, 900 }, + [58] = { 46, 85.6, 17, 900 }, + [59] = { 46.6, 83.7, 17, 900 }, + [60] = { 44, 83.6, 17, 900 }, + [61] = { 46, 83.6, 17, 900 }, + [62] = { 43.1, 82.5, 17, 900 }, + [63] = { 47.4, 81.8, 17, 900 }, + [64] = { 48.5, 81.3, 17, 900 }, + [65] = { 48.5, 80.4, 17, 900 }, + [66] = { 48, 78.5, 17, 900 }, + [67] = { 41.5, 78.4, 17, 900 }, + [68] = { 46.5, 77.9, 17, 900 }, + [69] = { 43.7, 76.6, 17, 900 }, + [70] = { 43.9, 76.1, 17, 900 }, + [71] = { 48.8, 75.2, 17, 900 }, + [72] = { 47.7, 73.9, 17, 900 }, + [73] = { 43.9, 72.9, 17, 900 }, + [74] = { 42.9, 72.5, 17, 900 }, + [75] = { 46.8, 72.5, 17, 900 }, + [76] = { 42.7, 72.4, 17, 900 }, + [77] = { 43.6, 72.4, 17, 900 }, + [78] = { 48, 71.3, 17, 900 }, + [79] = { 43.5, 70, 17, 900 }, + [80] = { 44.4, 69.8, 17, 900 }, + [81] = { 43.3, 69.4, 17, 900 }, + [82] = { 43.8, 69.2, 17, 900 }, + [83] = { 45.6, 68.5, 17, 900 }, + [84] = { 45.2, 67.2, 17, 900 }, + [85] = { 45.2, 66, 17, 900 }, + [86] = { 47.5, 65.8, 17, 900 }, + [87] = { 47, 65.7, 17, 900 }, + [88] = { 44.9, 65.4, 17, 900 }, + [89] = { 46.7, 65.4, 17, 900 }, + [90] = { 46.6, 65, 17, 900 }, + [91] = { 46.7, 64.9, 17, 900 }, + [92] = { 45.1, 64.2, 17, 900 }, + [93] = { 45.8, 63.9, 17, 900 }, + [94] = { 44, 63.6, 17, 900 }, + [95] = { 45.3, 63.5, 17, 900 }, + [96] = { 46.6, 63.3, 17, 900 }, + [97] = { 48.5, 63, 17, 900 }, + [98] = { 44.1, 62.5, 17, 900 }, + [99] = { 43.7, 61.8, 17, 900 }, + [100] = { 44.1, 61.7, 17, 900 }, + [101] = { 45.2, 61.6, 17, 900 }, + [102] = { 44.2, 61.1, 17, 900 }, + [103] = { 42.8, 60.1, 17, 900 }, + [104] = { 43.1, 57.5, 17, 900 }, + [105] = { 49.8, 56.7, 17, 900 }, + [106] = { 46.1, 56.7, 17, 900 }, + [107] = { 51.7, 56.6, 17, 900 }, + [108] = { 49.7, 56.6, 17, 900 }, + [109] = { 44.2, 56.2, 17, 900 }, + [110] = { 42.9, 55.5, 17, 900 }, + [111] = { 50.7, 54.7, 17, 900 }, + [112] = { 51.6, 54.6, 17, 900 }, + [113] = { 51.2, 54.2, 17, 900 }, + [114] = { 52.7, 54.2, 17, 900 }, + [115] = { 51.7, 54.2, 17, 900 }, + [116] = { 50.4, 53.7, 17, 900 }, + [117] = { 52.1, 53.6, 17, 900 }, + [118] = { 59.8, 53.3, 17, 900 }, + [119] = { 51.7, 53.1, 17, 900 }, + [120] = { 44.8, 52.8, 17, 900 }, + [121] = { 42.6, 51, 17, 900 }, + [122] = { 52.9, 50.9, 17, 900 }, + [123] = { 52.4, 50.8, 17, 900 }, + [124] = { 53.6, 50.6, 17, 900 }, + [125] = { 53.5, 50, 17, 900 }, + [126] = { 51.4, 49.9, 17, 900 }, + [127] = { 46.1, 49.8, 17, 900 }, + [128] = { 52.9, 49.7, 17, 900 }, + [129] = { 52, 49.6, 17, 900 }, + [130] = { 52.5, 49.4, 17, 900 }, + [131] = { 54.3, 49.3, 17, 900 }, + [132] = { 52.1, 49.1, 17, 900 }, + [133] = { 51.7, 49, 17, 900 }, + [134] = { 44.6, 48.8, 17, 900 }, + [135] = { 53.4, 48.4, 17, 900 }, + [136] = { 56.3, 47.8, 17, 900 }, + [137] = { 54.5, 47.2, 17, 900 }, + [138] = { 56.5, 47, 17, 900 }, + [139] = { 55.4, 46.7, 17, 900 }, + [140] = { 55.9, 46.6, 17, 900 }, + [141] = { 53.7, 46, 17, 900 }, + [142] = { 46.4, 45.9, 17, 900 }, + [143] = { 47.5, 45.3, 17, 900 }, + [144] = { 53.3, 44.2, 17, 900 }, + [145] = { 55.5, 44.1, 17, 900 }, + [146] = { 55.8, 44, 17, 900 }, + [147] = { 47.6, 43.9, 17, 900 }, + [148] = { 53.9, 43.8, 17, 900 }, + [149] = { 53.4, 43.8, 17, 900 }, + [150] = { 55.7, 43.6, 17, 900 }, + [151] = { 55.5, 43.6, 17, 900 }, + [152] = { 48.3, 43.5, 17, 900 }, + [153] = { 55.2, 43.5, 17, 900 }, + [154] = { 48.5, 43.1, 17, 900 }, + [155] = { 53, 42.8, 17, 900 }, + [156] = { 48.7, 42.7, 17, 900 }, + [157] = { 46, 41.9, 17, 900 }, + [158] = { 47.5, 41.5, 17, 900 }, + [159] = { 45.9, 41.4, 17, 900 }, + [160] = { 47.9, 41.2, 17, 900 }, + [161] = { 46.8, 41, 17, 900 }, + [162] = { 49.1, 40.9, 17, 900 }, + [163] = { 44.7, 40.9, 17, 900 }, + [164] = { 46.6, 40.9, 17, 900 }, + [165] = { 46.7, 40.8, 17, 900 }, + [166] = { 46, 40.8, 17, 900 }, + [167] = { 48, 40.7, 17, 900 }, + [168] = { 44.4, 40.7, 17, 900 }, + [169] = { 46.6, 40.6, 17, 900 }, + [170] = { 46.2, 40.6, 17, 900 }, + [171] = { 46.9, 40.6, 17, 900 }, + [172] = { 43.3, 40.6, 17, 900 }, + [173] = { 48.3, 40.5, 17, 900 }, + [174] = { 47.1, 40.5, 17, 900 }, + [175] = { 46.1, 40.5, 17, 900 }, + [176] = { 56.3, 40.4, 17, 900 }, + [177] = { 45.7, 40.4, 17, 900 }, + [178] = { 56, 40.4, 17, 900 }, + [179] = { 44.6, 40.3, 17, 900 }, + [180] = { 55.8, 40.2, 17, 900 }, + [181] = { 42.9, 40.1, 17, 900 }, + [182] = { 42.8, 40, 17, 900 }, + [183] = { 43.8, 39.7, 17, 900 }, + [184] = { 45.7, 39.7, 17, 900 }, + [185] = { 43.2, 39.6, 17, 900 }, + [186] = { 45.6, 39.2, 17, 900 }, + [187] = { 43.8, 38.5, 17, 900 }, + [188] = { 58.3, 36.9, 17, 900 }, + [189] = { 45.7, 36.8, 17, 900 }, + [190] = { 45.4, 36.7, 17, 900 }, + [191] = { 46.4, 36.6, 17, 900 }, + [192] = { 48.7, 36.6, 17, 900 }, + [193] = { 45.2, 36.5, 17, 900 }, + [194] = { 54.3, 36.4, 17, 900 }, + [195] = { 47, 36.1, 17, 900 }, + [196] = { 43.1, 36, 17, 900 }, + [197] = { 37.7, 36, 17, 900 }, + [198] = { 46.4, 35.2, 17, 900 }, + [199] = { 47.4, 34.2, 17, 900 }, + [200] = { 45.7, 34.1, 17, 900 }, + [201] = { 48.9, 33.5, 17, 900 }, + [202] = { 49.4, 33.3, 17, 900 }, + [203] = { 43.8, 33, 17, 900 }, + [204] = { 48, 31.9, 17, 900 }, + [205] = { 42, 29, 17, 900 }, + [206] = { 49.4, 27.1, 17, 900 }, + [207] = { 45.7, 26.7, 17, 900 }, + [208] = { 65.3, 26.2, 17, 900 }, + [209] = { 49.1, 24.9, 17, 900 }, + [210] = { 47.6, 24.6, 17, 900 }, + [211] = { 46.4, 24.2, 17, 900 }, + [212] = { 41.8, 24.2, 17, 900 }, + [213] = { 41.9, 23.2, 17, 900 }, + [214] = { 59.9, 22.8, 17, 900 }, + [215] = { 33.4, 22.4, 17, 900 }, + [216] = { 44.4, 22.2, 17, 900 }, + [217] = { 34.3, 21.7, 17, 900 }, + [218] = { 44.1, 21.6, 17, 900 }, + [219] = { 44.4, 21.3, 17, 900 }, + [220] = { 42.8, 21.2, 17, 900 }, + [221] = { 44.3, 21.2, 17, 900 }, + [222] = { 43.3, 20.8, 17, 900 }, + [223] = { 44.5, 19.2, 17, 900 }, + [224] = { 56.4, 18.1, 17, 900 }, + [225] = { 61.7, 17.6, 17, 900 }, + [226] = { 55.4, 17.5, 17, 900 }, + [227] = { 56.8, 17.3, 17, 900 }, + [228] = { 49.2, 16.5, 17, 900 }, + [229] = { 43, 16.4, 17, 900 }, + [230] = { 43, 16.3, 17, 900 }, + [231] = { 42.6, 16.1, 17, 900 }, + [232] = { 47.6, 16.1, 17, 900 }, + [233] = { 32.1, 16, 17, 900 }, + [234] = { 57.4, 16, 17, 900 }, + [235] = { 49, 15.8, 17, 900 }, + [236] = { 62.2, 15.7, 17, 900 }, + [237] = { 47.4, 15.6, 17, 900 }, + [238] = { 47.5, 15.6, 17, 900 }, + [239] = { 62.8, 15.5, 17, 900 }, + [240] = { 38.5, 15.4, 17, 900 }, + [241] = { 53.3, 15.3, 17, 900 }, + [242] = { 38.6, 15.2, 17, 900 }, + [243] = { 38.2, 15.2, 17, 900 }, + [244] = { 44.5, 15.2, 17, 900 }, + [245] = { 62.8, 14.9, 17, 900 }, + [246] = { 57, 14.8, 17, 900 }, + [247] = { 62.8, 14.6, 17, 900 }, + [248] = { 40.6, 14.5, 17, 900 }, + [249] = { 42.1, 14.4, 17, 900 }, + [250] = { 46.7, 14.4, 17, 900 }, + [251] = { 41.4, 14.4, 17, 900 }, + [252] = { 41.5, 14.3, 17, 900 }, + [253] = { 56.5, 14.2, 17, 900 }, + [254] = { 41.8, 14.1, 17, 900 }, + [255] = { 56.6, 13.7, 17, 900 }, + [256] = { 56, 13.5, 17, 900 }, + [257] = { 56.6, 13.5, 17, 900 }, + [258] = { 56.2, 13.4, 17, 900 }, + [259] = { 55.8, 13.1, 17, 900 }, + [260] = { 62.2, 13, 17, 900 }, + [261] = { 48.1, 12.9, 17, 900 }, + [262] = { 48.3, 12.9, 17, 900 }, + [263] = { 48.3, 12.8, 17, 900 }, + [264] = { 56.2, 12.7, 17, 900 }, + [265] = { 55.9, 12.7, 17, 900 }, + [266] = { 55.7, 12.7, 17, 900 }, + [267] = { 48.2, 12.5, 17, 900 }, + [268] = { 55.9, 12.3, 17, 900 }, + [269] = { 56.3, 12.3, 17, 900 }, + [270] = { 62.8, 12.2, 17, 900 }, + [271] = { 55.8, 11.9, 17, 900 }, + [272] = { 56.2, 11.7, 17, 900 }, + [273] = { 47.6, 11.7, 17, 900 }, + [274] = { 56, 11.5, 17, 900 }, + [275] = { 55.8, 11.4, 17, 900 }, + [276] = { 61.6, 11, 17, 900 }, + [277] = { 58.7, 10.9, 17, 900 }, + [278] = { 61.6, 10.8, 17, 900 }, + [279] = { 62.9, 10.8, 17, 900 }, + [280] = { 58.4, 10.5, 17, 900 }, + [281] = { 62.1, 10.2, 17, 900 }, + [282] = { 57.3, 9.9, 17, 900 }, + [283] = { 62.5, 6.7, 17, 900 }, + [284] = { 63.1, 6.4, 17, 900 }, + [285] = { 63.1, 6.3, 17, 900 }, + [286] = { 63.4, 5.6, 17, 900 }, + [287] = { 56.7, 5.6, 17, 900 }, + [288] = { 56.9, 5.3, 17, 900 }, + [289] = { 55.5, 88, 36, 900 }, + [290] = { 55.5, 84.7, 36, 900 }, + [291] = { 56.7, 79.3, 36, 900 }, + [292] = { 71.2, 76.1, 38, 900 }, + [293] = { 52.8, 74.4, 38, 900 }, + [294] = { 65.9, 72.5, 38, 900 }, + [295] = { 65.9, 60.6, 38, 900 }, + [296] = { 63.1, 56.7, 38, 900 }, + [297] = { 53.5, 55.2, 38, 900 }, + [298] = { 55, 53.5, 38, 900 }, + [299] = { 30.6, 53, 38, 900 }, + [300] = { 30.8, 50, 38, 900 }, + [301] = { 26.9, 47.3, 38, 900 }, + [302] = { 77.5, 46, 38, 900 }, + [303] = { 38, 45.6, 38, 900 }, + [304] = { 40.8, 42.3, 38, 900 }, + [305] = { 40.4, 37.5, 38, 900 }, + [306] = { 55.2, 33.5, 38, 900 }, + [307] = { 40.9, 33.2, 38, 900 }, + [308] = { 41.3, 31.4, 38, 900 }, + [309] = { 49.5, 30.1, 38, 900 }, + [310] = { 54.9, 28.5, 38, 900 }, + [311] = { 47.6, 27.5, 38, 900 }, + [312] = { 59, 24.9, 38, 900 }, + [313] = { 47.5, 22.3, 38, 900 }, + [314] = { 59.6, 18.7, 38, 900 }, + [315] = { 37, 17, 38, 900 }, + [316] = { 41.8, 14.3, 38, 900 }, + [317] = { 69.3, 75.2, 40, 900 }, + [318] = { 69.4, 74.9, 40, 900 }, + [319] = { 32.9, 71.5, 40, 900 }, + [320] = { 28.3, 69.4, 40, 900 }, + [321] = { 61.4, 68.6, 40, 900 }, + [322] = { 72.4, 68.1, 40, 900 }, + [323] = { 48.1, 65.7, 40, 900 }, + [324] = { 52.8, 64.3, 40, 900 }, + [325] = { 39.3, 60.8, 40, 900 }, + [326] = { 47.2, 55.7, 40, 900 }, + [327] = { 59.6, 55.7, 40, 900 }, + [328] = { 27.2, 50.1, 40, 900 }, + [329] = { 52.6, 48.2, 40, 900 }, + [330] = { 61.8, 47.3, 40, 900 }, + [331] = { 43, 42.2, 40, 900 }, + [332] = { 53.4, 42.1, 40, 900 }, + [333] = { 55.6, 41.5, 40, 900 }, + [334] = { 38.7, 40.6, 40, 900 }, + [335] = { 42.5, 40, 40, 900 }, + [336] = { 38.4, 36.7, 40, 900 }, + [337] = { 37.5, 34.5, 40, 900 }, + [338] = { 31.4, 33.6, 40, 900 }, + [339] = { 39.6, 33.2, 40, 900 }, + [340] = { 40.1, 33, 40, 900 }, + [341] = { 36.9, 33, 40, 900 }, + [342] = { 39.1, 32.7, 40, 900 }, + [343] = { 36.9, 32.4, 40, 900 }, + [344] = { 28.9, 32.3, 40, 900 }, + [345] = { 36.4, 32.2, 40, 900 }, + [346] = { 38.8, 32.1, 40, 900 }, + [347] = { 39.3, 31.9, 40, 900 }, + [348] = { 36.1, 31.9, 40, 900 }, + [349] = { 56.2, 31.5, 40, 900 }, + [350] = { 50.3, 31.5, 40, 900 }, + [351] = { 36.3, 31.4, 40, 900 }, + [352] = { 38.9, 31.2, 40, 900 }, + [353] = { 36.7, 31.2, 40, 900 }, + [354] = { 59.3, 30.6, 40, 900 }, + [355] = { 43, 29.7, 40, 900 }, + [356] = { 36.6, 26.4, 40, 900 }, + [357] = { 32.5, 25.5, 40, 900 }, + [358] = { 61.3, 25.5, 40, 900 }, + [359] = { 59, 25.4, 40, 900 }, + [360] = { 57.4, 24.9, 40, 900 }, + [361] = { 36.3, 22.3, 40, 900 }, + [362] = { 49.7, 12.8, 40, 900 }, + [363] = { 56.8, 9, 40, 900 }, + [364] = { 12.9, 83.6, 44, 900 }, + [365] = { 46.4, 76.7, 44, 900 }, + [366] = { 55.5, 76.6, 44, 900 }, + [367] = { 9.1, 75.6, 44, 900 }, + [368] = { 37.5, 75.4, 44, 900 }, + [369] = { 76.9, 64.4, 44, 900 }, + [370] = { 35.3, 63.6, 44, 900 }, + [371] = { 81.4, 60.6, 44, 900 }, + [372] = { 25, 58.2, 44, 900 }, + [373] = { 23.8, 57.5, 44, 900 }, + [374] = { 15.1, 52.1, 44, 900 }, + [375] = { 75, 49.2, 44, 900 }, + [376] = { 53.4, 48.8, 44, 900 }, + [377] = { 38.3, 42.4, 44, 900 }, + [378] = { 66.5, 42.2, 44, 900 }, + [379] = { 55.8, 40.3, 44, 900 }, + [380] = { 43.5, 38.2, 44, 900 }, + [381] = { 23.5, 35.7, 44, 900 }, + [382] = { 52.8, 35.6, 44, 900 }, + [383] = { 43.9, 32.5, 44, 900 }, + [384] = { 34, 24.6, 44, 900 }, + [385] = { 27.1, 21.7, 44, 900 }, + [386] = { 21.3, 77.5, 85, 900 }, + [387] = { 16.6, 72, 85, 900 }, + [388] = { 12.5, 63.8, 85, 900 }, + [389] = { 22.1, 62.5, 85, 900 }, + [390] = { 49.9, 81.5, 130, 900 }, + [391] = { 45.2, 80.1, 130, 900 }, + [392] = { 53, 73.7, 130, 900 }, + [393] = { 42.7, 70.6, 130, 900 }, + [394] = { 53.1, 70, 130, 900 }, + [395] = { 54.2, 55.5, 130, 900 }, + [396] = { 53.7, 37, 130, 900 }, + [397] = { 56.6, 35.6, 130, 900 }, + [398] = { 53.2, 35.4, 130, 900 }, + [399] = { 55.1, 35.1, 130, 900 }, + [400] = { 58.1, 34.7, 130, 900 }, + [401] = { 52.9, 34.2, 130, 900 }, + [402] = { 47.5, 33.9, 130, 900 }, + [403] = { 55.7, 31.6, 130, 900 }, + [404] = { 45.3, 30.8, 130, 900 }, + [405] = { 47, 30.6, 130, 900 }, + [406] = { 56.2, 29.4, 130, 900 }, + [407] = { 52.6, 29.2, 130, 900 }, + [408] = { 48.7, 29.1, 130, 900 }, + [409] = { 47.1, 28.6, 130, 900 }, + [410] = { 54.5, 28.5, 130, 900 }, + [411] = { 45.5, 27.9, 130, 900 }, + [412] = { 45.5, 25.8, 130, 900 }, + [413] = { 56.7, 25.3, 130, 900 }, + [414] = { 56.5, 24.1, 130, 900 }, + [415] = { 56.7, 23.2, 130, 900 }, + [416] = { 56.1, 20.7, 130, 900 }, + [417] = { 56.1, 19.4, 130, 900 }, + [418] = { 49.5, 18.4, 130, 900 }, + [419] = { 73, 17.2, 130, 900 }, + [420] = { 42, 17.1, 130, 900 }, + [421] = { 57.4, 17.1, 130, 900 }, + [422] = { 59.7, 16.7, 130, 900 }, + [423] = { 56.4, 16.2, 130, 900 }, + [424] = { 35.6, 16, 130, 900 }, + [425] = { 60.5, 13.6, 130, 900 }, + [426] = { 65.9, 12.5, 130, 900 }, + [427] = { 64.4, 11.8, 130, 900 }, + [428] = { 63.1, 11.7, 130, 900 }, + [429] = { 68.4, 8.9, 130, 900 }, + [430] = { 49.1, 78, 141, 900 }, + [431] = { 41.8, 76.1, 141, 900 }, + [432] = { 49.6, 72.2, 141, 900 }, + [433] = { 62.1, 69, 141, 900 }, + [434] = { 57.5, 66.3, 141, 900 }, + [435] = { 65.3, 64, 141, 900 }, + [436] = { 38.8, 61.5, 141, 900 }, + [437] = { 50, 57.6, 141, 900 }, + [438] = { 69.4, 56.4, 141, 900 }, + [439] = { 67.7, 53, 141, 900 }, + [440] = { 45.8, 53, 141, 900 }, + [441] = { 41.8, 34.1, 141, 900 }, + [442] = { 36.4, 91.6, 148, 900 }, + [443] = { 34.6, 89.9, 148, 900 }, + [444] = { 44, 89.8, 148, 900 }, + [445] = { 38.5, 87, 148, 900 }, + [446] = { 38.9, 86.7, 148, 900 }, + [447] = { 36.3, 86.1, 148, 900 }, + [448] = { 35.2, 84.8, 148, 900 }, + [449] = { 35.2, 84.7, 148, 900 }, + [450] = { 34.6, 81.8, 148, 900 }, + [451] = { 38.3, 77.4, 148, 900 }, + [452] = { 37, 74.1, 148, 900 }, + [453] = { 42, 72.8, 148, 900 }, + [454] = { 37.3, 70.6, 148, 900 }, + [455] = { 42.1, 67.3, 148, 900 }, + [456] = { 37.8, 66.9, 148, 900 }, + [457] = { 43.9, 64.2, 148, 900 }, + [458] = { 39.3, 62.9, 148, 900 }, + [459] = { 37.7, 61, 148, 900 }, + [460] = { 44.4, 60.9, 148, 900 }, + [461] = { 37.9, 57.2, 148, 900 }, + [462] = { 42.4, 56.5, 148, 900 }, + [463] = { 38.6, 55.4, 148, 900 }, + [464] = { 42, 50.5, 148, 900 }, + [465] = { 37.5, 49.4, 148, 900 }, + [466] = { 38.5, 49.2, 148, 900 }, + [467] = { 44.8, 49, 148, 900 }, + [468] = { 36.4, 47.8, 148, 900 }, + [469] = { 35.9, 47.5, 148, 900 }, + [470] = { 42.3, 43.7, 148, 900 }, + [471] = { 41.9, 42.7, 148, 900 }, + [472] = { 39.8, 39, 148, 900 }, + [473] = { 43.2, 38.7, 148, 900 }, + [474] = { 41, 38.5, 148, 900 }, + [475] = { 38.3, 37.6, 148, 900 }, + [476] = { 38.3, 36.6, 148, 900 }, + [477] = { 37.6, 34.9, 148, 900 }, + [478] = { 38.6, 33.8, 148, 900 }, + [479] = { 39.2, 33.3, 148, 900 }, + [480] = { 40.8, 32.7, 148, 900 }, + [481] = { 54.3, 30.9, 148, 900 }, + [482] = { 53.3, 30.6, 148, 900 }, + [483] = { 54.2, 29.5, 148, 900 }, + [484] = { 43.8, 26.1, 148, 900 }, + [485] = { 56.9, 26, 148, 900 }, + [486] = { 43.2, 24.1, 148, 900 }, + [487] = { 58.7, 23.6, 148, 900 }, + [488] = { 48.6, 23.4, 148, 900 }, + [489] = { 58.8, 23, 148, 900 }, + [490] = { 49.1, 23, 148, 900 }, + [491] = { 48.2, 22.9, 148, 900 }, + [492] = { 48.7, 22.6, 148, 900 }, + [493] = { 62, 22.3, 148, 900 }, + [494] = { 54.1, 22.2, 148, 900 }, + [495] = { 53.6, 21.6, 148, 900 }, + [496] = { 54.2, 20.7, 148, 900 }, + [497] = { 57.1, 19.1, 148, 900 }, + [498] = { 56.9, 18.6, 148, 900 }, + [499] = { 58.3, 14.6, 148, 900 }, + [500] = { 58.4, 13.5, 148, 900 }, + [501] = { 61.8, 13.1, 148, 900 }, + [502] = { 73.2, 63.6, 215, 900 }, + [503] = { 63.2, 15.9, 215, 900 }, + [504] = { 41.7, 56.6, 267, 900 }, + [505] = { 44, 55.6, 267, 900 }, + [506] = { 43.7, 53.9, 267, 900 }, + [507] = { 32.5, 53.9, 267, 900 }, + [508] = { 24, 53.1, 267, 900 }, + [509] = { 54.6, 52.4, 267, 900 }, + [510] = { 41.9, 51.9, 267, 900 }, + [511] = { 57.4, 25.4, 267, 900 }, + [512] = { 57.4, 22.6, 267, 900 }, + [513] = { 58.5, 17.8, 267, 900 }, + [514] = { 70.5, 85.2, 331, 900 }, + [515] = { 73.2, 78, 331, 900 }, + [516] = { 74.6, 77.5, 331, 900 }, + [517] = { 71.1, 76.5, 331, 900 }, + [518] = { 61, 75.1, 331, 900 }, + [519] = { 76.6, 72.2, 331, 900 }, + [520] = { 39.9, 71.9, 331, 900 }, + [521] = { 41.1, 71.7, 331, 900 }, + [522] = { 41, 71.5, 331, 900 }, + [523] = { 41.2, 71.4, 331, 900 }, + [524] = { 40, 71.4, 331, 900 }, + [525] = { 77.4, 70.9, 331, 900 }, + [526] = { 74.2, 70.6, 331, 900 }, + [527] = { 57.5, 70.6, 331, 900 }, + [528] = { 34.4, 70.5, 331, 900 }, + [529] = { 33.8, 70.4, 331, 900 }, + [530] = { 33.8, 69.8, 331, 900 }, + [531] = { 33.4, 69.8, 331, 900 }, + [532] = { 77.6, 69.7, 331, 900 }, + [533] = { 44.4, 66.4, 331, 900 }, + [534] = { 67.8, 64.3, 331, 900 }, + [535] = { 90.9, 64.1, 331, 900 }, + [536] = { 69.3, 63.6, 331, 900 }, + [537] = { 50.2, 62.6, 331, 900 }, + [538] = { 62.3, 61.9, 331, 900 }, + [539] = { 49.5, 59.9, 331, 900 }, + [540] = { 27.9, 59.8, 331, 900 }, + [541] = { 49.3, 59.8, 331, 900 }, + [542] = { 45.8, 59.7, 331, 900 }, + [543] = { 46.9, 59.6, 331, 900 }, + [544] = { 27.6, 58.9, 331, 900 }, + [545] = { 83.1, 49.9, 331, 900 }, + [546] = { 82.5, 48.7, 331, 900 }, + [547] = { 82.4, 47.8, 331, 900 }, + [548] = { 83.2, 47.6, 331, 900 }, + [549] = { 28, 47, 331, 900 }, + [550] = { 23.4, 46.9, 331, 900 }, + [551] = { 28.8, 46.8, 331, 900 }, + [552] = { 83, 46.4, 331, 900 }, + [553] = { 90.9, 45.1, 331, 900 }, + [554] = { 21.1, 44.4, 331, 900 }, + [555] = { 20.6, 44.1, 331, 900 }, + [556] = { 20.8, 43.6, 331, 900 }, + [557] = { 22.6, 40.9, 331, 900 }, + [558] = { 22.5, 40.3, 331, 900 }, + [559] = { 22.9, 36.2, 331, 900 }, + [560] = { 23.2, 36, 331, 900 }, + [561] = { 16.9, 36, 331, 900 }, + [562] = { 17.3, 35.9, 331, 900 }, + [563] = { 23.4, 35.5, 331, 900 }, + [564] = { 17.6, 35.5, 331, 900 }, + [565] = { 22.6, 35.4, 331, 900 }, + [566] = { 17.3, 35.4, 331, 900 }, + [567] = { 17.1, 35.2, 331, 900 }, + [568] = { 17.6, 35.1, 331, 900 }, + [569] = { 17.2, 35.1, 331, 900 }, + [570] = { 21.9, 33.9, 331, 900 }, + [571] = { 17.4, 31.5, 331, 900 }, + [572] = { 16.6, 29.2, 331, 900 }, + [573] = { 17.2, 28.9, 331, 900 }, + [574] = { 16.9, 28.4, 331, 900 }, + [575] = { 26.3, 18.8, 331, 900 }, + [576] = { 32.5, 18.7, 400, 900 }, + [577] = { 32.2, 17.4, 400, 900 }, + [578] = { 78.3, 83.3, 406, 900 }, + [579] = { 79.7, 82.1, 406, 900 }, + [580] = { 76.1, 72.6, 406, 900 }, + [581] = { 41.5, 72.1, 406, 900 }, + [582] = { 63.8, 51.7, 406, 900 }, + [583] = { 75.6, 38.2, 406, 900 }, + [584] = { 76.7, 38, 406, 900 }, + [585] = { 76.7, 37.8, 406, 900 }, + [586] = { 76.8, 37.7, 406, 900 }, + [587] = { 75.7, 37.7, 406, 900 }, + [588] = { 70.3, 36.8, 406, 900 }, + [589] = { 69.7, 36.7, 406, 900 }, + [590] = { 69.8, 36.2, 406, 900 }, + [591] = { 69.4, 36.2, 406, 900 }, + [592] = { 48.7, 30.2, 406, 900 }, + [593] = { 64.1, 26.6, 406, 900 }, + [594] = { 63.9, 25.7, 406, 900 }, + [595] = { 13.5, 99.4, 718, 900 }, + [596] = { 31.2, 97.5, 718, 900 }, + [597] = { 71.1, 96.5, 718, 900 }, + [598] = { 10.5, 95.9, 718, 900 }, + [599] = { 41.2, 88.9, 718, 900 }, + [600] = { 30.9, 72.4, 718, 900 }, + [601] = { 48.9, 54.5, 718, 900 }, + [602] = { 19.1, 52.4, 718, 900 }, + [603] = { 75.1, 42.9, 718, 900 }, + [604] = { 84.2, 39.6, 718, 900 }, + [605] = { 60.2, 14.9, 718, 900 }, + [606] = { 96, 18.3, 5179, 900 }, + [607] = { 98.1, 17.5, 5179, 900 }, + [608] = { 97.8, 16, 5179, 900 }, + [609] = { 88, 16, 5179, 900 }, + [610] = { 80.5, 15.3, 5179, 900 }, + [611] = { 96.2, 14.3, 5179, 900 }, + [612] = { 51.8, 10.5, 5179, 900 }, + [613] = { 46.4, 8.9, 5179, 900 }, + [614] = { 55.4, 1.6, 5179, 900 }, + [615] = { 35, 83.3, 5602, 900 }, + [616] = { 25.6, 82.4, 5602, 900 }, + [617] = { 32.3, 81.4, 5602, 900 }, + [618] = { 32.3, 75.3, 5602, 900 }, + [619] = { 30.9, 73.3, 5602, 900 }, + [620] = { 25.9, 72.5, 5602, 900 }, + [621] = { 26.7, 71.6, 5602, 900 }, + [622] = { 14.2, 71.4, 5602, 900 }, + [623] = { 14.3, 69.8, 5602, 900 }, + [624] = { 12.3, 68.4, 5602, 900 }, + [625] = { 38.2, 67.8, 5602, 900 }, + [626] = { 18, 67.6, 5602, 900 }, + [627] = { 19.4, 65.9, 5602, 900 }, + [628] = { 19.2, 63.4, 5602, 900 }, + [629] = { 26.8, 61.4, 5602, 900 }, + [630] = { 19.5, 61.2, 5602, 900 }, + [631] = { 19.7, 60.3, 5602, 900 }, + [632] = { 23.9, 59.7, 5602, 900 }, + [633] = { 26.7, 58.8, 5602, 900 }, + [634] = { 22.9, 58.3, 5602, 900 }, + [635] = { 28.7, 57, 5602, 900 }, + [636] = { 22.9, 55.6, 5602, 900 }, + [637] = { 29.1, 53.8, 5602, 900 }, + [638] = { 17.5, 52.9, 5602, 900 }, + [639] = { 19.9, 51.5, 5602, 900 }, + [640] = { 11.2, 37.1, 5602, 900 }, + [641] = { 20.6, 34.1, 5602, 900 }, + [642] = { 11.2, 30.2, 5602, 900 }, + [643] = { 16.4, 30.1, 5602, 900 }, + [644] = { 16.8, 29.8, 5602, 900 }, + [645] = { 12, 28.3, 5602, 900 }, + [646] = { 19.5, 28.3, 5602, 900 }, + [647] = { 11.3, 26.3, 5602, 900 }, + [648] = { 14.3, 19.8, 5602, 900 }, + [649] = { 22.4, 12.4, 5602, 900 }, + [650] = { 11.2, 11.5, 5602, 900 }, + [651] = { 19.6, 10.5, 5602, 900 }, + [652] = { 8.8, 6.6, 5602, 900 }, + [653] = { 9.5, 4.5, 5602, 900 }, + [654] = { 11.3, 1.6, 5602, 900 }, + }, + }, + [1621] = { + ["coords"] = { + [1] = { 58.7, 80.7, 10, 900 }, + [2] = { 22.5, 79.3, 10, 900 }, + [3] = { 25.1, 78.9, 10, 900 }, + [4] = { 57.5, 78.5, 10, 900 }, + [5] = { 58, 77.2, 10, 900 }, + [6] = { 58.8, 76.9, 10, 900 }, + [7] = { 21.5, 75.9, 10, 900 }, + [8] = { 31.5, 75, 10, 900 }, + [9] = { 79.2, 74.8, 10, 900 }, + [10] = { 81, 73.3, 10, 900 }, + [11] = { 47, 73.3, 10, 900 }, + [12] = { 37.4, 73.1, 10, 900 }, + [13] = { 76.5, 72.4, 10, 900 }, + [14] = { 47, 72.4, 10, 900 }, + [15] = { 31.4, 71.4, 10, 900 }, + [16] = { 25.6, 70.9, 10, 900 }, + [17] = { 39.1, 69.6, 10, 900 }, + [18] = { 60.5, 68.6, 10, 900 }, + [19] = { 37.7, 68.5, 10, 900 }, + [20] = { 81.6, 68.2, 10, 900 }, + [21] = { 47.2, 68, 10, 900 }, + [22] = { 17.9, 67.6, 10, 900 }, + [23] = { 32.6, 66.6, 10, 900 }, + [24] = { 23.6, 66.6, 10, 900 }, + [25] = { 68.9, 65.4, 10, 900 }, + [26] = { 79.2, 65.2, 10, 900 }, + [27] = { 79.6, 65, 10, 900 }, + [28] = { 71.7, 64.5, 10, 900 }, + [29] = { 75.5, 64.1, 10, 900 }, + [30] = { 81.4, 60.1, 10, 900 }, + [31] = { 38.2, 59.2, 10, 900 }, + [32] = { 61.3, 57.6, 10, 900 }, + [33] = { 61.2, 57.1, 10, 900 }, + [34] = { 54.8, 57, 10, 900 }, + [35] = { 54.1, 56.8, 10, 900 }, + [36] = { 35.1, 56.3, 10, 900 }, + [37] = { 31.1, 55.5, 10, 900 }, + [38] = { 83.2, 55, 10, 900 }, + [39] = { 65.8, 54.9, 10, 900 }, + [40] = { 10.6, 54.6, 10, 900 }, + [41] = { 55.9, 54.3, 10, 900 }, + [42] = { 15.5, 53.7, 10, 900 }, + [43] = { 10.2, 52.4, 10, 900 }, + [44] = { 62.6, 52.2, 10, 900 }, + [45] = { 36.1, 51.6, 10, 900 }, + [46] = { 29.6, 50.5, 10, 900 }, + [47] = { 34.8, 49.5, 10, 900 }, + [48] = { 12.4, 49, 10, 900 }, + [49] = { 63.3, 47.8, 10, 900 }, + [50] = { 19.1, 46.7, 10, 900 }, + [51] = { 68, 46.2, 10, 900 }, + [52] = { 66.9, 45, 10, 900 }, + [53] = { 60.4, 44, 10, 900 }, + [54] = { 18.2, 43.2, 10, 900 }, + [55] = { 64.5, 41.8, 10, 900 }, + [56] = { 34, 40.7, 10, 900 }, + [57] = { 81.3, 40.7, 10, 900 }, + [58] = { 29, 39.4, 10, 900 }, + [59] = { 33.7, 39, 10, 900 }, + [60] = { 34.1, 39, 10, 900 }, + [61] = { 79, 37.8, 10, 900 }, + [62] = { 79.7, 36.5, 10, 900 }, + [63] = { 34, 36.1, 10, 900 }, + [64] = { 29, 35.7, 10, 900 }, + [65] = { 28.5, 35.4, 10, 900 }, + [66] = { 60.5, 34.6, 10, 900 }, + [67] = { 28.3, 33.4, 10, 900 }, + [68] = { 83.7, 33, 10, 900 }, + [69] = { 78.5, 32.2, 10, 900 }, + [70] = { 31.7, 32.2, 10, 900 }, + [71] = { 29.9, 32, 10, 900 }, + [72] = { 64.6, 31.6, 10, 900 }, + [73] = { 66.4, 31.5, 10, 900 }, + [74] = { 21.4, 31.2, 10, 900 }, + [75] = { 58.7, 30.9, 10, 900 }, + [76] = { 66.4, 30.9, 10, 900 }, + [77] = { 57.7, 30.8, 10, 900 }, + [78] = { 35.2, 30.7, 10, 900 }, + [79] = { 21.4, 30.5, 10, 900 }, + [80] = { 76.5, 29.8, 10, 900 }, + [81] = { 24.6, 29.7, 10, 900 }, + [82] = { 36.5, 29.5, 10, 900 }, + [83] = { 12.7, 29.4, 10, 900 }, + [84] = { 68, 28.1, 10, 900 }, + [85] = { 56.9, 27.6, 10, 900 }, + [86] = { 33.7, 27.4, 10, 900 }, + [87] = { 65.5, 26, 10, 900 }, + [88] = { 64.9, 25.7, 10, 900 }, + [89] = { 61.1, 78, 11, 900 }, + [90] = { 65.1, 71.1, 11, 900 }, + [91] = { 53.2, 64.5, 11, 900 }, + [92] = { 61.5, 59.4, 11, 900 }, + [93] = { 22.7, 56.3, 11, 900 }, + [94] = { 23.7, 52.8, 11, 900 }, + [95] = { 68.7, 51.3, 11, 900 }, + [96] = { 49.4, 50, 11, 900 }, + [97] = { 65.4, 47.6, 11, 900 }, + [98] = { 45.9, 46.6, 11, 900 }, + [99] = { 49.7, 45.8, 11, 900 }, + [100] = { 68.8, 45.5, 11, 900 }, + [101] = { 52.2, 44.7, 11, 900 }, + [102] = { 53.9, 43, 11, 900 }, + [103] = { 66.9, 42.8, 11, 900 }, + [104] = { 17.4, 37.6, 11, 900 }, + [105] = { 56.2, 36.7, 11, 900 }, + [106] = { 67.2, 36.6, 11, 900 }, + [107] = { 61, 36, 11, 900 }, + [108] = { 53.8, 35.3, 11, 900 }, + [109] = { 44.9, 32.2, 11, 900 }, + [110] = { 51.6, 31.8, 11, 900 }, + [111] = { 18.6, 31.2, 11, 900 }, + [112] = { 57.4, 28.7, 11, 900 }, + [113] = { 40.6, 28.4, 11, 900 }, + [114] = { 46.4, 27.6, 11, 900 }, + [115] = { 52.6, 27, 11, 900 }, + [116] = { 53.2, 25.1, 11, 900 }, + [117] = { 24, 24.4, 11, 900 }, + [118] = { 59.1, 24, 11, 900 }, + [119] = { 35.3, 19.7, 11, 900 }, + [120] = { 95.4, 77.9, 12, 900 }, + [121] = { 95.4, 74.4, 12, 900 }, + [122] = { 45.8, 85.8, 17, 900 }, + [123] = { 45.2, 83.5, 17, 900 }, + [124] = { 46.9, 78.7, 17, 900 }, + [125] = { 44.2, 77.7, 17, 900 }, + [126] = { 47.8, 77.7, 17, 900 }, + [127] = { 43.6, 76.5, 17, 900 }, + [128] = { 48.6, 76, 17, 900 }, + [129] = { 48.3, 73.9, 17, 900 }, + [130] = { 43.9, 73.5, 17, 900 }, + [131] = { 45.4, 68.3, 17, 900 }, + [132] = { 45.2, 66, 17, 900 }, + [133] = { 44.9, 64.1, 17, 900 }, + [134] = { 43.5, 62, 17, 900 }, + [135] = { 45.1, 61.8, 17, 900 }, + [136] = { 42.1, 60.5, 17, 900 }, + [137] = { 43.3, 59.3, 17, 900 }, + [138] = { 41.7, 57, 17, 900 }, + [139] = { 44.6, 55.3, 17, 900 }, + [140] = { 46.9, 54.9, 17, 900 }, + [141] = { 61.4, 54.3, 17, 900 }, + [142] = { 62.6, 53.9, 17, 900 }, + [143] = { 43.6, 53.6, 17, 900 }, + [144] = { 47.8, 53.2, 17, 900 }, + [145] = { 45.4, 51.6, 17, 900 }, + [146] = { 59.2, 51.6, 17, 900 }, + [147] = { 52.9, 51, 17, 900 }, + [148] = { 50.3, 50.5, 17, 900 }, + [149] = { 60.8, 50.4, 17, 900 }, + [150] = { 57.5, 50.3, 17, 900 }, + [151] = { 55.2, 50, 17, 900 }, + [152] = { 44.6, 49.8, 17, 900 }, + [153] = { 58.9, 49.7, 17, 900 }, + [154] = { 62.8, 49.4, 17, 900 }, + [155] = { 47.9, 49, 17, 900 }, + [156] = { 49.1, 46, 17, 900 }, + [157] = { 43.6, 43.3, 17, 900 }, + [158] = { 53.5, 42.8, 17, 900 }, + [159] = { 56.2, 42.1, 17, 900 }, + [160] = { 61.4, 41, 17, 900 }, + [161] = { 45.2, 40.6, 17, 900 }, + [162] = { 54.8, 40.5, 17, 900 }, + [163] = { 45.3, 37.8, 17, 900 }, + [164] = { 43.1, 37.6, 17, 900 }, + [165] = { 56, 37.3, 17, 900 }, + [166] = { 59.1, 37, 17, 900 }, + [167] = { 45.5, 36.3, 17, 900 }, + [168] = { 56.5, 33.9, 17, 900 }, + [169] = { 59.3, 33.6, 17, 900 }, + [170] = { 41.6, 31.1, 17, 900 }, + [171] = { 45.3, 30.8, 17, 900 }, + [172] = { 55, 30.6, 17, 900 }, + [173] = { 30.9, 27, 17, 900 }, + [174] = { 54.2, 26.8, 17, 900 }, + [175] = { 58.5, 25.7, 17, 900 }, + [176] = { 43.9, 25.6, 17, 900 }, + [177] = { 57.5, 25.3, 17, 900 }, + [178] = { 45, 24.9, 17, 900 }, + [179] = { 41.6, 24.6, 17, 900 }, + [180] = { 55.8, 23.6, 17, 900 }, + [181] = { 39.8, 23.5, 17, 900 }, + [182] = { 44.3, 23.2, 17, 900 }, + [183] = { 40.6, 22.9, 17, 900 }, + [184] = { 45.5, 21.5, 17, 900 }, + [185] = { 30.6, 20.7, 17, 900 }, + [186] = { 40.2, 20.7, 17, 900 }, + [187] = { 34.8, 19.5, 17, 900 }, + [188] = { 41.8, 19.1, 17, 900 }, + [189] = { 41.2, 19.1, 17, 900 }, + [190] = { 40.1, 18.3, 17, 900 }, + [191] = { 33.5, 17.7, 17, 900 }, + [192] = { 44.6, 16.7, 17, 900 }, + [193] = { 38.6, 16.7, 17, 900 }, + [194] = { 37.5, 15.6, 17, 900 }, + [195] = { 45.6, 15.6, 17, 900 }, + [196] = { 56.8, 15.4, 17, 900 }, + [197] = { 39.8, 14.7, 17, 900 }, + [198] = { 41.5, 14.4, 17, 900 }, + [199] = { 42.7, 14.2, 17, 900 }, + [200] = { 53.8, 13.8, 17, 900 }, + [201] = { 38.9, 12.6, 17, 900 }, + [202] = { 48.5, 12.3, 17, 900 }, + [203] = { 55.5, 12.1, 17, 900 }, + [204] = { 60.4, 10.2, 17, 900 }, + [205] = { 53.8, 9.9, 17, 900 }, + [206] = { 48.9, 9.8, 17, 900 }, + [207] = { 62.2, 8.2, 17, 900 }, + [208] = { 60.1, 7.1, 17, 900 }, + [209] = { 56.8, 5.8, 17, 900 }, + [210] = { 62.1, 5.5, 17, 900 }, + [211] = { 50.2, 98.4, 36, 900 }, + [212] = { 23.7, 97.4, 36, 900 }, + [213] = { 76.2, 92.6, 36, 900 }, + [214] = { 70.3, 86.3, 36, 900 }, + [215] = { 64.2, 80.3, 36, 900 }, + [216] = { 52.6, 80.1, 36, 900 }, + [217] = { 56.5, 74.9, 36, 900 }, + [218] = { 68.1, 73.3, 38, 900 }, + [219] = { 78.9, 71.8, 38, 900 }, + [220] = { 76.2, 71.6, 38, 900 }, + [221] = { 58, 66.8, 38, 900 }, + [222] = { 77.3, 65.9, 38, 900 }, + [223] = { 74.4, 46.3, 38, 900 }, + [224] = { 77.2, 43, 38, 900 }, + [225] = { 55.4, 42, 38, 900 }, + [226] = { 74, 41.6, 38, 900 }, + [227] = { 62, 40, 38, 900 }, + [228] = { 71, 38.5, 38, 900 }, + [229] = { 52.6, 37.5, 38, 900 }, + [230] = { 54.5, 35.9, 38, 900 }, + [231] = { 73.6, 26.7, 38, 900 }, + [232] = { 68.6, 23.6, 38, 900 }, + [233] = { 50, 21, 38, 900 }, + [234] = { 56.5, 15.2, 38, 900 }, + [235] = { 37.3, 76.1, 40, 900 }, + [236] = { 71.8, 75.7, 40, 900 }, + [237] = { 56, 74.4, 40, 900 }, + [238] = { 65.3, 73, 40, 900 }, + [239] = { 42, 71.7, 40, 900 }, + [240] = { 70.2, 71.6, 40, 900 }, + [241] = { 43.7, 70.4, 40, 900 }, + [242] = { 49.8, 69.3, 40, 900 }, + [243] = { 39.5, 68.1, 40, 900 }, + [244] = { 46.1, 67.4, 40, 900 }, + [245] = { 41.9, 64.7, 40, 900 }, + [246] = { 58.2, 64.7, 40, 900 }, + [247] = { 34.1, 64.1, 40, 900 }, + [248] = { 55.2, 63, 40, 900 }, + [249] = { 66.5, 57.3, 40, 900 }, + [250] = { 62.8, 56, 40, 900 }, + [251] = { 33.9, 55.8, 40, 900 }, + [252] = { 51.1, 51.7, 40, 900 }, + [253] = { 53.2, 50.8, 40, 900 }, + [254] = { 66.2, 50.1, 40, 900 }, + [255] = { 60.6, 49.7, 40, 900 }, + [256] = { 43.1, 46.5, 40, 900 }, + [257] = { 31.2, 42.8, 40, 900 }, + [258] = { 63.8, 41.2, 40, 900 }, + [259] = { 35.5, 39, 40, 900 }, + [260] = { 35.2, 38.9, 40, 900 }, + [261] = { 35.9, 38.7, 40, 900 }, + [262] = { 35.4, 38.3, 40, 900 }, + [263] = { 62.1, 37.4, 40, 900 }, + [264] = { 53.8, 36.6, 40, 900 }, + [265] = { 35.7, 36.6, 40, 900 }, + [266] = { 36.6, 36.3, 40, 900 }, + [267] = { 36.1, 36.1, 40, 900 }, + [268] = { 36.9, 35.6, 40, 900 }, + [269] = { 36.5, 34.9, 40, 900 }, + [270] = { 37.3, 34, 40, 900 }, + [271] = { 46.8, 32.3, 40, 900 }, + [272] = { 39, 31.5, 40, 900 }, + [273] = { 38.1, 28.7, 40, 900 }, + [274] = { 45.7, 20.6, 40, 900 }, + [275] = { 45.7, 20.3, 40, 900 }, + [276] = { 9.5, 80.6, 44, 900 }, + [277] = { 39.3, 77.2, 44, 900 }, + [278] = { 18.5, 75.9, 44, 900 }, + [279] = { 9.5, 75, 44, 900 }, + [280] = { 19.4, 74.9, 44, 900 }, + [281] = { 35.5, 74.1, 44, 900 }, + [282] = { 20.4, 73.3, 44, 900 }, + [283] = { 44.8, 72.6, 44, 900 }, + [284] = { 75.3, 72.2, 44, 900 }, + [285] = { 25.8, 68.6, 44, 900 }, + [286] = { 13.7, 68.2, 44, 900 }, + [287] = { 35.1, 65.4, 44, 900 }, + [288] = { 24.1, 63.4, 44, 900 }, + [289] = { 60.1, 62.6, 44, 900 }, + [290] = { 14, 62.5, 44, 900 }, + [291] = { 15.1, 61.1, 44, 900 }, + [292] = { 19.5, 61, 44, 900 }, + [293] = { 64.3, 55.9, 44, 900 }, + [294] = { 17.2, 55.6, 44, 900 }, + [295] = { 71, 53.2, 44, 900 }, + [296] = { 14.3, 49, 44, 900 }, + [297] = { 54.6, 48.2, 44, 900 }, + [298] = { 62.5, 45.6, 44, 900 }, + [299] = { 82.8, 44.9, 44, 900 }, + [300] = { 70.7, 40.6, 44, 900 }, + [301] = { 47.5, 36.3, 44, 900 }, + [302] = { 22.3, 34.4, 44, 900 }, + [303] = { 28.8, 28.3, 44, 900 }, + [304] = { 12.8, 30.7, 45, 900 }, + [305] = { 19.4, 20.8, 45, 900 }, + [306] = { 17.5, 76.9, 85, 900 }, + [307] = { 11.7, 67.9, 85, 900 }, + [308] = { 9.1, 54.5, 85, 900 }, + [309] = { 23.3, 48.5, 85, 900 }, + [310] = { 50.6, 80, 130, 900 }, + [311] = { 63.1, 79.2, 130, 900 }, + [312] = { 57.3, 78, 130, 900 }, + [313] = { 46, 77.5, 130, 900 }, + [314] = { 66.1, 77.3, 130, 900 }, + [315] = { 54.6, 77.2, 130, 900 }, + [316] = { 53.8, 77.2, 130, 900 }, + [317] = { 60.4, 76.4, 130, 900 }, + [318] = { 48.4, 75.9, 130, 900 }, + [319] = { 50, 74.1, 130, 900 }, + [320] = { 54.7, 71, 130, 900 }, + [321] = { 50, 68, 130, 900 }, + [322] = { 55.6, 66.9, 130, 900 }, + [323] = { 55.6, 66, 130, 900 }, + [324] = { 52.6, 64.6, 130, 900 }, + [325] = { 56.3, 59.2, 130, 900 }, + [326] = { 52.4, 56.7, 130, 900 }, + [327] = { 56.4, 53.5, 130, 900 }, + [328] = { 44.9, 52.4, 130, 900 }, + [329] = { 43.5, 51.6, 130, 900 }, + [330] = { 44.5, 49.1, 130, 900 }, + [331] = { 54, 44.2, 130, 900 }, + [332] = { 53.4, 41.6, 130, 900 }, + [333] = { 50.9, 39.4, 130, 900 }, + [334] = { 49.2, 36.3, 130, 900 }, + [335] = { 51.5, 34.8, 130, 900 }, + [336] = { 49.1, 33.5, 130, 900 }, + [337] = { 46.8, 33.5, 130, 900 }, + [338] = { 49, 31.2, 130, 900 }, + [339] = { 41.7, 98.7, 148, 900 }, + [340] = { 35.6, 90, 148, 900 }, + [341] = { 39.3, 89.4, 148, 900 }, + [342] = { 41.8, 83.5, 148, 900 }, + [343] = { 39.6, 83.3, 148, 900 }, + [344] = { 40.9, 81.8, 148, 900 }, + [345] = { 39.1, 75.6, 148, 900 }, + [346] = { 38.9, 70.9, 148, 900 }, + [347] = { 37.9, 70.3, 148, 900 }, + [348] = { 42.5, 69.8, 148, 900 }, + [349] = { 39.6, 68.9, 148, 900 }, + [350] = { 41.9, 67.9, 148, 900 }, + [351] = { 39.7, 67.3, 148, 900 }, + [352] = { 44.1, 67.2, 148, 900 }, + [353] = { 43.2, 66, 148, 900 }, + [354] = { 39.1, 65, 148, 900 }, + [355] = { 39.8, 64.2, 148, 900 }, + [356] = { 39.6, 63, 148, 900 }, + [357] = { 40.3, 61.6, 148, 900 }, + [358] = { 44.9, 60.4, 148, 900 }, + [359] = { 45.2, 59.3, 148, 900 }, + [360] = { 39.3, 58.8, 148, 900 }, + [361] = { 44.2, 55.1, 148, 900 }, + [362] = { 39.6, 54.9, 148, 900 }, + [363] = { 39.6, 52.4, 148, 900 }, + [364] = { 41.4, 47.6, 148, 900 }, + [365] = { 42.1, 46.9, 148, 900 }, + [366] = { 45.2, 43.9, 148, 900 }, + [367] = { 45.7, 42.7, 148, 900 }, + [368] = { 46.1, 42.1, 148, 900 }, + [369] = { 39.3, 39.7, 148, 900 }, + [370] = { 48.1, 38.6, 148, 900 }, + [371] = { 42.5, 38.1, 148, 900 }, + [372] = { 43.7, 38, 148, 900 }, + [373] = { 43.1, 37.8, 148, 900 }, + [374] = { 47.1, 37.7, 148, 900 }, + [375] = { 41.1, 34.4, 148, 900 }, + [376] = { 47.1, 34.2, 148, 900 }, + [377] = { 45.2, 32.7, 148, 900 }, + [378] = { 47.8, 32.2, 148, 900 }, + [379] = { 47.9, 30.9, 148, 900 }, + [380] = { 45.8, 30.3, 148, 900 }, + [381] = { 47.6, 30.3, 148, 900 }, + [382] = { 52.5, 28.6, 148, 900 }, + [383] = { 57.3, 28, 148, 900 }, + [384] = { 49.9, 27.5, 148, 900 }, + [385] = { 52.5, 27.1, 148, 900 }, + [386] = { 61, 24.6, 148, 900 }, + [387] = { 47, 24, 148, 900 }, + [388] = { 58.3, 14.3, 148, 900 }, + [389] = { 60.4, 13.8, 148, 900 }, + [390] = { 71.8, 64.2, 215, 900 }, + [391] = { 71, 57.5, 215, 900 }, + [392] = { 29.8, 73.2, 267, 900 }, + [393] = { 28.8, 68.8, 267, 900 }, + [394] = { 32.9, 67.1, 267, 900 }, + [395] = { 62.6, 63.8, 267, 900 }, + [396] = { 27.5, 63.4, 267, 900 }, + [397] = { 31, 62, 267, 900 }, + [398] = { 74.9, 59.5, 267, 900 }, + [399] = { 58.8, 59.2, 267, 900 }, + [400] = { 36.6, 58.9, 267, 900 }, + [401] = { 28.6, 57.7, 267, 900 }, + [402] = { 32.3, 57.4, 267, 900 }, + [403] = { 28.8, 57.4, 267, 900 }, + [404] = { 46.8, 54.4, 267, 900 }, + [405] = { 82.3, 48.4, 267, 900 }, + [406] = { 47.3, 45.4, 267, 900 }, + [407] = { 8.4, 44.6, 267, 900 }, + [408] = { 19.7, 43.3, 267, 900 }, + [409] = { 51.4, 43.2, 267, 900 }, + [410] = { 25.7, 42.5, 267, 900 }, + [411] = { 12.2, 42, 267, 900 }, + [412] = { 45.2, 40.9, 267, 900 }, + [413] = { 69, 36.6, 267, 900 }, + [414] = { 35.3, 35.8, 267, 900 }, + [415] = { 44.3, 35.5, 267, 900 }, + [416] = { 52.7, 34.5, 267, 900 }, + [417] = { 29.6, 33.7, 267, 900 }, + [418] = { 75.5, 29.5, 267, 900 }, + [419] = { 70.4, 23.9, 267, 900 }, + [420] = { 65.1, 18.7, 267, 900 }, + [421] = { 54.9, 18.5, 267, 900 }, + [422] = { 58.3, 14, 267, 900 }, + [423] = { 63.3, 84.5, 331, 900 }, + [424] = { 66.6, 81.9, 331, 900 }, + [425] = { 67.2, 80.6, 331, 900 }, + [426] = { 72, 79.7, 331, 900 }, + [427] = { 51.1, 76.2, 331, 900 }, + [428] = { 65.4, 76.1, 331, 900 }, + [429] = { 67.6, 75.9, 331, 900 }, + [430] = { 67.4, 75.5, 331, 900 }, + [431] = { 65.7, 75.2, 331, 900 }, + [432] = { 37.9, 71.5, 331, 900 }, + [433] = { 80.2, 71, 331, 900 }, + [434] = { 38.3, 70.8, 331, 900 }, + [435] = { 65, 69.8, 331, 900 }, + [436] = { 70.6, 69.4, 331, 900 }, + [437] = { 31, 69.3, 331, 900 }, + [438] = { 90.4, 68.5, 331, 900 }, + [439] = { 65.6, 68.3, 331, 900 }, + [440] = { 45.6, 68.2, 331, 900 }, + [441] = { 35.5, 68, 331, 900 }, + [442] = { 57, 67.8, 331, 900 }, + [443] = { 41, 65, 331, 900 }, + [444] = { 27.6, 64.7, 331, 900 }, + [445] = { 81.7, 64.7, 331, 900 }, + [446] = { 32.9, 64.4, 331, 900 }, + [447] = { 81.2, 64.3, 331, 900 }, + [448] = { 27.2, 64.3, 331, 900 }, + [449] = { 90.9, 60.9, 331, 900 }, + [450] = { 83.9, 58.2, 331, 900 }, + [451] = { 92.9, 56.8, 331, 900 }, + [452] = { 75.7, 54, 331, 900 }, + [453] = { 20.9, 52.2, 331, 900 }, + [454] = { 83.2, 50.6, 331, 900 }, + [455] = { 43, 49.2, 331, 900 }, + [456] = { 87.3, 48.8, 331, 900 }, + [457] = { 47.6, 48.2, 331, 900 }, + [458] = { 40, 47.5, 331, 900 }, + [459] = { 81.5, 47, 331, 900 }, + [460] = { 60, 45.9, 331, 900 }, + [461] = { 74, 45.5, 331, 900 }, + [462] = { 60.4, 44.9, 331, 900 }, + [463] = { 59.8, 44.8, 331, 900 }, + [464] = { 36.2, 44.8, 331, 900 }, + [465] = { 22.8, 44.5, 331, 900 }, + [466] = { 40.8, 44.3, 331, 900 }, + [467] = { 45.1, 43.8, 331, 900 }, + [468] = { 31.3, 43.8, 331, 900 }, + [469] = { 34.8, 40.7, 331, 900 }, + [470] = { 36.6, 38.8, 331, 900 }, + [471] = { 39.1, 38.2, 331, 900 }, + [472] = { 22.6, 36.1, 331, 900 }, + [473] = { 36.3, 31.7, 331, 900 }, + [474] = { 56.5, 31.7, 331, 900 }, + [475] = { 36.2, 31.5, 331, 900 }, + [476] = { 27.8, 30.6, 331, 900 }, + [477] = { 18.3, 28.3, 331, 900 }, + [478] = { 18.7, 19.6, 331, 900 }, + [479] = { 17.9, 19.1, 331, 900 }, + [480] = { 25.8, 16.9, 331, 900 }, + [481] = { 55.7, 95.9, 361, 900 }, + [482] = { 74.1, 91.1, 406, 900 }, + [483] = { 71, 81.3, 406, 900 }, + [484] = { 73.5, 80.4, 406, 900 }, + [485] = { 61.7, 78.7, 406, 900 }, + [486] = { 80.7, 78.5, 406, 900 }, + [487] = { 78.5, 75.4, 406, 900 }, + [488] = { 38.2, 73, 406, 900 }, + [489] = { 85.2, 71.9, 406, 900 }, + [490] = { 35.2, 70.1, 406, 900 }, + [491] = { 60.3, 69.7, 406, 900 }, + [492] = { 74.2, 66.4, 406, 900 }, + [493] = { 39.8, 63.2, 406, 900 }, + [494] = { 63.1, 62, 406, 900 }, + [495] = { 54.9, 59, 406, 900 }, + [496] = { 53.5, 55.8, 406, 900 }, + [497] = { 33.9, 55.3, 406, 900 }, + [498] = { 73.3, 51.7, 406, 900 }, + [499] = { 48.9, 49.6, 406, 900 }, + [500] = { 86.3, 42.4, 406, 900 }, + [501] = { 49.7, 39.9, 406, 900 }, + [502] = { 73.7, 37.9, 406, 900 }, + [503] = { 74.1, 37.2, 406, 900 }, + [504] = { 67, 35.7, 406, 900 }, + [505] = { 47.4, 35.7, 406, 900 }, + [506] = { 81.1, 34.6, 406, 900 }, + [507] = { 71.4, 34.4, 406, 900 }, + [508] = { 63.9, 31.3, 406, 900 }, + [509] = { 68.9, 31, 406, 900 }, + [510] = { 63.4, 30.9, 406, 900 }, + [511] = { 47.4, 30.7, 406, 900 }, + [512] = { 42.8, 20.2, 406, 900 }, + [513] = { 57.4, 19.3, 406, 900 }, + [514] = { 27.2, 65.7, 491, 604800 }, + [515] = { 62.3, 56.2, 491, 604800 }, + [516] = { 68, 51.6, 491, 604800 }, + [517] = { 42.4, 51.4, 491, 604800 }, + [518] = { 88.9, 42.8, 491, 604800 }, + [519] = { 24, 28.3, 491, 604800 }, + [520] = { 15, 91.2, 718, 900 }, + [521] = { 17.9, 40.4, 1581, 900 }, + [522] = { 54.8, 6, 1581, 900 }, + [523] = { 43.7, 51.9, 5077, 10800 }, + [524] = { 48.7, 49.8, 5077, 10800 }, + [525] = { 40.7, 20.7, 5077, 10800 }, + [526] = { 85.6, 32.8, 5179, 900 }, + [527] = { 84.8, 29.1, 5179, 900 }, + [528] = { 88.3, 27.6, 5179, 900 }, + [529] = { 83.7, 24.3, 5179, 900 }, + [530] = { 86.7, 23, 5179, 900 }, + [531] = { 91.6, 20.4, 5179, 900 }, + [532] = { 84.6, 19.3, 5179, 900 }, + [533] = { 87.8, 19.1, 5179, 900 }, + [534] = { 84.7, 19.1, 5179, 900 }, + [535] = { 52.6, 8.8, 5179, 900 }, + [536] = { 66.9, 7.9, 5179, 900 }, + [537] = { 76.9, 6.7, 5179, 900 }, + [538] = { 60.2, 6.5, 5179, 900 }, + [539] = { 82.1, 6.1, 5179, 900 }, + [540] = { 47.3, 5.9, 5179, 900 }, + [541] = { 70.3, 5.6, 5179, 900 }, + [542] = { 57.2, 5.6, 5179, 900 }, + [543] = { 56.3, 5.5, 5179, 900 }, + [544] = { 63.9, 4.7, 5179, 900 }, + [545] = { 99.1, 4.6, 5179, 900 }, + [546] = { 50.1, 4.1, 5179, 900 }, + [547] = { 51.9, 2, 5179, 900 }, + [548] = { 90.5, 0.2, 5179, 900 }, + [549] = { 33.4, 81.8, 5602, 900 }, + [550] = { 39, 81, 5602, 900 }, + [551] = { 37.6, 80.9, 5602, 900 }, + [552] = { 28.2, 78.5, 5602, 900 }, + [553] = { 38.1, 78, 5602, 900 }, + [554] = { 36.6, 67.9, 5602, 900 }, + [555] = { 38.1, 66.3, 5602, 900 }, + [556] = { 26.9, 65.7, 5602, 900 }, + [557] = { 36.5, 65.6, 5602, 900 }, + [558] = { 30.3, 64.7, 5602, 900 }, + [559] = { 34.9, 64, 5602, 900 }, + [560] = { 25.5, 63.4, 5602, 900 }, + [561] = { 26.4, 62.6, 5602, 900 }, + [562] = { 36.2, 57.9, 5602, 900 }, + [563] = { 33.7, 56.3, 5602, 900 }, + [564] = { 24.2, 55, 5602, 900 }, + [565] = { 27.5, 52, 5602, 900 }, + [566] = { 15.7, 38.9, 5602, 900 }, + [567] = { 18.8, 33.6, 5602, 900 }, + [568] = { 9.6, 28.5, 5602, 900 }, + [569] = { 16, 24.5, 5602, 900 }, + [570] = { 21.5, 18.4, 5602, 900 }, + [571] = { 6.7, 17.4, 5602, 900 }, + [572] = { 19, 15.5, 5602, 900 }, + [573] = { 4, 14.8, 5602, 900 }, + [574] = { 7, 14.2, 5602, 900 }, + [575] = { 21.6, 13.9, 5602, 900 }, + [576] = { 8.9, 13.3, 5602, 900 }, + [577] = { 10.2, 12, 5602, 900 }, + [578] = { 20.1, 11.8, 5602, 900 }, + [579] = { 11.9, 7.1, 5602, 900 }, + [580] = { 20.4, 7.1, 5602, 900 }, + [581] = { 15.6, 6.6, 5602, 900 }, + [582] = { 10.1, 6.1, 5602, 900 }, + [583] = { 3.3, 3.7, 5602, 900 }, + [584] = { 8.4, 3.4, 5602, 900 }, + [585] = { 12.9, 1, 5602, 900 }, + [586] = { 4.4, 0.2, 5602, 900 }, + }, + }, + [1622] = { + ["coords"] = { + [1] = { 63.3, 80.5, 10, 1800 }, + [2] = { 55, 80.4, 10, 1800 }, + [3] = { 54.8, 79.2, 10, 1800 }, + [4] = { 26.1, 79.1, 10, 1800 }, + [5] = { 33.7, 78.5, 10, 1800 }, + [6] = { 56, 78.4, 10, 1800 }, + [7] = { 30.6, 78.4, 10, 1800 }, + [8] = { 33.2, 78.3, 10, 1800 }, + [9] = { 63.6, 78.2, 10, 1800 }, + [10] = { 65.9, 76.4, 10, 1800 }, + [11] = { 65.5, 76.2, 10, 1800 }, + [12] = { 34.3, 76, 10, 1800 }, + [13] = { 66.4, 75.7, 10, 1800 }, + [14] = { 39, 75.5, 10, 1800 }, + [15] = { 66.4, 74.7, 10, 1800 }, + [16] = { 79.4, 73.5, 10, 1800 }, + [17] = { 23, 73.1, 10, 1800 }, + [18] = { 80.5, 72.3, 10, 1800 }, + [19] = { 21.1, 72.2, 10, 1800 }, + [20] = { 19.5, 71.9, 10, 1800 }, + [21] = { 23.1, 71.6, 10, 1800 }, + [22] = { 65.2, 71.5, 10, 1800 }, + [23] = { 42.5, 71.4, 10, 1800 }, + [24] = { 20.5, 71.4, 10, 1800 }, + [25] = { 80.2, 70.8, 10, 1800 }, + [26] = { 23.2, 70.5, 10, 1800 }, + [27] = { 20.6, 70.2, 10, 1800 }, + [28] = { 32.4, 69.4, 10, 1800 }, + [29] = { 65, 69.4, 10, 1800 }, + [30] = { 42.1, 69.3, 10, 1800 }, + [31] = { 23.2, 69.2, 10, 1800 }, + [32] = { 66.3, 69, 10, 1800 }, + [33] = { 65.6, 67.4, 10, 1800 }, + [34] = { 14.3, 67.4, 10, 1800 }, + [35] = { 65.9, 67.4, 10, 1800 }, + [36] = { 32.3, 67.4, 10, 1800 }, + [37] = { 66, 67, 10, 1800 }, + [38] = { 64.9, 67, 10, 1800 }, + [39] = { 34.7, 66.3, 10, 1800 }, + [40] = { 81.3, 63.4, 10, 1800 }, + [41] = { 79.6, 62.3, 10, 1800 }, + [42] = { 81.9, 62.2, 10, 1800 }, + [43] = { 49.8, 61, 10, 1800 }, + [44] = { 82.3, 60.7, 10, 1800 }, + [45] = { 82, 59.7, 10, 1800 }, + [46] = { 80.8, 59.4, 10, 1800 }, + [47] = { 50.3, 59.2, 10, 1800 }, + [48] = { 82, 58.3, 10, 1800 }, + [49] = { 77.3, 58.3, 10, 1800 }, + [50] = { 81, 58.1, 10, 1800 }, + [51] = { 71.7, 56.5, 10, 1800 }, + [52] = { 35.1, 55.9, 10, 1800 }, + [53] = { 36.3, 55.6, 10, 1800 }, + [54] = { 71.2, 54.1, 10, 1800 }, + [55] = { 34.9, 54.1, 10, 1800 }, + [56] = { 57.3, 53.6, 10, 1800 }, + [57] = { 36, 53.6, 10, 1800 }, + [58] = { 87.3, 49.8, 10, 1800 }, + [59] = { 87.3, 49.4, 10, 1800 }, + [60] = { 33, 47.8, 10, 1800 }, + [61] = { 34.8, 47.6, 10, 1800 }, + [62] = { 20.1, 44.2, 10, 1800 }, + [63] = { 18.6, 43.7, 10, 1800 }, + [64] = { 20.5, 43.3, 10, 1800 }, + [65] = { 59.4, 42.2, 10, 1800 }, + [66] = { 16.2, 38.8, 10, 1800 }, + [67] = { 68.7, 38.8, 10, 1800 }, + [68] = { 35.4, 37.3, 10, 1800 }, + [69] = { 58.2, 36.1, 10, 1800 }, + [70] = { 68.6, 35.8, 10, 1800 }, + [71] = { 58.5, 35.5, 10, 1800 }, + [72] = { 23.5, 35.4, 10, 1800 }, + [73] = { 35.1, 35.2, 10, 1800 }, + [74] = { 17.6, 34.5, 10, 1800 }, + [75] = { 27.9, 33, 10, 1800 }, + [76] = { 28.3, 31.7, 10, 1800 }, + [77] = { 38.6, 30.3, 10, 1800 }, + [78] = { 56.8, 29.7, 10, 1800 }, + [79] = { 38.4, 28.5, 10, 1800 }, + [80] = { 39.1, 24.6, 10, 1800 }, + [81] = { 59.7, 79.3, 11, 1800 }, + [82] = { 54.6, 79.2, 11, 1800 }, + [83] = { 62.6, 77.8, 11, 1800 }, + [84] = { 53.6, 76.1, 11, 1800 }, + [85] = { 47.5, 74.9, 11, 1800 }, + [86] = { 65.6, 74.1, 11, 1800 }, + [87] = { 48.6, 73.8, 11, 1800 }, + [88] = { 65.3, 73.8, 11, 1800 }, + [89] = { 59.2, 73.2, 11, 1800 }, + [90] = { 59.4, 72.6, 11, 1800 }, + [91] = { 11.3, 67.5, 11, 1800 }, + [92] = { 67, 67.3, 11, 1800 }, + [93] = { 53.6, 66.7, 11, 1800 }, + [94] = { 66.4, 66.7, 11, 1800 }, + [95] = { 12.1, 66.4, 11, 1800 }, + [96] = { 13.1, 66, 11, 1800 }, + [97] = { 12.4, 65.9, 11, 1800 }, + [98] = { 13.2, 65.5, 11, 1800 }, + [99] = { 13.1, 65.5, 11, 1800 }, + [100] = { 13.2, 65.2, 11, 1800 }, + [101] = { 66.8, 63.9, 11, 1800 }, + [102] = { 66.5, 63.6, 11, 1800 }, + [103] = { 48.4, 62.8, 11, 1800 }, + [104] = { 53.5, 62.6, 11, 1800 }, + [105] = { 49.1, 62.6, 11, 1800 }, + [106] = { 66.6, 62.4, 11, 1800 }, + [107] = { 48.4, 61.9, 11, 1800 }, + [108] = { 22.2, 60.8, 11, 1800 }, + [109] = { 66.6, 59.7, 11, 1800 }, + [110] = { 23.3, 59.4, 11, 1800 }, + [111] = { 67.1, 58.3, 11, 1800 }, + [112] = { 13.1, 58, 11, 1800 }, + [113] = { 12.7, 57.4, 11, 1800 }, + [114] = { 13, 57.2, 11, 1800 }, + [115] = { 24.2, 55.8, 11, 1800 }, + [116] = { 55.3, 55.6, 11, 1800 }, + [117] = { 24.7, 54.7, 11, 1800 }, + [118] = { 50.5, 51.8, 11, 1800 }, + [119] = { 35.7, 51.6, 11, 1800 }, + [120] = { 34.6, 51.3, 11, 1800 }, + [121] = { 49.8, 51.2, 11, 1800 }, + [122] = { 33, 49.7, 11, 1800 }, + [123] = { 33.5, 47.6, 11, 1800 }, + [124] = { 27.1, 47.5, 11, 1800 }, + [125] = { 27.7, 46.4, 11, 1800 }, + [126] = { 36.1, 44.7, 11, 1800 }, + [127] = { 47, 44.6, 11, 1800 }, + [128] = { 28.1, 44.6, 11, 1800 }, + [129] = { 35.3, 44.6, 11, 1800 }, + [130] = { 30.3, 44.5, 11, 1800 }, + [131] = { 28.5, 43.5, 11, 1800 }, + [132] = { 30.2, 43.5, 11, 1800 }, + [133] = { 71.3, 43.3, 11, 1800 }, + [134] = { 69.4, 42.8, 11, 1800 }, + [135] = { 32, 40.9, 11, 1800 }, + [136] = { 69.8, 36.2, 11, 1800 }, + [137] = { 68.5, 35.1, 11, 1800 }, + [138] = { 62.2, 32.3, 11, 1800 }, + [139] = { 63.5, 31.2, 11, 1800 }, + [140] = { 64.1, 30.9, 11, 1800 }, + [141] = { 61.8, 30.5, 11, 1800 }, + [142] = { 53.9, 29.8, 11, 1800 }, + [143] = { 32.2, 29, 11, 1800 }, + [144] = { 55.4, 28.7, 11, 1800 }, + [145] = { 27.4, 26.4, 11, 1800 }, + [146] = { 27.6, 26.2, 11, 1800 }, + [147] = { 44.7, 26.1, 11, 1800 }, + [148] = { 26.2, 25.7, 11, 1800 }, + [149] = { 43.6, 25.6, 11, 1800 }, + [150] = { 26.1, 25.6, 11, 1800 }, + [151] = { 38.9, 25.4, 11, 1800 }, + [152] = { 43.6, 25.4, 11, 1800 }, + [153] = { 57.4, 23.4, 11, 1800 }, + [154] = { 44.6, 23.3, 11, 1800 }, + [155] = { 35.1, 23, 11, 1800 }, + [156] = { 43, 22.7, 11, 1800 }, + [157] = { 35.2, 21.8, 11, 1800 }, + [158] = { 42.2, 21.5, 11, 1800 }, + [159] = { 41.4, 20.8, 11, 1800 }, + [160] = { 40.2, 20.5, 11, 1800 }, + [161] = { 48.3, 18.2, 11, 1800 }, + [162] = { 48.1, 18.2, 11, 1800 }, + [163] = { 47.2, 17.9, 11, 1800 }, + [164] = { 48, 17.4, 11, 1800 }, + [165] = { 47.9, 16.6, 11, 1800 }, + [166] = { 48.7, 16.5, 11, 1800 }, + [167] = { 34.6, 16, 11, 1800 }, + [168] = { 46.9, 15.9, 11, 1800 }, + [169] = { 48.3, 15.9, 11, 1800 }, + [170] = { 34.1, 15.8, 11, 1800 }, + [171] = { 47.5, 15.5, 11, 1800 }, + [172] = { 47.6, 15.3, 11, 1800 }, + [173] = { 33.8, 15, 11, 1800 }, + [174] = { 33.7, 11.5, 11, 1800 }, + [175] = { 34.1, 11.2, 11, 1800 }, + [176] = { 18.9, 82.8, 12, 1800 }, + [177] = { 19.3, 81, 12, 1800 }, + [178] = { 18.3, 80.1, 12, 1800 }, + [179] = { 16.7, 78.4, 12, 1800 }, + [180] = { 51.8, 4.7, 15, 1800 }, + [181] = { 49.1, 98.7, 17, 1800 }, + [182] = { 45, 97.4, 17, 1800 }, + [183] = { 40.2, 93.4, 17, 1800 }, + [184] = { 38.5, 92.7, 17, 1800 }, + [185] = { 39.1, 92.5, 17, 1800 }, + [186] = { 45, 86.5, 17, 1800 }, + [187] = { 44.3, 85.9, 17, 1800 }, + [188] = { 48.2, 85.8, 17, 1800 }, + [189] = { 47.8, 85.7, 17, 1800 }, + [190] = { 47.9, 85.2, 17, 1800 }, + [191] = { 47.8, 85.2, 17, 1800 }, + [192] = { 47.8, 84.7, 17, 1800 }, + [193] = { 43.6, 83.6, 17, 1800 }, + [194] = { 42, 82.6, 17, 1800 }, + [195] = { 42.3, 82.6, 17, 1800 }, + [196] = { 43.8, 81.3, 17, 1800 }, + [197] = { 43.7, 81.2, 17, 1800 }, + [198] = { 43.9, 81.1, 17, 1800 }, + [199] = { 43.7, 80.7, 17, 1800 }, + [200] = { 41.1, 80.6, 17, 1800 }, + [201] = { 43.9, 73.1, 17, 1800 }, + [202] = { 43.8, 72.5, 17, 1800 }, + [203] = { 43.7, 71.9, 17, 1800 }, + [204] = { 48.2, 71.6, 17, 1800 }, + [205] = { 42.2, 71.1, 17, 1800 }, + [206] = { 45.1, 70.5, 17, 1800 }, + [207] = { 43.7, 70.4, 17, 1800 }, + [208] = { 42.4, 70.2, 17, 1800 }, + [209] = { 43.8, 70.1, 17, 1800 }, + [210] = { 43, 69.9, 17, 1800 }, + [211] = { 42.5, 69.1, 17, 1800 }, + [212] = { 43.1, 69, 17, 1800 }, + [213] = { 45.4, 69, 17, 1800 }, + [214] = { 43.3, 69, 17, 1800 }, + [215] = { 43.7, 68.8, 17, 1800 }, + [216] = { 44.6, 68.8, 17, 1800 }, + [217] = { 48, 68.4, 17, 1800 }, + [218] = { 45.5, 68.2, 17, 1800 }, + [219] = { 47.6, 68.2, 17, 1800 }, + [220] = { 47.4, 67.9, 17, 1800 }, + [221] = { 47.1, 67.9, 17, 1800 }, + [222] = { 47.5, 67.7, 17, 1800 }, + [223] = { 47.2, 67.5, 17, 1800 }, + [224] = { 47.8, 58.6, 17, 1800 }, + [225] = { 46.5, 57.7, 17, 1800 }, + [226] = { 62.3, 56.4, 17, 1800 }, + [227] = { 61.9, 55.8, 17, 1800 }, + [228] = { 53.6, 55.6, 17, 1800 }, + [229] = { 61.9, 54.8, 17, 1800 }, + [230] = { 57.5, 54.3, 17, 1800 }, + [231] = { 62, 54, 17, 1800 }, + [232] = { 59.9, 53.9, 17, 1800 }, + [233] = { 60.8, 53, 17, 1800 }, + [234] = { 61.4, 53, 17, 1800 }, + [235] = { 52.9, 51.8, 17, 1800 }, + [236] = { 43.2, 51.7, 17, 1800 }, + [237] = { 42.6, 50.5, 17, 1800 }, + [238] = { 57.2, 48.5, 17, 1800 }, + [239] = { 42.1, 48, 17, 1800 }, + [240] = { 42.5, 47.2, 17, 1800 }, + [241] = { 58.6, 47.2, 17, 1800 }, + [242] = { 59.3, 46.9, 17, 1800 }, + [243] = { 58.1, 45.8, 17, 1800 }, + [244] = { 58.3, 45.1, 17, 1800 }, + [245] = { 41.3, 45.1, 17, 1800 }, + [246] = { 62.1, 44.8, 17, 1800 }, + [247] = { 41.9, 44.4, 17, 1800 }, + [248] = { 60.7, 43.1, 17, 1800 }, + [249] = { 43.6, 43.1, 17, 1800 }, + [250] = { 46.4, 37.1, 17, 1800 }, + [251] = { 45.1, 37, 17, 1800 }, + [252] = { 46.4, 36.4, 17, 1800 }, + [253] = { 45.4, 36.1, 17, 1800 }, + [254] = { 45.1, 36, 17, 1800 }, + [255] = { 48, 35.7, 17, 1800 }, + [256] = { 45.8, 35.3, 17, 1800 }, + [257] = { 46.9, 34.8, 17, 1800 }, + [258] = { 48.6, 34.7, 17, 1800 }, + [259] = { 46.6, 34.1, 17, 1800 }, + [260] = { 45.7, 33.5, 17, 1800 }, + [261] = { 49.2, 33, 17, 1800 }, + [262] = { 45.9, 32.6, 17, 1800 }, + [263] = { 30.8, 26.6, 17, 1800 }, + [264] = { 31.4, 26.3, 17, 1800 }, + [265] = { 32.5, 25.8, 17, 1800 }, + [266] = { 32.3, 25.8, 17, 1800 }, + [267] = { 30.6, 25.4, 17, 1800 }, + [268] = { 32.9, 24.9, 17, 1800 }, + [269] = { 32.9, 24, 17, 1800 }, + [270] = { 30.5, 23.8, 17, 1800 }, + [271] = { 32.9, 23.8, 17, 1800 }, + [272] = { 33, 23.5, 17, 1800 }, + [273] = { 34.3, 23.1, 17, 1800 }, + [274] = { 32.7, 23, 17, 1800 }, + [275] = { 32.9, 22.9, 17, 1800 }, + [276] = { 33.7, 22.9, 17, 1800 }, + [277] = { 33.7, 22.7, 17, 1800 }, + [278] = { 34.5, 22.4, 17, 1800 }, + [279] = { 31, 22.3, 17, 1800 }, + [280] = { 33.9, 22, 17, 1800 }, + [281] = { 34.5, 21.9, 17, 1800 }, + [282] = { 31.9, 21.9, 17, 1800 }, + [283] = { 34.6, 21.8, 17, 1800 }, + [284] = { 31.9, 21.7, 17, 1800 }, + [285] = { 34.1, 21.6, 17, 1800 }, + [286] = { 31.9, 21.6, 17, 1800 }, + [287] = { 34.5, 21.2, 17, 1800 }, + [288] = { 47.1, 19.7, 17, 1800 }, + [289] = { 47.3, 19.4, 17, 1800 }, + [290] = { 48.3, 18.5, 17, 1800 }, + [291] = { 48.4, 18.2, 17, 1800 }, + [292] = { 46.6, 17.8, 17, 1800 }, + [293] = { 48.4, 17.5, 17, 1800 }, + [294] = { 46.5, 16.7, 17, 1800 }, + [295] = { 36.6, 16.5, 17, 1800 }, + [296] = { 31.9, 16.2, 17, 1800 }, + [297] = { 56.9, 15.2, 17, 1800 }, + [298] = { 40.5, 15.1, 17, 1800 }, + [299] = { 38, 14.9, 17, 1800 }, + [300] = { 38.4, 14.7, 17, 1800 }, + [301] = { 41.3, 14.5, 17, 1800 }, + [302] = { 37.8, 14.5, 17, 1800 }, + [303] = { 57.2, 12.9, 17, 1800 }, + [304] = { 58.6, 12.3, 17, 1800 }, + [305] = { 38, 12, 17, 1800 }, + [306] = { 58.2, 11.7, 17, 1800 }, + [307] = { 38.8, 11.1, 17, 1800 }, + [308] = { 60.6, 7.5, 17, 1800 }, + [309] = { 61.6, 6.8, 17, 1800 }, + [310] = { 60.5, 6.5, 17, 1800 }, + [311] = { 59.7, 6.1, 17, 1800 }, + [312] = { 60.5, 5.9, 17, 1800 }, + [313] = { 61.6, 5.2, 17, 1800 }, + [314] = { 54.7, 1, 17, 1800 }, + [315] = { 59.1, 0.7, 17, 1800 }, + [316] = { 32.5, 94.1, 28, 1800 }, + [317] = { 32.5, 93.9, 28, 1800 }, + [318] = { 36.9, 97.7, 36, 1800 }, + [319] = { 17.8, 97.5, 36, 1800 }, + [320] = { 18.6, 97, 36, 1800 }, + [321] = { 37, 96.5, 36, 1800 }, + [322] = { 36.9, 96.4, 36, 1800 }, + [323] = { 73.7, 94.9, 36, 1800 }, + [324] = { 20.4, 94.6, 36, 1800 }, + [325] = { 71.2, 92.5, 36, 1800 }, + [326] = { 49.7, 92.4, 36, 1800 }, + [327] = { 50.4, 92.4, 36, 1800 }, + [328] = { 28.9, 92.2, 36, 1800 }, + [329] = { 28.1, 91.3, 36, 1800 }, + [330] = { 71.5, 91.2, 36, 1800 }, + [331] = { 79.1, 90.9, 36, 1800 }, + [332] = { 78.3, 90.5, 36, 1800 }, + [333] = { 27.5, 90.1, 36, 1800 }, + [334] = { 21.8, 86.6, 36, 1800 }, + [335] = { 19.2, 85.7, 36, 1800 }, + [336] = { 19.2, 84.3, 36, 1800 }, + [337] = { 73.1, 82.6, 36, 1800 }, + [338] = { 12.3, 77.7, 36, 1800 }, + [339] = { 12.4, 76.1, 36, 1800 }, + [340] = { 63, 75.1, 36, 1800 }, + [341] = { 63.2, 73.3, 36, 1800 }, + [342] = { 19.8, 70.9, 36, 1800 }, + [343] = { 64, 70.3, 36, 1800 }, + [344] = { 68.4, 67.9, 36, 1800 }, + [345] = { 66.4, 65.2, 36, 1800 }, + [346] = { 19.9, 58.6, 36, 1800 }, + [347] = { 20.4, 57.9, 36, 1800 }, + [348] = { 19.1, 57.8, 36, 1800 }, + [349] = { 19.3, 57.7, 36, 1800 }, + [350] = { 20.8, 55.6, 36, 1800 }, + [351] = { 35, 52.7, 36, 1800 }, + [352] = { 39.9, 50.3, 36, 1800 }, + [353] = { 40.3, 50.3, 36, 1800 }, + [354] = { 63, 44.5, 36, 1800 }, + [355] = { 63, 44.2, 36, 1800 }, + [356] = { 60.8, 43.1, 36, 1800 }, + [357] = { 60.9, 42.8, 36, 1800 }, + [358] = { 38.9, 42, 36, 1800 }, + [359] = { 42.1, 40.6, 36, 1800 }, + [360] = { 40.8, 38.9, 36, 1800 }, + [361] = { 41.6, 38.7, 36, 1800 }, + [362] = { 79.5, 76.8, 38, 1800 }, + [363] = { 81.1, 65.9, 38, 1800 }, + [364] = { 81.6, 64.5, 38, 1800 }, + [365] = { 83.5, 63.7, 38, 1800 }, + [366] = { 81.6, 62.8, 38, 1800 }, + [367] = { 82.9, 62.4, 38, 1800 }, + [368] = { 73.3, 57.6, 38, 1800 }, + [369] = { 77.7, 55.6, 38, 1800 }, + [370] = { 69.3, 53.6, 38, 1800 }, + [371] = { 76.6, 53.1, 38, 1800 }, + [372] = { 72.6, 49.4, 38, 1800 }, + [373] = { 70.3, 49, 38, 1800 }, + [374] = { 69.5, 48.8, 38, 1800 }, + [375] = { 73.3, 48.2, 38, 1800 }, + [376] = { 69.6, 47.6, 38, 1800 }, + [377] = { 68, 47, 38, 1800 }, + [378] = { 73.5, 45.4, 38, 1800 }, + [379] = { 70.2, 45.3, 38, 1800 }, + [380] = { 69, 45.1, 38, 1800 }, + [381] = { 78.9, 44.3, 38, 1800 }, + [382] = { 71.5, 44.1, 38, 1800 }, + [383] = { 71.3, 43.2, 38, 1800 }, + [384] = { 78.3, 41.6, 38, 1800 }, + [385] = { 77.6, 39.2, 38, 1800 }, + [386] = { 77.3, 37.8, 38, 1800 }, + [387] = { 69.7, 37, 38, 1800 }, + [388] = { 71.6, 36, 38, 1800 }, + [389] = { 69.5, 35.1, 38, 1800 }, + [390] = { 77.7, 35, 38, 1800 }, + [391] = { 70.9, 35, 38, 1800 }, + [392] = { 68, 32.3, 38, 1800 }, + [393] = { 69.3, 32.1, 38, 1800 }, + [394] = { 69.1, 31, 38, 1800 }, + [395] = { 68.6, 30.6, 38, 1800 }, + [396] = { 72.7, 29.8, 38, 1800 }, + [397] = { 68.9, 29.8, 38, 1800 }, + [398] = { 69.8, 29.7, 38, 1800 }, + [399] = { 72.1, 29.1, 38, 1800 }, + [400] = { 72.1, 28.7, 38, 1800 }, + [401] = { 75.2, 27.5, 38, 1800 }, + [402] = { 69.4, 26.7, 38, 1800 }, + [403] = { 64.3, 26.5, 38, 1800 }, + [404] = { 68.4, 26.2, 38, 1800 }, + [405] = { 64.7, 26.1, 38, 1800 }, + [406] = { 63.7, 24.7, 38, 1800 }, + [407] = { 65, 23.3, 38, 1800 }, + [408] = { 71.8, 22.8, 38, 1800 }, + [409] = { 65.5, 22.6, 38, 1800 }, + [410] = { 73.2, 22.4, 38, 1800 }, + [411] = { 65.7, 22.3, 38, 1800 }, + [412] = { 70.5, 22.3, 38, 1800 }, + [413] = { 69.9, 20.5, 38, 1800 }, + [414] = { 70.6, 20.4, 38, 1800 }, + [415] = { 68.2, 18.7, 38, 1800 }, + [416] = { 71.5, 18.4, 38, 1800 }, + [417] = { 65.9, 77.3, 40, 1800 }, + [418] = { 59.9, 76.8, 40, 1800 }, + [419] = { 42.6, 72.7, 40, 1800 }, + [420] = { 42.1, 72.1, 40, 1800 }, + [421] = { 34.3, 72.1, 40, 1800 }, + [422] = { 44.2, 70.8, 40, 1800 }, + [423] = { 63, 69.8, 40, 1800 }, + [424] = { 61.7, 68, 40, 1800 }, + [425] = { 63.1, 68, 40, 1800 }, + [426] = { 42.2, 66.6, 40, 1800 }, + [427] = { 41.6, 66.4, 40, 1800 }, + [428] = { 41.7, 66.2, 40, 1800 }, + [429] = { 59, 59.4, 40, 1800 }, + [430] = { 60.1, 59.3, 40, 1800 }, + [431] = { 60.4, 58.3, 40, 1800 }, + [432] = { 61, 58.2, 40, 1800 }, + [433] = { 39.1, 57.5, 40, 1800 }, + [434] = { 36.9, 57.3, 40, 1800 }, + [435] = { 39.1, 57.1, 40, 1800 }, + [436] = { 36.9, 56.9, 40, 1800 }, + [437] = { 37, 56.4, 40, 1800 }, + [438] = { 43.1, 55.9, 40, 1800 }, + [439] = { 54.3, 54.8, 40, 1800 }, + [440] = { 43.6, 54.7, 40, 1800 }, + [441] = { 34.9, 54.1, 40, 1800 }, + [442] = { 53.4, 54, 40, 1800 }, + [443] = { 35.7, 53.8, 40, 1800 }, + [444] = { 34.8, 53, 40, 1800 }, + [445] = { 35.7, 52.7, 40, 1800 }, + [446] = { 56.6, 52.5, 40, 1800 }, + [447] = { 57.4, 48.3, 40, 1800 }, + [448] = { 41.3, 47.8, 40, 1800 }, + [449] = { 40.5, 47.8, 40, 1800 }, + [450] = { 37.2, 45.2, 40, 1800 }, + [451] = { 58.7, 43.9, 40, 1800 }, + [452] = { 57.7, 43.9, 40, 1800 }, + [453] = { 31.3, 43.8, 40, 1800 }, + [454] = { 59, 43.2, 40, 1800 }, + [455] = { 57.6, 42.9, 40, 1800 }, + [456] = { 47.2, 37.3, 40, 1800 }, + [457] = { 47, 37.3, 40, 1800 }, + [458] = { 55.1, 31.4, 40, 1800 }, + [459] = { 55.8, 31.2, 40, 1800 }, + [460] = { 56.2, 30.3, 40, 1800 }, + [461] = { 55.7, 30.2, 40, 1800 }, + [462] = { 43.1, 27.8, 40, 1800 }, + [463] = { 55.1, 27.6, 40, 1800 }, + [464] = { 44.5, 26.7, 40, 1800 }, + [465] = { 55.9, 26.2, 40, 1800 }, + [466] = { 43.2, 26.1, 40, 1800 }, + [467] = { 44.1, 25.4, 40, 1800 }, + [468] = { 61.8, 25.1, 40, 1800 }, + [469] = { 48.3, 25, 40, 1800 }, + [470] = { 45, 25, 40, 1800 }, + [471] = { 45.3, 23.9, 40, 1800 }, + [472] = { 44.8, 23.6, 40, 1800 }, + [473] = { 43.5, 23.2, 40, 1800 }, + [474] = { 60.8, 22.9, 40, 1800 }, + [475] = { 60.4, 22.8, 40, 1800 }, + [476] = { 59.6, 22.1, 40, 1800 }, + [477] = { 58.4, 21.9, 40, 1800 }, + [478] = { 48, 21.9, 40, 1800 }, + [479] = { 58.4, 20.4, 40, 1800 }, + [480] = { 61, 19.6, 40, 1800 }, + [481] = { 56.3, 19.4, 40, 1800 }, + [482] = { 56.8, 19.2, 40, 1800 }, + [483] = { 49.5, 18.6, 40, 1800 }, + [484] = { 40.5, 18, 40, 1800 }, + [485] = { 61.5, 17.7, 40, 1800 }, + [486] = { 43.1, 17.2, 40, 1800 }, + [487] = { 57.2, 16.9, 40, 1800 }, + [488] = { 60.5, 16.9, 40, 1800 }, + [489] = { 43.1, 16.4, 40, 1800 }, + [490] = { 58.9, 15.2, 40, 1800 }, + [491] = { 72.7, 84.1, 44, 1800 }, + [492] = { 70.9, 83.5, 44, 1800 }, + [493] = { 63.5, 82.9, 44, 1800 }, + [494] = { 65, 82.1, 44, 1800 }, + [495] = { 65.7, 81.1, 44, 1800 }, + [496] = { 61.6, 79.4, 44, 1800 }, + [497] = { 38, 79.1, 44, 1800 }, + [498] = { 70.5, 78.2, 44, 1800 }, + [499] = { 67.8, 77.2, 44, 1800 }, + [500] = { 58.6, 76.9, 44, 1800 }, + [501] = { 73.8, 76.2, 44, 1800 }, + [502] = { 72.1, 75.4, 44, 1800 }, + [503] = { 26.4, 75.4, 44, 1800 }, + [504] = { 61.4, 75.2, 44, 1800 }, + [505] = { 73.9, 74.8, 44, 1800 }, + [506] = { 24.9, 74.7, 44, 1800 }, + [507] = { 77.8, 73.4, 44, 1800 }, + [508] = { 76.5, 73.1, 44, 1800 }, + [509] = { 57.6, 72.9, 44, 1800 }, + [510] = { 71, 72.2, 44, 1800 }, + [511] = { 60, 71.6, 44, 1800 }, + [512] = { 32.2, 71.4, 44, 1800 }, + [513] = { 55.8, 71.3, 44, 1800 }, + [514] = { 57.8, 71.3, 44, 1800 }, + [515] = { 74.6, 71, 44, 1800 }, + [516] = { 37.2, 71, 44, 1800 }, + [517] = { 35.2, 71, 44, 1800 }, + [518] = { 71.3, 70.9, 44, 1800 }, + [519] = { 44.5, 70.8, 44, 1800 }, + [520] = { 63.9, 69.7, 44, 1800 }, + [521] = { 63, 69.5, 44, 1800 }, + [522] = { 26, 69.1, 44, 1800 }, + [523] = { 58.2, 69.1, 44, 1800 }, + [524] = { 58.1, 68.6, 44, 1800 }, + [525] = { 44, 68.4, 44, 1800 }, + [526] = { 34.8, 67.8, 44, 1800 }, + [527] = { 58.5, 67.2, 44, 1800 }, + [528] = { 37, 66.8, 44, 1800 }, + [529] = { 83.1, 64.9, 44, 1800 }, + [530] = { 21.7, 64.7, 44, 1800 }, + [531] = { 23.5, 64.1, 44, 1800 }, + [532] = { 68.4, 63.8, 44, 1800 }, + [533] = { 58.5, 63.6, 44, 1800 }, + [534] = { 21.2, 62.6, 44, 1800 }, + [535] = { 75.7, 62, 44, 1800 }, + [536] = { 58.8, 61.5, 44, 1800 }, + [537] = { 81.9, 61.3, 44, 1800 }, + [538] = { 69.5, 58.7, 44, 1800 }, + [539] = { 81.3, 56.7, 44, 1800 }, + [540] = { 75.4, 56.1, 44, 1800 }, + [541] = { 74.2, 55.3, 44, 1800 }, + [542] = { 72.6, 55.3, 44, 1800 }, + [543] = { 65.5, 55.2, 44, 1800 }, + [544] = { 65.7, 54.8, 44, 1800 }, + [545] = { 67.1, 54.3, 44, 1800 }, + [546] = { 66.2, 51.6, 44, 1800 }, + [547] = { 62.3, 51, 44, 1800 }, + [548] = { 73.2, 51, 44, 1800 }, + [549] = { 80.3, 50.8, 44, 1800 }, + [550] = { 80.1, 50.4, 44, 1800 }, + [551] = { 81.9, 50.1, 44, 1800 }, + [552] = { 61.6, 49, 44, 1800 }, + [553] = { 84.5, 46.2, 44, 1800 }, + [554] = { 77.3, 45.7, 44, 1800 }, + [555] = { 75.1, 44.5, 44, 1800 }, + [556] = { 51.5, 44.3, 44, 1800 }, + [557] = { 18.8, 43.2, 44, 1800 }, + [558] = { 75.1, 42.3, 44, 1800 }, + [559] = { 40.2, 41.2, 44, 1800 }, + [560] = { 39.8, 41.2, 44, 1800 }, + [561] = { 35.5, 40.5, 44, 1800 }, + [562] = { 36.9, 39.6, 44, 1800 }, + [563] = { 73.7, 39, 44, 1800 }, + [564] = { 75.7, 38.3, 44, 1800 }, + [565] = { 39, 37.7, 44, 1800 }, + [566] = { 49.3, 36.9, 44, 1800 }, + [567] = { 79.7, 36.7, 44, 1800 }, + [568] = { 49.1, 35.4, 44, 1800 }, + [569] = { 21.1, 34.2, 44, 1800 }, + [570] = { 79.2, 32.9, 44, 1800 }, + [571] = { 49.2, 25.8, 44, 1800 }, + [572] = { 49.4, 23.1, 44, 1800 }, + [573] = { 42.5, 19.5, 44, 1800 }, + [574] = { 41.3, 17.9, 44, 1800 }, + [575] = { 46.7, 17.8, 44, 1800 }, + [576] = { 41.1, 17.3, 44, 1800 }, + [577] = { 47.5, 17.2, 44, 1800 }, + [578] = { 39.9, 15.5, 44, 1800 }, + [579] = { 47.5, 15.3, 44, 1800 }, + [580] = { 37.8, 14.1, 44, 1800 }, + [581] = { 39.2, 13, 44, 1800 }, + [582] = { 33.5, 7.4, 44, 1800 }, + [583] = { 33.9, 6.6, 44, 1800 }, + [584] = { 34.9, 6.2, 44, 1800 }, + [585] = { 33.9, 6.1, 44, 1800 }, + [586] = { 34.6, 5.9, 44, 1800 }, + [587] = { 25.5, 97.1, 45, 1800 }, + [588] = { 26, 96.9, 45, 1800 }, + [589] = { 57.1, 40.1, 45, 1800 }, + [590] = { 53.6, 39.3, 45, 1800 }, + [591] = { 31.8, 30.7, 45, 1800 }, + [592] = { 33.4, 30.4, 45, 1800 }, + [593] = { 69.3, 84.6, 46, 1800 }, + [594] = { 69.7, 84, 46, 1800 }, + [595] = { 70.4, 83.7, 46, 1800 }, + [596] = { 69.7, 83.6, 46, 1800 }, + [597] = { 70.1, 83.4, 46, 1800 }, + [598] = { 67.3, 84.7, 130, 1800 }, + [599] = { 67.1, 84.6, 130, 1800 }, + [600] = { 69.4, 82.2, 130, 1800 }, + [601] = { 69.5, 81, 130, 1800 }, + [602] = { 47.4, 71, 130, 1800 }, + [603] = { 47, 69.1, 130, 1800 }, + [604] = { 47.6, 69.1, 130, 1800 }, + [605] = { 45.8, 68.8, 130, 1800 }, + [606] = { 47, 68.2, 130, 1800 }, + [607] = { 46.3, 68.2, 130, 1800 }, + [608] = { 45.8, 68, 130, 1800 }, + [609] = { 46.2, 68, 130, 1800 }, + [610] = { 46.7, 67.4, 130, 1800 }, + [611] = { 59.9, 67.1, 130, 1800 }, + [612] = { 59.7, 67, 130, 1800 }, + [613] = { 60.6, 66.7, 130, 1800 }, + [614] = { 60.4, 66.7, 130, 1800 }, + [615] = { 59.4, 66.5, 130, 1800 }, + [616] = { 59.9, 66.1, 130, 1800 }, + [617] = { 60.5, 65.4, 130, 1800 }, + [618] = { 60.4, 64.7, 130, 1800 }, + [619] = { 62.2, 62.4, 130, 1800 }, + [620] = { 62.3, 62.3, 130, 1800 }, + [621] = { 62, 62.3, 130, 1800 }, + [622] = { 59.8, 62.2, 130, 1800 }, + [623] = { 61.1, 62.1, 130, 1800 }, + [624] = { 60.9, 62, 130, 1800 }, + [625] = { 64, 61.5, 130, 1800 }, + [626] = { 62.1, 61.3, 130, 1800 }, + [627] = { 63.8, 61.1, 130, 1800 }, + [628] = { 61.9, 61.1, 130, 1800 }, + [629] = { 63.9, 60.8, 130, 1800 }, + [630] = { 60.3, 60.7, 130, 1800 }, + [631] = { 61, 60.2, 130, 1800 }, + [632] = { 64.3, 59.3, 130, 1800 }, + [633] = { 64.2, 58, 130, 1800 }, + [634] = { 49.3, 57.5, 130, 1800 }, + [635] = { 48.3, 57.4, 130, 1800 }, + [636] = { 64.9, 57, 130, 1800 }, + [637] = { 63.9, 56.9, 130, 1800 }, + [638] = { 50, 56.5, 130, 1800 }, + [639] = { 63.8, 55.8, 130, 1800 }, + [640] = { 47, 55.6, 130, 1800 }, + [641] = { 64.4, 55.5, 130, 1800 }, + [642] = { 47.6, 55.3, 130, 1800 }, + [643] = { 46.3, 54.7, 130, 1800 }, + [644] = { 46.2, 53.9, 130, 1800 }, + [645] = { 46.3, 50.9, 130, 1800 }, + [646] = { 48.9, 46.7, 130, 1800 }, + [647] = { 47.7, 45.8, 130, 1800 }, + [648] = { 36.3, 98.8, 148, 1800 }, + [649] = { 36, 98.8, 148, 1800 }, + [650] = { 33.2, 97.7, 148, 1800 }, + [651] = { 38.6, 87.1, 148, 1800 }, + [652] = { 36.2, 86.8, 148, 1800 }, + [653] = { 36.1, 85.6, 148, 1800 }, + [654] = { 36.9, 85.6, 148, 1800 }, + [655] = { 35.5, 84.7, 148, 1800 }, + [656] = { 36.9, 84.7, 148, 1800 }, + [657] = { 35.2, 83.7, 148, 1800 }, + [658] = { 35.2, 83.5, 148, 1800 }, + [659] = { 42, 62.9, 148, 1800 }, + [660] = { 41.3, 62.6, 148, 1800 }, + [661] = { 42.1, 62.4, 148, 1800 }, + [662] = { 43.7, 62.3, 148, 1800 }, + [663] = { 43.5, 60.7, 148, 1800 }, + [664] = { 42.6, 60.5, 148, 1800 }, + [665] = { 43.9, 58.4, 148, 1800 }, + [666] = { 43.2, 58, 148, 1800 }, + [667] = { 43.4, 57.4, 148, 1800 }, + [668] = { 42.4, 57.3, 148, 1800 }, + [669] = { 44.5, 41.2, 148, 1800 }, + [670] = { 45.5, 40, 148, 1800 }, + [671] = { 44.4, 39.9, 148, 1800 }, + [672] = { 45, 37.4, 148, 1800 }, + [673] = { 47.9, 37.1, 148, 1800 }, + [674] = { 45.6, 37.1, 148, 1800 }, + [675] = { 46.3, 37, 148, 1800 }, + [676] = { 45, 36.7, 148, 1800 }, + [677] = { 44.5, 36.7, 148, 1800 }, + [678] = { 46.4, 36.3, 148, 1800 }, + [679] = { 45.8, 35.3, 148, 1800 }, + [680] = { 56.2, 21.7, 148, 1800 }, + [681] = { 58.2, 21.6, 148, 1800 }, + [682] = { 57.6, 21.6, 148, 1800 }, + [683] = { 59, 20.7, 148, 1800 }, + [684] = { 61.7, 20.5, 148, 1800 }, + [685] = { 56.8, 20.3, 148, 1800 }, + [686] = { 56.2, 20.2, 148, 1800 }, + [687] = { 60.6, 16.6, 148, 1800 }, + [688] = { 59.4, 16.2, 148, 1800 }, + [689] = { 60.2, 15.6, 148, 1800 }, + [690] = { 72.4, 83.4, 215, 1800 }, + [691] = { 72.7, 81.3, 215, 1800 }, + [692] = { 66, 68.8, 267, 1800 }, + [693] = { 39.3, 67.4, 267, 1800 }, + [694] = { 41.4, 67.2, 267, 1800 }, + [695] = { 40.7, 67.1, 267, 1800 }, + [696] = { 42.6, 66.2, 267, 1800 }, + [697] = { 70.9, 65.5, 267, 1800 }, + [698] = { 71, 64.6, 267, 1800 }, + [699] = { 69.9, 64.4, 267, 1800 }, + [700] = { 69.1, 63.7, 267, 1800 }, + [701] = { 45, 63.6, 267, 1800 }, + [702] = { 43.6, 63.3, 267, 1800 }, + [703] = { 69.2, 63.2, 267, 1800 }, + [704] = { 68.7, 63.2, 267, 1800 }, + [705] = { 37.2, 62.9, 267, 1800 }, + [706] = { 44.7, 62.5, 267, 1800 }, + [707] = { 38.1, 62.1, 267, 1800 }, + [708] = { 37.5, 61.2, 267, 1800 }, + [709] = { 23.8, 61.1, 267, 1800 }, + [710] = { 41.2, 59.5, 267, 1800 }, + [711] = { 58.5, 57.6, 267, 1800 }, + [712] = { 70.9, 57, 267, 1800 }, + [713] = { 69.6, 57, 267, 1800 }, + [714] = { 68.4, 57, 267, 1800 }, + [715] = { 57.4, 56.7, 267, 1800 }, + [716] = { 37, 56.6, 267, 1800 }, + [717] = { 69.6, 56.3, 267, 1800 }, + [718] = { 68.4, 56, 267, 1800 }, + [719] = { 27.7, 55.7, 267, 1800 }, + [720] = { 17.2, 55.7, 267, 1800 }, + [721] = { 71.2, 55, 267, 1800 }, + [722] = { 17.5, 54.9, 267, 1800 }, + [723] = { 36.7, 54.8, 267, 1800 }, + [724] = { 27.3, 54.8, 267, 1800 }, + [725] = { 17.6, 54.6, 267, 1800 }, + [726] = { 26.9, 54.4, 267, 1800 }, + [727] = { 63.5, 54.4, 267, 1800 }, + [728] = { 16.7, 53.8, 267, 1800 }, + [729] = { 36.8, 53.4, 267, 1800 }, + [730] = { 37.4, 53.3, 267, 1800 }, + [731] = { 57.2, 52.6, 267, 1800 }, + [732] = { 57.7, 52.5, 267, 1800 }, + [733] = { 13.8, 51.8, 267, 1800 }, + [734] = { 63.9, 51.8, 267, 1800 }, + [735] = { 13.6, 51.7, 267, 1800 }, + [736] = { 48.5, 50.9, 267, 1800 }, + [737] = { 19, 50.2, 267, 1800 }, + [738] = { 44.1, 49.8, 267, 1800 }, + [739] = { 44.1, 48.6, 267, 1800 }, + [740] = { 16.6, 48.5, 267, 1800 }, + [741] = { 16.7, 47, 267, 1800 }, + [742] = { 44.4, 46.4, 267, 1800 }, + [743] = { 43.8, 46.2, 267, 1800 }, + [744] = { 79.6, 45.5, 267, 1800 }, + [745] = { 28.4, 42.5, 267, 1800 }, + [746] = { 29.3, 42, 267, 1800 }, + [747] = { 20.9, 41.3, 267, 1800 }, + [748] = { 41, 41.1, 267, 1800 }, + [749] = { 39.8, 41, 267, 1800 }, + [750] = { 28.6, 41, 267, 1800 }, + [751] = { 22.3, 40.9, 267, 1800 }, + [752] = { 77.4, 40.6, 267, 1800 }, + [753] = { 28.7, 40.5, 267, 1800 }, + [754] = { 30.8, 40.3, 267, 1800 }, + [755] = { 76.6, 40.1, 267, 1800 }, + [756] = { 40.7, 40, 267, 1800 }, + [757] = { 30.7, 39.9, 267, 1800 }, + [758] = { 39.6, 39.8, 267, 1800 }, + [759] = { 29.4, 39.7, 267, 1800 }, + [760] = { 29.5, 39.4, 267, 1800 }, + [761] = { 39.7, 39.1, 267, 1800 }, + [762] = { 24.5, 38.9, 267, 1800 }, + [763] = { 41.1, 38.8, 267, 1800 }, + [764] = { 40.8, 38.3, 267, 1800 }, + [765] = { 39.7, 38.2, 267, 1800 }, + [766] = { 41.2, 33.9, 267, 1800 }, + [767] = { 24.4, 33.7, 267, 1800 }, + [768] = { 25.2, 33.3, 267, 1800 }, + [769] = { 41.3, 32.9, 267, 1800 }, + [770] = { 41.1, 32.8, 267, 1800 }, + [771] = { 73.3, 31.5, 267, 1800 }, + [772] = { 26.7, 31.2, 267, 1800 }, + [773] = { 81, 30.7, 267, 1800 }, + [774] = { 79, 30, 267, 1800 }, + [775] = { 71.2, 29.3, 267, 1800 }, + [776] = { 52.3, 29.3, 267, 1800 }, + [777] = { 53, 29.3, 267, 1800 }, + [778] = { 34.1, 29.1, 267, 1800 }, + [779] = { 33.4, 28.4, 267, 1800 }, + [780] = { 71.4, 28.2, 267, 1800 }, + [781] = { 78.1, 28, 267, 1800 }, + [782] = { 79.2, 27.8, 267, 1800 }, + [783] = { 77.3, 27.6, 267, 1800 }, + [784] = { 32.9, 27.2, 267, 1800 }, + [785] = { 28, 24.2, 267, 1800 }, + [786] = { 25.7, 23.4, 267, 1800 }, + [787] = { 25.7, 22.2, 267, 1800 }, + [788] = { 9.5, 21.3, 267, 1800 }, + [789] = { 9.2, 20.9, 267, 1800 }, + [790] = { 72.8, 20.7, 267, 1800 }, + [791] = { 9.4, 20.5, 267, 1800 }, + [792] = { 9.9, 18.4, 267, 1800 }, + [793] = { 9.8, 16.8, 267, 1800 }, + [794] = { 19.7, 16.4, 267, 1800 }, + [795] = { 10.8, 15.4, 267, 1800 }, + [796] = { 19.7, 15, 267, 1800 }, + [797] = { 64, 14.2, 267, 1800 }, + [798] = { 10.1, 13.5, 267, 1800 }, + [799] = { 64.2, 12.6, 267, 1800 }, + [800] = { 64.8, 9.9, 267, 1800 }, + [801] = { 68.7, 7.9, 267, 1800 }, + [802] = { 67, 5.5, 267, 1800 }, + [803] = { 80.2, 81.3, 331, 1800 }, + [804] = { 87.9, 80.8, 331, 1800 }, + [805] = { 79.1, 80.3, 331, 1800 }, + [806] = { 80, 80.1, 331, 1800 }, + [807] = { 87.1, 80.1, 331, 1800 }, + [808] = { 82.5, 79.8, 331, 1800 }, + [809] = { 81, 79.5, 331, 1800 }, + [810] = { 88, 79.2, 331, 1800 }, + [811] = { 61.4, 78.9, 331, 1800 }, + [812] = { 57, 78.3, 331, 1800 }, + [813] = { 57.5, 78, 331, 1800 }, + [814] = { 87.9, 77.7, 331, 1800 }, + [815] = { 61.5, 77.7, 331, 1800 }, + [816] = { 84.5, 77.3, 331, 1800 }, + [817] = { 81.9, 77, 331, 1800 }, + [818] = { 71.9, 74, 331, 1800 }, + [819] = { 72.1, 73.9, 331, 1800 }, + [820] = { 75.3, 73.9, 331, 1800 }, + [821] = { 69.7, 73.9, 331, 1800 }, + [822] = { 60.1, 73.1, 331, 1800 }, + [823] = { 68.4, 72.8, 331, 1800 }, + [824] = { 53.2, 72.5, 331, 1800 }, + [825] = { 56, 72.3, 331, 1800 }, + [826] = { 59, 72.2, 331, 1800 }, + [827] = { 71.5, 72, 331, 1800 }, + [828] = { 53.2, 71.2, 331, 1800 }, + [829] = { 55.8, 71.1, 331, 1800 }, + [830] = { 76, 67.3, 331, 1800 }, + [831] = { 53.9, 65, 331, 1800 }, + [832] = { 57.9, 64.2, 331, 1800 }, + [833] = { 48.3, 63.7, 331, 1800 }, + [834] = { 56.6, 63.4, 331, 1800 }, + [835] = { 57.4, 63.3, 331, 1800 }, + [836] = { 49.6, 63, 331, 1800 }, + [837] = { 53.7, 62.2, 331, 1800 }, + [838] = { 39.6, 62.1, 331, 1800 }, + [839] = { 78.7, 61.8, 331, 1800 }, + [840] = { 26.1, 61.7, 331, 1800 }, + [841] = { 55.4, 61.7, 331, 1800 }, + [842] = { 56.1, 61.6, 331, 1800 }, + [843] = { 47.1, 61.5, 331, 1800 }, + [844] = { 41.8, 61.4, 331, 1800 }, + [845] = { 61.9, 61.3, 331, 1800 }, + [846] = { 79.6, 61.2, 331, 1800 }, + [847] = { 90.2, 60.8, 331, 1800 }, + [848] = { 53.9, 60.8, 331, 1800 }, + [849] = { 25.8, 60.7, 331, 1800 }, + [850] = { 52.9, 60.2, 331, 1800 }, + [851] = { 32.2, 60.1, 331, 1800 }, + [852] = { 32.5, 59.9, 331, 1800 }, + [853] = { 41.5, 59.9, 331, 1800 }, + [854] = { 92.3, 59.6, 331, 1800 }, + [855] = { 50, 59.3, 331, 1800 }, + [856] = { 50.8, 59.3, 331, 1800 }, + [857] = { 32.3, 58.6, 331, 1800 }, + [858] = { 58.3, 57.3, 331, 1800 }, + [859] = { 66.6, 57.1, 331, 1800 }, + [860] = { 58.4, 57.1, 331, 1800 }, + [861] = { 67.5, 55.4, 331, 1800 }, + [862] = { 34.2, 54.4, 331, 1800 }, + [863] = { 66.6, 54, 331, 1800 }, + [864] = { 34.6, 54, 331, 1800 }, + [865] = { 92.1, 53.3, 331, 1800 }, + [866] = { 66.1, 52.8, 331, 1800 }, + [867] = { 65.9, 52.2, 331, 1800 }, + [868] = { 92.5, 51.6, 331, 1800 }, + [869] = { 80.7, 51.5, 331, 1800 }, + [870] = { 80, 51.5, 331, 1800 }, + [871] = { 81.8, 51.1, 331, 1800 }, + [872] = { 25.8, 50.6, 331, 1800 }, + [873] = { 25.4, 49.9, 331, 1800 }, + [874] = { 24.6, 49.6, 331, 1800 }, + [875] = { 82.1, 49.3, 331, 1800 }, + [876] = { 24.5, 49.1, 331, 1800 }, + [877] = { 79.8, 48.2, 331, 1800 }, + [878] = { 24.3, 48.2, 331, 1800 }, + [879] = { 80.9, 47.9, 331, 1800 }, + [880] = { 81.7, 46.3, 331, 1800 }, + [881] = { 82.4, 46.2, 331, 1800 }, + [882] = { 88.9, 45.5, 331, 1800 }, + [883] = { 76.7, 44.9, 331, 1800 }, + [884] = { 30.3, 44.8, 331, 1800 }, + [885] = { 76.4, 44.5, 331, 1800 }, + [886] = { 19, 42.7, 331, 1800 }, + [887] = { 31.3, 38, 331, 1800 }, + [888] = { 38.1, 34.8, 331, 1800 }, + [889] = { 37.6, 33.7, 331, 1800 }, + [890] = { 15.4, 31.6, 331, 1800 }, + [891] = { 22.5, 31.3, 331, 1800 }, + [892] = { 31.3, 31.1, 331, 1800 }, + [893] = { 21.8, 29.3, 331, 1800 }, + [894] = { 13.3, 27.2, 331, 1800 }, + [895] = { 13.3, 26.5, 331, 1800 }, + [896] = { 14, 25.6, 331, 1800 }, + [897] = { 15.3, 25.2, 331, 1800 }, + [898] = { 13.2, 24.5, 331, 1800 }, + [899] = { 32, 21.4, 331, 1800 }, + [900] = { 19.4, 18.6, 331, 1800 }, + [901] = { 19.7, 17, 331, 1800 }, + [902] = { 19.4, 17, 331, 1800 }, + [903] = { 16.2, 15.7, 331, 1800 }, + [904] = { 94, 46.5, 357, 1800 }, + [905] = { 92.8, 43.9, 357, 1800 }, + [906] = { 91, 40.4, 357, 1800 }, + [907] = { 91.1, 40.3, 357, 1800 }, + [908] = { 81.7, 90.9, 400, 1800 }, + [909] = { 67.9, 90.3, 400, 1800 }, + [910] = { 67, 89.8, 400, 1800 }, + [911] = { 68.9, 86.3, 400, 1800 }, + [912] = { 68, 85.3, 400, 1800 }, + [913] = { 69.4, 85.1, 400, 1800 }, + [914] = { 86, 85.1, 400, 1800 }, + [915] = { 68.4, 83, 400, 1800 }, + [916] = { 66.6, 81.4, 400, 1800 }, + [917] = { 69.8, 75, 400, 1800 }, + [918] = { 69.8, 71.4, 400, 1800 }, + [919] = { 88.2, 70.3, 400, 1800 }, + [920] = { 88.5, 69.5, 400, 1800 }, + [921] = { 67.5, 65, 400, 1800 }, + [922] = { 67.4, 63.2, 400, 1800 }, + [923] = { 66.6, 61.6, 400, 1800 }, + [924] = { 88, 60.7, 400, 1800 }, + [925] = { 44.9, 60.4, 400, 1800 }, + [926] = { 86.5, 57.1, 400, 1800 }, + [927] = { 51.7, 54.6, 400, 1800 }, + [928] = { 70.8, 54.3, 400, 1800 }, + [929] = { 70.3, 54.1, 400, 1800 }, + [930] = { 58.7, 54, 400, 1800 }, + [931] = { 34.5, 53.9, 400, 1800 }, + [932] = { 51.2, 53.7, 400, 1800 }, + [933] = { 33.8, 53.3, 400, 1800 }, + [934] = { 58.8, 52.6, 400, 1800 }, + [935] = { 33.8, 52.3, 400, 1800 }, + [936] = { 79.2, 50.4, 400, 1800 }, + [937] = { 64.5, 49.9, 400, 1800 }, + [938] = { 55.8, 48.3, 400, 1800 }, + [939] = { 54.9, 48.1, 400, 1800 }, + [940] = { 51, 41.9, 400, 1800 }, + [941] = { 45.2, 41.5, 400, 1800 }, + [942] = { 27.8, 40.7, 400, 1800 }, + [943] = { 22, 40.2, 400, 1800 }, + [944] = { 36.4, 40, 400, 1800 }, + [945] = { 27.1, 39.6, 400, 1800 }, + [946] = { 42.2, 39.1, 400, 1800 }, + [947] = { 43.6, 37.2, 400, 1800 }, + [948] = { 40.6, 37.1, 400, 1800 }, + [949] = { 42, 37, 400, 1800 }, + [950] = { 41.9, 36.9, 400, 1800 }, + [951] = { 34.4, 34.5, 400, 1800 }, + [952] = { 34.2, 34.2, 400, 1800 }, + [953] = { 15.7, 31.8, 400, 1800 }, + [954] = { 14.8, 30.1, 400, 1800 }, + [955] = { 14.8, 29.9, 400, 1800 }, + [956] = { 14.1, 26.9, 400, 1800 }, + [957] = { 13.5, 25.9, 400, 1800 }, + [958] = { 23.1, 25, 400, 1800 }, + [959] = { 19.3, 23.4, 400, 1800 }, + [960] = { 20.7, 22.8, 400, 1800 }, + [961] = { 15, 18.9, 400, 1800 }, + [962] = { 13, 14.8, 400, 1800 }, + [963] = { 10.2, 9.2, 400, 1800 }, + [964] = { 10.4, 9, 400, 1800 }, + [965] = { 48.6, 78.7, 405, 1800 }, + [966] = { 49.5, 77.2, 405, 1800 }, + [967] = { 48.9, 74.9, 405, 1800 }, + [968] = { 50.7, 74.3, 405, 1800 }, + [969] = { 50.4, 73.4, 405, 1800 }, + [970] = { 49.7, 72.8, 405, 1800 }, + [971] = { 50.7, 72.1, 405, 1800 }, + [972] = { 50.1, 71, 405, 1800 }, + [973] = { 51.7, 69.9, 405, 1800 }, + [974] = { 61.4, 61.7, 405, 1800 }, + [975] = { 36.6, 61.4, 405, 1800 }, + [976] = { 37.3, 61.3, 405, 1800 }, + [977] = { 36.6, 61.2, 405, 1800 }, + [978] = { 37.3, 61.2, 405, 1800 }, + [979] = { 35.3, 60.5, 405, 1800 }, + [980] = { 37, 59.9, 405, 1800 }, + [981] = { 34.4, 56.7, 405, 1800 }, + [982] = { 33.4, 54.9, 405, 1800 }, + [983] = { 64.4, 54.2, 405, 1800 }, + [984] = { 29, 53.3, 405, 1800 }, + [985] = { 33.5, 53, 405, 1800 }, + [986] = { 33.5, 52.7, 405, 1800 }, + [987] = { 55, 46.2, 405, 1800 }, + [988] = { 64.2, 44.8, 405, 1800 }, + [989] = { 54.2, 44.8, 405, 1800 }, + [990] = { 54.7, 44.6, 405, 1800 }, + [991] = { 61.3, 44.1, 405, 1800 }, + [992] = { 51.3, 43.4, 405, 1800 }, + [993] = { 52.6, 42.7, 405, 1800 }, + [994] = { 54.6, 30.8, 405, 1800 }, + [995] = { 51.7, 29.5, 405, 1800 }, + [996] = { 51.9, 28.4, 405, 1800 }, + [997] = { 75.5, 26.9, 405, 1800 }, + [998] = { 53.7, 26.5, 405, 1800 }, + [999] = { 75.4, 25.8, 405, 1800 }, + [1000] = { 54, 25.7, 405, 1800 }, + [1001] = { 53.2, 25.5, 405, 1800 }, + [1002] = { 79, 24.9, 405, 1800 }, + [1003] = { 78, 24.4, 405, 1800 }, + [1004] = { 79.5, 23.1, 405, 1800 }, + [1005] = { 78.7, 20.2, 405, 1800 }, + [1006] = { 78.6, 18.3, 405, 1800 }, + [1007] = { 70.6, 17.4, 405, 1800 }, + [1008] = { 78.8, 17.1, 405, 1800 }, + [1009] = { 72.6, 16.7, 405, 1800 }, + [1010] = { 73.6, 16.6, 405, 1800 }, + [1011] = { 54.7, 91.8, 406, 1800 }, + [1012] = { 73.9, 90.4, 406, 1800 }, + [1013] = { 75, 89.9, 406, 1800 }, + [1014] = { 54, 89.7, 406, 1800 }, + [1015] = { 72.8, 89.4, 406, 1800 }, + [1016] = { 76.7, 89.1, 406, 1800 }, + [1017] = { 76.4, 89, 406, 1800 }, + [1018] = { 73.6, 88.4, 406, 1800 }, + [1019] = { 54, 88.3, 406, 1800 }, + [1020] = { 69.6, 87.8, 406, 1800 }, + [1021] = { 77.4, 87.6, 406, 1800 }, + [1022] = { 48, 87.5, 406, 1800 }, + [1023] = { 54.2, 87.3, 406, 1800 }, + [1024] = { 49.5, 87, 406, 1800 }, + [1025] = { 50.3, 87, 406, 1800 }, + [1026] = { 72.5, 86.8, 406, 1800 }, + [1027] = { 73.2, 86.8, 406, 1800 }, + [1028] = { 67.4, 86.4, 406, 1800 }, + [1029] = { 70.4, 86.3, 406, 1800 }, + [1030] = { 70.9, 86.2, 406, 1800 }, + [1031] = { 77.4, 86.1, 406, 1800 }, + [1032] = { 73.4, 85.7, 406, 1800 }, + [1033] = { 77.4, 85.7, 406, 1800 }, + [1034] = { 77.6, 85.2, 406, 1800 }, + [1035] = { 79.7, 84.5, 406, 1800 }, + [1036] = { 77.2, 84.4, 406, 1800 }, + [1037] = { 77.4, 84.2, 406, 1800 }, + [1038] = { 78.7, 84.1, 406, 1800 }, + [1039] = { 78.7, 83.9, 406, 1800 }, + [1040] = { 80, 83.3, 406, 1800 }, + [1041] = { 74.3, 83.1, 406, 1800 }, + [1042] = { 71.6, 82.8, 406, 1800 }, + [1043] = { 79.1, 82.6, 406, 1800 }, + [1044] = { 80.1, 82.6, 406, 1800 }, + [1045] = { 75.7, 82.5, 406, 1800 }, + [1046] = { 71.6, 82.3, 406, 1800 }, + [1047] = { 80.3, 82.3, 406, 1800 }, + [1048] = { 75.7, 82.1, 406, 1800 }, + [1049] = { 79.5, 82, 406, 1800 }, + [1050] = { 75.7, 82, 406, 1800 }, + [1051] = { 61.1, 82, 406, 1800 }, + [1052] = { 62.5, 81.9, 406, 1800 }, + [1053] = { 61.8, 81.8, 406, 1800 }, + [1054] = { 80.2, 81.4, 406, 1800 }, + [1055] = { 60.2, 79.8, 406, 1800 }, + [1056] = { 60.1, 79, 406, 1800 }, + [1057] = { 83.7, 73.4, 406, 1800 }, + [1058] = { 75.8, 72.8, 406, 1800 }, + [1059] = { 59.1, 72.5, 406, 1800 }, + [1060] = { 59.4, 72, 406, 1800 }, + [1061] = { 34.8, 71.6, 406, 1800 }, + [1062] = { 34.6, 70, 406, 1800 }, + [1063] = { 42.6, 68.7, 406, 1800 }, + [1064] = { 34.8, 68.6, 406, 1800 }, + [1065] = { 33.8, 68.6, 406, 1800 }, + [1066] = { 39.5, 67.4, 406, 1800 }, + [1067] = { 36.3, 67.4, 406, 1800 }, + [1068] = { 74.4, 67, 406, 1800 }, + [1069] = { 41.6, 66.8, 406, 1800 }, + [1070] = { 41.4, 66.2, 406, 1800 }, + [1071] = { 40.9, 65, 406, 1800 }, + [1072] = { 62.8, 64.1, 406, 1800 }, + [1073] = { 34.2, 63.9, 406, 1800 }, + [1074] = { 34.9, 63.8, 406, 1800 }, + [1075] = { 40.5, 63.6, 406, 1800 }, + [1076] = { 38.3, 62.9, 406, 1800 }, + [1077] = { 37.7, 62.9, 406, 1800 }, + [1078] = { 40.4, 62.6, 406, 1800 }, + [1079] = { 75.7, 62.6, 406, 1800 }, + [1080] = { 36.4, 61.4, 406, 1800 }, + [1081] = { 61, 61, 406, 1800 }, + [1082] = { 68.8, 60.3, 406, 1800 }, + [1083] = { 72, 60.2, 406, 1800 }, + [1084] = { 71.2, 60, 406, 1800 }, + [1085] = { 36.3, 59.5, 406, 1800 }, + [1086] = { 71.3, 59.4, 406, 1800 }, + [1087] = { 65.6, 56.1, 406, 1800 }, + [1088] = { 72.2, 55.2, 406, 1800 }, + [1089] = { 41.2, 55.2, 406, 1800 }, + [1090] = { 40.7, 54.7, 406, 1800 }, + [1091] = { 41.5, 54.5, 406, 1800 }, + [1092] = { 75.7, 54.4, 406, 1800 }, + [1093] = { 41.7, 53.8, 406, 1800 }, + [1094] = { 40.8, 53.5, 406, 1800 }, + [1095] = { 51.9, 53.4, 406, 1800 }, + [1096] = { 66, 53.3, 406, 1800 }, + [1097] = { 68.1, 53.3, 406, 1800 }, + [1098] = { 41, 52.4, 406, 1800 }, + [1099] = { 61.9, 51.9, 406, 1800 }, + [1100] = { 70.9, 51.7, 406, 1800 }, + [1101] = { 69.9, 51.7, 406, 1800 }, + [1102] = { 33.7, 51.6, 406, 1800 }, + [1103] = { 70.6, 51.6, 406, 1800 }, + [1104] = { 47.5, 51.4, 406, 1800 }, + [1105] = { 71.6, 51.2, 406, 1800 }, + [1106] = { 64.4, 51.1, 406, 1800 }, + [1107] = { 70.1, 50, 406, 1800 }, + [1108] = { 61.6, 49.8, 406, 1800 }, + [1109] = { 55.1, 49.8, 406, 1800 }, + [1110] = { 54.3, 49.5, 406, 1800 }, + [1111] = { 71.6, 48.9, 406, 1800 }, + [1112] = { 72, 48.2, 406, 1800 }, + [1113] = { 53, 47.9, 406, 1800 }, + [1114] = { 52, 47.8, 406, 1800 }, + [1115] = { 70.3, 47.4, 406, 1800 }, + [1116] = { 44.7, 47.3, 406, 1800 }, + [1117] = { 47.9, 47.3, 406, 1800 }, + [1118] = { 43.2, 47.2, 406, 1800 }, + [1119] = { 67.9, 46.4, 406, 1800 }, + [1120] = { 57, 46.3, 406, 1800 }, + [1121] = { 68.4, 46.3, 406, 1800 }, + [1122] = { 37.1, 46, 406, 1800 }, + [1123] = { 55.9, 45.9, 406, 1800 }, + [1124] = { 53.5, 43.7, 406, 1800 }, + [1125] = { 51.8, 43, 406, 1800 }, + [1126] = { 51.3, 41.8, 406, 1800 }, + [1127] = { 54.3, 41.6, 406, 1800 }, + [1128] = { 50.3, 39.7, 406, 1800 }, + [1129] = { 50.9, 39.5, 406, 1800 }, + [1130] = { 51.4, 39.4, 406, 1800 }, + [1131] = { 53.1, 39.2, 406, 1800 }, + [1132] = { 44.1, 38.8, 406, 1800 }, + [1133] = { 23.4, 37.1, 406, 1800 }, + [1134] = { 45, 36.1, 406, 1800 }, + [1135] = { 42.6, 30, 406, 1800 }, + [1136] = { 42.2, 29.2, 406, 1800 }, + [1137] = { 41.9, 28.6, 406, 1800 }, + [1138] = { 62.4, 28.5, 406, 1800 }, + [1139] = { 43.4, 27.9, 406, 1800 }, + [1140] = { 62.1, 27.5, 406, 1800 }, + [1141] = { 40.8, 27.3, 406, 1800 }, + [1142] = { 68.2, 26.9, 406, 1800 }, + [1143] = { 42.2, 26.5, 406, 1800 }, + [1144] = { 42.1, 26.2, 406, 1800 }, + [1145] = { 36.2, 25.9, 406, 1800 }, + [1146] = { 68.4, 25.5, 406, 1800 }, + [1147] = { 39.1, 23.9, 406, 1800 }, + [1148] = { 36.2, 23.8, 406, 1800 }, + [1149] = { 37.9, 23.6, 406, 1800 }, + [1150] = { 39.3, 20, 406, 1800 }, + [1151] = { 38.4, 19.2, 406, 1800 }, + [1152] = { 40.9, 18.9, 406, 1800 }, + [1153] = { 37.3, 18.1, 406, 1800 }, + [1154] = { 62.1, 17.8, 406, 1800 }, + [1155] = { 37.4, 17.4, 406, 1800 }, + [1156] = { 61, 16.8, 406, 1800 }, + [1157] = { 30.6, 93.1, 718, 1800 }, + [1158] = { 12.9, 88.1, 718, 1800 }, + [1159] = { 8.2, 86.8, 718, 1800 }, + [1160] = { 59, 81, 718, 1800 }, + [1161] = { 19.8, 75, 718, 1800 }, + [1162] = { 39.8, 64.7, 718, 1800 }, + [1163] = { 69.3, 64, 718, 1800 }, + [1164] = { 35.1, 52.7, 718, 1800 }, + [1165] = { 19.5, 42.7, 718, 1800 }, + [1166] = { 81.4, 33.1, 718, 1800 }, + [1167] = { 21.8, 27.2, 718, 1800 }, + [1168] = { 77.4, 34.6, 718, 604800 }, + [1169] = { 42.5, 43, 719, 604800 }, + [1170] = { 10.1, 27.7, 719, 604800 }, + [1171] = { 59.7, 13.6, 1581, 1800 }, + [1172] = { 55.5, 9.3, 1581, 1800 }, + [1173] = { 75.2, 53.5, 2100, 1800 }, + [1174] = { 78.9, 52.7, 2100, 1800 }, + [1175] = { 75.3, 52.4, 2100, 1800 }, + [1176] = { 79.3, 52, 2100, 1800 }, + [1177] = { 68, 48.3, 2100, 1800 }, + [1178] = { 77.2, 45.3, 2100, 1800 }, + [1179] = { 63.1, 27.8, 2100, 1800 }, + [1180] = { 57.6, 18, 2100, 1800 }, + [1181] = { 33.6, 8.9, 2100, 1800 }, + [1182] = { 58.4, 7.3, 2100, 1800 }, + [1183] = { 58.3, 5.8, 2100, 1800 }, + [1184] = { 93.9, 27.8, 5179, 1800 }, + [1185] = { 95.8, 27.6, 5179, 1800 }, + [1186] = { 95.2, 27.5, 5179, 1800 }, + [1187] = { 96.8, 26.8, 5179, 1800 }, + [1188] = { 98.9, 24.5, 5179, 1800 }, + [1189] = { 97.7, 24.2, 5179, 1800 }, + [1190] = { 92.1, 23.8, 5179, 1800 }, + [1191] = { 98.7, 23.5, 5179, 1800 }, + [1192] = { 92.9, 23.1, 5179, 1800 }, + [1193] = { 92.4, 22.4, 5179, 1800 }, + [1194] = { 80.5, 22.3, 5179, 1800 }, + [1195] = { 95.6, 20.9, 5179, 1800 }, + [1196] = { 91.9, 18.4, 5179, 1800 }, + [1197] = { 83.8, 17.6, 5179, 1800 }, + [1198] = { 74.7, 17.6, 5179, 1800 }, + [1199] = { 75, 16.8, 5179, 1800 }, + [1200] = { 91.7, 16.8, 5179, 1800 }, + [1201] = { 83.5, 16.8, 5179, 1800 }, + [1202] = { 75, 16.6, 5179, 1800 }, + [1203] = { 83.1, 16.5, 5179, 1800 }, + [1204] = { 74.2, 15.9, 5179, 1800 }, + [1205] = { 91.8, 15.6, 5179, 1800 }, + [1206] = { 92.3, 15.5, 5179, 1800 }, + [1207] = { 71.7, 14.1, 5179, 1800 }, + [1208] = { 71.5, 14, 5179, 1800 }, + [1209] = { 76.2, 12.7, 5179, 1800 }, + [1210] = { 98.2, 12.4, 5179, 1800 }, + [1211] = { 98.1, 11.4, 5179, 1800 }, + [1212] = { 74.1, 11.3, 5179, 1800 }, + [1213] = { 74.2, 10, 5179, 1800 }, + [1214] = { 98.4, 9.4, 5179, 1800 }, + [1215] = { 97.8, 9.3, 5179, 1800 }, + [1216] = { 84.4, 6.1, 5179, 1800 }, + [1217] = { 85.2, 5.6, 5179, 1800 }, + [1218] = { 77.9, 5, 5179, 1800 }, + [1219] = { 95.4, 4.8, 5179, 1800 }, + [1220] = { 94.4, 4.7, 5179, 1800 }, + [1221] = { 84.6, 4.7, 5179, 1800 }, + [1222] = { 79.1, 4.6, 5179, 1800 }, + [1223] = { 84.7, 4.3, 5179, 1800 }, + [1224] = { 86.5, 4.1, 5179, 1800 }, + [1225] = { 95.2, 3.8, 5179, 1800 }, + [1226] = { 86.4, 3.8, 5179, 1800 }, + [1227] = { 94.2, 3.7, 5179, 1800 }, + [1228] = { 85.3, 3.6, 5179, 1800 }, + [1229] = { 85.4, 3.4, 5179, 1800 }, + [1230] = { 94.3, 3.1, 5179, 1800 }, + [1231] = { 81, 2.9, 5179, 1800 }, + [1232] = { 95.5, 2.8, 5179, 1800 }, + [1233] = { 95.2, 2.4, 5179, 1800 }, + [1234] = { 94.3, 2.3, 5179, 1800 }, + [1235] = { 39.3, 83.6, 5602, 1800 }, + [1236] = { 40.1, 78, 5602, 1800 }, + [1237] = { 40.3, 77.3, 5602, 1800 }, + [1238] = { 41.3, 76.9, 5602, 1800 }, + [1239] = { 40.3, 76.4, 5602, 1800 }, + [1240] = { 41, 76.2, 5602, 1800 }, + [1241] = { 36.1, 73.8, 5602, 1800 }, + [1242] = { 38.3, 72.7, 5602, 1800 }, + [1243] = { 34, 71.7, 5602, 1800 }, + [1244] = { 37.8, 71.5, 5602, 1800 }, + [1245] = { 35.7, 69.6, 5602, 1800 }, + [1246] = { 34.6, 69.3, 5602, 1800 }, + [1247] = { 34.2, 69.2, 5602, 1800 }, + [1248] = { 36.1, 68.9, 5602, 1800 }, + [1249] = { 34.2, 68.6, 5602, 1800 }, + [1250] = { 33.4, 68.3, 5602, 1800 }, + [1251] = { 36.2, 67.5, 5602, 1800 }, + [1252] = { 34.5, 67.4, 5602, 1800 }, + [1253] = { 33.9, 67.4, 5602, 1800 }, + [1254] = { 38.9, 66.9, 5602, 1800 }, + [1255] = { 35.2, 66.8, 5602, 1800 }, + [1256] = { 35.1, 66.4, 5602, 1800 }, + [1257] = { 38.6, 65.5, 5602, 1800 }, + [1258] = { 38.3, 64.3, 5602, 1800 }, + [1259] = { 38.1, 63.6, 5602, 1800 }, + [1260] = { 34.2, 63.2, 5602, 1800 }, + [1261] = { 35.2, 62.7, 5602, 1800 }, + [1262] = { 34.2, 62.2, 5602, 1800 }, + [1263] = { 38.4, 62.1, 5602, 1800 }, + [1264] = { 34.9, 62.1, 5602, 1800 }, + [1265] = { 33.4, 60.7, 5602, 1800 }, + [1266] = { 34, 60.7, 5602, 1800 }, + [1267] = { 34, 60.1, 5602, 1800 }, + [1268] = { 33.7, 59.9, 5602, 1800 }, + [1269] = { 35.8, 59.5, 5602, 1800 }, + [1270] = { 33.8, 59.5, 5602, 1800 }, + [1271] = { 34.3, 59.4, 5602, 1800 }, + [1272] = { 35.5, 59.1, 5602, 1800 }, + [1273] = { 35.5, 58.9, 5602, 1800 }, + [1274] = { 37.1, 58.3, 5602, 1800 }, + [1275] = { 34.1, 57.9, 5602, 1800 }, + [1276] = { 31.5, 57.8, 5602, 1800 }, + [1277] = { 33.6, 57.6, 5602, 1800 }, + [1278] = { 31.7, 57.6, 5602, 1800 }, + [1279] = { 31.2, 56.8, 5602, 1800 }, + [1280] = { 31.8, 56.1, 5602, 1800 }, + [1281] = { 35.3, 55.9, 5602, 1800 }, + [1282] = { 32.1, 55.8, 5602, 1800 }, + [1283] = { 36, 55.7, 5602, 1800 }, + [1284] = { 32.2, 55.6, 5602, 1800 }, + [1285] = { 34.6, 55.6, 5602, 1800 }, + [1286] = { 34.4, 54.7, 5602, 1800 }, + [1287] = { 34.7, 54.6, 5602, 1800 }, + [1288] = { 33.5, 53.8, 5602, 1800 }, + [1289] = { 35.2, 53.6, 5602, 1800 }, + [1290] = { 14.6, 39.9, 5602, 1800 }, + [1291] = { 10.7, 39.8, 5602, 1800 }, + [1292] = { 16.8, 38.7, 5602, 1800 }, + [1293] = { 9.9, 37.5, 5602, 1800 }, + [1294] = { 5.3, 36.5, 5602, 1800 }, + [1295] = { 19.1, 35.9, 5602, 1800 }, + [1296] = { 6.1, 35.7, 5602, 1800 }, + [1297] = { 18.9, 35.6, 5602, 1800 }, + [1298] = { 14.3, 35.2, 5602, 1800 }, + [1299] = { 14.4, 34.7, 5602, 1800 }, + [1300] = { 20.2, 30.7, 5602, 1800 }, + [1301] = { 9.9, 30.2, 5602, 1800 }, + [1302] = { 19.8, 30.2, 5602, 1800 }, + [1303] = { 20.1, 28.1, 5602, 1800 }, + [1304] = { 19.8, 27.8, 5602, 1800 }, + [1305] = { 5.9, 27.2, 5602, 1800 }, + [1306] = { 9.9, 27, 5602, 1800 }, + [1307] = { 6.5, 27, 5602, 1800 }, + [1308] = { 19.9, 26.9, 5602, 1800 }, + [1309] = { 6, 26.5, 5602, 1800 }, + [1310] = { 19.9, 24.8, 5602, 1800 }, + [1311] = { 20.3, 23.7, 5602, 1800 }, + [1312] = { 11.2, 21.7, 5602, 1800 }, + [1313] = { 7.5, 18.7, 5602, 1800 }, + [1314] = { 7, 18.2, 5602, 1800 }, + [1315] = { 4.9, 13.2, 5602, 1800 }, + [1316] = { 23.5, 12.2, 5602, 1800 }, + [1317] = { 22.1, 11.8, 5602, 1800 }, + [1318] = { 22.4, 6.7, 5602, 1800 }, + [1319] = { 21.3, 5.9, 5602, 1800 }, + [1320] = { 16.5, 3.7, 5602, 1800 }, + [1321] = { 17.5, 2.9, 5602, 1800 }, + [1322] = { 18, 2.7, 5602, 1800 }, + [1323] = { 16.2, 2.4, 5602, 1800 }, + [1324] = { 10.1, 1.8, 5602, 1800 }, + [1325] = { 11.3, 0.9, 5602, 1800 }, + }, + }, + [1623] = { + ["coords"] = { + [1] = { 22.6, 43, 3, 1800 }, + [2] = { 18.5, 40.9, 3, 1800 }, + [3] = { 53.6, 39.8, 3, 1800 }, + [4] = { 43, 80.2, 10, 1800 }, + [5] = { 36.8, 79.6, 10, 1800 }, + [6] = { 37.7, 78.6, 10, 1800 }, + [7] = { 29.9, 77.8, 10, 1800 }, + [8] = { 44.1, 58, 10, 1800 }, + [9] = { 40.8, 57.8, 10, 1800 }, + [10] = { 53.2, 54.3, 10, 1800 }, + [11] = { 86.1, 34.6, 10, 1800 }, + [12] = { 37.2, 33.6, 10, 1800 }, + [13] = { 54.8, 26, 10, 1800 }, + [14] = { 47.1, 74.9, 11, 1800 }, + [15] = { 47.4, 74.1, 11, 1800 }, + [16] = { 52.5, 55.2, 11, 1800 }, + [17] = { 50, 53.3, 11, 1800 }, + [18] = { 53.8, 53.1, 11, 1800 }, + [19] = { 36.8, 52.6, 11, 1800 }, + [20] = { 49.5, 52.4, 11, 1800 }, + [21] = { 49, 51.7, 11, 1800 }, + [22] = { 33.5, 51.5, 11, 1800 }, + [23] = { 73.7, 49.7, 11, 1800 }, + [24] = { 39.5, 49.5, 11, 1800 }, + [25] = { 39.3, 49.4, 11, 1800 }, + [26] = { 45.4, 48.9, 11, 1800 }, + [27] = { 77.8, 48.8, 11, 1800 }, + [28] = { 30.5, 48.7, 11, 1800 }, + [29] = { 30, 48.6, 11, 1800 }, + [30] = { 52.6, 47.8, 11, 1800 }, + [31] = { 52.4, 47.5, 11, 1800 }, + [32] = { 40.8, 46.8, 11, 1800 }, + [33] = { 31.2, 46.5, 11, 1800 }, + [34] = { 50.6, 45.6, 11, 1800 }, + [35] = { 74.4, 45.1, 11, 1800 }, + [36] = { 74.5, 45.1, 11, 1800 }, + [37] = { 32.8, 44.6, 11, 1800 }, + [38] = { 44.5, 40.9, 11, 1800 }, + [39] = { 77.2, 40.3, 11, 1800 }, + [40] = { 73.9, 35.7, 11, 1800 }, + [41] = { 66.7, 34.2, 11, 1800 }, + [42] = { 69.6, 34, 11, 1800 }, + [43] = { 66.6, 34, 11, 1800 }, + [44] = { 69.5, 33.6, 11, 1800 }, + [45] = { 69.2, 33.4, 11, 1800 }, + [46] = { 65.9, 28.3, 11, 1800 }, + [47] = { 61.8, 22.8, 11, 1800 }, + [48] = { 62.1, 22.6, 11, 1800 }, + [49] = { 58.2, 20.5, 11, 1800 }, + [50] = { 43.8, 20.5, 11, 1800 }, + [51] = { 43.6, 20.3, 11, 1800 }, + [52] = { 49.2, 19, 11, 1800 }, + [53] = { 46.8, 18.3, 11, 1800 }, + [54] = { 46.8, 18, 11, 1800 }, + [55] = { 46.6, 18, 11, 1800 }, + [56] = { 37.1, 18, 11, 1800 }, + [57] = { 37.1, 16.9, 11, 1800 }, + [58] = { 37, 16.7, 11, 1800 }, + [59] = { 45.6, 15.6, 11, 1800 }, + [60] = { 45.9, 96.3, 17, 1800 }, + [61] = { 45.3, 95.5, 17, 1800 }, + [62] = { 40.8, 94.4, 17, 1800 }, + [63] = { 40.7, 94.3, 17, 1800 }, + [64] = { 39.2, 92.4, 17, 1800 }, + [65] = { 45.1, 90, 17, 1800 }, + [66] = { 45.3, 89.9, 17, 1800 }, + [67] = { 48.4, 88.7, 17, 1800 }, + [68] = { 48.3, 87.4, 17, 1800 }, + [69] = { 46.3, 87.3, 17, 1800 }, + [70] = { 46.5, 86.2, 17, 1800 }, + [71] = { 43.5, 84.5, 17, 1800 }, + [72] = { 42.5, 83.3, 17, 1800 }, + [73] = { 44.5, 83, 17, 1800 }, + [74] = { 49.6, 81, 17, 1800 }, + [75] = { 43.1, 77.6, 17, 1800 }, + [76] = { 43.3, 77.2, 17, 1800 }, + [77] = { 43.3, 75.6, 17, 1800 }, + [78] = { 43.8, 73.3, 17, 1800 }, + [79] = { 43.4, 73.2, 17, 1800 }, + [80] = { 48.5, 72.9, 17, 1800 }, + [81] = { 42.3, 68.6, 17, 1800 }, + [82] = { 48, 68.5, 17, 1800 }, + [83] = { 45.8, 64.8, 17, 1800 }, + [84] = { 49, 64.8, 17, 1800 }, + [85] = { 60.9, 54.2, 17, 1800 }, + [86] = { 60.1, 54.2, 17, 1800 }, + [87] = { 56.5, 52.7, 17, 1800 }, + [88] = { 51.9, 52.6, 17, 1800 }, + [89] = { 51.9, 52.1, 17, 1800 }, + [90] = { 59.9, 47, 17, 1800 }, + [91] = { 41.2, 44.1, 17, 1800 }, + [92] = { 31.2, 26.8, 17, 1800 }, + [93] = { 34.1, 23.9, 17, 1800 }, + [94] = { 31.5, 22.8, 17, 1800 }, + [95] = { 32.7, 22.3, 17, 1800 }, + [96] = { 35.2, 21.8, 17, 1800 }, + [97] = { 35.1, 21.7, 17, 1800 }, + [98] = { 34.3, 20.6, 17, 1800 }, + [99] = { 33.1, 69.9, 33, 1800 }, + [100] = { 33.6, 67.6, 33, 1800 }, + [101] = { 27.5, 64.5, 33, 1800 }, + [102] = { 35.6, 64.1, 33, 1800 }, + [103] = { 26.1, 63.7, 33, 1800 }, + [104] = { 25.4, 63.3, 33, 1800 }, + [105] = { 28.1, 62.5, 33, 1800 }, + [106] = { 32.5, 61.9, 33, 1800 }, + [107] = { 34.1, 56.6, 33, 1800 }, + [108] = { 31.8, 55.1, 33, 1800 }, + [109] = { 27, 54.9, 33, 1800 }, + [110] = { 38.2, 49, 33, 1800 }, + [111] = { 46.4, 45.1, 33, 1800 }, + [112] = { 42.3, 45, 33, 1800 }, + [113] = { 48.4, 43.2, 33, 1800 }, + [114] = { 51.5, 34.3, 33, 1800 }, + [115] = { 50.3, 34, 33, 1800 }, + [116] = { 50.8, 29.4, 33, 1800 }, + [117] = { 49.9, 26.5, 33, 1800 }, + [118] = { 35.3, 24.8, 33, 1800 }, + [119] = { 33.6, 24.1, 33, 1800 }, + [120] = { 51, 19.2, 33, 1800 }, + [121] = { 26.9, 17.8, 33, 1800 }, + [122] = { 32.3, 17.3, 33, 1800 }, + [123] = { 25.6, 17.2, 33, 1800 }, + [124] = { 34, 16.7, 33, 1800 }, + [125] = { 24.1, 16.4, 33, 1800 }, + [126] = { 24.3, 14.5, 33, 1800 }, + [127] = { 29.7, 14.1, 33, 1800 }, + [128] = { 23.1, 14, 33, 1800 }, + [129] = { 26.6, 9.9, 33, 1800 }, + [130] = { 31.1, 9.2, 33, 1800 }, + [131] = { 49.4, 8.9, 33, 1800 }, + [132] = { 29.5, 7, 33, 1800 }, + [133] = { 40.4, 6.9, 33, 1800 }, + [134] = { 33.6, 5.8, 33, 1800 }, + [135] = { 45.9, 5.6, 33, 1800 }, + [136] = { 48.5, 54.1, 36, 1800 }, + [137] = { 31.2, 47.2, 36, 1800 }, + [138] = { 54.7, 42.3, 36, 1800 }, + [139] = { 52.5, 41.6, 36, 1800 }, + [140] = { 54.1, 41.3, 36, 1800 }, + [141] = { 49.7, 39.6, 36, 1800 }, + [142] = { 52.9, 39.5, 36, 1800 }, + [143] = { 51.5, 39.4, 36, 1800 }, + [144] = { 48.4, 39.2, 36, 1800 }, + [145] = { 40.3, 38.5, 36, 1800 }, + [146] = { 36.2, 38.2, 36, 1800 }, + [147] = { 51.2, 38.2, 36, 1800 }, + [148] = { 46.3, 36.2, 36, 1800 }, + [149] = { 43.4, 35.6, 36, 1800 }, + [150] = { 45.4, 33.7, 36, 1800 }, + [151] = { 45.2, 32.4, 36, 1800 }, + [152] = { 51.2, 79.9, 45, 1800 }, + [153] = { 52.9, 79.2, 45, 1800 }, + [154] = { 51.7, 78.4, 45, 1800 }, + [155] = { 41.8, 77.1, 45, 1800 }, + [156] = { 69.3, 76.5, 45, 1800 }, + [157] = { 21.2, 75.8, 45, 1800 }, + [158] = { 21.8, 75.7, 45, 1800 }, + [159] = { 20.7, 75.4, 45, 1800 }, + [160] = { 21.7, 75.3, 45, 1800 }, + [161] = { 58.3, 75.2, 45, 1800 }, + [162] = { 56.3, 75.1, 45, 1800 }, + [163] = { 63.7, 75.1, 45, 1800 }, + [164] = { 70, 75.1, 45, 1800 }, + [165] = { 66.5, 74.7, 45, 1800 }, + [166] = { 63.7, 74.4, 45, 1800 }, + [167] = { 56.9, 74.4, 45, 1800 }, + [168] = { 22.9, 73.5, 45, 1800 }, + [169] = { 57.2, 73.1, 45, 1800 }, + [170] = { 17.4, 72, 45, 1800 }, + [171] = { 17.7, 71.6, 45, 1800 }, + [172] = { 17.6, 71.4, 45, 1800 }, + [173] = { 58.6, 70.8, 45, 1800 }, + [174] = { 26.1, 70.6, 45, 1800 }, + [175] = { 58.1, 70.4, 45, 1800 }, + [176] = { 37.1, 70.2, 45, 1800 }, + [177] = { 30.5, 70.2, 45, 1800 }, + [178] = { 26.4, 70, 45, 1800 }, + [179] = { 16.1, 68.8, 45, 1800 }, + [180] = { 34.3, 68.6, 45, 1800 }, + [181] = { 16.5, 68.3, 45, 1800 }, + [182] = { 16, 65.1, 45, 1800 }, + [183] = { 16.6, 64.4, 45, 1800 }, + [184] = { 16, 64.4, 45, 1800 }, + [185] = { 73.3, 58, 45, 1800 }, + [186] = { 30.2, 48.2, 45, 1800 }, + [187] = { 29.6, 47.1, 45, 1800 }, + [188] = { 27.3, 46.6, 45, 1800 }, + [189] = { 35.1, 46.2, 45, 1800 }, + [190] = { 28.9, 44.7, 45, 1800 }, + [191] = { 32.3, 44.6, 45, 1800 }, + [192] = { 77, 44.5, 45, 1800 }, + [193] = { 32.5, 44.5, 45, 1800 }, + [194] = { 32.4, 43.3, 45, 1800 }, + [195] = { 79.1, 43.1, 45, 1800 }, + [196] = { 36.3, 42.7, 45, 1800 }, + [197] = { 34.9, 42.6, 45, 1800 }, + [198] = { 35.4, 42.4, 45, 1800 }, + [199] = { 34.3, 42.4, 45, 1800 }, + [200] = { 78, 41.4, 45, 1800 }, + [201] = { 79.7, 40.9, 45, 1800 }, + [202] = { 82.1, 39.9, 45, 1800 }, + [203] = { 77.6, 39.3, 45, 1800 }, + [204] = { 82.7, 39.1, 45, 1800 }, + [205] = { 80.4, 38.6, 45, 1800 }, + [206] = { 81.6, 37.2, 45, 1800 }, + [207] = { 81.1, 36.2, 45, 1800 }, + [208] = { 79.6, 35.4, 45, 1800 }, + [209] = { 81.4, 35.2, 45, 1800 }, + [210] = { 78.9, 35.2, 45, 1800 }, + [211] = { 59.6, 34.9, 45, 1800 }, + [212] = { 81.5, 34.8, 45, 1800 }, + [213] = { 52.1, 34.5, 45, 1800 }, + [214] = { 48.3, 34.5, 45, 1800 }, + [215] = { 78.5, 33.8, 45, 1800 }, + [216] = { 45.9, 33.4, 45, 1800 }, + [217] = { 48.2, 33.2, 45, 1800 }, + [218] = { 60.2, 33.1, 45, 1800 }, + [219] = { 80, 32.9, 45, 1800 }, + [220] = { 49.6, 32.9, 45, 1800 }, + [221] = { 79.6, 32.7, 45, 1800 }, + [222] = { 59.9, 32.7, 45, 1800 }, + [223] = { 76.7, 32.5, 45, 1800 }, + [224] = { 54.5, 32.4, 45, 1800 }, + [225] = { 59.8, 32.4, 45, 1800 }, + [226] = { 52.4, 32.3, 45, 1800 }, + [227] = { 51.6, 31.8, 45, 1800 }, + [228] = { 60.2, 31.7, 45, 1800 }, + [229] = { 58, 31.5, 45, 1800 }, + [230] = { 60.2, 31.4, 45, 1800 }, + [231] = { 55.4, 31.3, 45, 1800 }, + [232] = { 46.2, 31.2, 45, 1800 }, + [233] = { 44.4, 31.2, 45, 1800 }, + [234] = { 57.2, 31.1, 45, 1800 }, + [235] = { 46.6, 31.1, 45, 1800 }, + [236] = { 46.4, 31.1, 45, 1800 }, + [237] = { 59.4, 30.5, 45, 1800 }, + [238] = { 43.8, 30.4, 45, 1800 }, + [239] = { 43.1, 29.8, 45, 1800 }, + [240] = { 63.6, 28.9, 45, 1800 }, + [241] = { 42.3, 28.9, 45, 1800 }, + [242] = { 45.8, 28.6, 45, 1800 }, + [243] = { 62.3, 28.5, 45, 1800 }, + [244] = { 42.9, 27.9, 45, 1800 }, + [245] = { 67.6, 26.4, 45, 1800 }, + [246] = { 67.2, 26.1, 45, 1800 }, + [247] = { 40, 26, 45, 1800 }, + [248] = { 38.6, 26, 45, 1800 }, + [249] = { 64.6, 26, 45, 1800 }, + [250] = { 69.6, 25.9, 45, 1800 }, + [251] = { 70.6, 25.9, 45, 1800 }, + [252] = { 66.2, 25.6, 45, 1800 }, + [253] = { 63.5, 25.5, 45, 1800 }, + [254] = { 65.9, 25.5, 45, 1800 }, + [255] = { 39.5, 25.2, 45, 1800 }, + [256] = { 38.9, 24.9, 45, 1800 }, + [257] = { 36.7, 23.7, 45, 1800 }, + [258] = { 37.5, 23.3, 45, 1800 }, + [259] = { 37.7, 23.1, 45, 1800 }, + [260] = { 37.5, 23.1, 45, 1800 }, + [261] = { 36.4, 22.9, 45, 1800 }, + [262] = { 35.7, 22.9, 45, 1800 }, + [263] = { 36.2, 22.7, 45, 1800 }, + [264] = { 35.7, 22.7, 45, 1800 }, + [265] = { 35, 22.6, 45, 1800 }, + [266] = { 34.2, 22.2, 45, 1800 }, + [267] = { 38.1, 21.6, 45, 1800 }, + [268] = { 38.3, 21.4, 45, 1800 }, + [269] = { 35.5, 21.4, 45, 1800 }, + [270] = { 38.1, 20.4, 45, 1800 }, + [271] = { 44.7, 20, 45, 1800 }, + [272] = { 33.7, 19.6, 45, 1800 }, + [273] = { 32.4, 18.6, 45, 1800 }, + [274] = { 39.1, 16.1, 45, 1800 }, + [275] = { 43.5, 86.3, 47, 1800 }, + [276] = { 41, 86.2, 47, 1800 }, + [277] = { 43.2, 86.2, 47, 1800 }, + [278] = { 17.2, 81.4, 47, 1800 }, + [279] = { 23.4, 81, 47, 1800 }, + [280] = { 18.2, 77.4, 47, 1800 }, + [281] = { 72.3, 80.4, 215, 1800 }, + [282] = { 71.1, 56.4, 267, 1800 }, + [283] = { 69.3, 37.6, 267, 1800 }, + [284] = { 84.4, 80.4, 331, 1800 }, + [285] = { 88.3, 77.1, 331, 1800 }, + [286] = { 82.2, 76.3, 331, 1800 }, + [287] = { 66.4, 67.1, 331, 1800 }, + [288] = { 18.7, 60.1, 331, 1800 }, + [289] = { 72.9, 58.2, 331, 1800 }, + [290] = { 73.1, 58.1, 331, 1800 }, + [291] = { 43.4, 51.4, 331, 1800 }, + [292] = { 15.1, 46.3, 331, 1800 }, + [293] = { 15, 46.1, 331, 1800 }, + [294] = { 79.4, 44.5, 331, 1800 }, + [295] = { 48.3, 42.9, 331, 1800 }, + [296] = { 47.1, 42.3, 331, 1800 }, + [297] = { 41.8, 39.7, 331, 1800 }, + [298] = { 41.7, 38.9, 331, 1800 }, + [299] = { 50.4, 37.7, 331, 1800 }, + [300] = { 59.6, 31.8, 331, 1800 }, + [301] = { 38.2, 30.1, 331, 1800 }, + [302] = { 53.6, 30, 331, 1800 }, + [303] = { 54, 29, 331, 1800 }, + [304] = { 94.2, 47, 357, 1800 }, + [305] = { 92.1, 41.6, 357, 1800 }, + [306] = { 47.6, 0.6, 357, 1800 }, + [307] = { 58.7, 96.1, 361, 1800 }, + [308] = { 52.8, 94.2, 361, 1800 }, + [309] = { 53.2, 93.2, 361, 1800 }, + [310] = { 80.6, 90.7, 400, 1800 }, + [311] = { 86.7, 84.9, 400, 1800 }, + [312] = { 88.9, 61.4, 400, 1800 }, + [313] = { 65.6, 60.8, 400, 1800 }, + [314] = { 61.3, 58.6, 400, 1800 }, + [315] = { 38, 52.7, 400, 1800 }, + [316] = { 83.7, 52.6, 400, 1800 }, + [317] = { 63.2, 51.5, 400, 1800 }, + [318] = { 29.3, 51.2, 400, 1800 }, + [319] = { 74.7, 51, 400, 1800 }, + [320] = { 59.6, 48.6, 400, 1800 }, + [321] = { 59.1, 48.2, 400, 1800 }, + [322] = { 52.7, 47.5, 400, 1800 }, + [323] = { 27.8, 44.5, 400, 1800 }, + [324] = { 48.7, 44.4, 400, 1800 }, + [325] = { 18.5, 40.8, 400, 1800 }, + [326] = { 17.3, 40.3, 400, 1800 }, + [327] = { 9.9, 39.4, 400, 1800 }, + [328] = { 14.4, 38.8, 400, 1800 }, + [329] = { 12.7, 36.5, 400, 1800 }, + [330] = { 21.4, 36.2, 400, 1800 }, + [331] = { 12.4, 36, 400, 1800 }, + [332] = { 12.4, 35.9, 400, 1800 }, + [333] = { 21.5, 35.4, 400, 1800 }, + [334] = { 18.6, 31.7, 400, 1800 }, + [335] = { 36.2, 31.6, 400, 1800 }, + [336] = { 18.5, 31.4, 400, 1800 }, + [337] = { 13.8, 31.3, 400, 1800 }, + [338] = { 34.9, 29.7, 400, 1800 }, + [339] = { 24.5, 27.2, 400, 1800 }, + [340] = { 24.4, 27.1, 400, 1800 }, + [341] = { 20.9, 22.7, 400, 1800 }, + [342] = { 15.3, 19.7, 400, 1800 }, + [343] = { 34.4, 17.2, 400, 1800 }, + [344] = { 34.9, 16.8, 400, 1800 }, + [345] = { 12, 11.2, 400, 1800 }, + [346] = { 46.8, 94.9, 405, 1800 }, + [347] = { 52.5, 91.1, 405, 1800 }, + [348] = { 47.9, 90.9, 405, 1800 }, + [349] = { 52.2, 90.7, 405, 1800 }, + [350] = { 75.8, 52.2, 405, 1800 }, + [351] = { 75, 45.7, 405, 1800 }, + [352] = { 79.3, 34.7, 405, 1800 }, + [353] = { 52.5, 21.9, 405, 1800 }, + [354] = { 90.7, 21.6, 405, 1800 }, + [355] = { 47.1, 13.3, 405, 1800 }, + [356] = { 72.6, 12.4, 405, 1800 }, + [357] = { 61.5, 0.7, 405, 1800 }, + [358] = { 74.6, 90.7, 406, 1800 }, + [359] = { 63.1, 90.7, 406, 1800 }, + [360] = { 71.1, 87.3, 406, 1800 }, + [361] = { 79.4, 85.9, 406, 1800 }, + [362] = { 72.6, 84.6, 406, 1800 }, + [363] = { 72.5, 84.6, 406, 1800 }, + [364] = { 30.5, 84.5, 406, 1800 }, + [365] = { 75.1, 84, 406, 1800 }, + [366] = { 49.5, 83.8, 406, 1800 }, + [367] = { 77.1, 83.1, 406, 1800 }, + [368] = { 81.3, 82.3, 406, 1800 }, + [369] = { 81.1, 82.1, 406, 1800 }, + [370] = { 59.2, 81.5, 406, 1800 }, + [371] = { 59.4, 81.4, 406, 1800 }, + [372] = { 59.2, 81, 406, 1800 }, + [373] = { 72.8, 80.5, 406, 1800 }, + [374] = { 79.8, 80.4, 406, 1800 }, + [375] = { 41.3, 75, 406, 1800 }, + [376] = { 37.5, 74.6, 406, 1800 }, + [377] = { 58.6, 72.4, 406, 1800 }, + [378] = { 62.2, 72.2, 406, 1800 }, + [379] = { 32.7, 71.1, 406, 1800 }, + [380] = { 32.7, 70.9, 406, 1800 }, + [381] = { 43.3, 68.2, 406, 1800 }, + [382] = { 32.6, 67.9, 406, 1800 }, + [383] = { 32.5, 67.8, 406, 1800 }, + [384] = { 62.6, 67.8, 406, 1800 }, + [385] = { 32.6, 67.4, 406, 1800 }, + [386] = { 55.2, 66.4, 406, 1800 }, + [387] = { 74.2, 64.9, 406, 1800 }, + [388] = { 42.1, 62.9, 406, 1800 }, + [389] = { 42.2, 62.6, 406, 1800 }, + [390] = { 70.2, 61, 406, 1800 }, + [391] = { 70.5, 61, 406, 1800 }, + [392] = { 70.2, 60.9, 406, 1800 }, + [393] = { 36.1, 59.7, 406, 1800 }, + [394] = { 38.2, 59.6, 406, 1800 }, + [395] = { 59, 57.2, 406, 1800 }, + [396] = { 55.8, 56.7, 406, 1800 }, + [397] = { 59.4, 55.2, 406, 1800 }, + [398] = { 43.1, 53.6, 406, 1800 }, + [399] = { 58.5, 53.5, 406, 1800 }, + [400] = { 75.5, 53.5, 406, 1800 }, + [401] = { 48.5, 53.4, 406, 1800 }, + [402] = { 50.8, 53.4, 406, 1800 }, + [403] = { 50.7, 53.3, 406, 1800 }, + [404] = { 48.8, 53.2, 406, 1800 }, + [405] = { 74.7, 52.2, 406, 1800 }, + [406] = { 40, 52, 406, 1800 }, + [407] = { 76.5, 48.9, 406, 1800 }, + [408] = { 67.2, 47.9, 406, 1800 }, + [409] = { 66.8, 47.5, 406, 1800 }, + [410] = { 71.3, 47.2, 406, 1800 }, + [411] = { 67.3, 47, 406, 1800 }, + [412] = { 68, 46.5, 406, 1800 }, + [413] = { 63.8, 45.9, 406, 1800 }, + [414] = { 42.2, 45.8, 406, 1800 }, + [415] = { 63.5, 45.6, 406, 1800 }, + [416] = { 63.7, 45.6, 406, 1800 }, + [417] = { 63.5, 45.5, 406, 1800 }, + [418] = { 70.4, 44.9, 406, 1800 }, + [419] = { 63.6, 44.8, 406, 1800 }, + [420] = { 48.1, 44.7, 406, 1800 }, + [421] = { 47.5, 43.9, 406, 1800 }, + [422] = { 56, 43.9, 406, 1800 }, + [423] = { 47.4, 43.8, 406, 1800 }, + [424] = { 55, 43.3, 406, 1800 }, + [425] = { 48.3, 43.2, 406, 1800 }, + [426] = { 56.2, 42.8, 406, 1800 }, + [427] = { 55.1, 42.5, 406, 1800 }, + [428] = { 42.5, 41.8, 406, 300 }, + [429] = { 47.7, 41.1, 406, 1800 }, + [430] = { 23.1, 38.5, 406, 1800 }, + [431] = { 53.6, 38.1, 406, 1800 }, + [432] = { 47.2, 35.1, 406, 1800 }, + [433] = { 29.8, 34.2, 406, 1800 }, + [434] = { 42.8, 31.7, 406, 1800 }, + [435] = { 41.4, 31.4, 406, 1800 }, + [436] = { 49.7, 30.3, 406, 1800 }, + [437] = { 49.8, 30.3, 406, 1800 }, + [438] = { 43.3, 30.1, 406, 1800 }, + [439] = { 38.5, 29.9, 406, 1800 }, + [440] = { 44.5, 29.2, 406, 1800 }, + [441] = { 44.4, 29.1, 406, 1800 }, + [442] = { 44.7, 28.9, 406, 1800 }, + [443] = { 55.3, 26.9, 406, 1800 }, + [444] = { 37.4, 26.9, 406, 1800 }, + [445] = { 47.8, 25, 406, 1800 }, + [446] = { 46.1, 22.5, 406, 1800 }, + [447] = { 45.5, 19.4, 406, 1800 }, + [448] = { 41.1, 17.4, 406, 1800 }, + [449] = { 40.9, 17.3, 406, 1800 }, + [450] = { 37.2, 17.3, 406, 1800 }, + [451] = { 51.8, 13.6, 406, 1800 }, + [452] = { 51.8, 13.5, 406, 1800 }, + [453] = { 29.3, 53.4, 5561, 1800 }, + [454] = { 40.8, 75.1, 5581, 1800 }, + [455] = { 44.6, 74.7, 5581, 1800 }, + [456] = { 31.5, 71, 5581, 1800 }, + [457] = { 76.8, 70, 5581, 1800 }, + [458] = { 45.1, 33.1, 5581, 1800 }, + [459] = { 67.2, 24.3, 5581, 1800 }, + [460] = { 4.9, 36.5, 5602, 1800 }, + [461] = { 5.2, 35.9, 5602, 1800 }, + [462] = { 9.1, 21.3, 5602, 1800 }, + [463] = { 7.2, 19.9, 5602, 1800 }, + [464] = { 10.1, 19.8, 5602, 1800 }, + [465] = { 6.8, 19.2, 5602, 1800 }, + [466] = { 6.4, 18.6, 5602, 1800 }, + [467] = { 25.4, 17.1, 5602, 1800 }, + [468] = { 3.6, 16.5, 5602, 1800 }, + [469] = { 28.5, 16.4, 5602, 1800 }, + [470] = { 9.1, 15.7, 5602, 1800 }, + [471] = { 9, 15.5, 5602, 1800 }, + [472] = { 0.1, 14.9, 5602, 1800 }, + [473] = { 7.6, 14, 5602, 1800 }, + [474] = { 25.9, 13.6, 5602, 1800 }, + [475] = { 26, 13.6, 5602, 1800 }, + [476] = { 3, 10.3, 5602, 1800 }, + [477] = { 28, 9.9, 5602, 1800 }, + [478] = { 25.5, 6.4, 5602, 1800 }, + [479] = { 20, 5.2, 5602, 1800 }, + [480] = { 22.2, 5, 5602, 1800 }, + [481] = { 19.9, 5, 5602, 1800 }, + [482] = { 22.1, 4.7, 5602, 1800 }, + [483] = { 21.9, 4.6, 5602, 1800 }, + [484] = { 19.4, 0.7, 5602, 1800 }, + }, + }, + [1624] = { + ["coords"] = { + [1] = { 14.7, 79.7, 3, 1800 }, + [2] = { 13.4, 72.2, 3, 1800 }, + [3] = { 30.9, 70, 3, 1800 }, + [4] = { 38.8, 70, 3, 1800 }, + [5] = { 60.4, 69.6, 3, 1800 }, + [6] = { 10.9, 63.9, 3, 1800 }, + [7] = { 59.1, 60.1, 3, 1800 }, + [8] = { 37.7, 55.9, 3, 1800 }, + [9] = { 32, 55.9, 3, 1800 }, + [10] = { 24.3, 55.7, 3, 1800 }, + [11] = { 41.9, 54.2, 3, 1800 }, + [12] = { 79, 53.9, 3, 1800 }, + [13] = { 47, 50, 3, 1800 }, + [14] = { 25.6, 49.7, 3, 1800 }, + [15] = { 33.8, 45.9, 3, 1800 }, + [16] = { 48, 43.8, 3, 1800 }, + [17] = { 80.7, 36, 3, 1800 }, + [18] = { 49.7, 33.6, 3, 1800 }, + [19] = { 53.7, 19.6, 3, 1800 }, + [20] = { 50.9, 14.3, 3, 1800 }, + [21] = { 86.4, 73.3, 8, 1800 }, + [22] = { 76.9, 68.2, 8, 1800 }, + [23] = { 80, 60, 8, 1800 }, + [24] = { 90, 58.9, 8, 1800 }, + [25] = { 38.7, 47.6, 8, 1800 }, + [26] = { 81.8, 44.8, 8, 1800 }, + [27] = { 61.5, 40.2, 8, 1800 }, + [28] = { 48.5, 39.6, 8, 1800 }, + [29] = { 60.7, 31.9, 8, 1800 }, + [30] = { 84.7, 22.4, 8, 1800 }, + [31] = { 21.9, 79.1, 10, 1800 }, + [32] = { 61.3, 74.3, 10, 1800 }, + [33] = { 49.2, 74, 10, 1800 }, + [34] = { 56.6, 74, 10, 1800 }, + [35] = { 66, 72, 10, 1800 }, + [36] = { 62.9, 69.4, 10, 1800 }, + [37] = { 26.4, 68.3, 10, 1800 }, + [38] = { 56.4, 59.9, 10, 1800 }, + [39] = { 25.3, 52.4, 10, 1800 }, + [40] = { 33.4, 50.2, 10, 1800 }, + [41] = { 28.2, 48.1, 10, 1800 }, + [42] = { 66.7, 42.3, 10, 1800 }, + [43] = { 64.8, 33.5, 10, 1800 }, + [44] = { 13.2, 29.8, 10, 1800 }, + [45] = { 63.6, 29.6, 10, 1800 }, + [46] = { 16.6, 29.4, 10, 1800 }, + [47] = { 60.7, 66.7, 11, 1800 }, + [48] = { 55.2, 64.9, 11, 1800 }, + [49] = { 64.7, 62.6, 11, 1800 }, + [50] = { 97.2, 57.6, 11, 1800 }, + [51] = { 65, 54.3, 11, 1800 }, + [52] = { 67.2, 52.3, 11, 1800 }, + [53] = { 63.3, 51.2, 11, 1800 }, + [54] = { 49.7, 48.5, 11, 1800 }, + [55] = { 66.1, 44.3, 11, 1800 }, + [56] = { 43.1, 43.5, 11, 1800 }, + [57] = { 65.4, 43.1, 11, 1800 }, + [58] = { 63.5, 41.1, 11, 1800 }, + [59] = { 61.7, 39.2, 11, 1800 }, + [60] = { 70.8, 39, 11, 1800 }, + [61] = { 18.3, 36.5, 11, 1800 }, + [62] = { 31.5, 36.2, 11, 1800 }, + [63] = { 57.9, 35, 11, 1800 }, + [64] = { 15, 33.4, 11, 1800 }, + [65] = { 60.9, 33.1, 11, 1800 }, + [66] = { 59.3, 32.9, 11, 1800 }, + [67] = { 18.5, 32.8, 11, 1800 }, + [68] = { 35.2, 31.7, 11, 1800 }, + [69] = { 56.5, 30.4, 11, 1800 }, + [70] = { 51.5, 29.1, 11, 1800 }, + [71] = { 24.7, 28.8, 11, 1800 }, + [72] = { 21.8, 27.3, 11, 1800 }, + [73] = { 19.2, 26.4, 11, 1800 }, + [74] = { 46.5, 25.3, 11, 1800 }, + [75] = { 41, 24.4, 11, 1800 }, + [76] = { 34.5, 21.8, 11, 1800 }, + [77] = { 57, 78.9, 15, 1800 }, + [78] = { 39.6, 46.9, 15, 1800 }, + [79] = { 35.5, 45.3, 15, 1800 }, + [80] = { 35.2, 23, 15, 1800 }, + [81] = { 42.9, 21.9, 15, 1800 }, + [82] = { 51.3, 21.5, 15, 1800 }, + [83] = { 49, 19.6, 15, 1800 }, + [84] = { 37.5, 15.3, 15, 1800 }, + [85] = { 41.6, 94.8, 17, 1800 }, + [86] = { 45.2, 84.7, 17, 1800 }, + [87] = { 45.3, 83.8, 17, 1800 }, + [88] = { 43.4, 82.4, 17, 1800 }, + [89] = { 43.5, 82.4, 17, 1800 }, + [90] = { 46.8, 81.9, 17, 1800 }, + [91] = { 43.3, 81.3, 17, 1800 }, + [92] = { 48.1, 78.9, 17, 1800 }, + [93] = { 46.6, 77.9, 17, 1800 }, + [94] = { 53.9, 77.4, 17, 1800 }, + [95] = { 44.9, 75.4, 17, 1800 }, + [96] = { 46.7, 74.8, 17, 1800 }, + [97] = { 47.4, 74.5, 17, 1800 }, + [98] = { 47.2, 72.4, 17, 1800 }, + [99] = { 43.5, 71.3, 17, 1800 }, + [100] = { 47.9, 70.3, 17, 1800 }, + [101] = { 48, 70, 17, 1800 }, + [102] = { 45.5, 67, 17, 1800 }, + [103] = { 53.8, 65.9, 17, 1800 }, + [104] = { 48.7, 62.1, 17, 1800 }, + [105] = { 54.9, 61.9, 17, 1800 }, + [106] = { 48.5, 59.1, 17, 1800 }, + [107] = { 49.7, 58.7, 17, 1800 }, + [108] = { 50.1, 56.3, 17, 1800 }, + [109] = { 44.9, 54.9, 17, 1800 }, + [110] = { 53, 53.2, 17, 1800 }, + [111] = { 57.8, 51.4, 17, 1800 }, + [112] = { 56.3, 48.5, 17, 1800 }, + [113] = { 47.9, 34.5, 17, 1800 }, + [114] = { 49, 34, 17, 1800 }, + [115] = { 49.1, 32.8, 17, 1800 }, + [116] = { 48.2, 32.5, 17, 1800 }, + [117] = { 46.3, 32.4, 17, 1800 }, + [118] = { 46.2, 32.3, 17, 1800 }, + [119] = { 47.6, 32.2, 17, 1800 }, + [120] = { 48.7, 32, 17, 1800 }, + [121] = { 33, 24.3, 17, 1800 }, + [122] = { 40.8, 79.9, 33, 1800 }, + [123] = { 32.2, 72.5, 33, 1800 }, + [124] = { 31.6, 67.4, 33, 1800 }, + [125] = { 33.1, 65.2, 33, 1800 }, + [126] = { 33.6, 64.4, 33, 1800 }, + [127] = { 31.3, 59.2, 33, 1800 }, + [128] = { 32.4, 52.7, 33, 1800 }, + [129] = { 40.8, 50.4, 33, 1800 }, + [130] = { 40.2, 49.7, 33, 1800 }, + [131] = { 30.1, 43.8, 33, 1800 }, + [132] = { 31.6, 43.7, 33, 1800 }, + [133] = { 28.2, 42.6, 33, 1800 }, + [134] = { 32.5, 40.9, 33, 1800 }, + [135] = { 41.3, 40.7, 33, 1800 }, + [136] = { 34.3, 39.3, 33, 1800 }, + [137] = { 41, 39.1, 33, 1800 }, + [138] = { 47.9, 38, 33, 1800 }, + [139] = { 45, 38, 33, 1800 }, + [140] = { 45.1, 37.9, 33, 1800 }, + [141] = { 46, 37.3, 33, 1800 }, + [142] = { 45.6, 34.7, 33, 1800 }, + [143] = { 38.2, 34.2, 33, 1800 }, + [144] = { 48.9, 33.8, 33, 1800 }, + [145] = { 44.8, 33.1, 33, 1800 }, + [146] = { 48.4, 32.2, 33, 1800 }, + [147] = { 45.5, 31.8, 33, 1800 }, + [148] = { 35, 30.2, 33, 1800 }, + [149] = { 47, 28.2, 33, 1800 }, + [150] = { 41.1, 28.1, 33, 1800 }, + [151] = { 42.2, 27.1, 33, 1800 }, + [152] = { 35.7, 26.3, 33, 1800 }, + [153] = { 34.2, 26.1, 33, 1800 }, + [154] = { 41.4, 25.8, 33, 1800 }, + [155] = { 46.6, 25.7, 33, 1800 }, + [156] = { 44.2, 22.7, 33, 1800 }, + [157] = { 31.8, 22.5, 33, 1800 }, + [158] = { 43, 21.5, 33, 1800 }, + [159] = { 30.5, 21.3, 33, 1800 }, + [160] = { 33.7, 18.8, 33, 1800 }, + [161] = { 44.1, 17.5, 33, 1800 }, + [162] = { 31.2, 16.4, 33, 1800 }, + [163] = { 25.5, 16.2, 33, 1800 }, + [164] = { 45.2, 14.2, 33, 1800 }, + [165] = { 28.3, 14.1, 33, 1800 }, + [166] = { 47.7, 12.5, 33, 1800 }, + [167] = { 47.6, 12.3, 33, 1800 }, + [168] = { 35.3, 12.2, 33, 1800 }, + [169] = { 33.7, 11.4, 33, 1800 }, + [170] = { 34.2, 11.3, 33, 1800 }, + [171] = { 30.2, 10.6, 33, 1800 }, + [172] = { 61.9, 99.4, 36, 1800 }, + [173] = { 48, 96.7, 36, 1800 }, + [174] = { 32.5, 96.3, 36, 1800 }, + [175] = { 25.1, 93.3, 36, 1800 }, + [176] = { 56.5, 91.9, 36, 1800 }, + [177] = { 39.4, 91.9, 36, 1800 }, + [178] = { 19, 90.6, 36, 1800 }, + [179] = { 49.5, 87.3, 36, 1800 }, + [180] = { 15.5, 87.2, 36, 1800 }, + [181] = { 30.1, 85.5, 36, 1800 }, + [182] = { 23.8, 82.9, 36, 1800 }, + [183] = { 20.1, 79.6, 36, 1800 }, + [184] = { 29.8, 77.4, 36, 1800 }, + [185] = { 48.8, 75.6, 36, 1800 }, + [186] = { 26.4, 70.5, 36, 1800 }, + [187] = { 58.5, 70.3, 36, 1800 }, + [188] = { 58.2, 60, 36, 1800 }, + [189] = { 44.6, 25.1, 36, 1800 }, + [190] = { 44.9, 16.9, 36, 1800 }, + [191] = { 56, 70.1, 45, 1800 }, + [192] = { 61.4, 67.5, 45, 1800 }, + [193] = { 55.1, 55, 45, 1800 }, + [194] = { 59.6, 50.9, 45, 1800 }, + [195] = { 18.9, 50.8, 45, 1800 }, + [196] = { 67.2, 50.7, 45, 1800 }, + [197] = { 61.5, 50.6, 45, 1800 }, + [198] = { 41.9, 50.6, 45, 1800 }, + [199] = { 31.7, 48, 45, 1800 }, + [200] = { 52.4, 47.6, 45, 1800 }, + [201] = { 55.9, 46.6, 45, 1800 }, + [202] = { 69.9, 46.5, 45, 1800 }, + [203] = { 22.4, 46.1, 45, 1800 }, + [204] = { 39.5, 41.1, 45, 1800 }, + [205] = { 48.4, 39.9, 45, 1800 }, + [206] = { 66.2, 39.4, 45, 1800 }, + [207] = { 46, 39.3, 45, 1800 }, + [208] = { 39.8, 37.2, 45, 1800 }, + [209] = { 42.2, 34, 45, 1800 }, + [210] = { 65.3, 34, 45, 1800 }, + [211] = { 18.5, 24.1, 45, 1800 }, + [212] = { 68.4, 69.5, 267, 1800 }, + [213] = { 68.7, 69.5, 267, 1800 }, + [214] = { 29.7, 66.2, 267, 1800 }, + [215] = { 33.8, 60.9, 267, 1800 }, + [216] = { 71.4, 60, 267, 1800 }, + [217] = { 30.6, 58.9, 267, 1800 }, + [218] = { 45.4, 56.3, 267, 1800 }, + [219] = { 66.7, 56, 267, 1800 }, + [220] = { 38.8, 55.9, 267, 1800 }, + [221] = { 23.5, 55.6, 267, 1800 }, + [222] = { 29.6, 54, 267, 1800 }, + [223] = { 81.2, 52.1, 267, 1800 }, + [224] = { 71.9, 51.7, 267, 1800 }, + [225] = { 38.8, 51.2, 267, 1800 }, + [226] = { 69.3, 51.1, 267, 1800 }, + [227] = { 26.7, 44.6, 267, 1800 }, + [228] = { 26.5, 39.6, 267, 1800 }, + [229] = { 71.6, 37, 267, 1800 }, + [230] = { 46.5, 36.5, 267, 1800 }, + [231] = { 63, 35.4, 267, 1800 }, + [232] = { 81.6, 33.9, 267, 1800 }, + [233] = { 50.9, 33.1, 267, 1800 }, + [234] = { 37.3, 32.7, 267, 1800 }, + [235] = { 76.8, 32.6, 267, 1800 }, + [236] = { 30.8, 30.1, 267, 1800 }, + [237] = { 58.3, 28.9, 267, 1800 }, + [238] = { 43.3, 28.8, 267, 1800 }, + [239] = { 25.5, 27.7, 267, 1800 }, + [240] = { 52.2, 24.8, 267, 1800 }, + [241] = { 22.4, 24.8, 267, 1800 }, + [242] = { 35.2, 23.3, 267, 1800 }, + [243] = { 29.7, 21, 267, 1800 }, + [244] = { 26.4, 18.1, 267, 1800 }, + [245] = { 34.9, 16.1, 267, 1800 }, + [246] = { 51.5, 14.6, 267, 1800 }, + [247] = { 60.1, 9.9, 267, 1800 }, + [248] = { 59.8, 0.9, 267, 1800 }, + [249] = { 72.6, 73.1, 331, 1800 }, + [250] = { 82.4, 70.1, 331, 1800 }, + [251] = { 44.1, 69.2, 331, 1800 }, + [252] = { 88.5, 68.4, 331, 1800 }, + [253] = { 77.1, 67.4, 331, 1800 }, + [254] = { 47.1, 67.3, 331, 1800 }, + [255] = { 41.4, 66.1, 331, 1800 }, + [256] = { 42.7, 63.8, 331, 1800 }, + [257] = { 81.9, 61.7, 331, 1800 }, + [258] = { 34.8, 59.3, 331, 1800 }, + [259] = { 63.9, 54.4, 331, 1800 }, + [260] = { 68.5, 50.6, 331, 1800 }, + [261] = { 18.6, 49.5, 331, 1800 }, + [262] = { 89.5, 45.7, 331, 1800 }, + [263] = { 32.8, 39.7, 331, 1800 }, + [264] = { 60.9, 39.6, 331, 1800 }, + [265] = { 37.3, 35.8, 331, 1800 }, + [266] = { 22.7, 34.6, 331, 1800 }, + [267] = { 58.1, 33.7, 331, 1800 }, + [268] = { 18.8, 33.6, 331, 1800 }, + [269] = { 28.9, 30.7, 331, 1800 }, + [270] = { 16.7, 30.1, 331, 1800 }, + [271] = { 30.8, 23.7, 331, 1800 }, + [272] = { 92.6, 43.5, 357, 1800 }, + [273] = { 57.3, 97.9, 361, 1800 }, + [274] = { 71.6, 90.2, 400, 1800 }, + [275] = { 70.9, 77.8, 400, 1800 }, + [276] = { 86.7, 75.3, 400, 1800 }, + [277] = { 76.4, 70.1, 400, 1800 }, + [278] = { 79.9, 67.5, 400, 1800 }, + [279] = { 70.7, 65.5, 400, 1800 }, + [280] = { 41.3, 58.2, 400, 1800 }, + [281] = { 82.9, 55, 400, 1800 }, + [282] = { 33.5, 53.3, 400, 1800 }, + [283] = { 41.4, 52.9, 400, 1800 }, + [284] = { 56, 49.7, 400, 1800 }, + [285] = { 27.6, 47.9, 400, 1800 }, + [286] = { 31, 46.4, 400, 1800 }, + [287] = { 26.4, 28, 400, 1800 }, + [288] = { 12.8, 14.1, 400, 1800 }, + [289] = { 56.8, 84.6, 405, 1800 }, + [290] = { 29.1, 82.3, 405, 1800 }, + [291] = { 62.3, 74.1, 405, 1800 }, + [292] = { 42, 70, 405, 1800 }, + [293] = { 42, 63.4, 405, 1800 }, + [294] = { 43.2, 63.2, 405, 1800 }, + [295] = { 61.9, 59, 405, 1800 }, + [296] = { 56, 47.9, 405, 1800 }, + [297] = { 47.8, 47.3, 405, 1800 }, + [298] = { 41.9, 45.7, 405, 1800 }, + [299] = { 45.2, 40, 405, 1800 }, + [300] = { 49.3, 39.5, 405, 1800 }, + [301] = { 64.2, 35, 405, 1800 }, + [302] = { 74.6, 32.5, 405, 1800 }, + [303] = { 77.6, 86.5, 406, 1800 }, + [304] = { 69.6, 83.5, 406, 1800 }, + [305] = { 60.5, 74.3, 406, 1800 }, + [306] = { 40.1, 71.3, 406, 1800 }, + [307] = { 37.4, 70.2, 406, 1800 }, + [308] = { 38.6, 68.8, 406, 1800 }, + [309] = { 37.6, 67.5, 406, 1800 }, + [310] = { 54.3, 63.5, 406, 1800 }, + [311] = { 35.9, 63.4, 406, 1800 }, + [312] = { 37.7, 62, 406, 1800 }, + [313] = { 65.8, 59, 406, 1800 }, + [314] = { 41.5, 55.1, 406, 1800 }, + [315] = { 72.1, 53.9, 406, 1800 }, + [316] = { 41.4, 52.6, 406, 1800 }, + [317] = { 42.4, 48.4, 406, 1800 }, + [318] = { 52.5, 42.7, 406, 1800 }, + [319] = { 40.2, 42.6, 406, 1800 }, + [320] = { 49.4, 40.6, 406, 1800 }, + [321] = { 79.6, 35.6, 406, 1800 }, + [322] = { 47.1, 25.7, 406, 1800 }, + [323] = { 44.2, 22.1, 406, 1800 }, + [324] = { 43.6, 18.9, 406, 1800 }, + [325] = { 55.2, 16.7, 406, 1800 }, + [326] = { 56.9, 60, 718, 1800 }, + [327] = { 76.4, 50.9, 718, 1800 }, + [328] = { 78.9, 30.5, 718, 1800 }, + [329] = { 62.7, 24.7, 718, 1800 }, + [330] = { 28.5, 23.7, 718, 1800 }, + [331] = { 28.4, 21.4, 718, 1800 }, + [332] = { 52.2, 20, 718, 1800 }, + [333] = { 70.9, 15.8, 718, 1800 }, + [334] = { 89.7, 36.3, 718, 604800 }, + [335] = { 28.1, 22.7, 718, 604800 }, + [336] = { 30.7, 70.2, 5136, 604800 }, + [337] = { 25.4, 68.7, 5136, 604800 }, + [338] = { 45.1, 61.7, 5136, 604800 }, + [339] = { 55.4, 61.4, 5136, 604800 }, + [340] = { 24.3, 56.7, 5136, 604800 }, + [341] = { 52.7, 51.1, 5136, 604800 }, + [342] = { 25.8, 46.9, 5136, 604800 }, + [343] = { 85.5, 26.8, 5179, 1800 }, + [344] = { 89.1, 22.1, 5179, 1800 }, + [345] = { 86.3, 20.3, 5179, 1800 }, + [346] = { 99.3, 18.1, 5179, 1800 }, + [347] = { 93.5, 17.8, 5179, 1800 }, + [348] = { 80.1, 17.5, 5179, 1800 }, + [349] = { 85.5, 16.1, 5179, 1800 }, + [350] = { 93.5, 13.7, 5179, 1800 }, + [351] = { 82.9, 7.9, 5179, 1800 }, + [352] = { 82.8, 3.5, 5179, 1800 }, + [353] = { 42.3, 70.8, 5581, 1800 }, + [354] = { 61, 60.7, 5581, 1800 }, + [355] = { 66.6, 52.2, 5581, 1800 }, + [356] = { 42, 51.9, 5581, 1800 }, + [357] = { 70, 49.4, 5581, 1800 }, + [358] = { 69.2, 40.5, 5581, 1800 }, + [359] = { 57.3, 38.2, 5581, 1800 }, + [360] = { 71.4, 35.5, 5581, 1800 }, + [361] = { 66.6, 30.9, 5581, 1800 }, + [362] = { 37.4, 100, 5602, 1800 }, + [363] = { 23.1, 98.9, 5602, 1800 }, + [364] = { 24.9, 92.4, 5602, 1800 }, + [365] = { 23.6, 89.9, 5602, 1800 }, + [366] = { 64.2, 67.9, 5602, 1800 }, + [367] = { 46.8, 60.3, 5602, 1800 }, + [368] = { 46, 54.5, 5602, 1800 }, + [369] = { 61.3, 50.5, 5602, 1800 }, + [370] = { 50.6, 34.9, 5602, 1800 }, + [371] = { 15.4, 30.2, 5602, 1800 }, + [372] = { 11.1, 28.8, 5602, 1800 }, + [373] = { 18.5, 27.1, 5602, 1800 }, + [374] = { 61.5, 25, 5602, 1800 }, + [375] = { 43.4, 23.2, 5602, 1800 }, + [376] = { 18.7, 20.7, 5602, 1800 }, + [377] = { 20.4, 19.1, 5602, 1800 }, + [378] = { 17.4, 18.3, 5602, 1800 }, + [379] = { 6.9, 16.2, 5602, 1800 }, + [380] = { 19.5, 12.9, 5602, 1800 }, + [381] = { 46.2, 12.6, 5602, 1800 }, + [382] = { 1.9, 12.3, 5602, 1800 }, + [383] = { 19, 12, 5602, 1800 }, + [384] = { 17.5, 10.5, 5602, 1800 }, + [385] = { 16.2, 9.1, 5602, 1800 }, + [386] = { 23.1, 8.9, 5602, 1800 }, + [387] = { 13.2, 5.8, 5602, 1800 }, + [388] = { 15.5, 4.3, 5602, 1800 }, + [389] = { 14.3, 4.2, 5602, 1800 }, + [390] = { 12.2, 2.3, 5602, 1800 }, + [391] = { 8.3, 1.3, 5602, 1800 }, + }, + }, + [1627] = { + ["coords"] = { + [1] = { 49.9, 60.3, 130, 2 }, + }, + }, + [1628] = { + ["coords"] = { + [1] = { 31.3, 90.3, 1, 1800 }, + [2] = { 32, 89.5, 1, 1800 }, + [3] = { 32.8, 88.4, 1, 1800 }, + [4] = { 79.6, 73.6, 10, 1800 }, + [5] = { 78.5, 71.6, 10, 1800 }, + [6] = { 80.3, 71.5, 10, 1800 }, + [7] = { 79.4, 71.5, 10, 1800 }, + [8] = { 78.4, 70.2, 10, 1800 }, + [9] = { 78.8, 68.8, 10, 1800 }, + [10] = { 16.5, 48.3, 10, 1800 }, + [11] = { 22.4, 47.2, 10, 1800 }, + [12] = { 23, 46.7, 10, 1800 }, + [13] = { 22.5, 46.7, 10, 1800 }, + [14] = { 14.5, 46.6, 10, 1800 }, + [15] = { 20.4, 46.3, 10, 1800 }, + [16] = { 15.3, 46.1, 10, 1800 }, + [17] = { 16.6, 46, 10, 1800 }, + [18] = { 16, 45.5, 10, 1800 }, + [19] = { 20.3, 45.5, 10, 1800 }, + [20] = { 14.3, 45, 10, 1800 }, + [21] = { 15.7, 44.6, 10, 1800 }, + [22] = { 15.2, 43.9, 10, 1800 }, + [23] = { 24.4, 43.4, 10, 1800 }, + [24] = { 23.1, 43.3, 10, 1800 }, + [25] = { 22, 43.3, 10, 1800 }, + [26] = { 14.9, 43.2, 10, 1800 }, + [27] = { 23.3, 42.5, 10, 1800 }, + [28] = { 16.5, 40.7, 10, 1800 }, + [29] = { 22.7, 40.4, 10, 1800 }, + [30] = { 16.8, 40.1, 10, 1800 }, + [31] = { 16.8, 39.5, 10, 1800 }, + [32] = { 24.6, 37.7, 10, 1800 }, + [33] = { 16.5, 37.2, 10, 1800 }, + [34] = { 22.1, 35.6, 10, 1800 }, + [35] = { 22.9, 35.6, 10, 1800 }, + [36] = { 22.4, 34.3, 10, 1800 }, + [37] = { 44.6, 27, 11, 1800 }, + [38] = { 43.6, 26.9, 11, 1800 }, + [39] = { 42.7, 26.7, 11, 1800 }, + [40] = { 44, 26.4, 11, 1800 }, + [41] = { 43.5, 26.3, 11, 1800 }, + [42] = { 43.1, 25.9, 11, 1800 }, + [43] = { 43.6, 25.6, 11, 1800 }, + [44] = { 43.8, 25.5, 11, 1800 }, + [45] = { 44.5, 25.3, 11, 1800 }, + [46] = { 44.7, 24.7, 11, 1800 }, + [47] = { 43.8, 24.6, 11, 1800 }, + [48] = { 43.8, 24.3, 11, 1800 }, + [49] = { 44.8, 24, 11, 1800 }, + [50] = { 43.3, 83.3, 17, 1800 }, + [51] = { 44.3, 83, 17, 1800 }, + [52] = { 42, 81.2, 17, 1800 }, + [53] = { 41.6, 78.9, 17, 1800 }, + [54] = { 38.9, 55.5, 36, 1800 }, + [55] = { 38.5, 55.2, 36, 1800 }, + [56] = { 39.2, 55, 36, 1800 }, + [57] = { 39, 54.7, 36, 1800 }, + [58] = { 39.3, 54.2, 36, 1800 }, + [59] = { 38.4, 53.3, 36, 1800 }, + [60] = { 39, 53.1, 36, 1800 }, + [61] = { 29.5, 58.7, 45, 1800 }, + [62] = { 29.1, 57.5, 45, 1800 }, + [63] = { 28.3, 57.2, 45, 1800 }, + [64] = { 28.3, 56.9, 45, 1800 }, + [65] = { 27.2, 56.9, 45, 1800 }, + [66] = { 27.5, 56.6, 45, 1800 }, + [67] = { 26.3, 56.5, 45, 1800 }, + [68] = { 27.9, 85.5, 139, 1800 }, + [69] = { 58.5, 88.8, 405, 1800 }, + [70] = { 54.7, 62.8, 405, 1800 }, + [71] = { 53.5, 62, 405, 1800 }, + [72] = { 52.9, 61.2, 405, 1800 }, + [73] = { 52.3, 61.2, 405, 1800 }, + [74] = { 49, 60.4, 405, 1800 }, + [75] = { 54.7, 59.8, 405, 1800 }, + [76] = { 49.8, 59, 405, 1800 }, + [77] = { 54.4, 58.9, 405, 1800 }, + [78] = { 51, 58.2, 405, 1800 }, + [79] = { 48.9, 58.1, 405, 1800 }, + [80] = { 52.8, 56.6, 405, 1800 }, + [81] = { 51.4, 56.4, 405, 1800 }, + [82] = { 50.2, 56, 405, 1800 }, + [83] = { 72.3, 48.8, 405, 1800 }, + [84] = { 41.4, 41.3, 405, 1800 }, + [85] = { 32.7, 44.3, 722, 604800 }, + [86] = { 67.9, 37.9, 722, 604800 }, + [87] = { 68.7, 30.9, 722, 604800 }, + [88] = { 64.7, 14.2, 722, 604800 }, + [89] = { 36, 66.2, 5136, 604800 }, + [90] = { 38.9, 72, 5561, 1800 }, + [91] = { 38.7, 70.4, 5561, 1800 }, + [92] = { 40.3, 68.9, 5561, 1800 }, + [93] = { 64, 24.3, 5581, 1800 }, + [94] = { 61.7, 23.8, 5581, 1800 }, + [95] = { 62.6, 22.6, 5581, 1800 }, + [96] = { 64, 21, 5581, 1800 }, + [97] = { 50.4, 79.2, 5602, 1800 }, + [98] = { 49.4, 77.8, 5602, 1800 }, + [99] = { 51, 77.6, 5602, 1800 }, + [100] = { 49.9, 77, 5602, 1800 }, + }, + }, + [1667] = { + ["coords"] = { + [1] = { 47.7, 63.4, 11, 900 }, + [2] = { 46.5, 63, 11, 900 }, + [3] = { 49.4, 61, 11, 900 }, + [4] = { 5.4, 27.7, 5602, 900 }, + [5] = { 4.4, 27.4, 5602, 900 }, + [6] = { 6.7, 25.9, 5602, 900 }, + }, + }, + [1668] = { + ["coords"] = { + [1] = { 56.2, 52.6, 11, 7200 }, + [2] = { 11.9, 19.3, 5602, 7200 }, + }, + }, + [1669] = { + ["coords"] = { + [1] = { 49.9, 39.3, 11, 7200 }, + [2] = { 7.1, 9.1, 5602, 7200 }, + }, + }, + [1673] = { + ["coords"] = { + [1] = { 41.5, 80.2, 141, 60 }, + [2] = { 45.5, 79.8, 141, 60 }, + [3] = { 48.2, 79.2, 141, 60 }, + [4] = { 47.6, 78.8, 141, 60 }, + [5] = { 50.6, 77.6, 141, 60 }, + [6] = { 47.8, 77.1, 141, 60 }, + [7] = { 52, 76.5, 141, 60 }, + [8] = { 58.6, 76.2, 141, 60 }, + [9] = { 44.6, 76, 141, 60 }, + [10] = { 48.8, 74.6, 141, 60 }, + [11] = { 59.9, 74.5, 141, 60 }, + [12] = { 62.3, 73.7, 141, 60 }, + [13] = { 45.8, 73.3, 141, 60 }, + [14] = { 54.2, 71.8, 141, 60 }, + [15] = { 54.2, 70.5, 141, 60 }, + [16] = { 41.6, 69, 141, 60 }, + [17] = { 60.3, 69, 141, 60 }, + [18] = { 49.9, 68.2, 141, 60 }, + [19] = { 53.7, 67.7, 141, 60 }, + [20] = { 52, 67.2, 141, 60 }, + [21] = { 49, 66.8, 141, 60 }, + [22] = { 54.2, 65.5, 141, 60 }, + [23] = { 56.4, 65.4, 141, 60 }, + [24] = { 54, 65.3, 141, 60 }, + [25] = { 50.3, 65.1, 141, 60 }, + [26] = { 65.1, 65, 141, 60 }, + [27] = { 51.7, 64.6, 141, 60 }, + [28] = { 62, 63.9, 141, 60 }, + [29] = { 56.9, 63.8, 141, 60 }, + [30] = { 57.5, 63.5, 141, 60 }, + [31] = { 38.3, 63.3, 141, 60 }, + [32] = { 50.5, 63.2, 141, 60 }, + [33] = { 66.3, 62.9, 141, 60 }, + [34] = { 57.2, 62.7, 141, 60 }, + [35] = { 63.6, 62.3, 141, 60 }, + [36] = { 60.2, 62.3, 141, 60 }, + [37] = { 59, 62.2, 141, 60 }, + [38] = { 65.6, 62, 141, 60 }, + [39] = { 54.3, 61.9, 141, 60 }, + [40] = { 66.9, 61.3, 141, 60 }, + [41] = { 52.3, 61.3, 141, 60 }, + [42] = { 59, 61.2, 141, 60 }, + [43] = { 52, 60.5, 141, 60 }, + [44] = { 69, 59.8, 141, 60 }, + [45] = { 53, 59.6, 141, 60 }, + [46] = { 50.2, 59.1, 141, 60 }, + [47] = { 49.3, 58.3, 141, 60 }, + [48] = { 51.9, 58.2, 141, 60 }, + [49] = { 38.9, 57.9, 141, 60 }, + [50] = { 68.6, 57.8, 141, 60 }, + [51] = { 50.5, 57, 141, 60 }, + [52] = { 50.2, 56.9, 141, 60 }, + [53] = { 59, 56.1, 141, 60 }, + [54] = { 40.8, 56.1, 141, 60 }, + [55] = { 58.8, 55.5, 141, 60 }, + [56] = { 58.1, 55.4, 141, 60 }, + [57] = { 41.4, 54, 141, 60 }, + [58] = { 66.7, 53.5, 141, 60 }, + [59] = { 61.6, 53.4, 141, 60 }, + [60] = { 45.1, 52.8, 141, 60 }, + [61] = { 47.6, 52.5, 141, 60 }, + [62] = { 64.8, 50.8, 141, 60 }, + }, + }, + [1705] = { + ["coords"] = { + [1] = { 53.9, 72.5, 130, 7200 }, + [2] = { 56.4, 0.1, 5179, 7200 }, + }, + }, + [1706] = { + ["coords"] = { + [1] = { 53.9, 72.5, 130, 7200 }, + [2] = { 56.4, 0.1, 5179, 7200 }, + }, + }, + [1707] = { + ["coords"] = { + [1] = { 53.9, 72.5, 130, 7200 }, + [2] = { 56.4, 0.1, 5179, 7200 }, + }, + }, + [1708] = { + ["coords"] = { + [1] = { 53.9, 72.5, 130, 7200 }, + [2] = { 56.4, 0.1, 5179, 7200 }, + }, + }, + [1709] = { + ["coords"] = { + [1] = { 53.9, 72.5, 130, 7200 }, + [2] = { 56.4, 0.1, 5179, 7200 }, + }, + }, + [1710] = { + ["coords"] = { + [1] = { 53.9, 72.5, 130, 7200 }, + [2] = { 56.4, 0.1, 5179, 7200 }, + }, + }, + [1721] = { + ["coords"] = { + [1] = { 75.3, 41.5, 267, 0 }, + }, + }, + [1722] = { + ["coords"] = { + [1] = { 79.8, 39.6, 267, 300 }, + }, + }, + [1723] = { + ["coords"] = { + [1] = { 65.1, 62.5, 267, 300 }, + [2] = { 62.9, 62.1, 267, 300 }, + [3] = { 64.6, 62, 267, 300 }, + [4] = { 63.8, 61.7, 267, 300 }, + [5] = { 63.7, 61.2, 267, 300 }, + [6] = { 63.4, 60.8, 267, 300 }, + }, + }, + [1726] = { + ["coords"] = { + [1] = { 26.5, 46.4, 44, 2 }, + }, + }, + [1727] = { + ["coords"] = { + [1] = { 9.9, 49.8, 45, 2 }, + [2] = { 71.6, 81, 267, 2 }, + }, + }, + [1731] = { + ["coords"] = { + [1] = { 48.3, 65.1, 1, 900 }, + [2] = { 36, 63.6, 1, 900 }, + [3] = { 42.8, 63.5, 1, 900 }, + [4] = { 50, 63.4, 1, 900 }, + [5] = { 73.7, 63.2, 1, 900 }, + [6] = { 50.3, 62.9, 1, 900 }, + [7] = { 71.2, 62.6, 1, 900 }, + [8] = { 68.4, 60.7, 1, 900 }, + [9] = { 38, 59.4, 1, 900 }, + [10] = { 63.6, 59.1, 1, 900 }, + [11] = { 32, 59, 1, 900 }, + [12] = { 45.2, 58.9, 1, 900 }, + [13] = { 52.5, 58.3, 1, 900 }, + [14] = { 72.4, 58.2, 1, 900 }, + [15] = { 49.9, 57.7, 1, 900 }, + [16] = { 68.9, 57.3, 1, 900 }, + [17] = { 69.3, 56.7, 1, 900 }, + [18] = { 58.8, 56.5, 1, 900 }, + [19] = { 56.4, 56.2, 1, 900 }, + [20] = { 65.6, 56, 1, 900 }, + [21] = { 21.2, 54.7, 1, 900 }, + [22] = { 33, 54.3, 1, 900 }, + [23] = { 37.6, 54, 1, 900 }, + [24] = { 44.3, 53.9, 1, 900 }, + [25] = { 71.2, 53.7, 1, 900 }, + [26] = { 78.9, 53.5, 1, 900 }, + [27] = { 72.2, 53.4, 1, 900 }, + [28] = { 37.9, 53.4, 1, 900 }, + [29] = { 56.1, 53.4, 1, 900 }, + [30] = { 72.2, 53, 1, 900 }, + [31] = { 68.9, 52.9, 1, 900 }, + [32] = { 51.7, 52.5, 1, 900 }, + [33] = { 75.1, 52.3, 1, 900 }, + [34] = { 21.4, 51.8, 1, 900 }, + [35] = { 71.2, 51.6, 1, 900 }, + [36] = { 71.6, 51.5, 1, 900 }, + [37] = { 42.8, 51.4, 1, 900 }, + [38] = { 64.9, 51.4, 1, 900 }, + [39] = { 81.6, 51.3, 1, 900 }, + [40] = { 23.4, 51.2, 1, 900 }, + [41] = { 32.8, 51.2, 1, 900 }, + [42] = { 70.8, 50.8, 1, 900 }, + [43] = { 67, 50.2, 1, 900 }, + [44] = { 43.9, 49.9, 1, 900 }, + [45] = { 72, 49.6, 1, 900 }, + [46] = { 40.8, 49.4, 1, 900 }, + [47] = { 38.9, 48.7, 1, 900 }, + [48] = { 40.3, 48.3, 1, 900 }, + [49] = { 43.1, 48.3, 1, 900 }, + [50] = { 72.3, 48.1, 1, 900 }, + [51] = { 42.3, 48, 1, 900 }, + [52] = { 42.9, 47.3, 1, 900 }, + [53] = { 62.5, 47.1, 1, 900 }, + [54] = { 81.7, 47, 1, 900 }, + [55] = { 39, 46.5, 1, 900 }, + [56] = { 40.6, 45.2, 1, 900 }, + [57] = { 50, 44.4, 1, 900 }, + [58] = { 51.7, 43.9, 1, 900 }, + [59] = { 53.7, 42.9, 1, 900 }, + [60] = { 38.2, 42.8, 1, 900 }, + [61] = { 57.9, 42, 1, 900 }, + [62] = { 34.5, 41.4, 1, 900 }, + [63] = { 36, 41.2, 1, 900 }, + [64] = { 82.4, 39.3, 1, 900 }, + [65] = { 43.2, 38.7, 1, 900 }, + [66] = { 78.4, 38.3, 1, 900 }, + [67] = { 38.9, 37.9, 1, 900 }, + [68] = { 42.1, 36.8, 1, 900 }, + [69] = { 39.7, 36.7, 1, 900 }, + [70] = { 27.1, 34.8, 1, 900 }, + [71] = { 42.5, 34.2, 1, 900 }, + [72] = { 80.1, 33.6, 1, 900 }, + [73] = { 41.3, 33.4, 1, 900 }, + [74] = { 40, 33.1, 1, 900 }, + [75] = { 41.3, 29, 1, 900 }, + [76] = { 20.1, 80.2, 10, 900 }, + [77] = { 65.1, 80.1, 10, 900 }, + [78] = { 64.4, 78.9, 10, 900 }, + [79] = { 59.6, 78.3, 10, 900 }, + [80] = { 40.3, 78.2, 10, 900 }, + [81] = { 68.5, 77.7, 10, 900 }, + [82] = { 40.3, 77, 10, 900 }, + [83] = { 38.1, 76.9, 10, 900 }, + [84] = { 69.1, 74.1, 10, 900 }, + [85] = { 41.9, 73.8, 10, 900 }, + [86] = { 46.4, 73.5, 10, 900 }, + [87] = { 70.9, 72.1, 10, 900 }, + [88] = { 28.1, 69.9, 10, 900 }, + [89] = { 66.6, 56.1, 10, 900 }, + [90] = { 84.1, 55.5, 10, 900 }, + [91] = { 82.4, 51.2, 10, 900 }, + [92] = { 59, 46.7, 10, 900 }, + [93] = { 5.8, 44.6, 10, 900 }, + [94] = { 33.6, 44.3, 10, 900 }, + [95] = { 29.3, 42.5, 10, 900 }, + [96] = { 66, 41.7, 10, 900 }, + [97] = { 68.3, 40, 10, 900 }, + [98] = { 60.1, 35.7, 10, 900 }, + [99] = { 27.8, 34.7, 10, 900 }, + [100] = { 56.8, 25.5, 10, 900 }, + [101] = { 43.5, 22.6, 10, 900 }, + [102] = { 66.1, 90.8, 11, 900 }, + [103] = { 61.3, 80.3, 11, 900 }, + [104] = { 54.7, 79.4, 11, 900 }, + [105] = { 47.9, 73, 11, 900 }, + [106] = { 64.1, 72.8, 11, 900 }, + [107] = { 50.4, 72.4, 11, 900 }, + [108] = { 50, 72.3, 11, 900 }, + [109] = { 48.3, 70.8, 11, 900 }, + [110] = { 61, 70.1, 11, 900 }, + [111] = { 49, 69.4, 11, 900 }, + [112] = { 61.3, 68.5, 11, 900 }, + [113] = { 50.4, 68.4, 11, 900 }, + [114] = { 61.8, 68.2, 11, 900 }, + [115] = { 59.8, 62.9, 11, 900 }, + [116] = { 59.9, 61.2, 11, 900 }, + [117] = { 24, 59.9, 11, 900 }, + [118] = { 60.2, 56.9, 11, 900 }, + [119] = { 25.4, 54.3, 11, 900 }, + [120] = { 25.8, 50.2, 11, 900 }, + [121] = { 30.3, 46.8, 11, 900 }, + [122] = { 31.8, 43.2, 11, 900 }, + [123] = { 27.8, 38, 11, 900 }, + [124] = { 19.5, 36.5, 11, 900 }, + [125] = { 25.1, 35.4, 11, 900 }, + [126] = { 20.7, 35.2, 11, 900 }, + [127] = { 37.3, 33.3, 11, 900 }, + [128] = { 36.3, 32.7, 11, 900 }, + [129] = { 23.4, 31.8, 11, 900 }, + [130] = { 27.1, 31.7, 11, 900 }, + [131] = { 27.6, 31.2, 11, 900 }, + [132] = { 22.2, 30.3, 11, 900 }, + [133] = { 32, 26.5, 11, 900 }, + [134] = { 30.2, 22.2, 11, 900 }, + [135] = { 31, 22.1, 11, 900 }, + [136] = { 31.5, 21.4, 11, 900 }, + [137] = { 29.2, 88.1, 12, 900 }, + [138] = { 38.3, 86.7, 12, 900 }, + [139] = { 75.4, 85.7, 12, 900 }, + [140] = { 52.5, 85.6, 12, 900 }, + [141] = { 50.1, 84.8, 12, 900 }, + [142] = { 24.2, 84.4, 12, 900 }, + [143] = { 51.5, 83.5, 12, 900 }, + [144] = { 39.8, 83.1, 12, 900 }, + [145] = { 37.3, 82.8, 12, 900 }, + [146] = { 41.1, 82.7, 12, 900 }, + [147] = { 54, 82.2, 12, 900 }, + [148] = { 40.7, 82.1, 12, 900 }, + [149] = { 38.9, 81.6, 12, 900 }, + [150] = { 85.4, 81.3, 12, 900 }, + [151] = { 55.9, 81.3, 12, 900 }, + [152] = { 38.3, 81.1, 12, 900 }, + [153] = { 40, 81.1, 12, 900 }, + [154] = { 51.3, 80.7, 12, 900 }, + [155] = { 76.2, 80.5, 12, 900 }, + [156] = { 40.5, 80.5, 12, 900 }, + [157] = { 41.7, 80.5, 12, 900 }, + [158] = { 41.1, 80.4, 12, 900 }, + [159] = { 40.7, 79.8, 12, 900 }, + [160] = { 40, 79.3, 12, 900 }, + [161] = { 85.7, 79.1, 12, 900 }, + [162] = { 59.5, 78.8, 12, 900 }, + [163] = { 40.2, 78.6, 12, 900 }, + [164] = { 42, 78.5, 12, 900 }, + [165] = { 38.9, 78.3, 12, 900 }, + [166] = { 40.2, 77.9, 12, 900 }, + [167] = { 20.8, 77.7, 12, 900 }, + [168] = { 41.7, 77.6, 12, 900 }, + [169] = { 59.7, 77.3, 12, 900 }, + [170] = { 40.8, 77.1, 12, 900 }, + [171] = { 41.6, 77.1, 12, 900 }, + [172] = { 52, 76.4, 12, 900 }, + [173] = { 94.8, 76, 12, 900 }, + [174] = { 17.9, 75.5, 12, 900 }, + [175] = { 78.7, 75.4, 12, 900 }, + [176] = { 20.7, 74.9, 12, 900 }, + [177] = { 43.7, 74.1, 12, 900 }, + [178] = { 50.4, 74, 12, 900 }, + [179] = { 47.6, 73.8, 12, 900 }, + [180] = { 41.3, 73, 12, 900 }, + [181] = { 45.6, 72.6, 12, 900 }, + [182] = { 34.3, 72.5, 12, 900 }, + [183] = { 29.3, 72, 12, 900 }, + [184] = { 65.6, 72, 12, 900 }, + [185] = { 38.1, 71.1, 12, 900 }, + [186] = { 31.8, 70.7, 12, 900 }, + [187] = { 67, 70.5, 12, 900 }, + [188] = { 27.7, 69.9, 12, 900 }, + [189] = { 51.3, 67.5, 12, 900 }, + [190] = { 25.5, 66.6, 12, 900 }, + [191] = { 60.1, 65.2, 12, 900 }, + [192] = { 72.5, 65, 12, 900 }, + [193] = { 60.4, 63.8, 12, 900 }, + [194] = { 62.3, 63.5, 12, 900 }, + [195] = { 52.2, 63.3, 12, 900 }, + [196] = { 32.1, 63.2, 12, 900 }, + [197] = { 89.4, 62, 12, 900 }, + [198] = { 30, 60.2, 12, 900 }, + [199] = { 86.9, 60.2, 12, 900 }, + [200] = { 57.3, 56.8, 12, 900 }, + [201] = { 31.5, 56.6, 12, 900 }, + [202] = { 74.6, 55.2, 12, 900 }, + [203] = { 61.5, 54.1, 12, 900 }, + [204] = { 30.2, 54, 12, 900 }, + [205] = { 61.9, 53.8, 12, 900 }, + [206] = { 60.7, 53, 12, 900 }, + [207] = { 72.6, 52.5, 12, 900 }, + [208] = { 41, 52.4, 12, 900 }, + [209] = { 61.3, 51.8, 12, 900 }, + [210] = { 76.5, 51.7, 12, 900 }, + [211] = { 38.6, 50.8, 12, 900 }, + [212] = { 37.3, 50.8, 12, 900 }, + [213] = { 61.1, 50.2, 12, 900 }, + [214] = { 60.1, 49.7, 12, 900 }, + [215] = { 61.4, 49.7, 12, 900 }, + [216] = { 78.6, 49.5, 12, 900 }, + [217] = { 43.5, 49, 12, 900 }, + [218] = { 61, 48.9, 12, 900 }, + [219] = { 70.1, 47.6, 12, 900 }, + [220] = { 60.9, 47.4, 12, 900 }, + [221] = { 60.6, 47.2, 12, 900 }, + [222] = { 62, 47.1, 12, 900 }, + [223] = { 73.2, 43.8, 12, 900 }, + [224] = { 80.8, 42.6, 12, 900 }, + [225] = { 79.1, 37.2, 12, 900 }, + [226] = { 49.2, 80.9, 14, 900 }, + [227] = { 48, 79.6, 14, 900 }, + [228] = { 50, 78.1, 14, 900 }, + [229] = { 59.5, 78.1, 14, 900 }, + [230] = { 48.3, 78, 14, 900 }, + [231] = { 52.5, 76.2, 14, 900 }, + [232] = { 50.4, 74.5, 14, 900 }, + [233] = { 68.1, 73.6, 14, 900 }, + [234] = { 56.5, 71.5, 14, 900 }, + [235] = { 51.6, 71.4, 14, 900 }, + [236] = { 54.8, 70.2, 14, 900 }, + [237] = { 68.5, 69.8, 14, 900 }, + [238] = { 59.3, 69.5, 14, 900 }, + [239] = { 56.5, 68.5, 14, 900 }, + [240] = { 54.3, 67, 14, 900 }, + [241] = { 55.7, 66.9, 14, 900 }, + [242] = { 96.1, 66.2, 14, 900 }, + [243] = { 61.6, 65.7, 14, 900 }, + [244] = { 55.5, 63.2, 14, 900 }, + [245] = { 50.5, 63.1, 14, 900 }, + [246] = { 95.6, 62, 14, 900 }, + [247] = { 60.1, 61.8, 14, 900 }, + [248] = { 54.7, 60.5, 14, 900 }, + [249] = { 54.6, 60.3, 14, 900 }, + [250] = { 61.1, 60.1, 14, 900 }, + [251] = { 54.6, 59.8, 14, 900 }, + [252] = { 55, 59.7, 14, 900 }, + [253] = { 52.6, 59.3, 14, 900 }, + [254] = { 60.4, 55.5, 14, 900 }, + [255] = { 51.4, 55.4, 14, 900 }, + [256] = { 38.9, 54.5, 14, 900 }, + [257] = { 49.9, 54.4, 14, 900 }, + [258] = { 98.2, 54.3, 14, 900 }, + [259] = { 37.3, 51.6, 14, 900 }, + [260] = { 42.6, 51.4, 14, 900 }, + [261] = { 49.5, 51.1, 14, 900 }, + [262] = { 38.3, 50.6, 14, 900 }, + [263] = { 45.1, 50.4, 14, 900 }, + [264] = { 48.9, 50.2, 14, 900 }, + [265] = { 45.7, 49.6, 14, 900 }, + [266] = { 48.6, 49.4, 14, 900 }, + [267] = { 60.9, 49.3, 14, 900 }, + [268] = { 48.4, 49, 14, 900 }, + [269] = { 49.8, 48.2, 14, 900 }, + [270] = { 44.6, 47.8, 14, 900 }, + [271] = { 99, 46.7, 14, 900 }, + [272] = { 53.5, 46, 14, 900 }, + [273] = { 47, 45.8, 14, 900 }, + [274] = { 53.1, 45.8, 14, 900 }, + [275] = { 36, 45.4, 14, 900 }, + [276] = { 36.1, 44.2, 14, 900 }, + [277] = { 56.9, 41.2, 14, 900 }, + [278] = { 49.8, 41.1, 14, 900 }, + [279] = { 59.2, 41.1, 14, 900 }, + [280] = { 39.5, 40.2, 14, 900 }, + [281] = { 43.4, 39.6, 14, 900 }, + [282] = { 56.3, 39.4, 14, 900 }, + [283] = { 42.4, 38.1, 14, 900 }, + [284] = { 46.6, 37.2, 14, 900 }, + [285] = { 37.1, 37, 14, 900 }, + [286] = { 52.9, 36.6, 14, 900 }, + [287] = { 49.5, 35.9, 14, 900 }, + [288] = { 55.1, 35.8, 14, 900 }, + [289] = { 35.6, 35.5, 14, 900 }, + [290] = { 43.8, 34.6, 14, 900 }, + [291] = { 40.9, 33.9, 14, 900 }, + [292] = { 36.4, 33.7, 14, 900 }, + [293] = { 50.4, 33, 14, 900 }, + [294] = { 52.8, 32.9, 14, 900 }, + [295] = { 45.8, 31.4, 14, 900 }, + [296] = { 48.2, 31.1, 14, 900 }, + [297] = { 38.7, 31.1, 14, 900 }, + [298] = { 40.9, 30.9, 14, 900 }, + [299] = { 40.5, 30.5, 14, 900 }, + [300] = { 51.5, 30, 14, 900 }, + [301] = { 38.5, 29.6, 14, 900 }, + [302] = { 36.1, 28.9, 14, 900 }, + [303] = { 39.2, 28.9, 14, 900 }, + [304] = { 53.1, 28.8, 14, 900 }, + [305] = { 39.4, 28.7, 14, 900 }, + [306] = { 54.3, 28.6, 14, 900 }, + [307] = { 51.8, 27.8, 14, 900 }, + [308] = { 40.3, 27.7, 14, 900 }, + [309] = { 42.5, 27.6, 14, 900 }, + [310] = { 39.6, 27.6, 14, 900 }, + [311] = { 41.7, 27.3, 14, 900 }, + [312] = { 42.9, 26.6, 14, 900 }, + [313] = { 49.9, 26.4, 14, 900 }, + [314] = { 36, 26.3, 14, 900 }, + [315] = { 50, 25.8, 14, 900 }, + [316] = { 39.1, 25.2, 14, 900 }, + [317] = { 43.8, 25.1, 14, 900 }, + [318] = { 38.1, 25.1, 14, 900 }, + [319] = { 52.7, 24.8, 14, 900 }, + [320] = { 40.9, 24.5, 14, 900 }, + [321] = { 42.8, 24.3, 14, 900 }, + [322] = { 44.2, 24.1, 14, 900 }, + [323] = { 52.1, 23.8, 14, 900 }, + [324] = { 40.1, 23.5, 14, 900 }, + [325] = { 43.8, 23.3, 14, 900 }, + [326] = { 51.4, 22.9, 14, 900 }, + [327] = { 53.8, 21.3, 14, 900 }, + [328] = { 55.4, 21.3, 14, 900 }, + [329] = { 49.7, 21, 14, 900 }, + [330] = { 54.6, 19.6, 14, 900 }, + [331] = { 47.9, 19.5, 14, 900 }, + [332] = { 51.6, 19.3, 14, 900 }, + [333] = { 49.6, 19.1, 14, 900 }, + [334] = { 51.5, 18.9, 14, 900 }, + [335] = { 53, 18.2, 14, 900 }, + [336] = { 41.4, 17.9, 14, 900 }, + [337] = { 53.1, 17.9, 14, 900 }, + [338] = { 54.8, 17.9, 14, 900 }, + [339] = { 59.5, 17.8, 14, 900 }, + [340] = { 50.7, 17.3, 14, 900 }, + [341] = { 56.3, 16.1, 14, 900 }, + [342] = { 38.4, 15.4, 14, 900 }, + [343] = { 39.6, 14.4, 14, 900 }, + [344] = { 54.2, 13.9, 14, 900 }, + [345] = { 52, 11.1, 14, 900 }, + [346] = { 51.1, 10.6, 14, 900 }, + [347] = { 53.8, 9.9, 14, 900 }, + [348] = { 54.9, 9.7, 14, 900 }, + [349] = { 53.2, 9.7, 14, 900 }, + [350] = { 54.8, 8.5, 14, 900 }, + [351] = { 52, 8.4, 14, 900 }, + [352] = { 45.6, 96.6, 17, 900 }, + [353] = { 42.6, 95.6, 17, 900 }, + [354] = { 43, 94.7, 17, 900 }, + [355] = { 43.3, 94.3, 17, 900 }, + [356] = { 39.5, 92.9, 17, 900 }, + [357] = { 38.7, 92.7, 17, 900 }, + [358] = { 42.7, 92.4, 17, 900 }, + [359] = { 42.9, 92.3, 17, 900 }, + [360] = { 37.7, 91.2, 17, 900 }, + [361] = { 37.3, 90.4, 17, 900 }, + [362] = { 46.8, 84.5, 17, 900 }, + [363] = { 45.7, 82.2, 17, 900 }, + [364] = { 49.6, 80.3, 17, 900 }, + [365] = { 41.1, 79.2, 17, 900 }, + [366] = { 41.3, 78.8, 17, 900 }, + [367] = { 48.6, 74.4, 17, 900 }, + [368] = { 43.5, 72.8, 17, 900 }, + [369] = { 48.2, 72.8, 17, 900 }, + [370] = { 42.1, 71.1, 17, 900 }, + [371] = { 44.1, 70.8, 17, 900 }, + [372] = { 41.7, 68.8, 17, 900 }, + [373] = { 44.3, 64.6, 17, 900 }, + [374] = { 45.9, 64.2, 17, 900 }, + [375] = { 40.4, 63.2, 17, 900 }, + [376] = { 43.3, 62.9, 17, 900 }, + [377] = { 48, 62.3, 17, 900 }, + [378] = { 40.4, 62.2, 17, 900 }, + [379] = { 49.4, 62, 17, 900 }, + [380] = { 40.5, 61, 17, 900 }, + [381] = { 40.6, 59.9, 17, 900 }, + [382] = { 42, 56.7, 17, 900 }, + [383] = { 37.5, 56, 17, 900 }, + [384] = { 36.9, 54.8, 17, 900 }, + [385] = { 47.2, 54.4, 17, 900 }, + [386] = { 53.8, 54.3, 17, 900 }, + [387] = { 60.1, 54.1, 17, 900 }, + [388] = { 36.9, 53.5, 17, 900 }, + [389] = { 58.4, 53.2, 17, 900 }, + [390] = { 52.4, 52.9, 17, 900 }, + [391] = { 43.1, 52, 17, 900 }, + [392] = { 35.8, 51.2, 17, 900 }, + [393] = { 59, 51.2, 17, 900 }, + [394] = { 44.4, 50.8, 17, 900 }, + [395] = { 37.9, 50.7, 17, 900 }, + [396] = { 44.9, 50.4, 17, 900 }, + [397] = { 58.1, 49.4, 17, 900 }, + [398] = { 38.2, 49.3, 17, 900 }, + [399] = { 60.1, 49.2, 17, 900 }, + [400] = { 36.6, 48.3, 17, 900 }, + [401] = { 37.5, 47.5, 17, 900 }, + [402] = { 60.5, 47.5, 17, 900 }, + [403] = { 38.8, 46.9, 17, 900 }, + [404] = { 46.4, 46.9, 17, 900 }, + [405] = { 36.6, 46.9, 17, 900 }, + [406] = { 40.7, 46.9, 17, 900 }, + [407] = { 35.7, 46.7, 17, 900 }, + [408] = { 64.7, 46.5, 17, 900 }, + [409] = { 37.7, 45.9, 17, 900 }, + [410] = { 36, 44.8, 17, 900 }, + [411] = { 64.7, 44.5, 17, 900 }, + [412] = { 49.5, 44.4, 17, 900 }, + [413] = { 41.9, 44.4, 17, 900 }, + [414] = { 36.6, 44.4, 17, 900 }, + [415] = { 37.4, 44.3, 17, 900 }, + [416] = { 61.1, 44.2, 17, 900 }, + [417] = { 63, 43.9, 17, 900 }, + [418] = { 55.1, 43.8, 17, 900 }, + [419] = { 35.2, 43.8, 17, 900 }, + [420] = { 47.9, 43.8, 17, 900 }, + [421] = { 57.1, 43.6, 17, 900 }, + [422] = { 36.1, 43.1, 17, 900 }, + [423] = { 58.1, 43.1, 17, 900 }, + [424] = { 55.8, 43.1, 17, 900 }, + [425] = { 63.4, 42.7, 17, 900 }, + [426] = { 36.5, 42.7, 17, 900 }, + [427] = { 44.9, 42.6, 17, 900 }, + [428] = { 51.5, 42.5, 17, 900 }, + [429] = { 58.9, 41.5, 17, 900 }, + [430] = { 55.7, 40.7, 17, 900 }, + [431] = { 61.3, 40.3, 17, 900 }, + [432] = { 47, 40.3, 17, 900 }, + [433] = { 47.8, 40, 17, 900 }, + [434] = { 46.7, 39.7, 17, 900 }, + [435] = { 46.5, 39.6, 17, 900 }, + [436] = { 51.9, 39.6, 17, 900 }, + [437] = { 46.2, 38.9, 17, 900 }, + [438] = { 42.7, 38.9, 17, 900 }, + [439] = { 56.5, 38.2, 17, 900 }, + [440] = { 41.5, 38, 17, 900 }, + [441] = { 59.9, 36.6, 17, 900 }, + [442] = { 34.5, 35.9, 17, 900 }, + [443] = { 41.1, 35.3, 17, 900 }, + [444] = { 37.1, 35, 17, 900 }, + [445] = { 61.7, 34.8, 17, 900 }, + [446] = { 46.4, 34.6, 17, 900 }, + [447] = { 36.7, 34.4, 17, 900 }, + [448] = { 33.4, 34.4, 17, 900 }, + [449] = { 46.8, 34.3, 17, 900 }, + [450] = { 49.4, 33.2, 17, 900 }, + [451] = { 47.8, 33.1, 17, 900 }, + [452] = { 33.5, 33, 17, 900 }, + [453] = { 45.9, 32.8, 17, 900 }, + [454] = { 46.8, 32.6, 17, 900 }, + [455] = { 58.1, 32.6, 17, 900 }, + [456] = { 49.5, 32.4, 17, 900 }, + [457] = { 55.6, 31.5, 17, 900 }, + [458] = { 31.1, 31.3, 17, 900 }, + [459] = { 49, 31.2, 17, 900 }, + [460] = { 56.2, 31, 17, 900 }, + [461] = { 32.1, 30.4, 17, 900 }, + [462] = { 57.9, 30.2, 17, 900 }, + [463] = { 61.4, 30.1, 17, 900 }, + [464] = { 47.5, 30.1, 17, 900 }, + [465] = { 58.8, 29.3, 17, 900 }, + [466] = { 57.7, 28.9, 17, 900 }, + [467] = { 55.4, 28.9, 17, 900 }, + [468] = { 58.1, 28.2, 17, 900 }, + [469] = { 40.4, 27.9, 17, 900 }, + [470] = { 31.3, 27.2, 17, 900 }, + [471] = { 57.2, 26.9, 17, 900 }, + [472] = { 61.2, 26.5, 17, 900 }, + [473] = { 57.8, 25.7, 17, 900 }, + [474] = { 55.7, 25.4, 17, 900 }, + [475] = { 54.4, 25.4, 17, 900 }, + [476] = { 39.9, 25.2, 17, 900 }, + [477] = { 59.6, 25, 17, 900 }, + [478] = { 50.7, 24, 17, 900 }, + [479] = { 59.2, 23.6, 17, 900 }, + [480] = { 42.9, 23.2, 17, 900 }, + [481] = { 43.4, 23.1, 17, 900 }, + [482] = { 47.4, 22.7, 17, 900 }, + [483] = { 43.8, 22.7, 17, 900 }, + [484] = { 48.7, 22.7, 17, 900 }, + [485] = { 48.3, 22.6, 17, 900 }, + [486] = { 45.1, 22.5, 17, 900 }, + [487] = { 44, 22.3, 17, 900 }, + [488] = { 51, 21.6, 17, 900 }, + [489] = { 44.7, 21.4, 17, 900 }, + [490] = { 34.7, 20.9, 17, 900 }, + [491] = { 64, 20.8, 17, 900 }, + [492] = { 46.2, 20.7, 17, 900 }, + [493] = { 64.1, 20.2, 17, 900 }, + [494] = { 50.5, 19.6, 17, 900 }, + [495] = { 35.6, 19.5, 17, 900 }, + [496] = { 43.3, 19.1, 17, 900 }, + [497] = { 46.8, 18.2, 17, 900 }, + [498] = { 45.4, 17.9, 17, 900 }, + [499] = { 50.3, 17.9, 17, 900 }, + [500] = { 50.6, 17.6, 17, 900 }, + [501] = { 58.3, 17.2, 17, 900 }, + [502] = { 31.4, 17, 17, 900 }, + [503] = { 63.8, 15.6, 17, 900 }, + [504] = { 58.3, 15.1, 17, 900 }, + [505] = { 64.3, 14.7, 17, 900 }, + [506] = { 57.1, 14.1, 17, 900 }, + [507] = { 56.1, 13.1, 17, 900 }, + [508] = { 53.5, 13, 17, 900 }, + [509] = { 65.4, 12.5, 17, 900 }, + [510] = { 58.5, 12.2, 17, 900 }, + [511] = { 64.1, 12.2, 17, 900 }, + [512] = { 39.6, 11.9, 17, 900 }, + [513] = { 55.9, 11.8, 17, 900 }, + [514] = { 62.1, 11.4, 17, 900 }, + [515] = { 64.1, 10.8, 17, 900 }, + [516] = { 56.9, 10.7, 17, 900 }, + [517] = { 65.2, 10.2, 17, 900 }, + [518] = { 62.3, 9.7, 17, 900 }, + [519] = { 58.6, 5.6, 17, 900 }, + [520] = { 65.3, 5.1, 17, 900 }, + [521] = { 60.3, 3.4, 17, 900 }, + [522] = { 25.7, 62.6, 28, 900 }, + [523] = { 22.7, 60.9, 28, 900 }, + [524] = { 24.3, 47, 28, 900 }, + [525] = { 29.4, 23.2, 28, 900 }, + [526] = { 31.3, 22.5, 28, 900 }, + [527] = { 29, 20.4, 28, 900 }, + [528] = { 58.1, 97.3, 36, 900 }, + [529] = { 19.8, 95.3, 36, 900 }, + [530] = { 35.5, 89.9, 38, 900 }, + [531] = { 37.3, 88.8, 38, 900 }, + [532] = { 35.2, 88.7, 38, 900 }, + [533] = { 35.9, 87.7, 38, 900 }, + [534] = { 35, 85.2, 38, 900 }, + [535] = { 31.4, 82.3, 38, 900 }, + [536] = { 28.6, 80.1, 38, 900 }, + [537] = { 67.3, 77.1, 38, 900 }, + [538] = { 35.5, 76.8, 38, 900 }, + [539] = { 31.2, 76.7, 38, 900 }, + [540] = { 75.3, 75.1, 38, 900 }, + [541] = { 63.8, 74.6, 38, 900 }, + [542] = { 58.2, 74, 38, 900 }, + [543] = { 37.9, 73.8, 38, 900 }, + [544] = { 41.2, 71.3, 38, 900 }, + [545] = { 57.7, 70.9, 38, 900 }, + [546] = { 34.6, 70.9, 38, 900 }, + [547] = { 44.2, 70.5, 38, 900 }, + [548] = { 33.5, 69.9, 38, 900 }, + [549] = { 70.4, 68.6, 38, 900 }, + [550] = { 55.8, 68.3, 38, 900 }, + [551] = { 62.4, 67.1, 38, 900 }, + [552] = { 59.2, 66.9, 38, 900 }, + [553] = { 42.9, 66.5, 38, 900 }, + [554] = { 41, 65.5, 38, 900 }, + [555] = { 45.8, 62.8, 38, 900 }, + [556] = { 42, 61.9, 38, 900 }, + [557] = { 33.8, 61.8, 38, 900 }, + [558] = { 76.5, 60.8, 38, 900 }, + [559] = { 45.8, 60.1, 38, 900 }, + [560] = { 34.1, 57.6, 38, 900 }, + [561] = { 73.3, 57.2, 38, 900 }, + [562] = { 40.7, 57.1, 38, 900 }, + [563] = { 26, 56.9, 38, 900 }, + [564] = { 36.1, 56.6, 38, 900 }, + [565] = { 78.6, 56.3, 38, 900 }, + [566] = { 26.7, 56, 38, 900 }, + [567] = { 48, 55, 38, 900 }, + [568] = { 77.9, 53.8, 38, 900 }, + [569] = { 43.4, 53.1, 38, 900 }, + [570] = { 51.8, 50, 38, 900 }, + [571] = { 73.7, 48.3, 38, 900 }, + [572] = { 41.5, 47.8, 38, 900 }, + [573] = { 56.5, 47.6, 38, 900 }, + [574] = { 45, 47.5, 38, 900 }, + [575] = { 68.9, 47.4, 38, 900 }, + [576] = { 26.3, 47.3, 38, 900 }, + [577] = { 56.9, 44.5, 38, 900 }, + [578] = { 25.6, 44.5, 38, 900 }, + [579] = { 47.6, 43.3, 38, 900 }, + [580] = { 77.7, 38.1, 38, 900 }, + [581] = { 47, 37.6, 38, 900 }, + [582] = { 49.5, 35.6, 38, 900 }, + [583] = { 40.9, 33.8, 38, 900 }, + [584] = { 48.2, 32.9, 38, 900 }, + [585] = { 78, 32.8, 38, 900 }, + [586] = { 26.5, 31.7, 38, 900 }, + [587] = { 35.1, 27.1, 38, 900 }, + [588] = { 68.1, 27, 38, 900 }, + [589] = { 41.8, 26.3, 38, 900 }, + [590] = { 33.3, 26.1, 38, 900 }, + [591] = { 36.3, 26, 38, 900 }, + [592] = { 32.3, 25.7, 38, 900 }, + [593] = { 35.5, 24.8, 38, 900 }, + [594] = { 23.1, 24.5, 38, 900 }, + [595] = { 64.2, 23.9, 38, 900 }, + [596] = { 35.4, 23.7, 38, 900 }, + [597] = { 50.3, 23.2, 38, 900 }, + [598] = { 37.9, 22.3, 38, 900 }, + [599] = { 74.1, 22.2, 38, 900 }, + [600] = { 35.5, 20.7, 38, 900 }, + [601] = { 41.6, 19.1, 38, 900 }, + [602] = { 36, 18.9, 38, 900 }, + [603] = { 71.2, 18.4, 38, 900 }, + [604] = { 57.8, 14.2, 38, 900 }, + [605] = { 41.6, 13.1, 38, 900 }, + [606] = { 36.5, 10.1, 38, 900 }, + [607] = { 40.9, 8.9, 38, 900 }, + [608] = { 37, 87.9, 40, 900 }, + [609] = { 39.2, 85.1, 40, 900 }, + [610] = { 40.6, 82.7, 40, 900 }, + [611] = { 41.2, 82.6, 40, 900 }, + [612] = { 41.6, 82.3, 40, 900 }, + [613] = { 33.2, 81.8, 40, 900 }, + [614] = { 41.4, 81.7, 40, 900 }, + [615] = { 41.5, 80.9, 40, 900 }, + [616] = { 53.7, 80.5, 40, 900 }, + [617] = { 39.2, 79.9, 40, 900 }, + [618] = { 43.3, 79.6, 40, 900 }, + [619] = { 62.4, 78.8, 40, 900 }, + [620] = { 39.8, 78.5, 40, 900 }, + [621] = { 66.7, 76.9, 40, 900 }, + [622] = { 37.8, 76.9, 40, 900 }, + [623] = { 45, 76.9, 40, 900 }, + [624] = { 41.9, 76.6, 40, 900 }, + [625] = { 39.9, 76.1, 40, 900 }, + [626] = { 77.9, 75.4, 40, 900 }, + [627] = { 42, 75, 40, 900 }, + [628] = { 45, 74.3, 40, 900 }, + [629] = { 42.9, 73.7, 40, 900 }, + [630] = { 26.8, 72.3, 40, 900 }, + [631] = { 42.8, 72.1, 40, 900 }, + [632] = { 47.7, 70.8, 40, 900 }, + [633] = { 58.8, 69.4, 40, 900 }, + [634] = { 62.3, 69, 40, 900 }, + [635] = { 26.2, 64.5, 40, 900 }, + [636] = { 50, 59.8, 40, 900 }, + [637] = { 46.2, 59.2, 40, 900 }, + [638] = { 23.7, 57.4, 40, 900 }, + [639] = { 28.9, 54.8, 40, 900 }, + [640] = { 61.5, 54.8, 40, 900 }, + [641] = { 66.4, 54.6, 40, 900 }, + [642] = { 29.3, 51.2, 40, 900 }, + [643] = { 30.5, 49.6, 40, 900 }, + [644] = { 30.8, 48.4, 40, 900 }, + [645] = { 66.8, 48, 40, 900 }, + [646] = { 30.4, 47.9, 40, 900 }, + [647] = { 29.7, 47.4, 40, 900 }, + [648] = { 29.4, 47.1, 40, 900 }, + [649] = { 29.2, 46.2, 40, 900 }, + [650] = { 30.4, 46.1, 40, 900 }, + [651] = { 30, 46.1, 40, 900 }, + [652] = { 47.9, 45.8, 40, 900 }, + [653] = { 57.6, 45.7, 40, 900 }, + [654] = { 30.4, 45.5, 40, 900 }, + [655] = { 30.5, 43.3, 40, 900 }, + [656] = { 64.1, 40.4, 40, 900 }, + [657] = { 45.1, 39.7, 40, 900 }, + [658] = { 32.4, 39.4, 40, 900 }, + [659] = { 49.7, 39.2, 40, 900 }, + [660] = { 30.7, 38.2, 40, 900 }, + [661] = { 34.6, 34.6, 40, 900 }, + [662] = { 30.4, 34.5, 40, 900 }, + [663] = { 63.5, 31.4, 40, 900 }, + [664] = { 36.8, 29.6, 40, 900 }, + [665] = { 28.5, 27, 40, 900 }, + [666] = { 61.1, 26.1, 40, 900 }, + [667] = { 32.9, 26.1, 40, 900 }, + [668] = { 35, 24.3, 40, 900 }, + [669] = { 44.1, 23.1, 40, 900 }, + [670] = { 45.1, 23.1, 40, 900 }, + [671] = { 60.9, 22.2, 40, 900 }, + [672] = { 40.8, 22.2, 40, 900 }, + [673] = { 54.3, 21.9, 40, 900 }, + [674] = { 45.2, 21.7, 40, 900 }, + [675] = { 44.9, 21.1, 40, 900 }, + [676] = { 66.3, 21.1, 40, 900 }, + [677] = { 36.3, 20.9, 40, 900 }, + [678] = { 45.6, 20.2, 40, 900 }, + [679] = { 45, 19.2, 40, 900 }, + [680] = { 46.1, 18.4, 40, 900 }, + [681] = { 57.4, 15.3, 40, 900 }, + [682] = { 49.5, 14.6, 40, 900 }, + [683] = { 55.4, 14.4, 40, 900 }, + [684] = { 60, 12.3, 40, 900 }, + [685] = { 58.5, 8.7, 40, 900 }, + [686] = { 31.2, 84.9, 44, 900 }, + [687] = { 34.3, 82.3, 44, 900 }, + [688] = { 24.5, 80.5, 44, 900 }, + [689] = { 62.4, 80.3, 44, 900 }, + [690] = { 40.1, 80.2, 44, 900 }, + [691] = { 8.5, 77.5, 44, 900 }, + [692] = { 74.5, 76, 44, 900 }, + [693] = { 20.8, 74.6, 44, 900 }, + [694] = { 57.2, 73.4, 44, 900 }, + [695] = { 27.1, 72.4, 44, 900 }, + [696] = { 38.4, 70.2, 44, 900 }, + [697] = { 76.9, 68.4, 44, 900 }, + [698] = { 12.2, 68.2, 44, 900 }, + [699] = { 18.7, 62.8, 44, 900 }, + [700] = { 60.3, 59.8, 44, 900 }, + [701] = { 84.1, 59.8, 44, 900 }, + [702] = { 18.5, 59.1, 44, 900 }, + [703] = { 15.9, 58, 44, 900 }, + [704] = { 14.8, 57.5, 44, 300 }, + [705] = { 53.4, 55.2, 44, 900 }, + [706] = { 15.9, 55.1, 44, 900 }, + [707] = { 62.4, 53, 44, 900 }, + [708] = { 85.2, 49.1, 44, 900 }, + [709] = { 70.3, 47, 44, 900 }, + [710] = { 78.9, 45.4, 44, 900 }, + [711] = { 40.1, 43.2, 44, 900 }, + [712] = { 61.8, 42.2, 44, 900 }, + [713] = { 24.8, 40.4, 44, 900 }, + [714] = { 69.5, 39.1, 44, 900 }, + [715] = { 74.4, 38.9, 44, 900 }, + [716] = { 27.4, 37.6, 44, 900 }, + [717] = { 56, 37.4, 44, 900 }, + [718] = { 79.5, 35.3, 44, 900 }, + [719] = { 51.1, 33, 44, 900 }, + [720] = { 37.3, 32.5, 44, 900 }, + [721] = { 75.6, 29.8, 44, 900 }, + [722] = { 41.7, 29.6, 44, 900 }, + [723] = { 33.4, 28.1, 44, 900 }, + [724] = { 50.4, 26.7, 44, 900 }, + [725] = { 19.3, 26.5, 44, 900 }, + [726] = { 23, 18.3, 44, 900 }, + [727] = { 44.1, 18.3, 44, 900 }, + [728] = { 16.4, 18, 44, 900 }, + [729] = { 26.1, 16.3, 44, 900 }, + [730] = { 16.5, 15.8, 44, 900 }, + [731] = { 21.9, 14.8, 44, 900 }, + [732] = { 31.7, 12.1, 44, 900 }, + [733] = { 47.3, 9, 44, 900 }, + [734] = { 27.6, 7.8, 44, 900 }, + [735] = { 6.1, 55.2, 45, 900 }, + [736] = { 31.3, 17.9, 45, 900 }, + [737] = { 56.8, 90.8, 46, 900 }, + [738] = { 60.7, 90, 46, 900 }, + [739] = { 65, 84.9, 46, 900 }, + [740] = { 24.2, 80.4, 85, 900 }, + [741] = { 23.3, 79.6, 85, 900 }, + [742] = { 82.3, 75.2, 85, 900 }, + [743] = { 17.2, 74.9, 85, 900 }, + [744] = { 79.5, 73.6, 85, 900 }, + [745] = { 12.5, 72.2, 85, 900 }, + [746] = { 50.1, 70.9, 85, 900 }, + [747] = { 45.1, 69.9, 85, 900 }, + [748] = { 47.3, 69.9, 85, 900 }, + [749] = { 47.6, 67.9, 85, 900 }, + [750] = { 42, 66.3, 85, 900 }, + [751] = { 13.4, 63.1, 85, 900 }, + [752] = { 81, 60.4, 85, 900 }, + [753] = { 12.3, 60.1, 85, 900 }, + [754] = { 40.3, 57.2, 85, 900 }, + [755] = { 81.8, 57.1, 85, 900 }, + [756] = { 74.1, 56.6, 85, 900 }, + [757] = { 77.2, 56.5, 85, 900 }, + [758] = { 54.9, 54.1, 85, 900 }, + [759] = { 53.7, 53.7, 85, 900 }, + [760] = { 74.5, 53.5, 85, 900 }, + [761] = { 38.6, 53.4, 85, 900 }, + [762] = { 33.5, 52.8, 85, 900 }, + [763] = { 37.7, 52.8, 85, 900 }, + [764] = { 81.2, 52.6, 85, 900 }, + [765] = { 15.4, 52, 85, 900 }, + [766] = { 91.2, 51.6, 85, 900 }, + [767] = { 49.3, 48.6, 85, 900 }, + [768] = { 54.5, 47.7, 85, 900 }, + [769] = { 48.6, 45.9, 85, 900 }, + [770] = { 65.9, 45.1, 85, 900 }, + [771] = { 23.6, 45, 85, 900 }, + [772] = { 54.3, 44.8, 85, 900 }, + [773] = { 80.1, 43.6, 85, 900 }, + [774] = { 69.8, 42.7, 85, 900 }, + [775] = { 29.7, 42.5, 85, 900 }, + [776] = { 52.9, 41.9, 85, 900 }, + [777] = { 82, 41.4, 85, 900 }, + [778] = { 78.3, 40.6, 85, 900 }, + [779] = { 54.6, 40.5, 85, 900 }, + [780] = { 40.7, 39.2, 85, 900 }, + [781] = { 49.4, 39.1, 85, 900 }, + [782] = { 83, 38.2, 85, 900 }, + [783] = { 85.9, 37.8, 85, 900 }, + [784] = { 37.5, 37.4, 85, 900 }, + [785] = { 79.1, 37.2, 85, 900 }, + [786] = { 39.3, 37.1, 85, 900 }, + [787] = { 87.7, 37, 85, 900 }, + [788] = { 35.9, 36.5, 85, 900 }, + [789] = { 75.6, 36.2, 85, 900 }, + [790] = { 85.5, 35, 85, 900 }, + [791] = { 50.7, 34.3, 85, 900 }, + [792] = { 77.4, 32.8, 85, 900 }, + [793] = { 78.2, 32.4, 85, 900 }, + [794] = { 57.2, 30.2, 85, 900 }, + [795] = { 58, 29.2, 85, 900 }, + [796] = { 74.9, 28.9, 85, 900 }, + [797] = { 83.1, 28.3, 85, 900 }, + [798] = { 63.5, 27.1, 85, 900 }, + [799] = { 49.6, 27, 85, 900 }, + [800] = { 53.4, 26.5, 85, 900 }, + [801] = { 80.2, 24.5, 85, 900 }, + [802] = { 50.5, 86.9, 130, 900 }, + [803] = { 53.5, 84.9, 130, 900 }, + [804] = { 63.3, 82.5, 130, 900 }, + [805] = { 44, 82.2, 130, 900 }, + [806] = { 56, 80.3, 130, 900 }, + [807] = { 41.4, 80.2, 130, 900 }, + [808] = { 47.3, 76.4, 130, 900 }, + [809] = { 42.9, 75.5, 130, 900 }, + [810] = { 58.5, 72, 130, 900 }, + [811] = { 42.3, 71.8, 130, 900 }, + [812] = { 58.6, 70.9, 130, 900 }, + [813] = { 59.8, 70.7, 130, 900 }, + [814] = { 46.5, 68.9, 130, 900 }, + [815] = { 48.1, 68.4, 130, 900 }, + [816] = { 51.3, 67.9, 130, 900 }, + [817] = { 51.7, 64.6, 130, 900 }, + [818] = { 49.9, 63.9, 130, 900 }, + [819] = { 57.6, 56.1, 130, 900 }, + [820] = { 56, 54.9, 130, 900 }, + [821] = { 56.8, 53.1, 130, 900 }, + [822] = { 46.8, 51.4, 130, 900 }, + [823] = { 46.1, 51.3, 130, 900 }, + [824] = { 56.5, 50, 130, 900 }, + [825] = { 44.9, 49.8, 130, 900 }, + [826] = { 54, 48.9, 130, 900 }, + [827] = { 45, 48.6, 130, 900 }, + [828] = { 48.6, 48.3, 130, 900 }, + [829] = { 50.2, 46, 130, 900 }, + [830] = { 57, 45.8, 130, 900 }, + [831] = { 57.4, 45.6, 130, 900 }, + [832] = { 48.5, 42.5, 130, 900 }, + [833] = { 49.9, 41.2, 130, 900 }, + [834] = { 57.1, 41.2, 130, 900 }, + [835] = { 48.1, 37.6, 130, 900 }, + [836] = { 53.3, 37.3, 130, 900 }, + [837] = { 53, 36.7, 130, 900 }, + [838] = { 48.4, 36.4, 130, 900 }, + [839] = { 45.5, 34.1, 130, 900 }, + [840] = { 55.3, 33.7, 130, 900 }, + [841] = { 57.6, 33, 130, 900 }, + [842] = { 51.9, 32.3, 130, 900 }, + [843] = { 41.9, 31.5, 130, 900 }, + [844] = { 54.4, 30.8, 130, 900 }, + [845] = { 54.6, 30, 130, 900 }, + [846] = { 67.7, 29.8, 130, 900 }, + [847] = { 73.4, 29.3, 130, 900 }, + [848] = { 43, 27.8, 130, 900 }, + [849] = { 43.9, 27.5, 130, 900 }, + [850] = { 41.6, 27.4, 130, 900 }, + [851] = { 56.7, 27.1, 130, 900 }, + [852] = { 51, 27.1, 130, 900 }, + [853] = { 67.3, 26.9, 130, 900 }, + [854] = { 64.1, 26.9, 130, 900 }, + [855] = { 44.3, 26.5, 130, 900 }, + [856] = { 43.2, 24.8, 130, 900 }, + [857] = { 49.5, 24.6, 130, 900 }, + [858] = { 53.9, 23.4, 130, 900 }, + [859] = { 39.6, 23, 130, 900 }, + [860] = { 48, 22.2, 130, 900 }, + [861] = { 33.1, 20.5, 130, 900 }, + [862] = { 76.7, 20.3, 130, 900 }, + [863] = { 40.5, 19.5, 130, 900 }, + [864] = { 36.8, 19.1, 130, 900 }, + [865] = { 37.9, 18.6, 130, 900 }, + [866] = { 34.9, 18.5, 130, 900 }, + [867] = { 53.9, 16.8, 130, 900 }, + [868] = { 44.6, 15.9, 130, 900 }, + [869] = { 33.3, 15.4, 130, 900 }, + [870] = { 45.5, 15.4, 130, 900 }, + [871] = { 35.4, 13.9, 130, 900 }, + [872] = { 48.9, 13.1, 130, 900 }, + [873] = { 34.9, 12.5, 130, 900 }, + [874] = { 35.5, 11.7, 130, 900 }, + [875] = { 52.5, 11.2, 130, 900 }, + [876] = { 55, 10.8, 130, 900 }, + [877] = { 35.1, 10.1, 130, 900 }, + [878] = { 35.9, 9, 130, 900 }, + [879] = { 35, 8.2, 130, 900 }, + [880] = { 13.1, 17.3, 139, 900 }, + [881] = { 17.3, 14, 139, 900 }, + [882] = { 41.7, 99.6, 148, 900 }, + [883] = { 43.1, 98.5, 148, 900 }, + [884] = { 30.6, 92.4, 148, 900 }, + [885] = { 30.2, 91.3, 148, 900 }, + [886] = { 36.2, 90.7, 148, 900 }, + [887] = { 32.3, 89.6, 148, 900 }, + [888] = { 33.1, 89.6, 148, 900 }, + [889] = { 38.6, 88.9, 148, 900 }, + [890] = { 33.6, 88.5, 148, 900 }, + [891] = { 31.1, 87, 148, 900 }, + [892] = { 42.9, 86.6, 148, 900 }, + [893] = { 35.9, 86.4, 148, 900 }, + [894] = { 35.3, 86.4, 148, 900 }, + [895] = { 32.4, 86.4, 148, 900 }, + [896] = { 36.4, 86.1, 148, 900 }, + [897] = { 34.1, 85.9, 148, 900 }, + [898] = { 36.1, 85.6, 148, 900 }, + [899] = { 35.8, 85.4, 148, 900 }, + [900] = { 45.2, 85.4, 148, 900 }, + [901] = { 43.6, 85.3, 148, 900 }, + [902] = { 39.1, 81.4, 148, 900 }, + [903] = { 33.2, 81.2, 148, 900 }, + [904] = { 44.4, 81.1, 148, 900 }, + [905] = { 36.7, 79.7, 148, 900 }, + [906] = { 33.9, 79.6, 148, 900 }, + [907] = { 44.2, 78.7, 148, 900 }, + [908] = { 39.5, 73.5, 148, 900 }, + [909] = { 42.7, 73.4, 148, 900 }, + [910] = { 44.4, 72.6, 148, 900 }, + [911] = { 40.1, 71.4, 148, 900 }, + [912] = { 44.3, 70.8, 148, 900 }, + [913] = { 39.5, 61.1, 148, 900 }, + [914] = { 42.2, 58.3, 148, 900 }, + [915] = { 46.7, 53.5, 148, 900 }, + [916] = { 45.6, 53.3, 148, 900 }, + [917] = { 43.5, 52, 148, 900 }, + [918] = { 44.6, 50.3, 148, 900 }, + [919] = { 46.8, 50.2, 148, 900 }, + [920] = { 46.1, 50.2, 148, 900 }, + [921] = { 37.8, 49.4, 148, 900 }, + [922] = { 43.6, 46.2, 148, 900 }, + [923] = { 43.1, 45.3, 148, 900 }, + [924] = { 46.4, 45.3, 148, 900 }, + [925] = { 48.3, 40.3, 148, 900 }, + [926] = { 41.3, 39.5, 148, 900 }, + [927] = { 46.2, 38.9, 148, 900 }, + [928] = { 43.5, 38.4, 148, 900 }, + [929] = { 50.4, 37.1, 148, 900 }, + [930] = { 43.5, 36.8, 148, 900 }, + [931] = { 44.9, 35.8, 148, 900 }, + [932] = { 55.6, 35.6, 148, 900 }, + [933] = { 41.4, 35.1, 148, 900 }, + [934] = { 55, 34.5, 148, 900 }, + [935] = { 56, 34.5, 148, 900 }, + [936] = { 54.2, 34.4, 148, 900 }, + [937] = { 49.4, 34.3, 148, 900 }, + [938] = { 54.2, 33.6, 148, 900 }, + [939] = { 53.8, 33.4, 148, 900 }, + [940] = { 38.9, 33.1, 148, 900 }, + [941] = { 54.5, 32.9, 148, 900 }, + [942] = { 53.9, 32.9, 148, 900 }, + [943] = { 54, 32.4, 148, 900 }, + [944] = { 40.4, 29.3, 148, 900 }, + [945] = { 55.4, 28.5, 148, 900 }, + [946] = { 50, 27.9, 148, 900 }, + [947] = { 56.9, 27.7, 148, 900 }, + [948] = { 59.2, 27.1, 148, 900 }, + [949] = { 44.2, 27.1, 148, 900 }, + [950] = { 49.3, 27.1, 148, 900 }, + [951] = { 40.3, 26.6, 148, 900 }, + [952] = { 60.6, 25.4, 148, 900 }, + [953] = { 57.8, 24.2, 148, 900 }, + [954] = { 52.9, 23.1, 148, 900 }, + [955] = { 43.1, 22.3, 148, 900 }, + [956] = { 48.8, 20.7, 148, 900 }, + [957] = { 60.7, 19.8, 148, 900 }, + [958] = { 55.4, 19.6, 148, 900 }, + [959] = { 52.5, 18.7, 148, 900 }, + [960] = { 60.6, 16.7, 148, 900 }, + [961] = { 62.2, 15.9, 148, 900 }, + [962] = { 57.3, 14.8, 148, 900 }, + [963] = { 59.5, 13.4, 148, 900 }, + [964] = { 61.1, 9.8, 148, 900 }, + [965] = { 62.9, 9.3, 148, 900 }, + [966] = { 60.3, 8.6, 148, 900 }, + [967] = { 71, 80.6, 215, 900 }, + [968] = { 34.5, 79.8, 215, 900 }, + [969] = { 34.6, 79.7, 215, 900 }, + [970] = { 32.9, 76.2, 215, 900 }, + [971] = { 56, 74.8, 215, 900 }, + [972] = { 48.4, 74.4, 215, 900 }, + [973] = { 55.3, 74, 215, 900 }, + [974] = { 42.7, 74, 215, 900 }, + [975] = { 43.9, 72.8, 215, 900 }, + [976] = { 52.2, 72.7, 215, 900 }, + [977] = { 66.2, 71.3, 215, 900 }, + [978] = { 33.2, 70.1, 215, 900 }, + [979] = { 34.8, 69.7, 215, 900 }, + [980] = { 68.5, 69.6, 215, 900 }, + [981] = { 68.4, 67.6, 215, 900 }, + [982] = { 68.8, 65.3, 215, 900 }, + [983] = { 68.8, 63.2, 215, 900 }, + [984] = { 33, 62.6, 215, 900 }, + [985] = { 31, 62, 215, 900 }, + [986] = { 32.2, 61.5, 215, 900 }, + [987] = { 32.4, 59.2, 215, 900 }, + [988] = { 34.8, 58.9, 215, 900 }, + [989] = { 71.6, 56.7, 215, 900 }, + [990] = { 62.8, 55.4, 215, 900 }, + [991] = { 35.1, 55.1, 215, 900 }, + [992] = { 33.2, 54.1, 215, 900 }, + [993] = { 61.5, 53, 215, 900 }, + [994] = { 34, 51.5, 215, 900 }, + [995] = { 61.6, 50.4, 215, 900 }, + [996] = { 31.6, 50.3, 215, 900 }, + [997] = { 33.4, 47.1, 215, 900 }, + [998] = { 59.4, 45.9, 215, 900 }, + [999] = { 63.5, 44.9, 215, 900 }, + [1000] = { 57.6, 43, 215, 900 }, + [1001] = { 64.3, 42.1, 215, 900 }, + [1002] = { 32.9, 40.6, 215, 900 }, + [1003] = { 61, 40.2, 215, 900 }, + [1004] = { 62.8, 38.7, 215, 900 }, + [1005] = { 56.9, 38.6, 215, 900 }, + [1006] = { 34.5, 38.3, 215, 900 }, + [1007] = { 65.3, 37.5, 215, 900 }, + [1008] = { 60.9, 37.4, 215, 900 }, + [1009] = { 59.2, 37, 215, 900 }, + [1010] = { 32.6, 35.8, 215, 900 }, + [1011] = { 63.1, 35.4, 215, 900 }, + [1012] = { 59.8, 33.3, 215, 900 }, + [1013] = { 60.9, 32.5, 215, 900 }, + [1014] = { 33.5, 32.5, 215, 900 }, + [1015] = { 62.7, 32.4, 215, 900 }, + [1016] = { 58.3, 31.4, 215, 900 }, + [1017] = { 60.1, 30, 215, 900 }, + [1018] = { 60.8, 29.2, 215, 900 }, + [1019] = { 30.4, 28.5, 215, 900 }, + [1020] = { 28, 26, 215, 900 }, + [1021] = { 49.3, 24.7, 215, 900 }, + [1022] = { 43.4, 20.1, 215, 900 }, + [1023] = { 36.4, 16.6, 215, 900 }, + [1024] = { 56.9, 15.8, 215, 900 }, + [1025] = { 36.9, 14.2, 215, 900 }, + [1026] = { 62.1, 14, 215, 900 }, + [1027] = { 61.3, 12.9, 215, 900 }, + [1028] = { 54.7, 12.8, 215, 900 }, + [1029] = { 55, 10, 215, 900 }, + [1030] = { 38.3, 7.1, 215, 900 }, + [1031] = { 50.2, 6.7, 215, 900 }, + [1032] = { 41.2, 6.6, 215, 900 }, + [1033] = { 52.2, 4.9, 215, 900 }, + [1034] = { 67.3, 87.1, 267, 900 }, + [1035] = { 59.3, 70.3, 267, 900 }, + [1036] = { 23.7, 60.6, 267, 900 }, + [1037] = { 32.7, 56.7, 267, 900 }, + [1038] = { 17.1, 56.3, 267, 900 }, + [1039] = { 15.3, 53.7, 267, 900 }, + [1040] = { 41, 53.6, 267, 900 }, + [1041] = { 18.1, 52.2, 267, 900 }, + [1042] = { 18, 49.9, 267, 900 }, + [1043] = { 75.9, 49, 267, 900 }, + [1044] = { 8.7, 48.9, 267, 900 }, + [1045] = { 59.9, 47.9, 267, 900 }, + [1046] = { 59.2, 42.3, 267, 900 }, + [1047] = { 81.1, 39.6, 267, 900 }, + [1048] = { 25.2, 36.9, 267, 900 }, + [1049] = { 59.7, 33.5, 267, 900 }, + [1050] = { 26.2, 31.8, 267, 900 }, + [1051] = { 89.9, 85.5, 331, 900 }, + [1052] = { 63.1, 84.1, 331, 900 }, + [1053] = { 64.6, 82.8, 331, 900 }, + [1054] = { 57.6, 74.9, 331, 900 }, + [1055] = { 71.5, 72.1, 331, 900 }, + [1056] = { 38.2, 60, 331, 900 }, + [1057] = { 33.5, 59.8, 331, 900 }, + [1058] = { 38.1, 59.6, 331, 900 }, + [1059] = { 41.7, 59, 331, 900 }, + [1060] = { 44.3, 58.8, 331, 900 }, + [1061] = { 31.9, 58.6, 331, 900 }, + [1062] = { 22.8, 58.6, 331, 900 }, + [1063] = { 46.8, 57.8, 331, 900 }, + [1064] = { 35.3, 57.3, 331, 900 }, + [1065] = { 35.1, 57, 331, 900 }, + [1066] = { 27.4, 55.8, 331, 900 }, + [1067] = { 52.6, 55.3, 331, 900 }, + [1068] = { 48.1, 54.3, 331, 900 }, + [1069] = { 48.6, 54.3, 331, 900 }, + [1070] = { 28, 53.8, 331, 900 }, + [1071] = { 46.2, 53.4, 331, 900 }, + [1072] = { 43.4, 50.6, 331, 900 }, + [1073] = { 44.7, 50.6, 331, 900 }, + [1074] = { 51.4, 50.5, 331, 900 }, + [1075] = { 78.9, 50.2, 331, 900 }, + [1076] = { 82.5, 49.7, 331, 900 }, + [1077] = { 81.5, 47.7, 331, 900 }, + [1078] = { 43.2, 46.5, 331, 900 }, + [1079] = { 41.6, 44.9, 331, 900 }, + [1080] = { 41.5, 44.2, 331, 900 }, + [1081] = { 21.4, 43.7, 331, 900 }, + [1082] = { 33.5, 42.9, 331, 900 }, + [1083] = { 35.1, 40.5, 331, 900 }, + [1084] = { 35.6, 40.4, 331, 900 }, + [1085] = { 40.1, 39.8, 331, 900 }, + [1086] = { 27, 39.2, 331, 900 }, + [1087] = { 31.6, 38.4, 331, 900 }, + [1088] = { 29.7, 32.8, 331, 900 }, + [1089] = { 14.2, 32.7, 331, 900 }, + [1090] = { 32.4, 25.8, 331, 900 }, + [1091] = { 18.7, 23.9, 331, 900 }, + [1092] = { 18.4, 23.6, 331, 900 }, + [1093] = { 33.4, 21.8, 331, 900 }, + [1094] = { 25.3, 18.9, 331, 900 }, + [1095] = { 25.8, 18, 331, 900 }, + [1096] = { 27.5, 16.7, 331, 900 }, + [1097] = { 13.2, 9.7, 331, 900 }, + [1098] = { 12.7, 8.4, 331, 900 }, + [1099] = { 91.7, 45.6, 357, 900 }, + [1100] = { 90.5, 45.1, 357, 900 }, + [1101] = { 91.7, 43.5, 357, 900 }, + [1102] = { 28.8, 65.9, 361, 900 }, + [1103] = { 30.6, 29.7, 361, 900 }, + [1104] = { 40.8, 9.2, 361, 900 }, + [1105] = { 61.9, 59.8, 400, 900 }, + [1106] = { 67.4, 58.5, 400, 900 }, + [1107] = { 67.2, 58.2, 400, 900 }, + [1108] = { 48.4, 57.6, 400, 900 }, + [1109] = { 40.4, 57, 400, 900 }, + [1110] = { 37.5, 56.7, 400, 900 }, + [1111] = { 58.7, 55.6, 400, 900 }, + [1112] = { 68.9, 54.9, 400, 900 }, + [1113] = { 56.6, 49, 400, 900 }, + [1114] = { 29, 48.8, 400, 900 }, + [1115] = { 59.1, 47.7, 400, 900 }, + [1116] = { 27.2, 45.7, 400, 900 }, + [1117] = { 25.5, 43.9, 400, 900 }, + [1118] = { 26, 42.4, 400, 900 }, + [1119] = { 45.3, 41.1, 400, 900 }, + [1120] = { 43.6, 40.5, 400, 900 }, + [1121] = { 45.5, 39.5, 400, 900 }, + [1122] = { 28.5, 39.1, 400, 900 }, + [1123] = { 26.2, 38.3, 400, 900 }, + [1124] = { 37.1, 37.9, 400, 900 }, + [1125] = { 19, 37.7, 400, 900 }, + [1126] = { 36.4, 37, 400, 900 }, + [1127] = { 17.5, 34.6, 400, 900 }, + [1128] = { 17.8, 34.5, 400, 900 }, + [1129] = { 32.3, 34.5, 400, 900 }, + [1130] = { 31.9, 34.4, 400, 900 }, + [1131] = { 25.7, 33.1, 400, 900 }, + [1132] = { 35.4, 32.4, 400, 900 }, + [1133] = { 19.3, 32.2, 400, 900 }, + [1134] = { 15.3, 30.9, 400, 900 }, + [1135] = { 28.6, 30, 400, 900 }, + [1136] = { 29.5, 27.9, 400, 900 }, + [1137] = { 30.3, 27.1, 400, 900 }, + [1138] = { 21.4, 23.7, 400, 900 }, + [1139] = { 19.6, 23.2, 400, 900 }, + [1140] = { 29, 22.6, 400, 900 }, + [1141] = { 29.3, 22.4, 400, 900 }, + [1142] = { 17.3, 19.7, 400, 900 }, + [1143] = { 16.4, 18, 400, 900 }, + [1144] = { 11.3, 17.5, 400, 900 }, + [1145] = { 9.5, 16.6, 400, 900 }, + [1146] = { 11.3, 14.2, 400, 900 }, + [1147] = { 86.8, 78, 405, 900 }, + [1148] = { 86.3, 70.6, 405, 900 }, + [1149] = { 88, 67.9, 405, 900 }, + [1150] = { 85.8, 65.1, 405, 900 }, + [1151] = { 86.9, 61.3, 405, 900 }, + [1152] = { 83.3, 56.8, 405, 900 }, + [1153] = { 80.6, 53.9, 405, 900 }, + [1154] = { 64.3, 98.7, 406, 900 }, + [1155] = { 74.4, 98.4, 406, 900 }, + [1156] = { 66.7, 98.3, 406, 900 }, + [1157] = { 76.2, 96.8, 406, 900 }, + [1158] = { 74.7, 91.4, 406, 900 }, + [1159] = { 89.2, 88, 406, 900 }, + [1160] = { 71.5, 87.9, 406, 900 }, + [1161] = { 66.2, 85.7, 406, 900 }, + [1162] = { 68.9, 84.9, 406, 900 }, + [1163] = { 70.3, 84.6, 406, 900 }, + [1164] = { 69.2, 84.1, 406, 900 }, + [1165] = { 73.2, 81.4, 406, 900 }, + [1166] = { 80.4, 80.9, 406, 900 }, + [1167] = { 59.7, 79.7, 406, 900 }, + [1168] = { 82, 78.5, 406, 900 }, + [1169] = { 73.2, 77.9, 406, 900 }, + [1170] = { 74.8, 74.3, 406, 900 }, + [1171] = { 61, 73.1, 406, 900 }, + [1172] = { 60.4, 68.4, 406, 900 }, + [1173] = { 60, 66.6, 406, 900 }, + [1174] = { 41.5, 65.1, 406, 900 }, + [1175] = { 75, 63.8, 406, 900 }, + [1176] = { 64.8, 62.9, 406, 900 }, + [1177] = { 40.9, 62.8, 406, 900 }, + [1178] = { 40.5, 60.8, 406, 900 }, + [1179] = { 70.1, 57, 406, 900 }, + [1180] = { 67.5, 56.3, 406, 900 }, + [1181] = { 73.9, 55.9, 406, 900 }, + [1182] = { 67.3, 55.3, 406, 900 }, + [1183] = { 42.8, 55.2, 406, 900 }, + [1184] = { 70.2, 55.1, 406, 900 }, + [1185] = { 63.2, 54.9, 406, 900 }, + [1186] = { 60.4, 54.7, 406, 900 }, + [1187] = { 53, 54.2, 406, 900 }, + [1188] = { 40.7, 54.2, 406, 900 }, + [1189] = { 43, 53.4, 406, 900 }, + [1190] = { 50.5, 52.6, 406, 900 }, + [1191] = { 40, 52, 406, 900 }, + [1192] = { 55.4, 51.8, 406, 900 }, + [1193] = { 62.1, 49.7, 406, 900 }, + [1194] = { 67.1, 49.3, 406, 900 }, + [1195] = { 67.3, 49.3, 406, 900 }, + [1196] = { 43.5, 47, 406, 900 }, + [1197] = { 70.8, 46.8, 406, 900 }, + [1198] = { 57.1, 46.6, 406, 900 }, + [1199] = { 42.1, 46.6, 406, 900 }, + [1200] = { 64.4, 46.4, 406, 900 }, + [1201] = { 63.9, 45.9, 406, 900 }, + [1202] = { 54.2, 42.1, 406, 900 }, + [1203] = { 49, 41.4, 406, 900 }, + [1204] = { 47.1, 34.5, 406, 900 }, + [1205] = { 48.6, 33.6, 406, 900 }, + [1206] = { 41.6, 28.9, 406, 900 }, + [1207] = { 46.9, 28.8, 406, 900 }, + [1208] = { 45.6, 27.1, 406, 900 }, + [1209] = { 67.9, 25.4, 406, 900 }, + [1210] = { 59.2, 25.4, 406, 900 }, + [1211] = { 63.6, 22.8, 406, 900 }, + [1212] = { 64.2, 20.8, 406, 900 }, + [1213] = { 25.4, 16.2, 406, 900 }, + [1214] = { 28.8, 15, 406, 900 }, + [1215] = { 23.5, 14.6, 406, 900 }, + [1216] = { 22.8, 13.7, 406, 900 }, + [1217] = { 98.4, 2.3, 409, 900 }, + [1218] = { 31, 62.5, 718, 900 }, + [1219] = { 38.1, 56.4, 718, 900 }, + [1220] = { 83.3, 37.4, 718, 900 }, + [1221] = { 55.7, 34.9, 718, 900 }, + [1222] = { 22.1, 29.6, 718, 900 }, + [1223] = { 37.6, 27.1, 718, 900 }, + [1224] = { 86.1, 22.9, 718, 900 }, + [1225] = { 76.3, 1.1, 718, 900 }, + [1226] = { 83.8, 50.3, 718, 900 }, + [1227] = { 32.4, 47.9, 718, 900 }, + [1228] = { 79.1, 38.6, 718, 900 }, + [1229] = { 98.3, 56, 721, 900 }, + [1230] = { 40.1, 49.9, 1337, 900 }, + [1231] = { 48.7, 44.4, 1337, 900 }, + [1232] = { 38.6, 44.3, 1337, 900 }, + [1233] = { 42.1, 39.1, 1337, 900 }, + [1234] = { 37.4, 27, 1337, 900 }, + [1235] = { 19.9, 12.7, 1337, 900 }, + [1236] = { 6.1, 2, 1337, 900 }, + [1237] = { 10.9, 27.3, 1497, 900 }, + [1238] = { 44.2, 91.3, 1581, 900 }, + [1239] = { 48.3, 90.6, 1581, 900 }, + [1240] = { 51.8, 88.6, 1581, 900 }, + [1241] = { 50.4, 84, 1581, 900 }, + [1242] = { 50.6, 77.6, 1581, 900 }, + [1243] = { 33.3, 69.9, 1581, 900 }, + [1244] = { 64.8, 67.7, 1581, 900 }, + [1245] = { 37.3, 58.8, 1581, 900 }, + [1246] = { 21.9, 46.4, 1581, 900 }, + [1247] = { 78.1, 46.1, 1581, 900 }, + [1248] = { 54.1, 44.3, 1581, 900 }, + [1249] = { 38.4, 40.1, 1581, 900 }, + [1250] = { 54.5, 31.5, 1581, 900 }, + [1251] = { 78.4, 26.4, 1581, 900 }, + [1252] = { 62, 21.9, 1581, 900 }, + [1253] = { 60.9, 9.3, 1581, 900 }, + [1254] = { 38.8, 98.5, 2040, 900 }, + [1255] = { 20.2, 97.5, 2040, 900 }, + [1256] = { 6.7, 87.7, 2040, 900 }, + [1257] = { 24.9, 84, 2040, 900 }, + [1258] = { 4.1, 63.6, 2040, 900 }, + [1259] = { 38.8, 74.3, 5138, 604800 }, + [1260] = { 42.8, 73.2, 5138, 604800 }, + [1261] = { 18.5, 31.4, 5138, 99999999 }, + [1262] = { 10.9, 27.1, 5138, 604800 }, + [1263] = { 29.8, 26.1, 5138, 604800 }, + [1264] = { 4, 21.6, 5138, 604800 }, + [1265] = { 80.3, 21.9, 5179, 900 }, + [1266] = { 88.1, 18.4, 5179, 900 }, + [1267] = { 74.6, 18.1, 5179, 900 }, + [1268] = { 52.5, 16.7, 5179, 900 }, + [1269] = { 73, 15.8, 5179, 900 }, + [1270] = { 95.4, 15.8, 5179, 900 }, + [1271] = { 75.4, 14.5, 5179, 900 }, + [1272] = { 55.9, 14.4, 5179, 900 }, + [1273] = { 75.4, 12.5, 5179, 900 }, + [1274] = { 67.2, 11.6, 5179, 900 }, + [1275] = { 45.1, 11.3, 5179, 900 }, + [1276] = { 58.8, 9.1, 5179, 900 }, + [1277] = { 42.1, 9, 5179, 900 }, + [1278] = { 48.8, 4.7, 5179, 900 }, + [1279] = { 43.8, 3.6, 5179, 900 }, + [1280] = { 81.6, 1.1, 5179, 900 }, + [1281] = { 40.5, 89.2, 5225, 900 }, + [1282] = { 41.4, 87.4, 5225, 900 }, + [1283] = { 40.7, 84.4, 5225, 900 }, + [1284] = { 37.6, 83.6, 5225, 900 }, + [1285] = { 42.8, 80.3, 5225, 900 }, + [1286] = { 43.3, 80.1, 5225, 900 }, + [1287] = { 25.1, 79.8, 5225, 900 }, + [1288] = { 39.4, 79.2, 5225, 900 }, + [1289] = { 54.8, 77.6, 5225, 900 }, + [1290] = { 60, 73.5, 5225, 900 }, + [1291] = { 45.6, 72.8, 5225, 900 }, + [1292] = { 28.1, 72.3, 5225, 900 }, + [1293] = { 46, 72.2, 5225, 900 }, + [1294] = { 39.8, 71.2, 5225, 900 }, + [1295] = { 33.3, 67.2, 5225, 900 }, + [1296] = { 48.2, 64.7, 5225, 900 }, + [1297] = { 57, 63.8, 5225, 900 }, + [1298] = { 40.8, 63.5, 5225, 900 }, + [1299] = { 39.4, 62.8, 5225, 900 }, + [1300] = { 64.1, 62.8, 5225, 900 }, + [1301] = { 32.7, 60.4, 5225, 900 }, + [1302] = { 38.8, 60.1, 5225, 900 }, + [1303] = { 26.6, 59.8, 5225, 900 }, + [1304] = { 35.6, 59.7, 5225, 900 }, + [1305] = { 44.7, 59, 5225, 900 }, + [1306] = { 52.8, 58.7, 5225, 900 }, + [1307] = { 50.1, 57.3, 5225, 900 }, + [1308] = { 30.6, 52.6, 5225, 900 }, + [1309] = { 42.4, 52.5, 5225, 900 }, + [1310] = { 37.4, 52.2, 5225, 900 }, + [1311] = { 56.3, 48.8, 5225, 900 }, + [1312] = { 47.4, 48.3, 5225, 900 }, + [1313] = { 34.7, 46.7, 5225, 900 }, + [1314] = { 41, 43.7, 5225, 900 }, + [1315] = { 49.6, 41.9, 5225, 900 }, + [1316] = { 27.6, 36.1, 5225, 900 }, + [1317] = { 39.7, 32.3, 5225, 900 }, + [1318] = { 34.8, 25.2, 5225, 900 }, + [1319] = { 58.9, 84.6, 5536, 900 }, + [1320] = { 51.6, 81.2, 5536, 900 }, + [1321] = { 43.1, 81, 5536, 900 }, + [1322] = { 31.2, 79.6, 5536, 900 }, + [1323] = { 65.3, 75.1, 5536, 900 }, + [1324] = { 45.7, 73.1, 5536, 900 }, + [1325] = { 30.1, 70.7, 5536, 900 }, + [1326] = { 39.6, 66.4, 5536, 900 }, + [1327] = { 68.9, 62.1, 5536, 900 }, + [1328] = { 56.1, 61.9, 5536, 900 }, + [1329] = { 59.2, 58.6, 5536, 900 }, + [1330] = { 62.4, 58, 5536, 900 }, + [1331] = { 56.3, 57.3, 5536, 900 }, + [1332] = { 35.7, 54.4, 5536, 900 }, + [1333] = { 41.2, 53.7, 5536, 900 }, + [1334] = { 49.3, 51.9, 5536, 900 }, + [1335] = { 54.8, 48.1, 5536, 900 }, + [1336] = { 70.4, 42.5, 5536, 900 }, + [1337] = { 57, 40.7, 5536, 900 }, + [1338] = { 60.3, 38.5, 5536, 900 }, + [1339] = { 62.3, 38.5, 5536, 900 }, + [1340] = { 37.3, 38.2, 5536, 900 }, + [1341] = { 53, 37.1, 5536, 900 }, + [1342] = { 72.6, 33.2, 5536, 900 }, + [1343] = { 72.5, 32.5, 5536, 900 }, + [1344] = { 65.1, 32.5, 5536, 900 }, + [1345] = { 58.4, 32.5, 5536, 900 }, + [1346] = { 62.5, 32, 5536, 900 }, + [1347] = { 42.5, 30.8, 5536, 900 }, + [1348] = { 56, 26.2, 5536, 900 }, + [1349] = { 56.9, 18.3, 5536, 900 }, + [1350] = { 16.7, 90.3, 5602, 900 }, + [1351] = { 17.6, 89.7, 5602, 900 }, + [1352] = { 16.6, 89.7, 5602, 900 }, + [1353] = { 16.9, 89.2, 5602, 900 }, + [1354] = { 16.4, 87.9, 5602, 900 }, + [1355] = { 14.6, 86.4, 5602, 900 }, + [1356] = { 13.2, 85.3, 5602, 900 }, + [1357] = { 33, 83.8, 5602, 900 }, + [1358] = { 16.7, 83.6, 5602, 900 }, + [1359] = { 14.5, 83.5, 5602, 900 }, + [1360] = { 37.1, 82.7, 5602, 900 }, + [1361] = { 31.2, 82.5, 5602, 900 }, + [1362] = { 28.4, 82.2, 5602, 900 }, + [1363] = { 18, 82.1, 5602, 900 }, + [1364] = { 19.6, 80.8, 5602, 900 }, + [1365] = { 28.1, 80.6, 5602, 900 }, + [1366] = { 16.3, 80.6, 5602, 900 }, + [1367] = { 21.2, 80.4, 5602, 900 }, + [1368] = { 15.7, 80.1, 5602, 900 }, + [1369] = { 34.6, 79.4, 5602, 900 }, + [1370] = { 27.1, 79.2, 5602, 900 }, + [1371] = { 30.5, 78.6, 5602, 900 }, + [1372] = { 28.9, 78.5, 5602, 900 }, + [1373] = { 20.5, 78.3, 5602, 900 }, + [1374] = { 19.5, 77.8, 5602, 900 }, + [1375] = { 22, 76.4, 5602, 900 }, + [1376] = { 0.2, 76.1, 5602, 900 }, + [1377] = { 20, 76, 5602, 900 }, + [1378] = { 15.9, 75.9, 5602, 900 }, + [1379] = { 37.7, 75.4, 5602, 900 }, + [1380] = { 22, 75, 5602, 900 }, + [1381] = { 2.7, 74.1, 5602, 900 }, + [1382] = { 16, 73.7, 5602, 900 }, + [1383] = { 36.1, 73.5, 5602, 900 }, + [1384] = { 19.4, 73.5, 5602, 900 }, + [1385] = { 11.9, 73.4, 5602, 900 }, + [1386] = { 17, 73.2, 5602, 900 }, + [1387] = { 38.8, 73.1, 5602, 900 }, + [1388] = { 12.2, 72.9, 5602, 900 }, + [1389] = { 23.1, 72.4, 5602, 900 }, + [1390] = { 38.4, 71.8, 5602, 900 }, + [1391] = { 20.8, 71.4, 5602, 900 }, + [1392] = { 2.8, 70.2, 5602, 900 }, + [1393] = { 25.1, 69.9, 5602, 900 }, + [1394] = { 36.3, 69, 5602, 900 }, + [1395] = { 19.8, 68.7, 5602, 900 }, + [1396] = { 27.5, 68.6, 5602, 900 }, + [1397] = { 21.6, 68.6, 5602, 900 }, + [1398] = { 33.8, 68.5, 5602, 900 }, + [1399] = { 12, 68.5, 5602, 900 }, + [1400] = { 27.7, 67, 5602, 900 }, + [1401] = { 11.6, 67, 5602, 900 }, + [1402] = { 22.9, 66.4, 5602, 900 }, + [1403] = { 38.4, 63.8, 5602, 900 }, + [1404] = { 22.6, 63.5, 5602, 900 }, + [1405] = { 3.4, 63.2, 5602, 900 }, + [1406] = { 23.9, 62.5, 5602, 900 }, + [1407] = { 19.5, 61.5, 5602, 900 }, + [1408] = { 23.2, 61, 5602, 900 }, + [1409] = { 38.5, 61, 5602, 900 }, + [1410] = { 12.1, 60.5, 5602, 900 }, + [1411] = { 16.5, 58.1, 5602, 900 }, + [1412] = { 33.4, 58.1, 5602, 900 }, + [1413] = { 1.3, 58, 5602, 900 }, + [1414] = { 19.9, 57.7, 5602, 900 }, + [1415] = { 15.6, 57.6, 5602, 900 }, + [1416] = { 17.2, 57.5, 5602, 900 }, + [1417] = { 15.1, 57.4, 5602, 900 }, + [1418] = { 16.7, 56.9, 5602, 900 }, + [1419] = { 10.4, 56.8, 5602, 900 }, + [1420] = { 31.4, 56.4, 5602, 900 }, + [1421] = { 16.7, 56.3, 5602, 900 }, + [1422] = { 24.3, 56.1, 5602, 900 }, + [1423] = { 18, 55.6, 5602, 900 }, + [1424] = { 36.5, 55.6, 5602, 900 }, + [1425] = { 16.7, 54.8, 5602, 900 }, + [1426] = { 19.8, 54, 5602, 900 }, + [1427] = { 17, 53.9, 5602, 900 }, + [1428] = { 35, 53.6, 5602, 900 }, + [1429] = { 28.1, 51.5, 5602, 900 }, + [1430] = { 19.9, 50.9, 5602, 900 }, + [1431] = { 17.2, 49.4, 5602, 900 }, + [1432] = { 19.5, 48.8, 5602, 900 }, + [1433] = { 15.8, 40.7, 5602, 900 }, + [1434] = { 10.7, 40, 5602, 900 }, + [1435] = { 5.5, 35, 5602, 900 }, + [1436] = { 17.9, 34.9, 5602, 900 }, + [1437] = { 7.5, 34.6, 5602, 900 }, + [1438] = { 7.1, 34.5, 5602, 900 }, + [1439] = { 5.8, 33.4, 5602, 900 }, + [1440] = { 15.6, 32.8, 5602, 900 }, + [1441] = { 6.4, 32.3, 5602, 900 }, + [1442] = { 15.8, 31.6, 5602, 900 }, + [1443] = { 7.4, 31.5, 5602, 900 }, + [1444] = { 16.2, 31.4, 5602, 900 }, + [1445] = { 14.7, 27.3, 5602, 900 }, + [1446] = { 14.8, 25.9, 5602, 900 }, + [1447] = { 15, 22.6, 5602, 900 }, + }, + }, + [1732] = { + ["coords"] = { + [1] = { 37.3, 85, 10, 900 }, + [2] = { 63.3, 84.4, 10, 900 }, + [3] = { 63.4, 84.3, 10, 900 }, + [4] = { 36.5, 81.2, 10, 900 }, + [5] = { 62.1, 78.9, 10, 900 }, + [6] = { 73.6, 78.5, 10, 900 }, + [7] = { 74.2, 77.2, 10, 900 }, + [8] = { 33.6, 76.6, 10, 900 }, + [9] = { 32, 76.5, 10, 900 }, + [10] = { 30.4, 76.2, 10, 900 }, + [11] = { 30.5, 71.4, 10, 900 }, + [12] = { 50.6, 63.2, 10, 900 }, + [13] = { 81.8, 62.9, 10, 900 }, + [14] = { 46.6, 60.2, 10, 900 }, + [15] = { 52.6, 55.5, 10, 900 }, + [16] = { 67.4, 51.5, 10, 900 }, + [17] = { 84.9, 50.9, 10, 900 }, + [18] = { 85.9, 49.1, 10, 900 }, + [19] = { 67.9, 42.6, 10, 900 }, + [20] = { 68.6, 40.7, 10, 900 }, + [21] = { 36, 31.9, 10, 900 }, + [22] = { 51.4, 22.5, 10, 900 }, + [23] = { 61.5, 80, 11, 900 }, + [24] = { 59.6, 79.3, 11, 900 }, + [25] = { 60.3, 78.8, 11, 900 }, + [26] = { 54, 77.6, 11, 900 }, + [27] = { 53.4, 76.2, 11, 900 }, + [28] = { 66.6, 74.8, 11, 900 }, + [29] = { 67.4, 73.4, 11, 900 }, + [30] = { 67.9, 69.6, 11, 900 }, + [31] = { 66.6, 66.5, 11, 900 }, + [32] = { 45.8, 65.1, 11, 900 }, + [33] = { 48.7, 63.1, 11, 900 }, + [34] = { 53.1, 62.7, 11, 900 }, + [35] = { 50.6, 61.3, 11, 900 }, + [36] = { 51.1, 61.1, 11, 900 }, + [37] = { 49.1, 61, 11, 900 }, + [38] = { 66.8, 60.8, 11, 900 }, + [39] = { 48.5, 60.3, 11, 900 }, + [40] = { 47.5, 60, 11, 900 }, + [41] = { 67, 59, 11, 900 }, + [42] = { 50.5, 58.4, 11, 900 }, + [43] = { 67.3, 56.9, 11, 900 }, + [44] = { 67.8, 56, 11, 900 }, + [45] = { 67.7, 54.3, 11, 900 }, + [46] = { 69, 52.3, 11, 900 }, + [47] = { 34.8, 51.9, 11, 900 }, + [48] = { 36.6, 49.9, 11, 900 }, + [49] = { 45.4, 47.8, 11, 900 }, + [50] = { 32.6, 47.4, 11, 900 }, + [51] = { 51.7, 46.5, 11, 900 }, + [52] = { 38.9, 46.1, 11, 900 }, + [53] = { 38.1, 46.1, 11, 900 }, + [54] = { 35.9, 45.5, 11, 900 }, + [55] = { 48.6, 44.8, 11, 900 }, + [56] = { 70.5, 44.6, 11, 900 }, + [57] = { 37.7, 43.3, 11, 900 }, + [58] = { 68, 42.9, 11, 900 }, + [59] = { 67.9, 37.6, 11, 900 }, + [60] = { 69.7, 36.1, 11, 900 }, + [61] = { 36.6, 35.5, 11, 900 }, + [62] = { 68.8, 35.4, 11, 900 }, + [63] = { 66.3, 32.8, 11, 900 }, + [64] = { 65.4, 32.5, 11, 900 }, + [65] = { 70.4, 32, 11, 900 }, + [66] = { 66.6, 31.9, 11, 900 }, + [67] = { 69.3, 31.1, 11, 900 }, + [68] = { 65, 30.7, 11, 900 }, + [69] = { 66.5, 30.5, 11, 900 }, + [70] = { 43.6, 22.6, 11, 900 }, + [71] = { 34.1, 15.2, 11, 900 }, + [72] = { 49.3, 71.3, 14, 900 }, + [73] = { 48, 68.8, 14, 900 }, + [74] = { 25.5, 65.6, 15, 900 }, + [75] = { 52.4, 62, 15, 900 }, + [76] = { 26.5, 28.7, 15, 900 }, + [77] = { 34.6, 20.1, 15, 900 }, + [78] = { 35.6, 13.7, 15, 900 }, + [79] = { 40.8, 95.2, 17, 900 }, + [80] = { 48.7, 88, 17, 900 }, + [81] = { 48.7, 82.3, 17, 900 }, + [82] = { 41.5, 78.3, 17, 900 }, + [83] = { 43.6, 76.8, 17, 900 }, + [84] = { 49.2, 68.8, 17, 900 }, + [85] = { 47.4, 68.7, 17, 900 }, + [86] = { 45.2, 68.7, 17, 900 }, + [87] = { 53.4, 64.4, 17, 900 }, + [88] = { 53.9, 61.1, 17, 900 }, + [89] = { 53.6, 54.1, 17, 900 }, + [90] = { 51.8, 52.9, 17, 900 }, + [91] = { 52.4, 52.6, 17, 900 }, + [92] = { 51.5, 52.6, 17, 900 }, + [93] = { 61.1, 51.4, 17, 900 }, + [94] = { 44.5, 51.3, 17, 900 }, + [95] = { 64.2, 49.5, 17, 900 }, + [96] = { 42.9, 43.1, 17, 900 }, + [97] = { 55.3, 43, 17, 900 }, + [98] = { 42.7, 41.1, 17, 900 }, + [99] = { 46.4, 40, 17, 900 }, + [100] = { 47.4, 40, 17, 900 }, + [101] = { 46.2, 37.6, 17, 900 }, + [102] = { 36.5, 35, 17, 900 }, + [103] = { 44.9, 25.1, 17, 900 }, + [104] = { 39.5, 23.6, 17, 900 }, + [105] = { 44.7, 23.5, 17, 900 }, + [106] = { 32.5, 21.4, 17, 900 }, + [107] = { 57.8, 18.6, 17, 900 }, + [108] = { 47.9, 15.9, 17, 900 }, + [109] = { 37.9, 14.6, 17, 900 }, + [110] = { 31.7, 13, 17, 900 }, + [111] = { 46.4, 12.8, 17, 900 }, + [112] = { 50.1, 11.9, 17, 900 }, + [113] = { 57.5, 6, 17, 900 }, + [114] = { 38.8, 13.9, 33, 900 }, + [115] = { 45.5, 13.2, 33, 900 }, + [116] = { 43.4, 11.4, 33, 900 }, + [117] = { 42.4, 8.3, 33, 900 }, + [118] = { 37.8, 7.8, 33, 900 }, + [119] = { 33.1, 6.4, 33, 900 }, + [120] = { 37.5, 1.8, 33, 900 }, + [121] = { 48.5, 1.6, 33, 900 }, + [122] = { 48.6, 1.5, 33, 900 }, + [123] = { 41.1, 97.6, 36, 900 }, + [124] = { 70.8, 96.3, 36, 900 }, + [125] = { 35.7, 94.8, 36, 900 }, + [126] = { 14.4, 94, 36, 900 }, + [127] = { 51.4, 90.9, 36, 900 }, + [128] = { 63.5, 88.4, 36, 900 }, + [129] = { 52.6, 86, 36, 900 }, + [130] = { 27.2, 84.6, 36, 900 }, + [131] = { 52.2, 81.5, 36, 900 }, + [132] = { 29.2, 81.4, 36, 900 }, + [133] = { 50.9, 77.8, 36, 900 }, + [134] = { 72, 77.6, 36, 900 }, + [135] = { 66, 75.8, 36, 900 }, + [136] = { 61, 72.7, 36, 900 }, + [137] = { 66, 70.3, 36, 900 }, + [138] = { 55, 68.7, 36, 900 }, + [139] = { 29.8, 87.5, 38, 900 }, + [140] = { 27.1, 85.6, 38, 900 }, + [141] = { 70.8, 75.6, 38, 900 }, + [142] = { 29.3, 72.5, 38, 900 }, + [143] = { 63.3, 71.5, 38, 900 }, + [144] = { 68.4, 68, 38, 900 }, + [145] = { 70, 63.4, 38, 900 }, + [146] = { 69.2, 62.6, 38, 900 }, + [147] = { 27.5, 59.2, 38, 900 }, + [148] = { 78.9, 46.8, 38, 900 }, + [149] = { 69, 46.6, 38, 900 }, + [150] = { 22.7, 31.5, 38, 900 }, + [151] = { 72.1, 28.1, 38, 900 }, + [152] = { 78.2, 27.4, 38, 900 }, + [153] = { 75.6, 24.6, 38, 900 }, + [154] = { 71.2, 19.6, 38, 900 }, + [155] = { 68, 18.5, 38, 900 }, + [156] = { 79, 16.3, 38, 900 }, + [157] = { 74.8, 15.9, 38, 900 }, + [158] = { 76.9, 13.7, 38, 900 }, + [159] = { 38.7, 82.5, 40, 900 }, + [160] = { 43.9, 81.5, 40, 900 }, + [161] = { 41.3, 79.9, 40, 900 }, + [162] = { 43.6, 78.9, 40, 900 }, + [163] = { 41.6, 78.8, 40, 900 }, + [164] = { 43.2, 78.3, 40, 900 }, + [165] = { 47.6, 77.5, 40, 900 }, + [166] = { 44.2, 77.2, 40, 900 }, + [167] = { 43.7, 76.5, 40, 900 }, + [168] = { 49.4, 75.9, 40, 900 }, + [169] = { 39.6, 74.3, 40, 900 }, + [170] = { 33.9, 63.7, 40, 900 }, + [171] = { 32.2, 60.1, 40, 900 }, + [172] = { 29.8, 50.7, 40, 900 }, + [173] = { 29.2, 45.6, 40, 900 }, + [174] = { 33, 45.5, 40, 900 }, + [175] = { 31.5, 45.1, 40, 900 }, + [176] = { 29.4, 40.9, 40, 900 }, + [177] = { 27.9, 33, 40, 900 }, + [178] = { 32, 30.9, 40, 900 }, + [179] = { 44.7, 25.3, 40, 900 }, + [180] = { 44.4, 25.1, 40, 900 }, + [181] = { 44.5, 23.9, 40, 900 }, + [182] = { 44.8, 23.7, 40, 900 }, + [183] = { 44.8, 22.7, 40, 900 }, + [184] = { 45.2, 22.1, 40, 900 }, + [185] = { 44.5, 22.1, 40, 900 }, + [186] = { 45.6, 21.7, 40, 900 }, + [187] = { 44.5, 21.5, 40, 900 }, + [188] = { 44.6, 21.1, 40, 900 }, + [189] = { 44.9, 20.7, 40, 900 }, + [190] = { 45.9, 20.6, 40, 900 }, + [191] = { 44.5, 20.4, 40, 900 }, + [192] = { 44.5, 19.9, 40, 900 }, + [193] = { 46.3, 19.6, 40, 900 }, + [194] = { 45.9, 19.5, 40, 900 }, + [195] = { 46.4, 19.1, 40, 900 }, + [196] = { 45.8, 18.2, 40, 900 }, + [197] = { 46, 18.1, 40, 900 }, + [198] = { 45.3, 18, 40, 900 }, + [199] = { 64.8, 78.8, 44, 900 }, + [200] = { 52.9, 77.8, 44, 900 }, + [201] = { 25.9, 73.6, 44, 900 }, + [202] = { 59.3, 71.3, 44, 900 }, + [203] = { 79.7, 67.4, 44, 900 }, + [204] = { 62.4, 66.2, 44, 900 }, + [205] = { 66.4, 63.1, 44, 900 }, + [206] = { 86.2, 61.8, 44, 900 }, + [207] = { 21, 58.2, 44, 900 }, + [208] = { 66.3, 57, 44, 900 }, + [209] = { 80.9, 51.7, 44, 900 }, + [210] = { 72.2, 51.2, 44, 900 }, + [211] = { 59.9, 47, 44, 900 }, + [212] = { 53.6, 47, 44, 900 }, + [213] = { 77.9, 45.9, 44, 900 }, + [214] = { 82.7, 43, 44, 900 }, + [215] = { 56.5, 37, 44, 900 }, + [216] = { 81.9, 36.9, 44, 900 }, + [217] = { 39.6, 35, 44, 900 }, + [218] = { 27.2, 29.7, 44, 900 }, + [219] = { 49.7, 27.1, 44, 900 }, + [220] = { 18.6, 24.6, 44, 900 }, + [221] = { 20.2, 23.6, 44, 900 }, + [222] = { 17.3, 22.8, 44, 900 }, + [223] = { 21.8, 20.2, 44, 900 }, + [224] = { 15.2, 19, 44, 900 }, + [225] = { 19, 16.6, 44, 900 }, + [226] = { 40.8, 13.7, 44, 900 }, + [227] = { 19.8, 13.1, 44, 900 }, + [228] = { 28.9, 12.4, 44, 900 }, + [229] = { 30.8, 10.4, 44, 900 }, + [230] = { 43.8, 10.2, 44, 900 }, + [231] = { 26.6, 10.1, 44, 900 }, + [232] = { 39.6, 73.1, 45, 900 }, + [233] = { 62.9, 70.9, 45, 900 }, + [234] = { 62.1, 66.7, 45, 900 }, + [235] = { 48.3, 64.4, 45, 900 }, + [236] = { 40.6, 60.5, 45, 900 }, + [237] = { 72.4, 60, 45, 900 }, + [238] = { 17.2, 52.7, 45, 900 }, + [239] = { 53.2, 45.1, 45, 900 }, + [240] = { 31, 44.2, 45, 900 }, + [241] = { 22.3, 43.6, 45, 900 }, + [242] = { 11.4, 41.2, 45, 900 }, + [243] = { 58.5, 34.3, 45, 900 }, + [244] = { 16.3, 32.9, 45, 900 }, + [245] = { 23.9, 29.5, 45, 900 }, + [246] = { 59.2, 88.8, 46, 900 }, + [247] = { 66, 88.3, 46, 900 }, + [248] = { 67.4, 86.8, 46, 900 }, + [249] = { 64.2, 86.6, 46, 900 }, + [250] = { 23.1, 78.6, 85, 900 }, + [251] = { 22.8, 77.8, 85, 900 }, + [252] = { 18.4, 77.3, 85, 900 }, + [253] = { 23.6, 77.2, 85, 900 }, + [254] = { 22.9, 76.6, 85, 900 }, + [255] = { 27, 59.6, 85, 900 }, + [256] = { 25.3, 59.2, 85, 900 }, + [257] = { 27.8, 58.6, 85, 900 }, + [258] = { 24.3, 56.9, 85, 900 }, + [259] = { 26.6, 55.5, 85, 900 }, + [260] = { 25, 55.1, 85, 900 }, + [261] = { 25.8, 51.4, 85, 900 }, + [262] = { 60.8, 80.8, 130, 900 }, + [263] = { 59.4, 75.5, 130, 900 }, + [264] = { 59.6, 72.2, 130, 900 }, + [265] = { 58.9, 71.3, 130, 900 }, + [266] = { 57, 71, 130, 900 }, + [267] = { 40.1, 69.2, 130, 900 }, + [268] = { 65.9, 61.3, 130, 900 }, + [269] = { 60, 61, 130, 900 }, + [270] = { 46, 56.8, 130, 900 }, + [271] = { 42.1, 52, 130, 900 }, + [272] = { 58, 45.1, 130, 900 }, + [273] = { 58.4, 43.1, 130, 900 }, + [274] = { 63.7, 42.1, 130, 900 }, + [275] = { 48, 33.5, 130, 900 }, + [276] = { 79.9, 23.7, 130, 900 }, + [277] = { 65, 16.1, 130, 900 }, + [278] = { 36.8, 13.2, 130, 900 }, + [279] = { 62, 7.4, 130, 900 }, + [280] = { 26.1, 97.4, 148, 900 }, + [281] = { 23.8, 96.7, 148, 900 }, + [282] = { 41.8, 96.3, 148, 900 }, + [283] = { 28, 95.1, 148, 900 }, + [284] = { 31, 94.3, 148, 900 }, + [285] = { 45, 88.1, 148, 900 }, + [286] = { 45, 85.6, 148, 900 }, + [287] = { 32.3, 78.7, 148, 900 }, + [288] = { 37.7, 63.2, 148, 900 }, + [289] = { 44.7, 61.2, 148, 900 }, + [290] = { 37.3, 59.4, 148, 900 }, + [291] = { 45.9, 57.3, 148, 900 }, + [292] = { 34.7, 56, 148, 900 }, + [293] = { 45.8, 54.5, 148, 900 }, + [294] = { 48.1, 42.5, 148, 900 }, + [295] = { 48.1, 29.1, 148, 900 }, + [296] = { 59.8, 24.5, 148, 900 }, + [297] = { 50.6, 21.7, 148, 900 }, + [298] = { 59.3, 19.6, 148, 900 }, + [299] = { 61.7, 16.5, 148, 900 }, + [300] = { 60, 15, 148, 900 }, + [301] = { 62, 12.4, 148, 900 }, + [302] = { 61.4, 8.8, 148, 900 }, + [303] = { 60.7, 13.9, 215, 900 }, + [304] = { 79.8, 84.3, 267, 900 }, + [305] = { 73.2, 71.4, 267, 900 }, + [306] = { 66.6, 70, 267, 900 }, + [307] = { 32.4, 65.6, 267, 900 }, + [308] = { 78.8, 62, 267, 900 }, + [309] = { 30.6, 58.4, 267, 900 }, + [310] = { 64.1, 55.2, 267, 900 }, + [311] = { 64, 51.7, 267, 900 }, + [312] = { 28.1, 50.7, 267, 900 }, + [313] = { 65.1, 47.8, 267, 900 }, + [314] = { 70.1, 43.6, 267, 900 }, + [315] = { 69.9, 38.3, 267, 900 }, + [316] = { 44.8, 33.8, 267, 900 }, + [317] = { 70.8, 32.7, 267, 900 }, + [318] = { 40.1, 31.4, 267, 900 }, + [319] = { 21.5, 30.7, 267, 900 }, + [320] = { 78.9, 28, 267, 900 }, + [321] = { 53.8, 28, 267, 900 }, + [322] = { 64.5, 25.8, 267, 900 }, + [323] = { 54.9, 23.7, 267, 900 }, + [324] = { 32.7, 22.5, 267, 900 }, + [325] = { 12, 21, 267, 900 }, + [326] = { 54.6, 19.8, 267, 900 }, + [327] = { 34.4, 19.7, 267, 900 }, + [328] = { 53.4, 16.5, 267, 900 }, + [329] = { 71.8, 16.3, 267, 900 }, + [330] = { 66.6, 14.7, 267, 900 }, + [331] = { 62.3, 12, 267, 900 }, + [332] = { 66.6, 9.9, 267, 900 }, + [333] = { 56.9, 8.5, 267, 900 }, + [334] = { 81.4, 80.2, 331, 900 }, + [335] = { 51.8, 77, 331, 900 }, + [336] = { 30.8, 69.6, 331, 900 }, + [337] = { 64.7, 68.3, 331, 900 }, + [338] = { 80.5, 62.9, 331, 900 }, + [339] = { 55, 61.4, 331, 900 }, + [340] = { 54.6, 56.3, 331, 900 }, + [341] = { 54.3, 53.4, 331, 900 }, + [342] = { 93.7, 50.5, 331, 900 }, + [343] = { 47, 49.1, 331, 900 }, + [344] = { 75.9, 47.3, 331, 900 }, + [345] = { 15, 44.7, 331, 900 }, + [346] = { 24.6, 42.3, 331, 900 }, + [347] = { 20.4, 41.9, 331, 900 }, + [348] = { 29.9, 41.3, 331, 900 }, + [349] = { 40.8, 36.3, 331, 900 }, + [350] = { 41.3, 35.2, 331, 900 }, + [351] = { 28.6, 34.6, 331, 900 }, + [352] = { 23.4, 33.8, 331, 900 }, + [353] = { 40.8, 31.3, 331, 900 }, + [354] = { 16.5, 31, 331, 900 }, + [355] = { 30.4, 29.7, 331, 900 }, + [356] = { 25.3, 22, 331, 900 }, + [357] = { 8.1, 15.5, 331, 900 }, + [358] = { 5.5, 14.7, 331, 900 }, + [359] = { 25.9, 14.2, 331, 900 }, + [360] = { 10.3, 12.8, 331, 900 }, + [361] = { 13.7, 11.9, 331, 900 }, + [362] = { 39.9, 95.5, 361, 900 }, + [363] = { 28.6, 69, 361, 900 }, + [364] = { 28.6, 66.2, 361, 900 }, + [365] = { 29.7, 34, 361, 900 }, + [366] = { 29.6, 30.7, 361, 900 }, + [367] = { 80.8, 90.2, 400, 900 }, + [368] = { 47.5, 58.6, 400, 900 }, + [369] = { 57.6, 57.4, 400, 900 }, + [370] = { 38.2, 55.3, 400, 900 }, + [371] = { 37.8, 51.2, 400, 900 }, + [372] = { 55.3, 49.3, 400, 900 }, + [373] = { 37, 48.6, 400, 900 }, + [374] = { 62.9, 45.6, 400, 900 }, + [375] = { 54.1, 44.5, 400, 900 }, + [376] = { 41.3, 41.9, 400, 900 }, + [377] = { 43.8, 39.8, 400, 900 }, + [378] = { 24.6, 29.1, 400, 900 }, + [379] = { 21.4, 26.1, 400, 900 }, + [380] = { 14.6, 25.5, 400, 900 }, + [381] = { 86.5, 17.5, 405, 900 }, + [382] = { 87.3, 17.4, 405, 900 }, + [383] = { 59.9, 87.6, 406, 900 }, + [384] = { 60.5, 87.6, 406, 900 }, + [385] = { 70.5, 84, 406, 900 }, + [386] = { 76.8, 81.7, 406, 900 }, + [387] = { 72.4, 71.5, 406, 900 }, + [388] = { 71.1, 67.5, 406, 900 }, + [389] = { 75.3, 67.5, 406, 900 }, + [390] = { 76.6, 63.1, 406, 900 }, + [391] = { 70.5, 62.7, 406, 900 }, + [392] = { 71, 61, 406, 900 }, + [393] = { 34.3, 57.1, 406, 900 }, + [394] = { 36.3, 56.4, 406, 900 }, + [395] = { 42.6, 56.2, 406, 900 }, + [396] = { 40.7, 55.4, 406, 900 }, + [397] = { 70.3, 55.1, 406, 900 }, + [398] = { 31.8, 54.7, 406, 900 }, + [399] = { 34.4, 50.5, 406, 900 }, + [400] = { 31.9, 48.9, 406, 900 }, + [401] = { 55.7, 47.2, 406, 900 }, + [402] = { 38.5, 46.3, 406, 900 }, + [403] = { 87, 43.1, 406, 900 }, + [404] = { 37.8, 42.8, 406, 900 }, + [405] = { 54.6, 42.2, 406, 900 }, + [406] = { 40.4, 41.8, 406, 900 }, + [407] = { 30.1, 38.8, 406, 900 }, + [408] = { 40.5, 38.1, 406, 900 }, + [409] = { 43.5, 37, 406, 300 }, + [410] = { 22.8, 36.8, 406, 900 }, + [411] = { 46.8, 36.7, 406, 900 }, + [412] = { 31.9, 36.4, 406, 900 }, + [413] = { 66.9, 36, 406, 900 }, + [414] = { 45.2, 34.5, 406, 900 }, + [415] = { 44.9, 33.8, 406, 900 }, + [416] = { 29.7, 33, 406, 900 }, + [417] = { 44.3, 27.5, 406, 900 }, + [418] = { 27.8, 27.5, 406, 900 }, + [419] = { 36.3, 22.8, 406, 900 }, + [420] = { 25.5, 22.8, 406, 900 }, + [421] = { 44.7, 20.4, 406, 900 }, + [422] = { 45.6, 18.7, 406, 900 }, + [423] = { 77.9, 42.9, 718, 604800 }, + [424] = { 94.4, 38.8, 718, 604800 }, + [425] = { 63.8, 31.5, 718, 604800 }, + [426] = { 35.9, 36.4, 719, 604800 }, + [427] = { 44.6, 72.3, 1337, 900 }, + [428] = { 44.3, 64, 1337, 900 }, + [429] = { 12, 38.4, 1337, 900 }, + [430] = { 29.3, 89.8, 1581, 900 }, + [431] = { 69.9, 82.5, 1581, 900 }, + [432] = { 49.1, 69.4, 1581, 900 }, + [433] = { 67.6, 62, 1581, 900 }, + [434] = { 51.5, 61.4, 1581, 900 }, + [435] = { 64.4, 57.3, 1581, 900 }, + [436] = { 98.7, 51, 1581, 900 }, + [437] = { 71.9, 48.6, 1581, 900 }, + [438] = { 68, 43.5, 1581, 900 }, + [439] = { 36.1, 26.6, 1581, 900 }, + [440] = { 25.7, 62.4, 5138, 86400 }, + [441] = { 18.5, 37.9, 5138, 604800 }, + [442] = { 87.9, 26.3, 5179, 900 }, + [443] = { 86.4, 19.9, 5179, 900 }, + [444] = { 84.2, 13.2, 5179, 900 }, + [445] = { 64.3, 9.7, 5179, 900 }, + [446] = { 62.6, 3.6, 5179, 900 }, + [447] = { 17.2, 92.7, 5602, 900 }, + [448] = { 17.2, 91.8, 5602, 900 }, + [449] = { 13.8, 89.1, 5602, 900 }, + [450] = { 12.4, 88.1, 5602, 900 }, + [451] = { 34.8, 83, 5602, 900 }, + [452] = { 13.5, 81.4, 5602, 900 }, + [453] = { 31, 80.9, 5602, 900 }, + [454] = { 33.6, 79.1, 5602, 900 }, + [455] = { 34.4, 76.7, 5602, 900 }, + [456] = { 34, 76.3, 5602, 900 }, + [457] = { 12.6, 74.5, 5602, 900 }, + [458] = { 38.9, 68.2, 5602, 900 }, + [459] = { 33.9, 68.1, 5602, 900 }, + [460] = { 10.2, 60.4, 5602, 900 }, + [461] = { 35.5, 58.6, 5602, 900 }, + [462] = { 38.6, 58.2, 5602, 900 }, + [463] = { 37.2, 56.8, 5602, 900 }, + [464] = { 35, 54.3, 5602, 900 }, + [465] = { 33.4, 53.7, 5602, 900 }, + [466] = { 39, 52.6, 5602, 900 }, + [467] = { 36.8, 52.3, 5602, 900 }, + [468] = { 37.9, 51.2, 5602, 900 }, + [469] = { 16, 40.5, 5602, 900 }, + [470] = { 14.5, 39.9, 5602, 900 }, + [471] = { 15, 39.5, 5602, 900 }, + [472] = { 10.2, 38.6, 5602, 900 }, + [473] = { 9.8, 37.5, 5602, 900 }, + [474] = { 19.9, 36.4, 5602, 900 }, + [475] = { 20.5, 35.4, 5602, 900 }, + [476] = { 20.9, 32.4, 5602, 900 }, + [477] = { 19.9, 30, 5602, 900 }, + [478] = { 4, 29, 5602, 900 }, + [479] = { 6.1, 27.4, 5602, 900 }, + [480] = { 9.5, 27.1, 5602, 900 }, + [481] = { 7.6, 26, 5602, 900 }, + [482] = { 8, 25.9, 5602, 900 }, + [483] = { 6.5, 25.8, 5602, 900 }, + [484] = { 20, 25.6, 5602, 900 }, + [485] = { 6, 25.3, 5602, 900 }, + [486] = { 5.2, 25, 5602, 900 }, + [487] = { 20.2, 24.3, 5602, 900 }, + [488] = { 7.6, 23.8, 5602, 900 }, + [489] = { 20.4, 22.7, 5602, 900 }, + [490] = { 20.8, 22, 5602, 900 }, + [491] = { 20.8, 20.7, 5602, 900 }, + [492] = { 21.7, 19.1, 5602, 900 }, + [493] = { 3.6, 15.7, 5602, 900 }, + [494] = { 8.5, 14.6, 5602, 900 }, + [495] = { 6.1, 13.4, 5602, 900 }, + [496] = { 22.9, 13.2, 5602, 900 }, + [497] = { 21, 11.9, 5602, 900 }, + [498] = { 20.9, 7.8, 5602, 900 }, + [499] = { 22.3, 6.7, 5602, 900 }, + [500] = { 21.6, 6.1, 5602, 900 }, + [501] = { 19.7, 4.2, 5602, 900 }, + [502] = { 19, 3.9, 5602, 900 }, + [503] = { 22.8, 3.5, 5602, 900 }, + [504] = { 19.9, 3.4, 5602, 900 }, + [505] = { 22, 2.8, 5602, 900 }, + [506] = { 18.7, 2.5, 5602, 900 }, + [507] = { 19.8, 2.3, 5602, 900 }, + }, + }, + [1733] = { + ["coords"] = { + [1] = { 23.3, 93, 1, 900 }, + [2] = { 71.1, 77.1, 10, 900 }, + [3] = { 67.8, 72.6, 11, 900 }, + [4] = { 49.9, 63.1, 11, 900 }, + [5] = { 54.1, 57.7, 11, 900 }, + [6] = { 32.9, 48.6, 11, 900 }, + [7] = { 45.1, 42.2, 11, 900 }, + [8] = { 44.5, 41.7, 11, 900 }, + [9] = { 70.2, 30.7, 11, 900 }, + [10] = { 54.2, 50.9, 15, 900 }, + [11] = { 48.5, 48.4, 17, 900 }, + [12] = { 43.8, 27.5, 17, 900 }, + [13] = { 38.4, 12.5, 17, 900 }, + [14] = { 50.1, 28.1, 33, 900 }, + [15] = { 49.2, 9, 33, 900 }, + [16] = { 36.3, 6.9, 33, 900 }, + [17] = { 46.7, 5.7, 33, 900 }, + [18] = { 63.8, 76.4, 36, 900 }, + [19] = { 52.1, 51.8, 36, 900 }, + [20] = { 49.7, 50, 36, 900 }, + [21] = { 54, 49.5, 36, 900 }, + [22] = { 80.2, 73.6, 38, 900 }, + [23] = { 40.1, 78.6, 40, 900 }, + [24] = { 40.5, 78.6, 40, 900 }, + [25] = { 31.9, 60.6, 40, 900 }, + [26] = { 30.7, 59.1, 40, 900 }, + [27] = { 39.4, 41.7, 40, 900 }, + [28] = { 44.9, 19.7, 40, 900 }, + [29] = { 18.7, 33.3, 44, 900 }, + [30] = { 33, 46.3, 45, 900 }, + [31] = { 38.7, 43.1, 45, 900 }, + [32] = { 47.8, 35.7, 45, 900 }, + [33] = { 27.1, 52, 85, 900 }, + [34] = { 62.8, 79.8, 130, 900 }, + [35] = { 56.4, 35.4, 148, 900 }, + [36] = { 46.1, 27.3, 148, 900 }, + [37] = { 38.5, 63.8, 267, 900 }, + [38] = { 7.9, 45.3, 267, 900 }, + [39] = { 64.7, 15.3, 267, 900 }, + [40] = { 66.3, 83.2, 331, 900 }, + [41] = { 83, 80, 331, 900 }, + [42] = { 82.4, 78.7, 331, 900 }, + [43] = { 84.2, 76.3, 331, 900 }, + [44] = { 84.8, 75.8, 331, 900 }, + [45] = { 80.5, 73.8, 331, 900 }, + [46] = { 52, 73.1, 331, 900 }, + [47] = { 84.6, 73, 331, 900 }, + [48] = { 52.3, 72.7, 331, 900 }, + [49] = { 79.2, 72.7, 331, 900 }, + [50] = { 79.7, 70.9, 331, 900 }, + [51] = { 65, 69.7, 331, 900 }, + [52] = { 75.3, 69.6, 331, 900 }, + [53] = { 45.1, 69.6, 331, 900 }, + [54] = { 86.5, 68.2, 331, 900 }, + [55] = { 68.7, 67, 331, 900 }, + [56] = { 71.5, 66.3, 331, 900 }, + [57] = { 69.8, 66.2, 331, 900 }, + [58] = { 48.6, 62.7, 331, 900 }, + [59] = { 80.9, 62.5, 331, 900 }, + [60] = { 78.5, 62.4, 331, 900 }, + [61] = { 62.7, 60.5, 331, 900 }, + [62] = { 78.4, 60.5, 331, 900 }, + [63] = { 69, 58.4, 331, 900 }, + [64] = { 70.6, 58.2, 331, 900 }, + [65] = { 23.2, 55.4, 331, 900 }, + [66] = { 25.2, 54.1, 331, 900 }, + [67] = { 70.4, 53.8, 331, 900 }, + [68] = { 71.3, 53.1, 331, 900 }, + [69] = { 74.2, 52.5, 331, 900 }, + [70] = { 47.4, 52.2, 331, 900 }, + [71] = { 75.4, 48.9, 331, 900 }, + [72] = { 47, 45.7, 331, 900 }, + [73] = { 50.8, 44.3, 331, 900 }, + [74] = { 22.7, 44, 331, 900 }, + [75] = { 22.1, 42, 331, 900 }, + [76] = { 40.1, 40.8, 331, 900 }, + [77] = { 40.2, 37.9, 331, 900 }, + [78] = { 40.1, 37.4, 331, 900 }, + [79] = { 40.1, 36.6, 331, 900 }, + [80] = { 40.5, 36.1, 331, 900 }, + [81] = { 21.7, 35.4, 331, 900 }, + [82] = { 24.4, 34.7, 331, 900 }, + [83] = { 24.9, 33.8, 331, 900 }, + [84] = { 21.8, 33.6, 331, 900 }, + [85] = { 59.3, 33.6, 331, 900 }, + [86] = { 29, 33.5, 331, 900 }, + [87] = { 33.6, 27.9, 331, 900 }, + [88] = { 24.7, 72.7, 357, 900 }, + [89] = { 93.2, 44, 357, 900 }, + [90] = { 58.5, 97.8, 361, 900 }, + [91] = { 41.6, 9, 361, 900 }, + [92] = { 62.9, 60.8, 400, 900 }, + [93] = { 20.7, 37.8, 400, 900 }, + [94] = { 13.7, 15, 400, 900 }, + [95] = { 40.3, 74.1, 406, 900 }, + [96] = { 71.2, 62.9, 406, 900 }, + [97] = { 80.6, 35.9, 406, 900 }, + [98] = { 26.9, 31.8, 406, 900 }, + [99] = { 59.6, 22.4, 406, 900 }, + [100] = { 61.5, 21.2, 406, 900 }, + [101] = { 27.1, 69.7, 408, 900 }, + [102] = { 6.8, 30.3, 719, 604800 }, + [103] = { 39.7, 60, 1581, 900 }, + [104] = { 43.1, 59.9, 1581, 900 }, + [105] = { 93.3, 24.7, 5179, 900 }, + [106] = { 66.5, 8.5, 5179, 900 }, + [107] = { 32.1, 75.3, 5561, 900 }, + [108] = { 50.4, 44.8, 5561, 900 }, + [109] = { 73.8, 85, 5581, 900 }, + [110] = { 75.2, 72.7, 5581, 900 }, + [111] = { 29.2, 47.2, 5581, 900 }, + [112] = { 70.1, 40.6, 5581, 900 }, + [113] = { 69.9, 30.2, 5581, 900 }, + [114] = { 49.5, 27.9, 5581, 900 }, + [115] = { 26.5, 66.9, 5601, 604800 }, + [116] = { 50.6, 84, 5602, 900 }, + [117] = { 39.6, 82, 5602, 900 }, + [118] = { 63.3, 68.8, 5602, 900 }, + [119] = { 44.9, 48.5, 5602, 900 }, + [120] = { 20.8, 34.7, 5602, 900 }, + [121] = { 48.9, 31.6, 5602, 900 }, + [122] = { 7.1, 27.4, 5602, 900 }, + [123] = { 10.3, 23.3, 5602, 900 }, + [124] = { 53.9, 16.6, 5602, 900 }, + [125] = { 53, 11.7, 5602, 900 }, + [126] = { 3.4, 11.4, 5602, 900 }, + [127] = { 3, 11, 5602, 900 }, + [128] = { 22.7, 2.5, 5602, 900 }, + }, + }, + [1734] = { + ["coords"] = { + [1] = { 43.5, 74.1, 3, 1800 }, + [2] = { 68.7, 51.1, 3, 1800 }, + [3] = { 27.1, 41.8, 3, 1800 }, + [4] = { 54.3, 32, 3, 1800 }, + [5] = { 49.2, 28.7, 3, 1800 }, + [6] = { 44.1, 17.4, 3, 1800 }, + [7] = { 73.3, 18.1, 4, 1800 }, + [8] = { 70.6, 16, 4, 1800 }, + [9] = { 64.3, 88.2, 8, 1800 }, + [10] = { 17.9, 66.8, 8, 1800 }, + [11] = { 69.6, 60, 8, 1800 }, + [12] = { 11.5, 53.4, 8, 1800 }, + [13] = { 14.8, 34.5, 8, 1800 }, + [14] = { 7.2, 30.4, 8, 1800 }, + [15] = { 64.8, 10, 8, 1800 }, + [16] = { 72.2, 6.9, 8, 1800 }, + [17] = { 62.2, 83, 10, 1800 }, + [18] = { 74.4, 78.9, 10, 1800 }, + [19] = { 71.9, 75.7, 10, 1800 }, + [20] = { 59.4, 42.7, 10, 1800 }, + [21] = { 44.1, 45.9, 11, 1800 }, + [22] = { 71.1, 31, 11, 1800 }, + [23] = { 69.5, 29.6, 11, 1800 }, + [24] = { 49.3, 70.3, 14, 1800 }, + [25] = { 30.9, 65.8, 15, 1800 }, + [26] = { 55.8, 19.5, 15, 1800 }, + [27] = { 47.3, 98.2, 17, 1800 }, + [28] = { 47.8, 97.1, 17, 1800 }, + [29] = { 46.8, 96, 17, 1800 }, + [30] = { 41.1, 94.6, 17, 1800 }, + [31] = { 41.5, 93.5, 17, 1800 }, + [32] = { 39.7, 93.1, 17, 1800 }, + [33] = { 41.3, 93.1, 17, 1800 }, + [34] = { 40.5, 92.2, 17, 1800 }, + [35] = { 51.5, 88.1, 17, 1800 }, + [36] = { 39.8, 82.1, 33, 1800 }, + [37] = { 26.3, 81.9, 33, 1800 }, + [38] = { 38.6, 80.9, 33, 1800 }, + [39] = { 31.5, 78.3, 33, 1800 }, + [40] = { 33, 72, 33, 1800 }, + [41] = { 29.4, 70.2, 33, 1800 }, + [42] = { 29.2, 69.5, 33, 1800 }, + [43] = { 33.5, 67.8, 33, 1800 }, + [44] = { 28.3, 67.7, 33, 1800 }, + [45] = { 27.1, 67, 33, 1800 }, + [46] = { 34.8, 66.6, 33, 1800 }, + [47] = { 34.7, 65.8, 33, 1800 }, + [48] = { 26.1, 63.4, 33, 1800 }, + [49] = { 32.5, 62.1, 33, 1800 }, + [50] = { 35.1, 60.9, 33, 1800 }, + [51] = { 35.2, 60.2, 33, 1800 }, + [52] = { 24.9, 54.9, 33, 1800 }, + [53] = { 39.4, 53.2, 33, 1800 }, + [54] = { 41.7, 50.9, 33, 1800 }, + [55] = { 44.1, 48, 33, 1800 }, + [56] = { 42.2, 46.6, 33, 1800 }, + [57] = { 43.5, 46.4, 33, 1800 }, + [58] = { 42.1, 46.3, 33, 1800 }, + [59] = { 40.4, 45.4, 33, 1800 }, + [60] = { 44.4, 45, 33, 1800 }, + [61] = { 45.9, 43.9, 33, 1800 }, + [62] = { 42.2, 43.1, 33, 1800 }, + [63] = { 42.4, 41.7, 33, 1800 }, + [64] = { 45, 38.5, 33, 1800 }, + [65] = { 51.5, 28.7, 33, 1800 }, + [66] = { 48.2, 26.9, 33, 1800 }, + [67] = { 51.6, 26.7, 33, 1800 }, + [68] = { 44.7, 26.5, 33, 1800 }, + [69] = { 48.1, 24.5, 33, 1800 }, + [70] = { 48.6, 21.4, 33, 1800 }, + [71] = { 32, 17.7, 33, 1800 }, + [72] = { 26.9, 14.3, 33, 1800 }, + [73] = { 31.7, 13, 33, 1800 }, + [74] = { 32, 10.9, 33, 1800 }, + [75] = { 40.7, 9.5, 33, 1800 }, + [76] = { 48.2, 8.3, 33, 1800 }, + [77] = { 49.9, 7.9, 33, 1800 }, + [78] = { 47.3, 7.8, 33, 1800 }, + [79] = { 46.5, 7.6, 33, 1800 }, + [80] = { 30.5, 7.6, 33, 1800 }, + [81] = { 49.5, 7.5, 33, 1800 }, + [82] = { 30.5, 6, 33, 1800 }, + [83] = { 47.7, 5.5, 33, 1800 }, + [84] = { 40.5, 94.4, 36, 1800 }, + [85] = { 40.6, 90.4, 36, 1800 }, + [86] = { 78.4, 86.7, 40, 1800 }, + [87] = { 63.3, 73.9, 45, 1800 }, + [88] = { 50.3, 47.9, 45, 1800 }, + [89] = { 5.1, 67.3, 47, 1800 }, + [90] = { 57.5, 44.5, 47, 1800 }, + [91] = { 64.2, 36.6, 47, 1800 }, + [92] = { 17.4, 58.3, 51, 1800 }, + [93] = { 44.3, 31, 267, 1800 }, + [94] = { 88.7, 31, 267, 1800 }, + [95] = { 44.4, 27.6, 267, 1800 }, + [96] = { 72.5, 57, 331, 1800 }, + [97] = { 77.2, 52.3, 331, 1800 }, + [98] = { 74.7, 94, 400, 1800 }, + [99] = { 76.2, 94, 400, 1800 }, + [100] = { 69.9, 92.1, 400, 1800 }, + [101] = { 89.6, 77.2, 400, 1800 }, + [102] = { 89.2, 74.4, 400, 1800 }, + [103] = { 79.1, 62.4, 400, 1800 }, + [104] = { 79.9, 60.9, 400, 1800 }, + [105] = { 35.1, 55.6, 400, 1800 }, + [106] = { 35.8, 53.8, 400, 1800 }, + [107] = { 35.5, 52, 400, 1800 }, + [108] = { 67.7, 51.9, 400, 1800 }, + [109] = { 59.4, 49.3, 400, 1800 }, + [110] = { 66.4, 49.2, 400, 1800 }, + [111] = { 56.2, 47.8, 400, 1800 }, + [112] = { 53.6, 46.6, 400, 1800 }, + [113] = { 64.4, 46.3, 400, 1800 }, + [114] = { 54.4, 44.6, 400, 1800 }, + [115] = { 29.8, 44.1, 400, 1800 }, + [116] = { 21.6, 42.8, 400, 1800 }, + [117] = { 24, 42.5, 400, 1800 }, + [118] = { 22.7, 41.1, 400, 1800 }, + [119] = { 19.7, 40.5, 400, 1800 }, + [120] = { 31.9, 39.9, 400, 1800 }, + [121] = { 39.5, 35.9, 400, 1800 }, + [122] = { 19.2, 34.3, 400, 1800 }, + [123] = { 20.5, 33.8, 400, 1800 }, + [124] = { 40.5, 33.4, 400, 1800 }, + [125] = { 15.7, 32.6, 400, 1800 }, + [126] = { 38.4, 30.9, 400, 1800 }, + [127] = { 25.3, 27.7, 400, 1800 }, + [128] = { 26.1, 25.1, 400, 1800 }, + [129] = { 22.1, 24.3, 400, 1800 }, + [130] = { 25.6, 24.1, 400, 1800 }, + [131] = { 23.8, 22.2, 400, 1800 }, + [132] = { 58.2, 74.6, 405, 1800 }, + [133] = { 53, 24.2, 405, 1800 }, + [134] = { 61.5, 0.5, 405, 1800 }, + [135] = { 41.2, 74.9, 406, 1800 }, + [136] = { 37.5, 74.7, 406, 1800 }, + [137] = { 40.1, 73.7, 406, 1800 }, + [138] = { 34.8, 72.4, 406, 1800 }, + [139] = { 33.8, 68.2, 406, 1800 }, + [140] = { 43.3, 68.2, 406, 1800 }, + [141] = { 35.6, 66.7, 406, 1800 }, + [142] = { 37.1, 65.7, 406, 1800 }, + [143] = { 41.6, 64.9, 406, 1800 }, + [144] = { 34.6, 63.7, 406, 1800 }, + [145] = { 42.2, 62.8, 406, 1800 }, + [146] = { 35.4, 62, 406, 1800 }, + [147] = { 41.4, 49.8, 406, 1800 }, + [148] = { 31.5, 80.1, 440, 1800 }, + [149] = { 48.2, 79.9, 440, 1800 }, + [150] = { 33, 79.7, 440, 1800 }, + [151] = { 29.1, 79.6, 440, 1800 }, + [152] = { 51.2, 79.4, 440, 1800 }, + [153] = { 52.6, 78.9, 440, 1800 }, + [154] = { 47.4, 78.9, 440, 1800 }, + [155] = { 38.3, 78.3, 440, 1800 }, + [156] = { 43.3, 78, 440, 1800 }, + [157] = { 34.7, 78, 440, 1800 }, + [158] = { 45.7, 77.5, 440, 1800 }, + [159] = { 55.9, 77.2, 440, 1800 }, + [160] = { 54.8, 77.1, 440, 1800 }, + [161] = { 41.3, 76.5, 440, 1800 }, + [162] = { 44.4, 76.5, 440, 1800 }, + [163] = { 55.6, 72.9, 440, 1800 }, + [164] = { 58.8, 72.7, 440, 1800 }, + [165] = { 26.8, 71.8, 440, 1800 }, + [166] = { 27.2, 70.6, 440, 1800 }, + [167] = { 27.2, 69.9, 440, 1800 }, + [168] = { 28.7, 69.8, 440, 1800 }, + [169] = { 53.3, 69.1, 440, 1800 }, + [170] = { 31.4, 67.1, 440, 1800 }, + [171] = { 30.9, 66.7, 440, 1800 }, + [172] = { 29.9, 65.3, 440, 1800 }, + [173] = { 29.4, 65.2, 440, 1800 }, + [174] = { 32.4, 65.2, 440, 1800 }, + [175] = { 60.3, 62.5, 440, 1800 }, + [176] = { 62.5, 56.8, 440, 1800 }, + [177] = { 27.2, 55.6, 440, 1800 }, + [178] = { 68.8, 54.9, 440, 1800 }, + [179] = { 27.7, 54.2, 440, 1800 }, + [180] = { 61.9, 53.6, 440, 1800 }, + [181] = { 71.3, 52.6, 440, 1800 }, + [182] = { 70.3, 52, 440, 1800 }, + [183] = { 70.2, 50.8, 440, 1800 }, + [184] = { 71.8, 48.5, 440, 1800 }, + [185] = { 37.4, 45.8, 440, 1800 }, + [186] = { 34.7, 42.4, 440, 1800 }, + [187] = { 37.9, 41.3, 440, 1800 }, + [188] = { 61.6, 41.1, 440, 1800 }, + [189] = { 57.6, 37.5, 440, 1800 }, + [190] = { 57.8, 36, 440, 1800 }, + [191] = { 63.8, 35.9, 440, 1800 }, + [192] = { 36.6, 33.7, 440, 1800 }, + [193] = { 62.4, 32.1, 440, 1800 }, + [194] = { 62.1, 31.2, 440, 1800 }, + [195] = { 34.2, 30.8, 440, 1800 }, + [196] = { 34.3, 29.8, 440, 1800 }, + [197] = { 37, 27.5, 440, 1800 }, + [198] = { 38.5, 27.2, 440, 1800 }, + [199] = { 34.3, 26.8, 440, 1800 }, + [200] = { 37.9, 26.7, 440, 1800 }, + [201] = { 57.7, 23.3, 440, 1800 }, + [202] = { 44.5, 22.8, 440, 1800 }, + [203] = { 37.6, 21, 440, 1800 }, + [204] = { 36.3, 20.1, 440, 1800 }, + [205] = { 50.7, 18.5, 440, 1800 }, + [206] = { 84.1, 53.8, 490, 1800 }, + [207] = { 84.3, 51.8, 490, 1800 }, + [208] = { 84.2, 46.2, 490, 1800 }, + [209] = { 46.8, 35.4, 491, 604800 }, + [210] = { 31.8, 47.6, 618, 1800 }, + [211] = { 31.8, 38.6, 618, 1800 }, + [212] = { 37.7, 38.1, 618, 1800 }, + [213] = { 41, 35.2, 618, 1800 }, + [214] = { 42.6, 33.3, 618, 1800 }, + [215] = { 76.4, 59.6, 1337, 1800 }, + [216] = { 50.7, 81.9, 1941, 1800 }, + [217] = { 61.9, 52.1, 1941, 1800 }, + [218] = { 94.2, 42.4, 1941, 1800 }, + [219] = { 58.7, 35.9, 1941, 1800 }, + [220] = { 36.4, 96.2, 2100, 604800 }, + [221] = { 41.6, 43.1, 2100, 604800 }, + [222] = { 52.5, 95.8, 2597, 1800 }, + [223] = { 50.4, 92.7, 2597, 1800 }, + [224] = { 41.4, 38.8, 2597, 1800 }, + [225] = { 40.1, 35.3, 2597, 1800 }, + [226] = { 37.5, 74.3, 5179, 1800 }, + [227] = { 32.1, 66.3, 5179, 1800 }, + [228] = { 54, 74.2, 5561, 1800 }, + [229] = { 31.9, 69.1, 5561, 1800 }, + [230] = { 32.2, 55.9, 5561, 1800 }, + [231] = { 30.2, 48.2, 5561, 1800 }, + [232] = { 49.5, 44.1, 5561, 1800 }, + [233] = { 71, 81.9, 5581, 1800 }, + [234] = { 36, 78.2, 5581, 1800 }, + [235] = { 36.5, 72.5, 5581, 1800 }, + [236] = { 67.8, 64.2, 5581, 1800 }, + [237] = { 62.7, 54.9, 5581, 1800 }, + [238] = { 91.6, 29.7, 5581, 1800 }, + [239] = { 28.1, 28.7, 5581, 1800 }, + [240] = { 84.4, 14.4, 5581, 1800 }, + [241] = { 47.9, 85.8, 5601, 604800 }, + [242] = { 38.6, 59.9, 5601, 604800 }, + [243] = { 25.2, 98.1, 5602, 1800 }, + [244] = { 22.8, 96.6, 5602, 1800 }, + [245] = { 20.5, 91.3, 5602, 1800 }, + [246] = { 62.6, 72.5, 5602, 1800 }, + [247] = { 49.6, 65.7, 5602, 1800 }, + [248] = { 61.3, 62.1, 5602, 1800 }, + [249] = { 62.1, 60, 5602, 1800 }, + [250] = { 60.9, 59.5, 5602, 1800 }, + [251] = { 60.5, 42.5, 5602, 1800 }, + [252] = { 42.8, 41, 5602, 1800 }, + [253] = { 54.3, 25.8, 5602, 1800 }, + [254] = { 56.3, 23, 5602, 1800 }, + [255] = { 2.6, 14.2, 5602, 1800 }, + [256] = { 47, 8.9, 5602, 1800 }, + [257] = { 23.4, 2.7, 5602, 1800 }, + [258] = { 22.1, 1.6, 5602, 1800 }, + }, + }, + [1735] = { + ["coords"] = { + [1] = { 28.1, 92.7, 1, 1800 }, + [2] = { 24.3, 92.6, 1, 1800 }, + [3] = { 30.1, 91.2, 1, 1800 }, + [4] = { 33.3, 88.1, 1, 1800 }, + [5] = { 15.5, 92.1, 3, 1800 }, + [6] = { 8.9, 90.2, 3, 1800 }, + [7] = { 10, 88.8, 3, 1800 }, + [8] = { 7.3, 87, 3, 1800 }, + [9] = { 45.8, 85.9, 3, 1800 }, + [10] = { 18.6, 82.9, 3, 1800 }, + [11] = { 22.1, 82, 3, 1800 }, + [12] = { 57.2, 80.4, 3, 1800 }, + [13] = { 43.1, 78.7, 3, 1800 }, + [14] = { 26.1, 77.8, 3, 1800 }, + [15] = { 51, 77.6, 3, 1800 }, + [16] = { 38.4, 76.1, 3, 1800 }, + [17] = { 27.3, 75.9, 3, 1800 }, + [18] = { 56.9, 75.9, 3, 1800 }, + [19] = { 55.5, 74.1, 3, 1800 }, + [20] = { 61.6, 73.7, 3, 1800 }, + [21] = { 63.2, 73.6, 3, 1800 }, + [22] = { 22.6, 73.2, 3, 1800 }, + [23] = { 65.6, 71.7, 3, 1800 }, + [24] = { 24.6, 71.7, 3, 1800 }, + [25] = { 64.8, 71.3, 3, 1800 }, + [26] = { 21.1, 70.5, 3, 1800 }, + [27] = { 63, 70.3, 3, 1800 }, + [28] = { 18, 70.3, 3, 1800 }, + [29] = { 43.5, 68.6, 3, 1800 }, + [30] = { 47.1, 68.3, 3, 1800 }, + [31] = { 26.8, 66.9, 3, 1800 }, + [32] = { 48.8, 66.5, 3, 1800 }, + [33] = { 20.1, 64.5, 3, 1800 }, + [34] = { 19.2, 64, 3, 1800 }, + [35] = { 25.3, 63.1, 3, 1800 }, + [36] = { 67.5, 62.6, 3, 1800 }, + [37] = { 22.5, 62, 3, 1800 }, + [38] = { 20.2, 61.4, 3, 1800 }, + [39] = { 23.5, 61.3, 3, 1800 }, + [40] = { 14.7, 61.2, 3, 1800 }, + [41] = { 20.7, 60.7, 3, 1800 }, + [42] = { 28.7, 60.5, 3, 1800 }, + [43] = { 48.6, 59.4, 3, 1800 }, + [44] = { 42.5, 59.1, 3, 1800 }, + [45] = { 12.9, 58.9, 3, 1800 }, + [46] = { 10.9, 58.5, 3, 1800 }, + [47] = { 13.4, 58.2, 3, 1800 }, + [48] = { 8.6, 57.9, 3, 1800 }, + [49] = { 47.6, 56.7, 3, 1800 }, + [50] = { 10.8, 55.4, 3, 1800 }, + [51] = { 45.8, 54.7, 3, 1800 }, + [52] = { 15, 54.5, 3, 1800 }, + [53] = { 35.7, 54.2, 3, 1800 }, + [54] = { 46.3, 53.5, 3, 1800 }, + [55] = { 30.8, 53.2, 3, 1800 }, + [56] = { 5.9, 52.7, 3, 1800 }, + [57] = { 34.3, 51.9, 3, 1800 }, + [58] = { 40.7, 51.5, 3, 1800 }, + [59] = { 43, 51.3, 3, 1800 }, + [60] = { 44.4, 49.4, 3, 1800 }, + [61] = { 14.8, 48.6, 3, 1800 }, + [62] = { 37.7, 48.6, 3, 1800 }, + [63] = { 45.3, 47.7, 3, 1800 }, + [64] = { 52.1, 46.2, 3, 1800 }, + [65] = { 58.8, 45.9, 3, 1800 }, + [66] = { 59.6, 45.1, 3, 1800 }, + [67] = { 67.9, 44.6, 3, 1800 }, + [68] = { 65.8, 44.3, 3, 1800 }, + [69] = { 32.3, 44.1, 3, 1800 }, + [70] = { 65.4, 43.2, 3, 1800 }, + [71] = { 55.4, 42.8, 3, 1800 }, + [72] = { 52.7, 40.9, 3, 1800 }, + [73] = { 27, 36.3, 3, 1800 }, + [74] = { 15.5, 35.5, 3, 1800 }, + [75] = { 16.3, 34.6, 3, 1800 }, + [76] = { 54.6, 34.2, 3, 1800 }, + [77] = { 32.9, 34, 3, 1800 }, + [78] = { 52.4, 30.8, 3, 1800 }, + [79] = { 46, 24.3, 3, 1800 }, + [80] = { 61.7, 22, 3, 1800 }, + [81] = { 56.2, 20.8, 3, 1800 }, + [82] = { 47, 17.9, 3, 1800 }, + [83] = { 38.6, 17.9, 3, 1800 }, + [84] = { 50.5, 17.8, 3, 1800 }, + [85] = { 62.2, 17.1, 3, 1800 }, + [86] = { 40.2, 14, 3, 1800 }, + [87] = { 52, 13.8, 3, 1800 }, + [88] = { 55.3, 13.3, 3, 1800 }, + [89] = { 40.9, 12.3, 3, 1800 }, + [90] = { 38.7, 11.7, 3, 1800 }, + [91] = { 73.6, 17.2, 4, 1800 }, + [92] = { 74.2, 14.3, 4, 1800 }, + [93] = { 71.9, 14.2, 4, 1800 }, + [94] = { 73.4, 12.6, 4, 1800 }, + [95] = { 64.7, 87, 8, 1800 }, + [96] = { 67.8, 86.4, 8, 1800 }, + [97] = { 66.5, 86.3, 8, 1800 }, + [98] = { 65.6, 82.7, 8, 1800 }, + [99] = { 62.2, 82.6, 8, 1800 }, + [100] = { 66.7, 80.3, 8, 1800 }, + [101] = { 64.5, 80.2, 8, 1800 }, + [102] = { 65.8, 79.7, 8, 1800 }, + [103] = { 66.1, 77.5, 8, 1800 }, + [104] = { 64.5, 73.3, 8, 1800 }, + [105] = { 13.5, 72, 8, 1800 }, + [106] = { 13.8, 71.1, 8, 1800 }, + [107] = { 23.9, 66.6, 8, 1800 }, + [108] = { 55.2, 66.6, 8, 1800 }, + [109] = { 10.5, 65.9, 8, 1800 }, + [110] = { 29.5, 65.8, 8, 1800 }, + [111] = { 18, 65.5, 8, 1800 }, + [112] = { 31.3, 65.3, 8, 1800 }, + [113] = { 25, 65.2, 8, 1800 }, + [114] = { 27.7, 65.2, 8, 1800 }, + [115] = { 30.2, 63.1, 8, 1800 }, + [116] = { 18.4, 62.7, 8, 1800 }, + [117] = { 21.1, 62.2, 8, 1800 }, + [118] = { 17.9, 59.9, 8, 1800 }, + [119] = { 9.6, 59.3, 8, 1800 }, + [120] = { 19.4, 58.1, 8, 1800 }, + [121] = { 17.7, 57.8, 8, 1800 }, + [122] = { 21.5, 57.5, 8, 1800 }, + [123] = { 11.2, 57.3, 8, 1800 }, + [124] = { 20.5, 56.9, 8, 1800 }, + [125] = { 28.7, 43.4, 8, 1800 }, + [126] = { 15.7, 43, 8, 1800 }, + [127] = { 13.3, 40.8, 8, 1800 }, + [128] = { 19.5, 38.1, 8, 1800 }, + [129] = { 8.2, 37, 8, 1800 }, + [130] = { 23, 35.5, 8, 1800 }, + [131] = { 6.8, 32.8, 8, 1800 }, + [132] = { 17.8, 32.8, 8, 1800 }, + [133] = { 5.5, 31.8, 8, 1800 }, + [134] = { 5, 30.9, 8, 1800 }, + [135] = { 13.3, 29.1, 8, 1800 }, + [136] = { 39, 28.1, 8, 1800 }, + [137] = { 49.9, 26.2, 8, 1800 }, + [138] = { 59.1, 20.3, 8, 1800 }, + [139] = { 64.2, 13.7, 8, 1800 }, + [140] = { 66.1, 9, 8, 1800 }, + [141] = { 63.7, 83.6, 10, 1800 }, + [142] = { 37.3, 83.1, 10, 1800 }, + [143] = { 35.9, 81.3, 10, 1800 }, + [144] = { 74, 80, 10, 1800 }, + [145] = { 73.6, 76.8, 10, 1800 }, + [146] = { 32.8, 73.8, 10, 1800 }, + [147] = { 67.5, 71.9, 10, 1800 }, + [148] = { 64.7, 53.4, 10, 1800 }, + [149] = { 63.9, 52.5, 10, 1800 }, + [150] = { 59.8, 40, 10, 1800 }, + [151] = { 77.3, 38.8, 10, 1800 }, + [152] = { 26.7, 37.7, 10, 1800 }, + [153] = { 58.6, 37.7, 10, 1800 }, + [154] = { 25.9, 34, 10, 1800 }, + [155] = { 81.2, 28.7, 10, 1800 }, + [156] = { 94.9, 70.5, 11, 1800 }, + [157] = { 95.4, 64.3, 11, 1800 }, + [158] = { 95.7, 53.8, 11, 1800 }, + [159] = { 53.2, 52.1, 11, 1800 }, + [160] = { 48.8, 50.5, 11, 1800 }, + [161] = { 33.8, 49.3, 11, 1800 }, + [162] = { 38.1, 45.4, 11, 1800 }, + [163] = { 56.9, 44.8, 11, 1800 }, + [164] = { 34.9, 44.5, 11, 1800 }, + [165] = { 41.7, 44.4, 11, 1800 }, + [166] = { 69.7, 33.8, 11, 1800 }, + [167] = { 67.5, 33.3, 11, 1800 }, + [168] = { 68.8, 32.9, 11, 1800 }, + [169] = { 67.7, 31.6, 11, 1800 }, + [170] = { 67.2, 30.4, 11, 1800 }, + [171] = { 66.8, 30.4, 11, 1800 }, + [172] = { 66.8, 30, 11, 1800 }, + [173] = { 71.1, 29.9, 11, 1800 }, + [174] = { 67.3, 28.2, 11, 1800 }, + [175] = { 68.4, 27.7, 11, 1800 }, + [176] = { 67.6, 27.5, 11, 1800 }, + [177] = { 60.6, 21.1, 11, 1800 }, + [178] = { 33, 7.7, 11, 1800 }, + [179] = { 63.8, 81, 15, 1800 }, + [180] = { 65.1, 75.7, 15, 1800 }, + [181] = { 67.8, 75, 15, 1800 }, + [182] = { 33.5, 72.4, 15, 1800 }, + [183] = { 38.6, 67.1, 15, 1800 }, + [184] = { 38.7, 66.1, 15, 1800 }, + [185] = { 31.4, 66, 15, 1800 }, + [186] = { 47.3, 45, 15, 1800 }, + [187] = { 49.1, 39.3, 15, 1800 }, + [188] = { 39.9, 27.3, 15, 1800 }, + [189] = { 48.3, 26.8, 15, 1800 }, + [190] = { 32.5, 23.3, 15, 1800 }, + [191] = { 31.2, 22.6, 15, 1800 }, + [192] = { 33.2, 22.4, 15, 1800 }, + [193] = { 31.1, 21.6, 15, 1800 }, + [194] = { 62.1, 18.1, 15, 1800 }, + [195] = { 37.3, 12.4, 15, 1800 }, + [196] = { 63.3, 6.9, 15, 1800 }, + [197] = { 49.3, 98.4, 17, 1800 }, + [198] = { 48.5, 97.8, 17, 1800 }, + [199] = { 48.9, 97.7, 17, 1800 }, + [200] = { 48.7, 97.6, 17, 1800 }, + [201] = { 49, 97.1, 17, 1800 }, + [202] = { 49, 97, 17, 1800 }, + [203] = { 49, 96.9, 17, 1800 }, + [204] = { 48.9, 96.9, 17, 1800 }, + [205] = { 48.6, 96.1, 17, 1800 }, + [206] = { 42.6, 95.1, 17, 1800 }, + [207] = { 45.8, 94.8, 17, 1800 }, + [208] = { 45.1, 94.7, 17, 1800 }, + [209] = { 43.9, 94.5, 17, 1800 }, + [210] = { 45.6, 94.5, 17, 1800 }, + [211] = { 40.6, 93.2, 17, 1800 }, + [212] = { 40.7, 92.7, 17, 1800 }, + [213] = { 52.9, 91.5, 17, 1800 }, + [214] = { 51.8, 88.2, 17, 1800 }, + [215] = { 52.4, 66, 17, 1800 }, + [216] = { 51.6, 65.7, 17, 1800 }, + [217] = { 52.7, 65.5, 17, 1800 }, + [218] = { 51.6, 65.1, 17, 1800 }, + [219] = { 54.8, 60.4, 17, 1800 }, + [220] = { 68.3, 57.5, 17, 1800 }, + [221] = { 35.3, 96.3, 28, 1800 }, + [222] = { 34.3, 94.6, 28, 1800 }, + [223] = { 41, 94.5, 28, 1800 }, + [224] = { 34.7, 93.7, 28, 1800 }, + [225] = { 41.5, 93.4, 28, 1800 }, + [226] = { 34.6, 91.2, 28, 1800 }, + [227] = { 29.7, 80.8, 28, 1800 }, + [228] = { 29.8, 68.9, 33, 1800 }, + [229] = { 32.8, 68.2, 33, 1800 }, + [230] = { 35.6, 64.3, 33, 1800 }, + [231] = { 36.9, 63.8, 33, 1800 }, + [232] = { 33.6, 62, 33, 1800 }, + [233] = { 35.7, 58.9, 33, 1800 }, + [234] = { 35.1, 56.4, 33, 1800 }, + [235] = { 37, 56.4, 33, 1800 }, + [236] = { 30.2, 52.9, 33, 1800 }, + [237] = { 43.2, 49.4, 33, 1800 }, + [238] = { 42.4, 48.6, 33, 1800 }, + [239] = { 42.4, 46.3, 33, 1800 }, + [240] = { 39.9, 45.6, 33, 1800 }, + [241] = { 41.4, 43.8, 33, 1800 }, + [242] = { 33.1, 42.6, 33, 1800 }, + [243] = { 41.6, 41.4, 33, 1800 }, + [244] = { 28.7, 40.9, 33, 1800 }, + [245] = { 41.9, 37, 33, 1800 }, + [246] = { 51, 36.6, 33, 1800 }, + [247] = { 39.4, 36, 33, 1800 }, + [248] = { 49.8, 33.8, 33, 1800 }, + [249] = { 49.9, 30.4, 33, 1800 }, + [250] = { 47.9, 28.7, 33, 1800 }, + [251] = { 50, 28.4, 33, 1800 }, + [252] = { 51, 26.8, 33, 1800 }, + [253] = { 51.2, 26.4, 33, 1800 }, + [254] = { 44.6, 26, 33, 1800 }, + [255] = { 47.2, 20.3, 33, 1800 }, + [256] = { 30, 17.7, 33, 1800 }, + [257] = { 46.2, 17.1, 33, 1800 }, + [258] = { 29.3, 15.3, 33, 1800 }, + [259] = { 50.6, 14.9, 33, 1800 }, + [260] = { 41.5, 14.3, 33, 1800 }, + [261] = { 31.3, 13.8, 33, 1800 }, + [262] = { 32.1, 12.4, 33, 1800 }, + [263] = { 31.3, 9.5, 33, 1800 }, + [264] = { 46.1, 8.3, 33, 1800 }, + [265] = { 49, 8, 33, 1800 }, + [266] = { 49.7, 7.1, 33, 1800 }, + [267] = { 28.9, 7, 33, 1800 }, + [268] = { 46.9, 5.9, 33, 1800 }, + [269] = { 37.5, 1, 33, 1800 }, + [270] = { 38, 94.4, 36, 1800 }, + [271] = { 39.1, 90.6, 36, 1800 }, + [272] = { 45.7, 89.2, 36, 1800 }, + [273] = { 30.6, 88.8, 36, 1800 }, + [274] = { 29.3, 88.8, 36, 1800 }, + [275] = { 37.2, 88.5, 36, 1800 }, + [276] = { 32.8, 88.5, 36, 1800 }, + [277] = { 36.4, 87.7, 36, 1800 }, + [278] = { 28.5, 87.2, 36, 1800 }, + [279] = { 35.8, 86.9, 36, 1800 }, + [280] = { 28.4, 85.4, 36, 1800 }, + [281] = { 36.8, 82.1, 36, 1800 }, + [282] = { 35.9, 82, 36, 1800 }, + [283] = { 29.7, 81.6, 36, 1800 }, + [284] = { 31.1, 77, 36, 1800 }, + [285] = { 39.9, 74, 36, 1800 }, + [286] = { 41, 72.8, 36, 1800 }, + [287] = { 41.2, 71.7, 36, 1800 }, + [288] = { 37.1, 68, 36, 1800 }, + [289] = { 37.6, 67.2, 36, 1800 }, + [290] = { 44.4, 66.2, 36, 1800 }, + [291] = { 37.5, 65.9, 36, 1800 }, + [292] = { 45.9, 64.3, 36, 1800 }, + [293] = { 46.5, 63.7, 36, 1800 }, + [294] = { 39, 62.9, 36, 1800 }, + [295] = { 37.8, 62.5, 36, 1800 }, + [296] = { 38.7, 62.5, 36, 1800 }, + [297] = { 32.6, 61.3, 36, 1800 }, + [298] = { 35.2, 56.8, 36, 1800 }, + [299] = { 85.3, 56.5, 36, 1800 }, + [300] = { 34.9, 55.3, 36, 1800 }, + [301] = { 33.7, 55.3, 36, 1800 }, + [302] = { 63.4, 55.1, 36, 1800 }, + [303] = { 75.3, 54.6, 36, 1800 }, + [304] = { 33.6, 54, 36, 1800 }, + [305] = { 62.2, 52.4, 36, 1800 }, + [306] = { 41.5, 52.2, 36, 1800 }, + [307] = { 50.4, 51.8, 36, 1800 }, + [308] = { 67, 51.7, 36, 1800 }, + [309] = { 51.5, 51, 36, 1800 }, + [310] = { 53.9, 50.1, 36, 1800 }, + [311] = { 54.5, 49.8, 36, 1800 }, + [312] = { 62.9, 49.5, 36, 1800 }, + [313] = { 43, 49.3, 36, 1800 }, + [314] = { 63.6, 49.3, 36, 1800 }, + [315] = { 59.3, 49.2, 36, 1800 }, + [316] = { 67.4, 47.9, 36, 1800 }, + [317] = { 51.7, 47.9, 36, 1800 }, + [318] = { 53.2, 47.8, 36, 1800 }, + [319] = { 52.5, 47.2, 36, 1800 }, + [320] = { 49.8, 46.7, 36, 1800 }, + [321] = { 34.3, 46.6, 36, 1800 }, + [322] = { 52.9, 46.5, 36, 1800 }, + [323] = { 51, 46.1, 36, 1800 }, + [324] = { 54.2, 45.9, 36, 1800 }, + [325] = { 51.2, 45.8, 36, 1800 }, + [326] = { 52.5, 45.5, 36, 1800 }, + [327] = { 65.8, 45.2, 36, 1800 }, + [328] = { 76.1, 45.1, 36, 1800 }, + [329] = { 52.2, 45.1, 36, 1800 }, + [330] = { 50.5, 45, 36, 1800 }, + [331] = { 49.7, 44.8, 36, 1800 }, + [332] = { 49.2, 44.5, 36, 1800 }, + [333] = { 42.6, 44.3, 36, 1800 }, + [334] = { 66.3, 43.9, 36, 1800 }, + [335] = { 76.8, 43.4, 36, 1800 }, + [336] = { 50.6, 43.1, 36, 1800 }, + [337] = { 52.1, 42.3, 36, 1800 }, + [338] = { 45.9, 41.7, 36, 1800 }, + [339] = { 42.7, 41.3, 36, 1800 }, + [340] = { 45.7, 40.5, 36, 1800 }, + [341] = { 66.2, 40.1, 36, 1800 }, + [342] = { 43.2, 40.1, 36, 1800 }, + [343] = { 44.2, 39.9, 36, 1800 }, + [344] = { 32.9, 39.9, 36, 1800 }, + [345] = { 54, 39.5, 36, 1800 }, + [346] = { 44.8, 39.2, 36, 1800 }, + [347] = { 52.5, 38.2, 36, 1800 }, + [348] = { 42.7, 37.5, 36, 1800 }, + [349] = { 42.7, 34.5, 36, 1800 }, + [350] = { 53.8, 25.3, 36, 1800 }, + [351] = { 41.9, 24.8, 36, 1800 }, + [352] = { 58.7, 24.1, 36, 1800 }, + [353] = { 57.7, 23.3, 36, 1800 }, + [354] = { 43.3, 22.7, 36, 1800 }, + [355] = { 43.8, 21.3, 36, 1800 }, + [356] = { 55.7, 18.8, 36, 1800 }, + [357] = { 53.4, 18.3, 36, 1800 }, + [358] = { 47.2, 15.9, 36, 1800 }, + [359] = { 50.9, 15.7, 36, 1800 }, + [360] = { 43.4, 14.7, 36, 1800 }, + [361] = { 45.7, 14.2, 36, 1800 }, + [362] = { 46.8, 13.6, 36, 1800 }, + [363] = { 38.4, 10.6, 36, 1800 }, + [364] = { 37.9, 92.3, 38, 1800 }, + [365] = { 33.3, 89.2, 38, 1800 }, + [366] = { 39.4, 88.8, 38, 1800 }, + [367] = { 53, 88.2, 38, 1800 }, + [368] = { 40, 87.3, 38, 1800 }, + [369] = { 38, 86.7, 38, 1800 }, + [370] = { 24.7, 92.8, 45, 1800 }, + [371] = { 22.6, 90, 45, 1800 }, + [372] = { 19.2, 83.9, 45, 1800 }, + [373] = { 47.5, 82.9, 45, 1800 }, + [374] = { 67, 82.4, 45, 1800 }, + [375] = { 54.5, 82.1, 45, 1800 }, + [376] = { 68.3, 81.9, 45, 1800 }, + [377] = { 66.6, 81.9, 45, 1800 }, + [378] = { 67.6, 81.7, 45, 1800 }, + [379] = { 69.6, 81.6, 45, 1800 }, + [380] = { 66.1, 81.6, 45, 1800 }, + [381] = { 67.3, 80.9, 45, 1800 }, + [382] = { 66.1, 80.7, 45, 1800 }, + [383] = { 54.2, 80.6, 45, 1800 }, + [384] = { 51.1, 80.5, 45, 1800 }, + [385] = { 53.2, 80.2, 45, 1800 }, + [386] = { 53.6, 79.8, 45, 1800 }, + [387] = { 54.7, 79.5, 45, 1800 }, + [388] = { 69.6, 79.4, 45, 1800 }, + [389] = { 53.9, 79.4, 45, 1800 }, + [390] = { 66.8, 79.2, 45, 1800 }, + [391] = { 67.8, 79, 45, 1800 }, + [392] = { 54.6, 78.9, 45, 1800 }, + [393] = { 42.5, 78.8, 45, 1800 }, + [394] = { 54.3, 78.7, 45, 1800 }, + [395] = { 68.6, 78.7, 45, 1800 }, + [396] = { 54.9, 78.3, 45, 1800 }, + [397] = { 70.3, 78, 45, 1800 }, + [398] = { 54.7, 78, 45, 1800 }, + [399] = { 54.4, 77.9, 45, 1800 }, + [400] = { 54.1, 77.6, 45, 1800 }, + [401] = { 67.6, 77.4, 45, 1800 }, + [402] = { 52.3, 77.4, 45, 1800 }, + [403] = { 51.8, 76.9, 45, 1800 }, + [404] = { 57.1, 76.7, 45, 1800 }, + [405] = { 68.8, 76.6, 45, 1800 }, + [406] = { 50.3, 76.4, 45, 1800 }, + [407] = { 51.5, 75.9, 45, 1800 }, + [408] = { 68.3, 75.8, 45, 1800 }, + [409] = { 54.8, 75, 45, 1800 }, + [410] = { 57.9, 74.8, 45, 1800 }, + [411] = { 66, 74.7, 45, 1800 }, + [412] = { 68.8, 74.7, 45, 1800 }, + [413] = { 69.5, 74.6, 45, 1800 }, + [414] = { 70.5, 74.1, 45, 1800 }, + [415] = { 69.1, 74.1, 45, 1800 }, + [416] = { 67.4, 74.1, 45, 1800 }, + [417] = { 66.7, 73.9, 45, 1800 }, + [418] = { 58.9, 72.7, 45, 1800 }, + [419] = { 56.3, 72.1, 45, 1800 }, + [420] = { 70.9, 71.2, 45, 1800 }, + [421] = { 55.5, 71, 45, 1800 }, + [422] = { 58.1, 71, 45, 1800 }, + [423] = { 69.8, 70.9, 45, 1800 }, + [424] = { 71.4, 70.9, 45, 1800 }, + [425] = { 58.8, 70.9, 45, 1800 }, + [426] = { 53.5, 70.8, 45, 1800 }, + [427] = { 57.2, 70.4, 45, 1800 }, + [428] = { 55, 70.2, 45, 1800 }, + [429] = { 71.5, 70.1, 45, 1800 }, + [430] = { 72, 69.8, 45, 1800 }, + [431] = { 67.4, 69.4, 45, 1800 }, + [432] = { 37.2, 68.8, 45, 1800 }, + [433] = { 71.1, 68.5, 45, 1800 }, + [434] = { 35, 68.1, 45, 1800 }, + [435] = { 37.4, 65.9, 45, 1800 }, + [436] = { 73.9, 65.7, 45, 1800 }, + [437] = { 65.3, 65.7, 45, 1800 }, + [438] = { 33.8, 65, 45, 1800 }, + [439] = { 54.8, 64.6, 45, 1800 }, + [440] = { 73.8, 64, 45, 1800 }, + [441] = { 72.6, 62.7, 45, 1800 }, + [442] = { 34.9, 61.9, 45, 1800 }, + [443] = { 72.6, 61.6, 45, 1800 }, + [444] = { 74, 61.3, 45, 1800 }, + [445] = { 73.3, 59, 45, 1800 }, + [446] = { 70.9, 58.4, 45, 1800 }, + [447] = { 71.6, 57.8, 45, 1800 }, + [448] = { 70.1, 57.2, 45, 1800 }, + [449] = { 6, 54.5, 45, 1800 }, + [450] = { 72.3, 53.3, 45, 1800 }, + [451] = { 70.6, 52.4, 45, 1800 }, + [452] = { 9.3, 52.4, 45, 1800 }, + [453] = { 73, 51.9, 45, 1800 }, + [454] = { 72.2, 50.6, 45, 1800 }, + [455] = { 54.3, 50.4, 45, 1800 }, + [456] = { 72.7, 49.8, 45, 1800 }, + [457] = { 70.8, 49.5, 45, 1800 }, + [458] = { 56.1, 49.4, 45, 1800 }, + [459] = { 57.5, 49.2, 45, 1800 }, + [460] = { 54.4, 48.9, 45, 1800 }, + [461] = { 73, 48.7, 45, 1800 }, + [462] = { 74.2, 48.1, 45, 1800 }, + [463] = { 49.7, 47.8, 45, 1800 }, + [464] = { 74, 47.6, 45, 1800 }, + [465] = { 74.9, 47.5, 45, 1800 }, + [466] = { 35.3, 46.9, 45, 1800 }, + [467] = { 33.9, 46.9, 45, 1800 }, + [468] = { 33.5, 46.4, 45, 1800 }, + [469] = { 33, 46.2, 45, 1800 }, + [470] = { 31.5, 46.2, 45, 1800 }, + [471] = { 75.5, 46.2, 45, 1800 }, + [472] = { 33.8, 45.9, 45, 1800 }, + [473] = { 31.5, 45.8, 45, 1800 }, + [474] = { 36.1, 45.8, 45, 1800 }, + [475] = { 76.8, 45.7, 45, 1800 }, + [476] = { 76, 45.6, 45, 1800 }, + [477] = { 32.6, 45.2, 45, 1800 }, + [478] = { 33.9, 45.1, 45, 1800 }, + [479] = { 31.9, 45, 45, 1800 }, + [480] = { 77, 44.8, 45, 1800 }, + [481] = { 33.1, 44.5, 45, 1800 }, + [482] = { 34, 44.4, 45, 1800 }, + [483] = { 62.2, 44.2, 45, 1800 }, + [484] = { 34.6, 44.1, 45, 1800 }, + [485] = { 31.8, 44.1, 45, 1800 }, + [486] = { 30.1, 44, 45, 1800 }, + [487] = { 77, 43.6, 45, 1800 }, + [488] = { 32.8, 43.3, 45, 1800 }, + [489] = { 12.2, 43.3, 45, 1800 }, + [490] = { 77.5, 43.2, 45, 1800 }, + [491] = { 32.9, 43.2, 45, 1800 }, + [492] = { 79.7, 43, 45, 1800 }, + [493] = { 35.3, 42.8, 45, 1800 }, + [494] = { 33, 42.8, 45, 1800 }, + [495] = { 34.3, 42.2, 45, 1800 }, + [496] = { 34.2, 41.8, 45, 1800 }, + [497] = { 82.7, 38.9, 45, 1800 }, + [498] = { 79.2, 37.2, 45, 1800 }, + [499] = { 24.7, 36.5, 45, 1800 }, + [500] = { 20.1, 36, 45, 1800 }, + [501] = { 50.5, 35.9, 45, 1800 }, + [502] = { 82.9, 35.7, 45, 1800 }, + [503] = { 49.8, 35.5, 45, 1800 }, + [504] = { 37.6, 34.9, 45, 1800 }, + [505] = { 49.7, 34.9, 45, 1800 }, + [506] = { 84, 34.8, 45, 1800 }, + [507] = { 38.2, 33.7, 45, 1800 }, + [508] = { 49.2, 33.6, 45, 1800 }, + [509] = { 19.4, 33.6, 45, 1800 }, + [510] = { 82.8, 33.5, 45, 1800 }, + [511] = { 64.3, 33.4, 45, 1800 }, + [512] = { 85.7, 33.2, 45, 1800 }, + [513] = { 48.2, 33.2, 45, 1800 }, + [514] = { 59.5, 33.2, 45, 1800 }, + [515] = { 83.1, 33, 45, 1800 }, + [516] = { 48.6, 33, 45, 1800 }, + [517] = { 19, 32.9, 45, 1800 }, + [518] = { 46.9, 32.7, 45, 1800 }, + [519] = { 55.2, 32.7, 45, 1800 }, + [520] = { 47.5, 32.2, 45, 1800 }, + [521] = { 25.6, 31.7, 45, 1800 }, + [522] = { 41.7, 31.5, 45, 1800 }, + [523] = { 61.6, 31.4, 45, 1800 }, + [524] = { 84.6, 31.3, 45, 1800 }, + [525] = { 86.5, 31.2, 45, 1800 }, + [526] = { 44.6, 31, 45, 1800 }, + [527] = { 70.8, 30.7, 45, 1800 }, + [528] = { 26.4, 30.2, 45, 1800 }, + [529] = { 70, 29.7, 45, 1800 }, + [530] = { 83.9, 29, 45, 1800 }, + [531] = { 83.8, 28.5, 45, 1800 }, + [532] = { 69.8, 27.9, 45, 1800 }, + [533] = { 84.2, 27.5, 45, 1800 }, + [534] = { 66, 26.9, 45, 1800 }, + [535] = { 39.8, 25.4, 45, 1800 }, + [536] = { 39, 24.6, 45, 1800 }, + [537] = { 38.8, 23.5, 45, 1800 }, + [538] = { 37, 22.9, 45, 1800 }, + [539] = { 39, 22.1, 45, 1800 }, + [540] = { 35.5, 21.8, 45, 1800 }, + [541] = { 34.6, 21.4, 45, 1800 }, + [542] = { 32.7, 21, 45, 1800 }, + [543] = { 33.9, 20.8, 45, 1800 }, + [544] = { 21.6, 18.7, 45, 1800 }, + [545] = { 31.5, 18.7, 45, 1800 }, + [546] = { 27, 18.5, 45, 1800 }, + [547] = { 24.2, 17.7, 45, 1800 }, + [548] = { 31.7, 17.3, 45, 1800 }, + [549] = { 30.2, 16.8, 45, 1800 }, + [550] = { 29.5, 15.6, 45, 1800 }, + [551] = { 29.1, 15.2, 45, 1800 }, + [552] = { 41.9, 14.1, 45, 1800 }, + [553] = { 0.7, 59.8, 46, 1800 }, + [554] = { 3, 33, 46, 1800 }, + [555] = { 4, 30.6, 46, 1800 }, + [556] = { 6.9, 29, 46, 1800 }, + [557] = { 75, 19.8, 46, 1800 }, + [558] = { 60, 89.5, 47, 1800 }, + [559] = { 59.9, 89, 47, 1800 }, + [560] = { 60.3, 88, 47, 1800 }, + [561] = { 20.7, 75.5, 47, 1800 }, + [562] = { 43.5, 70.8, 47, 1800 }, + [563] = { 27.5, 68.9, 47, 1800 }, + [564] = { 25.1, 68.8, 47, 1800 }, + [565] = { 40.2, 67.5, 47, 1800 }, + [566] = { 4.6, 67.3, 47, 1800 }, + [567] = { 41, 66.1, 47, 1800 }, + [568] = { 51.6, 65.8, 47, 1800 }, + [569] = { 52.4, 59.6, 47, 1800 }, + [570] = { 62.5, 59.5, 47, 1800 }, + [571] = { 62.8, 59.3, 47, 1800 }, + [572] = { 31.5, 59, 47, 1800 }, + [573] = { 28, 58.9, 47, 1800 }, + [574] = { 20.8, 58.8, 47, 1800 }, + [575] = { 41.4, 57.3, 47, 1800 }, + [576] = { 59.7, 57, 47, 1800 }, + [577] = { 55.5, 55.7, 47, 1800 }, + [578] = { 38.6, 50.5, 47, 1800 }, + [579] = { 39.1, 49.6, 47, 1800 }, + [580] = { 35.6, 42.3, 47, 1800 }, + [581] = { 86.9, 82.9, 51, 1800 }, + [582] = { 73.2, 82.9, 51, 1800 }, + [583] = { 73.5, 82.4, 51, 1800 }, + [584] = { 73.1, 80.9, 51, 1800 }, + [585] = { 56, 76.4, 51, 1800 }, + [586] = { 67.8, 76.4, 51, 1800 }, + [587] = { 68.1, 75.2, 51, 1800 }, + [588] = { 12.5, 64.3, 51, 1800 }, + [589] = { 16.2, 62.8, 51, 1800 }, + [590] = { 16.1, 62.6, 51, 1800 }, + [591] = { 12.9, 62.4, 51, 1800 }, + [592] = { 13.6, 62, 51, 1800 }, + [593] = { 12.6, 59.9, 51, 1800 }, + [594] = { 18, 59.6, 51, 1800 }, + [595] = { 16.8, 58.1, 51, 1800 }, + [596] = { 64.5, 49.3, 51, 1800 }, + [597] = { 8.6, 44.5, 51, 1800 }, + [598] = { 8.5, 40.3, 51, 1800 }, + [599] = { 10.2, 38.2, 51, 1800 }, + [600] = { 15.1, 35.2, 51, 1800 }, + [601] = { 8.9, 32.9, 51, 1800 }, + [602] = { 64.7, 32.6, 51, 1800 }, + [603] = { 58.2, 31.8, 51, 1800 }, + [604] = { 13.5, 30.5, 51, 1800 }, + [605] = { 3.7, 27.8, 51, 1800 }, + [606] = { 47.5, 91.8, 130, 1800 }, + [607] = { 39.9, 86.4, 130, 1800 }, + [608] = { 39.1, 84.8, 130, 1800 }, + [609] = { 67.2, 86.3, 267, 1800 }, + [610] = { 70.9, 83.9, 267, 1800 }, + [611] = { 67.4, 82.3, 267, 1800 }, + [612] = { 13.5, 79.2, 267, 1800 }, + [613] = { 62.9, 74.8, 267, 1800 }, + [614] = { 74.1, 73.7, 267, 1800 }, + [615] = { 70.4, 66.2, 267, 1800 }, + [616] = { 70.6, 54.8, 267, 1800 }, + [617] = { 84.7, 46, 267, 1800 }, + [618] = { 87.7, 45, 267, 1800 }, + [619] = { 85.4, 41.8, 267, 1800 }, + [620] = { 88.7, 37.7, 267, 1800 }, + [621] = { 88.8, 37.1, 267, 1800 }, + [622] = { 88.6, 35.3, 267, 1800 }, + [623] = { 83.1, 32.1, 267, 1800 }, + [624] = { 42.1, 31.1, 267, 1800 }, + [625] = { 88.1, 30.9, 267, 1800 }, + [626] = { 43.1, 27.7, 267, 1800 }, + [627] = { 48.9, 26.5, 267, 1800 }, + [628] = { 35.6, 26.2, 267, 1800 }, + [629] = { 34.5, 26.2, 267, 1800 }, + [630] = { 41.4, 25.9, 267, 1800 }, + [631] = { 37.5, 25.9, 267, 1800 }, + [632] = { 40.7, 25.2, 267, 1800 }, + [633] = { 33.8, 24.8, 267, 1800 }, + [634] = { 40.2, 24.5, 267, 1800 }, + [635] = { 33.7, 23.2, 267, 1800 }, + [636] = { 41.1, 20.3, 267, 1800 }, + [637] = { 40.3, 20.2, 267, 1800 }, + [638] = { 34.8, 19.8, 267, 1800 }, + [639] = { 36.1, 15.8, 267, 1800 }, + [640] = { 43.8, 13.2, 267, 1800 }, + [641] = { 44.7, 12.1, 267, 1800 }, + [642] = { 44.9, 11.1, 267, 1800 }, + [643] = { 41.3, 8, 267, 1800 }, + [644] = { 41.8, 7.2, 267, 1800 }, + [645] = { 47.7, 6.3, 267, 1800 }, + [646] = { 41.7, 6.1, 267, 1800 }, + [647] = { 49, 4.7, 267, 1800 }, + [648] = { 49.5, 4.2, 267, 1800 }, + [649] = { 43, 3.5, 267, 1800 }, + [650] = { 41.9, 3.1, 267, 1800 }, + [651] = { 42.7, 3.1, 267, 1800 }, + [652] = { 67.7, 85.1, 331, 1800 }, + [653] = { 71.7, 85.1, 331, 1800 }, + [654] = { 71.6, 84.8, 331, 1800 }, + [655] = { 62.9, 84, 331, 1800 }, + [656] = { 72.4, 82.9, 331, 1800 }, + [657] = { 70.5, 81.3, 331, 1800 }, + [658] = { 81.9, 79.8, 331, 1800 }, + [659] = { 65.8, 79.6, 331, 1800 }, + [660] = { 82.9, 78.2, 331, 1800 }, + [661] = { 74.4, 77.8, 331, 1800 }, + [662] = { 83.9, 76.5, 331, 1800 }, + [663] = { 90.3, 76.4, 331, 1800 }, + [664] = { 85, 75.6, 331, 1800 }, + [665] = { 66.1, 75.4, 331, 1800 }, + [666] = { 84.9, 74.1, 331, 1800 }, + [667] = { 64.6, 73.7, 331, 1800 }, + [668] = { 84.5, 72.6, 331, 1800 }, + [669] = { 81.9, 72, 331, 1800 }, + [670] = { 80, 70.5, 331, 1800 }, + [671] = { 85.1, 69.8, 331, 1800 }, + [672] = { 86.8, 69.2, 331, 1800 }, + [673] = { 67.6, 68.5, 331, 1800 }, + [674] = { 68.6, 68.1, 331, 1800 }, + [675] = { 70, 68.1, 331, 1800 }, + [676] = { 79.6, 66.4, 331, 1800 }, + [677] = { 70, 65, 331, 1800 }, + [678] = { 82.2, 64.8, 331, 1800 }, + [679] = { 62.7, 64.7, 331, 1800 }, + [680] = { 66.6, 63.9, 331, 1800 }, + [681] = { 78.9, 63.4, 331, 1800 }, + [682] = { 71.2, 60.6, 331, 1800 }, + [683] = { 79.5, 59.9, 331, 1800 }, + [684] = { 65.1, 59.1, 331, 1800 }, + [685] = { 64.5, 57.4, 331, 1800 }, + [686] = { 74.9, 56.4, 331, 1800 }, + [687] = { 77, 55.4, 331, 1800 }, + [688] = { 73.1, 55.4, 331, 1800 }, + [689] = { 76.9, 53.8, 331, 1800 }, + [690] = { 64.1, 53.7, 331, 1800 }, + [691] = { 70.7, 53.5, 331, 1800 }, + [692] = { 64.9, 50.4, 331, 1800 }, + [693] = { 51.8, 50.2, 331, 1800 }, + [694] = { 51.8, 49.4, 331, 1800 }, + [695] = { 63.1, 48.4, 331, 1800 }, + [696] = { 65.3, 48.1, 331, 1800 }, + [697] = { 64.6, 47.3, 331, 1800 }, + [698] = { 51.8, 46.8, 331, 1800 }, + [699] = { 63.1, 45.4, 331, 1800 }, + [700] = { 60.4, 45.1, 331, 1800 }, + [701] = { 58, 42.2, 331, 1800 }, + [702] = { 55.2, 39.9, 331, 1800 }, + [703] = { 58.3, 31.2, 331, 1800 }, + [704] = { 24.9, 72.9, 357, 1800 }, + [705] = { 53.9, 64.6, 357, 1800 }, + [706] = { 54.6, 63.8, 357, 1800 }, + [707] = { 52.2, 61.3, 357, 1800 }, + [708] = { 54.9, 61, 357, 1800 }, + [709] = { 52.6, 60.3, 357, 1800 }, + [710] = { 55, 60.3, 357, 1800 }, + [711] = { 51.2, 60.2, 357, 1800 }, + [712] = { 53.3, 60, 357, 1800 }, + [713] = { 52.4, 59.4, 357, 1800 }, + [714] = { 54, 59, 357, 1800 }, + [715] = { 52.6, 58.9, 357, 1800 }, + [716] = { 50.7, 58.9, 357, 1800 }, + [717] = { 52, 58.2, 357, 1800 }, + [718] = { 61.4, 58, 357, 1800 }, + [719] = { 52.5, 57.9, 357, 1800 }, + [720] = { 52.7, 57.7, 357, 1800 }, + [721] = { 60.3, 57.5, 357, 1800 }, + [722] = { 52.5, 57.2, 357, 1800 }, + [723] = { 54.1, 55.7, 357, 1800 }, + [724] = { 62.3, 55.6, 357, 1800 }, + [725] = { 53.6, 54.8, 357, 1800 }, + [726] = { 54.2, 50, 357, 1800 }, + [727] = { 92, 49.2, 357, 1800 }, + [728] = { 67.8, 43.7, 357, 1800 }, + [729] = { 92.9, 41.7, 357, 1800 }, + [730] = { 77.9, 40.3, 357, 1800 }, + [731] = { 68.5, 39, 357, 1800 }, + [732] = { 78.2, 36.5, 357, 1800 }, + [733] = { 77.9, 36.2, 357, 1800 }, + [734] = { 77.5, 34.2, 357, 1800 }, + [735] = { 76.5, 33.6, 357, 1800 }, + [736] = { 57.5, 95.4, 361, 1800 }, + [737] = { 70.3, 92, 400, 1800 }, + [738] = { 68.7, 91.9, 400, 1800 }, + [739] = { 71.1, 91.6, 400, 1800 }, + [740] = { 78.7, 90.2, 400, 1800 }, + [741] = { 77.9, 87.5, 400, 1800 }, + [742] = { 77.2, 87.1, 400, 1800 }, + [743] = { 66.3, 84.5, 400, 1800 }, + [744] = { 68.4, 77.9, 400, 1800 }, + [745] = { 80.1, 63.5, 400, 1800 }, + [746] = { 77.7, 62, 400, 1800 }, + [747] = { 66.6, 60.8, 400, 1800 }, + [748] = { 64.5, 60.6, 400, 1800 }, + [749] = { 43.4, 60.6, 400, 1800 }, + [750] = { 43.9, 60.2, 400, 1800 }, + [751] = { 62.1, 59.9, 400, 1800 }, + [752] = { 48.1, 58.7, 400, 1800 }, + [753] = { 40.1, 57.7, 400, 1800 }, + [754] = { 51.2, 56.8, 400, 1800 }, + [755] = { 37.4, 56.4, 400, 1800 }, + [756] = { 26.8, 56.1, 400, 1800 }, + [757] = { 26.4, 55.4, 400, 1800 }, + [758] = { 58.4, 55.3, 400, 1800 }, + [759] = { 26.7, 55.3, 400, 1800 }, + [760] = { 58.6, 55, 400, 1800 }, + [761] = { 46.7, 54.8, 400, 1800 }, + [762] = { 27.3, 54.7, 400, 1800 }, + [763] = { 26, 54.6, 400, 1800 }, + [764] = { 41.8, 54.4, 400, 1800 }, + [765] = { 37, 54.3, 400, 1800 }, + [766] = { 68.7, 54.2, 400, 1800 }, + [767] = { 26.9, 53.8, 400, 1800 }, + [768] = { 55.2, 53.7, 400, 1800 }, + [769] = { 26.3, 53.3, 400, 1800 }, + [770] = { 34.8, 52.9, 400, 1800 }, + [771] = { 26.4, 52.9, 400, 1800 }, + [772] = { 32, 52.6, 400, 1800 }, + [773] = { 27.2, 52.5, 400, 1800 }, + [774] = { 27, 52.1, 400, 1800 }, + [775] = { 65.4, 51.9, 400, 1800 }, + [776] = { 65.8, 51.8, 400, 1800 }, + [777] = { 43.2, 51.7, 400, 1800 }, + [778] = { 67.2, 51.2, 400, 1800 }, + [779] = { 29.8, 51.2, 400, 1800 }, + [780] = { 75.3, 51, 400, 1800 }, + [781] = { 55.1, 50.9, 400, 1800 }, + [782] = { 59.4, 49.7, 400, 1800 }, + [783] = { 32.3, 48.8, 400, 1800 }, + [784] = { 62, 47.8, 400, 1800 }, + [785] = { 52.7, 47.1, 400, 1800 }, + [786] = { 27, 46.6, 400, 1800 }, + [787] = { 32.2, 45.5, 400, 1800 }, + [788] = { 51.6, 43.2, 400, 1800 }, + [789] = { 47.1, 42.2, 400, 1800 }, + [790] = { 27.4, 42, 400, 1800 }, + [791] = { 18, 41.9, 400, 1800 }, + [792] = { 16.6, 40.9, 400, 1800 }, + [793] = { 22.1, 40.9, 400, 1800 }, + [794] = { 15.2, 40.3, 400, 1800 }, + [795] = { 48.9, 40.2, 400, 1800 }, + [796] = { 17.7, 40.1, 400, 1800 }, + [797] = { 19.4, 40.1, 400, 1800 }, + [798] = { 14.9, 39.5, 400, 1800 }, + [799] = { 14, 38.4, 400, 1800 }, + [800] = { 10.5, 38.4, 400, 1800 }, + [801] = { 37.9, 37.3, 400, 1800 }, + [802] = { 11.9, 36.9, 400, 1800 }, + [803] = { 18.2, 36.6, 400, 1800 }, + [804] = { 44.1, 36.4, 400, 1800 }, + [805] = { 9.6, 35.1, 400, 1800 }, + [806] = { 42.2, 35, 400, 1800 }, + [807] = { 43.1, 34.8, 400, 1800 }, + [808] = { 42.8, 34.6, 400, 1800 }, + [809] = { 33.9, 34.6, 400, 1800 }, + [810] = { 15.2, 34.6, 400, 1800 }, + [811] = { 8.9, 34.3, 400, 1800 }, + [812] = { 43.3, 33.4, 400, 1800 }, + [813] = { 9.9, 33.3, 400, 1800 }, + [814] = { 12.2, 33.3, 400, 1800 }, + [815] = { 43.4, 33.1, 400, 1800 }, + [816] = { 43.4, 33, 400, 1800 }, + [817] = { 43.3, 32.9, 400, 1800 }, + [818] = { 11.1, 32.1, 400, 1800 }, + [819] = { 11.9, 31.7, 400, 1800 }, + [820] = { 42.6, 31, 400, 1800 }, + [821] = { 17.2, 31, 400, 1800 }, + [822] = { 21.1, 30.6, 400, 1800 }, + [823] = { 28.6, 28.9, 400, 1800 }, + [824] = { 36.1, 28.1, 400, 1800 }, + [825] = { 34.3, 27.9, 400, 1800 }, + [826] = { 31.6, 27.6, 400, 1800 }, + [827] = { 35.4, 27.5, 400, 1800 }, + [828] = { 14.3, 27.2, 400, 1800 }, + [829] = { 16.7, 26.1, 400, 1800 }, + [830] = { 12.6, 25.3, 400, 1800 }, + [831] = { 23.9, 24.4, 400, 1800 }, + [832] = { 24.2, 23.2, 400, 1800 }, + [833] = { 11.8, 23.2, 400, 1800 }, + [834] = { 13.3, 11.4, 400, 1800 }, + [835] = { 59, 91.2, 405, 1800 }, + [836] = { 61.7, 90.3, 405, 1800 }, + [837] = { 51.1, 90.1, 405, 1800 }, + [838] = { 54, 87.6, 405, 1800 }, + [839] = { 65.9, 84.4, 405, 1800 }, + [840] = { 27.8, 83.8, 405, 1800 }, + [841] = { 54.5, 83.4, 405, 1800 }, + [842] = { 33.4, 83.1, 405, 1800 }, + [843] = { 55.9, 82.7, 405, 1800 }, + [844] = { 64.5, 79, 405, 1800 }, + [845] = { 35.4, 78.3, 405, 1800 }, + [846] = { 45.6, 77.6, 405, 1800 }, + [847] = { 67.8, 77.4, 405, 1800 }, + [848] = { 47.7, 76.6, 405, 1800 }, + [849] = { 41.7, 76.1, 405, 1800 }, + [850] = { 40.9, 73.9, 405, 1800 }, + [851] = { 49.2, 73.2, 405, 1800 }, + [852] = { 42.5, 73.1, 405, 1800 }, + [853] = { 32.1, 71.6, 405, 1800 }, + [854] = { 34.7, 71.5, 405, 1800 }, + [855] = { 29.5, 71.3, 405, 1800 }, + [856] = { 45.3, 68.1, 405, 1800 }, + [857] = { 66.5, 67.7, 405, 1800 }, + [858] = { 29.2, 66, 405, 1800 }, + [859] = { 58.9, 65.6, 405, 1800 }, + [860] = { 49.5, 64.3, 405, 1800 }, + [861] = { 30.6, 64, 405, 1800 }, + [862] = { 32.3, 62.6, 405, 1800 }, + [863] = { 28.6, 62.6, 405, 1800 }, + [864] = { 68, 61.7, 405, 1800 }, + [865] = { 38.2, 60.8, 405, 1800 }, + [866] = { 65.9, 60.7, 405, 1800 }, + [867] = { 30.4, 60.4, 405, 1800 }, + [868] = { 62.4, 60.3, 405, 1800 }, + [869] = { 36.8, 59.4, 405, 1800 }, + [870] = { 67.5, 59.4, 405, 1800 }, + [871] = { 67.4, 57.9, 405, 1800 }, + [872] = { 27.7, 57.5, 405, 1800 }, + [873] = { 29.8, 56.6, 405, 1800 }, + [874] = { 35.4, 56.5, 405, 1800 }, + [875] = { 68.3, 56.5, 405, 1800 }, + [876] = { 40.2, 55.5, 405, 1800 }, + [877] = { 69.3, 55.2, 405, 1800 }, + [878] = { 35.5, 55.2, 405, 1800 }, + [879] = { 64.2, 55.2, 405, 1800 }, + [880] = { 69.8, 54.3, 405, 1800 }, + [881] = { 45.3, 54, 405, 1800 }, + [882] = { 35.6, 53.5, 405, 1800 }, + [883] = { 32.1, 52.9, 405, 1800 }, + [884] = { 34.9, 52.6, 405, 1800 }, + [885] = { 35.1, 52.1, 405, 1800 }, + [886] = { 30.6, 51.2, 405, 1800 }, + [887] = { 45.2, 49.8, 405, 1800 }, + [888] = { 75.4, 49.8, 405, 1800 }, + [889] = { 68.8, 48.4, 405, 1800 }, + [890] = { 66.3, 47, 405, 1800 }, + [891] = { 55, 46, 405, 1800 }, + [892] = { 68.5, 45.8, 405, 1800 }, + [893] = { 56.2, 45.7, 405, 1800 }, + [894] = { 71.2, 45.5, 405, 1800 }, + [895] = { 74.8, 45, 405, 1800 }, + [896] = { 48.4, 43.9, 405, 1800 }, + [897] = { 59, 43.9, 405, 1800 }, + [898] = { 40.1, 43.7, 405, 1800 }, + [899] = { 51.5, 43.2, 405, 1800 }, + [900] = { 57.5, 43.1, 405, 1800 }, + [901] = { 75.2, 42.4, 405, 1800 }, + [902] = { 68.7, 42.2, 405, 1800 }, + [903] = { 49.4, 42.2, 405, 1800 }, + [904] = { 60.3, 41.9, 405, 1800 }, + [905] = { 72.7, 41.2, 405, 1800 }, + [906] = { 72.5, 40.8, 405, 1800 }, + [907] = { 65.6, 40.7, 405, 1800 }, + [908] = { 68.5, 39.5, 405, 1800 }, + [909] = { 74.5, 36.2, 405, 1800 }, + [910] = { 55.1, 33.7, 405, 1800 }, + [911] = { 58.5, 33.4, 405, 1800 }, + [912] = { 60.8, 32.2, 405, 1800 }, + [913] = { 61.6, 31.1, 405, 1800 }, + [914] = { 77.3, 30.1, 405, 1800 }, + [915] = { 48.8, 29.4, 405, 1800 }, + [916] = { 76.9, 28.2, 405, 1800 }, + [917] = { 73.9, 20.2, 405, 1800 }, + [918] = { 61.7, 13.8, 405, 1800 }, + [919] = { 46.7, 13.2, 405, 1800 }, + [920] = { 52.8, 9.6, 405, 1800 }, + [921] = { 51.9, 7.6, 405, 1800 }, + [922] = { 50.1, 5.9, 405, 1800 }, + [923] = { 49.8, 5.5, 405, 1800 }, + [924] = { 41.4, 84.9, 406, 1800 }, + [925] = { 30.1, 84.4, 406, 1800 }, + [926] = { 34.7, 81.7, 406, 1800 }, + [927] = { 34.1, 80.2, 406, 1800 }, + [928] = { 32.7, 79, 406, 1800 }, + [929] = { 32.5, 78.6, 406, 1800 }, + [930] = { 38.9, 74.7, 406, 1800 }, + [931] = { 42.2, 72.4, 406, 1800 }, + [932] = { 32.9, 69, 406, 1800 }, + [933] = { 43, 66.8, 406, 1800 }, + [934] = { 35.9, 65.6, 406, 1800 }, + [935] = { 42, 62.6, 406, 1800 }, + [936] = { 40.8, 61.3, 406, 1800 }, + [937] = { 43.1, 30.2, 406, 1800 }, + [938] = { 44.2, 29, 406, 1800 }, + [939] = { 47.3, 28.7, 406, 1800 }, + [940] = { 45.1, 27.3, 406, 1800 }, + [941] = { 39.5, 26.4, 406, 1800 }, + [942] = { 47.5, 24.6, 406, 1800 }, + [943] = { 44.7, 24.4, 406, 1800 }, + [944] = { 37.9, 23.3, 406, 1800 }, + [945] = { 39.6, 22.1, 406, 1800 }, + [946] = { 51.4, 78.8, 440, 1800 }, + [947] = { 48.4, 78, 440, 1800 }, + [948] = { 53.3, 76.3, 440, 1800 }, + [949] = { 58.6, 72.4, 440, 1800 }, + [950] = { 48.8, 71, 440, 1800 }, + [951] = { 58.3, 69.3, 440, 1800 }, + [952] = { 59.1, 67.5, 440, 1800 }, + [953] = { 59.9, 64.9, 440, 1800 }, + [954] = { 58.4, 63.6, 440, 1800 }, + [955] = { 59.9, 63.2, 440, 1800 }, + [956] = { 59.4, 62.8, 440, 1800 }, + [957] = { 32.6, 52.7, 440, 1800 }, + [958] = { 31.1, 52.2, 440, 1800 }, + [959] = { 35.1, 51.2, 440, 1800 }, + [960] = { 59.1, 48.1, 440, 1800 }, + [961] = { 36.4, 48, 440, 1800 }, + [962] = { 70.9, 47.4, 440, 1800 }, + [963] = { 37.3, 45.4, 440, 1800 }, + [964] = { 71.3, 44.8, 440, 1800 }, + [965] = { 69.8, 43.8, 440, 1800 }, + [966] = { 69.3, 43.6, 440, 1800 }, + [967] = { 66.2, 43.1, 440, 1800 }, + [968] = { 69.4, 42.3, 440, 1800 }, + [969] = { 68.2, 42.2, 440, 1800 }, + [970] = { 67.4, 41.6, 440, 1800 }, + [971] = { 69, 41.5, 440, 1800 }, + [972] = { 61.1, 41.1, 440, 1800 }, + [973] = { 37.9, 40.7, 440, 1800 }, + [974] = { 62, 39.1, 440, 1800 }, + [975] = { 62.5, 38.9, 440, 1800 }, + [976] = { 57.2, 38.6, 440, 1800 }, + [977] = { 56.1, 38, 440, 1800 }, + [978] = { 56.3, 37.2, 440, 1800 }, + [979] = { 56.8, 36.7, 440, 1800 }, + [980] = { 65.3, 35.8, 440, 1800 }, + [981] = { 60, 35.7, 440, 1800 }, + [982] = { 58.3, 35.6, 440, 1800 }, + [983] = { 53.4, 34.8, 440, 1800 }, + [984] = { 58.7, 34.5, 440, 1800 }, + [985] = { 58.4, 33.3, 440, 1800 }, + [986] = { 61.8, 32.8, 440, 1800 }, + [987] = { 59, 32.5, 440, 1800 }, + [988] = { 57, 26.6, 440, 1800 }, + [989] = { 55, 26.5, 440, 1800 }, + [990] = { 55, 23.7, 440, 1800 }, + [991] = { 26.4, 51.3, 491, 604800 }, + [992] = { 18.6, 45, 491, 604800 }, + [993] = { 8.2, 37.3, 491, 604800 }, + [994] = { 84.7, 90.1, 1337, 1800 }, + [995] = { 88.8, 62, 1337, 1800 }, + [996] = { 51.8, 61.9, 1337, 1800 }, + [997] = { 29.4, 46.6, 1337, 1800 }, + [998] = { 59.1, 44.6, 1337, 1800 }, + [999] = { 61.9, 37.4, 1337, 1800 }, + [1000] = { 52.3, 34.5, 1337, 1800 }, + [1001] = { 61.6, 64.5, 1337, 604800 }, + [1002] = { 35.6, 38.3, 1337, 604800 }, + [1003] = { 48.7, 94.1, 1941, 1800 }, + [1004] = { 41, 87.6, 1941, 1800 }, + [1005] = { 48.9, 85.6, 1941, 1800 }, + [1006] = { 46.2, 83.6, 1941, 1800 }, + [1007] = { 44.7, 7.4, 1941, 1800 }, + [1008] = { 34.9, 78.4, 2100, 1800 }, + [1009] = { 42.3, 67.5, 2100, 1800 }, + [1010] = { 51.6, 60, 2100, 1800 }, + [1011] = { 31.8, 60, 2100, 1800 }, + [1012] = { 83.8, 50, 2100, 1800 }, + [1013] = { 41.5, 47.7, 2100, 1800 }, + [1014] = { 76.6, 42.4, 2100, 1800 }, + [1015] = { 26.8, 31.8, 2100, 1800 }, + [1016] = { 38.2, 27, 2100, 1800 }, + [1017] = { 68.7, 26.7, 2100, 1800 }, + [1018] = { 95.1, 21.1, 2100, 1800 }, + [1019] = { 69.2, 19.5, 2100, 1800 }, + [1020] = { 69.8, 10.4, 2100, 1800 }, + [1021] = { 50.8, 7.1, 2100, 1800 }, + [1022] = { 66.2, 5.1, 2100, 1800 }, + [1023] = { 67, 2.4, 2100, 1800 }, + [1024] = { 56, 83, 5179, 1800 }, + [1025] = { 41.5, 78.3, 5179, 1800 }, + [1026] = { 55.4, 78, 5179, 1800 }, + [1027] = { 47.1, 77.7, 5179, 1800 }, + [1028] = { 36.6, 77.6, 5179, 1800 }, + [1029] = { 46, 77.4, 5179, 1800 }, + [1030] = { 47, 71.4, 5179, 1800 }, + [1031] = { 43.3, 71, 5179, 1800 }, + [1032] = { 45.9, 68.8, 5179, 1800 }, + [1033] = { 34.2, 65.1, 5179, 1800 }, + [1034] = { 38.5, 63.8, 5179, 1800 }, + [1035] = { 56.3, 63.5, 5179, 1800 }, + [1036] = { 40.8, 59.9, 5179, 1800 }, + [1037] = { 32.4, 59.8, 5179, 1800 }, + [1038] = { 42.2, 54.5, 5179, 1800 }, + [1039] = { 47.6, 53.6, 5179, 1800 }, + [1040] = { 57.2, 52.2, 5179, 1800 }, + [1041] = { 55.5, 50.5, 5179, 1800 }, + [1042] = { 38.4, 50, 5179, 1800 }, + [1043] = { 48.3, 49.8, 5179, 1800 }, + [1044] = { 28.9, 47.4, 5179, 1800 }, + [1045] = { 51, 46, 5179, 1800 }, + [1046] = { 29.8, 45.5, 5179, 1800 }, + [1047] = { 51.9, 45.5, 5179, 1800 }, + [1048] = { 37.8, 45.3, 5179, 1800 }, + [1049] = { 33.8, 41.7, 5179, 1800 }, + [1050] = { 31.4, 40.7, 5179, 1800 }, + [1051] = { 44.5, 40.7, 5179, 1800 }, + [1052] = { 48, 40.4, 5179, 1800 }, + [1053] = { 41, 39.9, 5179, 1800 }, + [1054] = { 37.6, 39.4, 5179, 1800 }, + [1055] = { 71.4, 38.1, 5179, 1800 }, + [1056] = { 31.2, 36.4, 5179, 1800 }, + [1057] = { 50.4, 34.7, 5179, 1800 }, + [1058] = { 34.8, 33.1, 5179, 1800 }, + [1059] = { 33.2, 31, 5179, 1800 }, + [1060] = { 50.1, 30.2, 5179, 1800 }, + [1061] = { 39.6, 24.2, 5179, 1800 }, + [1062] = { 43.8, 24, 5179, 1800 }, + [1063] = { 49, 22.3, 5179, 1800 }, + [1064] = { 40.3, 16.1, 5179, 1800 }, + [1065] = { 39.4, 14.2, 5179, 1800 }, + [1066] = { 53.3, 77.3, 5561, 1800 }, + [1067] = { 45.8, 77.3, 5561, 1800 }, + [1068] = { 53.4, 76.4, 5561, 1800 }, + [1069] = { 34.8, 74.2, 5561, 1800 }, + [1070] = { 53.4, 73.9, 5561, 1800 }, + [1071] = { 37.8, 73.8, 5561, 1800 }, + [1072] = { 50.3, 73.6, 5561, 1800 }, + [1073] = { 57.5, 71.4, 5561, 1800 }, + [1074] = { 52.8, 70.1, 5561, 1800 }, + [1075] = { 56.2, 68.9, 5561, 1800 }, + [1076] = { 52.6, 66.9, 5561, 1800 }, + [1077] = { 38.5, 65.5, 5561, 1800 }, + [1078] = { 29.7, 63.4, 5561, 1800 }, + [1079] = { 31.4, 57.4, 5561, 1800 }, + [1080] = { 32.3, 53.1, 5561, 1800 }, + [1081] = { 30.5, 52.2, 5561, 1800 }, + [1082] = { 36.2, 52, 5561, 1800 }, + [1083] = { 49.4, 51.8, 5561, 1800 }, + [1084] = { 49, 50.7, 5561, 1800 }, + [1085] = { 47.9, 50.4, 5561, 1800 }, + [1086] = { 29.7, 49.5, 5561, 1800 }, + [1087] = { 44.1, 48.7, 5561, 1800 }, + [1088] = { 47.5, 48.5, 5561, 1800 }, + [1089] = { 32.5, 47.1, 5561, 1800 }, + [1090] = { 34.8, 46.9, 5561, 1800 }, + [1091] = { 48, 45.1, 5561, 1800 }, + [1092] = { 34.1, 42.7, 5561, 1800 }, + [1093] = { 47.4, 42.5, 5561, 1800 }, + [1094] = { 42.7, 42.4, 5561, 1800 }, + [1095] = { 45.3, 42.2, 5561, 1800 }, + [1096] = { 39.3, 41, 5561, 1800 }, + [1097] = { 46.3, 36.4, 5561, 1800 }, + [1098] = { 41.1, 29.8, 5561, 1800 }, + [1099] = { 25, 16.3, 5561, 1800 }, + [1100] = { 39.6, 16, 5561, 1800 }, + [1101] = { 72, 88.4, 5581, 1800 }, + [1102] = { 78.5, 86.8, 5581, 1800 }, + [1103] = { 39.8, 86.6, 5581, 1800 }, + [1104] = { 71.2, 82.4, 5581, 1800 }, + [1105] = { 74.2, 81.6, 5581, 1800 }, + [1106] = { 73.1, 80.5, 5581, 1800 }, + [1107] = { 72.4, 79.9, 5581, 1800 }, + [1108] = { 35.3, 79.5, 5581, 1800 }, + [1109] = { 71.6, 78.6, 5581, 1800 }, + [1110] = { 67.8, 78, 5581, 1800 }, + [1111] = { 37.4, 76.9, 5581, 1800 }, + [1112] = { 70.8, 75.6, 5581, 1800 }, + [1113] = { 35.6, 75.5, 5581, 1800 }, + [1114] = { 42, 74.9, 5581, 1800 }, + [1115] = { 45.4, 73.9, 5581, 1800 }, + [1116] = { 72.7, 72.7, 5581, 1800 }, + [1117] = { 68.6, 72.5, 5581, 1800 }, + [1118] = { 78.2, 69.9, 5581, 1800 }, + [1119] = { 67, 67.3, 5581, 1800 }, + [1120] = { 78, 66.1, 5581, 1800 }, + [1121] = { 31.4, 64.6, 5581, 1800 }, + [1122] = { 80.6, 62.5, 5581, 1800 }, + [1123] = { 25.9, 61.3, 5581, 1800 }, + [1124] = { 81.5, 60.3, 5581, 1800 }, + [1125] = { 84.2, 58.9, 5581, 1800 }, + [1126] = { 24.3, 55.6, 5581, 1800 }, + [1127] = { 66.1, 55.5, 5581, 1800 }, + [1128] = { 29.8, 55, 5581, 1800 }, + [1129] = { 42.8, 53.6, 5581, 1800 }, + [1130] = { 23.8, 51.6, 5581, 1800 }, + [1131] = { 54.7, 50, 5581, 1800 }, + [1132] = { 55, 47.8, 5581, 1800 }, + [1133] = { 83.5, 47.1, 5581, 1800 }, + [1134] = { 36.1, 46.7, 5581, 1800 }, + [1135] = { 64.1, 46.3, 5581, 1800 }, + [1136] = { 65.7, 46.3, 5581, 1800 }, + [1137] = { 76.3, 43.7, 5581, 1800 }, + [1138] = { 68, 43.1, 5581, 1800 }, + [1139] = { 66.3, 42.8, 5581, 1800 }, + [1140] = { 67.5, 42.4, 5581, 1800 }, + [1141] = { 67.1, 39.7, 5581, 1800 }, + [1142] = { 26.1, 38.2, 5581, 1800 }, + [1143] = { 68, 36.4, 5581, 1800 }, + [1144] = { 27.1, 36.3, 5581, 1800 }, + [1145] = { 44.4, 35.4, 5581, 1800 }, + [1146] = { 65.7, 35.1, 5581, 1800 }, + [1147] = { 47.3, 34.3, 5581, 1800 }, + [1148] = { 82.2, 34.3, 5581, 1800 }, + [1149] = { 88.2, 33.8, 5581, 1800 }, + [1150] = { 90.8, 32.8, 5581, 1800 }, + [1151] = { 90.7, 32.6, 5581, 1800 }, + [1152] = { 88.5, 32.5, 5581, 1800 }, + [1153] = { 32.7, 32.4, 5581, 1800 }, + [1154] = { 89, 32.3, 5581, 1800 }, + [1155] = { 52, 32, 5581, 1800 }, + [1156] = { 41.2, 31.1, 5581, 1800 }, + [1157] = { 88.3, 30.8, 5581, 1800 }, + [1158] = { 27.4, 30.7, 5581, 1800 }, + [1159] = { 92.1, 30.6, 5581, 1800 }, + [1160] = { 91.2, 29.5, 5581, 1800 }, + [1161] = { 79.5, 29.4, 5581, 1800 }, + [1162] = { 42.6, 28.4, 5581, 1800 }, + [1163] = { 36.5, 27.9, 5581, 1800 }, + [1164] = { 35.3, 27.7, 5581, 1800 }, + [1165] = { 56.7, 27.6, 5581, 1800 }, + [1166] = { 51, 27.3, 5581, 1800 }, + [1167] = { 84.1, 26.9, 5581, 1800 }, + [1168] = { 59.8, 25.3, 5581, 1800 }, + [1169] = { 67.1, 25.2, 5581, 1800 }, + [1170] = { 70.4, 22.7, 5581, 1800 }, + [1171] = { 64.6, 20.5, 5581, 1800 }, + [1172] = { 85.6, 20.2, 5581, 1800 }, + [1173] = { 85.5, 17.2, 5581, 1800 }, + [1174] = { 86.7, 15.8, 5581, 1800 }, + [1175] = { 82.4, 15.7, 5581, 1800 }, + [1176] = { 90, 13.7, 5581, 1800 }, + [1177] = { 85.7, 12.2, 5581, 1800 }, + [1178] = { 88.9, 10.5, 5581, 1800 }, + [1179] = { 80, 8.8, 5581, 1800 }, + [1180] = { 82.2, 8.7, 5581, 1800 }, + [1181] = { 31.7, 88.2, 5601, 604800 }, + [1182] = { 27.5, 77.4, 5601, 604800 }, + [1183] = { 31.3, 75.7, 5601, 604800 }, + [1184] = { 27.9, 54, 5601, 604800 }, + [1185] = { 29, 51.1, 5601, 604800 }, + [1186] = { 58.5, 49.7, 5601, 604800 }, + [1187] = { 35, 44.9, 5601, 604800 }, + [1188] = { 64.3, 43.5, 5601, 604800 }, + [1189] = { 7.3, 99.7, 5602, 1800 }, + [1190] = { 7.6, 99.3, 5602, 1800 }, + [1191] = { 25.3, 99.1, 5602, 1800 }, + [1192] = { 15.3, 99, 5602, 1800 }, + [1193] = { 24.3, 97.6, 5602, 1800 }, + [1194] = { 21.4, 94.5, 5602, 1800 }, + [1195] = { 28.6, 93.5, 5602, 1800 }, + [1196] = { 26.1, 92.9, 5602, 1800 }, + [1197] = { 21.8, 91.6, 5602, 1800 }, + [1198] = { 17.9, 91.6, 5602, 1800 }, + [1199] = { 23.5, 91.5, 5602, 1800 }, + [1200] = { 28.9, 91.2, 5602, 1800 }, + [1201] = { 45.7, 91, 5602, 1800 }, + [1202] = { 15.6, 90, 5602, 1800 }, + [1203] = { 18.7, 89.8, 5602, 1800 }, + [1204] = { 24.2, 89.7, 5602, 1800 }, + [1205] = { 59, 89.7, 5602, 1800 }, + [1206] = { 25.7, 89.5, 5602, 1800 }, + [1207] = { 19, 89, 5602, 1800 }, + [1208] = { 18, 88.7, 5602, 1800 }, + [1209] = { 61.3, 88.2, 5602, 1800 }, + [1210] = { 46.6, 87.9, 5602, 1800 }, + [1211] = { 55.3, 87.8, 5602, 1800 }, + [1212] = { 47.5, 84.8, 5602, 1800 }, + [1213] = { 51, 79.4, 5602, 1800 }, + [1214] = { 62.2, 79.4, 5602, 1800 }, + [1215] = { 61.1, 74.7, 5602, 1800 }, + [1216] = { 58.8, 73.6, 5602, 1800 }, + [1217] = { 60.2, 73.6, 5602, 1800 }, + [1218] = { 56.3, 73.5, 5602, 1800 }, + [1219] = { 52.4, 73.3, 5602, 1800 }, + [1220] = { 60.6, 71.5, 5602, 1800 }, + [1221] = { 59.8, 71.5, 5602, 1800 }, + [1222] = { 61.7, 70.1, 5602, 1800 }, + [1223] = { 59.7, 70, 5602, 1800 }, + [1224] = { 62.1, 69, 5602, 1800 }, + [1225] = { 61, 68.9, 5602, 1800 }, + [1226] = { 58.1, 68.2, 5602, 1800 }, + [1227] = { 56.3, 67.1, 5602, 1800 }, + [1228] = { 50.5, 66.3, 5602, 1800 }, + [1229] = { 48.9, 65.8, 5602, 1800 }, + [1230] = { 58.6, 64.1, 5602, 1800 }, + [1231] = { 60.4, 64, 5602, 1800 }, + [1232] = { 64.2, 63.5, 5602, 1800 }, + [1233] = { 55.5, 63, 5602, 1800 }, + [1234] = { 60.4, 62, 5602, 1800 }, + [1235] = { 61, 61.6, 5602, 1800 }, + [1236] = { 59.1, 61.4, 5602, 1800 }, + [1237] = { 62.1, 60.7, 5602, 1800 }, + [1238] = { 49.2, 59.9, 5602, 1800 }, + [1239] = { 48.1, 59.6, 5602, 1800 }, + [1240] = { 61, 59.6, 5602, 1800 }, + [1241] = { 62.7, 59.1, 5602, 1800 }, + [1242] = { 44.8, 57.7, 5602, 1800 }, + [1243] = { 62.2, 57.6, 5602, 1800 }, + [1244] = { 46.4, 55.9, 5602, 1800 }, + [1245] = { 55.8, 55.2, 5602, 1800 }, + [1246] = { 63.8, 54.5, 5602, 1800 }, + [1247] = { 44.9, 53.5, 5602, 1800 }, + [1248] = { 59.9, 52.2, 5602, 1800 }, + [1249] = { 52.7, 51.2, 5602, 1800 }, + [1250] = { 50.1, 50.9, 5602, 1800 }, + [1251] = { 56.5, 49.3, 5602, 1800 }, + [1252] = { 58.7, 48, 5602, 1800 }, + [1253] = { 63.7, 47.8, 5602, 1800 }, + [1254] = { 50.6, 47.2, 5602, 1800 }, + [1255] = { 45.2, 46.9, 5602, 1800 }, + [1256] = { 62.7, 45.8, 5602, 1800 }, + [1257] = { 61.4, 44.3, 5602, 1800 }, + [1258] = { 54.1, 44.1, 5602, 1800 }, + [1259] = { 60.6, 43.4, 5602, 1800 }, + [1260] = { 59.3, 43, 5602, 1800 }, + [1261] = { 50.9, 41.7, 5602, 1800 }, + [1262] = { 60.2, 41.5, 5602, 1800 }, + [1263] = { 45.8, 41.5, 5602, 1800 }, + [1264] = { 63.5, 41.3, 5602, 1800 }, + [1265] = { 54.9, 37.9, 5602, 1800 }, + [1266] = { 45.8, 36.9, 5602, 1800 }, + [1267] = { 61.5, 34.5, 5602, 1800 }, + [1268] = { 41.6, 33.1, 5602, 1800 }, + [1269] = { 53, 33.1, 5602, 1800 }, + [1270] = { 55.6, 31.9, 5602, 1800 }, + [1271] = { 63.4, 30.9, 5602, 1800 }, + [1272] = { 42, 28.4, 5602, 1800 }, + [1273] = { 55.9, 27.5, 5602, 1800 }, + [1274] = { 58.9, 25.1, 5602, 1800 }, + [1275] = { 54, 25, 5602, 1800 }, + [1276] = { 56.7, 24.8, 5602, 1800 }, + [1277] = { 55.5, 24.6, 5602, 1800 }, + [1278] = { 58.5, 24.2, 5602, 1800 }, + [1279] = { 45.7, 23.9, 5602, 1800 }, + [1280] = { 51.2, 22.7, 5602, 1800 }, + [1281] = { 56, 21.3, 5602, 1800 }, + [1282] = { 42.2, 20.3, 5602, 1800 }, + [1283] = { 62.3, 19.3, 5602, 1800 }, + [1284] = { 9.6, 19, 5602, 1800 }, + [1285] = { 58, 17.9, 5602, 1800 }, + [1286] = { 6.2, 17.7, 5602, 1800 }, + [1287] = { 48.5, 15.8, 5602, 1800 }, + [1288] = { 43.4, 15.2, 5602, 1800 }, + [1289] = { 12.4, 13.4, 5602, 1800 }, + [1290] = { 0.8, 13, 5602, 1800 }, + [1291] = { 59.9, 12.6, 5602, 1800 }, + [1292] = { 41.8, 12.3, 5602, 1800 }, + [1293] = { 50.8, 12.1, 5602, 1800 }, + [1294] = { 57.9, 11.9, 5602, 1800 }, + [1295] = { 22.3, 4.9, 5602, 1800 }, + [1296] = { 20.6, 4.5, 5602, 1800 }, + [1297] = { 21.6, 4.2, 5602, 1800 }, + [1298] = { 20.8, 3.2, 5602, 1800 }, + [1299] = { 20.4, 2.3, 5602, 1800 }, + [1300] = { 20, 2.3, 5602, 1800 }, + [1301] = { 20.1, 2, 5602, 1800 }, + [1302] = { 23.4, 1.9, 5602, 1800 }, + [1303] = { 20.4, 0.6, 5602, 1800 }, + [1304] = { 21.3, 0.2, 5602, 1800 }, + [1305] = { 20.7, 0.1, 5602, 1800 }, + }, + }, + [1736] = { + ["coords"] = { + [1] = { 32, 45.4, 267, 30 }, + [2] = { 87.6, 8.6, 5179, 30 }, + }, + }, + [1744] = { + ["coords"] = { + [1] = { 63.9, 59.7, 85, 900 }, + [2] = { 48.5, 44.7, 3358, 25 }, + [3] = { 48.8, 44.2, 3358, 25 }, + [4] = { 48, 44.2, 3358, 25 }, + [5] = { 48.8, 43.7, 3358, 25 }, + }, + }, + [1759] = { + ["coords"] = { + [1] = { 29.5, 41.5, 267, 2 }, + [2] = { 85.4, 5.2, 5179, 2 }, + }, + }, + [1760] = { + ["coords"] = { + [1] = { 38.4, 46.4, 36, 2 }, + }, + }, + [1761] = { + ["coords"] = { + [1] = { 29.7, 41.7, 267, 10 }, + [2] = { 85.6, 5.4, 5179, 10 }, + }, + }, + [1766] = { + ["coords"] = { + [1] = { 25, 76, 1, 900 }, + [2] = { 52, 2.1, 5581, 900 }, + }, + }, + [1768] = { + ["coords"] = { + [1] = { 40, 91, 36, 1 }, + [2] = { 43.9, 28.1, 267, 1 }, + }, + }, + [1769] = { + ["coords"] = { + [1] = { 40.2, 89.3, 36, 1 }, + [2] = { 44, 26.6, 267, 1 }, + }, + }, + [1770] = { + ["coords"] = { + [1] = { 37.5, 66.2, 36, 1 }, + [2] = { 41.7, 6.4, 267, 1 }, + }, + }, + [1771] = { + ["coords"] = { + [1] = { 32.1, 50.6, 267, 7200 }, + [2] = { 87.7, 13.1, 5179, 7200 }, + }, + }, + [1772] = { + ["coords"] = { + [1] = { 32.1, 50.6, 267, 7200 }, + [2] = { 87.7, 13.1, 5179, 7200 }, + }, + }, + [1773] = { + ["coords"] = { + [1] = { 32.1, 50.6, 267, 7200 }, + [2] = { 87.7, 13.1, 5179, 7200 }, + }, + }, + [1774] = { + ["coords"] = { + [1] = { 32.1, 50.6, 267, 7200 }, + [2] = { 87.6, 13.1, 5179, 7200 }, + }, + }, + [1798] = { + ["coords"] = { + [1] = { 29.9, 71.2, 1, 25 }, + [2] = { 7.7, 33.9, 10, 3600 }, + [3] = { 42.4, 68, 14, 25 }, + [4] = { 51.4, 30.5, 17, 25 }, + [5] = { 58.7, 44.4, 141, 25 }, + [6] = { 36, 35.1, 215, 25 }, + [7] = { 52.3, 65, 1583, 25 }, + [8] = { 47.3, 61.7, 1583, 25 }, + [9] = { 49.1, 58.1, 1583, 25 }, + [10] = { 63.3, 45.5, 1583, 25 }, + }, + }, + [1849] = { + ["coords"] = { + [1] = { 37.3, 75.4, 40, 3600 }, + [2] = { 18.5, 34.9, 1581, 3600 }, + }, + }, + [1859] = { + ["coords"] = { + [1] = { 62.1, 64.4, 11, 300 }, + [2] = { 65.2, 75.2, 40, 3600 }, + [3] = { 35.8, 87.7, 5601, 604800 }, + [4] = { 16.5, 28.4, 5602, 300 }, + }, + }, + [1860] = { + ["coords"] = { + [1] = { 37, 82.4, 40, 3600 }, + [2] = { 16, 89.2, 1581, 3600 }, + }, + }, + [1865] = { + ["coords"] = { + [1] = { 44.7, 80.1, 40, 3600 }, + [2] = { 76.1, 71.6, 1581, 3600 }, + }, + }, + [1874] = { + ["coords"] = { + [1] = { 52.8, 27.6, 11, 7200 }, + [2] = { 9.3, 0.1, 5602, 7200 }, + }, + }, + [1875] = { + ["coords"] = { + [1] = { 51.3, 30.9, 11, 7200 }, + [2] = { 8.2, 2.7, 5602, 7200 }, + }, + }, + [1876] = { + ["coords"] = { + [1] = { 45.1, 31.8, 11, 7200 }, + [2] = { 3.4, 3.4, 5602, 7200 }, + }, + }, + [1877] = { + ["coords"] = { + [1] = { 42.9, 32.4, 11, 7200 }, + [2] = { 1.7, 3.8, 5602, 7200 }, + }, + }, + [1878] = { + ["coords"] = { + [1] = { 43.6, 34.6, 11, 7200 }, + [2] = { 2.3, 5.5, 5602, 7200 }, + }, + }, + [1879] = { + ["coords"] = { + [1] = { 45.6, 34.6, 11, 7200 }, + [2] = { 3.7, 5.5, 5602, 7200 }, + }, + }, + [1882] = { + ["coords"] = { + [1] = { 62.4, 28.3, 11, 7200 }, + [2] = { 16.7, 0.7, 5602, 7200 }, + }, + }, + [1883] = { + ["coords"] = { + [1] = { 45.5, 42.9, 11, 7200 }, + [2] = { 3.7, 11.9, 5602, 7200 }, + }, + }, + [1884] = { + ["coords"] = { + [1] = { 45.8, 45.3, 11, 7200 }, + [2] = { 3.9, 13.7, 5602, 7200 }, + }, + }, + [1885] = { + ["coords"] = { + [1] = { 49.3, 46.6, 11, 7200 }, + [2] = { 6.6, 14.8, 5602, 7200 }, + }, + }, + [1886] = { + ["coords"] = { + [1] = { 53.4, 54.3, 11, 7200 }, + [2] = { 9.8, 20.6, 5602, 7200 }, + }, + }, + [1887] = { + ["coords"] = { + [1] = { 48, 76, 11, 7200 }, + [2] = { 5.6, 37.4, 5602, 7200 }, + }, + }, + [1888] = { + ["coords"] = { + [1] = { 61.1, 58.5, 11, 7200 }, + [2] = { 15.7, 23.9, 5602, 7200 }, + }, + }, + [1889] = { + ["coords"] = { + [1] = { 62.7, 69.5, 11, 7200 }, + [2] = { 16.9, 32.4, 5602, 7200 }, + }, + }, + [1890] = { + ["coords"] = { + [1] = { 61.7, 72.3, 11, 7200 }, + [2] = { 16.1, 34.5, 5602, 7200 }, + }, + }, + [1891] = { + ["coords"] = { + [1] = { 55.7, 75.2, 11, 7200 }, + [2] = { 11.5, 36.7, 5602, 7200 }, + }, + }, + [1905] = { + ["coords"] = { + [1] = { 44.8, 12.7, 28, 1200 }, + [2] = { 16.4, 94.5, 5225, 1200 }, + }, + }, + [1908] = { + ["coords"] = { + [1] = { 37.4, 16.4, 38, 7200 }, + [2] = { 17.7, 52.6, 5602, 7200 }, + }, + }, + [1909] = { + ["coords"] = { + [1] = { 37.1, 24.8, 38, 7200 }, + [2] = { 17.5, 56.9, 5602, 7200 }, + }, + }, + [1911] = { + ["coords"] = { + [1] = { 25.6, 43.3, 38, 7200 }, + [2] = { 11.7, 66.4, 5602, 7200 }, + }, + }, + [1912] = { + ["coords"] = { + [1] = { 54.5, 26.6, 38, 7200 }, + [2] = { 26.5, 57.9, 5602, 7200 }, + }, + }, + [1914] = { + ["coords"] = { + [1] = { 26.7, 56.9, 38, 7200 }, + [2] = { 12.2, 73.4, 5602, 7200 }, + }, + }, + [1915] = { + ["coords"] = { + [1] = { 65, 66.3, 38, 7200 }, + [2] = { 31.8, 78.2, 5602, 7200 }, + }, + }, + [1916] = { + ["coords"] = { + [1] = { 32.1, 75.2, 38, 7200 }, + [2] = { 15, 82.8, 5602, 7200 }, + }, + }, + [1917] = { + ["coords"] = { + [1] = { 29.5, 83.7, 38, 7200 }, + [2] = { 10.6, 19.7, 1337, 7200 }, + [3] = { 13.6, 87.2, 5602, 7200 }, + }, + }, + [1943] = { + ["coords"] = { + [1] = { 21, 76.3, 1, 900 }, + [2] = { 45.9, 2.5, 5581, 900 }, + }, + }, + [1953] = { + ["coords"] = { + [1] = { 22.7, 80, 1, 900 }, + [2] = { 48.6, 8.2, 5581, 900 }, + }, + }, + [1954] = { + ["coords"] = { + [1] = { 26.4, 79.4, 1, 900 }, + [2] = { 54.1, 7.2, 5581, 900 }, + }, + }, + [2002] = { + ["coords"] = { + [1] = { 62.9, 76.3, 130, 7200 }, + [2] = { 8.1, 40.7, 267, 7200 }, + [3] = { 66.7, 4.5, 5179, 7200 }, + }, + }, + [2003] = { + ["coords"] = { + [1] = { 44.4, 84.4, 130, 7200 }, + [2] = { 45.5, 13.8, 5179, 7200 }, + }, + }, + [2004] = { + ["coords"] = { + [1] = { 46.8, 85.6, 130, 7200 }, + [2] = { 48.2, 15.2, 5179, 7200 }, + }, + }, + [2039] = { + ["coords"] = { + [1] = { 20.9, 63.3, 36, 7200 }, + [2] = { 21.8, 60.7, 36, 7200 }, + [3] = { 22.6, 60.5, 36, 7200 }, + }, + }, + [2040] = { + ["coords"] = { + [1] = { 10.1, 92.9, 3, 1800 }, + [2] = { 6.7, 91, 3, 1800 }, + [3] = { 10.2, 89.5, 3, 1800 }, + [4] = { 12.3, 88.3, 3, 1800 }, + [5] = { 9.4, 86.5, 3, 1800 }, + [6] = { 13, 86.2, 3, 1800 }, + [7] = { 15.1, 85.8, 3, 1800 }, + [8] = { 2.8, 83.7, 3, 1800 }, + [9] = { 42.3, 82, 3, 1800 }, + [10] = { 43.6, 81.4, 3, 1800 }, + [11] = { 5.5, 80.8, 3, 1800 }, + [12] = { 42.6, 77.6, 3, 1800 }, + [13] = { 40.9, 76.5, 3, 1800 }, + [14] = { 7.6, 76.3, 3, 1800 }, + [15] = { 14.5, 75, 3, 1800 }, + [16] = { 74.7, 73.9, 3, 1800 }, + [17] = { 75.4, 73.4, 3, 1800 }, + [18] = { 15.5, 72.8, 3, 1800 }, + [19] = { 31.7, 72.6, 3, 1800 }, + [20] = { 75.3, 71.9, 3, 1800 }, + [21] = { 8.7, 67.6, 3, 1800 }, + [22] = { 71.7, 67.2, 3, 1800 }, + [23] = { 25.5, 67.1, 3, 1800 }, + [24] = { 80.8, 65.6, 3, 1800 }, + [25] = { 63, 56.3, 3, 1800 }, + [26] = { 83.9, 54.8, 3, 1800 }, + [27] = { 51.5, 53, 3, 1800 }, + [28] = { 82.6, 44.9, 3, 1800 }, + [29] = { 16.3, 43.7, 3, 1800 }, + [30] = { 37.4, 40.8, 3, 1800 }, + [31] = { 35.5, 39, 3, 1800 }, + [32] = { 38.8, 37.1, 3, 1800 }, + [33] = { 16.2, 35.4, 3, 1800 }, + [34] = { 38.6, 15.5, 3, 1800 }, + [35] = { 60.3, 58.7, 4, 1800 }, + [36] = { 50.8, 57.6, 4, 1800 }, + [37] = { 61.1, 56.8, 4, 1800 }, + [38] = { 51.3, 56.7, 4, 1800 }, + [39] = { 50.5, 55.5, 4, 1800 }, + [40] = { 46.5, 53.1, 4, 1800 }, + [41] = { 45.1, 52.4, 4, 1800 }, + [42] = { 56.5, 51.8, 4, 1800 }, + [43] = { 45.1, 51, 4, 1800 }, + [44] = { 49.7, 43.8, 4, 1800 }, + [45] = { 64.4, 43.6, 4, 1800 }, + [46] = { 42.8, 43, 4, 1800 }, + [47] = { 64.6, 41.2, 4, 1800 }, + [48] = { 58.6, 40.5, 4, 1800 }, + [49] = { 62.9, 36.8, 4, 1800 }, + [50] = { 48.9, 35, 4, 1800 }, + [51] = { 65.3, 34.4, 4, 1800 }, + [52] = { 65.1, 32.2, 4, 1800 }, + [53] = { 66.8, 32, 4, 1800 }, + [54] = { 65.1, 31.6, 4, 1800 }, + [55] = { 43.5, 30.8, 4, 1800 }, + [56] = { 62, 30.6, 4, 1800 }, + [57] = { 60.7, 29.6, 4, 1800 }, + [58] = { 43.2, 28.6, 4, 1800 }, + [59] = { 63.4, 25.1, 4, 1800 }, + [60] = { 46.6, 20.4, 4, 1800 }, + [61] = { 47.2, 16.9, 4, 1800 }, + [62] = { 58.7, 14.7, 4, 1800 }, + [63] = { 57, 14.7, 4, 1800 }, + [64] = { 71, 14.5, 4, 1800 }, + [65] = { 54.2, 13.1, 4, 1800 }, + [66] = { 57.8, 11.8, 4, 1800 }, + [67] = { 57.3, 11.5, 4, 1800 }, + [68] = { 53.3, 10.7, 4, 1800 }, + [69] = { 56.4, 9.8, 4, 1800 }, + [70] = { 56.6, 8.9, 4, 1800 }, + [71] = { 56.9, 7.6, 4, 1800 }, + [72] = { 60.9, 83, 8, 1800 }, + [73] = { 39.6, 76.2, 8, 1800 }, + [74] = { 39.9, 74.8, 8, 1800 }, + [75] = { 40.3, 73, 8, 1800 }, + [76] = { 52.8, 66.8, 8, 1800 }, + [77] = { 62.5, 65.5, 8, 1800 }, + [78] = { 48.2, 65.5, 8, 1800 }, + [79] = { 51.5, 65.3, 8, 1800 }, + [80] = { 57.9, 59.5, 8, 1800 }, + [81] = { 71.4, 44.9, 8, 1800 }, + [82] = { 42.9, 27.3, 8, 1800 }, + [83] = { 46, 26.3, 8, 1800 }, + [84] = { 33.9, 5.8, 11, 1800 }, + [85] = { 52.5, 27.6, 14, 1800 }, + [86] = { 52.8, 27.5, 14, 1800 }, + [87] = { 58.1, 75.6, 15, 1800 }, + [88] = { 36.8, 68.6, 15, 1800 }, + [89] = { 37.8, 67, 15, 1800 }, + [90] = { 30.7, 22.3, 15, 1800 }, + [91] = { 30.5, 20.3, 15, 1800 }, + [92] = { 49.1, 91.5, 16, 1800 }, + [93] = { 61.1, 89.2, 16, 1800 }, + [94] = { 54.2, 88.5, 16, 1800 }, + [95] = { 37.8, 85.8, 16, 1800 }, + [96] = { 41.9, 84.5, 16, 1800 }, + [97] = { 14.8, 75.1, 16, 1800 }, + [98] = { 14.2, 74.3, 16, 1800 }, + [99] = { 15, 72.7, 16, 1800 }, + [100] = { 19.7, 62.9, 16, 1800 }, + [101] = { 19.5, 60.9, 16, 1800 }, + [102] = { 52, 49.5, 16, 1800 }, + [103] = { 54.5, 49.1, 16, 1800 }, + [104] = { 31.8, 44.6, 16, 1800 }, + [105] = { 33.7, 42.2, 16, 1800 }, + [106] = { 33.5, 40.7, 16, 1800 }, + [107] = { 35.8, 36.9, 16, 1800 }, + [108] = { 89.1, 33.6, 16, 1800 }, + [109] = { 78.5, 33.6, 16, 1800 }, + [110] = { 75.6, 31.5, 16, 1800 }, + [111] = { 40.1, 31.2, 16, 1800 }, + [112] = { 58.3, 30.5, 16, 1800 }, + [113] = { 88.3, 28.9, 16, 1800 }, + [114] = { 59.4, 28.7, 16, 1800 }, + [115] = { 59.8, 28.6, 16, 1800 }, + [116] = { 68.6, 23.8, 16, 1800 }, + [117] = { 68.9, 22.8, 16, 1800 }, + [118] = { 70.5, 22.3, 16, 1800 }, + [119] = { 64.5, 22.1, 16, 1800 }, + [120] = { 63.8, 22, 16, 1800 }, + [121] = { 51.2, 21.1, 16, 1800 }, + [122] = { 63.8, 19.6, 16, 1800 }, + [123] = { 70.3, 19.5, 16, 1800 }, + [124] = { 58.1, 16.6, 16, 1800 }, + [125] = { 63.5, 16.1, 16, 1800 }, + [126] = { 86.2, 16.1, 16, 1800 }, + [127] = { 82.1, 15.6, 16, 1800 }, + [128] = { 71.5, 13.5, 16, 1800 }, + [129] = { 63.7, 9.4, 16, 1800 }, + [130] = { 54.6, 89.5, 17, 1800 }, + [131] = { 55.1, 88.7, 17, 1800 }, + [132] = { 51.4, 65.5, 17, 1800 }, + [133] = { 51.3, 64.5, 17, 1800 }, + [134] = { 39.3, 82.2, 28, 1800 }, + [135] = { 55.1, 80.5, 28, 1800 }, + [136] = { 44.1, 79, 28, 1800 }, + [137] = { 34.3, 78.3, 28, 1800 }, + [138] = { 49.1, 76.3, 28, 1800 }, + [139] = { 32.9, 74.6, 28, 1800 }, + [140] = { 51.1, 74.2, 28, 1800 }, + [141] = { 40.1, 73.1, 28, 1800 }, + [142] = { 53.3, 71.2, 28, 1800 }, + [143] = { 33, 67.2, 28, 1800 }, + [144] = { 50.2, 67, 28, 1800 }, + [145] = { 41.1, 65.4, 28, 1800 }, + [146] = { 45.1, 62.2, 28, 1800 }, + [147] = { 79.3, 60.6, 28, 1800 }, + [148] = { 33.2, 58.7, 28, 1800 }, + [149] = { 33.7, 53.5, 28, 1800 }, + [150] = { 38.6, 80.1, 33, 1800 }, + [151] = { 32.4, 75, 33, 1800 }, + [152] = { 34.7, 72.5, 33, 1800 }, + [153] = { 26.5, 62.6, 33, 1800 }, + [154] = { 25.2, 61.8, 33, 1800 }, + [155] = { 40.6, 51.8, 33, 1800 }, + [156] = { 38.3, 49.9, 33, 1800 }, + [157] = { 37.2, 49.5, 33, 1800 }, + [158] = { 39.7, 49.4, 33, 1800 }, + [159] = { 43.3, 48.5, 33, 1800 }, + [160] = { 41.9, 47.7, 33, 1800 }, + [161] = { 46.6, 45.2, 33, 1800 }, + [162] = { 33.6, 41.8, 33, 1800 }, + [163] = { 29.8, 41.4, 33, 1800 }, + [164] = { 30.6, 39.5, 33, 1800 }, + [165] = { 51.5, 28.2, 33, 1800 }, + [166] = { 52.3, 28.1, 33, 1800 }, + [167] = { 51.6, 27.6, 33, 1800 }, + [168] = { 49.9, 4.2, 33, 1800 }, + [169] = { 50.4, 4, 33, 1800 }, + [170] = { 41.7, 94.9, 36, 1800 }, + [171] = { 41, 86.9, 36, 1800 }, + [172] = { 35.5, 81.1, 36, 1800 }, + [173] = { 38.3, 74.9, 36, 1800 }, + [174] = { 37, 73.7, 36, 1800 }, + [175] = { 37.9, 71.9, 36, 1800 }, + [176] = { 43.2, 68.3, 36, 1800 }, + [177] = { 36, 67.4, 36, 1800 }, + [178] = { 38.4, 67, 36, 1800 }, + [179] = { 37.5, 66.5, 36, 1800 }, + [180] = { 34.2, 65.7, 36, 1800 }, + [181] = { 32.3, 65, 36, 1800 }, + [182] = { 53.1, 49.8, 36, 1800 }, + [183] = { 53.5, 48.4, 36, 1800 }, + [184] = { 51.3, 47.2, 36, 1800 }, + [185] = { 53.6, 46.6, 36, 1800 }, + [186] = { 48.4, 46.1, 36, 1800 }, + [187] = { 52.2, 46.1, 36, 1800 }, + [188] = { 38.5, 43.3, 36, 1800 }, + [189] = { 47.9, 43.2, 36, 1800 }, + [190] = { 47.4, 43, 36, 1800 }, + [191] = { 53.5, 42.9, 36, 1800 }, + [192] = { 37.8, 40.5, 36, 1800 }, + [193] = { 55.6, 40, 36, 1800 }, + [194] = { 52, 36.7, 36, 1800 }, + [195] = { 53.9, 36.7, 36, 1800 }, + [196] = { 33.2, 36.2, 36, 1800 }, + [197] = { 54.7, 35, 36, 1800 }, + [198] = { 49.2, 34.1, 36, 1800 }, + [199] = { 54.1, 33.9, 36, 1800 }, + [200] = { 46.6, 33.2, 36, 1800 }, + [201] = { 41.2, 33, 36, 1800 }, + [202] = { 41.4, 31.1, 36, 1800 }, + [203] = { 37.3, 28.5, 36, 1800 }, + [204] = { 32, 90.4, 38, 1800 }, + [205] = { 37.9, 90.2, 38, 1800 }, + [206] = { 25.7, 90.6, 45, 1800 }, + [207] = { 24.8, 87.9, 45, 1800 }, + [208] = { 25.7, 85.8, 45, 1800 }, + [209] = { 48.6, 85.2, 45, 1800 }, + [210] = { 25.7, 85.2, 45, 1800 }, + [211] = { 69.1, 82.7, 45, 1800 }, + [212] = { 48.9, 82.6, 45, 1800 }, + [213] = { 69.2, 82.2, 45, 1800 }, + [214] = { 68.8, 80.6, 45, 1800 }, + [215] = { 50.3, 80.4, 45, 1800 }, + [216] = { 69, 79.7, 45, 1800 }, + [217] = { 69.4, 78.7, 45, 1800 }, + [218] = { 21.8, 77.9, 45, 1800 }, + [219] = { 70.1, 77.2, 45, 1800 }, + [220] = { 68.9, 74.8, 45, 1800 }, + [221] = { 45.8, 72.4, 45, 1800 }, + [222] = { 23.5, 72.4, 45, 1800 }, + [223] = { 24.9, 71.7, 45, 1800 }, + [224] = { 38.7, 71.6, 45, 1800 }, + [225] = { 46.4, 71.2, 45, 1800 }, + [226] = { 49.4, 71, 45, 1800 }, + [227] = { 16, 70.8, 45, 1800 }, + [228] = { 22.8, 70.6, 45, 1800 }, + [229] = { 44, 70.2, 45, 1800 }, + [230] = { 25.7, 69.9, 45, 1800 }, + [231] = { 30.6, 69.5, 45, 1800 }, + [232] = { 28.9, 69.1, 45, 1800 }, + [233] = { 29.7, 69, 45, 1800 }, + [234] = { 34.1, 68.7, 45, 1800 }, + [235] = { 70.3, 67.8, 45, 1800 }, + [236] = { 47.6, 67.6, 45, 1800 }, + [237] = { 15.8, 66.8, 45, 1800 }, + [238] = { 68.6, 65.9, 45, 1800 }, + [239] = { 45, 65.9, 45, 1800 }, + [240] = { 32, 65, 45, 1800 }, + [241] = { 41.1, 64.5, 45, 1800 }, + [242] = { 38.6, 61.7, 45, 1800 }, + [243] = { 37, 57.1, 45, 1800 }, + [244] = { 35.4, 56.8, 45, 1800 }, + [245] = { 36.1, 54.5, 45, 1800 }, + [246] = { 78.9, 38.2, 45, 1800 }, + [247] = { 80.2, 36.8, 45, 1800 }, + [248] = { 79, 36.7, 45, 1800 }, + [249] = { 81.1, 36.4, 45, 1800 }, + [250] = { 80.2, 32.8, 45, 1800 }, + [251] = { 78.1, 31.2, 45, 1800 }, + [252] = { 77.5, 28.7, 45, 1800 }, + [253] = { 69.6, 63.3, 46, 1800 }, + [254] = { 76.2, 63.2, 46, 1800 }, + [255] = { 56.7, 59.3, 46, 1800 }, + [256] = { 52.1, 53.2, 46, 1800 }, + [257] = { 84.8, 48.8, 46, 1800 }, + [258] = { 58.8, 45.3, 46, 1800 }, + [259] = { 77, 43, 46, 1800 }, + [260] = { 83.2, 39.4, 46, 1800 }, + [261] = { 70.4, 20.4, 46, 1800 }, + [262] = { 67.6, 18.8, 46, 1800 }, + [263] = { 15.5, 16.2, 46, 300 }, + [264] = { 12.4, 13.8, 46, 300 }, + [265] = { 97.8, 11.2, 46, 1800 }, + [266] = { 74, 87.3, 47, 1800 }, + [267] = { 68.4, 77, 47, 1800 }, + [268] = { 62.3, 72.5, 47, 1800 }, + [269] = { 68.9, 72.3, 47, 1800 }, + [270] = { 47.4, 70.6, 47, 1800 }, + [271] = { 40.6, 65.9, 47, 1800 }, + [272] = { 25.6, 65.8, 47, 1800 }, + [273] = { 49.8, 65.3, 47, 1800 }, + [274] = { 51.7, 65.2, 47, 1800 }, + [275] = { 62.5, 64.2, 47, 1800 }, + [276] = { 33.9, 64.1, 47, 1800 }, + [277] = { 31.4, 59.4, 47, 1800 }, + [278] = { 41.1, 59.2, 47, 1800 }, + [279] = { 75.2, 57.1, 47, 1800 }, + [280] = { 67.9, 55.5, 47, 1800 }, + [281] = { 54.3, 54.3, 47, 1800 }, + [282] = { 50, 48.2, 47, 1800 }, + [283] = { 55.5, 44.4, 47, 1800 }, + [284] = { 39.8, 43.8, 47, 1800 }, + [285] = { 59.6, 43.7, 47, 1800 }, + [286] = { 56.9, 43.7, 47, 1800 }, + [287] = { 57.1, 43.4, 47, 1800 }, + [288] = { 59.8, 42.7, 47, 1800 }, + [289] = { 57.3, 41.3, 47, 1800 }, + [290] = { 33.5, 41.2, 47, 1800 }, + [291] = { 46.3, 37.8, 47, 1800 }, + [292] = { 58.6, 27.7, 47, 1800 }, + [293] = { 68.2, 19.8, 47, 1800 }, + [294] = { 17.9, 83.9, 51, 300 }, + [295] = { 57.1, 81.6, 51, 1800 }, + [296] = { 13.7, 80.7, 51, 300 }, + [297] = { 81.8, 79.1, 51, 1800 }, + [298] = { 84.8, 76, 51, 1800 }, + [299] = { 49.5, 75.9, 51, 1800 }, + [300] = { 24.9, 75.9, 51, 1800 }, + [301] = { 14.7, 75.4, 51, 300 }, + [302] = { 20.6, 74.5, 51, 1800 }, + [303] = { 73.2, 73, 51, 1800 }, + [304] = { 37.7, 71, 51, 1800 }, + [305] = { 57.5, 68.4, 51, 1800 }, + [306] = { 43.7, 65.7, 51, 1800 }, + [307] = { 39.4, 56.2, 51, 1800 }, + [308] = { 55, 51.2, 51, 1800 }, + [309] = { 51.8, 49.9, 51, 1800 }, + [310] = { 29.8, 49.3, 51, 1800 }, + [311] = { 48, 42.8, 51, 1800 }, + [312] = { 17.1, 42, 51, 1800 }, + [313] = { 31.3, 39, 51, 1800 }, + [314] = { 25.1, 38.1, 51, 1800 }, + [315] = { 42.7, 37.2, 51, 1800 }, + [316] = { 17.9, 34.4, 51, 1800 }, + [317] = { 36.3, 31.2, 51, 1800 }, + [318] = { 42.5, 28.7, 51, 1800 }, + [319] = { 42.1, 28.1, 51, 1800 }, + [320] = { 60.6, 25.8, 51, 1800 }, + [321] = { 47.9, 24.7, 51, 1800 }, + [322] = { 90, 66.5, 85, 1800 }, + [323] = { 20.9, 84, 139, 1800 }, + [324] = { 41.5, 75.4, 139, 1800 }, + [325] = { 20.7, 67, 139, 1800 }, + [326] = { 45.4, 31.5, 267, 1800 }, + [327] = { 44.7, 24.5, 267, 1800 }, + [328] = { 40, 19.4, 267, 1800 }, + [329] = { 42.3, 14, 267, 1800 }, + [330] = { 41.2, 12.9, 267, 1800 }, + [331] = { 42.1, 11.4, 267, 1800 }, + [332] = { 46.7, 8.2, 267, 1800 }, + [333] = { 40.3, 7.4, 267, 1800 }, + [334] = { 42.5, 7, 267, 1800 }, + [335] = { 41.7, 6.6, 267, 1800 }, + [336] = { 38.8, 5.9, 267, 1800 }, + [337] = { 37.1, 5.4, 267, 1800 }, + [338] = { 26, 68.9, 357, 1800 }, + [339] = { 27.9, 68.4, 357, 1800 }, + [340] = { 28.5, 67.9, 357, 1800 }, + [341] = { 83.1, 65.9, 357, 1800 }, + [342] = { 51.5, 60.4, 357, 1800 }, + [343] = { 52.4, 59.8, 357, 1800 }, + [344] = { 82, 58.2, 357, 1800 }, + [345] = { 71.9, 53, 357, 1800 }, + [346] = { 64.9, 52.1, 357, 1800 }, + [347] = { 57.5, 47, 357, 1800 }, + [348] = { 55.4, 33.6, 357, 1800 }, + [349] = { 44.2, 25.6, 357, 1800 }, + [350] = { 51.6, 24.8, 357, 1800 }, + [351] = { 37.7, 20.5, 357, 1800 }, + [352] = { 17.8, 42.3, 400, 1800 }, + [353] = { 36.2, 92.4, 405, 1800 }, + [354] = { 36.1, 86.5, 405, 1800 }, + [355] = { 39.4, 85.4, 405, 1800 }, + [356] = { 24.7, 82.4, 405, 1800 }, + [357] = { 35, 80.7, 405, 1800 }, + [358] = { 54.8, 79.6, 405, 1800 }, + [359] = { 48.1, 78.9, 405, 1800 }, + [360] = { 27.1, 78.7, 405, 1800 }, + [361] = { 74.5, 76.4, 405, 1800 }, + [362] = { 71.5, 76.3, 405, 1800 }, + [363] = { 76.5, 75.4, 405, 1800 }, + [364] = { 30.5, 74.1, 405, 1800 }, + [365] = { 57.3, 73.4, 405, 1800 }, + [366] = { 55.8, 73.1, 405, 1800 }, + [367] = { 75, 67.6, 405, 1800 }, + [368] = { 33.3, 65.6, 405, 1800 }, + [369] = { 31.9, 65.2, 405, 1800 }, + [370] = { 31.9, 65, 405, 1800 }, + [371] = { 31.2, 62.2, 405, 1800 }, + [372] = { 29.4, 62, 405, 1800 }, + [373] = { 33, 61.6, 405, 1800 }, + [374] = { 29.1, 61.6, 405, 1800 }, + [375] = { 36.3, 60.5, 405, 1800 }, + [376] = { 34.9, 60.2, 405, 1800 }, + [377] = { 29.7, 59.7, 405, 1800 }, + [378] = { 31.5, 59.4, 405, 1800 }, + [379] = { 30, 59.3, 405, 1800 }, + [380] = { 29.3, 58.4, 405, 1800 }, + [381] = { 30.2, 58.3, 405, 1800 }, + [382] = { 27.1, 58.2, 405, 1800 }, + [383] = { 29.2, 57.7, 405, 1800 }, + [384] = { 29.2, 56.2, 405, 1800 }, + [385] = { 33.1, 53.2, 405, 1800 }, + [386] = { 30.8, 52.9, 405, 1800 }, + [387] = { 32.2, 52.1, 405, 1800 }, + [388] = { 34, 14.7, 405, 1800 }, + [389] = { 75.2, 10.8, 405, 1800 }, + [390] = { 51.5, 82.6, 406, 1800 }, + [391] = { 33.5, 67.5, 406, 1800 }, + [392] = { 40, 67.2, 406, 1800 }, + [393] = { 35.8, 66.9, 406, 1800 }, + [394] = { 42.5, 66, 406, 1800 }, + [395] = { 40.4, 51.1, 406, 1800 }, + [396] = { 34.5, 77.9, 440, 1800 }, + [397] = { 55.2, 75.9, 440, 1800 }, + [398] = { 57.7, 70.5, 440, 1800 }, + [399] = { 55.5, 69.9, 440, 1800 }, + [400] = { 56.8, 69.6, 440, 1800 }, + [401] = { 57, 69, 440, 1800 }, + [402] = { 29.7, 68.7, 440, 1800 }, + [403] = { 59.2, 67.8, 440, 1800 }, + [404] = { 31.9, 66.7, 440, 1800 }, + [405] = { 30.9, 63.4, 440, 1800 }, + [406] = { 63.7, 62.5, 440, 1800 }, + [407] = { 41.4, 58, 440, 1800 }, + [408] = { 41.4, 57.8, 440, 1800 }, + [409] = { 41.4, 54.4, 440, 1800 }, + [410] = { 71.9, 47, 440, 1800 }, + [411] = { 33.6, 47, 440, 1800 }, + [412] = { 31.6, 46.1, 440, 1800 }, + [413] = { 33.2, 45.7, 440, 1800 }, + [414] = { 33, 44.7, 440, 1800 }, + [415] = { 32.9, 44.4, 440, 1800 }, + [416] = { 35, 42.3, 440, 1800 }, + [417] = { 33.4, 41.6, 440, 1800 }, + [418] = { 34.4, 40.1, 440, 1800 }, + [419] = { 33.4, 37.6, 440, 1800 }, + [420] = { 36.7, 33.3, 440, 1800 }, + [421] = { 37, 28.2, 440, 1800 }, + [422] = { 38.2, 27.2, 440, 1800 }, + [423] = { 57.4, 26.3, 440, 1800 }, + [424] = { 43.9, 25.9, 440, 1800 }, + [425] = { 54.3, 24.5, 440, 1800 }, + [426] = { 48.6, 23.7, 440, 1800 }, + [427] = { 47.1, 23.7, 440, 1800 }, + [428] = { 82.6, 73.8, 490, 1800 }, + [429] = { 84.4, 71.1, 490, 1800 }, + [430] = { 82.5, 66.4, 490, 1800 }, + [431] = { 52.3, 64.9, 490, 1800 }, + [432] = { 78.9, 57.7, 490, 1800 }, + [433] = { 32.9, 49.2, 490, 1800 }, + [434] = { 10.3, 45.9, 490, 1800 }, + [435] = { 62.7, 18.2, 490, 1800 }, + [436] = { 40.5, 44.5, 618, 1800 }, + [437] = { 34.9, 44.3, 618, 1800 }, + [438] = { 47.8, 35.7, 618, 1800 }, + [439] = { 22.8, 52.3, 1337, 1800 }, + [440] = { 51.8, 51.5, 1337, 1800 }, + [441] = { 56.3, 94.8, 1337, 604800 }, + [442] = { 48.8, 29.9, 1337, 604800 }, + [443] = { 15.9, 88.3, 1377, 1800 }, + [444] = { 68.4, 49.1, 1377, 1800 }, + [445] = { 26, 15.8, 1377, 1800 }, + [446] = { 50.1, 13.6, 1377, 1800 }, + [447] = { 68, 81.7, 1941, 1800 }, + [448] = { 57.3, 76.2, 2100, 1800 }, + [449] = { 49.4, 74, 2100, 1800 }, + [450] = { 49.6, 72.9, 2100, 1800 }, + [451] = { 45.7, 57.5, 2100, 1800 }, + [452] = { 36, 56.7, 2100, 1800 }, + [453] = { 55.6, 54.5, 2100, 1800 }, + [454] = { 34.3, 54.2, 2100, 1800 }, + [455] = { 73.6, 48.3, 2100, 1800 }, + [456] = { 65.7, 46.5, 2100, 1800 }, + [457] = { 37.5, 44.1, 2100, 1800 }, + [458] = { 47.5, 42.4, 2100, 1800 }, + [459] = { 39.2, 41.8, 2100, 1800 }, + [460] = { 35.5, 37.1, 2100, 1800 }, + [461] = { 40.2, 36.2, 2100, 1800 }, + [462] = { 23.6, 35.5, 2100, 1800 }, + [463] = { 34.8, 32.8, 2100, 1800 }, + [464] = { 35, 25.1, 2100, 1800 }, + [465] = { 56, 8.7, 2100, 1800 }, + [466] = { 43.7, 7.1, 2100, 1800 }, + [467] = { 51.5, 2.7, 2100, 1800 }, + [468] = { 22.4, 62.4, 2100, 604800 }, + [469] = { 42.2, 60.3, 2100, 604800 }, + [470] = { 33.2, 18.2, 2100, 604800 }, + [471] = { 32, 60.3, 2557, 1800 }, + [472] = { 11.8, 13.5, 2557, 1800 }, + [473] = { 52.5, 95.8, 2597, 1800 }, + [474] = { 50.4, 92.7, 2597, 1800 }, + [475] = { 41.4, 38.8, 2597, 1800 }, + [476] = { 42, 38, 2597, 1800 }, + [477] = { 40.1, 35.3, 2597, 1800 }, + [478] = { 47.1, 0.1, 3478, 1800 }, + [479] = { 45.3, 52.2, 5024, 1800 }, + [480] = { 60.9, 49.8, 5024, 1800 }, + [481] = { 41.7, 45.8, 5024, 1800 }, + [482] = { 55.5, 43.7, 5024, 1800 }, + [483] = { 58.2, 43.6, 5024, 1800 }, + [484] = { 54.8, 33.9, 5024, 1800 }, + [485] = { 26, 75.1, 5179, 1800 }, + [486] = { 24.4, 70.3, 5179, 1800 }, + [487] = { 29.4, 68.5, 5179, 1800 }, + [488] = { 21.6, 67.2, 5179, 1800 }, + [489] = { 20.7, 64.4, 5179, 1800 }, + [490] = { 53.5, 64.2, 5179, 1800 }, + [491] = { 62.5, 64.1, 5179, 1800 }, + [492] = { 18.7, 63.9, 5179, 1800 }, + [493] = { 22, 63.4, 5179, 1800 }, + [494] = { 25.9, 63, 5179, 1800 }, + [495] = { 61.6, 63, 5179, 1800 }, + [496] = { 55.1, 61.1, 5179, 1800 }, + [497] = { 62.5, 60.9, 5179, 1800 }, + [498] = { 19.4, 59.9, 5179, 1800 }, + [499] = { 20.9, 59.9, 5179, 1800 }, + [500] = { 15.3, 59, 5179, 1800 }, + [501] = { 19.5, 58.9, 5179, 1800 }, + [502] = { 56.6, 58.7, 5179, 1800 }, + [503] = { 56.5, 56.1, 5179, 1800 }, + [504] = { 54.7, 55.8, 5179, 1800 }, + [505] = { 21.3, 54.8, 5179, 1800 }, + [506] = { 63.4, 54.1, 5179, 1800 }, + [507] = { 23.3, 53.4, 5179, 1800 }, + [508] = { 16.2, 53.4, 5179, 1800 }, + [509] = { 61.5, 52, 5179, 1800 }, + [510] = { 12.8, 48.9, 5179, 1800 }, + [511] = { 18.7, 48, 5179, 1800 }, + [512] = { 40.4, 47.1, 5179, 1800 }, + [513] = { 42.2, 45.5, 5179, 1800 }, + [514] = { 24.7, 44.9, 5179, 1800 }, + [515] = { 14.8, 44.5, 5179, 1800 }, + [516] = { 40.4, 44.3, 5179, 1800 }, + [517] = { 22.1, 44.1, 5179, 1800 }, + [518] = { 43.5, 43.9, 5179, 1800 }, + [519] = { 23.7, 43.6, 5179, 1800 }, + [520] = { 18.2, 43.4, 5179, 1800 }, + [521] = { 44.8, 42.2, 5179, 1800 }, + [522] = { 41.2, 41.9, 5179, 1800 }, + [523] = { 21.4, 41.9, 5179, 1800 }, + [524] = { 12.9, 40, 5179, 1800 }, + [525] = { 27.3, 36, 5179, 1800 }, + [526] = { 29, 35.4, 5179, 1800 }, + [527] = { 30.7, 35.3, 5179, 1800 }, + [528] = { 29.6, 34.3, 5179, 1800 }, + [529] = { 25, 33.6, 5179, 1800 }, + [530] = { 28.5, 32.8, 5179, 1800 }, + [531] = { 26.5, 32.3, 5179, 1800 }, + [532] = { 28.4, 30.9, 5179, 1800 }, + [533] = { 91.9, 47.3, 5581, 300 }, + [534] = { 89.1, 45.1, 5581, 300 }, + [535] = { 96.8, 41.8, 5581, 1800 }, + [536] = { 89.7, 41.5, 5581, 300 }, + [537] = { 93.8, 40.8, 5581, 1800 }, + [538] = { 91.4, 18.5, 5581, 1800 }, + [539] = { 96.9, 15.7, 5581, 1800 }, + [540] = { 91.9, 13.2, 5581, 1800 }, + [541] = { 7.6, 99.7, 5602, 1800 }, + [542] = { 14.9, 90.6, 5602, 1800 }, + [543] = { 18, 90.5, 5602, 1800 }, + }, + }, + [2041] = { + ["coords"] = { + [1] = { 84.4, 74.6, 8, 1800 }, + [2] = { 80.9, 64.5, 8, 1800 }, + [3] = { 81.2, 37.6, 8, 1800 }, + [4] = { 63.5, 73.5, 11, 1800 }, + [5] = { 63.8, 69.7, 11, 1800 }, + [6] = { 62.5, 64, 11, 1800 }, + [7] = { 63.5, 63.6, 11, 1800 }, + [8] = { 61.9, 60.6, 11, 1800 }, + [9] = { 60.6, 57.4, 11, 1800 }, + [10] = { 61.8, 53.5, 11, 1800 }, + [11] = { 58.8, 50.3, 11, 1800 }, + [12] = { 60.4, 50, 11, 1800 }, + [13] = { 56.7, 48.9, 11, 1800 }, + [14] = { 55.4, 46.2, 11, 1800 }, + [15] = { 55.1, 45.3, 11, 1800 }, + [16] = { 53.9, 45.1, 11, 1800 }, + [17] = { 55.9, 45, 11, 1800 }, + [18] = { 56.5, 45, 11, 1800 }, + [19] = { 55.4, 44, 11, 1800 }, + [20] = { 53.8, 43.1, 11, 1800 }, + [21] = { 53.5, 40.9, 11, 1800 }, + [22] = { 50.9, 38.2, 11, 1800 }, + [23] = { 54.3, 38.1, 11, 1800 }, + [24] = { 52.7, 38.1, 11, 1800 }, + [25] = { 51.6, 36.5, 11, 1800 }, + [26] = { 55.2, 36.1, 11, 1800 }, + [27] = { 44.5, 35.5, 11, 1800 }, + [28] = { 39.5, 35, 11, 1800 }, + [29] = { 15.9, 34.9, 11, 1800 }, + [30] = { 49.5, 34.9, 11, 1800 }, + [31] = { 45.1, 34, 11, 1800 }, + [32] = { 31.6, 33.9, 11, 1800 }, + [33] = { 38.8, 33.7, 11, 1800 }, + [34] = { 49.6, 33.3, 11, 1800 }, + [35] = { 40.3, 32.9, 11, 1800 }, + [36] = { 47.6, 31.9, 11, 1800 }, + [37] = { 40.1, 31.9, 11, 1800 }, + [38] = { 42.5, 31.8, 11, 1800 }, + [39] = { 46.9, 31.8, 11, 1800 }, + [40] = { 44.6, 31.8, 11, 1800 }, + [41] = { 51.1, 31.4, 11, 1800 }, + [42] = { 53.8, 31.2, 11, 1800 }, + [43] = { 15.4, 31.2, 11, 1800 }, + [44] = { 46.3, 30.4, 11, 1800 }, + [45] = { 45.3, 30.1, 11, 1800 }, + [46] = { 40.1, 30, 11, 1800 }, + [47] = { 39.5, 29.5, 11, 1800 }, + [48] = { 45.6, 29, 11, 1800 }, + [49] = { 41.4, 29, 11, 1800 }, + [50] = { 40.1, 28.2, 11, 1800 }, + [51] = { 29, 27.8, 11, 1800 }, + [52] = { 17.3, 27.3, 11, 1800 }, + [53] = { 19.1, 23.6, 11, 1800 }, + [54] = { 30.8, 23.1, 11, 1800 }, + [55] = { 31.7, 22, 11, 1800 }, + [56] = { 28.4, 21.2, 11, 1800 }, + [57] = { 32.1, 18.9, 11, 1800 }, + [58] = { 49.3, 79.1, 15, 1800 }, + [59] = { 50.6, 73.2, 15, 1800 }, + [60] = { 39.7, 71.7, 15, 1800 }, + [61] = { 56.6, 70.9, 15, 1800 }, + [62] = { 44.8, 61.9, 15, 1800 }, + [63] = { 51, 61.9, 15, 1800 }, + [64] = { 46.7, 59.3, 15, 1800 }, + [65] = { 39.1, 58.6, 15, 1800 }, + [66] = { 43.6, 56.9, 15, 1800 }, + [67] = { 38.2, 55, 15, 1800 }, + [68] = { 46.1, 54, 15, 1800 }, + [69] = { 42.5, 53.7, 15, 1800 }, + [70] = { 39.4, 52.4, 15, 1800 }, + [71] = { 42.1, 48.5, 15, 1800 }, + [72] = { 36.3, 43.7, 15, 1800 }, + [73] = { 54, 33.6, 15, 1800 }, + [74] = { 41.2, 26.7, 15, 1800 }, + [75] = { 48.5, 21.7, 15, 1800 }, + [76] = { 41, 21.5, 15, 1800 }, + [77] = { 45.3, 20.2, 15, 1800 }, + [78] = { 51.4, 17.5, 15, 1800 }, + [79] = { 36.9, 16.2, 15, 1800 }, + [80] = { 40.3, 15.3, 15, 1800 }, + [81] = { 40, 14, 15, 1800 }, + [82] = { 55.3, 82.4, 17, 1800 }, + [83] = { 54.3, 76.6, 17, 1800 }, + [84] = { 54.6, 62.4, 17, 1800 }, + [85] = { 56.4, 61.9, 17, 1800 }, + [86] = { 56.2, 61.2, 17, 1800 }, + [87] = { 46.1, 100, 28, 1800 }, + [88] = { 45.5, 98.8, 28, 1800 }, + [89] = { 34.9, 72.3, 33, 1800 }, + [90] = { 27.8, 68.5, 33, 1800 }, + [91] = { 29.7, 68.5, 33, 1800 }, + [92] = { 29.8, 67.5, 33, 1800 }, + [93] = { 29, 67.4, 33, 1800 }, + [94] = { 29, 66.2, 33, 1800 }, + [95] = { 24.2, 64.1, 33, 1800 }, + [96] = { 24.3, 62.6, 33, 1800 }, + [97] = { 25.8, 59.2, 33, 1800 }, + [98] = { 27.8, 58, 33, 1800 }, + [99] = { 28, 56, 33, 1800 }, + [100] = { 23.3, 53.8, 33, 1800 }, + [101] = { 23.1, 51.3, 33, 1800 }, + [102] = { 25.4, 50.6, 33, 1800 }, + [103] = { 27.1, 47.7, 33, 1800 }, + [104] = { 27.3, 45.3, 33, 1800 }, + [105] = { 27.3, 43.1, 33, 1800 }, + [106] = { 29.3, 37.7, 33, 1800 }, + [107] = { 32.7, 36.2, 33, 1800 }, + [108] = { 36.4, 33.9, 33, 1800 }, + [109] = { 37.6, 32.6, 33, 1800 }, + [110] = { 36, 32.4, 33, 1800 }, + [111] = { 39.4, 31.4, 33, 1800 }, + [112] = { 40.1, 29.5, 33, 1800 }, + [113] = { 38.9, 29.4, 33, 1800 }, + [114] = { 38.9, 27.3, 33, 1800 }, + [115] = { 30.3, 26.4, 33, 1800 }, + [116] = { 39.3, 25.2, 33, 1800 }, + [117] = { 35.2, 24.4, 33, 1800 }, + [118] = { 34.7, 24, 33, 1800 }, + [119] = { 35.6, 23.2, 33, 1800 }, + [120] = { 35.5, 22.3, 33, 1800 }, + [121] = { 34.8, 22.1, 33, 1800 }, + [122] = { 39.6, 22.1, 33, 1800 }, + [123] = { 41, 22, 33, 1800 }, + [124] = { 29.3, 21.9, 33, 1800 }, + [125] = { 34.6, 20.9, 33, 1800 }, + [126] = { 33.3, 20.4, 33, 1800 }, + [127] = { 40.3, 19.6, 33, 1800 }, + [128] = { 41.5, 15.2, 33, 1800 }, + [129] = { 40, 14.1, 33, 1800 }, + [130] = { 40.1, 12.2, 33, 1800 }, + [131] = { 40, 11.7, 33, 1800 }, + [132] = { 36.7, 10, 33, 1800 }, + [133] = { 33.9, 9.4, 33, 1800 }, + [134] = { 25, 8.7, 33, 1800 }, + [135] = { 23.6, 8.2, 33, 1800 }, + [136] = { 31.8, 8, 33, 1800 }, + [137] = { 30.7, 7, 33, 1800 }, + [138] = { 67.8, 95.9, 36, 1800 }, + [139] = { 68.5, 90.1, 36, 1800 }, + [140] = { 72.5, 69.3, 36, 1800 }, + [141] = { 74, 65.2, 36, 1800 }, + [142] = { 77.2, 64.5, 36, 1800 }, + [143] = { 79.8, 61.5, 36, 1800 }, + [144] = { 78.9, 59.1, 36, 1800 }, + [145] = { 81.6, 57.2, 36, 1800 }, + [146] = { 9, 55.4, 36, 1800 }, + [147] = { 13.5, 55.4, 36, 1800 }, + [148] = { 9.4, 55.2, 36, 1800 }, + [149] = { 13.9, 55.1, 36, 1800 }, + [150] = { 13.4, 54.9, 36, 1800 }, + [151] = { 16.7, 54.2, 36, 1800 }, + [152] = { 17.2, 53.8, 36, 1800 }, + [153] = { 83.9, 53.5, 36, 1800 }, + [154] = { 16.2, 52.9, 36, 1800 }, + [155] = { 17.1, 52.9, 36, 1800 }, + [156] = { 83, 51.7, 36, 1800 }, + [157] = { 20, 50.1, 36, 1800 }, + [158] = { 21, 50.1, 36, 1800 }, + [159] = { 20.3, 49.7, 36, 1800 }, + [160] = { 20.6, 49.2, 36, 1800 }, + [161] = { 23.8, 46.8, 36, 1800 }, + [162] = { 23.3, 46.4, 36, 1800 }, + [163] = { 25.9, 44, 36, 1800 }, + [164] = { 26, 43.1, 36, 1800 }, + [165] = { 29.6, 39.4, 36, 1800 }, + [166] = { 31, 34.7, 36, 1800 }, + [167] = { 30.9, 33, 36, 1800 }, + [168] = { 32.3, 31.7, 36, 1800 }, + [169] = { 33.2, 30.9, 36, 1800 }, + [170] = { 32.4, 30.5, 36, 1800 }, + [171] = { 33.5, 30, 36, 1800 }, + [172] = { 33.1, 29.7, 36, 1800 }, + [173] = { 36.3, 26.1, 36, 1800 }, + [174] = { 36, 24.8, 36, 1800 }, + [175] = { 38, 21.4, 36, 1800 }, + [176] = { 37.1, 20.6, 36, 1800 }, + [177] = { 37.2, 15, 36, 1800 }, + [178] = { 36.3, 13.6, 36, 1800 }, + [179] = { 37.2, 13.1, 36, 1800 }, + [180] = { 36.6, 12.5, 36, 1800 }, + [181] = { 45.1, 81.9, 45, 1800 }, + [182] = { 45.8, 81.4, 45, 1800 }, + [183] = { 45.6, 78.4, 45, 1800 }, + [184] = { 45.6, 77.5, 45, 1800 }, + [185] = { 45.6, 75.7, 45, 1800 }, + [186] = { 46.7, 71.7, 45, 1800 }, + [187] = { 44.3, 70.4, 45, 1800 }, + [188] = { 68.9, 70.4, 45, 1800 }, + [189] = { 69, 70, 45, 1800 }, + [190] = { 46.4, 70, 45, 1800 }, + [191] = { 66.7, 69.7, 45, 1800 }, + [192] = { 44.3, 69.7, 45, 1800 }, + [193] = { 44.7, 69.6, 45, 1800 }, + [194] = { 66.8, 69.2, 45, 1800 }, + [195] = { 45.4, 69.1, 45, 1800 }, + [196] = { 66.4, 68.7, 45, 1800 }, + [197] = { 69.3, 68.7, 45, 1800 }, + [198] = { 45, 68.6, 45, 1800 }, + [199] = { 69, 68.4, 45, 1800 }, + [200] = { 69.5, 68.1, 45, 1800 }, + [201] = { 69.4, 67.2, 45, 1800 }, + [202] = { 69, 66.7, 45, 1800 }, + [203] = { 66, 65.6, 45, 1800 }, + [204] = { 66.6, 65, 45, 1800 }, + [205] = { 66.3, 64.7, 45, 1800 }, + [206] = { 66.5, 64.3, 45, 1800 }, + [207] = { 67.2, 64.3, 45, 1800 }, + [208] = { 67.5, 62.8, 45, 1800 }, + [209] = { 67.3, 62.4, 45, 1800 }, + [210] = { 67.7, 62.3, 45, 1800 }, + [211] = { 68.5, 62.1, 45, 1800 }, + [212] = { 68, 62.1, 45, 1800 }, + [213] = { 67.4, 61.7, 45, 1800 }, + [214] = { 68.2, 61.3, 45, 1800 }, + [215] = { 23.5, 54.9, 45, 1800 }, + [216] = { 28.9, 54.8, 45, 1800 }, + [217] = { 29.4, 54.6, 45, 1800 }, + [218] = { 30.1, 53.9, 45, 1800 }, + [219] = { 29.4, 53.8, 45, 1800 }, + [220] = { 23.1, 53.3, 45, 1800 }, + [221] = { 29.6, 52.9, 45, 1800 }, + [222] = { 23.4, 51.9, 45, 1800 }, + [223] = { 23.5, 50.8, 45, 1800 }, + [224] = { 24, 50.1, 45, 1800 }, + [225] = { 24.5, 49.7, 45, 1800 }, + [226] = { 25.4, 49, 45, 1800 }, + [227] = { 24.9, 48.8, 45, 1800 }, + [228] = { 41.2, 62.1, 47, 1800 }, + [229] = { 63.4, 60.8, 47, 1800 }, + [230] = { 58.2, 56.1, 47, 1800 }, + [231] = { 72.3, 48.1, 47, 1800 }, + [232] = { 30.2, 43.6, 47, 1800 }, + [233] = { 66.5, 41.4, 47, 1800 }, + [234] = { 63.2, 39.7, 47, 1800 }, + [235] = { 57.7, 38.1, 47, 1800 }, + [236] = { 46.8, 36.5, 47, 1800 }, + [237] = { 52.7, 36.3, 47, 1800 }, + [238] = { 69.5, 42.9, 130, 1800 }, + [239] = { 72.5, 42.9, 130, 1800 }, + [240] = { 69.8, 42.8, 130, 1800 }, + [241] = { 72.7, 42.7, 130, 1800 }, + [242] = { 72.4, 42.6, 130, 1800 }, + [243] = { 74.3, 41.2, 130, 1800 }, + [244] = { 74.9, 41.2, 130, 1800 }, + [245] = { 76.8, 39.4, 130, 1800 }, + [246] = { 77.5, 39.4, 130, 1800 }, + [247] = { 77.1, 39.1, 130, 1800 }, + [248] = { 77.2, 38.8, 130, 1800 }, + [249] = { 79.4, 37.2, 130, 1800 }, + [250] = { 79, 36.9, 130, 1800 }, + [251] = { 80.8, 35.3, 130, 1800 }, + [252] = { 80.8, 34.7, 130, 1800 }, + [253] = { 83.2, 32.2, 130, 1800 }, + [254] = { 66.9, 35.8, 267, 1800 }, + [255] = { 68.1, 32.4, 267, 1800 }, + [256] = { 68.8, 27.2, 267, 1800 }, + [257] = { 72.3, 9.1, 267, 1800 }, + [258] = { 73.6, 5.4, 267, 1800 }, + [259] = { 76.4, 4.8, 267, 1800 }, + [260] = { 78.7, 2.2, 267, 1800 }, + [261] = { 67, 83.2, 331, 1800 }, + [262] = { 64.1, 67.8, 331, 1800 }, + [263] = { 65.7, 65.8, 331, 1800 }, + [264] = { 81.6, 64.2, 331, 1800 }, + [265] = { 78.3, 63.6, 331, 1800 }, + [266] = { 67.5, 63.3, 331, 1800 }, + [267] = { 79.2, 62.3, 331, 1800 }, + [268] = { 92.4, 60, 331, 1800 }, + [269] = { 78.7, 53.9, 331, 1800 }, + [270] = { 74.5, 51, 331, 1800 }, + [271] = { 71.2, 52.8, 357, 1800 }, + [272] = { 46.4, 52.7, 357, 1800 }, + [273] = { 47.1, 52.6, 357, 1800 }, + [274] = { 62.3, 52.5, 357, 1800 }, + [275] = { 47.9, 48.9, 357, 1800 }, + [276] = { 47.9, 48.5, 357, 1800 }, + [277] = { 47.4, 48.2, 357, 1800 }, + [278] = { 47.8, 47, 357, 1800 }, + [279] = { 48, 46.6, 357, 1800 }, + [280] = { 48.2, 46.3, 357, 1800 }, + [281] = { 50.9, 45.1, 357, 1800 }, + [282] = { 75.6, 41.2, 357, 1800 }, + [283] = { 73.7, 37, 357, 1800 }, + [284] = { 73.6, 36.8, 357, 1800 }, + [285] = { 49.5, 25, 357, 1800 }, + [286] = { 48.5, 24.7, 357, 1800 }, + [287] = { 50, 23.2, 357, 1800 }, + [288] = { 50, 14.6, 357, 1800 }, + [289] = { 48.7, 9.4, 357, 1800 }, + [290] = { 53.9, 7.5, 357, 1800 }, + [291] = { 45.4, 81.3, 405, 1800 }, + [292] = { 57.2, 80.7, 405, 1800 }, + [293] = { 49.4, 80.4, 405, 1800 }, + [294] = { 44, 78.3, 405, 1800 }, + [295] = { 53.2, 78.1, 405, 1800 }, + [296] = { 72.3, 77.3, 405, 1800 }, + [297] = { 51.7, 76.7, 405, 1800 }, + [298] = { 74.6, 75, 405, 1800 }, + [299] = { 75.2, 71, 405, 1800 }, + [300] = { 59.4, 70.6, 405, 1800 }, + [301] = { 61.5, 70.5, 405, 1800 }, + [302] = { 71.8, 70.1, 405, 1800 }, + [303] = { 86.8, 84.3, 718, 99999999 }, + [304] = { 65.9, 81.1, 718, 9999999 }, + [305] = { 43.4, 31.7, 718, 604800 }, + [306] = { 0.9, 14.3, 2557, 1800 }, + [307] = { 3.8, 4.4, 2557, 1800 }, + [308] = { 42.3, 44, 5077, 10800 }, + [309] = { 48.3, 43.6, 5077, 10800 }, + [310] = { 52.8, 37.9, 5077, 10800 }, + [311] = { 38.7, 32.1, 5077, 10800 }, + [312] = { 50.2, 29.5, 5077, 10800 }, + [313] = { 37.5, 25.1, 5077, 10800 }, + [314] = { 51.4, 20.2, 5077, 10800 }, + [315] = { 31.7, 87.8, 5135, 604800 }, + [316] = { 49.1, 73, 5163, 604800 }, + [317] = { 48.6, 60.5, 5163, 604800 }, + [318] = { 42.3, 67.1, 5561, 1800 }, + [319] = { 37.4, 57.7, 5561, 1800 }, + [320] = { 42.9, 51.4, 5561, 1800 }, + [321] = { 38.8, 49.1, 5561, 1800 }, + [322] = { 47.1, 44.5, 5561, 1800 }, + [323] = { 58.8, 53, 5581, 1800 }, + [324] = { 37.3, 52.5, 5581, 1800 }, + [325] = { 50.9, 51.9, 5581, 1800 }, + [326] = { 52.5, 49.9, 5581, 1800 }, + [327] = { 60.9, 55.6, 5602, 1800 }, + [328] = { 54.7, 51.2, 5602, 1800 }, + [329] = { 44.7, 47.8, 5602, 1800 }, + [330] = { 48.1, 46.3, 5602, 1800 }, + [331] = { 17.5, 35.4, 5602, 1800 }, + [332] = { 17.8, 32.5, 5602, 1800 }, + [333] = { 16.8, 28.2, 5602, 1800 }, + [334] = { 17.5, 27.8, 5602, 1800 }, + [335] = { 16.3, 25.5, 5602, 1800 }, + [336] = { 15.3, 23.1, 5602, 1800 }, + [337] = { 16.2, 20.1, 5602, 1800 }, + [338] = { 57.4, 19.1, 5602, 1800 }, + [339] = { 13.9, 17.6, 5602, 1800 }, + [340] = { 15.1, 17.3, 5602, 1800 }, + [341] = { 12.3, 16.5, 5602, 1800 }, + [342] = { 11.3, 14.4, 5602, 1800 }, + [343] = { 11.1, 13.8, 5602, 1800 }, + [344] = { 10.1, 13.6, 5602, 1800 }, + [345] = { 11.7, 13.5, 5602, 1800 }, + [346] = { 12.2, 13.5, 5602, 1800 }, + [347] = { 11.3, 12.8, 5602, 1800 }, + [348] = { 10.1, 12.1, 5602, 1800 }, + [349] = { 9.8, 10.3, 5602, 1800 }, + [350] = { 7.9, 8.3, 5602, 1800 }, + [351] = { 10.5, 8.2, 5602, 1800 }, + [352] = { 9.2, 8.2, 5602, 1800 }, + [353] = { 8.4, 7, 5602, 1800 }, + [354] = { 11.1, 6.7, 5602, 1800 }, + [355] = { 3, 6.2, 5602, 1800 }, + [356] = { 6.8, 5.7, 5602, 1800 }, + [357] = { 3.4, 5.1, 5602, 1800 }, + [358] = { 6.9, 4.5, 5602, 1800 }, + [359] = { 5.3, 3.4, 5602, 1800 }, + [360] = { 1.4, 3.4, 5602, 1800 }, + [361] = { 4.8, 3.3, 5602, 1800 }, + [362] = { 3, 3.3, 5602, 1800 }, + [363] = { 8, 3.1, 5602, 1800 }, + [364] = { 10, 2.9, 5602, 1800 }, + [365] = { 4.3, 2.3, 5602, 1800 }, + [366] = { 3.5, 2, 5602, 1800 }, + [367] = { 3.7, 1.2, 5602, 1800 }, + [368] = { 0.5, 1.2, 5602, 1800 }, + }, + }, + [2042] = { + ["coords"] = { + [1] = { 30.3, 91.4, 1, 1800 }, + [2] = { 64.6, 70.5, 3, 1800 }, + [3] = { 64.7, 70.1, 3, 1800 }, + [4] = { 63.7, 65.9, 3, 1800 }, + [5] = { 56.6, 65, 3, 1800 }, + [6] = { 56.3, 63.8, 3, 1800 }, + [7] = { 54.1, 59.7, 3, 1800 }, + [8] = { 61.6, 55, 3, 1800 }, + [9] = { 48.4, 54.3, 3, 1800 }, + [10] = { 40, 51, 3, 1800 }, + [11] = { 35.7, 50.7, 3, 1800 }, + [12] = { 40.4, 50.2, 3, 1800 }, + [13] = { 51, 48.4, 3, 1800 }, + [14] = { 51, 47.9, 3, 1800 }, + [15] = { 52, 46.5, 3, 1800 }, + [16] = { 64.4, 45.1, 3, 1800 }, + [17] = { 64.4, 44.8, 3, 1800 }, + [18] = { 64.8, 43.9, 3, 1800 }, + [19] = { 35.5, 38.6, 3, 1800 }, + [20] = { 61.5, 37.8, 3, 1800 }, + [21] = { 61.9, 36.9, 3, 1800 }, + [22] = { 61.3, 36.4, 3, 1800 }, + [23] = { 62.9, 36.2, 3, 1800 }, + [24] = { 13.9, 65.3, 8, 1800 }, + [25] = { 13.2, 65.2, 8, 1800 }, + [26] = { 12.1, 64.7, 8, 1800 }, + [27] = { 11.6, 64, 8, 1800 }, + [28] = { 10.6, 63.8, 8, 1800 }, + [29] = { 21.6, 62.4, 8, 1800 }, + [30] = { 27.5, 60.9, 8, 1800 }, + [31] = { 24.3, 60.2, 8, 1800 }, + [32] = { 27.3, 60, 8, 1800 }, + [33] = { 24.5, 59.1, 8, 1800 }, + [34] = { 15.3, 58.7, 8, 1800 }, + [35] = { 21.6, 58.7, 8, 1800 }, + [36] = { 21.2, 55, 8, 1800 }, + [37] = { 20.7, 53.9, 8, 1800 }, + [38] = { 20.1, 53.8, 8, 1800 }, + [39] = { 30.7, 53.5, 8, 1800 }, + [40] = { 34, 51, 8, 1800 }, + [41] = { 33.4, 50.7, 8, 1800 }, + [42] = { 32.9, 50.2, 8, 1800 }, + [43] = { 32.5, 49.7, 8, 1800 }, + [44] = { 33.2, 49.2, 8, 1800 }, + [45] = { 33.4, 48.8, 8, 1800 }, + [46] = { 33.1, 48.7, 8, 1800 }, + [47] = { 37.5, 48.3, 8, 1800 }, + [48] = { 39.7, 44.5, 8, 1800 }, + [49] = { 39, 44.5, 8, 1800 }, + [50] = { 40.1, 44.4, 8, 1800 }, + [51] = { 39.1, 44, 8, 1800 }, + [52] = { 39.9, 43.7, 8, 1800 }, + [53] = { 39.3, 43.7, 8, 1800 }, + [54] = { 43.9, 41.7, 8, 1800 }, + [55] = { 44.3, 41.4, 8, 1800 }, + [56] = { 17.4, 40.6, 8, 1800 }, + [57] = { 54.9, 39.8, 8, 1800 }, + [58] = { 17.4, 39.6, 8, 1800 }, + [59] = { 39.1, 37.6, 8, 1800 }, + [60] = { 37.4, 36.6, 8, 1800 }, + [61] = { 43, 35.5, 8, 1800 }, + [62] = { 43.5, 35.4, 8, 1800 }, + [63] = { 48, 34.9, 8, 1800 }, + [64] = { 47.3, 34.4, 8, 1800 }, + [65] = { 47.8, 34.2, 8, 1800 }, + [66] = { 49, 34, 8, 1800 }, + [67] = { 11.5, 30.7, 8, 1800 }, + [68] = { 10.9, 30.4, 8, 1800 }, + [69] = { 46.6, 71.3, 15, 1800 }, + [70] = { 36.1, 70.1, 15, 1800 }, + [71] = { 48.9, 61.9, 15, 1800 }, + [72] = { 44.1, 53.2, 15, 1800 }, + [73] = { 42.4, 52.4, 15, 1800 }, + [74] = { 53.3, 52.1, 15, 1800 }, + [75] = { 46.6, 51.7, 15, 1800 }, + [76] = { 47.5, 46.1, 15, 1800 }, + [77] = { 43, 45.9, 15, 1800 }, + [78] = { 42.9, 41.8, 15, 1800 }, + [79] = { 59.1, 26.4, 15, 1800 }, + [80] = { 42.3, 18.9, 15, 1800 }, + [81] = { 36.5, 18.6, 15, 1800 }, + [82] = { 37.7, 18.2, 15, 1800 }, + [83] = { 41.4, 15.4, 15, 1800 }, + [84] = { 54.2, 90.3, 17, 1800 }, + [85] = { 54.4, 63.6, 17, 1800 }, + [86] = { 55, 63.4, 17, 1800 }, + [87] = { 43.2, 99.5, 28, 1800 }, + [88] = { 43.3, 98.8, 28, 1800 }, + [89] = { 36.4, 95.2, 28, 1800 }, + [90] = { 36.9, 95.1, 28, 1800 }, + [91] = { 32.6, 92.9, 28, 1800 }, + [92] = { 32.6, 92.1, 28, 1800 }, + [93] = { 31.9, 88.5, 28, 1800 }, + [94] = { 32, 67.9, 33, 1800 }, + [95] = { 32.2, 67.9, 33, 1800 }, + [96] = { 33.9, 67.7, 33, 1800 }, + [97] = { 33.5, 66.9, 33, 1800 }, + [98] = { 33.2, 66.9, 33, 1800 }, + [99] = { 33.8, 65.4, 33, 1800 }, + [100] = { 35.7, 58.2, 33, 1800 }, + [101] = { 35.6, 57.8, 33, 1800 }, + [102] = { 35.2, 57.7, 33, 1800 }, + [103] = { 35.2, 57.4, 33, 1800 }, + [104] = { 36.4, 56.9, 33, 1800 }, + [105] = { 36.7, 56.7, 33, 1800 }, + [106] = { 36.3, 56.1, 33, 1800 }, + [107] = { 40.5, 52.2, 33, 1800 }, + [108] = { 39.9, 50.4, 33, 1800 }, + [109] = { 40.5, 50.3, 33, 1800 }, + [110] = { 40.5, 49.9, 33, 1800 }, + [111] = { 34.5, 26, 33, 1800 }, + [112] = { 30.7, 24.5, 33, 1800 }, + [113] = { 36.9, 23.2, 33, 1800 }, + [114] = { 46.9, 20.7, 33, 1800 }, + [115] = { 46.2, 20.5, 33, 1800 }, + [116] = { 35.9, 19.4, 33, 1800 }, + [117] = { 44.4, 18.6, 33, 1800 }, + [118] = { 45.6, 18.4, 33, 1800 }, + [119] = { 34.5, 16.7, 33, 1800 }, + [120] = { 38.3, 16, 33, 1800 }, + [121] = { 38.9, 15, 33, 1800 }, + [122] = { 27.1, 14.9, 33, 1800 }, + [123] = { 26.5, 13.3, 33, 1800 }, + [124] = { 41.6, 12.8, 33, 1800 }, + [125] = { 31.2, 12.1, 33, 1800 }, + [126] = { 41.5, 10.6, 33, 1800 }, + [127] = { 14.5, 81.2, 36, 1800 }, + [128] = { 28.9, 71.3, 36, 1800 }, + [129] = { 30, 71, 36, 1800 }, + [130] = { 50.8, 64.4, 36, 1800 }, + [131] = { 52, 64.2, 36, 1800 }, + [132] = { 23.2, 58, 36, 1800 }, + [133] = { 56.4, 56.2, 36, 1800 }, + [134] = { 79.5, 52.9, 36, 1800 }, + [135] = { 79.5, 51.8, 36, 1800 }, + [136] = { 62.6, 46.7, 36, 1800 }, + [137] = { 62.5, 46.4, 36, 1800 }, + [138] = { 68.9, 46.2, 36, 1800 }, + [139] = { 69.8, 46.1, 36, 1800 }, + [140] = { 63.2, 42.6, 36, 1800 }, + [141] = { 58.8, 41.6, 36, 1800 }, + [142] = { 63.2, 41.4, 36, 1800 }, + [143] = { 62.1, 35.9, 36, 1800 }, + [144] = { 55.4, 31.6, 36, 1800 }, + [145] = { 56.4, 31.5, 36, 1800 }, + [146] = { 55.7, 25.3, 36, 1800 }, + [147] = { 54.1, 21.9, 36, 1800 }, + [148] = { 40.2, 21.6, 36, 1800 }, + [149] = { 40.2, 21.3, 36, 1800 }, + [150] = { 39.9, 21.2, 36, 1800 }, + [151] = { 40.3, 21, 36, 1800 }, + [152] = { 44, 20.9, 36, 1800 }, + [153] = { 40.4, 20.5, 36, 1800 }, + [154] = { 43.9, 19.6, 36, 1800 }, + [155] = { 44.8, 19.3, 36, 1800 }, + [156] = { 48.6, 19.2, 36, 1800 }, + [157] = { 40.1, 15.2, 36, 1800 }, + [158] = { 40.3, 14, 36, 1800 }, + [159] = { 39.9, 71.1, 45, 1800 }, + [160] = { 59, 68.4, 45, 1800 }, + [161] = { 56.3, 67.5, 45, 1800 }, + [162] = { 56.1, 67, 45, 1800 }, + [163] = { 36.3, 66.8, 45, 1800 }, + [164] = { 36, 66.7, 45, 1800 }, + [165] = { 35.6, 66.7, 45, 1800 }, + [166] = { 39.7, 66.6, 45, 1800 }, + [167] = { 55.7, 66.2, 45, 1800 }, + [168] = { 34.8, 66.2, 45, 1800 }, + [169] = { 58.8, 66, 45, 1800 }, + [170] = { 52.1, 65.8, 45, 1800 }, + [171] = { 52.8, 65.7, 45, 1800 }, + [172] = { 58.3, 64.9, 45, 1800 }, + [173] = { 60.2, 63.5, 45, 1800 }, + [174] = { 32.3, 62.3, 45, 1800 }, + [175] = { 37.8, 61.3, 45, 1800 }, + [176] = { 54.1, 58.7, 45, 1800 }, + [177] = { 54.3, 58, 45, 1800 }, + [178] = { 54.2, 57.7, 45, 1800 }, + [179] = { 35.1, 54.7, 45, 1800 }, + [180] = { 51.5, 48.2, 45, 1800 }, + [181] = { 66.8, 42.6, 45, 1800 }, + [182] = { 66, 42.5, 45, 1800 }, + [183] = { 66, 42.3, 45, 1800 }, + [184] = { 29, 41.7, 45, 1800 }, + [185] = { 29.6, 41.2, 45, 1800 }, + [186] = { 29.8, 41.1, 45, 1800 }, + [187] = { 60.6, 40.7, 45, 1800 }, + [188] = { 60.6, 40.3, 45, 1800 }, + [189] = { 66.4, 39.8, 45, 1800 }, + [190] = { 66.4, 38, 45, 1800 }, + [191] = { 22.2, 36.6, 45, 1800 }, + [192] = { 22, 36.5, 45, 1800 }, + [193] = { 28.5, 35.8, 45, 1800 }, + [194] = { 66.7, 34.5, 45, 1800 }, + [195] = { 21.6, 34.4, 45, 1800 }, + [196] = { 65.9, 34.2, 45, 1800 }, + [197] = { 28.3, 34, 45, 1800 }, + [198] = { 28.5, 33.9, 45, 1800 }, + [199] = { 69.8, 33, 45, 1800 }, + [200] = { 36.7, 26.4, 45, 1800 }, + [201] = { 29.7, 23.2, 45, 1800 }, + [202] = { 32.7, 23, 45, 1800 }, + [203] = { 33.7, 22.8, 45, 1800 }, + [204] = { 29.4, 21.9, 45, 1800 }, + [205] = { 29.3, 21.6, 45, 1800 }, + [206] = { 45.8, 17.4, 45, 1800 }, + [207] = { 24.4, 78.6, 47, 1800 }, + [208] = { 31.4, 64, 47, 1800 }, + [209] = { 27.2, 64, 47, 1800 }, + [210] = { 31.9, 63.8, 47, 1800 }, + [211] = { 27.2, 63.2, 47, 1800 }, + [212] = { 31.8, 61.9, 47, 1800 }, + [213] = { 52.5, 58.1, 47, 1800 }, + [214] = { 52.6, 57.5, 47, 1800 }, + [215] = { 45.4, 56.9, 47, 1800 }, + [216] = { 26.1, 55, 47, 1800 }, + [217] = { 45.2, 54.6, 47, 1800 }, + [218] = { 70.7, 54.4, 47, 1800 }, + [219] = { 27.4, 54.3, 47, 1800 }, + [220] = { 33.2, 53.3, 47, 1800 }, + [221] = { 34.8, 53.2, 47, 1800 }, + [222] = { 40.1, 52.7, 47, 1800 }, + [223] = { 56.5, 52.7, 47, 1800 }, + [224] = { 33.5, 51.7, 47, 1800 }, + [225] = { 33.7, 51.6, 47, 1800 }, + [226] = { 56.3, 51, 47, 1800 }, + [227] = { 64.2, 48.6, 47, 1800 }, + [228] = { 58.7, 46.3, 47, 1800 }, + [229] = { 21.5, 19.5, 267, 1800 }, + [230] = { 35.1, 10.5, 267, 1800 }, + [231] = { 53.3, 4.8, 267, 1800 }, + [232] = { 54.4, 4.6, 267, 1800 }, + [233] = { 72.4, 64, 491, 604800 }, + [234] = { 48.7, 63.2, 491, 604800 }, + [235] = { 28.4, 65.8, 5135, 604800 }, + [236] = { 36.1, 55.9, 5135, 604800 }, + [237] = { 28.7, 54.3, 5135, 604800 }, + [238] = { 64.7, 87.6, 5153, 604800 }, + [239] = { 68.9, 87.4, 5153, 604800 }, + [240] = { 36.8, 80.5, 5561, 1800 }, + [241] = { 45.7, 74.1, 5561, 1800 }, + [242] = { 50, 72.1, 5561, 1800 }, + [243] = { 35.1, 67.6, 5561, 1800 }, + [244] = { 54.9, 58.9, 5561, 1800 }, + [245] = { 53.5, 53, 5561, 1800 }, + [246] = { 48.5, 43.3, 5561, 1800 }, + [247] = { 33.9, 39.4, 5561, 1800 }, + [248] = { 45.6, 33.9, 5561, 1800 }, + [249] = { 33.2, 31.5, 5561, 1800 }, + [250] = { 43.8, 24.3, 5561, 1800 }, + [251] = { 28.4, 39.1, 5581, 1800 }, + [252] = { 76.5, 38.9, 5581, 1800 }, + [253] = { 58.4, 33.3, 5581, 1800 }, + [254] = { 63, 31.9, 5581, 1800 }, + [255] = { 77.7, 31.5, 5581, 1800 }, + [256] = { 63.5, 26.2, 5581, 1800 }, + [257] = { 60.1, 25.5, 5581, 1800 }, + [258] = { 50.1, 89.3, 5602, 1800 }, + [259] = { 46.2, 87.8, 5602, 1800 }, + [260] = { 62.6, 86.1, 5602, 1800 }, + [261] = { 57.2, 85.8, 5602, 1800 }, + [262] = { 53.3, 85.6, 5602, 1800 }, + [263] = { 59.1, 73.8, 5602, 1800 }, + [264] = { 55.4, 73.8, 5602, 1800 }, + [265] = { 60.6, 44.4, 5602, 1800 }, + [266] = { 43.6, 41.7, 5602, 1800 }, + [267] = { 62.6, 37, 5602, 1800 }, + [268] = { 57, 35.8, 5602, 1800 }, + [269] = { 49.2, 27.3, 5602, 1800 }, + [270] = { 43, 11, 5602, 1800 }, + [271] = { 51.7, 8.8, 5602, 1800 }, + }, + }, + [2043] = { + ["coords"] = { + [1] = { 5.1, 77.7, 3, 1800 }, + [2] = { 7.5, 76.9, 3, 1800 }, + [3] = { 7.4, 76.5, 3, 1800 }, + [4] = { 51.8, 71.9, 3, 1800 }, + [5] = { 9.3, 69, 3, 1800 }, + [6] = { 34.2, 68.4, 3, 1800 }, + [7] = { 33.7, 68.1, 3, 1800 }, + [8] = { 60.5, 64.4, 3, 1800 }, + [9] = { 61, 64.4, 3, 1800 }, + [10] = { 11.2, 61, 3, 1800 }, + [11] = { 16.6, 59.8, 3, 1800 }, + [12] = { 36, 59.6, 3, 1800 }, + [13] = { 9.5, 58.9, 3, 1800 }, + [14] = { 24.3, 58.6, 3, 1800 }, + [15] = { 17.3, 55.6, 3, 1800 }, + [16] = { 30.1, 55.1, 3, 1800 }, + [17] = { 15.6, 55.1, 3, 1800 }, + [18] = { 57.2, 54.4, 3, 1800 }, + [19] = { 21.6, 52.8, 3, 1800 }, + [20] = { 31.9, 52.5, 3, 1800 }, + [21] = { 27.4, 52.5, 3, 1800 }, + [22] = { 27.8, 52.4, 3, 1800 }, + [23] = { 32.3, 51.2, 3, 1800 }, + [24] = { 53.8, 46, 3, 1800 }, + [25] = { 75.1, 42.5, 3, 1800 }, + [26] = { 28.4, 37.7, 3, 1800 }, + [27] = { 80.6, 78.7, 8, 1800 }, + [28] = { 76.7, 78.7, 8, 1800 }, + [29] = { 71.9, 78.1, 8, 1800 }, + [30] = { 79.8, 78, 8, 1800 }, + [31] = { 73.2, 77.9, 8, 1800 }, + [32] = { 79, 77.3, 8, 1800 }, + [33] = { 85.4, 74.5, 8, 1800 }, + [34] = { 84.5, 73.6, 8, 1800 }, + [35] = { 85.5, 73.3, 8, 1800 }, + [36] = { 71.5, 70.2, 8, 1800 }, + [37] = { 85.2, 62.1, 8, 1800 }, + [38] = { 84.9, 61.1, 8, 1800 }, + [39] = { 84.9, 59.9, 8, 1800 }, + [40] = { 85.4, 59, 8, 1800 }, + [41] = { 56.8, 53.7, 8, 1800 }, + [42] = { 55.3, 53.3, 8, 1800 }, + [43] = { 81.7, 52.6, 8, 1800 }, + [44] = { 53.3, 52.5, 8, 1800 }, + [45] = { 79, 49.3, 8, 1800 }, + [46] = { 78.2, 49.1, 8, 1800 }, + [47] = { 25.9, 47.9, 8, 1800 }, + [48] = { 78.1, 47.8, 8, 1800 }, + [49] = { 27, 47.4, 8, 1800 }, + [50] = { 18.7, 46.8, 8, 1800 }, + [51] = { 19.2, 46.3, 8, 1800 }, + [52] = { 20.1, 45.7, 8, 1800 }, + [53] = { 26.6, 45.5, 8, 1800 }, + [54] = { 56.6, 45.3, 8, 1800 }, + [55] = { 82.8, 45, 8, 1800 }, + [56] = { 27.3, 44.7, 8, 1800 }, + [57] = { 32.1, 43.9, 8, 1800 }, + [58] = { 26.9, 42.6, 8, 1800 }, + [59] = { 62.7, 41.1, 8, 1800 }, + [60] = { 53.2, 40.6, 8, 1800 }, + [61] = { 54.6, 40.1, 8, 1800 }, + [62] = { 52.8, 39.5, 8, 1800 }, + [63] = { 53.4, 38, 8, 1800 }, + [64] = { 52.2, 34, 8, 1800 }, + [65] = { 33.2, 34, 8, 1800 }, + [66] = { 32.6, 33.6, 8, 1800 }, + [67] = { 53.1, 33.5, 8, 1800 }, + [68] = { 33.4, 33.3, 8, 1800 }, + [69] = { 52.2, 32.6, 8, 1800 }, + [70] = { 37.6, 30.5, 8, 1800 }, + [71] = { 37.7, 30, 8, 1800 }, + [72] = { 39.7, 29.9, 8, 1800 }, + [73] = { 38.3, 29.5, 8, 1800 }, + [74] = { 48.9, 28.5, 8, 1800 }, + [75] = { 64.6, 21.5, 8, 1800 }, + [76] = { 66.3, 19.3, 8, 1800 }, + [77] = { 52.1, 84.1, 15, 1800 }, + [78] = { 65.3, 79.5, 15, 1800 }, + [79] = { 56.8, 75.6, 15, 1800 }, + [80] = { 66.1, 74.8, 15, 1800 }, + [81] = { 34.6, 72.4, 15, 1800 }, + [82] = { 47.9, 71.3, 15, 1800 }, + [83] = { 51.5, 70.6, 15, 1800 }, + [84] = { 51.5, 68.5, 15, 1800 }, + [85] = { 36, 64.7, 15, 1800 }, + [86] = { 47.8, 63.6, 15, 1800 }, + [87] = { 41.7, 58.8, 15, 1800 }, + [88] = { 38.5, 55.8, 15, 1800 }, + [89] = { 41.3, 51.4, 15, 1800 }, + [90] = { 49.3, 49.7, 15, 1800 }, + [91] = { 41.3, 47.2, 15, 1800 }, + [92] = { 37.7, 47.1, 15, 1800 }, + [93] = { 34.2, 46.2, 15, 1800 }, + [94] = { 36.6, 46, 15, 1800 }, + [95] = { 46.7, 45.8, 15, 1800 }, + [96] = { 44.3, 38.2, 15, 1800 }, + [97] = { 55.2, 21.1, 15, 1800 }, + [98] = { 38.6, 18.9, 15, 1800 }, + [99] = { 43.4, 18.7, 15, 1800 }, + [100] = { 41.6, 18.3, 15, 1800 }, + [101] = { 47.1, 15.8, 15, 1800 }, + [102] = { 42.9, 12.3, 15, 1800 }, + [103] = { 52.6, 85.8, 16, 1800 }, + [104] = { 29.4, 51.1, 16, 1800 }, + [105] = { 32, 45, 16, 1800 }, + [106] = { 36, 41.4, 16, 1800 }, + [107] = { 76.2, 29.6, 16, 1800 }, + [108] = { 53.4, 91.5, 17, 1800 }, + [109] = { 54.2, 87.5, 17, 1800 }, + [110] = { 55, 78.3, 17, 1800 }, + [111] = { 53.2, 77.9, 17, 1800 }, + [112] = { 54.4, 77.8, 17, 1800 }, + [113] = { 57.8, 60.3, 17, 1800 }, + [114] = { 31.4, 87.9, 28, 1800 }, + [115] = { 30.8, 87.6, 28, 1800 }, + [116] = { 41.1, 84.5, 33, 1800 }, + [117] = { 40.5, 78, 33, 1800 }, + [118] = { 29.7, 70.8, 33, 1800 }, + [119] = { 30.2, 70.3, 33, 1800 }, + [120] = { 26.4, 67.2, 33, 1800 }, + [121] = { 30.6, 66.7, 33, 1800 }, + [122] = { 30.2, 66.5, 33, 1800 }, + [123] = { 28.1, 66.2, 33, 1800 }, + [124] = { 24.4, 63.5, 33, 1800 }, + [125] = { 23.9, 63.3, 33, 1800 }, + [126] = { 26.3, 62.9, 33, 1800 }, + [127] = { 25.7, 59.1, 33, 1800 }, + [128] = { 30.6, 58.2, 33, 1800 }, + [129] = { 38.7, 56.4, 33, 1800 }, + [130] = { 24.4, 55.4, 33, 1800 }, + [131] = { 23.6, 54.5, 33, 1800 }, + [132] = { 24.1, 54.3, 33, 1800 }, + [133] = { 23.8, 53.9, 33, 1800 }, + [134] = { 24.8, 53.5, 33, 1800 }, + [135] = { 39.5, 51.3, 33, 1800 }, + [136] = { 27, 49.2, 33, 1800 }, + [137] = { 38.6, 47.3, 33, 1800 }, + [138] = { 38.7, 46.5, 33, 1800 }, + [139] = { 38.7, 46.1, 33, 1800 }, + [140] = { 39.2, 46, 33, 1800 }, + [141] = { 27.7, 45.6, 33, 1800 }, + [142] = { 38.8, 45.5, 33, 1800 }, + [143] = { 29.2, 44.6, 33, 1800 }, + [144] = { 30.1, 44.6, 33, 1800 }, + [145] = { 29.1, 44.5, 33, 1800 }, + [146] = { 35.8, 44.5, 33, 1800 }, + [147] = { 28.4, 44.4, 33, 1800 }, + [148] = { 35, 44, 33, 1800 }, + [149] = { 28.7, 43.8, 33, 1800 }, + [150] = { 34.9, 43.3, 33, 1800 }, + [151] = { 47.4, 43.2, 33, 1800 }, + [152] = { 29, 43.1, 33, 1800 }, + [153] = { 30.6, 43, 33, 1800 }, + [154] = { 32.4, 42.9, 33, 1800 }, + [155] = { 27.8, 42.8, 33, 1800 }, + [156] = { 30.6, 42.5, 33, 1800 }, + [157] = { 32.2, 42.2, 33, 1800 }, + [158] = { 47.9, 42.2, 33, 1800 }, + [159] = { 48.2, 42.1, 33, 1800 }, + [160] = { 36, 42.1, 33, 1800 }, + [161] = { 28, 42, 33, 1800 }, + [162] = { 27, 41.5, 33, 1800 }, + [163] = { 41.7, 41.4, 33, 1800 }, + [164] = { 39.7, 40.9, 33, 1800 }, + [165] = { 42, 40.9, 33, 1800 }, + [166] = { 42.7, 40.5, 33, 1800 }, + [167] = { 42.7, 40.2, 33, 1800 }, + [168] = { 27.7, 39.9, 33, 1800 }, + [169] = { 31, 39.8, 33, 1800 }, + [170] = { 47.9, 39.7, 33, 1800 }, + [171] = { 48.8, 39.6, 33, 1800 }, + [172] = { 29, 39.6, 33, 1800 }, + [173] = { 48.2, 39.3, 33, 1800 }, + [174] = { 29.1, 39.3, 33, 1800 }, + [175] = { 29.3, 39.1, 33, 1800 }, + [176] = { 29.5, 39, 33, 1800 }, + [177] = { 41.7, 38.8, 33, 1800 }, + [178] = { 31.9, 38.6, 33, 1800 }, + [179] = { 28.9, 38.2, 33, 1800 }, + [180] = { 33.1, 37.9, 33, 1800 }, + [181] = { 29.3, 37.9, 33, 1800 }, + [182] = { 29.9, 37.8, 33, 1800 }, + [183] = { 35, 37.7, 33, 1800 }, + [184] = { 47.8, 37.5, 33, 1800 }, + [185] = { 30.8, 37.4, 33, 1800 }, + [186] = { 30.5, 37.2, 33, 1800 }, + [187] = { 30.3, 36.9, 33, 1800 }, + [188] = { 44.4, 36.9, 33, 1800 }, + [189] = { 30.8, 36.9, 33, 1800 }, + [190] = { 48.7, 35, 33, 1800 }, + [191] = { 44.7, 34.9, 33, 1800 }, + [192] = { 44.7, 34.4, 33, 1800 }, + [193] = { 45.3, 33.9, 33, 1800 }, + [194] = { 46, 33.9, 33, 1800 }, + [195] = { 45.4, 32.7, 33, 1800 }, + [196] = { 35.3, 32.1, 33, 1800 }, + [197] = { 44.9, 31.9, 33, 1800 }, + [198] = { 46.3, 31.3, 33, 1800 }, + [199] = { 48.9, 31.2, 33, 1800 }, + [200] = { 45.8, 30.7, 33, 1800 }, + [201] = { 46, 30.2, 33, 1800 }, + [202] = { 46.4, 29.9, 33, 1800 }, + [203] = { 46.2, 29.7, 33, 1800 }, + [204] = { 37, 29.6, 33, 1800 }, + [205] = { 38.4, 29, 33, 1800 }, + [206] = { 49.9, 28.5, 33, 1800 }, + [207] = { 33.2, 28, 33, 1800 }, + [208] = { 50.2, 27.2, 33, 1800 }, + [209] = { 50.1, 27.2, 33, 1800 }, + [210] = { 32.9, 26.3, 33, 1800 }, + [211] = { 30.1, 24.9, 33, 1800 }, + [212] = { 49.3, 24.3, 33, 1800 }, + [213] = { 47.8, 24, 33, 1800 }, + [214] = { 50.1, 23.7, 33, 1800 }, + [215] = { 30.9, 23.7, 33, 1800 }, + [216] = { 39.1, 21.3, 33, 1800 }, + [217] = { 39.1, 20.9, 33, 1800 }, + [218] = { 38.7, 20.6, 33, 1800 }, + [219] = { 29.8, 20.4, 33, 1800 }, + [220] = { 30.6, 20.3, 33, 1800 }, + [221] = { 38.6, 20.2, 33, 1800 }, + [222] = { 38.7, 19.7, 33, 1800 }, + [223] = { 30.4, 19.7, 33, 1800 }, + [224] = { 43.9, 19.6, 33, 1800 }, + [225] = { 38.2, 19.1, 33, 1800 }, + [226] = { 37.8, 18.8, 33, 1800 }, + [227] = { 30.6, 18.6, 33, 1800 }, + [228] = { 30.1, 18.3, 33, 1800 }, + [229] = { 37.7, 18, 33, 1800 }, + [230] = { 38.7, 17.9, 33, 1800 }, + [231] = { 38.8, 17.6, 33, 1800 }, + [232] = { 47.5, 17.6, 33, 1800 }, + [233] = { 48, 17.1, 33, 1800 }, + [234] = { 38.5, 17.1, 33, 1800 }, + [235] = { 47, 16.5, 33, 1800 }, + [236] = { 44.4, 16.5, 33, 1800 }, + [237] = { 47.2, 16.3, 33, 1800 }, + [238] = { 23.7, 15.8, 33, 1800 }, + [239] = { 27.8, 15.7, 33, 1800 }, + [240] = { 37.7, 15.6, 33, 1800 }, + [241] = { 43.4, 15.5, 33, 1800 }, + [242] = { 47.2, 15.5, 33, 1800 }, + [243] = { 38, 15.3, 33, 1800 }, + [244] = { 27.5, 15.3, 33, 1800 }, + [245] = { 27.8, 15.1, 33, 1800 }, + [246] = { 39.1, 14.6, 33, 1800 }, + [247] = { 38.3, 14.6, 33, 1800 }, + [248] = { 23.4, 14.4, 33, 1800 }, + [249] = { 37.1, 14.4, 33, 1800 }, + [250] = { 33.8, 14.2, 33, 1800 }, + [251] = { 48.5, 14.1, 33, 1800 }, + [252] = { 32.3, 14.1, 33, 1800 }, + [253] = { 23.3, 14, 33, 1800 }, + [254] = { 34.2, 13.9, 33, 1800 }, + [255] = { 33.7, 13.7, 33, 1800 }, + [256] = { 24.8, 13.7, 33, 1800 }, + [257] = { 34.1, 13.5, 33, 1800 }, + [258] = { 39, 13.4, 33, 1800 }, + [259] = { 45.3, 12.9, 33, 1800 }, + [260] = { 33.8, 12.9, 33, 1800 }, + [261] = { 33.6, 12.6, 33, 1800 }, + [262] = { 36.3, 12, 33, 1800 }, + [263] = { 31.8, 12, 33, 1800 }, + [264] = { 42.1, 11.8, 33, 1800 }, + [265] = { 27.8, 11.7, 33, 1800 }, + [266] = { 27.6, 11.7, 33, 1800 }, + [267] = { 27, 11.7, 33, 1800 }, + [268] = { 31.5, 11.2, 33, 1800 }, + [269] = { 43.7, 10.9, 33, 1800 }, + [270] = { 37.3, 10.9, 33, 1800 }, + [271] = { 36.6, 10.8, 33, 1800 }, + [272] = { 43.7, 10.3, 33, 1800 }, + [273] = { 42.3, 10.3, 33, 1800 }, + [274] = { 36.6, 10.3, 33, 1800 }, + [275] = { 18.9, 10.3, 33, 1800 }, + [276] = { 29.2, 9.8, 33, 1800 }, + [277] = { 43.3, 9.7, 33, 1800 }, + [278] = { 29.9, 9.4, 33, 1800 }, + [279] = { 43.8, 9.1, 33, 1800 }, + [280] = { 45.7, 8.7, 33, 1800 }, + [281] = { 41.9, 8.2, 33, 1800 }, + [282] = { 45.3, 7.9, 33, 1800 }, + [283] = { 45.1, 7.8, 33, 1800 }, + [284] = { 31.3, 72.7, 36, 1800 }, + [285] = { 55.4, 61.5, 36, 1800 }, + [286] = { 55.8, 60.8, 36, 1800 }, + [287] = { 77.2, 55.4, 36, 1800 }, + [288] = { 63.8, 54.5, 36, 1800 }, + [289] = { 61.2, 51.3, 36, 1800 }, + [290] = { 60.3, 50.5, 36, 1800 }, + [291] = { 56.8, 40.9, 36, 1800 }, + [292] = { 55.8, 40.9, 36, 1800 }, + [293] = { 57.1, 40.8, 36, 1800 }, + [294] = { 56.3, 38.4, 36, 1800 }, + [295] = { 56.2, 37.8, 36, 1800 }, + [296] = { 55.5, 37.1, 36, 1800 }, + [297] = { 55, 37, 36, 1800 }, + [298] = { 61.3, 35.1, 36, 1800 }, + [299] = { 60.3, 34.6, 36, 1800 }, + [300] = { 39.8, 20.9, 36, 1800 }, + [301] = { 53.6, 19.8, 36, 1800 }, + [302] = { 54, 19.7, 36, 1800 }, + [303] = { 53.2, 19.6, 36, 1800 }, + [304] = { 53.5, 19.4, 36, 1800 }, + [305] = { 49, 19.1, 36, 1800 }, + [306] = { 39.9, 18.4, 36, 1800 }, + [307] = { 42.4, 14.7, 36, 1800 }, + [308] = { 41.5, 14, 36, 1800 }, + [309] = { 42.7, 13.5, 36, 1800 }, + [310] = { 37.3, 12.2, 36, 1800 }, + [311] = { 53, 77.6, 45, 1800 }, + [312] = { 54.4, 76.4, 45, 1800 }, + [313] = { 68.7, 74.1, 45, 1800 }, + [314] = { 63.6, 73.7, 45, 1800 }, + [315] = { 68.9, 73.6, 45, 1800 }, + [316] = { 62.4, 72.9, 45, 1800 }, + [317] = { 64.6, 72.3, 45, 1800 }, + [318] = { 66.1, 71.9, 45, 1800 }, + [319] = { 62.1, 71.7, 45, 1800 }, + [320] = { 64.3, 71.6, 45, 1800 }, + [321] = { 66.9, 71, 45, 1800 }, + [322] = { 65.3, 70.2, 45, 1800 }, + [323] = { 63.2, 69.6, 45, 1800 }, + [324] = { 70.4, 69, 45, 1800 }, + [325] = { 55.7, 68.5, 45, 1800 }, + [326] = { 63.2, 68.4, 45, 1800 }, + [327] = { 56.1, 68.2, 45, 1800 }, + [328] = { 55.9, 67.9, 45, 1800 }, + [329] = { 72.6, 65.5, 45, 1800 }, + [330] = { 72, 65.3, 45, 1800 }, + [331] = { 71.4, 65.3, 45, 1800 }, + [332] = { 62.7, 65.2, 45, 1800 }, + [333] = { 73.7, 64.6, 45, 1800 }, + [334] = { 70.7, 62.8, 45, 1800 }, + [335] = { 66.9, 62.8, 45, 1800 }, + [336] = { 70.1, 62.6, 45, 1800 }, + [337] = { 72, 62.2, 45, 1800 }, + [338] = { 41, 61.5, 45, 1800 }, + [339] = { 42.3, 61.3, 45, 1800 }, + [340] = { 42.1, 61.2, 45, 1800 }, + [341] = { 40.5, 61.1, 45, 1800 }, + [342] = { 71.2, 59.2, 45, 1800 }, + [343] = { 70.1, 55.5, 45, 1800 }, + [344] = { 63, 50, 45, 1800 }, + [345] = { 55.2, 49.7, 45, 1800 }, + [346] = { 63.3, 49.3, 45, 1800 }, + [347] = { 16.6, 47.5, 45, 1800 }, + [348] = { 20.8, 47.2, 45, 1800 }, + [349] = { 16.1, 47, 45, 1800 }, + [350] = { 36.6, 45.9, 45, 1800 }, + [351] = { 37.3, 45.4, 45, 1800 }, + [352] = { 36.8, 44.9, 45, 1800 }, + [353] = { 15.1, 44.4, 45, 1800 }, + [354] = { 15.7, 44.2, 45, 1800 }, + [355] = { 15.4, 43.9, 45, 1800 }, + [356] = { 15, 43.7, 45, 1800 }, + [357] = { 65.2, 41.5, 45, 1800 }, + [358] = { 64.4, 41.3, 45, 1800 }, + [359] = { 68, 40.8, 45, 1800 }, + [360] = { 59.8, 38.8, 45, 1800 }, + [361] = { 60.6, 37.2, 45, 1800 }, + [362] = { 60.6, 36.7, 45, 1800 }, + [363] = { 51.3, 36.4, 45, 1800 }, + [364] = { 52.3, 36.1, 45, 1800 }, + [365] = { 51.6, 36.1, 45, 1800 }, + [366] = { 50.8, 35.5, 45, 1800 }, + [367] = { 51.8, 35.3, 45, 1800 }, + [368] = { 60.8, 34.3, 45, 1800 }, + [369] = { 51.7, 34.3, 45, 1800 }, + [370] = { 55.9, 33.7, 45, 1800 }, + [371] = { 54.9, 33.7, 45, 1800 }, + [372] = { 61.2, 32.5, 45, 1800 }, + [373] = { 51.8, 32.3, 45, 1800 }, + [374] = { 55.4, 32.1, 45, 1800 }, + [375] = { 55, 32.1, 45, 1800 }, + [376] = { 56.4, 32, 45, 1800 }, + [377] = { 53.3, 31.9, 45, 1800 }, + [378] = { 57.3, 31.2, 45, 1800 }, + [379] = { 42.7, 30.8, 45, 1800 }, + [380] = { 63.1, 30.7, 45, 1800 }, + [381] = { 43.9, 29.9, 45, 1800 }, + [382] = { 58.8, 29.8, 45, 1800 }, + [383] = { 24, 69.9, 47, 1800 }, + [384] = { 62.7, 56.8, 47, 1800 }, + [385] = { 62.4, 56.7, 47, 1800 }, + [386] = { 52.8, 54.7, 47, 1800 }, + [387] = { 75.6, 51.9, 47, 1800 }, + [388] = { 74.3, 51.3, 47, 1800 }, + [389] = { 63.6, 51.1, 47, 1800 }, + [390] = { 63.2, 51, 47, 1800 }, + [391] = { 74.1, 50.9, 47, 1800 }, + [392] = { 63.4, 50.9, 47, 1800 }, + [393] = { 75, 50.9, 47, 1800 }, + [394] = { 74.4, 50.8, 47, 1800 }, + [395] = { 75.3, 49, 47, 1800 }, + [396] = { 63.9, 47.1, 47, 1800 }, + [397] = { 64.9, 46.2, 47, 1800 }, + [398] = { 43, 46, 47, 1800 }, + [399] = { 71, 46, 47, 1800 }, + [400] = { 44.2, 45.9, 47, 1800 }, + [401] = { 42.9, 45.7, 47, 1800 }, + [402] = { 43.3, 45.3, 47, 1800 }, + [403] = { 43.6, 45.1, 47, 1800 }, + [404] = { 43.4, 44.9, 47, 1800 }, + [405] = { 60.1, 40, 47, 1800 }, + [406] = { 60.4, 39.9, 47, 1800 }, + [407] = { 60.2, 39.7, 47, 1800 }, + [408] = { 52.8, 37.8, 47, 1800 }, + [409] = { 52.6, 37.2, 47, 1800 }, + [410] = { 84.4, 72.5, 51, 1800 }, + [411] = { 45.9, 91.9, 130, 1800 }, + [412] = { 79.1, 78.5, 267, 1800 }, + [413] = { 78.5, 77.9, 267, 1800 }, + [414] = { 77.4, 75, 267, 1800 }, + [415] = { 78.1, 74.7, 267, 1800 }, + [416] = { 77.8, 74.4, 267, 1800 }, + [417] = { 77.3, 74.1, 267, 1800 }, + [418] = { 36.3, 12, 267, 1800 }, + [419] = { 57.3, 2.3, 267, 1800 }, + [420] = { 57.7, 1.6, 267, 1800 }, + [421] = { 63.1, 73.3, 357, 1800 }, + [422] = { 63.2, 73.1, 357, 1800 }, + [423] = { 62.3, 64.2, 357, 1800 }, + [424] = { 76.1, 63.9, 357, 1800 }, + [425] = { 64.9, 52.8, 357, 1800 }, + [426] = { 51.4, 51.4, 357, 1800 }, + [427] = { 48.9, 48.8, 357, 1800 }, + [428] = { 25.7, 47.8, 357, 1800 }, + [429] = { 81.6, 44.8, 357, 1800 }, + [430] = { 60.8, 43.8, 357, 1800 }, + [431] = { 83.3, 43, 357, 1800 }, + [432] = { 81, 38.3, 357, 1800 }, + [433] = { 88.7, 38, 357, 1800 }, + [434] = { 85.1, 37, 357, 1800 }, + [435] = { 37.9, 31.8, 357, 1800 }, + [436] = { 49.9, 24.4, 357, 1800 }, + [437] = { 44.7, 23.8, 357, 1800 }, + [438] = { 41.5, 21.4, 357, 1800 }, + [439] = { 61.8, 14, 1519, 1800 }, + [440] = { 65.6, 4.2, 1519, 1800 }, + [441] = { 3.2, 11.2, 2557, 1800 }, + [442] = { 51.7, 82.8, 5179, 1800 }, + [443] = { 50.2, 70, 5179, 1800 }, + [444] = { 34.9, 62.9, 5179, 1800 }, + [445] = { 40.2, 60.2, 5179, 1800 }, + [446] = { 37.3, 56.1, 5179, 1800 }, + [447] = { 33.7, 40.2, 5179, 1800 }, + [448] = { 14.1, 39.7, 5179, 1800 }, + [449] = { 44.3, 39.6, 5179, 1800 }, + [450] = { 52, 38.6, 5179, 1800 }, + [451] = { 44.5, 30.6, 5179, 1800 }, + [452] = { 47.2, 22.5, 5179, 1800 }, + [453] = { 50.6, 68.3, 5561, 1800 }, + [454] = { 48.4, 59.3, 5561, 1800 }, + [455] = { 42.4, 58.8, 5561, 1800 }, + [456] = { 49.1, 57.9, 5561, 1800 }, + [457] = { 29.6, 57.1, 5561, 1800 }, + [458] = { 41.9, 46.9, 5561, 1800 }, + [459] = { 37.9, 43.4, 5561, 1800 }, + [460] = { 35, 29.3, 5561, 1800 }, + [461] = { 35.1, 29.3, 5561, 1800 }, + [462] = { 40.8, 21.9, 5561, 1800 }, + [463] = { 49.7, 84.9, 5581, 1800 }, + [464] = { 67.8, 83.2, 5581, 1800 }, + [465] = { 51.7, 79.6, 5581, 1800 }, + [466] = { 45, 78.7, 5581, 1800 }, + [467] = { 39.2, 78.1, 5581, 1800 }, + [468] = { 73.9, 67.5, 5581, 1800 }, + [469] = { 30, 65.2, 5581, 1800 }, + [470] = { 71.8, 54.2, 5581, 1800 }, + [471] = { 52.2, 54, 5581, 1800 }, + [472] = { 58.6, 44, 5581, 1800 }, + [473] = { 45.6, 93.6, 5602, 1800 }, + [474] = { 49.9, 71.1, 5602, 1800 }, + [475] = { 55.3, 67.5, 5602, 1800 }, + [476] = { 52.3, 65.2, 5602, 1800 }, + [477] = { 60.7, 64.3, 5602, 1800 }, + [478] = { 63.7, 62.6, 5602, 1800 }, + [479] = { 49.2, 58.7, 5602, 1800 }, + [480] = { 63.6, 57.2, 5602, 1800 }, + [481] = { 57.1, 55.2, 5602, 1800 }, + [482] = { 64.6, 47, 5602, 1800 }, + [483] = { 55.6, 40.6, 5602, 1800 }, + [484] = { 64.5, 40.4, 5602, 1800 }, + [485] = { 52.3, 30.9, 5602, 1800 }, + [486] = { 62.9, 30.7, 5602, 1800 }, + [487] = { 51.2, 20.4, 5602, 1800 }, + [488] = { 53.7, 18.2, 5602, 1800 }, + [489] = { 43.3, 17.8, 5602, 1800 }, + [490] = { 50, 13.4, 5602, 1800 }, + [491] = { 57.3, 10.5, 5602, 1800 }, + }, + }, + [2044] = { + ["coords"] = { + [1] = { 38.3, 72.8, 36, 1800 }, + [2] = { 38, 72.1, 36, 1800 }, + [3] = { 37.7, 70.8, 36, 1800 }, + [4] = { 36.3, 70.8, 36, 1800 }, + [5] = { 35.5, 69.7, 36, 1800 }, + [6] = { 39.2, 68.7, 36, 1800 }, + [7] = { 39.5, 68.5, 36, 1800 }, + [8] = { 42.8, 67.7, 36, 1800 }, + [9] = { 42.7, 66.4, 36, 1800 }, + [10] = { 44.5, 63.5, 36, 1800 }, + [11] = { 40.5, 63.5, 36, 1800 }, + [12] = { 43.1, 63.5, 36, 1800 }, + [13] = { 39.2, 63.2, 36, 1800 }, + [14] = { 39, 60.3, 36, 1800 }, + [15] = { 39.6, 59.9, 36, 1800 }, + [16] = { 39.2, 59.9, 36, 1800 }, + [17] = { 45.3, 59.5, 36, 1800 }, + [18] = { 36.5, 56.7, 36, 1800 }, + [19] = { 32.6, 52.9, 36, 1800 }, + [20] = { 35.5, 51.6, 36, 1800 }, + [21] = { 43.6, 51.2, 36, 1800 }, + [22] = { 43.9, 51.1, 36, 1800 }, + [23] = { 43.3, 50.3, 36, 1800 }, + [24] = { 35.2, 47.8, 36, 1800 }, + [25] = { 33.2, 47.7, 36, 1800 }, + [26] = { 32, 47.6, 36, 1800 }, + [27] = { 46.5, 44.4, 36, 1800 }, + [28] = { 47.3, 43.1, 36, 1800 }, + [29] = { 47.8, 42.1, 36, 1800 }, + [30] = { 47.3, 41.7, 36, 1800 }, + [31] = { 49, 39.8, 36, 1800 }, + [32] = { 42.4, 12.1, 267, 1800 }, + [33] = { 42.1, 11.5, 267, 1800 }, + [34] = { 41.9, 10.4, 267, 1800 }, + [35] = { 40.6, 10.3, 267, 1800 }, + [36] = { 40, 9.5, 267, 1800 }, + [37] = { 43.2, 8.6, 267, 1800 }, + [38] = { 43.4, 8.4, 267, 1800 }, + [39] = { 46.3, 7.7, 267, 1800 }, + [40] = { 46.2, 6.5, 267, 1800 }, + [41] = { 47.8, 4, 267, 1800 }, + [42] = { 44.3, 4, 267, 1800 }, + [43] = { 46.6, 4, 267, 1800 }, + [44] = { 43.1, 3.7, 267, 1800 }, + [45] = { 43, 1.2, 267, 1800 }, + [46] = { 43.5, 0.9, 267, 1800 }, + [47] = { 43.1, 0.8, 267, 1800 }, + [48] = { 48.5, 0.5, 267, 1800 }, + [49] = { 54.5, 84.9, 2597, 1800 }, + [50] = { 53.9, 82.5, 2597, 1800 }, + [51] = { 55, 80.7, 2597, 1800 }, + [52] = { 53.4, 79.3, 2597, 1800 }, + [53] = { 54.1, 77.5, 2597, 1800 }, + [54] = { 48.9, 77.4, 2597, 1800 }, + [55] = { 51.9, 76.9, 2597, 1800 }, + [56] = { 55.1, 75.3, 2597, 1800 }, + [57] = { 53.6, 74.8, 2597, 1800 }, + [58] = { 50.5, 74.7, 2597, 1800 }, + [59] = { 48.3, 73.1, 2597, 1800 }, + [60] = { 53.5, 72.6, 2597, 1800 }, + [61] = { 54.1, 71.1, 2597, 1800 }, + [62] = { 50.7, 68.7, 2597, 1800 }, + [63] = { 52.8, 68.6, 2597, 1800 }, + [64] = { 49.1, 68.4, 2597, 1800 }, + [65] = { 50.4, 63.6, 2597, 1800 }, + [66] = { 45.2, 60.1, 2597, 1800 }, + [67] = { 43.8, 59.8, 2597, 1800 }, + [68] = { 47.9, 56.8, 2597, 1800 }, + [69] = { 43.3, 56.3, 2597, 1800 }, + [70] = { 44.7, 54.2, 2597, 1800 }, + [71] = { 44.2, 54.1, 2597, 1800 }, + [72] = { 46.8, 53.3, 2597, 1800 }, + [73] = { 43.6, 53.2, 2597, 1800 }, + [74] = { 50.7, 52.6, 2597, 1800 }, + [75] = { 52, 52.2, 2597, 1800 }, + [76] = { 44.9, 51.5, 2597, 1800 }, + [77] = { 50.5, 50.2, 2597, 1800 }, + [78] = { 47.5, 50.1, 2597, 1800 }, + [79] = { 52.2, 49.9, 2597, 1800 }, + [80] = { 52.5, 49.4, 2597, 1800 }, + [81] = { 42.8, 48, 2597, 1800 }, + [82] = { 53, 47.8, 2597, 1800 }, + [83] = { 43.9, 45.3, 2597, 1800 }, + [84] = { 51.1, 44.2, 2597, 1800 }, + [85] = { 50.3, 44.2, 2597, 1800 }, + [86] = { 45.7, 42.4, 2597, 1800 }, + [87] = { 47.8, 42.2, 2597, 1800 }, + [88] = { 49.3, 57.4, 5024, 1800 }, + [89] = { 61.3, 50.8, 5024, 1800 }, + [90] = { 52.3, 42, 5024, 1800 }, + }, + }, + [2045] = { + ["coords"] = { + [1] = { 80.8, 98.4, 8, 900 }, + [2] = { 89.1, 79.5, 8, 900 }, + [3] = { 92.7, 64.6, 8, 900 }, + [4] = { 92.5, 63, 8, 900 }, + [5] = { 90.8, 23.6, 8, 900 }, + [6] = { 81.4, 10.5, 8, 900 }, + [7] = { 10.3, 66.3, 11, 900 }, + [8] = { 11, 65.1, 11, 900 }, + [9] = { 4.9, 65.1, 11, 900 }, + [10] = { 8.7, 64.4, 11, 900 }, + [11] = { 10.6, 64.1, 11, 900 }, + [12] = { 6.4, 63.4, 11, 900 }, + [13] = { 12.9, 62.3, 11, 900 }, + [14] = { 7.9, 62.2, 11, 900 }, + [15] = { 7.3, 60.7, 11, 900 }, + [16] = { 16, 59.8, 11, 900 }, + [17] = { 6.7, 57.4, 11, 900 }, + [18] = { 5.2, 57, 11, 900 }, + [19] = { 6.1, 55.8, 11, 900 }, + [20] = { 19.2, 55.7, 11, 900 }, + [21] = { 6.5, 54.4, 11, 900 }, + [22] = { 5.6, 53.1, 11, 900 }, + [23] = { 12.2, 45.3, 11, 900 }, + [24] = { 12.2, 44.2, 11, 900 }, + [25] = { 13.8, 44.1, 11, 900 }, + [26] = { 12.1, 41.1, 11, 900 }, + [27] = { 10.2, 40, 11, 900 }, + [28] = { 12.2, 38, 11, 900 }, + [29] = { 12.2, 36.1, 11, 900 }, + [30] = { 12, 34, 11, 900 }, + [31] = { 12.8, 32.3, 11, 900 }, + [32] = { 14.4, 28.1, 11, 900 }, + [33] = { 14.8, 27.7, 11, 900 }, + [34] = { 14.9, 26.5, 11, 900 }, + [35] = { 13.6, 25.8, 11, 900 }, + [36] = { 16.8, 23.2, 11, 900 }, + [37] = { 14.9, 20.6, 11, 900 }, + [38] = { 20.5, 19.5, 11, 900 }, + [39] = { 23, 18.4, 11, 900 }, + [40] = { 15.6, 17.5, 11, 900 }, + [41] = { 19.4, 17.4, 11, 900 }, + [42] = { 24, 17.3, 11, 900 }, + [43] = { 25.1, 16, 11, 900 }, + [44] = { 27, 15.9, 11, 900 }, + [45] = { 28.8, 15.7, 11, 900 }, + [46] = { 31.4, 13.4, 11, 900 }, + [47] = { 30.4, 12.7, 11, 900 }, + [48] = { 29.2, 11.9, 11, 900 }, + [49] = { 49.7, 84.4, 14, 900 }, + [50] = { 48.5, 84.2, 14, 900 }, + [51] = { 43.4, 82.7, 14, 900 }, + [52] = { 42.1, 80.9, 14, 900 }, + [53] = { 43.3, 80.5, 14, 900 }, + [54] = { 41.9, 79.8, 14, 900 }, + [55] = { 40.4, 78.9, 14, 900 }, + [56] = { 38.7, 77.2, 14, 900 }, + [57] = { 40.6, 77, 14, 900 }, + [58] = { 39.9, 75.5, 14, 900 }, + [59] = { 38.6, 75.3, 14, 900 }, + [60] = { 38.1, 73.8, 14, 900 }, + [61] = { 39.6, 73.6, 14, 900 }, + [62] = { 95.2, 72, 14, 900 }, + [63] = { 97.3, 70.4, 14, 900 }, + [64] = { 92.8, 67.5, 14, 900 }, + [65] = { 91.3, 60.9, 14, 900 }, + [66] = { 93.3, 53.2, 14, 900 }, + [67] = { 95.7, 44.7, 14, 900 }, + [68] = { 59.5, 67.3, 15, 900 }, + [69] = { 58.7, 45.3, 15, 900 }, + [70] = { 45.9, 34.4, 15, 900 }, + [71] = { 62.2, 17, 15, 900 }, + [72] = { 57.2, 11.3, 15, 900 }, + [73] = { 48.3, 94.2, 16, 900 }, + [74] = { 70, 93.5, 16, 900 }, + [75] = { 75.8, 91.4, 16, 900 }, + [76] = { 74.1, 78.6, 16, 900 }, + [77] = { 62.8, 65.8, 16, 900 }, + [78] = { 56.3, 54.2, 16, 900 }, + [79] = { 65.7, 44.6, 16, 900 }, + [80] = { 53.4, 40.5, 16, 900 }, + [81] = { 69.2, 31.5, 16, 900 }, + [82] = { 68.2, 31.1, 16, 900 }, + [83] = { 59.5, 29.1, 16, 900 }, + [84] = { 59.4, 27.6, 16, 900 }, + [85] = { 65.1, 59.8, 17, 900 }, + [86] = { 64.4, 55.5, 17, 900 }, + [87] = { 63.9, 54.8, 17, 900 }, + [88] = { 63.4, 54, 17, 900 }, + [89] = { 63.6, 53, 17, 900 }, + [90] = { 63.2, 52.2, 17, 900 }, + [91] = { 64, 51, 17, 900 }, + [92] = { 64.6, 50.4, 17, 900 }, + [93] = { 69.7, 49.9, 17, 900 }, + [94] = { 68.6, 49.7, 17, 900 }, + [95] = { 68.9, 49.7, 17, 900 }, + [96] = { 68.2, 49.5, 17, 900 }, + [97] = { 69.4, 49.3, 17, 900 }, + [98] = { 64.4, 49.1, 17, 900 }, + [99] = { 65.1, 49.1, 17, 900 }, + [100] = { 64.7, 48.9, 17, 900 }, + [101] = { 65, 48.4, 17, 900 }, + [102] = { 66, 48.3, 17, 900 }, + [103] = { 65.1, 48, 17, 900 }, + [104] = { 69.4, 47.9, 17, 900 }, + [105] = { 68.5, 47.9, 17, 900 }, + [106] = { 68.2, 47.8, 17, 900 }, + [107] = { 64.7, 47.6, 17, 900 }, + [108] = { 69, 47.4, 17, 900 }, + [109] = { 65, 47.1, 17, 900 }, + [110] = { 65.2, 47, 17, 900 }, + [111] = { 65.2, 46.3, 17, 900 }, + [112] = { 65.7, 46.2, 17, 900 }, + [113] = { 64.6, 46.1, 17, 900 }, + [114] = { 64.2, 45.6, 17, 900 }, + [115] = { 65.2, 45.4, 17, 900 }, + [116] = { 64.2, 45.2, 17, 900 }, + [117] = { 64.5, 45, 17, 900 }, + [118] = { 64.4, 44.9, 17, 900 }, + [119] = { 64.8, 44.9, 17, 900 }, + [120] = { 65.8, 44.2, 17, 900 }, + [121] = { 62.5, 43.6, 17, 900 }, + [122] = { 65.8, 43.4, 17, 900 }, + [123] = { 64.6, 43.3, 17, 900 }, + [124] = { 66, 43.1, 17, 900 }, + [125] = { 65.7, 43.1, 17, 900 }, + [126] = { 64.3, 42.9, 17, 900 }, + [127] = { 65.5, 42.9, 17, 900 }, + [128] = { 64, 42.8, 17, 900 }, + [129] = { 65.3, 42.8, 17, 900 }, + [130] = { 62.2, 42.4, 17, 900 }, + [131] = { 65.7, 42.1, 17, 900 }, + [132] = { 66.4, 42, 17, 900 }, + [133] = { 62.1, 42, 17, 900 }, + [134] = { 62.2, 41.9, 17, 900 }, + [135] = { 62, 41.7, 17, 900 }, + [136] = { 63.8, 41.5, 17, 900 }, + [137] = { 62, 41.3, 17, 900 }, + [138] = { 62.1, 41.3, 17, 900 }, + [139] = { 71.2, 41.1, 17, 900 }, + [140] = { 62.2, 41, 17, 900 }, + [141] = { 70.5, 41, 17, 900 }, + [142] = { 63.3, 40.4, 17, 900 }, + [143] = { 67.9, 40.3, 17, 900 }, + [144] = { 67.2, 39.3, 17, 900 }, + [145] = { 67.8, 39.1, 17, 900 }, + [146] = { 63.3, 39, 17, 900 }, + [147] = { 67.1, 38.7, 17, 900 }, + [148] = { 64.6, 38.6, 17, 900 }, + [149] = { 62.9, 38.3, 17, 900 }, + [150] = { 66.4, 38.3, 17, 900 }, + [151] = { 63.5, 37.8, 17, 900 }, + [152] = { 64.9, 37.8, 17, 900 }, + [153] = { 63.1, 37.7, 17, 900 }, + [154] = { 65.5, 37.4, 17, 900 }, + [155] = { 66.4, 37.3, 17, 900 }, + [156] = { 64.9, 36.7, 17, 900 }, + [157] = { 66.1, 36.5, 17, 900 }, + [158] = { 65.4, 36.4, 17, 900 }, + [159] = { 64.4, 36.1, 17, 900 }, + [160] = { 65.1, 35.6, 17, 900 }, + [161] = { 65.9, 35.5, 17, 900 }, + [162] = { 30.1, 89.6, 33, 900 }, + [163] = { 29.6, 89, 33, 900 }, + [164] = { 29.6, 88.2, 33, 900 }, + [165] = { 30.5, 88, 33, 900 }, + [166] = { 27.9, 87.5, 33, 900 }, + [167] = { 29, 87.5, 33, 900 }, + [168] = { 29.4, 87.3, 33, 900 }, + [169] = { 28.7, 87.1, 33, 900 }, + [170] = { 30.4, 87.1, 33, 900 }, + [171] = { 29.8, 87.1, 33, 900 }, + [172] = { 28.3, 86.5, 33, 900 }, + [173] = { 25.6, 86.3, 33, 900 }, + [174] = { 27.4, 86, 33, 900 }, + [175] = { 27.8, 85.7, 33, 900 }, + [176] = { 30, 85.6, 33, 900 }, + [177] = { 25.6, 85.5, 33, 900 }, + [178] = { 26.8, 84.6, 33, 900 }, + [179] = { 26.2, 84.2, 33, 900 }, + [180] = { 27.6, 83.5, 33, 900 }, + [181] = { 26.2, 83.3, 33, 900 }, + [182] = { 26.4, 82.5, 33, 900 }, + [183] = { 32.1, 82.4, 33, 900 }, + [184] = { 32.5, 82.3, 33, 900 }, + [185] = { 34.6, 75.9, 33, 900 }, + [186] = { 35.7, 74.6, 33, 900 }, + [187] = { 26.5, 69.9, 33, 900 }, + [188] = { 22.8, 68.8, 33, 900 }, + [189] = { 26.6, 68.6, 33, 900 }, + [190] = { 21.4, 68.3, 33, 900 }, + [191] = { 27.4, 68.1, 33, 900 }, + [192] = { 25.4, 67.9, 33, 900 }, + [193] = { 24.2, 67.1, 33, 900 }, + [194] = { 38.4, 63.5, 33, 900 }, + [195] = { 1.1, 63.4, 33, 900 }, + [196] = { 1, 60.2, 33, 900 }, + [197] = { 22.8, 59.3, 33, 900 }, + [198] = { 28.2, 57.2, 33, 900 }, + [199] = { 25.4, 57, 33, 900 }, + [200] = { 22.1, 56.5, 33, 900 }, + [201] = { 21.3, 53.5, 33, 900 }, + [202] = { 22.1, 53.3, 33, 900 }, + [203] = { 22, 51.3, 33, 900 }, + [204] = { 22.6, 49, 33, 900 }, + [205] = { 24.9, 48.5, 33, 900 }, + [206] = { 25.9, 47.8, 33, 900 }, + [207] = { 22.2, 45.7, 33, 900 }, + [208] = { 26.6, 44.4, 33, 900 }, + [209] = { 26.7, 42.5, 33, 900 }, + [210] = { 27, 42.3, 33, 900 }, + [211] = { 26.6, 40.3, 33, 900 }, + [212] = { 26.8, 38.8, 33, 900 }, + [213] = { 33.9, 35.9, 33, 900 }, + [214] = { 30.9, 33.4, 33, 900 }, + [215] = { 26.4, 32.4, 33, 900 }, + [216] = { 28.7, 32.3, 33, 900 }, + [217] = { 29.6, 32.1, 33, 900 }, + [218] = { 31.2, 31.4, 33, 900 }, + [219] = { 29.6, 29.4, 33, 900 }, + [220] = { 28.5, 26.6, 33, 900 }, + [221] = { 23.4, 25.5, 33, 900 }, + [222] = { 27.4, 22.8, 33, 900 }, + [223] = { 18.8, 22.7, 33, 900 }, + [224] = { 25.9, 20.7, 33, 900 }, + [225] = { 13.9, 13.3, 33, 900 }, + [226] = { 11.8, 51.9, 36, 900 }, + [227] = { 17.1, 48.4, 36, 900 }, + [228] = { 27.4, 74.4, 40, 900 }, + [229] = { 25.5, 72.4, 40, 900 }, + [230] = { 25.8, 69.6, 40, 900 }, + [231] = { 24.8, 64.9, 40, 900 }, + [232] = { 24.2, 55.5, 40, 900 }, + [233] = { 25.3, 50.4, 40, 900 }, + [234] = { 24.7, 47.6, 40, 900 }, + [235] = { 24.8, 43.7, 40, 900 }, + [236] = { 20.5, 40.7, 40, 900 }, + [237] = { 26.3, 39.5, 40, 900 }, + [238] = { 26.2, 37.8, 40, 900 }, + [239] = { 26.6, 33.4, 40, 900 }, + [240] = { 27.1, 31.6, 40, 900 }, + [241] = { 27.7, 29.1, 40, 900 }, + [242] = { 29.1, 27.6, 40, 900 }, + [243] = { 31.4, 21.9, 40, 900 }, + [244] = { 33.6, 15.7, 40, 900 }, + [245] = { 36.5, 13.1, 40, 900 }, + [246] = { 40.1, 9.2, 40, 900 }, + [247] = { 50.5, 8.3, 40, 900 }, + [248] = { 22.8, 99.3, 45, 900 }, + [249] = { 21.7, 98.6, 45, 900 }, + [250] = { 20.3, 97.7, 45, 900 }, + [251] = { 6.8, 67, 45, 900 }, + [252] = { 5, 65.2, 45, 900 }, + [253] = { 7.1, 64.4, 45, 900 }, + [254] = { 4.4, 62, 45, 900 }, + [255] = { 5.2, 57.6, 45, 900 }, + [256] = { 73.8, 91.7, 47, 900 }, + [257] = { 74.9, 88.5, 47, 900 }, + [258] = { 80, 87.7, 47, 900 }, + [259] = { 77.8, 87.4, 47, 900 }, + [260] = { 77.1, 84.5, 47, 900 }, + [261] = { 81.7, 76.1, 47, 900 }, + [262] = { 82.3, 68.5, 47, 900 }, + [263] = { 81.8, 64.9, 47, 900 }, + [264] = { 41.1, 74.4, 130, 900 }, + [265] = { 39.7, 72.6, 130, 900 }, + [266] = { 34.9, 48.1, 130, 900 }, + [267] = { 67.1, 40.6, 130, 900 }, + [268] = { 71.4, 40.6, 130, 900 }, + [269] = { 74.9, 38.2, 130, 900 }, + [270] = { 35.6, 37.4, 130, 900 }, + [271] = { 64.6, 37.1, 130, 900 }, + [272] = { 78.7, 31.8, 130, 900 }, + [273] = { 78.3, 31.5, 130, 900 }, + [274] = { 35.5, 29.2, 130, 900 }, + [275] = { 34.7, 26.8, 130, 900 }, + [276] = { 79.1, 24.8, 130, 900 }, + [277] = { 76, 20, 130, 900 }, + [278] = { 77.4, 19.9, 130, 900 }, + [279] = { 76.8, 19.3, 130, 900 }, + [280] = { 72.7, 13.1, 130, 900 }, + [281] = { 30.9, 99.8, 148, 900 }, + [282] = { 31.6, 99.8, 148, 900 }, + [283] = { 31.5, 99.4, 148, 900 }, + [284] = { 29, 99.1, 148, 900 }, + [285] = { 24.7, 99, 148, 900 }, + [286] = { 31.4, 98.8, 148, 900 }, + [287] = { 31.1, 98.6, 148, 900 }, + [288] = { 30.9, 98.5, 148, 900 }, + [289] = { 30.6, 98.2, 148, 900 }, + [290] = { 30, 98.1, 148, 900 }, + [291] = { 30.2, 98, 148, 900 }, + [292] = { 31.3, 98, 148, 900 }, + [293] = { 23.6, 94.3, 148, 900 }, + [294] = { 30.2, 93.4, 148, 900 }, + [295] = { 30.1, 92.5, 148, 900 }, + [296] = { 31.7, 91.6, 148, 900 }, + [297] = { 30.7, 87.8, 148, 900 }, + [298] = { 32.8, 87.6, 148, 900 }, + [299] = { 32.2, 85.6, 148, 900 }, + [300] = { 30.7, 84.7, 148, 900 }, + [301] = { 32.3, 84, 148, 900 }, + [302] = { 35, 81.7, 148, 900 }, + [303] = { 31.2, 80.9, 148, 900 }, + [304] = { 36.3, 80.4, 148, 900 }, + [305] = { 34.9, 79.6, 148, 900 }, + [306] = { 32.7, 79.4, 148, 900 }, + [307] = { 35.2, 79.2, 148, 900 }, + [308] = { 35.5, 78.7, 148, 900 }, + [309] = { 35.6, 77.8, 148, 900 }, + [310] = { 35, 77.4, 148, 900 }, + [311] = { 35.9, 77.3, 148, 900 }, + [312] = { 33.7, 77, 148, 900 }, + [313] = { 35.9, 76.4, 148, 900 }, + [314] = { 35.6, 75.7, 148, 900 }, + [315] = { 35.8, 75, 148, 900 }, + [316] = { 36.1, 74, 148, 900 }, + [317] = { 35.8, 73.4, 148, 900 }, + [318] = { 35.5, 72.9, 148, 900 }, + [319] = { 35.1, 72.4, 148, 900 }, + [320] = { 35.3, 71.6, 148, 900 }, + [321] = { 35.8, 71.2, 148, 900 }, + [322] = { 30.2, 70.9, 148, 900 }, + [323] = { 30.1, 70.8, 148, 900 }, + [324] = { 36.1, 70.5, 148, 900 }, + [325] = { 35.5, 70.2, 148, 900 }, + [326] = { 36.2, 69.8, 148, 900 }, + [327] = { 36.4, 69, 148, 900 }, + [328] = { 36.5, 68.5, 148, 900 }, + [329] = { 36.6, 68, 148, 900 }, + [330] = { 36.3, 67.2, 148, 900 }, + [331] = { 36.8, 67.1, 148, 900 }, + [332] = { 36.5, 66.2, 148, 900 }, + [333] = { 36.2, 65.8, 148, 900 }, + [334] = { 36.1, 64.9, 148, 900 }, + [335] = { 35.8, 64.1, 148, 900 }, + [336] = { 36.4, 64.1, 148, 900 }, + [337] = { 36.2, 63.3, 148, 900 }, + [338] = { 36.6, 62.2, 148, 900 }, + [339] = { 36.1, 61.8, 148, 900 }, + [340] = { 36.5, 61.1, 148, 900 }, + [341] = { 36.6, 57.7, 148, 900 }, + [342] = { 35.7, 57.3, 148, 900 }, + [343] = { 36.7, 56.8, 148, 900 }, + [344] = { 36.1, 56.3, 148, 900 }, + [345] = { 35.4, 56, 148, 900 }, + [346] = { 36.3, 55.2, 148, 900 }, + [347] = { 36.3, 54.6, 148, 900 }, + [348] = { 35.5, 54.1, 148, 900 }, + [349] = { 29.9, 54, 148, 900 }, + [350] = { 35.2, 53.7, 148, 900 }, + [351] = { 33, 53.7, 148, 900 }, + [352] = { 35.9, 51.9, 148, 900 }, + [353] = { 36.1, 50.5, 148, 900 }, + [354] = { 35.7, 50.4, 148, 900 }, + [355] = { 35.9, 49.4, 148, 900 }, + [356] = { 35.8, 48.4, 148, 900 }, + [357] = { 30.4, 48.3, 148, 900 }, + [358] = { 36, 47.2, 148, 900 }, + [359] = { 36, 46.9, 148, 900 }, + [360] = { 30.9, 46.8, 148, 900 }, + [361] = { 34.9, 46.5, 148, 900 }, + [362] = { 35.9, 44.5, 148, 900 }, + [363] = { 34.3, 42.9, 148, 900 }, + [364] = { 35.7, 39.3, 148, 900 }, + [365] = { 33.5, 38.7, 148, 900 }, + [366] = { 32.6, 38, 148, 900 }, + [367] = { 31.2, 37.6, 148, 900 }, + [368] = { 37.1, 36.6, 148, 900 }, + [369] = { 36.3, 35.9, 148, 900 }, + [370] = { 37, 35.3, 148, 900 }, + [371] = { 37.2, 34.7, 148, 900 }, + [372] = { 37.8, 34, 148, 900 }, + [373] = { 38, 31.8, 148, 900 }, + [374] = { 32.9, 31.5, 148, 900 }, + [375] = { 41.8, 31.4, 148, 900 }, + [376] = { 39.6, 31.3, 148, 900 }, + [377] = { 33, 31.2, 148, 900 }, + [378] = { 32.8, 30.9, 148, 900 }, + [379] = { 32.7, 30.4, 148, 900 }, + [380] = { 42, 30.2, 148, 900 }, + [381] = { 41.8, 28.8, 148, 900 }, + [382] = { 39.1, 25.5, 148, 900 }, + [383] = { 50.3, 22, 148, 900 }, + [384] = { 50.3, 21.3, 148, 900 }, + [385] = { 41.9, 20.9, 148, 900 }, + [386] = { 46.8, 20.4, 148, 900 }, + [387] = { 48, 20.3, 148, 900 }, + [388] = { 54.4, 15.1, 148, 900 }, + [389] = { 53.6, 14.9, 148, 900 }, + [390] = { 68.4, 97.4, 267, 900 }, + [391] = { 65.4, 94.7, 267, 900 }, + [392] = { 64.2, 91.3, 267, 900 }, + [393] = { 66.3, 89.8, 267, 900 }, + [394] = { 54, 83.2, 267, 900 }, + [395] = { 52.6, 83.1, 267, 900 }, + [396] = { 63, 82.1, 267, 900 }, + [397] = { 50.7, 80.9, 267, 900 }, + [398] = { 65.2, 80.7, 267, 900 }, + [399] = { 30.5, 79.3, 267, 900 }, + [400] = { 63.6, 78.3, 267, 900 }, + [401] = { 20.7, 78, 267, 900 }, + [402] = { 53.6, 75.8, 267, 900 }, + [403] = { 40, 75.6, 267, 900 }, + [404] = { 44, 75.5, 267, 900 }, + [405] = { 31.9, 74.1, 267, 900 }, + [406] = { 57.6, 73.8, 267, 900 }, + [407] = { 41.1, 73.6, 267, 900 }, + [408] = { 47.1, 72.8, 267, 900 }, + [409] = { 50.4, 72.3, 267, 900 }, + [410] = { 33.2, 72.2, 267, 900 }, + [411] = { 58.1, 71.2, 267, 900 }, + [412] = { 39.3, 71.1, 267, 900 }, + [413] = { 20.8, 71, 267, 900 }, + [414] = { 35, 70.9, 267, 900 }, + [415] = { 48.5, 70.7, 267, 900 }, + [416] = { 33.9, 69.9, 267, 900 }, + [417] = { 39.3, 69.8, 267, 900 }, + [418] = { 38.5, 69.7, 267, 900 }, + [419] = { 55.6, 69.4, 267, 900 }, + [420] = { 42.1, 69.4, 267, 900 }, + [421] = { 34.1, 69.4, 267, 900 }, + [422] = { 35.6, 69.3, 267, 900 }, + [423] = { 46.1, 68.1, 267, 900 }, + [424] = { 44, 67.9, 267, 900 }, + [425] = { 17.9, 67.6, 267, 900 }, + [426] = { 46.2, 65.9, 267, 900 }, + [427] = { 56.2, 65.6, 267, 900 }, + [428] = { 23.6, 64.8, 267, 900 }, + [429] = { 47.8, 64.7, 267, 900 }, + [430] = { 51.6, 73.8, 331, 900 }, + [431] = { 80, 72.7, 331, 900 }, + [432] = { 51, 72.1, 331, 900 }, + [433] = { 48, 71.9, 331, 900 }, + [434] = { 48.7, 71.3, 331, 900 }, + [435] = { 47.8, 71, 331, 900 }, + [436] = { 47.6, 69.5, 331, 900 }, + [437] = { 49.1, 69.3, 331, 900 }, + [438] = { 33.4, 68.9, 331, 900 }, + [439] = { 32.8, 68.8, 331, 900 }, + [440] = { 32.4, 67.6, 331, 900 }, + [441] = { 32.4, 67, 331, 900 }, + [442] = { 84.6, 66.9, 331, 900 }, + [443] = { 78.8, 66.3, 331, 900 }, + [444] = { 35, 66.1, 331, 900 }, + [445] = { 35, 65.8, 331, 900 }, + [446] = { 82.6, 64.8, 331, 900 }, + [447] = { 65.7, 64.6, 331, 900 }, + [448] = { 66, 64.5, 331, 900 }, + [449] = { 81.9, 64.5, 331, 900 }, + [450] = { 81.3, 64.1, 331, 900 }, + [451] = { 68.2, 64, 331, 900 }, + [452] = { 79.3, 62.5, 331, 900 }, + [453] = { 78.2, 61.6, 331, 900 }, + [454] = { 70.2, 58.3, 331, 900 }, + [455] = { 70.4, 58.3, 331, 900 }, + [456] = { 70.2, 57, 331, 900 }, + [457] = { 79.3, 56.6, 331, 900 }, + [458] = { 71.7, 55.3, 331, 900 }, + [459] = { 78.3, 53.5, 331, 900 }, + [460] = { 78.1, 52.8, 331, 900 }, + [461] = { 78.9, 52.6, 331, 900 }, + [462] = { 78.5, 52.5, 331, 900 }, + [463] = { 78.9, 52.4, 331, 900 }, + [464] = { 78.9, 52.2, 331, 900 }, + [465] = { 78.7, 52, 331, 900 }, + [466] = { 76.9, 49.4, 331, 900 }, + [467] = { 77.4, 45.7, 331, 900 }, + [468] = { 76.7, 45, 331, 900 }, + [469] = { 20.2, 44, 331, 900 }, + [470] = { 19.7, 42, 331, 900 }, + [471] = { 19.8, 41.7, 331, 900 }, + [472] = { 20, 41.4, 331, 900 }, + [473] = { 10.9, 33.1, 331, 900 }, + [474] = { 11.3, 31.8, 331, 900 }, + [475] = { 11, 30.7, 331, 900 }, + [476] = { 10.1, 29.7, 331, 900 }, + [477] = { 10.8, 29.1, 331, 900 }, + [478] = { 11.3, 28.9, 331, 900 }, + [479] = { 11.5, 28.7, 331, 900 }, + [480] = { 9.8, 28.6, 331, 900 }, + [481] = { 11.9, 28.3, 331, 900 }, + [482] = { 13.2, 28.3, 331, 900 }, + [483] = { 13.9, 28.2, 331, 900 }, + [484] = { 14.3, 28.2, 331, 900 }, + [485] = { 15.6, 28.2, 331, 900 }, + [486] = { 12.4, 28, 331, 900 }, + [487] = { 15.4, 27.9, 331, 900 }, + [488] = { 10.2, 27.8, 331, 900 }, + [489] = { 9.3, 27.7, 331, 900 }, + [490] = { 14.8, 27.4, 331, 900 }, + [491] = { 9.9, 27.3, 331, 900 }, + [492] = { 13.4, 27.3, 331, 900 }, + [493] = { 13.8, 27.2, 331, 900 }, + [494] = { 11.5, 27.1, 331, 900 }, + [495] = { 13, 27, 331, 900 }, + [496] = { 10, 27, 331, 900 }, + [497] = { 10.9, 27, 331, 900 }, + [498] = { 14.1, 27, 331, 900 }, + [499] = { 12.8, 26.9, 331, 900 }, + [500] = { 9.4, 26.8, 331, 900 }, + [501] = { 12.3, 26.4, 331, 900 }, + [502] = { 13.4, 26.3, 331, 900 }, + [503] = { 11.7, 26, 331, 900 }, + [504] = { 14, 25.8, 331, 900 }, + [505] = { 13.3, 25.5, 331, 900 }, + [506] = { 12.4, 25.1, 331, 900 }, + [507] = { 13.1, 24.8, 331, 900 }, + [508] = { 14, 24.4, 331, 900 }, + [509] = { 16, 24.1, 331, 900 }, + [510] = { 13.8, 23.8, 331, 900 }, + [511] = { 11.8, 23.2, 331, 900 }, + [512] = { 12.4, 23.1, 331, 900 }, + [513] = { 14.5, 22.9, 331, 900 }, + [514] = { 16.2, 22.6, 331, 900 }, + [515] = { 12.1, 22.5, 331, 900 }, + [516] = { 14.6, 21.7, 331, 900 }, + [517] = { 13.3, 21.3, 331, 900 }, + [518] = { 14.5, 21, 331, 900 }, + [519] = { 14.7, 20.7, 331, 900 }, + [520] = { 13, 20.7, 331, 900 }, + [521] = { 13.7, 20.1, 331, 900 }, + [522] = { 14.1, 19.8, 331, 900 }, + [523] = { 14, 19.1, 331, 900 }, + [524] = { 13.5, 18.2, 331, 900 }, + [525] = { 14.4, 18.2, 331, 900 }, + [526] = { 14.2, 17.6, 331, 900 }, + [527] = { 11.4, 17.4, 331, 900 }, + [528] = { 6.5, 17.3, 331, 900 }, + [529] = { 14.1, 17, 331, 900 }, + [530] = { 13.8, 16.8, 331, 900 }, + [531] = { 13.6, 16.7, 331, 900 }, + [532] = { 13.2, 16.4, 331, 900 }, + [533] = { 12.5, 16.3, 331, 900 }, + [534] = { 12.8, 16.1, 331, 900 }, + [535] = { 14, 16.1, 331, 900 }, + [536] = { 5.3, 11.9, 331, 900 }, + [537] = { 12.7, 10.9, 331, 900 }, + [538] = { 12.6, 9.9, 331, 900 }, + [539] = { 14.4, 8.8, 331, 900 }, + [540] = { 44.9, 68.5, 357, 900 }, + [541] = { 44.8, 66.7, 357, 900 }, + [542] = { 45.6, 65, 357, 900 }, + [543] = { 29.8, 64.2, 357, 900 }, + [544] = { 24.1, 63.4, 357, 900 }, + [545] = { 46, 63.2, 357, 900 }, + [546] = { 30.6, 62.9, 357, 900 }, + [547] = { 24.8, 62.8, 357, 900 }, + [548] = { 25.7, 62.4, 357, 900 }, + [549] = { 26, 62.4, 357, 900 }, + [550] = { 46.5, 61.4, 357, 900 }, + [551] = { 27.3, 58.1, 357, 900 }, + [552] = { 45.5, 57.6, 357, 900 }, + [553] = { 46.3, 57.6, 357, 900 }, + [554] = { 25.4, 57.5, 357, 900 }, + [555] = { 25.5, 57.4, 357, 900 }, + [556] = { 26.5, 57.2, 357, 900 }, + [557] = { 31.2, 56.4, 357, 900 }, + [558] = { 45.9, 52.7, 357, 900 }, + [559] = { 45.7, 52.5, 357, 900 }, + [560] = { 44.2, 50.3, 357, 900 }, + [561] = { 44.6, 48.3, 357, 900 }, + [562] = { 44.3, 45.3, 357, 900 }, + [563] = { 43.2, 40.5, 357, 900 }, + [564] = { 35.6, 35.9, 357, 900 }, + [565] = { 34.7, 34.5, 357, 900 }, + [566] = { 38.7, 34.2, 357, 900 }, + [567] = { 22, 82.3, 405, 900 }, + [568] = { 24.6, 81.8, 405, 900 }, + [569] = { 25.8, 81.2, 405, 900 }, + [570] = { 26.1, 80, 405, 900 }, + [571] = { 20.5, 79.2, 405, 900 }, + [572] = { 26, 78.4, 405, 900 }, + [573] = { 18.6, 77.5, 405, 900 }, + [574] = { 26.1, 76.9, 405, 900 }, + [575] = { 26.1, 75.3, 405, 900 }, + [576] = { 23.3, 73.3, 405, 900 }, + [577] = { 23.9, 73.2, 405, 900 }, + [578] = { 22.3, 71.1, 405, 900 }, + [579] = { 33.1, 36.8, 405, 900 }, + [580] = { 35.9, 35.4, 405, 900 }, + [581] = { 36.1, 32.4, 405, 900 }, + [582] = { 36.1, 29.4, 405, 900 }, + [583] = { 32.1, 29, 405, 900 }, + [584] = { 36.5, 26.5, 405, 900 }, + [585] = { 37.6, 24.7, 405, 900 }, + [586] = { 40.3, 22.5, 405, 900 }, + [587] = { 41.3, 22.4, 405, 900 }, + [588] = { 39.1, 20.8, 405, 900 }, + [589] = { 41.2, 19.7, 405, 900 }, + [590] = { 31.4, 18.2, 405, 900 }, + [591] = { 86.8, 40, 406, 900 }, + [592] = { 86.3, 38.4, 406, 900 }, + [593] = { 83.4, 38.2, 406, 900 }, + [594] = { 84, 37.6, 406, 900 }, + [595] = { 83.2, 37.3, 406, 900 }, + [596] = { 83, 35.9, 406, 900 }, + [597] = { 84.4, 35.7, 406, 900 }, + [598] = { 69.3, 35.3, 406, 900 }, + [599] = { 68.8, 35.3, 406, 900 }, + [600] = { 68.4, 34.1, 406, 900 }, + [601] = { 68.4, 33.5, 406, 900 }, + [602] = { 70.9, 32.6, 406, 900 }, + [603] = { 23, 90.1, 408, 900 }, + [604] = { 52, 86.2, 408, 900 }, + [605] = { 41.2, 84.9, 408, 900 }, + [606] = { 47.4, 81.4, 408, 900 }, + [607] = { 32.5, 69, 408, 900 }, + [608] = { 42.5, 65.9, 408, 900 }, + [609] = { 74, 65.4, 408, 900 }, + [610] = { 34.9, 60.3, 408, 900 }, + [611] = { 73.6, 58.7, 408, 900 }, + [612] = { 40, 51.8, 408, 900 }, + [613] = { 37.2, 49.9, 408, 900 }, + [614] = { 70.7, 49.6, 408, 900 }, + [615] = { 39.2, 48.8, 408, 900 }, + [616] = { 64.9, 47.7, 408, 900 }, + [617] = { 27.4, 33.1, 408, 900 }, + [618] = { 29.7, 30.5, 408, 900 }, + [619] = { 21.6, 5.1, 408, 900 }, + [620] = { 40.2, 83, 409, 900 }, + [621] = { 35.6, 73.2, 409, 900 }, + [622] = { 70.5, 69.1, 409, 900 }, + [623] = { 31.9, 66, 409, 900 }, + [624] = { 26.7, 62.9, 409, 900 }, + [625] = { 27.7, 62.7, 409, 900 }, + [626] = { 73.2, 59.4, 409, 900 }, + [627] = { 70.1, 51.7, 409, 900 }, + [628] = { 65.3, 51.2, 409, 900 }, + [629] = { 31.7, 50.4, 409, 900 }, + [630] = { 99.1, 4.8, 409, 900 }, + [631] = { 96.8, 2.4, 409, 900 }, + [632] = { 52.8, 76.7, 719, 604800 }, + [633] = { 44.5, 68.1, 719, 604800 }, + [634] = { 31, 48, 719, 604800 }, + [635] = { 40.6, 29.4, 719, 604800 }, + [636] = { 22.5, 27.4, 719, 604800 }, + [637] = { 49.9, 90.4, 1497, 900 }, + [638] = { 29.4, 87.3, 2100, 604800 }, + [639] = { 33, 85.6, 2100, 604800 }, + [640] = { 28.8, 81.1, 2100, 604800 }, + [641] = { 49.4, 90.2, 5121, 900 }, + [642] = { 43.8, 88.9, 5121, 900 }, + [643] = { 53.9, 86.9, 5121, 900 }, + [644] = { 55.5, 83.1, 5121, 900 }, + [645] = { 58.5, 77.4, 5121, 900 }, + [646] = { 63.2, 73.3, 5121, 900 }, + [647] = { 39, 69.3, 5121, 900 }, + [648] = { 39.9, 63.9, 5121, 900 }, + [649] = { 64.6, 63.6, 5121, 900 }, + [650] = { 40.8, 61.3, 5121, 900 }, + [651] = { 38.8, 58.3, 5121, 900 }, + [652] = { 64, 55.8, 5121, 900 }, + [653] = { 38.3, 50.7, 5121, 900 }, + [654] = { 39, 48.7, 5121, 900 }, + [655] = { 63.2, 44.6, 5121, 900 }, + [656] = { 39.9, 44.5, 5121, 900 }, + [657] = { 39.7, 39.8, 5121, 900 }, + [658] = { 65.4, 36, 5121, 900 }, + [659] = { 37.9, 35.9, 5121, 900 }, + [660] = { 37.3, 31.4, 5121, 900 }, + [661] = { 50.5, 29, 5121, 900 }, + [662] = { 45.6, 29, 5121, 900 }, + [663] = { 63.7, 28.3, 5121, 900 }, + [664] = { 53, 27.8, 5121, 900 }, + [665] = { 39.7, 27.3, 5121, 900 }, + [666] = { 55.5, 21, 5121, 900 }, + [667] = { 63.2, 18.3, 5121, 900 }, + [668] = { 44.6, 16.7, 5121, 900 }, + [669] = { 59.4, 16.4, 5121, 900 }, + [670] = { 50, 12.3, 5121, 900 }, + [671] = { 59.7, 10.9, 5121, 900 }, + [672] = { 55, 7.2, 5121, 900 }, + [673] = { 52.3, 97.5, 5179, 900 }, + [674] = { 51, 95.9, 5179, 900 }, + [675] = { 53.4, 95.8, 5179, 900 }, + [676] = { 58.5, 92, 5179, 900 }, + [677] = { 62.9, 90.6, 5179, 900 }, + [678] = { 49.5, 90.2, 5179, 900 }, + [679] = { 65.2, 87.9, 5179, 900 }, + [680] = { 37.1, 82.7, 5179, 900 }, + [681] = { 34.1, 82, 5179, 900 }, + [682] = { 45.9, 81.9, 5179, 900 }, + [683] = { 30.6, 80.2, 5179, 900 }, + [684] = { 21.5, 76.3, 5179, 900 }, + [685] = { 26.8, 76.2, 5179, 900 }, + [686] = { 23.9, 76.1, 5179, 900 }, + [687] = { 20.1, 73.9, 5179, 900 }, + [688] = { 18.1, 70.3, 5179, 900 }, + [689] = { 15.2, 65.5, 5179, 900 }, + [690] = { 13.4, 60, 5179, 900 }, + [691] = { 10.6, 52.9, 5179, 900 }, + [692] = { 63.4, 47.1, 5179, 900 }, + [693] = { 9.7, 45, 5179, 900 }, + [694] = { 10.8, 39.7, 5179, 900 }, + [695] = { 86.2, 38.2, 5179, 900 }, + [696] = { 77.7, 37.1, 5179, 900 }, + [697] = { 11.3, 36.8, 5179, 900 }, + [698] = { 94.5, 35, 5179, 900 }, + [699] = { 98, 34.8, 5179, 900 }, + [700] = { 87.5, 33.7, 5179, 900 }, + [701] = { 11.9, 33.4, 5179, 900 }, + [702] = { 95.5, 33.2, 5179, 900 }, + [703] = { 88.6, 32, 5179, 900 }, + [704] = { 93.9, 31, 5179, 900 }, + [705] = { 77.8, 31, 5179, 900 }, + [706] = { 90.2, 30.9, 5179, 900 }, + [707] = { 13, 30.6, 5179, 900 }, + [708] = { 89.3, 30, 5179, 900 }, + [709] = { 93.9, 29.9, 5179, 900 }, + [710] = { 93.3, 29.8, 5179, 900 }, + [711] = { 96.4, 29.6, 5179, 900 }, + [712] = { 89.4, 29.5, 5179, 900 }, + [713] = { 90.7, 29.4, 5179, 900 }, + [714] = { 99.9, 28.4, 5179, 900 }, + [715] = { 98.1, 28.3, 5179, 900 }, + [716] = { 14.2, 28.2, 5179, 900 }, + [717] = { 75.3, 28, 5179, 900 }, + [718] = { 15.8, 27, 5179, 900 }, + [719] = { 100, 26.5, 5179, 900 }, + [720] = { 80.2, 25.5, 5179, 900 }, + [721] = { 41.7, 2.4, 5179, 900 }, + [722] = { 40.1, 0.3, 5179, 900 }, + [723] = { 11.6, 48.2, 5225, 900 }, + [724] = { 16.9, 48.2, 5225, 900 }, + [725] = { 23.2, 47.8, 5225, 900 }, + [726] = { 25.9, 41.7, 5225, 900 }, + [727] = { 14.2, 39.5, 5225, 900 }, + [728] = { 29.1, 91.8, 5536, 900 }, + [729] = { 33.7, 88.4, 5536, 900 }, + [730] = { 68.1, 86.8, 5536, 900 }, + [731] = { 24.1, 82.4, 5536, 900 }, + [732] = { 70.2, 80.4, 5536, 900 }, + [733] = { 20.8, 68.4, 5536, 900 }, + [734] = { 25.2, 51.9, 5536, 900 }, + [735] = { 30.3, 34, 5536, 900 }, + [736] = { 61.2, 19.9, 5536, 900 }, + [737] = { 60.3, 8.7, 5536, 900 }, + [738] = { 65.1, 77.5, 5561, 900 }, + [739] = { 67.2, 71.1, 5561, 900 }, + [740] = { 64.1, 63.2, 5561, 900 }, + [741] = { 64.3, 55.5, 5561, 900 }, + [742] = { 31.4, 21.5, 5561, 900 }, + [743] = { 34.5, 18.2, 5561, 900 }, + [744] = { 31.7, 11.5, 5561, 900 }, + [745] = { 31.7, 1, 5561, 900 }, + [746] = { 29.9, 55.9, 5581, 900 }, + }, + }, + [2046] = { + ["coords"] = { + [1] = { 27.6, 93.8, 1, 1800 }, + [2] = { 21.3, 91.8, 1, 1800 }, + [3] = { 10.2, 84.2, 3, 1800 }, + [4] = { 12.7, 82.2, 3, 1800 }, + [5] = { 12.3, 81.6, 3, 1800 }, + [6] = { 7.8, 79.3, 3, 1800 }, + [7] = { 8.2, 79.1, 3, 1800 }, + [8] = { 7.7, 78.1, 3, 1800 }, + [9] = { 8.3, 77.9, 3, 1800 }, + [10] = { 14.3, 76.1, 3, 1800 }, + [11] = { 15.8, 76, 3, 1800 }, + [12] = { 15.5, 75.8, 3, 1800 }, + [13] = { 14, 75.3, 3, 1800 }, + [14] = { 14.5, 75.3, 3, 1800 }, + [15] = { 14.9, 75.2, 3, 1800 }, + [16] = { 48.4, 69.3, 3, 1800 }, + [17] = { 44, 68.4, 3, 1800 }, + [18] = { 43.1, 68.4, 3, 1800 }, + [19] = { 43.7, 68.2, 3, 1800 }, + [20] = { 41.3, 62.6, 3, 1800 }, + [21] = { 68.8, 61, 3, 1800 }, + [22] = { 49.2, 58.2, 3, 1800 }, + [23] = { 43, 56.5, 3, 1800 }, + [24] = { 42.5, 56.2, 3, 1800 }, + [25] = { 42.2, 56, 3, 1800 }, + [26] = { 22.9, 54.7, 3, 1800 }, + [27] = { 44.4, 50.9, 3, 1800 }, + [28] = { 22.7, 45.8, 3, 1800 }, + [29] = { 76.5, 45.8, 3, 1800 }, + [30] = { 21.9, 45.3, 3, 1800 }, + [31] = { 21.3, 44.8, 3, 1800 }, + [32] = { 22.2, 44.8, 3, 1800 }, + [33] = { 30.1, 44.5, 3, 1800 }, + [34] = { 29.2, 44.5, 3, 1800 }, + [35] = { 18.2, 43.6, 3, 1800 }, + [36] = { 18.4, 43.3, 3, 1800 }, + [37] = { 52.4, 40.6, 3, 1800 }, + [38] = { 53.9, 33.7, 3, 1800 }, + [39] = { 51.7, 33.6, 3, 1800 }, + [40] = { 72.3, 96, 8, 1800 }, + [41] = { 72.1, 95.5, 8, 1800 }, + [42] = { 76.1, 90.6, 8, 1800 }, + [43] = { 72.1, 90.2, 8, 1800 }, + [44] = { 72.5, 89.7, 8, 1800 }, + [45] = { 76.1, 89.5, 8, 1800 }, + [46] = { 75.9, 89.1, 8, 1800 }, + [47] = { 76, 88.5, 8, 1800 }, + [48] = { 69.4, 84.5, 8, 1800 }, + [49] = { 69.6, 84.2, 8, 1800 }, + [50] = { 67.2, 83.5, 8, 1800 }, + [51] = { 67.6, 83.3, 8, 1800 }, + [52] = { 67.1, 83.2, 8, 1800 }, + [53] = { 67.2, 77.6, 8, 1800 }, + [54] = { 67.3, 77.4, 8, 1800 }, + [55] = { 67.5, 77.3, 8, 1800 }, + [56] = { 66.4, 77.2, 8, 1800 }, + [57] = { 67.7, 76.9, 8, 1800 }, + [58] = { 66.9, 76.4, 8, 1800 }, + [59] = { 66.2, 75.5, 8, 1800 }, + [60] = { 63.7, 71.5, 8, 1800 }, + [61] = { 60.6, 67.3, 8, 1800 }, + [62] = { 10.5, 66.4, 8, 1800 }, + [63] = { 11.2, 66.4, 8, 1800 }, + [64] = { 26.3, 66.2, 8, 1800 }, + [65] = { 10.2, 65.9, 8, 1800 }, + [66] = { 10.5, 65.7, 8, 1800 }, + [67] = { 10.1, 65.3, 8, 1800 }, + [68] = { 27, 65.3, 8, 1800 }, + [69] = { 26.1, 65.1, 8, 1800 }, + [70] = { 56, 65, 8, 1800 }, + [71] = { 55.7, 65, 8, 1800 }, + [72] = { 16.6, 64.7, 8, 1800 }, + [73] = { 28.8, 64.2, 8, 1800 }, + [74] = { 26.3, 64, 8, 1800 }, + [75] = { 28.8, 63.5, 8, 1800 }, + [76] = { 22.3, 63.4, 8, 1800 }, + [77] = { 53.8, 63.1, 8, 1800 }, + [78] = { 28.7, 63.1, 8, 1800 }, + [79] = { 53.6, 62.4, 8, 1800 }, + [80] = { 10.3, 61.5, 8, 1800 }, + [81] = { 10.5, 60.9, 8, 1800 }, + [82] = { 12.7, 57.9, 8, 1800 }, + [83] = { 11.1, 57, 8, 1800 }, + [84] = { 20.9, 57, 8, 1800 }, + [85] = { 21.6, 56.6, 8, 1800 }, + [86] = { 12, 56.1, 8, 1800 }, + [87] = { 10.8, 46.7, 8, 1800 }, + [88] = { 11.7, 46.6, 8, 1800 }, + [89] = { 11.6, 46.2, 8, 1800 }, + [90] = { 10.5, 45.8, 8, 1800 }, + [91] = { 13.8, 45.3, 8, 1800 }, + [92] = { 14.5, 45.3, 8, 1800 }, + [93] = { 15, 42.6, 8, 1800 }, + [94] = { 15.8, 41.3, 8, 1800 }, + [95] = { 11.3, 41, 8, 1800 }, + [96] = { 15.5, 40.9, 8, 1800 }, + [97] = { 21.7, 38.8, 8, 1800 }, + [98] = { 21.7, 38.2, 8, 1800 }, + [99] = { 21.7, 37.6, 8, 1800 }, + [100] = { 16.3, 32, 8, 1800 }, + [101] = { 16.6, 31.6, 8, 1800 }, + [102] = { 29.9, 31.4, 8, 1800 }, + [103] = { 28.7, 31.2, 8, 1800 }, + [104] = { 30.2, 30.9, 8, 1800 }, + [105] = { 41.8, 29.1, 8, 1800 }, + [106] = { 24.2, 28.9, 8, 1800 }, + [107] = { 35.8, 28.6, 8, 1800 }, + [108] = { 11, 28.6, 8, 1800 }, + [109] = { 41.8, 28.5, 8, 1800 }, + [110] = { 10, 28.4, 8, 1800 }, + [111] = { 24.4, 28, 8, 1800 }, + [112] = { 24, 27.4, 8, 1800 }, + [113] = { 53.9, 27.1, 8, 1800 }, + [114] = { 48.7, 26.6, 8, 1800 }, + [115] = { 48, 26.2, 8, 1800 }, + [116] = { 53.9, 26, 8, 1800 }, + [117] = { 57.8, 23.3, 8, 1800 }, + [118] = { 60.8, 19.9, 8, 1800 }, + [119] = { 61, 19.3, 8, 1800 }, + [120] = { 65.9, 13.1, 8, 1800 }, + [121] = { 65.5, 12.7, 8, 1800 }, + [122] = { 70.6, 8.8, 8, 1800 }, + [123] = { 55, 84, 15, 1800 }, + [124] = { 67.6, 78.8, 15, 1800 }, + [125] = { 64.2, 77, 15, 1800 }, + [126] = { 37.6, 68.3, 15, 1800 }, + [127] = { 44.5, 66.9, 15, 1800 }, + [128] = { 56.1, 66.8, 15, 1800 }, + [129] = { 45.6, 66.2, 15, 1800 }, + [130] = { 43.8, 65.6, 15, 1800 }, + [131] = { 54.2, 59.6, 15, 1800 }, + [132] = { 54, 50.5, 15, 1800 }, + [133] = { 49, 46.3, 15, 1800 }, + [134] = { 54.6, 36.1, 15, 1800 }, + [135] = { 52.9, 35.1, 15, 1800 }, + [136] = { 60, 30.8, 15, 1800 }, + [137] = { 45.8, 29, 15, 1800 }, + [138] = { 63.9, 26.6, 15, 1800 }, + [139] = { 33.9, 26, 15, 1800 }, + [140] = { 33.5, 25.1, 15, 1800 }, + [141] = { 55.8, 18.3, 15, 1800 }, + [142] = { 44.9, 16.5, 15, 1800 }, + [143] = { 49.1, 16.4, 15, 1800 }, + [144] = { 40.1, 13, 15, 1800 }, + [145] = { 62.9, 6.5, 15, 1800 }, + [146] = { 55, 89.3, 17, 1800 }, + [147] = { 53.1, 67.4, 17, 1800 }, + [148] = { 52.9, 67, 17, 1800 }, + [149] = { 56.3, 60.7, 17, 1800 }, + [150] = { 68.1, 57.3, 17, 1800 }, + [151] = { 32.7, 91.2, 28, 1800 }, + [152] = { 32.1, 68.9, 33, 1800 }, + [153] = { 29.5, 66.1, 33, 1800 }, + [154] = { 34, 65.3, 33, 1800 }, + [155] = { 34.6, 65.2, 33, 1800 }, + [156] = { 33.2, 63.8, 33, 1800 }, + [157] = { 33.1, 63.8, 33, 1800 }, + [158] = { 33.7, 62, 33, 1800 }, + [159] = { 32.9, 61, 33, 1800 }, + [160] = { 32.9, 60.8, 33, 1800 }, + [161] = { 39.8, 59.1, 33, 1800 }, + [162] = { 33.1, 59, 33, 1800 }, + [163] = { 33.2, 58.9, 33, 1800 }, + [164] = { 38.4, 58.2, 33, 1800 }, + [165] = { 32.8, 57.7, 33, 1800 }, + [166] = { 33, 57.6, 33, 1800 }, + [167] = { 33.2, 55.2, 33, 1800 }, + [168] = { 33.2, 55.1, 33, 1800 }, + [169] = { 32, 53.9, 33, 1800 }, + [170] = { 25.2, 53.6, 33, 1800 }, + [171] = { 33, 53.4, 33, 1800 }, + [172] = { 34.3, 51.7, 33, 1800 }, + [173] = { 34.2, 51.7, 33, 1800 }, + [174] = { 35.1, 51.5, 33, 1800 }, + [175] = { 35.3, 50.6, 33, 1800 }, + [176] = { 33.8, 50.1, 33, 1800 }, + [177] = { 41.2, 49.6, 33, 1800 }, + [178] = { 35.3, 48.5, 33, 1800 }, + [179] = { 37.5, 47.1, 33, 1800 }, + [180] = { 37.5, 46.9, 33, 1800 }, + [181] = { 38, 46.4, 33, 1800 }, + [182] = { 37.8, 46.3, 33, 1800 }, + [183] = { 37.9, 46.2, 33, 1800 }, + [184] = { 37.5, 45.7, 33, 1800 }, + [185] = { 37.6, 45.5, 33, 1800 }, + [186] = { 38.2, 45.4, 33, 1800 }, + [187] = { 44.4, 45.4, 33, 1800 }, + [188] = { 38.3, 45.4, 33, 1800 }, + [189] = { 46.6, 44.8, 33, 1800 }, + [190] = { 37.5, 44.7, 33, 1800 }, + [191] = { 37, 44.6, 33, 1800 }, + [192] = { 37.5, 44.6, 33, 1800 }, + [193] = { 39.4, 44.3, 33, 1800 }, + [194] = { 36.2, 44.3, 33, 1800 }, + [195] = { 32.2, 44.3, 33, 1800 }, + [196] = { 39, 42.8, 33, 1800 }, + [197] = { 38.9, 42.8, 33, 1800 }, + [198] = { 29.8, 42.8, 33, 1800 }, + [199] = { 47.2, 42.5, 33, 1800 }, + [200] = { 33.1, 42.5, 33, 1800 }, + [201] = { 37.3, 42.5, 33, 1800 }, + [202] = { 39.4, 42.5, 33, 1800 }, + [203] = { 35.2, 42.5, 33, 1800 }, + [204] = { 44.8, 42.2, 33, 1800 }, + [205] = { 38.3, 42.2, 33, 1800 }, + [206] = { 38.3, 42.1, 33, 1800 }, + [207] = { 28.8, 41.8, 33, 1800 }, + [208] = { 39.3, 40.8, 33, 1800 }, + [209] = { 39.4, 40.5, 33, 1800 }, + [210] = { 28.6, 40.3, 33, 1800 }, + [211] = { 48.5, 40.3, 33, 1800 }, + [212] = { 42.5, 40.3, 33, 1800 }, + [213] = { 38.5, 39.9, 33, 1800 }, + [214] = { 40.9, 39.8, 33, 1800 }, + [215] = { 48.4, 39.6, 33, 1800 }, + [216] = { 43.1, 39.3, 33, 1800 }, + [217] = { 40.4, 39.3, 33, 1800 }, + [218] = { 38.9, 39.2, 33, 1800 }, + [219] = { 40.3, 39.1, 33, 1800 }, + [220] = { 38.9, 39.1, 33, 1800 }, + [221] = { 46.6, 38.7, 33, 1800 }, + [222] = { 39.4, 38.5, 33, 1800 }, + [223] = { 38.6, 38.4, 33, 1800 }, + [224] = { 44.3, 38.3, 33, 1800 }, + [225] = { 40.2, 37.5, 33, 1800 }, + [226] = { 47.1, 37.5, 33, 1800 }, + [227] = { 47, 37.4, 33, 1800 }, + [228] = { 45.5, 37.2, 33, 1800 }, + [229] = { 46.2, 37.1, 33, 1800 }, + [230] = { 37.3, 37.1, 33, 1800 }, + [231] = { 48, 37.1, 33, 1800 }, + [232] = { 40.2, 37.1, 33, 1800 }, + [233] = { 47.8, 37, 33, 1800 }, + [234] = { 40.3, 37, 33, 1800 }, + [235] = { 44.1, 36.8, 33, 1800 }, + [236] = { 49.1, 36.7, 33, 1800 }, + [237] = { 42.4, 36.3, 33, 1800 }, + [238] = { 39.8, 36.3, 33, 1800 }, + [239] = { 46.1, 36.1, 33, 1800 }, + [240] = { 39.9, 36.1, 33, 1800 }, + [241] = { 39.4, 35.9, 33, 1800 }, + [242] = { 47.6, 35.9, 33, 1800 }, + [243] = { 43.2, 35.9, 33, 1800 }, + [244] = { 43.3, 35.7, 33, 1800 }, + [245] = { 46.9, 35.5, 33, 1800 }, + [246] = { 40.1, 35.4, 33, 1800 }, + [247] = { 46.9, 35.3, 33, 1800 }, + [248] = { 40.3, 35.3, 33, 1800 }, + [249] = { 35.5, 35, 33, 1800 }, + [250] = { 49.5, 34.8, 33, 1800 }, + [251] = { 42.8, 34.7, 33, 1800 }, + [252] = { 47.7, 34.6, 33, 1800 }, + [253] = { 47.6, 34.6, 33, 1800 }, + [254] = { 42.9, 34.6, 33, 1800 }, + [255] = { 41.1, 34.6, 33, 1800 }, + [256] = { 41.3, 34.4, 33, 1800 }, + [257] = { 39.1, 34.2, 33, 1800 }, + [258] = { 42.2, 33.9, 33, 1800 }, + [259] = { 40.5, 33.9, 33, 1800 }, + [260] = { 42.3, 33.8, 33, 1800 }, + [261] = { 40.4, 33.7, 33, 1800 }, + [262] = { 47.9, 33.5, 33, 1800 }, + [263] = { 47.9, 33.4, 33, 1800 }, + [264] = { 41.6, 32.3, 33, 1800 }, + [265] = { 47.8, 31.4, 33, 1800 }, + [266] = { 47.6, 31.2, 33, 1800 }, + [267] = { 36.9, 31, 33, 1800 }, + [268] = { 50.5, 30.8, 33, 1800 }, + [269] = { 47.5, 30.6, 33, 1800 }, + [270] = { 36.7, 30.4, 33, 1800 }, + [271] = { 44.3, 30.3, 33, 1800 }, + [272] = { 47.7, 29.7, 33, 1800 }, + [273] = { 49.6, 29.6, 33, 1800 }, + [274] = { 47.5, 29.6, 33, 1800 }, + [275] = { 47.6, 29.6, 33, 1800 }, + [276] = { 45.7, 29.5, 33, 1800 }, + [277] = { 47.7, 29.1, 33, 1800 }, + [278] = { 46.9, 28.9, 33, 1800 }, + [279] = { 46.6, 28.7, 33, 1800 }, + [280] = { 46.7, 28.7, 33, 1800 }, + [281] = { 43.6, 27.7, 33, 1800 }, + [282] = { 44.6, 26, 33, 1800 }, + [283] = { 36.3, 25.8, 33, 1800 }, + [284] = { 39, 25.3, 33, 1800 }, + [285] = { 47.8, 25, 33, 1800 }, + [286] = { 43.7, 24.8, 33, 1800 }, + [287] = { 36.4, 24.3, 33, 1800 }, + [288] = { 39.7, 23.2, 33, 1800 }, + [289] = { 31.9, 21.9, 33, 1800 }, + [290] = { 48.8, 21, 33, 1800 }, + [291] = { 29.7, 20.8, 33, 1800 }, + [292] = { 29.8, 20.7, 33, 1800 }, + [293] = { 29.8, 20.5, 33, 1800 }, + [294] = { 50, 20.3, 33, 1800 }, + [295] = { 37.2, 20, 33, 1800 }, + [296] = { 29.7, 20, 33, 1800 }, + [297] = { 30, 19.7, 33, 1800 }, + [298] = { 47.7, 19.6, 33, 1800 }, + [299] = { 39.5, 19.3, 33, 1800 }, + [300] = { 38.9, 19, 33, 1800 }, + [301] = { 38.9, 18.8, 33, 1800 }, + [302] = { 33.5, 16.6, 33, 1800 }, + [303] = { 33.4, 16.6, 33, 1800 }, + [304] = { 31.9, 16.6, 33, 1800 }, + [305] = { 29.3, 15.7, 33, 1800 }, + [306] = { 34, 15.7, 33, 1800 }, + [307] = { 41.8, 14.8, 33, 1800 }, + [308] = { 42.4, 13.6, 33, 1800 }, + [309] = { 19.3, 12.3, 33, 1800 }, + [310] = { 43.8, 11.7, 33, 1800 }, + [311] = { 43.7, 11.6, 33, 1800 }, + [312] = { 27.9, 11.6, 33, 1800 }, + [313] = { 25, 10.2, 33, 1800 }, + [314] = { 43.8, 10.1, 33, 1800 }, + [315] = { 43.3, 9.3, 33, 1800 }, + [316] = { 43.3, 9, 33, 1800 }, + [317] = { 28.9, 8, 33, 1800 }, + [318] = { 29.1, 8, 33, 1800 }, + [319] = { 48.7, 65.3, 36, 1800 }, + [320] = { 56.2, 62.2, 36, 1800 }, + [321] = { 56.3, 61.4, 36, 1800 }, + [322] = { 50.3, 61, 36, 1800 }, + [323] = { 50.3, 59.5, 36, 1800 }, + [324] = { 48.5, 58.7, 36, 1800 }, + [325] = { 39.5, 58.6, 36, 1800 }, + [326] = { 27.1, 58.1, 36, 1800 }, + [327] = { 45.7, 56.2, 36, 1800 }, + [328] = { 45.9, 56.1, 36, 1800 }, + [329] = { 34.1, 53.5, 36, 1800 }, + [330] = { 53, 52.6, 36, 1800 }, + [331] = { 45.4, 49.5, 36, 1800 }, + [332] = { 54.1, 49.2, 36, 1800 }, + [333] = { 46, 49.1, 36, 1800 }, + [334] = { 27.2, 48.9, 36, 1800 }, + [335] = { 37.3, 48.5, 36, 1800 }, + [336] = { 37.2, 48.1, 36, 1800 }, + [337] = { 34.9, 47.5, 36, 1800 }, + [338] = { 34.7, 47.5, 36, 1800 }, + [339] = { 54.5, 47.4, 36, 1800 }, + [340] = { 45.5, 47.4, 36, 1800 }, + [341] = { 54.6, 47.2, 36, 1800 }, + [342] = { 52.8, 46, 36, 1800 }, + [343] = { 52.8, 45.5, 36, 1800 }, + [344] = { 53.1, 45.1, 36, 1800 }, + [345] = { 30.7, 45, 36, 1800 }, + [346] = { 30.4, 44.6, 36, 1800 }, + [347] = { 45.4, 44.3, 36, 1800 }, + [348] = { 45.2, 44.1, 36, 1800 }, + [349] = { 30, 43.9, 36, 1800 }, + [350] = { 42.3, 42.9, 36, 1800 }, + [351] = { 42.6, 42.9, 36, 1800 }, + [352] = { 42.3, 42.5, 36, 1800 }, + [353] = { 60.4, 40.6, 36, 1800 }, + [354] = { 60.7, 40.6, 36, 1800 }, + [355] = { 59.1, 40.5, 36, 1800 }, + [356] = { 59.3, 40.4, 36, 1800 }, + [357] = { 63.3, 40, 36, 1800 }, + [358] = { 44.2, 39.5, 36, 1800 }, + [359] = { 44.5, 39.3, 36, 1800 }, + [360] = { 44.8, 39.1, 36, 1800 }, + [361] = { 55.8, 38.1, 36, 1800 }, + [362] = { 55.6, 37.8, 36, 1800 }, + [363] = { 53.8, 36.3, 36, 1800 }, + [364] = { 53.3, 35.4, 36, 1800 }, + [365] = { 35.4, 33.5, 36, 1800 }, + [366] = { 42.4, 31.4, 36, 1800 }, + [367] = { 37.2, 31.3, 36, 1800 }, + [368] = { 46.3, 30.5, 36, 1800 }, + [369] = { 37.1, 30.5, 36, 1800 }, + [370] = { 49.4, 29.6, 36, 1800 }, + [371] = { 42.6, 27.4, 36, 1800 }, + [372] = { 37.5, 27.4, 36, 1800 }, + [373] = { 42.8, 27.3, 36, 1800 }, + [374] = { 37.3, 26, 36, 1800 }, + [375] = { 42.7, 22.6, 36, 1800 }, + [376] = { 53.5, 21.8, 36, 1800 }, + [377] = { 45.7, 21.5, 36, 1800 }, + [378] = { 53.4, 21.3, 36, 1800 }, + [379] = { 52.3, 18.3, 36, 1800 }, + [380] = { 39.7, 17.5, 36, 1800 }, + [381] = { 39.6, 17.2, 36, 1800 }, + [382] = { 47.4, 14.7, 36, 1800 }, + [383] = { 50.5, 80.7, 45, 1800 }, + [384] = { 50.2, 80.5, 45, 1800 }, + [385] = { 50.4, 76.2, 45, 1800 }, + [386] = { 42.3, 75.2, 45, 1800 }, + [387] = { 56.2, 73, 45, 1800 }, + [388] = { 53.4, 72.7, 45, 1800 }, + [389] = { 49.8, 72.7, 45, 1800 }, + [390] = { 53.3, 72.1, 45, 1800 }, + [391] = { 18.6, 71.7, 45, 1800 }, + [392] = { 49.2, 71.4, 45, 1800 }, + [393] = { 15.2, 69.1, 45, 1800 }, + [394] = { 14.6, 68.6, 45, 1800 }, + [395] = { 14.9, 68.3, 45, 1800 }, + [396] = { 42, 65.5, 45, 1800 }, + [397] = { 54.5, 65.2, 45, 1800 }, + [398] = { 42.9, 65, 45, 1800 }, + [399] = { 42.2, 65, 45, 1800 }, + [400] = { 42.1, 65, 45, 1800 }, + [401] = { 54.6, 64.8, 45, 1800 }, + [402] = { 54.9, 64.5, 45, 1800 }, + [403] = { 42.7, 63.4, 45, 1800 }, + [404] = { 17.8, 62.7, 45, 1800 }, + [405] = { 17.5, 62.2, 45, 1800 }, + [406] = { 17.6, 62, 45, 1800 }, + [407] = { 34.7, 61.9, 45, 1800 }, + [408] = { 34.4, 61.5, 45, 1800 }, + [409] = { 34, 59.7, 45, 1800 }, + [410] = { 20.1, 57.9, 45, 1800 }, + [411] = { 19.2, 57.8, 45, 1800 }, + [412] = { 19.5, 57.2, 45, 1800 }, + [413] = { 19.2, 56.2, 45, 1800 }, + [414] = { 53.4, 50.5, 45, 1800 }, + [415] = { 73.7, 49.8, 45, 1800 }, + [416] = { 73.8, 48.9, 45, 1800 }, + [417] = { 73.6, 48.9, 45, 1800 }, + [418] = { 18.6, 48.5, 45, 1800 }, + [419] = { 58.1, 47.5, 45, 1800 }, + [420] = { 17.8, 47.2, 45, 1800 }, + [421] = { 57.6, 47.2, 45, 1800 }, + [422] = { 30.7, 44.2, 45, 1800 }, + [423] = { 40.8, 44.1, 45, 1800 }, + [424] = { 61.6, 43.7, 45, 1800 }, + [425] = { 38.4, 43, 45, 1800 }, + [426] = { 43.1, 42.1, 45, 1800 }, + [427] = { 24.9, 39.2, 45, 1800 }, + [428] = { 21.4, 39.2, 45, 1800 }, + [429] = { 20.7, 39, 45, 1800 }, + [430] = { 20.6, 38.8, 45, 1800 }, + [431] = { 51.6, 37.9, 45, 1800 }, + [432] = { 79.6, 37.9, 45, 1800 }, + [433] = { 50.7, 37.8, 45, 1800 }, + [434] = { 26, 37.7, 45, 1800 }, + [435] = { 48.7, 37.5, 45, 1800 }, + [436] = { 21.3, 37.5, 45, 1800 }, + [437] = { 79, 37.4, 45, 1800 }, + [438] = { 51.4, 36.7, 45, 1800 }, + [439] = { 50.8, 36.7, 45, 1800 }, + [440] = { 46.3, 36.7, 45, 1800 }, + [441] = { 51.5, 36.6, 45, 1800 }, + [442] = { 24.6, 36.4, 45, 1800 }, + [443] = { 46.4, 36.3, 45, 1800 }, + [444] = { 26.8, 36.3, 45, 1800 }, + [445] = { 50.8, 36.2, 45, 1800 }, + [446] = { 78.3, 35.4, 45, 1800 }, + [447] = { 79.2, 35.2, 45, 1800 }, + [448] = { 26.5, 34.1, 45, 1800 }, + [449] = { 38.1, 34.1, 45, 1800 }, + [450] = { 20.2, 33.8, 45, 1800 }, + [451] = { 29, 33.6, 45, 1800 }, + [452] = { 28.5, 32.4, 45, 1800 }, + [453] = { 60, 31.5, 45, 1800 }, + [454] = { 41.7, 31.2, 45, 1800 }, + [455] = { 41.2, 31.1, 45, 1800 }, + [456] = { 75.2, 29.1, 45, 1800 }, + [457] = { 74, 28.9, 45, 1800 }, + [458] = { 23.4, 28.8, 45, 1800 }, + [459] = { 75.6, 28.8, 45, 1800 }, + [460] = { 72.7, 28.7, 45, 1800 }, + [461] = { 73, 28.6, 45, 1800 }, + [462] = { 73.5, 28.6, 45, 1800 }, + [463] = { 73.9, 28.5, 45, 1800 }, + [464] = { 72.9, 28.3, 45, 1800 }, + [465] = { 73.6, 28.3, 45, 1800 }, + [466] = { 70, 27.5, 45, 1800 }, + [467] = { 65.7, 27.4, 45, 1800 }, + [468] = { 64.8, 27.4, 45, 1800 }, + [469] = { 69.2, 27.4, 45, 1800 }, + [470] = { 65.9, 27.4, 45, 1800 }, + [471] = { 75.3, 27.2, 45, 1800 }, + [472] = { 75.1, 27.2, 45, 1800 }, + [473] = { 33.1, 25.8, 45, 1800 }, + [474] = { 31.6, 22.6, 45, 1800 }, + [475] = { 48.3, 20.5, 45, 1800 }, + [476] = { 26.4, 20.2, 45, 1800 }, + [477] = { 27, 20, 45, 1800 }, + [478] = { 27.4, 19.7, 45, 1800 }, + [479] = { 26.5, 19.5, 45, 1800 }, + [480] = { 26.6, 19.4, 45, 1800 }, + [481] = { 27.1, 19.1, 45, 1800 }, + [482] = { 27.5, 18.9, 45, 1800 }, + [483] = { 74.9, 86.8, 47, 1800 }, + [484] = { 74.3, 86.7, 47, 1800 }, + [485] = { 74.7, 86.4, 47, 1800 }, + [486] = { 26.7, 81.5, 47, 1800 }, + [487] = { 34.5, 75.6, 47, 1800 }, + [488] = { 34.4, 74.6, 47, 1800 }, + [489] = { 37.6, 71, 47, 1800 }, + [490] = { 45.5, 70, 47, 1800 }, + [491] = { 31.6, 69.7, 47, 1800 }, + [492] = { 27.6, 69.6, 47, 1800 }, + [493] = { 45.8, 69.1, 47, 1800 }, + [494] = { 27.4, 69, 47, 1800 }, + [495] = { 31.1, 68.8, 47, 1800 }, + [496] = { 40.3, 67.7, 47, 1800 }, + [497] = { 45.2, 64.7, 47, 1800 }, + [498] = { 45.7, 64.3, 47, 1800 }, + [499] = { 45.1, 64.1, 47, 1800 }, + [500] = { 64.1, 63.2, 47, 1800 }, + [501] = { 33.9, 62.9, 47, 1800 }, + [502] = { 67.7, 62.7, 47, 1800 }, + [503] = { 67.1, 62.2, 47, 1800 }, + [504] = { 51, 60.3, 47, 1800 }, + [505] = { 76.9, 59.9, 47, 1800 }, + [506] = { 77.4, 59.2, 47, 1800 }, + [507] = { 29.1, 58.5, 47, 1800 }, + [508] = { 29.7, 58, 47, 1800 }, + [509] = { 35.3, 57.3, 47, 1800 }, + [510] = { 75.5, 56.6, 47, 1800 }, + [511] = { 55, 55.9, 47, 1800 }, + [512] = { 54.3, 55.5, 47, 1800 }, + [513] = { 54.6, 55.2, 47, 1800 }, + [514] = { 50.2, 53.6, 47, 1800 }, + [515] = { 78.5, 53.3, 47, 1800 }, + [516] = { 78.8, 53.3, 47, 1800 }, + [517] = { 66.4, 53.1, 47, 1800 }, + [518] = { 67.2, 53.1, 47, 1800 }, + [519] = { 67.4, 53.1, 47, 1800 }, + [520] = { 72.7, 52.6, 47, 1800 }, + [521] = { 66.8, 52.5, 47, 1800 }, + [522] = { 61.6, 52.3, 47, 1800 }, + [523] = { 72.5, 52.2, 47, 1800 }, + [524] = { 60.9, 52.1, 47, 1800 }, + [525] = { 65.4, 52.1, 47, 1800 }, + [526] = { 48.2, 48.1, 47, 1800 }, + [527] = { 63.4, 43.5, 47, 1800 }, + [528] = { 64.7, 41.2, 47, 1800 }, + [529] = { 45.9, 39.6, 47, 1800 }, + [530] = { 57, 39.6, 47, 1800 }, + [531] = { 57, 39.2, 47, 1800 }, + [532] = { 11.8, 57.6, 51, 1800 }, + [533] = { 8.8, 47.9, 51, 1800 }, + [534] = { 51.5, 5.6, 267, 1800 }, + [535] = { 58.1, 2.8, 267, 1800 }, + [536] = { 58.1, 2.2, 267, 1800 }, + [537] = { 52.8, 1.8, 267, 1800 }, + [538] = { 52.9, 0.5, 267, 1800 }, + [539] = { 60.9, 75.6, 357, 1800 }, + [540] = { 46, 67.2, 357, 1800 }, + [541] = { 23.2, 66.4, 357, 1800 }, + [542] = { 61.3, 65.9, 357, 1800 }, + [543] = { 70.8, 64.8, 357, 1800 }, + [544] = { 82.5, 56.5, 357, 1800 }, + [545] = { 77.5, 56.4, 357, 1800 }, + [546] = { 64.8, 52.1, 357, 1800 }, + [547] = { 56.4, 50.2, 357, 1800 }, + [548] = { 46, 50, 357, 1800 }, + [549] = { 60.5, 48.6, 357, 1800 }, + [550] = { 80.9, 46.8, 357, 1800 }, + [551] = { 80.7, 46.5, 357, 1800 }, + [552] = { 66.7, 46, 357, 1800 }, + [553] = { 78.7, 36.2, 357, 1800 }, + [554] = { 79.1, 35.6, 357, 1800 }, + [555] = { 78, 35.4, 357, 1800 }, + [556] = { 50.4, 35.3, 357, 1800 }, + [557] = { 76.7, 34.1, 357, 1800 }, + [558] = { 76.9, 33.6, 357, 1800 }, + [559] = { 76.5, 33.3, 357, 1800 }, + [560] = { 48.8, 31, 357, 1800 }, + [561] = { 50.8, 30.5, 357, 1800 }, + [562] = { 74.7, 30.3, 357, 1800 }, + [563] = { 45, 26.1, 357, 1800 }, + [564] = { 41, 24.9, 357, 1800 }, + [565] = { 51.6, 24.9, 357, 1800 }, + [566] = { 39.1, 22.2, 357, 1800 }, + [567] = { 40.3, 20.3, 357, 1800 }, + [568] = { 39.5, 8.6, 357, 1800 }, + [569] = { 37.6, 45.8, 722, 604800 }, + [570] = { 65.6, 17.1, 722, 604800 }, + [571] = { 27.3, 98.5, 1337, 1800 }, + [572] = { 5.8, 69.1, 2557, 1800 }, + [573] = { 7.6, 43.7, 2557, 1800 }, + [574] = { 11.7, 13.6, 2557, 1800 }, + [575] = { 51.5, 78.2, 5163, 604800 }, + [576] = { 48.7, 78.1, 5163, 604800 }, + [577] = { 46, 77.9, 5163, 604800 }, + [578] = { 52.1, 73.3, 5163, 604800 }, + [579] = { 45.9, 71.9, 5163, 604800 }, + [580] = { 54.2, 59.2, 5163, 604800 }, + [581] = { 43.7, 58.2, 5163, 604800 }, + [582] = { 53.3, 52.6, 5163, 604800 }, + [583] = { 44.3, 52.6, 5163, 604800 }, + [584] = { 48.7, 52, 5163, 604800 }, + [585] = { 54, 88.1, 5179, 1800 }, + [586] = { 55.8, 84.9, 5179, 1800 }, + [587] = { 41.4, 76.5, 5179, 1800 }, + [588] = { 36, 75.7, 5179, 1800 }, + [589] = { 51, 74.7, 5179, 1800 }, + [590] = { 45.9, 73.7, 5179, 1800 }, + [591] = { 31, 70.8, 5179, 1800 }, + [592] = { 26.9, 67.4, 5179, 1800 }, + [593] = { 19.4, 52.7, 5179, 1800 }, + [594] = { 57.2, 46.3, 5179, 1800 }, + [595] = { 50.5, 45.9, 5179, 1800 }, + [596] = { 13.9, 45.1, 5179, 1800 }, + [597] = { 32.8, 39, 5179, 1800 }, + [598] = { 41.1, 39, 5179, 1800 }, + [599] = { 49.2, 34.9, 5179, 1800 }, + [600] = { 40.7, 28.9, 5179, 1800 }, + [601] = { 47.5, 28.7, 5179, 1800 }, + [602] = { 38.6, 60.7, 5561, 1800 }, + [603] = { 47, 53.8, 5561, 1800 }, + [604] = { 28, 16.6, 5561, 1800 }, + [605] = { 75.9, 91.7, 5581, 1800 }, + [606] = { 49.4, 34.8, 5581, 1800 }, + [607] = { 52.8, 31.9, 5581, 1800 }, + [608] = { 87.8, 29.2, 5581, 1800 }, + [609] = { 56.1, 29.1, 5581, 1800 }, + [610] = { 80.5, 27.2, 5581, 1800 }, + [611] = { 46.4, 26.1, 5581, 1800 }, + [612] = { 85.7, 22.5, 5581, 1800 }, + [613] = { 79.8, 18.9, 5581, 1800 }, + [614] = { 80, 9.5, 5581, 1800 }, + [615] = { 86, 4.6, 5581, 1800 }, + [616] = { 83.6, 4.6, 5581, 1800 }, + [617] = { 25, 98.9, 5602, 1800 }, + [618] = { 24, 98.9, 5602, 1800 }, + [619] = { 15.4, 95.4, 5602, 1800 }, + [620] = { 59.7, 89, 5602, 1800 }, + [621] = { 62.7, 70.8, 5602, 1800 }, + [622] = { 52.4, 69.6, 5602, 1800 }, + [623] = { 47.5, 66, 5602, 1800 }, + [624] = { 58.6, 65.4, 5602, 1800 }, + [625] = { 45.2, 58.6, 5602, 1800 }, + [626] = { 51, 50.8, 5602, 1800 }, + [627] = { 51.2, 42.5, 5602, 1800 }, + [628] = { 46.9, 41.3, 5602, 1800 }, + [629] = { 57.4, 31.1, 5602, 1800 }, + [630] = { 43.2, 31.1, 5602, 1800 }, + [631] = { 59.5, 23.8, 5602, 1800 }, + [632] = { 48.1, 17.5, 5602, 1800 }, + [633] = { 56.8, 16.8, 5602, 1800 }, + [634] = { 61.6, 14.6, 5602, 1800 }, + [635] = { 53.5, 13.8, 5602, 1800 }, + [636] = { 48.2, 9.5, 5602, 1800 }, + }, + }, + [2047] = { + ["coords"] = { + [1] = { 8, 96.1, 3, 2700 }, + [2] = { 4.6, 94.8, 3, 2700 }, + [3] = { 5, 94.3, 3, 2700 }, + [4] = { 7.1, 94, 3, 2700 }, + [5] = { 7.8, 94, 3, 2700 }, + [6] = { 7.8, 92, 3, 2700 }, + [7] = { 7.6, 91.3, 3, 2700 }, + [8] = { 13.3, 91.2, 3, 2700 }, + [9] = { 13.5, 90.8, 3, 2700 }, + [10] = { 7.3, 90.5, 3, 2700 }, + [11] = { 56.3, 87.7, 3, 2700 }, + [12] = { 19.2, 82.9, 3, 2700 }, + [13] = { 20.8, 82.4, 3, 2700 }, + [14] = { 19.9, 82.3, 3, 2700 }, + [15] = { 15.8, 81.4, 3, 2700 }, + [16] = { 15.1, 81.3, 3, 2700 }, + [17] = { 6.2, 80.8, 3, 2700 }, + [18] = { 15.7, 80.7, 3, 2700 }, + [19] = { 10.4, 74.7, 3, 2700 }, + [20] = { 44, 74.4, 3, 2700 }, + [21] = { 7.6, 74.4, 3, 2700 }, + [22] = { 8.6, 65.6, 3, 2700 }, + [23] = { 63.6, 65, 3, 2700 }, + [24] = { 61.2, 64, 3, 2700 }, + [25] = { 23.9, 63.2, 3, 2700 }, + [26] = { 63.4, 63, 3, 2700 }, + [27] = { 61.9, 62.7, 3, 2700 }, + [28] = { 72.2, 61, 3, 2700 }, + [29] = { 62.1, 56.2, 3, 2700 }, + [30] = { 50.3, 52.8, 3, 2700 }, + [31] = { 49.8, 50.8, 3, 2700 }, + [32] = { 71.9, 35.5, 3, 2700 }, + [33] = { 70.6, 35.4, 3, 2700 }, + [34] = { 71.4, 33.1, 3, 2700 }, + [35] = { 62.5, 58.3, 4, 2700 }, + [36] = { 63.1, 58, 4, 2700 }, + [37] = { 62.6, 57.9, 4, 2700 }, + [38] = { 63.6, 57.2, 4, 2700 }, + [39] = { 55.3, 42, 4, 2700 }, + [40] = { 50.6, 40.8, 4, 2700 }, + [41] = { 59.9, 40.8, 4, 2700 }, + [42] = { 41.9, 37.2, 4, 2700 }, + [43] = { 42.1, 36.8, 4, 2700 }, + [44] = { 50.7, 34.5, 4, 2700 }, + [45] = { 50.5, 34.2, 4, 2700 }, + [46] = { 68.5, 31, 4, 2700 }, + [47] = { 69.2, 30.8, 4, 2700 }, + [48] = { 69.1, 30.2, 4, 2700 }, + [49] = { 65.5, 29.7, 4, 2700 }, + [50] = { 42.1, 28.8, 4, 2700 }, + [51] = { 42.7, 28.8, 4, 2700 }, + [52] = { 42.2, 28.1, 4, 2700 }, + [53] = { 49.8, 27.5, 4, 2700 }, + [54] = { 42.5, 27.4, 4, 2700 }, + [55] = { 47, 16.1, 4, 2700 }, + [56] = { 71.8, 15.5, 4, 2700 }, + [57] = { 53, 9.6, 4, 2700 }, + [58] = { 62.1, 84.5, 8, 2700 }, + [59] = { 34.6, 75.9, 8, 2700 }, + [60] = { 35.6, 66.8, 8, 2700 }, + [61] = { 73.3, 60, 8, 2700 }, + [62] = { 47.6, 24.9, 8, 2700 }, + [63] = { 31.4, 5.8, 11, 2700 }, + [64] = { 36.3, 69.5, 15, 2700 }, + [65] = { 37.6, 62.8, 16, 2700 }, + [66] = { 36.4, 61.1, 16, 2700 }, + [67] = { 42, 46.6, 16, 2700 }, + [68] = { 74.5, 44.3, 16, 2700 }, + [69] = { 74.1, 43.5, 16, 2700 }, + [70] = { 42.7, 41.5, 16, 2700 }, + [71] = { 75.2, 41.3, 16, 2700 }, + [72] = { 34.2, 39.1, 16, 2700 }, + [73] = { 56.1, 30.9, 16, 2700 }, + [74] = { 56.9, 30.6, 16, 2700 }, + [75] = { 53.8, 21.6, 16, 2700 }, + [76] = { 76.9, 21, 16, 2700 }, + [77] = { 63.6, 19.4, 16, 2700 }, + [78] = { 54.3, 90, 17, 2700 }, + [79] = { 48.5, 76.7, 28, 2700 }, + [80] = { 48.7, 74.5, 28, 2700 }, + [81] = { 48.6, 70.9, 28, 2700 }, + [82] = { 54.6, 69.4, 28, 2700 }, + [83] = { 50, 69.2, 28, 2700 }, + [84] = { 59.2, 64.6, 28, 2700 }, + [85] = { 53.3, 57.5, 28, 2700 }, + [86] = { 54.1, 38.7, 28, 2700 }, + [87] = { 53.3, 31.1, 28, 2700 }, + [88] = { 52.6, 24.5, 28, 2700 }, + [89] = { 49.9, 22.2, 28, 2700 }, + [90] = { 42.1, 21.1, 28, 2700 }, + [91] = { 40.5, 18.8, 28, 2700 }, + [92] = { 28.6, 81.1, 33, 2700 }, + [93] = { 31.7, 76.3, 33, 2700 }, + [94] = { 34.9, 72.1, 33, 2700 }, + [95] = { 36.3, 65.7, 33, 2700 }, + [96] = { 28, 63.7, 33, 2700 }, + [97] = { 27.6, 63.1, 33, 2700 }, + [98] = { 34.8, 55.9, 33, 2700 }, + [99] = { 37, 54.1, 33, 2700 }, + [100] = { 39.8, 53.1, 33, 2700 }, + [101] = { 41.1, 51.5, 33, 2700 }, + [102] = { 41.5, 49.2, 33, 2700 }, + [103] = { 49.1, 6.6, 33, 2700 }, + [104] = { 48.2, 5.9, 33, 2700 }, + [105] = { 48.6, 5.4, 33, 2700 }, + [106] = { 41.2, 93.7, 36, 2700 }, + [107] = { 41.3, 90.5, 36, 2700 }, + [108] = { 35.3, 90.3, 36, 2700 }, + [109] = { 39.6, 89.5, 36, 2700 }, + [110] = { 40.3, 87.2, 36, 2700 }, + [111] = { 31.4, 57.6, 36, 2700 }, + [112] = { 31.8, 57.3, 36, 2700 }, + [113] = { 52, 46.1, 36, 2700 }, + [114] = { 51.6, 41.7, 36, 2700 }, + [115] = { 37.9, 41.4, 36, 2700 }, + [116] = { 50.9, 40.7, 36, 2700 }, + [117] = { 39.4, 38.6, 36, 2700 }, + [118] = { 42.9, 33.8, 36, 2700 }, + [119] = { 47.1, 33.7, 36, 2700 }, + [120] = { 22.8, 90.6, 45, 2700 }, + [121] = { 50.1, 81.6, 45, 2700 }, + [122] = { 66.4, 80.2, 45, 2700 }, + [123] = { 21.3, 75.4, 45, 2700 }, + [124] = { 24.7, 73.2, 45, 2700 }, + [125] = { 20.8, 71.5, 45, 2700 }, + [126] = { 31.8, 70.2, 45, 2700 }, + [127] = { 29.9, 70.2, 45, 2700 }, + [128] = { 16, 64.2, 45, 2700 }, + [129] = { 15.8, 63.2, 45, 2700 }, + [130] = { 83.5, 35.5, 45, 2700 }, + [131] = { 84.1, 33.9, 45, 2700 }, + [132] = { 87, 30.2, 45, 2700 }, + [133] = { 85.1, 30.2, 45, 2700 }, + [134] = { 84.6, 28.6, 45, 2700 }, + [135] = { 78.7, 24.2, 45, 2700 }, + [136] = { 79.3, 24.1, 45, 2700 }, + [137] = { 79.8, 23.3, 45, 2700 }, + [138] = { 82.4, 20.7, 45, 2700 }, + [139] = { 84.7, 71.8, 46, 2700 }, + [140] = { 25, 71.2, 46, 2700 }, + [141] = { 25.8, 71.1, 46, 2700 }, + [142] = { 83.2, 70.5, 46, 2700 }, + [143] = { 25.7, 69.3, 46, 2700 }, + [144] = { 54.3, 68.7, 46, 2700 }, + [145] = { 34.6, 67.8, 46, 2700 }, + [146] = { 35.3, 67.1, 46, 2700 }, + [147] = { 28.3, 64.7, 46, 2700 }, + [148] = { 28, 64.5, 46, 2700 }, + [149] = { 74.1, 64.4, 46, 2700 }, + [150] = { 37.5, 64.2, 46, 2700 }, + [151] = { 48.7, 63.9, 46, 2700 }, + [152] = { 36.4, 63.7, 46, 2700 }, + [153] = { 42.3, 63.5, 46, 2700 }, + [154] = { 36.9, 63.2, 46, 2700 }, + [155] = { 68.9, 62.8, 46, 2700 }, + [156] = { 48.5, 62.8, 46, 2700 }, + [157] = { 69.7, 62.6, 46, 2700 }, + [158] = { 37, 62.6, 46, 2700 }, + [159] = { 69.2, 62.3, 46, 2700 }, + [160] = { 61.5, 60.6, 46, 2700 }, + [161] = { 53.7, 60.5, 46, 2700 }, + [162] = { 54.3, 60.2, 46, 2700 }, + [163] = { 61.4, 59.4, 46, 2700 }, + [164] = { 60.4, 59, 46, 2700 }, + [165] = { 94.8, 58.7, 46, 2700 }, + [166] = { 53.2, 53.7, 46, 2700 }, + [167] = { 52.7, 53.6, 46, 2700 }, + [168] = { 45.4, 53.5, 46, 2700 }, + [169] = { 81.6, 53.2, 46, 2700 }, + [170] = { 18.7, 53.1, 46, 2700 }, + [171] = { 93.3, 52.9, 46, 2700 }, + [172] = { 93.4, 52.2, 46, 2700 }, + [173] = { 78.7, 51.9, 46, 2700 }, + [174] = { 81.5, 51.7, 46, 2700 }, + [175] = { 78.4, 51.1, 46, 2700 }, + [176] = { 17.2, 50.9, 46, 2700 }, + [177] = { 93.7, 50.4, 46, 2700 }, + [178] = { 15.6, 50.4, 46, 2700 }, + [179] = { 82.6, 48.2, 46, 2700 }, + [180] = { 76.3, 47.4, 46, 2700 }, + [181] = { 83.3, 46.2, 46, 2700 }, + [182] = { 81.6, 46.2, 46, 2700 }, + [183] = { 61, 45.9, 46, 2700 }, + [184] = { 60.5, 45.7, 46, 2700 }, + [185] = { 40.3, 45.2, 46, 2700 }, + [186] = { 76, 45, 46, 2700 }, + [187] = { 79.1, 44.7, 46, 2700 }, + [188] = { 65.3, 44.6, 46, 2700 }, + [189] = { 39.9, 44.5, 46, 2700 }, + [190] = { 81.5, 43.9, 46, 2700 }, + [191] = { 45.6, 43.9, 46, 2700 }, + [192] = { 47.4, 43.8, 46, 2700 }, + [193] = { 79, 43.8, 46, 2700 }, + [194] = { 48.1, 43.8, 46, 2700 }, + [195] = { 79.5, 43.7, 46, 2700 }, + [196] = { 49, 43.7, 46, 2700 }, + [197] = { 76.4, 43.6, 46, 2700 }, + [198] = { 77.7, 43.6, 46, 2700 }, + [199] = { 80.2, 43.5, 46, 2700 }, + [200] = { 64.3, 43.3, 46, 2700 }, + [201] = { 19.7, 43.2, 46, 2700 }, + [202] = { 83.2, 43.2, 46, 2700 }, + [203] = { 82.8, 43, 46, 2700 }, + [204] = { 37.5, 42.5, 46, 2700 }, + [205] = { 82, 42.2, 46, 2700 }, + [206] = { 80.8, 42, 46, 2700 }, + [207] = { 78, 41.9, 46, 2700 }, + [208] = { 77.8, 41.8, 46, 2700 }, + [209] = { 83.6, 41.6, 46, 2700 }, + [210] = { 82, 41.4, 46, 2700 }, + [211] = { 81.3, 41.4, 46, 2700 }, + [212] = { 81.6, 41.4, 46, 2700 }, + [213] = { 37.7, 41.2, 46, 2700 }, + [214] = { 69.7, 40.9, 46, 2700 }, + [215] = { 46.2, 40.7, 46, 2700 }, + [216] = { 70.9, 39.5, 46, 2700 }, + [217] = { 46.7, 39.4, 46, 2700 }, + [218] = { 71.7, 38.7, 46, 2700 }, + [219] = { 42.7, 38.1, 46, 2700 }, + [220] = { 76.6, 37.8, 46, 2700 }, + [221] = { 47.3, 37.7, 46, 2700 }, + [222] = { 83.6, 37.6, 46, 2700 }, + [223] = { 79.5, 37.6, 46, 2700 }, + [224] = { 81, 37.2, 46, 2700 }, + [225] = { 45.2, 37.1, 46, 2700 }, + [226] = { 81.4, 36.4, 46, 2700 }, + [227] = { 69.3, 35.6, 46, 2700 }, + [228] = { 83.9, 34.7, 46, 2700 }, + [229] = { 64.8, 34.6, 46, 2700 }, + [230] = { 83.3, 34, 46, 2700 }, + [231] = { 65, 34, 46, 2700 }, + [232] = { 55.1, 33.8, 46, 2700 }, + [233] = { 44.5, 33.8, 46, 2700 }, + [234] = { 64.6, 33.7, 46, 2700 }, + [235] = { 54.7, 33.4, 46, 2700 }, + [236] = { 12.1, 32.1, 46, 2700 }, + [237] = { 95.5, 31.7, 46, 2700 }, + [238] = { 14.8, 30.8, 46, 2700 }, + [239] = { 71.4, 30.7, 46, 2700 }, + [240] = { 71.8, 30.3, 46, 2700 }, + [241] = { 12.2, 30.2, 46, 2700 }, + [242] = { 71.4, 29.9, 46, 2700 }, + [243] = { 64.4, 29.3, 46, 2700 }, + [244] = { 87.4, 24.7, 46, 2700 }, + [245] = { 72.3, 24.6, 46, 2700 }, + [246] = { 77.2, 24.3, 46, 2700 }, + [247] = { 71.9, 24.2, 46, 2700 }, + [248] = { 72.2, 24.1, 46, 2700 }, + [249] = { 68.7, 23.1, 46, 2700 }, + [250] = { 76.2, 23.1, 46, 2700 }, + [251] = { 77.9, 22.8, 46, 2700 }, + [252] = { 87.2, 22.1, 46, 2700 }, + [253] = { 65.8, 22.1, 46, 2700 }, + [254] = { 86.7, 21.8, 46, 2700 }, + [255] = { 66.1, 21.7, 46, 2700 }, + [256] = { 67.9, 21.4, 46, 2700 }, + [257] = { 68.5, 21.3, 46, 2700 }, + [258] = { 68.5, 19.7, 46, 2700 }, + [259] = { 68.3, 19.1, 46, 2700 }, + [260] = { 73.2, 19, 46, 2700 }, + [261] = { 73.3, 18.6, 46, 2700 }, + [262] = { 12.5, 16.3, 46, 300 }, + [263] = { 60.7, 89.1, 47, 2700 }, + [264] = { 55.2, 84.9, 47, 2700 }, + [265] = { 55.8, 84.8, 47, 2700 }, + [266] = { 56.2, 84.1, 47, 2700 }, + [267] = { 58.6, 81.6, 47, 2700 }, + [268] = { 50.1, 71.6, 47, 2700 }, + [269] = { 50.2, 71, 47, 2700 }, + [270] = { 27.1, 69.6, 47, 2700 }, + [271] = { 30.5, 68.6, 47, 2700 }, + [272] = { 55.9, 68.1, 47, 2700 }, + [273] = { 54.7, 67.6, 47, 2700 }, + [274] = { 24.3, 67.4, 47, 2700 }, + [275] = { 36.8, 67.2, 47, 2700 }, + [276] = { 54.5, 67.2, 47, 2700 }, + [277] = { 24.5, 67, 47, 2700 }, + [278] = { 37.5, 66.8, 47, 2700 }, + [279] = { 53.1, 66.3, 47, 2700 }, + [280] = { 53.7, 66, 47, 2700 }, + [281] = { 24.4, 65.5, 47, 2700 }, + [282] = { 24.6, 65.2, 47, 2700 }, + [283] = { 52.5, 64.9, 47, 2700 }, + [284] = { 74, 62.4, 47, 2700 }, + [285] = { 73.1, 62.2, 47, 2700 }, + [286] = { 73.3, 61.5, 47, 2700 }, + [287] = { 31.1, 60.8, 47, 2700 }, + [288] = { 33.3, 60.6, 47, 2700 }, + [289] = { 41.6, 59.9, 47, 2700 }, + [290] = { 40.6, 59.6, 47, 2700 }, + [291] = { 77.3, 59.5, 47, 2700 }, + [292] = { 77.3, 56, 47, 2700 }, + [293] = { 64.2, 40.7, 47, 2700 }, + [294] = { 46.9, 33.4, 47, 2700 }, + [295] = { 13.9, 83.9, 51, 300 }, + [296] = { 85.7, 75.9, 51, 2700 }, + [297] = { 22.5, 72.7, 51, 2700 }, + [298] = { 24, 71.4, 51, 2700 }, + [299] = { 38.6, 67.4, 51, 2700 }, + [300] = { 56.9, 66.9, 51, 2700 }, + [301] = { 30.3, 65.8, 51, 2700 }, + [302] = { 29.4, 64.5, 51, 2700 }, + [303] = { 27.7, 64.4, 51, 2700 }, + [304] = { 39.8, 62.7, 51, 2700 }, + [305] = { 26, 61.5, 51, 2700 }, + [306] = { 25.8, 60.2, 51, 2700 }, + [307] = { 67.4, 57.8, 51, 2700 }, + [308] = { 22.8, 55.7, 51, 2700 }, + [309] = { 21.4, 55, 51, 2700 }, + [310] = { 64.4, 51.9, 51, 2700 }, + [311] = { 29.4, 51.8, 51, 2700 }, + [312] = { 23, 51.1, 51, 2700 }, + [313] = { 53.9, 47.5, 51, 2700 }, + [314] = { 46.2, 47.5, 51, 2700 }, + [315] = { 62.5, 44.8, 51, 2700 }, + [316] = { 61.7, 43.6, 51, 2700 }, + [317] = { 23.1, 43, 51, 2700 }, + [318] = { 39.8, 42.4, 51, 2700 }, + [319] = { 39.6, 40.9, 51, 2700 }, + [320] = { 55.4, 40.1, 51, 2700 }, + [321] = { 22.1, 39.9, 51, 2700 }, + [322] = { 28.7, 38.8, 51, 2700 }, + [323] = { 27.4, 38.4, 51, 2700 }, + [324] = { 42.5, 35.2, 51, 2700 }, + [325] = { 49.3, 33.8, 51, 2700 }, + [326] = { 67.7, 32, 51, 2700 }, + [327] = { 21.2, 31.1, 51, 2700 }, + [328] = { 56, 30.6, 51, 2700 }, + [329] = { 55.5, 28, 51, 2700 }, + [330] = { 39.8, 25.5, 51, 2700 }, + [331] = { 33.5, 22.9, 51, 2700 }, + [332] = { 96.4, 33.5, 85, 2700 }, + [333] = { 84.6, 85.6, 139, 2700 }, + [334] = { 33.4, 85.5, 139, 2700 }, + [335] = { 33.8, 84.6, 139, 2700 }, + [336] = { 51.3, 80.9, 139, 2700 }, + [337] = { 52.4, 71.9, 139, 2700 }, + [338] = { 53.9, 71.8, 139, 2700 }, + [339] = { 56.2, 70.5, 139, 2700 }, + [340] = { 55.3, 67.6, 139, 2700 }, + [341] = { 56.8, 67.4, 139, 2700 }, + [342] = { 36.9, 66.5, 139, 2700 }, + [343] = { 37.2, 66.1, 139, 2700 }, + [344] = { 76.7, 64.3, 139, 2700 }, + [345] = { 76.3, 63.5, 139, 2700 }, + [346] = { 77.7, 61.4, 139, 2700 }, + [347] = { 76.1, 56.8, 139, 2700 }, + [348] = { 74.7, 49.4, 139, 2700 }, + [349] = { 75.3, 49.2, 139, 2700 }, + [350] = { 75.6, 48.8, 139, 2700 }, + [351] = { 60.6, 29.9, 139, 2700 }, + [352] = { 61.6, 29.2, 139, 2700 }, + [353] = { 69.9, 21.4, 139, 2700 }, + [354] = { 59.1, 38.3, 148, 2700 }, + [355] = { 78.2, 96.1, 267, 2700 }, + [356] = { 44.9, 30.5, 267, 2700 }, + [357] = { 45, 27.6, 267, 2700 }, + [358] = { 39.7, 27.5, 267, 2700 }, + [359] = { 43.5, 26.7, 267, 2700 }, + [360] = { 44.1, 24.8, 267, 2700 }, + [361] = { 25.2, 72.5, 357, 2700 }, + [362] = { 27, 70.5, 357, 2700 }, + [363] = { 28.7, 70.5, 357, 2700 }, + [364] = { 27.8, 69.2, 357, 2700 }, + [365] = { 25.5, 68.5, 357, 2700 }, + [366] = { 25, 66.4, 357, 2700 }, + [367] = { 53.6, 49.7, 357, 2700 }, + [368] = { 54.4, 34.2, 357, 2700 }, + [369] = { 47.2, 95.3, 361, 2700 }, + [370] = { 38.3, 66.1, 361, 2700 }, + [371] = { 37.6, 66, 361, 2700 }, + [372] = { 39, 56.8, 361, 2700 }, + [373] = { 47.9, 37.5, 361, 2700 }, + [374] = { 48, 35.6, 361, 2700 }, + [375] = { 38.9, 33.2, 361, 2700 }, + [376] = { 63.4, 26.5, 361, 2700 }, + [377] = { 63.7, 25.2, 361, 2700 }, + [378] = { 63.2, 24.7, 361, 2700 }, + [379] = { 40.4, 22.4, 361, 2700 }, + [380] = { 61.9, 22.3, 361, 2700 }, + [381] = { 61.8, 21.3, 361, 2700 }, + [382] = { 63.4, 21.3, 361, 2700 }, + [383] = { 44.4, 16.2, 361, 2700 }, + [384] = { 44.1, 15.9, 361, 2700 }, + [385] = { 44.7, 12.3, 361, 2700 }, + [386] = { 45.6, 12.2, 361, 2700 }, + [387] = { 63.5, 11, 361, 2700 }, + [388] = { 61.7, 9.1, 361, 2700 }, + [389] = { 61.8, 8.5, 361, 2700 }, + [390] = { 44.7, 82.1, 405, 2700 }, + [391] = { 27.5, 74.4, 405, 2700 }, + [392] = { 28.1, 74.3, 405, 2700 }, + [393] = { 27.7, 74, 405, 2700 }, + [394] = { 32.1, 58.9, 405, 2700 }, + [395] = { 29.1, 58.1, 405, 2700 }, + [396] = { 78.8, 28.9, 405, 2700 }, + [397] = { 78.8, 28.3, 405, 2700 }, + [398] = { 42.4, 69.3, 406, 2700 }, + [399] = { 33.3, 65.4, 406, 2700 }, + [400] = { 41, 64.1, 406, 2700 }, + [401] = { 28.2, 76.8, 408, 2700 }, + [402] = { 68, 68.4, 408, 2700 }, + [403] = { 47.3, 46.4, 408, 2700 }, + [404] = { 66, 69.7, 409, 2700 }, + [405] = { 64, 69.4, 409, 2700 }, + [406] = { 70.5, 65.6, 409, 2700 }, + [407] = { 46.1, 38.1, 409, 2700 }, + [408] = { 46.3, 34.6, 409, 2700 }, + [409] = { 56.9, 73.9, 440, 2700 }, + [410] = { 27.9, 71.9, 440, 2700 }, + [411] = { 27, 71.7, 440, 2700 }, + [412] = { 27.1, 69.2, 440, 2700 }, + [413] = { 61.6, 63.6, 440, 2700 }, + [414] = { 29.1, 59.3, 440, 2700 }, + [415] = { 27.6, 56.6, 440, 2700 }, + [416] = { 27.7, 56, 440, 2700 }, + [417] = { 27.9, 53.7, 440, 2700 }, + [418] = { 28.7, 52.9, 440, 2700 }, + [419] = { 37.1, 52.8, 440, 2700 }, + [420] = { 36.5, 51.9, 440, 2700 }, + [421] = { 35.8, 51, 440, 2700 }, + [422] = { 33.2, 42.8, 440, 2700 }, + [423] = { 40, 34.2, 440, 2700 }, + [424] = { 46.7, 29.9, 440, 2700 }, + [425] = { 47.3, 29.2, 440, 2700 }, + [426] = { 37.1, 27.5, 440, 2700 }, + [427] = { 57.4, 27.2, 440, 2700 }, + [428] = { 37.7, 27, 440, 2700 }, + [429] = { 57.1, 26.3, 440, 2700 }, + [430] = { 44.9, 26.2, 440, 2700 }, + [431] = { 45.1, 25.5, 440, 2700 }, + [432] = { 49.4, 83, 490, 2700 }, + [433] = { 64.5, 80.4, 490, 2700 }, + [434] = { 50.4, 80, 490, 2700 }, + [435] = { 45.1, 70.4, 490, 2700 }, + [436] = { 53.7, 69.8, 490, 2700 }, + [437] = { 60.4, 67.8, 490, 2700 }, + [438] = { 61.1, 65.4, 490, 2700 }, + [439] = { 60, 65, 490, 2700 }, + [440] = { 76.8, 57.3, 490, 2700 }, + [441] = { 77.1, 54.6, 490, 2700 }, + [442] = { 52.2, 32, 490, 2700 }, + [443] = { 66.1, 17.5, 490, 2700 }, + [444] = { 68.4, 14.3, 490, 2700 }, + [445] = { 43.8, 12.2, 490, 2700 }, + [446] = { 1, 20, 616, 2700 }, + [447] = { 1.3, 16.6, 616, 2700 }, + [448] = { 28.7, 0.3, 616, 2700 }, + [449] = { 58.9, 78.2, 618, 2700 }, + [450] = { 61.7, 67.8, 618, 2700 }, + [451] = { 44.8, 44.3, 618, 2700 }, + [452] = { 57, 42.4, 618, 2700 }, + [453] = { 51.5, 40.3, 618, 2700 }, + [454] = { 70.8, 39.7, 618, 2700 }, + [455] = { 67.3, 39, 618, 2700 }, + [456] = { 69, 38.6, 618, 2700 }, + [457] = { 66.7, 28.2, 618, 2700 }, + [458] = { 54.7, 26.8, 618, 2700 }, + [459] = { 50.4, 15.9, 618, 2700 }, + [460] = { 54.2, 13.3, 618, 2700 }, + [461] = { 48.8, 33.7, 1377, 2700 }, + [462] = { 52, 32.4, 1377, 2700 }, + [463] = { 50.7, 31.8, 1377, 2700 }, + [464] = { 44.6, 31.1, 1377, 2700 }, + [465] = { 44.9, 30, 1377, 2700 }, + [466] = { 57.6, 87.5, 1941, 2700 }, + [467] = { 50.5, 39.5, 2100, 2700 }, + [468] = { 34.2, 35.3, 2100, 2700 }, + [469] = { 41.1, 69, 2100, 604800 }, + [470] = { 26.6, 63.2, 2557, 2700 }, + [471] = { 53.8, 94.2, 2597, 2700 }, + [472] = { 53.4, 90.9, 2597, 2700 }, + [473] = { 55.8, 85.3, 2597, 2700 }, + [474] = { 44.6, 71.8, 2597, 2700 }, + [475] = { 42.1, 68.4, 2597, 2700 }, + [476] = { 45.8, 67.4, 2597, 2700 }, + [477] = { 53.7, 55.7, 2597, 2700 }, + [478] = { 54.1, 53.2, 2597, 2700 }, + [479] = { 45.7, 50.4, 2597, 2700 }, + [480] = { 36.1, 47.1, 2597, 2700 }, + [481] = { 55.6, 46.8, 2597, 2700 }, + [482] = { 46.5, 46.7, 2597, 2700 }, + [483] = { 35.2, 46.6, 2597, 2700 }, + [484] = { 37.9, 43.7, 2597, 2700 }, + [485] = { 35.5, 42.7, 2597, 2700 }, + [486] = { 40.7, 42.6, 2597, 2700 }, + [487] = { 37.8, 42.5, 2597, 2700 }, + [488] = { 45.1, 39.1, 2597, 2700 }, + [489] = { 37.8, 38.3, 2597, 2700 }, + [490] = { 42, 38, 2597, 2700 }, + [491] = { 39.5, 37.2, 2597, 2700 }, + [492] = { 47.2, 28, 2597, 2700 }, + [493] = { 46.7, 25.3, 2597, 2700 }, + [494] = { 42.5, 24.6, 2597, 2700 }, + [495] = { 49.8, 9.6, 2597, 2700 }, + [496] = { 53.1, 9.2, 2597, 2700 }, + [497] = { 50.9, 8.4, 2597, 2700 }, + [498] = { 51.8, 7.3, 2597, 2700 }, + [499] = { 50.3, 7.2, 2597, 2700 }, + [500] = { 53.1, 6.2, 2597, 2700 }, + [501] = { 50, 4.3, 2597, 2700 }, + [502] = { 52.5, 4, 2597, 2700 }, + [503] = { 44.6, 71, 4012, 2700 }, + [504] = { 3.8, 65.2, 4012, 2700 }, + [505] = { 5.1, 54.2, 4012, 2700 }, + [506] = { 7, 54.1, 4012, 2700 }, + [507] = { 9.8, 52.5, 4012, 2700 }, + [508] = { 8.7, 49, 4012, 2700 }, + [509] = { 10.5, 48.7, 4012, 2700 }, + [510] = { 34.9, 44.9, 4012, 2700 }, + [511] = { 34.4, 44, 4012, 2700 }, + [512] = { 36.2, 41.4, 4012, 2700 }, + [513] = { 34.3, 35.7, 4012, 2700 }, + [514] = { 32.5, 26.7, 4012, 2700 }, + [515] = { 33.2, 26.4, 4012, 2700 }, + [516] = { 33.6, 26, 4012, 2700 }, + [517] = { 15.2, 2.8, 4012, 2700 }, + [518] = { 16.5, 1.9, 4012, 2700 }, + [519] = { 66.7, 64.9, 5179, 2700 }, + [520] = { 55.9, 54.2, 5179, 2700 }, + [521] = { 41.9, 45, 5179, 2700 }, + [522] = { 25.2, 44.1, 5179, 2700 }, + [523] = { 27, 38.5, 5179, 2700 }, + [524] = { 94.8, 80.7, 5581, 2700 }, + [525] = { 93.5, 78.7, 5581, 2700 }, + [526] = { 92, 78.3, 5581, 2700 }, + [527] = { 95.7, 71.7, 5581, 2700 }, + [528] = { 88.8, 61.7, 5581, 2700 }, + [529] = { 91.3, 60.5, 5581, 2700 }, + [530] = { 88.9, 59.9, 5581, 2700 }, + [531] = { 89.2, 47.4, 5581, 300 }, + [532] = { 95.1, 39.6, 5581, 2700 }, + [533] = { 96.2, 38.7, 5581, 2700 }, + [534] = { 99.9, 33.9, 5581, 2700 }, + [535] = { 98.7, 33.9, 5581, 2700 }, + [536] = { 97.5, 31.9, 5581, 2700 }, + [537] = { 97.4, 31, 5581, 2700 }, + [538] = { 95.3, 27.9, 5581, 2700 }, + [539] = { 94.4, 27.4, 5581, 2700 }, + [540] = { 99.9, 25.2, 5581, 2700 }, + [541] = { 95.4, 24.7, 5581, 2700 }, + [542] = { 95.5, 19.1, 5581, 2700 }, + [543] = { 94.9, 17, 5581, 2700 }, + [544] = { 99.4, 16.2, 5581, 2700 }, + [545] = { 98.5, 15.9, 5581, 2700 }, + [546] = { 94.2, 10.9, 5581, 2700 }, + [547] = { 33.3, 99.7, 5602, 2700 }, + [548] = { 32.7, 99.7, 5602, 2700 }, + [549] = { 33.1, 98.6, 5602, 2700 }, + [550] = { 7.5, 98.5, 5602, 2700 }, + }, + }, + [2048] = { + ["coords"] = { + [1] = { 64.8, 79.2, 130, 7200 }, + [2] = { 10.6, 44.5, 267, 7200 }, + [3] = { 68.9, 7.8, 5179, 7200 }, + }, + }, + [2049] = { + ["coords"] = { + [1] = { 64.8, 79.1, 130, 7200 }, + [2] = { 10.6, 44.5, 267, 7200 }, + [3] = { 68.9, 7.8, 5179, 7200 }, + }, + }, + [2050] = { + ["coords"] = { + [1] = { 64.8, 79.1, 130, 7200 }, + [2] = { 10.6, 44.5, 267, 7200 }, + [3] = { 68.9, 7.8, 5179, 7200 }, + }, + }, + [2051] = { + ["coords"] = { + [1] = { 64.8, 79.1, 130, 7200 }, + [2] = { 10.6, 44.5, 267, 7200 }, + [3] = { 68.9, 7.8, 5179, 7200 }, + }, + }, + [2052] = { + ["coords"] = { + [1] = { 64.8, 79.1, 130, 7200 }, + [2] = { 10.6, 44.5, 267, 7200 }, + [3] = { 68.9, 7.8, 5179, 7200 }, + }, + }, + [2054] = { + ["coords"] = { + [1] = { 17.2, 20.9, 44, 900 }, + [2] = { 20.3, 20.5, 44, 900 }, + [3] = { 17.3, 17, 44, 900 }, + }, + }, + [2055] = { + ["coords"] = { + [1] = { 18.6, 17.1, 44, 900 }, + [2] = { 18.6, 13.8, 44, 900 }, + [3] = { 58.3, 89.3, 46, 900 }, + }, + }, + [2059] = { + ["coords"] = { + [1] = { 79.7, 36.2, 1, 900 }, + [2] = { 0.9, 60.3, 5602, 900 }, + }, + ["fac"] = "A", + }, + [2061] = { + ["coords"] = { + [1] = { 25, 76, 1, 900 }, + [2] = { 28.8, 68.4, 1, 900 }, + [3] = { 29.1, 68.1, 1, 900 }, + [4] = { 28.5, 68.1, 1, 900 }, + [5] = { 29.2, 67.4, 1, 900 }, + [6] = { 28.4, 67.4, 1, 900 }, + [7] = { 28.6, 67, 1, 900 }, + [8] = { 29, 67, 1, 900 }, + [9] = { 40.7, 64.9, 1, 900 }, + [10] = { 64.9, 58.4, 1, 900 }, + [11] = { 44, 56.8, 1, 900 }, + [12] = { 69.1, 55.1, 1, 900 }, + [13] = { 68.4, 54.4, 1, 900 }, + [14] = { 47.7, 53.3, 1, 900 }, + [15] = { 47.3, 52.7, 1, 900 }, + [16] = { 47.3, 52.6, 1, 900 }, + [17] = { 62.4, 52.3, 1, 900 }, + [18] = { 47.6, 52.2, 1, 900 }, + [19] = { 47.5, 51.8, 1, 900 }, + [20] = { 34.5, 51.7, 1, 900 }, + [21] = { 26.1, 51.3, 1, 900 }, + [22] = { 50.2, 50.2, 1, 900 }, + [23] = { 50.3, 50.2, 1, 900 }, + [24] = { 62.5, 49.7, 1, 900 }, + [25] = { 51, 49.4, 1, 900 }, + [26] = { 96.2, 46.8, 1, 7200 }, + [27] = { 30.5, 45.7, 1, 900 }, + [28] = { 41.3, 44.4, 1, 900 }, + [29] = { 57.8, 43.8, 1, 900 }, + [30] = { 52.4, 36.8, 1, 900 }, + [31] = { 41.8, 35.9, 1, 900 }, + [32] = { 13.6, 75.2, 3, 900 }, + [33] = { 62.6, 69.7, 3, 900 }, + [34] = { 15.5, 60.8, 3, 900 }, + [35] = { 62.6, 57.4, 3, 900 }, + [36] = { 42.5, 53, 3, 900 }, + [37] = { 42.5, 52.8, 3, 900 }, + [38] = { 3, 45.8, 3, 900 }, + [39] = { 67.7, 44.9, 3, 900 }, + [40] = { 26.1, 44.5, 3, 900 }, + [41] = { 70.1, 43.9, 3, 900 }, + [42] = { 53.6, 43.5, 3, 900 }, + [43] = { 70.4, 42, 3, 900 }, + [44] = { 53.5, 30.7, 3, 900 }, + [45] = { 42.3, 29.2, 3, 900 }, + [46] = { 42.4, 29.2, 3, 900 }, + [47] = { 42.3, 29.1, 3, 900 }, + [48] = { 67, 23.1, 3, 900 }, + [49] = { 38.6, 18.7, 3, 900 }, + [50] = { 39.8, 17.6, 3, 900 }, + [51] = { 40.9, 15, 3, 900 }, + [52] = { 39.8, 13.7, 3, 900 }, + [53] = { 38.8, 12.5, 3, 900 }, + [54] = { 38.9, 11.5, 3, 900 }, + [55] = { 40.6, 11.1, 3, 900 }, + [56] = { 42.6, 10.2, 3, 900 }, + [57] = { 48.1, 42.9, 4, 900 }, + [58] = { 43, 41.5, 4, 900 }, + [59] = { 62.8, 41.3, 4, 900 }, + [60] = { 64.6, 33.1, 4, 900 }, + [61] = { 65.3, 32.8, 4, 900 }, + [62] = { 66, 32, 4, 900 }, + [63] = { 67.4, 32, 4, 900 }, + [64] = { 65.7, 31.9, 4, 900 }, + [65] = { 66.6, 31.8, 4, 900 }, + [66] = { 66.1, 31.6, 4, 900 }, + [67] = { 68.2, 31.5, 4, 900 }, + [68] = { 66.8, 31.4, 4, 900 }, + [69] = { 69, 31.3, 4, 900 }, + [70] = { 67.3, 31.2, 4, 900 }, + [71] = { 65.8, 31.1, 4, 900 }, + [72] = { 66.4, 31, 4, 900 }, + [73] = { 68, 30.8, 4, 900 }, + [74] = { 68.3, 30.8, 4, 900 }, + [75] = { 66.2, 30.7, 4, 900 }, + [76] = { 69.5, 30.6, 4, 900 }, + [77] = { 65.8, 30.6, 4, 900 }, + [78] = { 69.1, 30.5, 4, 900 }, + [79] = { 66.5, 30.4, 4, 900 }, + [80] = { 68.2, 30.1, 4, 900 }, + [81] = { 66.2, 30.1, 4, 900 }, + [82] = { 65.8, 30, 4, 900 }, + [83] = { 66.9, 30, 4, 900 }, + [84] = { 69.2, 29.8, 4, 900 }, + [85] = { 67.6, 29.6, 4, 900 }, + [86] = { 67, 29.1, 4, 900 }, + [87] = { 67.9, 29.1, 4, 900 }, + [88] = { 66.6, 29, 4, 900 }, + [89] = { 67.3, 28.9, 4, 900 }, + [90] = { 67.9, 28.6, 4, 900 }, + [91] = { 64.7, 23.1, 4, 900 }, + [92] = { 65, 22.8, 4, 900 }, + [93] = { 65.2, 22.5, 4, 900 }, + [94] = { 61.6, 22.4, 4, 900 }, + [95] = { 64.3, 22.3, 4, 900 }, + [96] = { 65.6, 22.2, 4, 900 }, + [97] = { 65.2, 21.4, 4, 900 }, + [98] = { 64, 21.4, 4, 900 }, + [99] = { 64.1, 20.8, 4, 900 }, + [100] = { 64.4, 20.5, 4, 900 }, + [101] = { 60.8, 19.3, 4, 900 }, + [102] = { 64.2, 18.2, 4, 900 }, + [103] = { 63.8, 18, 4, 900 }, + [104] = { 64.7, 17, 4, 900 }, + [105] = { 63.7, 16.6, 4, 900 }, + [106] = { 64.9, 16, 4, 900 }, + [107] = { 64.5, 15.9, 4, 900 }, + [108] = { 64.2, 15.8, 4, 900 }, + [109] = { 63.8, 15.6, 4, 900 }, + [110] = { 13.2, 68.6, 8, 600 }, + [111] = { 44.8, 57.1, 8, 900 }, + [112] = { 42.1, 56.9, 8, 900 }, + [113] = { 42.2, 55.8, 8, 900 }, + [114] = { 42.2, 53.8, 8, 600 }, + [115] = { 42.3, 52.7, 8, 600 }, + [116] = { 24.7, 31.5, 8, 600 }, + [117] = { 89.9, 26.8, 8, 600 }, + [118] = { 62.4, 23.2, 8, 600 }, + [119] = { 65.1, 22.4, 8, 600 }, + [120] = { 61.7, 21.8, 8, 600 }, + [121] = { 62.1, 81.5, 10, 3600 }, + [122] = { 11.9, 77.4, 10, 3600 }, + [123] = { 61, 75.4, 10, 3600 }, + [124] = { 64, 73.2, 10, 3600 }, + [125] = { 72, 72.1, 10, 3600 }, + [126] = { 45, 67.3, 10, 3600 }, + [127] = { 81.4, 59.9, 10, 3600 }, + [128] = { 63.8, 51.3, 10, 3600 }, + [129] = { 75.5, 49, 10, 3600 }, + [130] = { 75.5, 48.9, 10, 3600 }, + [131] = { 76.1, 45, 10, 3600 }, + [132] = { 76, 45, 10, 3600 }, + [133] = { 73.6, 44.9, 10, 3600 }, + [134] = { 76, 44.9, 10, 3600 }, + [135] = { 73.5, 44.9, 10, 3600 }, + [136] = { 73.5, 44.8, 10, 3600 }, + [137] = { 73.8, 43.1, 10, 3600 }, + [138] = { 73.9, 43.1, 10, 3600 }, + [139] = { 61, 41.5, 10, 3600 }, + [140] = { 7.7, 33.9, 10, 3600 }, + [141] = { 17.1, 33.8, 10, 3600 }, + [142] = { 58.1, 30.2, 10, 3600 }, + [143] = { 47.3, 75.6, 11, 7200 }, + [144] = { 55.7, 75.2, 11, 7200 }, + [145] = { 61.7, 72.3, 11, 7200 }, + [146] = { 62.7, 69.5, 11, 7200 }, + [147] = { 63.9, 63.5, 11, 7200 }, + [148] = { 10.6, 61.7, 11, 7200 }, + [149] = { 10.7, 61.7, 11, 7200 }, + [150] = { 10.9, 60.6, 11, 7200 }, + [151] = { 10.9, 60.5, 11, 7200 }, + [152] = { 12, 59, 11, 7200 }, + [153] = { 12, 58.9, 11, 7200 }, + [154] = { 61.1, 58.5, 11, 7200 }, + [155] = { 12.2, 57.9, 11, 7200 }, + [156] = { 7.9, 56.1, 11, 7200 }, + [157] = { 8.2, 55.2, 11, 7200 }, + [158] = { 38.3, 46, 11, 7200 }, + [159] = { 43.6, 34.6, 11, 7200 }, + [160] = { 45.6, 34.6, 11, 7200 }, + [161] = { 38.9, 34.1, 11, 7200 }, + [162] = { 31.3, 32.9, 11, 7200 }, + [163] = { 42.9, 32.4, 11, 7200 }, + [164] = { 45.1, 31.8, 11, 7200 }, + [165] = { 51.3, 30.9, 11, 7200 }, + [166] = { 31.5, 29.7, 11, 7200 }, + [167] = { 62.4, 28.3, 11, 7200 }, + [168] = { 52.8, 27.6, 11, 7200 }, + [169] = { 40, 27.5, 11, 7200 }, + [170] = { 35.1, 27.4, 11, 7200 }, + [171] = { 62, 26.3, 11, 7200 }, + [172] = { 25.6, 26.1, 11, 7200 }, + [173] = { 60.1, 24.6, 11, 7200 }, + [174] = { 48.2, 18.9, 11, 7200 }, + [175] = { 46.9, 18.7, 11, 7200 }, + [176] = { 46.9, 18.6, 11, 7200 }, + [177] = { 46.5, 18, 11, 7200 }, + [178] = { 47.3, 15, 11, 7200 }, + [179] = { 47.2, 15, 11, 7200 }, + [180] = { 48, 14.9, 11, 7200 }, + [181] = { 24.5, 93.8, 12, 900 }, + [182] = { 26, 91.8, 12, 900 }, + [183] = { 25.2, 89.1, 12, 900 }, + [184] = { 27.8, 88.1, 12, 900 }, + [185] = { 47.9, 86.8, 12, 900 }, + [186] = { 48, 86.8, 12, 900 }, + [187] = { 26.4, 86.8, 12, 900 }, + [188] = { 27.6, 86.2, 12, 900 }, + [189] = { 35.2, 83.8, 12, 900 }, + [190] = { 35.1, 83.8, 12, 900 }, + [191] = { 50.6, 83.1, 12, 900 }, + [192] = { 71.2, 80.9, 12, 900 }, + [193] = { 85.5, 69.5, 12, 900 }, + [194] = { 85.5, 69.4, 12, 900 }, + [195] = { 79.1, 69.2, 12, 900 }, + [196] = { 78.4, 67.2, 12, 900 }, + [197] = { 78.4, 67.1, 12, 900 }, + [198] = { 83.4, 66.9, 12, 900 }, + [199] = { 44.4, 66.1, 12, 900 }, + [200] = { 43.6, 65.5, 12, 900 }, + [201] = { 43.5, 65.5, 12, 900 }, + [202] = { 30.6, 64.6, 12, 900 }, + [203] = { 46.1, 62.3, 12, 900 }, + [204] = { 46.1, 62.2, 12, 900 }, + [205] = { 35.9, 59.1, 12, 900 }, + [206] = { 33.8, 57.4, 12, 900 }, + [207] = { 64.5, 56.6, 12, 900 }, + [208] = { 44, 53.5, 12, 900 }, + [209] = { 68.2, 45, 12, 900 }, + [210] = { 56.5, 43.9, 12, 900 }, + [211] = { 66.6, 40.9, 12, 900 }, + [212] = { 69.3, 38.9, 12, 900 }, + [213] = { 51.4, 36.7, 12, 900 }, + [214] = { 47.6, 35.8, 12, 900 }, + [215] = { 49.7, 35.1, 12, 900 }, + [216] = { 67.3, 86.9, 14, 900 }, + [217] = { 47.8, 77.7, 14, 900 }, + [218] = { 41.4, 68.6, 14, 900 }, + [219] = { 41.8, 68.6, 14, 900 }, + [220] = { 42.1, 68.5, 14, 900 }, + [221] = { 40.7, 68.5, 14, 900 }, + [222] = { 43.3, 68.4, 14, 900 }, + [223] = { 40.5, 68.2, 14, 900 }, + [224] = { 41.4, 68.2, 14, 900 }, + [225] = { 41, 68.2, 14, 900 }, + [226] = { 40.7, 68.1, 14, 900 }, + [227] = { 41.3, 68, 14, 900 }, + [228] = { 40.4, 67.9, 14, 900 }, + [229] = { 40.9, 67.8, 14, 900 }, + [230] = { 40.7, 67.8, 14, 900 }, + [231] = { 42.6, 67.3, 14, 900 }, + [232] = { 42.7, 67.1, 14, 900 }, + [233] = { 52.3, 43.5, 14, 900 }, + [234] = { 53.1, 43, 14, 900 }, + [235] = { 52, 43, 14, 900 }, + [236] = { 54.2, 42.8, 14, 900 }, + [237] = { 53.9, 42.7, 14, 900 }, + [238] = { 54.3, 42.5, 14, 900 }, + [239] = { 51.1, 42.4, 14, 900 }, + [240] = { 53.8, 42.4, 14, 900 }, + [241] = { 51.1, 42.3, 14, 900 }, + [242] = { 53.1, 42.3, 14, 900 }, + [243] = { 51.2, 42.3, 14, 900 }, + [244] = { 54.3, 42.3, 14, 900 }, + [245] = { 54.1, 42.1, 14, 900 }, + [246] = { 53, 41.9, 14, 900 }, + [247] = { 51.3, 41.8, 14, 900 }, + [248] = { 51.9, 41.8, 14, 900 }, + [249] = { 51.2, 41.5, 14, 900 }, + [250] = { 51.8, 41.5, 14, 900 }, + [251] = { 54.7, 41.3, 14, 900 }, + [252] = { 51.3, 41.3, 14, 900 }, + [253] = { 51.5, 41.2, 14, 900 }, + [254] = { 52.2, 40.9, 14, 900 }, + [255] = { 51.9, 40.2, 14, 900 }, + [256] = { 42.1, 26.6, 14, 900 }, + [257] = { 46.4, 22.9, 14, 900 }, + [258] = { 56.3, 20, 14, 900 }, + [259] = { 51.1, 13, 14, 900 }, + [260] = { 45.3, 11.3, 14, 900 }, + [261] = { 46, 10.8, 14, 900 }, + [262] = { 46.3, 10.8, 14, 900 }, + [263] = { 46.7, 10.7, 14, 900 }, + [264] = { 45.6, 10.5, 14, 900 }, + [265] = { 46.6, 9.9, 14, 900 }, + [266] = { 45.8, 8.9, 14, 900 }, + [267] = { 46.7, 8.4, 14, 900 }, + [268] = { 45.1, 8.3, 14, 900 }, + [269] = { 46.6, 8.2, 14, 900 }, + [270] = { 45.7, 7.7, 14, 900 }, + [271] = { 44.7, 7.4, 14, 900 }, + [272] = { 45.8, 7.2, 14, 900 }, + [273] = { 45.3, 7.2, 14, 900 }, + [274] = { 46.3, 6.8, 14, 900 }, + [275] = { 45.3, 6.7, 14, 900 }, + [276] = { 41.6, 72.7, 15, 900 }, + [277] = { 25.9, 62.5, 15, 900 }, + [278] = { 26.2, 58.5, 15, 900 }, + [279] = { 66.4, 51.7, 15, 900 }, + [280] = { 63.9, 47.5, 15, 900 }, + [281] = { 67, 45.3, 15, 900 }, + [282] = { 66.4, 45, 15, 900 }, + [283] = { 35.1, 38.3, 15, 900 }, + [284] = { 42.6, 38, 15, 900 }, + [285] = { 42.6, 30.5, 15, 900 }, + [286] = { 64.2, 28.2, 15, 180 }, + [287] = { 43.3, 27.8, 15, 900 }, + [288] = { 45.1, 24.5, 15, 900 }, + [289] = { 56.7, 21.5, 15, 900 }, + [290] = { 62.9, 18.8, 15, 900 }, + [291] = { 57.6, 15.8, 15, 900 }, + [292] = { 57.4, 15.2, 15, 900 }, + [293] = { 54.1, 15.1, 15, 900 }, + [294] = { 41.1, 10.7, 15, 900 }, + [295] = { 59.2, 9.7, 15, 900 }, + [296] = { 59.6, 9.6, 15, 900 }, + [297] = { 63.1, 7.2, 15, 900 }, + [298] = { 51.5, 4.9, 15, 900 }, + [299] = { 61.2, 92.6, 16, 180 }, + [300] = { 49.8, 91.7, 16, 180 }, + [301] = { 11.9, 78.2, 16, 180 }, + [302] = { 23.2, 75.4, 16, 180 }, + [303] = { 25.5, 64.2, 16, 180 }, + [304] = { 19.5, 63.9, 16, 180 }, + [305] = { 19.2, 63.8, 16, 180 }, + [306] = { 26.1, 63.6, 16, 180 }, + [307] = { 26.6, 63.4, 16, 180 }, + [308] = { 27.4, 62.9, 16, 180 }, + [309] = { 26.8, 61.4, 16, 180 }, + [310] = { 27.5, 61.2, 16, 180 }, + [311] = { 28.5, 61.2, 16, 180 }, + [312] = { 26.9, 61.1, 16, 180 }, + [313] = { 49.6, 56.2, 16, 180 }, + [314] = { 21.8, 51.9, 16, 180 }, + [315] = { 22.7, 51.7, 16, 180 }, + [316] = { 22.1, 51.4, 16, 180 }, + [317] = { 22.4, 51, 16, 180 }, + [318] = { 22.7, 51, 16, 180 }, + [319] = { 28.1, 50.1, 16, 180 }, + [320] = { 32.1, 45.6, 16, 180 }, + [321] = { 50.6, 42.7, 16, 180 }, + [322] = { 42.1, 39, 16, 180 }, + [323] = { 35.7, 35.7, 16, 180 }, + [324] = { 59.1, 31.9, 16, 180 }, + [325] = { 48.4, 30.5, 16, 180 }, + [326] = { 56.4, 28.9, 16, 180 }, + [327] = { 58.7, 28.4, 16, 180 }, + [328] = { 44.5, 26.3, 16, 180 }, + [329] = { 60.9, 25.2, 16, 180 }, + [330] = { 45.4, 22.2, 16, 180 }, + [331] = { 41.7, 19.3, 16, 180 }, + [332] = { 51.9, 18.9, 16, 180 }, + [333] = { 66.1, 16.7, 16, 180 }, + [334] = { 49.7, 99.4, 17, 180 }, + [335] = { 48.9, 98.8, 17, 180 }, + [336] = { 48.2, 98.3, 17, 180 }, + [337] = { 47.5, 97.2, 17, 180 }, + [338] = { 46.4, 96.6, 17, 180 }, + [339] = { 44.6, 94.5, 17, 180 }, + [340] = { 44.1, 92.3, 17, 180 }, + [341] = { 48.9, 86.3, 17, 900 }, + [342] = { 47.5, 85.3, 17, 900 }, + [343] = { 49.1, 84.3, 17, 900 }, + [344] = { 53.7, 73.8, 17, 900 }, + [345] = { 56.8, 59.5, 17, 900 }, + [346] = { 44.8, 59.4, 17, 900 }, + [347] = { 66.2, 59, 17, 900 }, + [348] = { 45.6, 59, 17, 900 }, + [349] = { 45.5, 59, 17, 900 }, + [350] = { 66.4, 59, 17, 900 }, + [351] = { 45.5, 58.9, 17, 900 }, + [352] = { 44.9, 58.2, 17, 900 }, + [353] = { 45, 58.2, 17, 900 }, + [354] = { 44.9, 57.9, 17, 900 }, + [355] = { 68.2, 57.7, 17, 900 }, + [356] = { 49.3, 57.2, 17, 900 }, + [357] = { 62.2, 56.5, 17, 900 }, + [358] = { 61.4, 55.6, 17, 900 }, + [359] = { 62, 55.2, 17, 900 }, + [360] = { 62.7, 49.7, 17, 900 }, + [361] = { 63.6, 49.2, 17, 900 }, + [362] = { 61.5, 48.9, 17, 900 }, + [363] = { 61.6, 48, 17, 900 }, + [364] = { 62.2, 47.4, 17, 900 }, + [365] = { 54.4, 46.6, 17, 900 }, + [366] = { 35.6, 46.4, 17, 900 }, + [367] = { 63.6, 46.1, 17, 900 }, + [368] = { 62.3, 46.1, 17, 900 }, + [369] = { 35.6, 45.7, 17, 900 }, + [370] = { 36.4, 45.4, 17, 900 }, + [371] = { 62, 45.1, 17, 900 }, + [372] = { 61.4, 44.2, 17, 900 }, + [373] = { 64.4, 43.9, 17, 900 }, + [374] = { 37, 43.9, 17, 900 }, + [375] = { 56.7, 43.6, 17, 900 }, + [376] = { 80.4, 42.4, 17, 900 }, + [377] = { 47.3, 41.8, 17, 900 }, + [378] = { 45.7, 41.5, 17, 900 }, + [379] = { 36.1, 40.9, 17, 900 }, + [380] = { 44.8, 39.7, 17, 900 }, + [381] = { 48.7, 39.4, 17, 900 }, + [382] = { 57.1, 32.8, 17, 900 }, + [383] = { 66.4, 32.7, 17, 900 }, + [384] = { 66.3, 32.5, 17, 900 }, + [385] = { 57, 32.5, 17, 900 }, + [386] = { 56.9, 32.3, 17, 900 }, + [387] = { 57.1, 32.2, 17, 900 }, + [388] = { 57.1, 32.1, 17, 900 }, + [389] = { 57, 31.9, 17, 900 }, + [390] = { 57.1, 31.7, 17, 900 }, + [391] = { 56.9, 31.7, 17, 900 }, + [392] = { 57, 31.7, 17, 900 }, + [393] = { 57.1, 31.5, 17, 900 }, + [394] = { 57, 31.5, 17, 900 }, + [395] = { 57, 31.4, 17, 900 }, + [396] = { 52.1, 30, 17, 900 }, + [397] = { 51.9, 29.8, 17, 900 }, + [398] = { 52.1, 29.8, 17, 900 }, + [399] = { 52.6, 29.7, 17, 900 }, + [400] = { 51.9, 29.7, 17, 900 }, + [401] = { 52, 29.6, 17, 900 }, + [402] = { 45.3, 28.5, 17, 900 }, + [403] = { 45.3, 28.3, 17, 900 }, + [404] = { 31.7, 27.9, 17, 900 }, + [405] = { 43.6, 26.3, 17, 900 }, + [406] = { 42.1, 24.7, 17, 900 }, + [407] = { 47.8, 24.6, 17, 900 }, + [408] = { 61.6, 23.6, 17, 300 }, + [409] = { 33.6, 23.1, 17, 900 }, + [410] = { 46.6, 23, 17, 900 }, + [411] = { 31.6, 22.1, 17, 900 }, + [412] = { 31.2, 21.9, 17, 900 }, + [413] = { 61.4, 21.3, 17, 900 }, + [414] = { 45, 20.1, 17, 900 }, + [415] = { 60.3, 4.2, 17, 900 }, + [416] = { 60, 4.2, 17, 900 }, + [417] = { 60.4, 4.1, 17, 900 }, + [418] = { 60.2, 4.1, 17, 900 }, + [419] = { 59.9, 4, 17, 900 }, + [420] = { 60.5, 4, 17, 900 }, + [421] = { 59.8, 4, 17, 900 }, + [422] = { 60.3, 4, 17, 900 }, + [423] = { 60.2, 3.9, 17, 900 }, + [424] = { 60.1, 3.9, 17, 900 }, + [425] = { 59.6, 3.8, 17, 900 }, + [426] = { 60.6, 3.8, 17, 900 }, + [427] = { 60.3, 3.8, 17, 900 }, + [428] = { 60.5, 3.8, 17, 900 }, + [429] = { 60.9, 3.7, 17, 900 }, + [430] = { 59.7, 3.7, 17, 900 }, + [431] = { 59.8, 3.7, 17, 900 }, + [432] = { 60.6, 3.7, 17, 900 }, + [433] = { 60.3, 3.6, 17, 900 }, + [434] = { 60.4, 3.5, 17, 900 }, + [435] = { 60.2, 3.4, 17, 900 }, + [436] = { 59.8, 3.4, 17, 900 }, + [437] = { 59.9, 3.3, 17, 900 }, + [438] = { 60.2, 3.2, 17, 900 }, + [439] = { 59.8, 3.2, 17, 900 }, + [440] = { 59.5, 3.1, 17, 900 }, + [441] = { 60, 3.1, 17, 900 }, + [442] = { 59.6, 3, 17, 900 }, + [443] = { 59.8, 2.8, 17, 900 }, + [444] = { 59.5, 2.8, 17, 900 }, + [445] = { 73.9, 55.6, 25, 7200 }, + [446] = { 75.3, 53.2, 25, 7200 }, + [447] = { 72.1, 46.1, 25, 7200 }, + [448] = { 71.9, 45.9, 25, 7200 }, + [449] = { 43.9, 99.1, 28, 300 }, + [450] = { 42.6, 83.9, 28, 1200 }, + [451] = { 42.9, 83.9, 28, 1200 }, + [452] = { 68.5, 76.6, 28, 1200 }, + [453] = { 68.7, 73.7, 28, 1200 }, + [454] = { 26.7, 59.6, 28, 900 }, + [455] = { 26.3, 59.1, 28, 900 }, + [456] = { 26.5, 58.5, 28, 900 }, + [457] = { 26.6, 56.9, 28, 900 }, + [458] = { 26.7, 56.4, 28, 900 }, + [459] = { 26.5, 56.1, 28, 900 }, + [460] = { 26.5, 55.5, 28, 900 }, + [461] = { 40.5, 52.2, 28, 1200 }, + [462] = { 29.5, 44.9, 28, 300 }, + [463] = { 51.8, 44.4, 28, 1200 }, + [464] = { 50.9, 40.4, 28, 1200 }, + [465] = { 53.2, 36.6, 28, 1200 }, + [466] = { 44.6, 33.9, 28, 1200 }, + [467] = { 30.7, 29.2, 28, 900 }, + [468] = { 44.8, 12.7, 28, 1200 }, + [469] = { 29.7, 80.9, 33, 900 }, + [470] = { 38.5, 80.6, 33, 900 }, + [471] = { 27.5, 69.5, 33, 900 }, + [472] = { 31.9, 54.5, 33, 900 }, + [473] = { 42, 44.7, 33, 900 }, + [474] = { 47.7, 44.2, 33, 900 }, + [475] = { 47.9, 42.9, 33, 900 }, + [476] = { 46, 42.7, 33, 900 }, + [477] = { 44.5, 41.9, 33, 900 }, + [478] = { 50.8, 35.7, 33, 900 }, + [479] = { 46.2, 32.1, 33, 900 }, + [480] = { 37.4, 31, 33, 900 }, + [481] = { 50.4, 30.5, 33, 900 }, + [482] = { 31.8, 29.7, 33, 900 }, + [483] = { 48, 29.7, 33, 900 }, + [484] = { 32.6, 29.4, 33, 900 }, + [485] = { 32.2, 29.3, 33, 900 }, + [486] = { 31.6, 29.1, 33, 900 }, + [487] = { 32.7, 28.9, 33, 900 }, + [488] = { 31, 28.7, 33, 900 }, + [489] = { 33, 28.5, 33, 900 }, + [490] = { 30.9, 28.3, 33, 900 }, + [491] = { 31.4, 27.9, 33, 900 }, + [492] = { 31.8, 27, 33, 900 }, + [493] = { 32.1, 26.9, 33, 900 }, + [494] = { 50.6, 20.7, 33, 900 }, + [495] = { 51.3, 18.5, 33, 900 }, + [496] = { 50.6, 18.4, 33, 900 }, + [497] = { 51.3, 18.3, 33, 900 }, + [498] = { 50.6, 18.2, 33, 900 }, + [499] = { 43.8, 18, 33, 900 }, + [500] = { 50.5, 16.9, 33, 900 }, + [501] = { 51.3, 16.9, 33, 900 }, + [502] = { 50.5, 16.6, 33, 900 }, + [503] = { 51.3, 16.6, 33, 900 }, + [504] = { 33.7, 15.6, 33, 900 }, + [505] = { 24.7, 12.2, 33, 900 }, + [506] = { 19.9, 12.1, 33, 900 }, + [507] = { 35.6, 10.6, 33, 900 }, + [508] = { 44.5, 10, 33, 900 }, + [509] = { 43.8, 9.6, 33, 900 }, + [510] = { 38, 3.4, 33, 900 }, + [511] = { 27.6, 98.4, 36, 7200 }, + [512] = { 27.7, 98.4, 36, 7200 }, + [513] = { 47.8, 82, 36, 7200 }, + [514] = { 39.5, 81.5, 36, 7200 }, + [515] = { 58.2, 67.8, 36, 7200 }, + [516] = { 79.3, 66.8, 36, 7200 }, + [517] = { 36, 55.1, 36, 7200 }, + [518] = { 36.7, 54.5, 36, 7200 }, + [519] = { 35.9, 54.4, 36, 7200 }, + [520] = { 35.7, 53.9, 36, 7200 }, + [521] = { 35.4, 53.4, 36, 7200 }, + [522] = { 37.5, 53.2, 36, 7200 }, + [523] = { 36.1, 52.8, 36, 7200 }, + [524] = { 37.3, 52.6, 36, 7200 }, + [525] = { 80.6, 52.2, 36, 300 }, + [526] = { 43.2, 47.7, 36, 7200 }, + [527] = { 49.2, 43.8, 36, 7200 }, + [528] = { 48.1, 35.1, 36, 7200 }, + [529] = { 32.4, 33.1, 36, 7200 }, + [530] = { 32.5, 33, 36, 7200 }, + [531] = { 58.2, 30.2, 36, 7200 }, + [532] = { 56.1, 27, 36, 7200 }, + [533] = { 53.6, 20.8, 36, 7200 }, + [534] = { 47.7, 17.2, 36, 7200 }, + [535] = { 39, 92.1, 38, 900 }, + [536] = { 36.5, 91.1, 38, 900 }, + [537] = { 35.3, 90.8, 38, 900 }, + [538] = { 37.1, 89.9, 38, 900 }, + [539] = { 40, 89.8, 38, 900 }, + [540] = { 35.6, 89.6, 38, 900 }, + [541] = { 34.4, 88.9, 38, 900 }, + [542] = { 33.1, 88.8, 38, 900 }, + [543] = { 39, 88.5, 38, 900 }, + [544] = { 37.1, 88.5, 38, 900 }, + [545] = { 34.3, 88.4, 38, 900 }, + [546] = { 35.4, 88.3, 38, 900 }, + [547] = { 38.1, 87.5, 38, 900 }, + [548] = { 35.4, 87.4, 38, 900 }, + [549] = { 34.4, 87.4, 38, 900 }, + [550] = { 38.2, 86.6, 38, 900 }, + [551] = { 39.7, 86.3, 38, 900 }, + [552] = { 37.2, 85.8, 38, 900 }, + [553] = { 41.5, 85.4, 38, 900 }, + [554] = { 29.5, 83.7, 38, 7200 }, + [555] = { 32.1, 75.2, 38, 7200 }, + [556] = { 65, 66.3, 38, 7200 }, + [557] = { 26.7, 56.9, 38, 7200 }, + [558] = { 34.2, 50.3, 38, 7200 }, + [559] = { 35.5, 49.6, 38, 7200 }, + [560] = { 35.5, 49.5, 38, 7200 }, + [561] = { 34.8, 49, 38, 7200 }, + [562] = { 37.3, 48.9, 38, 7200 }, + [563] = { 35.8, 48.9, 38, 7200 }, + [564] = { 34.6, 48.9, 38, 7200 }, + [565] = { 37.4, 47.5, 38, 7200 }, + [566] = { 33.2, 46.6, 38, 7200 }, + [567] = { 35.8, 44.7, 38, 7200 }, + [568] = { 34.3, 43.4, 38, 7200 }, + [569] = { 34.4, 43.4, 38, 7200 }, + [570] = { 25.6, 43.3, 38, 7200 }, + [571] = { 35.1, 43, 38, 7200 }, + [572] = { 39.5, 39.8, 38, 7200 }, + [573] = { 54.5, 26.6, 38, 7200 }, + [574] = { 37.1, 24.8, 38, 7200 }, + [575] = { 74.2, 20.6, 38, 7200 }, + [576] = { 37.4, 16.4, 38, 7200 }, + [577] = { 42.9, 88.3, 40, 3600 }, + [578] = { 34.9, 85.2, 40, 3600 }, + [579] = { 34.9, 84.6, 40, 3600 }, + [580] = { 42.4, 83.1, 40, 3600 }, + [581] = { 41.3, 83.1, 40, 3600 }, + [582] = { 42.1, 83, 40, 3600 }, + [583] = { 41.6, 82.6, 40, 3600 }, + [584] = { 37, 82.4, 40, 3600 }, + [585] = { 40.8, 81.9, 40, 3600 }, + [586] = { 41.6, 81.9, 40, 3600 }, + [587] = { 40.9, 80.7, 40, 3600 }, + [588] = { 44.7, 80.1, 40, 3600 }, + [589] = { 53.2, 78.9, 40, 3600 }, + [590] = { 61, 77.7, 40, 3600 }, + [591] = { 63.4, 77.3, 40, 3600 }, + [592] = { 37.3, 75.4, 40, 3600 }, + [593] = { 65.2, 75.2, 40, 3600 }, + [594] = { 60.9, 74.3, 40, 3600 }, + [595] = { 56.5, 74.3, 40, 3600 }, + [596] = { 59.4, 74.1, 40, 3600 }, + [597] = { 71.5, 73.3, 40, 3600 }, + [598] = { 63.6, 73, 40, 3600 }, + [599] = { 60.5, 70.7, 40, 3600 }, + [600] = { 63.8, 70.2, 40, 3600 }, + [601] = { 56.4, 69.9, 40, 3600 }, + [602] = { 38.8, 69.7, 40, 3600 }, + [603] = { 31.1, 69.3, 40, 3600 }, + [604] = { 28.2, 69.1, 40, 3600 }, + [605] = { 29.3, 65.4, 40, 3600 }, + [606] = { 52.9, 62.6, 40, 3600 }, + [607] = { 35.8, 61.2, 40, 3600 }, + [608] = { 48.3, 61.1, 40, 3600 }, + [609] = { 27.7, 59.9, 40, 3600 }, + [610] = { 30.3, 57.9, 40, 3600 }, + [611] = { 32.9, 56.6, 40, 3600 }, + [612] = { 27.8, 54.1, 40, 3600 }, + [613] = { 57.5, 53.7, 40, 3600 }, + [614] = { 30.6, 52, 40, 3600 }, + [615] = { 48.2, 46.8, 40, 3600 }, + [616] = { 39.1, 31.9, 40, 3600 }, + [617] = { 36.7, 31.9, 40, 3600 }, + [618] = { 56.2, 30.4, 40, 3600 }, + [619] = { 56.3, 30.4, 40, 3600 }, + [620] = { 34.3, 26.8, 40, 3600 }, + [621] = { 32.4, 26.8, 40, 3600 }, + [622] = { 67.3, 25.8, 40, 900 }, + [623] = { 35.5, 22, 40, 3600 }, + [624] = { 41.8, 20.8, 40, 3600 }, + [625] = { 49.3, 18.9, 40, 3600 }, + [626] = { 52.1, 15.1, 40, 3600 }, + [627] = { 44.9, 13.9, 40, 3600 }, + [628] = { 56.3, 13.5, 40, 3600 }, + [629] = { 59, 68.2, 41, 900 }, + [630] = { 54.4, 56.1, 41, 900 }, + [631] = { 52.3, 34.2, 41, 900 }, + [632] = { 30.9, 84.1, 44, 7200 }, + [633] = { 29.3, 84, 44, 7200 }, + [634] = { 74.2, 78.8, 44, 7200 }, + [635] = { 77.9, 67.5, 44, 7200 }, + [636] = { 15.4, 63.7, 44, 7200 }, + [637] = { 16.6, 63.3, 44, 7200 }, + [638] = { 19.9, 61.5, 44, 7200 }, + [639] = { 14.9, 61.3, 44, 7200 }, + [640] = { 69.4, 60.1, 44, 7200 }, + [641] = { 83.7, 57.7, 44, 7200 }, + [642] = { 73.4, 55.2, 44, 7200 }, + [643] = { 75, 49.8, 44, 7200 }, + [644] = { 31.3, 49.3, 44, 7200 }, + [645] = { 75.8, 47.2, 44, 7200 }, + [646] = { 21.1, 45.7, 44, 7200 }, + [647] = { 21.1, 45.6, 44, 7200 }, + [648] = { 79.8, 45.2, 44, 7200 }, + [649] = { 26.4, 45, 44, 7200 }, + [650] = { 26.3, 44.9, 44, 7200 }, + [651] = { 26.4, 44.9, 44, 7200 }, + [652] = { 26.4, 44.8, 44, 7200 }, + [653] = { 61.1, 43.1, 44, 7200 }, + [654] = { 26.8, 42.8, 44, 7200 }, + [655] = { 26.9, 42.7, 44, 7200 }, + [656] = { 25.3, 40.9, 44, 7200 }, + [657] = { 23.6, 40.9, 44, 7200 }, + [658] = { 23.7, 40.9, 44, 7200 }, + [659] = { 79, 40.6, 44, 7200 }, + [660] = { 76.5, 38.1, 44, 7200 }, + [661] = { 21.3, 36.4, 44, 7200 }, + [662] = { 38.7, 31.9, 44, 7200 }, + [663] = { 28.2, 28.1, 44, 7200 }, + [664] = { 23.4, 26.6, 44, 7200 }, + [665] = { 34.2, 25.3, 44, 7200 }, + [666] = { 27.6, 21.6, 44, 7200 }, + [667] = { 35.6, 8.3, 44, 7200 }, + [668] = { 48.6, 87.6, 45, 7200 }, + [669] = { 53.5, 76.2, 45, 7200 }, + [670] = { 57.8, 74.7, 45, 7200 }, + [671] = { 61.2, 72.4, 45, 7200 }, + [672] = { 73.4, 65.1, 45, 7200 }, + [673] = { 66.4, 64.2, 45, 7200 }, + [674] = { 35.6, 59.7, 45, 7200 }, + [675] = { 35.2, 58.9, 45, 7200 }, + [676] = { 48.7, 55.7, 45, 7200 }, + [677] = { 9.8, 48.3, 45, 7200 }, + [678] = { 85.3, 21, 45, 7200 }, + [679] = { 85.5, 20.7, 45, 7200 }, + [680] = { 70.9, 85.2, 46, 7200 }, + [681] = { 85.1, 67.9, 46, 7200 }, + [682] = { 44.5, 56.7, 46, 7200 }, + [683] = { 44.8, 50.9, 46, 7200 }, + [684] = { 44.7, 50.6, 46, 7200 }, + [685] = { 34.8, 28.5, 46, 7200 }, + [686] = { 35.2, 28, 46, 7200 }, + [687] = { 34.4, 26.3, 46, 7200 }, + [688] = { 34.4, 26.2, 46, 7200 }, + [689] = { 65.1, 23.9, 46, 7200 }, + [690] = { 61.4, 82, 47, 7200 }, + [691] = { 61.5, 81.7, 47, 7200 }, + [692] = { 67.1, 80.3, 47, 7200 }, + [693] = { 63.4, 80, 47, 7200 }, + [694] = { 78.5, 79.4, 47, 7200 }, + [695] = { 67.7, 77.7, 47, 7200 }, + [696] = { 67.9, 75.3, 47, 7200 }, + [697] = { 63.5, 73.3, 47, 7200 }, + [698] = { 58.3, 73, 47, 7200 }, + [699] = { 68.4, 72.9, 47, 7200 }, + [700] = { 68.1, 72.9, 47, 7200 }, + [701] = { 61.5, 72.6, 47, 7200 }, + [702] = { 57.9, 72.4, 47, 7200 }, + [703] = { 64.5, 71.7, 47, 7200 }, + [704] = { 68.6, 70.8, 47, 7200 }, + [705] = { 67.4, 69, 47, 7200 }, + [706] = { 60.6, 67.9, 47, 7200 }, + [707] = { 63.5, 67.9, 47, 7200 }, + [708] = { 63.7, 67.4, 47, 7200 }, + [709] = { 39.8, 66.4, 47, 7200 }, + [710] = { 67.7, 66.4, 47, 7200 }, + [711] = { 62.4, 65.7, 47, 7200 }, + [712] = { 64.2, 65.6, 47, 7200 }, + [713] = { 62.6, 65.3, 47, 7200 }, + [714] = { 64.1, 59.8, 47, 7200 }, + [715] = { 32, 58.2, 47, 7200 }, + [716] = { 23.1, 58.2, 47, 7200 }, + [717] = { 79.7, 55.6, 47, 7200 }, + [718] = { 13.5, 55.3, 47, 7200 }, + [719] = { 26.8, 48.5, 47, 7200 }, + [720] = { 15.7, 46.5, 47, 7200 }, + [721] = { 14.1, 44.3, 47, 7200 }, + [722] = { 43.6, 99.3, 51, 7200 }, + [723] = { 42.6, 97.1, 51, 7200 }, + [724] = { 42.6, 97, 51, 7200 }, + [725] = { 63.5, 75.7, 51, 7200 }, + [726] = { 40.9, 75.3, 51, 7200 }, + [727] = { 62.4, 61.8, 51, 7200 }, + [728] = { 38.1, 51, 51, 7200 }, + [729] = { 34.2, 46.8, 51, 7200 }, + [730] = { 41.9, 43, 51, 7200 }, + [731] = { 43, 40.7, 51, 7200 }, + [732] = { 49.1, 39.7, 51, 7200 }, + [733] = { 37.7, 39.2, 51, 7200 }, + [734] = { 82.1, 36.9, 51, 900 }, + [735] = { 24.3, 34.4, 51, 7200 }, + [736] = { 69.1, 33.4, 51, 7200 }, + [737] = { 25.9, 26.3, 51, 7200 }, + [738] = { 83.3, 72.3, 85, 900 }, + [739] = { 83, 71.9, 85, 900 }, + [740] = { 83.1, 71.3, 85, 900 }, + [741] = { 83.3, 69.8, 85, 900 }, + [742] = { 22.2, 69.6, 85, 300 }, + [743] = { 83.3, 69.3, 85, 900 }, + [744] = { 83.1, 69, 85, 900 }, + [745] = { 83.1, 68.4, 85, 900 }, + [746] = { 37.5, 67.9, 85, 900 }, + [747] = { 32.5, 65.4, 85, 900 }, + [748] = { 65.5, 60, 85, 900 }, + [749] = { 86, 58.4, 85, 300 }, + [750] = { 61.5, 52.4, 85, 900 }, + [751] = { 61.5, 52.3, 85, 900 }, + [752] = { 61.8, 51.4, 85, 900 }, + [753] = { 61.9, 51.3, 85, 900 }, + [754] = { 87.1, 43.4, 85, 900 }, + [755] = { 68.2, 42, 85, 900 }, + [756] = { 46.8, 85.6, 130, 7200 }, + [757] = { 44.4, 84.4, 130, 7200 }, + [758] = { 54, 82.6, 130, 7200 }, + [759] = { 67.8, 81.7, 130, 300 }, + [760] = { 62.9, 76.3, 130, 7200 }, + [761] = { 44.7, 74.4, 130, 7200 }, + [762] = { 47.6, 74, 130, 7200 }, + [763] = { 47.6, 73.9, 130, 7200 }, + [764] = { 47.7, 73.9, 130, 7200 }, + [765] = { 43.5, 73.5, 130, 7200 }, + [766] = { 43.4, 73.5, 130, 7200 }, + [767] = { 42.7, 73.2, 130, 7200 }, + [768] = { 42.7, 73.1, 130, 7200 }, + [769] = { 45.1, 71.2, 130, 7200 }, + [770] = { 45.1, 71.1, 130, 7200 }, + [771] = { 63.5, 65.2, 130, 7200 }, + [772] = { 63.5, 65.1, 130, 7200 }, + [773] = { 50.1, 60.2, 130, 7200 }, + [774] = { 63.3, 58.6, 130, 7200 }, + [775] = { 63.3, 58.5, 130, 7200 }, + [776] = { 43.1, 50.9, 130, 7200 }, + [777] = { 58.7, 42.3, 130, 7200 }, + [778] = { 60.3, 41.4, 130, 7200 }, + [779] = { 65.6, 25.6, 130, 7200 }, + [780] = { 65.9, 25.6, 130, 7200 }, + [781] = { 65.3, 24.6, 130, 7200 }, + [782] = { 66.2, 24.5, 130, 7200 }, + [783] = { 48.4, 24.2, 130, 7200 }, + [784] = { 65.6, 23.8, 130, 7200 }, + [785] = { 65.8, 23.8, 130, 7200 }, + [786] = { 65.3, 23.8, 130, 7200 }, + [787] = { 66.1, 23.7, 130, 7200 }, + [788] = { 55.6, 20.1, 130, 7200 }, + [789] = { 33.1, 17.7, 130, 7200 }, + [790] = { 53.3, 12.8, 130, 7200 }, + [791] = { 53.2, 12.8, 130, 7200 }, + [792] = { 67.7, 83.2, 139, 900 }, + [793] = { 33.8, 75.3, 139, 900 }, + [794] = { 45.4, 65.8, 139, 900 }, + [795] = { 81.5, 59.7, 139, 900 }, + [796] = { 80.5, 57.9, 139, 900 }, + [797] = { 39.3, 51.3, 139, 900 }, + [798] = { 40.9, 50.4, 139, 900 }, + [799] = { 85.7, 46.1, 139, 900 }, + [800] = { 85.8, 43.8, 139, 900 }, + [801] = { 83.1, 43.2, 139, 900 }, + [802] = { 67.9, 39.4, 139, 900 }, + [803] = { 83.2, 39, 139, 900 }, + [804] = { 87.7, 39, 139, 900 }, + [805] = { 87.8, 39, 139, 900 }, + [806] = { 66, 37.9, 139, 900 }, + [807] = { 43, 37.8, 139, 900 }, + [808] = { 30.6, 27.9, 139, 900 }, + [809] = { 38.7, 80.2, 141, 900 }, + [810] = { 42, 80.1, 141, 900 }, + [811] = { 40, 79.8, 141, 900 }, + [812] = { 38.8, 79, 141, 900 }, + [813] = { 48, 77.8, 141, 900 }, + [814] = { 47.1, 77.6, 141, 900 }, + [815] = { 56.4, 75.5, 141, 900 }, + [816] = { 41.3, 72.5, 141, 900 }, + [817] = { 37.9, 67.1, 141, 900 }, + [818] = { 49.4, 66.7, 141, 900 }, + [819] = { 65.7, 64.8, 141, 900 }, + [820] = { 65.9, 63.7, 141, 900 }, + [821] = { 50, 62.6, 141, 900 }, + [822] = { 57.1, 61.2, 141, 900 }, + [823] = { 69.3, 53.3, 141, 900 }, + [824] = { 68.6, 52.3, 141, 900 }, + [825] = { 55.9, 46, 141, 900 }, + [826] = { 54.6, 44.1, 141, 900 }, + [827] = { 60.9, 42, 141, 900 }, + [828] = { 54.2, 39.3, 141, 900 }, + [829] = { 44.7, 87, 148, 900 }, + [830] = { 44.1, 85, 148, 900 }, + [831] = { 44.3, 84.3, 148, 900 }, + [832] = { 50.4, 73.9, 148, 180 }, + [833] = { 43.1, 58.6, 148, 900 }, + [834] = { 39.6, 53.7, 148, 900 }, + [835] = { 30.2, 47.7, 148, 180 }, + [836] = { 45.9, 37.9, 148, 900 }, + [837] = { 50.9, 34.8, 148, 900 }, + [838] = { 50.5, 34.5, 148, 900 }, + [839] = { 52.4, 33.9, 148, 900 }, + [840] = { 52.7, 33.5, 148, 900 }, + [841] = { 56.5, 27.3, 148, 900 }, + [842] = { 55.3, 26.5, 148, 900 }, + [843] = { 46.7, 62.8, 209, 5400 }, + [844] = { 46.3, 62.5, 209, 5400 }, + [845] = { 46.1, 62, 209, 5400 }, + [846] = { 43.5, 60.6, 209, 5400 }, + [847] = { 43, 60.5, 209, 5400 }, + [848] = { 42.7, 59.9, 209, 5400 }, + [849] = { 64.6, 77.7, 215, 900 }, + [850] = { 44, 77.5, 215, 900 }, + [851] = { 44.4, 77.4, 215, 900 }, + [852] = { 44.3, 77.2, 215, 900 }, + [853] = { 45.2, 76.6, 215, 900 }, + [854] = { 45.1, 76.2, 215, 900 }, + [855] = { 44.1, 75.9, 215, 900 }, + [856] = { 60.1, 75.9, 215, 900 }, + [857] = { 48.3, 72, 215, 900 }, + [858] = { 35.4, 62.3, 215, 900 }, + [859] = { 47.6, 62.2, 215, 900 }, + [860] = { 47.5, 61.7, 215, 900 }, + [861] = { 46.6, 61.4, 215, 900 }, + [862] = { 46.6, 61, 215, 900 }, + [863] = { 46.7, 60.9, 215, 900 }, + [864] = { 48.4, 59.8, 215, 900 }, + [865] = { 48.8, 59.2, 215, 900 }, + [866] = { 48.3, 59.1, 215, 900 }, + [867] = { 45.9, 58.5, 215, 900 }, + [868] = { 45.3, 58.3, 215, 900 }, + [869] = { 45.6, 58.2, 215, 900 }, + [870] = { 45.8, 58.2, 215, 900 }, + [871] = { 46.1, 58.2, 215, 900 }, + [872] = { 45.8, 57.9, 215, 900 }, + [873] = { 47.7, 57.4, 215, 900 }, + [874] = { 47.8, 55.6, 215, 900 }, + [875] = { 47.6, 55.4, 215, 900 }, + [876] = { 31.5, 48.3, 215, 900 }, + [877] = { 53.7, 48.3, 215, 900 }, + [878] = { 59.1, 36.5, 215, 900 }, + [879] = { 59.1, 35.2, 215, 900 }, + [880] = { 41.5, 35, 215, 900 }, + [881] = { 41.4, 34.8, 215, 900 }, + [882] = { 41.7, 34.6, 215, 900 }, + [883] = { 60.7, 34.6, 215, 900 }, + [884] = { 41.5, 34.4, 215, 900 }, + [885] = { 41.8, 34.2, 215, 900 }, + [886] = { 41.7, 34.1, 215, 900 }, + [887] = { 61.8, 31.5, 215, 900 }, + [888] = { 37.3, 30, 215, 900 }, + [889] = { 39, 28.3, 215, 900 }, + [890] = { 40.2, 27.9, 215, 900 }, + [891] = { 40.4, 26.3, 215, 900 }, + [892] = { 38.6, 25.8, 215, 900 }, + [893] = { 59.9, 25.6, 215, 900 }, + [894] = { 45.2, 23.3, 215, 900 }, + [895] = { 45.9, 22.7, 215, 900 }, + [896] = { 45.9, 22.5, 215, 900 }, + [897] = { 39.2, 19.4, 215, 900 }, + [898] = { 40.5, 15.6, 215, 900 }, + [899] = { 71.4, 79.4, 267, 7200 }, + [900] = { 71.4, 79.3, 267, 7200 }, + [901] = { 52.1, 58.8, 267, 7200 }, + [902] = { 52.1, 58.7, 267, 120 }, + [903] = { 52.1, 58.7, 267, 7200 }, + [904] = { 51.1, 58.3, 267, 7200 }, + [905] = { 51.2, 58.3, 267, 7200 }, + [906] = { 51.1, 58.2, 267, 7200 }, + [907] = { 48.6, 57.2, 267, 7200 }, + [908] = { 48.6, 57.1, 267, 7200 }, + [909] = { 51.1, 57, 267, 7200 }, + [910] = { 48.8, 55.4, 267, 7200 }, + [911] = { 48.9, 55.4, 267, 7200 }, + [912] = { 48.9, 55.3, 267, 7200 }, + [913] = { 48.8, 55.3, 267, 7200 }, + [914] = { 42.5, 51.1, 267, 300 }, + [915] = { 14.6, 47.9, 267, 300 }, + [916] = { 37, 44.5, 267, 7200 }, + [917] = { 8.1, 40.7, 267, 7200 }, + [918] = { 36.9, 39.5, 267, 7200 }, + [919] = { 33, 34.6, 267, 7200 }, + [920] = { 33.1, 34.6, 267, 7200 }, + [921] = { 33.1, 34.5, 267, 7200 }, + [922] = { 33, 34.5, 267, 7200 }, + [923] = { 8.9, 26.2, 267, 7200 }, + [924] = { 8.8, 26.1, 267, 7200 }, + [925] = { 8.9, 26.1, 267, 7200 }, + [926] = { 50.7, 20.2, 267, 7200 }, + [927] = { 43.4, 19.7, 267, 7200 }, + [928] = { 8.6, 17.5, 267, 7200 }, + [929] = { 8.6, 17.4, 267, 7200 }, + [930] = { 98.8, 16.5, 267, 7200 }, + [931] = { 59.8, 7.7, 267, 7200 }, + [932] = { 78.3, 6.9, 267, 7200 }, + [933] = { 99.5, 3.3, 267, 7200 }, + [934] = { 89.4, 87, 331, 900 }, + [935] = { 89.3, 86.7, 331, 900 }, + [936] = { 89, 86.6, 331, 900 }, + [937] = { 88.7, 86.4, 331, 900 }, + [938] = { 90.6, 86.4, 331, 900 }, + [939] = { 90, 86.3, 331, 900 }, + [940] = { 90.3, 86.2, 331, 900 }, + [941] = { 90.9, 86.2, 331, 900 }, + [942] = { 88.9, 86.2, 331, 900 }, + [943] = { 89.1, 86.2, 331, 900 }, + [944] = { 90.5, 86.2, 331, 900 }, + [945] = { 89.9, 85.9, 331, 900 }, + [946] = { 90.1, 85.8, 331, 900 }, + [947] = { 89.7, 85.7, 331, 900 }, + [948] = { 89, 85.6, 331, 900 }, + [949] = { 89.3, 85.4, 331, 900 }, + [950] = { 89.8, 85.3, 331, 900 }, + [951] = { 89.2, 85.3, 331, 900 }, + [952] = { 88.5, 85.1, 331, 900 }, + [953] = { 89.4, 85, 331, 900 }, + [954] = { 88.8, 84.9, 331, 900 }, + [955] = { 89, 84.6, 331, 900 }, + [956] = { 88.6, 84.6, 331, 900 }, + [957] = { 54.1, 64.1, 331, 900 }, + [958] = { 56.1, 63.9, 331, 900 }, + [959] = { 56.6, 63.1, 331, 900 }, + [960] = { 54.2, 61.6, 331, 900 }, + [961] = { 74, 61, 331, 900 }, + [962] = { 74.2, 60.8, 331, 900 }, + [963] = { 74.3, 60.5, 331, 900 }, + [964] = { 74, 60.3, 331, 900 }, + [965] = { 74.1, 60.2, 331, 900 }, + [966] = { 18.1, 59.9, 331, 900 }, + [967] = { 50.1, 59.9, 331, 900 }, + [968] = { 73.3, 59.4, 331, 900 }, + [969] = { 73, 59, 331, 900 }, + [970] = { 72.7, 58.8, 331, 900 }, + [971] = { 73.1, 58.8, 331, 900 }, + [972] = { 72.6, 58.7, 331, 900 }, + [973] = { 72.3, 58.6, 331, 900 }, + [974] = { 73, 58.6, 331, 900 }, + [975] = { 72.6, 58.4, 331, 900 }, + [976] = { 72.4, 58.3, 331, 900 }, + [977] = { 72.8, 58.3, 331, 900 }, + [978] = { 89.8, 58.2, 331, 900 }, + [979] = { 88.8, 58.2, 331, 900 }, + [980] = { 73.1, 58.2, 331, 900 }, + [981] = { 88.6, 58.2, 331, 900 }, + [982] = { 72.6, 58.1, 331, 900 }, + [983] = { 73, 58, 331, 900 }, + [984] = { 89.8, 57.8, 331, 900 }, + [985] = { 72.1, 57.8, 331, 900 }, + [986] = { 72.5, 57.7, 331, 900 }, + [987] = { 89.3, 57.7, 331, 900 }, + [988] = { 88.7, 57.7, 331, 900 }, + [989] = { 73, 57.6, 331, 900 }, + [990] = { 73.3, 57.6, 331, 900 }, + [991] = { 72.2, 57.5, 331, 900 }, + [992] = { 89.5, 57.4, 331, 900 }, + [993] = { 72.1, 57.2, 331, 900 }, + [994] = { 72.4, 57, 331, 900 }, + [995] = { 73, 56.9, 331, 900 }, + [996] = { 73.2, 56.9, 331, 900 }, + [997] = { 66.7, 56.8, 331, 900 }, + [998] = { 72.3, 56.7, 331, 900 }, + [999] = { 73, 56.6, 331, 900 }, + [1000] = { 72.1, 56.6, 331, 900 }, + [1001] = { 72.7, 56.6, 331, 900 }, + [1002] = { 73.3, 56.1, 331, 900 }, + [1003] = { 73, 55.9, 331, 900 }, + [1004] = { 72.8, 55.7, 331, 900 }, + [1005] = { 73.1, 55.6, 331, 900 }, + [1006] = { 91.9, 53.9, 331, 900 }, + [1007] = { 36, 51.6, 331, 900 }, + [1008] = { 81.2, 50.4, 331, 900 }, + [1009] = { 80.7, 49.8, 331, 900 }, + [1010] = { 81.8, 49.3, 331, 900 }, + [1011] = { 80.7, 48.9, 331, 900 }, + [1012] = { 39.4, 46.8, 331, 900 }, + [1013] = { 36.6, 45.7, 331, 900 }, + [1014] = { 31.4, 45.3, 331, 900 }, + [1015] = { 35.4, 45.3, 331, 900 }, + [1016] = { 78.4, 45, 331, 900 }, + [1017] = { 85.2, 44.8, 331, 900 }, + [1018] = { 30.9, 43.2, 331, 900 }, + [1019] = { 32.5, 42.9, 331, 900 }, + [1020] = { 86.7, 42.8, 331, 900 }, + [1021] = { 34.1, 38.8, 331, 900 }, + [1022] = { 94.3, 37.2, 331, 900 }, + [1023] = { 93.8, 37.1, 331, 900 }, + [1024] = { 35.8, 36.7, 331, 900 }, + [1025] = { 39.7, 36.4, 331, 900 }, + [1026] = { 40.4, 34.6, 331, 900 }, + [1027] = { 11.9, 34.4, 331, 900 }, + [1028] = { 42.4, 34.3, 331, 900 }, + [1029] = { 42.4, 34.2, 331, 900 }, + [1030] = { 37.8, 34.1, 331, 900 }, + [1031] = { 41.7, 33.7, 331, 900 }, + [1032] = { 40.8, 32.7, 331, 900 }, + [1033] = { 41.3, 32.4, 331, 900 }, + [1034] = { 40.9, 31.6, 331, 900 }, + [1035] = { 14.8, 31.3, 331, 900 }, + [1036] = { 61.1, 67.7, 357, 900 }, + [1037] = { 61.1, 67.6, 357, 900 }, + [1038] = { 77.3, 56.8, 357, 900 }, + [1039] = { 73.1, 56.7, 357, 900 }, + [1040] = { 72.3, 56.7, 357, 900 }, + [1041] = { 75.5, 56.4, 357, 900 }, + [1042] = { 77.3, 56.4, 357, 900 }, + [1043] = { 73.2, 56.3, 357, 900 }, + [1044] = { 69.1, 55.8, 357, 900 }, + [1045] = { 75.5, 55, 357, 900 }, + [1046] = { 74.4, 54.8, 357, 900 }, + [1047] = { 68.6, 54.3, 357, 900 }, + [1048] = { 75.6, 54.2, 357, 900 }, + [1049] = { 71.6, 54.2, 357, 900 }, + [1050] = { 76.9, 54.1, 357, 900 }, + [1051] = { 76.2, 54.1, 357, 900 }, + [1052] = { 75.7, 53.3, 357, 900 }, + [1053] = { 70.5, 53.3, 357, 900 }, + [1054] = { 65.7, 52.6, 357, 900 }, + [1055] = { 65.1, 52.6, 357, 900 }, + [1056] = { 65.3, 51.9, 357, 900 }, + [1057] = { 66.4, 51.6, 357, 900 }, + [1058] = { 66, 51.6, 357, 900 }, + [1059] = { 69.9, 50.9, 357, 900 }, + [1060] = { 58.5, 48.2, 357, 900 }, + [1061] = { 76.7, 48.2, 357, 900 }, + [1062] = { 74.9, 45.3, 357, 900 }, + [1063] = { 74.7, 45.1, 357, 900 }, + [1064] = { 74.7, 44.9, 357, 900 }, + [1065] = { 30.5, 44.7, 357, 900 }, + [1066] = { 57.1, 44.2, 357, 900 }, + [1067] = { 44.9, 43.4, 357, 900 }, + [1068] = { 74.5, 42.8, 357, 900 }, + [1069] = { 76, 42.5, 357, 900 }, + [1070] = { 76.1, 42.4, 357, 900 }, + [1071] = { 75.9, 42.1, 357, 900 }, + [1072] = { 66.6, 39.3, 357, 180 }, + [1073] = { 72.7, 39.2, 357, 900 }, + [1074] = { 66.9, 39.2, 357, 180 }, + [1075] = { 66.8, 39.1, 357, 180 }, + [1076] = { 69.6, 38.9, 357, 900 }, + [1077] = { 69.7, 38.8, 357, 900 }, + [1078] = { 69.5, 38.6, 357, 900 }, + [1079] = { 66.6, 38.3, 357, 180 }, + [1080] = { 72.2, 36.6, 357, 900 }, + [1081] = { 80.9, 35.1, 357, 900 }, + [1082] = { 75.3, 29.7, 357, 900 }, + [1083] = { 74.5, 27.9, 357, 900 }, + [1084] = { 45.8, 16.5, 357, 900 }, + [1085] = { 43.5, 0.9, 357, 900 }, + [1086] = { 42.5, 0.9, 357, 900 }, + [1087] = { 39.5, 98.9, 361, 900 }, + [1088] = { 41.5, 98.6, 361, 900 }, + [1089] = { 41.5, 98.4, 361, 900 }, + [1090] = { 40.8, 98, 361, 900 }, + [1091] = { 39.9, 97, 361, 900 }, + [1092] = { 40.5, 96.6, 361, 900 }, + [1093] = { 40, 95.9, 361, 900 }, + [1094] = { 48.3, 93.9, 361, 180 }, + [1095] = { 49.1, 91.5, 361, 180 }, + [1096] = { 48.3, 91.4, 361, 180 }, + [1097] = { 48.3, 89.4, 361, 180 }, + [1098] = { 34.8, 52.8, 361, 180 }, + [1099] = { 36.4, 44.3, 361, 180 }, + [1100] = { 36.2, 44.2, 361, 180 }, + [1101] = { 62.7, 10, 361, 180 }, + [1102] = { 64.8, 8.1, 361, 180 }, + [1103] = { 62.7, 7.7, 361, 180 }, + [1104] = { 61.4, 7.4, 361, 180 }, + [1105] = { 77.8, 77.3, 400, 180 }, + [1106] = { 67.7, 63.9, 400, 180 }, + [1107] = { 46.4, 57.6, 400, 180 }, + [1108] = { 44.1, 57.5, 400, 180 }, + [1109] = { 46.9, 56, 400, 180 }, + [1110] = { 64.4, 54, 400, 180 }, + [1111] = { 46.2, 52.9, 400, 180 }, + [1112] = { 46.1, 51.8, 400, 180 }, + [1113] = { 44.5, 51.5, 400, 180 }, + [1114] = { 45.9, 51.2, 400, 180 }, + [1115] = { 46, 51.1, 400, 180 }, + [1116] = { 53.9, 43, 400, 180 }, + [1117] = { 45.4, 42.3, 400, 180 }, + [1118] = { 39.3, 41.8, 400, 180 }, + [1119] = { 46, 41.7, 400, 180 }, + [1120] = { 39, 41.3, 400, 180 }, + [1121] = { 39.1, 41.2, 400, 180 }, + [1122] = { 38.7, 41.1, 400, 180 }, + [1123] = { 42.2, 40.7, 400, 180 }, + [1124] = { 48.4, 40.7, 400, 180 }, + [1125] = { 43.9, 40.6, 400, 180 }, + [1126] = { 34.1, 39.9, 400, 180 }, + [1127] = { 41.9, 38.9, 400, 180 }, + [1128] = { 45, 38.7, 400, 180 }, + [1129] = { 43.1, 37.4, 400, 180 }, + [1130] = { 41.8, 37.2, 400, 180 }, + [1131] = { 39.4, 36.8, 400, 180 }, + [1132] = { 41.5, 36.2, 400, 180 }, + [1133] = { 40, 33.7, 400, 180 }, + [1134] = { 21.4, 32.4, 400, 180 }, + [1135] = { 37.4, 32.3, 400, 180 }, + [1136] = { 33.2, 27.5, 400, 180 }, + [1137] = { 32.2, 22.4, 400, 180 }, + [1138] = { 17.8, 21.9, 400, 180 }, + [1139] = { 40.4, 95.4, 405, 900 }, + [1140] = { 38.9, 95.4, 405, 900 }, + [1141] = { 40.1, 93.8, 405, 900 }, + [1142] = { 38.9, 93.7, 405, 900 }, + [1143] = { 40.2, 91.7, 405, 900 }, + [1144] = { 34.6, 86.9, 405, 900 }, + [1145] = { 66.7, 79.6, 405, 900 }, + [1146] = { 72.2, 78, 405, 900 }, + [1147] = { 69.5, 78, 405, 900 }, + [1148] = { 70.8, 74.7, 405, 900 }, + [1149] = { 73.1, 73.2, 405, 900 }, + [1150] = { 23.3, 72.6, 405, 900 }, + [1151] = { 75.2, 68.3, 405, 900 }, + [1152] = { 55.1, 56.6, 405, 900 }, + [1153] = { 55.5, 56.2, 405, 900 }, + [1154] = { 55.3, 56, 405, 900 }, + [1155] = { 34, 54.4, 405, 900 }, + [1156] = { 71.4, 50.4, 405, 900 }, + [1157] = { 74, 49.7, 405, 900 }, + [1158] = { 74.3, 46.7, 405, 900 }, + [1159] = { 70.3, 43.5, 405, 900 }, + [1160] = { 53.2, 32.2, 405, 900 }, + [1161] = { 52.6, 29.2, 405, 900 }, + [1162] = { 53, 29.2, 405, 900 }, + [1163] = { 52.5, 28.9, 405, 900 }, + [1164] = { 53.1, 28.8, 405, 900 }, + [1165] = { 52.8, 28.5, 405, 900 }, + [1166] = { 68.5, 9, 405, 900 }, + [1167] = { 72.2, 92.7, 406, 900 }, + [1168] = { 75.4, 92.6, 406, 900 }, + [1169] = { 71.4, 90.6, 406, 900 }, + [1170] = { 69.5, 90.3, 406, 900 }, + [1171] = { 71.1, 90.2, 406, 900 }, + [1172] = { 78.5, 84.5, 406, 900 }, + [1173] = { 71.6, 83.2, 406, 900 }, + [1174] = { 71.4, 82.9, 406, 900 }, + [1175] = { 75.3, 82.9, 406, 900 }, + [1176] = { 71.5, 82.9, 406, 900 }, + [1177] = { 74.6, 82.5, 406, 900 }, + [1178] = { 71.3, 82.5, 406, 900 }, + [1179] = { 46.4, 81.3, 406, 900 }, + [1180] = { 59.9, 67.6, 406, 900 }, + [1181] = { 49.9, 65.4, 406, 900 }, + [1182] = { 50.2, 63.6, 406, 900 }, + [1183] = { 50.3, 63.3, 406, 900 }, + [1184] = { 50.4, 63.2, 406, 900 }, + [1185] = { 49, 60.7, 406, 900 }, + [1186] = { 75.6, 50.2, 406, 900 }, + [1187] = { 54.7, 26.7, 406, 900 }, + [1188] = { 36.8, 77.1, 440, 900 }, + [1189] = { 40.8, 57, 440, 900 }, + [1190] = { 40.4, 54.2, 440, 900 }, + [1191] = { 40.4, 54.1, 440, 900 }, + [1192] = { 73.3, 47.3, 440, 900 }, + [1193] = { 71.3, 45.9, 440, 900 }, + [1194] = { 72.8, 45.3, 440, 900 }, + [1195] = { 72.3, 44.2, 440, 900 }, + [1196] = { 70.9, 43.1, 440, 900 }, + [1197] = { 56.2, 94.6, 491, 3600 }, + [1198] = { 58.7, 92.3, 491, 3600 }, + [1199] = { 6.6, 57.6, 491, 3600 }, + [1200] = { 85.2, 54.1, 491, 3600 }, + [1201] = { 62.7, 51.5, 491, 3600 }, + [1202] = { 82.2, 49.3, 491, 3600 }, + [1203] = { 69.9, 48.7, 491, 3600 }, + [1204] = { 87.6, 48.4, 491, 3600 }, + [1205] = { 88.1, 44.3, 491, 3600 }, + [1206] = { 79, 43.3, 491, 3600 }, + [1207] = { 18.4, 43.3, 491, 3600 }, + [1208] = { 88.7, 41.6, 491, 3600 }, + [1209] = { 70.3, 41.3, 491, 3600 }, + [1210] = { 19.1, 41.1, 491, 3600 }, + [1211] = { 88.7, 39.6, 491, 3600 }, + [1212] = { 68.7, 39.2, 491, 3600 }, + [1213] = { 87.6, 38.9, 491, 3600 }, + [1214] = { 36.8, 32.2, 491, 3600 }, + [1215] = { 77.6, 32, 491, 3600 }, + [1216] = { 56, 30, 491, 3600 }, + [1217] = { 73.3, 30, 491, 3600 }, + [1218] = { 39.8, 43, 618, 900 }, + [1219] = { 41.5, 42.7, 618, 900 }, + [1220] = { 61.8, 38.6, 618, 900 }, + [1221] = { 66.8, 37.1, 618, 900 }, + [1222] = { 68.2, 37, 618, 900 }, + [1223] = { 33.1, 36.9, 618, 900 }, + [1224] = { 62.4, 36.5, 618, 900 }, + [1225] = { 24.9, 36.1, 618, 180 }, + [1226] = { 66.6, 35.8, 618, 900 }, + [1227] = { 67.4, 35.6, 618, 900 }, + [1228] = { 65.5, 72, 718, 3600 }, + [1229] = { 88, 65.7, 718, 3600 }, + [1230] = { 87.6, 63.9, 718, 3600 }, + [1231] = { 64, 56.4, 718, 3600 }, + [1232] = { 71.9, 46.3, 718, 3600 }, + [1233] = { 73.1, 45.5, 718, 3600 }, + [1234] = { 32.1, 44.8, 718, 3600 }, + [1235] = { 94.3, 41.8, 718, 3600 }, + [1236] = { 70.2, 36.3, 718, 3600 }, + [1237] = { 70.4, 36.3, 718, 3600 }, + [1238] = { 89.1, 29.4, 718, 3600 }, + [1239] = { 51.6, 22.7, 718, 3600 }, + [1240] = { 13.8, 52.9, 719, 7200 }, + [1241] = { 31.9, 62.9, 722, 5400 }, + [1242] = { 29.8, 61, 722, 5400 }, + [1243] = { 41.1, 60.7, 722, 5400 }, + [1244] = { 39.5, 60.2, 722, 5400 }, + [1245] = { 41.8, 57.9, 722, 5400 }, + [1246] = { 41.7, 55, 722, 5400 }, + [1247] = { 43.4, 54.7, 722, 5400 }, + [1248] = { 34.7, 54.5, 722, 5400 }, + [1249] = { 43.7, 49, 722, 5400 }, + [1250] = { 42.9, 48.1, 722, 5400 }, + [1251] = { 35.9, 46.4, 722, 5400 }, + [1252] = { 27, 45.2, 722, 5400 }, + [1253] = { 24.9, 43.4, 722, 5400 }, + [1254] = { 70, 42.4, 722, 5400 }, + [1255] = { 24.1, 41.8, 722, 5400 }, + [1256] = { 31.1, 41.3, 722, 5400 }, + [1257] = { 64.9, 38.6, 722, 5400 }, + [1258] = { 39.2, 38.6, 722, 5400 }, + [1259] = { 35.7, 38, 722, 5400 }, + [1260] = { 71.4, 37.9, 722, 5400 }, + [1261] = { 68.5, 31.2, 722, 5400 }, + [1262] = { 44.2, 28.3, 722, 5400 }, + [1263] = { 46.8, 26.1, 722, 5400 }, + [1264] = { 47.7, 23.7, 722, 5400 }, + [1265] = { 46, 23.6, 722, 5400 }, + [1266] = { 30.7, 20.3, 722, 5400 }, + [1267] = { 68.8, 26.2, 1176, 7200 }, + [1268] = { 44, 15.5, 1176, 7200 }, + [1269] = { 52, 65.7, 1337, 900 }, + [1270] = { 57.2, 60.6, 1337, 900 }, + [1271] = { 45, 55.7, 1337, 900 }, + [1272] = { 38.9, 54.1, 1337, 900 }, + [1273] = { 47.9, 49.9, 1337, 900 }, + [1274] = { 62, 49.3, 1337, 900 }, + [1275] = { 40.5, 48.5, 1337, 900 }, + [1276] = { 34.8, 44.9, 1337, 900 }, + [1277] = { 28.3, 44.7, 1337, 900 }, + [1278] = { 57.1, 43.2, 1337, 900 }, + [1279] = { 48, 43, 1337, 900 }, + [1280] = { 34.4, 42.5, 1337, 900 }, + [1281] = { 39.6, 41.9, 1337, 900 }, + [1282] = { 52.7, 38.3, 1337, 900 }, + [1283] = { 39.7, 37.6, 1337, 900 }, + [1284] = { 34.6, 37.6, 1337, 900 }, + [1285] = { 53.2, 33.8, 1337, 900 }, + [1286] = { 60.6, 32.1, 1337, 900 }, + [1287] = { 48.5, 30.1, 1337, 900 }, + [1288] = { 69.4, 28.1, 1337, 900 }, + [1289] = { 10.6, 19.7, 1337, 7200 }, + [1290] = { 58.7, 94.4, 1337, 3600 }, + [1291] = { 45.1, 75.7, 1337, 3600 }, + [1292] = { 42.5, 75.7, 1337, 3600 }, + [1293] = { 73.2, 75.3, 1337, 3600 }, + [1294] = { 71.2, 75.1, 1337, 3600 }, + [1295] = { 74.3, 75, 1337, 3600 }, + [1296] = { 31.6, 70.9, 1337, 3600 }, + [1297] = { 73.1, 70.4, 1337, 3600 }, + [1298] = { 71.3, 70.2, 1337, 3600 }, + [1299] = { 48.1, 69.8, 1337, 3600 }, + [1300] = { 75.9, 69.8, 1337, 3600 }, + [1301] = { 49.2, 61.5, 1337, 3600 }, + [1302] = { 31.5, 60.8, 1337, 3600 }, + [1303] = { 28.4, 58.1, 1337, 3600 }, + [1304] = { 41.9, 57.8, 1337, 3600 }, + [1305] = { 46, 53.2, 1337, 3600 }, + [1306] = { 35.2, 51.2, 1337, 3600 }, + [1307] = { 49.4, 50.2, 1337, 3600 }, + [1308] = { 37.1, 49.2, 1337, 3600 }, + [1309] = { 34.5, 48.6, 1337, 3600 }, + [1310] = { 32.3, 45.8, 1337, 3600 }, + [1311] = { 34, 36.9, 1337, 3600 }, + [1312] = { 41, 36.2, 1337, 3600 }, + [1313] = { 26.6, 33.4, 1337, 3600 }, + [1314] = { 48.2, 30.5, 1337, 3600 }, + [1315] = { 47.4, 29.8, 1337, 3600 }, + [1316] = { 30.5, 29.8, 1337, 3600 }, + [1317] = { 36.7, 29.2, 1337, 3600 }, + [1318] = { 33.2, 25.9, 1337, 3600 }, + [1319] = { 40.9, 88.8, 1377, 900 }, + [1320] = { 50.7, 69.3, 1377, 900 }, + [1321] = { 33.1, 52.5, 1377, 900 }, + [1322] = { 50.9, 38.4, 1377, 900 }, + [1323] = { 62.4, 45, 1497, 900 }, + [1324] = { 78.6, 52.6, 1519, 900 }, + [1325] = { 78.5, 52.5, 1519, 900 }, + [1326] = { 72.7, 95.2, 1537, 900 }, + [1327] = { 73.5, 94.1, 1537, 900 }, + [1328] = { 67.9, 92.7, 1537, 900 }, + [1329] = { 70.8, 92, 1537, 900 }, + [1330] = { 71.7, 90.9, 1537, 900 }, + [1331] = { 56.3, 88.4, 1537, 900 }, + [1332] = { 68.2, 87.5, 1537, 900 }, + [1333] = { 72.8, 86.7, 1537, 900 }, + [1334] = { 46.7, 86.4, 1537, 900 }, + [1335] = { 62.3, 86.1, 1537, 900 }, + [1336] = { 69.3, 86.1, 1537, 900 }, + [1337] = { 51, 85.8, 1537, 900 }, + [1338] = { 38.6, 85.3, 1537, 900 }, + [1339] = { 43.1, 83.8, 1537, 900 }, + [1340] = { 32.6, 81, 1537, 900 }, + [1341] = { 46.4, 79.7, 1537, 900 }, + [1342] = { 43.3, 79.7, 1537, 900 }, + [1343] = { 49.9, 79.5, 1537, 900 }, + [1344] = { 41.5, 78.4, 1537, 900 }, + [1345] = { 29.7, 78, 1537, 900 }, + [1346] = { 56.3, 76.7, 1537, 900 }, + [1347] = { 38, 76.4, 1537, 900 }, + [1348] = { 70.9, 74.2, 1537, 900 }, + [1349] = { 39.5, 72.3, 1537, 900 }, + [1350] = { 38.3, 70.6, 1537, 900 }, + [1351] = { 35.5, 69.2, 1537, 900 }, + [1352] = { 23, 65.8, 1537, 900 }, + [1353] = { 65, 64.9, 1537, 900 }, + [1354] = { 36.3, 63.6, 1537, 900 }, + [1355] = { 37.8, 62.1, 1537, 900 }, + [1356] = { 21.5, 61, 1537, 900 }, + [1357] = { 43.3, 59.5, 1537, 900 }, + [1358] = { 44.3, 59.5, 1537, 900 }, + [1359] = { 47.8, 59.4, 1537, 900 }, + [1360] = { 30.6, 59.3, 1537, 900 }, + [1361] = { 33.7, 58.8, 1537, 900 }, + [1362] = { 53.4, 57.1, 1537, 900 }, + [1363] = { 35, 57, 1537, 900 }, + [1364] = { 66.4, 56.4, 1537, 900 }, + [1365] = { 25.6, 54.9, 1537, 900 }, + [1366] = { 74.2, 54.8, 1537, 900 }, + [1367] = { 65.7, 54.7, 1537, 900 }, + [1368] = { 29.5, 54.7, 1537, 900 }, + [1369] = { 21, 54.6, 1537, 900 }, + [1370] = { 36, 54.5, 1537, 900 }, + [1371] = { 37.1, 53.1, 1537, 900 }, + [1372] = { 28.3, 52.9, 1537, 900 }, + [1373] = { 74.4, 52.8, 1537, 900 }, + [1374] = { 56.4, 52.6, 1537, 900 }, + [1375] = { 72.4, 51.3, 1537, 900 }, + [1376] = { 45.2, 50.2, 1537, 900 }, + [1377] = { 32.9, 49.7, 1537, 900 }, + [1378] = { 37.7, 49.6, 1537, 900 }, + [1379] = { 24.8, 49.4, 1537, 900 }, + [1380] = { 72.6, 49.1, 1537, 900 }, + [1381] = { 20.6, 48.8, 1537, 900 }, + [1382] = { 74.9, 48.4, 1537, 900 }, + [1383] = { 38, 48.3, 1537, 900 }, + [1384] = { 44.2, 48.2, 1537, 900 }, + [1385] = { 58.7, 47.9, 1537, 900 }, + [1386] = { 34.5, 47.6, 1537, 900 }, + [1387] = { 31.7, 47.6, 1537, 900 }, + [1388] = { 75.1, 46.6, 1537, 900 }, + [1389] = { 40.1, 46, 1537, 900 }, + [1390] = { 33.4, 45.5, 1537, 900 }, + [1391] = { 25.1, 45.3, 1537, 900 }, + [1392] = { 19.8, 45.3, 1537, 900 }, + [1393] = { 38.7, 45, 1537, 900 }, + [1394] = { 58.4, 44.3, 1537, 900 }, + [1395] = { 66.7, 43.1, 1537, 900 }, + [1396] = { 67.7, 42, 1537, 900 }, + [1397] = { 25.3, 40.8, 1537, 900 }, + [1398] = { 20.4, 40.3, 1537, 900 }, + [1399] = { 57.9, 38.2, 1537, 900 }, + [1400] = { 21.1, 37, 1537, 900 }, + [1401] = { 25.7, 35.6, 1537, 900 }, + [1402] = { 42.4, 33.8, 1537, 900 }, + [1403] = { 21.7, 32.9, 1537, 900 }, + [1404] = { 55.5, 31.9, 1537, 900 }, + [1405] = { 28.9, 31.1, 1537, 900 }, + [1406] = { 44.6, 30.9, 1537, 900 }, + [1407] = { 51.8, 30.5, 1537, 900 }, + [1408] = { 74.4, 30, 1537, 900 }, + [1409] = { 48, 29.3, 1537, 900 }, + [1410] = { 73.7, 27.6, 1537, 900 }, + [1411] = { 23.4, 26.2, 1537, 900 }, + [1412] = { 69.2, 24.4, 1537, 900 }, + [1413] = { 67.6, 24.1, 1537, 900 }, + [1414] = { 20.3, 24, 1537, 900 }, + [1415] = { 70.6, 23.5, 1537, 900 }, + [1416] = { 66.2, 22.7, 1537, 900 }, + [1417] = { 65.5, 20.4, 1537, 900 }, + [1418] = { 65.7, 18, 1537, 900 }, + [1419] = { 66.5, 16.1, 1537, 900 }, + [1420] = { 38.9, 14.1, 1537, 900 }, + [1421] = { 26.9, 13.2, 1537, 900 }, + [1422] = { 40.9, 12.6, 1537, 900 }, + [1423] = { 50.5, 12.4, 1537, 900 }, + [1424] = { 26.4, 12.3, 1537, 900 }, + [1425] = { 57.7, 12, 1537, 900 }, + [1426] = { 38.4, 11.4, 1537, 900 }, + [1427] = { 28.4, 11.4, 1537, 900 }, + [1428] = { 53.2, 11.2, 1537, 900 }, + [1429] = { 24, 11, 1537, 900 }, + [1430] = { 64.4, 10.9, 1537, 900 }, + [1431] = { 25.5, 10.8, 1537, 900 }, + [1432] = { 27.9, 10.4, 1537, 900 }, + [1433] = { 55.3, 10.4, 1537, 900 }, + [1434] = { 43.3, 10.2, 1537, 900 }, + [1435] = { 63, 9.3, 1537, 900 }, + [1436] = { 27.1, 8.9, 1537, 900 }, + [1437] = { 47.3, 8.8, 1537, 900 }, + [1438] = { 37.6, 8.4, 1537, 900 }, + [1439] = { 24.3, 8.2, 1537, 900 }, + [1440] = { 51.8, 7.9, 1537, 900 }, + [1441] = { 27.5, 6.7, 1537, 900 }, + [1442] = { 25.6, 6.6, 1537, 900 }, + [1443] = { 32.9, 6.3, 1537, 900 }, + [1444] = { 22.2, 6.1, 1537, 900 }, + [1445] = { 22.6, 5.4, 1537, 900 }, + [1446] = { 36.7, 4.8, 1537, 900 }, + [1447] = { 24, 3.7, 1537, 900 }, + [1448] = { 24.6, 3.1, 1537, 900 }, + [1449] = { 26.7, 2.9, 1537, 900 }, + [1450] = { 57.7, 94.8, 1581, 3600 }, + [1451] = { 49.3, 94.7, 1581, 3600 }, + [1452] = { 55.4, 94, 1581, 3600 }, + [1453] = { 51.9, 90.9, 1581, 3600 }, + [1454] = { 16, 89.2, 1581, 3600 }, + [1455] = { 45.2, 85.6, 1581, 3600 }, + [1456] = { 51.7, 85.4, 1581, 3600 }, + [1457] = { 46.2, 75.9, 1581, 3600 }, + [1458] = { 76.1, 71.6, 1581, 3600 }, + [1459] = { 18.5, 34.9, 1581, 3600 }, + [1460] = { 48.4, 92.5, 1637, 900 }, + [1461] = { 50.9, 90.6, 1637, 900 }, + [1462] = { 52.2, 90.4, 1637, 900 }, + [1463] = { 53.5, 90.1, 1637, 900 }, + [1464] = { 49.4, 89.3, 1637, 900 }, + [1465] = { 53.2, 87.2, 1637, 900 }, + [1466] = { 50, 83.3, 1637, 900 }, + [1467] = { 53.7, 81.6, 1637, 900 }, + [1468] = { 47.7, 80.9, 1637, 900 }, + [1469] = { 53.3, 80.5, 1637, 900 }, + [1470] = { 49.7, 78.7, 1637, 900 }, + [1471] = { 46, 77.5, 1637, 900 }, + [1472] = { 50.2, 76.8, 1637, 900 }, + [1473] = { 48.1, 76.8, 1637, 900 }, + [1474] = { 36.1, 76.2, 1637, 900 }, + [1475] = { 51.9, 75.4, 1637, 900 }, + [1476] = { 48.1, 75.2, 1637, 900 }, + [1477] = { 29.8, 74.5, 1637, 900 }, + [1478] = { 43.8, 74, 1637, 900 }, + [1479] = { 53.2, 72.9, 1637, 900 }, + [1480] = { 50.2, 72.5, 1637, 900 }, + [1481] = { 47.3, 71.5, 1637, 900 }, + [1482] = { 29.6, 71.3, 1637, 900 }, + [1483] = { 54.7, 71.1, 1637, 900 }, + [1484] = { 45.2, 70.4, 1637, 900 }, + [1485] = { 48.8, 70.1, 1637, 900 }, + [1486] = { 42.4, 69.4, 1637, 900 }, + [1487] = { 50.4, 69.2, 1637, 900 }, + [1488] = { 44.3, 68.9, 1637, 900 }, + [1489] = { 54.9, 68.2, 1637, 900 }, + [1490] = { 47.8, 68.1, 1637, 900 }, + [1491] = { 48.5, 68, 1637, 900 }, + [1492] = { 54, 67.8, 1637, 900 }, + [1493] = { 49.6, 67.3, 1637, 900 }, + [1494] = { 45.2, 66.2, 1637, 900 }, + [1495] = { 44.9, 65.8, 1637, 900 }, + [1496] = { 47, 65.4, 1637, 900 }, + [1497] = { 46, 65.1, 1637, 900 }, + [1498] = { 48.5, 65, 1637, 900 }, + [1499] = { 16.1, 64, 1637, 900 }, + [1500] = { 46.7, 63.9, 1637, 900 }, + [1501] = { 45.8, 63.2, 1637, 900 }, + [1502] = { 47.3, 63, 1637, 900 }, + [1503] = { 30.2, 62.2, 1637, 900 }, + [1504] = { 15, 61.7, 1637, 900 }, + [1505] = { 47, 60.9, 1637, 900 }, + [1506] = { 37.3, 58.9, 1637, 900 }, + [1507] = { 53.1, 57.8, 1637, 900 }, + [1508] = { 43.1, 57.8, 1637, 900 }, + [1509] = { 56.8, 57.4, 1637, 900 }, + [1510] = { 49.9, 57.1, 1637, 900 }, + [1511] = { 45.2, 56.8, 1637, 900 }, + [1512] = { 46.1, 56.7, 1637, 900 }, + [1513] = { 52.4, 56.4, 1637, 900 }, + [1514] = { 41.2, 56, 1637, 900 }, + [1515] = { 37.7, 55.2, 1637, 900 }, + [1516] = { 60.8, 55.2, 1637, 900 }, + [1517] = { 44.2, 54.8, 1637, 900 }, + [1518] = { 58.2, 54.3, 1637, 900 }, + [1519] = { 46.6, 53.9, 1637, 900 }, + [1520] = { 42.6, 53.2, 1637, 900 }, + [1521] = { 57, 53.2, 1637, 900 }, + [1522] = { 58.1, 52.9, 1637, 900 }, + [1523] = { 49.1, 52.8, 1637, 900 }, + [1524] = { 59, 52.1, 1637, 900 }, + [1525] = { 22.7, 51.9, 1637, 900 }, + [1526] = { 37.1, 51.9, 1637, 900 }, + [1527] = { 62.5, 51.6, 1637, 900 }, + [1528] = { 44.3, 51.3, 1637, 900 }, + [1529] = { 63.8, 51, 1637, 900 }, + [1530] = { 51.1, 50.9, 1637, 900 }, + [1531] = { 58.2, 50.8, 1637, 900 }, + [1532] = { 49.3, 50.6, 1637, 900 }, + [1533] = { 59.4, 50.6, 1637, 900 }, + [1534] = { 43.8, 50.2, 1637, 900 }, + [1535] = { 44.8, 50.1, 1637, 900 }, + [1536] = { 63.7, 49.2, 1637, 900 }, + [1537] = { 62.4, 49, 1637, 900 }, + [1538] = { 48.4, 48.8, 1637, 900 }, + [1539] = { 59, 47.8, 1637, 900 }, + [1540] = { 45.9, 47.7, 1637, 900 }, + [1541] = { 51.6, 47.3, 1637, 900 }, + [1542] = { 47.4, 47.2, 1637, 900 }, + [1543] = { 56.4, 47.1, 1637, 900 }, + [1544] = { 55.5, 46.3, 1637, 900 }, + [1545] = { 63.3, 45.9, 1637, 900 }, + [1546] = { 50.9, 45.9, 1637, 900 }, + [1547] = { 48.4, 45.3, 1637, 900 }, + [1548] = { 61.7, 44.8, 1637, 900 }, + [1549] = { 56.6, 44.8, 1637, 900 }, + [1550] = { 52.9, 44.8, 1637, 900 }, + [1551] = { 63.6, 44.2, 1637, 25 }, + [1552] = { 62.7, 43.7, 1637, 900 }, + [1553] = { 59.9, 43, 1637, 900 }, + [1554] = { 72.6, 43, 1637, 900 }, + [1555] = { 45.6, 42.6, 1637, 900 }, + [1556] = { 74, 41.8, 1637, 900 }, + [1557] = { 45.1, 41.7, 1637, 900 }, + [1558] = { 65.8, 41.4, 1637, 900 }, + [1559] = { 46.2, 41.4, 1637, 900 }, + [1560] = { 55, 41.2, 1637, 900 }, + [1561] = { 52.5, 41.2, 1637, 900 }, + [1562] = { 33.1, 41, 1637, 900 }, + [1563] = { 33.8, 40.9, 1637, 900 }, + [1564] = { 72.5, 40.7, 1637, 900 }, + [1565] = { 62.7, 40.5, 1637, 900 }, + [1566] = { 32.1, 40.5, 1637, 900 }, + [1567] = { 66.9, 40.4, 1637, 900 }, + [1568] = { 34.7, 40.2, 1637, 900 }, + [1569] = { 41.9, 40.1, 1637, 900 }, + [1570] = { 50.3, 39.9, 1637, 900 }, + [1571] = { 31.6, 39.8, 1637, 900 }, + [1572] = { 54.1, 39.8, 1637, 900 }, + [1573] = { 65.1, 39.8, 1637, 900 }, + [1574] = { 77.9, 39.5, 1637, 900 }, + [1575] = { 35.2, 39.4, 1637, 900 }, + [1576] = { 55.7, 38.9, 1637, 900 }, + [1577] = { 79.2, 38.8, 1637, 900 }, + [1578] = { 37.8, 38.6, 1637, 900 }, + [1579] = { 61.8, 38.6, 1637, 900 }, + [1580] = { 39.1, 38.5, 1637, 900 }, + [1581] = { 31.2, 38.4, 1637, 900 }, + [1582] = { 32.4, 38.4, 1637, 900 }, + [1583] = { 52.5, 38.3, 1637, 900 }, + [1584] = { 34, 38.3, 1637, 900 }, + [1585] = { 53.3, 38.2, 1637, 900 }, + [1586] = { 76.9, 38.1, 1637, 900 }, + [1587] = { 38.4, 38, 1637, 900 }, + [1588] = { 55.1, 37.9, 1637, 900 }, + [1589] = { 35.6, 37.8, 1637, 900 }, + [1590] = { 63.4, 37.8, 1637, 900 }, + [1591] = { 64.9, 37.8, 1637, 900 }, + [1592] = { 35.9, 37.8, 1637, 900 }, + [1593] = { 42.7, 37.8, 1637, 900 }, + [1594] = { 36.9, 37.7, 1637, 900 }, + [1595] = { 72.2, 37.7, 1637, 900 }, + [1596] = { 59.7, 37.5, 1637, 900 }, + [1597] = { 31.1, 37.4, 1637, 900 }, + [1598] = { 32.3, 37.1, 1637, 900 }, + [1599] = { 35.6, 37, 1637, 900 }, + [1600] = { 35.9, 37, 1637, 900 }, + [1601] = { 34, 37, 1637, 900 }, + [1602] = { 36.9, 36.9, 1637, 900 }, + [1603] = { 58.4, 36.9, 1637, 900 }, + [1604] = { 59.2, 36.4, 1637, 900 }, + [1605] = { 38.3, 36.3, 1637, 900 }, + [1606] = { 31.4, 35.9, 1637, 900 }, + [1607] = { 67.4, 35.9, 1637, 900 }, + [1608] = { 42.5, 35.9, 1637, 900 }, + [1609] = { 37.6, 35.8, 1637, 900 }, + [1610] = { 38.9, 35.6, 1637, 900 }, + [1611] = { 72.4, 35.6, 1637, 900 }, + [1612] = { 35, 35.5, 1637, 900 }, + [1613] = { 31.9, 35.1, 1637, 900 }, + [1614] = { 34.5, 34.9, 1637, 900 }, + [1615] = { 32.8, 34.4, 1637, 900 }, + [1616] = { 53.4, 34.3, 1637, 900 }, + [1617] = { 33.5, 34.3, 1637, 900 }, + [1618] = { 49.4, 34.2, 1637, 900 }, + [1619] = { 56.3, 34, 1637, 900 }, + [1620] = { 46.9, 34, 1637, 900 }, + [1621] = { 56.2, 33.9, 1637, 900 }, + [1622] = { 40.6, 33.6, 1637, 900 }, + [1623] = { 75, 33, 1637, 900 }, + [1624] = { 55.8, 32.6, 1637, 900 }, + [1625] = { 78.8, 32.1, 1637, 900 }, + [1626] = { 80, 31.9, 1637, 900 }, + [1627] = { 78.5, 31.1, 1637, 900 }, + [1628] = { 80.3, 31, 1637, 900 }, + [1629] = { 80, 30, 1637, 900 }, + [1630] = { 79.4, 29.7, 1637, 900 }, + [1631] = { 73.9, 29.6, 1637, 900 }, + [1632] = { 75.6, 26, 1637, 900 }, + [1633] = { 73.4, 25.6, 1637, 900 }, + [1634] = { 67.9, 24.9, 1637, 900 }, + [1635] = { 76.7, 24.3, 1637, 900 }, + [1636] = { 75.2, 23.7, 1637, 900 }, + [1637] = { 83.1, 23.2, 1637, 900 }, + [1638] = { 72.7, 22.5, 1637, 900 }, + [1639] = { 80.1, 22.2, 1637, 900 }, + [1640] = { 77.6, 20.1, 1637, 900 }, + [1641] = { 81.8, 19.8, 1637, 900 }, + [1642] = { 74.2, 19.4, 1637, 900 }, + [1643] = { 68, 19.1, 1637, 900 }, + [1644] = { 75.7, 18.4, 1637, 900 }, + [1645] = { 73.1, 18.3, 1637, 900 }, + [1646] = { 71, 18.2, 1637, 900 }, + [1647] = { 82.3, 17.8, 1637, 900 }, + [1648] = { 73.1, 15.9, 1637, 900 }, + [1649] = { 75.8, 15.2, 1637, 900 }, + [1650] = { 74.9, 14.3, 1637, 900 }, + [1651] = { 79.1, 14.2, 1637, 900 }, + [1652] = { 76.5, 13.7, 1637, 900 }, + [1653] = { 78.5, 13.5, 1637, 900 }, + [1654] = { 75.6, 12.9, 1637, 900 }, + [1655] = { 79.3, 12.5, 1637, 900 }, + [1656] = { 78.6, 11.7, 1637, 900 }, + [1657] = { 74.8, 10.1, 1637, 900 }, + [1658] = { 78.9, 9.8, 1637, 900 }, + [1659] = { 74.1, 9.6, 1637, 900 }, + [1660] = { 79.8, 9.5, 1637, 900 }, + [1661] = { 75.9, 9.1, 1637, 900 }, + [1662] = { 75.1, 8.6, 1637, 900 }, + [1663] = { 78.8, 7.9, 1637, 900 }, + [1664] = { 76.8, 7.9, 1637, 900 }, + [1665] = { 78.1, 7.2, 1637, 900 }, + [1666] = { 78.9, 6.6, 1637, 900 }, + [1667] = { 76.6, 6.6, 1637, 900 }, + [1668] = { 57.7, 89.1, 1638, 900 }, + [1669] = { 57.1, 88.6, 1638, 900 }, + [1670] = { 58.6, 87.4, 1638, 900 }, + [1671] = { 57.7, 86.6, 1638, 900 }, + [1672] = { 59.1, 85.5, 1638, 900 }, + [1673] = { 58.5, 84.9, 1638, 900 }, + [1674] = { 37.1, 64.6, 1638, 900 }, + [1675] = { 45.5, 56.3, 1638, 900 }, + [1676] = { 51.4, 54.2, 1638, 900 }, + [1677] = { 52, 46.5, 1638, 900 }, + [1678] = { 43.1, 44, 1638, 900 }, + [1679] = { 76, 31.8, 1638, 900 }, + [1680] = { 79.3, 29, 1638, 900 }, + [1681] = { 79.1, 27.8, 1638, 900 }, + [1682] = { 99.8, 96.9, 1657, 900 }, + [1683] = { 50.8, 70.2, 1977, 600 }, + [1684] = { 50, 70.2, 1977, 600 }, + [1685] = { 50, 68.5, 1977, 600 }, + [1686] = { 50.8, 68.4, 1977, 600 }, + [1687] = { 50.8, 66.4, 1977, 600 }, + [1688] = { 50, 66.4, 1977, 600 }, + [1689] = { 50, 64.3, 1977, 600 }, + [1690] = { 50.8, 64.3, 1977, 600 }, + [1691] = { 30, 22.9, 1977, 600 }, + [1692] = { 44.8, 99.3, 2057, 7200 }, + [1693] = { 57.6, 96.6, 2057, 7200 }, + [1694] = { 57.6, 82.2, 2057, 7200 }, + [1695] = { 38, 35.8, 2057, 7200 }, + [1696] = { 56.2, 35.3, 2057, 7200 }, + [1697] = { 37.8, 17.7, 2057, 7200 }, + [1698] = { 56, 17.2, 2057, 7200 }, + [1699] = { 61.1, 15, 2100, 900 }, + [1700] = { 90.8, 90.6, 2557, 180 }, + [1701] = { 92.2, 90.2, 2557, 180 }, + [1702] = { 92, 89.5, 2557, 180 }, + [1703] = { 90.8, 85.3, 2557, 180 }, + [1704] = { 49.6, 88.8, 2597, 60 }, + [1705] = { 46.1, 84.1, 2597, 60 }, + [1706] = { 46.4, 84, 2597, 60 }, + [1707] = { 48.7, 83.8, 2597, 60 }, + [1708] = { 47.2, 83.7, 2597, 60 }, + [1709] = { 48.6, 82.9, 2597, 60 }, + [1710] = { 50.2, 82.4, 2597, 60 }, + [1711] = { 50.8, 81.5, 2597, 60 }, + [1712] = { 48.4, 81, 2597, 60 }, + [1713] = { 50.1, 78.8, 2597, 60 }, + [1714] = { 50.4, 78.8, 2597, 60 }, + [1715] = { 48.3, 77.3, 2597, 60 }, + [1716] = { 48.3, 76.7, 2597, 60 }, + [1717] = { 52.2, 37.3, 2597, 60 }, + [1718] = { 52.1, 37.3, 2597, 60 }, + [1719] = { 52, 36.6, 2597, 60 }, + [1720] = { 68.1, 0.5, 3478, 900 }, + [1721] = { 23.9, 68.1, 4012, 900 }, + [1722] = { 40.8, 39.3, 4012, 900 }, + [1723] = { 39.7, 37.1, 4012, 900 }, + [1724] = { 46, 22.7, 4012, 900 }, + [1725] = { 46.1, 19.8, 4012, 900 }, + [1726] = { 42.8, 19.1, 4012, 900 }, + [1727] = { 24.2, 14.4, 4012, 900 }, + [1728] = { 42.9, 14, 4012, 900 }, + [1729] = { 48.5, 13.9, 4012, 900 }, + [1730] = { 48.6, 13.9, 4012, 900 }, + [1731] = { 21.8, 12.6, 4012, 900 }, + [1732] = { 3.1, 39.7, 5121, 900 }, + [1733] = { 1.9, 35.3, 5121, 900 }, + [1734] = { 0.9, 33.1, 5121, 900 }, + [1735] = { 48.2, 15.2, 5179, 7200 }, + [1736] = { 45.5, 13.8, 5179, 7200 }, + [1737] = { 96.8, 13.5, 5179, 300 }, + [1738] = { 56.5, 11.7, 5179, 7200 }, + [1739] = { 72.4, 10.8, 5179, 300 }, + [1740] = { 91.9, 7.8, 5179, 7200 }, + [1741] = { 66.7, 4.5, 5179, 7200 }, + [1742] = { 91.9, 3.4, 5179, 7200 }, + [1743] = { 45.8, 2.4, 5179, 7200 }, + [1744] = { 45.9, 2.4, 5179, 7200 }, + [1745] = { 49.2, 1.9, 5179, 7200 }, + [1746] = { 49.2, 1.8, 5179, 7200 }, + [1747] = { 44.4, 1.3, 5179, 7200 }, + [1748] = { 43.6, 0.9, 5179, 7200 }, + [1749] = { 43.5, 0.9, 5179, 7200 }, + [1750] = { 16.4, 94.5, 5225, 1200 }, + [1751] = { 76.7, 90.8, 5225, 900 }, + [1752] = { 43.5, 26.1, 5581, 300 }, + [1753] = { 96.3, 13.2, 5581, 7200 }, + [1754] = { 97.4, 7.6, 5581, 7200 }, + [1755] = { 52, 2.1, 5581, 900 }, + [1756] = { 24.8, 97.5, 5602, 900 }, + [1757] = { 19.7, 96.8, 5602, 900 }, + [1758] = { 31.1, 94, 5602, 900 }, + [1759] = { 18, 92, 5602, 900 }, + [1760] = { 18.5, 91.4, 5602, 900 }, + [1761] = { 17.2, 90.9, 5602, 900 }, + [1762] = { 16.6, 90.8, 5602, 900 }, + [1763] = { 17.5, 90.3, 5602, 900 }, + [1764] = { 19, 90.3, 5602, 900 }, + [1765] = { 16.8, 90.2, 5602, 900 }, + [1766] = { 16.2, 89.8, 5602, 900 }, + [1767] = { 15.5, 89.8, 5602, 900 }, + [1768] = { 18.5, 89.6, 5602, 900 }, + [1769] = { 17.5, 89.6, 5602, 900 }, + [1770] = { 16.1, 89.5, 5602, 900 }, + [1771] = { 16.7, 89.5, 5602, 900 }, + [1772] = { 18, 89.1, 5602, 900 }, + [1773] = { 16.7, 89, 5602, 900 }, + [1774] = { 16.1, 89, 5602, 900 }, + [1775] = { 18.1, 88.6, 5602, 900 }, + [1776] = { 18.9, 88.5, 5602, 900 }, + [1777] = { 17.6, 88.2, 5602, 900 }, + [1778] = { 19.8, 88, 5602, 900 }, + [1779] = { 13.6, 87.2, 5602, 7200 }, + [1780] = { 15, 82.8, 5602, 7200 }, + [1781] = { 31.8, 78.2, 5602, 7200 }, + [1782] = { 12.2, 73.4, 5602, 7200 }, + [1783] = { 16.1, 70, 5602, 7200 }, + [1784] = { 16.7, 69.6, 5602, 7200 }, + [1785] = { 16.4, 69.3, 5602, 7200 }, + [1786] = { 17.6, 69.3, 5602, 7200 }, + [1787] = { 16.9, 69.3, 5602, 7200 }, + [1788] = { 16.3, 69.3, 5602, 7200 }, + [1789] = { 17.7, 68.6, 5602, 7200 }, + [1790] = { 15.5, 68.1, 5602, 7200 }, + [1791] = { 16.9, 67.1, 5602, 7200 }, + [1792] = { 16.1, 66.5, 5602, 7200 }, + [1793] = { 11.7, 66.4, 5602, 7200 }, + [1794] = { 16.5, 66.2, 5602, 7200 }, + [1795] = { 18.8, 64.6, 5602, 7200 }, + [1796] = { 26.5, 57.9, 5602, 7200 }, + [1797] = { 17.5, 56.9, 5602, 7200 }, + [1798] = { 36.6, 54.7, 5602, 7200 }, + [1799] = { 17.7, 52.6, 5602, 7200 }, + [1800] = { 5.1, 37, 5602, 7200 }, + [1801] = { 11.5, 36.7, 5602, 7200 }, + [1802] = { 16.1, 34.5, 5602, 7200 }, + [1803] = { 16.9, 32.4, 5602, 7200 }, + [1804] = { 17.9, 27.8, 5602, 7200 }, + [1805] = { 15.7, 23.9, 5602, 7200 }, + [1806] = { 2.3, 5.5, 5602, 7200 }, + [1807] = { 3.7, 5.5, 5602, 7200 }, + [1808] = { 1.7, 3.8, 5602, 7200 }, + [1809] = { 3.4, 3.4, 5602, 7200 }, + [1810] = { 8.2, 2.7, 5602, 7200 }, + [1811] = { 16.7, 0.7, 5602, 7200 }, + [1812] = { 9.3, 0.1, 5602, 7200 }, + }, + }, + [2066] = { + ["coords"] = { + [1] = { 29.8, 57.2, 3, 900 }, + [2] = { 2.9, 48, 3, 900 }, + [3] = { 66, 23, 3, 900 }, + [4] = { 47.7, 53.6, 4, 900 }, + [5] = { 47.4, 53.4, 4, 900 }, + [6] = { 64.5, 47.2, 4, 900 }, + [7] = { 50.5, 14.4, 4, 900 }, + [8] = { 44.1, 12.4, 4, 900 }, + [9] = { 81.3, 80.6, 8, 600 }, + [10] = { 50.1, 49, 8, 600 }, + [11] = { 60.8, 40.6, 10, 3600 }, + [12] = { 48, 76, 11, 7200 }, + [13] = { 48.6, 61.9, 11, 300 }, + [14] = { 53.4, 54.3, 11, 7200 }, + [15] = { 49.3, 46.6, 11, 7200 }, + [16] = { 45.8, 45.3, 11, 7200 }, + [17] = { 45.5, 42.9, 11, 7200 }, + [18] = { 46.4, 79.3, 14, 900 }, + [19] = { 55.7, 73.8, 14, 900 }, + [20] = { 44.6, 50.5, 14, 900 }, + [21] = { 47.3, 49.5, 14, 900 }, + [22] = { 49.2, 48.8, 14, 900 }, + [23] = { 42.8, 39, 14, 900 }, + [24] = { 36.2, 31.3, 15, 900 }, + [25] = { 48.8, 99.2, 17, 180 }, + [26] = { 47.9, 97.8, 17, 180 }, + [27] = { 47, 94.4, 17, 180 }, + [28] = { 46.2, 90.3, 17, 900 }, + [29] = { 54.3, 70.2, 17, 900 }, + [30] = { 44.7, 59, 17, 900 }, + [31] = { 55.8, 46, 17, 900 }, + [32] = { 52.9, 44.7, 17, 900 }, + [33] = { 65.9, 43.8, 17, 900 }, + [34] = { 53.8, 42.9, 17, 900 }, + [35] = { 57, 41, 17, 900 }, + [36] = { 44.5, 37.7, 17, 900 }, + [37] = { 52.9, 36.7, 17, 900 }, + [38] = { 57.2, 30.1, 17, 900 }, + [39] = { 55.5, 27, 17, 900 }, + [40] = { 42.3, 26.8, 17, 900 }, + [41] = { 45.8, 25.6, 17, 900 }, + [42] = { 43.6, 23.6, 17, 900 }, + [43] = { 43.9, 21.4, 17, 900 }, + [44] = { 47.4, 19.3, 17, 900 }, + [45] = { 46.4, 18, 17, 900 }, + [46] = { 47.7, 17.9, 17, 900 }, + [47] = { 39.5, 58.7, 33, 900 }, + [48] = { 24.4, 53.9, 33, 900 }, + [49] = { 34.9, 51.8, 33, 900 }, + [50] = { 44.6, 43.2, 33, 900 }, + [51] = { 46.4, 39, 33, 900 }, + [52] = { 32, 28.5, 33, 900 }, + [53] = { 29.8, 19.3, 33, 900 }, + [54] = { 24, 9.7, 33, 900 }, + [55] = { 25.5, 9.1, 33, 900 }, + [56] = { 37.9, 50.1, 36, 7200 }, + [57] = { 36.2, 83.7, 38, 7200 }, + [58] = { 35.5, 80.7, 38, 7200 }, + [59] = { 24.9, 29.9, 38, 7200 }, + [60] = { 69.3, 22.6, 38, 7200 }, + [61] = { 35.3, 16.9, 38, 7200 }, + [62] = { 58.8, 73, 41, 900 }, + [63] = { 52.9, 60.8, 41, 900 }, + [64] = { 31.8, 83.1, 45, 7200 }, + [65] = { 34, 80.6, 45, 7200 }, + [66] = { 53.2, 74.3, 45, 7200 }, + [67] = { 64.8, 73.2, 45, 7200 }, + [68] = { 63.2, 67.4, 45, 7200 }, + [69] = { 46.1, 47.4, 45, 7200 }, + [70] = { 17.5, 66.2, 46, 300 }, + [71] = { 76.8, 61.9, 46, 7200 }, + [72] = { 57.1, 61.6, 46, 7200 }, + [73] = { 31.1, 61.4, 46, 7200 }, + [74] = { 49.2, 56.4, 46, 7200 }, + [75] = { 91.9, 53.7, 46, 7200 }, + [76] = { 35.9, 48.7, 46, 7200 }, + [77] = { 21.4, 47.2, 46, 7200 }, + [78] = { 88.7, 37.2, 46, 7200 }, + [79] = { 42.9, 37.1, 46, 7200 }, + [80] = { 43.5, 34, 46, 7200 }, + [81] = { 84.3, 27.4, 46, 7200 }, + [82] = { 63.4, 83.1, 47, 7200 }, + [83] = { 49, 70, 47, 7200 }, + [84] = { 48.1, 68.6, 47, 7200 }, + [85] = { 49.9, 68.6, 47, 7200 }, + [86] = { 49, 67.4, 47, 7200 }, + [87] = { 60.6, 65, 47, 7200 }, + [88] = { 71.2, 48.4, 47, 7200 }, + [89] = { 66.2, 44.5, 47, 7200 }, + [90] = { 53.2, 39, 47, 7200 }, + [91] = { 82, 39.3, 51, 900 }, + [92] = { 72.2, 58.5, 139, 900 }, + [93] = { 47.6, 43.1, 139, 900 }, + [94] = { 46.9, 42.4, 139, 900 }, + [95] = { 42.6, 86.4, 148, 900 }, + [96] = { 39.9, 78.3, 148, 900 }, + [97] = { 36.5, 76.6, 148, 900 }, + [98] = { 52.4, 33.4, 148, 900 }, + [99] = { 55, 27.9, 148, 900 }, + [100] = { 56.9, 27.4, 148, 900 }, + [101] = { 57.3, 26.2, 148, 900 }, + [102] = { 57.8, 25.7, 148, 900 }, + [103] = { 42.5, 92.3, 215, 900 }, + [104] = { 64.6, 78.8, 215, 900 }, + [105] = { 45.5, 22.8, 215, 900 }, + [106] = { 72.8, 80.6, 331, 900 }, + [107] = { 69.8, 71.4, 331, 900 }, + [108] = { 62, 73.3, 357, 900 }, + [109] = { 59.6, 68.5, 357, 900 }, + [110] = { 58.4, 67.7, 357, 900 }, + [111] = { 60.7, 66.8, 357, 900 }, + [112] = { 59.4, 64.5, 357, 900 }, + [113] = { 59.9, 63.1, 357, 900 }, + [114] = { 60.9, 56.2, 357, 900 }, + [115] = { 71.5, 56.1, 357, 900 }, + [116] = { 59.8, 49.8, 357, 900 }, + [117] = { 59.9, 46.4, 357, 900 }, + [118] = { 58.4, 45.9, 357, 900 }, + [119] = { 60.3, 45.8, 357, 900 }, + [120] = { 62.6, 45.5, 357, 900 }, + [121] = { 56.1, 45.2, 357, 900 }, + [122] = { 61.4, 44.4, 357, 900 }, + [123] = { 58.6, 44.3, 357, 900 }, + [124] = { 60.9, 44.3, 357, 900 }, + [125] = { 58.5, 44, 357, 900 }, + [126] = { 68.7, 40, 357, 180 }, + [127] = { 69.6, 39.2, 357, 900 }, + [128] = { 66.5, 38.8, 357, 180 }, + [129] = { 72, 37.4, 357, 900 }, + [130] = { 80.2, 35, 357, 900 }, + [131] = { 79.7, 34.9, 357, 900 }, + [132] = { 45.1, 25.4, 357, 900 }, + [133] = { 42.4, 22.1, 357, 900 }, + [134] = { 45.6, 50.6, 400, 180 }, + [135] = { 47.1, 41.5, 400, 180 }, + [136] = { 45.1, 40.3, 400, 180 }, + [137] = { 43, 38.4, 400, 180 }, + [138] = { 34, 38.3, 400, 180 }, + [139] = { 41.2, 37.9, 400, 180 }, + [140] = { 41, 35.1, 400, 180 }, + [141] = { 38.7, 27.1, 400, 180 }, + [142] = { 18.4, 22.7, 400, 180 }, + [143] = { 18.9, 22, 400, 180 }, + [144] = { 73.3, 83.9, 406, 900 }, + [145] = { 40.6, 54.1, 440, 900 }, + [146] = { 40.2, 51.5, 440, 900 }, + [147] = { 65.5, 36.7, 440, 900 }, + [148] = { 52.8, 27.5, 440, 900 }, + [149] = { 22.8, 17, 490, 900 }, + [150] = { 67.1, 35.7, 618, 900 }, + [151] = { 59.5, 43.9, 1176, 7200 }, + [152] = { 43.4, 19.8, 1337, 7200 }, + [153] = { 40, 4.8, 1337, 7200 }, + [154] = { 50.9, 68.7, 1377, 900 }, + [155] = { 39.8, 46.4, 1377, 900 }, + [156] = { 40.6, 44.4, 1377, 900 }, + [157] = { 38, 44.3, 1377, 900 }, + [158] = { 25.2, 36.1, 1377, 900 }, + [159] = { 27, 34.4, 1377, 900 }, + [160] = { 66.8, 21, 1377, 900 }, + [161] = { 81.8, 18.4, 1377, 900 }, + [162] = { 68.4, 16.8, 1377, 900 }, + [163] = { 77.2, 29.3, 1638, 900 }, + [164] = { 61.1, 82.3, 1977, 600 }, + [165] = { 63.3, 79.9, 1977, 600 }, + [166] = { 51.4, 53.7, 1977, 600 }, + [167] = { 40.4, 53.5, 1977, 600 }, + [168] = { 90.4, 87.9, 2557, 180 }, + [169] = { 51.4, 64.7, 2597, 60 }, + [170] = { 29.5, 37.8, 4012, 900 }, + [171] = { 93.8, 92.5, 5581, 300 }, + [172] = { 97.2, 75.4, 5581, 7200 }, + [173] = { 30.6, 94, 5602, 900 }, + [174] = { 17.1, 87.2, 5602, 7200 }, + [175] = { 16.7, 85.6, 5602, 7200 }, + [176] = { 11.3, 59.5, 5602, 7200 }, + [177] = { 34, 55.8, 5602, 7200 }, + [178] = { 16.6, 52.9, 5602, 7200 }, + [179] = { 5.6, 37.4, 5602, 7200 }, + [180] = { 6.1, 26.5, 5602, 300 }, + [181] = { 9.8, 20.6, 5602, 7200 }, + [182] = { 6.6, 14.8, 5602, 7200 }, + [183] = { 3.9, 13.7, 5602, 7200 }, + [184] = { 3.7, 11.9, 5602, 7200 }, + }, + }, + [2068] = { + ["coords"] = { + [1] = { 73.3, 92.1, 47, 180 }, + [2] = { 74.9, 88.4, 47, 180 }, + [3] = { 75.1, 86.1, 47, 180 }, + [4] = { 76.3, 85.6, 47, 180 }, + [5] = { 77.4, 83.3, 47, 180 }, + [6] = { 78.4, 82.3, 47, 180 }, + [7] = { 76.1, 81.7, 47, 180 }, + [8] = { 79.6, 81.6, 47, 180 }, + [9] = { 78.1, 80.8, 47, 180 }, + [10] = { 79.1, 78.9, 47, 180 }, + [11] = { 78.3, 77.7, 47, 180 }, + [12] = { 76, 77.5, 47, 180 }, + [13] = { 78.9, 76.4, 47, 180 }, + [14] = { 77.2, 76.2, 47, 180 }, + [15] = { 78.7, 76, 47, 180 }, + [16] = { 78.5, 75.8, 47, 180 }, + [17] = { 78.3, 75.6, 47, 180 }, + [18] = { 77.3, 75, 47, 180 }, + [19] = { 78.7, 70.6, 47, 180 }, + [20] = { 79.5, 70.3, 47, 180 }, + [21] = { 75.5, 70.2, 47, 180 }, + [22] = { 77.8, 65.5, 47, 180 }, + [23] = { 80, 61.5, 47, 180 }, + [24] = { 80, 59.8, 47, 180 }, + [25] = { 77.9, 58.3, 47, 180 }, + [26] = { 80, 57.3, 47, 180 }, + [27] = { 81.1, 55.3, 47, 180 }, + [28] = { 82.3, 50.7, 47, 180 }, + [29] = { 81.4, 50.5, 47, 180 }, + [30] = { 81.7, 49.3, 47, 180 }, + }, + }, + [2082] = { + ["coords"] = { + [1] = { 52.1, 83.3, 28, 2 }, + }, + }, + [2083] = { + ["coords"] = { + [1] = { 27.3, 69.5, 33, 900 }, + }, + ["fac"] = "AH", + }, + [2084] = { + ["coords"] = { + [1] = { 64.8, 75.3, 11, 2 }, + [2] = { 18.5, 36.8, 5602, 2 }, + }, + }, + [2086] = { + ["coords"] = { + [1] = { 27.1, 82.7, 33, 5 }, + }, + }, + [2087] = { + ["coords"] = { + [1] = { 27.7, 83.1, 33, 5 }, + [2] = { 27.2, 82.7, 33, 5 }, + }, + }, + [2096] = { + ["coords"] = { + [1] = { 53.5, 79.1, 1519, 900 }, + }, + }, + [2098] = { + ["coords"] = { + [1] = { 61.7, 38.3, 1519, 120 }, + [2] = { 49.6, 97.9, 5581, 120 }, + }, + }, + [2099] = { + ["coords"] = { + [1] = { 60.8, 67.6, 1519, 900 }, + }, + }, + [2100] = { + ["coords"] = { + [1] = { 63.9, 67.2, 1519, 900 }, + }, + }, + [2101] = { + ["coords"] = { + [1] = { 60.4, 71.3, 1519, 900 }, + }, + }, + [2102] = { + ["coords"] = { + [1] = { 60.6, 48.7, 1519, 900 }, + }, + }, + [2105] = { + ["coords"] = { + [1] = { 58.1, 60.9, 1519, 900 }, + }, + }, + [2106] = { + ["coords"] = { + [1] = { 48.5, 59.5, 1519, 120 }, + }, + }, + [2108] = { + ["coords"] = { + [1] = { 72, 60, 1519, 900 }, + }, + }, + [2109] = { + ["coords"] = { + [1] = { 70.4, 70.8, 1519, 900 }, + }, + }, + [2110] = { + ["coords"] = { + [1] = { 63.7, 71.9, 1519, 900 }, + [2] = { 44.1, 71.6, 1519, 120 }, + [3] = { 47.8, 63.1, 1519, 120 }, + [4] = { 49.3, 61.2, 1519, 120 }, + [5] = { 61.2, 44.3, 1519, 120 }, + }, + }, + [2111] = { + ["coords"] = { + [1] = { 67.4, 65.3, 1519, 900 }, + [2] = { 49.3, 61.4, 1519, 120 }, + }, + }, + [2112] = { + ["coords"] = { + [1] = { 63.8, 71.9, 1519, 900 }, + [2] = { 61.3, 44.3, 1519, 120 }, + }, + }, + [2113] = { + ["coords"] = { + [1] = { 58.6, 63.9, 1519, 900 }, + }, + }, + [2115] = { + ["coords"] = { + [1] = { 69.4, 62.9, 1519, 900 }, + }, + }, + [2116] = { + ["coords"] = { + [1] = { 67.4, 65.2, 1519, 900 }, + }, + }, + [2117] = { + ["coords"] = { + [1] = { 69.2, 53.5, 1519, 900 }, + }, + }, + [2119] = { + ["coords"] = { + [1] = { 67.5, 65.1, 1519, 900 }, + }, + }, + [2120] = { + ["coords"] = { + [1] = { 68.4, 50.2, 1519, 900 }, + }, + }, + [2122] = { + ["coords"] = { + [1] = { 57.2, 72.9, 1519, 900 }, + }, + }, + [2123] = { + ["coords"] = { + [1] = { 65.8, 69.3, 1519, 900 }, + }, + }, + [2124] = { + ["coords"] = { + [1] = { 46, 73.3, 1519, 120 }, + [2] = { 63.6, 72.1, 1519, 900 }, + [3] = { 44.1, 71.8, 1519, 120 }, + [4] = { 47.8, 63.2, 1519, 120 }, + }, + }, + [2125] = { + ["coords"] = { + [1] = { 69.1, 53.7, 1519, 900 }, + }, + }, + [2127] = { + ["coords"] = { + [1] = { 58.5, 64, 1519, 900 }, + }, + }, + [2129] = { + ["coords"] = { + [1] = { 68.3, 50.3, 1519, 900 }, + }, + }, + [2133] = { + ["coords"] = { + [1] = { 60, 46.9, 1519, 900 }, + }, + }, + [2134] = { + ["coords"] = { + [1] = { 57.1, 72.8, 1519, 900 }, + }, + }, + [2136] = { + ["coords"] = { + [1] = { 69.5, 62.7, 1519, 900 }, + }, + }, + [2138] = { + ["coords"] = { + [1] = { 59.7, 69.5, 1519, 900 }, + }, + }, + [2139] = { + ["coords"] = { + [1] = { 62.9, 69.5, 1519, 900 }, + }, + }, + [2140] = { + ["coords"] = { + [1] = { 59.9, 46.9, 1519, 900 }, + }, + }, + [2141] = { + ["coords"] = { + [1] = { 47.8, 63.2, 1519, 180 }, + }, + }, + [2142] = { + ["coords"] = { + [1] = { 63.8, 72.1, 1519, 900 }, + }, + }, + [2143] = { + ["coords"] = { + [1] = { 69.2, 53.7, 1519, 900 }, + }, + }, + [2145] = { + ["coords"] = { + [1] = { 62.1, 76.1, 1519, 900 }, + }, + }, + [2146] = { + ["coords"] = { + [1] = { 63.9, 72.4, 1519, 900 }, + }, + }, + [2150] = { + ["coords"] = { + [1] = { 70.6, 57.7, 1519, 900 }, + }, + }, + [2152] = { + ["coords"] = { + [1] = { 74.5, 55.3, 1519, 900 }, + }, + }, + [2153] = { + ["coords"] = { + [1] = { 74.2, 56.4, 1519, 900 }, + }, + }, + [2154] = { + ["coords"] = { + [1] = { 72.8, 62.1, 1519, 900 }, + }, + }, + [2155] = { + ["coords"] = { + [1] = { 76, 58.5, 1519, 900 }, + }, + }, + [2156] = { + ["coords"] = { + [1] = { 76.1, 61.3, 1519, 900 }, + }, + }, + [2158] = { + ["coords"] = { + [1] = { 54.3, 57.5, 1519, 900 }, + }, + }, + [2159] = { + ["coords"] = { + [1] = { 56.6, 49.2, 1519, 900 }, + }, + }, + [2160] = { + ["coords"] = { + [1] = { 57.7, 50.1, 1519, 900 }, + }, + }, + [2161] = { + ["coords"] = { + [1] = { 54.3, 81.2, 1519, 900 }, + }, + }, + [2162] = { + ["coords"] = { + [1] = { 52.4, 76.6, 1519, 180 }, + }, + }, + [2163] = { + ["coords"] = { + [1] = { 48, 83, 1519, 180 }, + }, + }, + [2164] = { + ["coords"] = { + [1] = { 42.6, 81.8, 1519, 180 }, + }, + }, + [2165] = { + ["coords"] = { + [1] = { 43, 78.2, 1519, 120 }, + }, + }, + [2166] = { + ["coords"] = { + [1] = { 54.8, 84.9, 1519, 900 }, + }, + }, + [2167] = { + ["coords"] = { + [1] = { 44.5, 87.2, 1519, 180 }, + }, + }, + [2169] = { + ["coords"] = { + [1] = { 50.6, 89.9, 1519, 120 }, + }, + }, + [2173] = { + ["coords"] = { + [1] = { 58.5, 63.9, 1519, 900 }, + }, + }, + [2175] = { + ["coords"] = { + [1] = { 57.4, 61.8, 1519, 900 }, + }, + }, + [2176] = { + ["coords"] = { + [1] = { 55.9, 75.8, 1519, 900 }, + }, + }, + [2177] = { + ["coords"] = { + [1] = { 49.6, 61.1, 1519, 120 }, + }, + }, + [2181] = { + ["coords"] = { + [1] = { 55.7, 75.9, 1519, 900 }, + }, + }, + [2182] = { + ["coords"] = { + [1] = { 58.6, 64, 1519, 900 }, + }, + }, + [2187] = { + ["coords"] = { + [1] = { 57.5, 61.9, 1519, 900 }, + }, + }, + [2189] = { + ["coords"] = { + [1] = { 68.4, 50.3, 1519, 900 }, + }, + }, + [2190] = { + ["coords"] = { + [1] = { 65.8, 69.3, 1519, 900 }, + }, + }, + [2333] = { + ["coords"] = { + [1] = { 41.9, 74.1, 15, 300 }, + }, + }, + [2334] = { + ["coords"] = { + [1] = { 71.6, 83.2, 406, 900 }, + }, + }, + [2335] = { + ["coords"] = { + [1] = { 31.6, 22.1, 17, 900 }, + [2] = { 75.3, 82.9, 406, 900 }, + }, + }, + [2336] = { + ["coords"] = { + [1] = { 33.6, 23.1, 17, 900 }, + [2] = { 33, 71.3, 85, 300 }, + [3] = { 78.5, 84.5, 406, 900 }, + }, + }, + [2413] = { + ["coords"] = { + [1] = { 68.7, 25.7, 1, 120 }, + [2] = { 68.8, 25.7, 1, 120 }, + [3] = { 71.4, 22.1, 1, 120 }, + [4] = { 71.5, 22, 1, 120 }, + [5] = { 71.4, 22, 1, 120 }, + [6] = { 71.7, 21.8, 1, 120 }, + [7] = { 71.2, 21.8, 1, 120 }, + [8] = { 71.6, 21.8, 1, 120 }, + [9] = { 71.7, 21.7, 1, 120 }, + [10] = { 71.2, 21.7, 1, 120 }, + [11] = { 71.6, 21.7, 1, 120 }, + [12] = { 71.3, 21.2, 1, 120 }, + [13] = { 71.2, 21.2, 1, 120 }, + [14] = { 77.5, 52.1, 10, 25 }, + [15] = { 36, 68.5, 11, 120 }, + [16] = { 35.9, 68.4, 11, 120 }, + [17] = { 26.4, 68.4, 11, 120 }, + [18] = { 36.7, 68.3, 11, 120 }, + [19] = { 36.7, 68.2, 11, 120 }, + [20] = { 36.7, 68.1, 11, 120 }, + [21] = { 36.1, 68, 11, 120 }, + [22] = { 36.2, 68, 11, 120 }, + [23] = { 36.4, 67.9, 11, 120 }, + [24] = { 36.2, 67.7, 11, 120 }, + [25] = { 28, 66.8, 11, 120 }, + [26] = { 34.6, 66, 11, 120 }, + [27] = { 34.7, 66, 11, 120 }, + [28] = { 34.5, 65.9, 11, 120 }, + [29] = { 34.3, 65.8, 11, 120 }, + [30] = { 39.2, 65.8, 11, 120 }, + [31] = { 39.1, 65.7, 11, 120 }, + [32] = { 34.2, 65.7, 11, 120 }, + [33] = { 34.5, 65.6, 11, 120 }, + [34] = { 34.3, 65.4, 11, 120 }, + [35] = { 34.4, 65.4, 11, 120 }, + [36] = { 34.5, 65.4, 11, 120 }, + [37] = { 34.5, 65.3, 11, 120 }, + [38] = { 38.6, 65.3, 11, 120 }, + [39] = { 34.4, 65.3, 11, 120 }, + [40] = { 34.5, 65.2, 11, 120 }, + [41] = { 39.9, 65.1, 11, 120 }, + [42] = { 39.8, 65.1, 11, 120 }, + [43] = { 39.9, 65, 11, 120 }, + [44] = { 39.8, 65, 11, 120 }, + [45] = { 39.8, 64.9, 11, 120 }, + [46] = { 39.7, 64.9, 11, 120 }, + [47] = { 39.9, 64.9, 11, 120 }, + [48] = { 35.1, 62.8, 11, 120 }, + [49] = { 35.1, 62.7, 11, 120 }, + [50] = { 34.9, 62.7, 11, 120 }, + [51] = { 34.9, 62.6, 11, 120 }, + [52] = { 35, 62.6, 11, 120 }, + [53] = { 35.9, 62.5, 11, 120 }, + [54] = { 35.6, 62.5, 11, 120 }, + [55] = { 39.2, 62.4, 11, 120 }, + [56] = { 39.1, 62.4, 11, 120 }, + [57] = { 39.2, 62.3, 11, 120 }, + [58] = { 36.1, 62.3, 11, 120 }, + [59] = { 36.1, 62.2, 11, 120 }, + [60] = { 36, 62.1, 11, 120 }, + [61] = { 35.9, 62.1, 11, 120 }, + [62] = { 35.5, 62.1, 11, 120 }, + [63] = { 39.6, 62.1, 11, 120 }, + [64] = { 35.9, 62, 11, 120 }, + [65] = { 36, 62, 11, 120 }, + [66] = { 35.5, 62, 11, 120 }, + [67] = { 39.5, 62, 11, 120 }, + [68] = { 39, 62, 11, 120 }, + [69] = { 38.7, 62, 11, 120 }, + [70] = { 39.6, 62, 11, 120 }, + [71] = { 36.1, 62, 11, 120 }, + [72] = { 39.1, 62, 11, 120 }, + [73] = { 39.6, 61.9, 11, 120 }, + [74] = { 38.7, 61.9, 11, 120 }, + [75] = { 39, 61.9, 11, 120 }, + [76] = { 39.5, 61.9, 11, 120 }, + [77] = { 36.1, 61.9, 11, 120 }, + [78] = { 39, 61.8, 11, 120 }, + [79] = { 35.6, 61.8, 11, 120 }, + [80] = { 35.9, 61.7, 11, 120 }, + [81] = { 39, 61.7, 11, 120 }, + [82] = { 35.6, 61.7, 11, 120 }, + [83] = { 35.7, 61.7, 11, 120 }, + [84] = { 39.4, 61.6, 11, 120 }, + [85] = { 35.7, 61.6, 11, 120 }, + [86] = { 35.6, 61.6, 11, 120 }, + [87] = { 39.5, 61.6, 11, 120 }, + [88] = { 35.7, 61.5, 11, 120 }, + [89] = { 39.7, 61.5, 11, 120 }, + [90] = { 39.6, 61.4, 11, 120 }, + [91] = { 39.3, 61.4, 11, 120 }, + [92] = { 35.7, 61.3, 11, 120 }, + [93] = { 26.5, 58.1, 15, 25 }, + [94] = { 49.2, 84.1, 17, 25 }, + [95] = { 50.8, 89.9, 1519, 120 }, + [96] = { 50.9, 89.7, 1519, 120 }, + [97] = { 50, 89.4, 1519, 120 }, + [98] = { 50.2, 89.3, 1519, 120 }, + [99] = { 50.4, 89.1, 1519, 120 }, + [100] = { 50.6, 89, 1519, 120 }, + [101] = { 41.1, 82.9, 1519, 120 }, + [102] = { 41, 82.9, 1519, 120 }, + [103] = { 41.1, 82.7, 1519, 120 }, + [104] = { 41, 82.7, 1519, 120 }, + [105] = { 41.4, 81.8, 1519, 120 }, + [106] = { 41.2, 81.7, 1519, 120 }, + [107] = { 41.5, 81.6, 1519, 120 }, + [108] = { 41.2, 81.5, 1519, 120 }, + [109] = { 41.5, 81.4, 1519, 120 }, + [110] = { 41.3, 81.4, 1519, 120 }, + [111] = { 36.5, 75, 1519, 307 }, + [112] = { 52, 74.8, 1519, 120 }, + [113] = { 50, 74.7, 1519, 120 }, + [114] = { 36.8, 74.6, 1519, 327 }, + [115] = { 51.9, 74.6, 1519, 120 }, + [116] = { 37, 74.6, 1519, 300 }, + [117] = { 50.1, 74.5, 1519, 120 }, + [118] = { 37.8, 74.5, 1519, 120 }, + [119] = { 49.5, 74.4, 1519, 120 }, + [120] = { 49.9, 74.4, 1519, 120 }, + [121] = { 37.2, 74.4, 1519, 306 }, + [122] = { 49.3, 74.4, 1519, 120 }, + [123] = { 36.9, 74.1, 1519, 300 }, + [124] = { 37.2, 74, 1519, 300 }, + [125] = { 37.7, 73.9, 1519, 120 }, + [126] = { 36.9, 73.9, 1519, 300 }, + [127] = { 37.1, 73.8, 1519, 300 }, + [128] = { 36.6, 73.6, 1519, 300 }, + [129] = { 37.6, 73.6, 1519, 120 }, + [130] = { 36.5, 73.5, 1519, 300 }, + [131] = { 36.7, 73.4, 1519, 120 }, + [132] = { 37.1, 73.4, 1519, 120 }, + [133] = { 36.5, 73.4, 1519, 120 }, + [134] = { 37, 73.3, 1519, 120 }, + [135] = { 36.7, 73.3, 1519, 120 }, + [136] = { 37.2, 73.2, 1519, 120 }, + [137] = { 36.6, 73.2, 1519, 120 }, + [138] = { 37, 73.1, 1519, 120 }, + [139] = { 37.2, 73, 1519, 120 }, + [140] = { 37.1, 73, 1519, 120 }, + [141] = { 36.7, 72, 1519, 300 }, + [142] = { 36.1, 70, 1519, 300 }, + [143] = { 36.3, 70, 1519, 300 }, + [144] = { 38.7, 62.6, 1519, 120 }, + [145] = { 38.5, 62.6, 1519, 120 }, + [146] = { 38.8, 62.5, 1519, 120 }, + [147] = { 38.5, 62.4, 1519, 120 }, + [148] = { 38.7, 62.3, 1519, 120 }, + [149] = { 38.6, 62.2, 1519, 120 }, + [150] = { 38.7, 61.2, 1519, 120 }, + [151] = { 38.9, 61.2, 1519, 120 }, + [152] = { 38.7, 61, 1519, 120 }, + [153] = { 38.9, 61, 1519, 120 }, + [154] = { 48.8, 50.9, 1519, 120 }, + [155] = { 48.7, 50.9, 1519, 120 }, + [156] = { 48.1, 49.7, 1519, 120 }, + [157] = { 48.1, 49.5, 1519, 120 }, + [158] = { 48.7, 48.9, 1519, 120 }, + [159] = { 47.2, 48.7, 1519, 120 }, + [160] = { 48.7, 48.7, 1519, 120 }, + [161] = { 49, 48.6, 1519, 120 }, + [162] = { 48.9, 48.6, 1519, 120 }, + [163] = { 47.3, 48.5, 1519, 120 }, + [164] = { 48.2, 47.6, 1519, 120 }, + [165] = { 48, 47.6, 1519, 120 }, + [166] = { 53, 45.9, 1519, 120 }, + [167] = { 52.8, 45.9, 1519, 120 }, + [168] = { 53.8, 45, 1519, 120 }, + [169] = { 53.8, 44.8, 1519, 120 }, + [170] = { 52.2, 44.8, 1519, 120 }, + [171] = { 52.2, 44.6, 1519, 120 }, + [172] = { 52.5, 44.5, 1519, 120 }, + [173] = { 52.5, 44.3, 1519, 300 }, + [174] = { 53.2, 43.6, 1519, 120 }, + [175] = { 53.1, 43.6, 1519, 120 }, + [176] = { 51.8, 43.4, 1519, 120 }, + [177] = { 51.8, 43.2, 1519, 120 }, + [178] = { 52.8, 42.3, 1519, 120 }, + [179] = { 52.6, 42.3, 1519, 120 }, + [180] = { 70.4, 40.6, 1519, 120 }, + [181] = { 70.2, 40.6, 1519, 120 }, + [182] = { 70.1, 40.5, 1519, 120 }, + [183] = { 70.4, 40.4, 1519, 120 }, + [184] = { 70.3, 40.3, 1519, 120 }, + [185] = { 70.2, 40.2, 1519, 120 }, + [186] = { 71.5, 40.2, 1519, 120 }, + [187] = { 70.6, 40.2, 1519, 120 }, + [188] = { 70.7, 40.2, 1519, 120 }, + [189] = { 70.5, 40, 1519, 120 }, + [190] = { 71.6, 40, 1519, 120 }, + [191] = { 70.7, 40, 1519, 120 }, + [192] = { 70.7, 39.8, 1519, 120 }, + [193] = { 70.5, 39.8, 1519, 120 }, + [194] = { 71.4, 39.7, 1519, 120 }, + [195] = { 71.3, 39.6, 1519, 120 }, + [196] = { 71.3, 39.4, 1519, 120 }, + [197] = { 70.3, 39.3, 1519, 120 }, + [198] = { 70.2, 39.3, 1519, 120 }, + [199] = { 71.2, 39.2, 1519, 120 }, + [200] = { 71, 39.1, 1519, 120 }, + [201] = { 70.4, 39.1, 1519, 120 }, + [202] = { 71.1, 38.9, 1519, 120 }, + [203] = { 70.9, 38.7, 1519, 120 }, + [204] = { 70.7, 38.6, 1519, 120 }, + [205] = { 59, 37.5, 1519, 120 }, + [206] = { 59.4, 37, 1519, 120 }, + [207] = { 59.5, 36.9, 1519, 120 }, + [208] = { 59.7, 36.8, 1519, 120 }, + [209] = { 59.6, 36.7, 1519, 120 }, + [210] = { 67.4, 36.5, 1519, 120 }, + [211] = { 67.3, 36.5, 1519, 120 }, + [212] = { 67.5, 36.3, 1519, 120 }, + [213] = { 67.5, 36.1, 1519, 120 }, + [214] = { 67.9, 35.9, 1519, 120 }, + [215] = { 67.7, 35.9, 1519, 120 }, + [216] = { 67.9, 35.7, 1519, 120 }, + [217] = { 67.7, 35.7, 1519, 120 }, + [218] = { 67.9, 35.5, 1519, 120 }, + [219] = { 52.3, 37.5, 2597, 120 }, + [220] = { 52.1, 37.5, 2597, 120 }, + [221] = { 52.1, 37.4, 2597, 120 }, + [222] = { 52.1, 37, 2597, 120 }, + [223] = { 54.2, 99.2, 5581, 120 }, + [224] = { 54.1, 99.1, 5581, 120 }, + [225] = { 54.3, 99.1, 5581, 120 }, + [226] = { 54.2, 99, 5581, 120 }, + [227] = { 54.1, 99, 5581, 120 }, + [228] = { 54.9, 99, 5581, 120 }, + [229] = { 54.3, 99, 5581, 120 }, + [230] = { 54.4, 99, 5581, 120 }, + [231] = { 54.3, 98.9, 5581, 120 }, + [232] = { 54.9, 98.9, 5581, 120 }, + [233] = { 54.4, 98.8, 5581, 120 }, + [234] = { 54.3, 98.8, 5581, 120 }, + [235] = { 54.8, 98.7, 5581, 120 }, + [236] = { 54.7, 98.6, 5581, 120 }, + [237] = { 54.8, 98.6, 5581, 120 }, + [238] = { 54.2, 98.5, 5581, 120 }, + [239] = { 54.7, 98.4, 5581, 120 }, + [240] = { 54.6, 98.4, 5581, 120 }, + [241] = { 54.2, 98.4, 5581, 120 }, + [242] = { 54.6, 98.3, 5581, 120 }, + [243] = { 54.5, 98.1, 5581, 120 }, + [244] = { 54.4, 98.1, 5581, 120 }, + [245] = { 48.1, 97.5, 5581, 120 }, + [246] = { 48.4, 97.2, 5581, 120 }, + [247] = { 48.5, 97.1, 5581, 120 }, + [248] = { 48.4, 97.1, 5581, 120 }, + [249] = { 52.6, 97, 5581, 120 }, + [250] = { 52.6, 96.9, 5581, 120 }, + [251] = { 52.7, 96.9, 5581, 120 }, + [252] = { 52.7, 96.8, 5581, 120 }, + [253] = { 52.9, 96.6, 5581, 120 }, + [254] = { 52.8, 96.6, 5581, 120 }, + [255] = { 52.9, 96.5, 5581, 120 }, + [256] = { 52.8, 96.5, 5581, 120 }, + }, + }, + [2489] = { + ["coords"] = { + [1] = { 35.6, 64.8, 11, 120 }, + [2] = { 35.5, 64.8, 11, 120 }, + [3] = { 35.7, 64.7, 11, 120 }, + [4] = { 35.4, 64.7, 11, 120 }, + [5] = { 35.6, 64.7, 11, 120 }, + [6] = { 35.5, 64.7, 11, 120 }, + [7] = { 35.8, 64.5, 11, 120 }, + [8] = { 35.9, 64.4, 11, 120 }, + [9] = { 35.8, 64.4, 11, 120 }, + [10] = { 35.5, 64.3, 11, 120 }, + [11] = { 35.6, 64.3, 11, 120 }, + [12] = { 35.4, 64.3, 11, 120 }, + [13] = { 35.5, 64.2, 11, 120 }, + [14] = { 35.4, 64.2, 11, 120 }, + [15] = { 35.6, 64.2, 11, 120 }, + [16] = { 44.3, 98.7, 28, 300 }, + [17] = { 44.4, 98.7, 28, 300 }, + [18] = { 44.4, 98.6, 28, 300 }, + [19] = { 44.3, 98.5, 28, 300 }, + [20] = { 81.2, 51.6, 36, 300 }, + [21] = { 81.1, 51.6, 36, 300 }, + [22] = { 81.2, 51.5, 36, 300 }, + [23] = { 81.2, 51.4, 36, 300 }, + [24] = { 81.2, 51.3, 36, 300 }, + [25] = { 22.9, 43.3, 44, 7200 }, + [26] = { 51.1, 62.5, 357, 300 }, + [27] = { 51.1, 62.4, 357, 300 }, + [28] = { 51.2, 62.4, 357, 300 }, + [29] = { 51.2, 62.3, 357, 300 }, + [30] = { 31.5, 90.5, 405, 300 }, + [31] = { 84.5, 77.9, 5208, 300 }, + [32] = { 83.4, 77.8, 5208, 300 }, + }, + }, + [2551] = { + ["coords"] = { + [1] = { 32.2, 27.6, 33, 900 }, + }, + }, + [2554] = { + ["coords"] = { + [1] = { 30.6, 90.2, 33, 300 }, + [2] = { 29.2, 88.6, 33, 300 }, + [3] = { 33.6, 88.4, 33, 300 }, + }, + }, + [2556] = { + ["coords"] = { + [1] = { 80.8, 46.8, 47, 2 }, + }, + ["fac"] = "AH", + }, + [2560] = { + ["coords"] = { + [1] = { 36.1, 80.5, 33, 300 }, + [2] = { 33.8, 77.7, 33, 300 }, + [3] = { 39.7, 77.4, 33, 300 }, + [4] = { 36.6, 77.1, 33, 300 }, + [5] = { 37.8, 76.9, 33, 300 }, + [6] = { 34, 76.8, 33, 300 }, + [7] = { 34.3, 73.8, 33, 300 }, + [8] = { 36.3, 70.6, 33, 300 }, + [9] = { 37.4, 64.5, 33, 300 }, + [10] = { 38.1, 63.5, 33, 300 }, + [11] = { 38.8, 60.3, 33, 300 }, + [12] = { 40.2, 60.2, 33, 300 }, + }, + }, + [2572] = { + ["coords"] = { + [1] = { 32.1, 45.2, 267, 7200 }, + [2] = { 87.7, 8.4, 5179, 7200 }, + }, + }, + [2573] = { + ["coords"] = { + [1] = { 31.9, 45.7, 267, 7200 }, + [2] = { 87.5, 8.8, 5179, 7200 }, + }, + }, + [2652] = { + ["coords"] = { + [1] = { 45.7, 93.1, 45, 2 }, + }, + ["fac"] = "A", + }, + [2653] = { + ["coords"] = { + [1] = { 85, 33.9, 45, 300 }, + [2] = { 85.6, 31.8, 45, 300 }, + [3] = { 83.8, 31.2, 45, 300 }, + [4] = { 84, 30, 45, 300 }, + [5] = { 60.1, 90.4, 47, 300 }, + }, + }, + [2656] = { + ["coords"] = { + [1] = { 44.3, 92.9, 45, 600 }, + }, + }, + [2657] = { + ["coords"] = { + [1] = { 76.2, 29.8, 1519, 120 }, + [2] = { 57.4, 93.4, 5581, 120 }, + }, + ["fac"] = "A", + }, + [2663] = { + ["coords"] = { + [1] = { 57.8, 74.7, 45, 7200 }, + [2] = { 20.9, 31.9, 331, 300 }, + }, + }, + [2687] = { + ["coords"] = { + [1] = { 93.9, 14.9, 10, 25 }, + [2] = { 94.5, 14.6, 10, 25 }, + [3] = { 93.2, 13.9, 10, 25 }, + [4] = { 93.2, 13.7, 10, 25 }, + [5] = { 93.9, 13.6, 10, 25 }, + [6] = { 51.8, 41.2, 17, 25 }, + [7] = { 52, 29.8, 17, 25 }, + [8] = { 60, 59.4, 45, 7200 }, + [9] = { 22.4, 59, 45, 25 }, + [10] = { 22, 59, 45, 25 }, + [11] = { 22.1, 59, 45, 25 }, + [12] = { 22.1, 58.7, 45, 25 }, + [13] = { 78.1, 75.8, 400, 25 }, + [14] = { 79.5, 74.5, 400, 25 }, + [15] = { 37, 74.4, 1519, 300 }, + [16] = { 37.2, 74.3, 1519, 340 }, + [17] = { 36.6, 73.5, 1519, 300 }, + [18] = { 36.6, 72, 1519, 300 }, + [19] = { 36.2, 70, 1519, 300 }, + [20] = { 75.9, 54.7, 1519, 25 }, + [21] = { 75.9, 54.6, 1519, 25 }, + [22] = { 76.9, 54, 1519, 25 }, + [23] = { 77, 52.8, 1519, 25 }, + [24] = { 64.4, 46.7, 1519, 25 }, + }, + ["fac"] = "A", + }, + [2688] = { + ["coords"] = { + [1] = { 36.1, 58.1, 45, 2 }, + }, + }, + [2689] = { + ["coords"] = { + [1] = { 25.5, 30.1, 45, 2 }, + }, + }, + [2690] = { + ["coords"] = { + [1] = { 52, 50.7, 45, 2 }, + }, + }, + [2691] = { + ["coords"] = { + [1] = { 66.7, 29.7, 45, 2 }, + }, + }, + [2695] = { + ["coords"] = { + [1] = { 43, 65.2, 12, 25 }, + [2] = { 41, 63.2, 12, 25 }, + [3] = { 42.5, 62.9, 12, 25 }, + [4] = { 52.1, 30, 17, 25 }, + [5] = { 30.8, 29, 28, 25 }, + [6] = { 30.8, 28.4, 28, 25 }, + [7] = { 60, 59.3, 45, 7200 }, + [8] = { 22.1, 59, 45, 25 }, + [9] = { 22.1, 58.7, 45, 25 }, + [10] = { 21.9, 58.7, 45, 25 }, + [11] = { 37.9, 52, 85, 25 }, + [12] = { 87.2, 43.3, 85, 25 }, + [13] = { 87.2, 42.6, 85, 25 }, + }, + ["fac"] = "A", + }, + [2701] = { + ["coords"] = { + [1] = { 84.3, 31, 45, 2 }, + }, + ["fac"] = "AH", + }, + [2702] = { + ["coords"] = { + [1] = { 36.2, 57.4, 45, 2 }, + }, + ["fac"] = "AH", + }, + [2703] = { + ["coords"] = { + [1] = { 28.9, 59.6, 45, 2 }, + }, + ["fac"] = "H", + }, + [2707] = { + ["coords"] = { + [1] = { 23, 84.5, 45, 2 }, + }, + }, + [2709] = { + ["coords"] = { + [1] = { 23.4, 85.1, 45, 2 }, + }, + }, + [2710] = { + ["coords"] = { + [1] = { 20.7, 85.1, 45, 2 }, + }, + }, + [2712] = { + ["coords"] = { + [1] = { 29.8, 5.5, 11, 180 }, + [2] = { 21, 90.2, 45, 180 }, + [3] = { 19.4, 90.1, 45, 300 }, + [4] = { 22.5, 90, 45, 300 }, + [5] = { 24.9, 89.4, 45, 180 }, + [6] = { 24.5, 86.5, 45, 180 }, + }, + }, + [2713] = { + ["coords"] = { + [1] = { 46, 47.8, 45, 2 }, + }, + ["fac"] = "A", + }, + [2714] = { + ["coords"] = { + [1] = { 39.1, 96.5, 36, 180 }, + [2] = { 40, 94.8, 36, 180 }, + [3] = { 39.6, 93.4, 36, 300 }, + [4] = { 41.5, 91.3, 36, 180 }, + [5] = { 39.2, 90.9, 36, 300 }, + [6] = { 41.5, 87.7, 36, 300 }, + [7] = { 43.1, 32.9, 267, 180 }, + [8] = { 43.8, 31.4, 267, 180 }, + [9] = { 43.5, 30.2, 267, 300 }, + [10] = { 45.2, 28.3, 267, 180 }, + [11] = { 43.1, 28, 267, 300 }, + [12] = { 45.2, 25.2, 267, 300 }, + }, + }, + [2716] = { + ["coords"] = { + [1] = { 18.2, 69.2, 45, 180 }, + }, + }, + [2717] = { + ["coords"] = { + [1] = { 18.2, 68.1, 45, 30 }, + }, + }, + [2718] = { + ["coords"] = { + [1] = { 18, 67.9, 45, 180 }, + }, + }, + [2719] = { + ["coords"] = { + [1] = { 62.6, 69.7, 3, 900 }, + [2] = { 41.1, 50.9, 2597, 300 }, + }, + }, + [2724] = { + ["coords"] = { + [1] = { 36.6, 82.5, 40, 60 }, + [2] = { 60.7, 74.6, 40, 60 }, + [3] = { 63.9, 73.2, 40, 60 }, + [4] = { 63.9, 69.9, 40, 60 }, + [5] = { 45.6, 69.8, 40, 60 }, + [6] = { 38.7, 69.2, 40, 60 }, + [7] = { 32.4, 68.5, 40, 60 }, + [8] = { 38.5, 58.1, 40, 60 }, + [9] = { 38, 57.2, 40, 60 }, + [10] = { 36.2, 54.8, 40, 60 }, + [11] = { 35, 54.1, 40, 60 }, + [12] = { 46.7, 53.4, 40, 60 }, + [13] = { 35, 53, 40, 60 }, + [14] = { 30.4, 52.3, 40, 60 }, + [15] = { 30.1, 49.6, 40, 60 }, + [16] = { 35.5, 45, 40, 60 }, + [17] = { 50.9, 39.2, 40, 60 }, + [18] = { 46, 38.2, 40, 60 }, + [19] = { 46.5, 37.8, 40, 60 }, + [20] = { 42.7, 36.8, 40, 60 }, + [21] = { 46.5, 36.8, 40, 60 }, + [22] = { 56.1, 35.4, 40, 60 }, + [23] = { 44.9, 35.2, 40, 60 }, + [24] = { 56.4, 33.9, 40, 60 }, + [25] = { 49.8, 33.6, 40, 60 }, + [26] = { 52.1, 33.4, 40, 60 }, + [27] = { 52, 33.3, 40, 60 }, + [28] = { 36.3, 31.4, 40, 60 }, + [29] = { 55.8, 30.7, 40, 60 }, + [30] = { 34.4, 26.5, 40, 60 }, + [31] = { 52, 25, 40, 60 }, + [32] = { 52, 22.1, 40, 60 }, + [33] = { 51.2, 21.9, 40, 60 }, + [34] = { 56.9, 20.6, 40, 60 }, + [35] = { 48.3, 20.4, 40, 60 }, + [36] = { 48.8, 20.3, 40, 60 }, + [37] = { 49.4, 20, 40, 60 }, + [38] = { 50.1, 19.6, 40, 60 }, + [39] = { 56.8, 19.3, 40, 60 }, + [40] = { 59.1, 18.9, 40, 60 }, + [41] = { 56.6, 18.6, 40, 60 }, + [42] = { 50.2, 18.2, 40, 60 }, + [43] = { 40.7, 17.6, 40, 60 }, + [44] = { 51.8, 15.2, 40, 60 }, + [45] = { 51.9, 15, 40, 60 }, + [46] = { 56.3, 13.4, 40, 60 }, + [47] = { 13, 90.1, 1581, 60 }, + }, + }, + [2726] = { + ["coords"] = { + [1] = { 72.6, 33.3, 45, 7200 }, + [2] = { 46.9, 53.8, 5581, 300 }, + [3] = { 46.7, 53.2, 5581, 300 }, + [4] = { 56.2, 69.7, 5602, 300 }, + [5] = { 56.4, 69.6, 5602, 300 }, + [6] = { 56.3, 69.6, 5602, 300 }, + [7] = { 56.2, 69.4, 5602, 300 }, + [8] = { 56.1, 69.4, 5602, 300 }, + [9] = { 52.2, 58.8, 5602, 300 }, + [10] = { 46.7, 35.7, 5602, 300 }, + [11] = { 58.9, 35.5, 5602, 300 }, + }, + }, + [2728] = { + ["coords"] = { + [1] = { 46.7, 46.6, 45, 7200 }, + [2] = { 46.8, 53.2, 5581, 300 }, + }, + }, + [2734] = { + ["coords"] = { + [1] = { 12.1, 64.2, 11, 2 }, + }, + ["fac"] = "A", + }, + [2739] = { + ["coords"] = { + [1] = { 43.7, 61.2, 141, 5 }, + }, + }, + [2740] = { + ["coords"] = { + [1] = { 45.7, 57.4, 141, 5 }, + }, + }, + [2741] = { + ["coords"] = { + [1] = { 44.7, 62.4, 141, 5 }, + }, + }, + [2742] = { + ["coords"] = { + [1] = { 44.4, 60.7, 141, 5 }, + }, + }, + [2743] = { + ["coords"] = { + [1] = { 39.8, 19.7, 3, 300 }, + [2] = { 39.6, 18.5, 3, 300 }, + [3] = { 41, 16, 3, 300 }, + [4] = { 40.6, 12.1, 3, 300 }, + [5] = { 42.8, 10, 3, 300 }, + [6] = { 35.1, 91, 38, 300 }, + [7] = { 40.1, 90.7, 38, 300 }, + [8] = { 32.2, 90.6, 38, 300 }, + [9] = { 37.3, 88.8, 38, 300 }, + [10] = { 33, 88.7, 38, 300 }, + [11] = { 39.7, 87.1, 38, 300 }, + [12] = { 35.5, 86.7, 38, 300 }, + [13] = { 41.7, 85.2, 38, 300 }, + [14] = { 34.7, 88.6, 1337, 300 }, + [15] = { 35.9, 80.5, 1337, 300 }, + [16] = { 32.1, 78, 1337, 300 }, + [17] = { 57.1, 69.8, 1337, 300 }, + [18] = { 32, 64.7, 1337, 300 }, + [19] = { 56.2, 64.5, 1337, 300 }, + [20] = { 38.3, 55.2, 1337, 300 }, + [21] = { 62.4, 53.6, 1337, 300 }, + [22] = { 23.7, 53.4, 1337, 300 }, + [23] = { 49.1, 44.4, 1337, 300 }, + [24] = { 28, 43.9, 1337, 300 }, + [25] = { 60.8, 36.3, 1337, 300 }, + [26] = { 39.9, 34.3, 1337, 300 }, + [27] = { 70.4, 26.9, 1337, 300 }, + [28] = { 16.2, 94.4, 5602, 300 }, + [29] = { 16.3, 93.5, 5602, 300 }, + [30] = { 15.9, 93.3, 5602, 300 }, + [31] = { 18.5, 92.4, 5602, 300 }, + [32] = { 15.9, 91.9, 5602, 300 }, + [33] = { 18.4, 91.8, 5602, 300 }, + [34] = { 16.5, 90.9, 5602, 300 }, + [35] = { 19.1, 90.7, 5602, 300 }, + [36] = { 15, 90.7, 5602, 300 }, + [37] = { 17.7, 89.7, 5602, 300 }, + [38] = { 15.5, 89.7, 5602, 300 }, + [39] = { 18.9, 88.9, 5602, 300 }, + [40] = { 16.7, 88.7, 5602, 300 }, + [41] = { 19.9, 87.9, 5602, 300 }, + }, + }, + [2744] = { + ["coords"] = { + [1] = { 25, 32.5, 33, 300 }, + [2] = { 24.1, 30.7, 33, 300 }, + [3] = { 25.5, 29.7, 33, 300 }, + [4] = { 27.1, 29.4, 33, 300 }, + [5] = { 26.4, 28.7, 33, 300 }, + [6] = { 24.3, 28.7, 33, 300 }, + [7] = { 23.5, 27.5, 33, 300 }, + [8] = { 27, 27.3, 33, 300 }, + [9] = { 24.9, 26.9, 33, 300 }, + [10] = { 26.9, 26.2, 33, 300 }, + [11] = { 24.2, 24.8, 33, 300 }, + [12] = { 28.1, 24.5, 33, 900 }, + [13] = { 24, 24.5, 33, 900 }, + [14] = { 24.8, 24.4, 33, 300 }, + [15] = { 25.8, 24.4, 33, 300 }, + [16] = { 26.5, 24.3, 33, 300 }, + [17] = { 25.4, 24.1, 33, 900 }, + [18] = { 27.2, 24, 33, 900 }, + [19] = { 24.8, 23.7, 33, 300 }, + [20] = { 23.5, 23.6, 33, 300 }, + [21] = { 27.9, 23.6, 33, 900 }, + [22] = { 24.3, 23.3, 33, 300 }, + [23] = { 25.7, 23.3, 33, 300 }, + [24] = { 26.1, 22.9, 33, 900 }, + [25] = { 24.8, 22.8, 33, 300 }, + [26] = { 26.4, 22.5, 33, 900 }, + [27] = { 26.4, 22.1, 33, 300 }, + }, + }, + [2842] = { + ["coords"] = { + [1] = { 83.5, 32.8, 3, 0 }, + [2] = { 38.7, 98.5, 5602, 0 }, + }, + }, + [2843] = { + ["coords"] = { + [1] = { 29.4, 81.4, 1, 36000 }, + [2] = { 29.8, 80.6, 1, 36000 }, + [3] = { 22.6, 80.1, 1, 36000 }, + [4] = { 26.2, 79.6, 1, 36000 }, + [5] = { 30.6, 79.4, 1, 36000 }, + [6] = { 20.9, 76.7, 1, 36000 }, + [7] = { 52.4, 51.9, 12, 36000 }, + [8] = { 57.6, 48.4, 12, 36000 }, + [9] = { 53, 47.5, 12, 36000 }, + [10] = { 56.9, 43.9, 12, 36000 }, + [11] = { 49.1, 28.2, 12, 36000 }, + [12] = { 50.3, 27, 12, 36000 }, + [13] = { 50, 26.7, 12, 36000 }, + [14] = { 96.8, 70.9, 14, 3600 }, + [15] = { 98.3, 45.9, 14, 3600 }, + [16] = { 57.6, 54.2, 17, 36000 }, + [17] = { 56.1, 7.1, 17, 36000 }, + [18] = { 51.1, 35.2, 38, 36000 }, + [19] = { 50.3, 34.2, 40, 36000 }, + [20] = { 37.4, 68, 85, 36000 }, + [21] = { 34.2, 64.3, 85, 36000 }, + [22] = { 36.5, 62.2, 85, 36000 }, + [23] = { 31.3, 62.2, 85, 36000 }, + [24] = { 26.1, 60.3, 85, 36000 }, + [25] = { 24.3, 59.6, 85, 36000 }, + [26] = { 23.6, 58.3, 85, 36000 }, + [27] = { 36.7, 29.2, 130, 36000 }, + [28] = { 54.6, 44.3, 141, 36000 }, + [29] = { 54.1, 39.7, 141, 36000 }, + [30] = { 54, 39.1, 141, 36000 }, + [31] = { 57.3, 29.9, 141, 36000 }, + [32] = { 55.7, 27.2, 141, 36000 }, + [33] = { 58.2, 27.1, 141, 36000 }, + [34] = { 56.3, 25.9, 141, 36000 }, + [35] = { 35.5, 55.7, 148, 36000 }, + [36] = { 44.1, 20.4, 148, 10800 }, + [37] = { 32.1, 44.9, 5225, 3600 }, + [38] = { 32.6, 89.5, 5536, 3600 }, + [39] = { 53.7, 51, 5536, 3600 }, + [40] = { 35.8, 36.7, 5536, 3600 }, + [41] = { 53.5, 35.8, 5536, 3600 }, + [42] = { 58.8, 10.4, 5581, 36000 }, + [43] = { 59.3, 9.2, 5581, 36000 }, + [44] = { 48.4, 8.4, 5581, 36000 }, + [45] = { 53.9, 7.6, 5581, 36000 }, + [46] = { 60.6, 7.3, 5581, 36000 }, + [47] = { 45.8, 3.1, 5581, 36000 }, + [48] = { 24.7, 62.2, 5602, 36000 }, + }, + }, + [2844] = { + ["coords"] = {}, + }, + [2846] = { + ["coords"] = {}, + }, + [2849] = { + ["coords"] = { + [1] = { 51, 57.5, 17, 3600 }, + [2] = { 42.9, 55.1, 17, 3600 }, + [3] = { 51.3, 54.9, 17, 3600 }, + [4] = { 45.3, 54.3, 17, 3600 }, + [5] = { 53.6, 54, 17, 3600 }, + [6] = { 45.3, 53.9, 17, 3600 }, + [7] = { 47, 53.6, 17, 3600 }, + [8] = { 52.6, 52.3, 17, 3600 }, + [9] = { 43.3, 52.2, 17, 3600 }, + [10] = { 45, 51.3, 17, 3600 }, + [11] = { 43.3, 48.3, 17, 3600 }, + [12] = { 37.3, 34.7, 17, 7200 }, + [13] = { 31, 24.9, 17, 3600 }, + [14] = { 34.6, 18.9, 17, 7200 }, + [15] = { 37.6, 16.3, 17, 3600 }, + [16] = { 40, 16, 17, 3600 }, + [17] = { 38.4, 13, 17, 3600 }, + [18] = { 39.2, 11.8, 17, 3600 }, + [19] = { 61.7, 5.2, 17, 3600 }, + [20] = { 62, 4.1, 17, 3600 }, + [21] = { 60, 4.1, 17, 3600 }, + [22] = { 59.6, 2.7, 17, 3600 }, + [23] = { 4.9, 59.5, 36, 3600 }, + [24] = { 69.7, 66.5, 38, 3600 }, + [25] = { 67.9, 65.9, 38, 3600 }, + [26] = { 73.4, 64.5, 38, 3600 }, + [27] = { 68.9, 62.5, 38, 3600 }, + [28] = { 48.9, 54.2, 38, 3600 }, + [29] = { 45.6, 43.3, 38, 3600 }, + [30] = { 48.1, 39.6, 38, 3600 }, + [31] = { 47.9, 34.2, 38, 3600 }, + [32] = { 75.6, 25, 38, 3600 }, + [33] = { 68.3, 18.4, 38, 3600 }, + [34] = { 79.6, 16.1, 38, 3600 }, + [35] = { 77.1, 14.5, 38, 3600 }, + [36] = { 59.2, 13.4, 38, 3600 }, + [37] = { 34.7, 85.7, 40, 3600 }, + [38] = { 36.7, 82.8, 40, 3600 }, + [39] = { 41.4, 82.5, 40, 3600 }, + [40] = { 42.9, 80.6, 40, 3600 }, + [41] = { 53, 79, 40, 3600 }, + [42] = { 40.6, 77, 40, 3600 }, + [43] = { 44.2, 76.6, 40, 3600 }, + [44] = { 65.3, 75, 40, 3600 }, + [45] = { 56.3, 74.5, 40, 3600 }, + [46] = { 60.7, 74.4, 40, 3600 }, + [47] = { 29.7, 84.6, 44, 3600 }, + [48] = { 27.9, 84, 44, 3600 }, + [49] = { 32.2, 83.2, 44, 3600 }, + [50] = { 43.9, 71, 44, 3600 }, + [51] = { 15, 64.1, 44, 3600 }, + [52] = { 17, 63.5, 44, 3600 }, + [53] = { 14.6, 61.9, 44, 3600 }, + [54] = { 56, 57.4, 44, 3600 }, + [55] = { 52.3, 46.7, 44, 3600 }, + [56] = { 21, 36.2, 44, 3600 }, + [57] = { 28, 28.3, 44, 3600 }, + [58] = { 34, 25.9, 44, 3600 }, + [59] = { 27.2, 21.4, 44, 3600 }, + [60] = { 19.9, 21.3, 44, 3600 }, + [61] = { 17.1, 18.2, 44, 3600 }, + [62] = { 64.5, 49.8, 130, 3600 }, + [63] = { 66.8, 45.6, 130, 3600 }, + [64] = { 64.9, 42.1, 130, 3600 }, + [65] = { 78.2, 30.8, 130, 3600 }, + [66] = { 67.8, 24.2, 130, 3600 }, + [67] = { 65.5, 23.8, 130, 3600 }, + [68] = { 65.8, 23.5, 130, 3600 }, + [69] = { 65, 23.2, 130, 3600 }, + [70] = { 65.3, 23.2, 130, 3600 }, + [71] = { 64.8, 23, 130, 3600 }, + [72] = { 25.2, 94.6, 148, 3600 }, + [73] = { 44.8, 86.9, 148, 3600 }, + [74] = { 38.4, 86.8, 148, 3600 }, + [75] = { 42.6, 86.7, 148, 3600 }, + [76] = { 36.3, 86.6, 148, 3600 }, + [77] = { 34.8, 85.1, 148, 3600 }, + [78] = { 35.4, 84.9, 148, 3600 }, + [79] = { 42.8, 84.5, 148, 3600 }, + [80] = { 38.4, 29.4, 148, 3600 }, + [81] = { 56.6, 26.4, 148, 3600 }, + [82] = { 56.3, 26.3, 148, 3600 }, + [83] = { 55.9, 26.1, 148, 3600 }, + [84] = { 57.1, 22.4, 148, 3600 }, + [85] = { 60.5, 22.3, 148, 3600 }, + [86] = { 62, 21.6, 148, 3600 }, + [87] = { 44.2, 20.4, 148, 3600 }, + [88] = { 58.1, 20, 148, 3600 }, + [89] = { 61.5, 19.4, 148, 3600 }, + [90] = { 60.3, 18.4, 148, 3600 }, + [91] = { 58.3, 17.7, 148, 3600 }, + [92] = { 58.8, 15.8, 148, 3600 }, + [93] = { 62.4, 13.4, 215, 7200 }, + [94] = { 88.6, 84.4, 331, 3600 }, + [95] = { 22.4, 36.3, 331, 3600 }, + [96] = { 11.6, 31.8, 331, 3600 }, + [97] = { 18.5, 31.6, 331, 3600 }, + [98] = { 31.9, 31.3, 331, 3600 }, + [99] = { 7.1, 12.3, 331, 3600 }, + [100] = { 74.2, 87.5, 406, 3600 }, + [101] = { 71.4, 82.5, 406, 3600 }, + [102] = { 80.3, 77.5, 406, 7200 }, + [103] = { 85.4, 73.1, 406, 3600 }, + [104] = { 70, 64, 406, 3600 }, + [105] = { 70.3, 62, 406, 3600 }, + [106] = { 69.9, 61.8, 406, 3600 }, + [107] = { 71, 61.8, 406, 3600 }, + [108] = { 71.2, 60.9, 406, 3600 }, + [109] = { 65.7, 54.3, 406, 3600 }, + [110] = { 48.3, 50.5, 406, 3600 }, + [111] = { 65.6, 50, 406, 3600 }, + [112] = { 53, 48.7, 406, 3600 }, + [113] = { 63.3, 45.7, 406, 3600 }, + [114] = { 46.8, 44.5, 406, 3600 }, + [115] = { 55.3, 42.1, 406, 3600 }, + [116] = { 13.6, 92.1, 1581, 3600 }, + [117] = { 50.4, 90.2, 1581, 3600 }, + [118] = { 61.7, 75.4, 1581, 3600 }, + [119] = { 44.3, 46.9, 1581, 3600 }, + [120] = { 71.6, 43.9, 1581, 3600 }, + [121] = { 34.3, 78.3, 5602, 3600 }, + [122] = { 33.3, 78, 5602, 3600 }, + [123] = { 36.1, 77.3, 5602, 3600 }, + [124] = { 33.8, 76.2, 5602, 3600 }, + [125] = { 23.6, 72, 5602, 3600 }, + [126] = { 21.9, 66.4, 5602, 3600 }, + [127] = { 23.2, 64.5, 5602, 3600 }, + [128] = { 23.1, 61.8, 5602, 3600 }, + [129] = { 37.3, 57, 5602, 3600 }, + [130] = { 33.5, 53.6, 5602, 3600 }, + [131] = { 39.3, 52.4, 5602, 3600 }, + [132] = { 38, 51.6, 5602, 3600 }, + [133] = { 28.8, 51.1, 5602, 3600 }, + }, + }, + [2850] = { + ["coords"] = { + [1] = { 21.5, 73.6, 10, 3600 }, + [2] = { 22, 72.1, 10, 3600 }, + [3] = { 51.9, 62.2, 10, 3600 }, + [4] = { 82.1, 61.3, 10, 3600 }, + [5] = { 81.9, 59.8, 10, 3600 }, + [6] = { 52.6, 59.3, 10, 3600 }, + [7] = { 81.9, 58.7, 10, 3600 }, + [8] = { 52.6, 57.9, 10, 3600 }, + [9] = { 34.7, 54.5, 10, 3600 }, + [10] = { 14.7, 44.4, 10, 3600 }, + [11] = { 31.7, 39.7, 10, 3600 }, + [12] = { 31.6, 32.4, 10, 3600 }, + [13] = { 32.7, 28.1, 10, 3600 }, + [14] = { 36, 27.5, 10, 3600 }, + [15] = { 24.6, 27.2, 10, 3600 }, + [16] = { 13.2, 27.2, 10, 3600 }, + [17] = { 68.8, 25.7, 10, 3600 }, + [18] = { 61.7, 25.4, 10, 3600 }, + [19] = { 48.6, 78.3, 11, 3600 }, + [20] = { 46.9, 76.1, 11, 3600 }, + [21] = { 55.6, 75.4, 11, 3600 }, + [22] = { 48.3, 74.2, 11, 3600 }, + [23] = { 61.9, 72.3, 11, 3600 }, + [24] = { 63, 69.7, 11, 3600 }, + [25] = { 47.1, 66.1, 11, 3600 }, + [26] = { 63.8, 63.1, 11, 3600 }, + [27] = { 49.9, 59.6, 11, 3600 }, + [28] = { 63.4, 59.2, 11, 3600 }, + [29] = { 61.3, 58.2, 11, 3600 }, + [30] = { 64.9, 55.9, 11, 3600 }, + [31] = { 13.5, 41.3, 11, 3600 }, + [32] = { 18.3, 39.6, 11, 3600 }, + [33] = { 15.3, 38.6, 11, 3600 }, + [34] = { 13.6, 38.2, 11, 3600 }, + [35] = { 16.2, 36.2, 11, 3600 }, + [36] = { 43.5, 34.9, 11, 3600 }, + [37] = { 13.9, 34.8, 11, 3600 }, + [38] = { 45.4, 34.7, 11, 3600 }, + [39] = { 39, 34.3, 11, 3600 }, + [40] = { 14.1, 32.8, 11, 3600 }, + [41] = { 42.7, 32.2, 11, 3600 }, + [42] = { 45.2, 32, 11, 3600 }, + [43] = { 51.6, 30.8, 11, 3600 }, + [44] = { 16.2, 30.6, 11, 3600 }, + [45] = { 13.9, 30.3, 11, 3600 }, + [46] = { 37.9, 30.1, 11, 3600 }, + [47] = { 31.6, 29.8, 11, 3600 }, + [48] = { 35.1, 27.7, 11, 3600 }, + [49] = { 39.9, 27.3, 11, 3600 }, + [50] = { 52.9, 27.2, 11, 3600 }, + [51] = { 14.8, 23.7, 11, 3600 }, + [52] = { 30.5, 97.9, 12, 3600 }, + [53] = { 43.1, 83.2, 17, 3600 }, + [54] = { 44.3, 82.8, 17, 3600 }, + [55] = { 41.9, 81.7, 17, 3600 }, + [56] = { 41.6, 78.7, 17, 3600 }, + [57] = { 77.6, 66.8, 44, 3600 }, + [58] = { 81.4, 60.5, 44, 3600 }, + [59] = { 69.2, 60.1, 44, 3600 }, + [60] = { 83.7, 58.2, 44, 3600 }, + [61] = { 70.2, 57.5, 44, 3600 }, + [62] = { 66.2, 57.4, 44, 3600 }, + [63] = { 73.6, 55.1, 44, 3600 }, + [64] = { 69.5, 55.1, 44, 3600 }, + [65] = { 80.2, 54.7, 44, 3600 }, + [66] = { 68.3, 54.5, 44, 3600 }, + [67] = { 68.3, 53.9, 44, 3600 }, + [68] = { 58, 51.8, 44, 3600 }, + [69] = { 74.7, 50.2, 44, 3600 }, + [70] = { 80.2, 48.6, 44, 3600 }, + [71] = { 75.6, 47.4, 44, 3600 }, + [72] = { 85.1, 46.4, 44, 3600 }, + [73] = { 79.7, 44.8, 44, 3600 }, + [74] = { 61.2, 43.9, 44, 3600 }, + [75] = { 79.1, 40.3, 44, 3600 }, + [76] = { 76.2, 37.5, 44, 3600 }, + [77] = { 28.9, 17.7, 44, 3600 }, + [78] = { 27.9, 15, 44, 3600 }, + [79] = { 35.3, 10, 44, 3600 }, + [80] = { 26.4, 8.3, 44, 3600 }, + [81] = { 36.6, 7.7, 44, 3600 }, + [82] = { 33.6, 7.7, 44, 3600 }, + [83] = { 64.1, 85.2, 46, 3600 }, + [84] = { 71.6, 84.8, 46, 3600 }, + [85] = { 69.5, 84.8, 46, 3600 }, + [86] = { 75.2, 41.5, 267, 4454 }, + [87] = { 79.2, 39.5, 267, 3600 }, + [88] = { 77.3, 38.8, 267, 3600 }, + [89] = { 75.2, 37.7, 267, 3600 }, + [90] = { 46.1, 69.9, 331, 3600 }, + [91] = { 50.9, 69.7, 331, 3600 }, + [92] = { 48.9, 69.6, 331, 3600 }, + [93] = { 54.3, 64.3, 331, 3600 }, + [94] = { 24.1, 63.6, 331, 3600 }, + [95] = { 56.3, 63.3, 331, 3600 }, + [96] = { 54.1, 61.1, 331, 3600 }, + [97] = { 24.9, 60.6, 331, 3600 }, + [98] = { 49.9, 59.6, 331, 3600 }, + [99] = { 34.2, 38.4, 331, 3600 }, + [100] = { 35.5, 36.5, 331, 3600 }, + [101] = { 39.6, 36, 331, 3600 }, + [102] = { 42.3, 34.8, 331, 3600 }, + [103] = { 37.9, 33.8, 331, 3600 }, + [104] = { 36, 31.6, 331, 3600 }, + [105] = { 41.4, 99.1, 361, 3600 }, + [106] = { 35.3, 70.1, 406, 3600 }, + [107] = { 33.8, 69.6, 406, 3600 }, + [108] = { 74.5, 69.1, 406, 7200 }, + [109] = { 40.1, 69, 406, 3600 }, + [110] = { 41.7, 68.9, 406, 3600 }, + [111] = { 38.1, 66.7, 406, 3600 }, + [112] = { 34.7, 65.2, 406, 3600 }, + [113] = { 39.7, 63.4, 406, 3600 }, + [114] = { 37.4, 60.8, 406, 3600 }, + [115] = { 43.3, 39, 406, 7200 }, + [116] = { 81.6, 36.3, 406, 3600 }, + [117] = { 84.2, 36, 406, 3600 }, + [118] = { 45.3, 34.1, 406, 7200 }, + [119] = { 60.4, 30.2, 406, 3600 }, + [120] = { 61.3, 27.4, 406, 3600 }, + [121] = { 6.1, 39.2, 5602, 3600 }, + [122] = { 4.8, 37.4, 5602, 3600 }, + [123] = { 11.5, 36.9, 5602, 3600 }, + [124] = { 5.9, 36, 5602, 3600 }, + [125] = { 16.3, 34.5, 5602, 3600 }, + [126] = { 17.1, 32.5, 5602, 3600 }, + [127] = { 5, 29.7, 5602, 3600 }, + [128] = { 17.8, 27.4, 5602, 3600 }, + [129] = { 7.1, 24.7, 5602, 3600 }, + [130] = { 17.4, 24.4, 5602, 3600 }, + [131] = { 15.8, 23.6, 5602, 3600 }, + [132] = { 18.6, 21.9, 5602, 3600 }, + [133] = { 2.2, 5.7, 5602, 3600 }, + [134] = { 3.6, 5.6, 5602, 3600 }, + [135] = { 1.6, 3.7, 5602, 3600 }, + [136] = { 3.5, 3.5, 5602, 3600 }, + [137] = { 8.4, 2.6, 5602, 3600 }, + }, + }, + [2852] = { + ["coords"] = { + [1] = { 36.9, 80.5, 10, 3600 }, + [2] = { 49.3, 77.5, 10, 3600 }, + [3] = { 50.6, 77.3, 10, 3600 }, + [4] = { 66.1, 76.3, 10, 3600 }, + [5] = { 34.5, 75.9, 10, 3600 }, + [6] = { 40.3, 75.6, 10, 3600 }, + [7] = { 60.8, 75.5, 10, 3600 }, + [8] = { 64.2, 73, 10, 3600 }, + [9] = { 71.2, 72.4, 10, 3600 }, + [10] = { 73.1, 72.1, 10, 3600 }, + [11] = { 71.7, 72, 10, 3600 }, + [12] = { 33.3, 69.4, 10, 3600 }, + [13] = { 65.9, 69.2, 10, 3600 }, + [14] = { 65.8, 67.5, 10, 3600 }, + [15] = { 64.3, 51.7, 10, 3600 }, + [16] = { 60.6, 41.4, 10, 3600 }, + [17] = { 60.4, 40.8, 10, 3600 }, + [18] = { 77.3, 36.6, 10, 3600 }, + [19] = { 26, 36.5, 10, 3600 }, + [20] = { 17.6, 36.3, 10, 3600 }, + [21] = { 76.9, 35.6, 10, 3600 }, + [22] = { 12.7, 33.8, 10, 3600 }, + [23] = { 78.7, 32.4, 10, 3600 }, + [24] = { 57.8, 30.8, 10, 3600 }, + [25] = { 16.3, 28.8, 10, 3600 }, + [26] = { 74.3, 65.3, 11, 7200 }, + [27] = { 53.7, 54.7, 11, 3600 }, + [28] = { 46.6, 46.6, 11, 3600 }, + [29] = { 45.6, 46.2, 11, 3600 }, + [30] = { 51.2, 46.1, 11, 3600 }, + [31] = { 49.3, 46, 11, 3600 }, + [32] = { 38.5, 45.9, 11, 3600 }, + [33] = { 44, 43.2, 11, 3600 }, + [34] = { 45.7, 42.6, 11, 3600 }, + [35] = { 68.8, 32.1, 11, 3600 }, + [36] = { 71.3, 30.3, 11, 3600 }, + [37] = { 62.6, 28.7, 11, 3600 }, + [38] = { 61.8, 26.6, 11, 3600 }, + [39] = { 59.8, 24.5, 11, 3600 }, + [40] = { 48.5, 17.7, 11, 3600 }, + [41] = { 48.2, 15.9, 11, 3600 }, + [42] = { 47.6, 15.1, 11, 3600 }, + [43] = { 49.1, 98.9, 17, 3600 }, + [44] = { 48.5, 98.8, 17, 3600 }, + [45] = { 48.8, 98.6, 17, 3600 }, + [46] = { 48.5, 97.2, 17, 3600 }, + [47] = { 49.7, 96.6, 17, 3600 }, + [48] = { 48.5, 96.3, 17, 3600 }, + [49] = { 38.6, 92, 17, 3600 }, + [50] = { 29.9, 73.6, 267, 3600 }, + [51] = { 23.2, 64.1, 267, 3600 }, + [52] = { 62.5, 63.2, 267, 3600 }, + [53] = { 64.7, 61.7, 267, 3600 }, + [54] = { 66.2, 60.5, 267, 3600 }, + [55] = { 76.2, 74.8, 331, 3600 }, + [56] = { 74.8, 74.4, 331, 3600 }, + [57] = { 77.4, 72.9, 331, 3600 }, + [58] = { 77.9, 72.8, 331, 3600 }, + [59] = { 66.3, 56.5, 331, 3600 }, + [60] = { 66.5, 53.8, 331, 3600 }, + [61] = { 81.2, 50.1, 331, 3600 }, + [62] = { 80.5, 49.7, 331, 3600 }, + [63] = { 68.8, 49.6, 331, 3600 }, + [64] = { 79.4, 49.6, 331, 3600 }, + [65] = { 81.8, 49.4, 331, 3600 }, + [66] = { 75.6, 46.4, 331, 3600 }, + [67] = { 78.5, 46.4, 331, 3600 }, + [68] = { 78.7, 45.2, 331, 3600 }, + [69] = { 27.2, 55.2, 400, 3600 }, + [70] = { 26.6, 54, 400, 3600 }, + [71] = { 27.2, 52.5, 400, 3600 }, + [72] = { 17.6, 41.8, 400, 3600 }, + [73] = { 42.9, 39.3, 400, 3600 }, + [74] = { 13.9, 38.8, 400, 3600 }, + [75] = { 43.6, 37.6, 400, 3600 }, + [76] = { 42.2, 37.4, 400, 3600 }, + [77] = { 43, 36.8, 400, 3600 }, + [78] = { 42.3, 33.6, 400, 3600 }, + [79] = { 44.9, 32.3, 400, 3600 }, + [80] = { 42.2, 31.7, 400, 3600 }, + [81] = { 18.9, 23.2, 400, 3600 }, + [82] = { 19.4, 21.7, 400, 3600 }, + [83] = { 17.8, 21.3, 400, 3600 }, + [84] = { 18.6, 20.9, 400, 3600 }, + [85] = { 24.9, 26, 406, 7200 }, + [86] = { 85.7, 33.3, 5179, 3600 }, + [87] = { 79.9, 24.9, 5179, 3600 }, + [88] = { 25.8, 29.1, 5602, 7200 }, + [89] = { 10, 21, 5602, 3600 }, + [90] = { 4.5, 14.8, 5602, 3600 }, + [91] = { 3.8, 14.4, 5602, 3600 }, + [92] = { 8, 14.4, 5602, 3600 }, + [93] = { 6.6, 14.3, 5602, 3600 }, + [94] = { 2.5, 12.1, 5602, 3600 }, + [95] = { 3.9, 11.7, 5602, 3600 }, + [96] = { 21.6, 3.6, 5602, 3600 }, + [97] = { 23.5, 2.2, 5602, 3600 }, + [98] = { 16.8, 1, 5602, 3600 }, + }, + }, + [2855] = { + ["coords"] = { + [1] = { 31.8, 90.9, 1, 1800 }, + [2] = { 32.8, 94.6, 28, 3600 }, + [3] = { 32.7, 93.9, 28, 3600 }, + [4] = { 32.9, 93.4, 28, 3600 }, + [5] = { 32.5, 93.3, 28, 3600 }, + [6] = { 32.3, 91.6, 28, 3600 }, + [7] = { 31.5, 91.4, 28, 3600 }, + [8] = { 25.2, 29.7, 33, 3600 }, + [9] = { 25.7, 29.5, 33, 3600 }, + [10] = { 24.4, 24.8, 33, 3600 }, + [11] = { 25, 23, 33, 3600 }, + [12] = { 30, 19.8, 33, 3600 }, + [13] = { 43, 19.4, 33, 3600 }, + [14] = { 42.7, 18.7, 33, 3600 }, + [15] = { 43.9, 18.3, 33, 3600 }, + [16] = { 33.4, 15.5, 33, 3600 }, + [17] = { 24.3, 12.6, 33, 3600 }, + [18] = { 44.6, 11.1, 33, 3600 }, + [19] = { 44.4, 10, 33, 3600 }, + [20] = { 45.6, 9.8, 33, 3600 }, + [21] = { 43.8, 9.4, 33, 3600 }, + [22] = { 38.4, 95.1, 36, 3600 }, + [23] = { 41.5, 93.4, 36, 3600 }, + [24] = { 40.1, 91.2, 36, 3600 }, + [25] = { 39.8, 90.6, 36, 3600 }, + [26] = { 39.9, 53, 36, 3600 }, + [27] = { 42.5, 48, 36, 3600 }, + [28] = { 38.5, 47, 36, 3600 }, + [29] = { 61.7, 45.7, 36, 3600 }, + [30] = { 63.5, 45.3, 36, 3600 }, + [31] = { 63.4, 44.2, 36, 3600 }, + [32] = { 61.1, 44.1, 36, 3600 }, + [33] = { 63.6, 43.4, 36, 3600 }, + [34] = { 63, 43.3, 36, 3600 }, + [35] = { 61.2, 43, 36, 3600 }, + [36] = { 62.7, 40.7, 36, 3600 }, + [37] = { 61.5, 40.4, 36, 3600 }, + [38] = { 41.4, 40.1, 36, 3600 }, + [39] = { 47.4, 34.8, 36, 3600 }, + [40] = { 68.4, 80.4, 45, 3600 }, + [41] = { 68.1, 78.3, 45, 3600 }, + [42] = { 64.7, 73.9, 45, 3600 }, + [43] = { 61.2, 72.9, 45, 3600 }, + [44] = { 70.6, 70, 45, 3600 }, + [45] = { 63.6, 67.9, 45, 3600 }, + [46] = { 73.8, 65.2, 45, 3600 }, + [47] = { 66, 63.8, 45, 3600 }, + [48] = { 33.4, 31, 45, 3600 }, + [49] = { 33.8, 27.5, 45, 3600 }, + [50] = { 32.3, 26.8, 45, 3600 }, + [51] = { 31.1, 25.9, 45, 3600 }, + [52] = { 15.7, 65, 51, 7200 }, + [53] = { 32.4, 72.4, 267, 3600 }, + [54] = { 40.7, 69, 267, 3600 }, + [55] = { 35.8, 68.8, 267, 3600 }, + [56] = { 44.9, 67.3, 267, 3600 }, + [57] = { 42.5, 31.6, 267, 3600 }, + [58] = { 45.1, 30.2, 267, 3600 }, + [59] = { 43.9, 28.2, 267, 3600 }, + [60] = { 43.7, 27.7, 267, 3600 }, + [61] = { 69.7, 85.8, 400, 3600 }, + [62] = { 71.2, 85.2, 400, 3600 }, + [63] = { 68.5, 82.9, 400, 3600 }, + [64] = { 71.7, 50.3, 405, 3600 }, + [65] = { 74.6, 49.1, 405, 3600 }, + [66] = { 74.6, 47.1, 405, 3600 }, + [67] = { 73.5, 41.6, 405, 3600 }, + [68] = { 55.1, 30, 405, 3600 }, + [69] = { 52.4, 28.5, 405, 3600 }, + [70] = { 54.3, 28.1, 405, 3600 }, + [71] = { 75.5, 26.4, 405, 3600 }, + [72] = { 54.8, 26.1, 405, 3600 }, + [73] = { 74.8, 19.3, 405, 3600 }, + [74] = { 77.2, 17.9, 405, 3600 }, + [75] = { 51.2, 89, 406, 3600 }, + [76] = { 52.9, 87.9, 406, 3600 }, + [77] = { 87.9, 32.1, 5179, 3600 }, + [78] = { 95.2, 29.2, 5179, 3600 }, + [79] = { 90.9, 29, 5179, 3600 }, + [80] = { 98.9, 27.7, 5179, 3600 }, + [81] = { 64.2, 72.2, 5561, 10800 }, + [82] = { 56.5, 68, 5561, 10800 }, + [83] = { 34.9, 64.9, 5561, 10800 }, + [84] = { 34.8, 63.8, 5561, 10800 }, + [85] = { 36.4, 55, 5561, 10800 }, + [86] = { 41.8, 19.4, 5561, 10800 }, + [87] = { 73.1, 81.2, 5581, 7200 }, + [88] = { 66.6, 37.7, 5581, 7200 }, + [89] = { 90.4, 34.3, 5581, 7200 }, + [90] = { 62.3, 24.8, 5581, 1800 }, + }, + }, + [2857] = { + ["coords"] = { + [1] = { 13.9, 74.9, 3, 3600 }, + [2] = { 62.7, 70.3, 3, 3600 }, + [3] = { 50.7, 68.1, 3, 3600 }, + [4] = { 29.5, 56.3, 3, 3600 }, + [5] = { 53.1, 34.9, 3, 3600 }, + [6] = { 53.6, 29.7, 3, 3600 }, + [7] = { 42.4, 28.9, 3, 3600 }, + [8] = { 41.5, 26.2, 3, 3600 }, + [9] = { 40.6, 26, 3, 3600 }, + [10] = { 14, 71.3, 8, 3600 }, + [11] = { 13.9, 56, 8, 3600 }, + [12] = { 11.7, 34.2, 8, 3600 }, + [13] = { 55, 29.8, 8, 3600 }, + [14] = { 57, 24.9, 8, 3600 }, + [15] = { 61.4, 24, 8, 5483 }, + [16] = { 62.6, 23.3, 8, 3600 }, + [17] = { 64.1, 22.4, 8, 8736 }, + [18] = { 60.1, 22, 8, 3600 }, + [19] = { 62, 21, 8, 3600 }, + [20] = { 65.8, 18.4, 8, 3600 }, + [21] = { 92.7, 51.4, 11, 7200 }, + [22] = { 63.2, 27.3, 15, 3600 }, + [23] = { 64.4, 26.9, 15, 3600 }, + [24] = { 30.6, 22.4, 15, 3600 }, + [25] = { 33.7, 22.1, 15, 3600 }, + [26] = { 31.4, 21.5, 15, 3600 }, + [27] = { 30.9, 20.7, 15, 3600 }, + [28] = { 63.1, 19, 15, 3600 }, + [29] = { 61.6, 18.2, 15, 3600 }, + [30] = { 57.7, 16.5, 15, 3600 }, + [31] = { 57.3, 15.1, 15, 3600 }, + [32] = { 58, 13.4, 15, 3600 }, + [33] = { 59.1, 9.7, 15, 3600 }, + [34] = { 63.2, 7.2, 15, 3600 }, + [35] = { 51.4, 65.6, 17, 3600 }, + [36] = { 53, 65.4, 17, 3600 }, + [37] = { 51.8, 65.1, 17, 3600 }, + [38] = { 51.5, 64.7, 17, 3600 }, + [39] = { 66.1, 59, 17, 3600 }, + [40] = { 68.3, 57.7, 17, 3600 }, + [41] = { 47.3, 40, 33, 3600 }, + [42] = { 41.8, 35.6, 33, 3600 }, + [43] = { 46.2, 31.8, 33, 3600 }, + [44] = { 37, 31.3, 33, 3600 }, + [45] = { 37.6, 30.8, 33, 3600 }, + [46] = { 35.5, 23.8, 33, 3600 }, + [47] = { 37.7, 22.8, 33, 3600 }, + [48] = { 20.4, 11.7, 33, 3600 }, + [49] = { 25.4, 9.6, 33, 3600 }, + [50] = { 26.2, 8.6, 33, 3600 }, + [51] = { 23.3, 8, 33, 3600 }, + [52] = { 49.6, 7.9, 33, 3600 }, + [53] = { 48.7, 6, 33, 3600 }, + [54] = { 47.2, 5.5, 33, 3600 }, + [55] = { 35.8, 55.9, 36, 3600 }, + [56] = { 35.2, 54, 36, 3600 }, + [57] = { 35.3, 53.4, 36, 3600 }, + [58] = { 35.6, 52.9, 36, 3600 }, + [59] = { 58.4, 30.2, 36, 3600 }, + [60] = { 56.4, 26.9, 36, 3600 }, + [61] = { 53.7, 21, 36, 3600 }, + [62] = { 40.3, 20.6, 36, 3600 }, + [63] = { 47.6, 17, 36, 3600 }, + [64] = { 39.6, 15.2, 36, 3600 }, + [65] = { 37.5, 15.1, 36, 3600 }, + [66] = { 38.9, 14.8, 36, 3600 }, + [67] = { 20.7, 89.6, 45, 3600 }, + [68] = { 16.7, 87.4, 45, 3600 }, + [69] = { 23.4, 84.9, 45, 3600 }, + [70] = { 21, 84.8, 45, 3600 }, + [71] = { 54.2, 81.6, 45, 3600 }, + [72] = { 53.6, 79.9, 45, 3600 }, + [73] = { 53.2, 77.2, 45, 3600 }, + [74] = { 53.8, 75.7, 45, 3600 }, + [75] = { 53.4, 74.4, 45, 3600 }, + [76] = { 19.8, 69, 45, 3600 }, + [77] = { 22.7, 67.3, 45, 3600 }, + [78] = { 18.2, 66.7, 45, 3600 }, + [79] = { 28.3, 65.8, 45, 3600 }, + [80] = { 25.9, 65.8, 45, 7200 }, + [81] = { 25.8, 65.8, 45, 3600 }, + [82] = { 18.7, 65, 45, 3600 }, + [83] = { 22.1, 64.9, 45, 3600 }, + [84] = { 25.1, 64.3, 45, 3600 }, + [85] = { 28.6, 62.8, 45, 3600 }, + [86] = { 82.8, 33.4, 45, 3600 }, + [87] = { 85.6, 32.3, 45, 3600 }, + [88] = { 85.6, 30.4, 45, 3600 }, + [89] = { 44.6, 18.8, 45, 7200 }, + [90] = { 23.3, 79.9, 47, 7200 }, + [91] = { 40.6, 94.6, 405, 3600 }, + [92] = { 39.8, 94.2, 405, 3600 }, + [93] = { 65.9, 80.7, 405, 3600 }, + [94] = { 71.9, 78.6, 405, 3600 }, + [95] = { 69.5, 78.5, 405, 3600 }, + [96] = { 73.9, 73.7, 405, 3600 }, + [97] = { 71.4, 71.7, 405, 3600 }, + [98] = { 35.2, 61.4, 405, 3600 }, + [99] = { 32.6, 61.1, 405, 3600 }, + [100] = { 29.3, 60.6, 405, 3600 }, + [101] = { 32.8, 59.6, 405, 3600 }, + [102] = { 29.6, 58, 405, 3600 }, + [103] = { 32.7, 55.1, 405, 3600 }, + [104] = { 30.5, 54.8, 405, 3600 }, + [105] = { 34.2, 52.9, 405, 3600 }, + [106] = { 64.7, 98.7, 1337, 3600 }, + [107] = { 60.7, 97.8, 1337, 3600 }, + [108] = { 67.4, 53.4, 2100, 3600 }, + [109] = { 53.6, 51.7, 2100, 3600 }, + [110] = { 35.4, 48.8, 2100, 3600 }, + [111] = { 54.3, 43.1, 2100, 3600 }, + [112] = { 36.9, 34.8, 2100, 3600 }, + [113] = { 54.2, 18.9, 2100, 3600 }, + [114] = { 42.1, 17.3, 2100, 3600 }, + [115] = { 62.3, 6.9, 2100, 3600 }, + [116] = { 24.7, 99.5, 5602, 3600 }, + [117] = { 24.9, 97, 5602, 3600 }, + [118] = { 19.7, 96.7, 5602, 3600 }, + [119] = { 19.3, 95.4, 5602, 3600 }, + [120] = { 18.9, 95.3, 5602, 3600 }, + [121] = { 61.2, 59.2, 5602, 7200 }, + [122] = { 61, 42.7, 5602, 7200 }, + [123] = { 54.8, 27.1, 5602, 7200 }, + [124] = { 49.9, 19.2, 5602, 7200 }, + [125] = { 40, 18.4, 5602, 7200 }, + [126] = { 59.8, 13, 5602, 7200 }, + [127] = { 50.5, 10.4, 5602, 7200 }, + }, + }, + [2866] = { + ["coords"] = { + [1] = { 55.1, 86, 3, 2700 }, + [2] = { 3.8, 81.7, 3, 2700 }, + [3] = { 45.7, 73.9, 3, 2700 }, + [4] = { 27, 72, 3, 2700 }, + [5] = { 37.8, 70, 3, 2700 }, + [6] = { 15, 63.8, 3, 2700 }, + [7] = { 27, 57.9, 3, 2700 }, + [8] = { 83.1, 57.9, 3, 2700 }, + [9] = { 30.4, 56, 3, 2700 }, + [10] = { 48.7, 54.6, 3, 2700 }, + [11] = { 53.7, 53.9, 3, 2700 }, + [12] = { 20.4, 49.9, 3, 2700 }, + [13] = { 60.4, 49.7, 3, 2700 }, + [14] = { 33.6, 47.9, 3, 2700 }, + [15] = { 21.9, 46.4, 3, 2700 }, + [16] = { 50.8, 44.3, 3, 2700 }, + [17] = { 49, 43.9, 3, 2700 }, + [18] = { 22.4, 42.6, 3, 2700 }, + [19] = { 48.4, 39.9, 3, 2700 }, + [20] = { 63.2, 35.9, 3, 2700 }, + [21] = { 40.4, 75.7, 4, 2700 }, + [22] = { 43.7, 70.8, 4, 2700 }, + [23] = { 36.5, 70.5, 4, 2700 }, + [24] = { 34.1, 70.1, 4, 2700 }, + [25] = { 54.7, 59.4, 4, 2700 }, + [26] = { 42.1, 58.8, 4, 2700 }, + [27] = { 51.5, 54.4, 4, 2700 }, + [28] = { 54.3, 50.9, 4, 2700 }, + [29] = { 55.7, 49.7, 4, 2700 }, + [30] = { 44.2, 49.5, 4, 2700 }, + [31] = { 62.1, 48.5, 4, 2700 }, + [32] = { 58.5, 48.2, 4, 2700 }, + [33] = { 46.2, 47.3, 4, 2700 }, + [34] = { 60, 47.2, 4, 2700 }, + [35] = { 62.8, 45.5, 4, 2700 }, + [36] = { 43.2, 44.8, 4, 2700 }, + [37] = { 44.2, 44.7, 4, 2700 }, + [38] = { 58.4, 42.8, 4, 2700 }, + [39] = { 42.5, 42.7, 4, 2700 }, + [40] = { 45, 42.1, 4, 2700 }, + [41] = { 54.3, 41.8, 4, 2700 }, + [42] = { 42.6, 40.8, 4, 2700 }, + [43] = { 60.2, 40.6, 4, 2700 }, + [44] = { 49.3, 40.4, 4, 2700 }, + [45] = { 44.2, 39.9, 4, 2700 }, + [46] = { 50.2, 39.8, 4, 2700 }, + [47] = { 63, 39.1, 4, 2700 }, + [48] = { 49.4, 38.3, 4, 2700 }, + [49] = { 49.2, 36.9, 4, 2700 }, + [50] = { 62.6, 36.2, 4, 2700 }, + [51] = { 47.4, 36, 4, 2700 }, + [52] = { 48.3, 35.8, 4, 2700 }, + [53] = { 39.4, 34.9, 4, 2700 }, + [54] = { 45.6, 34.7, 4, 2700 }, + [55] = { 38.2, 34.2, 4, 2700 }, + [56] = { 38.7, 31.3, 4, 2700 }, + [57] = { 40.5, 30.7, 4, 2700 }, + [58] = { 63.4, 30.5, 4, 2700 }, + [59] = { 64.5, 29.4, 4, 2700 }, + [60] = { 44.2, 28.8, 4, 2700 }, + [61] = { 57.8, 27.9, 4, 2700 }, + [62] = { 48.2, 16.1, 4, 2700 }, + [63] = { 73.4, 22.9, 33, 2700 }, + [64] = { 72.1, 22.6, 33, 2700 }, + [65] = { 27.4, 82, 51, 2700 }, + [66] = { 24.3, 78.1, 51, 2700 }, + [67] = { 82.9, 76.9, 51, 2700 }, + [68] = { 37.3, 76, 51, 2700 }, + [69] = { 55.7, 75.4, 51, 2700 }, + [70] = { 20.4, 74.6, 51, 2700 }, + [71] = { 42.8, 74.3, 51, 2700 }, + [72] = { 24.9, 71.4, 51, 2700 }, + [73] = { 24.9, 71.1, 51, 2700 }, + [74] = { 29.3, 68.4, 51, 2700 }, + [75] = { 33.1, 66, 51, 2700 }, + [76] = { 58.4, 64.5, 51, 2700 }, + [77] = { 46.5, 62.9, 51, 2700 }, + [78] = { 49.7, 62.2, 51, 2700 }, + [79] = { 41.3, 62.1, 51, 2700 }, + [80] = { 29.5, 62.1, 51, 2700 }, + [81] = { 29, 61.2, 51, 2700 }, + [82] = { 51.9, 61, 51, 2700 }, + [83] = { 58.3, 56.9, 51, 2700 }, + [84] = { 25.5, 54.3, 51, 2700 }, + [85] = { 31.1, 52.9, 51, 2700 }, + [86] = { 56.2, 52.8, 51, 2700 }, + [87] = { 61.4, 51.9, 51, 2700 }, + [88] = { 39.2, 51.2, 51, 2700 }, + [89] = { 70.1, 50, 51, 2700 }, + [90] = { 46.2, 48.6, 51, 2700 }, + [91] = { 27.9, 48.5, 51, 2700 }, + [92] = { 46.4, 48.2, 51, 2700 }, + [93] = { 59.3, 46.4, 51, 2700 }, + [94] = { 50.6, 46.4, 51, 2700 }, + [95] = { 40.5, 45.9, 51, 2700 }, + [96] = { 40.8, 45.6, 51, 2700 }, + [97] = { 32.2, 42.4, 51, 2700 }, + [98] = { 27.9, 41.6, 51, 2700 }, + [99] = { 23.1, 41.2, 51, 2700 }, + [100] = { 38.1, 33.7, 51, 2700 }, + [101] = { 25.6, 33.5, 51, 2700 }, + [102] = { 73, 33.3, 51, 2700 }, + [103] = { 56.3, 33, 51, 2700 }, + [104] = { 22.2, 29.5, 51, 2700 }, + [105] = { 60.8, 29.4, 51, 2700 }, + [106] = { 22.5, 29, 51, 2700 }, + [107] = { 27, 23.8, 51, 2700 }, + [108] = { 73.8, 11.5, 51, 2700 }, + [109] = { 29.6, 38.8, 406, 2700 }, + [110] = { 57, 89.9, 440, 2700 }, + [111] = { 40.1, 76.8, 440, 2700 }, + [112] = { 29.8, 74.8, 440, 2700 }, + [113] = { 46.8, 73.9, 440, 2700 }, + [114] = { 37.2, 73.4, 440, 2700 }, + [115] = { 41, 66.8, 440, 2700 }, + [116] = { 39.1, 66.8, 440, 2700 }, + [117] = { 35.3, 64.6, 440, 2700 }, + [118] = { 33.8, 61.7, 440, 2700 }, + [119] = { 40.4, 61.2, 440, 2700 }, + [120] = { 45.5, 61.1, 440, 2700 }, + [121] = { 50.8, 60.6, 440, 2700 }, + [122] = { 36.7, 60.2, 440, 2700 }, + [123] = { 55.9, 58.8, 440, 2700 }, + [124] = { 63.8, 58.2, 440, 2700 }, + [125] = { 31.4, 58.2, 440, 2700 }, + [126] = { 36.2, 55.9, 440, 2700 }, + [127] = { 33.3, 55.4, 440, 2700 }, + [128] = { 41, 53.2, 440, 2700 }, + [129] = { 46.3, 51, 440, 2700 }, + [130] = { 59.9, 50.9, 440, 2700 }, + [131] = { 56.6, 50.1, 440, 2700 }, + [132] = { 71.5, 50, 440, 2700 }, + [133] = { 44.4, 47.5, 440, 2700 }, + [134] = { 71.6, 47.4, 440, 2700 }, + [135] = { 49.8, 44.3, 440, 2700 }, + [136] = { 55.5, 44.3, 440, 2700 }, + [137] = { 59.9, 43.7, 440, 2700 }, + [138] = { 62.8, 43.6, 440, 2700 }, + [139] = { 44.9, 42.9, 440, 2700 }, + [140] = { 70.5, 42.8, 440, 2700 }, + [141] = { 47.7, 42.3, 440, 2700 }, + [142] = { 64.6, 41.2, 440, 2700 }, + [143] = { 66.6, 40.9, 440, 2700 }, + [144] = { 54.6, 40.7, 440, 2700 }, + [145] = { 40, 39.3, 440, 2700 }, + [146] = { 48.6, 37.2, 440, 2700 }, + [147] = { 37.6, 37.2, 440, 2700 }, + [148] = { 47.1, 36.1, 440, 2700 }, + [149] = { 63.3, 35, 440, 2700 }, + [150] = { 54.4, 35, 440, 2700 }, + [151] = { 65.8, 34.5, 440, 2700 }, + [152] = { 49.8, 33.6, 440, 2700 }, + [153] = { 56.5, 32.7, 440, 2700 }, + [154] = { 47.3, 32.3, 440, 2700 }, + [155] = { 64.2, 32.2, 440, 2700 }, + [156] = { 41.5, 31.2, 440, 2700 }, + [157] = { 44.9, 30, 440, 2700 }, + [158] = { 65.6, 29.2, 440, 2700 }, + [159] = { 46.8, 27, 440, 2700 }, + [160] = { 41.5, 26.2, 440, 2700 }, + [161] = { 57, 24.8, 440, 2700 }, + [162] = { 38.6, 24.8, 440, 2700 }, + [163] = { 44.4, 24.8, 440, 2700 }, + [164] = { 61.7, 24.1, 440, 2700 }, + [165] = { 65.7, 20.1, 440, 2700 }, + [166] = { 1.9, 71.8, 1941, 2700 }, + [167] = { 28, 62.7, 1941, 2700 }, + [168] = { 68.8, 59.8, 1941, 2700 }, + [169] = { 48.4, 21.8, 1941, 2700 }, + [170] = { 31.6, 17.4, 1941, 2700 }, + [171] = { 98.5, 46, 5581, 2700 }, + [172] = { 96.3, 43.3, 5581, 2700 }, + [173] = { 93.7, 40.9, 5581, 2700 }, + [174] = { 96.8, 38.7, 5581, 2700 }, + [175] = { 96.8, 38.5, 5581, 2700 }, + [176] = { 99.8, 36.7, 5581, 2700 }, + [177] = { 100, 32.3, 5581, 2700 }, + [178] = { 99.6, 31.7, 5581, 2700 }, + [179] = { 97.2, 26.9, 5581, 2700 }, + [180] = { 98.9, 22.9, 5581, 2700 }, + [181] = { 98.8, 18.1, 5581, 2700 }, + [182] = { 95.6, 17.9, 5581, 2700 }, + [183] = { 97.3, 12.6, 5581, 2700 }, + [184] = { 94.9, 9.8, 5581, 2700 }, + [185] = { 95.2, 9.5, 5581, 2700 }, + [186] = { 98.2, 5.9, 5581, 2700 }, + [187] = { 29.3, 99.9, 5602, 2700 }, + }, + }, + [2867] = { + ["coords"] = { + [1] = { 66.9, 23.5, 3, 2 }, + [2] = { 31, 94.2, 5602, 2 }, + }, + }, + [2868] = { + ["coords"] = { + [1] = { 53, 33.9, 3, 2 }, + [2] = { 24.6, 99, 5602, 2 }, + }, + ["fac"] = "A", + }, + [2875] = { + ["coords"] = { + [1] = { 50.9, 62.4, 3, 2 }, + }, + ["fac"] = "A", + }, + [2883] = { + ["coords"] = { + [1] = { 69.7, 81, 12, 900 }, + [2] = { 68.6, 78.4, 12, 180 }, + [3] = { 69.1, 77.6, 12, 900 }, + }, + }, + [2908] = { + ["coords"] = { + [1] = { 53.7, 48.2, 215, 2 }, + }, + ["fac"] = "H", + }, + [2910] = { + ["coords"] = { + [1] = { 53.7, 67.1, 215, 120 }, + [2] = { 53.2, 66.7, 215, 120 }, + [3] = { 54.1, 66.4, 215, 120 }, + [4] = { 53.5, 66.3, 215, 120 }, + [5] = { 53.9, 66.1, 215, 120 }, + [6] = { 53.3, 65.8, 215, 120 }, + [7] = { 44.4, 46.3, 215, 120 }, + [8] = { 44.4, 45.9, 215, 120 }, + [9] = { 44.1, 45.5, 215, 120 }, + [10] = { 45.1, 45.4, 215, 120 }, + [11] = { 44.2, 44.6, 215, 120 }, + [12] = { 44.4, 44.4, 215, 120 }, + [13] = { 42.8, 14.4, 215, 120 }, + [14] = { 42.4, 14.2, 215, 120 }, + [15] = { 43.1, 13.9, 215, 120 }, + [16] = { 42.8, 13.5, 215, 120 }, + }, + }, + [2912] = { + ["coords"] = { + [1] = { 38.3, 57.2, 17, 180 }, + [2] = { 37.3, 56.4, 17, 180 }, + [3] = { 56.7, 73.1, 215, 180 }, + [4] = { 38.8, 71.4, 215, 180 }, + [5] = { 51.1, 71.1, 215, 180 }, + [6] = { 64, 70.7, 215, 180 }, + [7] = { 34.6, 70.4, 215, 180 }, + [8] = { 44.9, 70.2, 215, 180 }, + [9] = { 42.7, 70.2, 215, 180 }, + [10] = { 57.2, 70, 215, 180 }, + [11] = { 37.4, 68.4, 215, 180 }, + [12] = { 47.8, 68.2, 215, 180 }, + [13] = { 59.8, 67.1, 215, 180 }, + [14] = { 50.4, 66.5, 215, 180 }, + [15] = { 50, 66.4, 215, 180 }, + [16] = { 34.2, 66.1, 215, 180 }, + [17] = { 57.7, 64.8, 215, 180 }, + [18] = { 48.7, 64.4, 215, 180 }, + [19] = { 41.2, 64, 215, 180 }, + [20] = { 38.8, 63.8, 215, 180 }, + [21] = { 56, 62.2, 215, 180 }, + [22] = { 52, 61.1, 215, 180 }, + [23] = { 38.8, 59.7, 215, 180 }, + [24] = { 44.9, 59.7, 215, 180 }, + [25] = { 58.1, 58.4, 215, 180 }, + [26] = { 53.5, 58, 215, 180 }, + [27] = { 64.3, 57.7, 215, 180 }, + [28] = { 35.4, 57.7, 215, 180 }, + [29] = { 42.1, 56.4, 215, 180 }, + [30] = { 49.3, 56.2, 215, 180 }, + [31] = { 62.3, 56.1, 215, 180 }, + [32] = { 59.2, 54.3, 215, 180 }, + [33] = { 41.1, 53.5, 215, 180 }, + [34] = { 56.1, 52.6, 215, 180 }, + [35] = { 45.4, 52.2, 215, 180 }, + [36] = { 43.8, 51.7, 215, 180 }, + [37] = { 56.3, 50.9, 215, 180 }, + [38] = { 44.7, 49, 215, 180 }, + [39] = { 52, 47.4, 215, 180 }, + [40] = { 43.3, 46.1, 215, 180 }, + [41] = { 46.8, 45.6, 215, 180 }, + [42] = { 35.6, 43.4, 215, 180 }, + [43] = { 38.3, 42.5, 215, 180 }, + [44] = { 35.8, 36.8, 215, 180 }, + [45] = { 56.9, 36.4, 215, 180 }, + [46] = { 52.8, 31.2, 215, 180 }, + [47] = { 47.3, 31.1, 215, 180 }, + [48] = { 56.6, 30.5, 215, 180 }, + [49] = { 48.2, 25.9, 215, 180 }, + [50] = { 38.8, 16, 215, 180 }, + [51] = { 47.2, 15.9, 215, 180 }, + [52] = { 41.8, 13.1, 215, 180 }, + }, + }, + [2933] = { + ["coords"] = { + [1] = { 81.5, 49.9, 3, 2 }, + }, + }, + [2977] = { + ["coords"] = { + [1] = { 36.1, 76.6, 215, 900 }, + }, + }, + [2978] = { + ["coords"] = { + [1] = { 36.1, 76.6, 215, 900 }, + }, + }, + [3076] = { + ["coords"] = { + [1] = { 63.2, 82.7, 215, 2 }, + }, + }, + [3189] = { + ["coords"] = { + [1] = { 49.8, 81.3, 14, 2 }, + }, + }, + [3190] = { + ["coords"] = { + [1] = { 47.7, 77.3, 14, 2 }, + }, + }, + [3192] = { + ["coords"] = { + [1] = { 46.2, 78.9, 14, 2 }, + }, + }, + [3236] = { + ["coords"] = { + [1] = { 62.1, 60.7, 14, 60 }, + [2] = { 62.5, 60.6, 14, 60 }, + [3] = { 62.4, 59.9, 14, 60 }, + [4] = { 63.2, 58.1, 14, 60 }, + [5] = { 63.3, 57.3, 14, 60 }, + [6] = { 62.3, 56.3, 14, 60 }, + [7] = { 63.6, 56.3, 14, 60 }, + [8] = { 61.4, 56.1, 14, 60 }, + [9] = { 61.9, 55.5, 14, 60 }, + [10] = { 64.7, 53.6, 14, 60 }, + [11] = { 64.2, 53.5, 14, 60 }, + [12] = { 63.8, 53, 14, 60 }, + [13] = { 63.9, 50.3, 14, 60 }, + [14] = { 64.6, 50, 14, 60 }, + [15] = { 62, 46.3, 14, 60 }, + [16] = { 62.4, 46, 14, 60 }, + [17] = { 61.8, 45.8, 14, 60 }, + [18] = { 62.2, 42.5, 14, 60 }, + [19] = { 61.9, 42.3, 14, 60 }, + [20] = { 62.1, 41.7, 14, 60 }, + }, + }, + [3238] = { + ["coords"] = { + [1] = { 45, 62.2, 17, 300 }, + [2] = { 56.6, 43.7, 17, 300 }, + [3] = { 41.8, 38.8, 17, 300 }, + [4] = { 54.7, 37.2, 17, 300 }, + [5] = { 55.7, 27.3, 17, 300 }, + [6] = { 55.8, 20, 17, 300 }, + [7] = { 37.9, 16.2, 17, 300 }, + [8] = { 43.8, 12.1, 17, 300 }, + [9] = { 57.2, 9, 17, 300 }, + }, + }, + [3239] = { + ["coords"] = { + [1] = { 59.3, 57.6, 14, 5 }, + }, + ["fac"] = "H", + }, + [3240] = { + ["coords"] = { + [1] = { 62.1, 96.2, 14, 60 }, + [2] = { 63, 94.4, 14, 60 }, + [3] = { 59.8, 89.7, 14, 60 }, + [4] = { 68.3, 88.5, 14, 60 }, + [5] = { 68.5, 86.9, 14, 60 }, + [6] = { 60.3, 82.9, 14, 60 }, + [7] = { 64.9, 82.4, 14, 60 }, + [8] = { 69.2, 82.3, 14, 60 }, + [9] = { 61.4, 78.3, 14, 60 }, + [10] = { 69.7, 74.6, 14, 60 }, + [11] = { 64.6, 73.3, 14, 60 }, + [12] = { 68.4, 71.9, 14, 60 }, + [13] = { 67, 71.4, 14, 60 }, + [14] = { 69.7, 70.4, 14, 60 }, + [15] = { 77.7, 47.3, 17, 60 }, + [16] = { 78.1, 46.4, 17, 60 }, + [17] = { 76.4, 43.9, 17, 60 }, + [18] = { 80.9, 43.3, 17, 60 }, + [19] = { 81, 42.4, 17, 60 }, + }, + ["fac"] = "H", + }, + [3290] = { + ["coords"] = { + [1] = { 48.1, 34.4, 14, 60 }, + [2] = { 49.1, 33.1, 14, 60 }, + [3] = { 49.6, 32.1, 14, 60 }, + [4] = { 47.2, 30.9, 14, 60 }, + [5] = { 47.2, 29.7, 14, 60 }, + [6] = { 51.7, 27.8, 14, 60 }, + [7] = { 49.9, 26.9, 14, 60 }, + [8] = { 50.9, 25.9, 14, 60 }, + [9] = { 50.1, 25.7, 14, 60 }, + [10] = { 49.1, 22.6, 14, 60 }, + }, + }, + [3301] = { + ["coords"] = { + [1] = { 44.8, 59.4, 17, 900 }, + [2] = { 31.2, 21.9, 17, 900 }, + [3] = { 44.1, 75.9, 215, 900 }, + [4] = { 74.5, 42.8, 357, 900 }, + [5] = { 66.6, 38.3, 357, 180 }, + [6] = { 34.1, 39.9, 400, 180 }, + [7] = { 74.6, 82.5, 406, 900 }, + [8] = { 90.8, 85.3, 2557, 180 }, + }, + }, + [3523] = { + ["coords"] = { + [1] = { 48, 19.1, 17, 900 }, + }, + }, + [3524] = { + ["coords"] = { + [1] = { 48, 19.1, 17, 900 }, + }, + }, + [3640] = { + ["coords"] = { + [1] = { 55.3, 44.3, 17, 60 }, + [2] = { 55.8, 43.4, 17, 60 }, + [3] = { 53.4, 43.4, 17, 60 }, + [4] = { 55.3, 43.2, 17, 60 }, + [5] = { 56.1, 43.1, 17, 60 }, + [6] = { 46.8, 41.9, 17, 60 }, + [7] = { 55.5, 41.8, 17, 60 }, + [8] = { 45.8, 40.9, 17, 60 }, + [9] = { 47.5, 40.6, 17, 60 }, + [10] = { 45.8, 39.8, 17, 60 }, + [11] = { 45.8, 38.8, 17, 60 }, + [12] = { 46.7, 38.8, 17, 60 }, + [13] = { 46.3, 38, 17, 60 }, + [14] = { 46.4, 37.5, 17, 60 }, + [15] = { 43.9, 24.4, 17, 60 }, + [16] = { 45.2, 23.3, 17, 60 }, + [17] = { 44.7, 22.5, 17, 60 }, + [18] = { 44.9, 22.1, 17, 60 }, + [19] = { 45.3, 22.1, 17, 60 }, + [20] = { 45.6, 21.9, 17, 60 }, + }, + ["fac"] = "AH", + }, + [3643] = { + ["coords"] = { + [1] = { 41.5, 66.7, 40, 1 }, + }, + ["fac"] = "A", + }, + [3644] = { + ["coords"] = { + [1] = { 47, 85.6, 17, 15 }, + }, + }, + [3646] = { + ["coords"] = { + [1] = { 26.3, 58.5, 15, 2 }, + [2] = { 49.1, 84.3, 17, 2 }, + }, + }, + [3658] = { + ["coords"] = { + [1] = { 67.8, 60.5, 1, 180 }, + [2] = { 68.1, 54.4, 1, 180 }, + [3] = { 46.9, 53.6, 1, 180 }, + [4] = { 77.3, 52.6, 1, 180 }, + [5] = { 46, 51.6, 1, 180 }, + [6] = { 34.4, 51.5, 1, 180 }, + [7] = { 63, 50.1, 1, 180 }, + [8] = { 49.5, 48.5, 1, 180 }, + [9] = { 62, 46.9, 1, 180 }, + [10] = { 30.8, 45.5, 1, 180 }, + [11] = { 58, 43.8, 1, 180 }, + [12] = { 84.1, 38, 1, 180 }, + [13] = { 26.5, 36.6, 1, 180 }, + [14] = { 27.5, 36.4, 1, 180 }, + [15] = { 41.7, 36, 1, 180 }, + [16] = { 26.3, 91.8, 12, 180 }, + [17] = { 43.1, 89.4, 12, 180 }, + [18] = { 25, 89.2, 12, 180 }, + [19] = { 26.2, 86.8, 12, 180 }, + [20] = { 76.2, 86.4, 12, 180 }, + [21] = { 27.4, 86, 12, 180 }, + [22] = { 43.5, 85.1, 12, 180 }, + [23] = { 50.9, 83.1, 12, 180 }, + [24] = { 33.7, 82.7, 12, 180 }, + [25] = { 39.2, 82.6, 12, 180 }, + [26] = { 23.5, 80.8, 12, 180 }, + [27] = { 84.6, 79.9, 12, 180 }, + [28] = { 25.3, 77.3, 12, 180 }, + [29] = { 45.8, 73.1, 12, 180 }, + [30] = { 24.8, 72, 12, 180 }, + [31] = { 64.9, 70.6, 12, 180 }, + [32] = { 64.9, 69.8, 12, 180 }, + [33] = { 84.7, 69.1, 12, 180 }, + [34] = { 41.9, 67.4, 12, 180 }, + [35] = { 44, 65.6, 12, 180 }, + [36] = { 30.3, 64.8, 12, 180 }, + [37] = { 47.6, 62.2, 12, 180 }, + [38] = { 35.9, 59.5, 12, 180 }, + [39] = { 52.6, 59.1, 12, 180 }, + [40] = { 34, 57, 12, 180 }, + [41] = { 67.7, 45, 12, 180 }, + [42] = { 66.4, 41.5, 12, 180 }, + [43] = { 69.4, 38.2, 12, 180 }, + [44] = { 62.8, 97.9, 14, 180 }, + [45] = { 61.2, 89.2, 14, 180 }, + [46] = { 68.3, 83.2, 14, 180 }, + [47] = { 50.1, 81, 14, 180 }, + [48] = { 64.4, 72.8, 14, 180 }, + [49] = { 60.9, 69.4, 14, 180 }, + [50] = { 57.9, 55.7, 14, 180 }, + [51] = { 51.8, 43.7, 14, 180 }, + [52] = { 53.1, 42.2, 14, 180 }, + [53] = { 51.8, 41.7, 14, 180 }, + [54] = { 49.8, 40.4, 14, 180 }, + [55] = { 49.6, 40.3, 14, 180 }, + [56] = { 40.2, 35.3, 14, 180 }, + [57] = { 48.7, 32.4, 14, 180 }, + [58] = { 48.6, 29, 14, 180 }, + [59] = { 50.5, 25.3, 14, 180 }, + [60] = { 59.4, 24.8, 14, 180 }, + [61] = { 51.9, 24.5, 14, 180 }, + [62] = { 46.2, 23.2, 14, 180 }, + [63] = { 41.9, 15.3, 14, 180 }, + [64] = { 37.5, 50.1, 17, 180 }, + [65] = { 38.3, 49.9, 17, 180 }, + [66] = { 78, 48.2, 17, 180 }, + [67] = { 38, 47.6, 17, 180 }, + [68] = { 37.6, 47.2, 17, 180 }, + [69] = { 35.6, 45.6, 17, 180 }, + [70] = { 37, 43.8, 17, 180 }, + [71] = { 77.2, 43.6, 17, 180 }, + [72] = { 80.9, 40.5, 17, 180 }, + [73] = { 26.8, 59.5, 28, 180 }, + [74] = { 67.1, 25.9, 40, 180 }, + [75] = { 83.4, 72.3, 85, 180 }, + [76] = { 77.3, 59.6, 85, 180 }, + [77] = { 38.2, 49.7, 85, 180 }, + [78] = { 33.6, 43.6, 85, 180 }, + [79] = { 46, 38.8, 85, 180 }, + [80] = { 60.5, 33.6, 85, 180 }, + [81] = { 48.9, 33.4, 85, 180 }, + [82] = { 74.9, 26, 85, 180 }, + [83] = { 38.4, 80.2, 141, 180 }, + [84] = { 47.4, 77.5, 141, 180 }, + [85] = { 37.7, 67.1, 141, 180 }, + [86] = { 43.9, 61.1, 141, 180 }, + [87] = { 55.9, 59.7, 141, 180 }, + [88] = { 66.1, 59.1, 141, 180 }, + [89] = { 55.6, 56.7, 141, 180 }, + [90] = { 69.3, 53, 141, 180 }, + [91] = { 43, 41.9, 141, 180 }, + [92] = { 36, 39.1, 141, 180 }, + [93] = { 34.1, 34.9, 141, 180 }, + [94] = { 32.2, 31.9, 141, 180 }, + [95] = { 48.4, 72.3, 215, 180 }, + [96] = { 46, 57.6, 215, 180 }, + [97] = { 47.2, 56.6, 215, 180 }, + [98] = { 48.1, 56, 215, 180 }, + [99] = { 31.7, 48.2, 215, 180 }, + [100] = { 53.7, 48, 215, 180 }, + [101] = { 32.9, 47.3, 215, 180 }, + [102] = { 62.7, 43.8, 215, 180 }, + [103] = { 64.3, 43.3, 215, 180 }, + [104] = { 63.7, 38.9, 215, 180 }, + [105] = { 63, 38.1, 215, 180 }, + [106] = { 58.9, 34.8, 215, 180 }, + [107] = { 61.8, 31.3, 215, 180 }, + [108] = { 40.3, 16.1, 215, 180 }, + [109] = { 86.2, 78.3, 405, 180 }, + [110] = { 93.3, 71.5, 721, 180 }, + [111] = { 98.4, 96.8, 1657, 180 }, + [112] = { 5, 61.9, 5602, 180 }, + }, + }, + [3659] = { + ["coords"] = { + [1] = { 33.6, 76.5, 10, 3600 }, + [2] = { 21.5, 72.8, 10, 3600 }, + [3] = { 65.5, 68.1, 10, 3600 }, + [4] = { 72.4, 56.9, 10, 3600 }, + [5] = { 21.3, 55.6, 10, 3600 }, + [6] = { 60.3, 40.3, 10, 3600 }, + [7] = { 48, 73.8, 11, 7200 }, + [8] = { 62.6, 69.2, 11, 7200 }, + [9] = { 5.6, 57.1, 11, 7200 }, + [10] = { 40.2, 27.4, 11, 7200 }, + [11] = { 28.8, 16.6, 11, 7200 }, + [12] = { 19.3, 85.7, 36, 7200 }, + [13] = { 62.2, 83.5, 36, 7200 }, + [14] = { 22.7, 60.3, 36, 7200 }, + [15] = { 79.2, 48.1, 44, 7200 }, + [16] = { 75.6, 46.6, 44, 7200 }, + [17] = { 36.2, 7.3, 44, 7200 }, + [18] = { 71.4, 84.5, 46, 7200 }, + [19] = { 38.1, 67.5, 209, 180 }, + [20] = { 44, 53.6, 209, 180 }, + [21] = { 66.2, 85.8, 267, 7200 }, + [22] = { 30.1, 73.7, 267, 7200 }, + [23] = { 36.6, 69.6, 267, 7200 }, + [24] = { 26.7, 59.8, 267, 7200 }, + [25] = { 74.7, 40.8, 267, 7200 }, + [26] = { 83.9, 40.6, 267, 7200 }, + [27] = { 25.7, 23.4, 267, 7200 }, + [28] = { 63.3, 21.5, 267, 7200 }, + [29] = { 89.1, 77, 331, 7200 }, + [30] = { 64.7, 75.6, 331, 7200 }, + [31] = { 85, 64.6, 331, 7200 }, + [32] = { 54.3, 61.2, 331, 7200 }, + [33] = { 31.3, 45, 331, 7200 }, + [34] = { 85.9, 33.3, 5179, 7200 }, + [35] = { 91.6, 29.7, 5179, 7200 }, + [36] = { 82.9, 21.2, 5179, 7200 }, + [37] = { 5.6, 35.7, 5602, 7200 }, + [38] = { 16.9, 32.1, 5602, 7200 }, + }, + }, + [3660] = { + ["coords"] = { + [1] = { 64.4, 44.2, 17, 3600 }, + [2] = { 38.9, 29.4, 148, 7200 }, + [3] = { 58.9, 10.6, 148, 7200 }, + }, + }, + [3661] = { + ["coords"] = { + [1] = { 61.4, 44.2, 17, 3600 }, + [2] = { 51.5, 31, 17, 3600 }, + [3] = { 51.7, 19.7, 148, 7200 }, + }, + }, + [3662] = { + ["coords"] = { + [1] = { 26.4, 58.7, 15, 25 }, + [2] = { 49.2, 84.4, 17, 25 }, + [3] = { 42.9, 55, 17, 3600 }, + [4] = { 61.8, 54.9, 17, 3600 }, + [5] = { 43.3, 52.4, 17, 3600 }, + [6] = { 62, 46.1, 17, 3600 }, + [7] = { 53.1, 36.5, 17, 3600 }, + [8] = { 52.2, 30.1, 17, 3600 }, + [9] = { 61.2, 24, 17, 3600 }, + [10] = { 34.8, 21.5, 17, 7200 }, + [11] = { 45, 19.9, 17, 3600 }, + [12] = { 43.7, 12.1, 17, 3600 }, + [13] = { 54.7, 5.9, 17, 3600 }, + [14] = { 35.7, 84.9, 38, 7200 }, + [15] = { 69.6, 65.5, 38, 7200 }, + [16] = { 34.7, 43.7, 38, 7200 }, + [17] = { 25.4, 42.9, 38, 7200 }, + [18] = { 69.5, 22.1, 38, 7200 }, + [19] = { 48, 21.1, 38, 7200 }, + [20] = { 42.7, 88.2, 40, 3600 }, + [21] = { 41.9, 77.8, 40, 3600 }, + [22] = { 27.9, 68.9, 40, 3600 }, + [23] = { 26.3, 68.3, 40, 3600 }, + [24] = { 44.1, 68.2, 40, 3600 }, + [25] = { 48.3, 60.7, 40, 3600 }, + [26] = { 30.1, 49.7, 40, 3600 }, + [27] = { 28.4, 33.3, 40, 3600 }, + [28] = { 37.9, 28.4, 40, 3600 }, + [29] = { 52.3, 14.6, 40, 3600 }, + [30] = { 40.6, 10, 40, 3600 }, + [31] = { 30.4, 59.8, 44, 7200 }, + [32] = { 23.4, 27.2, 44, 7200 }, + [33] = { 31.9, 83.7, 148, 7200 }, + [34] = { 36.7, 60.5, 148, 7200 }, + [35] = { 56.5, 13.9, 148, 7200 }, + [36] = { 80.6, 81.8, 406, 7200 }, + [37] = { 40.9, 25.3, 1337, 7200 }, + [38] = { 73.6, 54.9, 1497, 900 }, + [39] = { 69.7, 42.7, 1497, 900 }, + [40] = { 79, 33, 1497, 7200 }, + [41] = { 76.4, 30, 1497, 900 }, + [42] = { 55, 80.7, 1519, 180 }, + [43] = { 65.6, 71.7, 1519, 180 }, + [44] = { 57.4, 71.5, 1519, 180 }, + [45] = { 72.9, 67.8, 1519, 180 }, + [46] = { 41.3, 61.8, 1519, 120 }, + [47] = { 69.3, 61.2, 1519, 180 }, + [48] = { 79.5, 60.7, 1519, 180 }, + [49] = { 68.9, 42.9, 1519, 180 }, + [50] = { 65.7, 35.5, 1519, 180 }, + [51] = { 54.1, 53.2, 1581, 3600 }, + [52] = { 86.6, 41.8, 5138, 180 }, + [53] = { 61, 32.3, 5138, 180 }, + [54] = { 51.8, 96.4, 5581, 180 }, + [55] = { 16.8, 87.7, 5602, 7200 }, + [56] = { 34.2, 77.8, 5602, 7200 }, + [57] = { 16.3, 66.6, 5602, 7200 }, + [58] = { 11.6, 66.2, 5602, 7200 }, + [59] = { 34.2, 55.5, 5602, 7200 }, + [60] = { 23.1, 55, 5602, 7200 }, + }, + }, + [3685] = { + ["coords"] = { + [1] = { 45.2, 72.3, 17, 300 }, + [2] = { 44.1, 72.2, 17, 300 }, + [3] = { 44.2, 71.5, 17, 300 }, + [4] = { 42.9, 71.5, 17, 300 }, + [5] = { 42.9, 71.1, 17, 300 }, + [6] = { 48.1, 71, 17, 300 }, + [7] = { 48.1, 70.9, 17, 300 }, + [8] = { 47.3, 70.4, 17, 300 }, + [9] = { 43.5, 70.2, 17, 300 }, + [10] = { 48.5, 70.1, 17, 300 }, + [11] = { 42.9, 69.9, 17, 300 }, + [12] = { 42.6, 69.9, 17, 300 }, + [13] = { 44.9, 69.4, 17, 300 }, + }, + ["fac"] = "H", + }, + [3689] = { + ["coords"] = { + [1] = { 38.7, 73.2, 14, 3600 }, + [2] = { 26.2, 58.4, 15, 3600 }, + [3] = { 26.4, 57.6, 15, 3600 }, + [4] = { 49.1, 84.2, 17, 3600 }, + [5] = { 49.2, 83.8, 17, 3600 }, + [6] = { 64.9, 47.8, 17, 3600 }, + [7] = { 63.3, 39.5, 17, 3600 }, + [8] = { 65.5, 35.3, 17, 3600 }, + [9] = { 77.9, 74.5, 331, 7200 }, + [10] = { 75.2, 73, 331, 7200 }, + [11] = { 19, 62.9, 719, 604800 }, + }, + }, + [3694] = { + ["coords"] = { + [1] = { 62.6, 62.5, 130, 7200 }, + [2] = { 58.7, 61.5, 130, 7200 }, + [3] = { 7.6, 22.6, 267, 7200 }, + [4] = { 60.4, 42.1, 1519, 180 }, + }, + }, + [3695] = { + ["coords"] = { + [1] = { 62.3, 79.5, 10, 3600 }, + [2] = { 51, 76.2, 10, 3600 }, + [3] = { 71.9, 72.5, 10, 3600 }, + [4] = { 75.5, 48.3, 10, 3600 }, + [5] = { 88.3, 34.8, 10, 3600 }, + [6] = { 17.8, 33.9, 10, 3600 }, + [7] = { 21.6, 57, 11, 7200 }, + [8] = { 12.1, 55.5, 11, 7200 }, + [9] = { 45.4, 45.3, 11, 7200 }, + [10] = { 61.8, 44.7, 11, 7200 }, + [11] = { 16.1, 36.4, 11, 7200 }, + [12] = { 12.8, 35.2, 11, 7200 }, + [13] = { 16.4, 30.4, 11, 7200 }, + [14] = { 61.9, 25.9, 11, 7200 }, + [15] = { 26.3, 25.6, 11, 7200 }, + [16] = { 49.6, 18.3, 11, 7200 }, + [17] = { 26.9, 58.6, 15, 3600 }, + [18] = { 49.4, 84.3, 17, 3600 }, + [19] = { 28, 98.3, 36, 7200 }, + [20] = { 40, 79.7, 36, 7200 }, + [21] = { 20.2, 70.9, 36, 7200 }, + [22] = { 73.5, 78.4, 44, 7200 }, + [23] = { 69.6, 55, 44, 7200 }, + [24] = { 60, 42.9, 44, 7200 }, + [25] = { 10.2, 50.5, 45, 7200 }, + [26] = { 41, 77.2, 209, 180 }, + [27] = { 49, 57.2, 209, 180 }, + [28] = { 71.9, 81.8, 267, 7200 }, + [29] = { 66.4, 61.4, 267, 7200 }, + [30] = { 47, 50.4, 267, 7200 }, + [31] = { 33.3, 34.4, 267, 7200 }, + [32] = { 43.9, 18.2, 267, 7200 }, + [33] = { 66.8, 57.3, 331, 7200 }, + [34] = { 88.9, 56.4, 331, 7200 }, + [35] = { 17.6, 50, 331, 7200 }, + [36] = { 34.3, 38.8, 331, 7200 }, + [37] = { 39.9, 36.5, 331, 7200 }, + [38] = { 12.3, 34.4, 331, 7200 }, + [39] = { 41.4, 18.5, 406, 7200 }, + [40] = { 54.2, 17.2, 406, 7200 }, + [41] = { 3.6, 13.8, 5602, 7200 }, + [42] = { 16.2, 13.3, 5602, 7200 }, + }, + }, + [3703] = { + ["coords"] = { + [1] = { 69.8, 58.1, 5153, 604800 }, + }, + }, + [3704] = { + ["coords"] = { + [1] = { 66.6, 64.6, 5153, 604800 }, + }, + }, + [3705] = { + ["coords"] = { + [1] = { 45.7, 59.1, 17, 3600 }, + [2] = { 48, 58.2, 17, 3600 }, + [3] = { 53.5, 40.9, 17, 3600 }, + [4] = { 61.9, 39.1, 17, 3600 }, + [5] = { 58.1, 33.2, 17, 3600 }, + [6] = { 48.3, 32.6, 17, 3600 }, + [7] = { 52.3, 32.1, 17, 3600 }, + [8] = { 51.2, 30.3, 17, 3600 }, + [9] = { 45.9, 25.3, 17, 3600 }, + [10] = { 59.5, 24.6, 17, 3600 }, + [11] = { 30.9, 24, 17, 7200 }, + [12] = { 31.6, 21.8, 17, 7200 }, + [13] = { 55.9, 19.7, 17, 3600 }, + [14] = { 47.6, 19.4, 17, 3600 }, + [15] = { 49, 10.6, 17, 3600 }, + [16] = { 27.3, 85.3, 38, 7200 }, + [17] = { 24.2, 74.8, 38, 7200 }, + [18] = { 64.5, 66.4, 38, 7200 }, + [19] = { 36.2, 15.5, 38, 7200 }, + [20] = { 37.2, 81.9, 40, 3600 }, + [21] = { 43, 80.6, 40, 3600 }, + [22] = { 42.8, 76.1, 40, 3600 }, + [23] = { 70.1, 73.5, 40, 3600 }, + [24] = { 29.6, 63.6, 40, 3600 }, + [25] = { 57.8, 53.9, 40, 3600 }, + [26] = { 31.9, 83, 44, 7200 }, + [27] = { 17, 62.9, 44, 7200 }, + [28] = { 21.6, 45.5, 44, 7200 }, + [29] = { 27.9, 22.1, 44, 7200 }, + [30] = { 44.4, 84.8, 130, 7200 }, + [31] = { 45, 75.2, 130, 7200 }, + [32] = { 47.5, 74.3, 130, 7200 }, + [33] = { 45.9, 72.4, 130, 7200 }, + [34] = { 45.3, 71.4, 130, 7200 }, + [35] = { 62.9, 68.3, 130, 7200 }, + [36] = { 58.9, 66.1, 130, 7200 }, + [37] = { 63.7, 58.6, 130, 7200 }, + [38] = { 44.1, 85.2, 148, 7200 }, + [39] = { 35.8, 76.2, 148, 7200 }, + [40] = { 39.4, 56.9, 148, 7200 }, + [41] = { 40.2, 54.1, 148, 7200 }, + [42] = { 38.1, 41.2, 148, 7200 }, + [43] = { 52.8, 33.8, 148, 7200 }, + [44] = { 38, 31.7, 148, 7200 }, + [45] = { 55.5, 27.1, 148, 7200 }, + [46] = { 8.1, 30.3, 267, 7200 }, + [47] = { 9.1, 17.5, 267, 7200 }, + [48] = { 70.6, 90.6, 406, 7200 }, + [49] = { 74.1, 86, 406, 7200 }, + [50] = { 71.2, 82.7, 406, 7200 }, + [51] = { 75.3, 82.3, 406, 7200 }, + [52] = { 59.6, 63.9, 406, 7200 }, + [53] = { 48.7, 61, 406, 7200 }, + [54] = { 64.3, 27.2, 718, 3600 }, + [55] = { 78.4, 66.1, 1497, 900 }, + [56] = { 55.1, 58.4, 1497, 900 }, + [57] = { 69.7, 42.7, 1497, 7200 }, + [58] = { 72.8, 34, 1497, 7200 }, + [59] = { 48.6, 89.9, 1519, 120 }, + [60] = { 56.7, 78.7, 1519, 180 }, + [61] = { 65.1, 77.4, 1519, 180 }, + [62] = { 63.3, 73.6, 1519, 180 }, + [63] = { 51.8, 73, 1519, 180 }, + [64] = { 52, 72.9, 1519, 120 }, + [65] = { 57.3, 71.4, 1519, 180 }, + [66] = { 69.7, 69.6, 1519, 180 }, + [67] = { 45.8, 67.9, 1519, 180 }, + [68] = { 72.9, 67.8, 1519, 180 }, + [69] = { 62.3, 62.2, 1519, 180 }, + [70] = { 38.6, 60.8, 1519, 120 }, + [71] = { 59.4, 58.5, 1519, 180 }, + [72] = { 64.7, 49.3, 1519, 180 }, + [73] = { 57.6, 44, 1519, 180 }, + [74] = { 65.7, 35.6, 1519, 180 }, + [75] = { 65.6, 35.2, 1519, 180 }, + [76] = { 17.4, 85, 1581, 3600 }, + [77] = { 62.3, 75.1, 1581, 3600 }, + [78] = { 61, 40.6, 1581, 3600 }, + [79] = { 54.8, 29, 5138, 180 }, + [80] = { 62.6, 18.6, 5138, 180 }, + [81] = { 45.5, 14.3, 5179, 7200 }, + [82] = { 46.2, 3.3, 5179, 7200 }, + [83] = { 49, 2.3, 5179, 7200 }, + [84] = { 47.2, 0.1, 5179, 7200 }, + [85] = { 51.7, 96.5, 5581, 180 }, + [86] = { 51.7, 96.2, 5581, 180 }, + [87] = { 12.5, 88, 5602, 7200 }, + [88] = { 10.9, 82.6, 5602, 7200 }, + [89] = { 31.6, 78.2, 5602, 7200 }, + [90] = { 17.1, 52.2, 5602, 7200 }, + }, + }, + [3706] = { + ["coords"] = { + [1] = { 15.5, 61.5, 3, 7200 }, + [2] = { 26.4, 44.1, 3, 7200 }, + [3] = { 40.2, 28.7, 3, 7200 }, + [4] = { 39.9, 26.9, 3, 7200 }, + [5] = { 32.7, 93, 28, 7200 }, + [6] = { 31.7, 36.8, 33, 900 }, + [7] = { 32.3, 29.6, 33, 900 }, + [8] = { 43.5, 20.4, 33, 900 }, + [9] = { 18.6, 12.4, 33, 900 }, + [10] = { 44.4, 7.8, 33, 900 }, + [11] = { 49.7, 56.6, 36, 7200 }, + [12] = { 38.2, 49.5, 36, 7200 }, + [13] = { 48.7, 44.4, 36, 7200 }, + [14] = { 63.3, 42.9, 36, 7200 }, + [15] = { 39, 39.1, 36, 7200 }, + [16] = { 23.2, 65.2, 45, 7200 }, + [17] = { 26.9, 65.1, 45, 7200 }, + [18] = { 35.4, 43.9, 45, 7200 }, + [19] = { 56.7, 39.1, 45, 7200 }, + [20] = { 74.6, 31.5, 45, 7200 }, + [21] = { 32, 31, 45, 7200 }, + [22] = { 62.2, 68.4, 1519, 3000 }, + [23] = { 71, 72.4, 5581, 300 }, + [24] = { 18.7, 96.6, 5602, 7200 }, + [25] = { 18.6, 95.7, 5602, 7200 }, + }, + }, + [3707] = { + ["coords"] = { + [1] = { 51.1, 67.2, 3, 7200 }, + [2] = { 52.4, 34, 3, 7200 }, + [3] = { 59.6, 40.9, 15, 180 }, + [4] = { 42.8, 30.4, 15, 180 }, + [5] = { 36.6, 30.3, 15, 180 }, + [6] = { 38.2, 26.1, 15, 180 }, + [7] = { 45.1, 24.7, 15, 180 }, + [8] = { 46.9, 24.2, 15, 180 }, + [9] = { 57, 21.1, 15, 180 }, + [10] = { 58.3, 15.6, 15, 180 }, + [11] = { 62.3, 8.3, 15, 180 }, + [12] = { 54.5, 69.7, 17, 180 }, + [13] = { 55.3, 67.5, 17, 180 }, + [14] = { 67.8, 58.3, 17, 180 }, + [15] = { 32.3, 92.1, 28, 7200 }, + [16] = { 29.5, 81, 33, 900 }, + [17] = { 34.4, 73.2, 33, 900 }, + [18] = { 26.4, 58.5, 33, 900 }, + [19] = { 26.7, 48.2, 33, 900 }, + [20] = { 46.4, 43.2, 33, 900 }, + [21] = { 50.8, 36.1, 33, 900 }, + [22] = { 50.3, 30.3, 33, 900 }, + [23] = { 26.8, 19.8, 33, 900 }, + [24] = { 35.8, 11.1, 33, 900 }, + [25] = { 25.8, 9.2, 33, 900 }, + [26] = { 62.7, 41.4, 36, 7200 }, + [27] = { 47.9, 17, 36, 7200 }, + [28] = { 39.1, 15.8, 36, 7200 }, + [29] = { 57.9, 74.8, 45, 7200 }, + [30] = { 64.8, 74.1, 45, 7200 }, + [31] = { 65.9, 64.4, 45, 7200 }, + [32] = { 23.6, 63.6, 45, 7200 }, + [33] = { 29.6, 62, 45, 7200 }, + [34] = { 62, 56.1, 45, 7200 }, + [35] = { 45.8, 75.9, 1337, 180 }, + [36] = { 45.8, 54, 1337, 180 }, + [37] = { 35.3, 51.3, 1337, 180 }, + [38] = { 46.8, 28.1, 1337, 180 }, + [39] = { 33.2, 25.1, 1337, 180 }, + [40] = { 35.8, 64.8, 5561, 300 }, + [41] = { 36.2, 55.4, 5561, 300 }, + [42] = { 70.8, 82, 5581, 300 }, + [43] = { 24.3, 99, 5602, 7200 }, + }, + }, + [3714] = { + ["coords"] = { + [1] = { 26.8, 57.3, 15, 3600 }, + [2] = { 49.4, 83.7, 17, 3600 }, + }, + }, + [3715] = { + ["coords"] = { + [1] = { 27.5, 58.1, 15, 3600 }, + [2] = { 48.6, 84.8, 17, 3600 }, + [3] = { 49.7, 84, 17, 3600 }, + [4] = { 26.8, 98.4, 36, 3600 }, + [5] = { 32.3, 45.3, 267, 3600 }, + [6] = { 36.2, 44.5, 267, 5067 }, + [7] = { 30.2, 43.5, 267, 3600 }, + [8] = { 29.9, 41.6, 267, 3600 }, + [9] = { 36.6, 39.7, 267, 3600 }, + [10] = { 29.3, 39.4, 267, 3600 }, + [11] = { 35.3, 37.3, 267, 3600 }, + [12] = { 32.3, 34.5, 267, 3600 }, + [13] = { 36.4, 25.6, 406, 3600 }, + [14] = { 35.9, 25.5, 406, 3600 }, + [15] = { 34.8, 23.6, 406, 3600 }, + [16] = { 32.7, 23, 406, 3600 }, + [17] = { 87.9, 8.5, 5179, 3600 }, + [18] = { 91.3, 7.8, 5179, 5067 }, + [19] = { 86, 6.9, 5179, 3600 }, + [20] = { 85.7, 5.3, 5179, 3600 }, + [21] = { 91.6, 3.6, 5179, 3600 }, + [22] = { 85.2, 3.3, 5179, 3600 }, + [23] = { 90.4, 1.5, 5179, 3600 }, + }, + }, + [3717] = { + ["coords"] = { + [1] = { 38.2, 37, 17, 300 }, + [2] = { 64.1, 17.9, 215, 300 }, + [3] = { 62.7, 7.7, 361, 180 }, + }, + }, + [3718] = { + ["coords"] = { + [1] = { 61.4, 7.4, 361, 180 }, + [2] = { 41.8, 85, 722, 300 }, + [3] = { 29.4, 91.4, 5628, 300 }, + }, + }, + [3719] = { + ["coords"] = { + [1] = { 67.8, 60.5, 1, 180 }, + [2] = { 68.1, 54.4, 1, 180 }, + [3] = { 46.9, 53.6, 1, 180 }, + [4] = { 77.3, 52.6, 1, 180 }, + [5] = { 46, 51.6, 1, 180 }, + [6] = { 34.4, 51.5, 1, 180 }, + [7] = { 63, 50.1, 1, 180 }, + [8] = { 49.5, 48.5, 1, 180 }, + [9] = { 62, 46.9, 1, 180 }, + [10] = { 30.8, 45.5, 1, 180 }, + [11] = { 58, 43.8, 1, 180 }, + [12] = { 84.1, 38, 1, 180 }, + [13] = { 26.5, 36.6, 1, 180 }, + [14] = { 27.5, 36.4, 1, 180 }, + [15] = { 41.7, 36, 1, 180 }, + [16] = { 26.3, 91.8, 12, 180 }, + [17] = { 43.1, 89.4, 12, 180 }, + [18] = { 25, 89.2, 12, 180 }, + [19] = { 26.2, 86.8, 12, 180 }, + [20] = { 76.2, 86.4, 12, 180 }, + [21] = { 27.4, 86, 12, 180 }, + [22] = { 43.5, 85.1, 12, 180 }, + [23] = { 50.9, 83.1, 12, 180 }, + [24] = { 33.7, 82.7, 12, 180 }, + [25] = { 39.2, 82.6, 12, 180 }, + [26] = { 23.5, 80.8, 12, 180 }, + [27] = { 84.6, 79.9, 12, 180 }, + [28] = { 25.3, 77.3, 12, 180 }, + [29] = { 45.8, 73.1, 12, 180 }, + [30] = { 24.8, 72, 12, 180 }, + [31] = { 64.9, 70.6, 12, 180 }, + [32] = { 64.9, 69.8, 12, 180 }, + [33] = { 84.7, 69.1, 12, 180 }, + [34] = { 41.9, 67.4, 12, 180 }, + [35] = { 44, 65.6, 12, 180 }, + [36] = { 30.3, 64.8, 12, 180 }, + [37] = { 47.6, 62.2, 12, 180 }, + [38] = { 35.9, 59.5, 12, 180 }, + [39] = { 52.6, 59.1, 12, 180 }, + [40] = { 34, 57, 12, 180 }, + [41] = { 67.7, 45, 12, 180 }, + [42] = { 66.4, 41.5, 12, 180 }, + [43] = { 69.4, 38.2, 12, 180 }, + [44] = { 62.8, 97.9, 14, 180 }, + [45] = { 61.2, 89.2, 14, 180 }, + [46] = { 68.3, 83.2, 14, 180 }, + [47] = { 50.1, 81, 14, 180 }, + [48] = { 64.4, 72.8, 14, 180 }, + [49] = { 60.9, 69.4, 14, 180 }, + [50] = { 57.9, 55.7, 14, 180 }, + [51] = { 51.8, 43.7, 14, 180 }, + [52] = { 53.1, 42.2, 14, 180 }, + [53] = { 51.8, 41.7, 14, 180 }, + [54] = { 49.8, 40.4, 14, 180 }, + [55] = { 49.6, 40.3, 14, 180 }, + [56] = { 40.2, 35.3, 14, 180 }, + [57] = { 48.7, 32.4, 14, 180 }, + [58] = { 48.6, 29, 14, 180 }, + [59] = { 50.5, 25.3, 14, 180 }, + [60] = { 59.4, 24.8, 14, 180 }, + [61] = { 51.9, 24.5, 14, 180 }, + [62] = { 46.2, 23.2, 14, 180 }, + [63] = { 41.9, 15.3, 14, 180 }, + [64] = { 37.5, 50.1, 17, 180 }, + [65] = { 38.3, 49.9, 17, 180 }, + [66] = { 78, 48.2, 17, 180 }, + [67] = { 38, 47.6, 17, 180 }, + [68] = { 37.6, 47.2, 17, 180 }, + [69] = { 35.6, 45.6, 17, 180 }, + [70] = { 37, 43.8, 17, 180 }, + [71] = { 77.2, 43.6, 17, 180 }, + [72] = { 80.9, 40.5, 17, 180 }, + [73] = { 26.8, 59.5, 28, 180 }, + [74] = { 67.1, 25.9, 40, 180 }, + [75] = { 83.4, 72.3, 85, 180 }, + [76] = { 77.3, 59.6, 85, 180 }, + [77] = { 38.2, 49.7, 85, 180 }, + [78] = { 33.6, 43.6, 85, 180 }, + [79] = { 46, 38.8, 85, 180 }, + [80] = { 48.9, 33.4, 85, 180 }, + [81] = { 74.9, 26, 85, 180 }, + [82] = { 38.4, 80.2, 141, 180 }, + [83] = { 47.4, 77.5, 141, 180 }, + [84] = { 37.7, 67.1, 141, 180 }, + [85] = { 43.9, 61.1, 141, 180 }, + [86] = { 55.9, 59.7, 141, 180 }, + [87] = { 66.1, 59.1, 141, 180 }, + [88] = { 55.6, 56.7, 141, 180 }, + [89] = { 69.3, 53, 141, 180 }, + [90] = { 43, 41.9, 141, 180 }, + [91] = { 36, 39.1, 141, 180 }, + [92] = { 34.1, 34.9, 141, 180 }, + [93] = { 32.2, 31.9, 141, 180 }, + [94] = { 48.4, 72.3, 215, 180 }, + [95] = { 46, 57.6, 215, 180 }, + [96] = { 47.2, 56.6, 215, 180 }, + [97] = { 48.1, 56, 215, 180 }, + [98] = { 31.7, 48.2, 215, 180 }, + [99] = { 53.7, 48, 215, 180 }, + [100] = { 32.9, 47.3, 215, 180 }, + [101] = { 62.7, 43.8, 215, 180 }, + [102] = { 64.3, 43.3, 215, 180 }, + [103] = { 63.7, 38.9, 215, 180 }, + [104] = { 63, 38.1, 215, 180 }, + [105] = { 58.9, 34.8, 215, 180 }, + [106] = { 61.8, 31.3, 215, 180 }, + [107] = { 40.3, 16.1, 215, 180 }, + [108] = { 86.2, 78.3, 405, 180 }, + [109] = { 93.3, 71.5, 721, 180 }, + [110] = { 98.4, 96.8, 1657, 180 }, + [111] = { 5, 61.9, 5602, 180 }, + }, + }, + [3724] = { + ["coords"] = { + [1] = { 63.2, 29.5, 17, 120 }, + }, + }, + [3726] = { + ["coords"] = { + [1] = { 64.9, 46.8, 17, 900 }, + [2] = { 64.2, 34, 17, 120 }, + }, + }, + [3729] = { + ["coords"] = { + [1] = { 64.1, 33.3, 17, 120 }, + }, + }, + [3737] = { + ["coords"] = { + [1] = { 55.6, 42.7, 17, 2 }, + }, + ["fac"] = "AH", + }, + [3743] = { + ["coords"] = { + [1] = { 55.6, 42.8, 17, 0 }, + [2] = { 55.7, 42.8, 17, 0 }, + [3] = { 55.6, 42.7, 17, 0 }, + }, + }, + [3763] = { + ["coords"] = { + [1] = { 42.7, 82.8, 17, 900 }, + [2] = { 41.9, 82, 17, 900 }, + [3] = { 41.2, 78.9, 17, 900 }, + [4] = { 41.9, 78.6, 17, 900 }, + [5] = { 50.9, 57.7, 17, 900 }, + [6] = { 43.1, 54.5, 17, 900 }, + [7] = { 52.7, 52.3, 17, 900 }, + [8] = { 45.2, 51.2, 17, 900 }, + [9] = { 40.9, 45.6, 17, 900 }, + [10] = { 41, 45.1, 17, 900 }, + [11] = { 58.9, 27.7, 17, 900 }, + [12] = { 58.1, 26.8, 17, 900 }, + [13] = { 55.8, 26, 17, 900 }, + [14] = { 57.4, 25.6, 17, 900 }, + [15] = { 42.1, 18.9, 17, 900 }, + [16] = { 40, 14.5, 17, 900 }, + }, + }, + [3764] = { + ["coords"] = { + [1] = { 43.2, 83.5, 17, 900 }, + [2] = { 40.7, 79.2, 17, 900 }, + [3] = { 51.2, 57.9, 17, 900 }, + [4] = { 44.9, 51.2, 17, 900 }, + [5] = { 40.6, 45.7, 17, 900 }, + [6] = { 55.4, 27.7, 17, 900 }, + [7] = { 45, 23.6, 17, 900 }, + [8] = { 37.6, 14.8, 17, 900 }, + [9] = { 59.5, 3, 17, 900 }, + [10] = { 88.6, 84.9, 331, 900 }, + [11] = { 85.4, 70.6, 406, 900 }, + }, + }, + [3767] = { + ["coords"] = { + [1] = { 62.6, 49.6, 17, 2 }, + }, + }, + [3768] = { + ["coords"] = { + [1] = { 63.6, 49.3, 17, 2 }, + }, + }, + [3769] = { + ["coords"] = { + [1] = { 10.3, 58.4, 11, 7200 }, + [2] = { 24.6, 71.2, 12, 900 }, + [3] = { 68.6, 48.6, 15, 900 }, + [4] = { 80.7, 63.2, 28, 300 }, + [5] = { 22.4, 87, 139, 300 }, + }, + }, + [3797] = { + ["coords"] = { + [1] = { 72.6, 32.6, 1, 120 }, + [2] = { 68.8, 26.1, 1, 120 }, + [3] = { 82.2, 59.3, 10, 3600 }, + [4] = { 69.3, 57.5, 10, 3600 }, + [5] = { 77.8, 51.9, 10, 3600 }, + [6] = { 77.3, 49.1, 10, 3600 }, + [7] = { 79.8, 48.4, 10, 3600 }, + [8] = { 79.2, 44, 10, 3600 }, + [9] = { 39.1, 71.8, 11, 120 }, + [10] = { 26.6, 68.4, 11, 120 }, + [11] = { 28, 66.4, 11, 120 }, + [12] = { 34.4, 65.8, 11, 120 }, + [13] = { 34.9, 62.5, 11, 120 }, + [14] = { 35.8, 60.8, 11, 120 }, + [15] = { 55.7, 26.1, 15, 900 }, + [16] = { 43.3, 20.5, 33, 900 }, + [17] = { 45.3, 11.5, 33, 900 }, + [18] = { 45, 8.2, 33, 900 }, + [19] = { 32.5, 66.4, 85, 900 }, + [20] = { 59.4, 52.5, 85, 900 }, + [21] = { 45.5, 75.6, 130, 7200 }, + [22] = { 46.1, 75.3, 130, 7200 }, + [23] = { 44.8, 75.2, 130, 7200 }, + [24] = { 43.9, 74.1, 130, 7200 }, + [25] = { 48.1, 73.6, 130, 7200 }, + [26] = { 45.9, 72.3, 130, 7200 }, + [27] = { 44.5, 72.1, 130, 7200 }, + [28] = { 45.6, 71.4, 130, 7200 }, + [29] = { 47, 71.1, 130, 7200 }, + [30] = { 62.9, 67.2, 130, 7200 }, + [31] = { 63, 62.1, 130, 7200 }, + [32] = { 44.7, 38.9, 130, 7200 }, + [33] = { 56.1, 9, 130, 7200 }, + [34] = { 8.1, 28.8, 267, 7200 }, + [35] = { 8.2, 22.1, 267, 7200 }, + [36] = { 46.7, 3.7, 5179, 7200 }, + [37] = { 47.4, 3.3, 5179, 7200 }, + [38] = { 46, 3.2, 5179, 7200 }, + [39] = { 44.9, 2, 5179, 7200 }, + [40] = { 49.8, 1.4, 5179, 7200 }, + }, + }, + [3798] = { + ["coords"] = { + [1] = { 82.1, 59.4, 10, 3600 }, + [2] = { 69.3, 57.5, 10, 3600 }, + [3] = { 77.8, 52, 10, 3600 }, + [4] = { 77.3, 49.1, 10, 3600 }, + [5] = { 79.7, 48.4, 10, 3600 }, + [6] = { 79.2, 44, 10, 3600 }, + [7] = { 55.7, 26.1, 15, 900 }, + [8] = { 43.3, 20.5, 33, 900 }, + [9] = { 45.3, 11.5, 33, 900 }, + [10] = { 45, 8.2, 33, 900 }, + [11] = { 32.5, 66.4, 85, 900 }, + [12] = { 59.4, 52.5, 85, 900 }, + [13] = { 45.4, 75.6, 130, 7200 }, + [14] = { 46.1, 75.3, 130, 7200 }, + [15] = { 44.8, 75.1, 130, 7200 }, + [16] = { 43.9, 74.1, 130, 7200 }, + [17] = { 48.1, 73.6, 130, 7200 }, + [18] = { 45.9, 72.3, 130, 7200 }, + [19] = { 44.5, 72.1, 130, 7200 }, + [20] = { 45.6, 71.3, 130, 7200 }, + [21] = { 47, 71.1, 130, 7200 }, + [22] = { 62.9, 67.2, 130, 7200 }, + [23] = { 63, 62.1, 130, 7200 }, + [24] = { 44.7, 38.9, 130, 7200 }, + [25] = { 56.1, 8.9, 130, 7200 }, + [26] = { 8.1, 28.8, 267, 7200 }, + [27] = { 8.3, 22.1, 267, 7200 }, + [28] = { 46.7, 3.7, 5179, 7200 }, + [29] = { 47.4, 3.4, 5179, 7200 }, + [30] = { 46, 3.2, 5179, 7200 }, + [31] = { 44.9, 2, 5179, 7200 }, + [32] = { 49.8, 1.4, 5179, 7200 }, + }, + }, + [3799] = { + ["coords"] = { + [1] = { 12, 59, 11, 7200 }, + [2] = { 12.2, 57.9, 11, 7200 }, + [3] = { 8.2, 55.2, 11, 7200 }, + [4] = { 48, 86.8, 12, 900 }, + [5] = { 35.2, 83.8, 12, 900 }, + [6] = { 71.2, 80.9, 12, 900 }, + [7] = { 79.1, 69.2, 12, 900 }, + [8] = { 78.4, 67.1, 12, 900 }, + [9] = { 83.4, 66.9, 12, 900 }, + [10] = { 30.6, 64.6, 12, 900 }, + [11] = { 35.9, 59.1, 12, 900 }, + [12] = { 33.8, 57.4, 12, 900 }, + [13] = { 44, 53.5, 12, 900 }, + [14] = { 63.9, 47.5, 15, 900 }, + [15] = { 37, 44.5, 267, 7200 }, + [16] = { 36.9, 39.5, 267, 7200 }, + [17] = { 91.9, 7.8, 5179, 7200 }, + [18] = { 91.9, 3.4, 5179, 7200 }, + }, + }, + [3800] = { + ["coords"] = { + [1] = { 12, 58.9, 11, 7200 }, + [2] = { 12.2, 57.9, 11, 7200 }, + [3] = { 8.2, 55.2, 11, 7200 }, + [4] = { 47.9, 86.8, 12, 900 }, + [5] = { 35.1, 83.8, 12, 900 }, + [6] = { 71.2, 80.9, 12, 900 }, + [7] = { 79.1, 69.2, 12, 900 }, + [8] = { 78.4, 67.2, 12, 900 }, + [9] = { 83.4, 66.9, 12, 900 }, + [10] = { 30.6, 64.6, 12, 900 }, + [11] = { 35.9, 59.1, 12, 900 }, + [12] = { 33.8, 57.4, 12, 900 }, + [13] = { 44, 53.5, 12, 900 }, + [14] = { 63.9, 47.5, 15, 900 }, + [15] = { 37, 44.5, 267, 7200 }, + [16] = { 36.9, 39.5, 267, 7200 }, + [17] = { 91.9, 7.8, 5179, 7200 }, + [18] = { 91.9, 3.4, 5179, 7200 }, + }, + }, + [3815] = { + ["coords"] = { + [1] = { 45, 15.2, 28, 1200 }, + [2] = { 39.1, 14.8, 36, 7200 }, + [3] = { 22.5, 43.6, 44, 7200 }, + [4] = { 16.7, 98.1, 5225, 1200 }, + }, + }, + [3816] = { + ["coords"] = { + [1] = { 45.1, 15.2, 28, 1200 }, + [2] = { 39.1, 14.8, 36, 7200 }, + [3] = { 22.5, 43.6, 44, 7200 }, + [4] = { 16.7, 98.1, 5225, 1200 }, + }, + }, + [3817] = { + ["coords"] = { + [1] = { 45, 15.2, 28, 1200 }, + [2] = { 39.1, 14.8, 36, 7200 }, + [3] = { 22.5, 43.6, 44, 7200 }, + [4] = { 16.7, 98.1, 5225, 1200 }, + }, + }, + [3818] = { + ["coords"] = { + [1] = { 45, 15.3, 28, 1200 }, + [2] = { 39.1, 14.8, 36, 7200 }, + [3] = { 22.5, 43.6, 44, 7200 }, + [4] = { 16.7, 98.1, 5225, 1200 }, + }, + }, + [3819] = { + ["coords"] = { + [1] = { 45.1, 15.2, 28, 1200 }, + [2] = { 39.1, 14.8, 36, 7200 }, + [3] = { 22.5, 43.6, 44, 7200 }, + [4] = { 16.7, 98.1, 5225, 1200 }, + }, + }, + [3864] = { + ["coords"] = {}, + }, + [3865] = { + ["coords"] = {}, + }, + [3866] = { + ["coords"] = {}, + }, + [3867] = { + ["coords"] = {}, + }, + [3869] = { + ["coords"] = {}, + }, + [3870] = { + ["coords"] = {}, + }, + [3871] = { + ["coords"] = {}, + }, + [3872] = { + ["coords"] = {}, + }, + [3873] = { + ["coords"] = {}, + }, + [3874] = { + ["coords"] = {}, + }, + [3875] = { + ["coords"] = {}, + }, + [3876] = { + ["coords"] = {}, + }, + [3877] = { + ["coords"] = {}, + }, + [3878] = { + ["coords"] = {}, + }, + [3879] = { + ["coords"] = {}, + }, + [3880] = { + ["coords"] = {}, + }, + [3881] = { + ["coords"] = {}, + }, + [3882] = { + ["coords"] = {}, + }, + [3883] = { + ["coords"] = {}, + }, + [3884] = { + ["coords"] = {}, + }, + [3885] = { + ["coords"] = {}, + }, + [3886] = { + ["coords"] = {}, + }, + [3972] = { + ["coords"] = { + [1] = { 62.6, 37.5, 17, 2 }, + }, + }, + [4072] = { + ["coords"] = { + [1] = { 52.3, 11.6, 17, 2 }, + }, + }, + [4087] = { + ["coords"] = { + [1] = { 11.5, 59.4, 11, 7200 }, + [2] = { 41.6, 65.9, 12, 900 }, + [3] = { 64.8, 50.2, 15, 900 }, + [4] = { 29.3, 62.3, 16, 300 }, + [5] = { 41.8, 42.5, 16, 300 }, + [6] = { 32.3, 45.5, 267, 7200 }, + [7] = { 87.8, 8.7, 5179, 7200 }, + }, + }, + [4088] = { + ["coords"] = { + [1] = { 11.5, 59.9, 11, 7200 }, + [2] = { 41.4, 65.5, 12, 900 }, + [3] = { 64.6, 50.4, 15, 900 }, + [4] = { 31.9, 45.6, 267, 7200 }, + [5] = { 87.5, 8.7, 5179, 7200 }, + }, + }, + [4089] = { + ["coords"] = { + [1] = { 11.6, 59.9, 11, 7200 }, + [2] = { 41.3, 65.7, 12, 900 }, + [3] = { 64.6, 50.5, 15, 900 }, + [4] = { 31.9, 45.8, 267, 7200 }, + [5] = { 87.5, 9, 5179, 7200 }, + }, + }, + [4090] = { + ["coords"] = { + [1] = { 11.5, 59.7, 11, 7200 }, + [2] = { 41.5, 65.7, 12, 900 }, + [3] = { 64.7, 50.3, 15, 900 }, + [4] = { 54.1, 1.2, 17, 300 }, + [5] = { 13.8, 55.1, 85, 300 }, + [6] = { 32.1, 45.6, 267, 7200 }, + [7] = { 79.1, 81.8, 331, 300 }, + [8] = { 58, 72.3, 5179, 300 }, + [9] = { 87.6, 8.7, 5179, 7200 }, + }, + }, + [4096] = { + ["coords"] = { + [1] = { 10.5, 51, 45, 3600 }, + [2] = { 8.5, 48.5, 45, 3600 }, + [3] = { 10, 48.2, 45, 3600 }, + [4] = { 72.3, 82.4, 267, 3600 }, + [5] = { 70, 79.5, 267, 3600 }, + [6] = { 71.6, 79.2, 267, 3600 }, + [7] = { 26.5, 59.6, 267, 3600 }, + [8] = { 31.5, 58.3, 267, 3600 }, + [9] = { 31.3, 56.3, 267, 3600 }, + [10] = { 29.2, 52.6, 267, 3600 }, + [11] = { 82.8, 21, 5179, 3600 }, + [12] = { 87.2, 19.8, 5179, 3600 }, + [13] = { 87, 18.1, 5179, 3600 }, + [14] = { 85.2, 14.9, 5179, 3600 }, + }, + }, + [4141] = { + ["coords"] = { + [1] = { 52.4, 11.6, 17, 2 }, + }, + ["fac"] = "AH", + }, + [4149] = { + ["coords"] = { + [1] = { 7.6, 96.1, 3, 3600 }, + [2] = { 9.6, 93.4, 3, 3600 }, + [3] = { 6.4, 90.3, 3, 3600 }, + [4] = { 8, 85.7, 3, 3600 }, + [5] = { 73.8, 14.8, 4, 3600 }, + [6] = { 72.8, 13.8, 4, 3600 }, + [7] = { 71.3, 13.3, 4, 3600 }, + [8] = { 82.8, 93.7, 8, 3600 }, + [9] = { 86.5, 84.1, 8, 3600 }, + [10] = { 64.9, 83.5, 8, 3600 }, + [11] = { 63.6, 82, 8, 3600 }, + [12] = { 61.4, 81.2, 8, 3600 }, + [13] = { 89.1, 78.4, 8, 3600 }, + [14] = { 92.2, 68.1, 8, 3600 }, + [15] = { 56.9, 61.1, 8, 3600 }, + [16] = { 94.9, 60.8, 8, 3600 }, + [17] = { 94.5, 52.7, 8, 3600 }, + [18] = { 94.9, 50.8, 8, 3600 }, + [19] = { 91.1, 27.2, 8, 3600 }, + [20] = { 67.2, 82.5, 15, 7200 }, + [21] = { 53.4, 73.5, 15, 3600 }, + [22] = { 37.8, 69.6, 15, 3600 }, + [23] = { 59.9, 68.9, 15, 3600 }, + [24] = { 37.7, 67.6, 15, 3600 }, + [25] = { 44.9, 66.9, 15, 3600 }, + [26] = { 45, 65.4, 15, 3600 }, + [27] = { 44.1, 64.9, 15, 3600 }, + [28] = { 38.7, 64.6, 15, 3600 }, + [29] = { 55.6, 63.9, 15, 3600 }, + [30] = { 56, 63.2, 15, 3600 }, + [31] = { 56.1, 62.8, 15, 3600 }, + [32] = { 55.5, 62.6, 15, 3600 }, + [33] = { 58.8, 46.2, 15, 3600 }, + [34] = { 58.8, 45.7, 15, 3600 }, + [35] = { 55.1, 90, 17, 3600 }, + [36] = { 55, 89, 17, 3600 }, + [37] = { 29.4, 89.6, 33, 3600 }, + [38] = { 30.7, 89.5, 33, 3600 }, + [39] = { 33.7, 88.2, 33, 3600 }, + [40] = { 33.4, 88.2, 33, 3600 }, + [41] = { 30, 87.1, 33, 3600 }, + [42] = { 33.7, 86.7, 33, 3600 }, + [43] = { 40.7, 85.7, 33, 3600 }, + [44] = { 27.2, 82.7, 33, 3600 }, + [45] = { 40.5, 80.9, 33, 3600 }, + [46] = { 29.5, 80.8, 33, 3600 }, + [47] = { 38.6, 80.5, 33, 3600 }, + [48] = { 27.3, 69.5, 33, 3600 }, + [49] = { 28.1, 63.6, 33, 3600 }, + [50] = { 27.7, 62.4, 33, 3600 }, + [51] = { 39.2, 58.7, 33, 3600 }, + [52] = { 39.9, 57.7, 33, 3600 }, + [53] = { 34.6, 51.5, 33, 3600 }, + [54] = { 35.2, 50.8, 33, 3600 }, + [55] = { 43.4, 47.3, 33, 3600 }, + [56] = { 42.5, 46.5, 33, 3600 }, + [57] = { 42.2, 46.4, 33, 3600 }, + [58] = { 42.1, 44.5, 33, 3600 }, + [59] = { 45.8, 42.8, 33, 3600 }, + [60] = { 44.8, 41.6, 33, 3600 }, + [61] = { 50.5, 30.7, 33, 3600 }, + [62] = { 52.7, 28.3, 33, 3600 }, + [63] = { 51.8, 27.7, 33, 3600 }, + [64] = { 54.1, 14.3, 45, 3600 }, + [65] = { 68.3, 23.2, 46, 3600 }, + [66] = { 70, 20.8, 46, 3600 }, + [67] = { 32.2, 75.7, 47, 3600 }, + [68] = { 37.2, 72.1, 47, 3600 }, + [69] = { 47.5, 69.1, 47, 3600 }, + [70] = { 49.3, 68.6, 47, 3600 }, + [71] = { 31.6, 67.6, 47, 3600 }, + [72] = { 25.4, 66.9, 47, 3600 }, + [73] = { 40.2, 66.2, 47, 3600 }, + [74] = { 41.2, 59.4, 47, 3600 }, + [75] = { 23.5, 58.8, 47, 3600 }, + [76] = { 32.1, 58.7, 47, 3600 }, + [77] = { 44.3, 62.8, 51, 3600 }, + [78] = { 62.3, 62.6, 51, 3600 }, + [79] = { 35.9, 58.8, 51, 3600 }, + [80] = { 48.9, 55.1, 51, 3600 }, + [81] = { 44.8, 52, 51, 3600 }, + [82] = { 37.6, 49.2, 51, 3600 }, + [83] = { 40.1, 41.5, 51, 3600 }, + [84] = { 37.9, 39, 51, 3600 }, + [85] = { 45.5, 38.8, 51, 3600 }, + [86] = { 17.6, 38.1, 51, 3600 }, + [87] = { 44.3, 33.8, 51, 3600 }, + [88] = { 46.8, 24.9, 51, 3600 }, + [89] = { 28.7, 24.8, 51, 3600 }, + [90] = { 25.9, 24.7, 51, 3600 }, + [91] = { 41.7, 21.1, 51, 3600 }, + [92] = { 64, 40.1, 440, 3600 }, + [93] = { 65, 39.8, 440, 3600 }, + [94] = { 58.7, 39.4, 440, 3600 }, + [95] = { 60.8, 39.1, 440, 3600 }, + [96] = { 65.4, 36.4, 440, 3600 }, + [97] = { 58.7, 36.4, 440, 3600 }, + [98] = { 63.3, 33.5, 440, 3600 }, + [99] = { 65.4, 32.8, 440, 3600 }, + [100] = { 60.7, 32.7, 440, 3600 }, + [101] = { 62.7, 30.5, 440, 3600 }, + [102] = { 63.8, 29.1, 440, 3600 }, + [103] = { 40, 28.7, 440, 3600 }, + [104] = { 37.5, 24.3, 440, 3600 }, + [105] = { 42.2, 22.6, 440, 3600 }, + [106] = { 26.9, 31.9, 5179, 7200 }, + [107] = { 91.8, 15.7, 5581, 3600 }, + [108] = { 99.4, 6.6, 5581, 3600 }, + [109] = { 97.4, 6.5, 5581, 3600 }, + }, + }, + [4406] = { + ["coords"] = { + [1] = { 56.8, 26.6, 141, 120 }, + [2] = { 56.7, 26.5, 141, 120 }, + [3] = { 56.9, 26.5, 141, 120 }, + [4] = { 57, 26.5, 141, 120 }, + [5] = { 56.8, 26.5, 141, 120 }, + }, + ["fac"] = "AH", + }, + [4608] = { + ["coords"] = { + [1] = { 52.3, 74, 141, 120 }, + [2] = { 50.5, 73.9, 141, 120 }, + [3] = { 51.4, 73.2, 141, 120 }, + [4] = { 52.7, 73, 141, 120 }, + [5] = { 58.7, 72.8, 141, 120 }, + [6] = { 50, 72.6, 141, 120 }, + [7] = { 59.5, 72.3, 141, 120 }, + [8] = { 60.1, 72.1, 141, 120 }, + [9] = { 50.1, 72, 141, 120 }, + [10] = { 52.9, 71.4, 141, 120 }, + [11] = { 60.7, 70.9, 141, 120 }, + [12] = { 50.9, 70.8, 141, 120 }, + [13] = { 60.1, 70.5, 141, 120 }, + [14] = { 53.5, 70.4, 141, 120 }, + [15] = { 54, 70.3, 141, 120 }, + [16] = { 61.2, 69.9, 141, 120 }, + [17] = { 55.1, 69.9, 141, 120 }, + [18] = { 60.1, 69.7, 141, 120 }, + [19] = { 59.6, 69.3, 141, 120 }, + [20] = { 52.5, 69.2, 141, 120 }, + [21] = { 53.7, 68.9, 141, 120 }, + [22] = { 52.9, 68.9, 141, 120 }, + [23] = { 61.6, 68.9, 141, 120 }, + [24] = { 62.2, 68.5, 141, 120 }, + [25] = { 55.9, 66.9, 141, 120 }, + [26] = { 55.1, 66, 141, 120 }, + [27] = { 61.1, 65.9, 141, 120 }, + [28] = { 57.3, 65.5, 141, 120 }, + [29] = { 57.9, 65.3, 141, 120 }, + [30] = { 60.4, 64.6, 141, 120 }, + [31] = { 58.1, 64.5, 141, 120 }, + [32] = { 57.4, 64.4, 141, 120 }, + [33] = { 59.9, 63.7, 141, 120 }, + }, + }, + [5620] = { + ["coords"] = { + [1] = { 62.3, 20, 17, 0 }, + }, + }, + [5621] = { + ["coords"] = { + [1] = { 62.3, 20, 17, 2 }, + }, + }, + [6288] = { + ["coords"] = { + [1] = { 41.5, 59.6, 331, 300 }, + [2] = { 66.7, 56.8, 331, 900 }, + }, + }, + [6906] = { + ["coords"] = { + [1] = { 52.5, 46.6, 17, 2 }, + }, + }, + [6907] = { + ["coords"] = { + [1] = { 52.6, 46.1, 17, 2 }, + }, + }, + [6908] = { + ["coords"] = { + [1] = { 52, 46.5, 17, 2 }, + }, + }, + [7510] = { + ["coords"] = { + [1] = { 60.8, 68.6, 141, 0 }, + }, + }, + [9630] = { + ["coords"] = { + [1] = { 38.9, 52.2, 11, 2 }, + }, + }, + [9847] = { + ["coords"] = { + [1] = { 48.9, 98.8, 17, 180 }, + [2] = { 20.4, 62.1, 45, 300 }, + [3] = { 43.1, 37.4, 400, 180 }, + }, + }, + [10082] = { + ["coords"] = { + [1] = { 66.5, 76.3, 1519, 900 }, + }, + }, + [10083] = { + ["coords"] = { + [1] = { 66.6, 76.5, 1519, 900 }, + }, + }, + [10192] = { + ["coords"] = { + [1] = { 55.5, 50.5, 876, 300 }, + [2] = { 57.1, 48.5, 1519, 900 }, + }, + }, + [10193] = { + ["coords"] = { + [1] = { 57.3, 48.4, 1519, 900 }, + }, + }, + [10194] = { + ["coords"] = { + [1] = { 77.4, 52.4, 1519, 900 }, + }, + }, + [10195] = { + ["coords"] = { + [1] = { 57.4, 48.5, 1519, 900 }, + }, + }, + [10196] = { + ["coords"] = { + [1] = { 57.8, 48.2, 1519, 900 }, + }, + }, + [10197] = { + ["coords"] = { + [1] = { 53.6, 73.7, 1519, 900 }, + }, + }, + [10198] = { + ["coords"] = { + [1] = { 53.5, 73.4, 1519, 900 }, + }, + }, + [10201] = { + ["coords"] = { + [1] = { 76.4, 52.5, 1519, 900 }, + }, + }, + [10204] = { + ["coords"] = { + [1] = { 60.4, 56.9, 1519, 900 }, + }, + }, + [10205] = { + ["coords"] = { + [1] = { 60.6, 56.8, 1519, 900 }, + }, + }, + [10206] = { + ["coords"] = { + [1] = { 67.7, 47.3, 1519, 900 }, + }, + }, + [10209] = { + ["coords"] = { + [1] = { 76.6, 52.5, 1519, 900 }, + }, + }, + [10210] = { + ["coords"] = { + [1] = { 58.7, 49.1, 1519, 900 }, + }, + }, + [10211] = { + ["coords"] = { + [1] = { 58.6, 49.3, 1519, 900 }, + }, + }, + [10212] = { + ["coords"] = { + [1] = { 58.6, 49.1, 1519, 900 }, + }, + }, + [10213] = { + ["coords"] = { + [1] = { 58.7, 49.3, 1519, 900 }, + }, + }, + [10214] = { + ["coords"] = { + [1] = { 58.3, 49.5, 1519, 900 }, + }, + }, + [10215] = { + ["coords"] = { + [1] = { 58.4, 49.7, 1519, 900 }, + }, + }, + [10216] = { + ["coords"] = { + [1] = { 77.3, 52.3, 1519, 900 }, + }, + }, + [10217] = { + ["coords"] = { + [1] = { 58.2, 49.9, 1519, 900 }, + }, + }, + [10218] = { + ["coords"] = { + [1] = { 76.9, 51.9, 1519, 900 }, + }, + }, + [10219] = { + ["coords"] = { + [1] = { 58.1, 49.7, 1519, 900 }, + }, + }, + [10220] = { + ["coords"] = { + [1] = { 50.1, 74.7, 1519, 25 }, + [2] = { 49.4, 74.6, 1519, 180 }, + [3] = { 49.3, 74.6, 1519, 25 }, + }, + }, + [10223] = { + ["coords"] = { + [1] = { 77.3, 52.1, 1519, 900 }, + }, + }, + [10388] = { + ["coords"] = { + [1] = { 20.7, 56, 45, 300 }, + [2] = { 17.8, 21.9, 400, 180 }, + }, + }, + [11713] = { + ["coords"] = { + [1] = { 55.5, 36.2, 148, 60 }, + [2] = { 55.7, 36.2, 148, 60 }, + [3] = { 55.6, 36.1, 148, 60 }, + [4] = { 55.4, 35.9, 148, 60 }, + [5] = { 56.4, 35.2, 148, 60 }, + [6] = { 56.3, 34.9, 148, 60 }, + [7] = { 40.6, 10, 361, 60 }, + [8] = { 40.9, 9.9, 361, 60 }, + [9] = { 40.7, 9.8, 361, 60 }, + [10] = { 40.5, 9.6, 361, 60 }, + [11] = { 41.6, 8.8, 361, 60 }, + [12] = { 41.5, 8.5, 361, 60 }, + }, + }, + [12654] = { + ["coords"] = { + [1] = { 58.5, 24.2, 148, 120 }, + [2] = { 59.9, 24, 148, 120 }, + [3] = { 60.8, 23.2, 148, 120 }, + [4] = { 58.5, 19.3, 148, 120 }, + [5] = { 60.6, 18.9, 148, 120 }, + }, + }, + [12665] = { + ["coords"] = { + [1] = { 42.6, 67.3, 14, 900 }, + [2] = { 35, 91.8, 3478, 25 }, + }, + }, + [12666] = { + ["coords"] = { + [1] = { 38.5, 86.3, 148, 900 }, + [2] = { 38.5, 86.1, 148, 2 }, + }, + }, + [12843] = { + ["coords"] = { + [1] = { 71.3, 61, 5561, 129600 }, + [2] = { 73.4, 60.6, 5561, 129600 }, + [3] = { 63.4, 60, 5561, 129600 }, + [4] = { 39.6, 34.2, 5561, 129600 }, + [5] = { 58, 32.6, 5561, 129600 }, + [6] = { 52.7, 26.9, 5561, 129600 }, + [7] = { 48.9, 16.6, 5561, 129600 }, + [8] = { 56.3, 13.7, 5561, 129600 }, + [9] = { 35.8, 10.5, 5561, 129600 }, + [10] = { 49.3, 4.9, 5561, 129600 }, + [11] = { 57.7, 3.2, 5561, 129600 }, + }, + }, + [13359] = { + ["coords"] = { + [1] = { 58.9, 24.5, 148, 300 }, + [2] = { 59.5, 23.4, 148, 300 }, + [3] = { 56.9, 22.4, 148, 300 }, + [4] = { 61.2, 21.6, 148, 300 }, + [5] = { 57.8, 20.6, 148, 300 }, + [6] = { 60.6, 20.3, 148, 300 }, + [7] = { 57.5, 19.3, 148, 300 }, + [8] = { 59.7, 18.3, 148, 300 }, + [9] = { 60.1, 15.2, 148, 300 }, + [10] = { 58.8, 14.6, 148, 300 }, + }, + }, + [13360] = { + ["coords"] = { + [1] = { 58.5, 25, 148, 120 }, + [2] = { 56.7, 22.5, 148, 120 }, + [3] = { 58.3, 21.9, 148, 120 }, + [4] = { 58.2, 20.1, 148, 120 }, + [5] = { 57.7, 19.5, 148, 120 }, + }, + }, + [13872] = { + ["coords"] = { + [1] = { 58, 25.9, 148, 120 }, + [2] = { 58.1, 23.7, 148, 120 }, + [3] = { 60.3, 21.7, 148, 120 }, + [4] = { 58.1, 20.7, 148, 120 }, + [5] = { 59.8, 19, 148, 120 }, + }, + }, + [13873] = { + ["coords"] = { + [1] = { 58.9, 24.5, 148, 300 }, + [2] = { 59.5, 23.4, 148, 300 }, + [3] = { 56.9, 22.4, 148, 300 }, + [4] = { 61.2, 21.6, 148, 300 }, + [5] = { 57.8, 20.6, 148, 300 }, + [6] = { 60.6, 20.3, 148, 300 }, + [7] = { 57.5, 19.3, 148, 300 }, + [8] = { 59.7, 18.3, 148, 300 }, + [9] = { 60.1, 15.2, 148, 300 }, + [10] = { 58.8, 14.6, 148, 300 }, + }, + }, + [13891] = { + ["coords"] = { + [1] = { 46.5, 35.6, 17, 300 }, + [2] = { 46.2, 34.7, 17, 300 }, + [3] = { 46.7, 34.5, 17, 300 }, + [4] = { 48.1, 34.3, 17, 300 }, + [5] = { 49.1, 34.2, 17, 300 }, + [6] = { 47.6, 33.9, 17, 300 }, + [7] = { 45.7, 33.8, 17, 300 }, + [8] = { 49.1, 33.5, 17, 300 }, + [9] = { 47.5, 32.9, 17, 300 }, + [10] = { 46.1, 32.7, 17, 300 }, + [11] = { 46.9, 32.7, 17, 300 }, + [12] = { 48.1, 32.4, 17, 300 }, + [13] = { 48.9, 32.2, 17, 300 }, + [14] = { 47.7, 32.2, 17, 300 }, + [15] = { 48.1, 31.9, 17, 300 }, + [16] = { 33.1, 79, 718, 300 }, + [17] = { 27.7, 64.1, 718, 300 }, + [18] = { 35.8, 59.9, 718, 300 }, + [19] = { 60.8, 56.7, 718, 300 }, + [20] = { 78, 54.2, 718, 300 }, + [21] = { 52.7, 48.7, 718, 300 }, + [22] = { 18.4, 48.2, 718, 300 }, + [23] = { 78.5, 42.6, 718, 300 }, + [24] = { 50.4, 32.2, 718, 300 }, + [25] = { 25.2, 29.1, 718, 300 }, + [26] = { 40, 28.8, 718, 300 }, + [27] = { 61, 23.2, 718, 300 }, + [28] = { 74.5, 20.3, 718, 300 }, + [29] = { 53.4, 19.8, 718, 300 }, + [30] = { 60.4, 14.1, 718, 300 }, + [31] = { 71.8, 94.9, 718, 99999999 }, + [32] = { 82.8, 89.7, 718, 99999999 }, + [33] = { 67.6, 86, 718, 99999999 }, + [34] = { 71, 77.5, 718, 99999999 }, + [35] = { 84.4, 76.4, 718, 99999999 }, + [36] = { 76.1, 76.1, 718, 360000 }, + [37] = { 63.8, 73.3, 718, 360000 }, + [38] = { 94.8, 64.8, 718, 360000 }, + [39] = { 80.2, 57, 718, 360000 }, + [40] = { 71.9, 55.8, 718, 360000 }, + [41] = { 65, 52.4, 718, 360000 }, + [42] = { 76.2, 50.1, 718, 360000 }, + [43] = { 86.7, 49, 718, 360000 }, + [44] = { 96.4, 48.3, 718, 360000 }, + [45] = { 80, 46.1, 718, 360000 }, + [46] = { 70.8, 41.6, 718, 360000 }, + [47] = { 31.4, 39.6, 718, 360000 }, + [48] = { 90.1, 39.4, 718, 360000 }, + [49] = { 62.2, 35.6, 718, 360000 }, + [50] = { 62.1, 33.3, 718, 360000 }, + [51] = { 91.6, 32, 718, 360000 }, + [52] = { 27.9, 32, 718, 360000 }, + [53] = { 44.6, 31.4, 718, 360000 }, + [54] = { 71.1, 27.4, 718, 360000 }, + [55] = { 32.3, 27, 718, 360000 }, + [56] = { 68.9, 23.9, 718, 9999999 }, + [57] = { 55, 23.8, 718, 360000 }, + [58] = { 44, 21.5, 718, 360000 }, + [59] = { 81.7, 21.3, 718, 360000 }, + [60] = { 28.2, 19.6, 718, 360000 }, + [61] = { 65.9, 14.5, 718, 9999999 }, + }, + }, + [13949] = { + ["coords"] = { + [1] = { 22.4, 27.6, 719, 5 }, + }, + }, + [13952] = { + ["coords"] = { + [1] = { 59.2, 30.4, 12, 25 }, + [2] = { 36.2, 93.9, 3478, 25 }, + }, + }, + [13965] = { + ["coords"] = { + [1] = { 20.5, 52.5, 5138, 180 }, + }, + }, + [16397] = { + ["coords"] = { + [1] = { 52.7, 31.6, 5138, 180 }, + }, + }, + [16398] = { + ["coords"] = { + [1] = { 51.3, 33.2, 5138, 180 }, + }, + }, + [17153] = { + ["coords"] = { + [1] = { 32.6, 75.2, 5138, 43200 }, + [2] = { 24.3, 68.9, 5138, 43200 }, + [3] = { 39.1, 47.2, 5138, 43200 }, + }, + }, + [17154] = { + ["coords"] = { + [1] = { 38.9, 64.3, 5138, 43200 }, + }, + }, + [17155] = { + ["coords"] = { + [1] = { 44.8, 33, 5138, 180 }, + }, + }, + [17156] = { + ["coords"] = { + [1] = { 18, 84.4, 38, 7200 }, + [2] = { 7.7, 87.5, 5602, 7200 }, + }, + }, + [17157] = { + ["coords"] = { + [1] = { 78.7, 16.8, 51, 7200 }, + [2] = { 0.1, 96.2, 5602, 7200 }, + }, + }, + [17182] = { + ["coords"] = { + [1] = { 36.6, 46.3, 148, 2 }, + }, + ["fac"] = "AH", + }, + [17183] = { + ["coords"] = { + [1] = { 42, 28.6, 148, 2 }, + }, + }, + [17184] = { + ["coords"] = { + [1] = { 51.3, 24.6, 148, 2 }, + }, + }, + [17185] = { + ["coords"] = { + [1] = { 41.4, 80.6, 148, 2 }, + }, + }, + [17188] = { + ["coords"] = { + [1] = { 43.3, 58.7, 148, 2 }, + }, + ["fac"] = "A", + }, + [17189] = { + ["coords"] = { + [1] = { 42.7, 63.1, 148, 2 }, + }, + ["fac"] = "A", + }, + [17249] = { + ["coords"] = { + [1] = { 77.5, 52.9, 1519, 900 }, + }, + }, + [17252] = { + ["coords"] = { + [1] = { 76.5, 53.7, 1519, 900 }, + }, + }, + [17255] = { + ["coords"] = { + [1] = { 76.6, 53.7, 1519, 900 }, + }, + }, + [17258] = { + ["coords"] = { + [1] = { 77.1, 51.9, 1519, 900 }, + }, + }, + [17261] = { + ["coords"] = { + [1] = { 63.8, 78.9, 1519, 900 }, + }, + }, + [17262] = { + ["coords"] = { + [1] = { 63.7, 78.7, 1519, 900 }, + }, + }, + [17263] = { + ["coords"] = { + [1] = { 62.6, 79.6, 1519, 900 }, + }, + }, + [17264] = { + ["coords"] = { + [1] = { 62.6, 79.8, 1519, 900 }, + }, + }, + [17265] = { + ["coords"] = { + [1] = { 63, 80.8, 1519, 900 }, + }, + }, + [17266] = { + ["coords"] = { + [1] = { 77.8, 53.2, 1519, 900 }, + }, + }, + [17267] = { + ["coords"] = { + [1] = { 63.1, 80.9, 1519, 900 }, + }, + }, + [17268] = { + ["coords"] = { + [1] = { 64.2, 79.8, 1519, 900 }, + }, + }, + [17269] = { + ["coords"] = { + [1] = { 64.2, 80, 1519, 900 }, + }, + }, + [17274] = { + ["coords"] = { + [1] = { 77.6, 52.6, 1519, 900 }, + }, + }, + [17275] = { + ["coords"] = { + [1] = { 77.8, 53.4, 1519, 900 }, + }, + }, + [17276] = { + ["coords"] = { + [1] = { 77.7, 52.9, 1519, 900 }, + }, + }, + [17281] = { + ["coords"] = { + [1] = { 76.7, 53.4, 1519, 900 }, + }, + }, + [17282] = { + ["coords"] = { + [1] = { 30.4, 25.5, 331, 180 }, + [2] = { 32.2, 24.5, 331, 180 }, + [3] = { 30.7, 23.7, 331, 180 }, + [4] = { 32.1, 23.5, 331, 180 }, + [5] = { 30.7, 22.8, 331, 180 }, + [6] = { 32.3, 22.7, 331, 180 }, + [7] = { 32.2, 21.7, 331, 180 }, + [8] = { 30.9, 21, 331, 180 }, + }, + }, + [17284] = { + ["coords"] = { + [1] = { 39.6, 23.7, 16, 300 }, + [2] = { 14.8, 31.3, 331, 900 }, + [3] = { 70, 84.4, 618, 300 }, + }, + }, + [17783] = { + ["coords"] = { + [1] = { 14.2, 20.6, 331, 2 }, + }, + }, + [18036] = { + ["coords"] = { + [1] = { 75.3, 72.2, 331, 15 }, + [2] = { 75.3, 71.9, 331, 15 }, + [3] = { 75.3, 71.8, 331, 15 }, + }, + }, + [18059] = { + ["coords"] = { + [1] = { 54.3, 13.1, 45, 7200 }, + [2] = { 32.4, 74.6, 47, 7200 }, + }, + }, + [18060] = { + ["coords"] = { + [1] = { 54.4, 12.7, 45, 7200 }, + [2] = { 32.4, 74.2, 47, 7200 }, + }, + }, + [18061] = { + ["coords"] = { + [1] = { 55.3, 13.6, 45, 7200 }, + [2] = { 33.3, 75.1, 47, 7200 }, + }, + }, + [18075] = { + ["coords"] = { + [1] = { 44.3, 67.1, 14, 300 }, + [2] = { 51.1, 42.3, 14, 900 }, + [3] = { 67.9, 18.2, 148, 300 }, + [4] = { 68.1, 18.1, 148, 300 }, + [5] = { 68.2, 18, 148, 300 }, + [6] = { 68.3, 18, 148, 300 }, + [7] = { 68.5, 17.9, 148, 300 }, + }, + }, + [18340] = { + ["coords"] = { + [1] = { 24.8, 30.5, 38, 7200 }, + [2] = { 11.3, 59.9, 5602, 7200 }, + }, + }, + [18341] = { + ["coords"] = { + [1] = { 25.8, 42.8, 38, 7200 }, + [2] = { 11.8, 66.2, 5602, 7200 }, + }, + }, + [18342] = { + ["coords"] = { + [1] = { 74.2, 19.2, 38, 7200 }, + [2] = { 36.6, 54, 5602, 7200 }, + }, + }, + [18343] = { + ["coords"] = { + [1] = { 74.2, 20.6, 38, 7200 }, + [2] = { 36.6, 54.7, 5602, 7200 }, + }, + }, + [18344] = { + ["coords"] = { + [1] = { 73.8, 24.7, 38, 7200 }, + [2] = { 36.3, 56.8, 5602, 7200 }, + }, + }, + [18345] = { + ["coords"] = { + [1] = { 36, 84.4, 38, 7200 }, + [2] = { 42.3, 22.9, 1337, 7200 }, + [3] = { 17, 87.5, 5602, 7200 }, + }, + }, + [18596] = { + ["coords"] = { + [1] = { 50.9, 75, 331, 900 }, + [2] = { 86.1, 41.1, 406, 900 }, + }, + }, + [18603] = { + ["coords"] = { + [1] = { 14.8, 31.3, 331, 0 }, + }, + }, + [18895] = { + ["coords"] = { + [1] = { 72.7, 71.5, 209, 5400 }, + }, + }, + [18899] = { + ["coords"] = { + [1] = { 71.1, 20.8, 209, 5400 }, + }, + ["fac"] = "AH", + }, + [18900] = { + ["coords"] = { + [1] = { 84.5, 75.5, 209, 5400 }, + }, + ["fac"] = "AH", + }, + [18901] = { + ["coords"] = { + [1] = { 82.1, 74.1, 209, 5400 }, + }, + ["fac"] = "AH", + }, + [18934] = { + ["coords"] = { + [1] = { 83.9, 74.9, 209, 5400 }, + }, + }, + [18935] = { + ["coords"] = { + [1] = { 79.2, 72.1, 209, 5400 }, + }, + }, + [18936] = { + ["coords"] = { + [1] = { 81.6, 73.5, 209, 5400 }, + }, + }, + [18971] = { + ["coords"] = { + [1] = { 72, 22.5, 209, 5400 }, + }, + }, + [18972] = { + ["coords"] = { + [1] = { 70.8, 26.8, 209, 5400 }, + }, + }, + [18973] = { + ["coords"] = { + [1] = { 69, 33.6, 209, 5400 }, + }, + }, + [19015] = { + ["coords"] = { + [1] = { 46.3, 46.9, 331, 30 }, + [2] = { 46.6, 46.9, 331, 30 }, + [3] = { 46.7, 46.6, 331, 30 }, + [4] = { 46.1, 46.6, 331, 30 }, + [5] = { 46.1, 46.3, 331, 30 }, + [6] = { 46.6, 46, 331, 30 }, + [7] = { 46.2, 46, 331, 30 }, + [8] = { 46.3, 45.9, 331, 30 }, + }, + ["fac"] = "AH", + }, + [19016] = { + ["coords"] = { + [1] = { 33.4, 68.7, 331, 180 }, + [2] = { 33.1, 68.6, 331, 180 }, + [3] = { 32.8, 68.4, 331, 180 }, + [4] = { 32.9, 68.3, 331, 180 }, + [5] = { 33.3, 68, 331, 180 }, + [6] = { 34.2, 67.7, 331, 180 }, + [7] = { 33.5, 67.6, 331, 180 }, + [8] = { 33.3, 67.2, 331, 180 }, + [9] = { 32.6, 66.9, 331, 180 }, + [10] = { 33.9, 66.6, 331, 180 }, + [11] = { 69.4, 35.1, 406, 180 }, + [12] = { 69.1, 35, 406, 180 }, + [13] = { 68.8, 34.9, 406, 180 }, + [14] = { 68.9, 34.8, 406, 180 }, + [15] = { 69.3, 34.4, 406, 180 }, + [16] = { 70.1, 34.1, 406, 180 }, + [17] = { 69.5, 34.1, 406, 180 }, + [18] = { 69.3, 33.7, 406, 180 }, + [19] = { 68.6, 33.4, 406, 180 }, + [20] = { 69.9, 33.1, 406, 180 }, + }, + }, + [19017] = { + ["coords"] = { + [1] = { 63.6, 54.2, 17, 3600 }, + [2] = { 66.1, 44.3, 17, 3600 }, + [3] = { 28.5, 89.4, 40, 3600 }, + [4] = { 29.5, 57.8, 148, 180 }, + [5] = { 31.8, 49.9, 148, 180 }, + [6] = { 34.8, 38.2, 148, 7200 }, + [7] = { 32.8, 35, 148, 180 }, + [8] = { 55.8, 11.5, 148, 7200 }, + }, + }, + [19018] = { + ["coords"] = { + [1] = { 26.2, 13, 11, 7200 }, + [2] = { 30.4, 92.1, 148, 7200 }, + [3] = { 31.9, 91.3, 148, 7200 }, + [4] = { 13, 9.4, 331, 7200 }, + [5] = { 14.7, 8.4, 331, 7200 }, + [6] = { 49.6, 86.8, 719, 7200 }, + [7] = { 53.3, 83.5, 719, 7200 }, + [8] = { 41.5, 80, 719, 7200 }, + [9] = { 52.2, 78.5, 719, 7200 }, + [10] = { 49.4, 76.8, 719, 7200 }, + [11] = { 48, 73.4, 719, 7200 }, + [12] = { 29, 45.2, 719, 7200 }, + [13] = { 11.2, 37.5, 719, 7200 }, + [14] = { 13.6, 36.9, 719, 7200 }, + [15] = { 16.8, 36.3, 719, 7200 }, + [16] = { 33.5, 29.7, 719, 7200 }, + [17] = { 34.3, 26.3, 719, 7200 }, + }, + }, + [19019] = { + ["coords"] = { + [1] = { 61.3, 4.7, 17, 3600 }, + [2] = { 41.3, 66.4, 40, 3600 }, + [3] = { 30.6, 27.3, 40, 3600 }, + [4] = { 36.2, 62.8, 5138, 43200 }, + [5] = { 33.9, 57.9, 5138, 43200 }, + [6] = { 38.3, 54.6, 5138, 43200 }, + [7] = { 56.2, 51, 5138, 43200 }, + [8] = { 40.4, 47.7, 5138, 43200 }, + [9] = { 68.1, 41.1, 5138, 43200 }, + [10] = { 58.3, 36.9, 5138, 43200 }, + }, + }, + [19020] = { + ["coords"] = { + [1] = { 47.8, 84.9, 17, 3600 }, + [2] = { 48.6, 84.2, 17, 3600 }, + [3] = { 61.9, 70.2, 721, 36000 }, + [4] = { 81.4, 67.6, 721, 36000 }, + [5] = { 50.3, 55.6, 721, 36000 }, + }, + }, + [19022] = { + ["coords"] = { + [1] = { 54.4, 35.4, 331, 30 }, + [2] = { 53.6, 99.7, 361, 30 }, + }, + }, + [19024] = { + ["coords"] = { + [1] = { 56.4, 49.2, 331, 2 }, + }, + ["fac"] = "A", + }, + [19027] = { + ["coords"] = { + [1] = { 50.5, 39.1, 331, 2 }, + }, + ["fac"] = "A", + }, + [19030] = { + ["coords"] = { + [1] = { 73.5, 79.1, 10, 1 }, + }, + ["fac"] = "A", + }, + [19283] = { + ["coords"] = { + [1] = { 82.2, 14, 5135, 5 }, + }, + ["fac"] = "H", + }, + [19284] = { + ["coords"] = { + [1] = { 59.3, 12.2, 5135, 15 }, + }, + ["fac"] = "A", + }, + [19534] = { + ["coords"] = { + [1] = { 51.4, 58.4, 267, 0 }, + }, + }, + [19535] = { + ["coords"] = { + [1] = { 46.5, 35.6, 17, 900 }, + [2] = { 46.2, 34.7, 17, 900 }, + [3] = { 46.7, 34.5, 17, 900 }, + [4] = { 48.1, 34.3, 17, 900 }, + [5] = { 49.1, 34.2, 17, 900 }, + [6] = { 47.6, 33.9, 17, 900 }, + [7] = { 45.7, 33.8, 17, 900 }, + [8] = { 49.1, 33.5, 17, 900 }, + [9] = { 47.5, 32.9, 17, 900 }, + [10] = { 46.1, 32.7, 17, 900 }, + [11] = { 46.9, 32.7, 17, 900 }, + [12] = { 48.1, 32.4, 17, 900 }, + [13] = { 48.9, 32.2, 17, 900 }, + [14] = { 47.7, 32.2, 17, 900 }, + [15] = { 48.1, 31.9, 17, 900 }, + [16] = { 33.1, 79, 718, 900 }, + [17] = { 27.7, 64.1, 718, 900 }, + [18] = { 35.8, 59.9, 718, 900 }, + [19] = { 60.8, 56.7, 718, 900 }, + [20] = { 78, 54.2, 718, 900 }, + [21] = { 52.7, 48.7, 718, 900 }, + [22] = { 18.4, 48.2, 718, 900 }, + [23] = { 78.5, 42.6, 718, 900 }, + [24] = { 50.4, 32.2, 718, 900 }, + [25] = { 25.2, 29.1, 718, 900 }, + [26] = { 40, 28.8, 718, 900 }, + [27] = { 61, 23.2, 718, 900 }, + [28] = { 74.5, 20.3, 718, 900 }, + [29] = { 53.4, 19.8, 718, 900 }, + [30] = { 60.4, 14.1, 718, 900 }, + }, + }, + [19541] = { + ["coords"] = { + [1] = { 54.4, 74.4, 406, 180 }, + [2] = { 54.2, 73.3, 406, 180 }, + [3] = { 56, 72.7, 406, 180 }, + [4] = { 55.7, 72.2, 406, 180 }, + [5] = { 54.5, 72.2, 406, 180 }, + [6] = { 54.6, 70.8, 406, 180 }, + [7] = { 62.1, 64.3, 406, 180 }, + [8] = { 62.3, 62.9, 406, 180 }, + [9] = { 64.2, 61.8, 406, 180 }, + [10] = { 62.9, 61.1, 406, 180 }, + [11] = { 61.5, 59.2, 406, 180 }, + [12] = { 74.7, 57.4, 406, 180 }, + [13] = { 74.5, 55.7, 406, 180 }, + [14] = { 75.8, 54.4, 406, 180 }, + [15] = { 60.4, 53.4, 406, 180 }, + [16] = { 51.4, 50.8, 406, 180 }, + [17] = { 68.9, 50.3, 406, 180 }, + [18] = { 66.9, 50, 406, 180 }, + [19] = { 73.6, 48.5, 406, 180 }, + [20] = { 75, 48.4, 406, 180 }, + [21] = { 48.8, 48.3, 406, 180 }, + [22] = { 55.6, 47.8, 406, 180 }, + [23] = { 72.1, 47.8, 406, 180 }, + [24] = { 52.9, 46, 406, 180 }, + }, + ["fac"] = "AH", + }, + [19542] = { + ["coords"] = { + [1] = { 55.2, 74.6, 406, 7200 }, + [2] = { 54.8, 73.7, 406, 7200 }, + [3] = { 61.2, 65.2, 406, 7200 }, + [4] = { 73.6, 54.9, 406, 7200 }, + [5] = { 61, 50.9, 406, 7200 }, + [6] = { 74.8, 49.8, 406, 7200 }, + }, + ["fac"] = "AH", + }, + [19543] = { + ["coords"] = { + [1] = { 54.4, 74.4, 406, 360 }, + [2] = { 54.2, 73.3, 406, 360 }, + [3] = { 56, 72.7, 406, 360 }, + [4] = { 55.7, 72.2, 406, 360 }, + [5] = { 54.5, 72.2, 406, 360 }, + [6] = { 54.6, 70.8, 406, 360 }, + [7] = { 62.1, 64.3, 406, 360 }, + [8] = { 62.3, 62.9, 406, 360 }, + [9] = { 64.2, 61.8, 406, 360 }, + [10] = { 62.9, 61.1, 406, 360 }, + [11] = { 61.5, 59.2, 406, 360 }, + [12] = { 74.7, 57.4, 406, 360 }, + [13] = { 74.5, 55.7, 406, 360 }, + [14] = { 75.8, 54.4, 406, 360 }, + [15] = { 60.4, 53.4, 406, 360 }, + [16] = { 51.4, 50.8, 406, 360 }, + [17] = { 68.9, 50.3, 406, 360 }, + [18] = { 66.9, 50, 406, 360 }, + [19] = { 73.6, 48.5, 406, 360 }, + [20] = { 75, 48.4, 406, 360 }, + [21] = { 48.8, 48.3, 406, 360 }, + [22] = { 55.6, 47.8, 406, 360 }, + [23] = { 72.1, 47.8, 406, 360 }, + [24] = { 52.9, 46, 406, 360 }, + }, + }, + [19544] = { + ["coords"] = { + [1] = { 32.2, 27.7, 33, 0 }, + [2] = { 72.2, 92.6, 406, 0 }, + }, + }, + [19547] = { + ["coords"] = { + [1] = { 64.8, 56.7, 406, 900 }, + [2] = { 70.6, 54.2, 406, 900 }, + [3] = { 64.8, 50.1, 406, 900 }, + }, + }, + [19553] = { + ["coords"] = { + [1] = { 35.7, 27.5, 17, 900 }, + [2] = { 82.1, 92, 406, 900 }, + }, + }, + [19554] = { + ["coords"] = { + [1] = { 35.7, 27.5, 17, 900 }, + [2] = { 82.1, 92, 406, 900 }, + }, + }, + [19555] = { + ["coords"] = { + [1] = { 35.7, 27.5, 17, 900 }, + [2] = { 82.1, 92, 406, 900 }, + }, + }, + [19556] = { + ["coords"] = { + [1] = { 35.7, 27.5, 17, 900 }, + [2] = { 82.1, 92, 406, 900 }, + }, + }, + [19557] = { + ["coords"] = { + [1] = { 35.7, 27.6, 17, 900 }, + [2] = { 82.1, 92, 406, 900 }, + }, + }, + [19558] = { + ["coords"] = { + [1] = { 66.5, 83.5, 406, 900 }, + }, + }, + [19559] = { + ["coords"] = { + [1] = { 66.5, 83.5, 406, 900 }, + }, + }, + [19560] = { + ["coords"] = { + [1] = { 66.5, 83.5, 406, 900 }, + }, + }, + [19561] = { + ["coords"] = { + [1] = { 66.6, 83.5, 406, 900 }, + }, + }, + [19562] = { + ["coords"] = { + [1] = { 66.6, 83.5, 406, 900 }, + }, + }, + [19563] = { + ["coords"] = { + [1] = { 60.2, 70.7, 406, 900 }, + }, + }, + [19564] = { + ["coords"] = { + [1] = { 60.2, 70.8, 406, 900 }, + }, + }, + [19565] = { + ["coords"] = { + [1] = { 60.2, 70.8, 406, 900 }, + }, + }, + [19566] = { + ["coords"] = { + [1] = { 60.2, 70.8, 406, 900 }, + }, + }, + [19567] = { + ["coords"] = { + [1] = { 60.2, 70.8, 406, 900 }, + }, + }, + [19568] = { + ["coords"] = { + [1] = { 60.2, 70.8, 406, 900 }, + }, + }, + [19569] = { + ["coords"] = { + [1] = { 59.6, 70, 406, 900 }, + }, + }, + [19570] = { + ["coords"] = { + [1] = { 59.6, 70, 406, 900 }, + }, + }, + [19571] = { + ["coords"] = { + [1] = { 59.6, 70, 406, 900 }, + }, + }, + [19572] = { + ["coords"] = { + [1] = { 48.6, 46.5, 406, 900 }, + }, + ["fac"] = "A", + }, + [19573] = { + ["coords"] = { + [1] = { 48.6, 46.5, 406, 900 }, + }, + ["fac"] = "A", + }, + [19574] = { + ["coords"] = { + [1] = { 48.6, 46.5, 406, 900 }, + }, + ["fac"] = "A", + }, + [19575] = { + ["coords"] = { + [1] = { 48.6, 46.5, 406, 900 }, + }, + ["fac"] = "A", + }, + [19576] = { + ["coords"] = { + [1] = { 48.6, 46.5, 406, 900 }, + }, + ["fac"] = "A", + }, + [19577] = { + ["coords"] = { + [1] = { 48.5, 46.5, 406, 900 }, + }, + }, + [19578] = { + ["coords"] = { + [1] = { 46.2, 26, 406, 900 }, + }, + ["fac"] = "A", + }, + [19579] = { + ["coords"] = { + [1] = { 46.2, 26, 406, 900 }, + }, + ["fac"] = "A", + }, + [19580] = { + ["coords"] = { + [1] = { 46.2, 26, 406, 900 }, + }, + ["fac"] = "A", + }, + [19581] = { + ["coords"] = { + [1] = { 46.2, 26, 406, 900 }, + }, + ["fac"] = "A", + }, + [19583] = { + ["coords"] = { + [1] = { 69.7, 83.3, 406, 900 }, + }, + ["fac"] = "H", + }, + [19585] = { + ["coords"] = { + [1] = { 35.7, 27.6, 17, 900 }, + [2] = { 82.1, 92, 406, 900 }, + }, + }, + [19586] = { + ["coords"] = {}, + }, + [19590] = { + ["coords"] = { + [1] = { 72.9, 59.7, 406, 900 }, + [2] = { 64.8, 56.7, 406, 900 }, + }, + }, + [19591] = { + ["coords"] = { + [1] = { 64.8, 56.7, 406, 900 }, + }, + }, + [19594] = { + ["coords"] = { + [1] = { 65.7, 50, 406, 900 }, + }, + }, + [19595] = { + ["coords"] = { + [1] = { 35.9, 25.6, 406, 2 }, + [2] = { 53, 49.7, 876, 300 }, + }, + ["fac"] = "H", + }, + [19596] = { + ["coords"] = { + [1] = { 32.4, 22.3, 406, 2 }, + }, + ["fac"] = "H", + }, + [19597] = { + ["coords"] = { + [1] = { 35.7, 25.9, 406, 2 }, + }, + ["fac"] = "H", + }, + [19598] = { + ["coords"] = { + [1] = { 34.4, 24.3, 406, 2 }, + }, + ["fac"] = "H", + }, + [19599] = { + ["coords"] = { + [1] = { 33.3, 21.9, 406, 2 }, + }, + ["fac"] = "H", + }, + [19600] = { + ["coords"] = { + [1] = { 73, 59.6, 406, 900 }, + }, + ["fac"] = "A", + }, + [19602] = { + ["coords"] = { + [1] = { 65.3, 54.8, 406, 2 }, + }, + ["fac"] = "A", + }, + [19603] = { + ["coords"] = { + [1] = { 72.1, 61.2, 406, 2 }, + }, + ["fac"] = "A", + }, + [19861] = { + ["coords"] = { + [1] = { 43.5, 93.1, 17, 2 }, + [2] = { 30.7, 24.3, 400, 2 }, + }, + ["fac"] = "A", + }, + [19868] = { + ["coords"] = { + [1] = { 87.1, 75.4, 400, 180 }, + [2] = { 88.3, 75, 400, 180 }, + [3] = { 86.2, 74.5, 400, 180 }, + [4] = { 87.6, 71.2, 400, 180 }, + [5] = { 88.9, 66.5, 400, 180 }, + [6] = { 69.6, 61.2, 400, 180 }, + [7] = { 79.5, 59.1, 400, 180 }, + [8] = { 71.4, 57.1, 400, 180 }, + [9] = { 76, 55.2, 400, 180 }, + [10] = { 75.4, 53.9, 400, 180 }, + }, + }, + [19869] = { + ["coords"] = { + [1] = { 78.4, 90, 400, 300 }, + [2] = { 76.3, 89.5, 400, 300 }, + [3] = { 83.8, 86.7, 400, 300 }, + [4] = { 88.4, 81, 400, 300 }, + [5] = { 88, 79.9, 400, 300 }, + [6] = { 87.9, 76.6, 400, 300 }, + [7] = { 87.3, 73.5, 400, 300 }, + [8] = { 86.9, 70, 400, 300 }, + [9] = { 88.2, 65.6, 400, 300 }, + [10] = { 75.4, 56.4, 400, 300 }, + [11] = { 71, 56.3, 400, 300 }, + }, + }, + [19870] = { + ["coords"] = { + [1] = { 79.4, 85.4, 400, 300 }, + [2] = { 78, 85.4, 400, 300 }, + [3] = { 87.8, 78.1, 400, 300 }, + [4] = { 88.2, 67.7, 400, 300 }, + [5] = { 72.3, 62.8, 400, 300 }, + [6] = { 85.6, 61.5, 400, 300 }, + [7] = { 74, 61.2, 400, 300 }, + [8] = { 70.6, 59.1, 400, 300 }, + [9] = { 73.4, 57.8, 400, 300 }, + [10] = { 78.3, 55.2, 400, 300 }, + }, + }, + [19871] = { + ["coords"] = { + [1] = { 81.9, 87.3, 400, 300 }, + [2] = { 86.9, 72.2, 400, 300 }, + [3] = { 87.3, 66.8, 400, 300 }, + [4] = { 70.3, 58, 400, 300 }, + }, + }, + [19872] = { + ["coords"] = { + [1] = { 80, 88, 400, 300 }, + [2] = { 81.5, 86.3, 400, 300 }, + [3] = { 70.2, 66.3, 400, 300 }, + [4] = { 87, 65.2, 400, 300 }, + [5] = { 70.2, 60.2, 400, 300 }, + [6] = { 74.7, 59.7, 400, 300 }, + [7] = { 69.9, 58.9, 400, 300 }, + [8] = { 80.6, 56.3, 400, 300 }, + }, + }, + [19873] = { + ["coords"] = { + [1] = { 80.7, 89.1, 400, 300 }, + [2] = { 82.8, 88, 400, 300 }, + [3] = { 77.3, 86.5, 400, 300 }, + [4] = { 88.7, 76.9, 400, 300 }, + [5] = { 71, 72, 400, 300 }, + [6] = { 73.1, 59.7, 400, 300 }, + [7] = { 70.2, 57.1, 400, 300 }, + [8] = { 74.5, 55.3, 400, 300 }, + }, + }, + [19877] = { + ["coords"] = { + [1] = { 30.2, 64.3, 141, 5 }, + [2] = { 62.3, 83.3, 1657, 5 }, + }, + ["fac"] = "A", + }, + [19903] = { + ["coords"] = { + [1] = { 48.6, 58.3, 1337, 604800 }, + [2] = { 42, 54.4, 1337, 604800 }, + [3] = { 38.6, 36.7, 1337, 604800 }, + }, + }, + [19904] = { + ["coords"] = { + [1] = { 44.5, 66, 15, 2 }, + }, + ["fac"] = "AH", + }, + [19905] = { + ["coords"] = { + [1] = { 38.7, 65.6, 15, 2 }, + }, + ["fac"] = "AH", + }, + [19906] = { + ["coords"] = { + [1] = { 36.6, 69.6, 15, 2 }, + [2] = { 54.5, 90, 17, 2 }, + }, + ["fac"] = "AH", + }, + [20447] = { + ["coords"] = { + [1] = { 25.8, 54.8, 400, 300 }, + [2] = { 25.9, 54.7, 400, 300 }, + [3] = { 25.9, 54.6, 400, 300 }, + }, + }, + [20668] = "_", + [20691] = { + ["coords"] = { + [1] = { 43.3, 20.3, 33, 30 }, + }, + ["fac"] = "AH", + }, + [20725] = { + ["coords"] = { + [1] = { 75.6, 74.4, 331, 2 }, + }, + }, + [20726] = { + ["coords"] = { + [1] = { 45.4, 32.2, 5135, 5 }, + }, + ["fac"] = "H", + }, + [20727] = { + ["coords"] = { + [1] = { 54.1, 56.5, 15, 2 }, + }, + ["fac"] = "AH", + }, + [20872] = { + ["coords"] = { + [1] = { 49.2, 43.8, 36, 7200 }, + [2] = { 54.7, 18.9, 5561, 300 }, + }, + }, + [20899] = { + ["coords"] = { + [1] = { 72.9, 59.7, 406, 900 }, + }, + }, + [20901] = { + ["coords"] = { + [1] = { 32.8, 43.5, 1176, 0 }, + }, + }, + [20919] = { + ["coords"] = { + [1] = { 26.6, 64.5, 491, 25 }, + [2] = { 41.5, 62.8, 491, 180 }, + [3] = { 39.6, 62.8, 491, 25 }, + [4] = { 27.4, 61.8, 491, 180 }, + [5] = { 66.5, 60.2, 491, 25 }, + [6] = { 65.1, 58.6, 491, 25 }, + [7] = { 61.5, 58.2, 491, 25 }, + [8] = { 64.7, 56.4, 491, 180 }, + [9] = { 52.9, 55.8, 491, 25 }, + [10] = { 52.3, 53.7, 491, 180 }, + [11] = { 47.1, 52.3, 491, 180 }, + [12] = { 28, 51.8, 491, 25 }, + [13] = { 27.8, 49.1, 491, 180 }, + [14] = { 52.9, 46.5, 491, 25 }, + [15] = { 50.2, 39.4, 491, 25 }, + [16] = { 47.3, 38, 491, 180 }, + [17] = { 32.7, 32.1, 491, 25 }, + }, + }, + [20920] = { + ["coords"] = { + [1] = { 61.2, 72.9, 491, 0 }, + [2] = { 71.3, 71, 491, 0 }, + [3] = { 26, 65, 491, 0 }, + [4] = { 39.5, 60, 491, 0 }, + [5] = { 43, 55.8, 491, 0 }, + [6] = { 48.3, 54.7, 491, 0 }, + [7] = { 52.6, 54.4, 491, 0 }, + [8] = { 26.8, 52.6, 491, 0 }, + [9] = { 54, 45.6, 491, 0 }, + [10] = { 70.2, 39.2, 491, 0 }, + [11] = { 50.4, 38.7, 491, 0 }, + [12] = { 74, 34.6, 491, 0 }, + [13] = { 31.4, 31.2, 491, 0 }, + [14] = { 21.9, 30.4, 491, 0 }, + [15] = { 62.7, 28.9, 491, 0 }, + }, + }, + [20925] = { + ["coords"] = { + [1] = { 71.5, 51.2, 15, 30 }, + }, + }, + [20961] = { + ["coords"] = { + [1] = { 37.8, 34.1, 331, 900 }, + [2] = { 66.5, 84.8, 618, 300 }, + [3] = { 47.8, 52.1, 5561, 300 }, + [4] = { 41.3, 20, 5561, 300 }, + [5] = { 28.2, 76.1, 5601, 604800 }, + [6] = { 13.6, 56.2, 5601, 604800 }, + [7] = { 25.1, 54.6, 5601, 604800 }, + [8] = { 63.2, 47.2, 5602, 300 }, + [9] = { 60.4, 45.9, 5602, 300 }, + [10] = { 62.3, 45.9, 5602, 300 }, + [11] = { 61.9, 44.4, 5602, 300 }, + [12] = { 64.1, 41.8, 5602, 300 }, + [13] = { 60.3, 40.7, 5602, 300 }, + [14] = { 62.5, 40, 5602, 300 }, + [15] = { 61.8, 39.9, 5602, 300 }, + [16] = { 63.8, 39.6, 5602, 300 }, + [17] = { 52, 17.8, 5602, 300 }, + [18] = { 44.4, 17.1, 5602, 300 }, + [19] = { 42.6, 12.5, 5602, 300 }, + [20] = { 25.9, 54.5, 5628, 300 }, + }, + }, + [20969] = { + ["coords"] = { + [1] = { 29.5, 45, 28, 300 }, + [2] = { 86, 58.5, 85, 300 }, + [3] = { 85.8, 57.2, 85, 300 }, + [4] = { 66, 37.9, 139, 900 }, + [5] = { 21.8, 12.6, 4012, 900 }, + }, + }, + [20970] = { + ["coords"] = { + [1] = { 67.9, 39.4, 139, 900 }, + [2] = { 24.2, 14.4, 4012, 900 }, + }, + }, + [20972] = { + ["coords"] = { + [1] = { 67.7, 83.2, 139, 900 }, + [2] = { 23.9, 68.1, 4012, 900 }, + }, + }, + [20985] = { + ["coords"] = { + [1] = { 55.4, 25.9, 15, 2 }, + }, + }, + [20986] = { + ["coords"] = { + [1] = { 11.4, 59.8, 11, 7200 }, + [2] = { 56.1, 69.8, 5602, 300 }, + }, + }, + [20992] = { + ["coords"] = { + [1] = { 29.6, 48.6, 15, 2 }, + [2] = { 50.9, 79.1, 17, 2 }, + }, + }, + [21004] = { + ["coords"] = { + [1] = { 82.8, 79.1, 331, 2 }, + }, + }, + [21052] = { + ["coords"] = { + [1] = { 23.9, 72.1, 10, 1 }, + }, + ["fac"] = "AH", + }, + [21099] = { + ["coords"] = { + [1] = { 5.9, 58.9, 491, 3600 }, + }, + }, + [21117] = { + ["coords"] = { + [1] = { 56.1, 88.1, 719, 7200 }, + }, + }, + [21118] = { + ["coords"] = { + [1] = { 52.7, 87.5, 719, 7200 }, + }, + }, + [21119] = { + ["coords"] = { + [1] = { 53.7, 87.5, 719, 7200 }, + }, + }, + [21120] = { + ["coords"] = { + [1] = { 53.7, 88.8, 719, 7200 }, + }, + }, + [21121] = { + ["coords"] = { + [1] = { 52.7, 88.8, 719, 7200 }, + }, + }, + [21277] = { + ["coords"] = { + [1] = { 62.3, 37.6, 17, 2 }, + }, + }, + [21327] = { + ["coords"] = { + [1] = { 13.8, 52.9, 719, 7200 }, + }, + }, + [21581] = { + ["coords"] = { + [1] = { 64.3, 15.5, 4, 900 }, + [2] = { 49.9, 46.1, 8, 300 }, + [3] = { 38.8, 65.3, 11, 120 }, + [4] = { 48.9, 60.3, 11, 300 }, + [5] = { 28.7, 49.7, 141, 900 }, + [6] = { 76.7, 53.5, 1519, 25 }, + [7] = { 76.1, 32, 1519, 120 }, + [8] = { 55.4, 13.3, 1657, 900 }, + [9] = { 59.9, 12.4, 5135, 7200 }, + [10] = { 57.3, 94.5, 5581, 120 }, + [11] = { 6.3, 25.2, 5602, 300 }, + }, + }, + [21582] = { + ["coords"] = { + [1] = { 65.2, 22.9, 4, 900 }, + [2] = { 45, 56.2, 8, 300 }, + [3] = { 39.6, 65.5, 11, 120 }, + [4] = { 26.9, 77.3, 33, 900 }, + [5] = { 76.3, 29, 1519, 120 }, + [6] = { 81.5, 29.3, 5135, 7200 }, + [7] = { 57.4, 93, 5581, 120 }, + }, + }, + [21583] = { + ["coords"] = { + [1] = { 10.4, 60.6, 11, 2 }, + [2] = { 30.4, 64, 141, 300 }, + [3] = { 76.6, 53.7, 1519, 25 }, + [4] = { 75.3, 29.9, 1519, 120 }, + [5] = { 63.3, 82.2, 1657, 300 }, + [6] = { 56.9, 93.4, 5581, 120 }, + }, + }, + [22205] = { + ["coords"] = { + [1] = { 62.5, 49.7, 1, 900 }, + [2] = { 57.8, 43.8, 1, 900 }, + [3] = { 52, 36.6, 2597, 60 }, + }, + }, + [22207] = { + ["coords"] = { + [1] = { 62.4, 52.3, 1, 900 }, + [2] = { 50.2, 50.2, 1, 900 }, + [3] = { 52.2, 37.3, 2597, 60 }, + }, + }, + [22208] = { + ["coords"] = { + [1] = { 62.4, 52.3, 1, 900 }, + [2] = { 52.1, 37.3, 2597, 60 }, + }, + }, + [22223] = { + ["coords"] = { + [1] = { 25.6, 26.1, 11, 7200 }, + [2] = { 48.2, 18.9, 11, 7200 }, + [3] = { 48, 14.9, 11, 7200 }, + [4] = { 37.3, 48.9, 38, 7200 }, + [5] = { 33.2, 46.6, 38, 7200 }, + [6] = { 35.8, 44.7, 38, 7200 }, + [7] = { 35.1, 43, 38, 7200 }, + [8] = { 39.5, 39.8, 38, 7200 }, + [9] = { 13.5, 55.3, 47, 7200 }, + [10] = { 98.8, 16.5, 267, 7200 }, + [11] = { 17.6, 69.3, 5602, 7200 }, + [12] = { 15.5, 68.1, 5602, 7200 }, + [13] = { 16.9, 67.1, 5602, 7200 }, + [14] = { 16.5, 66.2, 5602, 7200 }, + [15] = { 18.8, 64.6, 5602, 7200 }, + }, + }, + [22246] = { + ["coords"] = { + [1] = { 43.6, 1.2, 357, 180 }, + [2] = { 43.2, 1.2, 357, 180 }, + [3] = { 43.5, 0.7, 357, 180 }, + [4] = { 43, 0.6, 357, 180 }, + [5] = { 43.8, 0.5, 357, 180 }, + [6] = { 40.6, 95.9, 405, 180 }, + [7] = { 39.9, 95.8, 405, 180 }, + [8] = { 40.3, 95, 405, 180 }, + [9] = { 39.6, 94.9, 405, 180 }, + [10] = { 40.8, 94.8, 405, 180 }, + [11] = { 39.3, 94, 405, 180 }, + [12] = { 40.6, 93.7, 405, 180 }, + [13] = { 38.5, 93.4, 405, 180 }, + [14] = { 39.7, 93.3, 405, 180 }, + [15] = { 38.5, 92.1, 405, 180 }, + [16] = { 40.5, 91.9, 405, 180 }, + [17] = { 39, 91.8, 405, 180 }, + }, + ["fac"] = "AH", + }, + [22530] = { + ["coords"] = { + [1] = { 77.5, 48.8, 10, 3600 }, + [2] = { 78.9, 44.2, 10, 3600 }, + [3] = { 45.6, 75.3, 130, 7200 }, + [4] = { 45.8, 72.1, 130, 7200 }, + [5] = { 62.8, 67.4, 130, 7200 }, + [6] = { 44.6, 39.2, 130, 7200 }, + [7] = { 7.9, 29, 267, 7200 }, + [8] = { 46.8, 3.4, 5179, 7200 }, + }, + }, + [22531] = { + ["coords"] = { + [1] = { 77.2, 48.6, 10, 3600 }, + [2] = { 79.1, 44.5, 10, 3600 }, + [3] = { 45.4, 75.3, 130, 7200 }, + [4] = { 45.7, 72.5, 130, 7200 }, + [5] = { 62.9, 67.5, 130, 7200 }, + [6] = { 44.8, 39.2, 130, 7200 }, + [7] = { 8.1, 29.3, 267, 7200 }, + [8] = { 46.6, 3.4, 5179, 7200 }, + [9] = { 47, 0.1, 5179, 7200 }, + }, + }, + [22533] = { + ["coords"] = { + [1] = { 77.2, 48.9, 10, 3600 }, + [2] = { 79.2, 44.3, 10, 3600 }, + [3] = { 45.4, 75.5, 130, 7200 }, + [4] = { 45.8, 72.4, 130, 7200 }, + [5] = { 63, 67.4, 130, 7200 }, + [6] = { 44.8, 39, 130, 7200 }, + [7] = { 8.2, 29.1, 267, 7200 }, + [8] = { 46.6, 3.6, 5179, 7200 }, + [9] = { 47.2, 0.1, 5179, 7200 }, + }, + }, + [22534] = { + ["coords"] = { + [1] = { 77.2, 48.8, 10, 3600 }, + [2] = { 79.1, 44.4, 10, 3600 }, + [3] = { 45.4, 75.4, 130, 7200 }, + [4] = { 45.8, 72.5, 130, 7200 }, + [5] = { 63, 67.5, 130, 7200 }, + [6] = { 44.8, 39.1, 130, 7200 }, + [7] = { 8.2, 29.2, 267, 7200 }, + [8] = { 46.6, 3.5, 5179, 7200 }, + [9] = { 47.1, 0.1, 5179, 7200 }, + }, + }, + [22535] = { + ["coords"] = { + [1] = { 71.1, 80.5, 12, 900 }, + [2] = { 79.4, 69.1, 12, 900 }, + [3] = { 35.9, 59.4, 12, 900 }, + [4] = { 36.7, 39.3, 267, 7200 }, + [5] = { 91.7, 3.2, 5179, 7200 }, + }, + }, + [22536] = { + ["coords"] = { + [1] = { 71, 80.9, 12, 900 }, + [2] = { 79.1, 69, 12, 900 }, + [3] = { 36, 59.1, 12, 900 }, + [4] = { 36.8, 39.7, 267, 7200 }, + [5] = { 91.8, 3.6, 5179, 7200 }, + }, + }, + [22537] = { + ["coords"] = { + [1] = { 71, 80.8, 12, 900 }, + [2] = { 79.2, 68.9, 12, 900 }, + [3] = { 36.1, 59.2, 12, 900 }, + [4] = { 36.8, 39.7, 267, 7200 }, + [5] = { 91.7, 3.6, 5179, 7200 }, + }, + }, + [22538] = { + ["coords"] = { + [1] = { 70.9, 80.8, 12, 900 }, + [2] = { 79.2, 68.8, 12, 900 }, + [3] = { 36.1, 59.3, 12, 900 }, + [4] = { 36.7, 39.7, 267, 7200 }, + [5] = { 91.7, 3.6, 5179, 7200 }, + }, + }, + [22563] = { + ["coords"] = { + [1] = { 75.5, 48.9, 10, 3600 }, + [2] = { 76, 44.9, 10, 3600 }, + [3] = { 17.1, 33.8, 10, 3600 }, + [4] = { 43.8, 9.6, 33, 900 }, + [5] = { 32.5, 65.4, 85, 900 }, + [6] = { 44.7, 74.4, 130, 7200 }, + [7] = { 47.7, 73.9, 130, 7200 }, + [8] = { 45.1, 71.2, 130, 7200 }, + [9] = { 63.5, 65.1, 130, 7200 }, + [10] = { 63.3, 58.6, 130, 7200 }, + [11] = { 53.2, 12.8, 130, 7200 }, + [12] = { 8.9, 26.1, 267, 7200 }, + [13] = { 8.6, 17.5, 267, 7200 }, + [14] = { 45.9, 2.4, 5179, 7200 }, + [15] = { 49.2, 1.8, 5179, 7200 }, + }, + }, + [22564] = { + ["coords"] = { + [1] = { 75.5, 48.9, 10, 3600 }, + [2] = { 76, 45, 10, 3600 }, + [3] = { 17.1, 33.8, 10, 3600 }, + [4] = { 43.8, 9.6, 33, 900 }, + [5] = { 32.5, 65.4, 85, 900 }, + [6] = { 44.7, 74.4, 130, 7200 }, + [7] = { 47.6, 73.9, 130, 7200 }, + [8] = { 45.1, 71.2, 130, 7200 }, + [9] = { 63.5, 65.2, 130, 7200 }, + [10] = { 63.3, 58.5, 130, 7200 }, + [11] = { 53.3, 12.8, 130, 7200 }, + [12] = { 8.8, 26.1, 267, 7200 }, + [13] = { 8.6, 17.4, 267, 7200 }, + [14] = { 45.8, 2.4, 5179, 7200 }, + [15] = { 49.2, 1.8, 5179, 7200 }, + }, + }, + [22565] = { + ["coords"] = { + [1] = { 75.5, 49, 10, 3600 }, + [2] = { 76, 45, 10, 3600 }, + [3] = { 17.1, 33.8, 10, 3600 }, + [4] = { 43.8, 9.6, 33, 900 }, + [5] = { 32.5, 65.4, 85, 900 }, + [6] = { 44.7, 74.4, 130, 7200 }, + [7] = { 47.6, 74, 130, 7200 }, + [8] = { 45.1, 71.2, 130, 7200 }, + [9] = { 63.5, 65.2, 130, 7200 }, + [10] = { 63.3, 58.5, 130, 7200 }, + [11] = { 53.3, 12.8, 130, 7200 }, + [12] = { 8.9, 26.2, 267, 7200 }, + [13] = { 8.6, 17.4, 267, 7200 }, + [14] = { 45.8, 2.4, 5179, 7200 }, + [15] = { 49.2, 1.9, 5179, 7200 }, + }, + }, + [22566] = { + ["coords"] = { + [1] = { 75.5, 48.9, 10, 3600 }, + [2] = { 76, 45, 10, 3600 }, + [3] = { 17.1, 33.8, 10, 3600 }, + [4] = { 43.8, 9.6, 33, 900 }, + [5] = { 32.5, 65.4, 85, 900 }, + [6] = { 44.7, 74.4, 130, 7200 }, + [7] = { 47.6, 73.9, 130, 7200 }, + [8] = { 45.1, 71.2, 130, 7200 }, + [9] = { 63.5, 65.2, 130, 7200 }, + [10] = { 63.3, 58.5, 130, 7200 }, + [11] = { 53.3, 12.8, 130, 7200 }, + [12] = { 8.8, 26.1, 267, 7200 }, + [13] = { 8.6, 17.4, 267, 7200 }, + [14] = { 45.8, 2.4, 5179, 7200 }, + [15] = { 49.2, 1.8, 5179, 7200 }, + }, + }, + [22567] = { + ["coords"] = { + [1] = { 75.5, 49, 10, 3600 }, + [2] = { 76.1, 45, 10, 3600 }, + [3] = { 17.1, 33.8, 10, 3600 }, + [4] = { 43.8, 9.6, 33, 900 }, + [5] = { 32.5, 65.4, 85, 900 }, + [6] = { 44.7, 74.4, 130, 7200 }, + [7] = { 47.6, 74, 130, 7200 }, + [8] = { 45.1, 71.1, 130, 7200 }, + [9] = { 63.5, 65.2, 130, 7200 }, + [10] = { 63.3, 58.5, 130, 7200 }, + [11] = { 53.3, 12.8, 130, 7200 }, + [12] = { 8.9, 26.2, 267, 7200 }, + [13] = { 8.6, 17.4, 267, 7200 }, + [14] = { 45.8, 2.4, 5179, 7200 }, + [15] = { 49.2, 1.9, 5179, 7200 }, + }, + }, + [22578] = { + ["coords"] = { + [1] = { 75.7, 45.4, 10, 3600 }, + [2] = { 17.4, 33.3, 10, 3600 }, + [3] = { 44.5, 74.1, 130, 7200 }, + [4] = { 45.6, 2, 5179, 7200 }, + }, + }, + [22579] = { + ["coords"] = { + [1] = { 75.7, 45.5, 10, 3600 }, + [2] = { 17.4, 33.3, 10, 3600 }, + [3] = { 44.5, 74.1, 130, 7200 }, + [4] = { 45.6, 2, 5179, 7200 }, + }, + }, + [22580] = { + ["coords"] = { + [1] = { 75.8, 45.5, 10, 3600 }, + [2] = { 17.3, 33.3, 10, 3600 }, + [3] = { 44.5, 74.2, 130, 7200 }, + [4] = { 45.6, 2.1, 5179, 7200 }, + }, + }, + [22581] = { + ["coords"] = { + [1] = { 75.9, 45.4, 10, 3600 }, + [2] = { 17.2, 33.3, 10, 3600 }, + [3] = { 44.5, 74.3, 130, 7200 }, + [4] = { 45.6, 2.2, 5179, 7200 }, + }, + }, + [22582] = { + ["coords"] = { + [1] = { 75.8, 45.1, 10, 3600 }, + [2] = { 17.3, 33.7, 10, 3600 }, + [3] = { 44.7, 74.2, 130, 7200 }, + [4] = { 45.8, 2.1, 5179, 7200 }, + }, + }, + [22587] = { + ["coords"] = { + [1] = { 75.7, 45.1, 10, 3600 }, + [2] = { 17.4, 33.6, 10, 3600 }, + [3] = { 44.7, 74.1, 130, 7200 }, + [4] = { 45.8, 2, 5179, 7200 }, + }, + }, + [22588] = { + ["coords"] = { + [1] = { 75.8, 45.1, 10, 3600 }, + [2] = { 17.3, 33.7, 10, 3600 }, + [3] = { 44.7, 74.2, 130, 7200 }, + [4] = { 45.8, 2.2, 5179, 7200 }, + }, + }, + [22639] = { + ["coords"] = { + [1] = { 45, 15.5, 28, 1200 }, + [2] = { 16.6, 98.4, 5225, 1200 }, + }, + }, + [22647] = { + ["coords"] = { + [1] = { 45.1, 15.8, 28, 1200 }, + [2] = { 16.8, 98.9, 5225, 1200 }, + }, + }, + [22648] = { + ["coords"] = { + [1] = { 45.1, 15.7, 28, 1200 }, + [2] = { 16.9, 98.8, 5225, 1200 }, + }, + }, + [22657] = { + ["coords"] = {}, + }, + [22707] = { + ["coords"] = { + [1] = { 73.5, 44.8, 10, 3600 }, + [2] = { 61.5, 52.3, 85, 900 }, + [3] = { 43.4, 73.5, 130, 7200 }, + [4] = { 44.4, 1.3, 5179, 7200 }, + }, + }, + [22708] = { + ["coords"] = { + [1] = { 73.9, 43.1, 10, 3600 }, + [2] = { 61.9, 51.3, 85, 900 }, + [3] = { 42.7, 73.1, 130, 7200 }, + [4] = { 43.5, 0.9, 5179, 7200 }, + }, + }, + [22709] = { + ["coords"] = { + [1] = { 73.5, 44.9, 10, 3600 }, + [2] = { 61.5, 52.3, 85, 900 }, + [3] = { 43.5, 73.5, 130, 7200 }, + [4] = { 44.4, 1.3, 5179, 7200 }, + }, + }, + [22710] = { + ["coords"] = { + [1] = { 73.6, 44.9, 10, 3600 }, + [2] = { 61.5, 52.4, 85, 900 }, + [3] = { 43.5, 73.5, 130, 7200 }, + [4] = { 44.4, 1.3, 5179, 7200 }, + }, + }, + [22711] = { + ["coords"] = { + [1] = { 73.8, 43.1, 10, 3600 }, + [2] = { 61.8, 51.4, 85, 900 }, + [3] = { 42.7, 73.2, 130, 7200 }, + [4] = { 43.6, 0.9, 5179, 7200 }, + }, + }, + [22712] = { + ["coords"] = { + [1] = { 73.6, 44.9, 10, 3600 }, + [2] = { 61.5, 52.3, 85, 900 }, + [3] = { 43.5, 73.5, 130, 7200 }, + [4] = { 44.4, 1.3, 5179, 7200 }, + }, + }, + [22719] = { + ["coords"] = { + [1] = { 43.5, 73.3, 130, 7200 }, + [2] = { 44.5, 1, 5179, 7200 }, + }, + }, + [22727] = { + ["coords"] = { + [1] = { 43.5, 72.9, 130, 7200 }, + [2] = { 44.5, 0.6, 5179, 7200 }, + }, + }, + [22734] = { + ["coords"] = { + [1] = { 43.4, 72.7, 130, 7200 }, + [2] = { 44.3, 0.4, 5179, 7200 }, + }, + }, + [22736] = { + ["coords"] = { + [1] = { 43.2, 73.2, 130, 7200 }, + [2] = { 44.1, 1, 5179, 7200 }, + }, + }, + [22741] = { + ["coords"] = { + [1] = { 43.5, 72.7, 130, 7200 }, + [2] = { 44.4, 0.4, 5179, 7200 }, + }, + }, + [22744] = { + ["coords"] = { + [1] = { 43.2, 73.4, 130, 7200 }, + [2] = { 44.1, 1.2, 5179, 7200 }, + }, + }, + [22751] = { + ["coords"] = { + [1] = { 43.5, 73.3, 130, 7200 }, + [2] = { 44.4, 1.1, 5179, 7200 }, + }, + }, + [22754] = { + ["coords"] = { + [1] = { 43.2, 73.2, 130, 7200 }, + [2] = { 44.1, 0.9, 5179, 7200 }, + }, + }, + [22755] = { + ["coords"] = { + [1] = { 43.4, 73.4, 130, 7200 }, + [2] = { 44.3, 1.2, 5179, 7200 }, + }, + }, + [22772] = { + ["coords"] = { + [1] = { 35.5, 62, 11, 120 }, + [2] = { 35.5, 61.9, 11, 120 }, + [3] = { 10.9, 60.6, 11, 7200 }, + [4] = { 43.6, 65.5, 12, 900 }, + [5] = { 66.4, 45, 15, 900 }, + [6] = { 10.9, 91.4, 38, 300 }, + [7] = { 10.6, 90.7, 38, 300 }, + [8] = { 71.4, 9.7, 1519, 300 }, + [9] = { 54.8, 82.6, 5581, 300 }, + [10] = { 63.2, 74.8, 5581, 300 }, + [11] = { 63.4, 73.3, 5581, 300 }, + [12] = { 45.7, 61, 5581, 300 }, + [13] = { 46.4, 60.9, 5581, 300 }, + [14] = { 50.5, 59.9, 5581, 300 }, + [15] = { 49, 54.3, 5581, 300 }, + [16] = { 44, 52.2, 5581, 300 }, + [17] = { 52.3, 41.1, 5581, 300 }, + [18] = { 23.9, 38.9, 5581, 300 }, + [19] = { 23.9, 38.8, 5581, 300 }, + [20] = { 43.5, 26.1, 5581, 300 }, + [21] = { 4.2, 92.1, 5602, 300 }, + [22] = { 3.8, 91.6, 5602, 300 }, + [23] = { 3.8, 91.5, 5602, 300 }, + [24] = { 4.1, 91.1, 5602, 300 }, + [25] = { 4, 90.8, 5602, 300 }, + [26] = { 2.7, 89.8, 5602, 300 }, + }, + }, + [22773] = { + ["coords"] = { + [1] = { 48.8, 60.6, 11, 300 }, + [2] = { 10.9, 60.5, 11, 7200 }, + [3] = { 43.6, 65.5, 12, 900 }, + [4] = { 58.1, 99.3, 14, 300 }, + [5] = { 55.2, 97.2, 14, 300 }, + [6] = { 47.5, 47.6, 15, 300 }, + [7] = { 47.4, 46.5, 15, 300 }, + [8] = { 66.4, 45, 15, 900 }, + [9] = { 75.6, 49.6, 17, 300 }, + [10] = { 75.6, 48.9, 17, 300 }, + [11] = { 74.1, 47.8, 17, 300 }, + [12] = { 34.4, 10.2, 17, 300 }, + [13] = { 34.1, 10.2, 17, 300 }, + [14] = { 34.1, 9.9, 17, 300 }, + [15] = { 34, 9.9, 17, 300 }, + [16] = { 44.2, 98.3, 28, 300 }, + [17] = { 44.2, 98.2, 28, 300 }, + [18] = { 81, 50.9, 36, 300 }, + [19] = { 67.7, 83.3, 130, 300 }, + [20] = { 14.4, 49.9, 267, 300 }, + [21] = { 14.3, 49.9, 267, 300 }, + [22] = { 30.8, 89.8, 405, 300 }, + [23] = { 80, 62.8, 406, 300 }, + [24] = { 79.5, 62.8, 406, 300 }, + [25] = { 79.5, 62.2, 406, 300 }, + [26] = { 79.3, 62.2, 406, 300 }, + [27] = { 27.7, 14.4, 1519, 300 }, + [28] = { 30.5, 14.4, 1519, 300 }, + [29] = { 72.2, 12.5, 5179, 300 }, + [30] = { 72.1, 12.5, 5179, 300 }, + [31] = { 31.3, 85.1, 5581, 300 }, + [32] = { 32.9, 85.1, 5581, 300 }, + [33] = { 6.3, 25.5, 5602, 300 }, + }, + }, + [22775] = { + ["coords"] = { + [1] = { 33.8, 48.5, 10, 300 }, + [2] = { 10.7, 61.7, 11, 7200 }, + [3] = { 44.4, 66.1, 12, 900 }, + [4] = { 67, 45.3, 15, 900 }, + }, + }, + [22777] = { + ["coords"] = { + [1] = { 10.9, 60.5, 11, 7200 }, + [2] = { 43.6, 65.5, 12, 900 }, + [3] = { 66.4, 45, 15, 900 }, + [4] = { 61.1, 44.7, 409, 300 }, + [5] = { 61.2, 44.7, 409, 300 }, + [6] = { 61.1, 44.6, 409, 300 }, + [7] = { 61.2, 44.6, 409, 300 }, + [8] = { 59, 43.8, 409, 300 }, + [9] = { 60.2, 39.4, 409, 300 }, + [10] = { 60.3, 39.4, 409, 300 }, + }, + }, + [22803] = { + ["coords"] = { + [1] = { 43.8, 65.6, 12, 900 }, + [2] = { 66.5, 45.1, 15, 900 }, + [3] = { 67.6, 83.6, 130, 300 }, + [4] = { 42.1, 53.1, 267, 300 }, + [5] = { 42.1, 52.9, 267, 300 }, + [6] = { 14.3, 50.4, 267, 300 }, + [7] = { 96.4, 15.3, 5179, 300 }, + [8] = { 96.4, 15.1, 5179, 300 }, + [9] = { 72.1, 12.9, 5179, 300 }, + }, + }, + [22834] = { + ["coords"] = { + [1] = { 26.4, 45, 44, 7200 }, + [2] = { 56.9, 74.4, 5179, 300 }, + }, + }, + [22883] = { + ["coords"] = { + [1] = { 51.1, 58.2, 267, 7200 }, + [2] = { 52.1, 59, 5602, 300 }, + [3] = { 53.3, 58.1, 5602, 300 }, + }, + }, + [22885] = { + ["coords"] = { + [1] = { 52.1, 58.7, 267, 7200 }, + [2] = { 59.7, 71.4, 5179, 300 }, + }, + }, + [22886] = { + ["coords"] = { + [1] = { 71.1, 73.1, 15, 300 }, + [2] = { 51.1, 58.3, 267, 7200 }, + [3] = { 58.9, 76.3, 5179, 300 }, + [4] = { 58.9, 76.2, 5179, 300 }, + [5] = { 23, 74.9, 5179, 300 }, + [6] = { 33.1, 53.9, 5179, 300 }, + [7] = { 33, 53.9, 5179, 300 }, + [8] = { 33.1, 53.8, 5179, 300 }, + [9] = { 33, 53.8, 5179, 300 }, + [10] = { 31.1, 46.8, 5179, 300 }, + [11] = { 55.2, 58.5, 5602, 300 }, + [12] = { 54.7, 56, 5602, 300 }, + }, + }, + [22887] = { + ["coords"] = { + [1] = { 34.1, 11.3, 17, 300 }, + [2] = { 33.5, 11.3, 17, 300 }, + [3] = { 33, 10.9, 17, 300 }, + [4] = { 34.4, 10.6, 17, 300 }, + [5] = { 34.1, 10.3, 17, 300 }, + [6] = { 67.7, 24, 28, 25 }, + [7] = { 8, 43.5, 139, 25 }, + [8] = { 52.1, 58.8, 267, 7200 }, + [9] = { 79.4, 64.7, 406, 300 }, + [10] = { 78.4, 64.6, 406, 300 }, + [11] = { 77.7, 64, 406, 300 }, + [12] = { 80, 63.5, 406, 300 }, + [13] = { 79.5, 62.9, 406, 300 }, + [14] = { 52.7, 80.4, 5121, 300 }, + [15] = { 49.1, 46, 5179, 300 }, + }, + }, + [23295] = { + ["coords"] = { + [1] = { 57.5, 65.5, 1519, 900 }, + }, + }, + [23296] = { + ["coords"] = { + [1] = { 51.8, 85, 1519, 120 }, + }, + }, + [23299] = { + ["coords"] = { + [1] = { 46.8, 77.9, 1519, 120 }, + [2] = { 45.1, 70.1, 1519, 120 }, + [3] = { 46.8, 61.4, 1519, 120 }, + }, + }, + [23302] = { + ["coords"] = { + [1] = { 42.6, 73.3, 15, 300 }, + [2] = { 63.7, 36.7, 1519, 120 }, + [3] = { 50.7, 97.1, 5581, 120 }, + }, + }, + [23303] = { + ["coords"] = { + [1] = { 63.8, 37.1, 1519, 120 }, + [2] = { 50.7, 97.3, 5581, 120 }, + }, + }, + [23304] = { + ["coords"] = { + [1] = { 63.9, 36.7, 1519, 120 }, + [2] = { 50.7, 97.1, 5581, 120 }, + }, + }, + [23305] = { + ["coords"] = { + [1] = { 24.9, 30.1, 1, 300 }, + [2] = { 23.6, 27.9, 1, 300 }, + [3] = { 81.7, 29.2, 616, 300 }, + [4] = { 79.5, 15.2, 721, 300 }, + [5] = { 63.6, 37.1, 1519, 120 }, + [6] = { 50.6, 97.3, 5581, 120 }, + }, + }, + [23879] = { + ["coords"] = { + [1] = { 48.6, 61.9, 11, 300 }, + [2] = { 42.3, 93.4, 17, 300 }, + [3] = { 17.5, 66.2, 46, 300 }, + [4] = { 64.6, 78.8, 215, 900 }, + [5] = { 51.2, 61.1, 357, 300 }, + [6] = { 28, 24.8, 400, 300 }, + [7] = { 31.6, 91, 405, 300 }, + [8] = { 29.8, 86.7, 405, 300 }, + [9] = { 31, 36.2, 440, 300 }, + [10] = { 78.2, 63.8, 490, 300 }, + [11] = { 93.8, 92.5, 5581, 300 }, + [12] = { 6.1, 26.5, 5602, 300 }, + }, + }, + [24388] = { + ["coords"] = { + [1] = { 43.7, 81.5, 1519, 120 }, + [2] = { 44, 81.4, 1519, 120 }, + [3] = { 44.2, 81.1, 1519, 120 }, + [4] = { 64.4, 80.1, 1519, 900 }, + [5] = { 52.2, 56.4, 1519, 120 }, + [6] = { 51, 54.7, 1519, 120 }, + [7] = { 50.9, 54.5, 1519, 120 }, + [8] = { 50.6, 53.9, 1519, 120 }, + [9] = { 50.6, 53.8, 1519, 120 }, + [10] = { 52.4, 51.3, 1519, 120 }, + [11] = { 52.5, 50.3, 1519, 120 }, + [12] = { 52.1, 50.2, 1519, 120 }, + [13] = { 52.6, 49.6, 1519, 120 }, + [14] = { 50.6, 49.5, 1519, 120 }, + [15] = { 51.5, 49.5, 1519, 120 }, + [16] = { 52.1, 49.5, 1519, 120 }, + [17] = { 50.3, 48.9, 1519, 120 }, + [18] = { 49.7, 47.7, 1519, 120 }, + [19] = { 52.5, 47.3, 1519, 120 }, + [20] = { 52.2, 46.7, 1519, 120 }, + [21] = { 49, 46.5, 1519, 120 }, + [22] = { 51.5, 45.5, 1519, 120 }, + [23] = { 50.8, 44.3, 1519, 120 }, + [24] = { 72.4, 37.4, 1519, 120 }, + [25] = { 72.6, 37.1, 1519, 120 }, + [26] = { 73.4, 36.1, 1519, 120 }, + [27] = { 73.6, 35.8, 1519, 120 }, + [28] = { 71, 35.7, 1519, 120 }, + [29] = { 70.9, 35.4, 1519, 120 }, + [30] = { 73.7, 35.1, 1519, 120 }, + [31] = { 73.5, 34.8, 1519, 120 }, + [32] = { 70.9, 34.6, 1519, 120 }, + [33] = { 71.1, 34.4, 1519, 120 }, + [34] = { 55.3, 97.4, 5581, 120 }, + [35] = { 55.4, 97.3, 5581, 120 }, + [36] = { 55.9, 96.8, 5581, 120 }, + [37] = { 56, 96.6, 5581, 120 }, + [38] = { 54.6, 96.5, 5581, 120 }, + [39] = { 54.5, 96.4, 5581, 120 }, + [40] = { 56, 96.2, 5581, 120 }, + [41] = { 55.9, 96, 5581, 120 }, + [42] = { 54.5, 96, 5581, 120 }, + [43] = { 54.6, 95.8, 5581, 120 }, + }, + }, + [24389] = { + ["coords"] = { + [1] = { 55.6, 54.9, 1519, 900 }, + }, + }, + [24390] = { + ["coords"] = { + [1] = { 80.4, 45.2, 1519, 120 }, + [2] = { 80.2, 45.2, 1519, 120 }, + [3] = { 78.8, 45.1, 1519, 120 }, + [4] = { 80.3, 45.1, 1519, 120 }, + [5] = { 78.8, 44.9, 1519, 120 }, + [6] = { 78.9, 44.8, 1519, 120 }, + [7] = { 80.3, 43.1, 1519, 120 }, + [8] = { 79, 43, 1519, 120 }, + [9] = { 80.4, 42.9, 1519, 120 }, + [10] = { 78.9, 42.8, 1519, 120 }, + [11] = { 79, 42.7, 1519, 120 }, + [12] = { 77, 38.8, 1519, 120 }, + [13] = { 76.8, 38.8, 1519, 120 }, + [14] = { 75.5, 38.7, 1519, 120 }, + [15] = { 76.9, 38.7, 1519, 120 }, + [16] = { 75.4, 38.6, 1519, 120 }, + [17] = { 75.5, 38.4, 1519, 120 }, + [18] = { 59.9, 37.2, 1519, 120 }, + [19] = { 59.7, 36.9, 1519, 120 }, + [20] = { 77.2, 36.7, 1519, 120 }, + [21] = { 75.7, 36.6, 1519, 120 }, + [22] = { 77.1, 36.6, 1519, 120 }, + [23] = { 75.6, 36.5, 1519, 120 }, + [24] = { 75.7, 36.3, 1519, 120 }, + [25] = { 76.1, 32.1, 1519, 120 }, + [26] = { 76, 32.1, 1519, 120 }, + [27] = { 76.3, 31.5, 1519, 120 }, + [28] = { 76.8, 30.9, 1519, 120 }, + [29] = { 75.6, 30.2, 1519, 120 }, + [30] = { 76.1, 29.6, 1519, 120 }, + [31] = { 76.2, 29.2, 1519, 120 }, + [32] = { 76.4, 29, 1519, 120 }, + [33] = { 76.2, 29, 1519, 120 }, + [34] = { 67.8, 27.5, 1519, 120 }, + [35] = { 67.7, 26.9, 1519, 300 }, + [36] = { 67.3, 26.7, 1519, 300 }, + [37] = { 57.8, 98.2, 5581, 120 }, + [38] = { 57.7, 98.2, 5581, 120 }, + [39] = { 57, 98.2, 5581, 120 }, + [40] = { 57.8, 98.1, 5581, 120 }, + [41] = { 56.9, 98.1, 5581, 120 }, + [42] = { 57, 98, 5581, 120 }, + [43] = { 48.6, 97.3, 5581, 120 }, + [44] = { 48.5, 97.2, 5581, 120 }, + [45] = { 57.9, 97.1, 5581, 120 }, + [46] = { 57.1, 97, 5581, 120 }, + [47] = { 57.8, 97, 5581, 120 }, + [48] = { 57, 96.9, 5581, 120 }, + [49] = { 61, 96.9, 5581, 120 }, + [50] = { 57.1, 96.9, 5581, 120 }, + [51] = { 61, 96.8, 5581, 120 }, + [52] = { 61.6, 96.2, 5581, 120 }, + [53] = { 61.6, 96.1, 5581, 120 }, + [54] = { 60.5, 96, 5581, 120 }, + [55] = { 60.6, 95.9, 5581, 120 }, + [56] = { 60.5, 95.9, 5581, 120 }, + [57] = { 61.1, 95.3, 5581, 120 }, + [58] = { 61.2, 95.2, 5581, 120 }, + [59] = { 61.1, 95.2, 5581, 120 }, + [60] = { 57.3, 94.6, 5581, 120 }, + [61] = { 57.4, 94.3, 5581, 120 }, + [62] = { 57.7, 94, 5581, 120 }, + [63] = { 57, 93.6, 5581, 120 }, + [64] = { 57.3, 93.3, 5581, 120 }, + [65] = { 57.4, 93.1, 5581, 120 }, + [66] = { 57.4, 93, 5581, 120 }, + [67] = { 57.4, 92.9, 5581, 120 }, + [68] = { 52.8, 92.1, 5581, 120 }, + [69] = { 52.8, 91.8, 5581, 300 }, + [70] = { 52.6, 91.7, 5581, 300 }, + }, + }, + [24392] = { + ["coords"] = { + [1] = { 66.7, 30.1, 1519, 120 }, + [2] = { 67.1, 29.5, 1519, 120 }, + [3] = { 66.2, 29.3, 1519, 120 }, + [4] = { 67.3, 29.3, 1519, 120 }, + [5] = { 67.6, 29, 1519, 120 }, + [6] = { 65.7, 28.6, 1519, 120 }, + [7] = { 68, 28.5, 1519, 120 }, + [8] = { 65.4, 27.7, 1519, 120 }, + [9] = { 65.8, 27.1, 1519, 120 }, + [10] = { 66, 26.9, 1519, 120 }, + [11] = { 66.3, 26.6, 1519, 120 }, + [12] = { 66.7, 26.1, 1519, 120 }, + [13] = { 52.2, 93.5, 5581, 120 }, + [14] = { 52.5, 93.2, 5581, 120 }, + [15] = { 52, 93.1, 5581, 120 }, + [16] = { 52.6, 93.1, 5581, 120 }, + [17] = { 52.7, 92.9, 5581, 120 }, + [18] = { 51.8, 92.7, 5581, 120 }, + [19] = { 53, 92.6, 5581, 120 }, + [20] = { 51.6, 92.2, 5581, 120 }, + [21] = { 51.8, 91.9, 5581, 120 }, + [22] = { 51.9, 91.8, 5581, 120 }, + [23] = { 52, 91.6, 5581, 120 }, + [24] = { 52.3, 91.4, 5581, 120 }, + }, + }, + [24393] = { + ["coords"] = { + [1] = { 54.8, 55.2, 1519, 900 }, + }, + }, + [24395] = { + ["coords"] = { + [1] = { 54.9, 55.7, 1519, 900 }, + }, + }, + [24396] = { + ["coords"] = { + [1] = { 55, 54.8, 1519, 900 }, + }, + }, + [24397] = { + ["coords"] = { + [1] = { 62.5, 75.1, 1519, 25 }, + [2] = { 50.4, 74, 1519, 25 }, + [3] = { 61.8, 71.8, 1519, 25 }, + [4] = { 62.4, 71.5, 1519, 25 }, + [5] = { 62.5, 70.9, 1519, 25 }, + }, + }, + [24398] = { + ["coords"] = { + [1] = { 55.3, 54.7, 1519, 900 }, + }, + }, + [24399] = { + ["coords"] = { + [1] = { 55.2, 56, 1519, 900 }, + }, + }, + [24401] = { + ["coords"] = { + [1] = { 55.7, 55.4, 1519, 900 }, + [2] = { 49.8, 70.7, 5581, 300 }, + [3] = { 31.9, 62.1, 5581, 300 }, + [4] = { 50.2, 61.5, 5581, 300 }, + [5] = { 50.1, 61.3, 5581, 300 }, + [6] = { 31.8, 59.1, 5581, 300 }, + [7] = { 32.1, 59, 5581, 300 }, + [8] = { 50.7, 48.7, 5581, 300 }, + [9] = { 50.1, 47.7, 5581, 300 }, + }, + }, + [24441] = { + ["coords"] = { + [1] = { 50.2, 67.5, 5581, 300 }, + [2] = { 50.2, 67.4, 5581, 300 }, + }, + }, + [24469] = { + ["coords"] = { + [1] = { 60.5, 74.8, 1519, 900 }, + }, + }, + [24470] = { + ["coords"] = { + [1] = { 60.5, 74.5, 1519, 900 }, + }, + }, + [24479] = { + ["coords"] = { + [1] = { 76.5, 53.4, 1519, 900 }, + }, + }, + [24480] = { + ["coords"] = { + [1] = { 53.5, 52.3, 876, 300 }, + [2] = { 53.8, 52, 876, 300 }, + [3] = { 53.3, 51.9, 876, 300 }, + [4] = { 53.9, 51.6, 876, 300 }, + [5] = { 53.3, 51.5, 876, 300 }, + [6] = { 53.6, 51.3, 876, 300 }, + [7] = { 80.7, 61.3, 1519, 900 }, + }, + }, + [24486] = { + ["coords"] = { + [1] = { 63.9, 76.6, 1519, 900 }, + }, + }, + [24487] = { + ["coords"] = { + [1] = { 64, 76.9, 1519, 900 }, + }, + }, + [24488] = { + ["coords"] = { + [1] = { 63.6, 76.9, 1519, 900 }, + }, + }, + [24489] = { + ["coords"] = { + [1] = { 63.7, 77.2, 1519, 900 }, + }, + }, + [24490] = { + ["coords"] = { + [1] = { 63.5, 77.1, 1519, 900 }, + }, + }, + [24492] = { + ["coords"] = { + [1] = { 63.8, 76.8, 1519, 900 }, + }, + }, + [24493] = { + ["coords"] = { + [1] = { 61.5, 64, 1519, 900 }, + }, + }, + [24496] = { + ["coords"] = { + [1] = { 63.3, 78.7, 1519, 900 }, + }, + }, + [24498] = { + ["coords"] = { + [1] = { 64.6, 15.9, 4, 300 }, + [2] = { 64.1, 15.8, 4, 300 }, + [3] = { 81.1, 60.9, 28, 300 }, + [4] = { 80.9, 60.6, 28, 300 }, + [5] = { 60.2, 68.2, 85, 300 }, + [6] = { 59.3, 68.2, 85, 300 }, + [7] = { 60.2, 68.1, 85, 300 }, + [8] = { 59.4, 68, 85, 300 }, + [9] = { 22.8, 84.4, 139, 300 }, + [10] = { 22.7, 84, 139, 300 }, + [11] = { 58.4, 15, 1497, 300 }, + [12] = { 54.2, 14.6, 1497, 300 }, + [13] = { 58.4, 14.4, 1497, 300 }, + [14] = { 54.5, 13.9, 1497, 300 }, + [15] = { 62.8, 79, 1519, 900 }, + [16] = { 55.5, 58.4, 1519, 300 }, + [17] = { 55.7, 58.1, 1519, 300 }, + [18] = { 56, 57.8, 1519, 300 }, + [19] = { 56.6, 57.1, 1519, 300 }, + [20] = { 56.8, 56.8, 1519, 300 }, + [21] = { 57, 56.5, 1519, 300 }, + }, + }, + [24502] = { + ["coords"] = { + [1] = { 61.1, 65.1, 1519, 300 }, + [2] = { 61.2, 64.9, 1519, 300 }, + }, + }, + [24507] = { + ["coords"] = { + [1] = { 67.9, 47.5, 1519, 900 }, + }, + }, + [24508] = { + ["coords"] = { + [1] = { 67.2, 47, 1519, 900 }, + }, + }, + [24512] = { + ["coords"] = { + [1] = { 57.9, 48.1, 1519, 900 }, + }, + }, + [24513] = { + ["coords"] = { + [1] = { 57.8, 48, 1519, 900 }, + }, + }, + [24514] = { + ["coords"] = { + [1] = { 57.6, 48.2, 1519, 900 }, + }, + }, + [24515] = { + ["coords"] = { + [1] = { 57.6, 48, 1519, 900 }, + }, + }, + [24516] = { + ["coords"] = { + [1] = { 67.1, 47.2, 1519, 900 }, + }, + }, + [24517] = { + ["coords"] = { + [1] = { 67.4, 47.3, 1519, 900 }, + }, + }, + [24518] = { + ["coords"] = { + [1] = { 57.2, 48.8, 1519, 900 }, + }, + }, + [24519] = { + ["coords"] = { + [1] = { 57.1, 48.7, 1519, 900 }, + }, + }, + [24520] = { + ["coords"] = { + [1] = { 57, 48.4, 1519, 900 }, + }, + }, + [24528] = { + ["coords"] = { + [1] = { 64.2, 79.6, 1519, 900 }, + }, + }, + [24529] = { + ["coords"] = { + [1] = { 64.1, 79.3, 1519, 900 }, + }, + }, + [24530] = { + ["coords"] = { + [1] = { 64, 79, 1519, 900 }, + }, + }, + [24531] = { + ["coords"] = { + [1] = { 63.8, 78.4, 1519, 900 }, + }, + }, + [24532] = { + ["coords"] = { + [1] = { 63, 81.2, 1519, 900 }, + }, + }, + [24533] = { + ["coords"] = { + [1] = { 62.8, 80.6, 1519, 900 }, + }, + }, + [24534] = { + ["coords"] = { + [1] = { 62.7, 80.4, 1519, 900 }, + }, + }, + [24536] = { + ["coords"] = { + [1] = { 62.4, 79.5, 1519, 900 }, + }, + }, + [24537] = { + ["coords"] = { + [1] = { 62.6, 80.1, 1519, 900 }, + }, + }, + [24538] = { + ["coords"] = { + [1] = { 76.6, 47.7, 1519, 900 }, + [2] = { 77.8, 46.3, 1519, 120 }, + [3] = { 77.9, 46.2, 1519, 120 }, + [4] = { 78.1, 45.9, 1519, 120 }, + [5] = { 77.6, 45.8, 1519, 120 }, + }, + }, + [24539] = { + ["coords"] = { + [1] = { 78.5, 46.8, 1519, 900 }, + }, + }, + [24541] = { + ["coords"] = { + [1] = { 69.5, 57.2, 10, 300 }, + [2] = { 79.8, 63.3, 28, 300 }, + [3] = { 80.1, 62.8, 28, 300 }, + [4] = { 79.9, 62.8, 28, 300 }, + [5] = { 21.4, 87, 139, 300 }, + [6] = { 21.7, 86.5, 139, 300 }, + [7] = { 21.6, 86.5, 139, 300 }, + [8] = { 78.4, 49, 1519, 900 }, + }, + }, + [24542] = { + ["coords"] = { + [1] = { 76.7, 47.5, 1519, 900 }, + }, + }, + [24543] = { + ["coords"] = { + [1] = { 79, 47.6, 1519, 900 }, + }, + }, + [24544] = { + ["coords"] = { + [1] = { 77.5, 49.4, 1519, 900 }, + }, + }, + [24545] = { + ["coords"] = { + [1] = { 77.6, 49.2, 1519, 900 }, + }, + }, + [24546] = { + ["coords"] = { + [1] = { 76.4, 48, 1519, 900 }, + }, + }, + [24547] = { + ["coords"] = { + [1] = { 78.7, 48, 1519, 900 }, + }, + }, + [24548] = { + ["coords"] = { + [1] = { 78.8, 47.9, 1519, 900 }, + }, + }, + [24550] = { + ["coords"] = { + [1] = { 77.3, 49.6, 1519, 900 }, + }, + }, + [24551] = { + ["coords"] = { + [1] = { 76.5, 47.2, 1519, 900 }, + }, + }, + [24552] = { + ["coords"] = { + [1] = { 76.8, 48.8, 1519, 900 }, + }, + }, + [24555] = { + ["coords"] = { + [1] = { 77.8, 49.7, 1519, 900 }, + }, + }, + [24556] = { + ["coords"] = { + [1] = { 78.9, 48.4, 1519, 900 }, + }, + }, + [24562] = { + ["coords"] = { + [1] = { 77.8, 47.9, 1519, 900 }, + }, + }, + [24563] = { + ["coords"] = { + [1] = { 77.6, 47.9, 1519, 900 }, + }, + }, + [24564] = { + ["coords"] = { + [1] = { 77.6, 47.6, 1519, 900 }, + }, + }, + [24566] = { + ["coords"] = { + [1] = { 77.8, 47.7, 1519, 900 }, + }, + }, + [24568] = { + ["coords"] = { + [1] = { 77, 36.7, 1519, 120 }, + [2] = { 57.8, 97.1, 5581, 120 }, + }, + ["fac"] = "A", + }, + [24569] = { + ["coords"] = { + [1] = { 36.6, 19, 5561, 300 }, + [2] = { 32.5, 62, 5581, 300 }, + [3] = { 33.3, 60.3, 5581, 300 }, + [4] = { 33.1, 60.2, 5581, 300 }, + }, + }, + [24574] = { + ["coords"] = { + [1] = { 53.7, 35.5, 5130, 300 }, + }, + }, + [24600] = { + ["coords"] = { + [1] = { 76.6, 53.3, 1519, 900 }, + }, + }, + [24601] = { + ["coords"] = { + [1] = { 67.8, 47.4, 1519, 900 }, + }, + }, + [24606] = { + ["coords"] = { + [1] = { 67.8, 47.2, 1519, 900 }, + }, + }, + [24607] = { + ["coords"] = { + [1] = { 67.9, 47.3, 1519, 900 }, + }, + }, + [24613] = { + ["coords"] = { + [1] = { 52.3, 48.5, 1519, 120 }, + }, + }, + [24616] = { + ["coords"] = { + [1] = { 53.2, 50.2, 1519, 900 }, + }, + }, + [24627] = { + ["coords"] = { + [1] = { 76.7, 53.6, 1519, 900 }, + }, + }, + [24631] = { + ["coords"] = { + [1] = { 66, 74.3, 1519, 900 }, + }, + }, + [24632] = { + ["coords"] = { + [1] = { 66.2, 74.5, 1519, 900 }, + }, + }, + [24633] = { + ["coords"] = { + [1] = { 64.2, 76.7, 1519, 900 }, + }, + }, + [24634] = { + ["coords"] = { + [1] = { 64.1, 76.4, 1519, 900 }, + }, + }, + [24635] = { + ["coords"] = { + [1] = { 66.7, 29.7, 1519, 120 }, + [2] = { 66.9, 29.6, 1519, 120 }, + [3] = { 67.7, 28.6, 1519, 120 }, + [4] = { 67.8, 28.5, 1519, 120 }, + [5] = { 65.6, 27.6, 1519, 120 }, + [6] = { 65.7, 27.5, 1519, 120 }, + [7] = { 66.5, 26.5, 1519, 120 }, + [8] = { 66.6, 26.4, 1519, 120 }, + [9] = { 52.3, 93.3, 5581, 120 }, + [10] = { 52.4, 93.3, 5581, 120 }, + [11] = { 52.8, 92.7, 5581, 120 }, + [12] = { 51.7, 92.2, 5581, 120 }, + [13] = { 51.8, 92.1, 5581, 120 }, + [14] = { 52.2, 91.6, 5581, 120 }, + [15] = { 52.2, 91.5, 5581, 120 }, + }, + }, + [24653] = { + ["coords"] = { + [1] = { 60, 75, 1519, 900 }, + }, + }, + [24654] = { + ["coords"] = { + [1] = { 59.9, 75, 1519, 900 }, + }, + }, + [24686] = { + ["coords"] = { + [1] = { 60, 75.2, 1519, 900 }, + }, + }, + [24687] = { + ["coords"] = { + [1] = { 59.8, 75.1, 1519, 900 }, + }, + }, + [24691] = { + ["coords"] = { + [1] = { 63.2, 73.1, 5581, 300 }, + [2] = { 63.3, 73.1, 5581, 300 }, + [3] = { 50.2, 62.1, 5581, 300 }, + [4] = { 50, 62, 5581, 300 }, + [5] = { 50.3, 62, 5581, 300 }, + [6] = { 49.9, 62, 5581, 300 }, + [7] = { 49.8, 61.8, 5581, 300 }, + [8] = { 49.8, 61.7, 5581, 300 }, + [9] = { 49.8, 61.5, 5581, 300 }, + [10] = { 49.8, 61.3, 5581, 300 }, + }, + }, + [24715] = { + ["coords"] = { + [1] = { 55.7, 75.8, 1519, 900 }, + [2] = { 44, 71.6, 1519, 120 }, + [3] = { 47.7, 63.2, 1519, 120 }, + [4] = { 49.2, 61.4, 1519, 120 }, + }, + }, + [24717] = { + ["coords"] = { + [1] = { 57.4, 61.9, 1519, 900 }, + }, + }, + [24745] = { + ["coords"] = { + [1] = { 62.7, 36.6, 1519, 120 }, + [2] = { 50.1, 97, 5581, 120 }, + }, + }, + [24746] = { + ["coords"] = { + [1] = { 62.8, 37.3, 1519, 25 }, + [2] = { 50.2, 97.4, 5581, 25 }, + }, + }, + [24760] = { + ["coords"] = { + [1] = { 36.8, 76.5, 1519, 180 }, + }, + }, + [24761] = { + ["coords"] = { + [1] = { 72.3, 39.3, 1519, 180 }, + [2] = { 55.3, 98.5, 5581, 180 }, + }, + }, + [24762] = { + ["coords"] = { + [1] = { 72.3, 39.3, 1519, 180 }, + [2] = { 55.3, 98.5, 5581, 180 }, + }, + }, + [24763] = { + ["coords"] = { + [1] = { 78.6, 52.6, 1519, 900 }, + }, + }, + [24764] = { + ["coords"] = { + [1] = { 78.5, 52.5, 1519, 900 }, + }, + }, + [24776] = { + ["coords"] = { + [1] = { 44.2, 42.7, 130, 2 }, + }, + ["fac"] = "H", + }, + [24798] = { + ["coords"] = { + [1] = { 82.3, 92.3, 8, 600 }, + [2] = { 83.7, 89, 8, 600 }, + [3] = { 84.8, 87.7, 8, 600 }, + [4] = { 86.1, 85, 8, 600 }, + [5] = { 84.6, 83.8, 8, 600 }, + [6] = { 86.3, 81.4, 8, 600 }, + [7] = { 87.5, 78.1, 8, 600 }, + [8] = { 89.8, 74.1, 8, 600 }, + [9] = { 90.7, 72.4, 8, 600 }, + [10] = { 91.9, 68.6, 8, 600 }, + [11] = { 93.4, 66.3, 8, 600 }, + [12] = { 93.8, 64.1, 8, 600 }, + [13] = { 94.9, 59.8, 8, 600 }, + [14] = { 94, 57.1, 8, 600 }, + [15] = { 94.9, 52.1, 8, 600 }, + [16] = { 94.7, 50, 8, 600 }, + [17] = { 94.8, 44.7, 8, 600 }, + [18] = { 94.4, 41.5, 8, 600 }, + [19] = { 94.6, 41.3, 8, 600 }, + [20] = { 93.3, 36.5, 8, 600 }, + [21] = { 83.5, 13.8, 8, 600 }, + }, + }, + [25328] = { + ["coords"] = { + [1] = { 64.1, 74.5, 1519, 900 }, + }, + }, + [25329] = { + ["coords"] = { + [1] = { 71.1, 87.6, 1519, 900 }, + }, + }, + [25330] = { + ["coords"] = { + [1] = { 69, 82.4, 1519, 900 }, + }, + }, + [25331] = { + ["coords"] = { + [1] = { 70.5, 84.1, 1519, 900 }, + }, + }, + [25332] = { + ["coords"] = { + [1] = { 71.9, 86.7, 1519, 900 }, + }, + }, + [25333] = { + ["coords"] = { + [1] = { 69.8, 85, 1519, 900 }, + }, + }, + [25336] = { + ["coords"] = { + [1] = { 69.5, 53.9, 1519, 900 }, + }, + }, + [25337] = { + ["coords"] = { + [1] = { 70.7, 52.5, 1519, 900 }, + }, + }, + [25338] = { + ["coords"] = { + [1] = { 48.2, 59.8, 1519, 120 }, + [2] = { 60.8, 48.4, 1519, 900 }, + }, + }, + [25339] = { + ["coords"] = { + [1] = { 49.4, 59.8, 1519, 120 }, + [2] = { 48.5, 57.9, 1519, 120 }, + [3] = { 60.5, 50.2, 1519, 900 }, + }, + }, + [25340] = { + ["coords"] = { + [1] = { 58.3, 59.5, 1519, 900 }, + }, + }, + [25341] = { + ["coords"] = { + [1] = { 44.1, 70, 1519, 120 }, + [2] = { 45.3, 68.6, 1519, 120 }, + [3] = { 45.8, 61.1, 1519, 120 }, + }, + }, + [25342] = { + ["coords"] = { + [1] = { 45.3, 70.5, 1519, 120 }, + [2] = { 47.1, 61.1, 1519, 120 }, + }, + }, + [25346] = { + ["coords"] = { + [1] = { 70.4, 63.4, 1519, 900 }, + }, + }, + [25347] = { + ["coords"] = { + [1] = { 69.4, 61.6, 1519, 900 }, + }, + }, + [25348] = { + ["coords"] = { + [1] = { 56, 77.5, 1519, 900 }, + [2] = { 44.9, 74.9, 1519, 120 }, + [3] = { 46.2, 73.8, 1519, 120 }, + }, + }, + [25349] = { + ["coords"] = { + [1] = { 55.1, 75.7, 1519, 900 }, + }, + }, + [28024] = { + ["coords"] = { + [1] = { 64.5, 18.3, 8, 30 }, + }, + }, + [28027] = { + ["coords"] = { + [1] = { 69.4, 62.7, 1519, 900 }, + [2] = { 61.2, 44.1, 1519, 120 }, + }, + }, + [28028] = { + ["coords"] = { + [1] = { 69.1, 53.5, 1519, 900 }, + }, + }, + [28029] = { + ["coords"] = { + [1] = { 68.3, 50.2, 1519, 900 }, + }, + }, + [28030] = { + ["coords"] = { + [1] = { 61.3, 44.1, 1519, 180 }, + }, + }, + [28031] = { + ["coords"] = { + [1] = { 60, 46.7, 1519, 900 }, + }, + }, + [28032] = { + ["coords"] = { + [1] = { 57.5, 61.8, 1519, 900 }, + }, + }, + [28033] = { + ["coords"] = { + [1] = { 71.8, 56.4, 1519, 900 }, + }, + }, + [28034] = { + ["coords"] = { + [1] = { 70.4, 47.6, 1519, 900 }, + }, + }, + [28035] = { + ["coords"] = { + [1] = { 63.8, 72.1, 1519, 900 }, + [2] = { 49.3, 61.4, 1519, 120 }, + }, + }, + [28036] = { + ["coords"] = { + [1] = { 67.4, 65.3, 1519, 900 }, + }, + }, + [28037] = { + ["coords"] = { + [1] = { 58.6, 64, 1519, 900 }, + }, + }, + [28038] = { + ["coords"] = { + [1] = { 60, 46.9, 1519, 900 }, + }, + }, + [28040] = { + ["coords"] = { + [1] = { 57.5, 61.9, 1519, 900 }, + }, + }, + [28041] = { + ["coords"] = { + [1] = { 69.4, 62.9, 1519, 900 }, + }, + }, + [28042] = { + ["coords"] = { + [1] = { 55.9, 75.8, 1519, 900 }, + }, + }, + [28043] = { + ["coords"] = { + [1] = { 57.2, 72.9, 1519, 900 }, + }, + }, + [28044] = { + ["coords"] = { + [1] = { 70.6, 46.1, 1519, 120 }, + [2] = { 60.1, 41.8, 1519, 120 }, + [3] = { 59.1, 40, 1519, 120 }, + [4] = { 48.7, 99.8, 5581, 120 }, + [5] = { 48.2, 98.8, 5581, 120 }, + }, + }, + [28047] = { + ["coords"] = { + [1] = { 70.6, 48, 1519, 900 }, + }, + }, + [28069] = { + ["coords"] = { + [1] = { 37, 48.8, 38, 7200 }, + [2] = { 33.4, 46.6, 38, 7200 }, + [3] = { 39.7, 39.6, 38, 7200 }, + [4] = { 13.4, 55.1, 47, 7200 }, + [5] = { 98.7, 16.2, 267, 7200 }, + [6] = { 17.5, 69.2, 5602, 7200 }, + [7] = { 15.7, 68.1, 5602, 7200 }, + [8] = { 18.9, 64.5, 5602, 7200 }, + }, + }, + [28070] = { + ["coords"] = { + [1] = { 36.2, 44.7, 38, 7200 }, + [2] = { 35.4, 42.5, 38, 7200 }, + [3] = { 17.1, 67.1, 5602, 7200 }, + [4] = { 16.7, 66, 5602, 7200 }, + }, + }, + [28071] = { + ["coords"] = { + [1] = { 36.8, 49.2, 38, 7200 }, + [2] = { 33.5, 46.2, 38, 7200 }, + [3] = { 39.7, 39.2, 38, 7200 }, + [4] = { 13.2, 55.1, 47, 7200 }, + [5] = { 98.4, 16.3, 267, 7200 }, + [6] = { 17.4, 69.4, 5602, 7200 }, + [7] = { 15.7, 67.9, 5602, 7200 }, + [8] = { 18.9, 64.3, 5602, 7200 }, + }, + }, + [28072] = { + ["coords"] = { + [1] = { 36.8, 49.3, 38, 7200 }, + [2] = { 33.5, 46.1, 38, 7200 }, + [3] = { 39.7, 39.1, 38, 7200 }, + [4] = { 13.2, 55.1, 47, 7200 }, + [5] = { 98.4, 16.3, 267, 7200 }, + [6] = { 17.4, 69.5, 5602, 7200 }, + [7] = { 15.7, 67.8, 5602, 7200 }, + [8] = { 18.9, 64.2, 5602, 7200 }, + }, + }, + [28073] = { + ["coords"] = { + [1] = { 36.2, 44.5, 38, 7200 }, + [2] = { 35.3, 42.5, 38, 7200 }, + [3] = { 17.1, 67, 5602, 7200 }, + [4] = { 16.6, 66, 5602, 7200 }, + }, + }, + [28074] = { + ["coords"] = { + [1] = { 36.2, 44.9, 38, 7200 }, + [2] = { 35.4, 42.6, 38, 7200 }, + [3] = { 17.1, 67.2, 5602, 7200 }, + [4] = { 16.7, 66.1, 5602, 7200 }, + }, + }, + [28075] = { + ["coords"] = { + [1] = { 36.1, 44.9, 38, 7200 }, + [2] = { 35.4, 42.7, 38, 7200 }, + [3] = { 17, 67.2, 5602, 7200 }, + [4] = { 16.7, 66.1, 5602, 7200 }, + }, + }, + [28604] = { + ["coords"] = { + [1] = { 45.8, 35.6, 8, 600 }, + [2] = { 56.9, 24.7, 8, 600 }, + [3] = { 64.1, 23.4, 8, 600 }, + [4] = { 62.3, 22.5, 8, 600 }, + }, + ["fac"] = "A", + }, + [28611] = { + ["coords"] = { + [1] = { 77.9, 62.1, 1, 900 }, + [2] = { 39, 65.6, 11, 120 }, + [3] = { 38.8, 65.4, 11, 120 }, + [4] = { 39.1, 65.4, 11, 120 }, + }, + }, + [29150] = { + ["coords"] = { + [1] = { 47.3, 15, 11, 7200 }, + [2] = { 37.4, 47.5, 38, 7200 }, + [3] = { 34.4, 43.4, 38, 7200 }, + [4] = { 17.7, 68.6, 5602, 7200 }, + [5] = { 16.1, 66.5, 5602, 7200 }, + }, + }, + [29151] = { + ["coords"] = { + [1] = { 47.2, 15, 11, 7200 }, + [2] = { 37.4, 47.5, 38, 7200 }, + [3] = { 34.3, 43.4, 38, 7200 }, + [4] = { 17.7, 68.6, 5602, 7200 }, + [5] = { 16.1, 66.5, 5602, 7200 }, + }, + }, + [29152] = { + ["coords"] = { + [1] = { 37.1, 47.5, 38, 7200 }, + [2] = { 34.6, 43.5, 38, 7200 }, + [3] = { 17.6, 68.6, 5602, 7200 }, + [4] = { 16.3, 66.5, 5602, 7200 }, + }, + }, + [29154] = { + ["coords"] = { + [1] = { 37.3, 47.2, 38, 7200 }, + [2] = { 34.4, 43.7, 38, 7200 }, + [3] = { 17.7, 68.4, 5602, 7200 }, + [4] = { 16.2, 66.6, 5602, 7200 }, + }, + }, + [29155] = { + ["coords"] = { + [1] = { 37.3, 47.4, 38, 7200 }, + [2] = { 34.4, 43.6, 38, 7200 }, + [3] = { 17.7, 68.5, 5602, 7200 }, + [4] = { 16.2, 66.6, 5602, 7200 }, + }, + }, + [29740] = { + ["coords"] = { + [1] = { 84.1, 40.7, 1, 900 }, + [2] = { 4.9, 64.5, 5602, 900 }, + }, + }, + [29741] = { + ["coords"] = { + [1] = { 85.4, 48.6, 1, 900 }, + [2] = { 6.2, 71.7, 5602, 900 }, + }, + }, + [29742] = { + ["coords"] = { + [1] = { 85.4, 48.9, 1, 900 }, + [2] = { 6.2, 72, 5602, 900 }, + }, + }, + [29743] = { + ["coords"] = { + [1] = { 85.7, 48.6, 1, 900 }, + [2] = { 6.5, 71.6, 5602, 900 }, + }, + }, + [29744] = { + ["coords"] = { + [1] = { 85.4, 48.9, 1, 900 }, + [2] = { 6.1, 72, 5602, 900 }, + }, + }, + [29745] = { + ["coords"] = { + [1] = { 85.7, 48.5, 1, 900 }, + [2] = { 6.5, 71.6, 5602, 900 }, + }, + }, + [29746] = { + ["coords"] = { + [1] = { 85.9, 49.1, 1, 900 }, + [2] = { 6.6, 72.1, 5602, 900 }, + }, + }, + [29747] = { + ["coords"] = { + [1] = { 85.4, 48.6, 1, 900 }, + [2] = { 6.1, 71.6, 5602, 900 }, + }, + }, + [29748] = { + ["coords"] = { + [1] = { 84.5, 40.6, 1, 900 }, + [2] = { 5.3, 64.3, 5602, 900 }, + }, + }, + [29749] = { + ["coords"] = { + [1] = { 84, 40.7, 1, 900 }, + [2] = { 4.9, 64.5, 5602, 900 }, + }, + }, + [29750] = { + ["coords"] = { + [1] = { 84.3, 40.3, 1, 900 }, + [2] = { 5.1, 64.1, 5602, 900 }, + }, + }, + [29751] = { + ["coords"] = { + [1] = { 84.2, 40.3, 1, 900 }, + [2] = { 5.1, 64.1, 5602, 900 }, + }, + }, + [29752] = { + ["coords"] = { + [1] = { 84.2, 40.4, 1, 900 }, + [2] = { 5.1, 64.1, 5602, 900 }, + }, + }, + [29753] = { + ["coords"] = { + [1] = { 84.2, 40.9, 1, 900 }, + [2] = { 5.1, 64.7, 5602, 900 }, + }, + }, + [29754] = { + ["coords"] = { + [1] = { 84.2, 41.1, 1, 900 }, + [2] = { 5.1, 64.8, 5602, 900 }, + }, + }, + [29755] = { + ["coords"] = { + [1] = { 84.2, 41, 1, 900 }, + [2] = { 5.1, 64.7, 5602, 900 }, + }, + }, + [29756] = { + ["coords"] = { + [1] = { 84.2, 40.3, 1, 900 }, + [2] = { 5.1, 64, 5602, 900 }, + }, + }, + [29757] = { + ["coords"] = { + [1] = { 84.3, 41.1, 1, 900 }, + [2] = { 5.1, 64.8, 5602, 900 }, + }, + }, + [29758] = { + ["coords"] = { + [1] = { 84.5, 40.7, 1, 900 }, + [2] = { 5.3, 64.4, 5602, 900 }, + }, + }, + [29759] = { + ["coords"] = { + [1] = { 24.1, 17.6, 38, 7200 }, + [2] = { 16.1, 46.9, 47, 7200 }, + [3] = { 10.9, 53.2, 5602, 7200 }, + }, + }, + [29760] = { + ["coords"] = { + [1] = { 24.5, 18.6, 38, 7200 }, + [2] = { 16.4, 47.6, 47, 7200 }, + [3] = { 11.1, 53.7, 5602, 7200 }, + }, + }, + [29761] = { + ["coords"] = { + [1] = { 24, 17.5, 38, 7200 }, + [2] = { 16, 46.9, 47, 7200 }, + [3] = { 10.9, 53.2, 5602, 7200 }, + }, + }, + [29762] = { + ["coords"] = { + [1] = { 24.1, 18.4, 38, 7200 }, + [2] = { 16.1, 47.5, 47, 7200 }, + [3] = { 10.9, 53.6, 5602, 7200 }, + }, + }, + [29763] = { + ["coords"] = { + [1] = { 24.5, 18.5, 38, 7200 }, + [2] = { 16.4, 47.5, 47, 7200 }, + [3] = { 11.1, 53.7, 5602, 7200 }, + }, + }, + [29764] = { + ["coords"] = { + [1] = { 24.7, 17.3, 38, 7200 }, + [2] = { 16.5, 46.7, 47, 7200 }, + [3] = { 11.2, 53.1, 5602, 7200 }, + }, + }, + [29765] = { + ["coords"] = { + [1] = { 24, 18.5, 38, 7200 }, + [2] = { 16.1, 47.6, 47, 7200 }, + [3] = { 10.9, 53.7, 5602, 7200 }, + }, + }, + [29766] = { + ["coords"] = { + [1] = { 23.5, 73.8, 38, 7200 }, + [2] = { 10.6, 82.1, 5602, 7200 }, + }, + }, + [29767] = { + ["coords"] = { + [1] = { 23.4, 73.8, 38, 7200 }, + [2] = { 10.5, 82.1, 5602, 7200 }, + }, + }, + [29768] = { + ["coords"] = { + [1] = { 22.9, 74.4, 38, 7200 }, + [2] = { 10.3, 82.4, 5602, 7200 }, + }, + }, + [29769] = { + ["coords"] = { + [1] = { 23.4, 73.9, 38, 7200 }, + [2] = { 10.5, 82.1, 5602, 7200 }, + }, + }, + [29770] = { + ["coords"] = { + [1] = { 23.2, 74.9, 38, 7200 }, + [2] = { 10.4, 82.6, 5602, 7200 }, + }, + }, + [29771] = { + ["coords"] = { + [1] = { 23.2, 75.2, 38, 7200 }, + [2] = { 10.4, 82.8, 5602, 7200 }, + }, + }, + [29772] = { + ["coords"] = { + [1] = { 23.1, 74.9, 38, 7200 }, + [2] = { 10.4, 82.6, 5602, 7200 }, + }, + }, + [29773] = { + ["coords"] = { + [1] = { 23.2, 75.2, 38, 7200 }, + [2] = { 10.4, 82.8, 5602, 7200 }, + }, + }, + [29774] = { + ["coords"] = { + [1] = { 23, 74.4, 38, 7200 }, + [2] = { 10.3, 82.4, 5602, 7200 }, + }, + }, + [29775] = { + ["coords"] = { + [1] = { 23.8, 74.4, 38, 7200 }, + [2] = { 10.7, 82.4, 5602, 7200 }, + }, + }, + [29776] = { + ["coords"] = { + [1] = { 23.5, 73.7, 38, 7200 }, + [2] = { 10.6, 82, 5602, 7200 }, + }, + }, + [29777] = { + ["coords"] = { + [1] = { 23.8, 74.6, 38, 7200 }, + [2] = { 10.7, 82.5, 5602, 7200 }, + }, + }, + [29784] = { + ["coords"] = { + [1] = { 58.8, 5.9, 17, 0 }, + [2] = { 49.1, 85.8, 2597, 60 }, + }, + ["fac"] = "AH", + }, + [30854] = { + ["coords"] = { + [1] = { 70.6, 66, 8, 600 }, + [2] = { 70.3, 64.9, 8, 600 }, + [3] = { 73.7, 64.8, 8, 600 }, + [4] = { 69.6, 59.4, 8, 600 }, + [5] = { 66.4, 59.1, 8, 600 }, + [6] = { 67.9, 57.9, 8, 600 }, + [7] = { 78.7, 57.1, 8, 600 }, + [8] = { 70.6, 56.9, 8, 600 }, + [9] = { 65.4, 55.3, 8, 600 }, + [10] = { 66.5, 54.1, 8, 600 }, + [11] = { 62.4, 52.9, 8, 600 }, + [12] = { 67.6, 49.8, 8, 600 }, + [13] = { 64.4, 49.4, 8, 600 }, + [14] = { 72.1, 49.2, 8, 600 }, + [15] = { 69, 47.3, 8, 600 }, + }, + }, + [30855] = { + ["coords"] = { + [1] = { 67.3, 62.9, 8, 600 }, + [2] = { 74.2, 61.6, 8, 600 }, + [3] = { 75.4, 60.4, 8, 600 }, + [4] = { 69.7, 59.8, 8, 600 }, + [5] = { 71.5, 59.2, 8, 600 }, + [6] = { 68, 52.8, 8, 600 }, + [7] = { 67.8, 49.9, 8, 600 }, + [8] = { 66, 47.1, 8, 600 }, + [9] = { 71.1, 46.6, 8, 600 }, + [10] = { 72.1, 44.7, 8, 600 }, + [11] = { 75.7, 44.7, 8, 600 }, + [12] = { 73.9, 42.3, 8, 600 }, + }, + }, + [30856] = { + ["coords"] = { + [1] = { 76.3, 63.5, 8, 600 }, + [2] = { 67.9, 61.1, 8, 600 }, + [3] = { 71.9, 60.5, 8, 600 }, + [4] = { 61.5, 57.9, 8, 600 }, + [5] = { 70.6, 56.6, 8, 600 }, + [6] = { 72.5, 53.1, 8, 600 }, + [7] = { 74.6, 51.9, 8, 600 }, + [8] = { 70.3, 50.7, 8, 600 }, + [9] = { 78.2, 48.5, 8, 600 }, + [10] = { 69.9, 48.1, 8, 600 }, + [11] = { 74.3, 47.9, 8, 600 }, + [12] = { 68.4, 46, 8, 600 }, + [13] = { 67.3, 45.8, 8, 600 }, + [14] = { 68.2, 43.2, 8, 600 }, + [15] = { 69.8, 40.8, 8, 600 }, + }, + }, + [31408] = { + ["coords"] = { + [1] = { 44.6, 50.5, 14, 900 }, + [2] = { 39.8, 85, 1519, 120 }, + }, + }, + [31445] = { + ["coords"] = { + [1] = { 4.5, 62.1, 85, 300 }, + [2] = { 39.9, 85.3, 130, 300 }, + [3] = { 60.1, 44.2, 409, 300 }, + [4] = { 64.3, 65.5, 5179, 300 }, + [5] = { 20.1, 61, 5179, 300 }, + [6] = { 48.9, 52.1, 5179, 300 }, + [7] = { 39.6, 37, 5179, 300 }, + [8] = { 40.6, 23.1, 5179, 300 }, + [9] = { 40.3, 14.9, 5179, 300 }, + }, + }, + [31510] = { + ["coords"] = { + [1] = { 28.1, 62, 45, 7200 }, + [2] = { 22.1, 59.2, 45, 25 }, + }, + ["fac"] = "AH", + }, + [31511] = { + ["coords"] = { + [1] = { 93.9, 13.7, 10, 25 }, + [2] = { 48.2, 16.8, 14, 25 }, + [3] = { 61.6, 23.6, 17, 300 }, + [4] = { 28.1, 62, 45, 7200 }, + [5] = { 17.6, 66.2, 46, 300 }, + [6] = { 35.6, 91.7, 3478, 25 }, + [7] = { 93.8, 92.5, 5581, 300 }, + }, + }, + [32349] = "_", + [32571] = { + ["coords"] = { + [1] = { 45.4, 52, 1, 900 }, + [2] = { 55.8, 42, 2597, 300 }, + }, + }, + [32572] = { + ["coords"] = { + [1] = { 45.3, 51.8, 1, 900 }, + [2] = { 55.9, 42.1, 2597, 300 }, + }, + }, + [32573] = { + ["coords"] = { + [1] = { 45.3, 51.9, 1, 900 }, + [2] = { 55.9, 42, 2597, 300 }, + }, + }, + [32574] = { + ["coords"] = { + [1] = { 45.4, 51.7, 1, 900 }, + [2] = { 56, 42.2, 2597, 300 }, + }, + }, + [32582] = { + ["coords"] = { + [1] = { 45.7, 16.7, 11, 7200 }, + [2] = { 10.1, 49, 47, 7200 }, + [3] = { 94.7, 9, 267, 7200 }, + [4] = { 53.6, 57.3, 5602, 300 }, + }, + }, + [32596] = { + ["coords"] = { + [1] = { 35.9, 45.1, 38, 7200 }, + [2] = { 35.3, 43.1, 38, 7200 }, + [3] = { 16.9, 67.3, 5602, 7200 }, + [4] = { 16.6, 66.3, 5602, 7200 }, + }, + }, + [32878] = { + ["coords"] = { + [1] = { 35.3, 16.9, 38, 7200 }, + [2] = { 16.6, 52.9, 5602, 7200 }, + }, + }, + [32881] = { + ["coords"] = { + [1] = { 24.9, 29.9, 38, 7200 }, + [2] = { 11.3, 59.5, 5602, 7200 }, + }, + }, + [32882] = { + ["coords"] = { + [1] = { 69.3, 22.6, 38, 7200 }, + [2] = { 34, 55.8, 5602, 7200 }, + }, + }, + [32883] = { + ["coords"] = { + [1] = { 66, 23, 3, 900 }, + [2] = { 30.6, 94, 5602, 900 }, + }, + }, + [32884] = { + ["coords"] = { + [1] = { 36.2, 83.7, 38, 7200 }, + [2] = { 43.4, 19.8, 1337, 7200 }, + [3] = { 17.1, 87.2, 5602, 7200 }, + }, + }, + [32885] = { + ["coords"] = { + [1] = { 35.5, 80.7, 38, 7200 }, + [2] = { 40, 4.8, 1337, 7200 }, + [3] = { 16.7, 85.6, 5602, 7200 }, + }, + }, + [33263] = { + ["coords"] = {}, + ["fac"] = "A", + }, + [34027] = { + ["coords"] = { + [1] = { 23.7, 74.4, 38, 25 }, + [2] = { 10.7, 82.4, 5602, 25 }, + }, + }, + [34032] = { + ["coords"] = { + [1] = { 84.3, 40.6, 1, 900 }, + [2] = { 5.2, 64.3, 5602, 900 }, + }, + }, + [34033] = { + ["coords"] = { + [1] = { 84.4, 40.5, 1, 900 }, + [2] = { 5.3, 64.2, 5602, 900 }, + }, + }, + [34034] = { + ["coords"] = { + [1] = { 85.8, 49.2, 1, 900 }, + [2] = { 6.5, 72.3, 5602, 900 }, + }, + }, + [34035] = { + ["coords"] = { + [1] = { 85.9, 49.2, 1, 900 }, + [2] = { 6.6, 72.2, 5602, 900 }, + }, + }, + [34036] = { + ["coords"] = { + [1] = { 84.4, 40.6, 1, 900 }, + [2] = { 5.3, 64.4, 5602, 900 }, + }, + }, + [34037] = { + ["coords"] = { + [1] = { 85.8, 49.2, 1, 900 }, + [2] = { 6.5, 72.2, 5602, 900 }, + }, + }, + [34038] = { + ["coords"] = { + [1] = { 85.8, 49.2, 1, 900 }, + [2] = { 6.5, 72.2, 5602, 900 }, + }, + }, + [34571] = { + ["coords"] = { + [1] = { 45.4, 51.8, 1, 900 }, + [2] = { 55.8, 42.2, 2597, 300 }, + }, + }, + [35251] = { + ["coords"] = { + [1] = { 36.1, 30.5, 405, 2 }, + }, + ["fac"] = "A", + }, + [35252] = { + ["coords"] = { + [1] = { 34.9, 47, 11, 5 }, + }, + ["fac"] = "A", + }, + [35593] = { + ["coords"] = { + [1] = { 46.7, 62.8, 209, 5400 }, + }, + }, + [35594] = { + ["coords"] = { + [1] = { 46.3, 62.5, 209, 5400 }, + }, + }, + [35595] = { + ["coords"] = { + [1] = { 46.1, 62, 209, 5400 }, + }, + }, + [35596] = { + ["coords"] = { + [1] = { 43.5, 60.6, 209, 5400 }, + }, + }, + [35597] = { + ["coords"] = { + [1] = { 43, 60.5, 209, 5400 }, + }, + }, + [35598] = { + ["coords"] = { + [1] = { 42.7, 59.9, 209, 5400 }, + }, + }, + [36738] = { + ["coords"] = { + [1] = { 65.7, 37.1, 209, 5 }, + }, + }, + [37014] = { + ["coords"] = { + [1] = { 43, 61.6, 1637, 300 }, + }, + }, + [37097] = { + ["coords"] = { + [1] = { 17.6, 41.1, 10, 25 }, + [2] = { 17.7, 41.1, 10, 25 }, + [3] = { 17.9, 41.1, 10, 25 }, + [4] = { 17.4, 41, 10, 25 }, + [5] = { 18.1, 40.9, 10, 25 }, + [6] = { 17.3, 40.8, 10, 25 }, + [7] = { 18.3, 40.8, 10, 25 }, + [8] = { 18.5, 40.6, 10, 25 }, + [9] = { 17.2, 40.5, 10, 25 }, + [10] = { 18.6, 40.4, 10, 25 }, + [11] = { 17.1, 40.3, 10, 25 }, + [12] = { 18.7, 40.1, 10, 25 }, + [13] = { 17.1, 40, 10, 25 }, + [14] = { 18.7, 39.8, 10, 25 }, + [15] = { 17.2, 39.7, 10, 25 }, + [16] = { 18.7, 39.5, 10, 25 }, + [17] = { 17.3, 39.4, 10, 25 }, + [18] = { 18.7, 39.2, 10, 25 }, + [19] = { 17.4, 39.2, 10, 25 }, + [20] = { 17.6, 39, 10, 25 }, + [21] = { 18.6, 39, 10, 25 }, + [22] = { 17.8, 38.9, 10, 25 }, + [23] = { 18.4, 38.8, 10, 25 }, + [24] = { 18, 38.8, 10, 25 }, + [25] = { 18.2, 38.8, 10, 25 }, + [26] = { 58.4, 50, 85, 25 }, + [27] = { 58.5, 49.9, 85, 25 }, + [28] = { 58.6, 49.9, 85, 25 }, + [29] = { 58.8, 49.8, 85, 25 }, + [30] = { 58.3, 49.8, 85, 25 }, + [31] = { 58.2, 49.7, 85, 25 }, + [32] = { 59, 49.6, 85, 25 }, + [33] = { 58.2, 49.4, 85, 25 }, + [34] = { 59, 49.4, 85, 25 }, + [35] = { 58.1, 49.1, 85, 25 }, + [36] = { 59.1, 49.1, 85, 25 }, + [37] = { 59, 48.9, 85, 25 }, + [38] = { 58.1, 48.9, 85, 25 }, + [39] = { 58.2, 48.7, 85, 25 }, + [40] = { 59, 48.6, 85, 25 }, + [41] = { 58.3, 48.5, 85, 25 }, + [42] = { 58.9, 48.5, 85, 25 }, + [43] = { 58.5, 48.3, 85, 25 }, + [44] = { 58.8, 48.3, 85, 25 }, + [45] = { 58.7, 48.3, 85, 25 }, + [46] = { 58.6, 48.2, 85, 25 }, + [47] = { 86.6, 27.1, 1497, 900 }, + }, + ["fac"] = "AH", + }, + [37098] = { + ["coords"] = { + [1] = { 51.1, 67.6, 85, 3 }, + }, + ["fac"] = "H", + }, + [37099] = { + ["coords"] = { + [1] = { 76.7, 51.3, 8, 600 }, + [2] = { 78.3, 49.5, 8, 600 }, + [3] = { 75.3, 49.5, 8, 600 }, + [4] = { 75.8, 49.4, 8, 600 }, + [5] = { 76.6, 49.1, 8, 600 }, + [6] = { 75.9, 48.3, 8, 600 }, + [7] = { 72.8, 47.7, 8, 600 }, + [8] = { 76.1, 47.4, 8, 600 }, + [9] = { 71, 46.9, 8, 600 }, + [10] = { 74.8, 46.7, 8, 600 }, + [11] = { 72.1, 45.2, 8, 600 }, + [12] = { 70.6, 44.5, 8, 600 }, + [13] = { 74.7, 43.8, 8, 600 }, + [14] = { 76.2, 43.8, 8, 600 }, + }, + }, + [38029] = { + ["coords"] = { + [1] = { 43, 65.2, 12, 25 }, + [2] = { 75.6, 54.2, 357, 900 }, + }, + }, + [38494] = { + ["coords"] = { + [1] = { 73.6, 49.1, 10, 3600 }, + [2] = { 56.4, 30.6, 41, 300 }, + [3] = { 60.1, 53.5, 85, 900 }, + [4] = { 46.3, 71.6, 130, 7200 }, + }, + }, + [38927] = { + ["coords"] = { + [1] = { 31, 2.6, 5581, 7200 }, + }, + }, + [40198] = { + ["coords"] = { + [1] = { 35.9, 46.4, 722, 5400 }, + }, + }, + [40199] = { + ["coords"] = { + [1] = { 43.7, 49, 722, 5400 }, + }, + }, + [40200] = { + ["coords"] = { + [1] = { 42.9, 48.1, 722, 5400 }, + }, + }, + [40201] = { + ["coords"] = { + [1] = { 34.7, 54.5, 722, 5400 }, + }, + }, + [43116] = { + ["coords"] = { + [1] = { 41.6, 81.9, 40, 3600 }, + [2] = { 51.7, 85.4, 1581, 3600 }, + }, + }, + [43117] = { + ["coords"] = { + [1] = { 41.3, 83.1, 40, 3600 }, + [2] = { 49.3, 94.7, 1581, 3600 }, + }, + }, + [43118] = { + ["coords"] = { + [1] = { 42.4, 83.1, 40, 3600 }, + [2] = { 57.7, 94.8, 1581, 3600 }, + }, + }, + [43119] = { + ["coords"] = { + [1] = { 42.1, 83, 40, 3600 }, + [2] = { 55.4, 94, 1581, 3600 }, + }, + }, + [43120] = { + ["coords"] = { + [1] = { 41.6, 82.6, 40, 3600 }, + [2] = { 51.9, 90.9, 1581, 3600 }, + }, + }, + [43121] = { + ["coords"] = { + [1] = { 40.9, 80.7, 40, 3600 }, + [2] = { 46.2, 75.9, 1581, 3600 }, + }, + }, + [43122] = { + ["coords"] = { + [1] = { 40.8, 81.9, 40, 3600 }, + [2] = { 45.2, 85.6, 1581, 3600 }, + }, + }, + [48403] = { + ["coords"] = { + [1] = { 72.5, 32.9, 1, 120 }, + [2] = { 72.5, 32.6, 1, 120 }, + [3] = { 71.5, 24, 1, 120 }, + [4] = { 71.4, 24, 1, 120 }, + [5] = { 71.3, 21.9, 1, 120 }, + [6] = { 71.6, 21.6, 1, 120 }, + [7] = { 71.6, 21.4, 1, 120 }, + [8] = { 71.5, 21.3, 1, 120 }, + [9] = { 35.6, 68.6, 11, 120 }, + [10] = { 35.6, 68.5, 11, 120 }, + [11] = { 35.7, 68.5, 11, 120 }, + [12] = { 27.9, 66.8, 11, 120 }, + [13] = { 27.8, 66.7, 11, 120 }, + [14] = { 27.8, 66.4, 11, 120 }, + [15] = { 36, 64.8, 11, 120 }, + [16] = { 35.4, 62.8, 11, 120 }, + [17] = { 35.5, 62.8, 11, 120 }, + [18] = { 30.5, 29.3, 1337, 3600 }, + [19] = { 73.7, 53, 1497, 300 }, + [20] = { 73.6, 52.8, 1497, 300 }, + [21] = { 75, 52.7, 1497, 300 }, + [22] = { 73.3, 52.4, 1497, 300 }, + [23] = { 75.1, 52.3, 1497, 300 }, + [24] = { 73.2, 52.2, 1497, 300 }, + [25] = { 73.2, 51.9, 1497, 300 }, + [26] = { 73.4, 51.8, 1497, 300 }, + [27] = { 75.4, 51.4, 1497, 300 }, + [28] = { 75.3, 51.1, 1497, 300 }, + [29] = { 75.5, 50.7, 1497, 300 }, + [30] = { 75.3, 50.5, 1497, 300 }, + [31] = { 75.7, 50.5, 1497, 300 }, + [32] = { 75.3, 50.2, 1497, 300 }, + [33] = { 75.6, 50.2, 1497, 300 }, + [34] = { 73.9, 49.7, 1497, 300 }, + [35] = { 74.1, 49.6, 1497, 300 }, + [36] = { 76, 49.4, 1497, 300 }, + [37] = { 76.1, 49.1, 1497, 300 }, + [38] = { 74.5, 48.9, 1497, 300 }, + [39] = { 76.1, 48.9, 1497, 300 }, + [40] = { 74.3, 48.7, 1497, 300 }, + }, + }, + [48405] = { + ["coords"] = { + [1] = { 71.4, 70.5, 1337, 3600 }, + }, + }, + [48406] = { + ["coords"] = { + [1] = { 73, 75.8, 1337, 3600 }, + }, + }, + [48407] = { + ["coords"] = { + [1] = { 72.5, 69.3, 1337, 3600 }, + }, + }, + [48408] = { + ["coords"] = { + [1] = { 72.9, 70.6, 1337, 3600 }, + }, + }, + [48409] = { + ["coords"] = { + [1] = { 75.9, 68.8, 1337, 3600 }, + }, + }, + [48410] = { + ["coords"] = { + [1] = { 74, 75.2, 1337, 3600 }, + }, + }, + [48411] = { + ["coords"] = { + [1] = { 41, 36.2, 1337, 3600 }, + }, + }, + [48412] = { + ["coords"] = { + [1] = { 38.4, 40.5, 1337, 3600 }, + }, + }, + [48413] = { + ["coords"] = { + [1] = { 47.5, 30.3, 1337, 3600 }, + }, + }, + [48414] = { + ["coords"] = { + [1] = { 47.4, 29.8, 1337, 3600 }, + }, + }, + [48415] = { + ["coords"] = { + [1] = { 30.5, 77.1, 1337, 3600 }, + }, + }, + [48416] = { + ["coords"] = { + [1] = { 47.2, 30.2, 1337, 3600 }, + }, + }, + [48417] = { + ["coords"] = { + [1] = { 48.4, 31, 1337, 3600 }, + }, + }, + [48418] = { + ["coords"] = { + [1] = { 45.9, 31.5, 1337, 3600 }, + }, + }, + [48419] = { + ["coords"] = { + [1] = { 48.2, 30.5, 1337, 3600 }, + }, + }, + [48420] = { + ["coords"] = { + [1] = { 76.4, 79.5, 1337, 3600 }, + }, + }, + [48421] = { + ["coords"] = { + [1] = { 41, 42.1, 1337, 3600 }, + }, + }, + [48422] = { + ["coords"] = { + [1] = { 41.3, 42.1, 1337, 3600 }, + }, + }, + [48423] = { + ["coords"] = { + [1] = { 30.8, 77.8, 1337, 3600 }, + }, + }, + [48424] = { + ["coords"] = { + [1] = { 35.8, 25.6, 1337, 3600 }, + }, + }, + [48425] = { + ["coords"] = { + [1] = { 35.7, 27.1, 1337, 3600 }, + }, + }, + [48426] = { + ["coords"] = { + [1] = { 35.7, 26.7, 1337, 3600 }, + }, + }, + [48427] = { + ["coords"] = { + [1] = { 35, 55.5, 1337, 3600 }, + }, + }, + [48428] = { + ["coords"] = { + [1] = { 35.1, 55.7, 1337, 3600 }, + }, + }, + [48429] = { + ["coords"] = { + [1] = { 36.7, 29.2, 1337, 3600 }, + }, + }, + [48430] = { + ["coords"] = { + [1] = { 35.5, 60.2, 1337, 3600 }, + }, + }, + [48431] = { + ["coords"] = { + [1] = { 41.9, 57.8, 1337, 3600 }, + }, + }, + [48432] = { + ["coords"] = { + [1] = { 75.9, 69.8, 1337, 3600 }, + }, + }, + [48433] = { + ["coords"] = { + [1] = { 39.3, 57.1, 1337, 3600 }, + }, + }, + [48434] = { + ["coords"] = { + [1] = { 42.3, 57.9, 1337, 3600 }, + }, + }, + [48435] = { + ["coords"] = { + [1] = { 31.7, 70.5, 1337, 3600 }, + }, + }, + [48436] = { + ["coords"] = { + [1] = { 42.3, 57.6, 1337, 3600 }, + }, + }, + [48437] = { + ["coords"] = { + [1] = { 71.3, 70.2, 1337, 3600 }, + }, + }, + [48438] = { + ["coords"] = { + [1] = { 41.7, 67.5, 1337, 3600 }, + }, + }, + [48439] = { + ["coords"] = { + [1] = { 41.9, 67.6, 1337, 3600 }, + }, + }, + [48440] = { + ["coords"] = { + [1] = { 49, 62.2, 1337, 3600 }, + }, + }, + [48442] = { + ["coords"] = { + [1] = { 48.1, 62, 1337, 3600 }, + }, + }, + [48443] = { + ["coords"] = { + [1] = { 34.5, 48.6, 1337, 3600 }, + }, + }, + [48444] = { + ["coords"] = { + [1] = { 37.1, 49.2, 1337, 3600 }, + }, + }, + [48445] = { + ["coords"] = { + [1] = { 71.6, 70.3, 1337, 3600 }, + }, + }, + [48446] = { + ["coords"] = { + [1] = { 47.2, 60.3, 1337, 3600 }, + }, + }, + [48447] = { + ["coords"] = { + [1] = { 31.7, 45.3, 1337, 3600 }, + }, + }, + [48448] = { + ["coords"] = { + [1] = { 32.4, 46.9, 1337, 3600 }, + }, + }, + [48450] = { + ["coords"] = { + [1] = { 32.5, 46.6, 1337, 3600 }, + }, + }, + [48451] = { + ["coords"] = { + [1] = { 49.2, 61.5, 1337, 3600 }, + }, + }, + [48452] = { + ["coords"] = { + [1] = { 34, 37.5, 1337, 3600 }, + }, + }, + [48453] = { + ["coords"] = { + [1] = { 33.7, 37.3, 1337, 3600 }, + }, + }, + [48454] = { + ["coords"] = { + [1] = { 36.4, 35.9, 1337, 3600 }, + }, + }, + [48455] = { + ["coords"] = { + [1] = { 73.2, 75.3, 1337, 3600 }, + }, + }, + [48457] = { + ["coords"] = { + [1] = { 34.4, 40.4, 1337, 3600 }, + }, + }, + [48458] = { + ["coords"] = { + [1] = { 29.1, 70.4, 1337, 3600 }, + }, + }, + [48459] = { + ["coords"] = { + [1] = { 78.1, 71.9, 1337, 3600 }, + }, + }, + [48460] = { + ["coords"] = { + [1] = { 32.3, 45.8, 1337, 3600 }, + }, + }, + [48461] = { + ["coords"] = { + [1] = { 39.6, 29.7, 1337, 3600 }, + }, + }, + [48462] = { + ["coords"] = { + [1] = { 48.6, 51.7, 1337, 3600 }, + }, + }, + [48463] = { + ["coords"] = { + [1] = { 34, 36.9, 1337, 3600 }, + }, + }, + [48464] = { + ["coords"] = { + [1] = { 48.4, 51.6, 1337, 3600 }, + }, + }, + [48465] = { + ["coords"] = { + [1] = { 26.9, 33.1, 1337, 3600 }, + }, + }, + [48466] = { + ["coords"] = { + [1] = { 49.4, 50.2, 1337, 3600 }, + }, + }, + [48467] = { + ["coords"] = { + [1] = { 26.7, 32.9, 1337, 3600 }, + }, + }, + [48468] = { + ["coords"] = { + [1] = { 28.5, 33.3, 1337, 3600 }, + }, + }, + [48469] = { + ["coords"] = { + [1] = { 31.4, 59.9, 1337, 3600 }, + }, + }, + [48470] = { + ["coords"] = { + [1] = { 58.5, 94.8, 1337, 3600 }, + }, + }, + [48471] = { + ["coords"] = { + [1] = { 71.2, 75.1, 1337, 3600 }, + }, + }, + [48472] = { + ["coords"] = { + [1] = { 74.3, 75, 1337, 3600 }, + }, + }, + [48473] = { + ["coords"] = { + [1] = { 28.1, 58.5, 1337, 3600 }, + }, + }, + [48474] = { + ["coords"] = { + [1] = { 28, 58.1, 1337, 3600 }, + }, + }, + [48475] = { + ["coords"] = { + [1] = { 28.2, 57.7, 1337, 3600 }, + }, + }, + [48476] = { + ["coords"] = { + [1] = { 26.6, 33.4, 1337, 3600 }, + }, + }, + [48477] = { + ["coords"] = { + [1] = { 58.8, 94.8, 1337, 3600 }, + }, + }, + [48478] = { + ["coords"] = { + [1] = { 59.5, 93.7, 1337, 3600 }, + }, + }, + [48479] = { + ["coords"] = { + [1] = { 28.4, 61.6, 1337, 3600 }, + }, + }, + [48480] = { + ["coords"] = { + [1] = { 31.5, 60.8, 1337, 3600 }, + }, + }, + [48481] = { + ["coords"] = { + [1] = { 28.3, 62, 1337, 3600 }, + }, + }, + [48482] = { + ["coords"] = { + [1] = { 28.1, 62, 1337, 3600 }, + }, + }, + [48483] = { + ["coords"] = { + [1] = { 41.3, 36.4, 1337, 3600 }, + }, + }, + [48484] = { + ["coords"] = { + [1] = { 41, 35.6, 1337, 3600 }, + }, + }, + [48485] = { + ["coords"] = { + [1] = { 33.5, 25.4, 1337, 3600 }, + }, + }, + [48486] = { + ["coords"] = { + [1] = { 30.2, 29.5, 1337, 3600 }, + }, + }, + [48487] = { + ["coords"] = { + [1] = { 28.4, 58.1, 1337, 3600 }, + }, + }, + [48488] = { + ["coords"] = { + [1] = { 46.2, 52.9, 1337, 3600 }, + }, + }, + [48489] = { + ["coords"] = { + [1] = { 46, 52.7, 1337, 3600 }, + }, + }, + [48490] = { + ["coords"] = { + [1] = { 31.6, 70.9, 1337, 3600 }, + }, + }, + [48491] = { + ["coords"] = { + [1] = { 45.5, 54.5, 1337, 3600 }, + }, + }, + [48492] = { + ["coords"] = { + [1] = { 33.2, 25.9, 1337, 3600 }, + }, + }, + [48493] = { + ["coords"] = { + [1] = { 30.5, 29.8, 1337, 3600 }, + }, + }, + [48494] = { + ["coords"] = { + [1] = { 46, 53.2, 1337, 3600 }, + }, + }, + [48495] = { + ["coords"] = { + [1] = { 45.1, 75.7, 1337, 3600 }, + }, + }, + [48496] = { + ["coords"] = { + [1] = { 48.1, 69.8, 1337, 3600 }, + }, + }, + [48497] = { + ["coords"] = { + [1] = { 42.5, 75.7, 1337, 3600 }, + }, + }, + [48498] = { + ["coords"] = { + [1] = { 40.1, 75.5, 1337, 3600 }, + }, + }, + [48500] = { + ["coords"] = { + [1] = { 38.3, 39.7, 1337, 3600 }, + }, + }, + [48501] = { + ["coords"] = { + [1] = { 38.5, 40.2, 1337, 3600 }, + }, + }, + [48502] = { + ["coords"] = { + [1] = { 40.1, 75.8, 1337, 3600 }, + }, + }, + [48503] = { + ["coords"] = { + [1] = { 41.4, 75.6, 1337, 3600 }, + }, + }, + [48504] = { + ["coords"] = { + [1] = { 41.4, 75.9, 1337, 3600 }, + }, + }, + [48505] = { + ["coords"] = { + [1] = { 42.2, 77.2, 1337, 3600 }, + }, + }, + [48506] = { + ["coords"] = { + [1] = { 45.5, 75.9, 1337, 3600 }, + }, + }, + [48507] = { + ["coords"] = { + [1] = { 44.8, 59.2, 1337, 3600 }, + }, + }, + [48508] = { + ["coords"] = { + [1] = { 35.2, 51.2, 1337, 3600 }, + }, + }, + [48509] = { + ["coords"] = { + [1] = { 48.1, 75.7, 1337, 3600 }, + }, + }, + [48510] = { + ["coords"] = { + [1] = { 74.1, 74.8, 1337, 3600 }, + }, + }, + [48511] = { + ["coords"] = { + [1] = { 74.3, 74.6, 1337, 3600 }, + }, + }, + [48512] = { + ["coords"] = { + [1] = { 73.1, 70.4, 1337, 3600 }, + }, + }, + [48513] = { + ["coords"] = { + [1] = { 48.3, 70.3, 1337, 3600 }, + }, + }, + [48514] = { + ["coords"] = { + [1] = { 48, 70.4, 1337, 3600 }, + }, + }, + [48515] = { + ["coords"] = { + [1] = { 74.5, 66.8, 1337, 3600 }, + }, + }, + [48517] = { + ["coords"] = { + [1] = { 36.5, 91.1, 38, 900 }, + [2] = { 45, 55.7, 1337, 900 }, + [3] = { 17.2, 90.9, 5602, 900 }, + }, + }, + [48518] = { + ["coords"] = { + [1] = { 40.9, 15, 3, 900 }, + [2] = { 40, 89.8, 38, 900 }, + [3] = { 62, 49.3, 1337, 900 }, + [4] = { 19, 90.3, 5602, 900 }, + }, + }, + [48519] = { + ["coords"] = { + [1] = { 37.2, 85.8, 38, 900 }, + [2] = { 48.5, 30.1, 1337, 900 }, + [3] = { 17.6, 88.2, 5602, 900 }, + }, + }, + [48520] = { + ["coords"] = { + [1] = { 35.4, 91.1, 38, 900 }, + [2] = { 39.4, 55.9, 1337, 900 }, + [3] = { 16.6, 91, 5602, 900 }, + }, + }, + [48521] = { + ["coords"] = { + [1] = { 45.7, 63.7, 1337, 900 }, + [2] = { 17.3, 91.8, 5602, 900 }, + }, + }, + [48522] = { + ["coords"] = { + [1] = { 41, 15.7, 3, 900 }, + [2] = { 40, 90.4, 38, 900 }, + [3] = { 62.3, 52.4, 1337, 900 }, + [4] = { 19, 90.6, 5602, 900 }, + }, + }, + [48523] = { + ["coords"] = { + [1] = { 35.2, 90.7, 38, 900 }, + [2] = { 38.5, 53.8, 1337, 900 }, + [3] = { 16.6, 90.7, 5602, 900 }, + }, + }, + [48524] = { + ["coords"] = { + [1] = { 41, 15.8, 3, 900 }, + [2] = { 40.1, 90.5, 38, 900 }, + [3] = { 62.4, 52.8, 1337, 900 }, + [4] = { 19.1, 90.6, 5602, 900 }, + }, + }, + [48525] = { + ["coords"] = { + [1] = { 34.4, 88.8, 38, 900 }, + [2] = { 34.7, 44.4, 1337, 900 }, + [3] = { 16.2, 89.7, 5602, 900 }, + }, + }, + [48526] = { + ["coords"] = { + [1] = { 35.4, 88.3, 38, 900 }, + [2] = { 39.6, 41.9, 1337, 900 }, + [3] = { 16.7, 89.5, 5602, 900 }, + }, + }, + [48527] = { + ["coords"] = { + [1] = { 36.2, 88.9, 38, 900 }, + [2] = { 43.6, 44.9, 1337, 900 }, + [3] = { 17.1, 89.8, 5602, 900 }, + }, + }, + [48528] = { + ["coords"] = { + [1] = { 37, 89.8, 38, 900 }, + [2] = { 47.6, 49.5, 1337, 900 }, + [3] = { 17.5, 90.3, 5602, 900 }, + }, + }, + [48529] = { + ["coords"] = { + [1] = { 34.2, 88.3, 38, 900 }, + [2] = { 33.9, 42.1, 1337, 900 }, + [3] = { 16.1, 89.5, 5602, 900 }, + }, + }, + [48530] = { + ["coords"] = { + [1] = { 37.3, 85.6, 38, 900 }, + [2] = { 48.7, 28.8, 1337, 900 }, + [3] = { 17.6, 88.1, 5602, 900 }, + }, + }, + [48531] = { + ["coords"] = { + [1] = { 35.6, 89.6, 38, 900 }, + [2] = { 40.5, 48.5, 1337, 900 }, + [3] = { 16.8, 90.2, 5602, 900 }, + }, + }, + [48532] = { + ["coords"] = { + [1] = { 35.4, 87.4, 38, 900 }, + [2] = { 39.7, 37.6, 1337, 900 }, + [3] = { 16.7, 89, 5602, 900 }, + }, + }, + [48533] = { + ["coords"] = { + [1] = { 37.3, 85.6, 38, 900 }, + [2] = { 49, 29.1, 1337, 900 }, + [3] = { 17.7, 88.1, 5602, 900 }, + }, + }, + [48534] = { + ["coords"] = { + [1] = { 34.5, 88.8, 38, 900 }, + [2] = { 35.1, 44.5, 1337, 900 }, + [3] = { 16.2, 89.7, 5602, 900 }, + }, + }, + [48535] = { + ["coords"] = { + [1] = { 34.4, 87.4, 38, 900 }, + [2] = { 34.6, 37.6, 1337, 900 }, + [3] = { 16.1, 89, 5602, 900 }, + }, + }, + [48536] = { + ["coords"] = { + [1] = { 35.4, 87.5, 38, 900 }, + [2] = { 39.6, 38.1, 1337, 900 }, + [3] = { 16.7, 89.1, 5602, 900 }, + }, + }, + [48537] = { + ["coords"] = { + [1] = { 34.4, 88.9, 38, 900 }, + [2] = { 34.8, 44.9, 1337, 900 }, + [3] = { 16.2, 89.8, 5602, 900 }, + }, + }, + [48538] = { + ["coords"] = { + [1] = { 35.4, 87.4, 38, 900 }, + [2] = { 39.4, 37.7, 1337, 900 }, + [3] = { 16.7, 89, 5602, 900 }, + }, + }, + [48539] = { + ["coords"] = { + [1] = { 35.6, 87.9, 38, 900 }, + [2] = { 40.7, 40.3, 1337, 900 }, + [3] = { 16.8, 89.3, 5602, 900 }, + }, + }, + [48540] = { + ["coords"] = { + [1] = { 35.4, 88.1, 38, 900 }, + [2] = { 39.4, 41.4, 1337, 900 }, + [3] = { 16.7, 89.4, 5602, 900 }, + }, + }, + [48541] = { + ["coords"] = { + [1] = { 35.8, 89.6, 38, 900 }, + [2] = { 41.5, 48.4, 1337, 900 }, + [3] = { 16.9, 90.2, 5602, 900 }, + }, + }, + [48542] = { + ["coords"] = { + [1] = { 34.5, 88.9, 38, 900 }, + [2] = { 35.3, 44.9, 1337, 900 }, + [3] = { 16.2, 89.8, 5602, 900 }, + }, + }, + [48543] = { + ["coords"] = { + [1] = { 38.6, 18.7, 3, 900 }, + [2] = { 52, 65.7, 1337, 900 }, + [3] = { 18, 92, 5602, 900 }, + }, + }, + [48544] = { + ["coords"] = { + [1] = { 39.8, 17.6, 3, 900 }, + [2] = { 39, 92.1, 38, 900 }, + [3] = { 57.2, 60.6, 1337, 900 }, + [4] = { 18.5, 91.4, 5602, 900 }, + }, + }, + [48545] = { + ["coords"] = { + [1] = { 37.2, 88.4, 38, 900 }, + [2] = { 48.3, 42.8, 1337, 900 }, + [3] = { 17.6, 89.6, 5602, 900 }, + }, + }, + [48546] = { + ["coords"] = { + [1] = { 37, 89.9, 38, 900 }, + [2] = { 47.6, 50, 1337, 900 }, + [3] = { 17.5, 90.3, 5602, 900 }, + }, + }, + [48547] = { + ["coords"] = { + [1] = { 34.3, 88.4, 38, 900 }, + [2] = { 34.4, 42.5, 1337, 900 }, + [3] = { 16.1, 89.5, 5602, 900 }, + }, + }, + [48548] = { + ["coords"] = { + [1] = { 37, 88.4, 38, 900 }, + [2] = { 47.6, 42.7, 1337, 900 }, + [3] = { 17.5, 89.6, 5602, 900 }, + }, + }, + [48549] = { + ["coords"] = { + [1] = { 40.5, 11.2, 3, 900 }, + [2] = { 39.6, 86.4, 38, 900 }, + [3] = { 60.4, 32.6, 1337, 900 }, + [4] = { 18.8, 88.5, 5602, 900 }, + }, + }, + [48550] = { + ["coords"] = { + [1] = { 40.6, 11.3, 3, 900 }, + [2] = { 39.7, 86.4, 38, 900 }, + [3] = { 60.6, 32.9, 1337, 900 }, + [4] = { 18.9, 88.5, 5602, 900 }, + }, + }, + [48551] = { + ["coords"] = { + [1] = { 37.7, 87.8, 38, 900 }, + [2] = { 50.9, 39.7, 1337, 900 }, + [3] = { 17.9, 89.2, 5602, 900 }, + }, + }, + [48552] = { + ["coords"] = { + [1] = { 33.1, 88.8, 38, 900 }, + [2] = { 28.3, 44.7, 1337, 900 }, + [3] = { 15.5, 89.8, 5602, 900 }, + }, + }, + [48553] = { + ["coords"] = { + [1] = { 38.8, 12.7, 3, 900 }, + [2] = { 38.1, 87.7, 38, 900 }, + [3] = { 52.6, 39.1, 1337, 900 }, + [4] = { 18, 89.2, 5602, 900 }, + }, + }, + [48554] = { + ["coords"] = { + [1] = { 37.1, 89.9, 38, 900 }, + [2] = { 47.9, 49.9, 1337, 900 }, + [3] = { 17.5, 90.3, 5602, 900 }, + }, + }, + [48555] = { + ["coords"] = { + [1] = { 37.1, 88.5, 38, 900 }, + [2] = { 48, 43, 1337, 900 }, + [3] = { 17.5, 89.6, 5602, 900 }, + }, + }, + [48556] = { + ["coords"] = { + [1] = { 35.3, 90.8, 38, 900 }, + [2] = { 38.9, 54.1, 1337, 900 }, + [3] = { 16.6, 90.8, 5602, 900 }, + }, + }, + [48557] = { + ["coords"] = { + [1] = { 40.6, 11.1, 3, 900 }, + [2] = { 39.7, 86.3, 38, 900 }, + [3] = { 60.6, 32.1, 1337, 900 }, + [4] = { 18.9, 88.5, 5602, 900 }, + }, + }, + [48558] = { + ["coords"] = { + [1] = { 38.8, 12.5, 3, 900 }, + [2] = { 38.1, 87.5, 38, 900 }, + [3] = { 52.7, 38.3, 1337, 900 }, + [4] = { 18, 89.1, 5602, 900 }, + }, + }, + [48559] = { + ["coords"] = { + [1] = { 39.8, 13.7, 3, 900 }, + [2] = { 39, 88.5, 38, 900 }, + [3] = { 57.1, 43.2, 1337, 900 }, + [4] = { 18.5, 89.6, 5602, 900 }, + }, + }, + [48560] = { + ["coords"] = { + [1] = { 35.4, 91.1, 38, 900 }, + [2] = { 39.7, 55.9, 1337, 900 }, + [3] = { 16.7, 91, 5602, 900 }, + }, + }, + [48561] = { + ["coords"] = { + [1] = { 41.2, 12.8, 3, 900 }, + [2] = { 40.2, 87.7, 38, 900 }, + [3] = { 63.1, 39.3, 1337, 900 }, + [4] = { 19.1, 89.2, 5602, 900 }, + }, + }, + [48562] = { + ["coords"] = { + [1] = { 41.1, 12.8, 3, 900 }, + [2] = { 40.2, 87.8, 38, 900 }, + [3] = { 63, 39.6, 1337, 900 }, + [4] = { 19.1, 89.2, 5602, 900 }, + }, + }, + [48563] = { + ["coords"] = { + [1] = { 39.9, 13.6, 3, 900 }, + [2] = { 39.1, 88.5, 38, 900 }, + [3] = { 57.6, 43, 1337, 900 }, + [4] = { 18.6, 89.6, 5602, 900 }, + }, + }, + [48564] = { + ["coords"] = { + [1] = { 39.1, 11.7, 3, 900 }, + [2] = { 38.4, 86.8, 38, 900 }, + [3] = { 54.2, 34.7, 1337, 900 }, + [4] = { 18.2, 88.7, 5602, 900 }, + }, + }, + [48565] = { + ["coords"] = { + [1] = { 34.4, 87.5, 38, 900 }, + [2] = { 34.6, 38.1, 1337, 900 }, + [3] = { 16.2, 89.1, 5602, 900 }, + }, + }, + [48566] = { + ["coords"] = { + [1] = { 33.5, 90, 38, 900 }, + [2] = { 30.3, 50.4, 1337, 900 }, + [3] = { 15.7, 90.4, 5602, 900 }, + }, + }, + [48567] = { + ["coords"] = { + [1] = { 43.6, 12.3, 3, 900 }, + [2] = { 42.4, 87.3, 38, 900 }, + [3] = { 73.8, 37.3, 1337, 900 }, + [4] = { 20.3, 89, 5602, 900 }, + }, + }, + [48568] = { + ["coords"] = { + [1] = { 30.5, 88.2, 1337, 900 }, + [2] = { 15.7, 94.3, 5602, 900 }, + }, + }, + [48569] = { + ["coords"] = { + [1] = { 39.1, 18.4, 3, 900 }, + [2] = { 54.1, 64.2, 1337, 900 }, + [3] = { 18.2, 91.8, 5602, 900 }, + }, + }, + [48570] = { + ["coords"] = { + [1] = { 38.9, 11.5, 3, 900 }, + [2] = { 38.2, 86.6, 38, 900 }, + [3] = { 53.2, 33.8, 1337, 900 }, + [4] = { 18.1, 88.6, 5602, 900 }, + }, + }, + [48571] = { + ["coords"] = { + [1] = { 39.1, 18.3, 3, 900 }, + [2] = { 54.2, 63.8, 1337, 900 }, + [3] = { 18.2, 91.8, 5602, 900 }, + }, + }, + [48572] = { + ["coords"] = { + [1] = { 51, 66.4, 1337, 900 }, + [2] = { 17.9, 92, 5602, 900 }, + }, + }, + [48573] = { + ["coords"] = { + [1] = { 36.3, 91, 38, 900 }, + [2] = { 44, 55.6, 1337, 900 }, + [3] = { 17.1, 90.9, 5602, 900 }, + }, + }, + [48574] = { + ["coords"] = { + [1] = { 45.1, 64.3, 1337, 900 }, + [2] = { 17.3, 91.8, 5602, 900 }, + }, + }, + [48575] = { + ["coords"] = { + [1] = { 45.8, 64.1, 1337, 900 }, + [2] = { 17.3, 91.8, 5602, 900 }, + }, + }, + [48576] = { + ["coords"] = { + [1] = { 42.6, 10.2, 3, 900 }, + [2] = { 41.5, 85.4, 38, 900 }, + [3] = { 69.4, 28.1, 1337, 900 }, + [4] = { 19.8, 88, 5602, 900 }, + }, + }, + [49485] = { + ["coords"] = { + [1] = { 45.5, 58.9, 17, 900 }, + [2] = { 46.7, 60.9, 215, 900 }, + [3] = { 74.7, 44.9, 357, 900 }, + [4] = { 50.4, 63.2, 406, 900 }, + }, + }, + [49486] = { + ["coords"] = { + [1] = { 45.6, 59, 17, 900 }, + [2] = { 52.1, 30.4, 17, 25 }, + [3] = { 46.6, 61.4, 215, 900 }, + [4] = { 74.9, 45.3, 357, 900 }, + [5] = { 50.2, 63.6, 406, 900 }, + }, + }, + [49487] = { + ["coords"] = { + [1] = { 45.5, 59, 17, 900 }, + [2] = { 46.6, 61, 215, 900 }, + [3] = { 74.7, 45.1, 357, 900 }, + [4] = { 50.3, 63.3, 406, 900 }, + [5] = { 76.3, 54.4, 1519, 25 }, + [6] = { 76, 53.8, 1519, 25 }, + }, + }, + [50446] = { + ["coords"] = { + [1] = { 41.5, 34.4, 215, 900 }, + [2] = { 53.9, 56.1, 876, 300 }, + [3] = { 57.7, 86.6, 1638, 900 }, + }, + }, + [50803] = { + ["coords"] = { + [1] = { 44.9, 58.2, 17, 900 }, + [2] = { 44.4, 77.4, 215, 900 }, + [3] = { 76, 42.5, 357, 900 }, + [4] = { 66.9, 39.2, 357, 180 }, + [5] = { 69.6, 38.9, 357, 900 }, + [6] = { 46, 51.1, 400, 180 }, + [7] = { 39.1, 41.2, 400, 180 }, + [8] = { 55.5, 56.2, 405, 900 }, + [9] = { 71.4, 82.9, 406, 900 }, + [10] = { 92.2, 90.2, 2557, 180 }, + }, + }, + [50804] = { + ["coords"] = { + [1] = { 45, 58.2, 17, 900 }, + [2] = { 44.3, 77.2, 215, 900 }, + [3] = { 76.1, 42.4, 357, 900 }, + [4] = { 66.8, 39.1, 357, 180 }, + [5] = { 69.7, 38.8, 357, 900 }, + [6] = { 45.9, 51.2, 400, 180 }, + [7] = { 39, 41.3, 400, 180 }, + [8] = { 55.3, 56, 405, 900 }, + [9] = { 71.5, 82.9, 406, 900 }, + [10] = { 92, 89.5, 2557, 180 }, + }, + }, + [50805] = { + ["coords"] = { + [1] = { 44.9, 57.9, 17, 900 }, + [2] = { 44, 77.5, 215, 900 }, + [3] = { 75.9, 42.1, 357, 900 }, + [4] = { 66.6, 39.3, 357, 180 }, + [5] = { 69.5, 38.6, 357, 900 }, + [6] = { 46.1, 51.8, 400, 180 }, + [7] = { 39.3, 41.8, 400, 180 }, + [8] = { 55.1, 56.6, 405, 900 }, + [9] = { 71.3, 82.5, 406, 900 }, + [10] = { 90.8, 90.6, 2557, 180 }, + }, + }, + [50830] = { + ["coords"] = { + [1] = { 51.9, 41.2, 17, 25 }, + [2] = { 31.7, 22.3, 17, 900 }, + [3] = { 80.2, 78.2, 405, 300 }, + [4] = { 75.5, 83.1, 406, 900 }, + }, + }, + [50831] = { + ["coords"] = { + [1] = { 31.7, 22.2, 17, 900 }, + [2] = { 75.5, 83, 406, 900 }, + }, + }, + [50935] = { + ["coords"] = { + [1] = { 65.7, 36.7, 440, 2 }, + }, + ["fac"] = "AH", + }, + [50937] = { + ["coords"] = { + [1] = { 40, 66.3, 47, 2 }, + }, + }, + [50961] = { + ["coords"] = { + [1] = { 56.5, 17.8, 405, 2 }, + [2] = { 37.5, 87.9, 406, 2 }, + }, + ["fac"] = "A", + }, + [50982] = { + ["coords"] = { + [1] = { 54.5, 50.5, 51, 2 }, + }, + ["fac"] = "AH", + }, + [51704] = { + ["coords"] = { + [1] = { 49.3, 82.5, 2597, 60 }, + }, + }, + [51706] = { + ["coords"] = { + [1] = { 45.1, 51.2, 8, 600 }, + [2] = { 13.7, 55.1, 85, 300 }, + }, + }, + [51708] = { + ["coords"] = { + [1] = { 28.9, 30.8, 10, 1 }, + }, + }, + [56809] = { + ["coords"] = { + [1] = { 45.6, 33.7, 17, 900 }, + [2] = { 17.6, 45.3, 718, 900 }, + }, + }, + [56810] = { + ["coords"] = { + [1] = { 46, 35.7, 17, 900 }, + [2] = { 24.2, 81.4, 718, 900 }, + }, + }, + [56818] = { + ["coords"] = { + [1] = { 65.5, 72, 718, 3600 }, + }, + }, + [56819] = { + ["coords"] = { + [1] = { 51.6, 22.7, 718, 3600 }, + }, + }, + [56820] = { + ["coords"] = { + [1] = { 89.1, 29.4, 718, 3600 }, + }, + }, + [56821] = { + ["coords"] = { + [1] = { 71.9, 46.3, 718, 3600 }, + }, + }, + [56897] = { + ["coords"] = { + [1] = { 60.8, 39.7, 17, 900 }, + [2] = { 69.2, 20.1, 148, 300 }, + }, + }, + [58369] = { + ["coords"] = { + [1] = { 55, 26.7, 17, 2 }, + }, + }, + [58595] = { + ["coords"] = { + [1] = { 51.6, 9.8, 14, 2 }, + }, + ["fac"] = "H", + }, + [59529] = { + ["coords"] = { + [1] = { 87.6, 63.9, 718, 3600 }, + }, + }, + [59530] = { + ["coords"] = { + [1] = { 70.4, 36.3, 718, 3600 }, + }, + }, + [60393] = { + ["coords"] = { + [1] = { 64, 56.4, 718, 3600 }, + }, + }, + [60394] = { + ["coords"] = { + [1] = { 73.1, 45.5, 718, 3600 }, + }, + }, + [61035] = { + ["coords"] = { + [1] = { 42.3, 29, 3, 900 }, + [2] = { 26.3, 58.5, 15, 900 }, + [3] = { 49.1, 84.3, 17, 900 }, + [4] = { 9.8, 48.5, 45, 7200 }, + [5] = { 14.1, 44.1, 47, 7200 }, + [6] = { 71.5, 79.5, 267, 7200 }, + [7] = { 99.5, 3.1, 267, 7200 }, + [8] = { 19.7, 96.7, 5602, 900 }, + }, + }, + [61036] = { + ["coords"] = { + [1] = { 42.2, 29.1, 3, 900 }, + [2] = { 26.3, 58.4, 15, 900 }, + [3] = { 49.1, 84.2, 17, 900 }, + [4] = { 9.9, 48.4, 45, 7200 }, + [5] = { 14, 44.2, 47, 7200 }, + [6] = { 71.5, 79.4, 267, 7200 }, + [7] = { 99.4, 3.1, 267, 7200 }, + [8] = { 19.6, 96.8, 5602, 900 }, + }, + }, + [61037] = { + ["coords"] = { + [1] = { 42.3, 29.1, 3, 900 }, + [2] = { 26.2, 58.5, 15, 900 }, + [3] = { 49.1, 84.3, 17, 900 }, + [4] = { 9.8, 48.3, 45, 7200 }, + [5] = { 14.1, 44.3, 47, 7200 }, + [6] = { 71.4, 79.4, 267, 7200 }, + [7] = { 99.5, 3.3, 267, 7200 }, + [8] = { 19.7, 96.8, 5602, 900 }, + }, + }, + [61038] = { + ["coords"] = { + [1] = { 42.3, 29.2, 3, 900 }, + [2] = { 26.2, 58.5, 15, 900 }, + [3] = { 49.1, 84.3, 17, 900 }, + [4] = { 9.8, 48.3, 45, 7200 }, + [5] = { 14.1, 44.3, 47, 7200 }, + [6] = { 71.4, 79.3, 267, 7200 }, + [7] = { 99.5, 3.3, 267, 7200 }, + [8] = { 19.7, 96.8, 5602, 900 }, + }, + }, + [61039] = { + ["coords"] = { + [1] = { 42.4, 29.2, 3, 900 }, + [2] = { 26.2, 58.5, 15, 900 }, + [3] = { 49.1, 84.3, 17, 900 }, + [4] = { 9.8, 48.3, 45, 7200 }, + [5] = { 14.1, 44.3, 47, 7200 }, + [6] = { 71.4, 79.3, 267, 7200 }, + [7] = { 99.5, 3.3, 267, 7200 }, + [8] = { 19.7, 96.8, 5602, 900 }, + }, + }, + [61040] = { + ["coords"] = { + [1] = { 40.1, 26.5, 3, 900 }, + [2] = { 27.4, 57.6, 15, 900 }, + [3] = { 49.7, 83.8, 17, 900 }, + [4] = { 11.1, 50.6, 45, 7200 }, + [5] = { 13.6, 41.6, 47, 7200 }, + [6] = { 72.9, 81.9, 267, 7200 }, + [7] = { 58.4, 100, 1337, 900 }, + [8] = { 18.6, 95.6, 5602, 900 }, + }, + }, + [61041] = { + ["coords"] = { + [1] = { 40.7, 25.6, 3, 900 }, + [2] = { 27.6, 58.2, 15, 900 }, + [3] = { 49.8, 84.1, 17, 900 }, + [4] = { 10.6, 51.1, 45, 7200 }, + [5] = { 14.2, 41.5, 47, 7200 }, + [6] = { 72.3, 82.5, 267, 7200 }, + [7] = { 61.2, 95.8, 1337, 900 }, + [8] = { 18.9, 95.1, 5602, 900 }, + }, + }, + [61042] = { + ["coords"] = { + [1] = { 39.9, 26.8, 3, 900 }, + [2] = { 27.4, 57.5, 15, 900 }, + [3] = { 49.7, 83.7, 17, 900 }, + [4] = { 11.2, 50.4, 45, 7200 }, + [5] = { 13.5, 41.6, 47, 7200 }, + [6] = { 73, 81.7, 267, 7200 }, + [7] = { 18.6, 95.7, 5602, 900 }, + }, + }, + [61043] = { + ["coords"] = { + [1] = { 39.9, 26.9, 3, 900 }, + [2] = { 27.4, 57.4, 15, 900 }, + [3] = { 49.7, 83.7, 17, 900 }, + [4] = { 11.3, 50.3, 45, 7200 }, + [5] = { 13.4, 41.6, 47, 7200 }, + [6] = { 73.1, 81.6, 267, 7200 }, + [7] = { 18.5, 95.7, 5602, 900 }, + }, + }, + [61044] = { + ["coords"] = { + [1] = { 40, 26.7, 3, 900 }, + [2] = { 27.4, 57.5, 15, 900 }, + [3] = { 49.7, 83.8, 17, 900 }, + [4] = { 11.2, 50.4, 45, 7200 }, + [5] = { 13.5, 41.6, 47, 7200 }, + [6] = { 73, 81.7, 267, 7200 }, + [7] = { 18.6, 95.7, 5602, 900 }, + }, + }, + [61045] = { + ["coords"] = { + [1] = { 39.9, 26.7, 3, 900 }, + [2] = { 27.4, 57.5, 15, 900 }, + [3] = { 49.7, 83.7, 17, 900 }, + [4] = { 11.2, 50.4, 45, 7200 }, + [5] = { 13.5, 41.6, 47, 7200 }, + [6] = { 73, 81.8, 267, 7200 }, + [7] = { 18.6, 95.7, 5602, 900 }, + }, + }, + [61046] = { + ["coords"] = { + [1] = { 40.2, 26.2, 3, 900 }, + [2] = { 27.5, 57.8, 15, 900 }, + [3] = { 49.8, 83.9, 17, 900 }, + [4] = { 11, 50.8, 45, 7200 }, + [5] = { 13.8, 41.5, 47, 7200 }, + [6] = { 72.8, 82.1, 267, 7200 }, + [7] = { 59, 98.5, 1337, 900 }, + [8] = { 18.7, 95.4, 5602, 900 }, + }, + }, + [61047] = { + ["coords"] = { + [1] = { 40.3, 26.1, 3, 900 }, + [2] = { 27.5, 57.8, 15, 900 }, + [3] = { 49.8, 83.9, 17, 900 }, + [4] = { 11, 50.8, 45, 7200 }, + [5] = { 13.8, 41.5, 47, 7200 }, + [6] = { 72.7, 82.1, 267, 7200 }, + [7] = { 59.2, 98.2, 1337, 900 }, + [8] = { 18.7, 95.4, 5602, 900 }, + }, + }, + [61048] = { + ["coords"] = { + [1] = { 40.8, 25.6, 3, 900 }, + [2] = { 27.6, 58.3, 15, 900 }, + [3] = { 49.8, 84.1, 17, 900 }, + [4] = { 10.6, 51.1, 45, 7200 }, + [5] = { 14.2, 41.5, 47, 7200 }, + [6] = { 72.3, 82.5, 267, 7200 }, + [7] = { 61.5, 95.8, 1337, 900 }, + [8] = { 19, 95.1, 5602, 900 }, + }, + }, + [61049] = { + ["coords"] = { + [1] = { 40.8, 25.9, 3, 900 }, + [2] = { 27.5, 58.2, 15, 900 }, + [3] = { 49.7, 84.1, 17, 900 }, + [4] = { 10.6, 50.9, 45, 7200 }, + [5] = { 14.1, 41.7, 47, 7200 }, + [6] = { 72.3, 82.2, 267, 7200 }, + [7] = { 61.4, 97.1, 1337, 900 }, + [8] = { 19, 95.3, 5602, 900 }, + }, + }, + [61050] = { + ["coords"] = { + [1] = { 39.6, 27.7, 3, 900 }, + [2] = { 27.2, 57.1, 15, 900 }, + [3] = { 49.6, 83.5, 17, 900 }, + [4] = { 11.5, 49.9, 45, 7200 }, + [5] = { 13.1, 41.9, 47, 7200 }, + [6] = { 73.3, 81.1, 267, 7200 }, + [7] = { 18.4, 96.1, 5602, 900 }, + }, + }, + [61051] = { + ["coords"] = { + [1] = { 41.9, 27.1, 3, 900 }, + [2] = { 26.9, 58.7, 15, 900 }, + [3] = { 49.4, 84.4, 17, 900 }, + [4] = { 9.9, 49.8, 45, 7200 }, + [5] = { 14.4, 43, 47, 7200 }, + [6] = { 71.5, 81, 267, 7200 }, + [7] = { 99.9, 1.7, 267, 7200 }, + [8] = { 19.5, 95.8, 5602, 900 }, + }, + }, + [61052] = { + ["coords"] = { + [1] = { 40.7, 25.7, 3, 900 }, + [2] = { 27.6, 58.2, 15, 900 }, + [3] = { 49.8, 84.1, 17, 900 }, + [4] = { 10.6, 51, 45, 7200 }, + [5] = { 14.1, 41.5, 47, 7200 }, + [6] = { 72.4, 82.4, 267, 7200 }, + [7] = { 61, 96.2, 1337, 900 }, + [8] = { 18.9, 95.2, 5602, 900 }, + }, + }, + [61053] = { + ["coords"] = { + [1] = { 42.3, 30.1, 3, 900 }, + [2] = { 26, 58.3, 15, 900 }, + [3] = { 49, 84.2, 17, 900 }, + [4] = { 9.9, 47.7, 45, 7200 }, + [5] = { 13.8, 44.7, 47, 7200 }, + [6] = { 71.6, 78.7, 267, 7200 }, + [7] = { 99.2, 3.8, 267, 7200 }, + [8] = { 19.7, 97.2, 5602, 900 }, + }, + }, + [61054] = { + ["coords"] = { + [1] = { 42.3, 30.1, 3, 900 }, + [2] = { 26, 58.3, 15, 900 }, + [3] = { 49, 84.1, 17, 900 }, + [4] = { 9.9, 47.7, 45, 7200 }, + [5] = { 13.8, 44.7, 47, 7200 }, + [6] = { 71.6, 78.6, 267, 7200 }, + [7] = { 99.1, 3.8, 267, 7200 }, + [8] = { 19.6, 97.3, 5602, 900 }, + }, + }, + [61055] = { + ["coords"] = { + [1] = { 42.9, 28.9, 3, 900 }, + [2] = { 26.2, 59, 15, 900 }, + [3] = { 49.1, 84.5, 17, 900 }, + [4] = { 9.4, 48.4, 45, 7200 }, + [5] = { 14.5, 44.5, 47, 7200 }, + [6] = { 70.9, 79.5, 267, 7200 }, + [7] = { 99.9, 3.5, 267, 7200 }, + [8] = { 20, 96.7, 5602, 900 }, + }, + }, + [61056] = { + ["coords"] = { + [1] = { 42, 31.1, 3, 900 }, + [2] = { 25.7, 57.9, 15, 900 }, + [3] = { 48.8, 84, 17, 900 }, + [4] = { 10.2, 47.1, 45, 7200 }, + [5] = { 13.4, 45.1, 47, 7200 }, + [6] = { 71.8, 78, 267, 7200 }, + [7] = { 98.7, 4.2, 267, 7200 }, + [8] = { 19.5, 97.7, 5602, 900 }, + }, + }, + [61057] = { + ["coords"] = { + [1] = { 42, 31, 3, 900 }, + [2] = { 25.8, 57.9, 15, 900 }, + [3] = { 48.9, 84, 17, 900 }, + [4] = { 10.2, 47.1, 45, 7200 }, + [5] = { 13.4, 45, 47, 7200 }, + [6] = { 71.9, 78, 267, 7200 }, + [7] = { 98.7, 4.2, 267, 7200 }, + [8] = { 19.5, 97.7, 5602, 900 }, + }, + }, + [61058] = { + ["coords"] = { + [1] = { 41.9, 30.9, 3, 900 }, + [2] = { 25.8, 57.9, 15, 900 }, + [3] = { 48.9, 83.9, 17, 900 }, + [4] = { 10.3, 47.3, 45, 7200 }, + [5] = { 13.4, 44.9, 47, 7200 }, + [6] = { 71.9, 78.2, 267, 7200 }, + [7] = { 98.7, 4, 267, 7200 }, + [8] = { 19.5, 97.6, 5602, 900 }, + }, + }, + [61059] = { + ["coords"] = { + [1] = { 41.3, 30.1, 3, 900 }, + [2] = { 26.2, 57.6, 15, 900 }, + [3] = { 49.1, 83.8, 17, 900 }, + [4] = { 10.6, 47.9, 45, 7200 }, + [5] = { 13.3, 44.1, 47, 7200 }, + [6] = { 72.3, 78.9, 267, 7200 }, + [7] = { 98.5, 3.1, 267, 7200 }, + [8] = { 19.2, 97.2, 5602, 900 }, + }, + }, + [61060] = { + ["coords"] = { + [1] = { 40.8, 25.6, 3, 900 }, + [2] = { 27.5, 58.3, 15, 900 }, + [3] = { 49.8, 84.2, 17, 900 }, + [4] = { 10.5, 51, 45, 7200 }, + [5] = { 14.2, 41.6, 47, 7200 }, + [6] = { 72.3, 82.4, 267, 7200 }, + [7] = { 61.7, 96.1, 1337, 900 }, + [8] = { 19, 95.2, 5602, 900 }, + }, + }, + [61061] = { + ["coords"] = { + [1] = { 41.1, 29.9, 3, 900 }, + [2] = { 26.3, 57.6, 15, 900 }, + [3] = { 49.1, 83.8, 17, 900 }, + [4] = { 10.7, 48.1, 45, 7200 }, + [5] = { 13.2, 43.9, 47, 7200 }, + [6] = { 72.5, 79.1, 267, 7200 }, + [7] = { 98.5, 2.8, 267, 7200 }, + [8] = { 19.1, 97.1, 5602, 900 }, + }, + }, + [61062] = { + ["coords"] = { + [1] = { 42.7, 27.4, 3, 900 }, + [2] = { 26.6, 59.1, 15, 900 }, + [3] = { 49.3, 84.6, 17, 900 }, + [4] = { 9.4, 49.5, 45, 7200 }, + [5] = { 14.7, 43.6, 47, 7200 }, + [6] = { 71, 80.6, 267, 7200 }, + [7] = { 19.9, 96, 5602, 900 }, + }, + }, + [61063] = { + ["coords"] = { + [1] = { 43.4, 28.2, 3, 900 }, + [2] = { 26.3, 59.4, 15, 900 }, + [3] = { 49.1, 84.7, 17, 900 }, + [4] = { 9, 48.8, 45, 7200 }, + [5] = { 14.9, 44.4, 47, 7200 }, + [6] = { 70.5, 79.9, 267, 7200 }, + [7] = { 20.2, 96.3, 5602, 900 }, + }, + }, + [61064] = { + ["coords"] = { + [1] = { 43.5, 28.5, 3, 900 }, + [2] = { 26.2, 59.4, 15, 900 }, + [3] = { 49.1, 84.7, 17, 900 }, + [4] = { 8.9, 48.6, 45, 7200 }, + [5] = { 14.8, 44.6, 47, 7200 }, + [6] = { 70.5, 79.6, 267, 7200 }, + [7] = { 20.2, 96.5, 5602, 900 }, + }, + }, + [61065] = { + ["coords"] = { + [1] = { 40.3, 26.2, 3, 900 }, + [2] = { 27.5, 57.8, 15, 900 }, + [3] = { 49.8, 83.9, 17, 900 }, + [4] = { 11, 50.8, 45, 7200 }, + [5] = { 13.8, 41.5, 47, 7200 }, + [6] = { 72.7, 82.1, 267, 7200 }, + [7] = { 59.2, 98.5, 1337, 900 }, + [8] = { 18.7, 95.4, 5602, 900 }, + }, + }, + [61066] = { + ["coords"] = { + [1] = { 40.3, 26.1, 3, 900 }, + [2] = { 27.5, 57.9, 15, 900 }, + [3] = { 49.8, 83.9, 17, 900 }, + [4] = { 10.9, 50.8, 45, 7200 }, + [5] = { 13.9, 41.5, 47, 7200 }, + [6] = { 72.7, 82.2, 267, 7200 }, + [7] = { 59.4, 98, 1337, 900 }, + [8] = { 18.7, 95.4, 5602, 900 }, + }, + }, + [61067] = { + ["coords"] = { + [1] = { 40.5, 28.5, 3, 900 }, + [2] = { 26.8, 57.5, 15, 900 }, + [3] = { 49.4, 83.7, 17, 900 }, + [4] = { 11, 49.1, 45, 7200 }, + [5] = { 13.3, 42.9, 47, 7200 }, + [6] = { 72.8, 80.3, 267, 7200 }, + [7] = { 98.6, 1.6, 267, 7200 }, + [8] = { 18.8, 96.5, 5602, 900 }, + }, + }, + [61068] = { + ["coords"] = { + [1] = { 40.5, 28.6, 3, 900 }, + [2] = { 26.8, 57.4, 15, 900 }, + [3] = { 49.4, 83.7, 17, 900 }, + [4] = { 11, 49.1, 45, 7200 }, + [5] = { 13.3, 42.9, 47, 7200 }, + [6] = { 72.8, 80.2, 267, 7200 }, + [7] = { 98.5, 1.6, 267, 7200 }, + [8] = { 18.8, 96.5, 5602, 900 }, + }, + }, + [61069] = { + ["coords"] = { + [1] = { 39.6, 27.6, 3, 900 }, + [2] = { 27.2, 57.1, 15, 900 }, + [3] = { 49.6, 83.6, 17, 900 }, + [4] = { 11.5, 49.9, 45, 7200 }, + [5] = { 13.1, 41.8, 47, 7200 }, + [6] = { 73.3, 81.2, 267, 7200 }, + [7] = { 18.4, 96.1, 5602, 900 }, + }, + }, + [61070] = { + ["coords"] = { + [1] = { 40.4, 28.7, 3, 900 }, + [2] = { 26.8, 57.4, 15, 900 }, + [3] = { 49.4, 83.7, 17, 900 }, + [4] = { 11.1, 49, 45, 7200 }, + [5] = { 13.2, 42.9, 47, 7200 }, + [6] = { 72.9, 80.1, 267, 7200 }, + [7] = { 98.5, 1.6, 267, 7200 }, + [8] = { 18.8, 96.6, 5602, 900 }, + }, + }, + [61071] = { + ["coords"] = { + [1] = { 40.4, 28.8, 3, 900 }, + [2] = { 26.7, 57.3, 15, 900 }, + [3] = { 49.4, 83.7, 17, 900 }, + [4] = { 11.1, 49, 45, 7200 }, + [5] = { 13.2, 42.9, 47, 7200 }, + [6] = { 72.9, 80.1, 267, 7200 }, + [7] = { 98.4, 1.6, 267, 7200 }, + [8] = { 18.8, 96.6, 5602, 900 }, + }, + }, + [61072] = { + ["coords"] = { + [1] = { 41.5, 26.6, 3, 900 }, + [2] = { 27.1, 58.5, 15, 900 }, + [3] = { 49.6, 84.3, 17, 900 }, + [4] = { 10.1, 50.2, 45, 7200 }, + [5] = { 14.3, 42.5, 47, 7200 }, + [6] = { 71.8, 81.5, 267, 7200 }, + [7] = { 99.8, 1.1, 267, 7200 }, + [8] = { 19.3, 95.6, 5602, 900 }, + }, + }, + [61073] = { + ["coords"] = { + [1] = { 41.6, 26.5, 3, 900 }, + [2] = { 27.1, 58.6, 15, 900 }, + [3] = { 49.6, 84.3, 17, 900 }, + [4] = { 10.1, 50.3, 45, 7200 }, + [5] = { 14.4, 42.5, 47, 7200 }, + [6] = { 71.8, 81.5, 267, 7200 }, + [7] = { 99.9, 1.1, 267, 7200 }, + [8] = { 19.3, 95.6, 5602, 900 }, + }, + }, + [61074] = { + ["coords"] = { + [1] = { 41.7, 26.4, 3, 900 }, + [2] = { 27.2, 58.7, 15, 900 }, + [3] = { 49.6, 84.4, 17, 900 }, + [4] = { 10, 50.4, 45, 7200 }, + [5] = { 14.5, 42.5, 47, 7200 }, + [6] = { 71.7, 81.7, 267, 7200 }, + [7] = { 100, 1.1, 267, 7200 }, + [8] = { 65.4, 99.3, 1337, 900 }, + [9] = { 19.4, 95.5, 5602, 900 }, + }, + }, + [61075] = { + ["coords"] = { + [1] = { 41.9, 26.9, 3, 900 }, + [2] = { 27, 58.7, 15, 900 }, + [3] = { 49.5, 84.4, 17, 900 }, + [4] = { 9.9, 50, 45, 7200 }, + [5] = { 14.5, 42.8, 47, 7200 }, + [6] = { 71.6, 81.2, 267, 7200 }, + [7] = { 99.9, 1.5, 267, 7200 }, + [8] = { 19.5, 95.7, 5602, 900 }, + }, + }, + [61076] = { + ["coords"] = { + [1] = { 41.8, 27, 3, 900 }, + [2] = { 26.9, 58.6, 15, 900 }, + [3] = { 49.5, 84.3, 17, 900 }, + [4] = { 10, 49.9, 45, 7200 }, + [5] = { 14.4, 42.9, 47, 7200 }, + [6] = { 71.6, 81.1, 267, 7200 }, + [7] = { 99.9, 1.6, 267, 7200 }, + [8] = { 19.4, 95.8, 5602, 900 }, + }, + }, + [61077] = { + ["coords"] = { + [1] = { 41.6, 28.8, 3, 900 }, + [2] = { 26.5, 58.1, 15, 900 }, + [3] = { 49.2, 84.1, 17, 900 }, + [4] = { 10.3, 48.7, 45, 7200 }, + [5] = { 13.8, 43.6, 47, 7200 }, + [6] = { 72, 79.8, 267, 7200 }, + [7] = { 99.1, 2.5, 267, 7200 }, + [8] = { 19.3, 96.6, 5602, 900 }, + }, + }, + [61078] = { + ["coords"] = { + [1] = { 41.9, 29.3, 3, 900 }, + [2] = { 26.3, 58.2, 15, 900 }, + [3] = { 49.1, 84.1, 17, 900 }, + [4] = { 10.1, 48.3, 45, 7200 }, + [5] = { 13.8, 44.1, 47, 7200 }, + [6] = { 71.8, 79.3, 267, 7200 }, + [7] = { 99.2, 3, 267, 7200 }, + [8] = { 19.5, 96.9, 5602, 900 }, + }, + }, + [61079] = { + ["coords"] = { + [1] = { 42, 28.7, 3, 900 }, + [2] = { 26.4, 58.4, 15, 900 }, + [3] = { 49.2, 84.2, 17, 900 }, + [4] = { 10, 48.7, 45, 7200 }, + [5] = { 14, 43.9, 47, 7200 }, + [6] = { 71.6, 79.8, 267, 7200 }, + [7] = { 99.4, 2.8, 267, 7200 }, + [8] = { 19.5, 96.6, 5602, 900 }, + }, + }, + [61080] = { + ["coords"] = { + [1] = { 42, 28.8, 3, 900 }, + [2] = { 26.4, 58.4, 15, 900 }, + [3] = { 49.2, 84.2, 17, 900 }, + [4] = { 10, 48.6, 45, 7200 }, + [5] = { 14, 43.9, 47, 7200 }, + [6] = { 71.7, 79.7, 267, 7200 }, + [7] = { 99.4, 2.8, 267, 7200 }, + [8] = { 19.5, 96.6, 5602, 900 }, + }, + }, + [61081] = { + ["coords"] = { + [1] = { 42, 28.9, 3, 900 }, + [2] = { 26.4, 58.3, 15, 900 }, + [3] = { 49.2, 84.2, 17, 900 }, + [4] = { 10, 48.5, 45, 7200 }, + [5] = { 14, 44, 47, 7200 }, + [6] = { 71.7, 79.6, 267, 7200 }, + [7] = { 99.3, 2.9, 267, 7200 }, + [8] = { 19.5, 96.7, 5602, 900 }, + }, + }, + [61082] = { + ["coords"] = { + [1] = { 42, 29, 3, 900 }, + [2] = { 26.3, 58.4, 15, 900 }, + [3] = { 49.1, 84.2, 17, 900 }, + [4] = { 10, 48.5, 45, 7200 }, + [5] = { 14, 44, 47, 7200 }, + [6] = { 71.6, 79.6, 267, 7200 }, + [7] = { 99.4, 3, 267, 7200 }, + [8] = { 19.5, 96.7, 5602, 900 }, + }, + }, + [61083] = { + ["coords"] = { + [1] = { 42.1, 28.7, 3, 900 }, + [2] = { 26.4, 58.5, 15, 900 }, + [3] = { 49.2, 84.3, 17, 900 }, + [4] = { 9.9, 48.7, 45, 7200 }, + [5] = { 14.1, 43.9, 47, 7200 }, + [6] = { 71.6, 79.8, 267, 7200 }, + [7] = { 99.5, 2.8, 267, 7200 }, + [8] = { 19.6, 96.6, 5602, 900 }, + }, + }, + [61084] = { + ["coords"] = { + [1] = { 42.2, 28.8, 3, 900 }, + [2] = { 26.4, 58.5, 15, 900 }, + [3] = { 49.2, 84.3, 17, 900 }, + [4] = { 9.9, 48.6, 45, 7200 }, + [5] = { 14.1, 44, 47, 7200 }, + [6] = { 71.5, 79.7, 267, 7200 }, + [7] = { 99.5, 2.9, 267, 7200 }, + [8] = { 19.6, 96.6, 5602, 900 }, + }, + }, + [61085] = { + ["coords"] = { + [1] = { 41.2, 28.7, 3, 900 }, + [2] = { 26.6, 57.9, 15, 900 }, + [3] = { 49.3, 83.9, 17, 900 }, + [4] = { 10.5, 48.9, 45, 7200 }, + [5] = { 13.6, 43.4, 47, 7200 }, + [6] = { 72.3, 80, 267, 7200 }, + [7] = { 98.9, 2.2, 267, 7200 }, + [8] = { 19.1, 96.6, 5602, 900 }, + }, + }, + [61086] = { + ["coords"] = { + [1] = { 41.3, 28.8, 3, 900 }, + [2] = { 26.6, 57.9, 15, 900 }, + [3] = { 49.3, 84, 17, 900 }, + [4] = { 10.5, 48.8, 45, 7200 }, + [5] = { 13.6, 43.4, 47, 7200 }, + [6] = { 72.2, 79.9, 267, 7200 }, + [7] = { 98.9, 2.3, 267, 7200 }, + [8] = { 19.2, 96.6, 5602, 900 }, + }, + }, + [61087] = { + ["coords"] = { + [1] = { 39.7, 27.7, 3, 900 }, + [2] = { 27.2, 57.1, 15, 900 }, + [3] = { 49.6, 83.6, 17, 900 }, + [4] = { 11.5, 49.8, 45, 7200 }, + [5] = { 13.1, 42, 47, 7200 }, + [6] = { 73.3, 81, 267, 7200 }, + [7] = { 98.3, 0.5, 267, 7200 }, + [8] = { 18.5, 96.1, 5602, 900 }, + }, + }, + [61088] = { + ["coords"] = { + [1] = { 40.7, 28.6, 3, 900 }, + [2] = { 26.7, 57.6, 15, 900 }, + [3] = { 49.3, 83.8, 17, 900 }, + [4] = { 10.8, 49, 45, 7200 }, + [5] = { 13.4, 43, 47, 7200 }, + [6] = { 72.6, 80.2, 267, 7200 }, + [7] = { 98.7, 1.8, 267, 7200 }, + [8] = { 18.9, 96.5, 5602, 900 }, + }, + }, + [61089] = { + ["coords"] = { + [1] = { 41, 29.3, 3, 900 }, + [2] = { 26.5, 57.6, 15, 900 }, + [3] = { 49.2, 83.8, 17, 900 }, + [4] = { 10.7, 48.5, 45, 7200 }, + [5] = { 13.3, 43.5, 47, 7200 }, + [6] = { 72.5, 79.6, 267, 7200 }, + [7] = { 98.6, 2.4, 267, 7200 }, + [8] = { 19.1, 96.9, 5602, 900 }, + }, + }, + [61090] = { + ["coords"] = { + [1] = { 42, 27.4, 3, 900 }, + [2] = { 26.8, 58.7, 15, 900 }, + [3] = { 49.4, 84.4, 17, 900 }, + [4] = { 9.9, 49.6, 45, 7200 }, + [5] = { 14.4, 43.2, 47, 7200 }, + [6] = { 71.5, 80.8, 267, 7200 }, + [7] = { 99.9, 1.9, 267, 7200 }, + [8] = { 19.5, 96, 5602, 900 }, + }, + }, + [61091] = { + ["coords"] = { + [1] = { 39.7, 27.5, 3, 900 }, + [2] = { 27.3, 57.2, 15, 900 }, + [3] = { 49.6, 83.6, 17, 900 }, + [4] = { 11.5, 50, 45, 7200 }, + [5] = { 13.2, 41.8, 47, 7200 }, + [6] = { 73.3, 81.2, 267, 7200 }, + [7] = { 18.5, 96, 5602, 900 }, + }, + }, + [61092] = { + ["coords"] = { + [1] = { 40.8, 25.8, 3, 900 }, + [2] = { 27.5, 58.3, 15, 900 }, + [3] = { 49.7, 84.1, 17, 900 }, + [4] = { 10.5, 50.9, 45, 7200 }, + [5] = { 14.2, 41.7, 47, 7200 }, + [6] = { 72.3, 82.3, 267, 7200 }, + [7] = { 61.7, 96.8, 1337, 900 }, + [8] = { 19, 95.2, 5602, 900 }, + }, + }, + [61093] = { + ["coords"] = { + [1] = { 41.6, 27, 3, 900 }, + [2] = { 27, 58.5, 15, 900 }, + [3] = { 49.5, 84.3, 17, 900 }, + [4] = { 10.1, 49.9, 45, 7200 }, + [5] = { 14.3, 42.7, 47, 7200 }, + [6] = { 71.8, 81.2, 267, 7200 }, + [7] = { 99.7, 1.4, 267, 7200 }, + [8] = { 19.4, 95.8, 5602, 900 }, + }, + }, + [61094] = { + ["coords"] = { + [1] = { 42.1, 27.3, 3, 900 }, + [2] = { 26.8, 58.7, 15, 900 }, + [3] = { 49.4, 84.4, 17, 900 }, + [4] = { 9.8, 49.7, 45, 7200 }, + [5] = { 14.4, 43.2, 47, 7200 }, + [6] = { 71.5, 80.9, 267, 7200 }, + [7] = { 99.9, 1.9, 267, 7200 }, + [8] = { 19.6, 95.9, 5602, 900 }, + }, + }, + [61095] = { + ["coords"] = { + [1] = { 41.4, 28.3, 3, 900 }, + [2] = { 69.4, 57.3, 10, 300 }, + [3] = { 34.7, 48.8, 10, 300 }, + [4] = { 34.7, 48.6, 10, 300 }, + [5] = { 32.2, 48.2, 10, 300 }, + [6] = { 32.6, 48, 10, 300 }, + [7] = { 32.4, 47.9, 10, 300 }, + [8] = { 32.5, 47.8, 10, 300 }, + [9] = { 93.7, 15.7, 10, 25 }, + [10] = { 93.9, 13.6, 10, 25 }, + [11] = { 48.5, 61.9, 11, 300 }, + [12] = { 48.7, 61.7, 11, 300 }, + [13] = { 48.6, 61.7, 11, 300 }, + [14] = { 84.5, 79.2, 12, 300 }, + [15] = { 84.6, 79.1, 12, 300 }, + [16] = { 39.2, 69.2, 12, 300 }, + [17] = { 39.3, 69.1, 12, 300 }, + [18] = { 42.9, 65.4, 12, 25 }, + [19] = { 41.7, 64.5, 12, 25 }, + [20] = { 35.2, 50.2, 12, 25 }, + [21] = { 35.2, 50.1, 12, 25 }, + [22] = { 70.7, 38.1, 12, 25 }, + [23] = { 59.9, 30.4, 12, 25 }, + [24] = { 59.8, 30.4, 12, 25 }, + [25] = { 59.9, 30.2, 12, 25 }, + [26] = { 59.8, 30.2, 12, 25 }, + [27] = { 60, 29.8, 12, 25 }, + [28] = { 59.2, 29.3, 12, 25 }, + [29] = { 33.7, 51.9, 14, 300 }, + [30] = { 49.8, 35.8, 14, 25 }, + [31] = { 48, 17, 14, 25 }, + [32] = { 48, 16.9, 14, 25 }, + [33] = { 26.7, 58.1, 15, 900 }, + [34] = { 77, 56.2, 15, 300 }, + [35] = { 77.1, 56.2, 15, 300 }, + [36] = { 76.8, 56.1, 15, 300 }, + [37] = { 76.8, 56, 15, 300 }, + [38] = { 67.1, 45.4, 15, 25 }, + [39] = { 67, 45.4, 15, 25 }, + [40] = { 67.1, 45.3, 15, 25 }, + [41] = { 41.6, 42.7, 16, 300 }, + [42] = { 41.7, 42.7, 16, 300 }, + [43] = { 41.7, 42.6, 16, 300 }, + [44] = { 49.3, 84.1, 17, 900 }, + [45] = { 61, 24.7, 17, 300 }, + [46] = { 62.8, 24.2, 17, 300 }, + [47] = { 61.6, 23.6, 17, 300 }, + [48] = { 43.9, 99.2, 28, 300 }, + [49] = { 43.9, 99.1, 28, 300 }, + [50] = { 79, 67.1, 28, 300 }, + [51] = { 80.7, 63.5, 28, 300 }, + [52] = { 80.9, 63.5, 28, 300 }, + [53] = { 79.8, 63.1, 28, 300 }, + [54] = { 80, 63.1, 28, 300 }, + [55] = { 79.8, 63, 28, 300 }, + [56] = { 79.9, 63, 28, 300 }, + [57] = { 33.9, 17.7, 28, 300 }, + [58] = { 33.9, 17.6, 28, 300 }, + [59] = { 88.6, 72.4, 36, 300 }, + [60] = { 80.6, 52.4, 36, 300 }, + [61] = { 80.5, 52.3, 36, 300 }, + [62] = { 80.5, 52.2, 36, 300 }, + [63] = { 80.6, 52.1, 36, 300 }, + [64] = { 42, 74.6, 40, 300 }, + [65] = { 42.1, 74.5, 40, 300 }, + [66] = { 10.4, 49.1, 45, 7200 }, + [67] = { 3.2, 51.4, 47, 300 }, + [68] = { 13.8, 43.2, 47, 7200 }, + [69] = { 90.2, 32.5, 85, 300 }, + [70] = { 90.1, 32.4, 85, 300 }, + [71] = { 67.9, 81.6, 130, 300 }, + [72] = { 22.4, 87.3, 139, 300 }, + [73] = { 22.6, 87.3, 139, 300 }, + [74] = { 21.5, 86.9, 139, 300 }, + [75] = { 21.6, 86.9, 139, 300 }, + [76] = { 21.5, 86.8, 139, 300 }, + [77] = { 21.6, 86.7, 139, 300 }, + [78] = { 67.9, 18.2, 148, 300 }, + [79] = { 67.9, 18.1, 148, 300 }, + [80] = { 68.5, 17.9, 148, 300 }, + [81] = { 68.4, 17.8, 148, 300 }, + [82] = { 72.1, 80.3, 267, 7200 }, + [83] = { 42.6, 51.1, 267, 300 }, + [84] = { 42.5, 51, 267, 300 }, + [85] = { 42.5, 50.9, 267, 300 }, + [86] = { 14.7, 47.8, 267, 300 }, + [87] = { 14.6, 47.7, 267, 300 }, + [88] = { 86.3, 11.8, 267, 300 }, + [89] = { 86.4, 11.8, 267, 300 }, + [90] = { 99.2, 2, 267, 7200 }, + [91] = { 62.6, 60.4, 331, 300 }, + [92] = { 62.5, 60.3, 331, 300 }, + [93] = { 62.6, 60.3, 331, 300 }, + [94] = { 47.7, 57.3, 406, 300 }, + [95] = { 47.7, 57.2, 406, 300 }, + [96] = { 31.1, 36.3, 440, 300 }, + [97] = { 31, 36.2, 440, 300 }, + [98] = { 31.1, 36.1, 440, 300 }, + [99] = { 58.2, 22.2, 440, 300 }, + [100] = { 58.1, 22.1, 440, 300 }, + [101] = { 58.2, 22.1, 440, 300 }, + [102] = { 78.3, 64, 490, 300 }, + [103] = { 78.1, 63.8, 490, 300 }, + [104] = { 78.3, 63.6, 490, 300 }, + [105] = { 73.7, 37.7, 1497, 300 }, + [106] = { 61.7, 75.4, 1519, 25 }, + [107] = { 61.8, 75.4, 1519, 25 }, + [108] = { 61.7, 75.3, 1519, 25 }, + [109] = { 61.8, 75.2, 1519, 25 }, + [110] = { 62.6, 71.7, 1519, 300 }, + [111] = { 62.3, 71.3, 1519, 300 }, + [112] = { 36.5, 70.4, 1519, 300 }, + [113] = { 54.7, 28.4, 1581, 300 }, + [114] = { 55.5, 28, 1581, 300 }, + [115] = { 63.6, 45.3, 1637, 25 }, + [116] = { 62.2, 44.8, 1637, 25 }, + [117] = { 63.7, 44.7, 1637, 25 }, + [118] = { 35.4, 91.9, 3478, 25 }, + [119] = { 35.6, 91.8, 3478, 25 }, + [120] = { 35.7, 91.7, 3478, 25 }, + [121] = { 35.7, 91.5, 3478, 25 }, + [122] = { 96.8, 13.6, 5179, 300 }, + [123] = { 96.7, 13.5, 5179, 300 }, + [124] = { 96.7, 13.4, 5179, 300 }, + [125] = { 72.5, 10.7, 5179, 300 }, + [126] = { 72.4, 10.6, 5179, 300 }, + [127] = { 19.2, 96.4, 5602, 900 }, + [128] = { 6, 26.5, 5602, 300 }, + [129] = { 6.1, 26.4, 5602, 300 }, + }, + }, + [61096] = { + ["coords"] = { + [1] = { 40.9, 28.8, 3, 900 }, + [2] = { 26.6, 57.7, 15, 900 }, + [3] = { 49.3, 83.8, 17, 900 }, + [4] = { 10.7, 48.9, 45, 7200 }, + [5] = { 13.4, 43.2, 47, 7200 }, + [6] = { 72.5, 80, 267, 7200 }, + [7] = { 98.7, 2, 267, 7200 }, + [8] = { 19, 96.6, 5602, 900 }, + }, + }, + [61097] = { + ["coords"] = { + [1] = { 41.5, 28.4, 3, 900 }, + [2] = { 26.6, 58.2, 15, 900 }, + [3] = { 49.3, 84.1, 17, 900 }, + [4] = { 10.3, 49, 45, 7200 }, + [5] = { 13.9, 43.4, 47, 7200 }, + [6] = { 72, 80.2, 267, 7200 }, + [7] = { 99.2, 2.2, 267, 7200 }, + [8] = { 83.6, 54.5, 400, 25 }, + [9] = { 83.6, 54.4, 400, 25 }, + [10] = { 83.7, 54.4, 400, 25 }, + [11] = { 83.5, 54.4, 400, 25 }, + [12] = { 83.7, 54.3, 400, 25 }, + [13] = { 83.6, 54.3, 400, 25 }, + [14] = { 19.3, 96.4, 5602, 900 }, + }, + }, + [61098] = { + ["coords"] = { + [1] = { 41, 27.3, 3, 900 }, + [2] = { 42.3, 72.8, 15, 300 }, + [3] = { 27, 58.1, 15, 900 }, + [4] = { 49.5, 84, 17, 900 }, + [5] = { 10.5, 49.8, 45, 7200 }, + [6] = { 13.9, 42.5, 47, 7200 }, + [7] = { 72.3, 81.1, 267, 7200 }, + [8] = { 99.3, 1.2, 267, 7200 }, + [9] = { 54.8, 18.6, 5561, 300 }, + [10] = { 40.4, 58.2, 5581, 300 }, + [11] = { 40.4, 58.1, 5581, 300 }, + [12] = { 40.3, 58.1, 5581, 300 }, + [13] = { 19.1, 95.9, 5602, 900 }, + }, + }, + [61099] = { + ["coords"] = { + [1] = { 40.9, 28.8, 3, 900 }, + [2] = { 41.8, 74.2, 15, 300 }, + [3] = { 41.8, 74.1, 15, 300 }, + [4] = { 41.7, 74, 15, 300 }, + [5] = { 42, 74, 15, 300 }, + [6] = { 26.6, 57.7, 15, 900 }, + [7] = { 49.3, 83.9, 17, 900 }, + [8] = { 10.7, 48.8, 45, 7200 }, + [9] = { 13.4, 43.3, 47, 7200 }, + [10] = { 72.5, 79.9, 267, 7200 }, + [11] = { 98.7, 2.1, 267, 7200 }, + [12] = { 19, 96.6, 5602, 900 }, + }, + }, + [61100] = { + ["coords"] = { + [1] = { 41.5, 26.9, 3, 900 }, + [2] = { 27, 58.4, 15, 900 }, + [3] = { 49.5, 84.2, 17, 900 }, + [4] = { 10.2, 50, 45, 7200 }, + [5] = { 14.2, 42.6, 47, 7200 }, + [6] = { 71.9, 81.3, 267, 7200 }, + [7] = { 99.7, 1.2, 267, 7200 }, + [8] = { 19.3, 95.7, 5602, 900 }, + }, + }, + [61101] = { + ["coords"] = { + [1] = { 41.7, 27.4, 3, 900 }, + [2] = { 26.9, 58.5, 15, 900 }, + [3] = { 49.4, 84.3, 17, 900 }, + [4] = { 10.1, 49.7, 45, 7200 }, + [5] = { 14.2, 43, 47, 7200 }, + [6] = { 71.8, 80.9, 267, 7200 }, + [7] = { 99.7, 1.7, 267, 7200 }, + [8] = { 19.4, 96, 5602, 900 }, + }, + }, + [61102] = { + ["coords"] = { + [1] = { 41.8, 27.3, 3, 900 }, + [2] = { 26.9, 58.6, 15, 900 }, + [3] = { 49.4, 84.3, 17, 900 }, + [4] = { 43.4, 80.4, 33, 300 }, + [5] = { 43.4, 80.1, 33, 300 }, + [6] = { 43.4, 80, 33, 300 }, + [7] = { 43.2, 80, 33, 300 }, + [8] = { 43.2, 79.8, 33, 300 }, + [9] = { 43.4, 79.6, 33, 300 }, + [10] = { 10, 49.7, 45, 7200 }, + [11] = { 14.3, 43, 47, 7200 }, + [12] = { 71.7, 80.9, 267, 7200 }, + [13] = { 99.8, 1.8, 267, 7200 }, + [14] = { 43.6, 16.2, 357, 25 }, + [15] = { 83.5, 55.2, 400, 25 }, + [16] = { 67.9, 26.5, 440, 300 }, + [17] = { 67.8, 26.3, 440, 300 }, + [18] = { 19.4, 95.9, 5602, 900 }, + }, + }, + [61919] = { + ["coords"] = { + [1] = { 6.7, 59.4, 11, 7200 }, + [2] = { 67.6, 58.5, 15, 900 }, + [3] = { 69, 55.9, 15, 900 }, + }, + }, + [61920] = { + ["coords"] = { + [1] = { 6.6, 59.5, 11, 7200 }, + [2] = { 67.6, 58.4, 15, 900 }, + [3] = { 68.9, 55.8, 15, 900 }, + }, + }, + [61921] = { + ["coords"] = { + [1] = { 6.6, 59.6, 11, 7200 }, + [2] = { 67.5, 58.4, 15, 900 }, + [3] = { 68.8, 55.8, 15, 900 }, + }, + }, + [61922] = { + ["coords"] = { + [1] = { 6.5, 59.4, 11, 7200 }, + [2] = { 67.6, 58.3, 15, 900 }, + [3] = { 68.9, 55.7, 15, 900 }, + }, + }, + [61923] = { + ["coords"] = { + [1] = { 6.5, 59.5, 11, 7200 }, + [2] = { 67.5, 58.3, 15, 900 }, + [3] = { 68.9, 55.7, 15, 900 }, + }, + }, + [61924] = { + ["coords"] = { + [1] = { 6.3, 59.3, 11, 7200 }, + [2] = { 67.6, 58, 15, 900 }, + [3] = { 68.9, 55.4, 15, 900 }, + }, + }, + [61925] = { + ["coords"] = { + [1] = { 6.3, 59.3, 11, 7200 }, + [2] = { 67.6, 58, 15, 900 }, + [3] = { 68.9, 55.4, 15, 900 }, + }, + }, + [61935] = { + ["coords"] = { + [1] = { 52.3, 11.4, 17, 2 }, + }, + ["fac"] = "AH", + }, + [61936] = { + ["coords"] = { + [1] = { 52.4, 11.4, 17, 2 }, + }, + ["fac"] = "AH", + }, + [63195] = { + ["coords"] = { + [1] = { 64.9, 76.8, 1519, 900 }, + }, + }, + [63197] = { + ["coords"] = { + [1] = { 58.3, 61.3, 1519, 900 }, + }, + }, + [63198] = { + ["coords"] = { + [1] = { 57.1, 60.9, 1519, 900 }, + }, + }, + [63674] = { + ["coords"] = { + [1] = { 44.2, 76.5, 14, 900 }, + [2] = { 38.1, 58.5, 14, 900 }, + [3] = { 68.3, 37, 17, 900 }, + [4] = { 65.1, 27.6, 17, 900 }, + [5] = { 37.8, 44.3, 130, 7200 }, + [6] = { 53.9, 80.2, 215, 900 }, + [7] = { 60.5, 50.2, 400, 180 }, + }, + }, + [66780] = { + ["coords"] = { + [1] = { 62.4, 68.2, 1519, 900 }, + }, + }, + [69421] = { + ["coords"] = { + [1] = { 73.3, 30, 491, 3600 }, + }, + }, + [69422] = { + ["coords"] = { + [1] = { 62.7, 51.5, 491, 3600 }, + }, + }, + [69423] = { + ["coords"] = { + [1] = { 88.7, 41.6, 491, 3600 }, + }, + }, + [69424] = { + ["coords"] = { + [1] = { 79, 43.3, 491, 3600 }, + }, + }, + [69425] = { + ["coords"] = { + [1] = { 56.2, 94.6, 491, 3600 }, + }, + }, + [69426] = { + ["coords"] = { + [1] = { 56, 30, 491, 3600 }, + }, + }, + [69427] = { + ["coords"] = { + [1] = { 6.6, 57.6, 491, 3600 }, + }, + }, + [69428] = { + ["coords"] = { + [1] = { 19.1, 41.1, 491, 3600 }, + }, + }, + [69429] = { + ["coords"] = { + [1] = { 68.7, 39.2, 491, 3600 }, + }, + }, + [69430] = { + ["coords"] = { + [1] = { 88.1, 44.3, 491, 3600 }, + }, + }, + [69431] = { + ["coords"] = { + [1] = { 58.7, 92.3, 491, 3600 }, + }, + }, + [69432] = { + ["coords"] = { + [1] = { 82.2, 49.3, 491, 3600 }, + }, + }, + [69433] = { + ["coords"] = { + [1] = { 77.6, 32, 491, 3600 }, + }, + }, + [69434] = { + ["coords"] = { + [1] = { 85.2, 54.1, 491, 3600 }, + }, + }, + [69435] = { + ["coords"] = { + [1] = { 87.6, 48.4, 491, 3600 }, + }, + }, + [69436] = { + ["coords"] = { + [1] = { 70.3, 41.3, 491, 3600 }, + }, + }, + [69437] = { + ["coords"] = { + [1] = { 88.7, 39.6, 491, 3600 }, + }, + }, + [69438] = { + ["coords"] = { + [1] = { 36.8, 32.2, 491, 3600 }, + }, + }, + [70557] = { + ["coords"] = { + [1] = { 28.2, 44.8, 15, 0 }, + [2] = { 50.1, 77.2, 17, 0 }, + [3] = { 44.2, 58.7, 215, 25 }, + }, + }, + [73940] = { + ["coords"] = { + [1] = { 68.1, 85.1, 400, 900 }, + }, + }, + [74075] = { + ["coords"] = { + [1] = { 87.6, 38.9, 491, 3600 }, + }, + }, + [74076] = { + ["coords"] = { + [1] = { 18.4, 43.3, 491, 3600 }, + }, + }, + [74078] = { + ["coords"] = { + [1] = { 69.9, 48.7, 491, 3600 }, + }, + }, + [74447] = { + ["coords"] = { + [1] = { 60.4, 48.5, 491, 43200 }, + [2] = { 54.9, 30.6, 491, 43200 }, + [3] = { 52.7, 62.4, 5601, 604800 }, + }, + }, + [74448] = { + ["coords"] = { + [1] = { 55.3, 87.6, 721, 36000 }, + [2] = { 53.3, 50.5, 721, 36000 }, + [3] = { 41.1, 70.2, 5601, 604800 }, + [4] = { 37.1, 53.5, 5601, 604800 }, + }, + }, + [75293] = { + ["coords"] = { + [1] = { 19.8, 28.8, 10, 18000 }, + [2] = { 11.8, 75.1, 209, 9999999 }, + [3] = { 55.2, 51.2, 209, 36000 }, + [4] = { 94.1, 39.5, 718, 36000 }, + [5] = { 70.3, 37.5, 718, 36000 }, + [6] = { 35.8, 33.7, 718, 36000 }, + [7] = { 90.8, 28.7, 718, 36000 }, + [8] = { 23.5, 80.2, 5138, 36000 }, + [9] = { 42.6, 56.6, 5138, 36000 }, + [10] = { 70.9, 26.4, 5138, 36000 }, + [11] = { 72.2, 23, 5138, 36000 }, + }, + }, + [75295] = { + ["coords"] = { + [1] = { 82.2, 50.6, 209, 36000 }, + [2] = { 29.8, 46.1, 717, 43200 }, + [3] = { 34.9, 21.9, 717, 43200 }, + [4] = { 48.8, 78.8, 719, 43200 }, + }, + }, + [75296] = { + ["coords"] = { + [1] = { 63.5, 14, 5135, 604800 }, + [2] = { 51.3, 42.6, 5628, 604800 }, + }, + }, + [75298] = { + ["coords"] = { + [1] = { 70.1, 18.2, 209, 36000 }, + [2] = { 88.8, 51.6, 717, 36000 }, + [3] = { 67.4, 27.3, 717, 36000 }, + [4] = { 28.6, 12.7, 717, 36000 }, + [5] = { 42.8, 42.5, 719, 36000 }, + }, + }, + [75299] = { + ["coords"] = { + [1] = { 40.7, 39.1, 5135, 604800 }, + [2] = { 66.8, 64.9, 5136, 604800 }, + [3] = { 71, 51.1, 5136, 99999999 }, + [4] = { 47, 44.1, 5136, 604800 }, + [5] = { 33.9, 95.4, 5628, 604800 }, + [6] = { 50, 23.2, 5628, 604800 }, + }, + }, + [75300] = { + ["coords"] = { + [1] = { 34.5, 55.1, 722, 604800 }, + [2] = { 37, 30.6, 722, 604800 }, + [3] = { 40.2, 52.6, 876, 300 }, + [4] = { 64.6, 79.4, 5153, 604800 }, + [5] = { 27.8, 26.5, 5628, 604800 }, + }, + }, + [80022] = { + ["coords"] = { + [1] = { 23.4, 39.2, 1, 900 }, + [2] = { 66.4, 94.5, 721, 900 }, + }, + }, + [80023] = { + ["coords"] = { + [1] = { 23.4, 39.2, 1, 900 }, + [2] = { 66.1, 94.4, 721, 900 }, + }, + }, + [83763] = { + ["coords"] = { + [1] = { 56.7, 44, 12, 30 }, + }, + }, + [85562] = { + ["coords"] = { + [1] = { 78, 62.2, 1, 5 }, + }, + }, + [85563] = { + ["coords"] = { + [1] = { 89.3, 78.9, 12, 30 }, + }, + }, + [86492] = { + ["coords"] = { + [1] = { 32.7, 46.4, 148, 180 }, + [2] = { 32, 46.3, 148, 180 }, + [3] = { 33.4, 46.2, 148, 180 }, + [4] = { 31.6, 44.8, 148, 180 }, + [5] = { 31.1, 44.6, 148, 180 }, + [6] = { 33.8, 44.4, 148, 180 }, + [7] = { 33.6, 44.2, 148, 180 }, + [8] = { 31.3, 43.9, 148, 180 }, + [9] = { 32.8, 43.7, 148, 180 }, + [10] = { 32.2, 42.8, 148, 180 }, + }, + }, + [88498] = { + ["coords"] = { + [1] = { 32.1, 45.6, 16, 180 }, + [2] = { 78.4, 76.8, 38, 25 }, + [3] = { 38.7, 83.6, 5602, 25 }, + }, + }, + [89634] = { + ["coords"] = { + [1] = { 9.1, 71.8, 11, 180 }, + [2] = { 8.7, 71.1, 11, 180 }, + [3] = { 8.3, 70.3, 11, 180 }, + [4] = { 8.9, 70.2, 11, 180 }, + [5] = { 9.3, 68.3, 11, 180 }, + [6] = { 10.8, 65.9, 11, 180 }, + [7] = { 11.7, 65, 11, 180 }, + [8] = { 12.7, 63.8, 11, 180 }, + }, + }, + [89635] = { + ["coords"] = { + [1] = { 17.6, 41.6, 400, 180 }, + [2] = { 10.8, 40.6, 400, 180 }, + [3] = { 13.9, 39, 400, 180 }, + [4] = { 11.8, 37.1, 400, 180 }, + [5] = { 13.5, 37, 400, 180 }, + [6] = { 8.6, 34.7, 400, 180 }, + [7] = { 10.2, 34.3, 400, 180 }, + [8] = { 10.8, 32.8, 400, 180 }, + }, + }, + [90566] = { + ["coords"] = { + [1] = { 21.6, 30, 1, 180 }, + [2] = { 50.3, 14.4, 721, 180 }, + }, + }, + [90567] = { + ["coords"] = { + [1] = { 21.5, 29.8, 1, 180 }, + [2] = { 49.9, 12.8, 721, 180 }, + }, + }, + [91138] = { + ["coords"] = { + [1] = { 52.2, 62, 209, 0 }, + }, + }, + [92011] = { + ["coords"] = { + [1] = { 59.8, 33.9, 1519, 120 }, + [2] = { 48.6, 95.5, 5581, 120 }, + }, + }, + [92013] = { + ["coords"] = { + [1] = { 27.8, 72.8, 267, 10 }, + [2] = { 83.9, 32.5, 5179, 10 }, + }, + ["fac"] = "AH", + }, + [92015] = { + ["coords"] = { + [1] = { 39.1, 84.4, 1519, 25 }, + }, + ["fac"] = "AH", + }, + [92098] = { + ["coords"] = { + [1] = { 29.8, 57.2, 3, 900 }, + [2] = { 86, 91.5, 400, 300 }, + }, + }, + [92252] = { + ["coords"] = { + [1] = { 62.6, 35.3, 17, 25 }, + }, + }, + [92254] = { + ["coords"] = { + [1] = { 51.7, 41.2, 17, 25 }, + [2] = { 44.7, 86.8, 5103, 300 }, + }, + }, + [92388] = { + ["coords"] = { + [1] = { 62.6, 35.3, 17, 25 }, + }, + }, + [92420] = { + ["coords"] = { + [1] = { 71.6, 21.6, 38, 2 }, + [2] = { 35.2, 55.3, 5602, 2 }, + }, + }, + [92424] = { + ["coords"] = { + [1] = { 59.9, 67.6, 406, 900 }, + }, + }, + [92426] = { + ["coords"] = { + [1] = { 72.2, 92.7, 406, 900 }, + [2] = { 68.8, 26.2, 1176, 7200 }, + }, + }, + [92427] = { + ["coords"] = { + [1] = { 71.4, 90.6, 406, 900 }, + }, + }, + [93192] = { + ["coords"] = { + [1] = { 31.5, 31.5, 331, 2 }, + }, + ["fac"] = "AH", + }, + [94039] = { + ["coords"] = { + [1] = { 78.8, 90.7, 719, 300 }, + [2] = { 36.2, 37.9, 719, 7200 }, + }, + }, + [97700] = { + ["coords"] = { + [1] = { 56.4, 24.2, 5163, 7200 }, + }, + }, + [97701] = { + ["coords"] = { + [1] = { 56.6, 23.9, 5163, 1 }, + }, + ["fac"] = "AH", + }, + [97801] = { + ["coords"] = { + [1] = { 79.5, 14, 5153, 7200 }, + }, + }, + [97802] = { + ["coords"] = { + [1] = { 79.6, 9.1, 5153, 7200 }, + }, + }, + [97803] = { + ["coords"] = { + [1] = { 77.8, 14, 5153, 7200 }, + }, + }, + [101749] = { + ["coords"] = { + [1] = { 44.2, 76.3, 14, 300 }, + [2] = { 68.3, 36.9, 17, 300 }, + }, + }, + [101766] = { + ["coords"] = { + [1] = { 68.3, 26.9, 1637, 25 }, + [2] = { 68.1, 26.9, 1637, 25 }, + [3] = { 68.1, 26.7, 1637, 25 }, + }, + }, + [101770] = { + ["coords"] = { + [1] = { 93.3, 14.2, 10, 25 }, + [2] = { 93.4, 14.1, 10, 25 }, + [3] = { 93.3, 14, 10, 25 }, + [4] = { 93.9, 13.8, 10, 25 }, + [5] = { 94, 13.8, 10, 25 }, + [6] = { 49.1, 60.9, 11, 300 }, + [7] = { 49, 60.8, 11, 300 }, + [8] = { 49, 60.7, 11, 300 }, + [9] = { 49.1, 60.7, 11, 300 }, + [10] = { 48.9, 60.3, 11, 300 }, + [11] = { 42.5, 63, 12, 25 }, + [12] = { 42.5, 62.9, 12, 25 }, + [13] = { 55.4, 97.4, 14, 300 }, + [14] = { 74.9, 51.3, 17, 300 }, + [15] = { 74.1, 47.9, 17, 300 }, + [16] = { 52.1, 30, 17, 25 }, + [17] = { 51.9, 30, 17, 25 }, + [18] = { 52.1, 29.9, 17, 25 }, + [19] = { 52.1, 29.8, 17, 25 }, + [20] = { 52, 29.8, 17, 25 }, + [21] = { 51.8, 29.8, 17, 25 }, + [22] = { 51.9, 29.8, 17, 25 }, + [23] = { 52, 29.7, 17, 25 }, + [24] = { 51.9, 29.7, 17, 25 }, + [25] = { 61.3, 24.2, 17, 300 }, + [26] = { 34.4, 10.3, 17, 300 }, + [27] = { 34.4, 10.2, 17, 300 }, + [28] = { 34.2, 10.1, 17, 300 }, + [29] = { 34, 9.9, 17, 300 }, + [30] = { 34.1, 9.8, 17, 300 }, + [31] = { 34.1, 9.7, 17, 300 }, + [32] = { 44.3, 98.6, 28, 300 }, + [33] = { 44, 98.4, 28, 300 }, + [34] = { 44.1, 98.3, 28, 300 }, + [35] = { 44, 98.3, 28, 300 }, + [36] = { 44, 98.2, 28, 300 }, + [37] = { 44.4, 98.1, 28, 300 }, + [38] = { 44.4, 98, 28, 300 }, + [39] = { 9.1, 64.5, 28, 25 }, + [40] = { 30.8, 29, 28, 25 }, + [41] = { 67.5, 24.2, 28, 25 }, + [42] = { 67.6, 24.1, 28, 25 }, + [43] = { 67.5, 23.9, 28, 25 }, + [44] = { 37.5, 66.7, 33, 300 }, + [45] = { 37.5, 66.6, 33, 300 }, + [46] = { 37.6, 66.6, 33, 300 }, + [47] = { 37.7, 66.4, 33, 300 }, + [48] = { 81.1, 51.5, 36, 300 }, + [49] = { 81.2, 51.5, 36, 300 }, + [50] = { 81.1, 51.4, 36, 300 }, + [51] = { 81.2, 51.3, 36, 300 }, + [52] = { 80.7, 51.1, 36, 300 }, + [53] = { 80.6, 51, 36, 300 }, + [54] = { 80.8, 51, 36, 300 }, + [55] = { 80.6, 50.9, 36, 300 }, + [56] = { 80.7, 50.9, 36, 300 }, + [57] = { 81.3, 50.6, 36, 300 }, + [58] = { 81.2, 50.6, 36, 300 }, + [59] = { 81.2, 50.5, 36, 300 }, + [60] = { 22, 59.6, 45, 25 }, + [61] = { 22.1, 59.6, 45, 25 }, + [62] = { 22, 59.5, 45, 25 }, + [63] = { 22.1, 59.5, 45, 25 }, + [64] = { 22.4, 59.4, 45, 25 }, + [65] = { 22.2, 59.1, 45, 25 }, + [66] = { 22.1, 59, 45, 25 }, + [67] = { 22, 59, 45, 25 }, + [68] = { 22.2, 58.8, 45, 25 }, + [69] = { 21.9, 58.8, 45, 25 }, + [70] = { 22.1, 58.8, 45, 25 }, + [71] = { 22, 58.7, 45, 25 }, + [72] = { 16.9, 66.4, 46, 300 }, + [73] = { 87.2, 43.3, 85, 25 }, + [74] = { 67.4, 83.2, 130, 300 }, + [75] = { 67.3, 83.2, 130, 300 }, + [76] = { 67.6, 83.1, 130, 300 }, + [77] = { 67.4, 83.1, 130, 300 }, + [78] = { 67.3, 83, 130, 300 }, + [79] = { 67.4, 83, 130, 300 }, + [80] = { 67.6, 83, 130, 300 }, + [81] = { 67.6, 82.9, 130, 300 }, + [82] = { 67.7, 82.9, 130, 300 }, + [83] = { 7.8, 43.7, 139, 25 }, + [84] = { 7.9, 43.6, 139, 25 }, + [85] = { 7.8, 43.4, 139, 25 }, + [86] = { 14, 49.9, 267, 300 }, + [87] = { 13.9, 49.8, 267, 300 }, + [88] = { 14, 49.8, 267, 300 }, + [89] = { 14.2, 49.7, 267, 300 }, + [90] = { 14, 49.7, 267, 300 }, + [91] = { 13.9, 49.6, 267, 300 }, + [92] = { 14, 49.6, 267, 300 }, + [93] = { 14.2, 49.6, 267, 300 }, + [94] = { 14, 49.5, 267, 300 }, + [95] = { 14.2, 49.4, 267, 300 }, + [96] = { 14.3, 49.4, 267, 300 }, + [97] = { 72.9, 55.8, 331, 300 }, + [98] = { 51.2, 61.8, 357, 300 }, + [99] = { 51.1, 61.8, 357, 300 }, + [100] = { 51.2, 61.7, 357, 300 }, + [101] = { 51.1, 61.7, 357, 300 }, + [102] = { 43.6, 17.1, 357, 25 }, + [103] = { 43.6, 17, 357, 25 }, + [104] = { 78.4, 76, 400, 25 }, + [105] = { 80, 62.9, 406, 300 }, + [106] = { 79.9, 62.8, 406, 300 }, + [107] = { 79.6, 62.6, 406, 300 }, + [108] = { 79.4, 62.3, 406, 300 }, + [109] = { 79.5, 62.1, 406, 300 }, + [110] = { 79.4, 62, 406, 300 }, + [111] = { 37.1, 51.5, 406, 300 }, + [112] = { 37.1, 51.4, 406, 300 }, + [113] = { 37.1, 51.3, 406, 300 }, + [114] = { 37, 51.3, 406, 300 }, + [115] = { 30.9, 38, 440, 300 }, + [116] = { 31.1, 37.9, 440, 300 }, + [117] = { 31.2, 37.9, 440, 300 }, + [118] = { 31.1, 37.8, 440, 300 }, + [119] = { 31.2, 37.8, 440, 300 }, + [120] = { 31.3, 37.8, 440, 300 }, + [121] = { 31.3, 37.7, 440, 300 }, + [122] = { 31.2, 37.7, 440, 300 }, + [123] = { 77.9, 67.1, 490, 300 }, + [124] = { 78.4, 67, 490, 300 }, + [125] = { 78.3, 67, 490, 300 }, + [126] = { 78.5, 66.9, 490, 300 }, + [127] = { 78.3, 66.9, 490, 300 }, + [128] = { 78.4, 66.8, 490, 300 }, + [129] = { 78.6, 66.8, 490, 300 }, + [130] = { 78.4, 66.7, 490, 300 }, + [131] = { 78.7, 66.7, 490, 300 }, + [132] = { 78.5, 66.6, 490, 300 }, + [133] = { 78.7, 66.5, 490, 300 }, + [134] = { 78.6, 66.5, 490, 300 }, + [135] = { 40.8, 11.1, 490, 300 }, + [136] = { 37, 76.6, 1519, 300 }, + [137] = { 37, 76.2, 1519, 300 }, + [138] = { 37.4, 74.4, 1519, 300 }, + [139] = { 62.6, 69.6, 1519, 25 }, + [140] = { 62.7, 69.5, 1519, 25 }, + [141] = { 76.6, 54.8, 1519, 25 }, + [142] = { 75.7, 54.3, 1519, 25 }, + [143] = { 76.8, 54, 1519, 25 }, + [144] = { 76.9, 53.9, 1519, 25 }, + [145] = { 21.4, 37.4, 1519, 300 }, + [146] = { 27.8, 15.2, 1519, 300 }, + [147] = { 27.7, 15, 1519, 300 }, + [148] = { 29.8, 14.7, 1519, 300 }, + [149] = { 30, 14, 1519, 300 }, + [150] = { 30.2, 13.9, 1519, 300 }, + [151] = { 71.9, 12.5, 5179, 300 }, + [152] = { 71.8, 12.4, 5179, 300 }, + [153] = { 72.1, 12.4, 5179, 300 }, + [154] = { 71.8, 12.3, 5179, 300 }, + [155] = { 71.9, 12.3, 5179, 300 }, + [156] = { 71.8, 12.2, 5179, 300 }, + [157] = { 72.1, 12.2, 5179, 300 }, + [158] = { 72.1, 12.1, 5179, 300 }, + [159] = { 72.2, 12.1, 5179, 300 }, + [160] = { 28, 97.4, 5581, 300 }, + [161] = { 93.2, 92.7, 5581, 300 }, + [162] = { 31.4, 85.6, 5581, 300 }, + [163] = { 31.3, 85.4, 5581, 300 }, + [164] = { 32.5, 85.2, 5581, 300 }, + [165] = { 32.6, 84.9, 5581, 300 }, + [166] = { 32.7, 84.9, 5581, 300 }, + [167] = { 6.4, 25.7, 5602, 300 }, + [168] = { 6.4, 25.6, 5602, 300 }, + [169] = { 6.3, 25.3, 5602, 300 }, + }, + }, + [101771] = { + ["coords"] = { + [1] = { 12.1, 56.2, 85, 300 }, + [2] = { 12, 53.2, 85, 300 }, + [3] = { 12.1, 53.1, 85, 300 }, + [4] = { 17.4, 49.5, 85, 300 }, + [5] = { 17.3, 49.5, 85, 300 }, + [6] = { 17.3, 49, 85, 300 }, + [7] = { 17.2, 49, 85, 300 }, + }, + }, + [101774] = { + ["coords"] = { + [1] = { 61.3, 44.7, 409, 300 }, + [2] = { 61.2, 44.6, 409, 300 }, + [3] = { 61.6, 44.2, 409, 300 }, + [4] = { 58.1, 41.1, 409, 300 }, + [5] = { 58, 41.1, 409, 300 }, + [6] = { 58.2, 40.8, 409, 300 }, + }, + }, + [101775] = { + ["coords"] = { + [1] = { 22, 67.9, 85, 300 }, + }, + }, + [101779] = { + ["coords"] = { + [1] = { 22, 68, 85, 300 }, + [2] = { 68, 26.3, 1637, 25 }, + [3] = { 67.9, 26.1, 1637, 25 }, + }, + }, + [101811] = { + ["coords"] = { + [1] = { 79.7, 72.7, 209, 5400 }, + }, + ["fac"] = "AH", + }, + [101812] = { + ["coords"] = { + [1] = { 71.4, 69, 209, 5400 }, + }, + ["fac"] = "AH", + }, + [101831] = { + ["coords"] = { + [1] = { 20.9, 51.7, 5138, 43200 }, + }, + }, + [101832] = { + ["coords"] = { + [1] = { 33, 74.5, 5138, 43200 }, + }, + }, + [101833] = { + ["coords"] = { + [1] = { 52.9, 30.8, 5138, 43200 }, + }, + }, + [101834] = { + ["coords"] = { + [1] = { 38.7, 46.5, 5138, 43200 }, + }, + }, + [101835] = { + ["coords"] = { + [1] = { 85.1, 80.6, 36, 7200 }, + [2] = { 0.7, 57.3, 47, 7200 }, + [3] = { 17.2, 49, 85, 300 }, + [4] = { 83.3, 18.9, 267, 7200 }, + }, + }, + [101848] = { + ["coords"] = { + [1] = { 85.9, 78.9, 36, 7200 }, + [2] = { 1.2, 56.1, 47, 7200 }, + [3] = { 23.7, 58.5, 85, 300 }, + [4] = { 84, 17.5, 267, 7200 }, + }, + }, + [101850] = { + ["coords"] = { + [1] = { 85.2, 30.8, 85, 900 }, + [2] = { 77.7, 29, 796, 900 }, + }, + }, + [101851] = { + ["coords"] = { + [1] = { 28.9, 16.8, 28, 900 }, + [2] = { 85.4, 31.6, 85, 900 }, + [3] = { 82.1, 45.2, 796, 900 }, + }, + }, + [101852] = { + ["coords"] = { + [1] = { 28.9, 16.7, 28, 900 }, + [2] = { 85.4, 31.5, 85, 900 }, + [3] = { 82.4, 43.1, 796, 900 }, + }, + }, + [101853] = { + ["coords"] = { + [1] = { 85.2, 30.8, 85, 900 }, + [2] = { 78, 27.1, 796, 900 }, + }, + }, + [101854] = { + ["coords"] = { + [1] = { 78.7, 18.5, 5153, 7200 }, + }, + }, + [101855] = { + ["coords"] = { + [1] = { 78.1, 17, 5153, 7200 }, + }, + }, + [102984] = { + ["coords"] = { + [1] = { 27.7, 36.4, 1, 30 }, + }, + }, + [102985] = { + ["coords"] = { + [1] = { 20.7, 48.7, 28, 3 }, + [2] = { 20.5, 48.7, 28, 3 }, + [3] = { 20.5, 48.5, 28, 3 }, + [4] = { 20.7, 48.5, 28, 3 }, + [5] = { 77.6, 62, 85, 3 }, + [6] = { 77.4, 62, 85, 3 }, + [7] = { 77.4, 61.8, 85, 3 }, + [8] = { 77.6, 61.8, 85, 3 }, + }, + }, + [103005] = { + ["coords"] = { + [1] = { 33.5, 53.6, 1337, 3600 }, + }, + }, + [103006] = { + ["coords"] = { + [1] = { 34.9, 48.1, 1337, 3600 }, + }, + }, + [103007] = { + ["coords"] = { + [1] = { 29.1, 70.7, 1337, 3600 }, + }, + }, + [103009] = { + ["coords"] = { + [1] = { 37, 48.7, 1337, 3600 }, + }, + }, + [103010] = { + ["coords"] = { + [1] = { 71.4, 75, 1337, 3600 }, + }, + }, + [103011] = { + ["coords"] = { + [1] = { 58.7, 94.4, 1337, 3600 }, + }, + }, + [103012] = { + ["coords"] = { + [1] = { 34.7, 48.1, 1337, 3600 }, + }, + }, + [103015] = { + ["coords"] = { + [1] = { 36.2, 37.9, 719, 7200 }, + }, + }, + [103016] = { + ["coords"] = { + [1] = { 78.8, 90.7, 719, 7200 }, + }, + }, + [103600] = { + ["coords"] = { + [1] = { 55.4, 77, 1497, 3 }, + }, + }, + [103628] = { + ["coords"] = { + [1] = { 78.9, 47.6, 44, 2 }, + }, + }, + [103664] = { + ["coords"] = { + [1] = { 83.5, 14, 5135, 300 }, + }, + }, + [103680] = { + ["coords"] = { + [1] = { 45.9, 56.6, 15, 0 }, + [2] = { 53.5, 51.9, 876, 300 }, + }, + }, + [103687] = { + ["coords"] = { + [1] = { 8, 23.1, 139, 300 }, + [2] = { 7.1, 22.6, 139, 300 }, + [3] = { 37.5, 41.8, 148, 300 }, + [4] = { 42.8, 78.4, 2040, 300 }, + [5] = { 36.2, 76.9, 2040, 300 }, + [6] = { 37, 76.7, 2040, 300 }, + [7] = { 44, 65, 2040, 300 }, + [8] = { 48.4, 84.9, 5225, 300 }, + [9] = { 47.2, 84.2, 5225, 300 }, + [10] = { 58.1, 39.3, 5225, 300 }, + [11] = { 55, 38.6, 5225, 300 }, + [12] = { 55.4, 38.5, 5225, 300 }, + [13] = { 58.7, 33, 5225, 300 }, + }, + }, + [103711] = { + ["coords"] = { + [1] = { 48, 84.9, 17, 900 }, + [2] = { 47.9, 84.8, 17, 900 }, + [3] = { 27, 57.9, 267, 900 }, + [4] = { 28.4, 57.2, 267, 900 }, + [5] = { 28.2, 57, 267, 900 }, + [6] = { 30.4, 53, 267, 900 }, + [7] = { 31.8, 51.6, 267, 900 }, + [8] = { 83.2, 19.5, 5179, 900 }, + [9] = { 84.4, 18.9, 5179, 900 }, + [10] = { 84.3, 18.7, 5179, 900 }, + [11] = { 86.2, 15.3, 5179, 900 }, + [12] = { 87.4, 14, 5179, 900 }, + }, + }, + [103713] = { + ["coords"] = { + [1] = { 47.9, 86.1, 17, 900 }, + }, + }, + [103793] = { + ["coords"] = { + [1] = { 57.1, 73, 1519, 900 }, + }, + }, + [103795] = { + ["coords"] = { + [1] = { 65.9, 69.5, 1519, 900 }, + }, + }, + [103802] = { + ["coords"] = { + [1] = { 76.6, 52.3, 1519, 900 }, + }, + }, + [103811] = { + ["coords"] = { + [1] = { 49.5, 88, 1519, 120 }, + [2] = { 49.7, 87.2, 1519, 120 }, + [3] = { 49.7, 87.1, 1519, 120 }, + [4] = { 48.8, 86.5, 1519, 120 }, + [5] = { 49, 86.4, 1519, 120 }, + }, + }, + [103815] = { + ["coords"] = { + [1] = { 63.7, 65.2, 130, 2 }, + [2] = { 9.1, 26.3, 267, 2 }, + }, + ["fac"] = "H", + }, + [103820] = { + ["coords"] = { + [1] = { 76.2, 27.8, 5153, 7200 }, + [2] = { 76.2, 27.2, 5153, 7200 }, + [3] = { 76.1, 26.9, 5153, 7200 }, + [4] = { 75.9, 25.3, 5153, 7200 }, + [5] = { 76.2, 25.2, 5153, 7200 }, + }, + }, + [103821] = { + ["coords"] = { + [1] = { 84.4, 82.2, 5135, 0 }, + }, + ["fac"] = "AH", + }, + [104564] = { + ["coords"] = { + [1] = { 48.7, 30.1, 38, 5 }, + [2] = { 23.5, 59.6, 5602, 5 }, + }, + }, + [104569] = { + ["coords"] = { + [1] = { 48.4, 20.5, 38, 5 }, + [2] = { 23.3, 54.7, 5602, 5 }, + }, + }, + [104574] = { + ["coords"] = { + [1] = { 51.8, 24.1, 38, 5 }, + [2] = { 25.1, 56.5, 5602, 5 }, + }, + }, + [104575] = { + ["coords"] = { + [1] = { 54.2, 26.6, 38, 5 }, + [2] = { 26.3, 57.8, 5602, 5 }, + }, + }, + [104589] = { + ["coords"] = { + [1] = { 48.1, 44.2, 5163, 7200 }, + }, + }, + [104591] = { + ["coords"] = { + [1] = { 49, 45.1, 5163, 7200 }, + }, + }, + [104600] = { + ["coords"] = { + [1] = { 49.1, 23.1, 5163, 7200 }, + }, + }, + [105169] = { + ["coords"] = { + [1] = { 52.7, 25.9, 85, 3 }, + }, + }, + [105170] = { + ["coords"] = { + [1] = { 51.7, 25.7, 85, 30 }, + }, + }, + [105174] = { + ["coords"] = { + [1] = { 66, 67.2, 85, 3 }, + [2] = { 85.5, 10, 1497, 3 }, + [3] = { 85.6, 9.9, 1497, 3 }, + [4] = { 85.7, 9.9, 1497, 3 }, + [5] = { 85.5, 9.9, 1497, 3 }, + [6] = { 49.5, 85.6, 1519, 180 }, + [7] = { 49.6, 85.6, 1519, 180 }, + [8] = { 49.5, 85.5, 1519, 180 }, + [9] = { 49.5, 85.5, 1519, 120 }, + }, + }, + [105175] = { + ["coords"] = { + [1] = { 66, 67.2, 85, 3 }, + [2] = { 85.6, 10.2, 1497, 3 }, + [3] = { 85.7, 10.1, 1497, 3 }, + [4] = { 85.8, 10.1, 1497, 3 }, + [5] = { 49.5, 85.5, 1519, 120 }, + [6] = { 49.6, 85.4, 1519, 180 }, + }, + }, + [105180] = { + ["coords"] = { + [1] = { 71.1, 46.9, 1497, 300 }, + [2] = { 61.7, 65.1, 1519, 300 }, + [3] = { 61.6, 64.6, 1519, 300 }, + [4] = { 61.5, 64.2, 1519, 300 }, + [5] = { 42.5, 61, 1637, 300 }, + [6] = { 41.6, 60.7, 1637, 300 }, + [7] = { 42.2, 60.7, 1637, 300 }, + }, + }, + [105181] = { + ["coords"] = {}, + }, + [105188] = { + ["coords"] = { + [1] = { 65.5, 74.6, 1519, 900 }, + }, + }, + [105568] = { + ["coords"] = { + [1] = { 54.3, 53.5, 40, 3600 }, + }, + }, + [105570] = { + ["coords"] = { + [1] = { 12.4, 79.4, 36, 3600 }, + [2] = { 18.1, 77.2, 36, 3600 }, + [3] = { 14.8, 75.2, 36, 3600 }, + [4] = { 11.8, 73.8, 36, 3600 }, + [5] = { 21.3, 62.4, 36, 3600 }, + [6] = { 21.6, 59.5, 36, 3600 }, + [7] = { 20.1, 57.6, 36, 3600 }, + [8] = { 17.7, 56.6, 36, 3600 }, + [9] = { 71.3, 55.2, 130, 3600 }, + [10] = { 19.7, 17.9, 267, 3600 }, + [11] = { 24.7, 16, 267, 3600 }, + [12] = { 21.8, 14.2, 267, 3600 }, + [13] = { 19.1, 13, 267, 3600 }, + }, + }, + [105578] = { + ["coords"] = { + [1] = { 60.2, 58.7, 45, 3600 }, + [2] = { 62.7, 56.4, 45, 3600 }, + [3] = { 60.1, 55.9, 45, 3600 }, + [4] = { 61.5, 55.5, 45, 3600 }, + }, + }, + [105579] = { + ["coords"] = { + [1] = { 18.1, 77.2, 36, 3600 }, + [2] = { 14.8, 75.2, 36, 3600 }, + [3] = { 11.8, 73.8, 36, 3600 }, + [4] = { 21.3, 62.4, 36, 3600 }, + [5] = { 21.6, 59.5, 36, 3600 }, + [6] = { 20.1, 57.6, 36, 3600 }, + [7] = { 57.1, 40.5, 45, 3600 }, + [8] = { 57.4, 39.7, 45, 3600 }, + [9] = { 54, 38.1, 45, 3600 }, + [10] = { 56.4, 36.4, 45, 3600 }, + [11] = { 71.3, 55.2, 130, 3600 }, + [12] = { 24.7, 16, 267, 3600 }, + [13] = { 21.8, 14.2, 267, 3600 }, + [14] = { 19.1, 13, 267, 3600 }, + }, + }, + [105581] = { + ["coords"] = { + [1] = { 22.6, 63.6, 45, 3600 }, + [2] = { 21.6, 61.2, 45, 3600 }, + [3] = { 24.6, 58.8, 45, 3600 }, + [4] = { 22.9, 57.4, 45, 3600 }, + }, + }, + [106318] = { + ["coords"] = { + [1] = { 77.9, 62, 1, 309 }, + [2] = { 74.6, 61.8, 1, 309 }, + [3] = { 67.5, 60.6, 1, 309 }, + [4] = { 69, 59.3, 1, 309 }, + [5] = { 76, 58.2, 1, 309 }, + [6] = { 79.7, 54.6, 1, 309 }, + [7] = { 23.2, 54.3, 1, 309 }, + [8] = { 73, 53.5, 1, 309 }, + [9] = { 23.5, 52.5, 1, 309 }, + [10] = { 71.9, 52.1, 1, 309 }, + [11] = { 21.7, 51.9, 1, 309 }, + [12] = { 71.7, 51.8, 1, 309 }, + [13] = { 26, 51.1, 1, 309 }, + [14] = { 71.2, 50.5, 1, 309 }, + [15] = { 72.1, 49.8, 1, 309 }, + [16] = { 43.5, 49.2, 1, 309 }, + [17] = { 40.9, 48.8, 1, 309 }, + [18] = { 41, 48.8, 1, 309 }, + [19] = { 40.1, 48, 1, 309 }, + [20] = { 42.8, 47.1, 1, 309 }, + [21] = { 39.2, 46.6, 1, 309 }, + [22] = { 41.4, 44.4, 1, 309 }, + [23] = { 38.7, 43.3, 1, 309 }, + [24] = { 26.1, 41.2, 1, 309 }, + [25] = { 36.1, 40.1, 1, 309 }, + [26] = { 26.8, 36.4, 1, 309 }, + [27] = { 42, 35.9, 1, 309 }, + [28] = { 24.4, 93.5, 12, 309 }, + [29] = { 26, 92.1, 12, 309 }, + [30] = { 27.8, 88.3, 12, 309 }, + [31] = { 48.7, 87.9, 12, 309 }, + [32] = { 47.9, 87.1, 12, 309 }, + [33] = { 47.6, 86.5, 12, 309 }, + [34] = { 76.5, 86.4, 12, 309 }, + [35] = { 76.4, 85.8, 12, 309 }, + [36] = { 77.2, 85.3, 12, 309 }, + [37] = { 75.5, 85.3, 12, 309 }, + [38] = { 37.8, 83.2, 12, 309 }, + [39] = { 38.3, 82, 12, 309 }, + [40] = { 41.7, 81.6, 12, 309 }, + [41] = { 70.7, 81, 12, 309 }, + [42] = { 71, 80.2, 12, 309 }, + [43] = { 41.9, 77.9, 12, 309 }, + [44] = { 71.2, 77.8, 12, 309 }, + [45] = { 40.8, 77.6, 12, 309 }, + [46] = { 40.3, 77.5, 12, 309 }, + [47] = { 71.5, 76.6, 12, 453 }, + [48] = { 55.7, 67.1, 12, 309 }, + [49] = { 54.3, 66.7, 12, 309 }, + [50] = { 56.7, 66.7, 12, 309 }, + [51] = { 36.1, 65.7, 12, 309 }, + [52] = { 30.7, 64.7, 12, 309 }, + [53] = { 52.4, 58.9, 12, 309 }, + [54] = { 78.2, 57.4, 12, 309 }, + [55] = { 64.8, 57.2, 12, 309 }, + [56] = { 79.4, 57, 12, 309 }, + [57] = { 65, 56.2, 12, 309 }, + [58] = { 79.6, 55.1, 12, 309 }, + [59] = { 79.4, 54.6, 12, 309 }, + [60] = { 41.6, 52.7, 12, 309 }, + [61] = { 74, 50.1, 12, 309 }, + [62] = { 61.1, 49, 12, 309 }, + [63] = { 62.3, 48, 12, 309 }, + [64] = { 61.7, 46.8, 12, 309 }, + [65] = { 64.9, 41.3, 12, 309 }, + [66] = { 66.2, 40.7, 12, 309 }, + [67] = { 67.1, 86.7, 14, 309 }, + [68] = { 67.1, 83.3, 14, 309 }, + [69] = { 49.7, 80.8, 14, 309 }, + [70] = { 47.8, 77.1, 14, 309 }, + [71] = { 62.5, 60.6, 14, 309 }, + [72] = { 59.9, 58.8, 14, 309 }, + [73] = { 57.8, 58.7, 14, 309 }, + [74] = { 59.5, 58.1, 14, 309 }, + [75] = { 63.2, 56.8, 14, 309 }, + [76] = { 59.6, 56.2, 14, 309 }, + [77] = { 62.1, 55.8, 14, 309 }, + [78] = { 39.4, 53.8, 14, 309 }, + [79] = { 64.5, 53.1, 14, 309 }, + [80] = { 61.8, 51.1, 14, 309 }, + [81] = { 43.7, 50.7, 14, 309 }, + [82] = { 44.2, 50.4, 14, 309 }, + [83] = { 47.1, 49.8, 14, 309 }, + [84] = { 49, 48.6, 14, 309 }, + [85] = { 49.1, 48, 14, 309 }, + [86] = { 62.4, 42.1, 14, 309 }, + [87] = { 43.3, 39.3, 14, 309 }, + [88] = { 43.8, 39.2, 14, 309 }, + [89] = { 42.6, 38.8, 14, 309 }, + [90] = { 43.6, 35.6, 14, 309 }, + [91] = { 47.8, 33.3, 14, 309 }, + [92] = { 40.8, 30.5, 14, 309 }, + [93] = { 53.8, 28.3, 14, 309 }, + [94] = { 42.1, 27.1, 14, 309 }, + [95] = { 42.5, 27, 14, 309 }, + [96] = { 52.5, 26.4, 14, 309 }, + [97] = { 50.8, 25.9, 14, 309 }, + [98] = { 52.8, 25.5, 14, 309 }, + [99] = { 49.6, 24.3, 14, 309 }, + [100] = { 53.2, 24.1, 14, 309 }, + [101] = { 44.1, 24, 14, 309 }, + [102] = { 51.2, 23.6, 14, 309 }, + [103] = { 54.1, 22.2, 14, 309 }, + [104] = { 51.2, 21, 14, 309 }, + [105] = { 51.9, 19.9, 14, 309 }, + [106] = { 51.2, 18.9, 14, 309 }, + [107] = { 51.4, 10.8, 14, 309 }, + [108] = { 52.2, 10.4, 14, 309 }, + [109] = { 51.5, 9.9, 14, 309 }, + [110] = { 52.6, 9.4, 14, 309 }, + [111] = { 52.5, 9.2, 14, 309 }, + [112] = { 52.8, 9.1, 14, 309 }, + [113] = { 52.7, 7.4, 14, 309 }, + [114] = { 39.6, 62.7, 17, 309 }, + [115] = { 36.3, 52.4, 17, 309 }, + [116] = { 36, 52.3, 17, 309 }, + [117] = { 36.7, 51.8, 17, 309 }, + [118] = { 37.9, 48.7, 17, 309 }, + [119] = { 80.3, 42.3, 17, 309 }, + [120] = { 80.2, 40.6, 17, 309 }, + [121] = { 33.6, 36.1, 17, 309 }, + [122] = { 34.4, 35.4, 17, 309 }, + [123] = { 32.6, 32.6, 17, 309 }, + [124] = { 51, 67.4, 85, 309 }, + [125] = { 77.2, 59.8, 85, 309 }, + [126] = { 78.4, 55.8, 85, 309 }, + [127] = { 37.9, 49.6, 85, 309 }, + [128] = { 49.8, 42.7, 85, 309 }, + [129] = { 67.7, 41.2, 85, 309 }, + [130] = { 34.7, 41, 85, 309 }, + [131] = { 49.7, 35.7, 85, 309 }, + [132] = { 49.2, 33.6, 85, 309 }, + [133] = { 57.9, 32.9, 85, 309 }, + [134] = { 58.8, 30.7, 85, 309 }, + [135] = { 58.9, 26.9, 85, 309 }, + [136] = { 72.8, 25.8, 85, 309 }, + [137] = { 67.1, 25.8, 85, 309 }, + [138] = { 48, 78, 141, 309 }, + [139] = { 47.2, 77.9, 141, 309 }, + [140] = { 65.8, 64.8, 141, 309 }, + [141] = { 66, 63.6, 141, 309 }, + [142] = { 50, 62.9, 141, 309 }, + [143] = { 44, 61.9, 141, 309 }, + [144] = { 45, 61.2, 141, 309 }, + [145] = { 44.5, 60.6, 141, 309 }, + [146] = { 43.9, 59.8, 141, 309 }, + [147] = { 44.8, 58.9, 141, 309 }, + [148] = { 52, 51.4, 141, 309 }, + [149] = { 51.7, 50, 141, 309 }, + [150] = { 37.1, 43, 141, 309 }, + [151] = { 37.4, 41.6, 141, 309 }, + [152] = { 35.6, 38.9, 141, 309 }, + [153] = { 36.3, 37.8, 141, 309 }, + [154] = { 33.9, 35.7, 141, 309 }, + [155] = { 35.3, 34.7, 141, 309 }, + [156] = { 34.2, 34.4, 141, 309 }, + [157] = { 31.4, 31.8, 141, 309 }, + [158] = { 33.2, 28.5, 141, 309 }, + [159] = { 34.2, 28.1, 141, 309 }, + [160] = { 36.3, 27.7, 141, 309 }, + [161] = { 53.6, 73.3, 215, 309 }, + [162] = { 53.3, 73.1, 215, 309 }, + [163] = { 48.3, 72.3, 215, 309 }, + [164] = { 48.5, 72.1, 215, 309 }, + [165] = { 63, 71.4, 215, 309 }, + [166] = { 65.6, 69.2, 215, 309 }, + [167] = { 64.2, 69, 215, 309 }, + [168] = { 66.9, 68.7, 215, 309 }, + [169] = { 31.3, 63.4, 215, 309 }, + [170] = { 35.5, 62.5, 215, 309 }, + [171] = { 35.3, 62.2, 215, 309 }, + [172] = { 53.8, 48.4, 215, 309 }, + [173] = { 60.3, 48.2, 215, 309 }, + [174] = { 53.3, 48.2, 215, 309 }, + [175] = { 59.9, 48.1, 215, 309 }, + [176] = { 53.7, 47.9, 215, 309 }, + [177] = { 33.2, 47.4, 215, 309 }, + [178] = { 33, 47.3, 215, 309 }, + [179] = { 61.2, 47.2, 215, 309 }, + [180] = { 31.7, 42.7, 215, 309 }, + [181] = { 31.4, 41.9, 215, 309 }, + [182] = { 63.6, 41.1, 215, 309 }, + [183] = { 29.6, 25.9, 215, 309 }, + [184] = { 28.4, 21.2, 215, 309 }, + [185] = { 40.6, 16.2, 215, 309 }, + [186] = { 55.1, 16.1, 215, 309 }, + [187] = { 40.1, 15.3, 215, 309 }, + [188] = { 56.7, 14.8, 215, 309 }, + [189] = { 36.1, 11.2, 215, 309 }, + [190] = { 53.1, 9.3, 215, 309 }, + [191] = { 38.4, 8, 215, 309 }, + [192] = { 86.6, 78.3, 405, 309 }, + [193] = { 86.3, 78.2, 405, 309 }, + [194] = { 84.8, 73, 405, 309 }, + [195] = { 84.5, 72.1, 405, 309 }, + [196] = { 82.4, 53.8, 405, 309 }, + [197] = { 81, 48.4, 405, 309 }, + [198] = { 64.4, 99.4, 406, 309 }, + [199] = { 95.1, 69.7, 721, 309 }, + [200] = { 27.8, 82.3, 5225, 7200 }, + [201] = { 39, 79.4, 5225, 7200 }, + [202] = { 39.1, 62.1, 5225, 7200 }, + [203] = { 1, 77.2, 5602, 309 }, + }, + }, + [106319] = { + ["coords"] = { + [1] = { 62.8, 49.6, 17, 3600 }, + [2] = { 63.7, 49.2, 17, 3600 }, + [3] = { 64.3, 47.3, 17, 3600 }, + [4] = { 54.5, 46.8, 17, 3600 }, + [5] = { 63.5, 46.2, 17, 3600 }, + [6] = { 55.9, 45.9, 17, 3600 }, + [7] = { 52.9, 44.4, 17, 3600 }, + [8] = { 53.9, 43.1, 17, 3600 }, + [9] = { 57.1, 41.2, 17, 3600 }, + [10] = { 53.4, 40.5, 17, 3600 }, + [11] = { 45.9, 39.4, 17, 3600 }, + [12] = { 48.9, 38.8, 17, 3600 }, + [13] = { 46.1, 37.8, 17, 3600 }, + [14] = { 58.8, 27.5, 17, 3600 }, + [15] = { 43.6, 26.5, 17, 3600 }, + [16] = { 57, 25.5, 17, 3600 }, + [17] = { 42.1, 24.6, 17, 3600 }, + [18] = { 59.1, 24.4, 17, 3600 }, + [19] = { 46.5, 22.8, 17, 3600 }, + [20] = { 43.7, 21.2, 17, 3600 }, + [21] = { 45.1, 20, 17, 3600 }, + [22] = { 47.6, 19.5, 17, 3600 }, + [23] = { 46.6, 18.1, 17, 3600 }, + [24] = { 47.9, 18, 17, 3600 }, + [25] = { 47, 16, 17, 3600 }, + [26] = { 52.5, 11.6, 17, 3600 }, + [27] = { 52.5, 10.7, 17, 3600 }, + [28] = { 56.7, 8.8, 17, 3600 }, + [29] = { 56.4, 8.8, 17, 3600 }, + [30] = { 34.7, 91, 38, 3600 }, + [31] = { 34.4, 90.1, 38, 3600 }, + [32] = { 28.3, 87.4, 38, 3600 }, + [33] = { 37.6, 86.3, 38, 3600 }, + [34] = { 36, 84.6, 38, 3600 }, + [35] = { 27.8, 83.3, 38, 3600 }, + [36] = { 34.9, 82.6, 38, 3600 }, + [37] = { 31.3, 75.5, 38, 3600 }, + [38] = { 26.9, 57.5, 38, 3600 }, + [39] = { 26, 49.4, 38, 3600 }, + [40] = { 26.5, 44.3, 38, 3600 }, + [41] = { 24.9, 30.8, 38, 3600 }, + [42] = { 49.1, 29.8, 38, 3600 }, + [43] = { 34.5, 27.2, 38, 3600 }, + [44] = { 35.1, 26.7, 38, 3600 }, + [45] = { 54.4, 26, 38, 3600 }, + [46] = { 35.6, 24.9, 38, 3600 }, + [47] = { 35.2, 24.4, 38, 3600 }, + [48] = { 36.2, 23.5, 38, 3600 }, + [49] = { 48, 20.7, 38, 3600 }, + [50] = { 35.7, 16.2, 38, 3600 }, + [51] = { 37.7, 16, 38, 3600 }, + [52] = { 39.7, 12.5, 38, 3600 }, + [53] = { 43, 71.7, 40, 3600 }, + [54] = { 45.4, 70.5, 40, 3600 }, + [55] = { 44.5, 70.2, 40, 3600 }, + [56] = { 38.7, 69.7, 40, 3600 }, + [57] = { 42.2, 68.9, 40, 3600 }, + [58] = { 44, 68.4, 40, 3600 }, + [59] = { 53.1, 62.3, 40, 3600 }, + [60] = { 48.5, 60.9, 40, 3600 }, + [61] = { 33.3, 56.6, 40, 3600 }, + [62] = { 46.7, 53.4, 40, 3600 }, + [63] = { 29.3, 49.6, 40, 3600 }, + [64] = { 29.2, 48.8, 40, 3600 }, + [65] = { 29.6, 47.3, 40, 3600 }, + [66] = { 48.2, 47.1, 40, 3600 }, + [67] = { 31, 46.2, 40, 3600 }, + [68] = { 29.1, 45.8, 40, 3600 }, + [69] = { 31.1, 44.2, 40, 3600 }, + [70] = { 41.5, 41, 40, 3600 }, + [71] = { 51.1, 39.1, 40, 3600 }, + [72] = { 46.1, 38.6, 40, 3600 }, + [73] = { 52.4, 34.5, 40, 3600 }, + [74] = { 36.3, 31.9, 40, 3600 }, + [75] = { 38.2, 28.7, 40, 3600 }, + [76] = { 44, 23.4, 40, 3600 }, + [77] = { 45, 21.8, 40, 3600 }, + [78] = { 45.5, 20.8, 40, 3600 }, + [79] = { 48.3, 20.3, 40, 3600 }, + [80] = { 45.9, 19.2, 40, 3600 }, + [81] = { 56.5, 19.1, 40, 3600 }, + [82] = { 56.4, 13.4, 40, 3600 }, + [83] = { 43.1, 7.9, 40, 3600 }, + [84] = { 44.9, 7.7, 40, 3600 }, + [85] = { 55.6, 7.6, 40, 3600 }, + [86] = { 47.2, 73.9, 130, 3600 }, + [87] = { 44.1, 71.6, 130, 3600 }, + [88] = { 46, 71.5, 130, 3600 }, + [89] = { 47.7, 55.6, 130, 3600 }, + [90] = { 46.3, 54.7, 130, 3600 }, + [91] = { 54.5, 34.5, 130, 3600 }, + [92] = { 43.6, 31.7, 130, 3600 }, + [93] = { 36.4, 29.4, 130, 3600 }, + [94] = { 52.7, 28.3, 130, 3600 }, + [95] = { 52.6, 28.3, 130, 3600 }, + [96] = { 56.2, 27.5, 130, 3600 }, + [97] = { 53, 24.9, 130, 3600 }, + [98] = { 48.2, 24.5, 130, 3600 }, + [99] = { 53.6, 24.4, 130, 3600 }, + [100] = { 44.7, 24, 130, 3600 }, + [101] = { 44.8, 23.5, 130, 3600 }, + [102] = { 43.6, 22.5, 130, 3600 }, + [103] = { 44.1, 21.8, 130, 6717 }, + [104] = { 44.6, 20.5, 130, 3600 }, + [105] = { 55.8, 19.7, 130, 3600 }, + [106] = { 59.1, 18.2, 130, 3600 }, + [107] = { 60, 17.5, 130, 3600 }, + [108] = { 60.8, 16.4, 130, 3600 }, + [109] = { 66.3, 13.1, 130, 3600 }, + [110] = { 64.8, 12.2, 130, 3600 }, + [111] = { 39.7, 78.3, 148, 3600 }, + [112] = { 42.4, 62, 148, 3600 }, + [113] = { 41.6, 58.2, 148, 3600 }, + [114] = { 46, 37.7, 148, 3600 }, + [115] = { 44.7, 37.3, 148, 3600 }, + [116] = { 47.2, 37, 148, 3600 }, + [117] = { 54.7, 37, 148, 3600 }, + [118] = { 48.1, 36.4, 148, 3600 }, + [119] = { 55.5, 36.2, 148, 3600 }, + [120] = { 56.6, 35.2, 148, 3600 }, + [121] = { 42, 31.3, 148, 3600 }, + [122] = { 36.7, 27.4, 148, 3600 }, + [123] = { 39.7, 10.8, 361, 3600 }, + [124] = { 40.6, 10, 361, 3600 }, + [125] = { 41.9, 8.8, 361, 3600 }, + [126] = { 42.3, 68.1, 1337, 3600 }, + [127] = { 36.1, 55.5, 1337, 3600 }, + [128] = { 34.9, 51, 1337, 3600 }, + [129] = { 4.7, 37.5, 1337, 3600 }, + [130] = { 50.6, 32.4, 1337, 3600 }, + [131] = { 42.3, 24, 1337, 3600 }, + [132] = { 2.3, 17.5, 1337, 3600 }, + [133] = { 37.3, 14.3, 1337, 3600 }, + [134] = { 62.4, 5.8, 1581, 3600 }, + [135] = { 48.7, 1.7, 5179, 3600 }, + [136] = { 17, 92.2, 5602, 3600 }, + [137] = { 16.3, 90.9, 5602, 3600 }, + [138] = { 16.2, 90.4, 5602, 3600 }, + [139] = { 13, 89, 5602, 3600 }, + [140] = { 17.8, 88.5, 5602, 3600 }, + [141] = { 17, 87.6, 5602, 3600 }, + [142] = { 12.8, 86.9, 5602, 3600 }, + [143] = { 16.4, 86.6, 5602, 3600 }, + [144] = { 14.6, 82.9, 5602, 3600 }, + [145] = { 12.3, 73.7, 5602, 3600 }, + [146] = { 11.8, 69.5, 5602, 3600 }, + [147] = { 12.1, 66.9, 5602, 3600 }, + [148] = { 11.3, 60, 5602, 3600 }, + [149] = { 23.7, 59.5, 5602, 3600 }, + [150] = { 16.2, 58.2, 5602, 3600 }, + [151] = { 16.5, 57.9, 5602, 3600 }, + [152] = { 26.4, 57.5, 5602, 3600 }, + [153] = { 16.8, 57, 5602, 3600 }, + [154] = { 16.6, 56.7, 5602, 3600 }, + [155] = { 17.1, 56.3, 5602, 3600 }, + [156] = { 23.1, 54.8, 5602, 3600 }, + [157] = { 16.8, 52.5, 5602, 3600 }, + [158] = { 17.9, 52.4, 5602, 3600 }, + [159] = { 18.9, 50.6, 5602, 3600 }, + }, + }, + [106528] = { + ["coords"] = { + [1] = { 38.8, 44.6, 130, 0 }, + }, + }, + [106650] = { + ["coords"] = { + [1] = { 45.6, 83.6, 17, 300 }, + [2] = { 48.6, 83, 17, 300 }, + }, + }, + [106651] = { + ["coords"] = {}, + }, + [106652] = { + ["coords"] = {}, + }, + [107047] = { + ["coords"] = { + [1] = { 33.5, 67.5, 331, 0 }, + [2] = { 69.5, 34, 406, 0 }, + }, + }, + [110230] = { + ["coords"] = { + [1] = { 66.5, 38.8, 357, 180 }, + [2] = { 90.4, 87.9, 2557, 180 }, + }, + }, + [111094] = { + ["coords"] = { + [1] = { 59, 77.4, 1519, 900 }, + }, + }, + [111095] = { + ["coords"] = { + [1] = { 51.7, 5.2, 15, 3600 }, + [2] = { 62.3, 56.6, 17, 3600 }, + [3] = { 61.9, 55, 17, 3600 }, + [4] = { 61.4, 53.6, 17, 3600 }, + [5] = { 62.5, 76.3, 130, 3600 }, + [6] = { 59.5, 72, 130, 3600 }, + [7] = { 62.8, 67.2, 130, 6225 }, + [8] = { 63.1, 64.9, 130, 3600 }, + [9] = { 62.8, 63.3, 130, 3600 }, + [10] = { 63, 62.5, 130, 3600 }, + [11] = { 62.9, 62.1, 130, 3600 }, + [12] = { 63.3, 58.2, 130, 3600 }, + [13] = { 63.3, 57.3, 130, 3600 }, + [14] = { 63.9, 56.9, 130, 3600 }, + [15] = { 7.5, 40.8, 267, 3600 }, + [16] = { 7.9, 28.9, 267, 6225 }, + [17] = { 8.4, 25.8, 267, 3600 }, + [18] = { 8, 23.7, 267, 3600 }, + [19] = { 8.3, 22.7, 267, 3600 }, + [20] = { 8.1, 22.1, 267, 3600 }, + [21] = { 8.6, 17, 267, 3600 }, + [22] = { 8.7, 15.8, 267, 3600 }, + [23] = { 66.2, 4.5, 5179, 3600 }, + }, + }, + [111254] = { + ["coords"] = { + [1] = { 34.6, 48.9, 38, 7200 }, + [2] = { 16.3, 69.3, 5602, 7200 }, + }, + }, + [111255] = { + ["coords"] = { + [1] = { 96.2, 46.8, 1, 7200 }, + [2] = { 34.2, 50.3, 38, 7200 }, + [3] = { 16.1, 70, 5602, 7200 }, + }, + }, + [111256] = { + ["coords"] = { + [1] = { 34.8, 49, 38, 7200 }, + [2] = { 16.4, 69.3, 5602, 7200 }, + }, + }, + [111257] = { + ["coords"] = { + [1] = { 35.5, 49.6, 38, 7200 }, + [2] = { 16.7, 69.6, 5602, 7200 }, + }, + }, + [111258] = { + ["coords"] = { + [1] = { 35.5, 49.5, 38, 7200 }, + [2] = { 16.7, 69.6, 5602, 7200 }, + }, + }, + [111259] = { + ["coords"] = { + [1] = { 35.8, 48.9, 38, 7200 }, + [2] = { 16.9, 69.3, 5602, 7200 }, + }, + }, + [111260] = { + ["coords"] = { + [1] = { 34.9, 49.9, 38, 7200 }, + [2] = { 16.4, 69.8, 5602, 7200 }, + }, + }, + [111261] = { + ["coords"] = { + [1] = { 34.9, 49.9, 38, 7200 }, + [2] = { 16.4, 69.8, 5602, 7200 }, + }, + }, + [111262] = { + ["coords"] = { + [1] = { 34.9, 48.9, 38, 7200 }, + [2] = { 16.4, 69.3, 5602, 7200 }, + }, + }, + [111265] = { + ["coords"] = { + [1] = { 34.8, 48.7, 38, 7200 }, + [2] = { 16.4, 69.2, 5602, 7200 }, + }, + }, + [111266] = { + ["coords"] = { + [1] = { 35.1, 48.6, 38, 7200 }, + [2] = { 16.5, 69.1, 5602, 7200 }, + }, + }, + [111268] = { + ["coords"] = { + [1] = { 35.2, 48.9, 38, 7200 }, + [2] = { 16.6, 69.3, 5602, 7200 }, + }, + }, + [111269] = { + ["coords"] = { + [1] = { 35.6, 49.4, 38, 7200 }, + [2] = { 16.8, 69.5, 5602, 7200 }, + }, + }, + [111271] = { + ["coords"] = { + [1] = { 35.6, 49.2, 38, 7200 }, + [2] = { 16.8, 69.4, 5602, 7200 }, + }, + }, + [111942] = { + ["coords"] = { + [1] = { 29.6, 43.1, 267, 7200 }, + [2] = { 85.5, 6.5, 5179, 7200 }, + }, + }, + [111943] = { + ["coords"] = { + [1] = { 29.6, 43, 267, 7200 }, + [2] = { 85.4, 6.5, 5179, 7200 }, + }, + }, + [111945] = { + ["coords"] = { + [1] = { 29.6, 42.6, 267, 7200 }, + [2] = { 85.5, 6.1, 5179, 7200 }, + }, + }, + [111946] = { + ["coords"] = { + [1] = { 29.6, 42.5, 267, 7200 }, + [2] = { 85.5, 6.1, 5179, 7200 }, + }, + }, + [111948] = { + ["coords"] = { + [1] = { 29.7, 42.6, 267, 7200 }, + [2] = { 85.6, 6.1, 5179, 7200 }, + }, + }, + [111949] = { + ["coords"] = { + [1] = { 29.6, 43, 267, 7200 }, + [2] = { 85.5, 6.5, 5179, 7200 }, + }, + }, + [111950] = { + ["coords"] = { + [1] = { 29.7, 43, 267, 7200 }, + [2] = { 85.6, 6.5, 5179, 7200 }, + }, + }, + [111969] = { + ["coords"] = { + [1] = { 29.7, 41.6, 267, 7200 }, + [2] = { 85.5, 5.2, 5179, 7200 }, + }, + }, + [111973] = { + ["coords"] = { + [1] = { 29.7, 43, 267, 7200 }, + [2] = { 85.6, 6.5, 5179, 7200 }, + }, + }, + [111974] = { + ["coords"] = { + [1] = { 29.7, 43.1, 267, 7200 }, + [2] = { 85.5, 6.5, 5179, 7200 }, + }, + }, + [111979] = { + ["coords"] = { + [1] = { 29.6, 42.5, 267, 7200 }, + [2] = { 85.5, 6.1, 5179, 7200 }, + }, + }, + [112051] = { + ["coords"] = { + [1] = { 46.7, 74.3, 130, 7200 }, + [2] = { 48.1, 2.2, 5179, 7200 }, + }, + }, + [112052] = { + ["coords"] = { + [1] = { 46.7, 74.4, 130, 7200 }, + [2] = { 48.1, 2.3, 5179, 7200 }, + }, + }, + [112053] = { + ["coords"] = { + [1] = { 46.7, 73.8, 130, 7200 }, + [2] = { 48.1, 1.6, 5179, 7200 }, + }, + }, + [112054] = { + ["coords"] = { + [1] = { 46.7, 73.7, 130, 7200 }, + [2] = { 48.1, 1.5, 5179, 7200 }, + }, + }, + [112055] = { + ["coords"] = { + [1] = { 46.7, 73.6, 130, 7200 }, + [2] = { 48.1, 1.5, 5179, 7200 }, + }, + }, + [112058] = { + ["coords"] = { + [1] = { 46.4, 74.2, 130, 7200 }, + [2] = { 47.7, 2.2, 5179, 7200 }, + }, + }, + [112059] = { + ["coords"] = { + [1] = { 46.4, 74.3, 130, 7200 }, + [2] = { 47.7, 2.2, 5179, 7200 }, + }, + }, + [112060] = { + ["coords"] = { + [1] = { 46.4, 74.4, 130, 7200 }, + [2] = { 47.7, 2.3, 5179, 7200 }, + }, + }, + [112062] = { + ["coords"] = { + [1] = { 46.2, 74.3, 130, 7200 }, + [2] = { 47.6, 2.3, 5179, 7200 }, + }, + }, + [112065] = { + ["coords"] = { + [1] = { 46.2, 73.9, 130, 7200 }, + [2] = { 47.6, 1.7, 5179, 7200 }, + }, + }, + [112066] = { + ["coords"] = { + [1] = { 46.3, 73.8, 130, 7200 }, + [2] = { 47.6, 1.7, 5179, 7200 }, + }, + }, + [112068] = { + ["coords"] = { + [1] = { 39.3, 62.2, 11, 120 }, + [2] = { 39.2, 62.1, 11, 120 }, + }, + }, + [112070] = { + ["coords"] = { + [1] = { 46.7, 74.2, 130, 7200 }, + [2] = { 48.1, 2.2, 5179, 7200 }, + }, + }, + [112071] = { + ["coords"] = { + [1] = { 46.2, 74.1, 130, 7200 }, + [2] = { 47.6, 2, 5179, 7200 }, + }, + }, + [112072] = { + ["coords"] = { + [1] = { 46.5, 73.4, 130, 7200 }, + [2] = { 47.9, 1.2, 5179, 7200 }, + }, + }, + [112192] = { + ["coords"] = { + [1] = { 42.4, 19, 28, 1200 }, + [2] = { 36, 35.2, 215, 120 }, + [3] = { 35.9, 35.1, 215, 120 }, + [4] = { 36, 35, 215, 120 }, + [5] = { 52.9, 44.4, 2597, 120 }, + [6] = { 52.4, 43.9, 2597, 120 }, + [7] = { 52.9, 43.8, 2597, 120 }, + [8] = { 52.9, 43.7, 2597, 120 }, + [9] = { 52.5, 43.6, 2597, 120 }, + [10] = { 52.5, 43.5, 2597, 120 }, + }, + }, + [112200] = { + ["coords"] = { + [1] = { 29, 45.2, 44, 7200 }, + [2] = { 70.6, 47.7, 1497, 300 }, + [3] = { 71.6, 47.7, 1497, 300 }, + [4] = { 70.5, 47.6, 1497, 300 }, + [5] = { 71.4, 47.5, 1497, 300 }, + }, + }, + [112888] = { + ["coords"] = { + [1] = { 65.4, 24.8, 130, 2 }, + }, + }, + [112898] = { + ["coords"] = { + [1] = { 61.1, 74.2, 1519, 900 }, + }, + }, + [112901] = { + ["coords"] = { + [1] = { 81.5, 60.3, 1519, 900 }, + }, + }, + [112902] = { + ["coords"] = { + [1] = { 81.2, 60.3, 1519, 900 }, + }, + }, + [112903] = { + ["coords"] = { + [1] = { 81.4, 60.2, 1519, 900 }, + }, + }, + [112904] = { + ["coords"] = { + [1] = { 81.3, 60.5, 1519, 900 }, + }, + }, + [112905] = { + ["coords"] = { + [1] = { 81.4, 60.5, 1519, 900 }, + }, + }, + [112906] = { + ["coords"] = { + [1] = { 81.5, 60.5, 1519, 900 }, + }, + }, + [112907] = { + ["coords"] = { + [1] = { 81.1, 61.5, 1519, 900 }, + }, + }, + [112909] = { + ["coords"] = { + [1] = { 57.6, 46.4, 408, 300 }, + }, + }, + [112910] = { + ["coords"] = { + [1] = { 58.8, 48.5, 408, 300 }, + }, + }, + [112911] = { + ["coords"] = { + [1] = { 51.5, 77.6, 331, 300 }, + [2] = { 86.8, 43.7, 406, 300 }, + }, + }, + [112912] = { + ["coords"] = { + [1] = { 42, 17, 5077, 10800 }, + }, + }, + [112913] = { + ["coords"] = { + [1] = { 51.5, 77.6, 331, 300 }, + [2] = { 86.8, 43.7, 406, 300 }, + [3] = { 42, 16.9, 5077, 10800 }, + [4] = { 41.9, 16.8, 5077, 10800 }, + }, + }, + [112915] = { + ["coords"] = {}, + }, + [112916] = { + ["coords"] = {}, + }, + [112917] = { + ["coords"] = { + [1] = { 28.7, 61.5, 12, 300 }, + [2] = { 62.7, 58.6, 1519, 0 }, + [3] = { 63.5, 57.7, 1519, 300 }, + [4] = { 27.8, 30.1, 5179, 300 }, + [5] = { 84.6, 39.7, 5208, 300 }, + }, + }, + [112918] = { + ["coords"] = { + [1] = { 79.4, 38.6, 5087, 300 }, + }, + }, + [112920] = { + ["coords"] = { + [1] = { 30.2, 20.4, 28, 300 }, + [2] = { 86.6, 35.1, 85, 300 }, + }, + }, + [112921] = { + ["coords"] = { + [1] = { 30.2, 20.4, 28, 300 }, + [2] = { 86.6, 35.1, 85, 300 }, + }, + }, + [112923] = { + ["coords"] = { + [1] = { 55.6, 53.5, 440, 300 }, + [2] = { 26.7, 35, 1941, 300 }, + }, + }, + [112924] = { + ["coords"] = {}, + }, + [112940] = { + ["coords"] = { + [1] = { 97.2, 58.5, 46, 300 }, + }, + }, + [112941] = { + ["coords"] = { + [1] = { 11.9, 55.8, 5103, 300 }, + }, + }, + [112948] = { + ["coords"] = { + [1] = { 14.4, 24, 11, 2 }, + }, + }, + [113540] = { + ["coords"] = { + [1] = { 54, 82.6, 130, 7200 }, + [2] = { 56.5, 11.7, 5179, 7200 }, + }, + }, + [113757] = { + ["coords"] = { + [1] = { 25.9, 30.7, 1337, 5 }, + }, + }, + [113768] = { + ["coords"] = { + [1] = { 20.9, 76.6, 1, 180 }, + [2] = { 22.5, 74.9, 1, 180 }, + [3] = { 30.2, 71.7, 1, 180 }, + [4] = { 22.5, 71.3, 1, 180 }, + [5] = { 31.5, 58.5, 1, 180 }, + [6] = { 29.2, 54.8, 1, 180 }, + [7] = { 26.2, 38.2, 1, 180 }, + [8] = { 29.7, 36.3, 1, 180 }, + [9] = { 23.4, 75.6, 12, 180 }, + [10] = { 26.9, 68.3, 12, 180 }, + [11] = { 32.9, 61.2, 12, 180 }, + [12] = { 47.7, 59.2, 12, 180 }, + [13] = { 49.9, 51.2, 12, 180 }, + [14] = { 49.3, 74.2, 14, 180 }, + [15] = { 43.6, 62.8, 14, 180 }, + [16] = { 38.6, 56.7, 14, 180 }, + [17] = { 45.8, 56.2, 14, 180 }, + [18] = { 55.6, 34.5, 14, 180 }, + [19] = { 51.7, 19.6, 14, 180 }, + [20] = { 51.2, 19.5, 14, 180 }, + [21] = { 36.3, 52.4, 17, 180 }, + [22] = { 34.5, 42.4, 17, 180 }, + [23] = { 34.3, 37.7, 17, 180 }, + [24] = { 65.4, 26.7, 17, 180 }, + [25] = { 49.9, 73.1, 141, 180 }, + [26] = { 52.3, 73, 141, 180 }, + [27] = { 59.4, 71.4, 141, 180 }, + [28] = { 58.6, 70.2, 141, 180 }, + [29] = { 66.3, 56.4, 141, 180 }, + [30] = { 57.4, 46.1, 141, 180 }, + [31] = { 57.4, 44.4, 141, 180 }, + [32] = { 37.1, 43, 141, 180 }, + [33] = { 62.5, 40.6, 141, 180 }, + [34] = { 43.9, 38.3, 141, 180 }, + [35] = { 38.5, 33.7, 141, 180 }, + [36] = { 54.7, 89.7, 215, 180 }, + [37] = { 47.7, 68.7, 215, 180 }, + [38] = { 60.4, 48.2, 215, 180 }, + [39] = { 39.5, 34.2, 215, 180 }, + [40] = { 56.9, 28.7, 215, 180 }, + [41] = { 33.9, 24, 215, 180 }, + [42] = { 56.5, 19.3, 215, 180 }, + [43] = { 36.1, 12.4, 215, 180 }, + [44] = { 87.3, 51.6, 405, 180 }, + [45] = { 90.1, 86, 721, 180 }, + [46] = { 45.9, 3.1, 5581, 180 }, + [47] = { 48.3, 0.5, 5581, 180 }, + }, + }, + [113770] = { + ["coords"] = { + [1] = { 24.8, 75.8, 1, 180 }, + [2] = { 27.9, 72.4, 1, 180 }, + [3] = { 28.8, 66.1, 1, 180 }, + [4] = { 34.1, 61.8, 1, 180 }, + [5] = { 49.2, 49.8, 1, 180 }, + [6] = { 55.6, 49.1, 1, 180 }, + [7] = { 40.6, 84.2, 12, 180 }, + [8] = { 51, 79.9, 12, 180 }, + [9] = { 79.3, 77.6, 12, 180 }, + [10] = { 55, 76.9, 12, 180 }, + [11] = { 40.1, 74.5, 12, 180 }, + [12] = { 57.7, 69.2, 12, 180 }, + [13] = { 88.2, 67.3, 12, 180 }, + [14] = { 31.1, 64.8, 12, 180 }, + [15] = { 41.8, 61.6, 12, 180 }, + [16] = { 38.2, 59.6, 12, 180 }, + [17] = { 30.2, 58.6, 12, 180 }, + [18] = { 35.4, 56, 12, 180 }, + [19] = { 49, 40.4, 12, 180 }, + [20] = { 49.3, 31.7, 12, 180 }, + [21] = { 69, 85.1, 14, 180 }, + [22] = { 60.1, 80.4, 14, 180 }, + [23] = { 47.6, 69.5, 14, 180 }, + [24] = { 47, 65.9, 14, 180 }, + [25] = { 55.1, 54.7, 14, 180 }, + [26] = { 50.2, 51.4, 14, 180 }, + [27] = { 38.5, 50.8, 14, 180 }, + [28] = { 47.1, 45.7, 14, 180 }, + [29] = { 50.1, 35.9, 14, 180 }, + [30] = { 53.8, 32.8, 14, 180 }, + [31] = { 41.5, 28.5, 14, 180 }, + [32] = { 45.9, 27.5, 14, 180 }, + [33] = { 57.1, 17.5, 14, 180 }, + [34] = { 81.3, 41.5, 17, 180 }, + [35] = { 33.9, 35.8, 17, 180 }, + [36] = { 43.3, 71.3, 141, 180 }, + [37] = { 39.4, 67, 141, 180 }, + [38] = { 55.1, 64.4, 141, 180 }, + [39] = { 53.1, 59.9, 141, 180 }, + [40] = { 46, 52.2, 141, 180 }, + [41] = { 64.8, 52.1, 141, 180 }, + [42] = { 59.7, 40.3, 141, 180 }, + [43] = { 61.8, 33.3, 141, 180 }, + [44] = { 40.4, 29.3, 141, 180 }, + [45] = { 34.1, 28.1, 141, 180 }, + [46] = { 49.3, 40.8, 215, 180 }, + [47] = { 46.1, 38.6, 215, 180 }, + [48] = { 55.6, 15.5, 215, 180 }, + [49] = { 42.7, 14.1, 215, 180 }, + [50] = { 51.8, 1.9, 5581, 180 }, + }, + }, + [113791] = { + ["coords"] = { + [1] = { 38.3, 44.6, 130, 2 }, + }, + ["fac"] = "H", + }, + [121264] = { + ["coords"] = { + [1] = { 52, 44.7, 44, 2 }, + }, + }, + [123207] = { + ["coords"] = { + [1] = { 38.3, 55.8, 5138, 43200 }, + }, + }, + [123208] = { + ["coords"] = { + [1] = { 39, 56.9, 5138, 43200 }, + }, + }, + [123209] = { + ["coords"] = { + [1] = { 39.1, 54.7, 5138, 43200 }, + }, + }, + [123210] = { + ["coords"] = { + [1] = { 39.8, 55.8, 5138, 43200 }, + }, + }, + [123211] = { + ["coords"] = { + [1] = { 44.2, 55.8, 5138, 43200 }, + }, + }, + [123212] = { + ["coords"] = { + [1] = { 43.9, 53.6, 5138, 43200 }, + }, + }, + [123213] = { + ["coords"] = { + [1] = { 43, 53.7, 5138, 43200 }, + }, + }, + [123214] = { + ["coords"] = { + [1] = { 70.4, 73.9, 40, 1 }, + }, + }, + [123244] = { + ["coords"] = { + [1] = { 11.4, 59.7, 11, 7200 }, + [2] = { 41.6, 65.5, 12, 900 }, + [3] = { 64.6, 50.1, 15, 900 }, + [4] = { 32, 45.3, 267, 7200 }, + [5] = { 87.6, 8.5, 5179, 7200 }, + }, + }, + [123309] = { + ["coords"] = { + [1] = { 73, 65.1, 357, 2700 }, + [2] = { 72, 64, 357, 2700 }, + [3] = { 74.6, 62.2, 357, 2700 }, + [4] = { 45.3, 87.7, 490, 2700 }, + [5] = { 47.3, 85.4, 490, 2700 }, + [6] = { 48, 80.9, 490, 2700 }, + }, + }, + [123310] = { + ["coords"] = { + [1] = { 77.1, 65.3, 357, 1800 }, + [2] = { 77.9, 65.2, 357, 1800 }, + [3] = { 74.6, 65.1, 357, 1800 }, + [4] = { 73.6, 64.9, 357, 1800 }, + [5] = { 74.3, 64.8, 357, 1800 }, + [6] = { 78, 64.7, 357, 1800 }, + [7] = { 72.6, 64.6, 357, 1800 }, + [8] = { 72.6, 64.5, 357, 1800 }, + [9] = { 77.2, 64.2, 357, 1800 }, + [10] = { 77.2, 64, 357, 1800 }, + [11] = { 78.5, 63, 357, 1800 }, + [12] = { 77.9, 62.9, 357, 1800 }, + [13] = { 78.9, 62.8, 357, 1800 }, + [14] = { 77.2, 62.4, 357, 1800 }, + [15] = { 73.5, 62.3, 357, 1800 }, + [16] = { 74.4, 62.3, 357, 1800 }, + [17] = { 74.3, 62, 357, 1800 }, + [18] = { 69.4, 88.5, 400, 1800 }, + [19] = { 65.4, 86.8, 400, 1800 }, + [20] = { 63.7, 86.4, 400, 1800 }, + [21] = { 68.3, 86, 400, 1800 }, + [22] = { 65.6, 85.8, 400, 1800 }, + [23] = { 70.2, 85.3, 400, 1800 }, + [24] = { 65.2, 85.1, 400, 1800 }, + [25] = { 65, 84.7, 400, 1800 }, + [26] = { 69.3, 82.8, 400, 1800 }, + [27] = { 68.2, 82.2, 400, 1800 }, + [28] = { 43.7, 13.6, 440, 1800 }, + }, + }, + [123329] = { + ["coords"] = { + [1] = { 59.6, 94, 1337, 604800 }, + }, + }, + [123330] = { + ["coords"] = { + [1] = { 65, 45.5, 17, 2 }, + [2] = { 65.1, 45.5, 17, 2 }, + [3] = { 65.1, 45.4, 17, 2 }, + [4] = { 65, 45.4, 17, 2 }, + }, + }, + [123331] = { + ["coords"] = { + [1] = { 65, 45.5, 17, 3600 }, + [2] = { 65.1, 45.4, 17, 3600 }, + }, + }, + [123332] = { + ["coords"] = { + [1] = { 65.1, 45.4, 17, 120 }, + }, + }, + [123333] = { + ["coords"] = { + [1] = { 65.1, 45.4, 17, 3600 }, + }, + }, + [123334] = { + ["coords"] = { + [1] = { 65.1, 45.4, 17, 900 }, + [2] = { 52.1, 45.5, 44, 7200 }, + [3] = { 52.3, 45.4, 44, 7200 }, + }, + }, + [123355] = { + ["coords"] = { + [1] = { 65.1, 45.4, 17, 120 }, + }, + }, + [123463] = { + ["coords"] = { + [1] = { 59.3, 93.9, 1337, 3600 }, + }, + }, + [123848] = { + ["coords"] = { + [1] = { 62, 84.1, 357, 2700 }, + [2] = { 73, 64.2, 357, 2700 }, + [3] = { 71.8, 63.8, 357, 2700 }, + [4] = { 75.3, 63.2, 357, 2700 }, + [5] = { 45.9, 87.7, 490, 2700 }, + [6] = { 48.8, 87.1, 490, 2700 }, + [7] = { 50.5, 86, 490, 2700 }, + [8] = { 48.2, 85, 490, 2700 }, + [9] = { 48.3, 84.9, 490, 2700 }, + [10] = { 46.4, 84.6, 490, 2700 }, + [11] = { 49.2, 84.6, 490, 2700 }, + [12] = { 48.1, 83.9, 490, 2700 }, + [13] = { 44.9, 83.8, 490, 2700 }, + [14] = { 46.6, 82.9, 490, 2700 }, + [15] = { 49.7, 82.7, 490, 2700 }, + [16] = { 43.5, 81, 490, 2700 }, + [17] = { 49.2, 80.2, 490, 2700 }, + [18] = { 39.2, 15.5, 490, 2700 }, + [19] = { 50.3, 93.3, 1377, 2700 }, + [20] = { 62.4, 80.3, 1377, 2700 }, + [21] = { 64.3, 73.2, 1377, 2700 }, + [22] = { 27.3, 69.9, 1377, 2700 }, + [23] = { 17.6, 69.6, 1377, 2700 }, + [24] = { 19.7, 65.5, 1377, 2700 }, + [25] = { 35.9, 65.1, 1377, 2700 }, + [26] = { 24, 56.6, 1377, 2700 }, + [27] = { 19.5, 55.4, 1377, 2700 }, + [28] = { 19.5, 55, 1377, 2700 }, + [29] = { 21.2, 54.7, 1377, 2700 }, + [30] = { 23.4, 51.7, 1377, 2700 }, + [31] = { 36.3, 49.2, 1377, 2700 }, + [32] = { 26.2, 47.5, 1377, 2700 }, + [33] = { 42, 30.2, 1377, 2700 }, + [34] = { 45.7, 29.2, 1377, 2700 }, + [35] = { 42.8, 28.5, 1377, 2700 }, + [36] = { 40.2, 27.6, 1377, 2700 }, + [37] = { 42.4, 27, 1377, 2700 }, + [38] = { 38.8, 16.2, 1377, 2700 }, + [39] = { 44.2, 15.8, 1377, 2700 }, + [40] = { 45.4, 15.8, 1377, 2700 }, + [41] = { 44.7, 15.1, 1377, 2700 }, + [42] = { 42.6, 13.3, 1377, 2700 }, + [43] = { 40.4, 13, 1377, 2700 }, + [44] = { 44.5, 12.5, 1377, 2700 }, + [45] = { 46.2, 12.2, 1377, 2700 }, + [46] = { 78.3, 11.6, 3478, 2700 }, + [47] = { 85.3, 10.1, 3478, 2700 }, + [48] = { 81.4, 9.7, 3478, 2700 }, + [49] = { 76.1, 4.1, 3478, 2700 }, + }, + }, + [124367] = { + ["coords"] = { + [1] = { 39.9, 11.2, 1337, 3600 }, + }, + }, + [124368] = { + ["coords"] = { + [1] = { 44.5, 25.9, 1337, 3600 }, + }, + }, + [124369] = { + ["coords"] = { + [1] = { 39.9, 11.2, 1337, 3600 }, + }, + }, + [124370] = { + ["coords"] = { + [1] = { 28.6, 65.4, 1337, 3600 }, + }, + }, + [124371] = { + ["coords"] = { + [1] = { 45.4, 73.7, 1337, 3600 }, + }, + }, + [124372] = { + ["coords"] = { + [1] = { 39.2, 73.7, 1337, 3600 }, + }, + }, + [124374] = { + ["coords"] = { + [1] = { 79.6, 69.9, 1519, 900 }, + }, + }, + [124388] = { + ["coords"] = { + [1] = { 32.4, 65.2, 1337, 5 }, + [2] = { 15.9, 91.9, 5602, 5 }, + }, + }, + [124389] = { + ["coords"] = { + [1] = { 38.4, 86.7, 1337, 0 }, + [2] = { 16.6, 94.2, 5602, 0 }, + }, + }, + [125477] = { + ["coords"] = { + [1] = { 62.9, 93.2, 1337, 5 }, + }, + }, + [126046] = { + ["coords"] = { + [1] = { 69.4, 47.5, 1519, 900 }, + }, + }, + [126049] = { + ["coords"] = { + [1] = { 37.6, 91.6, 38, 300 }, + [2] = { 37, 90, 38, 300 }, + [3] = { 35.7, 87.5, 38, 300 }, + [4] = { 37.2, 85.6, 38, 300 }, + [5] = { 31.7, 90.7, 1337, 300 }, + [6] = { 50.2, 58.1, 1337, 300 }, + [7] = { 47.3, 50.3, 1337, 300 }, + [8] = { 41.3, 38.2, 1337, 300 }, + [9] = { 48.3, 28.8, 1337, 300 }, + [10] = { 48.2, 68.5, 1337, 300 }, + [11] = { 29.2, 56, 1337, 300 }, + [12] = { 46.4, 53.2, 1337, 300 }, + [13] = { 34.4, 50.3, 1337, 300 }, + [14] = { 45.7, 34, 1337, 300 }, + [15] = { 36.1, 24.7, 1337, 300 }, + [16] = { 15.8, 94.6, 5602, 300 }, + [17] = { 17.8, 91.2, 5602, 300 }, + [18] = { 17.5, 90.4, 5602, 300 }, + [19] = { 16.8, 89.1, 5602, 300 }, + [20] = { 17.6, 88.1, 5602, 300 }, + }, + }, + [126051] = { + ["coords"] = { + [1] = { 42.2, 14.8, 14, 900 }, + [2] = { 41.8, 42.2, 16, 300 }, + [3] = { 41.7, 42.2, 16, 300 }, + [4] = { 54.6, 20.3, 17, 900 }, + [5] = { 47.8, 8.8, 17, 900 }, + [6] = { 68.1, 18.1, 148, 300 }, + [7] = { 68.2, 18.1, 148, 300 }, + [8] = { 68.2, 18, 148, 300 }, + [9] = { 68.3, 18, 148, 300 }, + [10] = { 73, 60.4, 331, 900 }, + }, + }, + [126052] = { + ["coords"] = { + [1] = { 47.8, 16.2, 14, 900 }, + [2] = { 51.7, 24.4, 17, 900 }, + [3] = { 61.3, 24.2, 17, 900 }, + [4] = { 44.9, 59.9, 215, 0 }, + [5] = { 45, 59.9, 215, 0 }, + [6] = { 44.8, 59.8, 215, 0 }, + [7] = { 45, 59.7, 215, 0 }, + }, + }, + [126053] = { + ["coords"] = { + [1] = { 47.7, 16.2, 14, 900 }, + [2] = { 45, 14.9, 14, 300 }, + [3] = { 44.9, 14.8, 14, 300 }, + [4] = { 45.1, 14.8, 14, 300 }, + [5] = { 44.9, 14.7, 14, 300 }, + [6] = { 45.1, 14.6, 14, 300 }, + [7] = { 45, 14.6, 14, 300 }, + [8] = { 25, 65.4, 16, 300 }, + [9] = { 24.9, 65.3, 16, 300 }, + [10] = { 25, 65.2, 16, 300 }, + [11] = { 29.3, 62.4, 16, 300 }, + [12] = { 29.3, 62.2, 16, 300 }, + [13] = { 42.4, 93.4, 17, 300 }, + [14] = { 42.3, 93.3, 17, 300 }, + [15] = { 42.4, 93.3, 17, 300 }, + [16] = { 45.8, 85.7, 17, 300 }, + [17] = { 36.1, 33.1, 17, 300 }, + [18] = { 36, 33, 17, 300 }, + [19] = { 36.1, 33, 17, 300 }, + [20] = { 36.1, 32.9, 17, 300 }, + [21] = { 37.8, 32.9, 17, 300 }, + [22] = { 31.7, 27.9, 17, 300 }, + [23] = { 51.7, 24.4, 17, 900 }, + [24] = { 61.3, 24.2, 17, 900 }, + [25] = { 61.7, 23.6, 17, 300 }, + [26] = { 61.6, 23.5, 17, 300 }, + [27] = { 32.7, 28.4, 33, 300 }, + [28] = { 31.9, 28.3, 33, 300 }, + [29] = { 32, 28.3, 33, 300 }, + [30] = { 19.8, 61.7, 44, 300 }, + [31] = { 20, 61.5, 44, 300 }, + [32] = { 17.5, 66.4, 46, 300 }, + [33] = { 17.7, 66.4, 46, 300 }, + [34] = { 17.7, 66.1, 46, 300 }, + [35] = { 17.4, 66.1, 46, 300 }, + [36] = { 17.5, 65.9, 46, 300 }, + [37] = { 77.1, 82.1, 47, 300 }, + [38] = { 77, 82, 47, 300 }, + [39] = { 76.8, 81.9, 47, 300 }, + [40] = { 77, 81.9, 47, 300 }, + [41] = { 76.9, 81.9, 47, 300 }, + [42] = { 78.4, 79.4, 47, 300 }, + [43] = { 78.6, 79.3, 47, 300 }, + [44] = { 78.5, 79.2, 47, 300 }, + [45] = { 9.1, 55.8, 85, 300 }, + [46] = { 9, 55.6, 85, 300 }, + [47] = { 67.8, 81.9, 130, 300 }, + [48] = { 67.9, 81.8, 130, 300 }, + [49] = { 60, 10.3, 215, 300 }, + [50] = { 60.1, 10.2, 215, 300 }, + [51] = { 59.9, 10.2, 215, 300 }, + [52] = { 59.9, 10.1, 215, 300 }, + [53] = { 59.9, 10, 215, 300 }, + [54] = { 60.1, 9.9, 215, 300 }, + [55] = { 63.3, 9.9, 215, 300 }, + [56] = { 60, 9.9, 215, 300 }, + [57] = { 14.5, 48.1, 267, 300 }, + [58] = { 14.7, 48, 267, 300 }, + [59] = { 28.1, 24.9, 400, 300 }, + [60] = { 27.9, 24.7, 400, 300 }, + [61] = { 28.1, 24.7, 400, 300 }, + [62] = { 31.6, 91.1, 405, 300 }, + [63] = { 31.7, 91.1, 405, 300 }, + [64] = { 31.6, 90.9, 405, 300 }, + [65] = { 75.4, 92.6, 406, 300 }, + [66] = { 75.3, 92.5, 406, 300 }, + [67] = { 72.3, 10.9, 5179, 300 }, + [68] = { 72.4, 10.9, 5179, 300 }, + [69] = { 93.7, 92.7, 5581, 300 }, + [70] = { 93.9, 92.7, 5581, 300 }, + [71] = { 93.9, 92.5, 5581, 300 }, + [72] = { 93.6, 92.5, 5581, 300 }, + [73] = { 93.7, 92.3, 5581, 300 }, + }, + }, + [126158] = { + ["coords"] = { + [1] = { 68, 59.7, 141, 5 }, + }, + }, + [126260] = { + ["coords"] = { + [1] = { 39.3, 18.8, 3, 0 }, + [2] = { 55.1, 66, 1337, 0 }, + [3] = { 18.3, 92, 5602, 0 }, + }, + }, + [126312] = { + ["coords"] = { + [1] = { 73.9, 55.6, 25, 7200 }, + [2] = { 34.8, 28.5, 46, 7200 }, + }, + }, + [126313] = { + ["coords"] = { + [1] = { 71.9, 45.9, 25, 7200 }, + [2] = { 34.4, 26.2, 46, 7200 }, + [3] = { 42.6, 97, 51, 7200 }, + }, + }, + [126314] = { + ["coords"] = { + [1] = { 72.1, 46.1, 25, 7200 }, + [2] = { 34.4, 26.3, 46, 7200 }, + [3] = { 42.6, 97.1, 51, 7200 }, + }, + }, + [126335] = { + ["coords"] = { + [1] = { 75.3, 53.2, 25, 7200 }, + [2] = { 35.2, 28, 46, 7200 }, + [3] = { 43.6, 99.3, 51, 7200 }, + }, + }, + [126337] = { + ["coords"] = { + [1] = { 71.5, 53.7, 25, 7200 }, + [2] = { 34.2, 28.1, 46, 7200 }, + [3] = { 42.4, 99.5, 51, 7200 }, + }, + }, + [126338] = { + ["coords"] = { + [1] = { 73.8, 55.2, 25, 7200 }, + [2] = { 34.8, 28.4, 46, 7200 }, + [3] = { 43.2, 99.9, 51, 7200 }, + }, + }, + [126339] = { + ["coords"] = { + [1] = { 73.7, 45.9, 25, 7200 }, + [2] = { 34.8, 26.2, 46, 7200 }, + [3] = { 43.1, 97, 51, 7200 }, + }, + }, + [126340] = { + ["coords"] = { + [1] = { 72.2, 41.6, 25, 7200 }, + [2] = { 34.4, 25.2, 46, 7200 }, + [3] = { 42.7, 95.6, 51, 7200 }, + }, + }, + [126341] = { + ["coords"] = { + [1] = { 74.8, 41.9, 25, 7200 }, + [2] = { 35, 25.3, 46, 7200 }, + [3] = { 43.5, 95.8, 51, 7200 }, + }, + }, + [126342] = { + ["coords"] = { + [1] = { 81.2, 40.5, 25, 7200 }, + [2] = { 36.6, 24.9, 46, 7200 }, + [3] = { 45.5, 95.3, 51, 7200 }, + }, + }, + [126345] = { + ["coords"] = { + [1] = { 78.1, 44, 25, 7200 }, + [2] = { 35.9, 25.8, 46, 7200 }, + [3] = { 44.5, 96.4, 51, 7200 }, + }, + }, + [128196] = { + ["coords"] = { + [1] = { 37.6, 91.6, 38, 900 }, + [2] = { 37, 90, 38, 900 }, + [3] = { 35.7, 87.5, 38, 900 }, + [4] = { 37.2, 85.6, 38, 900 }, + [5] = { 31.7, 90.7, 1337, 900 }, + [6] = { 50.2, 58.1, 1337, 900 }, + [7] = { 47.3, 50.3, 1337, 900 }, + [8] = { 41.3, 38.2, 1337, 900 }, + [9] = { 48.3, 28.8, 1337, 900 }, + [10] = { 48.2, 68.5, 1337, 3600 }, + [11] = { 29.2, 56, 1337, 3600 }, + [12] = { 46.4, 53.2, 1337, 3600 }, + [13] = { 34.4, 50.3, 1337, 3600 }, + [14] = { 45.7, 34, 1337, 3600 }, + [15] = { 36.1, 24.7, 1337, 3600 }, + [16] = { 15.8, 94.6, 5602, 900 }, + [17] = { 17.8, 91.2, 5602, 900 }, + [18] = { 17.5, 90.4, 5602, 900 }, + [19] = { 16.8, 89.1, 5602, 900 }, + [20] = { 17.6, 88.1, 5602, 900 }, + }, + }, + [128293] = { + ["coords"] = { + [1] = { 41, 15, 3, 300 }, + [2] = { 40.7, 10.5, 3, 300 }, + [3] = { 37.6, 91.6, 38, 300 }, + [4] = { 37, 90, 38, 300 }, + [5] = { 40.1, 89.7, 38, 300 }, + [6] = { 33.3, 88.7, 38, 300 }, + [7] = { 39.8, 85.7, 38, 300 }, + [8] = { 37.2, 85.6, 38, 300 }, + [9] = { 50.2, 58.1, 1337, 300 }, + [10] = { 47.3, 50.3, 1337, 300 }, + [11] = { 62.5, 49.2, 1337, 300 }, + [12] = { 29.2, 44, 1337, 300 }, + [13] = { 61.1, 29.4, 1337, 300 }, + [14] = { 48.3, 28.8, 1337, 300 }, + [15] = { 60.9, 94.5, 1337, 300 }, + [16] = { 38.4, 61.9, 1337, 300 }, + [17] = { 17.8, 91.2, 5602, 300 }, + [18] = { 17.5, 90.4, 5602, 300 }, + [19] = { 19.1, 90.2, 5602, 300 }, + [20] = { 15.6, 89.7, 5602, 300 }, + [21] = { 18.9, 88.2, 5602, 300 }, + [22] = { 17.6, 88.1, 5602, 300 }, + }, + }, + [128308] = { + ["coords"] = { + [1] = { 43.1, 23.3, 1176, 7200 }, + [2] = { 41.9, 20.4, 1176, 7200 }, + [3] = { 41.6, 20.1, 1176, 7200 }, + [4] = { 43.7, 19.8, 1176, 7200 }, + [5] = { 46.9, 19.1, 1176, 7200 }, + [6] = { 46.8, 17.7, 1176, 7200 }, + [7] = { 47.3, 17.5, 1176, 7200 }, + [8] = { 46.6, 16.8, 1176, 7200 }, + [9] = { 46.2, 16.7, 1176, 7200 }, + }, + }, + [128403] = { + ["coords"] = { + [1] = { 42.8, 23.8, 1176, 7200 }, + [2] = { 42.5, 23.1, 1176, 7200 }, + [3] = { 43.5, 23, 1176, 7200 }, + [4] = { 41.9, 22.9, 1176, 7200 }, + [5] = { 43.2, 22.8, 1176, 7200 }, + [6] = { 42.2, 22.6, 1176, 7200 }, + [7] = { 43.4, 22.4, 1176, 7200 }, + [8] = { 41.8, 22.3, 1176, 7200 }, + [9] = { 43.4, 21.6, 1176, 7200 }, + [10] = { 41.3, 21, 1176, 7200 }, + [11] = { 43.8, 20.7, 1176, 7200 }, + [12] = { 41.5, 20.6, 1176, 7200 }, + [13] = { 44.3, 20.3, 1176, 7200 }, + [14] = { 44.6, 20.1, 1176, 7200 }, + [15] = { 42.2, 20, 1176, 7200 }, + [16] = { 41.8, 19.6, 1176, 7200 }, + [17] = { 44.6, 19.6, 1176, 7200 }, + [18] = { 45.6, 19.5, 1176, 7200 }, + [19] = { 42, 19.1, 1176, 7200 }, + [20] = { 47.2, 19, 1176, 7200 }, + [21] = { 47, 18.7, 1176, 7200 }, + [22] = { 42.2, 18.5, 1176, 7200 }, + [23] = { 42.7, 18.4, 1176, 7200 }, + [24] = { 47.2, 18.4, 1176, 7200 }, + [25] = { 47.6, 17.8, 1176, 7200 }, + [26] = { 43.1, 17.8, 1176, 7200 }, + [27] = { 42.5, 17.7, 1176, 7200 }, + [28] = { 45.9, 17.5, 1176, 7200 }, + [29] = { 43.5, 17.4, 1176, 7200 }, + [30] = { 44.7, 17.3, 1176, 7200 }, + [31] = { 46.8, 17.1, 1176, 7200 }, + }, + }, + [128972] = { + ["coords"] = { + [1] = { 42.8, 23.8, 1176, 7200 }, + [2] = { 42.5, 23.1, 1176, 7200 }, + [3] = { 43.5, 23, 1176, 7200 }, + [4] = { 41.9, 22.9, 1176, 7200 }, + [5] = { 43.2, 22.8, 1176, 7200 }, + [6] = { 42.2, 22.6, 1176, 7200 }, + [7] = { 43.4, 22.4, 1176, 7200 }, + [8] = { 41.8, 22.3, 1176, 7200 }, + [9] = { 43.4, 21.6, 1176, 7200 }, + [10] = { 41.3, 21, 1176, 7200 }, + [11] = { 43.8, 20.7, 1176, 7200 }, + [12] = { 41.5, 20.6, 1176, 7200 }, + [13] = { 44.3, 20.3, 1176, 7200 }, + [14] = { 44.6, 20.1, 1176, 7200 }, + [15] = { 42.2, 20, 1176, 7200 }, + [16] = { 41.8, 19.6, 1176, 7200 }, + [17] = { 44.6, 19.6, 1176, 7200 }, + [18] = { 45.6, 19.5, 1176, 7200 }, + [19] = { 42, 19.1, 1176, 7200 }, + [20] = { 47.2, 19, 1176, 7200 }, + [21] = { 47, 18.7, 1176, 7200 }, + [22] = { 42.2, 18.5, 1176, 7200 }, + [23] = { 42.7, 18.4, 1176, 7200 }, + [24] = { 47.2, 18.4, 1176, 7200 }, + [25] = { 47.6, 17.8, 1176, 7200 }, + [26] = { 43.1, 17.8, 1176, 7200 }, + [27] = { 42.5, 17.7, 1176, 7200 }, + [28] = { 45.9, 17.5, 1176, 7200 }, + [29] = { 43.5, 17.4, 1176, 7200 }, + [30] = { 44.7, 17.3, 1176, 7200 }, + [31] = { 46.8, 17.1, 1176, 7200 }, + }, + }, + [130125] = { + ["coords"] = { + [1] = { 73.4, 58.3, 1519, 900 }, + }, + }, + [130511] = { + ["coords"] = { + [1] = { 41.7, 16.7, 1337, 3600 }, + }, + ["fac"] = "AH", + }, + [131474] = { + ["coords"] = { + [1] = { 38.8, 7.1, 1337, 3600 }, + }, + }, + [131978] = { + ["coords"] = { + [1] = { 49.6, 59.5, 1337, 604800 }, + [2] = { 42.5, 46.6, 1337, 604800 }, + }, + }, + [133234] = { + ["coords"] = { + [1] = { 42.1, 18.4, 1337, 300 }, + [2] = { 42.1, 18.1, 1337, 3600 }, + }, + ["fac"] = "AH", + }, + [136925] = { + ["coords"] = { + [1] = { 67.4, 44.6, 1583, 120 }, + }, + }, + [136926] = { + ["coords"] = { + [1] = { 65.7, 44.2, 1583, 120 }, + }, + }, + [136927] = { + ["coords"] = { + [1] = { 65.1, 50.7, 1583, 120 }, + }, + }, + [136928] = { + ["coords"] = { + [1] = { 67, 50.1, 1583, 120 }, + }, + }, + [136929] = { + ["coords"] = { + [1] = { 45.2, 26.9, 1583, 120 }, + [2] = { 52, 26.6, 1583, 120 }, + [3] = { 51.3, 26.1, 1583, 120 }, + [4] = { 45.9, 26, 1583, 120 }, + [5] = { 51.3, 25.7, 1583, 120 }, + [6] = { 45.9, 25.7, 1583, 120 }, + [7] = { 45.2, 25.1, 1583, 120 }, + [8] = { 52, 24.8, 1583, 120 }, + }, + }, + [136930] = { + ["coords"] = { + [1] = { 52, 26.9, 1583, 120 }, + [2] = { 45.2, 26.6, 1583, 120 }, + [3] = { 52, 25.1, 1583, 120 }, + [4] = { 45.2, 24.8, 1583, 120 }, + }, + }, + [136931] = { + ["coords"] = { + [1] = { 52.5, 26.2, 1583, 120 }, + [2] = { 44.7, 26.2, 1583, 120 }, + [3] = { 52.5, 25.6, 1583, 120 }, + [4] = { 44.7, 25.5, 1583, 120 }, + }, + }, + [136945] = { + ["coords"] = { + [1] = { 39.8, 80.9, 1583, 120 }, + [2] = { 53.4, 80.6, 1583, 120 }, + }, + }, + [136950] = { + ["coords"] = { + [1] = { 31.1, 39.2, 1583, 120 }, + }, + }, + [136951] = { + ["coords"] = { + [1] = { 33.2, 39.8, 1583, 120 }, + }, + }, + [136952] = { + ["coords"] = { + [1] = { 38.4, 39.7, 1583, 120 }, + }, + }, + [136955] = { + ["coords"] = { + [1] = { 35.7, 42, 1583, 120 }, + }, + }, + [136957] = { + ["coords"] = { + [1] = { 58.4, 47.9, 1583, 25 }, + [2] = { 58, 47.4, 1583, 25 }, + [3] = { 58.2, 46.3, 1583, 25 }, + }, + }, + [136962] = { + ["coords"] = { + [1] = { 47.4, 55.5, 1583, 25 }, + }, + }, + [138492] = { + ["coords"] = { + [1] = { 62.5, 33.7, 45, 2 }, + }, + }, + [138496] = { + ["coords"] = { + [1] = { 29.9, 53.4, 405, 900 }, + [2] = { 38.5, 9.8, 2100, 900 }, + }, + }, + [138497] = { + ["coords"] = { + [1] = { 29.8, 53.5, 405, 900 }, + [2] = { 37.9, 10.3, 2100, 900 }, + }, + ["fac"] = "AH", + }, + [138614] = { + ["coords"] = { + [1] = { 6.7, 59.4, 11, 7200 }, + [2] = { 67.6, 58.5, 15, 900 }, + [3] = { 68.9, 55.9, 15, 900 }, + }, + }, + [140360] = { + ["coords"] = { + [1] = { 49.6, 56.2, 16, 180 }, + [2] = { 68.3, 19, 148, 300 }, + }, + }, + [140372] = { + ["coords"] = { + [1] = { 52.9, 68, 1584, 600 }, + }, + }, + [140373] = { + ["coords"] = { + [1] = { 57.7, 49, 1497, 300 }, + [2] = { 57.5, 48.6, 1497, 300 }, + [3] = { 52.8, 68.1, 1584, 600 }, + }, + }, + [140374] = { + ["coords"] = { + [1] = { 51.7, 69.1, 1584, 600 }, + }, + }, + [140375] = { + ["coords"] = { + [1] = { 51.9, 68.8, 1584, 600 }, + }, + }, + [140376] = { + ["coords"] = { + [1] = { 51.4, 69.5, 1584, 600 }, + }, + }, + [140378] = { + ["coords"] = { + [1] = { 51.6, 69.3, 1584, 600 }, + }, + }, + [140379] = { + ["coords"] = { + [1] = { 51.1, 69.5, 1584, 600 }, + }, + }, + [140380] = { + ["coords"] = { + [1] = { 51.3, 69.3, 1584, 600 }, + }, + }, + [140381] = { + ["coords"] = { + [1] = { 51.4, 69.1, 1584, 600 }, + }, + }, + [140382] = { + ["coords"] = { + [1] = { 51.6, 68.8, 1584, 600 }, + }, + }, + [140383] = { + ["coords"] = { + [1] = { 51, 69.1, 1584, 600 }, + }, + }, + [140384] = { + ["coords"] = { + [1] = { 51.3, 68.9, 1584, 600 }, + }, + }, + [140385] = { + ["coords"] = { + [1] = { 51.4, 68.6, 1584, 600 }, + }, + }, + [140386] = { + ["coords"] = { + [1] = { 51.6, 68.4, 1584, 600 }, + }, + }, + [140387] = { + ["coords"] = { + [1] = { 50.9, 69.1, 1584, 600 }, + }, + }, + [140388] = { + ["coords"] = { + [1] = { 51, 68.9, 1584, 600 }, + }, + }, + [140389] = { + ["coords"] = { + [1] = { 51.3, 68.4, 1584, 600 }, + }, + }, + [140390] = { + ["coords"] = { + [1] = { 55.2, 75.8, 1584, 600 }, + }, + }, + [140391] = { + ["coords"] = { + [1] = { 55.4, 75.6, 1584, 600 }, + }, + }, + [140392] = { + ["coords"] = { + [1] = { 56.1, 73.9, 1584, 600 }, + }, + }, + [140393] = { + ["coords"] = { + [1] = { 56.1, 74.2, 1584, 600 }, + }, + }, + [140394] = { + ["coords"] = { + [1] = { 56.3, 73.3, 1584, 600 }, + }, + }, + [140395] = { + ["coords"] = { + [1] = { 56.2, 73.6, 1584, 600 }, + }, + }, + [140396] = { + ["coords"] = { + [1] = { 53.7, 76.9, 1584, 600 }, + }, + }, + [140397] = { + ["coords"] = { + [1] = { 56.5, 73.4, 1584, 600 }, + }, + }, + [140398] = { + ["coords"] = { + [1] = { 56.4, 73.7, 1584, 600 }, + }, + }, + [140399] = { + ["coords"] = { + [1] = { 56.3, 74, 1584, 600 }, + }, + }, + [140400] = { + ["coords"] = { + [1] = { 56.8, 73.4, 1584, 600 }, + }, + }, + [140401] = { + ["coords"] = { + [1] = { 56.6, 73.8, 1584, 600 }, + }, + }, + [140402] = { + ["coords"] = { + [1] = { 56.5, 74.1, 1584, 600 }, + }, + }, + [140403] = { + ["coords"] = { + [1] = { 56.5, 74.4, 1584, 600 }, + }, + }, + [140439] = { + ["coords"] = { + [1] = { 46, 57.6, 1584, 600 }, + }, + }, + [140908] = "_", + [140911] = { + ["coords"] = { + [1] = { 58.2, 66.7, 1519, 300 }, + [2] = { 50.8, 60.4, 1519, 120 }, + [3] = { 50.6, 60.1, 1519, 180 }, + }, + }, + [140971] = { + ["coords"] = { + [1] = { 40.3, 77.4, 440, 180 }, + [2] = { 43.2, 77.3, 440, 180 }, + [3] = { 49.1, 77.3, 440, 180 }, + [4] = { 46.9, 76.1, 440, 180 }, + [5] = { 41, 74.8, 440, 180 }, + [6] = { 40.4, 74.7, 440, 180 }, + [7] = { 39.7, 74.5, 440, 180 }, + [8] = { 42.1, 74.4, 440, 180 }, + [9] = { 41.5, 73.7, 440, 180 }, + [10] = { 39.6, 73.5, 440, 180 }, + [11] = { 40.3, 73.4, 440, 180 }, + [12] = { 42, 73.3, 440, 180 }, + [13] = { 39.9, 73.2, 440, 180 }, + [14] = { 38.9, 73, 440, 180 }, + [15] = { 40.3, 72.8, 440, 180 }, + [16] = { 48.4, 72.8, 440, 180 }, + [17] = { 41.4, 72.7, 440, 180 }, + [18] = { 39.9, 72.1, 440, 180 }, + [19] = { 41, 71.7, 440, 180 }, + [20] = { 41.2, 71.6, 440, 180 }, + [21] = { 41.2, 71.5, 440, 180 }, + [22] = { 40.6, 71.4, 440, 180 }, + [23] = { 41.2, 71.1, 440, 180 }, + [24] = { 39.1, 70.7, 440, 180 }, + [25] = { 46.2, 70.3, 440, 180 }, + [26] = { 49.7, 69.1, 440, 180 }, + [27] = { 40.3, 68.9, 440, 180 }, + [28] = { 47.8, 66.2, 440, 180 }, + [29] = { 47.2, 66.1, 440, 180 }, + [30] = { 38.9, 65.9, 440, 180 }, + [31] = { 46.7, 65.6, 440, 180 }, + [32] = { 47.1, 64.5, 440, 180 }, + [33] = { 46.9, 64.1, 440, 180 }, + [34] = { 51.3, 64.1, 440, 180 }, + [35] = { 38.4, 61.9, 440, 180 }, + [36] = { 50.7, 61.2, 440, 180 }, + [37] = { 49.6, 59.2, 440, 180 }, + [38] = { 42.2, 58.6, 440, 180 }, + [39] = { 57.8, 57.9, 440, 180 }, + [40] = { 47.6, 57.3, 440, 180 }, + [41] = { 36.1, 56.5, 440, 180 }, + [42] = { 41.7, 56.3, 440, 180 }, + [43] = { 48, 52.7, 440, 180 }, + [44] = { 36.3, 52.3, 440, 180 }, + [45] = { 45.1, 52, 440, 180 }, + [46] = { 39.4, 51.6, 440, 180 }, + [47] = { 46.1, 49.4, 440, 180 }, + [48] = { 58.1, 48.8, 440, 180 }, + [49] = { 44.2, 45.7, 440, 180 }, + [50] = { 48.4, 44.5, 440, 180 }, + [51] = { 40.8, 43.5, 440, 180 }, + [52] = { 40.8, 39.2, 440, 180 }, + [53] = { 44.8, 38.8, 440, 180 }, + [54] = { 47.5, 38.5, 440, 180 }, + [55] = { 49.6, 35.9, 440, 180 }, + [56] = { 56.7, 35.3, 440, 180 }, + [57] = { 36.8, 35.2, 440, 180 }, + [58] = { 44.9, 33.9, 440, 180 }, + [59] = { 52.1, 32.1, 440, 180 }, + [60] = { 40, 31.1, 440, 180 }, + [61] = { 47.1, 30.4, 440, 180 }, + [62] = { 37.7, 29.6, 440, 180 }, + [63] = { 57.8, 28.9, 440, 180 }, + [64] = { 45.2, 27, 440, 180 }, + [65] = { 42.8, 26.1, 440, 180 }, + [66] = { 58.1, 24.5, 440, 180 }, + [67] = { 4.7, 90.2, 1941, 180 }, + [68] = { 1.8, 75, 1941, 180 }, + [69] = { 37.9, 58.1, 1941, 180 }, + [70] = { 39.4, 10.9, 1941, 180 }, + }, + }, + [141070] = { + ["coords"] = { + [1] = { 23.9, 17.5, 1176, 7200 }, + }, + }, + [141071] = { + ["coords"] = { + [1] = { 23.7, 18.5, 1176, 7200 }, + }, + }, + [141072] = { + ["coords"] = { + [1] = { 23.7, 17.6, 1176, 7200 }, + }, + }, + [141073] = { + ["coords"] = { + [1] = { 23.6, 17.9, 1176, 7200 }, + }, + }, + [141074] = { + ["coords"] = { + [1] = { 23.6, 18.3, 1176, 7200 }, + }, + }, + [141596] = { + ["coords"] = { + [1] = { 43.9, 15.6, 1176, 604800 }, + }, + }, + [141812] = { + ["coords"] = { + [1] = { 53.3, 59.7, 4, 300 }, + [2] = { 51.3, 57.7, 4, 300 }, + [3] = { 63.1, 57.2, 4, 300 }, + [4] = { 63.8, 55.9, 4, 300 }, + [5] = { 54, 53.6, 4, 300 }, + [6] = { 62.2, 51.6, 4, 300 }, + [7] = { 55.6, 48.2, 4, 300 }, + }, + }, + [141832] = { + ["coords"] = { + [1] = { 32.8, 43.5, 1176, 0 }, + }, + }, + [141838] = { + ["coords"] = { + [1] = { 51.4, 28.8, 440, 900 }, + [2] = { 42.7, 67.6, 2040, 300 }, + [3] = { 58.1, 34.2, 5225, 300 }, + }, + }, + [141839] = { + ["coords"] = { + [1] = { 51.4, 28.7, 440, 900 }, + [2] = { 42.6, 67.8, 2040, 300 }, + [3] = { 58, 34.3, 5225, 300 }, + }, + }, + [141840] = { + ["coords"] = { + [1] = { 69.1, 20, 148, 300 }, + [2] = { 65.3, 32.9, 440, 900 }, + }, + }, + [141841] = { + ["coords"] = { + [1] = { 93.9, 15.4, 10, 25 }, + [2] = { 65.3, 32.9, 440, 900 }, + }, + }, + [141851] = { + ["coords"] = { + [1] = { 44, 15.5, 1176, 7200 }, + }, + }, + [141852] = { + ["coords"] = { + [1] = { 59.5, 43.9, 1176, 7200 }, + }, + }, + [141853] = { + ["coords"] = { + [1] = { 41, 60.3, 47, 10 }, + [2] = { 39.5, 60, 47, 10 }, + [3] = { 40.1, 59.8, 47, 10 }, + [4] = { 41, 59.8, 47, 10 }, + [5] = { 40.7, 59.1, 47, 10 }, + [6] = { 41.6, 58.9, 47, 10 }, + }, + }, + [141869] = { + ["coords"] = { + [1] = { 43.4, 22.4, 1337, 3600 }, + }, + }, + [141871] = { + ["coords"] = { + [1] = { 31.7, 27.9, 17, 900 }, + [2] = { 75.4, 92.6, 406, 900 }, + }, + }, + [141931] = { + ["coords"] = { + [1] = { 57, 78.2, 357, 180 }, + [2] = { 57.3, 77.3, 357, 180 }, + [3] = { 58.3, 76.7, 357, 180 }, + [4] = { 58, 76.3, 357, 180 }, + [5] = { 58.5, 76.1, 357, 180 }, + [6] = { 55.9, 76, 357, 180 }, + [7] = { 56.7, 75.9, 357, 180 }, + [8] = { 58.6, 75.5, 357, 180 }, + [9] = { 53.7, 74.4, 357, 180 }, + }, + ["fac"] = "AH", + }, + [141980] = { + ["coords"] = { + [1] = { 33.3, 66.2, 8, 0 }, + }, + }, + [141981] = { + ["coords"] = { + [1] = { 33.3, 66.2, 8, 0 }, + }, + }, + [142071] = { + ["coords"] = { + [1] = { 52.4, 27, 440, 2 }, + }, + ["fac"] = "AH", + }, + [142075] = "_", + [142076] = { + ["coords"] = { + [1] = { 34, 57.2, 12, 1 }, + }, + }, + [142088] = { + ["coords"] = { + [1] = { 25, 34.6, 1337, 5 }, + }, + }, + [142089] = "_", + [142093] = "_", + [142094] = "_", + [142095] = "_", + [142102] = { + ["coords"] = { + [1] = { 29, 69.8, 1, 25 }, + [2] = { 47, 52.6, 1, 900 }, + [3] = { 33.9, 10.3, 17, 300 }, + [4] = { 44.3, 98.9, 28, 300 }, + [5] = { 81.1, 51.9, 36, 300 }, + [6] = { 34.8, 47.7, 38, 7200 }, + [7] = { 14, 45.7, 47, 7200 }, + [8] = { 99.4, 5, 267, 7200 }, + [9] = { 79.2, 63, 406, 300 }, + [10] = { 71.3, 72.1, 1537, 900 }, + [11] = { 33.2, 64.7, 1537, 900 }, + [12] = { 21, 52.4, 1537, 900 }, + [13] = { 16.4, 68.7, 5602, 7200 }, + }, + ["fac"] = "AH", + }, + [142103] = "_", + [142109] = { + ["coords"] = { + [1] = { 29.8, 71.2, 16, 300 }, + [2] = { 42.8, 93.3, 17, 300 }, + [3] = { 56.1, 58.4, 141, 900 }, + [4] = { 29.6, 58.3, 141, 25 }, + [5] = { 25.9, 55.6, 141, 900 }, + [6] = { 31.2, 50.4, 141, 900 }, + [7] = { 60, 42.7, 141, 25 }, + [8] = { 37.3, 43.7, 148, 900 }, + [9] = { 36.3, 50.2, 331, 900 }, + [10] = { 95.4, 25.1, 331, 300 }, + [11] = { 31.3, 43.8, 357, 900 }, + [12] = { 29.1, 24.7, 400, 300 }, + [13] = { 65.4, 6.8, 405, 900 }, + [14] = { 44.2, 79.6, 406, 900 }, + [15] = { 40.9, 18.9, 406, 900 }, + [16] = { 40.7, 10.8, 490, 300 }, + [17] = { 81.3, 28.8, 616, 300 }, + [18] = { 50.3, 29.4, 618, 300 }, + [19] = { 51.7, 38, 1377, 900 }, + [20] = { 59.4, 54.7, 1657, 25 }, + [21] = { 41.6, 41.8, 1657, 900 }, + [22] = { 67.2, 16.5, 1657, 900 }, + }, + ["fac"] = "AH", + }, + [142110] = "_", + [142111] = "_", + [142117] = "_", + [142119] = "_", + [142122] = { + ["coords"] = { + [1] = { 66.8, 22.3, 440, 2 }, + }, + ["fac"] = "AH", + }, + [142127] = { + ["coords"] = { + [1] = { 86.3, 59, 47, 2 }, + }, + ["fac"] = "H", + }, + [142140] = { + ["coords"] = { + [1] = { 20.7, 42.8, 3, 2700 }, + [2] = { 42.6, 40.7, 3, 2700 }, + [3] = { 44.3, 38.4, 3, 2700 }, + [4] = { 25.1, 38.1, 3, 2700 }, + [5] = { 53.9, 33.9, 3, 2700 }, + [6] = { 31.5, 33.1, 3, 2700 }, + [7] = { 36.9, 30.8, 3, 2700 }, + [8] = { 60.6, 17.2, 3, 2700 }, + [9] = { 45.5, 12.9, 3, 2700 }, + [10] = { 46.7, 10.8, 3, 2700 }, + [11] = { 39.1, 85.5, 16, 2700 }, + [12] = { 30.1, 81.2, 16, 2700 }, + [13] = { 31.6, 80.8, 16, 2700 }, + [14] = { 34.8, 78.2, 16, 2700 }, + [15] = { 34.2, 77.9, 16, 2700 }, + [16] = { 13.7, 75.3, 16, 2700 }, + [17] = { 13.8, 74.5, 16, 2700 }, + [18] = { 12.8, 74.4, 16, 2700 }, + [19] = { 13.6, 73.3, 16, 2700 }, + [20] = { 37.9, 71.5, 16, 2700 }, + [21] = { 36.9, 71.2, 16, 2700 }, + [22] = { 15.7, 71, 16, 2700 }, + [23] = { 16.4, 70.3, 16, 2700 }, + [24] = { 15.3, 69.8, 16, 2700 }, + [25] = { 18, 69.4, 16, 2700 }, + [26] = { 18, 69.1, 16, 2700 }, + [27] = { 36.5, 69, 16, 2700 }, + [28] = { 16.6, 68.7, 16, 2700 }, + [29] = { 44.2, 67.1, 16, 2700 }, + [30] = { 18.1, 66.7, 16, 2700 }, + [31] = { 20, 66, 16, 2700 }, + [32] = { 18.1, 65.3, 16, 2700 }, + [33] = { 23.8, 65.2, 16, 2700 }, + [34] = { 19.5, 65, 16, 2700 }, + [35] = { 39.1, 64.9, 16, 2700 }, + [36] = { 40.7, 64.9, 16, 2700 }, + [37] = { 40.7, 64.3, 16, 2700 }, + [38] = { 40.4, 64.2, 16, 2700 }, + [39] = { 39.6, 63.6, 16, 2700 }, + [40] = { 36.2, 63.3, 16, 2700 }, + [41] = { 35.6, 63.3, 16, 2700 }, + [42] = { 19.1, 63.2, 16, 2700 }, + [43] = { 40.7, 63.1, 16, 2700 }, + [44] = { 21.2, 61.9, 16, 2700 }, + [45] = { 21, 61.8, 16, 2700 }, + [46] = { 19.8, 61.8, 16, 2700 }, + [47] = { 30.8, 61.7, 16, 2700 }, + [48] = { 19.1, 61.7, 16, 2700 }, + [49] = { 27.9, 60.9, 16, 2700 }, + [50] = { 29.9, 60.7, 16, 2700 }, + [51] = { 24.3, 60.7, 16, 2700 }, + [52] = { 31.6, 60.4, 16, 2700 }, + [53] = { 31, 60, 16, 2700 }, + [54] = { 33.2, 59.9, 16, 2700 }, + [55] = { 36.9, 59.8, 16, 2700 }, + [56] = { 36.2, 59.8, 16, 2700 }, + [57] = { 23.8, 59.4, 16, 2700 }, + [58] = { 28.6, 59.1, 16, 2700 }, + [59] = { 36.6, 58.6, 16, 2700 }, + [60] = { 23.7, 58.2, 16, 2700 }, + [61] = { 31.8, 57.4, 16, 2700 }, + [62] = { 23.5, 57.3, 16, 2700 }, + [63] = { 38, 57, 16, 2700 }, + [64] = { 31.5, 56.4, 16, 2700 }, + [65] = { 26, 56.4, 16, 2700 }, + [66] = { 35.5, 56.2, 16, 2700 }, + [67] = { 23, 56.1, 16, 2700 }, + [68] = { 37.1, 55.8, 16, 2700 }, + [69] = { 36.7, 55.6, 16, 2700 }, + [70] = { 31.1, 55.5, 16, 2700 }, + [71] = { 36.2, 55.2, 16, 2700 }, + [72] = { 38.7, 54.7, 16, 2700 }, + [73] = { 29, 54.6, 16, 2700 }, + [74] = { 39.5, 54.2, 16, 2700 }, + [75] = { 30.4, 53.8, 16, 2700 }, + [76] = { 38.2, 53.4, 16, 2700 }, + [77] = { 29, 53.3, 16, 2700 }, + [78] = { 34.4, 53.2, 16, 2700 }, + [79] = { 34.4, 53, 16, 2700 }, + [80] = { 39.3, 52.8, 16, 2700 }, + [81] = { 35.6, 52.8, 16, 2700 }, + [82] = { 25.5, 52.1, 16, 2700 }, + [83] = { 33.9, 52.1, 16, 2700 }, + [84] = { 31.1, 51.6, 16, 2700 }, + [85] = { 34.1, 51.6, 16, 2700 }, + [86] = { 39.4, 50.8, 16, 2700 }, + [87] = { 38.3, 50.8, 16, 2700 }, + [88] = { 33.9, 50.5, 16, 2700 }, + [89] = { 39.4, 50.4, 16, 2700 }, + [90] = { 36.4, 50.1, 16, 2700 }, + [91] = { 38.4, 49.9, 16, 2700 }, + [92] = { 27.6, 49.7, 16, 2700 }, + [93] = { 34.6, 49.3, 16, 2700 }, + [94] = { 33.8, 49.1, 16, 2700 }, + [95] = { 36.4, 48.8, 16, 2700 }, + [96] = { 35.2, 47.9, 16, 2700 }, + [97] = { 36.9, 47.9, 16, 2700 }, + [98] = { 36.3, 47.3, 16, 2700 }, + [99] = { 42.1, 46.8, 16, 2700 }, + [100] = { 34.4, 46.8, 16, 2700 }, + [101] = { 40.2, 46.5, 16, 2700 }, + [102] = { 40.5, 46.4, 16, 2700 }, + [103] = { 42, 45.7, 16, 2700 }, + [104] = { 38.7, 45.4, 16, 2700 }, + [105] = { 42.5, 45.2, 16, 2700 }, + [106] = { 38.6, 44.5, 16, 2700 }, + [107] = { 38.8, 44.4, 16, 2700 }, + [108] = { 38.3, 43, 16, 2700 }, + [109] = { 38.2, 42.9, 16, 2700 }, + [110] = { 38.4, 42.7, 16, 2700 }, + [111] = { 42.8, 39.9, 16, 2700 }, + [112] = { 78.8, 37.2, 16, 2700 }, + [113] = { 79.1, 37.1, 16, 2700 }, + [114] = { 73.9, 35.6, 16, 2700 }, + [115] = { 73.5, 34.5, 16, 2700 }, + [116] = { 59.5, 32.1, 16, 2700 }, + [117] = { 59.7, 31.2, 16, 2700 }, + [118] = { 58.8, 30.9, 16, 2700 }, + [119] = { 59.5, 30.4, 16, 2700 }, + [120] = { 55.8, 29.6, 16, 2700 }, + [121] = { 55.3, 27.4, 16, 2700 }, + [122] = { 61.4, 25.2, 16, 2700 }, + [123] = { 61.6, 25.1, 16, 2700 }, + [124] = { 28.2, 63.6, 33, 2700 }, + [125] = { 27.4, 62.8, 33, 2700 }, + [126] = { 47.6, 43.5, 33, 2700 }, + [127] = { 46.1, 43.2, 33, 2700 }, + [128] = { 48.4, 40.8, 33, 2700 }, + [129] = { 44.6, 39.7, 33, 2700 }, + [130] = { 41.9, 36.7, 33, 2700 }, + [131] = { 46.5, 32.8, 33, 2700 }, + [132] = { 46.1, 31.8, 33, 2700 }, + [133] = { 37.4, 29.9, 33, 2700 }, + [134] = { 33.4, 15.8, 33, 2700 }, + [135] = { 34.1, 15.1, 33, 2700 }, + [136] = { 26.5, 12.2, 33, 2700 }, + [137] = { 23.6, 11.8, 33, 2700 }, + [138] = { 44.2, 87.8, 38, 2700 }, + [139] = { 45.2, 85.9, 38, 2700 }, + [140] = { 84.4, 20.9, 45, 2700 }, + [141] = { 64.7, 82.9, 47, 2700 }, + [142] = { 60.5, 81.9, 47, 2700 }, + [143] = { 68, 78.1, 47, 2700 }, + [144] = { 68.1, 76.8, 47, 2700 }, + [145] = { 32.9, 74.1, 47, 2700 }, + [146] = { 62.2, 73.4, 47, 2700 }, + [147] = { 56.8, 72.8, 47, 2700 }, + [148] = { 58.4, 72.2, 47, 2700 }, + [149] = { 47.7, 70.1, 47, 2700 }, + [150] = { 64.5, 69.8, 47, 2700 }, + [151] = { 62.3, 69.4, 47, 2700 }, + [152] = { 48.8, 68.9, 47, 2700 }, + [153] = { 65.4, 67.8, 47, 2700 }, + [154] = { 50.5, 67.5, 47, 2700 }, + [155] = { 67.9, 67, 47, 2700 }, + [156] = { 31, 66.9, 47, 2700 }, + [157] = { 32, 66.9, 47, 2700 }, + [158] = { 66, 66.8, 47, 2700 }, + [159] = { 63.8, 66.6, 47, 2700 }, + [160] = { 63.5, 66.5, 47, 2700 }, + [161] = { 40.2, 65.4, 47, 2700 }, + [162] = { 62, 65.2, 47, 2700 }, + [163] = { 65.4, 64.8, 47, 2700 }, + [164] = { 40.2, 64.7, 47, 2700 }, + [165] = { 66.5, 64.7, 47, 2700 }, + [166] = { 57.4, 63.8, 47, 2700 }, + [167] = { 49.5, 63, 47, 2700 }, + [168] = { 23.9, 59.2, 47, 2700 }, + [169] = { 31.7, 58.2, 47, 2700 }, + [170] = { 32.3, 58.1, 47, 2700 }, + [171] = { 32.8, 58, 47, 2700 }, + [172] = { 22.7, 57.5, 47, 2700 }, + [173] = { 49.7, 54.3, 47, 2700 }, + [174] = { 57.6, 44.3, 47, 2700 }, + [175] = { 57.6, 42.8, 47, 2700 }, + [176] = { 57.7, 41.9, 47, 2700 }, + [177] = { 39.8, 85.7, 130, 2700 }, + [178] = { 39, 85.1, 130, 2700 }, + [179] = { 31.8, 99.7, 148, 2700 }, + [180] = { 63.2, 56.9, 331, 2700 }, + [181] = { 67.2, 56.3, 331, 2700 }, + [182] = { 82, 49.9, 331, 2700 }, + [183] = { 81.2, 49.4, 331, 2700 }, + [184] = { 97.6, 48.1, 331, 2700 }, + [185] = { 98.3, 47.1, 331, 2700 }, + [186] = { 78.2, 45.4, 331, 2700 }, + [187] = { 30.5, 45.3, 331, 2700 }, + [188] = { 30.6, 44.2, 331, 2700 }, + [189] = { 99.7, 44, 331, 2700 }, + [190] = { 20.4, 42.5, 331, 2700 }, + [191] = { 34.2, 38.3, 331, 2700 }, + [192] = { 34.1, 38, 331, 2700 }, + [193] = { 22.1, 31.2, 331, 2700 }, + [194] = { 24.7, 31.2, 331, 2700 }, + [195] = { 15.4, 25.9, 331, 2700 }, + [196] = { 14.6, 18.1, 331, 2700 }, + [197] = { 60.4, 69.4, 357, 2700 }, + [198] = { 56.7, 68.9, 357, 2700 }, + [199] = { 60.6, 67.1, 357, 2700 }, + [200] = { 83.3, 65.4, 357, 2700 }, + [201] = { 81.7, 65.1, 357, 2700 }, + [202] = { 23.9, 63.6, 357, 2700 }, + [203] = { 60.1, 62.3, 357, 2700 }, + [204] = { 83.7, 61.5, 357, 2700 }, + [205] = { 82.1, 58.7, 357, 2700 }, + [206] = { 25.5, 55.2, 357, 2700 }, + [207] = { 61.6, 54.3, 357, 2700 }, + [208] = { 25.4, 52, 357, 2700 }, + [209] = { 56.2, 44.6, 357, 2700 }, + [210] = { 64.4, 32.1, 357, 2700 }, + [211] = { 50.9, 20.1, 357, 2700 }, + [212] = { 53.4, 16.3, 357, 2700 }, + [213] = { 50.4, 15.7, 357, 2700 }, + [214] = { 38.2, 14.3, 357, 2700 }, + [215] = { 39.9, 14.1, 357, 2700 }, + [216] = { 39.9, 11.1, 357, 2700 }, + [217] = { 55.4, 80.3, 408, 2700 }, + [218] = { 57.1, 65.5, 408, 2700 }, + [219] = { 66.3, 56.1, 408, 2700 }, + [220] = { 25.3, 32, 408, 2700 }, + [221] = { 28.2, 30, 408, 2700 }, + [222] = { 22.5, 13.2, 408, 2700 }, + [223] = { 41.1, 91.6, 409, 2700 }, + [224] = { 36.8, 64.3, 409, 2700 }, + [225] = { 69.6, 57.9, 409, 2700 }, + [226] = { 38, 80.2, 440, 2700 }, + [227] = { 36.1, 79.5, 440, 2700 }, + [228] = { 39.4, 74, 440, 2700 }, + [229] = { 39.5, 72.8, 440, 2700 }, + [230] = { 40.5, 71.8, 440, 2700 }, + [231] = { 47.8, 67, 440, 2700 }, + [232] = { 47, 65.8, 440, 2700 }, + [233] = { 47.8, 65.8, 440, 2700 }, + [234] = { 46.7, 64.9, 440, 2700 }, + [235] = { 45.5, 64.5, 440, 2700 }, + [236] = { 46.8, 64.2, 440, 2700 }, + [237] = { 63.5, 52.7, 440, 2700 }, + [238] = { 65.1, 52.1, 440, 2700 }, + [239] = { 62.6, 51.7, 440, 2700 }, + [240] = { 63.2, 50.8, 440, 2700 }, + [241] = { 63.6, 49.3, 440, 2700 }, + [242] = { 54.7, 48, 440, 2700 }, + [243] = { 53.9, 47.5, 440, 2700 }, + [244] = { 53.4, 47.5, 440, 2700 }, + [245] = { 54.4, 46.5, 440, 2700 }, + [246] = { 52.7, 45.9, 440, 2700 }, + [247] = { 52.7, 45.5, 440, 2700 }, + [248] = { 52.3, 44.2, 440, 2700 }, + [249] = { 59.4, 24, 440, 2700 }, + [250] = { 60.8, 23.7, 440, 2700 }, + [251] = { 59.9, 22.9, 440, 2700 }, + [252] = { 38.8, 21, 440, 2700 }, + [253] = { 38.3, 20.7, 440, 2700 }, + [254] = { 38.9, 20.6, 440, 2700 }, + [255] = { 39.2, 20.4, 440, 2700 }, + [256] = { 82.5, 39.8, 1337, 2700 }, + [257] = { 87.5, 30.5, 1337, 2700 }, + [258] = { 67, 31.3, 1941, 2700 }, + [259] = { 75.3, 28, 1941, 2700 }, + [260] = { 62.4, 25.7, 1941, 2700 }, + [261] = { 65.4, 21.2, 1941, 2700 }, + [262] = { 67.6, 13.6, 1941, 2700 }, + [263] = { 22, 6.7, 1941, 2700 }, + [264] = { 18.1, 4.3, 1941, 2700 }, + [265] = { 15.6, 3.9, 1941, 2700 }, + [266] = { 79.4, 52.1, 2557, 2700 }, + [267] = { 59.4, 85.9, 5179, 2700 }, + [268] = { 67.5, 83.8, 5179, 2700 }, + [269] = { 62.3, 83.4, 5179, 2700 }, + [270] = { 63.8, 77.7, 5179, 2700 }, + [271] = { 44.3, 68.6, 5179, 2700 }, + [272] = { 66.1, 66.8, 5179, 2700 }, + [273] = { 43.3, 63.2, 5179, 2700 }, + [274] = { 63.8, 62.5, 5179, 2700 }, + [275] = { 47.4, 59.6, 5179, 2700 }, + [276] = { 61.1, 58.9, 5179, 2700 }, + [277] = { 39.4, 55.6, 5179, 2700 }, + [278] = { 48, 55.5, 5179, 2700 }, + [279] = { 14.6, 54.8, 5179, 2700 }, + [280] = { 54.1, 53.4, 5179, 2700 }, + [281] = { 60.9, 53, 5179, 2700 }, + [282] = { 56.1, 50.8, 5179, 2700 }, + [283] = { 36.9, 49.3, 5179, 2700 }, + [284] = { 33.1, 45.8, 5179, 2700 }, + [285] = { 18.7, 45, 5179, 2700 }, + [286] = { 35.2, 43.7, 5179, 2700 }, + [287] = { 38.7, 37.6, 5179, 2700 }, + [288] = { 32.5, 35.3, 5179, 2700 }, + [289] = { 40.2, 15.3, 5179, 2700 }, + [290] = { 39.3, 14.6, 5179, 2700 }, + [291] = { 25, 99, 5602, 2700 }, + [292] = { 14.7, 98.6, 5602, 2700 }, + [293] = { 17.2, 97.6, 5602, 2700 }, + [294] = { 13.5, 95.9, 5602, 2700 }, + [295] = { 28.1, 91.3, 5602, 2700 }, + [296] = { 21.2, 89.3, 5602, 2700 }, + [297] = { 21.7, 88.3, 5602, 2700 }, + }, + }, + [142141] = { + ["coords"] = { + [1] = { 49.4, 80.7, 28, 2700 }, + [2] = { 48.5, 80, 28, 2700 }, + [3] = { 49.2, 79.9, 28, 2700 }, + [4] = { 48.4, 79.8, 28, 2700 }, + [5] = { 52.9, 79.3, 28, 2700 }, + [6] = { 49.7, 79.3, 28, 2700 }, + [7] = { 49.5, 79.2, 28, 2700 }, + [8] = { 51.9, 78.9, 28, 2700 }, + [9] = { 52.6, 78.8, 28, 2700 }, + [10] = { 44.8, 73.1, 28, 2700 }, + [11] = { 39.4, 69.5, 28, 2700 }, + [12] = { 49.3, 69.4, 28, 2700 }, + [13] = { 51.9, 69.2, 28, 2700 }, + [14] = { 47.2, 68.9, 28, 2700 }, + [15] = { 45.5, 67.4, 28, 2700 }, + [16] = { 40.8, 66.7, 28, 2700 }, + [17] = { 46.9, 66.7, 28, 2700 }, + [18] = { 38, 65.7, 28, 2700 }, + [19] = { 56.5, 63.7, 28, 2700 }, + [20] = { 33.8, 63.7, 28, 2700 }, + [21] = { 48, 63.6, 28, 2700 }, + [22] = { 32.9, 63.1, 28, 2700 }, + [23] = { 33.4, 63, 28, 2700 }, + [24] = { 34.1, 62.7, 28, 2700 }, + [25] = { 33.9, 62.7, 28, 2700 }, + [26] = { 40.2, 62.7, 28, 2700 }, + [27] = { 31.3, 61.1, 28, 2700 }, + [28] = { 47.8, 61, 28, 2700 }, + [29] = { 30.2, 60.5, 28, 2700 }, + [30] = { 47.4, 60.3, 28, 2700 }, + [31] = { 46.8, 59.2, 28, 2700 }, + [32] = { 46.5, 58.2, 28, 2700 }, + [33] = { 47, 58, 28, 2700 }, + [34] = { 30.8, 56.4, 28, 2700 }, + [35] = { 60.2, 55.1, 28, 2700 }, + [36] = { 60.6, 55, 28, 2700 }, + [37] = { 35.3, 54.4, 28, 2700 }, + [38] = { 61.1, 54.3, 28, 2700 }, + [39] = { 35.6, 54.2, 28, 2700 }, + [40] = { 60.9, 54.2, 28, 2700 }, + [41] = { 61, 53.2, 28, 2700 }, + [42] = { 41.9, 52.8, 28, 2700 }, + [43] = { 46.3, 45.5, 28, 2700 }, + [44] = { 46.6, 45, 28, 2700 }, + [45] = { 46.3, 42.1, 28, 2700 }, + [46] = { 44.8, 36.1, 28, 2700 }, + [47] = { 55.3, 32.2, 28, 2700 }, + [48] = { 72.3, 31.6, 28, 2700 }, + [49] = { 87.7, 73.8, 85, 2700 }, + [50] = { 86.7, 73.2, 85, 2700 }, + [51] = { 87.3, 69.3, 85, 2700 }, + [52] = { 91.5, 67.4, 85, 2700 }, + [53] = { 91.8, 67.2, 85, 2700 }, + [54] = { 45.2, 84.6, 139, 2700 }, + [55] = { 44.4, 83.8, 139, 2700 }, + [56] = { 33.9, 83.2, 139, 2700 }, + [57] = { 43.1, 80.1, 139, 2700 }, + [58] = { 29.3, 79.5, 139, 2700 }, + [59] = { 29.9, 79.4, 139, 2700 }, + [60] = { 31, 79.3, 139, 2700 }, + [61] = { 30.8, 78.7, 139, 2700 }, + [62] = { 30.3, 78.5, 139, 2700 }, + [63] = { 30.3, 77.8, 139, 2700 }, + [64] = { 36.1, 75, 139, 2700 }, + [65] = { 36, 74.4, 139, 2700 }, + [66] = { 38.9, 71.5, 139, 2700 }, + [67] = { 39.6, 71.3, 139, 2700 }, + [68] = { 42.7, 70.7, 139, 2700 }, + [69] = { 32.2, 68.6, 139, 2700 }, + [70] = { 46.5, 66.4, 139, 2700 }, + [71] = { 44.9, 65.4, 139, 2700 }, + [72] = { 65.9, 59, 139, 2700 }, + [73] = { 79.1, 57.8, 139, 2700 }, + [74] = { 13.1, 51.9, 139, 2700 }, + [75] = { 44.3, 40.7, 139, 2700 }, + [76] = { 48.5, 36.3, 139, 2700 }, + [77] = { 74.3, 34.7, 139, 2700 }, + [78] = { 31, 30.6, 139, 2700 }, + [79] = { 58.3, 39.6, 148, 2700 }, + [80] = { 56.2, 27, 331, 2700 }, + [81] = { 55.3, 91.3, 361, 2700 }, + [82] = { 47.1, 87.5, 361, 2700 }, + [83] = { 43.7, 82, 361, 2700 }, + [84] = { 42, 81.9, 361, 2700 }, + [85] = { 39.5, 80.3, 361, 2700 }, + [86] = { 39.7, 80.1, 361, 2700 }, + [87] = { 43.9, 67.2, 361, 2700 }, + [88] = { 43.6, 66.7, 361, 2700 }, + [89] = { 37.3, 61.4, 361, 2700 }, + [90] = { 37.4, 61.3, 361, 2700 }, + [91] = { 37.9, 60.9, 361, 2700 }, + [92] = { 37.5, 60.5, 361, 2700 }, + [93] = { 38.3, 60.4, 361, 2700 }, + [94] = { 37.8, 45.1, 361, 2700 }, + [95] = { 38.3, 44.6, 361, 2700 }, + [96] = { 43.1, 43.3, 361, 2700 }, + [97] = { 41.7, 40.9, 361, 2700 }, + [98] = { 41.1, 39.8, 361, 2700 }, + [99] = { 41.6, 21.3, 361, 2700 }, + [100] = { 41.2, 21.3, 361, 2700 }, + [101] = { 53.2, 15.5, 361, 2700 }, + [102] = { 52.6, 15.4, 361, 2700 }, + [103] = { 43.8, 13.8, 361, 2700 }, + [104] = { 27.7, 44, 722, 604800 }, + [105] = { 30, 34.5, 722, 604800 }, + [106] = { 60.7, 24.9, 722, 604800 }, + [107] = { 21.8, 38.4, 4012, 2700 }, + [108] = { 37.9, 36.9, 4012, 2700 }, + [109] = { 0.4, 10.7, 4012, 2700 }, + [110] = { 32, 8.7, 4012, 2700 }, + [111] = { 77.2, 94.2, 5225, 2700 }, + }, + }, + [142142] = { + ["coords"] = { + [1] = { 54.4, 57.6, 4, 2700 }, + [2] = { 52.3, 55.4, 4, 2700 }, + [3] = { 54.9, 55.2, 4, 2700 }, + [4] = { 45.7, 54, 4, 2700 }, + [5] = { 44.5, 54, 4, 2700 }, + [6] = { 44.8, 53.9, 4, 2700 }, + [7] = { 54.4, 53.1, 4, 2700 }, + [8] = { 63.6, 51.1, 4, 2700 }, + [9] = { 61.3, 50.4, 4, 2700 }, + [10] = { 46.1, 50.3, 4, 2700 }, + [11] = { 60.2, 49.9, 4, 2700 }, + [12] = { 58.1, 48.5, 4, 2700 }, + [13] = { 57.8, 47.2, 4, 2700 }, + [14] = { 59.9, 43.8, 4, 2700 }, + [15] = { 59.6, 43, 4, 2700 }, + [16] = { 54.6, 42.3, 4, 2700 }, + [17] = { 47.1, 40.1, 4, 2700 }, + [18] = { 47.8, 38.4, 4, 2700 }, + [19] = { 51.3, 38.2, 4, 2700 }, + [20] = { 60.7, 37.7, 4, 2700 }, + [21] = { 48, 36.7, 4, 2700 }, + [22] = { 45.3, 36.5, 4, 2700 }, + [23] = { 45.2, 35.3, 4, 2700 }, + [24] = { 63.3, 33.6, 4, 2700 }, + [25] = { 62.1, 32.7, 4, 2700 }, + [26] = { 56.1, 30.8, 4, 2700 }, + [27] = { 61.9, 28.8, 4, 2700 }, + [28] = { 61.1, 28, 4, 2700 }, + [29] = { 44.3, 25.2, 4, 2700 }, + [30] = { 45.7, 24.9, 4, 2700 }, + [31] = { 46.3, 24.7, 4, 2700 }, + [32] = { 44.9, 24.6, 4, 2700 }, + [33] = { 47.4, 21.8, 4, 2700 }, + [34] = { 47.9, 21.4, 4, 2700 }, + [35] = { 48, 20.6, 4, 2700 }, + [36] = { 47.4, 20.3, 4, 2700 }, + [37] = { 70.4, 91.5, 16, 2700 }, + [38] = { 70.3, 91.3, 16, 2700 }, + [39] = { 66.2, 91.3, 16, 2700 }, + [40] = { 53.4, 90.7, 16, 2700 }, + [41] = { 66.7, 90.6, 16, 2700 }, + [42] = { 53.2, 90.5, 16, 2700 }, + [43] = { 53.1, 90.4, 16, 2700 }, + [44] = { 48.5, 86.7, 16, 2700 }, + [45] = { 48.4, 86.7, 16, 2700 }, + [46] = { 62, 86.5, 16, 2700 }, + [47] = { 62, 86.1, 16, 2700 }, + [48] = { 70.7, 85, 16, 2700 }, + [49] = { 71.2, 84.4, 16, 2700 }, + [50] = { 55.1, 84, 16, 2700 }, + [51] = { 34.8, 83.3, 16, 2700 }, + [52] = { 67.3, 83.2, 16, 2700 }, + [53] = { 31.7, 82.7, 16, 2700 }, + [54] = { 60.5, 82.2, 16, 2700 }, + [55] = { 33.7, 82, 16, 2700 }, + [56] = { 36.4, 81.6, 16, 2700 }, + [57] = { 33.7, 81.4, 16, 2700 }, + [58] = { 49, 81.3, 16, 2700 }, + [59] = { 29.6, 81.2, 16, 2700 }, + [60] = { 50.7, 81.2, 16, 2700 }, + [61] = { 29.5, 81, 16, 2700 }, + [62] = { 29.8, 80.6, 16, 2700 }, + [63] = { 29.7, 80.6, 16, 2700 }, + [64] = { 29.9, 80.5, 16, 2700 }, + [65] = { 46.2, 79.7, 16, 2700 }, + [66] = { 17.7, 79.7, 16, 2700 }, + [67] = { 23.3, 79.3, 16, 2700 }, + [68] = { 35.5, 79.2, 16, 2700 }, + [69] = { 12.6, 79, 16, 2700 }, + [70] = { 12.5, 78.9, 16, 2700 }, + [71] = { 52.8, 78.9, 16, 2700 }, + [72] = { 15.9, 78.8, 16, 2700 }, + [73] = { 52.7, 78.7, 16, 2700 }, + [74] = { 16.1, 78.7, 16, 2700 }, + [75] = { 52.5, 78.6, 16, 2700 }, + [76] = { 22, 78.6, 16, 2700 }, + [77] = { 46.9, 78, 16, 2700 }, + [78] = { 23.5, 78, 16, 2700 }, + [79] = { 23.4, 77.8, 16, 2700 }, + [80] = { 46.6, 77.8, 16, 2700 }, + [81] = { 50.8, 77.4, 16, 2700 }, + [82] = { 46.7, 73.1, 16, 2700 }, + [83] = { 39.5, 72.9, 16, 2700 }, + [84] = { 40.2, 72.9, 16, 2700 }, + [85] = { 39.7, 72.6, 16, 2700 }, + [86] = { 17.5, 72.3, 16, 2700 }, + [87] = { 17.5, 71.9, 16, 2700 }, + [88] = { 38.4, 71.8, 16, 2700 }, + [89] = { 17.4, 70.8, 16, 2700 }, + [90] = { 41.7, 70, 16, 2700 }, + [91] = { 50.2, 69.7, 16, 2700 }, + [92] = { 50, 69.7, 16, 2700 }, + [93] = { 19.2, 65, 16, 2700 }, + [94] = { 20, 64.7, 16, 2700 }, + [95] = { 20.4, 64.7, 16, 2700 }, + [96] = { 35.2, 62.9, 16, 2700 }, + [97] = { 18.1, 60.9, 16, 2700 }, + [98] = { 22.8, 60.6, 16, 2700 }, + [99] = { 18.2, 59.3, 16, 2700 }, + [100] = { 18.2, 58.9, 16, 2700 }, + [101] = { 27.8, 58.8, 16, 2700 }, + [102] = { 18.6, 55.5, 16, 2700 }, + [103] = { 18.3, 55.2, 16, 2700 }, + [104] = { 17.7, 52.7, 16, 2700 }, + [105] = { 17.5, 51.9, 16, 2700 }, + [106] = { 16.8, 51.8, 16, 2700 }, + [107] = { 17.6, 51.6, 16, 2700 }, + [108] = { 20, 50.9, 16, 2700 }, + [109] = { 18.7, 50.5, 16, 2700 }, + [110] = { 18.6, 50.2, 16, 2700 }, + [111] = { 46.1, 30.2, 16, 2700 }, + [112] = { 59.1, 28.4, 16, 2700 }, + [113] = { 73, 27.5, 16, 2700 }, + [114] = { 51.2, 27.1, 16, 2700 }, + [115] = { 49.7, 26.8, 16, 2700 }, + [116] = { 56.3, 23.1, 16, 2700 }, + [117] = { 56.8, 22.9, 16, 2700 }, + [118] = { 44.7, 22.9, 16, 2700 }, + [119] = { 56.5, 22.8, 16, 2700 }, + [120] = { 42.3, 21.4, 16, 2700 }, + [121] = { 56, 20.5, 16, 2700 }, + [122] = { 51.9, 19.9, 16, 2700 }, + [123] = { 49.4, 66.9, 28, 2700 }, + [124] = { 50.9, 64.1, 28, 2700 }, + [125] = { 39.4, 62.5, 28, 2700 }, + [126] = { 49.2, 61.6, 28, 2700 }, + [127] = { 42.8, 54.6, 28, 2700 }, + [128] = { 41.1, 52.3, 28, 2700 }, + [129] = { 45.6, 44.8, 28, 2700 }, + [130] = { 46.9, 39.5, 28, 2700 }, + [131] = { 41.4, 18.8, 28, 2700 }, + [132] = { 66.4, 59.6, 46, 2700 }, + [133] = { 82.3, 57.8, 46, 2700 }, + [134] = { 84.7, 57.3, 46, 2700 }, + [135] = { 76.3, 54.1, 46, 2700 }, + [136] = { 75.7, 52, 46, 2700 }, + [137] = { 90.7, 51.8, 46, 2700 }, + [138] = { 74.3, 44.8, 46, 2700 }, + [139] = { 88.9, 44.7, 46, 2700 }, + [140] = { 74.3, 43.9, 46, 2700 }, + [141] = { 89.8, 43.4, 46, 2700 }, + [142] = { 73.6, 35.7, 46, 2700 }, + [143] = { 67.8, 35.2, 46, 2700 }, + [144] = { 58.9, 34.9, 46, 2700 }, + [145] = { 59.7, 34.8, 46, 2700 }, + [146] = { 66.9, 34.6, 46, 2700 }, + [147] = { 90.1, 33.9, 46, 2700 }, + [148] = { 90, 33.4, 46, 2700 }, + [149] = { 92.5, 33.1, 46, 2700 }, + [150] = { 43.4, 66.9, 47, 2700 }, + [151] = { 27.9, 66.6, 47, 2700 }, + [152] = { 50.7, 65.9, 47, 2700 }, + [153] = { 29.6, 65.5, 47, 2700 }, + [154] = { 28.4, 65.5, 47, 2700 }, + [155] = { 28, 65.3, 47, 2700 }, + [156] = { 29.4, 64.7, 47, 2700 }, + [157] = { 37.8, 63.7, 47, 2700 }, + [158] = { 31.3, 63.4, 47, 2700 }, + [159] = { 44.4, 62.8, 47, 2700 }, + [160] = { 26.8, 61.5, 47, 2700 }, + [161] = { 71.3, 60.4, 47, 2700 }, + [162] = { 25.6, 59.8, 47, 2700 }, + [163] = { 36.5, 58.9, 47, 2700 }, + [164] = { 45.1, 58.2, 47, 2700 }, + [165] = { 66.1, 57.8, 47, 2700 }, + [166] = { 68.6, 57.7, 47, 2700 }, + [167] = { 51.1, 57.6, 47, 2700 }, + [168] = { 45.7, 57.5, 47, 2700 }, + [169] = { 21.7, 57.3, 47, 2700 }, + [170] = { 22.1, 56.7, 47, 2700 }, + [171] = { 24.6, 56.2, 47, 2700 }, + [172] = { 21.9, 56.1, 47, 2700 }, + [173] = { 46.1, 55.6, 47, 2700 }, + [174] = { 48.8, 55.5, 47, 2700 }, + [175] = { 46.6, 55.3, 47, 2700 }, + [176] = { 37.9, 55.2, 47, 2700 }, + [177] = { 45, 55, 47, 2700 }, + [178] = { 61.1, 54.8, 47, 2700 }, + [179] = { 47, 54.8, 47, 2700 }, + [180] = { 46.4, 54.7, 47, 2700 }, + [181] = { 48.2, 54.6, 47, 2700 }, + [182] = { 37.7, 54.5, 47, 2700 }, + [183] = { 17.3, 54.3, 47, 2700 }, + [184] = { 28.5, 53.9, 47, 2700 }, + [185] = { 30.4, 53.4, 47, 2700 }, + [186] = { 23.4, 53.1, 47, 2700 }, + [187] = { 22.9, 52.9, 47, 2700 }, + [188] = { 37.8, 52.7, 47, 2700 }, + [189] = { 22, 52.6, 47, 2700 }, + [190] = { 36.7, 51.9, 47, 2700 }, + [191] = { 18.8, 51.6, 47, 2700 }, + [192] = { 18.1, 51.4, 47, 2700 }, + [193] = { 37.6, 51.3, 47, 2700 }, + [194] = { 75.6, 51.1, 47, 2700 }, + [195] = { 18.2, 51, 47, 2700 }, + [196] = { 64.6, 49.7, 47, 2700 }, + [197] = { 58.9, 49, 47, 2700 }, + [198] = { 61.8, 48.8, 47, 2700 }, + [199] = { 69.9, 48.2, 47, 2700 }, + [200] = { 53.8, 47.2, 47, 2700 }, + [201] = { 66, 47.2, 47, 2700 }, + [202] = { 41.2, 46.9, 47, 2700 }, + [203] = { 36.5, 46.9, 47, 2700 }, + [204] = { 41.8, 46.9, 47, 2700 }, + [205] = { 34.4, 46.8, 47, 2700 }, + [206] = { 36.7, 46.1, 47, 2700 }, + [207] = { 36.9, 46, 47, 2700 }, + [208] = { 56.3, 45.8, 47, 2700 }, + [209] = { 40.1, 45.7, 47, 2700 }, + [210] = { 41.8, 45.3, 47, 2700 }, + [211] = { 40.4, 45.3, 47, 2700 }, + [212] = { 40.1, 45.2, 47, 2700 }, + [213] = { 40.6, 45.1, 47, 2700 }, + [214] = { 62.4, 44.9, 47, 2700 }, + [215] = { 42, 44.8, 47, 2700 }, + [216] = { 56.2, 44.3, 47, 2700 }, + [217] = { 51.5, 43.2, 47, 2700 }, + [218] = { 51.5, 42.5, 47, 2700 }, + [219] = { 53.4, 42.4, 47, 2700 }, + [220] = { 54.4, 42, 47, 2700 }, + [221] = { 54.6, 41.7, 47, 2700 }, + [222] = { 54, 41.2, 47, 2700 }, + [223] = { 97.3, 33.5, 85, 2700 }, + [224] = { 47.7, 84.3, 139, 2700 }, + [225] = { 49.2, 84, 139, 2700 }, + [226] = { 48.6, 83.4, 139, 2700 }, + [227] = { 48.5, 82.9, 139, 2700 }, + [228] = { 46.1, 77, 139, 2700 }, + [229] = { 56.7, 75.7, 139, 2700 }, + [230] = { 45.5, 75.7, 139, 2700 }, + [231] = { 58.8, 74.1, 139, 2700 }, + [232] = { 31, 71.7, 139, 2700 }, + [233] = { 39.3, 71.1, 139, 2700 }, + [234] = { 30, 70.5, 139, 2700 }, + [235] = { 30.6, 70.4, 139, 2700 }, + [236] = { 51.1, 69.8, 139, 2700 }, + [237] = { 59.5, 64.9, 139, 2700 }, + [238] = { 46.5, 62.7, 139, 2700 }, + [239] = { 62.2, 61.9, 139, 2700 }, + [240] = { 55.9, 57.8, 139, 2700 }, + [241] = { 55.4, 57.6, 139, 2700 }, + [242] = { 55, 57.5, 139, 2700 }, + [243] = { 62.4, 47.6, 139, 2700 }, + [244] = { 61.6, 47.6, 139, 2700 }, + [245] = { 62, 47.2, 139, 2700 }, + [246] = { 61.1, 47.1, 139, 2700 }, + [247] = { 33.5, 40, 139, 2700 }, + [248] = { 46.9, 39.8, 139, 2700 }, + [249] = { 47.5, 39.4, 139, 2700 }, + [250] = { 72.5, 38.8, 139, 2700 }, + [251] = { 24.3, 37.6, 139, 2700 }, + [252] = { 24.3, 37.1, 139, 2700 }, + [253] = { 62.4, 36.7, 139, 2700 }, + [254] = { 62.7, 35.9, 139, 2700 }, + [255] = { 19.7, 34.9, 139, 2700 }, + [256] = { 19.3, 33.8, 139, 2700 }, + [257] = { 18.8, 31.1, 139, 2700 }, + [258] = { 18.6, 30.4, 139, 2700 }, + [259] = { 18.7, 30, 139, 2700 }, + [260] = { 49.1, 26.4, 139, 2700 }, + [261] = { 63.2, 22.9, 139, 2700 }, + [262] = { 40.1, 20.6, 331, 2700 }, + [263] = { 56, 62.7, 357, 2700 }, + [264] = { 72, 60.3, 357, 2700 }, + [265] = { 68.6, 57, 357, 2700 }, + [266] = { 72.3, 55.8, 357, 2700 }, + [267] = { 57.9, 50.7, 357, 2700 }, + [268] = { 55.2, 49.4, 357, 2700 }, + [269] = { 52.4, 49.2, 357, 2700 }, + [270] = { 59.8, 48.5, 357, 2700 }, + [271] = { 56.8, 47.4, 357, 2700 }, + [272] = { 53.2, 46.5, 357, 2700 }, + [273] = { 60.6, 45.5, 357, 2700 }, + [274] = { 70.6, 45, 357, 2700 }, + [275] = { 70.9, 39.2, 357, 2700 }, + [276] = { 86.3, 38.3, 357, 2700 }, + [277] = { 70.4, 38.3, 357, 2700 }, + [278] = { 78.8, 38, 357, 2700 }, + [279] = { 51.3, 23.3, 357, 2700 }, + [280] = { 37.8, 23.2, 357, 2700 }, + [281] = { 43.6, 21.9, 357, 2700 }, + [282] = { 42.6, 12.4, 357, 2700 }, + [283] = { 39.2, 84.8, 361, 2700 }, + [284] = { 42.9, 65.8, 361, 2700 }, + [285] = { 41.3, 58.1, 361, 2700 }, + [286] = { 38.6, 53.4, 361, 2700 }, + [287] = { 38.7, 53.3, 361, 2700 }, + [288] = { 38.1, 40.1, 361, 2700 }, + [289] = { 49.3, 35.3, 361, 2700 }, + [290] = { 40.2, 30.5, 361, 2700 }, + [291] = { 53.2, 26, 361, 2700 }, + [292] = { 40.7, 23.4, 361, 2700 }, + [293] = { 54.3, 17.3, 361, 2700 }, + [294] = { 46.1, 14.2, 361, 2700 }, + [295] = { 56.8, 10.2, 361, 2700 }, + [296] = { 55.9, 9.3, 361, 2700 }, + [297] = { 55.9, 8.7, 361, 2700 }, + [298] = { 53.5, 69.6, 408, 2700 }, + [299] = { 68.5, 66.3, 408, 2700 }, + [300] = { 53.6, 45.5, 408, 2700 }, + [301] = { 59.4, 44.3, 408, 2700 }, + [302] = { 22.6, 3.3, 408, 2700 }, + [303] = { 25.7, 2.9, 408, 2700 }, + [304] = { 41.2, 81.1, 409, 2700 }, + [305] = { 44.6, 80.6, 409, 2700 }, + [306] = { 46.1, 74, 409, 2700 }, + [307] = { 50.4, 68.9, 409, 2700 }, + [308] = { 67.7, 61.1, 409, 2700 }, + [309] = { 60.6, 56.9, 409, 2700 }, + [310] = { 46.2, 54, 409, 2700 }, + [311] = { 39.6, 52.7, 409, 2700 }, + [312] = { 34.2, 52.3, 409, 2700 }, + [313] = { 35.3, 39.6, 409, 2700 }, + [314] = { 57.9, 36.1, 409, 2700 }, + [315] = { 42.5, 35.9, 409, 2700 }, + [316] = { 44.1, 91, 490, 2700 }, + [317] = { 57.9, 81.7, 490, 2700 }, + [318] = { 37.5, 75.2, 490, 2700 }, + [319] = { 59.8, 75.1, 490, 2700 }, + [320] = { 46.4, 75, 490, 2700 }, + [321] = { 48.1, 69.9, 490, 2700 }, + [322] = { 34.7, 65.7, 490, 2700 }, + [323] = { 28.5, 64, 490, 2700 }, + [324] = { 40.8, 63.7, 490, 2700 }, + [325] = { 61.1, 54.9, 490, 2700 }, + [326] = { 40, 51.8, 490, 2700 }, + [327] = { 21, 40.3, 490, 2700 }, + [328] = { 32.9, 37, 490, 2700 }, + [329] = { 27.5, 36.7, 490, 2700 }, + [330] = { 26.3, 32.6, 490, 2700 }, + [331] = { 67.9, 31.4, 490, 2700 }, + [332] = { 56.1, 30.5, 490, 2700 }, + [333] = { 47.1, 27.7, 490, 2700 }, + [334] = { 57.4, 18.2, 490, 2700 }, + [335] = { 3.5, 16.1, 616, 2700 }, + [336] = { 57.7, 54.8, 876, 300 }, + [337] = { 57.8, 54.8, 876, 300 }, + [338] = { 62.3, 43.4, 1377, 2700 }, + [339] = { 79.9, 43.1, 1377, 2700 }, + [340] = { 10.4, 5.3, 2557, 2700 }, + [341] = { 1.3, 69, 4012, 2700 }, + [342] = { 0.5, 68.3, 4012, 2700 }, + [343] = { 0.4, 67.7, 4012, 2700 }, + [344] = { 10.5, 58.9, 4012, 2700 }, + [345] = { 13, 56.9, 4012, 2700 }, + [346] = { 3.6, 51.7, 4012, 2700 }, + [347] = { 13.9, 45.7, 4012, 2700 }, + [348] = { 17.2, 41.9, 4012, 2700 }, + [349] = { 9.5, 36.9, 4012, 2700 }, + [350] = { 8.9, 36.7, 4012, 2700 }, + [351] = { 8.4, 36.6, 4012, 2700 }, + [352] = { 17.5, 24.5, 4012, 2700 }, + [353] = { 16.4, 24.5, 4012, 2700 }, + [354] = { 17, 24, 4012, 2700 }, + [355] = { 15.8, 23.9, 4012, 2700 }, + [356] = { 29.8, 13.7, 4012, 2700 }, + [357] = { 17.4, 11.2, 4012, 2700 }, + [358] = { 17.8, 10.1, 4012, 2700 }, + [359] = { 62.7, 86.1, 5121, 2700 }, + [360] = { 57.8, 67.7, 5121, 2700 }, + [361] = { 61.6, 62.5, 5121, 2700 }, + [362] = { 56.8, 52.1, 5121, 2700 }, + [363] = { 49.1, 41.2, 5121, 2700 }, + [364] = { 41.6, 35.3, 5121, 2700 }, + [365] = { 63, 99.6, 5225, 2700 }, + [366] = { 62.5, 98.2, 5225, 2700 }, + [367] = { 61.9, 94.8, 5225, 2700 }, + [368] = { 61.6, 94, 5225, 2700 }, + [369] = { 61.8, 93.5, 5225, 2700 }, + }, + }, + [142143] = { + ["coords"] = { + [1] = { 78.6, 83.1, 8, 2700 }, + [2] = { 78.8, 80.4, 8, 2700 }, + [3] = { 80.6, 69.4, 8, 2700 }, + [4] = { 78.3, 68.9, 8, 2700 }, + [5] = { 85.5, 68.3, 8, 2700 }, + [6] = { 79.3, 68, 8, 2700 }, + [7] = { 16.3, 67.5, 8, 2700 }, + [8] = { 17.3, 66.9, 8, 2700 }, + [9] = { 13.9, 66.3, 8, 2700 }, + [10] = { 81.5, 65.7, 8, 2700 }, + [11] = { 66.5, 63.8, 8, 2700 }, + [12] = { 12.4, 63.7, 8, 2700 }, + [13] = { 81.8, 61, 8, 2700 }, + [14] = { 84, 60, 8, 2700 }, + [15] = { 80.7, 58.9, 8, 2700 }, + [16] = { 13.3, 57.8, 8, 2700 }, + [17] = { 84.5, 57.7, 8, 2700 }, + [18] = { 61.3, 57.7, 8, 2700 }, + [19] = { 80, 57.2, 8, 2700 }, + [20] = { 16.2, 57, 8, 2700 }, + [21] = { 87.7, 56.8, 8, 2700 }, + [22] = { 56.5, 56.6, 8, 2700 }, + [23] = { 53.9, 55.3, 8, 2700 }, + [24] = { 28.1, 54.1, 8, 2700 }, + [25] = { 30.4, 53.8, 8, 2700 }, + [26] = { 17.4, 53.6, 8, 2700 }, + [27] = { 78.5, 53.1, 8, 2700 }, + [28] = { 18.5, 53, 8, 2700 }, + [29] = { 61.1, 52.9, 8, 2700 }, + [30] = { 56.7, 52.5, 8, 2700 }, + [31] = { 86.2, 51.9, 8, 2700 }, + [32] = { 26.3, 51.5, 8, 2700 }, + [33] = { 53.8, 51, 8, 2700 }, + [34] = { 59.6, 51, 8, 2700 }, + [35] = { 31.5, 49.2, 8, 2700 }, + [36] = { 56.8, 49.1, 8, 2700 }, + [37] = { 32.3, 48.1, 8, 2700 }, + [38] = { 34.1, 47.8, 8, 2700 }, + [39] = { 80.3, 47.2, 8, 2700 }, + [40] = { 41.1, 46.2, 8, 2700 }, + [41] = { 33.3, 45.9, 8, 2700 }, + [42] = { 83.6, 44.8, 8, 2700 }, + [43] = { 44.2, 44.8, 8, 2700 }, + [44] = { 82.7, 43.9, 8, 2700 }, + [45] = { 30.3, 43.6, 8, 2700 }, + [46] = { 44.5, 43.2, 8, 2700 }, + [47] = { 30.1, 42.7, 8, 2700 }, + [48] = { 45.2, 41.9, 8, 2700 }, + [49] = { 79.6, 41.5, 8, 2700 }, + [50] = { 42.9, 41.1, 8, 2700 }, + [51] = { 50.4, 40.7, 8, 2700 }, + [52] = { 55.2, 40.4, 8, 2700 }, + [53] = { 44.5, 40.2, 8, 2700 }, + [54] = { 85, 40, 8, 2700 }, + [55] = { 14.2, 39.9, 8, 2700 }, + [56] = { 33.8, 39.8, 8, 2700 }, + [57] = { 25.1, 39.6, 8, 2700 }, + [58] = { 30, 39.5, 8, 2700 }, + [59] = { 14.5, 39.2, 8, 2700 }, + [60] = { 33.4, 39.1, 8, 2700 }, + [61] = { 20.2, 38.5, 8, 2700 }, + [62] = { 35.7, 38.3, 8, 2700 }, + [63] = { 10.6, 38.3, 8, 2700 }, + [64] = { 48, 38.2, 8, 2700 }, + [65] = { 25.7, 38.2, 8, 2700 }, + [66] = { 28.1, 38.1, 8, 2700 }, + [67] = { 52.7, 37.9, 8, 2700 }, + [68] = { 29.3, 37.9, 8, 2700 }, + [69] = { 86.3, 37.8, 8, 2700 }, + [70] = { 49.6, 37.5, 8, 2700 }, + [71] = { 50.5, 37.1, 8, 2700 }, + [72] = { 40.7, 36.8, 8, 2700 }, + [73] = { 11.5, 36.6, 8, 2700 }, + [74] = { 50.6, 36.6, 8, 2700 }, + [75] = { 10, 36.5, 8, 2700 }, + [76] = { 30.5, 36.5, 8, 2700 }, + [77] = { 84.3, 36.5, 8, 2700 }, + [78] = { 78.2, 36.3, 8, 2700 }, + [79] = { 37.8, 36.2, 8, 2700 }, + [80] = { 47.5, 36, 8, 2700 }, + [81] = { 38.3, 36, 8, 2700 }, + [82] = { 85, 35.7, 8, 2700 }, + [83] = { 38.3, 35.4, 8, 2700 }, + [84] = { 40.5, 35.3, 8, 2700 }, + [85] = { 52.8, 35.3, 8, 2700 }, + [86] = { 35, 35.3, 8, 2700 }, + [87] = { 80, 35.1, 8, 2700 }, + [88] = { 55, 34.4, 8, 2700 }, + [89] = { 52.1, 34.3, 8, 2700 }, + [90] = { 31.4, 34.3, 8, 2700 }, + [91] = { 34.4, 34.2, 8, 2700 }, + [92] = { 58.7, 34, 8, 2700 }, + [93] = { 33.7, 33.2, 8, 2700 }, + [94] = { 86.8, 33, 8, 2700 }, + [95] = { 70.2, 32.6, 8, 2700 }, + [96] = { 87.5, 32.3, 8, 2700 }, + [97] = { 80.2, 32.2, 8, 2700 }, + [98] = { 72.8, 31.6, 8, 2700 }, + [99] = { 56.3, 31.6, 8, 2700 }, + [100] = { 54.9, 31.5, 8, 2700 }, + [101] = { 61.4, 31.3, 8, 2700 }, + [102] = { 59.8, 31.2, 8, 2700 }, + [103] = { 63.7, 31.1, 8, 2700 }, + [104] = { 35.9, 31, 8, 2700 }, + [105] = { 66.6, 30.3, 8, 2700 }, + [106] = { 76.2, 29.9, 8, 2700 }, + [107] = { 56.5, 29.4, 8, 2700 }, + [108] = { 63.6, 28.5, 8, 2700 }, + [109] = { 76.9, 27.7, 8, 2700 }, + [110] = { 58.2, 27.7, 8, 2700 }, + [111] = { 63.7, 25.6, 8, 2700 }, + [112] = { 79.6, 24.9, 8, 2700 }, + [113] = { 68.5, 23.5, 8, 2700 }, + [114] = { 79.7, 23.2, 8, 2700 }, + [115] = { 82.8, 22.8, 8, 2700 }, + [116] = { 68.8, 20.4, 8, 2700 }, + [117] = { 66.6, 19.8, 8, 2700 }, + [118] = { 78.3, 18.1, 8, 2700 }, + [119] = { 72.1, 17.7, 8, 2700 }, + [120] = { 70.2, 16, 8, 2700 }, + [121] = { 72.4, 14.5, 8, 2700 }, + [122] = { 74.2, 14.4, 8, 2700 }, + [123] = { 76.6, 10.2, 8, 2700 }, + [124] = { 47.5, 33.3, 490, 2700 }, + [125] = { 60.2, 32.2, 490, 2700 }, + [126] = { 60.1, 30.2, 490, 2700 }, + [127] = { 51.4, 28.8, 490, 2700 }, + [128] = { 54.4, 24.6, 490, 2700 }, + [129] = { 59.6, 24.4, 490, 2700 }, + [130] = { 60.5, 24.3, 490, 2700 }, + [131] = { 48.5, 23.3, 490, 2700 }, + [132] = { 63.7, 22.6, 490, 2700 }, + [133] = { 42.4, 19.7, 490, 2700 }, + [134] = { 52.7, 19.2, 490, 2700 }, + [135] = { 48.1, 18.7, 490, 2700 }, + [136] = { 42.9, 18.6, 490, 2700 }, + [137] = { 47, 15.8, 490, 2700 }, + [138] = { 45.6, 15.7, 490, 2700 }, + [139] = { 23.6, 84.5, 2100, 604800 }, + [140] = { 40, 68.8, 2100, 604800 }, + [141] = { 15.2, 62.5, 2100, 604800 }, + [142] = { 55.3, 89, 5602, 2700 }, + [143] = { 48.3, 85, 5602, 2700 }, + [144] = { 50.4, 84.2, 5602, 2700 }, + [145] = { 63.6, 79.9, 5602, 2700 }, + [146] = { 55.7, 79.9, 5602, 2700 }, + [147] = { 52.7, 75.8, 5602, 2700 }, + [148] = { 62, 75.1, 5602, 2700 }, + [149] = { 57.8, 70.1, 5602, 2700 }, + [150] = { 56.9, 48, 5602, 2700 }, + [151] = { 44.4, 35.4, 5602, 2700 }, + [152] = { 54.6, 24.1, 5602, 2700 }, + [153] = { 62.3, 18.4, 5602, 2700 }, + }, + }, + [142144] = { + ["coords"] = { + [1] = { 79.7, 22.5, 45, 2700 }, + [2] = { 81.8, 20.6, 45, 2700 }, + [3] = { 82.5, 20.6, 45, 2700 }, + [4] = { 79.7, 19.9, 45, 2700 }, + [5] = { 56.1, 83.4, 47, 2700 }, + [6] = { 58.1, 81.6, 47, 2700 }, + [7] = { 58.7, 81.6, 47, 2700 }, + [8] = { 56.1, 81, 47, 2700 }, + [9] = { 55.8, 68.1, 47, 2700 }, + [10] = { 58.1, 44.8, 47, 2700 }, + [11] = { 55.4, 44.4, 47, 2700 }, + [12] = { 59.7, 44.2, 47, 2700 }, + [13] = { 54.9, 44.2, 47, 2700 }, + [14] = { 58.3, 44.1, 47, 2700 }, + [15] = { 60.1, 43.9, 47, 2700 }, + [16] = { 55.7, 43.4, 47, 2700 }, + [17] = { 54.8, 43.4, 47, 2700 }, + [18] = { 57.2, 43.2, 47, 2700 }, + [19] = { 55.8, 43, 47, 2700 }, + [20] = { 57.9, 43, 47, 2700 }, + [21] = { 57.4, 43, 47, 2700 }, + [22] = { 56.4, 42.7, 47, 2700 }, + [23] = { 57.9, 42.6, 47, 2700 }, + [24] = { 57.4, 42.6, 47, 2700 }, + [25] = { 56.7, 42.6, 47, 2700 }, + [26] = { 56.5, 42.4, 47, 2700 }, + [27] = { 57.8, 42.4, 47, 2700 }, + [28] = { 58.2, 42.3, 47, 2700 }, + [29] = { 54.7, 42.2, 47, 2700 }, + [30] = { 54.5, 42.1, 47, 2700 }, + [31] = { 59.2, 42, 47, 2700 }, + [32] = { 56.1, 41.9, 47, 2700 }, + [33] = { 55.9, 41.3, 47, 2700 }, + [34] = { 55.4, 40.8, 47, 2700 }, + [35] = { 54.6, 40.1, 47, 2700 }, + [36] = { 57.5, 39.8, 47, 2700 }, + [37] = { 54.4, 39.8, 47, 2700 }, + [38] = { 29.9, 65.6, 405, 2700 }, + [39] = { 28.4, 63.6, 405, 2700 }, + [40] = { 32.2, 63.3, 405, 2700 }, + [41] = { 30.5, 63.2, 405, 2700 }, + [42] = { 32.3, 62.7, 405, 2700 }, + [43] = { 30.1, 60.8, 405, 2700 }, + [44] = { 30.2, 60.6, 405, 2700 }, + [45] = { 29.3, 58.4, 405, 2700 }, + [46] = { 27.5, 57.6, 405, 2700 }, + [47] = { 28.1, 55.1, 405, 2700 }, + [48] = { 28.9, 54.8, 405, 2700 }, + [49] = { 29.1, 54.1, 405, 2700 }, + [50] = { 66.9, 74.8, 408, 2700 }, + [51] = { 66.2, 74.4, 408, 2700 }, + [52] = { 69.7, 73.3, 408, 2700 }, + [53] = { 66.9, 70.7, 408, 2700 }, + [54] = { 39, 76.4, 2100, 2700 }, + [55] = { 30.4, 65.3, 2100, 2700 }, + [56] = { 51.1, 63.3, 2100, 2700 }, + [57] = { 41.7, 63.1, 2100, 2700 }, + [58] = { 51.7, 60.2, 2100, 2700 }, + [59] = { 40, 50, 2100, 2700 }, + [60] = { 40.3, 48.9, 2100, 2700 }, + [61] = { 35.5, 37.1, 2100, 2700 }, + [62] = { 25.8, 32.7, 2100, 2700 }, + [63] = { 28.7, 18.8, 2100, 2700 }, + [64] = { 33.4, 17.2, 2100, 2700 }, + [65] = { 34.5, 13.3, 2100, 2700 }, + [66] = { 35.7, 95.4, 2100, 604800 }, + [67] = { 11.2, 60.4, 2100, 604800 }, + [68] = { 40.8, 41.2, 2100, 604800 }, + [69] = { 47.1, 34.3, 2100, 604800 }, + [70] = { 28.4, 33.2, 2100, 604800 }, + [71] = { 18.9, 28.2, 2100, 604800 }, + [72] = { 25.9, 22.7, 2100, 604800 }, + [73] = { 36.8, 19.4, 2100, 604800 }, + }, + }, + [142145] = { + ["coords"] = { + [1] = { 62.6, 57.6, 4, 2700 }, + [2] = { 62.9, 55.8, 4, 2700 }, + [3] = { 62.9, 54.7, 4, 2700 }, + [4] = { 59.6, 54.6, 4, 2700 }, + [5] = { 53.9, 53.9, 4, 2700 }, + [6] = { 61.5, 53, 4, 2700 }, + [7] = { 61.4, 52, 4, 2700 }, + [8] = { 55.7, 51.3, 4, 2700 }, + [9] = { 55.5, 51, 4, 2700 }, + [10] = { 55.2, 50.5, 4, 2700 }, + [11] = { 59.7, 50.4, 4, 2700 }, + [12] = { 48.2, 50.1, 4, 2700 }, + [13] = { 46, 42.6, 4, 2700 }, + [14] = { 48.1, 41.6, 4, 2700 }, + [15] = { 41.9, 39.6, 4, 2700 }, + [16] = { 53.2, 38.5, 4, 2700 }, + [17] = { 45.8, 37.5, 4, 2700 }, + [18] = { 40.1, 33.4, 4, 2700 }, + [19] = { 63.9, 32, 4, 2700 }, + [20] = { 44.3, 31.2, 4, 2700 }, + [21] = { 50.9, 29, 4, 2700 }, + [22] = { 59.9, 26.5, 4, 2700 }, + [23] = { 56.6, 22.4, 4, 2700 }, + [24] = { 45, 19.9, 4, 2700 }, + [25] = { 49.2, 15.6, 4, 2700 }, + [26] = { 55.3, 88, 148, 2700 }, + [27] = { 56.4, 84.8, 148, 2700 }, + [28] = { 83.4, 79, 331, 2700 }, + [29] = { 87.7, 78.3, 331, 2700 }, + [30] = { 84, 77.4, 331, 2700 }, + [31] = { 89.9, 77.2, 331, 2700 }, + [32] = { 85, 70.3, 331, 2700 }, + [33] = { 80.9, 69.2, 331, 2700 }, + [34] = { 81.2, 65.8, 331, 2700 }, + [35] = { 82.3, 64.8, 331, 2700 }, + [36] = { 48.3, 90.6, 361, 2700 }, + [37] = { 49, 88.6, 361, 2700 }, + [38] = { 54.4, 87.5, 361, 2700 }, + [39] = { 44.7, 85.1, 361, 2700 }, + [40] = { 46.1, 85, 361, 2700 }, + [41] = { 45, 82.4, 361, 2700 }, + [42] = { 42, 82.2, 361, 2700 }, + [43] = { 44, 81.4, 361, 2700 }, + [44] = { 42, 80.2, 361, 2700 }, + [45] = { 41.9, 77.8, 361, 2700 }, + [46] = { 42.4, 74.9, 361, 2700 }, + [47] = { 38.8, 73.1, 361, 2700 }, + [48] = { 40.3, 72.2, 361, 2700 }, + [49] = { 36.8, 69.2, 361, 2700 }, + [50] = { 40.4, 69, 361, 2700 }, + [51] = { 41.6, 65.3, 361, 2700 }, + [52] = { 43.2, 65, 361, 2700 }, + [53] = { 38, 60.3, 361, 2700 }, + [54] = { 38.8, 59.4, 361, 2700 }, + [55] = { 38.6, 59.4, 361, 2700 }, + [56] = { 40.1, 58.8, 361, 2700 }, + [57] = { 40.2, 58.6, 361, 2700 }, + [58] = { 38.9, 52.9, 361, 2700 }, + [59] = { 37.8, 52.3, 361, 2700 }, + [60] = { 38.8, 49.2, 361, 2700 }, + [61] = { 37.9, 49.2, 361, 2700 }, + [62] = { 38.8, 49.1, 361, 2700 }, + [63] = { 38.5, 46.1, 361, 2700 }, + [64] = { 39.1, 45, 361, 2700 }, + [65] = { 39.1, 44.8, 361, 2700 }, + [66] = { 37.7, 42.6, 361, 2700 }, + [67] = { 38.3, 40.7, 361, 2700 }, + [68] = { 38.4, 38.6, 361, 2700 }, + [69] = { 39.3, 36.1, 361, 2700 }, + [70] = { 39.5, 31.7, 361, 2700 }, + [71] = { 39.8, 29.5, 361, 2700 }, + [72] = { 40.4, 25, 361, 2700 }, + [73] = { 41.1, 23, 361, 2700 }, + [74] = { 43, 21.8, 361, 2700 }, + [75] = { 45.3, 21.4, 361, 2700 }, + [76] = { 47.3, 18.9, 361, 2700 }, + [77] = { 58.8, 17.3, 361, 2700 }, + [78] = { 58.7, 17.1, 361, 2700 }, + [79] = { 46.8, 17, 361, 2700 }, + [80] = { 64.5, 16, 361, 2700 }, + [81] = { 47.2, 16, 361, 2700 }, + [82] = { 57.5, 15.2, 361, 2700 }, + [83] = { 49.2, 15.2, 361, 2700 }, + [84] = { 62.2, 14.7, 361, 2700 }, + [85] = { 64.5, 13.1, 361, 2700 }, + [86] = { 49.5, 12.3, 361, 2700 }, + [87] = { 65.1, 11.9, 361, 2700 }, + [88] = { 55.2, 11.7, 361, 2700 }, + [89] = { 53.8, 11.5, 361, 2700 }, + [90] = { 55.9, 9.2, 361, 2700 }, + [91] = { 52.6, 83.2, 405, 2700 }, + [92] = { 46.7, 82.7, 405, 2700 }, + [93] = { 53.7, 80.1, 405, 2700 }, + [94] = { 54.2, 74.1, 405, 2700 }, + [95] = { 53.9, 73.9, 405, 2700 }, + [96] = { 49.8, 73.9, 405, 2700 }, + [97] = { 50.3, 73.7, 405, 2700 }, + [98] = { 56.7, 73.5, 405, 2700 }, + [99] = { 50.3, 72.9, 405, 2700 }, + [100] = { 50.3, 72.7, 405, 2700 }, + [101] = { 50.3, 70.3, 405, 2700 }, + [102] = { 51.4, 68.3, 405, 2700 }, + [103] = { 46.7, 83.1, 616, 2700 }, + [104] = { 43, 77.5, 616, 2700 }, + [105] = { 38.7, 73.6, 616, 2700 }, + [106] = { 42.8, 70.2, 616, 2700 }, + [107] = { 23.2, 54, 616, 2700 }, + [108] = { 18.6, 48.1, 616, 2700 }, + [109] = { 59.8, 45.6, 616, 2700 }, + [110] = { 21.9, 44.5, 616, 2700 }, + [111] = { 53, 42.7, 616, 2700 }, + [112] = { 47.5, 41.4, 616, 2700 }, + [113] = { 46.4, 35.1, 616, 2700 }, + [114] = { 65, 32.3, 616, 2700 }, + [115] = { 61.8, 25.2, 616, 2700 }, + [116] = { 47.3, 24.1, 616, 2700 }, + [117] = { 56.2, 23, 616, 2700 }, + [118] = { 24.7, 42.5, 618, 2700 }, + [119] = { 24.7, 40.2, 618, 2700 }, + [120] = { 25.2, 39.2, 618, 2700 }, + }, + }, + [142151] = { + ["coords"] = { + [1] = { 13.6, 38.2, 11, 2 }, + }, + ["fac"] = "A", + }, + [142175] = { + ["coords"] = { + [1] = { 21.4, 37.1, 1, 180 }, + [2] = { 48.6, 76.6, 721, 180 }, + }, + ["fac"] = "AH", + }, + [142176] = { + ["coords"] = { + [1] = { 21.4, 37.1, 1, 180 }, + [2] = { 48.6, 76.6, 721, 180 }, + }, + }, + [142179] = { + ["coords"] = { + [1] = { 26.3, 52.3, 357, 2 }, + }, + ["fac"] = "A", + }, + [142181] = { + ["coords"] = { + [1] = { 72.2, 46.8, 440, 2 }, + [2] = { 72.1, 46.8, 440, 2 }, + [3] = { 72.1, 46.7, 440, 2 }, + [4] = { 0.6, 38.7, 5121, 2 }, + [5] = { 0.5, 38.6, 5121, 2 }, + [6] = { 0.6, 38.5, 5121, 2 }, + [7] = { 0.5, 38.4, 5121, 2 }, + [8] = { 0.6, 38.4, 5121, 2 }, + }, + }, + [142184] = { + ["coords"] = { + [1] = { 76.5, 45.7, 440, 180 }, + [2] = { 9.8, 36.3, 5121, 180 }, + }, + }, + [142185] = { + ["coords"] = { + [1] = { 38.5, 15.8, 357, 2 }, + }, + ["fac"] = "A", + }, + [142186] = { + ["coords"] = { + [1] = { 37.8, 12.2, 357, 2 }, + }, + ["fac"] = "A", + }, + [142187] = { + ["coords"] = { + [1] = { 39.9, 9.4, 357, 2 }, + }, + ["fac"] = "A", + }, + [142188] = { + ["coords"] = { + [1] = { 40.5, 12.7, 357, 2 }, + }, + ["fac"] = "A", + }, + [142189] = { + ["coords"] = { + [1] = { 55.6, 92.3, 440, 900 }, + }, + }, + [142191] = { + ["coords"] = { + [1] = { 56.6, 44, 47, 300 }, + [2] = { 57.5, 43.4, 47, 300 }, + [3] = { 60, 42.5, 47, 300 }, + [4] = { 60, 41.2, 47, 300 }, + [5] = { 45.6, 41.1, 47, 300 }, + [6] = { 57.3, 41.1, 47, 300 }, + [7] = { 47.2, 40.3, 47, 300 }, + [8] = { 57.8, 38.6, 47, 300 }, + [9] = { 45.8, 38.3, 47, 300 }, + [10] = { 47.4, 37.9, 47, 300 }, + }, + }, + [142194] = { + ["coords"] = { + [1] = { 55.6, 92.3, 440, 25 }, + }, + }, + [142195] = { + ["coords"] = { + [1] = { 71.6, 55.9, 357, 2 }, + }, + ["fac"] = "H", + }, + [142342] = { + ["coords"] = { + [1] = { 75.6, 50.2, 406, 900 }, + }, + }, + [142343] = { + ["coords"] = { + [1] = { 37.6, 81.4, 440, 2 }, + }, + }, + [142344] = { + ["coords"] = { + [1] = { 6.5, 98.8, 721, 300 }, + [2] = { 11.3, 91.7, 721, 300 }, + [3] = { 48.9, 89.5, 721, 300 }, + [4] = { 51.1, 89.4, 721, 300 }, + [5] = { 3.7, 85.5, 721, 300 }, + [6] = { 5.9, 84.6, 721, 300 }, + [7] = { 57.4, 84.4, 721, 300 }, + [8] = { 6.5, 81.4, 721, 300 }, + [9] = { 11.8, 78.8, 721, 300 }, + [10] = { 8.1, 77.3, 721, 300 }, + [11] = { 17.3, 76.5, 721, 300 }, + [12] = { 24.1, 75, 721, 300 }, + [13] = { 23.7, 69, 721, 300 }, + [14] = { 36.9, 65.7, 721, 300 }, + [15] = { 7.2, 63.9, 721, 300 }, + [16] = { 26.4, 62.8, 721, 300 }, + [17] = { 29, 61.8, 721, 300 }, + [18] = { 3.6, 61.4, 721, 300 }, + [19] = { 6, 61.2, 721, 300 }, + [20] = { 58.7, 57.3, 721, 300 }, + [21] = { 2.7, 52.3, 721, 300 }, + [22] = { 33.4, 50.7, 721, 300 }, + [23] = { 38.5, 50.6, 721, 300 }, + [24] = { 59.5, 47.8, 721, 300 }, + [25] = { 45.8, 35.1, 721, 300 }, + }, + }, + [142345] = { + ["coords"] = { + [1] = { 22, 32.6, 1, 180 }, + [2] = { 21.6, 32.5, 1, 180 }, + [3] = { 54, 37.1, 721, 180 }, + [4] = { 51.1, 36.7, 721, 180 }, + }, + }, + [142475] = { + ["coords"] = { + [1] = { 43.8, 74.6, 721, 3600 }, + [2] = { 47.6, 74.3, 721, 3600 }, + [3] = { 50.7, 72, 721, 3600 }, + [4] = { 47.1, 71.3, 721, 3600 }, + }, + }, + [142476] = { + ["coords"] = { + [1] = { 0.5, 73, 721, 3600 }, + [2] = { 0.4, 73, 721, 3600 }, + [3] = { 0.5, 72.7, 721, 3600 }, + [4] = { 0.4, 72.7, 721, 3600 }, + }, + }, + [142487] = { + ["coords"] = { + [1] = { 42.7, 66, 721, 3600 }, + }, + }, + [142488] = { + ["coords"] = { + [1] = { 38, 9, 1337, 3600 }, + }, + }, + [142689] = { + ["coords"] = { + [1] = { 53.5, 30.7, 3, 900 }, + [2] = { 24.8, 97.5, 5602, 900 }, + }, + }, + [142690] = { + ["coords"] = { + [1] = { 67, 23.1, 3, 900 }, + [2] = { 31.1, 94, 5602, 900 }, + }, + }, + [142702] = { + ["coords"] = { + [1] = { 23.5, 58.8, 47, 10 }, + }, + ["fac"] = "H", + }, + [142703] = { + ["coords"] = { + [1] = { 23.2, 58.6, 47, 7200 }, + }, + ["fac"] = "H", + }, + [142704] = { + ["coords"] = { + [1] = { 23.2, 58.6, 47, 7200 }, + }, + ["fac"] = "H", + }, + [142705] = { + ["coords"] = { + [1] = { 23.5, 58.8, 47, 7200 }, + }, + ["fac"] = "H", + }, + [142706] = { + ["coords"] = { + [1] = { 23.5, 58.8, 47, 7200 }, + }, + ["fac"] = "H", + }, + [142707] = { + ["coords"] = { + [1] = { 23.2, 58.7, 47, 7200 }, + }, + ["fac"] = "H", + }, + [142712] = { + ["coords"] = { + [1] = { 31.6, 57.8, 47, 7200 }, + }, + ["fac"] = "H", + }, + [142713] = { + ["coords"] = { + [1] = { 23, 57.7, 47, 7200 }, + }, + ["fac"] = "H", + }, + [142714] = { + ["coords"] = { + [1] = { 23, 57.7, 47, 7200 }, + }, + ["fac"] = "H", + }, + [142715] = { + ["coords"] = { + [1] = { 55.5, 27.2, 1176, 7200 }, + }, + }, + [143980] = { + ["coords"] = { + [1] = { 80.6, 34.3, 357, 2 }, + [2] = { 75.1, 29.7, 357, 2 }, + [3] = { 74.5, 27.9, 357, 2 }, + }, + ["fac"] = "H", + }, + [143981] = "_", + [143982] = "_", + [143983] = { + ["coords"] = { + [1] = { 45.1, 58.7, 17, 900 }, + [2] = { 50.4, 74, 148, 180 }, + [3] = { 41.5, 33, 215, 300 }, + [4] = { 39, 28.9, 215, 300 }, + [5] = { 39.2, 24.4, 215, 300 }, + [6] = { 44.6, 22.7, 215, 300 }, + [7] = { 35.1, 21.8, 215, 300 }, + [8] = { 51.1, 61.3, 357, 300 }, + [9] = { 34.8, 53, 361, 180 }, + [10] = { 45.9, 51.1, 400, 180 }, + [11] = { 88.7, 49.1, 405, 300 }, + [12] = { 50.6, 62.7, 406, 900 }, + [13] = { 57.7, 79.6, 1638, 300 }, + [14] = { 45.2, 59.4, 1638, 300 }, + [15] = { 46.3, 37, 1638, 300 }, + [16] = { 72.9, 28.9, 1638, 300 }, + [17] = { 26.1, 24.6, 1638, 300 }, + [18] = { 35.3, 92.3, 3478, 25 }, + }, + ["fac"] = "AH", + }, + [143984] = "_", + [143985] = "_", + [143986] = "_", + [143987] = "_", + [143988] = "_", + [143989] = "_", + [143990] = "_", + [144011] = "_", + [144050] = { + ["coords"] = { + [1] = { 80.5, 36, 357, 900 }, + [2] = { 80.4, 35.9, 357, 900 }, + [3] = { 80.9, 35.5, 357, 900 }, + [4] = { 81.6, 35.3, 357, 900 }, + [5] = { 77.5, 35.2, 357, 900 }, + [6] = { 77.6, 35.2, 357, 900 }, + [7] = { 81.6, 35.1, 357, 900 }, + [8] = { 79.3, 35, 357, 900 }, + [9] = { 79.2, 35, 357, 900 }, + [10] = { 81.6, 34.9, 357, 900 }, + [11] = { 79.2, 34.9, 357, 900 }, + [12] = { 76.3, 34.4, 357, 900 }, + [13] = { 76.2, 34.4, 357, 900 }, + [14] = { 80.5, 34.2, 357, 900 }, + [15] = { 78.5, 34.1, 357, 900 }, + [16] = { 78.4, 34.1, 357, 900 }, + [17] = { 78.5, 34, 357, 900 }, + [18] = { 78.6, 34, 357, 900 }, + [19] = { 76.7, 33.9, 357, 900 }, + [20] = { 76.6, 33.8, 357, 900 }, + [21] = { 76.7, 33.8, 357, 900 }, + [22] = { 75.3, 33.7, 357, 900 }, + [23] = { 75.2, 33.7, 357, 900 }, + [24] = { 75.3, 33.6, 357, 900 }, + [25] = { 77.3, 33.4, 357, 900 }, + [26] = { 77, 33.3, 357, 900 }, + [27] = { 76.4, 33.1, 357, 900 }, + [28] = { 76.5, 33, 357, 900 }, + [29] = { 76.3, 32.9, 357, 900 }, + [30] = { 75.1, 32.5, 357, 900 }, + [31] = { 75.1, 32.4, 357, 900 }, + [32] = { 75.2, 32.4, 357, 900 }, + [33] = { 75.1, 32.3, 357, 900 }, + [34] = { 75.5, 30.5, 357, 900 }, + [35] = { 75.5, 30.4, 357, 900 }, + [36] = { 74.7, 30.3, 357, 900 }, + [37] = { 74.5, 30.3, 357, 900 }, + [38] = { 74.5, 30.2, 357, 900 }, + [39] = { 74.6, 30.2, 357, 900 }, + [40] = { 75.9, 29.1, 357, 900 }, + [41] = { 76, 29.1, 357, 900 }, + [42] = { 74.3, 29, 357, 900 }, + [43] = { 76, 28.9, 357, 900 }, + [44] = { 74.3, 28.9, 357, 900 }, + [45] = { 75.4, 28.4, 357, 900 }, + [46] = { 75.4, 28.3, 357, 900 }, + [47] = { 75.3, 28.2, 357, 900 }, + [48] = { 75.4, 28.1, 357, 900 }, + [49] = { 74.8, 26.7, 357, 900 }, + [50] = { 74.8, 26.6, 357, 900 }, + [51] = { 74.8, 26.5, 357, 900 }, + [52] = { 75.3, 26.4, 357, 900 }, + [53] = { 75.5, 26.4, 357, 900 }, + [54] = { 75.4, 26.3, 357, 900 }, + [55] = { 75.1, 25.2, 357, 900 }, + [56] = { 75, 25.1, 357, 900 }, + [57] = { 75, 25, 357, 900 }, + [58] = { 74.9, 25, 357, 900 }, + }, + }, + [144053] = { + ["coords"] = { + [1] = { 56, 71.2, 440, 2 }, + }, + }, + [144063] = { + ["coords"] = { + [1] = { 38.8, 13.2, 357, 2 }, + }, + ["fac"] = "A", + }, + [144065] = { + ["coords"] = { + [1] = { 77.5, 78.4, 400, 0 }, + [2] = { 76.7, 70.4, 721, 0 }, + [3] = { 77.6, 69, 721, 0 }, + [4] = { 75.5, 63.5, 721, 0 }, + [5] = { 76.5, 62.9, 721, 0 }, + }, + }, + [144111] = { + ["coords"] = { + [1] = { 69.9, 7.9, 5138, 43200 }, + }, + }, + [144112] = { + ["coords"] = { + [1] = { 23.7, 28.8, 1, 300 }, + [2] = { 23.8, 28.7, 1, 300 }, + [3] = { 37.6, 72.1, 14, 300 }, + [4] = { 59, 26, 14, 300 }, + [5] = { 62.2, 39.2, 17, 900 }, + [6] = { 64.8, 34.7, 17, 300 }, + [7] = { 83.2, 54.7, 400, 25 }, + [8] = { 52.3, 27.8, 440, 900 }, + [9] = { 58.1, 22, 440, 300 }, + [10] = { 61.3, 38.6, 618, 900 }, + [11] = { 68.7, 4.5, 721, 300 }, + [12] = { 70, 3.2, 721, 300 }, + [13] = { 42.2, 71.5, 721, 3600 }, + [14] = { 72.3, 49.1, 1537, 900 }, + [15] = { 42.1, 77.2, 5121, 300 }, + [16] = { 48.1, 66.9, 5536, 300 }, + }, + ["fac"] = "AH", + }, + [144125] = "_", + [144126] = "_", + [144127] = "_", + [144128] = "_", + [144129] = "_", + [144130] = "_", + [144131] = { + ["coords"] = { + [1] = { 64.1, 19.2, 4, 900 }, + [2] = { 73.7, 46.1, 10, 3600 }, + [3] = { 35.7, 62.8, 11, 900 }, + [4] = { 49.1, 61.2, 11, 300 }, + [5] = { 10.9, 59.7, 11, 7200 }, + [6] = { 42.9, 65.5, 12, 900 }, + [7] = { 48, 41.9, 12, 25 }, + [8] = { 66, 45.3, 15, 900 }, + [9] = { 53.1, 53.3, 40, 3600 }, + [10] = { 26.4, 46.5, 44, 7200 }, + [11] = { 67.6, 82.7, 130, 300 }, + [12] = { 80.9, 58.5, 139, 900 }, + [13] = { 50.4, 58.7, 267, 7200 }, + [14] = { 42.6, 53.4, 267, 300 }, + [15] = { 14.2, 49.2, 267, 300 }, + [16] = { 61.9, 44.2, 409, 300 }, + [17] = { 57.7, 56.4, 876, 300 }, + [18] = { 52.8, 51.9, 876, 300 }, + [19] = { 50.6, 89.7, 1519, 180 }, + [20] = { 61.6, 76.1, 1519, 900 }, + [21] = { 74.5, 55.4, 1519, 900 }, + [22] = { 40.2, 37.8, 4012, 900 }, + [23] = { 58.4, 69.5, 5179, 300 }, + [24] = { 96.8, 15.6, 5179, 300 }, + [25] = { 72, 11.9, 5179, 300 }, + [26] = { 63.3, 72.3, 5581, 300 }, + [27] = { 48.3, 56.9, 5581, 300 }, + [28] = { 6.5, 26, 5602, 300 }, + }, + ["fac"] = "AH", + }, + [144132] = { + ["coords"] = { + [1] = { 34.5, 46.6, 38, 7200 }, + [2] = { 49.7, 64.2, 5536, 300 }, + [3] = { 16.2, 68.1, 5602, 7200 }, + }, + }, + [144133] = { + ["coords"] = { + [1] = { 57.6, 26.4, 14, 300 }, + [2] = { 33.6, 10.8, 17, 300 }, + [3] = { 34.3, 46.3, 38, 7200 }, + [4] = { 78.6, 63.7, 406, 300 }, + [5] = { 67.1, 22.5, 440, 300 }, + [6] = { 49.7, 73.1, 1519, 300 }, + [7] = { 59, 23.9, 1537, 300 }, + [8] = { 45.7, 40.1, 1637, 300 }, + [9] = { 53.8, 54.1, 2040, 300 }, + [10] = { 56.5, 38.6, 5179, 300 }, + [11] = { 63.4, 27.8, 5225, 300 }, + [12] = { 49.8, 64, 5536, 300 }, + [13] = { 16.1, 68, 5602, 7200 }, + }, + }, + [144179] = "_", + [144570] = "_", + [146084] = { + ["coords"] = { + [1] = { 34.9, 21.4, 1176, 7200 }, + }, + }, + [146085] = { + ["coords"] = { + [1] = { 76.1, 63.2, 721, 3600 }, + }, + }, + [146086] = { + ["coords"] = { + [1] = { 77.6, 70.3, 721, 3600 }, + }, + }, + [146088] = { + ["coords"] = { + [1] = { 70.2, 36.3, 718, 3600 }, + }, + }, + [146089] = { + ["coords"] = { + [1] = { 94.3, 41.8, 718, 3600 }, + }, + }, + [146090] = { + ["coords"] = { + [1] = { 88, 65.7, 718, 3600 }, + }, + }, + [146091] = { + ["coords"] = { + [1] = { 32.1, 44.8, 718, 3600 }, + }, + }, + [147036] = { + ["coords"] = { + [1] = { 24.9, 17.5, 38, 7200 }, + [2] = { 16.7, 46.8, 47, 7200 }, + [3] = { 11.3, 53.2, 5602, 7200 }, + }, + }, + [147037] = { + ["coords"] = { + [1] = { 24.9, 17.3, 38, 7200 }, + [2] = { 16.6, 46.7, 47, 7200 }, + [3] = { 11.3, 53.1, 5602, 7200 }, + }, + }, + [147038] = { + ["coords"] = { + [1] = { 24.9, 17.5, 38, 7200 }, + [2] = { 16.7, 46.8, 47, 7200 }, + [3] = { 11.3, 53.2, 5602, 7200 }, + }, + }, + [147039] = { + ["coords"] = { + [1] = { 24.9, 17.5, 38, 7200 }, + [2] = { 16.6, 46.7, 47, 7200 }, + [3] = { 11.3, 53.1, 5602, 7200 }, + }, + }, + [147040] = { + ["coords"] = { + [1] = { 24.9, 17.4, 38, 7200 }, + [2] = { 16.6, 46.7, 47, 7200 }, + [3] = { 11.3, 53.1, 5602, 7200 }, + }, + }, + [147041] = { + ["coords"] = { + [1] = { 24.8, 17.3, 38, 7200 }, + [2] = { 16.6, 46.6, 47, 7200 }, + [3] = { 11.3, 53.1, 5602, 7200 }, + }, + }, + [147042] = { + ["coords"] = { + [1] = { 24.8, 17.3, 38, 7200 }, + [2] = { 16.6, 46.7, 47, 7200 }, + [3] = { 11.2, 53.1, 5602, 7200 }, + }, + }, + [147043] = { + ["coords"] = { + [1] = { 85.8, 49.2, 1, 900 }, + [2] = { 6.6, 72.2, 5602, 900 }, + }, + }, + [147044] = { + ["coords"] = { + [1] = { 85.9, 49.1, 1, 900 }, + [2] = { 6.6, 72.1, 5602, 900 }, + }, + }, + [147045] = { + ["coords"] = { + [1] = { 85.9, 49.1, 1, 900 }, + [2] = { 6.6, 72.1, 5602, 900 }, + }, + }, + [147046] = { + ["coords"] = { + [1] = { 84.4, 40.6, 1, 900 }, + [2] = { 5.2, 64.4, 5602, 900 }, + }, + }, + [147047] = { + ["coords"] = { + [1] = { 84.4, 40.5, 1, 900 }, + [2] = { 5.2, 64.3, 5602, 900 }, + }, + }, + [147048] = { + ["coords"] = { + [1] = { 84.3, 40.6, 1, 900 }, + [2] = { 5.2, 64.4, 5602, 900 }, + }, + }, + [147049] = { + ["coords"] = { + [1] = { 84.4, 40.6, 1, 900 }, + [2] = { 5.2, 64.3, 5602, 900 }, + }, + }, + [147279] = { + ["coords"] = { + [1] = { 34.9, 49.5, 38, 7200 }, + [2] = { 16.4, 69.6, 5602, 7200 }, + }, + }, + [147435] = { + ["coords"] = { + [1] = { 86.7, 85.1, 139, 900 }, + [2] = { 47.2, 70.4, 4012, 900 }, + }, + }, + [147436] = { + ["coords"] = { + [1] = { 87, 85.3, 139, 900 }, + [2] = { 47.5, 70.6, 4012, 900 }, + }, + }, + [147437] = { + ["coords"] = { + [1] = { 87.5, 84.9, 139, 900 }, + [2] = { 48.2, 70.1, 4012, 900 }, + }, + }, + [147438] = { + ["coords"] = { + [1] = { 86.8, 85.4, 139, 900 }, + [2] = { 47.3, 70.7, 4012, 900 }, + }, + }, + [147439] = { + ["coords"] = { + [1] = { 86.9, 85, 139, 900 }, + [2] = { 47.4, 70.3, 4012, 900 }, + }, + }, + [147440] = { + ["coords"] = { + [1] = { 87.3, 86.4, 139, 900 }, + [2] = { 47.9, 71.9, 4012, 900 }, + }, + }, + [147441] = { + ["coords"] = { + [1] = { 87.2, 85.2, 139, 900 }, + [2] = { 47.8, 70.5, 4012, 900 }, + }, + }, + [147442] = { + ["coords"] = { + [1] = { 87, 85.7, 139, 900 }, + [2] = { 47.6, 71.1, 4012, 900 }, + }, + }, + [147443] = { + ["coords"] = { + [1] = { 86.4, 85.2, 139, 900 }, + [2] = { 46.9, 70.6, 4012, 900 }, + }, + }, + [147444] = { + ["coords"] = { + [1] = { 86.6, 84.7, 139, 900 }, + [2] = { 47.1, 69.9, 4012, 900 }, + }, + }, + [147445] = { + ["coords"] = { + [1] = { 87.1, 86.2, 139, 900 }, + [2] = { 47.7, 71.8, 4012, 900 }, + }, + }, + [147446] = { + ["coords"] = { + [1] = { 87.7, 85, 139, 900 }, + [2] = { 48.5, 70.3, 4012, 900 }, + }, + }, + [147447] = { + ["coords"] = { + [1] = { 88.1, 85.3, 139, 900 }, + [2] = { 48.9, 70.7, 4012, 900 }, + }, + }, + [147448] = { + ["coords"] = { + [1] = { 88.5, 85.6, 139, 900 }, + [2] = { 49.4, 71, 4012, 900 }, + }, + }, + [147449] = { + ["coords"] = { + [1] = { 88, 87, 139, 900 }, + [2] = { 48.8, 72.7, 4012, 900 }, + }, + }, + [147450] = { + ["coords"] = { + [1] = { 87.6, 86.7, 139, 900 }, + [2] = { 48.4, 72.3, 4012, 900 }, + }, + }, + [147516] = { + ["coords"] = { + [1] = { 64.8, 50.5, 51, 7200 }, + [2] = { 63.4, 50.2, 51, 7200 }, + }, + }, + [147517] = { + ["coords"] = { + [1] = { 66.5, 47.6, 51, 7200 }, + [2] = { 64.9, 46.9, 51, 7200 }, + }, + }, + [147787] = { + ["coords"] = { + [1] = { 47.3, 52.7, 1, 900 }, + [2] = { 60.4, 42.8, 409, 300 }, + }, + }, + [147792] = { + ["coords"] = { + [1] = { 35, 48.3, 38, 7200 }, + [2] = { 16.5, 69, 5602, 7200 }, + }, + }, + [147793] = { + ["coords"] = { + [1] = { 35.5, 48.8, 38, 7200 }, + [2] = { 16.7, 69.2, 5602, 7200 }, + }, + }, + [147824] = { + ["coords"] = { + [1] = { 67.3, 47.1, 1519, 900 }, + }, + }, + [148418] = { + ["coords"] = { + [1] = { 27.9, 38.9, 1477, 180 }, + }, + }, + [148419] = { + ["coords"] = { + [1] = { 27.9, 52.6, 1477, 180 }, + }, + }, + [148420] = { + ["coords"] = { + [1] = { 20, 52.6, 1477, 180 }, + }, + }, + [148421] = { + ["coords"] = { + [1] = { 20, 38.8, 1477, 180 }, + }, + }, + [148422] = { + ["coords"] = { + [1] = { 23.9, 45.7, 1477, 180 }, + }, + }, + [148498] = { + ["coords"] = { + [1] = { 41.3, 25.4, 51, 2 }, + }, + ["fac"] = "A", + }, + [148499] = { + ["coords"] = { + [1] = { 20.9, 76.1, 1, 5 }, + [2] = { 45.8, 2.2, 5581, 5 }, + }, + }, + [148504] = { + ["coords"] = { + [1] = { 53.8, 29.1, 440, 2 }, + }, + ["fac"] = "AH", + }, + [148506] = { + ["coords"] = { + [1] = { 29.1, 25.9, 51, 2 }, + [2] = { 99.7, 7.3, 5581, 2 }, + }, + }, + [148512] = { + ["coords"] = { + [1] = { 71.2, 81.8, 1477, 120 }, + }, + }, + [148513] = { + ["coords"] = { + [1] = { 42.2, 64.6, 16, 30 }, + [2] = { 36.3, 62.2, 16, 30 }, + [3] = { 37.4, 60.7, 16, 30 }, + [4] = { 36.4, 54.1, 16, 30 }, + [5] = { 38.3, 53.4, 16, 30 }, + }, + }, + [148514] = { + ["coords"] = { + [1] = { 40, 64.2, 16, 30 }, + [2] = { 35.7, 56.5, 16, 30 }, + [3] = { 34.7, 55.6, 16, 30 }, + [4] = { 37.9, 47.7, 16, 30 }, + [5] = { 39.8, 45.9, 16, 30 }, + }, + }, + [148515] = { + ["coords"] = { + [1] = { 41.5, 65, 16, 30 }, + [2] = { 37.1, 60.5, 16, 30 }, + [3] = { 38.6, 54.6, 16, 30 }, + [4] = { 35.9, 53.5, 16, 30 }, + [5] = { 37.3, 48.1, 16, 30 }, + }, + }, + [148516] = { + ["coords"] = { + [1] = { 39.5, 64.3, 16, 30 }, + [2] = { 35.2, 58, 16, 30 }, + [3] = { 38.9, 53.5, 16, 30 }, + [4] = { 37.1, 51.9, 16, 30 }, + [5] = { 39.6, 48.1, 16, 30 }, + }, + }, + [148666] = { + ["coords"] = { + [1] = { 47.1, 14.1, 28, 1200 }, + [2] = { 19.6, 96.6, 5225, 1200 }, + }, + }, + [148672] = { + ["coords"] = { + [1] = { 47.1, 13.3, 28, 1200 }, + [2] = { 19.5, 95.4, 5225, 1200 }, + }, + }, + [148673] = { + ["coords"] = { + [1] = { 46.9, 13.2, 28, 1200 }, + [2] = { 19.4, 95.3, 5225, 1200 }, + }, + }, + [148676] = { + ["coords"] = { + [1] = { 46.5, 13.6, 28, 1200 }, + [2] = { 18.7, 95.9, 5225, 1200 }, + }, + }, + [148679] = { + ["coords"] = { + [1] = { 46.5, 14.1, 28, 1200 }, + [2] = { 18.7, 96.5, 5225, 1200 }, + }, + }, + [148681] = { + ["coords"] = { + [1] = { 46.7, 14.3, 28, 1200 }, + [2] = { 19, 96.9, 5225, 1200 }, + }, + }, + [148685] = { + ["coords"] = { + [1] = { 46.9, 14.4, 28, 1200 }, + [2] = { 19.3, 96.9, 5225, 1200 }, + }, + }, + [148687] = { + ["coords"] = { + [1] = { 46.8, 13.5, 28, 1200 }, + [2] = { 19.2, 95.7, 5225, 1200 }, + }, + }, + [148688] = { + ["coords"] = { + [1] = { 47, 13.6, 28, 1200 }, + [2] = { 19.4, 95.9, 5225, 1200 }, + }, + }, + [148689] = { + ["coords"] = { + [1] = { 46.8, 13.5, 28, 1200 }, + [2] = { 19.1, 95.7, 5225, 1200 }, + }, + }, + [148801] = { + ["coords"] = { + [1] = { 62, 54.8, 17, 900 }, + [2] = { 42.1, 10.4, 130, 300 }, + }, + }, + [148811] = { + ["coords"] = { + [1] = { 61.9, 54.9, 17, 900 }, + [2] = { 60.9, 44.6, 409, 300 }, + }, + }, + [148830] = { + ["coords"] = { + [1] = { 50, 56.2, 1477, 180 }, + }, + ["fac"] = "AH", + }, + [148831] = { + ["coords"] = { + [1] = { 50.1, 35.5, 1477, 180 }, + }, + ["fac"] = "AH", + }, + [148832] = { + ["coords"] = { + [1] = { 44.1, 51, 1477, 180 }, + }, + ["fac"] = "AH", + }, + [148833] = { + ["coords"] = { + [1] = { 56, 51, 1477, 180 }, + }, + ["fac"] = "AH", + }, + [148834] = { + ["coords"] = { + [1] = { 44.1, 40.7, 1477, 180 }, + }, + ["fac"] = "AH", + }, + [148835] = { + ["coords"] = { + [1] = { 56, 40.6, 1477, 180 }, + }, + ["fac"] = "AH", + }, + [148836] = { + ["coords"] = { + [1] = { 50.1, 35.8, 1477, 120 }, + }, + ["fac"] = "AH", + }, + [148837] = { + ["coords"] = { + [1] = { 50, 56.2, 1477, 25 }, + [2] = { 56, 51, 1477, 25 }, + [3] = { 44.1, 51, 1477, 25 }, + [4] = { 44.1, 40.7, 1477, 25 }, + [5] = { 56, 40.6, 1477, 25 }, + [6] = { 50.1, 35.5, 1477, 25 }, + }, + }, + [148838] = { + ["coords"] = { + [1] = { 49.7, 48.7, 1477, 0 }, + }, + }, + [148841] = { + ["coords"] = { + [1] = { 77.7, 75.2, 38, 25 }, + [2] = { 60.7, 66.8, 357, 900 }, + [3] = { 38.3, 82.8, 5602, 25 }, + }, + }, + [148843] = { + ["coords"] = { + [1] = { 24.1, 41.8, 722, 5400 }, + }, + }, + [148844] = { + ["coords"] = { + [1] = { 24.9, 43.4, 722, 5400 }, + }, + }, + [148845] = { + ["coords"] = { + [1] = { 27, 45.2, 722, 5400 }, + }, + }, + [148846] = { + ["coords"] = { + [1] = { 31.1, 41.3, 722, 5400 }, + }, + }, + [148847] = { + ["coords"] = { + [1] = { 35.7, 38, 722, 5400 }, + }, + }, + [148848] = { + ["coords"] = { + [1] = { 46.8, 26.1, 722, 5400 }, + }, + }, + [148849] = { + ["coords"] = { + [1] = { 39.2, 38.6, 722, 5400 }, + }, + }, + [148850] = { + ["coords"] = { + [1] = { 30.7, 20.3, 722, 5400 }, + }, + }, + [148851] = { + ["coords"] = { + [1] = { 41.7, 55, 722, 5400 }, + }, + }, + [148852] = { + ["coords"] = { + [1] = { 43.4, 54.7, 722, 5400 }, + }, + }, + [148853] = { + ["coords"] = { + [1] = { 41.8, 57.9, 722, 5400 }, + }, + }, + [148854] = { + ["coords"] = { + [1] = { 39.5, 60.2, 722, 5400 }, + }, + }, + [148855] = { + ["coords"] = { + [1] = { 41.1, 60.7, 722, 5400 }, + }, + }, + [148856] = { + ["coords"] = { + [1] = { 29.8, 61, 722, 5400 }, + }, + }, + [148857] = { + ["coords"] = { + [1] = { 31.9, 62.9, 722, 5400 }, + }, + }, + [148858] = { + ["coords"] = { + [1] = { 44.2, 28.3, 722, 5400 }, + }, + }, + [148859] = { + ["coords"] = { + [1] = { 68.5, 31.2, 722, 5400 }, + }, + }, + [148860] = { + ["coords"] = { + [1] = { 47.7, 23.7, 722, 5400 }, + }, + }, + [148861] = { + ["coords"] = { + [1] = { 46, 23.6, 722, 5400 }, + }, + }, + [148862] = { + ["coords"] = { + [1] = { 71.4, 37.9, 722, 5400 }, + }, + }, + [148863] = { + ["coords"] = { + [1] = { 70, 42.4, 722, 5400 }, + }, + }, + [148864] = { + ["coords"] = { + [1] = { 64.9, 38.6, 722, 5400 }, + }, + }, + [148877] = { + ["coords"] = { + [1] = { 72.3, 44.2, 440, 900 }, + [2] = { 0.9, 33.1, 5121, 900 }, + }, + }, + [148878] = { + ["coords"] = { + [1] = { 72.8, 45.3, 440, 900 }, + [2] = { 1.9, 35.3, 5121, 900 }, + }, + }, + [148880] = { + ["coords"] = { + [1] = { 73.3, 47.3, 440, 900 }, + [2] = { 3.1, 39.7, 5121, 900 }, + }, + }, + [148883] = { + ["coords"] = { + [1] = { 50, 56.2, 1477, 0 }, + [2] = { 56, 51, 1477, 0 }, + [3] = { 44.1, 51, 1477, 0 }, + [4] = { 44.1, 40.7, 1477, 0 }, + [5] = { 56, 40.6, 1477, 0 }, + [6] = { 50.1, 35.5, 1477, 0 }, + }, + }, + [148890] = { + ["coords"] = { + [1] = { 4.6, 62.1, 85, 300 }, + [2] = { 4.8, 62, 85, 300 }, + [3] = { 4.5, 62, 85, 300 }, + [4] = { 4.6, 62, 85, 300 }, + [5] = { 4.7, 62, 85, 300 }, + [6] = { 4.7, 61.9, 85, 300 }, + [7] = { 4.6, 61.8, 85, 300 }, + [8] = { 4.8, 61.8, 85, 300 }, + [9] = { 4.7, 61.8, 85, 300 }, + [10] = { 4.6, 61.7, 85, 300 }, + [11] = { 4.7, 61.7, 85, 300 }, + }, + }, + [148917] = { + ["coords"] = { + [1] = { 47, 22.2, 722, 5400 }, + }, + }, + [148937] = { + ["coords"] = { + [1] = { 50, 56.2, 1477, 0 }, + [2] = { 56, 51, 1477, 0 }, + [3] = { 44.1, 51, 1477, 0 }, + [4] = { 44.1, 40.7, 1477, 0 }, + [5] = { 56, 40.6, 1477, 0 }, + [6] = { 50.1, 35.5, 1477, 0 }, + }, + }, + [148956] = { + ["coords"] = { + [1] = { 44.5, 13.3, 28, 1200 }, + [2] = { 82.7, 87, 139, 900 }, + [3] = { 42.3, 72.7, 4012, 900 }, + [4] = { 15.9, 95.5, 5225, 1200 }, + }, + }, + [148957] = { + ["coords"] = { + [1] = { 44.5, 13.7, 28, 1200 }, + [2] = { 22, 68.3, 85, 300 }, + [3] = { 82.9, 87.2, 139, 900 }, + [4] = { 49.4, 39.9, 408, 300 }, + [5] = { 42.5, 73, 4012, 900 }, + [6] = { 15.9, 96, 5225, 1200 }, + }, + }, + [148958] = { + ["coords"] = { + [1] = { 44.2, 13.5, 28, 1200 }, + [2] = { 82.6, 87.4, 139, 900 }, + [3] = { 42.1, 73.2, 4012, 900 }, + [4] = { 15.5, 95.7, 5225, 1200 }, + }, + }, + [148959] = { + ["coords"] = { + [1] = { 44.3, 13.3, 28, 1200 }, + [2] = { 82.5, 87.2, 139, 900 }, + [3] = { 42.1, 73, 4012, 900 }, + [4] = { 15.6, 95.5, 5225, 1200 }, + }, + }, + [148960] = { + ["coords"] = { + [1] = { 44.4, 13.5, 28, 1200 }, + [2] = { 82.7, 87.2, 139, 900 }, + [3] = { 42.3, 73, 4012, 900 }, + [4] = { 15.8, 95.7, 5225, 1200 }, + }, + }, + [148996] = { + ["coords"] = { + [1] = { 34.1, 53.9, 51, 0 }, + }, + }, + [148997] = { + ["coords"] = { + [1] = { 34, 54, 51, 0 }, + }, + }, + [148998] = { + ["coords"] = { + [1] = { 24.7, 49.1, 1477, 0 }, + [2] = { 22.6, 48.1, 1477, 0 }, + [3] = { 26.2, 47.8, 1477, 0 }, + [4] = { 26.6, 45.9, 1477, 0 }, + [5] = { 21.9, 45.9, 1477, 0 }, + [6] = { 22.4, 43.5, 1477, 0 }, + [7] = { 26.1, 43.5, 1477, 0 }, + [8] = { 24.5, 42.3, 1477, 0 }, + }, + }, + [149017] = { + ["coords"] = { + [1] = { 43.5, 62, 51, 0 }, + }, + }, + [149018] = { + ["coords"] = { + [1] = { 43.5, 62, 51, 0 }, + }, + }, + [149019] = { + ["coords"] = { + [1] = { 49.6, 55.8, 51, 0 }, + }, + }, + [149020] = { + ["coords"] = { + [1] = { 36.4, 60, 51, 0 }, + }, + }, + [149022] = { + ["coords"] = { + [1] = { 36.4, 60, 51, 0 }, + }, + }, + [149036] = { + ["coords"] = { + [1] = { 62.5, 38.5, 17, 2 }, + }, + }, + [149038] = { + ["coords"] = { + [1] = { 51.5, 41.6, 14, 900 }, + [2] = { 55.6, 33.9, 14, 300 }, + [3] = { 44.8, 14.5, 14, 300 }, + [4] = { 52, 29.9, 17, 900 }, + [5] = { 61.1, 24.7, 17, 300 }, + [6] = { 74, 60.6, 331, 900 }, + [7] = { 73, 56.8, 331, 300 }, + [8] = { 23.9, 68.7, 405, 300 }, + [9] = { 49.5, 30.3, 618, 300 }, + [10] = { 5.9, 93, 2100, 300 }, + }, + }, + [149047] = { + ["coords"] = { + [1] = { 39, 39.2, 51, 0 }, + }, + }, + [149049] = { + ["coords"] = { + [1] = { 94.5, 14.7, 10, 25 }, + [2] = { 93.8, 13.7, 10, 25 }, + [3] = { 42.9, 65.2, 12, 25 }, + [4] = { 40.9, 63, 12, 25 }, + [5] = { 42.1, 62.8, 12, 25 }, + [6] = { 35.2, 50, 12, 25 }, + [7] = { 52.1, 30.4, 17, 25 }, + [8] = { 9.2, 64.5, 28, 25 }, + [9] = { 9.3, 64.4, 28, 25 }, + [10] = { 80.8, 63.4, 28, 300 }, + [11] = { 80.9, 63.4, 28, 300 }, + [12] = { 30.8, 28.4, 28, 25 }, + [13] = { 87.3, 42.7, 85, 25 }, + [14] = { 87.3, 42.6, 85, 25 }, + [15] = { 43.8, 72.9, 130, 7200 }, + [16] = { 22.5, 87.2, 139, 300 }, + [17] = { 22.7, 87.2, 139, 300 }, + [18] = { 36.2, 44.3, 400, 25 }, + [19] = { 36.1, 44.3, 400, 25 }, + [20] = { 61.2, 43.5, 409, 300 }, + [21] = { 60.5, 71.1, 1519, 25 }, + [22] = { 44.8, 0.6, 5179, 7200 }, + }, + }, + [149410] = { + ["coords"] = { + [1] = { 39, 39.2, 51, 0 }, + }, + }, + [149419] = { + ["coords"] = { + [1] = { 41.8, 35.9, 1, 900 }, + [2] = { 51.1, 48.4, 8, 300 }, + [3] = { 61.6, 24.4, 17, 300 }, + }, + }, + [149431] = { + ["coords"] = { + [1] = { 76, 56.8, 1477, 25 }, + }, + }, + [149432] = { + ["coords"] = { + [1] = { 24, 56.8, 1477, 25 }, + }, + }, + [149433] = { + ["coords"] = { + [1] = { 24, 34.7, 1477, 25 }, + }, + }, + [149480] = { + ["coords"] = { + [1] = { 39.6, 50.3, 16, 180 }, + }, + }, + [149481] = { + ["coords"] = { + [1] = { 36.9, 53.2, 16, 30 }, + }, + }, + [149482] = { + ["coords"] = { + [1] = { 39.4, 55.5, 16, 180 }, + }, + }, + [149483] = { + ["coords"] = { + [1] = { 42.4, 64.1, 16, 180 }, + }, + }, + [149502] = { + ["coords"] = { + [1] = { 38.8, 39, 51, 2 }, + }, + }, + [150075] = { + ["coords"] = { + [1] = { 51.8, 27, 440, 2 }, + }, + }, + [150079] = { + ["coords"] = { + [1] = { 55.4, 6.8, 4, 1800 }, + [2] = { 38.1, 71.8, 8, 1800 }, + [3] = { 62.4, 65.7, 8, 1800 }, + [4] = { 57.8, 59.5, 8, 1800 }, + [5] = { 48.2, 57.3, 8, 1800 }, + }, + }, + [150081] = { + ["coords"] = { + [1] = { 60.7, 7.4, 4, 2700 }, + [2] = { 45.9, 72.7, 8, 2700 }, + [3] = { 58.5, 68.9, 8, 2700 }, + }, + }, + [150082] = { + ["coords"] = { + [1] = { 68.8, 9.4, 4, 2700 }, + [2] = { 57.7, 75.6, 8, 2700 }, + [3] = { 55.7, 60.4, 8, 2700 }, + }, + }, + [150137] = { + ["coords"] = { + [1] = { 78.7, 17.2, 51, 7200 }, + [2] = { 0.1, 96.3, 5602, 7200 }, + }, + }, + [150138] = { + ["coords"] = { + [1] = { 17.9, 84.1, 38, 7200 }, + [2] = { 7.7, 87.4, 5602, 7200 }, + }, + }, + [151951] = { + ["coords"] = { + [1] = { 37.9, 16.3, 722, 5400 }, + }, + }, + [151952] = { + ["coords"] = { + [1] = { 38.3, 17.6, 722, 5400 }, + [2] = { 37, 15.6, 722, 5400 }, + }, + }, + [151953] = { + ["coords"] = { + [1] = { 29.1, 63.3, 11, 120 }, + [2] = { 29.1, 63.1, 11, 120 }, + [3] = { 48.6, 62, 11, 300 }, + [4] = { 48.7, 61.9, 11, 300 }, + [5] = { 38.8, 61.7, 11, 120 }, + [6] = { 39.1, 61.5, 11, 120 }, + [7] = { 49.2, 60.8, 11, 300 }, + [8] = { 49.1, 60.8, 11, 300 }, + [9] = { 48.7, 40.8, 12, 900 }, + [10] = { 13.4, 68.8, 46, 300 }, + [11] = { 13.3, 68.5, 46, 300 }, + [12] = { 13.2, 68.2, 46, 300 }, + [13] = { 67.8, 83.1, 130, 300 }, + [14] = { 67.9, 83.1, 130, 300 }, + [15] = { 83, 78.8, 139, 900 }, + [16] = { 42.5, 52.9, 267, 300 }, + [17] = { 42.5, 52.7, 267, 300 }, + [18] = { 14.4, 49.7, 267, 300 }, + [19] = { 14.6, 49.7, 267, 300 }, + [20] = { 31.2, 90.5, 405, 300 }, + [21] = { 31.2, 90.4, 405, 300 }, + [22] = { 31.3, 90.4, 405, 300 }, + [23] = { 31.3, 90.3, 405, 300 }, + [24] = { 37, 51.5, 406, 300 }, + [25] = { 57, 43.5, 409, 300 }, + [26] = { 57, 43.4, 409, 300 }, + [27] = { 57.1, 43.4, 409, 300 }, + [28] = { 29, 10.2, 1519, 300 }, + [29] = { 42.6, 62.7, 4012, 900 }, + [30] = { 96.8, 15.1, 5179, 300 }, + [31] = { 96.8, 14.9, 5179, 300 }, + [32] = { 72.2, 12.4, 5179, 300 }, + [33] = { 72.4, 12.3, 5179, 300 }, + [34] = { 90, 94.9, 5581, 300 }, + [35] = { 89.9, 94.6, 5581, 300 }, + [36] = { 89.8, 94.4, 5581, 300 }, + [37] = { 32, 82.8, 5581, 300 }, + [38] = { 6.1, 26.6, 5602, 300 }, + [39] = { 6.2, 26.5, 5602, 300 }, + [40] = { 6.5, 25.7, 5602, 300 }, + }, + }, + [151954] = { + ["coords"] = { + [1] = { 50.2, 42.4, 12, 900 }, + [2] = { 84.5, 79.9, 139, 900 }, + [3] = { 44.5, 64, 4012, 900 }, + }, + }, + [151955] = { + ["coords"] = { + [1] = { 48.6, 41, 12, 900 }, + [2] = { 82.9, 79.1, 139, 900 }, + [3] = { 42.5, 63, 4012, 900 }, + }, + }, + [151956] = { + ["coords"] = { + [1] = { 49.4, 39.8, 12, 900 }, + [2] = { 83.5, 77.8, 139, 900 }, + [3] = { 43.3, 61.5, 4012, 900 }, + }, + }, + [151957] = { + ["coords"] = { + [1] = { 49.6, 39.2, 12, 900 }, + [2] = { 83.6, 77.3, 139, 900 }, + [3] = { 43.5, 60.8, 4012, 900 }, + }, + }, + [151958] = { + ["coords"] = { + [1] = { 49, 42.2, 12, 900 }, + [2] = { 83.3, 80.1, 139, 900 }, + [3] = { 43.1, 64.2, 4012, 900 }, + }, + }, + [151959] = { + ["coords"] = { + [1] = { 49.4, 39.5, 12, 900 }, + [2] = { 83.5, 77.5, 139, 900 }, + [3] = { 43.3, 61.1, 4012, 900 }, + }, + }, + [151960] = { + ["coords"] = { + [1] = { 49.7, 40.7, 12, 900 }, + [2] = { 83.8, 78.6, 139, 900 }, + [3] = { 43.7, 62.4, 4012, 900 }, + [4] = { 48, 55.3, 5581, 300 }, + [5] = { 47.9, 55.3, 5581, 300 }, + }, + }, + [151961] = { + ["coords"] = { + [1] = { 49.2, 40.3, 12, 900 }, + [2] = { 83.4, 78.3, 139, 900 }, + [3] = { 43.1, 62.1, 4012, 900 }, + }, + }, + [151962] = { + ["coords"] = { + [1] = { 49.3, 40, 12, 900 }, + [2] = { 83.4, 78, 139, 900 }, + [3] = { 43.2, 61.7, 4012, 900 }, + }, + }, + [151963] = { + ["coords"] = { + [1] = { 49.2, 40.4, 12, 900 }, + [2] = { 83.3, 78.4, 139, 900 }, + [3] = { 43.1, 62.2, 4012, 900 }, + }, + }, + [151964] = { + ["coords"] = { + [1] = { 49.7, 40.5, 12, 900 }, + [2] = { 83.8, 78.3, 139, 900 }, + [3] = { 43.7, 62.1, 4012, 900 }, + }, + }, + [151965] = { + ["coords"] = { + [1] = { 49.1, 41.9, 12, 900 }, + [2] = { 83.4, 79.8, 139, 900 }, + [3] = { 61.5, 44.3, 409, 300 }, + [4] = { 43.2, 63.9, 4012, 900 }, + }, + }, + [151966] = { + ["coords"] = { + [1] = { 49.5, 42, 12, 900 }, + [2] = { 83.8, 79.7, 139, 900 }, + [3] = { 43.6, 63.8, 4012, 900 }, + }, + }, + [151967] = { + ["coords"] = { + [1] = { 49.8, 39.3, 12, 900 }, + [2] = { 83.8, 77.3, 139, 900 }, + [3] = { 43.6, 60.8, 4012, 900 }, + }, + }, + [151968] = { + ["coords"] = { + [1] = { 48.9, 41.1, 12, 900 }, + [2] = { 83.2, 79, 139, 900 }, + [3] = { 42.9, 62.9, 4012, 900 }, + }, + }, + [151969] = { + ["coords"] = { + [1] = { 49.5, 41.7, 12, 900 }, + [2] = { 83.7, 79.5, 139, 900 }, + [3] = { 43.6, 63.5, 4012, 900 }, + }, + }, + [151970] = { + ["coords"] = { + [1] = { 49.7, 42, 12, 900 }, + [2] = { 84, 79.7, 139, 900 }, + [3] = { 43.9, 63.8, 4012, 900 }, + }, + }, + [151971] = { + ["coords"] = { + [1] = { 49.9, 41.5, 12, 900 }, + [2] = { 84.1, 79.2, 139, 900 }, + [3] = { 44, 63.1, 4012, 900 }, + }, + }, + [151972] = { + ["coords"] = { + [1] = { 50.3, 41.7, 12, 900 }, + [2] = { 84.5, 79.3, 139, 900 }, + [3] = { 44.5, 63.3, 4012, 900 }, + }, + }, + [151973] = { + ["coords"] = { + [1] = { 37.4, 17.1, 722, 5400 }, + }, + }, + [152093] = { + ["coords"] = { + [1] = { 35.5, 25.9, 406, 7200 }, + [2] = { 32.5, 24.8, 406, 7200 }, + [3] = { 33.5, 24.5, 406, 7200 }, + [4] = { 35.7, 24.4, 406, 7200 }, + [5] = { 34.7, 24.2, 406, 7200 }, + [6] = { 33.9, 23.4, 406, 7200 }, + [7] = { 32.6, 23.2, 406, 7200 }, + }, + }, + [152094] = { + ["coords"] = { + [1] = { 59, 47.1, 141, 60 }, + [2] = { 58.5, 46.9, 141, 60 }, + [3] = { 60.5, 46.7, 141, 60 }, + [4] = { 59.8, 46, 141, 60 }, + [5] = { 59.5, 45.8, 141, 60 }, + [6] = { 57.4, 45.8, 141, 60 }, + [7] = { 57.1, 44.3, 141, 60 }, + [8] = { 63.3, 44.3, 141, 60 }, + [9] = { 54.6, 44.2, 141, 60 }, + [10] = { 60.3, 44.2, 141, 60 }, + [11] = { 62.5, 44, 141, 60 }, + [12] = { 62.8, 43.5, 141, 60 }, + [13] = { 61.1, 43.4, 141, 60 }, + [14] = { 62.3, 43.2, 141, 60 }, + [15] = { 54.5, 43.2, 141, 60 }, + [16] = { 65.2, 42.7, 141, 60 }, + [17] = { 54.5, 41.7, 141, 60 }, + [18] = { 58.6, 41.5, 141, 60 }, + [19] = { 63.7, 41, 141, 60 }, + [20] = { 62.4, 40.5, 141, 60 }, + [21] = { 64.7, 40.1, 141, 60 }, + [22] = { 53.8, 40.1, 141, 60 }, + [23] = { 54.6, 40, 141, 60 }, + [24] = { 54.4, 39.7, 141, 60 }, + [25] = { 56.3, 39.2, 141, 60 }, + [26] = { 54, 39.1, 141, 60 }, + [27] = { 53.2, 38.6, 141, 60 }, + [28] = { 63.2, 37.9, 141, 60 }, + [29] = { 54.7, 37.8, 141, 60 }, + [30] = { 53.7, 37.8, 141, 60 }, + [31] = { 61.6, 37.5, 141, 60 }, + [32] = { 55.6, 36.6, 141, 60 }, + [33] = { 57.6, 36.5, 141, 60 }, + [34] = { 60.5, 36.3, 141, 60 }, + [35] = { 57.2, 35.1, 141, 60 }, + [36] = { 61.5, 34.3, 141, 60 }, + [37] = { 58.9, 34, 141, 60 }, + [38] = { 60.9, 30.2, 141, 60 }, + }, + }, + [152095] = { + ["coords"] = { + [1] = { 57.3, 39.7, 141, 120 }, + [2] = { 57, 39.1, 141, 120 }, + [3] = { 56.5, 38.9, 141, 120 }, + [4] = { 58, 38.4, 141, 120 }, + [5] = { 58, 38.2, 141, 120 }, + [6] = { 58.7, 38.2, 141, 120 }, + [7] = { 56.8, 38.2, 141, 120 }, + [8] = { 58.8, 37.6, 141, 120 }, + [9] = { 56.8, 37.5, 141, 120 }, + [10] = { 57.7, 37.5, 141, 120 }, + [11] = { 58.9, 37.3, 141, 120 }, + [12] = { 57.8, 37, 141, 120 }, + [13] = { 56.9, 37, 141, 120 }, + [14] = { 58, 36.7, 141, 120 }, + [15] = { 58.4, 36.4, 141, 120 }, + [16] = { 58.2, 36.2, 141, 120 }, + [17] = { 57.5, 36, 141, 120 }, + [18] = { 58.1, 35.6, 141, 120 }, + }, + ["fac"] = "A", + }, + [152608] = { + ["coords"] = { + [1] = { 44.3, 37.7, 17, 2 }, + }, + }, + [152618] = { + ["coords"] = { + [1] = { 52.7, 41.8, 17, 2 }, + }, + }, + [152620] = { + ["coords"] = { + [1] = { 51.8, 85.4, 16, 180 }, + [2] = { 55.6, 83.3, 16, 180 }, + [3] = { 60.9, 79.8, 16, 180 }, + [4] = { 55.5, 74.8, 16, 180 }, + [5] = { 45.7, 69.5, 16, 180 }, + }, + }, + [152621] = { + ["coords"] = { + [1] = { 59.4, 90.3, 16, 180 }, + [2] = { 62.6, 88, 16, 180 }, + [3] = { 47.3, 87, 16, 180 }, + [4] = { 55.6, 87, 16, 180 }, + [5] = { 52.4, 85.4, 16, 180 }, + [6] = { 60, 80, 16, 180 }, + }, + }, + [152622] = { + ["coords"] = { + [1] = { 55.3, 90.5, 16, 180 }, + [2] = { 58.8, 90.1, 16, 180 }, + [3] = { 52.9, 89.5, 16, 180 }, + [4] = { 63.6, 87.9, 16, 180 }, + [5] = { 50.2, 87.2, 16, 180 }, + [6] = { 57.3, 87, 16, 180 }, + [7] = { 47.2, 87, 16, 180 }, + [8] = { 60.1, 86.6, 16, 180 }, + [9] = { 49.7, 85.8, 16, 180 }, + [10] = { 53, 84.7, 16, 180 }, + [11] = { 60.2, 83.3, 16, 180 }, + [12] = { 54.6, 82, 16, 180 }, + [13] = { 56.1, 78.8, 16, 180 }, + [14] = { 51.8, 76.7, 16, 180 }, + [15] = { 55.3, 73.6, 16, 180 }, + [16] = { 45.2, 69.9, 16, 180 }, + }, + }, + [152631] = { + ["coords"] = { + [1] = { 59.7, 90, 16, 180 }, + [2] = { 62.8, 85.9, 16, 180 }, + [3] = { 50.4, 80.1, 16, 180 }, + [4] = { 48.5, 79.4, 16, 180 }, + [5] = { 53.8, 78.9, 16, 180 }, + [6] = { 60.3, 78.8, 16, 180 }, + [7] = { 45.2, 77.5, 16, 180 }, + [8] = { 48.6, 73.9, 16, 180 }, + [9] = { 47.4, 71.9, 16, 180 }, + }, + }, + [153123] = { + ["coords"] = { + [1] = { 59.6, 30.9, 16, 30 }, + [2] = { 56.1, 30.2, 16, 30 }, + [3] = { 58.5, 29, 16, 30 }, + [4] = { 56.3, 28.8, 16, 30 }, + [5] = { 58.8, 28.7, 16, 30 }, + [6] = { 57, 28.3, 16, 30 }, + [7] = { 58.5, 25, 16, 30 }, + }, + }, + [153205] = { + ["coords"] = { + [1] = { 47.4, 29.9, 4, 900 }, + }, + }, + [153239] = { + ["coords"] = { + [1] = { 26.7, 68.9, 47, 180 }, + [2] = { 28.2, 68.5, 47, 180 }, + [3] = { 48.6, 63.5, 47, 180 }, + [4] = { 51.2, 62.8, 47, 180 }, + [5] = { 29.6, 61.9, 47, 180 }, + [6] = { 63.4, 61.6, 47, 180 }, + [7] = { 45.9, 60, 47, 180 }, + [8] = { 50.4, 59.3, 47, 180 }, + [9] = { 43.9, 59.3, 47, 180 }, + [10] = { 24.7, 58.7, 47, 180 }, + [11] = { 42.6, 58.5, 47, 180 }, + [12] = { 28.1, 58.1, 47, 180 }, + [13] = { 34, 58, 47, 180 }, + [14] = { 52, 58, 47, 180 }, + [15] = { 20.6, 57.6, 47, 180 }, + [16] = { 43.2, 56.1, 47, 180 }, + [17] = { 21.1, 56.1, 47, 180 }, + [18] = { 35.2, 55.6, 47, 180 }, + [19] = { 53.1, 55.4, 47, 180 }, + [20] = { 22.9, 54.8, 47, 180 }, + [21] = { 15.9, 54.8, 47, 180 }, + [22] = { 31.5, 54.7, 47, 180 }, + [23] = { 28.8, 54.6, 47, 180 }, + [24] = { 42.5, 54.4, 47, 180 }, + [25] = { 27.7, 54.3, 47, 180 }, + [26] = { 38.3, 53.9, 47, 180 }, + [27] = { 26.1, 53.2, 47, 180 }, + [28] = { 23.2, 53.1, 47, 180 }, + [29] = { 34.1, 53, 47, 180 }, + [30] = { 15.8, 52.5, 47, 180 }, + [31] = { 61.8, 52.4, 47, 180 }, + [32] = { 28.8, 52.2, 47, 180 }, + [33] = { 52.7, 51.4, 47, 180 }, + [34] = { 40.6, 50.9, 47, 180 }, + [35] = { 22.2, 50.9, 47, 180 }, + [36] = { 37.3, 50.2, 47, 180 }, + [37] = { 46.8, 50.1, 47, 180 }, + [38] = { 63.5, 49.7, 47, 180 }, + [39] = { 60.1, 49.3, 47, 180 }, + [40] = { 20.1, 48.2, 47, 180 }, + [41] = { 34.2, 48.2, 47, 180 }, + [42] = { 33.9, 48, 47, 180 }, + [43] = { 57.4, 47.7, 47, 180 }, + [44] = { 33.2, 47.3, 47, 180 }, + [45] = { 53.7, 47.1, 47, 180 }, + [46] = { 19.5, 47.1, 47, 180 }, + [47] = { 44.9, 46.3, 47, 180 }, + [48] = { 58.4, 46.2, 47, 180 }, + [49] = { 37.5, 46.1, 47, 180 }, + [50] = { 56.6, 46, 47, 180 }, + [51] = { 56.8, 45.4, 47, 180 }, + [52] = { 40, 45.3, 47, 180 }, + [53] = { 44.2, 44.3, 47, 180 }, + [54] = { 47, 44.2, 47, 180 }, + [55] = { 38.5, 44.2, 47, 180 }, + [56] = { 42.2, 44, 47, 180 }, + [57] = { 54.9, 43.8, 47, 180 }, + [58] = { 60.2, 43.8, 47, 180 }, + [59] = { 32.5, 43.2, 47, 180 }, + [60] = { 35.5, 43.1, 47, 180 }, + [61] = { 35.4, 43, 47, 180 }, + [62] = { 33.3, 43, 47, 180 }, + [63] = { 53, 42.3, 47, 180 }, + [64] = { 55.7, 42.2, 47, 180 }, + [65] = { 54.8, 41.4, 47, 180 }, + [66] = { 48.7, 41.3, 47, 180 }, + [67] = { 53.1, 40.7, 47, 180 }, + [68] = { 50.2, 39.7, 47, 180 }, + [69] = { 51.5, 39.5, 47, 180 }, + }, + }, + [153240] = { + ["coords"] = { + [1] = { 25.2, 25, 51, 7200 }, + [2] = { 96.9, 6.7, 5581, 7200 }, + }, + }, + [153241] = { + ["coords"] = { + [1] = { 25.9, 26.3, 51, 7200 }, + [2] = { 97.4, 7.6, 5581, 7200 }, + }, + }, + [153242] = { + ["coords"] = { + [1] = { 24.3, 34.4, 51, 7200 }, + [2] = { 96.3, 13.2, 5581, 7200 }, + }, + }, + [153451] = { + ["coords"] = { + [1] = { 62.4, 34.3, 4, 3600 }, + [2] = { 65.5, 33.4, 4, 3600 }, + [3] = { 66.8, 29.6, 4, 3600 }, + [4] = { 42.5, 14.3, 4, 3600 }, + [5] = { 41.9, 13.1, 4, 3600 }, + [6] = { 44.4, 12, 4, 3600 }, + [7] = { 15, 73.1, 16, 3600 }, + [8] = { 17.6, 68.9, 16, 3600 }, + [9] = { 20.5, 62.4, 16, 3600 }, + [10] = { 25.9, 61.4, 16, 3600 }, + [11] = { 36.8, 59.5, 16, 3600 }, + [12] = { 26.6, 56, 16, 3600 }, + [13] = { 29.2, 53, 16, 3600 }, + [14] = { 35.7, 52.4, 16, 3600 }, + [15] = { 32, 51.5, 16, 3600 }, + [16] = { 41.2, 49.9, 16, 3600 }, + [17] = { 38.4, 47.8, 16, 3600 }, + [18] = { 32.4, 45.3, 16, 3600 }, + [19] = { 34.7, 40.6, 16, 3600 }, + [20] = { 35.5, 35.9, 16, 3600 }, + [21] = { 88, 22.7, 45, 3600 }, + [22] = { 63.9, 83.6, 47, 3600 }, + [23] = { 65.2, 82.3, 47, 3600 }, + [24] = { 67.7, 77.3, 47, 3600 }, + [25] = { 63.4, 73.4, 47, 3600 }, + [26] = { 68.3, 73.4, 47, 3600 }, + [27] = { 58.4, 72.8, 47, 3600 }, + [28] = { 65, 71, 47, 3600 }, + [29] = { 68.7, 70.5, 47, 3600 }, + [30] = { 67.6, 66.7, 47, 3600 }, + [31] = { 62.1, 65.1, 47, 3600 }, + [32] = { 64.3, 64.9, 47, 3600 }, + [33] = { 60.9, 64.5, 47, 3600 }, + [34] = { 57.4, 63.4, 47, 3600 }, + [35] = { 50.3, 53.3, 47, 3600 }, + [36] = { 71.1, 48.8, 47, 3600 }, + [37] = { 80.4, 47.3, 47, 3600 }, + [38] = { 66.5, 44.6, 47, 3600 }, + [39] = { 57.5, 42.3, 47, 3600 }, + [40] = { 45.4, 39.8, 47, 3600 }, + [41] = { 53.1, 38.6, 47, 3600 }, + [42] = { 40.6, 12.7, 357, 3600 }, + [43] = { 37.6, 81.4, 440, 3600 }, + [44] = { 57, 67.6, 440, 3600 }, + [45] = { 41.2, 57, 440, 3600 }, + [46] = { 38.7, 56.9, 440, 3600 }, + [47] = { 41.5, 54.5, 440, 3600 }, + [48] = { 40, 54.3, 440, 3600 }, + [49] = { 73.8, 48.2, 440, 3600 }, + [50] = { 72.9, 47.9, 440, 3600 }, + [51] = { 72.6, 46.7, 440, 3600 }, + [52] = { 75.3, 46.1, 440, 11493 }, + [53] = { 71.1, 45.7, 440, 3600 }, + [54] = { 72.9, 45.3, 440, 3600 }, + [55] = { 72.3, 44.1, 440, 3600 }, + [56] = { 71.6, 43.9, 440, 3600 }, + [57] = { 70.9, 43.3, 440, 3600 }, + [58] = { 31.2, 77.4, 490, 3600 }, + [59] = { 16.5, 39.9, 1176, 604800 }, + [60] = { 4, 41.6, 5121, 3600 }, + [61] = { 2.3, 40.9, 5121, 3600 }, + [62] = { 1.5, 38.4, 5121, 3600 }, + [63] = { 7.3, 37.1, 5121, 11493 }, + [64] = { 2.1, 35.5, 5121, 3600 }, + [65] = { 0.9, 32.8, 5121, 3600 }, + [66] = { 20.1, 62.2, 5179, 7200 }, + [67] = { 54.4, 54.1, 5179, 7200 }, + [68] = { 43, 43.6, 5179, 7200 }, + [69] = { 24.3, 42.9, 5179, 7200 }, + [70] = { 48.2, 35.8, 5179, 7200 }, + [71] = { 29.8, 34.7, 5179, 7200 }, + }, + }, + [153453] = { + ["coords"] = { + [1] = { 62.1, 93.6, 16, 129600 }, + [2] = { 71.3, 89.5, 16, 129600 }, + [3] = { 41.9, 76.5, 16, 129600 }, + [4] = { 54.6, 70.5, 16, 129600 }, + [5] = { 47.2, 65.2, 16, 129600 }, + [6] = { 76.5, 45.9, 16, 129600 }, + [7] = { 77.8, 30.8, 16, 129600 }, + [8] = { 48.3, 30.1, 16, 129600 }, + [9] = { 56.3, 28.5, 16, 129600 }, + [10] = { 44.4, 26.1, 16, 129600 }, + [11] = { 61.6, 25, 16, 129600 }, + [12] = { 45.4, 21.9, 16, 129600 }, + [13] = { 41.4, 20.3, 16, 129600 }, + [14] = { 51.2, 18.9, 16, 129600 }, + [15] = { 98.3, 80, 25, 129600 }, + [16] = { 41.9, 73.1, 28, 129600 }, + [17] = { 43.2, 72.9, 28, 129600 }, + [18] = { 49.2, 67.7, 28, 129600 }, + [19] = { 39.4, 66.7, 28, 129600 }, + [20] = { 46.6, 66.5, 28, 129600 }, + [21] = { 44.9, 65.4, 28, 517719 }, + [22] = { 53.8, 65.1, 28, 129600 }, + [23] = { 64.6, 59.4, 28, 129600 }, + [24] = { 37.9, 54.4, 28, 129600 }, + [25] = { 40.8, 52, 28, 129600 }, + [26] = { 47.4, 49.7, 28, 129600 }, + [27] = { 50.8, 40.7, 28, 129600 }, + [28] = { 45.2, 34.1, 28, 129600 }, + [29] = { 54.9, 23.1, 28, 129600 }, + [30] = { 90.6, 62.7, 46, 3600 }, + [31] = { 31.2, 62.4, 46, 129600 }, + [32] = { 77, 61.9, 46, 129600 }, + [33] = { 57.6, 61.2, 46, 129600 }, + [34] = { 44.7, 58.3, 46, 129600 }, + [35] = { 76.2, 55.9, 46, 129600 }, + [36] = { 38.8, 54.4, 46, 129600 }, + [37] = { 55.5, 53.7, 46, 129600 }, + [38] = { 92.2, 53.4, 46, 129600 }, + [39] = { 51.1, 53.1, 46, 129600 }, + [40] = { 80.7, 48.9, 46, 129600 }, + [41] = { 97.3, 48.6, 46, 3600 }, + [42] = { 36, 48.2, 46, 129600 }, + [43] = { 21.8, 47.4, 46, 129600 }, + [44] = { 82.9, 46.1, 46, 129600 }, + [45] = { 81.9, 44.8, 46, 129600 }, + [46] = { 88.3, 37.8, 46, 129600 }, + [47] = { 42.9, 37.5, 46, 129600 }, + [48] = { 40.8, 34.4, 46, 129600 }, + [49] = { 43.3, 34, 46, 129600 }, + [50] = { 84.5, 26.6, 46, 129600 }, + [51] = { 38.1, 92.3, 139, 129600 }, + [52] = { 27.1, 85.1, 139, 129600 }, + [53] = { 39.6, 75.7, 139, 129600 }, + [54] = { 59.2, 71.1, 139, 129600 }, + [55] = { 61.1, 68.7, 139, 129600 }, + [56] = { 59.1, 67.1, 139, 129600 }, + [57] = { 39.9, 33.7, 139, 129600 }, + [58] = { 27, 29.9, 139, 129600 }, + [59] = { 71.3, 81.9, 618, 129600 }, + [60] = { 13.5, 53.3, 4012, 129600 }, + [61] = { 15.8, 50.3, 4012, 129600 }, + [62] = { 13.4, 48.3, 4012, 129600 }, + [63] = { 61.5, 42, 5103, 259200 }, + [64] = { 82, 16.8, 5103, 259200 }, + [65] = { 61.9, 87.1, 5121, 129600 }, + [66] = { 53.1, 48, 5121, 129600 }, + [67] = { 60.5, 35.9, 5121, 129600 }, + [68] = { 56.5, 13.4, 5121, 129600 }, + [69] = { 88.4, 98.1, 5225, 129600 }, + [70] = { 72.2, 93.4, 5225, 129600 }, + [71] = { 97.6, 75.6, 5581, 129600 }, + }, + }, + [153454] = { + ["coords"] = { + [1] = { 71.9, 29.4, 28, 7200 }, + [2] = { 88.1, 86.9, 139, 3600 }, + [3] = { 80.9, 85.3, 139, 3600 }, + [4] = { 83.3, 84.7, 139, 12368 }, + [5] = { 83.3, 79.3, 139, 3600 }, + [6] = { 78, 76.5, 139, 5190 }, + [7] = { 39.4, 53.6, 139, 3600 }, + [8] = { 41.8, 50.1, 139, 3600 }, + [9] = { 12.6, 49.5, 139, 7200 }, + [10] = { 39.2, 48.6, 139, 3600 }, + [11] = { 67.7, 48, 139, 3600 }, + [12] = { 85.9, 46.4, 139, 3600 }, + [13] = { 86.9, 39.5, 139, 3600 }, + [14] = { 83.1, 38.9, 139, 3600 }, + [15] = { 69.6, 31.3, 139, 8723 }, + [16] = { 72.2, 30.1, 139, 3600 }, + [17] = { 63.4, 23.6, 139, 3600 }, + [18] = { 72.7, 18.1, 139, 3600 }, + [19] = { 70.6, 13.2, 139, 3600 }, + [20] = { 55.1, 40.4, 361, 7200 }, + [21] = { 54, 59.8, 616, 7200 }, + [22] = { 64, 58.1, 616, 7200 }, + [23] = { 17.4, 37.3, 616, 7200 }, + [24] = { 13.9, 25.2, 616, 7200 }, + [25] = { 29.3, 46.9, 618, 3600 }, + [26] = { 55.8, 44.7, 618, 3600 }, + [27] = { 39.7, 43.1, 618, 3600 }, + [28] = { 41.5, 42.5, 618, 3600 }, + [29] = { 53, 40.5, 618, 3600 }, + [30] = { 66.6, 37.1, 618, 3600 }, + [31] = { 68.1, 36.7, 618, 3600 }, + [32] = { 33.1, 36.7, 618, 3600 }, + [33] = { 46, 36, 618, 3600 }, + [34] = { 66.4, 35.9, 618, 3600 }, + [35] = { 30.5, 35.7, 618, 3600 }, + [36] = { 67.6, 35.3, 618, 3600 }, + [37] = { 48.9, 72.6, 4012, 3600 }, + [38] = { 40.1, 70.6, 4012, 3600 }, + [39] = { 43, 69.9, 4012, 12368 }, + [40] = { 43.1, 63.3, 4012, 3600 }, + [41] = { 36.6, 59.9, 4012, 5190 }, + [42] = { 23.9, 25, 4012, 3600 }, + [43] = { 46.3, 23, 4012, 3600 }, + [44] = { 47.5, 14.5, 4012, 3600 }, + [45] = { 42.8, 13.8, 4012, 3600 }, + [46] = { 26.2, 4.5, 4012, 8723 }, + [47] = { 29.5, 3.1, 4012, 3600 }, + }, + }, + [153463] = { + ["coords"] = { + [1] = { 42.3, 18, 28, 3600 }, + [2] = { 41.7, 14.9, 28, 3600 }, + [3] = { 46.9, 13.2, 28, 3600 }, + [4] = { 22.7, 82.3, 440, 3600 }, + [5] = { 12, 97.7, 5225, 3600 }, + [6] = { 19.4, 95.2, 5225, 3600 }, + }, + }, + [153464] = { + ["coords"] = { + [1] = { 40.5, 53, 16, 36000 }, + [2] = { 64.1, 43.2, 16, 36000 }, + [3] = { 43.7, 68.8, 28, 36000 }, + [4] = { 44.1, 66.8, 28, 36000 }, + [5] = { 42.3, 17.9, 28, 36000 }, + [6] = { 41.7, 62.7, 41, 36000 }, + [7] = { 81.9, 44.1, 46, 36776 }, + [8] = { 61.4, 36.3, 46, 36000 }, + [9] = { 80.4, 85.2, 139, 36000 }, + [10] = { 44.7, 73.6, 357, 36000 }, + [11] = { 44.6, 73.5, 357, 36000 }, + [12] = { 38, 54.2, 361, 36000 }, + [13] = { 38.7, 46.8, 361, 36000 }, + [14] = { 36.1, 44.2, 361, 36000 }, + [15] = { 35.1, 17.3, 405, 36000 }, + [16] = { 67.4, 36.8, 1583, 36000 }, + [17] = { 66.2, 77, 2017, 36000 }, + [18] = { 39.5, 70.5, 4012, 36000 }, + }, + }, + [153468] = { + ["coords"] = { + [1] = { 42.3, 18, 28, 3600 }, + [2] = { 41.7, 14.9, 28, 3600 }, + [3] = { 46.9, 13.2, 28, 3600 }, + [4] = { 12, 97.7, 5225, 3600 }, + [5] = { 19.4, 95.2, 5225, 3600 }, + }, + }, + [153469] = { + ["coords"] = { + [1] = { 56.9, 78.9, 1583, 36000 }, + [2] = { 67.4, 36.8, 1583, 36000 }, + [3] = { 75.4, 10.6, 2017, 36000 }, + [4] = { 24.8, 67.5, 2557, 36000 }, + }, + }, + [153470] = { + ["coords"] = { + [1] = { 44.2, 66.2, 15, 180 }, + [2] = { 32.9, 64.3, 15, 180 }, + [3] = { 56.1, 62.5, 15, 180 }, + [4] = { 35.9, 54.3, 15, 180 }, + [5] = { 52.5, 87.3, 17, 180 }, + [6] = { 54.1, 82.1, 17, 180 }, + [7] = { 77.5, 84, 47, 7200 }, + [8] = { 67.9, 66.4, 47, 7200 }, + [9] = { 23, 58.9, 47, 7200 }, + [10] = { 50.2, 52.8, 47, 7200 }, + [11] = { 10.7, 49.5, 47, 7200 }, + [12] = { 27, 48.8, 47, 7200 }, + [13] = { 14, 42, 47, 7200 }, + [14] = { 53.3, 39.4, 47, 7200 }, + [15] = { 95.4, 9.6, 267, 7200 }, + [16] = { 99.4, 0.5, 267, 7200 }, + }, + }, + [153471] = { + ["coords"] = { + [1] = { 46.5, 73.2, 28, 7200 }, + [2] = { 43.2, 63.4, 28, 7200 }, + [3] = { 40.7, 51.9, 28, 7200 }, + [4] = { 65.9, 47.7, 28, 7200 }, + [5] = { 53.1, 36.6, 28, 7200 }, + [6] = { 51.8, 28.2, 28, 7200 }, + [7] = { 47.8, 22.8, 28, 7200 }, + [8] = { 43, 18.6, 28, 7200 }, + }, + }, + [153472] = { + ["coords"] = { + [1] = { 61.5, 51.8, 85, 900 }, + [2] = { 58.6, 31, 85, 900 }, + [3] = { 51, 29.5, 85, 900 }, + }, + }, + [153473] = { + ["coords"] = { + [1] = { 79.5, 55.5, 85, 900 }, + [2] = { 79.6, 25.1, 85, 900 }, + }, + }, + [153556] = { + ["coords"] = { + [1] = { 64.1, 44.1, 46, 180 }, + [2] = { 65.6, 44, 46, 180 }, + [3] = { 59.3, 43.9, 46, 180 }, + [4] = { 67.6, 43.7, 46, 180 }, + [5] = { 57.3, 41.7, 46, 180 }, + [6] = { 58.9, 41.6, 46, 180 }, + [7] = { 61.5, 41.2, 46, 180 }, + [8] = { 68.2, 40.9, 46, 180 }, + [9] = { 66.1, 40.4, 46, 180 }, + [10] = { 62.7, 39.6, 46, 180 }, + [11] = { 55.8, 39.4, 46, 180 }, + [12] = { 57.9, 39.1, 46, 180 }, + [13] = { 52.5, 39, 46, 180 }, + [14] = { 54.2, 38.3, 46, 180 }, + [15] = { 69.9, 38.1, 46, 180 }, + [16] = { 67.2, 38.1, 46, 180 }, + [17] = { 59.6, 37.7, 46, 180 }, + [18] = { 64.6, 37.2, 46, 180 }, + [19] = { 61.9, 36.7, 46, 180 }, + [20] = { 69.2, 36.4, 46, 180 }, + [21] = { 57.4, 36.4, 46, 180 }, + [22] = { 63.5, 35.6, 46, 180 }, + [23] = { 60.3, 35.1, 46, 180 }, + [24] = { 53.9, 35.1, 46, 180 }, + [25] = { 65.3, 34.8, 46, 180 }, + [26] = { 72.4, 33.9, 46, 180 }, + }, + }, + [153578] = "_", + [153716] = "_", + [154357] = { + ["coords"] = { + [1] = { 38, 54.5, 44, 2 }, + [2] = { 19.2, 51.7, 44, 2 }, + }, + }, + [157637] = "_", + [157816] = { + ["coords"] = { + [1] = { 57.4, 16.5, 722, 5400 }, + }, + }, + [157817] = { + ["coords"] = { + [1] = { 61.8, 13.2, 722, 5400 }, + }, + }, + [157818] = { + ["coords"] = { + [1] = { 63.8, 14.1, 722, 5400 }, + }, + }, + [157819] = { + ["coords"] = { + [1] = { 64.9, 17.2, 722, 5400 }, + }, + }, + [157820] = { + ["coords"] = { + [1] = { 65.6, 20.6, 722, 5400 }, + }, + }, + [157923] = { + ["coords"] = { + [1] = { 49.4, 62.3, 1584, 600 }, + }, + }, + [157936] = { + ["coords"] = { + [1] = { 27.5, 42.7, 440, 180 }, + [2] = { 50.5, 90.1, 490, 180 }, + [3] = { 56.6, 83.4, 490, 180 }, + [4] = { 41.1, 79.8, 490, 180 }, + [5] = { 52.5, 78.9, 490, 180 }, + [6] = { 31, 78.9, 490, 180 }, + [7] = { 36.4, 76.3, 490, 180 }, + [8] = { 71.7, 75.9, 490, 180 }, + [9] = { 30.5, 70, 490, 180 }, + [10] = { 36.4, 69.7, 490, 180 }, + [11] = { 73.1, 65.7, 490, 180 }, + [12] = { 33.1, 65.4, 490, 180 }, + [13] = { 28, 62.7, 490, 180 }, + [14] = { 40.7, 59.6, 490, 180 }, + [15] = { 73.4, 58.3, 490, 180 }, + [16] = { 56, 56.9, 490, 180 }, + [17] = { 30.6, 56.7, 490, 180 }, + [18] = { 52.8, 55.9, 490, 180 }, + [19] = { 44.7, 54.4, 490, 180 }, + [20] = { 41.9, 53.2, 490, 180 }, + [21] = { 49.5, 48.5, 490, 180 }, + [22] = { 63.3, 47.9, 490, 180 }, + [23] = { 25.6, 46.3, 490, 180 }, + [24] = { 35.9, 46.2, 490, 180 }, + [25] = { 42.2, 45.5, 490, 180 }, + [26] = { 52.8, 45.4, 490, 180 }, + [27] = { 57.1, 44.2, 490, 180 }, + [28] = { 64.1, 41, 490, 180 }, + [29] = { 27, 40.2, 490, 180 }, + [30] = { 38.9, 39.5, 490, 180 }, + [31] = { 53.6, 39, 490, 180 }, + [32] = { 21.9, 38.6, 490, 180 }, + [33] = { 58.1, 36.3, 490, 180 }, + [34] = { 50.2, 34.3, 490, 180 }, + [35] = { 31, 34.1, 490, 180 }, + [36] = { 44.1, 33.8, 490, 180 }, + [37] = { 55.6, 28.7, 490, 180 }, + [38] = { 40.4, 26.9, 490, 180 }, + [39] = { 32.9, 22.9, 490, 180 }, + [40] = { 62.2, 17.6, 490, 180 }, + [41] = { 80.8, 41.3, 1377, 180 }, + }, + }, + [158545] = { + ["coords"] = { + [1] = { 55.6, 69.3, 1584, 600 }, + }, + }, + [158546] = { + ["coords"] = { + [1] = { 53.2, 67.9, 1584, 600 }, + }, + }, + [158547] = { + ["coords"] = { + [1] = { 51, 93.6, 1584, 600 }, + }, + }, + [158548] = { + ["coords"] = { + [1] = { 53.4, 67.9, 1584, 600 }, + }, + }, + [158549] = { + ["coords"] = { + [1] = { 55.2, 68.3, 1584, 600 }, + }, + }, + [158550] = { + ["coords"] = { + [1] = { 55, 68.1, 1584, 600 }, + }, + }, + [158551] = { + ["coords"] = { + [1] = { 55.9, 69.3, 1584, 600 }, + }, + }, + [158552] = { + ["coords"] = { + [1] = { 56.1, 69.7, 1584, 600 }, + }, + }, + [158553] = { + ["coords"] = { + [1] = { 52.8, 67.8, 1584, 600 }, + }, + }, + [158554] = { + ["coords"] = { + [1] = { 52.5, 67.9, 1584, 600 }, + }, + }, + [158555] = { + ["coords"] = { + [1] = { 54.9, 76.1, 1584, 600 }, + }, + }, + [158556] = { + ["coords"] = { + [1] = { 54.7, 76.2, 1584, 600 }, + }, + }, + [158557] = { + ["coords"] = { + [1] = { 52, 68.3, 1584, 600 }, + }, + }, + [158558] = { + ["coords"] = { + [1] = { 50.8, 69.9, 1584, 600 }, + }, + }, + [158559] = { + ["coords"] = { + [1] = { 55.5, 75.9, 1584, 600 }, + }, + }, + [158560] = { + ["coords"] = { + [1] = { 55.7, 75.5, 1584, 600 }, + }, + }, + [158561] = { + ["coords"] = { + [1] = { 56.1, 74.8, 1584, 600 }, + }, + }, + [158562] = { + ["coords"] = { + [1] = { 51.9, 76.1, 1584, 600 }, + }, + }, + [158563] = { + ["coords"] = { + [1] = { 52.7, 76.4, 1584, 600 }, + }, + }, + [158564] = { + ["coords"] = { + [1] = { 52.5, 76.2, 1584, 600 }, + }, + }, + [158565] = { + ["coords"] = { + [1] = { 53.1, 76.9, 1584, 600 }, + }, + }, + [158566] = { + ["coords"] = { + [1] = { 53.4, 76.9, 1584, 600 }, + }, + }, + [158567] = { + ["coords"] = { + [1] = { 52.2, 76.4, 1584, 600 }, + }, + }, + [158568] = { + ["coords"] = { + [1] = { 53.2, 77.4, 1584, 600 }, + }, + }, + [158569] = { + ["coords"] = { + [1] = { 51.2, 74.5, 1584, 600 }, + }, + }, + [158570] = { + ["coords"] = { + [1] = { 51.1, 74.2, 1584, 600 }, + }, + }, + [158571] = { + ["coords"] = { + [1] = { 51.1, 93.5, 1584, 600 }, + }, + }, + [158572] = { + ["coords"] = { + [1] = { 55.4, 69.1, 1584, 600 }, + }, + }, + [158576] = { + ["coords"] = { + [1] = { 51.3, 93.5, 1584, 600 }, + }, + }, + [158579] = { + ["coords"] = { + [1] = { 71.4, 34.8, 1584, 600 }, + }, + }, + [158580] = { + ["coords"] = { + [1] = { 51, 73.8, 1584, 600 }, + }, + }, + [158581] = { + ["coords"] = { + [1] = { 51, 73.5, 1584, 600 }, + }, + }, + [158582] = { + ["coords"] = { + [1] = { 50.7, 73.3, 1584, 600 }, + }, + }, + [158583] = { + ["coords"] = { + [1] = { 56.9, 73.4, 1584, 600 }, + }, + }, + [158584] = { + ["coords"] = { + [1] = { 56.8, 73.7, 1584, 600 }, + }, + }, + [158585] = { + ["coords"] = { + [1] = { 56.7, 74.3, 1584, 600 }, + }, + }, + [158599] = { + ["coords"] = { + [1] = { 83.7, 13, 1584, 600 }, + }, + }, + [158608] = { + ["coords"] = { + [1] = { 66.6, 17.3, 1584, 600 }, + }, + }, + [158674] = { + ["coords"] = { + [1] = { 83.6, 7.9, 1584, 600 }, + }, + }, + [158678] = { + ["coords"] = { + [1] = { 50.8, 73.5, 1584, 600 }, + }, + }, + [158679] = { + ["coords"] = { + [1] = { 50.9, 74.1, 1584, 600 }, + }, + }, + [158680] = { + ["coords"] = { + [1] = { 51, 74.3, 1584, 600 }, + }, + }, + [160409] = { + ["coords"] = { + [1] = { 72.6, 47.6, 440, 900 }, + [2] = { 1.5, 40.3, 5121, 900 }, + }, + }, + [160410] = { + ["coords"] = { + [1] = { 72.6, 47.7, 440, 900 }, + [2] = { 1.5, 40.4, 5121, 900 }, + }, + }, + [160411] = { + ["coords"] = { + [1] = { 68.4, 49.4, 17, 900 }, + [2] = { 73.6, 48.1, 440, 900 }, + [3] = { 3.8, 41.3, 5121, 900 }, + }, + }, + [160413] = { + ["coords"] = { + [1] = { 68.4, 49.4, 17, 900 }, + [2] = { 73.6, 48.1, 440, 900 }, + [3] = { 3.7, 41.3, 5121, 900 }, + }, + }, + [160414] = { + ["coords"] = { + [1] = { 68.4, 49.4, 17, 900 }, + [2] = { 73.6, 48.1, 440, 900 }, + [3] = { 3.7, 41.3, 5121, 900 }, + }, + }, + [160415] = { + ["coords"] = { + [1] = { 68.4, 49.4, 17, 900 }, + [2] = { 73.7, 48.1, 440, 900 }, + [3] = { 3.8, 41.3, 5121, 900 }, + }, + }, + [160416] = { + ["coords"] = { + [1] = { 68.8, 49.2, 17, 900 }, + [2] = { 73.2, 48.6, 440, 900 }, + [3] = { 2.9, 42.4, 5121, 900 }, + }, + }, + [160418] = { + ["coords"] = { + [1] = { 72.2, 46.4, 440, 900 }, + [2] = { 0.7, 37.7, 5121, 900 }, + }, + }, + [160419] = { + ["coords"] = { + [1] = { 72.1, 46.5, 440, 900 }, + [2] = { 0.5, 38, 5121, 900 }, + }, + }, + [160420] = { + ["coords"] = { + [1] = { 72.1, 46.5, 440, 900 }, + [2] = { 0.4, 38, 5121, 900 }, + }, + }, + [160436] = { + ["coords"] = { + [1] = { 80.4, 61.5, 1519, 900 }, + }, + }, + [160437] = { + ["coords"] = { + [1] = { 80.2, 61.6, 1519, 900 }, + }, + }, + [160438] = { + ["coords"] = { + [1] = { 80.1, 61.5, 1519, 900 }, + }, + }, + [160439] = { + ["coords"] = { + [1] = { 80, 61.3, 1519, 900 }, + }, + }, + [160440] = { + ["coords"] = { + [1] = { 80, 61.1, 1519, 900 }, + }, + }, + [160441] = { + ["coords"] = { + [1] = { 80.4, 61.3, 1519, 900 }, + }, + }, + [160442] = { + ["coords"] = { + [1] = { 59.9, 75.2, 1519, 900 }, + }, + }, + [160443] = { + ["coords"] = { + [1] = { 60.2, 74.8, 1519, 900 }, + }, + }, + [160444] = { + ["coords"] = { + [1] = { 60.4, 74.8, 1519, 900 }, + }, + }, + [160445] = { + ["coords"] = { + [1] = { 79.8, 45.5, 46, 7200 }, + }, + }, + [160836] = { + ["coords"] = { + [1] = { 61.7, 56.5, 1584, 604800 }, + [2] = { 61.4, 56.5, 1584, 604800 }, + [3] = { 62, 56.2, 1584, 604800 }, + [4] = { 61.1, 56.1, 1584, 604800 }, + [5] = { 60.9, 55.8, 1584, 604800 }, + [6] = { 62.2, 55.8, 1584, 604800 }, + [7] = { 60.7, 55.4, 1584, 604800 }, + [8] = { 62.4, 55.4, 1584, 604800 }, + [9] = { 62.4, 54.9, 1584, 604800 }, + [10] = { 62.2, 54.5, 1584, 604800 }, + [11] = { 62, 54.2, 1584, 604800 }, + [12] = { 61.8, 53.8, 1584, 604800 }, + }, + }, + [160842] = "_", + [160845] = { + ["coords"] = { + [1] = { 62, 55.9, 1584, 604800 }, + }, + }, + [161460] = { + ["coords"] = { + [1] = { 46.6, 70.8, 1584, 600 }, + }, + }, + [161461] = { + ["coords"] = { + [1] = { 46.4, 70.9, 1584, 600 }, + }, + }, + [161462] = { + ["coords"] = { + [1] = { 49.4, 62.3, 1584, 600 }, + }, + }, + [161495] = { + ["coords"] = { + [1] = { 62.1, 55.9, 1584, 604800 }, + }, + }, + [161504] = { + ["coords"] = { + [1] = { 63.1, 69.1, 490, 2 }, + }, + }, + [161505] = { + ["coords"] = { + [1] = { 63, 68.6, 490, 2 }, + }, + }, + [161516] = { + ["coords"] = { + [1] = { 50.4, 64, 1584, 600 }, + }, + }, + [161521] = { + ["coords"] = { + [1] = { 38.5, 66.1, 490, 2 }, + }, + }, + [161522] = { + ["coords"] = { + [1] = { 53, 69, 1584, 600 }, + }, + }, + [161523] = { + ["coords"] = { + [1] = { 54.1, 75.5, 1584, 600 }, + }, + }, + [161524] = { + ["coords"] = { + [1] = { 51.5, 73.1, 1584, 600 }, + }, + }, + [161525] = { + ["coords"] = { + [1] = { 55.7, 71.4, 1584, 600 }, + }, + }, + [161526] = { + ["coords"] = { + [1] = { 68.5, 36.5, 490, 2 }, + }, + }, + [161527] = { + ["coords"] = { + [1] = { 30.9, 78, 490, 180 }, + [2] = { 31.1, 78, 490, 180 }, + [3] = { 31.1, 77.7, 490, 180 }, + [4] = { 38.6, 77.5, 490, 180 }, + [5] = { 31, 77.4, 490, 180 }, + [6] = { 31.2, 77.3, 490, 180 }, + [7] = { 31.9, 76.2, 490, 180 }, + [8] = { 39.2, 75.3, 490, 180 }, + [9] = { 32.7, 73.5, 490, 180 }, + [10] = { 37.2, 72.7, 490, 180 }, + [11] = { 34.7, 72.4, 490, 180 }, + [12] = { 31, 72.1, 490, 180 }, + [13] = { 34.5, 72, 490, 180 }, + [14] = { 32.9, 62.7, 490, 180 }, + }, + }, + [161557] = { + ["coords"] = { + [1] = { 53.8, 50.8, 12, 60 }, + [2] = { 54.1, 50.7, 12, 60 }, + [3] = { 53.6, 50.4, 12, 60 }, + [4] = { 53.8, 50.4, 12, 60 }, + [5] = { 54.1, 50.3, 12, 60 }, + [6] = { 54.6, 50, 12, 60 }, + [7] = { 53.4, 50, 12, 60 }, + [8] = { 53.9, 49.9, 12, 60 }, + [9] = { 54.2, 49.8, 12, 60 }, + [10] = { 53.2, 49.6, 12, 60 }, + [11] = { 54, 49.5, 12, 60 }, + [12] = { 54.6, 49.5, 12, 60 }, + [13] = { 53.6, 49.5, 12, 60 }, + [14] = { 54.9, 49.4, 12, 60 }, + [15] = { 54.4, 49.4, 12, 60 }, + [16] = { 55.2, 49, 12, 60 }, + [17] = { 53.3, 49, 12, 60 }, + [18] = { 52.8, 49, 12, 60 }, + [19] = { 54.9, 48.9, 12, 60 }, + [20] = { 53.9, 48.8, 12, 60 }, + [21] = { 54.2, 48.8, 12, 60 }, + [22] = { 53.2, 48.6, 12, 60 }, + [23] = { 54.6, 48.5, 12, 60 }, + [24] = { 53.8, 48.5, 12, 60 }, + [25] = { 52.8, 48.4, 12, 60 }, + [26] = { 54.3, 48.2, 12, 60 }, + [27] = { 54.6, 48.2, 12, 60 }, + [28] = { 53.4, 48.1, 12, 60 }, + [29] = { 54, 48, 12, 60 }, + [30] = { 53, 48, 12, 60 }, + [31] = { 54.4, 47.8, 12, 60 }, + [32] = { 53.4, 47.7, 12, 60 }, + [33] = { 53.9, 47.6, 12, 60 }, + [34] = { 54.1, 47.5, 12, 60 }, + [35] = { 53.6, 47.5, 12, 60 }, + [36] = { 53.8, 47, 12, 60 }, + }, + }, + [161752] = { + ["coords"] = { + [1] = { 56, 9.8, 17, 180 }, + [2] = { 55.7, 9.5, 17, 180 }, + [3] = { 56.1, 9.2, 17, 180 }, + [4] = { 57.2, 9.1, 17, 180 }, + [5] = { 56.7, 8.8, 17, 180 }, + [6] = { 56.8, 8.8, 17, 180 }, + [7] = { 56.2, 8.5, 17, 180 }, + [8] = { 56, 8.5, 17, 180 }, + [9] = { 56.4, 7.5, 17, 180 }, + [10] = { 57.3, 7.2, 17, 180 }, + [11] = { 55.9, 6.8, 17, 180 }, + }, + }, + [163313] = "_", + [163645] = "_", + [164618] = "_", + [164662] = { + ["coords"] = { + [1] = { 33.6, 66, 85, 180 }, + [2] = { 33.1, 65.7, 85, 180 }, + [3] = { 33, 65.4, 85, 180 }, + [4] = { 32.9, 64.6, 85, 180 }, + [5] = { 33.8, 64.6, 85, 180 }, + [6] = { 32.4, 64.4, 85, 180 }, + [7] = { 32.5, 64.3, 85, 180 }, + [8] = { 34.2, 64.2, 85, 180 }, + [9] = { 33.8, 64, 85, 180 }, + [10] = { 34.1, 63.9, 85, 180 }, + [11] = { 31.3, 62.4, 85, 180 }, + [12] = { 31.8, 62, 85, 180 }, + [13] = { 31.9, 61.5, 85, 180 }, + [14] = { 32.8, 61.3, 85, 180 }, + }, + }, + [164688] = { + ["coords"] = { + [1] = { 56.1, 77.9, 1584, 600 }, + }, + }, + [164689] = { + ["coords"] = { + [1] = { 56.1, 77.9, 1584, 600 }, + }, + }, + [164725] = { + ["coords"] = { + [1] = { 37.2, 30, 1583, 180 }, + }, + }, + [164729] = { + ["coords"] = { + [1] = { 44.6, 10.4, 357, 180 }, + }, + }, + [164759] = { + ["coords"] = { + [1] = { 64.8, 34.2, 17, 300 }, + }, + }, + [164761] = { + ["coords"] = { + [1] = { 58, 25.5, 14, 300 }, + }, + }, + [164762] = { + ["coords"] = { + [1] = { 34.8, 10.2, 45, 300 }, + [2] = { 34.8, 10.1, 45, 300 }, + [3] = { 34.7, 10.1, 45, 300 }, + [4] = { 14.2, 71.9, 47, 300 }, + [5] = { 14.2, 71.8, 47, 300 }, + [6] = { 14, 71.8, 47, 300 }, + [7] = { 14.1, 71.7, 47, 300 }, + }, + }, + [164765] = { + ["coords"] = { + [1] = { 58.2, 25.6, 14, 300 }, + }, + }, + [164766] = { + ["coords"] = { + [1] = { 58.2, 25.6, 14, 300 }, + [2] = { 57.5, 25, 14, 300 }, + [3] = { 44.3, 44.8, 16, 300 }, + [4] = { 61.4, 43.6, 409, 300 }, + }, + }, + [164767] = { + ["coords"] = { + [1] = { 44.2, 67, 14, 300 }, + [2] = { 58.6, 27.1, 14, 300 }, + [3] = { 57.6, 25.1, 14, 300 }, + [4] = { 57.6, 25, 14, 300 }, + [5] = { 34, 17.6, 28, 0 }, + [6] = { 33.9, 17.5, 28, 0 }, + [7] = { 33.8, 17.4, 28, 0 }, + [8] = { 35, 10.1, 45, 300 }, + [9] = { 14.4, 71.8, 47, 300 }, + [10] = { 21.7, 69.3, 85, 300 }, + [11] = { 21.8, 69.2, 85, 300 }, + [12] = { 20.8, 68.7, 85, 300 }, + [13] = { 90.2, 32.4, 85, 0 }, + [14] = { 90.2, 32.3, 85, 0 }, + [15] = { 90.1, 32.2, 85, 0 }, + [16] = { 60.7, 44.6, 409, 300 }, + [17] = { 60.9, 44.6, 409, 300 }, + [18] = { 60.8, 44.6, 409, 300 }, + [19] = { 61.3, 44.5, 409, 300 }, + [20] = { 60.9, 44.5, 409, 300 }, + [21] = { 61, 44.4, 409, 300 }, + [22] = { 61.1, 44.3, 409, 300 }, + [23] = { 61.3, 44.3, 409, 300 }, + [24] = { 60.9, 44.3, 409, 300 }, + [25] = { 61.3, 44.2, 409, 300 }, + [26] = { 61.1, 44.2, 409, 300 }, + [27] = { 60.7, 44.2, 409, 300 }, + [28] = { 61.1, 43.9, 409, 300 }, + [29] = { 60.9, 43.9, 409, 300 }, + [30] = { 61.2, 43.9, 409, 300 }, + [31] = { 61.3, 43.9, 409, 300 }, + [32] = { 61.4, 43.8, 409, 300 }, + [33] = { 61.2, 43.8, 409, 300 }, + [34] = { 61, 43.8, 409, 300 }, + [35] = { 61.2, 43.7, 409, 300 }, + [36] = { 61.1, 43.5, 409, 300 }, + [37] = { 59.3, 43.5, 409, 300 }, + [38] = { 60.4, 39.9, 409, 300 }, + }, + }, + [164778] = { + ["coords"] = { + [1] = { 32, 35.2, 440, 597 }, + [2] = { 32.9, 34.5, 440, 527 }, + [3] = { 31.7, 33, 440, 526 }, + [4] = { 32.3, 28.7, 440, 564 }, + [5] = { 32.3, 25.1, 440, 519 }, + [6] = { 32.8, 22.9, 440, 513 }, + [7] = { 32.8, 22.9, 440, 558 }, + [8] = { 31.4, 17.5, 440, 459 }, + [9] = { 45.8, 92.6, 490, 350 }, + [10] = { 50, 92.4, 490, 342 }, + [11] = { 44.2, 88.8, 490, 373 }, + [12] = { 51.9, 87.4, 490, 537 }, + [13] = { 42.8, 86.2, 490, 519 }, + [14] = { 62, 85.3, 490, 373 }, + [15] = { 57.4, 82.6, 490, 303 }, + [16] = { 38.2, 81.8, 490, 306 }, + [17] = { 31.1, 81.3, 490, 406 }, + [18] = { 69.4, 80, 490, 483 }, + [19] = { 40.7, 79.9, 490, 446 }, + [20] = { 65.2, 79.8, 490, 309 }, + [21] = { 29.8, 79.1, 490, 526 }, + [22] = { 58.6, 78.4, 490, 544 }, + [23] = { 60.4, 77.5, 490, 467 }, + [24] = { 70, 77.2, 490, 390 }, + [25] = { 29, 76.9, 490, 431 }, + [26] = { 33.9, 76.9, 490, 459 }, + [27] = { 56.9, 76.1, 490, 399 }, + [28] = { 63.1, 75.3, 490, 515 }, + [29] = { 40.5, 75.3, 490, 372 }, + [30] = { 43.9, 74.7, 490, 388 }, + [31] = { 71.7, 73.7, 490, 450 }, + [32] = { 56.3, 73.6, 490, 552 }, + [33] = { 32.7, 73.5, 490, 382 }, + [34] = { 66.7, 73.2, 490, 313 }, + [35] = { 75, 70.5, 490, 308 }, + [36] = { 30.3, 70.5, 490, 473 }, + [37] = { 62.3, 70.3, 490, 432 }, + [38] = { 27.5, 70.2, 490, 402 }, + [39] = { 69.5, 69.5, 490, 509 }, + [40] = { 36.1, 69, 490, 362 }, + [41] = { 60.9, 68.5, 490, 428 }, + [42] = { 62.4, 68.4, 490, 542 }, + [43] = { 25.1, 67, 490, 301 }, + [44] = { 37.8, 66.5, 490, 386 }, + [45] = { 42.8, 66, 490, 318 }, + [46] = { 45.4, 65.9, 490, 451 }, + [47] = { 58.2, 65.9, 490, 346 }, + [48] = { 73, 65.5, 490, 394 }, + [49] = { 29.7, 64.8, 490, 442 }, + [50] = { 70.2, 64.1, 490, 459 }, + [51] = { 74.4, 63.9, 490, 348 }, + [52] = { 71.7, 63.4, 490, 385 }, + [53] = { 25.7, 63.3, 490, 395 }, + [54] = { 30.8, 63.3, 490, 351 }, + [55] = { 79.9, 62, 490, 597 }, + [56] = { 51.3, 61.6, 490, 342 }, + [57] = { 75.3, 61.5, 490, 306 }, + [58] = { 21.9, 61.4, 490, 504 }, + [59] = { 47, 61, 490, 493 }, + [60] = { 56.2, 60.6, 490, 598 }, + [61] = { 81.6, 60.6, 490, 527 }, + [62] = { 59.5, 60.2, 490, 351 }, + [63] = { 68.4, 59.8, 490, 553 }, + [64] = { 60.3, 59.7, 490, 341 }, + [65] = { 26.1, 59.5, 490, 508 }, + [66] = { 23, 59.2, 490, 391 }, + [67] = { 23.7, 58.9, 490, 346 }, + [68] = { 74.8, 58.8, 490, 388 }, + [69] = { 79.4, 57.9, 490, 526 }, + [70] = { 76.7, 57.7, 490, 422 }, + [71] = { 74.4, 57.1, 490, 311 }, + [72] = { 35.8, 54.6, 490, 568 }, + [73] = { 25.8, 53.8, 490, 567 }, + [74] = { 73.8, 53.4, 490, 320 }, + [75] = { 42.9, 52.8, 490, 306 }, + [76] = { 72.8, 51.9, 490, 391 }, + [77] = { 29, 51.7, 490, 529 }, + [78] = { 68, 51.4, 490, 333 }, + [79] = { 26.8, 50.5, 490, 427 }, + [80] = { 20.6, 50, 490, 323 }, + [81] = { 40.6, 50, 490, 315 }, + [82] = { 58.1, 49.9, 490, 357 }, + [83] = { 80.5, 49.8, 490, 564 }, + [84] = { 59.8, 49.4, 490, 435 }, + [85] = { 66.7, 47, 490, 570 }, + [86] = { 72.9, 46.8, 490, 379 }, + [87] = { 27.7, 46.4, 490, 333 }, + [88] = { 43, 45.5, 490, 332 }, + [89] = { 33.8, 44.3, 490, 478 }, + [90] = { 76.6, 43.8, 490, 321 }, + [91] = { 80.6, 43.1, 490, 519 }, + [92] = { 71.1, 42.9, 490, 458 }, + [93] = { 24, 42.8, 490, 600 }, + [94] = { 38.1, 41.9, 490, 547 }, + [95] = { 62.1, 40.5, 490, 576 }, + [96] = { 67.7, 40.4, 490, 369 }, + [97] = { 23.1, 40.2, 490, 414 }, + [98] = { 75.9, 40.2, 490, 521 }, + [99] = { 78.2, 40.1, 490, 405 }, + [100] = { 25.6, 39.8, 490, 378 }, + [101] = { 81.5, 39, 490, 513 }, + [102] = { 81.5, 39, 490, 558 }, + [103] = { 19.7, 38.9, 490, 337 }, + [104] = { 53.7, 38.8, 490, 350 }, + [105] = { 45.4, 38.7, 490, 503 }, + [106] = { 75.1, 37.6, 490, 316 }, + [107] = { 72.3, 35.5, 490, 583 }, + [108] = { 69.6, 35, 490, 405 }, + [109] = { 51.8, 35, 490, 540 }, + [110] = { 42.5, 34, 490, 550 }, + [111] = { 72.1, 33.2, 490, 496 }, + [112] = { 34.7, 33.2, 490, 521 }, + [113] = { 33, 29.6, 490, 416 }, + [114] = { 74.8, 29.5, 490, 473 }, + [115] = { 26.4, 29.2, 490, 408 }, + [116] = { 78.9, 28.9, 490, 459 }, + [117] = { 75.7, 28.8, 490, 499 }, + [118] = { 69, 28.8, 490, 558 }, + [119] = { 77, 28.4, 490, 395 }, + [120] = { 62.6, 27, 490, 526 }, + [121] = { 39.7, 26.9, 490, 569 }, + [122] = { 68.3, 25.4, 490, 319 }, + [123] = { 63.4, 23.1, 490, 509 }, + [124] = { 72, 23.1, 490, 430 }, + [125] = { 43.9, 21.4, 490, 418 }, + [126] = { 72.2, 21.2, 490, 523 }, + [127] = { 30.1, 21.2, 490, 521 }, + [128] = { 66.2, 21.1, 490, 424 }, + [129] = { 37.8, 20.6, 490, 314 }, + [130] = { 59.2, 20.2, 490, 477 }, + [131] = { 46.2, 19.6, 490, 489 }, + [132] = { 69.8, 18.8, 490, 372 }, + [133] = { 56.1, 18.6, 490, 372 }, + [134] = { 31.3, 18.5, 490, 401 }, + [135] = { 43.8, 16.8, 490, 424 }, + [136] = { 62.6, 16.6, 490, 585 }, + [137] = { 50, 15.6, 490, 314 }, + [138] = { 60.9, 15.1, 490, 380 }, + [139] = { 46.8, 15.1, 490, 577 }, + [140] = { 39.4, 14.5, 490, 402 }, + [141] = { 51.5, 13.5, 490, 379 }, + [142] = { 51.5, 13.5, 490, 414 }, + [143] = { 47.3, 12.9, 490, 551 }, + [144] = { 56.5, 12.3, 490, 549 }, + [145] = { 58.3, 10.8, 490, 346 }, + [146] = { 57.3, 10.1, 490, 463 }, + [147] = { 58.2, 8.8, 490, 359 }, + [148] = { 55.7, 7.9, 490, 584 }, + [149] = { 80.8, 65.6, 1377, 504 }, + [150] = { 82.1, 43, 1377, 414 }, + [151] = { 78.4, 41.6, 1377, 337 }, + }, + }, + [164779] = { + ["coords"] = { + [1] = { 32, 35.2, 440, 597 }, + [2] = { 32.9, 34.5, 440, 527 }, + [3] = { 31.7, 33, 440, 526 }, + [4] = { 32.3, 28.7, 440, 564 }, + [5] = { 32.3, 25.1, 440, 519 }, + [6] = { 32.8, 22.9, 440, 513 }, + [7] = { 32.8, 22.9, 440, 558 }, + [8] = { 31.4, 17.5, 440, 459 }, + [9] = { 45.8, 92.6, 490, 350 }, + [10] = { 50, 92.4, 490, 342 }, + [11] = { 44.2, 88.8, 490, 373 }, + [12] = { 51.9, 87.4, 490, 537 }, + [13] = { 42.8, 86.2, 490, 519 }, + [14] = { 62, 85.3, 490, 373 }, + [15] = { 57.4, 82.6, 490, 303 }, + [16] = { 38.2, 81.8, 490, 306 }, + [17] = { 31.1, 81.3, 490, 406 }, + [18] = { 69.4, 80, 490, 483 }, + [19] = { 40.7, 79.9, 490, 446 }, + [20] = { 65.2, 79.8, 490, 309 }, + [21] = { 29.8, 79.1, 490, 526 }, + [22] = { 58.6, 78.4, 490, 544 }, + [23] = { 60.4, 77.5, 490, 467 }, + [24] = { 70, 77.2, 490, 390 }, + [25] = { 29, 76.9, 490, 431 }, + [26] = { 33.9, 76.9, 490, 459 }, + [27] = { 56.9, 76.1, 490, 399 }, + [28] = { 63.1, 75.3, 490, 515 }, + [29] = { 40.5, 75.3, 490, 372 }, + [30] = { 43.9, 74.7, 490, 388 }, + [31] = { 71.7, 73.7, 490, 450 }, + [32] = { 56.3, 73.6, 490, 552 }, + [33] = { 32.7, 73.5, 490, 382 }, + [34] = { 66.7, 73.2, 490, 313 }, + [35] = { 75, 70.5, 490, 308 }, + [36] = { 30.3, 70.5, 490, 473 }, + [37] = { 62.3, 70.3, 490, 432 }, + [38] = { 27.5, 70.2, 490, 402 }, + [39] = { 69.5, 69.5, 490, 509 }, + [40] = { 36.1, 69, 490, 362 }, + [41] = { 60.9, 68.5, 490, 428 }, + [42] = { 62.4, 68.4, 490, 542 }, + [43] = { 25.1, 67, 490, 301 }, + [44] = { 37.8, 66.5, 490, 386 }, + [45] = { 42.8, 66, 490, 318 }, + [46] = { 45.4, 65.9, 490, 451 }, + [47] = { 58.2, 65.9, 490, 346 }, + [48] = { 73, 65.5, 490, 394 }, + [49] = { 29.7, 64.8, 490, 442 }, + [50] = { 70.2, 64.1, 490, 459 }, + [51] = { 74.4, 63.9, 490, 348 }, + [52] = { 71.7, 63.4, 490, 385 }, + [53] = { 25.7, 63.3, 490, 395 }, + [54] = { 30.8, 63.3, 490, 351 }, + [55] = { 79.9, 62, 490, 597 }, + [56] = { 51.3, 61.6, 490, 342 }, + [57] = { 75.3, 61.5, 490, 306 }, + [58] = { 21.9, 61.4, 490, 504 }, + [59] = { 47, 61, 490, 493 }, + [60] = { 56.2, 60.6, 490, 598 }, + [61] = { 81.6, 60.6, 490, 527 }, + [62] = { 59.5, 60.2, 490, 351 }, + [63] = { 68.4, 59.8, 490, 553 }, + [64] = { 60.3, 59.7, 490, 341 }, + [65] = { 26.1, 59.5, 490, 508 }, + [66] = { 23, 59.2, 490, 391 }, + [67] = { 23.7, 58.9, 490, 346 }, + [68] = { 74.8, 58.8, 490, 388 }, + [69] = { 79.4, 57.9, 490, 526 }, + [70] = { 76.7, 57.7, 490, 422 }, + [71] = { 74.4, 57.1, 490, 311 }, + [72] = { 35.8, 54.6, 490, 568 }, + [73] = { 25.8, 53.8, 490, 567 }, + [74] = { 73.8, 53.4, 490, 320 }, + [75] = { 42.9, 52.8, 490, 306 }, + [76] = { 72.8, 51.9, 490, 391 }, + [77] = { 29, 51.7, 490, 529 }, + [78] = { 68, 51.4, 490, 333 }, + [79] = { 26.8, 50.5, 490, 427 }, + [80] = { 20.6, 50, 490, 323 }, + [81] = { 40.6, 50, 490, 315 }, + [82] = { 58.1, 49.9, 490, 357 }, + [83] = { 80.5, 49.8, 490, 564 }, + [84] = { 59.8, 49.4, 490, 435 }, + [85] = { 66.7, 47, 490, 570 }, + [86] = { 72.9, 46.8, 490, 379 }, + [87] = { 27.7, 46.4, 490, 333 }, + [88] = { 43, 45.5, 490, 332 }, + [89] = { 33.8, 44.3, 490, 478 }, + [90] = { 76.6, 43.8, 490, 321 }, + [91] = { 80.6, 43.1, 490, 519 }, + [92] = { 71.1, 42.9, 490, 458 }, + [93] = { 24, 42.8, 490, 600 }, + [94] = { 38.1, 41.9, 490, 547 }, + [95] = { 62.1, 40.5, 490, 576 }, + [96] = { 67.7, 40.4, 490, 369 }, + [97] = { 23.1, 40.2, 490, 414 }, + [98] = { 75.9, 40.2, 490, 521 }, + [99] = { 78.2, 40.1, 490, 405 }, + [100] = { 25.6, 39.8, 490, 378 }, + [101] = { 81.5, 39, 490, 513 }, + [102] = { 81.5, 39, 490, 558 }, + [103] = { 19.7, 38.9, 490, 337 }, + [104] = { 53.7, 38.8, 490, 350 }, + [105] = { 45.4, 38.7, 490, 503 }, + [106] = { 75.1, 37.6, 490, 316 }, + [107] = { 72.3, 35.5, 490, 583 }, + [108] = { 69.6, 35, 490, 405 }, + [109] = { 51.8, 35, 490, 540 }, + [110] = { 42.5, 34, 490, 550 }, + [111] = { 72.1, 33.2, 490, 496 }, + [112] = { 34.7, 33.2, 490, 521 }, + [113] = { 33, 29.6, 490, 416 }, + [114] = { 74.8, 29.5, 490, 473 }, + [115] = { 26.4, 29.2, 490, 408 }, + [116] = { 78.9, 28.9, 490, 459 }, + [117] = { 75.7, 28.8, 490, 499 }, + [118] = { 69, 28.8, 490, 558 }, + [119] = { 77, 28.4, 490, 395 }, + [120] = { 62.6, 27, 490, 526 }, + [121] = { 39.7, 26.9, 490, 569 }, + [122] = { 68.3, 25.4, 490, 319 }, + [123] = { 63.4, 23.1, 490, 509 }, + [124] = { 72, 23.1, 490, 430 }, + [125] = { 43.9, 21.4, 490, 418 }, + [126] = { 72.2, 21.2, 490, 523 }, + [127] = { 30.1, 21.2, 490, 521 }, + [128] = { 66.2, 21.1, 490, 424 }, + [129] = { 37.8, 20.6, 490, 314 }, + [130] = { 59.2, 20.2, 490, 477 }, + [131] = { 46.2, 19.6, 490, 489 }, + [132] = { 69.8, 18.8, 490, 372 }, + [133] = { 56.1, 18.6, 490, 372 }, + [134] = { 31.3, 18.5, 490, 401 }, + [135] = { 43.8, 16.8, 490, 424 }, + [136] = { 62.6, 16.6, 490, 585 }, + [137] = { 50, 15.6, 490, 314 }, + [138] = { 60.9, 15.1, 490, 380 }, + [139] = { 46.8, 15.1, 490, 577 }, + [140] = { 39.4, 14.5, 490, 402 }, + [141] = { 51.5, 13.5, 490, 379 }, + [142] = { 51.5, 13.5, 490, 414 }, + [143] = { 47.3, 12.9, 490, 551 }, + [144] = { 56.5, 12.3, 490, 549 }, + [145] = { 58.3, 10.8, 490, 346 }, + [146] = { 57.3, 10.1, 490, 463 }, + [147] = { 58.2, 8.8, 490, 359 }, + [148] = { 55.7, 7.9, 490, 584 }, + [149] = { 80.8, 65.6, 1377, 504 }, + [150] = { 82.1, 43, 1377, 414 }, + [151] = { 78.4, 41.6, 1377, 337 }, + }, + }, + [164780] = { + ["coords"] = { + [1] = { 32, 35.2, 440, 597 }, + [2] = { 32.9, 34.5, 440, 527 }, + [3] = { 31.7, 33, 440, 526 }, + [4] = { 32.3, 28.7, 440, 564 }, + [5] = { 32.3, 25.1, 440, 519 }, + [6] = { 32.8, 22.9, 440, 513 }, + [7] = { 32.8, 22.9, 440, 558 }, + [8] = { 31.4, 17.5, 440, 459 }, + [9] = { 45.8, 92.6, 490, 350 }, + [10] = { 50, 92.4, 490, 342 }, + [11] = { 44.2, 88.8, 490, 373 }, + [12] = { 51.9, 87.4, 490, 537 }, + [13] = { 42.8, 86.2, 490, 519 }, + [14] = { 62, 85.3, 490, 373 }, + [15] = { 57.4, 82.6, 490, 303 }, + [16] = { 38.2, 81.8, 490, 306 }, + [17] = { 31.1, 81.3, 490, 406 }, + [18] = { 69.4, 80, 490, 483 }, + [19] = { 40.7, 79.9, 490, 446 }, + [20] = { 65.2, 79.8, 490, 309 }, + [21] = { 29.8, 79.1, 490, 526 }, + [22] = { 58.6, 78.4, 490, 544 }, + [23] = { 60.4, 77.5, 490, 467 }, + [24] = { 70, 77.2, 490, 390 }, + [25] = { 29, 76.9, 490, 431 }, + [26] = { 33.9, 76.9, 490, 459 }, + [27] = { 56.9, 76.1, 490, 399 }, + [28] = { 63.1, 75.3, 490, 515 }, + [29] = { 40.5, 75.3, 490, 372 }, + [30] = { 43.9, 74.7, 490, 388 }, + [31] = { 71.7, 73.7, 490, 450 }, + [32] = { 56.3, 73.6, 490, 552 }, + [33] = { 32.7, 73.5, 490, 382 }, + [34] = { 66.7, 73.2, 490, 313 }, + [35] = { 75, 70.5, 490, 308 }, + [36] = { 30.3, 70.5, 490, 473 }, + [37] = { 62.3, 70.3, 490, 432 }, + [38] = { 27.5, 70.2, 490, 402 }, + [39] = { 69.5, 69.5, 490, 509 }, + [40] = { 36.1, 69, 490, 362 }, + [41] = { 60.9, 68.5, 490, 428 }, + [42] = { 62.4, 68.4, 490, 542 }, + [43] = { 25.1, 67, 490, 301 }, + [44] = { 37.8, 66.5, 490, 386 }, + [45] = { 42.8, 66, 490, 318 }, + [46] = { 45.4, 65.9, 490, 451 }, + [47] = { 58.2, 65.9, 490, 346 }, + [48] = { 73, 65.5, 490, 394 }, + [49] = { 29.7, 64.8, 490, 442 }, + [50] = { 70.2, 64.1, 490, 459 }, + [51] = { 74.4, 63.9, 490, 348 }, + [52] = { 71.7, 63.4, 490, 385 }, + [53] = { 25.7, 63.3, 490, 395 }, + [54] = { 30.8, 63.3, 490, 351 }, + [55] = { 79.9, 62, 490, 597 }, + [56] = { 51.3, 61.6, 490, 342 }, + [57] = { 75.3, 61.5, 490, 306 }, + [58] = { 21.9, 61.4, 490, 504 }, + [59] = { 47, 61, 490, 493 }, + [60] = { 56.2, 60.6, 490, 598 }, + [61] = { 81.6, 60.6, 490, 527 }, + [62] = { 59.5, 60.2, 490, 351 }, + [63] = { 68.4, 59.8, 490, 553 }, + [64] = { 60.3, 59.7, 490, 341 }, + [65] = { 26.1, 59.5, 490, 508 }, + [66] = { 23, 59.2, 490, 391 }, + [67] = { 23.7, 58.9, 490, 346 }, + [68] = { 74.8, 58.8, 490, 388 }, + [69] = { 79.4, 57.9, 490, 526 }, + [70] = { 76.7, 57.7, 490, 422 }, + [71] = { 74.4, 57.1, 490, 311 }, + [72] = { 35.8, 54.6, 490, 568 }, + [73] = { 25.8, 53.8, 490, 567 }, + [74] = { 73.8, 53.4, 490, 320 }, + [75] = { 42.9, 52.8, 490, 306 }, + [76] = { 72.8, 51.9, 490, 391 }, + [77] = { 29, 51.7, 490, 529 }, + [78] = { 68, 51.4, 490, 333 }, + [79] = { 26.8, 50.5, 490, 427 }, + [80] = { 20.6, 50, 490, 323 }, + [81] = { 40.6, 50, 490, 315 }, + [82] = { 58.1, 49.9, 490, 357 }, + [83] = { 80.5, 49.8, 490, 564 }, + [84] = { 59.8, 49.4, 490, 435 }, + [85] = { 66.7, 47, 490, 570 }, + [86] = { 72.9, 46.8, 490, 379 }, + [87] = { 27.7, 46.4, 490, 333 }, + [88] = { 43, 45.5, 490, 332 }, + [89] = { 33.8, 44.3, 490, 478 }, + [90] = { 76.6, 43.8, 490, 321 }, + [91] = { 80.6, 43.1, 490, 519 }, + [92] = { 71.1, 42.9, 490, 458 }, + [93] = { 24, 42.8, 490, 600 }, + [94] = { 38.1, 41.9, 490, 547 }, + [95] = { 62.1, 40.5, 490, 576 }, + [96] = { 67.7, 40.4, 490, 369 }, + [97] = { 23.1, 40.2, 490, 414 }, + [98] = { 75.9, 40.2, 490, 521 }, + [99] = { 78.2, 40.1, 490, 405 }, + [100] = { 25.6, 39.8, 490, 378 }, + [101] = { 81.5, 39, 490, 513 }, + [102] = { 81.5, 39, 490, 558 }, + [103] = { 19.7, 38.9, 490, 337 }, + [104] = { 53.7, 38.8, 490, 350 }, + [105] = { 45.4, 38.7, 490, 503 }, + [106] = { 75.1, 37.6, 490, 316 }, + [107] = { 72.3, 35.5, 490, 583 }, + [108] = { 69.6, 35, 490, 405 }, + [109] = { 51.8, 35, 490, 540 }, + [110] = { 42.5, 34, 490, 550 }, + [111] = { 72.1, 33.2, 490, 496 }, + [112] = { 34.7, 33.2, 490, 521 }, + [113] = { 33, 29.6, 490, 416 }, + [114] = { 74.8, 29.5, 490, 473 }, + [115] = { 26.4, 29.2, 490, 408 }, + [116] = { 78.9, 28.9, 490, 459 }, + [117] = { 75.7, 28.8, 490, 499 }, + [118] = { 69, 28.8, 490, 558 }, + [119] = { 77, 28.4, 490, 395 }, + [120] = { 62.6, 27, 490, 526 }, + [121] = { 39.7, 26.9, 490, 569 }, + [122] = { 68.3, 25.4, 490, 319 }, + [123] = { 63.4, 23.1, 490, 509 }, + [124] = { 72, 23.1, 490, 430 }, + [125] = { 43.9, 21.4, 490, 418 }, + [126] = { 72.2, 21.2, 490, 523 }, + [127] = { 30.1, 21.2, 490, 521 }, + [128] = { 66.2, 21.1, 490, 424 }, + [129] = { 37.8, 20.6, 490, 314 }, + [130] = { 59.2, 20.2, 490, 477 }, + [131] = { 46.2, 19.6, 490, 489 }, + [132] = { 69.8, 18.8, 490, 372 }, + [133] = { 56.1, 18.6, 490, 372 }, + [134] = { 31.3, 18.5, 490, 401 }, + [135] = { 43.8, 16.8, 490, 424 }, + [136] = { 62.6, 16.6, 490, 585 }, + [137] = { 50, 15.6, 490, 314 }, + [138] = { 60.9, 15.1, 490, 380 }, + [139] = { 46.8, 15.1, 490, 577 }, + [140] = { 39.4, 14.5, 490, 402 }, + [141] = { 51.5, 13.5, 490, 379 }, + [142] = { 51.5, 13.5, 490, 414 }, + [143] = { 47.3, 12.9, 490, 551 }, + [144] = { 56.5, 12.3, 490, 549 }, + [145] = { 58.3, 10.8, 490, 346 }, + [146] = { 57.3, 10.1, 490, 463 }, + [147] = { 58.2, 8.8, 490, 359 }, + [148] = { 55.7, 7.9, 490, 584 }, + [149] = { 80.8, 65.6, 1377, 504 }, + [150] = { 82.1, 43, 1377, 414 }, + [151] = { 78.4, 41.6, 1377, 337 }, + }, + }, + [164781] = { + ["coords"] = { + [1] = { 32, 35.2, 440, 597 }, + [2] = { 32.9, 34.5, 440, 527 }, + [3] = { 31.7, 33, 440, 526 }, + [4] = { 32.3, 28.7, 440, 564 }, + [5] = { 32.3, 25.1, 440, 519 }, + [6] = { 32.8, 22.9, 440, 513 }, + [7] = { 32.8, 22.9, 440, 558 }, + [8] = { 31.4, 17.5, 440, 459 }, + [9] = { 45.8, 92.6, 490, 350 }, + [10] = { 50, 92.4, 490, 342 }, + [11] = { 44.2, 88.8, 490, 373 }, + [12] = { 51.9, 87.4, 490, 537 }, + [13] = { 42.8, 86.2, 490, 519 }, + [14] = { 62, 85.3, 490, 373 }, + [15] = { 57.4, 82.6, 490, 303 }, + [16] = { 38.2, 81.8, 490, 306 }, + [17] = { 31.1, 81.3, 490, 406 }, + [18] = { 69.4, 80, 490, 483 }, + [19] = { 40.7, 79.9, 490, 446 }, + [20] = { 65.2, 79.8, 490, 309 }, + [21] = { 29.8, 79.1, 490, 526 }, + [22] = { 58.6, 78.4, 490, 544 }, + [23] = { 60.4, 77.5, 490, 467 }, + [24] = { 70, 77.2, 490, 390 }, + [25] = { 29, 76.9, 490, 431 }, + [26] = { 33.9, 76.9, 490, 459 }, + [27] = { 56.9, 76.1, 490, 399 }, + [28] = { 63.1, 75.3, 490, 515 }, + [29] = { 40.5, 75.3, 490, 372 }, + [30] = { 43.9, 74.7, 490, 388 }, + [31] = { 71.7, 73.7, 490, 450 }, + [32] = { 56.3, 73.6, 490, 552 }, + [33] = { 32.7, 73.5, 490, 382 }, + [34] = { 66.7, 73.2, 490, 313 }, + [35] = { 75, 70.5, 490, 308 }, + [36] = { 30.3, 70.5, 490, 473 }, + [37] = { 62.3, 70.3, 490, 432 }, + [38] = { 27.5, 70.2, 490, 402 }, + [39] = { 69.5, 69.5, 490, 509 }, + [40] = { 36.1, 69, 490, 362 }, + [41] = { 60.9, 68.5, 490, 428 }, + [42] = { 62.4, 68.4, 490, 542 }, + [43] = { 25.1, 67, 490, 301 }, + [44] = { 37.8, 66.5, 490, 386 }, + [45] = { 42.8, 66, 490, 318 }, + [46] = { 45.4, 65.9, 490, 451 }, + [47] = { 58.2, 65.9, 490, 346 }, + [48] = { 73, 65.5, 490, 394 }, + [49] = { 29.7, 64.8, 490, 442 }, + [50] = { 70.2, 64.1, 490, 459 }, + [51] = { 74.4, 63.9, 490, 348 }, + [52] = { 71.7, 63.4, 490, 385 }, + [53] = { 25.7, 63.3, 490, 395 }, + [54] = { 30.8, 63.3, 490, 351 }, + [55] = { 79.9, 62, 490, 597 }, + [56] = { 51.3, 61.6, 490, 342 }, + [57] = { 75.3, 61.5, 490, 306 }, + [58] = { 21.9, 61.4, 490, 504 }, + [59] = { 47, 61, 490, 493 }, + [60] = { 56.2, 60.6, 490, 598 }, + [61] = { 81.6, 60.6, 490, 527 }, + [62] = { 59.5, 60.2, 490, 351 }, + [63] = { 68.4, 59.8, 490, 553 }, + [64] = { 60.3, 59.7, 490, 341 }, + [65] = { 26.1, 59.5, 490, 508 }, + [66] = { 23, 59.2, 490, 391 }, + [67] = { 23.7, 58.9, 490, 346 }, + [68] = { 74.8, 58.8, 490, 388 }, + [69] = { 79.4, 57.9, 490, 526 }, + [70] = { 76.7, 57.7, 490, 422 }, + [71] = { 74.4, 57.1, 490, 311 }, + [72] = { 35.8, 54.6, 490, 568 }, + [73] = { 25.8, 53.8, 490, 567 }, + [74] = { 73.8, 53.4, 490, 320 }, + [75] = { 42.9, 52.8, 490, 306 }, + [76] = { 72.8, 51.9, 490, 391 }, + [77] = { 29, 51.7, 490, 529 }, + [78] = { 68, 51.4, 490, 333 }, + [79] = { 26.8, 50.5, 490, 427 }, + [80] = { 20.6, 50, 490, 323 }, + [81] = { 40.6, 50, 490, 315 }, + [82] = { 58.1, 49.9, 490, 357 }, + [83] = { 80.5, 49.8, 490, 564 }, + [84] = { 59.8, 49.4, 490, 435 }, + [85] = { 66.7, 47, 490, 570 }, + [86] = { 72.9, 46.8, 490, 379 }, + [87] = { 27.7, 46.4, 490, 333 }, + [88] = { 43, 45.5, 490, 332 }, + [89] = { 33.8, 44.3, 490, 478 }, + [90] = { 76.6, 43.8, 490, 321 }, + [91] = { 80.6, 43.1, 490, 519 }, + [92] = { 71.1, 42.9, 490, 458 }, + [93] = { 24, 42.8, 490, 600 }, + [94] = { 38.1, 41.9, 490, 547 }, + [95] = { 62.1, 40.5, 490, 576 }, + [96] = { 67.7, 40.4, 490, 369 }, + [97] = { 23.1, 40.2, 490, 414 }, + [98] = { 75.9, 40.2, 490, 521 }, + [99] = { 78.2, 40.1, 490, 405 }, + [100] = { 25.6, 39.8, 490, 378 }, + [101] = { 81.5, 39, 490, 513 }, + [102] = { 81.5, 39, 490, 558 }, + [103] = { 19.7, 38.9, 490, 337 }, + [104] = { 53.7, 38.8, 490, 350 }, + [105] = { 45.4, 38.7, 490, 503 }, + [106] = { 75.1, 37.6, 490, 316 }, + [107] = { 72.3, 35.5, 490, 583 }, + [108] = { 69.6, 35, 490, 405 }, + [109] = { 51.8, 35, 490, 540 }, + [110] = { 42.5, 34, 490, 550 }, + [111] = { 72.1, 33.2, 490, 496 }, + [112] = { 34.7, 33.2, 490, 521 }, + [113] = { 33, 29.6, 490, 416 }, + [114] = { 74.8, 29.5, 490, 473 }, + [115] = { 26.4, 29.2, 490, 408 }, + [116] = { 78.9, 28.9, 490, 459 }, + [117] = { 75.7, 28.8, 490, 499 }, + [118] = { 69, 28.8, 490, 558 }, + [119] = { 77, 28.4, 490, 395 }, + [120] = { 62.6, 27, 490, 526 }, + [121] = { 39.7, 26.9, 490, 569 }, + [122] = { 68.3, 25.4, 490, 319 }, + [123] = { 63.4, 23.1, 490, 509 }, + [124] = { 72, 23.1, 490, 430 }, + [125] = { 43.9, 21.4, 490, 418 }, + [126] = { 72.2, 21.2, 490, 523 }, + [127] = { 30.1, 21.2, 490, 521 }, + [128] = { 66.2, 21.1, 490, 424 }, + [129] = { 37.8, 20.6, 490, 314 }, + [130] = { 59.2, 20.2, 490, 477 }, + [131] = { 46.2, 19.6, 490, 489 }, + [132] = { 69.8, 18.8, 490, 372 }, + [133] = { 56.1, 18.6, 490, 372 }, + [134] = { 31.3, 18.5, 490, 401 }, + [135] = { 43.8, 16.8, 490, 424 }, + [136] = { 62.6, 16.6, 490, 585 }, + [137] = { 50, 15.6, 490, 314 }, + [138] = { 60.9, 15.1, 490, 380 }, + [139] = { 46.8, 15.1, 490, 577 }, + [140] = { 39.4, 14.5, 490, 402 }, + [141] = { 51.5, 13.5, 490, 379 }, + [142] = { 51.5, 13.5, 490, 414 }, + [143] = { 47.3, 12.9, 490, 551 }, + [144] = { 56.5, 12.3, 490, 549 }, + [145] = { 58.3, 10.8, 490, 346 }, + [146] = { 57.3, 10.1, 490, 463 }, + [147] = { 58.2, 8.8, 490, 359 }, + [148] = { 55.7, 7.9, 490, 584 }, + [149] = { 80.8, 65.6, 1377, 504 }, + [150] = { 82.1, 43, 1377, 414 }, + [151] = { 78.4, 41.6, 1377, 337 }, + }, + }, + [164798] = { + ["coords"] = { + [1] = { 44.5, 10.2, 357, 2 }, + [2] = { 44.6, 10.2, 357, 2 }, + [3] = { 44.5, 10.1, 357, 2 }, + }, + }, + [164819] = { + ["coords"] = { + [1] = { 61.2, 53.7, 1584, 600 }, + }, + }, + [164840] = "_", + [164868] = { + ["coords"] = { + [1] = { 3.9, 46.7, 3, 2 }, + [2] = { 83.1, 37.9, 51, 2 }, + }, + ["fac"] = "H", + }, + [164869] = { + ["coords"] = { + [1] = { 56.3, 23, 1584, 25 }, + }, + }, + [164870] = { + ["coords"] = { + [1] = { 44.6, 28.9, 17, 180 }, + [2] = { 44.5, 28.8, 17, 180 }, + [3] = { 44.4, 27.6, 17, 180 }, + [4] = { 44.3, 27.6, 17, 180 }, + [5] = { 44.4, 27.4, 17, 180 }, + }, + }, + [164885] = { + ["coords"] = { + [1] = { 40.7, 78.3, 361, 7200 }, + }, + }, + [164886] = { + ["coords"] = { + [1] = { 52.9, 87.8, 361, 7200 }, + }, + }, + [164887] = { + ["coords"] = { + [1] = { 50, 80, 361, 7200 }, + [2] = { 4.8, 96.1, 616, 7200 }, + }, + }, + [164888] = { + ["coords"] = { + [1] = { 40.1, 85.2, 361, 7200 }, + }, + }, + [164891] = { + ["coords"] = { + [1] = { 47.3, 75.6, 11, 7200 }, + [2] = { 5.1, 37, 5602, 7200 }, + }, + }, + [164908] = { + ["coords"] = { + [1] = { 71, 58.5, 1519, 900 }, + }, + }, + [164909] = { + ["coords"] = { + [1] = { 45.4, 65, 357, 2 }, + }, + ["fac"] = "A", + }, + [164911] = { + ["coords"] = { + [1] = { 50.7, 47.9, 1584, 99999 }, + [2] = { 51.5, 47.2, 1584, 99999 }, + [3] = { 51.7, 47, 1584, 99999 }, + }, + }, + [164953] = { + ["coords"] = { + [1] = { 73.3, 56.3, 357, 0 }, + }, + ["fac"] = "A", + }, + [164954] = { + ["coords"] = { + [1] = { 72.1, 63.7, 357, 2 }, + }, + ["fac"] = "A", + }, + [164955] = { + ["coords"] = { + [1] = { 56.5, 12.5, 490, 2 }, + }, + }, + [164956] = { + ["coords"] = { + [1] = { 23.9, 59.2, 490, 2 }, + }, + }, + [164957] = { + ["coords"] = { + [1] = { 77.2, 50, 490, 2 }, + }, + }, + [164958] = { + ["coords"] = { + [1] = { 41.5, 80.5, 490, 180 }, + [2] = { 35.9, 78.7, 490, 180 }, + [3] = { 63.3, 75.2, 490, 180 }, + [4] = { 41.7, 73.8, 490, 180 }, + [5] = { 44.6, 73.8, 490, 180 }, + [6] = { 29.7, 71.7, 490, 180 }, + [7] = { 53.3, 70.4, 490, 180 }, + [8] = { 47.3, 69.4, 490, 180 }, + [9] = { 41.8, 69.4, 490, 180 }, + [10] = { 34, 68.2, 490, 180 }, + [11] = { 66.8, 67.9, 490, 180 }, + [12] = { 27.8, 67.1, 490, 180 }, + [13] = { 32.1, 66.9, 490, 180 }, + [14] = { 73.1, 63.3, 490, 180 }, + [15] = { 74.3, 63, 490, 180 }, + [16] = { 32.9, 61, 490, 180 }, + [17] = { 28.8, 59.2, 490, 180 }, + [18] = { 43.2, 58.5, 490, 180 }, + [19] = { 71.8, 57.4, 490, 180 }, + [20] = { 25.9, 55.6, 490, 180 }, + [21] = { 75.3, 54.6, 490, 180 }, + [22] = { 70.5, 54.6, 490, 180 }, + [23] = { 24.1, 53.8, 490, 180 }, + [24] = { 31.2, 52.7, 490, 180 }, + [25] = { 41.3, 50.3, 490, 180 }, + [26] = { 24.8, 49.5, 490, 180 }, + [27] = { 72.9, 47.2, 490, 180 }, + [28] = { 27.8, 46, 490, 180 }, + [29] = { 33.6, 45.2, 490, 180 }, + [30] = { 73.9, 44.3, 490, 180 }, + [31] = { 33.5, 42.7, 490, 180 }, + [32] = { 44.6, 42.4, 490, 180 }, + [33] = { 59, 41.6, 490, 180 }, + [34] = { 37.7, 39.9, 490, 180 }, + [35] = { 47.5, 39.6, 490, 180 }, + [36] = { 33.7, 39.1, 490, 180 }, + [37] = { 58, 36.1, 490, 180 }, + [38] = { 41.5, 35.1, 490, 180 }, + [39] = { 63.9, 34.3, 490, 180 }, + [40] = { 49.2, 33.6, 490, 180 }, + [41] = { 66.4, 32.9, 490, 180 }, + [42] = { 51, 31.5, 490, 180 }, + [43] = { 56.4, 31.4, 490, 180 }, + [44] = { 69.9, 28, 490, 180 }, + [45] = { 37.9, 27.8, 490, 180 }, + [46] = { 61.9, 23.7, 490, 180 }, + [47] = { 33.8, 23.3, 490, 180 }, + [48] = { 38.3, 23.1, 490, 180 }, + [49] = { 38.3, 19.3, 490, 180 }, + [50] = { 59.8, 18.1, 490, 180 }, + [51] = { 63.5, 18.1, 490, 180 }, + [52] = { 56.2, 16.7, 490, 180 }, + [53] = { 51.7, 15.4, 490, 180 }, + [54] = { 48, 14.2, 490, 180 }, + }, + }, + [165554] = { + ["coords"] = { + [1] = { 62, 56, 1584, 25 }, + }, + }, + [165557] = { + ["coords"] = { + [1] = { 46.1, 14.3, 14, 900 }, + [2] = { 45.3, 13.2, 14, 300 }, + [3] = { 48.4, 99.7, 1637, 300 }, + }, + }, + [165618] = { + ["coords"] = { + [1] = { 83.8, 32.7, 85, 900 }, + [2] = { 45.5, 69.4, 796, 900 }, + }, + }, + [165619] = { + ["coords"] = { + [1] = { 83.8, 32.7, 85, 900 }, + [2] = { 45.8, 70.7, 796, 900 }, + }, + }, + [165620] = { + ["coords"] = { + [1] = { 83.8, 32.6, 85, 900 }, + [2] = { 44.8, 67, 796, 900 }, + }, + }, + [165621] = { + ["coords"] = { + [1] = { 83.7, 32.5, 85, 900 }, + [2] = { 44.5, 65.8, 796, 900 }, + }, + }, + [165622] = { + ["coords"] = { + [1] = { 52.4, 25.6, 5163, 7200 }, + }, + }, + [165623] = { + ["coords"] = { + [1] = { 52.4, 25.2, 5163, 7200 }, + }, + }, + [165624] = { + ["coords"] = { + [1] = { 52.4, 24.8, 5163, 7200 }, + }, + }, + [165625] = { + ["coords"] = { + [1] = { 52.8, 25.2, 5163, 7200 }, + }, + }, + [165626] = { + ["coords"] = { + [1] = { 52.8, 24.8, 5163, 7200 }, + }, + }, + [165627] = { + ["coords"] = { + [1] = { 52.8, 25.6, 5163, 7200 }, + }, + }, + [165628] = { + ["coords"] = { + [1] = { 45.2, 25.2, 5163, 7200 }, + }, + }, + [165629] = { + ["coords"] = { + [1] = { 45.2, 25.6, 5163, 7200 }, + }, + }, + [165630] = { + ["coords"] = { + [1] = { 45.2, 24.8, 5163, 7200 }, + }, + }, + [165631] = { + ["coords"] = { + [1] = { 45.7, 25.2, 5163, 7200 }, + }, + }, + [165632] = { + ["coords"] = { + [1] = { 45.7, 24.8, 5163, 7200 }, + }, + }, + [165633] = { + ["coords"] = { + [1] = { 45.7, 25.6, 5163, 7200 }, + }, + }, + [165637] = { + ["coords"] = { + [1] = { 36.6, 33.1, 17, 300 }, + [2] = { 61, 10.3, 215, 300 }, + }, + }, + [165658] = { + ["coords"] = { + [1] = { 5.2, 94.4, 3, 2700 }, + [2] = { 90.4, 53.6, 25, 2700 }, + [3] = { 88.2, 71.8, 46, 2700 }, + [4] = { 31.4, 70.9, 46, 2700 }, + [5] = { 29.8, 70.5, 46, 2700 }, + [6] = { 25.5, 70, 46, 2700 }, + [7] = { 87.5, 69.6, 46, 2700 }, + [8] = { 55.4, 68, 46, 2700 }, + [9] = { 37.1, 64.9, 46, 2700 }, + [10] = { 76.6, 63.3, 46, 2700 }, + [11] = { 86.4, 62.5, 46, 2700 }, + [12] = { 62.5, 61.7, 46, 2700 }, + [13] = { 54.6, 60.1, 46, 2700 }, + [14] = { 47.4, 59.8, 46, 2700 }, + [15] = { 56.8, 59.6, 46, 2700 }, + [16] = { 36.6, 58.6, 46, 2700 }, + [17] = { 30.4, 57.3, 46, 2700 }, + [18] = { 75.4, 55.8, 46, 2700 }, + [19] = { 26.6, 54.7, 46, 2700 }, + [20] = { 51.8, 53.6, 46, 2700 }, + [21] = { 45.5, 53.5, 46, 2700 }, + [22] = { 92.7, 50, 46, 2700 }, + [23] = { 85.8, 48, 46, 2700 }, + [24] = { 41.8, 46.5, 46, 2700 }, + [25] = { 76.8, 46.4, 46, 2700 }, + [26] = { 59.1, 46.1, 46, 2700 }, + [27] = { 81.7, 45.7, 46, 2700 }, + [28] = { 79.6, 45.5, 46, 2700 }, + [29] = { 76.2, 45.2, 46, 2700 }, + [30] = { 83.2, 45.1, 46, 2700 }, + [31] = { 77, 44, 46, 2700 }, + [32] = { 80.4, 43.9, 46, 2700 }, + [33] = { 64.5, 43.7, 46, 2700 }, + [34] = { 81.7, 43.3, 46, 2700 }, + [35] = { 49.2, 43.2, 46, 2700 }, + [36] = { 77.1, 42.8, 46, 2700 }, + [37] = { 20.7, 42.7, 46, 2700 }, + [38] = { 81.9, 42.5, 46, 2700 }, + [39] = { 93.2, 42.4, 46, 2700 }, + [40] = { 82.7, 42.4, 46, 2700 }, + [41] = { 80.4, 40.5, 46, 2700 }, + [42] = { 81.1, 40.4, 46, 2700 }, + [43] = { 71.7, 39.7, 46, 2700 }, + [44] = { 71.6, 39.2, 46, 2700 }, + [45] = { 81.3, 38.9, 46, 2700 }, + [46] = { 60.9, 38.7, 46, 2700 }, + [47] = { 93.4, 36.7, 46, 2700 }, + [48] = { 85.2, 35.7, 46, 2700 }, + [49] = { 81.2, 35.3, 46, 2700 }, + [50] = { 55.2, 34.1, 46, 2700 }, + [51] = { 47.2, 33.1, 46, 2700 }, + [52] = { 64.5, 32, 46, 2700 }, + [53] = { 95.5, 31.8, 46, 2700 }, + [54] = { 15.1, 30.1, 46, 2700 }, + [55] = { 94.4, 29.2, 46, 2700 }, + [56] = { 91.3, 28.6, 46, 2700 }, + [57] = { 38.8, 28.1, 46, 2700 }, + [58] = { 87.2, 24.7, 46, 2700 }, + [59] = { 62.6, 24.6, 46, 2700 }, + [60] = { 79.5, 24.6, 46, 2700 }, + [61] = { 73.3, 24.1, 46, 2700 }, + [62] = { 57.3, 23.4, 46, 2700 }, + [63] = { 86.9, 21.9, 46, 2700 }, + [64] = { 66.3, 21.7, 46, 2700 }, + [65] = { 48.5, 99.4, 51, 2700 }, + [66] = { 72.7, 93.3, 51, 2700 }, + [67] = { 57.6, 82.6, 51, 2700 }, + [68] = { 73.8, 82, 51, 2700 }, + [69] = { 22.6, 79.1, 51, 2700 }, + [70] = { 36.4, 77.6, 51, 2700 }, + [71] = { 19.9, 77.3, 51, 2700 }, + [72] = { 25.2, 75.4, 51, 2700 }, + [73] = { 51.6, 75, 51, 2700 }, + [74] = { 73.3, 73.2, 51, 2700 }, + [75] = { 38.1, 71, 51, 2700 }, + [76] = { 58.2, 69.2, 51, 2700 }, + [77] = { 26.4, 66.7, 51, 2700 }, + [78] = { 44.3, 66.6, 51, 2700 }, + [79] = { 30.4, 65.5, 51, 2700 }, + [80] = { 64.3, 63.5, 51, 2700 }, + [81] = { 39.8, 62.6, 51, 2700 }, + [82] = { 64.3, 60.4, 51, 2700 }, + [83] = { 39.4, 55.2, 51, 2700 }, + [84] = { 49.1, 51.2, 51, 2700 }, + [85] = { 40.9, 50.5, 51, 2700 }, + [86] = { 29.8, 48.9, 51, 2700 }, + [87] = { 51.8, 48.4, 51, 2700 }, + [88] = { 37.9, 46, 51, 2700 }, + [89] = { 57.7, 44.3, 51, 2700 }, + [90] = { 34.4, 44, 51, 2700 }, + [91] = { 60.7, 43.8, 51, 2700 }, + [92] = { 48.9, 43, 51, 2700 }, + [93] = { 41.2, 41.3, 51, 2700 }, + [94] = { 17.6, 39.8, 51, 2700 }, + [95] = { 40.3, 39.3, 51, 2700 }, + [96] = { 31.5, 38.7, 51, 2700 }, + [97] = { 26, 38.4, 51, 2700 }, + [98] = { 41.9, 38.1, 51, 2700 }, + [99] = { 23.3, 37.4, 51, 2700 }, + [100] = { 50.5, 36.9, 51, 2700 }, + [101] = { 17.8, 35.8, 51, 2700 }, + [102] = { 43.9, 33.6, 51, 2700 }, + [103] = { 49.6, 33.4, 51, 2700 }, + [104] = { 16.4, 32.6, 51, 2700 }, + [105] = { 67.9, 31.9, 51, 2700 }, + [106] = { 56.8, 31.5, 51, 2700 }, + [107] = { 33.1, 26.8, 51, 2700 }, + [108] = { 60.7, 26.3, 51, 2700 }, + [109] = { 44, 26, 51, 2700 }, + [110] = { 39.8, 25.6, 51, 2700 }, + [111] = { 23.9, 24.9, 51, 2700 }, + [112] = { 21.8, 23.9, 51, 2700 }, + [113] = { 40.1, 21.7, 51, 2700 }, + [114] = { 50.3, 96.3, 1584, 604800 }, + [115] = { 54.7, 94.6, 1584, 604800 }, + [116] = { 47, 93.5, 1584, 604800 }, + [117] = { 52.1, 86.3, 1584, 604800 }, + [118] = { 53.7, 79.7, 1584, 604800 }, + [119] = { 50.5, 76.3, 1584, 604800 }, + [120] = { 46.9, 69.3, 1584, 604800 }, + [121] = { 57.9, 69.1, 1584, 604800 }, + [122] = { 52.3, 69, 1584, 604800 }, + [123] = { 42.6, 68.8, 1584, 604800 }, + [124] = { 36.8, 68.6, 1584, 604800 }, + [125] = { 34.3, 68.4, 1584, 604800 }, + [126] = { 54.2, 66.4, 1584, 604800 }, + [127] = { 45.2, 66.2, 1584, 604800 }, + [128] = { 38.9, 65.7, 1584, 604800 }, + [129] = { 46.8, 60.3, 1584, 604800 }, + [130] = { 36.1, 59.7, 1584, 604800 }, + [131] = { 64.8, 49.6, 1584, 604800 }, + [132] = { 66.6, 46.9, 1584, 604800 }, + [133] = { 66.1, 43.3, 1584, 604800 }, + [134] = { 60, 42.2, 1584, 604800 }, + [135] = { 65.2, 42, 1584, 604800 }, + [136] = { 64, 40.3, 1584, 604800 }, + [137] = { 62, 39.3, 1584, 604800 }, + [138] = { 61.7, 24.4, 1584, 604800 }, + [139] = { 63.4, 23.5, 1584, 604800 }, + [140] = { 53.8, 89.6, 2717, 604800 }, + [141] = { 51.2, 88.9, 2717, 604800 }, + [142] = { 58.5, 88.4, 2717, 604800 }, + [143] = { 77, 87.8, 2717, 604800 }, + [144] = { 72.7, 85.9, 2717, 604800 }, + [145] = { 79.9, 84.4, 2717, 604800 }, + [146] = { 49.8, 81.4, 2717, 604800 }, + [147] = { 57.2, 80.6, 2717, 604800 }, + [148] = { 33.1, 79.8, 2717, 604800 }, + [149] = { 75.9, 79.5, 2717, 604800 }, + [150] = { 37.3, 78.5, 2717, 604800 }, + [151] = { 73.6, 77.9, 2717, 604800 }, + [152] = { 74, 77.7, 2717, 604800 }, + [153] = { 72.7, 75.5, 2717, 604800 }, + [154] = { 72.1, 73.8, 2717, 604800 }, + [155] = { 57, 73.8, 2717, 604800 }, + [156] = { 47.5, 73.7, 2717, 604800 }, + [157] = { 69.5, 70.2, 2717, 604800 }, + [158] = { 64.1, 68.3, 2717, 604800 }, + [159] = { 67.4, 68.2, 2717, 604800 }, + [160] = { 79.1, 66.1, 2717, 604800 }, + [161] = { 40.8, 66, 2717, 604800 }, + [162] = { 33.6, 65.4, 2717, 604800 }, + [163] = { 76.9, 65.1, 2717, 604800 }, + [164] = { 69.2, 60, 2717, 604800 }, + [165] = { 35, 57.7, 2717, 604800 }, + [166] = { 41.4, 53.4, 2717, 604800 }, + [167] = { 65.1, 53.2, 2717, 604800 }, + [168] = { 43, 50.1, 2717, 604800 }, + [169] = { 57.7, 49.3, 2717, 604800 }, + [170] = { 37.4, 48.5, 2717, 604800 }, + [171] = { 48.3, 44.6, 2717, 604800 }, + [172] = { 54, 43.1, 2717, 604800 }, + [173] = { 57.1, 37.9, 2717, 604800 }, + [174] = { 53.6, 37.7, 2717, 604800 }, + [175] = { 59, 37, 2717, 604800 }, + [176] = { 55, 36.2, 2717, 604800 }, + [177] = { 63.4, 35.8, 2717, 604800 }, + [178] = { 68.1, 28.2, 2717, 604800 }, + [179] = { 64, 57.3, 5103, 604800 }, + [180] = { 62, 31.2, 5103, 604800 }, + [181] = { 96.6, 71.3, 5581, 2700 }, + [182] = { 91.5, 59.9, 5581, 2700 }, + [183] = { 95.2, 44, 5581, 2700 }, + [184] = { 93.3, 42.8, 5581, 2700 }, + [185] = { 97, 41.5, 5581, 2700 }, + [186] = { 97.8, 35.4, 5581, 2700 }, + [187] = { 91.8, 16.9, 5581, 2700 }, + [188] = { 97.5, 16, 5581, 2700 }, + [189] = { 95.7, 15.3, 5581, 2700 }, + [190] = { 91.9, 14.2, 5581, 2700 }, + [191] = { 90.9, 11.9, 5581, 2700 }, + [192] = { 96.1, 6.7, 5581, 2700 }, + [193] = { 94.6, 5.9, 5581, 2700 }, + }, + }, + [165738] = { + ["coords"] = { + [1] = { 41.9, 74.1, 15, 300 }, + [2] = { 53.3, 49.1, 1584, 600 }, + [3] = { 53.3, 49, 1584, 600 }, + }, + }, + [165739] = { + ["coords"] = { + [1] = { 53.3, 48.9, 1584, 600 }, + [2] = { 53.2, 48.6, 1584, 600 }, + }, + }, + [165760] = { + ["coords"] = { + [1] = { 49.6, 30.4, 361, 180 }, + [2] = { 4.1, 7.3, 616, 180 }, + }, + }, + [166863] = { + ["coords"] = { + [1] = { 68.7, 56.7, 490, 2 }, + }, + }, + [166872] = { + ["coords"] = { + [1] = { 46.7, 87.6, 1584, 604800 }, + }, + }, + [167291] = { + ["coords"] = { + [1] = { 21.4, 47.2, 46, 7200 }, + [2] = { 97.2, 75.4, 5581, 7200 }, + }, + }, + [169216] = { + ["coords"] = { + [1] = { 32, 28.8, 440, 0 }, + [2] = { 80, 49.9, 490, 0 }, + }, + }, + [169243] = { + ["coords"] = { + [1] = { 58.4, 18.8, 1584, 0 }, + }, + }, + [169294] = { + ["coords"] = { + [1] = { 54.1, 40.8, 46, 7200 }, + }, + }, + [169969] = { + ["coords"] = { + [1] = { 51.9, 41.3, 17, 25 }, + [2] = { 62.3, 37.5, 17, 900 }, + [3] = { 53.7, 57.3, 5602, 300 }, + }, + }, + [170001] = { + ["coords"] = { + [1] = { 76.1, 45.1, 10, 3600 }, + [2] = { 17, 33.6, 10, 3600 }, + [3] = { 44.6, 74.5, 130, 7200 }, + [4] = { 45.8, 2.4, 5179, 7200 }, + }, + }, + [170002] = { + ["coords"] = { + [1] = { 44.1, 74.1, 130, 7200 }, + [2] = { 45.7, 71.5, 130, 7200 }, + [3] = { 47.2, 71.3, 130, 7200 }, + [4] = { 45.1, 2, 5179, 7200 }, + }, + }, + [170348] = { + ["coords"] = { + [1] = { 85.4, 69, 12, 900 }, + [2] = { 46.1, 62.7, 12, 900 }, + [3] = { 61, 64.4, 1519, 300 }, + }, + }, + [170353] = { + ["coords"] = { + [1] = { 38, 9, 1337, 3600 }, + }, + }, + [170439] = { + ["coords"] = { + [1] = { 52.1, 88.7, 1584, 600 }, + }, + }, + [170440] = { + ["coords"] = { + [1] = { 51.4, 93.5, 1584, 600 }, + }, + }, + [170441] = { + ["coords"] = { + [1] = { 45.9, 57.7, 1584, 600 }, + }, + }, + [170442] = { + ["coords"] = { + [1] = { 48.5, 74.2, 1584, 600 }, + }, + }, + [170443] = { + ["coords"] = { + [1] = { 49.3, 74.5, 1584, 600 }, + }, + }, + [170444] = { + ["coords"] = { + [1] = { 41.3, 63, 1584, 600 }, + }, + }, + [170445] = { + ["coords"] = { + [1] = { 42.1, 63.2, 1584, 600 }, + }, + }, + [170446] = { + ["coords"] = { + [1] = { 52.9, 55.1, 1584, 600 }, + }, + }, + [170447] = { + ["coords"] = { + [1] = { 53.7, 53, 1584, 600 }, + }, + }, + [170448] = { + ["coords"] = { + [1] = { 51.1, 51.1, 1584, 600 }, + }, + }, + [170449] = { + ["coords"] = { + [1] = { 52.7, 50.2, 1584, 600 }, + }, + }, + [170450] = { + ["coords"] = { + [1] = { 51.6, 52.5, 1584, 600 }, + }, + }, + [170451] = { + ["coords"] = { + [1] = { 54.3, 51.7, 1584, 600 }, + }, + }, + [170452] = { + ["coords"] = { + [1] = { 54.1, 47.9, 1584, 600 }, + }, + }, + [170453] = { + ["coords"] = { + [1] = { 54.1, 51.1, 1584, 600 }, + }, + }, + [170454] = { + ["coords"] = { + [1] = { 54.1, 51.3, 1584, 600 }, + }, + }, + [170455] = { + ["coords"] = { + [1] = { 54.3, 50.1, 1584, 600 }, + }, + }, + [170456] = { + ["coords"] = { + [1] = { 60.4, 42.3, 1584, 600 }, + }, + }, + [170457] = { + ["coords"] = { + [1] = { 62.1, 41.1, 1584, 600 }, + }, + }, + [170458] = { + ["coords"] = { + [1] = { 63.2, 41.4, 1584, 600 }, + }, + }, + [170459] = { + ["coords"] = { + [1] = { 64.1, 42.4, 1584, 600 }, + }, + }, + [170460] = { + ["coords"] = { + [1] = { 64.7, 42.6, 1584, 600 }, + }, + }, + [170461] = { + ["coords"] = { + [1] = { 65.7, 44.1, 1584, 600 }, + }, + }, + [170462] = { + ["coords"] = { + [1] = { 66.1, 43.6, 1584, 600 }, + }, + }, + [170463] = { + ["coords"] = { + [1] = { 66.1, 46.3, 1584, 600 }, + }, + }, + [170464] = { + ["coords"] = { + [1] = { 66, 47.1, 1584, 600 }, + }, + }, + [170465] = { + ["coords"] = { + [1] = { 64.6, 47.7, 1584, 600 }, + }, + }, + [170466] = { + ["coords"] = { + [1] = { 64.6, 48.4, 1584, 600 }, + }, + }, + [170467] = { + ["coords"] = { + [1] = { 64.6, 48.9, 1584, 600 }, + }, + }, + [170468] = { + ["coords"] = { + [1] = { 64.9, 48.6, 1584, 600 }, + }, + }, + [170469] = { + ["coords"] = { + [1] = { 54.8, 56.3, 1584, 600 }, + }, + }, + [170470] = { + ["coords"] = { + [1] = { 54.9, 56.5, 1584, 600 }, + }, + }, + [170471] = { + ["coords"] = { + [1] = { 55.1, 55.5, 1584, 600 }, + }, + }, + [170472] = { + ["coords"] = { + [1] = { 82.6, 13.1, 1584, 600 }, + }, + }, + [170473] = { + ["coords"] = { + [1] = { 82.9, 13.1, 1584, 600 }, + }, + }, + [170474] = { + ["coords"] = { + [1] = { 82.7, 13.1, 1584, 600 }, + }, + }, + [170475] = { + ["coords"] = { + [1] = { 83.4, 13.1, 1584, 600 }, + }, + }, + [170476] = { + ["coords"] = { + [1] = { 83.3, 13.1, 1584, 600 }, + }, + }, + [170477] = { + ["coords"] = { + [1] = { 83.4, 13, 1584, 600 }, + }, + }, + [170478] = { + ["coords"] = { + [1] = { 83.3, 13, 1584, 600 }, + }, + }, + [170479] = { + ["coords"] = { + [1] = { 82.7, 13, 1584, 600 }, + }, + }, + [170480] = { + ["coords"] = { + [1] = { 82.6, 13, 1584, 600 }, + }, + }, + [170481] = { + ["coords"] = { + [1] = { 83.4, 12.8, 1584, 600 }, + }, + }, + [170482] = { + ["coords"] = { + [1] = { 83.3, 12.8, 1584, 600 }, + }, + }, + [170483] = { + ["coords"] = { + [1] = { 82.7, 12.8, 1584, 600 }, + }, + }, + [170484] = { + ["coords"] = { + [1] = { 82.6, 12.8, 1584, 600 }, + }, + }, + [170485] = { + ["coords"] = { + [1] = { 83.1, 13.1, 1584, 600 }, + }, + }, + [170486] = { + ["coords"] = { + [1] = { 83, 13.1, 1584, 600 }, + }, + }, + [170487] = { + ["coords"] = { + [1] = { 83.3, 7.9, 1584, 600 }, + }, + }, + [170488] = { + ["coords"] = { + [1] = { 82.9, 7.7, 1584, 600 }, + }, + }, + [170489] = { + ["coords"] = { + [1] = { 83.1, 7.7, 1584, 600 }, + }, + }, + [170490] = { + ["coords"] = { + [1] = { 83.3, 7.7, 1584, 600 }, + }, + }, + [170491] = { + ["coords"] = { + [1] = { 83, 7.7, 1584, 600 }, + }, + }, + [170492] = { + ["coords"] = { + [1] = { 82.7, 7.7, 1584, 600 }, + }, + }, + [170493] = { + ["coords"] = { + [1] = { 82.7, 7.9, 1584, 600 }, + }, + }, + [170494] = { + ["coords"] = { + [1] = { 82.6, 7.9, 1584, 600 }, + }, + }, + [170495] = { + ["coords"] = { + [1] = { 82.6, 7.7, 1584, 600 }, + }, + }, + [170496] = { + ["coords"] = { + [1] = { 83.4, 7.9, 1584, 600 }, + }, + }, + [170497] = { + ["coords"] = { + [1] = { 82.6, 8.1, 1584, 600 }, + }, + }, + [170498] = { + ["coords"] = { + [1] = { 82.7, 8.1, 1584, 600 }, + }, + }, + [170499] = { + ["coords"] = { + [1] = { 83.3, 8.1, 1584, 600 }, + }, + }, + [170500] = { + ["coords"] = { + [1] = { 83.4, 8.1, 1584, 600 }, + }, + }, + [170501] = { + ["coords"] = { + [1] = { 83.4, 7.7, 1584, 600 }, + }, + }, + [170502] = { + ["coords"] = { + [1] = { 84, 7.9, 1584, 600 }, + }, + }, + [170503] = { + ["coords"] = { + [1] = { 83.7, 7.9, 1584, 600 }, + }, + }, + [170504] = { + ["coords"] = { + [1] = { 83.8, 7.9, 1584, 600 }, + }, + }, + [170505] = { + ["coords"] = { + [1] = { 82.4, 7.9, 1584, 600 }, + }, + }, + [170506] = { + ["coords"] = { + [1] = { 82.3, 7.9, 1584, 600 }, + }, + }, + [170507] = { + ["coords"] = { + [1] = { 82.1, 7.9, 1584, 600 }, + }, + }, + [170508] = { + ["coords"] = { + [1] = { 82, 7.9, 1584, 600 }, + }, + }, + [170509] = { + ["coords"] = { + [1] = { 82.4, 13, 1584, 600 }, + }, + }, + [170510] = { + ["coords"] = { + [1] = { 82.3, 13, 1584, 600 }, + }, + }, + [170511] = { + ["coords"] = { + [1] = { 82.1, 13, 1584, 600 }, + }, + }, + [170512] = { + ["coords"] = { + [1] = { 82, 13, 1584, 600 }, + }, + }, + [170513] = { + ["coords"] = { + [1] = { 83.6, 13, 1584, 600 }, + }, + }, + [170514] = { + ["coords"] = { + [1] = { 83.9, 13, 1584, 600 }, + }, + }, + [170515] = { + ["coords"] = { + [1] = { 84, 13, 1584, 600 }, + }, + }, + [170516] = { + ["coords"] = { + [1] = { 64.2, 17.3, 1584, 600 }, + }, + }, + [170517] = { + ["coords"] = { + [1] = { 64.2, 17.5, 1584, 600 }, + }, + }, + [170518] = { + ["coords"] = { + [1] = { 64.4, 17.3, 1584, 600 }, + }, + }, + [170519] = { + ["coords"] = { + [1] = { 64.4, 17.5, 1584, 600 }, + }, + }, + [170520] = { + ["coords"] = { + [1] = { 66.8, 17.3, 1584, 600 }, + }, + }, + [170521] = { + ["coords"] = { + [1] = { 66.8, 17.5, 1584, 600 }, + }, + }, + [170522] = { + ["coords"] = { + [1] = { 66.6, 17.5, 1584, 600 }, + }, + }, + [170523] = { + ["coords"] = { + [1] = { 66.8, 3.3, 1584, 600 }, + }, + }, + [170524] = { + ["coords"] = { + [1] = { 66.8, 3.5, 1584, 600 }, + }, + }, + [170525] = { + ["coords"] = { + [1] = { 66.6, 3.3, 1584, 600 }, + }, + }, + [170526] = { + ["coords"] = { + [1] = { 66.6, 3.5, 1584, 600 }, + }, + }, + [170527] = { + ["coords"] = { + [1] = { 64.4, 3.3, 1584, 600 }, + }, + }, + [170528] = { + ["coords"] = { + [1] = { 64.2, 3.3, 1584, 600 }, + }, + }, + [170529] = { + ["coords"] = { + [1] = { 64.2, 3.5, 1584, 600 }, + }, + }, + [170530] = { + ["coords"] = { + [1] = { 64.4, 3.5, 1584, 600 }, + }, + }, + [170531] = { + ["coords"] = { + [1] = { 63.5, 10.3, 1584, 600 }, + }, + }, + [170532] = { + ["coords"] = { + [1] = { 63.5, 10.5, 1584, 600 }, + }, + }, + [170533] = { + ["coords"] = { + [1] = { 64.1, 10.3, 1584, 600 }, + }, + }, + [170534] = { + ["coords"] = { + [1] = { 64.1, 10.6, 1584, 600 }, + }, + }, + [170535] = { + ["coords"] = { + [1] = { 64.5, 11.4, 1584, 600 }, + }, + }, + [170536] = { + ["coords"] = { + [1] = { 64.4, 11.4, 1584, 600 }, + }, + }, + [170537] = { + ["coords"] = { + [1] = { 65, 11.4, 1584, 600 }, + }, + }, + [170538] = { + ["coords"] = { + [1] = { 64.8, 11.4, 1584, 600 }, + }, + }, + [170539] = { + ["coords"] = { + [1] = { 66.5, 11.4, 1584, 600 }, + }, + }, + [170540] = { + ["coords"] = { + [1] = { 66.4, 11.4, 1584, 600 }, + }, + }, + [170541] = { + ["coords"] = { + [1] = { 66, 11.4, 1584, 600 }, + }, + }, + [170542] = { + ["coords"] = { + [1] = { 65.9, 11.4, 1584, 600 }, + }, + }, + [170543] = { + ["coords"] = { + [1] = { 66, 9.5, 1584, 600 }, + }, + }, + [170544] = { + ["coords"] = { + [1] = { 65.9, 9.5, 1584, 600 }, + }, + }, + [170545] = { + ["coords"] = { + [1] = { 66.4, 9.5, 1584, 600 }, + }, + }, + [170546] = { + ["coords"] = { + [1] = { 66.5, 9.5, 1584, 600 }, + }, + }, + [170547] = { + ["coords"] = { + [1] = { 65, 9.5, 1584, 600 }, + }, + }, + [170548] = { + ["coords"] = { + [1] = { 64.8, 9.5, 1584, 600 }, + }, + }, + [170549] = { + ["coords"] = { + [1] = { 64.5, 9.5, 1584, 600 }, + }, + }, + [170550] = { + ["coords"] = { + [1] = { 64.4, 9.5, 1584, 600 }, + }, + }, + [170551] = { + ["coords"] = { + [1] = { 85.8, 10.8, 1584, 600 }, + }, + }, + [170552] = { + ["coords"] = { + [1] = { 85.8, 10.1, 1584, 600 }, + }, + }, + [170553] = { + ["coords"] = { + [1] = { 85.8, 10.4, 1584, 600 }, + }, + }, + [170554] = { + ["coords"] = { + [1] = { 85.8, 10.6, 1584, 600 }, + }, + }, + [170555] = { + ["coords"] = { + [1] = { 61.4, 84.9, 1584, 600 }, + }, + }, + [170556] = { + ["coords"] = { + [1] = { 38, 80.2, 1584, 600 }, + }, + }, + [170557] = { + ["coords"] = { + [1] = { 39.7, 80.8, 1584, 600 }, + }, + }, + [170558] = { + ["coords"] = { + [1] = { 61.4, 15.9, 1584, 600 }, + }, + }, + [170559] = { + ["coords"] = { + [1] = { 43.3, 80.2, 1584, 600 }, + }, + }, + [170560] = { + ["coords"] = { + [1] = { 44.6, 74.4, 1584, 600 }, + }, + }, + [170561] = { + ["coords"] = { + [1] = { 47.1, 87.4, 1584, 600 }, + }, + }, + [170562] = { + ["coords"] = { + [1] = { 48.4, 96.9, 1584, 600 }, + }, + }, + [170563] = { + ["coords"] = { + [1] = { 55, 94.1, 1584, 600 }, + }, + }, + [170564] = { + ["coords"] = { + [1] = { 53.6, 89.7, 1584, 600 }, + }, + }, + [170565] = { + ["coords"] = { + [1] = { 54.3, 86.8, 1584, 600 }, + }, + }, + [170566] = { + ["coords"] = { + [1] = { 58.1, 75.9, 1584, 600 }, + }, + }, + [170567] = { + ["coords"] = { + [1] = { 56.3, 75.4, 1584, 600 }, + }, + }, + [170568] = { + ["coords"] = { + [1] = { 51.2, 72.8, 1584, 600 }, + }, + }, + [170569] = { + ["coords"] = { + [1] = { 52.2, 69.6, 1584, 600 }, + }, + }, + [170570] = { + ["coords"] = { + [1] = { 46.7, 75.1, 1584, 600 }, + }, + }, + [170571] = { + ["coords"] = { + [1] = { 55.6, 50.7, 1584, 600 }, + }, + }, + [170572] = { + ["coords"] = { + [1] = { 61.3, 5, 1584, 600 }, + }, + }, + [170573] = { + ["coords"] = { + [1] = { 72.1, 9.7, 1584, 600 }, + }, + }, + [170574] = { + ["coords"] = { + [1] = { 72.1, 11.2, 1584, 600 }, + }, + }, + [170575] = { + ["coords"] = { + [1] = { 79.9, 10.5, 1584, 600 }, + }, + }, + [170576] = { + ["coords"] = { + [1] = { 54.4, 22.3, 1584, 600 }, + }, + }, + [170577] = { + ["coords"] = { + [1] = { 58.9, 19.7, 1584, 600 }, + }, + }, + [170578] = { + ["coords"] = { + [1] = { 57.1, 38.2, 1584, 600 }, + }, + }, + [170579] = { + ["coords"] = { + [1] = { 56.2, 36.8, 1584, 600 }, + }, + }, + [170580] = { + ["coords"] = { + [1] = { 57.9, 39.5, 1584, 600 }, + }, + }, + [170581] = { + ["coords"] = { + [1] = { 55.4, 38.1, 1584, 600 }, + }, + }, + [170582] = { + ["coords"] = { + [1] = { 57.1, 40.8, 1584, 600 }, + }, + }, + [170583] = { + ["coords"] = { + [1] = { 54.5, 39.5, 1584, 600 }, + }, + }, + [170584] = { + ["coords"] = { + [1] = { 56.2, 42.2, 1584, 600 }, + }, + }, + [170592] = { + ["coords"] = { + [1] = { 58.8, 53.9, 16, 300 }, + [2] = { 86.1, 10.4, 1584, 600 }, + }, + }, + [170607] = { + ["coords"] = { + [1] = { 54, 52.4, 1584, 600 }, + }, + }, + [171556] = "_", + [171654] = { + ["coords"] = { + [1] = { 50, 88.7, 1537, 900 }, + }, + }, + [171656] = { + ["coords"] = { + [1] = { 53.5, 52.3, 876, 300 }, + [2] = { 53.8, 52, 876, 300 }, + [3] = { 53.3, 51.9, 876, 300 }, + [4] = { 53.8, 51.7, 876, 300 }, + [5] = { 53.3, 51.6, 876, 300 }, + [6] = { 53.6, 51.3, 876, 300 }, + [7] = { 50.4, 88.7, 1537, 900 }, + }, + }, + [171699] = "_", + [171722] = { + ["coords"] = { + [1] = { 36.7, 45.6, 1537, 900 }, + [2] = { 33.2, 53.9, 5179, 300 }, + [3] = { 33.3, 53.9, 5179, 300 }, + [4] = { 33.2, 53.7, 5179, 300 }, + [5] = { 33.3, 53.7, 5179, 300 }, + [6] = { 33.2, 53.5, 5179, 300 }, + [7] = { 33.3, 53.4, 5179, 300 }, + }, + }, + [171752] = "_", + [171938] = { + ["coords"] = { + [1] = { 43.8, 72.5, 14, 60 }, + [2] = { 45.3, 71.1, 14, 60 }, + [3] = { 44.2, 70.4, 14, 60 }, + [4] = { 40, 68.4, 14, 60 }, + [5] = { 39.9, 68.1, 14, 60 }, + [6] = { 44, 67.1, 14, 60 }, + [7] = { 44.1, 66.9, 14, 60 }, + [8] = { 42, 66.1, 14, 60 }, + [9] = { 42.1, 66, 14, 60 }, + [10] = { 47.3, 65.2, 14, 60 }, + [11] = { 40.2, 65.2, 14, 60 }, + [12] = { 44.2, 65.2, 14, 60 }, + [13] = { 43.8, 65.1, 14, 60 }, + [14] = { 44, 65.1, 14, 60 }, + [15] = { 40.1, 65, 14, 60 }, + [16] = { 44.7, 64.8, 14, 60 }, + [17] = { 45.7, 64.6, 14, 60 }, + [18] = { 45.7, 64.5, 14, 60 }, + [19] = { 40.8, 63.9, 14, 60 }, + [20] = { 42, 63.4, 14, 60 }, + [21] = { 41.9, 63.3, 14, 60 }, + [22] = { 45.7, 63.3, 14, 60 }, + [23] = { 42.1, 63.3, 14, 60 }, + [24] = { 39.6, 63, 14, 60 }, + [25] = { 46.1, 63, 14, 60 }, + [26] = { 46, 62.9, 14, 60 }, + [27] = { 39.7, 62.9, 14, 60 }, + [28] = { 47.2, 62.8, 14, 60 }, + [29] = { 43.8, 62.8, 14, 60 }, + [30] = { 43.5, 62.8, 14, 60 }, + [31] = { 44.8, 61.7, 14, 60 }, + [32] = { 44.9, 61.5, 14, 60 }, + [33] = { 46, 60.7, 14, 60 }, + [34] = { 46, 60.5, 14, 60 }, + [35] = { 46.8, 60.4, 14, 60 }, + [36] = { 40.5, 60.3, 14, 60 }, + [37] = { 46.8, 60.3, 14, 60 }, + [38] = { 46.9, 60.3, 14, 60 }, + [39] = { 44.8, 59.8, 14, 60 }, + [40] = { 44.9, 59.7, 14, 60 }, + [41] = { 41.5, 58.7, 14, 60 }, + [42] = { 42.5, 58.7, 14, 60 }, + [43] = { 41.6, 58.6, 14, 60 }, + [44] = { 44.6, 58.2, 14, 60 }, + [45] = { 42, 56.5, 14, 60 }, + [46] = { 66.1, 32.8, 17, 60 }, + [47] = { 66.1, 32.6, 17, 60 }, + }, + }, + [171939] = { + ["coords"] = { + [1] = { 45.9, 85.2, 361, 7200 }, + }, + }, + [171941] = { + ["coords"] = { + [1] = { 53.9, 52.4, 1584, 600 }, + }, + }, + [171942] = { + ["coords"] = { + [1] = { 48.3, 75.7, 361, 7200 }, + [2] = { 1.7, 88.3, 616, 7200 }, + }, + }, + [172911] = { + ["coords"] = { + [1] = { 57.9, 48.7, 1584, 600 }, + }, + }, + [172950] = { + ["coords"] = { + [1] = { 50.5, 74, 1637, 25 }, + [2] = { 53.6, 68.7, 1637, 25 }, + [3] = { 49.4, 34.2, 1637, 900 }, + }, + }, + [173047] = "_", + [173146] = { + ["coords"] = { + [1] = { 31, 48.9, 33, 25 }, + [2] = { 31.2, 48.7, 33, 25 }, + [3] = { 29.9, 48.6, 33, 25 }, + [4] = { 31, 48.5, 33, 300 }, + [5] = { 31.2, 48.1, 33, 300 }, + [6] = { 31.3, 47.9, 33, 25 }, + [7] = { 30.5, 46.7, 33, 25 }, + [8] = { 35.9, 37, 1637, 900 }, + }, + }, + [173221] = { + ["coords"] = { + [1] = { 3.8, 47.3, 3, 900 }, + [2] = { 45.4, 55.1, 8, 600 }, + [3] = { 42.4, 68.6, 14, 25 }, + [4] = { 51.9, 42.2, 14, 900 }, + [5] = { 42, 73.1, 15, 300 }, + [6] = { 50.6, 40.4, 17, 25 }, + [7] = { 52, 30.4, 17, 900 }, + [8] = { 47.9, 8.6, 17, 300 }, + [9] = { 27.3, 77.4, 33, 900 }, + [10] = { 26.7, 76.4, 33, 900 }, + [11] = { 32.5, 28.7, 33, 900 }, + [12] = { 61.2, 81.4, 36, 7200 }, + [13] = { 73.9, 33.1, 45, 7200 }, + [14] = { 90.9, 22.7, 46, 300 }, + [15] = { 83, 38.6, 51, 900 }, + [16] = { 43.4, 41.5, 130, 7200 }, + [17] = { 44.3, 76.4, 215, 25 }, + [18] = { 47, 60.3, 215, 900 }, + [19] = { 41.5, 33, 215, 25 }, + [20] = { 39, 28.9, 215, 900 }, + [21] = { 39.2, 24.4, 215, 25 }, + [22] = { 44.6, 22.7, 215, 25 }, + [23] = { 35.1, 21.8, 215, 25 }, + [24] = { 62.4, 19.7, 267, 7200 }, + [25] = { 74.9, 44, 357, 900 }, + [26] = { 88.7, 49.1, 405, 25 }, + [27] = { 31.1, 37.5, 440, 300 }, + [28] = { 78.3, 66.3, 490, 300 }, + [29] = { 50.7, 70.4, 1637, 900 }, + [30] = { 53.5, 65.2, 1637, 25 }, + [31] = { 62.3, 40.5, 1637, 900 }, + [32] = { 57.7, 79.6, 1638, 25 }, + [33] = { 45.2, 59.4, 1638, 900 }, + [34] = { 46.3, 37, 1638, 25 }, + [35] = { 72.9, 28.9, 1638, 25 }, + [36] = { 26.1, 24.6, 1638, 25 }, + [37] = { 14.6, 34.8, 5179, 300 }, + }, + ["fac"] = "AH", + }, + [173232] = { + ["coords"] = { + [1] = { 45.7, 56.8, 1584, 600 }, + }, + }, + [173234] = { + ["coords"] = { + [1] = { 52.1, 88.7, 1584, 600 }, + }, + }, + [173265] = { + ["coords"] = { + [1] = { 65.6, 62.2, 51, 2 }, + }, + ["fac"] = "AH", + }, + [173284] = { + ["coords"] = { + [1] = { 50.6, 18.3, 361, 7200 }, + }, + }, + [173324] = { + ["coords"] = { + [1] = { 50.6, 30.4, 361, 7200 }, + [2] = { 5.8, 7.4, 616, 7200 }, + }, + }, + [173327] = { + ["coords"] = { + [1] = { 55.2, 23.5, 361, 7200 }, + }, + }, + [174045] = { + ["coords"] = { + [1] = { 66.4, 23.8, 1584, 600 }, + }, + }, + [174407] = { + ["coords"] = { + [1] = { 50.2, 91, 1584, 600 }, + }, + }, + [174408] = { + ["coords"] = { + [1] = { 50.3, 91.2, 1584, 600 }, + }, + }, + [174409] = { + ["coords"] = { + [1] = { 50.2, 91.2, 1584, 600 }, + }, + }, + [174410] = { + ["coords"] = { + [1] = { 50.4, 91.1, 1584, 600 }, + }, + }, + [174411] = { + ["coords"] = { + [1] = { 48.3, 74.2, 1584, 600 }, + }, + }, + [174412] = { + ["coords"] = { + [1] = { 49.2, 74, 1584, 600 }, + }, + }, + [174413] = { + ["coords"] = { + [1] = { 49.3, 74.2, 1584, 600 }, + }, + }, + [174414] = { + ["coords"] = { + [1] = { 49.2, 73.7, 1584, 600 }, + }, + }, + [174415] = { + ["coords"] = { + [1] = { 49.2, 74.7, 1584, 600 }, + }, + }, + [174416] = { + ["coords"] = { + [1] = { 49.2, 75, 1584, 600 }, + }, + }, + [174417] = { + ["coords"] = { + [1] = { 49.3, 75.5, 1584, 600 }, + }, + }, + [174418] = { + ["coords"] = { + [1] = { 49.3, 75.2, 1584, 600 }, + }, + }, + [174419] = { + ["coords"] = { + [1] = { 48.9, 74.5, 1584, 600 }, + }, + }, + [174420] = { + ["coords"] = { + [1] = { 48.9, 74.8, 1584, 600 }, + }, + }, + [174421] = { + ["coords"] = { + [1] = { 48.3, 74.5, 1584, 600 }, + }, + }, + [174422] = { + ["coords"] = { + [1] = { 48.3, 74.8, 1584, 600 }, + }, + }, + [174423] = { + ["coords"] = { + [1] = { 48.8, 74.8, 1584, 600 }, + }, + }, + [174424] = { + ["coords"] = { + [1] = { 48.5, 74.8, 1584, 600 }, + }, + }, + [174425] = { + ["coords"] = { + [1] = { 48.5, 74.5, 1584, 600 }, + }, + }, + [174426] = { + ["coords"] = { + [1] = { 48.8, 74.5, 1584, 600 }, + }, + }, + [174427] = { + ["coords"] = { + [1] = { 48.8, 74.2, 1584, 600 }, + }, + }, + [174428] = { + ["coords"] = { + [1] = { 48.9, 74.2, 1584, 600 }, + }, + }, + [174429] = { + ["coords"] = { + [1] = { 41.7, 63, 1584, 600 }, + }, + }, + [174430] = { + ["coords"] = { + [1] = { 41.6, 63.2, 1584, 600 }, + }, + }, + [174431] = { + ["coords"] = { + [1] = { 41.3, 63.2, 1584, 600 }, + }, + }, + [174432] = { + ["coords"] = { + [1] = { 41.3, 63.5, 1584, 600 }, + }, + }, + [174433] = { + ["coords"] = { + [1] = { 41.6, 63.5, 1584, 600 }, + }, + }, + [174434] = { + ["coords"] = { + [1] = { 41.1, 63.5, 1584, 600 }, + }, + }, + [174435] = { + ["coords"] = { + [1] = { 41.1, 63.2, 1584, 600 }, + }, + }, + [174436] = { + ["coords"] = { + [1] = { 41.7, 63.5, 1584, 600 }, + }, + }, + [174437] = { + ["coords"] = { + [1] = { 41.7, 63.2, 1584, 600 }, + }, + }, + [174438] = { + ["coords"] = { + [1] = { 41.1, 63, 1584, 600 }, + }, + }, + [174439] = { + ["coords"] = { + [1] = { 42, 63.7, 1584, 600 }, + }, + }, + [174440] = { + ["coords"] = { + [1] = { 42, 63.4, 1584, 600 }, + }, + }, + [174441] = { + ["coords"] = { + [1] = { 42, 62.7, 1584, 600 }, + }, + }, + [174442] = { + ["coords"] = { + [1] = { 41.6, 62.9, 1584, 600 }, + }, + }, + [174443] = { + ["coords"] = { + [1] = { 42.1, 62.9, 1584, 600 }, + }, + }, + [174444] = { + ["coords"] = { + [1] = { 42, 62.4, 1584, 600 }, + }, + }, + [174445] = { + ["coords"] = { + [1] = { 42.1, 64.2, 1584, 600 }, + }, + }, + [174446] = { + ["coords"] = { + [1] = { 42.1, 64, 1584, 600 }, + }, + }, + [174447] = { + ["coords"] = { + [1] = { 52.4, 53.8, 1584, 600 }, + }, + }, + [174448] = { + ["coords"] = { + [1] = { 52.7, 54.1, 1584, 600 }, + }, + }, + [174449] = { + ["coords"] = { + [1] = { 52.4, 54.4, 1584, 600 }, + }, + }, + [174450] = { + ["coords"] = { + [1] = { 52.5, 54.6, 1584, 600 }, + }, + }, + [174451] = { + ["coords"] = { + [1] = { 52.8, 54.3, 1584, 600 }, + }, + }, + [174452] = { + ["coords"] = { + [1] = { 52.4, 54.7, 1584, 600 }, + }, + }, + [174453] = { + ["coords"] = { + [1] = { 52.3, 54.5, 1584, 600 }, + }, + }, + [174454] = { + ["coords"] = { + [1] = { 52.8, 54.2, 1584, 600 }, + }, + }, + [174455] = { + ["coords"] = { + [1] = { 52.8, 54, 1584, 600 }, + }, + }, + [174456] = { + ["coords"] = { + [1] = { 52.7, 55.2, 1584, 600 }, + }, + }, + [174457] = { + ["coords"] = { + [1] = { 53.1, 54.9, 1584, 600 }, + }, + }, + [174458] = { + ["coords"] = { + [1] = { 53.2, 54.8, 1584, 600 }, + }, + }, + [174459] = { + ["coords"] = { + [1] = { 52.3, 53.9, 1584, 600 }, + }, + }, + [174460] = { + ["coords"] = { + [1] = { 53.3, 54.4, 1584, 600 }, + }, + }, + [174461] = { + ["coords"] = { + [1] = { 52.7, 51.5, 1584, 600 }, + }, + }, + [174462] = { + ["coords"] = { + [1] = { 53.6, 52.7, 1584, 600 }, + }, + }, + [174463] = { + ["coords"] = { + [1] = { 52.8, 51.7, 1584, 600 }, + }, + }, + [174464] = { + ["coords"] = { + [1] = { 53.2, 54.2, 1584, 600 }, + }, + }, + [174465] = { + ["coords"] = { + [1] = { 51.4, 50.8, 1584, 600 }, + }, + }, + [174466] = { + ["coords"] = { + [1] = { 52.3, 50.7, 1584, 600 }, + }, + }, + [174467] = { + ["coords"] = { + [1] = { 51.1, 51.4, 1584, 600 }, + }, + }, + [174468] = { + ["coords"] = { + [1] = { 51.2, 51.6, 1584, 600 }, + }, + }, + [174469] = { + ["coords"] = { + [1] = { 52.3, 50.9, 1584, 600 }, + }, + }, + [174470] = { + ["coords"] = { + [1] = { 51.1, 51.7, 1584, 600 }, + }, + }, + [174471] = { + ["coords"] = { + [1] = { 51, 51.5, 1584, 600 }, + }, + }, + [174472] = { + ["coords"] = { + [1] = { 52.4, 50.8, 1584, 600 }, + }, + }, + [174473] = { + ["coords"] = { + [1] = { 52.3, 50.6, 1584, 600 }, + }, + }, + [174474] = { + ["coords"] = { + [1] = { 50.9, 51.3, 1584, 600 }, + }, + }, + [174475] = { + ["coords"] = { + [1] = { 52.6, 50.7, 1584, 600 }, + }, + }, + [174476] = { + ["coords"] = { + [1] = { 52.8, 50.5, 1584, 600 }, + }, + }, + [174477] = { + ["coords"] = { + [1] = { 51.3, 51, 1584, 600 }, + }, + }, + [174478] = { + ["coords"] = { + [1] = { 53, 51.1, 1584, 600 }, + }, + }, + [174479] = { + ["coords"] = { + [1] = { 52.4, 49.4, 1584, 600 }, + }, + }, + [174480] = { + ["coords"] = { + [1] = { 52.6, 50, 1584, 600 }, + }, + }, + [174481] = { + ["coords"] = { + [1] = { 52.4, 49.7, 1584, 600 }, + }, + }, + [174482] = { + ["coords"] = { + [1] = { 52.9, 50.9, 1584, 600 }, + }, + }, + [174483] = { + ["coords"] = { + [1] = { 52.4, 51.6, 1584, 600 }, + }, + }, + [174484] = { + ["coords"] = { + [1] = { 52.5, 51.6, 1584, 600 }, + }, + }, + [174485] = { + ["coords"] = { + [1] = { 52.4, 51.4, 1584, 600 }, + }, + }, + [174486] = { + ["coords"] = { + [1] = { 52.3, 51.4, 1584, 600 }, + }, + }, + [174487] = { + ["coords"] = { + [1] = { 51.7, 53, 1584, 600 }, + }, + }, + [174488] = { + ["coords"] = { + [1] = { 51.6, 53.1, 1584, 600 }, + }, + }, + [174489] = { + ["coords"] = { + [1] = { 51.7, 53.4, 1584, 600 }, + }, + }, + [174490] = { + ["coords"] = { + [1] = { 51.4, 52.7, 1584, 600 }, + }, + }, + [174491] = { + ["coords"] = { + [1] = { 51.8, 53.3, 1584, 600 }, + }, + }, + [174492] = { + ["coords"] = { + [1] = { 51.9, 53.7, 1584, 600 }, + }, + }, + [174493] = { + ["coords"] = { + [1] = { 51.8, 53.8, 1584, 600 }, + }, + }, + [174494] = { + ["coords"] = { + [1] = { 51.9, 54, 1584, 600 }, + }, + }, + [174495] = { + ["coords"] = { + [1] = { 52, 53.9, 1584, 600 }, + }, + }, + [174496] = { + ["coords"] = { + [1] = { 51.4, 50.1, 1584, 600 }, + }, + }, + [174497] = { + ["coords"] = { + [1] = { 51.3, 50.2, 1584, 600 }, + }, + }, + [174498] = { + ["coords"] = { + [1] = { 51.3, 50.4, 1584, 600 }, + }, + }, + [174499] = { + ["coords"] = { + [1] = { 51.4, 50.3, 1584, 600 }, + }, + }, + [174500] = { + ["coords"] = { + [1] = { 51.2, 50.2, 1584, 600 }, + }, + }, + [174501] = { + ["coords"] = { + [1] = { 51.1, 50.3, 1584, 600 }, + }, + }, + [174502] = { + ["coords"] = { + [1] = { 51.2, 50.5, 1584, 600 }, + }, + }, + [174504] = { + ["coords"] = { + [1] = { 50.8, 50.6, 1584, 600 }, + }, + }, + [174505] = { + ["coords"] = { + [1] = { 50.7, 50.7, 1584, 600 }, + }, + }, + [174506] = { + ["coords"] = { + [1] = { 50.7, 50.9, 1584, 600 }, + }, + }, + [174507] = { + ["coords"] = { + [1] = { 50.8, 50.8, 1584, 600 }, + }, + }, + [174508] = { + ["coords"] = { + [1] = { 52.2, 49.9, 1584, 600 }, + }, + }, + [174509] = { + ["coords"] = { + [1] = { 52.1, 50, 1584, 600 }, + }, + }, + [174510] = { + ["coords"] = { + [1] = { 52.2, 50.2, 1584, 600 }, + }, + }, + [174511] = { + ["coords"] = { + [1] = { 52.3, 50.1, 1584, 600 }, + }, + }, + [174512] = { + ["coords"] = { + [1] = { 54.8, 50.3, 1584, 600 }, + }, + }, + [174513] = { + ["coords"] = { + [1] = { 54.7, 50.3, 1584, 600 }, + }, + }, + [174514] = { + ["coords"] = { + [1] = { 54.9, 50.5, 1584, 600 }, + }, + }, + [174515] = { + ["coords"] = { + [1] = { 55, 50.4, 1584, 600 }, + }, + }, + [174516] = { + ["coords"] = { + [1] = { 54.9, 50.2, 1584, 600 }, + }, + }, + [174517] = { + ["coords"] = { + [1] = { 54.6, 50.4, 1584, 600 }, + }, + }, + [174518] = { + ["coords"] = { + [1] = { 54.7, 50.6, 1584, 600 }, + }, + }, + [174519] = { + ["coords"] = { + [1] = { 54.8, 50.5, 1584, 600 }, + }, + }, + [174520] = { + ["coords"] = { + [1] = { 54.6, 52, 1584, 600 }, + }, + }, + [174521] = { + ["coords"] = { + [1] = { 54.4, 52.1, 1584, 600 }, + }, + }, + [174522] = { + ["coords"] = { + [1] = { 54.1, 51.7, 1584, 600 }, + }, + }, + [174523] = { + ["coords"] = { + [1] = { 54.7, 49.6, 1584, 600 }, + }, + }, + [174524] = { + ["coords"] = { + [1] = { 54.6, 49.4, 1584, 600 }, + }, + }, + [174525] = { + ["coords"] = { + [1] = { 54.5, 49.2, 1584, 600 }, + }, + }, + [174526] = { + ["coords"] = { + [1] = { 54.5, 49.5, 1584, 600 }, + }, + }, + [174527] = { + ["coords"] = { + [1] = { 54.4, 49.1, 1584, 600 }, + }, + }, + [174528] = { + ["coords"] = { + [1] = { 54.6, 49.7, 1584, 600 }, + }, + }, + [174529] = { + ["coords"] = { + [1] = { 54.4, 49.3, 1584, 600 }, + }, + }, + [174530] = { + ["coords"] = { + [1] = { 54.5, 49, 1584, 600 }, + }, + }, + [174531] = { + ["coords"] = { + [1] = { 54.3, 48.5, 1584, 600 }, + }, + }, + [174532] = { + ["coords"] = { + [1] = { 54.3, 48.8, 1584, 600 }, + }, + }, + [174533] = { + ["coords"] = { + [1] = { 54, 48.8, 1584, 600 }, + }, + }, + [174534] = { + ["coords"] = { + [1] = { 54.1, 49, 1584, 600 }, + }, + }, + [174535] = { + ["coords"] = { + [1] = { 54.2, 48.2, 1584, 600 }, + }, + }, + [174536] = { + ["coords"] = { + [1] = { 53.9, 51.1, 1584, 600 }, + }, + }, + [174537] = { + ["coords"] = { + [1] = { 54, 51.3, 1584, 600 }, + }, + }, + [174538] = { + ["coords"] = { + [1] = { 54.3, 50.3, 1584, 600 }, + }, + }, + [174539] = { + ["coords"] = { + [1] = { 61.2, 53, 1584, 600 }, + }, + }, + [174540] = { + ["coords"] = { + [1] = { 61.2, 52.8, 1584, 600 }, + }, + }, + [174541] = { + ["coords"] = { + [1] = { 61.1, 53, 1584, 600 }, + }, + }, + [174542] = { + ["coords"] = { + [1] = { 61.1, 52.8, 1584, 600 }, + }, + }, + [174543] = { + ["coords"] = { + [1] = { 59.4, 55.7, 1584, 600 }, + }, + }, + [174544] = { + ["coords"] = { + [1] = { 59.3, 55.6, 1584, 600 }, + }, + }, + [174545] = { + ["coords"] = { + [1] = { 59.4, 55.5, 1584, 600 }, + }, + }, + [174546] = { + ["coords"] = { + [1] = { 54.8, 56.6, 1584, 600 }, + }, + }, + [174547] = { + ["coords"] = { + [1] = { 54.7, 56.5, 1584, 600 }, + }, + }, + [174548] = { + ["coords"] = { + [1] = { 55.1, 55.6, 1584, 600 }, + }, + }, + [174549] = { + ["coords"] = { + [1] = { 57.4, 56.7, 1584, 600 }, + }, + }, + [174550] = { + ["coords"] = { + [1] = { 57.5, 56.9, 1584, 600 }, + }, + }, + [174551] = { + ["coords"] = { + [1] = { 57.4, 57, 1584, 600 }, + }, + }, + [174552] = { + ["coords"] = { + [1] = { 57.3, 56.9, 1584, 600 }, + }, + }, + [174553] = { + ["coords"] = { + [1] = { 62, 55.9, 1584, 600 }, + }, + }, + [174554] = { + ["coords"] = { + [1] = { 61.9, 56.1, 1584, 600 }, + }, + }, + [174555] = { + ["coords"] = { + [1] = { 61.7, 56.4, 1584, 600 }, + }, + }, + [174556] = { + ["coords"] = { + [1] = { 61.4, 56.4, 1584, 600 }, + }, + }, + [174557] = { + ["coords"] = { + [1] = { 61.2, 56, 1584, 600 }, + }, + }, + [174558] = { + ["coords"] = { + [1] = { 60.8, 55.4, 1584, 600 }, + }, + }, + [174559] = { + ["coords"] = { + [1] = { 62.1, 55.7, 1584, 600 }, + }, + }, + [174560] = { + ["coords"] = { + [1] = { 62.4, 55.4, 1584, 600 }, + }, + }, + [174561] = { + ["coords"] = { + [1] = { 62.4, 54.9, 1584, 600 }, + }, + }, + [174562] = { + ["coords"] = { + [1] = { 62.2, 54.6, 1584, 600 }, + }, + }, + [174563] = { + ["coords"] = { + [1] = { 62, 54.2, 1584, 600 }, + }, + }, + [174564] = { + ["coords"] = { + [1] = { 61.8, 53.9, 1584, 600 }, + }, + }, + [174565] = { + ["coords"] = { + [1] = { 62, 55.9, 1584, 600 }, + }, + }, + [174566] = { + ["coords"] = { + [1] = { 61, 55.7, 1584, 600 }, + }, + }, + [174594] = { + ["coords"] = { + [1] = { 63.3, 22.6, 361, 7200 }, + }, + }, + [174595] = { + ["coords"] = { + [1] = { 63.9, 6.1, 361, 7200 }, + }, + }, + [174596] = { + ["coords"] = { + [1] = { 55.8, 10.4, 361, 7200 }, + }, + }, + [174597] = { + ["coords"] = { + [1] = { 50.7, 13.9, 361, 7200 }, + }, + }, + [174598] = { + ["coords"] = { + [1] = { 50, 73.3, 148, 7200 }, + [2] = { 34.3, 52.2, 361, 7200 }, + }, + }, + [174599] = { + ["coords"] = { + [1] = { 55.8, 7, 361, 7200 }, + }, + }, + [174600] = { + ["coords"] = { + [1] = { 57.5, 20, 361, 7200 }, + }, + }, + [174601] = { + ["coords"] = { + [1] = { 45.4, 18.3, 361, 7200 }, + }, + }, + [174602] = { + ["coords"] = { + [1] = { 53.9, 46.7, 148, 7200 }, + [2] = { 38.8, 21.9, 361, 7200 }, + }, + }, + [174603] = { + ["coords"] = { + [1] = { 50, 70.2, 148, 7200 }, + [2] = { 34.3, 48.7, 361, 7200 }, + }, + }, + [174604] = { + ["coords"] = { + [1] = { 39, 59.1, 361, 7200 }, + }, + }, + [174605] = { + ["coords"] = { + [1] = { 49.4, 12.2, 361, 7200 }, + }, + }, + [174606] = { + ["coords"] = { + [1] = { 55.6, 44.3, 148, 7200 }, + [2] = { 40.7, 19.1, 361, 7200 }, + }, + }, + [174607] = { + ["coords"] = { + [1] = { 43, 47, 361, 7200 }, + }, + }, + [174608] = { + ["coords"] = { + [1] = { 57.1, 39.7, 148, 7200 }, + [2] = { 42.5, 13.9, 361, 7200 }, + }, + }, + [174682] = { + ["coords"] = { + [1] = { 43.5, 8.4, 490, 2 }, + }, + }, + [174683] = { + ["coords"] = { + [1] = { 41.8, 2.7, 490, 0 }, + }, + }, + [174684] = { + ["coords"] = { + [1] = { 50.7, 79.2, 148, 7200 }, + [2] = { 35.1, 58.9, 361, 7200 }, + }, + }, + [174686] = { + ["coords"] = { + [1] = { 49.7, 80.4, 148, 7200 }, + [2] = { 34.1, 60.2, 361, 7200 }, + }, + }, + [174698] = { + ["coords"] = { + [1] = { 51.4, 92.7, 1584, 600 }, + }, + }, + [174699] = { + ["coords"] = { + [1] = { 50.8, 92.9, 1584, 600 }, + }, + }, + [174708] = { + ["coords"] = { + [1] = { 36.6, 62, 361, 7200 }, + }, + }, + [174709] = { + ["coords"] = { + [1] = { 44.8, 41.7, 361, 7200 }, + }, + }, + [174712] = { + ["coords"] = { + [1] = { 40.1, 56.5, 361, 7200 }, + }, + }, + [174713] = { + ["coords"] = { + [1] = { 40.1, 44.3, 361, 7200 }, + }, + }, + [174728] = { + ["coords"] = { + [1] = { 54.1, 55.9, 15, 2 }, + }, + }, + [174744] = { + ["coords"] = { + [1] = { 69.7, 14.4, 1584, 600 }, + }, + }, + [174745] = { + ["coords"] = { + [1] = { 69.7, 6.5, 1584, 600 }, + }, + }, + [174860] = { + ["coords"] = {}, + }, + [174861] = { + ["coords"] = {}, + }, + [174863] = { + ["coords"] = { + [1] = { 72.6, 47.6, 440, 900 }, + [2] = { 1.5, 40.3, 5121, 900 }, + }, + }, + [174872] = { + ["coords"] = { + [1] = { 62.1, 39.5, 17, 900 }, + [2] = { 33.8, 17.8, 28, 300 }, + [3] = { 37.6, 66.9, 33, 300 }, + [4] = { 90.1, 32.5, 85, 300 }, + [5] = { 42.2, 53.4, 267, 300 }, + [6] = { 96.5, 15.6, 5179, 300 }, + }, + }, + [174875] = { + ["coords"] = { + [1] = { 44.8, 15.2, 28, 1200 }, + [2] = { 16.3, 98, 5225, 1200 }, + }, + }, + [174876] = { + ["coords"] = { + [1] = { 44.8, 15.1, 28, 1200 }, + [2] = { 16.4, 97.9, 5225, 1200 }, + }, + }, + [174877] = { + ["coords"] = { + [1] = { 44.9, 15.1, 28, 1200 }, + [2] = { 16.5, 97.9, 5225, 1200 }, + }, + }, + [174878] = { + ["coords"] = { + [1] = { 44.9, 15.2, 28, 1200 }, + [2] = { 16.5, 98, 5225, 1200 }, + }, + }, + [174879] = { + ["coords"] = { + [1] = { 44.9, 15.2, 28, 1200 }, + [2] = { 16.6, 98.1, 5225, 1200 }, + }, + }, + [174882] = { + ["coords"] = { + [1] = { 46.6, 14.1, 28, 1200 }, + [2] = { 18.9, 96.6, 5225, 1200 }, + }, + }, + [174883] = { + ["coords"] = { + [1] = { 47.3, 13.7, 28, 1200 }, + [2] = { 19.9, 96, 5225, 1200 }, + }, + }, + [174884] = { + ["coords"] = { + [1] = { 47.3, 13.8, 28, 1200 }, + [2] = { 19.9, 96.1, 5225, 1200 }, + }, + }, + [174885] = { + ["coords"] = { + [1] = { 46.3, 13.8, 28, 1200 }, + [2] = { 18.5, 96.1, 5225, 1200 }, + }, + }, + [174886] = { + ["coords"] = { + [1] = { 46.3, 13.8, 28, 1200 }, + [2] = { 18.5, 96.2, 5225, 1200 }, + }, + }, + [174887] = { + ["coords"] = { + [1] = { 46.8, 14.6, 28, 1200 }, + [2] = { 19.2, 97.2, 5225, 1200 }, + }, + }, + [174888] = { + ["coords"] = { + [1] = { 46.9, 14.6, 28, 1200 }, + [2] = { 19.2, 97.2, 5225, 1200 }, + }, + }, + [174889] = { + ["coords"] = { + [1] = { 46.8, 13, 28, 1200 }, + [2] = { 19.2, 95, 5225, 1200 }, + }, + }, + [174890] = { + ["coords"] = { + [1] = { 46.8, 13, 28, 1200 }, + [2] = { 19.2, 95, 5225, 1200 }, + }, + }, + [174891] = { + ["coords"] = { + [1] = { 47.2, 14.2, 28, 1200 }, + [2] = { 19.7, 96.7, 5225, 1200 }, + }, + }, + [174892] = { + ["coords"] = { + [1] = { 46.5, 13.3, 28, 1200 }, + [2] = { 18.8, 95.4, 5225, 1200 }, + }, + }, + [174893] = { + ["coords"] = { + [1] = { 46.5, 13.4, 28, 1200 }, + [2] = { 18.8, 95.5, 5225, 1200 }, + }, + }, + [174894] = { + ["coords"] = { + [1] = { 47.1, 13.3, 28, 1200 }, + [2] = { 19.6, 95.4, 5225, 1200 }, + }, + }, + [174895] = { + ["coords"] = { + [1] = { 47.2, 13.4, 28, 1200 }, + [2] = { 19.7, 95.5, 5225, 1200 }, + }, + }, + [174896] = { + ["coords"] = { + [1] = { 46.6, 13.9, 28, 1200 }, + [2] = { 18.9, 96.2, 5225, 1200 }, + }, + }, + [174897] = { + ["coords"] = { + [1] = { 46.7, 13.7, 28, 1200 }, + [2] = { 19, 96, 5225, 1200 }, + }, + }, + [174898] = { + ["coords"] = { + [1] = { 46.9, 13.5, 28, 1200 }, + [2] = { 19.3, 95.7, 5225, 1200 }, + }, + }, + [174899] = { + ["coords"] = { + [1] = { 46.8, 13.6, 28, 1200 }, + [2] = { 19.1, 95.9, 5225, 1200 }, + }, + }, + [174900] = { + ["coords"] = { + [1] = { 47.2, 14, 28, 1200 }, + [2] = { 19.7, 96.3, 5225, 1200 }, + }, + }, + [174901] = { + ["coords"] = { + [1] = { 47.2, 13.7, 28, 1200 }, + [2] = { 19.7, 96, 5225, 1200 }, + }, + }, + [174902] = { + ["coords"] = { + [1] = { 47.2, 13.5, 28, 1200 }, + [2] = { 19.7, 95.7, 5225, 1200 }, + }, + }, + [174903] = { + ["coords"] = { + [1] = { 46.5, 13.5, 28, 1200 }, + [2] = { 18.8, 95.6, 5225, 1200 }, + }, + }, + [174904] = { + ["coords"] = { + [1] = { 46.4, 13.9, 28, 1200 }, + [2] = { 18.7, 96.2, 5225, 1200 }, + }, + }, + [174905] = { + ["coords"] = { + [1] = { 46.6, 14.3, 28, 1200 }, + [2] = { 18.9, 96.8, 5225, 1200 }, + }, + }, + [174906] = { + ["coords"] = { + [1] = { 47, 14.3, 28, 1200 }, + [2] = { 19.5, 96.8, 5225, 1200 }, + }, + }, + [174907] = { + ["coords"] = { + [1] = { 46.7, 13.7, 28, 1200 }, + [2] = { 19, 96, 5225, 1200 }, + }, + }, + [174908] = { + ["coords"] = { + [1] = { 46.9, 13.9, 28, 1200 }, + [2] = { 19.3, 96.2, 5225, 1200 }, + }, + }, + [174909] = { + ["coords"] = { + [1] = { 47.1, 13.6, 28, 1200 }, + [2] = { 19.6, 95.9, 5225, 1200 }, + }, + }, + [174910] = { + ["coords"] = { + [1] = { 46.6, 14, 28, 1200 }, + [2] = { 18.8, 96.4, 5225, 1200 }, + }, + }, + [174911] = { + ["coords"] = { + [1] = { 46.7, 14.2, 28, 1200 }, + [2] = { 19, 96.7, 5225, 1200 }, + }, + }, + [174954] = { + ["coords"] = { + [1] = { 30, 42.6, 267, 7200 }, + [2] = { 85.8, 6.2, 5179, 7200 }, + }, + }, + [174955] = { + ["coords"] = { + [1] = { 30, 42.7, 267, 7200 }, + [2] = { 85.8, 6.2, 5179, 7200 }, + }, + }, + [174956] = { + ["coords"] = { + [1] = { 29.5, 42.1, 267, 7200 }, + [2] = { 85.4, 5.7, 5179, 7200 }, + }, + }, + [174957] = { + ["coords"] = { + [1] = { 29.5, 42, 267, 7200 }, + [2] = { 85.4, 5.6, 5179, 7200 }, + }, + }, + [174958] = { + ["coords"] = { + [1] = { 29.5, 41.9, 267, 7200 }, + [2] = { 85.4, 5.5, 5179, 7200 }, + }, + }, + [174959] = { + ["coords"] = { + [1] = { 29.4, 42.7, 267, 7200 }, + [2] = { 85.3, 6.2, 5179, 7200 }, + }, + }, + [174960] = { + ["coords"] = { + [1] = { 29.4, 42.8, 267, 7200 }, + [2] = { 85.3, 6.3, 5179, 7200 }, + }, + }, + [174961] = { + ["coords"] = { + [1] = { 29.4, 42.9, 267, 7200 }, + [2] = { 85.3, 6.4, 5179, 7200 }, + }, + }, + [174962] = { + ["coords"] = { + [1] = { 29.9, 42.1, 267, 7200 }, + [2] = { 85.7, 5.7, 5179, 7200 }, + }, + }, + [174963] = { + ["coords"] = { + [1] = { 29.9, 42, 267, 7200 }, + [2] = { 85.7, 5.7, 5179, 7200 }, + }, + }, + [174964] = { + ["coords"] = { + [1] = { 29.9, 41.9, 267, 7200 }, + [2] = { 85.7, 5.6, 5179, 7200 }, + }, + }, + [174965] = { + ["coords"] = { + [1] = { 30, 42, 267, 7200 }, + [2] = { 85.8, 5.6, 5179, 7200 }, + }, + }, + [174966] = { + ["coords"] = { + [1] = { 30, 42.3, 267, 7200 }, + [2] = { 85.8, 5.9, 5179, 7200 }, + }, + }, + [174967] = { + ["coords"] = { + [1] = { 29.6, 43.3, 267, 7200 }, + [2] = { 85.5, 6.7, 5179, 7200 }, + }, + }, + [175078] = { + ["coords"] = { + [1] = { 47.8, 74.5, 11, 7200 }, + [2] = { 5.5, 36.2, 5602, 7200 }, + }, + }, + [175084] = { + ["coords"] = { + [1] = { 37.1, 71.9, 721, 3600 }, + }, + }, + [175085] = { + ["coords"] = { + [1] = { 39.9, 61.6, 721, 3600 }, + }, + }, + [175124] = { + ["coords"] = { + [1] = { 36.6, 45.4, 1583, 429 }, + [2] = { 36.3, 43.7, 1583, 435 }, + [3] = { 36.9, 43.2, 1583, 502 }, + [4] = { 35.9, 43.1, 1583, 562 }, + [5] = { 35, 43, 1583, 556 }, + [6] = { 38.7, 42.8, 1583, 689 }, + [7] = { 38.9, 42.5, 1583, 646 }, + [8] = { 38.6, 42.5, 1583, 506 }, + [9] = { 30.5, 42.2, 1583, 520 }, + [10] = { 29.9, 42.1, 1583, 626 }, + [11] = { 28.2, 42, 1583, 685 }, + [12] = { 30.5, 41.8, 1583, 432 }, + [13] = { 29.3, 41.8, 1583, 640 }, + [14] = { 31.2, 41.6, 1583, 537 }, + [15] = { 35.9, 41.4, 1583, 715 }, + [16] = { 30.2, 41.4, 1583, 603 }, + [17] = { 33.6, 41.3, 1583, 620 }, + [18] = { 30, 41.2, 1583, 699 }, + [19] = { 39, 41, 1583, 689 }, + [20] = { 33.1, 41, 1583, 512 }, + [21] = { 29.9, 40.9, 1583, 493 }, + [22] = { 33.7, 40.9, 1583, 557 }, + [23] = { 30.7, 40.9, 1583, 716 }, + [24] = { 35.7, 40.6, 1583, 668 }, + [25] = { 29.9, 40.4, 1583, 445 }, + [26] = { 35.5, 40.1, 1583, 684 }, + [27] = { 35.5, 39.9, 1583, 500 }, + [28] = { 37.9, 39.8, 1583, 486 }, + [29] = { 36.7, 39.5, 1583, 543 }, + [30] = { 38.3, 39.4, 1583, 629 }, + [31] = { 38, 39.4, 1583, 539 }, + [32] = { 30.5, 39.3, 1583, 517 }, + [33] = { 30.9, 39.1, 1583, 682 }, + [34] = { 36.9, 38.6, 1583, 608 }, + [35] = { 34.5, 38.5, 1583, 636 }, + [36] = { 33, 38.5, 1583, 589 }, + [37] = { 34.9, 38.3, 1583, 572 }, + [38] = { 35.4, 38.2, 1583, 552 }, + [39] = { 33.4, 38, 1583, 683 }, + [40] = { 37.3, 38, 1583, 426 }, + [41] = { 32.6, 37.8, 1583, 671 }, + [42] = { 35, 37.7, 1583, 566 }, + [43] = { 33.2, 37.5, 1583, 479 }, + [44] = { 36.8, 37.3, 1583, 514 }, + [45] = { 32.7, 37.2, 1583, 606 }, + [46] = { 38.1, 37.2, 1583, 529 }, + [47] = { 31.1, 37.2, 1583, 523 }, + [48] = { 35, 37, 1583, 663 }, + [49] = { 38.4, 36.9, 1583, 532 }, + [50] = { 34.9, 36.8, 1583, 464 }, + [51] = { 35.1, 36.6, 1583, 427 }, + [52] = { 29.9, 36.6, 1583, 541 }, + [53] = { 37, 36.6, 1583, 478 }, + [54] = { 34.6, 36.6, 1583, 671 }, + [55] = { 32.7, 36.5, 1583, 698 }, + [56] = { 32.2, 36.5, 1583, 478 }, + [57] = { 37.9, 36.5, 1583, 546 }, + [58] = { 32.8, 36.4, 1583, 618 }, + [59] = { 36.6, 36.3, 1583, 675 }, + [60] = { 30.7, 36, 1583, 433 }, + [61] = { 33.1, 35.9, 1583, 700 }, + [62] = { 36.7, 35.7, 1583, 677 }, + [63] = { 38.9, 35.7, 1583, 552 }, + [64] = { 31.3, 35.5, 1583, 656 }, + [65] = { 33.5, 35.5, 1583, 623 }, + [66] = { 30, 35.4, 1583, 431 }, + [67] = { 36, 35.4, 1583, 452 }, + [68] = { 33.6, 35.3, 1583, 442 }, + [69] = { 38.8, 35.3, 1583, 703 }, + [70] = { 30.2, 34.9, 1583, 520 }, + [71] = { 36.7, 34.8, 1583, 485 }, + [72] = { 33.9, 34.7, 1583, 517 }, + [73] = { 36.1, 34.6, 1583, 557 }, + [74] = { 33.8, 34.6, 1583, 545 }, + [75] = { 32.8, 34.6, 1583, 695 }, + [76] = { 38.2, 34.6, 1583, 542 }, + [77] = { 33, 34.5, 1583, 537 }, + [78] = { 28.6, 34.4, 1583, 570 }, + [79] = { 30.9, 34.3, 1583, 575 }, + [80] = { 33.6, 34.1, 1583, 650 }, + [81] = { 33.5, 33.9, 1583, 638 }, + [82] = { 35.1, 33.9, 1583, 629 }, + [83] = { 36.7, 33.7, 1583, 454 }, + [84] = { 34.4, 33.7, 1583, 484 }, + [85] = { 35.1, 33.6, 1583, 498 }, + [86] = { 36.9, 33.4, 1583, 537 }, + [87] = { 45.1, 32.4, 1583, 25 }, + [88] = { 45, 32.2, 1583, 25 }, + [89] = { 51.4, 31.4, 1583, 25 }, + [90] = { 51, 30.3, 1583, 25 }, + [91] = { 51.9, 19.8, 1583, 25 }, + [92] = { 44.9, 19.7, 1583, 25 }, + [93] = { 45.2, 19.5, 1583, 25 }, + [94] = { 51.9, 19.5, 1583, 25 }, + }, + }, + [175144] = { + ["coords"] = { + [1] = { 68.1, 8.5, 405, 900 }, + [2] = { 46.1, 80.9, 406, 900 }, + }, + }, + [175145] = { + ["coords"] = { + [1] = { 68, 8.4, 405, 900 }, + [2] = { 46.1, 80.8, 406, 900 }, + }, + }, + [175146] = { + ["coords"] = { + [1] = { 68.5, 9, 405, 900 }, + [2] = { 46.4, 81.3, 406, 900 }, + }, + }, + [175153] = { + ["coords"] = { + [1] = { 30.4, 32.2, 1583, 25 }, + }, + }, + [175165] = { + ["coords"] = { + [1] = { 38.2, 28.8, 148, 2 }, + }, + }, + [175166] = { + ["coords"] = { + [1] = { 39.6, 27.5, 148, 2 }, + }, + }, + [175167] = { + ["coords"] = { + [1] = { 54.2, 67.2, 2057, 7200 }, + }, + }, + [175185] = { + ["coords"] = { + [1] = { 48.6, 18.4, 1583, 0 }, + }, + }, + [175186] = { + ["coords"] = { + [1] = { 48.6, 33.2, 1583, 25 }, + }, + }, + [175187] = { + ["coords"] = { + [1] = { 32.4, 24, 1583, 25 }, + }, + }, + [175194] = { + ["coords"] = { + [1] = { 30.3, 18.9, 1583, 0 }, + }, + }, + [175195] = { + ["coords"] = { + [1] = { 35.2, 12.8, 1583, 25 }, + }, + }, + [175196] = { + ["coords"] = { + [1] = { 38.9, 15.1, 1583, 25 }, + }, + }, + [175197] = { + ["coords"] = { + [1] = { 33.5, 25.2, 1583, 25 }, + }, + }, + [175198] = { + ["coords"] = { + [1] = { 41, 25.2, 1583, 25 }, + }, + }, + [175199] = { + ["coords"] = { + [1] = { 39.6, 30.3, 1583, 25 }, + }, + }, + [175200] = { + ["coords"] = { + [1] = { 34.8, 30.4, 1583, 0 }, + }, + }, + [175207] = { + ["coords"] = { + [1] = { 36.4, 50.9, 148, 2 }, + }, + }, + [175233] = { + ["coords"] = { + [1] = { 41.9, 31.5, 148, 30 }, + }, + ["fac"] = "A", + }, + [175244] = { + ["coords"] = { + [1] = { 33.5, 15, 1583, 25 }, + }, + }, + [175245] = { + ["coords"] = { + [1] = { 38.5, 38.5, 1583, 86400 }, + }, + }, + [175267] = { + ["coords"] = { + [1] = { 30.4, 24, 1583, 25 }, + }, + }, + [175268] = { + ["coords"] = { + [1] = { 28.3, 24, 1583, 25 }, + }, + }, + [175269] = { + ["coords"] = { + [1] = { 28.3, 27.1, 1583, 25 }, + }, + }, + [175270] = { + ["coords"] = { + [1] = { 28.3, 30.1, 1583, 25 }, + }, + }, + [175271] = { + ["coords"] = { + [1] = { 30.4, 30.1, 1583, 25 }, + }, + }, + [175272] = { + ["coords"] = { + [1] = { 32.4, 30.1, 1583, 25 }, + }, + }, + [175288] = { + ["coords"] = { + [1] = { 54.2, 4.4, 2437, 3600 }, + }, + }, + [175290] = { + ["coords"] = { + [1] = { 60.4, 2.9, 2437, 3600 }, + }, + }, + [175292] = { + ["coords"] = { + [1] = { 54.1, 0.1, 2437, 3600 }, + }, + }, + [175293] = { + ["coords"] = { + [1] = { 56.9, 7.7, 2437, 3600 }, + }, + }, + [175298] = { + ["coords"] = { + [1] = { 45, 8.9, 2437, 3600 }, + }, + }, + [175305] = { + ["coords"] = { + [1] = { 52.4, 7.5, 2437, 3600 }, + }, + }, + [175308] = { + ["coords"] = { + [1] = { 52, 6.9, 2437, 3600 }, + }, + }, + [175310] = { + ["coords"] = { + [1] = { 47.7, 5.2, 2437, 3600 }, + }, + }, + [175324] = { + ["coords"] = { + [1] = { 64.4, 72.4, 618, 180 }, + [2] = { 63.3, 72.3, 618, 180 }, + [3] = { 63.9, 71.5, 618, 180 }, + [4] = { 62.9, 70.8, 618, 180 }, + [5] = { 59.9, 69.5, 618, 180 }, + [6] = { 58.8, 69.2, 618, 180 }, + [7] = { 65.9, 69, 618, 180 }, + [8] = { 60.8, 68.8, 618, 180 }, + [9] = { 63.7, 68.6, 618, 180 }, + [10] = { 62.8, 68.3, 618, 180 }, + [11] = { 64.3, 68.2, 618, 180 }, + [12] = { 64.8, 68.1, 618, 180 }, + [13] = { 61.5, 67.4, 618, 180 }, + [14] = { 58.3, 67.4, 618, 180 }, + [15] = { 64.3, 67.2, 618, 180 }, + [16] = { 60.5, 66.9, 618, 180 }, + [17] = { 58.4, 66.4, 618, 180 }, + [18] = { 64.5, 66.4, 618, 180 }, + [19] = { 60.4, 65.3, 618, 180 }, + }, + ["fac"] = "AH", + }, + [175325] = { + ["coords"] = { + [1] = { 61.8, 43.4, 409, 0 }, + }, + ["fac"] = "A", + }, + [175329] = { + ["coords"] = { + [1] = { 51.8, 33.5, 148, 10 }, + }, + }, + [175330] = { + ["coords"] = { + [1] = { 52.9, 33.4, 148, 10 }, + }, + }, + [175331] = { + ["coords"] = { + [1] = { 50.7, 34.9, 148, 10 }, + }, + }, + [175334] = { + ["coords"] = { + [1] = { 48.5, 72, 1583, 10 }, + [2] = { 46.6, 64.8, 1583, 10 }, + [3] = { 46.7, 64.6, 1583, 10 }, + [4] = { 52.9, 63.9, 1583, 0 }, + [5] = { 53.1, 63.5, 1583, 10 }, + [6] = { 46.7, 57, 1583, 10 }, + [7] = { 50, 56.4, 1583, 10 }, + [8] = { 53.3, 53, 1583, 10 }, + [9] = { 53.4, 53, 1583, 10 }, + [10] = { 59.6, 45.5, 1583, 10 }, + [11] = { 51.4, 45.3, 1583, 10 }, + }, + }, + [175350] = { + ["coords"] = { + [1] = { 58.7, 68.7, 2017, 180 }, + }, + }, + [175351] = { + ["coords"] = { + [1] = { 58.7, 71, 2017, 180 }, + }, + }, + [175352] = { + ["coords"] = { + [1] = { 68.5, 75, 2017, 180 }, + }, + }, + [175353] = { + ["coords"] = { + [1] = { 67.1, 77, 2017, 180 }, + }, + }, + [175354] = { + ["coords"] = { + [1] = { 76.7, 29.5, 2017, 180 }, + }, + }, + [175355] = { + ["coords"] = { + [1] = { 76.4, 32.3, 2017, 180 }, + }, + }, + [175356] = { + ["coords"] = { + [1] = { 80.2, 48.3, 2017, 180 }, + }, + }, + [175357] = { + ["coords"] = { + [1] = { 80.9, 55.3, 2017, 180 }, + }, + }, + [175358] = { + ["coords"] = { + [1] = { 63.5, 25.7, 2017, 180 }, + }, + }, + [175359] = { + ["coords"] = { + [1] = { 57.4, 32.3, 2017, 180 }, + }, + }, + [175368] = { + ["coords"] = { + [1] = { 84.6, 68.2, 2017, 180 }, + }, + }, + [175369] = { + ["coords"] = { + [1] = { 47.9, 23.8, 139, 900 }, + [2] = { 83.5, 35.7, 3456, 180 }, + [3] = { 98.4, 85.7, 5225, 900 }, + }, + }, + [175370] = { + ["coords"] = { + [1] = { 48.5, 20.5, 139, 900 }, + [2] = { 84.8, 29.2, 3456, 180 }, + [3] = { 99.3, 81.5, 5225, 900 }, + }, + }, + [175372] = { + ["coords"] = { + [1] = { 75.6, 65, 2017, 180 }, + }, + }, + [175373] = { + ["coords"] = { + [1] = { 70, 16, 2017, 180 }, + }, + }, + [175374] = { + ["coords"] = { + [1] = { 72.9, 15.7, 2017, 180 }, + }, + }, + [175375] = { + ["coords"] = { + [1] = { 48.3, 61.6, 2017, 180 }, + }, + }, + [175376] = { + ["coords"] = { + [1] = { 51, 59.6, 2017, 180 }, + }, + }, + [175377] = { + ["coords"] = { + [1] = { 78.4, 63.6, 2017, 180 }, + }, + }, + [175379] = { + ["coords"] = { + [1] = { 74.5, 39.5, 2017, 180 }, + }, + }, + [175380] = { + ["coords"] = { + [1] = { 91.4, 39.3, 2017, 180 }, + }, + }, + [175381] = { + ["coords"] = { + [1] = { 85.2, 15.9, 2017, 180 }, + }, + }, + [175382] = { + ["coords"] = { + [1] = { 34.7, 40.3, 1583, 25 }, + }, + }, + [175384] = { + ["coords"] = { + [1] = { 17.6, 42.3, 400, 45 }, + [2] = { 18, 41.7, 400, 45 }, + [3] = { 17.2, 40.8, 400, 45 }, + [4] = { 12.6, 37.4, 400, 45 }, + [5] = { 10.6, 36.8, 400, 45 }, + [6] = { 12.2, 36.1, 400, 45 }, + [7] = { 11.1, 34.5, 400, 45 }, + [8] = { 11.4, 33.2, 400, 45 }, + [9] = { 11.8, 33.2, 400, 45 }, + }, + }, + [175385] = { + ["coords"] = { + [1] = { 32.8, 40.4, 1583, 180 }, + }, + }, + [175404] = { + ["coords"] = { + [1] = { 57.6, 60.1, 4, 2700 }, + [2] = { 56.7, 59.8, 4, 2700 }, + [3] = { 54.8, 57.5, 4, 2700 }, + [4] = { 54.9, 55.7, 4, 2700 }, + [5] = { 55.8, 53.4, 4, 2700 }, + [6] = { 64.8, 50.1, 4, 2700 }, + [7] = { 49.4, 48, 4, 2700 }, + [8] = { 48.8, 43.5, 4, 2700 }, + [9] = { 51.4, 42.3, 4, 2700 }, + [10] = { 60.6, 40.8, 4, 2700 }, + [11] = { 57.4, 36.7, 4, 2700 }, + [12] = { 38, 34.7, 4, 2700 }, + [13] = { 38.2, 33.2, 4, 2700 }, + [14] = { 48.5, 33, 4, 2700 }, + [15] = { 51.7, 31.9, 4, 2700 }, + [16] = { 61.6, 31.5, 4, 2700 }, + [17] = { 66, 31.2, 4, 2700 }, + [18] = { 40.9, 30.4, 4, 2700 }, + [19] = { 66, 29.9, 4, 2700 }, + [20] = { 46, 29.3, 4, 2700 }, + [21] = { 38.5, 29.3, 4, 2700 }, + [22] = { 64.2, 29.2, 4, 2700 }, + [23] = { 39.2, 28.5, 4, 2700 }, + [24] = { 42.1, 24.1, 4, 2700 }, + [25] = { 43.2, 20.8, 4, 2700 }, + [26] = { 44.1, 19.2, 4, 2700 }, + [27] = { 44.3, 13.9, 4, 2700 }, + [28] = { 46.1, 13.8, 4, 2700 }, + [29] = { 57.7, 12.7, 4, 2700 }, + [30] = { 61.5, 71.2, 8, 2700 }, + [31] = { 46.9, 65.5, 8, 2700 }, + [32] = { 50.6, 65.3, 8, 2700 }, + [33] = { 44.9, 60, 8, 2700 }, + [34] = { 41.3, 59.8, 8, 2700 }, + [35] = { 73.4, 86.4, 16, 2700 }, + [36] = { 64, 85.4, 16, 2700 }, + [37] = { 36.8, 64.3, 16, 2700 }, + [38] = { 42.9, 62.8, 16, 2700 }, + [39] = { 38.1, 62.2, 16, 2700 }, + [40] = { 37, 61.6, 16, 2700 }, + [41] = { 41, 57.3, 16, 2700 }, + [42] = { 61.2, 50.1, 16, 2700 }, + [43] = { 41, 46.1, 16, 2700 }, + [44] = { 56.8, 44.8, 16, 2700 }, + [45] = { 74.2, 44.1, 16, 2700 }, + [46] = { 90.3, 35.2, 16, 2700 }, + [47] = { 89.3, 34.6, 16, 2700 }, + [48] = { 38.2, 33.4, 16, 2700 }, + [49] = { 39.2, 32.9, 16, 2700 }, + [50] = { 67.5, 32, 16, 2700 }, + [51] = { 80.2, 28.6, 16, 2700 }, + [52] = { 56.1, 28.4, 16, 2700 }, + [53] = { 56.4, 26.4, 16, 2700 }, + [54] = { 62.6, 26.3, 16, 2700 }, + [55] = { 61.9, 26.3, 16, 2700 }, + [56] = { 69.9, 19.6, 16, 2700 }, + [57] = { 41.3, 19.3, 16, 2700 }, + [58] = { 68.1, 18.9, 16, 2700 }, + [59] = { 77.7, 15.6, 16, 2700 }, + [60] = { 91.5, 96.3, 25, 2700 }, + [61] = { 94.4, 62.1, 25, 2700 }, + [62] = { 89.4, 62.1, 25, 2700 }, + [63] = { 94.6, 55.5, 25, 2700 }, + [64] = { 91.6, 54.9, 25, 2700 }, + [65] = { 61.2, 61.9, 28, 2700 }, + [66] = { 54, 61.1, 28, 2700 }, + [67] = { 65.2, 60.5, 28, 2700 }, + [68] = { 52.5, 58.8, 28, 2700 }, + [69] = { 51.9, 57.9, 28, 2700 }, + [70] = { 55.4, 57.6, 28, 2700 }, + [71] = { 66.9, 54.2, 28, 2700 }, + [72] = { 55, 53.6, 28, 2700 }, + [73] = { 68, 52.6, 28, 2700 }, + [74] = { 60.7, 49.4, 28, 2700 }, + [75] = { 44.6, 42.5, 28, 2700 }, + [76] = { 49.7, 40.4, 28, 2700 }, + [77] = { 65, 38.7, 28, 2700 }, + [78] = { 47.8, 38.3, 28, 2700 }, + [79] = { 61.5, 37.7, 28, 2700 }, + [80] = { 64, 37.7, 28, 2700 }, + [81] = { 43.7, 36.9, 28, 2700 }, + [82] = { 64.9, 36.6, 28, 2700 }, + [83] = { 54.7, 36.2, 28, 2700 }, + [84] = { 47.6, 35.9, 28, 2700 }, + [85] = { 64.2, 33.5, 28, 2700 }, + [86] = { 47.4, 27.8, 28, 2700 }, + [87] = { 53.5, 26.4, 28, 2700 }, + [88] = { 50.2, 24.8, 28, 2700 }, + [89] = { 48.6, 23.8, 28, 2700 }, + [90] = { 70.4, 23.5, 28, 2700 }, + [91] = { 52.3, 21, 28, 2700 }, + [92] = { 48.6, 20.5, 28, 2700 }, + [93] = { 48.8, 20.3, 28, 2700 }, + [94] = { 41.5, 20.1, 28, 2700 }, + [95] = { 40.9, 14.3, 28, 2700 }, + [96] = { 48.2, 13.2, 28, 2700 }, + [97] = { 46.1, 11.9, 28, 2700 }, + [98] = { 42.2, 11.8, 28, 2700 }, + [99] = { 81.8, 22.4, 45, 2700 }, + [100] = { 23, 73.2, 46, 2700 }, + [101] = { 89.3, 70.9, 46, 2700 }, + [102] = { 30.1, 70.5, 46, 2700 }, + [103] = { 21.8, 69.9, 46, 2700 }, + [104] = { 35.3, 69.6, 46, 2700 }, + [105] = { 89.4, 68, 46, 2700 }, + [106] = { 23.4, 67, 46, 2700 }, + [107] = { 22, 66.5, 46, 2700 }, + [108] = { 91.4, 66.3, 46, 2700 }, + [109] = { 25.7, 65, 46, 2700 }, + [110] = { 27, 64.2, 46, 2700 }, + [111] = { 72, 64.1, 46, 2700 }, + [112] = { 22.9, 64.1, 46, 2700 }, + [113] = { 90.8, 63.3, 46, 2700 }, + [114] = { 48.8, 62.6, 46, 2700 }, + [115] = { 22.5, 62.5, 46, 2700 }, + [116] = { 42.2, 62.1, 46, 2700 }, + [117] = { 91.5, 61.3, 46, 2700 }, + [118] = { 43.6, 59.6, 46, 2700 }, + [119] = { 47.2, 59.5, 46, 2700 }, + [120] = { 30.3, 58.6, 46, 2700 }, + [121] = { 36.3, 58.2, 46, 2700 }, + [122] = { 16.9, 58.1, 46, 2700 }, + [123] = { 65, 57.9, 46, 2700 }, + [124] = { 59.5, 57.1, 46, 2700 }, + [125] = { 36.3, 56.6, 46, 2700 }, + [126] = { 74.3, 56.3, 46, 2700 }, + [127] = { 70, 56.3, 46, 2700 }, + [128] = { 75.2, 56, 46, 2700 }, + [129] = { 74.8, 55.9, 46, 2700 }, + [130] = { 76.4, 55.4, 46, 2700 }, + [131] = { 62.2, 54.9, 46, 2700 }, + [132] = { 26.5, 54.8, 46, 2700 }, + [133] = { 67, 53.6, 46, 2700 }, + [134] = { 47.5, 50.8, 46, 2700 }, + [135] = { 16.3, 50.7, 46, 2700 }, + [136] = { 80.9, 48.5, 46, 2700 }, + [137] = { 81.8, 48.5, 46, 2700 }, + [138] = { 79.9, 47.8, 46, 2700 }, + [139] = { 96.8, 47.5, 46, 2700 }, + [140] = { 26.1, 45.8, 46, 2700 }, + [141] = { 79.6, 45.6, 46, 2700 }, + [142] = { 81.1, 45, 46, 2700 }, + [143] = { 41.8, 44.8, 46, 2700 }, + [144] = { 20.8, 44.8, 46, 2700 }, + [145] = { 67.7, 44.4, 46, 2700 }, + [146] = { 77.5, 44, 46, 2700 }, + [147] = { 83.5, 44, 46, 2700 }, + [148] = { 64.6, 44, 46, 2700 }, + [149] = { 56, 43.4, 46, 2700 }, + [150] = { 42.3, 43.1, 46, 2700 }, + [151] = { 50.3, 42.9, 46, 2700 }, + [152] = { 57.9, 42.4, 46, 2700 }, + [153] = { 20.8, 42.3, 46, 2700 }, + [154] = { 78.4, 41.3, 46, 2700 }, + [155] = { 39.7, 41.3, 46, 2700 }, + [156] = { 38, 41, 46, 2700 }, + [157] = { 44.3, 40.6, 46, 2700 }, + [158] = { 81.4, 40.4, 46, 2700 }, + [159] = { 72, 40.2, 46, 2700 }, + [160] = { 81.4, 40.1, 46, 2700 }, + [161] = { 61.2, 39.8, 46, 2700 }, + [162] = { 60.7, 39.7, 46, 2700 }, + [163] = { 39.1, 38.3, 46, 2700 }, + [164] = { 57.6, 37.6, 46, 2700 }, + [165] = { 42.6, 37.4, 46, 2700 }, + [166] = { 64.2, 36.8, 46, 2700 }, + [167] = { 46.8, 35.8, 46, 2700 }, + [168] = { 63.7, 35.7, 46, 2700 }, + [169] = { 47.3, 33.5, 46, 2700 }, + [170] = { 61.8, 31.2, 46, 2700 }, + [171] = { 39.8, 30.1, 46, 2700 }, + [172] = { 38.6, 30.1, 46, 2700 }, + [173] = { 55.1, 30, 46, 2700 }, + [174] = { 15, 30, 46, 2700 }, + [175] = { 39.9, 28.5, 46, 2700 }, + [176] = { 39.1, 28.4, 46, 2700 }, + [177] = { 63.9, 27.6, 46, 2700 }, + [178] = { 72.4, 27.3, 46, 2700 }, + [179] = { 62.5, 27.1, 46, 2700 }, + [180] = { 58.5, 25.2, 46, 2700 }, + [181] = { 64.1, 24.7, 46, 2700 }, + [182] = { 62.8, 24.5, 46, 2700 }, + [183] = { 65.8, 22.7, 46, 2700 }, + [184] = { 58.1, 83.3, 47, 2700 }, + [185] = { 57.9, 69.9, 47, 2700 }, + [186] = { 56.1, 68.2, 47, 2700 }, + [187] = { 57.6, 67, 47, 2700 }, + [188] = { 71.7, 66.2, 47, 2700 }, + [189] = { 60.1, 59.4, 47, 2700 }, + [190] = { 68.1, 55.1, 47, 2700 }, + [191] = { 66.8, 52.4, 47, 2700 }, + [192] = { 79.4, 50, 47, 2700 }, + [193] = { 65.7, 41.8, 47, 2700 }, + [194] = { 48.9, 99.8, 51, 2700 }, + [195] = { 21.6, 79.6, 51, 2700 }, + [196] = { 20.5, 78.1, 51, 2700 }, + [197] = { 31.4, 75.9, 51, 2700 }, + [198] = { 26.5, 66.2, 51, 2700 }, + [199] = { 38.5, 63.3, 51, 2700 }, + [200] = { 23.7, 53.2, 51, 2700 }, + [201] = { 23.3, 43.7, 51, 2700 }, + [202] = { 34.2, 42.2, 51, 2700 }, + [203] = { 41.7, 41.5, 51, 2700 }, + [204] = { 40.5, 39.1, 51, 2700 }, + [205] = { 24, 36.6, 51, 2700 }, + [206] = { 15.7, 32.4, 51, 2700 }, + [207] = { 22.5, 30.9, 51, 2700 }, + [208] = { 23, 30.3, 51, 2700 }, + [209] = { 22.5, 24.4, 51, 2700 }, + [210] = { 97.4, 34.7, 85, 2700 }, + [211] = { 83.5, 88.2, 139, 2700 }, + [212] = { 66.2, 84.7, 139, 2700 }, + [213] = { 46.7, 84.3, 139, 2700 }, + [214] = { 41.5, 84.1, 139, 2700 }, + [215] = { 45.9, 83.4, 139, 2700 }, + [216] = { 86.7, 80.5, 139, 2700 }, + [217] = { 75.6, 80.2, 139, 2700 }, + [218] = { 78.7, 77.9, 139, 2700 }, + [219] = { 55.7, 77.6, 139, 2700 }, + [220] = { 84.1, 74.4, 139, 2700 }, + [221] = { 47.4, 71.3, 139, 2700 }, + [222] = { 56.9, 69.2, 139, 2700 }, + [223] = { 56.1, 67.2, 139, 2700 }, + [224] = { 73.8, 65.8, 139, 2700 }, + [225] = { 57.2, 64.7, 139, 2700 }, + [226] = { 76.6, 64.3, 139, 2700 }, + [227] = { 30.5, 64.2, 139, 2700 }, + [228] = { 54.9, 64.1, 139, 2700 }, + [229] = { 72.4, 63.3, 139, 2700 }, + [230] = { 77.1, 61.3, 139, 2700 }, + [231] = { 20.7, 52.7, 139, 2700 }, + [232] = { 43.3, 51, 139, 2700 }, + [233] = { 19.3, 51, 139, 2700 }, + [234] = { 72.9, 49.7, 139, 2700 }, + [235] = { 57.8, 49.4, 139, 2700 }, + [236] = { 20.3, 49.3, 139, 2700 }, + [237] = { 56.1, 49.3, 139, 2700 }, + [238] = { 18.5, 48.9, 139, 2700 }, + [239] = { 71.6, 48.9, 139, 2700 }, + [240] = { 40.2, 47.2, 139, 2700 }, + [241] = { 84.5, 47.2, 139, 2700 }, + [242] = { 71.3, 45.5, 139, 2700 }, + [243] = { 80.8, 45.1, 139, 2700 }, + [244] = { 81.6, 45, 139, 2700 }, + [245] = { 87.8, 43.9, 139, 2700 }, + [246] = { 52.8, 43.8, 139, 2700 }, + [247] = { 32.5, 43, 139, 2700 }, + [248] = { 10.9, 42.9, 139, 2700 }, + [249] = { 81.3, 41.3, 139, 2700 }, + [250] = { 83.7, 36.2, 139, 2700 }, + [251] = { 61.2, 30.8, 139, 2700 }, + [252] = { 63.8, 30, 139, 2700 }, + [253] = { 28.4, 30, 139, 2700 }, + [254] = { 72.9, 28.5, 139, 2700 }, + [255] = { 59.7, 27.9, 139, 2700 }, + [256] = { 54.2, 27.7, 139, 2700 }, + [257] = { 68.4, 26.5, 139, 2700 }, + [258] = { 61.8, 25.4, 139, 2700 }, + [259] = { 65.1, 23.4, 139, 2700 }, + [260] = { 65.4, 22.6, 139, 2700 }, + [261] = { 68.7, 22.1, 139, 2700 }, + [262] = { 66.6, 21.8, 139, 2700 }, + [263] = { 69.3, 21, 139, 2700 }, + [264] = { 73.3, 18.1, 139, 2700 }, + [265] = { 73.5, 17.9, 139, 2700 }, + [266] = { 69.8, 12.6, 139, 2700 }, + [267] = { 54.7, 84, 148, 2700 }, + [268] = { 50.3, 81.7, 148, 2700 }, + [269] = { 54.5, 45.4, 148, 2700 }, + [270] = { 25.2, 72.3, 357, 2700 }, + [271] = { 45.4, 69.4, 357, 2700 }, + [272] = { 62.4, 69.3, 357, 2700 }, + [273] = { 65.4, 26.9, 357, 2700 }, + [274] = { 66.2, 26.3, 357, 2700 }, + [275] = { 41.1, 81.5, 361, 2700 }, + [276] = { 41, 75.3, 361, 2700 }, + [277] = { 39.7, 64.4, 361, 2700 }, + [278] = { 34.7, 61.8, 361, 2700 }, + [279] = { 37.5, 54.2, 361, 2700 }, + [280] = { 37.7, 52.7, 361, 2700 }, + [281] = { 51.4, 52.1, 361, 2700 }, + [282] = { 37.8, 52, 361, 2700 }, + [283] = { 38.1, 50.4, 361, 2700 }, + [284] = { 49.6, 49.6, 361, 2700 }, + [285] = { 37.7, 47, 361, 2700 }, + [286] = { 39, 46.4, 361, 2700 }, + [287] = { 53.9, 45.3, 361, 2700 }, + [288] = { 56.3, 44.3, 361, 2700 }, + [289] = { 54.5, 43.2, 361, 2700 }, + [290] = { 56.6, 42, 361, 2700 }, + [291] = { 55.8, 41.9, 361, 2700 }, + [292] = { 55.1, 40.7, 361, 2700 }, + [293] = { 42.8, 40.2, 361, 2700 }, + [294] = { 37.9, 33.4, 361, 2700 }, + [295] = { 50, 31.9, 361, 2700 }, + [296] = { 49.4, 27.4, 361, 2700 }, + [297] = { 57.4, 25.7, 361, 2700 }, + [298] = { 62.9, 24, 361, 2700 }, + [299] = { 60.3, 22.9, 361, 2700 }, + [300] = { 57.8, 22.1, 361, 2700 }, + [301] = { 61, 21.8, 361, 2700 }, + [302] = { 39.5, 20.4, 361, 2700 }, + [303] = { 57.3, 19.5, 361, 2700 }, + [304] = { 56.4, 17.6, 361, 2700 }, + [305] = { 47.8, 14.2, 361, 2700 }, + [306] = { 64.3, 12.8, 361, 2700 }, + [307] = { 64.4, 10.5, 361, 2700 }, + [308] = { 64.4, 6.5, 361, 2700 }, + [309] = { 26.4, 89.6, 408, 2700 }, + [310] = { 27.1, 88.8, 408, 2700 }, + [311] = { 69.2, 73.5, 408, 2700 }, + [312] = { 66.8, 71, 408, 2700 }, + [313] = { 69.6, 69.6, 408, 2700 }, + [314] = { 42.4, 62.5, 408, 2700 }, + [315] = { 47.7, 51.2, 408, 2700 }, + [316] = { 49.1, 50.3, 408, 2700 }, + [317] = { 48.9, 44.7, 408, 2700 }, + [318] = { 63.9, 74.4, 409, 2700 }, + [319] = { 61.6, 73.2, 409, 2700 }, + [320] = { 63.1, 73, 409, 2700 }, + [321] = { 65.3, 72.2, 409, 2700 }, + [322] = { 62.2, 71, 409, 2700 }, + [323] = { 72.5, 60.6, 409, 2700 }, + [324] = { 45.8, 58.5, 409, 2700 }, + [325] = { 34.6, 26.2, 409, 2700 }, + [326] = { 55.4, 73, 440, 2700 }, + [327] = { 27.5, 72.8, 440, 2700 }, + [328] = { 28.4, 71.9, 440, 2700 }, + [329] = { 28.1, 70.5, 440, 2700 }, + [330] = { 27.4, 68.7, 440, 2700 }, + [331] = { 29.7, 67.9, 440, 2700 }, + [332] = { 29.4, 64.8, 440, 2700 }, + [333] = { 31.2, 64.6, 440, 2700 }, + [334] = { 29.4, 64.3, 440, 2700 }, + [335] = { 54.4, 53.6, 440, 2700 }, + [336] = { 64, 53.3, 440, 2700 }, + [337] = { 30.1, 53, 440, 2700 }, + [338] = { 37, 52.9, 440, 2700 }, + [339] = { 32.9, 52.9, 440, 2700 }, + [340] = { 64, 52.8, 440, 2700 }, + [341] = { 52.6, 51.7, 440, 2700 }, + [342] = { 37.7, 51.6, 440, 2700 }, + [343] = { 61.3, 51, 440, 2700 }, + [344] = { 72.2, 50.9, 440, 2700 }, + [345] = { 35.9, 50.5, 440, 2700 }, + [346] = { 73.4, 50, 440, 2700 }, + [347] = { 62.7, 48.8, 440, 2700 }, + [348] = { 61.1, 48.3, 440, 2700 }, + [349] = { 64.4, 47.1, 440, 2700 }, + [350] = { 61.6, 47.1, 440, 2700 }, + [351] = { 62.9, 46.2, 440, 2700 }, + [352] = { 34.9, 46.1, 440, 2700 }, + [353] = { 53.1, 45.7, 440, 2700 }, + [354] = { 30.8, 45.6, 440, 2700 }, + [355] = { 31.6, 44.8, 440, 2700 }, + [356] = { 64.1, 44.8, 440, 2700 }, + [357] = { 31, 44.7, 440, 2700 }, + [358] = { 73.3, 44.5, 440, 2700 }, + [359] = { 32.2, 44.1, 440, 2700 }, + [360] = { 31, 44, 440, 2700 }, + [361] = { 51.2, 43.8, 440, 2700 }, + [362] = { 72.3, 43.8, 440, 2700 }, + [363] = { 32, 43.7, 440, 2700 }, + [364] = { 30.5, 43.6, 440, 2700 }, + [365] = { 71.7, 43.1, 440, 2700 }, + [366] = { 71.2, 42.3, 440, 2700 }, + [367] = { 70.1, 42.2, 440, 2700 }, + [368] = { 68.1, 41.8, 440, 2700 }, + [369] = { 67.4, 40.5, 440, 2700 }, + [370] = { 66.5, 38.8, 440, 2700 }, + [371] = { 56.9, 36.5, 440, 2700 }, + [372] = { 53.3, 34.5, 440, 2700 }, + [373] = { 53.1, 33.7, 440, 2700 }, + [374] = { 66.5, 33.3, 440, 2700 }, + [375] = { 36.5, 33, 440, 2700 }, + [376] = { 65.9, 31.2, 440, 2700 }, + [377] = { 64, 30.3, 440, 2700 }, + [378] = { 57.8, 27.3, 440, 2700 }, + [379] = { 41.4, 26.7, 440, 2700 }, + [380] = { 44.1, 25.9, 440, 2700 }, + [381] = { 57, 25.8, 440, 2700 }, + [382] = { 32, 24.9, 440, 2700 }, + [383] = { 56.4, 23.9, 440, 2700 }, + [384] = { 59.2, 23.3, 440, 2700 }, + [385] = { 62.3, 23, 440, 2700 }, + [386] = { 31.5, 22.9, 440, 2700 }, + [387] = { 61.5, 22.7, 440, 2700 }, + [388] = { 56, 92.7, 490, 2700 }, + [389] = { 42.5, 91.5, 490, 2700 }, + [390] = { 61.7, 84.9, 490, 2700 }, + [391] = { 77.8, 81.4, 490, 2700 }, + [392] = { 48.8, 80.3, 490, 2700 }, + [393] = { 64.8, 80.3, 490, 2700 }, + [394] = { 78.2, 79.7, 490, 2700 }, + [395] = { 78.1, 78.3, 490, 2700 }, + [396] = { 38.4, 78, 490, 2700 }, + [397] = { 77.2, 77.6, 490, 2700 }, + [398] = { 50.4, 76.1, 490, 2700 }, + [399] = { 50.5, 75.6, 490, 2700 }, + [400] = { 30.7, 74.7, 490, 2700 }, + [401] = { 10.2, 73.1, 490, 2700 }, + [402] = { 31, 71.6, 490, 2700 }, + [403] = { 73.6, 70.4, 490, 2700 }, + [404] = { 28.5, 70.3, 490, 2700 }, + [405] = { 74.2, 69.9, 490, 2700 }, + [406] = { 34.1, 69.5, 490, 2700 }, + [407] = { 63.1, 66.5, 490, 2700 }, + [408] = { 59.4, 65.5, 490, 2700 }, + [409] = { 37, 64.9, 490, 2700 }, + [410] = { 45.5, 64.8, 490, 2700 }, + [411] = { 40.9, 64.8, 490, 2700 }, + [412] = { 75.6, 63.7, 490, 2700 }, + [413] = { 22.2, 60.3, 490, 2700 }, + [414] = { 21.9, 60.1, 490, 2700 }, + [415] = { 23.8, 57.1, 490, 2700 }, + [416] = { 48, 56, 490, 2700 }, + [417] = { 46.7, 53.8, 490, 2700 }, + [418] = { 50.2, 52.6, 490, 2700 }, + [419] = { 54.1, 51.9, 490, 2700 }, + [420] = { 46.1, 50.9, 490, 2700 }, + [421] = { 54.3, 50.8, 490, 2700 }, + [422] = { 52.1, 50.6, 490, 2700 }, + [423] = { 76.6, 50.5, 490, 2700 }, + [424] = { 54.6, 50.4, 490, 2700 }, + [425] = { 76.8, 49.5, 490, 2700 }, + [426] = { 47.3, 47.4, 490, 2700 }, + [427] = { 54, 46.6, 490, 2700 }, + [428] = { 46.6, 44.9, 490, 2700 }, + [429] = { 79.9, 42.7, 490, 2700 }, + [430] = { 20.8, 42.4, 490, 2700 }, + [431] = { 78, 41, 490, 2700 }, + [432] = { 76.3, 40.3, 490, 2700 }, + [433] = { 25.5, 39.8, 490, 2700 }, + [434] = { 75.6, 39.7, 490, 2700 }, + [435] = { 79, 39, 490, 2700 }, + [436] = { 9, 37.5, 490, 2700 }, + [437] = { 55.5, 35.2, 490, 2700 }, + [438] = { 45.4, 35.2, 490, 2700 }, + [439] = { 63, 33.4, 490, 2700 }, + [440] = { 75.8, 32.6, 490, 2700 }, + [441] = { 12.3, 27.3, 490, 2700 }, + [442] = { 69, 17.7, 490, 2700 }, + [443] = { 67.7, 16.8, 490, 2700 }, + [444] = { 67.6, 16.7, 490, 2700 }, + [445] = { 63.9, 16.2, 490, 2700 }, + [446] = { 65.7, 15.5, 490, 2700 }, + [447] = { 67.4, 13.6, 490, 2700 }, + [448] = { 48.6, 12.7, 490, 2700 }, + [449] = { 56.6, 11.7, 490, 2700 }, + [450] = { 55.8, 87.8, 616, 2700 }, + [451] = { 94.6, 84.6, 616, 2700 }, + [452] = { 61.7, 84.2, 616, 2700 }, + [453] = { 58.7, 79.9, 616, 2700 }, + [454] = { 95.2, 79.3, 616, 2700 }, + [455] = { 46.4, 78.4, 616, 2700 }, + [456] = { 91.8, 76.8, 616, 2700 }, + [457] = { 95, 74.2, 616, 2700 }, + [458] = { 44.6, 73.9, 616, 2700 }, + [459] = { 40.7, 73.5, 616, 2700 }, + [460] = { 48.1, 72.3, 616, 2700 }, + [461] = { 21.9, 71.6, 616, 2700 }, + [462] = { 70.1, 71.3, 616, 2700 }, + [463] = { 74.9, 70.2, 616, 2700 }, + [464] = { 28.3, 70, 616, 2700 }, + [465] = { 64.1, 69.8, 616, 2700 }, + [466] = { 57.4, 68.7, 616, 2700 }, + [467] = { 78.4, 68.1, 616, 2700 }, + [468] = { 50.7, 66.6, 616, 2700 }, + [469] = { 83.9, 66.1, 616, 2700 }, + [470] = { 88.4, 65.4, 616, 2700 }, + [471] = { 70, 64.8, 616, 2700 }, + [472] = { 83.4, 63.6, 616, 2700 }, + [473] = { 64.6, 63.3, 616, 2700 }, + [474] = { 38.8, 61.7, 616, 2700 }, + [475] = { 61.3, 59.8, 616, 2700 }, + [476] = { 64.8, 59.1, 616, 2700 }, + [477] = { 55.1, 58.5, 616, 2700 }, + [478] = { 12.5, 58, 616, 2700 }, + [479] = { 49.4, 57.2, 616, 2700 }, + [480] = { 64.8, 55.4, 616, 2700 }, + [481] = { 23.3, 55.3, 616, 2700 }, + [482] = { 61.7, 54.9, 616, 2700 }, + [483] = { 52.2, 52.7, 616, 2700 }, + [484] = { 34.7, 50.1, 616, 2700 }, + [485] = { 64.4, 50, 616, 2700 }, + [486] = { 44.8, 50, 616, 2700 }, + [487] = { 70.7, 48.7, 616, 2700 }, + [488] = { 29.9, 48.6, 616, 2700 }, + [489] = { 7.2, 46.1, 616, 2700 }, + [490] = { 17.4, 45.6, 616, 2700 }, + [491] = { 31.1, 45.3, 616, 2700 }, + [492] = { 67.9, 43.7, 616, 2700 }, + [493] = { 37.9, 43.1, 616, 2700 }, + [494] = { 21.1, 43.1, 616, 2700 }, + [495] = { 26.2, 42.4, 616, 2700 }, + [496] = { 4.1, 41.7, 616, 2700 }, + [497] = { 47.2, 41.1, 616, 2700 }, + [498] = { 16.4, 36.2, 616, 2700 }, + [499] = { 73.3, 35.6, 616, 2700 }, + [500] = { 14, 34.3, 616, 2700 }, + [501] = { 34.9, 34.1, 616, 2700 }, + [502] = { 11.7, 34.1, 616, 2700 }, + [503] = { 16.1, 32.3, 616, 2700 }, + [504] = { 65.5, 31.4, 616, 2700 }, + [505] = { 43, 30.8, 616, 2700 }, + [506] = { 12.9, 30.3, 616, 2700 }, + [507] = { 46.7, 29.8, 616, 2700 }, + [508] = { 16.5, 28.1, 616, 2700 }, + [509] = { 15.1, 28, 616, 2700 }, + [510] = { 14, 25.7, 616, 2700 }, + [511] = { 52.3, 23.1, 616, 2700 }, + [512] = { 70.1, 22.8, 616, 2700 }, + [513] = { 62, 18.7, 616, 2700 }, + [514] = { 92, 10.7, 616, 2700 }, + [515] = { 4.7, 10, 616, 2700 }, + [516] = { 94.5, 6.1, 616, 2700 }, + [517] = { 3.6, 2, 616, 2700 }, + [518] = { 94.5, 1.7, 616, 2700 }, + [519] = { 99.5, 1.6, 616, 2700 }, + [520] = { 56.8, 89.9, 618, 2700 }, + [521] = { 57.1, 89.5, 618, 2700 }, + [522] = { 53.5, 89.2, 618, 2700 }, + [523] = { 58.4, 88.8, 618, 2700 }, + [524] = { 59, 88.6, 618, 2700 }, + [525] = { 59.6, 87.9, 618, 2700 }, + [526] = { 53.8, 86.7, 618, 2700 }, + [527] = { 59.4, 86.3, 618, 2700 }, + [528] = { 52.2, 85.6, 618, 2700 }, + [529] = { 53.6, 84.5, 618, 2700 }, + [530] = { 59, 84.4, 618, 2700 }, + [531] = { 61.1, 84.3, 618, 2700 }, + [532] = { 62.4, 82.7, 618, 2700 }, + [533] = { 60.6, 82, 618, 2700 }, + [534] = { 46.1, 81.7, 618, 2700 }, + [535] = { 71.2, 81.2, 618, 2700 }, + [536] = { 48.6, 80.8, 618, 2700 }, + [537] = { 50.7, 80.5, 618, 2700 }, + [538] = { 61.2, 80.4, 618, 2700 }, + [539] = { 48.4, 79.7, 618, 2700 }, + [540] = { 65.5, 79.5, 618, 2700 }, + [541] = { 60.3, 78.8, 618, 2700 }, + [542] = { 61.7, 78.6, 618, 2700 }, + [543] = { 59.5, 77.6, 618, 2700 }, + [544] = { 56.6, 77.6, 618, 2700 }, + [545] = { 57.4, 72.5, 618, 2700 }, + [546] = { 62.8, 71.1, 618, 2700 }, + [547] = { 64.6, 70.4, 618, 2700 }, + [548] = { 66.2, 69.2, 618, 2700 }, + [549] = { 60.5, 68.3, 618, 2700 }, + [550] = { 63.2, 67.7, 618, 2700 }, + [551] = { 61.1, 64, 618, 2700 }, + [552] = { 59.6, 63.4, 618, 2700 }, + [553] = { 57.8, 61.1, 618, 2700 }, + [554] = { 64.6, 60.8, 618, 2700 }, + [555] = { 66.7, 60.1, 618, 2700 }, + [556] = { 65.3, 58.6, 618, 2700 }, + [557] = { 52.3, 55.7, 618, 2700 }, + [558] = { 57.1, 55.3, 618, 2700 }, + [559] = { 53.4, 53.7, 618, 2700 }, + [560] = { 53.4, 51.6, 618, 2700 }, + [561] = { 55.7, 51.6, 618, 2700 }, + [562] = { 54.7, 49.7, 618, 2700 }, + [563] = { 55.7, 48.9, 618, 2700 }, + [564] = { 51.3, 45.1, 618, 2700 }, + [565] = { 55.9, 44.7, 618, 2700 }, + [566] = { 56.9, 44.6, 618, 2700 }, + [567] = { 52.8, 44.4, 618, 2700 }, + [568] = { 55.7, 44.3, 618, 2700 }, + [569] = { 53.8, 43.8, 618, 2700 }, + [570] = { 50.3, 43.7, 618, 2700 }, + [571] = { 55.5, 43.6, 618, 2700 }, + [572] = { 50.1, 43.4, 618, 2700 }, + [573] = { 56.5, 42.7, 618, 2700 }, + [574] = { 69.6, 41.8, 618, 2700 }, + [575] = { 53, 41.1, 618, 2700 }, + [576] = { 49.9, 41, 618, 2700 }, + [577] = { 24.5, 39.9, 618, 2700 }, + [578] = { 70.2, 39.8, 618, 2700 }, + [579] = { 70.8, 39.7, 618, 2700 }, + [580] = { 52.1, 39.5, 618, 2700 }, + [581] = { 55.1, 39.2, 618, 2700 }, + [582] = { 67.7, 38.6, 618, 2700 }, + [583] = { 69.4, 38.5, 618, 2700 }, + [584] = { 70, 38.2, 618, 2700 }, + [585] = { 24.6, 38.1, 618, 2700 }, + [586] = { 66.5, 37.5, 618, 2700 }, + [587] = { 68.6, 37.4, 618, 2700 }, + [588] = { 68, 35.6, 618, 2700 }, + [589] = { 24.6, 34.9, 618, 2700 }, + [590] = { 51.5, 18.6, 618, 2700 }, + [591] = { 50.3, 16.9, 618, 2700 }, + [592] = { 60.6, 15.9, 618, 2700 }, + [593] = { 54.8, 10.5, 618, 2700 }, + [594] = { 48.3, 9.2, 618, 2700 }, + [595] = { 51.1, 7, 618, 2700 }, + [596] = { 47.8, 6.6, 618, 2700 }, + [597] = { 48.7, 6.4, 618, 2700 }, + [598] = { 44, 51.4, 876, 300 }, + [599] = { 63.8, 94, 1377, 2700 }, + [600] = { 57, 90.8, 1377, 2700 }, + [601] = { 40.4, 90.7, 1377, 2700 }, + [602] = { 48.9, 86.9, 1377, 2700 }, + [603] = { 32.3, 83.8, 1377, 2700 }, + [604] = { 66.9, 81.5, 1377, 2700 }, + [605] = { 40.4, 79.9, 1377, 2700 }, + [606] = { 62.8, 78.8, 1377, 2700 }, + [607] = { 43.7, 78.5, 1377, 2700 }, + [608] = { 44.2, 78, 1377, 2700 }, + [609] = { 68.3, 77.9, 1377, 2700 }, + [610] = { 19.7, 76.1, 1377, 2700 }, + [611] = { 61.2, 76, 1377, 2700 }, + [612] = { 36.9, 71, 1377, 2700 }, + [613] = { 41.4, 67.1, 1377, 2700 }, + [614] = { 17.9, 66.5, 1377, 2700 }, + [615] = { 65.4, 65, 1377, 2700 }, + [616] = { 81.1, 64.3, 1377, 2700 }, + [617] = { 80.8, 64.2, 1377, 2700 }, + [618] = { 48.2, 61.9, 1377, 2700 }, + [619] = { 37.7, 61.1, 1377, 2700 }, + [620] = { 54.4, 60.2, 1377, 2700 }, + [621] = { 58.6, 51.5, 1377, 2700 }, + [622] = { 79.7, 45.4, 1377, 2700 }, + [623] = { 33.4, 41.7, 1377, 2700 }, + [624] = { 67.1, 40.1, 1377, 2700 }, + [625] = { 26.5, 33.3, 1377, 2700 }, + [626] = { 49.1, 29.6, 1377, 2700 }, + [627] = { 70.6, 29.4, 1377, 2700 }, + [628] = { 32.5, 28.1, 1377, 2700 }, + [629] = { 51.1, 23.8, 1377, 2700 }, + [630] = { 32.2, 23.1, 1377, 2700 }, + [631] = { 28.8, 22.6, 1377, 2700 }, + [632] = { 50.7, 21.9, 1377, 2700 }, + [633] = { 65.2, 21.6, 1377, 2700 }, + [634] = { 60.4, 21.3, 1377, 2700 }, + [635] = { 58.3, 21.3, 1377, 2700 }, + [636] = { 31.3, 20.1, 1377, 2700 }, + [637] = { 36.6, 18.3, 1377, 2700 }, + [638] = { 49.7, 17.7, 1377, 2700 }, + [639] = { 40.9, 17.2, 1377, 2700 }, + [640] = { 58.3, 15.3, 1377, 2700 }, + [641] = { 46.2, 15.2, 1377, 2700 }, + [642] = { 42, 11.8, 1377, 2700 }, + [643] = { 20.7, 35.7, 1941, 2700 }, + [644] = { 69.6, 34.2, 1941, 2700 }, + [645] = { 69.7, 31.9, 1941, 2700 }, + [646] = { 11.3, 25.7, 1941, 2700 }, + [647] = { 55.6, 22.3, 1941, 2700 }, + [648] = { 63, 10.8, 1941, 2700 }, + [649] = { 54.9, 8.1, 1941, 2700 }, + [650] = { 71.9, 2.2, 1941, 2700 }, + [651] = { 57.6, 2.1, 1941, 2700 }, + [652] = { 84.4, 24.3, 2557, 2700 }, + [653] = { 88.5, 21.1, 2557, 2700 }, + [654] = { 90.6, 97.1, 2557, 604800 }, + [655] = { 90.7, 94.6, 2557, 604800 }, + [656] = { 90.5, 92.5, 2557, 604800 }, + [657] = { 92.1, 91.7, 2557, 604800 }, + [658] = { 95, 91, 2557, 604800 }, + [659] = { 92.1, 90.6, 2557, 604800 }, + [660] = { 93.9, 89.6, 2557, 604800 }, + [661] = { 53.7, 55.7, 2597, 2700 }, + [662] = { 54.1, 53.2, 2597, 2700 }, + [663] = { 41.6, 49.9, 2597, 2700 }, + [664] = { 49.5, 48.6, 2597, 2700 }, + [665] = { 49.6, 48.4, 2597, 2700 }, + [666] = { 49.5, 48.2, 2597, 2700 }, + [667] = { 37.4, 48.1, 2597, 2700 }, + [668] = { 48.1, 47, 2597, 2700 }, + [669] = { 48.2, 46.7, 2597, 2700 }, + [670] = { 48, 46.6, 2597, 2700 }, + [671] = { 46.3, 46.6, 2597, 2700 }, + [672] = { 51.9, 46, 2597, 2700 }, + [673] = { 39.2, 45.2, 2597, 2700 }, + [674] = { 44.9, 45.2, 2597, 2700 }, + [675] = { 38.4, 44.7, 2597, 2700 }, + [676] = { 37.6, 44.3, 2597, 2700 }, + [677] = { 49.7, 43.9, 2597, 2700 }, + [678] = { 40.7, 42.6, 2597, 2700 }, + [679] = { 50.6, 41.8, 2597, 2700 }, + [680] = { 46.9, 39.3, 2597, 2700 }, + [681] = { 87.4, 4.6, 3478, 2700 }, + [682] = { 81.7, 2.1, 3478, 2700 }, + [683] = { 67.7, 2, 3478, 2700 }, + [684] = { 43.2, 74.2, 4012, 2700 }, + [685] = { 22.1, 69.9, 4012, 2700 }, + [686] = { 47.2, 64.7, 4012, 2700 }, + [687] = { 33.6, 64.4, 4012, 2700 }, + [688] = { 37.5, 61.6, 4012, 2700 }, + [689] = { 9.3, 61.2, 4012, 2700 }, + [690] = { 44, 57.3, 4012, 2700 }, + [691] = { 10.7, 50.9, 4012, 2700 }, + [692] = { 9.7, 48.4, 4012, 2700 }, + [693] = { 31.4, 46.8, 4012, 2700 }, + [694] = { 11.1, 45.4, 4012, 2700 }, + [695] = { 34.9, 44.9, 4012, 2700 }, + [696] = { 8.3, 44.6, 4012, 2700 }, + [697] = { 29.7, 43.7, 4012, 2700 }, + [698] = { 35.5, 41.3, 4012, 2700 }, + [699] = { 30.3, 27, 4012, 2700 }, + [700] = { 11.7, 26.6, 4012, 2700 }, + [701] = { 9.7, 26.5, 4012, 2700 }, + [702] = { 28.7, 26, 4012, 2700 }, + [703] = { 44.5, 24, 4012, 2700 }, + [704] = { 28.4, 21.8, 4012, 2700 }, + [705] = { 40, 21.4, 4012, 2700 }, + [706] = { 40.9, 21.3, 4012, 2700 }, + [707] = { 48.6, 19.9, 4012, 2700 }, + [708] = { 5.7, 19.8, 4012, 2700 }, + [709] = { 40.6, 16.8, 4012, 2700 }, + [710] = { 43.5, 10.6, 4012, 2700 }, + [711] = { 16, 3.9, 4012, 2700 }, + [712] = { 19.1, 2.9, 4012, 2700 }, + [713] = { 30.3, 1.1, 4012, 2700 }, + [714] = { 14.1, 0.4, 4012, 2700 }, + [715] = { 7.4, 0.1, 4012, 2700 }, + [716] = { 62, 83, 5121, 2700 }, + [717] = { 58.5, 69.9, 5121, 2700 }, + [718] = { 61, 69.7, 5121, 2700 }, + [719] = { 54.1, 69.2, 5121, 2700 }, + [720] = { 59.4, 66.6, 5121, 2700 }, + [721] = { 43.3, 65.4, 5121, 2700 }, + [722] = { 49.2, 56.6, 5121, 2700 }, + [723] = { 52.5, 54.8, 5121, 2700 }, + [724] = { 54.6, 54.1, 5121, 2700 }, + [725] = { 52.2, 53.9, 5121, 2700 }, + [726] = { 56.4, 53, 5121, 2700 }, + [727] = { 55.3, 51.8, 5121, 2700 }, + [728] = { 61.8, 51.8, 5121, 2700 }, + [729] = { 40.6, 51, 5121, 2700 }, + [730] = { 45.4, 49.3, 5121, 2700 }, + [731] = { 57.6, 49.1, 5121, 2700 }, + [732] = { 53, 48.9, 5121, 2700 }, + [733] = { 52.1, 48.2, 5121, 2700 }, + [734] = { 56.9, 47.7, 5121, 2700 }, + [735] = { 0.6, 47.2, 5121, 2700 }, + [736] = { 3.2, 45.3, 5121, 2700 }, + [737] = { 50.7, 41.1, 5121, 2700 }, + [738] = { 57.1, 38.5, 5121, 2700 }, + [739] = { 63.3, 35.4, 5121, 2700 }, + [740] = { 3.1, 33.8, 5121, 2700 }, + [741] = { 0.9, 32.2, 5121, 2700 }, + [742] = { 60.8, 23.6, 5121, 2700 }, + [743] = { 48.8, 18.8, 5121, 2700 }, + [744] = { 10.9, 96.8, 5225, 2700 }, + [745] = { 21.1, 95.3, 5225, 2700 }, + [746] = { 18.2, 93.5, 5225, 2700 }, + [747] = { 73.9, 93.4, 5225, 2700 }, + [748] = { 12.8, 93.3, 5225, 2700 }, + [749] = { 98.7, 98.9, 5581, 2700 }, + [750] = { 97.6, 95.9, 5581, 2700 }, + [751] = { 99, 93.3, 5581, 2700 }, + [752] = { 97.8, 92.8, 5581, 2700 }, + [753] = { 98.6, 90.7, 5581, 2700 }, + [754] = { 98.2, 89.2, 5581, 2700 }, + [755] = { 93.2, 85.2, 5581, 2700 }, + [756] = { 92.6, 78.5, 5581, 2700 }, + [757] = { 96.7, 73.2, 5581, 2700 }, + [758] = { 96.7, 70.9, 5581, 2700 }, + [759] = { 91.4, 59.8, 5581, 2700 }, + [760] = { 94.5, 44.4, 5581, 2700 }, + [761] = { 93.7, 43.3, 5581, 2700 }, + [762] = { 97.9, 35.1, 5581, 2700 }, + [763] = { 96, 26.2, 5581, 2700 }, + [764] = { 95.7, 19.6, 5581, 2700 }, + [765] = { 96.2, 14.7, 5581, 2700 }, + [766] = { 90.4, 11.8, 5581, 2700 }, + [767] = { 95.1, 10.8, 5581, 2700 }, + [768] = { 95.5, 10.4, 5581, 2700 }, + [769] = { 95.1, 6.3, 5581, 2700 }, + }, + }, + [175405] = { + ["coords"] = { + [1] = { 63.2, 16.6, 2017, 180 }, + }, + }, + [175432] = { + ["coords"] = { + [1] = { 48, 23.6, 139, 900 }, + [2] = { 98.6, 85.4, 5225, 900 }, + }, + }, + [175433] = { + ["coords"] = { + [1] = { 64.4, 57.8, 2017, 180 }, + }, + }, + [175434] = { + ["coords"] = { + [1] = { 64.3, 57.8, 2017, 180 }, + }, + }, + [175435] = { + ["coords"] = { + [1] = { 57.8, 64.7, 2017, 180 }, + }, + }, + [175436] = { + ["coords"] = { + [1] = { 57.9, 64.5, 2017, 180 }, + }, + }, + [175437] = { + ["coords"] = { + [1] = { 57.7, 64.4, 2017, 180 }, + }, + }, + [175438] = { + ["coords"] = { + [1] = { 72.3, 65.1, 2017, 180 }, + }, + }, + [175439] = { + ["coords"] = { + [1] = { 72.3, 65.4, 2017, 180 }, + }, + }, + [175440] = { + ["coords"] = { + [1] = { 72.4, 65.3, 2017, 180 }, + }, + }, + [175441] = { + ["coords"] = { + [1] = { 62.3, 81, 2017, 180 }, + }, + }, + [175442] = { + ["coords"] = { + [1] = { 62.1, 81, 2017, 180 }, + }, + }, + [175443] = { + ["coords"] = { + [1] = { 62.1, 81, 2017, 180 }, + }, + }, + [175444] = { + ["coords"] = { + [1] = { 62.2, 81.1, 2017, 180 }, + }, + }, + [175445] = { + ["coords"] = { + [1] = { 57.4, 76.7, 2017, 180 }, + }, + }, + [175447] = { + ["coords"] = { + [1] = { 57.5, 77, 2017, 180 }, + }, + }, + [175449] = { + ["coords"] = { + [1] = { 82.3, 44.5, 2017, 180 }, + }, + }, + [175450] = { + ["coords"] = { + [1] = { 82.3, 44.8, 2017, 180 }, + }, + }, + [175454] = { + ["coords"] = { + [1] = { 76.5, 21.6, 2017, 180 }, + }, + }, + [175455] = { + ["coords"] = { + [1] = { 76.5, 21.4, 2017, 180 }, + }, + }, + [175457] = { + ["coords"] = { + [1] = { 51.2, 58.2, 2017, 180 }, + }, + }, + [175458] = { + ["coords"] = { + [1] = { 51.3, 58.2, 2017, 180 }, + }, + }, + [175459] = { + ["coords"] = { + [1] = { 61.6, 90.8, 2017, 180 }, + }, + }, + [175460] = { + ["coords"] = { + [1] = { 61.6, 90.7, 2017, 180 }, + }, + }, + [175461] = { + ["coords"] = { + [1] = { 82.1, 60.8, 2017, 180 }, + }, + }, + [175462] = { + ["coords"] = { + [1] = { 82, 60.4, 2017, 180 }, + }, + }, + [175463] = { + ["coords"] = { + [1] = { 81.9, 60.6, 2017, 180 }, + }, + }, + [175466] = { + ["coords"] = { + [1] = { 58.5, 62.4, 2017, 180 }, + }, + }, + [175467] = { + ["coords"] = { + [1] = { 72, 54.8, 2017, 180 }, + }, + }, + [175469] = { + ["coords"] = { + [1] = { 70.9, 63.6, 2017, 180 }, + }, + }, + [175470] = { + ["coords"] = { + [1] = { 72.6, 60.5, 2017, 180 }, + }, + }, + [175471] = { + ["coords"] = { + [1] = { 63.7, 83.2, 2017, 180 }, + }, + }, + [175472] = { + ["coords"] = { + [1] = { 62.8, 77.7, 2017, 180 }, + }, + }, + [175474] = { + ["coords"] = { + [1] = { 68.3, 12.4, 2017, 180 }, + }, + }, + [175477] = { + ["coords"] = { + [1] = { 80, 36.4, 2017, 180 }, + }, + }, + [175478] = { + ["coords"] = { + [1] = { 78.6, 35.1, 2017, 180 }, + }, + }, + [175479] = { + ["coords"] = { + [1] = { 85.1, 45.8, 2017, 180 }, + }, + }, + [175481] = { + ["coords"] = { + [1] = { 89.8, 42.2, 2017, 180 }, + }, + }, + [175483] = { + ["coords"] = { + [1] = { 60.7, 86.9, 2017, 180 }, + }, + }, + [175484] = { + ["coords"] = { + [1] = { 55.2, 87.5, 2017, 180 }, + }, + }, + [175487] = { + ["coords"] = { + [1] = { 72.3, 12.9, 139, 2 }, + }, + }, + [175488] = { + ["coords"] = { + [1] = { 72.7, 15.5, 139, 2 }, + }, + }, + [175524] = { + ["coords"] = { + [1] = { 47.3, 48.7, 148, 2 }, + }, + ["fac"] = "A", + }, + [175528] = { + ["coords"] = { + [1] = { 37.8, 34.4, 1583, 25 }, + }, + }, + [175529] = { + ["coords"] = { + [1] = { 36.5, 34.4, 1583, 25 }, + }, + }, + [175530] = { + ["coords"] = { + [1] = { 37.8, 32.8, 1583, 25 }, + }, + }, + [175531] = { + ["coords"] = { + [1] = { 36.5, 32.8, 1583, 25 }, + }, + }, + [175532] = { + ["coords"] = { + [1] = { 37.8, 31.1, 1583, 25 }, + }, + }, + [175533] = { + ["coords"] = { + [1] = { 36.5, 31.1, 1583, 25 }, + }, + }, + [175565] = { + ["coords"] = { + [1] = { 52.3, 55.2, 400, 30 }, + [2] = { 56.4, 50.4, 400, 30 }, + }, + }, + [175566] = { + ["coords"] = { + [1] = { 49.8, 63.5, 85, 900 }, + [2] = { 48.1, 62.1, 85, 900 }, + [3] = { 47, 61.4, 85, 900 }, + [4] = { 51.9, 61.2, 85, 900 }, + [5] = { 48.3, 61.2, 85, 900 }, + [6] = { 46, 60.8, 85, 900 }, + [7] = { 50.4, 60.8, 85, 900 }, + [8] = { 44.6, 60.7, 85, 900 }, + [9] = { 52.8, 60.4, 85, 900 }, + [10] = { 49, 60.2, 85, 900 }, + [11] = { 43.5, 59.9, 85, 900 }, + [12] = { 42.1, 59.7, 85, 900 }, + [13] = { 41.6, 59.2, 85, 900 }, + [14] = { 45.5, 59.2, 85, 900 }, + [15] = { 47.1, 59, 85, 900 }, + [16] = { 44.6, 58.8, 85, 900 }, + [17] = { 48.8, 58.7, 85, 900 }, + [18] = { 43.1, 58.6, 85, 900 }, + [19] = { 55.4, 58.1, 85, 900 }, + [20] = { 48, 58, 85, 900 }, + [21] = { 41.7, 57.8, 85, 900 }, + [22] = { 40.4, 57.6, 85, 900 }, + [23] = { 43.3, 57.5, 85, 900 }, + [24] = { 45.6, 57.4, 85, 900 }, + [25] = { 48.8, 56.9, 85, 900 }, + [26] = { 41.7, 56.8, 85, 900 }, + [27] = { 51.5, 56.8, 85, 900 }, + [28] = { 55.7, 56.6, 85, 900 }, + [29] = { 47, 56.5, 85, 900 }, + [30] = { 49.1, 56.4, 85, 900 }, + [31] = { 50, 56.4, 85, 900 }, + [32] = { 43.8, 56.2, 85, 900 }, + [33] = { 39.8, 55.8, 85, 900 }, + [34] = { 50.6, 55.2, 85, 900 }, + [35] = { 51.4, 55.1, 85, 900 }, + [36] = { 43.4, 55, 85, 900 }, + [37] = { 49.7, 54.9, 85, 900 }, + [38] = { 48.7, 54.9, 85, 900 }, + [39] = { 46.5, 54.8, 85, 900 }, + [40] = { 45.3, 54.8, 85, 900 }, + [41] = { 54.7, 54.3, 85, 900 }, + [42] = { 42.3, 54.2, 85, 900 }, + [43] = { 39.7, 54.1, 85, 900 }, + [44] = { 44.4, 54.1, 85, 900 }, + [45] = { 47.4, 54.1, 85, 900 }, + [46] = { 53.4, 53.9, 85, 900 }, + [47] = { 56.1, 53.8, 85, 900 }, + [48] = { 41.3, 53.7, 85, 900 }, + [49] = { 48.2, 53.6, 85, 900 }, + [50] = { 46.3, 53.5, 85, 900 }, + [51] = { 50.6, 53.2, 85, 900 }, + [52] = { 44.9, 53, 85, 900 }, + [53] = { 53.6, 52.7, 85, 900 }, + [54] = { 55.4, 52.7, 85, 900 }, + [55] = { 46.5, 52.5, 85, 900 }, + [56] = { 52.9, 52.1, 85, 900 }, + [57] = { 45.6, 52.1, 85, 900 }, + [58] = { 49.2, 52.1, 85, 900 }, + [59] = { 41.4, 52, 85, 900 }, + [60] = { 51.5, 52, 85, 900 }, + [61] = { 43.9, 51.8, 85, 900 }, + [62] = { 40.4, 51.7, 85, 900 }, + [63] = { 42.6, 51.6, 85, 900 }, + [64] = { 52.2, 51.5, 85, 900 }, + [65] = { 53.1, 51, 85, 900 }, + [66] = { 55.5, 51, 85, 900 }, + [67] = { 46.7, 50.9, 85, 900 }, + [68] = { 39.6, 50.7, 85, 900 }, + [69] = { 44.7, 50.6, 85, 900 }, + [70] = { 50.4, 50.3, 85, 900 }, + [71] = { 52.1, 49.8, 85, 900 }, + [72] = { 41.4, 49.7, 85, 900 }, + }, + }, + [175568] = { + ["coords"] = { + [1] = { 56.2, 44.5, 409, 300 }, + }, + }, + [175570] = { + ["coords"] = { + [1] = { 49.5, 13.7, 2057, 7200 }, + }, + }, + [175586] = { + ["coords"] = { + [1] = { 61.4, 60.7, 618, 2 }, + }, + ["fac"] = "A", + }, + [175587] = { + ["coords"] = { + [1] = { 59, 59.8, 618, 2 }, + }, + ["fac"] = "A", + }, + [175590] = "_", + [175604] = { + ["coords"] = { + [1] = { 46, 41.7, 400, 180 }, + [2] = { 33.3, 52.6, 5179, 300 }, + [3] = { 33.3, 52.5, 5179, 300 }, + }, + }, + [175606] = { + ["coords"] = { + [1] = { 65.5, 77.7, 1583, 250 }, + [2] = { 62.2, 77.7, 1583, 250 }, + [3] = { 60.4, 77.6, 1583, 250 }, + [4] = { 63.5, 77.6, 1583, 250 }, + [5] = { 59.3, 77.5, 1583, 250 }, + [6] = { 54.2, 76.9, 1583, 250 }, + [7] = { 51.8, 76.5, 1583, 250 }, + [8] = { 51, 76.3, 1583, 250 }, + [9] = { 51, 75.9, 1583, 250 }, + [10] = { 50.2, 75, 1583, 250 }, + [11] = { 50.8, 75, 1583, 250 }, + [12] = { 59.3, 73.9, 1583, 250 }, + [13] = { 54.7, 73.9, 1583, 250 }, + [14] = { 60.6, 73.8, 1583, 250 }, + [15] = { 50.8, 73.7, 1583, 250 }, + [16] = { 51, 73.4, 1583, 250 }, + [17] = { 59.2, 72.9, 1583, 250 }, + [18] = { 66.2, 72.7, 1583, 250 }, + [19] = { 60.2, 71.9, 1583, 250 }, + [20] = { 65.4, 70.5, 1583, 250 }, + [21] = { 66.1, 68.8, 1583, 250 }, + [22] = { 60.1, 68.7, 1583, 250 }, + [23] = { 60.3, 68.5, 1583, 250 }, + [24] = { 60.9, 68.4, 1583, 250 }, + }, + }, + [175610] = { + ["coords"] = { + [1] = { 47.5, 68.3, 2057, 7200 }, + }, + }, + [175611] = { + ["coords"] = { + [1] = { 60.4, 54.6, 2057, 7200 }, + }, + }, + [175612] = { + ["coords"] = { + [1] = { 66.8, 32.9, 2057, 7200 }, + }, + }, + [175613] = { + ["coords"] = { + [1] = { 58.3, 26.1, 2057, 7200 }, + }, + }, + [175614] = { + ["coords"] = { + [1] = { 35.7, 26.6, 2057, 7200 }, + }, + }, + [175615] = { + ["coords"] = { + [1] = { 39.3, 55.3, 2057, 7200 }, + }, + }, + [175616] = { + ["coords"] = { + [1] = { 30.7, 70.9, 2057, 7200 }, + }, + }, + [175618] = { + ["coords"] = { + [1] = { 60.1, 85.2, 2057, 7200 }, + }, + }, + [175619] = { + ["coords"] = { + [1] = { 22.1, 55.7, 2057, 7200 }, + }, + }, + [175620] = { + ["coords"] = { + [1] = { 21.9, 35.6, 2057, 7200 }, + }, + }, + [175621] = { + ["coords"] = { + [1] = { 45.9, 53.8, 1583, 3600000 }, + }, + }, + [175628] = { + ["coords"] = { + [1] = { 61.4, 60.7, 618, 30 }, + }, + }, + [175629] = { + ["coords"] = { + [1] = { 61.4, 60.7, 618, 30 }, + }, + }, + [175630] = { + ["coords"] = { + [1] = { 41.6, 42.7, 16, 300 }, + [2] = { 50.9, 34.8, 148, 900 }, + }, + }, + [175656] = { + ["coords"] = { + [1] = { 30.6, 13.7, 139, 900 }, + [2] = { 76.7, 73, 5225, 900 }, + }, + }, + [175657] = { + ["coords"] = { + [1] = { 30.6, 13.7, 139, 900 }, + [2] = { 76.7, 73, 5225, 900 }, + }, + }, + [175706] = { + ["coords"] = { + [1] = { 32.9, 27.3, 1583, 25 }, + }, + ["fac"] = "AH", + }, + [175707] = { + ["coords"] = { + [1] = { 34, 54.4, 405, 900 }, + [2] = { 61.1, 15, 2100, 900 }, + }, + }, + [175708] = { + ["coords"] = { + [1] = { 58.5, 27.3, 17, 2 }, + [2] = { 58.4, 27, 17, 2 }, + [3] = { 59.3, 24.9, 17, 2 }, + [4] = { 59.4, 24.8, 17, 2 }, + }, + }, + [175724] = { + ["coords"] = { + [1] = { 61.9, 39.6, 17, 900 }, + [2] = { 74.2, 32.1, 45, 7200 }, + [3] = { 34.5, 49.5, 331, 900 }, + [4] = { 85.2, 43.8, 2057, 7200 }, + }, + }, + [175725] = { + ["coords"] = { + [1] = { 34.9, 62.6, 11, 120 }, + [2] = { 9.8, 57.6, 11, 7200 }, + [3] = { 30, 71.3, 16, 300 }, + [4] = { 28.7, 52, 141, 900 }, + [5] = { 56.1, 50.6, 1497, 900 }, + [6] = { 76.1, 10.8, 1537, 900 }, + [7] = { 59.7, 55, 1584, 600 }, + [8] = { 55.3, 24.2, 1657, 900 }, + [9] = { 30.3, 20.8, 2057, 7200 }, + }, + }, + [175726] = { + ["coords"] = { + [1] = { 35.6, 61.7, 11, 120 }, + [2] = { 9.9, 56.9, 11, 7200 }, + [3] = { 62.7, 36.2, 17, 2 }, + [4] = { 17.4, 66.2, 46, 300 }, + [5] = { 60.8, 50.6, 85, 900 }, + [6] = { 34.8, 49.7, 331, 900 }, + [7] = { 76.1, 10.5, 1537, 900 }, + [8] = { 93.6, 92.5, 5581, 300 }, + }, + }, + [175727] = { + ["coords"] = { + [1] = { 30.4, 64.1, 141, 300 }, + [2] = { 27.4, 50.3, 141, 900 }, + [3] = { 36.5, 72.2, 1519, 120 }, + [4] = { 63.4, 82.5, 1657, 300 }, + [5] = { 49.1, 16.1, 1657, 900 }, + [6] = { 84.3, 19.3, 5135, 7200 }, + }, + }, + [175729] = { + ["coords"] = { + [1] = { 73.7, 44.5, 10, 3600 }, + [2] = { 61.8, 39.4, 17, 2 }, + [3] = { 30.4, 64.1, 141, 300 }, + [4] = { 36.6, 44, 148, 900 }, + [5] = { 51.9, 74.7, 1519, 120 }, + [6] = { 63.3, 82.3, 1657, 300 }, + }, + }, + [175730] = { + ["coords"] = { + [1] = { 28.9, 47.8, 141, 900 }, + [2] = { 35.4, 63.3, 1519, 120 }, + [3] = { 75.8, 54.3, 1519, 25 }, + [4] = { 56.2, 4, 1657, 900 }, + [5] = { 78.1, 25, 5135, 7200 }, + }, + }, + [175731] = { + ["coords"] = { + [1] = { 61.9, 38.7, 17, 900 }, + [2] = { 83.3, 64.4, 38, 25 }, + [3] = { 24.3, 52.3, 141, 900 }, + [4] = { 61.9, 57.8, 1497, 900 }, + [5] = { 34.1, 26, 1657, 900 }, + [6] = { 45.1, 64.6, 2057, 7200 }, + [7] = { 41.2, 77.2, 5602, 25 }, + }, + }, + [175732] = { + ["coords"] = { + [1] = { 27.9, 77.2, 33, 900 }, + [2] = { 30.9, 42.8, 357, 900 }, + [3] = { 49.4, 30.4, 618, 300 }, + }, + }, + [175733] = { + ["coords"] = { + [1] = { 64.1, 15.7, 4, 300 }, + [2] = { 73.6, 45.1, 10, 3600 }, + [3] = { 82.9, 64.4, 38, 25 }, + [4] = { 36.6, 43.8, 148, 900 }, + [5] = { 50.8, 30.1, 618, 300 }, + [6] = { 36.7, 72.1, 1519, 300 }, + [7] = { 40.9, 78.2, 2057, 7200 }, + [8] = { 41, 77.3, 5602, 25 }, + }, + }, + [175734] = { + ["coords"] = { + [1] = { 50.4, 47.6, 8, 300 }, + [2] = { 61.4, 82.3, 36, 7200 }, + [3] = { 83.2, 64.1, 38, 25 }, + [4] = { 48.3, 58.6, 267, 7200 }, + [5] = { 62.6, 20.4, 267, 7200 }, + [6] = { 77.1, 9.1, 1537, 900 }, + [7] = { 77.8, 15.4, 5135, 7200 }, + [8] = { 41.1, 77.1, 5602, 25 }, + }, + }, + [175735] = { + ["coords"] = { + [1] = { 75.8, 39.1, 1497, 300 }, + [2] = { 76, 32, 1519, 120 }, + [3] = { 57.3, 94.6, 5581, 120 }, + }, + }, + [175736] = { + ["coords"] = { + [1] = { 26.9, 58.7, 15, 900 }, + [2] = { 49.4, 84.4, 17, 900 }, + [3] = { 35.5, 49, 38, 7200 }, + [4] = { 31.6, 49.5, 215, 900 }, + [5] = { 36.9, 76.9, 440, 2 }, + [6] = { 74.8, 9.1, 1537, 900 }, + [7] = { 57.2, 56.5, 1584, 600 }, + [8] = { 16.7, 69.3, 5602, 7200 }, + }, + }, + [175737] = { + ["coords"] = { + [1] = { 40.9, 69.6, 2017, 180 }, + [2] = { 62.9, 35, 2057, 7200 }, + }, + }, + [175738] = { + ["coords"] = { + [1] = { 56.5, 30.2, 40, 3600 }, + [2] = { 61.6, 52.1, 85, 900 }, + [3] = { 44.8, 32.1, 5135, 7200 }, + }, + }, + [175739] = { + ["coords"] = { + [1] = { 26.3, 58.3, 15, 900 }, + [2] = { 49.1, 84.1, 17, 900 }, + [3] = { 77.6, 75.5, 38, 25 }, + [4] = { 30, 44.7, 44, 7200 }, + [5] = { 14.1, 44.1, 47, 7200 }, + [6] = { 31.6, 49.4, 215, 900 }, + [7] = { 99.6, 3.1, 267, 7200 }, + [8] = { 69.6, 41.1, 1519, 120 }, + [9] = { 75, 9, 1537, 900 }, + [10] = { 59.9, 58.7, 1584, 600 }, + [11] = { 44.8, 17.3, 5135, 7200 }, + [12] = { 53.8, 99.4, 5581, 120 }, + [13] = { 38.3, 82.9, 5602, 25 }, + }, + }, + [175740] = { + ["coords"] = { + [1] = { 37.2, 46.9, 38, 2 }, + [2] = { 52.6, 53, 40, 1 }, + [3] = { 17.6, 68.3, 5602, 2 }, + }, + }, + [175741] = { + ["coords"] = { + [1] = { 74.1, 45.4, 10, 3600 }, + [2] = { 41, 69.4, 2017, 180 }, + [3] = { 24.8, 69.2, 2057, 7200 }, + }, + }, + [175742] = { + ["coords"] = { + [1] = { 47.8, 54.7, 8, 600 }, + [2] = { 59.6, 58.1, 14, 900 }, + [3] = { 45, 14.6, 14, 300 }, + [4] = { 77, 12.8, 1537, 900 }, + }, + }, + [175745] = { + ["coords"] = { + [1] = { 66.8, 18.3, 4, 900 }, + [2] = { 64.2, 16.3, 4, 300 }, + [3] = { 47.7, 55, 8, 600 }, + [4] = { 26.8, 45.8, 44, 7200 }, + [5] = { 79.9, 40.2, 2057, 7200 }, + [6] = { 61, 96.8, 5581, 120 }, + }, + }, + [175746] = { + ["coords"] = { + [1] = { 47.6, 52, 1, 900 }, + [2] = { 64.4, 16.4, 4, 300 }, + [3] = { 33.1, 48.8, 10, 300 }, + [4] = { 72.1, 48, 10, 3600 }, + [5] = { 62.7, 82.6, 36, 7200 }, + [6] = { 42.1, 53, 267, 300 }, + [7] = { 63.7, 20.7, 267, 7200 }, + [8] = { 76.1, 32, 1519, 120 }, + [9] = { 77, 12.4, 1537, 900 }, + [10] = { 96.4, 15.2, 5179, 300 }, + [11] = { 57.3, 94.6, 5581, 120 }, + }, + }, + [175747] = { + ["coords"] = { + [1] = { 58.3, 47.3, 2057, 7200 }, + }, + }, + [175748] = { + ["coords"] = { + [1] = { 72.1, 46.4, 10, 3600 }, + [2] = { 52.1, 58.5, 267, 120 }, + [3] = { 74.4, 39.6, 1497, 300 }, + [4] = { 37.9, 86.6, 2017, 180 }, + [5] = { 76.7, 68.6, 2057, 7200 }, + }, + }, + [175749] = { + ["coords"] = { + [1] = { 43.8, 65.7, 12, 900 }, + [2] = { 56.1, 50.8, 1497, 900 }, + [3] = { 38.4, 87.7, 2017, 180 }, + [4] = { 72.2, 39.5, 2057, 7200 }, + [5] = { 86.8, 68.7, 5135, 7200 }, + }, + }, + [175750] = { + ["coords"] = { + [1] = { 10.8, 60.8, 11, 2 }, + [2] = { 31.5, 49.4, 215, 900 }, + [3] = { 75.7, 10.9, 1537, 900 }, + [4] = { 61.6, 96.2, 5581, 120 }, + }, + }, + [175751] = { + ["coords"] = { + [1] = { 64.3, 15.2, 4, 300 }, + [2] = { 44.7, 56.7, 8, 300 }, + [3] = { 85.3, 69.8, 12, 900 }, + [4] = { 61.8, 55.2, 17, 900 }, + }, + }, + [175752] = { + ["coords"] = { + [1] = { 47.6, 55, 8, 600 }, + [2] = { 44.8, 15.2, 14, 300 }, + [3] = { 61.9, 54.9, 17, 900 }, + [4] = { 61, 24.2, 17, 300 }, + [5] = { 75.7, 32, 1519, 120 }, + [6] = { 57.1, 94.5, 5581, 120 }, + }, + }, + [175753] = { + ["coords"] = { + [1] = { 38.4, 87.8, 2017, 180 }, + [2] = { 70.6, 38, 2057, 7200 }, + [3] = { 64.6, 27.2, 5135, 7200 }, + [4] = { 61.1, 95.2, 5581, 120 }, + }, + }, + [175754] = { + ["coords"] = { + [1] = { 51.6, 58.6, 267, 7200 }, + [2] = { 51.4, 29.4, 618, 300 }, + [3] = { 56.2, 51, 1497, 900 }, + [4] = { 75.8, 39.3, 1497, 300 }, + [5] = { 37.9, 86.5, 2017, 180 }, + [6] = { 77.4, 67.5, 2057, 7200 }, + [7] = { 88.2, 75.4, 5135, 7200 }, + }, + }, + [175756] = { + ["coords"] = { + [1] = { 34.5, 65.4, 11, 120 }, + [2] = { 27.6, 77.1, 33, 900 }, + [3] = { 56.9, 47.5, 40, 3600 }, + [4] = { 72.9, 55.7, 331, 300 }, + [5] = { 34.8, 49.8, 331, 900 }, + [6] = { 75.9, 39, 1497, 300 }, + [7] = { 39.5, 89.3, 2017, 180 }, + [8] = { 81.5, 57.1, 2057, 7200 }, + [9] = { 81.7, 41.2, 5135, 7200 }, + }, + }, + [175757] = { + ["coords"] = { + [1] = { 27.1, 77.7, 33, 900 }, + [2] = { 81.9, 63.9, 38, 25 }, + [3] = { 34.5, 50, 331, 900 }, + [4] = { 49.9, 31.7, 618, 300 }, + [5] = { 36.6, 72.1, 1519, 300 }, + [6] = { 40.5, 77, 5602, 25 }, + }, + }, + [175758] = { + ["coords"] = { + [1] = { 62.4, 38.8, 17, 900 }, + [2] = { 66.3, 7.7, 405, 900 }, + [3] = { 44.8, 80.3, 406, 900 }, + [4] = { 51.9, 74.6, 1519, 120 }, + [5] = { 79.9, 21.9, 5135, 7200 }, + }, + }, + [175759] = { + ["coords"] = { + [1] = { 31, 62.9, 141, 900 }, + [2] = { 51.3, 29.5, 618, 300 }, + [3] = { 66.5, 76.6, 1657, 900 }, + }, + }, + [175760] = { + ["coords"] = { + [1] = { 64.6, 69.4, 12, 900 }, + [2] = { 83.2, 62.5, 38, 25 }, + [3] = { 74.1, 32.4, 45, 7200 }, + [4] = { 27.4, 50.4, 141, 900 }, + [5] = { 49.1, 16.7, 1657, 900 }, + [6] = { 26.8, 67.3, 2057, 7200 }, + [7] = { 41.1, 76.3, 5602, 25 }, + }, + }, + [175761] = { + ["coords"] = { + [1] = { 49.6, 39.6, 12, 900 }, + [2] = { 51.3, 58.5, 267, 7200 }, + [3] = { 75.9, 39.1, 1497, 300 }, + [4] = { 67.6, 37.3, 1497, 900 }, + [5] = { 76.4, 32.4, 1519, 120 }, + [6] = { 76.8, 12.8, 1537, 900 }, + [7] = { 38.5, 87, 2017, 180 }, + [8] = { 78.3, 74.7, 5135, 7200 }, + [9] = { 57.5, 94.8, 5581, 120 }, + }, + }, + [175762] = { + ["coords"] = { + [1] = { 75.9, 39.3, 1497, 300 }, + [2] = { 37.8, 86.6, 2017, 180 }, + [3] = { 71.2, 69.2, 2057, 7200 }, + }, + }, + [175763] = { + ["coords"] = { + [1] = { 51, 29.4, 440, 900 }, + [2] = { 23.7, 62, 2057, 7200 }, + }, + }, + [175771] = { + ["coords"] = { + [1] = { 75.3, 13.4, 5153, 7200 }, + }, + }, + [175772] = { + ["coords"] = { + [1] = { 80.5, 15.7, 5153, 7200 }, + }, + }, + [175773] = { + ["coords"] = { + [1] = { 81.9, 8, 5153, 7200 }, + }, + }, + [175774] = { + ["coords"] = { + [1] = { 80.5, 5.9, 5153, 7200 }, + }, + }, + [175775] = { + ["coords"] = { + [1] = { 75.4, 8, 5153, 7200 }, + }, + }, + [175776] = { + ["coords"] = { + [1] = { 82, 13.4, 5153, 7200 }, + }, + }, + [175777] = { + ["coords"] = { + [1] = { 74.9, 10.8, 5153, 7200 }, + }, + }, + [175778] = { + ["coords"] = { + [1] = { 76.8, 15.7, 5153, 7200 }, + }, + }, + [175779] = { + ["coords"] = { + [1] = { 78.6, 5.1, 5153, 7200 }, + }, + }, + [175780] = { + ["coords"] = { + [1] = { 82.4, 10.8, 5153, 7200 }, + }, + }, + [175781] = { + ["coords"] = { + [1] = { 76.8, 5.9, 5153, 7200 }, + }, + }, + [175785] = { + ["coords"] = { + [1] = { 34.9, 54.6, 1583, 5 }, + [2] = { 56.7, 54.2, 1583, 5 }, + [3] = { 51.6, 53.6, 1583, 5 }, + [4] = { 45.3, 53.3, 1583, 5 }, + }, + }, + [175796] = { + ["coords"] = { + [1] = { 61.1, 16.6, 2017, 180 }, + }, + }, + [175806] = { + ["coords"] = { + [1] = { 51.7, 41.3, 17, 25 }, + [2] = { 51.7, 41.2, 17, 25 }, + [3] = { 51.8, 41.2, 17, 25 }, + }, + }, + [175824] = { + ["coords"] = { + [1] = { 62.1, 81, 2017, 180 }, + }, + }, + [175825] = { + ["coords"] = { + [1] = { 57.4, 76.8, 2017, 180 }, + }, + }, + [175844] = { + ["coords"] = { + [1] = { 58.8, 53.8, 16, 300 }, + [2] = { 41.3, 32.4, 331, 900 }, + [3] = { 40.5, 96.6, 361, 900 }, + }, + }, + [175848] = { + ["coords"] = { + [1] = { 54.2, 9.1, 15, 300 }, + [2] = { 63.6, 58.7, 17, 300 }, + [3] = { 42.4, 34.3, 331, 900 }, + [4] = { 41.5, 98.6, 361, 900 }, + }, + }, + [175853] = { + ["coords"] = { + [1] = { 25.6, 66.2, 16, 300 }, + [2] = { 23.3, 72.6, 405, 900 }, + }, + }, + [175854] = { + ["coords"] = { + [1] = { 27.8, 77.3, 33, 900 }, + [2] = { 52.6, 27.8, 440, 2 }, + }, + }, + [175856] = { + ["coords"] = { + [1] = { 27.8, 77.3, 33, 900 }, + [2] = { 52.6, 27.8, 440, 2 }, + }, + }, + [175857] = { + ["coords"] = { + [1] = { 94.5, 14.5, 10, 25 }, + [2] = { 37.9, 52.1, 85, 25 }, + [3] = { 41.1, 69.3, 2017, 180 }, + }, + }, + [175858] = { + ["coords"] = { + [1] = { 41.2, 69.5, 2017, 180 }, + }, + }, + [175864] = "_", + [175886] = { + ["coords"] = { + [1] = { 67.6, 58.5, 1583, 25 }, + }, + }, + [175888] = { + ["coords"] = { + [1] = { 55.1, 43, 618, 30 }, + }, + }, + [175889] = { + ["coords"] = { + [1] = { 81.3, 26.2, 45, 2 }, + [2] = { 57.6, 86.8, 47, 2 }, + }, + }, + [175891] = { + ["coords"] = { + [1] = { 50.9, 41.7, 618, 30 }, + }, + }, + [175892] = { + ["coords"] = { + [1] = { 53.3, 43.4, 618, 30 }, + }, + }, + [175893] = { + ["coords"] = { + [1] = { 52.4, 41.5, 618, 30 }, + }, + }, + [175894] = { + ["coords"] = { + [1] = { 38.7, 55.2, 28, 2 }, + }, + }, + [175926] = { + ["coords"] = { + [1] = { 47.8, 50.7, 28, 2 }, + }, + }, + [175927] = { + ["coords"] = { + [1] = { 61, 38.8, 618, 2 }, + }, + }, + [175928] = { + ["coords"] = { + [1] = { 45.3, 97, 17, 180 }, + [2] = { 44.6, 96.8, 17, 180 }, + [3] = { 36.6, 38.8, 400, 180 }, + [4] = { 37.8, 38.2, 400, 180 }, + [5] = { 36.1, 37.4, 400, 180 }, + [6] = { 35, 33.2, 400, 180 }, + [7] = { 33.4, 32.9, 400, 180 }, + }, + }, + [175929] = { + ["coords"] = { + [1] = { 76.9, 82.1, 47, 300 }, + [2] = { 33.1, 36.9, 618, 900 }, + }, + }, + [175949] = { + ["coords"] = { + [1] = { 55.6, 73.2, 1583, 120 }, + }, + }, + [175950] = { + ["coords"] = { + [1] = { 53.6, 53.6, 1583, 120 }, + }, + }, + [175966] = { + ["coords"] = { + [1] = { 39.8, 89.4, 2017, 180 }, + [2] = { 35.5, 72.1, 2017, 180 }, + [3] = { 37.1, 70.5, 2017, 180 }, + [4] = { 40.9, 69.5, 2017, 180 }, + }, + }, + [175967] = { + ["coords"] = { + [1] = { 41.9, 65.6, 2017, 180 }, + }, + }, + [175968] = { + ["coords"] = { + [1] = { 34.7, 75.5, 2017, 180 }, + }, + }, + [175969] = { + ["coords"] = { + [1] = { 29, 74.6, 2017, 180 }, + }, + }, + [175970] = { + ["coords"] = { + [1] = { 28.3, 26.6, 1583, 250 }, + }, + }, + [176004] = { + ["coords"] = { + [1] = { 49.9, 84.7, 2257, 120 }, + [2] = { 48.1, 84.7, 2257, 120 }, + [3] = { 39.1, 84.7, 2257, 120 }, + [4] = { 45.9, 84.7, 2257, 120 }, + [5] = { 37.3, 84.6, 2257, 120 }, + [6] = { 35.1, 84.6, 2257, 120 }, + [7] = { 38.1, 76.9, 2257, 120 }, + [8] = { 36, 76.8, 2257, 120 }, + [9] = { 37.1, 76.8, 2257, 120 }, + [10] = { 48.5, 76.7, 2257, 120 }, + [11] = { 46.3, 76.6, 2257, 120 }, + [12] = { 47.4, 76.6, 2257, 120 }, + [13] = { 39.2, 75.5, 2257, 120 }, + [14] = { 34.9, 75.4, 2257, 120 }, + [15] = { 49.4, 75.3, 2257, 120 }, + [16] = { 45.1, 75.2, 2257, 120 }, + [17] = { 49.9, 55.9, 2257, 120 }, + [18] = { 47.7, 55.8, 2257, 120 }, + [19] = { 45.8, 55.8, 2257, 120 }, + [20] = { 39.4, 55.6, 2257, 120 }, + [21] = { 37.2, 55.6, 2257, 120 }, + [22] = { 35.4, 55.5, 2257, 120 }, + [23] = { 49.8, 54.5, 2257, 120 }, + [24] = { 48, 54.4, 2257, 120 }, + [25] = { 45.8, 54.4, 2257, 120 }, + [26] = { 39.4, 54.2, 2257, 120 }, + [27] = { 37.6, 54.1, 2257, 120 }, + [28] = { 35.3, 54.1, 2257, 120 }, + [29] = { 49.7, 36, 2257, 120 }, + [30] = { 39.2, 36, 2257, 120 }, + [31] = { 45.4, 35.9, 2257, 120 }, + [32] = { 34.9, 35.9, 2257, 120 }, + [33] = { 47.4, 34.7, 2257, 120 }, + [34] = { 37, 34.7, 2257, 120 }, + [35] = { 48.5, 34.6, 2257, 120 }, + [36] = { 38.1, 34.6, 2257, 120 }, + [37] = { 46.3, 34.5, 2257, 120 }, + [38] = { 36, 34.5, 2257, 120 }, + [39] = { 49.4, 26.8, 2257, 120 }, + [40] = { 39, 26.8, 2257, 120 }, + [41] = { 47.2, 26.8, 2257, 120 }, + [42] = { 36.8, 26.8, 2257, 120 }, + [43] = { 45.4, 26.8, 2257, 120 }, + [44] = { 35, 26.8, 2257, 120 }, + [45] = { 65.1, 84.7, 5144, 120 }, + [46] = { 54.6, 84.7, 5144, 120 }, + [47] = { 63.3, 84.7, 5144, 120 }, + [48] = { 52.7, 84.7, 5144, 120 }, + [49] = { 61, 84.7, 5144, 120 }, + [50] = { 50.5, 84.7, 5144, 120 }, + [51] = { 64.1, 77, 5144, 120 }, + [52] = { 53.6, 77, 5144, 120 }, + [53] = { 61.9, 76.9, 5144, 120 }, + [54] = { 51.5, 76.9, 5144, 120 }, + [55] = { 63, 76.8, 5144, 120 }, + [56] = { 52.5, 76.8, 5144, 120 }, + [57] = { 65.2, 75.6, 5144, 120 }, + [58] = { 54.5, 75.6, 5144, 120 }, + [59] = { 60.9, 75.5, 5144, 120 }, + [60] = { 50.2, 75.5, 5144, 120 }, + [61] = { 65.2, 55.9, 5144, 120 }, + [62] = { 62.9, 55.8, 5144, 120 }, + [63] = { 61.1, 55.8, 5144, 120 }, + [64] = { 54.6, 55.6, 5144, 120 }, + [65] = { 52.4, 55.6, 5144, 120 }, + [66] = { 50.6, 55.5, 5144, 120 }, + [67] = { 65.1, 54.5, 5144, 120 }, + [68] = { 63.3, 54.4, 5144, 120 }, + [69] = { 61, 54.4, 5144, 120 }, + [70] = { 54.6, 54.2, 5144, 120 }, + [71] = { 52.7, 54.1, 5144, 120 }, + [72] = { 50.5, 54.1, 5144, 120 }, + [73] = { 54.9, 36.3, 5144, 120 }, + [74] = { 50.6, 36.2, 5144, 120 }, + [75] = { 65.2, 36.1, 5144, 120 }, + [76] = { 60.9, 36, 5144, 120 }, + [77] = { 52.6, 34.9, 5144, 120 }, + [78] = { 53.6, 34.9, 5144, 120 }, + [79] = { 51.5, 34.8, 5144, 120 }, + [80] = { 63, 34.7, 5144, 120 }, + [81] = { 64.1, 34.7, 5144, 120 }, + [82] = { 61.9, 34.6, 5144, 120 }, + [83] = { 64.9, 26.9, 5144, 120 }, + [84] = { 62.7, 26.8, 5144, 120 }, + [85] = { 54.1, 26.8, 5144, 120 }, + [86] = { 60.9, 26.8, 5144, 120 }, + [87] = { 51.8, 26.8, 5144, 120 }, + [88] = { 50, 26.7, 5144, 120 }, + }, + }, + [176080] = { + ["coords"] = { + [1] = { 48.3, 67.7, 2257, 120 }, + }, + }, + [176081] = { + ["coords"] = { + [1] = { 57.9, 43.7, 5144, 120 }, + }, + }, + [176082] = { + ["coords"] = { + [1] = { 41.9, 67.7, 2257, 120 }, + }, + }, + [176083] = { + ["coords"] = { + [1] = { 35.7, 67.7, 2257, 120 }, + }, + }, + [176084] = { + ["coords"] = { + [1] = { 51.6, 43.7, 5144, 120 }, + }, + }, + [176085] = { + ["coords"] = { + [1] = { 64.4, 43.8, 5144, 120 }, + }, + }, + [176087] = { + ["coords"] = { + [1] = { 86.7, 57.6, 85, 300 }, + [2] = { 86.6, 57.3, 85, 300 }, + }, + }, + [176089] = { + ["coords"] = { + [1] = { 42.1, 54.8, 1583, 25 }, + }, + }, + [176090] = { + ["coords"] = { + [1] = { 42.3, 55, 1583, 25 }, + }, + }, + [176092] = { + ["coords"] = { + [1] = { 26.5, 56.2, 28, 3 }, + [2] = { 83.2, 69.1, 85, 3 }, + }, + }, + [176111] = { + ["coords"] = { + [1] = { 49.9, 86.2, 2057, 180 }, + }, + }, + [176112] = { + ["coords"] = { + [1] = { 41.4, 69.2, 2017, 604800 }, + }, + }, + [176113] = { + ["coords"] = { + [1] = { 69.5, 90.3, 406, 900 }, + }, + }, + [176115] = { + ["coords"] = { + [1] = { 46, 50.9, 400, 2 }, + }, + ["fac"] = "H", + }, + [176116] = { + ["coords"] = { + [1] = { 38, 92.5, 139, 2 }, + [2] = { 39.7, 90, 139, 2 }, + }, + }, + [176117] = { + ["coords"] = { + [1] = { 39.6, 92.8, 139, 120 }, + [2] = { 38.6, 92.7, 139, 120 }, + [3] = { 38, 92.5, 139, 120 }, + [4] = { 38.2, 92.1, 139, 120 }, + [5] = { 39.6, 90, 139, 120 }, + }, + }, + [176142] = { + ["coords"] = { + [1] = { 39.6, 92.8, 139, 2 }, + [2] = { 38.2, 92.1, 139, 2 }, + }, + }, + [176143] = { + ["coords"] = { + [1] = { 38.6, 92.7, 139, 2 }, + [2] = { 39.5, 90, 139, 2 }, + }, + }, + [176145] = { + ["coords"] = { + [1] = { 49.7, 76.8, 28, 2 }, + }, + }, + [176146] = { + ["coords"] = { + [1] = { 29.1, 93.6, 1377, 600 }, + [2] = { 58.2, 4.3, 3478, 600 }, + }, + }, + [176147] = { + ["coords"] = { + [1] = { 29.1, 93.6, 1377, 600 }, + [2] = { 58.2, 4.3, 3478, 600 }, + }, + }, + [176148] = { + ["coords"] = { + [1] = { 29.1, 93.6, 1377, 600 }, + [2] = { 58.2, 4.3, 3478, 600 }, + }, + }, + [176150] = { + ["coords"] = { + [1] = { 43.5, 70.1, 28, 30 }, + [2] = { 43.4, 70, 28, 30 }, + [3] = { 43.6, 70, 28, 30 }, + [4] = { 43.4, 69.7, 28, 30 }, + [5] = { 43.4, 69.5, 28, 30 }, + [6] = { 43.6, 69.3, 28, 30 }, + [7] = { 43.4, 69.2, 28, 30 }, + [8] = { 43.5, 69.1, 28, 30 }, + [9] = { 43.6, 68.8, 28, 30 }, + [10] = { 43.4, 68.8, 28, 30 }, + }, + }, + [176163] = { + ["coords"] = { + [1] = { 92.8, 10.8, 616, 900 }, + [2] = { 52.6, 55.8, 618, 900 }, + }, + }, + [176164] = { + ["coords"] = { + [1] = { 92.8, 10.8, 616, 900 }, + [2] = { 52.6, 55.8, 618, 900 }, + }, + ["fac"] = "AH", + }, + [176165] = { + ["coords"] = { + [1] = { 96.7, 0.8, 616, 900 }, + [2] = { 54.4, 51.2, 618, 900 }, + }, + ["fac"] = "AH", + }, + [176166] = { + ["coords"] = { + [1] = { 96.7, 0.8, 616, 900 }, + [2] = { 54.4, 51.2, 618, 900 }, + }, + }, + [176189] = { + ["coords"] = { + [1] = { 31.8, 46.3, 148, 5 }, + }, + }, + [176190] = { + ["coords"] = { + [1] = { 37.1, 62.2, 148, 2 }, + }, + }, + [176192] = { + ["coords"] = { + [1] = { 39.3, 66.6, 28, 2 }, + }, + }, + [176194] = { + ["coords"] = { + [1] = { 36.2, 78.7, 2017, 180 }, + }, + }, + [176197] = { + ["coords"] = { + [1] = { 44.2, 20.6, 148, 30 }, + }, + ["fac"] = "A", + }, + [176206] = { + ["coords"] = { + [1] = { 42.5, 19, 28, 2 }, + }, + }, + [176207] = { + ["coords"] = { + [1] = { 63.8, 57.2, 28, 2 }, + }, + }, + [176208] = { + ["coords"] = { + [1] = { 51.1, 49.9, 139, 2 }, + [2] = { 3.6, 27.3, 4012, 2 }, + }, + }, + [176209] = { + ["coords"] = { + [1] = { 53.9, 65.8, 139, 2 }, + [2] = { 7, 46.7, 4012, 2 }, + }, + }, + [176213] = { + ["coords"] = { + [1] = { 52.4, 55, 28, 7200 }, + [2] = { 49.7, 33.3, 28, 7200 }, + [3] = { 25.9, 74.6, 139, 7200 }, + [4] = { 64.7, 65.3, 139, 7200 }, + [5] = { 27.3, 64.2, 139, 7200 }, + [6] = { 59.3, 62.3, 139, 7200 }, + [7] = { 49.1, 35.3, 139, 7200 }, + [8] = { 33.6, 32.6, 139, 7200 }, + [9] = { 20.3, 46.1, 4012, 7200 }, + [10] = { 13.6, 42.4, 4012, 7200 }, + [11] = { 1.1, 9.4, 4012, 7200 }, + [12] = { 80.5, 96.7, 5225, 7200 }, + }, + }, + [176214] = { + ["coords"] = { + [1] = { 52.4, 55, 28, 1200 }, + [2] = { 49.7, 33.3, 28, 1200 }, + [3] = { 25.9, 74.6, 139, 900 }, + [4] = { 64.7, 65.3, 139, 900 }, + [5] = { 27.3, 64.2, 139, 900 }, + [6] = { 33.6, 32.6, 139, 900 }, + [7] = { 20.3, 46.1, 4012, 900 }, + [8] = { 80.5, 96.7, 5225, 900 }, + }, + }, + [176215] = { + ["coords"] = { + [1] = { 25, 76.1, 2017, 180 }, + [2] = { 24.8, 74.8, 2017, 180 }, + [3] = { 25.9, 74.7, 2017, 180 }, + [4] = { 25.1, 74.5, 2017, 180 }, + [5] = { 25.4, 74.2, 2017, 180 }, + }, + }, + [176216] = { + ["coords"] = { + [1] = { 25.9, 75.5, 2017, 180 }, + }, + }, + [176217] = { + ["coords"] = { + [1] = { 25.3, 76.1, 2017, 180 }, + }, + }, + [176224] = { + ["coords"] = { + [1] = { 55.6, 88.3, 2017, 604800 }, + [2] = { 61.1, 87, 2017, 604800 }, + [3] = { 63.6, 86.5, 2017, 604800 }, + [4] = { 58.4, 85.7, 2017, 604800 }, + [5] = { 61.8, 82.9, 2017, 604800 }, + [6] = { 64.9, 81.4, 2017, 604800 }, + [7] = { 66.9, 78.6, 2017, 604800 }, + [8] = { 56.3, 78.2, 2017, 604800 }, + [9] = { 56.3, 76.3, 2017, 604800 }, + [10] = { 60, 73.8, 2017, 604800 }, + [11] = { 71.1, 73.3, 2017, 604800 }, + [12] = { 73.6, 72.3, 2017, 604800 }, + [13] = { 69.2, 71.5, 2017, 604800 }, + [14] = { 75.5, 69.4, 2017, 604800 }, + [15] = { 47, 68.5, 2017, 604800 }, + [16] = { 70, 67.6, 2017, 604800 }, + [17] = { 59.7, 66.8, 2017, 604800 }, + [18] = { 75.5, 66.6, 2017, 604800 }, + [19] = { 48.1, 64.3, 2017, 604800 }, + [20] = { 61.2, 63.9, 2017, 604800 }, + [21] = { 86.3, 63.1, 2017, 604800 }, + [22] = { 45.8, 63, 2017, 604800 }, + [23] = { 54.4, 62.7, 2017, 604800 }, + [24] = { 52.7, 62.6, 2017, 604800 }, + [25] = { 74.5, 62.2, 2017, 604800 }, + [26] = { 65.6, 60.9, 2017, 604800 }, + [27] = { 55.8, 59.3, 2017, 604800 }, + [28] = { 46.9, 59.2, 2017, 604800 }, + [29] = { 44.6, 58.2, 2017, 604800 }, + [30] = { 42.8, 57.2, 2017, 604800 }, + [31] = { 72.8, 56.1, 2017, 604800 }, + [32] = { 68.4, 55, 2017, 604800 }, + [33] = { 70.7, 53.9, 2017, 604800 }, + [34] = { 83.1, 47.5, 2017, 604800 }, + [35] = { 88.3, 43.7, 2017, 604800 }, + [36] = { 77.1, 41.3, 2017, 604800 }, + [37] = { 81.9, 38.2, 2017, 604800 }, + [38] = { 86.4, 38.1, 2017, 604800 }, + [39] = { 80.9, 37.1, 2017, 604800 }, + [40] = { 86.4, 36.3, 2017, 604800 }, + [41] = { 74, 35.9, 2017, 604800 }, + [42] = { 93.3, 35, 2017, 604800 }, + [43] = { 89.4, 34.8, 2017, 604800 }, + [44] = { 77.9, 34.4, 2017, 604800 }, + [45] = { 83.8, 26.7, 2017, 604800 }, + [46] = { 78.5, 26.3, 2017, 604800 }, + [47] = { 75.9, 25.6, 2017, 604800 }, + [48] = { 80.3, 24.8, 2017, 604800 }, + [49] = { 82.7, 24.1, 2017, 604800 }, + [50] = { 65.8, 24.1, 2017, 604800 }, + [51] = { 68.2, 20.9, 2017, 604800 }, + [52] = { 79.8, 19.5, 2017, 604800 }, + [53] = { 84.9, 19.4, 2017, 604800 }, + [54] = { 74.1, 19.3, 2017, 604800 }, + [55] = { 73.8, 12.9, 2017, 604800 }, + [56] = { 76.7, 12.4, 2017, 604800 }, + [57] = { 68.8, 12.3, 2017, 604800 }, + [58] = { 60.9, 8.6, 2017, 604800 }, + [59] = { 67.2, 7.5, 2017, 604800 }, + [60] = { 62.7, 6.3, 2017, 604800 }, + }, + }, + [176232] = { + ["coords"] = { + [1] = { 80.2, 68.9, 1519, 900 }, + }, + }, + [176233] = { + ["coords"] = { + [1] = { 80.3, 69.1, 1519, 900 }, + }, + }, + [176234] = { + ["coords"] = { + [1] = { 80.3, 68.8, 1519, 900 }, + }, + }, + [176235] = { + ["coords"] = { + [1] = { 80.4, 68.8, 1519, 900 }, + }, + }, + [176236] = { + ["coords"] = { + [1] = { 80.4, 69.1, 1519, 900 }, + }, + }, + [176238] = { + ["coords"] = { + [1] = { 80.1, 68.9, 1519, 900 }, + }, + }, + [176239] = { + ["coords"] = { + [1] = { 80.2, 69.1, 1519, 900 }, + }, + }, + [176240] = { + ["coords"] = { + [1] = { 80.3, 69.1, 1519, 900 }, + }, + }, + [176241] = { + ["coords"] = { + [1] = { 80.4, 69, 1519, 900 }, + }, + }, + [176242] = { + ["coords"] = { + [1] = { 78.8, 70.5, 1519, 900 }, + }, + }, + [176243] = { + ["coords"] = { + [1] = { 78.7, 71.2, 1519, 900 }, + }, + }, + [176245] = { + ["coords"] = { + [1] = { 39.4, 89.5, 2017, 180 }, + }, + }, + [176248] = { + ["coords"] = { + [1] = { 54.9, 86.5, 2017, 180 }, + }, + }, + [176249] = { + ["coords"] = { + [1] = { 72.8, 40.9, 2017, 25 }, + [2] = { 93.3, 40, 2017, 25 }, + [3] = { 94.3, 38.7, 2017, 180 }, + [4] = { 86.5, 13.7, 2017, 25 }, + }, + }, + [176250] = { + ["coords"] = {}, + }, + [176260] = { + ["coords"] = {}, + ["fac"] = "H", + }, + [176264] = { + ["coords"] = { + [1] = { 30.6, 27.9, 139, 900 }, + [2] = { 76.7, 90.8, 5225, 900 }, + }, + }, + [176269] = { + ["coords"] = { + [1] = { 72.2, 58.5, 139, 900 }, + [2] = { 29.5, 37.8, 4012, 900 }, + }, + }, + [176272] = { + ["coords"] = { + [1] = { 83.2, 39, 139, 900 }, + [2] = { 42.9, 14, 4012, 900 }, + }, + }, + [176273] = { + ["coords"] = { + [1] = { 87.8, 39, 139, 900 }, + [2] = { 48.6, 13.9, 4012, 900 }, + }, + }, + [176274] = { + ["coords"] = { + [1] = { 87.7, 39, 139, 900 }, + [2] = { 48.5, 13.9, 4012, 900 }, + }, + }, + [176275] = { + ["coords"] = { + [1] = { 85.7, 46.1, 139, 900 }, + [2] = { 46, 22.7, 4012, 900 }, + }, + }, + [176276] = { + ["coords"] = { + [1] = { 81.5, 59.7, 139, 900 }, + [2] = { 40.8, 39.3, 4012, 900 }, + }, + }, + [176277] = { + ["coords"] = { + [1] = { 80.5, 57.9, 139, 900 }, + [2] = { 39.7, 37.1, 4012, 900 }, + }, + }, + [176304] = { + ["coords"] = { + [1] = { 55.6, 88.3, 2017, 604800 }, + [2] = { 61.1, 87, 2017, 604800 }, + [3] = { 63.9, 86.9, 2017, 604800 }, + [4] = { 58.4, 85.7, 2017, 604800 }, + [5] = { 61.8, 82.9, 2017, 604800 }, + [6] = { 64.9, 81.4, 2017, 604800 }, + [7] = { 66.9, 78.6, 2017, 604800 }, + [8] = { 56.3, 78.2, 2017, 604800 }, + [9] = { 56.3, 76.3, 2017, 604800 }, + [10] = { 60, 73.8, 2017, 604800 }, + [11] = { 71.1, 73.3, 2017, 604800 }, + [12] = { 73.6, 72.3, 2017, 604800 }, + [13] = { 69.2, 71.5, 2017, 604800 }, + [14] = { 75.5, 69.4, 2017, 604800 }, + [15] = { 47, 68.5, 2017, 604800 }, + [16] = { 70, 67.6, 2017, 604800 }, + [17] = { 59.7, 66.8, 2017, 604800 }, + [18] = { 75.5, 66.6, 2017, 604800 }, + [19] = { 48.1, 64.3, 2017, 604800 }, + [20] = { 61.2, 63.9, 2017, 604800 }, + [21] = { 86.3, 63.1, 2017, 604800 }, + [22] = { 45.8, 63, 2017, 604800 }, + [23] = { 54.4, 62.7, 2017, 604800 }, + [24] = { 52.7, 62.6, 2017, 604800 }, + [25] = { 74.5, 62.2, 2017, 604800 }, + [26] = { 65.6, 60.9, 2017, 604800 }, + [27] = { 55.8, 59.3, 2017, 604800 }, + [28] = { 46.9, 59.2, 2017, 604800 }, + [29] = { 44.6, 58.2, 2017, 604800 }, + [30] = { 42.8, 57.2, 2017, 604800 }, + [31] = { 72.8, 56.1, 2017, 604800 }, + [32] = { 68.4, 55, 2017, 604800 }, + [33] = { 70.7, 53.9, 2017, 604800 }, + [34] = { 83.1, 47.5, 2017, 604800 }, + [35] = { 88.3, 43.7, 2017, 604800 }, + [36] = { 77.1, 41.3, 2017, 604800 }, + [37] = { 81.9, 38.2, 2017, 604800 }, + [38] = { 86.4, 38.1, 2017, 604800 }, + [39] = { 80.9, 37.1, 2017, 604800 }, + [40] = { 86.4, 36.3, 2017, 604800 }, + [41] = { 74, 35.9, 2017, 604800 }, + [42] = { 93.3, 35, 2017, 604800 }, + [43] = { 89.4, 34.8, 2017, 604800 }, + [44] = { 77.9, 34.4, 2017, 604800 }, + [45] = { 83.8, 26.7, 2017, 604800 }, + [46] = { 78.5, 26.3, 2017, 604800 }, + [47] = { 75.9, 25.6, 2017, 604800 }, + [48] = { 80.3, 24.8, 2017, 604800 }, + [49] = { 82.7, 24.1, 2017, 604800 }, + [50] = { 65.8, 24.1, 2017, 604800 }, + [51] = { 68.2, 20.9, 2017, 604800 }, + [52] = { 79.8, 19.5, 2017, 604800 }, + [53] = { 84.9, 19.4, 2017, 604800 }, + [54] = { 74.1, 19.3, 2017, 604800 }, + [55] = { 73.8, 12.9, 2017, 604800 }, + [56] = { 76.7, 12.4, 2017, 604800 }, + [57] = { 68.8, 12.3, 2017, 604800 }, + [58] = { 60.9, 8.6, 2017, 604800 }, + [59] = { 67.2, 7.5, 2017, 604800 }, + [60] = { 62.7, 6.3, 2017, 604800 }, + }, + }, + [176306] = { + ["coords"] = { + [1] = { 50.8, 49.5, 8, 0 }, + [2] = { 36.2, 55.5, 361, 180 }, + }, + }, + [176316] = { + ["coords"] = { + [1] = { 62.3, 83, 36, 7200 }, + [2] = { 21.1, 68.9, 85, 300 }, + [3] = { 21.2, 68.8, 85, 300 }, + [4] = { 20.9, 68.6, 85, 300 }, + [5] = { 21.1, 68.5, 85, 300 }, + [6] = { 63.4, 21.1, 267, 7200 }, + }, + }, + [176317] = { + ["coords"] = { + [1] = { 81.8, 58, 139, 2 }, + [2] = { 41.2, 37.2, 4012, 2 }, + }, + }, + [176319] = "_", + [176324] = "_", + [176325] = { + ["coords"] = { + [1] = { 30.4, 73.2, 2017, 10800 }, + }, + }, + [176327] = { + ["coords"] = { + [1] = { 88.9, 43.7, 2017, 10800 }, + }, + }, + [176344] = { + ["coords"] = { + [1] = { 44, 96.7, 17, 30 }, + [2] = { 39.3, 41.5, 400, 30 }, + [3] = { 33.8, 40, 400, 30 }, + [4] = { 31.8, 32.6, 400, 30 }, + }, + }, + [176346] = { + ["coords"] = { + [1] = { 64.6, 60, 2017, 180 }, + }, + }, + [176349] = { + ["coords"] = { + [1] = { 44.4, 64.9, 2017, 180 }, + }, + }, + [176350] = { + ["coords"] = { + [1] = { 70.6, 63.8, 2017, 180 }, + }, + }, + [176351] = { + ["coords"] = { + [1] = { 84.5, 66.4, 2017, 180 }, + }, + }, + [176352] = { + ["coords"] = { + [1] = { 60.2, 75.8, 2017, 180 }, + }, + }, + [176353] = { + ["coords"] = { + [1] = { 55.2, 87.4, 2017, 180 }, + }, + }, + [176356] = { + ["coords"] = { + [1] = { 41.5, 52.5, 16, 30 }, + }, + }, + [176366] = { + ["coords"] = {}, + }, + [176389] = { + ["coords"] = { + [1] = { 83.1, 43.2, 139, 900 }, + [2] = { 42.8, 19.1, 4012, 900 }, + }, + }, + [176390] = { + ["coords"] = { + [1] = { 85.8, 43.8, 139, 900 }, + [2] = { 46.1, 19.8, 4012, 900 }, + }, + }, + [176399] = { + ["coords"] = {}, + ["fac"] = "A", + }, + [176404] = "_", + [176424] = { + ["coords"] = { + [1] = { 62.9, 29.7, 2017, 180 }, + }, + }, + [176425] = { + ["coords"] = { + [1] = { 58.9, 41.3, 1583, 120 }, + }, + }, + [176426] = { + ["coords"] = { + [1] = { 63.9, 41.9, 1583, 120 }, + }, + }, + [176427] = { + ["coords"] = { + [1] = { 44.9, 59.8, 215, 0 }, + [2] = { 53.2, 42.5, 1583, 120 }, + }, + }, + [176451] = { + ["coords"] = { + [1] = { 39.9, 15.1, 1583, 120 }, + [2] = { 35.9, 12.8, 1583, 120 }, + }, + }, + [176454] = { + ["coords"] = { + [1] = { 64.6, 41.2, 1583, 180 }, + }, + }, + [176455] = { + ["coords"] = { + [1] = { 54.2, 42.7, 1583, 180 }, + }, + }, + [176459] = { + ["coords"] = { + [1] = { 31.7, 39.9, 1583, 180 }, + }, + }, + [176460] = { + ["coords"] = { + [1] = { 30.2, 39.6, 1583, 120 }, + }, + }, + [176461] = { + ["coords"] = { + [1] = { 31.1, 39.8, 1583, 180 }, + }, + }, + [176462] = { + ["coords"] = { + [1] = { 73.9, 32.3, 45, 300 }, + [2] = { 33.1, 36.2, 1583, 180 }, + }, + }, + [176463] = { + ["coords"] = { + [1] = { 30.7, 36, 1583, 180 }, + }, + }, + [176486] = { + ["coords"] = { + [1] = { 85.2, 44.1, 2057, 300 }, + }, + }, + [176487] = { + ["coords"] = { + [1] = { 26.3, 66.8, 2057, 300 }, + }, + }, + [176506] = { + ["coords"] = { + [1] = { 49.9, 65.4, 406, 900 }, + }, + }, + [176507] = { + ["coords"] = { + [1] = { 49, 60.7, 406, 900 }, + }, + }, + [176508] = { + ["coords"] = { + [1] = { 41.9, 79.7, 33, 300 }, + [2] = { 48.9, 61.1, 406, 900 }, + [3] = { 56.5, 38.7, 5179, 300 }, + [4] = { 14.2, 34.5, 5179, 300 }, + }, + }, + [176509] = { + ["coords"] = { + [1] = { 56.3, 30.6, 41, 300 }, + [2] = { 48.9, 61.2, 406, 900 }, + }, + }, + [176511] = { + ["coords"] = { + [1] = { 72, 66.3, 2159, 25 }, + [2] = { 63.4, 65.4, 2159, 25 }, + [3] = { 73.5, 65.2, 2159, 25 }, + [4] = { 62.4, 65.2, 2159, 25 }, + [5] = { 71.2, 65, 2159, 25 }, + [6] = { 68.3, 64.9, 2159, 25 }, + [7] = { 66.8, 64.8, 2159, 25 }, + [8] = { 61.1, 64.8, 2159, 25 }, + [9] = { 74.7, 64.7, 2159, 25 }, + [10] = { 69.8, 64.6, 2159, 25 }, + [11] = { 59.9, 64.5, 2159, 25 }, + [12] = { 64.6, 64.4, 2159, 25 }, + [13] = { 72.2, 64.2, 2159, 25 }, + [14] = { 63.7, 63.6, 2159, 25 }, + [15] = { 68.9, 63.5, 2159, 25 }, + [16] = { 65.9, 63.2, 2159, 25 }, + [17] = { 62.3, 63.2, 2159, 25 }, + [18] = { 67.6, 63.1, 2159, 25 }, + [19] = { 73.2, 63, 2159, 25 }, + [20] = { 70.4, 62.9, 2159, 25 }, + [21] = { 74.5, 62.9, 2159, 25 }, + [22] = { 61, 62.8, 2159, 25 }, + [23] = { 59.8, 62.5, 2159, 25 }, + [24] = { 71.7, 62.1, 2159, 25 }, + [25] = { 75.4, 61.7, 2159, 25 }, + [26] = { 63.3, 61.6, 2159, 25 }, + [27] = { 62, 61.1, 2159, 25 }, + [28] = { 74.2, 61, 2159, 25 }, + [29] = { 72.8, 60.9, 2159, 25 }, + [30] = { 60.8, 60.8, 2159, 25 }, + [31] = { 59.6, 60.6, 2159, 25 }, + [32] = { 75.8, 60, 2159, 25 }, + [33] = { 58.2, 59.9, 2159, 25 }, + [34] = { 74.6, 59.6, 2159, 25 }, + [35] = { 76.9, 59.1, 2159, 25 }, + [36] = { 60.1, 58.7, 2159, 25 }, + [37] = { 56.9, 58.7, 2159, 25 }, + [38] = { 57.9, 58.4, 2159, 25 }, + [39] = { 78, 58.4, 2159, 25 }, + [40] = { 75.5, 58.3, 2159, 25 }, + [41] = { 58.9, 57.9, 2159, 25 }, + [42] = { 74.5, 57.5, 2159, 25 }, + [43] = { 76.6, 57.3, 2159, 25 }, + [44] = { 56.5, 57.2, 2159, 25 }, + [45] = { 59.7, 56.9, 2159, 25 }, + [46] = { 57.5, 56.8, 2159, 25 }, + [47] = { 78.3, 56.4, 2159, 25 }, + [48] = { 58.6, 56.2, 2159, 25 }, + [49] = { 75.6, 56.1, 2159, 25 }, + [50] = { 56.6, 55.5, 2159, 25 }, + [51] = { 77.3, 55.2, 2159, 25 }, + [52] = { 57.7, 55, 2159, 25 }, + [53] = { 56.6, 54, 2159, 25 }, + [54] = { 78.1, 53.4, 2159, 25 }, + [55] = { 57.6, 53.3, 2159, 25 }, + [56] = { 56.8, 52.4, 2159, 25 }, + [57] = { 77, 52.3, 2159, 25 }, + [58] = { 58, 51.7, 2159, 25 }, + [59] = { 78.4, 51.6, 2159, 25 }, + [60] = { 56.1, 51.2, 2159, 25 }, + [61] = { 57, 50.7, 2159, 25 }, + [62] = { 77.3, 50.4, 2159, 25 }, + [63] = { 78.3, 49.9, 2159, 25 }, + [64] = { 56.1, 49.6, 2159, 25 }, + [65] = { 79.5, 49.3, 2159, 25 }, + [66] = { 55.2, 48.6, 2159, 25 }, + [67] = { 57.3, 48.6, 2159, 25 }, + [68] = { 77.6, 48.4, 2159, 25 }, + [69] = { 80.3, 47.8, 2159, 25 }, + [70] = { 78.9, 47.7, 2159, 25 }, + [71] = { 54.6, 47.3, 2159, 25 }, + [72] = { 56.2, 47.3, 2159, 25 }, + [73] = { 77.9, 46.7, 2159, 25 }, + [74] = { 80.9, 46.6, 2159, 25 }, + [75] = { 79.7, 46.4, 2159, 25 }, + [76] = { 55.4, 46.3, 2159, 25 }, + [77] = { 54.4, 46, 2159, 25 }, + [78] = { 56.7, 45.8, 2159, 25 }, + [79] = { 78.7, 45.5, 2159, 25 }, + [80] = { 80.3, 44.8, 2159, 25 }, + [81] = { 77.7, 44.8, 2159, 25 }, + [82] = { 54.7, 44.7, 2159, 25 }, + [83] = { 55.9, 44.5, 2159, 25 }, + [84] = { 79.3, 44.2, 2159, 25 }, + [85] = { 57.1, 43.9, 2159, 25 }, + [86] = { 78.4, 43.2, 2159, 25 }, + [87] = { 79.6, 42.8, 2159, 25 }, + [88] = { 55.3, 42.8, 2159, 25 }, + [89] = { 77.4, 42.4, 2159, 25 }, + [90] = { 56.5, 42.3, 2159, 25 }, + [91] = { 57.7, 42.2, 2159, 25 }, + [92] = { 78.8, 41.9, 2159, 25 }, + [93] = { 55.5, 41, 2159, 25 }, + [94] = { 78.2, 40.8, 2159, 25 }, + [95] = { 56.8, 40.6, 2159, 25 }, + }, + }, + [176513] = { + ["coords"] = { + [1] = { 71.8, 23, 2159, 180 }, + }, + }, + [176514] = { + ["coords"] = { + [1] = { 71.4, 26, 2159, 180 }, + }, + }, + [176515] = { + ["coords"] = { + [1] = { 73.8, 25.1, 2159, 180 }, + }, + }, + [176565] = { + ["coords"] = { + [1] = { 48.3, 9, 17, 300 }, + [2] = { 47.9, 8.9, 17, 300 }, + [3] = { 47.8, 8.8, 17, 300 }, + [4] = { 47.8, 8.3, 17, 300 }, + [5] = { 54.8, 61.7, 1637, 25 }, + [6] = { 62.2, 46, 1637, 25 }, + [7] = { 63.6, 44.3, 1637, 25 }, + }, + }, + [176573] = { + ["coords"] = { + [1] = { 45.7, 51.8, 1, 900 }, + [2] = { 10.3, 56.2, 11, 7200 }, + [3] = { 49.2, 41.4, 12, 900 }, + [4] = { 65.6, 48.4, 15, 900 }, + [5] = { 71.7, 22.7, 15, 900 }, + [6] = { 30.5, 86.4, 40, 3600 }, + [7] = { 25.4, 65, 141, 900 }, + [8] = { 30.1, 42.8, 267, 7200 }, + [9] = { 35.4, 51.5, 331, 900 }, + [10] = { 50.1, 86.6, 1519, 120 }, + [11] = { 68.3, 81.5, 1519, 900 }, + [12] = { 52.6, 70.5, 1519, 180 }, + [13] = { 60.5, 68.6, 1519, 900 }, + [14] = { 34.8, 66, 1519, 120 }, + [15] = { 65.6, 59.8, 1519, 900 }, + [16] = { 73.5, 59, 1519, 900 }, + [17] = { 52.7, 50.9, 1519, 120 }, + [18] = { 72.6, 48.1, 1519, 900 }, + [19] = { 65.1, 40.4, 1519, 120 }, + [20] = { 66.7, 83.1, 1537, 900 }, + [21] = { 34.1, 63.7, 1537, 900 }, + [22] = { 65.6, 48.3, 1537, 900 }, + [23] = { 49.8, 43.6, 1537, 900 }, + [24] = { 27.6, 12.1, 1537, 900 }, + [25] = { 39.3, 86.9, 1657, 900 }, + [26] = { 85.9, 6.3, 5179, 7200 }, + [27] = { 51.4, 99.1, 5581, 120 }, + }, + }, + [176576] = { + ["coords"] = { + [1] = { 76, 66.5, 1519, 900 }, + }, + }, + [176582] = { + ["coords"] = { + [1] = { 20.9, 82.6, 405, 180 }, + [2] = { 19.4, 82, 405, 180 }, + [3] = { 23.1, 81, 405, 180 }, + [4] = { 20.2, 79.2, 405, 180 }, + [5] = { 24.3, 77.4, 405, 180 }, + [6] = { 18.9, 77.2, 405, 180 }, + [7] = { 23.4, 77.1, 405, 180 }, + [8] = { 18, 76.3, 405, 180 }, + [9] = { 19.8, 76.2, 405, 180 }, + [10] = { 20.7, 75, 405, 180 }, + [11] = { 20, 73.6, 405, 180 }, + }, + }, + [176583] = { + ["coords"] = { + [1] = { 54.3, 90.9, 16, 2700 }, + [2] = { 66, 90.9, 16, 2700 }, + [3] = { 66.1, 90.8, 16, 2700 }, + [4] = { 61.4, 90.4, 16, 2700 }, + [5] = { 61.5, 90.3, 16, 2700 }, + [6] = { 54.2, 89.5, 16, 2700 }, + [7] = { 47, 88.1, 16, 2700 }, + [8] = { 40.4, 85.8, 16, 2700 }, + [9] = { 73.7, 85.5, 16, 2700 }, + [10] = { 48.9, 84.2, 16, 2700 }, + [11] = { 56.5, 83.6, 16, 2700 }, + [12] = { 52.7, 82.1, 16, 2700 }, + [13] = { 52.6, 81.3, 16, 2700 }, + [14] = { 61.3, 80.4, 16, 2700 }, + [15] = { 55.5, 78.8, 16, 2700 }, + [16] = { 59.7, 78.2, 16, 2700 }, + [17] = { 59.2, 78.2, 16, 2700 }, + [18] = { 42.3, 77.7, 16, 2700 }, + [19] = { 66.4, 76.5, 16, 2700 }, + [20] = { 57.7, 75.9, 16, 2700 }, + [21] = { 49.7, 75, 16, 2700 }, + [22] = { 14.6, 73.5, 16, 2700 }, + [23] = { 15.4, 73.4, 16, 2700 }, + [24] = { 15, 73.4, 16, 2700 }, + [25] = { 40.5, 73.3, 16, 2700 }, + [26] = { 45.8, 72.2, 16, 2700 }, + [27] = { 49.4, 70.3, 16, 2700 }, + [28] = { 43.7, 64.8, 16, 2700 }, + [29] = { 43.8, 64.8, 16, 2700 }, + [30] = { 21.6, 62.8, 16, 2700 }, + [31] = { 40.2, 61.7, 16, 2700 }, + [32] = { 40.5, 61.7, 16, 2700 }, + [33] = { 37.6, 61.5, 16, 2700 }, + [34] = { 37.2, 61.2, 16, 2700 }, + [35] = { 22.6, 57.7, 16, 2700 }, + [36] = { 35.2, 56.9, 16, 2700 }, + [37] = { 27.5, 56.6, 16, 2700 }, + [38] = { 38.6, 55.8, 16, 2700 }, + [39] = { 30.1, 53.7, 16, 2700 }, + [40] = { 41.8, 50.7, 16, 2700 }, + [41] = { 35.6, 50.5, 16, 2700 }, + [42] = { 35.5, 50.2, 16, 2700 }, + [43] = { 37.6, 48.4, 16, 2700 }, + [44] = { 32.5, 47.5, 16, 2700 }, + [45] = { 29.5, 47.4, 16, 2700 }, + [46] = { 30.7, 47.1, 16, 2700 }, + [47] = { 38.1, 45.6, 16, 2700 }, + [48] = { 38.2, 45.4, 16, 2700 }, + [49] = { 33.7, 41.7, 16, 2700 }, + [50] = { 39.9, 41.3, 16, 2700 }, + [51] = { 47.2, 36.9, 16, 2700 }, + [52] = { 47.2, 36.7, 16, 2700 }, + [53] = { 52.2, 36.5, 16, 2700 }, + [54] = { 48.3, 35.9, 16, 2700 }, + [55] = { 44.3, 35.5, 16, 2700 }, + [56] = { 44.9, 33.5, 16, 2700 }, + [57] = { 40.4, 32.8, 16, 2700 }, + [58] = { 40.6, 32.8, 16, 2700 }, + [59] = { 45.3, 32.3, 16, 2700 }, + [60] = { 45.5, 30.7, 16, 2700 }, + [61] = { 57.3, 30.6, 16, 2700 }, + [62] = { 53.4, 29.6, 16, 2700 }, + [63] = { 51.3, 28.1, 16, 2700 }, + [64] = { 70.5, 27.5, 16, 2700 }, + [65] = { 62.3, 26.3, 16, 2700 }, + [66] = { 62.9, 26.1, 16, 2700 }, + [67] = { 56.6, 26.1, 16, 2700 }, + [68] = { 66.7, 25.7, 16, 2700 }, + [69] = { 45.6, 25.7, 16, 2700 }, + [70] = { 43.5, 24.8, 16, 2700 }, + [71] = { 78.4, 23.7, 16, 2700 }, + [72] = { 51.7, 23.6, 16, 2700 }, + [73] = { 68.6, 23.5, 16, 2700 }, + [74] = { 72.4, 22.5, 16, 2700 }, + [75] = { 51.4, 19.3, 16, 2700 }, + [76] = { 66.9, 18.1, 16, 2700 }, + [77] = { 76.2, 16.7, 16, 2700 }, + [78] = { 86.7, 71.5, 46, 2700 }, + [79] = { 76.7, 64.1, 46, 2700 }, + [80] = { 76.6, 62.9, 46, 2700 }, + [81] = { 76.3, 62.3, 46, 2700 }, + [82] = { 45.6, 60, 46, 2700 }, + [83] = { 49.6, 58.6, 46, 2700 }, + [84] = { 45.3, 58.5, 46, 2700 }, + [85] = { 45.1, 57.7, 46, 2700 }, + [86] = { 56.2, 55.5, 46, 2700 }, + [87] = { 92.6, 54.7, 46, 2700 }, + [88] = { 39.6, 54.7, 46, 2700 }, + [89] = { 47.6, 54, 46, 2700 }, + [90] = { 51.8, 53.9, 46, 2700 }, + [91] = { 51.7, 53.6, 46, 2700 }, + [92] = { 47.5, 53.4, 46, 2700 }, + [93] = { 21.8, 48.3, 46, 2700 }, + [94] = { 35.7, 48, 46, 2700 }, + [95] = { 35.8, 47.5, 46, 2700 }, + [96] = { 23, 47.5, 46, 2700 }, + [97] = { 21.9, 46.8, 46, 2700 }, + [98] = { 30, 46.7, 46, 2700 }, + [99] = { 22.9, 46.5, 46, 2700 }, + [100] = { 81.5, 46, 46, 2700 }, + [101] = { 87.9, 40.5, 46, 2700 }, + [102] = { 87.9, 37.5, 46, 2700 }, + [103] = { 41.8, 37.4, 46, 2700 }, + [104] = { 85.5, 27.5, 46, 2700 }, + [105] = { 45.7, 68.2, 47, 2700 }, + [106] = { 34.4, 67.7, 47, 2700 }, + [107] = { 27.7, 67.6, 47, 2700 }, + [108] = { 34.2, 67.1, 47, 2700 }, + [109] = { 48.3, 62.9, 47, 2700 }, + [110] = { 48.8, 62.5, 47, 2700 }, + [111] = { 38.2, 60.9, 47, 2700 }, + [112] = { 69.7, 60.5, 47, 2700 }, + [113] = { 38.7, 60.4, 47, 2700 }, + [114] = { 69.6, 59.2, 47, 2700 }, + [115] = { 24.8, 58.7, 47, 2700 }, + [116] = { 76.2, 56.5, 47, 2700 }, + [117] = { 53.5, 55.4, 47, 2700 }, + [118] = { 76.8, 55, 47, 2700 }, + [119] = { 76, 55, 47, 2700 }, + [120] = { 75.5, 54.7, 47, 2700 }, + [121] = { 67.7, 49.5, 47, 2700 }, + [122] = { 71.4, 48.6, 47, 2700 }, + [123] = { 67.7, 47.9, 47, 2700 }, + [124] = { 38.4, 44.6, 47, 2700 }, + [125] = { 63.9, 44.3, 47, 2700 }, + [126] = { 44.8, 42.8, 47, 2700 }, + [127] = { 50.2, 40.7, 47, 2700 }, + [128] = { 51.6, 40.5, 47, 2700 }, + [129] = { 38.8, 93, 139, 2700 }, + [130] = { 87.5, 87.6, 139, 2700 }, + [131] = { 28.4, 86.8, 139, 2700 }, + [132] = { 84.6, 86.4, 139, 2700 }, + [133] = { 28.2, 86.2, 139, 2700 }, + [134] = { 83.7, 85.9, 139, 2700 }, + [135] = { 83.5, 85.7, 139, 2700 }, + [136] = { 82.6, 84.8, 139, 2700 }, + [137] = { 82.6, 84.3, 139, 2700 }, + [138] = { 85.8, 83.4, 139, 2700 }, + [139] = { 85.7, 83, 139, 2700 }, + [140] = { 84.3, 80.6, 139, 2700 }, + [141] = { 84.1, 80.4, 139, 2700 }, + [142] = { 40.4, 76.3, 139, 2700 }, + [143] = { 26.4, 75.6, 139, 2700 }, + [144] = { 60.6, 72.2, 139, 2700 }, + [145] = { 60.7, 71.1, 139, 2700 }, + [146] = { 60.8, 70.5, 139, 2700 }, + [147] = { 61.4, 69.7, 139, 2700 }, + [148] = { 61.3, 69.7, 139, 2700 }, + [149] = { 63.3, 53.6, 139, 2700 }, + [150] = { 63.2, 52.9, 139, 2700 }, + [151] = { 63.3, 52.6, 139, 2700 }, + [152] = { 77.7, 51.9, 139, 2700 }, + [153] = { 67.5, 49.3, 139, 2700 }, + [154] = { 67.5, 49, 139, 2700 }, + [155] = { 67.9, 49, 139, 2700 }, + [156] = { 67.1, 48.6, 139, 2700 }, + [157] = { 41.3, 40.7, 139, 2700 }, + [158] = { 22.6, 33.2, 139, 2700 }, + [159] = { 47, 33, 139, 2700 }, + [160] = { 45.2, 33, 139, 2700 }, + [161] = { 18.3, 32.5, 139, 2700 }, + [162] = { 72.7, 30.6, 139, 2700 }, + [163] = { 57.9, 25.9, 139, 2700 }, + [164] = { 63.8, 24, 139, 2700 }, + [165] = { 63.6, 23.9, 139, 2700 }, + [166] = { 64, 22.9, 139, 2700 }, + [167] = { 71.7, 18.6, 139, 2700 }, + [168] = { 60.7, 63.7, 357, 2700 }, + [169] = { 56.4, 63.6, 357, 2700 }, + [170] = { 69.6, 59.5, 357, 2700 }, + [171] = { 53.4, 55.4, 357, 2700 }, + [172] = { 76.2, 54.3, 357, 2700 }, + [173] = { 76.9, 53.6, 357, 2700 }, + [174] = { 57.2, 48.5, 357, 2700 }, + [175] = { 57.9, 48, 357, 2700 }, + [176] = { 57.4, 47.5, 357, 2700 }, + [177] = { 86.6, 45.5, 357, 2700 }, + [178] = { 84.4, 37.8, 357, 2700 }, + [179] = { 49.3, 32.4, 357, 2700 }, + [180] = { 39.6, 23.9, 357, 2700 }, + [181] = { 50.5, 23.4, 357, 2700 }, + [182] = { 40.3, 9.1, 357, 2700 }, + [183] = { 50.5, 87.4, 361, 2700 }, + [184] = { 56.7, 86.4, 361, 2700 }, + [185] = { 40.5, 84.5, 361, 2700 }, + [186] = { 42.4, 80.8, 361, 2700 }, + [187] = { 47.5, 80.1, 361, 2700 }, + [188] = { 48.5, 79.5, 361, 2700 }, + [189] = { 39.6, 74.5, 361, 2700 }, + [190] = { 45.4, 72.6, 361, 2700 }, + [191] = { 38.6, 58.9, 361, 2700 }, + [192] = { 38.7, 57.8, 361, 2700 }, + [193] = { 45.5, 41.5, 361, 2700 }, + [194] = { 60.8, 25.7, 361, 2700 }, + [195] = { 52.3, 24.9, 361, 2700 }, + [196] = { 52.8, 23, 361, 2700 }, + [197] = { 56.6, 21.4, 361, 2700 }, + [198] = { 56.7, 21, 361, 2700 }, + [199] = { 62.4, 19.6, 361, 2700 }, + [200] = { 41.4, 19.5, 361, 2700 }, + [201] = { 49.6, 18.7, 361, 2700 }, + [202] = { 49.6, 18.6, 361, 2700 }, + [203] = { 49.5, 17.9, 361, 2700 }, + [204] = { 49.8, 17.5, 361, 2700 }, + [205] = { 51.5, 12.5, 361, 2700 }, + [206] = { 56.7, 10.6, 361, 2700 }, + [207] = { 63.8, 6.5, 361, 2700 }, + [208] = { 63.9, 6.2, 361, 2700 }, + [209] = { 60.4, 83.8, 408, 2700 }, + [210] = { 43.4, 73.2, 408, 2700 }, + [211] = { 35.7, 57.8, 408, 2700 }, + [212] = { 63.5, 55.9, 408, 2700 }, + [213] = { 60.7, 54.7, 408, 2700 }, + [214] = { 47.5, 76.1, 409, 2700 }, + [215] = { 44.8, 74.8, 409, 2700 }, + [216] = { 39.7, 74.2, 409, 2700 }, + [217] = { 37.6, 71.2, 409, 2700 }, + [218] = { 59.4, 64.1, 409, 2700 }, + [219] = { 57.5, 55.5, 409, 2700 }, + [220] = { 48.4, 44.3, 409, 2700 }, + [221] = { 43.6, 91.3, 490, 2700 }, + [222] = { 56.3, 90.5, 490, 2700 }, + [223] = { 55.3, 84.5, 490, 2700 }, + [224] = { 55.4, 83, 490, 2700 }, + [225] = { 42.4, 83, 490, 2700 }, + [226] = { 60.3, 81, 490, 2700 }, + [227] = { 68.9, 79.1, 490, 2700 }, + [228] = { 68.7, 78.5, 490, 2700 }, + [229] = { 68.5, 78.5, 490, 2700 }, + [230] = { 64.8, 77, 490, 2700 }, + [231] = { 50.2, 75.1, 490, 2700 }, + [232] = { 51, 74.7, 490, 2700 }, + [233] = { 30.9, 73.3, 490, 2700 }, + [234] = { 55.8, 72.6, 490, 2700 }, + [235] = { 37, 70.9, 490, 2700 }, + [236] = { 36.5, 70.6, 490, 2700 }, + [237] = { 49.6, 70.1, 490, 2700 }, + [238] = { 60.6, 69.7, 490, 2700 }, + [239] = { 60.6, 69, 490, 2700 }, + [240] = { 64.5, 65, 490, 2700 }, + [241] = { 70.4, 65, 490, 2700 }, + [242] = { 21.7, 59.9, 490, 2700 }, + [243] = { 75.4, 57.5, 490, 2700 }, + [244] = { 25.2, 57.4, 490, 2700 }, + [245] = { 31, 57.4, 490, 2700 }, + [246] = { 29.6, 57.3, 490, 2700 }, + [247] = { 74.5, 56.9, 490, 2700 }, + [248] = { 25.7, 55.7, 490, 2700 }, + [249] = { 74.7, 54.9, 490, 2700 }, + [250] = { 38.8, 54.4, 490, 2700 }, + [251] = { 38.7, 54.3, 490, 2700 }, + [252] = { 60.5, 51.9, 490, 2700 }, + [253] = { 59.8, 51.1, 490, 2700 }, + [254] = { 64.1, 50.4, 490, 2700 }, + [255] = { 68.6, 49.6, 490, 2700 }, + [256] = { 68.7, 49.3, 490, 2700 }, + [257] = { 25.3, 48.7, 490, 2700 }, + [258] = { 25.4, 48.6, 490, 2700 }, + [259] = { 20.6, 41.9, 490, 2700 }, + [260] = { 20.8, 41.8, 490, 2700 }, + [261] = { 20.9, 41.6, 490, 2700 }, + [262] = { 32.2, 41.5, 490, 2700 }, + [263] = { 58.8, 39, 490, 2700 }, + [264] = { 59.7, 38.8, 490, 2700 }, + [265] = { 35, 37.5, 490, 2700 }, + [266] = { 44.8, 36.7, 490, 2700 }, + [267] = { 44.3, 36.5, 490, 2700 }, + [268] = { 44.4, 36.5, 490, 2700 }, + [269] = { 52.8, 34.4, 490, 2700 }, + [270] = { 52.3, 33.9, 490, 2700 }, + [271] = { 28.8, 33.7, 490, 2700 }, + [272] = { 64.3, 32.2, 490, 2700 }, + [273] = { 29.4, 31.9, 490, 2700 }, + [274] = { 29.5, 31.6, 490, 2700 }, + [275] = { 47.5, 30.9, 490, 2700 }, + [276] = { 68.8, 30.3, 490, 2700 }, + [277] = { 47.2, 30, 490, 2700 }, + [278] = { 35.1, 29.9, 490, 2700 }, + [279] = { 69.8, 29.7, 490, 2700 }, + [280] = { 33.5, 29.6, 490, 2700 }, + [281] = { 47.1, 29.4, 490, 2700 }, + [282] = { 34.1, 28, 490, 2700 }, + [283] = { 38.5, 24.6, 490, 2700 }, + [284] = { 38.3, 24.1, 490, 2700 }, + [285] = { 33.5, 24, 490, 2700 }, + [286] = { 67.6, 23.9, 490, 2700 }, + [287] = { 67.3, 23.6, 490, 2700 }, + [288] = { 33.4, 23.4, 490, 2700 }, + [289] = { 38.8, 23.2, 490, 2700 }, + [290] = { 60.3, 20.7, 490, 2700 }, + [291] = { 55.4, 18.1, 490, 2700 }, + [292] = { 51.7, 17.6, 490, 2700 }, + [293] = { 51.7, 17.4, 490, 2700 }, + [294] = { 55.7, 17.3, 490, 2700 }, + [295] = { 55.4, 16.1, 490, 2700 }, + [296] = { 0.2, 96.3, 616, 2700 }, + [297] = { 2.1, 95.2, 616, 2700 }, + [298] = { 50.1, 78.2, 616, 2700 }, + [299] = { 56.8, 73.1, 616, 2700 }, + [300] = { 26.3, 71.7, 616, 2700 }, + [301] = { 86.5, 66.2, 616, 2700 }, + [302] = { 70.5, 65.1, 616, 2700 }, + [303] = { 62.4, 59.7, 616, 2700 }, + [304] = { 17.7, 58.1, 616, 2700 }, + [305] = { 12.2, 57, 616, 2700 }, + [306] = { 55.6, 53.1, 616, 2700 }, + [307] = { 32.3, 51.8, 616, 2700 }, + [308] = { 42.2, 45.7, 616, 2700 }, + [309] = { 32.2, 39.4, 616, 2700 }, + [310] = { 77.7, 35.1, 616, 2700 }, + [311] = { 49.8, 80.9, 618, 2700 }, + [312] = { 49.9, 92.5, 1377, 2700 }, + [313] = { 16.8, 89.8, 1377, 2700 }, + [314] = { 16, 88.8, 1377, 2700 }, + [315] = { 66.9, 80.7, 1377, 2700 }, + [316] = { 67.3, 79, 1377, 2700 }, + [317] = { 23.8, 74.5, 1377, 2700 }, + [318] = { 56.7, 72, 1377, 2700 }, + [319] = { 16.6, 70.8, 1377, 2700 }, + [320] = { 17.2, 70.6, 1377, 2700 }, + [321] = { 45.6, 67.5, 1377, 2700 }, + [322] = { 80.6, 64, 1377, 2700 }, + [323] = { 31.7, 61.3, 1377, 2700 }, + [324] = { 35.5, 55.6, 1377, 2700 }, + [325] = { 61.1, 53.8, 1377, 2700 }, + [326] = { 79.4, 44.8, 1377, 2700 }, + [327] = { 79.6, 44.8, 1377, 2700 }, + [328] = { 79.8, 44.6, 1377, 2700 }, + [329] = { 44.6, 42.8, 1377, 2700 }, + [330] = { 38.8, 42.3, 1377, 2700 }, + [331] = { 28.6, 35.8, 1377, 2700 }, + [332] = { 30.3, 35.2, 1377, 2700 }, + [333] = { 55.7, 30.8, 1377, 2700 }, + [334] = { 51.4, 27.6, 1377, 2700 }, + [335] = { 32.3, 25, 1377, 2700 }, + [336] = { 6.2, 5.5, 2557, 2700 }, + [337] = { 75.7, 3.4, 3478, 2700 }, + [338] = { 47.9, 1.3, 3478, 2700 }, + [339] = { 47.2, 0.5, 3478, 2700 }, + [340] = { 48.2, 73.5, 4012, 2700 }, + [341] = { 44.6, 72, 4012, 2700 }, + [342] = { 43.5, 71.4, 4012, 2700 }, + [343] = { 43.3, 71.1, 4012, 2700 }, + [344] = { 42.2, 70.1, 4012, 2700 }, + [345] = { 42.2, 69.4, 4012, 2700 }, + [346] = { 46.1, 68.3, 4012, 2700 }, + [347] = { 46, 67.8, 4012, 2700 }, + [348] = { 44.3, 64.9, 4012, 2700 }, + [349] = { 44.1, 64.6, 4012, 2700 }, + [350] = { 15.3, 54.6, 4012, 2700 }, + [351] = { 15.4, 53.3, 4012, 2700 }, + [352] = { 15.4, 52.5, 4012, 2700 }, + [353] = { 16.3, 51.6, 4012, 2700 }, + [354] = { 16, 51.5, 4012, 2700 }, + [355] = { 18.6, 31.9, 4012, 2700 }, + [356] = { 18.4, 31, 4012, 2700 }, + [357] = { 18.6, 30.6, 4012, 2700 }, + [358] = { 36.2, 29.7, 4012, 2700 }, + [359] = { 23.7, 26.5, 4012, 2700 }, + [360] = { 23.6, 26.2, 4012, 2700 }, + [361] = { 24.2, 26.1, 4012, 2700 }, + [362] = { 23.2, 25.6, 4012, 2700 }, + [363] = { 30, 3.7, 4012, 2700 }, + [364] = { 66.7, 97.5, 5225, 2700 }, + [365] = { 97.4, 97.2, 5225, 2700 }, + [366] = { 95, 97.2, 5225, 2700 }, + [367] = { 61.3, 96.6, 5225, 2700 }, + [368] = { 97.6, 76.4, 5581, 2700 }, + [369] = { 98.6, 75.7, 5581, 2700 }, + [370] = { 97.7, 75, 5581, 2700 }, + [371] = { 98.6, 74.7, 5581, 2700 }, + }, + }, + [176584] = { + ["coords"] = { + [1] = { 63.5, 88.3, 16, 2700 }, + [2] = { 63.7, 88.2, 16, 2700 }, + [3] = { 63.5, 87.5, 16, 2700 }, + [4] = { 54.8, 84.8, 16, 2700 }, + [5] = { 47.6, 84.5, 16, 2700 }, + [6] = { 36.5, 83.9, 16, 2700 }, + [7] = { 57.3, 83.8, 16, 2700 }, + [8] = { 50, 83.5, 16, 2700 }, + [9] = { 13.5, 81.3, 16, 2700 }, + [10] = { 13.6, 81.2, 16, 2700 }, + [11] = { 53.9, 80.9, 16, 2700 }, + [12] = { 21.3, 80.4, 16, 2700 }, + [13] = { 21.4, 80.4, 16, 2700 }, + [14] = { 29, 80.1, 16, 2700 }, + [15] = { 45.5, 79.9, 16, 2700 }, + [16] = { 50.5, 78.9, 16, 2700 }, + [17] = { 58.4, 78.8, 16, 2700 }, + [18] = { 51.9, 77.9, 16, 2700 }, + [19] = { 56.5, 77.7, 16, 2700 }, + [20] = { 38.9, 76.4, 16, 2700 }, + [21] = { 52.1, 76.4, 16, 2700 }, + [22] = { 47.2, 75.9, 16, 2700 }, + [23] = { 40.8, 75.7, 16, 2700 }, + [24] = { 47.1, 75.7, 16, 2700 }, + [25] = { 40.8, 75.6, 16, 2700 }, + [26] = { 37.6, 75.2, 16, 2700 }, + [27] = { 55.4, 74.1, 16, 2700 }, + [28] = { 47.7, 73.7, 16, 2700 }, + [29] = { 20.1, 73.7, 16, 2700 }, + [30] = { 39.8, 73.3, 16, 2700 }, + [31] = { 48.5, 73.2, 16, 2700 }, + [32] = { 39.7, 73.2, 16, 2700 }, + [33] = { 47, 72.9, 16, 2700 }, + [34] = { 16.2, 70.9, 16, 2700 }, + [35] = { 18.6, 68, 16, 2700 }, + [36] = { 18.8, 67.9, 16, 2700 }, + [37] = { 18.3, 67.3, 16, 2700 }, + [38] = { 36.5, 66.8, 16, 2700 }, + [39] = { 19.2, 63.7, 16, 2700 }, + [40] = { 26.9, 59.8, 16, 2700 }, + [41] = { 29.1, 58.6, 16, 2700 }, + [42] = { 21.8, 58, 16, 2700 }, + [43] = { 29.1, 57.6, 16, 2700 }, + [44] = { 27.5, 55.4, 16, 2700 }, + [45] = { 27.4, 55.4, 16, 2700 }, + [46] = { 27.4, 55, 16, 2700 }, + [47] = { 18.5, 53.1, 16, 2700 }, + [48] = { 29.4, 49.6, 16, 2700 }, + [49] = { 29.5, 49.4, 16, 2700 }, + [50] = { 29.4, 49.3, 16, 2700 }, + [51] = { 24.6, 49.3, 16, 2700 }, + [52] = { 23.5, 49.1, 16, 2700 }, + [53] = { 32.3, 44.9, 16, 2700 }, + [54] = { 32.4, 44.8, 16, 2700 }, + [55] = { 32.4, 44.6, 16, 2700 }, + [56] = { 34.9, 43.5, 16, 2700 }, + [57] = { 38.9, 37.3, 16, 2700 }, + [58] = { 39, 37.2, 16, 2700 }, + [59] = { 40.4, 36.5, 16, 2700 }, + [60] = { 44.6, 36.1, 16, 2700 }, + [61] = { 43.6, 35.5, 16, 2700 }, + [62] = { 72.3, 33.3, 16, 2700 }, + [63] = { 74.3, 32.9, 16, 2700 }, + [64] = { 68.3, 31.3, 16, 2700 }, + [65] = { 53.1, 31.2, 16, 2700 }, + [66] = { 69.7, 31.2, 16, 2700 }, + [67] = { 53.2, 31.1, 16, 2700 }, + [68] = { 67.8, 30.4, 16, 2700 }, + [69] = { 40.4, 29.9, 16, 2700 }, + [70] = { 66.7, 29.2, 16, 2700 }, + [71] = { 50.8, 28.5, 16, 2700 }, + [72] = { 54.8, 27.7, 16, 2700 }, + [73] = { 44.3, 27.5, 16, 2700 }, + [74] = { 44.2, 27.4, 16, 2700 }, + [75] = { 67.4, 26.8, 16, 2700 }, + [76] = { 81.3, 25.4, 16, 2700 }, + [77] = { 77.6, 24.5, 16, 2700 }, + [78] = { 77.7, 24.3, 16, 2700 }, + [79] = { 69.4, 23.6, 16, 2700 }, + [80] = { 79.3, 23.5, 16, 2700 }, + [81] = { 80.4, 23.1, 16, 2700 }, + [82] = { 77.6, 23, 16, 2700 }, + [83] = { 68, 22.6, 16, 2700 }, + [84] = { 68.2, 22.5, 16, 2700 }, + [85] = { 43.4, 22.3, 16, 2700 }, + [86] = { 42.1, 21.4, 16, 2700 }, + [87] = { 80.9, 20.3, 16, 2700 }, + [88] = { 57.2, 19.3, 16, 2700 }, + [89] = { 80.3, 18.7, 16, 2700 }, + [90] = { 80.3, 18.5, 16, 2700 }, + [91] = { 80.4, 18.5, 16, 2700 }, + [92] = { 42.4, 18.3, 16, 2700 }, + [93] = { 58.7, 18.2, 16, 2700 }, + [94] = { 82.7, 18.2, 16, 2700 }, + [95] = { 82.9, 18.1, 16, 2700 }, + [96] = { 55.1, 17.9, 16, 2700 }, + [97] = { 75.6, 17.7, 16, 2700 }, + [98] = { 75.4, 17.1, 16, 2700 }, + [99] = { 56.6, 17, 16, 2700 }, + [100] = { 56.7, 16.9, 16, 2700 }, + [101] = { 56.7, 16.7, 16, 2700 }, + [102] = { 62.5, 16.2, 16, 2700 }, + [103] = { 63.7, 15.8, 16, 2700 }, + [104] = { 65, 14.8, 16, 2700 }, + [105] = { 56.5, 63.4, 28, 2700 }, + [106] = { 49, 60.1, 28, 2700 }, + [107] = { 44.1, 59.8, 28, 2700 }, + [108] = { 58.8, 59.3, 28, 2700 }, + [109] = { 79.9, 59.1, 28, 2700 }, + [110] = { 44.4, 58.7, 28, 2700 }, + [111] = { 34.7, 58.1, 28, 2700 }, + [112] = { 59.5, 57.7, 28, 2700 }, + [113] = { 47.1, 57.6, 28, 2700 }, + [114] = { 47, 57.5, 28, 2700 }, + [115] = { 41, 55.3, 28, 2700 }, + [116] = { 65.2, 54.3, 28, 2700 }, + [117] = { 39.7, 53.4, 28, 2700 }, + [118] = { 39.8, 53.4, 28, 2700 }, + [119] = { 58.9, 52.7, 28, 2700 }, + [120] = { 66.6, 51.8, 28, 2700 }, + [121] = { 58.8, 50.5, 28, 2700 }, + [122] = { 63.1, 49.1, 28, 2700 }, + [123] = { 66.9, 48, 28, 2700 }, + [124] = { 45.6, 47.4, 28, 2700 }, + [125] = { 45.6, 47.2, 28, 2700 }, + [126] = { 45.7, 47.2, 28, 2700 }, + [127] = { 66.2, 46.2, 28, 2700 }, + [128] = { 74.8, 44.2, 28, 2700 }, + [129] = { 66.1, 43.5, 28, 2700 }, + [130] = { 73.1, 43.1, 28, 2700 }, + [131] = { 73.4, 41, 28, 2700 }, + [132] = { 44.8, 35.5, 28, 2700 }, + [133] = { 45, 35.4, 28, 2700 }, + [134] = { 44.7, 34, 28, 2700 }, + [135] = { 47.4, 33.7, 28, 2700 }, + [136] = { 43.9, 12.1, 28, 2700 }, + [137] = { 22.9, 72.9, 46, 2700 }, + [138] = { 23.8, 69.4, 46, 2700 }, + [139] = { 56.1, 64.8, 46, 2700 }, + [140] = { 28, 64, 46, 2700 }, + [141] = { 27.8, 64, 46, 2700 }, + [142] = { 54.2, 63.4, 46, 2700 }, + [143] = { 50.3, 61.2, 46, 2700 }, + [144] = { 88.6, 58.9, 46, 2700 }, + [145] = { 22.5, 58.4, 46, 2700 }, + [146] = { 53.1, 57.7, 46, 2700 }, + [147] = { 89.2, 57.3, 46, 2700 }, + [148] = { 62.1, 56.6, 46, 2700 }, + [149] = { 16.6, 56.4, 46, 2700 }, + [150] = { 45.9, 55.3, 46, 2700 }, + [151] = { 33.3, 55.2, 46, 2700 }, + [152] = { 43.3, 52.9, 46, 2700 }, + [153] = { 63.3, 51.2, 46, 2700 }, + [154] = { 18, 50.3, 46, 2700 }, + [155] = { 70.2, 48.8, 46, 2700 }, + [156] = { 34.6, 48.4, 46, 2700 }, + [157] = { 18.6, 48.4, 46, 2700 }, + [158] = { 34.8, 48, 46, 2700 }, + [159] = { 18.7, 48, 46, 2700 }, + [160] = { 66.7, 47.4, 46, 2700 }, + [161] = { 66.4, 47.3, 46, 2700 }, + [162] = { 66.8, 47.1, 46, 2700 }, + [163] = { 68.1, 46, 46, 2700 }, + [164] = { 86.7, 44.2, 46, 2700 }, + [165] = { 86.8, 43.9, 46, 2700 }, + [166] = { 48.3, 42.1, 46, 2700 }, + [167] = { 47.5, 42, 46, 2700 }, + [168] = { 44.8, 41.9, 46, 2700 }, + [169] = { 56.9, 41.5, 46, 2700 }, + [170] = { 56.9, 41.2, 46, 2700 }, + [171] = { 50.4, 38.7, 46, 2700 }, + [172] = { 44.8, 38.3, 46, 2700 }, + [173] = { 67.6, 34.8, 46, 2700 }, + [174] = { 91, 33.3, 46, 2700 }, + [175] = { 91.2, 33.1, 46, 2700 }, + [176] = { 75.5, 32.6, 46, 2700 }, + [177] = { 55.1, 29.1, 46, 2700 }, + [178] = { 57.3, 25.8, 46, 2700 }, + [179] = { 37.2, 87.9, 139, 2700 }, + [180] = { 37.1, 87.6, 139, 2700 }, + [181] = { 37, 85.1, 139, 2700 }, + [182] = { 84.9, 85.1, 139, 2700 }, + [183] = { 84.4, 84.9, 139, 2700 }, + [184] = { 34, 84.6, 139, 2700 }, + [185] = { 33.5, 84.5, 139, 2700 }, + [186] = { 21.5, 82.4, 139, 2700 }, + [187] = { 86.7, 82, 139, 2700 }, + [188] = { 57.7, 81.8, 139, 2700 }, + [189] = { 66.6, 81.3, 139, 2700 }, + [190] = { 58.1, 80.8, 139, 2700 }, + [191] = { 81.8, 79.1, 139, 2700 }, + [192] = { 62.2, 77, 139, 2700 }, + [193] = { 63.6, 75.7, 139, 2700 }, + [194] = { 33, 74.5, 139, 2700 }, + [195] = { 72.9, 72.8, 139, 2700 }, + [196] = { 29.7, 72.4, 139, 2700 }, + [197] = { 32.6, 72.3, 139, 2700 }, + [198] = { 73.6, 68.7, 139, 2700 }, + [199] = { 70.6, 68.1, 139, 2700 }, + [200] = { 29.1, 67.6, 139, 2700 }, + [201] = { 38.6, 67.3, 139, 2700 }, + [202] = { 38.4, 67.3, 139, 2700 }, + [203] = { 31, 67.1, 139, 2700 }, + [204] = { 39.8, 66.6, 139, 2700 }, + [205] = { 50.3, 66.4, 139, 2700 }, + [206] = { 15.8, 65.9, 139, 2700 }, + [207] = { 33.4, 65.7, 139, 2700 }, + [208] = { 78.7, 65, 139, 2700 }, + [209] = { 14, 64.6, 139, 2700 }, + [210] = { 42.5, 64.2, 139, 2700 }, + [211] = { 51.6, 63.5, 139, 2700 }, + [212] = { 14.3, 62.4, 139, 2700 }, + [213] = { 79.2, 61.9, 139, 2700 }, + [214] = { 81.4, 59.1, 139, 2700 }, + [215] = { 57.4, 56.9, 139, 2700 }, + [216] = { 64.7, 56.4, 139, 2700 }, + [217] = { 69.7, 55.8, 139, 2700 }, + [218] = { 52.6, 54.6, 139, 2700 }, + [219] = { 52.6, 54.4, 139, 2700 }, + [220] = { 52.7, 54.3, 139, 2700 }, + [221] = { 75.8, 54.1, 139, 2700 }, + [222] = { 76.1, 53.9, 139, 2700 }, + [223] = { 67.3, 49.4, 139, 2700 }, + [224] = { 46.3, 40.7, 139, 2700 }, + [225] = { 46.1, 40.5, 139, 2700 }, + [226] = { 65.1, 39.8, 139, 2700 }, + [227] = { 28.9, 39, 139, 2700 }, + [228] = { 46.4, 38.5, 139, 2700 }, + [229] = { 46.5, 38.5, 139, 2700 }, + [230] = { 43.5, 37.8, 139, 2700 }, + [231] = { 71.5, 36.8, 139, 2700 }, + [232] = { 71.3, 36.7, 139, 2700 }, + [233] = { 66.3, 36.4, 139, 2700 }, + [234] = { 18, 33.1, 139, 2700 }, + [235] = { 55.4, 29.6, 139, 2700 }, + [236] = { 50.9, 27, 139, 2700 }, + [237] = { 49.3, 25.7, 139, 2700 }, + [238] = { 19.7, 25.7, 139, 2700 }, + [239] = { 49.4, 25.6, 139, 2700 }, + [240] = { 47.4, 25.5, 139, 2700 }, + [241] = { 47, 87.5, 361, 2700 }, + [242] = { 51.5, 87.3, 361, 2700 }, + [243] = { 51.4, 87.3, 361, 2700 }, + [244] = { 44.8, 86.5, 361, 2700 }, + [245] = { 56.3, 84.4, 361, 2700 }, + [246] = { 55.7, 84.4, 361, 2700 }, + [247] = { 45.9, 81.6, 361, 2700 }, + [248] = { 44.8, 76.8, 361, 2700 }, + [249] = { 40.7, 76.7, 361, 2700 }, + [250] = { 40.8, 76.6, 361, 2700 }, + [251] = { 47.2, 72.9, 361, 2700 }, + [252] = { 41, 67.8, 361, 2700 }, + [253] = { 43.6, 66.6, 361, 2700 }, + [254] = { 43.4, 65.5, 361, 2700 }, + [255] = { 42.7, 63.1, 361, 2700 }, + [256] = { 40.2, 59.7, 361, 2700 }, + [257] = { 40.4, 59.7, 361, 2700 }, + [258] = { 41.6, 58.8, 361, 2700 }, + [259] = { 41.3, 55.2, 361, 2700 }, + [260] = { 52.4, 54.8, 361, 2700 }, + [261] = { 50.9, 50.2, 361, 2700 }, + [262] = { 40.8, 50.1, 361, 2700 }, + [263] = { 40.7, 49.9, 361, 2700 }, + [264] = { 39.9, 44.9, 361, 2700 }, + [265] = { 40.3, 43.1, 361, 2700 }, + [266] = { 46.3, 42.4, 361, 2700 }, + [267] = { 40.1, 36.4, 361, 2700 }, + [268] = { 52.5, 26.6, 361, 2700 }, + [269] = { 46.9, 24, 361, 2700 }, + [270] = { 53.9, 23.1, 361, 2700 }, + [271] = { 57, 22.5, 361, 2700 }, + [272] = { 56.8, 22.4, 361, 2700 }, + [273] = { 65, 21.8, 361, 2700 }, + [274] = { 48.5, 21.6, 361, 2700 }, + [275] = { 64.9, 21.6, 361, 2700 }, + [276] = { 48.5, 21.4, 361, 2700 }, + [277] = { 48.9, 20.8, 361, 2700 }, + [278] = { 45.3, 18.8, 361, 2700 }, + [279] = { 43.3, 16, 361, 2700 }, + [280] = { 51.6, 15.8, 361, 2700 }, + [281] = { 47.4, 15.7, 361, 2700 }, + [282] = { 55, 15.5, 361, 2700 }, + [283] = { 62.4, 11.6, 361, 2700 }, + [284] = { 53, 10.5, 361, 2700 }, + [285] = { 31, 88.6, 408, 2700 }, + [286] = { 34.1, 88.4, 408, 2700 }, + [287] = { 51.4, 78.1, 408, 2700 }, + [288] = { 59.9, 76.7, 408, 2700 }, + [289] = { 56.9, 57.7, 408, 2700 }, + [290] = { 44.9, 52.7, 408, 2700 }, + [291] = { 54.6, 50.2, 408, 2700 }, + [292] = { 29.3, 1.9, 408, 2700 }, + [293] = { 48.3, 79.6, 409, 2700 }, + [294] = { 38.5, 69.8, 409, 2700 }, + [295] = { 40.8, 63.5, 409, 2700 }, + [296] = { 40, 43.2, 409, 2700 }, + [297] = { 53.6, 37.8, 409, 2700 }, + [298] = { 40.3, 28.7, 409, 2700 }, + [299] = { 32.3, 34.2, 440, 2700 }, + [300] = { 46.4, 79.6, 490, 2700 }, + [301] = { 54, 76.8, 490, 2700 }, + [302] = { 53.3, 76.4, 490, 2700 }, + [303] = { 30.4, 76.2, 490, 2700 }, + [304] = { 33.9, 76.1, 490, 2700 }, + [305] = { 33.3, 76, 490, 2700 }, + [306] = { 66.2, 75.7, 490, 2700 }, + [307] = { 60.8, 73.2, 490, 2700 }, + [308] = { 71.5, 73.1, 490, 2700 }, + [309] = { 58.7, 73, 490, 2700 }, + [310] = { 71.4, 72.8, 490, 2700 }, + [311] = { 38.4, 72.5, 490, 2700 }, + [312] = { 43, 72.4, 490, 2700 }, + [313] = { 64.9, 71.2, 490, 2700 }, + [314] = { 64.7, 70.8, 490, 2700 }, + [315] = { 43.8, 69.5, 490, 2700 }, + [316] = { 72.6, 68.1, 490, 2700 }, + [317] = { 53.1, 67.1, 490, 2700 }, + [318] = { 31.2, 66.9, 490, 2700 }, + [319] = { 54.4, 66.5, 490, 2700 }, + [320] = { 54, 66, 490, 2700 }, + [321] = { 53.3, 66, 490, 2700 }, + [322] = { 55.8, 65.9, 490, 2700 }, + [323] = { 54.4, 65.9, 490, 2700 }, + [324] = { 53.6, 65.6, 490, 2700 }, + [325] = { 35.5, 65.1, 490, 2700 }, + [326] = { 36.4, 65, 490, 2700 }, + [327] = { 55.3, 64.4, 490, 2700 }, + [328] = { 56.6, 63.9, 490, 2700 }, + [329] = { 56.7, 61.6, 490, 2700 }, + [330] = { 56, 61.3, 490, 2700 }, + [331] = { 36.5, 60.3, 490, 2700 }, + [332] = { 80.6, 60.1, 490, 2700 }, + [333] = { 55.2, 59.8, 490, 2700 }, + [334] = { 39.1, 58.8, 490, 2700 }, + [335] = { 61.6, 58.4, 490, 2700 }, + [336] = { 37.9, 57.9, 490, 2700 }, + [337] = { 63.5, 57.7, 490, 2700 }, + [338] = { 69.7, 55.2, 490, 2700 }, + [339] = { 69.3, 55, 490, 2700 }, + [340] = { 35.5, 54.3, 490, 2700 }, + [341] = { 36.7, 53.8, 490, 2700 }, + [342] = { 36.3, 53.5, 490, 2700 }, + [343] = { 65.3, 49.4, 490, 2700 }, + [344] = { 41.4, 48.6, 490, 2700 }, + [345] = { 41.4, 48.3, 490, 2700 }, + [346] = { 25.2, 48, 490, 2700 }, + [347] = { 67, 47.7, 490, 2700 }, + [348] = { 66.7, 47.6, 490, 2700 }, + [349] = { 28.1, 46.9, 490, 2700 }, + [350] = { 27.9, 46.6, 490, 2700 }, + [351] = { 27.8, 46.1, 490, 2700 }, + [352] = { 74.1, 42.8, 490, 2700 }, + [353] = { 72.2, 42.5, 490, 2700 }, + [354] = { 78.9, 41.3, 490, 2700 }, + [355] = { 41.2, 40.3, 490, 2700 }, + [356] = { 41.4, 40, 490, 2700 }, + [357] = { 74.3, 38.5, 490, 2700 }, + [358] = { 57.1, 37.3, 490, 2700 }, + [359] = { 34.6, 35.5, 490, 2700 }, + [360] = { 34.8, 35.2, 490, 2700 }, + [361] = { 69.7, 34.4, 490, 2700 }, + [362] = { 62.7, 34.3, 490, 2700 }, + [363] = { 63.1, 32.6, 490, 2700 }, + [364] = { 69.8, 31.8, 490, 2700 }, + [365] = { 35.9, 29.9, 490, 2700 }, + [366] = { 58.9, 27.1, 490, 2700 }, + [367] = { 48.1, 26.2, 490, 2700 }, + [368] = { 51.7, 25.6, 490, 2700 }, + [369] = { 51.1, 24.6, 490, 2700 }, + [370] = { 52.7, 24.2, 490, 2700 }, + [371] = { 47.7, 23.9, 490, 2700 }, + [372] = { 53.4, 23.3, 490, 2700 }, + [373] = { 54, 21.9, 490, 2700 }, + [374] = { 38.3, 20.4, 490, 2700 }, + [375] = { 51, 19.6, 490, 2700 }, + [376] = { 56.9, 8, 490, 2700 }, + [377] = { 56, 83.6, 616, 2700 }, + [378] = { 62.9, 72.6, 616, 2700 }, + [379] = { 68.1, 71.6, 616, 2700 }, + [380] = { 82.3, 70.9, 616, 2700 }, + [381] = { 49.8, 69.8, 616, 2700 }, + [382] = { 21.4, 67.1, 616, 2700 }, + [383] = { 58.9, 66.6, 616, 2700 }, + [384] = { 78.3, 65.5, 616, 2700 }, + [385] = { 18.7, 62.7, 616, 2700 }, + [386] = { 48.5, 51, 616, 2700 }, + [387] = { 9.1, 50.9, 616, 2700 }, + [388] = { 6.4, 42.7, 616, 2700 }, + [389] = { 35.4, 37.8, 616, 2700 }, + [390] = { 42.6, 35.5, 616, 2700 }, + [391] = { 42.9, 31.9, 616, 2700 }, + [392] = { 70.4, 21.1, 616, 2700 }, + [393] = { 9.2, 0.5, 616, 2700 }, + [394] = { 47.9, 83, 618, 2700 }, + [395] = { 81, 80.3, 618, 2700 }, + [396] = { 82.1, 79.6, 618, 2700 }, + [397] = { 82.2, 79.5, 618, 2700 }, + [398] = { 82.2, 79.4, 618, 2700 }, + [399] = { 23.7, 82.8, 1377, 2700 }, + [400] = { 50.3, 82, 1377, 2700 }, + [401] = { 47.5, 81.2, 1377, 2700 }, + [402] = { 65.2, 71.3, 1377, 2700 }, + [403] = { 45.9, 64.6, 1377, 2700 }, + [404] = { 45.9, 64.4, 1377, 2700 }, + [405] = { 62.7, 63.8, 1377, 2700 }, + [406] = { 56.6, 62, 1377, 2700 }, + [407] = { 49.7, 61.3, 1377, 2700 }, + [408] = { 54.2, 59.5, 1377, 2700 }, + [409] = { 58.2, 58.7, 1377, 2700 }, + [410] = { 40.7, 53.5, 1377, 2700 }, + [411] = { 30.6, 48.2, 1377, 2700 }, + [412] = { 42.8, 47.9, 1377, 2700 }, + [413] = { 43.2, 47.6, 1377, 2700 }, + [414] = { 43.3, 47.4, 1377, 2700 }, + [415] = { 26.8, 46.8, 1377, 2700 }, + [416] = { 42.6, 38, 1377, 2700 }, + [417] = { 19.8, 32, 1377, 2700 }, + [418] = { 50.5, 29.8, 1377, 2700 }, + [419] = { 52.1, 29.4, 1377, 2700 }, + [420] = { 34.6, 21.2, 1377, 2700 }, + [421] = { 45, 70.4, 4012, 2700 }, + [422] = { 44.4, 70.1, 4012, 2700 }, + [423] = { 47.2, 66.5, 4012, 2700 }, + [424] = { 11.7, 66.3, 4012, 2700 }, + [425] = { 22.6, 65.8, 4012, 2700 }, + [426] = { 12.2, 65.1, 4012, 2700 }, + [427] = { 41.2, 63, 4012, 2700 }, + [428] = { 17.2, 60.4, 4012, 2700 }, + [429] = { 18.9, 58.8, 4012, 2700 }, + [430] = { 30.3, 55.4, 4012, 2700 }, + [431] = { 31.2, 50.3, 4012, 2700 }, + [432] = { 27.4, 49.5, 4012, 2700 }, + [433] = { 2.6, 47.5, 4012, 2700 }, + [434] = { 37.4, 45.8, 4012, 2700 }, + [435] = { 4.2, 44, 4012, 2700 }, + [436] = { 38, 42, 4012, 2700 }, + [437] = { 40.7, 38.6, 4012, 2700 }, + [438] = { 11.3, 35.9, 4012, 2700 }, + [439] = { 20.2, 35.2, 4012, 2700 }, + [440] = { 26.4, 34.5, 4012, 2700 }, + [441] = { 5.4, 33, 4012, 2700 }, + [442] = { 5.4, 32.8, 4012, 2700 }, + [443] = { 5.5, 32.7, 4012, 2700 }, + [444] = { 33.8, 32.4, 4012, 2700 }, + [445] = { 34.2, 32.2, 4012, 2700 }, + [446] = { 23.5, 26.6, 4012, 2700 }, + [447] = { 20.7, 15, 4012, 2700 }, + [448] = { 28.6, 11.3, 4012, 2700 }, + [449] = { 28.3, 11.1, 4012, 2700 }, + [450] = { 22.2, 10.8, 4012, 2700 }, + [451] = { 8.8, 2.4, 4012, 2700 }, + [452] = { 50, 84.7, 5121, 2700 }, + [453] = { 61.6, 81.8, 5121, 2700 }, + [454] = { 47.3, 58.2, 5121, 2700 }, + [455] = { 62.3, 52.7, 5121, 2700 }, + [456] = { 41, 52.4, 5121, 2700 }, + [457] = { 41.5, 51.2, 5121, 2700 }, + [458] = { 62.1, 42.9, 5121, 2700 }, + [459] = { 49.7, 25.3, 5121, 2700 }, + [460] = { 41.4, 25.3, 5121, 2700 }, + [461] = { 60.9, 97.3, 5225, 2700 }, + [462] = { 15.1, 93.7, 5225, 2700 }, + [463] = { 63, 88, 5225, 2700 }, + [464] = { 97.9, 87.9, 5225, 2700 }, + [465] = { 98.6, 98.7, 5581, 2700 }, + [466] = { 99.4, 95.5, 5581, 2700 }, + [467] = { 98.2, 85.5, 5581, 2700 }, + [468] = { 92.9, 83.7, 5581, 2700 }, + [469] = { 94.2, 78.1, 5581, 2700 }, + [470] = { 94.7, 76.4, 5581, 2700 }, + [471] = { 94.8, 76.1, 5581, 2700 }, + }, + }, + [176586] = { + ["coords"] = { + [1] = { 50.2, 87, 16, 2700 }, + [2] = { 50.7, 86.6, 16, 2700 }, + [3] = { 38.2, 85.9, 16, 2700 }, + [4] = { 38.4, 85.8, 16, 2700 }, + [5] = { 59.5, 84.6, 16, 2700 }, + [6] = { 41.6, 84.3, 16, 2700 }, + [7] = { 56.5, 83.1, 16, 2700 }, + [8] = { 39.2, 76.3, 16, 2700 }, + [9] = { 44.8, 74.4, 16, 2700 }, + [10] = { 44.2, 73.6, 16, 2700 }, + [11] = { 35.4, 70.1, 16, 2700 }, + [12] = { 34.6, 69.3, 16, 2700 }, + [13] = { 45.4, 68.8, 16, 2700 }, + [14] = { 33.2, 63.8, 16, 2700 }, + [15] = { 38.5, 63.1, 16, 2700 }, + [16] = { 36.1, 58.7, 16, 2700 }, + [17] = { 34.3, 57.5, 16, 2700 }, + [18] = { 34.5, 57, 16, 2700 }, + [19] = { 26.2, 54.5, 16, 2700 }, + [20] = { 25.2, 54.4, 16, 2700 }, + [21] = { 27.8, 49.4, 16, 2700 }, + [22] = { 37.6, 46.2, 16, 2700 }, + [23] = { 31.8, 44.9, 16, 2700 }, + [24] = { 34.3, 39.4, 16, 2700 }, + [25] = { 36.9, 39, 16, 2700 }, + [26] = { 40.1, 34.4, 16, 2700 }, + [27] = { 47.8, 33.3, 16, 2700 }, + [28] = { 39.9, 32.9, 16, 2700 }, + [29] = { 40, 32.6, 16, 2700 }, + [30] = { 40.2, 32.6, 16, 2700 }, + [31] = { 47.9, 31.7, 16, 2700 }, + [32] = { 70.2, 31, 16, 2700 }, + [33] = { 48.1, 30.7, 16, 2700 }, + [34] = { 73.6, 30.4, 16, 2700 }, + [35] = { 41.1, 28.8, 16, 2700 }, + [36] = { 41.4, 28.4, 16, 2700 }, + [37] = { 76.1, 28.1, 16, 2700 }, + [38] = { 74.9, 27.3, 16, 2700 }, + [39] = { 80.3, 27.1, 16, 2700 }, + [40] = { 46, 26.1, 16, 2700 }, + [41] = { 41.5, 25.5, 16, 2700 }, + [42] = { 69.4, 25, 16, 2700 }, + [43] = { 70.8, 24.8, 16, 2700 }, + [44] = { 46.4, 24.7, 16, 2700 }, + [45] = { 68.8, 23.2, 16, 2700 }, + [46] = { 42.2, 22.8, 16, 2700 }, + [47] = { 50.1, 22.4, 16, 2700 }, + [48] = { 65.1, 21.3, 16, 2700 }, + [49] = { 81.4, 20, 16, 2700 }, + [50] = { 80.8, 18.3, 16, 2700 }, + [51] = { 58.7, 17.6, 16, 2700 }, + [52] = { 87.3, 56.2, 25, 2700 }, + [53] = { 88, 55.9, 25, 2700 }, + [54] = { 75, 68.4, 46, 2700 }, + [55] = { 55.8, 67.9, 46, 2700 }, + [56] = { 74.2, 66.8, 46, 2700 }, + [57] = { 48.2, 64.3, 46, 2700 }, + [58] = { 86.4, 63.8, 46, 2700 }, + [59] = { 88.6, 60.4, 46, 2700 }, + [60] = { 94.5, 58.8, 46, 2700 }, + [61] = { 14.6, 58.7, 46, 2700 }, + [62] = { 65.2, 57.7, 46, 2700 }, + [63] = { 14.8, 57.2, 46, 2700 }, + [64] = { 66.9, 55.2, 46, 2700 }, + [65] = { 80.3, 53, 46, 2700 }, + [66] = { 80.9, 52.4, 46, 2700 }, + [67] = { 82.3, 48.2, 46, 2700 }, + [68] = { 38.2, 42.6, 46, 2700 }, + [69] = { 38.4, 42.4, 46, 2700 }, + [70] = { 81.4, 40.4, 46, 2700 }, + [71] = { 44.7, 39.5, 46, 2700 }, + [72] = { 78.9, 38.8, 46, 2700 }, + [73] = { 79, 38.4, 46, 2700 }, + [74] = { 86.9, 37.2, 46, 2700 }, + [75] = { 86.2, 36.1, 46, 2700 }, + [76] = { 38.1, 28.7, 46, 2700 }, + [77] = { 38.2, 28.6, 46, 2700 }, + [78] = { 50.5, 27.1, 46, 2700 }, + [79] = { 16.5, 24.2, 46, 2700 }, + [80] = { 63.7, 98.2, 51, 2700 }, + [81] = { 19.1, 94.4, 51, 2700 }, + [82] = { 78.2, 84.9, 139, 2700 }, + [83] = { 87.1, 79.9, 139, 2700 }, + [84] = { 55.7, 77.5, 139, 2700 }, + [85] = { 82.2, 65.3, 139, 2700 }, + [86] = { 31, 62.1, 139, 2700 }, + [87] = { 80.4, 55.3, 139, 2700 }, + [88] = { 78.6, 50.9, 139, 2700 }, + [89] = { 41.1, 46.8, 139, 2700 }, + [90] = { 55.8, 43.2, 139, 2700 }, + [91] = { 60.9, 29.3, 139, 2700 }, + [92] = { 24.1, 19.3, 139, 2700 }, + [93] = { 53.4, 47.5, 361, 2700 }, + [94] = { 58.5, 90.7, 490, 2700 }, + [95] = { 57.2, 89.5, 490, 2700 }, + [96] = { 56.2, 88.8, 490, 2700 }, + [97] = { 44.7, 87.7, 490, 2700 }, + [98] = { 50, 87.5, 490, 2700 }, + [99] = { 45, 86.2, 490, 2700 }, + [100] = { 43.4, 86.2, 490, 2700 }, + [101] = { 44.9, 85.7, 490, 2700 }, + [102] = { 61.1, 85.6, 490, 2700 }, + [103] = { 61.3, 84.6, 490, 2700 }, + [104] = { 39.7, 84.6, 490, 2700 }, + [105] = { 36.8, 82.8, 490, 2700 }, + [106] = { 31.5, 81.3, 490, 2700 }, + [107] = { 64, 81.1, 490, 2700 }, + [108] = { 69.5, 80.5, 490, 2700 }, + [109] = { 64.8, 80.3, 490, 2700 }, + [110] = { 32.7, 80, 490, 2700 }, + [111] = { 68.3, 79.9, 490, 2700 }, + [112] = { 72.3, 71.3, 490, 2700 }, + [113] = { 74.1, 70.1, 490, 2700 }, + [114] = { 23, 67.9, 490, 2700 }, + [115] = { 24, 67.7, 490, 2700 }, + [116] = { 76.8, 66.9, 490, 2700 }, + [117] = { 75.6, 66.9, 490, 2700 }, + [118] = { 23.3, 66.9, 490, 2700 }, + [119] = { 22.1, 66.6, 490, 2700 }, + [120] = { 22.7, 66.1, 490, 2700 }, + [121] = { 22.2, 61.9, 490, 2700 }, + [122] = { 23, 60, 490, 2700 }, + [123] = { 77.1, 59.9, 490, 2700 }, + [124] = { 24.1, 57.3, 490, 2700 }, + [125] = { 53.5, 55.9, 490, 2700 }, + [126] = { 53.5, 54.9, 490, 2700 }, + [127] = { 54.5, 53.9, 490, 2700 }, + [128] = { 48.5, 53.6, 490, 2700 }, + [129] = { 47.5, 53.6, 490, 2700 }, + [130] = { 6.7, 51.8, 490, 2700 }, + [131] = { 53.6, 50.6, 490, 2700 }, + [132] = { 22.8, 49.8, 490, 2700 }, + [133] = { 51, 49.7, 490, 2700 }, + [134] = { 50.7, 48.8, 490, 2700 }, + [135] = { 45.4, 48.7, 490, 2700 }, + [136] = { 52.6, 47.9, 490, 2700 }, + [137] = { 54.8, 46.4, 490, 2700 }, + [138] = { 46.5, 45.5, 490, 2700 }, + [139] = { 46.8, 45.1, 490, 2700 }, + [140] = { 48, 44.8, 490, 2700 }, + [141] = { 52.6, 44.7, 490, 2700 }, + [142] = { 53.1, 44.7, 490, 2700 }, + [143] = { 50.5, 44.4, 490, 2700 }, + [144] = { 50.8, 43.7, 490, 2700 }, + [145] = { 23.3, 41.4, 490, 2700 }, + [146] = { 77.2, 40.3, 490, 2700 }, + [147] = { 78.6, 40, 490, 2700 }, + [148] = { 23.8, 39.2, 490, 2700 }, + [149] = { 24.4, 38.3, 490, 2700 }, + [150] = { 75.5, 33.2, 490, 2700 }, + [151] = { 25, 32.6, 490, 2700 }, + [152] = { 26.8, 29.6, 490, 2700 }, + [153] = { 66.2, 20.9, 490, 2700 }, + [154] = { 69.4, 19.5, 490, 2700 }, + [155] = { 31.3, 19.1, 490, 2700 }, + [156] = { 37.4, 17.4, 490, 2700 }, + [157] = { 36.8, 17, 490, 2700 }, + [158] = { 36.6, 16.9, 490, 2700 }, + [159] = { 39.2, 15, 490, 2700 }, + [160] = { 62.1, 14.6, 490, 2700 }, + [161] = { 61.8, 14.6, 490, 2700 }, + [162] = { 57.2, 12.6, 490, 2700 }, + [163] = { 50.5, 11.8, 490, 2700 }, + [164] = { 60.7, 77.8, 616, 2700 }, + [165] = { 80.7, 74.5, 616, 2700 }, + [166] = { 74.9, 71.3, 616, 2700 }, + [167] = { 30.9, 69, 616, 2700 }, + [168] = { 33, 68.5, 616, 2700 }, + [169] = { 62.6, 67.8, 616, 2700 }, + [170] = { 42.9, 64.1, 616, 2700 }, + [171] = { 54.8, 59.2, 616, 2700 }, + [172] = { 49.9, 57.4, 616, 2700 }, + [173] = { 42.6, 55.9, 616, 2700 }, + [174] = { 29, 55.5, 616, 2700 }, + [175] = { 14, 44.8, 616, 2700 }, + [176] = { 67.9, 44.2, 616, 2700 }, + [177] = { 10.8, 38, 616, 2700 }, + [178] = { 70.3, 27.1, 616, 2700 }, + [179] = { 75.7, 19.6, 616, 2700 }, + [180] = { 47.2, 84.6, 618, 2700 }, + [181] = { 56.8, 69.7, 618, 2700 }, + [182] = { 63.8, 66.6, 618, 2700 }, + [183] = { 61, 65.3, 618, 2700 }, + [184] = { 60.9, 65.1, 618, 2700 }, + [185] = { 65.2, 64.2, 618, 2700 }, + [186] = { 58.7, 59.5, 618, 2700 }, + [187] = { 55.9, 54.6, 618, 2700 }, + [188] = { 60.7, 53.9, 618, 2700 }, + [189] = { 60.8, 53.7, 618, 2700 }, + [190] = { 68.9, 51.1, 618, 2700 }, + [191] = { 60.2, 47.8, 618, 2700 }, + [192] = { 62.1, 47.3, 618, 2700 }, + [193] = { 42.8, 47.3, 618, 2700 }, + [194] = { 62.2, 47.2, 618, 2700 }, + [195] = { 29.5, 47, 618, 2700 }, + [196] = { 51.7, 46.9, 618, 2700 }, + [197] = { 29.4, 46.8, 618, 2700 }, + [198] = { 51.8, 46.8, 618, 2700 }, + [199] = { 29.3, 46.8, 618, 2700 }, + [200] = { 52.2, 46.6, 618, 2700 }, + [201] = { 31.4, 46.5, 618, 2700 }, + [202] = { 46.4, 46.3, 618, 2700 }, + [203] = { 44.5, 46.2, 618, 2700 }, + [204] = { 44.6, 46.2, 618, 2700 }, + [205] = { 46.3, 46.2, 618, 2700 }, + [206] = { 67, 45.8, 618, 2700 }, + [207] = { 67.2, 45.8, 618, 2700 }, + [208] = { 38.4, 45.7, 618, 2700 }, + [209] = { 38.7, 45.3, 618, 2700 }, + [210] = { 31.7, 45.2, 618, 2700 }, + [211] = { 54.1, 45.1, 618, 2700 }, + [212] = { 35.9, 45.1, 618, 2700 }, + [213] = { 48, 44.7, 618, 2700 }, + [214] = { 47.7, 44.6, 618, 2700 }, + [215] = { 40.1, 44.5, 618, 2700 }, + [216] = { 48.1, 43.3, 618, 2700 }, + [217] = { 45, 43.1, 618, 2700 }, + [218] = { 58.1, 42.7, 618, 2700 }, + [219] = { 67.7, 40.5, 618, 2700 }, + [220] = { 40.8, 39.2, 618, 2700 }, + [221] = { 67.4, 38.5, 618, 2700 }, + [222] = { 51.8, 37.9, 618, 2700 }, + [223] = { 69.7, 37.6, 618, 2700 }, + [224] = { 69.9, 36.4, 618, 2700 }, + [225] = { 37.7, 36.1, 618, 2700 }, + [226] = { 69.7, 35.7, 618, 2700 }, + [227] = { 30.4, 35.7, 618, 2700 }, + [228] = { 31.1, 35.5, 618, 2700 }, + [229] = { 48.5, 35.5, 618, 2700 }, + [230] = { 30.4, 35.5, 618, 2700 }, + [231] = { 31.8, 35.4, 618, 2700 }, + [232] = { 30.5, 35.2, 618, 2700 }, + [233] = { 47.7, 35, 618, 2700 }, + [234] = { 42.5, 34.9, 618, 2700 }, + [235] = { 39.8, 34.9, 618, 2700 }, + [236] = { 41.9, 34.8, 618, 2700 }, + [237] = { 47.9, 34.8, 618, 2700 }, + [238] = { 39.1, 34.8, 618, 2700 }, + [239] = { 42.6, 34.7, 618, 2700 }, + [240] = { 57.1, 34.1, 618, 2700 }, + [241] = { 63.3, 33.5, 618, 2700 }, + [242] = { 56, 33.5, 618, 2700 }, + [243] = { 69, 33.1, 618, 2700 }, + [244] = { 55.7, 33, 618, 2700 }, + [245] = { 63.1, 31.9, 618, 2700 }, + [246] = { 68.4, 30.2, 618, 2700 }, + [247] = { 57, 27.4, 618, 2700 }, + [248] = { 52.9, 26.9, 618, 2700 }, + [249] = { 51.8, 26.3, 618, 2700 }, + [250] = { 51.8, 26.2, 618, 2700 }, + [251] = { 56, 25.5, 618, 2700 }, + [252] = { 56, 25.2, 618, 2700 }, + [253] = { 63.6, 24.8, 618, 2700 }, + [254] = { 64.6, 22.3, 618, 2700 }, + [255] = { 50.8, 21.9, 618, 2700 }, + [256] = { 66.9, 20.7, 618, 2700 }, + [257] = { 48.8, 18.7, 618, 2700 }, + [258] = { 49.2, 18.4, 618, 2700 }, + [259] = { 49.1, 17, 618, 2700 }, + [260] = { 57.2, 16.8, 618, 2700 }, + [261] = { 57.1, 16.3, 618, 2700 }, + [262] = { 57, 12.6, 618, 2700 }, + [263] = { 47.7, 8.1, 618, 2700 }, + [264] = { 39.8, 91.6, 1377, 2700 }, + [265] = { 65.7, 87.6, 1377, 2700 }, + [266] = { 16.5, 78.1, 1377, 2700 }, + [267] = { 81.9, 72.4, 1377, 2700 }, + [268] = { 83, 72.3, 1377, 2700 }, + [269] = { 82.3, 71.4, 1377, 2700 }, + [270] = { 81, 71.1, 1377, 2700 }, + [271] = { 81.7, 70.5, 1377, 2700 }, + [272] = { 81.1, 66.1, 1377, 2700 }, + [273] = { 17.5, 56.6, 1377, 2700 }, + [274] = { 64.7, 55.3, 1377, 2700 }, + [275] = { 82.3, 44.4, 1377, 2700 }, + [276] = { 82.9, 42, 1377, 2700 }, + [277] = { 83.5, 41, 1377, 2700 }, + [278] = { 84.1, 35, 1377, 2700 }, + [279] = { 24.9, 25.4, 1377, 2700 }, + [280] = { 61.9, 11.1, 1377, 2700 }, + [281] = { 67.2, 2.7, 3478, 2700 }, + [282] = { 36.8, 70.1, 4012, 2700 }, + [283] = { 47.7, 64, 4012, 2700 }, + [284] = { 9.2, 61.1, 4012, 2700 }, + [285] = { 41.7, 46.1, 4012, 2700 }, + [286] = { 39.5, 33.9, 4012, 2700 }, + [287] = { 37.3, 28.5, 4012, 2700 }, + [288] = { 9.4, 19, 4012, 2700 }, + [289] = { 15.6, 2, 4012, 2700 }, + [290] = { 53.5, 69.9, 5121, 2700 }, + [291] = { 43, 66.6, 5121, 2700 }, + [292] = { 55.4, 62.6, 5121, 2700 }, + [293] = { 57.4, 54.6, 5121, 2700 }, + [294] = { 49.8, 50.9, 5121, 2700 }, + [295] = { 55.8, 37.4, 5121, 2700 }, + [296] = { 63.3, 34.2, 5121, 2700 }, + [297] = { 62.7, 25.7, 5121, 2700 }, + [298] = { 68.5, 80, 5225, 2700 }, + [299] = { 91.1, 85.7, 5581, 2700 }, + [300] = { 91.2, 84.4, 5581, 2700 }, + [301] = { 92.8, 54.6, 5581, 2700 }, + }, + }, + [176587] = { + ["coords"] = { + [1] = { 68.6, 79.6, 28, 2700 }, + [2] = { 69.6, 78.3, 28, 2700 }, + [3] = { 68.7, 77.6, 28, 2700 }, + [4] = { 68.6, 77.4, 28, 2700 }, + [5] = { 68.7, 75.4, 28, 2700 }, + [6] = { 68.5, 75.2, 28, 2700 }, + [7] = { 68.8, 75.1, 28, 2700 }, + [8] = { 68.5, 75, 28, 2700 }, + [9] = { 68.9, 74.3, 28, 2700 }, + [10] = { 53, 67.3, 28, 2700 }, + [11] = { 53.4, 67.2, 28, 2700 }, + [12] = { 54.7, 66.8, 28, 2700 }, + [13] = { 51.8, 66.3, 28, 2700 }, + [14] = { 52.4, 66.1, 28, 2700 }, + [15] = { 54.2, 66.1, 28, 2700 }, + [16] = { 52.8, 64.9, 28, 2700 }, + [17] = { 52.9, 64.6, 28, 2700 }, + [18] = { 81.1, 62.1, 28, 2700 }, + [19] = { 62.6, 61.1, 28, 2700 }, + [20] = { 59.3, 61, 28, 2700 }, + [21] = { 59.7, 60.3, 28, 2700 }, + [22] = { 62.9, 60.3, 28, 2700 }, + [23] = { 61.9, 59, 28, 2700 }, + [24] = { 36.4, 58.5, 28, 2700 }, + [25] = { 36.8, 58.2, 28, 2700 }, + [26] = { 61.3, 58.1, 28, 2700 }, + [27] = { 64.5, 58.1, 28, 2700 }, + [28] = { 61.7, 57.8, 28, 2700 }, + [29] = { 62.4, 57.7, 28, 2700 }, + [30] = { 61.8, 57.5, 28, 2700 }, + [31] = { 38.8, 56.8, 28, 2700 }, + [32] = { 36.2, 56.4, 28, 2700 }, + [33] = { 76.3, 55.6, 28, 2700 }, + [34] = { 45.9, 55.5, 28, 2700 }, + [35] = { 37.3, 55.4, 28, 2700 }, + [36] = { 67.1, 55.3, 28, 2700 }, + [37] = { 66.6, 55.1, 28, 2700 }, + [38] = { 64, 55.1, 28, 2700 }, + [39] = { 36.6, 55, 28, 2700 }, + [40] = { 45.2, 54.9, 28, 2700 }, + [41] = { 46, 54.4, 28, 2700 }, + [42] = { 38.7, 54.4, 28, 2700 }, + [43] = { 46.3, 53.7, 28, 2700 }, + [44] = { 46, 53.6, 28, 2700 }, + [45] = { 47.3, 53.5, 28, 2700 }, + [46] = { 47.4, 53.5, 28, 2700 }, + [47] = { 60.2, 52.9, 28, 2700 }, + [48] = { 44.7, 52.8, 28, 2700 }, + [49] = { 44.9, 52.2, 28, 2700 }, + [50] = { 56.8, 52.1, 28, 2700 }, + [51] = { 50.8, 51.4, 28, 2700 }, + [52] = { 46.7, 51.3, 28, 2700 }, + [53] = { 46.2, 50.2, 28, 2700 }, + [54] = { 55.1, 49.6, 28, 2700 }, + [55] = { 53.5, 49.4, 28, 2700 }, + [56] = { 65.8, 46.9, 28, 2700 }, + [57] = { 64.1, 46.9, 28, 2700 }, + [58] = { 67.6, 45.5, 28, 2700 }, + [59] = { 68, 45.3, 28, 2700 }, + [60] = { 47.6, 44.6, 28, 2700 }, + [61] = { 49.4, 44.5, 28, 2700 }, + [62] = { 47.2, 44.3, 28, 2700 }, + [63] = { 49.6, 44.2, 28, 2700 }, + [64] = { 75.3, 43.9, 28, 2700 }, + [65] = { 75.1, 43.4, 28, 2700 }, + [66] = { 76.4, 43.2, 28, 2700 }, + [67] = { 75.2, 43.1, 28, 2700 }, + [68] = { 72.6, 43, 28, 2700 }, + [69] = { 66.4, 42.3, 28, 2700 }, + [70] = { 73, 41.9, 28, 2700 }, + [71] = { 45.3, 39.8, 28, 2700 }, + [72] = { 46.7, 36.1, 28, 2700 }, + [73] = { 43.6, 34.8, 28, 2700 }, + [74] = { 47.6, 31, 28, 2700 }, + [75] = { 47.7, 30.3, 28, 2700 }, + [76] = { 71.4, 23.1, 28, 2700 }, + [77] = { 62.7, 86.3, 139, 2700 }, + [78] = { 22.8, 85.7, 139, 2700 }, + [79] = { 63, 85.6, 139, 2700 }, + [80] = { 62.5, 85.4, 139, 2700 }, + [81] = { 27.1, 84.1, 139, 2700 }, + [82] = { 32.2, 83.6, 139, 2700 }, + [83] = { 67.7, 81.9, 139, 2700 }, + [84] = { 45.2, 80.9, 139, 2700 }, + [85] = { 70.4, 80.9, 139, 2700 }, + [86] = { 70.1, 80.7, 139, 2700 }, + [87] = { 67.7, 79.9, 139, 2700 }, + [88] = { 55.5, 79.6, 139, 2700 }, + [89] = { 21.5, 79.6, 139, 2700 }, + [90] = { 51.8, 79.5, 139, 2700 }, + [91] = { 53, 79.3, 139, 2700 }, + [92] = { 17.5, 78.5, 139, 2700 }, + [93] = { 52.6, 78.1, 139, 2700 }, + [94] = { 51.3, 77.6, 139, 2700 }, + [95] = { 75, 76.4, 139, 2700 }, + [96] = { 42.7, 76, 139, 2700 }, + [97] = { 60.9, 74.3, 139, 2700 }, + [98] = { 34.7, 74.2, 139, 2700 }, + [99] = { 32.4, 73.9, 139, 2700 }, + [100] = { 27.8, 73.9, 139, 2700 }, + [101] = { 42.6, 72.6, 139, 2700 }, + [102] = { 73.7, 71.4, 139, 2700 }, + [103] = { 48.3, 70.8, 139, 2700 }, + [104] = { 37.9, 70.3, 139, 2700 }, + [105] = { 20.7, 70, 139, 2700 }, + [106] = { 64.9, 69, 139, 2700 }, + [107] = { 29.2, 68.9, 139, 2700 }, + [108] = { 31.8, 68.4, 139, 2700 }, + [109] = { 31.4, 68.3, 139, 2700 }, + [110] = { 64.2, 68, 139, 2700 }, + [111] = { 76.6, 67.7, 139, 2700 }, + [112] = { 37.9, 67.5, 139, 2700 }, + [113] = { 44.4, 67.3, 139, 2700 }, + [114] = { 46.2, 67, 139, 2700 }, + [115] = { 16.4, 65.5, 139, 2700 }, + [116] = { 16.2, 65, 139, 2700 }, + [117] = { 17.6, 64.8, 139, 2700 }, + [118] = { 16.4, 64.6, 139, 2700 }, + [119] = { 13.4, 64.5, 139, 2700 }, + [120] = { 17.8, 64.2, 139, 2700 }, + [121] = { 26.8, 63.7, 139, 2700 }, + [122] = { 13.8, 63.4, 139, 2700 }, + [123] = { 55.4, 63.3, 139, 2700 }, + [124] = { 64.7, 61.7, 139, 2700 }, + [125] = { 64.5, 61.4, 139, 2700 }, + [126] = { 50.2, 61.1, 139, 2700 }, + [127] = { 49.1, 60.9, 139, 2700 }, + [128] = { 79.5, 60.5, 139, 2700 }, + [129] = { 49.1, 60.1, 139, 2700 }, + [130] = { 59.4, 59.7, 139, 2700 }, + [131] = { 49.7, 59.1, 139, 2700 }, + [132] = { 54.2, 59, 139, 2700 }, + [133] = { 35.4, 58.7, 139, 2700 }, + [134] = { 59.5, 58.7, 139, 2700 }, + [135] = { 35.6, 58.5, 139, 2700 }, + [136] = { 35.8, 58.1, 139, 2700 }, + [137] = { 72.5, 56.1, 139, 2700 }, + [138] = { 38, 54.9, 139, 2700 }, + [139] = { 37.3, 54.3, 139, 2700 }, + [140] = { 49.4, 54.1, 139, 2700 }, + [141] = { 57.7, 53.8, 139, 2700 }, + [142] = { 38.6, 53.7, 139, 2700 }, + [143] = { 37.5, 52.5, 139, 2700 }, + [144] = { 40.5, 52.1, 139, 2700 }, + [145] = { 53.8, 50.6, 139, 2700 }, + [146] = { 61.9, 50.5, 139, 2700 }, + [147] = { 41.6, 50.5, 139, 2700 }, + [148] = { 41.7, 49.8, 139, 2700 }, + [149] = { 59.6, 48.5, 139, 2700 }, + [150] = { 56.7, 46.1, 139, 2700 }, + [151] = { 70.3, 45.5, 139, 2700 }, + [152] = { 49.5, 44.9, 139, 2700 }, + [153] = { 83.8, 44.8, 139, 2700 }, + [154] = { 87, 44, 139, 2700 }, + [155] = { 53.7, 43.6, 139, 2700 }, + [156] = { 82.3, 43.4, 139, 2700 }, + [157] = { 53.4, 43.1, 139, 2700 }, + [158] = { 49.2, 43.1, 139, 2700 }, + [159] = { 12.1, 42.4, 139, 2700 }, + [160] = { 82.3, 42.2, 139, 2700 }, + [161] = { 69.3, 41.8, 139, 2700 }, + [162] = { 17.8, 41.7, 139, 2700 }, + [163] = { 85.6, 41.5, 139, 2700 }, + [164] = { 64.6, 41.5, 139, 2700 }, + [165] = { 85.3, 41.2, 139, 2700 }, + [166] = { 31.5, 40.6, 139, 2700 }, + [167] = { 82.3, 40.6, 139, 2700 }, + [168] = { 52.6, 39.9, 139, 2700 }, + [169] = { 45.8, 39, 139, 2700 }, + [170] = { 48.7, 39, 139, 2700 }, + [171] = { 62.4, 38.8, 139, 2700 }, + [172] = { 70.9, 38.5, 139, 2700 }, + [173] = { 84.6, 38.4, 139, 2700 }, + [174] = { 38.4, 38.4, 139, 2700 }, + [175] = { 70.6, 38.2, 139, 2700 }, + [176] = { 52.8, 38, 139, 2700 }, + [177] = { 35.2, 37.6, 139, 2700 }, + [178] = { 25.7, 37.5, 139, 2700 }, + [179] = { 62.4, 37.4, 139, 2700 }, + [180] = { 25.6, 37.2, 139, 2700 }, + [181] = { 25.4, 37.2, 139, 2700 }, + [182] = { 65.8, 36.8, 139, 2700 }, + [183] = { 21.5, 36.5, 139, 2700 }, + [184] = { 21.3, 36.2, 139, 2700 }, + [185] = { 41.3, 35.3, 139, 2700 }, + [186] = { 41.7, 35.2, 139, 2700 }, + [187] = { 41.6, 35.2, 139, 2700 }, + [188] = { 67.3, 33.7, 139, 2700 }, + [189] = { 54.7, 33.4, 139, 2700 }, + [190] = { 16.4, 32.4, 139, 2700 }, + [191] = { 72.6, 31.9, 139, 2700 }, + [192] = { 74.3, 31.7, 139, 2700 }, + [193] = { 63.2, 31.3, 139, 2700 }, + [194] = { 48.3, 30.1, 139, 2700 }, + [195] = { 52, 29.9, 139, 2700 }, + [196] = { 66.3, 27.9, 139, 2700 }, + [197] = { 35.4, 27.8, 139, 2700 }, + [198] = { 66.3, 27.1, 139, 2700 }, + [199] = { 22.6, 26.6, 139, 2700 }, + [200] = { 41.3, 26.4, 139, 2700 }, + [201] = { 46.6, 26.1, 139, 2700 }, + [202] = { 28, 25.4, 139, 2700 }, + [203] = { 38.2, 25.3, 139, 2700 }, + [204] = { 55.5, 25.1, 139, 2700 }, + [205] = { 55.4, 24.4, 139, 2700 }, + [206] = { 55.1, 24.3, 139, 2700 }, + [207] = { 24.4, 23.9, 139, 2700 }, + [208] = { 36.4, 23.8, 139, 2700 }, + [209] = { 61.5, 23.5, 139, 2700 }, + [210] = { 57.4, 21.2, 139, 2700 }, + [211] = { 57.5, 19.6, 139, 2700 }, + [212] = { 69.2, 19.1, 139, 2700 }, + [213] = { 55.3, 84.8, 148, 2700 }, + [214] = { 57.3, 41.9, 148, 2700 }, + [215] = { 54.4, 26.2, 331, 2700 }, + [216] = { 40.3, 19.7, 331, 2700 }, + [217] = { 46.5, 90.4, 361, 2700 }, + [218] = { 53.6, 90.4, 361, 2700 }, + [219] = { 55.4, 88.4, 361, 2700 }, + [220] = { 48.6, 86.5, 361, 2700 }, + [221] = { 42.7, 86.2, 361, 2700 }, + [222] = { 39.4, 83.9, 361, 2700 }, + [223] = { 56.9, 83.3, 361, 2700 }, + [224] = { 53.5, 83.1, 361, 2700 }, + [225] = { 44.3, 82.7, 361, 2700 }, + [226] = { 53.7, 82.2, 361, 2700 }, + [227] = { 49.6, 80.4, 361, 2700 }, + [228] = { 40.6, 78.5, 361, 2700 }, + [229] = { 46.5, 76.5, 361, 2700 }, + [230] = { 39.2, 73.2, 361, 2700 }, + [231] = { 40.8, 72.9, 361, 2700 }, + [232] = { 44.8, 70.5, 361, 2700 }, + [233] = { 44.4, 69.6, 361, 2700 }, + [234] = { 40, 69.5, 361, 2700 }, + [235] = { 38.3, 68.9, 361, 2700 }, + [236] = { 41.4, 68, 361, 2700 }, + [237] = { 40.4, 65.3, 361, 2700 }, + [238] = { 42.5, 58.1, 361, 2700 }, + [239] = { 38.5, 56.8, 361, 2700 }, + [240] = { 42.2, 49.4, 361, 2700 }, + [241] = { 44.4, 44.8, 361, 2700 }, + [242] = { 43.3, 42.5, 361, 2700 }, + [243] = { 44.5, 41.8, 361, 2700 }, + [244] = { 41.6, 41.5, 361, 2700 }, + [245] = { 44.6, 41.2, 361, 2700 }, + [246] = { 40.5, 38.9, 361, 2700 }, + [247] = { 47.4, 38.4, 361, 2700 }, + [248] = { 41.2, 37.6, 361, 2700 }, + [249] = { 40.8, 37.1, 361, 2700 }, + [250] = { 50.4, 32.8, 361, 2700 }, + [251] = { 48.6, 28.8, 361, 2700 }, + [252] = { 56.8, 27, 361, 2700 }, + [253] = { 61.5, 25.9, 361, 2700 }, + [254] = { 61.8, 25.6, 361, 2700 }, + [255] = { 61.7, 25.6, 361, 2700 }, + [256] = { 61.9, 25.5, 361, 2700 }, + [257] = { 48.7, 24.8, 361, 2700 }, + [258] = { 56.8, 24.1, 361, 2700 }, + [259] = { 56.5, 22.7, 361, 2700 }, + [260] = { 47.7, 22.7, 361, 2700 }, + [261] = { 43.8, 21.6, 361, 2700 }, + [262] = { 55, 21.3, 361, 2700 }, + [263] = { 56, 21.2, 361, 2700 }, + [264] = { 53, 18.8, 361, 2700 }, + [265] = { 56.8, 18.6, 361, 2700 }, + [266] = { 51.7, 18.5, 361, 2700 }, + [267] = { 42.7, 16.4, 361, 2700 }, + [268] = { 53.7, 14.2, 361, 2700 }, + [269] = { 55.7, 11.8, 361, 2700 }, + [270] = { 51.8, 11.7, 361, 2700 }, + [271] = { 60.2, 7.8, 361, 2700 }, + [272] = { 4.1, 96.8, 616, 2700 }, + [273] = { 0.1, 21.7, 616, 2700 }, + [274] = { 5.6, 11.6, 616, 2700 }, + [275] = { 2.2, 4.4, 616, 2700 }, + [276] = { 17.1, 1.2, 616, 2700 }, + [277] = { 58.9, 84.3, 2017, 99999999 }, + [278] = { 74.8, 69.9, 2017, 99999999 }, + [279] = { 65, 61.2, 2017, 99999999 }, + [280] = { 53.4, 54.5, 2017, 99999999 }, + [281] = { 79.5, 41.9, 2017, 99999999 }, + [282] = { 90.9, 34, 2017, 99999999 }, + [283] = { 75.9, 25, 2017, 99999999 }, + [284] = { 68.2, 9.2, 2017, 99999999 }, + [285] = { 17.8, 71.8, 4012, 2700 }, + [286] = { 18.1, 71, 4012, 2700 }, + [287] = { 17.5, 70.7, 4012, 2700 }, + [288] = { 23.9, 66.5, 4012, 2700 }, + [289] = { 27.2, 65.2, 4012, 2700 }, + [290] = { 26.8, 65, 4012, 2700 }, + [291] = { 23.9, 64.1, 4012, 2700 }, + [292] = { 9, 63.7, 4012, 2700 }, + [293] = { 4.4, 63.5, 4012, 2700 }, + [294] = { 5.9, 63.3, 4012, 2700 }, + [295] = { 5.4, 61.9, 4012, 2700 }, + [296] = { 3.9, 61.2, 4012, 2700 }, + [297] = { 32.8, 59.7, 4012, 2700 }, + [298] = { 15.5, 57.1, 4012, 2700 }, + [299] = { 31.2, 53.6, 4012, 2700 }, + [300] = { 0.2, 52.9, 4012, 2700 }, + [301] = { 20.4, 50.7, 4012, 2700 }, + [302] = { 19.7, 49.4, 4012, 2700 }, + [303] = { 34.8, 49.1, 4012, 2700 }, + [304] = { 8.8, 43.6, 4012, 2700 }, + [305] = { 20.3, 41.8, 4012, 2700 }, + [306] = { 20, 41.4, 4012, 2700 }, + [307] = { 2.5, 41, 4012, 2700 }, + [308] = { 1.1, 40.7, 4012, 2700 }, + [309] = { 38.4, 40.2, 4012, 2700 }, + [310] = { 1.1, 39.8, 4012, 2700 }, + [311] = { 13.8, 39.3, 4012, 2700 }, + [312] = { 1.9, 38.5, 4012, 2700 }, + [313] = { 7.4, 38.5, 4012, 2700 }, + [314] = { 13.9, 38, 4012, 2700 }, + [315] = { 29.8, 34.8, 4012, 2700 }, + [316] = { 1.5, 32.5, 4012, 2700 }, + [317] = { 11.6, 32, 4012, 2700 }, + [318] = { 6.9, 28.2, 4012, 2700 }, + [319] = { 16.8, 28.1, 4012, 2700 }, + [320] = { 14, 25.5, 4012, 2700 }, + [321] = { 10.5, 22.6, 4012, 2700 }, + [322] = { 27.2, 21.9, 4012, 2700 }, + [323] = { 1.6, 21.1, 4012, 2700 }, + [324] = { 43.7, 21.1, 4012, 2700 }, + [325] = { 47.6, 20.1, 4012, 2700 }, + [326] = { 6.8, 19.5, 4012, 2700 }, + [327] = { 41.9, 19.3, 4012, 2700 }, + [328] = { 6.4, 19, 4012, 2700 }, + [329] = { 1.2, 18.9, 4012, 2700 }, + [330] = { 41.8, 17.8, 4012, 2700 }, + [331] = { 25.9, 17.3, 4012, 2700 }, + [332] = { 45.8, 17, 4012, 2700 }, + [333] = { 20.1, 17, 4012, 2700 }, + [334] = { 45.6, 16.6, 4012, 2700 }, + [335] = { 41.8, 15.9, 4012, 2700 }, + [336] = { 5.4, 15, 4012, 2700 }, + [337] = { 0.6, 13.9, 4012, 2700 }, + [338] = { 17.4, 13.7, 4012, 2700 }, + [339] = { 27.8, 13.3, 4012, 2700 }, + [340] = { 44.6, 13.2, 4012, 2700 }, + [341] = { 27.5, 13, 4012, 2700 }, + [342] = { 5.6, 12.7, 4012, 2700 }, + [343] = { 17.4, 12, 4012, 2700 }, + [344] = { 21.6, 11.2, 4012, 2700 }, + [345] = { 23.5, 7.5, 4012, 2700 }, + [346] = { 8, 7.1, 4012, 2700 }, + [347] = { 29.9, 5.3, 4012, 2700 }, + [348] = { 32, 5, 4012, 2700 }, + [349] = { 18.5, 4.6, 4012, 2700 }, + [350] = { 0.1, 3, 4012, 2700 }, + [351] = { 4.7, 2.8, 4012, 2700 }, + [352] = { 22.2, 0.3, 4012, 2700 }, + [353] = { 90.7, 100, 5225, 2700 }, + [354] = { 90.5, 100, 5225, 2700 }, + [355] = { 58.9, 96.5, 5225, 2700 }, + [356] = { 98.9, 93.6, 5225, 2700 }, + [357] = { 82.7, 90.7, 5225, 2700 }, + [358] = { 66.7, 89.2, 5225, 2700 }, + [359] = { 90.2, 89, 5225, 2700 }, + [360] = { 96.9, 88.5, 5225, 2700 }, + [361] = { 73.5, 87.7, 5225, 2700 }, + [362] = { 86.3, 87.6, 5225, 2700 }, + [363] = { 69, 85.9, 5225, 2700 }, + [364] = { 84, 85.7, 5225, 2700 }, + }, + }, + [176588] = { + ["coords"] = { + [1] = { 69.4, 13.1, 361, 2700 }, + [2] = { 69, 11.7, 361, 2700 }, + [3] = { 60.7, 73.7, 618, 2700 }, + [4] = { 60.8, 73.3, 618, 2700 }, + [5] = { 60.6, 73.2, 618, 2700 }, + [6] = { 61.4, 73.1, 618, 2700 }, + [7] = { 61.6, 73, 618, 2700 }, + [8] = { 60.7, 72.9, 618, 2700 }, + [9] = { 60, 72.8, 618, 2700 }, + [10] = { 60.1, 72.6, 618, 2700 }, + [11] = { 60, 72.5, 618, 2700 }, + [12] = { 64.8, 72.4, 618, 2700 }, + [13] = { 59.4, 72.2, 618, 2700 }, + [14] = { 61.4, 72.2, 618, 2700 }, + [15] = { 59.4, 71.9, 618, 2700 }, + [16] = { 62.1, 71.2, 618, 2700 }, + [17] = { 61, 71.1, 618, 2700 }, + [18] = { 62.3, 69.3, 618, 2700 }, + [19] = { 64.3, 68.9, 618, 2700 }, + [20] = { 64.1, 68.7, 618, 2700 }, + [21] = { 64.3, 68.5, 618, 2700 }, + [22] = { 63.4, 68.5, 618, 2700 }, + [23] = { 60.9, 68.3, 618, 2700 }, + [24] = { 63.2, 68.3, 618, 2700 }, + [25] = { 61.6, 68.2, 618, 2700 }, + [26] = { 63.9, 67.2, 618, 2700 }, + [27] = { 67, 67.1, 618, 2700 }, + [28] = { 60.2, 66.8, 618, 2700 }, + [29] = { 61.6, 65.4, 618, 2700 }, + [30] = { 61.5, 65.3, 618, 2700 }, + [31] = { 61.5, 65.1, 618, 2700 }, + [32] = { 61.5, 63.2, 618, 2700 }, + [33] = { 61.4, 63, 618, 2700 }, + [34] = { 59.7, 62.5, 618, 2700 }, + [35] = { 59.9, 62.4, 618, 2700 }, + [36] = { 59.8, 62.3, 618, 2700 }, + [37] = { 60.5, 62.3, 618, 2700 }, + [38] = { 60.5, 62.2, 618, 2700 }, + [39] = { 60.4, 62.2, 618, 2700 }, + [40] = { 62.8, 61.9, 618, 2700 }, + [41] = { 62.8, 61.8, 618, 2700 }, + [42] = { 62.4, 61.6, 618, 2700 }, + [43] = { 62.3, 61.5, 618, 2700 }, + [44] = { 62.4, 61.4, 618, 2700 }, + [45] = { 59, 61.4, 618, 2700 }, + [46] = { 59.1, 61.3, 618, 2700 }, + [47] = { 61, 61.3, 618, 2700 }, + [48] = { 61, 61, 618, 2700 }, + [49] = { 59.4, 58.7, 618, 2700 }, + [50] = { 61.8, 58.7, 618, 2700 }, + [51] = { 61.8, 58.5, 618, 2700 }, + [52] = { 59.7, 58.3, 618, 2700 }, + [53] = { 59.7, 58.2, 618, 2700 }, + [54] = { 59.9, 58.1, 618, 2700 }, + [55] = { 63.3, 57.4, 618, 2700 }, + [56] = { 60.3, 57.1, 618, 2700 }, + [57] = { 60.7, 56.1, 618, 2700 }, + [58] = { 61, 54.9, 618, 2700 }, + [59] = { 61, 54.8, 618, 2700 }, + [60] = { 66.4, 54.7, 618, 2700 }, + [61] = { 58, 54.6, 618, 2700 }, + [62] = { 58, 54.4, 618, 2700 }, + [63] = { 60.1, 54.3, 618, 2700 }, + [64] = { 60, 54.3, 618, 2700 }, + [65] = { 59.9, 53.5, 618, 2700 }, + [66] = { 57, 53.2, 618, 2700 }, + [67] = { 58.1, 53.1, 618, 2700 }, + [68] = { 58.4, 53.1, 618, 2700 }, + [69] = { 58.9, 53, 618, 2700 }, + [70] = { 58.8, 52.8, 618, 2700 }, + [71] = { 65, 51.7, 618, 2700 }, + [72] = { 56.2, 51.7, 618, 2700 }, + [73] = { 56.8, 51.5, 618, 2700 }, + [74] = { 64.7, 50.2, 618, 2700 }, + [75] = { 64.6, 50.1, 618, 2700 }, + [76] = { 56.7, 50, 618, 2700 }, + [77] = { 58.1, 49.8, 618, 2700 }, + [78] = { 58.4, 49, 618, 2700 }, + [79] = { 57.7, 49, 618, 2700 }, + [80] = { 56.2, 48.4, 618, 2700 }, + [81] = { 65.1, 48.4, 618, 2700 }, + [82] = { 65, 48, 618, 2700 }, + [83] = { 31.1, 47.8, 618, 2700 }, + [84] = { 65, 47.7, 618, 2700 }, + [85] = { 54.9, 47.2, 618, 2700 }, + [86] = { 30.7, 45, 618, 2700 }, + [87] = { 34.3, 44.9, 618, 2700 }, + [88] = { 55.4, 44.8, 618, 2700 }, + [89] = { 54.3, 44.4, 618, 2700 }, + [90] = { 55.1, 44.4, 618, 2700 }, + [91] = { 38.5, 44.4, 618, 2700 }, + [92] = { 54.7, 44.3, 618, 2700 }, + [93] = { 54.2, 44.1, 618, 2700 }, + [94] = { 56.5, 43.7, 618, 2700 }, + [95] = { 56.1, 43.6, 618, 2700 }, + [96] = { 41.1, 43.4, 618, 2700 }, + [97] = { 41.3, 43.3, 618, 2700 }, + [98] = { 50.2, 43.1, 618, 2700 }, + [99] = { 53.2, 42.6, 618, 2700 }, + [100] = { 43.3, 42.5, 618, 2700 }, + [101] = { 53, 42.5, 618, 2700 }, + [102] = { 50.8, 42.4, 618, 2700 }, + [103] = { 53.8, 42.1, 618, 2700 }, + [104] = { 53.7, 42, 618, 2700 }, + [105] = { 36, 41.9, 618, 2700 }, + [106] = { 50.4, 41.8, 618, 2700 }, + [107] = { 36.3, 41.6, 618, 2700 }, + [108] = { 35.9, 41.5, 618, 2700 }, + [109] = { 50.1, 41.2, 618, 2700 }, + [110] = { 56.9, 40.5, 618, 2700 }, + [111] = { 57, 40.2, 618, 2700 }, + [112] = { 29, 40.2, 618, 2700 }, + [113] = { 28.7, 40.2, 618, 2700 }, + [114] = { 63.9, 39.9, 618, 2700 }, + [115] = { 29.8, 39.6, 618, 2700 }, + [116] = { 29.8, 39.5, 618, 2700 }, + [117] = { 28.3, 39.1, 618, 2700 }, + [118] = { 64.2, 38.4, 618, 2700 }, + [119] = { 43.9, 38.4, 618, 2700 }, + [120] = { 44.7, 38.2, 618, 2700 }, + [121] = { 44.8, 38.1, 618, 2700 }, + [122] = { 64.8, 37.7, 618, 2700 }, + [123] = { 43.6, 37.6, 618, 2700 }, + [124] = { 43, 37.1, 618, 2700 }, + [125] = { 43.2, 37, 618, 2700 }, + [126] = { 43, 36.9, 618, 2700 }, + [127] = { 42.8, 36.9, 618, 2700 }, + [128] = { 43.3, 36.9, 618, 2700 }, + [129] = { 43.2, 36.8, 618, 2700 }, + [130] = { 42.9, 36.8, 618, 2700 }, + [131] = { 42.8, 36.8, 618, 2700 }, + [132] = { 47.1, 36.7, 618, 2700 }, + [133] = { 48, 36.4, 618, 2700 }, + [134] = { 47.9, 36.3, 618, 2700 }, + [135] = { 46.7, 36.2, 618, 2700 }, + [136] = { 47.3, 36.1, 618, 2700 }, + [137] = { 47.6, 35.4, 618, 2700 }, + [138] = { 58.2, 35, 618, 2700 }, + [139] = { 43, 34, 618, 2700 }, + [140] = { 65.8, 30.7, 618, 2700 }, + [141] = { 54.4, 30.4, 618, 2700 }, + [142] = { 54.5, 30.2, 618, 2700 }, + [143] = { 54.5, 30.1, 618, 2700 }, + [144] = { 54.4, 29.7, 618, 2700 }, + [145] = { 68.3, 27.3, 618, 2700 }, + [146] = { 60, 24.5, 618, 2700 }, + [147] = { 61.7, 23.6, 618, 2700 }, + [148] = { 67.2, 20.5, 618, 2700 }, + [149] = { 53.4, 18.7, 618, 2700 }, + [150] = { 59.5, 17.7, 618, 2700 }, + [151] = { 58.6, 13, 618, 2700 }, + [152] = { 49.4, 7.3, 618, 2700 }, + [153] = { 53.7, 86.3, 2597, 300 }, + [154] = { 55.1, 83.8, 2597, 300 }, + [155] = { 53.6, 81.6, 2597, 300 }, + [156] = { 53.1, 79.6, 2597, 300 }, + [157] = { 56.9, 79.3, 2597, 300 }, + [158] = { 55, 79.1, 2597, 300 }, + [159] = { 52.9, 77.2, 2597, 300 }, + [160] = { 49.5, 76.1, 2597, 300 }, + [161] = { 55.1, 76, 2597, 300 }, + [162] = { 54.4, 75, 2597, 300 }, + [163] = { 47.7, 73.3, 2597, 300 }, + [164] = { 53.9, 73.1, 2597, 300 }, + [165] = { 52.7, 72, 2597, 300 }, + [166] = { 50.2, 72, 2597, 300 }, + [167] = { 49.1, 70.4, 2597, 300 }, + [168] = { 52.2, 69.6, 2597, 300 }, + [169] = { 50.2, 68.6, 2597, 300 }, + [170] = { 49.6, 66.6, 2597, 300 }, + [171] = { 51.3, 66.1, 2597, 300 }, + [172] = { 48.8, 65.6, 2597, 300 }, + [173] = { 50.4, 62.2, 2597, 300 }, + [174] = { 51.9, 60.6, 2597, 300 }, + [175] = { 43.1, 59.1, 2597, 300 }, + [176] = { 44, 58.3, 2597, 300 }, + [177] = { 42.8, 55.6, 2597, 300 }, + [178] = { 44.5, 54.9, 2597, 300 }, + [179] = { 49.9, 54.6, 2597, 300 }, + [180] = { 51.7, 54.4, 2597, 300 }, + [181] = { 44.6, 54.1, 2597, 300 }, + [182] = { 48.4, 53.1, 2597, 300 }, + [183] = { 45.2, 52.4, 2597, 300 }, + [184] = { 43.3, 52.1, 2597, 300 }, + [185] = { 43.5, 51.6, 2597, 300 }, + [186] = { 50.2, 51.3, 2597, 300 }, + [187] = { 44.3, 51.1, 2597, 300 }, + [188] = { 48.9, 51, 2597, 300 }, + [189] = { 46.1, 50.7, 2597, 300 }, + [190] = { 50.9, 50.7, 2597, 300 }, + [191] = { 47.8, 49.6, 2597, 300 }, + [192] = { 50.9, 48.3, 2597, 300 }, + [193] = { 47.4, 47.9, 2597, 300 }, + [194] = { 51.3, 46.6, 2597, 300 }, + [195] = { 50.4, 46.5, 2597, 300 }, + [196] = { 52.8, 46, 2597, 300 }, + [197] = { 50.1, 44.8, 2597, 300 }, + [198] = { 48.6, 44.3, 2597, 300 }, + [199] = { 47.8, 42.7, 2597, 300 }, + [200] = { 48.3, 42, 2597, 300 }, + [201] = { 53.2, 41.9, 2597, 300 }, + [202] = { 50.5, 40.8, 2597, 300 }, + [203] = { 52.5, 39.1, 2597, 300 }, + [204] = { 50.2, 37.1, 2597, 300 }, + [205] = { 50.3, 33.2, 2597, 300 }, + [206] = { 50.8, 32.8, 2597, 300 }, + [207] = { 51.9, 32.3, 2597, 300 }, + [208] = { 54.6, 26.2, 2597, 300 }, + [209] = { 53, 26, 2597, 300 }, + [210] = { 54.5, 25.5, 2597, 300 }, + [211] = { 51.8, 24.7, 2597, 300 }, + [212] = { 55, 24, 2597, 300 }, + [213] = { 42.9, 22.8, 2597, 300 }, + [214] = { 54.3, 22.5, 2597, 300 }, + [215] = { 44.7, 22.3, 2597, 300 }, + [216] = { 51.7, 22.3, 2597, 300 }, + [217] = { 46.4, 22.3, 2597, 300 }, + [218] = { 47.2, 21.9, 2597, 300 }, + [219] = { 53, 21.4, 2597, 300 }, + [220] = { 44.5, 21.4, 2597, 300 }, + [221] = { 45.6, 21.3, 2597, 300 }, + [222] = { 42.4, 21.2, 2597, 300 }, + [223] = { 47.4, 20.9, 2597, 300 }, + [224] = { 53.7, 20.8, 2597, 300 }, + [225] = { 51.4, 20.4, 2597, 300 }, + [226] = { 54.1, 18, 2597, 300 }, + [227] = { 46.9, 17.2, 2597, 300 }, + [228] = { 47.7, 14.9, 2597, 300 }, + [229] = { 48.1, 12.7, 2597, 300 }, + }, + }, + [176589] = { + ["coords"] = { + [1] = { 89.8, 97.8, 25, 3600 }, + [2] = { 86.7, 57.6, 25, 3600 }, + [3] = { 80.4, 57.7, 28, 3600 }, + [4] = { 75.6, 56.7, 28, 3600 }, + [5] = { 31.5, 70.9, 46, 3600 }, + [6] = { 25.6, 70.3, 46, 3600 }, + [7] = { 35.2, 69.7, 46, 3600 }, + [8] = { 48.9, 66.7, 46, 3600 }, + [9] = { 30.8, 62.7, 46, 3600 }, + [10] = { 52.5, 62.7, 46, 3600 }, + [11] = { 77, 61.6, 46, 3600 }, + [12] = { 35.6, 60.9, 46, 3600 }, + [13] = { 17.2, 59.7, 46, 3600 }, + [14] = { 40.6, 59.3, 46, 3600 }, + [15] = { 44.4, 59.2, 46, 3600 }, + [16] = { 29.4, 58.4, 46, 3600 }, + [17] = { 23.5, 57.7, 46, 3600 }, + [18] = { 48.9, 56.9, 46, 3600 }, + [19] = { 35.6, 56.7, 46, 3600 }, + [20] = { 25.5, 55.8, 46, 3600 }, + [21] = { 42.4, 54.9, 46, 3600 }, + [22] = { 39.6, 54.3, 46, 3600 }, + [23] = { 92.6, 54.2, 46, 3600 }, + [24] = { 55.8, 52.9, 46, 3600 }, + [25] = { 18.6, 52.9, 46, 3600 }, + [26] = { 22.9, 52.2, 46, 3600 }, + [27] = { 48.9, 51.7, 46, 3600 }, + [28] = { 30.3, 51.1, 46, 3600 }, + [29] = { 52.3, 50.6, 46, 3600 }, + [30] = { 35.3, 49, 46, 3600 }, + [31] = { 36, 49, 46, 3600 }, + [32] = { 55.1, 48.8, 46, 3600 }, + [33] = { 75.9, 47.6, 46, 3600 }, + [34] = { 80.9, 47.1, 46, 3600 }, + [35] = { 21.2, 46.3, 46, 3600 }, + [36] = { 61.3, 45.8, 46, 3600 }, + [37] = { 28.8, 44.6, 46, 3600 }, + [38] = { 44.1, 43.9, 46, 3600 }, + [39] = { 40.9, 43.6, 46, 3600 }, + [40] = { 49.3, 41.7, 46, 3600 }, + [41] = { 64.3, 39.3, 46, 3600 }, + [42] = { 75.7, 39.2, 46, 3600 }, + [43] = { 89.5, 39.1, 46, 3600 }, + [44] = { 38.7, 38.7, 46, 3600 }, + [45] = { 83.1, 37.5, 46, 3600 }, + [46] = { 14.4, 36.7, 46, 3600 }, + [47] = { 56.8, 35.6, 46, 3600 }, + [48] = { 43.3, 33.8, 46, 3600 }, + [49] = { 50.5, 33.2, 46, 3600 }, + [50] = { 63.5, 33.1, 46, 3600 }, + [51] = { 15.3, 30.1, 46, 3600 }, + [52] = { 37.9, 29, 46, 3600 }, + [53] = { 57.9, 27.9, 46, 3600 }, + [54] = { 84.8, 26.6, 46, 3600 }, + [55] = { 16.7, 24.7, 46, 3600 }, + [56] = { 19.4, 95, 51, 3600 }, + [57] = { 39.4, 90, 139, 3600 }, + [58] = { 83.2, 87.1, 139, 3600 }, + [59] = { 61.8, 86.8, 139, 3600 }, + [60] = { 27.5, 85.4, 139, 3600 }, + [61] = { 80.7, 83.2, 139, 3600 }, + [62] = { 87, 82.5, 139, 3600 }, + [63] = { 22.1, 80.9, 139, 3600 }, + [64] = { 61.8, 80.7, 139, 3600 }, + [65] = { 16.7, 79.7, 139, 3600 }, + [66] = { 57.6, 77.6, 139, 3600 }, + [67] = { 28.7, 76.9, 139, 3600 }, + [68] = { 77.3, 75.4, 139, 3600 }, + [69] = { 38.7, 74.3, 139, 3600 }, + [70] = { 46.9, 70.5, 139, 3600 }, + [71] = { 52.6, 69, 139, 3600 }, + [72] = { 59.9, 68.4, 139, 3600 }, + [73] = { 68.1, 68.2, 139, 3600 }, + [74] = { 38.4, 66.7, 139, 3600 }, + [75] = { 56.7, 66.1, 139, 3600 }, + [76] = { 23.3, 65.3, 139, 3600 }, + [77] = { 33.4, 62.1, 139, 3600 }, + [78] = { 73.5, 61.2, 139, 3600 }, + [79] = { 76.4, 59, 139, 3600 }, + [80] = { 40.3, 55.2, 139, 3600 }, + [81] = { 37.3, 51.6, 139, 3600 }, + [82] = { 76.6, 50.5, 139, 3600 }, + [83] = { 67, 49.6, 139, 3600 }, + [84] = { 60.2, 49, 139, 3600 }, + [85] = { 50.1, 46.9, 139, 3600 }, + [86] = { 86.1, 46.3, 139, 3600 }, + [87] = { 30.9, 43.3, 139, 3600 }, + [88] = { 41, 40.5, 139, 3600 }, + [89] = { 66.4, 40.2, 139, 3600 }, + [90] = { 57.3, 38, 139, 3600 }, + [91] = { 73.1, 36.5, 139, 3600 }, + [92] = { 53.2, 36.3, 139, 3600 }, + [93] = { 39.9, 34.8, 139, 3600 }, + [94] = { 61.9, 31, 139, 3600 }, + [95] = { 15.8, 29.6, 139, 3600 }, + [96] = { 27.9, 29.3, 139, 3600 }, + [97] = { 70.4, 29.1, 139, 3600 }, + [98] = { 72.6, 28.9, 139, 3600 }, + [99] = { 55.7, 25.4, 139, 3600 }, + [100] = { 39.6, 24.7, 139, 3600 }, + [101] = { 47.6, 24.5, 139, 3600 }, + [102] = { 33.5, 22.8, 139, 3600 }, + [103] = { 64.1, 21.6, 139, 3600 }, + [104] = { 45, 20.9, 139, 3600 }, + [105] = { 59.5, 18.4, 139, 3600 }, + [106] = { 71.3, 14.1, 139, 3600 }, + [107] = { 52.7, 82.9, 357, 3600 }, + [108] = { 51.2, 52.8, 361, 3600 }, + [109] = { 51.9, 50.3, 361, 3600 }, + [110] = { 13.3, 39, 490, 3600 }, + [111] = { 15.5, 23.9, 490, 3600 }, + [112] = { 44.3, 88.9, 616, 3600 }, + [113] = { 38.6, 82.9, 616, 3600 }, + [114] = { 53.4, 82.3, 616, 3600 }, + [115] = { 29.9, 81.7, 616, 3600 }, + [116] = { 30.5, 79.3, 616, 3600 }, + [117] = { 37.4, 77, 616, 3600 }, + [118] = { 69.8, 75.5, 616, 3600 }, + [119] = { 86.3, 74.2, 616, 3600 }, + [120] = { 50.7, 72.4, 616, 3600 }, + [121] = { 61.4, 72.3, 616, 3600 }, + [122] = { 57.2, 70.9, 616, 3600 }, + [123] = { 29.4, 70.2, 616, 3600 }, + [124] = { 78.1, 68.3, 616, 3600 }, + [125] = { 72.4, 67.8, 616, 3600 }, + [126] = { 41.7, 67.2, 616, 3600 }, + [127] = { 48, 65.6, 616, 3600 }, + [128] = { 65, 64.8, 616, 3600 }, + [129] = { 83, 63.6, 616, 3600 }, + [130] = { 20.1, 60.2, 616, 3600 }, + [131] = { 13.8, 59.4, 616, 3600 }, + [132] = { 22.8, 53.8, 616, 3600 }, + [133] = { 37.5, 52.5, 616, 3600 }, + [134] = { 31, 52.2, 616, 3600 }, + [135] = { 53.6, 50.7, 616, 3600 }, + [136] = { 46.1, 49.6, 616, 3600 }, + [137] = { 13.1, 49.1, 616, 3600 }, + [138] = { 69.1, 48.2, 616, 3600 }, + [139] = { 7, 47.4, 616, 3600 }, + [140] = { 62.3, 46.4, 616, 3600 }, + [141] = { 31.3, 45.9, 616, 3600 }, + [142] = { 38, 45.3, 616, 3600 }, + [143] = { 8.3, 42.9, 616, 3600 }, + [144] = { 55.9, 42.4, 616, 3600 }, + [145] = { 46.1, 41.3, 616, 3600 }, + [146] = { 36.1, 41.3, 616, 3600 }, + [147] = { 27.5, 40.5, 616, 3600 }, + [148] = { 20, 40, 616, 3600 }, + [149] = { 32.4, 35.2, 616, 3600 }, + [150] = { 46.3, 34.2, 616, 3600 }, + [151] = { 63, 28.1, 616, 3600 }, + [152] = { 73.1, 22.7, 616, 3600 }, + [153] = { 52.6, 21.4, 616, 3600 }, + [154] = { 60.6, 17.7, 616, 3600 }, + [155] = { 69, 15.5, 616, 3600 }, + [156] = { 49.7, 84.4, 618, 3600 }, + [157] = { 46, 81.8, 618, 3600 }, + [158] = { 48.3, 79.7, 618, 3600 }, + [159] = { 60.2, 74.9, 618, 3600 }, + [160] = { 64.7, 73.1, 618, 3600 }, + [161] = { 63.3, 69.7, 618, 3600 }, + [162] = { 57.9, 69, 618, 3600 }, + [163] = { 65.7, 65.4, 618, 3600 }, + [164] = { 59.8, 65.1, 618, 3600 }, + [165] = { 64.8, 63.9, 618, 3600 }, + [166] = { 62.9, 62.9, 618, 3600 }, + [167] = { 59.3, 59.6, 618, 3600 }, + [168] = { 61.1, 54.9, 618, 3600 }, + [169] = { 56.9, 53.1, 618, 3600 }, + [170] = { 57.5, 50.2, 618, 3600 }, + [171] = { 55.7, 48.5, 618, 3600 }, + [172] = { 31.4, 46.5, 618, 3600 }, + [173] = { 61, 45.8, 618, 3600 }, + [174] = { 51, 45.7, 618, 3600 }, + [175] = { 39.3, 44.3, 618, 3600 }, + [176] = { 56.5, 43.3, 618, 3600 }, + [177] = { 47.6, 43.1, 618, 3600 }, + [178] = { 43, 42.9, 618, 3600 }, + [179] = { 32.5, 42.8, 618, 3600 }, + [180] = { 67.7, 42.5, 618, 3600 }, + [181] = { 36.3, 41.6, 618, 3600 }, + [182] = { 48.8, 40.4, 618, 3600 }, + [183] = { 43.4, 39.6, 618, 3600 }, + [184] = { 54.1, 39.1, 618, 3600 }, + [185] = { 69.1, 38.4, 618, 3600 }, + [186] = { 29.5, 38.4, 618, 3600 }, + [187] = { 38.9, 37.9, 618, 3600 }, + [188] = { 35.9, 36.4, 618, 3600 }, + [189] = { 46.6, 36, 618, 3600 }, + [190] = { 31.3, 34.5, 618, 3600 }, + [191] = { 68.6, 34.2, 618, 3600 }, + [192] = { 55.7, 33.4, 618, 3600 }, + [193] = { 51.4, 31.3, 618, 3600 }, + [194] = { 60.5, 30.1, 618, 3600 }, + [195] = { 67.2, 28.8, 618, 3600 }, + [196] = { 55.4, 28.5, 618, 3600 }, + [197] = { 50.7, 25.4, 618, 3600 }, + [198] = { 64.4, 24.4, 618, 3600 }, + [199] = { 59.7, 22.5, 618, 3600 }, + [200] = { 63.2, 21.2, 618, 3600 }, + [201] = { 51.3, 20, 618, 3600 }, + [202] = { 56.9, 19.6, 618, 3600 }, + [203] = { 63.1, 17.7, 618, 3600 }, + [204] = { 53.4, 16.8, 618, 3600 }, + [205] = { 56.7, 15.5, 618, 3600 }, + [206] = { 49.2, 15.4, 618, 3600 }, + [207] = { 61.3, 14.7, 618, 3600 }, + [208] = { 59.3, 11.4, 618, 3600 }, + [209] = { 49.6, 9.1, 618, 3600 }, + [210] = { 45.2, 92.3, 1377, 3600 }, + [211] = { 34.4, 89.9, 1377, 3600 }, + [212] = { 51.8, 88.9, 1377, 3600 }, + [213] = { 23.9, 88.4, 1377, 3600 }, + [214] = { 62.2, 86.4, 1377, 3600 }, + [215] = { 19.7, 85.3, 1377, 3600 }, + [216] = { 40, 85, 1377, 3600 }, + [217] = { 17.1, 84.9, 1377, 3600 }, + [218] = { 18.8, 83.9, 1377, 3600 }, + [219] = { 52.2, 81.7, 1377, 3600 }, + [220] = { 66.5, 80.6, 1377, 3600 }, + [221] = { 29.2, 79.3, 1377, 3600 }, + [222] = { 37.4, 76, 1377, 3600 }, + [223] = { 23.2, 75.6, 1377, 3600 }, + [224] = { 42.2, 74.4, 1377, 3600 }, + [225] = { 45.1, 72.7, 1377, 3600 }, + [226] = { 60.6, 72.3, 1377, 3600 }, + [227] = { 63.5, 72.1, 1377, 3600 }, + [228] = { 27, 71.4, 1377, 3600 }, + [229] = { 32.6, 70.3, 1377, 3600 }, + [230] = { 18.4, 67.2, 1377, 3600 }, + [231] = { 43.1, 66.4, 1377, 3600 }, + [232] = { 57.9, 65.6, 1377, 3600 }, + [233] = { 37.5, 63.2, 1377, 3600 }, + [234] = { 24.5, 60.9, 1377, 3600 }, + [235] = { 39.2, 60.5, 1377, 3600 }, + [236] = { 39.6, 57.1, 1377, 3600 }, + [237] = { 24.1, 56.1, 1377, 3600 }, + [238] = { 48.7, 55.9, 1377, 3600 }, + [239] = { 20.1, 53.9, 1377, 3600 }, + [240] = { 44.2, 53.5, 1377, 3600 }, + [241] = { 60.5, 53.4, 1377, 3600 }, + [242] = { 62, 53.2, 1377, 3600 }, + [243] = { 63.9, 51.5, 1377, 3600 }, + [244] = { 52.6, 51, 1377, 3600 }, + [245] = { 54.8, 48.7, 1377, 3600 }, + [246] = { 28.9, 46.6, 1377, 3600 }, + [247] = { 39, 45, 1377, 3600 }, + [248] = { 60.1, 44.9, 1377, 3600 }, + [249] = { 41.1, 44.3, 1377, 3600 }, + [250] = { 17.2, 44, 1377, 3600 }, + [251] = { 39.2, 43.6, 1377, 3600 }, + [252] = { 71.6, 41.7, 1377, 3600 }, + [253] = { 25.1, 36.8, 1377, 3600 }, + [254] = { 19, 35.6, 1377, 3600 }, + [255] = { 27, 34.7, 1377, 3600 }, + [256] = { 24.8, 34.1, 1377, 3600 }, + [257] = { 26.1, 33.8, 1377, 3600 }, + [258] = { 59.7, 32.7, 1377, 3600 }, + [259] = { 19.4, 30, 1377, 3600 }, + [260] = { 55.3, 29.7, 1377, 3600 }, + [261] = { 26.5, 27, 1377, 3600 }, + [262] = { 46, 26.4, 1377, 3600 }, + [263] = { 74, 25.8, 1377, 3600 }, + [264] = { 51.1, 23.2, 1377, 3600 }, + [265] = { 21.3, 21.3, 1377, 3600 }, + [266] = { 69.1, 19.6, 1377, 3600 }, + [267] = { 43.3, 18.8, 1377, 3600 }, + [268] = { 60.9, 18.6, 1377, 3600 }, + [269] = { 66.3, 17.9, 1377, 3600 }, + [270] = { 28.8, 16.9, 1377, 3600 }, + [271] = { 37.7, 16.1, 1377, 3600 }, + [272] = { 68.6, 15.1, 1377, 3600 }, + [273] = { 43.3, 13.1, 1377, 3600 }, + [274] = { 21.8, 10.7, 1377, 3600 }, + [275] = { 45.7, 48.1, 2597, 4900 }, + [276] = { 48.8, 46.4, 2597, 4600 }, + [277] = { 44.8, 45.6, 2597, 4953 }, + [278] = { 48.3, 43.2, 2597, 5900 }, + [279] = { 53.2, 39.6, 2597, 4394 }, + [280] = { 48.1, 38.6, 2597, 5305 }, + [281] = { 71.8, 3.3, 3478, 3600 }, + [282] = { 62.6, 1.4, 3478, 3600 }, + [283] = { 77.3, 0.6, 3478, 3600 }, + [284] = { 53.8, 0.2, 3478, 3600 }, + [285] = { 42.9, 72.8, 4012, 3600 }, + [286] = { 16.7, 72.5, 4012, 3600 }, + [287] = { 39.9, 68, 4012, 3600 }, + [288] = { 47.6, 67.2, 4012, 3600 }, + [289] = { 16.7, 64.9, 4012, 3600 }, + [290] = { 11.6, 61.2, 4012, 3600 }, + [291] = { 35.7, 58.6, 4012, 3600 }, + [292] = { 5.5, 50.7, 4012, 3600 }, + [293] = { 14.4, 49.9, 4012, 3600 }, + [294] = { 24.5, 49.7, 4012, 3600 }, + [295] = { 10.5, 47.2, 4012, 3600 }, + [296] = { 31, 41.1, 4012, 3600 }, + [297] = { 34.5, 38.4, 4012, 3600 }, + [298] = { 34.9, 28.1, 4012, 3600 }, + [299] = { 23.1, 26.9, 4012, 3600 }, + [300] = { 14.7, 26.2, 4012, 3600 }, + [301] = { 2.4, 23.6, 4012, 3600 }, + [302] = { 46.4, 22.9, 4012, 3600 }, + [303] = { 22.4, 15.4, 4012, 3600 }, + [304] = { 11.2, 12.7, 4012, 3600 }, + [305] = { 30.6, 10.9, 4012, 3600 }, + [306] = { 6.2, 10.6, 4012, 3600 }, + [307] = { 16.8, 4.1, 4012, 3600 }, + [308] = { 27.2, 1.8, 4012, 3600 }, + [309] = { 30, 1.5, 4012, 3600 }, + [310] = { 52.6, 61.5, 5121, 3600 }, + [311] = { 45.8, 61.1, 5121, 3600 }, + [312] = { 58.9, 59.6, 5121, 3600 }, + [313] = { 60.7, 55.9, 5121, 3600 }, + [314] = { 61.3, 48.8, 5121, 3600 }, + [315] = { 52.7, 45.1, 5121, 3600 }, + [316] = { 61.4, 43.3, 5121, 3600 }, + [317] = { 57.1, 37, 5121, 3600 }, + [318] = { 41.3, 35, 5121, 3600 }, + [319] = { 57.7, 28.9, 5121, 3600 }, + [320] = { 40.7, 24.4, 5121, 3600 }, + [321] = { 44.4, 22.1, 5121, 3600 }, + [322] = { 47.4, 21.7, 5121, 3600 }, + [323] = { 61.7, 21.2, 5121, 3600 }, + [324] = { 50.7, 14.4, 5121, 3600 }, + [325] = { 59, 13.9, 5121, 3600 }, + [326] = { 53.9, 11.8, 5121, 3600 }, + [327] = { 88.5, 99.5, 5225, 3600 }, + [328] = { 58.1, 93, 5225, 3600 }, + [329] = { 73.3, 92.5, 5225, 3600 }, + [330] = { 88, 86.8, 5225, 3600 }, + [331] = { 98.1, 86.6, 5225, 3600 }, + [332] = { 80.3, 84.5, 5225, 3600 }, + [333] = { 94.8, 82.1, 5225, 3600 }, + [334] = { 93.4, 86.6, 5581, 3600 }, + [335] = { 99.2, 84.8, 5581, 3600 }, + [336] = { 94.7, 80.6, 5581, 3600 }, + [337] = { 98.6, 79.9, 5581, 3600 }, + [338] = { 97, 74.6, 5581, 3600 }, + [339] = { 90.9, 65.9, 5581, 3600 }, + [340] = { 91.7, 59.9, 5581, 3600 }, + [341] = { 93, 55, 5581, 3600 }, + }, + }, + [176591] = { + ["coords"] = { + [1] = { 51.1, 49.9, 139, 900 }, + [2] = { 3.6, 27.3, 4012, 900 }, + }, + }, + [176592] = "_", + [176604] = { + ["coords"] = { + [1] = { 40.4, 53.5, 1977, 600 }, + }, + }, + [176605] = { + ["coords"] = { + [1] = { 50, 66.4, 1977, 600 }, + }, + }, + [176606] = { + ["coords"] = { + [1] = { 50.8, 66.4, 1977, 600 }, + }, + }, + [176607] = { + ["coords"] = { + [1] = { 50.8, 64.3, 1977, 600 }, + }, + }, + [176608] = { + ["coords"] = { + [1] = { 50, 64.3, 1977, 600 }, + }, + }, + [176609] = { + ["coords"] = { + [1] = { 50.8, 68.4, 1977, 600 }, + }, + }, + [176610] = { + ["coords"] = { + [1] = { 50, 68.5, 1977, 600 }, + }, + }, + [176611] = { + ["coords"] = { + [1] = { 50.8, 70.2, 1977, 600 }, + }, + }, + [176612] = { + ["coords"] = { + [1] = { 50, 70.2, 1977, 600 }, + }, + }, + [176617] = { + ["coords"] = { + [1] = { 63.3, 79.9, 1977, 600 }, + }, + }, + [176618] = { + ["coords"] = { + [1] = { 61.1, 82.3, 1977, 600 }, + }, + }, + [176619] = { + ["coords"] = { + [1] = { 51.4, 53.7, 1977, 600 }, + }, + }, + [176630] = { + ["coords"] = { + [1] = { 17.9, 69.4, 45, 2 }, + }, + }, + [176631] = { + ["coords"] = { + [1] = { 60, 16.6, 2017, 180 }, + }, + }, + [176634] = { + ["coords"] = { + [1] = { 44.4, 76.3, 148, 10 }, + }, + }, + [176635] = { + ["coords"] = { + [1] = { 18.5, 81.6, 405, 7200 }, + [2] = { 21.8, 81.1, 405, 7200 }, + [3] = { 20.7, 80.6, 405, 7200 }, + [4] = { 22.4, 75.1, 405, 7200 }, + [5] = { 20.3, 71.2, 405, 7200 }, + }, + }, + [176636] = { + ["coords"] = { + [1] = { 57.8, 54.9, 876, 300 }, + }, + }, + [176638] = { + ["coords"] = { + [1] = { 47, 72.2, 2597, 300 }, + [2] = { 48.9, 49.7, 2597, 300 }, + [3] = { 50.1, 49, 2597, 300 }, + [4] = { 49.6, 48.1, 2597, 300 }, + [5] = { 48.6, 47.5, 2597, 300 }, + [6] = { 50, 47.4, 2597, 300 }, + [7] = { 48.2, 47, 2597, 300 }, + [8] = { 47.9, 46.8, 2597, 300 }, + [9] = { 47.4, 46.5, 2597, 300 }, + [10] = { 48.3, 45.4, 2597, 300 }, + [11] = { 48.2, 43.1, 2597, 300 }, + [12] = { 49.7, 42.9, 2597, 300 }, + [13] = { 47.5, 35.9, 2597, 300 }, + [14] = { 50.5, 34.9, 2597, 300 }, + [15] = { 50.9, 32.3, 2597, 300 }, + [16] = { 52.4, 29.3, 2597, 300 }, + }, + }, + [176639] = { + ["coords"] = { + [1] = { 54.3, 86.7, 2597, 300 }, + [2] = { 57, 83.4, 2597, 300 }, + [3] = { 52.4, 77.7, 2597, 300 }, + [4] = { 49.1, 77.4, 2597, 300 }, + [5] = { 54.4, 77.1, 2597, 300 }, + [6] = { 56.5, 75.3, 2597, 300 }, + [7] = { 49.2, 75.3, 2597, 300 }, + [8] = { 50.6, 72.2, 2597, 300 }, + [9] = { 51.6, 71.9, 2597, 300 }, + [10] = { 50, 71.4, 2597, 300 }, + [11] = { 48.7, 70.8, 2597, 300 }, + [12] = { 46.8, 70.1, 2597, 300 }, + [13] = { 52.8, 69.9, 2597, 300 }, + [14] = { 47.1, 67.4, 2597, 300 }, + [15] = { 49, 66.7, 2597, 300 }, + [16] = { 48.5, 65.9, 2597, 300 }, + [17] = { 51.5, 65.1, 2597, 300 }, + [18] = { 52.1, 61.1, 2597, 300 }, + [19] = { 50.7, 60.8, 2597, 300 }, + [20] = { 45.4, 60.6, 2597, 300 }, + [21] = { 43.9, 58.7, 2597, 300 }, + [22] = { 46.1, 58.5, 2597, 300 }, + [23] = { 44.4, 58.2, 2597, 300 }, + [24] = { 50.9, 58, 2597, 300 }, + [25] = { 49.2, 57.2, 2597, 300 }, + [26] = { 46.7, 57, 2597, 300 }, + [27] = { 43.8, 56.5, 2597, 300 }, + [28] = { 52, 56.2, 2597, 300 }, + [29] = { 42.3, 56.1, 2597, 300 }, + [30] = { 42.7, 56, 2597, 300 }, + [31] = { 48.3, 56, 2597, 300 }, + [32] = { 49.7, 55.2, 2597, 300 }, + [33] = { 43.6, 55.1, 2597, 300 }, + [34] = { 44.8, 54.9, 2597, 300 }, + [35] = { 52, 54.9, 2597, 300 }, + [36] = { 47.9, 54.8, 2597, 300 }, + [37] = { 44, 54.4, 2597, 300 }, + [38] = { 46.3, 53.7, 2597, 300 }, + [39] = { 48.2, 52.9, 2597, 300 }, + [40] = { 50.7, 52, 2597, 300 }, + [41] = { 45.5, 51.9, 2597, 300 }, + [42] = { 42.8, 51.5, 2597, 300 }, + [43] = { 48.5, 51.4, 2597, 300 }, + [44] = { 43, 51.3, 2597, 300 }, + [45] = { 49.5, 51.3, 2597, 300 }, + [46] = { 44.9, 51, 2597, 300 }, + [47] = { 50.5, 50.9, 2597, 300 }, + [48] = { 50.6, 50.7, 2597, 300 }, + [49] = { 44.4, 50.4, 2597, 300 }, + [50] = { 44.6, 50, 2597, 300 }, + [51] = { 43, 49.9, 2597, 300 }, + [52] = { 52.8, 49.7, 2597, 300 }, + [53] = { 46.6, 49.7, 2597, 300 }, + [54] = { 51.9, 49.2, 2597, 300 }, + [55] = { 42.7, 48.9, 2597, 300 }, + [56] = { 43.6, 48.5, 2597, 300 }, + [57] = { 42.7, 48.2, 2597, 300 }, + [58] = { 52.4, 47.7, 2597, 300 }, + [59] = { 44.8, 47.6, 2597, 300 }, + [60] = { 44.7, 46.2, 2597, 300 }, + [61] = { 44.6, 45.1, 2597, 300 }, + [62] = { 47.2, 44.7, 2597, 300 }, + [63] = { 47.9, 44.5, 2597, 300 }, + [64] = { 43.8, 43.7, 2597, 300 }, + [65] = { 45.4, 43.5, 2597, 300 }, + [66] = { 49.1, 43.1, 2597, 300 }, + [67] = { 52.4, 42.9, 2597, 300 }, + [68] = { 47, 42.8, 2597, 300 }, + [69] = { 50.1, 42.2, 2597, 300 }, + [70] = { 46.9, 41.4, 2597, 300 }, + [71] = { 46.5, 39.8, 2597, 300 }, + [72] = { 51, 38.8, 2597, 300 }, + [73] = { 47.3, 35.3, 2597, 300 }, + [74] = { 48.5, 34.5, 2597, 300 }, + [75] = { 49.4, 33.7, 2597, 300 }, + [76] = { 50.4, 32.5, 2597, 300 }, + [77] = { 50.8, 32.1, 2597, 300 }, + [78] = { 49.3, 29.5, 2597, 300 }, + [79] = { 46.1, 28.1, 2597, 300 }, + [80] = { 49.9, 27.8, 2597, 300 }, + [81] = { 47.6, 26.7, 2597, 300 }, + [82] = { 49.5, 26.6, 2597, 300 }, + [83] = { 45.3, 25.1, 2597, 300 }, + [84] = { 47.5, 24.8, 2597, 300 }, + [85] = { 44.5, 23.3, 2597, 300 }, + [86] = { 48.2, 23.2, 2597, 300 }, + [87] = { 50.2, 22.7, 2597, 300 }, + [88] = { 43.9, 21.4, 2597, 300 }, + [89] = { 42.5, 20.4, 2597, 300 }, + [90] = { 43.6, 20.3, 2597, 300 }, + [91] = { 42.3, 19.3, 2597, 300 }, + }, + }, + [176640] = { + ["coords"] = { + [1] = { 51.9, 87.8, 2597, 300 }, + [2] = { 53.4, 87.7, 2597, 300 }, + [3] = { 57.6, 85.9, 2597, 300 }, + [4] = { 51.1, 85, 2597, 300 }, + [5] = { 52.3, 83.8, 2597, 300 }, + [6] = { 52.2, 80.1, 2597, 300 }, + [7] = { 52.1, 80, 2597, 300 }, + [8] = { 51.3, 79.8, 2597, 300 }, + [9] = { 51.2, 79.6, 2597, 300 }, + [10] = { 58, 78.2, 2597, 300 }, + [11] = { 48.5, 77.8, 2597, 300 }, + [12] = { 48.3, 75.8, 2597, 300 }, + [13] = { 47.8, 75.5, 2597, 300 }, + [14] = { 48.2, 75.5, 2597, 300 }, + [15] = { 57.2, 74.5, 2597, 300 }, + [16] = { 48.7, 74.2, 2597, 300 }, + [17] = { 56.6, 73.9, 2597, 300 }, + [18] = { 52.3, 73.7, 2597, 300 }, + [19] = { 46.9, 73.4, 2597, 300 }, + [20] = { 54.9, 73.3, 2597, 300 }, + [21] = { 46.1, 70.6, 2597, 300 }, + [22] = { 49.5, 70.5, 2597, 300 }, + [23] = { 46.7, 67.7, 2597, 300 }, + [24] = { 47.3, 67.3, 2597, 300 }, + [25] = { 52, 66.9, 2597, 300 }, + [26] = { 48.8, 66.8, 2597, 300 }, + [27] = { 52.7, 65.9, 2597, 300 }, + [28] = { 48, 65.6, 2597, 300 }, + [29] = { 51.1, 65.1, 2597, 300 }, + [30] = { 48.2, 65, 2597, 300 }, + [31] = { 48.6, 64.8, 2597, 300 }, + [32] = { 53.6, 64.8, 2597, 300 }, + [33] = { 49.1, 63.7, 2597, 300 }, + [34] = { 51.5, 63.2, 2597, 300 }, + [35] = { 44.1, 62.3, 2597, 300 }, + [36] = { 49.8, 61.9, 2597, 300 }, + [37] = { 43.7, 60.9, 2597, 300 }, + [38] = { 46.1, 60.9, 2597, 300 }, + [39] = { 42.1, 60.3, 2597, 300 }, + [40] = { 41.8, 59.6, 2597, 300 }, + [41] = { 50.4, 59.3, 2597, 300 }, + [42] = { 51.1, 59.1, 2597, 300 }, + [43] = { 44.4, 58, 2597, 300 }, + [44] = { 48.5, 57.5, 2597, 300 }, + [45] = { 48, 57.1, 2597, 300 }, + [46] = { 47.8, 56.3, 2597, 300 }, + [47] = { 52.4, 56.3, 2597, 300 }, + [48] = { 44.4, 56.2, 2597, 300 }, + [49] = { 47.6, 55, 2597, 300 }, + [50] = { 45.8, 54.9, 2597, 300 }, + [51] = { 49.2, 54.6, 2597, 300 }, + [52] = { 45.9, 54.5, 2597, 300 }, + [53] = { 52.5, 53.2, 2597, 300 }, + [54] = { 47.8, 53, 2597, 300 }, + [55] = { 52.3, 52.3, 2597, 300 }, + [56] = { 50, 51.1, 2597, 300 }, + [57] = { 45.6, 51.1, 2597, 300 }, + [58] = { 44.8, 50.5, 2597, 300 }, + [59] = { 47.4, 49.7, 2597, 300 }, + [60] = { 53.3, 49.4, 2597, 300 }, + [61] = { 45.9, 48.6, 2597, 300 }, + [62] = { 52.4, 48.2, 2597, 300 }, + [63] = { 52.3, 47.9, 2597, 300 }, + [64] = { 43.5, 47.5, 2597, 300 }, + [65] = { 44.5, 46.7, 2597, 300 }, + [66] = { 44.9, 46.4, 2597, 300 }, + [67] = { 44.6, 45, 2597, 300 }, + [68] = { 43.8, 43.4, 2597, 300 }, + [69] = { 47.4, 42.4, 2597, 300 }, + [70] = { 47.4, 41.7, 2597, 300 }, + [71] = { 53.8, 41.5, 2597, 300 }, + [72] = { 46.5, 41.3, 2597, 300 }, + [73] = { 46.3, 41.1, 2597, 300 }, + [74] = { 53.6, 41.1, 2597, 300 }, + [75] = { 51.9, 40.4, 2597, 300 }, + [76] = { 55.4, 40.3, 2597, 300 }, + [77] = { 55.1, 40, 2597, 300 }, + [78] = { 52.3, 39.6, 2597, 300 }, + [79] = { 47, 39.1, 2597, 300 }, + [80] = { 48.1, 38, 2597, 300 }, + [81] = { 50.8, 38, 2597, 300 }, + [82] = { 49.8, 36, 2597, 300 }, + [83] = { 46.7, 35.3, 2597, 300 }, + [84] = { 49.2, 33.6, 2597, 300 }, + [85] = { 49.7, 33.2, 2597, 300 }, + [86] = { 49, 29.9, 2597, 300 }, + [87] = { 42.3, 29.4, 2597, 300 }, + [88] = { 54.3, 29.2, 2597, 300 }, + [89] = { 50.1, 29.2, 2597, 300 }, + [90] = { 47.2, 27.9, 2597, 300 }, + [91] = { 47.4, 27.8, 2597, 300 }, + [92] = { 52.4, 27.7, 2597, 300 }, + [93] = { 47.9, 27.6, 2597, 300 }, + [94] = { 52.7, 27.4, 2597, 300 }, + [95] = { 52.6, 26.8, 2597, 300 }, + [96] = { 52.6, 25.8, 2597, 300 }, + [97] = { 42.2, 25.3, 2597, 300 }, + [98] = { 41.9, 25.1, 2597, 300 }, + [99] = { 41.7, 24.3, 2597, 300 }, + [100] = { 50.7, 24.2, 2597, 300 }, + [101] = { 45.8, 23.9, 2597, 300 }, + [102] = { 52.9, 23.9, 2597, 300 }, + [103] = { 53.2, 23.8, 2597, 300 }, + [104] = { 45.6, 23.7, 2597, 300 }, + [105] = { 51.4, 23.1, 2597, 300 }, + [106] = { 47.7, 22, 2597, 300 }, + [107] = { 41.8, 21.9, 2597, 300 }, + [108] = { 48.1, 21.6, 2597, 300 }, + [109] = { 41.1, 21.3, 2597, 300 }, + [110] = { 44.5, 20.2, 2597, 300 }, + [111] = { 46.2, 19.9, 2597, 300 }, + [112] = { 55, 19.5, 2597, 300 }, + [113] = { 46.2, 19.4, 2597, 300 }, + [114] = { 50.9, 19, 2597, 300 }, + [115] = { 53.1, 18.5, 2597, 300 }, + [116] = { 46.6, 13.8, 2597, 300 }, + [117] = { 50.4, 10.2, 2597, 300 }, + }, + }, + [176642] = { + ["coords"] = { + [1] = { 57.7, 40.1, 148, 2700 }, + [2] = { 41.5, 80.4, 361, 2700 }, + [3] = { 47.8, 76.7, 361, 2700 }, + [4] = { 45.5, 37.6, 361, 2700 }, + [5] = { 43.1, 14.3, 361, 2700 }, + [6] = { 0.9, 90.2, 616, 2700 }, + }, + }, + [176643] = { + ["coords"] = { + [1] = { 36.2, 68.9, 361, 2700 }, + [2] = { 36.3, 55.4, 361, 2700 }, + [3] = { 43.2, 46.7, 361, 2700 }, + [4] = { 38.2, 45.7, 361, 2700 }, + [5] = { 48.6, 23.8, 361, 2700 }, + [6] = { 39.8, 22.3, 361, 2700 }, + [7] = { 57.6, 17.3, 361, 2700 }, + [8] = { 59.6, 6.1, 361, 2700 }, + [9] = { 45.8, 71, 2597, 300 }, + [10] = { 44.6, 70.6, 2597, 300 }, + [11] = { 45.6, 70.5, 2597, 300 }, + [12] = { 42.1, 69.3, 2597, 300 }, + [13] = { 43.9, 68.8, 2597, 300 }, + [14] = { 43.8, 67.7, 2597, 300 }, + [15] = { 45.5, 61.1, 2597, 300 }, + [16] = { 43.4, 59.5, 2597, 300 }, + [17] = { 41.9, 58.9, 2597, 300 }, + [18] = { 47.4, 58.3, 2597, 300 }, + [19] = { 45.4, 58.2, 2597, 300 }, + [20] = { 42.1, 55.9, 2597, 300 }, + [21] = { 44, 55.2, 2597, 300 }, + [22] = { 47.8, 55.1, 2597, 300 }, + [23] = { 48, 53.3, 2597, 300 }, + [24] = { 42.8, 52.5, 2597, 300 }, + [25] = { 45.8, 52, 2597, 300 }, + [26] = { 49.4, 51.9, 2597, 300 }, + [27] = { 45.4, 51.2, 2597, 300 }, + [28] = { 50.9, 51, 2597, 300 }, + [29] = { 43, 50.8, 2597, 300 }, + [30] = { 52.4, 50.7, 2597, 300 }, + [31] = { 44.7, 50.5, 2597, 300 }, + [32] = { 43.9, 48.3, 2597, 300 }, + [33] = { 51.3, 48, 2597, 300 }, + [34] = { 42.7, 48, 2597, 300 }, + [35] = { 53.2, 47.6, 2597, 300 }, + [36] = { 44.6, 47.6, 2597, 300 }, + [37] = { 43.5, 46.8, 2597, 300 }, + [38] = { 45.8, 46.8, 2597, 300 }, + [39] = { 48.7, 46.5, 2597, 300 }, + [40] = { 48.5, 46.3, 2597, 300 }, + [41] = { 48.9, 45.9, 2597, 300 }, + [42] = { 45.1, 45.8, 2597, 300 }, + [43] = { 50.4, 45.4, 2597, 300 }, + [44] = { 46.6, 44.9, 2597, 300 }, + [45] = { 43.3, 44.5, 2597, 300 }, + [46] = { 44, 43.3, 2597, 300 }, + [47] = { 45.7, 40.9, 2597, 300 }, + [48] = { 48.8, 36.3, 2597, 300 }, + [49] = { 50, 35.7, 2597, 300 }, + [50] = { 50.8, 35, 2597, 300 }, + [51] = { 47.1, 35, 2597, 300 }, + [52] = { 48.9, 33.9, 2597, 300 }, + [53] = { 51.8, 33.6, 2597, 300 }, + [54] = { 52.8, 30.5, 2597, 300 }, + [55] = { 50.6, 9.1, 2597, 300 }, + [56] = { 53.2, 8.9, 2597, 300 }, + [57] = { 52.5, 8.7, 2597, 300 }, + [58] = { 50.5, 7.7, 2597, 300 }, + [59] = { 50.8, 5, 2597, 300 }, + [60] = { 52.9, 4, 2597, 300 }, + }, + }, + [176645] = { + ["coords"] = { + [1] = { 52.1, 62.4, 148, 1800 }, + [2] = { 49.5, 90.9, 361, 1800 }, + [3] = { 58.4, 87.9, 361, 1800 }, + [4] = { 36.6, 62.7, 361, 1800 }, + [5] = { 38.8, 62.1, 361, 1800 }, + [6] = { 36.6, 52, 361, 1800 }, + [7] = { 36.8, 39.8, 361, 1800 }, + [8] = { 59.7, 21.1, 361, 1800 }, + [9] = { 43.5, 18.2, 361, 1800 }, + [10] = { 52.1, 97, 2597, 300 }, + [11] = { 52.5, 95.7, 2597, 300 }, + [12] = { 52, 94.8, 2597, 300 }, + [13] = { 51.4, 94.5, 2597, 300 }, + [14] = { 53.7, 94.3, 2597, 300 }, + [15] = { 53.8, 92.9, 2597, 300 }, + [16] = { 42.9, 73.2, 2597, 300 }, + [17] = { 42.8, 72.8, 2597, 300 }, + [18] = { 46.3, 72.1, 2597, 300 }, + [19] = { 46.6, 72, 2597, 300 }, + [20] = { 45.3, 72, 2597, 300 }, + [21] = { 46, 71.9, 2597, 300 }, + [22] = { 45.7, 71.7, 2597, 300 }, + [23] = { 45, 71.1, 2597, 300 }, + [24] = { 43.2, 70.8, 2597, 300 }, + [25] = { 45.4, 70.8, 2597, 300 }, + [26] = { 44.1, 70.6, 2597, 300 }, + [27] = { 43.5, 70.3, 2597, 300 }, + [28] = { 45.9, 70.1, 2597, 300 }, + [29] = { 45.1, 70, 2597, 300 }, + [30] = { 44.5, 69.6, 2597, 300 }, + [31] = { 45.1, 69.6, 2597, 300 }, + [32] = { 44, 69.3, 2597, 300 }, + [33] = { 43, 69, 2597, 300 }, + [34] = { 42, 68.6, 2597, 300 }, + [35] = { 44.8, 68.5, 2597, 300 }, + [36] = { 38.7, 39, 2597, 300 }, + [37] = { 41.4, 38.7, 2597, 300 }, + [38] = { 41.2, 38, 2597, 300 }, + [39] = { 39.4, 37, 2597, 300 }, + [40] = { 37, 33.4, 2597, 300 }, + [41] = { 39.1, 32.1, 2597, 300 }, + [42] = { 52.9, 9.9, 2597, 300 }, + [43] = { 51.2, 9.4, 2597, 300 }, + [44] = { 50, 9.3, 2597, 300 }, + [45] = { 50.2, 8.9, 2597, 300 }, + [46] = { 51.2, 8.9, 2597, 300 }, + [47] = { 49.7, 8.8, 2597, 300 }, + [48] = { 51.7, 8.4, 2597, 300 }, + [49] = { 52.4, 8.3, 2597, 300 }, + [50] = { 50.4, 8.1, 2597, 300 }, + [51] = { 50.7, 7.9, 2597, 300 }, + [52] = { 51.7, 7.4, 2597, 300 }, + [53] = { 50.2, 6.8, 2597, 300 }, + [54] = { 52.4, 6.7, 2597, 300 }, + [55] = { 53.1, 6.7, 2597, 300 }, + [56] = { 52.1, 6.7, 2597, 300 }, + [57] = { 53.2, 6.1, 2597, 300 }, + [58] = { 50.5, 5.9, 2597, 300 }, + [59] = { 51.8, 5.4, 2597, 300 }, + [60] = { 52.2, 5.1, 2597, 300 }, + [61] = { 50, 4.4, 2597, 300 }, + [62] = { 52.5, 4, 2597, 300 }, + }, + }, + [176665] = { + ["coords"] = { + [1] = { 38.6, 41.3, 5135, 7200 }, + }, + }, + [176666] = { + ["coords"] = { + [1] = { 38.6, 42.2, 5135, 7200 }, + }, + }, + [176667] = { + ["coords"] = { + [1] = { 38.6, 39.7, 5135, 7200 }, + }, + }, + [176668] = { + ["coords"] = { + [1] = { 38.6, 38.8, 5135, 7200 }, + }, + }, + [176669] = { + ["coords"] = { + [1] = { 84.9, 82.9, 5135, 7200 }, + }, + }, + [176670] = { + ["coords"] = { + [1] = { 83.9, 82.7, 5135, 7200 }, + }, + }, + [176671] = { + ["coords"] = { + [1] = { 78, 75, 5135, 7200 }, + }, + }, + [176672] = { + ["coords"] = { + [1] = { 78.3, 69.4, 5135, 7200 }, + }, + }, + [176673] = { + ["coords"] = { + [1] = { 77.8, 26.1, 5135, 7200 }, + }, + }, + [176674] = { + ["coords"] = { + [1] = { 77.8, 23.7, 5135, 7200 }, + }, + }, + [176675] = { + ["coords"] = { + [1] = { 68.9, 23.7, 5135, 7200 }, + }, + }, + [176676] = { + ["coords"] = { + [1] = { 68.9, 26.1, 5135, 7200 }, + }, + }, + [176677] = { + ["coords"] = { + [1] = { 68.9, 13.7, 5135, 7200 }, + }, + }, + [176678] = { + ["coords"] = { + [1] = { 68.9, 16.1, 5135, 7200 }, + }, + }, + [176679] = { + ["coords"] = { + [1] = { 77.8, 16, 5135, 7200 }, + }, + }, + [176680] = { + ["coords"] = { + [1] = { 57.7, 23.7, 5135, 7200 }, + }, + }, + [176681] = { + ["coords"] = { + [1] = { 57.7, 26.1, 5135, 7200 }, + }, + }, + [176682] = { + ["coords"] = { + [1] = { 57.7, 13.7, 5135, 7200 }, + }, + }, + [176683] = { + ["coords"] = { + [1] = { 57.7, 16.1, 5135, 7200 }, + }, + }, + [176684] = { + ["coords"] = { + [1] = { 66.7, 16, 5135, 7200 }, + }, + }, + [176685] = { + ["coords"] = { + [1] = { 66.7, 13.7, 5135, 7200 }, + }, + }, + [176686] = { + ["coords"] = { + [1] = { 66.6, 26.1, 5135, 7200 }, + }, + }, + [176687] = { + ["coords"] = { + [1] = { 79.2, 62, 5135, 7200 }, + }, + }, + [176688] = { + ["coords"] = { + [1] = { 80.8, 62, 5135, 7200 }, + }, + }, + [176689] = { + ["coords"] = { + [1] = { 80.7, 48.6, 5135, 7200 }, + }, + }, + [176690] = { + ["coords"] = { + [1] = { 79.2, 48.6, 5135, 7200 }, + }, + }, + [176691] = { + ["coords"] = { + [1] = { 87.4, 48.5, 5135, 7200 }, + }, + }, + [176692] = { + ["coords"] = { + [1] = { 85.8, 48.5, 5135, 7200 }, + }, + }, + [176693] = { + ["coords"] = { + [1] = { 85.9, 61.9, 5135, 7200 }, + }, + }, + [176746] = { + ["coords"] = { + [1] = { 44.6, 28.9, 17, 180 }, + }, + }, + [176747] = { + ["coords"] = { + [1] = { 44.6, 28.8, 17, 180 }, + [2] = { 44.6, 28.7, 17, 180 }, + [3] = { 44.4, 27.6, 17, 180 }, + [4] = { 44.4, 27.4, 17, 180 }, + }, + }, + [176750] = { + ["coords"] = { + [1] = { 54.4, 63.8, 405, 1000 }, + [2] = { 46.2, 61.3, 405, 1000 }, + [3] = { 53.3, 61.2, 405, 1000 }, + [4] = { 54.4, 60.4, 405, 1000 }, + [5] = { 49, 60.1, 405, 1000 }, + [6] = { 54.2, 58.9, 405, 1000 }, + [7] = { 48.9, 58.8, 405, 1000 }, + [8] = { 50.8, 58.7, 405, 1000 }, + [9] = { 52.2, 58.6, 405, 1000 }, + [10] = { 52.9, 57.1, 405, 1000 }, + }, + }, + [176751] = { + ["coords"] = { + [1] = { 54.4, 63.8, 405, 500 }, + [2] = { 46.2, 61.3, 405, 500 }, + [3] = { 53.3, 61.2, 405, 500 }, + [4] = { 54.4, 60.4, 405, 500 }, + [5] = { 49, 60.1, 405, 500 }, + [6] = { 54.2, 58.9, 405, 500 }, + [7] = { 48.9, 58.8, 405, 500 }, + [8] = { 50.8, 58.7, 405, 500 }, + [9] = { 52.2, 58.6, 405, 500 }, + [10] = { 52.9, 57.1, 405, 500 }, + }, + }, + [176752] = { + ["coords"] = { + [1] = { 54.4, 62.8, 405, 500 }, + [2] = { 51.1, 60, 405, 500 }, + [3] = { 53.9, 58.1, 405, 500 }, + [4] = { 47.4, 57.7, 405, 500 }, + [5] = { 49.7, 57.1, 405, 500 }, + }, + }, + [176753] = { + ["coords"] = { + [1] = { 56.6, 43.3, 85, 300 }, + [2] = { 58.3, 42.9, 85, 300 }, + [3] = { 55.3, 42.7, 85, 300 }, + [4] = { 54.8, 42.5, 85, 300 }, + [5] = { 57.2, 42.2, 85, 300 }, + [6] = { 56.6, 42, 85, 300 }, + [7] = { 58.6, 41.3, 85, 300 }, + [8] = { 58.8, 40.6, 85, 300 }, + [9] = { 56.4, 40.2, 85, 300 }, + [10] = { 55.3, 40.2, 85, 300 }, + [11] = { 58.8, 40.1, 85, 300 }, + [12] = { 56.9, 39.9, 85, 300 }, + [13] = { 57.1, 39.8, 85, 300 }, + [14] = { 57.5, 39.5, 85, 300 }, + [15] = { 54.7, 39, 85, 300 }, + [16] = { 58, 38.7, 85, 300 }, + [17] = { 57.8, 38.4, 85, 300 }, + [18] = { 57, 37.9, 85, 300 }, + [19] = { 56.8, 37.8, 85, 300 }, + [20] = { 57.7, 36.1, 85, 300 }, + [21] = { 57.5, 36, 85, 300 }, + [22] = { 56.7, 35.1, 85, 300 }, + [23] = { 56.9, 34.9, 85, 300 }, + [24] = { 56.3, 34.6, 85, 300 }, + [25] = { 57.7, 34.4, 85, 300 }, + [26] = { 57.9, 34.2, 85, 300 }, + [27] = { 57.6, 33.9, 85, 300 }, + }, + }, + [176768] = { + ["coords"] = { + [1] = { 61.2, 61.8, 405, 900 }, + [2] = { 48.6, 69.4, 5536, 300 }, + }, + }, + [176785] = { + ["coords"] = { + [1] = { 44.1, 56.9, 1, 5 }, + }, + }, + [176787] = { + ["coords"] = { + [1] = { 73.3, 83.9, 406, 900 }, + }, + }, + [176789] = { + ["coords"] = { + [1] = { 18.1, 59.9, 331, 900 }, + [2] = { 54.7, 26.7, 406, 900 }, + }, + }, + [176793] = { + ["coords"] = { + [1] = { 76.7, 64.2, 12, 60 }, + [2] = { 79.3, 63.3, 12, 60 }, + [3] = { 77.1, 63, 12, 60 }, + [4] = { 81.6, 62.6, 12, 60 }, + [5] = { 76, 62.4, 12, 60 }, + [6] = { 78.4, 62.4, 12, 60 }, + [7] = { 80.6, 62.3, 12, 60 }, + [8] = { 76.8, 61.8, 12, 60 }, + [9] = { 81.3, 61.6, 12, 60 }, + [10] = { 80.2, 61.5, 12, 60 }, + [11] = { 78.9, 61.1, 12, 60 }, + [12] = { 82, 61, 12, 60 }, + [13] = { 77.2, 60.5, 12, 60 }, + [14] = { 83.9, 60.5, 12, 60 }, + [15] = { 82.8, 60.1, 12, 60 }, + [16] = { 80.2, 60, 12, 60 }, + [17] = { 77.3, 59.5, 12, 60 }, + [18] = { 83.5, 59.2, 12, 60 }, + [19] = { 81.8, 59.2, 12, 60 }, + [20] = { 79.8, 56.7, 12, 60 }, + [21] = { 80.5, 55.2, 12, 60 }, + [22] = { 80.9, 53.9, 12, 60 }, + [23] = { 79.7, 52.3, 12, 60 }, + [24] = { 80.9, 52.2, 12, 60 }, + [25] = { 80, 50.4, 12, 60 }, + }, + }, + [176794] = { + ["coords"] = { + [1] = { 48.1, 62.6, 406, 900 }, + }, + }, + [176795] = { + ["coords"] = { + [1] = { 48.1, 62.6, 406, 900 }, + }, + }, + [176796] = { + ["coords"] = { + [1] = { 48.1, 62.6, 406, 900 }, + }, + }, + [176797] = { + ["coords"] = { + [1] = { 48.1, 62.6, 406, 900 }, + }, + }, + [176798] = { + ["coords"] = { + [1] = { 42.8, 68.2, 406, 900 }, + }, + }, + [176799] = { + ["coords"] = { + [1] = { 54.9, 63, 406, 900 }, + }, + }, + [176800] = { + ["coords"] = { + [1] = { 55, 63.1, 406, 900 }, + }, + }, + [176801] = { + ["coords"] = { + [1] = { 54.9, 63, 406, 900 }, + }, + }, + [176807] = { + ["coords"] = { + [1] = { 22.1, 59.2, 45, 25 }, + [2] = { 66.8, 37.1, 618, 900 }, + }, + }, + [176808] = { + ["coords"] = { + [1] = { 87.8, 38.7, 3, 300 }, + [2] = { 68.2, 37, 618, 900 }, + }, + }, + [176809] = { + ["coords"] = { + [1] = { 69.6, 25.3, 2159, 180 }, + }, + }, + [176810] = { + ["coords"] = { + [1] = { 62.5, 39.2, 2159, 180 }, + }, + }, + [176811] = { + ["coords"] = { + [1] = { 64.4, 38.7, 2159, 180 }, + }, + }, + [176812] = { + ["coords"] = { + [1] = { 75.5, 27.9, 2159, 180 }, + }, + }, + [176813] = { + ["coords"] = { + [1] = { 73.6, 28.3, 2159, 180 }, + }, + }, + [176814] = { + ["coords"] = { + [1] = { 74.6, 31.7, 2159, 180 }, + }, + }, + [176815] = { + ["coords"] = { + [1] = { 72.7, 30.7, 2159, 180 }, + }, + }, + [176816] = { + ["coords"] = { + [1] = { 71.2, 35.3, 2159, 180 }, + }, + }, + [176817] = { + ["coords"] = { + [1] = { 73.8, 34.5, 2159, 180 }, + }, + }, + [176818] = { + ["coords"] = { + [1] = { 75.8, 37, 2159, 180 }, + }, + }, + [176819] = { + ["coords"] = { + [1] = { 70.7, 29.5, 2159, 180 }, + }, + }, + [176820] = { + ["coords"] = { + [1] = { 73.8, 42.1, 2159, 180 }, + }, + }, + [176821] = { + ["coords"] = { + [1] = { 70.6, 38.6, 2159, 180 }, + }, + }, + [176822] = { + ["coords"] = { + [1] = { 72.4, 39.2, 2159, 180 }, + }, + }, + [176823] = { + ["coords"] = { + [1] = { 65.9, 21.4, 2159, 180 }, + }, + }, + [176824] = { + ["coords"] = { + [1] = { 68.4, 20.8, 2159, 180 }, + }, + }, + [176825] = { + ["coords"] = { + [1] = { 67.4, 26.4, 2159, 180 }, + }, + }, + [176826] = { + ["coords"] = { + [1] = { 61.2, 42.1, 2159, 180 }, + }, + }, + [176827] = { + ["coords"] = { + [1] = { 68, 31, 2159, 180 }, + }, + }, + [176828] = { + ["coords"] = { + [1] = { 66.9, 33.5, 2159, 180 }, + }, + }, + [176829] = { + ["coords"] = { + [1] = { 68.6, 36.5, 2159, 180 }, + }, + }, + [176830] = { + ["coords"] = { + [1] = { 66.4, 36.6, 2159, 180 }, + }, + }, + [176831] = { + ["coords"] = { + [1] = { 63.2, 23, 2159, 180 }, + }, + }, + [176832] = { + ["coords"] = { + [1] = { 63.5, 26.1, 2159, 180 }, + }, + }, + [176833] = { + ["coords"] = { + [1] = { 65.3, 25.2, 2159, 180 }, + }, + }, + [176834] = { + ["coords"] = { + [1] = { 61.1, 25, 2159, 180 }, + }, + }, + [176835] = { + ["coords"] = { + [1] = { 64.2, 29.6, 2159, 180 }, + }, + }, + [176836] = { + ["coords"] = { + [1] = { 62.2, 30.6, 2159, 180 }, + }, + }, + [176837] = { + ["coords"] = { + [1] = { 61.4, 28.3, 2159, 180 }, + }, + }, + [176838] = { + ["coords"] = { + [1] = { 59.4, 28, 2159, 180 }, + }, + }, + [176839] = { + ["coords"] = { + [1] = { 60.3, 31.7, 2159, 180 }, + }, + }, + [176840] = { + ["coords"] = { + [1] = { 61, 34.5, 2159, 180 }, + }, + }, + [176841] = { + ["coords"] = { + [1] = { 59.2, 37.1, 2159, 180 }, + }, + }, + [176842] = { + ["coords"] = { + [1] = { 63.7, 35.4, 2159, 180 }, + }, + }, + [176865] = { + ["coords"] = { + [1] = { 53.9, 65.8, 139, 900 }, + [2] = { 7, 46.7, 4012, 900 }, + }, + }, + [176908] = { + ["coords"] = { + [1] = { 63.2, 45.4, 2159, 180 }, + }, + }, + [176909] = { + ["coords"] = { + [1] = { 64.3, 47.6, 2159, 180 }, + }, + }, + [176910] = { + ["coords"] = { + [1] = { 63.7, 50.4, 2159, 180 }, + }, + }, + [176911] = { + ["coords"] = { + [1] = { 61.8, 47.5, 2159, 180 }, + }, + }, + [176912] = { + ["coords"] = { + [1] = { 67.2, 50, 2159, 180 }, + }, + }, + [176913] = { + ["coords"] = { + [1] = { 67.4, 46.5, 2159, 180 }, + }, + }, + [176914] = { + ["coords"] = { + [1] = { 68.6, 44.5, 2159, 180 }, + }, + }, + [176915] = { + ["coords"] = { + [1] = { 67, 42.6, 2159, 180 }, + }, + }, + [176916] = { + ["coords"] = { + [1] = { 66.6, 54.9, 2159, 180 }, + }, + }, + [176917] = { + ["coords"] = { + [1] = { 64.8, 53.2, 2159, 180 }, + }, + }, + [176918] = { + ["coords"] = { + [1] = { 69.6, 53.8, 2159, 180 }, + }, + }, + [176919] = { + ["coords"] = { + [1] = { 70.6, 47.5, 2159, 180 }, + }, + }, + [176920] = { + ["coords"] = { + [1] = { 71.7, 45.4, 2159, 180 }, + }, + }, + [176921] = { + ["coords"] = { + [1] = { 73.1, 47.6, 2159, 180 }, + }, + }, + [176922] = { + ["coords"] = { + [1] = { 71.3, 50.3, 2159, 180 }, + }, + }, + [176944] = { + ["coords"] = { + [1] = { 47.6, 70.5, 2057, 604800 }, + }, + }, + [176951] = { + ["coords"] = { + [1] = { 77.8, 85.2, 2717, 300 }, + }, + }, + [176952] = { + ["coords"] = { + [1] = { 65.2, 70.2, 2717, 300 }, + }, + }, + [176953] = { + ["coords"] = { + [1] = { 53.2, 87, 2717, 300 }, + }, + }, + [176954] = { + ["coords"] = { + [1] = { 64.4, 65.5, 2717, 300 }, + }, + }, + [176955] = { + ["coords"] = { + [1] = { 32.4, 75.8, 2717, 300 }, + }, + }, + [176956] = { + ["coords"] = { + [1] = { 67.3, 31.2, 2717, 300 }, + }, + }, + [176957] = { + ["coords"] = { + [1] = { 36.2, 55.1, 2717, 300 }, + }, + }, + [176964] = { + ["coords"] = { + [1] = { 47.9, 73.7, 2677, 300 }, + }, + }, + [176965] = { + ["coords"] = { + [1] = { 35.7, 47.5, 2677, 300 }, + }, + }, + [176966] = { + ["coords"] = { + [1] = { 61.3, 28.2, 2677, 300 }, + }, + }, + [176967] = { + ["coords"] = { + [1] = { 31.7, 25.6, 139, 900 }, + [2] = { 78.1, 87.9, 5225, 900 }, + }, + }, + [176968] = { + ["coords"] = { + [1] = { 31.7, 25.6, 139, 900 }, + [2] = { 78.1, 87.9, 5225, 900 }, + }, + }, + [176969] = { + ["coords"] = { + [1] = { 31.7, 25.6, 139, 900 }, + [2] = { 78.1, 87.9, 5225, 900 }, + }, + }, + [176970] = { + ["coords"] = { + [1] = { 57.4, 36.8, 139, 900 }, + [2] = { 11.3, 11.3, 4012, 900 }, + }, + }, + [176971] = { + ["coords"] = { + [1] = { 57.4, 36.8, 139, 900 }, + [2] = { 11.3, 11.3, 4012, 900 }, + }, + }, + [176972] = { + ["coords"] = { + [1] = { 57.4, 36.8, 139, 900 }, + [2] = { 11.3, 11.3, 4012, 900 }, + }, + }, + [176973] = { + ["coords"] = { + [1] = { 57.4, 36.8, 139, 900 }, + [2] = { 11.3, 11.3, 4012, 900 }, + }, + }, + [176978] = { + ["coords"] = { + [1] = { 60, 67.9, 139, 900 }, + [2] = { 14.5, 49.4, 4012, 900 }, + }, + }, + [176979] = { + ["coords"] = { + [1] = { 60, 67.9, 139, 900 }, + [2] = { 14.5, 49.4, 4012, 900 }, + }, + }, + [176980] = { + ["coords"] = { + [1] = { 60, 67.9, 139, 900 }, + [2] = { 14.5, 49.4, 4012, 900 }, + }, + }, + [176981] = { + ["coords"] = { + [1] = { 60, 67.9, 139, 900 }, + [2] = { 14.5, 49.4, 4012, 900 }, + }, + }, + [176982] = { + ["coords"] = { + [1] = { 60, 67.9, 139, 900 }, + [2] = { 14.5, 49.4, 4012, 900 }, + }, + }, + [177000] = { + ["coords"] = { + [1] = { 78, 71.4, 2717, 600 }, + }, + }, + [177044] = { + ["coords"] = { + [1] = { 31.5, 66, 85, 25 }, + [2] = { 61.5, 53.1, 85, 300 }, + [3] = { 59.4, 57.7, 1497, 25 }, + [4] = { 75.1, 53.8, 1497, 25 }, + [5] = { 68.2, 38.3, 1497, 900 }, + [6] = { 72.5, 30.4, 1497, 25 }, + [7] = { 57.5, 27.3, 1497, 25 }, + }, + ["fac"] = "AH", + }, + [177188] = { + ["coords"] = { + [1] = { 60.3, 31.3, 357, 900 }, + [2] = { 57.7, 47.8, 2557, 900 }, + }, + }, + [177189] = { + ["coords"] = { + [1] = { 60.3, 30.1, 357, 900 }, + [2] = { 57.7, 41.7, 2557, 900 }, + }, + }, + [177192] = { + ["coords"] = { + [1] = { 62.5, 24.9, 357, 900 }, + [2] = { 69.2, 13.7, 2557, 900 }, + }, + }, + [177199] = { + ["coords"] = { + [1] = { 55.4, 55.7, 1519, 900 }, + }, + }, + [177200] = { + ["coords"] = { + [1] = { 69.2, 29.5, 1519, 120 }, + [2] = { 53.6, 93.2, 5581, 120 }, + }, + }, + [177201] = { + ["coords"] = { + [1] = { 69.8, 29.6, 1519, 180 }, + [2] = { 53.9, 93.3, 5581, 180 }, + }, + }, + [177202] = { + ["coords"] = { + [1] = { 69.1, 30.4, 1519, 120 }, + [2] = { 53.6, 93.7, 5581, 120 }, + }, + }, + [177217] = { + ["coords"] = { + [1] = { 28.9, 65.7, 2557, 0 }, + }, + }, + [177219] = { + ["coords"] = { + [1] = { 40.3, 78.2, 2557, 0 }, + }, + }, + [177224] = { + ["coords"] = { + [1] = { 31.2, 47.5, 33, 300 }, + [2] = { 79.4, 79.1, 47, 7200 }, + [3] = { 67.7, 23.2, 148, 25 }, + }, + }, + [177240] = { + ["coords"] = { + [1] = { 28.3, 86.9, 139, 2 }, + }, + }, + [177245] = { + ["coords"] = { + [1] = { 91.4, 74.7, 10, 900 }, + [2] = { 32.1, 71.7, 41, 900 }, + [3] = { 37.4, 46.2, 5086, 300 }, + [4] = { 43.5, 45.9, 5086, 300 }, + [5] = { 54.7, 45.6, 5086, 300 }, + [6] = { 37.1, 38.1, 5086, 0 }, + [7] = { 60.7, 37.2, 5086, 300 }, + [8] = { 37, 30, 5086, 0 }, + }, + }, + [177246] = { + ["coords"] = { + [1] = { 91.4, 76.5, 10, 900 }, + [2] = { 32.1, 73.6, 41, 900 }, + [3] = { 60.9, 45.3, 5086, 0 }, + [4] = { 43.4, 37.8, 5086, 0 }, + [5] = { 54.6, 37.5, 5086, 0 }, + [6] = { 54.5, 29.4, 5086, 0 }, + [7] = { 60.6, 29.1, 5086, 0 }, + }, + }, + [177249] = { + ["coords"] = { + [1] = { 90.2, 76.6, 10, 0 }, + [2] = { 90.2, 74.8, 10, 900 }, + [3] = { 30.7, 73.7, 41, 0 }, + [4] = { 30.7, 71.8, 41, 900 }, + }, + }, + [177264] = { + ["coords"] = { + [1] = { 71.3, 34, 139, 2 }, + [2] = { 28.4, 7.8, 4012, 2 }, + }, + }, + [177271] = { + ["coords"] = { + [1] = { 83.5, 79.2, 139, 900 }, + [2] = { 43.3, 63.2, 4012, 900 }, + }, + }, + [177272] = { + ["coords"] = { + [1] = { 56, 62, 141, 900 }, + [2] = { 35.5, 66, 1519, 120 }, + [3] = { 35.2, 65.9, 1519, 120 }, + [4] = { 35.7, 65.6, 1519, 120 }, + [5] = { 35.5, 65.4, 1519, 120 }, + }, + }, + [177274] = { + ["coords"] = { + [1] = { 25.4, 65, 141, 25 }, + [2] = { 25.2, 65, 141, 25 }, + [3] = { 25.6, 64.7, 141, 25 }, + [4] = { 25.2, 64.6, 141, 25 }, + [5] = { 25.4, 64.4, 141, 25 }, + [6] = { 37.8, 44, 148, 900 }, + [7] = { 85, 29.1, 616, 300 }, + [8] = { 39.6, 86.8, 1657, 25 }, + [9] = { 38.5, 86.7, 1657, 25 }, + [10] = { 40.4, 85.6, 1657, 25 }, + [11] = { 38.3, 84.9, 1657, 25 }, + [12] = { 39.3, 84, 1657, 25 }, + }, + }, + [177278] = { + ["coords"] = { + [1] = { 56, 61.9, 141, 900 }, + [2] = { 63.4, 58.1, 141, 900 }, + [3] = { 38.4, 34.1, 141, 900 }, + [4] = { 59.9, 33.1, 141, 900 }, + [5] = { 60.2, 72.9, 331, 900 }, + [6] = { 59.3, 60, 331, 900 }, + [7] = { 53.7, 46, 331, 900 }, + [8] = { 67.7, 9.8, 405, 900 }, + [9] = { 45.8, 81.9, 406, 900 }, + [10] = { 48.6, 33, 493, 900 }, + }, + }, + [177280] = { + ["coords"] = { + [1] = { 49.2, 33.3, 10, 3600 }, + [2] = { 47.2, 63.5, 141, 900 }, + [3] = { 37.8, 44.1, 148, 900 }, + [4] = { 41.6, 19.5, 406, 900 }, + [5] = { 46.2, 45.5, 493, 900 }, + [6] = { 52.5, 41.5, 493, 900 }, + }, + }, + [177287] = { + ["coords"] = { + [1] = { 39.3, 90.3, 2017, 180 }, + }, + }, + [177288] = { + ["coords"] = { + [1] = { 71.1, 90.2, 406, 900 }, + }, + }, + [177300] = { + ["coords"] = { + [1] = { 90.5, 48, 5086, 300 }, + }, + }, + [177301] = { + ["coords"] = {}, + }, + [177302] = { + ["coords"] = { + [1] = { 58.8, 45.4, 5086, 300 }, + }, + }, + [177303] = { + ["coords"] = {}, + }, + [177305] = { + ["coords"] = { + [1] = { 58.5, 29.2, 5086, 300 }, + }, + }, + [177306] = { + ["coords"] = { + [1] = { 56.6, 37.4, 5086, 300 }, + }, + }, + [177307] = { + ["coords"] = { + [1] = { 41.4, 46, 5086, 300 }, + }, + }, + [177308] = { + ["coords"] = { + [1] = { 56.6, 29.2, 5086, 300 }, + }, + }, + [177309] = { + ["coords"] = { + [1] = { 56.8, 45.4, 5086, 300 }, + }, + }, + [177310] = { + ["coords"] = { + [1] = { 57.6, 84.5, 5086, 300 }, + [2] = { 62, 84.2, 5086, 300 }, + [3] = { 69.8, 83.8, 5086, 300 }, + [4] = { 90.7, 82.3, 5086, 300 }, + [5] = { 70.4, 75.5, 5086, 300 }, + [6] = { 57.4, 73.6, 5086, 300 }, + [7] = { 63.9, 65.7, 5086, 300 }, + [8] = { 70.2, 63.6, 5086, 300 }, + [9] = { 57.3, 57.5, 5086, 300 }, + [10] = { 92, 56.4, 5086, 300 }, + [11] = { 88.2, 56, 5086, 300 }, + [12] = { 86.2, 51.3, 5086, 300 }, + [13] = { 70.1, 50.1, 5086, 300 }, + [14] = { 62.5, 46.9, 5086, 300 }, + [15] = { 80.2, 46.6, 5086, 300 }, + [16] = { 76.9, 46.4, 5086, 300 }, + [17] = { 71.7, 45, 5086, 300 }, + [18] = { 48.6, 43.6, 5086, 300 }, + [19] = { 33.7, 39.4, 5086, 300 }, + [20] = { 79.5, 37.9, 5086, 300 }, + [21] = { 70, 32.9, 5086, 300 }, + [22] = { 48.5, 32.2, 5086, 300 }, + [23] = { 43.4, 29.7, 5086, 300 }, + [24] = { 80.4, 28.9, 5086, 300 }, + [25] = { 76.1, 27.2, 5086, 300 }, + [26] = { 78.2, 27, 5086, 300 }, + }, + }, + [177311] = { + ["coords"] = {}, + }, + [177312] = { + ["coords"] = { + [1] = { 80.4, 66.8, 5086, 0 }, + }, + }, + [177371] = { + ["coords"] = { + [1] = { 78.5, 53.1, 2057, 7200 }, + }, + }, + [177372] = { + ["coords"] = { + [1] = { 78.8, 74, 2057, 7200 }, + }, + }, + [177373] = { + ["coords"] = { + [1] = { 85.2, 64, 2057, 7200 }, + }, + }, + [177374] = { + ["coords"] = { + [1] = { 69.5, 64.9, 2057, 7200 }, + }, + }, + [177375] = { + ["coords"] = { + [1] = { 78.7, 77.8, 2057, 7200 }, + }, + }, + [177376] = { + ["coords"] = { + [1] = { 78.5, 50.9, 2057, 7200 }, + }, + }, + [177377] = { + ["coords"] = { + [1] = { 87.6, 64, 2057, 7200 }, + }, + }, + [177378] = { + ["coords"] = { + [1] = { 56.2, 35.3, 2057, 7200 }, + }, + }, + [177379] = { + ["coords"] = { + [1] = { 56, 17.2, 2057, 7200 }, + }, + }, + [177380] = { + ["coords"] = { + [1] = { 37.8, 17.7, 2057, 7200 }, + }, + }, + [177381] = { + ["coords"] = { + [1] = { 38, 35.8, 2057, 7200 }, + }, + }, + [177382] = { + ["coords"] = { + [1] = { 57.6, 82.2, 2057, 7200 }, + }, + }, + [177383] = { + ["coords"] = { + [1] = { 57.6, 96.6, 2057, 7200 }, + }, + }, + [177384] = { + ["coords"] = { + [1] = { 44.8, 99.3, 2057, 7200 }, + }, + }, + [177385] = { + ["coords"] = { + [1] = { 51, 42.4, 2057, 7200 }, + }, + }, + [177387] = { + ["coords"] = { + [1] = { 33, 43.2, 2677, 250 }, + }, + }, + [177388] = { + ["coords"] = { + [1] = { 62, 84.1, 357, 2700 }, + [2] = { 73, 64.2, 357, 2700 }, + [3] = { 71.8, 63.8, 357, 2700 }, + [4] = { 75.3, 63.2, 357, 2700 }, + [5] = { 45.9, 87.7, 490, 2700 }, + [6] = { 48.8, 87.1, 490, 2700 }, + [7] = { 50.5, 86, 490, 2700 }, + [8] = { 48.2, 85, 490, 2700 }, + [9] = { 48.3, 84.9, 490, 2700 }, + [10] = { 46.4, 84.6, 490, 2700 }, + [11] = { 49.2, 84.6, 490, 2700 }, + [12] = { 48.1, 83.9, 490, 2700 }, + [13] = { 44.9, 83.8, 490, 2700 }, + [14] = { 46.6, 82.9, 490, 2700 }, + [15] = { 49.7, 82.7, 490, 2700 }, + [16] = { 43.5, 81, 490, 2700 }, + [17] = { 49.2, 80.2, 490, 2700 }, + [18] = { 39.2, 15.5, 490, 2700 }, + [19] = { 50.3, 93.3, 1377, 2700 }, + [20] = { 62.4, 80.3, 1377, 2700 }, + [21] = { 64.3, 73.2, 1377, 2700 }, + [22] = { 27.3, 69.9, 1377, 2700 }, + [23] = { 17.6, 69.6, 1377, 2700 }, + [24] = { 19.7, 65.5, 1377, 2700 }, + [25] = { 35.9, 65.1, 1377, 2700 }, + [26] = { 24, 56.6, 1377, 2700 }, + [27] = { 19.5, 55.4, 1377, 2700 }, + [28] = { 19.5, 55, 1377, 2700 }, + [29] = { 21.2, 54.7, 1377, 2700 }, + [30] = { 23.4, 51.7, 1377, 2700 }, + [31] = { 36.3, 49.2, 1377, 2700 }, + [32] = { 26.2, 47.5, 1377, 2700 }, + [33] = { 42, 30.2, 1377, 2700 }, + [34] = { 45.7, 29.2, 1377, 2700 }, + [35] = { 42.8, 28.5, 1377, 2700 }, + [36] = { 40.2, 27.6, 1377, 2700 }, + [37] = { 42.4, 27, 1377, 2700 }, + [38] = { 38.8, 16.2, 1377, 2700 }, + [39] = { 44.2, 15.8, 1377, 2700 }, + [40] = { 45.4, 15.8, 1377, 2700 }, + [41] = { 44.7, 15.1, 1377, 2700 }, + [42] = { 42.6, 13.3, 1377, 2700 }, + [43] = { 40.4, 13, 1377, 2700 }, + [44] = { 44.5, 12.5, 1377, 2700 }, + [45] = { 46.2, 12.2, 1377, 2700 }, + [46] = { 78.3, 11.6, 3478, 2700 }, + [47] = { 85.3, 10.1, 3478, 2700 }, + [48] = { 81.4, 9.7, 3478, 2700 }, + [49] = { 76.1, 4.1, 3478, 2700 }, + }, + }, + [177396] = { + ["coords"] = { + [1] = { 71.1, 38.5, 45, 300 }, + }, + }, + [177425] = { + ["coords"] = { + [1] = { 9.3, 64.5, 28, 25 }, + [2] = { 36.1, 44.3, 400, 25 }, + [3] = { 97.1, 80.3, 616, 300 }, + [4] = { 54.6, 87.2, 618, 300 }, + }, + }, + [177444] = { + ["coords"] = { + [1] = { 29.1, 62.6, 405, 900 }, + [2] = { 34.2, 59.5, 2100, 900 }, + }, + }, + [177464] = { + ["coords"] = { + [1] = { 42.1, 38.2, 139, 300 }, + [2] = { 25.2, 37.9, 139, 300 }, + [3] = { 26.5, 37.5, 139, 300 }, + [4] = { 32, 35.8, 139, 300 }, + [5] = { 38.8, 34.9, 139, 300 }, + [6] = { 42.8, 34.2, 139, 300 }, + [7] = { 45.9, 34, 139, 300 }, + [8] = { 19.5, 33.9, 139, 300 }, + [9] = { 28.5, 32.4, 139, 300 }, + [10] = { 36, 31.8, 139, 300 }, + [11] = { 40.6, 31.4, 139, 300 }, + [12] = { 26.1, 29.7, 139, 300 }, + [13] = { 31.3, 29.6, 139, 300 }, + [14] = { 20.4, 27.1, 139, 300 }, + [15] = { 44.4, 26.6, 139, 300 }, + [16] = { 33.8, 25.8, 139, 300 }, + [17] = { 23.8, 25.2, 139, 300 }, + [18] = { 41.2, 25.2, 139, 300 }, + [19] = { 43.7, 24.2, 139, 300 }, + [20] = { 22.4, 23.8, 139, 300 }, + [21] = { 35.6, 23.8, 139, 300 }, + [22] = { 39.7, 23.1, 139, 300 }, + [23] = { 29.9, 23.1, 139, 300 }, + [24] = { 30.4, 21.6, 139, 300 }, + [25] = { 22.4, 21.4, 139, 300 }, + [26] = { 20.4, 20.8, 139, 300 }, + [27] = { 87, 99.5, 5225, 300 }, + [28] = { 92.1, 98.7, 5225, 300 }, + [29] = { 95.9, 98.5, 5225, 300 }, + [30] = { 62.8, 98.4, 5225, 300 }, + [31] = { 74.1, 96.5, 5225, 300 }, + [32] = { 83.5, 95.7, 5225, 300 }, + [33] = { 89.3, 95.3, 5225, 300 }, + [34] = { 71.1, 93.1, 5225, 300 }, + [35] = { 77.7, 93, 5225, 300 }, + [36] = { 63.9, 89.8, 5225, 300 }, + [37] = { 94, 89.2, 5225, 300 }, + [38] = { 80.7, 88.2, 5225, 300 }, + [39] = { 68.2, 87.5, 5225, 300 }, + [40] = { 90.1, 87.4, 5225, 300 }, + [41] = { 93.1, 86.2, 5225, 300 }, + [42] = { 66.4, 85.7, 5225, 300 }, + [43] = { 83, 85.7, 5225, 300 }, + [44] = { 88.1, 84.8, 5225, 300 }, + [45] = { 75.9, 84.8, 5225, 300 }, + [46] = { 76.5, 82.9, 5225, 300 }, + [47] = { 66.5, 82.8, 5225, 300 }, + [48] = { 64, 81.9, 5225, 300 }, + }, + }, + [177484] = { + ["coords"] = { + [1] = { 50, 56.2, 1477, 25 }, + [2] = { 56, 51, 1477, 25 }, + [3] = { 44.1, 51, 1477, 25 }, + [4] = { 44.1, 40.7, 1477, 25 }, + [5] = { 56, 40.6, 1477, 25 }, + [6] = { 50.1, 35.5, 1477, 25 }, + }, + }, + [177485] = { + ["coords"] = { + [1] = { 50, 56.2, 1477, 25 }, + [2] = { 56, 51, 1477, 25 }, + [3] = { 44.1, 51, 1477, 25 }, + [4] = { 44.1, 40.7, 1477, 25 }, + [5] = { 56, 40.6, 1477, 25 }, + [6] = { 50.1, 35.5, 1477, 25 }, + }, + }, + [177494] = { + ["coords"] = { + [1] = { 33.9, 49.2, 10, 300 }, + [2] = { 33.6, 49.2, 10, 300 }, + [3] = { 33.7, 49.1, 10, 300 }, + [4] = { 33.5, 49.1, 10, 300 }, + [5] = { 33.7, 49, 10, 300 }, + [6] = { 33.6, 48.9, 10, 300 }, + [7] = { 33.3, 48.9, 10, 300 }, + [8] = { 33.3, 48.7, 10, 300 }, + [9] = { 43.9, 65.6, 12, 900 }, + [10] = { 66.6, 45.1, 15, 900 }, + }, + }, + [177495] = { + ["coords"] = { + [1] = { 66.6, 45.1, 15, 900 }, + }, + }, + [177496] = { + ["coords"] = { + [1] = { 64.2, 16, 4, 300 }, + [2] = { 64.1, 16, 4, 300 }, + [3] = { 66.6, 45.2, 15, 900 }, + [4] = { 34.1, 10.2, 17, 300 }, + [5] = { 34, 10.1, 17, 300 }, + [6] = { 34.1, 10.1, 17, 300 }, + [7] = { 34.1, 9.9, 17, 300 }, + [8] = { 34.1, 9.8, 17, 300 }, + [9] = { 42.1, 75.1, 40, 300 }, + [10] = { 79.5, 62.8, 406, 300 }, + [11] = { 79.5, 62.7, 406, 300 }, + [12] = { 79.4, 62.7, 406, 300 }, + [13] = { 79.3, 62.6, 406, 300 }, + [14] = { 79.4, 62.6, 406, 300 }, + [15] = { 79.4, 62.3, 406, 300 }, + [16] = { 79.4, 62.2, 406, 300 }, + [17] = { 58.9, 56, 1497, 300 }, + [18] = { 58.8, 55.7, 1497, 300 }, + [19] = { 58.2, 54.8, 1497, 300 }, + [20] = { 58.1, 54.6, 1497, 300 }, + [21] = { 67.3, 28.3, 1519, 300 }, + [22] = { 66.7, 27.2, 1519, 300 }, + [23] = { 55.3, 32.7, 1581, 300 }, + [24] = { 52.6, 92.6, 5581, 300 }, + [25] = { 52.2, 92, 5581, 300 }, + }, + }, + [177505] = { + ["coords"] = { + [1] = { 10.5, 60, 11, 7200 }, + [2] = { 61.6, 43.7, 409, 300 }, + }, + }, + [177510] = { + ["coords"] = { + [1] = { 10.4, 60.5, 11, 7200 }, + [2] = { 41.6, 55.4, 876, 300 }, + [3] = { 41.6, 54.4, 876, 300 }, + }, + }, + [177513] = { + ["coords"] = { + [1] = { 10.8, 60.6, 11, 7200 }, + [2] = { 26.8, 25, 5208, 300 }, + }, + }, + [177514] = { + ["coords"] = { + [1] = { 10.7, 61, 11, 7200 }, + [2] = { 22.4, 59.1, 45, 25 }, + [3] = { 22.4, 59, 45, 25 }, + [4] = { 21.9, 58.8, 45, 25 }, + [5] = { 22, 58.7, 45, 25 }, + [6] = { 53.7, 37.1, 5130, 300 }, + [7] = { 53.6, 37.1, 5130, 300 }, + [8] = { 55.3, 36.4, 5130, 300 }, + [9] = { 55.2, 36.2, 5130, 300 }, + [10] = { 55.3, 36.1, 5130, 300 }, + [11] = { 55.2, 33.3, 5130, 300 }, + [12] = { 55, 33.3, 5130, 300 }, + [13] = { 55.4, 33.3, 5130, 300 }, + [14] = { 54.6, 33.3, 5130, 300 }, + [15] = { 54.7, 33.3, 5130, 300 }, + [16] = { 55.7, 33.3, 5130, 300 }, + [17] = { 55.5, 33.2, 5130, 300 }, + [18] = { 54.4, 33.2, 5130, 300 }, + [19] = { 55.4, 33, 5130, 300 }, + [20] = { 54.5, 33, 5130, 300 }, + [21] = { 54.9, 33, 5130, 300 }, + [22] = { 54.7, 33, 5130, 300 }, + [23] = { 55, 33, 5130, 300 }, + [24] = { 54.6, 32.5, 5130, 300 }, + [25] = { 55, 32.5, 5130, 300 }, + [26] = { 54.9, 32.5, 5130, 300 }, + [27] = { 54.7, 32.5, 5130, 300 }, + [28] = { 55.4, 32.5, 5130, 300 }, + [29] = { 54.4, 32.3, 5130, 300 }, + [30] = { 55.5, 32.3, 5130, 300 }, + [31] = { 55.3, 32.2, 5130, 300 }, + [32] = { 54.9, 32.1, 5130, 300 }, + [33] = { 55, 32.1, 5130, 300 }, + [34] = { 54.6, 32.1, 5130, 300 }, + [35] = { 55.2, 32.1, 5130, 300 }, + [36] = { 54.7, 32.1, 5130, 300 }, + }, + }, + [177524] = { + ["coords"] = { + [1] = { 17.9, 32.9, 40, 900 }, + [2] = { 29.6, 29.5, 130, 900 }, + [3] = { 19.2, 86.2, 405, 900 }, + [4] = { 19.1, 81.3, 405, 900 }, + [5] = { 22.5, 79.9, 405, 900 }, + [6] = { 19, 77.7, 405, 900 }, + [7] = { 21.2, 76.1, 405, 900 }, + [8] = { 25.4, 38.8, 405, 900 }, + [9] = { 30.6, 34.7, 405, 900 }, + [10] = { 33.2, 31.7, 405, 900 }, + [11] = { 36.6, 20, 405, 900 }, + [12] = { 34.4, 17.6, 405, 900 }, + [13] = { 31.2, 15.8, 405, 900 }, + [14] = { 30.9, 13.2, 405, 900 }, + [15] = { 36, 12.4, 405, 900 }, + [16] = { 33.2, 9.7, 405, 900 }, + [17] = { 20, 81.8, 406, 900 }, + [18] = { 55.4, 53, 493, 900 }, + [19] = { 51.5, 51.6, 493, 900 }, + }, + }, + [177525] = { + ["coords"] = { + [1] = { 42, 60.9, 17, 900 }, + [2] = { 53.1, 90.1, 45, 25 }, + [3] = { 43.5, 46, 148, 900 }, + [4] = { 71.7, 65, 215, 900 }, + [5] = { 47.7, 54.4, 331, 25 }, + }, + }, + [177528] = { + ["coords"] = { + [1] = { 39.1, 91.4, 139, 25 }, + }, + }, + [177544] = { + ["coords"] = { + [1] = { 36.2, 90.6, 139, 2 }, + }, + }, + [177606] = { + ["coords"] = { + [1] = { 38.5, 38.5, 1583, 86400 }, + }, + }, + [177644] = { + ["coords"] = { + [1] = { 42, 60.9, 17, 900 }, + [2] = { 71.7, 65, 215, 900 }, + }, + }, + [177667] = { + ["coords"] = { + [1] = { 27.3, 85.2, 139, 2 }, + }, + }, + [177668] = { + ["coords"] = { + [1] = { 40.7, 38.6, 139, 345 }, + [2] = { 27, 36.6, 139, 345 }, + [3] = { 32.2, 30.8, 139, 345 }, + [4] = { 43.5, 26.2, 139, 345 }, + [5] = { 29.3, 24, 139, 345 }, + [6] = { 33, 23.9, 139, 345 }, + [7] = { 23.5, 21.9, 139, 345 }, + [8] = { 37.7, 19.7, 139, 345 }, + [9] = { 78.8, 94.4, 5225, 345 }, + [10] = { 92.9, 88.7, 5225, 345 }, + [11] = { 75.1, 86, 5225, 345 }, + [12] = { 79.7, 85.8, 5225, 345 }, + [13] = { 67.8, 83.3, 5225, 345 }, + [14] = { 85.6, 80.5, 5225, 345 }, + }, + }, + [177675] = { + ["coords"] = { + [1] = { 28, 86.2, 139, 2 }, + }, + }, + [177677] = { + ["coords"] = { + [1] = { 70.3, 17.3, 139, 900 }, + [2] = { 70.5, 17.2, 139, 900 }, + [3] = { 70.2, 17.2, 139, 900 }, + [4] = { 70.4, 17.1, 139, 900 }, + [5] = { 70.6, 17.1, 139, 900 }, + [6] = { 70, 17, 139, 900 }, + [7] = { 70.5, 17, 139, 900 }, + [8] = { 70.2, 17, 139, 900 }, + [9] = { 70.4, 16.9, 139, 900 }, + [10] = { 70.7, 16.8, 139, 900 }, + [11] = { 70.2, 16.7, 139, 900 }, + [12] = { 70, 16.7, 139, 900 }, + [13] = { 70.3, 16.6, 139, 900 }, + [14] = { 70.5, 16.6, 139, 900 }, + [15] = { 70.2, 16.4, 139, 900 }, + [16] = { 70.4, 16.4, 139, 900 }, + [17] = { 70.3, 16.2, 139, 900 }, + [18] = { 70.2, 16.2, 139, 900 }, + }, + }, + [177706] = { + ["coords"] = { + [1] = { 33.9, 53.5, 405, 900 }, + [2] = { 60.8, 10.2, 2100, 900 }, + }, + }, + [177724] = { + ["coords"] = { + [1] = { 41.6, 14.2, 28, 1200 }, + [2] = { 11.9, 96.6, 5225, 1200 }, + }, + }, + [177725] = { + ["coords"] = { + [1] = { 41.6, 14.2, 28, 1200 }, + [2] = { 11.9, 96.7, 5225, 1200 }, + }, + }, + [177726] = { + ["coords"] = { + [1] = { 43.7, 17.5, 28, 7200 }, + [2] = { 43.5, 17.4, 28, 7200 }, + [3] = { 44.1, 17.2, 28, 7200 }, + [4] = { 46, 17, 28, 7200 }, + [5] = { 45.8, 15.9, 28, 7200 }, + [6] = { 46, 15.7, 28, 7200 }, + [7] = { 44.2, 14.2, 28, 7200 }, + [8] = { 44.2, 13.4, 28, 7200 }, + [9] = { 44.8, 12.4, 28, 7200 }, + [10] = { 17.8, 99, 5225, 7200 }, + [11] = { 18, 98.8, 5225, 7200 }, + [12] = { 15.6, 96.6, 5225, 7200 }, + [13] = { 15.6, 95.5, 5225, 7200 }, + [14] = { 16.4, 94.1, 5225, 7200 }, + }, + }, + [177727] = { + ["coords"] = { + [1] = { 41.6, 13.8, 28, 1200 }, + [2] = { 12, 96.1, 5225, 1200 }, + }, + }, + [177747] = { + ["coords"] = { + [1] = { 52.1, 18.3, 139, 2 }, + }, + }, + [177784] = { + ["coords"] = { + [1] = { 32.8, 35.3, 405, 900 }, + [2] = { 35.3, 34.7, 405, 900 }, + [3] = { 30.5, 34.2, 405, 900 }, + [4] = { 33.9, 33.3, 405, 900 }, + [5] = { 34.1, 30.7, 405, 900 }, + [6] = { 31.9, 30.6, 405, 900 }, + [7] = { 32.9, 28.6, 405, 900 }, + [8] = { 34.2, 27.5, 405, 900 }, + [9] = { 32.7, 25.3, 405, 900 }, + [10] = { 35.4, 25, 405, 900 }, + [11] = { 30.8, 24.3, 405, 900 }, + [12] = { 34.3, 23.1, 405, 900 }, + }, + }, + [177785] = { + ["coords"] = { + [1] = { 54.3, 55.7, 493, 180 }, + [2] = { 54.1, 50.2, 493, 180 }, + [3] = { 53, 48.4, 493, 180 }, + [4] = { 54.6, 46.5, 493, 180 }, + }, + }, + [177786] = { + ["coords"] = { + [1] = { 30, 8.7, 405, 2 }, + }, + }, + [177787] = { + ["coords"] = { + [1] = { 36.1, 30.4, 405, 2 }, + }, + }, + [177789] = { + ["coords"] = { + [1] = { 17.4, 31.1, 139, 2 }, + [2] = { 60.2, 94.8, 5225, 2 }, + }, + }, + [177790] = { + ["coords"] = { + [1] = { 29.5, 29.6, 130, 25 }, + }, + }, + [177791] = { + ["coords"] = { + [1] = { 20, 32.9, 40, 180 }, + }, + }, + [177792] = { + ["coords"] = { + [1] = { 48.9, 11.3, 148, 50 }, + }, + }, + [177805] = { + ["coords"] = { + [1] = { 28.8, 74.9, 139, 300 }, + }, + }, + [177806] = { + ["coords"] = { + [1] = { 28.8, 79.8, 139, 30 }, + }, + }, + [177807] = { + ["coords"] = { + [1] = { 40, 70.3, 2677, 300 }, + [2] = { 33.5, 69.9, 2677, 300 }, + [3] = { 42.9, 67.8, 2677, 300 }, + [4] = { 45, 67.3, 2677, 300 }, + [5] = { 35.2, 65.3, 2677, 300 }, + [6] = { 38.1, 64.8, 2677, 300 }, + [7] = { 43.2, 63.1, 2677, 300 }, + [8] = { 46.6, 62.2, 2677, 300 }, + [9] = { 40.1, 61.5, 2677, 300 }, + [10] = { 50, 61.1, 2677, 300 }, + [11] = { 51.7, 60.1, 2677, 300 }, + [12] = { 38.3, 59.5, 2677, 300 }, + [13] = { 33.3, 59.5, 2677, 300 }, + [14] = { 41.9, 58.5, 2677, 300 }, + [15] = { 36, 57.7, 2677, 300 }, + [16] = { 46.3, 57.2, 2677, 300 }, + [17] = { 44.6, 56.1, 2677, 300 }, + [18] = { 41.4, 55.7, 2677, 300 }, + [19] = { 49.1, 55.4, 2677, 300 }, + [20] = { 38.3, 55.2, 2677, 300 }, + [21] = { 47.9, 54.9, 2677, 300 }, + [22] = { 50.1, 53.6, 2677, 300 }, + [23] = { 47.1, 52.6, 2677, 300 }, + [24] = { 48.4, 52.4, 2677, 300 }, + [25] = { 50.7, 52.3, 2677, 300 }, + [26] = { 40.3, 51.6, 2677, 300 }, + [27] = { 42.9, 51.3, 2677, 300 }, + [28] = { 48.9, 50.8, 2677, 300 }, + [29] = { 43.4, 48.1, 2677, 300 }, + [30] = { 45.1, 46.7, 2677, 300 }, + }, + }, + [177808] = { + ["coords"] = { + [1] = { 36.4, 66.4, 2677, 300 }, + }, + }, + [177844] = { + ["coords"] = { + [1] = { 17.9, 33.1, 40, 50 }, + }, + }, + [177904] = { + ["coords"] = { + [1] = { 59.6, 74.6, 406, 2 }, + }, + ["fac"] = "H", + }, + [177926] = { + ["coords"] = { + [1] = { 52, 49.7, 406, 180 }, + [2] = { 50.6, 49.1, 406, 180 }, + [3] = { 51.4, 48.7, 406, 180 }, + [4] = { 52, 48.2, 406, 180 }, + [5] = { 53.7, 47.7, 406, 180 }, + [6] = { 53, 46.5, 406, 180 }, + [7] = { 50.7, 45.4, 406, 180 }, + [8] = { 49.3, 45.2, 406, 180 }, + [9] = { 52.4, 44.9, 406, 180 }, + [10] = { 52.6, 43.3, 406, 180 }, + [11] = { 52.8, 42.8, 406, 180 }, + [12] = { 51, 42.2, 406, 180 }, + }, + }, + [177927] = { + ["coords"] = { + [1] = { 50.1, 60.5, 406, 900 }, + }, + }, + [177929] = { + ["coords"] = { + [1] = { 41.4, 73.5, 406, 120 }, + [2] = { 36.4, 73, 406, 120 }, + [3] = { 39, 72.3, 406, 120 }, + [4] = { 37.1, 71.9, 406, 120 }, + [5] = { 39.8, 71.8, 406, 120 }, + [6] = { 41.6, 71.5, 406, 120 }, + [7] = { 35.7, 71, 406, 120 }, + [8] = { 39, 70.6, 406, 120 }, + [9] = { 36.4, 70.6, 406, 120 }, + [10] = { 37.6, 70.4, 406, 120 }, + [11] = { 40.8, 70.2, 406, 120 }, + [12] = { 37.9, 70, 406, 120 }, + [13] = { 40.8, 69.9, 406, 120 }, + [14] = { 39.7, 69.2, 406, 120 }, + [15] = { 39, 69.1, 406, 120 }, + [16] = { 35.3, 69, 406, 120 }, + [17] = { 37.1, 68.7, 406, 120 }, + [18] = { 36.1, 68.6, 406, 120 }, + [19] = { 37.8, 68.4, 406, 120 }, + [20] = { 40.9, 68.3, 406, 120 }, + [21] = { 36.2, 68, 406, 120 }, + [22] = { 39, 67.5, 406, 120 }, + [23] = { 36.7, 67.1, 406, 120 }, + [24] = { 42.4, 66.8, 406, 120 }, + [25] = { 40.7, 66.8, 406, 120 }, + [26] = { 40.9, 66, 406, 120 }, + [27] = { 34.3, 65.6, 406, 120 }, + [28] = { 37.6, 65.2, 406, 120 }, + [29] = { 35.3, 64.8, 406, 120 }, + [30] = { 40.3, 64.8, 406, 120 }, + [31] = { 36.1, 63.8, 406, 120 }, + [32] = { 39.2, 63.4, 406, 120 }, + [33] = { 37.1, 62.9, 406, 120 }, + [34] = { 39.5, 62.8, 406, 120 }, + }, + }, + [177964] = { + ["coords"] = { + [1] = { 44.9, 83.6, 719, 10 }, + }, + }, + [177984] = { + ["coords"] = { + [1] = { 69.6, 25.3, 2159, 180 }, + }, + }, + [177985] = { + ["coords"] = { + [1] = { 62.5, 39.2, 2159, 180 }, + }, + }, + [178084] = { + ["coords"] = { + [1] = { 22.8, 80, 1, 5 }, + [2] = { 48.7, 8.2, 5581, 5 }, + }, + }, + [178085] = { + ["coords"] = { + [1] = { 26.3, 79.3, 1, 5 }, + [2] = { 54.1, 7.1, 5581, 5 }, + }, + }, + [178087] = { + ["coords"] = { + [1] = { 43.7, 53.8, 14, 2 }, + }, + }, + [178104] = { + ["coords"] = { + [1] = { 85.8, 19.2, 405, 180 }, + [2] = { 87.1, 18.4, 405, 180 }, + [3] = { 86.1, 18.4, 405, 180 }, + [4] = { 87.3, 18.2, 405, 180 }, + [5] = { 86.7, 18.1, 405, 180 }, + [6] = { 86.7, 17.7, 405, 180 }, + [7] = { 88.1, 17.2, 405, 180 }, + [8] = { 84.8, 16.9, 405, 180 }, + [9] = { 86.7, 16.6, 405, 180 }, + [10] = { 87.9, 16.5, 405, 180 }, + [11] = { 88.6, 16.4, 405, 180 }, + [12] = { 86.7, 16.3, 405, 180 }, + [13] = { 86.5, 16.1, 405, 180 }, + [14] = { 87.2, 15.5, 405, 180 }, + [15] = { 86.3, 15.4, 405, 180 }, + [16] = { 84.3, 15.2, 405, 180 }, + [17] = { 86.2, 15.1, 405, 180 }, + [18] = { 59.3, 88.9, 406, 180 }, + [19] = { 60.3, 88.3, 406, 180 }, + [20] = { 59.6, 88.3, 406, 180 }, + [21] = { 60.5, 88.1, 406, 180 }, + [22] = { 60.1, 88.1, 406, 180 }, + [23] = { 60, 87.8, 406, 180 }, + [24] = { 61.1, 87.4, 406, 180 }, + [25] = { 58.6, 87.1, 406, 180 }, + [26] = { 60.1, 86.9, 406, 180 }, + [27] = { 61, 86.9, 406, 180 }, + [28] = { 61.5, 86.8, 406, 180 }, + [29] = { 60.1, 86.7, 406, 180 }, + [30] = { 59.9, 86.6, 406, 180 }, + [31] = { 60.4, 86.1, 406, 180 }, + [32] = { 59.7, 86.1, 406, 180 }, + [33] = { 58.3, 85.9, 406, 180 }, + [34] = { 59.7, 85.8, 406, 180 }, + }, + }, + [178105] = { + ["coords"] = { + [1] = { 85.5, 18.4, 405, 300 }, + [2] = { 88.1, 18.2, 405, 300 }, + [3] = { 88.5, 18.1, 405, 300 }, + [4] = { 85.6, 17.9, 405, 300 }, + [5] = { 87.1, 17.6, 405, 300 }, + [6] = { 86.4, 17.2, 405, 300 }, + [7] = { 86.7, 17.2, 405, 300 }, + [8] = { 85.7, 16.3, 405, 300 }, + [9] = { 87.2, 15.5, 405, 300 }, + [10] = { 85.2, 15.3, 405, 300 }, + [11] = { 84.2, 14.7, 405, 300 }, + [12] = { 59.1, 88.3, 406, 300 }, + [13] = { 61.1, 88.1, 406, 300 }, + [14] = { 61.4, 88, 406, 300 }, + [15] = { 59.2, 87.9, 406, 300 }, + [16] = { 60.4, 87.7, 406, 300 }, + [17] = { 59.8, 87.4, 406, 300 }, + [18] = { 60.1, 87.4, 406, 300 }, + [19] = { 59.3, 86.7, 406, 300 }, + [20] = { 60.4, 86.1, 406, 300 }, + [21] = { 58.9, 86, 406, 300 }, + [22] = { 58.2, 85.5, 406, 300 }, + }, + }, + [178106] = { + ["coords"] = { + [1] = { 86.9, 18.7, 405, 300 }, + [2] = { 86.5, 18.6, 405, 300 }, + [3] = { 88.1, 18.2, 405, 300 }, + [4] = { 86.5, 17.5, 405, 300 }, + [5] = { 87.2, 17.3, 405, 300 }, + [6] = { 87.2, 16.8, 405, 300 }, + [7] = { 88.7, 16.7, 405, 300 }, + [8] = { 86, 16.5, 405, 300 }, + [9] = { 87.4, 16.2, 405, 300 }, + [10] = { 84.1, 15.6, 405, 300 }, + [11] = { 60.2, 88.5, 406, 300 }, + [12] = { 59.9, 88.5, 406, 300 }, + [13] = { 61.1, 88.1, 406, 300 }, + [14] = { 59.9, 87.6, 406, 300 }, + [15] = { 60.4, 87.5, 406, 300 }, + [16] = { 60.4, 87.1, 406, 300 }, + [17] = { 61.5, 87, 406, 300 }, + [18] = { 59.5, 86.8, 406, 300 }, + [19] = { 60.6, 86.6, 406, 300 }, + [20] = { 58.1, 86.2, 406, 300 }, + }, + }, + [178124] = "_", + [178144] = { + ["coords"] = { + [1] = { 41.7, 35.7, 331, 180 }, + [2] = { 41.2, 35.4, 331, 180 }, + [3] = { 41.5, 34.8, 331, 180 }, + [4] = { 41.7, 34.5, 331, 180 }, + [5] = { 40.5, 34.4, 331, 180 }, + [6] = { 41.3, 34.2, 331, 180 }, + [7] = { 39.9, 34.2, 331, 180 }, + [8] = { 40.9, 33.6, 331, 180 }, + [9] = { 40.4, 33.2, 331, 180 }, + [10] = { 40, 33.1, 331, 180 }, + [11] = { 39.7, 32.9, 331, 180 }, + [12] = { 40.8, 32.8, 331, 180 }, + [13] = { 40.5, 32.3, 331, 180 }, + [14] = { 40.9, 31.6, 331, 180 }, + [15] = { 40.2, 31, 331, 180 }, + [16] = { 40.8, 100, 361, 180 }, + [17] = { 40.6, 99, 361, 180 }, + [18] = { 40.8, 98.8, 361, 180 }, + [19] = { 39.6, 98.7, 361, 180 }, + [20] = { 40.4, 98.5, 361, 180 }, + [21] = { 40, 97.9, 361, 180 }, + [22] = { 39.5, 97.5, 361, 180 }, + [23] = { 39.1, 97.4, 361, 180 }, + [24] = { 38.8, 97.2, 361, 180 }, + [25] = { 39.9, 97.1, 361, 180 }, + [26] = { 39.6, 96.5, 361, 180 }, + [27] = { 40.1, 95.9, 361, 180 }, + [28] = { 39.3, 95.3, 361, 180 }, + }, + }, + [178145] = { + ["coords"] = { + [1] = { 84.5, 15, 405, 900 }, + [2] = { 58.4, 85.7, 406, 900 }, + }, + }, + [178164] = { + ["coords"] = { + [1] = { 78, 71.6, 2717, 25 }, + }, + }, + [178184] = { + ["coords"] = { + [1] = { 30.3, 95.5, 148, 300 }, + [2] = { 33.5, 95, 148, 300 }, + [3] = { 32, 92.8, 148, 300 }, + [4] = { 30, 92.5, 148, 300 }, + [5] = { 12.9, 13.2, 331, 300 }, + [6] = { 16.5, 12.7, 331, 300 }, + [7] = { 14.8, 10.2, 331, 300 }, + [8] = { 12.5, 9.9, 331, 300 }, + }, + }, + [178185] = { + ["coords"] = { + [1] = { 30.7, 95.1, 148, 300 }, + [2] = { 33.5, 93.9, 148, 300 }, + [3] = { 30.3, 92.2, 148, 300 }, + [4] = { 31.5, 91.3, 148, 300 }, + [5] = { 13.4, 12.8, 331, 300 }, + [6] = { 16.5, 11.4, 331, 300 }, + [7] = { 12.9, 9.5, 331, 300 }, + [8] = { 14.2, 8.4, 331, 300 }, + }, + }, + [178186] = { + ["coords"] = { + [1] = { 33.9, 94.7, 148, 300 }, + [2] = { 31.1, 94.2, 148, 300 }, + [3] = { 30.6, 92.2, 148, 300 }, + [4] = { 31.8, 91.4, 148, 300 }, + [5] = { 17, 12.4, 331, 300 }, + [6] = { 13.8, 11.8, 331, 300 }, + [7] = { 13.2, 9.5, 331, 300 }, + [8] = { 14.6, 8.6, 331, 300 }, + }, + }, + [178187] = { + ["coords"] = { + [1] = { 77.8, 85.2, 2717, 600 }, + }, + }, + [178188] = { + ["coords"] = { + [1] = { 65.2, 70.2, 2717, 600 }, + }, + }, + [178189] = { + ["coords"] = { + [1] = { 53.2, 87, 2717, 600 }, + }, + }, + [178190] = { + ["coords"] = { + [1] = { 64.4, 65.5, 2717, 600 }, + }, + }, + [178191] = { + ["coords"] = { + [1] = { 32.4, 75.8, 2717, 600 }, + }, + }, + [178192] = { + ["coords"] = { + [1] = { 67.3, 31.2, 2717, 600 }, + }, + }, + [178193] = { + ["coords"] = { + [1] = { 36.2, 55.1, 2717, 600 }, + }, + }, + [178194] = { + ["coords"] = { + [1] = { 65.8, 68.9, 2717, 25 }, + }, + }, + [178195] = { + ["coords"] = { + [1] = { 66.9, 57.1, 331, 2 }, + [2] = { 66.5, 56.8, 331, 2 }, + [3] = { 67, 56.7, 331, 2 }, + [4] = { 79.5, 50.7, 331, 2 }, + [5] = { 78.4, 45.1, 331, 2 }, + [6] = { 78.2, 44.8, 331, 2 }, + }, + }, + [178224] = { + ["coords"] = { + [1] = { 58.9, 36, 357, 900 }, + [2] = { 50.5, 72.8, 2557, 900 }, + }, + }, + [178225] = { + ["coords"] = { + [1] = { 58.9, 36, 357, 900 }, + [2] = { 50.5, 72.8, 2557, 900 }, + }, + }, + [178226] = { + ["coords"] = { + [1] = { 9, 64.8, 28, 25 }, + [2] = { 9, 64.7, 28, 25 }, + [3] = { 9, 64.5, 28, 25 }, + [4] = { 9, 64.4, 28, 25 }, + [5] = { 9.1, 64.1, 28, 25 }, + [6] = { 9.1, 64, 28, 25 }, + [7] = { 71.7, 50.2, 28, 25 }, + [8] = { 20.8, 47.5, 45, 25 }, + [9] = { 73.1, 37, 45, 7200 }, + [10] = { 73, 36.9, 45, 7200 }, + [11] = { 72.9, 36.9, 45, 7200 }, + [12] = { 73.2, 36.8, 45, 7200 }, + [13] = { 73.1, 36.8, 45, 7200 }, + [14] = { 72.9, 36.7, 45, 7200 }, + [15] = { 12.4, 72.5, 139, 25 }, + [16] = { 88.1, 57.7, 1497, 25 }, + [17] = { 88.1, 57.3, 1497, 25 }, + }, + }, + [178244] = { + ["coords"] = { + [1] = { 52, 45.3, 44, 5 }, + [2] = { 51.9, 45.1, 44, 5 }, + [3] = { 51.7, 44.9, 44, 5 }, + [4] = { 61.6, 64.1, 1519, 300 }, + }, + }, + [178246] = { + ["coords"] = { + [1] = { 52.1, 45.5, 44, 7200 }, + [2] = { 52.3, 45.4, 44, 7200 }, + }, + }, + [178248] = "_", + [178304] = { + ["coords"] = { + [1] = { 46.3, 57, 5144, 120 }, + [2] = { 46.4, 55.5, 5144, 120 }, + [3] = { 46.3, 54.1, 5144, 120 }, + }, + }, + [178364] = { + ["coords"] = { + [1] = { 49.3, 88.1, 2597, 0 }, + [2] = { 50.2, 76.7, 2597, 0 }, + [3] = { 51.4, 60.1, 2597, 0 }, + [4] = { 44.7, 45.6, 2597, 0 }, + [5] = { 51.5, 34.2, 2597, 0 }, + [6] = { 42.8, 15.8, 2597, 0 }, + [7] = { 49, 14.7, 2597, 0 }, + }, + ["fac"] = "A", + }, + [178365] = { + ["coords"] = { + [1] = { 49.3, 88.1, 2597, 0 }, + [2] = { 50.2, 76.7, 2597, 0 }, + [3] = { 51.4, 60.1, 2597, 0 }, + [4] = { 44.7, 45.6, 2597, 0 }, + [5] = { 51.5, 34.2, 2597, 0 }, + [6] = { 42.8, 15.8, 2597, 0 }, + [7] = { 49, 14.7, 2597, 0 }, + }, + ["fac"] = "H", + }, + [178386] = { + ["coords"] = { + [1] = { 29.2, 61.2, 405, 900 }, + [2] = { 35.1, 52, 2100, 900 }, + }, + }, + [178405] = { + ["coords"] = { + [1] = { 29.2, 61.2, 405, 180 }, + [2] = { 35.1, 52, 2100, 180 }, + }, + }, + [178425] = { + ["coords"] = { + [1] = { 43.1, 65, 12, 180 }, + [2] = { 68.5, 19.8, 1537, 180 }, + }, + }, + [178426] = { + ["coords"] = { + [1] = { 51.9, 42.5, 14, 180 }, + [2] = { 61.2, 51.8, 85, 180 }, + [3] = { 38.6, 28, 215, 180 }, + [4] = { 40.7, 27.3, 215, 180 }, + [5] = { 52.2, 69.4, 1637, 180 }, + [6] = { 43.1, 54.8, 1638, 180 }, + [7] = { 53.8, 51.4, 1638, 180 }, + }, + }, + [178428] = { + ["coords"] = { + [1] = { 46.9, 53.1, 1, 180 }, + [2] = { 46.9, 53, 1, 180 }, + [3] = { 43, 65.1, 12, 180 }, + [4] = { 43.1, 65, 12, 180 }, + [5] = { 43.1, 64.9, 12, 180 }, + [6] = { 51.9, 42.6, 14, 180 }, + [7] = { 51.8, 42.5, 14, 180 }, + [8] = { 51.9, 42.5, 14, 180 }, + [9] = { 51.9, 42.4, 14, 180 }, + [10] = { 61.2, 51.9, 85, 180 }, + [11] = { 61.2, 51.8, 85, 180 }, + [12] = { 61.3, 51.8, 85, 180 }, + [13] = { 46.8, 59.9, 215, 180 }, + [14] = { 38.6, 28, 215, 180 }, + [15] = { 38.5, 28, 215, 180 }, + [16] = { 40.7, 27.3, 215, 180 }, + [17] = { 40.8, 27.3, 215, 180 }, + [18] = { 40.8, 27.2, 215, 180 }, + [19] = { 68.3, 36.5, 1497, 180 }, + [20] = { 68.2, 36.3, 1497, 180 }, + [21] = { 63.7, 77.6, 1519, 180 }, + [22] = { 60, 75.6, 1519, 180 }, + [23] = { 62, 70.1, 1519, 180 }, + [24] = { 62, 70, 1519, 180 }, + [25] = { 62.2, 69.9, 1519, 180 }, + [26] = { 68.6, 89.2, 1537, 180 }, + [27] = { 68.9, 89.1, 1537, 180 }, + [28] = { 68.6, 88.8, 1537, 180 }, + [29] = { 33.9, 67.9, 1537, 180 }, + [30] = { 34, 67.4, 1537, 180 }, + [31] = { 33.9, 66.5, 1537, 180 }, + [32] = { 34, 65.9, 1537, 180 }, + [33] = { 33.8, 65.9, 1537, 180 }, + [34] = { 33.9, 65.5, 1537, 180 }, + [35] = { 33.5, 65.3, 1537, 180 }, + [36] = { 37, 59.2, 1537, 180 }, + [37] = { 36.7, 59.1, 1537, 180 }, + [38] = { 36.5, 58.8, 1537, 180 }, + [39] = { 40.1, 51.5, 1537, 180 }, + [40] = { 40, 51.3, 1537, 180 }, + [41] = { 39.7, 51.3, 1537, 180 }, + [42] = { 68.6, 20.1, 1537, 180 }, + [43] = { 68.7, 19.9, 1537, 180 }, + [44] = { 68.4, 19.7, 1537, 180 }, + [45] = { 68.6, 19.6, 1537, 180 }, + [46] = { 24.6, 10.6, 1537, 180 }, + [47] = { 24.6, 10.2, 1537, 180 }, + [48] = { 52.3, 69.7, 1637, 180 }, + [49] = { 52.2, 69.6, 1637, 180 }, + [50] = { 52.1, 69.5, 1637, 180 }, + [51] = { 52.4, 69.5, 1637, 180 }, + [52] = { 52.1, 69.4, 1637, 180 }, + [53] = { 52.1, 69.2, 1637, 180 }, + [54] = { 52.3, 69.2, 1637, 180 }, + [55] = { 53.6, 66.8, 1637, 180 }, + [56] = { 53.5, 66.6, 1637, 180 }, + [57] = { 53.6, 66.4, 1637, 180 }, + [58] = { 53.5, 66.3, 1637, 180 }, + [59] = { 53.4, 66.3, 1637, 180 }, + [60] = { 53.3, 66.3, 1637, 180 }, + [61] = { 53.5, 66, 1637, 180 }, + [62] = { 53.5, 65.8, 1637, 180 }, + [63] = { 53.4, 65.7, 1637, 180 }, + [64] = { 43.1, 55, 1638, 180 }, + [65] = { 43, 55, 1638, 180 }, + [66] = { 43.2, 54.8, 1638, 180 }, + [67] = { 43, 54.7, 1638, 180 }, + [68] = { 53.8, 51.7, 1638, 180 }, + [69] = { 54, 51.5, 1638, 180 }, + [70] = { 53.9, 51.4, 1638, 180 }, + [71] = { 53.7, 51.3, 1638, 180 }, + [72] = { 53.6, 51.3, 1638, 180 }, + [73] = { 53.9, 51.2, 1638, 180 }, + }, + }, + [178429] = { + ["coords"] = { + [1] = { 46.9, 53, 1, 180 }, + [2] = { 43.1, 65.1, 12, 180 }, + [3] = { 43.1, 65, 12, 180 }, + [4] = { 43.1, 64.9, 12, 180 }, + [5] = { 51.9, 42.5, 14, 180 }, + [6] = { 26.8, 73.5, 33, 180 }, + [7] = { 61, 52.3, 85, 180 }, + [8] = { 61.2, 51.9, 85, 180 }, + [9] = { 61.2, 51.8, 85, 180 }, + [10] = { 46.8, 59.9, 215, 180 }, + [11] = { 38.6, 28, 215, 180 }, + [12] = { 40.7, 27.3, 215, 180 }, + [13] = { 40.8, 27.3, 215, 180 }, + [14] = { 40.8, 27.2, 215, 180 }, + [15] = { 40.7, 27.2, 215, 180 }, + [16] = { 68.1, 36.2, 1497, 180 }, + [17] = { 63.6, 77.5, 1519, 180 }, + [18] = { 68.1, 71.7, 1519, 180 }, + [19] = { 68.2, 71.6, 1519, 180 }, + [20] = { 62, 70, 1519, 180 }, + [21] = { 62.3, 69.7, 1519, 180 }, + [22] = { 62.4, 69.7, 1519, 180 }, + [23] = { 68.9, 89.2, 1537, 180 }, + [24] = { 68.7, 89, 1537, 180 }, + [25] = { 34, 68, 1537, 180 }, + [26] = { 34, 66.5, 1537, 180 }, + [27] = { 34.1, 65.8, 1537, 180 }, + [28] = { 33.7, 65.3, 1537, 180 }, + [29] = { 33.4, 65, 1537, 180 }, + [30] = { 36.8, 59.4, 1537, 180 }, + [31] = { 36.9, 59, 1537, 180 }, + [32] = { 36.6, 58.6, 1537, 180 }, + [33] = { 39.8, 51.1, 1537, 180 }, + [34] = { 40, 51.1, 1537, 180 }, + [35] = { 39.9, 50.8, 1537, 180 }, + [36] = { 68.8, 20, 1537, 180 }, + [37] = { 68.6, 20, 1537, 180 }, + [38] = { 68.4, 19.9, 1537, 180 }, + [39] = { 68.4, 19.5, 1537, 180 }, + [40] = { 24.3, 10.5, 1537, 180 }, + [41] = { 24.6, 10.4, 1537, 180 }, + [42] = { 52.2, 69.5, 1637, 180 }, + [43] = { 52.1, 69.3, 1637, 180 }, + [44] = { 52.4, 69.3, 1637, 180 }, + [45] = { 52.2, 69.1, 1637, 180 }, + [46] = { 53.6, 66.7, 1637, 180 }, + [47] = { 53.5, 66.5, 1637, 180 }, + [48] = { 53.6, 66.3, 1637, 180 }, + [49] = { 53.4, 66.2, 1637, 180 }, + [50] = { 53.4, 65.8, 1637, 180 }, + [51] = { 43.2, 55.1, 1638, 180 }, + [52] = { 43.2, 54.9, 1638, 180 }, + [53] = { 43.1, 54.6, 1638, 180 }, + [54] = { 53.7, 51.5, 1638, 180 }, + [55] = { 53.9, 51.3, 1638, 180 }, + [56] = { 53.9, 51.1, 1638, 180 }, + [57] = { 53.7, 51, 1638, 180 }, + }, + }, + [178430] = { + ["coords"] = { + [1] = { 46.9, 53.1, 1, 180 }, + [2] = { 46.9, 53, 1, 180 }, + [3] = { 43.1, 65.1, 12, 180 }, + [4] = { 43, 65.1, 12, 180 }, + [5] = { 43.1, 65, 12, 180 }, + [6] = { 43, 65, 12, 180 }, + [7] = { 51.8, 42.6, 14, 180 }, + [8] = { 51.9, 42.6, 14, 180 }, + [9] = { 51.9, 42.5, 14, 180 }, + [10] = { 52, 42.5, 14, 180 }, + [11] = { 51.9, 42.4, 14, 180 }, + [12] = { 26.8, 73.5, 33, 180 }, + [13] = { 61.2, 51.9, 85, 180 }, + [14] = { 61.3, 51.8, 85, 180 }, + [15] = { 61.2, 51.7, 85, 180 }, + [16] = { 46.8, 60, 215, 180 }, + [17] = { 46.8, 59.9, 215, 180 }, + [18] = { 38.5, 28, 215, 180 }, + [19] = { 38.6, 27.9, 215, 180 }, + [20] = { 40.7, 27.4, 215, 180 }, + [21] = { 40.7, 27.3, 215, 180 }, + [22] = { 40.8, 27.3, 215, 180 }, + [23] = { 40.7, 27.2, 215, 180 }, + [24] = { 68.2, 36.3, 1497, 180 }, + [25] = { 63.7, 77.4, 1519, 180 }, + [26] = { 60, 75.7, 1519, 180 }, + [27] = { 62, 70.1, 1519, 180 }, + [28] = { 62.1, 70, 1519, 180 }, + [29] = { 62.3, 69.9, 1519, 180 }, + [30] = { 68.6, 89.3, 1537, 180 }, + [31] = { 68.5, 89.2, 1537, 180 }, + [32] = { 68.7, 88.9, 1537, 180 }, + [33] = { 33.9, 68.3, 1537, 180 }, + [34] = { 33.8, 68.3, 1537, 180 }, + [35] = { 34.1, 68.1, 1537, 180 }, + [36] = { 33.9, 67.5, 1537, 180 }, + [37] = { 34, 66.3, 1537, 180 }, + [38] = { 34.3, 65.8, 1537, 180 }, + [39] = { 34, 65.7, 1537, 180 }, + [40] = { 33.6, 65.4, 1537, 180 }, + [41] = { 34.3, 65.4, 1537, 180 }, + [42] = { 36.9, 59.3, 1537, 180 }, + [43] = { 36.8, 58.9, 1537, 180 }, + [44] = { 36.4, 58.8, 1537, 180 }, + [45] = { 39.8, 51.5, 1537, 180 }, + [46] = { 40.1, 51.3, 1537, 180 }, + [47] = { 40.1, 50.9, 1537, 180 }, + [48] = { 68.5, 20.1, 1537, 180 }, + [49] = { 68.2, 19.9, 1537, 180 }, + [50] = { 68.7, 19.8, 1537, 180 }, + [51] = { 68.5, 19.7, 1537, 180 }, + [52] = { 24.6, 10.7, 1537, 180 }, + [53] = { 24.4, 10.2, 1537, 180 }, + [54] = { 52.4, 69.6, 1637, 180 }, + [55] = { 52.3, 69.5, 1637, 180 }, + [56] = { 52.3, 69.1, 1637, 180 }, + [57] = { 53.6, 66.6, 1637, 180 }, + [58] = { 53.5, 66.4, 1637, 180 }, + [59] = { 53.5, 66.3, 1637, 180 }, + [60] = { 53.7, 66.3, 1637, 180 }, + [61] = { 53.3, 66.1, 1637, 180 }, + [62] = { 53.5, 65.8, 1637, 180 }, + [63] = { 53.4, 65.7, 1637, 180 }, + [64] = { 43, 55.1, 1638, 180 }, + [65] = { 42.9, 54.8, 1638, 180 }, + [66] = { 43.1, 54.6, 1638, 180 }, + [67] = { 53.8, 51.7, 1638, 180 }, + [68] = { 53.7, 51.6, 1638, 180 }, + [69] = { 53.9, 51.3, 1638, 180 }, + [70] = { 53.8, 51.1, 1638, 180 }, + }, + }, + [178431] = { + ["coords"] = { + [1] = { 46.9, 53.1, 1, 180 }, + [2] = { 46.9, 53, 1, 180 }, + [3] = { 46.9, 52.9, 1, 180 }, + [4] = { 43, 65.1, 12, 180 }, + [5] = { 43.2, 64.9, 12, 180 }, + [6] = { 43.1, 64.9, 12, 180 }, + [7] = { 51.9, 42.6, 14, 180 }, + [8] = { 51.9, 42.5, 14, 180 }, + [9] = { 61.1, 52.3, 85, 180 }, + [10] = { 61.2, 51.9, 85, 180 }, + [11] = { 61.3, 51.8, 85, 180 }, + [12] = { 61.2, 51.8, 85, 180 }, + [13] = { 46.8, 60, 215, 180 }, + [14] = { 46.8, 59.9, 215, 180 }, + [15] = { 38.6, 28.1, 215, 180 }, + [16] = { 38.5, 28, 215, 180 }, + [17] = { 40.7, 27.4, 215, 180 }, + [18] = { 40.8, 27.3, 215, 180 }, + [19] = { 40.7, 27.3, 215, 180 }, + [20] = { 40.7, 27.2, 215, 180 }, + [21] = { 68.3, 36.3, 1497, 180 }, + [22] = { 63.6, 77.4, 1519, 180 }, + [23] = { 59.9, 75.7, 1519, 180 }, + [24] = { 62, 70.1, 1519, 180 }, + [25] = { 62.3, 69.9, 1519, 180 }, + [26] = { 62.3, 69.8, 1519, 180 }, + [27] = { 62.5, 69.7, 1519, 180 }, + [28] = { 68.7, 89.3, 1537, 180 }, + [29] = { 68.6, 89.3, 1537, 180 }, + [30] = { 69, 89, 1537, 180 }, + [31] = { 34, 68.2, 1537, 180 }, + [32] = { 33.8, 68.1, 1537, 180 }, + [33] = { 34, 67.2, 1537, 180 }, + [34] = { 34, 66.2, 1537, 180 }, + [35] = { 34.2, 66.1, 1537, 180 }, + [36] = { 33.8, 65.7, 1537, 180 }, + [37] = { 34.3, 65.6, 1537, 180 }, + [38] = { 34, 65.6, 1537, 180 }, + [39] = { 33.8, 65.4, 1537, 180 }, + [40] = { 33.4, 65.3, 1537, 180 }, + [41] = { 33.3, 65.2, 1537, 180 }, + [42] = { 36.8, 59.2, 1537, 180 }, + [43] = { 36.6, 59, 1537, 180 }, + [44] = { 36.8, 58.7, 1537, 180 }, + [45] = { 40.1, 51.3, 1537, 180 }, + [46] = { 39.7, 51.2, 1537, 180 }, + [47] = { 68.6, 20.2, 1537, 180 }, + [48] = { 68.5, 20, 1537, 180 }, + [49] = { 68.3, 19.7, 1537, 180 }, + [50] = { 68.5, 19.7, 1537, 180 }, + [51] = { 24.5, 10.8, 1537, 180 }, + [52] = { 24.5, 10.4, 1537, 180 }, + [53] = { 52.2, 69.7, 1637, 180 }, + [54] = { 52.2, 69.5, 1637, 180 }, + [55] = { 52.1, 69.5, 1637, 180 }, + [56] = { 52.3, 69.4, 1637, 180 }, + [57] = { 52.1, 69.2, 1637, 180 }, + [58] = { 52.2, 69.2, 1637, 180 }, + [59] = { 52.3, 69.1, 1637, 180 }, + [60] = { 53.7, 66.6, 1637, 180 }, + [61] = { 53.5, 66.2, 1637, 180 }, + [62] = { 53.5, 66.1, 1637, 180 }, + [63] = { 53.3, 66, 1637, 180 }, + [64] = { 53.5, 65.8, 1637, 180 }, + [65] = { 43.1, 55.2, 1638, 180 }, + [66] = { 42.9, 55, 1638, 180 }, + [67] = { 43, 54.9, 1638, 180 }, + [68] = { 42.9, 54.7, 1638, 180 }, + [69] = { 53.9, 51.7, 1638, 180 }, + [70] = { 53.9, 51.5, 1638, 180 }, + [71] = { 54.1, 51.4, 1638, 180 }, + [72] = { 53.7, 51.3, 1638, 180 }, + [73] = { 53.8, 51.1, 1638, 180 }, + }, + }, + [178432] = { + ["coords"] = { + [1] = { 46.9, 53.1, 1, 180 }, + [2] = { 46.9, 53, 1, 180 }, + [3] = { 43.1, 65, 12, 180 }, + [4] = { 43, 65, 12, 180 }, + [5] = { 43.2, 65, 12, 180 }, + [6] = { 51.9, 42.5, 14, 180 }, + [7] = { 51.9, 42.4, 14, 180 }, + [8] = { 61.1, 52.3, 85, 180 }, + [9] = { 61.3, 51.9, 85, 180 }, + [10] = { 61.2, 51.8, 85, 180 }, + [11] = { 46.8, 60, 215, 180 }, + [12] = { 46.8, 59.9, 215, 180 }, + [13] = { 38.6, 28, 215, 180 }, + [14] = { 38.5, 27.9, 215, 180 }, + [15] = { 38.6, 27.9, 215, 180 }, + [16] = { 40.8, 27.3, 215, 180 }, + [17] = { 40.7, 27.3, 215, 180 }, + [18] = { 68.2, 36.5, 1497, 180 }, + [19] = { 68.4, 36.1, 1497, 180 }, + [20] = { 63.6, 77.6, 1519, 180 }, + [21] = { 62.1, 70.1, 1519, 180 }, + [22] = { 62.2, 69.8, 1519, 180 }, + [23] = { 62.5, 69.8, 1519, 180 }, + [24] = { 68.8, 89.3, 1537, 180 }, + [25] = { 69.1, 89.1, 1537, 180 }, + [26] = { 68.5, 89, 1537, 180 }, + [27] = { 33.9, 68.2, 1537, 180 }, + [28] = { 33.9, 66.3, 1537, 180 }, + [29] = { 34.2, 66, 1537, 180 }, + [30] = { 34.1, 65.6, 1537, 180 }, + [31] = { 33.6, 65.4, 1537, 180 }, + [32] = { 33.5, 64.9, 1537, 180 }, + [33] = { 37.1, 59.3, 1537, 180 }, + [34] = { 36.8, 59, 1537, 180 }, + [35] = { 36.5, 58.6, 1537, 180 }, + [36] = { 39.8, 51.3, 1537, 180 }, + [37] = { 39.9, 51, 1537, 180 }, + [38] = { 40.2, 51, 1537, 180 }, + [39] = { 68.3, 20, 1537, 180 }, + [40] = { 68.6, 19.8, 1537, 180 }, + [41] = { 68.6, 19.4, 1537, 180 }, + [42] = { 24.7, 10.8, 1537, 180 }, + [43] = { 24.4, 10.7, 1537, 180 }, + [44] = { 24.3, 10.2, 1537, 180 }, + [45] = { 52.3, 69.6, 1637, 180 }, + [46] = { 52.1, 69.4, 1637, 180 }, + [47] = { 52.4, 69.4, 1637, 180 }, + [48] = { 52.3, 69.3, 1637, 180 }, + [49] = { 53.7, 66.7, 1637, 180 }, + [50] = { 53.5, 66.5, 1637, 180 }, + [51] = { 53.6, 66.4, 1637, 180 }, + [52] = { 53.3, 66.1, 1637, 180 }, + [53] = { 53.3, 65.9, 1637, 180 }, + [54] = { 43.2, 54.8, 1638, 180 }, + [55] = { 43, 54.5, 1638, 180 }, + [56] = { 43.1, 54.5, 1638, 180 }, + [57] = { 53.9, 51.6, 1638, 180 }, + [58] = { 53.7, 51.4, 1638, 180 }, + [59] = { 53.8, 51.2, 1638, 180 }, + }, + }, + [178433] = { + ["coords"] = { + [1] = { 46.9, 53.1, 1, 180 }, + [2] = { 46.9, 53, 1, 180 }, + [3] = { 46.8, 53, 1, 180 }, + [4] = { 46.9, 52.9, 1, 180 }, + [5] = { 43, 65.1, 12, 180 }, + [6] = { 43, 65, 12, 180 }, + [7] = { 43.1, 65, 12, 180 }, + [8] = { 43.2, 65, 12, 180 }, + [9] = { 43.1, 64.9, 12, 180 }, + [10] = { 51.9, 42.6, 14, 180 }, + [11] = { 51.8, 42.6, 14, 180 }, + [12] = { 51.9, 42.5, 14, 180 }, + [13] = { 26.8, 73.5, 33, 180 }, + [14] = { 61.3, 51.9, 85, 180 }, + [15] = { 61.2, 51.8, 85, 180 }, + [16] = { 46.8, 59.9, 215, 180 }, + [17] = { 38.6, 28, 215, 180 }, + [18] = { 38.5, 28, 215, 180 }, + [19] = { 38.5, 27.9, 215, 180 }, + [20] = { 40.7, 27.3, 215, 180 }, + [21] = { 40.8, 27.3, 215, 180 }, + [22] = { 68.4, 36.3, 1497, 180 }, + [23] = { 63.6, 77.6, 1519, 180 }, + [24] = { 60, 75.8, 1519, 180 }, + [25] = { 61.9, 70.1, 1519, 180 }, + [26] = { 62, 70, 1519, 180 }, + [27] = { 62.5, 69.7, 1519, 180 }, + [28] = { 68.6, 89.4, 1537, 180 }, + [29] = { 68.4, 89, 1537, 180 }, + [30] = { 68.7, 89, 1537, 180 }, + [31] = { 34.1, 68.2, 1537, 180 }, + [32] = { 33.8, 68, 1537, 180 }, + [33] = { 33.9, 66, 1537, 180 }, + [34] = { 34.4, 65.5, 1537, 180 }, + [35] = { 33.8, 65.5, 1537, 180 }, + [36] = { 34.1, 65.4, 1537, 180 }, + [37] = { 33.4, 65.4, 1537, 180 }, + [38] = { 36.9, 59.4, 1537, 180 }, + [39] = { 36.7, 58.9, 1537, 180 }, + [40] = { 36.6, 58.7, 1537, 180 }, + [41] = { 40, 51.6, 1537, 180 }, + [42] = { 39.7, 51.5, 1537, 180 }, + [43] = { 40.2, 51.1, 1537, 180 }, + [44] = { 39.7, 51, 1537, 180 }, + [45] = { 68.4, 20.2, 1537, 180 }, + [46] = { 68.7, 20, 1537, 180 }, + [47] = { 68.5, 20, 1537, 180 }, + [48] = { 68.5, 19.5, 1537, 180 }, + [49] = { 24.7, 10.6, 1537, 180 }, + [50] = { 24.5, 10.4, 1537, 180 }, + [51] = { 24.4, 10.4, 1537, 180 }, + [52] = { 52.2, 69.7, 1637, 180 }, + [53] = { 52.1, 69.6, 1637, 180 }, + [54] = { 52.4, 69.4, 1637, 180 }, + [55] = { 52.2, 69.3, 1637, 180 }, + [56] = { 53.5, 66.7, 1637, 180 }, + [57] = { 53.6, 66.5, 1637, 180 }, + [58] = { 53.4, 66, 1637, 180 }, + [59] = { 53.4, 65.7, 1637, 180 }, + [60] = { 43.1, 55, 1638, 180 }, + [61] = { 43.3, 54.9, 1638, 180 }, + [62] = { 42.9, 54.8, 1638, 180 }, + [63] = { 43, 54.6, 1638, 180 }, + [64] = { 53.8, 51.6, 1638, 180 }, + [65] = { 54, 51.2, 1638, 180 }, + [66] = { 53.7, 51.2, 1638, 180 }, + }, + }, + [178434] = { + ["coords"] = { + [1] = { 47.3, 52.7, 1, 180 }, + [2] = { 47.6, 52.2, 1, 180 }, + [3] = { 53.1, 35.7, 1, 180 }, + [4] = { 43.7, 65.6, 12, 180 }, + [5] = { 43.6, 65.6, 12, 180 }, + [6] = { 43.5, 65.6, 12, 180 }, + [7] = { 50.1, 13.5, 14, 180 }, + [8] = { 26.7, 73.5, 33, 180 }, + [9] = { 61.1, 59.4, 85, 180 }, + [10] = { 61.6, 52.4, 85, 180 }, + [11] = { 61, 52.3, 85, 180 }, + [12] = { 39.3, 30.3, 215, 180 }, + [13] = { 39, 29.9, 215, 180 }, + [14] = { 39.4, 29, 215, 180 }, + [15] = { 39.5, 28.7, 215, 180 }, + [16] = { 67, 37.7, 1497, 180 }, + [17] = { 68, 71.6, 1519, 180 }, + [18] = { 60.3, 56.6, 1519, 180 }, + [19] = { 36.9, 59.9, 1537, 180 }, + [20] = { 17.9, 52.1, 1537, 180 }, + [21] = { 17.8, 50.9, 1537, 180 }, + [22] = { 46.6, 66.1, 1638, 180 }, + [23] = { 45.3, 64.2, 1638, 180 }, + [24] = { 47.2, 59.6, 1638, 180 }, + [25] = { 47.6, 58.1, 1638, 180 }, + }, + }, + [178435] = { + ["coords"] = { + [1] = { 47.3, 52.7, 1, 180 }, + [2] = { 47.6, 52.2, 1, 180 }, + [3] = { 53.1, 35.7, 1, 180 }, + [4] = { 43.6, 65.6, 12, 180 }, + [5] = { 43.5, 65.6, 12, 180 }, + [6] = { 50, 13.6, 14, 180 }, + [7] = { 26.7, 73.5, 33, 180 }, + [8] = { 61.1, 59.4, 85, 180 }, + [9] = { 61.6, 52.4, 85, 180 }, + [10] = { 39.1, 30.1, 215, 180 }, + [11] = { 39.1, 29.8, 215, 180 }, + [12] = { 39.5, 28.8, 215, 180 }, + [13] = { 67, 37.7, 1497, 180 }, + [14] = { 67.9, 71.5, 1519, 180 }, + [15] = { 60, 56.8, 1519, 180 }, + [16] = { 37, 60.1, 1537, 180 }, + [17] = { 36, 58.3, 1537, 180 }, + [18] = { 17.9, 52, 1537, 180 }, + [19] = { 17.9, 51.3, 1537, 180 }, + [20] = { 45.9, 65.5, 1638, 180 }, + [21] = { 46, 63.6, 1638, 180 }, + [22] = { 47.7, 59, 1638, 180 }, + }, + }, + [178436] = { + ["coords"] = { + [1] = { 47.2, 52.7, 1, 180 }, + [2] = { 47.6, 52.2, 1, 180 }, + [3] = { 43.6, 65.6, 12, 180 }, + [4] = { 43.5, 65.6, 12, 180 }, + [5] = { 61.6, 52.3, 85, 180 }, + [6] = { 39.2, 30.4, 215, 180 }, + [7] = { 39.4, 28.6, 215, 180 }, + [8] = { 66.9, 37.6, 1497, 180 }, + [9] = { 60.1, 56.9, 1519, 180 }, + [10] = { 36.1, 58.5, 1537, 180 }, + [11] = { 17.9, 51.8, 1537, 180 }, + [12] = { 17.9, 51.1, 1537, 180 }, + [13] = { 46.2, 66.5, 1638, 180 }, + [14] = { 47.1, 57.7, 1638, 180 }, + }, + }, + [178437] = { + ["coords"] = { + [1] = { 43, 66.2, 12, 180 }, + [2] = { 60.7, 51.2, 85, 180 }, + [3] = { 60.9, 51.1, 85, 180 }, + [4] = { 60.6, 50.9, 85, 180 }, + [5] = { 60.7, 50.8, 85, 180 }, + [6] = { 48.4, 60.1, 215, 180 }, + [7] = { 49.1, 59.2, 215, 180 }, + [8] = { 48.2, 58.8, 215, 180 }, + [9] = { 38.9, 29.3, 215, 180 }, + [10] = { 37.3, 27.3, 215, 180 }, + [11] = { 38.6, 24.9, 215, 180 }, + [12] = { 65.9, 45.4, 1497, 180 }, + [13] = { 66.9, 44.2, 1497, 180 }, + [14] = { 65.1, 44.1, 1497, 180 }, + [15] = { 66, 42.8, 1497, 180 }, + [16] = { 64.5, 76.5, 1519, 180 }, + [17] = { 66, 74.8, 1519, 180 }, + [18] = { 61.5, 72.8, 1519, 180 }, + [19] = { 66.3, 82.3, 1537, 180 }, + [20] = { 33.6, 63, 1537, 180 }, + [21] = { 28.1, 13, 1537, 180 }, + [22] = { 55.9, 65.7, 1637, 180 }, + [23] = { 54.2, 65.5, 1637, 180 }, + [24] = { 53.6, 63.6, 1637, 180 }, + [25] = { 57, 63.5, 1637, 180 }, + [26] = { 54.4, 61.3, 1637, 180 }, + [27] = { 56.3, 61.3, 1637, 180 }, + [28] = { 44.7, 61.4, 1638, 180 }, + [29] = { 36.7, 51.2, 1638, 180 }, + [30] = { 43.3, 39.4, 1638, 180 }, + }, + }, + [178438] = { + ["coords"] = { + [1] = { 46.7, 53.6, 1, 180 }, + [2] = { 47, 52.8, 1, 180 }, + [3] = { 47, 52.3, 1, 180 }, + [4] = { 46.9, 52.3, 1, 180 }, + [5] = { 45.9, 52.1, 1, 180 }, + [6] = { 46, 52.1, 1, 180 }, + [7] = { 47.2, 51.8, 1, 180 }, + [8] = { 46.9, 51.7, 1, 180 }, + [9] = { 46, 51.6, 1, 180 }, + [10] = { 45.9, 51.6, 1, 180 }, + [11] = { 43.8, 66.6, 12, 180 }, + [12] = { 43.5, 66.6, 12, 180 }, + [13] = { 43.2, 66.5, 12, 180 }, + [14] = { 43.9, 66.4, 12, 180 }, + [15] = { 44, 66.4, 12, 180 }, + [16] = { 43.9, 66.3, 12, 180 }, + [17] = { 44, 66.2, 12, 180 }, + [18] = { 43, 66.2, 12, 180 }, + [19] = { 41.3, 66.1, 12, 180 }, + [20] = { 41.8, 66.1, 12, 180 }, + [21] = { 44.5, 65.9, 12, 180 }, + [22] = { 43, 65.8, 12, 180 }, + [23] = { 41.2, 65.7, 12, 180 }, + [24] = { 41.9, 65.7, 12, 180 }, + [25] = { 42.9, 65.6, 12, 180 }, + [26] = { 44.4, 65.6, 12, 180 }, + [27] = { 43, 65.5, 12, 180 }, + [28] = { 43.4, 65.4, 12, 180 }, + [29] = { 43.3, 65.4, 12, 180 }, + [30] = { 41.8, 65.3, 12, 180 }, + [31] = { 53.9, 43.5, 14, 180 }, + [32] = { 53.5, 43, 14, 180 }, + [33] = { 54.7, 43, 14, 180 }, + [34] = { 53.2, 42.4, 14, 180 }, + [35] = { 53.3, 42.2, 14, 180 }, + [36] = { 51.2, 42.1, 14, 180 }, + [37] = { 51.1, 42.1, 14, 180 }, + [38] = { 53.4, 41.8, 14, 180 }, + [39] = { 53.5, 41.7, 14, 180 }, + [40] = { 51.1, 41.7, 14, 180 }, + [41] = { 54.4, 41.5, 14, 180 }, + [42] = { 53.9, 41.3, 14, 180 }, + [43] = { 51.7, 41, 14, 180 }, + [44] = { 47.3, 6.5, 14, 180 }, + [45] = { 60.4, 53, 85, 180 }, + [46] = { 61.4, 52.6, 85, 180 }, + [47] = { 62, 52.5, 85, 180 }, + [48] = { 60, 52.3, 85, 180 }, + [49] = { 61.5, 52, 85, 180 }, + [50] = { 60.5, 51, 85, 180 }, + [51] = { 61, 50.8, 85, 180 }, + [52] = { 60.7, 50.7, 85, 180 }, + [53] = { 60.8, 50.2, 85, 180 }, + [54] = { 47.5, 62.1, 215, 180 }, + [55] = { 46.9, 60.4, 215, 180 }, + [56] = { 47.8, 55.7, 215, 180 }, + [57] = { 65.2, 50.3, 1497, 180 }, + [58] = { 67, 50.2, 1497, 180 }, + [59] = { 64.9, 50.2, 1497, 180 }, + [60] = { 69.3, 47.8, 1497, 180 }, + [61] = { 62.6, 47.6, 1497, 180 }, + [62] = { 62.4, 47.3, 1497, 180 }, + [63] = { 70, 45.6, 1497, 180 }, + [64] = { 70.1, 45.1, 1497, 180 }, + [65] = { 61.8, 45, 1497, 180 }, + [66] = { 70.2, 43.1, 1497, 180 }, + [67] = { 62.4, 40.9, 1497, 180 }, + [68] = { 69.4, 40.5, 1497, 180 }, + [69] = { 63.5, 39.1, 1497, 180 }, + [70] = { 68.2, 38.8, 1497, 180 }, + [71] = { 63.8, 38.8, 1497, 180 }, + [72] = { 67.1, 38, 1497, 180 }, + [73] = { 65.2, 37.9, 1497, 180 }, + [74] = { 68.3, 35.6, 1497, 180 }, + [75] = { 63.6, 74.9, 1519, 180 }, + [76] = { 60.9, 74.3, 1519, 180 }, + [77] = { 60.7, 74, 1519, 180 }, + [78] = { 53.7, 73.9, 1519, 180 }, + [79] = { 63.3, 73.7, 1519, 180 }, + [80] = { 53.2, 73, 1519, 180 }, + [81] = { 64.6, 72.7, 1519, 180 }, + [82] = { 61.5, 72.7, 1519, 180 }, + [83] = { 61.8, 72.5, 1519, 180 }, + [84] = { 64.4, 72.5, 1519, 180 }, + [85] = { 62.4, 70.1, 1519, 180 }, + [86] = { 63.8, 69.9, 1519, 180 }, + [87] = { 62.2, 69.9, 1519, 180 }, + [88] = { 62.3, 69.7, 1519, 180 }, + [89] = { 63.3, 69, 1519, 180 }, + [90] = { 39.1, 77.6, 1537, 180 }, + [91] = { 38.6, 77.3, 1537, 180 }, + [92] = { 38.2, 77, 1537, 180 }, + [93] = { 37.7, 76.7, 1537, 180 }, + [94] = { 37.3, 76.5, 1537, 180 }, + [95] = { 36.9, 76.2, 1537, 180 }, + [96] = { 27.8, 74.2, 1537, 180 }, + [97] = { 27.5, 73.7, 1537, 180 }, + [98] = { 27.2, 73.1, 1537, 180 }, + [99] = { 26.9, 72.6, 1537, 180 }, + [100] = { 26.6, 72.1, 1537, 180 }, + [101] = { 26.3, 71.6, 1537, 180 }, + [102] = { 26.1, 71.1, 1537, 180 }, + [103] = { 25.8, 70.7, 1537, 180 }, + [104] = { 25.5, 70.2, 1537, 180 }, + [105] = { 25.2, 69.7, 1537, 180 }, + [106] = { 25, 69.2, 1537, 180 }, + [107] = { 34, 67.9, 1537, 180 }, + [108] = { 34.3, 67.5, 1537, 180 }, + [109] = { 33.6, 67.2, 1537, 180 }, + [110] = { 34.2, 67, 1537, 180 }, + [111] = { 21.3, 57.2, 1537, 180 }, + [112] = { 21.2, 56.5, 1537, 180 }, + [113] = { 21.1, 55.8, 1537, 180 }, + [114] = { 21, 55.1, 1537, 180 }, + [115] = { 59, 45.7, 1537, 180 }, + [116] = { 59, 45, 1537, 180 }, + [117] = { 59, 44.3, 1537, 180 }, + [118] = { 59, 43.6, 1537, 180 }, + [119] = { 52, 29.9, 1537, 180 }, + [120] = { 51.6, 29.8, 1537, 180 }, + [121] = { 51.2, 29.7, 1537, 180 }, + [122] = { 50.8, 29.6, 1537, 180 }, + [123] = { 50.3, 29.5, 1537, 180 }, + [124] = { 49.9, 29.4, 1537, 180 }, + [125] = { 49.5, 29.3, 1537, 180 }, + [126] = { 49.1, 29.2, 1537, 180 }, + [127] = { 21.8, 20.3, 1537, 180 }, + [128] = { 55.8, 74.3, 1637, 180 }, + [129] = { 55.1, 73.4, 1637, 180 }, + [130] = { 55.2, 72.4, 1637, 180 }, + [131] = { 55.3, 72, 1637, 180 }, + [132] = { 55.4, 71.4, 1637, 180 }, + [133] = { 50.4, 70.5, 1637, 180 }, + [134] = { 50.7, 69.9, 1637, 180 }, + [135] = { 54, 69.6, 1637, 180 }, + [136] = { 53.4, 67.9, 1637, 180 }, + [137] = { 53.6, 66.6, 1637, 180 }, + [138] = { 53.3, 66.5, 1637, 180 }, + [139] = { 53.7, 66.3, 1637, 180 }, + [140] = { 53.9, 65.3, 1637, 180 }, + [141] = { 56.8, 64.5, 1637, 180 }, + [142] = { 57.1, 63.9, 1637, 180 }, + [143] = { 52.1, 63.5, 1637, 180 }, + [144] = { 53.1, 63.3, 1637, 180 }, + [145] = { 57.1, 63, 1637, 180 }, + [146] = { 50.9, 62, 1637, 180 }, + [147] = { 54.1, 61.9, 1637, 180 }, + }, + }, + [178442] = { + ["coords"] = { + [1] = { 37.6, 39.8, 215, 25 }, + [2] = { 37.9, 39.8, 215, 25 }, + [3] = { 38.1, 39.5, 215, 25 }, + [4] = { 37.8, 39.5, 215, 25 }, + [5] = { 37.1, 38, 215, 25 }, + [6] = { 36.5, 38, 215, 25 }, + [7] = { 36.5, 37.9, 215, 25 }, + [8] = { 36.6, 37.8, 215, 25 }, + [9] = { 37.3, 37.7, 215, 25 }, + [10] = { 36.8, 37.7, 215, 25 }, + [11] = { 37.3, 37.6, 215, 25 }, + [12] = { 36.8, 37.6, 215, 25 }, + [13] = { 37.2, 37.6, 215, 25 }, + [14] = { 37, 37.5, 215, 25 }, + [15] = { 37.2, 37.5, 215, 25 }, + [16] = { 37.3, 37.5, 215, 25 }, + [17] = { 36.8, 37.4, 215, 25 }, + [18] = { 36.9, 37.4, 215, 25 }, + [19] = { 36.5, 36.9, 215, 25 }, + [20] = { 36.8, 36.9, 215, 25 }, + [21] = { 36.5, 35.9, 215, 25 }, + [22] = { 35.9, 35.6, 215, 25 }, + [23] = { 36, 35.1, 215, 25 }, + [24] = { 36, 35, 215, 25 }, + [25] = { 36.1, 34.9, 215, 25 }, + [26] = { 35.9, 34.9, 215, 25 }, + [27] = { 51.7, 90.7, 2597, 25 }, + [28] = { 51.8, 90.6, 2597, 25 }, + [29] = { 51.7, 90.6, 2597, 25 }, + [30] = { 49.5, 83, 2597, 25 }, + [31] = { 49.5, 82.9, 2597, 25 }, + }, + }, + [178443] = { + ["coords"] = { + [1] = { 49.4, 82.7, 2597, 300 }, + [2] = { 43.4, 15.4, 2597, 300 }, + }, + }, + [178554] = { + ["coords"] = { + [1] = { 46.9, 52.1, 1, 180 }, + [2] = { 43.2, 65.9, 12, 180 }, + [3] = { 51.8, 41.9, 14, 180 }, + [4] = { 46.8, 60.5, 215, 180 }, + [5] = { 39, 29.6, 215, 180 }, + [6] = { 37.2, 27, 215, 180 }, + [7] = { 41.8, 26.3, 215, 180 }, + [8] = { 66.9, 38.2, 1497, 180 }, + [9] = { 26, 72.3, 1537, 180 }, + [10] = { 34.1, 62.4, 1537, 180 }, + [11] = { 20.8, 56.2, 1537, 180 }, + [12] = { 54, 68.9, 1637, 180 }, + [13] = { 45.1, 62.6, 1638, 180 }, + [14] = { 36.2, 50.2, 1638, 180 }, + [15] = { 58.9, 46.5, 1638, 180 }, + }, + }, + [178559] = { + ["coords"] = { + [1] = { 40.9, 18.6, 2100, 3600 }, + }, + }, + [178560] = { + ["coords"] = { + [1] = { 19.5, 38.9, 2100, 3600 }, + }, + }, + [178561] = { + ["coords"] = { + [1] = { 35.7, 9.9, 2100, 3600 }, + }, + }, + [178562] = { + ["coords"] = { + [1] = { 35.4, 6, 2100, 3600 }, + }, + }, + [178563] = { + ["coords"] = { + [1] = { 32.8, 8.6, 2100, 3600 }, + }, + }, + [178564] = { + ["coords"] = { + [1] = { 34.3, 7.7, 2100, 3600 }, + }, + }, + [178565] = { + ["coords"] = { + [1] = { 32.7, 10.8, 2100, 3600 }, + }, + }, + [178566] = { + ["coords"] = { + [1] = { 32.7, 11.3, 2100, 3600 }, + }, + }, + [178567] = { + ["coords"] = { + [1] = { 33.8, 13.2, 2100, 3600 }, + }, + }, + [178568] = { + ["coords"] = { + [1] = { 34.5, 11.8, 2100, 3600 }, + }, + }, + [178569] = { + ["coords"] = { + [1] = { 34, 13.6, 2100, 3600 }, + }, + }, + [178570] = { + ["coords"] = { + [1] = { 32, 4.2, 2100, 3600 }, + }, + }, + [178584] = { + ["coords"] = { + [1] = { 36.1, 43.5, 2597, 300 }, + }, + }, + [178606] = { + ["coords"] = { + [1] = { 43.6, 16, 2597, 300 }, + }, + }, + [178608] = { + ["coords"] = { + [1] = { 48.9, 85.3, 2597, 300 }, + }, + }, + [178609] = { + ["coords"] = { + [1] = { 39.5, 68.7, 36, 60 }, + [2] = { 42.7, 67.3, 36, 60 }, + [3] = { 40.3, 65.7, 36, 60 }, + [4] = { 44, 62.9, 36, 60 }, + [5] = { 40.3, 62.2, 36, 60 }, + [6] = { 39, 59.7, 36, 60 }, + [7] = { 46.3, 59.3, 36, 60 }, + [8] = { 48.5, 54.3, 36, 60 }, + [9] = { 44, 49.3, 36, 60 }, + [10] = { 40.9, 45.4, 36, 60 }, + [11] = { 47.8, 45.1, 36, 60 }, + [12] = { 54.4, 44.9, 36, 60 }, + [13] = { 48, 41.8, 36, 60 }, + [14] = { 38.8, 41.3, 36, 60 }, + [15] = { 40, 39.9, 36, 60 }, + [16] = { 50.9, 39.8, 36, 60 }, + [17] = { 36.2, 38.9, 36, 60 }, + [18] = { 42.2, 38.9, 36, 60 }, + [19] = { 44, 36.6, 36, 60 }, + [20] = { 37.7, 36.5, 36, 60 }, + [21] = { 46.2, 36.4, 36, 60 }, + [22] = { 46, 33.1, 36, 60 }, + [23] = { 43.4, 8.5, 267, 60 }, + [24] = { 46.3, 7.3, 267, 60 }, + [25] = { 44.1, 5.9, 267, 60 }, + [26] = { 47.4, 3.5, 267, 60 }, + [27] = { 44.1, 2.8, 267, 60 }, + [28] = { 43, 0.7, 267, 60 }, + }, + }, + [178644] = "_", + [178645] = { + ["coords"] = { + [1] = { 47.1, 52.8, 1, 180 }, + [2] = { 47, 52.5, 1, 180 }, + [3] = { 46.8, 52, 1, 180 }, + [4] = { 46, 51.8, 1, 180 }, + [5] = { 47, 51.7, 1, 180 }, + [6] = { 50, 49.9, 1, 180 }, + [7] = { 46, 48.6, 1, 180 }, + [8] = { 43.6, 66.6, 12, 180 }, + [9] = { 43.2, 66.5, 12, 180 }, + [10] = { 44.2, 66.2, 12, 180 }, + [11] = { 43.1, 66.1, 12, 180 }, + [12] = { 44.5, 65.9, 12, 180 }, + [13] = { 44.2, 65.5, 12, 180 }, + [14] = { 43.9, 65.5, 12, 180 }, + [15] = { 54.1, 43.6, 14, 180 }, + [16] = { 54.3, 43.5, 14, 180 }, + [17] = { 54.5, 43.3, 14, 180 }, + [18] = { 53.5, 43.2, 14, 180 }, + [19] = { 54, 43, 14, 180 }, + [20] = { 54.3, 42.9, 14, 180 }, + [21] = { 53.2, 42.6, 14, 180 }, + [22] = { 54.8, 42.5, 14, 180 }, + [23] = { 53.7, 42.3, 14, 180 }, + [24] = { 54.4, 42.2, 14, 180 }, + [25] = { 51.3, 42.2, 14, 180 }, + [26] = { 51.7, 42.2, 14, 180 }, + [27] = { 54.8, 42.1, 14, 180 }, + [28] = { 51.4, 41.9, 14, 180 }, + [29] = { 54.2, 41.9, 14, 180 }, + [30] = { 51.1, 41.9, 14, 180 }, + [31] = { 51.8, 41.9, 14, 180 }, + [32] = { 54.7, 41.8, 14, 180 }, + [33] = { 51.7, 41.8, 14, 180 }, + [34] = { 51.2, 41.6, 14, 180 }, + [35] = { 53.8, 41.4, 14, 180 }, + [36] = { 51.9, 41.4, 14, 180 }, + [37] = { 51, 41.4, 14, 180 }, + [38] = { 54.1, 41.3, 14, 180 }, + [39] = { 51.4, 41.3, 14, 180 }, + [40] = { 51.1, 41.2, 14, 180 }, + [41] = { 51.5, 40.9, 14, 180 }, + [42] = { 47.2, 6.5, 14, 180 }, + [43] = { 60.6, 51.3, 85, 180 }, + [44] = { 60.6, 50.9, 85, 180 }, + [45] = { 67.6, 36.8, 1497, 180 }, + [46] = { 66.6, 75.3, 1519, 180 }, + [47] = { 66, 74.7, 1519, 180 }, + [48] = { 63.6, 74.1, 1519, 180 }, + [49] = { 53.6, 73.3, 1519, 180 }, + [50] = { 63.5, 69.6, 1519, 180 }, + [51] = { 57.5, 66.3, 1519, 180 }, + [52] = { 70.2, 57.6, 1519, 180 }, + [53] = { 60.6, 56.9, 1519, 180 }, + [54] = { 42.1, 85.3, 1537, 180 }, + [55] = { 52.1, 84.7, 1537, 180 }, + [56] = { 54.5, 56.6, 1537, 180 }, + [57] = { 56.9, 52.8, 1537, 180 }, + [58] = { 25.1, 37.2, 1537, 180 }, + [59] = { 40.9, 35.7, 1537, 180 }, + [60] = { 41.8, 34.1, 1537, 180 }, + [61] = { 20.3, 23.1, 1537, 180 }, + [62] = { 21.2, 21.5, 1537, 180 }, + [63] = { 55.4, 74.1, 1637, 180 }, + [64] = { 55.3, 73.4, 1637, 180 }, + [65] = { 55.2, 72, 1637, 180 }, + [66] = { 55.6, 71.4, 1637, 180 }, + [67] = { 49.9, 70.8, 1637, 180 }, + [68] = { 48.6, 70.5, 1637, 180 }, + [69] = { 55, 69.6, 1637, 180 }, + [70] = { 50.8, 69.2, 1637, 180 }, + [71] = { 53.6, 69.1, 1637, 180 }, + [72] = { 53.5, 67.1, 1637, 180 }, + [73] = { 54.2, 66.5, 1637, 180 }, + [74] = { 54.4, 66, 1637, 180 }, + [75] = { 55, 65.8, 1637, 180 }, + [76] = { 56.5, 65.1, 1637, 180 }, + [77] = { 53.6, 64.7, 1637, 180 }, + [78] = { 53.4, 64.6, 1637, 180 }, + [79] = { 53.5, 62.7, 1637, 180 }, + [80] = { 51.2, 62.7, 1637, 180 }, + [81] = { 53.8, 62.6, 1637, 180 }, + [82] = { 56.7, 61.9, 1637, 180 }, + [83] = { 55.1, 61, 1637, 180 }, + [84] = { 55.9, 61, 1637, 180 }, + }, + }, + [178646] = { + ["coords"] = { + [1] = { 43.4, 15.7, 2597, 25 }, + [2] = { 43.3, 15.6, 2597, 25 }, + [3] = { 41.9, 13.3, 2597, 25 }, + [4] = { 42, 13.2, 2597, 25 }, + [5] = { 41.9, 13.2, 2597, 25 }, + }, + }, + [178649] = { + ["coords"] = { + [1] = { 45.7, 51.8, 1, 180 }, + [2] = { 62.5, 69.7, 1519, 180 }, + [3] = { 57.4, 66.2, 1519, 180 }, + [4] = { 21, 53.2, 1537, 180 }, + }, + }, + [178664] = { + ["coords"] = { + [1] = { 54.4, 20.9, 2597, 300 }, + }, + ["fac"] = "H", + }, + [178665] = { + ["coords"] = { + [1] = { 51.4, 55.6, 2597, 300 }, + }, + ["fac"] = "A", + }, + [178666] = { + ["coords"] = { + [1] = { 93.8, 15.1, 10, 25 }, + [2] = { 36.4, 37.1, 215, 25 }, + [3] = { 36.6, 36, 215, 25 }, + [4] = { 36, 35.7, 215, 25 }, + [5] = { 36.1, 35.2, 215, 25 }, + [6] = { 35.9, 35.1, 215, 25 }, + [7] = { 36, 34.9, 215, 25 }, + [8] = { 34.1, 67.4, 1537, 180 }, + [9] = { 53.5, 66.3, 1637, 180 }, + }, + }, + [178667] = { + ["coords"] = { + [1] = { 53.2, 35.9, 1, 180 }, + [2] = { 50.1, 13.4, 14, 180 }, + [3] = { 26.8, 73.5, 33, 180 }, + [4] = { 61.2, 59.3, 85, 180 }, + [5] = { 63.3, 79.6, 1519, 180 }, + [6] = { 63.6, 77.5, 1519, 180 }, + [7] = { 68.2, 71.9, 1519, 180 }, + }, + }, + [178669] = { + ["coords"] = { + [1] = { 62.3, 76.7, 1519, 180 }, + }, + }, + [178685] = { + ["coords"] = { + [1] = { 43.4, 15.5, 2597, 60 }, + [2] = { 51.5, 34.2, 5121, 300 }, + }, + }, + [178746] = { + ["coords"] = { + [1] = { 53.2, 35.6, 1, 180 }, + [2] = { 50, 13.6, 14, 180 }, + [3] = { 26.6, 73.5, 33, 180 }, + [4] = { 61.2, 59.4, 85, 180 }, + [5] = { 38.4, 28, 215, 180 }, + [6] = { 68.1, 38.8, 1497, 180 }, + [7] = { 67.8, 71.3, 1519, 180 }, + [8] = { 62.3, 70.2, 1519, 180 }, + [9] = { 33.5, 67.5, 1537, 180 }, + [10] = { 53.3, 66.7, 1637, 180 }, + [11] = { 42.4, 55.1, 1638, 180 }, + }, + }, + [178827] = { + ["coords"] = { + [1] = { 31.5, 62.4, 405, 900 }, + [2] = { 47.4, 58.5, 2100, 900 }, + }, + ["fac"] = "AH", + }, + [178831] = { + ["coords"] = { + [1] = { 30.9, 16.6, 139, 900 }, + [2] = { 77, 76.6, 5225, 900 }, + }, + ["fac"] = "AH", + }, + [178833] = { + ["coords"] = { + [1] = { 49.1, 13.7, 3, 900 }, + [2] = { 47.3, 88.6, 38, 900 }, + [3] = { 98.1, 43.4, 1337, 900 }, + [4] = { 22.8, 89.6, 5602, 900 }, + }, + ["fac"] = "AH", + }, + [178834] = { + ["coords"] = { + [1] = { 41.6, 72.4, 40, 3600 }, + [2] = { 51.6, 11.5, 1581, 3600 }, + }, + ["fac"] = "AH", + }, + [178884] = { + ["coords"] = { + [1] = { 47, 35.6, 17, 900 }, + [2] = { 41, 79.8, 718, 900 }, + }, + ["fac"] = "AH", + }, + [178905] = { + ["coords"] = { + [1] = { 26.2, 22.4, 2100, 3600 }, + [2] = { 34, 19.5, 2100, 3600 }, + [3] = { 29.5, 18.3, 2100, 3600 }, + [4] = { 39.6, 17.6, 2100, 3600 }, + [5] = { 35.3, 17, 2100, 3600 }, + [6] = { 23.5, 17, 2100, 3600 }, + [7] = { 26.2, 15.3, 2100, 3600 }, + [8] = { 41.6, 14.9, 2100, 3600 }, + [9] = { 35.1, 11.5, 2100, 3600 }, + [10] = { 38.6, 11.2, 2100, 3600 }, + [11] = { 40.8, 9.6, 2100, 3600 }, + [12] = { 36.8, 8.2, 2100, 3600 }, + }, + }, + [178907] = { + ["coords"] = { + [1] = { 33.2, 65.7, 405, 180 }, + [2] = { 56.8, 76.5, 2100, 180 }, + }, + }, + [178908] = { + ["coords"] = { + [1] = { 23.1, 70.3, 405, 900 }, + [2] = { 68.4, 8.8, 405, 900 }, + [3] = { 46.4, 81.1, 406, 900 }, + }, + }, + [178927] = { + ["coords"] = { + [1] = { 52.6, 43.9, 2597, 0 }, + [2] = { 50.7, 31, 2597, 0 }, + [3] = { 44, 18.7, 2597, 0 }, + [4] = { 45.3, 14.4, 2597, 0 }, + }, + }, + [178963] = "_", + [178964] = { + ["coords"] = { + [1] = { 19.5, 38.9, 2100, 0 }, + }, + }, + [178984] = { + ["coords"] = { + [1] = { 54.3, 55.7, 493, 900 }, + [2] = { 54.1, 50.2, 493, 900 }, + [3] = { 53, 48.4, 493, 900 }, + [4] = { 54.6, 46.5, 493, 900 }, + }, + }, + [179024] = { + ["coords"] = { + [1] = { 42, 37, 2597, 0 }, + }, + }, + [179025] = { + ["coords"] = { + [1] = { 50.5, 93.4, 2597, 0 }, + }, + }, + [179064] = { + ["coords"] = { + [1] = { 44.2, 46.1, 2597, 60 }, + [2] = { 45.2, 45.5, 2597, 60 }, + [3] = { 44.3, 45.5, 2597, 60 }, + [4] = { 45.1, 45.2, 2597, 60 }, + }, + }, + [179106] = { + ["coords"] = { + [1] = { 45.2, 44.2, 5179, 300 }, + [2] = { 45, 44.2, 5179, 300 }, + }, + }, + [179114] = { + ["coords"] = { + [1] = { 58.7, 53.8, 16, 300 }, + }, + }, + [179115] = { + ["coords"] = { + [1] = { 41.5, 18.4, 2677, 300 }, + }, + }, + [179116] = { + ["coords"] = { + [1] = { 39.8, 33.7, 2677, 300 }, + }, + }, + [179117] = { + ["coords"] = { + [1] = { 51.8, 21, 2677, 300 }, + }, + }, + [179118] = { + ["coords"] = { + [1] = { 69.4, 46.5, 25, 25 }, + [2] = { 33.7, 26.4, 46, 25 }, + [3] = { 41.8, 97.2, 51, 25 }, + [4] = { 83.6, 58.3, 2677, 300 }, + [5] = { 39.9, 21.1, 2677, 25 }, + }, + }, + [179122] = { + ["coords"] = { + [1] = { 58.2, 48.4, 1583, 25 }, + [2] = { 58.1, 46.9, 1583, 25 }, + [3] = { 58.2, 45.6, 1583, 25 }, + [4] = { 39.7, 89.9, 2677, 25 }, + [5] = { 42.2, 87.2, 2677, 25 }, + [6] = { 15.1, 59.8, 2677, 25 }, + [7] = { 13.5, 56.1, 2677, 25 }, + }, + }, + [179145] = { + ["coords"] = { + [1] = { 46.7, 53.9, 1, 25 }, + [2] = { 52.8, 45.6, 4, 300 }, + [3] = { 34.6, 48.7, 10, 300 }, + [4] = { 32.5, 48, 10, 300 }, + [5] = { 39.3, 69.2, 12, 300 }, + [6] = { 37.6, 71.3, 14, 300 }, + [7] = { 41.6, 72.8, 15, 300 }, + [8] = { 30.1, 71.1, 16, 300 }, + [9] = { 64.8, 34.3, 17, 300 }, + [10] = { 54.3, 1.2, 17, 300 }, + [11] = { 54.5, 0.5, 17, 300 }, + [12] = { 43.9, 99.1, 28, 300 }, + [13] = { 79.9, 63.1, 28, 300 }, + [14] = { 80.6, 52.2, 36, 300 }, + [15] = { 59.3, 76.2, 38, 300 }, + [16] = { 57.8, 76, 38, 300 }, + [17] = { 58.2, 74.1, 38, 300 }, + [18] = { 22.2, 69.6, 85, 300 }, + [19] = { 8.3, 64.7, 85, 300 }, + [20] = { 10.5, 64.3, 85, 300 }, + [21] = { 10.2, 63.3, 85, 300 }, + [22] = { 9.6, 63.2, 85, 300 }, + [23] = { 85.8, 57.2, 85, 300 }, + [24] = { 67.8, 81.8, 130, 300 }, + [25] = { 21.5, 86.8, 139, 300 }, + [26] = { 42.5, 51.1, 267, 300 }, + [27] = { 14.6, 47.9, 267, 300 }, + [28] = { 79.3, 81.8, 331, 300 }, + [29] = { 79.8, 80.4, 331, 300 }, + [30] = { 47.7, 57.2, 406, 300 }, + [31] = { 43.7, 56.6, 408, 300 }, + [32] = { 52.1, 61.3, 409, 300 }, + [33] = { 67.8, 26.8, 440, 300 }, + [34] = { 58.2, 22.2, 440, 300 }, + [35] = { 39.7, 11.8, 490, 300 }, + [36] = { 96.8, 13.5, 5179, 300 }, + [37] = { 72.4, 10.8, 5179, 300 }, + [38] = { 28.9, 83.3, 5602, 300 }, + [39] = { 28.1, 83.2, 5602, 300 }, + [40] = { 28.4, 82.2, 5602, 300 }, + }, + }, + [179146] = { + ["coords"] = { + [1] = { 51.2, 48.6, 4, 300 }, + [2] = { 51.4, 16, 14, 300 }, + [3] = { 51.6, 37.5, 16, 300 }, + [4] = { 34, 18.2, 28, 0 }, + [5] = { 48.8, 8.8, 33, 300 }, + [6] = { 97.1, 48.9, 46, 300 }, + [7] = { 90.3, 33, 85, 0 }, + [8] = { 43, 97.8, 148, 300 }, + [9] = { 27.3, 15.9, 331, 300 }, + [10] = { 46.8, 55.6, 408, 300 }, + [11] = { 33.8, 58.8, 409, 300 }, + [12] = { 51.6, 71, 1637, 300 }, + [13] = { 58.2, 79, 5103, 300 }, + [14] = { 25.2, 58.9, 5103, 300 }, + [15] = { 41.1, 57.7, 5103, 300 }, + }, + }, + [179148] = { + ["coords"] = { + [1] = { 50.2, 35.1, 2677, 25 }, + }, + }, + [179286] = { + ["coords"] = { + [1] = { 49.3, 88.1, 2597, 0 }, + [2] = { 50.2, 76.7, 2597, 0 }, + [3] = { 51.4, 60.1, 2597, 0 }, + [4] = { 44.7, 45.6, 2597, 0 }, + [5] = { 51.5, 34.2, 2597, 0 }, + [6] = { 42.8, 15.8, 2597, 0 }, + [7] = { 49, 14.7, 2597, 0 }, + }, + ["fac"] = "H", + }, + [179287] = { + ["coords"] = { + [1] = { 49.3, 88.1, 2597, 0 }, + [2] = { 50.2, 76.7, 2597, 0 }, + [3] = { 51.4, 60.1, 2597, 0 }, + [4] = { 44.7, 45.6, 2597, 0 }, + [5] = { 51.5, 34.2, 2597, 0 }, + [6] = { 42.8, 15.8, 2597, 0 }, + [7] = { 49, 14.7, 2597, 0 }, + }, + ["fac"] = "A", + }, + [179311] = { + ["coords"] = {}, + }, + [179312] = { + ["coords"] = { + [1] = { 40.5, 76.6, 5023, 300 }, + [2] = { 56.6, 62.9, 5023, 300 }, + [3] = { 71.9, 55.8, 5023, 300 }, + [4] = { 43.9, 55.2, 5023, 300 }, + [5] = { 59.1, 53.7, 5023, 300 }, + [6] = { 21.2, 53.4, 5023, 300 }, + [7] = { 31.2, 51.7, 5023, 300 }, + [8] = { 52.8, 48.4, 5023, 300 }, + [9] = { 41.9, 47.1, 5023, 300 }, + [10] = { 61.9, 45.9, 5023, 300 }, + [11] = { 33.6, 43.3, 5023, 300 }, + [12] = { 76, 42, 5023, 300 }, + [13] = { 24.3, 42, 5023, 300 }, + [14] = { 56.4, 41, 5023, 300 }, + [15] = { 31, 32.5, 5023, 300 }, + [16] = { 54.2, 17.6, 5023, 300 }, + }, + }, + [179313] = { + ["coords"] = { + [1] = { 48.6, 49.5, 5023, 7200 }, + }, + }, + [179324] = { + ["coords"] = { + [1] = { 49.4, 88.7, 2597, 150 }, + [2] = { 49.7, 88.4, 2597, 150 }, + [3] = { 49.2, 88.2, 2597, 150 }, + [4] = { 49.7, 87.9, 2597, 150 }, + [5] = { 49.6, 86.7, 2597, 150 }, + [6] = { 48.9, 86.4, 2597, 150 }, + [7] = { 49.4, 86.4, 2597, 150 }, + [8] = { 50.3, 85.9, 2597, 150 }, + [9] = { 49.1, 85.8, 2597, 150 }, + [10] = { 48.7, 85.4, 2597, 150 }, + [11] = { 49.4, 85.4, 2597, 150 }, + [12] = { 50.3, 85.3, 2597, 150 }, + [13] = { 49.1, 85.2, 2597, 150 }, + [14] = { 49.8, 85.2, 2597, 150 }, + [15] = { 50.2, 85, 2597, 150 }, + [16] = { 48.3, 85, 2597, 150 }, + [17] = { 48.7, 84.9, 2597, 150 }, + [18] = { 48, 84.8, 2597, 150 }, + [19] = { 48.8, 84.7, 2597, 150 }, + [20] = { 46.3, 84.4, 2597, 150 }, + [21] = { 49, 84.3, 2597, 150 }, + [22] = { 48.8, 84.3, 2597, 150 }, + [23] = { 51.4, 84.3, 2597, 150 }, + [24] = { 47.1, 84.3, 2597, 150 }, + [25] = { 48.7, 84.2, 2597, 150 }, + [26] = { 49, 84.1, 2597, 150 }, + [27] = { 51.4, 83.9, 2597, 150 }, + [28] = { 48.8, 83.9, 2597, 150 }, + [29] = { 46.7, 83.9, 2597, 150 }, + [30] = { 47.1, 83.9, 2597, 150 }, + [31] = { 49, 83.8, 2597, 150 }, + [32] = { 46, 83.7, 2597, 150 }, + [33] = { 48.7, 83.7, 2597, 150 }, + [34] = { 46.4, 83.7, 2597, 150 }, + [35] = { 48.9, 83.6, 2597, 150 }, + [36] = { 48.7, 83.6, 2597, 150 }, + [37] = { 50, 83.5, 2597, 150 }, + [38] = { 48.6, 83.4, 2597, 150 }, + [39] = { 47.5, 83.4, 2597, 150 }, + [40] = { 48.9, 83.4, 2597, 150 }, + [41] = { 48.5, 83.3, 2597, 150 }, + [42] = { 51.8, 83.1, 2597, 150 }, + [43] = { 48.8, 83.1, 2597, 150 }, + [44] = { 47.3, 83.1, 2597, 150 }, + [45] = { 48.4, 83, 2597, 150 }, + [46] = { 47.1, 83, 2597, 150 }, + [47] = { 50.7, 82.9, 2597, 150 }, + [48] = { 51, 82.8, 2597, 150 }, + [49] = { 47.2, 82.7, 2597, 150 }, + [50] = { 48.6, 82.3, 2597, 150 }, + [51] = { 51.4, 82, 2597, 150 }, + [52] = { 50.3, 82, 2597, 150 }, + [53] = { 49.1, 81.9, 2597, 150 }, + [54] = { 51.7, 81.7, 2597, 150 }, + [55] = { 48.9, 81.7, 2597, 150 }, + [56] = { 49.5, 81.6, 2597, 150 }, + [57] = { 48.6, 81.4, 2597, 150 }, + [58] = { 50.1, 81.3, 2597, 150 }, + [59] = { 50.5, 81.2, 2597, 150 }, + [60] = { 49.2, 81.1, 2597, 150 }, + [61] = { 51, 81, 2597, 150 }, + [62] = { 50.9, 80.6, 2597, 150 }, + [63] = { 50, 80.5, 2597, 150 }, + [64] = { 47.9, 80.1, 2597, 150 }, + [65] = { 48.5, 80.1, 2597, 150 }, + [66] = { 48.1, 80.1, 2597, 150 }, + [67] = { 48, 80, 2597, 150 }, + [68] = { 48.6, 80, 2597, 150 }, + [69] = { 50.2, 80, 2597, 150 }, + [70] = { 48.1, 80, 2597, 150 }, + [71] = { 48.2, 80, 2597, 150 }, + [72] = { 48.4, 79.9, 2597, 150 }, + [73] = { 48.2, 79.9, 2597, 150 }, + [74] = { 48.5, 79.9, 2597, 150 }, + [75] = { 48.3, 79.9, 2597, 150 }, + [76] = { 50.1, 79.4, 2597, 150 }, + [77] = { 50.6, 79.3, 2597, 150 }, + [78] = { 50.1, 79.2, 2597, 150 }, + [79] = { 50.5, 79.1, 2597, 150 }, + [80] = { 50.1, 79, 2597, 150 }, + [81] = { 50.1, 78.8, 2597, 150 }, + [82] = { 50.5, 78.7, 2597, 150 }, + [83] = { 50, 78.5, 2597, 150 }, + [84] = { 50.2, 78.3, 2597, 150 }, + [85] = { 50.6, 78.2, 2597, 150 }, + [86] = { 53.3, 60.3, 2597, 150 }, + [87] = { 53.4, 60, 2597, 150 }, + [88] = { 53.3, 59.8, 2597, 150 }, + [89] = { 53.6, 59.7, 2597, 150 }, + [90] = { 53.5, 59.7, 2597, 150 }, + [91] = { 53.2, 59.7, 2597, 150 }, + [92] = { 53.7, 59.5, 2597, 150 }, + [93] = { 53.3, 59.5, 2597, 150 }, + [94] = { 53.8, 59.5, 2597, 150 }, + [95] = { 53.5, 59.4, 2597, 150 }, + [96] = { 53.8, 59.3, 2597, 150 }, + [97] = { 53.7, 59.2, 2597, 150 }, + [98] = { 53.2, 59.2, 2597, 150 }, + [99] = { 53.5, 59.2, 2597, 150 }, + [100] = { 53.2, 59, 2597, 150 }, + [101] = { 53.5, 59, 2597, 150 }, + [102] = { 53.3, 59, 2597, 150 }, + [103] = { 53.3, 58.7, 2597, 150 }, + [104] = { 53.1, 58.7, 2597, 150 }, + [105] = { 52.9, 58.6, 2597, 150 }, + [106] = { 52.8, 58.5, 2597, 150 }, + [107] = { 53, 58.5, 2597, 150 }, + [108] = { 52.9, 58.4, 2597, 150 }, + [109] = { 53, 58.2, 2597, 150 }, + [110] = { 52.8, 58.2, 2597, 150 }, + [111] = { 52.9, 58.1, 2597, 150 }, + [112] = { 53, 57.9, 2597, 150 }, + [113] = { 52.9, 57.8, 2597, 150 }, + [114] = { 53, 57.7, 2597, 150 }, + [115] = { 53, 57.6, 2597, 150 }, + [116] = { 52.9, 57.6, 2597, 150 }, + [117] = { 52.8, 57.5, 2597, 150 }, + [118] = { 53, 57.4, 2597, 150 }, + [119] = { 52.9, 57.3, 2597, 150 }, + [120] = { 42.6, 57.2, 2597, 150 }, + [121] = { 52.8, 57.2, 2597, 150 }, + [122] = { 52.9, 57, 2597, 150 }, + [123] = { 52.8, 57, 2597, 150 }, + [124] = { 42.7, 56.8, 2597, 150 }, + [125] = { 52.7, 56.8, 2597, 150 }, + [126] = { 52.9, 56.7, 2597, 150 }, + [127] = { 42.4, 56.7, 2597, 150 }, + [128] = { 42.9, 56.6, 2597, 150 }, + [129] = { 42.5, 56.5, 2597, 150 }, + [130] = { 42.2, 56.3, 2597, 150 }, + [131] = { 52.8, 56.3, 2597, 150 }, + [132] = { 42.5, 55.8, 2597, 150 }, + [133] = { 42.8, 55.7, 2597, 150 }, + [134] = { 43.2, 55.7, 2597, 150 }, + [135] = { 43, 55.6, 2597, 150 }, + [136] = { 42.6, 55.4, 2597, 150 }, + [137] = { 43.2, 55.4, 2597, 150 }, + [138] = { 42.9, 55.3, 2597, 150 }, + [139] = { 42.3, 55.3, 2597, 150 }, + [140] = { 43.2, 55.1, 2597, 150 }, + [141] = { 43, 55.1, 2597, 150 }, + [142] = { 42.7, 55.1, 2597, 150 }, + [143] = { 43.2, 54.8, 2597, 150 }, + [144] = { 42.9, 54.8, 2597, 150 }, + [145] = { 43, 54.6, 2597, 150 }, + [146] = { 43.2, 54.5, 2597, 150 }, + [147] = { 42.9, 54.5, 2597, 150 }, + [148] = { 43, 54.3, 2597, 150 }, + [149] = { 43.2, 54, 2597, 150 }, + [150] = { 42.9, 54, 2597, 150 }, + [151] = { 43.1, 53.9, 2597, 150 }, + [152] = { 43.3, 53.8, 2597, 150 }, + [153] = { 42.9, 53.6, 2597, 150 }, + [154] = { 43.2, 53.6, 2597, 150 }, + [155] = { 43.1, 53.4, 2597, 150 }, + [156] = { 43.3, 53.4, 2597, 150 }, + [157] = { 42.9, 53.2, 2597, 150 }, + [158] = { 43.2, 53.2, 2597, 150 }, + [159] = { 43, 52.9, 2597, 150 }, + [160] = { 42.9, 52.7, 2597, 150 }, + [161] = { 43.2, 52.7, 2597, 150 }, + [162] = { 43.1, 52.5, 2597, 150 }, + [163] = { 42.9, 52.1, 2597, 150 }, + [164] = { 42.6, 51.9, 2597, 150 }, + [165] = { 42.9, 51.8, 2597, 150 }, + }, + ["fac"] = "H", + }, + [179325] = { + ["coords"] = { + [1] = { 54.5, 48.3, 2597, 150 }, + [2] = { 54.3, 48.1, 2597, 150 }, + [3] = { 54.5, 48, 2597, 150 }, + [4] = { 54.2, 46.7, 2597, 150 }, + [5] = { 54.5, 46.7, 2597, 150 }, + [6] = { 54.4, 46.7, 2597, 150 }, + [7] = { 54.7, 46.6, 2597, 150 }, + [8] = { 54.9, 46.6, 2597, 150 }, + [9] = { 54.2, 46.5, 2597, 150 }, + [10] = { 55.2, 46.5, 2597, 150 }, + [11] = { 54.5, 46.5, 2597, 150 }, + [12] = { 55, 46.5, 2597, 150 }, + [13] = { 54.4, 46.5, 2597, 150 }, + [14] = { 54.3, 46.5, 2597, 150 }, + [15] = { 54.8, 46.5, 2597, 150 }, + [16] = { 54.9, 46.4, 2597, 150 }, + [17] = { 54.7, 46.4, 2597, 150 }, + [18] = { 55.3, 46.4, 2597, 150 }, + [19] = { 54.5, 46.4, 2597, 150 }, + [20] = { 55.1, 46.4, 2597, 150 }, + [21] = { 54.4, 46.4, 2597, 150 }, + [22] = { 55.7, 46.4, 2597, 150 }, + [23] = { 55.2, 46.3, 2597, 150 }, + [24] = { 54.8, 46.3, 2597, 150 }, + [25] = { 55.5, 46.3, 2597, 150 }, + [26] = { 55, 46.3, 2597, 150 }, + [27] = { 55.7, 46.2, 2597, 150 }, + [28] = { 55.1, 46.2, 2597, 150 }, + [29] = { 55.3, 46.1, 2597, 150 }, + [30] = { 55.8, 46.1, 2597, 150 }, + [31] = { 54.4, 46.1, 2597, 150 }, + [32] = { 54.1, 46.1, 2597, 150 }, + [33] = { 54.3, 46.1, 2597, 150 }, + [34] = { 55.5, 46.1, 2597, 150 }, + [35] = { 55.2, 46, 2597, 150 }, + [36] = { 55.4, 46, 2597, 150 }, + [37] = { 54.3, 45.9, 2597, 150 }, + [38] = { 54.1, 45.9, 2597, 150 }, + [39] = { 55.3, 45.8, 2597, 150 }, + [40] = { 54.2, 45.6, 2597, 150 }, + [41] = { 46.3, 38.3, 2597, 150 }, + [42] = { 46.1, 38.3, 2597, 150 }, + [43] = { 46.4, 38.3, 2597, 150 }, + [44] = { 46.3, 38.2, 2597, 150 }, + [45] = { 46.2, 38.1, 2597, 150 }, + [46] = { 46.4, 38.1, 2597, 150 }, + [47] = { 46.2, 38, 2597, 150 }, + [48] = { 46.4, 37.9, 2597, 150 }, + [49] = { 46.2, 37.9, 2597, 150 }, + [50] = { 46.3, 37.8, 2597, 150 }, + [51] = { 46.4, 37.8, 2597, 150 }, + [52] = { 46.2, 37.6, 2597, 150 }, + [53] = { 46.3, 37.6, 2597, 150 }, + [54] = { 46, 37.5, 2597, 150 }, + [55] = { 46.4, 37.5, 2597, 150 }, + [56] = { 46.2, 37.4, 2597, 150 }, + [57] = { 46.3, 37.4, 2597, 150 }, + [58] = { 46.1, 37.3, 2597, 150 }, + [59] = { 46.4, 37.3, 2597, 150 }, + [60] = { 46.2, 37.2, 2597, 150 }, + [61] = { 46.3, 37.1, 2597, 150 }, + [62] = { 46.4, 37, 2597, 150 }, + [63] = { 46.1, 37, 2597, 150 }, + [64] = { 46.2, 37, 2597, 150 }, + [65] = { 46, 36.8, 2597, 150 }, + [66] = { 46.2, 36.7, 2597, 150 }, + [67] = { 46.3, 36.7, 2597, 150 }, + [68] = { 46.2, 36.5, 2597, 150 }, + [69] = { 45.8, 36.3, 2597, 150 }, + [70] = { 42.7, 18.2, 2597, 150 }, + [71] = { 43.3, 18.1, 2597, 150 }, + [72] = { 44.2, 17.5, 2597, 150 }, + [73] = { 43.2, 17.4, 2597, 150 }, + [74] = { 42.8, 17.2, 2597, 150 }, + [75] = { 43.8, 17, 2597, 150 }, + [76] = { 43.3, 17, 2597, 150 }, + [77] = { 44.3, 16.9, 2597, 150 }, + [78] = { 43.7, 16.8, 2597, 150 }, + [79] = { 45.5, 16.8, 2597, 150 }, + [80] = { 44.4, 16.8, 2597, 150 }, + [81] = { 45.6, 16.8, 2597, 150 }, + [82] = { 44, 16.7, 2597, 150 }, + [83] = { 44.9, 16.7, 2597, 150 }, + [84] = { 44.4, 16.4, 2597, 150 }, + [85] = { 45.6, 16.3, 2597, 150 }, + [86] = { 45.5, 16.2, 2597, 150 }, + [87] = { 44, 16.2, 2597, 150 }, + [88] = { 45, 16.1, 2597, 150 }, + [89] = { 42.9, 16, 2597, 150 }, + [90] = { 45.7, 15.9, 2597, 150 }, + [91] = { 44.6, 15.9, 2597, 150 }, + [92] = { 43.9, 15.7, 2597, 150 }, + [93] = { 44.3, 15.6, 2597, 150 }, + [94] = { 43.3, 15.6, 2597, 150 }, + [95] = { 45.6, 15.6, 2597, 150 }, + [96] = { 44.2, 15.4, 2597, 150 }, + [97] = { 43.1, 15.4, 2597, 150 }, + [98] = { 45.5, 15.3, 2597, 150 }, + [99] = { 43.5, 15.3, 2597, 150 }, + [100] = { 53.6, 11.1, 2597, 150 }, + [101] = { 53.6, 11, 2597, 150 }, + [102] = { 53.7, 10.9, 2597, 150 }, + [103] = { 53.6, 10.9, 2597, 150 }, + [104] = { 53.7, 10.8, 2597, 150 }, + [105] = { 53.7, 10.7, 2597, 150 }, + [106] = { 53.6, 10.6, 2597, 150 }, + [107] = { 53.7, 10.6, 2597, 150 }, + }, + ["fac"] = "A", + }, + [179364] = { + ["coords"] = { + [1] = { 22.4, 41.2, 2677, 300 }, + }, + }, + [179365] = { + ["coords"] = { + [1] = { 37.4, 52.4, 2677, 300 }, + }, + }, + [179392] = { + ["coords"] = { + [1] = { 52.8, 44.5, 2597, 60 }, + [2] = { 44.5, 18.9, 2597, 60 }, + [3] = { 70.4, 27.7, 3457, 300 }, + }, + }, + [179394] = { + ["coords"] = { + [1] = { 34, 10, 17, 300 }, + [2] = { 79.3, 62.4, 406, 300 }, + [3] = { 52.8, 44.5, 2597, 60 }, + [4] = { 44.4, 18.9, 2597, 60 }, + [5] = { 35.4, 92, 3478, 25 }, + }, + }, + [179395] = { + ["coords"] = { + [1] = { 52.8, 44.5, 2597, 60 }, + [2] = { 44.4, 18.9, 2597, 60 }, + [3] = { 54.1, 86.3, 3457, 300 }, + }, + }, + [179396] = { + ["coords"] = { + [1] = { 43.7, 16.9, 357, 25 }, + [2] = { 52.9, 44.5, 2597, 60 }, + [3] = { 44.5, 18.8, 2597, 60 }, + }, + }, + [179469] = { + ["coords"] = { + [1] = { 62, 30.1, 357, 900 }, + [2] = { 66.5, 41.5, 2557, 900 }, + }, + }, + [179485] = { + ["coords"] = { + [1] = { 26.5, 57.7, 2557, 25 }, + }, + }, + [179486] = { + ["coords"] = { + [1] = { 12.5, 41.7, 11, 180 }, + [2] = { 19, 37.7, 11, 180 }, + [3] = { 17.2, 36.2, 11, 180 }, + [4] = { 20.6, 35.4, 11, 180 }, + [5] = { 23.2, 31.9, 11, 180 }, + [6] = { 22, 31.2, 11, 180 }, + [7] = { 79.4, 46.1, 267, 180 }, + [8] = { 79, 46, 267, 180 }, + [9] = { 79, 44.5, 267, 180 }, + [10] = { 77.5, 44.3, 267, 180 }, + [11] = { 80.7, 44.1, 267, 180 }, + [12] = { 82.9, 42.6, 267, 180 }, + [13] = { 81.9, 41.7, 267, 180 }, + [14] = { 82.6, 41, 267, 180 }, + [15] = { 69.7, 59.2, 406, 180 }, + [16] = { 66.7, 59, 406, 180 }, + [17] = { 61.5, 58.2, 406, 180 }, + [18] = { 60.2, 56.5, 406, 180 }, + [19] = { 62.7, 56.3, 406, 180 }, + [20] = { 69.6, 55.8, 406, 180 }, + [21] = { 61.9, 54.9, 406, 180 }, + [22] = { 63, 54.7, 406, 180 }, + [23] = { 65.3, 54.4, 406, 180 }, + [24] = { 70, 53.3, 406, 180 }, + [25] = { 68.6, 52.7, 406, 180 }, + }, + }, + [179487] = { + ["coords"] = { + [1] = { 43.4, 64.5, 44, 480 }, + [2] = { 39.4, 61.9, 44, 480 }, + [3] = { 52.2, 61.3, 44, 480 }, + [4] = { 44.9, 59, 44, 480 }, + [5] = { 37.8, 58.9, 44, 480 }, + [6] = { 44.7, 56, 44, 480 }, + [7] = { 50.2, 55.1, 44, 480 }, + [8] = { 47.9, 54.3, 44, 480 }, + [9] = { 32.2, 98.9, 148, 480 }, + [10] = { 29.6, 97.7, 148, 480 }, + [11] = { 25.2, 96.3, 148, 480 }, + [12] = { 28.8, 95.6, 148, 480 }, + [13] = { 13.6, 30.9, 331, 480 }, + [14] = { 13.4, 27.1, 331, 480 }, + [15] = { 15.6, 19, 331, 480 }, + [16] = { 15.1, 17.1, 331, 480 }, + [17] = { 12.1, 15.7, 331, 480 }, + [18] = { 7.1, 14.2, 331, 480 }, + [19] = { 11.2, 13.4, 331, 480 }, + }, + }, + [179488] = { + ["coords"] = { + [1] = { 13.7, 41.1, 11, 300 }, + [2] = { 18.1, 39.7, 11, 300 }, + [3] = { 13.4, 38.1, 11, 300 }, + [4] = { 16.3, 35.7, 11, 300 }, + [5] = { 14.3, 32.8, 11, 300 }, + [6] = { 78.3, 43.5, 267, 300 }, + [7] = { 80.5, 40.5, 267, 300 }, + [8] = { 83.1, 40, 267, 300 }, + [9] = { 77.9, 39.1, 267, 300 }, + [10] = { 77.5, 39, 267, 300 }, + [11] = { 70.5, 64.3, 406, 300 }, + [12] = { 70.2, 62.6, 406, 300 }, + [13] = { 71.5, 61.8, 406, 300 }, + [14] = { 71.9, 61.4, 406, 300 }, + [15] = { 71.9, 61.1, 406, 300 }, + }, + }, + [179489] = { + ["coords"] = { + [1] = { 28.4, 99, 148, 540 }, + [2] = { 10.7, 17.3, 331, 540 }, + }, + }, + [179490] = { + ["coords"] = { + [1] = { 42.1, 31, 3, 180 }, + [2] = { 41.4, 30, 3, 180 }, + [3] = { 43.8, 29.7, 3, 180 }, + [4] = { 41.3, 29.3, 3, 180 }, + [5] = { 40.5, 28, 3, 180 }, + [6] = { 41.4, 26.2, 3, 180 }, + [7] = { 64.1, 98.4, 1337, 180 }, + [8] = { 19.6, 97.6, 5602, 180 }, + [9] = { 19.3, 97.2, 5602, 180 }, + [10] = { 20.4, 97.1, 5602, 180 }, + [11] = { 19.2, 96.9, 5602, 180 }, + [12] = { 18.8, 96.3, 5602, 180 }, + [13] = { 19.2, 95.4, 5602, 180 }, + }, + }, + [179491] = { + ["coords"] = { + [1] = { 37.6, 22.9, 405, 180 }, + [2] = { 31.6, 22.5, 405, 180 }, + [3] = { 36.6, 22.1, 405, 180 }, + [4] = { 37.2, 22, 405, 180 }, + [5] = { 37.5, 21.3, 405, 180 }, + [6] = { 35.4, 20.8, 405, 180 }, + [7] = { 34, 20.7, 405, 180 }, + }, + }, + [179492] = { + ["coords"] = { + [1] = { 40.8, 28.7, 3, 180 }, + [2] = { 42.3, 28.4, 3, 180 }, + [3] = { 40.7, 28.1, 3, 180 }, + [4] = { 41.1, 27.4, 3, 180 }, + [5] = { 19, 96.6, 5602, 180 }, + [6] = { 19.7, 96.4, 5602, 180 }, + [7] = { 18.9, 96.3, 5602, 180 }, + [8] = { 19.1, 96, 5602, 180 }, + }, + }, + [179493] = { + ["coords"] = { + [1] = { 71.8, 61.6, 8, 600 }, + [2] = { 69.7, 61.2, 8, 600 }, + [3] = { 74.2, 58.5, 8, 600 }, + [4] = { 66.3, 58.4, 8, 600 }, + [5] = { 65.4, 51.7, 8, 600 }, + [6] = { 73.4, 51.1, 8, 600 }, + [7] = { 67.7, 48.9, 8, 600 }, + [8] = { 71.7, 48.2, 8, 600 }, + [9] = { 68.9, 48, 8, 600 }, + [10] = { 34.4, 17, 405, 180 }, + [11] = { 35.5, 14, 405, 180 }, + [12] = { 34.7, 12.6, 405, 180 }, + }, + }, + [179494] = { + ["coords"] = { + [1] = { 40.6, 52.8, 51, 180 }, + [2] = { 38.4, 50.8, 51, 180 }, + [3] = { 38, 45.9, 51, 180 }, + [4] = { 35.9, 45.2, 51, 180 }, + [5] = { 40.4, 38.2, 51, 180 }, + [6] = { 40.7, 31.2, 51, 180 }, + [7] = { 42.3, 29.5, 51, 180 }, + [8] = { 39.1, 24.4, 51, 180 }, + }, + }, + [179496] = { + ["coords"] = { + [1] = { 46.9, 43.8, 51, 7200 }, + [2] = { 42.9, 31.2, 51, 7200 }, + [3] = { 43.9, 30.9, 51, 7200 }, + [4] = { 45.8, 28.3, 51, 7200 }, + [5] = { 46.9, 25.7, 51, 7200 }, + [6] = { 71.3, 48.4, 440, 180 }, + [7] = { 70.9, 47.4, 440, 180 }, + [8] = { 74.6, 47.3, 440, 180 }, + [9] = { 74.8, 47.1, 440, 180 }, + [10] = { 74.2, 47, 440, 180 }, + [11] = { 72.9, 45.9, 440, 180 }, + [12] = { 74.8, 45.5, 440, 180 }, + [13] = { 75.6, 45.1, 440, 180 }, + [14] = { 5.9, 39.7, 5121, 180 }, + [15] = { 6.2, 39.1, 5121, 180 }, + [16] = { 4.9, 38.9, 5121, 180 }, + [17] = { 2.1, 36.6, 5121, 180 }, + [18] = { 6.3, 35.9, 5121, 180 }, + [19] = { 8, 35, 5121, 180 }, + }, + }, + [179497] = { + ["coords"] = { + [1] = { 78.5, 85.7, 16, 180 }, + [2] = { 71.3, 74.4, 16, 180 }, + [3] = { 61.2, 71.1, 16, 180 }, + [4] = { 50.5, 64.8, 16, 180 }, + [5] = { 49.9, 63.5, 16, 180 }, + [6] = { 52.6, 59.5, 16, 180 }, + [7] = { 56.4, 58.2, 16, 180 }, + [8] = { 57.9, 56.7, 16, 180 }, + [9] = { 60.6, 50.8, 16, 180 }, + [10] = { 55.1, 48.3, 16, 180 }, + [11] = { 78, 44.9, 16, 180 }, + [12] = { 59.2, 43.1, 16, 180 }, + [13] = { 58.2, 42.9, 16, 180 }, + [14] = { 46.4, 42.4, 16, 180 }, + [15] = { 49.6, 41.7, 16, 180 }, + [16] = { 73.1, 40.9, 16, 180 }, + [17] = { 78.6, 39.1, 16, 180 }, + [18] = { 82.5, 30.7, 16, 180 }, + }, + }, + [179498] = { + ["coords"] = { + [1] = { 87.8, 86.8, 139, 600 }, + [2] = { 80.6, 84.4, 139, 600 }, + [3] = { 82.9, 83.5, 139, 600 }, + [4] = { 87.1, 81.3, 139, 600 }, + [5] = { 84.2, 81.1, 139, 600 }, + [6] = { 79, 81, 139, 600 }, + [7] = { 77.5, 80.1, 139, 600 }, + [8] = { 82, 80, 139, 600 }, + [9] = { 84.7, 79.7, 139, 600 }, + [10] = { 77.9, 76.3, 139, 600 }, + [11] = { 48.6, 72.5, 4012, 600 }, + [12] = { 39.7, 69.6, 4012, 600 }, + [13] = { 42.5, 68.5, 4012, 600 }, + [14] = { 47.7, 65.7, 4012, 600 }, + [15] = { 44.2, 65.5, 4012, 600 }, + [16] = { 37.8, 65.3, 4012, 600 }, + [17] = { 35.9, 64.3, 4012, 600 }, + [18] = { 41.5, 64.1, 4012, 600 }, + [19] = { 44.7, 63.7, 4012, 600 }, + [20] = { 36.5, 59.6, 4012, 600 }, + }, + }, + [179499] = { + ["coords"] = { + [1] = { 22, 53, 2557, 7200 }, + }, + }, + [179501] = { + ["coords"] = { + [1] = { 28.5, 55.7, 2557, 0 }, + }, + }, + [179507] = { + ["coords"] = { + [1] = { 60.3, 31.4, 357, 900 }, + [2] = { 57.4, 48.4, 2557, 900 }, + }, + }, + [179508] = { + ["coords"] = { + [1] = { 60.3, 30, 357, 900 }, + [2] = { 57.5, 41.1, 2557, 900 }, + }, + }, + [179509] = { + ["coords"] = { + [1] = { 61.7, 25, 357, 900 }, + [2] = { 64.7, 14.1, 2557, 900 }, + }, + }, + [179510] = { + ["coords"] = { + [1] = { 62.6, 25, 357, 900 }, + [2] = { 69.6, 14.1, 2557, 900 }, + }, + }, + [179511] = { + ["coords"] = { + [1] = { 28.5, 55.9, 2557, 25 }, + }, + }, + [179516] = { + ["coords"] = { + [1] = { 49.3, 78.7, 2557, 43200 }, + }, + }, + [179548] = { + ["coords"] = { + [1] = { 42.8, 89.7, 2557, 86400 }, + [2] = { 23.5, 63.2, 2557, 86400 }, + [3] = { 30.9, 25, 2557, 86400 }, + }, + }, + [179549] = { + ["coords"] = { + [1] = { 62.7, 82.2, 2557, 7200 }, + }, + }, + [179552] = { + ["coords"] = { + [1] = { 43.6, 53.1, 1584, 180 }, + }, + }, + [179553] = { + ["coords"] = { + [1] = { 67.8, 30.4, 1584, 25 }, + [2] = { 31.1, 38.3, 2717, 25 }, + }, + }, + [179558] = { + ["coords"] = { + [1] = { 67.3, 84.2, 1519, 0 }, + }, + }, + [179560] = { + ["coords"] = { + [1] = { 49.3, 82.5, 1519, 30 }, + [2] = { 62.1, 69.5, 1519, 30 }, + [3] = { 39.1, 63.8, 1519, 30 }, + [4] = { 75.1, 61.3, 1519, 30 }, + [5] = { 55.5, 55.9, 1519, 30 }, + [6] = { 50.3, 45.5, 1519, 30 }, + [7] = { 63.5, 37, 1519, 30 }, + [8] = { 50.5, 97.2, 5581, 30 }, + }, + ["fac"] = "A", + }, + [179564] = { + ["coords"] = { + [1] = { 31.8, 28.4, 2557, 0 }, + }, + }, + [179565] = { + ["coords"] = { + [1] = { 63.2, 55.3, 1377, 2 }, + }, + }, + [179584] = { + ["coords"] = { + [1] = { 53.2, 56.1, 25, 7200 }, + [2] = { 29.8, 28.7, 46, 7200 }, + }, + ["fac"] = "AH", + }, + [179585] = { + ["coords"] = { + [1] = { 65.4, 63.5, 25, 7200 }, + [2] = { 32.8, 30.4, 46, 7200 }, + }, + ["fac"] = "AH", + }, + [179595] = { + ["coords"] = { + [1] = { 53.2, 70.3, 1519, 900 }, + }, + ["fac"] = "AH", + }, + [179598] = { + ["coords"] = { + [1] = { 64, 63.6, 11, 300 }, + [2] = { 17.9, 27.8, 5602, 300 }, + }, + ["fac"] = "AH", + }, + [179664] = { + ["coords"] = { + [1] = { 78.9, 23.5, 16, 25 }, + [2] = { 77.3, 22.6, 16, 25 }, + [3] = { 81.3, 22.4, 16, 25 }, + [4] = { 79.5, 21.7, 16, 25 }, + [5] = { 76.9, 20.9, 16, 25 }, + [6] = { 81.4, 20.8, 16, 25 }, + [7] = { 80.4, 19.7, 16, 25 }, + [8] = { 77, 19.5, 16, 25 }, + [9] = { 79.1, 19, 16, 25 }, + [10] = { 79.5, 17.1, 16, 25 }, + }, + }, + [179666] = { + ["coords"] = { + [1] = { 54.2, 56.1, 490, 25 }, + [2] = { 50.3, 55.6, 490, 25 }, + [3] = { 52.5, 54.6, 490, 25 }, + [4] = { 46, 54, 490, 25 }, + [5] = { 48.9, 53.8, 490, 25 }, + [6] = { 54.6, 53.5, 490, 25 }, + [7] = { 46.6, 51.5, 490, 25 }, + [8] = { 55, 50.6, 490, 25 }, + [9] = { 45.2, 50.1, 490, 25 }, + [10] = { 44.8, 46.4, 490, 25 }, + [11] = { 46.4, 45.9, 490, 25 }, + [12] = { 54.4, 45.2, 490, 25 }, + [13] = { 48.3, 44.1, 490, 25 }, + [14] = { 49.6, 43.5, 490, 25 }, + [15] = { 51, 43.4, 490, 25 }, + }, + }, + [179672] = { + ["coords"] = { + [1] = { 54.5, 49.9, 876, 0 }, + }, + ["fac"] = "AH", + }, + [179673] = { + ["coords"] = { + [1] = { 52.5, 54.8, 876, 0 }, + [2] = { 53.7, 52.7, 876, 0 }, + [3] = { 52.9, 51.7, 876, 0 }, + [4] = { 53.9, 51, 876, 0 }, + }, + ["fac"] = "AH", + }, + [179677] = { + ["coords"] = { + [1] = { 45.7, 34.8, 361, 180 }, + }, + }, + [179697] = { + ["coords"] = { + [1] = { 30.5, 47.9, 33, 0 }, + }, + }, + [179703] = { + ["coords"] = { + [1] = { 77.9, 68.4, 2717, 0 }, + }, + }, + [179704] = { + ["coords"] = { + [1] = { 30, 22.9, 1977, 600 }, + }, + }, + [179725] = { + ["coords"] = { + [1] = { 69.5, 62.7, 1519, 900 }, + }, + }, + [179726] = { + ["coords"] = { + [1] = { 75.8, 63.4, 1519, 900 }, + }, + }, + [179727] = { + ["coords"] = { + [1] = { 75.1, 56.4, 1519, 900 }, + }, + }, + [179728] = { + ["coords"] = { + [1] = { 71.3, 58.8, 1519, 900 }, + }, + }, + [179729] = { + ["coords"] = { + [1] = { 75.8, 63.4, 1519, 900 }, + }, + }, + [179730] = { + ["coords"] = { + [1] = { 75.1, 56.3, 1519, 900 }, + }, + }, + [179731] = { + ["coords"] = { + [1] = { 71.3, 58.8, 1519, 900 }, + }, + }, + [179732] = { + ["coords"] = { + [1] = { 71.3, 58.8, 1519, 900 }, + }, + }, + [179733] = { + ["coords"] = { + [1] = { 75.1, 56.4, 1519, 900 }, + }, + }, + [179734] = { + ["coords"] = { + [1] = { 75.8, 63.4, 1519, 900 }, + }, + }, + [179735] = { + ["coords"] = { + [1] = { 75.8, 66.1, 1519, 900 }, + }, + }, + [179736] = { + ["coords"] = { + [1] = { 75.8, 65.2, 1519, 900 }, + }, + }, + [179737] = { + ["coords"] = { + [1] = { 77.2, 65.9, 1519, 900 }, + }, + }, + [179738] = { + ["coords"] = { + [1] = { 77.5, 64.8, 1519, 900 }, + }, + }, + [179743] = { + ["coords"] = { + [1] = { 69.5, 62.7, 1519, 900 }, + }, + }, + [179744] = { + ["coords"] = { + [1] = { 69.5, 62.7, 1519, 900 }, + }, + }, + [179746] = { + ["coords"] = { + [1] = { 23.9, 83.5, 2057, 300 }, + }, + }, + [179747] = { + ["coords"] = { + [1] = { 21.4, 37.7, 139, 900 }, + [2] = { 19.7, 36.8, 139, 900 }, + [3] = { 22.3, 36.2, 139, 900 }, + [4] = { 18.5, 36.1, 139, 900 }, + [5] = { 18.4, 34.9, 139, 900 }, + [6] = { 21.7, 34.6, 139, 900 }, + [7] = { 18.2, 34.4, 139, 900 }, + [8] = { 17.2, 34.3, 139, 900 }, + [9] = { 18.6, 34.2, 139, 900 }, + [10] = { 14.6, 34.2, 139, 900 }, + [11] = { 15.4, 33.5, 139, 900 }, + [12] = { 20.5, 33.3, 139, 900 }, + [13] = { 14.4, 33, 139, 900 }, + [14] = { 21.7, 32.8, 139, 900 }, + [15] = { 18.2, 32.7, 139, 900 }, + [16] = { 17.9, 32.6, 139, 900 }, + [17] = { 17.5, 32.5, 139, 900 }, + [18] = { 22.5, 32.3, 139, 900 }, + [19] = { 19.6, 32.2, 139, 900 }, + [20] = { 14.7, 32.2, 139, 900 }, + [21] = { 13.9, 32.2, 139, 900 }, + [22] = { 17.7, 32.1, 139, 900 }, + [23] = { 22, 32.1, 139, 900 }, + [24] = { 15.5, 31.8, 139, 900 }, + [25] = { 17.6, 31.3, 139, 900 }, + [26] = { 17.5, 31.2, 139, 900 }, + [27] = { 17.9, 31.1, 139, 900 }, + [28] = { 14.6, 31, 139, 900 }, + [29] = { 17.8, 31, 139, 900 }, + [30] = { 16.5, 31, 139, 900 }, + [31] = { 16.6, 30.9, 139, 900 }, + [32] = { 16.7, 30.4, 139, 900 }, + [33] = { 18.1, 29.1, 139, 900 }, + [34] = { 17.4, 28.2, 139, 900 }, + [35] = { 16.4, 26.5, 139, 900 }, + [36] = { 61.5, 99.6, 5225, 900 }, + [37] = { 65.6, 99.2, 5225, 900 }, + [38] = { 61.2, 98.9, 5225, 900 }, + [39] = { 59.9, 98.8, 5225, 900 }, + [40] = { 61.7, 98.7, 5225, 900 }, + [41] = { 56.7, 98.7, 5225, 900 }, + [42] = { 57.6, 97.8, 5225, 900 }, + [43] = { 64.1, 97.6, 5225, 900 }, + [44] = { 56.4, 97.3, 5225, 900 }, + [45] = { 65.6, 96.9, 5225, 900 }, + [46] = { 61.2, 96.9, 5225, 900 }, + [47] = { 60.8, 96.7, 5225, 900 }, + [48] = { 60.3, 96.6, 5225, 900 }, + [49] = { 66.5, 96.3, 5225, 900 }, + [50] = { 62.9, 96.2, 5225, 900 }, + [51] = { 56.8, 96.2, 5225, 900 }, + [52] = { 55.8, 96.2, 5225, 900 }, + [53] = { 60.5, 96.1, 5225, 900 }, + [54] = { 66, 96, 5225, 900 }, + [55] = { 57.7, 95.7, 5225, 900 }, + [56] = { 60.4, 95.1, 5225, 900 }, + [57] = { 60.3, 95, 5225, 900 }, + [58] = { 60.8, 94.8, 5225, 900 }, + [59] = { 56.6, 94.7, 5225, 900 }, + [60] = { 60.6, 94.7, 5225, 900 }, + [61] = { 59.1, 94.7, 5225, 900 }, + [62] = { 59.2, 94.5, 5225, 900 }, + [63] = { 59.2, 94, 5225, 900 }, + [64] = { 61.1, 92.3, 5225, 900 }, + [65] = { 60.2, 91.2, 5225, 900 }, + [66] = { 58.9, 89.1, 5225, 900 }, + }, + }, + [179748] = { + ["coords"] = { + [1] = { 80.8, 85.6, 139, 900 }, + [2] = { 39.9, 71, 4012, 900 }, + }, + }, + [179749] = { + ["coords"] = { + [1] = { 81.1, 83.2, 139, 900 }, + [2] = { 40.3, 68, 4012, 900 }, + }, + }, + [179750] = { + ["coords"] = { + [1] = { 81.4, 83.4, 139, 900 }, + [2] = { 40.7, 68.3, 4012, 900 }, + }, + }, + [179751] = { + ["coords"] = { + [1] = { 81.3, 84.7, 139, 900 }, + [2] = { 40.6, 69.9, 4012, 900 }, + }, + }, + [179752] = { + ["coords"] = { + [1] = { 80.5, 84.1, 139, 900 }, + [2] = { 39.6, 69.1, 4012, 900 }, + }, + }, + [179753] = { + ["coords"] = { + [1] = { 80.8, 85.2, 139, 900 }, + [2] = { 40, 70.5, 4012, 900 }, + }, + }, + [179754] = { + ["coords"] = { + [1] = { 80.2, 84.9, 139, 900 }, + [2] = { 39.3, 70.1, 4012, 900 }, + }, + }, + [179755] = { + ["coords"] = { + [1] = { 81.1, 85.5, 139, 900 }, + [2] = { 40.3, 70.8, 4012, 900 }, + }, + }, + [179756] = { + ["coords"] = { + [1] = { 80.5, 85, 139, 900 }, + [2] = { 39.6, 70.3, 4012, 900 }, + }, + }, + [179757] = { + ["coords"] = { + [1] = { 64.4, 17, 4, 300 }, + [2] = { 64, 16.9, 4, 300 }, + [3] = { 64.3, 15.2, 4, 300 }, + [4] = { 69.5, 57.5, 10, 300 }, + [5] = { 69.6, 57.5, 10, 300 }, + [6] = { 77, 56.5, 15, 300 }, + [7] = { 77.1, 56.1, 15, 300 }, + [8] = { 76.9, 56.1, 15, 300 }, + [9] = { 68.1, 48.7, 15, 300 }, + [10] = { 78.8, 55.9, 85, 300 }, + [11] = { 61.7, 52, 85, 300 }, + [12] = { 60.8, 51.2, 85, 300 }, + [13] = { 60.7, 51.2, 85, 300 }, + [14] = { 80.8, 85.5, 139, 900 }, + [15] = { 29.6, 64.3, 141, 300 }, + [16] = { 29.7, 64.3, 141, 300 }, + [17] = { 31.2, 63, 141, 300 }, + [18] = { 31.3, 63, 141, 300 }, + [19] = { 31.1, 63, 141, 300 }, + [20] = { 31.1, 62.9, 141, 300 }, + [21] = { 31.4, 62.9, 141, 300 }, + [22] = { 74.4, 39.5, 1497, 300 }, + [23] = { 75.9, 39.4, 1497, 300 }, + [24] = { 75.7, 38.9, 1497, 300 }, + [25] = { 73.6, 33.2, 1497, 300 }, + [26] = { 73.2, 32.7, 1497, 300 }, + [27] = { 42.1, 80.6, 1519, 300 }, + [28] = { 42.2, 80.5, 1519, 300 }, + [29] = { 42.4, 80.4, 1519, 300 }, + [30] = { 42.1, 80.4, 1519, 300 }, + [31] = { 42.4, 80.2, 1519, 300 }, + [32] = { 42.4, 80.1, 1519, 300 }, + [33] = { 42.5, 80, 1519, 300 }, + [34] = { 42.2, 79.8, 1519, 300 }, + [35] = { 42.4, 79.7, 1519, 300 }, + [36] = { 42.3, 79.6, 1519, 300 }, + [37] = { 67.2, 28.1, 1519, 300 }, + [38] = { 66.8, 27.3, 1519, 300 }, + [39] = { 41.5, 58.8, 1537, 300 }, + [40] = { 42.1, 58.3, 1537, 300 }, + [41] = { 43.5, 55.4, 1537, 300 }, + [42] = { 37.7, 52.5, 1537, 300 }, + [43] = { 37.8, 52.3, 1537, 300 }, + [44] = { 38.8, 50.7, 1537, 300 }, + [45] = { 41.7, 50.3, 1537, 300 }, + [46] = { 41.1, 50.1, 1537, 300 }, + [47] = { 40.4, 49.9, 1537, 300 }, + [48] = { 59.8, 83.7, 1657, 300 }, + [49] = { 59.9, 83.5, 1657, 300 }, + [50] = { 67.2, 77.4, 1657, 300 }, + [51] = { 67.8, 77.3, 1657, 300 }, + [52] = { 67.4, 77.3, 1657, 300 }, + [53] = { 66.9, 77.2, 1657, 300 }, + [54] = { 66.9, 76.9, 1657, 300 }, + [55] = { 68.1, 76.6, 1657, 300 }, + [56] = { 40, 70.9, 4012, 900 }, + [57] = { 33.6, 54.3, 5179, 300 }, + [58] = { 33.7, 54.3, 5179, 300 }, + [59] = { 52.5, 92.5, 5581, 300 }, + [60] = { 52.3, 92, 5581, 300 }, + }, + }, + [179758] = { + ["coords"] = { + [1] = { 80.3, 85.3, 139, 900 }, + [2] = { 39.4, 70.6, 4012, 900 }, + }, + }, + [179759] = { + ["coords"] = { + [1] = { 80.3, 85.2, 139, 900 }, + [2] = { 39.4, 70.5, 4012, 900 }, + }, + }, + [179760] = { + ["coords"] = { + [1] = { 80.4, 85.5, 139, 900 }, + [2] = { 39.5, 70.8, 4012, 900 }, + }, + }, + [179761] = { + ["coords"] = { + [1] = { 80.5, 85.5, 139, 900 }, + [2] = { 39.6, 70.9, 4012, 900 }, + }, + }, + [179762] = { + ["coords"] = { + [1] = { 80.6, 85.6, 139, 900 }, + [2] = { 39.7, 71, 4012, 900 }, + }, + }, + [179763] = { + ["coords"] = { + [1] = { 80.6, 84.7, 139, 900 }, + [2] = { 39.8, 69.8, 4012, 900 }, + }, + }, + [179764] = { + ["coords"] = { + [1] = { 80.6, 85.2, 139, 900 }, + [2] = { 39.7, 70.5, 4012, 900 }, + }, + }, + [179765] = { + ["coords"] = { + [1] = { 80.5, 85.3, 139, 900 }, + [2] = { 39.7, 70.7, 4012, 900 }, + }, + }, + [179766] = { + ["coords"] = { + [1] = { 80.9, 84.8, 139, 900 }, + [2] = { 40.1, 70, 4012, 900 }, + }, + }, + [179780] = { + ["coords"] = { + [1] = { 73.8, 49.7, 17, 300 }, + [2] = { 73.9, 49.6, 17, 300 }, + [3] = { 73.7, 49.6, 17, 300 }, + [4] = { 73.8, 49.5, 17, 300 }, + [5] = { 29.2, 44.8, 44, 7200 }, + }, + }, + [179781] = { + ["coords"] = { + [1] = { 64.2, 17, 4, 300 }, + [2] = { 64.4, 15.9, 4, 300 }, + [3] = { 64.2, 15.8, 4, 300 }, + [4] = { 64.7, 15.5, 4, 300 }, + [5] = { 80.8, 61.1, 28, 300 }, + [6] = { 29.8, 44.6, 44, 7200 }, + [7] = { 22.5, 84.6, 139, 300 }, + [8] = { 58.5, 55.2, 1497, 300 }, + [9] = { 73.4, 36.6, 1497, 300 }, + [10] = { 58.4, 35.5, 1497, 300 }, + [11] = { 60.4, 32.7, 1497, 300 }, + [12] = { 67, 29, 1519, 300 }, + [13] = { 67, 28.9, 1519, 300 }, + [14] = { 67.1, 28.8, 1519, 300 }, + [15] = { 66.8, 28.7, 1519, 300 }, + [16] = { 66.8, 28.6, 1519, 300 }, + [17] = { 67, 28.4, 1519, 300 }, + [18] = { 66.3, 27.8, 1519, 300 }, + [19] = { 66.4, 27.7, 1519, 300 }, + [20] = { 66.5, 27.6, 1519, 300 }, + [21] = { 66.1, 27.4, 1519, 300 }, + [22] = { 66.2, 27.3, 1519, 300 }, + [23] = { 66.3, 27.2, 1519, 300 }, + [24] = { 52.4, 93, 5581, 300 }, + [25] = { 52.5, 92.9, 5581, 300 }, + [26] = { 52.5, 92.8, 5581, 300 }, + [27] = { 52.3, 92.8, 5581, 300 }, + [28] = { 52.3, 92.7, 5581, 300 }, + [29] = { 52.4, 92.6, 5581, 300 }, + [30] = { 52, 92.3, 5581, 300 }, + [31] = { 52.1, 92.2, 5581, 300 }, + [32] = { 51.9, 92.1, 5581, 300 }, + [33] = { 52, 92, 5581, 300 }, + }, + }, + [179782] = { + ["coords"] = { + [1] = { 12.4, 31.7, 46, 7200 }, + [2] = { 89.1, 61.3, 5581, 7200 }, + }, + }, + [179784] = { + ["coords"] = { + [1] = { 46.6, 96.7, 2677, 300 }, + [2] = { 43.1, 95.8, 2677, 300 }, + [3] = { 34.5, 94.6, 2677, 300 }, + [4] = { 37.3, 91.6, 2677, 300 }, + [5] = { 52.2, 89.5, 2677, 300 }, + [6] = { 31.6, 89.2, 2677, 300 }, + [7] = { 40.5, 87.9, 2677, 300 }, + [8] = { 34.9, 86, 2677, 300 }, + [9] = { 55.8, 85.9, 2677, 300 }, + [10] = { 50.2, 85.2, 2677, 300 }, + [11] = { 30, 85.2, 2677, 300 }, + [12] = { 38, 82.7, 2677, 300 }, + [13] = { 32.8, 82.1, 2677, 300 }, + [14] = { 53.9, 81.4, 2677, 300 }, + [15] = { 27.9, 81.3, 2677, 300 }, + [16] = { 48.1, 81.1, 2677, 300 }, + [17] = { 36, 78.9, 2677, 300 }, + [18] = { 31.1, 78, 2677, 300 }, + [19] = { 51.8, 77.2, 2677, 300 }, + [20] = { 26.3, 77.1, 2677, 300 }, + [21] = { 44.5, 76.2, 2677, 300 }, + [22] = { 34.2, 74.7, 2677, 300 }, + [23] = { 29.4, 73.9, 2677, 300 }, + [24] = { 47.4, 73.2, 2677, 300 }, + [25] = { 24.1, 73.1, 2677, 300 }, + [26] = { 32.2, 70.9, 2677, 300 }, + [27] = { 43.4, 70.8, 2677, 300 }, + [28] = { 50.2, 70.2, 2677, 300 }, + [29] = { 27.4, 69.9, 2677, 300 }, + [30] = { 46.3, 67.9, 2677, 300 }, + [31] = { 40.6, 67.6, 2677, 300 }, + [32] = { 30.5, 66.7, 2677, 300 }, + [33] = { 43.4, 64.8, 2677, 300 }, + [34] = { 40.1, 63.6, 2677, 300 }, + [35] = { 47.1, 60.6, 2677, 300 }, + [36] = { 37.2, 60.4, 2677, 300 }, + [37] = { 43.8, 60, 2677, 300 }, + [38] = { 43.6, 53.6, 2677, 300 }, + }, + }, + [179826] = { + ["coords"] = { + [1] = { 40.4, 35.7, 51, 2 }, + }, + }, + [179827] = { + ["coords"] = { + [1] = { 37.6, 26.5, 51, 2 }, + }, + ["fac"] = "AH", + }, + [179828] = { + ["coords"] = { + [1] = { 44.6, 32.1, 51, 300 }, + [2] = { 45, 31.8, 51, 300 }, + [3] = { 45.3, 31.6, 51, 300 }, + [4] = { 45.8, 31.1, 51, 300 }, + [5] = { 45.9, 30.8, 51, 300 }, + [6] = { 44.6, 30.4, 51, 300 }, + [7] = { 45.7, 28.1, 51, 300 }, + [8] = { 46.7, 27.5, 51, 300 }, + }, + ["fac"] = "AH", + }, + [179846] = { + ["coords"] = { + [1] = { 46.8, 22.3, 3, 300 }, + [2] = { 44.9, 43.4, 357, 900 }, + [3] = { 88.1, 81.5, 1337, 300 }, + [4] = { 21.8, 93.6, 5602, 300 }, + }, + }, + [179864] = { + ["coords"] = { + [1] = { 81.9, 29.2, 616, 300 }, + [2] = { 60.9, 38.8, 618, 900 }, + [3] = { 61.6, 60.4, 4012, 300 }, + }, + }, + [179865] = { + ["coords"] = { + [1] = { 51, 66.4, 5561, 300 }, + }, + ["fac"] = "AH", + }, + [179879] = { + ["coords"] = { + [1] = { 64.3, 71.5, 25, 7200 }, + [2] = { 32.5, 32.4, 46, 7200 }, + }, + ["fac"] = "AH", + }, + [179880] = { + ["coords"] = { + [1] = { 33.4, 44.4, 1583, 25 }, + }, + ["fac"] = "AH", + }, + [179882] = { + ["coords"] = { + [1] = { 70.6, 80.3, 1519, 0 }, + }, + }, + [179887] = { + ["coords"] = { + [1] = { 23.5, 28, 1, 300 }, + [2] = { 33.8, 48.2, 10, 300 }, + [3] = { 93.9, 15.7, 10, 25 }, + [4] = { 49.2, 60.2, 11, 300 }, + [5] = { 37.7, 72, 14, 300 }, + [6] = { 29.3, 70.6, 16, 300 }, + [7] = { 64.9, 34.7, 17, 300 }, + [8] = { 44.5, 98.5, 28, 300 }, + [9] = { 80.5, 61.3, 28, 300 }, + [10] = { 29.1, 45, 28, 300 }, + [11] = { 34.3, 21.1, 28, 300 }, + [12] = { 37.7, 66.1, 33, 300 }, + [13] = { 81.5, 51.3, 36, 300 }, + [14] = { 60.7, 76.5, 38, 300 }, + [15] = { 19.5, 65.6, 46, 300 }, + [16] = { 77.2, 80.1, 47, 7200 }, + [17] = { 85.6, 58.5, 85, 300 }, + [18] = { 90.5, 35.7, 85, 300 }, + [19] = { 68.1, 81.6, 130, 300 }, + [20] = { 22.2, 84.9, 139, 300 }, + [21] = { 29.6, 56.3, 141, 25 }, + [22] = { 42.8, 52.1, 267, 300 }, + [23] = { 14.9, 47.7, 267, 300 }, + [24] = { 94.4, 23.3, 331, 300 }, + [25] = { 30.8, 90.3, 405, 300 }, + [26] = { 25.1, 81.8, 440, 300 }, + [27] = { 58.4, 22.3, 440, 300 }, + [28] = { 38.5, 12.9, 490, 300 }, + [29] = { 36.6, 75.2, 1519, 300 }, + [30] = { 35.3, 70.8, 1519, 300 }, + [31] = { 27.9, 14.4, 1519, 300 }, + [32] = { 66.9, 43.6, 1537, 25 }, + [33] = { 59.5, 45, 1657, 25 }, + [34] = { 58.1, 72.2, 5179, 300 }, + [35] = { 45.9, 43.4, 5179, 300 }, + [36] = { 97, 14.5, 5179, 300 }, + [37] = { 72.7, 10.6, 5179, 300 }, + [38] = { 95.5, 92, 5581, 300 }, + [39] = { 31.5, 85.1, 5581, 300 }, + [40] = { 29.6, 83.4, 5602, 300 }, + [41] = { 6.5, 25.2, 5602, 300 }, + }, + }, + [179895] = { + ["coords"] = { + [1] = { 61.4, 23.9, 17, 300 }, + [2] = { 54.3, 1.1, 17, 300 }, + [3] = { 18, 66.8, 46, 300 }, + [4] = { 78.8, 80.5, 47, 7200 }, + [5] = { 68.3, 18.8, 148, 300 }, + [6] = { 79.4, 81.5, 331, 300 }, + [7] = { 43.5, 16, 357, 25 }, + [8] = { 24.8, 68.8, 405, 900 }, + [9] = { 24.6, 13, 406, 25 }, + [10] = { 10.8, 93.3, 2100, 900 }, + [11] = { 94.2, 93.1, 5581, 300 }, + }, + ["fac"] = "AH", + }, + [179896] = "_", + [179900] = "_", + [179904] = { + ["coords"] = { + [1] = { 60, 67.6, 3277, 20 }, + [2] = { 42.8, 40.5, 3277, 20 }, + [3] = { 46.1, 49.2, 5023, 300 }, + }, + }, + [179908] = { + ["coords"] = { + [1] = { 57.4, 42.5, 47, 2 }, + }, + }, + [179913] = { + ["coords"] = { + [1] = { 79.1, 79, 47, 2 }, + }, + ["fac"] = "H", + }, + [179914] = { + ["coords"] = { + [1] = { 62.1, 75.4, 47, 2 }, + }, + }, + [179915] = { + ["coords"] = { + [1] = { 58.6, 64.8, 47, 2 }, + }, + }, + [179922] = { + ["coords"] = { + [1] = { 87.6, 23.1, 45, 180 }, + [2] = { 85.2, 20.9, 45, 180 }, + [3] = { 85.7, 20.6, 45, 180 }, + [4] = { 81.5, 14.9, 45, 180 }, + [5] = { 63.5, 84, 47, 180 }, + [6] = { 64.2, 83.2, 47, 180 }, + [7] = { 65.8, 82.4, 47, 180 }, + [8] = { 63.4, 82.3, 47, 180 }, + [9] = { 64.5, 82.2, 47, 180 }, + [10] = { 61.3, 81.9, 47, 180 }, + [11] = { 61.8, 81.6, 47, 180 }, + [12] = { 66.6, 81.5, 47, 180 }, + [13] = { 63.3, 80.3, 47, 180 }, + [14] = { 65.6, 80.2, 47, 180 }, + [15] = { 67.2, 79.8, 47, 180 }, + [16] = { 63.3, 79.8, 47, 180 }, + [17] = { 63.9, 78.6, 47, 180 }, + [18] = { 62.9, 78.2, 47, 180 }, + [19] = { 67.7, 77.4, 47, 180 }, + [20] = { 65, 77.1, 47, 180 }, + [21] = { 57.8, 76.3, 47, 180 }, + [22] = { 67.9, 75.8, 47, 180 }, + [23] = { 67.1, 71.8, 47, 180 }, + [24] = { 69, 69.5, 47, 180 }, + [25] = { 65.9, 68.7, 47, 180 }, + [26] = { 62.6, 68.5, 47, 180 }, + [27] = { 60.8, 68.4, 47, 180 }, + [28] = { 67.6, 67, 47, 180 }, + [29] = { 60.6, 66.7, 47, 180 }, + [30] = { 62, 66, 47, 180 }, + [31] = { 60.8, 64.6, 47, 180 }, + [32] = { 59.8, 64.3, 47, 180 }, + }, + }, + [179924] = { + ["coords"] = { + [1] = { 3.1, 47.1, 3, 900 }, + [2] = { 48.8, 47.9, 8, 300 }, + [3] = { 42.7, 93.1, 17, 300 }, + [4] = { 61.2, 24, 17, 300 }, + [5] = { 48, 8.4, 17, 300 }, + [6] = { 89.3, 22.5, 46, 300 }, + [7] = { 82.1, 38.4, 51, 900 }, + [8] = { 73.2, 59.9, 331, 300 }, + [9] = { 50.7, 60.6, 357, 300 }, + [10] = { 28.8, 24.2, 400, 300 }, + [11] = { 31.3, 36.9, 440, 300 }, + [12] = { 78.8, 65.1, 490, 300 }, + [13] = { 50.2, 30.2, 618, 300 }, + [14] = { 36.4, 75.2, 1519, 300 }, + [15] = { 35.2, 71, 1519, 300 }, + }, + }, + [179945] = { + ["coords"] = { + [1] = { 49.8, 47.9, 1, 25 }, + [2] = { 64.2, 28.2, 15, 300 }, + [3] = { 49.6, 89.4, 45, 25 }, + [4] = { 20.9, 47.7, 45, 25 }, + [5] = { 15.1, 34.5, 5179, 300 }, + }, + }, + [179964] = { + ["coords"] = { + [1] = { 42.2, 68.5, 12, 180 }, + [2] = { 40.1, 68.1, 12, 180 }, + [3] = { 37, 34.3, 215, 25 }, + }, + }, + [179965] = { + ["coords"] = { + [1] = { 44.3, 71.5, 12, 25 }, + [2] = { 43.1, 70.6, 12, 180 }, + [3] = { 42, 70.5, 12, 180 }, + [4] = { 41.4, 70.4, 12, 180 }, + [5] = { 44.4, 70.3, 12, 25 }, + [6] = { 40.5, 70.2, 12, 180 }, + [7] = { 41.2, 69.7, 12, 180 }, + [8] = { 42.2, 69.2, 12, 180 }, + [9] = { 43.2, 69.2, 12, 180 }, + [10] = { 41.3, 69.1, 12, 180 }, + [11] = { 40.4, 68.8, 12, 180 }, + [12] = { 42.1, 68.7, 12, 180 }, + [13] = { 41.6, 68.7, 12, 180 }, + [14] = { 42.4, 68.6, 12, 180 }, + [15] = { 42.3, 68.6, 12, 180 }, + [16] = { 42.1, 68.5, 12, 180 }, + [17] = { 40, 68.2, 12, 180 }, + [18] = { 42.1, 68.1, 12, 180 }, + [19] = { 41.7, 68, 12, 180 }, + [20] = { 40.1, 68, 12, 180 }, + [21] = { 37.8, 40, 215, 25 }, + [22] = { 37.5, 39.8, 215, 25 }, + [23] = { 38.3, 39.6, 215, 25 }, + [24] = { 37.4, 39.5, 215, 25 }, + [25] = { 38.2, 39.3, 215, 25 }, + [26] = { 37.9, 38.7, 215, 25 }, + [27] = { 36.8, 38.5, 215, 25 }, + [28] = { 37, 38.3, 215, 25 }, + [29] = { 37.3, 38.3, 215, 25 }, + [30] = { 37.9, 38.3, 215, 25 }, + [31] = { 36.5, 38.2, 215, 25 }, + [32] = { 36.4, 37.7, 215, 25 }, + [33] = { 37.3, 37.4, 215, 25 }, + [34] = { 37, 36.9, 215, 25 }, + [35] = { 35.4, 35.5, 215, 25 }, + [36] = { 36.6, 35, 215, 25 }, + [37] = { 35.6, 34, 215, 25 }, + [38] = { 89.3, 63, 405, 25 }, + }, + }, + [179967] = { + ["coords"] = { + [1] = { 42.1, 70.5, 12, 180 }, + [2] = { 42, 70, 12, 180 }, + [3] = { 42.2, 70, 12, 180 }, + [4] = { 42.3, 69, 12, 180 }, + [5] = { 41.4, 68.7, 12, 180 }, + [6] = { 78.1, 75.8, 400, 25 }, + }, + }, + [179968] = { + ["coords"] = { + [1] = { 40.5, 70, 12, 180 }, + [2] = { 42.1, 69.9, 12, 180 }, + [3] = { 40.5, 69.4, 12, 180 }, + [4] = { 41.1, 69, 12, 180 }, + [5] = { 41, 68.9, 12, 180 }, + [6] = { 41.3, 68.9, 12, 180 }, + [7] = { 40.5, 68.9, 12, 180 }, + [8] = { 40.6, 68.9, 12, 180 }, + [9] = { 41.3, 68.8, 12, 180 }, + [10] = { 59.8, 29.5, 12, 25 }, + [11] = { 41.5, 43.2, 16, 300 }, + [12] = { 41.5, 43.1, 16, 300 }, + [13] = { 80.3, 62.8, 28, 25 }, + [14] = { 21.9, 86.5, 139, 25 }, + [15] = { 79.5, 82.8, 400, 0 }, + [16] = { 79.4, 82.8, 400, 0 }, + [17] = { 79.4, 82.7, 400, 0 }, + [18] = { 79.4, 82.6, 400, 0 }, + [19] = { 37.4, 69.9, 1519, 300 }, + [20] = { 35.7, 92.4, 3478, 25 }, + }, + }, + [179969] = { + ["coords"] = { + [1] = { 70.8, 22.1, 1, 25 }, + [2] = { 93.9, 14.9, 10, 25 }, + [3] = { 93.3, 14.1, 10, 25 }, + [4] = { 42.1, 70.1, 12, 180 }, + [5] = { 42.1, 69.7, 12, 180 }, + [6] = { 40.5, 69.4, 12, 180 }, + [7] = { 42.4, 68.9, 12, 180 }, + [8] = { 42.3, 68.9, 12, 180 }, + [9] = { 41.8, 64.6, 12, 25 }, + [10] = { 41.7, 64.5, 12, 25 }, + [11] = { 41.6, 64.5, 12, 25 }, + [12] = { 41.6, 64.4, 12, 25 }, + [13] = { 41, 63.1, 12, 25 }, + [14] = { 35.2, 49.9, 12, 25 }, + [15] = { 60.1, 29.7, 12, 25 }, + [16] = { 59.9, 28.8, 12, 25 }, + [17] = { 80.3, 62.9, 28, 25 }, + [18] = { 80.3, 62.8, 28, 25 }, + [19] = { 22, 86.6, 139, 25 }, + [20] = { 64.5, 75.6, 1519, 25 }, + [21] = { 62.6, 75.3, 1519, 25 }, + [22] = { 36.4, 70.5, 1519, 300 }, + [23] = { 35.3, 93, 3478, 25 }, + }, + }, + [179970] = { + ["coords"] = { + [1] = { 42, 70.4, 12, 180 }, + [2] = { 42, 70, 12, 180 }, + [3] = { 42.1, 69.9, 12, 180 }, + [4] = { 40.5, 69.4, 12, 180 }, + [5] = { 42.3, 69, 12, 180 }, + [6] = { 41.6, 64.4, 12, 25 }, + [7] = { 60.1, 29.7, 12, 25 }, + [8] = { 59.9, 28.8, 12, 25 }, + [9] = { 41.6, 43.1, 16, 300 }, + [10] = { 35.3, 93, 3478, 25 }, + }, + }, + [179972] = { + ["coords"] = { + [1] = { 42.1, 70.5, 12, 180 }, + [2] = { 42.1, 70.1, 12, 180 }, + [3] = { 42.1, 70, 12, 180 }, + [4] = { 42.1, 69.7, 12, 180 }, + [5] = { 42.4, 69, 12, 180 }, + [6] = { 42.4, 68.9, 12, 180 }, + [7] = { 41.7, 64.3, 12, 25 }, + [8] = { 41, 63.6, 12, 25 }, + [9] = { 35.1, 49.5, 12, 25 }, + [10] = { 59.9, 28.9, 12, 25 }, + [11] = { 41.6, 43.2, 16, 300 }, + [12] = { 9, 64.3, 28, 25 }, + [13] = { 80.2, 62.9, 28, 25 }, + [14] = { 80.2, 62.8, 28, 25 }, + [15] = { 21.9, 86.6, 139, 25 }, + [16] = { 21.9, 86.5, 139, 25 }, + [17] = { 37.6, 39.8, 215, 25 }, + [18] = { 37.9, 39.7, 215, 25 }, + [19] = { 38.1, 39.6, 215, 25 }, + [20] = { 37.7, 39.4, 215, 25 }, + [21] = { 36.6, 38, 215, 25 }, + [22] = { 36.6, 37.9, 215, 25 }, + [23] = { 36.5, 37.9, 215, 25 }, + [24] = { 36.7, 37.9, 215, 25 }, + [25] = { 37.3, 37.8, 215, 25 }, + [26] = { 36.8, 37.7, 215, 25 }, + [27] = { 36.9, 37.7, 215, 25 }, + [28] = { 37.3, 37.7, 215, 25 }, + [29] = { 37.3, 37.6, 215, 25 }, + [30] = { 36.7, 37.6, 215, 25 }, + [31] = { 37.2, 37.6, 215, 25 }, + [32] = { 37.3, 37.5, 215, 25 }, + [33] = { 36.9, 37.5, 215, 25 }, + [34] = { 37, 37.5, 215, 25 }, + [35] = { 37.2, 37.5, 215, 25 }, + [36] = { 36.7, 37.4, 215, 25 }, + [37] = { 37, 37.4, 215, 25 }, + [38] = { 37.3, 37.4, 215, 25 }, + [39] = { 36.9, 37.4, 215, 25 }, + [40] = { 36.8, 37.4, 215, 25 }, + [41] = { 36.8, 37.3, 215, 25 }, + [42] = { 36.5, 37, 215, 25 }, + [43] = { 36.7, 36.9, 215, 25 }, + [44] = { 36.5, 36, 215, 25 }, + [45] = { 35.9, 35.5, 215, 25 }, + [46] = { 36, 35.1, 215, 25 }, + [47] = { 36, 35, 215, 25 }, + [48] = { 35.9, 35, 215, 25 }, + [49] = { 36, 34.9, 215, 25 }, + [50] = { 35.9, 34.9, 215, 25 }, + [51] = { 78.1, 77.1, 400, 25 }, + [52] = { 78.4, 76, 400, 25 }, + [53] = { 83.5, 55.1, 400, 25 }, + [54] = { 83.3, 54.6, 400, 25 }, + [55] = { 76.6, 54.9, 1519, 25 }, + [56] = { 69.3, 26, 1637, 25 }, + [57] = { 37.3, 93.1, 3478, 25 }, + [58] = { 35.4, 91.6, 3478, 25 }, + }, + }, + [179973] = { + ["coords"] = { + [1] = { 42.1, 70.4, 12, 180 }, + [2] = { 42.1, 69.9, 12, 180 }, + [3] = { 40.5, 69.4, 12, 180 }, + [4] = { 42.7, 62.3, 12, 25 }, + [5] = { 59.2, 30.5, 12, 25 }, + [6] = { 59.9, 29.1, 12, 25 }, + [7] = { 41.6, 42.1, 16, 300 }, + [8] = { 51.9, 30, 17, 25 }, + [9] = { 52.1, 29.9, 17, 25 }, + [10] = { 28.7, 75.4, 33, 300 }, + [11] = { 22.5, 59.1, 45, 25 }, + [12] = { 22, 59, 45, 25 }, + [13] = { 68, 17.6, 148, 300 }, + [14] = { 68.1, 17.6, 148, 300 }, + [15] = { 78.1, 75.8, 400, 25 }, + [16] = { 78.3, 75.7, 400, 25 }, + [17] = { 79.5, 74.6, 400, 25 }, + [18] = { 83.4, 54.9, 400, 25 }, + [19] = { 36.3, 74.1, 1519, 300 }, + [20] = { 36.4, 72.1, 1519, 300 }, + [21] = { 36.1, 70.6, 1519, 300 }, + [22] = { 75.9, 54.7, 1519, 25 }, + [23] = { 76.7, 54.2, 1519, 25 }, + [24] = { 37.6, 43, 1519, 300 }, + [25] = { 37.7, 42.9, 1519, 300 }, + [26] = { 37.6, 42.8, 1519, 300 }, + [27] = { 51.4, 70.8, 1637, 25 }, + [28] = { 37.3, 93.1, 3478, 25 }, + [29] = { 35.6, 91.6, 3478, 25 }, + }, + }, + [179975] = { + ["coords"] = { + [1] = { 92.7, 13.5, 10, 25 }, + [2] = { 40.6, 70, 12, 180 }, + [3] = { 41, 69, 12, 180 }, + [4] = { 40.5, 68.9, 12, 180 }, + [5] = { 37.7, 40, 215, 25 }, + [6] = { 38.1, 39.3, 215, 25 }, + }, + }, + [179977] = { + ["coords"] = { + [1] = { 42.1, 69.7, 12, 180 }, + [2] = { 42.3, 68.9, 12, 180 }, + [3] = { 41.4, 68.7, 12, 180 }, + [4] = { 42.4, 62.8, 12, 25 }, + [5] = { 59.9, 28.8, 12, 25 }, + [6] = { 41.5, 43.1, 16, 300 }, + [7] = { 80.3, 62.8, 28, 25 }, + [8] = { 81.2, 62.6, 28, 25 }, + [9] = { 78.9, 62.3, 28, 25 }, + [10] = { 71.7, 50.3, 28, 25 }, + [11] = { 22.5, 59.2, 45, 25 }, + [12] = { 22.6, 58.9, 45, 25 }, + [13] = { 22, 86.6, 139, 25 }, + [14] = { 22.9, 86.3, 139, 25 }, + [15] = { 20.5, 85.9, 139, 25 }, + [16] = { 12.4, 72.7, 139, 25 }, + [17] = { 62.6, 75.3, 1519, 25 }, + [18] = { 62.7, 73.7, 1519, 25 }, + [19] = { 36.4, 70.5, 1519, 300 }, + }, + }, + [179985] = { + ["coords"] = { + [1] = { 48.5, 82, 1977, 600 }, + [2] = { 49.2, 81.9, 1977, 600 }, + [3] = { 47.1, 81.7, 1977, 600 }, + [4] = { 50.1, 81.7, 1977, 600 }, + [5] = { 49.6, 81.5, 1977, 600 }, + [6] = { 47.6, 81.4, 1977, 600 }, + [7] = { 46.8, 81.3, 1977, 600 }, + [8] = { 48.1, 81.3, 1977, 600 }, + [9] = { 46.3, 81.1, 1977, 600 }, + [10] = { 49.1, 81.1, 1977, 600 }, + [11] = { 50, 81, 1977, 600 }, + [12] = { 47.5, 81, 1977, 600 }, + [13] = { 46.8, 80.8, 1977, 600 }, + [14] = { 50.7, 80.8, 1977, 600 }, + [15] = { 48.3, 80.7, 1977, 600 }, + [16] = { 47.1, 80.6, 1977, 600 }, + [17] = { 50.2, 80.4, 1977, 600 }, + [18] = { 46.5, 80.2, 1977, 600 }, + [19] = { 50, 80, 1977, 600 }, + [20] = { 48.2, 79.8, 1977, 600 }, + [21] = { 50.9, 79.6, 1977, 600 }, + [22] = { 50.5, 79.5, 1977, 600 }, + [23] = { 46.4, 79.5, 1977, 600 }, + [24] = { 49.7, 79.4, 1977, 600 }, + [25] = { 48.4, 79.4, 1977, 600 }, + [26] = { 45, 79.4, 1977, 600 }, + [27] = { 45.5, 79.2, 1977, 600 }, + [28] = { 47, 79.2, 1977, 600 }, + [29] = { 46, 79.1, 1977, 600 }, + [30] = { 45.2, 79, 1977, 600 }, + [31] = { 47.2, 79, 1977, 600 }, + [32] = { 46.4, 78.9, 1977, 600 }, + [33] = { 50.3, 78.9, 1977, 600 }, + [34] = { 45.1, 78.8, 1977, 600 }, + [35] = { 48.7, 78.8, 1977, 600 }, + [36] = { 47.4, 78.7, 1977, 600 }, + [37] = { 45.7, 78.7, 1977, 600 }, + [38] = { 46.7, 78.6, 1977, 600 }, + [39] = { 46.1, 78.4, 1977, 600 }, + [40] = { 46.8, 78.4, 1977, 600 }, + [41] = { 45.5, 78.3, 1977, 600 }, + [42] = { 45, 78.3, 1977, 600 }, + [43] = { 50.7, 78.3, 1977, 600 }, + [44] = { 48.3, 78.2, 1977, 600 }, + [45] = { 47.9, 78.2, 1977, 600 }, + [46] = { 45.9, 78.2, 1977, 600 }, + [47] = { 47.1, 78.2, 1977, 600 }, + [48] = { 50, 78, 1977, 600 }, + [49] = { 48.8, 77.9, 1977, 600 }, + [50] = { 44.9, 77.8, 1977, 600 }, + [51] = { 51.1, 77.6, 1977, 600 }, + [52] = { 45.6, 77.5, 1977, 600 }, + [53] = { 46, 77.4, 1977, 600 }, + [54] = { 45, 77.4, 1977, 600 }, + [55] = { 46.3, 77.3, 1977, 600 }, + [56] = { 45.5, 77.2, 1977, 600 }, + [57] = { 45.7, 77.2, 1977, 600 }, + [58] = { 45.9, 77.1, 1977, 600 }, + [59] = { 49.6, 77.1, 1977, 600 }, + [60] = { 50.7, 77.1, 1977, 600 }, + [61] = { 50.1, 77, 1977, 600 }, + [62] = { 44.8, 76.9, 1977, 600 }, + [63] = { 47, 76.9, 1977, 600 }, + [64] = { 46.6, 76.9, 1977, 600 }, + [65] = { 45.7, 76.8, 1977, 600 }, + [66] = { 51.2, 76.8, 1977, 600 }, + [67] = { 45.3, 76.7, 1977, 600 }, + [68] = { 47.8, 76.7, 1977, 600 }, + [69] = { 45.1, 76.6, 1977, 600 }, + [70] = { 46, 76.5, 1977, 600 }, + [71] = { 45.4, 76.5, 1977, 600 }, + [72] = { 47.4, 76.5, 1977, 600 }, + [73] = { 48.5, 76.4, 1977, 600 }, + [74] = { 46.6, 76.4, 1977, 600 }, + [75] = { 46.3, 76.3, 1977, 600 }, + [76] = { 50.1, 76.2, 1977, 600 }, + [77] = { 48, 76.1, 1977, 600 }, + [78] = { 50.8, 76, 1977, 600 }, + [79] = { 47.5, 76, 1977, 600 }, + [80] = { 47, 75.9, 1977, 600 }, + [81] = { 48.7, 75.5, 1977, 600 }, + [82] = { 51.2, 75.5, 1977, 600 }, + [83] = { 50.3, 75.5, 1977, 600 }, + [84] = { 50.8, 75.1, 1977, 600 }, + [85] = { 49, 75, 1977, 600 }, + [86] = { 47.7, 75, 1977, 600 }, + [87] = { 47.2, 75, 1977, 600 }, + [88] = { 48.3, 74.9, 1977, 600 }, + [89] = { 50.5, 74.7, 1977, 600 }, + [90] = { 47.8, 74.4, 1977, 600 }, + [91] = { 48.8, 74.3, 1977, 600 }, + [92] = { 51.1, 74.1, 1977, 600 }, + [93] = { 48.1, 74.1, 1977, 600 }, + [94] = { 50.5, 74, 1977, 600 }, + [95] = { 48.5, 73.4, 1977, 600 }, + [96] = { 49.1, 73.4, 1977, 600 }, + [97] = { 50.9, 73.3, 1977, 600 }, + [98] = { 49.5, 73.1, 1977, 600 }, + [99] = { 49.6, 72.4, 1977, 600 }, + [100] = { 50.9, 72.3, 1977, 600 }, + }, + }, + [180005] = { + ["coords"] = { + [1] = { 43.2, 70.1, 12, 180 }, + [2] = { 41.5, 69.9, 12, 180 }, + [3] = { 40.6, 69, 12, 180 }, + [4] = { 37, 38.3, 215, 25 }, + [5] = { 36.9, 36.8, 215, 25 }, + [6] = { 35.5, 35.1, 215, 25 }, + [7] = { 36.2, 34.5, 215, 25 }, + }, + }, + [180006] = { + ["coords"] = { + [1] = { 43.4, 70.7, 12, 180 }, + [2] = { 43.4, 70.6, 12, 180 }, + [3] = { 42.7, 70, 12, 180 }, + [4] = { 42.7, 69.8, 12, 180 }, + [5] = { 36.4, 37.1, 215, 25 }, + [6] = { 36.4, 36.9, 215, 25 }, + }, + }, + [180024] = { + ["coords"] = { + [1] = { 7.8, 16, 5138, 0 }, + }, + }, + [180026] = { + ["coords"] = { + [1] = { 42.2, 68.5, 12, 180 }, + [2] = { 40.1, 68.1, 12, 180 }, + [3] = { 37, 34.3, 215, 25 }, + }, + }, + [180029] = { + ["coords"] = { + [1] = { 41.7, 68.1, 12, 180 }, + [2] = { 37.4, 38, 215, 25 }, + }, + }, + [180030] = { + ["coords"] = { + [1] = { 42.3, 68.9, 12, 180 }, + [2] = { 37, 38.5, 215, 25 }, + }, + }, + [180031] = { + ["coords"] = { + [1] = { 42.3, 70.2, 12, 180 }, + [2] = { 36.7, 38.4, 215, 25 }, + }, + }, + [180032] = { + ["coords"] = { + [1] = { 41.2, 70, 12, 180 }, + [2] = { 36.5, 38, 215, 25 }, + }, + }, + [180034] = { + ["coords"] = { + [1] = { 41.4, 68.7, 12, 180 }, + [2] = { 37.3, 37.6, 215, 25 }, + }, + }, + [180035] = { + ["coords"] = { + [1] = { 22.1, 25.5, 1, 25 }, + [2] = { 44, 72.1, 12, 25 }, + [3] = { 44.4, 70.8, 12, 25 }, + [4] = { 42.1, 70.7, 12, 180 }, + [5] = { 40.8, 70.1, 12, 180 }, + [6] = { 40.3, 70, 12, 180 }, + [7] = { 44.1, 69.9, 12, 180 }, + [8] = { 42.6, 69.7, 12, 180 }, + [9] = { 42.4, 69.5, 12, 180 }, + [10] = { 43.4, 69.4, 12, 180 }, + [11] = { 43, 69.2, 12, 180 }, + [12] = { 40.2, 69.1, 12, 180 }, + [13] = { 42.4, 68.9, 12, 180 }, + [14] = { 41.1, 68.9, 12, 180 }, + [15] = { 40.6, 68.7, 12, 180 }, + [16] = { 42.2, 68.4, 12, 180 }, + [17] = { 41.5, 68.3, 12, 180 }, + [18] = { 37.8, 40, 215, 25 }, + [19] = { 37.6, 40, 215, 25 }, + [20] = { 38.1, 39.8, 215, 25 }, + [21] = { 38.3, 39.6, 215, 25 }, + [22] = { 37.4, 39.3, 215, 25 }, + [23] = { 38.2, 39.2, 215, 25 }, + [24] = { 37.9, 39.2, 215, 25 }, + [25] = { 36.7, 38.7, 215, 25 }, + [26] = { 36.3, 37.7, 215, 25 }, + [27] = { 37.5, 37.7, 215, 25 }, + [28] = { 37.3, 37.2, 215, 25 }, + [29] = { 36.3, 37.2, 215, 25 }, + [30] = { 37.1, 36.8, 215, 25 }, + [31] = { 36.4, 36.7, 215, 25 }, + [32] = { 36.8, 36.5, 215, 25 }, + [33] = { 36.3, 36.2, 215, 25 }, + [34] = { 36.7, 36, 215, 25 }, + [35] = { 35.9, 35.9, 215, 25 }, + [36] = { 35.6, 35.6, 215, 25 }, + [37] = { 36.6, 35.4, 215, 25 }, + [38] = { 35.4, 35.2, 215, 25 }, + [39] = { 36.4, 34.6, 215, 25 }, + [40] = { 35.4, 34.5, 215, 25 }, + [41] = { 36.2, 34.2, 215, 25 }, + [42] = { 35.8, 34.1, 215, 25 }, + }, + }, + [180036] = { + ["coords"] = { + [1] = { 42.7, 71.9, 12, 25 }, + [2] = { 43.6, 71.8, 12, 25 }, + [3] = { 43.8, 69.9, 12, 180 }, + [4] = { 43.1, 69.7, 12, 180 }, + [5] = { 36, 35.8, 215, 25 }, + [6] = { 36.5, 35.5, 215, 25 }, + [7] = { 35.5, 35.1, 215, 25 }, + [8] = { 36.2, 34.5, 215, 25 }, + }, + }, + [180037] = { + ["coords"] = { + [1] = { 93, 13.8, 10, 25 }, + [2] = { 41.1, 69.7, 12, 180 }, + [3] = { 40.3, 69.2, 12, 180 }, + [4] = { 41.5, 42.1, 16, 300 }, + [5] = { 37.5, 39.8, 215, 25 }, + [6] = { 38.2, 39.4, 215, 25 }, + }, + }, + [180038] = { + ["coords"] = { + [1] = { 40.7, 70, 12, 180 }, + [2] = { 40.3, 69.8, 12, 180 }, + [3] = { 40.8, 68.8, 12, 180 }, + [4] = { 37.6, 39.9, 215, 25 }, + [5] = { 37.9, 39.8, 215, 120 }, + [6] = { 37.6, 39.8, 215, 120 }, + [7] = { 37.9, 39.8, 215, 25 }, + [8] = { 38.2, 39.6, 215, 25 }, + [9] = { 38.2, 39.6, 215, 120 }, + [10] = { 37.4, 39.5, 215, 25 }, + [11] = { 38.2, 39.4, 215, 25 }, + [12] = { 38.1, 39.2, 215, 25 }, + [13] = { 35.7, 92.3, 3478, 25 }, + }, + }, + [180039] = { + ["coords"] = { + [1] = { 40.1, 69.6, 12, 180 }, + [2] = { 37.4, 39.7, 215, 25 }, + }, + }, + [180040] = { + ["coords"] = { + [1] = { 40.8, 69.9, 12, 180 }, + [2] = { 40.4, 69.9, 12, 180 }, + [3] = { 40.4, 69.1, 12, 180 }, + [4] = { 38, 39.7, 215, 25 }, + [5] = { 38, 39.3, 215, 25 }, + [6] = { 37.7, 39.2, 215, 25 }, + [7] = { 83.6, 56.7, 400, 25 }, + [8] = { 34.9, 92.1, 3478, 25 }, + }, + }, + [180041] = { + ["coords"] = { + [1] = { 40.9, 69.8, 12, 180 }, + [2] = { 37.9, 39.4, 215, 25 }, + [3] = { 83.8, 56.7, 400, 25 }, + [4] = { 83.4, 56.5, 400, 25 }, + }, + }, + [180042] = { + ["coords"] = { + [1] = { 41.7, 70.7, 12, 180 }, + [2] = { 37.1, 37.2, 215, 25 }, + }, + }, + [180043] = { + ["coords"] = { + [1] = { 93.9, 14.9, 10, 25 }, + [2] = { 94.2, 14.5, 10, 25 }, + [3] = { 94.4, 14.2, 10, 25 }, + [4] = { 93.2, 14.1, 10, 25 }, + [5] = { 92.7, 13.7, 10, 25 }, + [6] = { 43.1, 71, 12, 180 }, + [7] = { 42.5, 71, 12, 180 }, + [8] = { 43.4, 70.6, 12, 180 }, + [9] = { 41.9, 70.6, 12, 180 }, + [10] = { 42, 70.3, 12, 180 }, + [11] = { 41.4, 70.2, 12, 180 }, + [12] = { 42.7, 69.9, 12, 180 }, + [13] = { 42.2, 69.9, 12, 180 }, + [14] = { 41.2, 69.7, 12, 180 }, + [15] = { 40.5, 69.5, 12, 180 }, + [16] = { 40.2, 69.4, 12, 180 }, + [17] = { 41.9, 69.2, 12, 180 }, + [18] = { 42.1, 69.1, 12, 180 }, + [19] = { 41.4, 69, 12, 180 }, + [20] = { 42.1, 68.9, 12, 180 }, + [21] = { 40.8, 68.8, 12, 180 }, + [22] = { 41.6, 68.7, 12, 180 }, + [23] = { 52.1, 41.1, 17, 25 }, + [24] = { 38, 39.7, 215, 25 }, + [25] = { 37.4, 39.6, 215, 25 }, + [26] = { 38, 39.3, 215, 25 }, + [27] = { 37.4, 39, 215, 25 }, + [28] = { 36.8, 38.4, 215, 25 }, + [29] = { 37, 38.3, 215, 25 }, + [30] = { 36.6, 38.1, 215, 25 }, + [31] = { 37.3, 37.8, 215, 25 }, + [32] = { 36.5, 37.8, 215, 25 }, + [33] = { 37.2, 37.5, 215, 25 }, + [34] = { 37, 37, 215, 25 }, + [35] = { 36.4, 37, 215, 25 }, + }, + }, + [180044] = { + ["coords"] = { + [1] = { 41.8, 69.5, 12, 180 }, + [2] = { 36.8, 37.5, 215, 25 }, + }, + }, + [180045] = { + ["coords"] = { + [1] = { 43.4, 70.9, 12, 180 }, + [2] = { 43.2, 70.9, 12, 180 }, + [3] = { 43.2, 70.6, 12, 180 }, + [4] = { 43.5, 70.4, 12, 180 }, + [5] = { 41, 70, 12, 180 }, + }, + }, + [180046] = { + ["coords"] = { + [1] = { 43, 71.1, 12, 180 }, + [2] = { 43.1, 70.9, 12, 180 }, + [3] = { 43.4, 70.7, 12, 180 }, + [4] = { 43.3, 70.6, 12, 180 }, + [5] = { 43.4, 70.5, 12, 180 }, + [6] = { 41, 69.9, 12, 180 }, + }, + }, + [180047] = { + ["coords"] = { + [1] = { 43.1, 70.8, 12, 180 }, + [2] = { 43.4, 70.8, 12, 180 }, + [3] = { 43.3, 70.6, 12, 180 }, + [4] = { 43.4, 70.5, 12, 180 }, + [5] = { 41, 69.8, 12, 180 }, + [6] = { 36, 35.1, 215, 120 }, + [7] = { 35.9, 35.1, 215, 120 }, + [8] = { 36, 35, 215, 120 }, + }, + }, + [180048] = { + ["coords"] = { + [1] = { 94.1, 13.7, 10, 25 }, + [2] = { 35.9, 62.1, 11, 120 }, + [3] = { 36, 62.1, 11, 120 }, + [4] = { 35.6, 61.5, 11, 120 }, + [5] = { 43.4, 70.8, 12, 180 }, + [6] = { 43.3, 70.6, 12, 180 }, + [7] = { 41, 69.8, 12, 180 }, + [8] = { 43.8, 65.7, 12, 25 }, + [9] = { 59.8, 30.3, 12, 25 }, + [10] = { 41.7, 42.2, 16, 300 }, + [11] = { 51.7, 41.3, 17, 25 }, + [12] = { 51.7, 41.2, 17, 25 }, + [13] = { 51.8, 41.2, 17, 25 }, + [14] = { 51.7, 41.1, 17, 25 }, + [15] = { 52, 29.8, 17, 25 }, + [16] = { 52, 29.7, 17, 25 }, + [17] = { 51.9, 29.7, 17, 25 }, + [18] = { 22, 58.8, 45, 25 }, + [19] = { 67.9, 18.2, 148, 300 }, + [20] = { 68.1, 18.1, 148, 300 }, + [21] = { 68.2, 18.1, 148, 300 }, + [22] = { 68.2, 18, 148, 300 }, + [23] = { 68.3, 18, 148, 300 }, + [24] = { 68.4, 17.9, 148, 300 }, + [25] = { 68.5, 17.9, 148, 300 }, + [26] = { 36.9, 74.6, 1519, 300 }, + [27] = { 36.9, 74.4, 1519, 324 }, + [28] = { 37, 74.4, 1519, 350 }, + [29] = { 37.3, 74.4, 1519, 300 }, + [30] = { 37.1, 74.4, 1519, 305 }, + [31] = { 37.3, 74.3, 1519, 300 }, + [32] = { 37, 74, 1519, 300 }, + [33] = { 37.1, 73.9, 1519, 300 }, + [34] = { 37.6, 73.7, 1519, 300 }, + [35] = { 36.6, 73.4, 1519, 300 }, + [36] = { 36.6, 73.3, 1519, 300 }, + [37] = { 37.1, 73.2, 1519, 300 }, + [38] = { 37.1, 73.1, 1519, 300 }, + [39] = { 36.2, 70.1, 1519, 300 }, + [40] = { 36.2, 69.9, 1519, 300 }, + [41] = { 62.6, 69.5, 1519, 25 }, + [42] = { 62.7, 69.5, 1519, 25 }, + [43] = { 76.9, 54, 1519, 25 }, + [44] = { 77.1, 53, 1519, 25 }, + [45] = { 51.3, 70.7, 1637, 25 }, + [46] = { 62.6, 44.1, 1637, 25 }, + [47] = { 35, 91.5, 3478, 25 }, + }, + }, + [180049] = { + ["coords"] = { + [1] = { 94, 13.9, 10, 25 }, + [2] = { 93.9, 13.8, 10, 25 }, + [3] = { 36, 62.1, 11, 120 }, + [4] = { 43.1, 70.8, 12, 180 }, + [5] = { 43.3, 70.6, 12, 180 }, + [6] = { 43.4, 70.5, 12, 180 }, + [7] = { 59.8, 30.3, 12, 25 }, + [8] = { 41.7, 42.2, 16, 300 }, + [9] = { 52, 29.9, 17, 25 }, + [10] = { 52.1, 29.9, 17, 25 }, + [11] = { 52, 29.8, 17, 25 }, + [12] = { 51.9, 29.7, 17, 25 }, + [13] = { 80.2, 63.1, 28, 25 }, + [14] = { 22, 59.5, 45, 25 }, + [15] = { 22.4, 59, 45, 25 }, + [16] = { 22, 58.8, 45, 25 }, + [17] = { 21.8, 86.9, 139, 25 }, + [18] = { 43.6, 16.3, 357, 25 }, + [19] = { 78.4, 76, 400, 25 }, + [20] = { 82.8, 54, 400, 25 }, + [21] = { 82.7, 54, 400, 25 }, + [22] = { 82.6, 53.9, 400, 25 }, + [23] = { 82.7, 53.8, 400, 25 }, + [24] = { 37, 74.3, 1519, 327 }, + [25] = { 37.2, 74.2, 1519, 300 }, + [26] = { 70.8, 72.7, 1519, 25 }, + [27] = { 36.2, 70, 1519, 300 }, + [28] = { 75.9, 54.5, 1519, 25 }, + [29] = { 75.8, 54.3, 1519, 25 }, + [30] = { 76.8, 54, 1519, 25 }, + [31] = { 77, 52.8, 1519, 25 }, + [32] = { 51.2, 70.8, 1637, 25 }, + [33] = { 62.6, 44.1, 1637, 25 }, + [34] = { 62.6, 44, 1637, 25 }, + [35] = { 68.3, 26.3, 1637, 25 }, + [36] = { 68.3, 26.2, 1637, 25 }, + }, + }, + [180053] = { + ["coords"] = { + [1] = { 43.4, 70.6, 12, 180 }, + }, + }, + [180055] = { + ["coords"] = { + [1] = { 53.3, 40.8, 718, 0 }, + }, + }, + [180056] = { + ["coords"] = { + [1] = { 35, 61.6, 215, 2 }, + }, + }, + [180164] = { + ["coords"] = { + [1] = { 57.7, 54.8, 876, 300 }, + [2] = { 58.1, 79.3, 1977, 604800 }, + [3] = { 53.8, 26.3, 1977, 604800 }, + }, + }, + [180165] = { + ["coords"] = { + [1] = { 60.7, 78.4, 1977, 604800 }, + [2] = { 57.2, 52.6, 1977, 604800 }, + [3] = { 36.3, 45.9, 1977, 604800 }, + }, + }, + [180166] = { + ["coords"] = { + [1] = { 59.3, 73.5, 1977, 604800 }, + [2] = { 38.1, 70.8, 1977, 604800 }, + [3] = { 62.9, 36, 1977, 604800 }, + [4] = { 28.6, 26.2, 1977, 604800 }, + }, + }, + [180167] = { + ["coords"] = { + [1] = { 50.5, 75.9, 1977, 604800 }, + [2] = { 37.9, 70.6, 1977, 604800 }, + [3] = { 57.2, 53.9, 1977, 604800 }, + [4] = { 33.7, 43.1, 1977, 604800 }, + [5] = { 45.3, 25.5, 1977, 604800 }, + }, + }, + [180168] = { + ["coords"] = { + [1] = { 60.8, 67.9, 1977, 604800 }, + [2] = { 40.7, 53.8, 1977, 604800 }, + [3] = { 60.3, 42.1, 1977, 604800 }, + [4] = { 31.2, 27.1, 1977, 604800 }, + [5] = { 46.9, 16.4, 1977, 604800 }, + }, + }, + [180184] = { + ["coords"] = { + [1] = { 80, 91.8, 5581, 180 }, + }, + }, + [180211] = "_", + [180213] = "_", + [180215] = { + ["coords"] = { + [1] = { 41.3, 71.9, 1977, 604800 }, + [2] = { 58, 54.6, 1977, 604800 }, + [3] = { 54, 49.7, 1977, 604800 }, + }, + }, + [180228] = { + ["coords"] = { + [1] = { 61.6, 81.8, 1977, 7200 }, + [2] = { 49.4, 81.4, 1977, 7200 }, + [3] = { 62.6, 80.1, 1977, 7200 }, + [4] = { 63.6, 65.8, 1977, 7200 }, + [5] = { 52.5, 23.4, 1977, 7200 }, + [6] = { 44, 22.5, 1977, 7200 }, + [7] = { 50.9, 20.7, 1977, 7200 }, + }, + }, + [180229] = { + ["coords"] = { + [1] = { 57.7, 80.1, 1977, 7200 }, + [2] = { 40.6, 53, 1977, 7200 }, + [3] = { 59.9, 41.4, 1977, 7200 }, + [4] = { 47.6, 39.4, 1977, 7200 }, + [5] = { 62.1, 36.6, 1977, 7200 }, + [6] = { 59.9, 29.2, 1977, 7200 }, + [7] = { 28.5, 26.1, 1977, 7200 }, + [8] = { 29.9, 22.3, 1977, 7200 }, + [9] = { 40.9, 21.3, 1977, 7200 }, + [10] = { 47.2, 16.1, 1977, 7200 }, + }, + }, + [180248] = { + ["coords"] = { + [1] = { 26.9, 84.9, 33, 180 }, + [2] = { 27.7, 84.2, 33, 180 }, + [3] = { 25.9, 84.1, 33, 180 }, + [4] = { 30.4, 83.6, 33, 180 }, + [5] = { 34.1, 83.5, 33, 180 }, + [6] = { 26.2, 82.5, 33, 180 }, + [7] = { 31.7, 82, 33, 180 }, + [8] = { 33.9, 77.9, 33, 180 }, + [9] = { 34, 74.7, 33, 180 }, + [10] = { 34.5, 73.3, 33, 180 }, + [11] = { 35.5, 72.6, 33, 180 }, + [12] = { 36.1, 71.5, 33, 180 }, + [13] = { 36.4, 70, 33, 180 }, + [14] = { 27.6, 68, 33, 180 }, + [15] = { 26.2, 68, 33, 180 }, + [16] = { 25.6, 67.1, 33, 180 }, + [17] = { 24.9, 66.2, 33, 180 }, + [18] = { 23.7, 62.5, 33, 180 }, + [19] = { 41, 60.6, 33, 180 }, + [20] = { 24.4, 59.1, 33, 180 }, + [21] = { 24.8, 58.3, 33, 180 }, + [22] = { 26.2, 58.3, 33, 180 }, + [23] = { 25.1, 58.1, 33, 180 }, + [24] = { 23.8, 56.7, 33, 180 }, + [25] = { 22.9, 56.4, 33, 180 }, + [26] = { 24.9, 56.3, 33, 180 }, + [27] = { 22.2, 55.9, 33, 180 }, + [28] = { 22.3, 54.6, 33, 180 }, + [29] = { 22.6, 52.8, 33, 180 }, + [30] = { 22.2, 51.2, 33, 180 }, + [31] = { 24.9, 50.2, 33, 180 }, + [32] = { 24.5, 49.9, 33, 180 }, + [33] = { 22.5, 49.3, 33, 180 }, + [34] = { 25.7, 49.3, 33, 180 }, + [35] = { 26, 48.8, 33, 180 }, + [36] = { 27.3, 45.8, 33, 180 }, + [37] = { 27, 44.3, 33, 180 }, + [38] = { 27.2, 42.3, 33, 180 }, + [39] = { 27, 40.9, 33, 180 }, + [40] = { 27.2, 40, 33, 180 }, + [41] = { 27.3, 38.8, 33, 180 }, + [42] = { 26.9, 38, 33, 180 }, + [43] = { 28.9, 37.7, 33, 180 }, + [44] = { 31.7, 36.5, 33, 180 }, + [45] = { 32, 36.4, 33, 180 }, + [46] = { 35.1, 36.3, 33, 180 }, + [47] = { 32.4, 35.6, 33, 180 }, + [48] = { 35, 35.4, 33, 180 }, + [49] = { 33.6, 33, 33, 180 }, + [50] = { 34.6, 32.2, 33, 180 }, + [51] = { 33, 31.6, 33, 180 }, + [52] = { 30.1, 28.8, 33, 180 }, + [53] = { 29.6, 28.5, 33, 180 }, + [54] = { 30, 27.5, 33, 180 }, + [55] = { 30.1, 27.4, 33, 180 }, + [56] = { 29.3, 26.7, 33, 180 }, + [57] = { 29.4, 25, 33, 180 }, + [58] = { 29.1, 23.4, 33, 180 }, + [59] = { 28.8, 22.2, 33, 180 }, + [60] = { 28, 21.7, 33, 180 }, + [61] = { 27.5, 21, 33, 180 }, + [62] = { 26.6, 20.2, 33, 180 }, + [63] = { 25.9, 20.2, 33, 180 }, + [64] = { 25, 20, 33, 180 }, + [65] = { 24.8, 19.7, 33, 180 }, + [66] = { 23.8, 19, 33, 180 }, + [67] = { 23.1, 18.7, 33, 180 }, + [68] = { 21.8, 18.5, 33, 180 }, + [69] = { 21.1, 16.3, 33, 180 }, + [70] = { 20, 15.3, 33, 180 }, + [71] = { 19.3, 13.8, 33, 180 }, + }, + }, + [180252] = { + ["coords"] = { + [1] = { 65.8, 54.4, 16, 25 }, + [2] = { 65.9, 54.3, 16, 25 }, + [3] = { 66.1, 54.2, 16, 25 }, + [4] = { 65.9, 54.1, 16, 25 }, + [5] = { 65.7, 54.1, 16, 25 }, + [6] = { 66, 54, 16, 25 }, + [7] = { 65.9, 53.9, 16, 25 }, + [8] = { 60.8, 48.6, 1977, 25 }, + [9] = { 60.5, 48.4, 1977, 25 }, + [10] = { 60.7, 48.4, 1977, 600 }, + [11] = { 60.4, 48.3, 1977, 25 }, + [12] = { 61.3, 48.1, 1977, 600 }, + [13] = { 60.5, 47.9, 1977, 25 }, + [14] = { 60.8, 47.4, 1977, 25 }, + [15] = { 61.3, 47.2, 1977, 600 }, + [16] = { 61.6, 47.2, 1977, 25 }, + [17] = { 61.1, 46.9, 1977, 25 }, + [18] = { 61.4, 46.9, 1977, 25 }, + [19] = { 61.4, 46.5, 1977, 25 }, + }, + }, + [180254] = { + ["coords"] = { + [1] = { 61, 47.8, 1977, 0 }, + }, + }, + [180322] = { + ["coords"] = { + [1] = { 77.7, 60.4, 11, 300 }, + [2] = { 39.1, 72.1, 41, 300 }, + [3] = { 56.9, 49.2, 440, 300 }, + [4] = { 35.1, 60.7, 491, 300 }, + [5] = { 25.7, 37.5, 491, 300 }, + [6] = { 29.1, 93.6, 1377, 25 }, + [7] = { 36.4, 43.6, 1583, 300 }, + [8] = { 30.5, 43.6, 1583, 300 }, + [9] = { 33.5, 12.8, 1941, 300 }, + [10] = { 29.9, 50.8, 1977, 25 }, + [11] = { 51.9, 88.7, 2597, 300 }, + [12] = { 50.7, 85.1, 2597, 300 }, + [13] = { 50.5, 84.9, 2597, 300 }, + [14] = { 49.5, 84.1, 2597, 300 }, + [15] = { 47.5, 80.2, 2597, 300 }, + [16] = { 49.4, 80.2, 2597, 300 }, + [17] = { 47.9, 80, 2597, 300 }, + [18] = { 49.8, 79.8, 2597, 300 }, + [19] = { 41.6, 19.7, 2597, 300 }, + [20] = { 43.4, 19.2, 2597, 300 }, + [21] = { 41.7, 12.9, 2597, 25 }, + [22] = { 46.9, 12.8, 2597, 300 }, + [23] = { 41.9, 12.5, 2597, 25 }, + [24] = { 42.6, 12.3, 2597, 25 }, + [25] = { 53.2, 92.8, 3277, 0 }, + [26] = { 43.1, 86, 3277, 0 }, + [27] = { 65.2, 83.3, 3277, 0 }, + [28] = { 66.2, 82.3, 3277, 0 }, + [29] = { 30.8, 62.8, 3277, 0 }, + [30] = { 68.5, 57.7, 3277, 0 }, + [31] = { 37, 54.3, 3277, 300 }, + [32] = { 32.6, 24.1, 3277, 0 }, + [33] = { 52.3, 20.4, 3277, 0 }, + [34] = { 46.2, 12.9, 3277, 0 }, + [35] = { 55.1, 11.8, 3277, 0 }, + [36] = { 54.6, 11.3, 3277, 0 }, + [37] = { 51.4, 77.5, 3456, 300 }, + [38] = { 50.6, 77.5, 3456, 300 }, + [39] = { 50, 77.4, 3456, 300 }, + [40] = { 48.9, 68.9, 3456, 300 }, + [41] = { 47.8, 68.9, 3456, 300 }, + [42] = { 46.9, 68.9, 3456, 300 }, + [43] = { 58.2, 4.3, 3478, 25 }, + [44] = { 77.2, 91.8, 5097, 300 }, + [45] = { 78.3, 90.7, 5097, 300 }, + [46] = { 37.7, 13.1, 5148, 300 }, + [47] = { 39.7, 11.1, 5148, 300 }, + [48] = { 36.4, 10.3, 5148, 300 }, + [49] = { 55.9, 82.2, 5561, 300 }, + [50] = { 58.9, 60.3, 5561, 300 }, + [51] = { 12.4, 45.8, 5601, 604800 }, + [52] = { 32.7, 10, 5601, 604800 }, + [53] = { 28.4, 25.4, 5602, 300 }, + [54] = { 24.1, 71.6, 5628, 300 }, + [55] = { 49.6, 42.2, 5628, 300 }, + [56] = { 51.2, 42.1, 5628, 300 }, + [57] = { 51.9, 15.1, 5628, 300 }, + }, + }, + [180323] = { + ["coords"] = { + [1] = { 53.9, 17.6, 33, 900 }, + [2] = { 28.7, 48.9, 1977, 600 }, + }, + }, + [180327] = { + ["coords"] = { + [1] = { 60.2, 46.8, 1977, 7200 }, + }, + }, + [180329] = { + ["coords"] = { + [1] = { 52.8, 36.9, 1, 180 }, + [2] = { 52.8, 36.8, 1, 180 }, + [3] = { 52.8, 36.6, 1, 180 }, + [4] = { 52.8, 36.5, 1, 180 }, + [5] = { 44.9, 59.8, 215, 0 }, + }, + }, + [180330] = { + ["coords"] = { + [1] = { 52.8, 36.8, 1, 180 }, + [2] = { 52.8, 36.7, 1, 180 }, + [3] = { 52.8, 36.5, 1, 180 }, + [4] = { 44.8, 59.8, 215, 0 }, + }, + }, + [180332] = { + ["coords"] = { + [1] = { 52.8, 36.9, 1, 180 }, + [2] = { 52.8, 36.7, 1, 180 }, + [3] = { 52.8, 36.5, 1, 180 }, + [4] = { 41.6, 64.4, 12, 25 }, + [5] = { 34.8, 49.6, 12, 25 }, + [6] = { 60.1, 29.7, 12, 25 }, + [7] = { 59.3, 29.2, 12, 25 }, + [8] = { 59.9, 29, 12, 25 }, + [9] = { 44.2, 67.5, 14, 300 }, + [10] = { 51.3, 16, 14, 300 }, + [11] = { 51.7, 41.1, 17, 25 }, + [12] = { 52.1, 29.9, 17, 25 }, + [13] = { 52, 29.9, 17, 25 }, + [14] = { 51.9, 29.7, 17, 25 }, + [15] = { 80.2, 62.9, 28, 25 }, + [16] = { 22.5, 59.1, 45, 25 }, + [17] = { 22, 58.8, 45, 25 }, + [18] = { 20.8, 47.6, 45, 25 }, + [19] = { 21.9, 86.6, 139, 25 }, + [20] = { 44.6, 58.4, 215, 25 }, + [21] = { 78.1, 75.9, 400, 25 }, + [22] = { 79.5, 74.5, 400, 25 }, + [23] = { 83.4, 54.9, 400, 25 }, + [24] = { 82.6, 54.1, 400, 25 }, + [25] = { 82.5, 53.7, 400, 25 }, + [26] = { 82.6, 53.6, 400, 25 }, + [27] = { 36.1, 44.3, 400, 25 }, + [28] = { 64.5, 75.5, 1519, 25 }, + [29] = { 37.8, 74.5, 1519, 348 }, + [30] = { 37, 74.4, 1519, 328 }, + [31] = { 37.3, 74.3, 1519, 326 }, + [32] = { 37.4, 74.2, 1519, 300 }, + [33] = { 37.1, 73.2, 1519, 300 }, + [34] = { 36.4, 72.1, 1519, 300 }, + [35] = { 62.7, 69.5, 1519, 25 }, + [36] = { 76.6, 54.2, 1519, 25 }, + [37] = { 76.1, 53.4, 1519, 25 }, + [38] = { 63, 45.9, 1637, 25 }, + [39] = { 63.8, 44.4, 1637, 25 }, + [40] = { 34.9, 91.8, 3478, 25 }, + [41] = { 35, 91.5, 3478, 25 }, + }, + }, + [180333] = { + ["coords"] = { + [1] = { 52.8, 36.8, 1, 180 }, + [2] = { 52.8, 36.6, 1, 180 }, + [3] = { 94.5, 14.7, 10, 25 }, + [4] = { 44.2, 67.5, 14, 300 }, + [5] = { 49.7, 35.9, 14, 25 }, + [6] = { 52, 29.8, 17, 25 }, + [7] = { 22, 59, 45, 25 }, + [8] = { 78.1, 75.8, 400, 25 }, + [9] = { 79.5, 74.4, 400, 25 }, + [10] = { 70.8, 72.7, 1519, 25 }, + [11] = { 61.2, 70.5, 1519, 25 }, + [12] = { 75.8, 54.4, 1519, 25 }, + [13] = { 51.3, 70.8, 1637, 25 }, + [14] = { 63.8, 44.7, 1637, 25 }, + }, + }, + [180334] = { + ["coords"] = { + [1] = { 52.8, 36.9, 1, 180 }, + [2] = { 52.8, 36.7, 1, 180 }, + [3] = { 52.8, 36.6, 1, 180 }, + [4] = { 52.8, 36.5, 1, 180 }, + [5] = { 22.1, 59.1, 45, 25 }, + [6] = { 38, 52, 85, 25 }, + }, + }, + [180335] = { + ["coords"] = { + [1] = { 42.1, 70.4, 12, 180 }, + [2] = { 36.8, 37.7, 215, 180 }, + }, + }, + [180336] = { + ["coords"] = {}, + }, + [180338] = { + ["coords"] = { + [1] = { 94.5, 14.5, 10, 25 }, + [2] = { 39.6, 61.4, 11, 120 }, + [3] = { 46.6, 13.6, 14, 180 }, + [4] = { 46.3, 13.6, 14, 180 }, + [5] = { 46.4, 13.3, 14, 180 }, + [6] = { 46.4, 13.2, 14, 180 }, + [7] = { 41.7, 42.1, 16, 300 }, + [8] = { 52.1, 29.9, 17, 25 }, + [9] = { 52, 29.8, 17, 25 }, + [10] = { 51.9, 29.7, 17, 25 }, + [11] = { 67.6, 24.2, 28, 25 }, + [12] = { 22.4, 59, 45, 25 }, + [13] = { 22.4, 58.9, 45, 25 }, + [14] = { 37.9, 52, 85, 25 }, + [15] = { 7.9, 43.6, 139, 25 }, + [16] = { 82.5, 53.7, 400, 25 }, + [17] = { 64.1, 76.7, 1519, 300 }, + [18] = { 76.9, 54, 1519, 25 }, + [19] = { 76.6, 53.6, 1519, 25 }, + [20] = { 52.2, 99.9, 1637, 180 }, + [21] = { 52.3, 99.7, 1637, 180 }, + [22] = { 51.3, 70.7, 1637, 25 }, + [23] = { 62.3, 44.3, 1637, 25 }, + }, + }, + [180339] = { + ["coords"] = { + [1] = { 46.6, 13.6, 14, 180 }, + [2] = { 46.4, 13.6, 14, 180 }, + [3] = { 46.6, 13.4, 14, 180 }, + [4] = { 46.5, 13.3, 14, 180 }, + [5] = { 46.4, 13.3, 14, 180 }, + [6] = { 41.7, 42.1, 16, 300 }, + [7] = { 22, 58.8, 45, 25 }, + [8] = { 82.5, 53.8, 400, 25 }, + [9] = { 62.7, 69.5, 1519, 25 }, + [10] = { 53, 99.9, 1637, 180 }, + [11] = { 52.3, 99.9, 1637, 180 }, + [12] = { 62.3, 44.4, 1637, 25 }, + }, + }, + [180340] = { + ["coords"] = { + [1] = { 93.7, 14.9, 10, 25 }, + [2] = { 10, 57.5, 11, 0 }, + [3] = { 42.5, 63, 12, 25 }, + [4] = { 46.5, 13.7, 14, 180 }, + [5] = { 46.4, 13.6, 14, 180 }, + [6] = { 46.3, 13.3, 14, 180 }, + [7] = { 46.5, 13.3, 14, 180 }, + [8] = { 30.8, 29, 28, 25 }, + [9] = { 87.2, 43.3, 85, 25 }, + [10] = { 82.6, 53.9, 400, 25 }, + [11] = { 82.7, 53.5, 400, 25 }, + [12] = { 53, 99.9, 1637, 180 }, + [13] = { 63.8, 44.5, 1637, 25 }, + }, + }, + [180342] = { + ["coords"] = { + [1] = { 46.4, 13.6, 14, 180 }, + [2] = { 46.6, 13.3, 14, 180 }, + [3] = { 46.3, 13.3, 14, 180 }, + [4] = { 44.9, 59.9, 215, 0 }, + [5] = { 52.2, 99.9, 1637, 180 }, + }, + }, + [180350] = { + ["coords"] = { + [1] = { 93.4, 14.5, 10, 25 }, + [2] = { 43.9, 67.2, 14, 300 }, + [3] = { 46.5, 13.7, 14, 180 }, + [4] = { 46.3, 13.5, 14, 180 }, + [5] = { 46.4, 13.5, 14, 180 }, + [6] = { 46.6, 13.4, 14, 180 }, + [7] = { 46.3, 13.4, 14, 180 }, + [8] = { 52.2, 30.2, 17, 25 }, + [9] = { 78.1, 75.9, 400, 25 }, + [10] = { 62.9, 45.9, 1637, 25 }, + [11] = { 62.2, 44.9, 1637, 25 }, + [12] = { 63.7, 44.3, 1637, 25 }, + }, + }, + [180351] = { + ["coords"] = { + [1] = { 46.6, 13.4, 14, 180 }, + [2] = { 41.5, 42.2, 16, 300 }, + [3] = { 44.6, 58.4, 215, 25 }, + [4] = { 31.6, 20.8, 357, 25 }, + [5] = { 31.6, 20.7, 357, 25 }, + [6] = { 31.6, 20.5, 357, 25 }, + [7] = { 51.4, 70.9, 1637, 25 }, + [8] = { 63.7, 44, 1637, 25 }, + }, + }, + [180352] = { + ["coords"] = { + [1] = { 44.3, 67.1, 14, 300 }, + [2] = { 44.1, 67, 14, 300 }, + [3] = { 44.3, 67, 14, 300 }, + [4] = { 44.1, 66.9, 14, 300 }, + [5] = { 46.5, 13.7, 14, 180 }, + [6] = { 46.4, 13.5, 14, 180 }, + [7] = { 46.6, 13.5, 14, 180 }, + [8] = { 46.3, 13.5, 14, 180 }, + [9] = { 46.5, 13.2, 14, 180 }, + [10] = { 62.6, 37.7, 17, 25 }, + [11] = { 25, 16.2, 406, 25 }, + [12] = { 26.4, 14.3, 406, 25 }, + [13] = { 25.9, 14.3, 406, 25 }, + [14] = { 26.5, 14.1, 406, 25 }, + [15] = { 25, 13.6, 406, 25 }, + [16] = { 24.1, 12.8, 406, 25 }, + [17] = { 52.6, 99.5, 1637, 180 }, + [18] = { 35.1, 94.4, 3478, 25 }, + [19] = { 36.6, 93.6, 3478, 25 }, + [20] = { 35.3, 93, 3478, 25 }, + [21] = { 35.6, 92.5, 3478, 25 }, + [22] = { 35.2, 92.3, 3478, 25 }, + [23] = { 34.8, 92.3, 3478, 25 }, + [24] = { 36.7, 92.1, 3478, 25 }, + [25] = { 35.4, 91.7, 3478, 25 }, + }, + }, + [180353] = { + ["coords"] = { + [1] = { 52.8, 37, 1, 180 }, + [2] = { 52.9, 36.7, 1, 180 }, + [3] = { 52.8, 36.7, 1, 180 }, + [4] = { 52.9, 36.4, 1, 180 }, + [5] = { 79.4, 62.6, 28, 25 }, + [6] = { 79.4, 62.2, 28, 25 }, + [7] = { 30.6, 29.4, 28, 25 }, + [8] = { 30.6, 28.8, 28, 25 }, + [9] = { 30.8, 28.6, 28, 25 }, + [10] = { 30.5, 27.9, 28, 25 }, + [11] = { 40.5, 77.8, 41, 25 }, + [12] = { 40.7, 77.7, 41, 25 }, + [13] = { 22.4, 59.5, 45, 25 }, + [14] = { 22.5, 59.3, 45, 25 }, + [15] = { 20.7, 47.6, 45, 25 }, + [16] = { 87, 43.6, 85, 25 }, + [17] = { 87, 43, 85, 25 }, + [18] = { 87.3, 42.8, 85, 25 }, + [19] = { 87, 42.2, 85, 25 }, + [20] = { 21, 86.3, 139, 25 }, + [21] = { 21, 85.8, 139, 25 }, + [22] = { 64.3, 75.6, 1519, 25 }, + [23] = { 61.6, 75.4, 1519, 25 }, + [24] = { 64.2, 75.4, 1519, 25 }, + [25] = { 62.8, 73.6, 1519, 25 }, + [26] = { 65, 73.3, 1519, 25 }, + [27] = { 64.9, 73.1, 1519, 25 }, + [28] = { 62.7, 71.5, 1519, 25 }, + [29] = { 74.3, 55.4, 1519, 25 }, + }, + }, + [180358] = { + ["coords"] = { + [1] = { 62, 45.9, 1977, 600 }, + }, + }, + [180364] = { + ["coords"] = { + [1] = { 62.1, 47.2, 1977, 600 }, + }, + }, + [180365] = { + ["coords"] = { + [1] = { 60.7, 49.4, 1977, 600 }, + }, + }, + [180366] = { + ["coords"] = { + [1] = { 54.6, 33.4, 1977, 600 }, + }, + }, + [180368] = { + ["coords"] = { + [1] = { 61.5, 48.5, 1977, 600 }, + }, + }, + [180369] = { + ["coords"] = { + [1] = { 40.9, 47.7, 1977, 600 }, + [2] = { 42.1, 43.6, 1977, 600 }, + [3] = { 38.3, 39.3, 1977, 600 }, + [4] = { 49.4, 32.2, 1977, 600 }, + }, + }, + [180370] = { + ["coords"] = { + [1] = { 52.8, 36.9, 1, 180 }, + [2] = { 52.8, 36.7, 1, 180 }, + [3] = { 52.8, 36.6, 1, 180 }, + [4] = { 52.8, 36.5, 1, 180 }, + [5] = { 35.2, 50.2, 12, 9000 }, + [6] = { 46.3, 13.6, 14, 180 }, + [7] = { 46.6, 13.4, 14, 180 }, + [8] = { 46.3, 13.4, 14, 180 }, + [9] = { 46.4, 13.3, 14, 180 }, + [10] = { 46.5, 13.3, 14, 180 }, + [11] = { 44.2, 58.6, 215, 12000 }, + [12] = { 52.3, 99.8, 1637, 180 }, + [13] = { 52.8, 99.7, 1637, 180 }, + }, + }, + [180371] = { + ["coords"] = { + [1] = { 52.8, 36.8, 1, 180 }, + [2] = { 52.8, 36.7, 1, 180 }, + [3] = { 52.8, 36.4, 1, 180 }, + [4] = { 46.4, 13.7, 14, 180 }, + [5] = { 46.5, 13.6, 14, 180 }, + [6] = { 46.6, 13.5, 14, 180 }, + }, + }, + [180372] = { + ["coords"] = { + [1] = { 52.8, 36.6, 1, 180 }, + [2] = { 52.8, 36.5, 1, 180 }, + [3] = { 52.8, 36.4, 1, 180 }, + [4] = { 46.5, 13.6, 14, 180 }, + [5] = { 46.3, 13.6, 14, 180 }, + [6] = { 46.6, 13.5, 14, 180 }, + [7] = { 46.6, 13.4, 14, 180 }, + [8] = { 46.3, 13.4, 14, 180 }, + [9] = { 46.4, 13.3, 14, 180 }, + [10] = { 46.5, 13.3, 14, 180 }, + [11] = { 52.3, 99.8, 1637, 180 }, + [12] = { 52.8, 99.7, 1637, 180 }, + }, + }, + [180373] = { + ["coords"] = { + [1] = { 52.8, 36.9, 1, 180 }, + [2] = { 52.8, 36.8, 1, 180 }, + [3] = { 52.8, 36.6, 1, 180 }, + [4] = { 52.8, 36.5, 1, 180 }, + }, + }, + [180374] = { + ["coords"] = { + [1] = { 46.5, 13.7, 14, 180 }, + [2] = { 46.4, 13.6, 14, 180 }, + [3] = { 46.6, 13.6, 14, 180 }, + [4] = { 46.3, 13.6, 14, 180 }, + [5] = { 46.3, 13.5, 14, 180 }, + [6] = { 46.5, 13.5, 14, 180 }, + [7] = { 46.6, 13.4, 14, 180 }, + [8] = { 46.6, 13.3, 14, 180 }, + [9] = { 46.3, 13.3, 14, 180 }, + [10] = { 46.5, 13.3, 14, 180 }, + [11] = { 46.4, 13.2, 14, 180 }, + [12] = { 52.2, 99.9, 1637, 180 }, + [13] = { 53, 99.8, 1637, 180 }, + [14] = { 52.4, 99.7, 1637, 180 }, + }, + }, + [180386] = { + ["coords"] = { + [1] = { 48.8, 20.6, 1977, 600 }, + }, + }, + [180392] = { + ["coords"] = { + [1] = { 54.6, 33.6, 1977, 10 }, + [2] = { 54.8, 33.5, 1977, 10 }, + [3] = { 54.7, 33.3, 1977, 10 }, + [4] = { 54.4, 33.1, 1977, 10 }, + [5] = { 54.6, 33, 1977, 10 }, + [6] = { 54.5, 33, 1977, 10 }, + [7] = { 55.3, 32.7, 1977, 10 }, + [8] = { 55.3, 32.6, 1977, 10 }, + }, + }, + [180393] = { + ["coords"] = { + [1] = { 59.9, 49.4, 1977, 600 }, + }, + }, + [180394] = { + ["coords"] = { + [1] = { 74.7, 14.8, 130, 180 }, + [2] = { 74.7, 11.9, 130, 25 }, + [3] = { 41.4, 33.1, 215, 25 }, + [4] = { 38.8, 28.4, 215, 25 }, + [5] = { 44.2, 22.3, 215, 25 }, + [6] = { 35.1, 20.7, 215, 25 }, + [7] = { 88.8, 47.9, 405, 25 }, + [8] = { 58.6, 97.8, 1497, 180 }, + [9] = { 58.2, 85, 1497, 25 }, + [10] = { 70, 44.3, 1497, 25 }, + [11] = { 61.9, 44, 1497, 25 }, + [12] = { 50.1, 66.4, 1637, 25 }, + [13] = { 47.3, 65.1, 1637, 25 }, + [14] = { 73.1, 35.9, 1637, 25 }, + [15] = { 57.3, 79.8, 1638, 25 }, + [16] = { 44.2, 56.8, 1638, 25 }, + [17] = { 70.9, 26.8, 1638, 25 }, + [18] = { 26.2, 19.1, 1638, 25 }, + }, + }, + [180395] = { + ["coords"] = { + [1] = { 74.7, 14.8, 130, 180 }, + [2] = { 41.5, 32.4, 215, 180 }, + [3] = { 41, 32.3, 215, 180 }, + [4] = { 37.3, 29.2, 215, 180 }, + [5] = { 38.8, 28.5, 215, 180 }, + [6] = { 40.3, 23.9, 215, 180 }, + [7] = { 35.3, 22.7, 215, 180 }, + [8] = { 88.9, 50.2, 405, 180 }, + [9] = { 58.6, 97.8, 1497, 180 }, + [10] = { 65.7, 55.2, 1497, 180 }, + [11] = { 73.4, 44.6, 1497, 180 }, + [12] = { 58.5, 43.6, 1497, 180 }, + [13] = { 50.2, 65.9, 1637, 180 }, + [14] = { 47.2, 65.2, 1637, 180 }, + [15] = { 20.5, 56.4, 1637, 180 }, + [16] = { 73.5, 36.2, 1637, 180 }, + [17] = { 57.7, 76.7, 1638, 180 }, + [18] = { 55.1, 76, 1638, 180 }, + [19] = { 36.6, 60.9, 1638, 180 }, + [20] = { 44.5, 57.4, 1638, 180 }, + [21] = { 51.5, 34.7, 1638, 180 }, + [22] = { 27.1, 29, 1638, 180 }, + }, + }, + [180396] = { + ["coords"] = { + [1] = { 74.7, 14.8, 130, 180 }, + [2] = { 41.5, 32.4, 215, 180 }, + [3] = { 41, 32.3, 215, 180 }, + [4] = { 37.3, 29.2, 215, 180 }, + [5] = { 38.8, 28.5, 215, 180 }, + [6] = { 40.3, 23.9, 215, 180 }, + [7] = { 35.3, 22.7, 215, 180 }, + [8] = { 88.9, 50.2, 405, 180 }, + [9] = { 58.6, 97.8, 1497, 180 }, + [10] = { 65.7, 55.2, 1497, 180 }, + [11] = { 73.4, 44.6, 1497, 180 }, + [12] = { 58.5, 43.6, 1497, 180 }, + [13] = { 50.2, 65.9, 1637, 180 }, + [14] = { 47.2, 65.2, 1637, 180 }, + [15] = { 20.5, 56.4, 1637, 180 }, + [16] = { 73.5, 36.2, 1637, 180 }, + [17] = { 57.7, 76.7, 1638, 180 }, + [18] = { 55.1, 76, 1638, 180 }, + [19] = { 36.6, 60.9, 1638, 180 }, + [20] = { 44.5, 57.4, 1638, 180 }, + [21] = { 51.5, 34.7, 1638, 180 }, + [22] = { 27.1, 29, 1638, 180 }, + }, + }, + [180397] = { + ["coords"] = { + [1] = { 55.3, 35.3, 1, 180 }, + [2] = { 92.7, 13.7, 10, 25 }, + [3] = { 92.9, 13.6, 10, 25 }, + [4] = { 93, 13.6, 10, 25 }, + [5] = { 24.9, 62.2, 141, 180 }, + [6] = { 26, 55, 141, 180 }, + [7] = { 32.1, 55, 141, 180 }, + [8] = { 28.9, 54.4, 141, 180 }, + [9] = { 67.8, 75.5, 1519, 180 }, + [10] = { 65, 73.5, 1519, 180 }, + [11] = { 61.5, 73.1, 1519, 180 }, + [12] = { 65.9, 35.9, 1519, 180 }, + [13] = { 26.3, 88.4, 1537, 180 }, + [14] = { 69.5, 88.3, 1537, 180 }, + [15] = { 16.6, 66.4, 1537, 180 }, + [16] = { 57.9, 50, 1537, 180 }, + [17] = { 34.4, 20.1, 1537, 180 }, + [18] = { 37.1, 73.4, 1657, 180 }, + [19] = { 42.4, 38.9, 1657, 180 }, + [20] = { 71.7, 38.7, 1657, 180 }, + [21] = { 56.3, 35.9, 1657, 180 }, + [22] = { 51.9, 96.6, 5581, 180 }, + [23] = { 60.8, 95.5, 5581, 180 }, + }, + }, + [180398] = { + ["coords"] = { + [1] = { 55.3, 35.3, 1, 180 }, + [2] = { 24.9, 62.2, 141, 180 }, + [3] = { 26, 55, 141, 180 }, + [4] = { 32.1, 55, 141, 180 }, + [5] = { 28.9, 54.4, 141, 180 }, + [6] = { 67.8, 75.5, 1519, 180 }, + [7] = { 65, 73.5, 1519, 180 }, + [8] = { 61.5, 73.1, 1519, 180 }, + [9] = { 65.9, 35.9, 1519, 180 }, + [10] = { 26.3, 88.4, 1537, 180 }, + [11] = { 69.5, 88.3, 1537, 180 }, + [12] = { 16.6, 66.4, 1537, 180 }, + [13] = { 57.9, 50, 1537, 180 }, + [14] = { 34.4, 20.1, 1537, 180 }, + [15] = { 37.1, 73.4, 1657, 180 }, + [16] = { 42.4, 38.9, 1657, 180 }, + [17] = { 71.7, 38.6, 1657, 180 }, + [18] = { 56.3, 35.9, 1657, 180 }, + [19] = { 51.9, 96.6, 5581, 180 }, + [20] = { 60.8, 95.5, 5581, 180 }, + }, + }, + [180399] = { + ["coords"] = { + [1] = { 55.3, 35.3, 1, 180 }, + [2] = { 24.9, 62.2, 141, 180 }, + [3] = { 26, 55, 141, 180 }, + [4] = { 32.1, 55, 141, 180 }, + [5] = { 28.9, 54.4, 141, 180 }, + [6] = { 67.8, 75.5, 1519, 180 }, + [7] = { 65, 73.5, 1519, 180 }, + [8] = { 61.5, 73.1, 1519, 180 }, + [9] = { 66, 35.9, 1519, 180 }, + [10] = { 26.3, 88.3, 1537, 180 }, + [11] = { 69.5, 88.2, 1537, 180 }, + [12] = { 16.6, 66.4, 1537, 180 }, + [13] = { 57.9, 50, 1537, 180 }, + [14] = { 34.4, 20.1, 1537, 180 }, + [15] = { 37.2, 73.4, 1657, 180 }, + [16] = { 42.3, 39, 1657, 180 }, + [17] = { 71.7, 38.7, 1657, 180 }, + [18] = { 56.3, 35.9, 1657, 180 }, + [19] = { 51.9, 96.6, 5581, 180 }, + [20] = { 60.8, 95.5, 5581, 180 }, + }, + }, + [180400] = { + ["coords"] = { + [1] = { 55.3, 35.3, 1, 180 }, + [2] = { 24.9, 62.2, 141, 180 }, + [3] = { 26, 55, 141, 180 }, + [4] = { 32.1, 55, 141, 180 }, + [5] = { 28.9, 54.4, 141, 180 }, + [6] = { 67.8, 75.5, 1519, 180 }, + [7] = { 65, 73.5, 1519, 180 }, + [8] = { 61.5, 73.1, 1519, 180 }, + [9] = { 66, 35.9, 1519, 180 }, + [10] = { 26.3, 88.3, 1537, 180 }, + [11] = { 69.5, 88.2, 1537, 180 }, + [12] = { 16.6, 66.4, 1537, 180 }, + [13] = { 57.9, 50, 1537, 180 }, + [14] = { 34.4, 20.1, 1537, 180 }, + [15] = { 37.2, 73.4, 1657, 180 }, + [16] = { 42.3, 39, 1657, 180 }, + [17] = { 71.7, 38.7, 1657, 180 }, + [18] = { 56.3, 35.9, 1657, 180 }, + [19] = { 51.9, 96.6, 5581, 180 }, + [20] = { 60.8, 95.5, 5581, 180 }, + }, + }, + [180405] = { + ["coords"] = { + [1] = { 46.7, 53.6, 1, 180 }, + [2] = { 47.4, 53.6, 1, 180 }, + [3] = { 53.6, 35.1, 1, 180 }, + [4] = { 2.8, 47.4, 3, 180 }, + [5] = { 3.6, 47.2, 3, 180 }, + [6] = { 3.9, 46.6, 3, 180 }, + [7] = { 2.6, 45.2, 3, 180 }, + [8] = { 48, 58.3, 8, 600 }, + [9] = { 44.9, 55.2, 8, 600 }, + [10] = { 46.2, 55, 8, 600 }, + [11] = { 43.5, 54.7, 8, 600 }, + [12] = { 45, 49.3, 8, 600 }, + [13] = { 74.3, 48.3, 10, 180 }, + [14] = { 77.5, 48.3, 10, 180 }, + [15] = { 73.8, 48.3, 10, 180 }, + [16] = { 79.5, 47.5, 10, 180 }, + [17] = { 74.3, 47.2, 10, 180 }, + [18] = { 74.1, 47.2, 10, 180 }, + [19] = { 72, 46.3, 10, 180 }, + [20] = { 75.4, 45.2, 10, 180 }, + [21] = { 73.1, 45, 10, 180 }, + [22] = { 78.9, 44.7, 10, 180 }, + [23] = { 74.3, 44.1, 10, 180 }, + [24] = { 74.5, 43.8, 10, 180 }, + [25] = { 10.6, 61, 11, 180 }, + [26] = { 11, 60.8, 11, 180 }, + [27] = { 10.7, 59.7, 11, 180 }, + [28] = { 10.9, 54.7, 11, 0 }, + [29] = { 10.9, 54.7, 11, 180 }, + [30] = { 43.7, 66.8, 12, 180 }, + [31] = { 43, 66.2, 12, 180 }, + [32] = { 41.2, 66.1, 12, 180 }, + [33] = { 32.1, 50.4, 12, 180 }, + [34] = { 52.7, 44.4, 14, 180 }, + [35] = { 54.2, 43.8, 14, 180 }, + [36] = { 53.2, 42.7, 14, 180 }, + [37] = { 51.8, 42.1, 14, 180 }, + [38] = { 52.9, 40.6, 14, 180 }, + [39] = { 45.3, 11.9, 14, 180 }, + [40] = { 66.3, 45.7, 15, 180 }, + [41] = { 66, 45.1, 15, 180 }, + [42] = { 66.2, 45.1, 15, 180 }, + [43] = { 44.8, 59.2, 17, 180 }, + [44] = { 45.3, 58.8, 17, 180 }, + [45] = { 62.2, 39.3, 17, 180 }, + [46] = { 61.8, 39.3, 17, 180 }, + [47] = { 62, 39.2, 17, 180 }, + [48] = { 62, 38.7, 17, 180 }, + [49] = { 62.2, 38.2, 17, 180 }, + [50] = { 62.9, 38.1, 17, 180 }, + [51] = { 62.3, 37.6, 17, 180 }, + [52] = { 52.2, 32.2, 17, 180 }, + [53] = { 51.9, 30.2, 17, 180 }, + [54] = { 52.1, 30.2, 17, 180 }, + [55] = { 51.5, 30.2, 17, 180 }, + [56] = { 52.1, 30, 17, 180 }, + [57] = { 51.9, 29.8, 17, 180 }, + [58] = { 52.2, 29.7, 17, 180 }, + [59] = { 52.4, 29.4, 17, 180 }, + [60] = { 27.3, 77.3, 33, 180 }, + [61] = { 26.7, 77.1, 33, 180 }, + [62] = { 59.2, 89.1, 36, 180 }, + [63] = { 62.3, 83.3, 36, 180 }, + [64] = { 62.9, 83, 36, 180 }, + [65] = { 61.7, 82.3, 36, 180 }, + [66] = { 62.3, 82.1, 36, 180 }, + [67] = { 60.3, 81.3, 36, 180 }, + [68] = { 58.5, 80, 36, 180 }, + [69] = { 35, 48.5, 38, 180 }, + [70] = { 35, 47.6, 38, 180 }, + [71] = { 35.5, 47.3, 38, 180 }, + [72] = { 52.5, 53.6, 40, 180 }, + [73] = { 53, 53.1, 40, 180 }, + [74] = { 56.7, 48.2, 40, 180 }, + [75] = { 57, 46.1, 40, 180 }, + [76] = { 30.7, 58.5, 44, 180 }, + [77] = { 32.1, 49.1, 44, 180 }, + [78] = { 29.7, 46.3, 44, 180 }, + [79] = { 27.2, 45.9, 44, 180 }, + [80] = { 26.3, 44.3, 44, 180 }, + [81] = { 74.5, 34, 45, 180 }, + [82] = { 73.7, 32.3, 45, 180 }, + [83] = { 72.9, 32.3, 45, 180 }, + [84] = { 73.6, 30.5, 45, 180 }, + [85] = { 14, 45.9, 47, 0 }, + [86] = { 14.6, 45.7, 47, 0 }, + [87] = { 13.6, 42.4, 47, 0 }, + [88] = { 13.7, 41.9, 47, 0 }, + [89] = { 13.3, 41.6, 47, 0 }, + [90] = { 81.8, 38.7, 51, 180 }, + [91] = { 82.7, 38.5, 51, 180 }, + [92] = { 83.1, 37.8, 51, 180 }, + [93] = { 81.7, 36.3, 51, 180 }, + [94] = { 60.9, 59.4, 85, 180 }, + [95] = { 60.9, 58.7, 85, 180 }, + [96] = { 60.4, 53.6, 85, 180 }, + [97] = { 61.6, 53.1, 85, 180 }, + [98] = { 60, 53.1, 85, 180 }, + [99] = { 60.3, 52.9, 85, 180 }, + [100] = { 61.5, 52.7, 85, 180 }, + [101] = { 59.4, 52.4, 85, 180 }, + [102] = { 60, 52.2, 85, 180 }, + [103] = { 61.5, 52, 85, 180 }, + [104] = { 61.7, 51.4, 85, 180 }, + [105] = { 57.4, 60.7, 141, 180 }, + [106] = { 56.2, 60.5, 141, 180 }, + [107] = { 56, 59.7, 141, 180 }, + [108] = { 56.3, 59.3, 141, 180 }, + [109] = { 25.6, 56.2, 141, 180 }, + [110] = { 25.8, 55.6, 141, 180 }, + [111] = { 31.2, 50, 141, 0 }, + [112] = { 31.1, 49.9, 141, 0 }, + [113] = { 36.6, 44.6, 148, 180 }, + [114] = { 36.7, 44, 148, 180 }, + [115] = { 37.2, 43.9, 148, 180 }, + [116] = { 36.4, 43.7, 148, 180 }, + [117] = { 36.9, 43.3, 148, 180 }, + [118] = { 46.8, 60.4, 215, 180 }, + [119] = { 46.1, 60.3, 215, 180 }, + [120] = { 48.5, 59.7, 215, 180 }, + [121] = { 37.9, 29.9, 215, 180 }, + [122] = { 39, 29.3, 215, 180 }, + [123] = { 37.3, 28.8, 215, 180 }, + [124] = { 39, 28, 215, 180 }, + [125] = { 37.1, 27.4, 215, 180 }, + [126] = { 35.7, 21.9, 215, 180 }, + [127] = { 48.8, 59.5, 267, 180 }, + [128] = { 52, 59.2, 267, 180 }, + [129] = { 51, 59.1, 267, 180 }, + [130] = { 51.8, 58.7, 267, 180 }, + [131] = { 48.1, 58.5, 267, 180 }, + [132] = { 51.4, 58.2, 267, 180 }, + [133] = { 50.5, 56.9, 267, 180 }, + [134] = { 49.3, 55.8, 267, 180 }, + [135] = { 48.8, 54.9, 267, 180 }, + [136] = { 60.6, 26.4, 267, 180 }, + [137] = { 63.3, 21.3, 267, 180 }, + [138] = { 63.9, 21.1, 267, 180 }, + [139] = { 62.9, 20.4, 267, 180 }, + [140] = { 63.4, 20.3, 267, 180 }, + [141] = { 61.6, 19.6, 267, 180 }, + [142] = { 60.1, 18.5, 267, 180 }, + [143] = { 99.4, 5.2, 267, 0 }, + [144] = { 98.9, 1, 267, 0 }, + [145] = { 73, 61.5, 331, 180 }, + [146] = { 73.8, 61, 331, 180 }, + [147] = { 73.9, 61, 331, 180 }, + [148] = { 37.4, 53.8, 331, 180 }, + [149] = { 37, 50.5, 331, 180 }, + [150] = { 36.4, 50.2, 331, 180 }, + [151] = { 37.2, 49.4, 331, 180 }, + [152] = { 36.9, 49.2, 331, 180 }, + [153] = { 36.7, 49.2, 331, 180 }, + [154] = { 33.7, 48, 331, 180 }, + [155] = { 31.3, 43.6, 357, 0 }, + [156] = { 31.3, 43.6, 357, 180 }, + [157] = { 30.7, 43.6, 357, 0 }, + [158] = { 30.7, 43.6, 357, 180 }, + [159] = { 31.1, 42.5, 357, 0 }, + [160] = { 31.1, 42.5, 357, 180 }, + [161] = { 46.2, 51.2, 400, 180 }, + [162] = { 45.9, 51.1, 400, 180 }, + [163] = { 23.9, 68.8, 405, 180 }, + [164] = { 24.6, 68.6, 405, 180 }, + [165] = { 89.4, 49.2, 405, 180 }, + [166] = { 66.1, 7.7, 405, 180 }, + [167] = { 65.8, 7.7, 405, 180 }, + [168] = { 66.7, 7.5, 405, 180 }, + [169] = { 65.8, 6.3, 405, 180 }, + [170] = { 66.6, 6, 405, 180 }, + [171] = { 44.7, 80.3, 406, 180 }, + [172] = { 44.4, 80.3, 406, 180 }, + [173] = { 45.1, 80.1, 406, 180 }, + [174] = { 44.4, 79.3, 406, 180 }, + [175] = { 45, 79, 406, 180 }, + [176] = { 50.3, 63.6, 406, 180 }, + [177] = { 50.2, 62.8, 406, 180 }, + [178] = { 50.8, 62.7, 406, 180 }, + [179] = { 52.6, 29, 440, 180 }, + [180] = { 52.3, 29, 440, 180 }, + [181] = { 52, 28.7, 440, 180 }, + [182] = { 51.9, 28.7, 440, 180 }, + [183] = { 51.6, 27.9, 440, 180 }, + [184] = { 52.5, 27.8, 440, 180 }, + [185] = { 52, 27.7, 440, 180 }, + [186] = { 50.2, 27.7, 440, 180 }, + [187] = { 52.5, 27.6, 440, 180 }, + [188] = { 51, 27.6, 440, 180 }, + [189] = { 50.9, 27.5, 440, 180 }, + [190] = { 51.4, 27.2, 440, 180 }, + [191] = { 52.8, 27.1, 440, 180 }, + [192] = { 51.9, 27, 440, 180 }, + [193] = { 50.7, 26.7, 440, 180 }, + [194] = { 61.3, 39.5, 618, 180 }, + [195] = { 61.3, 38.8, 618, 180 }, + [196] = { 61.4, 38.7, 618, 180 }, + [197] = { 61.7, 38.4, 618, 180 }, + [198] = { 61.3, 38.2, 618, 180 }, + [199] = { 60.6, 38, 618, 180 }, + [200] = { 60.8, 37.9, 618, 180 }, + [201] = { 61.7, 37.5, 618, 180 }, + [202] = { 61.4, 37.5, 618, 180 }, + [203] = { 61, 37.1, 618, 180 }, + [204] = { 51.7, 38.2, 1377, 180 }, + [205] = { 65.6, 55.9, 1497, 180 }, + [206] = { 64.1, 50.9, 1497, 180 }, + [207] = { 63.9, 49.5, 1497, 180 }, + [208] = { 68.6, 48.9, 1497, 180 }, + [209] = { 63.3, 48.8, 1497, 180 }, + [210] = { 64.7, 46, 1497, 180 }, + [211] = { 70, 45.9, 1497, 180 }, + [212] = { 61.9, 45.9, 1497, 180 }, + [213] = { 65.4, 45, 1497, 180 }, + [214] = { 67.3, 42.2, 1497, 180 }, + [215] = { 62.8, 40.1, 1497, 180 }, + [216] = { 68.6, 39.4, 1497, 180 }, + [217] = { 73, 39, 1497, 180 }, + [218] = { 64.7, 38, 1497, 180 }, + [219] = { 63.7, 36.4, 1497, 180 }, + [220] = { 68.5, 35.8, 1497, 180 }, + [221] = { 64.3, 79.8, 1519, 180 }, + [222] = { 62.5, 79.8, 1519, 180 }, + [223] = { 60.9, 74.2, 1519, 180 }, + [224] = { 65.5, 74, 1519, 180 }, + [225] = { 62.6, 73.8, 1519, 180 }, + [226] = { 64.5, 72.6, 1519, 180 }, + [227] = { 61.5, 70.4, 1519, 180 }, + [228] = { 15.5, 87.1, 1537, 180 }, + [229] = { 32.6, 77.7, 1537, 180 }, + [230] = { 27.2, 73.5, 1537, 180 }, + [231] = { 26.3, 73.5, 1537, 180 }, + [232] = { 27.1, 70, 1537, 180 }, + [233] = { 29.1, 69.6, 1537, 180 }, + [234] = { 35.8, 67.6, 1537, 180 }, + [235] = { 33.7, 65.7, 1537, 180 }, + [236] = { 24.2, 63, 1537, 180 }, + [237] = { 32.6, 62.8, 1537, 180 }, + [238] = { 25.3, 60.6, 1537, 180 }, + [239] = { 29.7, 58.1, 1537, 180 }, + [240] = { 21.1, 53.9, 1537, 180 }, + [241] = { 20.4, 51.9, 1537, 180 }, + [242] = { 48.4, 94.8, 1637, 180 }, + [243] = { 49.2, 71.4, 1637, 180 }, + [244] = { 48.4, 69.2, 1637, 180 }, + [245] = { 53.7, 68.8, 1637, 180 }, + [246] = { 48.1, 67.3, 1637, 180 }, + [247] = { 53.8, 65.8, 1637, 180 }, + [248] = { 47.4, 65.6, 1637, 180 }, + [249] = { 52.8, 63.5, 1637, 180 }, + [250] = { 54.1, 62.7, 1637, 180 }, + [251] = { 39.7, 64.1, 1638, 180 }, + [252] = { 45.3, 61.1, 1638, 180 }, + [253] = { 36.7, 58.8, 1638, 180 }, + [254] = { 45.2, 54.7, 1638, 180 }, + [255] = { 36, 51.8, 1638, 180 }, + [256] = { 28.8, 24.7, 1638, 180 }, + [257] = { 40.3, 44.5, 1657, 180 }, + [258] = { 41.4, 41.6, 1657, 180 }, + [259] = { 67.1, 14.6, 1657, 0 }, + [260] = { 67, 14.1, 1657, 0 }, + [261] = { 5.8, 93.4, 2100, 180 }, + [262] = { 9.9, 92.3, 2100, 180 }, + [263] = { 16.4, 69.1, 5602, 180 }, + [264] = { 16.5, 68.6, 5602, 180 }, + [265] = { 16.7, 68.4, 5602, 180 }, + }, + }, + [180406] = { + ["coords"] = { + [1] = { 47, 52.8, 1, 180 }, + [2] = { 46, 51.8, 1, 180 }, + [3] = { 46.8, 51.7, 1, 180 }, + [4] = { 96.4, 46.1, 1, 180 }, + [5] = { 96.3, 45.7, 1, 180 }, + [6] = { 3.6, 47.4, 3, 180 }, + [7] = { 2.6, 46.7, 3, 180 }, + [8] = { 3.9, 44.4, 3, 180 }, + [9] = { 45.4, 55.9, 8, 600 }, + [10] = { 45.6, 55.5, 8, 600 }, + [11] = { 43.5, 55.3, 8, 600 }, + [12] = { 46.7, 51.7, 8, 600 }, + [13] = { 44.6, 49.6, 8, 600 }, + [14] = { 75.5, 49.5, 10, 180 }, + [15] = { 74.3, 49, 10, 180 }, + [16] = { 75.1, 48.1, 10, 180 }, + [17] = { 71.8, 47.6, 10, 180 }, + [18] = { 74.3, 47, 10, 180 }, + [19] = { 73.5, 46.9, 10, 180 }, + [20] = { 77.5, 46.8, 10, 180 }, + [21] = { 74.2, 45.7, 10, 180 }, + [22] = { 73.5, 45.4, 10, 180 }, + [23] = { 74.4, 45.2, 10, 180 }, + [24] = { 74.3, 44.9, 10, 180 }, + [25] = { 75.6, 44.9, 10, 180 }, + [26] = { 78.7, 44.6, 10, 180 }, + [27] = { 10.4, 61, 11, 180 }, + [28] = { 10.5, 60, 11, 180 }, + [29] = { 10.5, 59.9, 11, 180 }, + [30] = { 10.4, 55.5, 11, 180 }, + [31] = { 41.7, 67.1, 12, 180 }, + [32] = { 43.3, 66.7, 12, 180 }, + [33] = { 43.3, 66.4, 12, 180 }, + [34] = { 43.4, 66.4, 12, 180 }, + [35] = { 41.7, 66.1, 12, 180 }, + [36] = { 44.2, 66, 12, 180 }, + [37] = { 32.8, 49.5, 12, 180 }, + [38] = { 54.1, 43.9, 14, 180 }, + [39] = { 52.1, 43.4, 14, 180 }, + [40] = { 51.9, 41.9, 14, 180 }, + [41] = { 52, 41.1, 14, 180 }, + [42] = { 53.1, 41, 14, 180 }, + [43] = { 54, 40.6, 14, 180 }, + [44] = { 47.2, 6.5, 14, 180 }, + [45] = { 66.6, 45.6, 15, 180 }, + [46] = { 66.1, 45.5, 15, 180 }, + [47] = { 45.3, 58.7, 17, 180 }, + [48] = { 45, 58.3, 17, 180 }, + [49] = { 62, 39.4, 17, 180 }, + [50] = { 62.1, 39.2, 17, 180 }, + [51] = { 61.8, 39.1, 17, 180 }, + [52] = { 62.6, 38.5, 17, 180 }, + [53] = { 61.7, 38.3, 17, 180 }, + [54] = { 62.7, 37.4, 17, 180 }, + [55] = { 52.2, 32, 17, 180 }, + [56] = { 52, 30.2, 17, 180 }, + [57] = { 52.1, 30.2, 17, 180 }, + [58] = { 51.4, 30.2, 17, 180 }, + [59] = { 51.9, 30, 17, 180 }, + [60] = { 51.7, 29.8, 17, 180 }, + [61] = { 52.1, 29.8, 17, 180 }, + [62] = { 50.8, 29.2, 17, 180 }, + [63] = { 27.6, 77.7, 33, 180 }, + [64] = { 26.6, 76.3, 33, 180 }, + [65] = { 58.8, 88.8, 36, 180 }, + [66] = { 62.5, 83.4, 36, 180 }, + [67] = { 63, 82.8, 36, 180 }, + [68] = { 61.7, 82.5, 36, 180 }, + [69] = { 60.3, 82.4, 36, 180 }, + [70] = { 62.8, 82.3, 36, 180 }, + [71] = { 61.5, 81.4, 36, 180 }, + [72] = { 34.6, 49.1, 38, 180 }, + [73] = { 35.4, 48.8, 38, 180 }, + [74] = { 34.4, 48.3, 38, 180 }, + [75] = { 52.7, 53.8, 40, 180 }, + [76] = { 56.7, 52.5, 40, 180 }, + [77] = { 56.2, 47.2, 40, 180 }, + [78] = { 31.7, 57.4, 44, 180 }, + [79] = { 33.7, 49.3, 44, 180 }, + [80] = { 29.3, 46.3, 44, 180 }, + [81] = { 27.2, 46.1, 44, 180 }, + [82] = { 27.4, 44.1, 44, 180 }, + [83] = { 74.4, 37.9, 45, 180 }, + [84] = { 73.7, 34, 45, 180 }, + [85] = { 74.5, 33.9, 45, 180 }, + [86] = { 73.8, 32.3, 45, 180 }, + [87] = { 73.3, 30.4, 45, 180 }, + [88] = { 14.4, 41.8, 47, 0 }, + [89] = { 12.9, 41.7, 47, 0 }, + [90] = { 14, 41.4, 47, 0 }, + [91] = { 82.8, 38.7, 51, 180 }, + [92] = { 81.6, 37.9, 51, 180 }, + [93] = { 83.1, 35.3, 51, 180 }, + [94] = { 60.7, 59.4, 85, 180 }, + [95] = { 61.4, 59.1, 85, 180 }, + [96] = { 61.1, 58.3, 85, 180 }, + [97] = { 60.5, 53.1, 85, 180 }, + [98] = { 61.5, 53.1, 85, 180 }, + [99] = { 60, 52.5, 85, 180 }, + [100] = { 59.6, 52.2, 85, 180 }, + [101] = { 62, 52, 85, 180 }, + [102] = { 61.7, 52, 85, 180 }, + [103] = { 61.7, 51.3, 85, 180 }, + [104] = { 61.3, 50.7, 85, 180 }, + [105] = { 58.2, 50.6, 85, 180 }, + [106] = { 56.4, 60.4, 141, 180 }, + [107] = { 56, 58.7, 141, 180 }, + [108] = { 55.8, 57.2, 141, 180 }, + [109] = { 25.6, 56.1, 141, 180 }, + [110] = { 25.6, 55.1, 141, 180 }, + [111] = { 31.3, 50.3, 141, 0 }, + [112] = { 31.3, 50.2, 141, 0 }, + [113] = { 31, 49.5, 141, 0 }, + [114] = { 37.1, 44.6, 148, 180 }, + [115] = { 36.7, 44.1, 148, 180 }, + [116] = { 37.2, 43.7, 148, 180 }, + [117] = { 46.9, 60.5, 215, 180 }, + [118] = { 48.7, 59.4, 215, 180 }, + [119] = { 46.3, 58.8, 215, 180 }, + [120] = { 37.3, 29.7, 215, 180 }, + [121] = { 38.8, 29.5, 215, 180 }, + [122] = { 37.2, 28.6, 215, 180 }, + [123] = { 38.3, 27.5, 215, 180 }, + [124] = { 35.9, 23.1, 215, 180 }, + [125] = { 50.4, 60.6, 267, 180 }, + [126] = { 49.1, 59.3, 267, 180 }, + [127] = { 51, 59.2, 267, 180 }, + [128] = { 51.5, 59, 267, 180 }, + [129] = { 50.4, 58.4, 267, 180 }, + [130] = { 49.2, 57.2, 267, 180 }, + [131] = { 51.1, 56.7, 267, 180 }, + [132] = { 49.2, 56.1, 267, 180 }, + [133] = { 60.3, 26.1, 267, 180 }, + [134] = { 63.6, 21.4, 267, 180 }, + [135] = { 63.9, 20.9, 267, 180 }, + [136] = { 62.8, 20.6, 267, 180 }, + [137] = { 61.7, 20.5, 267, 180 }, + [138] = { 63.8, 20.5, 267, 180 }, + [139] = { 62.7, 19.6, 267, 180 }, + [140] = { 73.3, 63.6, 331, 180 }, + [141] = { 73.7, 60.9, 331, 180 }, + [142] = { 36.9, 50.5, 331, 180 }, + [143] = { 36.5, 50.3, 331, 180 }, + [144] = { 37.2, 49.2, 331, 180 }, + [145] = { 36.8, 49, 331, 180 }, + [146] = { 33.8, 47.9, 331, 180 }, + [147] = { 31.1, 43.7, 357, 0 }, + [148] = { 31.1, 43.7, 357, 180 }, + [149] = { 31.4, 43.1, 357, 0 }, + [150] = { 31.4, 43.1, 357, 180 }, + [151] = { 30.5, 43, 357, 0 }, + [152] = { 30.5, 43, 357, 180 }, + [153] = { 30.9, 42.5, 357, 0 }, + [154] = { 30.9, 42.5, 357, 180 }, + [155] = { 45.9, 51.4, 400, 180 }, + [156] = { 46, 51, 400, 180 }, + [157] = { 24.7, 68.8, 405, 180 }, + [158] = { 23.7, 67.9, 405, 180 }, + [159] = { 66.2, 8, 405, 180 }, + [160] = { 66.7, 7.8, 405, 180 }, + [161] = { 66.1, 7.7, 405, 180 }, + [162] = { 67, 7.2, 405, 180 }, + [163] = { 65.6, 6.5, 405, 180 }, + [164] = { 66.5, 6.1, 405, 180 }, + [165] = { 44.7, 80.5, 406, 180 }, + [166] = { 45.1, 80.4, 406, 180 }, + [167] = { 44.7, 80.3, 406, 180 }, + [168] = { 45.3, 80, 406, 180 }, + [169] = { 44.3, 79.4, 406, 180 }, + [170] = { 44.9, 79.1, 406, 180 }, + [171] = { 50, 63.1, 406, 180 }, + [172] = { 50.3, 63.1, 406, 180 }, + [173] = { 52, 29, 440, 180 }, + [174] = { 52.2, 28.6, 440, 180 }, + [175] = { 52.2, 28.5, 440, 180 }, + [176] = { 52.8, 28.4, 440, 180 }, + [177] = { 52.4, 28.2, 440, 180 }, + [178] = { 50.6, 28.1, 440, 180 }, + [179] = { 52.4, 28, 440, 180 }, + [180] = { 51.7, 28, 440, 180 }, + [181] = { 51, 27.5, 440, 180 }, + [182] = { 51.4, 27.5, 440, 180 }, + [183] = { 52, 27.5, 440, 180 }, + [184] = { 51.7, 27, 440, 180 }, + [185] = { 50.3, 26.8, 440, 180 }, + [186] = { 52.4, 26.8, 440, 180 }, + [187] = { 61.2, 39, 618, 180 }, + [188] = { 61.7, 39, 618, 180 }, + [189] = { 62.1, 38.4, 618, 180 }, + [190] = { 60.6, 38.4, 618, 180 }, + [191] = { 61.4, 38.1, 618, 180 }, + [192] = { 61.1, 37.6, 618, 180 }, + [193] = { 61, 37.4, 618, 180 }, + [194] = { 61.7, 37.1, 618, 180 }, + [195] = { 51.5, 38.3, 1377, 180 }, + [196] = { 69.5, 54.7, 1497, 180 }, + [197] = { 67.2, 50.2, 1497, 180 }, + [198] = { 64.6, 50.1, 1497, 180 }, + [199] = { 69.2, 48, 1497, 180 }, + [200] = { 62.3, 47, 1497, 180 }, + [201] = { 67.3, 46, 1497, 180 }, + [202] = { 61.9, 44.1, 1497, 180 }, + [203] = { 58, 43.5, 1497, 180 }, + [204] = { 70, 42.4, 1497, 180 }, + [205] = { 64.7, 42.1, 1497, 180 }, + [206] = { 62.3, 41.1, 1497, 180 }, + [207] = { 69.2, 40.2, 1497, 180 }, + [208] = { 63.9, 38.6, 1497, 180 }, + [209] = { 67.2, 38, 1497, 180 }, + [210] = { 69.8, 37.6, 1497, 180 }, + [211] = { 63.9, 78.7, 1519, 180 }, + [212] = { 61.8, 76.2, 1519, 180 }, + [213] = { 61.2, 75, 1519, 180 }, + [214] = { 63.6, 73.8, 1519, 180 }, + [215] = { 63.5, 69.8, 1519, 180 }, + [216] = { 61.5, 69, 1519, 180 }, + [217] = { 31.8, 76.8, 1537, 180 }, + [218] = { 33.6, 75.6, 1537, 180 }, + [219] = { 26.3, 72, 1537, 180 }, + [220] = { 25.3, 71.6, 1537, 180 }, + [221] = { 36.1, 70.1, 1537, 180 }, + [222] = { 28.4, 68.4, 1537, 180 }, + [223] = { 23.8, 61.6, 1537, 180 }, + [224] = { 31, 59.3, 1537, 180 }, + [225] = { 36.1, 58.2, 1537, 180 }, + [226] = { 20.7, 51.8, 1537, 180 }, + [227] = { 20.3, 50.6, 1537, 180 }, + [228] = { 18.6, 50.5, 1537, 180 }, + [229] = { 55.6, 74.2, 1637, 180 }, + [230] = { 50.8, 70.4, 1637, 180 }, + [231] = { 50.1, 67.7, 1637, 180 }, + [232] = { 49.6, 66.3, 1637, 180 }, + [233] = { 53.6, 65.6, 1637, 180 }, + [234] = { 47.8, 65, 1637, 180 }, + [235] = { 56.7, 63.9, 1637, 180 }, + [236] = { 37, 63.3, 1638, 180 }, + [237] = { 44.2, 62.1, 1638, 180 }, + [238] = { 36.5, 57.7, 1638, 180 }, + [239] = { 41.6, 52.6, 1638, 180 }, + [240] = { 30.2, 30.8, 1638, 180 }, + [241] = { 40.6, 44.1, 1657, 180 }, + [242] = { 40.1, 39.4, 1657, 180 }, + [243] = { 67.9, 16, 1657, 0 }, + [244] = { 67.7, 15.8, 1657, 0 }, + [245] = { 66.2, 12.2, 1657, 0 }, + [246] = { 10.2, 93.4, 2100, 180 }, + [247] = { 5.1, 88.4, 2100, 180 }, + [248] = { 16.3, 69.4, 5602, 180 }, + [249] = { 16.7, 69.2, 5602, 180 }, + [250] = { 16.2, 69, 5602, 180 }, + }, + }, + [180407] = { + ["coords"] = { + [1] = { 46, 51.6, 1, 180 }, + [2] = { 45.9, 48.7, 1, 180 }, + [3] = { 53.4, 34.8, 1, 180 }, + [4] = { 6.2, 47.3, 3, 180 }, + [5] = { 4, 46.5, 3, 180 }, + [6] = { 2.6, 46.2, 3, 180 }, + [7] = { 47.7, 58.6, 8, 600 }, + [8] = { 45, 55.8, 8, 600 }, + [9] = { 45.5, 55.6, 8, 600 }, + [10] = { 45, 55.3, 8, 600 }, + [11] = { 46.6, 51.1, 8, 600 }, + [12] = { 74.2, 50.4, 10, 180 }, + [13] = { 75.8, 48.2, 10, 180 }, + [14] = { 73.8, 47.9, 10, 180 }, + [15] = { 72.7, 47.3, 10, 180 }, + [16] = { 74.1, 46.9, 10, 180 }, + [17] = { 73.4, 46.5, 10, 180 }, + [18] = { 75.5, 45.6, 10, 180 }, + [19] = { 78.5, 45.5, 10, 180 }, + [20] = { 73.5, 44.4, 10, 180 }, + [21] = { 77.3, 43.8, 10, 180 }, + [22] = { 73.8, 43.5, 10, 180 }, + [23] = { 74.5, 41.6, 10, 180 }, + [24] = { 74.7, 41.6, 10, 180 }, + [25] = { 10.9, 61.4, 11, 180 }, + [26] = { 11, 60.2, 11, 180 }, + [27] = { 9.6, 59.8, 11, 180 }, + [28] = { 10.7, 55.7, 11, 180 }, + [29] = { 41.9, 67.2, 12, 180 }, + [30] = { 43.5, 66.8, 12, 180 }, + [31] = { 43.9, 66.5, 12, 180 }, + [32] = { 43.3, 66.2, 12, 180 }, + [33] = { 52.2, 44.4, 14, 180 }, + [34] = { 51.9, 43.3, 14, 180 }, + [35] = { 53.2, 42.5, 14, 180 }, + [36] = { 51.8, 41.9, 14, 180 }, + [37] = { 54.3, 40.8, 14, 180 }, + [38] = { 52, 40.3, 14, 180 }, + [39] = { 45.7, 11.9, 14, 180 }, + [40] = { 45.9, 6.5, 14, 180 }, + [41] = { 65.8, 46, 15, 180 }, + [42] = { 66.3, 45.5, 15, 180 }, + [43] = { 44.5, 59.2, 17, 180 }, + [44] = { 45.4, 58.8, 17, 180 }, + [45] = { 62.2, 39.4, 17, 180 }, + [46] = { 62.1, 39.4, 17, 180 }, + [47] = { 62.1, 39.2, 17, 180 }, + [48] = { 62, 39.2, 17, 180 }, + [49] = { 62, 38.7, 17, 180 }, + [50] = { 63, 38, 17, 180 }, + [51] = { 51.9, 32.1, 17, 180 }, + [52] = { 52.3, 31.1, 17, 180 }, + [53] = { 52, 30.2, 17, 180 }, + [54] = { 52.2, 30.1, 17, 180 }, + [55] = { 51.6, 29.9, 17, 180 }, + [56] = { 52, 29.7, 17, 180 }, + [57] = { 52.3, 29.3, 17, 180 }, + [58] = { 27.2, 77.8, 33, 180 }, + [59] = { 59.9, 89.3, 36, 180 }, + [60] = { 60.5, 89.3, 36, 180 }, + [61] = { 62.8, 83.3, 36, 180 }, + [62] = { 62, 83.2, 36, 180 }, + [63] = { 61.9, 82.8, 36, 180 }, + [64] = { 61.9, 82.5, 36, 180 }, + [65] = { 60.1, 82.4, 36, 180 }, + [66] = { 62, 82.2, 36, 180 }, + [67] = { 62.5, 82.2, 36, 180 }, + [68] = { 33.5, 51.6, 38, 180 }, + [69] = { 35.4, 47.6, 38, 180 }, + [70] = { 34.9, 47.5, 38, 180 }, + [71] = { 52.7, 53.3, 40, 180 }, + [72] = { 56.3, 47.9, 40, 180 }, + [73] = { 56.3, 46.6, 40, 180 }, + [74] = { 33.3, 57.6, 44, 180 }, + [75] = { 26.3, 45.5, 44, 180 }, + [76] = { 27, 44.1, 44, 180 }, + [77] = { 26.6, 43.2, 44, 180 }, + [78] = { 74.7, 37.9, 45, 180 }, + [79] = { 72.4, 34, 45, 180 }, + [80] = { 73.9, 33, 45, 180 }, + [81] = { 74.6, 32.9, 45, 180 }, + [82] = { 14.2, 44.9, 47, 0 }, + [83] = { 13.9, 42.3, 47, 0 }, + [84] = { 13, 42.3, 47, 0 }, + [85] = { 14.3, 41.2, 47, 0 }, + [86] = { 83.2, 37.7, 51, 180 }, + [87] = { 81.6, 37.4, 51, 180 }, + [88] = { 60.8, 58.9, 85, 180 }, + [89] = { 61.5, 58.9, 85, 180 }, + [90] = { 60.9, 58.2, 85, 180 }, + [91] = { 62, 52.7, 85, 180 }, + [92] = { 61.4, 52.6, 85, 180 }, + [93] = { 60.2, 52.4, 85, 180 }, + [94] = { 61.7, 52.4, 85, 180 }, + [95] = { 59.4, 52, 85, 180 }, + [96] = { 58.4, 50.6, 85, 180 }, + [97] = { 59.4, 46.5, 85, 0 }, + [98] = { 57.2, 61.1, 141, 180 }, + [99] = { 56.6, 59.5, 141, 0 }, + [100] = { 56.6, 59.5, 141, 180 }, + [101] = { 55.9, 58.7, 141, 180 }, + [102] = { 55.8, 57.4, 141, 180 }, + [103] = { 25.2, 55.5, 141, 180 }, + [104] = { 25.8, 55.4, 141, 180 }, + [105] = { 31.5, 50.6, 141, 0 }, + [106] = { 36.9, 44.8, 148, 180 }, + [107] = { 37.1, 44.4, 148, 180 }, + [108] = { 36.8, 44.1, 148, 180 }, + [109] = { 36.4, 44, 148, 180 }, + [110] = { 37.2, 43.5, 148, 180 }, + [111] = { 46.5, 61.3, 215, 180 }, + [112] = { 48.3, 59.2, 215, 180 }, + [113] = { 46.4, 58.6, 215, 180 }, + [114] = { 36.9, 29.7, 215, 180 }, + [115] = { 38.3, 29.4, 215, 180 }, + [116] = { 39.1, 28.9, 215, 180 }, + [117] = { 37.6, 27.1, 215, 180 }, + [118] = { 36, 22.9, 215, 180 }, + [119] = { 50, 60.6, 267, 180 }, + [120] = { 50.6, 59.1, 267, 180 }, + [121] = { 50.7, 59, 267, 180 }, + [122] = { 49.1, 58.9, 267, 180 }, + [123] = { 51.3, 58.7, 267, 180 }, + [124] = { 50.8, 58.2, 267, 180 }, + [125] = { 48.8, 54.9, 267, 180 }, + [126] = { 49.6, 51.6, 267, 180 }, + [127] = { 61.3, 26.6, 267, 180 }, + [128] = { 61.8, 26.6, 267, 180 }, + [129] = { 63.8, 21.3, 267, 180 }, + [130] = { 63.1, 21.2, 267, 180 }, + [131] = { 63, 20.9, 267, 180 }, + [132] = { 63, 20.6, 267, 180 }, + [133] = { 61.5, 20.5, 267, 180 }, + [134] = { 63.1, 20.4, 267, 180 }, + [135] = { 63.6, 20.4, 267, 180 }, + [136] = { 99.6, 4, 267, 0 }, + [137] = { 99.3, 0.8, 267, 0 }, + [138] = { 98.2, 0.8, 267, 0 }, + [139] = { 73.7, 63.6, 331, 180 }, + [140] = { 73.7, 60.9, 331, 180 }, + [141] = { 73.7, 60.7, 331, 180 }, + [142] = { 37.5, 53.7, 331, 180 }, + [143] = { 37.2, 50.5, 331, 180 }, + [144] = { 36.3, 50, 331, 180 }, + [145] = { 36.7, 50, 331, 180 }, + [146] = { 36.5, 49.2, 331, 180 }, + [147] = { 30.8, 43.6, 357, 0 }, + [148] = { 30.8, 43.6, 357, 180 }, + [149] = { 31.4, 43.5, 357, 0 }, + [150] = { 31.4, 43.5, 357, 180 }, + [151] = { 30.5, 43.5, 357, 0 }, + [152] = { 30.5, 43.5, 357, 180 }, + [153] = { 45.9, 50.9, 400, 180 }, + [154] = { 45.2, 49, 400, 180 }, + [155] = { 24.5, 68.8, 405, 180 }, + [156] = { 24.4, 67.6, 405, 180 }, + [157] = { 66.2, 8, 405, 180 }, + [158] = { 66.7, 7.8, 405, 180 }, + [159] = { 66.7, 7.5, 405, 180 }, + [160] = { 65.9, 6.3, 405, 180 }, + [161] = { 66.8, 6.1, 405, 180 }, + [162] = { 44.7, 80.5, 406, 180 }, + [163] = { 45.1, 80.4, 406, 180 }, + [164] = { 45.1, 80.1, 406, 180 }, + [165] = { 44.5, 79.2, 406, 180 }, + [166] = { 45.2, 79.1, 406, 180 }, + [167] = { 50.6, 63, 406, 180 }, + [168] = { 50.4, 62.9, 406, 180 }, + [169] = { 52.1, 29.3, 440, 180 }, + [170] = { 51.9, 29, 440, 180 }, + [171] = { 52.2, 28.6, 440, 180 }, + [172] = { 52.4, 28, 440, 180 }, + [173] = { 51.9, 27.9, 440, 180 }, + [174] = { 52.9, 27.9, 440, 180 }, + [175] = { 52.4, 27.9, 440, 180 }, + [176] = { 51.4, 27.7, 440, 180 }, + [177] = { 50.1, 27.6, 440, 180 }, + [178] = { 52, 27.2, 440, 180 }, + [179] = { 51.5, 27.1, 440, 180 }, + [180] = { 60.9, 38.9, 618, 180 }, + [181] = { 61.4, 38.8, 618, 180 }, + [182] = { 61.3, 38.7, 618, 180 }, + [183] = { 61.5, 38.2, 618, 180 }, + [184] = { 62.1, 38.1, 618, 180 }, + [185] = { 61.3, 37.5, 618, 180 }, + [186] = { 61.3, 36.6, 618, 180 }, + [187] = { 51.5, 38.4, 1377, 180 }, + [188] = { 51.7, 38.3, 1377, 180 }, + [189] = { 68, 49.6, 1497, 180 }, + [190] = { 58.9, 49.2, 1497, 180 }, + [191] = { 62.7, 48, 1497, 180 }, + [192] = { 71.1, 47.3, 1497, 180 }, + [193] = { 69.6, 47.1, 1497, 180 }, + [194] = { 66.6, 45, 1497, 180 }, + [195] = { 73.9, 44.6, 1497, 180 }, + [196] = { 66.2, 44.4, 1497, 180 }, + [197] = { 65.8, 44.4, 1497, 180 }, + [198] = { 66.2, 43.8, 1497, 180 }, + [199] = { 65.8, 43.8, 1497, 180 }, + [200] = { 70, 42.6, 1497, 180 }, + [201] = { 61.9, 42.2, 1497, 180 }, + [202] = { 69.7, 41.2, 1497, 180 }, + [203] = { 63.3, 39.3, 1497, 180 }, + [204] = { 68.1, 38.6, 1497, 180 }, + [205] = { 67.3, 38, 1497, 180 }, + [206] = { 62.9, 80.9, 1519, 180 }, + [207] = { 64.9, 77.1, 1519, 180 }, + [208] = { 62.3, 75.8, 1519, 180 }, + [209] = { 66.3, 74.8, 1519, 180 }, + [210] = { 59.9, 74.7, 1519, 180 }, + [211] = { 64.2, 74.5, 1519, 180 }, + [212] = { 62.3, 68.4, 1519, 180 }, + [213] = { 14.4, 85.1, 1537, 180 }, + [214] = { 32.8, 74.7, 1537, 180 }, + [215] = { 27.8, 71.2, 1537, 180 }, + [216] = { 25.4, 70.4, 1537, 180 }, + [217] = { 35.7, 69.6, 1537, 180 }, + [218] = { 34.4, 66.9, 1537, 180 }, + [219] = { 33.5, 64.4, 1537, 180 }, + [220] = { 25.7, 62, 1537, 180 }, + [221] = { 37.1, 60.1, 1537, 180 }, + [222] = { 29.9, 59.2, 1537, 180 }, + [223] = { 20.3, 51.2, 1537, 180 }, + [224] = { 18.6, 50.5, 1537, 180 }, + [225] = { 49.7, 94.5, 1637, 180 }, + [226] = { 50.4, 74.2, 1637, 180 }, + [227] = { 47.8, 69.9, 1637, 180 }, + [228] = { 54.3, 69.4, 1637, 180 }, + [229] = { 51, 67.8, 1637, 180 }, + [230] = { 48.8, 67.6, 1637, 180 }, + [231] = { 54.8, 65.5, 1637, 180 }, + [232] = { 56.1, 61.7, 1637, 180 }, + [233] = { 35.1, 63.3, 1638, 180 }, + [234] = { 41.7, 61.9, 1638, 180 }, + [235] = { 45.6, 59.4, 1638, 180 }, + [236] = { 38.6, 50.3, 1638, 180 }, + [237] = { 30.5, 29.6, 1638, 180 }, + [238] = { 38.5, 41.4, 1657, 180 }, + [239] = { 41.5, 40.8, 1657, 180 }, + [240] = { 68.7, 17.8, 1657, 0 }, + [241] = { 9.3, 93.5, 2100, 180 }, + [242] = { 8.6, 87.2, 2100, 180 }, + [243] = { 15.7, 70.7, 5602, 180 }, + [244] = { 16.7, 68.6, 5602, 180 }, + [245] = { 16.4, 68.6, 5602, 180 }, + }, + }, + [180408] = "_", + [180410] = { + ["coords"] = { + [1] = { 47.1, 52.5, 1, 180 }, + [2] = { 75.1, 49.5, 10, 180 }, + [3] = { 75, 49.1, 10, 180 }, + [4] = { 75, 48.8, 10, 180 }, + [5] = { 77.2, 48.5, 10, 180 }, + [6] = { 75, 48.4, 10, 180 }, + [7] = { 71.9, 48.4, 10, 180 }, + [8] = { 72.3, 48.3, 10, 180 }, + [9] = { 72.6, 47.9, 10, 180 }, + [10] = { 73.6, 45.6, 10, 180 }, + [11] = { 73.8, 45.6, 10, 180 }, + [12] = { 76, 45.6, 10, 180 }, + [13] = { 74.4, 45.3, 10, 180 }, + [14] = { 75.9, 45.1, 10, 180 }, + [15] = { 74.1, 44.9, 10, 180 }, + [16] = { 10.9, 60.1, 11, 180 }, + [17] = { 43.2, 66.4, 12, 180 }, + [18] = { 43.5, 66.1, 12, 180 }, + [19] = { 43.7, 66, 12, 180 }, + [20] = { 66.2, 45.7, 15, 180 }, + [21] = { 66.4, 45.4, 15, 180 }, + [22] = { 66.8, 45, 15, 180 }, + [23] = { 62.1, 39.5, 17, 180 }, + [24] = { 62.7, 36.2, 17, 180 }, + [25] = { 60.4, 80.9, 36, 180 }, + [26] = { 52.2, 53.4, 40, 180 }, + [27] = { 26.4, 45.7, 44, 180 }, + [28] = { 26.7, 44.8, 44, 180 }, + [29] = { 26.4, 44.8, 44, 180 }, + [30] = { 62, 52.8, 85, 180 }, + [31] = { 61.6, 52.7, 85, 180 }, + [32] = { 61.8, 52.5, 85, 180 }, + [33] = { 61.8, 52.2, 85, 180 }, + [34] = { 59.4, 52.1, 85, 180 }, + [35] = { 61.9, 51.6, 85, 180 }, + [36] = { 61.3, 50.6, 85, 180 }, + [37] = { 55.8, 59.9, 141, 180 }, + [38] = { 55.2, 57.1, 141, 180 }, + [39] = { 36.6, 44.1, 148, 180 }, + [40] = { 51, 59, 267, 180 }, + [41] = { 50.7, 58.6, 267, 180 }, + [42] = { 50.7, 58.3, 267, 180 }, + [43] = { 51.8, 58.3, 267, 180 }, + [44] = { 51, 56.9, 267, 180 }, + [45] = { 49.2, 55.6, 267, 180 }, + [46] = { 49.4, 55.2, 267, 180 }, + [47] = { 49.2, 55, 267, 180 }, + [48] = { 61.7, 19.3, 267, 180 }, + [49] = { 36.8, 49.4, 331, 180 }, + [50] = { 30.9, 42.9, 357, 0 }, + [51] = { 30.9, 42.9, 357, 180 }, + [52] = { 66.5, 7.4, 405, 180 }, + [53] = { 45, 80.1, 406, 180 }, + [54] = { 51.6, 39.3, 1377, 180 }, + [55] = { 52.2, 38.8, 1377, 180 }, + [56] = { 70.2, 49.6, 1497, 180 }, + [57] = { 67.8, 36.6, 1497, 180 }, + [58] = { 64, 75.7, 1519, 180 }, + [59] = { 60.1, 74.6, 1519, 180 }, + [60] = { 60.2, 74.4, 1519, 180 }, + [61] = { 60.4, 74.3, 1519, 180 }, + [62] = { 61.3, 73.1, 1519, 180 }, + }, + }, + [180411] = { + ["coords"] = { + [1] = { 3.9, 47.1, 3, 180 }, + [2] = { 75.3, 49.9, 10, 180 }, + [3] = { 74.1, 48.1, 10, 180 }, + [4] = { 75.5, 46, 10, 180 }, + [5] = { 74.3, 45.8, 10, 180 }, + [6] = { 76.6, 45.8, 10, 180 }, + [7] = { 75.4, 45, 10, 180 }, + [8] = { 73.7, 44.5, 10, 180 }, + [9] = { 10.5, 61, 11, 180 }, + [10] = { 10.5, 59.9, 11, 180 }, + [11] = { 44, 66.4, 12, 180 }, + [12] = { 43.9, 66.4, 12, 180 }, + [13] = { 43, 66.2, 12, 180 }, + [14] = { 53.2, 42.6, 14, 180 }, + [15] = { 51.6, 42.1, 14, 180 }, + [16] = { 51.2, 41.9, 14, 180 }, + [17] = { 51.8, 41.6, 14, 180 }, + [18] = { 51.2, 41.3, 14, 180 }, + [19] = { 51.5, 41.1, 14, 180 }, + [20] = { 66, 45.5, 15, 180 }, + [21] = { 66.8, 45.5, 15, 180 }, + [22] = { 67.1, 45.1, 15, 180 }, + [23] = { 44.8, 58.4, 17, 180 }, + [24] = { 61.9, 39.1, 17, 180 }, + [25] = { 51.9, 30.1, 17, 180 }, + [26] = { 52.1, 30, 17, 180 }, + [27] = { 51.8, 29.8, 17, 180 }, + [28] = { 52.1, 29.7, 17, 180 }, + [29] = { 52, 29.6, 17, 180 }, + [30] = { 27.2, 77.4, 33, 180 }, + [31] = { 27.4, 76.5, 33, 180 }, + [32] = { 60.2, 89.3, 36, 180 }, + [33] = { 61.6, 81.8, 36, 180 }, + [34] = { 61.3, 81.6, 36, 180 }, + [35] = { 61, 81.3, 36, 180 }, + [36] = { 52.6, 53.5, 40, 180 }, + [37] = { 32.2, 48, 44, 180 }, + [38] = { 27.2, 46.2, 44, 180 }, + [39] = { 74.6, 32.6, 45, 180 }, + [40] = { 73.7, 32.5, 45, 180 }, + [41] = { 74.6, 31.6, 45, 180 }, + [42] = { 73.7, 31.6, 45, 180 }, + [43] = { 14.2, 45.2, 47, 0 }, + [44] = { 13.6, 41.6, 47, 0 }, + [45] = { 83.1, 38.3, 51, 180 }, + [46] = { 61.8, 53.1, 85, 180 }, + [47] = { 61.5, 52.3, 85, 180 }, + [48] = { 62, 52, 85, 180 }, + [49] = { 56.3, 60.7, 141, 180 }, + [50] = { 55.9, 58.4, 141, 180 }, + [51] = { 56, 57.5, 141, 180 }, + [52] = { 25.6, 55.9, 141, 180 }, + [53] = { 25.6, 55.7, 141, 180 }, + [54] = { 25.5, 55.2, 141, 180 }, + [55] = { 36.8, 44.6, 148, 180 }, + [56] = { 36.9, 44.1, 148, 180 }, + [57] = { 37, 43.5, 148, 180 }, + [58] = { 46.6, 61.2, 215, 180 }, + [59] = { 39.2, 30.1, 215, 180 }, + [60] = { 50.5, 59.1, 267, 180 }, + [61] = { 49.5, 55.6, 267, 180 }, + [62] = { 61.6, 26.6, 267, 180 }, + [63] = { 62.8, 20, 267, 180 }, + [64] = { 62.5, 19.9, 267, 180 }, + [65] = { 62.2, 19.6, 267, 180 }, + [66] = { 99.6, 4.4, 267, 0 }, + [67] = { 73.9, 61.3, 331, 180 }, + [68] = { 73.6, 60.6, 331, 180 }, + [69] = { 37.2, 52.9, 331, 180 }, + [70] = { 37.5, 50.2, 331, 180 }, + [71] = { 36.2, 49.5, 331, 180 }, + [72] = { 37.1, 48.8, 331, 180 }, + [73] = { 34.2, 48.5, 331, 180 }, + [74] = { 31.5, 43.3, 357, 0 }, + [75] = { 31.5, 43.3, 357, 180 }, + [76] = { 30.4, 43.3, 357, 0 }, + [77] = { 30.4, 43.3, 357, 180 }, + [78] = { 31, 42.3, 357, 0 }, + [79] = { 31, 42.3, 357, 180 }, + [80] = { 46.1, 51.5, 400, 180 }, + [81] = { 24.7, 68.8, 405, 180 }, + [82] = { 66.5, 8.3, 405, 180 }, + [83] = { 65.4, 7.2, 405, 180 }, + [84] = { 65.8, 7.1, 405, 180 }, + [85] = { 66.8, 6.7, 405, 180 }, + [86] = { 67.2, 6.6, 405, 180 }, + [87] = { 45, 80.8, 406, 180 }, + [88] = { 44.2, 79.9, 406, 180 }, + [89] = { 44.4, 79.8, 406, 180 }, + [90] = { 45.2, 79.5, 406, 180 }, + [91] = { 45.5, 79.4, 406, 180 }, + [92] = { 50.6, 63, 406, 180 }, + [93] = { 50.4, 62.8, 406, 180 }, + [94] = { 51.2, 39.7, 1377, 180 }, + [95] = { 52.6, 38.7, 1377, 180 }, + [96] = { 51.4, 37.7, 1377, 180 }, + [97] = { 62.7, 48.8, 1497, 180 }, + [98] = { 67.6, 38.3, 1497, 180 }, + [99] = { 65, 77.3, 1519, 180 }, + [100] = { 65.9, 74.9, 1519, 180 }, + [101] = { 61, 74.2, 1519, 180 }, + [102] = { 64.2, 72.8, 1519, 180 }, + [103] = { 36.4, 59.5, 1537, 180 }, + [104] = { 20.9, 53.2, 1537, 180 }, + [105] = { 54.5, 70.3, 1637, 180 }, + [106] = { 49.4, 68.9, 1637, 180 }, + [107] = { 53.4, 64.8, 1637, 180 }, + [108] = { 46, 65.2, 1638, 180 }, + [109] = { 40.5, 42.9, 1657, 180 }, + [110] = { 40.6, 42.2, 1657, 180 }, + [111] = { 40, 39.6, 1657, 180 }, + [112] = { 10.3, 93.6, 2100, 180 }, + }, + }, + [180412] = { + ["coords"] = { + [1] = { 2.8, 46, 3, 180 }, + [2] = { 45.1, 56.7, 8, 600 }, + [3] = { 73.8, 44.3, 10, 180 }, + [4] = { 10.7, 60.9, 11, 180 }, + [5] = { 51.5, 41.6, 14, 180 }, + [6] = { 66.6, 45.3, 15, 180 }, + [7] = { 45.6, 59.1, 17, 180 }, + [8] = { 62.1, 39.4, 17, 180 }, + [9] = { 52, 29.9, 17, 180 }, + [10] = { 27.1, 77.3, 33, 180 }, + [11] = { 61.7, 80.6, 36, 180 }, + [12] = { 35.5, 48.5, 38, 180 }, + [13] = { 52.9, 53.7, 40, 180 }, + [14] = { 27.1, 44.9, 44, 180 }, + [15] = { 73.9, 32.5, 45, 180 }, + [16] = { 14.1, 41.5, 47, 0 }, + [17] = { 81.8, 37.1, 51, 180 }, + [18] = { 61.7, 52.1, 85, 180 }, + [19] = { 55.6, 59.8, 141, 180 }, + [20] = { 31.2, 50.3, 141, 0 }, + [21] = { 37, 44, 148, 180 }, + [22] = { 46.6, 61, 215, 180 }, + [23] = { 39.1, 30, 215, 180 }, + [24] = { 51.1, 59, 267, 180 }, + [25] = { 62.9, 19, 267, 180 }, + [26] = { 74, 60.6, 331, 180 }, + [27] = { 37, 49.3, 331, 180 }, + [28] = { 30.9, 43.5, 357, 0 }, + [29] = { 30.9, 43.5, 357, 180 }, + [30] = { 46.1, 51.5, 400, 180 }, + [31] = { 24.1, 68.3, 405, 180 }, + [32] = { 66.3, 6.6, 405, 180 }, + [33] = { 44.8, 79.5, 406, 180 }, + [34] = { 50.2, 63.5, 406, 180 }, + [35] = { 52.5, 27.9, 440, 180 }, + [36] = { 61.3, 38.9, 618, 180 }, + [37] = { 51.8, 39.2, 1377, 180 }, + [38] = { 67.8, 37.4, 1497, 180 }, + [39] = { 60.5, 75.3, 1519, 180 }, + [40] = { 18.3, 50.9, 1537, 180 }, + [41] = { 54.4, 68.6, 1637, 180 }, + [42] = { 45.6, 64.9, 1638, 180 }, + [43] = { 67.4, 16.1, 1657, 0 }, + [44] = { 6.9, 90.8, 2100, 180 }, + [45] = { 16.7, 69.1, 5602, 180 }, + }, + }, + [180415] = { + ["coords"] = { + [1] = { 10.5, 60.9, 11, 180 }, + [2] = { 10.5, 60.7, 11, 180 }, + [3] = { 10.7, 60.7, 11, 180 }, + [4] = { 10.6, 60.7, 11, 180 }, + [5] = { 10.6, 60.4, 11, 180 }, + [6] = { 10.7, 60.4, 11, 180 }, + [7] = { 51.5, 41.6, 14, 180 }, + [8] = { 60.2, 83.1, 36, 180 }, + [9] = { 60.3, 81.4, 36, 180 }, + [10] = { 13.7, 41.9, 47, 0 }, + [11] = { 13.7, 41.6, 47, 0 }, + [12] = { 62, 52.8, 85, 180 }, + [13] = { 61.7, 52.6, 85, 180 }, + [14] = { 61.9, 52.5, 85, 180 }, + [15] = { 61.5, 52.4, 85, 180 }, + [16] = { 49.4, 58.5, 267, 180 }, + [17] = { 51, 58.4, 267, 180 }, + [18] = { 49.3, 55.5, 267, 180 }, + [19] = { 48.9, 55.3, 267, 180 }, + [20] = { 48.9, 55.2, 267, 180 }, + [21] = { 61.5, 21.2, 267, 180 }, + [22] = { 61.6, 19.6, 267, 180 }, + [23] = { 69.6, 48.5, 1497, 180 }, + [24] = { 60.9, 40.9, 1497, 180 }, + [25] = { 61, 40.8, 1497, 180 }, + [26] = { 60.3, 40.7, 1497, 180 }, + [27] = { 68.3, 37.9, 1497, 180 }, + [28] = { 68.3, 35.6, 1497, 180 }, + [29] = { 50.7, 70.4, 1637, 180 }, + }, + }, + [180417] = { + ["coords"] = { + [1] = { 40.9, 88.8, 1377, 900 }, + [2] = { 68.1, 0.5, 3478, 900 }, + }, + }, + [180421] = { + ["coords"] = { + [1] = { 49.3, 88.1, 2597, 0 }, + [2] = { 50.2, 76.7, 2597, 0 }, + [3] = { 51.4, 60.1, 2597, 0 }, + [4] = { 44.7, 45.6, 2597, 0 }, + [5] = { 52.6, 43.9, 2597, 0 }, + [6] = { 51.5, 34.2, 2597, 0 }, + [7] = { 50.7, 31, 2597, 0 }, + [8] = { 44, 18.7, 2597, 0 }, + [9] = { 42.8, 15.8, 2597, 0 }, + [10] = { 49, 14.7, 2597, 0 }, + [11] = { 45.3, 14.4, 2597, 0 }, + }, + }, + [180422] = { + ["coords"] = { + [1] = { 49.3, 88.1, 2597, 0 }, + [2] = { 49.5, 84.5, 2597, 0 }, + [3] = { 48.3, 84.4, 2597, 0 }, + [4] = { 50.2, 76.7, 2597, 0 }, + [5] = { 50.6, 65.6, 2597, 0 }, + [6] = { 51.4, 60.1, 2597, 0 }, + [7] = { 48.2, 58.7, 2597, 0 }, + [8] = { 44.7, 45.6, 2597, 0 }, + [9] = { 51.5, 34.2, 2597, 0 }, + [10] = { 42.8, 15.8, 2597, 0 }, + [11] = { 49, 14.7, 2597, 0 }, + }, + }, + [180423] = { + ["coords"] = { + [1] = { 49.3, 88.1, 2597, 0 }, + [2] = { 49.5, 84.5, 2597, 0 }, + [3] = { 48.3, 84.4, 2597, 0 }, + [4] = { 50.2, 76.7, 2597, 0 }, + [5] = { 50.6, 65.6, 2597, 0 }, + [6] = { 51.4, 60.1, 2597, 0 }, + [7] = { 48.2, 58.7, 2597, 0 }, + [8] = { 44.7, 45.6, 2597, 0 }, + [9] = { 52.6, 43.9, 2597, 0 }, + [10] = { 51.5, 34.2, 2597, 0 }, + [11] = { 50.7, 31, 2597, 0 }, + [12] = { 44, 18.7, 2597, 0 }, + [13] = { 42.8, 15.8, 2597, 0 }, + [14] = { 49, 14.7, 2597, 0 }, + [15] = { 45.3, 14.4, 2597, 0 }, + }, + }, + [180424] = { + ["coords"] = { + [1] = { 55, 69.5, 2597, 0 }, + [2] = { 53.7, 10.8, 2597, 60 }, + }, + }, + [180425] = { + ["coords"] = { + [1] = { 47.3, 52.5, 1, 180 }, + [2] = { 47.5, 52.1, 1, 180 }, + [3] = { 2.7, 45.8, 3, 180 }, + [4] = { 75.5, 49.4, 10, 180 }, + [5] = { 75.2, 49.1, 10, 180 }, + [6] = { 75.5, 49.1, 10, 180 }, + [7] = { 72.4, 47.4, 10, 180 }, + [8] = { 71.8, 46.7, 10, 180 }, + [9] = { 71.9, 46.7, 10, 180 }, + [10] = { 71.7, 46.6, 10, 180 }, + [11] = { 71.9, 46.6, 10, 180 }, + [12] = { 72, 46.5, 10, 180 }, + [13] = { 72.1, 46.5, 10, 180 }, + [14] = { 72.2, 46.5, 10, 180 }, + [15] = { 76.2, 45.7, 10, 180 }, + [16] = { 74.4, 45.5, 10, 180 }, + [17] = { 74, 45.5, 10, 180 }, + [18] = { 75.8, 44.8, 10, 180 }, + [19] = { 79, 44.6, 10, 180 }, + [20] = { 78.8, 44.4, 10, 180 }, + [21] = { 10.8, 61.7, 11, 180 }, + [22] = { 10.8, 61.3, 11, 180 }, + [23] = { 10.5, 60.9, 11, 180 }, + [24] = { 10.7, 60.7, 11, 180 }, + [25] = { 10.6, 60.7, 11, 180 }, + [26] = { 10.5, 60.7, 11, 180 }, + [27] = { 10.9, 60.6, 11, 180 }, + [28] = { 10.9, 60.4, 11, 180 }, + [29] = { 10.7, 60.3, 11, 180 }, + [30] = { 10.6, 60.3, 11, 180 }, + [31] = { 10.7, 60.1, 11, 180 }, + [32] = { 43.5, 66.5, 12, 180 }, + [33] = { 43.1, 66.3, 12, 180 }, + [34] = { 43.6, 66.2, 12, 180 }, + [35] = { 43.2, 66, 12, 180 }, + [36] = { 43.4, 66, 12, 180 }, + [37] = { 51.5, 41.6, 14, 180 }, + [38] = { 66.1, 45.6, 15, 180 }, + [39] = { 66.5, 45.5, 15, 180 }, + [40] = { 66.4, 45.2, 15, 180 }, + [41] = { 66.3, 45.1, 15, 180 }, + [42] = { 51.9, 30, 17, 25 }, + [43] = { 52.1, 30, 17, 25 }, + [44] = { 27.1, 77.7, 33, 180 }, + [45] = { 27.3, 77.6, 33, 180 }, + [46] = { 27.2, 77.6, 33, 180 }, + [47] = { 27.3, 77.5, 33, 180 }, + [48] = { 27.2, 77.5, 33, 180 }, + [49] = { 27.2, 77.4, 33, 180 }, + [50] = { 26.9, 77.3, 33, 180 }, + [51] = { 27, 77.3, 33, 180 }, + [52] = { 27.1, 77.2, 33, 180 }, + [53] = { 60.2, 83.1, 36, 180 }, + [54] = { 61.4, 81.5, 36, 180 }, + [55] = { 61.2, 81.4, 36, 180 }, + [56] = { 60.3, 81.4, 36, 180 }, + [57] = { 34.8, 49.2, 38, 180 }, + [58] = { 35.2, 48.9, 38, 180 }, + [59] = { 34.9, 48.7, 38, 180 }, + [60] = { 35.5, 48.7, 38, 180 }, + [61] = { 27.2, 44.7, 44, 180 }, + [62] = { 27.2, 44.6, 44, 180 }, + [63] = { 27.2, 44.2, 44, 180 }, + [64] = { 74.1, 32.6, 45, 180 }, + [65] = { 74.4, 32.4, 45, 180 }, + [66] = { 74.6, 32.4, 45, 180 }, + [67] = { 13.1, 42.1, 47, 0 }, + [68] = { 13.7, 41.9, 47, 0 }, + [69] = { 13, 41.8, 47, 0 }, + [70] = { 13.2, 41.7, 47, 0 }, + [71] = { 14.3, 41.7, 47, 0 }, + [72] = { 13.6, 41.6, 47, 0 }, + [73] = { 14.1, 41.4, 47, 0 }, + [74] = { 14.2, 41.4, 47, 0 }, + [75] = { 14.3, 41.4, 47, 0 }, + [76] = { 81.7, 36.9, 51, 180 }, + [77] = { 62, 52.8, 85, 180 }, + [78] = { 61.9, 52.5, 85, 180 }, + [79] = { 61.7, 52.4, 85, 180 }, + [80] = { 61.7, 51.8, 85, 180 }, + [81] = { 61.8, 51.4, 85, 180 }, + [82] = { 50.7, 59.3, 267, 180 }, + [83] = { 51, 58.3, 267, 180 }, + [84] = { 50.7, 57.1, 267, 180 }, + [85] = { 48.9, 55.3, 267, 180 }, + [86] = { 49.2, 55.3, 267, 180 }, + [87] = { 48.9, 55.2, 267, 180 }, + [88] = { 61.5, 21.2, 267, 180 }, + [89] = { 61.6, 21.2, 267, 180 }, + [90] = { 62.5, 19.7, 267, 180 }, + [91] = { 62.4, 19.6, 267, 180 }, + [92] = { 61.6, 19.6, 267, 180 }, + [93] = { 98.3, 0.6, 267, 0 }, + [94] = { 74, 60.6, 331, 180 }, + [95] = { 74.2, 60.5, 331, 180 }, + [96] = { 50.1, 63.8, 406, 180 }, + [97] = { 52.6, 27.9, 440, 180 }, + [98] = { 61.4, 39, 618, 180 }, + [99] = { 61.4, 38.9, 618, 180 }, + [100] = { 69.5, 48.5, 1497, 180 }, + [101] = { 69.5, 44.7, 1497, 180 }, + [102] = { 61, 40.9, 1497, 180 }, + [103] = { 60.6, 40.2, 1497, 180 }, + [104] = { 68.3, 37.7, 1497, 180 }, + [105] = { 60, 75.1, 1519, 180 }, + [106] = { 61.8, 74.9, 1519, 180 }, + [107] = { 61.7, 74.8, 1519, 180 }, + [108] = { 61.9, 74.8, 1519, 180 }, + [109] = { 62, 74.8, 1519, 180 }, + [110] = { 61.8, 74.7, 1519, 180 }, + [111] = { 61.6, 74.7, 1519, 180 }, + [112] = { 61.7, 74.7, 1519, 180 }, + [113] = { 62, 74.7, 1519, 180 }, + [114] = { 61.9, 74.7, 1519, 180 }, + [115] = { 61.8, 74.6, 1519, 180 }, + [116] = { 61.9, 74.6, 1519, 180 }, + [117] = { 61.6, 74.6, 1519, 180 }, + [118] = { 61.7, 74.6, 1519, 180 }, + [119] = { 62, 74.6, 1519, 180 }, + [120] = { 61.8, 74.5, 1519, 180 }, + [121] = { 61.9, 74.5, 1519, 180 }, + [122] = { 61.6, 74.4, 1519, 180 }, + [123] = { 61.7, 74.4, 1519, 180 }, + [124] = { 61.9, 74.4, 1519, 180 }, + [125] = { 62, 74.4, 1519, 180 }, + [126] = { 61.8, 74.4, 1519, 180 }, + [127] = { 61.7, 74.3, 1519, 180 }, + [128] = { 62, 74.3, 1519, 180 }, + [129] = { 61.9, 74.3, 1519, 180 }, + [130] = { 60.5, 74.3, 1519, 180 }, + [131] = { 61.8, 74.2, 1519, 180 }, + [132] = { 27.4, 74.1, 1537, 180 }, + [133] = { 27.2, 73.8, 1537, 180 }, + [134] = { 27.1, 73.5, 1537, 180 }, + [135] = { 26.9, 73.3, 1537, 180 }, + [136] = { 23.1, 73.3, 1537, 180 }, + [137] = { 25.6, 70.8, 1537, 180 }, + [138] = { 25.4, 70.5, 1537, 180 }, + [139] = { 25.2, 70.2, 1537, 180 }, + [140] = { 25.1, 69.9, 1537, 180 }, + [141] = { 19.3, 53.1, 1537, 180 }, + [142] = { 19.1, 52.5, 1537, 180 }, + [143] = { 19.2, 50.8, 1537, 180 }, + [144] = { 51.1, 73.9, 1637, 25 }, + [145] = { 49.8, 72.1, 1637, 25 }, + [146] = { 50.7, 70.4, 1637, 180 }, + [147] = { 53.5, 65.4, 1637, 180 }, + [148] = { 92.8, 67.7, 5086, 300 }, + [149] = { 16.4, 69.4, 5602, 180 }, + [150] = { 16.6, 69.3, 5602, 180 }, + [151] = { 16.4, 69.2, 5602, 180 }, + [152] = { 16.7, 69.2, 5602, 180 }, + }, + }, + [180426] = { + ["coords"] = { + [1] = { 4.5, 48.6, 3, 180 }, + [2] = { 4.4, 48.6, 3, 180 }, + [3] = { 4.6, 48.4, 3, 180 }, + [4] = { 4.2, 48.4, 3, 180 }, + [5] = { 4.2, 48.3, 3, 180 }, + [6] = { 4.4, 48, 3, 180 }, + [7] = { 4.5, 47.9, 3, 180 }, + [8] = { 4.8, 47.8, 3, 180 }, + [9] = { 74.2, 47.3, 10, 180 }, + [10] = { 74.3, 47.1, 10, 180 }, + [11] = { 74.1, 47.1, 10, 180 }, + [12] = { 74.2, 47.1, 10, 180 }, + [13] = { 74.2, 47, 10, 180 }, + [14] = { 74.1, 47, 10, 180 }, + [15] = { 74.2, 46.9, 10, 180 }, + [16] = { 52.6, 42.7, 14, 180 }, + [17] = { 52.5, 42.7, 14, 180 }, + [18] = { 52.6, 42.6, 14, 180 }, + [19] = { 52.4, 42.5, 14, 180 }, + [20] = { 52.7, 42.5, 14, 180 }, + [21] = { 46.3, 7.1, 14, 180 }, + [22] = { 45.7, 6.8, 14, 180 }, + [23] = { 46, 6.6, 14, 180 }, + [24] = { 52.1, 31.4, 17, 180 }, + [25] = { 52.1, 31.1, 17, 180 }, + [26] = { 52.1, 31, 17, 180 }, + [27] = { 52, 31, 17, 180 }, + [28] = { 52, 30.8, 17, 180 }, + [29] = { 52.1, 30.7, 17, 180 }, + [30] = { 52, 30.7, 17, 180 }, + [31] = { 52, 30.6, 17, 180 }, + [32] = { 60.4, 82, 36, 180 }, + [33] = { 60.5, 82, 36, 180 }, + [34] = { 60.4, 81.9, 36, 180 }, + [35] = { 60.4, 81.8, 36, 180 }, + [36] = { 60.6, 81.8, 36, 180 }, + [37] = { 60.2, 81.7, 36, 180 }, + [38] = { 60.5, 81.7, 36, 180 }, + [39] = { 60.3, 81.6, 36, 180 }, + [40] = { 34.9, 45.9, 38, 180 }, + [41] = { 34.9, 45.8, 38, 180 }, + [42] = { 26.9, 48.2, 44, 180 }, + [43] = { 27, 48.2, 44, 180 }, + [44] = { 26.9, 48.1, 44, 180 }, + [45] = { 73.4, 35.5, 45, 180 }, + [46] = { 73.6, 35.5, 45, 180 }, + [47] = { 73.5, 35.3, 45, 180 }, + [48] = { 73.3, 35, 45, 180 }, + [49] = { 73, 35, 45, 180 }, + [50] = { 73, 34.7, 45, 180 }, + [51] = { 73.1, 34.7, 45, 180 }, + [52] = { 83.7, 40.1, 51, 180 }, + [53] = { 83.6, 40, 51, 180 }, + [54] = { 83.7, 40, 51, 180 }, + [55] = { 83.8, 39.8, 51, 180 }, + [56] = { 83.4, 39.8, 51, 180 }, + [57] = { 83.4, 39.7, 51, 180 }, + [58] = { 83.6, 39.4, 51, 180 }, + [59] = { 83.7, 39.2, 51, 180 }, + [60] = { 84, 39.2, 51, 180 }, + [61] = { 61.3, 54.2, 85, 180 }, + [62] = { 61.4, 53.8, 85, 180 }, + [63] = { 61.6, 53.7, 85, 180 }, + [64] = { 36.9, 44.1, 148, 180 }, + [65] = { 49.9, 57.6, 267, 180 }, + [66] = { 49.8, 57.6, 267, 180 }, + [67] = { 49.9, 57.5, 267, 180 }, + [68] = { 50, 57.5, 267, 180 }, + [69] = { 49.9, 57.4, 267, 180 }, + [70] = { 49.9, 57.2, 267, 180 }, + [71] = { 61.7, 20.2, 267, 180 }, + [72] = { 61.8, 20.2, 267, 180 }, + [73] = { 61.7, 20.1, 267, 180 }, + [74] = { 61.7, 20, 267, 180 }, + [75] = { 61.9, 20, 267, 180 }, + [76] = { 61.5, 19.9, 267, 180 }, + [77] = { 61.8, 19.9, 267, 180 }, + [78] = { 61.6, 19.9, 267, 180 }, + [79] = { 45.7, 50.3, 400, 180 }, + [80] = { 24.1, 68.2, 405, 180 }, + [81] = { 66.3, 6.9, 405, 180 }, + [82] = { 44.8, 79.7, 406, 180 }, + [83] = { 51.7, 27.6, 440, 180 }, + [84] = { 61.2, 38.1, 618, 180 }, + [85] = { 51.9, 39.2, 1377, 180 }, + [86] = { 65.3, 75.3, 1519, 180 }, + [87] = { 65.1, 75.3, 1519, 180 }, + [88] = { 65.2, 75.2, 1519, 180 }, + [89] = { 65.1, 75.1, 1519, 180 }, + [90] = { 65.1, 75, 1519, 180 }, + [91] = { 29.6, 68.7, 1537, 180 }, + [92] = { 29.9, 68.2, 1537, 180 }, + [93] = { 29.6, 68.2, 1537, 180 }, + [94] = { 29.6, 68.1, 1537, 180 }, + [95] = { 29.3, 68, 1537, 180 }, + [96] = { 29.6, 67.6, 1537, 180 }, + [97] = { 52, 76.7, 1637, 180 }, + [98] = { 49.6, 75.6, 1637, 180 }, + [99] = { 50.9, 74.6, 1637, 180 }, + [100] = { 49.6, 73.9, 1637, 180 }, + [101] = { 51.3, 73.9, 1637, 180 }, + [102] = { 50.8, 73.6, 1637, 180 }, + [103] = { 52.3, 72.9, 1637, 180 }, + [104] = { 50.6, 72.7, 1637, 180 }, + [105] = { 51.4, 72.2, 1637, 180 }, + [106] = { 52.1, 71.4, 1637, 180 }, + [107] = { 7.2, 90.4, 2100, 180 }, + [108] = { 7.1, 90.4, 2100, 180 }, + [109] = { 7.2, 90.3, 2100, 180 }, + [110] = { 7.1, 90.3, 2100, 180 }, + [111] = { 16.4, 67.7, 5602, 180 }, + }, + }, + [180427] = { + ["coords"] = { + [1] = { 96.4, 45.7, 1, 180 }, + [2] = { 96.4, 45.6, 1, 180 }, + [3] = { 2.9, 46, 3, 180 }, + [4] = { 2.9, 45.9, 3, 180 }, + [5] = { 74.1, 47.3, 10, 180 }, + [6] = { 74.2, 47.2, 10, 180 }, + [7] = { 74.2, 47.1, 10, 180 }, + [8] = { 74.3, 47.1, 10, 180 }, + [9] = { 74.4, 47, 10, 180 }, + [10] = { 74.1, 47, 10, 180 }, + [11] = { 52.7, 42.7, 14, 180 }, + [12] = { 52.5, 42.7, 14, 180 }, + [13] = { 52.6, 42.6, 14, 180 }, + [14] = { 52.6, 42.5, 14, 180 }, + [15] = { 52.1, 31, 17, 180 }, + [16] = { 52, 31, 17, 180 }, + [17] = { 52, 30.9, 17, 180 }, + [18] = { 52, 30.8, 17, 180 }, + [19] = { 52.1, 30.8, 17, 180 }, + [20] = { 60.3, 82, 36, 180 }, + [21] = { 60.4, 81.9, 36, 180 }, + [22] = { 60.4, 81.8, 36, 180 }, + [23] = { 60.5, 81.8, 36, 180 }, + [24] = { 60.4, 81.7, 36, 180 }, + [25] = { 34.6, 48.3, 38, 180 }, + [26] = { 34.7, 48.2, 38, 180 }, + [27] = { 26.9, 48.2, 44, 180 }, + [28] = { 27, 48.2, 44, 180 }, + [29] = { 27, 48.1, 44, 180 }, + [30] = { 26.9, 48.1, 44, 180 }, + [31] = { 74.1, 32.2, 45, 180 }, + [32] = { 81.9, 37.1, 51, 180 }, + [33] = { 61.7, 52.4, 85, 180 }, + [34] = { 61.7, 52.3, 85, 180 }, + [35] = { 36.9, 44.1, 148, 180 }, + [36] = { 49.9, 57.9, 267, 180 }, + [37] = { 49.9, 57.7, 267, 180 }, + [38] = { 50, 57.7, 267, 180 }, + [39] = { 49.8, 57.6, 267, 180 }, + [40] = { 50, 57.6, 267, 180 }, + [41] = { 49.9, 57.5, 267, 180 }, + [42] = { 49.9, 57.4, 267, 180 }, + [43] = { 50, 57.3, 267, 180 }, + [44] = { 50, 57.1, 267, 180 }, + [45] = { 61.6, 20.1, 267, 180 }, + [46] = { 61.7, 20.1, 267, 180 }, + [47] = { 61.7, 20, 267, 180 }, + [48] = { 61.7, 19.9, 267, 180 }, + [49] = { 45.7, 50.3, 400, 180 }, + [50] = { 24.1, 68.2, 405, 180 }, + [51] = { 66.3, 6.9, 405, 180 }, + [52] = { 44.8, 79.7, 406, 180 }, + [53] = { 51.7, 27.6, 440, 180 }, + [54] = { 61.2, 38.1, 618, 180 }, + [55] = { 51.9, 39.2, 1377, 180 }, + [56] = { 66, 44.6, 1497, 180 }, + [57] = { 66.2, 44.5, 1497, 180 }, + [58] = { 65.8, 44.4, 1497, 180 }, + [59] = { 65.9, 44.3, 1497, 180 }, + [60] = { 65.9, 44.2, 1497, 180 }, + [61] = { 66.1, 44.2, 1497, 180 }, + [62] = { 66.3, 44.1, 1497, 180 }, + [63] = { 65.6, 44.1, 1497, 180 }, + [64] = { 65.9, 44.1, 1497, 180 }, + [65] = { 66.3, 44, 1497, 180 }, + [66] = { 65.9, 44, 1497, 180 }, + [67] = { 66.1, 44, 1497, 180 }, + [68] = { 66, 44, 1497, 180 }, + [69] = { 65.9, 43.9, 1497, 180 }, + [70] = { 65.8, 43.8, 1497, 180 }, + [71] = { 66, 43.8, 1497, 180 }, + [72] = { 66.3, 43.7, 1497, 180 }, + [73] = { 63.1, 71.7, 1519, 180 }, + [74] = { 63.1, 71.5, 1519, 180 }, + [75] = { 63, 71.5, 1519, 180 }, + [76] = { 63.2, 71.4, 1519, 180 }, + [77] = { 63.1, 71.4, 1519, 180 }, + [78] = { 62.9, 71.3, 1519, 180 }, + [79] = { 63.2, 71.3, 1519, 180 }, + [80] = { 63, 71.3, 1519, 180 }, + [81] = { 63.1, 71.1, 1519, 180 }, + [82] = { 29.8, 68.4, 1537, 180 }, + [83] = { 29.6, 68.2, 1537, 180 }, + [84] = { 29.6, 68.1, 1537, 180 }, + [85] = { 29.8, 67.9, 1537, 180 }, + [86] = { 29.4, 67.8, 1537, 180 }, + [87] = { 49.2, 69.6, 1637, 180 }, + [88] = { 49.9, 69, 1637, 180 }, + [89] = { 49.4, 68.9, 1637, 180 }, + [90] = { 49.4, 68.8, 1637, 180 }, + [91] = { 49.1, 68.5, 1637, 180 }, + [92] = { 7.2, 90.3, 2100, 180 }, + [93] = { 7.1, 90.3, 2100, 180 }, + [94] = { 16.3, 69, 5602, 180 }, + [95] = { 16.2, 69, 5602, 180 }, + [96] = { 16.3, 68.9, 5602, 180 }, + }, + }, + [180428] = "_", + [180429] = "_", + [180431] = { + ["coords"] = { + [1] = { 66, 36.9, 1497, 180 }, + }, + }, + [180435] = { + ["coords"] = { + [1] = { 44.6, 91.4, 1377, 2 }, + [2] = { 71.2, 2.6, 3478, 2 }, + }, + ["fac"] = "AH", + }, + [180436] = { + ["coords"] = { + [1] = { 56, 83.4, 357, 180 }, + [2] = { 53.1, 81.7, 357, 180 }, + [3] = { 52.6, 81.3, 357, 180 }, + [4] = { 19.7, 22.1, 1377, 180 }, + [5] = { 26.4, 15.9, 1377, 180 }, + [6] = { 28.4, 11.7, 1377, 180 }, + [7] = { 20.7, 10.3, 1377, 180 }, + [8] = { 22.7, 8.3, 1377, 180 }, + [9] = { 21.5, 7.6, 1377, 180 }, + }, + ["fac"] = "AH", + }, + [180448] = { + ["coords"] = { + [1] = { 51.4, 38.3, 1377, 2 }, + }, + ["fac"] = "AH", + }, + [180451] = "_", + [180453] = { + ["coords"] = { + [1] = { 77.5, 10.8, 3478, 900 }, + }, + ["fac"] = "AH", + }, + [180471] = { + ["coords"] = { + [1] = { 46, 51.7, 1, 180 }, + [2] = { 96.4, 45.8, 1, 180 }, + [3] = { 6.1, 48, 3, 180 }, + [4] = { 5.7, 47.6, 3, 180 }, + [5] = { 6.5, 47.6, 3, 180 }, + [6] = { 3.7, 47.3, 3, 180 }, + [7] = { 3, 47, 3, 180 }, + [8] = { 5.7, 46.9, 3, 180 }, + [9] = { 2.7, 46.9, 3, 180 }, + [10] = { 6.5, 46.9, 3, 180 }, + [11] = { 4, 46.7, 3, 180 }, + [12] = { 2.4, 46.7, 3, 180 }, + [13] = { 6.1, 46.6, 3, 180 }, + [14] = { 2.2, 46.2, 3, 180 }, + [15] = { 3.1, 45.8, 3, 180 }, + [16] = { 3.5, 45.8, 3, 180 }, + [17] = { 2.2, 45.7, 3, 180 }, + [18] = { 2.7, 45.6, 3, 180 }, + [19] = { 3.4, 45.3, 3, 180 }, + [20] = { 2.4, 45.2, 3, 180 }, + [21] = { 3.1, 45, 3, 180 }, + [22] = { 2.7, 45, 3, 180 }, + [23] = { 45, 57.5, 8, 600 }, + [24] = { 44.7, 57.4, 8, 600 }, + [25] = { 45.3, 55.1, 8, 600 }, + [26] = { 73.1, 47.2, 10, 180 }, + [27] = { 73, 46.3, 10, 180 }, + [28] = { 73.7, 46, 10, 180 }, + [29] = { 74, 46, 10, 180 }, + [30] = { 73.5, 45.8, 10, 180 }, + [31] = { 74.5, 45.7, 10, 180 }, + [32] = { 74.4, 43.8, 10, 180 }, + [33] = { 73.3, 42.9, 10, 180 }, + [34] = { 74, 42.9, 10, 180 }, + [35] = { 11, 61.8, 11, 180 }, + [36] = { 10.6, 61.8, 11, 180 }, + [37] = { 10.3, 61.2, 11, 180 }, + [38] = { 11, 61.1, 11, 180 }, + [39] = { 10.8, 61, 11, 180 }, + [40] = { 10.3, 60.8, 11, 180 }, + [41] = { 10.5, 60.6, 11, 180 }, + [42] = { 10.3, 60.2, 11, 180 }, + [43] = { 11, 59.9, 11, 180 }, + [44] = { 10.3, 59.9, 11, 180 }, + [45] = { 10.9, 59.8, 11, 180 }, + [46] = { 10.7, 59.8, 11, 180 }, + [47] = { 41.7, 67.2, 12, 180 }, + [48] = { 43.8, 66.7, 12, 180 }, + [49] = { 44, 66.7, 12, 180 }, + [50] = { 43.5, 66.6, 12, 180 }, + [51] = { 43.2, 66.6, 12, 180 }, + [52] = { 43, 66.5, 12, 180 }, + [53] = { 44.5, 66.3, 12, 180 }, + [54] = { 44.6, 65.9, 12, 180 }, + [55] = { 44.6, 65.5, 12, 180 }, + [56] = { 51.8, 42.1, 14, 180 }, + [57] = { 51.9, 41.8, 14, 180 }, + [58] = { 47.3, 6.6, 14, 180 }, + [59] = { 66.2, 45.8, 15, 180 }, + [60] = { 66.4, 45.8, 15, 180 }, + [61] = { 66.6, 45.8, 15, 180 }, + [62] = { 66.1, 45.8, 15, 180 }, + [63] = { 66.7, 45.7, 15, 180 }, + [64] = { 67.1, 45.4, 15, 180 }, + [65] = { 66, 45.3, 15, 180 }, + [66] = { 66.6, 45.1, 15, 180 }, + [67] = { 66, 45.1, 15, 180 }, + [68] = { 66.1, 44.9, 15, 180 }, + [69] = { 66.7, 44.9, 15, 180 }, + [70] = { 67.1, 44.9, 15, 180 }, + [71] = { 45.6, 59.1, 17, 180 }, + [72] = { 45.5, 59.1, 17, 180 }, + [73] = { 45.4, 59, 17, 180 }, + [74] = { 45.3, 58.9, 17, 180 }, + [75] = { 45.3, 58.8, 17, 180 }, + [76] = { 45.3, 58.7, 17, 180 }, + [77] = { 45.4, 58.7, 17, 180 }, + [78] = { 61.9, 38.5, 17, 180 }, + [79] = { 62.2, 37.6, 17, 180 }, + [80] = { 62.3, 37.6, 17, 180 }, + [81] = { 62.4, 37.6, 17, 180 }, + [82] = { 51.9, 30.2, 17, 180 }, + [83] = { 52.2, 30.1, 17, 180 }, + [84] = { 51.9, 29.8, 17, 180 }, + [85] = { 51.7, 29.8, 17, 180 }, + [86] = { 52.1, 29.8, 17, 180 }, + [87] = { 52.2, 29.6, 17, 180 }, + [88] = { 51.9, 29.5, 17, 180 }, + [89] = { 27.1, 77.5, 33, 180 }, + [90] = { 62.1, 82.8, 36, 180 }, + [91] = { 61.7, 82.7, 36, 180 }, + [92] = { 62.2, 82.4, 36, 180 }, + [93] = { 61.8, 82.2, 36, 180 }, + [94] = { 61.1, 81.3, 36, 180 }, + [95] = { 35.7, 48.8, 38, 180 }, + [96] = { 34.6, 48.6, 38, 180 }, + [97] = { 35.1, 48.4, 38, 180 }, + [98] = { 35.5, 47.6, 38, 180 }, + [99] = { 35, 47.5, 38, 180 }, + [100] = { 52.7, 54, 40, 180 }, + [101] = { 52.4, 53.7, 40, 180 }, + [102] = { 52.1, 53.3, 40, 180 }, + [103] = { 53, 53.3, 40, 180 }, + [104] = { 52.7, 53, 40, 180 }, + [105] = { 26.8, 46.4, 44, 180 }, + [106] = { 26.4, 46.4, 44, 180 }, + [107] = { 27.6, 43.7, 44, 180 }, + [108] = { 74.3, 33, 45, 180 }, + [109] = { 73.6, 33, 45, 180 }, + [110] = { 74, 33, 45, 180 }, + [111] = { 74, 32.6, 45, 180 }, + [112] = { 74.3, 32.6, 45, 180 }, + [113] = { 73.6, 32.2, 45, 180 }, + [114] = { 74, 31.6, 45, 180 }, + [115] = { 74.3, 31.6, 45, 180 }, + [116] = { 13.2, 42, 47, 0 }, + [117] = { 14.3, 41.9, 47, 0 }, + [118] = { 14.4, 41.8, 47, 0 }, + [119] = { 13.2, 41.8, 47, 0 }, + [120] = { 14.1, 41.7, 47, 0 }, + [121] = { 13.5, 41.6, 47, 0 }, + [122] = { 13.8, 41.5, 47, 0 }, + [123] = { 14.4, 41.5, 47, 0 }, + [124] = { 14.1, 41.5, 47, 0 }, + [125] = { 14.1, 41.3, 47, 0 }, + [126] = { 14.2, 41.2, 47, 0 }, + [127] = { 14.3, 41.2, 47, 0 }, + [128] = { 82.8, 38.6, 51, 180 }, + [129] = { 82.1, 38.2, 51, 180 }, + [130] = { 81.7, 38.2, 51, 180 }, + [131] = { 83.1, 37.9, 51, 180 }, + [132] = { 81.4, 37.9, 51, 180 }, + [133] = { 81.2, 37.3, 51, 180 }, + [134] = { 82.2, 36.9, 51, 180 }, + [135] = { 82.7, 36.9, 51, 180 }, + [136] = { 81.2, 36.8, 51, 180 }, + [137] = { 81.7, 36.7, 51, 180 }, + [138] = { 82.5, 36.3, 51, 180 }, + [139] = { 81.4, 36.3, 51, 180 }, + [140] = { 82.2, 36.1, 51, 180 }, + [141] = { 81.8, 36, 51, 180 }, + [142] = { 60.3, 53.7, 85, 180 }, + [143] = { 60.4, 53.4, 85, 180 }, + [144] = { 59.9, 53.3, 85, 180 }, + [145] = { 60.4, 53, 85, 180 }, + [146] = { 60.1, 53, 85, 180 }, + [147] = { 61.7, 53, 85, 180 }, + [148] = { 61.5, 52.9, 85, 180 }, + [149] = { 62, 52.9, 85, 180 }, + [150] = { 60.1, 52.7, 85, 180 }, + [151] = { 62.1, 52.5, 85, 180 }, + [152] = { 59.8, 52.3, 85, 180 }, + [153] = { 59.3, 52.2, 85, 180 }, + [154] = { 62.1, 52.1, 85, 180 }, + [155] = { 61.9, 51.8, 85, 180 }, + [156] = { 61.5, 51.7, 85, 180 }, + [157] = { 61.9, 51.5, 85, 180 }, + [158] = { 61.6, 51.4, 85, 180 }, + [159] = { 61.4, 51.3, 85, 180 }, + [160] = { 61.5, 50.6, 85, 180 }, + [161] = { 57.4, 60.7, 141, 180 }, + [162] = { 57.4, 60.5, 141, 180 }, + [163] = { 56, 58.9, 141, 180 }, + [164] = { 55.7, 58.8, 141, 180 }, + [165] = { 56.1, 58.6, 141, 180 }, + [166] = { 55.4, 56.9, 141, 180 }, + [167] = { 55.3, 56.9, 141, 180 }, + [168] = { 55.4, 56.8, 141, 180 }, + [169] = { 55.2, 56.8, 141, 180 }, + [170] = { 55.5, 56.8, 141, 180 }, + [171] = { 55.4, 56.7, 141, 180 }, + [172] = { 55.3, 56.6, 141, 180 }, + [173] = { 31.5, 50.8, 141, 0 }, + [174] = { 30.8, 49.4, 141, 0 }, + [175] = { 36.9, 44.8, 148, 180 }, + [176] = { 37, 44.8, 148, 180 }, + [177] = { 36.8, 44.7, 148, 180 }, + [178] = { 36.6, 44.7, 148, 180 }, + [179] = { 36.7, 44.7, 148, 180 }, + [180] = { 37.1, 44.6, 148, 180 }, + [181] = { 36.5, 44.6, 148, 180 }, + [182] = { 37.2, 44.5, 148, 180 }, + [183] = { 36.5, 44.2, 148, 180 }, + [184] = { 36.4, 44.1, 148, 180 }, + [185] = { 37.3, 43.9, 148, 180 }, + [186] = { 37.3, 43.8, 148, 180 }, + [187] = { 36.6, 43.6, 148, 180 }, + [188] = { 37.3, 43.6, 148, 180 }, + [189] = { 36.5, 43.6, 148, 180 }, + [190] = { 37.1, 43.5, 148, 180 }, + [191] = { 37.2, 43.5, 148, 180 }, + [192] = { 37, 43.4, 148, 180 }, + [193] = { 36.8, 43.3, 148, 180 }, + [194] = { 36.9, 43.3, 148, 180 }, + [195] = { 47, 60.5, 215, 180 }, + [196] = { 46.9, 60.5, 215, 180 }, + [197] = { 46.9, 60.4, 215, 180 }, + [198] = { 46.8, 60.4, 215, 180 }, + [199] = { 46.7, 60.4, 215, 180 }, + [200] = { 46.8, 60.3, 215, 180 }, + [201] = { 39.3, 30.6, 215, 180 }, + [202] = { 39, 29.7, 215, 180 }, + [203] = { 38.8, 29.4, 215, 180 }, + [204] = { 39, 29.3, 215, 180 }, + [205] = { 50.6, 59.5, 267, 180 }, + [206] = { 51.1, 58.3, 267, 180 }, + [207] = { 50.6, 58.1, 267, 180 }, + [208] = { 63.2, 20.9, 267, 180 }, + [209] = { 62.8, 20.8, 267, 180 }, + [210] = { 63.3, 20.5, 267, 180 }, + [211] = { 62.9, 20.3, 267, 180 }, + [212] = { 62.3, 19.6, 267, 180 }, + [213] = { 98.5, 0.5, 267, 0 }, + [214] = { 74, 61.2, 331, 180 }, + [215] = { 74.1, 61.2, 331, 180 }, + [216] = { 73.9, 61.1, 331, 180 }, + [217] = { 74.1, 61.1, 331, 180 }, + [218] = { 74.2, 61.1, 331, 180 }, + [219] = { 73.8, 61.1, 331, 180 }, + [220] = { 74.3, 61, 331, 180 }, + [221] = { 73.8, 61, 331, 180 }, + [222] = { 74.4, 61, 331, 180 }, + [223] = { 73.8, 60.9, 331, 180 }, + [224] = { 73.7, 60.8, 331, 180 }, + [225] = { 73.7, 60.7, 331, 180 }, + [226] = { 73.6, 60.7, 331, 180 }, + [227] = { 73.6, 60.5, 331, 180 }, + [228] = { 73.7, 60.4, 331, 180 }, + [229] = { 73.7, 60.3, 331, 180 }, + [230] = { 73.8, 60.2, 331, 180 }, + [231] = { 73.8, 60.1, 331, 180 }, + [232] = { 73.8, 60, 331, 180 }, + [233] = { 73.9, 60, 331, 180 }, + [234] = { 37.2, 50.6, 331, 180 }, + [235] = { 37, 50.6, 331, 180 }, + [236] = { 36.9, 50.5, 331, 180 }, + [237] = { 37.3, 50.4, 331, 180 }, + [238] = { 36.5, 50.3, 331, 180 }, + [239] = { 36.4, 50.2, 331, 180 }, + [240] = { 37.2, 50.1, 331, 180 }, + [241] = { 36.3, 50.1, 331, 180 }, + [242] = { 37.4, 49.9, 331, 180 }, + [243] = { 36.3, 49.8, 331, 180 }, + [244] = { 36.4, 49.6, 331, 180 }, + [245] = { 37.2, 49.4, 331, 180 }, + [246] = { 36.4, 49.3, 331, 180 }, + [247] = { 37.2, 49.2, 331, 180 }, + [248] = { 36.7, 49.2, 331, 180 }, + [249] = { 36.5, 49.2, 331, 180 }, + [250] = { 36.8, 49, 331, 180 }, + [251] = { 31.1, 43.8, 357, 0 }, + [252] = { 31.1, 43.8, 357, 180 }, + [253] = { 30.7, 43.7, 357, 0 }, + [254] = { 30.7, 43.7, 357, 180 }, + [255] = { 31.4, 43.7, 357, 180 }, + [256] = { 31.4, 43.7, 357, 0 }, + [257] = { 30.5, 43.5, 357, 0 }, + [258] = { 30.5, 43.5, 357, 180 }, + [259] = { 31.4, 43.3, 357, 0 }, + [260] = { 31.4, 43.3, 357, 180 }, + [261] = { 30.5, 43, 357, 180 }, + [262] = { 30.5, 43, 357, 0 }, + [263] = { 31.4, 42.9, 357, 0 }, + [264] = { 31.4, 42.9, 357, 180 }, + [265] = { 31.1, 42.8, 357, 0 }, + [266] = { 31.1, 42.8, 357, 180 }, + [267] = { 30.9, 42.8, 357, 0 }, + [268] = { 30.9, 42.8, 357, 180 }, + [269] = { 30.8, 42.8, 357, 0 }, + [270] = { 30.8, 42.8, 357, 180 }, + [271] = { 31.2, 42.6, 357, 0 }, + [272] = { 31.2, 42.6, 357, 180 }, + [273] = { 45.8, 51.1, 400, 180 }, + [274] = { 46.1, 51, 400, 180 }, + [275] = { 24.5, 68.8, 405, 180 }, + [276] = { 24.6, 68.5, 405, 180 }, + [277] = { 24.3, 67.7, 405, 180 }, + [278] = { 66.2, 7.4, 405, 180 }, + [279] = { 66.5, 7.3, 405, 180 }, + [280] = { 65.8, 6.7, 405, 180 }, + [281] = { 66, 6.6, 405, 180 }, + [282] = { 66.5, 6.4, 405, 180 }, + [283] = { 66.7, 6.4, 405, 180 }, + [284] = { 44.7, 80.1, 406, 180 }, + [285] = { 45, 80, 406, 180 }, + [286] = { 44.4, 79.5, 406, 180 }, + [287] = { 44.6, 79.5, 406, 180 }, + [288] = { 45, 79.3, 406, 180 }, + [289] = { 45.1, 79.3, 406, 180 }, + [290] = { 50.1, 63.8, 406, 180 }, + [291] = { 50.2, 63.4, 406, 180 }, + [292] = { 50.6, 63.1, 406, 180 }, + [293] = { 50.5, 62.9, 406, 180 }, + [294] = { 50.5, 62.8, 406, 180 }, + [295] = { 50.4, 62.8, 406, 180 }, + [296] = { 52.7, 28.3, 440, 180 }, + [297] = { 52.4, 28.3, 440, 180 }, + [298] = { 52.7, 28.2, 440, 180 }, + [299] = { 52.4, 28.2, 440, 180 }, + [300] = { 52.8, 27.8, 440, 180 }, + [301] = { 52.7, 27.8, 440, 180 }, + [302] = { 52.5, 27.7, 440, 180 }, + [303] = { 52.7, 27.7, 440, 180 }, + [304] = { 52.5, 27.6, 440, 180 }, + [305] = { 61.2, 39.2, 618, 180 }, + [306] = { 61.5, 39.2, 618, 180 }, + [307] = { 61.5, 38.9, 618, 180 }, + [308] = { 61.2, 38.8, 618, 180 }, + [309] = { 60.8, 37.8, 618, 180 }, + [310] = { 51.7, 39.9, 1377, 180 }, + [311] = { 52.4, 39.3, 1377, 180 }, + [312] = { 51.4, 39, 1377, 180 }, + [313] = { 52.1, 38.4, 1377, 180 }, + [314] = { 67.3, 50, 1497, 180 }, + [315] = { 64.6, 50, 1497, 180 }, + [316] = { 69.1, 48.1, 1497, 180 }, + [317] = { 62.8, 48, 1497, 180 }, + [318] = { 69.6, 46.9, 1497, 180 }, + [319] = { 62.3, 46.9, 1497, 180 }, + [320] = { 66.8, 45.4, 1497, 180 }, + [321] = { 65.1, 45.3, 1497, 180 }, + [322] = { 66, 45.2, 1497, 180 }, + [323] = { 62.5, 44.6, 1497, 180 }, + [324] = { 62.5, 43.5, 1497, 180 }, + [325] = { 66, 42.9, 1497, 180 }, + [326] = { 66.8, 42.9, 1497, 180 }, + [327] = { 65.1, 42.8, 1497, 180 }, + [328] = { 69.7, 41.4, 1497, 180 }, + [329] = { 62.3, 41.3, 1497, 180 }, + [330] = { 69.1, 40.2, 1497, 180 }, + [331] = { 62.8, 40.1, 1497, 180 }, + [332] = { 61.7, 38.8, 1497, 180 }, + [333] = { 67.3, 38.2, 1497, 180 }, + [334] = { 64.7, 38.1, 1497, 180 }, + [335] = { 66.5, 37.8, 1497, 180 }, + [336] = { 62.4, 37.8, 1497, 180 }, + [337] = { 65.5, 37.7, 1497, 180 }, + [338] = { 61.6, 37.6, 1497, 180 }, + [339] = { 61.1, 74.6, 1519, 180 }, + [340] = { 63.7, 70.1, 1519, 180 }, + [341] = { 63.2, 69.2, 1519, 180 }, + [342] = { 27.7, 74.2, 1537, 180 }, + [343] = { 27.4, 73.7, 1537, 180 }, + [344] = { 27.1, 73.2, 1537, 180 }, + [345] = { 26.8, 72.7, 1537, 180 }, + [346] = { 26.5, 72.2, 1537, 180 }, + [347] = { 26, 71.2, 1537, 180 }, + [348] = { 25.7, 70.7, 1537, 180 }, + [349] = { 25.4, 70.2, 1537, 180 }, + [350] = { 25.2, 69.8, 1537, 180 }, + [351] = { 24.9, 69.3, 1537, 180 }, + [352] = { 56, 74.8, 1637, 180 }, + [353] = { 55, 72.8, 1637, 180 }, + [354] = { 54.9, 72.8, 1637, 180 }, + [355] = { 55.8, 70.7, 1637, 0 }, + [356] = { 55.8, 70.7, 1637, 180 }, + [357] = { 54.2, 69.6, 1637, 180 }, + [358] = { 53.6, 68.9, 1637, 180 }, + [359] = { 53.8, 65.9, 1637, 180 }, + [360] = { 53.1, 63.7, 1637, 180 }, + [361] = { 51.6, 63.6, 1637, 180 }, + [362] = { 46.7, 67.9, 1638, 180 }, + [363] = { 45.5, 63.4, 1638, 180 }, + [364] = { 44.4, 62, 1638, 180 }, + [365] = { 45.2, 61.3, 1638, 180 }, + [366] = { 68.7, 18.8, 1657, 0 }, + [367] = { 65.6, 12, 1657, 0 }, + [368] = { 9.3, 93.4, 2100, 180 }, + [369] = { 9.9, 92.1, 2100, 180 }, + [370] = { 8.4, 87.8, 2100, 180 }, + [371] = { 16.8, 69.2, 5602, 180 }, + [372] = { 16.2, 69.1, 5602, 180 }, + [373] = { 16.5, 69, 5602, 180 }, + [374] = { 16.7, 68.6, 5602, 180 }, + [375] = { 16.4, 68.6, 5602, 180 }, + }, + }, + [180472] = { + ["coords"] = { + [1] = { 47.4, 52.6, 1, 180 }, + [2] = { 46, 51.8, 1, 180 }, + [3] = { 5.9, 47.8, 3, 180 }, + [4] = { 6.3, 47.7, 3, 180 }, + [5] = { 5.7, 47.3, 3, 180 }, + [6] = { 6.5, 47.2, 3, 180 }, + [7] = { 3.8, 47, 3, 180 }, + [8] = { 2.8, 46.9, 3, 180 }, + [9] = { 6.3, 46.8, 3, 180 }, + [10] = { 5.9, 46.7, 3, 180 }, + [11] = { 2.3, 46.4, 3, 180 }, + [12] = { 2.7, 45.9, 3, 180 }, + [13] = { 3.5, 45.6, 3, 180 }, + [14] = { 2.9, 45.5, 3, 180 }, + [15] = { 2.3, 45.4, 3, 180 }, + [16] = { 2.9, 45, 3, 180 }, + [17] = { 44.9, 58.2, 8, 600 }, + [18] = { 45.6, 57.9, 8, 600 }, + [19] = { 44.9, 57.7, 8, 600 }, + [20] = { 44.4, 57.5, 8, 600 }, + [21] = { 44.8, 56.9, 8, 600 }, + [22] = { 45.7, 56.8, 8, 600 }, + [23] = { 44.5, 56.5, 8, 600 }, + [24] = { 45.3, 55.3, 8, 600 }, + [25] = { 72.9, 46.8, 10, 180 }, + [26] = { 73.8, 46, 10, 180 }, + [27] = { 73.6, 44.9, 10, 180 }, + [28] = { 10.8, 61.8, 11, 180 }, + [29] = { 10.8, 61.6, 11, 180 }, + [30] = { 10.6, 61.5, 11, 180 }, + [31] = { 11, 61.5, 11, 180 }, + [32] = { 11, 61.2, 11, 180 }, + [33] = { 10.6, 61.2, 11, 180 }, + [34] = { 10.5, 61.1, 11, 180 }, + [35] = { 10.3, 61, 11, 180 }, + [36] = { 11, 60.8, 11, 180 }, + [37] = { 10.3, 60.5, 11, 180 }, + [38] = { 11, 60.2, 11, 180 }, + [39] = { 10.5, 60.2, 11, 180 }, + [40] = { 10.3, 60.1, 11, 180 }, + [41] = { 10.9, 59.9, 11, 180 }, + [42] = { 10.7, 59.9, 11, 180 }, + [43] = { 10.8, 59.8, 11, 180 }, + [44] = { 43.7, 66.6, 12, 180 }, + [45] = { 43.3, 66.5, 12, 180 }, + [46] = { 44, 66.4, 12, 180 }, + [47] = { 43.1, 66.2, 12, 180 }, + [48] = { 44.5, 65.9, 12, 180 }, + [49] = { 51.6, 41.9, 14, 180 }, + [50] = { 51.3, 41.8, 14, 180 }, + [51] = { 51.7, 41.6, 14, 180 }, + [52] = { 51.3, 41.5, 14, 180 }, + [53] = { 51.5, 41.3, 14, 180 }, + [54] = { 66.2, 45.8, 15, 180 }, + [55] = { 66.4, 45.8, 15, 180 }, + [56] = { 66.6, 45.8, 15, 180 }, + [57] = { 66.8, 45.4, 15, 180 }, + [58] = { 66.9, 45.4, 15, 180 }, + [59] = { 66.1, 45.3, 15, 180 }, + [60] = { 66, 45.2, 15, 180 }, + [61] = { 66.4, 45.1, 15, 180 }, + [62] = { 66.1, 45.1, 15, 180 }, + [63] = { 66.8, 44.9, 15, 180 }, + [64] = { 66.9, 44.9, 15, 180 }, + [65] = { 45.7, 59.1, 17, 180 }, + [66] = { 45.3, 59, 17, 180 }, + [67] = { 45.5, 58.9, 17, 180 }, + [68] = { 45.4, 58.9, 17, 180 }, + [69] = { 45.3, 58.8, 17, 180 }, + [70] = { 45.4, 58.6, 17, 180 }, + [71] = { 62.1, 39.3, 17, 180 }, + [72] = { 62.1, 38.3, 17, 180 }, + [73] = { 62.6, 37.4, 17, 180 }, + [74] = { 62.7, 37.4, 17, 180 }, + [75] = { 62.9, 36.5, 17, 180 }, + [76] = { 52.3, 30.7, 17, 180 }, + [77] = { 52.3, 30.5, 17, 180 }, + [78] = { 51.9, 30, 17, 180 }, + [79] = { 52.1, 30, 17, 180 }, + [80] = { 51.9, 29.7, 17, 180 }, + [81] = { 27.3, 77.4, 33, 180 }, + [82] = { 27.2, 77.4, 33, 180 }, + [83] = { 61.6, 81.6, 36, 180 }, + [84] = { 60.2, 80.9, 36, 180 }, + [85] = { 60.9, 80.6, 36, 180 }, + [86] = { 34.6, 48.9, 38, 180 }, + [87] = { 34.8, 48.5, 38, 180 }, + [88] = { 35.6, 48.1, 38, 180 }, + [89] = { 35, 47.8, 38, 180 }, + [90] = { 35.3, 47.4, 38, 180 }, + [91] = { 52.8, 54.2, 40, 180 }, + [92] = { 53, 53.9, 40, 180 }, + [93] = { 52.5, 53.8, 40, 180 }, + [94] = { 53.2, 53.5, 40, 180 }, + [95] = { 52.2, 53.5, 40, 180 }, + [96] = { 52.8, 53.2, 40, 180 }, + [97] = { 51.9, 53.2, 40, 180 }, + [98] = { 52.6, 52.9, 40, 180 }, + [99] = { 52.1, 52.8, 40, 180 }, + [100] = { 26.6, 46.4, 44, 180 }, + [101] = { 27.5, 46.2, 44, 180 }, + [102] = { 27.5, 45.6, 44, 180 }, + [103] = { 26.3, 45.5, 44, 180 }, + [104] = { 27.5, 45.5, 44, 180 }, + [105] = { 27.5, 44.9, 44, 180 }, + [106] = { 26.4, 44.9, 44, 180 }, + [107] = { 27.1, 44.5, 44, 180 }, + [108] = { 27.5, 44.4, 44, 180 }, + [109] = { 26.3, 44.3, 44, 180 }, + [110] = { 27.5, 44.2, 44, 180 }, + [111] = { 26.6, 44.1, 44, 180 }, + [112] = { 27.2, 43.8, 44, 180 }, + [113] = { 26.6, 42.6, 44, 180 }, + [114] = { 74.1, 33, 45, 180 }, + [115] = { 73.8, 33, 45, 180 }, + [116] = { 74.7, 32.6, 45, 180 }, + [117] = { 73.6, 32.6, 45, 180 }, + [118] = { 74.4, 32.6, 45, 180 }, + [119] = { 74.2, 32.6, 45, 180 }, + [120] = { 73.9, 32.6, 45, 180 }, + [121] = { 73.9, 31.6, 45, 180 }, + [122] = { 74.2, 31.6, 45, 180 }, + [123] = { 74.4, 31.6, 45, 180 }, + [124] = { 13.6, 42.3, 47, 0 }, + [125] = { 13.9, 42.2, 47, 0 }, + [126] = { 13.4, 42.1, 47, 0 }, + [127] = { 13.3, 42, 47, 0 }, + [128] = { 14.3, 41.9, 47, 0 }, + [129] = { 14, 41.9, 47, 0 }, + [130] = { 14.2, 41.9, 47, 0 }, + [131] = { 14.4, 41.8, 47, 0 }, + [132] = { 13.2, 41.8, 47, 0 }, + [133] = { 14.1, 41.7, 47, 0 }, + [134] = { 14.4, 41.6, 47, 0 }, + [135] = { 13.6, 41.6, 47, 0 }, + [136] = { 13.7, 41.6, 47, 0 }, + [137] = { 14, 41.5, 47, 0 }, + [138] = { 14.1, 41.4, 47, 0 }, + [139] = { 14.4, 41.3, 47, 0 }, + [140] = { 14.2, 41.2, 47, 0 }, + [141] = { 14.3, 41.2, 47, 0 }, + [142] = { 83, 38.2, 51, 180 }, + [143] = { 81.9, 38.2, 51, 180 }, + [144] = { 81.3, 37.6, 51, 180 }, + [145] = { 81.7, 37, 51, 180 }, + [146] = { 82.6, 36.6, 51, 180 }, + [147] = { 81.9, 36.6, 51, 180 }, + [148] = { 81.3, 36.5, 51, 180 }, + [149] = { 82, 36, 51, 180 }, + [150] = { 60.2, 53.8, 85, 180 }, + [151] = { 60, 53.7, 85, 180 }, + [152] = { 60.5, 53.2, 85, 180 }, + [153] = { 61.6, 53, 85, 180 }, + [154] = { 60, 53, 85, 180 }, + [155] = { 60.2, 52.8, 85, 180 }, + [156] = { 62, 52.8, 85, 180 }, + [157] = { 60.1, 52.7, 85, 180 }, + [158] = { 62, 52.7, 85, 180 }, + [159] = { 59.6, 52.6, 85, 180 }, + [160] = { 61.4, 52.6, 85, 180 }, + [161] = { 62, 52.5, 85, 180 }, + [162] = { 59.6, 52.4, 85, 180 }, + [163] = { 59.8, 52.3, 85, 180 }, + [164] = { 62.1, 52.2, 85, 180 }, + [165] = { 62.1, 52.1, 85, 180 }, + [166] = { 59.5, 52.1, 85, 180 }, + [167] = { 61.5, 52.1, 85, 180 }, + [168] = { 62, 51.9, 85, 180 }, + [169] = { 61.7, 51.2, 85, 180 }, + [170] = { 61.4, 50.9, 85, 180 }, + [171] = { 61.3, 50.5, 85, 180 }, + [172] = { 57.4, 60.6, 141, 180 }, + [173] = { 56.3, 60.4, 141, 180 }, + [174] = { 56, 58.8, 141, 180 }, + [175] = { 25.6, 55.8, 141, 180 }, + [176] = { 31.2, 50.1, 141, 0 }, + [177] = { 36.8, 44.7, 148, 180 }, + [178] = { 37, 44.5, 148, 180 }, + [179] = { 37.2, 43.8, 148, 180 }, + [180] = { 37, 43.4, 148, 180 }, + [181] = { 46.5, 61.6, 215, 180 }, + [182] = { 46.4, 61.3, 215, 180 }, + [183] = { 46.5, 61.1, 215, 180 }, + [184] = { 46.6, 60.8, 215, 180 }, + [185] = { 39.2, 30.3, 215, 180 }, + [186] = { 39.1, 30.3, 215, 180 }, + [187] = { 39.1, 30, 215, 180 }, + [188] = { 39.1, 29.8, 215, 180 }, + [189] = { 38.9, 29.3, 215, 180 }, + [190] = { 50.4, 58.6, 267, 180 }, + [191] = { 62.7, 19.9, 267, 180 }, + [192] = { 61.5, 19.3, 267, 180 }, + [193] = { 62.1, 19, 267, 180 }, + [194] = { 98.9, 0.8, 267, 0 }, + [195] = { 99.3, 0.7, 267, 0 }, + [196] = { 98.7, 0.7, 267, 0 }, + [197] = { 98.5, 0.5, 267, 0 }, + [198] = { 73.9, 60.9, 331, 180 }, + [199] = { 74.2, 60.8, 331, 180 }, + [200] = { 73.8, 60.6, 331, 180 }, + [201] = { 74.2, 60.4, 331, 180 }, + [202] = { 74, 60.3, 331, 180 }, + [203] = { 37, 50.4, 331, 180 }, + [204] = { 37.3, 50.1, 331, 180 }, + [205] = { 36.5, 50.1, 331, 180 }, + [206] = { 36.4, 49.6, 331, 180 }, + [207] = { 37, 49.4, 331, 180 }, + [208] = { 36.9, 49.3, 331, 180 }, + [209] = { 30.8, 43.8, 357, 180 }, + [210] = { 30.8, 43.8, 357, 0 }, + [211] = { 31.3, 43.8, 357, 0 }, + [212] = { 31.3, 43.8, 357, 180 }, + [213] = { 30.6, 43.7, 357, 0 }, + [214] = { 30.6, 43.7, 357, 180 }, + [215] = { 31.4, 43.5, 357, 0 }, + [216] = { 31.4, 43.5, 357, 180 }, + [217] = { 30.6, 43.3, 357, 0 }, + [218] = { 30.6, 43.3, 357, 180 }, + [219] = { 31.4, 43.1, 357, 0 }, + [220] = { 31.4, 43.1, 357, 180 }, + [221] = { 30.6, 42.9, 357, 0 }, + [222] = { 30.6, 42.9, 357, 180 }, + [223] = { 31.2, 42.8, 357, 180 }, + [224] = { 31.2, 42.8, 357, 0 }, + [225] = { 30.8, 42.6, 357, 0 }, + [226] = { 30.8, 42.6, 357, 180 }, + [227] = { 45.7, 51.7, 400, 180 }, + [228] = { 46.4, 51.3, 400, 180 }, + [229] = { 45.9, 51, 400, 180 }, + [230] = { 23.9, 68.7, 405, 180 }, + [231] = { 23.9, 68, 405, 180 }, + [232] = { 24.3, 68, 405, 180 }, + [233] = { 24.2, 67.9, 405, 180 }, + [234] = { 66.3, 7.6, 405, 180 }, + [235] = { 66.5, 7.6, 405, 180 }, + [236] = { 65.7, 7.1, 405, 180 }, + [237] = { 66.9, 6.7, 405, 180 }, + [238] = { 44.8, 80.3, 406, 180 }, + [239] = { 45, 80.2, 406, 180 }, + [240] = { 44.3, 79.8, 406, 180 }, + [241] = { 45.3, 79.5, 406, 180 }, + [242] = { 50.1, 63.6, 406, 180 }, + [243] = { 50.4, 63.2, 406, 180 }, + [244] = { 50.3, 63.2, 406, 180 }, + [245] = { 50.5, 62.9, 406, 180 }, + [246] = { 52, 29.2, 440, 180 }, + [247] = { 51.9, 29.2, 440, 180 }, + [248] = { 51.5, 29, 440, 180 }, + [249] = { 51, 28.6, 440, 180 }, + [250] = { 52.5, 28.3, 440, 180 }, + [251] = { 52.5, 28.2, 440, 180 }, + [252] = { 52.4, 28.2, 440, 180 }, + [253] = { 52.8, 28.1, 440, 180 }, + [254] = { 52.7, 28, 440, 180 }, + [255] = { 52.6, 27.7, 440, 180 }, + [256] = { 52.4, 27.7, 440, 180 }, + [257] = { 52.6, 27.6, 440, 180 }, + [258] = { 51.9, 26.5, 440, 180 }, + [259] = { 51.3, 26.5, 440, 180 }, + [260] = { 61.5, 39.3, 618, 180 }, + [261] = { 61.3, 39.3, 618, 180 }, + [262] = { 61.2, 39.3, 618, 180 }, + [263] = { 61.1, 39.2, 618, 180 }, + [264] = { 61.3, 39.2, 618, 180 }, + [265] = { 61.5, 39.2, 618, 180 }, + [266] = { 61.5, 39, 618, 180 }, + [267] = { 61.2, 39, 618, 180 }, + [268] = { 61.1, 39, 618, 180 }, + [269] = { 61.1, 38.8, 618, 180 }, + [270] = { 61.5, 38.8, 618, 180 }, + [271] = { 61.2, 38.7, 618, 180 }, + [272] = { 61.7, 38.5, 618, 180 }, + [273] = { 51.8, 40, 1377, 180 }, + [274] = { 51.5, 39.8, 1377, 180 }, + [275] = { 52.4, 39.5, 1377, 180 }, + [276] = { 51.3, 39.2, 1377, 180 }, + [277] = { 52.5, 39.1, 1377, 180 }, + [278] = { 51.8, 38.9, 1377, 180 }, + [279] = { 52.3, 38.5, 1377, 180 }, + [280] = { 67.9, 49.6, 1497, 180 }, + [281] = { 64, 49.5, 1497, 180 }, + [282] = { 68.6, 48.7, 1497, 180 }, + [283] = { 63.2, 48.7, 1497, 180 }, + [284] = { 69.9, 46, 1497, 180 }, + [285] = { 62, 45.9, 1497, 180 }, + [286] = { 66.7, 44.1, 1497, 180 }, + [287] = { 65.2, 44.1, 1497, 180 }, + [288] = { 69.4, 44.1, 1497, 180 }, + [289] = { 69.9, 42.3, 1497, 180 }, + [290] = { 62, 42.2, 1497, 180 }, + [291] = { 68.7, 39.5, 1497, 180 }, + [292] = { 63.3, 39.4, 1497, 180 }, + [293] = { 68, 38.7, 1497, 180 }, + [294] = { 64, 38.6, 1497, 180 }, + [295] = { 64.1, 72.2, 1519, 180 }, + [296] = { 36.6, 62.1, 1537, 180 }, + [297] = { 35.7, 60.4, 1537, 180 }, + [298] = { 34.8, 58.7, 1537, 180 }, + [299] = { 18.2, 51.8, 1537, 180 }, + [300] = { 55.5, 73.8, 1637, 180 }, + [301] = { 54.7, 72.9, 1637, 180 }, + [302] = { 49.2, 71.2, 1637, 180 }, + [303] = { 54.5, 70.6, 1637, 180 }, + [304] = { 50.7, 70.3, 1637, 180 }, + [305] = { 48, 69.8, 1637, 180 }, + [306] = { 52.9, 69, 1637, 180 }, + [307] = { 53.4, 66, 1637, 180 }, + [308] = { 51.6, 64, 1637, 180 }, + [309] = { 46.4, 66.3, 1638, 180 }, + [310] = { 46, 66, 1638, 180 }, + [311] = { 45.6, 64.9, 1638, 180 }, + [312] = { 45.7, 63.9, 1638, 180 }, + [313] = { 44.7, 61.4, 1638, 180 }, + [314] = { 40.4, 42.6, 1657, 180 }, + [315] = { 67.2, 15.4, 1657, 0 }, + [316] = { 6, 92.9, 2100, 180 }, + [317] = { 6, 89.3, 2100, 180 }, + [318] = { 8.3, 89, 2100, 180 }, + [319] = { 7.7, 88.4, 2100, 180 }, + [320] = { 16.3, 69.3, 5602, 180 }, + [321] = { 16.4, 69.1, 5602, 180 }, + [322] = { 16.8, 68.9, 5602, 180 }, + [323] = { 16.5, 68.7, 5602, 180 }, + [324] = { 16.6, 68.5, 5602, 180 }, + }, + }, + [180473] = { + ["coords"] = { + [1] = { 54.4, 33.7, 357, 900 }, + [2] = { 72.4, 15.4, 1377, 900 }, + [3] = { 26.5, 60.5, 2557, 900 }, + }, + }, + [180474] = { + ["coords"] = { + [1] = { 54.5, 34.2, 357, 900 }, + [2] = { 72.9, 16, 1377, 900 }, + [3] = { 27, 63.3, 2557, 900 }, + }, + }, + [180475] = { + ["coords"] = { + [1] = { 54.6, 33.7, 357, 900 }, + [2] = { 72.7, 15.1, 1377, 900 }, + [3] = { 27.6, 60.7, 2557, 900 }, + }, + }, + [180476] = { + ["coords"] = { + [1] = { 54.8, 31.9, 357, 900 }, + [2] = { 71.4, 12, 1377, 900 }, + [3] = { 28.8, 51.3, 2557, 900 }, + }, + }, + [180477] = { + ["coords"] = { + [1] = { 54.9, 32.3, 357, 900 }, + [2] = { 71.9, 12.3, 1377, 900 }, + [3] = { 29.3, 53.1, 2557, 900 }, + }, + }, + [180478] = { + ["coords"] = { + [1] = { 54.6, 31.8, 357, 900 }, + [2] = { 71, 12.3, 1377, 900 }, + [3] = { 27.6, 50.6, 2557, 900 }, + }, + }, + [180479] = { + ["coords"] = { + [1] = { 54.5, 32.2, 357, 900 }, + [2] = { 71.3, 12.9, 1377, 900 }, + [3] = { 27.4, 52.6, 2557, 900 }, + }, + }, + [180480] = { + ["coords"] = { + [1] = { 54.9, 32.4, 357, 900 }, + [2] = { 72, 12.4, 1377, 900 }, + [3] = { 29.5, 53.6, 2557, 900 }, + }, + }, + [180497] = { + ["coords"] = { + [1] = { 60, 7.9, 33, 0 }, + [2] = { 47.3, 19.6, 1977, 600 }, + }, + }, + [180501] = { + ["coords"] = { + [1] = { 54, 83.4, 357, 300 }, + [2] = { 52.5, 82.9, 357, 300 }, + [3] = { 55.5, 82.8, 357, 300 }, + [4] = { 52.7, 82.7, 357, 300 }, + [5] = { 53.9, 82.4, 357, 300 }, + [6] = { 51.7, 82.4, 357, 300 }, + [7] = { 52.1, 81.5, 357, 300 }, + [8] = { 22.2, 18.7, 1377, 300 }, + [9] = { 21, 18.1, 1377, 300 }, + [10] = { 24, 15.5, 1377, 300 }, + [11] = { 22, 14.5, 1377, 300 }, + [12] = { 24, 13.7, 1377, 300 }, + [13] = { 26.6, 13.2, 1377, 300 }, + [14] = { 24.4, 11.8, 1377, 300 }, + [15] = { 21.5, 10.8, 1377, 300 }, + [16] = { 27.4, 10.5, 1377, 300 }, + [17] = { 21.8, 10.3, 1377, 300 }, + [18] = { 24.1, 9.7, 1377, 300 }, + [19] = { 19.8, 9.7, 1377, 300 }, + [20] = { 20.6, 7.9, 1377, 300 }, + }, + ["fac"] = "AH", + }, + [180523] = "_", + [180524] = { + ["coords"] = { + [1] = { 43.3, 72, 12, 25 }, + [2] = { 41.9, 71.1, 12, 180 }, + [3] = { 44.3, 70.8, 12, 25 }, + [4] = { 41.9, 70.6, 12, 180 }, + [5] = { 41.4, 70.3, 12, 180 }, + [6] = { 42.3, 69.7, 12, 180 }, + [7] = { 41, 69.7, 12, 180 }, + [8] = { 43.4, 69.5, 12, 180 }, + [9] = { 41.7, 69.4, 12, 180 }, + [10] = { 40.2, 69.3, 12, 180 }, + [11] = { 40.9, 68.9, 12, 180 }, + [12] = { 40.6, 68.8, 12, 180 }, + [13] = { 42.1, 68.4, 12, 180 }, + [14] = { 41.6, 68.3, 12, 180 }, + }, + ["fac"] = "AH", + }, + [180525] = { + ["coords"] = { + [1] = { 43.3, 72, 12, 25 }, + [2] = { 41.9, 71.1, 12, 180 }, + [3] = { 44.3, 70.8, 12, 25 }, + [4] = { 41.9, 70.6, 12, 180 }, + [5] = { 41.4, 70.3, 12, 180 }, + [6] = { 42.3, 69.7, 12, 180 }, + [7] = { 41, 69.7, 12, 180 }, + [8] = { 43.4, 69.5, 12, 180 }, + [9] = { 41.7, 69.4, 12, 180 }, + [10] = { 40.2, 69.3, 12, 180 }, + [11] = { 40.9, 68.9, 12, 180 }, + [12] = { 40.6, 68.8, 12, 180 }, + [13] = { 42.1, 68.4, 12, 180 }, + [14] = { 41.6, 68.3, 12, 180 }, + }, + ["fac"] = "AH", + }, + [180526] = { + ["coords"] = { + [1] = { 47.9, 24.3, 1977, 600 }, + }, + }, + [180570] = { + ["coords"] = { + [1] = { 51.4, 59, 267, 2 }, + [2] = { 51.4, 59, 267, 180 }, + }, + ["fac"] = "H", + }, + [180573] = { + ["coords"] = { + [1] = { 55, 67.7, 12, 25 }, + [2] = { 44.1, 62.8, 215, 25 }, + }, + }, + [180582] = { + ["coords"] = { + [1] = { 63.1, 53.2, 17, 180 }, + [2] = { 63, 52.8, 17, 900 }, + [3] = { 63, 52.4, 17, 3600 }, + [4] = { 63.5, 50.1, 17, 180 }, + [5] = { 64.9, 47.7, 17, 900 }, + [6] = { 64.8, 47.3, 17, 900 }, + [7] = { 64.6, 45.7, 17, 180 }, + [8] = { 65.9, 43.4, 17, 3600 }, + [9] = { 64.5, 43.1, 17, 180 }, + [10] = { 63.6, 41.6, 17, 3600 }, + [11] = { 63.5, 38.8, 17, 900 }, + [12] = { 62.7, 38.7, 17, 3600 }, + [13] = { 63.1, 38.5, 17, 3600 }, + [14] = { 63.2, 38, 17, 900 }, + [15] = { 63.5, 36.8, 17, 900 }, + [16] = { 64.6, 36.2, 17, 180 }, + [17] = { 5.2, 68, 33, 1800 }, + [18] = { 1.2, 62.8, 33, 1800 }, + [19] = { 51.5, 67.6, 38, 180 }, + [20] = { 47.1, 62.8, 38, 180 }, + [21] = { 62.1, 46.8, 38, 180 }, + [22] = { 54.8, 43.7, 38, 180 }, + [23] = { 59.4, 42, 38, 180 }, + [24] = { 52.7, 41.5, 38, 180 }, + [25] = { 41.3, 40.5, 38, 180 }, + [26] = { 41.8, 38.9, 38, 180 }, + [27] = { 41.6, 36.9, 38, 180 }, + [28] = { 52.6, 35.6, 38, 180 }, + [29] = { 41.9, 34.8, 38, 180 }, + [30] = { 56.8, 34.4, 38, 180 }, + [31] = { 57.5, 29.6, 38, 180 }, + [32] = { 56.2, 26.9, 38, 180 }, + [33] = { 57.6, 23.1, 38, 180 }, + [34] = { 51.3, 19.5, 38, 180 }, + [35] = { 42.4, 15.5, 38, 180 }, + [36] = { 42.4, 14.1, 38, 180 }, + [37] = { 28.4, 79, 40, 3600 }, + [38] = { 25.4, 59.6, 40, 180 }, + [39] = { 25.4, 49.3, 40, 180 }, + [40] = { 25.7, 43.3, 40, 3600 }, + [41] = { 26.4, 39.7, 40, 3600 }, + [42] = { 33.8, 20.7, 40, 3600 }, + [43] = { 34.4, 17.5, 40, 3600 }, + [44] = { 35.7, 17.2, 40, 3600 }, + [45] = { 46.4, 7.5, 40, 3600 }, + [46] = { 42.2, 75.9, 130, 3600 }, + [47] = { 41.1, 71.5, 130, 3600 }, + [48] = { 66.8, 37.9, 130, 180 }, + [49] = { 60.3, 36.5, 130, 180 }, + [50] = { 64.8, 35.8, 130, 180 }, + [51] = { 64.1, 34.6, 130, 180 }, + [52] = { 38.2, 34.5, 130, 3600 }, + [53] = { 58.9, 33.8, 130, 180 }, + [54] = { 38.2, 33.2, 130, 3600 }, + [55] = { 37, 30.3, 130, 3600 }, + [56] = { 35.5, 24.1, 130, 3600 }, + [57] = { 64.1, 12.3, 130, 180 }, + [58] = { 32, 83.8, 148, 3600 }, + [59] = { 33.8, 82.7, 148, 900 }, + [60] = { 31.9, 82.4, 148, 3600 }, + [61] = { 33, 81.9, 148, 3600 }, + [62] = { 34.2, 80, 148, 3600 }, + [63] = { 35.8, 77, 148, 3600 }, + [64] = { 35.9, 74.1, 148, 900 }, + [65] = { 35, 71.6, 148, 3600 }, + [66] = { 35.9, 69.8, 148, 900 }, + [67] = { 36.6, 67.4, 148, 3600 }, + [68] = { 36.2, 64.2, 148, 3600 }, + [69] = { 36.5, 61.9, 148, 180 }, + [70] = { 35.9, 59.8, 148, 3600 }, + [71] = { 36.5, 57.1, 148, 3600 }, + [72] = { 35.8, 56.2, 148, 180 }, + [73] = { 35.9, 51.5, 148, 3600 }, + [74] = { 35.9, 46.7, 148, 180 }, + [75] = { 34.7, 43.5, 148, 3600 }, + [76] = { 34.5, 42.3, 148, 3600 }, + [77] = { 32.4, 42.3, 148, 180 }, + [78] = { 31.5, 41.9, 148, 3600 }, + [79] = { 33.3, 41.7, 148, 900 }, + [80] = { 32.5, 41.3, 148, 3600 }, + [81] = { 36.7, 38.6, 148, 3600 }, + [82] = { 37, 36.1, 148, 900 }, + [83] = { 37.6, 34.1, 148, 3600 }, + [84] = { 38.3, 31.3, 148, 900 }, + [85] = { 42.1, 31.3, 148, 900 }, + [86] = { 40, 31, 148, 900 }, + [87] = { 41.5, 23.6, 148, 900 }, + [88] = { 48.7, 20.3, 148, 900 }, + [89] = { 56.6, 88.4, 408, 1800 }, + [90] = { 63.9, 87.6, 408, 1800 }, + [91] = { 60.6, 85.3, 408, 1800 }, + [92] = { 50.4, 84.9, 408, 1800 }, + [93] = { 43.3, 83.2, 408, 1800 }, + [94] = { 32.7, 80.5, 408, 1800 }, + [95] = { 82.4, 74.8, 408, 1800 }, + [96] = { 29.3, 68.4, 408, 1800 }, + [97] = { 74.2, 64.1, 408, 1800 }, + [98] = { 72.1, 59.8, 408, 1800 }, + [99] = { 37.1, 54.5, 408, 1800 }, + [100] = { 71, 47.6, 408, 1800 }, + [101] = { 42.1, 44.3, 408, 1800 }, + [102] = { 50.6, 44.1, 408, 1800 }, + [103] = { 64, 44.1, 408, 1800 }, + [104] = { 59.2, 41.7, 408, 1800 }, + [105] = { 57.2, 39.3, 408, 1800 }, + [106] = { 43, 4.1, 5179, 3600 }, + [107] = { 24.9, 78.9, 5602, 180 }, + [108] = { 22.6, 76.4, 5602, 180 }, + [109] = { 30.3, 68.2, 5602, 180 }, + [110] = { 26.6, 66.6, 5602, 180 }, + [111] = { 29, 65.8, 5602, 180 }, + [112] = { 25.6, 65.5, 5602, 180 }, + [113] = { 19.7, 65, 5602, 180 }, + [114] = { 19.9, 64.1, 5602, 180 }, + [115] = { 19.9, 63.1, 5602, 180 }, + [116] = { 25.5, 62.4, 5602, 180 }, + [117] = { 20, 62, 5602, 180 }, + [118] = { 27.6, 61.8, 5602, 180 }, + [119] = { 28, 59.4, 5602, 180 }, + [120] = { 27.3, 58, 5602, 180 }, + [121] = { 28, 56, 5602, 180 }, + [122] = { 24.8, 54.2, 5602, 180 }, + [123] = { 20.3, 52.2, 5602, 180 }, + [124] = { 20.3, 51.4, 5602, 180 }, + }, + }, + [180583] = { + ["coords"] = { + [1] = { 54, 83.4, 357, 900 }, + [2] = { 56, 83.4, 357, 900 }, + [3] = { 52.5, 82.9, 357, 900 }, + [4] = { 55.5, 82.8, 357, 900 }, + [5] = { 52.7, 82.7, 357, 900 }, + [6] = { 53.9, 82.4, 357, 900 }, + [7] = { 51.7, 82.4, 357, 900 }, + [8] = { 53.1, 81.7, 357, 900 }, + [9] = { 52.1, 81.5, 357, 900 }, + [10] = { 52.6, 81.3, 357, 900 }, + [11] = { 19.7, 22.1, 1377, 900 }, + [12] = { 22.2, 18.7, 1377, 900 }, + [13] = { 21, 18.1, 1377, 900 }, + [14] = { 26.4, 15.9, 1377, 900 }, + [15] = { 24, 15.5, 1377, 900 }, + [16] = { 22, 14.5, 1377, 900 }, + [17] = { 24, 13.7, 1377, 900 }, + [18] = { 26.6, 13.2, 1377, 900 }, + [19] = { 24.4, 11.8, 1377, 900 }, + [20] = { 28.4, 11.7, 1377, 900 }, + [21] = { 21.5, 10.8, 1377, 900 }, + [22] = { 27.4, 10.5, 1377, 900 }, + [23] = { 21.8, 10.3, 1377, 900 }, + [24] = { 20.7, 10.3, 1377, 900 }, + [25] = { 24.1, 9.7, 1377, 900 }, + [26] = { 19.8, 9.7, 1377, 900 }, + [27] = { 22.7, 8.3, 1377, 900 }, + [28] = { 20.6, 7.9, 1377, 900 }, + [29] = { 21.5, 7.6, 1377, 900 }, + }, + }, + [180605] = { + ["coords"] = { + [1] = { 45.3, 42.2, 1377, 25 }, + [2] = { 45.5, 41.7, 1377, 25 }, + [3] = { 56.5, 35.4, 1377, 25 }, + }, + }, + [180631] = { + ["coords"] = { + [1] = { 26.8, 45.6, 2677, 180 }, + }, + }, + [180632] = { + ["coords"] = { + [1] = { 39.1, 48.3, 2677, 180 }, + }, + }, + [180633] = { + ["coords"] = { + [1] = { 28.7, 89.1, 1377, 2 }, + [2] = { 57.8, 0.8, 3478, 2 }, + }, + }, + [180634] = { + ["coords"] = { + [1] = { 56.6, 68.6, 5147, 7200 }, + }, + }, + [180635] = { + ["coords"] = { + [1] = { 57.1, 73.3, 5147, 7200 }, + }, + }, + [180636] = { + ["coords"] = { + [1] = { 47.8, 58, 3428, 7200 }, + [2] = { 31.2, 41.6, 5147, 7200 }, + }, + }, + [180642] = { + ["coords"] = { + [1] = { 46.2, 86.7, 130, 2 }, + [2] = { 47.5, 16.4, 5179, 2 }, + }, + }, + [180651] = { + ["coords"] = { + [1] = { 42.2, 62.5, 12, 25 }, + [2] = { 35.1, 49.7, 12, 25 }, + [3] = { 44.6, 58.4, 215, 25 }, + }, + }, + [180654] = { + ["coords"] = { + [1] = { 53, 87.5, 2597, 300 }, + [2] = { 54.8, 86.5, 2597, 300 }, + [3] = { 51.4, 85.5, 2597, 300 }, + [4] = { 55.7, 84.5, 2597, 300 }, + [5] = { 52, 84.1, 2597, 300 }, + [6] = { 52.3, 83.1, 2597, 300 }, + [7] = { 55.9, 82.3, 2597, 300 }, + [8] = { 51.8, 80.7, 2597, 300 }, + [9] = { 57.4, 80, 2597, 300 }, + [10] = { 52.5, 79.8, 2597, 300 }, + [11] = { 49, 79.3, 2597, 300 }, + [12] = { 50.8, 79.1, 2597, 300 }, + [13] = { 48.8, 77.3, 2597, 300 }, + [14] = { 51.9, 76.8, 2597, 300 }, + [15] = { 57.1, 76.8, 2597, 300 }, + [16] = { 54.4, 76.8, 2597, 300 }, + [17] = { 50.2, 74.8, 2597, 300 }, + [18] = { 52.1, 74.7, 2597, 300 }, + [19] = { 48.3, 74.6, 2597, 300 }, + [20] = { 49.3, 72.8, 2597, 300 }, + [21] = { 47.1, 72.2, 2597, 300 }, + [22] = { 54.5, 71.5, 2597, 300 }, + [23] = { 55.6, 70.9, 2597, 300 }, + [24] = { 50, 70.5, 2597, 300 }, + [25] = { 53.7, 70.4, 2597, 300 }, + [26] = { 48.6, 70.2, 2597, 300 }, + [27] = { 46.9, 67.7, 2597, 300 }, + [28] = { 48.3, 67.2, 2597, 300 }, + [29] = { 50.2, 67.2, 2597, 300 }, + [30] = { 48.6, 65.8, 2597, 300 }, + [31] = { 51.3, 65.4, 2597, 300 }, + [32] = { 49.2, 65, 2597, 300 }, + [33] = { 49.4, 64.2, 2597, 300 }, + [34] = { 50.4, 62.7, 2597, 300 }, + [35] = { 51.4, 61.9, 2597, 300 }, + [36] = { 50.4, 59.6, 2597, 300 }, + [37] = { 48.7, 59.2, 2597, 300 }, + [38] = { 51.9, 57.9, 2597, 300 }, + [39] = { 50.6, 57.2, 2597, 300 }, + [40] = { 52.4, 55.1, 2597, 300 }, + [41] = { 51.4, 54.9, 2597, 300 }, + [42] = { 50.3, 54.5, 2597, 300 }, + [43] = { 43.1, 53.2, 2597, 300 }, + [44] = { 49.6, 52.3, 2597, 300 }, + [45] = { 45.2, 51.8, 2597, 300 }, + [46] = { 47.7, 51.7, 2597, 300 }, + [47] = { 50.4, 50.5, 2597, 300 }, + [48] = { 47.8, 50.2, 2597, 300 }, + [49] = { 52.9, 48.2, 2597, 300 }, + [50] = { 42.7, 47.9, 2597, 300 }, + [51] = { 51.5, 44.5, 2597, 300 }, + [52] = { 53.2, 44.5, 2597, 300 }, + [53] = { 44.3, 44.4, 2597, 300 }, + [54] = { 55.2, 43.1, 2597, 300 }, + [55] = { 45.5, 42.2, 2597, 300 }, + [56] = { 50.9, 41.9, 2597, 300 }, + [57] = { 53.6, 40.6, 2597, 300 }, + [58] = { 46.5, 39.7, 2597, 300 }, + [59] = { 54.4, 39.6, 2597, 300 }, + [60] = { 51.3, 39.5, 2597, 300 }, + [61] = { 50.3, 38.2, 2597, 300 }, + [62] = { 52.3, 38.2, 2597, 300 }, + [63] = { 52.4, 36.1, 2597, 300 }, + [64] = { 53, 35.4, 2597, 300 }, + [65] = { 48.2, 34.6, 2597, 300 }, + [66] = { 49.6, 33.6, 2597, 300 }, + [67] = { 50.2, 31.8, 2597, 300 }, + [68] = { 52.7, 29.3, 2597, 300 }, + [69] = { 41.1, 28.9, 2597, 300 }, + [70] = { 44.2, 28.1, 2597, 300 }, + [71] = { 51.6, 28.1, 2597, 300 }, + [72] = { 46.2, 27.1, 2597, 300 }, + [73] = { 42.1, 26.7, 2597, 300 }, + [74] = { 48.1, 24.9, 2597, 300 }, + [75] = { 50.8, 24.9, 2597, 300 }, + [76] = { 45, 24.5, 2597, 300 }, + [77] = { 42.9, 23.7, 2597, 300 }, + [78] = { 47.8, 22.8, 2597, 300 }, + [79] = { 41.7, 21.1, 2597, 300 }, + [80] = { 49.5, 21, 2597, 300 }, + [81] = { 43.9, 20.4, 2597, 300 }, + [82] = { 43.5, 19.3, 2597, 300 }, + [83] = { 42.2, 18.6, 2597, 300 }, + [84] = { 50.3, 17.6, 2597, 300 }, + [85] = { 44.7, 17.3, 2597, 300 }, + [86] = { 43.1, 17, 2597, 300 }, + [87] = { 48.5, 15.4, 2597, 300 }, + [88] = { 41.2, 15.3, 2597, 300 }, + [89] = { 42.1, 15.1, 2597, 300 }, + [90] = { 48.1, 14.9, 2597, 300 }, + [91] = { 44.6, 13.9, 2597, 300 }, + [92] = { 52.8, 13.2, 2597, 300 }, + [93] = { 38.3, 81.8, 5130, 300 }, + [94] = { 48.8, 78.1, 5130, 300 }, + [95] = { 67.1, 68.7, 5130, 300 }, + [96] = { 32.7, 59.3, 5130, 300 }, + [97] = { 48.5, 53.5, 5130, 300 }, + [98] = { 42.6, 46, 5130, 300 }, + [99] = { 35.5, 31.7, 5130, 300 }, + }, + }, + [180655] = { + ["coords"] = { + [1] = { 63.1, 53.2, 17, 3600 }, + [2] = { 63, 52.8, 17, 180 }, + [3] = { 63, 52.4, 17, 180 }, + [4] = { 63.5, 50.1, 17, 180 }, + [5] = { 64.9, 47.7, 17, 180 }, + [6] = { 64.8, 47.3, 17, 180 }, + [7] = { 64.6, 45.7, 17, 180 }, + [8] = { 65.9, 43.4, 17, 3600 }, + [9] = { 64.5, 43.1, 17, 180 }, + [10] = { 63.6, 41.6, 17, 900 }, + [11] = { 63.5, 38.8, 17, 180 }, + [12] = { 62.7, 38.7, 17, 3600 }, + [13] = { 63.1, 38.5, 17, 180 }, + [14] = { 63.2, 38, 17, 180 }, + [15] = { 63.5, 36.8, 17, 180 }, + [16] = { 64.6, 36.2, 17, 180 }, + [17] = { 51.5, 67.6, 38, 180 }, + [18] = { 47.1, 62.8, 38, 180 }, + [19] = { 62.1, 46.8, 38, 180 }, + [20] = { 54.8, 43.7, 38, 180 }, + [21] = { 59.4, 42, 38, 180 }, + [22] = { 52.7, 41.5, 38, 180 }, + [23] = { 41.3, 40.5, 38, 180 }, + [24] = { 41.8, 38.9, 38, 180 }, + [25] = { 41.6, 36.9, 38, 180 }, + [26] = { 52.6, 35.6, 38, 180 }, + [27] = { 41.9, 34.8, 38, 180 }, + [28] = { 56.8, 34.4, 38, 180 }, + [29] = { 57.5, 29.6, 38, 180 }, + [30] = { 56.2, 26.9, 38, 180 }, + [31] = { 57.6, 23.1, 38, 180 }, + [32] = { 51.3, 19.5, 38, 180 }, + [33] = { 42.4, 15.5, 38, 180 }, + [34] = { 42.4, 14.1, 38, 3600 }, + [35] = { 28.4, 79, 40, 180 }, + [36] = { 25.4, 59.6, 40, 3600 }, + [37] = { 25.4, 49.3, 40, 3600 }, + [38] = { 25.7, 43.3, 40, 180 }, + [39] = { 26.4, 39.7, 40, 180 }, + [40] = { 33.8, 20.7, 40, 180 }, + [41] = { 34.4, 17.5, 40, 180 }, + [42] = { 35.7, 17.2, 40, 180 }, + [43] = { 46.4, 7.5, 40, 180 }, + [44] = { 42.2, 75.9, 130, 180 }, + [45] = { 41.1, 71.5, 130, 180 }, + [46] = { 66.8, 37.9, 130, 180 }, + [47] = { 60.3, 36.5, 130, 180 }, + [48] = { 64.8, 35.8, 130, 180 }, + [49] = { 64.1, 34.6, 130, 180 }, + [50] = { 38.2, 34.5, 130, 180 }, + [51] = { 58.9, 33.8, 130, 180 }, + [52] = { 38.2, 33.2, 130, 180 }, + [53] = { 37, 30.3, 130, 180 }, + [54] = { 35.5, 24.1, 130, 180 }, + [55] = { 64.1, 12.3, 130, 180 }, + [56] = { 32, 83.8, 148, 180 }, + [57] = { 33.8, 82.7, 148, 3600 }, + [58] = { 31.9, 82.4, 148, 180 }, + [59] = { 33, 81.9, 148, 180 }, + [60] = { 34.2, 80, 148, 180 }, + [61] = { 35.8, 77, 148, 180 }, + [62] = { 35.9, 74.1, 148, 180 }, + [63] = { 35, 71.6, 148, 180 }, + [64] = { 35.9, 69.8, 148, 180 }, + [65] = { 36.6, 67.4, 148, 180 }, + [66] = { 36.2, 64.2, 148, 180 }, + [67] = { 36.5, 61.9, 148, 3600 }, + [68] = { 35.9, 59.8, 148, 180 }, + [69] = { 36.5, 57.1, 148, 180 }, + [70] = { 35.8, 56.2, 148, 180 }, + [71] = { 35.9, 51.5, 148, 900 }, + [72] = { 35.9, 46.7, 148, 180 }, + [73] = { 34.7, 43.5, 148, 180 }, + [74] = { 34.5, 42.3, 148, 3600 }, + [75] = { 32.4, 42.3, 148, 3600 }, + [76] = { 31.5, 41.9, 148, 180 }, + [77] = { 33.3, 41.7, 148, 180 }, + [78] = { 32.5, 41.3, 148, 180 }, + [79] = { 36.7, 38.6, 148, 180 }, + [80] = { 37, 36.1, 148, 180 }, + [81] = { 37.6, 34.1, 148, 900 }, + [82] = { 38.3, 31.3, 148, 180 }, + [83] = { 42.1, 31.3, 148, 180 }, + [84] = { 40, 31, 148, 180 }, + [85] = { 41.3, 23.5, 148, 180 }, + [86] = { 48.7, 20.3, 148, 180 }, + [87] = { 43, 4.1, 5179, 180 }, + [88] = { 24.9, 78.9, 5602, 180 }, + [89] = { 22.6, 76.4, 5602, 180 }, + [90] = { 30.3, 68.2, 5602, 180 }, + [91] = { 26.6, 66.6, 5602, 180 }, + [92] = { 29, 65.8, 5602, 180 }, + [93] = { 25.6, 65.5, 5602, 180 }, + [94] = { 19.7, 65, 5602, 180 }, + [95] = { 19.9, 64.1, 5602, 180 }, + [96] = { 19.9, 63.1, 5602, 180 }, + [97] = { 25.5, 62.4, 5602, 180 }, + [98] = { 20, 62, 5602, 180 }, + [99] = { 27.6, 61.8, 5602, 180 }, + [100] = { 28, 59.4, 5602, 180 }, + [101] = { 27.3, 58, 5602, 180 }, + [102] = { 28, 56, 5602, 180 }, + [103] = { 24.8, 54.2, 5602, 180 }, + [104] = { 20.3, 52.2, 5602, 180 }, + [105] = { 20.3, 51.4, 5602, 3600 }, + }, + }, + [180656] = { + ["coords"] = { + [1] = { 63.1, 53.2, 17, 180 }, + [2] = { 63, 52.8, 17, 180 }, + [3] = { 63, 52.4, 17, 180 }, + [4] = { 63.5, 50.1, 17, 180 }, + [5] = { 64.9, 47.7, 17, 180 }, + [6] = { 64.8, 47.3, 17, 180 }, + [7] = { 64.6, 45.7, 17, 180 }, + [8] = { 65.9, 43.4, 17, 180 }, + [9] = { 64.5, 43.1, 17, 180 }, + [10] = { 63.6, 41.6, 17, 180 }, + [11] = { 63.5, 38.8, 17, 180 }, + [12] = { 62.7, 38.7, 17, 180 }, + [13] = { 63.1, 38.5, 17, 180 }, + [14] = { 63.2, 38, 17, 180 }, + [15] = { 63.5, 36.8, 17, 180 }, + [16] = { 64.6, 36.2, 17, 180 }, + [17] = { 51.5, 67.6, 38, 3600 }, + [18] = { 47.1, 62.8, 38, 3600 }, + [19] = { 62.1, 46.8, 38, 3600 }, + [20] = { 54.8, 43.7, 38, 3600 }, + [21] = { 59.4, 42, 38, 3600 }, + [22] = { 52.7, 41.5, 38, 3600 }, + [23] = { 41.3, 40.5, 38, 3600 }, + [24] = { 41.8, 38.9, 38, 3600 }, + [25] = { 41.6, 36.9, 38, 3600 }, + [26] = { 52.6, 35.6, 38, 3600 }, + [27] = { 41.9, 34.8, 38, 3600 }, + [28] = { 56.8, 34.4, 38, 3600 }, + [29] = { 57.5, 29.6, 38, 3600 }, + [30] = { 56.2, 26.9, 38, 3600 }, + [31] = { 57.6, 23.1, 38, 3600 }, + [32] = { 51.3, 19.5, 38, 3600 }, + [33] = { 42.4, 15.5, 38, 3600 }, + [34] = { 42.4, 14.1, 38, 180 }, + [35] = { 28.4, 79, 40, 180 }, + [36] = { 25.4, 59.6, 40, 180 }, + [37] = { 25.4, 49.3, 40, 180 }, + [38] = { 25.7, 43.3, 40, 180 }, + [39] = { 26.4, 39.7, 40, 180 }, + [40] = { 33.8, 20.7, 40, 180 }, + [41] = { 34.4, 17.5, 40, 180 }, + [42] = { 35.7, 17.2, 40, 180 }, + [43] = { 46.4, 7.5, 40, 180 }, + [44] = { 42.2, 75.9, 130, 180 }, + [45] = { 41.1, 71.5, 130, 180 }, + [46] = { 66.8, 37.9, 130, 3600 }, + [47] = { 60.3, 36.5, 130, 3600 }, + [48] = { 64.8, 35.8, 130, 3600 }, + [49] = { 64.1, 34.6, 130, 3600 }, + [50] = { 38.2, 34.5, 130, 180 }, + [51] = { 58.9, 33.8, 130, 3600 }, + [52] = { 38.2, 33.2, 130, 180 }, + [53] = { 37, 30.3, 130, 180 }, + [54] = { 35.5, 24.1, 130, 180 }, + [55] = { 64.1, 12.3, 130, 3600 }, + [56] = { 32, 83.8, 148, 180 }, + [57] = { 33.8, 82.7, 148, 180 }, + [58] = { 31.9, 82.4, 148, 180 }, + [59] = { 33, 81.9, 148, 180 }, + [60] = { 34.2, 80, 148, 180 }, + [61] = { 35.8, 77, 148, 180 }, + [62] = { 35.9, 74.1, 148, 180 }, + [63] = { 35, 71.6, 148, 180 }, + [64] = { 35.9, 69.8, 148, 180 }, + [65] = { 36.6, 67.4, 148, 180 }, + [66] = { 36.2, 64.2, 148, 180 }, + [67] = { 36.5, 61.9, 148, 180 }, + [68] = { 35.9, 59.8, 148, 180 }, + [69] = { 36.5, 57.1, 148, 180 }, + [70] = { 35.8, 56.2, 148, 180 }, + [71] = { 35.9, 51.5, 148, 180 }, + [72] = { 35.8, 46.7, 148, 180 }, + [73] = { 34.7, 43.5, 148, 180 }, + [74] = { 34.5, 42.3, 148, 180 }, + [75] = { 32.4, 42.3, 148, 180 }, + [76] = { 31.5, 41.9, 148, 180 }, + [77] = { 33.3, 41.7, 148, 180 }, + [78] = { 32.5, 41.3, 148, 180 }, + [79] = { 36.7, 38.6, 148, 180 }, + [80] = { 37, 36.1, 148, 180 }, + [81] = { 37.6, 34.1, 148, 180 }, + [82] = { 38.3, 31.3, 148, 180 }, + [83] = { 42.1, 31.3, 148, 180 }, + [84] = { 40, 31, 148, 180 }, + [85] = { 41.5, 23.6, 148, 180 }, + [86] = { 48.7, 20.3, 148, 180 }, + [87] = { 43, 4.1, 5179, 180 }, + [88] = { 24.9, 78.9, 5602, 3600 }, + [89] = { 22.6, 76.4, 5602, 3600 }, + [90] = { 30.3, 68.2, 5602, 3600 }, + [91] = { 26.6, 66.6, 5602, 3600 }, + [92] = { 29, 65.8, 5602, 3600 }, + [93] = { 25.6, 65.5, 5602, 3600 }, + [94] = { 19.7, 65, 5602, 3600 }, + [95] = { 19.9, 64.1, 5602, 3600 }, + [96] = { 19.9, 63.1, 5602, 3600 }, + [97] = { 25.5, 62.4, 5602, 3600 }, + [98] = { 20, 62, 5602, 3600 }, + [99] = { 27.6, 61.8, 5602, 3600 }, + [100] = { 28, 59.4, 5602, 3600 }, + [101] = { 27.3, 58, 5602, 3600 }, + [102] = { 28, 56, 5602, 3600 }, + [103] = { 24.8, 54.2, 5602, 3600 }, + [104] = { 20.3, 52.2, 5602, 3600 }, + [105] = { 20.3, 51.4, 5602, 180 }, + }, + }, + [180657] = { + ["coords"] = { + [1] = { 10.8, 63.1, 11, 180 }, + [2] = { 7.8, 63, 11, 180 }, + [3] = { 5.9, 62.6, 11, 3600 }, + [4] = { 12.8, 61.5, 11, 3600 }, + [5] = { 5.3, 58.4, 11, 180 }, + [6] = { 6.9, 56.7, 11, 180 }, + [7] = { 5.9, 56.6, 11, 3600 }, + [8] = { 6.7, 54.5, 11, 180 }, + [9] = { 14.2, 43.8, 11, 3600 }, + [10] = { 12.1, 40.5, 11, 3600 }, + [11] = { 12.4, 36.1, 11, 180 }, + [12] = { 12.7, 33.5, 11, 180 }, + [13] = { 13.3, 31.6, 11, 180 }, + [14] = { 14.9, 27.5, 11, 3600 }, + [15] = { 15.7, 26.2, 11, 180 }, + [16] = { 17.9, 22, 11, 180 }, + [17] = { 18.7, 20.8, 11, 3600 }, + [18] = { 19.9, 20.2, 11, 3600 }, + [19] = { 21.5, 19.4, 11, 3600 }, + [20] = { 25.7, 19, 11, 180 }, + [21] = { 27.7, 17.3, 11, 3600 }, + [22] = { 28.9, 15.5, 11, 3600 }, + [23] = { 33.1, 11.3, 11, 180 }, + [24] = { 24.7, 96.9, 45, 180 }, + [25] = { 6.4, 55.9, 45, 3600 }, + [26] = { 67.7, 87.9, 267, 3600 }, + [27] = { 65.7, 85.7, 267, 3600 }, + [28] = { 65, 83.3, 267, 180 }, + [29] = { 64.3, 79.9, 267, 3600 }, + [30] = { 61.7, 78, 267, 3600 }, + [31] = { 59.4, 75, 267, 180 }, + [32] = { 28.3, 73.9, 267, 180 }, + [33] = { 58.2, 73.6, 267, 3600 }, + [34] = { 40.1, 70.7, 267, 3600 }, + [35] = { 38, 70.7, 267, 180 }, + [36] = { 35.9, 70.4, 267, 180 }, + [37] = { 42.3, 70.4, 267, 180 }, + [38] = { 34.4, 70, 267, 3600 }, + [39] = { 57.5, 69.8, 267, 3600 }, + [40] = { 43.9, 68.8, 267, 3600 }, + [41] = { 24.3, 68.3, 267, 180 }, + [42] = { 56.3, 67.4, 267, 3600 }, + [43] = { 46, 67.2, 267, 3600 }, + [44] = { 55.5, 65.2, 267, 3600 }, + [45] = { 22.8, 64.9, 267, 180 }, + [46] = { 49.7, 63.2, 267, 180 }, + [47] = { 51.1, 62.5, 267, 3600 }, + [48] = { 50.7, 62.4, 267, 3600 }, + [49] = { 55.1, 60.8, 267, 3600 }, + [50] = { 51.8, 43.8, 406, 180 }, + [51] = { 84.3, 33.5, 5179, 180 }, + [52] = { 94.7, 30.7, 5179, 3600 }, + [53] = { 92.8, 30.7, 5179, 180 }, + [54] = { 91, 30.4, 5179, 180 }, + [55] = { 96.5, 30.4, 5179, 180 }, + [56] = { 89.6, 30.1, 5179, 3600 }, + [57] = { 97.9, 29, 5179, 3600 }, + [58] = { 80.9, 28.6, 5179, 180 }, + [59] = { 99.8, 27.6, 5179, 3600 }, + [60] = { 79.6, 25.7, 5179, 180 }, + }, + }, + [180658] = { + ["coords"] = { + [1] = { 55.8, 42.5, 17, 900 }, + [2] = { 47.5, 40.4, 17, 900 }, + [3] = { 46.3, 40.2, 17, 900 }, + [4] = { 45.5, 22.7, 17, 900 }, + }, + }, + [180659] = "_", + [180660] = { + ["coords"] = { + [1] = { 67.6, 72.9, 618, 25 }, + }, + }, + [180661] = { + ["coords"] = { + [1] = { 70.9, 57.8, 406, 900 }, + [2] = { 69.9, 55.8, 406, 900 }, + [3] = { 62.5, 50, 406, 900 }, + [4] = { 65.6, 48.7, 406, 900 }, + [5] = { 67, 46.6, 406, 900 }, + }, + }, + [180662] = { + ["coords"] = { + [1] = { 10.8, 63.1, 11, 180 }, + [2] = { 7.8, 63, 11, 180 }, + [3] = { 5.9, 62.6, 11, 180 }, + [4] = { 12.8, 61.5, 11, 180 }, + [5] = { 5.3, 58.4, 11, 180 }, + [6] = { 6.9, 56.7, 11, 180 }, + [7] = { 5.9, 56.6, 11, 180 }, + [8] = { 6.7, 54.5, 11, 180 }, + [9] = { 14.2, 43.8, 11, 3600 }, + [10] = { 12.1, 40.5, 11, 180 }, + [11] = { 12.4, 36.1, 11, 180 }, + [12] = { 12.7, 33.5, 11, 180 }, + [13] = { 13.3, 31.6, 11, 180 }, + [14] = { 14.9, 27.5, 11, 180 }, + [15] = { 15.7, 26.2, 11, 180 }, + [16] = { 17.9, 22, 11, 180 }, + [17] = { 18.7, 20.8, 11, 180 }, + [18] = { 19.9, 20.2, 11, 180 }, + [19] = { 21.5, 19.4, 11, 180 }, + [20] = { 25.7, 19, 11, 180 }, + [21] = { 27.7, 17.3, 11, 180 }, + [22] = { 28.9, 15.5, 11, 180 }, + [23] = { 33.1, 11.3, 11, 3600 }, + [24] = { 24.7, 96.9, 45, 3600 }, + [25] = { 6.4, 55.9, 45, 3600 }, + [26] = { 67.7, 87.9, 267, 3600 }, + [27] = { 65.7, 85.7, 267, 3600 }, + [28] = { 64.3, 79.9, 267, 180 }, + [29] = { 61.7, 78, 267, 180 }, + [30] = { 59.4, 75, 267, 3600 }, + [31] = { 28.3, 73.9, 267, 180 }, + [32] = { 58.2, 73.6, 267, 3600 }, + [33] = { 40.1, 70.7, 267, 180 }, + [34] = { 38, 70.7, 267, 180 }, + [35] = { 35.9, 70.4, 267, 180 }, + [36] = { 42.3, 70.4, 267, 3600 }, + [37] = { 34.4, 70, 267, 180 }, + [38] = { 57.5, 69.8, 267, 180 }, + [39] = { 43.9, 68.8, 267, 180 }, + [40] = { 24.3, 68.3, 267, 180 }, + [41] = { 56.3, 67.4, 267, 180 }, + [42] = { 46, 67.2, 267, 3600 }, + [43] = { 55.5, 65.2, 267, 3600 }, + [44] = { 22.8, 64.9, 267, 180 }, + [45] = { 49.7, 63.2, 267, 3600 }, + [46] = { 51.1, 62.5, 267, 3600 }, + [47] = { 50.7, 62.4, 267, 3600 }, + [48] = { 55.1, 60.8, 267, 3600 }, + [49] = { 51.8, 43.8, 406, 900 }, + [50] = { 84.3, 33.5, 5179, 180 }, + [51] = { 94.7, 30.7, 5179, 180 }, + [52] = { 92.8, 30.7, 5179, 180 }, + [53] = { 91, 30.4, 5179, 180 }, + [54] = { 96.5, 30.4, 5179, 3600 }, + [55] = { 89.6, 30.1, 5179, 180 }, + [56] = { 97.9, 29, 5179, 180 }, + [57] = { 80.9, 28.6, 5179, 180 }, + [58] = { 99.8, 27.6, 5179, 3600 }, + [59] = { 79.6, 25.7, 5179, 180 }, + }, + }, + [180663] = { + ["coords"] = { + [1] = { 67.1, 99.4, 36, 3600 }, + [2] = { 59.4, 97.9, 36, 3600 }, + [3] = { 60.4, 95.7, 36, 3600 }, + [4] = { 58.7, 95.4, 36, 3600 }, + [5] = { 59.1, 93.6, 36, 3600 }, + [6] = { 67.4, 92.8, 36, 3600 }, + [7] = { 68.1, 89, 36, 3600 }, + [8] = { 67.8, 82.3, 36, 3600 }, + [9] = { 68.1, 78.1, 36, 3600 }, + [10] = { 69.4, 74.1, 36, 3600 }, + [11] = { 71.3, 70.4, 36, 3600 }, + [12] = { 55.7, 56.6, 267, 3600 }, + [13] = { 56.3, 50.9, 267, 3600 }, + [14] = { 57.4, 47.8, 267, 3600 }, + [15] = { 62.4, 42.5, 267, 3600 }, + [16] = { 63.2, 40.7, 267, 3600 }, + [17] = { 65.2, 39.3, 267, 3600 }, + [18] = { 67.5, 35.4, 267, 3600 }, + [19] = { 60.8, 34.1, 267, 3600 }, + [20] = { 61.7, 32.2, 267, 3600 }, + [21] = { 60.2, 31.9, 267, 3600 }, + [22] = { 60.5, 30.3, 267, 3600 }, + [23] = { 67.8, 29.6, 267, 3600 }, + [24] = { 68.5, 26.3, 267, 3600 }, + [25] = { 68.2, 20.4, 267, 3600 }, + [26] = { 68.5, 16.7, 267, 3600 }, + [27] = { 69.6, 13.3, 267, 3600 }, + [28] = { 71.3, 10.1, 267, 3600 }, + [29] = { 44.7, 70.3, 331, 900 }, + [30] = { 47, 69.3, 331, 3600 }, + [31] = { 63.9, 69, 331, 900 }, + [32] = { 46.5, 68.5, 331, 900 }, + [33] = { 48.9, 68.3, 331, 3600 }, + [34] = { 85.1, 66.7, 331, 900 }, + [35] = { 79, 56.3, 331, 180 }, + [36] = { 79, 54.8, 331, 180 }, + [37] = { 35.4, 54.3, 331, 900 }, + [38] = { 35.8, 53.5, 331, 180 }, + [39] = { 36.3, 53.4, 331, 3600 }, + [40] = { 39.6, 52.5, 331, 900 }, + [41] = { 38, 49.7, 331, 900 }, + [42] = { 39, 47.8, 331, 900 }, + [43] = { 35, 47.5, 331, 180 }, + [44] = { 35.3, 46.4, 331, 180 }, + [45] = { 76.9, 46.3, 331, 3600 }, + [46] = { 74.7, 45.6, 331, 900 }, + [47] = { 50.3, 44.1, 406, 900 }, + [48] = { 80.2, 36.7, 406, 900 }, + [49] = { 82.5, 35.7, 406, 3600 }, + [50] = { 82, 35, 406, 900 }, + [51] = { 24.1, 15.3, 406, 300 }, + }, + }, + [180664] = { + ["coords"] = { + [1] = { 10.8, 63.1, 11, 180 }, + [2] = { 7.8, 63, 11, 180 }, + [3] = { 5.9, 62.6, 11, 3600 }, + [4] = { 12.8, 61.5, 11, 3600 }, + [5] = { 5.3, 58.4, 11, 180 }, + [6] = { 6.9, 56.7, 11, 3600 }, + [7] = { 5.9, 56.6, 11, 180 }, + [8] = { 6.7, 54.5, 11, 3600 }, + [9] = { 14.2, 43.8, 11, 180 }, + [10] = { 12.1, 40.5, 11, 3600 }, + [11] = { 12.4, 36.1, 11, 180 }, + [12] = { 12.7, 33.5, 11, 180 }, + [13] = { 13.3, 31.6, 11, 3600 }, + [14] = { 14.9, 27.5, 11, 3600 }, + [15] = { 15.7, 26.2, 11, 3600 }, + [16] = { 17.9, 22, 11, 3600 }, + [17] = { 18.7, 20.8, 11, 180 }, + [18] = { 19.9, 20.2, 11, 180 }, + [19] = { 21.5, 19.4, 11, 180 }, + [20] = { 25.7, 19, 11, 3600 }, + [21] = { 27.7, 17.3, 11, 180 }, + [22] = { 28.9, 15.5, 11, 180 }, + [23] = { 33.1, 11.3, 11, 180 }, + [24] = { 24.7, 96.9, 45, 180 }, + [25] = { 6.4, 55.9, 45, 3600 }, + [26] = { 67.7, 87.9, 267, 3600 }, + [27] = { 65.7, 85.7, 267, 3600 }, + [28] = { 65, 83.3, 267, 3600 }, + [29] = { 64.3, 79.9, 267, 3600 }, + [30] = { 61.7, 78, 267, 3600 }, + [31] = { 59.4, 75, 267, 3600 }, + [32] = { 28.3, 73.9, 267, 3600 }, + [33] = { 58.2, 73.6, 267, 3600 }, + [34] = { 40.1, 70.7, 267, 3600 }, + [35] = { 38, 70.7, 267, 3600 }, + [36] = { 35.9, 70.4, 267, 3600 }, + [37] = { 42.3, 70.4, 267, 3600 }, + [38] = { 34.4, 70, 267, 3600 }, + [39] = { 57.5, 69.8, 267, 3600 }, + [40] = { 43.9, 68.8, 267, 3600 }, + [41] = { 24.3, 68.3, 267, 3600 }, + [42] = { 56.3, 67.4, 267, 3600 }, + [43] = { 46, 67.2, 267, 180 }, + [44] = { 55.5, 65.2, 267, 3600 }, + [45] = { 22.8, 64.9, 267, 3600 }, + [46] = { 49.7, 63.2, 267, 3600 }, + [47] = { 51.1, 62.5, 267, 3600 }, + [48] = { 50.7, 62.4, 267, 3600 }, + [49] = { 55.1, 60.8, 267, 3600 }, + [50] = { 51.8, 43.8, 406, 180 }, + [51] = { 84.3, 33.5, 5179, 3600 }, + [52] = { 94.7, 30.7, 5179, 3600 }, + [53] = { 92.8, 30.7, 5179, 3600 }, + [54] = { 91, 30.4, 5179, 3600 }, + [55] = { 96.5, 30.4, 5179, 3600 }, + [56] = { 89.6, 30.1, 5179, 3600 }, + [57] = { 97.9, 29, 5179, 3600 }, + [58] = { 80.9, 28.6, 5179, 3600 }, + [59] = { 99.8, 27.6, 5179, 180 }, + [60] = { 79.6, 25.7, 5179, 3600 }, + }, + }, + [180665] = { + ["coords"] = { + [1] = { 75.4, 29.7, 1519, 900 }, + [2] = { 56.9, 93.3, 5581, 900 }, + }, + }, + [180667] = { + ["coords"] = { + [1] = { 17.4, 38.9, 2677, 900 }, + }, + }, + [180671] = "_", + [180672] = "_", + [180674] = { + ["coords"] = { + [1] = { 55.5, 75.6, 1537, 0 }, + }, + }, + [180675] = { + ["coords"] = { + [1] = { 54.4, 75.7, 1537, 0 }, + }, + }, + [180676] = { + ["coords"] = { + [1] = { 53.4, 78.3, 1537, 0 }, + }, + }, + [180677] = { + ["coords"] = { + [1] = { 54.9, 77.1, 1537, 0 }, + }, + }, + [180678] = { + ["coords"] = { + [1] = { 55, 76.8, 1537, 0 }, + }, + }, + [180682] = { + ["coords"] = { + [1] = { 64.8, 43.3, 15, 3600 }, + [2] = { 62, 29.2, 15, 3600 }, + [3] = { 62.1, 27.5, 15, 3600 }, + [4] = { 62.4, 25.8, 15, 180 }, + [5] = { 62.2, 23.9, 15, 3600 }, + [6] = { 62.2, 22.4, 15, 3600 }, + [7] = { 61.1, 18.9, 15, 3600 }, + [8] = { 56, 16.3, 15, 3600 }, + [9] = { 59.5, 15.9, 15, 3600 }, + [10] = { 58.8, 14.3, 15, 180 }, + [11] = { 57, 14.1, 15, 3600 }, + [12] = { 55.6, 7.5, 15, 900 }, + [13] = { 55.9, 5.6, 15, 180 }, + [14] = { 64.3, 57.8, 17, 900 }, + [15] = { 64.5, 56.9, 17, 180 }, + [16] = { 64.5, 56.1, 17, 3600 }, + [17] = { 29.4, 25.6, 33, 3600 }, + [18] = { 29.3, 24.3, 33, 3600 }, + [19] = { 29, 22.6, 33, 3600 }, + [20] = { 27.6, 21.4, 33, 3600 }, + [21] = { 21.1, 21.1, 33, 3600 }, + [22] = { 25.5, 20.3, 33, 3600 }, + [23] = { 26.4, 20.2, 33, 3600 }, + [24] = { 22.9, 19.8, 33, 3600 }, + [25] = { 24.6, 19.6, 33, 3600 }, + [26] = { 21.5, 18.4, 33, 3600 }, + [27] = { 21.1, 16.8, 33, 3600 }, + [28] = { 19.7, 14.9, 33, 3600 }, + [29] = { 17.7, 12.7, 33, 3600 }, + [30] = { 13.8, 1.5, 40, 3600 }, + [31] = { 3.4, 1.4, 40, 3600 }, + [32] = { 25.8, 79.6, 405, 900 }, + [33] = { 24.1, 73.6, 405, 900 }, + [34] = { 39.2, 22, 405, 900 }, + [35] = { 70.8, 89.8, 5561, 3600 }, + [36] = { 59.1, 89.7, 5561, 3600 }, + [37] = { 74.2, 86.5, 5561, 3600 }, + [38] = { 67.9, 81.8, 5561, 3600 }, + [39] = { 40, 60.6, 5561, 3600 }, + [40] = { 37.6, 56.8, 5561, 3600 }, + [41] = { 39.5, 56, 5561, 3600 }, + [42] = { 42.6, 53.1, 5561, 3600 }, + [43] = { 56.7, 52, 5561, 3600 }, + [44] = { 39.3, 49.3, 5561, 3600 }, + [45] = { 54, 42.7, 5561, 3600 }, + [46] = { 62.4, 40.9, 5561, 3600 }, + [47] = { 65.5, 40.7, 5561, 3600 }, + [48] = { 47.7, 34.2, 5561, 3600 }, + [49] = { 43.7, 34.1, 5561, 3600 }, + [50] = { 35.1, 27.1, 5561, 3600 }, + [51] = { 38.9, 24.8, 5561, 3600 }, + [52] = { 37.6, 22.1, 5561, 3600 }, + [53] = { 76.9, 94, 5581, 3600 }, + [54] = { 81, 92.2, 5581, 3600 }, + [55] = { 66.5, 74.2, 5581, 3600 }, + [56] = { 70.1, 73.1, 5581, 3600 }, + [57] = { 70, 71, 5581, 3600 }, + [58] = { 65.9, 70, 5581, 3600 }, + [59] = { 69, 69.4, 5581, 3600 }, + [60] = { 66, 67, 5581, 3600 }, + [61] = { 68.9, 65.2, 5581, 3600 }, + [62] = { 69.1, 63.6, 5581, 3600 }, + [63] = { 17.6, 50.3, 5581, 3600 }, + [64] = { 65.5, 36.6, 5581, 3600 }, + [65] = { 64.1, 35.2, 5581, 3600 }, + [66] = { 67.9, 34.3, 5581, 3600 }, + [67] = { 66.8, 33.2, 5581, 3600 }, + [68] = { 69.1, 30, 5581, 3600 }, + [69] = { 70.2, 27.1, 5581, 3600 }, + [70] = { 69.9, 23, 5581, 3600 }, + [71] = { 72.8, 20.5, 5581, 3600 }, + [72] = { 62.9, 54.7, 5602, 3600 }, + [73] = { 58.7, 52.6, 5602, 3600 }, + [74] = { 59.5, 52.4, 5602, 3600 }, + [75] = { 53.7, 50.8, 5602, 3600 }, + [76] = { 57.8, 50.5, 5602, 3600 }, + [77] = { 52.1, 50.3, 5602, 3600 }, + [78] = { 58.7, 50, 5602, 3600 }, + [79] = { 56.1, 49, 5602, 3600 }, + [80] = { 45.3, 46.5, 5602, 3600 }, + [81] = { 46.5, 45.2, 5602, 3600 }, + [82] = { 55.3, 44.9, 5602, 3600 }, + [83] = { 45.8, 44.9, 5602, 3600 }, + [84] = { 46.1, 5.6, 5602, 3600 }, + [85] = { 44.2, 4.6, 5602, 3600 }, + }, + }, + [180683] = { + ["coords"] = { + [1] = { 64.8, 43.3, 15, 180 }, + [2] = { 63.4, 36.9, 15, 3600 }, + [3] = { 63.3, 34.8, 15, 3600 }, + [4] = { 62.7, 33.1, 15, 180 }, + [5] = { 62.2, 32, 15, 180 }, + [6] = { 62, 29.2, 15, 180 }, + [7] = { 62.1, 27.5, 15, 180 }, + [8] = { 62.4, 25.8, 15, 3600 }, + [9] = { 62.2, 23.9, 15, 180 }, + [10] = { 62.2, 22.4, 15, 3600 }, + [11] = { 61.1, 18.9, 15, 180 }, + [12] = { 60.2, 17.7, 15, 3600 }, + [13] = { 58.7, 17.2, 15, 3600 }, + [14] = { 56, 16.3, 15, 3600 }, + [15] = { 55, 16, 15, 3600 }, + [16] = { 59.5, 15.9, 15, 3600 }, + [17] = { 58.8, 14.3, 15, 3600 }, + [18] = { 54.6, 14.1, 15, 3600 }, + [19] = { 57, 14.1, 15, 180 }, + [20] = { 54.8, 9.3, 15, 180 }, + [21] = { 55.6, 7.5, 15, 180 }, + [22] = { 63.9, 58.8, 17, 180 }, + [23] = { 64.3, 57.8, 17, 180 }, + [24] = { 64.5, 56.1, 17, 900 }, + [25] = { 34.1, 32.7, 33, 3600 }, + [26] = { 29.4, 27.8, 33, 3600 }, + [27] = { 29.4, 25.6, 33, 3600 }, + [28] = { 29.3, 24.3, 33, 3600 }, + [29] = { 29, 22.6, 33, 3600 }, + [30] = { 27.6, 21.4, 33, 3600 }, + [31] = { 26.3, 20.6, 33, 3600 }, + [32] = { 25.5, 20.3, 33, 3600 }, + [33] = { 24.6, 19.4, 33, 3600 }, + [34] = { 23.2, 18.6, 33, 3600 }, + [35] = { 20.6, 15.9, 33, 3600 }, + [36] = { 16, 15.6, 33, 3600 }, + [37] = { 19.7, 14.9, 33, 3600 }, + [38] = { 19.1, 13.6, 33, 3600 }, + [39] = { 17.7, 12.7, 33, 3600 }, + [40] = { 10.9, 2.1, 40, 3600 }, + [41] = { 27.8, 85.4, 45, 3600 }, + [42] = { 24, 82.5, 405, 180 }, + [43] = { 25.8, 80.7, 405, 900 }, + [44] = { 25.8, 79.6, 405, 180 }, + [45] = { 25.7, 78.2, 405, 900 }, + [46] = { 25.8, 76.8, 405, 900 }, + [47] = { 26, 75.8, 405, 180 }, + [48] = { 21.5, 73.3, 405, 900 }, + [49] = { 22.1, 72.7, 405, 180 }, + [50] = { 37.9, 24.1, 405, 3600 }, + [51] = { 38.5, 22.8, 405, 3600 }, + [52] = { 67.6, 90.5, 5561, 3600 }, + [53] = { 61, 85.3, 5561, 3600 }, + [54] = { 41.3, 56.8, 5561, 3600 }, + [55] = { 39.2, 52.8, 5561, 3600 }, + [56] = { 67.6, 50.8, 5561, 3600 }, + [57] = { 36.6, 50.8, 5561, 3600 }, + [58] = { 41.8, 50.1, 5561, 3600 }, + [59] = { 75.1, 46.6, 5561, 3600 }, + [60] = { 60, 39, 5561, 3600 }, + [61] = { 62.3, 34.4, 5561, 3600 }, + [62] = { 47, 32.8, 5561, 3600 }, + [63] = { 43.5, 29.1, 5561, 3600 }, + [64] = { 45.5, 26.3, 5561, 3600 }, + [65] = { 27.2, 19.3, 5561, 3600 }, + [66] = { 28.9, 18.5, 5561, 3600 }, + [67] = { 69.1, 75, 5581, 3600 }, + [68] = { 70.9, 71.7, 5581, 3600 }, + [69] = { 66.3, 70.7, 5581, 3600 }, + [70] = { 69.5, 67.5, 5581, 3600 }, + [71] = { 67.6, 63.1, 5581, 3600 }, + [72] = { 16.8, 47, 5581, 3600 }, + [73] = { 67.3, 36.6, 5581, 3600 }, + [74] = { 65.6, 34.5, 5581, 3600 }, + [75] = { 69.3, 32.3, 5581, 3600 }, + [76] = { 70, 25.2, 5581, 3600 }, + [77] = { 71.6, 24, 5581, 3600 }, + [78] = { 70.8, 21.7, 5581, 3600 }, + [79] = { 60.4, 55, 5602, 3600 }, + [80] = { 54.9, 50.7, 5602, 3600 }, + [81] = { 51.3, 49.9, 5602, 3600 }, + [82] = { 44.8, 46.9, 5602, 3600 }, + [83] = { 47.5, 46.2, 5602, 3600 }, + [84] = { 54, 45.6, 5602, 3600 }, + [85] = { 52.6, 45, 5602, 3600 }, + }, + }, + [180684] = { + ["coords"] = { + [1] = { 36.5, 33.1, 33, 3600 }, + [2] = { 38.7, 31.5, 33, 3600 }, + [3] = { 39.3, 30.6, 33, 3600 }, + [4] = { 39.7, 26.9, 33, 3600 }, + [5] = { 39.5, 26.5, 33, 3600 }, + [6] = { 40.1, 25.2, 33, 180 }, + [7] = { 40.3, 22.4, 33, 3600 }, + [8] = { 42, 21.1, 33, 3600 }, + [9] = { 42.7, 20.4, 33, 3600 }, + [10] = { 39.9, 17.8, 33, 3600 }, + [11] = { 41.5, 16.2, 33, 3600 }, + [12] = { 40.4, 13.7, 33, 3600 }, + [13] = { 40, 12.5, 33, 3600 }, + [14] = { 38.9, 11.8, 33, 3600 }, + [15] = { 37.8, 10.5, 33, 3600 }, + [16] = { 34.9, 10.1, 33, 3600 }, + [17] = { 35.3, 10, 33, 180 }, + [18] = { 37.3, 10, 33, 3600 }, + [19] = { 35.2, 9.6, 33, 3600 }, + [20] = { 35.8, 9.4, 33, 3600 }, + [21] = { 34.1, 8.8, 33, 3600 }, + [22] = { 35.6, 8.7, 33, 3600 }, + [23] = { 32.6, 8.2, 33, 3600 }, + [24] = { 33.4, 7.7, 33, 3600 }, + [25] = { 31.9, 7.4, 33, 3600 }, + [26] = { 30.8, 6.5, 33, 3600 }, + [27] = { 13.4, 54.3, 36, 3600 }, + [28] = { 17.4, 52.2, 36, 3600 }, + [29] = { 19.9, 49.4, 36, 3600 }, + [30] = { 23.3, 44.6, 36, 3600 }, + [31] = { 27.7, 40.5, 36, 3600 }, + [32] = { 29.2, 37.8, 36, 3600 }, + [33] = { 30.4, 35.2, 36, 3600 }, + [34] = { 30.9, 31.9, 36, 3600 }, + [35] = { 34, 27.1, 36, 3600 }, + [36] = { 35.4, 23.8, 36, 180 }, + [37] = { 36.7, 19.1, 36, 180 }, + [38] = { 36.8, 16.7, 36, 3600 }, + [39] = { 36.4, 15.5, 36, 3600 }, + [40] = { 35.3, 13.6, 36, 3600 }, + [41] = { 72.4, 42.1, 130, 3600 }, + [42] = { 75.1, 40.7, 130, 3600 }, + [43] = { 76.7, 38.9, 130, 3600 }, + [44] = { 79, 35.7, 130, 3600 }, + [45] = { 81.9, 32.9, 130, 3600 }, + [46] = { 83, 31.2, 130, 3600 }, + }, + }, + [180685] = { + ["coords"] = { + [1] = { 64.8, 43.3, 15, 3600 }, + [2] = { 65.1, 39.9, 15, 180 }, + [3] = { 64.1, 38.2, 15, 180 }, + [4] = { 62.4, 25.8, 15, 180 }, + [5] = { 61.7, 20.6, 15, 3600 }, + [6] = { 61.1, 18.9, 15, 180 }, + [7] = { 59.5, 15.9, 15, 180 }, + [8] = { 40.1, 25.2, 33, 3600 }, + [9] = { 29, 22.6, 33, 3600 }, + [10] = { 39.9, 17.8, 33, 3600 }, + [11] = { 41.5, 16.2, 33, 3600 }, + [12] = { 40.3, 15.3, 33, 3600 }, + [13] = { 40, 12.5, 33, 3600 }, + [14] = { 38.9, 11.8, 33, 3600 }, + [15] = { 34.9, 10.1, 33, 180 }, + [16] = { 35.3, 10, 33, 3600 }, + [17] = { 35.2, 9.6, 33, 3600 }, + [18] = { 35.8, 9.4, 33, 3600 }, + [19] = { 34.1, 8.8, 33, 3600 }, + [20] = { 35.6, 8.7, 33, 3600 }, + [21] = { 30.8, 6.5, 33, 3600 }, + [22] = { 14.9, 52.8, 36, 3600 }, + [23] = { 27.7, 40.5, 36, 180 }, + [24] = { 29.2, 37.8, 36, 3600 }, + [25] = { 35.3, 13.6, 36, 3600 }, + [26] = { 32.9, 80.6, 45, 3600 }, + [27] = { 73.4, 41.1, 130, 3600 }, + [28] = { 81.9, 32.9, 130, 180 }, + [29] = { 83, 31.2, 130, 3600 }, + [30] = { 21.1, 74.2, 405, 180 }, + [31] = { 65.1, 66.2, 5561, 3600 }, + [32] = { 56.1, 50.2, 5561, 3600 }, + [33] = { 56.5, 47.7, 5561, 3600 }, + [34] = { 56.1, 45.6, 5561, 3600 }, + [35] = { 54.8, 45, 5561, 3600 }, + [36] = { 49.4, 47.7, 5602, 3600 }, + [37] = { 48.6, 47.6, 5602, 3600 }, + [38] = { 45.2, 5.2, 5602, 3600 }, + }, + }, + [180690] = { + ["coords"] = { + [1] = { 52.2, 53.6, 876, 300 }, + [2] = { 94.2, 95.6, 3428, 7200 }, + [3] = { 53.8, 78.2, 3428, 7200 }, + [4] = { 48.5, 85.5, 5147, 7200 }, + [5] = { 34.4, 83.4, 5147, 7200 }, + [6] = { 51.5, 83.3, 5147, 7200 }, + [7] = { 48.1, 81.1, 5147, 7200 }, + [8] = { 50.9, 78.1, 5147, 7200 }, + [9] = { 39.3, 68.5, 5147, 7200 }, + [10] = { 56.5, 66, 5147, 7200 }, + [11] = { 47.6, 54.8, 5147, 7200 }, + [12] = { 58.6, 49.9, 5147, 7200 }, + [13] = { 33.3, 48.7, 5147, 7200 }, + [14] = { 64.5, 25.6, 5147, 7200 }, + }, + }, + [180691] = { + ["coords"] = { + [1] = { 52.2, 53, 876, 300 }, + [2] = { 54.5, 86.6, 3429, 10800 }, + [3] = { 41, 77, 3429, 10800 }, + [4] = { 34.5, 52.7, 3429, 10800 }, + [5] = { 62.1, 51.1, 3429, 10800 }, + [6] = { 41.7, 46.1, 3429, 10800 }, + [7] = { 47.4, 35, 3429, 10800 }, + [8] = { 59.3, 28.4, 3429, 10800 }, + }, + }, + [180698] = { + ["coords"] = { + [1] = { 54.2, 39.2, 1, 120 }, + [2] = { 54, 38.9, 1, 120 }, + [3] = { 52.9, 37.3, 1, 120 }, + [4] = { 52.4, 37, 1, 120 }, + [5] = { 52.5, 36.5, 1, 120 }, + [6] = { 53, 36.2, 1, 120 }, + [7] = { 52.5, 36, 1, 120 }, + [8] = { 53.3, 35.4, 1, 120 }, + [9] = { 52.7, 35.2, 1, 120 }, + [10] = { 52.9, 35.1, 1, 120 }, + [11] = { 53.1, 35, 1, 120 }, + [12] = { 46.1, 14.5, 14, 120 }, + [13] = { 45.6, 14.2, 14, 120 }, + [14] = { 46.1, 14.1, 14, 120 }, + [15] = { 45.5, 14, 14, 120 }, + [16] = { 45.4, 13.4, 14, 120 }, + [17] = { 46, 13.3, 14, 120 }, + [18] = { 46, 13.1, 14, 120 }, + [19] = { 45.8, 10.5, 14, 120 }, + [20] = { 46.1, 10.4, 14, 120 }, + [21] = { 46.2, 8.6, 14, 120 }, + [22] = { 46.5, 8.6, 14, 120 }, + [23] = { 46.5, 8.3, 14, 120 }, + [24] = { 46, 8.3, 14, 120 }, + [25] = { 67.6, 24.2, 28, 25 }, + [26] = { 28.1, 77.4, 33, 120 }, + [27] = { 27.2, 77.1, 33, 120 }, + [28] = { 27.7, 77, 33, 120 }, + [29] = { 28.2, 76.3, 33, 120 }, + [30] = { 28.2, 76.2, 33, 120 }, + [31] = { 28.3, 76, 33, 120 }, + [32] = { 27.9, 74.7, 33, 120 }, + [33] = { 27.8, 74.2, 33, 120 }, + [34] = { 26.6, 73.5, 33, 120 }, + [35] = { 22, 59.5, 45, 25 }, + [36] = { 22, 58.8, 45, 25 }, + [37] = { 22.1, 58.7, 45, 25 }, + [38] = { 60.9, 68.3, 85, 120 }, + [39] = { 62.8, 67.8, 85, 120 }, + [40] = { 60.9, 67.8, 85, 120 }, + [41] = { 62.4, 67.5, 85, 120 }, + [42] = { 61.3, 67.5, 85, 120 }, + [43] = { 62.1, 67.5, 85, 120 }, + [44] = { 61.7, 67.5, 85, 120 }, + [45] = { 60.9, 67.2, 85, 120 }, + [46] = { 62.8, 67.2, 85, 120 }, + [47] = { 60.9, 66.6, 85, 120 }, + [48] = { 62.8, 66.6, 85, 120 }, + [49] = { 7.9, 43.6, 139, 25 }, + [50] = { 55.1, 95.6, 141, 120 }, + [51] = { 55, 95, 141, 120 }, + [52] = { 55.3, 94.5, 141, 120 }, + [53] = { 55.2, 93.9, 141, 120 }, + [54] = { 57.7, 93.8, 141, 120 }, + [55] = { 55.5, 93.6, 141, 120 }, + [56] = { 57.2, 92.8, 141, 120 }, + [57] = { 57.7, 92.8, 141, 120 }, + [58] = { 55.9, 92.7, 141, 120 }, + [59] = { 56, 92.6, 141, 120 }, + [60] = { 57.6, 92.6, 141, 120 }, + [61] = { 40.6, 34.5, 215, 120 }, + [62] = { 37.8, 30.6, 215, 120 }, + [63] = { 37.9, 30.6, 215, 120 }, + [64] = { 37.8, 29.5, 215, 120 }, + [65] = { 37.7, 29.5, 215, 120 }, + [66] = { 37.4, 28.6, 215, 120 }, + [67] = { 38.4, 28, 215, 120 }, + [68] = { 41.6, 27.5, 215, 120 }, + [69] = { 41.6, 27.3, 215, 120 }, + [70] = { 41.6, 27.1, 215, 120 }, + [71] = { 70.4, 16.1, 1497, 120 }, + [72] = { 61.8, 15.1, 1497, 120 }, + [73] = { 70.4, 13.1, 1497, 120 }, + [74] = { 61.9, 12.8, 1497, 120 }, + [75] = { 68.7, 11.4, 1497, 120 }, + [76] = { 63.6, 11.3, 1497, 120 }, + [77] = { 67.1, 11.3, 1497, 120 }, + [78] = { 65.3, 11.3, 1497, 120 }, + [79] = { 61.9, 10.1, 1497, 120 }, + [80] = { 70.4, 9.9, 1497, 120 }, + [81] = { 61.9, 7.3, 1497, 120 }, + [82] = { 70.4, 7.1, 1497, 120 }, + [83] = { 64.1, 76.7, 1519, 300 }, + [84] = { 65.5, 74.5, 1519, 120 }, + [85] = { 65.3, 74.2, 1519, 120 }, + [86] = { 60.8, 74, 1519, 120 }, + [87] = { 65.1, 73.9, 1519, 120 }, + [88] = { 62.2, 73.8, 1519, 120 }, + [89] = { 63.1, 73.3, 1519, 120 }, + [90] = { 61.8, 73.1, 1519, 120 }, + [91] = { 61.9, 72.8, 1519, 120 }, + [92] = { 62.9, 71.7, 1519, 120 }, + [93] = { 61.9, 71, 1519, 120 }, + [94] = { 63, 70.8, 1519, 120 }, + [95] = { 36.2, 70, 1519, 300 }, + [96] = { 13.9, 88.9, 1537, 120 }, + [97] = { 51.1, 100, 1637, 120 }, + [98] = { 51.1, 99.2, 1637, 120 }, + [99] = { 50.1, 89.2, 1637, 120 }, + [100] = { 51.4, 89, 1637, 120 }, + [101] = { 51.7, 82.2, 1637, 120 }, + [102] = { 53, 82, 1637, 120 }, + [103] = { 52.9, 81.1, 1637, 120 }, + [104] = { 51, 80.9, 1637, 120 }, + [105] = { 53.3, 87, 1638, 120 }, + [106] = { 39.5, 67.7, 1638, 120 }, + [107] = { 39.8, 67.7, 1638, 120 }, + [108] = { 39.3, 62.3, 1638, 120 }, + [109] = { 39.1, 62, 1638, 120 }, + [110] = { 37.4, 57.6, 1638, 120 }, + [111] = { 42.5, 55, 1638, 120 }, + [112] = { 42.2, 54.6, 1638, 120 }, + [113] = { 58.1, 52.7, 1638, 120 }, + [114] = { 58.2, 51.5, 1638, 120 }, + [115] = { 58.2, 50.4, 1638, 120 }, + }, + }, + [180699] = { + ["coords"] = { + [1] = { 54.2, 39.3, 1, 120 }, + [2] = { 53.9, 38.8, 1, 120 }, + [3] = { 53, 37.3, 1, 120 }, + [4] = { 52.6, 37.2, 1, 120 }, + [5] = { 52.3, 36.9, 1, 120 }, + [6] = { 52.4, 36.6, 1, 120 }, + [7] = { 53, 36.2, 1, 120 }, + [8] = { 52.5, 36, 1, 120 }, + [9] = { 52.6, 35.2, 1, 120 }, + [10] = { 52.7, 35.2, 1, 120 }, + [11] = { 52.8, 35.2, 1, 120 }, + [12] = { 53, 35.1, 1, 120 }, + [13] = { 53.1, 35, 1, 120 }, + [14] = { 35.5, 62.7, 11, 120 }, + [15] = { 46.1, 14.6, 14, 120 }, + [16] = { 46.1, 14.4, 14, 120 }, + [17] = { 45.6, 14.3, 14, 120 }, + [18] = { 46.1, 14.2, 14, 120 }, + [19] = { 45.6, 14.1, 14, 120 }, + [20] = { 46.1, 14, 14, 120 }, + [21] = { 45.5, 13.9, 14, 120 }, + [22] = { 45.3, 13.5, 14, 120 }, + [23] = { 46, 13.4, 14, 120 }, + [24] = { 45.3, 13.3, 14, 120 }, + [25] = { 46, 13.2, 14, 120 }, + [26] = { 46.1, 13, 14, 120 }, + [27] = { 45.7, 10.5, 14, 120 }, + [28] = { 45.8, 10.5, 14, 120 }, + [29] = { 46.1, 10.4, 14, 120 }, + [30] = { 46.2, 10.4, 14, 120 }, + [31] = { 46.2, 8.7, 14, 120 }, + [32] = { 46.5, 8.6, 14, 120 }, + [33] = { 46.2, 8.5, 14, 120 }, + [34] = { 46.5, 8.5, 14, 120 }, + [35] = { 46.1, 8.3, 14, 120 }, + [36] = { 46, 8.2, 14, 120 }, + [37] = { 47.8, 8.7, 17, 0 }, + [38] = { 44.4, 98.4, 28, 0 }, + [39] = { 80.1, 63.3, 28, 0 }, + [40] = { 79.7, 63, 28, 0 }, + [41] = { 28.1, 77.3, 33, 120 }, + [42] = { 28.3, 77.2, 33, 120 }, + [43] = { 27.7, 77, 33, 120 }, + [44] = { 27.7, 76.9, 33, 120 }, + [45] = { 28.1, 76.3, 33, 120 }, + [46] = { 28.2, 76.3, 33, 120 }, + [47] = { 28.2, 76.2, 33, 120 }, + [48] = { 28.2, 76.1, 33, 120 }, + [49] = { 28.5, 75.8, 33, 120 }, + [50] = { 28.2, 75.7, 33, 120 }, + [51] = { 28.9, 75.2, 33, 120 }, + [52] = { 28, 74.8, 33, 120 }, + [53] = { 27.9, 74.6, 33, 120 }, + [54] = { 27.8, 74.2, 33, 120 }, + [55] = { 27.4, 74.2, 33, 120 }, + [56] = { 27.7, 74.2, 33, 120 }, + [57] = { 26.5, 73.7, 33, 120 }, + [58] = { 26.2, 73.5, 33, 120 }, + [59] = { 26.1, 73.5, 33, 120 }, + [60] = { 26.5, 73.4, 33, 120 }, + [61] = { 26.4, 73.4, 33, 120 }, + [62] = { 81.2, 51.1, 36, 0 }, + [63] = { 60.9, 68.4, 85, 120 }, + [64] = { 62.8, 68.2, 85, 120 }, + [65] = { 60.9, 68, 85, 120 }, + [66] = { 62.8, 67.7, 85, 120 }, + [67] = { 60.9, 67.7, 85, 120 }, + [68] = { 62, 67.6, 85, 120 }, + [69] = { 61.7, 67.6, 85, 120 }, + [70] = { 62.3, 67.5, 85, 120 }, + [71] = { 61.4, 67.4, 85, 120 }, + [72] = { 61.6, 67.4, 85, 120 }, + [73] = { 62, 67.3, 85, 120 }, + [74] = { 60.9, 67.3, 85, 120 }, + [75] = { 62.8, 67.2, 85, 120 }, + [76] = { 60.9, 66.9, 85, 120 }, + [77] = { 62.8, 66.8, 85, 120 }, + [78] = { 60.9, 66.5, 85, 120 }, + [79] = { 62.8, 66.5, 85, 120 }, + [80] = { 62, 65, 85, 120 }, + [81] = { 61.7, 65, 85, 120 }, + [82] = { 61.7, 64.1, 85, 120 }, + [83] = { 62.1, 64.1, 85, 120 }, + [84] = { 67.5, 83.3, 130, 0 }, + [85] = { 21.8, 87.1, 139, 0 }, + [86] = { 21.4, 86.7, 139, 0 }, + [87] = { 55, 95.6, 141, 120 }, + [88] = { 55.1, 95.5, 141, 120 }, + [89] = { 55, 95.1, 141, 120 }, + [90] = { 55, 94.9, 141, 120 }, + [91] = { 55.2, 94.6, 141, 120 }, + [92] = { 55.3, 94.4, 141, 120 }, + [93] = { 55.2, 94, 141, 120 }, + [94] = { 55.3, 93.9, 141, 120 }, + [95] = { 57.7, 93.8, 141, 120 }, + [96] = { 55.5, 93.6, 141, 120 }, + [97] = { 57.6, 93.6, 141, 120 }, + [98] = { 55.5, 93.5, 141, 120 }, + [99] = { 57.7, 92.8, 141, 120 }, + [100] = { 55.9, 92.8, 141, 120 }, + [101] = { 57.3, 92.8, 141, 120 }, + [102] = { 57.2, 92.8, 141, 120 }, + [103] = { 57.7, 92.7, 141, 120 }, + [104] = { 56, 92.7, 141, 120 }, + [105] = { 56.1, 92.6, 141, 120 }, + [106] = { 57.6, 92.6, 141, 120 }, + [107] = { 55.1, 92.2, 141, 120 }, + [108] = { 55, 92.1, 141, 120 }, + [109] = { 68.1, 17.6, 148, 300 }, + [110] = { 40.7, 34.6, 215, 120 }, + [111] = { 40.6, 34.4, 215, 120 }, + [112] = { 40.6, 34, 215, 120 }, + [113] = { 37.6, 30.7, 215, 120 }, + [114] = { 37.8, 30.6, 215, 120 }, + [115] = { 38, 30.6, 215, 120 }, + [116] = { 38.3, 30.4, 215, 120 }, + [117] = { 37.2, 29.8, 215, 120 }, + [118] = { 37.2, 29.7, 215, 120 }, + [119] = { 37.9, 29.5, 215, 120 }, + [120] = { 37.7, 29.4, 215, 120 }, + [121] = { 37.5, 28.6, 215, 120 }, + [122] = { 37.4, 28.4, 215, 120 }, + [123] = { 38.7, 28.3, 215, 120 }, + [124] = { 38.5, 28.1, 215, 120 }, + [125] = { 38.4, 27.9, 215, 120 }, + [126] = { 40.9, 27.7, 215, 120 }, + [127] = { 41.7, 27.7, 215, 120 }, + [128] = { 41.7, 27.4, 215, 120 }, + [129] = { 41.7, 27.2, 215, 120 }, + [130] = { 40.7, 27.1, 215, 120 }, + [131] = { 41.6, 27, 215, 120 }, + [132] = { 14.1, 50, 267, 0 }, + [133] = { 70.5, 16.6, 1497, 120 }, + [134] = { 61.7, 15.7, 1497, 120 }, + [135] = { 70.5, 14.7, 1497, 120 }, + [136] = { 61.8, 13.9, 1497, 120 }, + [137] = { 70.5, 12.6, 1497, 120 }, + [138] = { 61.8, 12.4, 1497, 120 }, + [139] = { 67, 11.9, 1497, 120 }, + [140] = { 65.2, 11.8, 1497, 120 }, + [141] = { 68.3, 11.4, 1497, 120 }, + [142] = { 64, 11.3, 1497, 120 }, + [143] = { 65.2, 10.9, 1497, 120 }, + [144] = { 67.1, 10.8, 1497, 120 }, + [145] = { 61.8, 10.5, 1497, 120 }, + [146] = { 70.5, 10.4, 1497, 120 }, + [147] = { 61.8, 8.8, 1497, 120 }, + [148] = { 70.5, 8.5, 1497, 120 }, + [149] = { 61.8, 6.8, 1497, 120 }, + [150] = { 70.5, 6.6, 1497, 120 }, + [151] = { 69.4, 93.2, 1519, 120 }, + [152] = { 72.5, 90, 1519, 120 }, + [153] = { 73.1, 89.1, 1519, 120 }, + [154] = { 72, 89.1, 1519, 120 }, + [155] = { 72.8, 88.6, 1519, 120 }, + [156] = { 72.4, 87.8, 1519, 120 }, + [157] = { 71.4, 87.8, 1519, 120 }, + [158] = { 77, 85.5, 1519, 120 }, + [159] = { 76.9, 84.9, 1519, 120 }, + [160] = { 65.1, 77.2, 1519, 120 }, + [161] = { 66.5, 75.5, 1519, 120 }, + [162] = { 66.4, 75.4, 1519, 120 }, + [163] = { 36.4, 74.3, 1519, 300 }, + [164] = { 60.9, 74.2, 1519, 0 }, + [165] = { 63.3, 73.2, 1519, 120 }, + [166] = { 64.7, 73.1, 1519, 120 }, + [167] = { 62.1, 72.3, 1519, 0 }, + [168] = { 62.5, 71.6, 1519, 120 }, + [169] = { 63.3, 70.4, 1519, 120 }, + [170] = { 60.9, 69.8, 1519, 25 }, + [171] = { 61.9, 69, 1519, 120 }, + [172] = { 63, 69, 1519, 0 }, + [173] = { 48.4, 100, 1637, 120 }, + [174] = { 51.1, 99.6, 1637, 120 }, + [175] = { 51.1, 98.9, 1637, 120 }, + [176] = { 49.8, 89.3, 1637, 120 }, + [177] = { 50.3, 89.2, 1637, 120 }, + [178] = { 51.2, 89.1, 1637, 120 }, + [179] = { 51.7, 89, 1637, 120 }, + [180] = { 51.7, 82.6, 1637, 120 }, + [181] = { 52.9, 82.3, 1637, 120 }, + [182] = { 51.7, 81.9, 1637, 120 }, + [183] = { 52.9, 81.6, 1637, 120 }, + [184] = { 51.2, 81.1, 1637, 120 }, + [185] = { 50.8, 80.8, 1637, 120 }, + [186] = { 53.5, 87.4, 1638, 120 }, + [187] = { 53.3, 86.6, 1638, 120 }, + [188] = { 53, 84.3, 1638, 120 }, + [189] = { 38.3, 68.3, 1638, 120 }, + [190] = { 39.1, 67.7, 1638, 120 }, + [191] = { 40.2, 67.7, 1638, 120 }, + [192] = { 41.8, 66.5, 1638, 120 }, + [193] = { 36.2, 63.6, 1638, 120 }, + [194] = { 36.4, 63.2, 1638, 120 }, + [195] = { 39.7, 62.3, 1638, 120 }, + [196] = { 38.9, 61.6, 1638, 120 }, + [197] = { 37.6, 58.1, 1638, 120 }, + [198] = { 37.4, 57.1, 1638, 120 }, + [199] = { 43.6, 56.5, 1638, 120 }, + [200] = { 42.9, 55.2, 1638, 120 }, + [201] = { 42.1, 54.2, 1638, 120 }, + [202] = { 54.6, 53.4, 1638, 120 }, + [203] = { 58.4, 53.2, 1638, 120 }, + [204] = { 58.6, 52.1, 1638, 120 }, + [205] = { 58.6, 50.8, 1638, 120 }, + [206] = { 53.7, 50.5, 1638, 120 }, + [207] = { 58.3, 49.8, 1638, 120 }, + [208] = { 71.9, 12.6, 5179, 0 }, + }, + }, + [180700] = { + ["coords"] = { + [1] = { 54.1, 39.1, 1, 120 }, + [2] = { 54.1, 39, 1, 120 }, + [3] = { 52.8, 37.3, 1, 120 }, + [4] = { 52.7, 37.2, 1, 120 }, + [5] = { 52.8, 37.2, 1, 120 }, + [6] = { 42.8, 62.9, 12, 25 }, + [7] = { 59.9, 29.6, 12, 25 }, + [8] = { 46.4, 14.8, 14, 120 }, + [9] = { 46.3, 14.7, 14, 120 }, + [10] = { 46.4, 14.6, 14, 120 }, + [11] = { 45.2, 13.6, 14, 120 }, + [12] = { 45.1, 13.6, 14, 120 }, + [13] = { 9.1, 64.2, 28, 25 }, + [14] = { 80.3, 62.8, 28, 25 }, + [15] = { 30.5, 28.9, 28, 25 }, + [16] = { 22.6, 59, 45, 25 }, + [17] = { 62.2, 64, 85, 120 }, + [18] = { 61.6, 63.9, 85, 120 }, + [19] = { 62.2, 63.8, 85, 120 }, + [20] = { 61.5, 63.6, 85, 120 }, + [21] = { 61.5, 63.5, 85, 120 }, + [22] = { 61.5, 62.7, 85, 120 }, + [23] = { 61.5, 62.5, 85, 120 }, + [24] = { 62.4, 61.7, 85, 120 }, + [25] = { 62.4, 61.6, 85, 120 }, + [26] = { 87, 43.1, 85, 25 }, + [27] = { 22, 86.5, 139, 25 }, + [28] = { 55, 95.3, 141, 120 }, + [29] = { 55.2, 94.8, 141, 120 }, + [30] = { 55.1, 94.3, 141, 120 }, + [31] = { 55.4, 94, 141, 120 }, + [32] = { 55.4, 93.4, 141, 120 }, + [33] = { 40.5, 34.3, 215, 120 }, + [34] = { 40.5, 34.1, 215, 120 }, + [35] = { 40.5, 34, 215, 120 }, + [36] = { 40.5, 33.9, 215, 120 }, + [37] = { 37.8, 30.8, 215, 120 }, + [38] = { 37.7, 30.8, 215, 120 }, + [39] = { 38, 30.8, 215, 120 }, + [40] = { 37.9, 30.8, 215, 120 }, + [41] = { 38.3, 30.5, 215, 120 }, + [42] = { 38.4, 30.5, 215, 120 }, + [43] = { 39.7, 30.1, 215, 120 }, + [44] = { 39.8, 30, 215, 120 }, + [45] = { 40.9, 27.6, 215, 120 }, + [46] = { 41.5, 27.5, 215, 120 }, + [47] = { 40.7, 27.5, 215, 120 }, + [48] = { 41.6, 27.2, 215, 120 }, + [49] = { 40.8, 27.1, 215, 120 }, + [50] = { 70.2, 93.2, 1519, 120 }, + [51] = { 69.9, 93.1, 1519, 120 }, + [52] = { 70.5, 93.1, 1519, 120 }, + [53] = { 72.1, 89.5, 1519, 120 }, + [54] = { 73, 88.9, 1519, 120 }, + [55] = { 71.8, 88.7, 1519, 120 }, + [56] = { 72.6, 88.3, 1519, 120 }, + [57] = { 71.5, 88.1, 1519, 120 }, + [58] = { 72.2, 87.3, 1519, 120 }, + [59] = { 76.4, 86.4, 1519, 120 }, + [60] = { 76.7, 85.9, 1519, 120 }, + [61] = { 76.6, 85.4, 1519, 120 }, + [62] = { 77, 85.1, 1519, 120 }, + [63] = { 62.1, 72.5, 1519, 120 }, + [64] = { 62.1, 72, 1519, 120 }, + [65] = { 63.5, 70.7, 1519, 120 }, + [66] = { 62.2, 68.7, 1519, 120 }, + [67] = { 52.5, 85.8, 1638, 120 }, + [68] = { 52.7, 84.9, 1638, 120 }, + [69] = { 52.6, 84.3, 1638, 120 }, + [70] = { 52.4, 83.7, 1638, 120 }, + [71] = { 39.3, 68.6, 1638, 120 }, + [72] = { 38.7, 68.6, 1638, 120 }, + [73] = { 40.3, 68.6, 1638, 120 }, + [74] = { 39.8, 68.6, 1638, 120 }, + [75] = { 41.8, 67.1, 1638, 120 }, + [76] = { 42.2, 66.9, 1638, 120 }, + [77] = { 48.9, 65.5, 1638, 120 }, + [78] = { 49, 64.8, 1638, 120 }, + [79] = { 54.8, 53.1, 1638, 120 }, + [80] = { 57.7, 52.3, 1638, 120 }, + [81] = { 53.6, 52.2, 1638, 120 }, + [82] = { 57.8, 51, 1638, 120 }, + [83] = { 54, 50.3, 1638, 120 }, + }, + }, + [180712] = { + ["coords"] = { + [1] = { 53.8, 70.5, 16, 1800 }, + [2] = { 48.6, 51.1, 16, 1800 }, + [3] = { 49.7, 43.4, 16, 1800 }, + [4] = { 27.8, 83.5, 33, 1800 }, + [5] = { 32.6, 80.6, 33, 1800 }, + [6] = { 27.5, 76.5, 33, 1800 }, + [7] = { 27.9, 76, 33, 1800 }, + [8] = { 27.3, 74.7, 33, 1800 }, + [9] = { 26.5, 74.1, 33, 1800 }, + [10] = { 3.8, 70.8, 33, 1800 }, + [11] = { 5.7, 68.9, 33, 1800 }, + [12] = { 4, 68.2, 33, 1800 }, + [13] = { 25.4, 66.8, 33, 1800 }, + [14] = { 0.6, 66.7, 33, 1800 }, + [15] = { 23.9, 65.4, 33, 1800 }, + [16] = { 23.7, 63.1, 33, 1800 }, + [17] = { 41.1, 60.5, 33, 1800 }, + [18] = { 24.3, 59.4, 33, 1800 }, + [19] = { 1.3, 58.9, 33, 1800 }, + [20] = { 26.2, 58.3, 33, 1800 }, + [21] = { 22.1, 55.2, 33, 1800 }, + [22] = { 26, 48.6, 33, 1800 }, + [23] = { 27.2, 46.6, 33, 1800 }, + [24] = { 27.1, 42.3, 33, 1800 }, + [25] = { 28.9, 37.7, 33, 1800 }, + [26] = { 29.4, 37.2, 33, 1800 }, + [27] = { 31.8, 36.5, 33, 1800 }, + [28] = { 46.1, 53.8, 357, 1800 }, + [29] = { 47.9, 53.1, 357, 1800 }, + [30] = { 49.6, 52.3, 357, 1800 }, + [31] = { 44.1, 51, 357, 1800 }, + [32] = { 48, 50.8, 357, 1800 }, + [33] = { 44.1, 49.3, 357, 1800 }, + [34] = { 44.2, 46.5, 357, 1800 }, + [35] = { 44.2, 43.5, 357, 1800 }, + [36] = { 44.2, 41.6, 357, 1800 }, + [37] = { 42.9, 40.2, 357, 1800 }, + [38] = { 40.6, 38.6, 357, 1800 }, + [39] = { 39.5, 37.2, 357, 1800 }, + [40] = { 36.8, 36.3, 357, 1800 }, + [41] = { 35.1, 35.3, 357, 1800 }, + [42] = { 34.4, 34.2, 357, 1800 }, + [43] = { 38.8, 33.8, 357, 1800 }, + [44] = { 66.7, 88.6, 408, 1800 }, + [45] = { 61, 88.2, 408, 1800 }, + [46] = { 29.1, 84.9, 408, 1800 }, + [47] = { 79.6, 80.8, 408, 1800 }, + [48] = { 27.3, 78.3, 408, 1800 }, + [49] = { 83.4, 76.7, 408, 1800 }, + [50] = { 79.9, 75.3, 408, 1800 }, + [51] = { 72.9, 72.2, 408, 1800 }, + [52] = { 32.2, 71, 408, 1800 }, + [53] = { 33.5, 61.4, 408, 1800 }, + [54] = { 74.2, 56, 408, 1800 }, + [55] = { 40.9, 53.1, 408, 1800 }, + [56] = { 37.5, 52.1, 408, 1800 }, + [57] = { 71.8, 50.5, 408, 1800 }, + [58] = { 66.4, 47, 408, 1800 }, + [59] = { 53.6, 39.8, 408, 1800 }, + [60] = { 57.4, 39.1, 408, 1800 }, + [61] = { 56.3, 71.5, 409, 1800 }, + [62] = { 54.4, 67.2, 409, 1800 }, + [63] = { 53.4, 65.8, 409, 1800 }, + [64] = { 45.1, 65.1, 409, 1800 }, + [65] = { 46.7, 63.6, 409, 1800 }, + [66] = { 49.4, 62.4, 409, 1800 }, + [67] = { 50.8, 61.1, 409, 1800 }, + [68] = { 51.1, 59.3, 409, 1800 }, + [69] = { 73, 44.2, 440, 1800 }, + [70] = { 71.1, 40.3, 440, 1800 }, + [71] = { 68.2, 39.5, 440, 1800 }, + [72] = { 67.5, 38.9, 440, 1800 }, + [73] = { 68, 36.8, 440, 1800 }, + [74] = { 67.9, 23.4, 440, 1800 }, + [75] = { 68.6, 23, 440, 1800 }, + [76] = { 67.4, 19.4, 440, 1800 }, + [77] = { 66.6, 18.2, 440, 1800 }, + [78] = { 64, 68.5, 5121, 1800 }, + [79] = { 64.9, 62.8, 5121, 1800 }, + [80] = { 64.4, 55.9, 5121, 1800 }, + [81] = { 63.6, 48.5, 5121, 1800 }, + [82] = { 64.8, 39.6, 5121, 1800 }, + [83] = { 39.3, 38.8, 5121, 1800 }, + [84] = { 2.4, 33, 5121, 1800 }, + [85] = { 38.1, 32.7, 5121, 1800 }, + [86] = { 61.7, 32, 5121, 1800 }, + [87] = { 54.5, 29.6, 5121, 1800 }, + [88] = { 48.4, 28.9, 5121, 3032 }, + [89] = { 42.4, 26.9, 5121, 1800 }, + [90] = { 45, 15.6, 5121, 1800 }, + [91] = { 54, 7.8, 5121, 1800 }, + }, + }, + [180715] = { + ["coords"] = { + [1] = { 38.5, 27.9, 215, 180 }, + [2] = { 67.3, 38, 1497, 180 }, + [3] = { 62.1, 69.5, 1519, 180 }, + [4] = { 37.4, 70.2, 1537, 180 }, + [5] = { 53.6, 67.2, 1637, 180 }, + [6] = { 42.8, 54.3, 1638, 180 }, + }, + }, + [180717] = { + ["coords"] = { + [1] = { 25.7, 90.9, 1377, 900 }, + [2] = { 55.4, 2.2, 3478, 900 }, + }, + }, + [180719] = { + ["coords"] = { + [1] = { 73.3, 48.1, 440, 300 }, + [2] = { 3, 41.4, 5121, 300 }, + }, + }, + [180742] = { + ["coords"] = { + [1] = { 68.7, 34.4, 51, 300 }, + [2] = { 68.8, 34.4, 51, 300 }, + [3] = { 68.9, 34.4, 51, 300 }, + [4] = { 68.7, 34.2, 51, 300 }, + [5] = { 68.9, 34.2, 51, 300 }, + [6] = { 68.8, 34, 51, 300 }, + [7] = { 68.9, 34, 51, 300 }, + [8] = { 68.7, 34, 51, 300 }, + }, + }, + [180743] = { + ["coords"] = { + [1] = { 33.9, 65.7, 1537, 300 }, + [2] = { 52.4, 69.5, 1637, 300 }, + }, + }, + [180744] = { + ["coords"] = { + [1] = { 46.5, 43.7, 1377, 25 }, + [2] = { 56.3, 37.6, 1377, 25 }, + [3] = { 56.7, 37.6, 1377, 25 }, + }, + }, + [180745] = { + ["coords"] = { + [1] = { 49.7, 93.8, 3428, 7200 }, + [2] = { 50.5, 93.4, 3428, 7200 }, + [3] = { 50.6, 92.1, 3428, 7200 }, + [4] = { 31.9, 54.2, 5147, 7200 }, + [5] = { 32.2, 54.1, 5147, 7200 }, + [6] = { 32.2, 53.6, 5147, 7200 }, + }, + }, + [180746] = { + ["coords"] = { + [1] = { 33.5, 65.6, 1537, 300 }, + [2] = { 52.3, 69.4, 1637, 300 }, + }, + }, + [180747] = { + ["coords"] = { + [1] = { 33.8, 66.4, 1537, 300 }, + [2] = { 52.3, 69.2, 1637, 300 }, + }, + }, + [180748] = { + ["coords"] = { + [1] = { 33.9, 66.7, 1537, 300 }, + [2] = { 52.3, 69.3, 1637, 300 }, + }, + }, + [180749] = { + ["coords"] = { + [1] = { 54.3, 39.3, 1, 120 }, + [2] = { 53.7, 38.3, 1, 120 }, + [3] = { 51.6, 36.6, 1, 120 }, + [4] = { 53.2, 36, 1, 120 }, + [5] = { 46.1, 15.4, 14, 120 }, + [6] = { 45.7, 13.6, 14, 120 }, + [7] = { 46.5, 10.5, 14, 120 }, + [8] = { 46.3, 8.6, 14, 120 }, + [9] = { 27.6, 77.5, 33, 120 }, + [10] = { 26.7, 76.4, 33, 120 }, + [11] = { 28.2, 75.3, 33, 120 }, + [12] = { 26.8, 73.8, 33, 120 }, + [13] = { 62.5, 68.1, 85, 120 }, + [14] = { 61.1, 66.6, 85, 120 }, + [15] = { 62.1, 64.4, 85, 120 }, + [16] = { 61.4, 63.2, 85, 120 }, + [17] = { 58, 93.8, 141, 120 }, + [18] = { 54.9, 92.3, 141, 120 }, + [19] = { 56.4, 91.2, 141, 120 }, + [20] = { 37.8, 24, 215, 120 }, + [21] = { 40.7, 23.7, 215, 120 }, + [22] = { 69.3, 14.3, 1497, 120 }, + [23] = { 62.8, 7.3, 1497, 120 }, + [24] = { 67.3, 85.3, 1519, 120 }, + [25] = { 65.6, 74.8, 1519, 120 }, + [26] = { 61.5, 74.8, 1519, 120 }, + [27] = { 52.9, 89.5, 1637, 120 }, + [28] = { 51.9, 82.4, 1637, 120 }, + [29] = { 39.5, 35.4, 1638, 120 }, + [30] = { 53.7, 33.9, 1638, 120 }, + }, + }, + [180750] = { + ["coords"] = { + [1] = { 50.4, 59.4, 16, 1800 }, + [2] = { 52.2, 40.8, 16, 1800 }, + [3] = { 46.1, 53.8, 357, 1800 }, + [4] = { 47.9, 53.1, 357, 1800 }, + [5] = { 45, 52.5, 357, 1800 }, + [6] = { 49.6, 52.3, 357, 1800 }, + [7] = { 48, 50.8, 357, 1800 }, + [8] = { 44.1, 49.3, 357, 1800 }, + [9] = { 44.2, 46.5, 357, 1800 }, + [10] = { 44.1, 45.1, 357, 1800 }, + [11] = { 44.2, 43.5, 357, 1800 }, + [12] = { 44.2, 41.6, 357, 1800 }, + [13] = { 44.3, 40.4, 357, 1800 }, + [14] = { 42.9, 40.2, 357, 1800 }, + [15] = { 44, 40.1, 357, 1800 }, + [16] = { 41.7, 39.8, 357, 1800 }, + [17] = { 40.6, 38.6, 357, 1800 }, + [18] = { 36.8, 36.3, 357, 1800 }, + [19] = { 35.1, 35.3, 357, 1800 }, + [20] = { 34.4, 34.2, 357, 1800 }, + [21] = { 38.8, 33.8, 357, 1800 }, + [22] = { 33.6, 32.4, 357, 1800 }, + [23] = { 52.9, 23.7, 408, 1800 }, + [24] = { 58.1, 23, 408, 1800 }, + [25] = { 49.7, 21.8, 408, 1800 }, + [26] = { 60.1, 17.6, 408, 1800 }, + [27] = { 46.2, 16.8, 408, 1800 }, + [28] = { 43.9, 11.9, 408, 1800 }, + [29] = { 47.8, 9.8, 408, 1800 }, + [30] = { 51.8, 9, 408, 1800 }, + [31] = { 23.4, 6.3, 408, 1800 }, + [32] = { 19.2, 2.3, 408, 1800 }, + [33] = { 81.2, 96.3, 409, 1800 }, + [34] = { 66.3, 95.5, 409, 1800 }, + [35] = { 63.9, 90.2, 409, 1800 }, + [36] = { 68.1, 88, 409, 1800 }, + [37] = { 72.3, 87.1, 409, 1800 }, + [38] = { 42, 84.2, 409, 1800 }, + [39] = { 37.6, 80, 409, 1800 }, + [40] = { 36.4, 76, 409, 1800 }, + [41] = { 70.5, 70.6, 409, 1800 }, + [42] = { 34.3, 68.6, 409, 1800 }, + [43] = { 74, 65.7, 409, 1800 }, + [44] = { 31.8, 64.5, 409, 1800 }, + [45] = { 30.6, 59.1, 409, 1800 }, + [46] = { 74.2, 58.8, 409, 1800 }, + [47] = { 71.1, 52.9, 409, 1800 }, + [48] = { 29.6, 52.4, 409, 1800 }, + [49] = { 66.7, 51.4, 409, 1800 }, + [50] = { 63.6, 45.9, 409, 1800 }, + [51] = { 28, 43.2, 409, 1800 }, + [52] = { 64.3, 42.1, 409, 1800 }, + [53] = { 64.3, 37.6, 409, 1800 }, + [54] = { 28, 36.8, 409, 1800 }, + [55] = { 63, 26.1, 409, 1800 }, + [56] = { 60.6, 21.6, 409, 1800 }, + [57] = { 57.9, 21.4, 409, 1800 }, + [58] = { 62.9, 19.4, 409, 1800 }, + [59] = { 53.4, 19.2, 409, 1800 }, + [60] = { 65.4, 17.1, 409, 1800 }, + [61] = { 60.5, 13.3, 409, 1800 }, + [62] = { 64.2, 13.2, 409, 1800 }, + [63] = { 73.2, 51.4, 440, 1800 }, + [64] = { 67.7, 35.7, 440, 1800 }, + [65] = { 68.1, 29.5, 440, 1800 }, + [66] = { 67.4, 24.9, 440, 1800 }, + [67] = { 67.4, 19.4, 440, 1800 }, + [68] = { 66.6, 18.2, 440, 1800 }, + [69] = { 2.7, 48.3, 5121, 1800 }, + [70] = { 59.4, 31.9, 5121, 1800 }, + [71] = { 56.3, 30.2, 5121, 1800 }, + [72] = { 63.3, 29.4, 5121, 1800 }, + [73] = { 55.4, 28.3, 5121, 1800 }, + [74] = { 50.7, 28, 5121, 1800 }, + [75] = { 44.9, 27.9, 5121, 1800 }, + [76] = { 40.6, 27.2, 5121, 1800 }, + [77] = { 43.2, 24.4, 5121, 1800 }, + [78] = { 57.4, 21.6, 5121, 1800 }, + [79] = { 54.1, 15.6, 5121, 1800 }, + }, + }, + [180751] = { + ["coords"] = { + [1] = { 53.8, 70.5, 16, 900 }, + [2] = { 50, 61.7, 16, 900 }, + [3] = { 50.2, 55.8, 16, 900 }, + [4] = { 54.5, 50.4, 16, 900 }, + [5] = { 49.3, 53.5, 357, 900 }, + [6] = { 47.9, 53.1, 357, 900 }, + [7] = { 44.4, 47.8, 357, 900 }, + [8] = { 44.3, 40.4, 357, 3600 }, + [9] = { 42.9, 40.2, 357, 900 }, + [10] = { 44, 40.1, 357, 3600 }, + [11] = { 41.7, 39.8, 357, 900 }, + [12] = { 40.6, 38.6, 357, 3600 }, + [13] = { 35.1, 35.3, 357, 900 }, + [14] = { 34.4, 34.2, 357, 900 }, + [15] = { 38.8, 33.8, 357, 900 }, + [16] = { 71.3, 41.1, 440, 900 }, + [17] = { 68.1, 28.3, 440, 900 }, + [18] = { 67.4, 24.9, 440, 900 }, + [19] = { 67.7, 21, 440, 900 }, + [20] = { 66.6, 18.2, 440, 900 }, + }, + }, + [180752] = { + ["coords"] = { + [1] = { 56, 70.1, 16, 1800 }, + [2] = { 50.5, 64.4, 16, 1800 }, + [3] = { 46.1, 53.8, 357, 1800 }, + [4] = { 49.3, 53.5, 357, 1800 }, + [5] = { 45, 52.5, 357, 1800 }, + [6] = { 44.1, 51, 357, 1800 }, + [7] = { 48, 50.8, 357, 1800 }, + [8] = { 44.4, 47.8, 357, 1800 }, + [9] = { 44.2, 46.5, 357, 1800 }, + [10] = { 44.1, 45.1, 357, 1800 }, + [11] = { 44.2, 43.5, 357, 1800 }, + [12] = { 44.2, 41.6, 357, 1800 }, + [13] = { 44.3, 40.4, 357, 1800 }, + [14] = { 42.9, 40.2, 357, 1800 }, + [15] = { 44, 40.1, 357, 1800 }, + [16] = { 41.7, 39.8, 357, 1800 }, + [17] = { 40.6, 38.6, 357, 1800 }, + [18] = { 39.5, 37.2, 357, 1800 }, + [19] = { 34.4, 34.2, 357, 1800 }, + [20] = { 33.6, 32.4, 357, 1800 }, + [21] = { 60.8, 88.4, 408, 1800 }, + [22] = { 61.8, 84.1, 408, 1800 }, + [23] = { 63.4, 76.7, 408, 1800 }, + [24] = { 64.1, 72.6, 408, 1800 }, + [25] = { 46, 66.4, 408, 1800 }, + [26] = { 42.5, 66.1, 408, 1800 }, + [27] = { 48.5, 65, 408, 1800 }, + [28] = { 50.4, 61, 408, 1800 }, + [29] = { 56.1, 60.7, 408, 1800 }, + [30] = { 60.2, 60.5, 408, 1800 }, + [31] = { 49.9, 56.7, 408, 1800 }, + [32] = { 50.8, 49, 408, 1800 }, + [33] = { 53, 39.8, 408, 1800 }, + [34] = { 69.9, 56.2, 440, 1800 }, + [35] = { 67.5, 25.7, 440, 1800 }, + [36] = { 67.4, 24.9, 440, 1800 }, + [37] = { 67.9, 23.4, 440, 1800 }, + [38] = { 68.6, 23, 440, 1800 }, + [39] = { 67.4, 19.4, 440, 1800 }, + [40] = { 66.6, 18.2, 440, 1800 }, + [41] = { 99.8, 49.3, 1941, 1800 }, + [42] = { 47.2, 90.9, 5121, 1800 }, + [43] = { 58.5, 89, 5121, 1800 }, + [44] = { 62.9, 89, 5121, 1800 }, + [45] = { 42.5, 88.4, 5121, 1800 }, + [46] = { 53.2, 88, 5121, 1800 }, + [47] = { 40.6, 85.7, 5121, 1800 }, + [48] = { 64.3, 83, 5121, 1800 }, + [49] = { 39.2, 77.1, 5121, 1800 }, + [50] = { 61.5, 76.1, 5121, 1800 }, + [51] = { 39.7, 74, 5121, 1800 }, + [52] = { 63.9, 71.8, 5121, 1800 }, + [53] = { 38.8, 69.1, 5121, 1800 }, + [54] = { 39.2, 63.8, 5121, 1800 }, + }, + }, + [180753] = { + ["coords"] = { + [1] = { 74.6, 72.6, 16, 3600 }, + [2] = { 66.3, 68.5, 16, 3600 }, + [3] = { 79.2, 54.4, 16, 3600 }, + [4] = { 55.6, 51.1, 16, 3600 }, + [5] = { 60.1, 39.7, 16, 3600 }, + [6] = { 54.8, 38.8, 16, 3600 }, + [7] = { 56.7, 73.5, 409, 1800 }, + [8] = { 44.3, 64.9, 409, 1800 }, + [9] = { 55.5, 50.7, 409, 1800 }, + }, + }, + [180754] = { + ["coords"] = { + [1] = { 54.2, 39.3, 1, 120 }, + [2] = { 54.1, 39.2, 1, 120 }, + [3] = { 54.2, 39.2, 1, 120 }, + [4] = { 54, 38.9, 1, 120 }, + [5] = { 53.9, 38.9, 1, 120 }, + [6] = { 52.9, 37.3, 1, 120 }, + [7] = { 52.4, 37.1, 1, 120 }, + [8] = { 52.3, 37, 1, 120 }, + [9] = { 52.4, 37, 1, 120 }, + [10] = { 52.5, 36.5, 1, 120 }, + [11] = { 53, 36.3, 1, 120 }, + [12] = { 52.9, 36.2, 1, 120 }, + [13] = { 53, 36.2, 1, 120 }, + [14] = { 52.5, 36, 1, 120 }, + [15] = { 53.3, 35.4, 1, 120 }, + [16] = { 53.3, 35.3, 1, 120 }, + [17] = { 52.7, 35.2, 1, 120 }, + [18] = { 52.9, 35.2, 1, 120 }, + [19] = { 52.9, 35.1, 1, 120 }, + [20] = { 53.1, 35.1, 1, 120 }, + [21] = { 53.1, 35, 1, 120 }, + [22] = { 46.1, 14.5, 14, 120 }, + [23] = { 46.1, 14.4, 14, 120 }, + [24] = { 45.6, 14.2, 14, 120 }, + [25] = { 46.1, 14.1, 14, 120 }, + [26] = { 45.5, 14, 14, 120 }, + [27] = { 45.4, 13.4, 14, 120 }, + [28] = { 45.3, 13.4, 14, 120 }, + [29] = { 46, 13.3, 14, 120 }, + [30] = { 46.1, 13.3, 14, 120 }, + [31] = { 46.1, 13.1, 14, 120 }, + [32] = { 46, 13.1, 14, 120 }, + [33] = { 45.8, 10.5, 14, 120 }, + [34] = { 45.8, 10.4, 14, 120 }, + [35] = { 46.1, 10.4, 14, 120 }, + [36] = { 46.2, 8.6, 14, 120 }, + [37] = { 46.5, 8.6, 14, 120 }, + [38] = { 46.6, 8.6, 14, 120 }, + [39] = { 46.5, 8.5, 14, 120 }, + [40] = { 46.6, 8.5, 14, 120 }, + [41] = { 46.5, 8.3, 14, 120 }, + [42] = { 46.6, 8.3, 14, 120 }, + [43] = { 46, 8.3, 14, 120 }, + [44] = { 46, 8.2, 14, 120 }, + [45] = { 28.1, 77.4, 33, 120 }, + [46] = { 28.1, 77.3, 33, 120 }, + [47] = { 27.2, 77.1, 33, 120 }, + [48] = { 27.7, 77, 33, 120 }, + [49] = { 28.2, 76.3, 33, 120 }, + [50] = { 28.1, 76.3, 33, 120 }, + [51] = { 28.2, 76.2, 33, 120 }, + [52] = { 28.3, 76, 33, 120 }, + [53] = { 28.3, 75.9, 33, 120 }, + [54] = { 27.9, 74.8, 33, 120 }, + [55] = { 27.9, 74.7, 33, 120 }, + [56] = { 27.8, 74.2, 33, 120 }, + [57] = { 27.7, 74.2, 33, 120 }, + [58] = { 26.6, 73.5, 33, 120 }, + [59] = { 62.8, 68.4, 85, 120 }, + [60] = { 62.7, 68.4, 85, 120 }, + [61] = { 60.9, 68.3, 85, 120 }, + [62] = { 61, 68.3, 85, 120 }, + [63] = { 60.9, 68.2, 85, 120 }, + [64] = { 62.8, 67.8, 85, 120 }, + [65] = { 62.7, 67.8, 85, 120 }, + [66] = { 61, 67.8, 85, 120 }, + [67] = { 60.9, 67.8, 85, 120 }, + [68] = { 60.9, 67.7, 85, 120 }, + [69] = { 61, 67.7, 85, 120 }, + [70] = { 62.4, 67.5, 85, 120 }, + [71] = { 61.3, 67.5, 85, 120 }, + [72] = { 62, 67.5, 85, 120 }, + [73] = { 61.7, 67.5, 85, 120 }, + [74] = { 62.1, 67.5, 85, 120 }, + [75] = { 61.6, 67.5, 85, 120 }, + [76] = { 62.4, 67.4, 85, 120 }, + [77] = { 61.3, 67.4, 85, 120 }, + [78] = { 62.1, 67.4, 85, 120 }, + [79] = { 61.7, 67.4, 85, 120 }, + [80] = { 62, 67.4, 85, 120 }, + [81] = { 61, 67.2, 85, 120 }, + [82] = { 60.9, 67.2, 85, 120 }, + [83] = { 62.8, 67.2, 85, 120 }, + [84] = { 62.7, 67.2, 85, 120 }, + [85] = { 62.8, 67.1, 85, 120 }, + [86] = { 62.7, 67.1, 85, 120 }, + [87] = { 61, 66.6, 85, 120 }, + [88] = { 60.9, 66.6, 85, 120 }, + [89] = { 62.7, 66.6, 85, 120 }, + [90] = { 62.8, 66.6, 85, 120 }, + [91] = { 62.7, 66.5, 85, 120 }, + [92] = { 62.8, 66.5, 85, 120 }, + [93] = { 55, 95, 141, 120 }, + [94] = { 55.3, 94.5, 141, 120 }, + [95] = { 55.2, 94.5, 141, 120 }, + [96] = { 55.2, 93.9, 141, 120 }, + [97] = { 55.3, 93.9, 141, 120 }, + [98] = { 57.7, 93.8, 141, 120 }, + [99] = { 57.7, 93.7, 141, 120 }, + [100] = { 55.5, 93.6, 141, 120 }, + [101] = { 55.5, 93.5, 141, 120 }, + [102] = { 57.2, 92.8, 141, 120 }, + [103] = { 57.7, 92.8, 141, 120 }, + [104] = { 55.9, 92.8, 141, 120 }, + [105] = { 55.9, 92.7, 141, 120 }, + [106] = { 57.7, 92.7, 141, 120 }, + [107] = { 56, 92.7, 141, 120 }, + [108] = { 57.6, 92.7, 141, 120 }, + [109] = { 56, 92.6, 141, 120 }, + [110] = { 57.6, 92.6, 141, 120 }, + [111] = { 37.8, 29.5, 215, 120 }, + [112] = { 37.9, 29.5, 215, 120 }, + [113] = { 37.7, 29.5, 215, 120 }, + [114] = { 37.7, 29.4, 215, 120 }, + [115] = { 37.4, 28.6, 215, 120 }, + [116] = { 37.4, 28.5, 215, 120 }, + [117] = { 38.4, 28, 215, 120 }, + [118] = { 38.5, 28, 215, 120 }, + [119] = { 38.4, 27.9, 215, 120 }, + [120] = { 70.5, 16.1, 1497, 120 }, + [121] = { 70.3, 16.1, 1497, 120 }, + [122] = { 70.4, 16, 1497, 120 }, + [123] = { 70.5, 16, 1497, 120 }, + [124] = { 70.3, 16, 1497, 120 }, + [125] = { 61.8, 15.2, 1497, 120 }, + [126] = { 61.9, 15.2, 1497, 120 }, + [127] = { 61.9, 15.1, 1497, 120 }, + [128] = { 61.8, 15, 1497, 120 }, + [129] = { 61.9, 15, 1497, 120 }, + [130] = { 70.5, 13.2, 1497, 120 }, + [131] = { 70.4, 13.1, 1497, 120 }, + [132] = { 70.5, 13.1, 1497, 120 }, + [133] = { 70.5, 13, 1497, 120 }, + [134] = { 70.4, 12.9, 1497, 120 }, + [135] = { 62, 12.9, 1497, 120 }, + [136] = { 61.8, 12.8, 1497, 120 }, + [137] = { 61.9, 12.7, 1497, 120 }, + [138] = { 61.8, 12.7, 1497, 120 }, + [139] = { 62, 12.7, 1497, 120 }, + [140] = { 68.8, 11.5, 1497, 120 }, + [141] = { 68.6, 11.5, 1497, 120 }, + [142] = { 63.7, 11.5, 1497, 120 }, + [143] = { 63.5, 11.4, 1497, 120 }, + [144] = { 67, 11.4, 1497, 120 }, + [145] = { 65.3, 11.4, 1497, 120 }, + [146] = { 67.2, 11.4, 1497, 120 }, + [147] = { 65.2, 11.4, 1497, 120 }, + [148] = { 68.7, 11.4, 1497, 120 }, + [149] = { 67.1, 11.4, 1497, 120 }, + [150] = { 63.6, 11.4, 1497, 120 }, + [151] = { 65.3, 11.3, 1497, 120 }, + [152] = { 68.8, 11.3, 1497, 120 }, + [153] = { 68.6, 11.3, 1497, 120 }, + [154] = { 63.7, 11.2, 1497, 120 }, + [155] = { 63.5, 11.2, 1497, 120 }, + [156] = { 67.2, 11.2, 1497, 120 }, + [157] = { 65.3, 11.2, 1497, 120 }, + [158] = { 67, 11.2, 1497, 120 }, + [159] = { 65.2, 11.2, 1497, 120 }, + [160] = { 61.9, 10.2, 1497, 120 }, + [161] = { 61.8, 10.2, 1497, 120 }, + [162] = { 61.9, 10.1, 1497, 120 }, + [163] = { 61.8, 10, 1497, 120 }, + [164] = { 70.5, 10, 1497, 120 }, + [165] = { 70.4, 10, 1497, 120 }, + [166] = { 61.9, 10, 1497, 120 }, + [167] = { 70.4, 9.9, 1497, 120 }, + [168] = { 70.4, 9.8, 1497, 120 }, + [169] = { 70.5, 9.8, 1497, 120 }, + [170] = { 62, 7.4, 1497, 120 }, + [171] = { 61.8, 7.4, 1497, 120 }, + [172] = { 61.9, 7.3, 1497, 120 }, + [173] = { 61.8, 7.2, 1497, 120 }, + [174] = { 70.4, 7.2, 1497, 120 }, + [175] = { 70.5, 7.2, 1497, 120 }, + [176] = { 70.4, 7.1, 1497, 120 }, + [177] = { 70.4, 7, 1497, 120 }, + [178] = { 70.5, 7, 1497, 120 }, + [179] = { 65.5, 74.5, 1519, 120 }, + [180] = { 65.4, 74.5, 1519, 120 }, + [181] = { 65.5, 74.4, 1519, 120 }, + [182] = { 65.3, 74.2, 1519, 120 }, + [183] = { 65.2, 74.2, 1519, 120 }, + [184] = { 65.3, 74.1, 1519, 120 }, + [185] = { 65.1, 74, 1519, 120 }, + [186] = { 62.1, 73.9, 1519, 120 }, + [187] = { 65.1, 73.9, 1519, 120 }, + [188] = { 65, 73.9, 1519, 120 }, + [189] = { 62.2, 73.9, 1519, 120 }, + [190] = { 65.1, 73.8, 1519, 120 }, + [191] = { 62.2, 73.8, 1519, 120 }, + [192] = { 63.1, 73.4, 1519, 120 }, + [193] = { 63, 73.3, 1519, 120 }, + [194] = { 63.1, 73.3, 1519, 120 }, + [195] = { 63.1, 73.2, 1519, 120 }, + [196] = { 61.7, 73.1, 1519, 120 }, + [197] = { 61.8, 73.1, 1519, 120 }, + [198] = { 61.7, 73, 1519, 120 }, + [199] = { 61.8, 73, 1519, 120 }, + [200] = { 61.9, 72.9, 1519, 120 }, + [201] = { 61.9, 72.8, 1519, 120 }, + [202] = { 62, 72.8, 1519, 120 }, + [203] = { 61.9, 72.7, 1519, 120 }, + [204] = { 62.9, 71.8, 1519, 120 }, + [205] = { 63, 71.8, 1519, 120 }, + [206] = { 63, 71.7, 1519, 120 }, + [207] = { 62.9, 71.7, 1519, 120 }, + [208] = { 62, 71, 1519, 120 }, + [209] = { 61.9, 71, 1519, 120 }, + [210] = { 62, 70.9, 1519, 120 }, + [211] = { 61.9, 70.9, 1519, 120 }, + [212] = { 63, 70.9, 1519, 120 }, + [213] = { 63, 70.8, 1519, 120 }, + [214] = { 62.9, 70.8, 1519, 120 }, + [215] = { 13.8, 89.1, 1537, 120 }, + [216] = { 13.8, 89, 1537, 120 }, + [217] = { 14, 89, 1537, 120 }, + [218] = { 13.8, 88.9, 1537, 120 }, + [219] = { 13.9, 88.9, 1537, 120 }, + [220] = { 13.8, 88.7, 1537, 120 }, + [221] = { 51.1, 100, 1637, 120 }, + [222] = { 51, 99.9, 1637, 120 }, + [223] = { 51.1, 99.9, 1637, 120 }, + [224] = { 51.1, 99.3, 1637, 120 }, + [225] = { 51, 99.3, 1637, 120 }, + [226] = { 51, 99.2, 1637, 120 }, + [227] = { 51.1, 99.1, 1637, 120 }, + [228] = { 51, 99.1, 1637, 120 }, + [229] = { 50, 89.3, 1637, 120 }, + [230] = { 50.1, 89.2, 1637, 120 }, + [231] = { 50, 89.1, 1637, 120 }, + [232] = { 50.1, 89.1, 1637, 120 }, + [233] = { 51.4, 89.1, 1637, 120 }, + [234] = { 51.5, 89.1, 1637, 120 }, + [235] = { 51.4, 89, 1637, 120 }, + [236] = { 51.4, 88.9, 1637, 120 }, + [237] = { 51.5, 88.9, 1637, 120 }, + [238] = { 51.8, 82.3, 1637, 120 }, + [239] = { 51.7, 82.3, 1637, 120 }, + [240] = { 51.8, 82.2, 1637, 120 }, + [241] = { 51.7, 82.2, 1637, 120 }, + [242] = { 52.9, 82.1, 1637, 120 }, + [243] = { 53, 82.1, 1637, 120 }, + [244] = { 53, 82, 1637, 120 }, + [245] = { 52.9, 82, 1637, 120 }, + [246] = { 53, 81.2, 1637, 120 }, + [247] = { 52.9, 81.1, 1637, 120 }, + [248] = { 53, 81, 1637, 120 }, + [249] = { 52.9, 81, 1637, 120 }, + [250] = { 51.1, 81, 1637, 120 }, + [251] = { 51, 80.9, 1637, 120 }, + [252] = { 51.1, 80.9, 1637, 120 }, + [253] = { 51, 80.8, 1637, 120 }, + [254] = { 39.3, 62.4, 1638, 120 }, + [255] = { 39.4, 62.3, 1638, 120 }, + [256] = { 39.7, 62.3, 1638, 120 }, + [257] = { 39.3, 62.3, 1638, 120 }, + [258] = { 39.4, 62.2, 1638, 120 }, + [259] = { 39.1, 62.2, 1638, 120 }, + [260] = { 39.3, 62.2, 1638, 120 }, + [261] = { 39, 62.1, 1638, 120 }, + [262] = { 39.2, 62, 1638, 120 }, + [263] = { 39.1, 62, 1638, 120 }, + [264] = { 39, 62, 1638, 120 }, + [265] = { 39.1, 61.9, 1638, 120 }, + [266] = { 38.9, 61.6, 1638, 120 }, + [267] = { 37.4, 57.8, 1638, 120 }, + [268] = { 37.4, 57.7, 1638, 120 }, + [269] = { 37.3, 57.6, 1638, 120 }, + [270] = { 37.4, 57.5, 1638, 120 }, + [271] = { 42.4, 55, 1638, 120 }, + [272] = { 42.6, 55, 1638, 120 }, + [273] = { 42.5, 54.9, 1638, 120 }, + [274] = { 42.4, 54.9, 1638, 120 }, + [275] = { 42.5, 54.8, 1638, 120 }, + [276] = { 42.2, 54.7, 1638, 120 }, + [277] = { 42.3, 54.7, 1638, 120 }, + [278] = { 42.1, 54.6, 1638, 120 }, + [279] = { 42.3, 54.6, 1638, 120 }, + [280] = { 42.2, 54.6, 1638, 120 }, + [281] = { 42.3, 54.5, 1638, 120 }, + }, + }, + [180757] = { + ["coords"] = { + [1] = { 63.6, 81.1, 1519, 180 }, + [2] = { 60.5, 75.5, 1519, 180 }, + [3] = { 60.5, 69.4, 1519, 180 }, + }, + }, + [180758] = { + ["coords"] = { + [1] = { 29.2, 57.9, 141, 180 }, + [2] = { 29.6, 56.3, 141, 180 }, + [3] = { 25.5, 55.9, 141, 180 }, + [4] = { 29.6, 54.3, 141, 180 }, + [5] = { 31.5, 49.7, 141, 180 }, + [6] = { 43.6, 33.9, 493, 180 }, + [7] = { 57.6, 52.5, 1657, 180 }, + [8] = { 59.6, 45, 1657, 180 }, + [9] = { 39.9, 42.9, 1657, 180 }, + [10] = { 59.5, 35.6, 1657, 180 }, + [11] = { 68.9, 13.5, 1657, 180 }, + }, + }, + [180759] = { + ["coords"] = { + [1] = { 49.9, 70.5, 1637, 180 }, + [2] = { 53.6, 69, 1637, 180 }, + [3] = { 47.5, 65.2, 1637, 180 }, + [4] = { 53.6, 64.7, 1637, 180 }, + [5] = { 40.8, 37.9, 1637, 180 }, + [6] = { 76.6, 33.6, 1637, 180 }, + }, + }, + [180760] = { + ["coords"] = { + [1] = { 70, 44.1, 1497, 180 }, + [2] = { 62, 44.1, 1497, 180 }, + [3] = { 68.4, 38.5, 1497, 180 }, + }, + }, + [180761] = { + ["coords"] = { + [1] = { 39.1, 28.7, 215, 180 }, + [2] = { 41.2, 27.7, 215, 180 }, + [3] = { 41.2, 26.9, 215, 180 }, + [4] = { 39.3, 26.5, 215, 180 }, + [5] = { 44.9, 22.9, 215, 180 }, + [6] = { 48.9, 38.4, 493, 180 }, + [7] = { 45.7, 58.4, 1638, 180 }, + [8] = { 56.3, 53.6, 1638, 180 }, + [9] = { 56.3, 49.2, 1638, 180 }, + [10] = { 46.6, 47.3, 1638, 180 }, + [11] = { 74.4, 29.8, 1638, 180 }, + }, + }, + [180762] = { + ["coords"] = { + [1] = { 54.2, 69.5, 1637, 180 }, + [2] = { 46.6, 64.3, 1637, 180 }, + [3] = { 40.7, 35.9, 1637, 180 }, + [4] = { 76.2, 32.5, 1637, 180 }, + }, + }, + [180763] = { + ["coords"] = { + [1] = { 30.6, 57.1, 141, 180 }, + [2] = { 30.8, 57.1, 141, 180 }, + [3] = { 31, 57.1, 141, 180 }, + [4] = { 31.1, 57.1, 141, 180 }, + [5] = { 31.6, 57.1, 141, 180 }, + [6] = { 30.3, 56.5, 141, 180 }, + [7] = { 30.3, 56, 141, 180 }, + [8] = { 30.3, 54.2, 141, 180 }, + [9] = { 30.6, 53.6, 141, 180 }, + [10] = { 30.9, 53.6, 141, 180 }, + [11] = { 31, 53.6, 141, 180 }, + [12] = { 31.2, 53.6, 141, 180 }, + [13] = { 37.9, 29.8, 215, 180 }, + [14] = { 38.1, 29.7, 215, 180 }, + [15] = { 38.5, 29.4, 215, 180 }, + [16] = { 37.2, 28.8, 215, 180 }, + [17] = { 37, 28, 215, 180 }, + [18] = { 39, 28, 215, 180 }, + [19] = { 38.3, 27.9, 215, 180 }, + [20] = { 38.1, 27.6, 215, 180 }, + [21] = { 38.1, 27.4, 215, 180 }, + [22] = { 37.6, 27, 215, 180 }, + [23] = { 46.2, 45, 493, 180 }, + [24] = { 52.8, 41.5, 493, 180 }, + [25] = { 48.1, 41.3, 493, 180 }, + [26] = { 50.7, 41.1, 493, 180 }, + [27] = { 52.2, 40.9, 493, 180 }, + [28] = { 47, 40.2, 493, 180 }, + [29] = { 47.9, 37.3, 493, 180 }, + [30] = { 48.8, 37.1, 493, 180 }, + [31] = { 43.2, 34, 493, 180 }, + [32] = { 51.1, 34, 493, 180 }, + [33] = { 45.9, 33.5, 493, 180 }, + [34] = { 48.9, 33.3, 493, 180 }, + [35] = { 48.3, 32.7, 493, 180 }, + [36] = { 67.5, 49, 1497, 180 }, + [37] = { 64.3, 48.8, 1497, 180 }, + [38] = { 62.7, 46.4, 1497, 180 }, + [39] = { 69.5, 45.5, 1497, 180 }, + [40] = { 62.5, 45.4, 1497, 180 }, + [41] = { 69.5, 42.8, 1497, 180 }, + [42] = { 62.5, 42.7, 1497, 180 }, + [43] = { 69.2, 41.7, 1497, 180 }, + [44] = { 67.6, 39.3, 1497, 180 }, + [45] = { 65.1, 76.7, 1519, 180 }, + [46] = { 64, 75.7, 1519, 180 }, + [47] = { 66.3, 75.1, 1519, 180 }, + [48] = { 62.4, 74.1, 1519, 180 }, + [49] = { 63.5, 73.5, 1519, 180 }, + [50] = { 64.1, 72.3, 1519, 180 }, + [51] = { 63.7, 70.2, 1519, 180 }, + [52] = { 37.7, 66, 1519, 180 }, + [53] = { 37.8, 63.8, 1519, 180 }, + [54] = { 38.1, 63.5, 1519, 180 }, + [55] = { 64.4, 82, 1537, 180 }, + [56] = { 35.7, 67.7, 1537, 180 }, + [57] = { 31, 60.1, 1537, 180 }, + [58] = { 67.6, 53.6, 1537, 180 }, + [59] = { 72.4, 53, 1537, 180 }, + [60] = { 20.4, 51.2, 1537, 180 }, + [61] = { 72.6, 51, 1537, 180 }, + [62] = { 72.8, 49.4, 1537, 180 }, + [63] = { 73, 47.4, 1537, 180 }, + [64] = { 49.2, 71.5, 1637, 180 }, + [65] = { 50.8, 70.5, 1637, 180 }, + [66] = { 54.5, 70.5, 1637, 180 }, + [67] = { 53, 68.8, 1637, 180 }, + [68] = { 51, 67.8, 1637, 180 }, + [69] = { 53.6, 66, 1637, 180 }, + [70] = { 51.6, 63.8, 1637, 180 }, + [71] = { 52.9, 63.7, 1637, 180 }, + [72] = { 41.9, 33.7, 1637, 180 }, + [73] = { 41.2, 32.4, 1637, 180 }, + [74] = { 39.7, 63.9, 1638, 180 }, + [75] = { 41, 63.2, 1638, 180 }, + [76] = { 42.7, 61.9, 1638, 180 }, + [77] = { 36.6, 58.9, 1638, 180 }, + [78] = { 35.3, 54.9, 1638, 180 }, + [79] = { 45.4, 54.6, 1638, 180 }, + [80] = { 41.6, 54.2, 1638, 180 }, + [81] = { 40.7, 52.9, 1638, 180 }, + [82] = { 40.8, 51.9, 1638, 180 }, + [83] = { 38.5, 50.1, 1638, 180 }, + [84] = { 64.5, 49, 1657, 180 }, + [85] = { 65.2, 49, 1657, 180 }, + [86] = { 66.2, 49, 1657, 180 }, + [87] = { 66.8, 49, 1657, 180 }, + [88] = { 69.1, 48.9, 1657, 180 }, + [89] = { 63.1, 45.9, 1657, 180 }, + [90] = { 63.1, 43.5, 1657, 180 }, + [91] = { 62.9, 35.1, 1657, 180 }, + [92] = { 64.6, 31.9, 1657, 180 }, + [93] = { 65.8, 31.9, 1657, 180 }, + [94] = { 66.5, 31.9, 1657, 180 }, + [95] = { 67.3, 31.8, 1657, 180 }, + }, + }, + [180764] = { + ["coords"] = { + [1] = { 31.3, 57.1, 141, 180 }, + [2] = { 31.4, 57.1, 141, 180 }, + [3] = { 31.8, 57.1, 141, 180 }, + [4] = { 31.9, 57.1, 141, 180 }, + [5] = { 30.3, 56.8, 141, 180 }, + [6] = { 30.3, 56.2, 141, 180 }, + [7] = { 30.3, 54.8, 141, 180 }, + [8] = { 30.3, 54.5, 141, 180 }, + [9] = { 30.3, 54, 141, 180 }, + [10] = { 30.6, 53.6, 141, 180 }, + [11] = { 30.7, 53.6, 141, 180 }, + [12] = { 31.3, 53.5, 141, 180 }, + [13] = { 31.5, 53.5, 141, 180 }, + [14] = { 31.7, 53.5, 141, 180 }, + [15] = { 31.8, 53.5, 141, 180 }, + [16] = { 23.8, 49.8, 141, 25 }, + [17] = { 24.4, 49.6, 141, 25 }, + [18] = { 24, 49.6, 141, 25 }, + [19] = { 24, 49.4, 141, 25 }, + [20] = { 23.8, 49.3, 141, 25 }, + [21] = { 37.6, 29.8, 215, 180 }, + [22] = { 38.1, 29.7, 215, 180 }, + [23] = { 38.5, 29.4, 215, 180 }, + [24] = { 37.3, 29.1, 215, 180 }, + [25] = { 37.2, 28.8, 215, 180 }, + [26] = { 37, 28, 215, 180 }, + [27] = { 39, 28, 215, 180 }, + [28] = { 38.3, 27.9, 215, 180 }, + [29] = { 38.1, 27.6, 215, 180 }, + [30] = { 38.1, 27.4, 215, 180 }, + [31] = { 37.6, 27, 215, 180 }, + [32] = { 46, 46, 493, 180 }, + [33] = { 46.2, 45.9, 493, 180 }, + [34] = { 46.4, 45.2, 493, 180 }, + [35] = { 46.8, 43.6, 493, 180 }, + [36] = { 46.8, 42.3, 493, 180 }, + [37] = { 52.3, 41.8, 493, 180 }, + [38] = { 52.2, 41.6, 493, 180 }, + [39] = { 52.8, 41.5, 493, 180 }, + [40] = { 52.9, 41.3, 493, 180 }, + [41] = { 49.1, 41.2, 493, 180 }, + [42] = { 52.2, 40.9, 493, 180 }, + [43] = { 46.9, 38.7, 493, 180 }, + [44] = { 48.8, 37.1, 493, 180 }, + [45] = { 44.3, 36.9, 493, 180 }, + [46] = { 45.3, 36.7, 493, 180 }, + [47] = { 43.3, 35.4, 493, 180 }, + [48] = { 46, 34.9, 493, 180 }, + [49] = { 52.4, 34, 493, 180 }, + [50] = { 48.9, 33.3, 493, 180 }, + [51] = { 48.9, 33, 493, 180 }, + [52] = { 48.5, 32.6, 493, 180 }, + [53] = { 67.5, 49, 1497, 180 }, + [54] = { 64.3, 48.8, 1497, 180 }, + [55] = { 69.2, 46.5, 1497, 180 }, + [56] = { 62.7, 46.4, 1497, 180 }, + [57] = { 62.5, 45.4, 1497, 180 }, + [58] = { 69.5, 42.8, 1497, 180 }, + [59] = { 69.2, 41.7, 1497, 180 }, + [60] = { 62.7, 41.7, 1497, 180 }, + [61] = { 64.4, 39.2, 1497, 180 }, + [62] = { 65.5, 37.4, 1497, 180 }, + [63] = { 66.7, 37, 1497, 180 }, + [64] = { 65.1, 76.7, 1519, 180 }, + [65] = { 61.1, 74.6, 1519, 180 }, + [66] = { 62.4, 74.1, 1519, 180 }, + [67] = { 63.5, 73.5, 1519, 180 }, + [68] = { 37.7, 66, 1519, 180 }, + [69] = { 37.8, 63.8, 1519, 180 }, + [70] = { 66.5, 79.5, 1537, 180 }, + [71] = { 35.7, 67.7, 1537, 180 }, + [72] = { 30.5, 57.8, 1537, 180 }, + [73] = { 56.3, 53.6, 1537, 180 }, + [74] = { 72.4, 53, 1537, 180 }, + [75] = { 57.3, 51.8, 1537, 180 }, + [76] = { 72.6, 51, 1537, 180 }, + [77] = { 72.8, 49.4, 1537, 180 }, + [78] = { 68.6, 44.7, 1537, 180 }, + [79] = { 59, 43.5, 1537, 180 }, + [80] = { 31.1, 20.6, 1537, 180 }, + [81] = { 49.2, 71.5, 1637, 180 }, + [82] = { 50.8, 70.5, 1637, 180 }, + [83] = { 54.5, 70.5, 1637, 180 }, + [84] = { 53, 68.8, 1637, 180 }, + [85] = { 53.6, 66, 1637, 180 }, + [86] = { 51.6, 63.8, 1637, 180 }, + [87] = { 52.9, 63.7, 1637, 180 }, + [88] = { 42.7, 35.4, 1637, 180 }, + [89] = { 38.3, 63.6, 1638, 180 }, + [90] = { 41, 63.2, 1638, 180 }, + [91] = { 42.7, 61.9, 1638, 180 }, + [92] = { 36.8, 60.4, 1638, 180 }, + [93] = { 36.6, 58.9, 1638, 180 }, + [94] = { 35.3, 54.9, 1638, 180 }, + [95] = { 45.4, 54.6, 1638, 180 }, + [96] = { 41.6, 54.2, 1638, 180 }, + [97] = { 40.7, 52.9, 1638, 180 }, + [98] = { 40.8, 51.9, 1638, 180 }, + [99] = { 38.5, 50.1, 1638, 180 }, + [100] = { 67.6, 48.9, 1657, 180 }, + [101] = { 68.3, 48.9, 1657, 180 }, + [102] = { 70, 48.8, 1657, 180 }, + [103] = { 70.5, 48.8, 1657, 180 }, + [104] = { 63.1, 47.2, 1657, 180 }, + [105] = { 63.1, 44.7, 1657, 180 }, + [106] = { 63, 37.6, 1657, 180 }, + [107] = { 63, 36.4, 1657, 180 }, + [108] = { 62.9, 33.9, 1657, 180 }, + [109] = { 64.6, 31.9, 1657, 180 }, + [110] = { 65.1, 31.9, 1657, 180 }, + [111] = { 68, 31.8, 1657, 180 }, + [112] = { 68.8, 31.8, 1657, 180 }, + [113] = { 69.5, 31.7, 1657, 180 }, + [114] = { 70.1, 31.7, 1657, 180 }, + [115] = { 31.5, 13.9, 1657, 25 }, + [116] = { 34.4, 13, 1657, 25 }, + [117] = { 32.8, 12.6, 1657, 25 }, + [118] = { 32.7, 11.8, 1657, 25 }, + [119] = { 31.6, 11.1, 1657, 25 }, + }, + }, + [180765] = { + ["coords"] = { + [1] = { 23.7, 64.5, 141, 180 }, + [2] = { 23.9, 64.5, 141, 180 }, + [3] = { 26.8, 64.4, 141, 180 }, + [4] = { 27, 64.4, 141, 180 }, + [5] = { 27.2, 64.4, 141, 180 }, + [6] = { 23.6, 61.8, 141, 180 }, + [7] = { 27, 61.7, 141, 180 }, + [8] = { 25.2, 61.4, 141, 180 }, + [9] = { 24.4, 61.4, 141, 180 }, + [10] = { 25.4, 61.4, 141, 180 }, + [11] = { 26.2, 61.4, 141, 180 }, + [12] = { 24.4, 60, 141, 180 }, + [13] = { 25.2, 60, 141, 180 }, + [14] = { 26.1, 60, 141, 180 }, + [15] = { 25.3, 60, 141, 180 }, + [16] = { 28.5, 58.2, 141, 180 }, + [17] = { 27.9, 58, 141, 180 }, + [18] = { 25.9, 57.9, 141, 180 }, + [19] = { 29.3, 57.9, 141, 180 }, + [20] = { 28.3, 57.9, 141, 180 }, + [21] = { 26.2, 57.5, 141, 180 }, + [22] = { 25.9, 57.4, 141, 180 }, + [23] = { 28.8, 57.3, 141, 180 }, + [24] = { 28.7, 57.2, 141, 180 }, + [25] = { 25.7, 55.8, 141, 180 }, + [26] = { 25.8, 53.4, 141, 180 }, + [27] = { 31.5, 50.9, 141, 180 }, + [28] = { 31.2, 50.1, 141, 180 }, + [29] = { 30.8, 49.4, 141, 180 }, + [30] = { 25.6, 49.4, 141, 180 }, + [31] = { 25.4, 49.3, 141, 180 }, + [32] = { 26, 49.2, 141, 180 }, + [33] = { 25.9, 47.9, 141, 180 }, + [34] = { 25.9, 47.7, 141, 180 }, + [35] = { 25.8, 47.6, 141, 180 }, + [36] = { 52.3, 45.9, 493, 180 }, + [37] = { 46.4, 45.6, 493, 180 }, + [38] = { 50, 43.2, 493, 180 }, + [39] = { 52.6, 42.9, 493, 180 }, + [40] = { 53.1, 42.8, 493, 180 }, + [41] = { 51.5, 42.1, 493, 180 }, + [42] = { 52.6, 41.9, 493, 180 }, + [43] = { 47.9, 41.2, 493, 180 }, + [44] = { 47.2, 40.3, 493, 180 }, + [45] = { 47.5, 39.8, 493, 180 }, + [46] = { 48.5, 39.2, 493, 180 }, + [47] = { 47.1, 38.6, 493, 180 }, + [48] = { 47.7, 37.5, 493, 180 }, + [49] = { 44.2, 36.6, 493, 180 }, + [50] = { 45.3, 36.4, 493, 180 }, + [51] = { 45.2, 35.8, 493, 180 }, + [52] = { 43.4, 35.7, 493, 180 }, + [53] = { 51.7, 35.3, 493, 180 }, + [54] = { 43.3, 33.7, 493, 180 }, + [55] = { 45.7, 33.2, 493, 180 }, + [56] = { 54.5, 31, 493, 180 }, + [57] = { 56.6, 30.7, 493, 180 }, + [58] = { 31.2, 84.7, 1657, 180 }, + [59] = { 32.3, 84.6, 1657, 180 }, + [60] = { 45.9, 84.1, 1657, 180 }, + [61] = { 47.1, 84.1, 1657, 180 }, + [62] = { 48.3, 84, 1657, 180 }, + [63] = { 30.8, 71.6, 1657, 180 }, + [64] = { 47.1, 71, 1657, 180 }, + [65] = { 38.6, 69.8, 1657, 180 }, + [66] = { 34.7, 69.7, 1657, 180 }, + [67] = { 39.2, 69.4, 1657, 180 }, + [68] = { 43.1, 69.4, 1657, 180 }, + [69] = { 34.6, 63, 1657, 180 }, + [70] = { 38.5, 62.6, 1657, 180 }, + [71] = { 43, 62.6, 1657, 180 }, + [72] = { 39.1, 62.6, 1657, 180 }, + [73] = { 54.3, 54.3, 1657, 180 }, + [74] = { 51.6, 53.3, 1657, 180 }, + [75] = { 41.8, 52.9, 1657, 180 }, + [76] = { 58, 52.7, 1657, 180 }, + [77] = { 58.2, 52.7, 1657, 180 }, + [78] = { 53.2, 52.5, 1657, 180 }, + [79] = { 43.1, 51, 1657, 180 }, + [80] = { 41.7, 50.3, 1657, 180 }, + [81] = { 55.8, 49.7, 1657, 180 }, + [82] = { 55.4, 49.5, 1657, 180 }, + [83] = { 40.6, 42.7, 1657, 180 }, + [84] = { 41.2, 31.2, 1657, 180 }, + [85] = { 68.7, 18.8, 1657, 180 }, + [86] = { 67.2, 15.4, 1657, 180 }, + [87] = { 65.6, 12, 1657, 180 }, + [88] = { 40.4, 11.8, 1657, 180 }, + [89] = { 39.3, 11.3, 1657, 180 }, + [90] = { 42.2, 11, 1657, 180 }, + [91] = { 41.9, 4.8, 1657, 180 }, + [92] = { 41.6, 3.5, 1657, 180 }, + [93] = { 41.2, 3, 1657, 180 }, + }, + }, + [180766] = { + ["coords"] = { + [1] = { 23.8, 49.8, 141, 25 }, + [2] = { 24.3, 49.6, 141, 25 }, + [3] = { 24, 49.5, 141, 25 }, + [4] = { 24, 49.4, 141, 25 }, + [5] = { 23.8, 49.3, 141, 25 }, + [6] = { 63.6, 62.1, 493, 25 }, + [7] = { 64.3, 60.7, 493, 25 }, + [8] = { 36.6, 60.4, 493, 180 }, + [9] = { 35.8, 59.7, 493, 180 }, + [10] = { 35.6, 59.4, 493, 180 }, + [11] = { 41.1, 59.2, 493, 180 }, + [12] = { 36.1, 59.2, 493, 180 }, + [13] = { 35.9, 58.9, 493, 180 }, + [14] = { 36.4, 58.8, 493, 180 }, + [15] = { 35.3, 58.7, 493, 180 }, + [16] = { 36.1, 58.5, 493, 180 }, + [17] = { 39.8, 57.2, 493, 180 }, + [18] = { 36.4, 56.7, 493, 180 }, + [19] = { 37.8, 56.2, 493, 180 }, + [20] = { 54, 35.2, 493, 180 }, + [21] = { 53.6, 35.1, 493, 180 }, + [22] = { 37.6, 66.8, 1519, 180 }, + [23] = { 37.7, 66, 1519, 180 }, + [24] = { 37.8, 63.8, 1519, 180 }, + [25] = { 37.2, 63.8, 1519, 180 }, + [26] = { 38.1, 63.5, 1519, 180 }, + [27] = { 37, 63.2, 1519, 180 }, + [28] = { 31.1, 20.6, 1537, 180 }, + [29] = { 28.9, 19, 1537, 180 }, + [30] = { 32.4, 18.9, 1537, 180 }, + [31] = { 28.8, 16.4, 1537, 180 }, + [32] = { 31.8, 15.4, 1537, 180 }, + [33] = { 30.1, 14.8, 1537, 180 }, + [34] = { 31.5, 13.9, 1657, 25 }, + [35] = { 34.3, 13, 1657, 25 }, + [36] = { 32.8, 12.6, 1657, 25 }, + [37] = { 32.7, 11.8, 1657, 25 }, + [38] = { 31.5, 11.1, 1657, 25 }, + }, + }, + [180767] = { + ["coords"] = { + [1] = { 39.3, 30.6, 215, 180 }, + [2] = { 39, 29.6, 215, 180 }, + [3] = { 42, 29.4, 215, 180 }, + [4] = { 41.7, 28.4, 215, 180 }, + [5] = { 37.2, 27, 215, 180 }, + [6] = { 41.8, 26.3, 215, 180 }, + [7] = { 36.7, 26.1, 215, 180 }, + [8] = { 42.2, 25.4, 215, 180 }, + [9] = { 38.5, 24.8, 215, 180 }, + [10] = { 37.7, 24.4, 215, 180 }, + [11] = { 40.2, 24.3, 215, 180 }, + [12] = { 41, 24.1, 215, 180 }, + [13] = { 51.2, 46, 493, 180 }, + [14] = { 51.7, 45.4, 493, 180 }, + [15] = { 50.5, 43.1, 493, 180 }, + [16] = { 51.4, 41, 493, 180 }, + [17] = { 49.3, 41, 493, 180 }, + [18] = { 47.6, 40.2, 493, 180 }, + [19] = { 47.5, 39, 493, 180 }, + [20] = { 47.4, 38.6, 493, 180 }, + [21] = { 49.1, 37.3, 493, 180 }, + [22] = { 44.1, 36.1, 493, 180 }, + [23] = { 45.9, 35.3, 493, 180 }, + [24] = { 55.9, 31.7, 493, 180 }, + [25] = { 55.9, 30.5, 493, 180 }, + [26] = { 46.7, 67.9, 1638, 180 }, + [27] = { 45.1, 62.5, 1638, 180 }, + [28] = { 60.1, 61.9, 1638, 180 }, + [29] = { 58.5, 56.6, 1638, 180 }, + [30] = { 36.2, 50.2, 1638, 180 }, + [31] = { 58.9, 46.5, 1638, 180 }, + [32] = { 33.9, 45.4, 1638, 180 }, + [33] = { 61.2, 41.9, 1638, 180 }, + [34] = { 42.6, 39, 1638, 180 }, + [35] = { 38.9, 37, 1638, 180 }, + [36] = { 51.2, 36.9, 1638, 180 }, + [37] = { 55.1, 35.7, 1638, 180 }, + }, + }, + [180768] = { + ["coords"] = { + [1] = { 44.8, 23.1, 215, 180 }, + [2] = { 44.7, 22.8, 215, 180 }, + [3] = { 44.3, 22.6, 215, 180 }, + [4] = { 44.1, 22.5, 215, 180 }, + [5] = { 44.3, 22.4, 215, 180 }, + [6] = { 44.2, 22.3, 215, 180 }, + [7] = { 44.5, 22, 215, 180 }, + [8] = { 44.4, 21.9, 215, 180 }, + [9] = { 32.4, 65, 493, 180 }, + [10] = { 32.1, 63.3, 493, 180 }, + [11] = { 32.9, 62.3, 493, 180 }, + [12] = { 32.7, 61.2, 493, 180 }, + [13] = { 33.8, 60.2, 493, 180 }, + [14] = { 37, 60, 493, 180 }, + [15] = { 37.6, 59.1, 493, 180 }, + [16] = { 36.5, 58.4, 493, 180 }, + [17] = { 35.1, 58.4, 493, 180 }, + [18] = { 38.1, 58.1, 493, 180 }, + [19] = { 36.9, 58, 493, 180 }, + [20] = { 36.5, 57.9, 493, 180 }, + [21] = { 36.7, 57.8, 493, 180 }, + [22] = { 35.7, 57.6, 493, 180 }, + [23] = { 37.2, 57.3, 493, 180 }, + [24] = { 37, 57.1, 493, 180 }, + [25] = { 37.3, 56.4, 493, 180 }, + [26] = { 37, 56.4, 493, 180 }, + [27] = { 36.1, 55, 493, 180 }, + [28] = { 37.1, 51.9, 493, 180 }, + [29] = { 36.6, 51.6, 493, 180 }, + [30] = { 37.2, 51.1, 493, 180 }, + [31] = { 36.6, 50.6, 493, 180 }, + [32] = { 38.3, 48.5, 493, 180 }, + [33] = { 37.8, 47.9, 493, 180 }, + [34] = { 39, 47.1, 493, 180 }, + [35] = { 38.6, 46.5, 493, 180 }, + [36] = { 40.1, 44.6, 493, 180 }, + [37] = { 39.6, 44.3, 493, 180 }, + [38] = { 39.9, 42.1, 493, 180 }, + [39] = { 40.6, 42, 493, 180 }, + [40] = { 40.5, 38.9, 493, 180 }, + [41] = { 40, 38.8, 493, 180 }, + [42] = { 40.7, 36.5, 493, 180 }, + [43] = { 40.3, 36.1, 493, 180 }, + [44] = { 41.8, 35.6, 493, 180 }, + [45] = { 41.7, 34.8, 493, 180 }, + [46] = { 66.3, 37.9, 1497, 180 }, + [47] = { 65.7, 37.9, 1497, 180 }, + [48] = { 66.6, 37.5, 1497, 180 }, + [49] = { 65.4, 37.5, 1497, 180 }, + [50] = { 66.7, 37, 1497, 180 }, + [51] = { 65.3, 37, 1497, 180 }, + [52] = { 42.7, 35.5, 1637, 180 }, + [53] = { 43.3, 35.1, 1637, 180 }, + [54] = { 41.8, 33.8, 1637, 180 }, + [55] = { 42.4, 33.1, 1637, 180 }, + [56] = { 41.1, 32.4, 1637, 180 }, + [57] = { 41.7, 31.7, 1637, 180 }, + [58] = { 40.2, 30.9, 1637, 180 }, + [59] = { 41.2, 30, 1637, 180 }, + [60] = { 73.7, 30.8, 1638, 180 }, + [61] = { 73.5, 29.1, 1638, 180 }, + [62] = { 71.3, 28.3, 1638, 180 }, + [63] = { 70.3, 27.6, 1638, 180 }, + [64] = { 71.6, 27.5, 1638, 180 }, + [65] = { 70.7, 26.8, 1638, 180 }, + [66] = { 72.3, 25.2, 1638, 180 }, + [67] = { 71.6, 24.7, 1638, 180 }, + }, + }, + [180769] = { + ["coords"] = { + [1] = { 47.3, 6.5, 14, 180 }, + [2] = { 36.6, 42.2, 493, 180 }, + [3] = { 51.5, 41.5, 493, 180 }, + [4] = { 49.1, 40.2, 493, 180 }, + [5] = { 49, 38.1, 493, 180 }, + [6] = { 43.8, 33.8, 493, 180 }, + [7] = { 45.2, 33.5, 493, 180 }, + [8] = { 66.7, 50.4, 1497, 180 }, + [9] = { 65.2, 50.3, 1497, 180 }, + [10] = { 67, 50.2, 1497, 180 }, + [11] = { 64.9, 50.2, 1497, 180 }, + [12] = { 68.2, 49.4, 1497, 180 }, + [13] = { 63.7, 49.3, 1497, 180 }, + [14] = { 68.4, 49.1, 1497, 180 }, + [15] = { 63.4, 49.1, 1497, 180 }, + [16] = { 69.3, 47.8, 1497, 180 }, + [17] = { 62.6, 47.6, 1497, 180 }, + [18] = { 69.5, 47.4, 1497, 180 }, + [19] = { 62.4, 47.3, 1497, 180 }, + [20] = { 70, 45.6, 1497, 180 }, + [21] = { 61.8, 45.5, 1497, 180 }, + [22] = { 70.1, 45.1, 1497, 180 }, + [23] = { 61.8, 45, 1497, 180 }, + [24] = { 70.2, 43.1, 1497, 180 }, + [25] = { 61.8, 43, 1497, 180 }, + [26] = { 70.1, 42.7, 1497, 180 }, + [27] = { 61.9, 42.6, 1497, 180 }, + [28] = { 69.5, 40.9, 1497, 180 }, + [29] = { 62.4, 40.9, 1497, 180 }, + [30] = { 69.4, 40.5, 1497, 180 }, + [31] = { 62.6, 40.4, 1497, 180 }, + [32] = { 68.4, 39.1, 1497, 180 }, + [33] = { 63.5, 39.1, 1497, 180 }, + [34] = { 68.2, 38.8, 1497, 180 }, + [35] = { 63.8, 38.8, 1497, 180 }, + [36] = { 68.2, 38.3, 1497, 180 }, + [37] = { 67.1, 38, 1497, 180 }, + [38] = { 64.9, 38, 1497, 180 }, + [39] = { 67.3, 37.9, 1497, 180 }, + [40] = { 65.2, 37.9, 1497, 180 }, + [41] = { 66.8, 37.8, 1497, 180 }, + [42] = { 68.7, 36.2, 1497, 180 }, + [43] = { 68, 35.8, 1497, 180 }, + [44] = { 68.6, 35.8, 1497, 180 }, + [45] = { 68.3, 35.6, 1497, 180 }, + [46] = { 42.7, 82.5, 1519, 180 }, + [47] = { 42.5, 82.3, 1519, 180 }, + [48] = { 42.4, 82, 1519, 180 }, + [49] = { 42.1, 81.5, 1519, 180 }, + [50] = { 42, 81.2, 1519, 180 }, + [51] = { 41.9, 81, 1519, 180 }, + [52] = { 63.6, 74.9, 1519, 180 }, + [53] = { 60.9, 74.3, 1519, 180 }, + [54] = { 60.7, 74, 1519, 180 }, + [55] = { 53.7, 73.9, 1519, 180 }, + [56] = { 63.3, 73.7, 1519, 180 }, + [57] = { 53.2, 73, 1519, 180 }, + [58] = { 64.6, 72.7, 1519, 180 }, + [59] = { 61.5, 72.7, 1519, 180 }, + [60] = { 61.8, 72.5, 1519, 180 }, + [61] = { 64.4, 72.5, 1519, 180 }, + [62] = { 63.8, 69.9, 1519, 180 }, + [63] = { 63.3, 69, 1519, 180 }, + [64] = { 39.1, 77.6, 1537, 180 }, + [65] = { 38.6, 77.3, 1537, 180 }, + [66] = { 38.2, 77, 1537, 180 }, + [67] = { 37.7, 76.7, 1537, 180 }, + [68] = { 37.3, 76.5, 1537, 180 }, + [69] = { 36.9, 76.2, 1537, 180 }, + [70] = { 27.8, 74.2, 1537, 180 }, + [71] = { 27.5, 73.7, 1537, 180 }, + [72] = { 27.2, 73.1, 1537, 180 }, + [73] = { 26.9, 72.6, 1537, 180 }, + [74] = { 26.6, 72.1, 1537, 180 }, + [75] = { 26.3, 71.6, 1537, 180 }, + [76] = { 26.1, 71.1, 1537, 180 }, + [77] = { 25.8, 70.7, 1537, 180 }, + [78] = { 25.5, 70.2, 1537, 180 }, + [79] = { 25.2, 69.7, 1537, 180 }, + [80] = { 25, 69.2, 1537, 180 }, + [81] = { 21.3, 57.2, 1537, 180 }, + [82] = { 21.2, 56.5, 1537, 180 }, + [83] = { 21.1, 55.8, 1537, 180 }, + [84] = { 21, 55.1, 1537, 180 }, + [85] = { 59, 45.7, 1537, 180 }, + [86] = { 59, 45, 1537, 180 }, + [87] = { 59, 44.3, 1537, 180 }, + [88] = { 59, 43.6, 1537, 180 }, + [89] = { 52, 29.9, 1537, 180 }, + [90] = { 51.6, 29.8, 1537, 180 }, + [91] = { 51.2, 29.7, 1537, 180 }, + [92] = { 50.8, 29.6, 1537, 180 }, + [93] = { 50.3, 29.5, 1537, 180 }, + [94] = { 49.9, 29.4, 1537, 180 }, + [95] = { 49.5, 29.3, 1537, 180 }, + [96] = { 49.1, 29.2, 1537, 180 }, + [97] = { 21.8, 20.3, 1537, 180 }, + [98] = { 55.8, 74.3, 1637, 180 }, + [99] = { 55.1, 73.4, 1637, 180 }, + [100] = { 55.2, 72.4, 1637, 180 }, + [101] = { 55.3, 72, 1637, 180 }, + [102] = { 55.4, 71.4, 1637, 180 }, + [103] = { 50.4, 70.5, 1637, 180 }, + [104] = { 50.7, 69.9, 1637, 180 }, + [105] = { 54, 69.6, 1637, 180 }, + [106] = { 53.4, 67.9, 1637, 180 }, + [107] = { 53.9, 65.3, 1637, 180 }, + [108] = { 56.8, 64.5, 1637, 180 }, + [109] = { 57.1, 63.9, 1637, 180 }, + [110] = { 52.1, 63.5, 1637, 180 }, + [111] = { 53.1, 63.3, 1637, 180 }, + [112] = { 57.1, 63, 1637, 180 }, + [113] = { 50.9, 62, 1637, 180 }, + [114] = { 54.1, 61.9, 1637, 180 }, + }, + }, + [180770] = { + ["coords"] = { + [1] = { 47.2, 6.5, 14, 180 }, + [2] = { 36.7, 58.3, 493, 180 }, + [3] = { 36.3, 58.2, 493, 180 }, + [4] = { 51.7, 45.2, 493, 180 }, + [5] = { 51.6, 43.8, 493, 180 }, + [6] = { 47.4, 42.9, 493, 180 }, + [7] = { 46.2, 42.9, 493, 180 }, + [8] = { 48.6, 41.1, 493, 180 }, + [9] = { 48.3, 37.4, 493, 180 }, + [10] = { 43.4, 34.7, 493, 180 }, + [11] = { 51.7, 34.6, 493, 180 }, + [12] = { 45.8, 34.3, 493, 180 }, + [13] = { 66, 45.2, 1497, 180 }, + [14] = { 66.7, 44.1, 1497, 180 }, + [15] = { 65.2, 44.1, 1497, 180 }, + [16] = { 66, 42.9, 1497, 180 }, + [17] = { 68.5, 37.2, 1497, 180 }, + [18] = { 67.6, 36.8, 1497, 180 }, + [19] = { 66.6, 75.3, 1519, 180 }, + [20] = { 66, 74.7, 1519, 180 }, + [21] = { 63.6, 74.1, 1519, 180 }, + [22] = { 53.6, 73.3, 1519, 180 }, + [23] = { 63.5, 69.6, 1519, 180 }, + [24] = { 57.5, 66.3, 1519, 180 }, + [25] = { 70.2, 57.6, 1519, 180 }, + [26] = { 73.6, 56.3, 1519, 180 }, + [27] = { 64.4, 49, 1519, 180 }, + [28] = { 70.3, 41.2, 1519, 180 }, + [29] = { 70.7, 40.6, 1519, 180 }, + [30] = { 69.8, 40.3, 1519, 180 }, + [31] = { 70.3, 39.8, 1519, 180 }, + [32] = { 70.9, 39.7, 1519, 180 }, + [33] = { 42.1, 85.3, 1537, 180 }, + [34] = { 52.1, 84.7, 1537, 180 }, + [35] = { 54.5, 56.6, 1537, 180 }, + [36] = { 56.9, 52.8, 1537, 180 }, + [37] = { 25.1, 37.2, 1537, 180 }, + [38] = { 40.9, 35.7, 1537, 180 }, + [39] = { 41.8, 34.1, 1537, 180 }, + [40] = { 20.3, 23.1, 1537, 180 }, + [41] = { 21.2, 21.5, 1537, 180 }, + [42] = { 55.4, 74.1, 1637, 180 }, + [43] = { 55.6, 74, 1637, 180 }, + [44] = { 55.3, 73.4, 1637, 180 }, + [45] = { 55, 73.2, 1637, 180 }, + [46] = { 55.2, 72, 1637, 180 }, + [47] = { 55.6, 71.4, 1637, 180 }, + [48] = { 49.5, 71.1, 1637, 180 }, + [49] = { 55.6, 71, 1637, 180 }, + [50] = { 49, 71, 1637, 180 }, + [51] = { 49.9, 70.8, 1637, 180 }, + [52] = { 48.6, 70.5, 1637, 180 }, + [53] = { 48.2, 70, 1637, 180 }, + [54] = { 54.2, 69.9, 1637, 180 }, + [55] = { 55, 69.6, 1637, 180 }, + [56] = { 50.8, 69.2, 1637, 180 }, + [57] = { 53.6, 69.1, 1637, 180 }, + [58] = { 50.9, 68.4, 1637, 180 }, + [59] = { 53.3, 68.2, 1637, 180 }, + [60] = { 53.5, 67.1, 1637, 180 }, + [61] = { 54.2, 66.5, 1637, 180 }, + [62] = { 54.4, 66, 1637, 180 }, + [63] = { 55.5, 65.9, 1637, 180 }, + [64] = { 55, 65.8, 1637, 180 }, + [65] = { 54.5, 65.7, 1637, 180 }, + [66] = { 53.6, 65.3, 1637, 180 }, + [67] = { 56.5, 65.1, 1637, 180 }, + [68] = { 53.6, 64.7, 1637, 180 }, + [69] = { 53.4, 64.6, 1637, 180 }, + [70] = { 57, 64.2, 1637, 180 }, + [71] = { 53.4, 64, 1637, 180 }, + [72] = { 52.6, 63.4, 1637, 180 }, + [73] = { 51.5, 63.3, 1637, 180 }, + [74] = { 53.5, 63.2, 1637, 180 }, + [75] = { 51.2, 62.7, 1637, 180 }, + [76] = { 57, 62.6, 1637, 180 }, + [77] = { 53.8, 62.6, 1637, 180 }, + [78] = { 56.7, 61.9, 1637, 180 }, + [79] = { 55.1, 61, 1637, 180 }, + [80] = { 55.9, 61, 1637, 180 }, + [81] = { 54.2, 99.5, 5581, 180 }, + [82] = { 54.4, 99.2, 5581, 180 }, + [83] = { 53.9, 99, 5581, 180 }, + [84] = { 54.2, 98.7, 5581, 180 }, + [85] = { 54.5, 98.7, 5581, 180 }, + }, + }, + [180771] = { + ["coords"] = { + [1] = { 36.1, 64.8, 11, 180 }, + [2] = { 45.6, 7.4, 14, 180 }, + [3] = { 45.6, 7.3, 14, 180 }, + [4] = { 45.5, 7.3, 14, 180 }, + [5] = { 31.3, 55.9, 141, 180 }, + [6] = { 31.7, 55.9, 141, 180 }, + [7] = { 31.6, 55.9, 141, 180 }, + [8] = { 31.5, 55.9, 141, 180 }, + [9] = { 31.6, 54.9, 141, 180 }, + [10] = { 41, 27.4, 215, 180 }, + [11] = { 41, 27.2, 215, 180 }, + [12] = { 41, 27.1, 215, 180 }, + [13] = { 36.5, 60.2, 493, 180 }, + [14] = { 36, 59.9, 493, 180 }, + [15] = { 37.4, 59.6, 493, 180 }, + [16] = { 36.6, 59.4, 493, 180 }, + [17] = { 37.4, 59.3, 493, 180 }, + [18] = { 37, 59.1, 493, 180 }, + [19] = { 37.6, 58.7, 493, 180 }, + [20] = { 36, 58.7, 493, 180 }, + [21] = { 35.5, 58.7, 493, 180 }, + [22] = { 37.2, 58.5, 493, 180 }, + [23] = { 35.7, 58.4, 493, 180 }, + [24] = { 37.9, 58.4, 493, 180 }, + [25] = { 37.2, 57.9, 493, 180 }, + [26] = { 35.7, 57.9, 493, 180 }, + [27] = { 36.3, 57.9, 493, 180 }, + [28] = { 36.2, 57.4, 493, 180 }, + [29] = { 36.4, 57.1, 493, 180 }, + [30] = { 36.5, 56.8, 493, 180 }, + [31] = { 36.9, 56.8, 493, 180 }, + [32] = { 45, 42.6, 493, 180 }, + [33] = { 45.3, 38.5, 493, 180 }, + [34] = { 50.9, 37.2, 493, 180 }, + [35] = { 54.2, 36.9, 493, 180 }, + [36] = { 53.9, 36.8, 493, 180 }, + [37] = { 53.6, 36.8, 493, 180 }, + [38] = { 53.4, 36.7, 493, 180 }, + [39] = { 53.1, 36.6, 493, 180 }, + [40] = { 42.6, 35.4, 493, 180 }, + [41] = { 47.7, 34.7, 493, 180 }, + [42] = { 48.8, 34.5, 493, 180 }, + [43] = { 47.9, 33.3, 493, 180 }, + [44] = { 58.4, 64.1, 1497, 180 }, + [45] = { 73.9, 63.8, 1497, 180 }, + [46] = { 57.8, 63.6, 1497, 180 }, + [47] = { 51, 57.5, 1497, 180 }, + [48] = { 50.6, 56.5, 1497, 180 }, + [49] = { 52.8, 56, 1497, 180 }, + [50] = { 76.7, 27.6, 1497, 180 }, + [51] = { 78.7, 26.1, 1497, 180 }, + [52] = { 56.4, 26.1, 1497, 180 }, + [53] = { 57, 25.4, 1497, 180 }, + [54] = { 55.1, 23.6, 1497, 180 }, + [55] = { 69.1, 84.2, 1519, 25 }, + [56] = { 43.7, 74.1, 1519, 180 }, + [57] = { 43.9, 73.9, 1519, 180 }, + [58] = { 44, 73.8, 1519, 180 }, + [59] = { 54.8, 69.2, 1519, 180 }, + [60] = { 54.8, 69.1, 1519, 180 }, + [61] = { 54.8, 68.9, 1519, 180 }, + [62] = { 54.7, 68.8, 1519, 180 }, + [63] = { 69.1, 65.1, 1519, 180 }, + [64] = { 69.1, 65, 1519, 180 }, + [65] = { 65.4, 26.3, 1537, 180 }, + [66] = { 65.1, 25.6, 1537, 180 }, + [67] = { 49.4, 77.5, 1637, 180 }, + [68] = { 49.2, 77.4, 1637, 180 }, + [69] = { 48.9, 77.2, 1637, 180 }, + [70] = { 69.6, 30.4, 1637, 180 }, + [71] = { 69.7, 30.2, 1637, 180 }, + [72] = { 69.9, 30, 1637, 180 }, + [73] = { 54.9, 52, 1638, 180 }, + [74] = { 55, 51.8, 1638, 180 }, + [75] = { 55, 50.9, 1638, 180 }, + [76] = { 55, 50.3, 1638, 180 }, + [77] = { 67.7, 43.2, 1657, 180 }, + [78] = { 69.8, 43.2, 1657, 180 }, + [79] = { 69.4, 43.2, 1657, 180 }, + [80] = { 68.5, 43.2, 1657, 180 }, + [81] = { 68.9, 43.2, 1657, 180 }, + [82] = { 69.3, 38.5, 1657, 180 }, + }, + }, + [180772] = { + ["coords"] = { + [1] = { 36, 65, 11, 180 }, + [2] = { 45.6, 7.4, 14, 180 }, + [3] = { 45.5, 7.3, 14, 180 }, + [4] = { 31.4, 55.9, 141, 180 }, + [5] = { 31.5, 54.9, 141, 180 }, + [6] = { 31.3, 54.9, 141, 180 }, + [7] = { 31.2, 54.9, 141, 180 }, + [8] = { 31.7, 54.9, 141, 180 }, + [9] = { 41, 27.5, 215, 180 }, + [10] = { 41, 27.2, 215, 180 }, + [11] = { 41, 27.1, 215, 180 }, + [12] = { 37.2, 60, 493, 180 }, + [13] = { 36.8, 59.7, 493, 180 }, + [14] = { 36.1, 59.5, 493, 180 }, + [15] = { 36.4, 59.3, 493, 180 }, + [16] = { 35.5, 59.1, 493, 180 }, + [17] = { 37.3, 58.9, 493, 180 }, + [18] = { 35.9, 58.4, 493, 180 }, + [19] = { 37.9, 58.1, 493, 180 }, + [20] = { 36.4, 57.6, 493, 180 }, + [21] = { 37.2, 57.6, 493, 180 }, + [22] = { 35.9, 57.3, 493, 180 }, + [23] = { 36.7, 56.7, 493, 180 }, + [24] = { 44.6, 38.6, 493, 180 }, + [25] = { 54.3, 36.9, 493, 180 }, + [26] = { 54.1, 36.9, 493, 180 }, + [27] = { 53.8, 36.8, 493, 180 }, + [28] = { 53.5, 36.7, 493, 180 }, + [29] = { 53.2, 36.7, 493, 180 }, + [30] = { 42.5, 34.3, 493, 180 }, + [31] = { 74.3, 67.1, 1497, 180 }, + [32] = { 74.9, 66.6, 1497, 180 }, + [33] = { 73.2, 64.3, 1497, 180 }, + [34] = { 79, 56.3, 1497, 180 }, + [35] = { 79.4, 55.4, 1497, 180 }, + [36] = { 52.4, 55, 1497, 180 }, + [37] = { 77.2, 28.4, 1497, 180 }, + [38] = { 78.2, 25.3, 1497, 180 }, + [39] = { 55.7, 23, 1497, 180 }, + [40] = { 43.8, 74, 1519, 180 }, + [41] = { 69, 64.9, 1519, 180 }, + [42] = { 68.9, 64.8, 1519, 180 }, + [43] = { 64.7, 24.8, 1537, 180 }, + [44] = { 64.3, 24.1, 1537, 180 }, + [45] = { 63.9, 23.4, 1537, 180 }, + [46] = { 63.5, 22.7, 1537, 180 }, + [47] = { 49.6, 77.5, 1637, 180 }, + [48] = { 49.1, 77.3, 1637, 180 }, + [49] = { 54.9, 52.4, 1638, 180 }, + [50] = { 54.9, 52.2, 1638, 180 }, + [51] = { 55, 50.7, 1638, 180 }, + [52] = { 55, 50.5, 1638, 180 }, + [53] = { 68.1, 43.2, 1657, 180 }, + [54] = { 68.9, 38.5, 1657, 180 }, + [55] = { 68.5, 38.5, 1657, 180 }, + [56] = { 68, 38.5, 1657, 180 }, + [57] = { 67.4, 38.5, 1657, 180 }, + [58] = { 69.8, 38.5, 1657, 180 }, + }, + }, + [180773] = { + ["coords"] = { + [1] = { 25.6, 55.7, 141, 180 }, + [2] = { 29, 55.4, 141, 180 }, + [3] = { 30.6, 55.4, 141, 180 }, + [4] = { 64.9, 76.8, 1519, 180 }, + [5] = { 65.5, 74.6, 1519, 180 }, + [6] = { 50.2, 73.9, 1519, 180 }, + [7] = { 73, 46.9, 1519, 180 }, + [8] = { 30.2, 81.6, 1537, 180 }, + [9] = { 58.7, 13.6, 1537, 180 }, + [10] = { 28, 13, 1537, 180 }, + [11] = { 39.6, 12.3, 1537, 180 }, + [12] = { 40.6, 42.2, 1657, 180 }, + [13] = { 56.6, 40.8, 1657, 180 }, + [14] = { 64.2, 40.5, 1657, 180 }, + }, + }, + [180774] = { + ["coords"] = { + [1] = { 53.5, 34.8, 1, 180 }, + [2] = { 25.3, 62.5, 141, 180 }, + [3] = { 25.6, 55.9, 141, 180 }, + [4] = { 42.3, 81.7, 1519, 180 }, + [5] = { 61, 74.1, 1519, 180 }, + [6] = { 57.4, 66.2, 1519, 180 }, + [7] = { 72.4, 61.9, 1519, 180 }, + [8] = { 15.3, 85.6, 1537, 180 }, + [9] = { 66.7, 83.1, 1537, 180 }, + [10] = { 33.8, 64.9, 1537, 180 }, + [11] = { 20.8, 64.4, 1537, 180 }, + [12] = { 32.4, 62.3, 1537, 180 }, + [13] = { 39, 74.8, 1657, 180 }, + [14] = { 40.5, 42.9, 1657, 180 }, + }, + }, + [180775] = { + ["coords"] = { + [1] = { 45.3, 12.1, 14, 180 }, + [2] = { 38.9, 29.3, 215, 180 }, + [3] = { 41.6, 28.1, 215, 180 }, + [4] = { 37.3, 27.3, 215, 180 }, + [5] = { 41.7, 26.5, 215, 180 }, + [6] = { 64.6, 42.1, 1497, 180 }, + [7] = { 48.1, 95.2, 1637, 180 }, + [8] = { 48.7, 63.8, 1637, 180 }, + [9] = { 51.9, 57.8, 1637, 180 }, + [10] = { 44.7, 61.4, 1638, 180 }, + [11] = { 58.1, 55.5, 1638, 180 }, + [12] = { 36.7, 51.2, 1638, 180 }, + [13] = { 58.3, 47.6, 1638, 180 }, + }, + }, + [180777] = { + ["coords"] = { + [1] = { 32.2, 50.4, 12, 25 }, + [2] = { 32.7, 49.8, 12, 25 }, + [3] = { 24.3, 49.7, 141, 25 }, + [4] = { 24, 49.6, 141, 25 }, + [5] = { 24.4, 49.4, 141, 25 }, + [6] = { 24, 49.4, 141, 25 }, + [7] = { 63.7, 62.3, 493, 25 }, + [8] = { 63.8, 62.1, 493, 25 }, + [9] = { 64.3, 60.9, 493, 25 }, + [10] = { 64.4, 60.7, 493, 25 }, + [11] = { 54.1, 35.3, 493, 25 }, + [12] = { 53.5, 35.1, 493, 25 }, + [13] = { 71.8, 89.2, 1519, 25 }, + [14] = { 72.8, 88, 1519, 25 }, + [15] = { 70.2, 86.3, 1519, 25 }, + [16] = { 71.3, 85.1, 1519, 25 }, + [17] = { 69.1, 84.3, 1519, 25 }, + [18] = { 70.2, 83, 1519, 25 }, + [19] = { 34.3, 13.1, 1657, 25 }, + [20] = { 32.7, 12.8, 1657, 25 }, + [21] = { 34.7, 11.8, 1657, 25 }, + [22] = { 32.6, 11.7, 1657, 25 }, + }, + }, + [180778] = { + ["coords"] = { + [1] = { 36.3, 30.9, 215, 180 }, + [2] = { 36.5, 30.8, 215, 180 }, + [3] = { 35.8, 29.3, 215, 180 }, + [4] = { 36, 29, 215, 180 }, + [5] = { 44.3, 22.6, 215, 180 }, + [6] = { 44.1, 22.4, 215, 180 }, + [7] = { 41.3, 22.2, 215, 180 }, + [8] = { 41.2, 21.9, 215, 180 }, + [9] = { 40.1, 21.6, 215, 180 }, + [10] = { 40.3, 21.4, 215, 180 }, + [11] = { 35.5, 62.3, 493, 180 }, + [12] = { 35, 62.3, 493, 180 }, + [13] = { 37, 60, 493, 180 }, + [14] = { 37.5, 59.2, 493, 180 }, + [15] = { 38.1, 58.1, 493, 180 }, + [16] = { 36.9, 58.1, 493, 180 }, + [17] = { 36.7, 57.7, 493, 180 }, + [18] = { 35.7, 57.6, 493, 180 }, + [19] = { 37.3, 57.4, 493, 180 }, + [20] = { 36.9, 57, 493, 180 }, + [21] = { 37.3, 56.4, 493, 180 }, + [22] = { 36.9, 56.4, 493, 180 }, + [23] = { 52.3, 39.7, 493, 180 }, + [24] = { 43.1, 35.9, 493, 180 }, + [25] = { 47.3, 35.2, 493, 180 }, + [26] = { 42.9, 33.7, 493, 180 }, + [27] = { 49.3, 33.3, 493, 180 }, + [28] = { 66.5, 36.2, 1497, 180 }, + [29] = { 65.6, 36.1, 1497, 180 }, + [30] = { 42.8, 35.4, 1637, 180 }, + [31] = { 43.2, 35.1, 1637, 180 }, + [32] = { 41.9, 33.7, 1637, 180 }, + [33] = { 42.3, 33.2, 1637, 180 }, + [34] = { 41.2, 32.3, 1637, 180 }, + [35] = { 41.6, 31.8, 1637, 180 }, + [36] = { 31.9, 69.1, 1638, 180 }, + [37] = { 32.9, 68.7, 1638, 180 }, + [38] = { 29.4, 61.3, 1638, 180 }, + [39] = { 30.4, 59.8, 1638, 180 }, + [40] = { 71.3, 28.1, 1638, 180 }, + [41] = { 70.5, 27.5, 1638, 180 }, + }, + }, + [180788] = { + ["coords"] = { + [1] = { 27.4, 92.9, 1377, 900 }, + [2] = { 56.8, 3.8, 3478, 900 }, + }, + }, + [180793] = { + ["coords"] = { + [1] = { 34, 65.9, 1537, 300 }, + [2] = { 52.4, 69.3, 1637, 300 }, + }, + }, + [180794] = { + ["coords"] = { + [1] = { 55.6, 22.7, 2057, 7200 }, + }, + }, + [180796] = { + ["coords"] = { + [1] = { 53.2, 35.7, 1, 180 }, + [2] = { 50, 13.5, 14, 180 }, + [3] = { 26.7, 73.5, 33, 180 }, + [4] = { 61.1, 59.3, 85, 180 }, + [5] = { 68.1, 71.5, 1519, 180 }, + }, + }, + [180797] = { + ["coords"] = { + [1] = { 53.2, 35.7, 1, 180 }, + [2] = { 50, 13.5, 14, 180 }, + [3] = { 26.7, 73.5, 33, 180 }, + [4] = { 61.1, 59.3, 85, 180 }, + [5] = { 68.1, 71.5, 1519, 180 }, + }, + }, + [180798] = { + ["coords"] = { + [1] = { 53.1, 35.8, 1, 180 }, + [2] = { 50.1, 13.5, 14, 180 }, + [3] = { 26.7, 73.5, 33, 180 }, + [4] = { 61.1, 59.3, 85, 180 }, + [5] = { 68.1, 71.7, 1519, 180 }, + }, + }, + [180799] = { + ["coords"] = { + [1] = { 53.2, 35.8, 1, 180 }, + [2] = { 50.1, 13.5, 14, 180 }, + [3] = { 26.8, 73.5, 33, 180 }, + [4] = { 61.2, 59.3, 85, 180 }, + [5] = { 68.1, 71.6, 1519, 180 }, + }, + }, + [180802] = { + ["coords"] = { + [1] = { 72.2, 69.4, 1537, 0 }, + }, + }, + [180803] = { + ["coords"] = { + [1] = { 72.2, 69.4, 1537, 0 }, + }, + }, + [180804] = { + ["coords"] = { + [1] = { 72.2, 69.4, 1537, 0 }, + }, + }, + [180805] = { + ["coords"] = { + [1] = { 72.2, 69.4, 1537, 0 }, + }, + }, + [180806] = { + ["coords"] = { + [1] = { 72, 69.8, 1537, 0 }, + }, + }, + [180812] = { + ["coords"] = { + [1] = { 34.5, 73.5, 1637, 25 }, + }, + }, + [180813] = { + ["coords"] = { + [1] = { 34.5, 73.5, 1637, 0 }, + }, + }, + [180814] = { + ["coords"] = { + [1] = { 34.5, 73.5, 1637, 0 }, + }, + }, + [180815] = { + ["coords"] = { + [1] = { 34.5, 73.5, 1637, 0 }, + }, + }, + [180816] = { + ["coords"] = { + [1] = { 34.5, 73.5, 1637, 0 }, + }, + }, + [180817] = { + ["coords"] = { + [1] = { 34.5, 73.5, 1637, 0 }, + }, + }, + [180818] = { + ["coords"] = { + [1] = { 32.9, 68.1, 1637, 25 }, + }, + }, + [180819] = { + ["coords"] = { + [1] = { 32.9, 68.1, 1637, 0 }, + }, + }, + [180820] = { + ["coords"] = { + [1] = { 32.9, 68.1, 1637, 0 }, + }, + }, + [180821] = { + ["coords"] = { + [1] = { 32.9, 68.1, 1637, 0 }, + }, + }, + [180822] = { + ["coords"] = { + [1] = { 32.9, 68.1, 1637, 0 }, + }, + }, + [180823] = { + ["coords"] = { + [1] = { 32.9, 68.1, 1637, 0 }, + }, + }, + [180826] = { + ["coords"] = { + [1] = { 31, 73.5, 1637, 25 }, + }, + }, + [180827] = { + ["coords"] = { + [1] = { 31, 73.5, 1637, 0 }, + }, + }, + [180828] = { + ["coords"] = { + [1] = { 31, 73.5, 1637, 0 }, + }, + }, + [180829] = { + ["coords"] = { + [1] = { 31, 73.5, 1637, 0 }, + }, + }, + [180830] = { + ["coords"] = { + [1] = { 31, 73.5, 1637, 0 }, + }, + }, + [180831] = { + ["coords"] = { + [1] = { 31, 73.5, 1637, 0 }, + }, + }, + [180832] = { + ["coords"] = { + [1] = { 29.6, 70.1, 1637, 25 }, + }, + }, + [180833] = { + ["coords"] = { + [1] = { 29.6, 70.1, 1637, 0 }, + }, + }, + [180834] = { + ["coords"] = { + [1] = { 29.6, 70.1, 1637, 0 }, + }, + }, + [180835] = { + ["coords"] = { + [1] = { 29.6, 70.1, 1637, 0 }, + }, + }, + [180836] = { + ["coords"] = { + [1] = { 29.6, 70.1, 1637, 0 }, + }, + }, + [180837] = { + ["coords"] = { + [1] = { 29.6, 70.1, 1637, 0 }, + }, + }, + [180838] = { + ["coords"] = { + [1] = { 32.1, 63, 1637, 25 }, + }, + }, + [180839] = { + ["coords"] = { + [1] = { 32.1, 63, 1637, 0 }, + }, + }, + [180840] = { + ["coords"] = { + [1] = { 32.1, 63, 1637, 0 }, + }, + }, + [180841] = { + ["coords"] = { + [1] = { 32.1, 63, 1637, 0 }, + }, + }, + [180842] = { + ["coords"] = { + [1] = { 32.1, 63, 1637, 0 }, + }, + }, + [180843] = { + ["coords"] = { + [1] = { 32.1, 63, 1637, 0 }, + }, + }, + [180844] = { + ["coords"] = { + [1] = { 47.2, 51.9, 1, 180 }, + [2] = { 3.6, 46.7, 3, 180 }, + [3] = { 74, 44.8, 10, 180 }, + [4] = { 43.5, 66, 12, 180 }, + [5] = { 51.6, 41.9, 14, 180 }, + [6] = { 52.1, 30, 17, 180 }, + [7] = { 27.1, 77.4, 33, 180 }, + [8] = { 61.3, 80.9, 36, 180 }, + [9] = { 52.6, 53.4, 40, 180 }, + [10] = { 26.9, 44.9, 44, 180 }, + [11] = { 82.7, 37.9, 51, 180 }, + [12] = { 61.8, 52.7, 85, 180 }, + [13] = { 56.1, 59.4, 141, 180 }, + [14] = { 46.5, 61.4, 215, 180 }, + [15] = { 39, 29.8, 215, 180 }, + [16] = { 50.8, 59, 267, 180 }, + [17] = { 62.5, 19.2, 267, 180 }, + [18] = { 66.5, 37.7, 1497, 180 }, + [19] = { 60.3, 75, 1519, 180 }, + [20] = { 20, 53.8, 1537, 180 }, + [21] = { 54.1, 68.8, 1637, 180 }, + [22] = { 45.1, 63.7, 1638, 180 }, + }, + }, + [180850] = { + ["coords"] = { + [1] = { 78.6, 78.5, 400, 25 }, + [2] = { 77.9, 77.4, 400, 25 }, + [3] = { 79.7, 76.4, 400, 25 }, + [4] = { 78.3, 76.1, 400, 25 }, + [5] = { 79.1, 75, 400, 25 }, + [6] = { 78.6, 74.4, 400, 25 }, + }, + }, + [180852] = { + ["coords"] = { + [1] = { 49.5, 35.3, 1377, 25 }, + }, + }, + [180863] = { + ["coords"] = {}, + }, + [180867] = "_", + [180868] = { + ["coords"] = { + [1] = { 23.7, 49.6, 141, 25 }, + [2] = { 23.7, 49.5, 141, 25 }, + [3] = { 23.7, 49.4, 141, 25 }, + [4] = { 23.8, 49.3, 141, 25 }, + [5] = { 44.3, 22.4, 215, 180 }, + [6] = { 44.3, 22.3, 215, 180 }, + [7] = { 44.2, 22.3, 215, 180 }, + [8] = { 44.4, 22.2, 215, 180 }, + [9] = { 44.3, 22.1, 215, 180 }, + [10] = { 66, 37.8, 1497, 180 }, + [11] = { 66.4, 37.6, 1497, 180 }, + [12] = { 65.6, 37.6, 1497, 180 }, + [13] = { 66.6, 36.8, 1497, 180 }, + [14] = { 65.4, 36.7, 1497, 180 }, + [15] = { 37.1, 65.9, 1519, 180 }, + [16] = { 37.3, 65.6, 1519, 180 }, + [17] = { 37.5, 65.3, 1519, 180 }, + [18] = { 36.8, 65.2, 1519, 180 }, + [19] = { 37, 65, 1519, 180 }, + [20] = { 36.8, 64.9, 1519, 180 }, + [21] = { 37.4, 64.6, 1519, 180 }, + [22] = { 37.1, 64.4, 1519, 180 }, + [23] = { 36.7, 64.2, 1519, 180 }, + [24] = { 30.4, 20.7, 1537, 180 }, + [25] = { 29.1, 19.6, 1537, 180 }, + [26] = { 30.7, 19.3, 1537, 180 }, + [27] = { 31.4, 19.1, 1537, 180 }, + [28] = { 29.8, 18.7, 1537, 180 }, + [29] = { 31.8, 18.1, 1537, 180 }, + [30] = { 32.6, 18, 1537, 180 }, + [31] = { 31.4, 16.8, 1537, 180 }, + [32] = { 32.2, 15.8, 1537, 180 }, + [33] = { 41.5, 33, 1637, 180 }, + [34] = { 42, 32.5, 1637, 180 }, + [35] = { 40.5, 31.7, 1637, 180 }, + [36] = { 40.4, 30.6, 1637, 180 }, + [37] = { 41.5, 30.6, 1637, 180 }, + [38] = { 41, 30.2, 1637, 180 }, + [39] = { 40.6, 30.1, 1637, 180 }, + [40] = { 71.6, 27.2, 1638, 180 }, + [41] = { 71.2, 27, 1638, 180 }, + [42] = { 71, 26.7, 1638, 180 }, + [43] = { 72, 26.4, 1638, 180 }, + [44] = { 71.1, 25.7, 1638, 180 }, + [45] = { 31.1, 12.9, 1657, 25 }, + [46] = { 31.1, 12.3, 1657, 25 }, + [47] = { 31.3, 11.7, 1657, 25 }, + [48] = { 31.7, 11.5, 1657, 25 }, + }, + }, + [180869] = { + ["coords"] = { + [1] = { 23.7, 49.7, 141, 25 }, + [2] = { 23.9, 49.6, 141, 25 }, + [3] = { 23.9, 49.4, 141, 25 }, + [4] = { 23.8, 49.4, 141, 25 }, + [5] = { 44.4, 22.1, 215, 180 }, + [6] = { 44.3, 22, 215, 180 }, + [7] = { 66.6, 37.2, 1497, 180 }, + [8] = { 65.5, 37.2, 1497, 180 }, + [9] = { 37, 65.4, 1519, 180 }, + [10] = { 36.9, 64.8, 1519, 180 }, + [11] = { 31.7, 19.7, 1537, 180 }, + [12] = { 30.4, 18.7, 1537, 180 }, + [13] = { 28.8, 17.9, 1537, 180 }, + [14] = { 31.4, 17.5, 1537, 180 }, + [15] = { 31.1, 15.1, 1537, 180 }, + [16] = { 40.6, 31.1, 1637, 180 }, + [17] = { 41.2, 30.6, 1637, 180 }, + [18] = { 72.1, 26, 1638, 180 }, + [19] = { 71.4, 25.4, 1638, 180 }, + [20] = { 31.4, 13.1, 1657, 25 }, + [21] = { 32.4, 12.8, 1657, 25 }, + [22] = { 32.2, 11.9, 1657, 25 }, + [23] = { 31.5, 11.7, 1657, 25 }, + }, + }, + [180871] = { + ["coords"] = { + [1] = { 44.3, 22.6, 215, 180 }, + [2] = { 44.3, 22.5, 215, 180 }, + [3] = { 44.5, 22, 215, 180 }, + [4] = { 44.4, 21.9, 215, 180 }, + [5] = { 37.6, 66.8, 1519, 180 }, + [6] = { 37.2, 63.8, 1519, 180 }, + [7] = { 32.5, 18.9, 1537, 180 }, + [8] = { 31.8, 15.4, 1537, 180 }, + [9] = { 30.2, 14.8, 1537, 180 }, + [10] = { 43.3, 35, 1637, 180 }, + [11] = { 41.2, 32.4, 1637, 180 }, + [12] = { 41.7, 31.8, 1637, 180 }, + [13] = { 71.3, 28.2, 1638, 180 }, + [14] = { 71.5, 27.6, 1638, 180 }, + [15] = { 72.3, 25.1, 1638, 180 }, + [16] = { 71.7, 24.7, 1638, 180 }, + }, + }, + [180872] = { + ["coords"] = { + [1] = { 66.3, 37.8, 1497, 180 }, + [2] = { 65.7, 37.7, 1497, 180 }, + [3] = { 65.4, 37, 1497, 180 }, + [4] = { 37, 63.2, 1519, 180 }, + [5] = { 41.9, 33.7, 1637, 180 }, + [6] = { 41.2, 30, 1637, 180 }, + }, + }, + [180874] = { + ["coords"] = { + [1] = { 79.1, 78.8, 400, 25 }, + [2] = { 79.1, 76.3, 400, 25 }, + [3] = { 78.6, 76.1, 400, 25 }, + [4] = { 79.2, 76, 400, 25 }, + [5] = { 63.7, 62.2, 493, 25 }, + [6] = { 64.4, 60.8, 493, 25 }, + }, + }, + [180875] = { + ["coords"] = { + [1] = { 63.7, 62.2, 493, 25 }, + [2] = { 64.4, 60.8, 493, 25 }, + }, + }, + [180878] = { + ["coords"] = { + [1] = { 24.4, 49.7, 141, 25 }, + [2] = { 24.4, 49.6, 141, 25 }, + [3] = { 44.1, 22.5, 215, 180 }, + [4] = { 83.5, 55.1, 400, 25 }, + [5] = { 36.3, 58.5, 493, 180 }, + [6] = { 36.3, 58.4, 493, 180 }, + [7] = { 36.5, 58.4, 493, 180 }, + [8] = { 36.4, 58.4, 493, 180 }, + [9] = { 36.3, 58.3, 493, 180 }, + [10] = { 36.2, 58.3, 493, 180 }, + [11] = { 36.6, 58.3, 493, 180 }, + [12] = { 36.4, 58.3, 493, 180 }, + [13] = { 36.5, 58.3, 493, 180 }, + [14] = { 36.7, 58.3, 493, 180 }, + [15] = { 36.4, 58.2, 493, 180 }, + [16] = { 36.6, 58.2, 493, 180 }, + [17] = { 36.5, 58.2, 493, 180 }, + [18] = { 36.7, 58.2, 493, 180 }, + [19] = { 66.6, 36.2, 1497, 180 }, + [20] = { 66.7, 36.2, 1497, 180 }, + [21] = { 66.7, 36.1, 1497, 180 }, + [22] = { 66.8, 36, 1497, 180 }, + [23] = { 66.7, 36, 1497, 180 }, + [24] = { 66.8, 35.9, 1497, 180 }, + [25] = { 66.5, 35.8, 1497, 180 }, + [26] = { 66.7, 35.8, 1497, 180 }, + [27] = { 66.6, 35.8, 1497, 180 }, + [28] = { 37.3, 64.2, 1519, 180 }, + [29] = { 37.2, 64.2, 1519, 180 }, + [30] = { 37.2, 64.1, 1519, 180 }, + [31] = { 37.2, 64, 1519, 180 }, + [32] = { 37.3, 63.9, 1519, 180 }, + [33] = { 30, 14.6, 1537, 180 }, + [34] = { 30.2, 14.6, 1537, 180 }, + [35] = { 30.3, 14.6, 1537, 180 }, + [36] = { 30.4, 14.5, 1537, 180 }, + [37] = { 30.5, 14.5, 1537, 180 }, + [38] = { 30.6, 14.5, 1537, 180 }, + [39] = { 29.9, 14.5, 1537, 180 }, + [40] = { 30, 14.4, 1537, 180 }, + [41] = { 30.5, 14.4, 1537, 180 }, + [42] = { 29.8, 14.3, 1537, 180 }, + [43] = { 30.6, 14.3, 1537, 180 }, + [44] = { 30.3, 14.2, 1537, 180 }, + [45] = { 30.5, 14.1, 1537, 180 }, + [46] = { 30.4, 14.1, 1537, 180 }, + [47] = { 30.6, 14.1, 1537, 180 }, + [48] = { 30.5, 14, 1537, 180 }, + [49] = { 30, 14, 1537, 180 }, + [50] = { 41.2, 32.7, 1637, 180 }, + [51] = { 41.1, 32.7, 1637, 180 }, + [52] = { 41.3, 32.6, 1637, 180 }, + [53] = { 41.1, 32.6, 1637, 180 }, + [54] = { 41.1, 32.5, 1637, 180 }, + [55] = { 41.2, 32.5, 1637, 180 }, + [56] = { 41.1, 32.4, 1637, 180 }, + [57] = { 70.3, 28, 1638, 180 }, + [58] = { 70.3, 27.9, 1638, 180 }, + [59] = { 70.3, 27.8, 1638, 180 }, + [60] = { 70.2, 27.8, 1638, 180 }, + [61] = { 70.3, 27.7, 1638, 180 }, + [62] = { 70.4, 27.7, 1638, 180 }, + [63] = { 70.2, 27.7, 1638, 180 }, + [64] = { 70.5, 27.7, 1638, 180 }, + [65] = { 70.3, 27.6, 1638, 180 }, + [66] = { 70.4, 27.6, 1638, 180 }, + [67] = { 34.5, 13.4, 1657, 25 }, + [68] = { 34.6, 13.3, 1657, 25 }, + [69] = { 34.4, 13.3, 1657, 25 }, + [70] = { 34.6, 13, 1657, 25 }, + [71] = { 34.4, 12.9, 1657, 25 }, + [72] = { 34.4, 12.7, 1657, 25 }, + }, + }, + [180879] = { + ["coords"] = { + [1] = { 24.4, 49.7, 141, 25 }, + [2] = { 53.7, 35.4, 493, 25 }, + [3] = { 34.5, 13.1, 1657, 25 }, + }, + }, + [180880] = { + ["coords"] = { + [1] = { 24.4, 49.6, 141, 25 }, + [2] = { 34.6, 13, 1657, 25 }, + }, + }, + [180881] = { + ["coords"] = { + [1] = { 24.4, 49.7, 141, 25 }, + [2] = { 34.5, 13.1, 1657, 25 }, + }, + }, + [180882] = { + ["coords"] = { + [1] = { 24.4, 49.6, 141, 25 }, + [2] = { 34.5, 13, 1657, 25 }, + }, + }, + [180883] = { + ["coords"] = { + [1] = { 24.4, 49.7, 141, 25 }, + [2] = { 34.5, 13.1, 1657, 25 }, + [3] = { 34.6, 13.1, 1657, 25 }, + }, + }, + [180885] = { + ["coords"] = { + [1] = { 93.7, 15.8, 10, 25 }, + [2] = { 94.5, 14.4, 10, 25 }, + [3] = { 39.6, 61.4, 11, 120 }, + [4] = { 43.8, 65.7, 12, 25 }, + [5] = { 42.9, 65.3, 12, 25 }, + [6] = { 42.5, 63, 12, 25 }, + [7] = { 35.2, 50.1, 12, 25 }, + [8] = { 59.8, 30.3, 12, 25 }, + [9] = { 67.1, 45.4, 15, 25 }, + [10] = { 41.7, 42.2, 16, 300 }, + [11] = { 52.1, 30, 17, 25 }, + [12] = { 51.8, 29.9, 17, 25 }, + [13] = { 52.1, 29.9, 17, 25 }, + [14] = { 52, 29.8, 17, 25 }, + [15] = { 51.9, 29.7, 17, 25 }, + [16] = { 52, 29.7, 17, 25 }, + [17] = { 80.9, 63.5, 28, 300 }, + [18] = { 80.2, 63.1, 28, 25 }, + [19] = { 30.8, 29, 28, 25 }, + [20] = { 47.9, 82.1, 36, 25 }, + [21] = { 22.4, 59, 45, 25 }, + [22] = { 21.9, 58.7, 45, 25 }, + [23] = { 37.9, 52, 85, 25 }, + [24] = { 87.2, 43.3, 85, 25 }, + [25] = { 22.6, 87.3, 139, 300 }, + [26] = { 21.8, 86.9, 139, 25 }, + [27] = { 50.8, 20.3, 267, 25 }, + [28] = { 78.1, 75.7, 400, 25 }, + [29] = { 79.5, 74.4, 400, 25 }, + [30] = { 47.8, 57.4, 406, 300 }, + [31] = { 61.8, 75.3, 1519, 25 }, + [32] = { 62.7, 69.5, 1519, 25 }, + [33] = { 76.8, 54, 1519, 25 }, + [34] = { 76.2, 53.2, 1519, 25 }, + [35] = { 51.3, 70.7, 1637, 25 }, + [36] = { 36.9, 18.9, 5561, 300 }, + }, + }, + [180888] = { + ["coords"] = { + [1] = { 44.2, 67, 14, 300 }, + [2] = { 41.8, 74.2, 15, 300 }, + [3] = { 41.8, 74.1, 15, 300 }, + [4] = { 42, 74.1, 15, 300 }, + [5] = { 41.8, 74, 15, 300 }, + [6] = { 42.3, 72.8, 15, 300 }, + [7] = { 43.6, 17.1, 357, 25 }, + [8] = { 43.6, 16.9, 357, 25 }, + [9] = { 82.5, 55.6, 400, 25 }, + [10] = { 82.8, 54, 400, 25 }, + [11] = { 82.6, 53.9, 400, 25 }, + [12] = { 82.7, 53.8, 400, 25 }, + [13] = { 24.4, 13.7, 406, 25 }, + [14] = { 67.6, 26.9, 440, 300 }, + }, + }, + [180891] = "_", + [180892] = "_", + [180893] = "_", + [180894] = "_", + [180895] = "_", + [180896] = "_", + [180897] = "_", + [180898] = { + ["coords"] = { + [1] = { 29.1, 93.9, 1377, 900 }, + [2] = { 58.2, 4.5, 3478, 900 }, + }, + }, + [180899] = { + ["coords"] = { + [1] = { 29.1, 93.9, 1377, 900 }, + [2] = { 58.2, 4.6, 3478, 900 }, + }, + }, + [180900] = { + ["coords"] = { + [1] = { 29.3, 83.6, 33, 180 }, + [2] = { 30.7, 83.2, 33, 180 }, + [3] = { 31.7, 82, 33, 3600 }, + [4] = { 32.6, 80.6, 33, 3600 }, + [5] = { 33.7, 78, 33, 180 }, + [6] = { 27.5, 76.5, 33, 3600 }, + [7] = { 27.9, 76, 33, 3600 }, + [8] = { 34, 74.7, 33, 3600 }, + [9] = { 27.3, 74.7, 33, 3600 }, + [10] = { 26.5, 74.1, 33, 3600 }, + [11] = { 23.9, 65.4, 33, 3600 }, + [12] = { 23.7, 63.1, 33, 3600 }, + [13] = { 23.8, 61.4, 33, 180 }, + [14] = { 26.2, 58.3, 33, 3600 }, + [15] = { 22.1, 51.1, 33, 3600 }, + [16] = { 24.6, 49.9, 33, 3600 }, + [17] = { 22.7, 48.8, 33, 3600 }, + [18] = { 26, 48.6, 33, 3600 }, + [19] = { 27.2, 46.6, 33, 3600 }, + [20] = { 27.1, 42.3, 33, 180 }, + [21] = { 26.9, 40.9, 33, 3600 }, + [22] = { 27.9, 39, 33, 180 }, + }, + }, + [180901] = { + ["coords"] = { + [1] = { 29.3, 83.6, 33, 3600 }, + [2] = { 27.5, 76.5, 33, 3600 }, + [3] = { 27.9, 76, 33, 3600 }, + [4] = { 34, 74.7, 33, 180 }, + [5] = { 27.3, 74.7, 33, 3600 }, + [6] = { 26.5, 74.1, 33, 3600 }, + [7] = { 25.4, 66.8, 33, 3600 }, + [8] = { 23.9, 65.4, 33, 3600 }, + [9] = { 23.8, 61.4, 33, 3600 }, + [10] = { 24.3, 59.4, 33, 3600 }, + [11] = { 24.6, 49.9, 33, 3600 }, + [12] = { 26.9, 44.5, 33, 3600 }, + [13] = { 27.1, 42.3, 33, 3600 }, + [14] = { 27.9, 39, 33, 3600 }, + [15] = { 28.9, 37.7, 33, 3600 }, + [16] = { 29.4, 37.2, 33, 180 }, + [17] = { 34.2, 36.6, 33, 3600 }, + [18] = { 32.4, 35.5, 33, 3600 }, + }, + }, + [180902] = { + ["coords"] = { + [1] = { 26.5, 84.7, 33, 3600 }, + [2] = { 27.8, 83.5, 33, 3600 }, + [3] = { 26.1, 82.5, 33, 3600 }, + [4] = { 33.7, 78, 33, 3600 }, + [5] = { 27.5, 76.5, 33, 3600 }, + [6] = { 27.9, 76, 33, 3600 }, + [7] = { 27.3, 74.7, 33, 3600 }, + [8] = { 26.5, 74.1, 33, 3600 }, + [9] = { 26.7, 69.9, 33, 3600 }, + [10] = { 25.4, 66.8, 33, 3600 }, + [11] = { 23.9, 65.4, 33, 3600 }, + [12] = { 23.7, 63.1, 33, 180 }, + [13] = { 23.8, 61.4, 33, 3600 }, + [14] = { 24.3, 59.4, 33, 3600 }, + [15] = { 41.7, 57.9, 33, 3600 }, + [16] = { 22.8, 56.4, 33, 3600 }, + [17] = { 22.5, 52.8, 33, 3600 }, + [18] = { 26, 48.6, 33, 3600 }, + [19] = { 27.2, 46.6, 33, 3600 }, + [20] = { 26.9, 44.5, 33, 3600 }, + [21] = { 27.1, 42.3, 33, 3600 }, + [22] = { 28.9, 37.7, 33, 3600 }, + [23] = { 35.1, 36, 33, 3600 }, + [24] = { 28.9, 9.3, 408, 1800 }, + [25] = { 32.8, 6, 408, 1800 }, + [26] = { 21.8, 4, 408, 1800 }, + [27] = { 48, 87.4, 409, 1800 }, + [28] = { 52.1, 84, 409, 1800 }, + [29] = { 40.3, 81.8, 409, 1800 }, + [30] = { 51.2, 76.6, 409, 1800 }, + [31] = { 35.6, 73.8, 409, 1800 }, + [32] = { 33.9, 67.6, 409, 1800 }, + [33] = { 72.5, 64.7, 409, 1800 }, + [34] = { 31.8, 62.2, 409, 1800 }, + [35] = { 71.9, 55.8, 409, 1800 }, + [36] = { 31.9, 50.6, 409, 1800 }, + [37] = { 27.9, 50.6, 409, 1800 }, + [38] = { 61.5, 50.2, 409, 1800 }, + [39] = { 58.9, 49, 409, 1800 }, + [40] = { 27.7, 40.7, 409, 1800 }, + [41] = { 53.9, 20, 409, 1800 }, + [42] = { 51.8, 18.4, 409, 1800 }, + [43] = { 45, 17.4, 409, 1800 }, + [44] = { 62.1, 13.1, 409, 1800 }, + }, + }, + [180904] = { + ["coords"] = { + [1] = { 29.1, 93.9, 1377, 900 }, + [2] = { 58.2, 4.5, 3478, 900 }, + }, + }, + [180905] = { + ["coords"] = { + [1] = { 54.1, 39.3, 1, 120 }, + [2] = { 54.2, 39.2, 1, 120 }, + [3] = { 54.1, 39.2, 1, 120 }, + [4] = { 54, 38.9, 1, 120 }, + [5] = { 53.9, 38.9, 1, 120 }, + [6] = { 52.9, 37.3, 1, 120 }, + [7] = { 52.4, 37.1, 1, 120 }, + [8] = { 52.4, 37, 1, 120 }, + [9] = { 52.3, 37, 1, 120 }, + [10] = { 52.5, 36.5, 1, 120 }, + [11] = { 52.5, 36.4, 1, 120 }, + [12] = { 53, 36.3, 1, 120 }, + [13] = { 53, 36.2, 1, 120 }, + [14] = { 52.5, 36, 1, 120 }, + [15] = { 53.3, 35.4, 1, 120 }, + [16] = { 52.7, 35.2, 1, 120 }, + [17] = { 52.9, 35.2, 1, 120 }, + [18] = { 52.9, 35.1, 1, 120 }, + [19] = { 53.1, 35.1, 1, 120 }, + [20] = { 53.1, 35, 1, 120 }, + [21] = { 36.1, 68.3, 11, 25 }, + [22] = { 34.4, 65.2, 11, 25 }, + [23] = { 35.6, 61.5, 11, 25 }, + [24] = { 46.1, 14.5, 14, 120 }, + [25] = { 45.6, 14.2, 14, 120 }, + [26] = { 46.1, 14.1, 14, 120 }, + [27] = { 45.5, 14, 14, 120 }, + [28] = { 45.5, 13.9, 14, 120 }, + [29] = { 45.4, 13.4, 14, 120 }, + [30] = { 45.3, 13.4, 14, 120 }, + [31] = { 46, 13.3, 14, 120 }, + [32] = { 46.1, 13.3, 14, 120 }, + [33] = { 46, 13.1, 14, 120 }, + [34] = { 46.1, 13.1, 14, 120 }, + [35] = { 45.8, 10.5, 14, 120 }, + [36] = { 45.8, 10.4, 14, 120 }, + [37] = { 46.1, 10.4, 14, 120 }, + [38] = { 46.2, 10.4, 14, 120 }, + [39] = { 46.2, 8.6, 14, 120 }, + [40] = { 46.5, 8.6, 14, 120 }, + [41] = { 46.6, 8.6, 14, 120 }, + [42] = { 46.5, 8.5, 14, 120 }, + [43] = { 46.5, 8.3, 14, 120 }, + [44] = { 46, 8.3, 14, 120 }, + [45] = { 46, 8.2, 14, 120 }, + [46] = { 52, 29.7, 17, 25 }, + [47] = { 47.9, 8.7, 17, 300 }, + [48] = { 47.8, 8.7, 17, 300 }, + [49] = { 44.4, 98.3, 28, 300 }, + [50] = { 80, 63.3, 28, 300 }, + [51] = { 79.8, 62.9, 28, 300 }, + [52] = { 28.1, 77.4, 33, 120 }, + [53] = { 28.1, 77.3, 33, 120 }, + [54] = { 27.2, 77.1, 33, 120 }, + [55] = { 27.7, 77, 33, 120 }, + [56] = { 28.2, 76.3, 33, 120 }, + [57] = { 28.2, 76.2, 33, 120 }, + [58] = { 28.2, 76.1, 33, 120 }, + [59] = { 28.3, 76, 33, 120 }, + [60] = { 27.9, 74.8, 33, 120 }, + [61] = { 27.9, 74.7, 33, 120 }, + [62] = { 27.8, 74.2, 33, 120 }, + [63] = { 26.6, 73.5, 33, 120 }, + [64] = { 81.3, 51, 36, 300 }, + [65] = { 81.2, 51, 36, 300 }, + [66] = { 62.8, 68.4, 85, 120 }, + [67] = { 60.9, 68.3, 85, 120 }, + [68] = { 61, 68.3, 85, 120 }, + [69] = { 61, 68.2, 85, 120 }, + [70] = { 60.9, 68.2, 85, 120 }, + [71] = { 62.8, 67.8, 85, 120 }, + [72] = { 62.7, 67.8, 85, 120 }, + [73] = { 60.9, 67.8, 85, 120 }, + [74] = { 61, 67.8, 85, 120 }, + [75] = { 60.9, 67.7, 85, 120 }, + [76] = { 62.4, 67.5, 85, 120 }, + [77] = { 61.3, 67.5, 85, 120 }, + [78] = { 61.7, 67.5, 85, 120 }, + [79] = { 62.1, 67.5, 85, 120 }, + [80] = { 62, 67.5, 85, 120 }, + [81] = { 61.6, 67.5, 85, 120 }, + [82] = { 62, 67.4, 85, 120 }, + [83] = { 61.3, 67.4, 85, 120 }, + [84] = { 61.7, 67.4, 85, 120 }, + [85] = { 62.1, 67.4, 85, 120 }, + [86] = { 60.9, 67.2, 85, 120 }, + [87] = { 62.8, 67.2, 85, 120 }, + [88] = { 62.7, 67.2, 85, 120 }, + [89] = { 62.8, 67.1, 85, 120 }, + [90] = { 60.9, 66.6, 85, 120 }, + [91] = { 62.8, 66.6, 85, 120 }, + [92] = { 62.7, 66.6, 85, 120 }, + [93] = { 62.8, 66.5, 85, 120 }, + [94] = { 67.5, 83.5, 130, 300 }, + [95] = { 67.5, 83.4, 130, 300 }, + [96] = { 21.6, 87.1, 139, 300 }, + [97] = { 21.7, 87.1, 139, 300 }, + [98] = { 21.7, 87, 139, 300 }, + [99] = { 21.4, 86.7, 139, 300 }, + [100] = { 21.4, 86.6, 139, 300 }, + [101] = { 55.1, 95.6, 141, 120 }, + [102] = { 55.1, 95.5, 141, 120 }, + [103] = { 55, 95, 141, 120 }, + [104] = { 55.3, 94.5, 141, 120 }, + [105] = { 55.2, 94.5, 141, 120 }, + [106] = { 55.2, 93.9, 141, 120 }, + [107] = { 55.3, 93.9, 141, 120 }, + [108] = { 57.7, 93.8, 141, 120 }, + [109] = { 57.7, 93.7, 141, 120 }, + [110] = { 55.5, 93.6, 141, 120 }, + [111] = { 57.2, 92.8, 141, 120 }, + [112] = { 57.7, 92.8, 141, 120 }, + [113] = { 57.7, 92.7, 141, 120 }, + [114] = { 55.9, 92.7, 141, 120 }, + [115] = { 56, 92.7, 141, 120 }, + [116] = { 56, 92.6, 141, 120 }, + [117] = { 57.6, 92.6, 141, 120 }, + [118] = { 68.1, 18.1, 148, 300 }, + [119] = { 68.2, 18, 148, 300 }, + [120] = { 68.3, 18, 148, 300 }, + [121] = { 68.1, 17.6, 148, 300 }, + [122] = { 40.6, 34.5, 215, 120 }, + [123] = { 40.7, 34.5, 215, 120 }, + [124] = { 37.8, 30.6, 215, 120 }, + [125] = { 37.9, 30.6, 215, 120 }, + [126] = { 37.8, 29.5, 215, 120 }, + [127] = { 37.7, 29.5, 215, 120 }, + [128] = { 37.8, 29.4, 215, 120 }, + [129] = { 37.7, 29.4, 215, 120 }, + [130] = { 37.4, 28.6, 215, 120 }, + [131] = { 37.4, 28.5, 215, 120 }, + [132] = { 38.4, 28, 215, 120 }, + [133] = { 38.4, 27.9, 215, 120 }, + [134] = { 41.6, 27.6, 215, 120 }, + [135] = { 41.6, 27.5, 215, 120 }, + [136] = { 41.6, 27.3, 215, 120 }, + [137] = { 41.6, 27.1, 215, 120 }, + [138] = { 14.1, 50.3, 267, 300 }, + [139] = { 14.1, 50.2, 267, 300 }, + [140] = { 14.1, 50, 267, 300 }, + [141] = { 78.3, 75.7, 400, 25 }, + [142] = { 25.4, 82.2, 440, 300 }, + [143] = { 70.4, 16.2, 1497, 120 }, + [144] = { 70.5, 16.1, 1497, 120 }, + [145] = { 70.3, 16.1, 1497, 120 }, + [146] = { 70.4, 15.9, 1497, 120 }, + [147] = { 61.9, 15.2, 1497, 120 }, + [148] = { 61.8, 15.1, 1497, 120 }, + [149] = { 61.9, 15.1, 1497, 120 }, + [150] = { 61.9, 15, 1497, 120 }, + [151] = { 61.8, 15, 1497, 120 }, + [152] = { 70.4, 13.2, 1497, 120 }, + [153] = { 70.4, 13.1, 1497, 120 }, + [154] = { 70.5, 13, 1497, 120 }, + [155] = { 70.4, 13, 1497, 120 }, + [156] = { 70.4, 12.9, 1497, 120 }, + [157] = { 61.9, 12.9, 1497, 120 }, + [158] = { 61.9, 12.8, 1497, 120 }, + [159] = { 61.8, 12.8, 1497, 120 }, + [160] = { 62, 12.8, 1497, 120 }, + [161] = { 61.9, 12.7, 1497, 120 }, + [162] = { 68.7, 11.5, 1497, 120 }, + [163] = { 63.6, 11.5, 1497, 120 }, + [164] = { 65.2, 11.4, 1497, 120 }, + [165] = { 67.1, 11.4, 1497, 120 }, + [166] = { 68.7, 11.4, 1497, 120 }, + [167] = { 68.8, 11.4, 1497, 120 }, + [168] = { 63.7, 11.4, 1497, 120 }, + [169] = { 65.3, 11.4, 1497, 120 }, + [170] = { 67, 11.4, 1497, 120 }, + [171] = { 63.5, 11.3, 1497, 120 }, + [172] = { 67.2, 11.3, 1497, 120 }, + [173] = { 63.7, 11.3, 1497, 120 }, + [174] = { 65.3, 11.3, 1497, 120 }, + [175] = { 68.7, 11.3, 1497, 120 }, + [176] = { 67.1, 11.2, 1497, 120 }, + [177] = { 63.6, 11.2, 1497, 120 }, + [178] = { 65.2, 11.2, 1497, 120 }, + [179] = { 61.9, 10.2, 1497, 120 }, + [180] = { 61.9, 10.1, 1497, 120 }, + [181] = { 61.8, 10.1, 1497, 120 }, + [182] = { 70.5, 10, 1497, 120 }, + [183] = { 70.4, 10, 1497, 120 }, + [184] = { 61.8, 10, 1497, 120 }, + [185] = { 61.9, 10, 1497, 120 }, + [186] = { 70.4, 9.9, 1497, 120 }, + [187] = { 70.5, 9.9, 1497, 120 }, + [188] = { 61.9, 7.4, 1497, 120 }, + [189] = { 61.8, 7.4, 1497, 120 }, + [190] = { 70.5, 7.3, 1497, 120 }, + [191] = { 70.4, 7.2, 1497, 120 }, + [192] = { 61.9, 7.2, 1497, 120 }, + [193] = { 61.8, 7.2, 1497, 120 }, + [194] = { 70.5, 7.1, 1497, 120 }, + [195] = { 70.4, 7.1, 1497, 120 }, + [196] = { 70.4, 7, 1497, 120 }, + [197] = { 61.7, 75.3, 1519, 25 }, + [198] = { 61.8, 75.3, 1519, 25 }, + [199] = { 65.5, 74.6, 1519, 120 }, + [200] = { 65.5, 74.5, 1519, 120 }, + [201] = { 37.1, 74.3, 1519, 340 }, + [202] = { 37.2, 74.2, 1519, 300 }, + [203] = { 65.3, 74.2, 1519, 120 }, + [204] = { 37.4, 74.1, 1519, 300 }, + [205] = { 65.3, 74.1, 1519, 120 }, + [206] = { 60.9, 74.1, 1519, 120 }, + [207] = { 60.8, 74, 1519, 120 }, + [208] = { 60.9, 74, 1519, 120 }, + [209] = { 65.1, 74, 1519, 120 }, + [210] = { 65.1, 73.9, 1519, 120 }, + [211] = { 62.2, 73.9, 1519, 120 }, + [212] = { 62.2, 73.8, 1519, 120 }, + [213] = { 65.1, 73.8, 1519, 120 }, + [214] = { 63.1, 73.4, 1519, 120 }, + [215] = { 63.1, 73.3, 1519, 120 }, + [216] = { 63.1, 73.2, 1519, 120 }, + [217] = { 61.8, 73.1, 1519, 120 }, + [218] = { 61.7, 73.1, 1519, 120 }, + [219] = { 61.8, 73, 1519, 120 }, + [220] = { 61.7, 73, 1519, 120 }, + [221] = { 61.9, 72.8, 1519, 120 }, + [222] = { 62, 72.8, 1519, 120 }, + [223] = { 61.9, 72.7, 1519, 120 }, + [224] = { 63, 71.8, 1519, 120 }, + [225] = { 62.9, 71.8, 1519, 120 }, + [226] = { 63, 71.7, 1519, 120 }, + [227] = { 62.9, 71.7, 1519, 120 }, + [228] = { 61.9, 71, 1519, 120 }, + [229] = { 62, 71, 1519, 120 }, + [230] = { 61.9, 70.9, 1519, 120 }, + [231] = { 63, 70.9, 1519, 120 }, + [232] = { 63, 70.8, 1519, 120 }, + [233] = { 63, 70.7, 1519, 120 }, + [234] = { 75.9, 54.7, 1519, 25 }, + [235] = { 14, 89.1, 1537, 120 }, + [236] = { 13.8, 89, 1537, 120 }, + [237] = { 13.9, 88.9, 1537, 120 }, + [238] = { 13.8, 88.9, 1537, 120 }, + [239] = { 13.9, 88.8, 1537, 120 }, + [240] = { 51, 100, 1637, 120 }, + [241] = { 51.1, 100, 1637, 120 }, + [242] = { 51.1, 99.9, 1637, 120 }, + [243] = { 51.1, 99.3, 1637, 120 }, + [244] = { 51.1, 99.2, 1637, 120 }, + [245] = { 51, 99.2, 1637, 120 }, + [246] = { 51, 99.1, 1637, 120 }, + [247] = { 51.1, 99.1, 1637, 120 }, + [248] = { 50.1, 89.3, 1637, 120 }, + [249] = { 50, 89.2, 1637, 120 }, + [250] = { 50.1, 89.2, 1637, 120 }, + [251] = { 50, 89.1, 1637, 120 }, + [252] = { 50.1, 89.1, 1637, 120 }, + [253] = { 51.5, 89.1, 1637, 120 }, + [254] = { 51.4, 89.1, 1637, 120 }, + [255] = { 51.4, 89, 1637, 120 }, + [256] = { 51.5, 89, 1637, 120 }, + [257] = { 51.4, 88.9, 1637, 120 }, + [258] = { 51.8, 82.3, 1637, 120 }, + [259] = { 51.7, 82.3, 1637, 120 }, + [260] = { 51.7, 82.2, 1637, 120 }, + [261] = { 51.7, 82.1, 1637, 120 }, + [262] = { 53, 82.1, 1637, 120 }, + [263] = { 52.9, 82.1, 1637, 120 }, + [264] = { 53, 82, 1637, 120 }, + [265] = { 52.9, 82, 1637, 120 }, + [266] = { 52.9, 81.2, 1637, 120 }, + [267] = { 53, 81.1, 1637, 120 }, + [268] = { 52.9, 81, 1637, 120 }, + [269] = { 51, 81, 1637, 120 }, + [270] = { 51.1, 80.9, 1637, 120 }, + [271] = { 51, 80.9, 1637, 120 }, + [272] = { 51, 80.8, 1637, 120 }, + [273] = { 51.1, 80.8, 1637, 120 }, + [274] = { 53.3, 87.1, 1638, 120 }, + [275] = { 53.4, 87.1, 1638, 120 }, + [276] = { 53.2, 87, 1638, 120 }, + [277] = { 53.3, 87, 1638, 120 }, + [278] = { 39.5, 67.8, 1638, 120 }, + [279] = { 39.6, 67.8, 1638, 120 }, + [280] = { 39.7, 67.8, 1638, 120 }, + [281] = { 39.8, 67.7, 1638, 120 }, + [282] = { 39.4, 67.7, 1638, 120 }, + [283] = { 39.7, 67.7, 1638, 120 }, + [284] = { 39.5, 67.7, 1638, 120 }, + [285] = { 39.4, 67.6, 1638, 120 }, + [286] = { 39.5, 67.6, 1638, 120 }, + [287] = { 39.7, 67.6, 1638, 120 }, + [288] = { 39.3, 62.4, 1638, 120 }, + [289] = { 39.4, 62.4, 1638, 120 }, + [290] = { 39.3, 62.3, 1638, 120 }, + [291] = { 39.4, 62.3, 1638, 120 }, + [292] = { 39, 62.1, 1638, 120 }, + [293] = { 39.1, 62.1, 1638, 120 }, + [294] = { 39.2, 62, 1638, 120 }, + [295] = { 39.1, 62, 1638, 120 }, + [296] = { 37.4, 57.7, 1638, 120 }, + [297] = { 37.5, 57.7, 1638, 120 }, + [298] = { 37.5, 57.6, 1638, 120 }, + [299] = { 42.5, 55.1, 1638, 120 }, + [300] = { 42.4, 55, 1638, 120 }, + [301] = { 42.5, 55, 1638, 120 }, + [302] = { 42.4, 54.9, 1638, 120 }, + [303] = { 42.2, 54.7, 1638, 120 }, + [304] = { 42.3, 54.6, 1638, 120 }, + [305] = { 42.2, 54.6, 1638, 120 }, + [306] = { 42.2, 54.5, 1638, 120 }, + [307] = { 58.2, 52.8, 1638, 120 }, + [308] = { 58.1, 52.7, 1638, 120 }, + [309] = { 58.1, 52.6, 1638, 120 }, + [310] = { 58.2, 52.6, 1638, 120 }, + [311] = { 58.2, 52.5, 1638, 120 }, + [312] = { 58.2, 51.6, 1638, 120 }, + [313] = { 58.3, 51.5, 1638, 120 }, + [314] = { 58.3, 51.4, 1638, 120 }, + [315] = { 58.2, 51.3, 1638, 120 }, + [316] = { 58.2, 50.5, 1638, 120 }, + [317] = { 58.2, 50.4, 1638, 120 }, + [318] = { 58.1, 50.4, 1638, 120 }, + [319] = { 58.2, 50.3, 1638, 120 }, + [320] = { 58.2, 50.2, 1638, 120 }, + [321] = { 71.9, 12.8, 5179, 300 }, + [322] = { 72, 12.8, 5179, 300 }, + [323] = { 72, 12.6, 5179, 300 }, + [324] = { 71.9, 12.6, 5179, 300 }, + }, + }, + [180909] = { + ["coords"] = { + [1] = { 53.7, 35.4, 493, 25 }, + }, + }, + [180910] = { + ["coords"] = { + [1] = { 53.7, 35.4, 493, 25 }, + }, + }, + [180914] = { + ["coords"] = { + [1] = { 33.5, 10.8, 17, 300 }, + [2] = { 82.6, 55.2, 400, 25 }, + [3] = { 78.5, 63.8, 406, 300 }, + [4] = { 81.7, 29.4, 616, 300 }, + [5] = { 51.3, 38.8, 1377, 900 }, + }, + }, + [181013] = { + ["coords"] = {}, + }, + [181014] = { + ["coords"] = { + [1] = { 31.9, 49.9, 12, 120 }, + [2] = { 32.5, 49.1, 12, 120 }, + [3] = { 36.1, 29.9, 215, 120 }, + [4] = { 41.6, 28.1, 215, 120 }, + [5] = { 39.2, 27.4, 215, 120 }, + [6] = { 37.2, 27.2, 215, 120 }, + [7] = { 39.3, 26.6, 215, 120 }, + [8] = { 41.7, 26.5, 215, 120 }, + [9] = { 38.6, 24.8, 215, 120 }, + [10] = { 40.1, 24.4, 215, 120 }, + [11] = { 40.7, 22, 215, 120 }, + [12] = { 68.2, 82.2, 1519, 120 }, + [13] = { 69.2, 81, 1519, 120 }, + [14] = { 68.1, 74, 1519, 120 }, + [15] = { 47.4, 65.7, 1637, 120 }, + [16] = { 47.4, 65.3, 1637, 120 }, + [17] = { 31, 64.3, 1638, 120 }, + [18] = { 58.1, 55.5, 1638, 120 }, + [19] = { 46.2, 51.8, 1638, 120 }, + [20] = { 36.6, 51, 1638, 120 }, + [21] = { 46.8, 48.2, 1638, 120 }, + [22] = { 58.4, 47.5, 1638, 120 }, + [23] = { 43.3, 39.4, 1638, 120 }, + [24] = { 50.5, 37.1, 1638, 120 }, + }, + }, + [181015] = { + ["coords"] = { + [1] = { 32.1, 50.4, 12, 120 }, + [2] = { 32.8, 49.5, 12, 120 }, + [3] = { 66, 44.1, 1497, 120 }, + [4] = { 71.2, 88.3, 1519, 120 }, + [5] = { 72.3, 87, 1519, 120 }, + [6] = { 69.9, 85.6, 1519, 120 }, + [7] = { 70.9, 84.4, 1519, 120 }, + [8] = { 65.8, 77.5, 1519, 120 }, + [9] = { 66.6, 76.7, 1519, 120 }, + }, + }, + [181016] = { + ["coords"] = { + [1] = { 54, 34.8, 1, 120 }, + [2] = { 54.2, 34.5, 1, 120 }, + [3] = { 74.2, 13.4, 130, 120 }, + [4] = { 74.3, 13.2, 130, 120 }, + [5] = { 58.2, 94.1, 141, 120 }, + [6] = { 58.1, 94.1, 141, 120 }, + [7] = { 58.6, 94.1, 141, 120 }, + [8] = { 58, 93.7, 141, 120 }, + [9] = { 57.6, 93.2, 141, 120 }, + [10] = { 57.9, 93.2, 141, 120 }, + [11] = { 57.2, 92.9, 141, 120 }, + [12] = { 57.1, 92.4, 141, 120 }, + [13] = { 25.2, 63.7, 141, 120 }, + [14] = { 25.4, 63.7, 141, 120 }, + [15] = { 24.1, 55.8, 141, 120 }, + [16] = { 23.7, 55.7, 141, 120 }, + [17] = { 24, 55.7, 141, 120 }, + [18] = { 24.1, 55.4, 141, 120 }, + [19] = { 24, 55.4, 141, 120 }, + [20] = { 23.7, 55.3, 141, 120 }, + [21] = { 40.8, 32.9, 215, 120 }, + [22] = { 41, 32.5, 215, 120 }, + [23] = { 37, 30.1, 215, 120 }, + [24] = { 38.9, 29.8, 215, 120 }, + [25] = { 36.9, 29.7, 215, 120 }, + [26] = { 39.1, 29.6, 215, 120 }, + [27] = { 36.7, 29.3, 215, 120 }, + [28] = { 39.4, 29, 215, 120 }, + [29] = { 39.5, 28.9, 215, 120 }, + [30] = { 39.5, 28.6, 215, 120 }, + [31] = { 39.3, 28.6, 215, 120 }, + [32] = { 41.9, 27.5, 215, 120 }, + [33] = { 41.9, 27.2, 215, 120 }, + [34] = { 39.4, 27.1, 215, 120 }, + [35] = { 39.4, 26.8, 215, 120 }, + [36] = { 35.4, 23.5, 215, 120 }, + [37] = { 35.6, 23.4, 215, 120 }, + [38] = { 40.5, 23.3, 215, 120 }, + [39] = { 40.2, 23.2, 215, 120 }, + [40] = { 40, 23, 215, 120 }, + [41] = { 35.9, 22.2, 215, 120 }, + [42] = { 36.1, 21.8, 215, 120 }, + [43] = { 34.7, 21.2, 215, 120 }, + [44] = { 34.8, 20.9, 215, 120 }, + [45] = { 89.1, 51.1, 405, 120 }, + [46] = { 89.3, 50.9, 405, 120 }, + [47] = { 88.3, 48.4, 405, 120 }, + [48] = { 88.4, 48.1, 405, 120 }, + [49] = { 56.4, 91.6, 1497, 120 }, + [50] = { 56.6, 90.6, 1497, 120 }, + [51] = { 66.6, 45.1, 1497, 120 }, + [52] = { 65.4, 45, 1497, 120 }, + [53] = { 61.8, 76.3, 1519, 120 }, + [54] = { 62.3, 75.8, 1519, 120 }, + [55] = { 61.3, 74.7, 1519, 120 }, + [56] = { 61.1, 74.3, 1519, 120 }, + [57] = { 67.8, 72.8, 1519, 120 }, + [58] = { 68, 72.3, 1519, 120 }, + [59] = { 53.9, 54, 1519, 120 }, + [60] = { 54.6, 53.2, 1519, 120 }, + [61] = { 18, 85.1, 1537, 120 }, + [62] = { 19.6, 83.2, 1537, 120 }, + [63] = { 16.2, 81.7, 1537, 120 }, + [64] = { 21.1, 81.2, 1537, 120 }, + [65] = { 17.7, 79.8, 1537, 120 }, + [66] = { 19.3, 77.9, 1537, 120 }, + [67] = { 40.6, 55.5, 1537, 120 }, + [68] = { 39.9, 54.1, 1537, 120 }, + [69] = { 49.3, 70.4, 1637, 120 }, + [70] = { 50.3, 69.7, 1637, 120 }, + [71] = { 48.4, 68.6, 1637, 120 }, + [72] = { 54.9, 67.9, 1637, 120 }, + [73] = { 49.3, 67.5, 1637, 120 }, + [74] = { 54.5, 67.4, 1637, 120 }, + [75] = { 46.5, 66.7, 1637, 120 }, + [76] = { 45.2, 65.8, 1637, 120 }, + [77] = { 48.6, 64, 1637, 120 }, + [78] = { 45, 63.9, 1637, 120 }, + [79] = { 45.1, 62.6, 1637, 120 }, + [80] = { 47.9, 62, 1637, 120 }, + [81] = { 45.7, 61.9, 1637, 120 }, + [82] = { 47.2, 61.5, 1637, 120 }, + [83] = { 32.6, 38.2, 1637, 120 }, + [84] = { 32.6, 37.4, 1637, 120 }, + [85] = { 54.2, 79, 1638, 120 }, + [86] = { 55.1, 77, 1638, 120 }, + [87] = { 35.6, 65.4, 1638, 120 }, + [88] = { 44.8, 63.7, 1638, 120 }, + [89] = { 35.1, 63.3, 1638, 120 }, + [90] = { 45.9, 62.9, 1638, 120 }, + [91] = { 34, 61.4, 1638, 120 }, + [92] = { 47, 59.8, 1638, 120 }, + [93] = { 47.7, 59.4, 1638, 120 }, + [94] = { 47.6, 57.7, 1638, 120 }, + [95] = { 46.9, 57.6, 1638, 120 }, + [96] = { 59.4, 52.2, 1638, 120 }, + [97] = { 59.4, 51.2, 1638, 120 }, + [98] = { 47.1, 50.6, 1638, 120 }, + [99] = { 47, 49, 1638, 120 }, + [100] = { 27.6, 32.9, 1638, 120 }, + [101] = { 28.6, 32.2, 1638, 120 }, + [102] = { 52.7, 31.9, 1638, 120 }, + [103] = { 51.3, 31.3, 1638, 120 }, + [104] = { 50.2, 30.1, 1638, 120 }, + [105] = { 30.1, 26.1, 1638, 120 }, + [106] = { 31.1, 24.6, 1638, 120 }, + [107] = { 24.1, 21.6, 1638, 120 }, + [108] = { 24.6, 20.1, 1638, 120 }, + [109] = { 38.7, 80.8, 1657, 120 }, + [110] = { 39.4, 80.7, 1657, 120 }, + [111] = { 33.3, 42.4, 1657, 120 }, + [112] = { 31.3, 42.4, 1657, 120 }, + [113] = { 32.4, 42.3, 1657, 120 }, + [114] = { 33.3, 40.5, 1657, 120 }, + [115] = { 32.5, 40.5, 1657, 120 }, + [116] = { 31.3, 40.4, 1657, 120 }, + [117] = { 59.4, 98.2, 5581, 120 }, + [118] = { 59.3, 98, 5581, 120 }, + }, + }, + [181017] = { + ["coords"] = { + [1] = { 60.3, 35.5, 1, 120 }, + [2] = { 39.2, 30.3, 215, 120 }, + [3] = { 39.1, 29.8, 215, 120 }, + [4] = { 39.1, 28.8, 215, 120 }, + [5] = { 63, 78.6, 1519, 120 }, + [6] = { 59.9, 75.6, 1519, 120 }, + [7] = { 61, 74.7, 1519, 120 }, + [8] = { 61.2, 73, 1519, 120 }, + [9] = { 57.2, 89.5, 1537, 120 }, + [10] = { 55.7, 87.5, 1537, 120 }, + [11] = { 52, 85, 1537, 120 }, + [12] = { 51.1, 79.7, 1537, 120 }, + [13] = { 40.5, 76.8, 1537, 120 }, + [14] = { 71.6, 67.9, 1537, 120 }, + [15] = { 34, 62.5, 1537, 120 }, + [16] = { 30.9, 58.9, 1537, 120 }, + [17] = { 54.5, 56.7, 1537, 120 }, + [18] = { 20.7, 53.2, 1537, 120 }, + [19] = { 56.8, 52.8, 1537, 120 }, + [20] = { 18.5, 51.4, 1537, 120 }, + [21] = { 59, 44.7, 1537, 120 }, + [22] = { 24.7, 43.4, 1537, 120 }, + [23] = { 25.3, 37.2, 1537, 120 }, + [24] = { 54.8, 31, 1537, 120 }, + [25] = { 44.2, 30.6, 1537, 120 }, + [26] = { 29.7, 26.2, 1537, 120 }, + [27] = { 59.5, 23.2, 1537, 120 }, + [28] = { 50.7, 8.5, 1537, 120 }, + [29] = { 48, 8.3, 1537, 120 }, + [30] = { 37.5, 6.2, 1537, 120 }, + [31] = { 36.2, 4.3, 1537, 120 }, + [32] = { 54.1, 69.7, 1637, 120 }, + [33] = { 53.8, 69.4, 1637, 120 }, + [34] = { 53.6, 69.1, 1637, 120 }, + [35] = { 46.4, 66.3, 1638, 120 }, + [36] = { 45.7, 63.9, 1638, 120 }, + [37] = { 45.7, 58.8, 1638, 120 }, + }, + }, + [181018] = { + ["coords"] = { + [1] = { 45.5, 10.9, 14, 120 }, + [2] = { 46.6, 10.7, 14, 120 }, + [3] = { 45.3, 10.6, 14, 120 }, + [4] = { 46.4, 10.4, 14, 120 }, + [5] = { 42.8, 8.8, 14, 120 }, + [6] = { 67, 45.6, 1497, 120 }, + [7] = { 64.9, 45.6, 1497, 120 }, + [8] = { 67, 42.6, 1497, 120 }, + [9] = { 65, 42.6, 1497, 120 }, + [10] = { 62.5, 79, 1519, 120 }, + [11] = { 63.4, 78.3, 1519, 120 }, + [12] = { 60.9, 69.5, 1519, 120 }, + [13] = { 36.5, 62.3, 1537, 120 }, + [14] = { 35.6, 60.6, 1537, 120 }, + [15] = { 34.6, 58.9, 1537, 120 }, + [16] = { 49.1, 90.7, 1637, 120 }, + [17] = { 53.3, 89.9, 1637, 120 }, + [18] = { 48.3, 89.8, 1637, 120 }, + [19] = { 52.5, 89, 1637, 120 }, + [20] = { 38.7, 82.8, 1637, 120 }, + [21] = { 49.4, 68.8, 1637, 120 }, + [22] = { 53.6, 66, 1637, 120 }, + [23] = { 46.6, 64.1, 1637, 120 }, + [24] = { 52.9, 63.7, 1637, 120 }, + [25] = { 42.6, 61.8, 1637, 120 }, + [26] = { 38.4, 60, 1637, 120 }, + [27] = { 52.5, 58.7, 1637, 120 }, + [28] = { 51.5, 56.7, 1637, 120 }, + [29] = { 65.9, 41.3, 1637, 120 }, + [30] = { 66, 40.3, 1637, 120 }, + [31] = { 47, 39.9, 1637, 120 }, + [32] = { 45.3, 39.2, 1637, 120 }, + [33] = { 49.3, 38.4, 1637, 120 }, + [34] = { 40.8, 38.3, 1637, 120 }, + [35] = { 64.3, 37.9, 1637, 120 }, + [36] = { 64.5, 36.9, 1637, 120 }, + [37] = { 40.7, 35.5, 1637, 120 }, + [38] = { 48.5, 34, 1637, 120 }, + [39] = { 68.8, 28, 1637, 120 }, + [40] = { 69.6, 26, 1637, 120 }, + [41] = { 81.1, 23.6, 1637, 120 }, + [42] = { 81.8, 21.6, 1637, 120 }, + }, + }, + [181019] = { + ["coords"] = { + [1] = { 68.8, 26, 1, 120 }, + [2] = { 36.3, 67.7, 11, 120 }, + [3] = { 34.7, 65.3, 11, 120 }, + [4] = { 22.9, 65.1, 11, 120 }, + [5] = { 36, 62.4, 11, 120 }, + [6] = { 35.9, 62.4, 11, 120 }, + [7] = { 39, 62.1, 11, 120 }, + [8] = { 39.3, 61.9, 11, 120 }, + [9] = { 39.6, 61.5, 11, 120 }, + [10] = { 52, 29.7, 17, 25 }, + [11] = { 31.3, 50.1, 141, 120 }, + [12] = { 31.2, 49.9, 141, 120 }, + [13] = { 31.5, 49.8, 141, 120 }, + [14] = { 31.5, 49.7, 141, 120 }, + [15] = { 38.9, 29.7, 215, 120 }, + [16] = { 62.1, 45.6, 1497, 120 }, + [17] = { 69.5, 44.9, 1497, 120 }, + [18] = { 62.2, 42.5, 1497, 120 }, + [19] = { 65.3, 30.5, 1497, 120 }, + [20] = { 66.8, 30.5, 1497, 120 }, + [21] = { 65.3, 29.2, 1497, 120 }, + [22] = { 66.8, 29.2, 1497, 120 }, + [23] = { 66.2, 27.6, 1497, 120 }, + [24] = { 65.9, 27.6, 1497, 120 }, + [25] = { 66.8, 27.5, 1497, 120 }, + [26] = { 65.3, 27.5, 1497, 120 }, + [27] = { 66.9, 26.5, 1497, 120 }, + [28] = { 65.3, 26.4, 1497, 120 }, + [29] = { 66.8, 25.4, 1497, 120 }, + [30] = { 65.3, 25.4, 1497, 120 }, + [31] = { 62.9, 80.9, 1519, 120 }, + [32] = { 64.3, 79.8, 1519, 120 }, + [33] = { 62.5, 79.8, 1519, 120 }, + [34] = { 63.9, 78.7, 1519, 120 }, + [35] = { 60.5, 74.3, 1519, 120 }, + [36] = { 37.1, 74, 1519, 300 }, + [37] = { 33.6, 63.7, 1537, 120 }, + [38] = { 33.1, 62.8, 1537, 120 }, + [39] = { 36.8, 62.6, 1537, 120 }, + [40] = { 36.4, 61.8, 1537, 120 }, + [41] = { 35.8, 60.8, 1537, 120 }, + [42] = { 35.4, 60.1, 1537, 120 }, + [43] = { 34.9, 59.1, 1537, 120 }, + [44] = { 34.5, 58.4, 1537, 120 }, + [45] = { 19, 52.5, 1537, 120 }, + [46] = { 19.2, 50.8, 1537, 120 }, + [47] = { 54.5, 67.8, 1637, 120 }, + [48] = { 54.5, 67.7, 1637, 120 }, + [49] = { 44.8, 63.3, 1638, 120 }, + [50] = { 67.8, 15.4, 1657, 120 }, + [51] = { 67.3, 14.3, 1657, 120 }, + [52] = { 69, 14, 1657, 120 }, + [53] = { 68.6, 13.2, 1657, 120 }, + }, + }, + [181020] = { + ["coords"] = { + [1] = { 29, 62.9, 141, 120 }, + [2] = { 25.2, 62.9, 141, 120 }, + [3] = { 25.5, 62.9, 141, 120 }, + [4] = { 29.8, 61.7, 141, 120 }, + [5] = { 29.6, 59.9, 141, 120 }, + [6] = { 30.7, 59.2, 141, 120 }, + [7] = { 28.9, 58.2, 141, 120 }, + [8] = { 28.9, 51.8, 141, 120 }, + [9] = { 30.4, 51.3, 141, 120 }, + [10] = { 28.6, 49.6, 141, 120 }, + [11] = { 42, 33.6, 215, 120 }, + [12] = { 41.1, 28.5, 215, 120 }, + [13] = { 39.4, 27.2, 215, 120 }, + [14] = { 39.1, 27.1, 215, 120 }, + [15] = { 39.4, 26.9, 215, 120 }, + [16] = { 39.1, 26.8, 215, 120 }, + [17] = { 40.8, 26.3, 215, 120 }, + [18] = { 39.5, 25.5, 215, 120 }, + [19] = { 39.8, 23.7, 215, 120 }, + [20] = { 44.9, 22.9, 215, 120 }, + [21] = { 55.5, 76.6, 1519, 120 }, + [22] = { 57.9, 73.1, 1519, 120 }, + [23] = { 61.6, 71.3, 1519, 120 }, + [24] = { 52.6, 70.4, 1519, 120 }, + [25] = { 61.4, 70.4, 1519, 120 }, + [26] = { 49.2, 69.9, 1519, 120 }, + [27] = { 61.5, 69.7, 1519, 120 }, + [28] = { 43.5, 67, 1519, 120 }, + [29] = { 59.1, 64.5, 1519, 120 }, + [30] = { 65.8, 64.3, 1519, 120 }, + [31] = { 44.8, 63.9, 1519, 120 }, + [32] = { 69.9, 62.5, 1519, 120 }, + [33] = { 56.5, 57.8, 1519, 120 }, + [34] = { 50.5, 57, 1519, 120 }, + [35] = { 70.1, 53.3, 1519, 120 }, + [36] = { 58.5, 51.2, 1519, 120 }, + [37] = { 68.8, 44.5, 1519, 120 }, + [38] = { 59.6, 40.8, 1519, 120 }, + [39] = { 59.9, 82.5, 1638, 120 }, + [40] = { 55.5, 57.3, 1638, 120 }, + [41] = { 47.1, 51, 1638, 120 }, + [42] = { 45.7, 50.4, 1638, 120 }, + [43] = { 47.4, 49.3, 1638, 120 }, + [44] = { 46, 48.8, 1638, 120 }, + [45] = { 54.2, 46.7, 1638, 120 }, + [46] = { 47.8, 42.6, 1638, 120 }, + [47] = { 49, 33.9, 1638, 120 }, + [48] = { 74.4, 29.8, 1638, 120 }, + [49] = { 56.6, 76.9, 1657, 120 }, + [50] = { 38.4, 76.8, 1657, 120 }, + [51] = { 39.7, 76.7, 1657, 120 }, + [52] = { 60.8, 70.9, 1657, 120 }, + [53] = { 59.4, 62.3, 1657, 120 }, + [54] = { 64.8, 59, 1657, 120 }, + [55] = { 56.1, 54, 1657, 120 }, + [56] = { 56.1, 23.5, 1657, 120 }, + [57] = { 63.6, 20.9, 1657, 120 }, + [58] = { 54.8, 12.8, 1657, 120 }, + [59] = { 48.5, 99.3, 5581, 120 }, + }, + }, + [181022] = { + ["coords"] = { + [1] = { 64.8, 37.6, 1519, 120 }, + [2] = { 59.5, 44.4, 1637, 120 }, + [3] = { 51.3, 97.5, 5581, 120 }, + }, + }, + [181025] = { + ["coords"] = { + [1] = { 32.2, 49.5, 12, 120 }, + [2] = { 8.5, 61.8, 28, 120 }, + [3] = { 55.5, 71.1, 85, 120 }, + [4] = { 55.4, 70.9, 85, 120 }, + [5] = { 61.9, 68.2, 85, 120 }, + [6] = { 74.6, 14, 130, 120 }, + [7] = { 73.9, 13.7, 130, 120 }, + [8] = { 74.8, 13, 130, 120 }, + [9] = { 74.1, 12.7, 130, 120 }, + [10] = { 25.2, 64.1, 141, 120 }, + [11] = { 25.5, 64.1, 141, 120 }, + [12] = { 25.2, 63.9, 141, 120 }, + [13] = { 25.5, 63.9, 141, 120 }, + [14] = { 29.6, 56.7, 141, 120 }, + [15] = { 29.6, 54.1, 141, 120 }, + [16] = { 42, 27.6, 215, 120 }, + [17] = { 42.3, 27.5, 215, 120 }, + [18] = { 42.2, 27.3, 215, 120 }, + [19] = { 42, 27.1, 215, 120 }, + [20] = { 58.1, 94.1, 1497, 120 }, + [21] = { 55.1, 92.9, 1497, 120 }, + [22] = { 58.9, 89.8, 1497, 120 }, + [23] = { 55.9, 88.6, 1497, 120 }, + [24] = { 65.9, 73.4, 1497, 120 }, + [25] = { 85.5, 44.3, 1497, 120 }, + [26] = { 36.3, 28.4, 1497, 120 }, + [27] = { 35.6, 27.3, 1497, 120 }, + [28] = { 66.1, 24.8, 1497, 120 }, + [29] = { 66.2, 14.8, 1497, 120 }, + [30] = { 34.1, 82.3, 1537, 120 }, + [31] = { 28.4, 76.2, 1537, 120 }, + [32] = { 58, 74, 1537, 120 }, + [33] = { 62.3, 68.7, 1537, 120 }, + [34] = { 23.9, 68.1, 1537, 120 }, + [35] = { 21, 58.5, 1537, 120 }, + [36] = { 45.2, 49.9, 1537, 120 }, + [37] = { 44.3, 48.5, 1537, 120 }, + [38] = { 66, 28.8, 1537, 120 }, + [39] = { 31, 25, 1537, 120 }, + [40] = { 62.2, 21.9, 1537, 120 }, + [41] = { 35.3, 19.6, 1537, 120 }, + [42] = { 31.8, 38.9, 1637, 120 }, + [43] = { 40.8, 38.2, 1637, 120 }, + [44] = { 31.7, 36.8, 1637, 120 }, + [45] = { 40.7, 35.6, 1637, 120 }, + [46] = { 59.9, 53.1, 1638, 120 }, + [47] = { 61.4, 52.2, 1638, 120 }, + [48] = { 61.2, 51.3, 1638, 120 }, + [49] = { 60.1, 50.2, 1638, 120 }, + [50] = { 38.5, 82.6, 1657, 120 }, + [51] = { 39.9, 82.3, 1657, 120 }, + [52] = { 38.4, 81.4, 1657, 120 }, + [53] = { 39.7, 81.4, 1657, 120 }, + [54] = { 59.7, 47, 1657, 120 }, + [55] = { 59.5, 34.4, 1657, 120 }, + [56] = { 60, 97.7, 5581, 120 }, + [57] = { 59.8, 97.2, 5581, 120 }, + }, + }, + [181027] = { + ["coords"] = { + [1] = { 41.6, 10.1, 14, 120 }, + [2] = { 42.2, 9.9, 14, 120 }, + [3] = { 41.9, 9.1, 14, 120 }, + [4] = { 42.4, 8.6, 14, 120 }, + [5] = { 42.3, 8.2, 14, 120 }, + [6] = { 41.8, 8, 14, 120 }, + [7] = { 7.6, 63.3, 28, 120 }, + [8] = { 7.8, 61.8, 28, 120 }, + [9] = { 60.9, 69.4, 85, 120 }, + [10] = { 23.5, 63.2, 141, 120 }, + [11] = { 23.7, 62.4, 141, 120 }, + [12] = { 22.9, 62.3, 141, 120 }, + [13] = { 24.1, 62.1, 141, 120 }, + [14] = { 26.3, 61.3, 141, 120 }, + [15] = { 24.2, 61.2, 141, 120 }, + [16] = { 28, 60.4, 141, 120 }, + [17] = { 22.9, 60.3, 141, 120 }, + [18] = { 24.2, 60.3, 141, 120 }, + [19] = { 23.5, 60.3, 141, 120 }, + [20] = { 25.5, 60.1, 141, 120 }, + [21] = { 26.7, 60.1, 141, 120 }, + [22] = { 26.3, 60.1, 141, 120 }, + [23] = { 24.7, 59.4, 141, 120 }, + [24] = { 23.6, 59.4, 141, 120 }, + [25] = { 26.1, 59.4, 141, 120 }, + [26] = { 25.5, 59.4, 141, 120 }, + [27] = { 26.8, 59.3, 141, 120 }, + [28] = { 28, 59.3, 141, 120 }, + [29] = { 22.8, 59.2, 141, 120 }, + [30] = { 27.5, 59.2, 141, 120 }, + [31] = { 26.2, 58.4, 141, 120 }, + [32] = { 27.4, 58.4, 141, 120 }, + [33] = { 25.5, 58.3, 141, 120 }, + [34] = { 22.8, 58.3, 141, 120 }, + [35] = { 24, 58.2, 141, 120 }, + [36] = { 23.6, 58.2, 141, 120 }, + [37] = { 23.6, 57.5, 141, 120 }, + [38] = { 22.8, 57.5, 141, 120 }, + [39] = { 25.5, 57.4, 141, 120 }, + [40] = { 27.6, 57.3, 141, 120 }, + [41] = { 24.9, 57.3, 141, 120 }, + [42] = { 27.9, 57.2, 141, 120 }, + [43] = { 24.1, 56.6, 141, 120 }, + [44] = { 26.2, 56.4, 141, 120 }, + [45] = { 27.5, 56.4, 141, 120 }, + [46] = { 28, 56.3, 141, 120 }, + [47] = { 26.8, 56.2, 141, 120 }, + [48] = { 27, 55.4, 141, 120 }, + [49] = { 28.2, 55.4, 141, 120 }, + [50] = { 28.1, 54.5, 141, 120 }, + [51] = { 26.3, 54.4, 141, 120 }, + [52] = { 24.2, 54.3, 141, 120 }, + [53] = { 26.8, 54.3, 141, 120 }, + [54] = { 24.7, 54.2, 141, 120 }, + [55] = { 27.4, 54.2, 141, 120 }, + [56] = { 27.8, 53.5, 141, 120 }, + [57] = { 24.8, 53.5, 141, 120 }, + [58] = { 25.4, 53.5, 141, 120 }, + [59] = { 24.2, 53.5, 141, 120 }, + [60] = { 23.6, 53.4, 141, 120 }, + [61] = { 22.9, 53.4, 141, 120 }, + [62] = { 26.6, 53.3, 141, 120 }, + [63] = { 28.7, 53.3, 141, 120 }, + [64] = { 24.9, 52.8, 141, 120 }, + [65] = { 24.2, 52.8, 141, 120 }, + [66] = { 23.6, 52.8, 141, 120 }, + [67] = { 28.2, 52.7, 141, 120 }, + [68] = { 25.3, 52.6, 141, 120 }, + [69] = { 26.6, 52.5, 141, 120 }, + [70] = { 27.3, 52.3, 141, 120 }, + [71] = { 37.9, 29, 215, 120 }, + [72] = { 38, 28.9, 215, 120 }, + [73] = { 37.9, 28.7, 215, 120 }, + [74] = { 65.8, 68.7, 1497, 120 }, + [75] = { 70, 68, 1497, 120 }, + [76] = { 61.3, 67.8, 1497, 120 }, + [77] = { 74.3, 65.5, 1497, 120 }, + [78] = { 57.7, 65.4, 1497, 120 }, + [79] = { 77.7, 61.9, 1497, 120 }, + [80] = { 54.3, 61.4, 1497, 120 }, + [81] = { 80.1, 56.6, 1497, 120 }, + [82] = { 51.5, 55.7, 1497, 120 }, + [83] = { 81.7, 50.7, 1497, 120 }, + [84] = { 50, 49.9, 1497, 120 }, + [85] = { 69.3, 46.3, 1497, 120 }, + [86] = { 62.8, 46.1, 1497, 120 }, + [87] = { 82.4, 44.1, 1497, 120 }, + [88] = { 49.6, 43.9, 1497, 120 }, + [89] = { 69.3, 41.9, 1497, 120 }, + [90] = { 62.9, 41.6, 1497, 120 }, + [91] = { 81.5, 38.1, 1497, 120 }, + [92] = { 50.4, 37.7, 1497, 120 }, + [93] = { 80.5, 32.2, 1497, 120 }, + [94] = { 52.4, 30.8, 1497, 120 }, + [95] = { 78, 27, 1497, 120 }, + [96] = { 56, 24.5, 1497, 120 }, + [97] = { 74.3, 22.8, 1497, 120 }, + [98] = { 70.3, 20.3, 1497, 120 }, + [99] = { 61.8, 20.3, 1497, 120 }, + [100] = { 66, 19.6, 1497, 120 }, + [101] = { 60.3, 47, 1519, 120 }, + [102] = { 60.7, 46.5, 1519, 120 }, + [103] = { 61.1, 46, 1519, 120 }, + [104] = { 61.5, 45.6, 1519, 120 }, + [105] = { 59.6, 45.5, 1519, 120 }, + [106] = { 60, 45.2, 1519, 120 }, + [107] = { 60.4, 44.7, 1519, 120 }, + [108] = { 59.8, 44.3, 1519, 120 }, + [109] = { 60.8, 44.3, 1519, 120 }, + [110] = { 59.4, 43.9, 1519, 120 }, + [111] = { 58.8, 42.9, 1519, 120 }, + [112] = { 58.3, 41.9, 1519, 120 }, + [113] = { 34.5, 87.9, 1637, 120 }, + [114] = { 36.6, 87.1, 1637, 120 }, + [115] = { 35.4, 83.9, 1637, 120 }, + [116] = { 37.3, 82.1, 1637, 120 }, + [117] = { 36.9, 80.6, 1637, 120 }, + [118] = { 35.2, 79.8, 1637, 120 }, + [119] = { 68.8, 33.4, 1637, 120 }, + [120] = { 70.2, 32.8, 1637, 120 }, + [121] = { 67.3, 30.6, 1637, 120 }, + [122] = { 70.8, 30, 1637, 120 }, + [123] = { 39.8, 59.8, 1638, 120 }, + [124] = { 40.4, 59.1, 1638, 120 }, + [125] = { 39.8, 58.5, 1638, 120 }, + [126] = { 30.1, 78.2, 1657, 120 }, + [127] = { 31.2, 74.4, 1657, 120 }, + [128] = { 27.2, 74, 1657, 120 }, + [129] = { 33.2, 73.1, 1657, 120 }, + [130] = { 44, 69.1, 1657, 120 }, + [131] = { 33.4, 68.6, 1657, 120 }, + [132] = { 52.1, 64.6, 1657, 120 }, + [133] = { 27.3, 64.3, 1657, 120 }, + [134] = { 33.6, 64.2, 1657, 120 }, + [135] = { 30.4, 64.1, 1657, 120 }, + [136] = { 39.9, 63.3, 1657, 120 }, + [137] = { 45.9, 63.2, 1657, 120 }, + [138] = { 43.9, 63.2, 1657, 120 }, + [139] = { 36.2, 60.1, 1657, 120 }, + [140] = { 30.8, 60, 1657, 120 }, + [141] = { 42.8, 59.8, 1657, 120 }, + [142] = { 39.9, 59.7, 1657, 120 }, + [143] = { 46.1, 59.6, 1657, 120 }, + [144] = { 51.7, 59.4, 1657, 120 }, + [145] = { 27, 59.1, 1657, 120 }, + [146] = { 49.3, 58.8, 1657, 120 }, + [147] = { 43.4, 55.3, 1657, 120 }, + [148] = { 49.1, 55.1, 1657, 120 }, + [149] = { 39.8, 54.6, 1657, 120 }, + [150] = { 27.1, 54.4, 1657, 120 }, + [151] = { 32.5, 54.3, 1657, 120 }, + [152] = { 30.7, 54.2, 1657, 120 }, + [153] = { 30.9, 50.8, 1657, 120 }, + [154] = { 27, 50.7, 1657, 120 }, + [155] = { 39.8, 50.1, 1657, 120 }, + [156] = { 50, 49.9, 1657, 120 }, + [157] = { 36.9, 49.6, 1657, 120 }, + [158] = { 51.6, 49.5, 1657, 120 }, + [159] = { 33, 46.4, 1657, 120 }, + [160] = { 43.2, 45.7, 1657, 120 }, + [161] = { 49.4, 45.6, 1657, 120 }, + [162] = { 52.1, 44.9, 1657, 120 }, + [163] = { 46.1, 44.7, 1657, 120 }, + [164] = { 46.9, 40.7, 1657, 120 }, + [165] = { 53, 40.6, 1657, 120 }, + [166] = { 52.4, 36.2, 1657, 120 }, + [167] = { 43.5, 35.8, 1657, 120 }, + [168] = { 33.7, 35.5, 1657, 120 }, + [169] = { 46.2, 35.4, 1657, 120 }, + [170] = { 36.1, 35.2, 1657, 120 }, + [171] = { 49, 34.8, 1657, 120 }, + [172] = { 51, 31.6, 1657, 120 }, + [173] = { 36.7, 31.4, 1657, 120 }, + [174] = { 39.3, 31.4, 1657, 120 }, + [175] = { 33.6, 31.4, 1657, 120 }, + [176] = { 30.9, 31.3, 1657, 120 }, + [177] = { 27.3, 31, 1657, 120 }, + [178] = { 45.1, 30.8, 1657, 120 }, + [179] = { 55.5, 30.5, 1657, 120 }, + [180] = { 37, 28.1, 1657, 120 }, + [181] = { 33.6, 28.1, 1657, 120 }, + [182] = { 30.6, 28.1, 1657, 120 }, + [183] = { 52.7, 27.5, 1657, 120 }, + [184] = { 39.1, 27, 1657, 120 }, + [185] = { 45.3, 26.6, 1657, 120 }, + [186] = { 48.6, 25.8, 1657, 120 }, + [187] = { 47.7, 99.9, 5581, 120 }, + }, + }, + [181029] = { + ["coords"] = { + [1] = { 43.4, 70.6, 12, 180 }, + }, + }, + [181046] = { + ["coords"] = { + [1] = { 52.2, 55.5, 1583, 180 }, + }, + }, + [181048] = { + ["coords"] = { + [1] = { 35, 93.7, 2017, 25 }, + }, + }, + [181050] = { + ["coords"] = { + [1] = { 61.5, 43, 1583, 180 }, + }, + }, + [181052] = { + ["coords"] = { + [1] = { 52.2, 55.5, 1583, 25 }, + [2] = { 35.1, 93.7, 2017, 25 }, + }, + }, + [181053] = { + ["coords"] = { + [1] = { 75.8, 21.8, 15, 300 }, + [2] = { 76.9, 19.8, 15, 300 }, + [3] = { 75.1, 15, 15, 300 }, + }, + }, + [181055] = { + ["coords"] = { + [1] = { 30.3, 56.7, 141, 120 }, + [2] = { 30.3, 56.3, 141, 120 }, + [3] = { 30.3, 56, 141, 120 }, + [4] = { 30.3, 54.7, 141, 120 }, + [5] = { 30.3, 54.4, 141, 120 }, + [6] = { 30.3, 54.1, 141, 120 }, + [7] = { 31.4, 50.4, 141, 120 }, + [8] = { 31.2, 50.1, 141, 120 }, + [9] = { 31, 49.7, 141, 120 }, + [10] = { 71, 74.8, 1519, 120 }, + [11] = { 72.2, 73.4, 1519, 120 }, + [12] = { 30.5, 73.3, 1637, 120 }, + [13] = { 40.5, 36.9, 1637, 120 }, + [14] = { 76.4, 33, 1637, 120 }, + [15] = { 75, 15.7, 1637, 120 }, + [16] = { 63.1, 46.8, 1657, 120 }, + [17] = { 63, 45.2, 1657, 120 }, + [18] = { 63, 43.6, 1657, 120 }, + [19] = { 62.8, 37.5, 1657, 120 }, + [20] = { 62.9, 35.8, 1657, 120 }, + [21] = { 62.8, 34.2, 1657, 120 }, + [22] = { 68.2, 16.9, 1657, 120 }, + [23] = { 67.4, 15.2, 1657, 120 }, + [24] = { 66.6, 13.3, 1657, 120 }, + }, + }, + [181056] = { + ["coords"] = { + [1] = { 39.9, 25.9, 139, 900 }, + [2] = { 88.4, 88.3, 5225, 900 }, + }, + }, + [181059] = { + ["coords"] = { + [1] = { 53.6, 72.3, 1584, 180 }, + }, + }, + [181060] = { + ["coords"] = { + [1] = { 52, 29.7, 17, 25 }, + [2] = { 25.4, 56.8, 141, 120 }, + [3] = { 25, 56.7, 141, 120 }, + [4] = { 25.6, 56.7, 141, 120 }, + [5] = { 24.9, 56.6, 141, 120 }, + [6] = { 24.8, 56.4, 141, 120 }, + [7] = { 25.8, 56.4, 141, 120 }, + [8] = { 25.9, 56.2, 141, 120 }, + [9] = { 24.8, 56.2, 141, 120 }, + [10] = { 26, 56.1, 141, 120 }, + [11] = { 26.1, 56, 141, 120 }, + [12] = { 24.7, 55.9, 141, 120 }, + [13] = { 26.1, 55.8, 141, 120 }, + [14] = { 26.2, 55.7, 141, 120 }, + [15] = { 24.7, 55.3, 141, 120 }, + [16] = { 26.1, 55.1, 141, 120 }, + [17] = { 24.8, 55, 141, 120 }, + [18] = { 25.9, 54.9, 141, 120 }, + [19] = { 25.8, 54.8, 141, 120 }, + [20] = { 24.8, 54.8, 141, 120 }, + [21] = { 25.7, 54.7, 141, 120 }, + [22] = { 24.9, 54.6, 141, 120 }, + [23] = { 25, 54.5, 141, 120 }, + [24] = { 25.7, 54.4, 141, 120 }, + [25] = { 25.2, 54.3, 141, 120 }, + [26] = { 25.3, 54.2, 141, 120 }, + [27] = { 31.3, 50.2, 141, 120 }, + [28] = { 31.2, 50, 141, 120 }, + [29] = { 31.2, 49.9, 141, 120 }, + [30] = { 42, 33.1, 215, 120 }, + [31] = { 37.9, 29.8, 215, 120 }, + [32] = { 38, 29.8, 215, 120 }, + [33] = { 37.7, 29.8, 215, 120 }, + [34] = { 37.6, 29.8, 215, 120 }, + [35] = { 37.3, 29.7, 215, 120 }, + [36] = { 38.3, 29.4, 215, 120 }, + [37] = { 38.3, 29.3, 215, 120 }, + [38] = { 38.9, 28.7, 215, 120 }, + [39] = { 38.9, 28.6, 215, 120 }, + [40] = { 37.2, 28.4, 215, 120 }, + [41] = { 37.2, 28.3, 215, 120 }, + [42] = { 41, 28.1, 215, 120 }, + [43] = { 38.2, 28.1, 215, 120 }, + [44] = { 40.9, 28.1, 215, 120 }, + [45] = { 40.7, 28, 215, 120 }, + [46] = { 39, 27.9, 215, 120 }, + [47] = { 38.3, 27.8, 215, 120 }, + [48] = { 39, 27.8, 215, 120 }, + [49] = { 40.1, 27.5, 215, 120 }, + [50] = { 40, 26.9, 215, 120 }, + [51] = { 40.6, 26.7, 215, 120 }, + [52] = { 40.9, 26.6, 215, 120 }, + [53] = { 41, 26.6, 215, 120 }, + [54] = { 41.3, 26.3, 215, 120 }, + [55] = { 39.3, 26, 215, 120 }, + [56] = { 39.3, 25.9, 215, 120 }, + [57] = { 39.3, 25.6, 215, 120 }, + [58] = { 39.3, 25.5, 215, 120 }, + [59] = { 38.9, 25.3, 215, 120 }, + [60] = { 39.1, 24.7, 215, 120 }, + [61] = { 39.7, 24.6, 215, 120 }, + [62] = { 39.8, 24.6, 215, 120 }, + [63] = { 39.4, 24.3, 215, 120 }, + [64] = { 39.5, 24.2, 215, 120 }, + [65] = { 39.9, 23.9, 215, 120 }, + [66] = { 39.8, 23.9, 215, 120 }, + [67] = { 44.6, 23.2, 215, 120 }, + [68] = { 44.6, 23.1, 215, 120 }, + [69] = { 44.1, 22.5, 215, 120 }, + [70] = { 44, 22.4, 215, 120 }, + [71] = { 35.4, 21.3, 215, 120 }, + [72] = { 35.4, 21.2, 215, 120 }, + [73] = { 35.8, 21.1, 215, 120 }, + [74] = { 35.7, 21, 215, 120 }, + [75] = { 89, 48.5, 405, 120 }, + [76] = { 89, 48.4, 405, 120 }, + [77] = { 66.9, 50.5, 1497, 120 }, + [78] = { 65, 50.5, 1497, 120 }, + [79] = { 67.3, 50, 1497, 120 }, + [80] = { 64.6, 50, 1497, 120 }, + [81] = { 67.9, 49.6, 1497, 120 }, + [82] = { 64, 49.5, 1497, 120 }, + [83] = { 68.4, 49.4, 1497, 120 }, + [84] = { 63.5, 49.3, 1497, 120 }, + [85] = { 68.6, 48.8, 1497, 120 }, + [86] = { 63.2, 48.7, 1497, 120 }, + [87] = { 69.1, 48.1, 1497, 120 }, + [88] = { 62.8, 48, 1497, 120 }, + [89] = { 69.5, 47.7, 1497, 120 }, + [90] = { 62.4, 47.6, 1497, 120 }, + [91] = { 69.6, 46.9, 1497, 120 }, + [92] = { 62.3, 46.8, 1497, 120 }, + [93] = { 66.5, 46.7, 1497, 120 }, + [94] = { 65.4, 46.7, 1497, 120 }, + [95] = { 69.9, 46, 1497, 120 }, + [96] = { 62, 45.9, 1497, 120 }, + [97] = { 70.2, 45.5, 1497, 120 }, + [98] = { 61.7, 45.3, 1497, 120 }, + [99] = { 67.7, 44.9, 1497, 120 }, + [100] = { 64.2, 44.9, 1497, 120 }, + [101] = { 67.8, 43.3, 1497, 120 }, + [102] = { 64.3, 43.2, 1497, 120 }, + [103] = { 70.3, 42.9, 1497, 120 }, + [104] = { 61.7, 42.7, 1497, 120 }, + [105] = { 69.9, 42.3, 1497, 120 }, + [106] = { 62, 42.2, 1497, 120 }, + [107] = { 69.7, 41.4, 1497, 120 }, + [108] = { 62.3, 41.3, 1497, 120 }, + [109] = { 69.6, 40.6, 1497, 120 }, + [110] = { 62.4, 40.5, 1497, 120 }, + [111] = { 69.1, 40.2, 1497, 120 }, + [112] = { 62.8, 40.1, 1497, 120 }, + [113] = { 68.7, 39.5, 1497, 120 }, + [114] = { 63.3, 39.4, 1497, 120 }, + [115] = { 68.5, 38.9, 1497, 120 }, + [116] = { 63.6, 38.8, 1497, 120 }, + [117] = { 67.9, 38.7, 1497, 120 }, + [118] = { 64, 38.6, 1497, 120 }, + [119] = { 67.3, 38.2, 1497, 120 }, + [120] = { 64.7, 38.1, 1497, 120 }, + [121] = { 66.5, 37.8, 1497, 120 }, + [122] = { 65.5, 37.8, 1497, 120 }, + [123] = { 67, 37.7, 1497, 120 }, + [124] = { 65, 37.7, 1497, 120 }, + [125] = { 63, 81, 1519, 120 }, + [126] = { 62.9, 80.9, 1519, 120 }, + [127] = { 64.3, 79.9, 1519, 120 }, + [128] = { 62.5, 79.8, 1519, 120 }, + [129] = { 64.3, 79.8, 1519, 120 }, + [130] = { 62.5, 79.7, 1519, 120 }, + [131] = { 63.9, 78.7, 1519, 120 }, + [132] = { 63.9, 78.6, 1519, 120 }, + [133] = { 61.8, 74.9, 1519, 120 }, + [134] = { 61.9, 74.9, 1519, 120 }, + [135] = { 61.7, 74.8, 1519, 120 }, + [136] = { 61.9, 74.8, 1519, 120 }, + [137] = { 61.8, 74.7, 1519, 120 }, + [138] = { 62, 74.7, 1519, 120 }, + [139] = { 61.6, 74.7, 1519, 120 }, + [140] = { 61.9, 74.7, 1519, 120 }, + [141] = { 61.8, 74.6, 1519, 120 }, + [142] = { 61.9, 74.6, 1519, 120 }, + [143] = { 61.7, 74.6, 1519, 120 }, + [144] = { 62, 74.6, 1519, 120 }, + [145] = { 61.6, 74.6, 1519, 120 }, + [146] = { 61.7, 74.5, 1519, 120 }, + [147] = { 61.8, 74.5, 1519, 120 }, + [148] = { 61.9, 74.5, 1519, 120 }, + [149] = { 62, 74.5, 1519, 120 }, + [150] = { 61.6, 74.5, 1519, 120 }, + [151] = { 61.9, 74.4, 1519, 120 }, + [152] = { 61.8, 74.4, 1519, 120 }, + [153] = { 62, 74.4, 1519, 120 }, + [154] = { 61.7, 74.4, 1519, 120 }, + [155] = { 62, 74.3, 1519, 120 }, + [156] = { 61.7, 74.3, 1519, 120 }, + [157] = { 61.9, 74.3, 1519, 120 }, + [158] = { 61.8, 74.3, 1519, 120 }, + [159] = { 37.3, 60.5, 1537, 120 }, + [160] = { 36.9, 59.9, 1537, 120 }, + [161] = { 36.2, 58.5, 1537, 120 }, + [162] = { 35.9, 58.1, 1537, 120 }, + [163] = { 20.4, 52.2, 1537, 120 }, + [164] = { 18.5, 52, 1537, 120 }, + [165] = { 20.4, 51.9, 1537, 120 }, + [166] = { 20.3, 51.7, 1537, 120 }, + [167] = { 20.3, 51.5, 1537, 120 }, + [168] = { 20.3, 51.1, 1537, 120 }, + [169] = { 20.3, 50.9, 1537, 120 }, + [170] = { 18.4, 50.8, 1537, 120 }, + [171] = { 20.3, 50.6, 1537, 120 }, + [172] = { 20.2, 50.4, 1537, 120 }, + [173] = { 54.5, 67.8, 1637, 120 }, + [174] = { 46, 54.5, 1637, 120 }, + [175] = { 45.9, 54.3, 1637, 120 }, + [176] = { 45.7, 53.9, 1637, 120 }, + [177] = { 45.6, 53.7, 1637, 120 }, + [178] = { 45.4, 53.4, 1637, 120 }, + [179] = { 45.3, 53.2, 1637, 120 }, + [180] = { 45.2, 52.9, 1637, 120 }, + [181] = { 44.2, 51, 1637, 120 }, + [182] = { 44.1, 50.8, 1637, 120 }, + [183] = { 43.9, 50.5, 1637, 120 }, + [184] = { 43.7, 49.9, 1637, 120 }, + [185] = { 60.2, 80.1, 1638, 120 }, + [186] = { 60, 80, 1638, 120 }, + [187] = { 39.9, 64, 1638, 120 }, + [188] = { 40.1, 63.8, 1638, 120 }, + [189] = { 38.7, 63.7, 1638, 120 }, + [190] = { 38.5, 63.6, 1638, 120 }, + [191] = { 36.8, 63.3, 1638, 120 }, + [192] = { 37, 63.1, 1638, 120 }, + [193] = { 41.7, 61.6, 1638, 120 }, + [194] = { 41.8, 61.4, 1638, 120 }, + [195] = { 44.6, 58.4, 1638, 120 }, + [196] = { 44.5, 58, 1638, 120 }, + [197] = { 36.4, 56.9, 1638, 120 }, + [198] = { 36.3, 56.5, 1638, 120 }, + [199] = { 55.1, 55.5, 1638, 120 }, + [200] = { 41.6, 55.5, 1638, 120 }, + [201] = { 54.8, 55.5, 1638, 120 }, + [202] = { 41.4, 55.2, 1638, 120 }, + [203] = { 53.7, 54.9, 1638, 120 }, + [204] = { 53.5, 54.7, 1638, 120 }, + [205] = { 45.2, 54.4, 1638, 120 }, + [206] = { 41.8, 54.1, 1638, 120 }, + [207] = { 45.2, 54.1, 1638, 120 }, + [208] = { 41.7, 53.8, 1638, 120 }, + [209] = { 50.7, 52.2, 1638, 120 }, + [210] = { 50.5, 52.2, 1638, 120 }, + [211] = { 50.2, 49.3, 1638, 120 }, + [212] = { 50, 49.3, 1638, 120 }, + [213] = { 53, 48.5, 1638, 120 }, + [214] = { 53.2, 48.3, 1638, 120 }, + [215] = { 54.8, 47.9, 1638, 120 }, + [216] = { 55, 47.9, 1638, 120 }, + [217] = { 56.5, 46.6, 1638, 120 }, + [218] = { 56.7, 46.6, 1638, 120 }, + [219] = { 46.6, 44.9, 1638, 120 }, + [220] = { 46.7, 44.6, 1638, 120 }, + [221] = { 46.9, 43, 1638, 120 }, + [222] = { 46.9, 42.7, 1638, 120 }, + [223] = { 44.8, 41.7, 1638, 120 }, + [224] = { 44.6, 41.6, 1638, 120 }, + [225] = { 45.7, 38.6, 1638, 120 }, + [226] = { 45.9, 38.5, 1638, 120 }, + [227] = { 48.8, 38.1, 1638, 120 }, + [228] = { 49.1, 38, 1638, 120 }, + [229] = { 47.4, 36.5, 1638, 120 }, + [230] = { 47.6, 36.3, 1638, 120 }, + [231] = { 49.6, 34.7, 1638, 120 }, + [232] = { 49.4, 34.6, 1638, 120 }, + [233] = { 72.6, 31.1, 1638, 120 }, + [234] = { 72.6, 30.7, 1638, 120 }, + [235] = { 70.2, 27.6, 1638, 120 }, + [236] = { 69.9, 27.5, 1638, 120 }, + [237] = { 27.3, 21.9, 1638, 120 }, + [238] = { 27.5, 21.6, 1638, 120 }, + [239] = { 29.3, 20.7, 1638, 120 }, + [240] = { 29.2, 20.4, 1638, 120 }, + [241] = { 39.3, 47.2, 1657, 120 }, + [242] = { 37.7, 47, 1657, 120 }, + [243] = { 40.4, 46.8, 1657, 120 }, + [244] = { 37.2, 46.3, 1657, 120 }, + [245] = { 36.7, 45.5, 1657, 120 }, + [246] = { 41.6, 45.3, 1657, 120 }, + [247] = { 42, 44.6, 1657, 120 }, + [248] = { 36.3, 44.6, 1657, 120 }, + [249] = { 42.4, 43.9, 1657, 120 }, + [250] = { 42.6, 43.4, 1657, 120 }, + [251] = { 36, 43.1, 1657, 120 }, + [252] = { 42.9, 42.7, 1657, 120 }, + [253] = { 43.2, 42, 1657, 120 }, + [254] = { 36.1, 40.1, 1657, 120 }, + [255] = { 42.8, 39.3, 1657, 120 }, + [256] = { 36.5, 39, 1657, 120 }, + [257] = { 42.1, 38.4, 1657, 120 }, + [258] = { 41.4, 37.8, 1657, 120 }, + [259] = { 36.6, 37.6, 1657, 120 }, + [260] = { 40.8, 37.2, 1657, 120 }, + [261] = { 37, 36.8, 1657, 120 }, + [262] = { 37.4, 36.3, 1657, 120 }, + [263] = { 40.7, 35.9, 1657, 120 }, + [264] = { 38.2, 35.6, 1657, 120 }, + [265] = { 39, 34.9, 1657, 120 }, + [266] = { 67.9, 15.7, 1657, 120 }, + [267] = { 67.4, 14.5, 1657, 120 }, + [268] = { 67.2, 14.1, 1657, 120 }, + }, + }, + [181062] = { + ["coords"] = { + [1] = { 6.6, 52.5, 45, 2 }, + [2] = { 67.8, 84.1, 267, 2 }, + }, + ["fac"] = "AH", + }, + [181063] = { + ["coords"] = { + [1] = { 30.1, 60.6, 11, 120 }, + [2] = { 6.6, 52.5, 45, 7200 }, + [3] = { 67.8, 84, 267, 7200 }, + }, + }, + [181064] = { + ["coords"] = { + [1] = { 29.6, 66.4, 11, 120 }, + [2] = { 34.4, 65.4, 11, 120 }, + [3] = { 30.1, 60.6, 11, 120 }, + [4] = { 6.5, 52.4, 45, 7200 }, + [5] = { 67.8, 84, 267, 7200 }, + }, + }, + [181065] = { + ["coords"] = { + [1] = { 29.6, 66.4, 11, 120 }, + [2] = { 30.2, 60.6, 11, 120 }, + [3] = { 6.6, 52.5, 45, 7200 }, + [4] = { 67.9, 84.1, 267, 7200 }, + }, + }, + [181066] = { + ["coords"] = { + [1] = { 29.6, 66.4, 11, 120 }, + [2] = { 29.6, 66.3, 11, 120 }, + [3] = { 30.1, 60.6, 11, 120 }, + [4] = { 6.6, 52.4, 45, 7200 }, + [5] = { 67.8, 84, 267, 7200 }, + }, + }, + [181067] = { + ["coords"] = { + [1] = { 30.4, 60.5, 11, 120 }, + [2] = { 6.6, 52.5, 45, 7200 }, + [3] = { 67.8, 84.1, 267, 7200 }, + }, + }, + [181071] = { + ["coords"] = { + [1] = { 58.6, 15.1, 2017, 0 }, + }, + }, + [181072] = { + ["coords"] = { + [1] = { 58.6, 15.1, 2017, 180 }, + }, + }, + [181074] = { + ["coords"] = { + [1] = { 53.5, 71.8, 1584, 0 }, + }, + }, + [181075] = { + ["coords"] = { + [1] = { 81.5, 58.2, 139, 900 }, + [2] = { 40.8, 37.5, 4012, 900 }, + }, + }, + [181076] = { + ["coords"] = { + [1] = { 81.5, 58.2, 139, 900 }, + [2] = { 40.8, 37.4, 4012, 900 }, + }, + }, + [181077] = { + ["coords"] = { + [1] = { 67.5, 24.1, 28, 25 }, + [2] = { 22, 59.5, 45, 25 }, + [3] = { 22.4, 59.2, 45, 25 }, + [4] = { 22.4, 59, 45, 25 }, + [5] = { 81.5, 58.2, 139, 900 }, + [6] = { 7.8, 43.6, 139, 25 }, + [7] = { 76, 54.3, 1519, 25 }, + [8] = { 40.8, 37.5, 4012, 900 }, + }, + }, + [181078] = { + ["coords"] = { + [1] = { 81.4, 58.3, 139, 900 }, + [2] = { 40.8, 37.5, 4012, 900 }, + }, + }, + [181079] = { + ["coords"] = { + [1] = { 81.5, 58.2, 139, 900 }, + [2] = { 40.9, 37.4, 4012, 900 }, + }, + }, + [181080] = { + ["coords"] = { + [1] = { 81.5, 58.3, 139, 900 }, + [2] = { 40.9, 37.5, 4012, 900 }, + }, + }, + [181081] = { + ["coords"] = { + [1] = { 81.5, 58.2, 139, 900 }, + [2] = { 40.9, 37.5, 4012, 900 }, + [3] = { 40.8, 37.5, 4012, 900 }, + }, + }, + [181082] = { + ["coords"] = { + [1] = { 21.9, 58.7, 45, 25 }, + [2] = { 22.1, 58.7, 45, 25 }, + [3] = { 22, 58.6, 45, 25 }, + [4] = { 81.5, 58.2, 139, 900 }, + [5] = { 40.8, 37.5, 4012, 900 }, + }, + }, + [181085] = { + ["coords"] = { + [1] = { 61, 23.2, 2017, 604800 }, + [2] = { 69.6, 19.1, 2017, 604800 }, + [3] = { 59.3, 11.3, 2017, 604800 }, + }, + }, + [181086] = { + ["coords"] = { + [1] = { 74.3, 13.3, 130, 120 }, + [2] = { 25.3, 63.8, 141, 120 }, + [3] = { 41.9, 27.4, 215, 120 }, + [4] = { 56.6, 91.1, 1497, 120 }, + [5] = { 40.2, 55, 1537, 120 }, + [6] = { 32.7, 37.7, 1637, 120 }, + [7] = { 59.3, 51.7, 1638, 120 }, + [8] = { 39.1, 81.1, 1657, 120 }, + [9] = { 59.4, 98.1, 5581, 120 }, + }, + }, + [181087] = { + ["coords"] = { + [1] = { 74.2, 13.4, 130, 120 }, + [2] = { 74.3, 13.2, 130, 120 }, + [3] = { 74.3, 13.1, 130, 120 }, + [4] = { 74.4, 13.1, 130, 120 }, + [5] = { 25.2, 63.7, 141, 120 }, + [6] = { 25.4, 63.7, 141, 120 }, + [7] = { 25.5, 63.7, 141, 120 }, + [8] = { 25.4, 63.6, 141, 120 }, + [9] = { 25.2, 63.6, 141, 120 }, + [10] = { 41.9, 27.6, 215, 120 }, + [11] = { 41.8, 27.6, 215, 120 }, + [12] = { 41.8, 27.5, 215, 120 }, + [13] = { 41.9, 27.5, 215, 120 }, + [14] = { 41.8, 27.2, 215, 120 }, + [15] = { 41.9, 27.1, 215, 120 }, + [16] = { 42, 27, 215, 120 }, + [17] = { 56.4, 91.8, 1497, 120 }, + [18] = { 56.3, 91.7, 1497, 120 }, + [19] = { 56.3, 91.6, 1497, 120 }, + [20] = { 56.2, 91.4, 1497, 120 }, + [21] = { 56.5, 90.5, 1497, 120 }, + [22] = { 56.5, 90.4, 1497, 120 }, + [23] = { 56.6, 90.3, 1497, 120 }, + [24] = { 56.9, 90.3, 1497, 120 }, + [25] = { 56.8, 90.2, 1497, 120 }, + [26] = { 40.8, 55.2, 1537, 120 }, + [27] = { 40.7, 55.1, 1537, 120 }, + [28] = { 40.8, 54.9, 1537, 120 }, + [29] = { 40.7, 54.9, 1537, 120 }, + [30] = { 40, 54.3, 1537, 120 }, + [31] = { 39.9, 54.3, 1537, 120 }, + [32] = { 40.2, 54, 1537, 120 }, + [33] = { 40.3, 54, 1537, 120 }, + [34] = { 40.2, 53.9, 1537, 120 }, + [35] = { 32.6, 38.3, 1637, 120 }, + [36] = { 32.7, 38.3, 1637, 120 }, + [37] = { 32.8, 38.2, 1637, 120 }, + [38] = { 32.8, 38.1, 1637, 120 }, + [39] = { 32.7, 37.3, 1637, 120 }, + [40] = { 32.8, 37.3, 1637, 120 }, + [41] = { 32.9, 37.2, 1637, 120 }, + [42] = { 32.9, 37.1, 1637, 120 }, + [43] = { 32.8, 37, 1637, 120 }, + [44] = { 59.4, 53.1, 1638, 120 }, + [45] = { 59.3, 52.9, 1638, 120 }, + [46] = { 59.2, 52.6, 1638, 120 }, + [47] = { 59.3, 52.4, 1638, 120 }, + [48] = { 59.3, 51, 1638, 120 }, + [49] = { 59.3, 50.8, 1638, 120 }, + [50] = { 59.4, 50.6, 1638, 120 }, + [51] = { 59.5, 50.4, 1638, 120 }, + [52] = { 59.8, 50.2, 1638, 120 }, + [53] = { 38.5, 80.7, 1657, 120 }, + [54] = { 39.3, 80.6, 1657, 120 }, + [55] = { 38.5, 80.6, 1657, 120 }, + [56] = { 39.8, 80.6, 1657, 120 }, + [57] = { 39.4, 80.5, 1657, 120 }, + [58] = { 38.5, 80.4, 1657, 120 }, + [59] = { 39.6, 80.4, 1657, 120 }, + [60] = { 39.5, 80.4, 1657, 120 }, + [61] = { 38.6, 80.2, 1657, 120 }, + [62] = { 59.4, 98.3, 5581, 120 }, + [63] = { 59.3, 98.3, 5581, 120 }, + [64] = { 59.2, 98.1, 5581, 120 }, + [65] = { 59.3, 98.1, 5581, 120 }, + [66] = { 59.2, 98, 5581, 120 }, + [67] = { 59.2, 97.9, 5581, 120 }, + }, + }, + [181089] = { + ["coords"] = { + [1] = { 59.7, 97.7, 5581, 300 }, + }, + }, + [181094] = { + ["coords"] = { + [1] = { 61.5, 43, 1583, 25 }, + }, + }, + [181098] = { + ["coords"] = { + [1] = { 70.7, 62.8, 46, 180 }, + [2] = { 69.5, 62.4, 46, 180 }, + [3] = { 35.1, 61.9, 46, 180 }, + [4] = { 29, 61.8, 46, 180 }, + [5] = { 49.7, 61.7, 46, 180 }, + [6] = { 70.8, 59.8, 46, 180 }, + [7] = { 91.5, 57, 46, 180 }, + [8] = { 59.3, 56.8, 46, 180 }, + [9] = { 87.5, 54, 46, 180 }, + [10] = { 80.9, 52, 46, 180 }, + [11] = { 52.3, 50.6, 46, 180 }, + [12] = { 80.7, 50.6, 46, 180 }, + [13] = { 46.6, 50.5, 46, 180 }, + [14] = { 45.7, 50.1, 46, 180 }, + [15] = { 55.4, 49.2, 46, 180 }, + [16] = { 33.7, 48.1, 46, 180 }, + [17] = { 55.3, 47.9, 46, 180 }, + [18] = { 34.9, 47.7, 46, 180 }, + [19] = { 35.9, 47.1, 46, 180 }, + [20] = { 43.6, 44.9, 46, 180 }, + [21] = { 43, 44.6, 46, 180 }, + [22] = { 22, 44.2, 46, 180 }, + [23] = { 45.9, 43.8, 46, 180 }, + [24] = { 40.7, 43.7, 46, 180 }, + [25] = { 44.5, 43.5, 46, 180 }, + [26] = { 46.4, 43.4, 46, 180 }, + [27] = { 28.3, 43.2, 46, 180 }, + [28] = { 21.3, 43.2, 46, 180 }, + [29] = { 50, 43, 46, 180 }, + [30] = { 69.7, 42, 46, 180 }, + [31] = { 76.1, 41.9, 46, 180 }, + [32] = { 43.3, 41.8, 46, 180 }, + [33] = { 60.1, 40.4, 46, 180 }, + [34] = { 64.9, 39.6, 46, 180 }, + [35] = { 61.3, 39.5, 46, 180 }, + [36] = { 63.4, 38.2, 46, 180 }, + [37] = { 77, 38.2, 46, 180 }, + [38] = { 79.4, 37.8, 46, 180 }, + [39] = { 63.8, 37.5, 46, 180 }, + [40] = { 77.6, 36.9, 46, 180 }, + [41] = { 80.7, 36.4, 46, 180 }, + [42] = { 50.3, 35.2, 46, 180 }, + [43] = { 68.3, 33.8, 46, 180 }, + [44] = { 64.7, 33.6, 46, 180 }, + [45] = { 62.3, 32.5, 46, 180 }, + [46] = { 73.1, 32.3, 46, 180 }, + [47] = { 67, 31.9, 46, 180 }, + [48] = { 65.5, 31.7, 46, 180 }, + [49] = { 68.2, 31.3, 46, 180 }, + [50] = { 62.1, 31, 46, 180 }, + [51] = { 71.9, 29.6, 46, 180 }, + [52] = { 71.1, 26.3, 46, 180 }, + [53] = { 62.8, 25.3, 46, 180 }, + [54] = { 64.8, 25, 46, 180 }, + [55] = { 97.8, 72.7, 5581, 180 }, + [56] = { 97.1, 71.7, 5581, 180 }, + }, + }, + [181103] = { + ["coords"] = { + [1] = { 81.2, 59, 139, 900 }, + [2] = { 40.4, 38.4, 4012, 900 }, + }, + }, + [181104] = { + ["coords"] = { + [1] = { 81.2, 59, 139, 900 }, + [2] = { 40.4, 38.4, 4012, 900 }, + }, + }, + [181107] = { + ["coords"] = {}, + ["fac"] = "H", + }, + [181109] = { + ["coords"] = { + [1] = { 44.8, 72.1, 2597, 300 }, + [2] = { 43.6, 72, 2597, 300 }, + [3] = { 44.2, 70.5, 2597, 300 }, + [4] = { 42.9, 69.5, 2597, 300 }, + [5] = { 52.5, 9.5, 2597, 300 }, + [6] = { 50.7, 8.6, 2597, 300 }, + [7] = { 49.8, 4.3, 2597, 300 }, + }, + }, + [181119] = { + ["coords"] = { + [1] = { 32.2, 81.1, 3456, 180 }, + }, + }, + [181120] = { + ["coords"] = { + [1] = { 36.4, 24.1, 3456, 180 }, + }, + }, + [181121] = { + ["coords"] = { + [1] = { 32.2, 17.8, 3456, 180 }, + }, + }, + [181123] = { + ["coords"] = { + [1] = { 44.1, 25.7, 3456, 180 }, + }, + }, + [181124] = { + ["coords"] = { + [1] = { 50.7, 68.7, 3456, 180 }, + }, + }, + [181125] = { + ["coords"] = { + [1] = { 48.3, 77.6, 3456, 180 }, + }, + }, + [181126] = { + ["coords"] = { + [1] = { 55.3, 34.4, 3456, 180 }, + }, + }, + [181130] = { + ["coords"] = { + [1] = { 33.9, 48.2, 10, 300 }, + [2] = { 49.2, 60.4, 11, 300 }, + [3] = { 37.7, 72, 14, 300 }, + [4] = { 42.6, 73.1, 15, 300 }, + [5] = { 29.3, 70.5, 16, 300 }, + [6] = { 64.9, 34.7, 17, 300 }, + [7] = { 44.5, 98.6, 28, 300 }, + [8] = { 80.6, 61.4, 28, 300 }, + [9] = { 29, 45.2, 28, 300 }, + [10] = { 34.3, 21, 28, 300 }, + [11] = { 37.6, 66.1, 33, 300 }, + [12] = { 81.5, 51.4, 36, 300 }, + [13] = { 60.6, 76.6, 38, 300 }, + [14] = { 19.4, 65.7, 46, 300 }, + [15] = { 22, 68.5, 85, 300 }, + [16] = { 85.5, 58.7, 85, 300 }, + [17] = { 90.5, 35.6, 85, 300 }, + [18] = { 68.2, 81.7, 130, 300 }, + [19] = { 22.3, 84.9, 139, 300 }, + [20] = { 81, 59.6, 139, 900 }, + [21] = { 42.8, 51.8, 267, 300 }, + [22] = { 15, 47.9, 267, 300 }, + [23] = { 94.3, 23.3, 331, 300 }, + [24] = { 43.6, 17, 357, 25 }, + [25] = { 82.5, 55.1, 400, 25 }, + [26] = { 30.9, 90.5, 405, 300 }, + [27] = { 49.4, 40, 408, 300 }, + [28] = { 58.4, 22.2, 440, 300 }, + [29] = { 38.4, 12.8, 490, 300 }, + [30] = { 35.4, 91.9, 3478, 25 }, + [31] = { 40.3, 39.2, 4012, 900 }, + [32] = { 46, 43.6, 5179, 300 }, + [33] = { 97, 14.2, 5179, 300 }, + [34] = { 72.7, 10.8, 5179, 300 }, + [35] = { 95.4, 92.1, 5581, 300 }, + [36] = { 29.6, 83.5, 5602, 300 }, + [37] = { 6.5, 25.4, 5602, 300 }, + }, + }, + [181131] = { + ["coords"] = { + [1] = { 33.5, 11.2, 17, 300 }, + [2] = { 80.9, 59.5, 139, 900 }, + [3] = { 78.4, 64.4, 406, 300 }, + [4] = { 40.1, 39, 4012, 900 }, + }, + }, + [181136] = { + ["coords"] = { + [1] = { 60.9, 44, 4, 120 }, + [2] = { 47, 38.2, 4, 120 }, + [3] = { 57, 35, 4, 120 }, + [4] = { 63, 30.6, 4, 120 }, + [5] = { 52.1, 27.5, 4, 120 }, + [6] = { 46, 20.1, 4, 120 }, + [7] = { 18.5, 66.7, 16, 120 }, + [8] = { 24.4, 59.3, 16, 120 }, + [9] = { 45.1, 58.4, 16, 120 }, + [10] = { 17.3, 54, 16, 120 }, + [11] = { 48, 53.9, 16, 120 }, + [12] = { 44.5, 49.5, 16, 120 }, + [13] = { 80.4, 61.6, 28, 120 }, + [14] = { 75.8, 54.5, 28, 120 }, + [15] = { 33.4, 70.1, 46, 120 }, + [16] = { 23.8, 68.6, 46, 120 }, + [17] = { 24.4, 51.3, 46, 120 }, + [18] = { 74, 48.7, 46, 120 }, + [19] = { 67.1, 35.9, 46, 120 }, + [20] = { 79.5, 29.3, 46, 120 }, + [21] = { 22.1, 85.2, 139, 120 }, + [22] = { 17, 77.3, 139, 120 }, + [23] = { 66.5, 72.1, 139, 120 }, + [24] = { 23.7, 71.4, 139, 120 }, + [25] = { 75.9, 71.2, 139, 120 }, + [26] = { 71, 57.5, 139, 120 }, + [27] = { 34.5, 64.3, 440, 120 }, + [28] = { 30.1, 57.8, 440, 120 }, + [29] = { 36, 57.8, 440, 120 }, + [30] = { 52.3, 56.5, 440, 120 }, + [31] = { 57.7, 53.5, 440, 120 }, + [32] = { 52, 49.9, 440, 120 }, + [33] = { 50.9, 38.2, 440, 120 }, + [34] = { 54.4, 31.6, 440, 120 }, + [35] = { 48.2, 29.8, 440, 120 }, + [36] = { 62.4, 52.4, 618, 120 }, + [37] = { 66.5, 52, 618, 120 }, + [38] = { 62.9, 47.5, 618, 120 }, + [39] = { 44.6, 42, 618, 120 }, + [40] = { 42.8, 37.8, 618, 120 }, + [41] = { 46, 37, 618, 120 }, + [42] = { 50.2, 17.9, 618, 120 }, + [43] = { 55, 15, 618, 120 }, + [44] = { 50.1, 12.5, 618, 120 }, + [45] = { 9.7, 51, 1941, 120 }, + [46] = { 37.6, 35, 1941, 120 }, + [47] = { 8, 16.5, 1941, 120 }, + [48] = { 22.5, 54.5, 4012, 120 }, + [49] = { 34, 53.3, 4012, 120 }, + [50] = { 28, 36.6, 4012, 120 }, + [51] = { 99.4, 94.8, 5581, 120 }, + [52] = { 100, 79, 5581, 120 }, + }, + }, + [181144] = { + ["coords"] = { + [1] = { 51.9, 29.7, 17, 25 }, + [2] = { 22.4, 59, 45, 25 }, + [3] = { 22.1, 58.7, 45, 25 }, + [4] = { 67.9, 18.2, 148, 300 }, + [5] = { 68.1, 18.1, 148, 300 }, + [6] = { 68.3, 18, 148, 300 }, + [7] = { 68.5, 17.9, 148, 300 }, + [8] = { 79.5, 74.4, 400, 25 }, + [9] = { 37.1, 74.3, 1519, 400 }, + [10] = { 37.1, 73.3, 1519, 300 }, + [11] = { 70.8, 72.6, 1519, 25 }, + [12] = { 36.2, 70, 1519, 300 }, + [13] = { 75.9, 54.5, 1519, 25 }, + [14] = { 76.5, 53.5, 1519, 25 }, + [15] = { 35, 91.5, 3478, 25 }, + }, + }, + [181154] = { + ["coords"] = { + [1] = { 20.2, 60.4, 16, 120 }, + [2] = { 46, 53.1, 16, 120 }, + [3] = { 28.4, 61.6, 46, 120 }, + [4] = { 73.9, 36, 46, 120 }, + [5] = { 21.9, 78.8, 139, 120 }, + [6] = { 70.9, 65.8, 139, 120 }, + [7] = { 27.9, 46.7, 4012, 120 }, + }, + }, + [181168] = { + ["coords"] = { + [1] = { 45.8, 55.6, 3456, 180 }, + }, + }, + [181169] = { + ["coords"] = { + [1] = { 45, 56.8, 3456, 180 }, + }, + }, + [181170] = { + ["coords"] = { + [1] = { 49.5, 73.2, 3456, 180 }, + }, + }, + [181172] = { + ["coords"] = { + [1] = { 51.3, 37.9, 1, 120 }, + [2] = { 34.3, 52.7, 12, 120 }, + [3] = { 44.5, 16.9, 14, 120 }, + [4] = { 61.2, 65.9, 85, 120 }, + [5] = { 35.8, 54.8, 141, 120 }, + [6] = { 37.9, 36.2, 215, 120 }, + [7] = { 63.2, 4, 1497, 120 }, + [8] = { 89.3, 37.6, 1657, 120 }, + }, + }, + [181173] = { + ["coords"] = { + [1] = { 61.1, 44.4, 4, 120 }, + [2] = { 60.7, 44.3, 4, 120 }, + [3] = { 61.3, 43.9, 4, 120 }, + [4] = { 60.6, 43.7, 4, 120 }, + [5] = { 61, 43.5, 4, 120 }, + [6] = { 46.9, 38.7, 4, 120 }, + [7] = { 47.2, 38.5, 4, 120 }, + [8] = { 46.7, 38.3, 4, 120 }, + [9] = { 47.3, 38, 4, 120 }, + [10] = { 46.9, 37.8, 4, 120 }, + [11] = { 56.9, 35.4, 4, 120 }, + [12] = { 57.2, 35.3, 4, 120 }, + [13] = { 56.6, 35, 4, 120 }, + [14] = { 57.3, 34.6, 4, 120 }, + [15] = { 56.9, 34.5, 4, 120 }, + [16] = { 62.9, 31.1, 4, 120 }, + [17] = { 63.3, 30.9, 4, 120 }, + [18] = { 62.6, 30.7, 4, 120 }, + [19] = { 63.2, 30.3, 4, 120 }, + [20] = { 62.8, 30.2, 4, 120 }, + [21] = { 52.1, 28, 4, 120 }, + [22] = { 51.8, 27.8, 4, 120 }, + [23] = { 52.4, 27.5, 4, 120 }, + [24] = { 51.8, 27.3, 4, 120 }, + [25] = { 52.2, 27.1, 4, 120 }, + [26] = { 46.2, 20.5, 4, 120 }, + [27] = { 45.8, 20.5, 4, 120 }, + [28] = { 45.7, 20, 4, 120 }, + [29] = { 46.3, 20, 4, 120 }, + [30] = { 46, 19.7, 4, 120 }, + [31] = { 18.8, 67.4, 16, 120 }, + [32] = { 18.3, 67.4, 16, 120 }, + [33] = { 18.1, 66.6, 16, 120 }, + [34] = { 19, 66.6, 16, 120 }, + [35] = { 18.6, 66, 16, 120 }, + [36] = { 24.3, 59.5, 16, 120 }, + [37] = { 24.7, 59.4, 16, 120 }, + [38] = { 24.1, 59.2, 16, 120 }, + [39] = { 24.6, 58.9, 16, 120 }, + [40] = { 45.4, 58.9, 16, 120 }, + [41] = { 45, 58.9, 16, 120 }, + [42] = { 24.4, 58.8, 16, 120 }, + [43] = { 45.5, 58.4, 16, 120 }, + [44] = { 44.9, 58, 16, 120 }, + [45] = { 45.3, 57.8, 16, 120 }, + [46] = { 17.5, 54.7, 16, 120 }, + [47] = { 16.9, 54.6, 16, 120 }, + [48] = { 47.9, 54.5, 16, 120 }, + [49] = { 48.3, 54.3, 16, 120 }, + [50] = { 17.8, 54.1, 16, 120 }, + [51] = { 47.6, 53.8, 16, 120 }, + [52] = { 16.8, 53.7, 16, 120 }, + [53] = { 48.4, 53.5, 16, 120 }, + [54] = { 47.9, 53.4, 16, 120 }, + [55] = { 17.5, 53.3, 16, 120 }, + [56] = { 44.5, 50, 16, 120 }, + [57] = { 44.9, 49.7, 16, 120 }, + [58] = { 44.2, 49.6, 16, 120 }, + [59] = { 44.7, 49.1, 16, 120 }, + [60] = { 44.3, 49.1, 16, 120 }, + [61] = { 80.2, 62.2, 28, 120 }, + [62] = { 80.6, 62, 28, 120 }, + [63] = { 79.9, 61.7, 28, 120 }, + [64] = { 80.7, 61.1, 28, 120 }, + [65] = { 80.2, 61.1, 28, 120 }, + [66] = { 76.3, 55.6, 28, 120 }, + [67] = { 76, 55, 28, 120 }, + [68] = { 75.2, 54.9, 28, 120 }, + [69] = { 76.5, 54.3, 28, 120 }, + [70] = { 75.6, 53.6, 28, 120 }, + [71] = { 33.5, 70.8, 46, 120 }, + [72] = { 33, 70.5, 46, 120 }, + [73] = { 33.9, 70.3, 46, 120 }, + [74] = { 33.1, 69.7, 46, 120 }, + [75] = { 23.9, 69.3, 46, 120 }, + [76] = { 24.2, 68.8, 46, 120 }, + [77] = { 23.4, 68.8, 46, 120 }, + [78] = { 24.1, 68, 46, 120 }, + [79] = { 23.5, 67.9, 46, 120 }, + [80] = { 24.7, 52.3, 46, 120 }, + [81] = { 23.8, 51.9, 46, 120 }, + [82] = { 25.1, 50.9, 46, 120 }, + [83] = { 23.9, 50.6, 46, 120 }, + [84] = { 24.6, 50.1, 46, 120 }, + [85] = { 73.7, 49.4, 46, 120 }, + [86] = { 74.2, 49.4, 46, 120 }, + [87] = { 74.4, 48.6, 46, 120 }, + [88] = { 73.5, 48.5, 46, 120 }, + [89] = { 74, 47.8, 46, 120 }, + [90] = { 67.1, 36.9, 46, 120 }, + [91] = { 67.7, 36.4, 46, 120 }, + [92] = { 66.5, 36.1, 46, 120 }, + [93] = { 67.5, 35.4, 46, 120 }, + [94] = { 66.9, 35.1, 46, 120 }, + [95] = { 79.5, 30.3, 46, 120 }, + [96] = { 80.1, 29.7, 46, 120 }, + [97] = { 79, 29.7, 46, 120 }, + [98] = { 79.2, 28.6, 46, 120 }, + [99] = { 79.8, 28.5, 46, 120 }, + [100] = { 21.8, 85.9, 139, 120 }, + [101] = { 22.3, 85.6, 139, 120 }, + [102] = { 21.6, 85.4, 139, 120 }, + [103] = { 22.4, 84.7, 139, 120 }, + [104] = { 21.8, 84.7, 139, 120 }, + [105] = { 17.5, 78.6, 139, 120 }, + [106] = { 17.2, 77.8, 139, 120 }, + [107] = { 16.3, 77.8, 139, 120 }, + [108] = { 17.7, 77.1, 139, 120 }, + [109] = { 16.8, 76.4, 139, 120 }, + [110] = { 66.5, 73, 139, 120 }, + [111] = { 67, 72.6, 139, 120 }, + [112] = { 66, 72.4, 139, 120 }, + [113] = { 23.8, 72, 139, 120 }, + [114] = { 76.4, 71.9, 139, 120 }, + [115] = { 75.7, 71.8, 139, 120 }, + [116] = { 23.4, 71.7, 139, 120 }, + [117] = { 66.9, 71.7, 139, 120 }, + [118] = { 24.1, 71.5, 139, 120 }, + [119] = { 66.2, 71.4, 139, 120 }, + [120] = { 76.6, 71.3, 139, 120 }, + [121] = { 23.4, 71, 139, 120 }, + [122] = { 75.7, 71, 139, 120 }, + [123] = { 23.9, 70.8, 139, 120 }, + [124] = { 76.4, 70.6, 139, 120 }, + [125] = { 71.2, 58.1, 139, 120 }, + [126] = { 70.6, 57.9, 139, 120 }, + [127] = { 71.5, 57.3, 139, 120 }, + [128] = { 70.6, 57.3, 139, 120 }, + [129] = { 71.1, 56.8, 139, 120 }, + [130] = { 34.7, 64.7, 440, 120 }, + [131] = { 34.4, 64.7, 440, 120 }, + [132] = { 34.7, 64.3, 440, 120 }, + [133] = { 34.3, 64.3, 440, 120 }, + [134] = { 34.5, 63.9, 440, 120 }, + [135] = { 36, 58.3, 440, 120 }, + [136] = { 30.3, 58.3, 440, 120 }, + [137] = { 29.9, 58.1, 440, 120 }, + [138] = { 35.5, 58, 440, 120 }, + [139] = { 36.4, 57.9, 440, 120 }, + [140] = { 30.5, 57.8, 440, 120 }, + [141] = { 29.9, 57.6, 440, 120 }, + [142] = { 30.2, 57.4, 440, 120 }, + [143] = { 35.7, 57.2, 440, 120 }, + [144] = { 36.1, 57.2, 440, 120 }, + [145] = { 52.1, 57, 440, 120 }, + [146] = { 52.6, 56.9, 440, 120 }, + [147] = { 51.8, 56.4, 440, 120 }, + [148] = { 52.7, 56.1, 440, 120 }, + [149] = { 52.2, 55.8, 440, 120 }, + [150] = { 57.7, 53.8, 440, 120 }, + [151] = { 58, 53.6, 440, 120 }, + [152] = { 57.5, 53.6, 440, 120 }, + [153] = { 57.9, 53.1, 440, 120 }, + [154] = { 57.6, 53.1, 440, 120 }, + [155] = { 52, 50.2, 440, 120 }, + [156] = { 51.7, 50, 440, 120 }, + [157] = { 52.2, 49.8, 440, 120 }, + [158] = { 52.1, 49.4, 440, 120 }, + [159] = { 51.7, 49.4, 440, 120 }, + [160] = { 51.1, 38.5, 440, 120 }, + [161] = { 50.8, 38.5, 440, 120 }, + [162] = { 51.1, 38, 440, 120 }, + [163] = { 50.7, 38, 440, 120 }, + [164] = { 50.9, 37.8, 440, 120 }, + [165] = { 54.4, 32, 440, 120 }, + [166] = { 54.2, 31.7, 440, 120 }, + [167] = { 54.6, 31.7, 440, 120 }, + [168] = { 54.5, 31.4, 440, 120 }, + [169] = { 54.3, 31.3, 440, 120 }, + [170] = { 48.2, 30.2, 440, 120 }, + [171] = { 48.5, 29.9, 440, 120 }, + [172] = { 47.9, 29.9, 440, 120 }, + [173] = { 48.5, 29.4, 440, 120 }, + [174] = { 48.1, 29.4, 440, 120 }, + [175] = { 62.4, 52.5, 618, 120 }, + [176] = { 62.5, 52.5, 618, 120 }, + [177] = { 62.3, 52.4, 618, 120 }, + [178] = { 62.5, 52.3, 618, 120 }, + [179] = { 66.6, 52.2, 618, 120 }, + [180] = { 62.4, 52.2, 618, 120 }, + [181] = { 66.4, 52.1, 618, 120 }, + [182] = { 66.7, 52, 618, 120 }, + [183] = { 66.4, 51.8, 618, 120 }, + [184] = { 66.6, 51.8, 618, 120 }, + [185] = { 62.9, 47.7, 618, 120 }, + [186] = { 62.8, 47.6, 618, 120 }, + [187] = { 63, 47.5, 618, 120 }, + [188] = { 62.8, 47.4, 618, 120 }, + [189] = { 62.9, 47.3, 618, 120 }, + [190] = { 44.6, 42.2, 618, 120 }, + [191] = { 44.7, 42.1, 618, 120 }, + [192] = { 44.4, 42, 618, 120 }, + [193] = { 44.7, 41.8, 618, 120 }, + [194] = { 44.5, 41.7, 618, 120 }, + [195] = { 42.7, 38, 618, 120 }, + [196] = { 42.9, 37.9, 618, 120 }, + [197] = { 42.6, 37.9, 618, 120 }, + [198] = { 42.9, 37.6, 618, 120 }, + [199] = { 42.7, 37.6, 618, 120 }, + [200] = { 46.1, 37.2, 618, 120 }, + [201] = { 46, 37.2, 618, 120 }, + [202] = { 46.2, 37, 618, 120 }, + [203] = { 45.9, 36.9, 618, 120 }, + [204] = { 46.1, 36.8, 618, 120 }, + [205] = { 50, 18.1, 618, 120 }, + [206] = { 50.3, 18.1, 618, 120 }, + [207] = { 50.4, 17.8, 618, 120 }, + [208] = { 49.9, 17.8, 618, 120 }, + [209] = { 50.2, 17.6, 618, 120 }, + [210] = { 55.1, 15.2, 618, 120 }, + [211] = { 54.8, 15.2, 618, 120 }, + [212] = { 55.2, 15, 618, 120 }, + [213] = { 54.8, 14.8, 618, 120 }, + [214] = { 54.9, 14.6, 618, 120 }, + [215] = { 50.2, 12.8, 618, 120 }, + [216] = { 49.9, 12.7, 618, 120 }, + [217] = { 50.2, 12.5, 618, 120 }, + [218] = { 49.9, 12.4, 618, 120 }, + [219] = { 50.1, 12.3, 618, 120 }, + [220] = { 8.7, 53.4, 1941, 120 }, + [221] = { 11.3, 52.8, 1941, 120 }, + [222] = { 7.4, 50.1, 1941, 120 }, + [223] = { 11.6, 48.6, 1941, 120 }, + [224] = { 9.3, 47.1, 1941, 120 }, + [225] = { 37.4, 37, 1941, 120 }, + [226] = { 38.7, 35.8, 1941, 120 }, + [227] = { 36.2, 35.6, 1941, 120 }, + [228] = { 38.5, 33.3, 1941, 120 }, + [229] = { 36.9, 33.1, 1941, 120 }, + [230] = { 8, 18.2, 1941, 120 }, + [231] = { 6.6, 16.9, 1941, 120 }, + [232] = { 9.3, 16.2, 1941, 120 }, + [233] = { 8.7, 14.2, 1941, 120 }, + [234] = { 6.7, 14.2, 1941, 120 }, + [235] = { 22.5, 55.6, 4012, 120 }, + [236] = { 23.1, 55, 4012, 120 }, + [237] = { 21.9, 54.9, 4012, 120 }, + [238] = { 34.6, 54.3, 4012, 120 }, + [239] = { 33.7, 54, 4012, 120 }, + [240] = { 23, 54, 4012, 120 }, + [241] = { 22.1, 53.6, 4012, 120 }, + [242] = { 34.9, 53.4, 4012, 120 }, + [243] = { 33.8, 53.1, 4012, 120 }, + [244] = { 34.6, 52.6, 4012, 120 }, + [245] = { 28.2, 37.3, 4012, 120 }, + [246] = { 27.5, 37, 4012, 120 }, + [247] = { 28.5, 36.4, 4012, 120 }, + [248] = { 27.5, 36.3, 4012, 120 }, + [249] = { 28.1, 35.8, 4012, 120 }, + [250] = { 99.5, 95.4, 5581, 120 }, + [251] = { 99.8, 94.9, 5581, 120 }, + [252] = { 99, 94.9, 5581, 120 }, + [253] = { 99.7, 94.2, 5581, 120 }, + [254] = { 99.1, 94.1, 5581, 120 }, + [255] = { 99.4, 79.6, 5581, 120 }, + [256] = { 99.5, 78.5, 5581, 120 }, + }, + }, + [181174] = { + ["coords"] = { + [1] = { 61.1, 44.4, 4, 120 }, + [2] = { 60.7, 44.3, 4, 120 }, + [3] = { 61.3, 43.9, 4, 120 }, + [4] = { 60.6, 43.7, 4, 120 }, + [5] = { 61, 43.5, 4, 120 }, + [6] = { 46.9, 38.7, 4, 120 }, + [7] = { 47.2, 38.5, 4, 120 }, + [8] = { 46.7, 38.3, 4, 120 }, + [9] = { 47.3, 38, 4, 120 }, + [10] = { 46.9, 37.8, 4, 120 }, + [11] = { 56.9, 35.4, 4, 120 }, + [12] = { 57.2, 35.3, 4, 120 }, + [13] = { 56.6, 35, 4, 120 }, + [14] = { 57.3, 34.6, 4, 120 }, + [15] = { 56.9, 34.5, 4, 120 }, + [16] = { 62.9, 31.1, 4, 120 }, + [17] = { 63.3, 30.9, 4, 120 }, + [18] = { 62.6, 30.7, 4, 120 }, + [19] = { 63.2, 30.3, 4, 120 }, + [20] = { 62.8, 30.2, 4, 120 }, + [21] = { 52.1, 28, 4, 120 }, + [22] = { 51.8, 27.8, 4, 120 }, + [23] = { 52.4, 27.5, 4, 120 }, + [24] = { 51.8, 27.3, 4, 120 }, + [25] = { 52.2, 27.1, 4, 120 }, + [26] = { 46.2, 20.5, 4, 120 }, + [27] = { 45.8, 20.5, 4, 120 }, + [28] = { 45.7, 20, 4, 120 }, + [29] = { 46.3, 20, 4, 120 }, + [30] = { 46, 19.7, 4, 120 }, + [31] = { 18.8, 67.4, 16, 120 }, + [32] = { 18.3, 67.4, 16, 120 }, + [33] = { 18.1, 66.6, 16, 120 }, + [34] = { 19, 66.6, 16, 120 }, + [35] = { 18.6, 66, 16, 120 }, + [36] = { 24.3, 59.5, 16, 120 }, + [37] = { 24.7, 59.4, 16, 120 }, + [38] = { 24.1, 59.2, 16, 120 }, + [39] = { 24.6, 58.9, 16, 120 }, + [40] = { 45.4, 58.9, 16, 120 }, + [41] = { 45, 58.9, 16, 120 }, + [42] = { 24.4, 58.8, 16, 120 }, + [43] = { 45.5, 58.4, 16, 120 }, + [44] = { 44.9, 58, 16, 120 }, + [45] = { 45.3, 57.8, 16, 120 }, + [46] = { 17.5, 54.7, 16, 120 }, + [47] = { 16.9, 54.6, 16, 120 }, + [48] = { 47.9, 54.5, 16, 120 }, + [49] = { 48.3, 54.3, 16, 120 }, + [50] = { 17.8, 54.1, 16, 120 }, + [51] = { 47.6, 53.8, 16, 120 }, + [52] = { 16.8, 53.7, 16, 120 }, + [53] = { 48.4, 53.5, 16, 120 }, + [54] = { 47.9, 53.4, 16, 120 }, + [55] = { 17.5, 53.3, 16, 120 }, + [56] = { 44.5, 50, 16, 120 }, + [57] = { 44.9, 49.7, 16, 120 }, + [58] = { 44.2, 49.6, 16, 120 }, + [59] = { 44.7, 49.1, 16, 120 }, + [60] = { 44.3, 49.1, 16, 120 }, + [61] = { 80.2, 62.2, 28, 120 }, + [62] = { 80.6, 62, 28, 120 }, + [63] = { 79.9, 61.7, 28, 120 }, + [64] = { 80.7, 61.1, 28, 120 }, + [65] = { 80.2, 61.1, 28, 120 }, + [66] = { 76.3, 55.6, 28, 120 }, + [67] = { 76, 55, 28, 120 }, + [68] = { 75.2, 54.9, 28, 120 }, + [69] = { 76.5, 54.3, 28, 120 }, + [70] = { 75.6, 53.6, 28, 120 }, + [71] = { 33.5, 70.8, 46, 120 }, + [72] = { 33, 70.5, 46, 120 }, + [73] = { 33.9, 70.3, 46, 120 }, + [74] = { 33.1, 69.7, 46, 120 }, + [75] = { 23.9, 69.3, 46, 120 }, + [76] = { 24.2, 68.8, 46, 120 }, + [77] = { 23.4, 68.8, 46, 120 }, + [78] = { 24.1, 68, 46, 120 }, + [79] = { 23.5, 67.9, 46, 120 }, + [80] = { 24.7, 52.3, 46, 120 }, + [81] = { 23.8, 51.9, 46, 120 }, + [82] = { 25.1, 50.9, 46, 120 }, + [83] = { 23.9, 50.6, 46, 120 }, + [84] = { 24.6, 50.1, 46, 120 }, + [85] = { 73.7, 49.4, 46, 120 }, + [86] = { 74.2, 49.4, 46, 120 }, + [87] = { 74.4, 48.6, 46, 120 }, + [88] = { 73.5, 48.5, 46, 120 }, + [89] = { 74, 47.8, 46, 120 }, + [90] = { 67.1, 36.9, 46, 120 }, + [91] = { 67.7, 36.4, 46, 120 }, + [92] = { 66.5, 36.1, 46, 120 }, + [93] = { 67.5, 35.4, 46, 120 }, + [94] = { 66.9, 35.1, 46, 120 }, + [95] = { 79.5, 30.3, 46, 120 }, + [96] = { 80.1, 29.7, 46, 120 }, + [97] = { 79, 29.7, 46, 120 }, + [98] = { 79.2, 28.6, 46, 120 }, + [99] = { 79.8, 28.5, 46, 120 }, + [100] = { 21.8, 85.9, 139, 120 }, + [101] = { 22.3, 85.6, 139, 120 }, + [102] = { 21.6, 85.4, 139, 120 }, + [103] = { 22.4, 84.7, 139, 120 }, + [104] = { 21.8, 84.7, 139, 120 }, + [105] = { 17.5, 78.6, 139, 120 }, + [106] = { 17.2, 77.8, 139, 120 }, + [107] = { 16.3, 77.8, 139, 120 }, + [108] = { 17.7, 77.1, 139, 120 }, + [109] = { 16.8, 76.4, 139, 120 }, + [110] = { 66.5, 73, 139, 120 }, + [111] = { 67, 72.6, 139, 120 }, + [112] = { 66, 72.4, 139, 120 }, + [113] = { 23.8, 72, 139, 120 }, + [114] = { 76.4, 71.9, 139, 120 }, + [115] = { 75.7, 71.8, 139, 120 }, + [116] = { 23.4, 71.7, 139, 120 }, + [117] = { 66.9, 71.7, 139, 120 }, + [118] = { 24.1, 71.5, 139, 120 }, + [119] = { 66.2, 71.4, 139, 120 }, + [120] = { 76.6, 71.3, 139, 120 }, + [121] = { 23.4, 71, 139, 120 }, + [122] = { 75.7, 71, 139, 120 }, + [123] = { 23.9, 70.8, 139, 120 }, + [124] = { 76.4, 70.6, 139, 120 }, + [125] = { 71.2, 58.1, 139, 120 }, + [126] = { 70.6, 57.9, 139, 120 }, + [127] = { 71.5, 57.3, 139, 120 }, + [128] = { 70.6, 57.3, 139, 120 }, + [129] = { 71.1, 56.8, 139, 120 }, + [130] = { 56.7, 29.6, 331, 25 }, + [131] = { 55.9, 93.8, 361, 25 }, + [132] = { 34.7, 64.7, 440, 120 }, + [133] = { 34.4, 64.7, 440, 120 }, + [134] = { 34.7, 64.3, 440, 120 }, + [135] = { 34.3, 64.3, 440, 120 }, + [136] = { 34.5, 63.9, 440, 120 }, + [137] = { 36, 58.3, 440, 120 }, + [138] = { 30.3, 58.3, 440, 120 }, + [139] = { 29.9, 58.1, 440, 120 }, + [140] = { 35.5, 58, 440, 120 }, + [141] = { 36.4, 57.9, 440, 120 }, + [142] = { 30.5, 57.8, 440, 120 }, + [143] = { 29.9, 57.6, 440, 120 }, + [144] = { 30.2, 57.4, 440, 120 }, + [145] = { 35.7, 57.2, 440, 120 }, + [146] = { 36.1, 57.2, 440, 120 }, + [147] = { 52.1, 57, 440, 120 }, + [148] = { 52.6, 56.9, 440, 120 }, + [149] = { 51.8, 56.4, 440, 120 }, + [150] = { 52.7, 56.1, 440, 120 }, + [151] = { 52.2, 55.8, 440, 120 }, + [152] = { 57.7, 53.8, 440, 120 }, + [153] = { 58, 53.6, 440, 120 }, + [154] = { 57.5, 53.6, 440, 120 }, + [155] = { 57.9, 53.1, 440, 120 }, + [156] = { 57.6, 53.1, 440, 120 }, + [157] = { 52, 50.2, 440, 120 }, + [158] = { 51.7, 50, 440, 120 }, + [159] = { 52.2, 49.8, 440, 120 }, + [160] = { 52.1, 49.4, 440, 120 }, + [161] = { 51.7, 49.4, 440, 120 }, + [162] = { 51.1, 38.5, 440, 120 }, + [163] = { 50.8, 38.5, 440, 120 }, + [164] = { 51.1, 38, 440, 120 }, + [165] = { 50.7, 38, 440, 120 }, + [166] = { 50.9, 37.8, 440, 120 }, + [167] = { 54.4, 32, 440, 120 }, + [168] = { 54.2, 31.7, 440, 120 }, + [169] = { 54.6, 31.7, 440, 120 }, + [170] = { 54.5, 31.4, 440, 120 }, + [171] = { 54.3, 31.3, 440, 120 }, + [172] = { 48.2, 30.2, 440, 120 }, + [173] = { 48.5, 29.9, 440, 120 }, + [174] = { 47.9, 29.9, 440, 120 }, + [175] = { 48.5, 29.4, 440, 120 }, + [176] = { 48.1, 29.4, 440, 120 }, + [177] = { 62.4, 52.5, 618, 120 }, + [178] = { 62.5, 52.5, 618, 120 }, + [179] = { 62.3, 52.4, 618, 120 }, + [180] = { 62.5, 52.3, 618, 120 }, + [181] = { 66.6, 52.2, 618, 120 }, + [182] = { 62.4, 52.2, 618, 120 }, + [183] = { 66.4, 52.1, 618, 120 }, + [184] = { 66.7, 52, 618, 120 }, + [185] = { 66.4, 51.8, 618, 120 }, + [186] = { 66.6, 51.8, 618, 120 }, + [187] = { 62.9, 47.7, 618, 120 }, + [188] = { 62.8, 47.6, 618, 120 }, + [189] = { 63, 47.5, 618, 120 }, + [190] = { 62.8, 47.4, 618, 120 }, + [191] = { 62.9, 47.3, 618, 120 }, + [192] = { 44.6, 42.2, 618, 120 }, + [193] = { 44.7, 42.1, 618, 120 }, + [194] = { 44.4, 42, 618, 120 }, + [195] = { 44.7, 41.8, 618, 120 }, + [196] = { 44.5, 41.7, 618, 120 }, + [197] = { 42.7, 38, 618, 120 }, + [198] = { 42.9, 37.9, 618, 120 }, + [199] = { 42.6, 37.9, 618, 120 }, + [200] = { 42.9, 37.6, 618, 120 }, + [201] = { 42.7, 37.6, 618, 120 }, + [202] = { 46.1, 37.2, 618, 120 }, + [203] = { 46, 37.2, 618, 120 }, + [204] = { 46.2, 37, 618, 120 }, + [205] = { 45.9, 36.9, 618, 120 }, + [206] = { 46.1, 36.8, 618, 120 }, + [207] = { 50, 18.1, 618, 120 }, + [208] = { 50.3, 18.1, 618, 120 }, + [209] = { 50.4, 17.8, 618, 120 }, + [210] = { 49.9, 17.8, 618, 120 }, + [211] = { 50.2, 17.6, 618, 120 }, + [212] = { 55.1, 15.2, 618, 120 }, + [213] = { 54.8, 15.2, 618, 120 }, + [214] = { 55.2, 15, 618, 120 }, + [215] = { 54.8, 14.8, 618, 120 }, + [216] = { 54.9, 14.6, 618, 120 }, + [217] = { 50.2, 12.8, 618, 120 }, + [218] = { 49.9, 12.7, 618, 120 }, + [219] = { 50.2, 12.5, 618, 120 }, + [220] = { 49.9, 12.4, 618, 120 }, + [221] = { 50.1, 12.3, 618, 120 }, + [222] = { 8.7, 53.4, 1941, 120 }, + [223] = { 11.3, 52.8, 1941, 120 }, + [224] = { 7.4, 50.1, 1941, 120 }, + [225] = { 11.6, 48.6, 1941, 120 }, + [226] = { 9.3, 47.1, 1941, 120 }, + [227] = { 37.4, 37, 1941, 120 }, + [228] = { 38.7, 35.8, 1941, 120 }, + [229] = { 36.2, 35.6, 1941, 120 }, + [230] = { 38.5, 33.3, 1941, 120 }, + [231] = { 36.9, 33.1, 1941, 120 }, + [232] = { 8, 18.2, 1941, 120 }, + [233] = { 6.6, 16.9, 1941, 120 }, + [234] = { 9.3, 16.2, 1941, 120 }, + [235] = { 8.7, 14.2, 1941, 120 }, + [236] = { 6.7, 14.2, 1941, 120 }, + [237] = { 22.5, 55.6, 4012, 120 }, + [238] = { 23.1, 55, 4012, 120 }, + [239] = { 21.9, 54.9, 4012, 120 }, + [240] = { 34.6, 54.3, 4012, 120 }, + [241] = { 33.7, 54, 4012, 120 }, + [242] = { 23, 54, 4012, 120 }, + [243] = { 22.1, 53.6, 4012, 120 }, + [244] = { 34.9, 53.4, 4012, 120 }, + [245] = { 33.8, 53.1, 4012, 120 }, + [246] = { 34.6, 52.6, 4012, 120 }, + [247] = { 28.2, 37.3, 4012, 120 }, + [248] = { 27.5, 37, 4012, 120 }, + [249] = { 28.5, 36.4, 4012, 120 }, + [250] = { 27.5, 36.3, 4012, 120 }, + [251] = { 28.1, 35.8, 4012, 120 }, + [252] = { 99.5, 95.4, 5581, 120 }, + [253] = { 99.8, 94.9, 5581, 120 }, + [254] = { 99, 94.9, 5581, 120 }, + [255] = { 99.7, 94.2, 5581, 120 }, + [256] = { 99.1, 94.1, 5581, 120 }, + [257] = { 99.4, 79.6, 5581, 120 }, + [258] = { 99.5, 78.5, 5581, 120 }, + }, + }, + [181191] = { + ["coords"] = { + [1] = { 60.9, 44.9, 4, 120 }, + [2] = { 47.2, 39.8, 4, 120 }, + [3] = { 47, 39.2, 4, 120 }, + [4] = { 46.7, 38.6, 4, 120 }, + [5] = { 48.1, 38.2, 4, 120 }, + [6] = { 48, 38.2, 4, 120 }, + [7] = { 47.2, 36.9, 4, 120 }, + [8] = { 46, 36.4, 4, 120 }, + [9] = { 57.4, 35.7, 4, 120 }, + [10] = { 58.2, 35, 4, 120 }, + [11] = { 56.7, 34.5, 4, 120 }, + [12] = { 56, 34.5, 4, 120 }, + [13] = { 57, 33.8, 4, 120 }, + [14] = { 57, 33.6, 4, 120 }, + [15] = { 62.8, 31.9, 4, 120 }, + [16] = { 62.7, 31.1, 4, 120 }, + [17] = { 62, 30.8, 4, 120 }, + [18] = { 63.9, 30.6, 4, 120 }, + [19] = { 62.7, 30.1, 4, 120 }, + [20] = { 63.6, 30, 4, 120 }, + [21] = { 63.6, 29.5, 4, 120 }, + [22] = { 63.1, 29.5, 4, 120 }, + [23] = { 51, 29.1, 4, 120 }, + [24] = { 52.7, 28.9, 4, 120 }, + [25] = { 51.4, 27.8, 4, 120 }, + [26] = { 52.8, 27.7, 4, 120 }, + [27] = { 53.1, 27.3, 4, 120 }, + [28] = { 47.3, 21.2, 4, 120 }, + [29] = { 45.7, 20.6, 4, 120 }, + [30] = { 46.4, 20.3, 4, 120 }, + [31] = { 45.2, 20.1, 4, 120 }, + [32] = { 47, 18.7, 4, 120 }, + [33] = { 45.9, 18.3, 4, 120 }, + [34] = { 18, 67.2, 16, 120 }, + [35] = { 18, 67.1, 16, 120 }, + [36] = { 18.6, 67, 16, 120 }, + [37] = { 18.7, 66.7, 16, 120 }, + [38] = { 18.5, 66.3, 16, 120 }, + [39] = { 24.8, 59.7, 16, 120 }, + [40] = { 24.8, 59.5, 16, 120 }, + [41] = { 24.2, 59.4, 16, 120 }, + [42] = { 24.7, 59.2, 16, 120 }, + [43] = { 45, 59.1, 16, 120 }, + [44] = { 24.3, 58.8, 16, 120 }, + [45] = { 45.2, 58.1, 16, 120 }, + [46] = { 44.9, 57.8, 16, 120 }, + [47] = { 45.2, 57.6, 16, 120 }, + [48] = { 47.6, 54.6, 16, 120 }, + [49] = { 48, 54.6, 16, 120 }, + [50] = { 17.2, 54.3, 16, 120 }, + [51] = { 17.6, 54.2, 16, 120 }, + [52] = { 48.5, 54.2, 16, 120 }, + [53] = { 16.8, 54.1, 16, 120 }, + [54] = { 17.8, 53.7, 16, 120 }, + [55] = { 17.2, 53.7, 16, 120 }, + [56] = { 17.1, 53.4, 16, 120 }, + [57] = { 44.3, 50.5, 16, 120 }, + [58] = { 44.8, 50.4, 16, 120 }, + [59] = { 44.6, 49.3, 16, 120 }, + [60] = { 80.4, 62.1, 28, 120 }, + [61] = { 79.8, 62.1, 28, 120 }, + [62] = { 80.1, 61.5, 28, 120 }, + [63] = { 81, 61.2, 28, 120 }, + [64] = { 80.2, 60.5, 28, 120 }, + [65] = { 76.3, 55.8, 28, 120 }, + [66] = { 75.4, 55.5, 28, 120 }, + [67] = { 76, 54.7, 28, 120 }, + [68] = { 34.2, 71.8, 46, 120 }, + [69] = { 33.5, 71.8, 46, 120 }, + [70] = { 34.2, 70.6, 46, 120 }, + [71] = { 23.8, 69.7, 46, 120 }, + [72] = { 23.9, 68.3, 46, 120 }, + [73] = { 23.3, 68, 46, 120 }, + [74] = { 33.8, 67.7, 46, 120 }, + [75] = { 24.1, 52.2, 46, 120 }, + [76] = { 24, 51, 46, 120 }, + [77] = { 73.4, 50.3, 46, 120 }, + [78] = { 74.7, 50.2, 46, 120 }, + [79] = { 24.5, 50.2, 46, 120 }, + [80] = { 74.1, 49.7, 46, 120 }, + [81] = { 74.3, 48.7, 46, 120 }, + [82] = { 74.8, 48.7, 46, 120 }, + [83] = { 66.7, 37, 46, 120 }, + [84] = { 66.2, 35.9, 46, 120 }, + [85] = { 66.9, 35.6, 46, 120 }, + [86] = { 67, 35.1, 46, 120 }, + [87] = { 80.1, 29.6, 46, 120 }, + [88] = { 79.2, 29.5, 46, 120 }, + [89] = { 80.7, 29.5, 46, 120 }, + [90] = { 78.5, 28.9, 46, 120 }, + [91] = { 79.1, 28.6, 46, 120 }, + [92] = { 22.1, 85.8, 139, 120 }, + [93] = { 21.4, 85.7, 139, 120 }, + [94] = { 21.7, 85.1, 139, 120 }, + [95] = { 22.7, 84.8, 139, 120 }, + [96] = { 21.9, 83.9, 139, 120 }, + [97] = { 17.6, 78.7, 139, 120 }, + [98] = { 16.6, 78.5, 139, 120 }, + [99] = { 17.2, 77.5, 139, 120 }, + [100] = { 66.8, 73.3, 139, 120 }, + [101] = { 66.4, 72.8, 139, 120 }, + [102] = { 65.8, 72.7, 139, 120 }, + [103] = { 67.2, 72.4, 139, 120 }, + [104] = { 65.8, 72.2, 139, 120 }, + [105] = { 23.5, 72, 139, 120 }, + [106] = { 24.1, 71.9, 139, 120 }, + [107] = { 76.3, 71.3, 139, 120 }, + [108] = { 66.6, 71.2, 139, 120 }, + [109] = { 66.1, 71.2, 139, 120 }, + [110] = { 23.2, 70.9, 139, 120 }, + [111] = { 24.2, 70.8, 139, 120 }, + [112] = { 77.2, 70.8, 139, 120 }, + [113] = { 23.2, 70.5, 139, 120 }, + [114] = { 71.4, 58.2, 139, 120 }, + [115] = { 71.3, 56.8, 139, 120 }, + [116] = { 71, 56.8, 139, 120 }, + [117] = { 81.1, 76.6, 405, 300 }, + [118] = { 34.3, 64.6, 440, 120 }, + [119] = { 34.7, 64.5, 440, 120 }, + [120] = { 34.2, 64.4, 440, 120 }, + [121] = { 34.3, 64.1, 440, 120 }, + [122] = { 34.7, 64, 440, 120 }, + [123] = { 36.1, 58.5, 440, 120 }, + [124] = { 30.3, 58.4, 440, 120 }, + [125] = { 36.2, 58.2, 440, 120 }, + [126] = { 29.8, 58, 440, 120 }, + [127] = { 30.5, 57.7, 440, 120 }, + [128] = { 36.3, 57.5, 440, 120 }, + [129] = { 30.1, 57.4, 440, 120 }, + [130] = { 36.1, 57.4, 440, 120 }, + [131] = { 52.8, 56.4, 440, 120 }, + [132] = { 52.4, 56.2, 440, 120 }, + [133] = { 52.4, 55.8, 440, 120 }, + [134] = { 58, 54, 440, 120 }, + [135] = { 57.4, 53.9, 440, 120 }, + [136] = { 58.2, 53.4, 440, 120 }, + [137] = { 57.2, 53.3, 440, 120 }, + [138] = { 58, 53.1, 440, 120 }, + [139] = { 57.6, 52.6, 440, 120 }, + [140] = { 52.3, 49.9, 440, 120 }, + [141] = { 51, 38.5, 440, 120 }, + [142] = { 50.8, 38.5, 440, 120 }, + [143] = { 50.8, 38.1, 440, 120 }, + [144] = { 50.7, 37.9, 440, 120 }, + [145] = { 54.4, 32.1, 440, 120 }, + [146] = { 54.4, 31.3, 440, 120 }, + [147] = { 48.2, 30.5, 440, 120 }, + [148] = { 48, 30.1, 440, 120 }, + [149] = { 48, 29.5, 440, 120 }, + [150] = { 48.4, 29.4, 440, 120 }, + [151] = { 66.5, 52.9, 618, 120 }, + [152] = { 66.2, 52.8, 618, 120 }, + [153] = { 62.2, 52.7, 618, 120 }, + [154] = { 66.2, 51.8, 618, 120 }, + [155] = { 62.5, 51.5, 618, 120 }, + [156] = { 66.5, 51, 618, 120 }, + [157] = { 63.3, 48.5, 618, 120 }, + [158] = { 62.5, 48.2, 618, 120 }, + [159] = { 62.5, 47.8, 618, 120 }, + [160] = { 62.7, 47.7, 618, 120 }, + [161] = { 63, 47.6, 618, 120 }, + [162] = { 63.3, 47.5, 618, 120 }, + [163] = { 62.5, 47.1, 618, 120 }, + [164] = { 63.3, 47.1, 618, 120 }, + [165] = { 44.6, 42.5, 618, 120 }, + [166] = { 44.5, 42, 618, 120 }, + [167] = { 44.6, 41.7, 618, 120 }, + [168] = { 44.3, 41.4, 618, 120 }, + [169] = { 44.6, 41.4, 618, 120 }, + [170] = { 42.4, 38.2, 618, 120 }, + [171] = { 43.1, 38, 618, 120 }, + [172] = { 46.1, 37.2, 618, 120 }, + [173] = { 45.6, 37, 618, 120 }, + [174] = { 46.4, 37, 618, 120 }, + [175] = { 45.8, 36.9, 618, 120 }, + [176] = { 50, 18.6, 618, 120 }, + [177] = { 50.2, 18.2, 618, 120 }, + [178] = { 50, 18, 618, 120 }, + [179] = { 49.8, 17.6, 618, 120 }, + [180] = { 49.9, 17.6, 618, 120 }, + [181] = { 50.1, 17.5, 618, 120 }, + [182] = { 55.2, 15.2, 618, 120 }, + [183] = { 54.7, 14.9, 618, 120 }, + [184] = { 50, 12.9, 618, 120 }, + [185] = { 49.8, 12.5, 618, 120 }, + [186] = { 50.3, 12.5, 618, 120 }, + [187] = { 49.9, 12.4, 618, 120 }, + [188] = { 12.2, 50, 1941, 120 }, + [189] = { 10.5, 49.1, 1941, 120 }, + [190] = { 10.2, 47.2, 1941, 120 }, + [191] = { 38.8, 38, 1941, 120 }, + [192] = { 35.9, 37.3, 1941, 120 }, + [193] = { 39.8, 34.7, 1941, 120 }, + [194] = { 35, 34.1, 1941, 120 }, + [195] = { 39.1, 33, 1941, 120 }, + [196] = { 37, 30.7, 1941, 120 }, + [197] = { 36.9, 30.5, 1941, 120 }, + [198] = { 9.8, 16.3, 1941, 120 }, + [199] = { 22.9, 56, 4012, 120 }, + [200] = { 22.4, 55.3, 4012, 120 }, + [201] = { 21.6, 55.2, 4012, 120 }, + [202] = { 23.3, 54.8, 4012, 120 }, + [203] = { 21.6, 54.6, 4012, 120 }, + [204] = { 34.5, 53.5, 4012, 120 }, + [205] = { 22.6, 53.4, 4012, 120 }, + [206] = { 22, 53.3, 4012, 120 }, + [207] = { 35.6, 52.9, 4012, 120 }, + [208] = { 28.5, 37.4, 4012, 120 }, + [209] = { 28.4, 35.8, 4012, 120 }, + [210] = { 28, 35.8, 4012, 120 }, + [211] = { 99.4, 95.7, 5581, 120 }, + [212] = { 99.5, 94.5, 5581, 120 }, + [213] = { 98.9, 94.2, 5581, 120 }, + [214] = { 99.7, 79.9, 5581, 120 }, + [215] = { 99.7, 79.8, 5581, 120 }, + [216] = { 99.6, 78.8, 5581, 120 }, + }, + }, + [181192] = { + ["coords"] = { + [1] = { 61.9, 45.6, 4, 120 }, + [2] = { 60.9, 45, 4, 120 }, + [3] = { 60.7, 44.6, 4, 120 }, + [4] = { 60.1, 44.4, 4, 120 }, + [5] = { 61.8, 43.6, 4, 120 }, + [6] = { 60.7, 42.6, 4, 120 }, + [7] = { 48.1, 39.4, 4, 120 }, + [8] = { 47.7, 39.3, 4, 120 }, + [9] = { 46.7, 38.6, 4, 120 }, + [10] = { 57.7, 36.1, 4, 120 }, + [11] = { 56, 36, 4, 120 }, + [12] = { 55.6, 35.6, 4, 120 }, + [13] = { 56.6, 35.5, 4, 120 }, + [14] = { 63.3, 31.6, 4, 120 }, + [15] = { 63.3, 30.4, 4, 120 }, + [16] = { 62.3, 29.6, 4, 120 }, + [17] = { 51.3, 28.5, 4, 120 }, + [18] = { 52.3, 27.2, 4, 120 }, + [19] = { 52.2, 26.6, 4, 120 }, + [20] = { 52.7, 26.5, 4, 120 }, + [21] = { 52.1, 26.4, 4, 120 }, + [22] = { 46.2, 21.7, 4, 120 }, + [23] = { 46.7, 20, 4, 120 }, + [24] = { 46.2, 19.6, 4, 120 }, + [25] = { 18.6, 67.4, 16, 120 }, + [26] = { 18.5, 67.4, 16, 120 }, + [27] = { 18.9, 67, 16, 120 }, + [28] = { 18.3, 66.8, 16, 120 }, + [29] = { 17.9, 66.7, 16, 120 }, + [30] = { 19.1, 66.3, 16, 120 }, + [31] = { 18.1, 66.2, 16, 120 }, + [32] = { 24.7, 59.6, 16, 120 }, + [33] = { 24.2, 59.4, 16, 120 }, + [34] = { 45.3, 59.1, 16, 120 }, + [35] = { 24.7, 59.1, 16, 120 }, + [36] = { 45.6, 58.8, 16, 120 }, + [37] = { 44.8, 58.5, 16, 120 }, + [38] = { 45.6, 57.6, 16, 120 }, + [39] = { 45.6, 57.5, 16, 120 }, + [40] = { 17.2, 54.8, 16, 120 }, + [41] = { 48, 54.6, 16, 120 }, + [42] = { 16.8, 54.1, 16, 120 }, + [43] = { 17, 53.9, 16, 120 }, + [44] = { 47.7, 53.6, 16, 120 }, + [45] = { 17.1, 53.5, 16, 120 }, + [46] = { 17.6, 53.4, 16, 120 }, + [47] = { 47.9, 53.3, 16, 120 }, + [48] = { 48.1, 53.1, 16, 120 }, + [49] = { 44.2, 50.5, 16, 120 }, + [50] = { 44.3, 50.4, 16, 120 }, + [51] = { 44.8, 49.9, 16, 120 }, + [52] = { 45, 49.5, 16, 120 }, + [53] = { 44.9, 48.9, 16, 120 }, + [54] = { 44.6, 48.5, 16, 120 }, + [55] = { 80.2, 61.9, 28, 120 }, + [56] = { 81, 61.9, 28, 120 }, + [57] = { 81, 61.8, 28, 120 }, + [58] = { 81, 61.1, 28, 120 }, + [59] = { 75.8, 56, 28, 120 }, + [60] = { 75.9, 55.4, 28, 120 }, + [61] = { 75.4, 55.2, 28, 120 }, + [62] = { 75.8, 55.1, 28, 120 }, + [63] = { 75.9, 54.9, 28, 120 }, + [64] = { 76.4, 54.5, 28, 120 }, + [65] = { 75.8, 53.8, 28, 120 }, + [66] = { 33.6, 70.9, 46, 120 }, + [67] = { 23.3, 69.9, 46, 120 }, + [68] = { 23.8, 69.7, 46, 120 }, + [69] = { 34.1, 69.7, 46, 120 }, + [70] = { 24.4, 69.1, 46, 120 }, + [71] = { 24.4, 69, 46, 120 }, + [72] = { 33, 69, 46, 120 }, + [73] = { 23.6, 69, 46, 120 }, + [74] = { 34.5, 68.4, 46, 120 }, + [75] = { 24.4, 67.9, 46, 120 }, + [76] = { 23.6, 67.7, 46, 120 }, + [77] = { 23.6, 67.6, 46, 120 }, + [78] = { 23.7, 51.4, 46, 120 }, + [79] = { 25.1, 51.3, 46, 120 }, + [80] = { 24.6, 50.8, 46, 120 }, + [81] = { 25.5, 50.7, 46, 120 }, + [82] = { 74.1, 50.6, 46, 120 }, + [83] = { 73.4, 50.2, 46, 120 }, + [84] = { 73.5, 49.1, 46, 120 }, + [85] = { 24, 49, 46, 120 }, + [86] = { 74.3, 48.8, 46, 120 }, + [87] = { 74, 48, 46, 120 }, + [88] = { 67.8, 36.9, 46, 120 }, + [89] = { 67.2, 36.4, 46, 120 }, + [90] = { 67.4, 35.8, 46, 120 }, + [91] = { 67, 35.1, 46, 120 }, + [92] = { 79.9, 28.6, 46, 120 }, + [93] = { 79, 28.5, 46, 120 }, + [94] = { 21.9, 85.5, 139, 120 }, + [95] = { 22.8, 85.5, 139, 120 }, + [96] = { 22.7, 85.4, 139, 120 }, + [97] = { 22.7, 84.7, 139, 120 }, + [98] = { 16.9, 79, 139, 120 }, + [99] = { 17.1, 78.4, 139, 120 }, + [100] = { 16.6, 78.1, 139, 120 }, + [101] = { 17, 78, 139, 120 }, + [102] = { 17, 77.8, 139, 120 }, + [103] = { 17.6, 77.3, 139, 120 }, + [104] = { 16.9, 76.5, 139, 120 }, + [105] = { 76.5, 72.9, 139, 120 }, + [106] = { 66.4, 72.8, 139, 120 }, + [107] = { 66.8, 72.8, 139, 120 }, + [108] = { 77.2, 72.2, 139, 120 }, + [109] = { 24, 72, 139, 120 }, + [110] = { 66.9, 71.9, 139, 120 }, + [111] = { 75.6, 71.8, 139, 120 }, + [112] = { 22.8, 71.8, 139, 120 }, + [113] = { 75.4, 71.6, 139, 120 }, + [114] = { 24.2, 71.5, 139, 120 }, + [115] = { 66.6, 71.2, 139, 120 }, + [116] = { 75.3, 71.2, 139, 120 }, + [117] = { 23.9, 70.7, 139, 120 }, + [118] = { 23.3, 70.7, 139, 120 }, + [119] = { 23.6, 70.2, 139, 120 }, + [120] = { 70.5, 58.6, 139, 120 }, + [121] = { 70.4, 58, 139, 120 }, + [122] = { 71.2, 57.9, 139, 120 }, + [123] = { 71.3, 57.5, 139, 120 }, + [124] = { 72, 57.3, 139, 120 }, + [125] = { 70.7, 57.1, 139, 120 }, + [126] = { 70.5, 56.2, 139, 120 }, + [127] = { 81, 76.7, 405, 300 }, + [128] = { 34.6, 64.3, 440, 120 }, + [129] = { 35.7, 58.4, 440, 120 }, + [130] = { 30.1, 58.4, 440, 120 }, + [131] = { 35.6, 58.1, 440, 120 }, + [132] = { 30.1, 58, 440, 120 }, + [133] = { 35.5, 57.5, 440, 120 }, + [134] = { 30.3, 57.5, 440, 120 }, + [135] = { 36.4, 57.5, 440, 120 }, + [136] = { 30.2, 57.4, 440, 120 }, + [137] = { 35.9, 57.4, 440, 120 }, + [138] = { 36, 57, 440, 120 }, + [139] = { 52.5, 56.9, 440, 120 }, + [140] = { 52.3, 56.9, 440, 120 }, + [141] = { 52, 56.5, 440, 120 }, + [142] = { 52.6, 56, 440, 120 }, + [143] = { 57.7, 53.8, 440, 120 }, + [144] = { 58, 53.6, 440, 120 }, + [145] = { 57.2, 53.3, 440, 120 }, + [146] = { 57.8, 53, 440, 120 }, + [147] = { 51.8, 50.3, 440, 120 }, + [148] = { 52.3, 50.2, 440, 120 }, + [149] = { 51.8, 49.8, 440, 120 }, + [150] = { 51.8, 49.7, 440, 120 }, + [151] = { 52.1, 49.6, 440, 120 }, + [152] = { 51.7, 49.6, 440, 120 }, + [153] = { 52, 49.3, 440, 120 }, + [154] = { 50.8, 38.5, 440, 120 }, + [155] = { 51.1, 38.4, 440, 120 }, + [156] = { 51.1, 38, 440, 120 }, + [157] = { 54.2, 31.9, 440, 120 }, + [158] = { 54.5, 31.8, 440, 120 }, + [159] = { 54.6, 31.6, 440, 120 }, + [160] = { 54.1, 31.6, 440, 120 }, + [161] = { 54.5, 31.4, 440, 120 }, + [162] = { 54.2, 31.2, 440, 120 }, + [163] = { 48.1, 30.4, 440, 120 }, + [164] = { 47.8, 29.9, 440, 120 }, + [165] = { 48.2, 29.3, 440, 120 }, + [166] = { 62.8, 53.2, 618, 120 }, + [167] = { 66.3, 53, 618, 120 }, + [168] = { 62.1, 53, 618, 120 }, + [169] = { 62.6, 52.7, 618, 120 }, + [170] = { 66.4, 52.6, 618, 120 }, + [171] = { 62.3, 52.5, 618, 120 }, + [172] = { 62.1, 52.5, 618, 120 }, + [173] = { 65.9, 52, 618, 120 }, + [174] = { 62.5, 48.2, 618, 120 }, + [175] = { 62.8, 47.7, 618, 120 }, + [176] = { 63.3, 47, 618, 120 }, + [177] = { 45, 42.4, 618, 120 }, + [178] = { 44.9, 42.4, 618, 120 }, + [179] = { 44.4, 42.2, 618, 120 }, + [180] = { 44.9, 42.1, 618, 120 }, + [181] = { 42.8, 38.2, 618, 120 }, + [182] = { 42.6, 38, 618, 120 }, + [183] = { 42.6, 37.7, 618, 120 }, + [184] = { 42.3, 37.6, 618, 120 }, + [185] = { 45.7, 37.5, 618, 120 }, + [186] = { 45.9, 37.5, 618, 120 }, + [187] = { 42.8, 37.5, 618, 120 }, + [188] = { 46.5, 37.3, 618, 120 }, + [189] = { 42.5, 37.2, 618, 120 }, + [190] = { 45.9, 37.2, 618, 120 }, + [191] = { 46.4, 36.8, 618, 120 }, + [192] = { 46.1, 36.4, 618, 120 }, + [193] = { 50, 18, 618, 120 }, + [194] = { 49.9, 17.6, 618, 120 }, + [195] = { 55.2, 15.2, 618, 120 }, + [196] = { 55.3, 15, 618, 120 }, + [197] = { 55.2, 14.9, 618, 120 }, + [198] = { 54.6, 14.9, 618, 120 }, + [199] = { 55.1, 14.7, 618, 120 }, + [200] = { 55.1, 14.6, 618, 120 }, + [201] = { 50.1, 12.9, 618, 120 }, + [202] = { 50.3, 12.9, 618, 120 }, + [203] = { 49.6, 12.8, 618, 120 }, + [204] = { 50.3, 12.4, 618, 120 }, + [205] = { 49.9, 12.4, 618, 120 }, + [206] = { 50.1, 12.2, 618, 120 }, + [207] = { 10.8, 52.9, 1941, 120 }, + [208] = { 9.6, 52.9, 1941, 120 }, + [209] = { 8.4, 50.6, 1941, 120 }, + [210] = { 11.5, 48, 1941, 120 }, + [211] = { 37.3, 36.6, 1941, 120 }, + [212] = { 39.1, 35.7, 1941, 120 }, + [213] = { 35, 34.1, 1941, 120 }, + [214] = { 37.8, 32.7, 1941, 120 }, + [215] = { 7.1, 18.8, 1941, 120 }, + [216] = { 9.5, 18.3, 1941, 120 }, + [217] = { 7.4, 15.9, 1941, 120 }, + [218] = { 7.5, 15.7, 1941, 120 }, + [219] = { 8.6, 15.1, 1941, 120 }, + [220] = { 6.9, 14.8, 1941, 120 }, + [221] = { 8.1, 13.5, 1941, 120 }, + [222] = { 34.7, 55.4, 4012, 120 }, + [223] = { 22.4, 55.4, 4012, 120 }, + [224] = { 22.4, 55.3, 4012, 120 }, + [225] = { 22.9, 55.3, 4012, 120 }, + [226] = { 35.5, 54.6, 4012, 120 }, + [227] = { 23, 54.2, 4012, 120 }, + [228] = { 33.6, 54.1, 4012, 120 }, + [229] = { 33.4, 53.9, 4012, 120 }, + [230] = { 22.6, 53.4, 4012, 120 }, + [231] = { 33.2, 53.3, 4012, 120 }, + [232] = { 27.4, 37.9, 4012, 120 }, + [233] = { 27.2, 37.2, 4012, 120 }, + [234] = { 28.2, 37.1, 4012, 120 }, + [235] = { 28.3, 36.6, 4012, 120 }, + [236] = { 29.2, 36.3, 4012, 120 }, + [237] = { 27.6, 36.1, 4012, 120 }, + [238] = { 27.3, 34.9, 4012, 120 }, + [239] = { 99, 95.9, 5581, 120 }, + [240] = { 99.4, 95.7, 5581, 120 }, + [241] = { 100, 95.1, 5581, 120 }, + [242] = { 99.3, 95.1, 5581, 120 }, + [243] = { 100, 94.1, 5581, 120 }, + [244] = { 99.3, 93.9, 5581, 120 }, + [245] = { 99.3, 79.2, 5581, 120 }, + [246] = { 99.6, 77, 5581, 120 }, + }, + }, + [181193] = { + ["coords"] = { + [1] = { 60, 45.8, 4, 120 }, + [2] = { 60.9, 44.9, 4, 120 }, + [3] = { 61.7, 42.7, 4, 120 }, + [4] = { 46.2, 39.3, 4, 120 }, + [5] = { 46, 38, 4, 120 }, + [6] = { 47.3, 37.6, 4, 120 }, + [7] = { 47.2, 36.9, 4, 120 }, + [8] = { 47.9, 36.5, 4, 120 }, + [9] = { 45.9, 36.4, 4, 120 }, + [10] = { 56.9, 36.2, 4, 120 }, + [11] = { 57.9, 34.9, 4, 120 }, + [12] = { 56.1, 34, 4, 120 }, + [13] = { 63.7, 31.7, 4, 120 }, + [14] = { 63.9, 30.6, 4, 120 }, + [15] = { 62.6, 30.1, 4, 120 }, + [16] = { 52.3, 29.6, 4, 120 }, + [17] = { 51.7, 28.1, 4, 120 }, + [18] = { 45.1, 21.3, 4, 120 }, + [19] = { 45.4, 21, 4, 120 }, + [20] = { 47, 19.9, 4, 120 }, + [21] = { 47, 18.7, 4, 120 }, + [22] = { 18.3, 66.9, 16, 120 }, + [23] = { 19.1, 66.2, 16, 120 }, + [24] = { 18.1, 66.2, 16, 120 }, + [25] = { 24.8, 59.7, 16, 120 }, + [26] = { 24.7, 59.6, 16, 120 }, + [27] = { 24.7, 59.5, 16, 120 }, + [28] = { 45.3, 59.1, 16, 120 }, + [29] = { 24.8, 59.1, 16, 120 }, + [30] = { 24.3, 59, 16, 120 }, + [31] = { 24.2, 59, 16, 120 }, + [32] = { 45.2, 58.1, 16, 120 }, + [33] = { 45.1, 57.6, 16, 120 }, + [34] = { 45.2, 57.6, 16, 120 }, + [35] = { 17.2, 54.8, 16, 120 }, + [36] = { 48, 54.6, 16, 120 }, + [37] = { 48.5, 54.2, 16, 120 }, + [38] = { 47.6, 54.2, 16, 120 }, + [39] = { 17.5, 54, 16, 120 }, + [40] = { 17.1, 53.5, 16, 120 }, + [41] = { 47.9, 53.3, 16, 120 }, + [42] = { 47.9, 53.2, 16, 120 }, + [43] = { 45, 49.5, 16, 120 }, + [44] = { 44.2, 49.5, 16, 120 }, + [45] = { 44.2, 49, 16, 120 }, + [46] = { 44.9, 48.9, 16, 120 }, + [47] = { 44.7, 48.5, 16, 120 }, + [48] = { 80.6, 62.7, 28, 120 }, + [49] = { 75.5, 54.6, 28, 120 }, + [50] = { 33.6, 70.9, 46, 120 }, + [51] = { 33.2, 70.2, 46, 120 }, + [52] = { 32.6, 69.6, 46, 120 }, + [53] = { 23.2, 69.1, 46, 120 }, + [54] = { 22.6, 68, 46, 120 }, + [55] = { 22.7, 67.9, 46, 120 }, + [56] = { 24.1, 67.6, 46, 120 }, + [57] = { 24.7, 50.8, 46, 120 }, + [58] = { 25.5, 50.7, 46, 120 }, + [59] = { 73.4, 50.2, 46, 120 }, + [60] = { 24.4, 50.2, 46, 120 }, + [61] = { 74.3, 48.7, 46, 120 }, + [62] = { 73.4, 47.5, 46, 120 }, + [63] = { 74.1, 47.2, 46, 120 }, + [64] = { 67.3, 37.7, 46, 120 }, + [65] = { 66.1, 37, 46, 120 }, + [66] = { 67.8, 36.9, 46, 120 }, + [67] = { 67.9, 36.2, 46, 120 }, + [68] = { 66.3, 36, 46, 120 }, + [69] = { 67.8, 35.5, 46, 120 }, + [70] = { 78.8, 30.5, 46, 120 }, + [71] = { 79.7, 30.4, 46, 120 }, + [72] = { 79.8, 29, 46, 120 }, + [73] = { 78.5, 29, 46, 120 }, + [74] = { 80.4, 28.7, 46, 120 }, + [75] = { 79.9, 28.5, 46, 120 }, + [76] = { 22.4, 86.4, 139, 120 }, + [77] = { 16.7, 77.5, 139, 120 }, + [78] = { 76, 72.4, 139, 120 }, + [79] = { 67.2, 72.3, 139, 120 }, + [80] = { 66.1, 72.1, 139, 120 }, + [81] = { 76.5, 72, 139, 120 }, + [82] = { 75.3, 72, 139, 120 }, + [83] = { 75.5, 71.8, 139, 120 }, + [84] = { 77, 71.5, 139, 120 }, + [85] = { 66.3, 71.5, 139, 120 }, + [86] = { 23.1, 71.4, 139, 120 }, + [87] = { 24.4, 71, 139, 120 }, + [88] = { 77, 71, 139, 120 }, + [89] = { 23.8, 71, 139, 120 }, + [90] = { 23.6, 70.9, 139, 120 }, + [91] = { 23.9, 70.7, 139, 120 }, + [92] = { 75.5, 70.5, 139, 120 }, + [93] = { 70.5, 58.5, 139, 120 }, + [94] = { 71.3, 57.6, 139, 120 }, + [95] = { 70.5, 56.1, 139, 120 }, + [96] = { 80.9, 76.8, 405, 300 }, + [97] = { 34.7, 64.8, 440, 120 }, + [98] = { 34.5, 64.8, 440, 120 }, + [99] = { 34.3, 64.6, 440, 120 }, + [100] = { 34.7, 64.5, 440, 120 }, + [101] = { 34.4, 64.5, 440, 120 }, + [102] = { 34.2, 64.4, 440, 120 }, + [103] = { 30.3, 58.4, 440, 120 }, + [104] = { 36.2, 58.2, 440, 120 }, + [105] = { 35.6, 58.1, 440, 120 }, + [106] = { 30.1, 58.1, 440, 120 }, + [107] = { 36.1, 57.9, 440, 120 }, + [108] = { 35.7, 57.8, 440, 120 }, + [109] = { 30.5, 57.7, 440, 120 }, + [110] = { 29.9, 57.7, 440, 120 }, + [111] = { 35.6, 57.6, 440, 120 }, + [112] = { 36.2, 57.5, 440, 120 }, + [113] = { 30.2, 57.4, 440, 120 }, + [114] = { 35.9, 57.4, 440, 120 }, + [115] = { 52.2, 56.9, 440, 120 }, + [116] = { 52, 56.5, 440, 120 }, + [117] = { 57.7, 53.8, 440, 120 }, + [118] = { 58.1, 53.4, 440, 120 }, + [119] = { 57.4, 52.9, 440, 120 }, + [120] = { 51.8, 50.3, 440, 120 }, + [121] = { 52, 50.3, 440, 120 }, + [122] = { 52.2, 50.3, 440, 120 }, + [123] = { 51.6, 49.8, 440, 120 }, + [124] = { 52.2, 49.5, 440, 120 }, + [125] = { 52, 49.3, 440, 120 }, + [126] = { 50.6, 38.2, 440, 120 }, + [127] = { 51.2, 38.2, 440, 120 }, + [128] = { 51, 37.7, 440, 120 }, + [129] = { 54.1, 31.9, 440, 120 }, + [130] = { 54.7, 31.8, 440, 120 }, + [131] = { 54.6, 31.6, 440, 120 }, + [132] = { 54.1, 31.5, 440, 120 }, + [133] = { 48.4, 30.3, 440, 120 }, + [134] = { 48, 30.2, 440, 120 }, + [135] = { 48.5, 30.1, 440, 120 }, + [136] = { 48.5, 30, 440, 120 }, + [137] = { 48.6, 29.8, 440, 120 }, + [138] = { 66.6, 53.3, 618, 120 }, + [139] = { 62.3, 53.1, 618, 120 }, + [140] = { 62.6, 52.7, 618, 120 }, + [141] = { 66.7, 52.7, 618, 120 }, + [142] = { 62.1, 52.5, 618, 120 }, + [143] = { 66.5, 52.4, 618, 120 }, + [144] = { 66.9, 52.3, 618, 120 }, + [145] = { 62.3, 52.2, 618, 120 }, + [146] = { 62.7, 52.2, 618, 120 }, + [147] = { 62.3, 51.8, 618, 120 }, + [148] = { 62.6, 51.5, 618, 120 }, + [149] = { 66, 51.3, 618, 120 }, + [150] = { 66.5, 51, 618, 120 }, + [151] = { 62.9, 46.9, 618, 120 }, + [152] = { 44.6, 42.4, 618, 120 }, + [153] = { 44.2, 41.9, 618, 120 }, + [154] = { 45, 41.9, 618, 120 }, + [155] = { 45, 41.8, 618, 120 }, + [156] = { 44.6, 41.7, 618, 120 }, + [157] = { 44.6, 41.4, 618, 120 }, + [158] = { 45.8, 37.8, 618, 120 }, + [159] = { 43.2, 37.8, 618, 120 }, + [160] = { 43, 37.8, 618, 120 }, + [161] = { 46.3, 37.5, 618, 120 }, + [162] = { 42.7, 37.4, 618, 120 }, + [163] = { 45.8, 37.2, 618, 120 }, + [164] = { 42.9, 37.1, 618, 120 }, + [165] = { 50.2, 18.3, 618, 120 }, + [166] = { 50.2, 18.2, 618, 120 }, + [167] = { 50, 18, 618, 120 }, + [168] = { 50.3, 17.8, 618, 120 }, + [169] = { 50.1, 17.5, 618, 120 }, + [170] = { 55, 15.4, 618, 120 }, + [171] = { 55, 15.3, 618, 120 }, + [172] = { 55.2, 15.2, 618, 120 }, + [173] = { 54.9, 15.2, 618, 120 }, + [174] = { 54.7, 14.8, 618, 120 }, + [175] = { 50.3, 12.9, 618, 120 }, + [176] = { 49.7, 12.8, 618, 120 }, + [177] = { 50.1, 12.2, 618, 120 }, + [178] = { 9.5, 52.8, 1941, 120 }, + [179] = { 8.4, 50.7, 1941, 120 }, + [180] = { 8.5, 50.6, 1941, 120 }, + [181] = { 37.4, 36.6, 1941, 120 }, + [182] = { 39.6, 34.6, 1941, 120 }, + [183] = { 35.7, 32.1, 1941, 120 }, + [184] = { 7.1, 18.9, 1941, 120 }, + [185] = { 8.4, 18.4, 1941, 120 }, + [186] = { 9.5, 18.4, 1941, 120 }, + [187] = { 6.2, 15.9, 1941, 120 }, + [188] = { 9.4, 14.7, 1941, 120 }, + [189] = { 8.1, 13.5, 1941, 120 }, + [190] = { 34.1, 54.9, 4012, 120 }, + [191] = { 23.3, 54.8, 4012, 120 }, + [192] = { 22, 54.5, 4012, 120 }, + [193] = { 34.7, 54.4, 4012, 120 }, + [194] = { 33.2, 54.3, 4012, 120 }, + [195] = { 33.5, 54.2, 4012, 120 }, + [196] = { 35.3, 53.8, 4012, 120 }, + [197] = { 22.3, 53.7, 4012, 120 }, + [198] = { 35.3, 53.1, 4012, 120 }, + [199] = { 33.5, 52.5, 4012, 120 }, + [200] = { 27.4, 37.8, 4012, 120 }, + [201] = { 28.4, 36.7, 4012, 120 }, + [202] = { 27.4, 34.9, 4012, 120 }, + [203] = { 98.8, 95.2, 5581, 120 }, + [204] = { 98.4, 94.2, 5581, 120 }, + [205] = { 98.4, 94.1, 5581, 120 }, + [206] = { 99.7, 93.9, 5581, 120 }, + [207] = { 100, 78, 5581, 120 }, + }, + }, + [181194] = { + ["coords"] = { + [1] = { 59.9, 45.1, 4, 120 }, + [2] = { 59.8, 43.8, 4, 120 }, + [3] = { 61.4, 43.5, 4, 120 }, + [4] = { 60.7, 43.5, 4, 120 }, + [5] = { 60, 43, 4, 120 }, + [6] = { 61.1, 42.2, 4, 120 }, + [7] = { 47.7, 37.2, 4, 120 }, + [8] = { 48.2, 36.7, 4, 120 }, + [9] = { 56.9, 36.2, 4, 120 }, + [10] = { 55.6, 35.6, 4, 120 }, + [11] = { 57.9, 34.9, 4, 120 }, + [12] = { 56.7, 34.4, 4, 120 }, + [13] = { 63.9, 32.1, 4, 120 }, + [14] = { 62, 30.8, 4, 120 }, + [15] = { 62.5, 29.6, 4, 120 }, + [16] = { 63, 29.5, 4, 120 }, + [17] = { 52.1, 29, 4, 120 }, + [18] = { 52.7, 28.9, 4, 120 }, + [19] = { 51, 27.6, 4, 120 }, + [20] = { 52.8, 26.5, 4, 120 }, + [21] = { 51.4, 26, 4, 120 }, + [22] = { 46.2, 21.7, 4, 120 }, + [23] = { 46.8, 21.6, 4, 120 }, + [24] = { 46.4, 20.3, 4, 120 }, + [25] = { 45.4, 19.2, 4, 120 }, + [26] = { 45.9, 18.3, 4, 120 }, + [27] = { 18, 67.2, 16, 120 }, + [28] = { 18.9, 67, 16, 120 }, + [29] = { 24.7, 59.5, 16, 120 }, + [30] = { 24.8, 59.2, 16, 120 }, + [31] = { 45, 59.1, 16, 120 }, + [32] = { 45.6, 58.7, 16, 120 }, + [33] = { 24.3, 58.7, 16, 120 }, + [34] = { 45.5, 58.1, 16, 120 }, + [35] = { 44.9, 57.8, 16, 120 }, + [36] = { 17.2, 54.8, 16, 120 }, + [37] = { 48.3, 54.6, 16, 120 }, + [38] = { 17.6, 54.3, 16, 120 }, + [39] = { 47.6, 54.2, 16, 120 }, + [40] = { 48.5, 54.2, 16, 120 }, + [41] = { 48.2, 54.1, 16, 120 }, + [42] = { 17.3, 53.7, 16, 120 }, + [43] = { 17.8, 53.6, 16, 120 }, + [44] = { 48.3, 53.3, 16, 120 }, + [45] = { 48.2, 53.3, 16, 120 }, + [46] = { 44.7, 50.5, 16, 120 }, + [47] = { 44.8, 50, 16, 120 }, + [48] = { 44.2, 49, 16, 120 }, + [49] = { 44.2, 48.9, 16, 120 }, + [50] = { 80.6, 62.7, 28, 120 }, + [51] = { 79.8, 62.1, 28, 120 }, + [52] = { 80.3, 61.1, 28, 120 }, + [53] = { 80.5, 60.9, 28, 120 }, + [54] = { 80.2, 60.5, 28, 120 }, + [55] = { 76, 55.5, 28, 120 }, + [56] = { 75.4, 55.2, 28, 120 }, + [57] = { 76.4, 54.4, 28, 120 }, + [58] = { 75.8, 54.2, 28, 120 }, + [59] = { 75.4, 53.9, 28, 120 }, + [60] = { 75.7, 53.7, 28, 120 }, + [61] = { 76.1, 53.6, 28, 120 }, + [62] = { 33.8, 71.4, 46, 120 }, + [63] = { 33, 70.8, 46, 120 }, + [64] = { 34.1, 69.7, 46, 120 }, + [65] = { 33, 69.1, 46, 120 }, + [66] = { 34.6, 68.4, 46, 120 }, + [67] = { 22.7, 68, 46, 120 }, + [68] = { 33.8, 67.8, 46, 120 }, + [69] = { 24.9, 52.2, 46, 120 }, + [70] = { 23.7, 51.4, 46, 120 }, + [71] = { 24.7, 50.8, 46, 120 }, + [72] = { 23.5, 50.2, 46, 120 }, + [73] = { 25.1, 49.4, 46, 120 }, + [74] = { 73.6, 49.1, 46, 120 }, + [75] = { 73.2, 48.4, 46, 120 }, + [76] = { 74.1, 47.2, 46, 120 }, + [77] = { 67.3, 37.6, 46, 120 }, + [78] = { 67, 35.2, 46, 120 }, + [79] = { 78.9, 30.4, 46, 120 }, + [80] = { 79.8, 30.3, 46, 120 }, + [81] = { 80.1, 29.6, 46, 120 }, + [82] = { 79.9, 28.5, 46, 120 }, + [83] = { 22.4, 86.5, 139, 120 }, + [84] = { 21.4, 85.7, 139, 120 }, + [85] = { 22, 84.6, 139, 120 }, + [86] = { 22.3, 84.4, 139, 120 }, + [87] = { 21.9, 84, 139, 120 }, + [88] = { 17.2, 78.4, 139, 120 }, + [89] = { 16.6, 78.1, 139, 120 }, + [90] = { 17.6, 77.2, 139, 120 }, + [91] = { 16.9, 76.9, 139, 120 }, + [92] = { 16.6, 76.7, 139, 120 }, + [93] = { 16.9, 76.5, 139, 120 }, + [94] = { 17.3, 76.3, 139, 120 }, + [95] = { 67.3, 72.8, 139, 120 }, + [96] = { 76.4, 72.1, 139, 120 }, + [97] = { 66.3, 71.5, 139, 120 }, + [98] = { 24.2, 71.5, 139, 120 }, + [99] = { 65.6, 71.4, 139, 120 }, + [100] = { 77.4, 70.7, 139, 120 }, + [101] = { 76.3, 70.3, 139, 120 }, + [102] = { 70.8, 57.9, 139, 120 }, + [103] = { 70.7, 57.5, 139, 120 }, + [104] = { 72, 57.3, 139, 120 }, + [105] = { 71, 56.8, 139, 120 }, + [106] = { 81, 76.6, 405, 300 }, + [107] = { 34.7, 64.8, 440, 120 }, + [108] = { 34.4, 64.1, 440, 120 }, + [109] = { 34.7, 64.1, 440, 120 }, + [110] = { 34.4, 63.9, 440, 120 }, + [111] = { 30.3, 58.4, 440, 120 }, + [112] = { 29.9, 58.2, 440, 120 }, + [113] = { 30.4, 58.2, 440, 120 }, + [114] = { 30.4, 57.9, 440, 120 }, + [115] = { 51.9, 56.8, 440, 120 }, + [116] = { 52.6, 56.8, 440, 120 }, + [117] = { 52.6, 56.6, 440, 120 }, + [118] = { 52.8, 56.4, 440, 120 }, + [119] = { 52.4, 56.2, 440, 120 }, + [120] = { 52.1, 56.1, 440, 120 }, + [121] = { 52.2, 55.9, 440, 120 }, + [122] = { 52.4, 55.8, 440, 120 }, + [123] = { 58, 54.1, 440, 120 }, + [124] = { 57.7, 53.8, 440, 120 }, + [125] = { 57.5, 53.2, 440, 120 }, + [126] = { 57.8, 53, 440, 120 }, + [127] = { 51.7, 50.1, 440, 120 }, + [128] = { 52.2, 49.5, 440, 120 }, + [129] = { 51.8, 49.3, 440, 120 }, + [130] = { 52.2, 49.2, 440, 120 }, + [131] = { 50.6, 38.5, 440, 120 }, + [132] = { 50.8, 38.5, 440, 120 }, + [133] = { 50.8, 38.1, 440, 120 }, + [134] = { 50.9, 38, 440, 120 }, + [135] = { 50.7, 37.9, 440, 120 }, + [136] = { 50.9, 37.8, 440, 120 }, + [137] = { 54.5, 31.8, 440, 120 }, + [138] = { 54.7, 31.8, 440, 120 }, + [139] = { 54.6, 31.6, 440, 120 }, + [140] = { 54.1, 31.6, 440, 120 }, + [141] = { 54.5, 31.4, 440, 120 }, + [142] = { 54.3, 31.3, 440, 120 }, + [143] = { 48.6, 29.7, 440, 120 }, + [144] = { 48.3, 29.6, 440, 120 }, + [145] = { 48, 29.5, 440, 120 }, + [146] = { 48.2, 29.3, 440, 120 }, + [147] = { 62.8, 53.2, 618, 120 }, + [148] = { 66.1, 52.4, 618, 120 }, + [149] = { 66.9, 52.2, 618, 120 }, + [150] = { 62.3, 52.2, 618, 120 }, + [151] = { 62.9, 51.9, 618, 120 }, + [152] = { 62.5, 51.5, 618, 120 }, + [153] = { 66.7, 51.5, 618, 120 }, + [154] = { 66, 51.3, 618, 120 }, + [155] = { 66.3, 51.3, 618, 120 }, + [156] = { 63.3, 48.4, 618, 120 }, + [157] = { 62.8, 48.1, 618, 120 }, + [158] = { 63.2, 48, 618, 120 }, + [159] = { 63, 47.6, 618, 120 }, + [160] = { 63.3, 47.5, 618, 120 }, + [161] = { 44.2, 42.4, 618, 120 }, + [162] = { 44.2, 41.9, 618, 120 }, + [163] = { 44.7, 41.7, 618, 120 }, + [164] = { 42.6, 38.3, 618, 120 }, + [165] = { 42.8, 38.2, 618, 120 }, + [166] = { 43, 37.8, 618, 120 }, + [167] = { 42.6, 37.7, 618, 120 }, + [168] = { 46.1, 37.6, 618, 120 }, + [169] = { 45.6, 37, 618, 120 }, + [170] = { 46.2, 36.8, 618, 120 }, + [171] = { 46.1, 36.4, 618, 120 }, + [172] = { 50.1, 18.6, 618, 120 }, + [173] = { 49.8, 18, 618, 120 }, + [174] = { 50, 17.7, 618, 120 }, + [175] = { 49.8, 17.6, 618, 120 }, + [176] = { 54.9, 15.2, 618, 120 }, + [177] = { 54.7, 15, 618, 120 }, + [178] = { 54.8, 14.6, 618, 120 }, + [179] = { 50, 12.9, 618, 120 }, + [180] = { 50.3, 12.6, 618, 120 }, + [181] = { 50.1, 12.2, 618, 120 }, + [182] = { 7.6, 52.3, 1941, 120 }, + [183] = { 11.4, 52.2, 1941, 120 }, + [184] = { 11.1, 51.2, 1941, 120 }, + [185] = { 12.1, 50.1, 1941, 120 }, + [186] = { 10.4, 49.2, 1941, 120 }, + [187] = { 8.7, 48.7, 1941, 120 }, + [188] = { 9.3, 47.6, 1941, 120 }, + [189] = { 10.3, 47.3, 1941, 120 }, + [190] = { 38.8, 38.2, 1941, 120 }, + [191] = { 37.4, 36.7, 1941, 120 }, + [192] = { 36.5, 33.7, 1941, 120 }, + [193] = { 37.7, 32.8, 1941, 120 }, + [194] = { 6.7, 17.4, 1941, 120 }, + [195] = { 9.4, 14.6, 1941, 120 }, + [196] = { 7.3, 13.5, 1941, 120 }, + [197] = { 9.1, 13.2, 1941, 120 }, + [198] = { 23.5, 55.3, 4012, 120 }, + [199] = { 34.5, 54.4, 4012, 120 }, + [200] = { 22.2, 53.7, 4012, 120 }, + [201] = { 21.3, 53.6, 4012, 120 }, + [202] = { 35.8, 52.7, 4012, 120 }, + [203] = { 34.5, 52.3, 4012, 120 }, + [204] = { 27.8, 37.1, 4012, 120 }, + [205] = { 27.6, 36.6, 4012, 120 }, + [206] = { 29.2, 36.4, 4012, 120 }, + [207] = { 29.2, 36.3, 4012, 120 }, + [208] = { 28, 35.7, 4012, 120 }, + [209] = { 98.4, 94.2, 5581, 120 }, + [210] = { 99.3, 79.2, 5581, 120 }, + [211] = { 99.2, 78.1, 5581, 120 }, + }, + }, + [181195] = { + ["coords"] = { + [1] = { 60.1, 38.9, 3456, 180 }, + }, + }, + [181197] = { + ["coords"] = { + [1] = { 74.7, 15.5, 3456, 180 }, + }, + }, + [181198] = { + ["coords"] = { + [1] = { 55.3, 52.6, 3456, 180 }, + }, + }, + [181199] = { + ["coords"] = { + [1] = { 55.9, 61.4, 3456, 180 }, + }, + }, + [181200] = { + ["coords"] = { + [1] = { 56, 69.7, 3456, 180 }, + }, + }, + [181201] = { + ["coords"] = { + [1] = { 59.5, 73.8, 3456, 180 }, + }, + }, + [181202] = { + ["coords"] = { + [1] = { 65.8, 63.2, 3456, 180 }, + }, + }, + [181206] = { + ["coords"] = { + [1] = { 71.5, 66.1, 2017, 180 }, + }, + }, + [181209] = { + ["coords"] = { + [1] = { 73.8, 17.4, 3456, 180 }, + }, + }, + [181210] = { + ["coords"] = { + [1] = { 52.5, 50.4, 3456, 180 }, + }, + }, + [181211] = { + ["coords"] = { + [1] = { 53.9, 50.4, 3456, 180 }, + }, + }, + [181212] = { + ["coords"] = { + [1] = { 53.9, 48.3, 3456, 180 }, + }, + }, + [181213] = { + ["coords"] = { + [1] = { 52.5, 48.3, 3456, 180 }, + }, + }, + [181214] = "_", + [181215] = { + ["coords"] = { + [1] = { 33.1, 60, 440, 120 }, + [2] = { 54.3, 53.4, 440, 120 }, + [3] = { 50.9, 33.2, 440, 120 }, + [4] = { 20.1, 35, 1941, 120 }, + }, + }, + [181225] = { + ["coords"] = { + [1] = { 44.3, 63.6, 5148, 604800 }, + }, + }, + [181228] = { + ["coords"] = { + [1] = { 33.9, 41.2, 5148, 25 }, + }, + }, + [181229] = { + ["coords"] = { + [1] = { 53.2, 49.4, 3456, 180 }, + }, + }, + [181230] = { + ["coords"] = { + [1] = { 27.4, 88.3, 3456, 180 }, + }, + }, + [181231] = { + ["coords"] = { + [1] = { 82.8, 56.7, 3456, 180 }, + }, + }, + [181232] = { + ["coords"] = { + [1] = { 28.2, 8.9, 3456, 180 }, + }, + }, + [181233] = { + ["coords"] = { + [1] = { 78.6, 14.5, 3456, 180 }, + }, + }, + [181234] = { + ["coords"] = { + [1] = { 45.7, 57, 3456, 180 }, + }, + }, + [181235] = { + ["coords"] = { + [1] = { 66.3, 25.6, 3456, 180 }, + }, + }, + [181236] = "_", + [181240] = { + ["coords"] = { + [1] = { 83.8, 56.7, 3456, 180 }, + }, + }, + [181241] = { + ["coords"] = { + [1] = { 78.9, 56.7, 3456, 180 }, + }, + }, + [181242] = { + ["coords"] = { + [1] = { 81.5, 60.5, 3456, 180 }, + }, + }, + [181243] = { + ["coords"] = { + [1] = { 81.5, 52.9, 3456, 180 }, + }, + }, + [181254] = { + ["coords"] = { + [1] = { 81, 60.3, 139, 120 }, + [2] = { 25.4, 56.3, 141, 120 }, + [3] = { 38.6, 28.8, 215, 120 }, + [4] = { 66, 46, 1497, 120 }, + [5] = { 62.1, 71.9, 1519, 120 }, + [6] = { 34.5, 67.7, 1537, 120 }, + [7] = { 30.1, 61, 1537, 120 }, + [8] = { 52.6, 73.3, 1637, 120 }, + [9] = { 43.4, 58.8, 1638, 120 }, + [10] = { 39.4, 45, 1657, 120 }, + [11] = { 40.2, 40, 4012, 120 }, + }, + }, + [181255] = { + ["coords"] = { + [1] = { 81, 60.5, 139, 120 }, + [2] = { 25.3, 56.3, 141, 120 }, + [3] = { 38.6, 28.9, 215, 120 }, + [4] = { 66.4, 46.2, 1497, 120 }, + [5] = { 62, 71.6, 1519, 120 }, + [6] = { 34.7, 68.5, 1537, 120 }, + [7] = { 30.5, 61.6, 1537, 120 }, + [8] = { 52.3, 73.3, 1637, 120 }, + [9] = { 43.5, 59.4, 1638, 120 }, + [10] = { 39, 45, 1657, 120 }, + [11] = { 40.2, 40.2, 4012, 120 }, + }, + }, + [181256] = { + ["coords"] = { + [1] = { 80.9, 60.5, 139, 120 }, + [2] = { 81, 60.1, 139, 120 }, + [3] = { 80.8, 60, 139, 120 }, + [4] = { 25.5, 56.6, 141, 120 }, + [5] = { 25.3, 56.4, 141, 120 }, + [6] = { 25.5, 56.3, 141, 120 }, + [7] = { 38.6, 28.9, 215, 120 }, + [8] = { 38.3, 28.8, 215, 120 }, + [9] = { 38.6, 28.7, 215, 120 }, + [10] = { 66.3, 46.5, 1497, 120 }, + [11] = { 65.5, 46.2, 1497, 120 }, + [12] = { 65.4, 45.8, 1497, 120 }, + [13] = { 62, 72.6, 1519, 120 }, + [14] = { 62, 72.3, 1519, 120 }, + [15] = { 62.3, 72, 1519, 120 }, + [16] = { 34.5, 68.6, 1537, 120 }, + [17] = { 33.9, 67.5, 1537, 120 }, + [18] = { 30.3, 61.9, 1537, 120 }, + [19] = { 29.5, 61.1, 1537, 120 }, + [20] = { 29.1, 59.8, 1537, 120 }, + [21] = { 52.3, 73.6, 1637, 120 }, + [22] = { 52, 73.6, 1637, 120 }, + [23] = { 52.9, 73.4, 1637, 120 }, + [24] = { 43.2, 59.4, 1638, 120 }, + [25] = { 42, 58.7, 1638, 120 }, + [26] = { 43.3, 58.2, 1638, 120 }, + [27] = { 39.9, 46.6, 1657, 120 }, + [28] = { 39.1, 45.3, 1657, 120 }, + [29] = { 39.8, 45, 1657, 120 }, + [30] = { 40.2, 40.2, 4012, 120 }, + [31] = { 40.2, 39.8, 4012, 120 }, + [32] = { 40, 39.7, 4012, 120 }, + }, + }, + [181257] = { + ["coords"] = { + [1] = { 80, 59.2, 139, 900 }, + [2] = { 80, 58.6, 139, 900 }, + [3] = { 39, 38.7, 4012, 900 }, + [4] = { 39.1, 38, 4012, 900 }, + }, + }, + [181287] = { + ["coords"] = { + [1] = { 30.3, 91.2, 3456, 604800 }, + [2] = { 44.4, 81.5, 3456, 604800 }, + [3] = { 65.7, 80.9, 3456, 604800 }, + [4] = { 74, 80.6, 3456, 604800 }, + [5] = { 29, 78.7, 3456, 604800 }, + [6] = { 58.2, 78.6, 3456, 604800 }, + [7] = { 74.9, 77.4, 3456, 604800 }, + [8] = { 57.1, 77.1, 3456, 604800 }, + [9] = { 33.8, 74.9, 3456, 604800 }, + [10] = { 47, 68.8, 3456, 604800 }, + [11] = { 29.2, 68.3, 3456, 604800 }, + [12] = { 29.9, 67.6, 3456, 604800 }, + [13] = { 28.9, 67.6, 3456, 604800 }, + [14] = { 34.3, 65.7, 3456, 604800 }, + [15] = { 64, 65.2, 3456, 604800 }, + [16] = { 66.8, 64, 3456, 604800 }, + [17] = { 74.3, 63.4, 3456, 604800 }, + [18] = { 76.7, 60.9, 3456, 604800 }, + [19] = { 83.7, 55.5, 3456, 604800 }, + [20] = { 79.4, 55.2, 3456, 604800 }, + [21] = { 31.2, 53.4, 3456, 604800 }, + [22] = { 34.4, 44.4, 3456, 604800 }, + [23] = { 31.6, 37.2, 3456, 604800 }, + [24] = { 49.5, 35.5, 3456, 604800 }, + [25] = { 72.2, 35.1, 3456, 604800 }, + [26] = { 53.1, 31.5, 3456, 604800 }, + [27] = { 77.9, 31.3, 3456, 604800 }, + [28] = { 63.3, 25.4, 3456, 604800 }, + [29] = { 55.9, 24.5, 3456, 604800 }, + [30] = { 41.4, 24.2, 3456, 604800 }, + [31] = { 33.2, 24, 3456, 604800 }, + [32] = { 48.2, 24, 3456, 604800 }, + [33] = { 60.8, 18, 3456, 604800 }, + [34] = { 45.6, 17, 3456, 604800 }, + [35] = { 50.6, 14.5, 3456, 604800 }, + [36] = { 40.7, 13.9, 3456, 604800 }, + [37] = { 65.2, 13.8, 3456, 604800 }, + [38] = { 27.7, 8.9, 3456, 604800 }, + [39] = { 78, 8, 3456, 604800 }, + }, + }, + [181288] = { + ["coords"] = { + [1] = { 54.1, 31.4, 4, 120 }, + [2] = { 51.2, 17.1, 11, 120 }, + [3] = { 41.5, 43.2, 16, 120 }, + [4] = { 59.8, 39.3, 17, 120 }, + [5] = { 52, 97.6, 36, 120 }, + [6] = { 34, 80.4, 40, 120 }, + [7] = { 62.1, 53.4, 47, 120 }, + [8] = { 32.9, 73.1, 51, 120 }, + [9] = { 54.2, 69.8, 130, 120 }, + [10] = { 57.5, 72.7, 139, 120 }, + [11] = { 56.7, 92.3, 141, 120 }, + [12] = { 41.5, 90.7, 148, 120 }, + [13] = { 34.1, 22.3, 215, 120 }, + [14] = { 54.4, 33.8, 267, 120 }, + [15] = { 64.8, 71.7, 331, 120 }, + [16] = { 87.6, 49.6, 405, 120 }, + [17] = { 60, 71.9, 406, 120 }, + [18] = { 70.3, 75.9, 490, 120 }, + [19] = { 19.3, 17.4, 490, 120 }, + [20] = { 30.7, 43.1, 618, 120 }, + [21] = { 78, 18.8, 1377, 120 }, + [22] = { 66, 36.8, 1497, 120 }, + [23] = { 49.7, 72.2, 1519, 120 }, + [24] = { 64.6, 24.8, 1537, 120 }, + [25] = { 42.3, 54.1, 1583, 120 }, + [26] = { 42.1, 34.2, 1637, 120 }, + [27] = { 21, 26.7, 1638, 120 }, + [28] = { 44.1, 60.5, 2017, 120 }, + [29] = { 22.3, 60.4, 2557, 120 }, + [30] = { 11.4, 55.2, 4012, 120 }, + }, + }, + [181301] = { + ["coords"] = { + [1] = { 54.2, 31.9, 4, 120 }, + [2] = { 51.2, 17.5, 11, 120 }, + [3] = { 41.7, 43.2, 16, 120 }, + [4] = { 59.7, 39.3, 17, 120 }, + [5] = { 52.2, 97, 36, 120 }, + [6] = { 34.4, 80.6, 40, 120 }, + [7] = { 62, 52.8, 47, 120 }, + [8] = { 32.4, 72.8, 51, 120 }, + [9] = { 54.4, 69.5, 130, 120 }, + [10] = { 57.7, 73.1, 139, 120 }, + [11] = { 56.7, 91.9, 141, 120 }, + [12] = { 41.4, 90.8, 148, 120 }, + [13] = { 33.9, 22, 215, 120 }, + [14] = { 54.5, 33.3, 267, 120 }, + [15] = { 64.7, 71.1, 331, 120 }, + [16] = { 87.4, 49.3, 405, 120 }, + [17] = { 60, 72.2, 406, 120 }, + [18] = { 70.1, 75.5, 490, 120 }, + [19] = { 19.4, 17, 490, 120 }, + [20] = { 30.6, 43.2, 618, 120 }, + [21] = { 78.1, 18.4, 1377, 120 }, + [22] = { 48.9, 71.9, 1519, 120 }, + [23] = { 43.3, 32.4, 1637, 120 }, + [24] = { 20.3, 25.2, 1638, 120 }, + [25] = { 11.6, 55.7, 4012, 120 }, + }, + }, + [181302] = { + ["coords"] = { + [1] = { 54.2, 32, 4, 120 }, + [2] = { 54.4, 31.8, 4, 120 }, + [3] = { 54.3, 31.8, 4, 120 }, + [4] = { 41.7, 43.2, 16, 120 }, + [5] = { 41.6, 43.1, 16, 120 }, + [6] = { 41.7, 43.1, 16, 120 }, + [7] = { 59.7, 39.4, 17, 120 }, + [8] = { 52.3, 97.3, 36, 120 }, + [9] = { 52.3, 96.9, 36, 120 }, + [10] = { 34.2, 80.7, 40, 120 }, + [11] = { 62, 52.9, 47, 120 }, + [12] = { 61.9, 52.9, 47, 120 }, + [13] = { 62.1, 52.7, 47, 120 }, + [14] = { 32.4, 73.1, 51, 120 }, + [15] = { 32.3, 73.1, 51, 120 }, + [16] = { 32.4, 72.6, 51, 120 }, + [17] = { 54.5, 69.6, 130, 120 }, + [18] = { 54.3, 69.5, 130, 120 }, + [19] = { 57.7, 73.2, 139, 120 }, + [20] = { 57.6, 73.2, 139, 120 }, + [21] = { 56.7, 92, 141, 120 }, + [22] = { 41.4, 90.8, 148, 120 }, + [23] = { 34, 22, 215, 120 }, + [24] = { 54.6, 33.6, 267, 120 }, + [25] = { 54.6, 33.2, 267, 120 }, + [26] = { 64.6, 71.1, 331, 120 }, + [27] = { 87.5, 49.3, 405, 120 }, + [28] = { 70.3, 75.5, 490, 120 }, + [29] = { 70.2, 75.5, 490, 120 }, + [30] = { 70, 75.5, 490, 120 }, + [31] = { 70, 75.4, 490, 120 }, + [32] = { 19.3, 17.1, 490, 120 }, + [33] = { 19.3, 17, 490, 120 }, + [34] = { 30.6, 43.4, 618, 120 }, + [35] = { 30.5, 43.3, 618, 120 }, + [36] = { 78.1, 18.5, 1377, 120 }, + [37] = { 78.1, 18.4, 1377, 120 }, + [38] = { 65.8, 37.9, 1497, 120 }, + [39] = { 65.5, 37.7, 1497, 120 }, + [40] = { 65.6, 37.6, 1497, 120 }, + [41] = { 49.4, 72.7, 1519, 120 }, + [42] = { 49.3, 72.6, 1519, 120 }, + [43] = { 48.8, 72.1, 1519, 120 }, + [44] = { 64.1, 23.3, 1537, 120 }, + [45] = { 64.2, 23.1, 1537, 120 }, + [46] = { 64.3, 23, 1537, 120 }, + [47] = { 43.1, 32.6, 1637, 120 }, + [48] = { 20.7, 25.3, 1638, 120 }, + [49] = { 20.6, 25.2, 1638, 120 }, + [50] = { 20.6, 25.1, 1638, 120 }, + [51] = { 11.6, 55.8, 4012, 120 }, + }, + }, + [181305] = { + ["coords"] = { + [1] = { 54.1, 31.9, 4, 120 }, + [2] = { 51.3, 17.5, 11, 120 }, + [3] = { 41.6, 43.2, 16, 120 }, + [4] = { 59.7, 39.3, 17, 120 }, + [5] = { 52.1, 97, 36, 120 }, + [6] = { 34.5, 80.5, 40, 120 }, + [7] = { 61.9, 53, 47, 120 }, + [8] = { 32.6, 72.8, 51, 120 }, + [9] = { 54.5, 69.4, 130, 120 }, + [10] = { 57.7, 73, 139, 120 }, + [11] = { 56.6, 91.8, 141, 120 }, + [12] = { 41.4, 90.9, 148, 120 }, + [13] = { 33.9, 22.1, 215, 120 }, + [14] = { 54.4, 33.3, 267, 120 }, + [15] = { 64.7, 71.4, 331, 120 }, + [16] = { 87.3, 49.4, 405, 120 }, + [17] = { 60, 72.3, 406, 120 }, + [18] = { 70.1, 75.7, 490, 120 }, + [19] = { 19.4, 17.1, 490, 120 }, + [20] = { 30.6, 43.3, 618, 120 }, + [21] = { 78.2, 18.5, 1377, 120 }, + [22] = { 66.6, 37.3, 1497, 120 }, + [23] = { 48.9, 71.7, 1519, 120 }, + [24] = { 65.2, 26.4, 1537, 120 }, + [25] = { 43.5, 32.5, 1637, 120 }, + [26] = { 20.1, 25.7, 1638, 120 }, + [27] = { 11.7, 55.5, 4012, 120 }, + }, + }, + [181306] = { + ["coords"] = { + [1] = { 54.2, 31.8, 4, 120 }, + [2] = { 51.2, 17.4, 11, 120 }, + [3] = { 52.1, 29.9, 17, 25 }, + [4] = { 80.3, 63.1, 28, 25 }, + [5] = { 80.3, 62.8, 28, 25 }, + [6] = { 34.4, 80.8, 40, 120 }, + [7] = { 22.2, 59.3, 45, 25 }, + [8] = { 32.4, 72.8, 51, 120 }, + [9] = { 54.4, 69.5, 130, 120 }, + [10] = { 21.9, 86.8, 139, 25 }, + [11] = { 21.9, 86.5, 139, 25 }, + [12] = { 57.8, 73.1, 139, 120 }, + [13] = { 33.9, 22, 215, 120 }, + [14] = { 64.7, 71.1, 331, 120 }, + [15] = { 79.5, 74.4, 400, 25 }, + [16] = { 82.6, 55.8, 400, 25 }, + [17] = { 87.4, 49.3, 405, 120 }, + [18] = { 19.4, 16.8, 490, 120 }, + [19] = { 30.6, 43.1, 618, 120 }, + [20] = { 78.2, 18.2, 1377, 120 }, + [21] = { 60.4, 70.4, 1519, 25 }, + [22] = { 76.7, 54.2, 1519, 25 }, + [23] = { 50.6, 70.4, 1637, 25 }, + [24] = { 62.1, 45, 1637, 25 }, + [25] = { 62, 44.9, 1637, 25 }, + [26] = { 20.2, 25.1, 1638, 120 }, + [27] = { 35.3, 93, 3478, 25 }, + [28] = { 35.6, 91.6, 3478, 25 }, + [29] = { 11.8, 55.7, 4012, 120 }, + }, + }, + [181332] = { + ["coords"] = { + [1] = { 49.7, 72.2, 1519, 120 }, + }, + }, + [181338] = { + ["coords"] = { + [1] = { 57.5, 72.7, 139, 120 }, + [2] = { 11.4, 55.2, 4012, 120 }, + }, + }, + [181346] = { + ["coords"] = { + [1] = { 22.3, 60.4, 2557, 120 }, + }, + }, + [181347] = { + ["coords"] = { + [1] = { 42.3, 54.1, 1583, 120 }, + }, + }, + [181348] = { + ["coords"] = { + [1] = { 44.1, 60.5, 2017, 120 }, + }, + }, + [181354] = { + ["coords"] = { + [1] = { 41.6, 10.1, 14, 120 }, + [2] = { 42.2, 9.9, 14, 120 }, + [3] = { 41.9, 9.1, 14, 120 }, + [4] = { 42.4, 8.6, 14, 120 }, + [5] = { 42.3, 8.2, 14, 120 }, + [6] = { 41.8, 8, 14, 120 }, + [7] = { 7.6, 63.3, 28, 120 }, + [8] = { 7.8, 61.8, 28, 120 }, + [9] = { 60.9, 69.4, 85, 120 }, + [10] = { 23.5, 63.2, 141, 120 }, + [11] = { 23.7, 62.4, 141, 120 }, + [12] = { 22.9, 62.3, 141, 120 }, + [13] = { 24.1, 62.1, 141, 120 }, + [14] = { 26.3, 61.3, 141, 120 }, + [15] = { 24.2, 61.2, 141, 120 }, + [16] = { 28, 60.4, 141, 120 }, + [17] = { 22.9, 60.3, 141, 120 }, + [18] = { 24.2, 60.3, 141, 120 }, + [19] = { 23.5, 60.3, 141, 120 }, + [20] = { 25.5, 60.1, 141, 120 }, + [21] = { 26.7, 60.1, 141, 120 }, + [22] = { 26.3, 60.1, 141, 120 }, + [23] = { 24.7, 59.4, 141, 120 }, + [24] = { 23.6, 59.4, 141, 120 }, + [25] = { 26.1, 59.4, 141, 120 }, + [26] = { 25.5, 59.4, 141, 120 }, + [27] = { 26.8, 59.3, 141, 120 }, + [28] = { 28, 59.3, 141, 120 }, + [29] = { 22.8, 59.2, 141, 120 }, + [30] = { 27.5, 59.2, 141, 120 }, + [31] = { 26.2, 58.4, 141, 120 }, + [32] = { 27.4, 58.4, 141, 120 }, + [33] = { 25.5, 58.3, 141, 120 }, + [34] = { 22.8, 58.3, 141, 120 }, + [35] = { 24, 58.2, 141, 120 }, + [36] = { 23.6, 58.2, 141, 120 }, + [37] = { 23.6, 57.5, 141, 120 }, + [38] = { 22.8, 57.5, 141, 120 }, + [39] = { 25.5, 57.4, 141, 120 }, + [40] = { 27.6, 57.3, 141, 120 }, + [41] = { 24.9, 57.3, 141, 120 }, + [42] = { 27.9, 57.2, 141, 120 }, + [43] = { 24.1, 56.6, 141, 120 }, + [44] = { 26.2, 56.4, 141, 120 }, + [45] = { 27.5, 56.4, 141, 120 }, + [46] = { 28, 56.3, 141, 120 }, + [47] = { 26.8, 56.2, 141, 120 }, + [48] = { 27, 55.4, 141, 120 }, + [49] = { 28.2, 55.4, 141, 120 }, + [50] = { 28.1, 54.5, 141, 120 }, + [51] = { 26.3, 54.4, 141, 120 }, + [52] = { 24.2, 54.3, 141, 120 }, + [53] = { 26.8, 54.3, 141, 120 }, + [54] = { 24.7, 54.2, 141, 120 }, + [55] = { 27.4, 54.2, 141, 120 }, + [56] = { 27.8, 53.5, 141, 120 }, + [57] = { 24.8, 53.5, 141, 120 }, + [58] = { 25.4, 53.5, 141, 120 }, + [59] = { 24.2, 53.5, 141, 120 }, + [60] = { 23.6, 53.4, 141, 120 }, + [61] = { 22.9, 53.4, 141, 120 }, + [62] = { 26.6, 53.3, 141, 120 }, + [63] = { 28.7, 53.3, 141, 120 }, + [64] = { 24.9, 52.8, 141, 120 }, + [65] = { 24.2, 52.8, 141, 120 }, + [66] = { 23.6, 52.8, 141, 120 }, + [67] = { 28.2, 52.7, 141, 120 }, + [68] = { 25.3, 52.6, 141, 120 }, + [69] = { 26.6, 52.5, 141, 120 }, + [70] = { 27.3, 52.3, 141, 120 }, + [71] = { 37.9, 29, 215, 120 }, + [72] = { 38, 28.9, 215, 120 }, + [73] = { 37.9, 28.7, 215, 120 }, + [74] = { 65.8, 68.7, 1497, 120 }, + [75] = { 70, 68, 1497, 120 }, + [76] = { 61.3, 67.8, 1497, 120 }, + [77] = { 74.3, 65.5, 1497, 120 }, + [78] = { 57.7, 65.4, 1497, 120 }, + [79] = { 77.7, 61.9, 1497, 120 }, + [80] = { 54.3, 61.4, 1497, 120 }, + [81] = { 80.1, 56.6, 1497, 120 }, + [82] = { 51.5, 55.7, 1497, 120 }, + [83] = { 81.7, 50.7, 1497, 120 }, + [84] = { 50, 49.9, 1497, 120 }, + [85] = { 69.3, 46.3, 1497, 120 }, + [86] = { 62.8, 46.1, 1497, 120 }, + [87] = { 82.4, 44.1, 1497, 120 }, + [88] = { 49.6, 43.9, 1497, 120 }, + [89] = { 69.3, 41.9, 1497, 120 }, + [90] = { 62.9, 41.6, 1497, 120 }, + [91] = { 81.5, 38.1, 1497, 120 }, + [92] = { 50.4, 37.7, 1497, 120 }, + [93] = { 80.5, 32.2, 1497, 120 }, + [94] = { 52.4, 30.8, 1497, 120 }, + [95] = { 78, 27, 1497, 120 }, + [96] = { 56, 24.5, 1497, 120 }, + [97] = { 74.3, 22.8, 1497, 120 }, + [98] = { 70.3, 20.3, 1497, 120 }, + [99] = { 61.8, 20.3, 1497, 120 }, + [100] = { 66, 19.6, 1497, 120 }, + [101] = { 60.3, 47, 1519, 120 }, + [102] = { 60.7, 46.5, 1519, 120 }, + [103] = { 61.1, 46, 1519, 120 }, + [104] = { 61.5, 45.6, 1519, 120 }, + [105] = { 59.6, 45.5, 1519, 120 }, + [106] = { 60, 45.2, 1519, 120 }, + [107] = { 60.4, 44.7, 1519, 120 }, + [108] = { 59.8, 44.3, 1519, 120 }, + [109] = { 60.8, 44.3, 1519, 120 }, + [110] = { 59.4, 43.9, 1519, 120 }, + [111] = { 58.8, 42.9, 1519, 120 }, + [112] = { 58.3, 41.9, 1519, 120 }, + [113] = { 34.5, 87.9, 1637, 120 }, + [114] = { 36.6, 87.1, 1637, 120 }, + [115] = { 35.4, 83.9, 1637, 120 }, + [116] = { 37.3, 82.1, 1637, 120 }, + [117] = { 36.9, 80.6, 1637, 120 }, + [118] = { 35.2, 79.8, 1637, 120 }, + [119] = { 68.8, 33.4, 1637, 120 }, + [120] = { 70.2, 32.8, 1637, 120 }, + [121] = { 67.3, 30.6, 1637, 120 }, + [122] = { 70.8, 30, 1637, 120 }, + [123] = { 39.8, 59.8, 1638, 120 }, + [124] = { 40.4, 59.1, 1638, 120 }, + [125] = { 39.8, 58.5, 1638, 120 }, + [126] = { 30.1, 78.2, 1657, 120 }, + [127] = { 31.2, 74.4, 1657, 120 }, + [128] = { 27.2, 74, 1657, 120 }, + [129] = { 33.2, 73.1, 1657, 120 }, + [130] = { 44, 69.1, 1657, 120 }, + [131] = { 33.4, 68.6, 1657, 120 }, + [132] = { 52.1, 64.6, 1657, 120 }, + [133] = { 27.3, 64.3, 1657, 120 }, + [134] = { 33.6, 64.2, 1657, 120 }, + [135] = { 30.4, 64.1, 1657, 120 }, + [136] = { 39.9, 63.3, 1657, 120 }, + [137] = { 45.9, 63.2, 1657, 120 }, + [138] = { 43.9, 63.2, 1657, 120 }, + [139] = { 36.2, 60.1, 1657, 120 }, + [140] = { 30.8, 60, 1657, 120 }, + [141] = { 42.8, 59.8, 1657, 120 }, + [142] = { 39.9, 59.7, 1657, 120 }, + [143] = { 46.1, 59.6, 1657, 120 }, + [144] = { 51.7, 59.4, 1657, 120 }, + [145] = { 27, 59.1, 1657, 120 }, + [146] = { 49.3, 58.8, 1657, 120 }, + [147] = { 43.4, 55.3, 1657, 120 }, + [148] = { 49.1, 55.1, 1657, 120 }, + [149] = { 39.8, 54.6, 1657, 120 }, + [150] = { 27.1, 54.4, 1657, 120 }, + [151] = { 32.5, 54.3, 1657, 120 }, + [152] = { 30.7, 54.2, 1657, 120 }, + [153] = { 30.9, 50.8, 1657, 120 }, + [154] = { 27, 50.7, 1657, 120 }, + [155] = { 39.8, 50.1, 1657, 120 }, + [156] = { 50, 49.9, 1657, 120 }, + [157] = { 36.9, 49.6, 1657, 120 }, + [158] = { 51.6, 49.5, 1657, 120 }, + [159] = { 33, 46.4, 1657, 120 }, + [160] = { 43.2, 45.7, 1657, 120 }, + [161] = { 49.4, 45.6, 1657, 120 }, + [162] = { 52.1, 44.9, 1657, 120 }, + [163] = { 46.1, 44.7, 1657, 120 }, + [164] = { 46.9, 40.7, 1657, 120 }, + [165] = { 53, 40.6, 1657, 120 }, + [166] = { 52.4, 36.2, 1657, 120 }, + [167] = { 43.5, 35.8, 1657, 120 }, + [168] = { 33.7, 35.5, 1657, 120 }, + [169] = { 46.2, 35.4, 1657, 120 }, + [170] = { 36.1, 35.2, 1657, 120 }, + [171] = { 49, 34.8, 1657, 120 }, + [172] = { 51, 31.6, 1657, 120 }, + [173] = { 36.7, 31.4, 1657, 120 }, + [174] = { 39.3, 31.4, 1657, 120 }, + [175] = { 33.6, 31.4, 1657, 120 }, + [176] = { 30.9, 31.3, 1657, 120 }, + [177] = { 27.3, 31, 1657, 120 }, + [178] = { 45.1, 30.8, 1657, 120 }, + [179] = { 55.5, 30.5, 1657, 120 }, + [180] = { 37, 28.1, 1657, 120 }, + [181] = { 33.6, 28.1, 1657, 120 }, + [182] = { 30.6, 28.1, 1657, 120 }, + [183] = { 52.7, 27.6, 1657, 120 }, + [184] = { 39.1, 27, 1657, 120 }, + [185] = { 45.3, 26.6, 1657, 120 }, + [186] = { 48.6, 25.8, 1657, 120 }, + [187] = { 47.7, 99.9, 5581, 120 }, + }, + }, + [181355] = { + ["coords"] = { + [1] = { 54, 34.8, 1, 120 }, + [2] = { 54.2, 34.5, 1, 120 }, + [3] = { 51.1, 17.5, 11, 120 }, + [4] = { 51, 17, 11, 120 }, + [5] = { 41.6, 43.5, 16, 120 }, + [6] = { 41.6, 43, 16, 120 }, + [7] = { 52.5, 97.1, 36, 120 }, + [8] = { 52, 96.7, 36, 120 }, + [9] = { 34.5, 80.9, 40, 120 }, + [10] = { 34.5, 80.3, 40, 120 }, + [11] = { 62.1, 53, 47, 120 }, + [12] = { 54.3, 69.3, 130, 120 }, + [13] = { 58.2, 94.1, 141, 120 }, + [14] = { 58.1, 94.1, 141, 120 }, + [15] = { 58.6, 94.1, 141, 120 }, + [16] = { 58, 93.7, 141, 120 }, + [17] = { 57.6, 93.2, 141, 120 }, + [18] = { 57.9, 93.2, 141, 120 }, + [19] = { 57.2, 92.9, 141, 120 }, + [20] = { 57.1, 92.4, 141, 120 }, + [21] = { 56.7, 92.1, 141, 120 }, + [22] = { 56.5, 91.9, 141, 120 }, + [23] = { 24.1, 55.8, 141, 120 }, + [24] = { 23.7, 55.7, 141, 120 }, + [25] = { 24, 55.7, 141, 120 }, + [26] = { 24.1, 55.4, 141, 120 }, + [27] = { 24, 55.4, 141, 120 }, + [28] = { 23.7, 55.3, 141, 120 }, + [29] = { 41.5, 91, 148, 120 }, + [30] = { 41.6, 90.9, 148, 120 }, + [31] = { 40.8, 32.9, 215, 120 }, + [32] = { 41, 32.5, 215, 120 }, + [33] = { 37, 30.1, 215, 120 }, + [34] = { 38.9, 29.8, 215, 120 }, + [35] = { 36.9, 29.7, 215, 120 }, + [36] = { 39.1, 29.6, 215, 120 }, + [37] = { 36.7, 29.3, 215, 120 }, + [38] = { 39.4, 29, 215, 120 }, + [39] = { 39.5, 28.9, 215, 120 }, + [40] = { 39.5, 28.6, 215, 120 }, + [41] = { 39.3, 28.6, 215, 120 }, + [42] = { 38.4, 28.3, 215, 120 }, + [43] = { 38.5, 28.1, 215, 120 }, + [44] = { 37.7, 27.4, 215, 120 }, + [45] = { 37.1, 27.3, 215, 120 }, + [46] = { 39.4, 27.1, 215, 120 }, + [47] = { 37.8, 27.1, 215, 120 }, + [48] = { 37.3, 27, 215, 120 }, + [49] = { 39.4, 26.8, 215, 120 }, + [50] = { 36.5, 26.1, 215, 120 }, + [51] = { 36.6, 25.9, 215, 120 }, + [52] = { 35.4, 23.5, 215, 120 }, + [53] = { 35.2, 23.4, 215, 120 }, + [54] = { 35.6, 23.4, 215, 120 }, + [55] = { 40.5, 23.3, 215, 120 }, + [56] = { 34.9, 23.3, 215, 120 }, + [57] = { 40.2, 23.2, 215, 120 }, + [58] = { 35.3, 23.1, 215, 120 }, + [59] = { 34.9, 23, 215, 120 }, + [60] = { 40, 23, 215, 120 }, + [61] = { 34.2, 22.9, 215, 120 }, + [62] = { 34.4, 22.6, 215, 120 }, + [63] = { 35.9, 22.2, 215, 120 }, + [64] = { 36.1, 21.8, 215, 120 }, + [65] = { 34.7, 21.2, 215, 120 }, + [66] = { 34.8, 20.9, 215, 120 }, + [67] = { 54.8, 33.4, 267, 120 }, + [68] = { 54.3, 33.1, 267, 120 }, + [69] = { 64.8, 71, 331, 120 }, + [70] = { 89.1, 51.1, 405, 120 }, + [71] = { 88.9, 50.9, 405, 120 }, + [72] = { 89.3, 50.9, 405, 120 }, + [73] = { 88.5, 50.8, 405, 120 }, + [74] = { 88.9, 50.6, 405, 120 }, + [75] = { 88.5, 50.4, 405, 120 }, + [76] = { 87.7, 50.3, 405, 120 }, + [77] = { 88, 50, 405, 120 }, + [78] = { 88.3, 48.4, 405, 120 }, + [79] = { 88.4, 48.1, 405, 120 }, + [80] = { 70.1, 75.9, 490, 120 }, + [81] = { 70.4, 75.5, 490, 120 }, + [82] = { 19.6, 17, 490, 120 }, + [83] = { 30.7, 43.4, 618, 120 }, + [84] = { 30.5, 43.1, 618, 120 }, + [85] = { 78.3, 18.4, 1377, 120 }, + [86] = { 66.6, 45.1, 1497, 120 }, + [87] = { 65.4, 45, 1497, 120 }, + [88] = { 66.7, 38.5, 1497, 120 }, + [89] = { 65.3, 38.5, 1497, 120 }, + [90] = { 61.8, 76.3, 1519, 120 }, + [91] = { 62.3, 75.8, 1519, 120 }, + [92] = { 56.6, 74.7, 1519, 120 }, + [93] = { 61.3, 74.7, 1519, 120 }, + [94] = { 61.1, 74.3, 1519, 120 }, + [95] = { 56.3, 74, 1519, 120 }, + [96] = { 60.7, 73.8, 1519, 120 }, + [97] = { 54, 73.7, 1519, 120 }, + [98] = { 62.5, 73.6, 1519, 120 }, + [99] = { 57.9, 73.6, 1519, 120 }, + [100] = { 61.1, 73.3, 1519, 120 }, + [101] = { 63.6, 73.2, 1519, 120 }, + [102] = { 54.7, 72.9, 1519, 120 }, + [103] = { 67.8, 72.8, 1519, 120 }, + [104] = { 57.7, 72.8, 1519, 120 }, + [105] = { 64, 72.4, 1519, 120 }, + [106] = { 62, 72.4, 1519, 120 }, + [107] = { 68, 72.3, 1519, 120 }, + [108] = { 52.3, 72.1, 1519, 120 }, + [109] = { 60.1, 72, 1519, 120 }, + [110] = { 50.7, 71.6, 1519, 120 }, + [111] = { 59.9, 71.3, 1519, 120 }, + [112] = { 52.3, 71, 1519, 120 }, + [113] = { 50.4, 70.6, 1519, 120 }, + [114] = { 53.9, 54, 1519, 120 }, + [115] = { 54.6, 53.2, 1519, 120 }, + [116] = { 64.8, 37.6, 1519, 120 }, + [117] = { 18, 85.1, 1537, 120 }, + [118] = { 19.6, 83.2, 1537, 120 }, + [119] = { 16.2, 81.7, 1537, 120 }, + [120] = { 21.1, 81.2, 1537, 120 }, + [121] = { 17.7, 79.8, 1537, 120 }, + [122] = { 19.3, 77.9, 1537, 120 }, + [123] = { 37.9, 71.6, 1537, 120 }, + [124] = { 43.9, 60.1, 1537, 120 }, + [125] = { 48.7, 60.1, 1537, 120 }, + [126] = { 52.8, 59, 1537, 120 }, + [127] = { 48.7, 55.9, 1537, 120 }, + [128] = { 51.8, 55.2, 1537, 120 }, + [129] = { 56.1, 55.1, 1537, 120 }, + [130] = { 54.6, 52.3, 1537, 120 }, + [131] = { 58.4, 46.2, 1537, 120 }, + [132] = { 56.8, 45.8, 1537, 120 }, + [133] = { 56.3, 40.4, 1537, 120 }, + [134] = { 58.4, 39.4, 1537, 120 }, + [135] = { 57.8, 35.5, 1537, 120 }, + [136] = { 55.9, 32.2, 1537, 120 }, + [137] = { 62, 32, 1537, 120 }, + [138] = { 59.2, 27.2, 1537, 120 }, + [139] = { 65.1, 26, 1537, 120 }, + [140] = { 64.1, 23.8, 1537, 120 }, + [141] = { 49.3, 70.4, 1637, 120 }, + [142] = { 50.3, 69.7, 1637, 120 }, + [143] = { 48.4, 68.6, 1637, 120 }, + [144] = { 54.9, 67.9, 1637, 120 }, + [145] = { 49.3, 67.5, 1637, 120 }, + [146] = { 54.5, 67.4, 1637, 120 }, + [147] = { 46.5, 66.7, 1637, 120 }, + [148] = { 45.2, 65.8, 1637, 120 }, + [149] = { 48.6, 64, 1637, 120 }, + [150] = { 45, 63.9, 1637, 120 }, + [151] = { 50.3, 63.7, 1637, 120 }, + [152] = { 40.2, 63.5, 1637, 120 }, + [153] = { 40.8, 63, 1637, 120 }, + [154] = { 51.1, 62.9, 1637, 120 }, + [155] = { 45.1, 62.6, 1637, 120 }, + [156] = { 42.6, 62.5, 1637, 120 }, + [157] = { 49.3, 62.2, 1637, 120 }, + [158] = { 43.4, 62.1, 1637, 120 }, + [159] = { 47.9, 62, 1637, 120 }, + [160] = { 45.7, 61.9, 1637, 120 }, + [161] = { 50.1, 61.5, 1637, 120 }, + [162] = { 47.2, 61.5, 1637, 120 }, + [163] = { 43, 61.3, 1637, 120 }, + [164] = { 45.3, 59.3, 1637, 120 }, + [165] = { 48.1, 58.7, 1637, 120 }, + [166] = { 38.5, 58.6, 1637, 120 }, + [167] = { 47.2, 58.5, 1637, 120 }, + [168] = { 48.7, 58.2, 1637, 120 }, + [169] = { 39.1, 58.2, 1637, 120 }, + [170] = { 45.1, 58.1, 1637, 120 }, + [171] = { 47.1, 57.5, 1637, 120 }, + [172] = { 38.6, 54.8, 1637, 120 }, + [173] = { 37.9, 54.4, 1637, 120 }, + [174] = { 39.9, 49.3, 1637, 120 }, + [175] = { 39.2, 48.8, 1637, 120 }, + [176] = { 40.8, 45.3, 1637, 120 }, + [177] = { 40, 44.4, 1637, 120 }, + [178] = { 59.5, 44.4, 1637, 120 }, + [179] = { 43.6, 40.4, 1637, 120 }, + [180] = { 42.6, 40.4, 1637, 120 }, + [181] = { 42.8, 35.5, 1637, 120 }, + [182] = { 43.6, 35.4, 1637, 120 }, + [183] = { 42.4, 33.6, 1637, 120 }, + [184] = { 42.8, 33, 1637, 120 }, + [185] = { 54.2, 79, 1638, 120 }, + [186] = { 55.1, 77, 1638, 120 }, + [187] = { 35.6, 65.4, 1638, 120 }, + [188] = { 44.8, 63.7, 1638, 120 }, + [189] = { 35.1, 63.3, 1638, 120 }, + [190] = { 45.9, 62.9, 1638, 120 }, + [191] = { 34, 61.4, 1638, 120 }, + [192] = { 47, 59.8, 1638, 120 }, + [193] = { 47.7, 59.4, 1638, 120 }, + [194] = { 47.6, 57.7, 1638, 120 }, + [195] = { 46.9, 57.6, 1638, 120 }, + [196] = { 42.2, 56.4, 1638, 120 }, + [197] = { 42.9, 55.6, 1638, 120 }, + [198] = { 38.9, 52.2, 1638, 120 }, + [199] = { 35.9, 51.5, 1638, 120 }, + [200] = { 47.1, 50.6, 1638, 120 }, + [201] = { 39.4, 50.6, 1638, 120 }, + [202] = { 37.1, 50.1, 1638, 120 }, + [203] = { 47, 49, 1638, 120 }, + [204] = { 32.7, 45.6, 1638, 120 }, + [205] = { 33.4, 44.6, 1638, 120 }, + [206] = { 27.6, 32.9, 1638, 120 }, + [207] = { 26.7, 32.3, 1638, 120 }, + [208] = { 28.6, 32.2, 1638, 120 }, + [209] = { 52.7, 31.9, 1638, 120 }, + [210] = { 25.1, 31.7, 1638, 120 }, + [211] = { 51.3, 31.3, 1638, 120 }, + [212] = { 26.9, 30.8, 1638, 120 }, + [213] = { 25.3, 30.1, 1638, 120 }, + [214] = { 50.2, 30.1, 1638, 120 }, + [215] = { 21.8, 29.7, 1638, 120 }, + [216] = { 22.8, 28.4, 1638, 120 }, + [217] = { 30.1, 26.1, 1638, 120 }, + [218] = { 31.1, 24.6, 1638, 120 }, + [219] = { 24.1, 21.6, 1638, 120 }, + [220] = { 24.6, 20.1, 1638, 120 }, + [221] = { 33.3, 42.4, 1657, 120 }, + [222] = { 31.3, 42.4, 1657, 120 }, + [223] = { 32.4, 42.3, 1657, 120 }, + [224] = { 33.3, 40.5, 1657, 120 }, + [225] = { 32.5, 40.5, 1657, 120 }, + [226] = { 31.3, 40.4, 1657, 120 }, + [227] = { 51.3, 97.5, 5581, 120 }, + }, + }, + [181356] = { + ["coords"] = { + [1] = { 56.3, 66.9, 5148, 0 }, + }, + }, + [181357] = { + ["coords"] = {}, + }, + [181358] = { + ["coords"] = { + [1] = { 31.9, 49.9, 12, 120 }, + [2] = { 32.5, 49.1, 12, 120 }, + [3] = { 36.1, 29.9, 215, 120 }, + [4] = { 41.6, 28.1, 215, 120 }, + [5] = { 39.2, 27.4, 215, 120 }, + [6] = { 37.2, 27.2, 215, 120 }, + [7] = { 39.3, 26.6, 215, 120 }, + [8] = { 41.7, 26.5, 215, 120 }, + [9] = { 38.6, 24.8, 215, 120 }, + [10] = { 40.1, 24.4, 215, 120 }, + [11] = { 40.7, 22, 215, 120 }, + [12] = { 68.2, 82.2, 1519, 120 }, + [13] = { 69.2, 81, 1519, 120 }, + [14] = { 68.1, 74, 1519, 120 }, + [15] = { 47.4, 65.7, 1637, 120 }, + [16] = { 47.4, 65.3, 1637, 120 }, + [17] = { 31, 64.3, 1638, 120 }, + [18] = { 58.1, 55.6, 1638, 120 }, + [19] = { 46.2, 51.8, 1638, 120 }, + [20] = { 36.6, 51, 1638, 120 }, + [21] = { 46.8, 48.2, 1638, 120 }, + [22] = { 58.4, 47.5, 1638, 120 }, + [23] = { 43.3, 39.4, 1638, 120 }, + [24] = { 50.5, 37.1, 1638, 120 }, + }, + }, + [181366] = { + ["coords"] = { + [1] = { 28.7, 86.5, 3456, 0 }, + }, + }, + [181376] = { + ["coords"] = { + [1] = { 54.1, 31.4, 4, 120 }, + [2] = { 51.2, 17.1, 11, 120 }, + [3] = { 41.5, 43.2, 16, 120 }, + [4] = { 59.8, 39.3, 17, 120 }, + [5] = { 52, 97.6, 36, 120 }, + [6] = { 34, 80.4, 40, 120 }, + [7] = { 62.1, 53.4, 47, 120 }, + [8] = { 32.9, 73.1, 51, 120 }, + [9] = { 54.2, 69.8, 130, 120 }, + [10] = { 57.5, 72.7, 139, 120 }, + [11] = { 56.7, 92.3, 141, 120 }, + [12] = { 41.5, 90.7, 148, 120 }, + [13] = { 34.1, 22.3, 215, 120 }, + [14] = { 54.4, 33.8, 267, 120 }, + [15] = { 64.8, 71.7, 331, 120 }, + [16] = { 87.6, 49.6, 405, 120 }, + [17] = { 60, 71.9, 406, 120 }, + [18] = { 70.3, 75.9, 490, 120 }, + [19] = { 19.3, 17.4, 490, 120 }, + [20] = { 30.7, 43.1, 618, 120 }, + [21] = { 78, 18.8, 1377, 120 }, + [22] = { 66, 36.8, 1497, 120 }, + [23] = { 49.7, 72.2, 1519, 120 }, + [24] = { 64.6, 24.8, 1537, 120 }, + [25] = { 42.1, 34.2, 1637, 120 }, + [26] = { 21, 26.7, 1638, 120 }, + [27] = { 11.4, 55.2, 4012, 120 }, + }, + }, + [181388] = { + ["coords"] = { + [1] = { 54.1, 31.9, 4, 120 }, + [2] = { 26, 68.3, 11, 120 }, + [3] = { 36.2, 67.7, 11, 120 }, + [4] = { 34.8, 65.9, 11, 120 }, + [5] = { 34.1, 65.6, 11, 120 }, + [6] = { 35.5, 62.3, 11, 120 }, + [7] = { 39, 62.1, 11, 120 }, + [8] = { 39.6, 62, 11, 120 }, + [9] = { 35.7, 62, 11, 120 }, + [10] = { 38.9, 61.9, 11, 120 }, + [11] = { 39, 61.7, 11, 120 }, + [12] = { 38.9, 61.7, 11, 120 }, + [13] = { 42.9, 65.3, 12, 25 }, + [14] = { 42.5, 62.9, 12, 25 }, + [15] = { 35.2, 50.1, 12, 25 }, + [16] = { 59.7, 39.3, 17, 120 }, + [17] = { 52.1, 97, 36, 120 }, + [18] = { 34.5, 80.6, 40, 120 }, + [19] = { 32.5, 72.8, 51, 120 }, + [20] = { 54.5, 69.4, 130, 120 }, + [21] = { 57.7, 72.9, 139, 120 }, + [22] = { 56.6, 91.8, 141, 120 }, + [23] = { 31.3, 50.1, 141, 120 }, + [24] = { 31.2, 49.9, 141, 120 }, + [25] = { 31.5, 49.8, 141, 120 }, + [26] = { 31.5, 49.7, 141, 120 }, + [27] = { 41.4, 90.9, 148, 120 }, + [28] = { 38.9, 29.7, 215, 120 }, + [29] = { 33.9, 22.1, 215, 120 }, + [30] = { 54.4, 33.3, 267, 120 }, + [31] = { 64.7, 71.4, 331, 120 }, + [32] = { 87.4, 49.4, 405, 120 }, + [33] = { 60, 72.3, 406, 120 }, + [34] = { 70.1, 75.7, 490, 120 }, + [35] = { 19.4, 17.1, 490, 120 }, + [36] = { 78.2, 18.5, 1377, 120 }, + [37] = { 62.1, 45.6, 1497, 120 }, + [38] = { 69.5, 44.9, 1497, 120 }, + [39] = { 62.2, 42.5, 1497, 120 }, + [40] = { 65.3, 30.5, 1497, 120 }, + [41] = { 66.8, 30.5, 1497, 120 }, + [42] = { 65.3, 29.2, 1497, 120 }, + [43] = { 66.8, 29.2, 1497, 120 }, + [44] = { 66.2, 27.6, 1497, 120 }, + [45] = { 65.9, 27.6, 1497, 120 }, + [46] = { 66.8, 27.5, 1497, 120 }, + [47] = { 65.3, 27.5, 1497, 120 }, + [48] = { 66.9, 26.5, 1497, 120 }, + [49] = { 65.3, 26.4, 1497, 120 }, + [50] = { 66.8, 25.4, 1497, 120 }, + [51] = { 65.3, 25.4, 1497, 120 }, + [52] = { 62.9, 80.9, 1519, 120 }, + [53] = { 64.3, 79.8, 1519, 120 }, + [54] = { 62.5, 79.8, 1519, 120 }, + [55] = { 63.9, 78.7, 1519, 120 }, + [56] = { 61.7, 75.3, 1519, 25 }, + [57] = { 60.5, 74.3, 1519, 120 }, + [58] = { 36.6, 73.4, 1519, 300 }, + [59] = { 48.9, 71.7, 1519, 120 }, + [60] = { 33.6, 63.7, 1537, 120 }, + [61] = { 33.1, 62.8, 1537, 120 }, + [62] = { 36.8, 62.6, 1537, 120 }, + [63] = { 36.4, 61.8, 1537, 120 }, + [64] = { 35.8, 60.8, 1537, 120 }, + [65] = { 35.4, 60.1, 1537, 120 }, + [66] = { 34.9, 59.1, 1537, 120 }, + [67] = { 34.5, 58.4, 1537, 120 }, + [68] = { 19, 52.5, 1537, 120 }, + [69] = { 19.2, 50.8, 1537, 120 }, + [70] = { 54.5, 67.8, 1637, 120 }, + [71] = { 54.5, 67.7, 1637, 120 }, + [72] = { 44.8, 63.3, 1638, 120 }, + [73] = { 20.2, 25.8, 1638, 120 }, + [74] = { 67.8, 15.4, 1657, 120 }, + [75] = { 67.3, 14.3, 1657, 120 }, + [76] = { 69, 14, 1657, 120 }, + [77] = { 68.6, 13.2, 1657, 120 }, + [78] = { 11.7, 55.5, 4012, 120 }, + }, + }, + [181389] = { + ["coords"] = { + [1] = { 32.2, 49.5, 12, 120 }, + [2] = { 8.5, 61.8, 28, 120 }, + [3] = { 55.5, 71.1, 85, 120 }, + [4] = { 55.4, 70.9, 85, 120 }, + [5] = { 61.9, 68.2, 85, 120 }, + [6] = { 29.6, 56.7, 141, 120 }, + [7] = { 29.6, 54.1, 141, 120 }, + [8] = { 65.9, 73.4, 1497, 120 }, + [9] = { 85.5, 44.3, 1497, 120 }, + [10] = { 36.3, 28.4, 1497, 120 }, + [11] = { 35.6, 27.3, 1497, 120 }, + [12] = { 66.1, 24.8, 1497, 120 }, + [13] = { 66.2, 14.8, 1497, 120 }, + [14] = { 34.1, 82.3, 1537, 120 }, + [15] = { 28.4, 76.2, 1537, 120 }, + [16] = { 58, 74, 1537, 120 }, + [17] = { 62.3, 68.7, 1537, 120 }, + [18] = { 23.9, 68.1, 1537, 120 }, + [19] = { 21, 58.5, 1537, 120 }, + [20] = { 66, 28.8, 1537, 120 }, + [21] = { 31, 25, 1537, 120 }, + [22] = { 62.2, 21.9, 1537, 120 }, + [23] = { 35.3, 19.6, 1537, 120 }, + [24] = { 59.7, 47, 1657, 120 }, + [25] = { 59.5, 34.4, 1657, 120 }, + }, + }, + [181390] = { + ["coords"] = { + [1] = { 29, 62.9, 141, 120 }, + [2] = { 25.2, 62.9, 141, 120 }, + [3] = { 25.5, 62.9, 141, 120 }, + [4] = { 29.8, 61.7, 141, 120 }, + [5] = { 29.6, 59.9, 141, 120 }, + [6] = { 30.7, 59.2, 141, 120 }, + [7] = { 28.9, 58.2, 141, 120 }, + [8] = { 28.9, 51.8, 141, 120 }, + [9] = { 30.4, 51.3, 141, 120 }, + [10] = { 28.6, 49.6, 141, 120 }, + [11] = { 42, 33.6, 215, 120 }, + [12] = { 41.1, 28.5, 215, 120 }, + [13] = { 39.4, 27.2, 215, 120 }, + [14] = { 39.1, 27.1, 215, 120 }, + [15] = { 39.4, 26.9, 215, 120 }, + [16] = { 39.1, 26.8, 215, 120 }, + [17] = { 40.8, 26.3, 215, 120 }, + [18] = { 39.5, 25.5, 215, 120 }, + [19] = { 39.8, 23.7, 215, 120 }, + [20] = { 44.9, 22.9, 215, 120 }, + [21] = { 55.5, 76.6, 1519, 120 }, + [22] = { 57.9, 73.1, 1519, 120 }, + [23] = { 61.6, 71.3, 1519, 120 }, + [24] = { 52.6, 70.4, 1519, 120 }, + [25] = { 61.4, 70.4, 1519, 120 }, + [26] = { 49.2, 69.9, 1519, 120 }, + [27] = { 61.5, 69.7, 1519, 120 }, + [28] = { 43.5, 67, 1519, 120 }, + [29] = { 59.1, 64.5, 1519, 120 }, + [30] = { 65.8, 64.3, 1519, 120 }, + [31] = { 44.8, 63.9, 1519, 120 }, + [32] = { 69.9, 62.5, 1519, 120 }, + [33] = { 56.5, 57.8, 1519, 120 }, + [34] = { 50.5, 57, 1519, 120 }, + [35] = { 70.1, 53.3, 1519, 120 }, + [36] = { 58.5, 51.2, 1519, 120 }, + [37] = { 68.8, 44.5, 1519, 120 }, + [38] = { 59.6, 40.8, 1519, 120 }, + [39] = { 59.9, 82.5, 1638, 120 }, + [40] = { 55.5, 57.3, 1638, 120 }, + [41] = { 47.1, 51, 1638, 120 }, + [42] = { 45.7, 50.4, 1638, 120 }, + [43] = { 47.4, 49.3, 1638, 120 }, + [44] = { 46, 48.8, 1638, 120 }, + [45] = { 54.2, 46.7, 1638, 120 }, + [46] = { 47.8, 42.6, 1638, 120 }, + [47] = { 49, 33.9, 1638, 120 }, + [48] = { 74.4, 29.8, 1638, 120 }, + [49] = { 56.6, 76.9, 1657, 120 }, + [50] = { 38.4, 76.8, 1657, 120 }, + [51] = { 39.7, 76.7, 1657, 120 }, + [52] = { 60.8, 70.9, 1657, 120 }, + [53] = { 59.4, 62.3, 1657, 120 }, + [54] = { 64.8, 59, 1657, 120 }, + [55] = { 56.1, 54, 1657, 120 }, + [56] = { 56.1, 23.5, 1657, 120 }, + [57] = { 63.6, 20.9, 1657, 120 }, + [58] = { 54.8, 12.8, 1657, 120 }, + [59] = { 48.5, 99.3, 5581, 120 }, + }, + }, + [181391] = { + ["coords"] = { + [1] = { 69.2, 25.8, 1, 120 }, + [2] = { 71.7, 23.9, 1, 120 }, + [3] = { 71.7, 21.8, 1, 120 }, + [4] = { 71.5, 21.3, 1, 120 }, + [5] = { 34.5, 65.7, 11, 120 }, + [6] = { 34.4, 65.4, 11, 120 }, + [7] = { 38.6, 65.3, 11, 120 }, + [8] = { 34.4, 65.2, 11, 120 }, + [9] = { 39.8, 65, 11, 120 }, + [10] = { 35.9, 62.1, 11, 120 }, + [11] = { 36, 62.1, 11, 120 }, + [12] = { 35.5, 61.1, 11, 120 }, + [13] = { 43.8, 65.7, 12, 25 }, + [14] = { 42.9, 65.3, 12, 25 }, + [15] = { 35.2, 50.1, 12, 25 }, + [16] = { 67.1, 45.4, 15, 25 }, + [17] = { 25.4, 56.8, 141, 120 }, + [18] = { 25, 56.7, 141, 120 }, + [19] = { 25.6, 56.7, 141, 120 }, + [20] = { 24.9, 56.6, 141, 120 }, + [21] = { 24.8, 56.4, 141, 120 }, + [22] = { 25.8, 56.4, 141, 120 }, + [23] = { 25.9, 56.2, 141, 120 }, + [24] = { 24.8, 56.2, 141, 120 }, + [25] = { 26, 56.1, 141, 120 }, + [26] = { 26.1, 56, 141, 120 }, + [27] = { 24.7, 55.9, 141, 120 }, + [28] = { 26.1, 55.8, 141, 120 }, + [29] = { 26.2, 55.7, 141, 120 }, + [30] = { 24.7, 55.3, 141, 120 }, + [31] = { 26.1, 55.1, 141, 120 }, + [32] = { 24.8, 55, 141, 120 }, + [33] = { 25.9, 54.9, 141, 120 }, + [34] = { 25.8, 54.8, 141, 120 }, + [35] = { 24.8, 54.8, 141, 120 }, + [36] = { 25.7, 54.7, 141, 120 }, + [37] = { 24.9, 54.6, 141, 120 }, + [38] = { 25, 54.5, 141, 120 }, + [39] = { 25.7, 54.4, 141, 120 }, + [40] = { 25.2, 54.3, 141, 120 }, + [41] = { 25.3, 54.2, 141, 120 }, + [42] = { 31.3, 50.2, 141, 120 }, + [43] = { 31.2, 50, 141, 120 }, + [44] = { 31.2, 49.9, 141, 120 }, + [45] = { 42, 33.1, 215, 120 }, + [46] = { 37.9, 29.8, 215, 120 }, + [47] = { 38, 29.8, 215, 120 }, + [48] = { 37.7, 29.8, 215, 120 }, + [49] = { 37.6, 29.8, 215, 120 }, + [50] = { 37.3, 29.7, 215, 120 }, + [51] = { 38.3, 29.4, 215, 120 }, + [52] = { 38.3, 29.3, 215, 120 }, + [53] = { 38.9, 28.7, 215, 120 }, + [54] = { 38.9, 28.6, 215, 120 }, + [55] = { 37.2, 28.4, 215, 120 }, + [56] = { 37.2, 28.3, 215, 120 }, + [57] = { 41, 28.1, 215, 120 }, + [58] = { 38.2, 28.1, 215, 120 }, + [59] = { 40.9, 28.1, 215, 120 }, + [60] = { 40.7, 28, 215, 120 }, + [61] = { 39, 27.9, 215, 120 }, + [62] = { 38.3, 27.8, 215, 120 }, + [63] = { 39, 27.8, 215, 120 }, + [64] = { 40.1, 27.5, 215, 120 }, + [65] = { 40, 26.9, 215, 120 }, + [66] = { 40.6, 26.7, 215, 120 }, + [67] = { 40.9, 26.6, 215, 120 }, + [68] = { 41, 26.6, 215, 120 }, + [69] = { 41.3, 26.3, 215, 120 }, + [70] = { 39.3, 26, 215, 120 }, + [71] = { 39.3, 25.9, 215, 120 }, + [72] = { 39.3, 25.6, 215, 120 }, + [73] = { 39.3, 25.5, 215, 120 }, + [74] = { 38.9, 25.3, 215, 120 }, + [75] = { 39.1, 24.7, 215, 120 }, + [76] = { 39.7, 24.6, 215, 120 }, + [77] = { 39.8, 24.6, 215, 120 }, + [78] = { 39.4, 24.3, 215, 120 }, + [79] = { 39.5, 24.2, 215, 120 }, + [80] = { 39.9, 23.9, 215, 120 }, + [81] = { 39.8, 23.9, 215, 120 }, + [82] = { 44.6, 23.2, 215, 120 }, + [83] = { 44.6, 23.1, 215, 120 }, + [84] = { 44.1, 22.5, 215, 120 }, + [85] = { 44, 22.4, 215, 120 }, + [86] = { 35.4, 21.3, 215, 120 }, + [87] = { 35.4, 21.2, 215, 120 }, + [88] = { 35.8, 21.1, 215, 120 }, + [89] = { 35.7, 21, 215, 120 }, + [90] = { 89, 48.5, 405, 120 }, + [91] = { 89, 48.4, 405, 120 }, + [92] = { 66.9, 50.5, 1497, 120 }, + [93] = { 65, 50.5, 1497, 120 }, + [94] = { 67.3, 50, 1497, 120 }, + [95] = { 64.6, 50, 1497, 120 }, + [96] = { 67.9, 49.6, 1497, 120 }, + [97] = { 64, 49.5, 1497, 120 }, + [98] = { 68.4, 49.4, 1497, 120 }, + [99] = { 63.5, 49.3, 1497, 120 }, + [100] = { 68.6, 48.8, 1497, 120 }, + [101] = { 63.2, 48.7, 1497, 120 }, + [102] = { 69.1, 48.1, 1497, 120 }, + [103] = { 62.8, 48, 1497, 120 }, + [104] = { 69.5, 47.7, 1497, 120 }, + [105] = { 62.4, 47.6, 1497, 120 }, + [106] = { 69.6, 46.9, 1497, 120 }, + [107] = { 62.3, 46.8, 1497, 120 }, + [108] = { 66.5, 46.7, 1497, 120 }, + [109] = { 65.4, 46.7, 1497, 120 }, + [110] = { 69.9, 46, 1497, 120 }, + [111] = { 62, 45.9, 1497, 120 }, + [112] = { 70.2, 45.5, 1497, 120 }, + [113] = { 61.7, 45.3, 1497, 120 }, + [114] = { 67.7, 44.9, 1497, 120 }, + [115] = { 64.2, 44.9, 1497, 120 }, + [116] = { 67.8, 43.3, 1497, 120 }, + [117] = { 64.3, 43.2, 1497, 120 }, + [118] = { 70.3, 42.9, 1497, 120 }, + [119] = { 61.7, 42.7, 1497, 120 }, + [120] = { 69.9, 42.3, 1497, 120 }, + [121] = { 62, 42.2, 1497, 120 }, + [122] = { 69.7, 41.4, 1497, 120 }, + [123] = { 62.3, 41.3, 1497, 120 }, + [124] = { 69.6, 40.6, 1497, 120 }, + [125] = { 62.4, 40.5, 1497, 120 }, + [126] = { 69.1, 40.2, 1497, 120 }, + [127] = { 62.8, 40.1, 1497, 120 }, + [128] = { 68.7, 39.5, 1497, 120 }, + [129] = { 63.3, 39.4, 1497, 120 }, + [130] = { 68.5, 38.9, 1497, 120 }, + [131] = { 63.6, 38.8, 1497, 120 }, + [132] = { 67.9, 38.7, 1497, 120 }, + [133] = { 64, 38.6, 1497, 120 }, + [134] = { 67.3, 38.2, 1497, 120 }, + [135] = { 64.7, 38.1, 1497, 120 }, + [136] = { 66.5, 37.8, 1497, 120 }, + [137] = { 65.5, 37.8, 1497, 120 }, + [138] = { 67, 37.7, 1497, 120 }, + [139] = { 65, 37.7, 1497, 120 }, + [140] = { 63, 81, 1519, 120 }, + [141] = { 62.9, 80.9, 1519, 120 }, + [142] = { 64.3, 79.9, 1519, 120 }, + [143] = { 62.5, 79.8, 1519, 120 }, + [144] = { 64.3, 79.8, 1519, 120 }, + [145] = { 62.5, 79.7, 1519, 120 }, + [146] = { 63.9, 78.7, 1519, 120 }, + [147] = { 63.9, 78.6, 1519, 120 }, + [148] = { 61.8, 75.3, 1519, 25 }, + [149] = { 61.8, 74.9, 1519, 120 }, + [150] = { 61.9, 74.9, 1519, 120 }, + [151] = { 61.7, 74.8, 1519, 120 }, + [152] = { 61.9, 74.8, 1519, 120 }, + [153] = { 61.8, 74.7, 1519, 120 }, + [154] = { 62, 74.7, 1519, 120 }, + [155] = { 61.6, 74.7, 1519, 120 }, + [156] = { 61.9, 74.7, 1519, 120 }, + [157] = { 61.8, 74.6, 1519, 120 }, + [158] = { 61.9, 74.6, 1519, 120 }, + [159] = { 61.7, 74.6, 1519, 120 }, + [160] = { 62, 74.6, 1519, 120 }, + [161] = { 61.6, 74.6, 1519, 120 }, + [162] = { 61.7, 74.5, 1519, 120 }, + [163] = { 61.8, 74.5, 1519, 120 }, + [164] = { 61.9, 74.5, 1519, 120 }, + [165] = { 62, 74.5, 1519, 120 }, + [166] = { 61.6, 74.5, 1519, 120 }, + [167] = { 61.9, 74.4, 1519, 120 }, + [168] = { 61.8, 74.4, 1519, 120 }, + [169] = { 62, 74.4, 1519, 120 }, + [170] = { 61.7, 74.4, 1519, 120 }, + [171] = { 62, 74.3, 1519, 120 }, + [172] = { 61.7, 74.3, 1519, 120 }, + [173] = { 61.9, 74.3, 1519, 120 }, + [174] = { 61.8, 74.3, 1519, 120 }, + [175] = { 37.1, 74, 1519, 300 }, + [176] = { 48.9, 71.7, 1519, 120 }, + [177] = { 49, 71.6, 1519, 120 }, + [178] = { 36.2, 70, 1519, 300 }, + [179] = { 37.3, 60.5, 1537, 120 }, + [180] = { 36.9, 59.9, 1537, 120 }, + [181] = { 36.2, 58.5, 1537, 120 }, + [182] = { 35.9, 58.1, 1537, 120 }, + [183] = { 20.4, 52.2, 1537, 120 }, + [184] = { 18.5, 52, 1537, 120 }, + [185] = { 20.4, 51.9, 1537, 120 }, + [186] = { 20.3, 51.7, 1537, 120 }, + [187] = { 20.3, 51.5, 1537, 120 }, + [188] = { 20.3, 51.1, 1537, 120 }, + [189] = { 20.3, 50.9, 1537, 120 }, + [190] = { 18.4, 50.8, 1537, 120 }, + [191] = { 20.3, 50.6, 1537, 120 }, + [192] = { 20.2, 50.4, 1537, 120 }, + [193] = { 65.2, 26.4, 1537, 120 }, + [194] = { 54.5, 67.8, 1637, 120 }, + [195] = { 46, 54.5, 1637, 120 }, + [196] = { 45.9, 54.3, 1637, 120 }, + [197] = { 45.7, 53.9, 1637, 120 }, + [198] = { 45.6, 53.7, 1637, 120 }, + [199] = { 45.4, 53.4, 1637, 120 }, + [200] = { 45.3, 53.2, 1637, 120 }, + [201] = { 45.2, 52.9, 1637, 120 }, + [202] = { 44.2, 51, 1637, 120 }, + [203] = { 44.1, 50.8, 1637, 120 }, + [204] = { 43.9, 50.5, 1637, 120 }, + [205] = { 43.7, 49.9, 1637, 120 }, + [206] = { 60.2, 80.1, 1638, 120 }, + [207] = { 60, 80, 1638, 120 }, + [208] = { 39.9, 64, 1638, 120 }, + [209] = { 40.1, 63.8, 1638, 120 }, + [210] = { 38.7, 63.7, 1638, 120 }, + [211] = { 38.5, 63.6, 1638, 120 }, + [212] = { 36.8, 63.3, 1638, 120 }, + [213] = { 37, 63.1, 1638, 120 }, + [214] = { 41.7, 61.6, 1638, 120 }, + [215] = { 41.8, 61.4, 1638, 120 }, + [216] = { 44.6, 58.4, 1638, 120 }, + [217] = { 44.5, 58, 1638, 120 }, + [218] = { 36.4, 56.9, 1638, 120 }, + [219] = { 36.3, 56.5, 1638, 120 }, + [220] = { 55.1, 55.5, 1638, 120 }, + [221] = { 41.6, 55.5, 1638, 120 }, + [222] = { 54.8, 55.5, 1638, 120 }, + [223] = { 41.4, 55.2, 1638, 120 }, + [224] = { 53.7, 54.9, 1638, 120 }, + [225] = { 53.5, 54.7, 1638, 120 }, + [226] = { 45.2, 54.4, 1638, 120 }, + [227] = { 41.8, 54.1, 1638, 120 }, + [228] = { 45.2, 54.1, 1638, 120 }, + [229] = { 41.7, 53.8, 1638, 120 }, + [230] = { 50.7, 52.2, 1638, 120 }, + [231] = { 50.5, 52.2, 1638, 120 }, + [232] = { 50.2, 49.3, 1638, 120 }, + [233] = { 50, 49.3, 1638, 120 }, + [234] = { 53, 48.5, 1638, 120 }, + [235] = { 53.2, 48.3, 1638, 120 }, + [236] = { 54.8, 47.9, 1638, 120 }, + [237] = { 55, 47.9, 1638, 120 }, + [238] = { 56.5, 46.6, 1638, 120 }, + [239] = { 56.7, 46.6, 1638, 120 }, + [240] = { 46.6, 44.9, 1638, 120 }, + [241] = { 46.7, 44.6, 1638, 120 }, + [242] = { 46.9, 43, 1638, 120 }, + [243] = { 46.9, 42.7, 1638, 120 }, + [244] = { 44.8, 41.7, 1638, 120 }, + [245] = { 44.6, 41.6, 1638, 120 }, + [246] = { 45.7, 38.6, 1638, 120 }, + [247] = { 45.9, 38.5, 1638, 120 }, + [248] = { 48.8, 38.1, 1638, 120 }, + [249] = { 49.1, 38, 1638, 120 }, + [250] = { 47.4, 36.5, 1638, 120 }, + [251] = { 47.6, 36.3, 1638, 120 }, + [252] = { 49.6, 34.7, 1638, 120 }, + [253] = { 49.4, 34.6, 1638, 120 }, + [254] = { 72.6, 31.1, 1638, 120 }, + [255] = { 72.6, 30.7, 1638, 120 }, + [256] = { 70.2, 27.6, 1638, 120 }, + [257] = { 69.9, 27.5, 1638, 120 }, + [258] = { 27.3, 21.9, 1638, 120 }, + [259] = { 27.5, 21.6, 1638, 120 }, + [260] = { 29.3, 20.7, 1638, 120 }, + [261] = { 29.2, 20.4, 1638, 120 }, + [262] = { 39.3, 47.2, 1657, 120 }, + [263] = { 37.7, 47, 1657, 120 }, + [264] = { 40.4, 46.8, 1657, 120 }, + [265] = { 37.2, 46.3, 1657, 120 }, + [266] = { 36.7, 45.5, 1657, 120 }, + [267] = { 41.6, 45.3, 1657, 120 }, + [268] = { 42, 44.6, 1657, 120 }, + [269] = { 36.3, 44.6, 1657, 120 }, + [270] = { 42.4, 43.9, 1657, 120 }, + [271] = { 42.6, 43.4, 1657, 120 }, + [272] = { 36, 43.1, 1657, 120 }, + [273] = { 42.9, 42.7, 1657, 120 }, + [274] = { 43.2, 42, 1657, 120 }, + [275] = { 36.1, 40.1, 1657, 120 }, + [276] = { 42.8, 39.3, 1657, 120 }, + [277] = { 36.5, 39, 1657, 120 }, + [278] = { 42.1, 38.4, 1657, 120 }, + [279] = { 41.4, 37.8, 1657, 120 }, + [280] = { 36.6, 37.6, 1657, 120 }, + [281] = { 40.8, 37.2, 1657, 120 }, + [282] = { 37, 36.8, 1657, 120 }, + [283] = { 37.4, 36.3, 1657, 120 }, + [284] = { 40.7, 35.9, 1657, 120 }, + [285] = { 38.2, 35.6, 1657, 120 }, + [286] = { 39, 34.9, 1657, 120 }, + [287] = { 67.9, 15.7, 1657, 120 }, + [288] = { 67.4, 14.5, 1657, 120 }, + [289] = { 67.2, 14.1, 1657, 120 }, + }, + }, + [181392] = { + ["coords"] = { + [1] = { 60.3, 35.5, 1, 120 }, + [2] = { 54.1, 32, 4, 120 }, + [3] = { 54.3, 31.8, 4, 120 }, + [4] = { 51.1, 17.6, 11, 120 }, + [5] = { 51.3, 17.5, 11, 120 }, + [6] = { 41.6, 43.3, 16, 120 }, + [7] = { 41.7, 43.1, 16, 120 }, + [8] = { 59.7, 39.4, 17, 120 }, + [9] = { 59.7, 39.3, 17, 120 }, + [10] = { 52.2, 97.2, 36, 120 }, + [11] = { 52.2, 96.8, 36, 120 }, + [12] = { 34.4, 80.8, 40, 120 }, + [13] = { 34.3, 80.4, 40, 120 }, + [14] = { 61.9, 52.9, 47, 120 }, + [15] = { 62.1, 52.7, 47, 120 }, + [16] = { 32.6, 73, 51, 120 }, + [17] = { 32.2, 72.7, 51, 120 }, + [18] = { 54.4, 69.6, 130, 120 }, + [19] = { 54.3, 69.3, 130, 120 }, + [20] = { 57.7, 73.2, 139, 120 }, + [21] = { 57.6, 73, 139, 120 }, + [22] = { 56.7, 92, 141, 120 }, + [23] = { 56.6, 91.8, 141, 120 }, + [24] = { 41.5, 90.9, 148, 120 }, + [25] = { 41.4, 90.8, 148, 120 }, + [26] = { 39.2, 30.3, 215, 120 }, + [27] = { 39.1, 29.8, 215, 120 }, + [28] = { 39.1, 28.8, 215, 120 }, + [29] = { 33.9, 22.1, 215, 120 }, + [30] = { 34, 22, 215, 120 }, + [31] = { 34, 21.9, 215, 120 }, + [32] = { 54.6, 33.5, 267, 120 }, + [33] = { 54.5, 33.1, 267, 120 }, + [34] = { 64.8, 71.2, 331, 120 }, + [35] = { 64.7, 71.1, 331, 120 }, + [36] = { 87.3, 49.4, 405, 120 }, + [37] = { 87.5, 49.4, 405, 120 }, + [38] = { 87.4, 49.2, 405, 120 }, + [39] = { 60, 72.2, 406, 120 }, + [40] = { 59.9, 72.1, 406, 120 }, + [41] = { 70.1, 75.7, 490, 120 }, + [42] = { 70.2, 75.4, 490, 120 }, + [43] = { 19.3, 17.1, 490, 120 }, + [44] = { 19.5, 16.9, 490, 120 }, + [45] = { 30.6, 43.3, 618, 120 }, + [46] = { 30.6, 43.1, 618, 120 }, + [47] = { 78, 18.5, 1377, 120 }, + [48] = { 78.2, 18.3, 1377, 120 }, + [49] = { 63, 78.6, 1519, 120 }, + [50] = { 59.9, 75.6, 1519, 120 }, + [51] = { 61, 74.7, 1519, 120 }, + [52] = { 61.2, 73, 1519, 120 }, + [53] = { 49.2, 72, 1519, 120 }, + [54] = { 48.7, 71.8, 1519, 120 }, + [55] = { 49, 71.6, 1519, 120 }, + [56] = { 57.2, 89.5, 1537, 120 }, + [57] = { 55.7, 87.5, 1537, 120 }, + [58] = { 52, 85, 1537, 120 }, + [59] = { 51.1, 79.7, 1537, 120 }, + [60] = { 40.5, 76.8, 1537, 120 }, + [61] = { 71.6, 67.9, 1537, 120 }, + [62] = { 34, 62.5, 1537, 120 }, + [63] = { 30.9, 58.9, 1537, 120 }, + [64] = { 54.5, 56.7, 1537, 120 }, + [65] = { 20.7, 53.2, 1537, 120 }, + [66] = { 56.8, 52.8, 1537, 120 }, + [67] = { 18.5, 51.4, 1537, 120 }, + [68] = { 59, 44.7, 1537, 120 }, + [69] = { 24.7, 43.4, 1537, 120 }, + [70] = { 25.3, 37.2, 1537, 120 }, + [71] = { 54.8, 31, 1537, 120 }, + [72] = { 44.2, 30.6, 1537, 120 }, + [73] = { 29.7, 26.2, 1537, 120 }, + [74] = { 59.5, 23.2, 1537, 120 }, + [75] = { 50.7, 8.5, 1537, 120 }, + [76] = { 48, 8.3, 1537, 120 }, + [77] = { 37.5, 6.2, 1537, 120 }, + [78] = { 36.2, 4.3, 1537, 120 }, + [79] = { 54.1, 69.7, 1637, 120 }, + [80] = { 53.8, 69.4, 1637, 120 }, + [81] = { 53.6, 69.1, 1637, 120 }, + [82] = { 43.2, 32.8, 1637, 120 }, + [83] = { 46.4, 66.3, 1638, 120 }, + [84] = { 45.7, 63.9, 1638, 120 }, + [85] = { 45.7, 58.8, 1638, 120 }, + [86] = { 20.1, 25.6, 1638, 120 }, + [87] = { 20.6, 25.5, 1638, 120 }, + [88] = { 20.6, 24.7, 1638, 120 }, + [89] = { 11.7, 55.9, 4012, 120 }, + [90] = { 11.6, 55.5, 4012, 120 }, + }, + }, + [181393] = { + ["coords"] = { + [1] = { 45.5, 10.9, 14, 120 }, + [2] = { 46.6, 10.7, 14, 120 }, + [3] = { 45.3, 10.6, 14, 120 }, + [4] = { 46.4, 10.4, 14, 120 }, + [5] = { 42.8, 8.8, 14, 120 }, + [6] = { 67, 45.6, 1497, 120 }, + [7] = { 64.9, 45.6, 1497, 120 }, + [8] = { 67, 42.6, 1497, 120 }, + [9] = { 65, 42.6, 1497, 120 }, + [10] = { 62.5, 79, 1519, 120 }, + [11] = { 63.4, 78.3, 1519, 120 }, + [12] = { 60.9, 69.5, 1519, 120 }, + [13] = { 36.5, 62.3, 1537, 120 }, + [14] = { 35.6, 60.6, 1537, 120 }, + [15] = { 34.6, 58.9, 1537, 120 }, + [16] = { 49.1, 90.7, 1637, 120 }, + [17] = { 53.3, 89.9, 1637, 120 }, + [18] = { 48.3, 89.8, 1637, 120 }, + [19] = { 52.5, 89, 1637, 120 }, + [20] = { 38.7, 82.8, 1637, 120 }, + [21] = { 49.4, 68.8, 1637, 120 }, + [22] = { 53.6, 66, 1637, 120 }, + [23] = { 46.6, 64.1, 1637, 120 }, + [24] = { 52.9, 63.7, 1637, 120 }, + [25] = { 42.6, 61.8, 1637, 120 }, + [26] = { 38.4, 60, 1637, 120 }, + [27] = { 52.5, 58.7, 1637, 120 }, + [28] = { 51.5, 56.7, 1637, 120 }, + [29] = { 65.9, 41.3, 1637, 120 }, + [30] = { 66, 40.3, 1637, 120 }, + [31] = { 47, 39.9, 1637, 120 }, + [32] = { 45.3, 39.2, 1637, 120 }, + [33] = { 49.3, 38.4, 1637, 120 }, + [34] = { 40.8, 38.3, 1637, 120 }, + [35] = { 64.3, 37.9, 1637, 120 }, + [36] = { 64.5, 36.9, 1637, 120 }, + [37] = { 40.7, 35.5, 1637, 120 }, + [38] = { 48.5, 34, 1637, 120 }, + [39] = { 68.8, 28, 1637, 120 }, + [40] = { 69.6, 26, 1637, 120 }, + [41] = { 81.1, 23.6, 1637, 120 }, + [42] = { 81.8, 21.6, 1637, 120 }, + }, + }, + [181401] = { + ["coords"] = { + [1] = { 30.3, 56.7, 141, 120 }, + [2] = { 30.3, 56.3, 141, 120 }, + [3] = { 30.3, 56, 141, 120 }, + [4] = { 30.3, 54.7, 141, 120 }, + [5] = { 30.3, 54.4, 141, 120 }, + [6] = { 30.3, 54.1, 141, 120 }, + [7] = { 31.4, 50.4, 141, 120 }, + [8] = { 31.2, 50.1, 141, 120 }, + [9] = { 31, 49.7, 141, 120 }, + [10] = { 71, 74.8, 1519, 120 }, + [11] = { 72.2, 73.4, 1519, 120 }, + [12] = { 30.5, 73.3, 1637, 120 }, + [13] = { 40.5, 36.9, 1637, 120 }, + [14] = { 76.4, 33, 1637, 120 }, + [15] = { 75, 15.7, 1637, 120 }, + [16] = { 63.1, 46.8, 1657, 120 }, + [17] = { 63, 45.2, 1657, 120 }, + [18] = { 63, 43.6, 1657, 120 }, + [19] = { 62.8, 37.5, 1657, 120 }, + [20] = { 62.9, 35.8, 1657, 120 }, + [21] = { 62.8, 34.2, 1657, 120 }, + [22] = { 68.2, 16.9, 1657, 120 }, + [23] = { 67.4, 15.2, 1657, 120 }, + [24] = { 66.6, 13.3, 1657, 120 }, + }, + }, + [181402] = { + ["coords"] = { + [1] = { 24, 19.1, 5148, 25 }, + }, + }, + [181403] = { + ["coords"] = { + [1] = { 29.6, 7.4, 5148, 25 }, + }, + }, + [181404] = { + ["coords"] = { + [1] = { 46.9, 12.8, 5148, 25 }, + }, + }, + [181405] = { + ["coords"] = { + [1] = { 48.7, 26.8, 5148, 25 }, + }, + }, + [181431] = { + ["coords"] = { + [1] = { 46.5, 10.6, 14, 120 }, + [2] = { 42.3, 10.1, 14, 120 }, + [3] = { 46.3, 7.6, 14, 120 }, + [4] = { 44.5, 6.8, 14, 120 }, + [5] = { 42.5, 6.5, 14, 120 }, + [6] = { 7.6, 67.1, 28, 120 }, + [7] = { 8.2, 62.2, 28, 120 }, + [8] = { 61.9, 67.4, 85, 120 }, + [9] = { 74.2, 13.2, 130, 120 }, + [10] = { 56.4, 92.4, 141, 120 }, + [11] = { 55.9, 89.8, 141, 120 }, + [12] = { 25.4, 65.5, 141, 120 }, + [13] = { 29.1, 64.2, 141, 120 }, + [14] = { 23.5, 64, 141, 120 }, + [15] = { 27.1, 64, 141, 120 }, + [16] = { 25.3, 62.6, 141, 120 }, + [17] = { 30.5, 61.8, 141, 120 }, + [18] = { 29.8, 60.8, 141, 120 }, + [19] = { 25.3, 59.4, 141, 120 }, + [20] = { 31.4, 59.3, 141, 120 }, + [21] = { 28.7, 58.7, 141, 120 }, + [22] = { 30.1, 58.1, 141, 120 }, + [23] = { 26.9, 57.4, 141, 120 }, + [24] = { 25.2, 56.9, 141, 120 }, + [25] = { 25.8, 55.7, 141, 120 }, + [26] = { 24, 55.5, 141, 120 }, + [27] = { 27.4, 55.5, 141, 120 }, + [28] = { 34, 55.4, 141, 120 }, + [29] = { 29.6, 55.4, 141, 120 }, + [30] = { 32.2, 55.4, 141, 120 }, + [31] = { 30.6, 55.3, 141, 120 }, + [32] = { 35.8, 54.4, 141, 120 }, + [33] = { 25.8, 53, 141, 120 }, + [34] = { 30.1, 52.8, 141, 120 }, + [35] = { 28.3, 51.4, 141, 120 }, + [36] = { 26.4, 50.9, 141, 120 }, + [37] = { 30.8, 50.3, 141, 120 }, + [38] = { 24.2, 50.2, 141, 120 }, + [39] = { 28.7, 48.7, 141, 120 }, + [40] = { 25, 48.3, 141, 120 }, + [41] = { 41.1, 33.4, 215, 120 }, + [42] = { 42.4, 32.6, 215, 120 }, + [43] = { 39.4, 30.8, 215, 120 }, + [44] = { 42.1, 29.6, 215, 120 }, + [45] = { 37.3, 29.4, 215, 120 }, + [46] = { 38.8, 27.7, 215, 120 }, + [47] = { 41.3, 27.3, 215, 120 }, + [48] = { 39.8, 27.2, 215, 120 }, + [49] = { 39.4, 27, 215, 120 }, + [50] = { 36.6, 26, 215, 120 }, + [51] = { 38.9, 25.5, 215, 120 }, + [52] = { 42.3, 25.2, 215, 120 }, + [53] = { 41.1, 23.9, 215, 120 }, + [54] = { 40, 23.4, 215, 120 }, + [55] = { 44.6, 23.3, 215, 120 }, + [56] = { 44.3, 22.2, 215, 120 }, + [57] = { 35.9, 22, 215, 120 }, + [58] = { 34.8, 20, 215, 120 }, + [59] = { 88.3, 47.1, 405, 120 }, + [60] = { 56.4, 90.6, 1497, 120 }, + [61] = { 65.9, 71.9, 1497, 120 }, + [62] = { 49.2, 69.3, 1497, 120 }, + [63] = { 81.9, 68, 1497, 120 }, + [64] = { 75.7, 58.9, 1497, 120 }, + [65] = { 56.1, 58.6, 1497, 120 }, + [66] = { 66, 54.9, 1497, 120 }, + [67] = { 65.9, 49.8, 1497, 120 }, + [68] = { 65.9, 48.1, 1497, 120 }, + [69] = { 84.4, 45.8, 1497, 120 }, + [70] = { 69.7, 44.3, 1497, 120 }, + [71] = { 72.6, 44.3, 1497, 120 }, + [72] = { 62.2, 44.1, 1497, 120 }, + [73] = { 66, 44.1, 1497, 120 }, + [74] = { 59, 44, 1497, 120 }, + [75] = { 47.8, 43.7, 1497, 120 }, + [76] = { 66.1, 38.2, 1497, 120 }, + [77] = { 66, 36.9, 1497, 120 }, + [78] = { 66, 33.9, 1497, 120 }, + [79] = { 75.7, 29.7, 1497, 120 }, + [80] = { 66.1, 28.7, 1497, 120 }, + [81] = { 57.5, 28, 1497, 120 }, + [82] = { 81.6, 21.1, 1497, 120 }, + [83] = { 50.7, 20.9, 1497, 120 }, + [84] = { 66.2, 16.4, 1497, 120 }, + [85] = { 66.2, 11.3, 1497, 120 }, + [86] = { 73.3, 90.7, 1519, 120 }, + [87] = { 49.1, 85.6, 1519, 120 }, + [88] = { 69.2, 82.7, 1519, 120 }, + [89] = { 44, 80.9, 1519, 120 }, + [90] = { 54.3, 79.9, 1519, 120 }, + [91] = { 65.5, 75.5, 1519, 120 }, + [92] = { 58.2, 75.5, 1519, 120 }, + [93] = { 51, 73.3, 1519, 120 }, + [94] = { 44.9, 72.3, 1519, 120 }, + [95] = { 66.2, 70.6, 1519, 120 }, + [96] = { 71.8, 69.4, 1519, 120 }, + [97] = { 36.1, 66.7, 1519, 120 }, + [98] = { 58.2, 64.6, 1519, 120 }, + [99] = { 42.1, 63.8, 1519, 120 }, + [100] = { 75.9, 63.7, 1519, 120 }, + [101] = { 69.2, 61.9, 1519, 120 }, + [102] = { 64, 61.7, 1519, 120 }, + [103] = { 46.3, 60.4, 1519, 120 }, + [104] = { 73.4, 58.5, 1519, 120 }, + [105] = { 51.2, 53.8, 1519, 120 }, + [106] = { 69.6, 53.3, 1519, 120 }, + [107] = { 68, 50.1, 1519, 120 }, + [108] = { 55.8, 49.8, 1519, 120 }, + [109] = { 73.3, 46.4, 1519, 120 }, + [110] = { 61.6, 44.5, 1519, 120 }, + [111] = { 67, 42.5, 1519, 120 }, + [112] = { 62.4, 40.1, 1519, 120 }, + [113] = { 63, 31.8, 1519, 120 }, + [114] = { 50.7, 82.3, 1537, 120 }, + [115] = { 21.6, 78, 1537, 120 }, + [116] = { 62.8, 76.2, 1537, 120 }, + [117] = { 32.7, 76.2, 1537, 120 }, + [118] = { 50.6, 58.7, 1537, 120 }, + [119] = { 70.6, 50, 1537, 120 }, + [120] = { 45.5, 48.4, 1537, 120 }, + [121] = { 49.8, 43.7, 1537, 120 }, + [122] = { 21.5, 41.9, 1537, 120 }, + [123] = { 39.8, 39.3, 1537, 120 }, + [124] = { 56, 35.3, 1537, 120 }, + [125] = { 64.4, 24.7, 1537, 120 }, + [126] = { 30.5, 18.1, 1537, 120 }, + [127] = { 46.7, 11.1, 1537, 120 }, + [128] = { 52.8, 89.5, 1637, 120 }, + [129] = { 37, 87.7, 1637, 120 }, + [130] = { 52.2, 78.2, 1637, 120 }, + [131] = { 45.2, 75.4, 1637, 120 }, + [132] = { 37.7, 74.3, 1637, 120 }, + [133] = { 50.2, 71.2, 1637, 120 }, + [134] = { 31.1, 70.3, 1637, 120 }, + [135] = { 41.8, 67.9, 1637, 120 }, + [136] = { 52.7, 64.8, 1637, 120 }, + [137] = { 44.1, 63.2, 1637, 120 }, + [138] = { 17.9, 60.2, 1637, 120 }, + [139] = { 49.4, 59.4, 1637, 120 }, + [140] = { 27.9, 58.5, 1637, 120 }, + [141] = { 59.6, 56, 1637, 120 }, + [142] = { 43.5, 52.8, 1637, 120 }, + [143] = { 39, 52.4, 1637, 120 }, + [144] = { 46.9, 50.4, 1637, 120 }, + [145] = { 51.9, 45.7, 1637, 120 }, + [146] = { 59, 43.6, 1637, 120 }, + [147] = { 75.2, 40, 1637, 120 }, + [148] = { 64.4, 37.4, 1637, 120 }, + [149] = { 42.7, 36.9, 1637, 120 }, + [150] = { 70.2, 36.6, 1637, 120 }, + [151] = { 53.8, 35.3, 1637, 120 }, + [152] = { 75.8, 33.2, 1637, 120 }, + [153] = { 67, 30.9, 1637, 120 }, + [154] = { 72.3, 24.3, 1637, 120 }, + [155] = { 66.7, 18.2, 1637, 120 }, + [156] = { 55.5, 81.5, 1638, 120 }, + [157] = { 61.8, 77.4, 1638, 120 }, + [158] = { 47.2, 68.7, 1638, 120 }, + [159] = { 60.6, 62.5, 1638, 120 }, + [160] = { 37, 62, 1638, 120 }, + [161] = { 44.3, 53.2, 1638, 120 }, + [162] = { 56.4, 51.6, 1638, 120 }, + [163] = { 49.4, 50.8, 1638, 120 }, + [164] = { 47.1, 49.9, 1638, 120 }, + [165] = { 33.4, 45.1, 1638, 120 }, + [166] = { 44.9, 42.4, 1638, 120 }, + [167] = { 61.4, 40.9, 1638, 120 }, + [168] = { 55.5, 34.6, 1638, 120 }, + [169] = { 50, 32.1, 1638, 120 }, + [170] = { 73, 31.8, 1638, 120 }, + [171] = { 71.5, 26.5, 1638, 120 }, + [172] = { 30.2, 25.1, 1638, 120 }, + [173] = { 24.4, 15.6, 1638, 120 }, + [174] = { 39.2, 89.4, 1657, 120 }, + [175] = { 57.1, 83.2, 1657, 120 }, + [176] = { 30.1, 82.1, 1657, 120 }, + [177] = { 47.8, 82.1, 1657, 120 }, + [178] = { 39.1, 75.4, 1657, 120 }, + [179] = { 64.1, 71.4, 1657, 120 }, + [180] = { 60.4, 66.5, 1657, 120 }, + [181] = { 38.7, 59.9, 1657, 120 }, + [182] = { 68, 59.2, 1657, 120 }, + [183] = { 55, 56.5, 1657, 120 }, + [184] = { 62.2, 53.8, 1657, 120 }, + [185] = { 46.5, 50.1, 1657, 120 }, + [186] = { 38.5, 48.1, 1657, 120 }, + [187] = { 41.2, 42.4, 1657, 120 }, + [188] = { 32.7, 41.4, 1657, 120 }, + [189] = { 48.9, 41, 1657, 120 }, + [190] = { 81, 40.8, 1657, 120 }, + [191] = { 59.8, 40.6, 1657, 120 }, + [192] = { 72, 40.5, 1657, 120 }, + [193] = { 64.3, 40.5, 1657, 120 }, + [194] = { 89.6, 35.8, 1657, 120 }, + [195] = { 41.4, 29.3, 1657, 120 }, + [196] = { 61.9, 28, 1657, 120 }, + [197] = { 53.3, 21.3, 1657, 120 }, + [198] = { 44.3, 18.9, 1657, 120 }, + [199] = { 65.5, 16.4, 1657, 120 }, + [200] = { 33.8, 15.6, 1657, 120 }, + [201] = { 55.1, 8.4, 1657, 120 }, + [202] = { 37.3, 6.3, 1657, 120 }, + [203] = { 50, 98.9, 5581, 120 }, + [204] = { 50.3, 94.4, 5581, 120 }, + }, + ["fac"] = "AH", + }, + [181446] = { + ["coords"] = {}, + }, + [181448] = { + ["coords"] = {}, + }, + [181450] = { + ["coords"] = {}, + }, + [181455] = { + ["coords"] = {}, + }, + [181476] = { + ["coords"] = { + [1] = { 17.8, 40.1, 10, 25 }, + [2] = { 58.6, 48.9, 85, 25 }, + [3] = { 39.9, 25.8, 139, 900 }, + [4] = { 88.5, 88.3, 5225, 900 }, + }, + }, + [181477] = { + ["coords"] = { + [1] = { 29, 9.8, 3456, 0 }, + }, + }, + [181478] = { + ["coords"] = { + [1] = { 26.9, 12.8, 3456, 0 }, + }, + }, + [181496] = { + ["coords"] = { + [1] = { 72.5, 56.7, 3456, 180 }, + }, + }, + [181510] = { + ["coords"] = { + [1] = { 64.2, 65.9, 3456, 0 }, + }, + }, + [181511] = { + ["coords"] = { + [1] = { 64.5, 66.3, 3456, 0 }, + }, + }, + [181512] = { + ["coords"] = { + [1] = { 64.1, 66.6, 3456, 0 }, + }, + }, + [181513] = { + ["coords"] = { + [1] = { 64.5, 66.9, 3456, 0 }, + }, + }, + [181514] = { + ["coords"] = { + [1] = { 64.5, 68.2, 3456, 0 }, + }, + }, + [181515] = { + ["coords"] = { + [1] = { 64, 68.4, 3456, 0 }, + }, + }, + [181516] = { + ["coords"] = { + [1] = { 64.2, 67.7, 3456, 0 }, + }, + }, + [181517] = { + ["coords"] = { + [1] = { 64.7, 65.5, 3456, 0 }, + }, + }, + [181518] = { + ["coords"] = { + [1] = { 64.7, 64.8, 3456, 0 }, + }, + }, + [181519] = { + ["coords"] = { + [1] = { 65.1, 64.1, 3456, 0 }, + }, + }, + [181520] = { + ["coords"] = { + [1] = { 65.5, 64.2, 3456, 0 }, + }, + }, + [181521] = { + ["coords"] = { + [1] = { 65.6, 65, 3456, 0 }, + }, + }, + [181522] = { + ["coords"] = { + [1] = { 66.1, 64.5, 3456, 0 }, + }, + }, + [181523] = { + ["coords"] = { + [1] = { 65.4, 65.3, 3456, 0 }, + }, + }, + [181524] = { + ["coords"] = { + [1] = { 65.7, 65.6, 3456, 0 }, + }, + }, + [181525] = { + ["coords"] = { + [1] = { 65.9, 66.2, 3456, 0 }, + }, + }, + [181526] = { + ["coords"] = { + [1] = { 65.1, 66.4, 3456, 0 }, + }, + }, + [181527] = { + ["coords"] = { + [1] = { 65.4, 66.7, 3456, 0 }, + }, + }, + [181528] = { + ["coords"] = { + [1] = { 65.1, 67.3, 3456, 0 }, + }, + }, + [181529] = { + ["coords"] = { + [1] = { 65.5, 67.8, 3456, 0 }, + }, + }, + [181530] = { + ["coords"] = { + [1] = { 64.9, 68.2, 3456, 0 }, + }, + }, + [181531] = { + ["coords"] = { + [1] = { 64.6, 68.8, 3456, 0 }, + }, + }, + [181532] = { + ["coords"] = { + [1] = { 65.1, 69.3, 3456, 0 }, + }, + }, + [181533] = { + ["coords"] = { + [1] = { 65.2, 68.5, 3456, 0 }, + }, + }, + [181534] = { + ["coords"] = { + [1] = { 65.3, 69.7, 3456, 0 }, + }, + }, + [181535] = { + ["coords"] = { + [1] = { 65.7, 69, 3456, 0 }, + }, + }, + [181536] = { + ["coords"] = { + [1] = { 66.1, 69.5, 3456, 0 }, + }, + }, + [181537] = { + ["coords"] = { + [1] = { 66.7, 69.7, 3456, 0 }, + }, + }, + [181538] = { + ["coords"] = { + [1] = { 66.8, 68.5, 3456, 0 }, + }, + }, + [181539] = { + ["coords"] = { + [1] = { 66.5, 69.1, 3456, 0 }, + }, + }, + [181540] = { + ["coords"] = { + [1] = { 66.2, 68.6, 3456, 0 }, + }, + }, + [181541] = { + ["coords"] = { + [1] = { 65.9, 68, 3456, 0 }, + }, + }, + [181542] = { + ["coords"] = { + [1] = { 66.4, 67.7, 3456, 0 }, + }, + }, + [181543] = { + ["coords"] = { + [1] = { 66.1, 67.1, 3456, 0 }, + }, + }, + [181544] = { + ["coords"] = { + [1] = { 66.6, 66.9, 3456, 0 }, + }, + }, + [181545] = { + ["coords"] = { + [1] = { 67.1, 67.1, 3456, 0 }, + }, + }, + [181546] = { + ["coords"] = { + [1] = { 67.1, 67.9, 3456, 0 }, + }, + }, + [181547] = { + ["coords"] = { + [1] = { 67.4, 68.5, 3456, 0 }, + }, + }, + [181548] = { + ["coords"] = { + [1] = { 67.5, 67.6, 3456, 0 }, + }, + }, + [181549] = { + ["coords"] = { + [1] = { 67.6, 66.8, 3456, 0 }, + }, + }, + [181550] = { + ["coords"] = { + [1] = { 67.9, 67.6, 3456, 0 }, + }, + }, + [181551] = { + ["coords"] = { + [1] = { 68.1, 66.9, 3456, 0 }, + }, + }, + [181552] = { + ["coords"] = { + [1] = { 67.8, 66.2, 3456, 0 }, + }, + }, + [181562] = { + ["coords"] = { + [1] = { 60, 71.9, 406, 120 }, + }, + }, + [181574] = { + ["coords"] = {}, + }, + [181575] = { + ["coords"] = { + [1] = { 78.6, 14.5, 3456, 7200 }, + }, + }, + [181576] = { + ["coords"] = { + [1] = { 28.2, 8.9, 3456, 7200 }, + }, + }, + [181577] = { + ["coords"] = { + [1] = { 82.8, 56.7, 3456, 180 }, + }, + }, + [181578] = { + ["coords"] = { + [1] = { 27.4, 88.3, 3456, 7200 }, + }, + }, + [181580] = { + ["coords"] = { + [1] = { 39.1, 72.1, 41, 300 }, + }, + }, + [181581] = { + ["coords"] = { + [1] = { 93.6, 38.8, 5086, 300 }, + }, + }, + [181582] = { + ["coords"] = { + [1] = { 93.6, 38.8, 5086, 300 }, + }, + }, + [181583] = { + ["coords"] = { + [1] = { 12.8, 75.1, 85, 300 }, + }, + }, + [181584] = { + ["coords"] = { + [1] = { 12.7, 79.2, 85, 300 }, + [2] = { 23.6, 7.7, 130, 300 }, + }, + }, + [181596] = { + ["coords"] = { + [1] = { 3, 47.1, 3, 900 }, + [2] = { 48.8, 48.1, 8, 300 }, + [3] = { 42.7, 93.1, 17, 300 }, + [4] = { 61.2, 24, 17, 300 }, + [5] = { 48, 8.3, 17, 300 }, + [6] = { 54.1, 1.3, 17, 300 }, + [7] = { 89.4, 22.9, 46, 300 }, + [8] = { 82, 38.3, 51, 900 }, + [9] = { 79.1, 81.9, 331, 300 }, + [10] = { 73.2, 59.8, 331, 300 }, + [11] = { 50.8, 60.5, 357, 300 }, + [12] = { 28.9, 24.3, 400, 300 }, + [13] = { 31.4, 36.7, 440, 300 }, + [14] = { 78.9, 64.7, 490, 300 }, + [15] = { 50.2, 30.2, 618, 300 }, + }, + }, + [181598] = { + ["coords"] = { + [1] = { 48.8, 85.1, 1377, 600 }, + [2] = { 26.4, 81.5, 1377, 600 }, + [3] = { 20.8, 81.4, 1377, 600 }, + [4] = { 38.9, 80.8, 1377, 600 }, + [5] = { 18.9, 80.3, 1377, 600 }, + [6] = { 36.7, 77.5, 1377, 600 }, + [7] = { 64, 70.9, 1377, 600 }, + [8] = { 31.3, 65.5, 1377, 600 }, + [9] = { 60.6, 63, 1377, 600 }, + [10] = { 59.2, 58.8, 1377, 600 }, + [11] = { 50.5, 50.7, 1377, 600 }, + [12] = { 58.1, 50, 1377, 600 }, + [13] = { 49.2, 44.8, 1377, 600 }, + [14] = { 36, 38.4, 1377, 600 }, + [15] = { 36.1, 29.9, 1377, 600 }, + [16] = { 39.9, 22.4, 1377, 600 }, + }, + }, + [181600] = { + ["coords"] = {}, + }, + [181605] = { + ["coords"] = { + [1] = { 53.9, 32, 4, 120 }, + [2] = { 51, 17.3, 11, 120 }, + [3] = { 41.7, 42.7, 16, 120 }, + [4] = { 59.8, 39.1, 17, 120 }, + [5] = { 51.7, 97.2, 36, 120 }, + [6] = { 34.3, 80, 40, 120 }, + [7] = { 62.3, 53.1, 47, 120 }, + [8] = { 32.7, 73.9, 51, 120 }, + [9] = { 54.2, 69.2, 130, 120 }, + [10] = { 57.8, 72.6, 139, 120 }, + [11] = { 56.6, 91.5, 141, 120 }, + [12] = { 41.6, 90.8, 148, 120 }, + [13] = { 33.8, 22.3, 215, 120 }, + [14] = { 54.1, 33.5, 267, 120 }, + [15] = { 64.9, 71.1, 331, 120 }, + [16] = { 87.2, 49.6, 405, 120 }, + [17] = { 60.1, 72.1, 406, 120 }, + [18] = { 69.8, 75.3, 490, 120 }, + [19] = { 19.7, 17.4, 490, 120 }, + [20] = { 30.4, 43.3, 618, 120 }, + [21] = { 78.4, 18.8, 1377, 120 }, + [22] = { 67.2, 35.6, 1497, 120 }, + [23] = { 50.2, 72.8, 1519, 120 }, + [24] = { 66.2, 25.4, 1537, 120 }, + [25] = { 42.2, 32.6, 1637, 120 }, + [26] = { 19.7, 26.7, 1638, 120 }, + [27] = { 11.8, 55.1, 4012, 120 }, + }, + }, + [181620] = { + ["coords"] = { + [1] = { 53.4, 99.2, 36, 2 }, + [2] = { 55.6, 35.2, 267, 2 }, + }, + }, + [181633] = { + ["coords"] = { + [1] = { 22, 59.2, 45, 25 }, + [2] = { 50.9, 68.7, 1377, 900 }, + }, + }, + [181639] = "_", + [181640] = { + ["coords"] = { + [1] = { 37.8, 12.1, 5148, 25 }, + }, + }, + [181646] = { + ["coords"] = {}, + }, + [181676] = { + ["coords"] = { + [1] = { 64.4, 69.1, 3456, 180 }, + [2] = { 64, 69.1, 3456, 180 }, + [3] = { 64.3, 68.6, 3456, 180 }, + [4] = { 64.8, 68.6, 3456, 180 }, + [5] = { 63.7, 68.5, 3456, 180 }, + [6] = { 63.6, 68, 3456, 180 }, + [7] = { 63.9, 67.9, 3456, 180 }, + [8] = { 65.2, 67.8, 3456, 180 }, + [9] = { 64.7, 67.6, 3456, 180 }, + [10] = { 63.6, 67.5, 3456, 180 }, + [11] = { 65.6, 67.2, 3456, 180 }, + [12] = { 63.6, 67.1, 3456, 180 }, + [13] = { 64.1, 67.1, 3456, 180 }, + [14] = { 64.8, 67.1, 3456, 180 }, + [15] = { 63.6, 66.8, 3456, 180 }, + [16] = { 65.7, 66.6, 3456, 180 }, + [17] = { 63.6, 66.3, 3456, 180 }, + [18] = { 65.6, 66.3, 3456, 180 }, + }, + }, + [181677] = { + ["coords"] = { + [1] = { 65.8, 70.4, 3456, 180 }, + [2] = { 65.2, 70.3, 3456, 180 }, + [3] = { 66.4, 70.3, 3456, 180 }, + [4] = { 64.7, 70, 3456, 180 }, + [5] = { 66, 69.9, 3456, 180 }, + [6] = { 66.4, 69.8, 3456, 180 }, + [7] = { 65.6, 69.5, 3456, 180 }, + [8] = { 64.8, 69.1, 3456, 180 }, + [9] = { 66.2, 69, 3456, 180 }, + [10] = { 65.4, 68.9, 3456, 180 }, + [11] = { 65.7, 68.3, 3456, 180 }, + [12] = { 66.2, 67.9, 3456, 180 }, + [13] = { 65.9, 67.5, 3456, 180 }, + [14] = { 66.6, 67.3, 3456, 180 }, + [15] = { 66.3, 66.6, 3456, 180 }, + }, + }, + [181678] = { + ["coords"] = { + [1] = { 63.9, 66, 3456, 180 }, + [2] = { 65.3, 65.9, 3456, 180 }, + [3] = { 64.9, 65.8, 3456, 180 }, + [4] = { 63.8, 65.5, 3456, 180 }, + [5] = { 64.3, 65.4, 3456, 180 }, + [6] = { 65.9, 65.3, 3456, 180 }, + [7] = { 65.1, 65.2, 3456, 180 }, + [8] = { 64.5, 64.8, 3456, 180 }, + [9] = { 65.3, 64.7, 3456, 180 }, + [10] = { 64.9, 64.4, 3456, 180 }, + [11] = { 65.8, 64.3, 3456, 180 }, + [12] = { 64.7, 64.1, 3456, 180 }, + [13] = { 66.5, 64, 3456, 180 }, + [14] = { 66.4, 63.8, 3456, 180 }, + [15] = { 65.9, 63.7, 3456, 180 }, + [16] = { 65.7, 63.7, 3456, 180 }, + [17] = { 65.1, 63.6, 3456, 180 }, + [18] = { 65.4, 63.5, 3456, 180 }, + [19] = { 66.1, 63.4, 3456, 180 }, + }, + }, + [181695] = { + ["coords"] = { + [1] = { 66.8, 70.2, 3456, 180 }, + [2] = { 67, 69.7, 3456, 180 }, + [3] = { 67.6, 69.1, 3456, 180 }, + [4] = { 67.1, 69.1, 3456, 180 }, + [5] = { 67.7, 68.8, 3456, 180 }, + [6] = { 66.5, 68.5, 3456, 180 }, + [7] = { 68, 68.4, 3456, 180 }, + [8] = { 67, 68.2, 3456, 180 }, + [9] = { 67.4, 68.1, 3456, 180 }, + [10] = { 67.7, 68, 3456, 180 }, + [11] = { 68.1, 68, 3456, 180 }, + [12] = { 66.9, 67.5, 3456, 180 }, + [13] = { 67.9, 67.2, 3456, 180 }, + [14] = { 67.4, 67.2, 3456, 180 }, + [15] = { 68.4, 67.1, 3456, 180 }, + [16] = { 67.9, 66.5, 3456, 180 }, + [17] = { 67.5, 66.4, 3456, 180 }, + [18] = { 68.3, 66.4, 3456, 180 }, + [19] = { 68.1, 65.9, 3456, 180 }, + [20] = { 67.8, 65.6, 3456, 180 }, + }, + }, + [181734] = { + ["coords"] = { + [1] = { 32.8, 17.5, 17, 300 }, + [2] = { 77.3, 75, 406, 300 }, + [3] = { 40.6, 98.4, 5602, 300 }, + }, + }, + [181735] = { + ["coords"] = {}, + }, + [181736] = { + ["coords"] = {}, + }, + [181737] = { + ["coords"] = { + [1] = { 89, 38, 3, 300 }, + [2] = { 48.4, 82, 17, 300 }, + }, + }, + [181738] = { + ["coords"] = {}, + }, + [181757] = { + ["coords"] = {}, + }, + [181787] = { + ["coords"] = { + [1] = { 56.6, 98.7, 14, 300 }, + [2] = { 55.2, 98.2, 14, 300 }, + [3] = { 46.3, 51.1, 15, 300 }, + [4] = { 46.6, 46.1, 15, 300 }, + [5] = { 74.8, 48.6, 17, 300 }, + [6] = { 74, 48.3, 17, 300 }, + }, + }, + [181839] = { + ["coords"] = {}, + }, + [181851] = { + ["coords"] = { + [1] = { 62.4, 96.9, 14, 300 }, + [2] = { 77.8, 47.6, 17, 300 }, + [3] = { 66.4, 24.3, 440, 300 }, + [4] = { 54.5, 53.6, 5179, 300 }, + [5] = { 53.7, 51.1, 5179, 300 }, + [6] = { 54, 49.2, 5179, 300 }, + [7] = { 68.1, 50.3, 5536, 300 }, + }, + }, + [181853] = "_", + [181870] = { + ["coords"] = { + [1] = { 67.1, 48.7, 5536, 300 }, + [2] = { 65.5, 26.1, 5536, 300 }, + }, + }, + [181886] = { + ["coords"] = {}, + }, + [181888] = { + ["coords"] = { + [1] = { 41.2, 99.6, 5602, 300 }, + }, + }, + [182059] = { + ["coords"] = { + [1] = { 61.5, 22.4, 139, 900 }, + [2] = { 60.7, 21.4, 139, 900 }, + }, + }, + [182066] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [182106] = { + ["coords"] = { + [1] = { 39.2, 76, 139, 900 }, + [2] = { 39.6, 74.5, 139, 900 }, + [3] = { 67.6, 48.8, 139, 900 }, + [4] = { 66.8, 47.7, 139, 900 }, + [5] = { 22.6, 31.9, 139, 900 }, + [6] = { 21.6, 31.3, 139, 900 }, + [7] = { 56.3, 25.3, 139, 900 }, + [8] = { 56.1, 23.7, 139, 900 }, + [9] = { 23.8, 26, 4012, 900 }, + [10] = { 22.9, 24.5, 4012, 900 }, + [11] = { 66.7, 95.9, 5225, 900 }, + [12] = { 65.5, 95.1, 5225, 900 }, + }, + }, + [182114] = { + ["coords"] = {}, + }, + [182211] = { + ["coords"] = {}, + }, + [182483] = { + ["coords"] = { + [1] = { 52.2, 83.7, 28, 1200 }, + }, + }, + [182485] = { + ["coords"] = {}, + }, + [182535] = { + ["coords"] = { + [1] = { 59.1, 90.5, 14, 300 }, + [2] = { 76.1, 44.3, 17, 300 }, + [3] = { 30.9, 36.8, 406, 300 }, + [4] = { 37.6, 75, 5130, 300 }, + [5] = { 36.8, 74.1, 5130, 300 }, + [6] = { 38.1, 73.9, 5130, 300 }, + [7] = { 38.3, 69.7, 5130, 300 }, + }, + }, + [182536] = { + ["coords"] = {}, + }, + [182564] = { + ["coords"] = {}, + }, + [182944] = { + ["coords"] = {}, + }, + [182945] = { + ["coords"] = {}, + }, + [183343] = { + ["coords"] = {}, + }, + [183356] = { + ["coords"] = {}, + }, + [183750] = { + ["coords"] = {}, + }, + [183751] = { + ["coords"] = {}, + }, + [183752] = { + ["coords"] = {}, + }, + [183754] = { + ["coords"] = {}, + }, + [183755] = { + ["coords"] = {}, + }, + [183796] = { + ["coords"] = {}, + }, + [183797] = { + ["coords"] = {}, + }, + [183894] = { + ["coords"] = {}, + }, + [183987] = { + ["coords"] = {}, + }, + [183988] = { + ["coords"] = {}, + }, + [183991] = { + ["coords"] = { + [1] = { 44.2, 67.5, 14, 300 }, + [2] = { 41.8, 42.4, 16, 300 }, + [3] = { 52.1, 30.1, 17, 25 }, + [4] = { 9.1, 64.6, 28, 25 }, + [5] = { 78.8, 62.9, 28, 25 }, + [6] = { 78.8, 62.8, 28, 25 }, + [7] = { 22.3, 59.5, 45, 25 }, + [8] = { 20.3, 86.6, 139, 25 }, + [9] = { 83.4, 55.6, 400, 25 }, + [10] = { 88.3, 56.8, 1497, 25 }, + [11] = { 67.6, 58.5, 1583, 25 }, + [12] = { 35.3, 92, 3478, 25 }, + }, + }, + [184006] = { + ["coords"] = { + [1] = { 57.6, 59.2, 440, 900 }, + [2] = { 36.7, 65, 1941, 900 }, + }, + }, + [184017] = { + ["coords"] = {}, + }, + [184092] = { + ["coords"] = {}, + }, + [184096] = { + ["coords"] = {}, + }, + [184119] = { + ["coords"] = {}, + }, + [184164] = { + ["coords"] = {}, + }, + [184287] = { + ["coords"] = { + [1] = { 23.3, 26.9, 1, 25 }, + }, + }, + [184304] = { + ["coords"] = {}, + }, + [184315] = { + ["coords"] = {}, + }, + [184332] = { + ["coords"] = {}, + }, + [184511] = { + ["coords"] = {}, + }, + [184512] = { + ["coords"] = {}, + }, + [184513] = { + ["coords"] = {}, + }, + [184530] = { + ["coords"] = { + [1] = { 57.1, 56.9, 440, 900 }, + [2] = { 34.1, 52.8, 1941, 900 }, + }, + }, + [184531] = { + ["coords"] = { + [1] = { 57, 57, 440, 900 }, + [2] = { 34.1, 53.2, 1941, 900 }, + }, + }, + [184532] = { + ["coords"] = { + [1] = { 57.3, 57.1, 440, 900 }, + [2] = { 35.2, 54, 1941, 900 }, + }, + }, + [184561] = { + ["coords"] = {}, + }, + [184583] = { + ["coords"] = {}, + }, + [184616] = { + ["coords"] = { + [1] = { 58.9, 88.9, 36, 7200 }, + [2] = { 60.4, 26.3, 267, 7200 }, + [3] = { 57.8, 72.3, 5179, 300 }, + }, + }, + [184617] = { + ["coords"] = { + [1] = { 59.1, 88.9, 36, 7200 }, + [2] = { 60.6, 26.2, 267, 7200 }, + }, + }, + [184618] = { + ["coords"] = { + [1] = { 44.9, 38, 2597, 300 }, + }, + }, + [184644] = { + ["coords"] = {}, + }, + [184645] = { + ["coords"] = {}, + }, + [184646] = { + ["coords"] = {}, + }, + [184647] = { + ["coords"] = {}, + }, + [184658] = { + ["coords"] = {}, + }, + [184659] = { + ["coords"] = {}, + }, + [184661] = { + ["coords"] = {}, + }, + [184664] = { + ["coords"] = {}, + }, + [184683] = { + ["coords"] = {}, + }, + [184691] = { + ["coords"] = {}, + }, + [184814] = { + ["coords"] = {}, + }, + [184816] = { + ["coords"] = { + [1] = { 22.4, 60, 45, 25 }, + [2] = { 43.6, 16.2, 357, 25 }, + }, + }, + [184858] = { + ["coords"] = { + [1] = { 52.2, 30.2, 17, 25 }, + [2] = { 9, 64.5, 28, 25 }, + [3] = { 62.2, 44.5, 1637, 25 }, + }, + }, + [184863] = { + ["coords"] = { + [1] = { 93.7, 14.9, 10, 25 }, + [2] = { 93.7, 14.8, 10, 25 }, + [3] = { 43, 65.2, 12, 25 }, + [4] = { 40.6, 63.6, 12, 25 }, + [5] = { 41, 63.5, 12, 25 }, + [6] = { 42.8, 62.9, 12, 25 }, + [7] = { 42.4, 62.8, 12, 25 }, + [8] = { 42.2, 62.7, 12, 25 }, + [9] = { 42.3, 62.4, 12, 25 }, + [10] = { 35.1, 49.6, 12, 25 }, + [11] = { 59.1, 29.3, 12, 25 }, + [12] = { 59.3, 29.2, 12, 25 }, + [13] = { 59.9, 29.1, 12, 25 }, + [14] = { 59.9, 28.9, 12, 25 }, + [15] = { 53.2, 43.6, 14, 300 }, + [16] = { 49.7, 35.9, 14, 25 }, + [17] = { 51.4, 15.9, 14, 300 }, + [18] = { 41.5, 43.1, 16, 300 }, + [19] = { 41.3, 43.1, 16, 300 }, + [20] = { 41.8, 42.4, 16, 300 }, + [21] = { 41.6, 42.1, 16, 300 }, + [22] = { 52.2, 30.2, 17, 25 }, + [23] = { 52.1, 29.9, 17, 25 }, + [24] = { 9.1, 64.2, 28, 25 }, + [25] = { 80.2, 63.2, 28, 25 }, + [26] = { 80.2, 63.1, 28, 25 }, + [27] = { 78.7, 62.8, 28, 25 }, + [28] = { 81.1, 62.6, 28, 25 }, + [29] = { 78.8, 62.1, 28, 25 }, + [30] = { 79.9, 61.7, 28, 25 }, + [31] = { 71.8, 50.2, 28, 25 }, + [32] = { 22.6, 58.9, 45, 25 }, + [33] = { 22.1, 58.7, 45, 25 }, + [34] = { 21.9, 87, 139, 25 }, + [35] = { 21.9, 86.9, 139, 25 }, + [36] = { 20.3, 86.5, 139, 25 }, + [37] = { 22.8, 86.3, 139, 25 }, + [38] = { 20.3, 85.8, 139, 25 }, + [39] = { 21.5, 85.3, 139, 25 }, + [40] = { 12.5, 72.5, 139, 25 }, + [41] = { 68.1, 17.6, 148, 300 }, + [42] = { 44.2, 58.5, 215, 25 }, + [43] = { 44.5, 58.4, 215, 25 }, + [44] = { 78.1, 75.9, 400, 25 }, + [45] = { 79.5, 74.4, 400, 25 }, + [46] = { 83.4, 55.6, 400, 25 }, + [47] = { 83.5, 55.1, 400, 25 }, + [48] = { 82.9, 54.4, 400, 25 }, + [49] = { 36.4, 74.1, 1519, 300 }, + [50] = { 36.4, 72.1, 1519, 300 }, + [51] = { 36.1, 70.6, 1519, 300 }, + [52] = { 76, 54.8, 1519, 25 }, + [53] = { 76.2, 53.3, 1519, 25 }, + [54] = { 76.1, 53.3, 1519, 25 }, + [55] = { 49.8, 72.1, 1637, 25 }, + [56] = { 69.3, 26, 1637, 25 }, + [57] = { 36.2, 93.9, 3478, 25 }, + [58] = { 37.5, 93.1, 3478, 25 }, + [59] = { 35.3, 93, 3478, 25 }, + [60] = { 37.4, 92.9, 3478, 25 }, + [61] = { 35.3, 92.3, 3478, 25 }, + [62] = { 36.5, 91.9, 3478, 25 }, + [63] = { 35.5, 91.6, 3478, 25 }, + }, + }, + [184954] = { + ["coords"] = {}, + }, + [184964] = { + ["coords"] = {}, + }, + [184965] = { + ["coords"] = {}, + }, + [184966] = { + ["coords"] = {}, + }, + [184970] = { + ["coords"] = {}, + }, + [184971] = { + ["coords"] = {}, + }, + [184972] = { + ["coords"] = {}, + }, + [184973] = { + ["coords"] = {}, + }, + [184974] = { + ["coords"] = {}, + }, + [184975] = { + ["coords"] = {}, + }, + [184976] = { + ["coords"] = {}, + }, + [184977] = { + ["coords"] = {}, + }, + [184978] = { + ["coords"] = {}, + }, + [184980] = { + ["coords"] = {}, + }, + [185011] = { + ["coords"] = {}, + }, + [185155] = { + ["coords"] = {}, + }, + [185294] = { + ["coords"] = {}, + }, + [185314] = { + ["coords"] = {}, + }, + [185317] = { + ["coords"] = {}, + }, + [185318] = { + ["coords"] = {}, + }, + [185319] = { + ["coords"] = {}, + }, + [185432] = { + ["coords"] = {}, + }, + [185474] = { + ["coords"] = {}, + }, + [185498] = { + ["coords"] = { + [1] = { 53.3, 87.4, 14, 300 }, + [2] = { 73, 42.7, 17, 300 }, + [3] = { 42.9, 83.9, 28, 1200 }, + }, + }, + [185520] = { + ["coords"] = {}, + }, + [185527] = { + ["coords"] = {}, + }, + [185529] = { + ["coords"] = {}, + }, + [185564] = { + ["coords"] = {}, + }, + [185578] = { + ["coords"] = {}, + }, + [185579] = { + ["coords"] = {}, + }, + [185582] = { + ["coords"] = {}, + }, + [185590] = { + ["coords"] = {}, + }, + [185595] = { + ["coords"] = {}, + }, + [185893] = { + ["coords"] = { + [1] = { 67.5, 27.4, 440, 300 }, + }, + }, + [185916] = { + ["coords"] = {}, + }, + [185917] = { + ["coords"] = {}, + }, + [185918] = { + ["coords"] = {}, + }, + [185919] = { + ["coords"] = {}, + }, + [185948] = { + ["coords"] = {}, + }, + [185949] = { + ["coords"] = {}, + }, + [185950] = { + ["coords"] = {}, + }, + [185951] = { + ["coords"] = {}, + }, + [186173] = { + ["coords"] = {}, + }, + [186217] = { + ["coords"] = {}, + }, + [186218] = { + ["coords"] = { + [1] = { 59.3, 51.3, 440, 900 }, + [2] = { 45.7, 24.1, 1941, 900 }, + }, + }, + [186252] = { + ["coords"] = {}, + }, + [186253] = { + ["coords"] = { + [1] = { 37.4, 38, 215, 25 }, + }, + }, + [186287] = { + ["coords"] = {}, + }, + [186288] = { + ["coords"] = {}, + }, + [186418] = { + ["coords"] = {}, + }, + [186420] = { + ["coords"] = { + [1] = { 47.9, 82.1, 36, 0 }, + [2] = { 50.8, 20.3, 267, 0 }, + }, + ["fac"] = "A", + }, + [186425] = { + ["coords"] = { + [1] = { 60.1, 30.4, 12, 25 }, + [2] = { 60, 29.1, 12, 25 }, + [3] = { 41.3, 43.3, 16, 300 }, + [4] = { 41.7, 43.2, 16, 300 }, + [5] = { 41.8, 42.5, 16, 300 }, + [6] = { 41.5, 42.2, 16, 300 }, + [7] = { 48, 8.4, 17, 375 }, + [8] = { 48, 8.4, 17, 300 }, + [9] = { 48.1, 8.2, 17, 300 }, + [10] = { 9.1, 64.6, 28, 25 }, + [11] = { 9.1, 64.4, 28, 25 }, + [12] = { 9.2, 64.2, 28, 25 }, + [13] = { 79.9, 59.3, 28, 25 }, + [14] = { 21.5, 82.6, 139, 25 }, + [15] = { 69.1, 20.1, 148, 300 }, + [16] = { 68.6, 18.8, 148, 300 }, + [17] = { 80.5, 84.4, 400, 25 }, + [18] = { 80.2, 84.3, 400, 25 }, + [19] = { 79.8, 84.1, 400, 25 }, + [20] = { 79.3, 83.5, 400, 25 }, + [21] = { 79, 83.1, 400, 25 }, + [22] = { 78.8, 83, 400, 25 }, + [23] = { 79.5, 82.9, 400, 25 }, + [24] = { 79.4, 82.7, 400, 25 }, + [25] = { 78.6, 82.2, 400, 25 }, + [26] = { 78.5, 81.4, 400, 25 }, + [27] = { 79.1, 78.6, 400, 25 }, + [28] = { 78.6, 78.4, 400, 25 }, + [29] = { 79.1, 78.1, 400, 25 }, + [30] = { 78.6, 77.9, 400, 25 }, + [31] = { 79.1, 77.9, 400, 25 }, + [32] = { 80.9, 77.9, 400, 25 }, + [33] = { 81.9, 77.4, 400, 25 }, + [34] = { 79.1, 77.4, 400, 25 }, + [35] = { 78.1, 77.2, 400, 25 }, + [36] = { 78.2, 77.1, 400, 25 }, + [37] = { 78.6, 77, 400, 25 }, + [38] = { 79.8, 77, 400, 25 }, + [39] = { 79.9, 76.7, 400, 25 }, + [40] = { 79.1, 76.6, 400, 25 }, + [41] = { 79.1, 76.4, 400, 25 }, + [42] = { 81.6, 76.3, 400, 25 }, + [43] = { 81.1, 76.3, 400, 25 }, + [44] = { 78.6, 76.3, 400, 25 }, + [45] = { 79.7, 76.2, 400, 25 }, + [46] = { 81.6, 76.1, 400, 25 }, + [47] = { 78.3, 75.7, 400, 25 }, + [48] = { 81.6, 75.6, 400, 25 }, + [49] = { 79.1, 75.5, 400, 25 }, + [50] = { 81.1, 75.4, 400, 25 }, + [51] = { 78.6, 75.4, 400, 25 }, + [52] = { 81.6, 75.3, 400, 25 }, + [53] = { 81.1, 74.9, 400, 25 }, + [54] = { 81.6, 74.7, 400, 25 }, + [55] = { 79.4, 74.6, 400, 25 }, + [56] = { 79.6, 74.5, 400, 25 }, + [57] = { 81.1, 74.4, 400, 25 }, + [58] = { 79.1, 74.4, 400, 25 }, + [59] = { 81.6, 74.2, 400, 25 }, + [60] = { 78.6, 74.1, 400, 25 }, + [61] = { 81.1, 73.7, 400, 25 }, + [62] = { 81.6, 73.3, 400, 25 }, + [63] = { 81.1, 73.2, 400, 25 }, + [64] = { 81.1, 73, 400, 25 }, + [65] = { 81.1, 72.7, 400, 25 }, + [66] = { 81.6, 72.1, 400, 25 }, + [67] = { 81.1, 72.1, 400, 25 }, + [68] = { 81.6, 71.7, 400, 25 }, + [69] = { 81.1, 71.6, 400, 25 }, + [70] = { 81.6, 71.2, 400, 25 }, + [71] = { 81.1, 70.9, 400, 25 }, + [72] = { 81.6, 70.7, 400, 25 }, + [73] = { 81.2, 70.2, 400, 25 }, + [74] = { 81.6, 69.8, 400, 25 }, + [75] = { 81.7, 69.4, 400, 25 }, + [76] = { 81.2, 69.2, 400, 25 }, + [77] = { 81.2, 68.8, 400, 25 }, + [78] = { 81.7, 68.4, 400, 25 }, + [79] = { 81.2, 68.2, 400, 25 }, + [80] = { 81.7, 68, 400, 25 }, + [81] = { 81.2, 68, 400, 25 }, + [82] = { 81.2, 67.7, 400, 25 }, + [83] = { 81.2, 67.2, 400, 25 }, + [84] = { 81.7, 67.2, 400, 25 }, + [85] = { 81.3, 66.7, 400, 25 }, + [86] = { 81.7, 66.4, 400, 25 }, + [87] = { 81.2, 66.4, 400, 25 }, + [88] = { 81.7, 66, 400, 25 }, + [89] = { 81.2, 65.9, 400, 25 }, + [90] = { 81.2, 65.4, 400, 25 }, + [91] = { 81.7, 65.1, 400, 25 }, + [92] = { 81.7, 64.9, 400, 25 }, + [93] = { 81.2, 64.7, 400, 25 }, + [94] = { 81.7, 64.3, 400, 25 }, + [95] = { 81.7, 64, 400, 25 }, + [96] = { 81.2, 63.7, 400, 25 }, + [97] = { 81.7, 63.4, 400, 25 }, + [98] = { 81.2, 63.4, 400, 25 }, + [99] = { 81.2, 63.2, 400, 25 }, + [100] = { 81.7, 63, 400, 25 }, + [101] = { 81.7, 62.6, 400, 25 }, + [102] = { 81.2, 62.5, 400, 25 }, + [103] = { 83.3, 56.5, 400, 25 }, + [104] = { 82.6, 56, 400, 25 }, + [105] = { 83.3, 55.7, 400, 25 }, + [106] = { 83.5, 55.3, 400, 25 }, + [107] = { 83.3, 54.9, 400, 25 }, + [108] = { 82.5, 54.8, 400, 25 }, + [109] = { 83.2, 54.6, 400, 25 }, + [110] = { 82.9, 54.5, 400, 25 }, + [111] = { 36, 44.2, 400, 25 }, + [112] = { 66.2, 64.5, 440, 25 }, + [113] = { 88.4, 56.8, 1497, 25 }, + [114] = { 54.9, 73.7, 1637, 25 }, + [115] = { 39.5, 73.7, 1637, 25 }, + [116] = { 49.7, 71.1, 1637, 25 }, + [117] = { 50.6, 70.3, 1637, 25 }, + [118] = { 53.4, 65.3, 1637, 25 }, + [119] = { 49.1, 63.8, 1637, 25 }, + [120] = { 81.1, 92.4, 1941, 25 }, + [121] = { 37.3, 93.1, 3478, 25 }, + [122] = { 37.3, 92.9, 3478, 25 }, + }, + }, + [186465] = { + ["coords"] = { + [1] = { 71.9, 46.6, 15, 900 }, + }, + }, + [186478] = { + ["coords"] = {}, + }, + [186720] = { + ["coords"] = { + [1] = { 47.3, 57.4, 1, 2 }, + [2] = { 47.4, 57.1, 1, 2 }, + [3] = { 47.3, 57, 1, 2 }, + [4] = { 42.6, 60, 12, 180 }, + [5] = { 42.7, 59.4, 12, 180 }, + [6] = { 49.2, 43.2, 14, 5 }, + [7] = { 56.3, 53, 85, 5 }, + [8] = { 57, 53, 85, 5 }, + }, + }, + [186734] = { + ["coords"] = {}, + }, + [186736] = { + ["coords"] = {}, + }, + [186739] = { + ["coords"] = {}, + }, + [186740] = { + ["coords"] = {}, + }, + [186741] = { + ["coords"] = {}, + }, + [186744] = { + ["coords"] = {}, + }, + [187072] = { + ["coords"] = {}, + }, + [187115] = { + ["coords"] = {}, + }, + [187252] = { + ["coords"] = { + [1] = { 56.7, 21.5, 15, 900 }, + [2] = { 27.5, 18.6, 406, 300 }, + }, + }, + [187254] = { + ["coords"] = { + [1] = { 94.4, 14.6, 10, 25 }, + [2] = { 47.9, 82.1, 36, 7200 }, + [3] = { 50.8, 20.3, 267, 7200 }, + }, + }, + [187272] = { + ["coords"] = {}, + }, + [187273] = { + ["coords"] = {}, + }, + [187559] = { + ["coords"] = {}, + }, + [187564] = { + ["coords"] = {}, + }, + [187576] = { + ["coords"] = {}, + }, + [187653] = { + ["coords"] = {}, + }, + [187667] = { + ["coords"] = {}, + }, + [187708] = { + ["coords"] = {}, + }, + [187918] = { + ["coords"] = {}, + }, + [187920] = { + ["coords"] = {}, + }, + [187923] = { + ["coords"] = {}, + }, + [187925] = { + ["coords"] = {}, + }, + [187926] = { + ["coords"] = {}, + }, + [187927] = { + ["coords"] = {}, + }, + [187928] = { + ["coords"] = {}, + }, + [187947] = { + ["coords"] = {}, + }, + [187948] = { + ["coords"] = {}, + }, + [187950] = { + ["coords"] = { + [1] = { 46.5, 44.9, 1377, 900 }, + }, + }, + [187951] = { + ["coords"] = {}, + }, + [187952] = { + ["coords"] = {}, + }, + [187953] = { + ["coords"] = {}, + }, + [187964] = { + ["coords"] = {}, + }, + [187972] = { + ["coords"] = {}, + }, + [187973] = { + ["coords"] = {}, + }, + [187988] = { + ["coords"] = {}, + }, + [187989] = { + ["coords"] = {}, + }, + [188174] = { + ["coords"] = {}, + }, + [188214] = { + ["coords"] = { + [1] = { 45.2, 64.1, 408, 300 }, + }, + }, + [188415] = { + ["coords"] = {}, + }, + [190395] = { + ["coords"] = {}, + }, + [190549] = { + ["coords"] = {}, + }, + [190550] = { + ["coords"] = {}, + }, + [190552] = { + ["coords"] = {}, + }, + [194022] = { + ["coords"] = { + [1] = { 71.1, 40.6, 3456, 180 }, + }, + }, + [194023] = { + ["coords"] = { + [1] = { 57.7, 15, 5121, 300 }, + }, + }, + [200000] = { + ["coords"] = { + [1] = { 83.5, 58.2, 2677, 25 }, + }, + }, + [200002] = { + ["coords"] = { + [1] = { 46.4, 39.3, 17, 900 }, + [2] = { 45.1, 22.5, 17, 10 }, + }, + }, + [200003] = { + ["coords"] = { + [1] = { 39.5, 72.3, 41, 300 }, + }, + }, + [210286] = { + ["coords"] = { + [1] = { 94.4, 14.6, 10, 25 }, + [2] = { 41.6, 43.1, 16, 300 }, + [3] = { 51.9, 41.2, 17, 25 }, + [4] = { 80.2, 63.1, 28, 25 }, + [5] = { 21.9, 86.9, 139, 25 }, + [6] = { 78.2, 75.8, 400, 25 }, + [7] = { 79.5, 74.5, 400, 25 }, + }, + }, + [210342] = { + ["coords"] = {}, + }, + [211022] = { + ["coords"] = { + [1] = { 93.4, 14.3, 10, 25 }, + [2] = { 93.3, 13.8, 10, 25 }, + [3] = { 59.2, 29.1, 12, 25 }, + [4] = { 41.7, 42.2, 16, 300 }, + [5] = { 9, 64.8, 28, 25 }, + [6] = { 9, 64.4, 28, 25 }, + [7] = { 9.1, 64.1, 28, 25 }, + [8] = { 36.1, 44.6, 400, 25 }, + [9] = { 35.9, 44.3, 400, 25 }, + [10] = { 88, 57.5, 1497, 25 }, + }, + }, + [211035] = { + ["coords"] = { + [1] = { 31.6, 20.6, 357, 25 }, + }, + }, + [211062] = { + ["coords"] = { + [1] = { 92.9, 13.6, 10, 25 }, + [2] = { 93, 13.6, 10, 25 }, + [3] = { 42.2, 62.7, 12, 25 }, + [4] = { 42.2, 62.5, 12, 25 }, + [5] = { 42.3, 62.4, 12, 25 }, + [6] = { 42.7, 62.3, 12, 25 }, + [7] = { 42.4, 62.3, 12, 25 }, + [8] = { 42.6, 62.1, 12, 25 }, + [9] = { 42.4, 62.1, 12, 25 }, + [10] = { 42.5, 62, 12, 25 }, + }, + }, + [211085] = { + ["coords"] = {}, + }, + [211086] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [223363] = { + ["coords"] = { + [1] = { 55.3, 35.3, 1, 180 }, + [2] = { 74.7, 14.8, 130, 180 }, + [3] = { 24.9, 62.2, 141, 180 }, + [4] = { 26, 55, 141, 180 }, + [5] = { 32.1, 55, 141, 180 }, + [6] = { 28.9, 54.4, 141, 180 }, + [7] = { 41.5, 32.4, 215, 180 }, + [8] = { 41, 32.3, 215, 180 }, + [9] = { 37.3, 29.2, 215, 180 }, + [10] = { 38.8, 28.5, 215, 180 }, + [11] = { 40.3, 23.9, 215, 180 }, + [12] = { 35.3, 22.7, 215, 180 }, + [13] = { 88.9, 50.2, 405, 180 }, + [14] = { 58.6, 97.8, 1497, 180 }, + [15] = { 65.7, 55.2, 1497, 180 }, + [16] = { 73.4, 44.6, 1497, 180 }, + [17] = { 58.5, 43.6, 1497, 180 }, + [18] = { 67.8, 75.5, 1519, 180 }, + [19] = { 65, 73.5, 1519, 180 }, + [20] = { 61.5, 73.1, 1519, 180 }, + [21] = { 65.9, 35.9, 1519, 180 }, + [22] = { 26.3, 88.4, 1537, 180 }, + [23] = { 69.5, 88.3, 1537, 180 }, + [24] = { 16.6, 66.4, 1537, 180 }, + [25] = { 57.9, 50, 1537, 180 }, + [26] = { 34.4, 20.1, 1537, 180 }, + [27] = { 50.2, 65.9, 1637, 180 }, + [28] = { 47.2, 65.2, 1637, 180 }, + [29] = { 20.5, 56.4, 1637, 180 }, + [30] = { 73.5, 36.2, 1637, 180 }, + [31] = { 57.7, 76.7, 1638, 180 }, + [32] = { 55.1, 76, 1638, 180 }, + [33] = { 36.6, 60.9, 1638, 180 }, + [34] = { 44.5, 57.4, 1638, 180 }, + [35] = { 51.5, 34.7, 1638, 180 }, + [36] = { 27.1, 29, 1638, 180 }, + [37] = { 37.1, 73.4, 1657, 180 }, + [38] = { 42.4, 38.9, 1657, 180 }, + [39] = { 71.7, 38.6, 1657, 180 }, + [40] = { 56.3, 35.9, 1657, 180 }, + [41] = { 51.9, 96.6, 5581, 180 }, + [42] = { 60.8, 95.5, 5581, 180 }, + }, + }, + [223364] = { + ["coords"] = {}, + }, + [280400] = { + ["coords"] = {}, + }, + [300058] = { + ["coords"] = { + [1] = { 23.8, 49.5, 141, 25 }, + [2] = { 44.3, 22.2, 215, 25 }, + [3] = { 36.4, 59.9, 493, 25 }, + [4] = { 37.2, 59.5, 493, 25 }, + [5] = { 35.7, 58.9, 493, 25 }, + [6] = { 37.5, 58.2, 493, 25 }, + [7] = { 36, 57.7, 493, 25 }, + [8] = { 36.7, 57.2, 493, 25 }, + [9] = { 66, 36.9, 1497, 25 }, + [10] = { 37.3, 65, 1519, 25 }, + [11] = { 30.7, 17.8, 1537, 25 }, + [12] = { 41, 31.1, 1637, 25 }, + [13] = { 71.6, 26.2, 1638, 25 }, + [14] = { 31.8, 12.4, 1657, 25 }, + }, + }, + [300203] = { + ["coords"] = { + [1] = { 47.6, 52, 1, 1 }, + [2] = { 47.6, 52, 1, 2 }, + [3] = { 3.1, 45.7, 3, 1 }, + [4] = { 44.8, 56.8, 8, 1 }, + [5] = { 73.6, 44.4, 10, 1 }, + [6] = { 10.7, 60.8, 11, 1 }, + [7] = { 51.7, 41.6, 14, 1 }, + [8] = { 51.7, 41.6, 14, 5 }, + [9] = { 66.6, 45.1, 15, 1 }, + [10] = { 45.6, 59.1, 17, 1 }, + [11] = { 62.1, 39.5, 17, 1 }, + [12] = { 52, 29.8, 17, 1 }, + [13] = { 27.3, 77.4, 33, 1 }, + [14] = { 61.1, 81, 36, 1 }, + [15] = { 35.3, 48.4, 38, 1 }, + [16] = { 52.6, 53.4, 40, 1 }, + [17] = { 26.7, 44.4, 44, 1 }, + [18] = { 73.7, 32.5, 45, 1 }, + [19] = { 82.2, 36.8, 51, 1 }, + [20] = { 61.6, 52.1, 85, 1 }, + [21] = { 61.6, 52.1, 85, 5 }, + [22] = { 55.9, 59.4, 141, 1 }, + [23] = { 37.1, 43.9, 148, 1 }, + [24] = { 46.6, 61.3, 215, 1 }, + [25] = { 39.1, 29.6, 215, 1 }, + [26] = { 51.1, 58.7, 267, 1 }, + [27] = { 62.3, 19.4, 267, 1 }, + [28] = { 74.1, 60.5, 331, 1 }, + [29] = { 37, 49.7, 331, 1 }, + [30] = { 31.1, 43.5, 357, 1 }, + [31] = { 46.1, 51.3, 400, 1 }, + [32] = { 24.3, 67.9, 405, 1 }, + [33] = { 66.2, 7.1, 405, 1 }, + [34] = { 44.8, 79.9, 406, 1 }, + [35] = { 50.5, 63.2, 406, 1 }, + [36] = { 52.5, 27.8, 440, 1 }, + [37] = { 61.2, 38.9, 618, 1 }, + [38] = { 52, 39, 1377, 1 }, + [39] = { 68.2, 36.4, 1497, 1 }, + [40] = { 68.2, 36.4, 1497, 5 }, + [41] = { 60.3, 74.6, 1519, 1 }, + [42] = { 19, 51.2, 1537, 1 }, + [43] = { 19, 51.2, 1537, 2 }, + [44] = { 54.4, 68.2, 1637, 1 }, + [45] = { 54.4, 68.2, 1637, 5 }, + [46] = { 45.9, 62.8, 1638, 1 }, + [47] = { 8.1, 88.5, 2100, 1 }, + [48] = { 16.6, 69, 5602, 1 }, + }, + }, + [300400] = { + ["coords"] = { + [1] = { 31.8, 28.4, 2557, 0 }, + }, + }, + [300401] = { + ["coords"] = { + [1] = { 31.8, 28.4, 2557, 0 }, + }, + }, + [300402] = { + ["coords"] = { + [1] = { 31.8, 28.4, 2557, 0 }, + }, + }, + [300403] = { + ["coords"] = { + [1] = { 31.8, 28.4, 2557, 0 }, + }, + }, + [300404] = { + ["coords"] = { + [1] = { 31.8, 28.4, 2557, 0 }, + }, + }, + [300405] = { + ["coords"] = { + [1] = { 31.8, 28.4, 2557, 0 }, + }, + }, + [300407] = { + ["coords"] = { + [1] = { 49.1, 81.2, 3457, 300 }, + }, + }, + [300408] = { + ["coords"] = { + [1] = { 64.4, 47.1, 3457, 300 }, + }, + }, + [300409] = { + ["coords"] = { + [1] = { 40.6, 61.2, 3457, 300 }, + }, + }, + [300410] = { + ["coords"] = { + [1] = { 40.1, 66.6, 3457, 300 }, + }, + }, + [300411] = { + ["coords"] = { + [1] = { 39.1, 65.1, 3457, 300 }, + [2] = { 36.3, 60.9, 3457, 300 }, + }, + }, + [300412] = { + ["coords"] = { + [1] = { 40.4, 60.7, 3457, 300 }, + }, + }, + [300413] = { + ["coords"] = { + [1] = { 55.5, 88, 3457, 300 }, + [2] = { 54.3, 61.7, 3457, 300 }, + }, + }, + [300414] = { + ["coords"] = { + [1] = { 37.1, 61.6, 3457, 300 }, + }, + }, + [300415] = { + ["coords"] = { + [1] = { 51.5, 78.4, 3457, 300 }, + [2] = { 49.9, 67, 3457, 300 }, + [3] = { 34.7, 56.7, 3457, 300 }, + [4] = { 45.8, 51, 3457, 300 }, + }, + }, + [300416] = { + ["coords"] = { + [1] = { 41.4, 72.6, 3457, 300 }, + [2] = { 42.7, 65.9, 3457, 300 }, + [3] = { 39.7, 61.9, 3457, 300 }, + [4] = { 46.8, 54.9, 3457, 300 }, + [5] = { 67, 50.4, 3457, 300 }, + [6] = { 46.4, 47.8, 3457, 300 }, + }, + }, + [300417] = { + ["coords"] = { + [1] = { 56, 62.6, 3457, 300 }, + [2] = { 38.6, 62.4, 3457, 300 }, + }, + }, + [300418] = { + ["coords"] = { + [1] = { 37.9, 62, 3457, 300 }, + }, + ["fac"] = "AH", + }, + [300419] = { + ["coords"] = { + [1] = { 46.1, 80.5, 3457, 300 }, + [2] = { 53.6, 68.7, 3457, 300 }, + [3] = { 63.5, 53.7, 3457, 300 }, + }, + }, + [300420] = { + ["coords"] = {}, + }, + [300500] = { + ["coords"] = { + [1] = { 34.7, 45.4, 2677, 604800 }, + }, + }, + [300510] = { + ["coords"] = {}, + }, + [300511] = { + ["coords"] = {}, + }, + [300512] = { + ["coords"] = {}, + }, + [300513] = { + ["coords"] = {}, + }, + [300514] = { + ["coords"] = {}, + }, + [300515] = { + ["coords"] = {}, + }, + [300516] = { + ["coords"] = {}, + }, + [300517] = { + ["coords"] = {}, + }, + [300518] = { + ["coords"] = {}, + }, + [300519] = { + ["coords"] = {}, + }, + [300520] = { + ["coords"] = { + [1] = { 54.5, 52.5, 876, 300 }, + }, + }, + [300521] = { + ["coords"] = {}, + }, + [300522] = { + ["coords"] = {}, + }, + [300523] = { + ["coords"] = {}, + }, + [300524] = { + ["coords"] = { + [1] = { 66.7, 24.1, 440, 300 }, + }, + }, + [300525] = { + ["coords"] = { + [1] = { 66.7, 24.2, 440, 300 }, + [2] = { 40.4, 68.7, 2040, 300 }, + [3] = { 57, 34.7, 5225, 300 }, + }, + }, + [300526] = { + ["coords"] = { + [1] = { 66.7, 24.2, 440, 300 }, + }, + }, + [300530] = { + ["coords"] = { + [1] = { 41.9, 43.1, 2597, 300 }, + }, + }, + [300531] = { + ["coords"] = { + [1] = { 61.5, 53.7, 17, 30 }, + }, + }, + [300532] = { + ["coords"] = { + [1] = { 40.1, 66.9, 40, 30 }, + }, + }, + [379545] = { + ["coords"] = { + [1] = { 64, 64.2, 5086, 432000 }, + [2] = { 38.6, 30, 5086, 432000 }, + }, + }, + [379546] = { + ["coords"] = { + [1] = { 39.6, 75.6, 41, 300 }, + }, + ["fac"] = "AH", + }, + [379547] = { + ["coords"] = { + [1] = { 51.9, 76.5, 331, 300 }, + [2] = { 87.1, 42.6, 406, 300 }, + }, + ["fac"] = "AH", + }, + [379548] = { + ["coords"] = { + [1] = { 62.4, 60.9, 1519, 300 }, + }, + ["fac"] = "AH", + }, + [379549] = { + ["coords"] = { + [1] = { 45.7, 45.7, 5130, 300 }, + }, + }, + [379550] = { + ["coords"] = {}, + }, + [380000] = { + ["coords"] = {}, + }, + [380001] = { + ["coords"] = { + [1] = { 46.7, 9, 14, 300 }, + [2] = { 46.2, 8.8, 14, 300 }, + [3] = { 46.7, 8.8, 14, 300 }, + [4] = { 46.1, 8.7, 14, 300 }, + [5] = { 47, 8.5, 14, 300 }, + [6] = { 46, 8.5, 14, 300 }, + [7] = { 46.9, 7.5, 14, 300 }, + [8] = { 45.1, 7.3, 14, 300 }, + [9] = { 45.6, 7.3, 14, 300 }, + [10] = { 42.7, 7.1, 14, 300 }, + [11] = { 47, 6.8, 14, 300 }, + [12] = { 44.9, 6.8, 14, 300 }, + [13] = { 71.9, 88.9, 1519, 300 }, + [14] = { 72.6, 88.1, 1519, 300 }, + [15] = { 70.3, 86, 1519, 300 }, + [16] = { 67.8, 85.4, 1519, 300 }, + [17] = { 71, 85.1, 1519, 300 }, + [18] = { 71.3, 81.2, 1519, 300 }, + [19] = { 57.2, 78.3, 1519, 300 }, + [20] = { 65.8, 77.6, 1519, 300 }, + [21] = { 58.7, 77.6, 1519, 300 }, + [22] = { 65.4, 77.3, 1519, 300 }, + [23] = { 66.5, 76.7, 1519, 300 }, + [24] = { 56.2, 76.6, 1519, 300 }, + [25] = { 64.9, 76.3, 1519, 300 }, + [26] = { 66.3, 75.8, 1519, 300 }, + [27] = { 58, 75.7, 1519, 300 }, + [28] = { 64.3, 75.1, 1519, 300 }, + [29] = { 65.8, 75, 1519, 300 }, + [30] = { 64.3, 74.5, 1519, 300 }, + [31] = { 44.6, 74.5, 1519, 300 }, + [32] = { 62.3, 74.1, 1519, 300 }, + [33] = { 65, 73.8, 1519, 300 }, + [34] = { 54.9, 73.6, 1519, 300 }, + [35] = { 42.6, 73.3, 1519, 300 }, + [36] = { 64.6, 73.2, 1519, 300 }, + [37] = { 63.8, 73.2, 1519, 300 }, + [38] = { 46.3, 73, 1519, 300 }, + [39] = { 64.1, 72.8, 1519, 300 }, + [40] = { 62, 72.7, 1519, 300 }, + [41] = { 49.6, 72.6, 1519, 300 }, + [42] = { 65.8, 71.4, 1519, 300 }, + [43] = { 64.2, 71, 1519, 300 }, + [44] = { 53.7, 70.9, 1519, 300 }, + [45] = { 63.9, 70.5, 1519, 300 }, + [46] = { 48.5, 69.7, 1519, 300 }, + [47] = { 46, 69.2, 1519, 300 }, + [48] = { 48.2, 66.1, 1519, 300 }, + [49] = { 62.7, 65.7, 1519, 300 }, + [50] = { 58.5, 64.8, 1519, 300 }, + [51] = { 55.4, 63.9, 1519, 300 }, + [52] = { 50.6, 63.2, 1519, 300 }, + [53] = { 47.5, 62.7, 1519, 300 }, + [54] = { 56.7, 61.9, 1519, 300 }, + [55] = { 59.2, 59.8, 1519, 300 }, + [56] = { 45.5, 58.2, 1519, 300 }, + [57] = { 55.7, 58.1, 1519, 300 }, + [58] = { 47.6, 57.9, 1519, 300 }, + [59] = { 61.1, 57.4, 1519, 300 }, + [60] = { 56.8, 56.7, 1519, 300 }, + [61] = { 53.9, 53.7, 1519, 300 }, + [62] = { 54.4, 53.1, 1519, 300 }, + [63] = { 58.7, 53.1, 1519, 300 }, + [64] = { 61.7, 53, 1519, 300 }, + [65] = { 49.9, 52.2, 1519, 300 }, + [66] = { 65.9, 51.5, 1519, 300 }, + [67] = { 71, 51, 1519, 300 }, + [68] = { 64.3, 50.2, 1519, 300 }, + [69] = { 68.6, 49.9, 1519, 300 }, + [70] = { 63.1, 47.9, 1519, 300 }, + [71] = { 55, 47.7, 1519, 300 }, + [72] = { 71.2, 46.4, 1519, 300 }, + [73] = { 67.3, 44.2, 1519, 300 }, + [74] = { 58.7, 44, 1519, 300 }, + [75] = { 60.6, 43.5, 1519, 300 }, + [76] = { 68.1, 42.4, 1519, 300 }, + [77] = { 66.4, 42.1, 1519, 300 }, + [78] = { 66, 39.2, 1519, 300 }, + [79] = { 53.5, 83.8, 1637, 300 }, + [80] = { 51.5, 83.1, 1637, 300 }, + [81] = { 53.5, 82.8, 1637, 300 }, + [82] = { 51.4, 82.4, 1637, 300 }, + [83] = { 54.5, 82, 1637, 300 }, + [84] = { 50.9, 81.9, 1637, 300 }, + [85] = { 54.3, 77.8, 1637, 300 }, + [86] = { 47.5, 77.2, 1637, 300 }, + [87] = { 49.5, 77.2, 1637, 300 }, + [88] = { 36.7, 76.9, 1637, 300 }, + [89] = { 38.4, 76.4, 1637, 300 }, + [90] = { 54.9, 75.5, 1637, 300 }, + [91] = { 34, 75.5, 1637, 300 }, + [92] = { 46.7, 75.3, 1637, 300 }, + [93] = { 32.5, 74.3, 1637, 300 }, + [94] = { 53, 73.9, 1637, 300 }, + [95] = { 48.9, 72, 1637, 300 }, + [96] = { 54.3, 72, 1637, 300 }, + [97] = { 41.6, 71.6, 1637, 300 }, + [98] = { 50, 70.8, 1637, 300 }, + [99] = { 48.6, 70.5, 1637, 300 }, + [100] = { 31.7, 69.9, 1637, 300 }, + [101] = { 44.5, 69.8, 1637, 300 }, + [102] = { 42.1, 69.8, 1637, 300 }, + [103] = { 53.7, 69.6, 1637, 300 }, + [104] = { 50.8, 69.1, 1637, 300 }, + [105] = { 49.4, 68.9, 1637, 300 }, + [106] = { 48.1, 68.8, 1637, 300 }, + [107] = { 29.3, 67.8, 1637, 300 }, + [108] = { 43.5, 67.7, 1637, 300 }, + [109] = { 53.4, 67.6, 1637, 300 }, + [110] = { 50.2, 67.3, 1637, 300 }, + [111] = { 48.9, 67.1, 1637, 300 }, + [112] = { 54.3, 66.3, 1637, 300 }, + [113] = { 30.6, 66.1, 1637, 300 }, + [114] = { 52.8, 65.4, 1637, 300 }, + [115] = { 53.6, 64.7, 1637, 300 }, + [116] = { 52.5, 63.6, 1637, 300 }, + [117] = { 28.4, 63.1, 1637, 300 }, + [118] = { 51.2, 62.6, 1637, 300 }, + [119] = { 38.9, 62, 1637, 300 }, + [120] = { 19.3, 61.6, 1637, 300 }, + [121] = { 27.6, 60.8, 1637, 300 }, + [122] = { 51.4, 60.7, 1637, 300 }, + [123] = { 29.5, 60.3, 1637, 300 }, + [124] = { 26.2, 59.1, 1637, 300 }, + [125] = { 56.7, 58.9, 1637, 300 }, + [126] = { 22.5, 58.9, 1637, 300 }, + [127] = { 17.8, 58.7, 1637, 300 }, + [128] = { 23.9, 58.3, 1637, 300 }, + [129] = { 28.9, 58.2, 1637, 300 }, + [130] = { 50.1, 57.9, 1637, 300 }, + [131] = { 19.6, 57.3, 1637, 300 }, + [132] = { 60.1, 56.2, 1637, 300 }, + [133] = { 22.5, 55.7, 1637, 300 }, + [134] = { 26.5, 55.5, 1637, 300 }, + [135] = { 24.3, 55.2, 1637, 300 }, + [136] = { 39.9, 44.7, 1637, 300 }, + [137] = { 61.5, 42.1, 1637, 300 }, + [138] = { 41.8, 41.3, 1637, 300 }, + [139] = { 58.4, 40, 1637, 300 }, + [140] = { 49.2, 37.7, 1637, 300 }, + [141] = { 44.9, 37.6, 1637, 300 }, + [142] = { 48.6, 34.7, 1637, 300 }, + [143] = { 54.5, 34.4, 1637, 300 }, + [144] = { 41.8, 33.5, 1637, 300 }, + [145] = { 46.4, 31.1, 1637, 300 }, + [146] = { 44.5, 30, 1637, 300 }, + [147] = { 41.2, 29.8, 1637, 300 }, + [148] = { 42.4, 29.6, 1637, 300 }, + [149] = { 52.1, 100, 5581, 300 }, + [150] = { 51.9, 98.4, 5581, 300 }, + }, + }, + [987654] = { + ["coords"] = { + [1] = { 62, 45.9, 1977, 600 }, + }, + }, + [987655] = { + ["coords"] = { + [1] = { 62.1, 47.2, 1977, 600 }, + }, + }, + [987656] = { + ["coords"] = { + [1] = { 60.7, 49.4, 1977, 600 }, + }, + }, + [987657] = { + ["coords"] = { + [1] = { 59.9, 49.4, 1977, 600 }, + }, + }, + [987658] = { + ["coords"] = { + [1] = { 93.6, 15.6, 10, 25 }, + [2] = { 94.4, 14.6, 10, 25 }, + [3] = { 51.6, 27.3, 11, 0 }, + [4] = { 59.9, 29, 12, 25 }, + [5] = { 41.6, 43.1, 16, 300 }, + [6] = { 41.3, 43, 16, 300 }, + [7] = { 41.8, 42.4, 16, 300 }, + [8] = { 51.8, 41.2, 17, 25 }, + [9] = { 30.6, 28.8, 28, 25 }, + [10] = { 22.6, 58.9, 45, 25 }, + [11] = { 22, 58.6, 45, 25 }, + [12] = { 87.1, 43.1, 85, 25 }, + [13] = { 37.6, 39.9, 215, 25 }, + [14] = { 37.9, 39.8, 215, 25 }, + [15] = { 37.8, 39.4, 215, 25 }, + [16] = { 37, 38, 215, 25 }, + [17] = { 36.7, 38, 215, 25 }, + [18] = { 37.4, 37.7, 215, 25 }, + [19] = { 37.2, 37.6, 215, 25 }, + [20] = { 36.9, 37.6, 215, 25 }, + [21] = { 37.3, 37.4, 215, 25 }, + [22] = { 36.9, 37.4, 215, 25 }, + [23] = { 36.7, 37.3, 215, 25 }, + [24] = { 36.5, 37, 215, 25 }, + [25] = { 36.8, 36.9, 215, 25 }, + [26] = { 36.4, 36, 215, 25 }, + [27] = { 36, 35.6, 215, 25 }, + [28] = { 35.9, 35, 215, 25 }, + [29] = { 36, 34.8, 215, 25 }, + [30] = { 78.1, 75.9, 400, 25 }, + [31] = { 79.5, 74.5, 400, 25 }, + [32] = { 83.4, 54.9, 400, 25 }, + [33] = { 42.9, 39.1, 406, 25 }, + [34] = { 60.5, 69.7, 1519, 25 }, + [35] = { 39.7, 73.7, 1637, 25 }, + [36] = { 62.9, 46, 1637, 25 }, + [37] = { 63, 45.9, 1637, 25 }, + [38] = { 35.3, 93.1, 3478, 25 }, + }, + }, + [987659] = { + ["coords"] = {}, + ["fac"] = "H", + }, + [1000000] = { + ["coords"] = { + [1] = { 30.1, 71.1, 16, 300 }, + [2] = { 35.8, 10.9, 33, 25 }, + }, + }, + [1000001] = { + ["coords"] = {}, + }, + [1000002] = { + ["coords"] = { + [1] = { 70, 40.8, 8, 0 }, + [2] = { 33.6, 52.1, 14, 300 }, + [3] = { 77.4, 56.2, 15, 300 }, + [4] = { 62.8, 24.3, 17, 300 }, + [5] = { 78.8, 66.8, 28, 300 }, + [6] = { 39.4, 85.7, 33, 0 }, + [7] = { 66.3, 64.6, 440, 25 }, + [8] = { 91.4, 73.1, 1497, 25 }, + [9] = { 23.6, 53.1, 1519, 300 }, + [10] = { 81.2, 92.6, 1941, 25 }, + }, + }, + [1000003] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [1000005] = { + ["coords"] = {}, + }, + [1000006] = { + ["coords"] = {}, + }, + [1000007] = { + ["coords"] = { + [1] = { 33.7, 49.2, 10, 300 }, + [2] = { 22.2, 59.2, 45, 25 }, + [3] = { 22.5, 59.1, 45, 25 }, + [4] = { 22.3, 58.9, 45, 25 }, + [5] = { 21.9, 58.9, 45, 25 }, + [6] = { 22, 58.6, 45, 25 }, + }, + }, + [1000008] = { + ["coords"] = { + [1] = { 42.6, 62.7, 12, 25 }, + [2] = { 35.3, 49.7, 12, 25 }, + }, + }, + [1000009] = { + ["coords"] = { + [1] = { 78.9, 62.5, 28, 25 }, + [2] = { 20.4, 86.2, 139, 25 }, + }, + }, + [1000010] = { + ["coords"] = {}, + }, + [1000011] = { + ["coords"] = {}, + }, + [1000012] = { + ["coords"] = { + [1] = { 49.1, 60.5, 11, 300 }, + [2] = { 49.1, 60.3, 11, 300 }, + [3] = { 37.6, 72.4, 14, 300 }, + [4] = { 64.8, 34.9, 17, 300 }, + [5] = { 64.9, 34.9, 17, 300 }, + [6] = { 35, 10.5, 45, 300 }, + [7] = { 34.9, 10.5, 45, 300 }, + [8] = { 14.3, 72.2, 47, 300 }, + [9] = { 42.2, 10.4, 130, 300 }, + [10] = { 30.1, 14.8, 1519, 300 }, + [11] = { 32.6, 85.3, 5581, 300 }, + [12] = { 6.5, 25.5, 5602, 300 }, + [13] = { 6.5, 25.2, 5602, 300 }, + }, + }, + [1000013] = { + ["coords"] = { + [1] = { 35.1, 10.6, 45, 300 }, + [2] = { 14.4, 72.2, 47, 300 }, + [3] = { 61.1, 44.5, 409, 300 }, + [4] = { 24.6, 71.9, 440, 300 }, + [5] = { 51.5, 29.4, 618, 300 }, + [6] = { 66.3, 29.8, 1519, 300 }, + [7] = { 66, 28.3, 1519, 300 }, + [8] = { 65.5, 28.2, 1519, 300 }, + [9] = { 65.4, 28, 1519, 300 }, + [10] = { 66.9, 25.8, 1519, 300 }, + [11] = { 67, 25.6, 1519, 300 }, + [12] = { 52.1, 93.4, 5581, 300 }, + [13] = { 51.9, 92.6, 5581, 300 }, + [14] = { 51.6, 92.5, 5581, 300 }, + [15] = { 51.6, 92.4, 5581, 300 }, + [16] = { 52.4, 91.2, 5581, 300 }, + [17] = { 52.5, 91.1, 5581, 300 }, + }, + }, + [1000014] = { + ["coords"] = { + [1] = { 33.5, 49.4, 10, 300 }, + [2] = { 33.3, 48.8, 10, 300 }, + [3] = { 44.9, 91.7, 16, 300 }, + [4] = { 44.3, 45, 16, 300 }, + [5] = { 67.5, 24.2, 28, 25 }, + [6] = { 42, 74.5, 40, 300 }, + [7] = { 22.4, 59.4, 45, 25 }, + [8] = { 22, 59.4, 45, 25 }, + [9] = { 22.3, 58.9, 45, 25 }, + [10] = { 22.2, 58.8, 45, 25 }, + [11] = { 34.8, 9.7, 45, 300 }, + [12] = { 14.1, 71.4, 47, 300 }, + [13] = { 21.6, 69, 85, 300 }, + [14] = { 23.5, 58.7, 85, 300 }, + [15] = { 11.9, 53.4, 85, 300 }, + [16] = { 17.2, 49.7, 85, 300 }, + [17] = { 17.1, 49.7, 85, 300 }, + [18] = { 17.2, 49.2, 85, 300 }, + [19] = { 7.7, 43.7, 139, 25 }, + [20] = { 43.3, 17.1, 357, 25 }, + [21] = { 60.7, 44.7, 409, 300 }, + [22] = { 57.1, 43.9, 409, 300 }, + [23] = { 59.2, 43.8, 409, 300 }, + [24] = { 58.9, 43.5, 409, 300 }, + [25] = { 61.5, 43.5, 409, 300 }, + [26] = { 61.4, 43.5, 409, 300 }, + [27] = { 59, 43.2, 409, 300 }, + [28] = { 59.1, 43.2, 409, 300 }, + [29] = { 51.5, 29.6, 618, 300 }, + [30] = { 51.4, 29.4, 618, 300 }, + [31] = { 66.2, 29.1, 1519, 300 }, + [32] = { 66.6, 28.8, 1519, 300 }, + [33] = { 68.3, 28.2, 1519, 300 }, + [34] = { 66.1, 27.8, 1519, 300 }, + [35] = { 55.1, 27.8, 1581, 300 }, + [36] = { 52, 93, 5581, 300 }, + [37] = { 52.2, 92.8, 5581, 300 }, + [38] = { 53.1, 92.5, 5581, 300 }, + [39] = { 51.9, 92.3, 5581, 300 }, + }, + }, + [1000015] = { + ["coords"] = { + [1] = { 40.6, 78.8, 41, 25 }, + [2] = { 22.1, 59.8, 45, 25 }, + [3] = { 22.4, 59.4, 45, 25 }, + [4] = { 22.3, 58.9, 45, 25 }, + [5] = { 10.9, 45.8, 47, 300 }, + [6] = { 95.6, 5.1, 267, 300 }, + [7] = { 75.7, 53.2, 1519, 25 }, + [8] = { 77.6, 53.2, 1519, 25 }, + [9] = { 76.6, 52.1, 1519, 25 }, + }, + }, + [1000016] = { + ["coords"] = {}, + }, + [1000017] = { + ["coords"] = { + [1] = { 60.7, 44.3, 409, 300 }, + }, + }, + [1000018] = { + ["coords"] = { + [1] = { 50.4, 47.3, 8, 300 }, + [2] = { 33.6, 48.9, 10, 300 }, + [3] = { 94.5, 14.4, 10, 25 }, + [4] = { 48.9, 60.8, 11, 300 }, + [5] = { 74.9, 51.4, 17, 300 }, + [6] = { 52.1, 30, 17, 25 }, + [7] = { 61.3, 24.2, 17, 300 }, + [8] = { 54.4, 1.1, 17, 300 }, + [9] = { 80.2, 63.1, 28, 25 }, + [10] = { 33.9, 17.4, 28, 0 }, + [11] = { 43.3, 80.5, 33, 300 }, + [12] = { 37.7, 66.5, 33, 300 }, + [13] = { 22, 59.5, 45, 25 }, + [14] = { 51.3, 24.8, 45, 300 }, + [15] = { 29.6, 85.5, 47, 300 }, + [16] = { 4.6, 61.8, 85, 300 }, + [17] = { 12, 56, 85, 300 }, + [18] = { 90.1, 32.2, 85, 0 }, + [19] = { 67.4, 83.2, 130, 300 }, + [20] = { 42, 10.6, 130, 300 }, + [21] = { 21.8, 86.9, 139, 25 }, + [22] = { 42.1, 52.5, 267, 300 }, + [23] = { 14, 49.8, 267, 300 }, + [24] = { 66.9, 47.1, 267, 300 }, + [25] = { 79.5, 81.6, 331, 300 }, + [26] = { 72.9, 55.8, 331, 300 }, + [27] = { 31.5, 90.5, 405, 300 }, + [28] = { 24.4, 13.7, 406, 300 }, + [29] = { 52.9, 52.5, 409, 300 }, + [30] = { 31.3, 37.7, 440, 300 }, + [31] = { 78.6, 66.6, 490, 300 }, + [32] = { 49.9, 31.7, 618, 300 }, + [33] = { 41.8, 56.2, 1537, 300 }, + [34] = { 62.1, 44.6, 1637, 25 }, + [35] = { 63.8, 44.5, 1637, 25 }, + [36] = { 96.4, 14.8, 5179, 300 }, + [37] = { 71.9, 12.4, 5179, 300 }, + [38] = { 82.9, 80.6, 5208, 300 }, + [39] = { 50.2, 67.5, 5581, 300 }, + [40] = { 6.3, 25.7, 5602, 300 }, + }, + }, + [1000019] = { + ["coords"] = { + [1] = { 67.5, 23.9, 28, 25 }, + [2] = { 21.8, 67.8, 85, 300 }, + [3] = { 7.7, 43.3, 139, 25 }, + }, + }, + [1000020] = { + ["coords"] = { + [1] = { 93.7, 15.5, 10, 25 }, + [2] = { 25.3, 66.5, 16, 300 }, + [3] = { 27.8, 77.2, 33, 300 }, + [4] = { 22, 59.1, 45, 25 }, + [5] = { 31.7, 20.6, 357, 25 }, + }, + }, + [1000021] = { + ["coords"] = {}, + }, + [1000022] = { + ["coords"] = { + [1] = { 60.9, 69.6, 1519, 25 }, + [2] = { 61, 69.4, 1519, 25 }, + [3] = { 61.1, 69.1, 1519, 25 }, + }, + }, + [1000023] = { + ["coords"] = { + [1] = { 51.8, 29.9, 17, 25 }, + [2] = { 61, 24.3, 17, 300 }, + [3] = { 60, 77.2, 38, 300 }, + [4] = { 78.1, 75.7, 400, 25 }, + [5] = { 36.3, 75.4, 1519, 390 }, + [6] = { 76.2, 53.2, 1519, 25 }, + [7] = { 67.8, 28.7, 1519, 300 }, + [8] = { 52.8, 92.8, 5581, 300 }, + [9] = { 29.3, 83.8, 5602, 300 }, + }, + }, + [1000027] = { + ["coords"] = { + [1] = { 51.3, 27.3, 11, 0 }, + [2] = { 53.4, 51.8, 876, 0 }, + [3] = { 68.3, 7.9, 2366, 25 }, + [4] = { 33.6, 36.7, 5204, 25 }, + [5] = { 38.3, 27.2, 5204, 25 }, + }, + }, + [1000028] = { + ["coords"] = {}, + }, + [1000029] = { + ["coords"] = {}, + }, + [1000030] = { + ["coords"] = { + [1] = { 61.6, 44.6, 409, 300 }, + [2] = { 36.9, 18.6, 5561, 300 }, + }, + }, + [1000031] = { + ["coords"] = { + [1] = { 41.8, 42.5, 16, 300 }, + [2] = { 81.1, 60.9, 28, 25 }, + [3] = { 81.1, 60.8, 28, 25 }, + [4] = { 22.9, 84.5, 139, 25 }, + [5] = { 22.9, 84.4, 139, 25 }, + [6] = { 22.9, 84.3, 139, 25 }, + }, + }, + [1000032] = { + ["coords"] = {}, + }, + [1000033] = { + ["coords"] = { + [1] = { 19.3, 68.6, 11, 25 }, + [2] = { 51.3, 27.2, 11, 0 }, + [3] = { 41.6, 64.4, 12, 25 }, + [4] = { 40.6, 63.6, 12, 25 }, + [5] = { 60.1, 29.7, 12, 25 }, + [6] = { 41.3, 43, 16, 300 }, + [7] = { 80.1, 62.8, 28, 300 }, + [8] = { 81.1, 62.6, 28, 25 }, + [9] = { 71.7, 50.2, 28, 25 }, + [10] = { 33.9, 18, 28, 0 }, + [11] = { 34.2, 18, 28, 0 }, + [12] = { 90.1, 32.8, 85, 0 }, + [13] = { 90.5, 32.7, 85, 0 }, + [14] = { 21.8, 86.6, 139, 300 }, + [15] = { 22.9, 86.3, 139, 25 }, + [16] = { 12.4, 72.5, 139, 25 }, + }, + }, + [1000034] = { + ["coords"] = { + [1] = { 36.1, 92.1, 3478, 25 }, + }, + }, + [1000035] = { + ["coords"] = { + [1] = { 42.7, 63, 12, 25 }, + [2] = { 42.4, 62.6, 12, 25 }, + [3] = { 59.9, 29.4, 12, 25 }, + [4] = { 81.1, 61.5, 28, 300 }, + [5] = { 10.2, 44.4, 47, 300 }, + [6] = { 22.8, 85.1, 139, 300 }, + [7] = { 94.8, 3.5, 267, 300 }, + [8] = { 31.3, 36.9, 440, 300 }, + [9] = { 78.7, 65, 490, 300 }, + [10] = { 37.3, 69.7, 1519, 300 }, + [11] = { 35.7, 92.3, 3478, 25 }, + [12] = { 36.6, 91.9, 3478, 25 }, + }, + }, + [1000036] = { + ["coords"] = { + [1] = { 40.9, 63.1, 12, 25 }, + [2] = { 42.5, 62.8, 12, 25 }, + [3] = { 35.2, 49.8, 12, 25 }, + [4] = { 94.5, 83.4, 139, 300 }, + [5] = { 56.8, 68.3, 4012, 300 }, + }, + }, + [1000037] = { + ["coords"] = { + [1] = { 50.8, 48.5, 8, 300 }, + [2] = { 51.7, 52.2, 409, 300 }, + }, + }, + [1000038] = { + ["coords"] = { + [1] = { 52.1, 30, 17, 25 }, + [2] = { 80.3, 63.1, 28, 25 }, + [3] = { 81.1, 62.6, 28, 25 }, + [4] = { 21.9, 86.9, 139, 25 }, + [5] = { 22.9, 86.3, 139, 25 }, + [6] = { 49.5, 62.3, 267, 300 }, + [7] = { 91.4, 73.3, 1497, 25 }, + [8] = { 60.6, 30.3, 1497, 300 }, + }, + }, + [1000039] = { + ["coords"] = { + [1] = { 48.5, 96.7, 17, 300 }, + [2] = { 42.3, 32.5, 400, 300 }, + [3] = { 59.8, 52.8, 440, 0 }, + [4] = { 48.4, 31.4, 1941, 0 }, + [5] = { 40.8, 64.5, 5601, 300 }, + }, + }, + [1000040] = { + ["coords"] = { + [1] = { 81.2, 72.1, 10, 300 }, + [2] = { 80.7, 71.6, 10, 300 }, + [3] = { 42.5, 63, 12, 25 }, + [4] = { 67.1, 45.4, 15, 25 }, + [5] = { 41.7, 42.2, 16, 300 }, + [6] = { 64.7, 34.4, 17, 300 }, + [7] = { 52.1, 29.9, 17, 25 }, + [8] = { 52, 29.7, 17, 25 }, + [9] = { 61.4, 24.2, 17, 300 }, + [10] = { 54.2, 0.9, 17, 300 }, + [11] = { 9, 64.4, 28, 25 }, + [12] = { 71.7, 50.2, 28, 25 }, + [13] = { 67.6, 24.2, 28, 25 }, + [14] = { 59.7, 77.1, 38, 300 }, + [15] = { 12.5, 72.5, 139, 25 }, + [16] = { 7.9, 43.6, 139, 25 }, + [17] = { 79.2, 81.2, 331, 300 }, + [18] = { 43.6, 17, 357, 25 }, + [19] = { 43.7, 15.8, 357, 25 }, + [20] = { 82.4, 55.4, 400, 25 }, + [21] = { 82.8, 54.9, 400, 300 }, + [22] = { 56, 48.8, 1497, 300 }, + [23] = { 64.1, 76.7, 1519, 300 }, + [24] = { 64.4, 46.7, 1519, 25 }, + [25] = { 51.1, 73.9, 1637, 25 }, + [26] = { 27.5, 69, 2040, 25 }, + [27] = { 41.8, 69, 2040, 25 }, + [28] = { 27.3, 67.8, 2040, 25 }, + [29] = { 81.8, 68.9, 5208, 300 }, + [30] = { 50.9, 34.9, 5225, 25 }, + [31] = { 57.7, 34.9, 5225, 25 }, + [32] = { 50.8, 34.3, 5225, 25 }, + [33] = { 29.1, 83.7, 5602, 300 }, + }, + }, + [1000041] = { + ["coords"] = {}, + }, + [1000042] = { + ["coords"] = {}, + }, + [1000043] = { + ["coords"] = {}, + }, + [1000044] = { + ["coords"] = {}, + }, + [1000045] = { + ["coords"] = { + [1] = { 39.9, 32.7, 14, 25 }, + [2] = { 39.4, 31.6, 14, 25 }, + [3] = { 40.9, 30.4, 14, 300 }, + [4] = { 38.9, 29.9, 14, 300 }, + [5] = { 38.9, 29.8, 14, 25 }, + [6] = { 40.6, 29.1, 14, 300 }, + [7] = { 42.3, 27.3, 14, 300 }, + [8] = { 39.5, 26.5, 14, 300 }, + [9] = { 39.2, 25.7, 14, 300 }, + [10] = { 41, 25.1, 14, 300 }, + [11] = { 42.2, 24.9, 14, 300 }, + [12] = { 42.7, 24.5, 14, 300 }, + [13] = { 43.3, 24.5, 14, 300 }, + [14] = { 39.4, 24.1, 14, 300 }, + [15] = { 43.9, 23.8, 14, 300 }, + [16] = { 40.3, 23.7, 14, 300 }, + [17] = { 39.5, 23.3, 14, 300 }, + [18] = { 48.1, 16.5, 14, 25 }, + [19] = { 48.2, 16.5, 14, 25 }, + [20] = { 46, 9.3, 14, 25 }, + [21] = { 41.8, 42.2, 16, 300 }, + [22] = { 81, 61.3, 28, 25 }, + [23] = { 81.1, 60.9, 28, 25 }, + [24] = { 81.2, 60.8, 28, 25 }, + [25] = { 81, 60.5, 28, 25 }, + [26] = { 22.8, 84.9, 139, 25 }, + [27] = { 22.9, 84.4, 139, 25 }, + [28] = { 22.9, 84.3, 139, 25 }, + [29] = { 22.8, 84, 139, 25 }, + [30] = { 22.8, 83.9, 139, 25 }, + [31] = { 91.2, 72.9, 1497, 25 }, + [32] = { 50.9, 84.8, 1637, 25 }, + [33] = { 51, 84.7, 1637, 25 }, + [34] = { 52.4, 73.9, 1637, 25 }, + [35] = { 52.6, 71.8, 1637, 25 }, + [36] = { 52.7, 71.5, 1637, 25 }, + [37] = { 50.8, 66.3, 1637, 25 }, + [38] = { 50.8, 66.2, 1637, 25 }, + [39] = { 50.7, 66.1, 1637, 25 }, + }, + }, + [1000050] = { + ["coords"] = {}, + }, + [1000051] = { + ["coords"] = {}, + }, + [1000052] = { + ["coords"] = {}, + }, + [1000055] = { + ["coords"] = { + [1] = { 47.3, 52.7, 1, 25 }, + [2] = { 25.3, 30.3, 1, 0 }, + [3] = { 64.7, 34.2, 17, 300 }, + [4] = { 47.9, 8.8, 17, 300 }, + [5] = { 51.1, 36, 33, 300 }, + [6] = { 41.3, 27.3, 215, 25 }, + [7] = { 67.6, 26.6, 440, 25 }, + [8] = { 82.9, 17.3, 721, 0 }, + [9] = { 37.5, 74.2, 1519, 300 }, + [10] = { 56.7, 51.4, 1638, 25 }, + }, + }, + [1000060] = { + ["coords"] = {}, + }, + [1000061] = { + ["coords"] = { + [1] = { 21.4, 27.8, 1, 25 }, + [2] = { 22.5, 23.7, 1, 25 }, + }, + }, + [1000062] = { + ["coords"] = {}, + }, + [1000063] = { + ["coords"] = { + [1] = { 31.2, 48.7, 33, 300 }, + }, + }, + [1000064] = { + ["coords"] = { + [1] = { 33.3, 82, 5086, 300 }, + }, + }, + [1000065] = { + ["coords"] = { + [1] = { 42.9, 65.9, 12, 25 }, + [2] = { 40.7, 63.5, 12, 25 }, + [3] = { 41.9, 63.5, 12, 25 }, + [4] = { 42.7, 63.1, 12, 25 }, + [5] = { 35, 49.6, 12, 25 }, + [6] = { 44.2, 98.9, 28, 300 }, + [7] = { 43.2, 98.7, 28, 300 }, + [8] = { 81, 51.9, 36, 300 }, + [9] = { 79.5, 51.6, 36, 300 }, + }, + }, + [1000067] = { + ["coords"] = { + [1] = { 9.9, 34.5, 1, 25 }, + [2] = { 22.1, 25.6, 1, 25 }, + }, + }, + [1000068] = { + ["coords"] = { + [1] = { 46.8, 54.1, 331, 25 }, + [2] = { 47.9, 54.1, 331, 25 }, + [3] = { 48, 53.3, 331, 25 }, + [4] = { 46.8, 52.8, 331, 25 }, + [5] = { 46.7, 52.5, 331, 25 }, + [6] = { 46.9, 52.3, 331, 25 }, + [7] = { 35.6, 91.3, 3478, 25 }, + }, + }, + [1000069] = { + ["coords"] = {}, + }, + [1000070] = { + ["coords"] = { + [1] = { 25.3, 56, 141, 300 }, + [2] = { 38.7, 28.8, 215, 300 }, + [3] = { 66.1, 37.5, 1497, 300 }, + [4] = { 55.4, 55.8, 1519, 300 }, + [5] = { 32, 61.7, 1537, 300 }, + [6] = { 55.2, 71.9, 1637, 300 }, + [7] = { 43.6, 58.7, 1638, 300 }, + [8] = { 38.8, 43.8, 1657, 300 }, + [9] = { 50, 45.7, 2040, 300 }, + [10] = { 61.6, 23.8, 5225, 300 }, + }, + }, + [1000071] = { + ["coords"] = { + [1] = { 23.3, 26.9, 1, 25 }, + [2] = { 60, 30.2, 12, 25 }, + [3] = { 42.4, 68, 14, 300 }, + [4] = { 41.6, 72.8, 15, 25 }, + [5] = { 30.1, 71.1, 16, 300 }, + [6] = { 41.6, 42.7, 16, 300 }, + [7] = { 79.9, 63.1, 28, 300 }, + [8] = { 21.5, 86.8, 139, 300 }, + [9] = { 68.3, 19, 148, 300 }, + [10] = { 36.8, 76.5, 1519, 300 }, + [11] = { 51.6, 71, 1637, 300 }, + [12] = { 35.6, 91.7, 3478, 25 }, + }, + }, + [1000072] = { + ["coords"] = { + [1] = { 32.8, 83.1, 12, 25 }, + [2] = { 32.6, 82.9, 12, 25 }, + [3] = { 40.9, 63.6, 12, 25 }, + [4] = { 40.8, 63.6, 12, 25 }, + [5] = { 35.4, 50.3, 12, 25 }, + [6] = { 34.8, 49.5, 12, 25 }, + [7] = { 59.1, 29.3, 12, 25 }, + [8] = { 47.8, 8.5, 17, 300 }, + [9] = { 44.6, 58.5, 215, 25 }, + [10] = { 36.2, 92.1, 3478, 25 }, + }, + }, + [1000073] = { + ["coords"] = { + [1] = { 83.6, 55.2, 400, 25 }, + [2] = { 69.2, 26.4, 1637, 25 }, + }, + }, + [1000074] = { + ["coords"] = { + [1] = { 45.6, 46.1, 5130, 300 }, + }, + }, + [1000077] = { + ["coords"] = {}, + }, + [1000079] = { + ["coords"] = { + [1] = { 64.2, 75.2, 1519, 25 }, + }, + }, + [1000080] = { + ["coords"] = {}, + }, + [1000081] = { + ["coords"] = { + [1] = { 24.5, 13.9, 406, 25 }, + [2] = { 50.3, 23.4, 5130, 300 }, + }, + ["fac"] = "AH", + }, + [1000082] = { + ["coords"] = { + [1] = { 66.6, 45.4, 12, 200 }, + [2] = { 68.4, 45.3, 12, 360 }, + [3] = { 67.7, 44.9, 12, 360 }, + [4] = { 68.4, 44.9, 12, 200 }, + [5] = { 67.8, 44.8, 12, 360 }, + [6] = { 66.3, 41.6, 12, 360 }, + [7] = { 66.4, 41.5, 12, 200 }, + [8] = { 66.5, 41.5, 12, 360 }, + [9] = { 64.9, 41.3, 12, 360 }, + [10] = { 66.3, 41.2, 12, 300 }, + [11] = { 67.5, 40.9, 12, 200 }, + [12] = { 65.1, 40.9, 12, 200 }, + [13] = { 66.2, 40.8, 12, 200 }, + [14] = { 66.2, 40.8, 12, 360 }, + [15] = { 65.4, 40.7, 12, 200 }, + [16] = { 66.3, 40.4, 12, 300 }, + [17] = { 66.7, 40.4, 12, 360 }, + [18] = { 66.7, 40.3, 12, 300 }, + [19] = { 71.8, 40.3, 12, 300 }, + [20] = { 71.9, 40.2, 12, 300 }, + [21] = { 68.1, 39.8, 12, 360 }, + [22] = { 64.7, 39.4, 12, 200 }, + [23] = { 67.6, 39.1, 12, 200 }, + [24] = { 69.8, 38.7, 12, 360 }, + [25] = { 69.6, 38.7, 12, 200 }, + [26] = { 71.8, 38.3, 12, 200 }, + [27] = { 69.4, 38.2, 12, 360 }, + [28] = { 70.7, 38.2, 12, 300 }, + [29] = { 70.8, 38.2, 12, 300 }, + [30] = { 69.1, 38.1, 12, 300 }, + [31] = { 70.9, 36.8, 12, 200 }, + }, + }, + [1000083] = { + ["coords"] = { + [1] = { 58.9, 56.2, 876, 300 }, + }, + ["fac"] = "AH", + }, + [1000084] = { + ["coords"] = { + [1] = { 58.9, 55.9, 876, 300 }, + }, + ["fac"] = "AH", + }, + [1000087] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [1000089] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [1000090] = { + ["coords"] = {}, + }, + [1000091] = { + ["coords"] = {}, + }, + [1000092] = { + ["coords"] = { + [1] = { 49.1, 60.4, 11, 300 }, + [2] = { 58.8, 27.4, 14, 300 }, + [3] = { 68.3, 48.7, 15, 300 }, + [4] = { 61.8, 23.6, 17, 300 }, + [5] = { 71.7, 50.2, 28, 25 }, + [6] = { 67.6, 23.9, 28, 25 }, + [7] = { 27.8, 77, 85, 300 }, + [8] = { 12.1, 53.5, 85, 300 }, + [9] = { 79.5, 25.1, 85, 300 }, + [10] = { 67.5, 83.6, 130, 300 }, + [11] = { 67.5, 83.4, 130, 300 }, + [12] = { 12.5, 72.5, 139, 25 }, + [13] = { 7.8, 43.3, 139, 25 }, + [14] = { 14.1, 50.4, 267, 300 }, + [15] = { 14.1, 50, 267, 300 }, + [16] = { 61.5, 43.7, 409, 300 }, + [17] = { 34.9, 91.8, 3478, 25 }, + [18] = { 72, 13, 5179, 300 }, + [19] = { 71.9, 12.6, 5179, 300 }, + [20] = { 6.5, 25.3, 5602, 300 }, + }, + }, + [1000093] = { + ["coords"] = { + [1] = { 24.2, 31.9, 1, 300 }, + [2] = { 23.9, 30.7, 1, 300 }, + [3] = { 24, 28.2, 1, 300 }, + [4] = { 33.5, 49, 10, 300 }, + [5] = { 37.5, 72.3, 14, 300 }, + [6] = { 51.5, 41.2, 14, 25 }, + [7] = { 64.8, 34.8, 17, 300 }, + [8] = { 53.9, 1.1, 17, 300 }, + [9] = { 67.6, 24.2, 28, 25 }, + [10] = { 28.5, 58.2, 45, 300 }, + [11] = { 35.2, 10.4, 45, 300 }, + [12] = { 14.5, 72.1, 47, 300 }, + [13] = { 78.7, 55.9, 85, 300 }, + [14] = { 11.9, 53.2, 85, 300 }, + [15] = { 42, 10.6, 130, 300 }, + [16] = { 42.2, 10.1, 130, 300 }, + [17] = { 7.9, 43.6, 139, 25 }, + [18] = { 78.8, 81.5, 331, 300 }, + [19] = { 61.3, 44.6, 409, 300 }, + [20] = { 56.9, 43.7, 409, 300 }, + [21] = { 73.3, 30.8, 721, 300 }, + [22] = { 70.8, 20.7, 721, 300 }, + [23] = { 56, 48.7, 1497, 300 }, + [24] = { 75.5, 39.5, 1497, 300 }, + [25] = { 76.1, 38.6, 1497, 300 }, + [26] = { 75.9, 38, 1497, 300 }, + [27] = { 74.7, 37.8, 1497, 300 }, + [28] = { 64, 76.7, 1519, 300 }, + [29] = { 61.7, 71.8, 1519, 25 }, + [30] = { 59.9, 55.8, 1519, 300 }, + [31] = { 47.3, 78.5, 5225, 300 }, + }, + }, + [1000094] = { + ["coords"] = { + [1] = { 61.8, 74.7, 1519, 0 }, + [2] = { 61.9, 74.7, 1519, 0 }, + [3] = { 61.7, 74.7, 1519, 0 }, + [4] = { 61.7, 74.6, 1519, 0 }, + [5] = { 61.9, 74.6, 1519, 0 }, + [6] = { 61.7, 74.5, 1519, 0 }, + [7] = { 61.9, 74.5, 1519, 0 }, + [8] = { 61.9, 74.4, 1519, 0 }, + [9] = { 61.8, 74.4, 1519, 0 }, + }, + }, + [1000095] = { + ["coords"] = {}, + }, + [1000096] = { + ["coords"] = { + [1] = { 25.5, 30.7, 1, 300 }, + [2] = { 41.6, 64.4, 12, 25 }, + [3] = { 34.9, 49.6, 12, 25 }, + [4] = { 59.3, 29.2, 12, 25 }, + [5] = { 43.9, 67.2, 14, 300 }, + [6] = { 49.4, 66.7, 267, 300 }, + [7] = { 83.9, 20.5, 721, 300 }, + [8] = { 61.4, 58.3, 1497, 300 }, + }, + }, + [1000097] = { + ["coords"] = { + [1] = { 46.7, 54.1, 331, 25 }, + [2] = { 47.8, 54.1, 331, 25 }, + [3] = { 46.8, 54.1, 331, 25 }, + [4] = { 47.9, 54.1, 331, 25 }, + [5] = { 46.3, 53.7, 331, 25 }, + [6] = { 48, 53.3, 331, 25 }, + [7] = { 47.9, 53.2, 331, 25 }, + [8] = { 46.8, 52.8, 331, 25 }, + [9] = { 46.7, 52.5, 331, 25 }, + [10] = { 47.2, 52.3, 331, 25 }, + [11] = { 47.1, 52.3, 331, 25 }, + }, + }, + [1000098] = { + ["coords"] = { + [1] = { 48.7, 45.8, 8, 300 }, + [2] = { 46.1, 9.2, 14, 25 }, + [3] = { 29, 61.8, 16, 300 }, + [4] = { 48.2, 8.7, 17, 300 }, + [5] = { 51.2, 84.3, 1637, 25 }, + }, + }, + [1000099] = { + ["coords"] = {}, + }, + [1000100] = { + ["coords"] = {}, + }, + [1000101] = { + ["coords"] = { + [1] = { 61.8, 74.6, 1519, 0 }, + }, + }, + [1000102] = { + ["coords"] = {}, + }, + [1000103] = { + ["coords"] = {}, + }, + [1000104] = { + ["coords"] = { + [1] = { 61.8, 74.6, 1519, 0 }, + [2] = { 61.9, 74.6, 1519, 0 }, + [3] = { 61.8, 74.5, 1519, 0 }, + [4] = { 61.9, 74.5, 1519, 0 }, + }, + }, + [1000105] = { + ["coords"] = { + [1] = { 61.8, 74.6, 1519, 0 }, + }, + }, + [1000106] = { + ["coords"] = {}, + }, + [1000107] = { + ["coords"] = {}, + }, + [1000108] = { + ["coords"] = {}, + }, + [1000167] = { + ["coords"] = { + [1] = { 51.4, 27.5, 11, 0 }, + [2] = { 8.3, 0.1, 5602, 0 }, + }, + ["fac"] = "AH", + }, + [1000168] = { + ["coords"] = { + [1] = { 51.6, 27.3, 11, 0 }, + }, + ["fac"] = "AH", + }, + [1000171] = { + ["coords"] = { + [1] = { 10, 57.5, 11, 0 }, + }, + }, + [1000172] = { + ["coords"] = { + [1] = { 10.1, 57.5, 11, 0 }, + }, + }, + [1000173] = { + ["coords"] = { + [1] = { 10.1, 57.7, 11, 0 }, + }, + }, + [1000176] = { + ["coords"] = {}, + }, + [1000177] = { + ["coords"] = { + [1] = { 64.3, 64.2, 130, 30 }, + [2] = { 9.9, 24.8, 267, 30 }, + }, + }, + [1000191] = { + ["coords"] = { + [1] = { 53.2, 43.4, 14, 300 }, + [2] = { 61.1, 24.8, 17, 300 }, + }, + }, + [1000192] = { + ["coords"] = { + [1] = { 62.7, 36.4, 17, 300 }, + }, + }, + [1000193] = { + ["coords"] = { + [1] = { 41.8, 74.2, 15, 300 }, + }, + }, + [1000194] = { + ["coords"] = { + [1] = { 59.2, 24.9, 14, 300 }, + }, + }, + [1000195] = { + ["coords"] = {}, + }, + [1000200] = { + ["coords"] = { + [1] = { 40.6, 68.5, 14, 300 }, + [2] = { 66.4, 32.9, 17, 300 }, + }, + }, + [1000201] = { + ["coords"] = {}, + }, + [1000202] = { + ["coords"] = {}, + }, + [1000215] = { + ["coords"] = { + [1] = { 41.8, 64.6, 12, 25 }, + [2] = { 21.8, 67.9, 85, 300 }, + [3] = { 64.5, 75.6, 1519, 25 }, + [4] = { 51.1, 74, 1637, 25 }, + [5] = { 63.8, 44.6, 1637, 25 }, + [6] = { 62.2, 44.4, 1637, 25 }, + }, + }, + [1000216] = { + ["coords"] = { + [1] = { 41.8, 64.6, 12, 25 }, + [2] = { 21.8, 67.9, 85, 300 }, + [3] = { 61.3, 58.2, 1497, 300 }, + [4] = { 64.5, 75.6, 1519, 25 }, + [5] = { 51.1, 74, 1637, 25 }, + [6] = { 63.6, 45.4, 1637, 25 }, + [7] = { 63.5, 45.4, 1637, 25 }, + [8] = { 63, 44.8, 1637, 25 }, + [9] = { 63.1, 44.7, 1637, 25 }, + [10] = { 63.8, 44.6, 1637, 25 }, + [11] = { 63, 44.6, 1637, 25 }, + [12] = { 62.2, 44.5, 1637, 25 }, + [13] = { 62.2, 44.4, 1637, 25 }, + }, + }, + [1000217] = { + ["coords"] = {}, + }, + [1000218] = { + ["coords"] = {}, + }, + [1000219] = { + ["coords"] = { + [1] = { 43.4, 67.4, 12, 25 }, + [2] = { 41.6, 64.7, 12, 25 }, + [3] = { 43.2, 64.6, 12, 25 }, + [4] = { 42.2, 62.6, 12, 25 }, + [5] = { 42.2, 62.4, 12, 25 }, + [6] = { 35.4, 50.5, 12, 25 }, + [7] = { 34.9, 49.4, 12, 25 }, + [8] = { 35.2, 49.4, 12, 25 }, + [9] = { 60, 30.4, 12, 25 }, + [10] = { 59.1, 30.4, 12, 25 }, + [11] = { 60, 29.3, 12, 25 }, + [12] = { 58.7, 29.2, 12, 25 }, + [13] = { 44.7, 58.3, 215, 25 }, + [14] = { 35, 94.4, 3478, 25 }, + [15] = { 35.1, 94.3, 3478, 25 }, + [16] = { 37.5, 93.1, 3478, 25 }, + [17] = { 37.5, 93, 3478, 25 }, + [18] = { 35.5, 91.4, 3478, 25 }, + }, + }, + [1000220] = { + ["coords"] = { + [1] = { 61.8, 74.7, 1519, 25 }, + [2] = { 61.9, 74.5, 1519, 25 }, + [3] = { 61.7, 74.5, 1519, 25 }, + [4] = { 61.9, 74.4, 1519, 25 }, + }, + }, + [1000221] = { + ["coords"] = { + [1] = { 42.3, 62.4, 12, 25 }, + [2] = { 35.1, 49.7, 12, 25 }, + [3] = { 46.5, 47, 12, 25 }, + [4] = { 46.4, 47, 12, 25 }, + [5] = { 46.5, 46.9, 12, 25 }, + [6] = { 60.1, 29.7, 12, 25 }, + [7] = { 44.2, 58.5, 215, 25 }, + [8] = { 44.6, 58.4, 215, 25 }, + [9] = { 22.1, 52.4, 331, 300 }, + [10] = { 58.5, 19.5, 406, 300 }, + [11] = { 39.1, 11, 490, 300 }, + [12] = { 39.1, 10.8, 490, 300 }, + [13] = { 36.1, 70.6, 1519, 300 }, + [14] = { 35.2, 92.4, 3478, 25 }, + }, + }, + [1000222] = { + ["coords"] = { + [1] = { 42.9, 66.5, 12, 25 }, + [2] = { 43.2, 64.7, 12, 25 }, + [3] = { 42.2, 62.4, 12, 25 }, + [4] = { 35.5, 50.4, 12, 25 }, + [5] = { 59.9, 30.3, 12, 25 }, + [6] = { 58.7, 29.3, 12, 25 }, + [7] = { 60.1, 29.3, 12, 25 }, + [8] = { 58.7, 29.1, 12, 25 }, + [9] = { 44.7, 58.5, 215, 25 }, + [10] = { 44.6, 58.4, 215, 25 }, + }, + }, + [1000224] = { + ["coords"] = { + [1] = { 67.1, 45.3, 15, 25 }, + [2] = { 67.7, 23.9, 28, 25 }, + [3] = { 8, 43.3, 139, 25 }, + [4] = { 24.6, 72, 440, 300 }, + [5] = { 24.6, 71.9, 440, 300 }, + [6] = { 68.1, 26.9, 1519, 300 }, + [7] = { 67.8, 26.3, 1519, 300 }, + [8] = { 53, 91.8, 5581, 300 }, + [9] = { 52.8, 91.5, 5581, 300 }, + }, + }, + [1000225] = { + ["coords"] = { + [1] = { 35.1, 49.7, 12, 25 }, + [2] = { 44.2, 58.5, 215, 25 }, + [3] = { 46.9, 52.6, 331, 25 }, + }, + }, + [1000226] = { + ["coords"] = {}, + }, + [1000227] = { + ["coords"] = { + [1] = { 41.6, 71.2, 15, 25 }, + [2] = { 41.9, 71.2, 15, 25 }, + [3] = { 61.6, 73.3, 38, 300 }, + [4] = { 50.6, 39.6, 1977, 25 }, + [5] = { 30.1, 81.8, 5602, 300 }, + }, + }, + [1000228] = { + ["coords"] = { + [1] = { 21, 53.5, 331, 300 }, + [2] = { 23.7, 52.5, 331, 300 }, + [3] = { 57.5, 20.5, 406, 300 }, + [4] = { 60.1, 19.6, 406, 300 }, + }, + }, + [1000229] = { + ["coords"] = { + [1] = { 35.2, 50.1, 12, 25 }, + [2] = { 35.2, 49.9, 12, 25 }, + [3] = { 34.9, 49.6, 12, 25 }, + [4] = { 46.4, 47, 12, 25 }, + [5] = { 46.4, 46.9, 12, 25 }, + [6] = { 59.8, 30.3, 12, 25 }, + [7] = { 41.6, 43, 16, 300 }, + [8] = { 44.2, 58.7, 215, 25 }, + [9] = { 36.5, 75.1, 1519, 369 }, + [10] = { 70.8, 72.7, 1519, 25 }, + [11] = { 36.6, 72, 1519, 300 }, + [12] = { 36.2, 69.9, 1519, 300 }, + }, + }, + [1000230] = { + ["coords"] = { + [1] = { 43.8, 65.7, 12, 25 }, + [2] = { 46.4, 46.9, 12, 25 }, + [3] = { 59.8, 30.3, 12, 25 }, + [4] = { 37.1, 74.3, 1519, 365 }, + [5] = { 70.7, 72.7, 1519, 25 }, + [6] = { 66.4, 46, 1519, 300 }, + [7] = { 35, 91.6, 3478, 25 }, + [8] = { 35, 91.5, 3478, 25 }, + }, + }, + [1000231] = { + ["coords"] = { + [1] = { 28.3, 58.3, 141, 300 }, + [2] = { 46.5, 52.5, 331, 25 }, + [3] = { 46.9, 52.4, 331, 25 }, + [4] = { 53.4, 54.5, 1657, 300 }, + }, + }, + [1000232] = { + ["coords"] = { + [1] = { 47.3, 52.5, 1, 25 }, + [2] = { 43.8, 65.7, 12, 25 }, + [3] = { 35.2, 49.9, 12, 25 }, + [4] = { 46.3, 46.9, 12, 25 }, + [5] = { 60.1, 30.1, 12, 25 }, + [6] = { 44.2, 67, 14, 300 }, + [7] = { 59.8, 77.1, 38, 300 }, + [8] = { 59.1, 75.1, 38, 300 }, + [9] = { 67.9, 18.2, 148, 300 }, + [10] = { 68.2, 18.1, 148, 300 }, + [11] = { 68.3, 18, 148, 300 }, + [12] = { 68.4, 17.9, 148, 300 }, + [13] = { 44.2, 58.7, 215, 25 }, + [14] = { 37.8, 74.6, 1519, 305 }, + [15] = { 36.9, 74.6, 1519, 324 }, + [16] = { 37.7, 73.8, 1519, 300 }, + [17] = { 70.9, 72.6, 1519, 25 }, + [18] = { 36.5, 72.1, 1519, 300 }, + [19] = { 36.2, 70, 1519, 300 }, + [20] = { 66.5, 46, 1519, 300 }, + [21] = { 34.9, 91.6, 3478, 25 }, + [22] = { 29.1, 83.8, 5602, 300 }, + [23] = { 28.8, 82.7, 5602, 300 }, + }, + }, + [1000233] = { + ["coords"] = { + [1] = { 46.8, 52.5, 331, 25 }, + [2] = { 95.9, 28.8, 331, 300 }, + }, + }, + [1000234] = { + ["coords"] = { + [1] = { 42.9, 66.5, 12, 25 }, + [2] = { 61.1, 24.3, 17, 300 }, + [3] = { 80.5, 62, 28, 300 }, + [4] = { 22.2, 85.6, 139, 300 }, + [5] = { 43.3, 52.4, 267, 300 }, + [6] = { 60.5, 73.8, 1519, 25 }, + [7] = { 97.5, 14.7, 5179, 300 }, + }, + }, + [1000235] = { + ["coords"] = {}, + }, + [1000236] = { + ["coords"] = {}, + }, + [1000237] = { + ["coords"] = { + [1] = { 46.4, 46.9, 12, 25 }, + [2] = { 53.9, 9, 15, 300 }, + [3] = { 63.4, 58.6, 17, 300 }, + [4] = { 61.7, 23.7, 17, 300 }, + [5] = { 48.7, 9.3, 17, 300 }, + [6] = { 44.2, 58.6, 215, 25 }, + [7] = { 72.2, 57.3, 331, 300 }, + [8] = { 66.4, 85.2, 618, 300 }, + [9] = { 62.3, 68.4, 1519, 25 }, + [10] = { 51.1, 74.1, 1637, 25 }, + [11] = { 35.3, 92.3, 3478, 25 }, + [12] = { 34.9, 91.8, 3478, 25 }, + }, + }, + [1000238] = { + ["coords"] = { + [1] = { 31.6, 85.6, 405, 300 }, + }, + }, + [1000239] = { + ["coords"] = {}, + }, + [1000241] = { + ["coords"] = {}, + }, + [1000245] = { + ["coords"] = {}, + }, + [1000246] = { + ["coords"] = { + [1] = { 29.8, 24.5, 28, 300 }, + [2] = { 30.3, 23.6, 28, 300 }, + [3] = { 30.5, 23.1, 28, 300 }, + [4] = { 86.2, 38.9, 85, 300 }, + [5] = { 86.7, 38.1, 85, 300 }, + [6] = { 86.9, 37.6, 85, 300 }, + }, + }, + [1000247] = { + ["coords"] = { + [1] = { 29.5, 25, 28, 300 }, + [2] = { 29.6, 24.6, 28, 300 }, + [3] = { 29.7, 24.6, 28, 300 }, + [4] = { 30.4, 23.4, 28, 300 }, + [5] = { 86, 39.5, 85, 300 }, + [6] = { 86, 39.1, 85, 300 }, + [7] = { 86.2, 39, 85, 300 }, + [8] = { 86.8, 37.9, 85, 300 }, + }, + }, + [1000249] = { + ["coords"] = { + [1] = { 39.3, 65.2, 16, 300 }, + [2] = { 41.6, 64.7, 16, 300 }, + [3] = { 43.6, 64.3, 16, 300 }, + [4] = { 40.7, 63.9, 16, 300 }, + [5] = { 35.3, 63.6, 16, 300 }, + [6] = { 37.2, 62, 16, 300 }, + [7] = { 39, 61.5, 16, 300 }, + [8] = { 41.3, 61.4, 16, 300 }, + [9] = { 39.8, 60.8, 16, 300 }, + [10] = { 36.3, 60.3, 16, 300 }, + [11] = { 35.9, 57.6, 16, 300 }, + [12] = { 39.4, 56.9, 16, 300 }, + [13] = { 35.6, 56, 16, 300 }, + [14] = { 37.6, 55.7, 16, 300 }, + [15] = { 38.6, 54.8, 16, 300 }, + [16] = { 39.6, 54.5, 16, 300 }, + [17] = { 36.5, 54.2, 16, 300 }, + [18] = { 34.3, 53.9, 16, 300 }, + [19] = { 36.7, 53.6, 16, 300 }, + [20] = { 39.8, 53.3, 16, 300 }, + [21] = { 34.6, 52.4, 16, 300 }, + [22] = { 37.6, 52.3, 16, 300 }, + [23] = { 36.7, 51.8, 16, 300 }, + [24] = { 39.4, 50.8, 16, 300 }, + [25] = { 34.7, 50.3, 16, 300 }, + [26] = { 35.6, 50, 16, 300 }, + [27] = { 41.2, 49.9, 16, 300 }, + [28] = { 37.6, 49.9, 16, 300 }, + [29] = { 39.9, 48.7, 16, 300 }, + [30] = { 36.6, 48.4, 16, 300 }, + [31] = { 38.6, 47.9, 16, 300 }, + [32] = { 37.9, 47.6, 16, 300 }, + [33] = { 40, 46.2, 16, 300 }, + }, + }, + [1000250] = { + ["coords"] = { + [1] = { 62.7, 23.8, 14, 5 }, + }, + }, + [1000251] = { + ["coords"] = { + [1] = { 40.6, 63.3, 12, 25 }, + [2] = { 42.8, 62.5, 12, 25 }, + [3] = { 35.5, 49.6, 12, 25 }, + [4] = { 35.5, 49.5, 12, 25 }, + [5] = { 60, 30.2, 12, 25 }, + [6] = { 41.6, 72.8, 15, 25 }, + [7] = { 41.6, 42.7, 16, 300 }, + [8] = { 81, 61.4, 28, 25 }, + [9] = { 89.4, 22.5, 46, 300 }, + [10] = { 22.7, 85, 139, 25 }, + [11] = { 68.3, 19, 148, 300 }, + [12] = { 42.1, 74.9, 331, 300 }, + [13] = { 44.5, 50.4, 406, 300 }, + [14] = { 77.7, 41.1, 406, 300 }, + [15] = { 51.6, 71, 1637, 300 }, + [16] = { 35.4, 91.9, 3478, 25 }, + [17] = { 35.6, 91.7, 3478, 25 }, + }, + }, + [1000252] = { + ["coords"] = { + [1] = { 81.1, 60.6, 28, 300 }, + [2] = { 22.9, 84.1, 139, 300 }, + }, + }, + [1000253] = { + ["coords"] = { + [1] = { 48, 16.7, 14, 25 }, + [2] = { 48.1, 16.5, 14, 25 }, + [3] = { 46, 9.3, 14, 25 }, + [4] = { 46.1, 6.7, 14, 25 }, + [5] = { 50.9, 84.9, 1637, 25 }, + [6] = { 51.2, 75.1, 1637, 25 }, + [7] = { 52.4, 74, 1637, 25 }, + [8] = { 49.5, 72.1, 1637, 25 }, + [9] = { 52.6, 71.6, 1637, 25 }, + [10] = { 54.6, 69.8, 1637, 25 }, + [11] = { 50.7, 66.1, 1637, 25 }, + }, + }, + [1000254] = { + ["coords"] = { + [1] = { 49.7, 36, 14, 25 }, + [2] = { 48, 16.8, 14, 25 }, + [3] = { 48.1, 16.5, 14, 25 }, + [4] = { 46, 9.2, 14, 25 }, + [5] = { 46, 6.8, 14, 25 }, + [6] = { 46, 6.5, 14, 25 }, + [7] = { 82.8, 55.1, 400, 25 }, + [8] = { 50.9, 84.6, 1637, 25 }, + [9] = { 51, 75.3, 1637, 25 }, + [10] = { 51, 74.2, 1637, 25 }, + [11] = { 52.2, 72.4, 1637, 25 }, + [12] = { 49.7, 72.4, 1637, 25 }, + [13] = { 52.7, 72, 1637, 25 }, + [14] = { 52.6, 70.7, 1637, 25 }, + [15] = { 52.3, 68.8, 1637, 300 }, + [16] = { 50.6, 66.7, 1637, 25 }, + [17] = { 54, 66.5, 1637, 25 }, + [18] = { 48.7, 64.4, 1637, 25 }, + }, + }, + [1000255] = { + ["coords"] = { + [1] = { 53.4, 64.3, 14, 300 }, + }, + }, + [1000256] = { + ["coords"] = { + [1] = { 55, 70.5, 1637, 25 }, + [2] = { 35, 94.2, 3478, 25 }, + }, + }, + [1000257] = { + ["coords"] = { + [1] = { 60.4, 29.1, 12, 25 }, + [2] = { 57, 99.1, 14, 300 }, + [3] = { 58, 25.5, 14, 300 }, + [4] = { 75, 48.8, 17, 300 }, + [5] = { 43.8, 98.4, 28, 300 }, + [6] = { 79.9, 61.7, 28, 25 }, + [7] = { 80.4, 51.2, 36, 300 }, + [8] = { 61, 76.5, 38, 300 }, + [9] = { 21.5, 85.3, 139, 25 }, + [10] = { 43.3, 51.8, 267, 300 }, + [11] = { 97.4, 14.2, 5179, 300 }, + [12] = { 29.8, 83.5, 5602, 300 }, + }, + }, + [1000258] = { + ["coords"] = { + [1] = { 33.8, 49.4, 10, 300 }, + [2] = { 49.2, 60.6, 11, 300 }, + [3] = { 60.3, 29.1, 12, 25 }, + [4] = { 60.3, 29, 12, 25 }, + [5] = { 57, 99.2, 14, 300 }, + [6] = { 58, 25.4, 14, 300 }, + [7] = { 42.7, 73.2, 15, 25 }, + [8] = { 46, 46.1, 15, 300 }, + [9] = { 75, 48.8, 17, 300 }, + [10] = { 43.8, 98.6, 28, 300 }, + [11] = { 79.8, 61.7, 28, 25 }, + [12] = { 81, 60.5, 28, 25 }, + [13] = { 34.2, 18, 28, 0 }, + [14] = { 33.9, 17.9, 28, 0 }, + [15] = { 80.4, 51.4, 36, 300 }, + [16] = { 61, 76.4, 38, 300 }, + [17] = { 90.5, 32.7, 85, 0 }, + [18] = { 90.2, 32.7, 85, 0 }, + [19] = { 21.5, 85.4, 139, 25 }, + [20] = { 22.7, 83.9, 139, 25 }, + [21] = { 43.3, 52, 267, 300 }, + [22] = { 30.8, 36.6, 440, 300 }, + [23] = { 30.8, 36.5, 440, 300 }, + [24] = { 77.8, 64.5, 490, 300 }, + [25] = { 77.8, 64.4, 490, 300 }, + [26] = { 77.8, 64.3, 490, 300 }, + [27] = { 97.4, 14.3, 5179, 300 }, + [28] = { 29.8, 83.4, 5602, 300 }, + [29] = { 6.5, 25.5, 5602, 300 }, + }, + }, + [1000259] = { + ["coords"] = {}, + }, + [1000260] = { + ["coords"] = {}, + }, + [1000261] = { + ["coords"] = {}, + }, + [1000262] = { + ["coords"] = { + [1] = { 35.4, 50.1, 12, 25 }, + [2] = { 35.3, 50.1, 12, 25 }, + [3] = { 58.8, 29.3, 12, 25 }, + [4] = { 58.8, 29.2, 12, 25 }, + [5] = { 58.8, 29.1, 12, 25 }, + [6] = { 80.8, 60.1, 28, 25 }, + [7] = { 22.6, 83.5, 139, 25 }, + [8] = { 44.5, 58.5, 215, 25 }, + [9] = { 44.5, 58.4, 215, 25 }, + [10] = { 50.6, 66.8, 1637, 25 }, + [11] = { 50.7, 66.3, 1637, 25 }, + }, + }, + [1000263] = { + ["coords"] = { + [1] = { 35.4, 50.1, 12, 25 }, + [2] = { 58.8, 29.2, 12, 25 }, + [3] = { 58.8, 29.1, 12, 25 }, + [4] = { 81, 60.5, 28, 25 }, + [5] = { 22.8, 84, 139, 25 }, + [6] = { 22.7, 84, 139, 25 }, + [7] = { 22.7, 83.9, 139, 25 }, + [8] = { 44.5, 58.4, 215, 25 }, + [9] = { 50.6, 66.8, 1637, 25 }, + }, + }, + [1000264] = { + ["coords"] = { + [1] = { 28.9, 73.6, 16, 300 }, + [2] = { 57, 43.9, 409, 300 }, + }, + }, + [1000265] = { + ["coords"] = { + [1] = { 49.9, 49.5, 8, 300 }, + [2] = { 50.3, 48.8, 8, 300 }, + [3] = { 50.1, 48.6, 8, 300 }, + [4] = { 51, 43.2, 8, 300 }, + [5] = { 37.6, 71.4, 14, 300 }, + [6] = { 37.5, 71.3, 14, 300 }, + [7] = { 42.5, 67.9, 14, 300 }, + [8] = { 36.3, 44.1, 17, 300 }, + [9] = { 64.9, 34.3, 17, 300 }, + [10] = { 64.8, 34.3, 17, 300 }, + [11] = { 54.3, 1.3, 17, 300 }, + [12] = { 54.3, 1.2, 17, 300 }, + [13] = { 54.1, 1, 17, 300 }, + [14] = { 54.2, 1, 17, 300 }, + [15] = { 54.1, 0.9, 17, 300 }, + [16] = { 54.2, 0.9, 17, 300 }, + [17] = { 63.5, 10.4, 33, 300 }, + [18] = { 58.6, 76.3, 38, 300 }, + [19] = { 58.8, 76.2, 38, 300 }, + [20] = { 57.9, 76.2, 38, 300 }, + [21] = { 58.4, 76.1, 38, 300 }, + [22] = { 57.9, 75.9, 38, 300 }, + [23] = { 58.3, 74.2, 38, 300 }, + [24] = { 44, 75.8, 215, 300 }, + [25] = { 44.2, 58.6, 215, 25 }, + [26] = { 60.3, 32, 215, 300 }, + [27] = { 79.4, 81.8, 331, 300 }, + [28] = { 79.4, 81.7, 331, 300 }, + [29] = { 79.1, 81.4, 331, 300 }, + [30] = { 79.2, 81.3, 331, 300 }, + [31] = { 79, 81.2, 331, 300 }, + [32] = { 79.2, 81.1, 331, 300 }, + [33] = { 79.8, 80.4, 331, 300 }, + [34] = { 72.5, 58.3, 331, 300 }, + [35] = { 72.2, 57.5, 331, 300 }, + [36] = { 72.2, 57.4, 331, 300 }, + [37] = { 73.2, 56, 331, 300 }, + [38] = { 76, 42.1, 357, 300 }, + [39] = { 43.6, 16.3, 357, 25 }, + [40] = { 43.6, 16.2, 357, 25 }, + [41] = { 43.7, 15.9, 357, 25 }, + [42] = { 51.1, 74, 1637, 25 }, + [43] = { 51.3, 71, 1637, 25 }, + [44] = { 51.4, 70.5, 1637, 25 }, + [45] = { 62.2, 44.5, 1637, 25 }, + [46] = { 63.8, 44.4, 1637, 25 }, + [47] = { 35, 91.5, 3478, 25 }, + [48] = { 28.5, 83.3, 5602, 300 }, + [49] = { 28.6, 83.3, 5602, 300 }, + [50] = { 28.2, 83.3, 5602, 300 }, + [51] = { 28.5, 83.2, 5602, 300 }, + [52] = { 28.2, 83.1, 5602, 300 }, + [53] = { 28.4, 82.3, 5602, 300 }, + }, + }, + [1000266] = { + ["coords"] = {}, + }, + [1000267] = { + ["coords"] = {}, + }, + [1000268] = { + ["coords"] = { + [1] = { 51.3, 27.6, 11, 0 }, + [2] = { 8.1, 0.1, 5602, 0 }, + }, + }, + [1000269] = { + ["coords"] = {}, + }, + [1000270] = { + ["coords"] = {}, + }, + [1000271] = { + ["coords"] = {}, + }, + [1000272] = { + ["coords"] = { + [1] = { 35.3, 50.2, 12, 25 }, + [2] = { 35.3, 50.1, 12, 25 }, + [3] = { 44.5, 58.5, 215, 25 }, + [4] = { 44.6, 58.4, 215, 25 }, + }, + }, + [1000273] = { + ["coords"] = { + [1] = { 79.3, 62.6, 28, 25 }, + [2] = { 79.8, 61.6, 28, 25 }, + [3] = { 20.8, 86.3, 139, 25 }, + [4] = { 21.5, 85.2, 139, 25 }, + }, + }, + [1000274] = { + ["coords"] = {}, + }, + [1000275] = { + ["coords"] = { + [1] = { 27, 35.7, 1, 300 }, + [2] = { 49.4, 35.4, 14, 25 }, + [3] = { 43, 73.3, 15, 300 }, + [4] = { 96.8, 63.7, 721, 300 }, + [5] = { 37.4, 92.9, 3478, 25 }, + }, + }, + [1000276] = { + ["coords"] = { + [1] = { 41, 77.3, 41, 25 }, + }, + }, + [1000277] = { + ["coords"] = {}, + }, + [1000278] = { + ["coords"] = { + [1] = { 64.5, 15.9, 4, 300 }, + [2] = { 64.3, 15.9, 4, 300 }, + [3] = { 53.3, 30, 618, 300 }, + }, + }, + [1000279] = { + ["coords"] = {}, + }, + [1000280] = { + ["coords"] = { + [1] = { 47, 52.4, 331, 25 }, + }, + }, + [1000281] = { + ["coords"] = { + [1] = { 46.6, 52.7, 331, 25 }, + }, + }, + [1000282] = { + ["coords"] = {}, + }, + [1000283] = { + ["coords"] = { + [1] = { 46.8, 52.4, 331, 25 }, + }, + }, + [1000284] = { + ["coords"] = {}, + }, + [1000285] = { + ["coords"] = {}, + }, + [1000286] = { + ["coords"] = {}, + }, + [1000287] = { + ["coords"] = {}, + }, + [1000288] = { + ["coords"] = {}, + }, + [1000289] = { + ["coords"] = {}, + }, + [1000290] = { + ["coords"] = {}, + }, + [1000291] = { + ["coords"] = { + [1] = { 41.6, 66.1, 1519, 300 }, + }, + }, + [1000292] = { + ["coords"] = {}, + }, + [1000293] = { + ["coords"] = {}, + }, + [1000294] = { + ["coords"] = {}, + }, + [1000295] = { + ["coords"] = {}, + }, + [1000296] = { + ["coords"] = {}, + }, + [1000300] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [1000302] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [1000307] = { + ["coords"] = { + [1] = { 35.4, 50.1, 12, 25 }, + [2] = { 10.9, 47, 47, 300 }, + [3] = { 44.5, 58.5, 215, 25 }, + [4] = { 44.5, 58.4, 215, 25 }, + [5] = { 95.7, 6.5, 267, 300 }, + }, + }, + [1000308] = { + ["coords"] = {}, + }, + [1000309] = { + ["coords"] = { + [1] = { 35.2, 91.7, 3478, 25 }, + }, + }, + [1000310] = { + ["coords"] = { + [1] = { 43.2, 80.4, 33, 300 }, + [2] = { 82.8, 53.9, 400, 25 }, + [3] = { 68.3, 26.3, 1637, 25 }, + [4] = { 38.7, 69.3, 5561, 300 }, + }, + }, + [1000311] = { + ["coords"] = {}, + }, + [1000312] = { + ["coords"] = { + [1] = { 61.8, 74.5, 1519, 0 }, + }, + }, + [1000313] = { + ["coords"] = {}, + }, + [1000314] = { + ["coords"] = { + [1] = { 65.3, 25.9, 1637, 25 }, + }, + }, + [1000315] = { + ["coords"] = { + [1] = { 44.5, 58.2, 215, 25 }, + }, + }, + [1000316] = { + ["coords"] = { + [1] = { 64.8, 23.1, 33, 300 }, + [2] = { 60.5, 14.6, 33, 300 }, + [3] = { 64.5, 11.6, 33, 300 }, + [4] = { 51.1, 25, 45, 300 }, + }, + }, + [1000317] = { + ["coords"] = { + [1] = { 80.1, 59.3, 28, 25 }, + [2] = { 21.8, 82.7, 139, 25 }, + }, + }, + [1000318] = { + ["coords"] = { + [1] = { 9.2, 24.2, 139, 300 }, + [2] = { 55.6, 57.7, 141, 300 }, + [3] = { 55.7, 57.6, 141, 300 }, + [4] = { 41.9, 70.5, 2040, 25 }, + [5] = { 38.9, 64, 2040, 25 }, + [6] = { 49.9, 86.2, 5225, 300 }, + [7] = { 57.7, 35.6, 5225, 25 }, + [8] = { 56.3, 32.5, 5225, 25 }, + }, + }, + [1000319] = { + ["coords"] = { + [1] = { 62.7, 35.6, 4012, 300 }, + [2] = { 62, 34.8, 4012, 300 }, + }, + }, + [1000320] = { + ["coords"] = {}, + }, + [1000321] = { + ["coords"] = {}, + }, + [1000322] = { + ["coords"] = {}, + }, + [1000323] = { + ["coords"] = {}, + }, + [1000324] = { + ["coords"] = {}, + }, + [1000325] = { + ["coords"] = {}, + }, + [1000326] = { + ["coords"] = {}, + }, + [1000327] = { + ["coords"] = {}, + }, + [1000328] = { + ["coords"] = {}, + }, + [1000329] = { + ["coords"] = {}, + }, + [1000330] = { + ["coords"] = {}, + }, + [1000333] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [1000334] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [1000335] = { + ["coords"] = {}, + }, + [1000336] = { + ["coords"] = {}, + }, + [1000337] = { + ["coords"] = {}, + }, + [1000338] = { + ["coords"] = {}, + }, + [1000339] = { + ["coords"] = {}, + }, + [1000340] = { + ["coords"] = {}, + }, + [1000341] = { + ["coords"] = {}, + }, + [1000342] = { + ["coords"] = {}, + }, + [1000343] = { + ["coords"] = {}, + }, + [1000344] = { + ["coords"] = {}, + }, + [1000345] = { + ["coords"] = {}, + }, + [1000346] = { + ["coords"] = {}, + }, + [1000347] = { + ["coords"] = {}, + }, + [1000348] = { + ["coords"] = {}, + }, + [1000349] = { + ["coords"] = {}, + }, + [1000350] = { + ["coords"] = {}, + }, + [1000351] = { + ["coords"] = {}, + }, + [1000352] = { + ["coords"] = {}, + }, + [1000353] = { + ["coords"] = {}, + }, + [1000354] = { + ["coords"] = {}, + }, + [1000355] = { + ["coords"] = {}, + }, + [1000356] = { + ["coords"] = {}, + }, + [1000357] = { + ["coords"] = {}, + }, + [1000358] = { + ["coords"] = {}, + }, + [1000359] = { + ["coords"] = {}, + }, + [1000360] = { + ["coords"] = {}, + }, + [1000361] = { + ["coords"] = {}, + }, + [1000362] = { + ["coords"] = {}, + }, + [1000363] = { + ["coords"] = {}, + }, + [1000364] = { + ["coords"] = {}, + }, + [1000365] = { + ["coords"] = {}, + }, + [1000366] = { + ["coords"] = { + [1] = { 64.7, 34.7, 17, 300 }, + }, + }, + [1000370] = { + ["coords"] = { + [1] = { 32.8, 83, 12, 1800 }, + [2] = { 32.7, 82.8, 12, 1800 }, + [3] = { 69.4, 80.8, 12, 1800 }, + [4] = { 69.7, 80.3, 12, 1800 }, + [5] = { 70.1, 79.1, 12, 1800 }, + [6] = { 69.6, 79.1, 12, 1800 }, + [7] = { 69.3, 79, 12, 1800 }, + [8] = { 68.9, 78.6, 12, 1800 }, + [9] = { 40.7, 63.8, 12, 1800 }, + [10] = { 40.9, 63.7, 12, 1800 }, + [11] = { 40.6, 63.7, 12, 1800 }, + [12] = { 28.2, 99.3, 36, 1800 }, + [13] = { 28.4, 99.2, 36, 1800 }, + [14] = { 37, 51.8, 85, 1800 }, + [15] = { 35.7, 51.4, 85, 1800 }, + [16] = { 35.2, 51.1, 85, 1800 }, + [17] = { 37.3, 50.9, 85, 1800 }, + [18] = { 37.1, 50.9, 85, 1800 }, + [19] = { 35.8, 50.4, 85, 1800 }, + [20] = { 37.3, 48.9, 85, 1800 }, + [21] = { 33.5, 35.9, 267, 1800 }, + [22] = { 33.5, 35.8, 267, 1800 }, + [23] = { 33.7, 35.6, 267, 1800 }, + [24] = { 33.8, 35.6, 267, 1800 }, + [25] = { 33.5, 35.3, 267, 1800 }, + [26] = { 33.7, 35.2, 267, 1800 }, + [27] = { 88.9, 0.3, 5179, 1800 }, + [28] = { 88.9, 0.2, 5179, 1800 }, + [29] = { 89.1, 0.1, 5179, 1800 }, + [30] = { 89.1, 0, 5179, 1800 }, + }, + }, + [1000371] = { + ["coords"] = { + [1] = { 77.5, 65.7, 47, 1800 }, + [2] = { 35.2, 62.2, 47, 1800 }, + [3] = { 50.9, 60.5, 47, 1800 }, + [4] = { 32.8, 59.4, 47, 1800 }, + [5] = { 37.3, 58.5, 47, 1800 }, + [6] = { 31.8, 58.5, 47, 1800 }, + [7] = { 29.7, 58, 47, 1800 }, + [8] = { 31.2, 57.9, 47, 1800 }, + [9] = { 20.1, 57.9, 47, 1800 }, + [10] = { 34.2, 57.4, 47, 1800 }, + [11] = { 52.6, 57.2, 47, 1800 }, + [12] = { 22.3, 56.9, 47, 1800 }, + [13] = { 18.1, 56.5, 47, 1800 }, + [14] = { 41.1, 56.4, 47, 1800 }, + [15] = { 16.4, 54.3, 47, 1800 }, + [16] = { 12.5, 54, 47, 1800 }, + [17] = { 24.7, 53.5, 47, 1800 }, + [18] = { 29.1, 52.3, 47, 1800 }, + [19] = { 67.6, 52.2, 47, 1800 }, + [20] = { 29.1, 50.9, 47, 1800 }, + [21] = { 17.6, 48.1, 47, 1800 }, + [22] = { 31.9, 48, 47, 1800 }, + [23] = { 14.1, 47.2, 47, 1800 }, + [24] = { 19.1, 47.2, 47, 1800 }, + [25] = { 33.8, 47.1, 47, 1800 }, + [26] = { 18, 44.7, 47, 1800 }, + [27] = { 97.6, 14.9, 267, 1800 }, + [28] = { 99.5, 6.8, 267, 1800 }, + }, + }, + [1000372] = { + ["coords"] = { + [1] = { 33, 86.9, 12, 1800 }, + [2] = { 32.9, 86.4, 12, 1800 }, + [3] = { 32.7, 86.2, 12, 1800 }, + [4] = { 32.1, 86.1, 12, 1800 }, + [5] = { 32.8, 85.1, 12, 1800 }, + [6] = { 32.2, 85.1, 12, 1800 }, + [7] = { 32.8, 84.7, 12, 1800 }, + [8] = { 31.9, 84.6, 12, 1800 }, + [9] = { 32.6, 84.3, 12, 1800 }, + [10] = { 66.9, 89, 14, 1800 }, + [11] = { 65.5, 87.8, 14, 1800 }, + [12] = { 67.6, 87, 14, 1800 }, + [13] = { 64.4, 83.1, 14, 1800 }, + [14] = { 64.2, 82.7, 14, 1800 }, + [15] = { 64.5, 81, 14, 1800 }, + [16] = { 48.2, 16, 14, 1800 }, + [17] = { 48.1, 15.9, 14, 1800 }, + [18] = { 80.2, 43.5, 17, 1800 }, + [19] = { 79.4, 42.9, 17, 1800 }, + [20] = { 80.5, 42.5, 17, 1800 }, + [21] = { 78.8, 40.5, 17, 1800 }, + [22] = { 46.5, 37.8, 17, 1800 }, + [23] = { 46.7, 37.5, 17, 1800 }, + [24] = { 46.6, 37.1, 17, 1800 }, + [25] = { 43.4, 24.8, 17, 1800 }, + [26] = { 43.9, 23.6, 17, 1800 }, + [27] = { 44.9, 22, 17, 1800 }, + [28] = { 54, 20.9, 17, 1800 }, + [29] = { 20.4, 47.2, 44, 1800 }, + [30] = { 20.6, 46.9, 44, 1800 }, + [31] = { 20.2, 46.3, 44, 1800 }, + [32] = { 20.2, 46, 44, 1800 }, + [33] = { 40.3, 16.1, 215, 1800 }, + }, + }, + [1000380] = { + ["coords"] = { + [1] = { 42.7, 72.4, 12, 2000 }, + [2] = { 40.9, 69.7, 12, 2000 }, + [3] = { 50.7, 67, 12, 2000 }, + [4] = { 42.8, 66.5, 12, 2000 }, + [5] = { 44.2, 65.9, 12, 1000 }, + [6] = { 44.3, 65.9, 12, 2000 }, + [7] = { 44.3, 65.9, 12, 1000 }, + [8] = { 44.2, 65.9, 12, 2000 }, + [9] = { 44.3, 65.8, 12, 2000 }, + [10] = { 44.3, 65.8, 12, 1000 }, + [11] = { 46.5, 62, 12, 2000 }, + [12] = { 34.1, 57.5, 12, 2000 }, + [13] = { 51.2, 42.3, 14, 300 }, + [14] = { 53.1, 41.9, 14, 300 }, + [15] = { 51.5, 41.6, 14, 300 }, + }, + }, + [1000381] = { + ["coords"] = { + [1] = { 43.4, 64.4, 12, 25 }, + [2] = { 43.5, 64.4, 12, 25 }, + [3] = { 43.5, 64.3, 12, 25 }, + }, + }, + [1000383] = { + ["coords"] = { + [1] = { 33.9, 44, 85, 25 }, + }, + }, + [1000385] = { + ["coords"] = { + [1] = { 35.2, 92.9, 3478, 25 }, + [2] = { 35.2, 92.4, 3478, 25 }, + [3] = { 36.2, 92.1, 3478, 25 }, + }, + }, + [1000386] = { + ["coords"] = {}, + }, + [1000388] = { + ["coords"] = { + [1] = { 37.3, 91.1, 3478, 25 }, + }, + }, + [1000389] = { + ["coords"] = { + [1] = { 47.8, 33.2, 14, 25 }, + [2] = { 48.8, 32.5, 14, 25 }, + [3] = { 49.7, 32.3, 14, 25 }, + [4] = { 47.4, 30.9, 14, 25 }, + [5] = { 47.2, 29.6, 14, 25 }, + [6] = { 35.1, 10.5, 45, 25 }, + [7] = { 14.4, 72.2, 47, 25 }, + }, + }, + [1000390] = { + ["coords"] = {}, + }, + [1000391] = { + ["coords"] = { + [1] = { 18.9, 56.3, 10, 300 }, + [2] = { 32.1, 49, 10, 300 }, + [3] = { 80.8, 63.1, 28, 300 }, + [4] = { 29.4, 44.5, 28, 300 }, + [5] = { 85.9, 57.9, 85, 300 }, + [6] = { 22.5, 86.9, 139, 300 }, + }, + ["fac"] = "AH", + }, + [1000395] = { + ["coords"] = { + [1] = { 44.3, 26.2, 141, 5 }, + [2] = { 44.3, 26.2, 141, 25 }, + }, + }, + [1000396] = { + ["coords"] = { + [1] = { 36.5, 35.4, 5148, 604800 }, + }, + }, + [1000400] = { + ["coords"] = { + [1] = { 48.1, 8.2, 17, 300 }, + }, + }, + [1000450] = { + ["coords"] = {}, + }, + [1000451] = { + ["coords"] = {}, + }, + [1000456] = { + ["coords"] = {}, + }, + [1000457] = { + ["coords"] = { + [1] = { 45.9, 85.6, 17, 300 }, + }, + }, + [1000458] = { + ["coords"] = {}, + }, + [1000459] = { + ["coords"] = { + [1] = { 35.2, 70.8, 1519, 300 }, + }, + }, + [1000460] = { + ["coords"] = {}, + }, + [1000461] = { + ["coords"] = {}, + }, + [1000462] = { + ["coords"] = {}, + }, + [1000463] = { + ["coords"] = {}, + }, + [1000464] = { + ["coords"] = { + [1] = { 77.2, 10.4, 1637, 300 }, + }, + }, + [1000500] = { + ["coords"] = { + [1] = { 64.7, 70.5, 11, 300 }, + [2] = { 18.5, 33.1, 5602, 300 }, + }, + }, + [1000501] = { + ["coords"] = { + [1] = { 32.2, 33, 36, 30 }, + }, + }, + [1000502] = { + ["coords"] = { + [1] = { 30.4, 32.3, 33, 30 }, + }, + }, + [1000503] = { + ["coords"] = { + [1] = { 73.7, 48.4, 440, 30 }, + [2] = { 3.9, 41.9, 5121, 30 }, + }, + }, + [1000504] = { + ["coords"] = { + [1] = { 58.7, 25.8, 14, 300 }, + }, + ["fac"] = "H", + }, + [1000510] = { + ["coords"] = { + [1] = { 50.7, 19.3, 717, 5 }, + }, + }, + [1000511] = { + ["coords"] = { + [1] = { 10.3, 60.7, 11, 1 }, + }, + }, + [1000512] = { + ["coords"] = {}, + }, + [1100000] = { + ["coords"] = {}, + }, + [1100001] = { + ["coords"] = {}, + }, + [1771652] = { + ["coords"] = {}, + }, + [1771653] = { + ["coords"] = {}, + }, + [1772000] = { + ["coords"] = { + [1] = { 55.7, 87.9, 3, 120 }, + [2] = { 55.5, 87.9, 3, 120 }, + [3] = { 55.7, 87.6, 3, 120 }, + [4] = { 54.4, 80.7, 3, 120 }, + [5] = { 54.3, 80.3, 3, 120 }, + [6] = { 51.7, 72.2, 3, 120 }, + [7] = { 51.4, 72.1, 3, 120 }, + [8] = { 51.6, 71.7, 3, 120 }, + [9] = { 49.6, 69.3, 3, 120 }, + [10] = { 50.5, 67.8, 3, 120 }, + [11] = { 60.6, 64.5, 3, 120 }, + [12] = { 60.9, 64.4, 3, 120 }, + [13] = { 60.7, 64, 3, 120 }, + [14] = { 62.2, 54.9, 3, 120 }, + [15] = { 62.1, 53.9, 3, 120 }, + [16] = { 56.7, 47.4, 3, 120 }, + [17] = { 57, 47.2, 3, 120 }, + [18] = { 56.7, 47.1, 3, 120 }, + [19] = { 54.4, 43.4, 3, 120 }, + [20] = { 54.3, 43.1, 3, 120 }, + }, + }, + [1772001] = { + ["coords"] = { + [1] = { 62.5, 60.6, 14, 60 }, + [2] = { 63.6, 57.6, 14, 60 }, + [3] = { 63.3, 56.6, 14, 60 }, + [4] = { 61.3, 50.9, 14, 60 }, + [5] = { 63.8, 50.7, 14, 60 }, + [6] = { 64, 50, 14, 60 }, + [7] = { 64.5, 49.5, 14, 60 }, + [8] = { 62, 46.3, 14, 60 }, + [9] = { 62, 45.2, 14, 60 }, + }, + }, + [1772003] = { + ["coords"] = { + [1] = { 44, 25.6, 17, 300 }, + [2] = { 45.2, 25.3, 17, 300 }, + [3] = { 45.9, 24.5, 17, 300 }, + [4] = { 45.1, 24.1, 17, 300 }, + [5] = { 44.1, 23.9, 17, 300 }, + [6] = { 45.2, 23.1, 17, 300 }, + [7] = { 45.7, 22.7, 17, 300 }, + [8] = { 44.4, 22.6, 17, 300 }, + [9] = { 44.3, 22.6, 17, 300 }, + [10] = { 44.5, 22.2, 17, 300 }, + [11] = { 45.7, 21.8, 17, 300 }, + [12] = { 44.6, 21.5, 17, 300 }, + [13] = { 45, 21.3, 17, 300 }, + [14] = { 45, 20.9, 17, 300 }, + [15] = { 43.8, 20.8, 17, 300 }, + }, + }, + [1772004] = { + ["coords"] = { + [1] = { 46.5, 42.1, 17, 300 }, + [2] = { 47.1, 42, 17, 300 }, + [3] = { 47.2, 41.5, 17, 300 }, + [4] = { 47.5, 40.6, 17, 300 }, + [5] = { 48.3, 40.6, 17, 300 }, + [6] = { 45.4, 40.1, 17, 300 }, + [7] = { 45.7, 39.9, 17, 300 }, + [8] = { 48.7, 39.9, 17, 300 }, + [9] = { 44.9, 39.4, 17, 300 }, + [10] = { 45.8, 38.5, 17, 300 }, + [11] = { 45.2, 38.4, 17, 300 }, + [12] = { 46.2, 38.1, 17, 300 }, + [13] = { 45.7, 37.8, 17, 300 }, + [14] = { 47.3, 37.3, 17, 300 }, + [15] = { 47.7, 37.1, 17, 300 }, + [16] = { 46.6, 37.1, 17, 300 }, + [17] = { 46.8, 36.8, 17, 300 }, + }, + }, + [1772005] = { + ["coords"] = { + [1] = { 54.4, 44.9, 17, 300 }, + [2] = { 54.7, 44.9, 17, 300 }, + [3] = { 55.6, 44.6, 17, 300 }, + [4] = { 54.2, 44.3, 17, 300 }, + [5] = { 55.2, 44.1, 17, 300 }, + [6] = { 53.4, 44, 17, 300 }, + [7] = { 53.1, 43.9, 17, 300 }, + [8] = { 56.1, 43.6, 17, 300 }, + [9] = { 53.2, 43.5, 17, 300 }, + [10] = { 56.3, 43.4, 17, 300 }, + [11] = { 56.2, 43.2, 17, 300 }, + [12] = { 56.5, 42.8, 17, 300 }, + [13] = { 55.1, 42.5, 17, 300 }, + [14] = { 56.3, 42.2, 17, 300 }, + [15] = { 55.8, 42, 17, 300 }, + [16] = { 55, 42, 17, 300 }, + [17] = { 56.7, 41.8, 17, 300 }, + [18] = { 56.8, 41.4, 17, 300 }, + [19] = { 56.8, 41.2, 17, 300 }, + [20] = { 56.6, 40.6, 17, 300 }, + [21] = { 54.6, 40.3, 17, 300 }, + [22] = { 56.1, 40, 17, 300 }, + [23] = { 55.6, 39.8, 17, 300 }, + [24] = { 55.2, 39.8, 17, 300 }, + }, + }, + [1772010] = { + ["coords"] = { + [1] = { 65.3, 68.1, 1519, 0 }, + }, + }, + [1772011] = { + ["coords"] = { + [1] = { 65.3, 68, 1519, 0 }, + }, + }, + [1772012] = { + ["coords"] = { + [1] = { 65.2, 67.9, 1519, 0 }, + }, + }, + [1772013] = { + ["coords"] = { + [1] = { 65.2, 67.9, 1519, 0 }, + }, + }, + [1772014] = { + ["coords"] = { + [1] = { 62.4, 71.4, 1519, 300 }, + [2] = { 65.2, 67.9, 1519, 0 }, + }, + }, + [1772015] = { + ["coords"] = { + [1] = { 65.2, 68, 1519, 0 }, + }, + }, + [1772016] = { + ["coords"] = {}, + }, + [1772020] = { + ["coords"] = { + [1] = { 65.1, 50.5, 440, 0 }, + [2] = { 75.1, 19.5, 1941, 0 }, + }, + ["fac"] = "AH", + }, + [1772021] = { + ["coords"] = {}, + }, + [1772022] = { + ["coords"] = {}, + }, + [1772023] = { + ["coords"] = {}, + }, + [1772024] = { + ["coords"] = {}, + }, + [1772025] = { + ["coords"] = {}, + }, + [1772027] = { + ["coords"] = { + [1] = { 94, 55.3, 46, 300 }, + }, + ["fac"] = "AH", + }, + [1772028] = { + ["coords"] = {}, + }, + [1772030] = { + ["coords"] = { + [1] = { 47.4, 19.1, 5602, 300 }, + }, + }, + [1772031] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [1872030] = { + ["coords"] = { + [1] = { 28.1, 28.3, 5179, 300 }, + }, + ["fac"] = "AH", + }, + [2000001] = { + ["coords"] = { + [1] = { 54.6, 57.7, 5087, 300 }, + [2] = { 53.8, 35.6, 5130, 300 }, + }, + }, + [2000002] = { + ["coords"] = {}, + }, + [2000003] = { + ["coords"] = {}, + }, + [2000004] = { + ["coords"] = {}, + }, + [2000005] = { + ["coords"] = {}, + }, + [2000006] = { + ["coords"] = {}, + }, + [2000007] = { + ["coords"] = {}, + }, + [2000008] = { + ["coords"] = {}, + }, + [2000009] = { + ["coords"] = {}, + }, + [2000010] = { + ["coords"] = {}, + }, + [2000011] = { + ["coords"] = {}, + }, + [2000012] = { + ["coords"] = {}, + }, + [2000013] = { + ["coords"] = {}, + }, + [2000014] = { + ["coords"] = {}, + }, + [2000015] = { + ["coords"] = {}, + }, + [2000016] = { + ["coords"] = {}, + }, + [2000017] = { + ["coords"] = {}, + }, + [2000018] = { + ["coords"] = {}, + }, + [2000019] = { + ["coords"] = { + [1] = { 39.7, 38.7, 8, 300 }, + [2] = { 49.2, 61, 11, 300 }, + [3] = { 61.5, 24.3, 17, 300 }, + [4] = { 74.4, 32, 45, 300 }, + [5] = { 79.7, 25.2, 85, 300 }, + [6] = { 20.7, 48.2, 267, 300 }, + [7] = { 50.2, 63.3, 406, 300 }, + [8] = { 37, 51.3, 406, 300 }, + [9] = { 53.3, 30, 618, 300 }, + [10] = { 42.8, 54.1, 1537, 300 }, + [11] = { 52.4, 69.7, 1637, 300 }, + [12] = { 77.7, 11, 5179, 300 }, + [13] = { 6.6, 25.8, 5602, 300 }, + }, + }, + [2000020] = { + ["coords"] = {}, + }, + [2000021] = { + ["coords"] = {}, + }, + [2000022] = { + ["coords"] = {}, + }, + [2000023] = { + ["coords"] = {}, + }, + [2000024] = { + ["coords"] = {}, + }, + [2000025] = { + ["coords"] = {}, + }, + [2000026] = { + ["coords"] = {}, + }, + [2000027] = { + ["coords"] = {}, + }, + [2000028] = { + ["coords"] = { + [1] = { 36.1, 32.9, 17, 300 }, + [2] = { 48.7, 9.8, 17, 300 }, + [3] = { 60, 9.8, 215, 300 }, + }, + }, + [2000029] = { + ["coords"] = {}, + }, + [2000030] = { + ["coords"] = {}, + }, + [2000031] = { + ["coords"] = {}, + }, + [2000032] = { + ["coords"] = {}, + }, + [2000033] = { + ["coords"] = {}, + }, + [2000034] = { + ["coords"] = {}, + }, + [2000035] = { + ["coords"] = {}, + }, + [2000036] = { + ["coords"] = {}, + }, + [2000037] = { + ["coords"] = { + [1] = { 64.7, 15.9, 4, 300 }, + [2] = { 29.3, 69.7, 16, 300 }, + [3] = { 29.1, 69.6, 16, 300 }, + [4] = { 29.2, 69.4, 16, 300 }, + [5] = { 27.7, 77.1, 33, 300 }, + [6] = { 82.9, 54.8, 400, 300 }, + [7] = { 82.8, 54.8, 400, 300 }, + [8] = { 83, 54.7, 400, 300 }, + }, + }, + [2000038] = { + ["coords"] = { + [1] = { 79.7, 61.4, 28, 300 }, + [2] = { 81.2, 60.9, 28, 300 }, + [3] = { 33.7, 17.4, 28, 300 }, + [4] = { 59.5, 68.3, 85, 300 }, + [5] = { 59.7, 68.3, 85, 300 }, + [6] = { 59.4, 68.3, 85, 300 }, + [7] = { 89.9, 32.2, 85, 300 }, + [8] = { 21.3, 84.9, 139, 300 }, + [9] = { 22.9, 84.4, 139, 300 }, + [10] = { 60.7, 24, 361, 300 }, + [11] = { 30.9, 89.7, 405, 300 }, + [12] = { 59.5, 33.3, 618, 300 }, + [13] = { 49.4, 30.7, 618, 300 }, + [14] = { 49.3, 30.7, 618, 300 }, + [15] = { 55, 15.3, 1497, 300 }, + [16] = { 56.1, 15.2, 1497, 300 }, + [17] = { 54.5, 15.1, 1497, 300 }, + }, + }, + [2000039] = { + ["coords"] = {}, + }, + [2000040] = { + ["coords"] = {}, + }, + [2000041] = { + ["coords"] = {}, + }, + [2000042] = { + ["coords"] = {}, + }, + [2000043] = { + ["coords"] = { + [1] = { 61.6, 60.8, 2040, 300 }, + [2] = { 67.1, 31, 5225, 300 }, + }, + }, + [2000044] = { + ["coords"] = {}, + }, + [2000045] = { + ["coords"] = {}, + }, + [2000046] = { + ["coords"] = {}, + }, + [2000047] = { + ["coords"] = {}, + }, + [2000048] = { + ["coords"] = { + [1] = { 59.6, 14.7, 33, 300 }, + [2] = { 59.6, 14.6, 33, 300 }, + }, + }, + [2000049] = { + ["coords"] = {}, + }, + [2000050] = { + ["coords"] = {}, + }, + [2000051] = { + ["coords"] = { + [1] = { 37.6, 71.1, 14, 300 }, + [2] = { 51.4, 16, 14, 300 }, + [3] = { 44.6, 14.7, 14, 300 }, + [4] = { 64.9, 34.2, 17, 300 }, + [5] = { 83.5, 55.1, 400, 25 }, + [6] = { 39.4, 11.4, 490, 300 }, + [7] = { 39.4, 10.1, 490, 300 }, + }, + }, + [2000052] = { + ["coords"] = { + [1] = { 33.9, 48.2, 10, 300 }, + [2] = { 29.9, 71, 16, 300 }, + [3] = { 45.6, 83.6, 17, 300 }, + [4] = { 64.7, 34.3, 17, 300 }, + [5] = { 31.6, 49.2, 33, 300 }, + [6] = { 83.1, 54.5, 400, 25 }, + [7] = { 39, 11.4, 490, 300 }, + [8] = { 39.1, 10.2, 490, 300 }, + [9] = { 53.8, 66.2, 1637, 300 }, + }, + }, + [2000053] = { + ["coords"] = { + [1] = { 58.2, 22.4, 440, 300 }, + }, + }, + [2000054] = { + ["coords"] = { + [1] = { 61.6, 12.4, 16, 300 }, + [2] = { 31.7, 48.4, 33, 300 }, + [3] = { 39.2, 10.8, 490, 300 }, + }, + }, + [2000055] = { + ["coords"] = { + [1] = { 61.9, 12.4, 16, 300 }, + [2] = { 38.7, 11.6, 490, 300 }, + [3] = { 38.8, 10.4, 490, 300 }, + }, + }, + [2000056] = { + ["coords"] = { + [1] = { 23.9, 30.7, 1, 300 }, + [2] = { 37.5, 71.5, 14, 300 }, + [3] = { 45.2, 14.4, 14, 300 }, + [4] = { 44.5, 45.3, 16, 300 }, + [5] = { 64.8, 34.4, 17, 300 }, + [6] = { 44.5, 98.5, 28, 300 }, + [7] = { 81.5, 51.3, 36, 300 }, + [8] = { 70.8, 20.7, 721, 300 }, + }, + }, + [2000057] = { + ["coords"] = {}, + }, + [2000058] = { + ["coords"] = { + [1] = { 33.8, 49, 10, 300 }, + [2] = { 58.2, 25.7, 14, 300 }, + [3] = { 77.1, 55.8, 15, 300 }, + [4] = { 43.3, 80.4, 33, 300 }, + [5] = { 43.2, 80.4, 33, 300 }, + [6] = { 31.5, 49, 33, 300 }, + [7] = { 4.7, 61.2, 85, 300 }, + [8] = { 79.1, 56, 85, 300 }, + [9] = { 79.5, 25.7, 85, 300 }, + [10] = { 20.7, 48.4, 267, 300 }, + [11] = { 61.5, 44, 409, 300 }, + [12] = { 68.3, 25.8, 1637, 25 }, + [13] = { 77.7, 11.2, 5179, 300 }, + [14] = { 36.7, 18.7, 5561, 300 }, + }, + }, + [2000059] = { + ["coords"] = {}, + }, + [2000060] = { + ["coords"] = {}, + }, + [2000061] = { + ["coords"] = {}, + }, + [2000062] = { + ["coords"] = { + [1] = { 42.7, 93.1, 17, 300 }, + [2] = { 31.7, 48.5, 33, 300 }, + [3] = { 74.8, 42.6, 357, 300 }, + [4] = { 28.9, 24.1, 400, 300 }, + [5] = { 61.9, 58.3, 1497, 300 }, + [6] = { 58.3, 37.6, 1497, 300 }, + [7] = { 61.4, 32.8, 1497, 300 }, + }, + }, + [2000063] = { + ["coords"] = {}, + }, + [2000064] = { + ["coords"] = { + [1] = { 79, 62.8, 28, 300 }, + [2] = { 79, 62.1, 28, 300 }, + [3] = { 20.6, 86.6, 139, 300 }, + [4] = { 20.5, 85.8, 139, 300 }, + [5] = { 58.2, 37.9, 1497, 300 }, + [6] = { 58.3, 37.4, 1497, 300 }, + [7] = { 58.4, 37.2, 1497, 300 }, + [8] = { 62.1, 32.2, 1497, 300 }, + [9] = { 62.6, 31.8, 1497, 300 }, + [10] = { 28, 15.4, 1519, 300 }, + [11] = { 31.5, 85.7, 5581, 300 }, + }, + }, + [2000065] = { + ["coords"] = { + [1] = { 58, 38.5, 1497, 300 }, + [2] = { 45.8, 43.7, 5179, 300 }, + }, + }, + [2000066] = { + ["coords"] = { + [1] = { 33.5, 49, 10, 300 }, + [2] = { 61.4, 24.2, 17, 300 }, + [3] = { 79, 55.7, 85, 300 }, + [4] = { 43.4, 17.4, 357, 25 }, + [5] = { 61, 44.1, 409, 300 }, + [6] = { 31.4, 36.7, 440, 300 }, + [7] = { 78.9, 64.7, 490, 300 }, + [8] = { 53.3, 29.9, 618, 300 }, + [9] = { 62.4, 31.8, 1497, 300 }, + }, + }, + [2000067] = { + ["coords"] = {}, + }, + [2000068] = { + ["coords"] = {}, + }, + [2000069] = { + ["coords"] = { + [1] = { 62.7, 84.5, 5121, 300 }, + [2] = { 84.4, 78.4, 5208, 300 }, + }, + }, + [2000070] = { + ["coords"] = {}, + }, + [2000071] = { + ["coords"] = {}, + }, + [2000072] = { + ["coords"] = { + [1] = { 24, 28.2, 1, 300 }, + [2] = { 80.9, 71.2, 10, 300 }, + [3] = { 44.2, 45.1, 16, 300 }, + [4] = { 80.8, 63.2, 28, 300 }, + [5] = { 81.2, 60.8, 28, 300 }, + [6] = { 62.1, 77.5, 38, 300 }, + [7] = { 12, 56, 85, 300 }, + [8] = { 60.8, 53.7, 85, 300 }, + [9] = { 22.5, 87, 139, 300 }, + [10] = { 22.9, 84.3, 139, 300 }, + [11] = { 61.2, 44.6, 409, 300 }, + [12] = { 55.9, 48.9, 1497, 300 }, + [13] = { 66.5, 26.3, 1519, 300 }, + [14] = { 52.2, 91.5, 5581, 300 }, + [15] = { 30.4, 84, 5602, 300 }, + }, + }, + [2000073] = { + ["coords"] = {}, + }, + [2000074] = { + ["coords"] = {}, + }, + [2000075] = { + ["coords"] = {}, + }, + [2000076] = { + ["coords"] = { + [1] = { 37, 33.9, 17, 300 }, + [2] = { 36.1, 32.9, 17, 300 }, + [3] = { 48.8, 10.1, 17, 300 }, + [4] = { 61.8, 11.8, 215, 300 }, + [5] = { 60, 9.8, 215, 300 }, + [6] = { 74.5, 42.9, 357, 300 }, + }, + }, + [2000077] = { + ["coords"] = { + [1] = { 43.2, 68.4, 14, 300 }, + [2] = { 61, 24.3, 17, 300 }, + [3] = { 74.6, 42.8, 357, 300 }, + [4] = { 55.2, 56.4, 405, 300 }, + }, + }, + [2000078] = { + ["coords"] = {}, + }, + [2000079] = { + ["coords"] = {}, + }, + [2000080] = { + ["coords"] = { + [1] = { 61.6, 12.4, 16, 300 }, + }, + }, + [2000081] = { + ["coords"] = {}, + }, + [2000082] = { + ["coords"] = {}, + }, + [2000083] = { + ["coords"] = {}, + }, + [2000084] = { + ["coords"] = {}, + }, + [2000085] = { + ["coords"] = {}, + }, + [2000086] = { + ["coords"] = {}, + }, + [2000087] = { + ["coords"] = {}, + }, + [2000088] = { + ["coords"] = {}, + }, + [2000089] = { + ["coords"] = {}, + }, + [2000090] = { + ["coords"] = { + [1] = { 43.6, 43.7, 5179, 300 }, + }, + }, + [2000091] = { + ["coords"] = {}, + }, + [2000092] = { + ["coords"] = {}, + }, + [2000093] = { + ["coords"] = {}, + }, + [2000094] = { + ["coords"] = {}, + }, + [2000095] = { + ["coords"] = {}, + }, + [2000096] = { + ["coords"] = {}, + }, + [2000097] = { + ["coords"] = {}, + }, + [2000098] = { + ["coords"] = {}, + }, + [2000099] = { + ["coords"] = { + [1] = { 33.5, 48.7, 10, 300 }, + [2] = { 61.4, 24.2, 17, 300 }, + [3] = { 44.4, 98.5, 28, 300 }, + [4] = { 79.1, 62.7, 28, 300 }, + [5] = { 79.1, 62.2, 28, 300 }, + [6] = { 81.3, 51.3, 36, 300 }, + [7] = { 42, 10.4, 130, 300 }, + [8] = { 20.7, 86.5, 139, 300 }, + [9] = { 20.6, 85.8, 139, 300 }, + [10] = { 73, 55.7, 331, 300 }, + [11] = { 61, 44.1, 409, 300 }, + [12] = { 31.1, 37.9, 440, 300 }, + [13] = { 31.4, 36.7, 440, 300 }, + [14] = { 78.4, 66.9, 490, 300 }, + [15] = { 78.9, 64.8, 490, 300 }, + [16] = { 28.3, 14.9, 1519, 300 }, + [17] = { 31.7, 85.4, 5581, 300 }, + }, + }, + [2000100] = { + ["coords"] = { + [1] = { 50.9, 50.5, 8, 300 }, + [2] = { 51, 50.5, 8, 300 }, + [3] = { 51, 50.4, 8, 300 }, + [4] = { 51.3, 50, 8, 300 }, + [5] = { 51.2, 49.9, 8, 300 }, + [6] = { 51.3, 49.8, 8, 300 }, + }, + }, + [2000101] = { + ["coords"] = {}, + }, + [2000102] = { + ["coords"] = { + [1] = { 61.9, 56.1, 1497, 300 }, + }, + }, + [2000103] = { + ["coords"] = {}, + }, + [2000104] = { + ["coords"] = { + [1] = { 42.3, 73.2, 15, 25 }, + }, + }, + [2000105] = { + ["coords"] = {}, + }, + [2000106] = { + ["coords"] = {}, + }, + [2000107] = { + ["coords"] = {}, + }, + [2000108] = { + ["coords"] = {}, + }, + [2000109] = { + ["coords"] = {}, + }, + [2000110] = { + ["coords"] = {}, + }, + [2000111] = { + ["coords"] = {}, + }, + [2000112] = { + ["coords"] = {}, + }, + [2000113] = { + ["coords"] = {}, + }, + [2000114] = { + ["coords"] = {}, + }, + [2000115] = { + ["coords"] = { + [1] = { 78.5, 76.4, 38, 25 }, + [2] = { 71.5, 47.6, 1497, 300 }, + [3] = { 38.7, 83.4, 5602, 25 }, + }, + }, + [2000116] = { + ["coords"] = { + [1] = { 29.9, 71, 16, 300 }, + [2] = { 43.5, 39.9, 5087, 300 }, + }, + }, + [2000117] = { + ["coords"] = {}, + }, + [2000118] = { + ["coords"] = {}, + }, + [2000119] = { + ["coords"] = {}, + }, + [2000120] = { + ["coords"] = { + [1] = { 25.5, 30.4, 1, 300 }, + [2] = { 61.3, 24.2, 17, 300 }, + [3] = { 84, 18, 721, 300 }, + [4] = { 73.3, 32.5, 1497, 300 }, + }, + }, + [2000121] = { + ["coords"] = {}, + }, + [2000122] = { + ["coords"] = {}, + }, + [2000123] = { + ["coords"] = {}, + }, + [2000124] = { + ["coords"] = {}, + }, + [2000125] = { + ["coords"] = {}, + }, + [2000126] = { + ["coords"] = {}, + }, + [2000127] = { + ["coords"] = {}, + }, + [2000128] = { + ["coords"] = {}, + }, + [2000129] = { + ["coords"] = {}, + }, + [2000130] = { + ["coords"] = {}, + }, + [2000131] = { + ["coords"] = {}, + }, + [2000132] = { + ["coords"] = {}, + }, + [2000133] = { + ["coords"] = {}, + }, + [2000134] = { + ["coords"] = {}, + }, + [2000135] = { + ["coords"] = {}, + }, + [2000136] = { + ["coords"] = {}, + }, + [2000137] = { + ["coords"] = {}, + }, + [2000138] = { + ["coords"] = {}, + }, + [2000139] = { + ["coords"] = { + [1] = { 80.8, 60.7, 28, 300 }, + [2] = { 22.5, 84.2, 139, 300 }, + [3] = { 61.5, 43.9, 409, 300 }, + [4] = { 61.1, 58.3, 1497, 300 }, + [5] = { 41.8, 67.1, 1519, 300 }, + [6] = { 41.8, 67, 1519, 300 }, + [7] = { 42, 61.3, 1637, 300 }, + }, + }, + [2000140] = { + ["coords"] = {}, + }, + [2000141] = { + ["coords"] = {}, + }, + [2000142] = { + ["coords"] = {}, + }, + [2000143] = { + ["coords"] = {}, + }, + [2000144] = { + ["coords"] = {}, + }, + [2000145] = { + ["coords"] = {}, + }, + [2000146] = { + ["coords"] = {}, + }, + [2000147] = { + ["coords"] = {}, + }, + [2000148] = { + ["coords"] = {}, + }, + [2000149] = { + ["coords"] = { + [1] = { 63.6, 13.7, 33, 300 }, + [2] = { 82.8, 55.1, 400, 300 }, + [3] = { 82.9, 54.9, 400, 300 }, + }, + }, + [2000150] = { + ["coords"] = {}, + }, + [2000151] = { + ["coords"] = { + [1] = { 20.9, 49.1, 267, 300 }, + [2] = { 77.9, 11.9, 5179, 300 }, + }, + }, + [2000152] = { + ["coords"] = {}, + }, + [2000153] = { + ["coords"] = {}, + }, + [2000154] = { + ["coords"] = {}, + }, + [2000155] = { + ["coords"] = {}, + }, + [2000156] = { + ["coords"] = { + [1] = { 23, 8.9, 406, 300 }, + }, + }, + [2000157] = { + ["coords"] = {}, + }, + [2000158] = { + ["coords"] = {}, + }, + [2000159] = { + ["coords"] = {}, + }, + [2000160] = { + ["coords"] = {}, + }, + [2000161] = { + ["coords"] = {}, + }, + [2000162] = { + ["coords"] = { + [1] = { 59, 77.1, 38, 300 }, + [2] = { 36.4, 76.2, 1519, 300 }, + [3] = { 28.8, 83.8, 5602, 300 }, + [4] = { 53.5, 56.6, 5602, 300 }, + }, + }, + [2000163] = { + ["coords"] = { + [1] = { 33.1, 76.2, 5179, 300 }, + [2] = { 33.1, 76, 5179, 300 }, + }, + }, + [2000164] = { + ["coords"] = {}, + }, + [2000165] = { + ["coords"] = {}, + }, + [2000166] = { + ["coords"] = { + [1] = { 44.7, 14.4, 14, 300 }, + [2] = { 43.4, 40.3, 5087, 300 }, + }, + }, + [2000167] = { + ["coords"] = {}, + }, + [2000168] = { + ["coords"] = {}, + }, + [2000169] = { + ["coords"] = {}, + }, + [2000170] = { + ["coords"] = { + [1] = { 80.7, 63.5, 28, 300 }, + [2] = { 59.7, 77.2, 38, 300 }, + [3] = { 28.5, 58.1, 45, 300 }, + [4] = { 22.4, 87.3, 139, 300 }, + [5] = { 44.5, 44.4, 5179, 300 }, + [6] = { 29.1, 83.8, 5602, 300 }, + }, + }, + [2000171] = { + ["coords"] = {}, + }, + [2000172] = { + ["coords"] = { + [1] = { 60.2, 67.7, 85, 300 }, + [2] = { 75.6, 39.7, 1497, 300 }, + [3] = { 74.6, 37.6, 1497, 300 }, + [4] = { 58.4, 12.7, 1497, 300 }, + }, + }, + [2000173] = { + ["coords"] = { + [1] = { 31.2, 66.4, 85, 300 }, + }, + }, + [2000174] = { + ["coords"] = {}, + }, + [2000175] = { + ["coords"] = {}, + }, + [2000176] = { + ["coords"] = {}, + }, + [2000177] = { + ["coords"] = {}, + }, + [2000178] = { + ["coords"] = {}, + }, + [2000179] = { + ["coords"] = {}, + }, + [2000180] = { + ["coords"] = {}, + }, + [2000181] = { + ["coords"] = { + [1] = { 62.5, 58.9, 1497, 300 }, + }, + }, + [2000182] = { + ["coords"] = { + [1] = { 32.7, 47.7, 10, 300 }, + [2] = { 17, 66.3, 46, 300 }, + [3] = { 16.9, 65.8, 46, 300 }, + [4] = { 93.2, 92.6, 5581, 300 }, + [5] = { 93.2, 92.2, 5581, 300 }, + }, + }, + [2000183] = { + ["coords"] = { + [1] = { 43.6, 54.7, 267, 300 }, + [2] = { 97.7, 16.7, 5179, 300 }, + }, + }, + [2000184] = { + ["coords"] = {}, + }, + [2000185] = { + ["coords"] = {}, + }, + [2000186] = { + ["coords"] = {}, + }, + [2000187] = { + ["coords"] = {}, + }, + [2000188] = { + ["coords"] = {}, + }, + [2000189] = { + ["coords"] = {}, + }, + [2000190] = { + ["coords"] = {}, + }, + [2000191] = { + ["coords"] = {}, + }, + [2000192] = { + ["coords"] = {}, + }, + [2000193] = { + ["coords"] = { + [1] = { 81.1, 61.7, 28, 300 }, + [2] = { 22.9, 85.3, 139, 300 }, + }, + }, + [2000194] = { + ["coords"] = {}, + }, + [2000195] = { + ["coords"] = {}, + }, + [2000196] = { + ["coords"] = {}, + }, + [2000197] = { + ["coords"] = {}, + }, + [2000198] = { + ["coords"] = { + [1] = { 79.6, 25.1, 85, 300 }, + [2] = { 27.6, 14.6, 1519, 300 }, + [3] = { 31.3, 85.2, 5581, 300 }, + }, + }, + [2000199] = { + ["coords"] = {}, + }, + [2000200] = { + ["coords"] = {}, + }, + [2000201] = { + ["coords"] = { + [1] = { 37.5, 71.7, 14, 300 }, + [2] = { 37.5, 71.6, 14, 300 }, + [3] = { 37.7, 71.4, 14, 300 }, + [4] = { 64.8, 34.5, 17, 300 }, + [5] = { 64.8, 34.4, 17, 300 }, + [6] = { 64.9, 34.4, 17, 300 }, + }, + }, + [2000202] = { + ["coords"] = {}, + }, + [2000203] = { + ["coords"] = { + [1] = { 51.3, 27.6, 11, 0 }, + [2] = { 51.4, 27.4, 11, 0 }, + [3] = { 68, 48.5, 15, 300 }, + [4] = { 54, 8.8, 15, 300 }, + [5] = { 63.5, 58.5, 17, 300 }, + [6] = { 53.1, 98.8, 36, 300 }, + [7] = { 14.7, 69.4, 85, 300 }, + [8] = { 15.5, 68.7, 85, 300 }, + [9] = { 51.2, 67.3, 85, 300 }, + [10] = { 21, 49.1, 267, 300 }, + [11] = { 66.3, 47.2, 267, 300 }, + [12] = { 55.3, 34.9, 267, 300 }, + [13] = { 44.5, 73.3, 331, 300 }, + [14] = { 80, 39.6, 406, 300 }, + [15] = { 78, 11.8, 5179, 300 }, + [16] = { 8.2, 0.1, 5602, 0 }, + [17] = { 8.2, 0, 5602, 0 }, + }, + }, + [2000204] = { + ["coords"] = {}, + }, + [2000205] = { + ["coords"] = {}, + }, + [2000206] = { + ["coords"] = {}, + }, + [2000207] = { + ["coords"] = {}, + }, + [2000208] = { + ["coords"] = {}, + }, + [2000209] = { + ["coords"] = { + [1] = { 76.9, 85.2, 5208, 300 }, + }, + }, + [2000210] = { + ["coords"] = {}, + }, + [2000211] = { + ["coords"] = { + [1] = { 25.9, 46.6, 28, 300 }, + [2] = { 82.6, 59.9, 85, 300 }, + }, + }, + [2000212] = { + ["coords"] = {}, + }, + [2000213] = { + ["coords"] = {}, + }, + [2000214] = { + ["coords"] = {}, + }, + [2000215] = { + ["coords"] = {}, + }, + [2000216] = { + ["coords"] = {}, + }, + [2000217] = { + ["coords"] = {}, + }, + [2000218] = { + ["coords"] = {}, + }, + [2000219] = { + ["coords"] = {}, + }, + [2000220] = { + ["coords"] = { + [1] = { 84.4, 79.7, 12, 300 }, + [2] = { 58.2, 75.1, 38, 300 }, + [3] = { 79, 55.7, 85, 300 }, + [4] = { 79.6, 25.6, 85, 300 }, + [5] = { 42.4, 51.8, 267, 300 }, + [6] = { 66.9, 47, 267, 300 }, + [7] = { 31.4, 36.7, 440, 300 }, + [8] = { 78.8, 64.7, 490, 300 }, + [9] = { 96.7, 14.2, 5179, 300 }, + [10] = { 28.3, 82.7, 5602, 300 }, + }, + }, + [2000221] = { + ["coords"] = {}, + }, + [2000222] = { + ["coords"] = {}, + }, + [2000223] = { + ["coords"] = {}, + }, + [2000224] = { + ["coords"] = {}, + }, + [2000225] = { + ["coords"] = {}, + }, + [2000226] = { + ["coords"] = {}, + }, + [2000227] = { + ["coords"] = {}, + }, + [2000228] = { + ["coords"] = {}, + }, + [2000229] = { + ["coords"] = {}, + }, + [2000230] = { + ["coords"] = {}, + }, + [2000231] = { + ["coords"] = {}, + }, + [2000232] = { + ["coords"] = {}, + }, + [2000233] = { + ["coords"] = {}, + }, + [2000234] = { + ["coords"] = {}, + }, + [2000235] = { + ["coords"] = {}, + }, + [2000236] = { + ["coords"] = {}, + }, + [2000237] = { + ["coords"] = {}, + }, + [2000238] = { + ["coords"] = {}, + }, + [2000239] = { + ["coords"] = {}, + }, + [2000240] = { + ["coords"] = {}, + }, + [2000241] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [2000242] = { + ["coords"] = {}, + }, + [2000243] = { + ["coords"] = {}, + }, + [2000244] = { + ["coords"] = {}, + }, + [2000245] = { + ["coords"] = {}, + }, + [2000246] = { + ["coords"] = {}, + }, + [2000247] = { + ["coords"] = {}, + }, + [2000248] = { + ["coords"] = {}, + }, + [2000249] = { + ["coords"] = {}, + }, + [2000250] = { + ["coords"] = {}, + }, + [2000251] = { + ["coords"] = {}, + }, + [2000252] = { + ["coords"] = {}, + }, + [2000253] = { + ["coords"] = {}, + }, + [2000254] = { + ["coords"] = { + [1] = { 42, 72.2, 15, 25 }, + }, + }, + [2000255] = { + ["coords"] = { + [1] = { 59.5, 33.3, 618, 300 }, + [2] = { 51.7, 72.3, 1637, 300 }, + [3] = { 52.1, 68.6, 1637, 300 }, + }, + }, + [2000256] = { + ["coords"] = { + [1] = { 39.2, 10.3, 490, 300 }, + }, + }, + [2000257] = { + ["coords"] = { + [1] = { 39.1, 10.4, 490, 300 }, + }, + }, + [2000258] = { + ["coords"] = {}, + }, + [2000259] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [2000260] = { + ["coords"] = { + [1] = { 83.4, 78.9, 12, 300 }, + }, + }, + [2000261] = { + ["coords"] = { + [1] = { 25, 65.3, 16, 300 }, + }, + }, + [2000262] = { + ["coords"] = {}, + }, + [2000263] = { + ["coords"] = {}, + }, + [2000264] = { + ["coords"] = {}, + }, + [2000265] = { + ["coords"] = {}, + }, + [2000266] = { + ["coords"] = {}, + }, + [2000267] = { + ["coords"] = {}, + }, + [2000268] = { + ["coords"] = {}, + }, + [2000269] = { + ["coords"] = {}, + }, + [2000270] = { + ["coords"] = {}, + }, + [2000271] = { + ["coords"] = {}, + }, + [2000272] = { + ["coords"] = {}, + }, + [2000273] = { + ["coords"] = {}, + }, + [2000274] = { + ["coords"] = {}, + }, + [2000275] = { + ["coords"] = {}, + }, + [2000276] = { + ["coords"] = {}, + }, + [2000277] = { + ["coords"] = {}, + }, + [2000278] = { + ["coords"] = {}, + }, + [2000279] = { + ["coords"] = {}, + }, + [2000280] = { + ["coords"] = {}, + }, + [2000281] = { + ["coords"] = {}, + }, + [2000282] = { + ["coords"] = {}, + }, + [2000283] = { + ["coords"] = {}, + }, + [2000284] = { + ["coords"] = {}, + }, + [2000285] = { + ["coords"] = {}, + }, + [2000286] = { + ["coords"] = {}, + }, + [2000287] = { + ["coords"] = {}, + }, + [2000288] = { + ["coords"] = {}, + }, + [2000289] = { + ["coords"] = {}, + }, + [2000290] = { + ["coords"] = {}, + }, + [2000291] = { + ["coords"] = {}, + }, + [2000292] = { + ["coords"] = { + [1] = { 50.1, 45.4, 8, 300 }, + [2] = { 42.3, 68.1, 14, 300 }, + [3] = { 54.4, 1.5, 17, 300 }, + [4] = { 79.5, 82.2, 331, 300 }, + }, + }, + [2000293] = { + ["coords"] = { + [1] = { 56.1, 48.7, 1497, 300 }, + }, + }, + [2000294] = { + ["coords"] = {}, + }, + [2000295] = { + ["coords"] = { + [1] = { 48.8, 61.1, 11, 300 }, + [2] = { 74.8, 51.5, 17, 300 }, + [3] = { 62.2, 39, 17, 300 }, + [4] = { 44.5, 98.2, 28, 300 }, + [5] = { 81.4, 50.9, 36, 300 }, + [6] = { 50.7, 62.4, 357, 300 }, + [7] = { 21.7, 36.4, 1519, 300 }, + [8] = { 28.1, 96.9, 5581, 300 }, + [9] = { 6.3, 25.9, 5602, 300 }, + }, + }, + [2000296] = { + ["coords"] = {}, + }, + [2000297] = { + ["coords"] = {}, + }, + [2000298] = { + ["coords"] = {}, + }, + [2000299] = { + ["coords"] = { + [1] = { 58.4, 41.2, 409, 300 }, + }, + }, + [2000300] = { + ["coords"] = { + [1] = { 58.2, 25.7, 14, 300 }, + [2] = { 57.5, 24.9, 14, 300 }, + [3] = { 44.3, 45.1, 16, 300 }, + [4] = { 31.9, 48.5, 33, 300 }, + [5] = { 34.9, 9.9, 45, 300 }, + [6] = { 16.9, 66.3, 46, 300 }, + [7] = { 14.2, 71.6, 47, 300 }, + [8] = { 11.1, 46.7, 47, 300 }, + [9] = { 21.8, 68, 85, 300 }, + [10] = { 4.7, 61.3, 85, 300 }, + [11] = { 17.4, 49.3, 85, 300 }, + [12] = { 95.9, 6.2, 267, 300 }, + [13] = { 49.2, 30.5, 618, 300 }, + [14] = { 51.3, 29.5, 618, 300 }, + [15] = { 51.2, 71, 1637, 300 }, + [16] = { 36.6, 19, 5561, 300 }, + [17] = { 93.2, 92.6, 5581, 300 }, + }, + }, + [2000301] = { + ["coords"] = { + [1] = { 61.3, 58.3, 1497, 300 }, + [2] = { 55.9, 49.1, 1497, 300 }, + [3] = { 41.5, 67.7, 1519, 300 }, + [4] = { 27.5, 68.6, 2040, 300 }, + [5] = { 50.9, 34.6, 5225, 300 }, + }, + }, + [2000302] = { + ["coords"] = {}, + }, + [2000303] = { + ["coords"] = {}, + }, + [2000304] = { + ["coords"] = {}, + }, + [2000305] = { + ["coords"] = { + [1] = { 59.4, 68, 85, 300 }, + [2] = { 54.7, 13.8, 1497, 300 }, + }, + }, + [2000306] = { + ["coords"] = { + [1] = { 48.7, 60.8, 11, 300 }, + [2] = { 74.8, 51.4, 17, 300 }, + [3] = { 34.1, 21.6, 28, 0 }, + [4] = { 58, 75.5, 38, 300 }, + [5] = { 17.9, 64.5, 46, 300 }, + [6] = { 90.4, 36.2, 85, 0 }, + [7] = { 22.8, 37.4, 1519, 300 }, + [8] = { 21.9, 37.1, 1519, 300 }, + [9] = { 28.7, 97.5, 5581, 300 }, + [10] = { 28.3, 97.3, 5581, 300 }, + [11] = { 94.1, 91.1, 5581, 300 }, + [12] = { 28.2, 82.9, 5602, 300 }, + [13] = { 6.1, 25.7, 5602, 300 }, + }, + }, + [2000307] = { + ["coords"] = { + [1] = { 64.5, 15.6, 4, 300 }, + [2] = { 64.4, 15.5, 4, 300 }, + [3] = { 28.1, 58.3, 141, 300 }, + [4] = { 60.7, 23.9, 361, 300 }, + [5] = { 60.6, 23.8, 361, 300 }, + [6] = { 60.4, 23.7, 361, 300 }, + [7] = { 60.4, 23.6, 361, 300 }, + [8] = { 72.4, 53.3, 1497, 300 }, + [9] = { 75, 52.6, 1497, 300 }, + [10] = { 75, 52.4, 1497, 300 }, + [11] = { 74.4, 39.6, 1497, 300 }, + [12] = { 52.5, 54.8, 1657, 300 }, + }, + }, + [2000308] = { + ["coords"] = { + [1] = { 27.6, 77.1, 33, 300 }, + }, + }, + [2000309] = { + ["coords"] = { + [1] = { 43.3, 80.4, 33, 300 }, + }, + }, + [2000310] = { + ["coords"] = { + [1] = { 75.7, 84.3, 5208, 300 }, + [2] = { 75.7, 83.8, 5208, 300 }, + }, + }, + [2000311] = { + ["coords"] = { + [1] = { 62.7, 22.2, 33, 300 }, + }, + }, + [2000312] = { + ["coords"] = { + [1] = { 82.2, 59.7, 85, 300 }, + [2] = { 82.5, 59.3, 85, 300 }, + [3] = { 82.5, 59.2, 85, 300 }, + }, + }, + [2000313] = { + ["coords"] = { + [1] = { 25.6, 46.8, 28, 300 }, + [2] = { 25.6, 46.5, 28, 300 }, + [3] = { 82.3, 60.2, 85, 300 }, + [4] = { 82.3, 59.8, 85, 300 }, + [5] = { 86.6, 57.3, 85, 300 }, + }, + }, + [2000314] = { + ["coords"] = {}, + }, + [2000315] = { + ["coords"] = {}, + }, + [2000316] = { + ["coords"] = {}, + }, + [2000317] = { + ["coords"] = {}, + }, + [2000318] = { + ["coords"] = { + [1] = { 49, 60.3, 11, 300 }, + [2] = { 44.7, 14.4, 14, 300 }, + [3] = { 51.2, 24.8, 45, 300 }, + [4] = { 35, 10.4, 45, 300 }, + [5] = { 29.5, 85.5, 47, 300 }, + [6] = { 14.3, 72.1, 47, 300 }, + [7] = { 42.1, 53.4, 267, 300 }, + [8] = { 60.3, 44.4, 409, 300 }, + [9] = { 96.4, 15.5, 5179, 300 }, + [10] = { 6.4, 25.3, 5602, 300 }, + }, + }, + [2000319] = { + ["coords"] = {}, + }, + [2000320] = { + ["coords"] = {}, + }, + [2000321] = { + ["coords"] = {}, + }, + [2000322] = { + ["coords"] = {}, + }, + [2000323] = { + ["coords"] = {}, + }, + [2000324] = { + ["coords"] = {}, + }, + [2000325] = { + ["coords"] = {}, + }, + [2000326] = { + ["coords"] = { + [1] = { 61.5, 24.2, 17, 300 }, + [2] = { 26.1, 10.7, 406, 300 }, + }, + }, + [2000327] = { + ["coords"] = { + [1] = { 30.8, 36.8, 440, 300 }, + [2] = { 77.8, 64.9, 490, 300 }, + }, + }, + [2000328] = { + ["coords"] = { + [1] = { 19.1, 65.7, 46, 300 }, + [2] = { 95.2, 92.1, 5581, 300 }, + }, + }, + [2000329] = { + ["coords"] = {}, + }, + [2000330] = { + ["coords"] = {}, + }, + [2000331] = { + ["coords"] = {}, + }, + [2000332] = { + ["coords"] = { + [1] = { 31.3, 38.1, 440, 300 }, + [2] = { 78.7, 67.4, 490, 300 }, + }, + }, + [2000333] = { + ["coords"] = { + [1] = { 41.1, 93.5, 17, 300 }, + [2] = { 25.1, 25.2, 400, 300 }, + [3] = { 31.4, 36.8, 440, 300 }, + [4] = { 78.8, 64.9, 490, 300 }, + }, + }, + [2000334] = { + ["coords"] = { + [1] = { 53, 64, 14, 300 }, + [2] = { 48.5, 22.8, 45, 300 }, + [3] = { 26.9, 83.7, 47, 300 }, + [4] = { 91.5, 54.1, 331, 300 }, + [5] = { 52.7, 69.9, 1637, 300 }, + }, + }, + [2000335] = { + ["coords"] = { + [1] = { 58.8, 5.8, 17, 0 }, + [2] = { 58, 22.4, 440, 300 }, + [3] = { 58, 22, 440, 300 }, + }, + }, + [2000336] = { + ["coords"] = { + [1] = { 28.3, 58.1, 141, 300 }, + [2] = { 53.3, 53.5, 1657, 300 }, + }, + }, + [2000337] = { + ["coords"] = {}, + }, + [2000338] = { + ["coords"] = {}, + }, + [2000339] = { + ["coords"] = { + [1] = { 28.1, 57.8, 141, 300 }, + [2] = { 52.5, 52.5, 1657, 300 }, + }, + }, + [2000340] = { + ["coords"] = {}, + }, + [2000341] = { + ["coords"] = {}, + }, + [2000342] = { + ["coords"] = { + [1] = { 51.4, 67.7, 85, 300 }, + }, + }, + [2000343] = { + ["coords"] = {}, + }, + [2000344] = { + ["coords"] = {}, + }, + [2000345] = { + ["coords"] = {}, + }, + [2000346] = { + ["coords"] = {}, + }, + [2000347] = { + ["coords"] = {}, + }, + [2000348] = { + ["coords"] = {}, + }, + [2000349] = { + ["coords"] = {}, + }, + [2000350] = { + ["coords"] = { + [1] = { 81.3, 71.6, 10, 300 }, + }, + }, + [2000351] = { + ["coords"] = {}, + }, + [2000352] = { + ["coords"] = {}, + }, + [2000353] = { + ["coords"] = {}, + }, + [2000354] = { + ["coords"] = { + [1] = { 56.7, 11.6, 148, 25 }, + [2] = { 42.1, 74.9, 331, 300 }, + [3] = { 77.7, 41.1, 406, 300 }, + }, + }, + [2000355] = { + ["coords"] = {}, + }, + [2000356] = { + ["coords"] = { + [1] = { 25.3, 30.7, 1, 300 }, + [2] = { 23.2, 28.8, 1, 300 }, + [3] = { 24.4, 28.7, 1, 300 }, + [4] = { 82.4, 21, 721, 300 }, + [5] = { 64.7, 4.2, 721, 300 }, + [6] = { 74.9, 3.5, 721, 300 }, + }, + }, + [2000357] = { + ["coords"] = {}, + }, + [2000358] = { + ["coords"] = {}, + }, + [2000359] = { + ["coords"] = {}, + }, + [2000360] = { + ["coords"] = {}, + }, + [2000361] = { + ["coords"] = {}, + }, + [2000362] = { + ["coords"] = {}, + }, + [2000363] = { + ["coords"] = { + [1] = { 25.5, 30.4, 1, 300 }, + [2] = { 51, 35.9, 33, 300 }, + [3] = { 84, 18, 721, 300 }, + }, + }, + [2000364] = { + ["coords"] = {}, + }, + [2000365] = { + ["coords"] = {}, + }, + [2000366] = { + ["coords"] = { + [1] = { 33.2, 48.5, 33, 300 }, + [2] = { 77, 81.9, 47, 300 }, + }, + }, + [2000367] = { + ["coords"] = { + [1] = { 25.9, 64.7, 16, 300 }, + [2] = { 27.9, 62.7, 16, 300 }, + }, + }, + [2000368] = { + ["coords"] = { + [1] = { 27.8, 27, 1, 300 }, + [2] = { 48.9, 60.6, 11, 300 }, + [3] = { 57.1, 99, 14, 300 }, + [4] = { 52.8, 64.5, 14, 300 }, + [5] = { 53, 64, 14, 300 }, + [6] = { 44.9, 15.2, 14, 300 }, + [7] = { 45.2, 15.2, 14, 300 }, + [8] = { 44.8, 14.4, 14, 300 }, + [9] = { 74.8, 51.5, 17, 300 }, + [10] = { 75, 48.8, 17, 300 }, + [11] = { 61.9, 19.9, 17, 300 }, + [12] = { 62, 19.8, 17, 300 }, + [13] = { 51.4, 25.2, 45, 300 }, + [14] = { 48.4, 22.8, 45, 300 }, + [15] = { 89.9, 22.6, 46, 300 }, + [16] = { 90.2, 22.5, 46, 300 }, + [17] = { 29.7, 85.9, 47, 300 }, + [18] = { 26.9, 83.6, 47, 300 }, + [19] = { 67.6, 83.3, 130, 300 }, + [20] = { 14.2, 50, 267, 300 }, + [21] = { 88.8, 59.5, 331, 300 }, + [22] = { 50.1, 63.8, 406, 300 }, + [23] = { 72.1, 12.6, 5179, 300 }, + [24] = { 6.3, 25.5, 5602, 300 }, + }, + }, + [2000369] = { + ["coords"] = {}, + }, + [2000370] = { + ["coords"] = {}, + }, + [2000371] = { + ["coords"] = {}, + }, + [2000372] = { + ["coords"] = {}, + }, + [2000373] = { + ["coords"] = {}, + }, + [2000374] = { + ["coords"] = {}, + }, + [2000375] = { + ["coords"] = {}, + }, + [2000376] = { + ["coords"] = {}, + }, + [2000377] = { + ["coords"] = {}, + }, + [2000378] = { + ["coords"] = {}, + }, + [2000379] = { + ["coords"] = {}, + }, + [2000380] = { + ["coords"] = {}, + }, + [2000381] = { + ["coords"] = { + [1] = { 47.6, 70.9, 5023, 300 }, + [2] = { 45.8, 49.2, 5023, 300 }, + [3] = { 41.7, 24.3, 5023, 300 }, + }, + }, + [2000382] = { + ["coords"] = {}, + }, + [2000383] = { + ["coords"] = { + [1] = { 4.3, 62, 85, 300 }, + [2] = { 23.2, 50, 85, 300 }, + [3] = { 61.5, 44.7, 409, 300 }, + [4] = { 66.5, 24.2, 440, 300 }, + [5] = { 60.9, 64.4, 1519, 300 }, + [6] = { 21.5, 37.3, 1519, 300 }, + [7] = { 68.3, 25.8, 1637, 25 }, + [8] = { 28.1, 97.4, 5581, 300 }, + }, + }, + [2000384] = { + ["coords"] = { + [1] = { 61.5, 44.6, 409, 300 }, + [2] = { 61.4, 43.9, 409, 300 }, + [3] = { 66.5, 24.2, 440, 300 }, + [4] = { 60.9, 64.4, 1519, 300 }, + [5] = { 41.6, 69.1, 2040, 25 }, + [6] = { 57.6, 34.9, 5225, 25 }, + }, + }, + [2000385] = { + ["coords"] = { + [1] = { 58.1, 74, 38, 300 }, + [2] = { 58.2, 74, 38, 300 }, + [3] = { 24.1, 65, 141, 300 }, + [4] = { 62.6, 60.5, 331, 300 }, + [5] = { 41.5, 59.6, 331, 300 }, + [6] = { 22.1, 52.5, 331, 300 }, + [7] = { 35.1, 52.3, 331, 300 }, + [8] = { 62.3, 24.9, 361, 300 }, + [9] = { 58.5, 19.6, 406, 300 }, + [10] = { 81.2, 29.3, 616, 300 }, + [11] = { 50.2, 30.1, 618, 300 }, + [12] = { 33.1, 86.8, 1657, 300 }, + [13] = { 28.3, 82.2, 5602, 300 }, + }, + }, + [2000386] = { + ["coords"] = {}, + }, + [2000387] = { + ["coords"] = {}, + }, + [2000388] = { + ["coords"] = {}, + }, + [2000389] = { + ["coords"] = {}, + }, + [2000390] = { + ["coords"] = {}, + }, + [2000391] = { + ["coords"] = {}, + }, + [2000392] = { + ["coords"] = {}, + }, + [2000393] = { + ["coords"] = {}, + }, + [2000394] = { + ["coords"] = {}, + }, + [2000395] = { + ["coords"] = {}, + }, + [2000396] = { + ["coords"] = {}, + }, + [2000397] = { + ["coords"] = { + [1] = { 39.4, 11.3, 490, 300 }, + }, + }, + [2000398] = { + ["coords"] = {}, + }, + [2000399] = { + ["coords"] = {}, + }, + [2000400] = { + ["coords"] = {}, + }, + [2000401] = { + ["coords"] = {}, + }, + [2000402] = { + ["coords"] = { + [1] = { 64.8, 17.1, 4, 300 }, + [2] = { 63.6, 16.7, 4, 300 }, + [3] = { 59.1, 79.7, 38, 300 }, + [4] = { 68, 47.5, 1519, 25 }, + [5] = { 67.5, 47.3, 1519, 25 }, + [6] = { 64, 47.3, 1519, 25 }, + [7] = { 66.7, 47, 1519, 25 }, + [8] = { 25.9, 77.1, 2040, 25 }, + [9] = { 41.8, 70.6, 2040, 25 }, + [10] = { 42.3, 69.9, 2040, 25 }, + [11] = { 41, 67.7, 2040, 25 }, + [12] = { 42.6, 63.9, 2040, 25 }, + [13] = { 50.1, 38.7, 5225, 25 }, + [14] = { 57.7, 35.6, 5225, 25 }, + [15] = { 57.9, 35.3, 5225, 25 }, + [16] = { 57.3, 34.2, 5225, 25 }, + [17] = { 58.1, 32.4, 5225, 25 }, + [18] = { 28.8, 85.1, 5602, 300 }, + }, + }, + [2000403] = { + ["coords"] = {}, + }, + [2000404] = { + ["coords"] = {}, + }, + [2000405] = { + ["coords"] = {}, + }, + [2000406] = { + ["coords"] = {}, + }, + [2000407] = { + ["coords"] = { + [1] = { 55.8, 73.3, 14, 300 }, + [2] = { 25.3, 66.3, 16, 300 }, + [3] = { 25.9, 64.7, 16, 300 }, + [4] = { 29.1, 62.3, 16, 300 }, + [5] = { 54.1, 19.2, 33, 300 }, + }, + }, + [2000408] = { + ["coords"] = { + [1] = { 77, 88.1, 405, 300 }, + }, + }, + [2000409] = { + ["coords"] = { + [1] = { 26.8, 31.4, 1, 300 }, + [2] = { 51.1, 36.1, 33, 300 }, + [3] = { 95.8, 26.6, 721, 300 }, + }, + }, + [2000410] = { + ["coords"] = { + [1] = { 25.7, 10.8, 406, 300 }, + }, + }, + [2000411] = { + ["coords"] = {}, + }, + [2000412] = { + ["coords"] = {}, + }, + [2000413] = { + ["coords"] = {}, + }, + [2000414] = { + ["coords"] = { + [1] = { 31.8, 87, 405, 300 }, + [2] = { 30.8, 38.2, 440, 300 }, + [3] = { 77.8, 67.6, 490, 300 }, + }, + }, + [2000415] = { + ["coords"] = {}, + }, + [2000416] = { + ["coords"] = {}, + }, + [2000417] = { + ["coords"] = {}, + }, + [2000418] = { + ["coords"] = {}, + }, + [2000419] = { + ["coords"] = {}, + }, + [2000420] = { + ["coords"] = { + [1] = { 25.6, 40.2, 85, 300 }, + }, + }, + [2000421] = { + ["coords"] = { + [1] = { 13.1, 79, 85, 300 }, + [2] = { 24, 7.5, 130, 300 }, + }, + }, + [2000422] = { + ["coords"] = {}, + }, + [2000423] = { + ["coords"] = {}, + }, + [2000424] = { + ["coords"] = {}, + }, + [2000425] = { + ["coords"] = {}, + }, + [2000426] = { + ["coords"] = { + [1] = { 62.1, 24.9, 361, 300 }, + [2] = { 60.4, 23.7, 361, 300 }, + [3] = { 42, 18.1, 406, 300 }, + [4] = { 41.1, 67.5, 1519, 300 }, + [5] = { 63.8, 47, 1519, 25 }, + [6] = { 62.7, 84.5, 5121, 300 }, + }, + }, + [2000427] = { + ["coords"] = { + [1] = { 29.2, 61.8, 16, 300 }, + [2] = { 29.1, 61.8, 16, 300 }, + [3] = { 49, 9.8, 17, 300 }, + [4] = { 73, 58.2, 331, 300 }, + }, + }, + [2000428] = { + ["coords"] = {}, + }, + [2000429] = { + ["coords"] = { + [1] = { 61.1, 24.4, 17, 300 }, + }, + }, + [2000430] = { + ["coords"] = {}, + }, + [2000431] = { + ["coords"] = { + [1] = { 31.2, 63, 141, 300 }, + [2] = { 67.1, 77, 1657, 300 }, + }, + }, + [2000432] = { + ["coords"] = {}, + }, + [2000433] = { + ["coords"] = {}, + }, + [2000434] = { + ["coords"] = {}, + }, + [2000435] = { + ["coords"] = {}, + }, + [2000436] = { + ["coords"] = { + [1] = { 24.5, 13.8, 406, 25 }, + [2] = { 68.2, 25.5, 1637, 25 }, + }, + }, + [2000437] = { + ["coords"] = {}, + }, + [2000438] = { + ["coords"] = { + [1] = { 34.9, 10.4, 45, 300 }, + [2] = { 34.9, 9.9, 45, 300 }, + [3] = { 14.2, 72.1, 47, 300 }, + [4] = { 14.2, 71.6, 47, 300 }, + [5] = { 61.3, 44.6, 409, 300 }, + [6] = { 61.6, 44.1, 409, 300 }, + [7] = { 61.6, 43.9, 409, 300 }, + [8] = { 66.7, 24.2, 440, 300 }, + [9] = { 75.8, 39.2, 1497, 300 }, + [10] = { 53.6, 37.2, 5130, 300 }, + [11] = { 55.3, 36.3, 5130, 300 }, + [12] = { 51.3, 48.7, 5581, 300 }, + }, + }, + [2000439] = { + ["coords"] = { + [1] = { 39.2, 69.4, 12, 300 }, + [2] = { 35.1, 10.6, 45, 300 }, + [3] = { 14.4, 72.2, 47, 300 }, + [4] = { 27.6, 18.7, 406, 300 }, + [5] = { 39, 11.4, 490, 300 }, + [6] = { 39, 11.3, 490, 300 }, + }, + }, + [2000440] = { + ["coords"] = { + [1] = { 31.1, 38.1, 440, 300 }, + [2] = { 78.3, 67.3, 490, 300 }, + [3] = { 51.2, 34.2, 5121, 300 }, + }, + }, + [2000441] = { + ["coords"] = {}, + }, + [2000442] = { + ["coords"] = { + [1] = { 50.3, 63, 406, 300 }, + }, + }, + [2000443] = { + ["coords"] = {}, + }, + [2000444] = { + ["coords"] = {}, + }, + [2000445] = { + ["coords"] = {}, + }, + [2000446] = { + ["coords"] = {}, + }, + [2000447] = { + ["coords"] = {}, + }, + [2000448] = { + ["coords"] = {}, + }, + [2000449] = { + ["coords"] = {}, + }, + [2000450] = { + ["coords"] = {}, + }, + [2000451] = { + ["coords"] = {}, + }, + [2000452] = { + ["coords"] = {}, + }, + [2000453] = { + ["coords"] = {}, + }, + [2000454] = { + ["coords"] = {}, + }, + [2000455] = { + ["coords"] = {}, + }, + [2000456] = { + ["coords"] = { + [1] = { 34.6, 64.7, 11, 300 }, + [2] = { 41, 67.4, 1519, 300 }, + [3] = { 41.7, 66.7, 1519, 300 }, + }, + }, + [2000457] = { + ["coords"] = { + [1] = { 34.6, 64.7, 11, 300 }, + [2] = { 25.6, 40.3, 85, 300 }, + }, + }, + [2000458] = { + ["coords"] = {}, + }, + [2000459] = { + ["coords"] = {}, + }, + [2000460] = { + ["coords"] = { + [1] = { 25.2, 68.2, 2040, 371 }, + [2] = { 25.7, 67, 2040, 314 }, + [3] = { 26.7, 66.9, 2040, 380 }, + [4] = { 49.8, 34.5, 5225, 371 }, + [5] = { 50, 33.9, 5225, 314 }, + [6] = { 50.5, 33.9, 5225, 380 }, + }, + }, + [2000461] = { + ["coords"] = {}, + }, + [2000462] = { + ["coords"] = {}, + }, + [2000463] = { + ["coords"] = {}, + }, + [2000464] = { + ["coords"] = {}, + }, + [2000465] = { + ["coords"] = {}, + }, + [2000466] = { + ["coords"] = {}, + }, + [2000467] = { + ["coords"] = {}, + }, + [2000468] = { + ["coords"] = {}, + }, + [2000469] = { + ["coords"] = {}, + }, + [2000470] = { + ["coords"] = {}, + }, + [2000471] = { + ["coords"] = {}, + }, + [2000472] = { + ["coords"] = {}, + }, + [2000473] = { + ["coords"] = {}, + }, + [2000474] = { + ["coords"] = {}, + }, + [2000475] = { + ["coords"] = {}, + }, + [2000476] = { + ["coords"] = {}, + }, + [2000477] = { + ["coords"] = {}, + }, + [2000478] = { + ["coords"] = {}, + }, + [2000479] = { + ["coords"] = {}, + }, + [2000480] = { + ["coords"] = {}, + }, + [2000481] = { + ["coords"] = { + [1] = { 55.6, 57.9, 141, 300 }, + [2] = { 32.7, 57.5, 141, 300 }, + [3] = { 94.8, 26.6, 331, 300 }, + [4] = { 96.3, 26.2, 331, 300 }, + [5] = { 96.1, 22.5, 331, 300 }, + [6] = { 74.4, 50.6, 1657, 300 }, + }, + }, + [2000482] = { + ["coords"] = { + [1] = { 32.7, 57.8, 141, 300 }, + [2] = { 55.6, 57.6, 141, 300 }, + [3] = { 74.3, 52, 1657, 300 }, + }, + }, + [2000483] = { + ["coords"] = {}, + }, + [2000484] = { + ["coords"] = {}, + }, + [2000485] = { + ["coords"] = {}, + }, + [2000486] = { + ["coords"] = {}, + }, + [2000487] = { + ["coords"] = { + [1] = { 58.6, 27.2, 14, 300 }, + }, + }, + [2000488] = { + ["coords"] = { + [1] = { 60.4, 23.5, 361, 300 }, + }, + }, + [2000489] = { + ["coords"] = { + [1] = { 60.4, 23.6, 361, 300 }, + }, + }, + [2000490] = { + ["coords"] = {}, + }, + [2000491] = { + ["coords"] = {}, + }, + [2000492] = { + ["coords"] = {}, + }, + [2000493] = { + ["coords"] = {}, + }, + [2000494] = { + ["coords"] = {}, + }, + [2000495] = { + ["coords"] = { + [1] = { 33.9, 48.5, 10, 300 }, + [2] = { 32.5, 47.4, 10, 300 }, + [3] = { 37.8, 72.3, 14, 300 }, + [4] = { 65, 34.8, 17, 300 }, + [5] = { 10.8, 47.1, 47, 300 }, + [6] = { 11.4, 45.8, 47, 300 }, + [7] = { 78.8, 55.6, 85, 300 }, + [8] = { 41.9, 10.8, 130, 300 }, + [9] = { 95.6, 6.7, 267, 300 }, + [10] = { 96.2, 5.1, 267, 300 }, + [11] = { 48.7, 60.3, 406, 300 }, + }, + }, + [2000496] = { + ["coords"] = {}, + }, + [2000497] = { + ["coords"] = {}, + }, + [2000498] = { + ["coords"] = {}, + }, + [2000499] = { + ["coords"] = { + [1] = { 45.3, 14.8, 14, 300 }, + }, + }, + [2000500] = { + ["coords"] = {}, + }, + [2000501] = { + ["coords"] = {}, + }, + [2000502] = { + ["coords"] = {}, + }, + [2000503] = { + ["coords"] = {}, + }, + [2000504] = { + ["coords"] = {}, + }, + [2000505] = { + ["coords"] = {}, + }, + [2000506] = { + ["coords"] = {}, + }, + [2000507] = { + ["coords"] = {}, + }, + [2000508] = { + ["coords"] = {}, + }, + [2000509] = { + ["coords"] = {}, + }, + [2000510] = { + ["coords"] = {}, + }, + [2000511] = { + ["coords"] = {}, + }, + [2000512] = { + ["coords"] = {}, + }, + [2000513] = { + ["coords"] = {}, + }, + [2000514] = { + ["coords"] = {}, + }, + [2000515] = { + ["coords"] = {}, + }, + [2000516] = { + ["coords"] = {}, + }, + [2000517] = { + ["coords"] = {}, + }, + [2000518] = { + ["coords"] = {}, + }, + [2000519] = { + ["coords"] = {}, + }, + [2000520] = { + ["coords"] = {}, + }, + [2000521] = { + ["coords"] = { + [1] = { 37.5, 72.3, 14, 300 }, + [2] = { 64.8, 34.8, 17, 300 }, + }, + }, + [2000522] = { + ["coords"] = { + [1] = { 36.4, 44.1, 17, 300 }, + [2] = { 61, 24.8, 17, 300 }, + [3] = { 18.1, 65.8, 46, 300 }, + [4] = { 60.6, 31.9, 215, 300 }, + [5] = { 94.3, 92.2, 5581, 300 }, + }, + }, + [2000523] = { + ["coords"] = {}, + }, + [2000524] = { + ["coords"] = {}, + }, + [2000525] = { + ["coords"] = {}, + }, + [2000526] = { + ["coords"] = {}, + }, + [2000527] = { + ["coords"] = { + [1] = { 34.1, 9.8, 17, 300 }, + [2] = { 64.3, 13.6, 33, 300 }, + [3] = { 79.4, 62.1, 406, 300 }, + }, + }, + [2000528] = { + ["coords"] = {}, + }, + [2000529] = { + ["coords"] = {}, + }, + [2000530] = { + ["coords"] = { + [1] = { 9.9, 44.1, 47, 300 }, + [2] = { 94.5, 3, 267, 300 }, + [3] = { 48.1, 44, 5601, 604800 }, + [4] = { 52.1, 42, 5601, 604800 }, + [5] = { 53.6, 41, 5601, 604800 }, + [6] = { 46.2, 40.4, 5601, 604800 }, + [7] = { 50, 40.3, 5601, 604800 }, + [8] = { 47.3, 34.2, 5601, 604800 }, + [9] = { 50.5, 31.5, 5601, 604800 }, + [10] = { 50.8, 26.6, 5601, 604800 }, + }, + }, + [2000531] = { + ["coords"] = { + [1] = { 32.1, 48.8, 10, 300 }, + [2] = { 32.9, 47.8, 10, 300 }, + [3] = { 48.8, 61.2, 11, 300 }, + [4] = { 61.3, 24.7, 17, 300 }, + [5] = { 61.4, 24.6, 17, 300 }, + [6] = { 43.1, 99.2, 28, 300 }, + [7] = { 43.2, 98.9, 28, 300 }, + [8] = { 43.1, 98.8, 28, 300 }, + [9] = { 43.2, 98.8, 28, 300 }, + [10] = { 43.3, 98.5, 28, 300 }, + [11] = { 43.5, 98.2, 28, 300 }, + [12] = { 79.3, 52.3, 36, 300 }, + [13] = { 79.4, 51.8, 36, 300 }, + [14] = { 79.3, 51.8, 36, 300 }, + [15] = { 79.4, 51.7, 36, 300 }, + [16] = { 79.6, 51.3, 36, 300 }, + [17] = { 79.9, 50.9, 36, 300 }, + [18] = { 19.2, 67.5, 46, 300 }, + [19] = { 19.1, 67.5, 46, 300 }, + [20] = { 20, 66.3, 46, 300 }, + [21] = { 66.9, 82, 130, 300 }, + [22] = { 13.3, 48.2, 267, 300 }, + [23] = { 71.3, 27.3, 3457, 300 }, + [24] = { 71.3, 11.1, 5179, 300 }, + [25] = { 95.2, 93.7, 5581, 300 }, + [26] = { 96, 92.7, 5581, 300 }, + [27] = { 42.6, 68.4, 5581, 300 }, + [28] = { 42.6, 68.3, 5581, 300 }, + [29] = { 42.7, 68.3, 5581, 300 }, + [30] = { 48.8, 44.4, 5601, 604800 }, + [31] = { 47.1, 40.4, 5601, 604800 }, + [32] = { 59.4, 36.9, 5601, 604800 }, + [33] = { 55.9, 32.5, 5601, 604800 }, + [34] = { 53.2, 29.7, 5601, 604800 }, + [35] = { 46.7, 28.8, 5601, 604800 }, + [36] = { 6.2, 26, 5602, 300 }, + }, + }, + [2000532] = { + ["coords"] = { + [1] = { 48.7, 61.4, 11, 300 }, + [2] = { 48.8, 61.2, 11, 300 }, + [3] = { 19.2, 67.6, 46, 300 }, + [4] = { 20, 66.4, 46, 300 }, + [5] = { 95.3, 93.8, 5581, 300 }, + [6] = { 96, 92.7, 5581, 300 }, + [7] = { 42.6, 68.3, 5581, 300 }, + [8] = { 51.3, 47, 5601, 604800 }, + [9] = { 45.7, 39.7, 5601, 604800 }, + [10] = { 59.6, 36.9, 5601, 604800 }, + [11] = { 45.8, 31.5, 5601, 604800 }, + [12] = { 53.1, 29.9, 5601, 604800 }, + [13] = { 6.1, 26.1, 5602, 300 }, + [14] = { 6.2, 26, 5602, 300 }, + }, + }, + [2000533] = { + ["coords"] = { + [1] = { 48.4, 22.8, 45, 300 }, + [2] = { 48.4, 22.7, 45, 300 }, + [3] = { 26.8, 83.7, 47, 300 }, + [4] = { 26.8, 83.6, 47, 300 }, + }, + }, + [2000534] = { + ["coords"] = {}, + }, + [2000535] = { + ["coords"] = {}, + }, + [2000536] = { + ["coords"] = { + [1] = { 31.3, 48.7, 33, 300 }, + [2] = { 31.5, 48.4, 33, 300 }, + }, + }, + [2000537] = { + ["coords"] = {}, + }, + [2000538] = { + ["coords"] = {}, + }, + [2000539] = { + ["coords"] = {}, + }, + [2000540] = { + ["coords"] = {}, + }, + [2000541] = { + ["coords"] = {}, + }, + [2000542] = { + ["coords"] = {}, + }, + [2000543] = { + ["coords"] = {}, + }, + [2000544] = { + ["coords"] = {}, + }, + [2000545] = { + ["coords"] = {}, + }, + [2000546] = { + ["coords"] = {}, + }, + [2000547] = { + ["coords"] = {}, + }, + [2000548] = { + ["coords"] = {}, + }, + [2000549] = { + ["coords"] = {}, + }, + [2000550] = { + ["coords"] = {}, + }, + [2000551] = { + ["coords"] = {}, + }, + [2000552] = { + ["coords"] = {}, + }, + [2000553] = { + ["coords"] = {}, + }, + [2000554] = { + ["coords"] = {}, + }, + [2000555] = { + ["coords"] = {}, + }, + [2000556] = { + ["coords"] = {}, + }, + [2000557] = { + ["coords"] = {}, + }, + [2000558] = { + ["coords"] = {}, + }, + [2000559] = { + ["coords"] = {}, + }, + [2000560] = { + ["coords"] = {}, + }, + [2000561] = { + ["coords"] = {}, + }, + [2000562] = { + ["coords"] = {}, + }, + [2000563] = { + ["coords"] = {}, + }, + [2000564] = { + ["coords"] = {}, + }, + [2000565] = { + ["coords"] = {}, + }, + [2000566] = { + ["coords"] = {}, + }, + [2000567] = { + ["coords"] = {}, + }, + [2000568] = { + ["coords"] = {}, + }, + [2000569] = { + ["coords"] = {}, + }, + [2000570] = { + ["coords"] = {}, + }, + [2000571] = { + ["coords"] = {}, + }, + [2000572] = { + ["coords"] = {}, + }, + [2000573] = { + ["coords"] = {}, + }, + [2000574] = { + ["coords"] = {}, + }, + [2000575] = { + ["coords"] = {}, + }, + [2000576] = { + ["coords"] = {}, + }, + [2000577] = { + ["coords"] = {}, + }, + [2000578] = { + ["coords"] = {}, + }, + [2000579] = { + ["coords"] = {}, + }, + [2000580] = { + ["coords"] = {}, + }, + [2000581] = { + ["coords"] = {}, + }, + [2000582] = { + ["coords"] = {}, + }, + [2000583] = { + ["coords"] = {}, + }, + [2000584] = { + ["coords"] = {}, + }, + [2000585] = { + ["coords"] = {}, + }, + [2000586] = { + ["coords"] = {}, + }, + [2000587] = { + ["coords"] = {}, + }, + [2000588] = { + ["coords"] = {}, + }, + [2000589] = { + ["coords"] = {}, + }, + [2000590] = { + ["coords"] = {}, + }, + [2000591] = { + ["coords"] = {}, + }, + [2000592] = { + ["coords"] = {}, + }, + [2000593] = { + ["coords"] = {}, + }, + [2000594] = { + ["coords"] = {}, + }, + [2000595] = { + ["coords"] = {}, + }, + [2000596] = { + ["coords"] = {}, + }, + [2000597] = { + ["coords"] = {}, + }, + [2000598] = { + ["coords"] = {}, + }, + [2000599] = { + ["coords"] = {}, + }, + [2000600] = { + ["coords"] = {}, + }, + [2000601] = { + ["coords"] = {}, + }, + [2000602] = { + ["coords"] = {}, + }, + [2000603] = { + ["coords"] = {}, + }, + [2000604] = { + ["coords"] = {}, + }, + [2000605] = { + ["coords"] = {}, + }, + [2000606] = { + ["coords"] = {}, + }, + [2000607] = { + ["coords"] = {}, + }, + [2000608] = { + ["coords"] = {}, + }, + [2000609] = { + ["coords"] = {}, + }, + [2000610] = { + ["coords"] = {}, + }, + [2000611] = { + ["coords"] = {}, + }, + [2000612] = { + ["coords"] = {}, + }, + [2000613] = { + ["coords"] = {}, + }, + [2000614] = { + ["coords"] = {}, + }, + [2000615] = { + ["coords"] = {}, + }, + [2000616] = { + ["coords"] = {}, + }, + [2000617] = { + ["coords"] = {}, + }, + [2000618] = { + ["coords"] = {}, + }, + [2000619] = { + ["coords"] = {}, + }, + [2000620] = { + ["coords"] = {}, + }, + [2000621] = { + ["coords"] = {}, + }, + [2000622] = { + ["coords"] = {}, + }, + [2000623] = { + ["coords"] = {}, + }, + [2000624] = { + ["coords"] = {}, + }, + [2000625] = { + ["coords"] = {}, + }, + [2000626] = { + ["coords"] = {}, + }, + [2000627] = { + ["coords"] = {}, + }, + [2000628] = { + ["coords"] = {}, + }, + [2000629] = { + ["coords"] = {}, + }, + [2000630] = { + ["coords"] = {}, + }, + [2000631] = { + ["coords"] = {}, + }, + [2000632] = { + ["coords"] = {}, + }, + [2000633] = { + ["coords"] = {}, + }, + [2000634] = { + ["coords"] = {}, + }, + [2000635] = { + ["coords"] = {}, + }, + [2000636] = { + ["coords"] = {}, + }, + [2000637] = { + ["coords"] = {}, + }, + [2000638] = { + ["coords"] = {}, + }, + [2000639] = { + ["coords"] = {}, + }, + [2000640] = { + ["coords"] = {}, + }, + [2000641] = { + ["coords"] = {}, + }, + [2000642] = { + ["coords"] = {}, + }, + [2000643] = { + ["coords"] = {}, + }, + [2000644] = { + ["coords"] = {}, + }, + [2000645] = { + ["coords"] = {}, + }, + [2000646] = { + ["coords"] = {}, + }, + [2000647] = { + ["coords"] = {}, + }, + [2000648] = { + ["coords"] = {}, + }, + [2000649] = { + ["coords"] = {}, + }, + [2000650] = { + ["coords"] = {}, + }, + [2000651] = { + ["coords"] = {}, + }, + [2000652] = { + ["coords"] = {}, + }, + [2000653] = { + ["coords"] = {}, + }, + [2000654] = { + ["coords"] = {}, + }, + [2000655] = { + ["coords"] = {}, + }, + [2000656] = { + ["coords"] = {}, + }, + [2000657] = { + ["coords"] = {}, + }, + [2000658] = { + ["coords"] = {}, + }, + [2000659] = { + ["coords"] = {}, + }, + [2000660] = { + ["coords"] = {}, + }, + [2000661] = { + ["coords"] = {}, + }, + [2000662] = { + ["coords"] = {}, + }, + [2000663] = { + ["coords"] = {}, + }, + [2000664] = { + ["coords"] = {}, + }, + [2000665] = { + ["coords"] = {}, + }, + [2000666] = { + ["coords"] = {}, + }, + [2000667] = { + ["coords"] = {}, + }, + [2000668] = { + ["coords"] = {}, + }, + [2000669] = { + ["coords"] = {}, + }, + [2000670] = { + ["coords"] = {}, + }, + [2000671] = { + ["coords"] = {}, + }, + [2000672] = { + ["coords"] = {}, + }, + [2000673] = { + ["coords"] = {}, + }, + [2000674] = { + ["coords"] = {}, + }, + [2000675] = { + ["coords"] = {}, + }, + [2000676] = { + ["coords"] = {}, + }, + [2000677] = { + ["coords"] = {}, + }, + [2000678] = { + ["coords"] = {}, + }, + [2000679] = { + ["coords"] = {}, + }, + [2000680] = { + ["coords"] = {}, + }, + [2000681] = { + ["coords"] = {}, + }, + [2000682] = { + ["coords"] = {}, + }, + [2000683] = { + ["coords"] = {}, + }, + [2000684] = { + ["coords"] = {}, + }, + [2000685] = { + ["coords"] = {}, + }, + [2000686] = { + ["coords"] = {}, + }, + [2000687] = { + ["coords"] = {}, + }, + [2000688] = { + ["coords"] = {}, + }, + [2000689] = { + ["coords"] = {}, + }, + [2000690] = { + ["coords"] = {}, + }, + [2000691] = { + ["coords"] = {}, + }, + [2000692] = { + ["coords"] = {}, + }, + [2000693] = { + ["coords"] = {}, + }, + [2000694] = { + ["coords"] = {}, + }, + [2000695] = { + ["coords"] = {}, + }, + [2000696] = { + ["coords"] = {}, + }, + [2000697] = { + ["coords"] = {}, + }, + [2000698] = { + ["coords"] = {}, + }, + [2000699] = { + ["coords"] = {}, + }, + [2000700] = { + ["coords"] = {}, + }, + [2000701] = { + ["coords"] = {}, + }, + [2000702] = { + ["coords"] = {}, + }, + [2000703] = { + ["coords"] = {}, + }, + [2000704] = { + ["coords"] = {}, + }, + [2000705] = { + ["coords"] = {}, + }, + [2000706] = { + ["coords"] = {}, + }, + [2000707] = { + ["coords"] = {}, + }, + [2000708] = { + ["coords"] = {}, + }, + [2000709] = { + ["coords"] = {}, + }, + [2000710] = { + ["coords"] = {}, + }, + [2000711] = { + ["coords"] = {}, + }, + [2000712] = { + ["coords"] = { + [1] = { 25.6, 21.6, 5208, 300 }, + }, + }, + [2000713] = { + ["coords"] = {}, + }, + [2000714] = { + ["coords"] = {}, + }, + [2000715] = { + ["coords"] = {}, + }, + [2000716] = { + ["coords"] = {}, + }, + [2000717] = { + ["coords"] = {}, + }, + [2000718] = { + ["coords"] = {}, + }, + [2000719] = { + ["coords"] = {}, + }, + [2000720] = { + ["coords"] = {}, + }, + [2000721] = { + ["coords"] = {}, + }, + [2000722] = { + ["coords"] = {}, + }, + [2000723] = { + ["coords"] = {}, + }, + [2000724] = { + ["coords"] = {}, + }, + [2000725] = { + ["coords"] = {}, + }, + [2000726] = { + ["coords"] = {}, + }, + [2000727] = { + ["coords"] = {}, + }, + [2000728] = { + ["coords"] = {}, + }, + [2000729] = { + ["coords"] = {}, + }, + [2000730] = { + ["coords"] = {}, + }, + [2000731] = { + ["coords"] = {}, + }, + [2000732] = { + ["coords"] = {}, + }, + [2000733] = { + ["coords"] = {}, + }, + [2000734] = { + ["coords"] = {}, + }, + [2000735] = { + ["coords"] = {}, + }, + [2000736] = { + ["coords"] = {}, + }, + [2000737] = { + ["coords"] = {}, + }, + [2000738] = { + ["coords"] = {}, + }, + [2000739] = { + ["coords"] = {}, + }, + [2000740] = { + ["coords"] = {}, + }, + [2000741] = { + ["coords"] = {}, + }, + [2000742] = { + ["coords"] = {}, + }, + [2000743] = { + ["coords"] = {}, + }, + [2000744] = { + ["coords"] = {}, + }, + [2000745] = { + ["coords"] = {}, + }, + [2000746] = { + ["coords"] = {}, + }, + [2000747] = { + ["coords"] = {}, + }, + [2000748] = { + ["coords"] = {}, + }, + [2000749] = { + ["coords"] = {}, + }, + [2000750] = { + ["coords"] = {}, + }, + [2000751] = { + ["coords"] = {}, + }, + [2000752] = { + ["coords"] = {}, + }, + [2000753] = { + ["coords"] = {}, + }, + [2000754] = { + ["coords"] = {}, + }, + [2000755] = { + ["coords"] = {}, + }, + [2000756] = { + ["coords"] = {}, + }, + [2000757] = { + ["coords"] = {}, + }, + [2000758] = { + ["coords"] = {}, + }, + [2000759] = { + ["coords"] = {}, + }, + [2000760] = { + ["coords"] = {}, + }, + [2000761] = { + ["coords"] = {}, + }, + [2000762] = { + ["coords"] = {}, + }, + [2000763] = { + ["coords"] = {}, + }, + [2000764] = { + ["coords"] = {}, + }, + [2000765] = { + ["coords"] = {}, + }, + [2000766] = { + ["coords"] = {}, + }, + [2000767] = { + ["coords"] = {}, + }, + [2000768] = { + ["coords"] = {}, + }, + [2000769] = { + ["coords"] = {}, + }, + [2000770] = { + ["coords"] = {}, + }, + [2000771] = { + ["coords"] = {}, + }, + [2000772] = { + ["coords"] = {}, + }, + [2000773] = { + ["coords"] = {}, + }, + [2000774] = { + ["coords"] = {}, + }, + [2000775] = { + ["coords"] = {}, + }, + [2000776] = { + ["coords"] = {}, + }, + [2000777] = { + ["coords"] = {}, + }, + [2000778] = { + ["coords"] = {}, + }, + [2000779] = { + ["coords"] = {}, + }, + [2000780] = { + ["coords"] = {}, + }, + [2000781] = { + ["coords"] = {}, + }, + [2000782] = { + ["coords"] = {}, + }, + [2000783] = { + ["coords"] = {}, + }, + [2000784] = { + ["coords"] = {}, + }, + [2000785] = { + ["coords"] = {}, + }, + [2000786] = { + ["coords"] = {}, + }, + [2000787] = { + ["coords"] = {}, + }, + [2000788] = { + ["coords"] = {}, + }, + [2000789] = { + ["coords"] = {}, + }, + [2000790] = { + ["coords"] = {}, + }, + [2000791] = { + ["coords"] = {}, + }, + [2000792] = { + ["coords"] = {}, + }, + [2000793] = { + ["coords"] = {}, + }, + [2000794] = { + ["coords"] = {}, + }, + [2000795] = { + ["coords"] = {}, + }, + [2000796] = { + ["coords"] = {}, + }, + [2000797] = { + ["coords"] = {}, + }, + [2000798] = { + ["coords"] = {}, + }, + [2000799] = { + ["coords"] = {}, + }, + [2000800] = { + ["coords"] = {}, + }, + [2000801] = { + ["coords"] = {}, + }, + [2000802] = { + ["coords"] = {}, + }, + [2000803] = { + ["coords"] = {}, + }, + [2000804] = { + ["coords"] = {}, + }, + [2000805] = { + ["coords"] = {}, + }, + [2000806] = { + ["coords"] = {}, + }, + [2000807] = { + ["coords"] = {}, + }, + [2000808] = { + ["coords"] = {}, + }, + [2000809] = { + ["coords"] = {}, + }, + [2000810] = { + ["coords"] = {}, + }, + [2000811] = { + ["coords"] = {}, + }, + [2000812] = { + ["coords"] = {}, + }, + [2000813] = { + ["coords"] = {}, + }, + [2000814] = { + ["coords"] = {}, + }, + [2000815] = { + ["coords"] = {}, + }, + [2000816] = { + ["coords"] = {}, + }, + [2000817] = { + ["coords"] = {}, + }, + [2000818] = { + ["coords"] = {}, + }, + [2000819] = { + ["coords"] = {}, + }, + [2000820] = { + ["coords"] = {}, + }, + [2000821] = { + ["coords"] = {}, + }, + [2000822] = { + ["coords"] = {}, + }, + [2000823] = { + ["coords"] = {}, + }, + [2000824] = { + ["coords"] = {}, + }, + [2000825] = { + ["coords"] = {}, + }, + [2000826] = { + ["coords"] = {}, + }, + [2000827] = { + ["coords"] = {}, + }, + [2000828] = { + ["coords"] = {}, + }, + [2000829] = { + ["coords"] = {}, + }, + [2000830] = { + ["coords"] = {}, + }, + [2000831] = { + ["coords"] = {}, + }, + [2000832] = { + ["coords"] = {}, + }, + [2000833] = { + ["coords"] = {}, + }, + [2000834] = { + ["coords"] = {}, + }, + [2000835] = { + ["coords"] = {}, + }, + [2000836] = { + ["coords"] = {}, + }, + [2000837] = { + ["coords"] = {}, + }, + [2000838] = { + ["coords"] = {}, + }, + [2000839] = { + ["coords"] = {}, + }, + [2000840] = { + ["coords"] = {}, + }, + [2000841] = { + ["coords"] = {}, + }, + [2000842] = { + ["coords"] = {}, + }, + [2000843] = { + ["coords"] = {}, + }, + [2000844] = { + ["coords"] = {}, + }, + [2000845] = { + ["coords"] = {}, + }, + [2000846] = { + ["coords"] = {}, + }, + [2000847] = { + ["coords"] = {}, + }, + [2000848] = { + ["coords"] = {}, + }, + [2000849] = { + ["coords"] = {}, + }, + [2000850] = { + ["coords"] = {}, + }, + [2000851] = { + ["coords"] = {}, + }, + [2000852] = { + ["coords"] = {}, + }, + [2000853] = { + ["coords"] = {}, + }, + [2000854] = { + ["coords"] = {}, + }, + [2000855] = { + ["coords"] = {}, + }, + [2000856] = { + ["coords"] = {}, + }, + [2000857] = { + ["coords"] = {}, + }, + [2000858] = { + ["coords"] = {}, + }, + [2000859] = { + ["coords"] = {}, + }, + [2000860] = { + ["coords"] = {}, + }, + [2000861] = { + ["coords"] = {}, + }, + [2000862] = { + ["coords"] = {}, + }, + [2000863] = { + ["coords"] = {}, + }, + [2000864] = { + ["coords"] = {}, + }, + [2000865] = { + ["coords"] = {}, + }, + [2000866] = { + ["coords"] = { + [1] = { 21.1, 54.9, 331, 300 }, + [2] = { 57.6, 21.9, 406, 300 }, + }, + }, + [2000867] = { + ["coords"] = {}, + }, + [2000868] = { + ["coords"] = {}, + }, + [2000869] = { + ["coords"] = {}, + }, + [2000870] = { + ["coords"] = {}, + }, + [2000871] = { + ["coords"] = {}, + }, + [2000872] = { + ["coords"] = {}, + }, + [2000873] = { + ["coords"] = {}, + }, + [2000874] = { + ["coords"] = {}, + }, + [2000875] = { + ["coords"] = {}, + }, + [2000876] = { + ["coords"] = {}, + }, + [2000877] = { + ["coords"] = {}, + }, + [2000878] = { + ["coords"] = {}, + }, + [2000879] = { + ["coords"] = {}, + }, + [2000880] = { + ["coords"] = {}, + }, + [2000881] = { + ["coords"] = {}, + }, + [2000882] = { + ["coords"] = {}, + }, + [2000883] = { + ["coords"] = {}, + }, + [2000884] = { + ["coords"] = {}, + }, + [2000885] = { + ["coords"] = {}, + }, + [2000886] = { + ["coords"] = {}, + }, + [2000887] = { + ["coords"] = {}, + }, + [2000888] = { + ["coords"] = {}, + }, + [2000889] = { + ["coords"] = {}, + }, + [2000890] = { + ["coords"] = {}, + }, + [2000891] = { + ["coords"] = {}, + }, + [2000892] = { + ["coords"] = {}, + }, + [2000893] = { + ["coords"] = {}, + }, + [2000894] = { + ["coords"] = {}, + }, + [2000895] = { + ["coords"] = {}, + }, + [2000896] = { + ["coords"] = {}, + }, + [2000897] = { + ["coords"] = {}, + }, + [2000898] = { + ["coords"] = {}, + }, + [2000899] = { + ["coords"] = {}, + }, + [2000900] = { + ["coords"] = {}, + }, + [2000901] = { + ["coords"] = {}, + }, + [2000902] = { + ["coords"] = {}, + }, + [2000903] = { + ["coords"] = {}, + }, + [2000904] = { + ["coords"] = {}, + }, + [2000905] = { + ["coords"] = {}, + }, + [2000906] = { + ["coords"] = {}, + }, + [2000907] = { + ["coords"] = {}, + }, + [2000908] = { + ["coords"] = {}, + }, + [2000909] = { + ["coords"] = {}, + }, + [2000910] = { + ["coords"] = {}, + }, + [2000911] = { + ["coords"] = {}, + }, + [2000912] = { + ["coords"] = {}, + }, + [2000913] = { + ["coords"] = {}, + }, + [2000914] = { + ["coords"] = {}, + }, + [2000915] = { + ["coords"] = {}, + }, + [2000916] = { + ["coords"] = {}, + }, + [2000917] = { + ["coords"] = {}, + }, + [2000918] = { + ["coords"] = {}, + }, + [2000919] = { + ["coords"] = {}, + }, + [2000920] = { + ["coords"] = {}, + }, + [2000921] = { + ["coords"] = {}, + }, + [2000922] = { + ["coords"] = {}, + }, + [2000923] = { + ["coords"] = {}, + }, + [2000924] = { + ["coords"] = {}, + }, + [2000925] = { + ["coords"] = {}, + }, + [2000926] = { + ["coords"] = {}, + }, + [2000927] = { + ["coords"] = {}, + }, + [2000928] = { + ["coords"] = {}, + }, + [2000929] = { + ["coords"] = {}, + }, + [2000930] = { + ["coords"] = {}, + }, + [2000931] = { + ["coords"] = {}, + }, + [2000932] = { + ["coords"] = {}, + }, + [2000933] = { + ["coords"] = {}, + }, + [2000934] = { + ["coords"] = {}, + }, + [2000935] = { + ["coords"] = {}, + }, + [2000936] = { + ["coords"] = {}, + }, + [2000937] = { + ["coords"] = {}, + }, + [2000938] = { + ["coords"] = {}, + }, + [2000939] = { + ["coords"] = {}, + }, + [2000940] = { + ["coords"] = {}, + }, + [2000941] = { + ["coords"] = {}, + }, + [2000942] = { + ["coords"] = {}, + }, + [2000943] = { + ["coords"] = {}, + }, + [2000944] = { + ["coords"] = { + [1] = { 31.4, 53.9, 141, 300 }, + [2] = { 68.1, 33.3, 1657, 300 }, + }, + }, + [2000945] = { + ["coords"] = {}, + }, + [2000946] = { + ["coords"] = {}, + }, + [2000947] = { + ["coords"] = {}, + }, + [2000948] = { + ["coords"] = {}, + }, + [2000949] = { + ["coords"] = {}, + }, + [2000950] = { + ["coords"] = {}, + }, + [2000951] = { + ["coords"] = {}, + }, + [2000952] = { + ["coords"] = {}, + }, + [2000953] = { + ["coords"] = {}, + }, + [2000954] = { + ["coords"] = {}, + }, + [2000955] = { + ["coords"] = {}, + }, + [2000956] = { + ["coords"] = {}, + }, + [2000957] = { + ["coords"] = {}, + }, + [2000958] = { + ["coords"] = {}, + }, + [2000959] = { + ["coords"] = {}, + }, + [2000960] = { + ["coords"] = {}, + }, + [2000961] = { + ["coords"] = {}, + }, + [2000962] = { + ["coords"] = {}, + }, + [2000963] = { + ["coords"] = {}, + }, + [2000964] = { + ["coords"] = {}, + }, + [2000965] = { + ["coords"] = {}, + }, + [2000966] = { + ["coords"] = {}, + }, + [2000967] = { + ["coords"] = {}, + }, + [2000968] = { + ["coords"] = {}, + }, + [2000969] = { + ["coords"] = {}, + }, + [2000970] = { + ["coords"] = {}, + }, + [2000971] = { + ["coords"] = {}, + }, + [2000972] = { + ["coords"] = {}, + }, + [2000973] = { + ["coords"] = {}, + }, + [2000974] = { + ["coords"] = {}, + }, + [2000975] = { + ["coords"] = {}, + }, + [2000976] = { + ["coords"] = {}, + }, + [2000977] = { + ["coords"] = {}, + }, + [2000978] = { + ["coords"] = {}, + }, + [2000979] = { + ["coords"] = {}, + }, + [2000980] = { + ["coords"] = {}, + }, + [2000981] = { + ["coords"] = {}, + }, + [2000982] = { + ["coords"] = {}, + }, + [2000983] = { + ["coords"] = {}, + }, + [2000984] = { + ["coords"] = {}, + }, + [2000985] = { + ["coords"] = {}, + }, + [2000986] = { + ["coords"] = {}, + }, + [2000987] = { + ["coords"] = {}, + }, + [2000988] = { + ["coords"] = {}, + }, + [2000989] = { + ["coords"] = {}, + }, + [2000990] = { + ["coords"] = {}, + }, + [2000991] = { + ["coords"] = {}, + }, + [2000992] = { + ["coords"] = {}, + }, + [2000993] = { + ["coords"] = {}, + }, + [2000994] = { + ["coords"] = {}, + }, + [2000995] = { + ["coords"] = {}, + }, + [2000996] = { + ["coords"] = {}, + }, + [2000997] = { + ["coords"] = {}, + }, + [2000998] = { + ["coords"] = {}, + }, + [2000999] = { + ["coords"] = {}, + }, + [2001000] = { + ["coords"] = {}, + }, + [2001001] = { + ["coords"] = {}, + }, + [2001002] = { + ["coords"] = {}, + }, + [2001003] = { + ["coords"] = {}, + }, + [2001004] = { + ["coords"] = {}, + }, + [2001005] = { + ["coords"] = {}, + }, + [2001006] = { + ["coords"] = {}, + }, + [2001007] = { + ["coords"] = {}, + }, + [2001008] = { + ["coords"] = {}, + }, + [2001009] = { + ["coords"] = {}, + }, + [2001010] = { + ["coords"] = {}, + }, + [2001011] = { + ["coords"] = {}, + }, + [2001012] = { + ["coords"] = {}, + }, + [2001013] = { + ["coords"] = {}, + }, + [2001014] = { + ["coords"] = {}, + }, + [2001015] = { + ["coords"] = {}, + }, + [2001016] = { + ["coords"] = {}, + }, + [2001017] = { + ["coords"] = {}, + }, + [2001018] = { + ["coords"] = {}, + }, + [2001019] = { + ["coords"] = {}, + }, + [2001020] = { + ["coords"] = {}, + }, + [2001021] = { + ["coords"] = { + [1] = { 32.9, 17.3, 28, 300 }, + [2] = { 89.2, 32.1, 85, 300 }, + }, + }, + [2001022] = { + ["coords"] = {}, + }, + [2001023] = { + ["coords"] = {}, + }, + [2001024] = { + ["coords"] = {}, + }, + [2001025] = { + ["coords"] = {}, + }, + [2001026] = { + ["coords"] = {}, + }, + [2001027] = { + ["coords"] = {}, + }, + [2001028] = { + ["coords"] = {}, + }, + [2001029] = { + ["coords"] = {}, + }, + [2001030] = { + ["coords"] = {}, + }, + [2001031] = { + ["coords"] = {}, + }, + [2001032] = { + ["coords"] = {}, + }, + [2001033] = { + ["coords"] = {}, + }, + [2001034] = { + ["coords"] = {}, + }, + [2001035] = { + ["coords"] = {}, + }, + [2001036] = { + ["coords"] = {}, + }, + [2001037] = { + ["coords"] = {}, + }, + [2001038] = { + ["coords"] = {}, + }, + [2001039] = { + ["coords"] = {}, + }, + [2001040] = { + ["coords"] = {}, + }, + [2001041] = { + ["coords"] = {}, + }, + [2001042] = { + ["coords"] = {}, + }, + [2001043] = { + ["coords"] = {}, + }, + [2001044] = { + ["coords"] = {}, + }, + [2001045] = { + ["coords"] = {}, + }, + [2001046] = { + ["coords"] = {}, + }, + [2001047] = { + ["coords"] = {}, + }, + [2001048] = { + ["coords"] = {}, + }, + [2001049] = { + ["coords"] = {}, + }, + [2001050] = { + ["coords"] = {}, + }, + [2001051] = { + ["coords"] = {}, + }, + [2001052] = { + ["coords"] = {}, + }, + [2001053] = { + ["coords"] = {}, + }, + [2001054] = { + ["coords"] = {}, + }, + [2001055] = { + ["coords"] = {}, + }, + [2001056] = { + ["coords"] = {}, + }, + [2001057] = { + ["coords"] = {}, + }, + [2001058] = { + ["coords"] = {}, + }, + [2001059] = { + ["coords"] = {}, + }, + [2001060] = { + ["coords"] = {}, + }, + [2001061] = { + ["coords"] = {}, + }, + [2001062] = { + ["coords"] = {}, + }, + [2001063] = { + ["coords"] = {}, + }, + [2001064] = { + ["coords"] = {}, + }, + [2001065] = { + ["coords"] = {}, + }, + [2001066] = { + ["coords"] = {}, + }, + [2001067] = { + ["coords"] = {}, + }, + [2001068] = { + ["coords"] = {}, + }, + [2001069] = { + ["coords"] = {}, + }, + [2001070] = { + ["coords"] = {}, + }, + [2001071] = { + ["coords"] = {}, + }, + [2001072] = { + ["coords"] = {}, + }, + [2001073] = { + ["coords"] = {}, + }, + [2001074] = { + ["coords"] = {}, + }, + [2001075] = { + ["coords"] = {}, + }, + [2001076] = { + ["coords"] = {}, + }, + [2001077] = { + ["coords"] = {}, + }, + [2001078] = { + ["coords"] = {}, + }, + [2001079] = { + ["coords"] = {}, + }, + [2001080] = { + ["coords"] = {}, + }, + [2001081] = { + ["coords"] = {}, + }, + [2001082] = { + ["coords"] = {}, + }, + [2001083] = { + ["coords"] = {}, + }, + [2001084] = { + ["coords"] = {}, + }, + [2001085] = { + ["coords"] = {}, + }, + [2001086] = { + ["coords"] = {}, + }, + [2001087] = { + ["coords"] = {}, + }, + [2001088] = { + ["coords"] = {}, + }, + [2001089] = { + ["coords"] = {}, + }, + [2001090] = { + ["coords"] = {}, + }, + [2001091] = { + ["coords"] = {}, + }, + [2001092] = { + ["coords"] = {}, + }, + [2001093] = { + ["coords"] = {}, + }, + [2001094] = { + ["coords"] = {}, + }, + [2001095] = { + ["coords"] = {}, + }, + [2001096] = { + ["coords"] = {}, + }, + [2001097] = { + ["coords"] = {}, + }, + [2001098] = { + ["coords"] = {}, + }, + [2001099] = { + ["coords"] = {}, + }, + [2001100] = { + ["coords"] = {}, + }, + [2001101] = { + ["coords"] = {}, + }, + [2001102] = { + ["coords"] = {}, + }, + [2001103] = { + ["coords"] = {}, + }, + [2001104] = { + ["coords"] = {}, + }, + [2001105] = { + ["coords"] = {}, + }, + [2001106] = { + ["coords"] = {}, + }, + [2001107] = { + ["coords"] = {}, + }, + [2001108] = { + ["coords"] = {}, + }, + [2001109] = { + ["coords"] = {}, + }, + [2001110] = { + ["coords"] = {}, + }, + [2001111] = { + ["coords"] = {}, + }, + [2001112] = { + ["coords"] = {}, + }, + [2001113] = { + ["coords"] = {}, + }, + [2001114] = { + ["coords"] = {}, + }, + [2001115] = { + ["coords"] = {}, + }, + [2001116] = { + ["coords"] = {}, + }, + [2001117] = { + ["coords"] = {}, + }, + [2001118] = { + ["coords"] = {}, + }, + [2001119] = { + ["coords"] = {}, + }, + [2001120] = { + ["coords"] = {}, + }, + [2001121] = { + ["coords"] = {}, + }, + [2001122] = { + ["coords"] = {}, + }, + [2001123] = { + ["coords"] = {}, + }, + [2001124] = { + ["coords"] = {}, + }, + [2001125] = { + ["coords"] = {}, + }, + [2001126] = { + ["coords"] = {}, + }, + [2001127] = { + ["coords"] = {}, + }, + [2001128] = { + ["coords"] = {}, + }, + [2001129] = { + ["coords"] = {}, + }, + [2001130] = { + ["coords"] = {}, + }, + [2001131] = { + ["coords"] = {}, + }, + [2001132] = { + ["coords"] = {}, + }, + [2001133] = { + ["coords"] = {}, + }, + [2001134] = { + ["coords"] = {}, + }, + [2001135] = { + ["coords"] = {}, + }, + [2001136] = { + ["coords"] = {}, + }, + [2001137] = { + ["coords"] = {}, + }, + [2001138] = { + ["coords"] = {}, + }, + [2001139] = { + ["coords"] = { + [1] = { 64.3, 15.6, 4, 300 }, + }, + }, + [2001140] = { + ["coords"] = {}, + }, + [2001141] = { + ["coords"] = {}, + }, + [2001142] = { + ["coords"] = {}, + }, + [2001143] = { + ["coords"] = {}, + }, + [2001144] = { + ["coords"] = {}, + }, + [2001145] = { + ["coords"] = {}, + }, + [2001146] = { + ["coords"] = {}, + }, + [2001147] = { + ["coords"] = {}, + }, + [2001148] = { + ["coords"] = {}, + }, + [2001149] = { + ["coords"] = {}, + }, + [2001150] = { + ["coords"] = {}, + }, + [2001151] = { + ["coords"] = {}, + }, + [2001152] = { + ["coords"] = {}, + }, + [2001153] = { + ["coords"] = {}, + }, + [2001154] = { + ["coords"] = {}, + }, + [2001155] = { + ["coords"] = {}, + }, + [2001156] = { + ["coords"] = {}, + }, + [2001157] = { + ["coords"] = {}, + }, + [2001158] = { + ["coords"] = {}, + }, + [2001159] = { + ["coords"] = {}, + }, + [2001160] = { + ["coords"] = {}, + }, + [2001161] = { + ["coords"] = {}, + }, + [2001162] = { + ["coords"] = {}, + }, + [2001163] = { + ["coords"] = {}, + }, + [2001164] = { + ["coords"] = {}, + }, + [2001165] = { + ["coords"] = {}, + }, + [2001166] = { + ["coords"] = {}, + }, + [2001167] = { + ["coords"] = {}, + }, + [2001168] = { + ["coords"] = {}, + }, + [2001169] = { + ["coords"] = {}, + }, + [2001170] = { + ["coords"] = {}, + }, + [2001171] = { + ["coords"] = {}, + }, + [2001172] = { + ["coords"] = {}, + }, + [2001173] = { + ["coords"] = {}, + }, + [2001174] = { + ["coords"] = {}, + }, + [2001175] = { + ["coords"] = {}, + }, + [2001176] = { + ["coords"] = {}, + }, + [2001177] = { + ["coords"] = {}, + }, + [2001178] = { + ["coords"] = {}, + }, + [2001179] = { + ["coords"] = {}, + }, + [2001180] = { + ["coords"] = {}, + }, + [2001181] = { + ["coords"] = {}, + }, + [2001182] = { + ["coords"] = {}, + }, + [2001183] = { + ["coords"] = {}, + }, + [2001184] = { + ["coords"] = {}, + }, + [2001185] = { + ["coords"] = {}, + }, + [2001186] = { + ["coords"] = {}, + }, + [2001187] = { + ["coords"] = {}, + }, + [2001188] = { + ["coords"] = {}, + }, + [2001189] = { + ["coords"] = {}, + }, + [2001190] = { + ["coords"] = {}, + }, + [2001191] = { + ["coords"] = {}, + }, + [2001192] = { + ["coords"] = {}, + }, + [2001193] = { + ["coords"] = {}, + }, + [2001194] = { + ["coords"] = {}, + }, + [2001195] = { + ["coords"] = {}, + }, + [2001196] = { + ["coords"] = {}, + }, + [2001197] = { + ["coords"] = {}, + }, + [2001198] = { + ["coords"] = {}, + }, + [2001199] = { + ["coords"] = {}, + }, + [2001200] = { + ["coords"] = {}, + }, + [2001201] = { + ["coords"] = {}, + }, + [2001202] = { + ["coords"] = {}, + }, + [2001203] = { + ["coords"] = {}, + }, + [2001204] = { + ["coords"] = {}, + }, + [2001205] = { + ["coords"] = {}, + }, + [2001206] = { + ["coords"] = {}, + }, + [2001207] = { + ["coords"] = {}, + }, + [2001208] = { + ["coords"] = {}, + }, + [2001209] = { + ["coords"] = { + [1] = { 41.3, 18, 14, 300 }, + }, + }, + [2001210] = { + ["coords"] = {}, + }, + [2001211] = { + ["coords"] = {}, + }, + [2001212] = { + ["coords"] = {}, + }, + [2001213] = { + ["coords"] = {}, + }, + [2001214] = { + ["coords"] = {}, + }, + [2001215] = { + ["coords"] = {}, + }, + [2001216] = { + ["coords"] = {}, + }, + [2001217] = { + ["coords"] = {}, + }, + [2001218] = { + ["coords"] = {}, + }, + [2001219] = { + ["coords"] = {}, + }, + [2001220] = { + ["coords"] = {}, + }, + [2001221] = { + ["coords"] = {}, + }, + [2001222] = { + ["coords"] = {}, + }, + [2001223] = { + ["coords"] = {}, + }, + [2001224] = { + ["coords"] = {}, + }, + [2001225] = { + ["coords"] = {}, + }, + [2001226] = { + ["coords"] = {}, + }, + [2001227] = { + ["coords"] = {}, + }, + [2001228] = { + ["coords"] = {}, + }, + [2001229] = { + ["coords"] = {}, + }, + [2001230] = { + ["coords"] = {}, + }, + [2001231] = { + ["coords"] = {}, + }, + [2001232] = { + ["coords"] = {}, + }, + [2001233] = { + ["coords"] = {}, + }, + [2001234] = { + ["coords"] = {}, + }, + [2001235] = { + ["coords"] = {}, + }, + [2001236] = { + ["coords"] = {}, + }, + [2001237] = { + ["coords"] = {}, + }, + [2001238] = { + ["coords"] = {}, + }, + [2001239] = { + ["coords"] = {}, + }, + [2001240] = { + ["coords"] = {}, + }, + [2001241] = { + ["coords"] = {}, + }, + [2001242] = { + ["coords"] = {}, + }, + [2001243] = { + ["coords"] = {}, + }, + [2001244] = { + ["coords"] = {}, + }, + [2001245] = { + ["coords"] = {}, + }, + [2001246] = { + ["coords"] = {}, + }, + [2001247] = { + ["coords"] = {}, + }, + [2001248] = { + ["coords"] = {}, + }, + [2001249] = { + ["coords"] = {}, + }, + [2001250] = { + ["coords"] = {}, + }, + [2001251] = { + ["coords"] = {}, + }, + [2001252] = { + ["coords"] = {}, + }, + [2001253] = { + ["coords"] = {}, + }, + [2001254] = { + ["coords"] = {}, + }, + [2001255] = { + ["coords"] = {}, + }, + [2001256] = { + ["coords"] = {}, + }, + [2001257] = { + ["coords"] = {}, + }, + [2001258] = { + ["coords"] = {}, + }, + [2001259] = { + ["coords"] = {}, + }, + [2001260] = { + ["coords"] = {}, + }, + [2001261] = { + ["coords"] = {}, + }, + [2001262] = { + ["coords"] = {}, + }, + [2001263] = { + ["coords"] = {}, + }, + [2001264] = { + ["coords"] = {}, + }, + [2001265] = { + ["coords"] = {}, + }, + [2001266] = { + ["coords"] = {}, + }, + [2001267] = { + ["coords"] = {}, + }, + [2001268] = { + ["coords"] = {}, + }, + [2001269] = { + ["coords"] = {}, + }, + [2001270] = { + ["coords"] = {}, + }, + [2001271] = { + ["coords"] = {}, + }, + [2001272] = { + ["coords"] = {}, + }, + [2001273] = { + ["coords"] = {}, + }, + [2001274] = { + ["coords"] = {}, + }, + [2001275] = { + ["coords"] = {}, + }, + [2001276] = { + ["coords"] = {}, + }, + [2001277] = { + ["coords"] = {}, + }, + [2001278] = { + ["coords"] = {}, + }, + [2001279] = { + ["coords"] = {}, + }, + [2001280] = { + ["coords"] = {}, + }, + [2001281] = { + ["coords"] = { + [1] = { 72.3, 53.5, 1497, 300 }, + }, + }, + [2001282] = { + ["coords"] = {}, + }, + [2001283] = { + ["coords"] = {}, + }, + [2001284] = { + ["coords"] = {}, + }, + [2001285] = { + ["coords"] = {}, + }, + [2001286] = { + ["coords"] = {}, + }, + [2001287] = { + ["coords"] = {}, + }, + [2001288] = { + ["coords"] = {}, + }, + [2001289] = { + ["coords"] = {}, + }, + [2001290] = { + ["coords"] = {}, + }, + [2001291] = { + ["coords"] = {}, + }, + [2001292] = { + ["coords"] = {}, + }, + [2001293] = { + ["coords"] = {}, + }, + [2001294] = { + ["coords"] = {}, + }, + [2001295] = { + ["coords"] = {}, + }, + [2001296] = { + ["coords"] = {}, + }, + [2001297] = { + ["coords"] = {}, + }, + [2001298] = { + ["coords"] = {}, + }, + [2001299] = { + ["coords"] = {}, + }, + [2001300] = { + ["coords"] = {}, + }, + [2001301] = { + ["coords"] = {}, + }, + [2001302] = { + ["coords"] = {}, + }, + [2001303] = { + ["coords"] = {}, + }, + [2001304] = { + ["coords"] = {}, + }, + [2001305] = { + ["coords"] = {}, + }, + [2001306] = { + ["coords"] = {}, + }, + [2001307] = { + ["coords"] = {}, + }, + [2001308] = { + ["coords"] = {}, + }, + [2001309] = { + ["coords"] = {}, + }, + [2001310] = { + ["coords"] = {}, + }, + [2001311] = { + ["coords"] = {}, + }, + [2001312] = { + ["coords"] = {}, + }, + [2001313] = { + ["coords"] = {}, + }, + [2001314] = { + ["coords"] = {}, + }, + [2001315] = { + ["coords"] = {}, + }, + [2001316] = { + ["coords"] = {}, + }, + [2001317] = { + ["coords"] = {}, + }, + [2001318] = { + ["coords"] = {}, + }, + [2001319] = { + ["coords"] = {}, + }, + [2001320] = { + ["coords"] = {}, + }, + [2001321] = { + ["coords"] = {}, + }, + [2001322] = { + ["coords"] = {}, + }, + [2001323] = { + ["coords"] = {}, + }, + [2001324] = { + ["coords"] = {}, + }, + [2001325] = { + ["coords"] = {}, + }, + [2001326] = { + ["coords"] = {}, + }, + [2001327] = { + ["coords"] = {}, + }, + [2001328] = { + ["coords"] = {}, + }, + [2001329] = { + ["coords"] = {}, + }, + [2001330] = { + ["coords"] = {}, + }, + [2001331] = { + ["coords"] = {}, + }, + [2001332] = { + ["coords"] = {}, + }, + [2001333] = { + ["coords"] = {}, + }, + [2001334] = { + ["coords"] = {}, + }, + [2001335] = { + ["coords"] = {}, + }, + [2001336] = { + ["coords"] = {}, + }, + [2001337] = { + ["coords"] = {}, + }, + [2001338] = { + ["coords"] = {}, + }, + [2001339] = { + ["coords"] = {}, + }, + [2001340] = { + ["coords"] = {}, + }, + [2001341] = { + ["coords"] = {}, + }, + [2001342] = { + ["coords"] = {}, + }, + [2001343] = { + ["coords"] = {}, + }, + [2001344] = { + ["coords"] = {}, + }, + [2001345] = { + ["coords"] = {}, + }, + [2001346] = { + ["coords"] = {}, + }, + [2001347] = { + ["coords"] = {}, + }, + [2001348] = { + ["coords"] = {}, + }, + [2001349] = { + ["coords"] = {}, + }, + [2001350] = { + ["coords"] = {}, + }, + [2001351] = { + ["coords"] = {}, + }, + [2001352] = { + ["coords"] = {}, + }, + [2001353] = { + ["coords"] = {}, + }, + [2001354] = { + ["coords"] = {}, + }, + [2001355] = { + ["coords"] = {}, + }, + [2001356] = { + ["coords"] = {}, + }, + [2001357] = { + ["coords"] = {}, + }, + [2001358] = { + ["coords"] = {}, + }, + [2001359] = { + ["coords"] = {}, + }, + [2001360] = { + ["coords"] = {}, + }, + [2001361] = { + ["coords"] = {}, + }, + [2001362] = { + ["coords"] = {}, + }, + [2001363] = { + ["coords"] = {}, + }, + [2001364] = { + ["coords"] = {}, + }, + [2001365] = { + ["coords"] = {}, + }, + [2001366] = { + ["coords"] = {}, + }, + [2001367] = { + ["coords"] = {}, + }, + [2001368] = { + ["coords"] = {}, + }, + [2001369] = { + ["coords"] = {}, + }, + [2001370] = { + ["coords"] = {}, + }, + [2001371] = { + ["coords"] = {}, + }, + [2001372] = { + ["coords"] = {}, + }, + [2001373] = { + ["coords"] = {}, + }, + [2001374] = { + ["coords"] = {}, + }, + [2001375] = { + ["coords"] = {}, + }, + [2001376] = { + ["coords"] = {}, + }, + [2001377] = { + ["coords"] = {}, + }, + [2001378] = { + ["coords"] = {}, + }, + [2001379] = { + ["coords"] = {}, + }, + [2001380] = { + ["coords"] = {}, + }, + [2001381] = { + ["coords"] = {}, + }, + [2001382] = { + ["coords"] = {}, + }, + [2001383] = { + ["coords"] = {}, + }, + [2001384] = { + ["coords"] = {}, + }, + [2001385] = { + ["coords"] = {}, + }, + [2001386] = { + ["coords"] = {}, + }, + [2001387] = { + ["coords"] = {}, + }, + [2001388] = { + ["coords"] = {}, + }, + [2001389] = { + ["coords"] = {}, + }, + [2001390] = { + ["coords"] = {}, + }, + [2001391] = { + ["coords"] = {}, + }, + [2001392] = { + ["coords"] = {}, + }, + [2001393] = { + ["coords"] = {}, + }, + [2001394] = { + ["coords"] = {}, + }, + [2001395] = { + ["coords"] = { + [1] = { 13.1, 79, 85, 300 }, + [2] = { 24, 7.4, 130, 300 }, + }, + }, + [2001396] = { + ["coords"] = {}, + }, + [2001397] = { + ["coords"] = {}, + }, + [2001398] = { + ["coords"] = {}, + }, + [2001399] = { + ["coords"] = {}, + }, + [2001400] = { + ["coords"] = {}, + }, + [2001401] = { + ["coords"] = {}, + }, + [2001402] = { + ["coords"] = {}, + }, + [2001403] = { + ["coords"] = {}, + }, + [2001404] = { + ["coords"] = {}, + }, + [2001405] = { + ["coords"] = {}, + }, + [2001406] = { + ["coords"] = {}, + }, + [2001407] = { + ["coords"] = {}, + }, + [2001408] = { + ["coords"] = {}, + }, + [2001409] = { + ["coords"] = {}, + }, + [2001410] = { + ["coords"] = {}, + }, + [2001411] = { + ["coords"] = {}, + }, + [2001412] = { + ["coords"] = {}, + }, + [2001413] = { + ["coords"] = {}, + }, + [2001414] = { + ["coords"] = {}, + }, + [2001415] = { + ["coords"] = {}, + }, + [2001416] = { + ["coords"] = {}, + }, + [2001417] = { + ["coords"] = {}, + }, + [2001418] = { + ["coords"] = {}, + }, + [2001419] = { + ["coords"] = {}, + }, + [2001420] = { + ["coords"] = {}, + }, + [2001421] = { + ["coords"] = {}, + }, + [2001422] = { + ["coords"] = {}, + }, + [2001423] = { + ["coords"] = {}, + }, + [2001424] = { + ["coords"] = {}, + }, + [2001425] = { + ["coords"] = {}, + }, + [2001426] = { + ["coords"] = {}, + }, + [2001427] = { + ["coords"] = {}, + }, + [2001428] = { + ["coords"] = {}, + }, + [2001429] = { + ["coords"] = {}, + }, + [2001430] = { + ["coords"] = {}, + }, + [2001431] = { + ["coords"] = {}, + }, + [2001432] = { + ["coords"] = {}, + }, + [2001433] = { + ["coords"] = {}, + }, + [2001434] = { + ["coords"] = {}, + }, + [2001435] = { + ["coords"] = {}, + }, + [2001436] = { + ["coords"] = {}, + }, + [2001437] = { + ["coords"] = {}, + }, + [2001438] = { + ["coords"] = {}, + }, + [2001439] = { + ["coords"] = {}, + }, + [2001440] = { + ["coords"] = {}, + }, + [2001441] = { + ["coords"] = {}, + }, + [2001442] = { + ["coords"] = {}, + }, + [2001443] = { + ["coords"] = {}, + }, + [2001444] = { + ["coords"] = {}, + }, + [2001445] = { + ["coords"] = {}, + }, + [2001446] = { + ["coords"] = {}, + }, + [2001447] = { + ["coords"] = {}, + }, + [2001448] = { + ["coords"] = {}, + }, + [2001449] = { + ["coords"] = {}, + }, + [2001450] = { + ["coords"] = {}, + }, + [2001451] = { + ["coords"] = {}, + }, + [2001452] = { + ["coords"] = {}, + }, + [2001453] = { + ["coords"] = {}, + }, + [2001454] = { + ["coords"] = {}, + }, + [2001455] = { + ["coords"] = {}, + }, + [2001456] = { + ["coords"] = {}, + }, + [2001457] = { + ["coords"] = {}, + }, + [2001458] = { + ["coords"] = {}, + }, + [2001459] = { + ["coords"] = {}, + }, + [2001460] = { + ["coords"] = {}, + }, + [2001461] = { + ["coords"] = {}, + }, + [2001462] = { + ["coords"] = {}, + }, + [2001463] = { + ["coords"] = {}, + }, + [2001464] = { + ["coords"] = {}, + }, + [2001465] = { + ["coords"] = {}, + }, + [2001466] = { + ["coords"] = {}, + }, + [2001467] = { + ["coords"] = {}, + }, + [2001468] = { + ["coords"] = {}, + }, + [2001469] = { + ["coords"] = {}, + }, + [2001470] = { + ["coords"] = {}, + }, + [2001471] = { + ["coords"] = {}, + }, + [2001472] = { + ["coords"] = {}, + }, + [2001473] = { + ["coords"] = {}, + }, + [2001474] = { + ["coords"] = {}, + }, + [2001475] = { + ["coords"] = {}, + }, + [2001476] = { + ["coords"] = {}, + }, + [2001477] = { + ["coords"] = {}, + }, + [2001478] = { + ["coords"] = {}, + }, + [2001479] = { + ["coords"] = {}, + }, + [2001480] = { + ["coords"] = {}, + }, + [2001481] = { + ["coords"] = {}, + }, + [2001482] = { + ["coords"] = {}, + }, + [2001483] = { + ["coords"] = {}, + }, + [2001484] = { + ["coords"] = {}, + }, + [2001485] = { + ["coords"] = {}, + }, + [2001486] = { + ["coords"] = {}, + }, + [2001487] = { + ["coords"] = {}, + }, + [2001488] = { + ["coords"] = {}, + }, + [2001489] = { + ["coords"] = {}, + }, + [2001490] = { + ["coords"] = {}, + }, + [2001491] = { + ["coords"] = {}, + }, + [2001492] = { + ["coords"] = {}, + }, + [2001493] = { + ["coords"] = {}, + }, + [2001494] = { + ["coords"] = {}, + }, + [2001495] = { + ["coords"] = {}, + }, + [2001496] = { + ["coords"] = {}, + }, + [2001497] = { + ["coords"] = {}, + }, + [2001498] = { + ["coords"] = {}, + }, + [2001499] = { + ["coords"] = {}, + }, + [2001500] = { + ["coords"] = {}, + }, + [2001501] = { + ["coords"] = {}, + }, + [2001502] = { + ["coords"] = {}, + }, + [2001503] = { + ["coords"] = {}, + }, + [2001504] = { + ["coords"] = {}, + }, + [2001505] = { + ["coords"] = {}, + }, + [2001506] = { + ["coords"] = {}, + }, + [2001507] = { + ["coords"] = {}, + }, + [2001508] = { + ["coords"] = {}, + }, + [2001509] = { + ["coords"] = {}, + }, + [2001510] = { + ["coords"] = {}, + }, + [2001511] = { + ["coords"] = {}, + }, + [2001512] = { + ["coords"] = {}, + }, + [2001513] = { + ["coords"] = {}, + }, + [2001514] = { + ["coords"] = {}, + }, + [2001515] = { + ["coords"] = {}, + }, + [2001516] = { + ["coords"] = {}, + }, + [2001517] = { + ["coords"] = {}, + }, + [2001518] = { + ["coords"] = {}, + }, + [2001519] = { + ["coords"] = {}, + }, + [2001520] = { + ["coords"] = {}, + }, + [2001521] = { + ["coords"] = {}, + }, + [2001522] = { + ["coords"] = {}, + }, + [2001523] = { + ["coords"] = {}, + }, + [2001524] = { + ["coords"] = {}, + }, + [2001525] = { + ["coords"] = {}, + }, + [2001526] = { + ["coords"] = {}, + }, + [2001527] = { + ["coords"] = {}, + }, + [2001528] = { + ["coords"] = {}, + }, + [2001529] = { + ["coords"] = {}, + }, + [2001530] = { + ["coords"] = {}, + }, + [2001531] = { + ["coords"] = { + [1] = { 79, 67.1, 28, 300 }, + }, + }, + [2001532] = { + ["coords"] = {}, + }, + [2001533] = { + ["coords"] = { + [1] = { 51, 43.3, 8, 300 }, + }, + }, + [2001534] = { + ["coords"] = { + [1] = { 50.9, 43.2, 8, 300 }, + [2] = { 79, 67, 28, 300 }, + }, + }, + [2001535] = { + ["coords"] = {}, + }, + [2001536] = { + ["coords"] = {}, + }, + [2001537] = { + ["coords"] = { + [1] = { 51.2, 42.9, 8, 300 }, + [2] = { 37.9, 72, 14, 300 }, + [3] = { 33.5, 51.9, 14, 300 }, + [4] = { 65, 34.7, 17, 300 }, + [5] = { 62.7, 24.2, 17, 300 }, + [6] = { 79.1, 67, 28, 300 }, + [7] = { 51.3, 25.4, 45, 300 }, + [8] = { 29.6, 86.1, 47, 300 }, + [9] = { 56.7, 11.6, 148, 25 }, + [10] = { 49, 68, 331, 300 }, + [11] = { 48.7, 67.9, 331, 300 }, + [12] = { 51.6, 52.1, 409, 300 }, + [13] = { 77.9, 31.2, 616, 300 }, + [14] = { 34.6, 61.7, 2040, 25 }, + [15] = { 54.3, 31.4, 5225, 25 }, + [16] = { 54.9, 18.7, 5561, 300 }, + }, + }, + [2001538] = { + ["coords"] = {}, + }, + [2001539] = { + ["coords"] = { + [1] = { 51.1, 43, 8, 300 }, + [2] = { 33.7, 51.8, 14, 300 }, + [3] = { 62.8, 24.1, 17, 300 }, + [4] = { 79.1, 67.1, 28, 300 }, + }, + }, + [2001540] = { + ["coords"] = {}, + }, + [2001541] = { + ["coords"] = {}, + }, + [2001542] = { + ["coords"] = {}, + }, + [2001543] = { + ["coords"] = {}, + }, + [2001544] = { + ["coords"] = {}, + }, + [2001545] = { + ["coords"] = {}, + }, + [2001546] = { + ["coords"] = {}, + }, + [2001547] = { + ["coords"] = {}, + }, + [2001548] = { + ["coords"] = {}, + }, + [2001549] = { + ["coords"] = {}, + }, + [2001550] = { + ["coords"] = {}, + }, + [2001551] = { + ["coords"] = {}, + }, + [2001552] = { + ["coords"] = { + [1] = { 36.1, 33, 17, 300 }, + [2] = { 60, 10.1, 215, 300 }, + [3] = { 41.9, 79.9, 1519, 300 }, + }, + }, + [2001553] = { + ["coords"] = {}, + }, + [2001554] = { + ["coords"] = {}, + }, + [2001555] = { + ["coords"] = {}, + }, + [2001556] = { + ["coords"] = {}, + }, + [2001557] = { + ["coords"] = {}, + }, + [2001558] = { + ["coords"] = {}, + }, + [2001559] = { + ["coords"] = {}, + }, + [2001560] = { + ["coords"] = {}, + }, + [2001561] = { + ["coords"] = {}, + }, + [2001562] = { + ["coords"] = {}, + }, + [2001563] = { + ["coords"] = {}, + }, + [2001564] = { + ["coords"] = {}, + }, + [2001565] = { + ["coords"] = {}, + }, + [2001566] = { + ["coords"] = { + [1] = { 54.4, 1.5, 17, 300 }, + [2] = { 65.2, 12.5, 33, 300 }, + [3] = { 79.5, 82.2, 331, 300 }, + [4] = { 81.1, 75, 331, 0 }, + [5] = { 53.8, 73.8, 5561, 300 }, + [6] = { 56.6, 52.7, 5601, 604800 }, + }, + }, + [2001567] = { + ["coords"] = {}, + }, + [2001568] = { + ["coords"] = {}, + }, + [2001569] = { + ["coords"] = {}, + }, + [2001570] = { + ["coords"] = {}, + }, + [2001571] = { + ["coords"] = {}, + }, + [2001572] = { + ["coords"] = {}, + }, + [2001573] = { + ["coords"] = {}, + }, + [2001574] = { + ["coords"] = {}, + }, + [2001575] = { + ["coords"] = {}, + }, + [2001576] = { + ["coords"] = {}, + }, + [2001577] = { + ["coords"] = {}, + }, + [2001578] = { + ["coords"] = {}, + }, + [2001579] = { + ["coords"] = {}, + }, + [2001580] = { + ["coords"] = {}, + }, + [2001581] = { + ["coords"] = {}, + }, + [2001582] = { + ["coords"] = {}, + }, + [2001583] = { + ["coords"] = {}, + }, + [2001584] = { + ["coords"] = {}, + }, + [2001585] = { + ["coords"] = { + [1] = { 24.1, 31.6, 1, 300 }, + [2] = { 44.7, 57, 8, 300 }, + [3] = { 45, 55.7, 8, 300 }, + [4] = { 52.9, 64.2, 14, 300 }, + [5] = { 55.6, 34, 14, 300 }, + [6] = { 55.6, 33.9, 14, 300 }, + [7] = { 45.3, 14.8, 14, 300 }, + [8] = { 29.3, 62.4, 16, 300 }, + [9] = { 29.2, 62.3, 16, 300 }, + [10] = { 51.2, 37.7, 16, 300 }, + [11] = { 48.7, 9.8, 17, 300 }, + [12] = { 48.7, 9.2, 17, 300 }, + [13] = { 58.8, 5.8, 17, 0 }, + [14] = { 63.5, 10.4, 33, 300 }, + [15] = { 48.5, 22.9, 45, 300 }, + [16] = { 17, 66.3, 46, 300 }, + [17] = { 89.9, 22.2, 46, 300 }, + [18] = { 26.9, 83.8, 47, 300 }, + [19] = { 74, 60.9, 331, 300 }, + [20] = { 74.2, 60.7, 331, 300 }, + [21] = { 50.2, 63.7, 406, 300 }, + [22] = { 53.1, 52.5, 409, 300 }, + [23] = { 52.7, 49.7, 409, 300 }, + [24] = { 72.5, 28.2, 721, 300 }, + [25] = { 93.3, 92.6, 5581, 300 }, + }, + }, + [2001586] = { + ["coords"] = { + [1] = { 45, 56.2, 8, 300 }, + [2] = { 45.1, 55.4, 8, 300 }, + [3] = { 48.7, 60.9, 11, 300 }, + [4] = { 45.1, 15.2, 14, 300 }, + [5] = { 34.2, 10.1, 17, 300 }, + [6] = { 94.9, 82.7, 25, 300 }, + [7] = { 97.1, 75.9, 25, 300 }, + [8] = { 63.5, 10.4, 33, 300 }, + [9] = { 51.4, 25.2, 45, 300 }, + [10] = { 17.3, 66.9, 46, 300 }, + [11] = { 39.9, 35.1, 46, 300 }, + [12] = { 40.5, 33.4, 46, 300 }, + [13] = { 89.9, 22.9, 46, 300 }, + [14] = { 29.7, 85.9, 47, 300 }, + [15] = { 88.9, 59.7, 331, 300 }, + [16] = { 79.6, 62.7, 406, 300 }, + [17] = { 54.7, 19.1, 5561, 300 }, + [18] = { 93.5, 93.2, 5581, 300 }, + [19] = { 6.1, 25.8, 5602, 300 }, + }, + }, + [2001587] = { + ["coords"] = { + [1] = { 26.6, 31.4, 1, 300 }, + [2] = { 25.2, 30.7, 1, 300 }, + [3] = { 24.6, 28.9, 1, 300 }, + [4] = { 44.8, 56.8, 8, 300 }, + [5] = { 45.1, 56.1, 8, 300 }, + [6] = { 45, 55.9, 8, 300 }, + [7] = { 39.2, 69.3, 12, 300 }, + [8] = { 42.4, 68.1, 14, 300 }, + [9] = { 36.6, 33.1, 17, 300 }, + [10] = { 94.1, 76.8, 25, 300 }, + [11] = { 63.5, 10.5, 33, 300 }, + [12] = { 63.4, 10.4, 33, 300 }, + [13] = { 63.6, 10.4, 33, 300 }, + [14] = { 63.5, 10.3, 33, 300 }, + [15] = { 49, 8.7, 33, 300 }, + [16] = { 18.9, 61.9, 44, 300 }, + [17] = { 19, 61.6, 44, 300 }, + [18] = { 51.5, 25.3, 45, 300 }, + [19] = { 51.4, 25.2, 45, 300 }, + [20] = { 51.1, 24.9, 45, 300 }, + [21] = { 16.9, 65.7, 46, 300 }, + [22] = { 39.7, 33.6, 46, 300 }, + [23] = { 29.8, 86, 47, 300 }, + [24] = { 29.7, 85.9, 47, 300 }, + [25] = { 61, 10.3, 215, 300 }, + [26] = { 74.1, 60.9, 331, 300 }, + [27] = { 74.2, 60.8, 331, 300 }, + [28] = { 73.9, 60.5, 331, 300 }, + [29] = { 73.9, 60.4, 331, 300 }, + [30] = { 88.8, 59.5, 331, 300 }, + [31] = { 89, 59.4, 331, 300 }, + [32] = { 88.9, 59.4, 331, 300 }, + [33] = { 52.8, 49.9, 409, 300 }, + [34] = { 93.5, 27.2, 721, 300 }, + [35] = { 81.4, 20.4, 721, 300 }, + [36] = { 76.2, 5, 721, 300 }, + [37] = { 54.8, 19, 5561, 300 }, + [38] = { 93.2, 92.1, 5581, 300 }, + }, + }, + [2001588] = { + ["coords"] = { + [1] = { 46, 52, 8, 300 }, + [2] = { 48.1, 51.8, 8, 300 }, + [3] = { 48.1, 51.2, 8, 300 }, + [4] = { 50.3, 49.2, 8, 300 }, + [5] = { 50.5, 47.8, 8, 300 }, + [6] = { 50.6, 47.5, 8, 300 }, + [7] = { 50.1, 47.3, 8, 300 }, + [8] = { 50.6, 47.2, 8, 300 }, + [9] = { 50.3, 47, 8, 300 }, + [10] = { 62, 19.7, 17, 300 }, + [11] = { 81, 76.6, 405, 300 }, + }, + }, + [2001589] = { + ["coords"] = {}, + }, + [2001590] = { + ["coords"] = { + [1] = { 55.5, 46.8, 5087, 300 }, + }, + }, + [2001591] = { + ["coords"] = { + [1] = { 40.5, 67.9, 14, 300 }, + [2] = { 66.4, 32.5, 17, 300 }, + }, + }, + [2001592] = { + ["coords"] = {}, + }, + [2001593] = { + ["coords"] = { + [1] = { 50.5, 49.6, 8, 300 }, + [2] = { 49, 47.8, 8, 300 }, + [3] = { 33.7, 48.1, 10, 300 }, + [4] = { 49.3, 60.2, 11, 300 }, + [5] = { 29.1, 62.1, 16, 300 }, + [6] = { 61.1, 24.1, 17, 300 }, + [7] = { 48, 8.4, 17, 300 }, + [8] = { 54.2, 1.3, 17, 300 }, + [9] = { 97, 82.4, 25, 300 }, + [10] = { 44.4, 98.7, 28, 300 }, + [11] = { 80.7, 60.2, 28, 300 }, + [12] = { 29, 45.1, 28, 300 }, + [13] = { 37.7, 66.2, 33, 300 }, + [14] = { 81.3, 51.6, 36, 300 }, + [15] = { 60.4, 76.6, 38, 300 }, + [16] = { 19.6, 65.7, 46, 300 }, + [17] = { 40.4, 35, 46, 300 }, + [18] = { 89.2, 22.6, 46, 300 }, + [19] = { 22.1, 68.4, 85, 300 }, + [20] = { 85.5, 58.5, 85, 300 }, + [21] = { 22.4, 83.6, 139, 300 }, + [22] = { 42.8, 52, 267, 300 }, + [23] = { 79.2, 81.8, 331, 300 }, + [24] = { 81, 74.9, 331, 0 }, + [25] = { 73.1, 60, 331, 300 }, + [26] = { 53.1, 51.4, 409, 300 }, + [27] = { 31.5, 36.5, 440, 300 }, + [28] = { 58.4, 22.4, 440, 300 }, + [29] = { 79.1, 64.4, 490, 300 }, + [30] = { 50.3, 30.2, 618, 300 }, + [31] = { 97, 14.4, 5179, 300 }, + [32] = { 54.6, 19.2, 5561, 300 }, + [33] = { 95.6, 92.1, 5581, 300 }, + [34] = { 29.5, 83.5, 5602, 300 }, + [35] = { 6.6, 25.2, 5602, 300 }, + }, + }, + [2001594] = { + ["coords"] = {}, + }, + [2001595] = { + ["coords"] = {}, + }, + [2001596] = { + ["coords"] = {}, + }, + [2001597] = { + ["coords"] = {}, + }, + [2001598] = { + ["coords"] = {}, + }, + [2001599] = { + ["coords"] = {}, + }, + [2001600] = { + ["coords"] = {}, + }, + [2001601] = { + ["coords"] = {}, + }, + [2001602] = { + ["coords"] = {}, + }, + [2001603] = { + ["coords"] = {}, + }, + [2001604] = { + ["coords"] = {}, + }, + [2001605] = { + ["coords"] = {}, + }, + [2001606] = { + ["coords"] = {}, + }, + [2001607] = { + ["coords"] = {}, + }, + [2001608] = { + ["coords"] = {}, + }, + [2001609] = { + ["coords"] = {}, + }, + [2001610] = { + ["coords"] = { + [1] = { 29.3, 62.1, 16, 300 }, + }, + }, + [2001611] = { + ["coords"] = {}, + }, + [2001612] = { + ["coords"] = {}, + }, + [2001613] = { + ["coords"] = {}, + }, + [2001614] = { + ["coords"] = {}, + }, + [2001615] = { + ["coords"] = {}, + }, + [2001616] = { + ["coords"] = {}, + }, + [2001617] = { + ["coords"] = {}, + }, + [2001618] = { + ["coords"] = {}, + }, + [2001619] = { + ["coords"] = {}, + }, + [2001620] = { + ["coords"] = {}, + }, + [2001621] = { + ["coords"] = {}, + }, + [2001622] = { + ["coords"] = {}, + }, + [2001623] = { + ["coords"] = {}, + }, + [2001624] = { + ["coords"] = {}, + }, + [2001625] = { + ["coords"] = {}, + }, + [2001626] = { + ["coords"] = {}, + }, + [2001627] = { + ["coords"] = {}, + }, + [2001628] = { + ["coords"] = {}, + }, + [2001629] = { + ["coords"] = {}, + }, + [2001630] = { + ["coords"] = {}, + }, + [2001631] = { + ["coords"] = {}, + }, + [2001632] = { + ["coords"] = {}, + }, + [2001633] = { + ["coords"] = {}, + }, + [2001634] = { + ["coords"] = {}, + }, + [2001635] = { + ["coords"] = {}, + }, + [2001636] = { + ["coords"] = { + [1] = { 87.5, 48.6, 2717, 300 }, + }, + }, + [2001637] = { + ["coords"] = {}, + }, + [2001638] = { + ["coords"] = {}, + }, + [2001639] = { + ["coords"] = {}, + }, + [2001640] = { + ["coords"] = {}, + }, + [2001641] = { + ["coords"] = {}, + }, + [2001642] = { + ["coords"] = { + [1] = { 24.3, 12.9, 406, 300 }, + }, + }, + [2001643] = { + ["coords"] = {}, + }, + [2001644] = { + ["coords"] = {}, + }, + [2001645] = { + ["coords"] = {}, + }, + [2001646] = { + ["coords"] = { + [1] = { 62.2, 40.6, 5087, 300 }, + }, + }, + [2001647] = { + ["coords"] = { + [1] = { 77.2, 85, 5208, 300 }, + }, + }, + [2001648] = { + ["coords"] = {}, + }, + [2001649] = { + ["coords"] = {}, + }, + [2001650] = { + ["coords"] = {}, + }, + [2001651] = { + ["coords"] = {}, + }, + [2001652] = { + ["coords"] = {}, + }, + [2001653] = { + ["coords"] = {}, + }, + [2001654] = { + ["coords"] = {}, + }, + [2001655] = { + ["coords"] = {}, + }, + [2001656] = { + ["coords"] = {}, + }, + [2001657] = { + ["coords"] = {}, + }, + [2001658] = { + ["coords"] = {}, + }, + [2001659] = { + ["coords"] = {}, + }, + [2001660] = { + ["coords"] = {}, + }, + [2001661] = { + ["coords"] = {}, + }, + [2001662] = { + ["coords"] = {}, + }, + [2001663] = { + ["coords"] = {}, + }, + [2001664] = { + ["coords"] = {}, + }, + [2001665] = { + ["coords"] = {}, + }, + [2001666] = { + ["coords"] = {}, + }, + [2001667] = { + ["coords"] = {}, + }, + [2001668] = { + ["coords"] = {}, + }, + [2001669] = { + ["coords"] = {}, + }, + [2001670] = { + ["coords"] = {}, + }, + [2001671] = { + ["coords"] = {}, + }, + [2001672] = { + ["coords"] = {}, + }, + [2001673] = { + ["coords"] = {}, + }, + [2001674] = { + ["coords"] = {}, + }, + [2001675] = { + ["coords"] = {}, + }, + [2001676] = { + ["coords"] = {}, + }, + [2001677] = { + ["coords"] = {}, + }, + [2001678] = { + ["coords"] = {}, + }, + [2001679] = { + ["coords"] = {}, + }, + [2001680] = { + ["coords"] = {}, + }, + [2001681] = { + ["coords"] = {}, + }, + [2001682] = { + ["coords"] = {}, + }, + [2001683] = { + ["coords"] = { + [1] = { 48.4, 82.2, 17, 300 }, + }, + }, + [2001684] = { + ["coords"] = { + [1] = { 48.5, 82.1, 17, 300 }, + }, + }, + [2001685] = { + ["coords"] = {}, + }, + [2001686] = { + ["coords"] = { + [1] = { 33.7, 47.3, 10, 300 }, + [2] = { 32.7, 47.1, 10, 300 }, + [3] = { 33, 46.9, 10, 300 }, + [4] = { 29.4, 45.2, 28, 300 }, + [5] = { 85.9, 58.6, 85, 300 }, + [6] = { 27.9, 43.9, 85, 300 }, + [7] = { 25.9, 43.3, 85, 300 }, + [8] = { 24.9, 41.8, 85, 300 }, + }, + }, + [2001687] = { + ["coords"] = { + [1] = { 34.4, 49.1, 10, 300 }, + [2] = { 25.5, 44.3, 85, 300 }, + [3] = { 28.1, 43.3, 85, 300 }, + [4] = { 25.5, 42.7, 85, 300 }, + [5] = { 24.3, 40.3, 85, 300 }, + [6] = { 68.1, 82.9, 130, 300 }, + [7] = { 14.9, 49.4, 267, 300 }, + [8] = { 72.6, 12, 5179, 300 }, + }, + }, + [2001688] = { + ["coords"] = { + [1] = { 34.3, 49.3, 10, 300 }, + [2] = { 32, 48.3, 10, 300 }, + [3] = { 28.5, 45.4, 28, 300 }, + [4] = { 85, 58.8, 85, 300 }, + [5] = { 68.6, 82.1, 130, 300 }, + [6] = { 66.6, 81.3, 130, 300 }, + [7] = { 15.6, 48.3, 267, 300 }, + [8] = { 13, 47.4, 267, 300 }, + [9] = { 73.2, 11.1, 5179, 300 }, + [10] = { 71, 10.3, 5179, 300 }, + }, + }, + [2001689] = { + ["coords"] = { + [1] = { 32.8, 50, 10, 300 }, + [2] = { 32.1, 47.6, 10, 300 }, + [3] = { 67, 82.7, 130, 300 }, + [4] = { 67.7, 82.7, 130, 300 }, + [5] = { 13.5, 49.2, 267, 300 }, + [6] = { 14.3, 49.1, 267, 300 }, + [7] = { 71.4, 11.9, 5179, 300 }, + [8] = { 72.2, 11.8, 5179, 300 }, + }, + }, + [2001690] = { + ["coords"] = { + [1] = { 34.4, 49.8, 10, 300 }, + [2] = { 33.3, 49.4, 10, 300 }, + }, + }, + [2001691] = { + ["coords"] = { + [1] = { 33.1, 50.4, 10, 300 }, + [2] = { 34.9, 48.7, 10, 300 }, + [3] = { 31.8, 48.7, 10, 300 }, + [4] = { 33.8, 47.2, 10, 300 }, + [5] = { 32.2, 46.6, 10, 300 }, + [6] = { 25.7, 46.8, 28, 300 }, + [7] = { 82.3, 60.2, 85, 300 }, + [8] = { 85.8, 56.6, 85, 300 }, + }, + }, + [2001692] = { + ["coords"] = { + [1] = { 33, 50, 10, 300 }, + [2] = { 32.8, 49.5, 10, 300 }, + [3] = { 66.7, 81.3, 130, 300 }, + [4] = { 13.1, 47.3, 267, 300 }, + [5] = { 71.1, 10.2, 5179, 300 }, + }, + }, + [2001693] = { + ["coords"] = { + [1] = { 33.4, 50.1, 10, 300 }, + [2] = { 31.9, 48, 10, 300 }, + [3] = { 32.8, 47.1, 10, 300 }, + [4] = { 32.2, 46.8, 10, 300 }, + [5] = { 25.7, 46.5, 28, 300 }, + [6] = { 82.4, 59.9, 85, 300 }, + [7] = { 82.4, 59.7, 85, 300 }, + [8] = { 82.7, 59.4, 85, 300 }, + [9] = { 67.8, 82.6, 130, 300 }, + [10] = { 14.5, 49, 267, 300 }, + [11] = { 72.3, 11.8, 5179, 300 }, + }, + }, + [2001694] = { + ["coords"] = { + [1] = { 32.1, 48.5, 10, 300 }, + }, + }, + [2001695] = { + ["coords"] = { + [1] = { 33.8, 50.2, 10, 300 }, + [2] = { 32.7, 49.3, 10, 300 }, + [3] = { 32, 48.7, 10, 300 }, + [4] = { 33, 48.1, 10, 300 }, + [5] = { 27.1, 43.3, 85, 300 }, + [6] = { 25.7, 41.5, 85, 300 }, + }, + }, + [2001696] = { + ["coords"] = { + [1] = { 33.9, 49.9, 10, 300 }, + [2] = { 25.3, 40.2, 85, 300 }, + }, + }, + [2001697] = { + ["coords"] = {}, + }, + [2001698] = { + ["coords"] = {}, + }, + [2001699] = { + ["coords"] = {}, + }, + [2001700] = { + ["coords"] = {}, + }, + [2001701] = { + ["coords"] = { + [1] = { 80.7, 71.9, 10, 300 }, + [2] = { 79.7, 60.6, 28, 300 }, + [3] = { 39, 83.9, 40, 300 }, + [4] = { 41.7, 75.2, 40, 300 }, + [5] = { 29.6, 72.2, 85, 300 }, + [6] = { 85.6, 57.8, 85, 300 }, + [7] = { 21.3, 84.1, 139, 300 }, + [8] = { 31, 89.8, 405, 300 }, + [9] = { 52.4, 33.4, 1581, 300 }, + }, + }, + [2001702] = { + ["coords"] = { + [1] = { 80.7, 71.9, 10, 300 }, + [2] = { 79.7, 60.6, 28, 300 }, + [3] = { 41.7, 75.2, 40, 300 }, + [4] = { 30.3, 72.2, 85, 300 }, + [5] = { 29.6, 72.2, 85, 300 }, + [6] = { 30.2, 71.9, 85, 300 }, + [7] = { 85.6, 57.8, 85, 300 }, + [8] = { 21.3, 84.1, 139, 300 }, + [9] = { 31, 89.8, 405, 300 }, + [10] = { 71.3, 55.2, 1497, 300 }, + [11] = { 52.4, 33.4, 1581, 300 }, + }, + }, + [2001703] = { + ["coords"] = {}, + }, + [2001704] = { + ["coords"] = {}, + }, + [2001705] = { + ["coords"] = {}, + }, + [2001706] = { + ["coords"] = {}, + }, + [2001707] = { + ["coords"] = { + [1] = { 32.6, 47.2, 10, 300 }, + [2] = { 89.1, 58.7, 331, 300 }, + [3] = { 89.1, 58.4, 331, 300 }, + [4] = { 21.1, 55, 331, 300 }, + [5] = { 21.2, 55, 331, 300 }, + [6] = { 21.2, 54.9, 331, 300 }, + [7] = { 21.1, 54.9, 331, 300 }, + [8] = { 21, 54.9, 331, 300 }, + [9] = { 21.2, 54.8, 331, 300 }, + [10] = { 21.1, 54.8, 331, 300 }, + [11] = { 44.6, 50.5, 406, 300 }, + [12] = { 44.7, 50.3, 406, 300 }, + [13] = { 44.5, 50, 406, 300 }, + [14] = { 57.6, 22, 406, 300 }, + [15] = { 57.7, 21.9, 406, 300 }, + [16] = { 57.5, 21.9, 406, 300 }, + [17] = { 57.7, 21.8, 406, 300 }, + [18] = { 57.6, 21.8, 406, 300 }, + }, + }, + [2001708] = { + ["coords"] = {}, + }, + [2001709] = { + ["coords"] = {}, + }, + [2001710] = { + ["coords"] = {}, + }, + [2001711] = { + ["coords"] = {}, + }, + [2001712] = { + ["coords"] = {}, + }, + [2001713] = { + ["coords"] = {}, + }, + [2001714] = { + ["coords"] = {}, + }, + [2001715] = { + ["coords"] = {}, + }, + [2001716] = { + ["coords"] = { + [1] = { 45.6, 85, 130, 25 }, + [2] = { 46.8, 14.5, 5179, 25 }, + }, + }, + [2001717] = { + ["coords"] = {}, + }, + [2001718] = { + ["coords"] = {}, + }, + [2001719] = { + ["coords"] = {}, + }, + [2001720] = { + ["coords"] = { + [1] = { 32.9, 50.3, 10, 300 }, + [2] = { 33.8, 50, 10, 300 }, + [3] = { 32.8, 49.4, 10, 300 }, + [4] = { 31.9, 48.2, 10, 300 }, + [5] = { 32.5, 46.8, 10, 300 }, + [6] = { 32.1, 46.8, 10, 300 }, + }, + }, + [2001721] = { + ["coords"] = { + [1] = { 33.1, 50.3, 10, 300 }, + [2] = { 32.6, 49.2, 10, 300 }, + [3] = { 32.5, 49.1, 10, 300 }, + [4] = { 32.1, 48.9, 10, 300 }, + [5] = { 33.2, 47.7, 10, 300 }, + [6] = { 32.9, 47.1, 10, 300 }, + }, + }, + [2001722] = { + ["coords"] = { + [1] = { 32.9, 50, 10, 300 }, + [2] = { 33.9, 49.9, 10, 300 }, + [3] = { 34.1, 49.8, 10, 300 }, + [4] = { 32.9, 49.8, 10, 300 }, + [5] = { 32.8, 49.6, 10, 300 }, + [6] = { 32.7, 49.2, 10, 300 }, + [7] = { 31.9, 48, 10, 300 }, + [8] = { 33.3, 47.8, 10, 300 }, + [9] = { 32.7, 46.9, 10, 300 }, + }, + }, + [2001723] = { + ["coords"] = { + [1] = { 33.3, 50.3, 10, 300 }, + [2] = { 33.6, 50.1, 10, 300 }, + [3] = { 34.3, 49.7, 10, 300 }, + [4] = { 32, 48.8, 10, 300 }, + [5] = { 31.9, 48.5, 10, 300 }, + [6] = { 32, 47.6, 10, 300 }, + [7] = { 32.1, 47.2, 10, 300 }, + [8] = { 32.3, 46.8, 10, 300 }, + }, + }, + [2001724] = { + ["coords"] = {}, + }, + [2001725] = { + ["coords"] = {}, + }, + [2001726] = { + ["coords"] = {}, + }, + [2001727] = { + ["coords"] = {}, + }, + [2001728] = { + ["coords"] = { + [1] = { 41.5, 14, 130, 300 }, + }, + }, + [2001729] = { + ["coords"] = { + [1] = { 26, 43.6, 85, 300 }, + }, + }, + [2001730] = { + ["coords"] = { + [1] = { 35, 48, 10, 300 }, + [2] = { 35, 47.9, 10, 300 }, + [3] = { 34.9, 47.8, 10, 300 }, + [4] = { 26.6, 43.3, 85, 300 }, + [5] = { 66.3, 47.1, 267, 300 }, + }, + }, + [2001731] = { + ["coords"] = {}, + }, + [2001732] = { + ["coords"] = { + [1] = { 32.4, 49, 10, 300 }, + }, + }, + [2001733] = { + ["coords"] = { + [1] = { 33.7, 17.4, 28, 300 }, + [2] = { 89.9, 32.2, 85, 300 }, + }, + }, + [2001734] = { + ["coords"] = { + [1] = { 31.2, 88.6, 405, 300 }, + }, + }, + [2001735] = { + ["coords"] = { + [1] = { 31.7, 88.5, 405, 300 }, + }, + }, + [2001736] = { + ["coords"] = {}, + }, + [2001737] = { + ["coords"] = { + [1] = { 30.7, 88.7, 405, 300 }, + [2] = { 30.8, 88.6, 405, 300 }, + [3] = { 31, 88.6, 405, 300 }, + }, + }, + [2001738] = { + ["coords"] = { + [1] = { 30.8, 88.6, 405, 300 }, + [2] = { 30.9, 88.6, 405, 300 }, + [3] = { 31.5, 88.6, 405, 300 }, + [4] = { 31.6, 88.6, 405, 300 }, + [5] = { 31.7, 88.5, 405, 300 }, + }, + }, + [2001739] = { + ["coords"] = { + [1] = { 30.4, 87.6, 405, 300 }, + }, + }, + [2001740] = { + ["coords"] = {}, + }, + [2001741] = { + ["coords"] = {}, + }, + [2001742] = { + ["coords"] = {}, + }, + [2001743] = { + ["coords"] = {}, + }, + [2001744] = { + ["coords"] = { + [1] = { 28.4, 43.7, 85, 300 }, + }, + }, + [2001745] = { + ["coords"] = { + [1] = { 28.4, 43.4, 85, 300 }, + }, + }, + [2001746] = { + ["coords"] = { + [1] = { 28.3, 43.8, 85, 300 }, + }, + }, + [2001747] = { + ["coords"] = {}, + }, + [2001748] = { + ["coords"] = {}, + }, + [2001749] = { + ["coords"] = {}, + }, + [2001750] = { + ["coords"] = { + [1] = { 28.2, 43.6, 85, 300 }, + [2] = { 28.3, 43.4, 85, 300 }, + [3] = { 28.2, 43.4, 85, 300 }, + }, + }, + [2001751] = { + ["coords"] = { + [1] = { 81.3, 71.9, 10, 300 }, + [2] = { 80.8, 71.1, 10, 300 }, + [3] = { 42, 74.8, 40, 300 }, + [4] = { 28.3, 43.6, 85, 300 }, + [5] = { 54.8, 30.2, 1581, 300 }, + }, + }, + [2001752] = { + ["coords"] = { + [1] = { 81, 72, 10, 300 }, + [2] = { 41.7, 75.2, 40, 300 }, + [3] = { 42.1, 74.8, 40, 300 }, + [4] = { 42, 74.6, 40, 300 }, + [5] = { 52.6, 33.4, 1581, 300 }, + [6] = { 55.5, 30.5, 1581, 300 }, + [7] = { 54.7, 28.9, 1581, 300 }, + }, + }, + [2001753] = { + ["coords"] = {}, + }, + [2001754] = { + ["coords"] = {}, + }, + [2001755] = { + ["coords"] = {}, + }, + [2001756] = { + ["coords"] = {}, + }, + [2001757] = { + ["coords"] = {}, + }, + [2001758] = { + ["coords"] = {}, + }, + [2001759] = { + ["coords"] = {}, + }, + [2001760] = { + ["coords"] = {}, + }, + [2001761] = { + ["coords"] = {}, + }, + [2001762] = { + ["coords"] = { + [1] = { 32.8, 46.9, 10, 300 }, + }, + }, + [2001763] = { + ["coords"] = { + [1] = { 25, 43.2, 85, 300 }, + [2] = { 25.7, 41.5, 85, 300 }, + [3] = { 25, 41.1, 85, 300 }, + [4] = { 25.9, 40.8, 85, 300 }, + [5] = { 25, 40.7, 85, 300 }, + [6] = { 26.1, 40.3, 85, 300 }, + [7] = { 25.2, 40.3, 85, 300 }, + }, + }, + [2001764] = { + ["coords"] = {}, + }, + [2001765] = { + ["coords"] = {}, + }, + [2001766] = { + ["coords"] = {}, + }, + [2001767] = { + ["coords"] = {}, + }, + [2001768] = { + ["coords"] = { + [1] = { 33.1, 50.1, 10, 300 }, + }, + }, + [2001769] = { + ["coords"] = {}, + }, + [2001770] = { + ["coords"] = { + [1] = { 32, 48.6, 10, 300 }, + }, + }, + [2001771] = { + ["coords"] = {}, + }, + [2001772] = { + ["coords"] = {}, + }, + [2001773] = { + ["coords"] = {}, + }, + [2001774] = { + ["coords"] = {}, + }, + [2001775] = { + ["coords"] = {}, + }, + [2001776] = { + ["coords"] = {}, + }, + [2001777] = { + ["coords"] = {}, + }, + [2001778] = { + ["coords"] = {}, + }, + [2001779] = { + ["coords"] = { + [1] = { 44.4, 73.4, 331, 300 }, + [2] = { 79.9, 39.7, 406, 300 }, + }, + }, + [2001780] = { + ["coords"] = { + [1] = { 80.6, 71.3, 10, 300 }, + [2] = { 62.5, 2.1, 33, 300 }, + [3] = { 37.4, 83.5, 41, 300 }, + [4] = { 30.4, 72.1, 85, 300 }, + }, + }, + [2001781] = { + ["coords"] = { + [1] = { 80.9, 72.2, 10, 300 }, + [2] = { 62.8, 84.5, 5121, 300 }, + }, + }, + [2001782] = { + ["coords"] = { + [1] = { 41.1, 74.1, 15, 25 }, + [2] = { 30.6, 38.3, 440, 300 }, + [3] = { 77.5, 67.6, 490, 300 }, + [4] = { 80.4, 40.7, 616, 300 }, + [5] = { 70.7, 16.8, 5581, 300 }, + }, + }, + [2001783] = { + ["coords"] = { + [1] = { 41.1, 74.1, 15, 25 }, + [2] = { 79.4, 61.7, 28, 300 }, + [3] = { 21, 85.3, 139, 300 }, + [4] = { 30.8, 90, 405, 300 }, + [5] = { 30.7, 88, 405, 300 }, + [6] = { 31.9, 87.1, 405, 300 }, + [7] = { 30.7, 38.3, 440, 300 }, + [8] = { 77.6, 67.6, 490, 300 }, + }, + }, + [2001784] = { + ["coords"] = { + [1] = { 30.7, 88, 405, 300 }, + [2] = { 31.9, 86.7, 405, 300 }, + [3] = { 30.8, 38.3, 440, 300 }, + [4] = { 77.7, 67.8, 490, 300 }, + [5] = { 70.7, 16.7, 5581, 300 }, + }, + }, + [2001785] = { + ["coords"] = { + [1] = { 79.5, 61.5, 28, 300 }, + [2] = { 21.1, 85.1, 139, 300 }, + [3] = { 30.9, 90, 405, 300 }, + [4] = { 30.7, 38, 440, 300 }, + [5] = { 77.6, 67.2, 490, 300 }, + }, + }, + [2001786] = { + ["coords"] = { + [1] = { 79.3, 61.4, 28, 300 }, + [2] = { 79.1, 61.2, 28, 300 }, + [3] = { 20.9, 85, 139, 300 }, + [4] = { 20.6, 84.7, 139, 300 }, + [5] = { 30.7, 87.9, 405, 300 }, + [6] = { 31.9, 86.6, 405, 300 }, + [7] = { 30.7, 38.1, 440, 300 }, + [8] = { 77.6, 67.3, 490, 300 }, + }, + }, + [2001787] = { + ["coords"] = { + [1] = { 32.6, 49.2, 10, 300 }, + [2] = { 32.1, 48.9, 10, 300 }, + [3] = { 79, 61.3, 28, 300 }, + [4] = { 20.6, 84.9, 139, 300 }, + }, + }, + [2001788] = { + ["coords"] = { + [1] = { 33.7, 17.4, 28, 300 }, + [2] = { 90, 32.2, 85, 300 }, + [3] = { 31.6, 86.7, 405, 300 }, + [4] = { 30.9, 38.3, 440, 300 }, + [5] = { 77.9, 67.7, 490, 300 }, + }, + }, + [2001789] = { + ["coords"] = { + [1] = { 81.1, 60.6, 28, 300 }, + [2] = { 30.2, 71.8, 85, 300 }, + [3] = { 26.6, 45.5, 85, 300 }, + [4] = { 22.9, 84.1, 139, 300 }, + [5] = { 31.1, 90.8, 405, 300 }, + [6] = { 67.3, 67.8, 408, 300 }, + [7] = { 67.3, 67.6, 408, 300 }, + [8] = { 56.9, 43.8, 409, 300 }, + [9] = { 49.2, 24.1, 409, 300 }, + [10] = { 49.1, 23.8, 409, 300 }, + [11] = { 61.1, 33.8, 4012, 300 }, + [12] = { 61.2, 33.7, 4012, 300 }, + [13] = { 61.3, 33.7, 4012, 300 }, + [14] = { 61.4, 33.6, 4012, 300 }, + [15] = { 44.7, 79.6, 5121, 300 }, + [16] = { 33, 76.2, 5179, 300 }, + [17] = { 75.8, 84.8, 5208, 300 }, + [18] = { 75.7, 83.8, 5208, 300 }, + [19] = { 78.1, 82.3, 5208, 300 }, + [20] = { 77.9, 82.3, 5208, 300 }, + [21] = { 77.8, 82.2, 5208, 300 }, + [22] = { 27.2, 23, 5225, 300 }, + }, + }, + [2001790] = { + ["coords"] = { + [1] = { 39, 91.2, 12, 300 }, + [2] = { 33.2, 48.5, 33, 300 }, + [3] = { 31.7, 85.6, 405, 300 }, + [4] = { 44.9, 79.7, 5121, 300 }, + [5] = { 27.2, 22.9, 5225, 300 }, + }, + }, + [2001791] = { + ["coords"] = { + [1] = { 80.6, 61.1, 28, 300 }, + [2] = { 22.4, 84.6, 139, 300 }, + }, + }, + [2001792] = { + ["coords"] = {}, + }, + [2001793] = { + ["coords"] = {}, + }, + [2001794] = { + ["coords"] = {}, + }, + [2001795] = { + ["coords"] = {}, + }, + [2001796] = { + ["coords"] = {}, + }, + [2001797] = { + ["coords"] = {}, + }, + [2001798] = { + ["coords"] = {}, + }, + [2001799] = { + ["coords"] = {}, + }, + [2001800] = { + ["coords"] = {}, + }, + [2001801] = { + ["coords"] = {}, + }, + [2001802] = { + ["coords"] = { + [1] = { 48.4, 63.3, 11, 300 }, + [2] = { 17.3, 64.5, 46, 300 }, + [3] = { 93.6, 91.1, 5581, 300 }, + [4] = { 5.9, 27.6, 5602, 300 }, + }, + }, + [2001803] = { + ["coords"] = { + [1] = { 39.7, 38.8, 8, 300 }, + [2] = { 79.7, 25.2, 85, 300 }, + [3] = { 20.6, 48.9, 267, 300 }, + [4] = { 77.6, 11.6, 5179, 300 }, + }, + }, + [2001804] = { + ["coords"] = { + [1] = { 65.1, 12.6, 33, 300 }, + }, + }, + [2001805] = { + ["coords"] = {}, + }, + [2001806] = { + ["coords"] = {}, + }, + [2001807] = { + ["coords"] = { + [1] = { 48.6, 62.3, 11, 300 }, + [2] = { 61.1, 24.7, 17, 300 }, + [3] = { 34.3, 10.3, 17, 300 }, + [4] = { 19.6, 65.8, 46, 300 }, + [5] = { 79.7, 25.5, 85, 300 }, + [6] = { 42.1, 74.9, 331, 300 }, + [7] = { 79.8, 62.9, 406, 300 }, + [8] = { 77.7, 41.1, 406, 300 }, + [9] = { 58.7, 35.1, 1497, 300 }, + [10] = { 45.3, 53.6, 5087, 300 }, + [11] = { 95.6, 92.2, 5581, 300 }, + [12] = { 6.1, 26.8, 5602, 300 }, + }, + }, + [2001808] = { + ["coords"] = { + [1] = { 30.8, 48.2, 33, 300 }, + [2] = { 20.8, 49, 267, 300 }, + [3] = { 60, 32.8, 1497, 300 }, + [4] = { 46.2, 58.8, 5087, 300 }, + [5] = { 77.8, 11.7, 5179, 300 }, + }, + }, + [2001809] = { + ["coords"] = { + [1] = { 74.3, 32, 45, 300 }, + [2] = { 59.5, 68.3, 85, 300 }, + [3] = { 54.9, 15.2, 1497, 300 }, + [4] = { 76.2, 85.5, 5208, 300 }, + [5] = { 76, 85.1, 5208, 300 }, + }, + }, + [2001810] = { + ["coords"] = {}, + }, + [2001811] = { + ["coords"] = { + [1] = { 65.1, 12.6, 33, 300 }, + }, + }, + [2001812] = { + ["coords"] = { + [1] = { 49.3, 9.7, 17, 300 }, + [2] = { 34.1, 18.8, 28, 0 }, + [3] = { 30.9, 48.1, 33, 300 }, + [4] = { 90.3, 33.5, 85, 0 }, + [5] = { 83.8, 56.1, 400, 25 }, + [6] = { 49.3, 32.3, 618, 300 }, + [7] = { 45.3, 52.8, 5087, 300 }, + }, + }, + [2001813] = { + ["coords"] = { + [1] = { 50.4, 47.4, 8, 300 }, + [2] = { 33.6, 48.9, 10, 300 }, + [3] = { 33.1, 48.5, 10, 300 }, + [4] = { 84.4, 79.6, 12, 300 }, + [5] = { 75.5, 49.6, 17, 300 }, + [6] = { 48.9, 9.9, 17, 300 }, + [7] = { 79.5, 61.7, 28, 300 }, + [8] = { 30.8, 47.4, 33, 300 }, + [9] = { 42.2, 74.7, 40, 300 }, + [10] = { 14.8, 69.6, 85, 300 }, + [11] = { 51.3, 67.5, 85, 300 }, + [12] = { 79.7, 25.4, 85, 300 }, + [13] = { 21.1, 85.4, 139, 300 }, + [14] = { 42.6, 52.3, 267, 300 }, + [15] = { 21.1, 48.4, 267, 300 }, + [16] = { 73.2, 56, 331, 300 }, + [17] = { 72.8, 55.7, 331, 300 }, + [18] = { 83.7, 56.5, 400, 25 }, + [19] = { 83.5, 55.8, 400, 25 }, + [20] = { 31.2, 38.3, 440, 300 }, + [21] = { 78.4, 67.7, 490, 300 }, + [22] = { 53.3, 29.9, 618, 300 }, + [23] = { 56.7, 29.3, 1581, 300 }, + [24] = { 96.8, 14.6, 5179, 300 }, + [25] = { 78.1, 11.2, 5179, 300 }, + }, + }, + [2001814] = { + ["coords"] = { + [1] = { 75.8, 74.2, 38, 25 }, + [2] = { 75.9, 74.1, 38, 25 }, + [3] = { 76.1, 74, 38, 25 }, + [4] = { 76.1, 73.9, 38, 25 }, + [5] = { 76.1, 73.8, 38, 25 }, + [6] = { 76.2, 73.8, 38, 25 }, + [7] = { 76.2, 73.7, 38, 25 }, + [8] = { 78, 73.6, 38, 25 }, + [9] = { 78.2, 73.6, 38, 25 }, + [10] = { 77.9, 73.6, 38, 25 }, + [11] = { 77.9, 73.5, 38, 25 }, + [12] = { 77.8, 73.5, 38, 25 }, + [13] = { 78.3, 73.5, 38, 25 }, + [14] = { 78.4, 73.4, 38, 25 }, + [15] = { 77.7, 73.4, 38, 25 }, + [16] = { 76.6, 73.4, 38, 25 }, + [17] = { 77, 73.4, 38, 25 }, + [18] = { 76.7, 73.4, 38, 25 }, + [19] = { 76.8, 73.4, 38, 25 }, + [20] = { 76.9, 73.4, 38, 25 }, + [21] = { 77.2, 73.4, 38, 25 }, + [22] = { 77.6, 73.4, 38, 25 }, + [23] = { 76.7, 73.3, 38, 25 }, + [24] = { 77.6, 73.3, 38, 25 }, + [25] = { 77.3, 73.3, 38, 25 }, + [26] = { 77.5, 73.3, 38, 25 }, + [27] = { 77.4, 73.3, 38, 25 }, + [28] = { 77.5, 73.2, 38, 25 }, + [29] = { 77.4, 73.2, 38, 25 }, + [30] = { 37.4, 82.2, 5602, 25 }, + [31] = { 37.5, 82.1, 5602, 25 }, + [32] = { 37.5, 82, 5602, 25 }, + [33] = { 37.6, 82, 5602, 25 }, + [34] = { 38.5, 82, 5602, 25 }, + [35] = { 38.6, 81.9, 5602, 25 }, + [36] = { 38.5, 81.9, 5602, 25 }, + [37] = { 38.4, 81.9, 5602, 25 }, + [38] = { 38.7, 81.9, 5602, 25 }, + [39] = { 38.3, 81.9, 5602, 25 }, + [40] = { 37.8, 81.9, 5602, 25 }, + [41] = { 38, 81.9, 5602, 25 }, + [42] = { 37.9, 81.9, 5602, 25 }, + [43] = { 38.1, 81.8, 5602, 25 }, + [44] = { 38.3, 81.8, 5602, 25 }, + [45] = { 37.8, 81.8, 5602, 25 }, + [46] = { 38.2, 81.8, 5602, 25 }, + }, + }, + [2001815] = { + ["coords"] = {}, + }, + [2001816] = { + ["coords"] = {}, + }, + [2001817] = { + ["coords"] = {}, + }, + [2001818] = { + ["coords"] = {}, + }, + [2001819] = { + ["coords"] = {}, + }, + [2001820] = { + ["coords"] = {}, + }, + [2001821] = { + ["coords"] = {}, + }, + [2001822] = { + ["coords"] = {}, + }, + [2001823] = { + ["coords"] = {}, + }, + [2001824] = { + ["coords"] = {}, + }, + [2001825] = { + ["coords"] = { + [1] = { 49.8, 35.8, 14, 25 }, + [2] = { 45.8, 85.7, 17, 300 }, + [3] = { 39.9, 84.8, 33, 0 }, + [4] = { 41.9, 10.2, 130, 300 }, + [5] = { 62.5, 60.4, 331, 300 }, + [6] = { 25.6, 11.5, 406, 300 }, + [7] = { 51.7, 51.8, 409, 300 }, + [8] = { 56.2, 44.6, 618, 300 }, + }, + }, + [2001826] = { + ["coords"] = {}, + }, + [2001827] = { + ["coords"] = { + [1] = { 28.4, 61.3, 12, 300 }, + [2] = { 23.2, 8.4, 130, 300 }, + }, + }, + [2001828] = { + ["coords"] = { + [1] = { 59.4, 19.4, 616, 300 }, + }, + }, + [2001829] = { + ["coords"] = {}, + }, + [2001830] = { + ["coords"] = {}, + }, + [2001831] = { + ["coords"] = {}, + }, + [2001832] = { + ["coords"] = {}, + }, + [2001833] = { + ["coords"] = {}, + }, + [2001834] = { + ["coords"] = {}, + }, + [2001835] = { + ["coords"] = {}, + }, + [2001836] = { + ["coords"] = {}, + }, + [2001837] = { + ["coords"] = {}, + }, + [2001838] = { + ["coords"] = {}, + }, + [2001839] = { + ["coords"] = {}, + }, + [2001840] = { + ["coords"] = {}, + }, + [2001841] = { + ["coords"] = {}, + }, + [2001842] = { + ["coords"] = {}, + }, + [2001843] = { + ["coords"] = {}, + }, + [2001844] = { + ["coords"] = { + [1] = { 25, 13.1, 406, 25 }, + [2] = { 23, 12.1, 406, 25 }, + }, + }, + [2001845] = { + ["coords"] = {}, + }, + [2001846] = { + ["coords"] = {}, + }, + [2001847] = { + ["coords"] = {}, + }, + [2001848] = { + ["coords"] = {}, + }, + [2001849] = { + ["coords"] = {}, + }, + [2001850] = { + ["coords"] = { + [1] = { 51.2, 68, 85, 300 }, + [2] = { 94.6, 22.6, 331, 300 }, + }, + }, + [2001851] = { + ["coords"] = { + [1] = { 84.1, 65.9, 616, 300 }, + [2] = { 48.7, 80.7, 618, 300 }, + }, + }, + [2001852] = { + ["coords"] = { + [1] = { 34.9, 9.8, 45, 300 }, + [2] = { 14.2, 71.5, 47, 300 }, + [3] = { 10.9, 46.9, 47, 300 }, + [4] = { 28.1, 57.9, 141, 300 }, + [5] = { 95.7, 6.5, 267, 300 }, + [6] = { 21.3, 32, 331, 300 }, + [7] = { 24.5, 13.2, 406, 25 }, + [8] = { 24.4, 13.1, 406, 25 }, + [9] = { 24.3, 12.7, 406, 25 }, + [10] = { 23.2, 12.4, 406, 25 }, + [11] = { 52.4, 52.6, 1657, 300 }, + [12] = { 38.5, 56.1, 5581, 300 }, + }, + }, + [2001853] = { + ["coords"] = { + [1] = { 10.9, 47, 47, 300 }, + [2] = { 28.1, 57.8, 141, 300 }, + [3] = { 95.7, 6.5, 267, 300 }, + [4] = { 20.8, 32.3, 331, 300 }, + [5] = { 52.6, 52.3, 1657, 300 }, + }, + }, + [2001854] = { + ["coords"] = { + [1] = { 54.7, 85.1, 408, 300 }, + [2] = { 54.3, 85.1, 408, 300 }, + [3] = { 55.2, 84.9, 408, 300 }, + [4] = { 54.5, 84.9, 408, 300 }, + [5] = { 54.6, 84.7, 408, 300 }, + [6] = { 54.9, 84.6, 408, 300 }, + [7] = { 54.6, 84.6, 408, 300 }, + [8] = { 54.8, 84.5, 408, 300 }, + [9] = { 55.3, 84.5, 408, 300 }, + [10] = { 54.7, 84.5, 408, 300 }, + [11] = { 55.1, 84.4, 408, 300 }, + [12] = { 54.7, 84.4, 408, 300 }, + [13] = { 54.9, 84.4, 408, 300 }, + [14] = { 55, 84.4, 408, 300 }, + [15] = { 53.8, 84.3, 408, 300 }, + [16] = { 55.2, 84.3, 408, 300 }, + [17] = { 54, 84.3, 408, 300 }, + [18] = { 54.4, 84.3, 408, 300 }, + [19] = { 55, 84.3, 408, 300 }, + [20] = { 55, 84.2, 408, 300 }, + [21] = { 55.3, 84.2, 408, 300 }, + [22] = { 54.7, 84.1, 408, 300 }, + [23] = { 54.5, 84.1, 408, 300 }, + [24] = { 54.8, 84.1, 408, 300 }, + [25] = { 54.6, 84.1, 408, 300 }, + [26] = { 55.3, 84.1, 408, 300 }, + [27] = { 54.7, 84, 408, 300 }, + [28] = { 55.4, 84, 408, 300 }, + [29] = { 55.2, 84, 408, 300 }, + [30] = { 55.2, 83.9, 408, 300 }, + [31] = { 54.9, 83.9, 408, 300 }, + [32] = { 54.8, 83.9, 408, 300 }, + [33] = { 54.8, 83.8, 408, 300 }, + [34] = { 54.9, 83.7, 408, 300 }, + [35] = { 55.1, 83.7, 408, 300 }, + [36] = { 54.8, 83.6, 408, 300 }, + [37] = { 54.9, 83.6, 408, 300 }, + [38] = { 55.2, 83.4, 408, 300 }, + [39] = { 54.5, 83.4, 408, 300 }, + [40] = { 55, 83.3, 408, 300 }, + }, + }, + [2001855] = { + ["coords"] = { + [1] = { 54.7, 84.8, 408, 300 }, + [2] = { 54.5, 84.7, 408, 300 }, + [3] = { 54.9, 84.6, 408, 300 }, + [4] = { 54.7, 84.6, 408, 300 }, + [5] = { 55.1, 84.5, 408, 300 }, + [6] = { 55.4, 84.5, 408, 300 }, + [7] = { 54.2, 84.4, 408, 300 }, + [8] = { 54.6, 84.4, 408, 300 }, + [9] = { 55.2, 84.4, 408, 300 }, + [10] = { 55, 84.4, 408, 300 }, + [11] = { 55.1, 84.3, 408, 300 }, + [12] = { 54.9, 84.3, 408, 300 }, + [13] = { 54.5, 84.3, 408, 300 }, + [14] = { 55.4, 84.3, 408, 300 }, + [15] = { 54.3, 84.3, 408, 300 }, + [16] = { 55.2, 84.1, 408, 300 }, + [17] = { 54.8, 84.1, 408, 300 }, + [18] = { 55.5, 84.1, 408, 300 }, + [19] = { 55.6, 84.1, 408, 300 }, + [20] = { 54.7, 84, 408, 300 }, + [21] = { 55.4, 84, 408, 300 }, + [22] = { 55.1, 84, 408, 300 }, + [23] = { 55, 84, 408, 300 }, + [24] = { 55.6, 83.9, 408, 300 }, + [25] = { 55.1, 83.8, 408, 300 }, + [26] = { 54.9, 83.7, 408, 300 }, + [27] = { 54.8, 83.6, 408, 300 }, + [28] = { 54.7, 83.6, 408, 300 }, + [29] = { 55.2, 83.6, 408, 300 }, + }, + }, + [2001856] = { + ["coords"] = {}, + }, + [2001857] = { + ["coords"] = {}, + }, + [2001858] = { + ["coords"] = {}, + }, + [2001859] = { + ["coords"] = {}, + }, + [2001860] = { + ["coords"] = {}, + }, + [2001861] = { + ["coords"] = {}, + }, + [2001862] = { + ["coords"] = {}, + }, + [2001863] = { + ["coords"] = {}, + }, + [2001864] = { + ["coords"] = {}, + }, + [2001865] = { + ["coords"] = {}, + }, + [2001866] = { + ["coords"] = {}, + }, + [2001867] = { + ["coords"] = {}, + }, + [2001868] = { + ["coords"] = {}, + }, + [2001869] = { + ["coords"] = {}, + }, + [2001870] = { + ["coords"] = {}, + }, + [2001871] = { + ["coords"] = { + [1] = { 61.1, 24.6, 17, 300 }, + [2] = { 44, 98.7, 28, 300 }, + [3] = { 79.1, 68.1, 28, 300 }, + [4] = { 79.1, 68, 28, 300 }, + [5] = { 79, 68, 28, 300 }, + [6] = { 78.9, 68, 28, 300 }, + [7] = { 79.1, 67.9, 28, 300 }, + [8] = { 78.8, 67.9, 28, 300 }, + [9] = { 78.7, 67.9, 28, 300 }, + [10] = { 79.2, 67.8, 28, 300 }, + [11] = { 78.6, 67.8, 28, 300 }, + [12] = { 78.5, 67.8, 28, 300 }, + [13] = { 78.4, 67.8, 28, 300 }, + [14] = { 79.2, 67.7, 28, 300 }, + [15] = { 78.4, 67.7, 28, 300 }, + [16] = { 79.2, 67.6, 28, 300 }, + [17] = { 78.4, 67.6, 28, 300 }, + [18] = { 79.2, 67.5, 28, 300 }, + [19] = { 78.4, 67.5, 28, 300 }, + [20] = { 79.2, 67.4, 28, 300 }, + [21] = { 78.5, 67.4, 28, 300 }, + [22] = { 79.3, 67.4, 28, 300 }, + [23] = { 78.5, 67.3, 28, 300 }, + [24] = { 79.3, 67.3, 28, 300 }, + [25] = { 78.5, 67.2, 28, 300 }, + [26] = { 79.2, 67.2, 28, 300 }, + [27] = { 79.1, 67.2, 28, 300 }, + [28] = { 78.5, 67.1, 28, 300 }, + [29] = { 78.7, 67, 28, 300 }, + [30] = { 78.6, 67, 28, 300 }, + [31] = { 78.5, 67, 28, 300 }, + [32] = { 78.6, 66.9, 28, 300 }, + [33] = { 43.4, 80.4, 33, 300 }, + [34] = { 43.4, 80.3, 33, 300 }, + [35] = { 30.3, 48.8, 33, 300 }, + [36] = { 30.2, 48.8, 33, 300 }, + [37] = { 30.3, 48.7, 33, 300 }, + [38] = { 80.7, 51.6, 36, 300 }, + }, + }, + [2001872] = { + ["coords"] = { + [1] = { 61.1, 24.6, 17, 300 }, + [2] = { 44.1, 98.8, 28, 300 }, + [3] = { 78.8, 67, 28, 300 }, + [4] = { 78.5, 66.9, 28, 300 }, + [5] = { 78.6, 66.9, 28, 300 }, + [6] = { 30.3, 48.9, 33, 300 }, + [7] = { 30.2, 48.9, 33, 300 }, + [8] = { 80.8, 51.7, 36, 300 }, + }, + }, + [2001873] = { + ["coords"] = { + [1] = { 48.6, 61.2, 11, 300 }, + [2] = { 48.9, 61.2, 11, 300 }, + [3] = { 6.1, 26, 5602, 300 }, + [4] = { 6.3, 26, 5602, 300 }, + }, + }, + [2001874] = { + ["coords"] = {}, + }, + [2001875] = { + ["coords"] = {}, + }, + [2001876] = { + ["coords"] = {}, + }, + [2001877] = { + ["coords"] = { + [1] = { 48.7, 61.2, 11, 300 }, + [2] = { 48.8, 61.2, 11, 300 }, + [3] = { 6.2, 26, 5602, 300 }, + }, + }, + [2001878] = { + ["coords"] = { + [1] = { 31.1, 37.9, 440, 300 }, + [2] = { 78.4, 67, 490, 300 }, + }, + }, + [2001879] = { + ["coords"] = { + [1] = { 51.5, 47.8, 8, 300 }, + [2] = { 51.5, 47.7, 8, 300 }, + [3] = { 32.1, 48.8, 10, 300 }, + [4] = { 32.9, 47.8, 10, 300 }, + [5] = { 48.2, 62, 11, 300 }, + [6] = { 48.2, 61.9, 11, 300 }, + [7] = { 48.8, 61.2, 11, 300 }, + [8] = { 48.9, 61.2, 11, 300 }, + [9] = { 37.8, 71.4, 14, 300 }, + [10] = { 44.7, 15.2, 14, 300 }, + [11] = { 65, 34.4, 17, 300 }, + [12] = { 61.3, 24.7, 17, 300 }, + [13] = { 61.4, 24.7, 17, 300 }, + [14] = { 61.4, 24.6, 17, 300 }, + [15] = { 54.1, 0.7, 17, 300 }, + [16] = { 43.1, 99.2, 28, 300 }, + [17] = { 43.1, 98.9, 28, 300 }, + [18] = { 43.1, 98.8, 28, 300 }, + [19] = { 44, 98.8, 28, 300 }, + [20] = { 43.3, 98.5, 28, 300 }, + [21] = { 43.5, 98.2, 28, 300 }, + [22] = { 81.3, 61.6, 28, 300 }, + [23] = { 79.3, 52.3, 36, 300 }, + [24] = { 79.3, 51.8, 36, 300 }, + [25] = { 79.3, 51.7, 36, 300 }, + [26] = { 80.7, 51.7, 36, 300 }, + [27] = { 79.5, 51.3, 36, 300 }, + [28] = { 79.6, 51.2, 36, 300 }, + [29] = { 79.9, 50.8, 36, 300 }, + [30] = { 19.2, 67.5, 46, 300 }, + [31] = { 19.1, 67.5, 46, 300 }, + [32] = { 20, 66.4, 46, 300 }, + [33] = { 15.7, 68.8, 85, 300 }, + [34] = { 15.8, 68.8, 85, 300 }, + [35] = { 16.4, 54.1, 85, 300 }, + [36] = { 16.4, 54, 85, 300 }, + [37] = { 68.1, 82.4, 130, 300 }, + [38] = { 66.9, 82.2, 130, 300 }, + [39] = { 68.2, 82.1, 130, 300 }, + [40] = { 68.3, 82.1, 130, 300 }, + [41] = { 23.1, 85.2, 139, 300 }, + [42] = { 42.7, 52.9, 267, 300 }, + [43] = { 42.7, 52.8, 267, 300 }, + [44] = { 14.9, 48.8, 267, 300 }, + [45] = { 13.3, 48.5, 267, 300 }, + [46] = { 15.1, 48.4, 267, 300 }, + [47] = { 21, 48.4, 267, 300 }, + [48] = { 15, 48.4, 267, 300 }, + [49] = { 15.1, 48.3, 267, 300 }, + [50] = { 79.1, 80.8, 331, 300 }, + [51] = { 83.4, 55.6, 400, 300 }, + [52] = { 83.5, 55.5, 400, 300 }, + [53] = { 24.4, 82.8, 440, 300 }, + [54] = { 58.2, 22.6, 440, 300 }, + [55] = { 96.9, 15.1, 5179, 300 }, + [56] = { 96.9, 15, 5179, 300 }, + [57] = { 72.6, 11.5, 5179, 300 }, + [58] = { 71.3, 11.3, 5179, 300 }, + [59] = { 72.8, 11.2, 5179, 300 }, + [60] = { 78, 11.2, 5179, 300 }, + [61] = { 72.8, 11.1, 5179, 300 }, + [62] = { 95.2, 93.8, 5581, 300 }, + [63] = { 95.2, 93.7, 5581, 300 }, + [64] = { 96, 92.7, 5581, 300 }, + [65] = { 43, 68.8, 5581, 300 }, + [66] = { 42.8, 68.1, 5581, 300 }, + [67] = { 42.8, 67.9, 5581, 300 }, + [68] = { 5.8, 26.6, 5602, 300 }, + [69] = { 5.8, 26.5, 5602, 300 }, + [70] = { 6.2, 26, 5602, 300 }, + [71] = { 6.3, 26, 5602, 300 }, + }, + }, + [2001880] = { + ["coords"] = {}, + }, + [2001881] = { + ["coords"] = { + [1] = { 55.8, 73.2, 14, 300 }, + [2] = { 58.8, 26.4, 14, 300 }, + [3] = { 45.3, 14.8, 14, 300 }, + [4] = { 45, 91.9, 16, 300 }, + [5] = { 44.2, 45, 16, 300 }, + [6] = { 54.5, 10.2, 16, 300 }, + [7] = { 34.1, 9.8, 17, 300 }, + [8] = { 54.3, 1.3, 17, 300 }, + [9] = { 95.8, 82.7, 25, 300 }, + [10] = { 44, 98.3, 28, 300 }, + [11] = { 48.9, 8.6, 33, 300 }, + [12] = { 80.7, 51, 36, 300 }, + [13] = { 78.1, 76.6, 38, 25 }, + [14] = { 78.5, 76.5, 38, 25 }, + [15] = { 13.1, 68.1, 46, 300 }, + [16] = { 40.1, 35.1, 46, 300 }, + [17] = { 21.1, 68.4, 85, 300 }, + [18] = { 67.4, 83.1, 130, 300 }, + [19] = { 13.9, 49.7, 267, 300 }, + [20] = { 79.4, 81.8, 331, 300 }, + [21] = { 79.4, 62.1, 406, 300 }, + [22] = { 60.7, 44.7, 409, 300 }, + [23] = { 60.9, 44.1, 409, 300 }, + [24] = { 61.2, 44, 409, 300 }, + [25] = { 59.2, 43.7, 409, 300 }, + [26] = { 58, 22.4, 440, 300 }, + [27] = { 72.3, 53.4, 1497, 300 }, + [28] = { 75.9, 49.1, 1497, 300 }, + [29] = { 30.1, 14, 1519, 300 }, + [30] = { 52.3, 77.6, 5087, 300 }, + [31] = { 71.8, 12.3, 5179, 300 }, + [32] = { 89.7, 94.3, 5581, 300 }, + [33] = { 32.7, 84.9, 5581, 300 }, + [34] = { 38.6, 83.5, 5602, 25 }, + [35] = { 38.8, 83.4, 5602, 25 }, + [36] = { 53.3, 56.5, 5602, 300 }, + }, + }, + [2001882] = { + ["coords"] = { + [1] = { 48.6, 61.7, 11, 300 }, + [2] = { 49.1, 60.8, 11, 300 }, + [3] = { 55.8, 73.2, 14, 300 }, + [4] = { 45.3, 14.7, 14, 300 }, + [5] = { 45, 91.9, 16, 300 }, + [6] = { 30, 71.3, 16, 300 }, + [7] = { 29.8, 71.1, 16, 300 }, + [8] = { 29.8, 71, 16, 300 }, + [9] = { 54.6, 10.2, 16, 300 }, + [10] = { 93.9, 77, 25, 300 }, + [11] = { 43.9, 99.2, 28, 300 }, + [12] = { 37.5, 66.5, 33, 300 }, + [13] = { 48.9, 8.6, 33, 300 }, + [14] = { 80.5, 52.4, 36, 300 }, + [15] = { 77.8, 75, 38, 25 }, + [16] = { 78.1, 74.5, 38, 25 }, + [17] = { 13.3, 68.4, 46, 300 }, + [18] = { 39.7, 33.7, 46, 300 }, + [19] = { 90.1, 22.4, 46, 300 }, + [20] = { 67.5, 83.5, 130, 300 }, + [21] = { 67.8, 83.1, 130, 300 }, + [22] = { 67.8, 81.9, 130, 300 }, + [23] = { 43.2, 97.8, 148, 300 }, + [24] = { 42.5, 52.8, 267, 300 }, + [25] = { 42.6, 51.2, 267, 300 }, + [26] = { 14.1, 50.3, 267, 300 }, + [27] = { 14.5, 49.7, 267, 300 }, + [28] = { 14.5, 48.1, 267, 300 }, + [29] = { 27.5, 15.9, 331, 300 }, + [30] = { 37, 51.4, 406, 300 }, + [31] = { 61.1, 44.7, 409, 300 }, + [32] = { 61.5, 44.4, 409, 300 }, + [33] = { 60.6, 44, 409, 300 }, + [34] = { 61.2, 43.8, 409, 300 }, + [35] = { 61.3, 43.8, 409, 300 }, + [36] = { 61.3, 43.6, 409, 300 }, + [37] = { 61.2, 43.5, 409, 300 }, + [38] = { 60.4, 39.8, 409, 300 }, + [39] = { 58.2, 22.1, 440, 300 }, + [40] = { 72.2, 53.6, 1497, 300 }, + [41] = { 73.4, 52, 1497, 300 }, + [42] = { 21.2, 36.8, 1519, 300 }, + [43] = { 27.7, 15.1, 1519, 300 }, + [44] = { 68.1, 25.8, 1637, 25 }, + [45] = { 42.1, 77, 5121, 300 }, + [46] = { 96.8, 15, 5179, 300 }, + [47] = { 96.8, 13.6, 5179, 300 }, + [48] = { 72, 12.8, 5179, 300 }, + [49] = { 72.3, 12.3, 5179, 300 }, + [50] = { 72.3, 11, 5179, 300 }, + [51] = { 27.9, 97.1, 5581, 300 }, + [52] = { 89.9, 94.5, 5581, 300 }, + [53] = { 31.4, 85.5, 5581, 300 }, + [54] = { 38.4, 82.7, 5602, 25 }, + [55] = { 38.5, 82.4, 5602, 25 }, + [56] = { 6.1, 26.4, 5602, 300 }, + [57] = { 6.4, 25.6, 5602, 300 }, + }, + }, + [2001883] = { + ["coords"] = { + [1] = { 24.1, 31.4, 1, 300 }, + [2] = { 58.8, 26.4, 14, 300 }, + [3] = { 57.5, 25.1, 14, 300 }, + [4] = { 44.9, 91.9, 16, 300 }, + [5] = { 44.2, 45.2, 16, 300 }, + [6] = { 44.1, 45.1, 16, 300 }, + [7] = { 63.8, 10.3, 33, 300 }, + [8] = { 41.9, 75, 40, 300 }, + [9] = { 77.1, 81.9, 47, 300 }, + [10] = { 30.4, 72.2, 85, 300 }, + [11] = { 21.8, 69.2, 85, 300 }, + [12] = { 43, 97.7, 148, 300 }, + [13] = { 27.3, 15.7, 331, 300 }, + [14] = { 61.5, 44.6, 409, 300 }, + [15] = { 60.7, 44.4, 409, 300 }, + [16] = { 61.5, 44.4, 409, 300 }, + [17] = { 60.9, 44.2, 409, 300 }, + [18] = { 60.8, 44.1, 409, 300 }, + [19] = { 60.8, 44, 409, 300 }, + [20] = { 60.7, 44, 409, 300 }, + [21] = { 61.2, 43.9, 409, 300 }, + [22] = { 61.2, 43.6, 409, 300 }, + [23] = { 61.6, 43.6, 409, 300 }, + [24] = { 59.3, 43.6, 409, 300 }, + [25] = { 61.2, 43.5, 409, 300 }, + [26] = { 59.3, 43.4, 409, 300 }, + [27] = { 60.1, 39.5, 409, 300 }, + [28] = { 39.1, 10.3, 490, 300 }, + [29] = { 72.6, 27.2, 721, 300 }, + [30] = { 71.5, 47.8, 1497, 300 }, + [31] = { 71.2, 46.5, 1497, 300 }, + [32] = { 53.7, 31.4, 1581, 300 }, + [33] = { 52.4, 77.2, 5087, 300 }, + [34] = { 39.6, 77.7, 5121, 300 }, + [35] = { 39.3, 55.4, 5179, 300 }, + }, + }, + [2001884] = { + ["coords"] = { + [1] = { 44.6, 14.7, 14, 300 }, + [2] = { 44.1, 45.1, 16, 300 }, + [3] = { 41.8, 74.9, 40, 300 }, + [4] = { 60.8, 44.2, 409, 300 }, + [5] = { 61.3, 43.5, 409, 300 }, + [6] = { 71.5, 47.8, 1497, 300 }, + [7] = { 53.6, 31.2, 1581, 300 }, + }, + }, + [2001885] = { + ["coords"] = { + [1] = { 58.6, 27.4, 14, 300 }, + [2] = { 58.7, 26.5, 14, 300 }, + [3] = { 57.5, 25.1, 14, 300 }, + [4] = { 44.2, 45.1, 16, 300 }, + [5] = { 44.1, 45.1, 16, 300 }, + [6] = { 51.5, 37.5, 16, 300 }, + [7] = { 54.7, 10.3, 16, 300 }, + [8] = { 42.3, 74.7, 40, 300 }, + [9] = { 30.4, 72.2, 85, 300 }, + [10] = { 21.8, 69.1, 85, 300 }, + [11] = { 21.3, 68.5, 85, 300 }, + [12] = { 43, 97.6, 148, 300 }, + [13] = { 27.3, 15.7, 331, 300 }, + [14] = { 61.1, 44.7, 409, 300 }, + [15] = { 61.5, 44.5, 409, 300 }, + [16] = { 60.7, 44.4, 409, 300 }, + [17] = { 61.5, 44.4, 409, 300 }, + [18] = { 60.9, 44.2, 409, 300 }, + [19] = { 60.7, 44, 409, 300 }, + [20] = { 61.2, 43.9, 409, 300 }, + [21] = { 61.6, 43.9, 409, 300 }, + [22] = { 60.7, 43.9, 409, 300 }, + [23] = { 61.2, 43.5, 409, 300 }, + [24] = { 59.3, 43.4, 409, 300 }, + [25] = { 71.5, 47.8, 1497, 300 }, + [26] = { 61, 64.3, 1519, 300 }, + [27] = { 56.7, 29.3, 1581, 300 }, + [28] = { 40, 76.9, 5087, 300 }, + }, + }, + [2001886] = { + ["coords"] = { + [1] = { 88.5, 72.4, 36, 300 }, + [2] = { 3.1, 51.4, 47, 300 }, + [3] = { 86.3, 11.8, 267, 300 }, + }, + }, + [2001887] = { + ["coords"] = { + [1] = { 54.3, 77.5, 38, 300 }, + [2] = { 67, 81.3, 130, 300 }, + [3] = { 13.4, 47.3, 267, 300 }, + [4] = { 71.4, 10.3, 5179, 300 }, + [5] = { 26.3, 83.9, 5602, 300 }, + }, + }, + [2001888] = { + ["coords"] = {}, + }, + [2001889] = { + ["coords"] = {}, + }, + [2001890] = { + ["coords"] = {}, + }, + [2001891] = { + ["coords"] = {}, + }, + [2001892] = { + ["coords"] = { + [1] = { 80.7, 71.2, 10, 300 }, + }, + }, + [2001893] = { + ["coords"] = { + [1] = { 59.9, 77.4, 5086, 300 }, + }, + }, + [2001894] = { + ["coords"] = { + [1] = { 80.7, 71.6, 10, 300 }, + [2] = { 49.2, 9.9, 17, 300 }, + [3] = { 64.1, 76.9, 5086, 300 }, + }, + }, + [2001895] = { + ["coords"] = { + [1] = { 32.6, 52.7, 33, 300 }, + [2] = { 51.2, 68, 85, 300 }, + [3] = { 63.5, 64.7, 5086, 300 }, + [4] = { 46.8, 59.3, 5087, 300 }, + [5] = { 75.7, 83.6, 5208, 300 }, + [6] = { 25.2, 10.2, 5628, 300 }, + }, + }, + [2001896] = { + ["coords"] = { + [1] = { 25.9, 42.5, 85, 300 }, + }, + }, + [2001897] = { + ["coords"] = { + [1] = { 30.1, 71.8, 85, 300 }, + [2] = { 30.8, 89.9, 405, 300 }, + [3] = { 30.6, 38.3, 440, 300 }, + [4] = { 77.4, 67.6, 490, 300 }, + [5] = { 37.2, 11.4, 490, 300 }, + }, + }, + [2001898] = { + ["coords"] = {}, + }, + [2001899] = { + ["coords"] = {}, + }, + [2001900] = { + ["coords"] = {}, + }, + [2001901] = { + ["coords"] = {}, + }, + [2001902] = { + ["coords"] = {}, + }, + [2001903] = { + ["coords"] = {}, + }, + [2001904] = { + ["coords"] = {}, + }, + [2001905] = { + ["coords"] = {}, + }, + [2001906] = { + ["coords"] = {}, + }, + [2001907] = { + ["coords"] = {}, + }, + [2001908] = { + ["coords"] = {}, + }, + [2001909] = { + ["coords"] = {}, + }, + [2001910] = { + ["coords"] = { + [1] = { 66.7, 46.5, 1519, 25 }, + }, + }, + [2001911] = { + ["coords"] = {}, + }, + [2001912] = { + ["coords"] = {}, + }, + [2001913] = { + ["coords"] = {}, + }, + [2001914] = { + ["coords"] = {}, + }, + [2001915] = { + ["coords"] = { + [1] = { 67.9, 26.6, 1519, 300 }, + [2] = { 52.9, 91.7, 5581, 300 }, + }, + }, + [2001916] = { + ["coords"] = {}, + }, + [2001917] = { + ["coords"] = { + [1] = { 35, 10.4, 45, 300 }, + [2] = { 14.3, 72.1, 47, 300 }, + [3] = { 42.2, 10.5, 130, 300 }, + }, + }, + [2001918] = { + ["coords"] = {}, + }, + [2001919] = { + ["coords"] = {}, + }, + [2001920] = { + ["coords"] = {}, + }, + [2001921] = { + ["coords"] = {}, + }, + [2001922] = { + ["coords"] = {}, + }, + [2001923] = { + ["coords"] = {}, + }, + [2001924] = { + ["coords"] = {}, + }, + [2001925] = { + ["coords"] = { + [1] = { 32.7, 43.4, 405, 300 }, + [2] = { 32.6, 43, 405, 300 }, + }, + }, + [2001926] = { + ["coords"] = { + [1] = { 32.5, 43.5, 405, 300 }, + [2] = { 32.7, 43.1, 405, 300 }, + }, + }, + [2001927] = { + ["coords"] = {}, + }, + [2001928] = { + ["coords"] = {}, + }, + [2001929] = { + ["coords"] = { + [1] = { 31.4, 36.5, 440, 300 }, + [2] = { 79, 64.4, 490, 300 }, + }, + }, + [2001930] = { + ["coords"] = { + [1] = { 49.2, 61, 11, 300 }, + [2] = { 6.6, 25.8, 5602, 300 }, + }, + }, + [2001931] = { + ["coords"] = {}, + }, + [2001932] = { + ["coords"] = {}, + }, + [2001933] = { + ["coords"] = {}, + }, + [2001934] = { + ["coords"] = {}, + }, + [2001935] = { + ["coords"] = {}, + }, + [2001936] = { + ["coords"] = { + [1] = { 48.8, 61.2, 11, 300 }, + [2] = { 49.2, 60.3, 11, 300 }, + [3] = { 28.9, 45.3, 28, 300 }, + [4] = { 85.4, 58.7, 85, 300 }, + [5] = { 68, 82.6, 130, 300 }, + [6] = { 42.7, 53.1, 267, 300 }, + [7] = { 14.7, 49, 267, 300 }, + [8] = { 25.1, 81.8, 440, 300 }, + [9] = { 96.9, 15.3, 5179, 300 }, + [10] = { 72.5, 11.7, 5179, 300 }, + [11] = { 6.2, 26, 5602, 300 }, + [12] = { 6.5, 25.3, 5602, 300 }, + }, + }, + [2001937] = { + ["coords"] = {}, + }, + [2001938] = { + ["coords"] = {}, + }, + [2001939] = { + ["coords"] = {}, + }, + [2001940] = { + ["coords"] = {}, + }, + [2001941] = { + ["coords"] = {}, + }, + [2001942] = { + ["coords"] = {}, + }, + [2001943] = { + ["coords"] = { + [1] = { 39.9, 85.3, 130, 300 }, + [2] = { 44.3, 84, 130, 25 }, + [3] = { 83.1, 55.2, 400, 25 }, + [4] = { 67.4, 27.3, 440, 300 }, + [5] = { 20.1, 61, 5179, 300 }, + [6] = { 42, 44.9, 5179, 300 }, + [7] = { 41.6, 42.8, 5179, 300 }, + [8] = { 40.7, 23.1, 5179, 300 }, + [9] = { 40.3, 14.8, 5179, 300 }, + [10] = { 45.4, 13.3, 5179, 25 }, + }, + }, + [2001944] = { + ["coords"] = { + [1] = { 25.4, 66.3, 16, 300 }, + [2] = { 53.2, 51.1, 409, 300 }, + }, + }, + [2001945] = { + ["coords"] = { + [1] = { 48.9, 62.2, 11, 300 }, + [2] = { 48.9, 62.1, 11, 300 }, + [3] = { 49.6, 60.7, 11, 300 }, + [4] = { 46, 46, 15, 300 }, + [5] = { 61.7, 23.7, 17, 300 }, + [6] = { 78.8, 66.8, 28, 300 }, + [7] = { 78.9, 66.8, 28, 300 }, + [8] = { 29.3, 44.7, 28, 300 }, + [9] = { 29.3, 44.6, 28, 300 }, + [10] = { 53.4, 98.1, 36, 300 }, + [11] = { 17.4, 66.9, 46, 300 }, + [12] = { 16.9, 65.6, 46, 300 }, + [13] = { 22.1, 69.4, 85, 300 }, + [14] = { 22.2, 69.4, 85, 300 }, + [15] = { 21.9, 67.7, 85, 300 }, + [16] = { 4.5, 62.4, 85, 300 }, + [17] = { 23.6, 58.4, 85, 300 }, + [18] = { 23.5, 58.4, 85, 300 }, + [19] = { 85.8, 58.1, 85, 300 }, + [20] = { 42, 10, 130, 300 }, + [21] = { 55.6, 34.3, 267, 300 }, + [22] = { 75.9, 48.8, 1497, 300 }, + [23] = { 93.6, 93.2, 5581, 300 }, + [24] = { 93.2, 92, 5581, 300 }, + [25] = { 6.3, 26.7, 5602, 300 }, + [26] = { 6.9, 25.6, 5602, 300 }, + [27] = { 6.8, 25.6, 5602, 300 }, + }, + }, + [2001946] = { + ["coords"] = { + [1] = { 48.9, 62.2, 11, 300 }, + [2] = { 62.7, 24.1, 17, 300 }, + [3] = { 29.3, 44.6, 28, 300 }, + [4] = { 53.3, 98.1, 36, 300 }, + [5] = { 53.4, 98.1, 36, 300 }, + [6] = { 51.2, 67.3, 85, 300 }, + [7] = { 85.8, 58.1, 85, 300 }, + [8] = { 85.8, 57.1, 85, 300 }, + [9] = { 55.5, 34.3, 267, 300 }, + [10] = { 55.6, 34.3, 267, 300 }, + [11] = { 21, 32, 331, 300 }, + [12] = { 6.3, 26.7, 5602, 300 }, + }, + }, + [2001947] = { + ["coords"] = { + [1] = { 31.2, 38.3, 440, 300 }, + [2] = { 78.6, 67.6, 490, 300 }, + [3] = { 76.1, 39.7, 1497, 300 }, + [4] = { 74.8, 38.6, 1497, 300 }, + [5] = { 74, 37.4, 1497, 300 }, + [6] = { 73.9, 33.5, 1497, 300 }, + [7] = { 73, 32.2, 1497, 300 }, + [8] = { 69.1, 28.9, 1497, 300 }, + }, + }, + [2001948] = { + ["coords"] = { + [1] = { 64.1, 15.9, 4, 300 }, + [2] = { 64.1, 15.6, 4, 300 }, + [3] = { 64.1, 15.3, 4, 300 }, + [4] = { 81.1, 61, 28, 300 }, + [5] = { 60.2, 68, 85, 300 }, + [6] = { 22.9, 84.5, 139, 300 }, + [7] = { 75.4, 38.6, 1497, 300 }, + [8] = { 76, 38.3, 1497, 300 }, + [9] = { 75.3, 37.8, 1497, 300 }, + [10] = { 74, 37.8, 1497, 300 }, + [11] = { 73.7, 37.3, 1497, 300 }, + [12] = { 73.5, 32.8, 1497, 300 }, + [13] = { 69.1, 29.6, 1497, 300 }, + [14] = { 58.4, 13.7, 1497, 300 }, + }, + }, + [2001949] = { + ["coords"] = { + [1] = { 37.8, 72.2, 14, 300 }, + [2] = { 64.9, 34.8, 17, 300 }, + [3] = { 68.2, 82.1, 130, 300 }, + [4] = { 15.1, 48.4, 267, 300 }, + [5] = { 38.5, 11, 490, 300 }, + [6] = { 72.8, 11.2, 5179, 300 }, + }, + }, + [2001950] = { + ["coords"] = {}, + }, + [2001951] = { + ["coords"] = {}, + }, + [2001952] = { + ["coords"] = {}, + }, + [2001953] = { + ["coords"] = {}, + }, + [2001954] = { + ["coords"] = {}, + }, + [2001955] = { + ["coords"] = { + [1] = { 29.1, 44.9, 28, 300 }, + [2] = { 29, 44.9, 28, 300 }, + [3] = { 22.1, 69.6, 85, 300 }, + [4] = { 4.3, 61.9, 85, 300 }, + [5] = { 85.6, 58.4, 85, 300 }, + [6] = { 85.5, 58.3, 85, 300 }, + [7] = { 49.9, 63, 267, 300 }, + [8] = { 59.7, 55, 1497, 300 }, + [9] = { 59.8, 54.7, 1497, 300 }, + [10] = { 59, 53.3, 1497, 300 }, + [11] = { 40.3, 77.1, 5087, 300 }, + }, + }, + [2001956] = { + ["coords"] = { + [1] = { 48.6, 83, 17, 300 }, + [2] = { 29.1, 44.9, 28, 300 }, + [3] = { 4.3, 62, 85, 300 }, + [4] = { 85.6, 58.4, 85, 300 }, + [5] = { 13.9, 55.3, 85, 300 }, + [6] = { 18.6, 42.1, 139, 300 }, + }, + }, + [2001957] = { + ["coords"] = { + [1] = { 32.6, 47.6, 10, 300 }, + [2] = { 29.4, 71.3, 16, 300 }, + [3] = { 29.8, 71, 16, 300 }, + [4] = { 98.5, 80.1, 25, 300 }, + [5] = { 78.8, 66.9, 28, 300 }, + [6] = { 60.5, 76.7, 38, 300 }, + [7] = { 83.2, 65, 38, 25 }, + [8] = { 17.8, 67, 46, 300 }, + [9] = { 40.8, 34.4, 46, 300 }, + [10] = { 89.3, 22.9, 46, 300 }, + [11] = { 73.1, 58.2, 331, 300 }, + [12] = { 82.6, 55.8, 400, 25 }, + [13] = { 37.1, 51.6, 406, 300 }, + [14] = { 38.7, 11.5, 490, 300 }, + [15] = { 49.5, 30.2, 618, 300 }, + [16] = { 36.8, 75.6, 1519, 300 }, + [17] = { 36, 75.5, 1519, 300 }, + [18] = { 71.7, 49.1, 2040, 300 }, + [19] = { 51, 34.4, 5121, 300 }, + [20] = { 71.9, 25.4, 5225, 300 }, + [21] = { 36.8, 19.6, 5561, 300 }, + [22] = { 94, 93.3, 5581, 300 }, + [23] = { 29.5, 83.5, 5602, 300 }, + [24] = { 41.1, 77.6, 5602, 25 }, + }, + }, + [2001958] = { + ["coords"] = { + [1] = { 49.1, 48, 8, 300 }, + [2] = { 84.9, 79.2, 12, 300 }, + [3] = { 57, 98.9, 14, 300 }, + [4] = { 37.7, 72.2, 14, 300 }, + [5] = { 46.2, 46.1, 15, 300 }, + [6] = { 29.3, 70.7, 16, 300 }, + [7] = { 29.1, 70.6, 16, 300 }, + [8] = { 43.6, 91.6, 17, 300 }, + [9] = { 75, 48.7, 17, 300 }, + [10] = { 64.9, 34.8, 17, 300 }, + [11] = { 61.6, 23.4, 17, 300 }, + [12] = { 54.1, 1.2, 17, 300 }, + [13] = { 78.8, 67, 28, 300 }, + [14] = { 80.5, 59.9, 28, 300 }, + [15] = { 19.3, 65.8, 46, 300 }, + [16] = { 22.2, 83.4, 139, 300 }, + [17] = { 79, 81.8, 331, 300 }, + [18] = { 73.1, 58.1, 331, 300 }, + [19] = { 72.2, 57.3, 331, 300 }, + [20] = { 31, 20.9, 400, 300 }, + [21] = { 58, 22.4, 440, 300 }, + [22] = { 58, 22.1, 440, 300 }, + [23] = { 38.7, 11.5, 490, 300 }, + [24] = { 38.8, 10.5, 490, 300 }, + [25] = { 36.9, 75.6, 1519, 300 }, + [26] = { 61.7, 70.9, 1519, 300 }, + [27] = { 69.7, 46.4, 2040, 300 }, + [28] = { 71, 24.2, 5225, 300 }, + [29] = { 95.3, 92.2, 5581, 300 }, + }, + }, + [2001959] = { + ["coords"] = { + [1] = { 37.7, 71.1, 14, 300 }, + [2] = { 64.9, 34.2, 17, 300 }, + [3] = { 61.7, 23.6, 17, 300 }, + [4] = { 19.2, 65.9, 46, 300 }, + [5] = { 72.3, 57.7, 331, 300 }, + [6] = { 74.5, 42.7, 357, 300 }, + [7] = { 39.3, 10.8, 490, 300 }, + [8] = { 95.3, 92.3, 5581, 300 }, + }, + }, + [2001960] = { + ["coords"] = { + [1] = { 48.9, 60.4, 11, 300 }, + [2] = { 57, 98.9, 14, 300 }, + [3] = { 75, 48.7, 17, 300 }, + [4] = { 61.7, 23.5, 17, 300 }, + [5] = { 79.8, 62.8, 28, 300 }, + [6] = { 35.2, 10.2, 45, 300 }, + [7] = { 14.5, 71.9, 47, 300 }, + [8] = { 21.5, 86.6, 139, 300 }, + [9] = { 82.6, 55.8, 400, 25 }, + [10] = { 58.3, 22.1, 440, 300 }, + [11] = { 36.8, 19.5, 5561, 300 }, + [12] = { 6.3, 25.3, 5602, 300 }, + }, + }, + [2001961] = { + ["coords"] = { + [1] = { 80.7, 75.9, 5086, 300 }, + [2] = { 79.3, 73.8, 5086, 300 }, + [3] = { 54.7, 26.1, 5087, 300 }, + [4] = { 67, 26, 5087, 300 }, + [5] = { 66.9, 16.6, 5087, 300 }, + }, + }, + [2001962] = { + ["coords"] = { + [1] = { 81.4, 71.6, 10, 300 }, + [2] = { 82.8, 80.1, 5086, 300 }, + [3] = { 82.6, 79.4, 5086, 300 }, + [4] = { 82.1, 79.4, 5086, 300 }, + [5] = { 52, 23, 5087, 300 }, + [6] = { 54.8, 17.5, 5087, 300 }, + [7] = { 57.4, 17.4, 5087, 300 }, + [8] = { 66.5, 9.6, 5087, 300 }, + }, + }, + [2001963] = { + ["coords"] = { + [1] = { 81.2, 72.1, 10, 300 }, + [2] = { 80.8, 71.9, 10, 300 }, + [3] = { 81.4, 71.6, 10, 300 }, + [4] = { 80.9, 71.2, 10, 300 }, + [5] = { 80.8, 71, 10, 300 }, + [6] = { 61.3, 24.4, 5087, 300 }, + }, + }, + [2001964] = { + ["coords"] = {}, + }, + [2001965] = { + ["coords"] = {}, + }, + [2001966] = { + ["coords"] = {}, + }, + [2001967] = { + ["coords"] = {}, + }, + [2001968] = { + ["coords"] = {}, + }, + [2001969] = { + ["coords"] = {}, + }, + [2001970] = { + ["coords"] = {}, + }, + [2001971] = { + ["coords"] = {}, + }, + [2001972] = { + ["coords"] = {}, + }, + [2001973] = { + ["coords"] = {}, + }, + [2001974] = { + ["coords"] = {}, + }, + [2001975] = { + ["coords"] = {}, + }, + [2001976] = { + ["coords"] = {}, + }, + [2001977] = { + ["coords"] = {}, + }, + [2001978] = { + ["coords"] = { + [1] = { 77.1, 74.6, 38, 25 }, + [2] = { 71.1, 46.6, 1497, 300 }, + [3] = { 38, 82.5, 5602, 25 }, + }, + }, + [2001979] = { + ["coords"] = {}, + }, + [2001980] = { + ["coords"] = {}, + }, + [2001981] = { + ["coords"] = {}, + }, + [2001982] = { + ["coords"] = {}, + }, + [2001983] = { + ["coords"] = {}, + }, + [2001984] = { + ["coords"] = {}, + }, + [2001985] = { + ["coords"] = {}, + }, + [2001986] = { + ["coords"] = {}, + }, + [2001987] = { + ["coords"] = {}, + }, + [2001988] = { + ["coords"] = {}, + }, + [2001989] = { + ["coords"] = {}, + }, + [2001990] = { + ["coords"] = {}, + }, + [2001991] = { + ["coords"] = {}, + }, + [2001992] = { + ["coords"] = {}, + }, + [2001993] = { + ["coords"] = { + [1] = { 58.1, 25.4, 14, 300 }, + }, + }, + [2001994] = { + ["coords"] = { + [1] = { 58.1, 25.7, 14, 300 }, + [2] = { 65.2, 12.6, 33, 300 }, + }, + }, + [2001995] = { + ["coords"] = { + [1] = { 66.6, 37.7, 1497, 300 }, + [2] = { 66.7, 28.9, 1497, 300 }, + }, + }, + [2001996] = { + ["coords"] = {}, + }, + [2001997] = { + ["coords"] = {}, + }, + [2001998] = { + ["coords"] = {}, + }, + [2001999] = { + ["coords"] = { + [1] = { 88.6, 72.6, 36, 300 }, + [2] = { 88.7, 72.5, 36, 300 }, + [3] = { 3.2, 51.5, 47, 300 }, + [4] = { 86.3, 11.9, 267, 300 }, + [5] = { 86.5, 11.9, 267, 300 }, + }, + }, + [2002000] = { + ["coords"] = { + [1] = { 64.7, 34.5, 17, 300 }, + [2] = { 78.8, 67.5, 28, 300 }, + [3] = { 35.5, 81, 41, 300 }, + }, + }, + [2002001] = { + ["coords"] = { + [1] = { 77, 56.7, 15, 300 }, + [2] = { 77, 56.6, 15, 300 }, + [3] = { 37, 34.1, 17, 300 }, + [4] = { 61.4, 18.3, 33, 300 }, + [5] = { 61.8, 12.2, 215, 300 }, + [6] = { 51.2, 61.7, 357, 300 }, + }, + }, + [2002002] = { + ["coords"] = { + [1] = { 37, 34.2, 17, 300 }, + [2] = { 61.1, 24.8, 17, 300 }, + [3] = { 61.1, 24.7, 17, 300 }, + [4] = { 61, 24.3, 17, 300 }, + [5] = { 61, 24.2, 17, 300 }, + [6] = { 61.3, 18.3, 33, 300 }, + [7] = { 61.5, 18.3, 33, 300 }, + [8] = { 61.8, 12.5, 215, 300 }, + }, + }, + [2002003] = { + ["coords"] = { + [1] = { 37, 34.3, 17, 300 }, + [2] = { 61.9, 12.6, 215, 300 }, + }, + }, + [2002004] = { + ["coords"] = {}, + }, + [2002005] = { + ["coords"] = {}, + }, + [2002006] = { + ["coords"] = { + [1] = { 33.6, 51.9, 14, 300 }, + [2] = { 61, 24.8, 17, 300 }, + [3] = { 61.1, 24.7, 17, 300 }, + [4] = { 62.8, 24.2, 17, 300 }, + [5] = { 79, 66.9, 28, 300 }, + [6] = { 37.3, 66.2, 33, 300 }, + [7] = { 88.7, 72.9, 36, 300 }, + [8] = { 88.7, 72.7, 36, 300 }, + [9] = { 88.6, 72.5, 36, 300 }, + [10] = { 17.8, 64.6, 46, 300 }, + [11] = { 17.3, 64.5, 46, 300 }, + [12] = { 3.3, 51.7, 47, 300 }, + [13] = { 3.2, 51.6, 47, 300 }, + [14] = { 3.2, 51.4, 47, 300 }, + [15] = { 86.5, 12.2, 267, 300 }, + [16] = { 86.4, 12, 267, 300 }, + [17] = { 86.4, 11.8, 267, 300 }, + [18] = { 94, 91.1, 5581, 300 }, + [19] = { 93.6, 91, 5581, 300 }, + }, + }, + [2002007] = { + ["coords"] = { + [1] = { 33.5, 51.9, 14, 300 }, + [2] = { 62.7, 24.2, 17, 300 }, + [3] = { 79, 66.5, 28, 300 }, + [4] = { 37.1, 66.1, 33, 300 }, + [5] = { 61.4, 18.5, 33, 300 }, + [6] = { 17.7, 65.2, 46, 300 }, + [7] = { 17.3, 65.1, 46, 300 }, + [8] = { 93.9, 91.7, 5581, 300 }, + [9] = { 93.5, 91.5, 5581, 300 }, + }, + }, + [2002008] = { + ["coords"] = {}, + }, + [2002009] = { + ["coords"] = {}, + }, + [2002010] = { + ["coords"] = {}, + }, + [2002011] = { + ["coords"] = {}, + }, + [2002012] = { + ["coords"] = {}, + }, + [2002013] = { + ["coords"] = { + [1] = { 58.8, 37.9, 4012, 300 }, + [2] = { 58.8, 37, 4012, 300 }, + [3] = { 46.4, 46.7, 5179, 300 }, + [4] = { 46.7, 46.4, 5179, 300 }, + }, + }, + [2002014] = { + ["coords"] = {}, + }, + [2002015] = { + ["coords"] = {}, + }, + [2002016] = { + ["coords"] = {}, + }, + [2002017] = { + ["coords"] = {}, + }, + [2002018] = { + ["coords"] = {}, + }, + [2002019] = { + ["coords"] = {}, + }, + [2002020] = { + ["coords"] = {}, + }, + [2002021] = { + ["coords"] = {}, + }, + [2002022] = { + ["coords"] = {}, + }, + [2002023] = { + ["coords"] = {}, + }, + [2002024] = { + ["coords"] = {}, + }, + [2002025] = { + ["coords"] = {}, + }, + [2002026] = { + ["coords"] = { + [1] = { 64.6, 12.1, 33, 300 }, + [2] = { 64.6, 12, 33, 300 }, + [3] = { 64.5, 12, 33, 300 }, + [4] = { 64.8, 11.9, 33, 300 }, + [5] = { 64.8, 11.7, 33, 300 }, + [6] = { 64.6, 11.7, 33, 300 }, + [7] = { 64.5, 11.6, 33, 300 }, + }, + }, + [2002027] = { + ["coords"] = { + [1] = { 64.4, 11.3, 33, 300 }, + }, + }, + [2002028] = { + ["coords"] = { + [1] = { 64.5, 16, 4, 300 }, + [2] = { 64.6, 15.7, 4, 300 }, + [3] = { 68.3, 48.6, 15, 300 }, + [4] = { 68.3, 48.4, 15, 300 }, + [5] = { 68.2, 48.3, 15, 300 }, + [6] = { 64.6, 11.5, 33, 300 }, + [7] = { 66.8, 47.6, 267, 300 }, + [8] = { 66.9, 47.3, 267, 300 }, + [9] = { 66.6, 47, 267, 300 }, + [10] = { 36.2, 55.1, 5561, 300 }, + }, + }, + [2002029] = { + ["coords"] = {}, + }, + [2002030] = { + ["coords"] = { + [1] = { 32.5, 52.8, 33, 300 }, + }, + }, + [2002031] = { + ["coords"] = {}, + }, + [2002032] = { + ["coords"] = {}, + }, + [2002033] = { + ["coords"] = { + [1] = { 41.7, 8.7, 14, 25 }, + [2] = { 34.5, 82.7, 1637, 25 }, + }, + }, + [2002034] = { + ["coords"] = {}, + }, + [2002035] = { + ["coords"] = {}, + }, + [2002036] = { + ["coords"] = {}, + }, + [2002037] = { + ["coords"] = {}, + }, + [2002038] = { + ["coords"] = {}, + }, + [2002039] = { + ["coords"] = {}, + }, + [2002040] = { + ["coords"] = {}, + }, + [2002041] = { + ["coords"] = {}, + }, + [2002042] = { + ["coords"] = {}, + }, + [2002043] = { + ["coords"] = {}, + }, + [2002044] = { + ["coords"] = {}, + }, + [2002045] = { + ["coords"] = {}, + }, + [2002046] = { + ["coords"] = {}, + }, + [2002047] = { + ["coords"] = {}, + }, + [2002048] = { + ["coords"] = { + [1] = { 59.7, 78.8, 408, 300 }, + [2] = { 40.9, 79.3, 5087, 300 }, + [3] = { 75, 54, 5087, 300 }, + }, + }, + [2002049] = { + ["coords"] = { + [1] = { 46.3, 73, 5087, 300 }, + }, + }, + [2002050] = { + ["coords"] = { + [1] = { 50.7, 78.6, 5087, 300 }, + }, + }, + [2002051] = { + ["coords"] = { + [1] = { 60.1, 82.6, 408, 300 }, + [2] = { 59.3, 79.7, 408, 300 }, + [3] = { 54.6, 56.8, 5087, 300 }, + }, + }, + [2002052] = { + ["coords"] = { + [1] = { 54.6, 58.5, 5087, 300 }, + }, + }, + [2002053] = { + ["coords"] = { + [1] = { 59.7, 81.1, 408, 300 }, + }, + }, + [2002054] = { + ["coords"] = { + [1] = { 55.1, 84.2, 408, 300 }, + }, + }, + [2002055] = { + ["coords"] = { + [1] = { 55.7, 83.7, 408, 300 }, + }, + }, + [2002056] = { + ["coords"] = { + [1] = { 54.2, 85.4, 408, 300 }, + [2] = { 55.2, 84.7, 408, 300 }, + }, + }, + [2002057] = { + ["coords"] = {}, + }, + [2002058] = { + ["coords"] = { + [1] = { 55.1, 83.7, 408, 300 }, + }, + }, + [2002059] = { + ["coords"] = { + [1] = { 54.8, 84.7, 408, 300 }, + [2] = { 55, 84.6, 408, 300 }, + }, + }, + [2002060] = { + ["coords"] = { + [1] = { 83.5, 55.4, 400, 300 }, + [2] = { 83, 54.8, 400, 300 }, + [3] = { 83.2, 53.8, 400, 300 }, + [4] = { 54.9, 84.6, 408, 300 }, + [5] = { 55.6, 84.3, 408, 300 }, + [6] = { 55, 83.3, 408, 300 }, + }, + }, + [2002061] = { + ["coords"] = {}, + }, + [2002062] = { + ["coords"] = { + [1] = { 43.8, 16.4, 357, 25 }, + [2] = { 43.5, 16.3, 357, 25 }, + }, + }, + [2002063] = { + ["coords"] = { + [1] = { 43.5, 16.6, 357, 25 }, + [2] = { 43.9, 16.1, 357, 25 }, + [3] = { 54.7, 85, 408, 300 }, + }, + }, + [2002064] = { + ["coords"] = { + [1] = { 43.6, 16, 357, 25 }, + }, + }, + [2002065] = { + ["coords"] = { + [1] = { 43.8, 16.9, 357, 25 }, + [2] = { 43.6, 16.8, 357, 25 }, + [3] = { 43.5, 16.3, 357, 25 }, + [4] = { 43.3, 16.2, 357, 25 }, + [5] = { 43.7, 15.7, 357, 25 }, + [6] = { 55.1, 84.4, 408, 300 }, + [7] = { 55.4, 84.1, 408, 300 }, + [8] = { 54.7, 83.7, 408, 300 }, + [9] = { 63.1, 54.3, 408, 300 }, + [10] = { 63.1, 53.4, 408, 300 }, + }, + }, + [2002066] = { + ["coords"] = {}, + }, + [2002067] = { + ["coords"] = {}, + }, + [2002068] = { + ["coords"] = {}, + }, + [2002069] = { + ["coords"] = {}, + }, + [2002070] = { + ["coords"] = {}, + }, + [2002071] = { + ["coords"] = { + [1] = { 57.4, 26.3, 14, 300 }, + [2] = { 77.6, 77.6, 1497, 300 }, + [3] = { 59.2, 25.3, 1537, 300 }, + [4] = { 45.7, 42.3, 1637, 300 }, + [5] = { 45.9, 42, 1637, 300 }, + }, + }, + [2002072] = { + ["coords"] = {}, + }, + [2002073] = { + ["coords"] = { + [1] = { 53.3, 20.8, 33, 300 }, + }, + }, + [2002074] = { + ["coords"] = {}, + }, + [2002075] = { + ["coords"] = {}, + }, + [2002076] = { + ["coords"] = { + [1] = { 53.5, 20.6, 33, 300 }, + }, + }, + [2002077] = { + ["coords"] = { + [1] = { 70.3, 85, 8, 300 }, + [2] = { 31.7, 48.1, 33, 300 }, + [3] = { 53.5, 19.9, 33, 300 }, + [4] = { 54.2, 18.9, 33, 300 }, + [5] = { 62, 9.1, 33, 300 }, + [6] = { 77.2, 82.1, 47, 300 }, + }, + }, + [2002078] = { + ["coords"] = { + [1] = { 70.6, 85.1, 8, 300 }, + [2] = { 70.4, 84.6, 8, 300 }, + [3] = { 31.3, 48.5, 33, 300 }, + [4] = { 53.2, 20.5, 33, 300 }, + }, + }, + [2002079] = { + ["coords"] = {}, + }, + [2002080] = { + ["coords"] = { + [1] = { 31.5, 48.6, 33, 300 }, + [2] = { 31.3, 48.6, 33, 300 }, + [3] = { 31.4, 48.6, 33, 300 }, + [4] = { 31.3, 48.5, 33, 300 }, + [5] = { 31.4, 48.4, 33, 300 }, + [6] = { 53.6, 19.7, 33, 300 }, + [7] = { 60.7, 19.5, 33, 300 }, + [8] = { 62.2, 19.3, 33, 300 }, + [9] = { 62.5, 19.3, 33, 300 }, + [10] = { 60.7, 19.2, 33, 300 }, + [11] = { 51, 19, 33, 300 }, + [12] = { 54.2, 18.9, 33, 300 }, + [13] = { 54.3, 18.8, 33, 300 }, + [14] = { 54.4, 18.7, 33, 300 }, + [15] = { 54.6, 18.4, 33, 300 }, + [16] = { 59.6, 14.7, 33, 300 }, + [17] = { 59.6, 14.6, 33, 300 }, + }, + }, + [2002081] = { + ["coords"] = { + [1] = { 54, 19.2, 33, 300 }, + [2] = { 54.2, 19, 33, 300 }, + [3] = { 54.5, 18.5, 33, 300 }, + [4] = { 59.5, 14.6, 33, 300 }, + [5] = { 56.6, 71.8, 409, 300 }, + }, + }, + [2002082] = { + ["coords"] = {}, + }, + [2002083] = { + ["coords"] = { + [1] = { 77.2, 81.7, 47, 300 }, + }, + }, + [2002084] = { + ["coords"] = { + [1] = { 69.8, 86.2, 8, 300 }, + [2] = { 69.4, 85.1, 8, 300 }, + [3] = { 56.1, 71.9, 409, 300 }, + }, + }, + [2002085] = { + ["coords"] = { + [1] = { 54.1, 19.2, 33, 300 }, + }, + }, + [2002086] = { + ["coords"] = { + [1] = { 53.3, 20.8, 33, 300 }, + [2] = { 54.5, 18.5, 33, 300 }, + [3] = { 56.7, 10.2, 33, 300 }, + }, + }, + [2002087] = { + ["coords"] = { + [1] = { 62.1, 19.2, 33, 300 }, + [2] = { 59.6, 14.7, 33, 300 }, + }, + }, + [2002088] = { + ["coords"] = { + [1] = { 59.6, 14.8, 33, 300 }, + [2] = { 59.6, 14.5, 33, 300 }, + }, + }, + [2002089] = { + ["coords"] = {}, + }, + [2002090] = { + ["coords"] = { + [1] = { 69.6, 85.7, 8, 300 }, + [2] = { 69.8, 85.5, 8, 300 }, + [3] = { 69.9, 85.4, 8, 300 }, + [4] = { 70.1, 85.2, 8, 300 }, + [5] = { 53.8, 19.4, 33, 300 }, + }, + }, + [2002091] = { + ["coords"] = {}, + }, + [2002092] = { + ["coords"] = {}, + }, + [2002093] = { + ["coords"] = {}, + }, + [2002094] = { + ["coords"] = {}, + }, + [2002095] = { + ["coords"] = {}, + }, + [2002096] = { + ["coords"] = {}, + }, + [2002097] = { + ["coords"] = { + [1] = { 52.6, 19.3, 33, 300 }, + }, + }, + [2002098] = { + ["coords"] = {}, + }, + [2002099] = { + ["coords"] = {}, + }, + [2002100] = { + ["coords"] = {}, + }, + [2002101] = { + ["coords"] = {}, + }, + [2002102] = { + ["coords"] = {}, + }, + [2002103] = { + ["coords"] = { + [1] = { 43.7, 29.9, 45, 300 }, + }, + }, + [2002104] = { + ["coords"] = {}, + }, + [2002105] = { + ["coords"] = { + [1] = { 58.4, 15.4, 33, 300 }, + [2] = { 57.7, 14.7, 33, 300 }, + [3] = { 58.6, 13.4, 33, 300 }, + [4] = { 60.3, 11.2, 33, 300 }, + }, + }, + [2002106] = { + ["coords"] = {}, + }, + [2002107] = { + ["coords"] = {}, + }, + [2002108] = { + ["coords"] = { + [1] = { 54.5, 18.4, 33, 300 }, + }, + }, + [2002109] = { + ["coords"] = {}, + }, + [2002110] = { + ["coords"] = { + [1] = { 65, 28.6, 33, 300 }, + [2] = { 63.6, 28.6, 33, 300 }, + [3] = { 63.7, 27.5, 33, 300 }, + [4] = { 64.6, 26.8, 33, 300 }, + [5] = { 63.5, 26.1, 33, 300 }, + [6] = { 59.3, 15.8, 33, 300 }, + [7] = { 59.1, 13.8, 33, 300 }, + [8] = { 62.3, 9, 33, 300 }, + [9] = { 61.8, 8.9, 33, 300 }, + [10] = { 62, 8.3, 33, 300 }, + [11] = { 43.4, 16.2, 357, 25 }, + }, + }, + [2002111] = { + ["coords"] = {}, + }, + [2002112] = { + ["coords"] = {}, + }, + [2002113] = { + ["coords"] = {}, + }, + [2002114] = { + ["coords"] = {}, + }, + [2002115] = { + ["coords"] = {}, + }, + [2002116] = { + ["coords"] = {}, + }, + [2002117] = { + ["coords"] = {}, + }, + [2002118] = { + ["coords"] = {}, + }, + [2002119] = { + ["coords"] = {}, + }, + [2002120] = { + ["coords"] = {}, + }, + [2002121] = { + ["coords"] = {}, + }, + [2002122] = { + ["coords"] = {}, + }, + [2002123] = { + ["coords"] = {}, + }, + [2002124] = { + ["coords"] = {}, + }, + [2002125] = { + ["coords"] = {}, + }, + [2002126] = { + ["coords"] = {}, + }, + [2002127] = { + ["coords"] = {}, + }, + [2002128] = { + ["coords"] = {}, + }, + [2002129] = { + ["coords"] = { + [1] = { 50.6, 42.7, 8, 300 }, + [2] = { 50.8, 42.3, 8, 300 }, + }, + }, + [2002130] = { + ["coords"] = { + [1] = { 41.2, 73.8, 15, 25 }, + }, + }, + [2002131] = { + ["coords"] = { + [1] = { 50.5, 44.2, 8, 300 }, + [2] = { 65.3, 12.8, 33, 300 }, + [3] = { 65.3, 12.6, 33, 300 }, + [4] = { 65.2, 12.3, 33, 300 }, + [5] = { 65.1, 12.2, 33, 300 }, + }, + }, + [2002132] = { + ["coords"] = {}, + }, + [2002133] = { + ["coords"] = {}, + }, + [2002134] = { + ["coords"] = { + [1] = { 49, 47.3, 8, 300 }, + [2] = { 51.1, 45.4, 8, 300 }, + }, + }, + [2002135] = { + ["coords"] = {}, + }, + [2002136] = { + ["coords"] = {}, + }, + [2002137] = { + ["coords"] = {}, + }, + [2002138] = { + ["coords"] = { + [1] = { 60.8, 19.4, 33, 300 }, + }, + }, + [2002139] = { + ["coords"] = {}, + }, + [2002140] = { + ["coords"] = {}, + }, + [2002141] = { + ["coords"] = {}, + }, + [2002142] = { + ["coords"] = { + [1] = { 49.8, 48.7, 8, 300 }, + }, + }, + [2002143] = { + ["coords"] = {}, + }, + [2002144] = { + ["coords"] = {}, + }, + [2002145] = { + ["coords"] = {}, + }, + [2002146] = { + ["coords"] = {}, + }, + [2002147] = { + ["coords"] = {}, + }, + [2002148] = { + ["coords"] = {}, + }, + [2002149] = { + ["coords"] = {}, + }, + [2002150] = { + ["coords"] = {}, + }, + [2002151] = { + ["coords"] = {}, + }, + [2002152] = { + ["coords"] = {}, + }, + [2002153] = { + ["coords"] = { + [1] = { 31.3, 48.5, 33, 300 }, + [2] = { 64.8, 23.1, 33, 300 }, + [3] = { 64.4, 16.9, 33, 300 }, + [4] = { 77, 81.7, 47, 300 }, + }, + }, + [2002154] = { + ["coords"] = {}, + }, + [2002155] = { + ["coords"] = { + [1] = { 49.3, 9.7, 17, 300 }, + [2] = { 12.7, 78.1, 85, 300 }, + [3] = { 13, 77.7, 85, 300 }, + [4] = { 29.7, 72.5, 85, 300 }, + [5] = { 23.6, 6.5, 130, 300 }, + [6] = { 24, 6.1, 130, 300 }, + [7] = { 66.2, 47.2, 267, 300 }, + [8] = { 83.7, 56.5, 400, 25 }, + [9] = { 83.9, 55.9, 400, 25 }, + [10] = { 66.3, 85, 618, 300 }, + [11] = { 34.4, 81.6, 5086, 300 }, + [12] = { 53.7, 73.9, 5561, 300 }, + [13] = { 53.9, 73.8, 5561, 300 }, + }, + }, + [2002156] = { + ["coords"] = { + [1] = { 49.3, 9.7, 17, 300 }, + [2] = { 29.4, 44.8, 28, 300 }, + [3] = { 13.6, 78.1, 85, 300 }, + [4] = { 13, 77.8, 85, 300 }, + [5] = { 85.9, 58.3, 85, 300 }, + [6] = { 24.5, 6.5, 130, 300 }, + [7] = { 23.9, 6.1, 130, 300 }, + [8] = { 66.3, 85.1, 618, 300 }, + [9] = { 66.3, 85, 618, 300 }, + [10] = { 53.6, 73.8, 5561, 300 }, + }, + }, + [2002157] = { + ["coords"] = { + [1] = { 65.1, 12.6, 33, 300 }, + [2] = { 66.3, 85, 618, 300 }, + }, + }, + [2002158] = { + ["coords"] = { + [1] = { 65.1, 12.7, 33, 300 }, + [2] = { 65.1, 12.6, 33, 300 }, + [3] = { 60.2, 68.2, 85, 300 }, + [4] = { 58.4, 14.8, 1497, 300 }, + [5] = { 76.1, 85.2, 5208, 300 }, + }, + }, + [2002159] = { + ["coords"] = { + [1] = { 66.3, 85, 618, 300 }, + }, + }, + [2002160] = { + ["coords"] = { + [1] = { 84, 56.5, 400, 25 }, + [2] = { 83.7, 56.5, 400, 25 }, + [3] = { 83.9, 56.2, 400, 25 }, + [4] = { 66.3, 85, 618, 300 }, + }, + }, + [2002161] = { + ["coords"] = {}, + }, + [2002162] = { + ["coords"] = {}, + }, + [2002163] = { + ["coords"] = {}, + }, + [2002164] = { + ["coords"] = {}, + }, + [2002165] = { + ["coords"] = {}, + }, + [2002166] = { + ["coords"] = {}, + }, + [2002167] = { + ["coords"] = {}, + }, + [2002168] = { + ["coords"] = {}, + }, + [2002169] = { + ["coords"] = {}, + }, + [2002170] = { + ["coords"] = {}, + }, + [2002171] = { + ["coords"] = {}, + }, + [2002172] = { + ["coords"] = {}, + }, + [2002173] = { + ["coords"] = {}, + }, + [2002174] = { + ["coords"] = {}, + }, + [2002175] = { + ["coords"] = {}, + }, + [2002176] = { + ["coords"] = {}, + }, + [2002177] = { + ["coords"] = { + [1] = { 53.2, 99, 36, 300 }, + [2] = { 55.4, 35, 267, 300 }, + [3] = { 79.9, 77.7, 5086, 300 }, + [4] = { 81.6, 77.4, 5086, 300 }, + [5] = { 76.7, 76.9, 5086, 300 }, + [6] = { 75.1, 76.8, 5086, 300 }, + [7] = { 84.5, 76.5, 5086, 300 }, + [8] = { 86.1, 76.4, 5086, 300 }, + [9] = { 80.4, 75.8, 5086, 300 }, + [10] = { 81, 75.6, 5086, 300 }, + [11] = { 81.6, 75.5, 5086, 300 }, + }, + }, + [2002178] = { + ["coords"] = { + [1] = { 80.5, 77.8, 5086, 300 }, + [2] = { 81, 77.1, 5086, 300 }, + [3] = { 79.9, 76.3, 5086, 300 }, + }, + }, + [2002179] = { + ["coords"] = { + [1] = { 75.8, 76.8, 5086, 300 }, + [2] = { 85.4, 76.6, 5086, 300 }, + }, + }, + [2002180] = { + ["coords"] = {}, + }, + [2002181] = { + ["coords"] = {}, + }, + [2002182] = { + ["coords"] = {}, + }, + [2002183] = { + ["coords"] = {}, + }, + [2002184] = { + ["coords"] = {}, + }, + [2002185] = { + ["coords"] = {}, + }, + [2002186] = { + ["coords"] = {}, + }, + [2002187] = { + ["coords"] = {}, + }, + [2002188] = { + ["coords"] = {}, + }, + [2002189] = { + ["coords"] = {}, + }, + [2002190] = { + ["coords"] = {}, + }, + [2002191] = { + ["coords"] = {}, + }, + [2002192] = { + ["coords"] = {}, + }, + [2002193] = { + ["coords"] = {}, + }, + [2002194] = { + ["coords"] = {}, + }, + [2002195] = { + ["coords"] = {}, + }, + [2002196] = { + ["coords"] = { + [1] = { 33.6, 49.4, 10, 300 }, + [2] = { 49.2, 60.8, 11, 300 }, + [3] = { 43.9, 98.6, 28, 300 }, + [4] = { 80.6, 51.5, 36, 300 }, + [5] = { 6.5, 25.7, 5602, 300 }, + }, + }, + [2002197] = { + ["coords"] = { + [1] = { 42, 76.1, 40, 300 }, + [2] = { 37.7, 11.3, 490, 300 }, + [3] = { 54.7, 40.4, 1581, 300 }, + }, + }, + [2002198] = { + ["coords"] = {}, + }, + [2002199] = { + ["coords"] = {}, + }, + [2002200] = { + ["coords"] = {}, + }, + [2002201] = { + ["coords"] = {}, + }, + [2002202] = { + ["coords"] = {}, + }, + [2002203] = { + ["coords"] = {}, + }, + [2002204] = { + ["coords"] = {}, + }, + [2002205] = { + ["coords"] = {}, + }, + [2002206] = { + ["coords"] = {}, + }, + [2002207] = { + ["coords"] = {}, + }, + [2002208] = { + ["coords"] = { + [1] = { 58.6, 27.4, 14, 300 }, + [2] = { 58.5, 27.3, 14, 300 }, + [3] = { 58.5, 27.2, 14, 300 }, + [4] = { 58.6, 26.5, 14, 300 }, + [5] = { 58.7, 26.4, 14, 300 }, + [6] = { 58.7, 26.3, 14, 300 }, + [7] = { 58.1, 25.6, 14, 300 }, + [8] = { 57.5, 25.1, 14, 300 }, + [9] = { 57.6, 24.9, 14, 300 }, + [10] = { 45, 91.8, 16, 300 }, + [11] = { 44.4, 45.5, 16, 300 }, + [12] = { 44.2, 45.1, 16, 300 }, + [13] = { 44.1, 44.9, 16, 300 }, + [14] = { 44.2, 44.9, 16, 300 }, + [15] = { 54.6, 10.2, 16, 300 }, + [16] = { 40.1, 84.5, 33, 0 }, + [17] = { 40, 84.5, 33, 0 }, + [18] = { 31.6, 49.1, 33, 300 }, + [19] = { 31.9, 48.5, 33, 300 }, + [20] = { 31.7, 48.4, 33, 300 }, + [21] = { 31.6, 48.3, 33, 300 }, + [22] = { 49, 8.8, 33, 300 }, + [23] = { 49, 8.7, 33, 300 }, + [24] = { 34.9, 10.2, 45, 300 }, + [25] = { 14.2, 71.9, 47, 300 }, + [26] = { 21.8, 69.1, 85, 300 }, + [27] = { 20.8, 68.8, 85, 300 }, + [28] = { 21.3, 68.7, 85, 300 }, + [29] = { 21.3, 68.6, 85, 300 }, + [30] = { 15.5, 68.6, 85, 300 }, + [31] = { 21.2, 68.5, 85, 300 }, + [32] = { 21.2, 68.4, 85, 300 }, + [33] = { 61, 44.7, 409, 300 }, + [34] = { 60.6, 44.7, 409, 300 }, + [35] = { 60.6, 44.6, 409, 300 }, + [36] = { 61.1, 44.6, 409, 300 }, + [37] = { 60.3, 44.6, 409, 300 }, + [38] = { 61.4, 44.5, 409, 300 }, + [39] = { 61.6, 44.5, 409, 300 }, + [40] = { 61.1, 44.3, 409, 300 }, + [41] = { 61.5, 44.2, 409, 300 }, + [42] = { 60.9, 44.1, 409, 300 }, + [43] = { 60.8, 44.1, 409, 300 }, + [44] = { 60.7, 44, 409, 300 }, + [45] = { 61.6, 43.9, 409, 300 }, + [46] = { 60.7, 43.8, 409, 300 }, + [47] = { 59.1, 43.8, 409, 300 }, + [48] = { 60.4, 43.7, 409, 300 }, + [49] = { 60.3, 43.6, 409, 300 }, + [50] = { 59.3, 43.6, 409, 300 }, + [51] = { 61.2, 43.6, 409, 300 }, + [52] = { 60.7, 43.6, 409, 300 }, + [53] = { 61, 43.6, 409, 300 }, + [54] = { 61.3, 43.5, 409, 300 }, + [55] = { 59.1, 43.2, 409, 300 }, + [56] = { 60.4, 39.9, 409, 300 }, + [57] = { 60.4, 39.7, 409, 300 }, + [58] = { 31.4, 36.7, 440, 300 }, + [59] = { 78.9, 64.7, 490, 300 }, + [60] = { 62.9, 33.4, 4012, 300 }, + [61] = { 62.9, 33.3, 4012, 300 }, + [62] = { 63, 33.3, 4012, 300 }, + [63] = { 40.1, 77.3, 5087, 300 }, + [64] = { 40.3, 77.1, 5087, 300 }, + [65] = { 52.4, 76.8, 5087, 300 }, + [66] = { 39.6, 77.7, 5121, 300 }, + [67] = { 38.3, 62.1, 5561, 300 }, + [68] = { 42.5, 68.4, 5581, 300 }, + [69] = { 42.4, 68.4, 5581, 300 }, + [70] = { 42.4, 68.3, 5581, 300 }, + [71] = { 42.5, 68.3, 5581, 300 }, + [72] = { 42.9, 68, 5581, 300 }, + }, + }, + [2002209] = { + ["coords"] = { + [1] = { 34.2, 49.6, 10, 300 }, + [2] = { 54.1, 8.7, 15, 300 }, + [3] = { 63.5, 58.5, 17, 300 }, + [4] = { 15.8, 68.6, 85, 300 }, + }, + }, + [2002210] = { + ["coords"] = { + [1] = { 38.7, 10.5, 490, 300 }, + }, + }, + [2002211] = { + ["coords"] = {}, + }, + [2002212] = { + ["coords"] = { + [1] = { 66.4, 47.2, 267, 300 }, + }, + }, + [2002213] = { + ["coords"] = { + [1] = { 80.5, 71.6, 10, 300 }, + [2] = { 37.7, 72.1, 14, 300 }, + [3] = { 37.7, 71.6, 14, 300 }, + [4] = { 37.8, 71.5, 14, 300 }, + [5] = { 58.6, 26.4, 14, 300 }, + [6] = { 44.9, 91.7, 16, 300 }, + [7] = { 29.1, 70.5, 16, 300 }, + [8] = { 44.1, 45.1, 16, 300 }, + [9] = { 54.5, 10.2, 16, 300 }, + [10] = { 75.6, 49.6, 17, 300 }, + [11] = { 64.9, 34.7, 17, 300 }, + [12] = { 64.9, 34.5, 17, 300 }, + [13] = { 65, 34.4, 17, 300 }, + [14] = { 44.1, 98.6, 28, 300 }, + [15] = { 80.8, 51.4, 36, 300 }, + [16] = { 21.8, 69.1, 85, 300 }, + [17] = { 15.4, 68.6, 85, 300 }, + [18] = { 51, 67.4, 85, 300 }, + [19] = { 4.4, 61.8, 85, 300 }, + [20] = { 16.9, 49.5, 85, 300 }, + [21] = { 20.7, 48.4, 267, 300 }, + [22] = { 43.6, 17, 357, 25 }, + [23] = { 61.5, 43.5, 409, 300 }, + [24] = { 59.3, 43.4, 409, 300 }, + [25] = { 77.7, 11.2, 5179, 300 }, + [26] = { 53.3, 56.6, 5602, 300 }, + }, + }, + [2002214] = { + ["coords"] = {}, + }, + [2002215] = { + ["coords"] = {}, + }, + [2002216] = { + ["coords"] = { + [1] = { 15.5, 68.3, 85, 300 }, + }, + }, + [2002217] = { + ["coords"] = { + [1] = { 41.9, 75.5, 40, 300 }, + [2] = { 54.1, 35.4, 1581, 300 }, + }, + }, + [2002218] = { + ["coords"] = { + [1] = { 43.5, 16.1, 357, 25 }, + }, + }, + [2002219] = { + ["coords"] = { + [1] = { 3.1, 89.8, 2040, 300 }, + [2] = { 39.3, 44.7, 5225, 300 }, + }, + }, + [2002220] = { + ["coords"] = { + [1] = { 38.8, 11.6, 490, 300 }, + [2] = { 38.8, 11.5, 490, 300 }, + }, + }, + [2002221] = { + ["coords"] = {}, + }, + [2002222] = { + ["coords"] = {}, + }, + [2002223] = { + ["coords"] = {}, + }, + [2002224] = { + ["coords"] = {}, + }, + [2002225] = { + ["coords"] = {}, + }, + [2002226] = { + ["coords"] = {}, + }, + [2002227] = { + ["coords"] = {}, + }, + [2002228] = { + ["coords"] = {}, + }, + [2002229] = { + ["coords"] = {}, + }, + [2002230] = { + ["coords"] = {}, + }, + [2002231] = { + ["coords"] = {}, + }, + [2002232] = { + ["coords"] = { + [1] = { 58.1, 99.6, 14, 300 }, + [2] = { 58.1, 99.5, 14, 300 }, + [3] = { 37.5, 72.4, 14, 300 }, + [4] = { 37.6, 72.4, 14, 300 }, + [5] = { 58.6, 27.3, 14, 300 }, + [6] = { 58, 25.6, 14, 300 }, + [7] = { 44.5, 45.3, 16, 300 }, + [8] = { 75.6, 49.1, 17, 300 }, + [9] = { 75.6, 49, 17, 300 }, + [10] = { 64.8, 34.9, 17, 300 }, + [11] = { 64.9, 34.9, 17, 300 }, + [12] = { 63.2, 28.6, 33, 300 }, + [13] = { 63.3, 28.6, 33, 300 }, + [14] = { 64.3, 28.5, 33, 300 }, + [15] = { 63.2, 28.4, 33, 300 }, + [16] = { 64.1, 28.3, 33, 300 }, + [17] = { 65.4, 28.2, 33, 300 }, + [18] = { 63.9, 28.2, 33, 300 }, + [19] = { 65.4, 28.1, 33, 300 }, + [20] = { 63.8, 28, 33, 300 }, + [21] = { 63.9, 27.9, 33, 300 }, + [22] = { 63.3, 27.8, 33, 300 }, + [23] = { 63.2, 27.8, 33, 300 }, + [24] = { 65.3, 27.6, 33, 300 }, + [25] = { 63.3, 27.6, 33, 300 }, + [26] = { 65.2, 27.5, 33, 300 }, + [27] = { 63.7, 26, 33, 300 }, + [28] = { 63.9, 26, 33, 300 }, + [29] = { 62, 75.2, 38, 300 }, + [30] = { 49.2, 31.3, 618, 300 }, + [31] = { 49.3, 31.1, 618, 300 }, + [32] = { 49.8, 31, 618, 300 }, + [33] = { 49.8, 30.8, 618, 300 }, + [34] = { 30.3, 82.8, 5602, 300 }, + }, + }, + [2002233] = { + ["coords"] = { + [1] = { 33.7, 47.9, 10, 300 }, + [2] = { 42.5, 73.3, 15, 25 }, + [3] = { 61.1, 24.1, 17, 300 }, + [4] = { 31.4, 48.9, 33, 300 }, + [5] = { 89.5, 22.7, 46, 300 }, + }, + }, + [2002234] = { + ["coords"] = { + [1] = { 48.9, 60.6, 11, 300 }, + [2] = { 44.6, 14.7, 14, 300 }, + [3] = { 61.1, 24.8, 17, 300 }, + [4] = { 61.1, 24.7, 17, 300 }, + [5] = { 61, 24.3, 17, 300 }, + [6] = { 60.9, 24.3, 17, 300 }, + [7] = { 61.4, 24.2, 17, 300 }, + [8] = { 61.3, 24.1, 17, 300 }, + [9] = { 61.9, 19.9, 17, 300 }, + [10] = { 43.3, 80.3, 33, 300 }, + [11] = { 43.4, 80.3, 33, 300 }, + [12] = { 72.5, 57.6, 331, 300 }, + [13] = { 21.4, 56, 331, 300 }, + [14] = { 31.3, 90.8, 405, 300 }, + [15] = { 50.5, 63.3, 406, 300 }, + [16] = { 50.5, 63.2, 406, 300 }, + [17] = { 57.9, 23, 406, 300 }, + [18] = { 67.5, 27.2, 440, 300 }, + [19] = { 67.8, 26.8, 440, 300 }, + [20] = { 67.6, 26.6, 440, 300 }, + [21] = { 67.4, 26.4, 440, 300 }, + [22] = { 21.2, 36.6, 1519, 300 }, + [23] = { 62.8, 84.4, 5121, 300 }, + [24] = { 27.9, 97, 5581, 300 }, + [25] = { 6.3, 25.5, 5602, 300 }, + }, + }, + [2002235] = { + ["coords"] = { + [1] = { 45.2, 14.4, 14, 300 }, + [2] = { 61, 24.3, 17, 300 }, + [3] = { 21.4, 56.1, 331, 300 }, + [4] = { 31.3, 90.8, 405, 300 }, + [5] = { 57.9, 23, 406, 300 }, + [6] = { 60.2, 44.4, 409, 300 }, + [7] = { 67.5, 27.5, 440, 300 }, + [8] = { 67.6, 26.8, 440, 300 }, + [9] = { 67.8, 26.8, 440, 300 }, + [10] = { 67.7, 26.4, 440, 300 }, + [11] = { 62.8, 84.4, 5121, 300 }, + }, + }, + [2002236] = { + ["coords"] = {}, + }, + [2002237] = { + ["coords"] = { + [1] = { 43.1, 68.8, 5581, 300 }, + [2] = { 42.6, 68.2, 5581, 300 }, + }, + }, + [2002238] = { + ["coords"] = { + [1] = { 15.3, 68.9, 85, 300 }, + [2] = { 42.6, 68.3, 5581, 300 }, + }, + }, + [2002239] = { + ["coords"] = { + [1] = { 43.2, 99.4, 28, 300 }, + [2] = { 79.4, 52.6, 36, 300 }, + [3] = { 43.1, 51.2, 267, 300 }, + [4] = { 97.3, 13.6, 5179, 300 }, + }, + }, + [2002240] = { + ["coords"] = { + [1] = { 41.7, 75.2, 40, 300 }, + [2] = { 52.1, 33.1, 1581, 300 }, + }, + }, + [2002241] = { + ["coords"] = {}, + }, + [2002242] = { + ["coords"] = {}, + }, + [2002243] = { + ["coords"] = {}, + }, + [2002244] = { + ["coords"] = {}, + }, + [2002245] = { + ["coords"] = { + [1] = { 51.4, 44.5, 8, 300 }, + [2] = { 51.1, 44.5, 8, 300 }, + [3] = { 34, 49.4, 10, 300 }, + [4] = { 49.5, 60.6, 11, 300 }, + [5] = { 41.5, 74.1, 15, 25 }, + [6] = { 43.8, 98.2, 28, 300 }, + [7] = { 80.2, 63.9, 28, 300 }, + [8] = { 34.1, 17.5, 28, 0 }, + [9] = { 80.4, 50.9, 36, 300 }, + [10] = { 59.2, 79.7, 38, 300 }, + [11] = { 16.6, 65.9, 46, 300 }, + [12] = { 90.4, 32.3, 85, 0 }, + [13] = { 21.9, 87.8, 139, 300 }, + [14] = { 37.6, 13.1, 490, 300 }, + [15] = { 92.9, 92.3, 5581, 300 }, + [16] = { 28.8, 85.1, 5602, 300 }, + [17] = { 6.8, 25.5, 5602, 300 }, + }, + }, + [2002246] = { + ["coords"] = { + [1] = { 41.9, 75.5, 40, 300 }, + [2] = { 54, 36, 1581, 300 }, + }, + }, + [2002247] = { + ["coords"] = {}, + }, + [2002248] = { + ["coords"] = {}, + }, + [2002249] = { + ["coords"] = {}, + }, + [2002250] = { + ["coords"] = { + [1] = { 33.6, 48.5, 10, 300 }, + [2] = { 48.6, 61.1, 11, 300 }, + [3] = { 44.3, 45.5, 16, 300 }, + [4] = { 67.9, 82.9, 130, 300 }, + [5] = { 14.6, 49.4, 267, 300 }, + [6] = { 72.4, 12.1, 5179, 300 }, + [7] = { 6.1, 25.9, 5602, 300 }, + }, + }, + [2002251] = { + ["coords"] = { + [1] = { 42.2, 75, 40, 300 }, + [2] = { 51.2, 24.9, 45, 300 }, + [3] = { 34.7, 9.7, 45, 300 }, + [4] = { 29.5, 85.6, 47, 300 }, + [5] = { 14.1, 71.4, 47, 300 }, + [6] = { 17.4, 49.4, 85, 300 }, + [7] = { 41.8, 10.7, 130, 300 }, + [8] = { 29.8, 10.5, 1519, 300 }, + [9] = { 56.2, 31.4, 1581, 300 }, + [10] = { 32.5, 83, 5581, 300 }, + }, + }, + [2002252] = { + ["coords"] = {}, + }, + [2002253] = { + ["coords"] = {}, + }, + [2002254] = { + ["coords"] = { + [1] = { 79.2, 61.1, 28, 300 }, + [2] = { 20.8, 84.6, 139, 300 }, + [3] = { 30.7, 87.9, 405, 300 }, + [4] = { 30.8, 38.1, 440, 300 }, + [5] = { 77.7, 67.4, 490, 300 }, + }, + }, + [2002255] = { + ["coords"] = { + [1] = { 79.2, 61.5, 28, 300 }, + [2] = { 20.8, 85.1, 139, 300 }, + [3] = { 30.7, 38.2, 440, 300 }, + [4] = { 30.8, 38.2, 440, 300 }, + [5] = { 77.5, 67.6, 490, 300 }, + [6] = { 77.8, 67.5, 490, 300 }, + }, + }, + [2002256] = { + ["coords"] = { + [1] = { 79.5, 61.8, 28, 300 }, + [2] = { 79.8, 61.2, 28, 300 }, + [3] = { 79.3, 61, 28, 300 }, + [4] = { 21.1, 85.4, 139, 300 }, + [5] = { 21.4, 84.8, 139, 300 }, + [6] = { 20.9, 84.5, 139, 300 }, + [7] = { 49.2, 23.9, 409, 300 }, + [8] = { 30.6, 38.2, 440, 300 }, + [9] = { 77.5, 67.5, 490, 300 }, + [10] = { 27.1, 23.1, 5225, 300 }, + }, + }, + [2002257] = { + ["coords"] = { + [1] = { 30.8, 87.8, 405, 300 }, + [2] = { 31.7, 86.8, 405, 300 }, + [3] = { 49.2, 24.2, 409, 300 }, + [4] = { 30.8, 38.4, 440, 300 }, + [5] = { 77.8, 67.9, 490, 300 }, + }, + }, + [2002258] = { + ["coords"] = { + [1] = { 81.5, 61.4, 28, 300 }, + [2] = { 23.3, 85, 139, 300 }, + }, + }, + [2002259] = { + ["coords"] = { + [1] = { 42, 75.5, 40, 300 }, + [2] = { 54.7, 35.3, 1581, 300 }, + }, + }, + [2002260] = { + ["coords"] = { + [1] = { 41.7, 75.1, 40, 300 }, + [2] = { 41.1, 74.3, 40, 300 }, + [3] = { 52.3, 32.5, 1581, 300 }, + [4] = { 47.8, 26, 1581, 300 }, + }, + }, + [2002261] = { + ["coords"] = { + [1] = { 42.7, 74.8, 40, 300 }, + [2] = { 42.2, 73.8, 40, 300 }, + [3] = { 60.6, 30.5, 1581, 300 }, + [4] = { 56.4, 22.6, 1581, 300 }, + }, + }, + [2002262] = { + ["coords"] = { + [1] = { 42.4, 75, 40, 300 }, + [2] = { 57.7, 31.5, 1581, 300 }, + }, + }, + [2002263] = { + ["coords"] = { + [1] = { 41.9, 74.4, 40, 300 }, + [2] = { 54.4, 27.3, 1581, 300 }, + }, + }, + [2002264] = { + ["coords"] = {}, + }, + [2002265] = { + ["coords"] = { + [1] = { 80.7, 63.5, 28, 300 }, + [2] = { 80.7, 63.4, 28, 300 }, + [3] = { 22.4, 87.3, 139, 300 }, + [4] = { 22.4, 87.2, 139, 300 }, + }, + }, + [2002266] = { + ["coords"] = { + [1] = { 45.1, 14.7, 14, 300 }, + [2] = { 77, 55.9, 15, 300 }, + [3] = { 34.7, 10.1, 45, 300 }, + [4] = { 14.1, 71.8, 47, 300 }, + [5] = { 11.8, 45.6, 47, 300 }, + [6] = { 12.2, 56.1, 85, 300 }, + [7] = { 96.7, 4.9, 267, 300 }, + [8] = { 61.3, 44.6, 409, 300 }, + [9] = { 61.6, 43.8, 409, 300 }, + [10] = { 39.3, 10.7, 490, 300 }, + [11] = { 38.8, 10.5, 490, 300 }, + [12] = { 49.3, 30.7, 618, 300 }, + [13] = { 33.2, 53.9, 5179, 300 }, + [14] = { 33.3, 53.9, 5179, 300 }, + [15] = { 33.2, 53.8, 5179, 300 }, + [16] = { 33.3, 53.8, 5179, 300 }, + [17] = { 44.6, 44.4, 5179, 300 }, + [18] = { 36.9, 18.9, 5561, 300 }, + [19] = { 63.2, 73.1, 5581, 300 }, + }, + }, + [2002267] = { + ["coords"] = { + [1] = { 75.2, 51.4, 1497, 300 }, + }, + }, + [2002268] = { + ["coords"] = { + [1] = { 33.9, 51.3, 14, 300 }, + [2] = { 62.9, 23.9, 17, 300 }, + [3] = { 67.4, 26.6, 440, 300 }, + }, + }, + [2002269] = { + ["coords"] = { + [1] = { 43.2, 99, 28, 300 }, + [2] = { 79.4, 52, 36, 300 }, + }, + }, + [2002270] = { + ["coords"] = { + [1] = { 79.7, 60.6, 28, 300 }, + [2] = { 21.3, 84.1, 139, 300 }, + [3] = { 82.5, 55.9, 400, 25 }, + }, + }, + [2002271] = { + ["coords"] = { + [1] = { 81.2, 71.4, 10, 300 }, + [2] = { 58.2, 25.7, 14, 300 }, + [3] = { 40, 84.6, 33, 0 }, + [4] = { 39.9, 84.6, 33, 0 }, + [5] = { 27.7, 77.1, 33, 300 }, + [6] = { 21.1, 48.5, 267, 300 }, + [7] = { 61.2, 43.6, 409, 300 }, + [8] = { 78, 11.3, 5179, 300 }, + [9] = { 70.8, 76.9, 5561, 300 }, + }, + }, + [2002272] = { + ["coords"] = { + [1] = { 37.7, 71.5, 14, 300 }, + [2] = { 37.7, 71.3, 14, 300 }, + [3] = { 64.9, 34.4, 17, 300 }, + [4] = { 64.9, 34.3, 17, 300 }, + [5] = { 42, 75.1, 40, 300 }, + [6] = { 68, 82.5, 130, 300 }, + [7] = { 68.1, 82.4, 130, 300 }, + [8] = { 68.2, 81.6, 130, 300 }, + [9] = { 68.1, 81.5, 130, 300 }, + [10] = { 68, 81.4, 130, 300 }, + [11] = { 67.9, 81.4, 130, 300 }, + [12] = { 42.6, 53.1, 267, 300 }, + [13] = { 42.7, 52.8, 267, 300 }, + [14] = { 14.8, 49, 267, 300 }, + [15] = { 14.9, 48.8, 267, 300 }, + [16] = { 15, 47.7, 267, 300 }, + [17] = { 14.9, 47.6, 267, 300 }, + [18] = { 14.7, 47.4, 267, 300 }, + [19] = { 14.6, 47.4, 267, 300 }, + [20] = { 54.8, 32.8, 1581, 300 }, + [21] = { 96.8, 15.3, 5179, 300 }, + [22] = { 96.9, 15, 5179, 300 }, + [23] = { 72.5, 11.7, 5179, 300 }, + [24] = { 72.7, 11.5, 5179, 300 }, + [25] = { 72.7, 10.6, 5179, 300 }, + [26] = { 72.6, 10.5, 5179, 300 }, + [27] = { 72.5, 10.3, 5179, 300 }, + [28] = { 72.4, 10.3, 5179, 300 }, + }, + }, + [2002273] = { + ["coords"] = { + [1] = { 68.2, 82.3, 130, 300 }, + [2] = { 67.8, 81.3, 130, 300 }, + [3] = { 15, 48.6, 267, 300 }, + [4] = { 14.5, 47.4, 267, 300 }, + [5] = { 72.7, 11.4, 5179, 300 }, + [6] = { 72.3, 10.3, 5179, 300 }, + }, + }, + [2002274] = { + ["coords"] = { + [1] = { 68.1, 82.5, 130, 300 }, + [2] = { 68.2, 81.7, 130, 300 }, + [3] = { 67.6, 81.3, 130, 300 }, + [4] = { 42.6, 53, 267, 300 }, + [5] = { 14.9, 48.9, 267, 300 }, + [6] = { 15.1, 47.8, 267, 300 }, + [7] = { 14.3, 47.4, 267, 300 }, + [8] = { 96.9, 15.2, 5179, 300 }, + [9] = { 72.6, 11.6, 5179, 300 }, + [10] = { 72.8, 10.7, 5179, 300 }, + [11] = { 72.1, 10.3, 5179, 300 }, + }, + }, + [2002275] = { + ["coords"] = {}, + }, + [2002276] = { + ["coords"] = { + [1] = { 41.8, 74.9, 40, 300 }, + [2] = { 42.1, 74.4, 40, 300 }, + [3] = { 53.2, 30.8, 1581, 300 }, + [4] = { 55.4, 27.2, 1581, 300 }, + }, + }, + [2002277] = { + ["coords"] = { + [1] = { 42.1, 75.2, 40, 300 }, + [2] = { 55.5, 33.1, 1581, 300 }, + }, + }, + [2002278] = { + ["coords"] = { + [1] = { 42.3, 74.8, 40, 300 }, + [2] = { 57.4, 30.2, 1581, 300 }, + }, + }, + [2002279] = { + ["coords"] = { + [1] = { 42.1, 74.5, 40, 300 }, + [2] = { 55.8, 27.7, 1581, 300 }, + }, + }, + [2002280] = { + ["coords"] = { + [1] = { 80.8, 71.9, 10, 300 }, + [2] = { 81.3, 71.9, 10, 300 }, + [3] = { 20.9, 49.1, 267, 300 }, + [4] = { 20.3, 33.3, 331, 300 }, + [5] = { 77.9, 11.9, 5179, 300 }, + }, + }, + [2002281] = { + ["coords"] = { + [1] = { 51.3, 67.5, 85, 300 }, + [2] = { 60.8, 53.7, 85, 300 }, + [3] = { 31.8, 46, 85, 300 }, + [4] = { 73.8, 52.7, 1497, 300 }, + [5] = { 75, 52.4, 1497, 300 }, + [6] = { 73.4, 52.1, 1497, 300 }, + [7] = { 75.2, 51.3, 1497, 300 }, + [8] = { 75.5, 50.4, 1497, 300 }, + [9] = { 74.1, 49.9, 1497, 300 }, + [10] = { 75.9, 49.1, 1497, 300 }, + [11] = { 74.3, 49.1, 1497, 300 }, + }, + }, + [2002282] = { + ["coords"] = {}, + }, + [2002283] = { + ["coords"] = {}, + }, + [2002284] = { + ["coords"] = {}, + }, + [2002285] = { + ["coords"] = {}, + }, + [2002286] = { + ["coords"] = {}, + }, + [2002287] = { + ["coords"] = { + [1] = { 85.1, 86.3, 5086, 300 }, + [2] = { 82.9, 86.2, 5086, 300 }, + [3] = { 82.6, 85.9, 5086, 300 }, + [4] = { 83, 85.8, 5086, 300 }, + [5] = { 81.5, 81.8, 5086, 300 }, + [6] = { 79.9, 79.7, 5086, 300 }, + [7] = { 79.6, 79.2, 5086, 300 }, + [8] = { 78.7, 71.4, 5086, 300 }, + [9] = { 81.7, 71.3, 5086, 300 }, + [10] = { 80.9, 70, 5086, 300 }, + [11] = { 81, 69.5, 5086, 300 }, + [12] = { 62.7, 47.4, 5087, 300 }, + }, + }, + [2002288] = { + ["coords"] = { + [1] = { 25.3, 66.5, 16, 300 }, + [2] = { 61.6, 20.3, 33, 300 }, + [3] = { 64.4, 13.7, 33, 300 }, + [4] = { 64.4, 13.5, 33, 300 }, + [5] = { 24.5, 13.8, 406, 25 }, + }, + }, + [2002289] = { + ["coords"] = { + [1] = { 24.4, 13.9, 406, 300 }, + }, + }, + [2002290] = { + ["coords"] = {}, + }, + [2002291] = { + ["coords"] = {}, + }, + [2002292] = { + ["coords"] = {}, + }, + [2002293] = { + ["coords"] = {}, + }, + [2002294] = { + ["coords"] = {}, + }, + [2002295] = { + ["coords"] = {}, + }, + [2002296] = { + ["coords"] = { + [1] = { 83.9, 85.7, 5086, 300 }, + [2] = { 79.5, 79.5, 5086, 300 }, + [3] = { 62.5, 46.8, 5087, 300 }, + }, + }, + [2002297] = { + ["coords"] = { + [1] = { 82, 85, 5086, 300 }, + [2] = { 82, 82.1, 5086, 300 }, + [3] = { 81.3, 71.7, 5086, 300 }, + [4] = { 74.5, 24.5, 5087, 300 }, + }, + }, + [2002298] = { + ["coords"] = { + [1] = { 82.2, 87.2, 5086, 300 }, + [2] = { 82.1, 85.9, 5086, 300 }, + [3] = { 79.7, 71.5, 5086, 300 }, + }, + }, + [2002299] = { + ["coords"] = {}, + }, + [2002300] = { + ["coords"] = {}, + }, + [2002301] = { + ["coords"] = { + [1] = { 62.1, 20, 33, 300 }, + [2] = { 63.9, 18.5, 33, 300 }, + [3] = { 55.4, 16.2, 33, 300 }, + }, + }, + [2002302] = { + ["coords"] = { + [1] = { 63.1, 21.9, 33, 300 }, + [2] = { 61.7, 20.7, 33, 300 }, + }, + }, + [2002303] = { + ["coords"] = { + [1] = { 62.9, 22.5, 33, 300 }, + [2] = { 61.1, 21.3, 33, 300 }, + [3] = { 53.8, 19.6, 33, 300 }, + [4] = { 62.5, 19.6, 33, 300 }, + [5] = { 53.9, 19.6, 33, 300 }, + [6] = { 60.4, 19.3, 33, 300 }, + [7] = { 60.1, 19.1, 33, 300 }, + [8] = { 63.3, 18.3, 33, 300 }, + [9] = { 63.9, 18.1, 33, 300 }, + [10] = { 63.6, 17, 33, 300 }, + [11] = { 57.2, 16.9, 33, 300 }, + }, + }, + [2002304] = { + ["coords"] = { + [1] = { 63.5, 18.8, 33, 300 }, + [2] = { 58.9, 18, 33, 300 }, + [3] = { 56.4, 17.3, 33, 300 }, + }, + }, + [2002305] = { + ["coords"] = { + [1] = { 60.4, 19.3, 33, 300 }, + [2] = { 59, 19.3, 33, 300 }, + [3] = { 60.4, 19.2, 33, 300 }, + [4] = { 59.2, 18, 33, 300 }, + [5] = { 55.4, 17.8, 33, 300 }, + [6] = { 57.1, 17.7, 33, 300 }, + [7] = { 55.8, 17.5, 33, 300 }, + }, + }, + [2002306] = { + ["coords"] = {}, + }, + [2002307] = { + ["coords"] = {}, + }, + [2002308] = { + ["coords"] = {}, + }, + [2002309] = { + ["coords"] = {}, + }, + [2002310] = { + ["coords"] = {}, + }, + [2002311] = { + ["coords"] = { + [1] = { 22.4, 70, 11, 25 }, + [2] = { 22.5, 69.2, 11, 25 }, + [3] = { 22.5, 68.7, 11, 25 }, + [4] = { 33.7, 51.6, 14, 300 }, + [5] = { 62.8, 24, 17, 300 }, + }, + }, + [2002312] = { + ["coords"] = { + [1] = { 81.2, 71.9, 10, 300 }, + [2] = { 81.3, 71.9, 10, 300 }, + [3] = { 21.1, 54.9, 331, 300 }, + [4] = { 21.1, 54.8, 331, 300 }, + [5] = { 21.4, 54.7, 331, 300 }, + [6] = { 22.3, 54.4, 331, 300 }, + [7] = { 21.2, 54.1, 331, 300 }, + [8] = { 21, 53.7, 331, 300 }, + [9] = { 21, 53.6, 331, 300 }, + [10] = { 23.4, 52.8, 331, 300 }, + [11] = { 21.1, 52.6, 331, 300 }, + [12] = { 22.9, 52.2, 331, 300 }, + [13] = { 22.7, 51.9, 331, 300 }, + [14] = { 23.4, 51.4, 331, 300 }, + [15] = { 22.5, 50.9, 331, 300 }, + [16] = { 23.8, 50.8, 331, 300 }, + [17] = { 24, 50.7, 331, 300 }, + [18] = { 57.6, 21.9, 406, 300 }, + [19] = { 57.9, 21.7, 406, 300 }, + [20] = { 58.8, 21.4, 406, 300 }, + [21] = { 57.6, 21.1, 406, 300 }, + [22] = { 57.5, 20.7, 406, 300 }, + [23] = { 59.8, 19.9, 406, 300 }, + [24] = { 57.6, 19.7, 406, 300 }, + [25] = { 59.3, 19.3, 406, 300 }, + [26] = { 59.1, 19, 406, 300 }, + [27] = { 59.8, 18.6, 406, 300 }, + [28] = { 58.9, 18.1, 406, 300 }, + [29] = { 60.2, 17.9, 406, 300 }, + [30] = { 60.4, 17.8, 406, 300 }, + }, + }, + [2002313] = { + ["coords"] = {}, + }, + [2002314] = { + ["coords"] = {}, + }, + [2002315] = { + ["coords"] = { + [1] = { 21, 53.4, 331, 300 }, + [2] = { 21.6, 53.2, 331, 300 }, + [3] = { 22.4, 53.1, 331, 300 }, + [4] = { 22.2, 53, 331, 300 }, + [5] = { 21.7, 52.9, 331, 300 }, + [6] = { 21.9, 52.7, 331, 300 }, + [7] = { 22.5, 52.6, 331, 300 }, + [8] = { 57.5, 20.5, 406, 300 }, + [9] = { 58.1, 20.3, 406, 300 }, + [10] = { 58.9, 20.2, 406, 300 }, + [11] = { 58.7, 20.1, 406, 300 }, + [12] = { 58.2, 20, 406, 300 }, + [13] = { 58.4, 19.8, 406, 300 }, + [14] = { 58.9, 19.7, 406, 300 }, + }, + }, + [2002316] = { + ["coords"] = { + [1] = { 21.1, 54.9, 331, 300 }, + [2] = { 21, 53.7, 331, 300 }, + [3] = { 21.6, 53.3, 331, 300 }, + [4] = { 22.2, 52.8, 331, 300 }, + [5] = { 22.3, 52.6, 331, 300 }, + [6] = { 57.6, 21.9, 406, 300 }, + [7] = { 57.5, 20.7, 406, 300 }, + [8] = { 58.1, 20.4, 406, 300 }, + [9] = { 58.6, 19.9, 406, 300 }, + [10] = { 58.7, 19.7, 406, 300 }, + }, + }, + [2002317] = { + ["coords"] = { + [1] = { 21.1, 54.9, 331, 300 }, + [2] = { 21.1, 54.8, 331, 300 }, + [3] = { 21.1, 54, 331, 300 }, + [4] = { 21.9, 53.6, 331, 300 }, + [5] = { 20.9, 53.3, 331, 300 }, + [6] = { 22.3, 53, 331, 300 }, + [7] = { 22.4, 52.9, 331, 300 }, + [8] = { 23.4, 52.8, 331, 300 }, + [9] = { 57.6, 21.9, 406, 300 }, + [10] = { 57.6, 21.8, 406, 300 }, + [11] = { 57.6, 21, 406, 300 }, + [12] = { 58.3, 20.6, 406, 300 }, + [13] = { 57.4, 20.3, 406, 300 }, + [14] = { 58.8, 20, 406, 300 }, + [15] = { 58.9, 19.9, 406, 300 }, + [16] = { 59.8, 19.9, 406, 300 }, + }, + }, + [2002318] = { + ["coords"] = { + [1] = { 9.1, 22.4, 139, 300 }, + [2] = { 69.9, 49.4, 2040, 300 }, + [3] = { 69.6, 45.6, 2040, 300 }, + [4] = { 72.1, 45.4, 2040, 300 }, + [5] = { 72.1, 45.3, 2040, 300 }, + [6] = { 70.7, 45.1, 2040, 300 }, + [7] = { 49.8, 83.9, 5225, 300 }, + [8] = { 71.1, 25.6, 5225, 300 }, + [9] = { 70.9, 23.8, 5225, 300 }, + [10] = { 72.1, 23.7, 5225, 300 }, + [11] = { 72.1, 23.6, 5225, 300 }, + [12] = { 71.4, 23.5, 5225, 300 }, + }, + }, + [2002319] = { + ["coords"] = {}, + }, + [2002320] = { + ["coords"] = {}, + }, + [2002321] = { + ["coords"] = {}, + }, + [2002322] = { + ["coords"] = {}, + }, + [2002323] = { + ["coords"] = {}, + }, + [2002324] = { + ["coords"] = {}, + }, + [2002325] = { + ["coords"] = {}, + }, + [2002326] = { + ["coords"] = {}, + }, + [2002327] = { + ["coords"] = {}, + }, + [2002328] = { + ["coords"] = {}, + }, + [2002329] = { + ["coords"] = {}, + }, + [2002330] = { + ["coords"] = {}, + }, + [2002331] = { + ["coords"] = {}, + }, + [2002332] = { + ["coords"] = {}, + }, + [2002333] = { + ["coords"] = {}, + }, + [2002334] = { + ["coords"] = {}, + }, + [2002335] = { + ["coords"] = {}, + }, + [2002336] = { + ["coords"] = {}, + }, + [2002337] = { + ["coords"] = {}, + }, + [2002338] = { + ["coords"] = {}, + }, + [2002339] = { + ["coords"] = {}, + }, + [2002340] = { + ["coords"] = {}, + }, + [2002341] = { + ["coords"] = {}, + }, + [2002342] = { + ["coords"] = {}, + }, + [2002343] = { + ["coords"] = {}, + }, + [2002344] = { + ["coords"] = {}, + }, + [2002345] = { + ["coords"] = {}, + }, + [2002346] = { + ["coords"] = {}, + }, + [2002347] = { + ["coords"] = {}, + }, + [2002348] = { + ["coords"] = {}, + }, + [2002349] = { + ["coords"] = {}, + }, + [2002350] = { + ["coords"] = {}, + }, + [2002351] = { + ["coords"] = {}, + }, + [2002352] = { + ["coords"] = {}, + }, + [2002353] = { + ["coords"] = {}, + }, + [2002354] = { + ["coords"] = {}, + }, + [2002355] = { + ["coords"] = {}, + }, + [2002356] = { + ["coords"] = {}, + }, + [2002357] = { + ["coords"] = {}, + }, + [2002358] = { + ["coords"] = {}, + }, + [2002359] = { + ["coords"] = {}, + }, + [2002360] = { + ["coords"] = {}, + }, + [2002361] = { + ["coords"] = {}, + }, + [2002362] = { + ["coords"] = {}, + }, + [2002363] = { + ["coords"] = {}, + }, + [2002364] = { + ["coords"] = {}, + }, + [2002365] = { + ["coords"] = { + [1] = { 73.7, 49.4, 5087, 300 }, + }, + }, + [2002366] = { + ["coords"] = {}, + }, + [2002367] = { + ["coords"] = { + [1] = { 72, 72.1, 5087, 300 }, + }, + }, + [2002368] = { + ["coords"] = { + [1] = { 64.6, 72.5, 5087, 300 }, + [2] = { 74, 56.1, 5087, 300 }, + }, + }, + [2002369] = { + ["coords"] = {}, + }, + [2002370] = { + ["coords"] = { + [1] = { 71.3, 82.1, 5087, 300 }, + }, + }, + [2002371] = { + ["coords"] = { + [1] = { 58.2, 25.4, 1537, 300 }, + [2] = { 67.3, 82.6, 5087, 300 }, + [3] = { 71.3, 49.9, 5087, 300 }, + }, + }, + [2002372] = { + ["coords"] = { + [1] = { 49.7, 75.2, 1519, 300 }, + [2] = { 49.4, 74.5, 1519, 300 }, + [3] = { 58.2, 24.4, 1537, 300 }, + [4] = { 45.1, 40.8, 1637, 300 }, + [5] = { 67.2, 70.5, 5087, 300 }, + [6] = { 70.8, 54.9, 5087, 300 }, + [7] = { 75.8, 49.9, 5087, 300 }, + }, + }, + [2002373] = { + ["coords"] = { + [1] = { 66.8, 22.2, 440, 300 }, + [2] = { 78.5, 76, 1497, 300 }, + [3] = { 49.6, 75.2, 1519, 300 }, + [4] = { 45.2, 40.8, 1637, 300 }, + }, + }, + [2002374] = { + ["coords"] = { + [1] = { 45, 83.7, 5087, 300 }, + [2] = { 48, 75.6, 5087, 300 }, + [3] = { 45.5, 64.2, 5087, 300 }, + [4] = { 49.1, 59, 5087, 300 }, + [5] = { 55.7, 58.6, 5087, 300 }, + [6] = { 45.5, 51.6, 5087, 300 }, + }, + }, + [2002375] = { + ["coords"] = { + [1] = { 49.3, 85.1, 5087, 300 }, + [2] = { 43.3, 75.9, 5087, 300 }, + [3] = { 47.5, 64.1, 5087, 300 }, + [4] = { 52.3, 56.5, 5087, 300 }, + [5] = { 47.3, 51.2, 5087, 300 }, + }, + }, + [2002376] = { + ["coords"] = {}, + }, + [2002377] = { + ["coords"] = {}, + }, + [2002378] = { + ["coords"] = {}, + }, + [2002379] = { + ["coords"] = {}, + }, + [2002380] = { + ["coords"] = {}, + }, + [2002381] = { + ["coords"] = {}, + }, + [2002382] = { + ["coords"] = {}, + }, + [2002383] = { + ["coords"] = {}, + }, + [2002384] = { + ["coords"] = {}, + }, + [2002385] = { + ["coords"] = {}, + }, + [2002386] = { + ["coords"] = {}, + }, + [2002387] = { + ["coords"] = {}, + }, + [2002388] = { + ["coords"] = {}, + }, + [2002389] = { + ["coords"] = {}, + }, + [2002390] = { + ["coords"] = { + [1] = { 30.3, 72.1, 85, 300 }, + }, + }, + [2002391] = { + ["coords"] = {}, + }, + [2002392] = { + ["coords"] = { + [1] = { 33.4, 49.6, 10, 300 }, + [2] = { 32.4, 47.3, 10, 300 }, + [3] = { 48.7, 60.7, 11, 300 }, + [4] = { 57, 98.9, 14, 300 }, + [5] = { 37.5, 71.5, 14, 300 }, + [6] = { 58.7, 26.5, 14, 300 }, + [7] = { 46, 46.2, 15, 300 }, + [8] = { 29.8, 71.1, 16, 300 }, + [9] = { 44.1, 45.1, 16, 300 }, + [10] = { 54.7, 10.2, 16, 300 }, + [11] = { 74.8, 51.5, 17, 300 }, + [12] = { 75, 48.7, 17, 300 }, + [13] = { 61.9, 38.6, 17, 300 }, + [14] = { 64.8, 34.4, 17, 300 }, + [15] = { 43.4, 80.4, 33, 300 }, + [16] = { 43.4, 80.3, 33, 300 }, + [17] = { 31.8, 48.4, 33, 300 }, + [18] = { 78.6, 76.7, 38, 25 }, + [19] = { 82.3, 63.3, 38, 25 }, + [20] = { 16.6, 66, 46, 300 }, + [21] = { 21.1, 68.4, 85, 300 }, + [22] = { 17.3, 49.1, 85, 300 }, + [23] = { 42.4, 53.4, 267, 300 }, + [24] = { 20.7, 48.5, 267, 300 }, + [25] = { 43.6, 17, 357, 25 }, + [26] = { 47.9, 57.3, 406, 300 }, + [27] = { 60.6, 44.7, 409, 300 }, + [28] = { 61.6, 44.6, 409, 300 }, + [29] = { 61.6, 44.5, 409, 300 }, + [30] = { 61.3, 43.6, 409, 300 }, + [31] = { 49.2, 30.4, 618, 300 }, + [32] = { 49.5, 30.2, 618, 300 }, + [33] = { 50.2, 29.9, 618, 300 }, + [34] = { 51.2, 29.7, 618, 300 }, + [35] = { 66.7, 75.6, 1519, 300 }, + [36] = { 61.7, 71.3, 1519, 300 }, + [37] = { 21.8, 37.5, 1519, 300 }, + [38] = { 23.6, 37.1, 1519, 300 }, + [39] = { 21.7, 36.7, 1519, 300 }, + [40] = { 21.7, 36.6, 1519, 300 }, + [41] = { 23.4, 36.1, 1519, 300 }, + [42] = { 68.3, 25.4, 1637, 25 }, + [43] = { 96.7, 15.6, 5179, 300 }, + [44] = { 96.6, 15.6, 5179, 300 }, + [45] = { 77.7, 11.3, 5179, 300 }, + [46] = { 28.2, 97.5, 5581, 300 }, + [47] = { 29.1, 97.3, 5581, 300 }, + [48] = { 28.1, 97.1, 5581, 300 }, + [49] = { 28.1, 97, 5581, 300 }, + [50] = { 29.1, 96.8, 5581, 300 }, + [51] = { 92.9, 92.4, 5581, 300 }, + [52] = { 38.8, 83.5, 5602, 25 }, + [53] = { 40.7, 76.7, 5602, 25 }, + [54] = { 6.2, 25.6, 5602, 300 }, + }, + }, + [2002393] = { + ["coords"] = { + [1] = { 34.1, 48.7, 10, 300 }, + [2] = { 17.4, 49.1, 85, 300 }, + [3] = { 60.1, 44.5, 409, 300 }, + }, + }, + [2002394] = { + ["coords"] = { + [1] = { 80.8, 63.4, 28, 300 }, + [2] = { 21.9, 67.9, 85, 300 }, + [3] = { 22.5, 87.2, 139, 300 }, + [4] = { 57, 43.6, 409, 300 }, + [5] = { 31.2, 38.2, 440, 300 }, + [6] = { 78.5, 67.4, 490, 300 }, + [7] = { 39.6, 43.4, 5208, 300 }, + }, + }, + [2002395] = { + ["coords"] = {}, + }, + [2002396] = { + ["coords"] = { + [1] = { 34.1, 48.7, 10, 300 }, + [2] = { 74.8, 51.5, 17, 300 }, + [3] = { 61, 24.8, 17, 300 }, + [4] = { 34.3, 10.3, 17, 300 }, + [5] = { 34.1, 10.1, 17, 300 }, + [6] = { 34.1, 10, 17, 300 }, + [7] = { 34, 9.8, 17, 300 }, + [8] = { 67.4, 83.7, 130, 300 }, + [9] = { 67.4, 83.4, 130, 300 }, + [10] = { 14, 50.4, 267, 300 }, + [11] = { 13.9, 50.1, 267, 300 }, + [12] = { 79.9, 63, 406, 300 }, + [13] = { 79.8, 62.9, 406, 300 }, + [14] = { 79.4, 62.6, 406, 300 }, + [15] = { 79.4, 62.5, 406, 300 }, + [16] = { 79.3, 62.1, 406, 300 }, + [17] = { 60.1, 44.5, 409, 300 }, + [18] = { 60.1, 44.4, 409, 300 }, + [19] = { 71.5, 47.6, 1497, 300 }, + [20] = { 61, 64.4, 1519, 300 }, + [21] = { 21.6, 36.6, 1519, 300 }, + [22] = { 71.8, 13, 5179, 300 }, + [23] = { 71.8, 12.7, 5179, 300 }, + [24] = { 28.1, 97, 5581, 300 }, + }, + }, + [2002397] = { + ["coords"] = { + [1] = { 55.3, 97.2, 14, 300 }, + [2] = { 74.1, 47.8, 17, 300 }, + [3] = { 35, 10.5, 45, 300 }, + [4] = { 14.3, 72.1, 47, 300 }, + [5] = { 67.4, 83.7, 130, 300 }, + [6] = { 67.4, 83.4, 130, 300 }, + [7] = { 14, 50.4, 267, 300 }, + [8] = { 14, 50.1, 267, 300 }, + [9] = { 82.4, 55.5, 400, 25 }, + [10] = { 61.6, 43.7, 409, 300 }, + [11] = { 58.3, 40.9, 409, 300 }, + [12] = { 21.5, 36.6, 1519, 300 }, + [13] = { 30.1, 14.7, 1519, 300 }, + [14] = { 71.9, 13, 5179, 300 }, + [15] = { 71.9, 12.6, 5179, 300 }, + [16] = { 28, 97, 5581, 300 }, + [17] = { 32.6, 85.2, 5581, 300 }, + }, + }, + [2002398] = { + ["coords"] = {}, + }, + [2002399] = { + ["coords"] = {}, + }, + [2002400] = { + ["coords"] = { + [1] = { 33.8, 18.4, 28, 0 }, + [2] = { 32.4, 48, 85, 300 }, + [3] = { 90.1, 33.2, 85, 0 }, + }, + }, + [2002401] = { + ["coords"] = { + [1] = { 51.2, 61.7, 357, 300 }, + }, + }, + [2002402] = { + ["coords"] = { + [1] = { 32.2, 86.6, 405, 300 }, + [2] = { 76.7, 63.6, 490, 300 }, + }, + }, + [2002403] = { + ["coords"] = { + [1] = { 64.1, 15.6, 4, 300 }, + [2] = { 51.2, 61.7, 357, 300 }, + }, + }, + [2002404] = { + ["coords"] = {}, + }, + [2002405] = { + ["coords"] = {}, + }, + [2002406] = { + ["coords"] = {}, + }, + [2002407] = { + ["coords"] = {}, + }, + [2002408] = { + ["coords"] = {}, + }, + [2002409] = { + ["coords"] = { + [1] = { 43.4, 80.6, 33, 300 }, + }, + }, + [2002410] = { + ["coords"] = { + [1] = { 51.2, 61.7, 357, 300 }, + }, + }, + [2002411] = { + ["coords"] = { + [1] = { 51.2, 62.2, 357, 300 }, + [2] = { 82.1, 79.7, 5208, 300 }, + }, + }, + [2002412] = { + ["coords"] = { + [1] = { 51.2, 62, 357, 300 }, + [2] = { 30.6, 36.4, 440, 300 }, + [3] = { 77.3, 64.1, 490, 300 }, + }, + }, + [2002413] = { + ["coords"] = {}, + }, + [2002414] = { + ["coords"] = { + [1] = { 32, 85.6, 405, 300 }, + }, + }, + [2002415] = { + ["coords"] = { + [1] = { 31.5, 87.3, 405, 300 }, + [2] = { 30.9, 38.5, 440, 300 }, + [3] = { 77.9, 68.1, 490, 300 }, + }, + }, + [2002416] = { + ["coords"] = {}, + }, + [2002417] = { + ["coords"] = {}, + }, + [2002418] = { + ["coords"] = {}, + }, + [2002419] = { + ["coords"] = {}, + }, + [2002420] = { + ["coords"] = {}, + }, + [2002421] = { + ["coords"] = {}, + }, + [2002422] = { + ["coords"] = {}, + }, + [2002423] = { + ["coords"] = {}, + }, + [2002424] = { + ["coords"] = {}, + }, + [2002425] = { + ["coords"] = {}, + }, + [2002426] = { + ["coords"] = {}, + }, + [2002427] = { + ["coords"] = {}, + }, + [2002428] = { + ["coords"] = {}, + }, + [2002429] = { + ["coords"] = {}, + }, + [2002430] = { + ["coords"] = {}, + }, + [2002431] = { + ["coords"] = {}, + }, + [2002432] = { + ["coords"] = {}, + }, + [2002433] = { + ["coords"] = {}, + }, + [2002434] = { + ["coords"] = {}, + }, + [2002435] = { + ["coords"] = {}, + }, + [2002436] = { + ["coords"] = {}, + }, + [2002437] = { + ["coords"] = {}, + }, + [2002438] = { + ["coords"] = {}, + }, + [2002439] = { + ["coords"] = {}, + }, + [2002440] = { + ["coords"] = { + [1] = { 37.8, 71.5, 14, 300 }, + [2] = { 65, 34.4, 17, 300 }, + }, + }, + [2002441] = { + ["coords"] = {}, + }, + [2002442] = { + ["coords"] = { + [1] = { 64.7, 34.5, 17, 300 }, + }, + }, + [2002443] = { + ["coords"] = {}, + }, + [2002444] = { + ["coords"] = {}, + }, + [2002445] = { + ["coords"] = {}, + }, + [2002446] = { + ["coords"] = {}, + }, + [2002447] = { + ["coords"] = {}, + }, + [2002448] = { + ["coords"] = {}, + }, + [2002449] = { + ["coords"] = { + [1] = { 37.9, 71.9, 14, 300 }, + [2] = { 38, 71.7, 14, 300 }, + [3] = { 37.8, 71.7, 14, 300 }, + [4] = { 65, 34.6, 17, 300 }, + [5] = { 65.1, 34.5, 17, 300 }, + [6] = { 65, 34.5, 17, 300 }, + [7] = { 24.4, 82.8, 440, 300 }, + }, + }, + [2002450] = { + ["coords"] = { + [1] = { 48.3, 61.6, 11, 300 }, + [2] = { 37.9, 71.6, 14, 300 }, + [3] = { 29.7, 70.7, 16, 300 }, + [4] = { 65, 34.5, 17, 300 }, + [5] = { 66.9, 82.1, 130, 300 }, + [6] = { 42.4, 51.6, 267, 300 }, + [7] = { 13.3, 48.3, 267, 300 }, + [8] = { 96.7, 14, 5179, 300 }, + [9] = { 71.2, 11.1, 5179, 300 }, + [10] = { 42.8, 68.1, 5581, 300 }, + [11] = { 42.7, 68, 5581, 300 }, + [12] = { 42.8, 67.9, 5581, 300 }, + [13] = { 5.8, 26.3, 5602, 300 }, + }, + }, + [2002451] = { + ["coords"] = {}, + }, + [2002452] = { + ["coords"] = {}, + }, + [2002453] = { + ["coords"] = {}, + }, + [2002454] = { + ["coords"] = {}, + }, + [2002455] = { + ["coords"] = {}, + }, + [2002456] = { + ["coords"] = {}, + }, + [2002457] = { + ["coords"] = {}, + }, + [2002458] = { + ["coords"] = {}, + }, + [2002459] = { + ["coords"] = {}, + }, + [2002460] = { + ["coords"] = {}, + }, + [2002461] = { + ["coords"] = {}, + }, + [2002462] = { + ["coords"] = { + [1] = { 57.3, 55.4, 440, 0 }, + [2] = { 35.5, 45.2, 1941, 0 }, + }, + }, + [2002463] = { + ["coords"] = {}, + }, + [2002464] = { + ["coords"] = {}, + }, + [2002465] = { + ["coords"] = {}, + }, + [2002466] = { + ["coords"] = {}, + }, + [2002467] = { + ["coords"] = {}, + }, + [2002468] = { + ["coords"] = {}, + }, + [2002469] = { + ["coords"] = {}, + }, + [2002470] = { + ["coords"] = { + [1] = { 51.4, 24.7, 45, 300 }, + [2] = { 29.7, 85.5, 47, 300 }, + }, + }, + [2002471] = { + ["coords"] = {}, + }, + [2002472] = { + ["coords"] = {}, + }, + [2002473] = { + ["coords"] = { + [1] = { 25.9, 46.6, 28, 300 }, + [2] = { 82.6, 59.9, 85, 300 }, + }, + }, + [2002474] = { + ["coords"] = {}, + }, + [2002475] = { + ["coords"] = { + [1] = { 54.7, 57.8, 5087, 300 }, + }, + }, + [2002476] = { + ["coords"] = {}, + }, + [2002477] = { + ["coords"] = {}, + }, + [2002478] = { + ["coords"] = {}, + }, + [2002479] = { + ["coords"] = {}, + }, + [2002480] = { + ["coords"] = {}, + }, + [2002481] = { + ["coords"] = {}, + }, + [2002482] = { + ["coords"] = {}, + }, + [2002483] = { + ["coords"] = {}, + }, + [2002484] = { + ["coords"] = {}, + }, + [2002485] = { + ["coords"] = {}, + }, + [2002486] = { + ["coords"] = {}, + }, + [2002487] = { + ["coords"] = {}, + }, + [2002488] = { + ["coords"] = {}, + }, + [2002489] = { + ["coords"] = {}, + }, + [2002490] = { + ["coords"] = {}, + }, + [2002491] = { + ["coords"] = {}, + }, + [2002492] = { + ["coords"] = {}, + }, + [2002493] = { + ["coords"] = {}, + }, + [2002494] = { + ["coords"] = {}, + }, + [2002495] = { + ["coords"] = {}, + }, + [2002496] = { + ["coords"] = {}, + }, + [2002497] = { + ["coords"] = {}, + }, + [2002498] = { + ["coords"] = {}, + }, + [2002499] = { + ["coords"] = {}, + }, + [2002500] = { + ["coords"] = {}, + }, + [2002501] = { + ["coords"] = {}, + }, + [2002502] = { + ["coords"] = {}, + }, + [2002503] = { + ["coords"] = {}, + }, + [2002504] = { + ["coords"] = {}, + }, + [2002505] = { + ["coords"] = {}, + }, + [2002506] = { + ["coords"] = {}, + }, + [2002507] = { + ["coords"] = {}, + }, + [2002508] = { + ["coords"] = {}, + }, + [2002509] = { + ["coords"] = {}, + }, + [2002510] = { + ["coords"] = {}, + }, + [2002511] = { + ["coords"] = {}, + }, + [2002512] = { + ["coords"] = {}, + }, + [2002513] = { + ["coords"] = {}, + }, + [2002514] = { + ["coords"] = {}, + }, + [2002515] = { + ["coords"] = {}, + }, + [2002516] = { + ["coords"] = {}, + }, + [2002517] = { + ["coords"] = {}, + }, + [2002518] = { + ["coords"] = { + [1] = { 43.3, 80.4, 33, 300 }, + }, + }, + [2002519] = { + ["coords"] = {}, + }, + [2002520] = { + ["coords"] = { + [1] = { 43.3, 80.4, 33, 300 }, + [2] = { 27.6, 77.1, 33, 300 }, + [3] = { 49.4, 74.6, 1519, 300 }, + [4] = { 58.2, 25.6, 1537, 300 }, + [5] = { 45.3, 42, 1637, 300 }, + }, + }, + [2002521] = { + ["coords"] = {}, + }, + [2002522] = { + ["coords"] = { + [1] = { 57.4, 26.3, 14, 300 }, + [2] = { 66.8, 22.2, 440, 300 }, + [3] = { 78.3, 77.8, 1497, 300 }, + [4] = { 45.9, 40, 1637, 300 }, + }, + }, + [2002523] = { + ["coords"] = { + [1] = { 78.1, 78.1, 1497, 300 }, + [2] = { 49.6, 75.3, 1519, 300 }, + [3] = { 58.5, 23.9, 1537, 300 }, + }, + }, + [2002524] = { + ["coords"] = { + [1] = { 49.7, 74.9, 1519, 300 }, + }, + }, + [2002525] = { + ["coords"] = {}, + }, + [2002526] = { + ["coords"] = {}, + }, + [2002527] = { + ["coords"] = {}, + }, + [2002528] = { + ["coords"] = {}, + }, + [2002529] = { + ["coords"] = {}, + }, + [2002530] = { + ["coords"] = {}, + }, + [2002531] = { + ["coords"] = {}, + }, + [2002532] = { + ["coords"] = {}, + }, + [2002533] = { + ["coords"] = {}, + }, + [2002534] = { + ["coords"] = { + [1] = { 48.8, 49, 8, 300 }, + [2] = { 29.3, 62.5, 16, 300 }, + }, + }, + [2002535] = { + ["coords"] = {}, + }, + [2002536] = { + ["coords"] = {}, + }, + [2002537] = { + ["coords"] = { + [1] = { 83.5, 65.1, 38, 25 }, + [2] = { 45.6, 45.9, 5179, 300 }, + [3] = { 41.3, 77.6, 5602, 25 }, + }, + }, + [2002538] = { + ["coords"] = { + [1] = { 61.6, 24.5, 17, 300 }, + [2] = { 42.8, 52.6, 267, 300 }, + [3] = { 50.9, 62.3, 357, 300 }, + [4] = { 70.2, 38, 1497, 300 }, + [5] = { 97, 14.9, 5179, 300 }, + }, + }, + [2002539] = { + ["coords"] = { + [1] = { 29.1, 70.8, 16, 300 }, + [2] = { 34.1, 21.4, 28, 0 }, + [3] = { 83.6, 65.4, 38, 25 }, + [4] = { 90.4, 36, 85, 0 }, + [5] = { 42.8, 52.4, 267, 300 }, + [6] = { 23.7, 65, 2040, 300 }, + [7] = { 97, 14.7, 5179, 300 }, + [8] = { 49, 33, 5225, 300 }, + [9] = { 41.4, 77.8, 5602, 25 }, + }, + }, + [2002540] = { + ["coords"] = {}, + }, + [2002541] = { + ["coords"] = {}, + }, + [2002542] = { + ["coords"] = {}, + }, + [2002543] = { + ["coords"] = {}, + }, + [2002544] = { + ["coords"] = {}, + }, + [2002545] = { + ["coords"] = {}, + }, + [2002546] = { + ["coords"] = {}, + }, + [2002547] = { + ["coords"] = {}, + }, + [2002548] = { + ["coords"] = {}, + }, + [2002549] = { + ["coords"] = {}, + }, + [2002550] = { + ["coords"] = {}, + }, + [2002551] = { + ["coords"] = { + [1] = { 33.7, 49, 10, 300 }, + }, + }, + [2002552] = { + ["coords"] = {}, + }, + [2002553] = { + ["coords"] = { + [1] = { 30.3, 72.5, 85, 300 }, + }, + }, + [2002554] = { + ["coords"] = { + [1] = { 25.3, 66.4, 16, 300 }, + [2] = { 42, 74.7, 40, 300 }, + [3] = { 54.6, 29.5, 1581, 300 }, + }, + }, + [2002555] = { + ["coords"] = { + [1] = { 27.7, 77.1, 33, 300 }, + [2] = { 67.6, 26.6, 440, 300 }, + }, + }, + [2002556] = { + ["coords"] = { + [1] = { 72.9, 53.8, 1497, 300 }, + }, + }, + [2002557] = { + ["coords"] = { + [1] = { 53.6, 26.8, 5130, 300 }, + }, + }, + [2002558] = { + ["coords"] = {}, + }, + [2002559] = { + ["coords"] = {}, + }, + [2002560] = { + ["coords"] = {}, + }, + [2002561] = { + ["coords"] = { + [1] = { 89.9, 81.5, 139, 300 }, + [2] = { 51.2, 65.9, 4012, 300 }, + }, + }, + [2002562] = { + ["coords"] = {}, + }, + [2002563] = { + ["coords"] = { + [1] = { 77.5, 60.4, 11, 300 }, + [2] = { 55.9, 82.3, 5561, 300 }, + [3] = { 58.9, 60.3, 5561, 300 }, + [4] = { 12.4, 46.3, 5601, 604800 }, + [5] = { 28.3, 25.4, 5602, 300 }, + [6] = { 24.1, 71.7, 5628, 300 }, + [7] = { 51.9, 15.2, 5628, 300 }, + }, + }, + [2002564] = { + ["coords"] = {}, + }, + [2002565] = { + ["coords"] = { + [1] = { 71.8, 56.2, 11, 300 }, + [2] = { 23.9, 22.1, 5602, 300 }, + }, + }, + [2002566] = { + ["coords"] = {}, + }, + [2002567] = { + ["coords"] = {}, + }, + [2002568] = { + ["coords"] = { + [1] = { 73.5, 24.4, 5087, 300 }, + }, + }, + [2002569] = { + ["coords"] = { + [1] = { 75.8, 66.5, 1519, 300 }, + }, + }, + [2002570] = { + ["coords"] = {}, + }, + [2002571] = { + ["coords"] = {}, + }, + [2002572] = { + ["coords"] = {}, + }, + [2002573] = { + ["coords"] = {}, + }, + [2002574] = { + ["coords"] = {}, + }, + [2002575] = { + ["coords"] = {}, + }, + [2002576] = { + ["coords"] = {}, + }, + [2002577] = { + ["coords"] = {}, + }, + [2002578] = { + ["coords"] = {}, + }, + [2002579] = { + ["coords"] = {}, + }, + [2002580] = { + ["coords"] = {}, + }, + [2002581] = { + ["coords"] = {}, + }, + [2002582] = { + ["coords"] = {}, + }, + [2002583] = { + ["coords"] = {}, + }, + [2002584] = { + ["coords"] = {}, + }, + [2002585] = { + ["coords"] = {}, + }, + [2002586] = { + ["coords"] = {}, + }, + [2002587] = { + ["coords"] = {}, + }, + [2002588] = { + ["coords"] = {}, + }, + [2002589] = { + ["coords"] = { + [1] = { 64.5, 11.7, 33, 300 }, + }, + }, + [2002590] = { + ["coords"] = {}, + }, + [2002591] = { + ["coords"] = { + [1] = { 30.8, 57.2, 5561, 300 }, + }, + }, + [2002592] = { + ["coords"] = {}, + }, + [2002593] = { + ["coords"] = { + [1] = { 61.8, 23.6, 17, 300 }, + [2] = { 61.7, 23.4, 17, 300 }, + }, + }, + [2002594] = { + ["coords"] = { + [1] = { 32.3, 47.6, 10, 300 }, + [2] = { 48.5, 62.5, 11, 300 }, + [3] = { 48.8, 62.3, 11, 300 }, + [4] = { 17.9, 67.1, 46, 300 }, + [5] = { 17.3, 66.9, 46, 300 }, + [6] = { 42.7, 50.8, 267, 300 }, + [7] = { 42.2, 50.7, 267, 300 }, + [8] = { 97, 13.3, 5179, 300 }, + [9] = { 96.5, 13.2, 5179, 300 }, + [10] = { 94.1, 93.4, 5581, 300 }, + [11] = { 93.5, 93.2, 5581, 300 }, + [12] = { 6, 27, 5602, 300 }, + [13] = { 6.3, 26.8, 5602, 300 }, + }, + }, + [2002595] = { + ["coords"] = {}, + }, + [2002596] = { + ["coords"] = {}, + }, + [2002597] = { + ["coords"] = {}, + }, + [2002598] = { + ["coords"] = {}, + }, + [2002599] = { + ["coords"] = {}, + }, + [2002600] = { + ["coords"] = {}, + }, + [2002601] = { + ["coords"] = {}, + }, + [2002602] = { + ["coords"] = {}, + }, + [2002603] = { + ["coords"] = {}, + }, + [2002604] = { + ["coords"] = {}, + }, + [2002605] = { + ["coords"] = {}, + }, + [2002606] = { + ["coords"] = {}, + }, + [2002607] = { + ["coords"] = {}, + }, + [2002608] = { + ["coords"] = {}, + }, + [2002609] = { + ["coords"] = {}, + }, + [2002610] = { + ["coords"] = {}, + }, + [2002611] = { + ["coords"] = {}, + }, + [2002612] = { + ["coords"] = {}, + }, + [2002613] = { + ["coords"] = {}, + }, + [2002614] = { + ["coords"] = {}, + }, + [2002615] = { + ["coords"] = { + [1] = { 29.7, 72.5, 85, 300 }, + [2] = { 85.8, 57.5, 85, 300 }, + [3] = { 21.1, 48.4, 267, 300 }, + [4] = { 78, 11.2, 5179, 300 }, + }, + }, + [2002616] = { + ["coords"] = { + [1] = { 85.8, 57.5, 85, 300 }, + [2] = { 20.7, 48.3, 267, 300 }, + [3] = { 77.7, 11.1, 5179, 300 }, + }, + }, + [2002617] = { + ["coords"] = { + [1] = { 29.6, 72.2, 85, 300 }, + [2] = { 86, 57.1, 85, 300 }, + [3] = { 21.2, 48.4, 267, 300 }, + [4] = { 78.1, 11.2, 5179, 300 }, + }, + }, + [2002618] = { + ["coords"] = { + [1] = { 29.9, 72.4, 85, 300 }, + [2] = { 85.8, 57, 85, 300 }, + [3] = { 21.2, 48.6, 267, 300 }, + [4] = { 20.7, 48.2, 267, 300 }, + [5] = { 78.1, 11.3, 5179, 300 }, + [6] = { 77.7, 11, 5179, 300 }, + }, + }, + [2002619] = { + ["coords"] = {}, + }, + [2002620] = { + ["coords"] = {}, + }, + [2002621] = { + ["coords"] = {}, + }, + [2002622] = { + ["coords"] = {}, + }, + [2002623] = { + ["coords"] = {}, + }, + [2002624] = { + ["coords"] = {}, + }, + [2002625] = { + ["coords"] = { + [1] = { 25.5, 30.7, 1, 300 }, + [2] = { 45.6, 83.6, 17, 300 }, + [3] = { 83.9, 20.6, 721, 300 }, + }, + }, + [2002626] = { + ["coords"] = { + [1] = { 88.1, 72.2, 46, 2700 }, + [2] = { 25.3, 43.7, 5179, 300 }, + }, + }, + [2002627] = { + ["coords"] = {}, + }, + [2002628] = { + ["coords"] = { + [1] = { 25.5, 30.6, 1, 300 }, + [2] = { 84, 20, 721, 300 }, + }, + }, + [2002629] = { + ["coords"] = { + [1] = { 51.3, 34, 5121, 300 }, + }, + }, + [2002630] = { + ["coords"] = {}, + }, + [2002631] = { + ["coords"] = { + [1] = { 43.2, 98.8, 28, 300 }, + [2] = { 43.1, 98.8, 28, 300 }, + [3] = { 79.4, 51.8, 36, 300 }, + [4] = { 79.3, 51.8, 36, 300 }, + }, + }, + [2002632] = { + ["coords"] = { + [1] = { 78.4, 75.1, 38, 25 }, + [2] = { 38.7, 82.8, 5602, 25 }, + }, + }, + [2002633] = { + ["coords"] = { + [1] = { 14.8, 69.6, 85, 300 }, + }, + }, + [2002634] = { + ["coords"] = {}, + }, + [2002635] = { + ["coords"] = { + [1] = { 35.2, 9.7, 45, 300 }, + [2] = { 14.5, 71.4, 47, 300 }, + [3] = { 4.7, 62.2, 85, 300 }, + }, + }, + [2002636] = { + ["coords"] = { + [1] = { 35.1, 9.7, 45, 300 }, + [2] = { 14.4, 71.4, 47, 300 }, + [3] = { 4.7, 62.1, 85, 300 }, + [4] = { 17, 49.4, 85, 300 }, + [5] = { 43.4, 17.3, 357, 25 }, + [6] = { 73, 53.7, 1497, 300 }, + }, + }, + [2002637] = { + ["coords"] = {}, + }, + [2002638] = { + ["coords"] = {}, + }, + [2002639] = { + ["coords"] = {}, + }, + [2002640] = { + ["coords"] = {}, + }, + [2002641] = { + ["coords"] = {}, + }, + [2002642] = { + ["coords"] = {}, + }, + [2002643] = { + ["coords"] = {}, + }, + [2002644] = { + ["coords"] = {}, + }, + [2002645] = { + ["coords"] = {}, + }, + [2002646] = { + ["coords"] = {}, + }, + [2002647] = { + ["coords"] = { + [1] = { 63.4, 61.2, 5086, 300 }, + [2] = { 46.1, 58.7, 5087, 300 }, + [3] = { 45.4, 53, 5087, 300 }, + }, + }, + [2002648] = { + ["coords"] = { + [1] = { 30.2, 71.8, 85, 300 }, + [2] = { 63.2, 58.1, 5086, 300 }, + [3] = { 45.5, 56.2, 5087, 300 }, + }, + }, + [2002649] = { + ["coords"] = { + [1] = { 30.4, 72.1, 85, 300 }, + [2] = { 66.6, 47, 267, 300 }, + [3] = { 63.2, 59.1, 5086, 300 }, + [4] = { 47, 55.9, 5087, 300 }, + }, + }, + [2002650] = { + ["coords"] = { + [1] = { 33.8, 81.1, 5086, 300 }, + [2] = { 47.3, 53.8, 5087, 300 }, + }, + }, + [2002651] = { + ["coords"] = {}, + }, + [2002652] = { + ["coords"] = { + [1] = { 64.5, 11.6, 33, 300 }, + [2] = { 29.8, 72.5, 85, 300 }, + [3] = { 45, 55, 5087, 300 }, + }, + }, + [2002653] = { + ["coords"] = { + [1] = { 37.4, 17.3, 406, 300 }, + [2] = { 47.8, 56.7, 5087, 300 }, + }, + }, + [2002654] = { + ["coords"] = {}, + }, + [2002655] = { + ["coords"] = { + [1] = { 51.2, 37.7, 16, 300 }, + [2] = { 31.9, 48.5, 33, 300 }, + [3] = { 4.6, 61.4, 85, 300 }, + [4] = { 24.4, 13, 406, 300 }, + [5] = { 82, 30.8, 616, 300 }, + [6] = { 82.1, 30.5, 616, 300 }, + }, + }, + [2002656] = { + ["coords"] = {}, + }, + [2002657] = { + ["coords"] = {}, + }, + [2002658] = { + ["coords"] = {}, + }, + [2002659] = { + ["coords"] = {}, + }, + [2002660] = { + ["coords"] = { + [1] = { 51.2, 62.1, 357, 300 }, + }, + }, + [2002661] = { + ["coords"] = {}, + }, + [2002662] = { + ["coords"] = {}, + }, + [2002663] = { + ["coords"] = {}, + }, + [2002664] = { + ["coords"] = {}, + }, + [2002665] = { + ["coords"] = {}, + }, + [2002666] = { + ["coords"] = {}, + }, + [2002667] = { + ["coords"] = {}, + }, + [2002668] = { + ["coords"] = {}, + }, + [2002669] = { + ["coords"] = {}, + }, + [2002670] = { + ["coords"] = { + [1] = { 80.9, 71.4, 10, 300 }, + }, + }, + [2002671] = { + ["coords"] = { + [1] = { 81, 71.7, 10, 300 }, + [2] = { 80.7, 71.7, 10, 300 }, + }, + }, + [2002672] = { + ["coords"] = {}, + }, + [2002673] = { + ["coords"] = {}, + }, + [2002674] = { + ["coords"] = { + [1] = { 77.2, 37.2, 2717, 300 }, + }, + }, + [2002675] = { + ["coords"] = {}, + }, + [2002676] = { + ["coords"] = { + [1] = { 42.4, 47.7, 5628, 300 }, + }, + }, + [2002677] = { + ["coords"] = { + [1] = { 24, 33.2, 1, 300 }, + [2] = { 24, 33.1, 1, 300 }, + [3] = { 24.1, 33.1, 1, 300 }, + [4] = { 24.3, 32.9, 1, 300 }, + [5] = { 24.8, 32.1, 1, 300 }, + [6] = { 24.7, 32.1, 1, 300 }, + [7] = { 24.8, 32, 1, 300 }, + [8] = { 25.2, 31.6, 1, 300 }, + [9] = { 26.7, 31.6, 1, 300 }, + [10] = { 24.1, 31.4, 1, 300 }, + [11] = { 26.5, 31.4, 1, 300 }, + [12] = { 26.3, 31.4, 1, 300 }, + [13] = { 26.5, 31.3, 1, 300 }, + [14] = { 27, 31.3, 1, 300 }, + [15] = { 24.8, 31.2, 1, 300 }, + [16] = { 26.8, 31.2, 1, 300 }, + [17] = { 27.1, 31.1, 1, 300 }, + [18] = { 27, 31, 1, 300 }, + [19] = { 26.3, 30.7, 1, 300 }, + [20] = { 27.5, 30.3, 1, 300 }, + [21] = { 26.7, 30.3, 1, 300 }, + [22] = { 25.4, 30.2, 1, 300 }, + [23] = { 24.2, 30.2, 1, 300 }, + [24] = { 24.1, 30.2, 1, 300 }, + [25] = { 25.1, 30.2, 1, 300 }, + [26] = { 24.4, 30.1, 1, 300 }, + [27] = { 23.5, 30, 1, 300 }, + [28] = { 23.6, 30, 1, 300 }, + [29] = { 24.4, 29.7, 1, 300 }, + [30] = { 23.5, 29.6, 1, 300 }, + [31] = { 24.1, 29.6, 1, 300 }, + [32] = { 23.3, 29.3, 1, 300 }, + [33] = { 23.2, 29.3, 1, 300 }, + [34] = { 23.5, 29.1, 1, 300 }, + [35] = { 23.6, 29.1, 1, 300 }, + [36] = { 29.6, 29.1, 1, 300 }, + [37] = { 29.7, 29.1, 1, 300 }, + [38] = { 23.5, 29, 1, 300 }, + [39] = { 29.6, 29, 1, 300 }, + [40] = { 23.5, 28.6, 1, 300 }, + [41] = { 23.5, 28.5, 1, 300 }, + [42] = { 23.6, 28.5, 1, 300 }, + [43] = { 23.6, 28, 1, 300 }, + [44] = { 23.7, 28, 1, 300 }, + [45] = { 71.8, 42.2, 721, 300 }, + [46] = { 71.5, 42.2, 721, 300 }, + [47] = { 71.6, 41.9, 721, 300 }, + [48] = { 71.9, 41.7, 721, 300 }, + [49] = { 73.8, 39.8, 721, 300 }, + [50] = { 74, 39.5, 721, 300 }, + [51] = { 78.1, 32.6, 721, 300 }, + [52] = { 77.6, 32.5, 721, 300 }, + [53] = { 77.9, 32, 721, 300 }, + [54] = { 81.7, 28.7, 721, 300 }, + [55] = { 94.4, 28.5, 721, 300 }, + [56] = { 72.5, 27.1, 721, 300 }, + [57] = { 92.8, 26.7, 721, 300 }, + [58] = { 91.4, 26.6, 721, 300 }, + [59] = { 92.6, 26.2, 721, 300 }, + [60] = { 97.2, 25.8, 721, 300 }, + [61] = { 78.2, 25.4, 721, 300 }, + [62] = { 95.5, 25.3, 721, 300 }, + [63] = { 78, 25.1, 721, 300 }, + [64] = { 97.7, 24.2, 721, 300 }, + [65] = { 97.5, 23.7, 721, 300 }, + [66] = { 91, 20.7, 721, 300 }, + [67] = { 94.7, 17.2, 721, 300 }, + [68] = { 83.6, 16.8, 721, 300 }, + [69] = { 83.4, 16.7, 721, 300 }, + [70] = { 72.8, 16.5, 721, 300 }, + [71] = { 72.5, 16.5, 721, 300 }, + [72] = { 80.6, 16.4, 721, 300 }, + [73] = { 74.6, 15.7, 721, 300 }, + [74] = { 67.5, 14.6, 721, 300 }, + [75] = { 67.7, 14.4, 721, 300 }, + [76] = { 74.4, 12.2, 721, 300 }, + [77] = { 66.8, 11.6, 721, 300 }, + [78] = { 71.8, 11.5, 721, 300 }, + [79] = { 72, 11.5, 721, 300 }, + [80] = { 65.2, 8.9, 721, 300 }, + [81] = { 64.9, 8.8, 721, 300 }, + [82] = { 67.2, 6.9, 721, 300 }, + [83] = { 67.5, 6.8, 721, 300 }, + [84] = { 67.3, 6.4, 721, 300 }, + [85] = { 67.4, 2.2, 721, 300 }, + [86] = { 67.3, 1.9, 721, 300 }, + [87] = { 67.5, 1.9, 721, 300 }, + }, + }, + [2002678] = { + ["coords"] = {}, + }, + [2002679] = { + ["coords"] = {}, + }, + [2002680] = { + ["coords"] = {}, + }, + [2002681] = { + ["coords"] = {}, + }, + [2002682] = { + ["coords"] = {}, + }, + [2002683] = { + ["coords"] = {}, + }, + [2002684] = { + ["coords"] = {}, + }, + [2002685] = { + ["coords"] = {}, + }, + [2002686] = { + ["coords"] = {}, + }, + [2002687] = { + ["coords"] = {}, + }, + [2002688] = { + ["coords"] = {}, + }, + [2002689] = { + ["coords"] = {}, + }, + [2002690] = { + ["coords"] = {}, + }, + [2002691] = { + ["coords"] = {}, + }, + [2002692] = { + ["coords"] = {}, + }, + [2002693] = { + ["coords"] = {}, + }, + [2002694] = { + ["coords"] = {}, + }, + [2002695] = { + ["coords"] = {}, + }, + [2002696] = { + ["coords"] = {}, + }, + [2002697] = { + ["coords"] = {}, + }, + [2002698] = { + ["coords"] = {}, + }, + [2002699] = { + ["coords"] = {}, + }, + [2002700] = { + ["coords"] = {}, + }, + [2002701] = { + ["coords"] = {}, + }, + [2002702] = { + ["coords"] = { + [1] = { 40.2, 56.1, 1537, 300 }, + }, + }, + [2002703] = { + ["coords"] = { + [1] = { 69.6, 57.7, 10, 300 }, + [2] = { 12.1, 55.8, 85, 300 }, + }, + }, + [2002704] = { + ["coords"] = {}, + }, + [2002705] = { + ["coords"] = {}, + }, + [2002706] = { + ["coords"] = {}, + }, + [2002707] = { + ["coords"] = { + [1] = { 43.3, 17.1, 357, 25 }, + [2] = { 82.5, 80.2, 5208, 300 }, + }, + }, + [2002708] = { + ["coords"] = { + [1] = { 43.4, 17.4, 357, 25 }, + }, + }, + [2002709] = { + ["coords"] = {}, + }, + [2002710] = { + ["coords"] = {}, + }, + [2002711] = { + ["coords"] = {}, + }, + [2002712] = { + ["coords"] = { + [1] = { 61.3, 24, 17, 300 }, + [2] = { 34.6, 9.9, 45, 300 }, + [3] = { 14, 71.6, 47, 300 }, + [4] = { 4.5, 62.4, 85, 300 }, + [5] = { 61, 44.7, 409, 300 }, + }, + }, + [2002713] = { + ["coords"] = {}, + }, + [2002714] = { + ["coords"] = {}, + }, + [2002715] = { + ["coords"] = {}, + }, + [2002716] = { + ["coords"] = { + [1] = { 31.4, 90.7, 405, 300 }, + [2] = { 31.4, 90.6, 405, 300 }, + }, + }, + [2002717] = { + ["coords"] = { + [1] = { 43.4, 80.5, 33, 300 }, + [2] = { 35.2, 10.2, 45, 300 }, + [3] = { 14.5, 71.8, 47, 300 }, + [4] = { 30.8, 38, 440, 300 }, + [5] = { 30.8, 37.9, 440, 300 }, + [6] = { 77.8, 67.1, 490, 300 }, + [7] = { 77.8, 67, 490, 300 }, + [8] = { 51.4, 34.2, 5121, 300 }, + }, + }, + [2002718] = { + ["coords"] = {}, + }, + [2002719] = { + ["coords"] = { + [1] = { 11.4, 47.1, 47, 300 }, + [2] = { 12, 46.2, 47, 300 }, + [3] = { 96.3, 6.6, 267, 300 }, + [4] = { 97, 5.6, 267, 300 }, + [5] = { 76.3, 82.4, 5208, 300 }, + [6] = { 77.4, 81.9, 5208, 300 }, + }, + }, + [2002720] = { + ["coords"] = {}, + }, + [2002721] = { + ["coords"] = {}, + }, + [2002722] = { + ["coords"] = {}, + }, + [2002723] = { + ["coords"] = { + [1] = { 42, 56.4, 1537, 300 }, + }, + }, + [2002724] = { + ["coords"] = { + [1] = { 11.7, 45.6, 47, 300 }, + [2] = { 96.7, 4.8, 267, 300 }, + [3] = { 41.4, 57.2, 1537, 300 }, + [4] = { 41.6, 56.9, 1537, 300 }, + [5] = { 42.4, 55.9, 1537, 300 }, + [6] = { 42.6, 55.6, 1537, 300 }, + [7] = { 43.1, 54.3, 1537, 300 }, + [8] = { 38.8, 52.5, 1537, 300 }, + [9] = { 39, 52.3, 1537, 300 }, + [10] = { 39.8, 51.3, 1537, 300 }, + [11] = { 40, 51, 1537, 300 }, + }, + }, + [2002725] = { + ["coords"] = { + [1] = { 10.1, 57.5, 11, 0 }, + [2] = { 43.1, 53.8, 1537, 300 }, + [3] = { 39.4, 51.7, 1537, 300 }, + [4] = { 41.1, 50.7, 1537, 300 }, + [5] = { 40.9, 50.6, 1537, 300 }, + }, + }, + [2002726] = { + ["coords"] = { + [1] = { 62.3, 24.7, 361, 300 }, + [2] = { 66.5, 24.2, 440, 300 }, + }, + }, + [2002727] = { + ["coords"] = {}, + }, + [2002728] = { + ["coords"] = {}, + }, + [2002729] = { + ["coords"] = { + [1] = { 68.2, 25.6, 1637, 25 }, + }, + }, + [2002730] = { + ["coords"] = {}, + }, + [2002731] = { + ["coords"] = {}, + }, + [2002732] = { + ["coords"] = { + [1] = { 85.7, 57.7, 85, 300 }, + [2] = { 66.8, 47.6, 267, 300 }, + }, + }, + [2002733] = { + ["coords"] = {}, + }, + [2002734] = { + ["coords"] = {}, + }, + [2002735] = { + ["coords"] = {}, + }, + [2002736] = { + ["coords"] = {}, + }, + [2002737] = { + ["coords"] = {}, + }, + [2002738] = { + ["coords"] = {}, + }, + [2002739] = { + ["coords"] = {}, + }, + [2002740] = { + ["coords"] = {}, + }, + [2002741] = { + ["coords"] = {}, + }, + [2002742] = { + ["coords"] = {}, + }, + [2002743] = { + ["coords"] = {}, + }, + [2002744] = { + ["coords"] = { + [1] = { 51.1, 34.6, 5121, 300 }, + [2] = { 51.1, 34.5, 5121, 300 }, + [3] = { 39.7, 44.4, 5208, 300 }, + }, + }, + [2002745] = { + ["coords"] = { + [1] = { 33, 76.2, 5179, 300 }, + }, + }, + [2002746] = { + ["coords"] = { + [1] = { 36.8, 11.4, 440, 300 }, + }, + }, + [2002747] = { + ["coords"] = {}, + }, + [2002748] = { + ["coords"] = { + [1] = { 41.9, 74.6, 40, 300 }, + [2] = { 54.1, 28.7, 1581, 300 }, + }, + }, + [2002749] = { + ["coords"] = { + [1] = { 42.3, 74.6, 40, 300 }, + [2] = { 57.2, 28.9, 1581, 300 }, + }, + }, + [2002750] = { + ["coords"] = {}, + }, + [2002751] = { + ["coords"] = {}, + }, + [2002752] = { + ["coords"] = {}, + }, + [2002753] = { + ["coords"] = {}, + }, + [2002754] = { + ["coords"] = {}, + }, + [2002755] = { + ["coords"] = {}, + }, + [2002756] = { + ["coords"] = {}, + }, + [2002757] = { + ["coords"] = {}, + }, + [2002758] = { + ["coords"] = {}, + }, + [2002759] = { + ["coords"] = {}, + }, + [2002760] = { + ["coords"] = {}, + }, + [2002761] = { + ["coords"] = {}, + }, + [2002762] = { + ["coords"] = {}, + }, + [2002763] = { + ["coords"] = {}, + }, + [2002764] = { + ["coords"] = { + [1] = { 34.8, 49, 10, 300 }, + [2] = { 48.3, 62.2, 11, 300 }, + [3] = { 29.6, 70.8, 16, 300 }, + [4] = { 45.8, 85.8, 17, 300 }, + [5] = { 80.4, 59.9, 28, 300 }, + [6] = { 18.1, 65.7, 46, 300 }, + [7] = { 22.1, 83.3, 139, 300 }, + [8] = { 94.2, 92.1, 5581, 300 }, + [9] = { 5.9, 26.8, 5602, 300 }, + }, + }, + [2002765] = { + ["coords"] = { + [1] = { 39.1, 69.3, 12, 300 }, + [2] = { 61.2, 32.4, 15, 300 }, + [3] = { 61.2, 32.2, 15, 300 }, + [4] = { 29.3, 71.4, 16, 300 }, + [5] = { 29.4, 71.4, 16, 300 }, + [6] = { 46, 85.6, 17, 300 }, + [7] = { 48.9, 8.6, 33, 300 }, + [8] = { 19.9, 65.9, 46, 300 }, + [9] = { 22.1, 69.5, 85, 300 }, + [10] = { 47.8, 57.4, 406, 300 }, + [11] = { 95.9, 92.3, 5581, 300 }, + }, + }, + [2002766] = { + ["coords"] = {}, + }, + [2002767] = { + ["coords"] = {}, + }, + [2002768] = { + ["coords"] = { + [1] = { 51.2, 27.4, 11, 0 }, + [2] = { 42.2, 72.1, 15, 25 }, + }, + }, + [2002769] = { + ["coords"] = {}, + }, + [2002770] = { + ["coords"] = {}, + }, + [2002771] = { + ["coords"] = {}, + }, + [2002772] = { + ["coords"] = {}, + }, + [2002773] = { + ["coords"] = { + [1] = { 49.9, 45.9, 8, 300 }, + [2] = { 33.6, 48.3, 10, 300 }, + [3] = { 29.7, 75.6, 16, 300 }, + [4] = { 26.2, 66.8, 16, 300 }, + [5] = { 42.1, 75.1, 40, 300 }, + [6] = { 42.1, 75, 40, 300 }, + [7] = { 42.1, 74.7, 40, 300 }, + [8] = { 42.2, 74.6, 40, 300 }, + [9] = { 40.7, 10.3, 490, 300 }, + [10] = { 22.3, 56.1, 1519, 300 }, + [11] = { 21.9, 43.2, 1519, 300 }, + [12] = { 55.6, 32.1, 1581, 300 }, + [13] = { 55.5, 32, 1581, 300 }, + [14] = { 55.9, 29.2, 1581, 300 }, + [15] = { 56, 28.9, 1581, 300 }, + }, + }, + [2002774] = { + ["coords"] = {}, + }, + [2002775] = { + ["coords"] = { + [1] = { 51.5, 18.8, 33, 300 }, + }, + }, + [2002776] = { + ["coords"] = { + [1] = { 30.3, 48.8, 33, 300 }, + [2] = { 94.4, 22.6, 331, 300 }, + [3] = { 44.6, 50.3, 406, 300 }, + }, + }, + [2002777] = { + ["coords"] = {}, + }, + [2002778] = { + ["coords"] = { + [1] = { 31.6, 48.4, 33, 300 }, + [2] = { 94.4, 22.5, 331, 300 }, + [3] = { 94.3, 22.4, 331, 300 }, + [4] = { 94.2, 22.4, 331, 300 }, + [5] = { 94.2, 22.3, 331, 300 }, + }, + }, + [2002779] = { + ["coords"] = { + [1] = { 29, 73.6, 16, 300 }, + [2] = { 79.1, 67, 28, 300 }, + [3] = { 79.1, 66.8, 28, 300 }, + [4] = { 79.2, 66.4, 28, 300 }, + [5] = { 30.3, 48.7, 33, 300 }, + [6] = { 51.5, 18.9, 33, 300 }, + }, + }, + [2002780] = { + ["coords"] = {}, + }, + [2002781] = { + ["coords"] = {}, + }, + [2002782] = { + ["coords"] = {}, + }, + [2002783] = { + ["coords"] = {}, + }, + [2002784] = { + ["coords"] = {}, + }, + [2002785] = { + ["coords"] = {}, + }, + [2002786] = { + ["coords"] = { + [1] = { 91.8, 22.8, 405, 300 }, + [2] = { 63.8, 91.6, 406, 300 }, + }, + }, + [2002787] = { + ["coords"] = { + [1] = { 49.3, 60.3, 11, 300 }, + [2] = { 48.6, 83, 17, 300 }, + [3] = { 80.7, 60.3, 28, 300 }, + [4] = { 50.8, 35.9, 33, 300 }, + [5] = { 77.8, 76.9, 38, 25 }, + [6] = { 78.2, 76.6, 38, 25 }, + [7] = { 77, 74.7, 38, 25 }, + [8] = { 78.1, 74.6, 38, 25 }, + [9] = { 18.9, 61.7, 44, 300 }, + [10] = { 19.9, 66.9, 46, 300 }, + [11] = { 19.4, 65.7, 46, 300 }, + [12] = { 22.4, 83.8, 139, 300 }, + [13] = { 42.9, 52, 267, 300 }, + [14] = { 30.8, 90.4, 405, 300 }, + [15] = { 67.4, 26.7, 440, 300 }, + [16] = { 97.1, 14.4, 5179, 300 }, + [17] = { 95.9, 93.2, 5581, 300 }, + [18] = { 95.5, 92.1, 5581, 300 }, + [19] = { 38.4, 83.6, 5602, 25 }, + [20] = { 38.6, 83.5, 5602, 25 }, + [21] = { 38, 82.5, 5602, 25 }, + [22] = { 38.5, 82.5, 5602, 25 }, + [23] = { 6.6, 25.3, 5602, 300 }, + }, + }, + [2002788] = { + ["coords"] = { + [1] = { 36.1, 33, 17, 300 }, + [2] = { 60, 10.1, 215, 300 }, + [3] = { 41.9, 79.9, 1519, 300 }, + }, + }, + [2002789] = { + ["coords"] = { + [1] = { 17.3, 49.7, 85, 300 }, + [2] = { 17.4, 49, 85, 300 }, + }, + }, + [2002790] = { + ["coords"] = { + [1] = { 34.1, 10, 17, 300 }, + [2] = { 34.7, 10.2, 45, 300 }, + [3] = { 14, 71.8, 47, 300 }, + [4] = { 73, 58, 331, 300 }, + [5] = { 79.5, 62.5, 406, 300 }, + [6] = { 59.6, 34.9, 1497, 300 }, + [7] = { 21.9, 37.6, 1519, 300 }, + [8] = { 28.2, 97.6, 5581, 300 }, + }, + }, + [2002791] = { + ["coords"] = { + [1] = { 74.8, 51.4, 17, 300 }, + [2] = { 42.1, 10.7, 130, 300 }, + [3] = { 37, 51.4, 406, 300 }, + [4] = { 59.9, 34.4, 1497, 300 }, + [5] = { 22.1, 37.6, 1519, 300 }, + [6] = { 28.4, 97.6, 5581, 300 }, + }, + }, + [2002792] = { + ["coords"] = { + [1] = { 25.4, 30.8, 1, 300 }, + [2] = { 33.5, 49.3, 10, 300 }, + [3] = { 49, 61.1, 11, 300 }, + [4] = { 67.7, 83.2, 130, 300 }, + [5] = { 42.6, 53.1, 267, 300 }, + [6] = { 14.3, 49.8, 267, 300 }, + [7] = { 83.3, 21.4, 721, 300 }, + [8] = { 59.7, 34.6, 1497, 300 }, + [9] = { 96.8, 15.3, 5179, 300 }, + [10] = { 72.2, 12.4, 5179, 300 }, + [11] = { 39.9, 44.2, 5208, 300 }, + [12] = { 6.4, 25.9, 5602, 300 }, + }, + }, + [2002793] = { + ["coords"] = { + [1] = { 20.6, 48.3, 267, 300 }, + [2] = { 20.6, 48.2, 267, 300 }, + [3] = { 74.6, 44.8, 5087, 300 }, + [4] = { 77.6, 11.1, 5179, 300 }, + [5] = { 77.6, 11, 5179, 300 }, + }, + }, + [2002794] = { + ["coords"] = { + [1] = { 57.9, 99.5, 14, 300 }, + [2] = { 75.5, 49, 17, 300 }, + [3] = { 34.4, 10.3, 17, 300 }, + [4] = { 17.3, 49.7, 85, 300 }, + [5] = { 80, 62.9, 406, 300 }, + }, + }, + [2002795] = { + ["coords"] = { + [1] = { 61.4, 24.1, 17, 300 }, + [2] = { 19.9, 66.1, 46, 300 }, + [3] = { 67.6, 83.2, 130, 300 }, + [4] = { 42.1, 52.2, 267, 300 }, + [5] = { 14.2, 49.8, 267, 300 }, + [6] = { 25, 37, 1519, 300 }, + [7] = { 28, 14.4, 1519, 300 }, + [8] = { 43.3, 56.4, 1537, 300 }, + [9] = { 96.4, 14.5, 5179, 300 }, + [10] = { 72.1, 12.5, 5179, 300 }, + [11] = { 29.9, 97.2, 5581, 300 }, + [12] = { 95.9, 92.4, 5581, 300 }, + [13] = { 31.5, 85.1, 5581, 300 }, + }, + }, + [2002796] = { + ["coords"] = { + [1] = { 25.5, 30.6, 1, 300 }, + [2] = { 33.4, 48.7, 10, 300 }, + [3] = { 58, 99.5, 14, 300 }, + [4] = { 75.5, 49, 17, 300 }, + [5] = { 44.2, 98.4, 28, 300 }, + [6] = { 31.4, 49, 33, 300 }, + [7] = { 80.9, 51.2, 36, 300 }, + [8] = { 19.8, 65.9, 46, 300 }, + [9] = { 55.1, 56.2, 405, 300 }, + [10] = { 84.2, 19.5, 721, 300 }, + [11] = { 22.1, 36.9, 1519, 300 }, + [12] = { 25, 36.8, 1519, 300 }, + [13] = { 41.3, 58.9, 1537, 300 }, + [14] = { 28.3, 97.2, 5581, 300 }, + [15] = { 29.9, 97.1, 5581, 300 }, + [16] = { 95.8, 92.3, 5581, 300 }, + }, + }, + [2002797] = { + ["coords"] = {}, + }, + [2002798] = { + ["coords"] = { + [1] = { 45, 59.9, 215, 0 }, + [2] = { 43.3, 17.1, 357, 25 }, + }, + }, + [2002799] = { + ["coords"] = {}, + }, + [2002800] = { + ["coords"] = {}, + }, + [2002801] = { + ["coords"] = { + [1] = { 44.9, 91.8, 16, 300 }, + }, + }, + [2002802] = { + ["coords"] = {}, + }, + [2002803] = { + ["coords"] = {}, + }, + [2002804] = { + ["coords"] = {}, + }, + [2002805] = { + ["coords"] = {}, + }, + [2002806] = { + ["coords"] = {}, + }, + [2002807] = { + ["coords"] = {}, + }, + [2002808] = { + ["coords"] = {}, + }, + [2002809] = { + ["coords"] = {}, + }, + [2002810] = { + ["coords"] = {}, + }, + [2002811] = { + ["coords"] = {}, + }, + [2002812] = { + ["coords"] = { + [1] = { 33.3, 49.1, 10, 300 }, + [2] = { 33.3, 48.9, 10, 300 }, + [3] = { 66.7, 24.3, 440, 300 }, + [4] = { 66.6, 24.2, 440, 300 }, + [5] = { 66.7, 24.2, 440, 300 }, + }, + }, + [2002813] = { + ["coords"] = {}, + }, + [2002814] = { + ["coords"] = { + [1] = { 34.1, 10.2, 17, 300 }, + [2] = { 82.8, 54.9, 400, 300 }, + [3] = { 79.4, 62.7, 406, 300 }, + [4] = { 41.9, 56.1, 1537, 300 }, + }, + }, + [2002815] = { + ["coords"] = { + [1] = { 78.8, 67.1, 28, 300 }, + }, + }, + [2002816] = { + ["coords"] = {}, + }, + [2002817] = { + ["coords"] = { + [1] = { 11.3, 45.9, 47, 300 }, + [2] = { 96.2, 5.2, 267, 300 }, + }, + }, + [2002818] = { + ["coords"] = {}, + }, + [2002819] = { + ["coords"] = {}, + }, + [2002820] = { + ["coords"] = {}, + }, + [2002821] = { + ["coords"] = {}, + }, + [2002822] = { + ["coords"] = { + [1] = { 34.2, 49, 10, 300 }, + }, + }, + [2002823] = { + ["coords"] = {}, + }, + [2002824] = { + ["coords"] = { + [1] = { 37, 51.7, 406, 300 }, + }, + }, + [2002825] = { + ["coords"] = { + [1] = { 56.9, 98.9, 14, 300 }, + [2] = { 74.7, 51.6, 17, 300 }, + [3] = { 74.5, 51.5, 17, 300 }, + [4] = { 74.4, 51.3, 17, 300 }, + [5] = { 74.9, 48.7, 17, 300 }, + [6] = { 37.1, 51.3, 406, 300 }, + }, + }, + [2002826] = { + ["coords"] = {}, + }, + [2002827] = { + ["coords"] = {}, + }, + [2002828] = { + ["coords"] = {}, + }, + [2002829] = { + ["coords"] = {}, + }, + [2002830] = { + ["coords"] = {}, + }, + [2002831] = { + ["coords"] = {}, + }, + [2002832] = { + ["coords"] = {}, + }, + [2002833] = { + ["coords"] = {}, + }, + [2002834] = { + ["coords"] = {}, + }, + [2002835] = { + ["coords"] = {}, + }, + [2002836] = { + ["coords"] = {}, + }, + [2002837] = { + ["coords"] = {}, + }, + [2002838] = { + ["coords"] = {}, + }, + [2002839] = { + ["coords"] = {}, + }, + [2002840] = { + ["coords"] = {}, + }, + [2002841] = { + ["coords"] = {}, + }, + [2002842] = { + ["coords"] = {}, + }, + [2002843] = { + ["coords"] = {}, + }, + [2002844] = { + ["coords"] = {}, + }, + [2002845] = { + ["coords"] = {}, + }, + [2002846] = { + ["coords"] = {}, + }, + [2002847] = { + ["coords"] = {}, + }, + [2002848] = { + ["coords"] = {}, + }, + [2002849] = { + ["coords"] = {}, + }, + [2002850] = { + ["coords"] = {}, + }, + [2002851] = { + ["coords"] = {}, + }, + [2002852] = { + ["coords"] = {}, + }, + [2002853] = { + ["coords"] = {}, + }, + [2002854] = { + ["coords"] = {}, + }, + [2002855] = { + ["coords"] = {}, + }, + [2002856] = { + ["coords"] = {}, + }, + [2002857] = { + ["coords"] = {}, + }, + [2002858] = { + ["coords"] = {}, + }, + [2002859] = { + ["coords"] = {}, + }, + [2002860] = { + ["coords"] = {}, + }, + [2002861] = { + ["coords"] = {}, + }, + [2002862] = { + ["coords"] = {}, + }, + [2002863] = { + ["coords"] = {}, + }, + [2002864] = { + ["coords"] = {}, + }, + [2002865] = { + ["coords"] = {}, + }, + [2002866] = { + ["coords"] = {}, + }, + [2002867] = { + ["coords"] = {}, + }, + [2002868] = { + ["coords"] = {}, + }, + [2002869] = { + ["coords"] = {}, + }, + [2002870] = { + ["coords"] = { + [1] = { 84.7, 79.7, 12, 300 }, + [2] = { 84.4, 79.7, 12, 300 }, + [3] = { 42.5, 80.2, 1519, 300 }, + [4] = { 67.6, 27, 1519, 300 }, + [5] = { 52.8, 91.9, 5581, 300 }, + }, + }, + [2002871] = { + ["coords"] = { + [1] = { 12, 56, 85, 300 }, + [2] = { 42.1, 80.5, 1519, 300 }, + [3] = { 42.3, 79.7, 1519, 300 }, + [4] = { 54.7, 18.9, 5561, 300 }, + [5] = { 33.2, 60.3, 5581, 300 }, + }, + }, + [2002872] = { + ["coords"] = {}, + }, + [2002873] = { + ["coords"] = { + [1] = { 43.3, 80.5, 33, 300 }, + [2] = { 27.7, 77.1, 33, 300 }, + [3] = { 43.3, 17.2, 357, 25 }, + [4] = { 74.4, 39.7, 1497, 300 }, + [5] = { 51.4, 34.5, 5121, 300 }, + }, + }, + [2002874] = { + ["coords"] = { + [1] = { 80.7, 63.4, 28, 300 }, + [2] = { 23.7, 58.7, 85, 300 }, + [3] = { 11.9, 53.3, 85, 300 }, + [4] = { 22.4, 87.2, 139, 300 }, + }, + }, + [2002875] = { + ["coords"] = { + [1] = { 64.3, 15.2, 4, 300 }, + [2] = { 31.5, 90.6, 405, 300 }, + [3] = { 42.7, 54, 1537, 300 }, + [4] = { 40.9, 51.1, 1537, 300 }, + [5] = { 39.9, 42.7, 5208, 300 }, + }, + }, + [2002876] = { + ["coords"] = { + [1] = { 51.2, 61.8, 357, 300 }, + }, + }, + [2002877] = { + ["coords"] = { + [1] = { 17.4, 49.3, 85, 300 }, + [2] = { 68.2, 26.8, 1637, 25 }, + [3] = { 68.3, 26.3, 1637, 25 }, + }, + }, + [2002878] = { + ["coords"] = {}, + }, + [2002879] = { + ["coords"] = { + [1] = { 81, 60.5, 28, 300 }, + [2] = { 22.8, 84, 139, 300 }, + }, + }, + [2002880] = { + ["coords"] = {}, + }, + [2002881] = { + ["coords"] = { + [1] = { 61.5, 44.6, 409, 300 }, + [2] = { 61.6, 44.5, 409, 300 }, + [3] = { 61.4, 44.3, 409, 300 }, + }, + }, + [2002882] = { + ["coords"] = {}, + }, + [2002883] = { + ["coords"] = {}, + }, + [2002884] = { + ["coords"] = { + [1] = { 50.8, 61.7, 357, 300 }, + [2] = { 60.7, 23.9, 361, 300 }, + [3] = { 60.8, 23.8, 361, 300 }, + [4] = { 60.6, 23.8, 361, 300 }, + }, + }, + [2002885] = { + ["coords"] = { + [1] = { 30.4, 64, 141, 300 }, + [2] = { 51.2, 62.4, 357, 300 }, + [3] = { 30.9, 89.7, 405, 300 }, + [4] = { 57.2, 43.7, 409, 300 }, + [5] = { 38.8, 11.5, 490, 300 }, + [6] = { 39, 11.4, 490, 300 }, + [7] = { 39.4, 11.3, 490, 300 }, + [8] = { 39.1, 10.9, 490, 300 }, + [9] = { 39.3, 10.8, 490, 300 }, + [10] = { 38.8, 10.5, 490, 300 }, + [11] = { 39.1, 10.3, 490, 300 }, + [12] = { 63.4, 82.3, 1657, 300 }, + [13] = { 82.9, 80.6, 5208, 300 }, + }, + }, + [2002886] = { + ["coords"] = { + [1] = { 4.7, 61.4, 85, 300 }, + [2] = { 66.7, 27.1, 1519, 300 }, + [3] = { 62.9, 84.4, 5121, 300 }, + [4] = { 52.3, 91.9, 5581, 300 }, + [5] = { 51, 48.6, 5581, 300 }, + [6] = { 51.3, 48.2, 5581, 300 }, + }, + }, + [2002887] = { + ["coords"] = { + [1] = { 50.7, 61.8, 357, 300 }, + [2] = { 56.9, 43.7, 409, 300 }, + [3] = { 67.3, 28.2, 1519, 300 }, + [4] = { 52.6, 92.5, 5581, 300 }, + }, + }, + [2002888] = { + ["coords"] = { + [1] = { 31.2, 63, 141, 300 }, + [2] = { 31.3, 62.9, 141, 300 }, + [3] = { 67.1, 77.1, 1657, 300 }, + [4] = { 67.9, 76.9, 1657, 300 }, + }, + }, + [2002889] = { + ["coords"] = { + [1] = { 10, 57.5, 11, 0 }, + [2] = { 11.8, 45.6, 47, 300 }, + [3] = { 96.7, 4.9, 267, 300 }, + }, + }, + [2002890] = { + ["coords"] = { + [1] = { 73.5, 35.2, 1497, 300 }, + [2] = { 40.6, 56.5, 1537, 300 }, + }, + }, + [2002891] = { + ["coords"] = { + [1] = { 41.9, 51.5, 267, 300 }, + [2] = { 96.2, 13.9, 5179, 300 }, + }, + }, + [2002892] = { + ["coords"] = {}, + }, + [2002893] = { + ["coords"] = { + [1] = { 43.7, 98.2, 28, 300 }, + [2] = { 80.2, 50.8, 36, 300 }, + [3] = { 41.9, 51.4, 267, 300 }, + [4] = { 96.2, 13.9, 5179, 300 }, + }, + }, + [2002894] = { + ["coords"] = { + [1] = { 48.8, 62.1, 11, 300 }, + [2] = { 31.6, 49.1, 33, 300 }, + [3] = { 41.6, 69.3, 2040, 25 }, + [4] = { 57.6, 35, 5225, 25 }, + [5] = { 6.3, 26.6, 5602, 300 }, + }, + }, + [2002895] = { + ["coords"] = { + [1] = { 43.5, 98.1, 28, 300 }, + [2] = { 79.9, 50.7, 36, 300 }, + }, + }, + [2002896] = { + ["coords"] = { + [1] = { 31.7, 49.2, 33, 300 }, + }, + }, + [2002897] = { + ["coords"] = { + [1] = { 67, 82.4, 130, 300 }, + [2] = { 13.4, 48.7, 267, 300 }, + [3] = { 71.4, 11.5, 5179, 300 }, + }, + }, + [2002898] = { + ["coords"] = { + [1] = { 43.4, 98.3, 28, 300 }, + [2] = { 79.7, 51, 36, 300 }, + [3] = { 79.7, 25.3, 85, 300 }, + [4] = { 66.9, 82.1, 130, 300 }, + [5] = { 13.3, 48.4, 267, 300 }, + [6] = { 56.5, 39.1, 1497, 300 }, + [7] = { 71.3, 11.2, 5179, 300 }, + }, + }, + [2002899] = { + ["coords"] = { + [1] = { 48.2, 61.9, 11, 300 }, + [2] = { 79.7, 25.2, 85, 300 }, + [3] = { 41.8, 51.3, 267, 300 }, + [4] = { 96.2, 13.7, 5179, 300 }, + [5] = { 5.8, 26.5, 5602, 300 }, + }, + }, + [2002900] = { + ["coords"] = { + [1] = { 48.2, 62.1, 11, 300 }, + [2] = { 43.3, 98.4, 28, 300 }, + [3] = { 79.6, 51.2, 36, 300 }, + [4] = { 79.7, 25.4, 85, 300 }, + [5] = { 41.8, 51, 267, 300 }, + [6] = { 58.2, 41.6, 409, 300 }, + [7] = { 55.9, 38.8, 1497, 300 }, + [8] = { 96.2, 13.5, 5179, 300 }, + [9] = { 5.8, 26.6, 5602, 300 }, + }, + }, + [2002901] = { + ["coords"] = { + [1] = { 62.7, 38.2, 17, 300 }, + [2] = { 63.3, 10.4, 33, 300 }, + }, + }, + [2002902] = { + ["coords"] = {}, + }, + [2002903] = { + ["coords"] = { + [1] = { 62.8, 38.1, 17, 300 }, + [2] = { 11.9, 45.3, 47, 300 }, + [3] = { 67.5, 83.6, 130, 300 }, + [4] = { 14.1, 50.4, 267, 300 }, + [5] = { 96.9, 4.5, 267, 300 }, + [6] = { 71.9, 12.9, 5179, 300 }, + }, + }, + [2002904] = { + ["coords"] = {}, + }, + [2002905] = { + ["coords"] = {}, + }, + [2002906] = { + ["coords"] = { + [1] = { 61.6, 23.3, 17, 300 }, + [2] = { 4.3, 61.8, 85, 300 }, + [3] = { 42.2, 10.3, 130, 300 }, + [4] = { 43.6, 16.9, 357, 25 }, + }, + }, + [2002907] = { + ["coords"] = { + [1] = { 71.5, 46.7, 1497, 300 }, + }, + }, + [2002908] = { + ["coords"] = {}, + }, + [2002909] = { + ["coords"] = {}, + }, + [2002910] = { + ["coords"] = {}, + }, + [2002911] = { + ["coords"] = { + [1] = { 24.2, 31.8, 1, 300 }, + [2] = { 25.5, 30.3, 1, 300 }, + [3] = { 23.5, 29.3, 1, 300 }, + [4] = { 26, 69.2, 15, 300 }, + [5] = { 45, 92.1, 16, 300 }, + [6] = { 29.3, 70.4, 16, 300 }, + [7] = { 49, 89.8, 17, 300 }, + [8] = { 45.6, 83.5, 17, 300 }, + [9] = { 48.6, 83, 17, 300 }, + [10] = { 80.4, 60, 28, 300 }, + [11] = { 43.3, 80.5, 33, 300 }, + [12] = { 17.8, 66.9, 46, 300 }, + [13] = { 22.1, 83.4, 139, 300 }, + [14] = { 50.8, 61.7, 357, 300 }, + [15] = { 37.1, 51.3, 406, 300 }, + [16] = { 58.1, 22.5, 440, 300 }, + [17] = { 61.2, 36.9, 618, 300 }, + [18] = { 73.1, 30.2, 721, 300 }, + [19] = { 84.4, 17.5, 721, 300 }, + [20] = { 67.1, 8.7, 721, 300 }, + [21] = { 94, 93.2, 5581, 300 }, + }, + }, + [2002912] = { + ["coords"] = {}, + }, + [2002913] = { + ["coords"] = { + [1] = { 37.6, 72.2, 14, 300 }, + [2] = { 42.7, 93.2, 17, 300 }, + [3] = { 64.9, 34.8, 17, 300 }, + [4] = { 79.1, 66.8, 28, 300 }, + [5] = { 43.3, 80.5, 33, 300 }, + [6] = { 21.1, 48.3, 267, 300 }, + [7] = { 28.9, 24.4, 400, 300 }, + [8] = { 37.1, 51.4, 406, 300 }, + [9] = { 31.4, 36.8, 440, 300 }, + [10] = { 78.8, 64.9, 490, 300 }, + [11] = { 50.3, 30.1, 618, 300 }, + [12] = { 51.2, 34.1, 5121, 300 }, + [13] = { 78.1, 11.1, 5179, 300 }, + }, + }, + [2002914] = { + ["coords"] = {}, + }, + [2002915] = { + ["coords"] = {}, + }, + [2002916] = { + ["coords"] = { + [1] = { 37, 18.9, 5561, 300 }, + }, + }, + [2002917] = { + ["coords"] = {}, + }, + [2002918] = { + ["coords"] = {}, + }, + [2002919] = { + ["coords"] = { + [1] = { 42.3, 10.3, 130, 300 }, + }, + }, + [2002920] = { + ["coords"] = {}, + }, + [2002921] = { + ["coords"] = { + [1] = { 42.3, 10.2, 130, 300 }, + }, + }, + [2002922] = { + ["coords"] = { + [1] = { 60.4, 44.7, 409, 300 }, + }, + }, + [2002923] = { + ["coords"] = { + [1] = { 60.4, 44.2, 409, 300 }, + [2] = { 41.7, 70.6, 2040, 25 }, + [3] = { 57.6, 35.6, 5225, 25 }, + }, + }, + [2002924] = { + ["coords"] = { + [1] = { 60.6, 44.3, 409, 300 }, + }, + }, + [2002925] = { + ["coords"] = {}, + }, + [2002926] = { + ["coords"] = { + [1] = { 24.1, 31.7, 1, 300 }, + [2] = { 25.1, 30.7, 1, 300 }, + [3] = { 23.8, 28.2, 1, 300 }, + [4] = { 63.6, 86.2, 16, 300 }, + [5] = { 61.6, 12.3, 16, 300 }, + [6] = { 71.9, 29.5, 721, 300 }, + [7] = { 81.1, 20.8, 721, 300 }, + }, + }, + [2002927] = { + ["coords"] = { + [1] = { 24.4, 33.5, 1, 300 }, + [2] = { 24.1, 31.8, 1, 300 }, + [3] = { 26.7, 31.3, 1, 300 }, + [4] = { 23.9, 30.7, 1, 300 }, + [5] = { 23.5, 30, 1, 300 }, + [6] = { 24.5, 28.9, 1, 300 }, + [7] = { 61.4, 24.7, 17, 300 }, + [8] = { 50.9, 36, 33, 300 }, + [9] = { 74.5, 45.4, 721, 300 }, + [10] = { 72.5, 30.1, 721, 300 }, + [11] = { 95.1, 25.7, 721, 300 }, + [12] = { 70.3, 21, 721, 300 }, + [13] = { 67.3, 14.4, 721, 300 }, + [14] = { 76.1, 5.3, 721, 300 }, + }, + }, + [2002928] = { + ["coords"] = { + [1] = { 24, 33.4, 1, 300 }, + [2] = { 24.4, 31.9, 1, 300 }, + [3] = { 24.1, 31.7, 1, 300 }, + [4] = { 26.7, 30.3, 1, 300 }, + [5] = { 23.4, 28.1, 1, 300 }, + [6] = { 63.5, 86.1, 16, 300 }, + [7] = { 71, 44.2, 721, 300 }, + [8] = { 74.8, 30.9, 721, 300 }, + [9] = { 72.1, 29.4, 721, 300 }, + [10] = { 94.5, 17.1, 721, 300 }, + }, + }, + [2002929] = { + ["coords"] = { + [1] = { 24.3, 33.6, 1, 300 }, + [2] = { 24.4, 31.5, 1, 300 }, + [3] = { 26.6, 31.5, 1, 300 }, + [4] = { 23.5, 29.1, 1, 300 }, + [5] = { 61.5, 24.7, 17, 300 }, + [6] = { 51.1, 36.1, 33, 300 }, + [7] = { 73.8, 46.1, 721, 300 }, + [8] = { 75.2, 27.8, 721, 300 }, + [9] = { 93.5, 27.6, 721, 300 }, + [10] = { 67.4, 7.1, 721, 300 }, + }, + }, + [2002930] = { + ["coords"] = { + [1] = { 24.3, 33.5, 1, 300 }, + [2] = { 25.1, 30.5, 1, 300 }, + [3] = { 25.2, 30.2, 1, 300 }, + [4] = { 74.2, 45.3, 721, 300 }, + [5] = { 81.2, 19.2, 721, 300 }, + [6] = { 82, 16.3, 721, 300 }, + }, + }, + [2002931] = { + ["coords"] = {}, + }, + [2002932] = { + ["coords"] = {}, + }, + [2002933] = { + ["coords"] = {}, + }, + [2002934] = { + ["coords"] = {}, + }, + [2002935] = { + ["coords"] = { + [1] = { 24.4, 31.9, 1, 300 }, + [2] = { 45, 92, 16, 300 }, + [3] = { 50.9, 36, 33, 300 }, + [4] = { 74.6, 30.9, 721, 300 }, + }, + }, + [2002936] = { + ["coords"] = { + [1] = { 24.1, 31.6, 1, 300 }, + [2] = { 24.5, 31.4, 1, 300 }, + [3] = { 72.3, 28.9, 721, 300 }, + [4] = { 75.4, 26.4, 721, 300 }, + }, + }, + [2002937] = { + ["coords"] = { + [1] = { 24.1, 31.8, 1, 300 }, + [2] = { 24.1, 31.5, 1, 300 }, + [3] = { 24.4, 31.4, 1, 300 }, + [4] = { 72.2, 30, 721, 300 }, + [5] = { 72.5, 27.5, 721, 300 }, + [6] = { 75.2, 27, 721, 300 }, + }, + }, + [2002938] = { + ["coords"] = { + [1] = { 24.2, 31.8, 1, 300 }, + [2] = { 73.5, 30.3, 721, 300 }, + }, + }, + [2002939] = { + ["coords"] = { + [1] = { 24.3, 31.8, 1, 300 }, + [2] = { 24.4, 31.6, 1, 300 }, + [3] = { 25.2, 30.2, 1, 300 }, + [4] = { 23.1, 29.3, 1, 300 }, + [5] = { 23.2, 28.8, 1, 300 }, + [6] = { 24.3, 28, 1, 300 }, + [7] = { 24, 28, 1, 300 }, + [8] = { 51, 36.1, 33, 300 }, + [9] = { 74.1, 30.5, 721, 300 }, + [10] = { 75, 28.6, 721, 300 }, + [11] = { 81.9, 16.8, 721, 300 }, + [12] = { 63.8, 8.5, 721, 300 }, + [13] = { 64.3, 4.5, 721, 300 }, + }, + }, + [2002940] = { + ["coords"] = { + [1] = { 24.1, 33.1, 1, 300 }, + [2] = { 24.3, 31.6, 1, 300 }, + [3] = { 24.4, 31.5, 1, 300 }, + [4] = { 25.2, 30.7, 1, 300 }, + [5] = { 25.5, 30.4, 1, 300 }, + [6] = { 23.3, 28.9, 1, 300 }, + [7] = { 24.1, 28.2, 1, 300 }, + [8] = { 23.4, 28.2, 1, 300 }, + [9] = { 23.7, 28.2, 1, 300 }, + [10] = { 24, 28.1, 1, 300 }, + [11] = { 42.4, 72.9, 15, 25 }, + [12] = { 61.2, 36.9, 618, 300 }, + [13] = { 72.3, 41.7, 721, 300 }, + [14] = { 73.9, 28.8, 721, 300 }, + [15] = { 74.8, 27.3, 721, 300 }, + [16] = { 82.1, 20.8, 721, 300 }, + [17] = { 84.3, 18.1, 721, 300 }, + [18] = { 65.1, 4.8, 721, 300 }, + }, + }, + [2002941] = { + ["coords"] = { + [1] = { 24.4, 33.5, 1, 300 }, + [2] = { 24.2, 33, 1, 300 }, + [3] = { 24.2, 31.8, 1, 300 }, + [4] = { 24.2, 31.6, 1, 300 }, + [5] = { 24.4, 31.5, 1, 300 }, + [6] = { 24.1, 31.5, 1, 300 }, + [7] = { 26.5, 31.4, 1, 300 }, + [8] = { 26.8, 31.2, 1, 300 }, + [9] = { 25.3, 30.3, 1, 300 }, + [10] = { 23.8, 28.3, 1, 300 }, + [11] = { 44.9, 91.7, 16, 300 }, + [12] = { 63.5, 86.2, 16, 300 }, + [13] = { 63.6, 86.1, 16, 300 }, + [14] = { 51, 36, 33, 300 }, + [15] = { 82.7, 54, 400, 25 }, + [16] = { 82.8, 54, 400, 25 }, + [17] = { 82.6, 53.9, 400, 25 }, + [18] = { 82.6, 53.8, 400, 25 }, + [19] = { 82.7, 53.8, 400, 25 }, + [20] = { 82.8, 53.8, 400, 25 }, + [21] = { 82.7, 53.7, 400, 25 }, + [22] = { 74.4, 44.9, 721, 300 }, + [23] = { 73.2, 40.4, 721, 300 }, + [24] = { 72.7, 30.3, 721, 300 }, + [25] = { 73.5, 28.5, 721, 300 }, + [26] = { 74.8, 27.9, 721, 300 }, + [27] = { 72.3, 27.9, 721, 300 }, + [28] = { 93, 27, 721, 300 }, + [29] = { 95.8, 25.2, 721, 300 }, + [30] = { 82.9, 17, 721, 300 }, + }, + }, + [2002942] = { + ["coords"] = { + [1] = { 24.3, 33.5, 1, 300 }, + [2] = { 24.4, 33.5, 1, 300 }, + [3] = { 24.1, 31.7, 1, 300 }, + [4] = { 24.3, 31.5, 1, 300 }, + [5] = { 23.3, 29, 1, 300 }, + [6] = { 24.6, 28.9, 1, 300 }, + [7] = { 24, 28.2, 1, 300 }, + [8] = { 37.5, 72.3, 14, 300 }, + [9] = { 44.9, 91.8, 16, 300 }, + [10] = { 64.8, 34.8, 17, 300 }, + [11] = { 74, 45.4, 721, 300 }, + [12] = { 74.8, 45.3, 721, 300 }, + [13] = { 72.2, 29.1, 721, 300 }, + [14] = { 74, 28, 721, 300 }, + [15] = { 65.6, 5.6, 721, 300 }, + [16] = { 76.3, 4.8, 721, 300 }, + }, + }, + [2002943] = { + ["coords"] = { + [1] = { 24.4, 33.6, 1, 300 }, + [2] = { 24.3, 31.6, 1, 300 }, + [3] = { 23.2, 29.3, 1, 300 }, + [4] = { 74.4, 45.5, 721, 300 }, + [5] = { 73.7, 28.3, 721, 300 }, + [6] = { 64.4, 8.5, 721, 300 }, + }, + }, + [2002944] = { + ["coords"] = { + [1] = { 25.3, 30.7, 1, 300 }, + [2] = { 24, 28.2, 1, 300 }, + [3] = { 23.4, 28.1, 1, 300 }, + [4] = { 31.4, 36.8, 440, 300 }, + [5] = { 31.5, 36.5, 440, 300 }, + [6] = { 78.8, 64.9, 490, 300 }, + [7] = { 79.1, 64.3, 490, 300 }, + [8] = { 82.6, 21, 721, 300 }, + [9] = { 56, 48.8, 1497, 300 }, + [10] = { 44.5, 44.4, 5179, 300 }, + [11] = { 45.1, 44.2, 5179, 300 }, + [12] = { 45.9, 43.7, 5179, 300 }, + }, + }, + [2002945] = { + ["coords"] = { + [1] = { 25.3, 30.3, 1, 300 }, + [2] = { 23.8, 28.2, 1, 300 }, + [3] = { 63.6, 86.1, 16, 300 }, + [4] = { 82.9, 17.5, 721, 300 }, + }, + }, + [2002946] = { + ["coords"] = { + [1] = { 24.2, 33, 1, 300 }, + [2] = { 24.4, 31.5, 1, 300 }, + [3] = { 37.6, 72.4, 14, 300 }, + [4] = { 64.9, 34.9, 17, 300 }, + [5] = { 82.8, 54.9, 400, 300 }, + [6] = { 73, 40.7, 721, 300 }, + [7] = { 75, 27.7, 721, 300 }, + }, + }, + [2002947] = { + ["coords"] = { + [1] = { 23.3, 28.9, 1, 300 }, + [2] = { 44.9, 91.8, 16, 300 }, + [3] = { 65.5, 5.1, 721, 300 }, + }, + }, + [2002948] = { + ["coords"] = {}, + }, + [2002949] = { + ["coords"] = {}, + }, + [2002950] = { + ["coords"] = { + [1] = { 25.5, 30.3, 1, 300 }, + [2] = { 84, 17.7, 721, 300 }, + }, + }, + [2002951] = { + ["coords"] = { + [1] = { 23.9, 33.5, 1, 300 }, + [2] = { 23.5, 28.4, 1, 300 }, + [3] = { 27.8, 26.9, 1, 300 }, + [4] = { 61.6, 12.4, 16, 300 }, + [5] = { 70.8, 44.6, 721, 300 }, + [6] = { 67, 1, 721, 300 }, + }, + }, + [2002952] = { + ["coords"] = {}, + }, + [2002953] = { + ["coords"] = {}, + }, + [2002954] = { + ["coords"] = { + [1] = { 63.4, 86.1, 16, 300 }, + }, + }, + [2002955] = { + ["coords"] = {}, + }, + [2002956] = { + ["coords"] = {}, + }, + [2002957] = { + ["coords"] = {}, + }, + [2002958] = { + ["coords"] = {}, + }, + [2002959] = { + ["coords"] = {}, + }, + [2002960] = { + ["coords"] = { + [1] = { 25.5, 30.4, 1, 300 }, + [2] = { 84.1, 18, 721, 300 }, + }, + }, + [2002961] = { + ["coords"] = {}, + }, + [2002962] = { + ["coords"] = {}, + }, + [2002963] = { + ["coords"] = {}, + }, + [2002964] = { + ["coords"] = {}, + }, + [2002965] = { + ["coords"] = { + [1] = { 24.3, 33.3, 1, 300 }, + [2] = { 73.9, 43.1, 721, 300 }, + }, + }, + [2002966] = { + ["coords"] = {}, + }, + [2002967] = { + ["coords"] = {}, + }, + [2002968] = { + ["coords"] = {}, + }, + [2002969] = { + ["coords"] = { + [1] = { 24.2, 31.2, 1, 300 }, + [2] = { 26.3, 31, 1, 300 }, + [3] = { 27, 30.9, 1, 300 }, + [4] = { 25.2, 30.2, 1, 300 }, + [5] = { 24.3, 30, 1, 300 }, + [6] = { 24.4, 29.9, 1, 300 }, + [7] = { 24, 29.5, 1, 300 }, + [8] = { 24.2, 29.4, 1, 300 }, + [9] = { 24.3, 28.3, 1, 300 }, + [10] = { 72.7, 25.4, 721, 300 }, + [11] = { 91.4, 23.6, 721, 300 }, + [12] = { 97, 22.5, 721, 300 }, + [13] = { 81.4, 16.6, 721, 300 }, + [14] = { 73.6, 15.1, 721, 300 }, + [15] = { 75, 13.7, 721, 300 }, + [16] = { 71.5, 10.6, 721, 300 }, + [17] = { 72.9, 9.2, 721, 300 }, + [18] = { 73.9, 0, 721, 300 }, + }, + }, + [2002970] = { + ["coords"] = { + [1] = { 61.2, 36.9, 618, 300 }, + }, + }, + [2002971] = { + ["coords"] = {}, + }, + [2002972] = { + ["coords"] = { + [1] = { 24.9, 31.9, 1, 300 }, + [2] = { 24.2, 31.9, 1, 300 }, + [3] = { 26.8, 31.2, 1, 300 }, + [4] = { 24.6, 28.9, 1, 300 }, + [5] = { 23.5, 28.6, 1, 300 }, + [6] = { 24, 28.2, 1, 300 }, + [7] = { 23.8, 28.2, 1, 300 }, + [8] = { 27.8, 26.9, 1, 300 }, + [9] = { 41.9, 73.3, 15, 25 }, + [10] = { 44.9, 91.7, 16, 300 }, + [11] = { 61.8, 12.4, 16, 300 }, + [12] = { 51, 35.9, 33, 300 }, + [13] = { 79, 30.9, 721, 300 }, + [14] = { 73.2, 30.8, 721, 300 }, + [15] = { 95.5, 25.3, 721, 300 }, + [16] = { 76.6, 4.9, 721, 300 }, + [17] = { 67.4, 2.2, 721, 300 }, + }, + }, + [2002973] = { + ["coords"] = { + [1] = { 24.1, 31.7, 1, 300 }, + [2] = { 24.4, 31.5, 1, 300 }, + [3] = { 23.6, 29.9, 1, 300 }, + [4] = { 63.5, 86.1, 16, 300 }, + [5] = { 71.9, 29.2, 721, 300 }, + [6] = { 75.1, 27.9, 721, 300 }, + [7] = { 67.5, 14.3, 721, 300 }, + }, + }, + [2002974] = { + ["coords"] = {}, + }, + [2002975] = { + ["coords"] = {}, + }, + [2002976] = { + ["coords"] = { + [1] = { 24.9, 31.9, 1, 300 }, + [2] = { 79, 30.9, 721, 300 }, + }, + }, + [2002977] = { + ["coords"] = {}, + }, + [2002978] = { + ["coords"] = { + [1] = { 24.3, 33.7, 1, 300 }, + [2] = { 23.5, 28.5, 1, 300 }, + [3] = { 73.8, 46.5, 721, 300 }, + [4] = { 67, 2, 721, 300 }, + }, + }, + [2002979] = { + ["coords"] = { + [1] = { 24.3, 33.6, 1, 300 }, + [2] = { 74, 46.2, 721, 300 }, + }, + }, + [2002980] = { + ["coords"] = { + [1] = { 23.8, 28.2, 1, 300 }, + }, + }, + [2002981] = { + ["coords"] = { + [1] = { 63.3, 86.2, 16, 300 }, + }, + }, + [2002982] = { + ["coords"] = {}, + }, + [2002983] = { + ["coords"] = {}, + }, + [2002984] = { + ["coords"] = { + [1] = { 63.5, 86.2, 16, 300 }, + }, + }, + [2002985] = { + ["coords"] = {}, + }, + [2002986] = { + ["coords"] = {}, + }, + [2002987] = { + ["coords"] = { + [1] = { 51, 36.1, 33, 300 }, + }, + }, + [2002988] = { + ["coords"] = {}, + }, + [2002989] = { + ["coords"] = {}, + }, + [2002990] = { + ["coords"] = { + [1] = { 24.3, 33, 1, 300 }, + [2] = { 24.4, 31.7, 1, 300 }, + [3] = { 63.5, 86.3, 16, 300 }, + [4] = { 73.7, 40.4, 721, 300 }, + [5] = { 74.9, 29.3, 721, 300 }, + }, + }, + [2002991] = { + ["coords"] = { + [1] = { 24.5, 33.4, 1, 300 }, + [2] = { 24.3, 31.9, 1, 300 }, + [3] = { 23.6, 27.8, 1, 300 }, + [4] = { 75.3, 44.5, 721, 300 }, + [5] = { 73.6, 31, 721, 300 }, + }, + }, + [2002992] = { + ["coords"] = { + [1] = { 24.1, 33.8, 1, 300 }, + [2] = { 26.5, 30.5, 1, 300 }, + [3] = { 63.3, 86.2, 16, 300 }, + [4] = { 72.5, 47.6, 721, 300 }, + [5] = { 92.5, 19.3, 721, 300 }, + }, + }, + [2002993] = { + ["coords"] = { + [1] = { 23.7, 28.1, 1, 300 }, + }, + }, + [2002994] = { + ["coords"] = {}, + }, + [2002995] = { + ["coords"] = {}, + }, + [2002996] = { + ["coords"] = {}, + }, + [2002997] = { + ["coords"] = {}, + }, + [2002998] = { + ["coords"] = {}, + }, + [2002999] = { + ["coords"] = {}, + }, + [2003000] = { + ["coords"] = {}, + }, + [2003001] = { + ["coords"] = {}, + }, + [2003002] = { + ["coords"] = {}, + }, + [2003003] = { + ["coords"] = { + [1] = { 24.3, 33.6, 1, 300 }, + [2] = { 26.5, 31.4, 1, 300 }, + [3] = { 25.3, 30.2, 1, 300 }, + [4] = { 24.6, 28.9, 1, 300 }, + [5] = { 23.4, 28.1, 1, 300 }, + [6] = { 44.9, 91.9, 16, 300 }, + [7] = { 61.2, 36.9, 618, 300 }, + [8] = { 74.2, 45.6, 721, 300 }, + [9] = { 93.3, 27, 721, 300 }, + [10] = { 82.2, 16.4, 721, 300 }, + [11] = { 76.4, 5, 721, 300 }, + }, + }, + [2003004] = { + ["coords"] = { + [1] = { 24.4, 33.5, 1, 300 }, + [2] = { 26.5, 31.4, 1, 300 }, + [3] = { 25.2, 30.7, 1, 300 }, + [4] = { 23.5, 29.5, 1, 300 }, + [5] = { 23.4, 28.1, 1, 300 }, + [6] = { 44.9, 91.8, 16, 300 }, + [7] = { 61.6, 12.5, 16, 300 }, + [8] = { 74.4, 45.3, 721, 300 }, + [9] = { 93.1, 27.1, 721, 300 }, + [10] = { 81.4, 20.6, 721, 300 }, + [11] = { 66.9, 10.8, 721, 300 }, + }, + }, + [2003005] = { + ["coords"] = { + [1] = { 25.2, 31.6, 1, 300 }, + [2] = { 44.9, 91.8, 16, 300 }, + [3] = { 63.6, 86.1, 16, 300 }, + [4] = { 51, 35.9, 33, 300 }, + [5] = { 81.7, 28.7, 721, 300 }, + }, + }, + [2003006] = { + ["coords"] = { + [1] = { 24.3, 33.6, 1, 300 }, + [2] = { 23.9, 33.4, 1, 300 }, + [3] = { 24.1, 31.7, 1, 300 }, + [4] = { 24.4, 31.5, 1, 300 }, + [5] = { 26.6, 31.4, 1, 300 }, + [6] = { 25.2, 30.7, 1, 300 }, + [7] = { 23.6, 30, 1, 300 }, + [8] = { 24.6, 28.9, 1, 300 }, + [9] = { 74.3, 45.6, 721, 300 }, + [10] = { 70.9, 44.1, 721, 300 }, + [11] = { 72.1, 29.6, 721, 300 }, + [12] = { 75.2, 27.6, 721, 300 }, + [13] = { 93.7, 27.2, 721, 300 }, + [14] = { 81.6, 20.9, 721, 300 }, + [15] = { 67.9, 14.3, 721, 300 }, + [16] = { 76.5, 4.8, 721, 300 }, + }, + }, + [2003007] = { + ["coords"] = { + [1] = { 24.9, 31.9, 1, 300 }, + [2] = { 26.8, 31.2, 1, 300 }, + [3] = { 41.4, 73.3, 15, 25 }, + [4] = { 44.9, 91.9, 16, 300 }, + [5] = { 61.2, 36.9, 618, 300 }, + [6] = { 78.7, 31.1, 721, 300 }, + [7] = { 95.3, 25.4, 721, 300 }, + [8] = { 62.2, 58.9, 1497, 300 }, + [9] = { 51.3, 34.2, 5121, 300 }, + }, + }, + [2003008] = { + ["coords"] = {}, + }, + [2003009] = { + ["coords"] = { + [1] = { 24.1, 33.7, 1, 300 }, + [2] = { 72.3, 46.3, 721, 300 }, + }, + }, + [2003010] = { + ["coords"] = {}, + }, + [2003011] = { + ["coords"] = { + [1] = { 42.4, 73.6, 15, 25 }, + [2] = { 53.6, 67, 1637, 300 }, + }, + }, + [2003012] = { + ["coords"] = { + [1] = { 42.9, 72.9, 15, 25 }, + }, + }, + [2003013] = { + ["coords"] = { + [1] = { 69.8, 26.4, 1637, 25 }, + }, + }, + [2003014] = { + ["coords"] = {}, + }, + [2003015] = { + ["coords"] = {}, + }, + [2003016] = { + ["coords"] = { + [1] = { 53.2, 43.5, 14, 300 }, + [2] = { 64.7, 34.3, 17, 300 }, + }, + }, + [2003017] = { + ["coords"] = {}, + }, + [2003018] = { + ["coords"] = { + [1] = { 25.1, 30.6, 1, 300 }, + [2] = { 37.7, 71.6, 14, 300 }, + [3] = { 64.9, 34.5, 17, 300 }, + [4] = { 81.2, 20.2, 721, 300 }, + [5] = { 68.1, 27.4, 1637, 25 }, + }, + }, + [2003019] = { + ["coords"] = { + [1] = { 31.9, 48.5, 33, 300 }, + }, + }, + [2003020] = { + ["coords"] = { + [1] = { 49.7, 35.9, 14, 25 }, + [2] = { 30, 71.3, 16, 300 }, + [3] = { 31.5, 49, 33, 300 }, + [4] = { 58.3, 22.1, 440, 300 }, + }, + }, + [2003021] = { + ["coords"] = { + [1] = { 82.5, 54.7, 400, 25 }, + }, + }, + [2003022] = { + ["coords"] = { + [1] = { 42.2, 73.2, 15, 25 }, + [2] = { 61.5, 24.5, 17, 300 }, + }, + }, + [2003023] = { + ["coords"] = { + [1] = { 42.3, 73.7, 15, 25 }, + [2] = { 69.2, 25.7, 1637, 25 }, + }, + }, + [2003024] = { + ["coords"] = {}, + }, + [2003025] = { + ["coords"] = { + [1] = { 70.4, 84.9, 8, 300 }, + }, + }, + [2003026] = { + ["coords"] = {}, + }, + [2003027] = { + ["coords"] = { + [1] = { 28.7, 61.5, 12, 300 }, + [2] = { 34, 17.5, 28, 0 }, + [3] = { 90.3, 32.3, 85, 0 }, + [4] = { 60.1, 44.2, 409, 300 }, + }, + }, + [2003028] = { + ["coords"] = {}, + }, + [2003029] = { + ["coords"] = {}, + }, + [2003030] = { + ["coords"] = {}, + }, + [2003031] = { + ["coords"] = { + [1] = { 55.9, 45.9, 5087, 300 }, + [2] = { 62.2, 45.9, 5087, 300 }, + [3] = { 62.2, 40.9, 5087, 300 }, + [4] = { 73.2, 24.4, 5087, 300 }, + [5] = { 51.2, 24.4, 5087, 300 }, + }, + }, + [2003032] = { + ["coords"] = {}, + }, + [2003033] = { + ["coords"] = {}, + }, + [2003034] = { + ["coords"] = {}, + }, + [2003035] = { + ["coords"] = { + [1] = { 59.9, 66.8, 85, 300 }, + [2] = { 59.8, 66.8, 85, 300 }, + }, + }, + [2003036] = { + ["coords"] = {}, + }, + [2003037] = { + ["coords"] = {}, + }, + [2003038] = { + ["coords"] = {}, + }, + [2003039] = { + ["coords"] = { + [1] = { 61.6, 44.4, 409, 300 }, + [2] = { 58.1, 40.8, 409, 300 }, + [3] = { 49.4, 30.8, 618, 300 }, + }, + }, + [2003040] = { + ["coords"] = { + [1] = { 41.9, 74.2, 15, 25 }, + [2] = { 83.5, 65.6, 38, 25 }, + [3] = { 49.5, 30.4, 618, 300 }, + [4] = { 75.9, 39.7, 1497, 300 }, + [5] = { 41.3, 77.9, 5602, 25 }, + }, + }, + [2003041] = { + ["coords"] = {}, + }, + [2003042] = { + ["coords"] = {}, + }, + [2003043] = { + ["coords"] = { + [1] = { 32.8, 17.3, 28, 300 }, + [2] = { 89.1, 32.1, 85, 300 }, + }, + }, + [2003044] = { + ["coords"] = { + [1] = { 64.7, 15.8, 4, 300 }, + [2] = { 64.1, 15.6, 4, 300 }, + [3] = { 25.6, 66.4, 16, 300 }, + [4] = { 29.3, 62.1, 16, 300 }, + [5] = { 81.1, 60.6, 28, 300 }, + [6] = { 64.5, 13.7, 33, 300 }, + [7] = { 64.3, 13.7, 33, 300 }, + [8] = { 64.3, 13.6, 33, 300 }, + [9] = { 64.3, 13.5, 33, 300 }, + [10] = { 64.5, 13.5, 33, 300 }, + [11] = { 28.5, 58.1, 45, 300 }, + [12] = { 60.2, 67.9, 85, 300 }, + [13] = { 22.9, 84.1, 139, 300 }, + [14] = { 31.1, 90.8, 405, 300 }, + [15] = { 22.9, 9, 406, 300 }, + [16] = { 58.5, 13.2, 1497, 300 }, + [17] = { 42.6, 43.5, 5179, 300 }, + }, + }, + [2003045] = { + ["coords"] = { + [1] = { 29.4, 44.8, 28, 300 }, + [2] = { 85.9, 58.3, 85, 300 }, + }, + }, + [2003046] = { + ["coords"] = { + [1] = { 51.2, 34.1, 5121, 300 }, + }, + }, + [2003047] = { + ["coords"] = { + [1] = { 43.1, 80.1, 33, 300 }, + }, + }, + [2003048] = { + ["coords"] = { + [1] = { 49.6, 47.5, 8, 300 }, + [2] = { 34.2, 49.4, 10, 300 }, + [3] = { 29.1, 71, 16, 300 }, + [4] = { 43.6, 98.1, 28, 300 }, + [5] = { 80.1, 50.6, 36, 300 }, + [6] = { 59.1, 74.3, 38, 300 }, + [7] = { 33.5, 57.7, 141, 300 }, + [8] = { 33.5, 57.5, 141, 300 }, + [9] = { 33.5, 57.4, 141, 300 }, + [10] = { 41.8, 51.1, 267, 300 }, + [11] = { 51.2, 30, 618, 300 }, + [12] = { 78.2, 51.7, 1657, 300 }, + [13] = { 78.3, 51, 1657, 300 }, + [14] = { 78.4, 50.3, 1657, 300 }, + [15] = { 42.4, 69.3, 2040, 25 }, + [16] = { 42.6, 68.7, 2040, 25 }, + [17] = { 42.7, 68.2, 2040, 25 }, + [18] = { 96.1, 13.6, 5179, 300 }, + [19] = { 82, 71.1, 5208, 300 }, + [20] = { 58, 35, 5225, 25 }, + [21] = { 58, 34.7, 5225, 25 }, + [22] = { 58.1, 34.5, 5225, 25 }, + [23] = { 28.8, 82.3, 5602, 300 }, + }, + }, + [2003049] = { + ["coords"] = { + [1] = { 33.4, 22.1, 28, 300 }, + [2] = { 89.7, 36.6, 85, 300 }, + }, + }, + [2003050] = { + ["coords"] = {}, + }, + [2003051] = { + ["coords"] = {}, + }, + [2003052] = { + ["coords"] = {}, + }, + [2003053] = { + ["coords"] = {}, + }, + [2003054] = { + ["coords"] = {}, + }, + [2003055] = { + ["coords"] = {}, + }, + [2003056] = { + ["coords"] = {}, + }, + [2003057] = { + ["coords"] = { + [1] = { 61.4, 24.2, 17, 300 }, + }, + }, + [2003058] = { + ["coords"] = {}, + }, + [2003059] = { + ["coords"] = { + [1] = { 30.3, 72.5, 85, 300 }, + [2] = { 58.3, 41.2, 409, 300 }, + [3] = { 58, 38.3, 1497, 300 }, + [4] = { 33.1, 76.2, 5179, 300 }, + }, + }, + [2003060] = { + ["coords"] = { + [1] = { 57.9, 38.5, 1497, 300 }, + }, + }, + [2003061] = { + ["coords"] = {}, + }, + [2003062] = { + ["coords"] = { + [1] = { 58.7, 27.2, 14, 300 }, + }, + }, + [2003063] = { + ["coords"] = { + [1] = { 79.1, 55.8, 85, 300 }, + [2] = { 33.1, 76.2, 5179, 300 }, + [3] = { 38.9, 43.6, 5208, 300 }, + }, + }, + [2003064] = { + ["coords"] = { + [1] = { 30.3, 72.5, 85, 300 }, + }, + }, + [2003065] = { + ["coords"] = { + [1] = { 58.8, 27.3, 14, 300 }, + [2] = { 49.4, 32.5, 618, 300 }, + [3] = { 53.3, 29.9, 618, 300 }, + [4] = { 62.2, 31.9, 1497, 300 }, + }, + }, + [2003066] = { + ["coords"] = { + [1] = { 28.2, 15.1, 1519, 300 }, + [2] = { 82, 70.5, 5208, 300 }, + [3] = { 31.6, 85.5, 5581, 300 }, + }, + }, + [2003067] = { + ["coords"] = { + [1] = { 62.4, 32, 1497, 300 }, + }, + }, + [2003068] = { + ["coords"] = { + [1] = { 31, 38.1, 440, 300 }, + [2] = { 31.3, 38.1, 440, 300 }, + [3] = { 78.1, 67.4, 490, 300 }, + [4] = { 78.7, 67.4, 490, 300 }, + [5] = { 58.6, 36.5, 1497, 300 }, + [6] = { 28.2, 15.1, 1519, 300 }, + [7] = { 51.2, 34.7, 5121, 300 }, + [8] = { 39, 43.9, 5208, 300 }, + [9] = { 31.6, 85.5, 5581, 300 }, + }, + }, + [2003069] = { + ["coords"] = {}, + }, + [2003070] = { + ["coords"] = { + [1] = { 42.7, 93.1, 17, 300 }, + [2] = { 28.9, 24.2, 400, 300 }, + [3] = { 82, 70.5, 5208, 300 }, + }, + }, + [2003071] = { + ["coords"] = {}, + }, + [2003072] = { + ["coords"] = { + [1] = { 58.8, 27.4, 14, 300 }, + [2] = { 24.3, 12.8, 406, 300 }, + }, + }, + [2003073] = { + ["coords"] = { + [1] = { 4.5, 61.2, 85, 300 }, + }, + }, + [2003074] = { + ["coords"] = {}, + }, + [2003075] = { + ["coords"] = { + [1] = { 58.8, 27.3, 14, 300 }, + [2] = { 82, 70.5, 5208, 300 }, + }, + }, + [2003076] = { + ["coords"] = { + [1] = { 4.7, 61.3, 85, 300 }, + }, + }, + [2003077] = { + ["coords"] = { + [1] = { 4.7, 61.2, 85, 300 }, + [2] = { 74.8, 42.6, 357, 300 }, + }, + }, + [2003078] = { + ["coords"] = { + [1] = { 82, 70.5, 5208, 300 }, + }, + }, + [2003079] = { + ["coords"] = {}, + }, + [2003080] = { + ["coords"] = {}, + }, + [2003081] = { + ["coords"] = {}, + }, + [2003082] = { + ["coords"] = {}, + }, + [2003083] = { + ["coords"] = { + [1] = { 4.5, 61.3, 85, 300 }, + [2] = { 31.5, 36.5, 440, 300 }, + [3] = { 79.2, 64.3, 490, 300 }, + }, + }, + [2003084] = { + ["coords"] = { + [1] = { 4.6, 61.1, 85, 300 }, + [2] = { 74.7, 42.6, 357, 300 }, + }, + }, + [2003085] = { + ["coords"] = { + [1] = { 58.7, 27.2, 14, 300 }, + [2] = { 74.7, 42.6, 357, 300 }, + [3] = { 28.3, 15.1, 1519, 300 }, + [4] = { 31.7, 85.5, 5581, 300 }, + }, + }, + [2003086] = { + ["coords"] = { + [1] = { 74.8, 42.6, 357, 300 }, + }, + }, + [2003087] = { + ["coords"] = { + [1] = { 24.3, 12.8, 406, 300 }, + [2] = { 81.8, 68.9, 5208, 300 }, + }, + }, + [2003088] = { + ["coords"] = {}, + }, + [2003089] = { + ["coords"] = { + [1] = { 58.7, 27.2, 14, 300 }, + [2] = { 42.7, 93.1, 17, 300 }, + [3] = { 74.8, 42.6, 357, 300 }, + [4] = { 28.9, 24.3, 400, 300 }, + [5] = { 31.5, 36.5, 440, 300 }, + [6] = { 79.1, 64.3, 490, 300 }, + [7] = { 81.7, 68.9, 5208, 300 }, + }, + }, + [2003090] = { + ["coords"] = {}, + }, + [2003091] = { + ["coords"] = {}, + }, + [2003092] = { + ["coords"] = {}, + }, + [2003093] = { + ["coords"] = {}, + }, + [2003094] = { + ["coords"] = {}, + }, + [2003095] = { + ["coords"] = { + [1] = { 72.2, 57.7, 331, 300 }, + }, + }, + [2003096] = { + ["coords"] = { + [1] = { 28.3, 15, 1519, 300 }, + [2] = { 31.7, 85.4, 5581, 300 }, + }, + }, + [2003097] = { + ["coords"] = { + [1] = { 58.1, 38.4, 1497, 300 }, + [2] = { 58.7, 36.6, 1497, 300 }, + }, + }, + [2003098] = { + ["coords"] = { + [1] = { 58.6, 36.8, 1497, 300 }, + }, + }, + [2003099] = { + ["coords"] = { + [1] = { 81.7, 68.6, 5208, 300 }, + }, + }, + [2003100] = { + ["coords"] = { + [1] = { 31.4, 36.7, 440, 300 }, + [2] = { 78.9, 64.7, 490, 300 }, + [3] = { 58.5, 36.7, 1497, 300 }, + [4] = { 81.9, 68.9, 5208, 300 }, + [5] = { 82, 68.9, 5208, 300 }, + }, + }, + [2003101] = { + ["coords"] = { + [1] = { 81.9, 68.9, 5208, 300 }, + [2] = { 82, 68.9, 5208, 300 }, + }, + }, + [2003102] = { + ["coords"] = { + [1] = { 79, 55.8, 85, 300 }, + [2] = { 58.5, 36.6, 1497, 300 }, + }, + }, + [2003103] = { + ["coords"] = { + [1] = { 82, 68.9, 5208, 300 }, + }, + }, + [2003104] = { + ["coords"] = { + [1] = { 32, 46.3, 85, 300 }, + [2] = { 41.9, 10.3, 130, 300 }, + [3] = { 61.3, 43.8, 409, 300 }, + [4] = { 84.5, 78.3, 5208, 300 }, + [5] = { 82.5, 69.5, 5208, 300 }, + [6] = { 81.5, 69.1, 5208, 300 }, + }, + }, + [2003105] = { + ["coords"] = { + [1] = { 24.1, 31.6, 1, 300 }, + [2] = { 58.8, 27.3, 14, 300 }, + [3] = { 42.7, 93, 17, 300 }, + [4] = { 75.5, 49.6, 17, 300 }, + [5] = { 31.7, 48.4, 33, 300 }, + [6] = { 32.1, 46.3, 85, 300 }, + [7] = { 42.7, 52.1, 267, 300 }, + [8] = { 28.8, 24.1, 400, 300 }, + [9] = { 72.3, 28.2, 721, 300 }, + [10] = { 57.8, 39, 1497, 300 }, + [11] = { 58.8, 35.9, 1497, 300 }, + [12] = { 61.2, 32.9, 1497, 300 }, + [13] = { 22.2, 37.6, 1519, 300 }, + [14] = { 96.9, 14.5, 5179, 300 }, + [15] = { 82.5, 69.8, 5208, 300 }, + [16] = { 81.5, 69.7, 5208, 300 }, + [17] = { 38.9, 43.4, 5208, 300 }, + [18] = { 28.4, 97.5, 5581, 300 }, + }, + }, + [2003106] = { + ["coords"] = { + [1] = { 24.2, 31.8, 1, 300 }, + [2] = { 42.7, 93, 17, 300 }, + [3] = { 75.6, 49.5, 17, 300 }, + [4] = { 32.1, 46.3, 85, 300 }, + [5] = { 42.7, 52.2, 267, 300 }, + [6] = { 28.8, 24.1, 400, 300 }, + [7] = { 72.9, 30.4, 721, 300 }, + [8] = { 96.9, 14.5, 5179, 300 }, + [9] = { 81.5, 69.9, 5208, 300 }, + [10] = { 82.5, 69.6, 5208, 300 }, + }, + }, + [2003107] = { + ["coords"] = { + [1] = { 80.8, 63.6, 28, 300 }, + [2] = { 4.6, 61.4, 85, 300 }, + [3] = { 22.5, 87.4, 139, 300 }, + [4] = { 61.5, 44.3, 409, 300 }, + [5] = { 28.9, 10.2, 1519, 300 }, + [6] = { 32, 82.8, 5581, 300 }, + }, + }, + [2003108] = { + ["coords"] = { + [1] = { 61.1, 44.5, 409, 300 }, + [2] = { 41.3, 67.8, 1519, 300 }, + }, + }, + [2003109] = { + ["coords"] = { + [1] = { 82.2, 79.9, 5208, 300 }, + }, + }, + [2003110] = { + ["coords"] = {}, + }, + [2003111] = { + ["coords"] = {}, + }, + [2003112] = { + ["coords"] = { + [1] = { 34.9, 10.3, 45, 300 }, + [2] = { 14.2, 72, 47, 300 }, + [3] = { 17.1, 49, 85, 300 }, + }, + }, + [2003113] = { + ["coords"] = { + [1] = { 35.1, 10, 45, 300 }, + [2] = { 14.4, 71.7, 47, 300 }, + }, + }, + [2003114] = { + ["coords"] = { + [1] = { 43.5, 17.3, 357, 25 }, + }, + }, + [2003115] = { + ["coords"] = { + [1] = { 34.8, 9.7, 45, 300 }, + [2] = { 14.1, 71.5, 47, 300 }, + [3] = { 61.4, 44, 409, 300 }, + [4] = { 82.2, 79.5, 5208, 300 }, + }, + }, + [2003116] = { + ["coords"] = { + [1] = { 49.1, 60.6, 11, 300 }, + [2] = { 27.8, 77.1, 33, 300 }, + [3] = { 61.5, 44, 409, 300 }, + [4] = { 21.6, 36.6, 1519, 300 }, + [5] = { 36.9, 19, 5561, 300 }, + [6] = { 28.1, 97, 5581, 300 }, + [7] = { 6.5, 25.5, 5602, 300 }, + }, + }, + [2003117] = { + ["coords"] = { + [1] = { 82.5, 79, 5208, 300 }, + }, + }, + [2003118] = { + ["coords"] = {}, + }, + [2003119] = { + ["coords"] = {}, + }, + [2003120] = { + ["coords"] = {}, + }, + [2003121] = { + ["coords"] = {}, + }, + [2003122] = { + ["coords"] = { + [1] = { 81.1, 71.4, 10, 300 }, + [2] = { 71.1, 73.3, 15, 300 }, + [3] = { 77, 56.1, 15, 300 }, + [4] = { 31.5, 49, 33, 300 }, + [5] = { 60.4, 23.6, 361, 300 }, + [6] = { 81, 76.8, 405, 300 }, + [7] = { 52.8, 55.8, 5121, 300 }, + }, + }, + [2003123] = { + ["coords"] = {}, + }, + [2003124] = { + ["coords"] = {}, + }, + [2003125] = { + ["coords"] = { + [1] = { 80.8, 61, 28, 300 }, + [2] = { 22.6, 84.5, 139, 300 }, + }, + }, + [2003126] = { + ["coords"] = { + [1] = { 42.2, 10, 130, 300 }, + }, + }, + [2003127] = { + ["coords"] = {}, + }, + [2003128] = { + ["coords"] = { + [1] = { 42.2, 10, 130, 300 }, + }, + }, + [2003129] = { + ["coords"] = { + [1] = { 81, 61.1, 28, 300 }, + [2] = { 29.4, 44.6, 28, 300 }, + [3] = { 57.8, 32.1, 41, 300 }, + [4] = { 85.9, 58.1, 85, 300 }, + [5] = { 42.2, 10.5, 130, 300 }, + [6] = { 22.7, 84.6, 139, 300 }, + [7] = { 31, 89.7, 405, 300 }, + [8] = { 56.3, 44.7, 618, 300 }, + [9] = { 68.9, 30.3, 876, 300 }, + [10] = { 61.2, 58.4, 1497, 300 }, + [11] = { 41.5, 67.7, 1519, 300 }, + [12] = { 84, 79.1, 5208, 300 }, + [13] = { 83.5, 77.7, 5208, 300 }, + [14] = { 39.9, 42.6, 5208, 300 }, + }, + }, + [2003130] = { + ["coords"] = { + [1] = { 44.3, 45.1, 16, 300 }, + [2] = { 80.9, 61, 28, 300 }, + [3] = { 81.2, 60.8, 28, 300 }, + [4] = { 21.6, 69, 85, 300 }, + [5] = { 22.7, 84.5, 139, 300 }, + [6] = { 22.9, 84.3, 139, 300 }, + [7] = { 51.1, 62.4, 357, 300 }, + [8] = { 84.1, 79, 5208, 300 }, + [9] = { 39.9, 42.6, 5208, 300 }, + [10] = { 36.7, 18.6, 5561, 300 }, + }, + }, + [2003131] = { + ["coords"] = { + [1] = { 44, 98.3, 28, 300 }, + [2] = { 43.3, 80.7, 33, 300 }, + [3] = { 80.7, 51, 36, 300 }, + [4] = { 21.7, 69, 85, 300 }, + [5] = { 42, 10.7, 130, 300 }, + [6] = { 31.2, 38.2, 440, 300 }, + [7] = { 78.6, 67.6, 490, 300 }, + [8] = { 38, 61.4, 1519, 300 }, + [9] = { 51.3, 48.3, 5581, 300 }, + }, + }, + [2003132] = { + ["coords"] = { + [1] = { 58.6, 27.4, 14, 300 }, + [2] = { 20.9, 69, 85, 300 }, + [3] = { 23.6, 58.7, 85, 300 }, + [4] = { 12, 53.3, 85, 300 }, + [5] = { 42.2, 10.1, 130, 300 }, + [6] = { 72.9, 55.7, 331, 300 }, + [7] = { 67.6, 27, 1519, 300 }, + [8] = { 83.8, 77.1, 5208, 300 }, + [9] = { 52.8, 91.9, 5581, 300 }, + }, + }, + [2003133] = { + ["coords"] = { + [1] = { 26.6, 31.5, 1, 300 }, + [2] = { 34.1, 48.4, 10, 300 }, + [3] = { 61.6, 75, 38, 300 }, + [4] = { 43.6, 16.1, 357, 25 }, + [5] = { 93.7, 27.5, 721, 300 }, + [6] = { 36.9, 75.3, 1519, 300 }, + [7] = { 29.6, 10.9, 1519, 300 }, + [8] = { 32.4, 83.2, 5581, 300 }, + [9] = { 30.1, 82.7, 5602, 300 }, + }, + }, + [2003134] = { + ["coords"] = { + [1] = { 19.1, 53.5, 10, 300 }, + [2] = { 80.9, 61, 28, 300 }, + [3] = { 81, 60.9, 28, 300 }, + [4] = { 27.7, 77.1, 33, 300 }, + [5] = { 21.7, 68.9, 85, 300 }, + [6] = { 22.6, 84.6, 139, 300 }, + [7] = { 22.7, 84.4, 139, 300 }, + [8] = { 61, 23.5, 361, 300 }, + [9] = { 37.6, 74.1, 1519, 300 }, + [10] = { 51.4, 34.5, 5121, 300 }, + [11] = { 42.6, 43.5, 5179, 300 }, + }, + }, + [2003135] = { + ["coords"] = { + [1] = { 37.7, 66.5, 33, 300 }, + [2] = { 50.7, 61.8, 357, 300 }, + [3] = { 61.4, 43.7, 409, 300 }, + [4] = { 56.9, 43.7, 409, 300 }, + [5] = { 42, 61.2, 1637, 300 }, + [6] = { 45.1, 44.2, 5179, 300 }, + }, + }, + [2003136] = { + ["coords"] = {}, + }, + [2003137] = { + ["coords"] = { + [1] = { 59.9, 55.8, 1519, 300 }, + }, + }, + [2003138] = { + ["coords"] = {}, + }, + [2003139] = { + ["coords"] = {}, + }, + [2003140] = { + ["coords"] = {}, + }, + [2003141] = { + ["coords"] = { + [1] = { 32.2, 48.1, 10, 300 }, + [2] = { 31.5, 90.5, 405, 300 }, + [3] = { 29, 10, 1519, 300 }, + [4] = { 32, 82.8, 5581, 300 }, + }, + }, + [2003142] = { + ["coords"] = { + [1] = { 74.8, 51.4, 17, 300 }, + [2] = { 29.4, 44.6, 28, 300 }, + [3] = { 85.9, 58.1, 85, 300 }, + [4] = { 81, 76.6, 405, 300 }, + [5] = { 61.4, 43.7, 409, 300 }, + [6] = { 39.6, 44.3, 5208, 300 }, + [7] = { 47.3, 78.6, 5225, 300 }, + }, + }, + [2003143] = { + ["coords"] = { + [1] = { 37.5, 72.3, 14, 300 }, + [2] = { 64.8, 34.8, 17, 300 }, + [3] = { 67.6, 82.9, 130, 300 }, + [4] = { 42.5, 51.8, 267, 300 }, + [5] = { 14.3, 49.4, 267, 300 }, + [6] = { 96.8, 14.2, 5179, 300 }, + [7] = { 72.1, 12.1, 5179, 300 }, + }, + }, + [2003144] = { + ["coords"] = { + [1] = { 48.9, 60.5, 11, 300 }, + [2] = { 29.4, 44.8, 28, 300 }, + [3] = { 85.9, 58.2, 85, 300 }, + [4] = { 61.2, 44.3, 409, 300 }, + [5] = { 59, 43.4, 409, 300 }, + [6] = { 31.2, 37.8, 440, 300 }, + [7] = { 78.5, 66.7, 490, 300 }, + [8] = { 56.1, 48.9, 1497, 300 }, + [9] = { 6.3, 25.5, 5602, 300 }, + }, + }, + [2003145] = { + ["coords"] = { + [1] = { 37, 51.5, 406, 300 }, + [2] = { 31.1, 37.9, 440, 300 }, + [3] = { 31.3, 37.7, 440, 300 }, + [4] = { 78.3, 66.9, 490, 300 }, + [5] = { 78.6, 66.5, 490, 300 }, + [6] = { 67.3, 28, 1519, 300 }, + [7] = { 52.6, 92.4, 5581, 300 }, + }, + }, + [2003146] = { + ["coords"] = { + [1] = { 80.9, 71.7, 10, 300 }, + [2] = { 33.6, 49.4, 10, 300 }, + [3] = { 44.3, 45, 16, 300 }, + [4] = { 44.4, 98.5, 28, 300 }, + [5] = { 81.2, 60.8, 28, 300 }, + [6] = { 81.2, 51.2, 36, 300 }, + [7] = { 42, 10.7, 130, 300 }, + [8] = { 23, 84.4, 139, 300 }, + [9] = { 20.9, 31.9, 331, 300 }, + [10] = { 60.8, 23.8, 361, 300 }, + [11] = { 31.1, 90.8, 405, 300 }, + [12] = { 60.8, 44.7, 409, 300 }, + [13] = { 60.9, 43.8, 409, 300 }, + [14] = { 59, 43.3, 409, 300 }, + [15] = { 31.2, 37.8, 440, 300 }, + [16] = { 78.6, 66.7, 490, 300 }, + [17] = { 61.5, 58.2, 1497, 300 }, + [18] = { 29.7, 10.9, 1519, 300 }, + [19] = { 39.9, 42.6, 5208, 300 }, + [20] = { 32.4, 83.2, 5581, 300 }, + }, + }, + [2003147] = { + ["coords"] = { + [1] = { 33.8, 48.1, 10, 300 }, + [2] = { 49.2, 60.2, 11, 300 }, + [3] = { 44.9, 92, 16, 300 }, + [4] = { 61.5, 24.7, 17, 300 }, + [5] = { 61.2, 24.1, 17, 300 }, + [6] = { 48, 8.3, 17, 300 }, + [7] = { 80.4, 59.9, 28, 300 }, + [8] = { 28.9, 45.3, 28, 300 }, + [9] = { 34.3, 21.1, 28, 300 }, + [10] = { 19.4, 65.6, 46, 300 }, + [11] = { 85.4, 58.7, 85, 300 }, + [12] = { 90.5, 35.7, 85, 300 }, + [13] = { 68.1, 81.6, 130, 300 }, + [14] = { 22.1, 83.3, 139, 300 }, + [15] = { 14.9, 47.8, 267, 300 }, + [16] = { 83.4, 55, 400, 25 }, + [17] = { 82.5, 54.9, 400, 25 }, + [18] = { 58.1, 22.5, 440, 300 }, + [19] = { 36.5, 75.3, 1519, 300 }, + [20] = { 72.7, 10.7, 5179, 300 }, + [21] = { 95.5, 92, 5581, 300 }, + [22] = { 6.6, 25.2, 5602, 300 }, + }, + }, + [2003148] = { + ["coords"] = { + [1] = { 48.9, 47.8, 8, 300 }, + [2] = { 51.1, 43, 8, 300 }, + [3] = { 33.9, 48.2, 10, 300 }, + [4] = { 49.2, 60.5, 11, 300 }, + [5] = { 56.9, 99.1, 14, 300 }, + [6] = { 57, 99.1, 14, 300 }, + [7] = { 33.7, 51.8, 14, 300 }, + [8] = { 42.5, 73.1, 15, 300 }, + [9] = { 29.4, 70.6, 16, 300 }, + [10] = { 75.5, 49.5, 17, 300 }, + [11] = { 75, 48.8, 17, 300 }, + [12] = { 69, 48.2, 17, 300 }, + [13] = { 62.8, 24.1, 17, 300 }, + [14] = { 48, 8.4, 17, 300 }, + [15] = { 43.2, 99.3, 28, 300 }, + [16] = { 44.5, 98.7, 28, 300 }, + [17] = { 43.8, 98.3, 28, 300 }, + [18] = { 79.1, 67.1, 28, 300 }, + [19] = { 81.3, 61.5, 28, 300 }, + [20] = { 80.7, 60.4, 28, 300 }, + [21] = { 34.3, 21.1, 28, 300 }, + [22] = { 43.4, 80.5, 33, 300 }, + [23] = { 43.4, 79.5, 33, 300 }, + [24] = { 37.6, 66.1, 33, 300 }, + [25] = { 88.7, 72.6, 36, 300 }, + [26] = { 79.4, 52.5, 36, 300 }, + [27] = { 81.4, 51.5, 36, 300 }, + [28] = { 80.4, 51, 36, 300 }, + [29] = { 60.6, 76.5, 38, 300 }, + [30] = { 16.6, 66, 46, 300 }, + [31] = { 19.4, 65.5, 46, 300 }, + [32] = { 89.3, 22.7, 46, 300 }, + [33] = { 3.2, 51.5, 47, 300 }, + [34] = { 90.6, 35.7, 85, 300 }, + [35] = { 68.2, 81.6, 130, 300 }, + [36] = { 23.1, 85.1, 139, 300 }, + [37] = { 22.4, 83.8, 139, 300 }, + [38] = { 43, 51.9, 267, 300 }, + [39] = { 15, 47.8, 267, 300 }, + [40] = { 86.5, 12, 267, 300 }, + [41] = { 78.8, 80.3, 331, 300 }, + [42] = { 73.1, 59.9, 331, 300 }, + [43] = { 75.9, 42.2, 357, 300 }, + [44] = { 25.1, 81.8, 440, 300 }, + [45] = { 31.3, 36.8, 440, 300 }, + [46] = { 67.8, 26.5, 440, 300 }, + [47] = { 67.8, 26.3, 440, 300 }, + [48] = { 58.1, 22.5, 440, 300 }, + [49] = { 58.4, 22.4, 440, 300 }, + [50] = { 78.7, 65, 490, 300 }, + [51] = { 38.7, 11.5, 490, 300 }, + [52] = { 37.2, 11.5, 490, 300 }, + [53] = { 50.2, 30.2, 618, 300 }, + [54] = { 72.6, 52.9, 1497, 300 }, + [55] = { 36.3, 75.4, 1519, 300 }, + [56] = { 62.7, 84.5, 5121, 300 }, + [57] = { 44.5, 44.5, 5179, 300 }, + [58] = { 97.1, 14.2, 5179, 300 }, + [59] = { 72.7, 10.7, 5179, 300 }, + [60] = { 83.6, 80.1, 5208, 300 }, + [61] = { 92.9, 92.4, 5581, 300 }, + [62] = { 95.5, 92, 5581, 300 }, + [63] = { 29.6, 83.5, 5602, 300 }, + [64] = { 6.5, 25.4, 5602, 300 }, + }, + }, + [2003149] = { + ["coords"] = { + [1] = { 64.5, 15.8, 4, 300 }, + [2] = { 68.3, 48.5, 15, 300 }, + [3] = { 68.2, 48.3, 15, 300 }, + [4] = { 28.2, 6.6, 405, 300 }, + [5] = { 74.4, 42.6, 5087, 300 }, + [6] = { 78.3, 82.6, 5208, 300 }, + [7] = { 78.3, 82.5, 5208, 300 }, + [8] = { 78.2, 82.5, 5208, 300 }, + }, + }, + [2003150] = { + ["coords"] = {}, + }, + [2003151] = { + ["coords"] = {}, + }, + [2003152] = { + ["coords"] = {}, + }, + [2003153] = { + ["coords"] = {}, + }, + [2003154] = { + ["coords"] = { + [1] = { 93.2, 13.4, 10, 300 }, + [2] = { 93.9, 12.6, 10, 300 }, + [3] = { 57.2, 49.7, 1519, 300 }, + }, + }, + [2003155] = { + ["coords"] = { + [1] = { 21, 48.5, 267, 300 }, + [2] = { 78, 11.3, 5179, 300 }, + }, + }, + [2003156] = { + ["coords"] = { + [1] = { 79.1, 67, 28, 300 }, + [2] = { 79.1, 66.8, 28, 300 }, + [3] = { 79.2, 66.4, 28, 300 }, + }, + }, + [2003157] = { + ["coords"] = {}, + }, + [2003158] = { + ["coords"] = {}, + }, + [2003159] = { + ["coords"] = {}, + }, + [2003160] = { + ["coords"] = {}, + }, + [2003161] = { + ["coords"] = {}, + }, + [2003162] = { + ["coords"] = { + [1] = { 52.8, 5.1, 15, 300 }, + [2] = { 62.9, 56.6, 17, 300 }, + [3] = { 60.7, 55.1, 17, 300 }, + [4] = { 62.3, 53.5, 17, 300 }, + [5] = { 62.2, 53.4, 17, 300 }, + }, + }, + [2003163] = { + ["coords"] = { + [1] = { 61.6, 55, 17, 300 }, + [2] = { 61.6, 54.8, 17, 300 }, + [3] = { 61.7, 54.7, 17, 300 }, + }, + }, + [2003164] = { + ["coords"] = { + [1] = { 64.7, 16, 4, 300 }, + [2] = { 64, 15.8, 4, 300 }, + }, + }, + [2003165] = { + ["coords"] = {}, + }, + [2003166] = { + ["coords"] = { + [1] = { 78.9, 66.7, 28, 300 }, + [2] = { 31.5, 24, 28, 0 }, + [3] = { 33.4, 22, 28, 300 }, + [4] = { 34.1, 18.8, 28, 0 }, + [5] = { 87.8, 38.4, 85, 0 }, + [6] = { 89.7, 36.5, 85, 300 }, + [7] = { 90.3, 33.5, 85, 0 }, + [8] = { 79.8, 26.7, 85, 300 }, + [9] = { 58.9, 36.9, 4012, 300 }, + }, + }, + [2003167] = { + ["coords"] = {}, + }, + [2003168] = { + ["coords"] = { + [1] = { 78.8, 67, 28, 300 }, + [2] = { 79, 66.3, 28, 300 }, + [3] = { 80.1, 66.2, 28, 300 }, + [4] = { 52, 68.3, 85, 300 }, + [5] = { 52, 67.1, 85, 300 }, + [6] = { 21.8, 90.3, 139, 300 }, + }, + }, + [2003169] = { + ["coords"] = { + [1] = { 32.9, 17.6, 28, 300 }, + [2] = { 33, 17.1, 28, 300 }, + [3] = { 89.2, 32.4, 85, 300 }, + [4] = { 89.3, 31.9, 85, 300 }, + }, + }, + [2003170] = { + ["coords"] = { + [1] = { 33.4, 22.1, 28, 300 }, + [2] = { 32, 46.9, 85, 300 }, + [3] = { 32.2, 46.7, 85, 300 }, + [4] = { 89.7, 36.6, 85, 300 }, + }, + }, + [2003171] = { + ["coords"] = {}, + }, + [2003172] = { + ["coords"] = {}, + }, + [2003173] = { + ["coords"] = { + [1] = { 39.5, 77.7, 5121, 300 }, + }, + }, + [2003174] = { + ["coords"] = { + [1] = { 66.9, 30.3, 1519, 300 }, + [2] = { 67.7, 29.3, 1519, 300 }, + [3] = { 68.5, 28.3, 1519, 300 }, + [4] = { 68.5, 27.4, 1519, 300 }, + [5] = { 65.3, 27.3, 1519, 300 }, + [6] = { 68, 26.5, 1519, 300 }, + [7] = { 66.1, 26.3, 1519, 300 }, + [8] = { 67.6, 25.6, 1519, 300 }, + [9] = { 67, 25.4, 1519, 300 }, + [10] = { 52.4, 93.6, 5581, 300 }, + [11] = { 52.8, 93.1, 5581, 300 }, + [12] = { 53.2, 92.6, 5581, 300 }, + [13] = { 53.3, 92.1, 5581, 300 }, + [14] = { 51.5, 92, 5581, 300 }, + [15] = { 53, 91.6, 5581, 300 }, + [16] = { 52, 91.5, 5581, 300 }, + [17] = { 52.7, 91.1, 5581, 300 }, + [18] = { 52.4, 91, 5581, 300 }, + }, + }, + [2003175] = { + ["coords"] = { + [1] = { 64.3, 17.1, 4, 300 }, + [2] = { 64.1, 17, 4, 300 }, + [3] = { 64.3, 16.4, 4, 300 }, + [4] = { 64.3, 16.1, 4, 300 }, + [5] = { 64.6, 15.3, 4, 300 }, + [6] = { 64.4, 15.2, 4, 300 }, + }, + }, + [2003176] = { + ["coords"] = { + [1] = { 42.3, 74.6, 40, 300 }, + [2] = { 57.2, 28.8, 1581, 300 }, + }, + }, + [2003177] = { + ["coords"] = { + [1] = { 33.6, 48.1, 10, 300 }, + [2] = { 48.8, 60.3, 11, 300 }, + [3] = { 44.4, 98.4, 28, 300 }, + [4] = { 44.5, 98.1, 28, 300 }, + [5] = { 81.3, 51.1, 36, 300 }, + [6] = { 81.5, 50.7, 36, 300 }, + [7] = { 34.6, 10.1, 45, 300 }, + [8] = { 14, 71.8, 47, 300 }, + [9] = { 42, 10.8, 130, 300 }, + [10] = { 42.1, 10.6, 130, 300 }, + [11] = { 42.2, 52.7, 267, 300 }, + [12] = { 42.2, 52.4, 267, 300 }, + [13] = { 42.6, 51.9, 267, 300 }, + [14] = { 31.2, 38.3, 440, 300 }, + [15] = { 31.2, 38.2, 440, 300 }, + [16] = { 31.3, 38.1, 440, 300 }, + [17] = { 78.4, 67.8, 490, 300 }, + [18] = { 78.6, 67.6, 490, 300 }, + [19] = { 78.7, 67.3, 490, 300 }, + [20] = { 96.4, 15, 5179, 300 }, + [21] = { 96.5, 14.7, 5179, 300 }, + [22] = { 96.9, 14.3, 5179, 300 }, + [23] = { 6.2, 25.3, 5602, 300 }, + }, + }, + [2003178] = { + ["coords"] = { + [1] = { 49.1, 60.5, 11, 300 }, + [2] = { 49.1, 60.3, 11, 300 }, + [3] = { 74.9, 51.5, 17, 300 }, + [4] = { 43.3, 80.5, 33, 300 }, + [5] = { 4.3, 62.1, 85, 300 }, + [6] = { 4.3, 61.8, 85, 300 }, + [7] = { 4.4, 61.8, 85, 300 }, + [8] = { 23.5, 58.5, 85, 300 }, + [9] = { 12.1, 56, 85, 300 }, + [10] = { 42.2, 10.4, 130, 300 }, + [11] = { 36.8, 18.9, 5561, 300 }, + [12] = { 6.5, 25.5, 5602, 300 }, + [13] = { 6.4, 25.2, 5602, 300 }, + }, + }, + [2003179] = { + ["coords"] = { + [1] = { 33.8, 49, 10, 300 }, + [2] = { 49.1, 60.4, 11, 300 }, + [3] = { 37.5, 71.5, 14, 300 }, + [4] = { 74.9, 51.4, 17, 300 }, + [5] = { 64.8, 34.4, 17, 300 }, + [6] = { 33.8, 17.7, 28, 300 }, + [7] = { 4.5, 62.3, 85, 300 }, + [8] = { 90.1, 32.5, 85, 300 }, + [9] = { 67.4, 83.5, 130, 300 }, + [10] = { 67.5, 83.5, 130, 300 }, + [11] = { 31.2, 63.1, 141, 300 }, + [12] = { 42, 53.2, 267, 300 }, + [13] = { 14, 50.3, 267, 300 }, + [14] = { 14.1, 50.3, 267, 300 }, + [15] = { 37.1, 51.6, 406, 300 }, + [16] = { 37.1, 51.5, 406, 300 }, + [17] = { 49.5, 30.2, 618, 300 }, + [18] = { 23.8, 37.1, 1519, 300 }, + [19] = { 24, 37.1, 1519, 300 }, + [20] = { 67.5, 77.8, 1657, 300 }, + [21] = { 33.3, 53.8, 5179, 300 }, + [22] = { 96.3, 15.4, 5179, 300 }, + [23] = { 71.9, 12.8, 5179, 300 }, + [24] = { 29.3, 97.3, 5581, 300 }, + [25] = { 29.4, 97.3, 5581, 300 }, + [26] = { 6.4, 25.4, 5602, 300 }, + }, + }, + [2003180] = { + ["coords"] = {}, + }, + [2003181] = { + ["coords"] = { + [1] = { 57, 98.9, 14, 300 }, + [2] = { 57.1, 98.8, 14, 300 }, + [3] = { 75, 48.7, 17, 300 }, + }, + }, + [2003182] = { + ["coords"] = {}, + }, + [2003183] = { + ["coords"] = {}, + }, + [2003184] = { + ["coords"] = { + [1] = { 80.9, 71.8, 10, 300 }, + [2] = { 80.8, 71.7, 10, 300 }, + [3] = { 80.6, 71.6, 10, 300 }, + [4] = { 81.1, 71.5, 10, 300 }, + [5] = { 33.6, 49.3, 10, 300 }, + [6] = { 33.2, 48.7, 10, 300 }, + [7] = { 29.9, 71.3, 16, 300 }, + [8] = { 30, 71.3, 16, 300 }, + [9] = { 27.7, 77.1, 33, 300 }, + [10] = { 62.2, 77.4, 38, 300 }, + [11] = { 60, 77.3, 38, 300 }, + [12] = { 59.7, 77.2, 38, 300 }, + [13] = { 60.1, 77.1, 38, 300 }, + [14] = { 59.8, 77, 38, 300 }, + [15] = { 17.4, 49.6, 85, 300 }, + [16] = { 30.4, 83.9, 5602, 300 }, + [17] = { 29.3, 83.9, 5602, 300 }, + [18] = { 29.1, 83.8, 5602, 300 }, + [19] = { 29.3, 83.8, 5602, 300 }, + [20] = { 29.1, 83.7, 5602, 300 }, + }, + }, + [2003185] = { + ["coords"] = {}, + }, + [2003186] = { + ["coords"] = { + [1] = { 31.2, 66.5, 85, 300 }, + }, + }, + [2003187] = { + ["coords"] = { + [1] = { 33.3, 49.1, 10, 300 }, + [2] = { 49, 61.1, 11, 300 }, + [3] = { 67.5, 82.8, 130, 300 }, + [4] = { 14.1, 49.3, 267, 300 }, + [5] = { 71.9, 12, 5179, 300 }, + [6] = { 6.4, 25.9, 5602, 300 }, + }, + }, + [2003188] = { + ["coords"] = {}, + }, + [2003189] = { + ["coords"] = { + [1] = { 60.3, 40, 409, 300 }, + }, + }, + [2003190] = { + ["coords"] = {}, + }, + [2003191] = { + ["coords"] = {}, + }, + [2003192] = { + ["coords"] = {}, + }, + [2003193] = { + ["coords"] = { + [1] = { 41.9, 74.2, 15, 300 }, + [2] = { 42, 74.1, 15, 300 }, + [3] = { 41.9, 74.1, 15, 300 }, + [4] = { 25.6, 66.2, 16, 300 }, + [5] = { 44.4, 98.5, 28, 300 }, + [6] = { 80.8, 60.7, 28, 300 }, + [7] = { 80.7, 60.7, 28, 300 }, + [8] = { 81.3, 51.2, 36, 300 }, + [9] = { 41.8, 75, 40, 300 }, + [10] = { 41.9, 74.8, 40, 300 }, + [11] = { 35.1, 9.5, 45, 300 }, + [12] = { 14.4, 71.2, 47, 300 }, + [13] = { 4.6, 62.5, 85, 300 }, + [14] = { 4.2, 61.9, 85, 300 }, + [15] = { 4.5, 61.3, 85, 300 }, + [16] = { 4.8, 61.2, 85, 300 }, + [17] = { 12.1, 53.5, 85, 300 }, + [18] = { 16.9, 49.6, 85, 300 }, + [19] = { 17.2, 49.5, 85, 300 }, + [20] = { 42, 10, 130, 300 }, + [21] = { 22.5, 84.2, 139, 300 }, + [22] = { 22.5, 84.1, 139, 300 }, + [23] = { 55.2, 56.1, 405, 300 }, + [24] = { 61.5, 43.5, 409, 300 }, + [25] = { 72.3, 53.5, 1497, 300 }, + [26] = { 59.9, 55.8, 1519, 300 }, + [27] = { 68.4, 28.1, 1519, 300 }, + [28] = { 29.6, 10.2, 1519, 300 }, + [29] = { 53.6, 31.3, 1581, 300 }, + [30] = { 53.8, 30.4, 1581, 300 }, + [31] = { 53.2, 92.4, 5581, 300 }, + [32] = { 32.4, 82.8, 5581, 300 }, + }, + }, + [2003194] = { + ["coords"] = { + [1] = { 49.2, 61, 11, 300 }, + [2] = { 49.2, 60.7, 11, 300 }, + [3] = { 55.3, 97.5, 14, 300 }, + [4] = { 58.7, 26.3, 14, 300 }, + [5] = { 75.6, 49.5, 17, 300 }, + [6] = { 74.1, 48, 17, 300 }, + [7] = { 64.8, 34.9, 17, 300 }, + [8] = { 44.4, 98.9, 28, 300 }, + [9] = { 44.2, 98.4, 28, 300 }, + [10] = { 80.9, 63.5, 28, 300 }, + [11] = { 79, 62.9, 28, 300 }, + [12] = { 79.1, 62.8, 28, 300 }, + [13] = { 79.1, 62.7, 28, 300 }, + [14] = { 79.1, 62.2, 28, 300 }, + [15] = { 79, 62.1, 28, 300 }, + [16] = { 78.9, 62.1, 28, 300 }, + [17] = { 29.4, 44.6, 28, 300 }, + [18] = { 33.7, 17.5, 28, 300 }, + [19] = { 81.2, 51.8, 36, 300 }, + [20] = { 81, 51.1, 36, 300 }, + [21] = { 34.6, 10, 45, 300 }, + [22] = { 14, 71.7, 47, 300 }, + [23] = { 21.8, 68.9, 85, 300 }, + [24] = { 21.9, 68.1, 85, 300 }, + [25] = { 4.8, 61.3, 85, 300 }, + [26] = { 85.9, 58.1, 85, 300 }, + [27] = { 90, 32.3, 85, 300 }, + [28] = { 67.4, 82.9, 130, 300 }, + [29] = { 67.3, 82.9, 130, 300 }, + [30] = { 41.8, 10.6, 130, 300 }, + [31] = { 42, 10.1, 130, 300 }, + [32] = { 42.1, 10, 130, 300 }, + [33] = { 22.6, 87.3, 139, 300 }, + [34] = { 20.5, 86.6, 139, 300 }, + [35] = { 20.6, 86.5, 139, 300 }, + [36] = { 20.7, 86.4, 139, 300 }, + [37] = { 20.6, 85.9, 139, 300 }, + [38] = { 20.5, 85.8, 139, 300 }, + [39] = { 20.4, 85.7, 139, 300 }, + [40] = { 14, 49.4, 267, 300 }, + [41] = { 13.9, 49.4, 267, 300 }, + [42] = { 29.6, 11.3, 1519, 300 }, + [43] = { 29.8, 10.2, 1519, 300 }, + [44] = { 71.8, 12.1, 5179, 300 }, + [45] = { 71.8, 12, 5179, 300 }, + [46] = { 84.2, 79.2, 5208, 300 }, + [47] = { 84.2, 78.7, 5208, 300 }, + [48] = { 84.6, 78.1, 5208, 300 }, + [49] = { 83.3, 77.6, 5208, 300 }, + [50] = { 84.1, 77.2, 5208, 300 }, + [51] = { 83.9, 77, 5208, 300 }, + [52] = { 40.2, 43.7, 5208, 300 }, + [53] = { 40.3, 43.4, 5208, 300 }, + [54] = { 32.4, 83.5, 5581, 300 }, + [55] = { 32.5, 82.9, 5581, 300 }, + [56] = { 6.5, 25.8, 5602, 300 }, + [57] = { 6.5, 25.6, 5602, 300 }, + }, + }, + [2003195] = { + ["coords"] = { + [1] = { 24.2, 33, 1, 300 }, + [2] = { 64.7, 15.8, 4, 300 }, + [3] = { 64.2, 15.1, 4, 300 }, + [4] = { 48.1, 51.8, 8, 300 }, + [5] = { 19.1, 53.4, 10, 300 }, + [6] = { 33.3, 48.8, 10, 300 }, + [7] = { 33.3, 48.6, 10, 300 }, + [8] = { 34.1, 48.4, 10, 300 }, + [9] = { 32.2, 48.1, 10, 300 }, + [10] = { 49.1, 60.7, 11, 300 }, + [11] = { 48.9, 60.2, 11, 300 }, + [12] = { 55.4, 97.3, 14, 300 }, + [13] = { 37.6, 72.4, 14, 300 }, + [14] = { 58.7, 26.3, 14, 300 }, + [15] = { 58.2, 25.7, 14, 300 }, + [16] = { 71.1, 73.4, 15, 300 }, + [17] = { 44.9, 91.7, 16, 300 }, + [18] = { 74.8, 51.4, 17, 300 }, + [19] = { 75.5, 49.5, 17, 300 }, + [20] = { 74.2, 47.9, 17, 300 }, + [21] = { 64.9, 34.9, 17, 300 }, + [22] = { 64.8, 34.8, 17, 300 }, + [23] = { 44.4, 98.7, 28, 300 }, + [24] = { 44.3, 98, 28, 300 }, + [25] = { 29.4, 44.7, 28, 300 }, + [26] = { 33.9, 17.4, 28, 0 }, + [27] = { 81.2, 51.6, 36, 300 }, + [28] = { 81.1, 50.5, 36, 300 }, + [29] = { 28.5, 58.1, 45, 300 }, + [30] = { 21.6, 69, 85, 300 }, + [31] = { 59.3, 68.1, 85, 300 }, + [32] = { 4.7, 61.4, 85, 300 }, + [33] = { 85.9, 58.2, 85, 300 }, + [34] = { 12.2, 53.3, 85, 300 }, + [35] = { 90.1, 32.2, 85, 0 }, + [36] = { 67.7, 83.6, 130, 300 }, + [37] = { 42, 10.6, 130, 300 }, + [38] = { 42.1, 52.5, 267, 300 }, + [39] = { 14.4, 50.4, 267, 300 }, + [40] = { 79.8, 80.3, 331, 300 }, + [41] = { 72.9, 55.7, 331, 300 }, + [42] = { 82.4, 55.4, 400, 25 }, + [43] = { 47.8, 57.4, 406, 300 }, + [44] = { 60.7, 44.3, 409, 300 }, + [45] = { 59.1, 43.8, 409, 300 }, + [46] = { 61.4, 43.7, 409, 300 }, + [47] = { 31.2, 37.8, 440, 300 }, + [48] = { 78.6, 66.7, 490, 300 }, + [49] = { 49.8, 32, 618, 300 }, + [50] = { 49.1, 31.2, 618, 300 }, + [51] = { 49.7, 31.1, 618, 300 }, + [52] = { 51.3, 29.5, 618, 300 }, + [53] = { 73, 40.8, 721, 300 }, + [54] = { 57.9, 49.4, 1497, 300 }, + [55] = { 76.2, 39.5, 1497, 300 }, + [56] = { 74.6, 39.5, 1497, 300 }, + [57] = { 76, 38.6, 1497, 300 }, + [58] = { 73.6, 37.5, 1497, 300 }, + [59] = { 54.3, 14.2, 1497, 300 }, + [60] = { 37.1, 75.2, 1519, 300 }, + [61] = { 59.9, 55.8, 1519, 300 }, + [62] = { 63.6, 46.8, 1519, 25 }, + [63] = { 21.6, 37.4, 1519, 300 }, + [64] = { 66.9, 29.8, 1519, 300 }, + [65] = { 68.4, 28.1, 1519, 300 }, + [66] = { 65.6, 27.4, 1519, 300 }, + [67] = { 66.8, 27.2, 1519, 300 }, + [68] = { 66.5, 26.3, 1519, 300 }, + [69] = { 29.9, 14.8, 1519, 300 }, + [70] = { 29.7, 10.8, 1519, 300 }, + [71] = { 29.6, 10.2, 1519, 300 }, + [72] = { 22, 72.2, 2040, 25 }, + [73] = { 27, 70.6, 2040, 25 }, + [74] = { 41.3, 70.5, 2040, 25 }, + [75] = { 27.4, 69.5, 2040, 25 }, + [76] = { 41.8, 68.9, 2040, 25 }, + [77] = { 27.5, 68.7, 2040, 300 }, + [78] = { 27.5, 68.2, 2040, 25 }, + [79] = { 27.4, 67.9, 2040, 25 }, + [80] = { 27.3, 67.8, 2040, 25 }, + [81] = { 27.2, 67.6, 2040, 25 }, + [82] = { 63.2, 33.6, 4012, 300 }, + [83] = { 45.6, 45.6, 5130, 300 }, + [84] = { 96.4, 14.8, 5179, 300 }, + [85] = { 72.2, 13, 5179, 300 }, + [86] = { 48.3, 36.4, 5225, 25 }, + [87] = { 50.6, 35.6, 5225, 25 }, + [88] = { 57.5, 35.6, 5225, 25 }, + [89] = { 50.8, 35.1, 5225, 25 }, + [90] = { 57.7, 34.8, 5225, 25 }, + [91] = { 50.9, 34.7, 5225, 300 }, + [92] = { 50.9, 34.5, 5225, 25 }, + [93] = { 50.8, 34.3, 5225, 25 }, + [94] = { 50.7, 34.2, 5225, 25 }, + [95] = { 36.6, 19, 5561, 300 }, + [96] = { 28.1, 97.4, 5581, 300 }, + [97] = { 52.4, 93.4, 5581, 300 }, + [98] = { 53.2, 92.4, 5581, 300 }, + [99] = { 51.7, 92.1, 5581, 300 }, + [100] = { 52.3, 92, 5581, 300 }, + [101] = { 52.2, 91.5, 5581, 300 }, + [102] = { 32.6, 85.3, 5581, 300 }, + [103] = { 32.5, 83.2, 5581, 300 }, + [104] = { 32.4, 82.8, 5581, 300 }, + [105] = { 33.2, 60.3, 5581, 300 }, + [106] = { 51.3, 48.7, 5581, 300 }, + [107] = { 6.5, 25.6, 5602, 300 }, + [108] = { 6.3, 25.2, 5602, 300 }, + }, + }, + [2003196] = { + ["coords"] = { + [1] = { 24.1, 31.6, 1, 300 }, + [2] = { 23.3, 28.9, 1, 300 }, + [3] = { 64.1, 15.6, 4, 300 }, + [4] = { 64.2, 15.2, 4, 300 }, + [5] = { 33.3, 48.6, 10, 300 }, + [6] = { 49.2, 60.9, 11, 300 }, + [7] = { 55.4, 97.3, 14, 300 }, + [8] = { 58.5, 27.3, 14, 300 }, + [9] = { 76.7, 56.1, 15, 300 }, + [10] = { 44.9, 91.7, 16, 300 }, + [11] = { 75.5, 49.6, 17, 300 }, + [12] = { 74.2, 47.9, 17, 300 }, + [13] = { 44.3, 98.9, 28, 300 }, + [14] = { 33.9, 17.4, 28, 0 }, + [15] = { 37.7, 66.5, 33, 300 }, + [16] = { 81.2, 51.9, 36, 300 }, + [17] = { 16.9, 66.2, 46, 300 }, + [18] = { 21.6, 69, 85, 300 }, + [19] = { 23.6, 58.7, 85, 300 }, + [20] = { 17.2, 49, 85, 300 }, + [21] = { 90.1, 32.2, 85, 0 }, + [22] = { 43.6, 17, 357, 25 }, + [23] = { 81, 76.8, 405, 300 }, + [24] = { 61.5, 43.5, 409, 300 }, + [25] = { 31.2, 37.8, 440, 300 }, + [26] = { 78.4, 66.8, 490, 300 }, + [27] = { 51.3, 29.5, 618, 300 }, + [28] = { 72, 28.5, 721, 300 }, + [29] = { 65.5, 5.2, 721, 300 }, + [30] = { 57.8, 49.2, 1497, 300 }, + [31] = { 37.1, 75.2, 1519, 300 }, + [32] = { 63.5, 46.7, 1519, 25 }, + [33] = { 67.3, 28.2, 1519, 300 }, + [34] = { 66.5, 26.3, 1519, 300 }, + [35] = { 29.7, 11, 1519, 300 }, + [36] = { 42, 70.3, 2040, 25 }, + [37] = { 27.4, 68, 2040, 25 }, + [38] = { 57.8, 35.5, 5225, 25 }, + [39] = { 50.8, 34.4, 5225, 25 }, + [40] = { 36.6, 19, 5561, 300 }, + [41] = { 93.2, 92.6, 5581, 300 }, + [42] = { 52.6, 92.5, 5581, 300 }, + [43] = { 52.2, 91.5, 5581, 300 }, + [44] = { 32.4, 83.3, 5581, 300 }, + [45] = { 33.2, 60.3, 5581, 300 }, + [46] = { 6.5, 25.8, 5602, 300 }, + }, + }, + [2003197] = { + ["coords"] = { + [1] = { 24.2, 33, 1, 300 }, + [2] = { 26.6, 31.4, 1, 300 }, + [3] = { 33.7, 49, 10, 300 }, + [4] = { 33.1, 48.7, 10, 300 }, + [5] = { 48.7, 62, 11, 300 }, + [6] = { 49.1, 60.8, 11, 300 }, + [7] = { 49.1, 60.5, 11, 300 }, + [8] = { 49, 60.3, 11, 300 }, + [9] = { 55.4, 97.3, 14, 300 }, + [10] = { 37.5, 72.3, 14, 300 }, + [11] = { 37.5, 71.6, 14, 300 }, + [12] = { 41.3, 18.1, 14, 300 }, + [13] = { 44.9, 14.9, 14, 300 }, + [14] = { 45.3, 14.7, 14, 300 }, + [15] = { 77.1, 56.1, 15, 300 }, + [16] = { 45, 91.9, 16, 300 }, + [17] = { 25.6, 66.3, 16, 300 }, + [18] = { 44.2, 45.1, 16, 300 }, + [19] = { 44.4, 44.8, 16, 300 }, + [20] = { 74.2, 47.9, 17, 300 }, + [21] = { 64.8, 34.8, 17, 300 }, + [22] = { 64.8, 34.4, 17, 300 }, + [23] = { 64.8, 34.2, 17, 300 }, + [24] = { 61, 24.2, 17, 300 }, + [25] = { 61.5, 23.7, 17, 300 }, + [26] = { 61.5, 23.6, 17, 300 }, + [27] = { 54.1, 0.9, 17, 300 }, + [28] = { 54.2, 0.9, 17, 300 }, + [29] = { 44.3, 98.6, 28, 300 }, + [30] = { 80.8, 63.3, 28, 300 }, + [31] = { 79.9, 63.2, 28, 300 }, + [32] = { 80.8, 60.7, 28, 300 }, + [33] = { 33.8, 17.7, 28, 300 }, + [34] = { 33.9, 17.4, 28, 0 }, + [35] = { 27.7, 77.1, 33, 300 }, + [36] = { 37.5, 66.6, 33, 300 }, + [37] = { 31.8, 48.4, 33, 300 }, + [38] = { 32.7, 28.2, 33, 300 }, + [39] = { 88.6, 72.4, 36, 300 }, + [40] = { 81.1, 51.4, 36, 300 }, + [41] = { 60.1, 77.3, 38, 300 }, + [42] = { 59.7, 77.1, 38, 300 }, + [43] = { 51.8, 24.8, 45, 300 }, + [44] = { 51.2, 24.8, 45, 300 }, + [45] = { 51.3, 24.7, 45, 300 }, + [46] = { 51.3, 24.2, 45, 300 }, + [47] = { 34.6, 9.9, 45, 300 }, + [48] = { 17.5, 65.9, 46, 300 }, + [49] = { 30, 85.5, 47, 300 }, + [50] = { 29.5, 85.5, 47, 300 }, + [51] = { 29.6, 85.5, 47, 300 }, + [52] = { 29.6, 85, 47, 300 }, + [53] = { 14, 71.6, 47, 300 }, + [54] = { 3.2, 51.4, 47, 300 }, + [55] = { 21.9, 67.9, 85, 300 }, + [56] = { 4.6, 62.3, 85, 300 }, + [57] = { 4.5, 62.3, 85, 300 }, + [58] = { 4.8, 61.2, 85, 300 }, + [59] = { 23.7, 58.5, 85, 300 }, + [60] = { 17.4, 49.3, 85, 300 }, + [61] = { 17.2, 49.1, 85, 300 }, + [62] = { 90.1, 32.4, 85, 300 }, + [63] = { 90.1, 32.2, 85, 0 }, + [64] = { 67.4, 83.2, 130, 300 }, + [65] = { 67.6, 83.1, 130, 300 }, + [66] = { 67.4, 83.1, 130, 300 }, + [67] = { 42.2, 10.3, 130, 300 }, + [68] = { 42.2, 10.1, 130, 300 }, + [69] = { 22.5, 87.1, 139, 300 }, + [70] = { 21.5, 86.9, 139, 300 }, + [71] = { 22.5, 84.2, 139, 300 }, + [72] = { 43, 97.9, 148, 300 }, + [73] = { 43.2, 97.9, 148, 300 }, + [74] = { 42.5, 52.8, 267, 300 }, + [75] = { 14, 49.8, 267, 300 }, + [76] = { 14.3, 49.7, 267, 300 }, + [77] = { 14, 49.6, 267, 300 }, + [78] = { 86.4, 11.8, 267, 300 }, + [79] = { 79, 81.2, 331, 300 }, + [80] = { 79.2, 81.2, 331, 300 }, + [81] = { 74.1, 60.7, 331, 300 }, + [82] = { 72.5, 58.4, 331, 300 }, + [83] = { 73.2, 56.7, 331, 300 }, + [84] = { 73.2, 56.6, 331, 300 }, + [85] = { 72.9, 55.8, 331, 300 }, + [86] = { 27.3, 16, 331, 300 }, + [87] = { 27.5, 16, 331, 300 }, + [88] = { 50.8, 61.7, 357, 300 }, + [89] = { 43.6, 17.1, 357, 25 }, + [90] = { 60.9, 23.5, 361, 300 }, + [91] = { 82.8, 54.9, 400, 300 }, + [92] = { 47.8, 57.4, 406, 300 }, + [93] = { 37, 51.4, 406, 300 }, + [94] = { 51.6, 52.3, 409, 300 }, + [95] = { 61.1, 44.7, 409, 300 }, + [96] = { 61.5, 44.7, 409, 300 }, + [97] = { 61.4, 44.7, 409, 300 }, + [98] = { 60.8, 44.2, 409, 300 }, + [99] = { 60.7, 44.1, 409, 300 }, + [100] = { 60.8, 44.1, 409, 300 }, + [101] = { 60.6, 44, 409, 300 }, + [102] = { 59.3, 43.7, 409, 300 }, + [103] = { 61.3, 43.6, 409, 300 }, + [104] = { 61.1, 43.6, 409, 300 }, + [105] = { 60.7, 43.5, 409, 300 }, + [106] = { 24.6, 71.9, 440, 300 }, + [107] = { 39.1, 10.9, 490, 300 }, + [108] = { 39, 10.9, 490, 300 }, + [109] = { 49.1, 31.2, 618, 300 }, + [110] = { 49.4, 30.7, 618, 300 }, + [111] = { 49.3, 30.7, 618, 300 }, + [112] = { 49.5, 30.2, 618, 300 }, + [113] = { 73.1, 40.6, 721, 300 }, + [114] = { 93.8, 27.2, 721, 300 }, + [115] = { 59.2, 54.3, 1497, 300 }, + [116] = { 72.7, 54.1, 1497, 300 }, + [117] = { 72.2, 53.6, 1497, 300 }, + [118] = { 72.3, 53.4, 1497, 300 }, + [119] = { 74.9, 52.5, 1497, 300 }, + [120] = { 75.5, 50.3, 1497, 300 }, + [121] = { 74.4, 49, 1497, 300 }, + [122] = { 67.8, 28.8, 1519, 300 }, + [123] = { 67.8, 28.7, 1519, 300 }, + [124] = { 51.4, 70.8, 1637, 300 }, + [125] = { 41.5, 61.6, 1637, 300 }, + [126] = { 41.5, 61.5, 1637, 300 }, + [127] = { 42, 61.4, 1637, 300 }, + [128] = { 68.4, 25.7, 1637, 25 }, + [129] = { 62.9, 84.4, 5121, 300 }, + [130] = { 33.2, 76, 5179, 300 }, + [131] = { 39.2, 55.5, 5179, 300 }, + [132] = { 33.3, 53.9, 5179, 300 }, + [133] = { 33.3, 53.8, 5179, 300 }, + [134] = { 42.6, 43.6, 5179, 300 }, + [135] = { 96.8, 15, 5179, 300 }, + [136] = { 71.8, 12.4, 5179, 300 }, + [137] = { 72.1, 12.3, 5179, 300 }, + [138] = { 71.8, 12.3, 5179, 300 }, + [139] = { 83.7, 79.7, 5208, 300 }, + [140] = { 83.7, 79.6, 5208, 300 }, + [141] = { 36.9, 19.4, 5561, 300 }, + [142] = { 52.8, 92.8, 5581, 300 }, + [143] = { 52.9, 92.8, 5581, 300 }, + [144] = { 93.7, 92.3, 5581, 300 }, + [145] = { 63.2, 73.1, 5581, 300 }, + [146] = { 29.3, 83.9, 5602, 300 }, + [147] = { 29.1, 83.8, 5602, 300 }, + [148] = { 6.2, 26.6, 5602, 300 }, + [149] = { 6.4, 25.7, 5602, 300 }, + [150] = { 6.4, 25.4, 5602, 300 }, + [151] = { 6.4, 25.2, 5602, 300 }, + }, + }, + [2003198] = { + ["coords"] = { + [1] = { 24.2, 33, 1, 300 }, + [2] = { 51.7, 24.8, 45, 300 }, + [3] = { 30, 85.5, 47, 300 }, + [4] = { 27.8, 76.7, 85, 300 }, + [5] = { 23.6, 58.7, 85, 300 }, + [6] = { 72.9, 40.7, 721, 300 }, + [7] = { 72.5, 54.4, 1497, 300 }, + [8] = { 59.2, 54.1, 1497, 300 }, + [9] = { 72.3, 53.5, 1497, 300 }, + [10] = { 41.5, 61.6, 1637, 300 }, + }, + }, + [2003199] = { + ["coords"] = { + [1] = { 48.6, 62.1, 11, 300 }, + [2] = { 41.3, 18.1, 14, 300 }, + [3] = { 45.1, 14.8, 14, 300 }, + [4] = { 54.2, 1, 17, 300 }, + [5] = { 43.9, 99.1, 28, 300 }, + [6] = { 79.8, 63, 28, 300 }, + [7] = { 53.6, 99.1, 36, 300 }, + [8] = { 80.5, 52.2, 36, 300 }, + [9] = { 51, 25, 45, 300 }, + [10] = { 17.6, 66.3, 46, 300 }, + [11] = { 77.8, 81.8, 47, 300 }, + [12] = { 17.2, 49.1, 85, 300 }, + [13] = { 67.9, 81.6, 130, 300 }, + [14] = { 21.4, 86.7, 139, 300 }, + [15] = { 9.4, 22.4, 139, 300 }, + [16] = { 9.2, 22.1, 139, 300 }, + [17] = { 42.4, 51, 267, 300 }, + [18] = { 14.6, 47.7, 267, 300 }, + [19] = { 66.8, 47.4, 267, 300 }, + [20] = { 55.7, 35.2, 267, 300 }, + [21] = { 79.2, 81.4, 331, 300 }, + [22] = { 58.2, 22.2, 440, 300 }, + [23] = { 73.6, 55.1, 1497, 300 }, + [24] = { 73, 52.3, 1497, 300 }, + [25] = { 73.3, 52.1, 1497, 300 }, + [26] = { 75.6, 50.9, 1497, 300 }, + [27] = { 76.1, 50.1, 1497, 300 }, + [28] = { 65.3, 47.1, 1519, 25 }, + [29] = { 70.8, 45.2, 2040, 300 }, + [30] = { 71, 44.9, 2040, 300 }, + [31] = { 96.7, 13.5, 5179, 300 }, + [32] = { 72.4, 10.6, 5179, 300 }, + [33] = { 50, 84, 5225, 300 }, + [34] = { 49.9, 83.6, 5225, 300 }, + [35] = { 71.5, 23.6, 5225, 300 }, + [36] = { 71.6, 23.5, 5225, 300 }, + [37] = { 93.8, 92.6, 5581, 300 }, + [38] = { 6.1, 26.6, 5602, 300 }, + }, + }, + [2003200] = { + ["coords"] = { + [1] = { 53.9, 1.4, 17, 300 }, + [2] = { 53.8, 1.3, 17, 300 }, + [3] = { 78.7, 82, 331, 300 }, + [4] = { 78.6, 81.9, 331, 300 }, + }, + }, + [2003201] = { + ["coords"] = { + [1] = { 73.8, 34.9, 1497, 300 }, + [2] = { 72.2, 32.5, 1497, 300 }, + [3] = { 34.2, 95.4, 5628, 300 }, + [4] = { 31, 95.4, 5628, 300 }, + }, + }, + [2003202] = { + ["coords"] = {}, + }, + [2003203] = { + ["coords"] = {}, + }, + [2003204] = { + ["coords"] = {}, + }, + [2003205] = { + ["coords"] = { + [1] = { 33.5, 49, 10, 300 }, + [2] = { 33.2, 48.8, 10, 300 }, + [3] = { 49, 60.2, 11, 300 }, + [4] = { 74.8, 51.4, 17, 300 }, + [5] = { 75.5, 49.5, 17, 300 }, + [6] = { 44.3, 98.6, 28, 300 }, + [7] = { 44.4, 98.5, 28, 300 }, + [8] = { 44, 98.3, 28, 300 }, + [9] = { 81.1, 51.4, 36, 300 }, + [10] = { 81.3, 51.2, 36, 300 }, + [11] = { 80.7, 51, 36, 300 }, + [12] = { 67.8, 83.1, 130, 300 }, + [13] = { 67.3, 83.1, 130, 300 }, + [14] = { 67.6, 83.1, 130, 300 }, + [15] = { 14.5, 49.7, 267, 300 }, + [16] = { 13.9, 49.7, 267, 300 }, + [17] = { 14.3, 49.6, 267, 300 }, + [18] = { 37, 51.5, 406, 300 }, + [19] = { 37, 51.3, 406, 300 }, + [20] = { 60.3, 44.6, 409, 300 }, + [21] = { 24.6, 72.1, 440, 300 }, + [22] = { 66.5, 24.2, 440, 300 }, + [23] = { 66.7, 24.2, 440, 300 }, + [24] = { 75.8, 39.2, 1497, 300 }, + [25] = { 21.6, 37.3, 1519, 300 }, + [26] = { 27.7, 15.2, 1519, 300 }, + [27] = { 30.1, 13.9, 1519, 300 }, + [28] = { 29.7, 10.9, 1519, 300 }, + [29] = { 29.6, 10.2, 1519, 300 }, + [30] = { 33.3, 53.9, 5179, 300 }, + [31] = { 33.3, 53.7, 5179, 300 }, + [32] = { 72.3, 12.4, 5179, 300 }, + [33] = { 71.8, 12.3, 5179, 300 }, + [34] = { 72.1, 12.3, 5179, 300 }, + [35] = { 37, 18.7, 5561, 300 }, + [36] = { 28.1, 97.4, 5581, 300 }, + [37] = { 31.4, 85.5, 5581, 300 }, + [38] = { 32.6, 84.8, 5581, 300 }, + [39] = { 32.4, 83.2, 5581, 300 }, + [40] = { 32.4, 82.8, 5581, 300 }, + [41] = { 63.2, 73.1, 5581, 300 }, + [42] = { 6.4, 25.2, 5602, 300 }, + }, + }, + [2003206] = { + ["coords"] = { + [1] = { 74.8, 51.3, 17, 300 }, + [2] = { 79, 56.2, 85, 300 }, + [3] = { 31.7, 35.5, 440, 300 }, + [4] = { 79.5, 62.4, 490, 300 }, + }, + }, + [2003207] = { + ["coords"] = {}, + }, + [2003208] = { + ["coords"] = {}, + }, + [2003209] = { + ["coords"] = { + [1] = { 42.4, 72.6, 15, 25 }, + [2] = { 24.5, 13.8, 406, 25 }, + [3] = { 45.2, 44.6, 5179, 300 }, + [4] = { 38.5, 24.6, 5557, 300 }, + }, + }, + [2003210] = { + ["coords"] = { + [1] = { 48.8, 60.5, 11, 300 }, + [2] = { 25.9, 46.8, 28, 300 }, + [3] = { 82.5, 60.2, 85, 300 }, + [4] = { 73, 56.6, 331, 300 }, + [5] = { 6.3, 25.4, 5602, 300 }, + }, + }, + [2003211] = { + ["coords"] = { + [1] = { 31.7, 48.4, 33, 300 }, + [2] = { 61.2, 58, 1497, 300 }, + }, + }, + [2003212] = { + ["coords"] = {}, + }, + [2003213] = { + ["coords"] = { + [1] = { 60.9, 58.2, 1497, 300 }, + }, + }, + [2003214] = { + ["coords"] = {}, + }, + [2003215] = { + ["coords"] = { + [1] = { 61.4, 58.4, 1497, 300 }, + }, + }, + [2003216] = { + ["coords"] = { + [1] = { 61.4, 58.3, 1497, 300 }, + }, + }, + [2003217] = { + ["coords"] = { + [1] = { 61.4, 58.2, 1497, 300 }, + }, + }, + [2003218] = { + ["coords"] = { + [1] = { 61.4, 58.3, 1497, 300 }, + }, + }, + [2003219] = { + ["coords"] = {}, + }, + [2003220] = { + ["coords"] = {}, + }, + [2003221] = { + ["coords"] = {}, + }, + [2003222] = { + ["coords"] = {}, + }, + [2003223] = { + ["coords"] = { + [1] = { 25.2, 30.6, 1, 300 }, + [2] = { 55.2, 97.2, 14, 300 }, + [3] = { 37.7, 72.1, 14, 300 }, + [4] = { 45.4, 14.7, 14, 300 }, + [5] = { 29.8, 71, 16, 300 }, + [6] = { 74.1, 47.8, 17, 300 }, + [7] = { 61.8, 38.7, 17, 300 }, + [8] = { 61.8, 38.6, 17, 300 }, + [9] = { 64.9, 34.7, 17, 300 }, + [10] = { 61.7, 23.5, 17, 300 }, + [11] = { 79.9, 62.9, 28, 300 }, + [12] = { 29.3, 45, 28, 300 }, + [13] = { 29.3, 44.9, 28, 300 }, + [14] = { 31.6, 48.3, 33, 300 }, + [15] = { 85.8, 58.4, 85, 300 }, + [16] = { 16.4, 53.8, 85, 300 }, + [17] = { 21.5, 86.6, 139, 300 }, + [18] = { 49.9, 62.5, 267, 300 }, + [19] = { 81.3, 19.9, 721, 300 }, + [20] = { 36.8, 76.1, 1519, 300 }, + [21] = { 61.7, 71.4, 1519, 300 }, + [22] = { 36.8, 19.6, 5561, 300 }, + [23] = { 53.3, 56.6, 5602, 300 }, + }, + }, + [2003224] = { + ["coords"] = { + [1] = { 49.2, 49.4, 8, 300 }, + [2] = { 34.1, 48.9, 10, 300 }, + [3] = { 55.2, 97.3, 14, 300 }, + [4] = { 37.8, 72.1, 14, 300 }, + [5] = { 46.2, 46.2, 15, 300 }, + [6] = { 29.8, 71, 16, 300 }, + [7] = { 74.1, 47.9, 17, 300 }, + [8] = { 61.8, 38.6, 17, 300 }, + [9] = { 65, 34.7, 17, 300 }, + [10] = { 61.7, 23.5, 17, 300 }, + [11] = { 79.8, 62.9, 28, 300 }, + [12] = { 25.8, 47, 28, 300 }, + [13] = { 17, 65.8, 46, 300 }, + [14] = { 82.5, 60.3, 85, 300 }, + [15] = { 67.6, 83.6, 130, 300 }, + [16] = { 21.5, 86.6, 139, 300 }, + [17] = { 9.2, 22.8, 139, 300 }, + [18] = { 14.2, 50.4, 267, 300 }, + [19] = { 36.8, 76.1, 1519, 300 }, + [20] = { 72, 12.9, 5179, 300 }, + [21] = { 49.9, 84.4, 5225, 300 }, + [22] = { 93.2, 92.2, 5581, 300 }, + }, + }, + [2003225] = { + ["coords"] = { + [1] = { 49.2, 49.4, 8, 300 }, + [2] = { 34.1, 48.8, 10, 300 }, + [3] = { 55.2, 97.2, 14, 300 }, + [4] = { 37.8, 72.1, 14, 300 }, + [5] = { 46.2, 46.2, 15, 300 }, + [6] = { 29.8, 71, 16, 300 }, + [7] = { 74.1, 47.8, 17, 300 }, + [8] = { 61.8, 38.6, 17, 300 }, + [9] = { 65, 34.7, 17, 300 }, + [10] = { 61.7, 23.5, 17, 300 }, + [11] = { 79.8, 62.9, 28, 300 }, + [12] = { 80.8, 61.2, 28, 300 }, + [13] = { 25.8, 47, 28, 300 }, + [14] = { 29.3, 45, 28, 300 }, + [15] = { 16.9, 65.8, 46, 300 }, + [16] = { 82.5, 60.3, 85, 300 }, + [17] = { 85.7, 58.5, 85, 300 }, + [18] = { 67.6, 83.6, 130, 300 }, + [19] = { 21.5, 86.6, 139, 300 }, + [20] = { 22.5, 84.7, 139, 300 }, + [21] = { 14.2, 50.4, 267, 300 }, + [22] = { 36.8, 76.1, 1519, 300 }, + [23] = { 72, 12.9, 5179, 300 }, + [24] = { 93.2, 92.2, 5581, 300 }, + }, + }, + [2003226] = { + ["coords"] = { + [1] = { 49.2, 49.4, 8, 300 }, + [2] = { 49.1, 49.4, 8, 300 }, + [3] = { 34.2, 48.9, 10, 300 }, + [4] = { 84.9, 79.3, 12, 300 }, + [5] = { 84.9, 79.2, 12, 300 }, + [6] = { 37.8, 72.1, 14, 300 }, + [7] = { 46.2, 46.2, 15, 300 }, + [8] = { 44.1, 45.1, 16, 300 }, + [9] = { 65, 34.7, 17, 300 }, + [10] = { 61.7, 23.5, 17, 300 }, + [11] = { 25.8, 46.9, 28, 300 }, + [12] = { 78.2, 74.7, 38, 25 }, + [13] = { 82.5, 60.3, 85, 300 }, + [14] = { 82.5, 60.2, 85, 300 }, + [15] = { 16.4, 53.8, 85, 300 }, + [16] = { 17.4, 49.3, 85, 300 }, + [17] = { 67.5, 83.6, 130, 300 }, + [18] = { 14.2, 50.4, 267, 300 }, + [19] = { 70.3, 37.9, 1497, 300 }, + [20] = { 72, 12.9, 5179, 300 }, + [21] = { 48.5, 69, 5536, 300 }, + [22] = { 38.6, 82.5, 5602, 25 }, + }, + }, + [2003227] = { + ["coords"] = { + [1] = { 25.2, 30.7, 1, 300 }, + [2] = { 26.7, 30.3, 1, 300 }, + [3] = { 23.5, 29.3, 1, 300 }, + [4] = { 27.8, 26.9, 1, 300 }, + [5] = { 58.1, 99.7, 14, 300 }, + [6] = { 58.7, 27.1, 14, 300 }, + [7] = { 58.7, 26.3, 14, 300 }, + [8] = { 77.4, 56.2, 15, 300 }, + [9] = { 67.9, 48.5, 15, 300 }, + [10] = { 46.2, 46.1, 15, 300 }, + [11] = { 75.6, 49.1, 17, 300 }, + [12] = { 34.3, 10.3, 17, 300 }, + [13] = { 80.9, 63.6, 28, 300 }, + [14] = { 79.9, 63.2, 28, 300 }, + [15] = { 80.8, 61.7, 28, 300 }, + [16] = { 80.7, 61.1, 28, 300 }, + [17] = { 33.8, 18, 28, 0 }, + [18] = { 33.9, 17.4, 28, 0 }, + [19] = { 34, 17.4, 28, 0 }, + [20] = { 31.8, 48.4, 33, 300 }, + [21] = { 48.9, 8.6, 33, 300 }, + [22] = { 78.2, 74.7, 38, 25 }, + [23] = { 78, 74.6, 38, 25 }, + [24] = { 78.1, 74.5, 38, 25 }, + [25] = { 17.6, 64.8, 46, 300 }, + [26] = { 20.9, 69, 85, 300 }, + [27] = { 21.7, 68.9, 85, 300 }, + [28] = { 21.3, 68.8, 85, 300 }, + [29] = { 21.3, 68.7, 85, 300 }, + [30] = { 78.8, 56.4, 85, 300 }, + [31] = { 17.4, 49.2, 85, 300 }, + [32] = { 32, 46, 85, 300 }, + [33] = { 90.1, 32.8, 85, 0 }, + [34] = { 90.2, 32.2, 85, 0 }, + [35] = { 22.6, 87.4, 139, 300 }, + [36] = { 21.5, 86.9, 139, 300 }, + [37] = { 22.6, 85.3, 139, 300 }, + [38] = { 22.5, 84.6, 139, 300 }, + [39] = { 49.9, 63.1, 267, 300 }, + [40] = { 49.9, 63, 267, 300 }, + [41] = { 20.6, 48.5, 267, 300 }, + [42] = { 79.8, 62.9, 406, 300 }, + [43] = { 27.6, 18.6, 406, 300 }, + [44] = { 61.5, 44.4, 409, 300 }, + [45] = { 60.8, 44.2, 409, 300 }, + [46] = { 60.6, 44, 409, 300 }, + [47] = { 60.7, 43.9, 409, 300 }, + [48] = { 61.6, 43.6, 409, 300 }, + [49] = { 61.3, 43.6, 409, 300 }, + [50] = { 81.3, 20.8, 721, 300 }, + [51] = { 94.5, 17.1, 721, 300 }, + [52] = { 66.9, 8.6, 721, 300 }, + [53] = { 70.2, 38, 1497, 300 }, + [54] = { 56.5, 36.2, 1497, 300 }, + [55] = { 61.9, 32.4, 1497, 300 }, + [56] = { 49.6, 75.2, 1519, 300 }, + [57] = { 37.5, 73.5, 1519, 300 }, + [58] = { 30.4, 14.1, 1519, 300 }, + [59] = { 61.9, 60.3, 4012, 300 }, + [60] = { 77.7, 11.3, 5179, 300 }, + [61] = { 93.8, 91.3, 5581, 300 }, + [62] = { 32.8, 85, 5581, 300 }, + [63] = { 27.5, 62.4, 5601, 300 }, + [64] = { 27.8, 62.4, 5601, 300 }, + [65] = { 28, 62.4, 5601, 300 }, + [66] = { 38.6, 82.5, 5602, 25 }, + [67] = { 38.5, 82.5, 5602, 25 }, + [68] = { 38.5, 82.4, 5602, 25 }, + }, + }, + [2003228] = { + ["coords"] = { + [1] = { 25.2, 31.6, 1, 300 }, + [2] = { 26.7, 30.3, 1, 300 }, + [3] = { 58.6, 27.4, 14, 300 }, + [4] = { 58.5, 27.3, 14, 300 }, + [5] = { 58.8, 26.4, 14, 300 }, + [6] = { 77.2, 56.1, 15, 300 }, + [7] = { 44.2, 45.1, 16, 300 }, + [8] = { 44.2, 45, 16, 300 }, + [9] = { 61.6, 12.3, 16, 300 }, + [10] = { 61.8, 38.6, 17, 300 }, + [11] = { 80.9, 63.6, 28, 300 }, + [12] = { 33.9, 18, 28, 0 }, + [13] = { 31.6, 48.3, 33, 300 }, + [14] = { 48.9, 8.6, 33, 300 }, + [15] = { 77.8, 75, 38, 25 }, + [16] = { 78.1, 74.7, 38, 25 }, + [17] = { 21.7, 68.9, 85, 300 }, + [18] = { 21.3, 68.7, 85, 300 }, + [19] = { 21.3, 68.5, 85, 300 }, + [20] = { 13.8, 54.9, 85, 300 }, + [21] = { 32, 46, 85, 300 }, + [22] = { 90.1, 32.8, 85, 0 }, + [23] = { 22.6, 87.4, 139, 300 }, + [24] = { 43.1, 97.7, 148, 300 }, + [25] = { 49.9, 64.6, 267, 300 }, + [26] = { 20.7, 48.5, 267, 300 }, + [27] = { 21.1, 48.3, 267, 300 }, + [28] = { 27.4, 15.8, 331, 300 }, + [29] = { 60.7, 44.6, 409, 300 }, + [30] = { 60.6, 44.4, 409, 300 }, + [31] = { 60.2, 44.4, 409, 300 }, + [32] = { 60.8, 44, 409, 300 }, + [33] = { 60.7, 44, 409, 300 }, + [34] = { 60.7, 43.9, 409, 300 }, + [35] = { 61.6, 43.9, 409, 300 }, + [36] = { 56.8, 43.6, 409, 300 }, + [37] = { 61.6, 43.6, 409, 300 }, + [38] = { 59.3, 43.6, 409, 300 }, + [39] = { 60.7, 43.5, 409, 300 }, + [40] = { 61.2, 43.5, 409, 300 }, + [41] = { 60.1, 39.5, 409, 300 }, + [42] = { 81.9, 28.5, 721, 300 }, + [43] = { 94.3, 17.3, 721, 300 }, + [44] = { 57, 35.5, 1497, 300 }, + [45] = { 61.6, 32.6, 1497, 300 }, + [46] = { 61.9, 32.3, 1497, 300 }, + [47] = { 52, 77.2, 5087, 300 }, + [48] = { 77.7, 11.3, 5179, 300 }, + [49] = { 78.1, 11.1, 5179, 300 }, + [50] = { 42.8, 67.9, 5581, 300 }, + [51] = { 38.4, 82.7, 5602, 25 }, + [52] = { 38.5, 82.5, 5602, 25 }, + }, + }, + [2003229] = { + ["coords"] = { + [1] = { 25.2, 31.6, 1, 300 }, + [2] = { 25.4, 30.8, 1, 300 }, + [3] = { 24.2, 27.8, 1, 300 }, + [4] = { 48.6, 62.3, 11, 300 }, + [5] = { 58.1, 99.7, 14, 300 }, + [6] = { 57.1, 99.1, 14, 300 }, + [7] = { 57, 98.9, 14, 300 }, + [8] = { 58.7, 26.5, 14, 300 }, + [9] = { 67.9, 48.6, 15, 300 }, + [10] = { 45, 91.8, 16, 300 }, + [11] = { 44.2, 45.1, 16, 300 }, + [12] = { 44.1, 45.1, 16, 300 }, + [13] = { 61.6, 12.3, 16, 300 }, + [14] = { 75.6, 49.1, 17, 300 }, + [15] = { 75, 48.8, 17, 300 }, + [16] = { 75, 48.7, 17, 300 }, + [17] = { 61, 24.9, 17, 300 }, + [18] = { 78.9, 66.7, 28, 300 }, + [19] = { 78.9, 63.2, 28, 300 }, + [20] = { 78.7, 63, 28, 300 }, + [21] = { 80.4, 60, 28, 300 }, + [22] = { 80.4, 59.9, 28, 300 }, + [23] = { 31.7, 48.4, 33, 300 }, + [24] = { 48.9, 8.6, 33, 300 }, + [25] = { 59.9, 76.8, 38, 300 }, + [26] = { 78.2, 74.6, 38, 25 }, + [27] = { 19.1, 61.9, 44, 300 }, + [28] = { 21.3, 68.8, 85, 300 }, + [29] = { 21.3, 68.5, 85, 300 }, + [30] = { 21.2, 68.4, 85, 300 }, + [31] = { 78.9, 56.4, 85, 300 }, + [32] = { 78.8, 56.4, 85, 300 }, + [33] = { 12, 53.1, 85, 300 }, + [34] = { 17.4, 49.2, 85, 300 }, + [35] = { 20.5, 87, 139, 300 }, + [36] = { 20.2, 86.8, 139, 300 }, + [37] = { 22.1, 83.4, 139, 300 }, + [38] = { 22.1, 83.3, 139, 300 }, + [39] = { 43.1, 97.7, 148, 300 }, + [40] = { 49.9, 66.3, 267, 300 }, + [41] = { 49.9, 64.8, 267, 300 }, + [42] = { 21, 48.4, 267, 300 }, + [43] = { 66.7, 47, 267, 300 }, + [44] = { 27.4, 15.7, 331, 300 }, + [45] = { 47.8, 57.4, 406, 300 }, + [46] = { 47.8, 57.3, 406, 300 }, + [47] = { 60.7, 44.7, 409, 300 }, + [48] = { 61.5, 44.5, 409, 300 }, + [49] = { 60.7, 43.9, 409, 300 }, + [50] = { 59.2, 43.7, 409, 300 }, + [51] = { 56.9, 43.6, 409, 300 }, + [52] = { 58.3, 22.1, 440, 300 }, + [53] = { 82, 28.5, 721, 300 }, + [54] = { 83.8, 21.3, 721, 300 }, + [55] = { 83.8, 21.2, 721, 300 }, + [56] = { 70.4, 38.4, 1497, 300 }, + [57] = { 23.7, 37.4, 1519, 300 }, + [58] = { 33.9, 44, 3457, 300 }, + [59] = { 33.9, 43.8, 3457, 300 }, + [60] = { 42.3, 31.7, 3457, 300 }, + [61] = { 34.6, 15.9, 3457, 300 }, + [62] = { 40, 76.9, 5087, 300 }, + [63] = { 39.3, 55.5, 5179, 300 }, + [64] = { 78, 11.2, 5179, 300 }, + [65] = { 44.2, 57.7, 5225, 300 }, + [66] = { 37, 19.3, 5561, 300 }, + [67] = { 29.2, 97.5, 5581, 300 }, + [68] = { 42.8, 67.9, 5581, 300 }, + [69] = { 29.2, 83.6, 5602, 300 }, + [70] = { 38.6, 82.5, 5602, 25 }, + [71] = { 6.1, 26.8, 5602, 300 }, + }, + }, + [2003230] = { + ["coords"] = { + [1] = { 26.7, 30.3, 1, 300 }, + [2] = { 23.5, 29.2, 1, 300 }, + [3] = { 48.5, 62.3, 11, 300 }, + [4] = { 84.9, 79.1, 12, 300 }, + [5] = { 25.1, 73.1, 12, 300 }, + [6] = { 56.9, 98.9, 14, 300 }, + [7] = { 57, 98.9, 14, 300 }, + [8] = { 37.6, 72.3, 14, 300 }, + [9] = { 58.6, 27.4, 14, 300 }, + [10] = { 58.5, 27.2, 14, 300 }, + [11] = { 58.7, 26.5, 14, 300 }, + [12] = { 58.8, 26.4, 14, 300 }, + [13] = { 58.7, 26.3, 14, 300 }, + [14] = { 58, 25.7, 14, 300 }, + [15] = { 58.1, 25.6, 14, 300 }, + [16] = { 57.5, 25.1, 14, 300 }, + [17] = { 77.4, 56.3, 15, 300 }, + [18] = { 77.2, 56.1, 15, 300 }, + [19] = { 67.9, 48.5, 15, 300 }, + [20] = { 46.2, 46.1, 15, 300 }, + [21] = { 61.3, 32.2, 15, 300 }, + [22] = { 45, 91.8, 16, 300 }, + [23] = { 44.2, 45.1, 16, 300 }, + [24] = { 61.6, 12.3, 16, 300 }, + [25] = { 45.9, 85.6, 17, 300 }, + [26] = { 74.8, 51.5, 17, 300 }, + [27] = { 75.6, 49.6, 17, 300 }, + [28] = { 75, 48.7, 17, 300 }, + [29] = { 61.8, 38.6, 17, 300 }, + [30] = { 61.9, 38.6, 17, 300 }, + [31] = { 64.9, 34.8, 17, 300 }, + [32] = { 61.7, 23.5, 17, 300 }, + [33] = { 78.9, 63.1, 28, 300 }, + [34] = { 78.8, 63.1, 28, 300 }, + [35] = { 80.8, 61.8, 28, 300 }, + [36] = { 80.9, 61.8, 28, 300 }, + [37] = { 80.4, 59.9, 28, 300 }, + [38] = { 31.6, 49.2, 33, 300 }, + [39] = { 31.6, 49.1, 33, 300 }, + [40] = { 31.7, 48.3, 33, 300 }, + [41] = { 48.9, 8.6, 33, 300 }, + [42] = { 57.8, 32.1, 41, 300 }, + [43] = { 19, 62, 44, 300 }, + [44] = { 35.1, 10.5, 45, 300 }, + [45] = { 17.6, 64.9, 46, 300 }, + [46] = { 17.6, 64.8, 46, 300 }, + [47] = { 14.4, 72.2, 47, 300 }, + [48] = { 21.8, 69, 85, 300 }, + [49] = { 20.7, 68.8, 85, 300 }, + [50] = { 21.1, 68.4, 85, 300 }, + [51] = { 51.1, 67.3, 85, 300 }, + [52] = { 12.2, 55.8, 85, 300 }, + [53] = { 20.4, 86.9, 139, 300 }, + [54] = { 20.3, 86.9, 139, 300 }, + [55] = { 20.5, 86.8, 139, 300 }, + [56] = { 22.6, 85.4, 139, 300 }, + [57] = { 22.1, 83.3, 139, 300 }, + [58] = { 16.5, 13.7, 139, 300 }, + [59] = { 43.1, 97.7, 148, 300 }, + [60] = { 49.9, 66.5, 267, 300 }, + [61] = { 49.9, 64.7, 267, 300 }, + [62] = { 42.5, 53.4, 267, 300 }, + [63] = { 66.8, 47.1, 267, 300 }, + [64] = { 27.4, 15.7, 331, 300 }, + [65] = { 24.6, 25.3, 408, 300 }, + [66] = { 61.1, 44.7, 409, 300 }, + [67] = { 60.6, 44.7, 409, 300 }, + [68] = { 61.6, 44.5, 409, 300 }, + [69] = { 61.5, 44.4, 409, 300 }, + [70] = { 60.7, 44.1, 409, 300 }, + [71] = { 61.2, 44, 409, 300 }, + [72] = { 61.6, 43.9, 409, 300 }, + [73] = { 59.1, 43.8, 409, 300 }, + [74] = { 60.2, 43.7, 409, 300 }, + [75] = { 60.4, 43.7, 409, 300 }, + [76] = { 60.5, 43.7, 409, 300 }, + [77] = { 60.3, 43.6, 409, 300 }, + [78] = { 59.3, 43.6, 409, 300 }, + [79] = { 60.7, 43.5, 409, 300 }, + [80] = { 61.2, 43.5, 409, 300 }, + [81] = { 60.4, 39.8, 409, 300 }, + [82] = { 60.1, 39.5, 409, 300 }, + [83] = { 94.8, 17.5, 721, 300 }, + [84] = { 67.1, 8.2, 721, 300 }, + [85] = { 63.3, 51.8, 1497, 300 }, + [86] = { 63.3, 51.7, 1497, 300 }, + [87] = { 63.3, 51.6, 1497, 300 }, + [88] = { 63.4, 51.5, 1497, 300 }, + [89] = { 63.4, 51.4, 1497, 300 }, + [90] = { 63.4, 51.3, 1497, 300 }, + [91] = { 70.4, 38.8, 1497, 300 }, + [92] = { 70.2, 38, 1497, 300 }, + [93] = { 70.3, 37.9, 1497, 300 }, + [94] = { 56.6, 36.5, 1497, 300 }, + [95] = { 61.7, 32.5, 1497, 300 }, + [96] = { 37.6, 73.4, 1519, 300 }, + [97] = { 23.6, 37.3, 1519, 300 }, + [98] = { 23.7, 37.3, 1519, 300 }, + [99] = { 21.7, 37.1, 1519, 300 }, + [100] = { 21.7, 37, 1519, 300 }, + [101] = { 23.3, 36.1, 1519, 300 }, + [102] = { 30.4, 14.1, 1519, 300 }, + [103] = { 61.5, 60.5, 4012, 300 }, + [104] = { 62.8, 33.9, 4012, 300 }, + [105] = { 63.5, 33.9, 4012, 300 }, + [106] = { 52.1, 77.2, 5087, 300 }, + [107] = { 96.7, 15.6, 5179, 300 }, + [108] = { 96.8, 15.6, 5179, 300 }, + [109] = { 83.6, 79.8, 5208, 300 }, + [110] = { 83.9, 79.3, 5208, 300 }, + [111] = { 82, 70.5, 5208, 300 }, + [112] = { 82.5, 70.3, 5208, 300 }, + [113] = { 81.5, 69.1, 5208, 300 }, + [114] = { 59, 73, 5225, 300 }, + [115] = { 38.5, 62.2, 5561, 300 }, + [116] = { 52.6, 43.8, 5561, 300 }, + [117] = { 37, 19.3, 5561, 300 }, + [118] = { 29.2, 97.4, 5581, 300 }, + [119] = { 28.2, 97.3, 5581, 300 }, + [120] = { 28.1, 97.2, 5581, 300 }, + [121] = { 29, 96.8, 5581, 300 }, + [122] = { 93.8, 91.3, 5581, 300 }, + [123] = { 32.8, 85, 5581, 300 }, + [124] = { 42.8, 67.9, 5581, 300 }, + [125] = { 50.2, 67.3, 5581, 300 }, + [126] = { 6, 26.8, 5602, 300 }, + }, + }, + [2003231] = { + ["coords"] = { + [1] = { 25.3, 30.3, 1, 300 }, + [2] = { 57.1, 99.1, 14, 300 }, + [3] = { 57.1, 98.9, 14, 300 }, + [4] = { 74.6, 51.6, 17, 300 }, + [5] = { 74.4, 51.5, 17, 300 }, + [6] = { 74.5, 51.4, 17, 300 }, + [7] = { 75, 48.8, 17, 300 }, + [8] = { 75, 48.7, 17, 300 }, + [9] = { 37.1, 33.5, 17, 300 }, + [10] = { 43.3, 80, 33, 300 }, + [11] = { 43.3, 79.2, 33, 300 }, + [12] = { 78.9, 56.3, 85, 300 }, + [13] = { 62.1, 11.1, 215, 300 }, + [14] = { 25.6, 81.9, 440, 300 }, + [15] = { 31.8, 35.6, 440, 300 }, + [16] = { 79.6, 62.7, 490, 300 }, + [17] = { 82.4, 16.9, 721, 300 }, + [18] = { 24.5, 37.5, 1519, 300 }, + [19] = { 23.3, 37, 1519, 300 }, + [20] = { 24.1, 36.5, 1519, 300 }, + [21] = { 22.8, 36.1, 1519, 300 }, + [22] = { 51, 34.5, 5121, 300 }, + [23] = { 29.6, 97.5, 5581, 300 }, + [24] = { 29, 97.3, 5581, 300 }, + [25] = { 29.4, 97, 5581, 300 }, + [26] = { 28.7, 96.7, 5581, 300 }, + }, + }, + [2003232] = { + ["coords"] = { + [1] = { 49, 49.3, 8, 300 }, + [2] = { 32.1, 48, 10, 300 }, + [3] = { 49.5, 60.5, 11, 300 }, + [4] = { 44.6, 15.1, 14, 300 }, + [5] = { 46.1, 46.2, 15, 300 }, + [6] = { 74.8, 51.4, 17, 300 }, + [7] = { 64.7, 34.2, 17, 300 }, + [8] = { 61.5, 24.6, 17, 300 }, + [9] = { 44, 98.6, 28, 300 }, + [10] = { 39.9, 84.6, 33, 0 }, + [11] = { 43.2, 80.5, 33, 300 }, + [12] = { 43.4, 79.9, 33, 300 }, + [13] = { 80.7, 51.4, 36, 300 }, + [14] = { 35, 10, 45, 300 }, + [15] = { 17.7, 67.1, 46, 300 }, + [16] = { 18.3, 65.9, 46, 300 }, + [17] = { 17.9, 64.8, 46, 300 }, + [18] = { 14.3, 71.7, 47, 300 }, + [19] = { 21.9, 67.7, 85, 300 }, + [20] = { 4.3, 62.1, 85, 300 }, + [21] = { 12.3, 56, 85, 300 }, + [22] = { 23.2, 50, 85, 300 }, + [23] = { 17.4, 49.7, 85, 300 }, + [24] = { 17.2, 49.1, 85, 300 }, + [25] = { 42.1, 10.5, 130, 300 }, + [26] = { 42.2, 10.3, 130, 300 }, + [27] = { 43, 97.7, 148, 300 }, + [28] = { 49.9, 66.2, 267, 300 }, + [29] = { 49.9, 62.4, 267, 300 }, + [30] = { 49.5, 62.2, 267, 300 }, + [31] = { 42.2, 51.8, 267, 300 }, + [32] = { 21.1, 48.6, 267, 300 }, + [33] = { 27.3, 15.7, 331, 300 }, + [34] = { 60.9, 44.1, 409, 300 }, + [35] = { 30.9, 36.9, 440, 300 }, + [36] = { 77.9, 65.1, 490, 300 }, + [37] = { 56.3, 44.7, 618, 300 }, + [38] = { 50.2, 29.9, 618, 300 }, + [39] = { 51.2, 29.8, 618, 300 }, + [40] = { 21.7, 36.8, 1519, 300 }, + [41] = { 22.1, 36.7, 1519, 300 }, + [42] = { 28.9, 11.1, 1519, 300 }, + [43] = { 63.4, 34, 4012, 300 }, + [44] = { 96.5, 14.2, 5179, 300 }, + [45] = { 78.1, 11.4, 5179, 300 }, + [46] = { 76.4, 85.7, 5208, 300 }, + [47] = { 28.1, 97.1, 5581, 300 }, + [48] = { 28.3, 97.1, 5581, 300 }, + [49] = { 93.9, 93.3, 5581, 300 }, + [50] = { 94.4, 92.3, 5581, 300 }, + [51] = { 94.1, 91.3, 5581, 300 }, + [52] = { 32, 83.4, 5581, 300 }, + [53] = { 42.9, 69, 5581, 300 }, + [54] = { 42.9, 68.9, 5581, 300 }, + [55] = { 6.8, 25.5, 5602, 300 }, + }, + }, + [2003233] = { + ["coords"] = { + [1] = { 74.8, 51.5, 17, 300 }, + [2] = { 74.6, 51.5, 17, 300 }, + [3] = { 39.5, 85.6, 33, 0 }, + [4] = { 43.4, 80.2, 33, 300 }, + [5] = { 43.2, 79.8, 33, 300 }, + [6] = { 49, 8.7, 33, 300 }, + [7] = { 42, 74.7, 40, 300 }, + [8] = { 18.2, 66, 46, 300 }, + [9] = { 16.6, 53.6, 85, 300 }, + [10] = { 17.2, 49.4, 85, 300 }, + [11] = { 21.2, 48.9, 267, 300 }, + [12] = { 18.6, 16.1, 408, 300 }, + [13] = { 37, 94.7, 409, 300 }, + [14] = { 53.5, 51.1, 409, 300 }, + [15] = { 31.2, 36.4, 440, 300 }, + [16] = { 31.3, 36.4, 440, 300 }, + [17] = { 78.6, 64.1, 490, 300 }, + [18] = { 78.7, 64.1, 490, 300 }, + [19] = { 49.2, 30.5, 618, 300 }, + [20] = { 23.3, 37.3, 1519, 300 }, + [21] = { 22, 36.7, 1519, 300 }, + [22] = { 22.4, 36.4, 1519, 300 }, + [23] = { 54.6, 29.5, 1581, 300 }, + [24] = { 62.9, 33.7, 4012, 300 }, + [25] = { 62.9, 33.5, 4012, 300 }, + [26] = { 78.1, 11.6, 5179, 300 }, + [27] = { 29, 97.4, 5581, 300 }, + [28] = { 28.3, 97.1, 5581, 300 }, + [29] = { 28.5, 96.9, 5581, 300 }, + [30] = { 94.3, 92.4, 5581, 300 }, + }, + }, + [2003234] = { + ["coords"] = { + [1] = { 21.9, 36.2, 1519, 300 }, + [2] = { 28.3, 96.8, 5581, 300 }, + }, + }, + [2003235] = { + ["coords"] = { + [1] = { 74.5, 51.4, 17, 300 }, + [2] = { 74.8, 51.4, 17, 300 }, + [3] = { 21.6, 37.3, 1519, 300 }, + [4] = { 28.1, 97.4, 5581, 300 }, + }, + }, + [2003236] = { + ["coords"] = {}, + }, + [2003237] = { + ["coords"] = { + [1] = { 33.4, 49.5, 10, 300 }, + [2] = { 22.3, 36.5, 1519, 300 }, + [3] = { 28.4, 97, 5581, 300 }, + }, + }, + [2003238] = { + ["coords"] = {}, + }, + [2003239] = { + ["coords"] = {}, + }, + [2003240] = { + ["coords"] = { + [1] = { 48.8, 45.7, 8, 300 }, + [2] = { 48.9, 45.6, 8, 300 }, + [3] = { 48.8, 45.5, 8, 300 }, + [4] = { 48.9, 45.5, 8, 300 }, + }, + }, + [2003241] = { + ["coords"] = { + [1] = { 66.3, 47.1, 267, 300 }, + }, + }, + [2003242] = { + ["coords"] = {}, + }, + [2003243] = { + ["coords"] = {}, + }, + [2003244] = { + ["coords"] = {}, + }, + [2003245] = { + ["coords"] = {}, + }, + [2003246] = { + ["coords"] = {}, + }, + [2003247] = { + ["coords"] = {}, + }, + [2003248] = { + ["coords"] = {}, + }, + [2003249] = { + ["coords"] = { + [1] = { 43.3, 80.7, 33, 300 }, + [2] = { 42.1, 10.1, 130, 300 }, + [3] = { 60.4, 23.6, 361, 300 }, + [4] = { 37.9, 61.3, 1519, 300 }, + }, + }, + [2003250] = { + ["coords"] = { + [1] = { 4.7, 61.8, 85, 300 }, + [2] = { 42, 10.3, 130, 300 }, + [3] = { 60.9, 43.8, 409, 300 }, + [4] = { 61.1, 43.6, 409, 300 }, + [5] = { 60.9, 64.3, 1519, 300 }, + [6] = { 60.3, 56.5, 1519, 300 }, + [7] = { 60.2, 56.3, 1519, 300 }, + [8] = { 59.9, 55.9, 1519, 300 }, + }, + }, + [2003251] = { + ["coords"] = { + [1] = { 81.2, 60.9, 28, 300 }, + [2] = { 80.7, 60.8, 28, 300 }, + [3] = { 81.2, 60.8, 28, 300 }, + [4] = { 80.7, 60.7, 28, 300 }, + [5] = { 81.1, 60.5, 28, 300 }, + [6] = { 81, 60.4, 28, 300 }, + [7] = { 81.1, 60.4, 28, 300 }, + [8] = { 27.7, 77.1, 33, 300 }, + [9] = { 4.7, 61.4, 85, 300 }, + [10] = { 23, 84.4, 139, 300 }, + [11] = { 22.4, 84.3, 139, 300 }, + [12] = { 23, 84.3, 139, 300 }, + [13] = { 22.4, 84.2, 139, 300 }, + [14] = { 22.9, 84, 139, 300 }, + [15] = { 22.8, 83.9, 139, 300 }, + [16] = { 60.7, 23.9, 361, 300 }, + [17] = { 60.6, 23.8, 361, 300 }, + [18] = { 51.4, 34.4, 5121, 300 }, + [19] = { 45.7, 45.6, 5130, 300 }, + [20] = { 49.5, 55.7, 5581, 300 }, + [21] = { 49.5, 55.6, 5581, 300 }, + [22] = { 49.4, 55.5, 5581, 300 }, + }, + }, + [2003252] = { + ["coords"] = { + [1] = { 81.2, 72.1, 10, 300 }, + [2] = { 80.9, 71.1, 10, 300 }, + [3] = { 29.6, 44.8, 28, 300 }, + [4] = { 29.6, 44.6, 28, 300 }, + [5] = { 53.6, 98.8, 36, 300 }, + [6] = { 53.7, 98.7, 36, 300 }, + [7] = { 51.3, 67.4, 85, 300 }, + [8] = { 30.9, 66.5, 85, 300 }, + [9] = { 12.8, 64.6, 85, 300 }, + [10] = { 86.1, 58.3, 85, 300 }, + [11] = { 86.1, 58.1, 85, 300 }, + [12] = { 55.7, 34.8, 267, 300 }, + [13] = { 55.8, 34.8, 267, 300 }, + }, + }, + [2003253] = { + ["coords"] = { + [1] = { 81.4, 71.5, 10, 300 }, + [2] = { 81, 71.2, 10, 300 }, + [3] = { 53.5, 98.9, 36, 300 }, + [4] = { 51.3, 67.5, 85, 300 }, + [5] = { 55.7, 35, 267, 300 }, + }, + }, + [2003254] = { + ["coords"] = {}, + }, + [2003255] = { + ["coords"] = {}, + }, + [2003256] = { + ["coords"] = { + [1] = { 60.1, 34.1, 1497, 300 }, + }, + }, + [2003257] = { + ["coords"] = { + [1] = { 33.7, 17.6, 28, 300 }, + [2] = { 4.6, 61.1, 85, 300 }, + [3] = { 90, 32.4, 85, 300 }, + [4] = { 74.7, 42.5, 357, 300 }, + [5] = { 31.5, 36.5, 440, 300 }, + [6] = { 67.6, 26.6, 440, 300 }, + [7] = { 79.1, 64.3, 490, 300 }, + [8] = { 41.2, 66.9, 1519, 300 }, + [9] = { 61.2, 65.1, 1519, 300 }, + [10] = { 21.9, 36.3, 1519, 300 }, + [11] = { 62.8, 84.3, 5121, 300 }, + [12] = { 84.4, 78.3, 5208, 300 }, + [13] = { 28.3, 96.8, 5581, 300 }, + }, + }, + [2003258] = { + ["coords"] = { + [1] = { 58.8, 27.4, 14, 300 }, + [2] = { 31.6, 48.4, 33, 300 }, + [3] = { 21.3, 68.4, 85, 300 }, + [4] = { 4.6, 61.1, 85, 300 }, + [5] = { 74.7, 42.5, 357, 300 }, + [6] = { 61.5, 43.7, 409, 300 }, + [7] = { 67.6, 26.8, 440, 300 }, + [8] = { 67.5, 26.4, 440, 300 }, + [9] = { 62.7, 84.5, 5121, 300 }, + }, + }, + [2003259] = { + ["coords"] = { + [1] = { 24.2, 31.8, 1, 300 }, + [2] = { 33.7, 17.6, 28, 300 }, + [3] = { 31.6, 48.4, 33, 300 }, + [4] = { 4.6, 61.1, 85, 300 }, + [5] = { 90, 32.3, 85, 300 }, + [6] = { 74.7, 42.5, 357, 300 }, + [7] = { 67.6, 26.8, 440, 300 }, + [8] = { 73, 30.4, 721, 300 }, + [9] = { 61.9, 58.4, 1497, 300 }, + }, + }, + [2003260] = { + ["coords"] = { + [1] = { 31.7, 48.3, 33, 300 }, + }, + }, + [2003261] = { + ["coords"] = { + [1] = { 31.7, 48.4, 33, 300 }, + [2] = { 59.4, 61.2, 2040, 300 }, + [3] = { 66, 31.1, 5225, 300 }, + }, + }, + [2003262] = { + ["coords"] = {}, + }, + [2003263] = { + ["coords"] = { + [1] = { 30.1, 14.6, 1519, 300 }, + [2] = { 62.7, 84.5, 5121, 300 }, + [3] = { 32.6, 85.2, 5581, 300 }, + }, + }, + [2003264] = { + ["coords"] = { + [1] = { 58.6, 27.2, 14, 300 }, + [2] = { 44.3, 98, 28, 300 }, + [3] = { 81.2, 50.5, 36, 300 }, + [4] = { 67.5, 83.6, 130, 300 }, + [5] = { 14.1, 50.4, 267, 300 }, + [6] = { 61.5, 43.5, 409, 300 }, + [7] = { 30.1, 14.6, 1519, 300 }, + [8] = { 72, 13, 5179, 300 }, + [9] = { 32.6, 85.2, 5581, 300 }, + }, + }, + [2003265] = { + ["coords"] = { + [1] = { 62.7, 84.3, 5121, 300 }, + }, + }, + [2003266] = { + ["coords"] = { + [1] = { 31.7, 48.5, 33, 300 }, + [2] = { 61.8, 56.7, 1497, 300 }, + [3] = { 84.5, 78.3, 5208, 300 }, + }, + }, + [2003267] = { + ["coords"] = { + [1] = { 61.7, 56.8, 1497, 300 }, + }, + }, + [2003268] = { + ["coords"] = { + [1] = { 61.3, 57.2, 1497, 300 }, + }, + }, + [2003269] = { + ["coords"] = {}, + }, + [2003270] = { + ["coords"] = {}, + }, + [2003271] = { + ["coords"] = { + [1] = { 31.7, 48.5, 33, 300 }, + }, + }, + [2003272] = { + ["coords"] = { + [1] = { 48.8, 60.4, 11, 300 }, + [2] = { 61.9, 58.3, 1497, 300 }, + [3] = { 6.2, 25.4, 5602, 300 }, + }, + }, + [2003273] = { + ["coords"] = { + [1] = { 44.5, 98.1, 28, 300 }, + [2] = { 81.4, 50.6, 36, 300 }, + }, + }, + [2003274] = { + ["coords"] = {}, + }, + [2003275] = { + ["coords"] = { + [1] = { 61.3, 57.2, 1497, 300 }, + }, + }, + [2003276] = { + ["coords"] = {}, + }, + [2003277] = { + ["coords"] = {}, + }, + [2003278] = { + ["coords"] = { + [1] = { 41.8, 73.2, 15, 25 }, + [2] = { 30.4, 72.2, 85, 300 }, + }, + }, + [2003279] = { + ["coords"] = {}, + }, + [2003280] = { + ["coords"] = {}, + }, + [2003281] = { + ["coords"] = {}, + }, + [2003282] = { + ["coords"] = {}, + }, + [2003283] = { + ["coords"] = {}, + }, + [2003284] = { + ["coords"] = { + [1] = { 43.2, 79.2, 33, 300 }, + [2] = { 43.3, 79.2, 33, 300 }, + [3] = { 43.2, 79.1, 33, 300 }, + [4] = { 43.3, 79.1, 33, 300 }, + [5] = { 37.1, 51.6, 406, 300 }, + [6] = { 40, 44.1, 5208, 300 }, + [7] = { 40, 44, 5208, 300 }, + }, + }, + [2003285] = { + ["coords"] = { + [1] = { 41.7, 74.2, 15, 25 }, + [2] = { 61.3, 24.2, 17, 300 }, + [3] = { 35.2, 10.4, 45, 300 }, + [4] = { 14.5, 72.1, 47, 300 }, + [5] = { 4.4, 61.7, 85, 300 }, + [6] = { 43.6, 17.3, 357, 25 }, + [7] = { 43.4, 17.1, 357, 25 }, + [8] = { 82.4, 55.4, 400, 25 }, + [9] = { 60.9, 44.7, 409, 300 }, + [10] = { 73.6, 33.1, 1497, 300 }, + [11] = { 73.3, 32.6, 1497, 300 }, + [12] = { 61, 64.3, 1519, 300 }, + [13] = { 60.3, 56.5, 1519, 300 }, + [14] = { 60.2, 56.4, 1519, 300 }, + [15] = { 63.6, 46.9, 1519, 25 }, + [16] = { 67.5, 46.7, 1519, 25 }, + [17] = { 64.4, 46.7, 1519, 25 }, + [18] = { 67.2, 28.1, 1519, 300 }, + [19] = { 66.8, 27.3, 1519, 300 }, + [20] = { 41.8, 69.1, 2040, 25 }, + [21] = { 41.8, 69, 2040, 25 }, + [22] = { 41.8, 68.8, 2040, 25 }, + [23] = { 27.5, 68.1, 2040, 25 }, + [24] = { 27.4, 67.8, 2040, 25 }, + [25] = { 57.7, 34.9, 5225, 25 }, + [26] = { 57.7, 34.8, 5225, 25 }, + [27] = { 50.9, 34.5, 5225, 25 }, + [28] = { 50.8, 34.3, 5225, 25 }, + [29] = { 36.6, 19, 5561, 300 }, + [30] = { 52.6, 92.4, 5581, 300 }, + [31] = { 52.3, 92, 5581, 300 }, + }, + }, + [2003286] = { + ["coords"] = { + [1] = { 61.6, 59.3, 1497, 300 }, + [2] = { 61.8, 58.8, 1497, 300 }, + }, + }, + [2003287] = { + ["coords"] = {}, + }, + [2003288] = { + ["coords"] = {}, + }, + [2003289] = { + ["coords"] = { + [1] = { 55.7, 57.8, 141, 300 }, + [2] = { 94.5, 22.6, 331, 300 }, + [3] = { 94.5, 22.5, 331, 300 }, + [4] = { 43.7, 15.9, 357, 25 }, + [5] = { 27.1, 26.8, 1519, 300 }, + [6] = { 39.5, 77.7, 5121, 300 }, + [7] = { 31, 91.7, 5581, 300 }, + }, + }, + [2003290] = { + ["coords"] = { + [1] = { 34, 48.9, 10, 300 }, + [2] = { 61.1, 24.7, 17, 300 }, + [3] = { 80.6, 60.5, 28, 300 }, + [4] = { 90.1, 22.8, 46, 300 }, + [5] = { 22.4, 83.9, 139, 300 }, + [6] = { 51.7, 52.3, 409, 300 }, + [7] = { 38.9, 60.5, 1519, 300 }, + }, + }, + [2003291] = { + ["coords"] = { + [1] = { 34, 48.9, 10, 300 }, + [2] = { 77, 55.9, 15, 300 }, + [3] = { 29.9, 71, 16, 300 }, + [4] = { 36.2, 44.1, 17, 300 }, + [5] = { 63.5, 10.1, 33, 300 }, + [6] = { 63.5, 10, 33, 300 }, + [7] = { 60, 77.2, 38, 300 }, + [8] = { 90.1, 22.8, 46, 300 }, + [9] = { 77.8, 81.9, 47, 300 }, + [10] = { 60.3, 32, 215, 300 }, + [11] = { 72.2, 57.4, 331, 300 }, + [12] = { 73.2, 56.7, 331, 300 }, + [13] = { 25.8, 11.1, 406, 300 }, + [14] = { 49.5, 30.2, 618, 300 }, + [15] = { 38.9, 60.6, 1519, 300 }, + [16] = { 29.3, 83.8, 5602, 300 }, + }, + }, + [2003292] = { + ["coords"] = { + [1] = { 42.5, 52.8, 267, 300 }, + [2] = { 96.7, 15, 5179, 300 }, + }, + }, + [2003293] = { + ["coords"] = { + [1] = { 4.6, 61.4, 85, 300 }, + [2] = { 23.8, 67.9, 405, 300 }, + [3] = { 5.3, 88.5, 2100, 300 }, + }, + }, + [2003294] = { + ["coords"] = { + [1] = { 45.1, 56.1, 8, 300 }, + [2] = { 33.6, 49, 10, 300 }, + [3] = { 33.1, 48.7, 10, 300 }, + [4] = { 49, 60.8, 11, 300 }, + [5] = { 55.4, 97.4, 14, 300 }, + [6] = { 37.5, 71.7, 14, 300 }, + [7] = { 44.9, 14.7, 14, 300 }, + [8] = { 77, 55.9, 15, 300 }, + [9] = { 74.2, 47.9, 17, 300 }, + [10] = { 64.8, 34.5, 17, 300 }, + [11] = { 61.5, 23.7, 17, 300 }, + [12] = { 54.1, 1, 17, 300 }, + [13] = { 44, 98.3, 28, 300 }, + [14] = { 33.9, 17.7, 28, 300 }, + [15] = { 37.6, 66.6, 33, 300 }, + [16] = { 63.5, 10, 33, 300 }, + [17] = { 80.7, 51, 36, 300 }, + [18] = { 17.7, 66.2, 46, 300 }, + [19] = { 90.1, 22.4, 46, 300 }, + [20] = { 77.9, 81.8, 47, 300 }, + [21] = { 4.4, 61.8, 85, 300 }, + [22] = { 12.2, 56.1, 85, 300 }, + [23] = { 90.1, 32.5, 85, 300 }, + [24] = { 67.3, 83.1, 130, 300 }, + [25] = { 67.8, 83.1, 130, 300 }, + [26] = { 42.1, 53, 267, 300 }, + [27] = { 42.5, 52.8, 267, 300 }, + [28] = { 13.9, 49.7, 267, 300 }, + [29] = { 14.5, 49.7, 267, 300 }, + [30] = { 79, 81.3, 331, 300 }, + [31] = { 74.1, 60.7, 331, 300 }, + [32] = { 73.2, 56.7, 331, 300 }, + [33] = { 47.7, 53.5, 331, 300 }, + [34] = { 23.9, 67.9, 405, 300 }, + [35] = { 23.8, 67.9, 405, 300 }, + [36] = { 37, 51.5, 406, 300 }, + [37] = { 25.9, 11.1, 406, 300 }, + [38] = { 60.7, 44.6, 409, 300 }, + [39] = { 61.1, 44.3, 409, 300 }, + [40] = { 49.4, 30.7, 618, 300 }, + [41] = { 53.6, 51.7, 876, 300 }, + [42] = { 30, 14, 1519, 300 }, + [43] = { 5.8, 88.9, 2100, 300 }, + [44] = { 5.3, 88.5, 2100, 300 }, + [45] = { 96.4, 15.2, 5179, 300 }, + [46] = { 96.8, 15.1, 5179, 300 }, + [47] = { 71.8, 12.4, 5179, 300 }, + [48] = { 72.3, 12.3, 5179, 300 }, + [49] = { 93.9, 92.6, 5581, 300 }, + [50] = { 32.6, 84.9, 5581, 300 }, + [51] = { 6.4, 25.6, 5602, 300 }, + }, + }, + [2003295] = { + ["coords"] = { + [1] = { 49, 60.8, 11, 300 }, + [2] = { 83.3, 65.1, 38, 25 }, + [3] = { 41.2, 77.6, 5602, 25 }, + [4] = { 6.4, 25.7, 5602, 300 }, + }, + }, + [2003296] = { + ["coords"] = {}, + }, + [2003297] = { + ["coords"] = {}, + }, + [2003298] = { + ["coords"] = { + [1] = { 49, 60.7, 11, 300 }, + [2] = { 6.4, 25.6, 5602, 300 }, + }, + }, + [2003299] = { + ["coords"] = {}, + }, + [2003300] = { + ["coords"] = {}, + }, + [2003301] = { + ["coords"] = { + [1] = { 49, 60.7, 11, 300 }, + [2] = { 6.4, 25.6, 5602, 300 }, + }, + }, + [2003302] = { + ["coords"] = {}, + }, + [2003303] = { + ["coords"] = { + [1] = { 39.1, 10.4, 490, 300 }, + }, + }, + [2003304] = { + ["coords"] = { + [1] = { 33.6, 49, 10, 300 }, + [2] = { 49, 60.8, 11, 300 }, + [3] = { 37.5, 71.6, 14, 300 }, + [4] = { 64.8, 34.5, 17, 300 }, + [5] = { 61.5, 23.7, 17, 300 }, + [6] = { 37.5, 66.6, 33, 300 }, + [7] = { 78.5, 76.4, 38, 25 }, + [8] = { 4.6, 61.7, 85, 300 }, + [9] = { 17.4, 49.4, 85, 300 }, + [10] = { 42.6, 52.8, 267, 300 }, + [11] = { 43.6, 16.9, 357, 25 }, + [12] = { 37, 51.4, 406, 300 }, + [13] = { 61.6, 44.5, 409, 300 }, + [14] = { 49.3, 30.7, 618, 300 }, + [15] = { 40.8, 69.5, 2040, 25 }, + [16] = { 40.8, 68.9, 2040, 25 }, + [17] = { 96.8, 15, 5179, 300 }, + [18] = { 57.2, 35.1, 5225, 25 }, + [19] = { 57.2, 34.8, 5225, 25 }, + [20] = { 38.7, 83.4, 5602, 25 }, + [21] = { 6.4, 25.7, 5602, 300 }, + }, + }, + [2003305] = { + ["coords"] = { + [1] = { 45.3, 14.7, 14, 300 }, + [2] = { 77, 56.2, 15, 300 }, + [3] = { 30, 71.4, 16, 300 }, + [4] = { 44.3, 98.6, 28, 300 }, + [5] = { 37.4, 66.4, 33, 300 }, + [6] = { 81.1, 51.5, 36, 300 }, + [7] = { 59.7, 77.1, 38, 300 }, + [8] = { 17.4, 66.4, 46, 300 }, + [9] = { 67.8, 83.2, 130, 300 }, + [10] = { 14.5, 49.8, 267, 300 }, + [11] = { 49.4, 30.7, 618, 300 }, + [12] = { 72.3, 12.4, 5179, 300 }, + [13] = { 93.7, 92.7, 5581, 300 }, + [14] = { 29.1, 83.8, 5602, 300 }, + }, + }, + [2003306] = { + ["coords"] = {}, + }, + [2003307] = { + ["coords"] = { + [1] = { 53.6, 37.2, 5130, 300 }, + }, + }, + [2003308] = { + ["coords"] = { + [1] = { 77, 55.8, 15, 300 }, + [2] = { 80, 63.3, 28, 300 }, + [3] = { 67.4, 83.1, 130, 300 }, + [4] = { 21.7, 87.1, 139, 300 }, + [5] = { 13.9, 49.7, 267, 300 }, + [6] = { 31.1, 38.1, 440, 300 }, + [7] = { 78.3, 67.3, 490, 300 }, + [8] = { 49.3, 30.7, 618, 300 }, + [9] = { 41, 68.2, 2040, 25 }, + [10] = { 71.8, 12.3, 5179, 300 }, + [11] = { 57.3, 34.5, 5225, 25 }, + }, + }, + [2003309] = { + ["coords"] = { + [1] = { 44.7, 56.8, 8, 300 }, + [2] = { 49, 60.8, 11, 300 }, + [3] = { 37.5, 71.7, 14, 300 }, + [4] = { 77, 55.9, 15, 300 }, + [5] = { 64.8, 34.5, 17, 300 }, + [6] = { 61.5, 23.7, 17, 300 }, + [7] = { 44, 98.3, 28, 300 }, + [8] = { 33.9, 17.8, 28, 300 }, + [9] = { 37.5, 66.6, 33, 300 }, + [10] = { 80.7, 50.9, 36, 300 }, + [11] = { 60, 77.3, 38, 300 }, + [12] = { 83.3, 65.2, 38, 25 }, + [13] = { 34.8, 10.2, 45, 300 }, + [14] = { 14.1, 71.9, 47, 300 }, + [15] = { 90.1, 32.5, 85, 300 }, + [16] = { 42.5, 52.8, 267, 300 }, + [17] = { 73.2, 56.8, 331, 300 }, + [18] = { 43.4, 17.5, 357, 25 }, + [19] = { 23.8, 67.9, 405, 300 }, + [20] = { 37.1, 51.5, 406, 300 }, + [21] = { 25.9, 11.1, 406, 300 }, + [22] = { 37.6, 12.9, 490, 300 }, + [23] = { 38.8, 10.5, 490, 300 }, + [24] = { 49.3, 30.7, 618, 300 }, + [25] = { 39, 60.7, 1519, 300 }, + [26] = { 41.1, 51, 1537, 300 }, + [27] = { 5.5, 88.7, 2100, 300 }, + [28] = { 96.7, 15, 5179, 300 }, + [29] = { 29.3, 83.8, 5602, 300 }, + [30] = { 41.2, 77.7, 5602, 25 }, + [31] = { 6.4, 25.7, 5602, 300 }, + }, + }, + [2003310] = { + ["coords"] = { + [1] = { 60.8, 53.5, 85, 300 }, + [2] = { 81, 74.8, 331, 300 }, + }, + }, + [2003311] = { + ["coords"] = { + [1] = { 60.6, 38.3, 876, 300 }, + [2] = { 60.2, 0.5, 2366, 300 }, + [3] = { 26.8, 30.4, 5204, 300 }, + [4] = { 25.3, 28.9, 5204, 300 }, + [5] = { 28.7, 28.2, 5204, 300 }, + [6] = { 27.5, 25.8, 5204, 300 }, + [7] = { 30.9, 25.4, 5204, 300 }, + [8] = { 28.9, 25.1, 5204, 300 }, + [9] = { 29.8, 21.4, 5204, 300 }, + [10] = { 34.1, 19.5, 5204, 300 }, + }, + }, + [2003312] = { + ["coords"] = { + [1] = { 60.7, 69.4, 85, 300 }, + [2] = { 60.4, 69.3, 85, 300 }, + [3] = { 60.9, 69.2, 85, 300 }, + [4] = { 61, 68.9, 85, 300 }, + [5] = { 61, 68, 85, 300 }, + [6] = { 62.7, 66.9, 85, 300 }, + [7] = { 62.7, 66.5, 85, 300 }, + [8] = { 61, 66.4, 85, 300 }, + [9] = { 61.2, 66.3, 85, 300 }, + [10] = { 72.7, 20.4, 1497, 300 }, + [11] = { 71.3, 20.3, 1497, 300 }, + [12] = { 60.9, 20.3, 1497, 300 }, + [13] = { 59.5, 20.2, 1497, 300 }, + [14] = { 67.7, 19.9, 1497, 300 }, + [15] = { 65.4, 19.9, 1497, 300 }, + [16] = { 64.6, 19.8, 1497, 300 }, + [17] = { 61.9, 19.7, 1497, 300 }, + [18] = { 69.9, 18.3, 1497, 300 }, + [19] = { 62.3, 18.2, 1497, 300 }, + [20] = { 66.8, 18, 1497, 300 }, + [21] = { 65.5, 17.9, 1497, 300 }, + [22] = { 67.7, 17.5, 1497, 300 }, + [23] = { 70, 16.2, 1497, 300 }, + [24] = { 62.3, 13.9, 1497, 300 }, + [25] = { 70, 8.8, 1497, 300 }, + [26] = { 70, 6.7, 1497, 300 }, + [27] = { 62.3, 6.6, 1497, 300 }, + [28] = { 63.3, 6, 1497, 300 }, + }, + }, + [2003313] = { + ["coords"] = { + [1] = { 79.8, 61.2, 28, 300 }, + [2] = { 64.6, 13.7, 33, 300 }, + [3] = { 21.4, 84.7, 139, 300 }, + [4] = { 83.1, 55, 400, 25 }, + [5] = { 23.1, 12.2, 406, 25 }, + }, + }, + [2003314] = { + ["coords"] = { + [1] = { 31, 50.7, 331, 300 }, + [2] = { 23.1, 12.2, 406, 25 }, + [3] = { 57.2, 43.7, 409, 300 }, + }, + }, + [2003315] = { + ["coords"] = { + [1] = { 34.1, 48.4, 10, 300 }, + [2] = { 79.3, 61.4, 28, 300 }, + [3] = { 33.2, 48.5, 33, 300 }, + [4] = { 20.9, 84.9, 139, 300 }, + [5] = { 31, 50.8, 331, 300 }, + [6] = { 57.2, 43.7, 409, 300 }, + [7] = { 30.8, 38.3, 440, 300 }, + [8] = { 77.8, 67.6, 490, 300 }, + }, + }, + [2003316] = { + ["coords"] = { + [1] = { 81.1, 60.6, 28, 300 }, + [2] = { 33.1, 17.2, 28, 300 }, + [3] = { 17.2, 49.1, 85, 300 }, + [4] = { 89.4, 32, 85, 300 }, + [5] = { 22.9, 84.1, 139, 300 }, + [6] = { 31.1, 90.8, 405, 300 }, + }, + }, + [2003317] = { + ["coords"] = { + [1] = { 29, 73.5, 16, 300 }, + [2] = { 73.7, 49.5, 17, 300 }, + [3] = { 81.1, 60.7, 28, 300 }, + [4] = { 33.1, 17.7, 28, 300 }, + [5] = { 89.4, 32.5, 85, 300 }, + [6] = { 22.9, 84.2, 139, 300 }, + [7] = { 30.9, 50.6, 331, 300 }, + [8] = { 82.9, 54.7, 400, 300 }, + [9] = { 57.2, 43.7, 409, 300 }, + [10] = { 30.7, 38.3, 440, 300 }, + [11] = { 77.6, 67.7, 490, 300 }, + }, + }, + [2003318] = { + ["coords"] = { + [1] = { 39, 91.2, 12, 300 }, + [2] = { 30.4, 72.2, 85, 300 }, + [3] = { 30.3, 71.8, 85, 300 }, + [4] = { 29.9, 71.2, 85, 300 }, + [5] = { 75, 52.4, 1497, 300 }, + [6] = { 56.8, 15.8, 5087, 300 }, + [7] = { 57, 12, 5087, 300 }, + [8] = { 33, 76.2, 5179, 300 }, + [9] = { 83.7, 77.1, 5208, 300 }, + }, + }, + [2003319] = { + ["coords"] = { + [1] = { 39, 91.3, 12, 300 }, + [2] = { 39, 91.2, 12, 300 }, + [3] = { 30.3, 71.8, 85, 300 }, + [4] = { 57.2, 43.7, 409, 300 }, + [5] = { 74.3, 49, 1497, 300 }, + [6] = { 54.9, 15.9, 5087, 300 }, + [7] = { 55.2, 13.7, 5087, 300 }, + [8] = { 55.1, 11.1, 5087, 300 }, + [9] = { 33, 76.2, 5179, 300 }, + [10] = { 33.1, 76.2, 5179, 300 }, + }, + }, + [2003320] = { + ["coords"] = { + [1] = { 29, 73.5, 16, 300 }, + [2] = { 79.2, 61.1, 28, 300 }, + [3] = { 81.1, 60.6, 28, 300 }, + [4] = { 33.7, 17.4, 28, 300 }, + [5] = { 32.8, 17.3, 28, 300 }, + [6] = { 89.9, 32.2, 85, 300 }, + [7] = { 89.1, 32.1, 85, 300 }, + [8] = { 20.8, 84.7, 139, 300 }, + [9] = { 22.9, 84.1, 139, 300 }, + [10] = { 31.1, 90.8, 405, 300 }, + [11] = { 30.8, 38.4, 440, 300 }, + [12] = { 77.8, 67.8, 490, 300 }, + }, + }, + [2003321] = { + ["coords"] = { + [1] = { 79.7, 61.4, 28, 300 }, + [2] = { 21.3, 84.9, 139, 300 }, + [3] = { 60.5, 23.6, 361, 300 }, + [4] = { 57.2, 43.6, 409, 300 }, + [5] = { 59.5, 33.3, 618, 300 }, + }, + }, + [2003322] = { + ["coords"] = { + [1] = { 39, 91.3, 12, 300 }, + [2] = { 30.2, 71.8, 85, 300 }, + [3] = { 31.7, 85.6, 405, 300 }, + [4] = { 57.8, 6.8, 5087, 300 }, + [5] = { 42.6, 43.5, 5179, 300 }, + }, + }, + [2003323] = { + ["coords"] = { + [1] = { 77, 55.9, 15, 300 }, + [2] = { 60.2, 44.5, 409, 300 }, + [3] = { 60.2, 39.7, 409, 300 }, + }, + }, + [2003324] = { + ["coords"] = {}, + }, + [2003325] = { + ["coords"] = {}, + }, + [2003326] = { + ["coords"] = {}, + }, + [2003327] = { + ["coords"] = {}, + }, + [2003328] = { + ["coords"] = { + [1] = { 61.6, 43.9, 409, 300 }, + [2] = { 36.6, 18.7, 5561, 300 }, + }, + }, + [2003329] = { + ["coords"] = { + [1] = { 61.4, 44.4, 409, 300 }, + [2] = { 61.5, 44.3, 409, 300 }, + [3] = { 60.7, 44.2, 409, 300 }, + [4] = { 58.4, 41.1, 409, 300 }, + [5] = { 33.2, 60.3, 5581, 300 }, + }, + }, + [2003330] = { + ["coords"] = { + [1] = { 34.1, 10.9, 17, 300 }, + [2] = { 32.2, 91.1, 405, 300 }, + [3] = { 79.4, 63.9, 406, 300 }, + [4] = { 60.1, 43, 409, 300 }, + [5] = { 39.5, 77.8, 5121, 300 }, + [6] = { 62, 73.8, 5179, 300 }, + }, + }, + [2003331] = { + ["coords"] = {}, + }, + [2003332] = { + ["coords"] = { + [1] = { 20.7, 48.4, 267, 300 }, + [2] = { 55.2, 56.1, 405, 300 }, + [3] = { 77.7, 11.2, 5179, 300 }, + [4] = { 81.5, 68.9, 5208, 300 }, + [5] = { 82.4, 68.8, 5208, 300 }, + [6] = { 39.6, 44.2, 5208, 300 }, + }, + }, + [2003333] = { + ["coords"] = { + [1] = { 55.2, 56.1, 405, 300 }, + [2] = { 81.5, 68.8, 5208, 300 }, + [3] = { 39.6, 44.2, 5208, 300 }, + }, + }, + [2003334] = { + ["coords"] = { + [1] = { 21.2, 48.5, 267, 300 }, + [2] = { 78.1, 11.3, 5179, 300 }, + [3] = { 81.6, 68.9, 5208, 300 }, + }, + }, + [2003335] = { + ["coords"] = { + [1] = { 24.1, 31.4, 1, 300 }, + [2] = { 55.2, 56.1, 405, 300 }, + [3] = { 72.2, 27, 721, 300 }, + [4] = { 39.5, 44.2, 5208, 300 }, + [5] = { 39.6, 44.1, 5208, 300 }, + }, + }, + [2003336] = { + ["coords"] = { + [1] = { 24.1, 31.4, 1, 300 }, + [2] = { 25.5, 30.7, 1, 300 }, + [3] = { 25.5, 30.6, 1, 300 }, + [4] = { 42.4, 72.9, 15, 25 }, + [5] = { 61.2, 24.1, 17, 300 }, + [6] = { 37.1, 51.4, 406, 300 }, + [7] = { 72.2, 27.1, 721, 300 }, + [8] = { 83.9, 20.4, 721, 300 }, + [9] = { 84, 20, 721, 300 }, + [10] = { 22.1, 37.6, 1519, 300 }, + [11] = { 22.1, 37.5, 1519, 300 }, + [12] = { 51.3, 34.6, 5121, 300 }, + [13] = { 28.3, 97.5, 5581, 300 }, + }, + }, + [2003337] = { + ["coords"] = { + [1] = { 25.5, 30.7, 1, 300 }, + [2] = { 25.5, 30.6, 1, 300 }, + [3] = { 84, 20.4, 721, 300 }, + [4] = { 83.9, 20.3, 721, 300 }, + [5] = { 39.7, 44.3, 5208, 300 }, + }, + }, + [2003338] = { + ["coords"] = {}, + }, + [2003339] = { + ["coords"] = {}, + }, + [2003340] = { + ["coords"] = {}, + }, + [2003341] = { + ["coords"] = {}, + }, + [2003342] = { + ["coords"] = { + [1] = { 25.5, 30.7, 1, 300 }, + [2] = { 42.4, 73, 15, 300 }, + [3] = { 42.4, 72.9, 15, 300 }, + [4] = { 61.2, 24.1, 17, 300 }, + [5] = { 28.7, 75.5, 33, 300 }, + [6] = { 37, 51.6, 406, 300 }, + [7] = { 37.2, 51.4, 406, 300 }, + [8] = { 83.9, 20.5, 721, 300 }, + [9] = { 23.4, 36.8, 1519, 300 }, + [10] = { 29, 97.1, 5581, 300 }, + }, + }, + [2003343] = { + ["coords"] = { + [1] = { 25.5, 30.7, 1, 300 }, + [2] = { 83.9, 20.4, 721, 300 }, + [3] = { 84, 20.4, 721, 300 }, + }, + }, + [2003344] = { + ["coords"] = {}, + }, + [2003345] = { + ["coords"] = { + [1] = { 21.2, 48.6, 267, 300 }, + [2] = { 78.1, 11.4, 5179, 300 }, + }, + }, + [2003346] = { + ["coords"] = { + [1] = { 24.1, 31.5, 1, 300 }, + [2] = { 21.2, 48.6, 267, 300 }, + [3] = { 31.5, 36.6, 440, 300 }, + [4] = { 79, 64.5, 490, 300 }, + [5] = { 72.1, 27.8, 721, 300 }, + [6] = { 78.1, 11.4, 5179, 300 }, + }, + }, + [2003347] = { + ["coords"] = { + [1] = { 24.1, 31.5, 1, 300 }, + [2] = { 72.1, 27.4, 721, 300 }, + [3] = { 39.5, 42.5, 5208, 300 }, + }, + }, + [2003348] = { + ["coords"] = { + [1] = { 25.4, 30.7, 1, 300 }, + [2] = { 25.4, 30.6, 1, 300 }, + [3] = { 25.5, 30.6, 1, 300 }, + [4] = { 83.6, 20.6, 721, 300 }, + [5] = { 83.6, 20.4, 721, 300 }, + [6] = { 83.6, 20.3, 721, 300 }, + [7] = { 83.8, 20.2, 721, 300 }, + [8] = { 83.7, 20.2, 721, 300 }, + [9] = { 83.9, 19.6, 721, 300 }, + [10] = { 22, 37.5, 1519, 300 }, + [11] = { 39.4, 42.7, 5208, 300 }, + [12] = { 39.4, 42.6, 5208, 300 }, + [13] = { 28.3, 97.5, 5581, 300 }, + }, + }, + [2003349] = { + ["coords"] = { + [1] = { 24.1, 31.4, 1, 300 }, + [2] = { 56.9, 98.9, 14, 300 }, + [3] = { 74.7, 51.6, 17, 300 }, + [4] = { 74.4, 51.5, 17, 300 }, + [5] = { 74.5, 51.4, 17, 300 }, + [6] = { 75, 48.7, 17, 300 }, + [7] = { 61.2, 24.1, 17, 300 }, + [8] = { 31.5, 49, 33, 300 }, + [9] = { 81.7, 61.7, 38, 25 }, + [10] = { 37.1, 51.6, 406, 300 }, + [11] = { 31.5, 36.6, 440, 300 }, + [12] = { 79, 64.5, 490, 300 }, + [13] = { 72.1, 27.1, 721, 300 }, + [14] = { 24.1, 37.7, 1519, 300 }, + [15] = { 24.5, 37.1, 1519, 300 }, + [16] = { 23.4, 36.9, 1519, 300 }, + [17] = { 24.1, 36.4, 1519, 300 }, + [18] = { 28.1, 14.4, 1519, 300 }, + [19] = { 39.9, 44.4, 5208, 300 }, + [20] = { 29.5, 97.6, 5581, 300 }, + [21] = { 29.6, 97.3, 5581, 300 }, + [22] = { 29, 97.2, 5581, 300 }, + [23] = { 29.5, 96.9, 5581, 300 }, + [24] = { 31.6, 85.1, 5581, 300 }, + [25] = { 40.4, 75.8, 5602, 25 }, + }, + }, + [2003350] = { + ["coords"] = { + [1] = { 29.1, 71.1, 16, 300 }, + }, + }, + [2003351] = { + ["coords"] = {}, + }, + [2003352] = { + ["coords"] = { + [1] = { 29.1, 71.1, 16, 300 }, + }, + }, + [2003353] = { + ["coords"] = {}, + }, + [2003354] = { + ["coords"] = {}, + }, + [2003355] = { + ["coords"] = { + [1] = { 25.4, 30.4, 1, 300 }, + [2] = { 81.7, 61.6, 38, 25 }, + [3] = { 19.8, 66.8, 46, 300 }, + [4] = { 20.7, 48.4, 267, 300 }, + [5] = { 83.8, 18.5, 721, 300 }, + [6] = { 27.6, 14.7, 1519, 300 }, + [7] = { 77.7, 11.2, 5179, 300 }, + [8] = { 81.5, 69.3, 5208, 300 }, + [9] = { 82.3, 68.8, 5208, 300 }, + [10] = { 95.8, 93.1, 5581, 300 }, + [11] = { 31.3, 85.3, 5581, 300 }, + [12] = { 40.4, 75.8, 5602, 25 }, + }, + }, + [2003356] = { + ["coords"] = { + [1] = { 32.1, 48.2, 10, 300 }, + [2] = { 64.8, 34.2, 17, 300 }, + [3] = { 34.3, 21.2, 28, 0 }, + [4] = { 90.5, 35.8, 85, 0 }, + [5] = { 50.7, 58.8, 357, 300 }, + [6] = { 30.9, 37.7, 440, 300 }, + [7] = { 77.9, 66.6, 490, 300 }, + [8] = { 28.7, 27.5, 1519, 300 }, + [9] = { 31.9, 92.1, 5581, 300 }, + }, + }, + [2003357] = { + ["coords"] = { + [1] = { 41.6, 10.7, 130, 300 }, + }, + }, + [2003358] = { + ["coords"] = {}, + }, + [2003359] = { + ["coords"] = { + [1] = { 60.9, 64.4, 1519, 300 }, + }, + }, + [2003360] = { + ["coords"] = {}, + }, + [2003361] = { + ["coords"] = { + [1] = { 15.8, 63.5, 46, 300 }, + [2] = { 15.6, 63.4, 46, 300 }, + [3] = { 15.6, 63.1, 46, 300 }, + [4] = { 92.2, 90.1, 5581, 300 }, + [5] = { 92, 90, 5581, 300 }, + [6] = { 92, 89.7, 5581, 300 }, + [7] = { 56.5, 33.7, 5601, 604800 }, + }, + }, + [2003362] = { + ["coords"] = { + [1] = { 68.2, 82.1, 130, 300 }, + [2] = { 42.7, 52.9, 267, 300 }, + [3] = { 15.1, 48.4, 267, 300 }, + [4] = { 96.9, 15.2, 5179, 300 }, + [5] = { 72.8, 11.2, 5179, 300 }, + [6] = { 42.7, 68.2, 5581, 300 }, + [7] = { 42.6, 68.2, 5581, 300 }, + [8] = { 42.6, 68.1, 5581, 300 }, + }, + }, + [2003363] = { + ["coords"] = { + [1] = { 51.5, 47.7, 8, 300 }, + [2] = { 44.7, 15.2, 14, 300 }, + [3] = { 29.8, 70.7, 16, 300 }, + [4] = { 68.1, 82.4, 130, 300 }, + [5] = { 42.7, 52.8, 267, 300 }, + [6] = { 14.9, 48.7, 267, 300 }, + [7] = { 83.4, 55.5, 400, 300 }, + [8] = { 58.2, 22.6, 440, 300 }, + [9] = { 71.3, 27.3, 3457, 300 }, + [10] = { 96.9, 15.1, 5179, 300 }, + [11] = { 72.6, 11.5, 5179, 300 }, + [12] = { 42.7, 68.2, 5581, 300 }, + [13] = { 42.6, 68.2, 5581, 300 }, + }, + }, + [2003364] = { + ["coords"] = {}, + }, + [2003365] = { + ["coords"] = { + [1] = { 27.2, 47.2, 28, 300 }, + [2] = { 28.1, 46.9, 28, 300 }, + [3] = { 26.3, 46.5, 28, 300 }, + [4] = { 28.7, 45.9, 28, 300 }, + [5] = { 83.8, 60.5, 85, 300 }, + [6] = { 84.6, 60.2, 85, 300 }, + [7] = { 82.9, 59.9, 85, 300 }, + [8] = { 85.3, 59.3, 85, 300 }, + [9] = { 86.6, 57.7, 85, 300 }, + [10] = { 87.4, 56.5, 85, 300 }, + [11] = { 87.8, 55.3, 85, 300 }, + }, + }, + [2003366] = { + ["coords"] = {}, + }, + [2003367] = { + ["coords"] = {}, + }, + [2003368] = { + ["coords"] = {}, + }, + [2003369] = { + ["coords"] = {}, + }, + [2003370] = { + ["coords"] = { + [1] = { 86.1, 57.9, 85, 300 }, + }, + }, + [2003371] = { + ["coords"] = { + [1] = { 30.7, 71, 85, 300 }, + }, + }, + [2003372] = { + ["coords"] = { + [1] = { 52.5, 97.3, 36, 300 }, + [2] = { 30.1, 71.4, 85, 300 }, + [3] = { 54.8, 33.5, 267, 300 }, + }, + }, + [2003373] = { + ["coords"] = {}, + }, + [2003374] = { + ["coords"] = {}, + }, + [2003375] = { + ["coords"] = { + [1] = { 34.8, 57.8, 10, 300 }, + [2] = { 34.1, 56.1, 10, 300 }, + [3] = { 33.7, 54.1, 10, 300 }, + [4] = { 33, 52.7, 10, 300 }, + [5] = { 32.1, 51, 10, 300 }, + [6] = { 32.5, 49.5, 10, 300 }, + [7] = { 67.4, 82.8, 130, 300 }, + [8] = { 68.2, 82.2, 130, 300 }, + [9] = { 68.1, 81.5, 130, 300 }, + [10] = { 67.6, 81.3, 130, 300 }, + [11] = { 13.9, 49.3, 267, 300 }, + [12] = { 15, 48.6, 267, 300 }, + [13] = { 14.9, 47.6, 267, 300 }, + [14] = { 14.3, 47.4, 267, 300 }, + [15] = { 31.1, 89.8, 405, 300 }, + [16] = { 31.3, 88.3, 405, 300 }, + [17] = { 31.1, 88.1, 405, 300 }, + [18] = { 30.6, 87.8, 405, 300 }, + [19] = { 31.2, 87.4, 405, 300 }, + [20] = { 30, 86.7, 405, 300 }, + [21] = { 31.7, 86.7, 405, 300 }, + [22] = { 71.8, 12, 5179, 300 }, + [23] = { 72.7, 11.3, 5179, 300 }, + [24] = { 72.6, 10.5, 5179, 300 }, + [25] = { 72.1, 10.3, 5179, 300 }, + }, + }, + [2003376] = { + ["coords"] = { + [1] = { 28.1, 43.8, 85, 300 }, + [2] = { 21.4, 50.5, 267, 300 }, + [3] = { 78.3, 13.1, 5179, 300 }, + }, + }, + [2003377] = { + ["coords"] = { + [1] = { 33.8, 49.4, 10, 300 }, + [2] = { 33.2, 48.6, 10, 300 }, + [3] = { 48.5, 62.3, 11, 300 }, + [4] = { 49, 61.2, 11, 300 }, + [5] = { 58.1, 99.7, 14, 300 }, + [6] = { 37.6, 72.4, 14, 300 }, + [7] = { 75.6, 49.1, 17, 300 }, + [8] = { 64.9, 34.9, 17, 300 }, + [9] = { 61.1, 24.2, 17, 300 }, + [10] = { 43.2, 99.3, 28, 300 }, + [11] = { 79.1, 67.2, 28, 300 }, + [12] = { 80.4, 60, 28, 300 }, + [13] = { 43.4, 80.4, 33, 300 }, + [14] = { 43.3, 80.3, 33, 300 }, + [15] = { 43.4, 79.8, 33, 300 }, + [16] = { 37.3, 66.4, 33, 300 }, + [17] = { 37.1, 66.3, 33, 300 }, + [18] = { 79.5, 52.4, 36, 300 }, + [19] = { 17.9, 67.3, 46, 300 }, + [20] = { 18, 65.7, 46, 300 }, + [21] = { 29.7, 72.2, 85, 300 }, + [22] = { 51.3, 67.5, 85, 300 }, + [23] = { 66.9, 81.7, 130, 300 }, + [24] = { 22.1, 83.4, 139, 300 }, + [25] = { 43.3, 52, 267, 300 }, + [26] = { 42.7, 51, 267, 300 }, + [27] = { 13.4, 47.9, 267, 300 }, + [28] = { 51.1, 62.4, 357, 300 }, + [29] = { 31.6, 85.5, 405, 300 }, + [30] = { 30.8, 38.5, 440, 300 }, + [31] = { 31.1, 37.9, 440, 300 }, + [32] = { 31.2, 37.8, 440, 300 }, + [33] = { 31.2, 37.7, 440, 300 }, + [34] = { 30.8, 36.6, 440, 300 }, + [35] = { 31.2, 36.4, 440, 300 }, + [36] = { 77.7, 68, 490, 300 }, + [37] = { 78.4, 66.9, 490, 300 }, + [38] = { 78.5, 66.8, 490, 300 }, + [39] = { 78.6, 66.6, 490, 300 }, + [40] = { 77.8, 64.4, 490, 300 }, + [41] = { 78.6, 64.2, 490, 300 }, + [42] = { 51.4, 34.5, 5121, 300 }, + [43] = { 51.1, 34.2, 5121, 300 }, + [44] = { 97.4, 14.4, 5179, 300 }, + [45] = { 96.9, 13.4, 5179, 300 }, + [46] = { 71.3, 10.8, 5179, 300 }, + [47] = { 36.6, 19, 5561, 300 }, + [48] = { 94.1, 93.5, 5581, 300 }, + [49] = { 94.2, 92.1, 5581, 300 }, + [50] = { 6, 26.8, 5602, 300 }, + [51] = { 6.3, 26, 5602, 300 }, + }, + }, + [2003378] = { + ["coords"] = { + [1] = { 23.9, 30.8, 1, 300 }, + [2] = { 44.3, 97.9, 28, 300 }, + [3] = { 81.1, 50.4, 36, 300 }, + [4] = { 17.2, 67.1, 46, 300 }, + [5] = { 29.7, 71.9, 85, 300 }, + [6] = { 21.8, 69, 85, 300 }, + [7] = { 85.7, 57.7, 85, 300 }, + [8] = { 60.7, 43.5, 409, 300 }, + [9] = { 70.4, 21.3, 721, 300 }, + [10] = { 93.5, 93.4, 5581, 300 }, + }, + }, + [2003379] = { + ["coords"] = { + [1] = { 80.1, 62.9, 28, 300 }, + [2] = { 80.8, 61.8, 28, 300 }, + [3] = { 29.6, 72.1, 85, 300 }, + [4] = { 79, 55.7, 85, 300 }, + [5] = { 21.8, 86.7, 139, 300 }, + [6] = { 22.6, 85.4, 139, 300 }, + }, + }, + [2003380] = { + ["coords"] = { + [1] = { 19.1, 61.9, 44, 300 }, + }, + }, + [2003381] = { + ["coords"] = {}, + }, + [2003382] = { + ["coords"] = {}, + }, + [2003383] = { + ["coords"] = {}, + }, + [2003384] = { + ["coords"] = {}, + }, + [2003385] = { + ["coords"] = { + [1] = { 46, 46.1, 15, 300 }, + [2] = { 80.1, 62.8, 28, 300 }, + [3] = { 34, 17.8, 28, 0 }, + [4] = { 34.1, 17.8, 28, 0 }, + [5] = { 90.3, 32.6, 85, 0 }, + [6] = { 90.4, 32.5, 85, 0 }, + [7] = { 21.8, 86.6, 139, 300 }, + }, + }, + [2003386] = { + ["coords"] = { + [1] = { 51, 48.5, 8, 300 }, + [2] = { 49, 60.3, 11, 300 }, + [3] = { 80.7, 60.5, 28, 300 }, + [4] = { 15.7, 68.3, 85, 300 }, + [5] = { 85.7, 57.7, 85, 300 }, + [6] = { 86, 57.2, 85, 300 }, + [7] = { 42.2, 10.2, 130, 300 }, + [8] = { 22.4, 83.9, 139, 300 }, + [9] = { 60.3, 44.4, 409, 300 }, + [10] = { 66.3, 85, 618, 300 }, + [11] = { 86.1, 81.8, 718, 300 }, + [12] = { 44.7, 48.2, 5087, 300 }, + [13] = { 49, 39.9, 5087, 300 }, + [14] = { 78.9, 36.2, 5136, 300 }, + [15] = { 76.8, 35.8, 5136, 300 }, + [16] = { 6.4, 25.3, 5602, 300 }, + }, + }, + [2003387] = { + ["coords"] = { + [1] = { 50.9, 48.6, 8, 300 }, + [2] = { 34, 49, 10, 300 }, + [3] = { 44.7, 14.4, 14, 300 }, + [4] = { 80.7, 60.4, 28, 300 }, + [5] = { 26, 46.9, 28, 300 }, + [6] = { 26.1, 46.5, 28, 300 }, + [7] = { 29.4, 44.7, 28, 300 }, + [8] = { 82.7, 60.2, 85, 300 }, + [9] = { 82.7, 59.9, 85, 300 }, + [10] = { 82.7, 59.7, 85, 300 }, + [11] = { 85.9, 58.2, 85, 300 }, + [12] = { 85.7, 57.4, 85, 300 }, + [13] = { 86, 57.3, 85, 300 }, + [14] = { 22.4, 83.9, 139, 300 }, + [15] = { 42.1, 53.4, 267, 300 }, + [16] = { 66.3, 85, 618, 300 }, + [17] = { 85.9, 83.3, 718, 300 }, + [18] = { 86.2, 80, 718, 300 }, + [19] = { 43.2, 40.7, 5087, 300 }, + [20] = { 76, 36.7, 5136, 300 }, + [21] = { 96.3, 15.5, 5179, 300 }, + }, + }, + [2003388] = { + ["coords"] = { + [1] = { 23.2, 29.3, 1, 300 }, + [2] = { 75.5, 49.6, 17, 300 }, + [3] = { 82.9, 54.7, 400, 300 }, + [4] = { 64.5, 8.7, 721, 300 }, + }, + }, + [2003389] = { + ["coords"] = { + [1] = { 33.6, 49, 10, 300 }, + [2] = { 49, 60.3, 11, 300 }, + [3] = { 82.8, 54.9, 400, 300 }, + [4] = { 83, 54.8, 400, 300 }, + [5] = { 21.5, 37.3, 1519, 300 }, + [6] = { 68.2, 25.8, 1637, 25 }, + [7] = { 28.1, 97.4, 5581, 300 }, + [8] = { 6.3, 25.3, 5602, 300 }, + }, + }, + [2003390] = { + ["coords"] = { + [1] = { 33.7, 49.1, 10, 300 }, + [2] = { 33.6, 49.1, 10, 300 }, + [3] = { 33.1, 48.8, 10, 300 }, + [4] = { 33.1, 48.7, 10, 300 }, + [5] = { 48.7, 62, 11, 300 }, + [6] = { 48.6, 61.7, 11, 300 }, + [7] = { 37.5, 71.7, 14, 300 }, + [8] = { 37.5, 71.6, 14, 300 }, + [9] = { 41.8, 74.2, 15, 300 }, + [10] = { 62.7, 38.3, 17, 300 }, + [11] = { 62.7, 38.2, 17, 300 }, + [12] = { 64.8, 34.5, 17, 300 }, + [13] = { 44.3, 98.6, 28, 300 }, + [14] = { 44, 98.3, 28, 300 }, + [15] = { 44.4, 98.1, 28, 300 }, + [16] = { 44.3, 98, 28, 300 }, + [17] = { 80.7, 63.5, 28, 300 }, + [18] = { 80.7, 63.3, 28, 300 }, + [19] = { 79.9, 63.2, 28, 300 }, + [20] = { 33.8, 17.7, 28, 300 }, + [21] = { 33.8, 17.6, 28, 300 }, + [22] = { 43.2, 80.3, 33, 300 }, + [23] = { 43.3, 80.3, 33, 300 }, + [24] = { 43.4, 80.3, 33, 300 }, + [25] = { 43.4, 80.1, 33, 300 }, + [26] = { 43.2, 80, 33, 300 }, + [27] = { 37.5, 66.7, 33, 300 }, + [28] = { 37.5, 66.6, 33, 300 }, + [29] = { 81.2, 51.4, 36, 300 }, + [30] = { 80.7, 51, 36, 300 }, + [31] = { 81.3, 50.6, 36, 300 }, + [32] = { 81.1, 50.5, 36, 300 }, + [33] = { 60, 77.2, 38, 300 }, + [34] = { 78.5, 76.5, 38, 25 }, + [35] = { 78.5, 76.4, 38, 25 }, + [36] = { 77.7, 75, 38, 25 }, + [37] = { 78, 74.6, 38, 25 }, + [38] = { 35, 10.4, 45, 300 }, + [39] = { 34.8, 10.1, 45, 300 }, + [40] = { 17.5, 65.9, 46, 300 }, + [41] = { 14.3, 72.1, 47, 300 }, + [42] = { 14.1, 71.8, 47, 300 }, + [43] = { 4.8, 62, 85, 300 }, + [44] = { 4.6, 61.8, 85, 300 }, + [45] = { 12.2, 56.1, 85, 300 }, + [46] = { 16.9, 49.5, 85, 300 }, + [47] = { 17.2, 49, 85, 300 }, + [48] = { 90.1, 32.4, 85, 300 }, + [49] = { 67.4, 83.2, 130, 300 }, + [50] = { 67.3, 83.1, 130, 300 }, + [51] = { 67.8, 83.1, 130, 300 }, + [52] = { 67.6, 83.1, 130, 300 }, + [53] = { 67.6, 82.9, 130, 300 }, + [54] = { 22.5, 87.3, 139, 300 }, + [55] = { 22.4, 87.1, 139, 300 }, + [56] = { 21.5, 87, 139, 300 }, + [57] = { 14, 49.8, 267, 300 }, + [58] = { 13.9, 49.7, 267, 300 }, + [59] = { 14.5, 49.7, 267, 300 }, + [60] = { 14.2, 49.6, 267, 300 }, + [61] = { 14.3, 49.4, 267, 300 }, + [62] = { 66.9, 47.1, 267, 300 }, + [63] = { 79.8, 80.4, 331, 300 }, + [64] = { 72.2, 57.5, 331, 300 }, + [65] = { 72.2, 57.4, 331, 300 }, + [66] = { 83.1, 55.4, 400, 25 }, + [67] = { 82.9, 55.2, 400, 25 }, + [68] = { 83.6, 54.4, 400, 25 }, + [69] = { 29.8, 86.9, 405, 300 }, + [70] = { 61.4, 44.7, 409, 300 }, + [71] = { 61.4, 44.6, 409, 300 }, + [72] = { 60.7, 44.6, 409, 300 }, + [73] = { 60.9, 44.5, 409, 300 }, + [74] = { 61.5, 44.1, 409, 300 }, + [75] = { 61.6, 44.1, 409, 300 }, + [76] = { 61.3, 43.8, 409, 300 }, + [77] = { 61.3, 43.7, 409, 300 }, + [78] = { 61.1, 43.6, 409, 300 }, + [79] = { 58.2, 22.2, 440, 300 }, + [80] = { 58.1, 22.1, 440, 300 }, + [81] = { 40.8, 11.1, 490, 300 }, + [82] = { 72.1, 53.7, 1497, 300 }, + [83] = { 72.2, 53.6, 1497, 300 }, + [84] = { 72.1, 53.6, 1497, 300 }, + [85] = { 75.5, 50.6, 1497, 300 }, + [86] = { 75.4, 50.5, 1497, 300 }, + [87] = { 42.1, 80.5, 1519, 300 }, + [88] = { 27.8, 15.2, 1519, 300 }, + [89] = { 71.8, 12.4, 5179, 300 }, + [90] = { 71.8, 12.3, 5179, 300 }, + [91] = { 72.3, 12.3, 5179, 300 }, + [92] = { 72.1, 12.3, 5179, 300 }, + [93] = { 72.1, 12.1, 5179, 300 }, + [94] = { 36.9, 18.9, 5561, 300 }, + [95] = { 93.7, 92.3, 5581, 300 }, + [96] = { 31.4, 85.5, 5581, 300 }, + [97] = { 63.2, 73.5, 5581, 300 }, + [98] = { 29.3, 83.8, 5602, 300 }, + [99] = { 38.7, 83.4, 5602, 25 }, + [100] = { 38.3, 82.7, 5602, 25 }, + [101] = { 38.5, 82.5, 5602, 25 }, + [102] = { 6.1, 26.6, 5602, 300 }, + [103] = { 6.1, 26.4, 5602, 300 }, + }, + }, + [2003391] = { + ["coords"] = { + [1] = { 33.8, 48.9, 10, 300 }, + [2] = { 33.3, 48.5, 10, 300 }, + [3] = { 49.1, 60.8, 11, 300 }, + [4] = { 49, 60.8, 11, 300 }, + [5] = { 49.1, 60.4, 11, 300 }, + [6] = { 55.4, 97.4, 14, 300 }, + [7] = { 77, 56.2, 15, 300 }, + [8] = { 74.2, 47.9, 17, 300 }, + [9] = { 54.3, 1.2, 17, 300 }, + [10] = { 43.9, 99.2, 28, 300 }, + [11] = { 80.7, 63.4, 28, 300 }, + [12] = { 80.7, 63.3, 28, 300 }, + [13] = { 81.1, 60.5, 28, 300 }, + [14] = { 80.5, 52.4, 36, 300 }, + [15] = { 4.6, 61.7, 85, 300 }, + [16] = { 31.8, 46, 85, 300 }, + [17] = { 67.8, 81.9, 130, 300 }, + [18] = { 41.9, 10.7, 130, 300 }, + [19] = { 41.9, 10.6, 130, 300 }, + [20] = { 22.4, 87.2, 139, 300 }, + [21] = { 22.4, 87.1, 139, 300 }, + [22] = { 22.5, 87.1, 139, 300 }, + [23] = { 22.8, 84, 139, 300 }, + [24] = { 42, 53.3, 267, 300 }, + [25] = { 42.1, 53, 267, 300 }, + [26] = { 42.6, 52.8, 267, 300 }, + [27] = { 42.5, 52.8, 267, 300 }, + [28] = { 42.5, 52.7, 267, 300 }, + [29] = { 42.6, 51.1, 267, 300 }, + [30] = { 14.5, 48.1, 267, 300 }, + [31] = { 79.4, 81.8, 331, 300 }, + [32] = { 37.1, 51.6, 406, 300 }, + [33] = { 37, 51.5, 406, 300 }, + [34] = { 37, 51.4, 406, 300 }, + [35] = { 31.2, 38.2, 440, 300 }, + [36] = { 78.6, 67.5, 490, 300 }, + [37] = { 72.5, 54.8, 1497, 300 }, + [38] = { 72.5, 54.7, 1497, 300 }, + [39] = { 72.5, 54.6, 1497, 300 }, + [40] = { 72.3, 53.4, 1497, 300 }, + [41] = { 72.4, 53.3, 1497, 300 }, + [42] = { 73.8, 52.8, 1497, 300 }, + [43] = { 73.7, 52.7, 1497, 300 }, + [44] = { 75.3, 51.1, 1497, 300 }, + [45] = { 42.1, 80.6, 1519, 300 }, + [46] = { 42.5, 80.1, 1519, 300 }, + [47] = { 53.7, 37.2, 5130, 300 }, + [48] = { 96.3, 15.5, 5179, 300 }, + [49] = { 96.4, 15.2, 5179, 300 }, + [50] = { 96.8, 15.1, 5179, 300 }, + [51] = { 96.7, 15.1, 5179, 300 }, + [52] = { 96.7, 15, 5179, 300 }, + [53] = { 96.8, 13.6, 5179, 300 }, + [54] = { 72.3, 11, 5179, 300 }, + [55] = { 6.4, 25.7, 5602, 300 }, + [56] = { 6.4, 25.6, 5602, 300 }, + [57] = { 6.4, 25.4, 5602, 300 }, + }, + }, + [2003392] = { + ["coords"] = { + [1] = { 33.6, 49.1, 10, 300 }, + [2] = { 33.6, 49, 10, 300 }, + [3] = { 33.1, 48.8, 10, 300 }, + [4] = { 32.2, 48.1, 10, 300 }, + [5] = { 48.5, 62, 11, 300 }, + [6] = { 48.6, 61.7, 11, 300 }, + [7] = { 37.5, 72.3, 14, 300 }, + [8] = { 37.5, 71.5, 14, 300 }, + [9] = { 58.2, 25.7, 14, 300 }, + [10] = { 76.9, 56.2, 15, 300 }, + [11] = { 30, 71.3, 16, 300 }, + [12] = { 62.7, 38.2, 17, 300 }, + [13] = { 64.8, 34.8, 17, 300 }, + [14] = { 64.8, 34.4, 17, 300 }, + [15] = { 54.3, 1.2, 17, 300 }, + [16] = { 54.2, 1, 17, 300 }, + [17] = { 54.1, 0.9, 17, 300 }, + [18] = { 54.2, 0.8, 17, 300 }, + [19] = { 44.3, 98.6, 28, 300 }, + [20] = { 44, 98.3, 28, 300 }, + [21] = { 44.4, 98.1, 28, 300 }, + [22] = { 80.7, 63.5, 28, 300 }, + [23] = { 80.7, 63.3, 28, 300 }, + [24] = { 81, 60.5, 28, 300 }, + [25] = { 33.9, 17.7, 28, 300 }, + [26] = { 43.3, 80.5, 33, 300 }, + [27] = { 43.4, 80.2, 33, 300 }, + [28] = { 43.4, 80.1, 33, 300 }, + [29] = { 43.2, 80, 33, 300 }, + [30] = { 37.5, 66.7, 33, 300 }, + [31] = { 37.5, 66.6, 33, 300 }, + [32] = { 81.1, 51.4, 36, 300 }, + [33] = { 80.7, 51, 36, 300 }, + [34] = { 81.2, 50.6, 36, 300 }, + [35] = { 59.8, 77.1, 38, 300 }, + [36] = { 13.4, 68.5, 46, 300 }, + [37] = { 13.3, 68.4, 46, 300 }, + [38] = { 13.1, 68.1, 46, 300 }, + [39] = { 17.7, 66.3, 46, 300 }, + [40] = { 17.5, 65.9, 46, 300 }, + [41] = { 4.6, 62.4, 85, 300 }, + [42] = { 4.6, 62.3, 85, 300 }, + [43] = { 4.5, 62, 85, 300 }, + [44] = { 17.3, 49.4, 85, 300 }, + [45] = { 17.2, 49, 85, 300 }, + [46] = { 90.1, 32.5, 85, 300 }, + [47] = { 67.4, 83.2, 130, 300 }, + [48] = { 67.3, 83.1, 130, 300 }, + [49] = { 67.4, 83.1, 130, 300 }, + [50] = { 67.8, 83.1, 130, 300 }, + [51] = { 67.6, 83.1, 130, 300 }, + [52] = { 67.6, 82.8, 130, 300 }, + [53] = { 22.4, 87.3, 139, 300 }, + [54] = { 22.4, 87.1, 139, 300 }, + [55] = { 22.8, 84, 139, 300 }, + [56] = { 14, 49.8, 267, 300 }, + [57] = { 13.9, 49.7, 267, 300 }, + [58] = { 14, 49.7, 267, 300 }, + [59] = { 14.5, 49.7, 267, 300 }, + [60] = { 14.2, 49.6, 267, 300 }, + [61] = { 14, 49.6, 267, 300 }, + [62] = { 14.3, 49.4, 267, 300 }, + [63] = { 79.3, 81.7, 331, 300 }, + [64] = { 79.2, 81.3, 331, 300 }, + [65] = { 79, 81.2, 331, 300 }, + [66] = { 79.2, 81.1, 331, 300 }, + [67] = { 72.5, 57.6, 331, 300 }, + [68] = { 73.2, 56.8, 331, 300 }, + [69] = { 73.2, 56.7, 331, 300 }, + [70] = { 73.2, 56.6, 331, 300 }, + [71] = { 82.9, 54.8, 400, 300 }, + [72] = { 82.9, 54.7, 400, 300 }, + [73] = { 47.7, 57.2, 406, 300 }, + [74] = { 61.4, 44.7, 409, 300 }, + [75] = { 61.4, 44.6, 409, 300 }, + [76] = { 60.8, 44.6, 409, 300 }, + [77] = { 60.9, 44.5, 409, 300 }, + [78] = { 61.2, 44.3, 409, 300 }, + [79] = { 61.1, 44.3, 409, 300 }, + [80] = { 60.7, 44.3, 409, 300 }, + [81] = { 61.6, 44.1, 409, 300 }, + [82] = { 61, 43.9, 409, 300 }, + [83] = { 61, 43.8, 409, 300 }, + [84] = { 61.3, 43.6, 409, 300 }, + [85] = { 61.1, 43.6, 409, 300 }, + [86] = { 31.1, 37.9, 440, 300 }, + [87] = { 31.2, 37.9, 440, 300 }, + [88] = { 31.1, 37.8, 440, 300 }, + [89] = { 31.2, 37.8, 440, 300 }, + [90] = { 31.2, 37.7, 440, 300 }, + [91] = { 31.3, 37.7, 440, 300 }, + [92] = { 67.5, 27.3, 440, 300 }, + [93] = { 58, 22.4, 440, 300 }, + [94] = { 58.2, 22.1, 440, 300 }, + [95] = { 78.3, 67, 490, 300 }, + [96] = { 78.4, 67, 490, 300 }, + [97] = { 78.3, 66.9, 490, 300 }, + [98] = { 78.5, 66.9, 490, 300 }, + [99] = { 78.4, 66.8, 490, 300 }, + [100] = { 78.5, 66.8, 490, 300 }, + [101] = { 78.4, 66.7, 490, 300 }, + [102] = { 78.6, 66.7, 490, 300 }, + [103] = { 78.5, 66.6, 490, 300 }, + [104] = { 78.7, 66.6, 490, 300 }, + [105] = { 78.6, 66.6, 490, 300 }, + [106] = { 49.4, 30.7, 618, 300 }, + [107] = { 49.3, 30.7, 618, 300 }, + [108] = { 49.5, 30.2, 618, 300 }, + [109] = { 68.9, 29.8, 876, 300 }, + [110] = { 72.8, 54.1, 1497, 300 }, + [111] = { 72.9, 54, 1497, 300 }, + [112] = { 73.4, 52, 1497, 300 }, + [113] = { 75.4, 50.3, 1497, 300 }, + [114] = { 74.1, 49.9, 1497, 300 }, + [115] = { 74.1, 49.8, 1497, 300 }, + [116] = { 76, 49.3, 1497, 300 }, + [117] = { 76, 49.1, 1497, 300 }, + [118] = { 42.3, 79.7, 1519, 300 }, + [119] = { 27.7, 15.1, 1519, 300 }, + [120] = { 53.6, 37.1, 5130, 300 }, + [121] = { 71.9, 12.4, 5179, 300 }, + [122] = { 71.8, 12.3, 5179, 300 }, + [123] = { 72.3, 12.3, 5179, 300 }, + [124] = { 72.1, 12.3, 5179, 300 }, + [125] = { 72.1, 12, 5179, 300 }, + [126] = { 90, 94.7, 5581, 300 }, + [127] = { 89.9, 94.6, 5581, 300 }, + [128] = { 89.7, 94.3, 5581, 300 }, + [129] = { 93.9, 92.7, 5581, 300 }, + [130] = { 93.7, 92.3, 5581, 300 }, + [131] = { 31.4, 85.5, 5581, 300 }, + [132] = { 63.2, 73.5, 5581, 300 }, + [133] = { 63.2, 73.1, 5581, 300 }, + [134] = { 50.2, 67.5, 5581, 300 }, + [135] = { 29.2, 83.8, 5602, 300 }, + [136] = { 6, 26.6, 5602, 300 }, + [137] = { 6.1, 26.4, 5602, 300 }, + }, + }, + [2003393] = { + ["coords"] = { + [1] = { 49, 60.8, 11, 300 }, + [2] = { 49.1, 60.5, 11, 300 }, + [3] = { 39.2, 69.2, 12, 300 }, + [4] = { 37.5, 71.7, 14, 300 }, + [5] = { 77, 56.2, 15, 300 }, + [6] = { 74.9, 51.4, 17, 300 }, + [7] = { 62.7, 38.2, 17, 300 }, + [8] = { 64.8, 34.5, 17, 300 }, + [9] = { 64.8, 34.2, 17, 300 }, + [10] = { 54.1, 1, 17, 300 }, + [11] = { 43.9, 99.1, 28, 300 }, + [12] = { 44, 98.3, 28, 300 }, + [13] = { 80.9, 63.5, 28, 300 }, + [14] = { 80.8, 63.3, 28, 300 }, + [15] = { 80, 63.1, 28, 300 }, + [16] = { 81, 60.5, 28, 300 }, + [17] = { 37.5, 66.6, 33, 300 }, + [18] = { 80.5, 52.1, 36, 300 }, + [19] = { 80.7, 51, 36, 300 }, + [20] = { 11.8, 45.6, 47, 300 }, + [21] = { 4.6, 62.1, 85, 300 }, + [22] = { 4.7, 61.9, 85, 300 }, + [23] = { 17.4, 49.4, 85, 300 }, + [24] = { 22.6, 87.3, 139, 300 }, + [25] = { 22.5, 87.1, 139, 300 }, + [26] = { 21.6, 86.9, 139, 300 }, + [27] = { 22.8, 83.9, 139, 300 }, + [28] = { 96.7, 4.9, 267, 300 }, + [29] = { 79, 81.3, 331, 300 }, + [30] = { 51.2, 62.3, 357, 300 }, + [31] = { 82.5, 53.7, 400, 25 }, + [32] = { 82.5, 53.6, 400, 25 }, + [33] = { 82.7, 53.5, 400, 25 }, + [34] = { 37, 51.5, 406, 300 }, + [35] = { 37.1, 51.4, 406, 300 }, + [36] = { 37, 51.3, 406, 300 }, + [37] = { 61.4, 44.6, 409, 300 }, + [38] = { 60.8, 44.5, 409, 300 }, + [39] = { 61.2, 44.3, 409, 300 }, + [40] = { 60.7, 44.3, 409, 300 }, + [41] = { 61.3, 43.7, 409, 300 }, + [42] = { 31.3, 37.7, 440, 300 }, + [43] = { 67.5, 27.4, 440, 300 }, + [44] = { 78.6, 66.5, 490, 300 }, + [45] = { 49.3, 30.7, 618, 300 }, + [46] = { 49.4, 30.7, 618, 300 }, + [47] = { 72.9, 54.1, 1497, 300 }, + [48] = { 72.9, 54, 1497, 300 }, + [49] = { 73.3, 52.2, 1497, 300 }, + [50] = { 42.4, 80.3, 1519, 300 }, + [51] = { 42.4, 80.2, 1519, 300 }, + [52] = { 21.2, 36.8, 1519, 300 }, + [53] = { 30.1, 14, 1519, 300 }, + [54] = { 53.6, 37.2, 5130, 300 }, + [55] = { 55.4, 36.3, 5130, 300 }, + [56] = { 55.3, 36.2, 5130, 300 }, + [57] = { 27.9, 97.1, 5581, 300 }, + [58] = { 32.6, 84.9, 5581, 300 }, + [59] = { 6.4, 25.6, 5602, 300 }, + [60] = { 6.4, 25.4, 5602, 300 }, + }, + }, + [2003394] = { + ["coords"] = {}, + }, + [2003395] = { + ["coords"] = {}, + }, + [2003396] = { + ["coords"] = {}, + }, + [2003397] = { + ["coords"] = {}, + }, + [2003398] = { + ["coords"] = {}, + }, + [2003399] = { + ["coords"] = {}, + }, + [2003400] = { + ["coords"] = {}, + }, + [2003401] = { + ["coords"] = { + [1] = { 43.4, 79.5, 33, 300 }, + [2] = { 83.7, 80, 5208, 300 }, + }, + }, + [2003402] = { + ["coords"] = {}, + }, + [2003403] = { + ["coords"] = {}, + }, + [2003404] = { + ["coords"] = {}, + }, + [2003405] = { + ["coords"] = { + [1] = { 28.5, 62.1, 16, 300 }, + [2] = { 28.8, 61.8, 16, 300 }, + [3] = { 41.7, 51.2, 267, 300 }, + [4] = { 42.9, 50.5, 267, 300 }, + [5] = { 42, 50.5, 267, 300 }, + [6] = { 42.7, 50.3, 267, 300 }, + [7] = { 31.1, 91.7, 405, 300 }, + [8] = { 31.4, 91.6, 405, 300 }, + [9] = { 31.6, 91.5, 405, 300 }, + [10] = { 31.9, 91.5, 405, 300 }, + [11] = { 32.2, 91.4, 405, 300 }, + [12] = { 32.4, 90.7, 405, 300 }, + [13] = { 32.3, 90, 405, 300 }, + [14] = { 31.1, 38.6, 440, 300 }, + [15] = { 30.9, 38.3, 440, 300 }, + [16] = { 30.6, 37.9, 440, 300 }, + [17] = { 30.5, 37.6, 440, 300 }, + [18] = { 78.3, 68.3, 490, 300 }, + [19] = { 77.9, 67.6, 490, 300 }, + [20] = { 77.5, 67, 490, 300 }, + [21] = { 77.1, 66.4, 490, 300 }, + [22] = { 37.8, 13.2, 490, 300 }, + [23] = { 37.5, 13.2, 490, 300 }, + [24] = { 41.2, 10.9, 490, 300 }, + [25] = { 42.2, 9, 490, 300 }, + [26] = { 96.1, 13.6, 5179, 300 }, + [27] = { 97.1, 13, 5179, 300 }, + [28] = { 96.3, 13, 5179, 300 }, + [29] = { 96.9, 12.9, 5179, 300 }, + }, + }, + [2003406] = { + ["coords"] = { + [1] = { 18.2, 67.6, 46, 300 }, + [2] = { 16.7, 67, 46, 300 }, + [3] = { 43.4, 52, 267, 300 }, + [4] = { 43.2, 51.1, 267, 300 }, + [5] = { 42.4, 50.3, 267, 300 }, + [6] = { 31, 38.5, 440, 300 }, + [7] = { 30.8, 38.1, 440, 300 }, + [8] = { 78.1, 68.2, 490, 300 }, + [9] = { 77.8, 67.3, 490, 300 }, + [10] = { 41, 11.6, 490, 300 }, + [11] = { 97.5, 14.4, 5179, 300 }, + [12] = { 97.3, 13.6, 5179, 300 }, + [13] = { 96.6, 12.9, 5179, 300 }, + [14] = { 94.3, 93.8, 5581, 300 }, + [15] = { 93, 93.3, 5581, 300 }, + }, + }, + [2003407] = { + ["coords"] = { + [1] = { 17.9, 67.9, 46, 300 }, + [2] = { 16.9, 67.4, 46, 300 }, + [3] = { 18.5, 67.4, 46, 300 }, + [4] = { 16.6, 66.6, 46, 300 }, + [5] = { 43.4, 52.5, 267, 300 }, + [6] = { 43.3, 51.6, 267, 300 }, + [7] = { 43.1, 50.8, 267, 300 }, + [8] = { 42.1, 50.4, 267, 300 }, + [9] = { 42.6, 50.3, 267, 300 }, + [10] = { 31.2, 91.6, 405, 300 }, + [11] = { 31.5, 91.5, 405, 300 }, + [12] = { 31.8, 91.5, 405, 300 }, + [13] = { 32, 91.4, 405, 300 }, + [14] = { 31, 38.6, 440, 300 }, + [15] = { 30.9, 38.4, 440, 300 }, + [16] = { 30.8, 38.2, 440, 300 }, + [17] = { 30.7, 38, 440, 300 }, + [18] = { 78.2, 68.2, 490, 300 }, + [19] = { 78, 67.8, 490, 300 }, + [20] = { 77.8, 67.5, 490, 300 }, + [21] = { 77.6, 67.1, 490, 300 }, + [22] = { 37.6, 13.3, 490, 300 }, + [23] = { 38, 13.2, 490, 300 }, + [24] = { 41.1, 11.1, 490, 300 }, + [25] = { 42.2, 9.4, 490, 300 }, + [26] = { 42.2, 9.3, 490, 300 }, + [27] = { 42.3, 8.8, 490, 300 }, + [28] = { 42.3, 8.7, 490, 300 }, + [29] = { 97.5, 14.8, 5179, 300 }, + [30] = { 97.5, 14, 5179, 300 }, + [31] = { 97.3, 13.3, 5179, 300 }, + [32] = { 96.4, 12.9, 5179, 300 }, + [33] = { 96.8, 12.8, 5179, 300 }, + [34] = { 94.1, 94.1, 5581, 300 }, + [35] = { 93.2, 93.7, 5581, 300 }, + [36] = { 94.6, 93.6, 5581, 300 }, + [37] = { 92.9, 92.9, 5581, 300 }, + }, + }, + [2003408] = { + ["coords"] = { + [1] = { 48.3, 62.5, 11, 300 }, + [2] = { 48.1, 61.8, 11, 300 }, + [3] = { 49.5, 60.1, 11, 300 }, + [4] = { 38, 71.6, 14, 300 }, + [5] = { 65.1, 34.5, 17, 300 }, + [6] = { 62.4, 19.2, 33, 300 }, + [7] = { 62.2, 19.1, 33, 300 }, + [8] = { 61.9, 78.6, 38, 300 }, + [9] = { 62.5, 77.5, 38, 300 }, + [10] = { 63.2, 77.5, 38, 300 }, + [11] = { 61.2, 77.2, 38, 300 }, + [12] = { 59.4, 71.6, 38, 300 }, + [13] = { 20, 67.4, 46, 300 }, + [14] = { 20.9, 66.4, 46, 300 }, + [15] = { 16.4, 65.6, 46, 300 }, + [16] = { 17.4, 64.1, 46, 300 }, + [17] = { 15.2, 62.9, 46, 300 }, + [18] = { 15.9, 62.8, 46, 300 }, + [19] = { 15.4, 62.6, 46, 300 }, + [20] = { 79.7, 26.6, 85, 300 }, + [21] = { 79.3, 26.6, 85, 300 }, + [22] = { 43.8, 54.8, 267, 300 }, + [23] = { 42.7, 53.6, 267, 300 }, + [24] = { 43.1, 53.5, 267, 300 }, + [25] = { 43.4, 52.7, 267, 300 }, + [26] = { 41.8, 51.9, 267, 300 }, + [27] = { 30.8, 35.9, 440, 300 }, + [28] = { 30.9, 35.9, 440, 300 }, + [29] = { 31, 35.8, 440, 300 }, + [30] = { 31.9, 35.3, 440, 300 }, + [31] = { 58.2, 22.7, 440, 300 }, + [32] = { 58.4, 22.4, 440, 300 }, + [33] = { 77.7, 63.3, 490, 300 }, + [34] = { 77.9, 63.2, 490, 300 }, + [35] = { 78.2, 63, 490, 300 }, + [36] = { 79.7, 62.2, 490, 300 }, + [37] = { 38.7, 13, 490, 300 }, + [38] = { 39.3, 12.9, 490, 300 }, + [39] = { 97.9, 16.8, 5179, 300 }, + [40] = { 96.9, 15.8, 5179, 300 }, + [41] = { 97.3, 15.7, 5179, 300 }, + [42] = { 97.6, 15, 5179, 300 }, + [43] = { 96.1, 14.3, 5179, 300 }, + [44] = { 96, 93.7, 5581, 300 }, + [45] = { 96.8, 92.7, 5581, 300 }, + [46] = { 92.7, 92, 5581, 300 }, + [47] = { 93.7, 90.7, 5581, 300 }, + [48] = { 91.6, 89.6, 5581, 300 }, + [49] = { 92.3, 89.4, 5581, 300 }, + [50] = { 91.8, 89.3, 5581, 300 }, + [51] = { 30.2, 84.5, 5602, 300 }, + [52] = { 30.6, 84, 5602, 300 }, + [53] = { 30.9, 83.9, 5602, 300 }, + [54] = { 29.9, 83.8, 5602, 300 }, + [55] = { 29, 80.9, 5602, 300 }, + [56] = { 5.8, 27, 5602, 300 }, + [57] = { 5.7, 26.5, 5602, 300 }, + [58] = { 6.8, 25.1, 5602, 300 }, + }, + }, + [2003409] = { + ["coords"] = { + [1] = { 48.2, 62.1, 11, 300 }, + [2] = { 49.7, 60.8, 11, 300 }, + [3] = { 38, 71.8, 14, 300 }, + [4] = { 65.1, 34.6, 17, 300 }, + [5] = { 63.4, 77.8, 38, 300 }, + [6] = { 62.4, 77.7, 38, 300 }, + [7] = { 61.2, 77, 38, 300 }, + [8] = { 59, 71.8, 38, 300 }, + [9] = { 19.5, 67.8, 46, 300 }, + [10] = { 20.5, 65.2, 46, 300 }, + [11] = { 16.4, 64.4, 46, 300 }, + [12] = { 17.8, 64.2, 46, 300 }, + [13] = { 17.2, 63.9, 46, 300 }, + [14] = { 15.7, 62.5, 46, 300 }, + [15] = { 43.8, 54.6, 267, 300 }, + [16] = { 43, 53.7, 267, 300 }, + [17] = { 42, 52.1, 267, 300 }, + [18] = { 41.7, 51.3, 267, 300 }, + [19] = { 43, 50.7, 267, 300 }, + [20] = { 30.7, 36.1, 440, 300 }, + [21] = { 31.7, 35.4, 440, 300 }, + [22] = { 31.6, 35.4, 440, 300 }, + [23] = { 31.8, 35.4, 440, 300 }, + [24] = { 58.5, 22.3, 440, 300 }, + [25] = { 77.6, 63.5, 490, 300 }, + [26] = { 79.4, 62.3, 490, 300 }, + [27] = { 79.3, 62.3, 490, 300 }, + [28] = { 79.6, 62.2, 490, 300 }, + [29] = { 38.7, 13.1, 490, 300 }, + [30] = { 97.9, 16.6, 5179, 300 }, + [31] = { 97.1, 15.8, 5179, 300 }, + [32] = { 96.3, 14.5, 5179, 300 }, + [33] = { 96.1, 13.8, 5179, 300 }, + [34] = { 97.2, 13.2, 5179, 300 }, + [35] = { 95.5, 94, 5581, 300 }, + [36] = { 96.4, 91.6, 5581, 300 }, + [37] = { 92.7, 91, 5581, 300 }, + [38] = { 94, 90.8, 5581, 300 }, + [39] = { 93.4, 90.5, 5581, 300 }, + [40] = { 92.1, 89.2, 5581, 300 }, + [41] = { 31, 84.1, 5602, 300 }, + [42] = { 30.5, 84.1, 5602, 300 }, + [43] = { 29.9, 83.7, 5602, 300 }, + [44] = { 28.7, 81.1, 5602, 300 }, + [45] = { 5.8, 26.7, 5602, 300 }, + [46] = { 6.9, 25.6, 5602, 300 }, + }, + }, + [2003410] = { + ["coords"] = { + [1] = { 48.3, 62.3, 11, 300 }, + [2] = { 63.4, 78, 38, 300 }, + [3] = { 19.4, 67.9, 46, 300 }, + [4] = { 19.5, 67.7, 46, 300 }, + [5] = { 20.5, 65, 46, 300 }, + [6] = { 16.4, 64.4, 46, 300 }, + [7] = { 17.2, 64, 46, 300 }, + [8] = { 15.8, 62.6, 46, 300 }, + [9] = { 43.8, 54.5, 267, 300 }, + [10] = { 43.3, 51.6, 267, 300 }, + [11] = { 41.8, 51, 267, 300 }, + [12] = { 41.9, 50.6, 267, 300 }, + [13] = { 31.9, 35.3, 440, 300 }, + [14] = { 79.8, 62.2, 490, 300 }, + [15] = { 97.9, 16.5, 5179, 300 }, + [16] = { 97.4, 14, 5179, 300 }, + [17] = { 96.1, 13.4, 5179, 300 }, + [18] = { 96.2, 13.2, 5179, 300 }, + [19] = { 96.2, 13.1, 5179, 300 }, + [20] = { 95.4, 94.1, 5581, 300 }, + [21] = { 95.5, 93.9, 5581, 300 }, + [22] = { 96.4, 91.5, 5581, 300 }, + [23] = { 92.7, 90.9, 5581, 300 }, + [24] = { 93.5, 90.6, 5581, 300 }, + [25] = { 92.2, 89.3, 5581, 300 }, + [26] = { 31, 84.2, 5602, 300 }, + [27] = { 5.8, 26.8, 5602, 300 }, + }, + }, + [2003411] = { + ["coords"] = { + [1] = { 28.7, 61.9, 16, 300 }, + [2] = { 30.5, 37.7, 440, 300 }, + [3] = { 31.7, 35.4, 440, 300 }, + [4] = { 77.3, 66.6, 490, 300 }, + [5] = { 79.5, 62.3, 490, 300 }, + [6] = { 39, 13, 490, 300 }, + }, + }, + [2003412] = { + ["coords"] = {}, + }, + [2003413] = { + ["coords"] = { + [1] = { 48.9, 61.1, 11, 300 }, + [2] = { 55.2, 97.4, 14, 300 }, + [3] = { 74.9, 51.4, 17, 300 }, + [4] = { 74.1, 47.9, 17, 300 }, + [5] = { 44.2, 98.8, 28, 300 }, + [6] = { 81, 51.8, 36, 300 }, + [7] = { 67.4, 82.8, 130, 300 }, + [8] = { 14, 49.3, 267, 300 }, + [9] = { 76, 42.1, 357, 300 }, + [10] = { 66.5, 24.1, 440, 300 }, + [11] = { 21.2, 37.4, 1519, 300 }, + [12] = { 71.8, 12, 5179, 300 }, + [13] = { 27.9, 97.5, 5581, 300 }, + [14] = { 6.3, 25.9, 5602, 300 }, + }, + }, + [2003414] = { + ["coords"] = { + [1] = { 49.1, 61.1, 11, 300 }, + [2] = { 74.9, 51.5, 17, 300 }, + [3] = { 44.1, 98.7, 28, 300 }, + [4] = { 80.8, 51.6, 36, 300 }, + [5] = { 67.6, 82.8, 130, 300 }, + [6] = { 14.2, 49.3, 267, 300 }, + [7] = { 21.2, 36.3, 1519, 300 }, + [8] = { 72, 12, 5179, 300 }, + [9] = { 27.9, 96.9, 5581, 300 }, + [10] = { 6.4, 25.9, 5602, 300 }, + }, + }, + [2003415] = { + ["coords"] = {}, + }, + [2003416] = { + ["coords"] = { + [1] = { 28.3, 58.1, 141, 300 }, + [2] = { 28.1, 57.8, 141, 300 }, + [3] = { 53.4, 53.5, 1657, 300 }, + [4] = { 52.4, 52.4, 1657, 300 }, + }, + }, + [2003417] = { + ["coords"] = { + [1] = { 32.7, 49.1, 10, 300 }, + }, + }, + [2003418] = { + ["coords"] = { + [1] = { 34, 49.2, 10, 300 }, + [2] = { 33.1, 48.4, 10, 300 }, + }, + }, + [2003419] = { + ["coords"] = { + [1] = { 76, 42.1, 357, 300 }, + }, + }, + [2003420] = { + ["coords"] = {}, + }, + [2003421] = { + ["coords"] = {}, + }, + [2003422] = { + ["coords"] = { + [1] = { 49.2, 61.1, 11, 300 }, + [2] = { 61.3, 44.6, 409, 300 }, + [3] = { 61.3, 44.5, 409, 300 }, + [4] = { 6.6, 25.9, 5602, 300 }, + }, + }, + [2003423] = { + ["coords"] = { + [1] = { 80.9, 61, 28, 300 }, + [2] = { 81, 60.9, 28, 300 }, + [3] = { 80.8, 60.7, 28, 300 }, + [4] = { 80.9, 60.6, 28, 300 }, + [5] = { 22.6, 84.6, 139, 300 }, + [6] = { 22.7, 84.5, 139, 300 }, + [7] = { 22.8, 84.5, 139, 300 }, + [8] = { 22.6, 84.2, 139, 300 }, + [9] = { 22.6, 84.1, 139, 300 }, + }, + }, + [2003424] = { + ["coords"] = { + [1] = { 33.7, 49, 10, 300 }, + [2] = { 33.6, 49, 10, 300 }, + [3] = { 33.1, 48.7, 10, 300 }, + [4] = { 49, 60.8, 11, 300 }, + [5] = { 49, 60.7, 11, 300 }, + [6] = { 55.4, 97.4, 14, 300 }, + [7] = { 37.5, 71.7, 14, 300 }, + [8] = { 45, 14.9, 14, 300 }, + [9] = { 41.8, 74.2, 15, 300 }, + [10] = { 42, 74.1, 15, 300 }, + [11] = { 42.3, 72.8, 15, 300 }, + [12] = { 77, 55.9, 15, 300 }, + [13] = { 74.2, 47.9, 17, 300 }, + [14] = { 64.8, 34.5, 17, 300 }, + [15] = { 61.5, 23.7, 17, 300 }, + [16] = { 54.1, 1, 17, 300 }, + [17] = { 54.2, 0.9, 17, 300 }, + [18] = { 44, 98.3, 28, 300 }, + [19] = { 33.8, 17.7, 28, 300 }, + [20] = { 37.6, 66.6, 33, 300 }, + [21] = { 80.7, 51, 36, 300 }, + [22] = { 80.6, 51, 36, 300 }, + [23] = { 80.7, 50.9, 36, 300 }, + [24] = { 60, 77.2, 38, 300 }, + [25] = { 34.8, 10.1, 45, 300 }, + [26] = { 34.7, 10.1, 45, 300 }, + [27] = { 17.7, 66.2, 46, 300 }, + [28] = { 14.1, 71.8, 47, 300 }, + [29] = { 4.6, 62.1, 85, 300 }, + [30] = { 4.6, 61.7, 85, 300 }, + [31] = { 4.7, 61.7, 85, 300 }, + [32] = { 23.7, 58.5, 85, 300 }, + [33] = { 17.3, 49.4, 85, 300 }, + [34] = { 17.4, 49.4, 85, 300 }, + [35] = { 17.2, 49, 85, 300 }, + [36] = { 90.1, 32.5, 85, 300 }, + [37] = { 67.4, 83.2, 130, 300 }, + [38] = { 67.3, 83.1, 130, 300 }, + [39] = { 67.8, 83.1, 130, 300 }, + [40] = { 67.6, 83.1, 130, 300 }, + [41] = { 67.6, 83, 130, 300 }, + [42] = { 9.4, 22.4, 139, 300 }, + [43] = { 42.1, 53, 267, 300 }, + [44] = { 14, 49.8, 267, 300 }, + [45] = { 13.9, 49.7, 267, 300 }, + [46] = { 14.5, 49.7, 267, 300 }, + [47] = { 14.2, 49.7, 267, 300 }, + [48] = { 14.2, 49.6, 267, 300 }, + [49] = { 79, 81.3, 331, 300 }, + [50] = { 79.2, 81.2, 331, 300 }, + [51] = { 74.1, 60.7, 331, 300 }, + [52] = { 73.9, 60.4, 331, 300 }, + [53] = { 72.2, 57.4, 331, 300 }, + [54] = { 73.2, 56.7, 331, 300 }, + [55] = { 73.2, 56.6, 331, 300 }, + [56] = { 37, 51.5, 406, 300 }, + [57] = { 37, 51.4, 406, 300 }, + [58] = { 60.9, 44.6, 409, 300 }, + [59] = { 61.1, 44.3, 409, 300 }, + [60] = { 31.1, 38, 440, 300 }, + [61] = { 78.3, 67.2, 490, 300 }, + [62] = { 49.4, 30.7, 618, 300 }, + [63] = { 30, 14, 1519, 300 }, + [64] = { 40.7, 69.6, 2040, 25 }, + [65] = { 40.9, 69.5, 2040, 25 }, + [66] = { 40.9, 68.9, 2040, 25 }, + [67] = { 40.7, 68.8, 2040, 25 }, + [68] = { 41.1, 68.4, 2040, 25 }, + [69] = { 41, 68.1, 2040, 25 }, + [70] = { 71.1, 45, 2040, 300 }, + [71] = { 96.4, 15.2, 5179, 300 }, + [72] = { 71.9, 12.4, 5179, 300 }, + [73] = { 71.8, 12.4, 5179, 300 }, + [74] = { 72.3, 12.3, 5179, 300 }, + [75] = { 72.1, 12.3, 5179, 300 }, + [76] = { 71.8, 12.3, 5179, 300 }, + [77] = { 50.1, 83.9, 5225, 300 }, + [78] = { 57.2, 35.1, 5225, 25 }, + [79] = { 57.2, 34.8, 5225, 25 }, + [80] = { 57.3, 34.6, 5225, 25 }, + [81] = { 57.3, 34.4, 5225, 25 }, + [82] = { 71.6, 23.5, 5225, 300 }, + [83] = { 93.9, 92.6, 5581, 300 }, + [84] = { 32.6, 84.9, 5581, 300 }, + [85] = { 29.3, 83.8, 5602, 300 }, + [86] = { 6.4, 25.6, 5602, 300 }, + }, + }, + [2003425] = { + ["coords"] = { + [1] = { 81.1, 60.8, 28, 300 }, + [2] = { 27.8, 77.2, 33, 300 }, + [3] = { 57.8, 32, 41, 300 }, + [4] = { 20.8, 68.9, 85, 300 }, + [5] = { 22.9, 84.3, 139, 300 }, + [6] = { 51.1, 62, 357, 300 }, + [7] = { 31.1, 90.6, 405, 300 }, + [8] = { 56.5, 51.1, 1497, 300 }, + [9] = { 58.6, 33, 1497, 300 }, + }, + }, + [2003426] = { + ["coords"] = { + [1] = { 37.8, 71.8, 14, 300 }, + [2] = { 65, 34.5, 17, 300 }, + [3] = { 62, 77.5, 38, 300 }, + [4] = { 30.3, 84, 5602, 300 }, + }, + }, + [2003427] = { + ["coords"] = {}, + }, + [2003428] = { + ["coords"] = { + [1] = { 34, 49, 10, 300 }, + [2] = { 49.1, 60.9, 11, 300 }, + [3] = { 74.9, 51.4, 17, 300 }, + [4] = { 61.4, 24.1, 17, 300 }, + [5] = { 44.3, 98.6, 28, 300 }, + [6] = { 81.2, 51.5, 36, 300 }, + [7] = { 11.9, 45.5, 47, 300 }, + [8] = { 17.3, 49.1, 85, 300 }, + [9] = { 67.6, 83.1, 130, 300 }, + [10] = { 55.8, 59, 141, 300 }, + [11] = { 42.2, 53, 267, 300 }, + [12] = { 14.2, 49.7, 267, 300 }, + [13] = { 96.8, 4.8, 267, 300 }, + [14] = { 75.9, 42.2, 357, 300 }, + [15] = { 21.3, 37, 1519, 300 }, + [16] = { 29.4, 11, 1519, 300 }, + [17] = { 96.5, 15.2, 5179, 300 }, + [18] = { 72, 12.4, 5179, 300 }, + [19] = { 83.8, 77.3, 5208, 300 }, + [20] = { 39.6, 42.9, 5208, 300 }, + [21] = { 28, 97.3, 5581, 300 }, + [22] = { 32.3, 83.3, 5581, 300 }, + [23] = { 6.4, 25.7, 5602, 300 }, + }, + }, + [2003429] = { + ["coords"] = { + [1] = { 24.1, 33.5, 1, 300 }, + [2] = { 23.9, 30.7, 1, 300 }, + [3] = { 23.6, 58.6, 85, 300 }, + [4] = { 12, 53.3, 85, 300 }, + [5] = { 61, 44.5, 409, 300 }, + [6] = { 60.8, 44.5, 409, 300 }, + [7] = { 61.4, 44.3, 409, 300 }, + [8] = { 61.4, 43.7, 409, 300 }, + [9] = { 72.3, 44.6, 721, 300 }, + [10] = { 70.6, 20.9, 721, 300 }, + [11] = { 58.7, 55, 1497, 300 }, + [12] = { 56.3, 38.5, 1497, 300 }, + [13] = { 73.7, 36.4, 1497, 300 }, + [14] = { 62.6, 29.4, 1497, 300 }, + [15] = { 42.1, 80.7, 1519, 300 }, + [16] = { 42.2, 80, 1519, 300 }, + [17] = { 42.4, 79.6, 1519, 300 }, + [18] = { 67.7, 28.6, 1519, 300 }, + [19] = { 52.8, 92.7, 5581, 300 }, + }, + }, + [2003430] = { + ["coords"] = { + [1] = { 33.1, 17.5, 28, 300 }, + [2] = { 21.3, 68.5, 85, 300 }, + [3] = { 89.4, 32.2, 85, 300 }, + [4] = { 60.3, 44.5, 409, 300 }, + [5] = { 66.6, 24.3, 440, 300 }, + [6] = { 83.4, 78.8, 5208, 300 }, + }, + }, + [2003431] = { + ["coords"] = { + [1] = { 64.3, 16.3, 4, 300 }, + [2] = { 64.9, 16.2, 4, 300 }, + [3] = { 64.3, 16, 4, 300 }, + [4] = { 63.8, 15.8, 4, 300 }, + [5] = { 51, 36, 33, 300 }, + [6] = { 60.8, 23.6, 361, 300 }, + [7] = { 64, 46.7, 1519, 25 }, + }, + }, + [2003432] = { + ["coords"] = { + [1] = { 64.2, 16.8, 4, 300 }, + [2] = { 73.8, 49.6, 17, 300 }, + [3] = { 80.9, 60.8, 28, 300 }, + [4] = { 33.9, 17.6, 28, 0 }, + [5] = { 34.8, 10, 45, 300 }, + [6] = { 14.2, 71.7, 47, 300 }, + [7] = { 90.1, 32.4, 85, 0 }, + [8] = { 22.6, 84.3, 139, 300 }, + [9] = { 51.2, 62.4, 357, 300 }, + [10] = { 66.6, 24.2, 440, 300 }, + [11] = { 71, 30.4, 1497, 300 }, + [12] = { 67, 28.7, 1519, 300 }, + [13] = { 66.3, 27.5, 1519, 300 }, + [14] = { 52.4, 92.8, 5581, 300 }, + [15] = { 52.1, 92.1, 5581, 300 }, + }, + }, + [2003433] = { + ["coords"] = { + [1] = { 33.8, 48.6, 10, 300 }, + [2] = { 33.4, 48.2, 10, 300 }, + [3] = { 48.9, 60.9, 11, 300 }, + [4] = { 49.1, 60.4, 11, 300 }, + [5] = { 58, 99.6, 14, 300 }, + [6] = { 55.3, 97.4, 14, 300 }, + [7] = { 58.7, 27.3, 14, 300 }, + [8] = { 75.6, 49.6, 17, 300 }, + [9] = { 75.5, 49.1, 17, 300 }, + [10] = { 74.1, 47.9, 17, 300 }, + [11] = { 44.3, 98.6, 28, 300 }, + [12] = { 44, 98.3, 28, 300 }, + [13] = { 44.4, 98.2, 28, 300 }, + [14] = { 29.5, 44.7, 28, 300 }, + [15] = { 81.1, 51.4, 36, 300 }, + [16] = { 80.7, 51, 36, 300 }, + [17] = { 81.4, 50.9, 36, 300 }, + [18] = { 35.1, 10.3, 45, 300 }, + [19] = { 34.8, 10, 45, 300 }, + [20] = { 14.4, 72, 47, 300 }, + [21] = { 14.1, 71.7, 47, 300 }, + [22] = { 86, 58.1, 85, 300 }, + [23] = { 67.6, 83.6, 130, 300 }, + [24] = { 67.5, 83.1, 130, 300 }, + [25] = { 14.3, 50.3, 267, 300 }, + [26] = { 14.1, 49.7, 267, 300 }, + [27] = { 60.6, 23.3, 361, 300 }, + [28] = { 31.3, 90.8, 405, 300 }, + [29] = { 31.5, 90.5, 405, 300 }, + [30] = { 37, 51.6, 406, 300 }, + [31] = { 61.5, 43.6, 409, 300 }, + [32] = { 61.1, 43.6, 409, 300 }, + [33] = { 59.1, 43.3, 409, 300 }, + [34] = { 60.2, 40, 409, 300 }, + [35] = { 49.8, 31.9, 618, 300 }, + [36] = { 74.4, 39.3, 1497, 300 }, + [37] = { 37, 75.2, 1519, 300 }, + [38] = { 67.2, 28.3, 1519, 300 }, + [39] = { 66.7, 27.3, 1519, 300 }, + [40] = { 30, 14.3, 1519, 300 }, + [41] = { 29.1, 10.2, 1519, 300 }, + [42] = { 72.1, 12.8, 5179, 300 }, + [43] = { 72, 12.3, 5179, 300 }, + [44] = { 83, 80.3, 5208, 300 }, + [45] = { 84.4, 78.1, 5208, 300 }, + [46] = { 44.6, 57, 5225, 300 }, + [47] = { 52.5, 92.5, 5581, 300 }, + [48] = { 52.3, 92, 5581, 300 }, + [49] = { 32.6, 85, 5581, 300 }, + [50] = { 32.1, 82.9, 5581, 300 }, + [51] = { 6.3, 25.7, 5602, 300 }, + [52] = { 6.4, 25.4, 5602, 300 }, + }, + }, + [2003434] = { + ["coords"] = { + [1] = { 64.6, 15.3, 4, 300 }, + [2] = { 33.5, 48.8, 10, 300 }, + [3] = { 33.8, 48.7, 10, 300 }, + [4] = { 49, 61, 11, 300 }, + [5] = { 48.9, 60.6, 11, 300 }, + [6] = { 58.1, 99.4, 14, 300 }, + [7] = { 55.4, 97.3, 14, 300 }, + [8] = { 58.7, 27.1, 14, 300 }, + [9] = { 75.5, 49.5, 17, 300 }, + [10] = { 75.6, 49, 17, 300 }, + [11] = { 74.1, 47.9, 17, 300 }, + [12] = { 44.3, 98.3, 28, 300 }, + [13] = { 81.1, 51, 36, 300 }, + [14] = { 81.1, 50.9, 36, 300 }, + [15] = { 79.6, 25.2, 85, 300 }, + [16] = { 67.6, 83.3, 130, 300 }, + [17] = { 67.4, 83, 130, 300 }, + [18] = { 67.8, 83, 130, 300 }, + [19] = { 67.5, 82.9, 130, 300 }, + [20] = { 26.7, 64.9, 141, 300 }, + [21] = { 14.3, 50, 267, 300 }, + [22] = { 14, 49.5, 267, 300 }, + [23] = { 14.5, 49.5, 267, 300 }, + [24] = { 14.1, 49.4, 267, 300 }, + [25] = { 37.1, 51.5, 406, 300 }, + [26] = { 61.7, 44.4, 409, 300 }, + [27] = { 59.2, 43.7, 409, 300 }, + [28] = { 75.8, 39.1, 1497, 300 }, + [29] = { 61, 64.4, 1519, 300 }, + [30] = { 67.7, 26.9, 1519, 300 }, + [31] = { 28, 15, 1519, 300 }, + [32] = { 30.3, 14.4, 1519, 300 }, + [33] = { 45.8, 86.5, 1657, 300 }, + [34] = { 72.1, 12.6, 5179, 300 }, + [35] = { 71.9, 12.2, 5179, 300 }, + [36] = { 72.3, 12.2, 5179, 300 }, + [37] = { 72, 12.1, 5179, 300 }, + [38] = { 82.3, 79.7, 5208, 300 }, + [39] = { 82.9, 78.2, 5208, 300 }, + [40] = { 82, 69.7, 5208, 300 }, + [41] = { 81.7, 69.4, 5208, 300 }, + [42] = { 52.8, 91.8, 5581, 300 }, + [43] = { 31.5, 85.4, 5581, 300 }, + [44] = { 32.8, 85.1, 5581, 300 }, + [45] = { 6.4, 25.8, 5602, 300 }, + [46] = { 6.3, 25.5, 5602, 300 }, + }, + }, + [2003435] = { + ["coords"] = {}, + }, + [2003436] = { + ["coords"] = { + [1] = { 54.4, 18.7, 33, 300 }, + }, + }, + [2003437] = { + ["coords"] = { + [1] = { 84.9, 79.2, 12, 300 }, + [2] = { 37.8, 71.5, 14, 300 }, + [3] = { 53.2, 43.5, 14, 300 }, + [4] = { 44.6, 12.9, 14, 300 }, + [5] = { 42, 73.1, 15, 25 }, + [6] = { 45.9, 85.7, 17, 300 }, + [7] = { 64.7, 34.6, 17, 300 }, + [8] = { 65, 34.4, 17, 300 }, + [9] = { 79.1, 66.9, 28, 300 }, + [10] = { 78.7, 66.9, 28, 300 }, + [11] = { 81.1, 61.6, 28, 300 }, + [12] = { 43.3, 80.5, 33, 300 }, + [13] = { 43.1, 79.6, 33, 300 }, + [14] = { 53.1, 98.9, 36, 300 }, + [15] = { 82.2, 62.9, 38, 25 }, + [16] = { 78.7, 80.6, 47, 300 }, + [17] = { 29.7, 72.4, 85, 300 }, + [18] = { 21.1, 68.4, 85, 300 }, + [19] = { 16.5, 54.3, 85, 300 }, + [20] = { 22.8, 85.2, 139, 300 }, + [21] = { 56.8, 11.4, 148, 25 }, + [22] = { 55.3, 35, 267, 300 }, + [23] = { 35.1, 52.2, 331, 300 }, + [24] = { 20.8, 31.8, 331, 300 }, + [25] = { 83.5, 55.1, 400, 25 }, + [26] = { 83.2, 54.6, 400, 25 }, + [27] = { 30.8, 89.9, 405, 300 }, + [28] = { 60.1, 39.7, 409, 300 }, + [29] = { 58.1, 22.5, 440, 300 }, + [30] = { 38.7, 11.4, 490, 300 }, + [31] = { 45.8, 98.4, 1637, 300 }, + [32] = { 51.2, 34.2, 5121, 300 }, + [33] = { 33.1, 76.1, 5179, 300 }, + [34] = { 39.7, 44.4, 5208, 300 }, + [35] = { 40.7, 76.5, 5602, 25 }, + }, + }, + [2003438] = { + ["coords"] = { + [1] = { 25.9, 46.9, 28, 300 }, + [2] = { 29.3, 44.9, 28, 300 }, + [3] = { 82.6, 60.3, 85, 300 }, + [4] = { 85.8, 58.4, 85, 300 }, + [5] = { 85.8, 58.3, 85, 300 }, + [6] = { 85.8, 57.2, 85, 300 }, + }, + }, + [2003439] = { + ["coords"] = { + [1] = { 25.9, 46.9, 28, 300 }, + [2] = { 29.3, 44.9, 28, 300 }, + [3] = { 29.2, 44.7, 28, 300 }, + [4] = { 82.5, 60.3, 85, 300 }, + [5] = { 85.8, 58.4, 85, 300 }, + [6] = { 85.7, 58.1, 85, 300 }, + [7] = { 85.8, 57.2, 85, 300 }, + }, + }, + [2003440] = { + ["coords"] = { + [1] = { 34.1, 48.5, 10, 300 }, + [2] = { 61.8, 38.6, 17, 300 }, + [3] = { 44.3, 98.2, 28, 300 }, + [4] = { 80.7, 60.7, 28, 300 }, + [5] = { 81.1, 50.7, 36, 300 }, + [6] = { 62, 75, 38, 300 }, + [7] = { 89.8, 22.5, 46, 300 }, + [8] = { 11, 46.8, 47, 300 }, + [9] = { 67.6, 83.5, 130, 300 }, + [10] = { 22.5, 84.2, 139, 300 }, + [11] = { 42.1, 53.4, 267, 300 }, + [12] = { 14.3, 50.2, 267, 300 }, + [13] = { 95.8, 6.3, 267, 300 }, + [14] = { 50.8, 61.7, 357, 300 }, + [15] = { 48.7, 60.4, 406, 300 }, + [16] = { 37.1, 51.6, 406, 300 }, + [17] = { 49.5, 30.2, 618, 300 }, + [18] = { 57.9, 54.7, 876, 300 }, + [19] = { 21.7, 37, 1519, 300 }, + [20] = { 51.1, 34.5, 5121, 300 }, + [21] = { 96.4, 15.6, 5179, 300 }, + [22] = { 72.1, 12.7, 5179, 300 }, + [23] = { 28.1, 97.2, 5581, 300 }, + [24] = { 30.3, 82.7, 5602, 300 }, + }, + }, + [2003441] = { + ["coords"] = { + [1] = { 51.2, 45.4, 8, 300 }, + [2] = { 48.8, 60.3, 11, 300 }, + [3] = { 46.1, 45.9, 15, 300 }, + [4] = { 74.8, 51.5, 17, 300 }, + [5] = { 61.8, 38.6, 17, 300 }, + [6] = { 44.3, 98.1, 28, 300 }, + [7] = { 80.7, 60.7, 28, 300 }, + [8] = { 81.1, 50.7, 36, 300 }, + [9] = { 89.4, 22.3, 46, 300 }, + [10] = { 67.6, 83.4, 130, 300 }, + [11] = { 22.4, 84.2, 139, 300 }, + [12] = { 14.3, 50.2, 267, 300 }, + [13] = { 38.5, 11, 490, 300 }, + [14] = { 50.2, 29.9, 618, 300 }, + [15] = { 23.6, 36.9, 1519, 300 }, + [16] = { 72.1, 12.7, 5179, 300 }, + [17] = { 29.2, 97.2, 5581, 300 }, + [18] = { 6.3, 25.3, 5602, 300 }, + }, + }, + [2003442] = { + ["coords"] = { + [1] = { 48.9, 49.1, 8, 300 }, + [2] = { 32.7, 47.5, 10, 300 }, + [3] = { 37.7, 72.2, 14, 300 }, + [4] = { 46.2, 46, 15, 300 }, + [5] = { 29.1, 70.7, 16, 300 }, + [6] = { 42.6, 93, 17, 300 }, + [7] = { 74.8, 51.5, 17, 300 }, + [8] = { 61.8, 38.6, 17, 300 }, + [9] = { 64.9, 34.8, 17, 300 }, + [10] = { 61.4, 24.1, 17, 300 }, + [11] = { 98.2, 80.1, 25, 300 }, + [12] = { 35.2, 10.2, 45, 300 }, + [13] = { 40.7, 34.4, 46, 300 }, + [14] = { 89.2, 22.6, 46, 300 }, + [15] = { 89.7, 22.5, 46, 300 }, + [16] = { 14.5, 71.9, 47, 300 }, + [17] = { 21.9, 67.7, 85, 300 }, + [18] = { 78.9, 55.6, 85, 300 }, + [19] = { 16.4, 54.3, 85, 300 }, + [20] = { 16.3, 54.3, 85, 300 }, + [21] = { 67.7, 83.6, 130, 300 }, + [22] = { 42.3, 53.4, 267, 300 }, + [23] = { 14.3, 50.3, 267, 300 }, + [24] = { 73.2, 58.1, 331, 300 }, + [25] = { 73, 56.9, 331, 300 }, + [26] = { 28.6, 24, 400, 300 }, + [27] = { 49, 61.3, 406, 300 }, + [28] = { 58.1, 41.7, 409, 300 }, + [29] = { 58, 22.4, 440, 300 }, + [30] = { 58.2, 22, 440, 300 }, + [31] = { 49.6, 30.3, 618, 300 }, + [32] = { 36.9, 75.4, 1519, 300 }, + [33] = { 38.8, 60.5, 1519, 300 }, + [34] = { 21.9, 36.6, 1519, 300 }, + [35] = { 23.6, 36.1, 1519, 300 }, + [36] = { 22.6, 36.1, 1519, 300 }, + [37] = { 28.2, 15, 1519, 300 }, + [38] = { 96.6, 15.6, 5179, 300 }, + [39] = { 72.2, 12.9, 5179, 300 }, + [40] = { 28.2, 97, 5581, 300 }, + [41] = { 29.1, 96.8, 5581, 300 }, + [42] = { 28.6, 96.8, 5581, 300 }, + [43] = { 31.6, 85.4, 5581, 300 }, + }, + }, + [2003443] = { + ["coords"] = { + [1] = { 34, 48.4, 10, 300 }, + [2] = { 49, 60.3, 11, 300 }, + [3] = { 57.1, 99.1, 14, 300 }, + [4] = { 46.1, 46, 15, 300 }, + [5] = { 29.8, 71, 16, 300 }, + [6] = { 25.6, 66.4, 16, 300 }, + [7] = { 75, 48.8, 17, 300 }, + [8] = { 80.7, 63.2, 28, 300 }, + [9] = { 80.7, 60.7, 28, 300 }, + [10] = { 61.9, 74.7, 38, 300 }, + [11] = { 35.2, 10.3, 45, 300 }, + [12] = { 14.5, 71.9, 47, 300 }, + [13] = { 10.9, 47.2, 47, 300 }, + [14] = { 17.3, 49.3, 85, 300 }, + [15] = { 67.6, 83.6, 130, 300 }, + [16] = { 22.5, 87, 139, 300 }, + [17] = { 22.5, 84.2, 139, 300 }, + [18] = { 14.2, 50.4, 267, 300 }, + [19] = { 95.6, 6.8, 267, 300 }, + [20] = { 50.2, 63.7, 406, 300 }, + [21] = { 58, 22, 440, 300 }, + [22] = { 57.9, 54.9, 876, 300 }, + [23] = { 29.8, 14.5, 1519, 300 }, + [24] = { 51.1, 34.6, 5121, 300 }, + [25] = { 72.1, 12.9, 5179, 300 }, + [26] = { 32.5, 85.2, 5581, 300 }, + [27] = { 30.2, 82.5, 5602, 300 }, + [28] = { 6.4, 25.3, 5602, 300 }, + }, + }, + [2003444] = { + ["coords"] = { + [1] = { 55.3, 21.5, 5087, 300 }, + }, + }, + [2003445] = { + ["coords"] = { + [1] = { 67.3, 83.2, 25, 300 }, + [2] = { 33.2, 35.2, 46, 300 }, + }, + }, + [2003446] = { + ["coords"] = {}, + }, + [2003447] = { + ["coords"] = { + [1] = { 44.4, 73.3, 331, 300 }, + [2] = { 80, 39.6, 406, 300 }, + }, + }, + [2003448] = { + ["coords"] = {}, + }, + [2003449] = { + ["coords"] = {}, + }, + [2003450] = { + ["coords"] = { + [1] = { 48.9, 60.9, 11, 300 }, + [2] = { 31.3, 38.2, 440, 300 }, + [3] = { 78.7, 67.4, 490, 300 }, + [4] = { 39.6, 52.1, 1537, 300 }, + [5] = { 24.1, 65.9, 2040, 25 }, + [6] = { 49.3, 33.4, 5225, 25 }, + [7] = { 6.3, 25.7, 5602, 300 }, + }, + }, + [2003451] = { + ["coords"] = { + [1] = { 65, 74.3, 4012, 300 }, + }, + }, + [2003452] = { + ["coords"] = {}, + }, + [2003453] = { + ["coords"] = {}, + }, + [2003454] = { + ["coords"] = { + [1] = { 57, 43.7, 409, 300 }, + }, + }, + [2003455] = { + ["coords"] = { + [1] = { 33.3, 48.6, 10, 300 }, + [2] = { 10.1, 57.6, 11, 0 }, + [3] = { 42.3, 68.1, 14, 300 }, + [4] = { 58.7, 26.5, 14, 300 }, + [5] = { 57.5, 24.9, 14, 300 }, + [6] = { 44.9, 91.8, 16, 300 }, + [7] = { 44.3, 45.1, 16, 300 }, + [8] = { 29.4, 44.8, 28, 300 }, + [9] = { 90.1, 22.5, 46, 300 }, + [10] = { 20.9, 69.1, 85, 300 }, + [11] = { 85.9, 58.3, 85, 300 }, + [12] = { 31.8, 46, 85, 300 }, + [13] = { 72.9, 55.8, 331, 300 }, + [14] = { 51.2, 62.4, 357, 300 }, + [15] = { 60.9, 44.7, 409, 300 }, + [16] = { 57.2, 43.7, 409, 300 }, + [17] = { 24.6, 72, 440, 300 }, + [18] = { 31.1, 37.8, 440, 300 }, + [19] = { 78.4, 66.8, 490, 300 }, + [20] = { 49.9, 31.7, 618, 300 }, + [21] = { 66.8, 27.3, 1519, 300 }, + [22] = { 52.3, 92, 5581, 300 }, + }, + }, + [2003456] = { + ["coords"] = { + [1] = { 23.3, 28.9, 1, 300 }, + [2] = { 50.3, 47.3, 8, 300 }, + [3] = { 49, 60.8, 11, 300 }, + [4] = { 42.5, 67.9, 14, 300 }, + [5] = { 58.1, 25.4, 14, 300 }, + [6] = { 57.5, 25, 14, 300 }, + [7] = { 35.2, 10.5, 45, 300 }, + [8] = { 14.5, 72.1, 47, 300 }, + [9] = { 23.7, 58.4, 85, 300 }, + [10] = { 12.1, 53.2, 85, 300 }, + [11] = { 44, 75.8, 215, 300 }, + [12] = { 61.4, 44.6, 409, 300 }, + [13] = { 61.1, 43.6, 409, 300 }, + [14] = { 59, 43.4, 409, 300 }, + [15] = { 31.2, 37.7, 440, 300 }, + [16] = { 78.5, 66.6, 490, 300 }, + [17] = { 65.4, 5, 721, 300 }, + [18] = { 29.7, 10.8, 1519, 300 }, + [19] = { 40.9, 51, 1537, 300 }, + [20] = { 63.3, 33.6, 4012, 300 }, + [21] = { 83.8, 79.4, 5208, 300 }, + [22] = { 32.4, 83.2, 5581, 300 }, + [23] = { 56.6, 52.9, 5601, 604800 }, + [24] = { 6.4, 25.7, 5602, 300 }, + }, + }, + [2003457] = { + ["coords"] = { + [1] = { 48, 51.7, 8, 300 }, + [2] = { 33.5, 49, 10, 300 }, + [3] = { 33.3, 48.8, 10, 300 }, + [4] = { 33.1, 48.7, 10, 300 }, + [5] = { 48.9, 60.9, 11, 300 }, + [6] = { 49, 60.3, 11, 300 }, + [7] = { 84.4, 79.6, 12, 300 }, + [8] = { 42.3, 68.1, 14, 300 }, + [9] = { 58.7, 27.4, 14, 300 }, + [10] = { 57.6, 24.9, 14, 300 }, + [11] = { 57.5, 24.9, 14, 300 }, + [12] = { 44.9, 15.3, 14, 300 }, + [13] = { 44.3, 45.1, 16, 300 }, + [14] = { 44.4, 44.8, 16, 300 }, + [15] = { 51.1, 37.8, 16, 300 }, + [16] = { 75.5, 49.6, 17, 300 }, + [17] = { 61.6, 23.7, 17, 300 }, + [18] = { 44.3, 98.6, 28, 300 }, + [19] = { 29.4, 44.7, 28, 300 }, + [20] = { 81.2, 51.4, 36, 300 }, + [21] = { 51.3, 25.3, 45, 300 }, + [22] = { 90.1, 22.6, 46, 300 }, + [23] = { 89.3, 22.4, 46, 300 }, + [24] = { 29.6, 86, 47, 300 }, + [25] = { 20.9, 69.1, 85, 300 }, + [26] = { 21.6, 69, 85, 300 }, + [27] = { 21.7, 68.9, 85, 300 }, + [28] = { 23.6, 58.7, 85, 300 }, + [29] = { 85.9, 58.1, 85, 300 }, + [30] = { 12.2, 53.2, 85, 300 }, + [31] = { 17.2, 49.1, 85, 300 }, + [32] = { 67.4, 83.2, 130, 300 }, + [33] = { 42.5, 51.8, 267, 300 }, + [34] = { 14, 49.8, 267, 300 }, + [35] = { 51.2, 62.4, 357, 300 }, + [36] = { 51.1, 62.4, 357, 300 }, + [37] = { 37.1, 51.4, 406, 300 }, + [38] = { 61, 43.9, 409, 300 }, + [39] = { 61.6, 43.9, 409, 300 }, + [40] = { 59, 43.4, 409, 300 }, + [41] = { 31.1, 37.9, 440, 300 }, + [42] = { 31.2, 37.8, 440, 300 }, + [43] = { 78.3, 67, 490, 300 }, + [44] = { 78.5, 66.8, 490, 300 }, + [45] = { 22, 37.5, 1519, 300 }, + [46] = { 67.7, 27.1, 1519, 300 }, + [47] = { 67.7, 27, 1519, 300 }, + [48] = { 29.9, 14.7, 1519, 300 }, + [49] = { 29.7, 10.9, 1519, 300 }, + [50] = { 29.5, 10.1, 1519, 300 }, + [51] = { 41.2, 57, 1537, 300 }, + [52] = { 41.2, 56.9, 1537, 300 }, + [53] = { 96.8, 14.2, 5179, 300 }, + [54] = { 71.9, 12.4, 5179, 300 }, + [55] = { 83, 80.7, 5208, 300 }, + [56] = { 39.7, 42.6, 5208, 300 }, + [57] = { 39.8, 42.6, 5208, 300 }, + [58] = { 30.9, 56.9, 5561, 300 }, + [59] = { 28.3, 97.5, 5581, 300 }, + [60] = { 52.8, 91.9, 5581, 300 }, + [61] = { 32.6, 85.3, 5581, 300 }, + [62] = { 32.4, 83.2, 5581, 300 }, + [63] = { 32.3, 82.8, 5581, 300 }, + [64] = { 51, 48.6, 5581, 300 }, + [65] = { 56.6, 53, 5601, 604800 }, + [66] = { 56.6, 52.9, 5601, 604800 }, + [67] = { 56.7, 52.9, 5601, 604800 }, + [68] = { 6.3, 25.7, 5602, 300 }, + [69] = { 6.4, 25.3, 5602, 300 }, + }, + }, + [2003458] = { + ["coords"] = { + [1] = { 48.1, 51.4, 8, 300 }, + [2] = { 10, 57.6, 11, 0 }, + [3] = { 58.7, 27.4, 14, 300 }, + [4] = { 76.8, 56.1, 15, 300 }, + [5] = { 31.6, 49.1, 33, 300 }, + [6] = { 44, 75.8, 215, 300 }, + [7] = { 76, 42.1, 357, 300 }, + [8] = { 31.5, 90.6, 405, 300 }, + [9] = { 51.3, 29.5, 618, 300 }, + [10] = { 49.4, 74.4, 1519, 300 }, + [11] = { 63.2, 33.6, 4012, 300 }, + [12] = { 56.8, 52.8, 5601, 604800 }, + }, + }, + [2003459] = { + ["coords"] = { + [1] = { 50.6, 45.7, 8, 300 }, + [2] = { 33.5, 49, 10, 300 }, + [3] = { 58.7, 27.4, 14, 300 }, + [4] = { 58.2, 25.7, 14, 300 }, + [5] = { 57.6, 24.9, 14, 300 }, + [6] = { 77.1, 56.1, 15, 300 }, + [7] = { 51.1, 37.8, 16, 300 }, + [8] = { 74.3, 32, 45, 300 }, + [9] = { 51.3, 25.3, 45, 300 }, + [10] = { 29.6, 85.9, 47, 300 }, + [11] = { 27.8, 76.7, 85, 300 }, + [12] = { 20.9, 69.1, 85, 300 }, + [13] = { 4.7, 61.4, 85, 300 }, + [14] = { 67.7, 83.6, 130, 300 }, + [15] = { 14.3, 50.4, 267, 300 }, + [16] = { 60.9, 43.9, 409, 300 }, + [17] = { 61.6, 43.8, 409, 300 }, + [18] = { 72.7, 34, 1497, 300 }, + [19] = { 67.3, 26.7, 1519, 300 }, + [20] = { 42.8, 53.8, 1537, 300 }, + [21] = { 63.2, 33.6, 4012, 300 }, + [22] = { 72.2, 12.9, 5179, 300 }, + [23] = { 52.6, 91.7, 5581, 300 }, + [24] = { 56.5, 52.9, 5601, 604800 }, + [25] = { 56.7, 52.9, 5601, 604800 }, + }, + }, + [2003460] = { + ["coords"] = { + [1] = { 32.2, 48.1, 10, 300 }, + [2] = { 77.1, 56.1, 15, 300 }, + [3] = { 75.5, 49.6, 17, 300 }, + [4] = { 61.3, 24, 17, 300 }, + [5] = { 44.3, 98, 28, 300 }, + [6] = { 43.3, 80.3, 33, 300 }, + [7] = { 81.2, 50.4, 36, 300 }, + [8] = { 77.1, 74.6, 38, 25 }, + [9] = { 42.3, 74.7, 40, 300 }, + [10] = { 90.1, 22.6, 46, 300 }, + [11] = { 51.3, 67.5, 85, 300 }, + [12] = { 23.1, 50, 85, 300 }, + [13] = { 30.5, 64.2, 141, 300 }, + [14] = { 73.2, 56.1, 331, 300 }, + [15] = { 51.2, 62.3, 357, 300 }, + [16] = { 49.2, 30.5, 618, 300 }, + [17] = { 37, 76.3, 1519, 300 }, + [18] = { 21.9, 37.4, 1519, 300 }, + [19] = { 21.5, 37.3, 1519, 300 }, + [20] = { 27.8, 15.1, 1519, 300 }, + [21] = { 29.6, 11, 1519, 300 }, + [22] = { 39.2, 52.5, 1537, 300 }, + [23] = { 56.9, 29.7, 1581, 300 }, + [24] = { 63.8, 83, 1657, 300 }, + [25] = { 51.4, 34.5, 5121, 300 }, + [26] = { 51.2, 34.2, 5121, 300 }, + [27] = { 39.8, 42.4, 5208, 300 }, + [28] = { 28.3, 97.5, 5581, 300 }, + [29] = { 28, 97.4, 5581, 300 }, + [30] = { 31.4, 85.5, 5581, 300 }, + [31] = { 32.4, 83.3, 5581, 300 }, + [32] = { 38, 82.5, 5602, 25 }, + }, + }, + [2003461] = { + ["coords"] = {}, + }, + [2003462] = { + ["coords"] = { + [1] = { 34.1, 48.5, 10, 300 }, + [2] = { 49.1, 60.5, 11, 300 }, + [3] = { 44.4, 98.4, 28, 300 }, + [4] = { 43.3, 80.3, 33, 300 }, + [5] = { 31.9, 48.5, 33, 300 }, + [6] = { 81.2, 51, 36, 300 }, + [7] = { 11.1, 46.8, 47, 300 }, + [8] = { 21.8, 68, 85, 300 }, + [9] = { 21.8, 67.9, 85, 300 }, + [10] = { 51.4, 67.7, 85, 300 }, + [11] = { 67.5, 83.5, 130, 300 }, + [12] = { 67.5, 83.3, 130, 300 }, + [13] = { 14.1, 50.3, 267, 300 }, + [14] = { 14.1, 50, 267, 300 }, + [15] = { 95.8, 6.3, 267, 300 }, + [16] = { 74.7, 42.5, 357, 300 }, + [17] = { 37.1, 51.6, 406, 300 }, + [18] = { 58.4, 41.2, 409, 300 }, + [19] = { 49.5, 30.2, 618, 300 }, + [20] = { 28.1, 15, 1519, 300 }, + [21] = { 28, 14.8, 1519, 300 }, + [22] = { 71.9, 12.8, 5179, 300 }, + [23] = { 72, 12.6, 5179, 300 }, + [24] = { 83.7, 79.5, 5208, 300 }, + [25] = { 84, 79, 5208, 300 }, + [26] = { 31.6, 85.4, 5581, 300 }, + [27] = { 31.5, 85.3, 5581, 300 }, + [28] = { 6.4, 25.4, 5602, 300 }, + }, + }, + [2003463] = { + ["coords"] = { + [1] = { 77, 55.9, 15, 300 }, + [2] = { 80.8, 63.3, 28, 300 }, + [3] = { 33.8, 17.7, 28, 300 }, + [4] = { 43.2, 80.3, 33, 300 }, + [5] = { 4.5, 62.3, 85, 300 }, + [6] = { 90.1, 32.4, 85, 300 }, + [7] = { 22.5, 87, 139, 300 }, + [8] = { 42.1, 53.4, 267, 300 }, + [9] = { 60.5, 23.6, 361, 300 }, + [10] = { 96.4, 15.6, 5179, 300 }, + }, + }, + [2003464] = { + ["coords"] = {}, + }, + [2003465] = { + ["coords"] = {}, + }, + [2003466] = { + ["coords"] = {}, + }, + [2003467] = { + ["coords"] = {}, + }, + [2003468] = { + ["coords"] = {}, + }, + [2003469] = { + ["coords"] = {}, + }, + [2003470] = { + ["coords"] = {}, + }, + [2003471] = { + ["coords"] = {}, + }, + [2003472] = { + ["coords"] = {}, + }, + [2003473] = { + ["coords"] = {}, + }, + [2003474] = { + ["coords"] = {}, + }, + [2003475] = { + ["coords"] = {}, + }, + [2003476] = { + ["coords"] = {}, + }, + [2003477] = { + ["coords"] = {}, + }, + [2003478] = { + ["coords"] = {}, + }, + [2003479] = { + ["coords"] = {}, + }, + [2003480] = { + ["coords"] = {}, + }, + [2003481] = { + ["coords"] = {}, + }, + [2003482] = { + ["coords"] = {}, + }, + [2003483] = { + ["coords"] = {}, + }, + [2003484] = { + ["coords"] = {}, + }, + [2003485] = { + ["coords"] = {}, + }, + [2003486] = { + ["coords"] = {}, + }, + [2003487] = { + ["coords"] = {}, + }, + [2003488] = { + ["coords"] = { + [1] = { 59.3, 26.4, 14, 300 }, + }, + }, + [2003489] = { + ["coords"] = { + [1] = { 60.1, 40.3, 409, 300 }, + }, + }, + [2003490] = { + ["coords"] = {}, + }, + [2003491] = { + ["coords"] = {}, + }, + [2003492] = { + ["coords"] = {}, + }, + [2003493] = { + ["coords"] = {}, + }, + [2003494] = { + ["coords"] = {}, + }, + [2003495] = { + ["coords"] = {}, + }, + [2003496] = { + ["coords"] = {}, + }, + [2003497] = { + ["coords"] = { + [1] = { 30.4, 72.1, 85, 300 }, + [2] = { 54.8, 35, 5087, 300 }, + [3] = { 57.4, 23, 5087, 300 }, + }, + }, + [2003498] = { + ["coords"] = {}, + }, + [2003499] = { + ["coords"] = { + [1] = { 68.4, 28.1, 1519, 300 }, + [2] = { 53.2, 92.4, 5581, 300 }, + }, + }, + [2003500] = { + ["coords"] = { + [1] = { 73, 28.7, 3457, 300 }, + }, + }, + [2003501] = { + ["coords"] = { + [1] = { 36.8, 18.5, 5561, 300 }, + }, + }, + [2003502] = { + ["coords"] = { + [1] = { 61, 44.7, 409, 300 }, + [2] = { 33, 76.2, 5179, 300 }, + }, + }, + [2003503] = { + ["coords"] = {}, + }, + [2003504] = { + ["coords"] = {}, + }, + [2003505] = { + ["coords"] = {}, + }, + [2003506] = { + ["coords"] = {}, + }, + [2003507] = { + ["coords"] = {}, + }, + [2003508] = { + ["coords"] = { + [1] = { 64.7, 15.8, 4, 300 }, + }, + }, + [2003509] = { + ["coords"] = {}, + }, + [2003510] = { + ["coords"] = {}, + }, + [2003511] = { + ["coords"] = {}, + }, + [2003512] = { + ["coords"] = {}, + }, + [2003513] = { + ["coords"] = {}, + }, + [2003514] = { + ["coords"] = {}, + }, + [2003515] = { + ["coords"] = {}, + }, + [2003516] = { + ["coords"] = {}, + }, + [2003517] = { + ["coords"] = {}, + }, + [2003518] = { + ["coords"] = {}, + }, + [2003519] = { + ["coords"] = {}, + }, + [2003520] = { + ["coords"] = { + [1] = { 39.1, 60.9, 1519, 300 }, + }, + }, + [2003521] = { + ["coords"] = {}, + }, + [2003522] = { + ["coords"] = { + [1] = { 69.6, 57.1, 10, 300 }, + [2] = { 49.1, 60.6, 11, 300 }, + [3] = { 77, 55.8, 15, 300 }, + [4] = { 35.1, 10.1, 45, 300 }, + [5] = { 14.4, 71.8, 47, 300 }, + [6] = { 62.7, 84.3, 5121, 300 }, + [7] = { 6.4, 25.5, 5602, 300 }, + }, + }, + [2003523] = { + ["coords"] = { + [1] = { 51, 48.6, 8, 300 }, + [2] = { 49.3, 60.5, 406, 300 }, + }, + }, + [2003524] = { + ["coords"] = { + [1] = { 34, 48.9, 10, 300 }, + [2] = { 29.9, 71, 16, 300 }, + [3] = { 36.6, 19.2, 5561, 300 }, + }, + }, + [2003525] = { + ["coords"] = { + [1] = { 80.7, 60.4, 28, 300 }, + [2] = { 83.3, 65.2, 38, 25 }, + [3] = { 22.4, 83.9, 139, 300 }, + [4] = { 48.6, 69.2, 5536, 300 }, + [5] = { 41.2, 77.6, 5602, 25 }, + }, + }, + [2003526] = { + ["coords"] = { + [1] = { 33.1, 48.8, 10, 300 }, + [2] = { 37.5, 71.6, 14, 300 }, + [3] = { 37.5, 71.5, 14, 300 }, + [4] = { 30, 71.3, 16, 300 }, + [5] = { 64.8, 34.5, 17, 300 }, + [6] = { 64.8, 34.4, 17, 300 }, + [7] = { 43.3, 80.4, 33, 300 }, + [8] = { 43.4, 80.1, 33, 300 }, + [9] = { 43.2, 80, 33, 300 }, + [10] = { 53.6, 98.8, 36, 300 }, + [11] = { 62.1, 77.6, 38, 300 }, + [12] = { 60, 77.2, 38, 300 }, + [13] = { 59.7, 77.1, 38, 300 }, + [14] = { 20, 66.9, 46, 300 }, + [15] = { 42, 10.6, 130, 300 }, + [16] = { 55.8, 34.9, 267, 300 }, + [17] = { 72.9, 55.8, 331, 300 }, + [18] = { 60.1, 39.7, 409, 300 }, + [19] = { 57.9, 38.4, 1497, 300 }, + [20] = { 58.5, 36.6, 1497, 300 }, + [21] = { 62.3, 32, 1497, 300 }, + [22] = { 33.1, 76, 5179, 300 }, + [23] = { 96, 93.2, 5581, 300 }, + [24] = { 30.4, 84, 5602, 300 }, + [25] = { 29.3, 83.8, 5602, 300 }, + [26] = { 29.1, 83.8, 5602, 300 }, + }, + }, + [2003527] = { + ["coords"] = { + [1] = { 33.6, 49, 10, 300 }, + [2] = { 33.5, 49, 10, 300 }, + [3] = { 49, 60.8, 11, 300 }, + [4] = { 58.8, 27.3, 14, 300 }, + [5] = { 58.6, 27.2, 14, 300 }, + [6] = { 57.5, 24.9, 14, 300 }, + [7] = { 75.5, 49.6, 17, 300 }, + [8] = { 62.7, 38.2, 17, 300 }, + [9] = { 44, 98.3, 28, 300 }, + [10] = { 80, 63.3, 28, 300 }, + [11] = { 80.7, 51, 36, 300 }, + [12] = { 42.3, 74.7, 40, 300 }, + [13] = { 34.8, 10.1, 45, 300 }, + [14] = { 34.8, 10, 45, 300 }, + [15] = { 14.1, 71.8, 47, 300 }, + [16] = { 14.1, 71.7, 47, 300 }, + [17] = { 21.6, 69, 85, 300 }, + [18] = { 4.8, 61.9, 85, 300 }, + [19] = { 4.6, 61.7, 85, 300 }, + [20] = { 4.6, 61.1, 85, 300 }, + [21] = { 17.4, 49.4, 85, 300 }, + [22] = { 17.2, 49, 85, 300 }, + [23] = { 67.8, 83.1, 130, 300 }, + [24] = { 67.4, 83.1, 130, 300 }, + [25] = { 41.9, 10.6, 130, 300 }, + [26] = { 42.2, 10.1, 130, 300 }, + [27] = { 21.7, 87.1, 139, 300 }, + [28] = { 42.5, 52.8, 267, 300 }, + [29] = { 14.5, 49.7, 267, 300 }, + [30] = { 13.9, 49.7, 267, 300 }, + [31] = { 37, 51.5, 406, 300 }, + [32] = { 61.1, 44.3, 409, 300 }, + [33] = { 61.3, 43.7, 409, 300 }, + [34] = { 39, 60.6, 1519, 300 }, + [35] = { 22, 37.5, 1519, 300 }, + [36] = { 29.7, 10.9, 1519, 300 }, + [37] = { 56.9, 29.4, 1581, 300 }, + [38] = { 63.2, 33.6, 4012, 300 }, + [39] = { 33.3, 53.9, 5179, 300 }, + [40] = { 33.3, 53.8, 5179, 300 }, + [41] = { 96.8, 15, 5179, 300 }, + [42] = { 72.3, 12.4, 5179, 300 }, + [43] = { 71.8, 12.3, 5179, 300 }, + [44] = { 28.3, 97.5, 5581, 300 }, + [45] = { 32.4, 83.2, 5581, 300 }, + [46] = { 6.4, 25.7, 5602, 300 }, + }, + }, + [2003528] = { + ["coords"] = { + [1] = { 33.3, 48.8, 10, 300 }, + [2] = { 33.3, 48.6, 10, 300 }, + [3] = { 34.1, 48.4, 10, 300 }, + [4] = { 32.2, 48.1, 10, 300 }, + [5] = { 49, 60.3, 11, 300 }, + [6] = { 55.4, 97.3, 14, 300 }, + [7] = { 58.7, 27.4, 14, 300 }, + [8] = { 58.7, 27.2, 14, 300 }, + [9] = { 58.7, 26.5, 14, 300 }, + [10] = { 58.2, 25.7, 14, 300 }, + [11] = { 58.1, 25.4, 14, 300 }, + [12] = { 44.3, 45.1, 16, 300 }, + [13] = { 74.8, 51.4, 17, 300 }, + [14] = { 74.2, 47.9, 17, 300 }, + [15] = { 44.3, 98.6, 28, 300 }, + [16] = { 44.4, 98, 28, 300 }, + [17] = { 44.3, 98, 28, 300 }, + [18] = { 79.8, 62.9, 28, 300 }, + [19] = { 81.2, 60.8, 28, 300 }, + [20] = { 33.9, 17.4, 28, 0 }, + [21] = { 43.3, 80.5, 33, 300 }, + [22] = { 81.1, 51.4, 36, 300 }, + [23] = { 81.2, 50.6, 36, 300 }, + [24] = { 81.2, 50.5, 36, 300 }, + [25] = { 16.9, 66.2, 46, 300 }, + [26] = { 27.8, 76.7, 85, 300 }, + [27] = { 21.7, 69.2, 85, 300 }, + [28] = { 20.9, 69.1, 85, 300 }, + [29] = { 4.6, 62.1, 85, 300 }, + [30] = { 4.5, 62, 85, 300 }, + [31] = { 4.7, 61.8, 85, 300 }, + [32] = { 4.6, 61.8, 85, 300 }, + [33] = { 23.7, 58.5, 85, 300 }, + [34] = { 12.2, 56.1, 85, 300 }, + [35] = { 23.1, 50, 85, 300 }, + [36] = { 17.4, 49, 85, 300 }, + [37] = { 17.2, 49, 85, 300 }, + [38] = { 90.1, 32.2, 85, 0 }, + [39] = { 67.7, 83.6, 130, 300 }, + [40] = { 67.4, 83.2, 130, 300 }, + [41] = { 67.6, 83.1, 130, 300 }, + [42] = { 67.6, 82.9, 130, 300 }, + [43] = { 41.9, 10.4, 130, 300 }, + [44] = { 41.8, 10.4, 130, 300 }, + [45] = { 42.2, 10.2, 130, 300 }, + [46] = { 21.4, 86.6, 139, 300 }, + [47] = { 22.9, 84.3, 139, 300 }, + [48] = { 42.1, 53, 267, 300 }, + [49] = { 42.1, 52.5, 267, 300 }, + [50] = { 42.5, 51.8, 267, 300 }, + [51] = { 14.4, 50.4, 267, 300 }, + [52] = { 14, 49.8, 267, 300 }, + [53] = { 14.2, 49.6, 267, 300 }, + [54] = { 14.3, 49.4, 267, 300 }, + [55] = { 66.9, 47.1, 267, 300 }, + [56] = { 37.1, 51.4, 406, 300 }, + [57] = { 37, 51.3, 406, 300 }, + [58] = { 61.4, 44.6, 409, 300 }, + [59] = { 60.9, 44.5, 409, 300 }, + [60] = { 60.7, 44.3, 409, 300 }, + [61] = { 61, 43.9, 409, 300 }, + [62] = { 60.9, 43.8, 409, 300 }, + [63] = { 61.4, 43.7, 409, 300 }, + [64] = { 61.1, 43.6, 409, 300 }, + [65] = { 59, 43.4, 409, 300 }, + [66] = { 58.1, 41.2, 409, 300 }, + [67] = { 24.6, 72, 440, 300 }, + [68] = { 24.6, 71.9, 440, 300 }, + [69] = { 37.6, 12.9, 490, 300 }, + [70] = { 49.5, 30.2, 618, 300 }, + [71] = { 37, 76.4, 1519, 300 }, + [72] = { 21.5, 37.3, 1519, 300 }, + [73] = { 27.8, 15.1, 1519, 300 }, + [74] = { 30, 14.8, 1519, 300 }, + [75] = { 30.1, 14, 1519, 300 }, + [76] = { 96.4, 15.2, 5179, 300 }, + [77] = { 96.4, 14.8, 5179, 300 }, + [78] = { 96.7, 14.2, 5179, 300 }, + [79] = { 72.2, 12.9, 5179, 300 }, + [80] = { 71.9, 12.4, 5179, 300 }, + [81] = { 72.1, 12.3, 5179, 300 }, + [82] = { 72.1, 12.1, 5179, 300 }, + [83] = { 84.5, 77.8, 5208, 300 }, + [84] = { 83.5, 77.7, 5208, 300 }, + [85] = { 83.8, 77.1, 5208, 300 }, + [86] = { 26.7, 24.9, 5208, 300 }, + [87] = { 28.1, 97.4, 5581, 300 }, + [88] = { 93.2, 92.6, 5581, 300 }, + [89] = { 31.4, 85.5, 5581, 300 }, + [90] = { 32.6, 85.3, 5581, 300 }, + [91] = { 32.6, 84.9, 5581, 300 }, + [92] = { 63.2, 73.5, 5581, 300 }, + [93] = { 63.2, 73.1, 5581, 300 }, + [94] = { 50.2, 67.5, 5581, 300 }, + [95] = { 6.4, 25.3, 5602, 300 }, + [96] = { 6.3, 25.2, 5602, 300 }, + }, + }, + [2003529] = { + ["coords"] = { + [1] = { 81.2, 72.2, 10, 300 }, + [2] = { 29.6, 44.7, 28, 300 }, + [3] = { 27.9, 76.9, 85, 300 }, + [4] = { 14.7, 69.5, 85, 300 }, + [5] = { 30.9, 66, 85, 300 }, + [6] = { 12.9, 64.8, 85, 300 }, + [7] = { 86.1, 58.2, 85, 300 }, + }, + }, + [2003530] = { + ["coords"] = { + [1] = { 80.9, 71.2, 10, 300 }, + [2] = { 14.9, 69.4, 85, 300 }, + }, + }, + [2003531] = { + ["coords"] = { + [1] = { 44.4, 98.5, 28, 300 }, + [2] = { 80.5, 59.9, 28, 300 }, + [3] = { 81.3, 51.3, 36, 300 }, + [4] = { 22.2, 83.3, 139, 300 }, + [5] = { 78.6, 82.9, 5208, 300 }, + [6] = { 78.6, 82.7, 5208, 300 }, + [7] = { 78.4, 82.6, 5208, 300 }, + }, + }, + [2003532] = { + ["coords"] = { + [1] = { 10.1, 57.8, 11, 0 }, + [2] = { 80.7, 60.3, 28, 300 }, + [3] = { 22.5, 83.7, 139, 300 }, + [4] = { 78.7, 83.6, 5208, 300 }, + [5] = { 78.6, 83.2, 5208, 300 }, + }, + }, + [2003533] = { + ["coords"] = { + [1] = { 9.9, 57.9, 11, 0 }, + [2] = { 9.8, 57.9, 11, 0 }, + [3] = { 10.2, 57.5, 11, 0 }, + [4] = { 80.3, 60.3, 28, 300 }, + [5] = { 80.3, 60.2, 28, 300 }, + [6] = { 22, 83.7, 139, 300 }, + [7] = { 22, 83.6, 139, 300 }, + [8] = { 76.1, 83.1, 5208, 300 }, + [9] = { 76.2, 82.8, 5208, 300 }, + [10] = { 33.7, 62, 5581, 300 }, + [11] = { 33.9, 62, 5581, 300 }, + [12] = { 34, 62, 5581, 300 }, + }, + }, + [2003534] = { + ["coords"] = { + [1] = { 77.1, 55.7, 15, 300 }, + [2] = { 59.1, 53.9, 1497, 300 }, + }, + }, + [2003535] = { + ["coords"] = { + [1] = { 77.1, 55.8, 15, 300 }, + [2] = { 27.8, 76.7, 85, 300 }, + [3] = { 59.4, 54.4, 1497, 300 }, + }, + }, + [2003536] = { + ["coords"] = { + [1] = { 25.3, 30.2, 1, 300 }, + [2] = { 82.9, 16.4, 721, 300 }, + }, + }, + [2003537] = { + ["coords"] = {}, + }, + [2003538] = { + ["coords"] = {}, + }, + [2003539] = { + ["coords"] = {}, + }, + [2003540] = { + ["coords"] = { + [1] = { 65.3, 67.9, 1519, 0 }, + }, + }, + [2003541] = { + ["coords"] = { + [1] = { 35, 47.8, 10, 300 }, + }, + }, + [2003542] = { + ["coords"] = { + [1] = { 48.9, 60.7, 11, 300 }, + [2] = { 6.3, 25.6, 5602, 300 }, + }, + }, + [2003543] = { + ["coords"] = { + [1] = { 33.4, 57.7, 141, 300 }, + [2] = { 33.6, 57.7, 141, 300 }, + [3] = { 33.4, 57.5, 141, 300 }, + [4] = { 33.6, 57.5, 141, 300 }, + [5] = { 33.4, 57.3, 141, 300 }, + [6] = { 78, 51.6, 1657, 300 }, + [7] = { 78.7, 51.5, 1657, 300 }, + [8] = { 78, 50.8, 1657, 300 }, + [9] = { 78.7, 50.7, 1657, 300 }, + [10] = { 77.9, 50, 1657, 300 }, + }, + }, + [2003544] = { + ["coords"] = { + [1] = { 33.6, 49.1, 10, 300 }, + [2] = { 48.9, 60.9, 11, 300 }, + [3] = { 84.5, 79.1, 12, 300 }, + [4] = { 75.5, 49.5, 17, 300 }, + [5] = { 61.5, 23.6, 17, 300 }, + [6] = { 34, 9.8, 17, 300 }, + [7] = { 33.8, 17.7, 28, 300 }, + [8] = { 43.2, 79.7, 33, 300 }, + [9] = { 20, 66.8, 46, 300 }, + [10] = { 78.9, 55.7, 85, 300 }, + [11] = { 78.9, 55.6, 85, 300 }, + [12] = { 90.1, 32.5, 85, 300 }, + [13] = { 32.9, 57.6, 141, 300 }, + [14] = { 32.9, 57.4, 141, 300 }, + [15] = { 42.5, 51.8, 267, 300 }, + [16] = { 73.2, 56.1, 331, 300 }, + [17] = { 79.4, 62.1, 406, 300 }, + [18] = { 24.5, 12.7, 406, 300 }, + [19] = { 59, 34.4, 1497, 300 }, + [20] = { 58.8, 34.3, 1497, 300 }, + [21] = { 59.4, 33.5, 1497, 300 }, + [22] = { 37, 76.4, 1519, 300 }, + [23] = { 22.1, 37.4, 1519, 300 }, + [24] = { 28, 14.9, 1519, 300 }, + [25] = { 75.6, 51.2, 1657, 300 }, + [26] = { 75.6, 50.4, 1657, 300 }, + [27] = { 75.6, 50.3, 1657, 300 }, + [28] = { 96.7, 14.2, 5179, 300 }, + [29] = { 82.5, 69.4, 5208, 300 }, + [30] = { 82.6, 69.3, 5208, 300 }, + [31] = { 82, 69, 5208, 300 }, + [32] = { 28.3, 97.5, 5581, 300 }, + [33] = { 96, 93.1, 5581, 300 }, + [34] = { 31.5, 85.4, 5581, 300 }, + [35] = { 6.3, 25.7, 5602, 300 }, + }, + }, + [2003545] = { + ["coords"] = { + [1] = { 34.2, 18.1, 28, 0 }, + [2] = { 90.5, 32.8, 85, 0 }, + }, + }, + [2003546] = { + ["coords"] = { + [1] = { 33.4, 49.2, 10, 300 }, + }, + }, + [2003547] = { + ["coords"] = { + [1] = { 84.5, 79.1, 12, 300 }, + [2] = { 32.9, 57.6, 141, 300 }, + [3] = { 75.6, 51.1, 1657, 300 }, + [4] = { 82.5, 69.5, 5208, 300 }, + }, + }, + [2003548] = { + ["coords"] = { + [1] = { 33.6, 49, 10, 300 }, + [2] = { 48.9, 60.9, 11, 300 }, + [3] = { 75.5, 49.5, 17, 300 }, + [4] = { 61.5, 23.6, 17, 300 }, + [5] = { 34, 9.8, 17, 300 }, + [6] = { 33.8, 17.7, 28, 300 }, + [7] = { 31.5, 49, 33, 300 }, + [8] = { 20, 66.9, 46, 300 }, + [9] = { 78.9, 55.7, 85, 300 }, + [10] = { 60.8, 53.7, 85, 300 }, + [11] = { 90.1, 32.5, 85, 300 }, + [12] = { 67.6, 82.9, 130, 300 }, + [13] = { 42.5, 51.8, 267, 300 }, + [14] = { 14.3, 49.4, 267, 300 }, + [15] = { 20.8, 48.9, 267, 300 }, + [16] = { 79.4, 62.1, 406, 300 }, + [17] = { 58.9, 34.1, 1497, 300 }, + [18] = { 59.4, 33.5, 1497, 300 }, + [19] = { 37, 76.4, 1519, 300 }, + [20] = { 22, 37.4, 1519, 300 }, + [21] = { 28, 14.8, 1519, 300 }, + [22] = { 96.7, 14.2, 5179, 300 }, + [23] = { 72.1, 12.1, 5179, 300 }, + [24] = { 77.8, 11.7, 5179, 300 }, + [25] = { 39.8, 44.5, 5208, 300 }, + [26] = { 28.3, 97.5, 5581, 300 }, + [27] = { 96, 93.2, 5581, 300 }, + [28] = { 31.5, 85.3, 5581, 300 }, + [29] = { 6.3, 25.7, 5602, 300 }, + }, + }, + [2003549] = { + ["coords"] = {}, + }, + [2003550] = { + ["coords"] = {}, + }, + [2003551] = { + ["coords"] = { + [1] = { 20.7, 48.2, 267, 300 }, + [2] = { 55.6, 56.6, 405, 300 }, + [3] = { 77.7, 11, 5179, 300 }, + }, + }, + [2003552] = { + ["coords"] = { + [1] = { 58.7, 27.4, 14, 300 }, + [2] = { 61.1, 24.7, 17, 300 }, + [3] = { 59.2, 34, 1497, 300 }, + }, + }, + [2003553] = { + ["coords"] = { + [1] = { 20.6, 48.9, 267, 300 }, + [2] = { 77.7, 11.7, 5179, 300 }, + }, + }, + [2003554] = { + ["coords"] = { + [1] = { 59.1, 34.1, 1497, 300 }, + }, + }, + [2003555] = { + ["coords"] = {}, + }, + [2003556] = { + ["coords"] = { + [1] = { 58.8, 27.3, 14, 300 }, + [2] = { 42, 75, 331, 300 }, + [3] = { 77.6, 41.2, 406, 300 }, + [4] = { 59.3, 33.8, 1497, 300 }, + [5] = { 28.1, 15, 1519, 300 }, + [6] = { 31.6, 85.4, 5581, 300 }, + }, + }, + [2003557] = { + ["coords"] = {}, + }, + [2003558] = { + ["coords"] = { + [1] = { 82.4, 68.7, 5208, 300 }, + }, + }, + [2003559] = { + ["coords"] = { + [1] = { 48.9, 60.7, 11, 300 }, + [2] = { 58.1, 99.7, 14, 300 }, + [3] = { 75.6, 49.1, 17, 300 }, + [4] = { 20.7, 48.5, 267, 300 }, + [5] = { 20.8, 48.4, 267, 300 }, + [6] = { 61.3, 43.6, 409, 300 }, + [7] = { 59.8, 34.6, 1497, 300 }, + [8] = { 33.1, 76.2, 5179, 300 }, + [9] = { 77.7, 11.3, 5179, 300 }, + [10] = { 77.8, 11.2, 5179, 300 }, + [11] = { 6.3, 25.6, 5602, 300 }, + }, + }, + [2003560] = { + ["coords"] = { + [1] = { 30.3, 72.5, 85, 300 }, + [2] = { 12.8, 64.9, 85, 300 }, + [3] = { 23.1, 50, 85, 300 }, + [4] = { 21.1, 48.3, 267, 300 }, + [5] = { 53.3, 30, 618, 300 }, + [6] = { 78, 11.1, 5179, 300 }, + [7] = { 44.5, 57.3, 5225, 300 }, + }, + }, + [2003561] = { + ["coords"] = { + [1] = { 72.2, 83.4, 8, 0 }, + [2] = { 51.3, 24.8, 45, 300 }, + [3] = { 29.6, 85.5, 47, 300 }, + [4] = { 20.7, 48.3, 267, 300 }, + [5] = { 24.4, 12.6, 406, 300 }, + [6] = { 77.7, 11.1, 5179, 300 }, + }, + }, + [2003562] = { + ["coords"] = {}, + }, + [2003563] = { + ["coords"] = { + [1] = { 44.2, 98.1, 28, 300 }, + [2] = { 81, 50.7, 36, 300 }, + [3] = { 35.2, 10.1, 45, 300 }, + [4] = { 14.5, 71.8, 47, 300 }, + [5] = { 67.7, 83.4, 130, 300 }, + [6] = { 14.4, 50.1, 267, 300 }, + [7] = { 82.4, 55.5, 400, 25 }, + [8] = { 61.2, 64.6, 1519, 300 }, + [9] = { 72.2, 12.7, 5179, 300 }, + }, + }, + [2003564] = { + ["coords"] = { + [1] = { 33.9, 48.4, 10, 300 }, + [2] = { 48.8, 60.5, 11, 300 }, + [3] = { 6.2, 25.4, 5602, 300 }, + }, + }, + [2003565] = { + ["coords"] = {}, + }, + [2003566] = { + ["coords"] = { + [1] = { 33.4, 49.2, 10, 300 }, + [2] = { 33.6, 48.7, 10, 300 }, + [3] = { 48.9, 61, 11, 300 }, + [4] = { 48.9, 60.9, 11, 300 }, + [5] = { 48.9, 60.8, 11, 300 }, + [6] = { 84.4, 79.8, 12, 300 }, + [7] = { 57.9, 99.6, 14, 300 }, + [8] = { 44.3, 67.1, 14, 300 }, + [9] = { 42.4, 72.9, 15, 300 }, + [10] = { 68.1, 48.8, 15, 300 }, + [11] = { 68, 48.7, 15, 300 }, + [12] = { 29.1, 70.7, 16, 300 }, + [13] = { 74.7, 51.3, 17, 300 }, + [14] = { 74.8, 51.3, 17, 300 }, + [15] = { 75.5, 49.6, 17, 300 }, + [16] = { 75.5, 49.1, 17, 300 }, + [17] = { 34.1, 9.7, 17, 300 }, + [18] = { 44.3, 98.8, 28, 300 }, + [19] = { 44.2, 98.5, 28, 300 }, + [20] = { 31.6, 48.3, 33, 300 }, + [21] = { 81.1, 51.7, 36, 300 }, + [22] = { 80.9, 51.3, 36, 300 }, + [23] = { 19.9, 67.1, 46, 300 }, + [24] = { 20, 67.1, 46, 300 }, + [25] = { 51, 67.6, 85, 300 }, + [26] = { 17.2, 49.6, 85, 300 }, + [27] = { 31.6, 46.4, 85, 300 }, + [28] = { 79.2, 25.4, 85, 300 }, + [29] = { 79.2, 25.3, 85, 300 }, + [30] = { 67.5, 82.8, 130, 300 }, + [31] = { 55.7, 57.9, 141, 300 }, + [32] = { 55.6, 57.9, 141, 300 }, + [33] = { 42.6, 52.5, 267, 300 }, + [34] = { 42.1, 52.1, 267, 300 }, + [35] = { 42.3, 51.7, 267, 300 }, + [36] = { 14.1, 49.3, 267, 300 }, + [37] = { 72.9, 55.7, 331, 300 }, + [38] = { 79.4, 61.9, 406, 300 }, + [39] = { 58, 40.9, 409, 300 }, + [40] = { 49.2, 31, 618, 300 }, + [41] = { 49.4, 30.8, 618, 300 }, + [42] = { 49.2, 30.7, 618, 300 }, + [43] = { 58.5, 35.1, 1497, 300 }, + [44] = { 58.3, 34.9, 1497, 300 }, + [45] = { 60.1, 32.9, 1497, 300 }, + [46] = { 60, 32.5, 1497, 300 }, + [47] = { 36.7, 75, 1519, 300 }, + [48] = { 22.3, 37.6, 1519, 300 }, + [49] = { 21.8, 37.5, 1519, 300 }, + [50] = { 27.9, 15.4, 1519, 300 }, + [51] = { 27.6, 14.9, 1519, 300 }, + [52] = { 28.8, 10.9, 1519, 300 }, + [53] = { 29.3, 10.1, 1519, 300 }, + [54] = { 96.9, 14.8, 5179, 300 }, + [55] = { 96.4, 14.4, 5179, 300 }, + [56] = { 96.5, 14.1, 5179, 300 }, + [57] = { 71.9, 12, 5179, 300 }, + [58] = { 81.9, 70.5, 5208, 300 }, + [59] = { 38.9, 43.8, 5208, 300 }, + [60] = { 28.5, 97.5, 5581, 300 }, + [61] = { 28.2, 97.5, 5581, 300 }, + [62] = { 95.8, 93.4, 5581, 300 }, + [63] = { 95.9, 93.4, 5581, 300 }, + [64] = { 96, 93.4, 5581, 300 }, + [65] = { 31.5, 85.6, 5581, 300 }, + [66] = { 31.3, 85.4, 5581, 300 }, + [67] = { 32, 83.2, 5581, 300 }, + [68] = { 32.2, 82.8, 5581, 300 }, + [69] = { 6.3, 25.8, 5602, 300 }, + [70] = { 6.3, 25.7, 5602, 300 }, + [71] = { 6.3, 25.6, 5602, 300 }, + }, + }, + [2003567] = { + ["coords"] = {}, + }, + [2003568] = { + ["coords"] = { + [1] = { 83.9, 56.1, 400, 25 }, + [2] = { 51, 29.5, 618, 300 }, + [3] = { 62.9, 29.7, 1497, 300 }, + [4] = { 62.7, 28.9, 1497, 300 }, + }, + }, + [2003569] = { + ["coords"] = { + [1] = { 27.2, 67.1, 11, 25 }, + [2] = { 42.9, 69.4, 14, 300 }, + [3] = { 42.6, 73.5, 15, 25 }, + [4] = { 59.1, 73.9, 38, 300 }, + [5] = { 59.1, 73.8, 38, 300 }, + [6] = { 43.1, 53.5, 267, 300 }, + [7] = { 43.4, 52.8, 267, 300 }, + [8] = { 84, 56.5, 400, 25 }, + [9] = { 83.8, 55.7, 400, 25 }, + [10] = { 30.8, 36.3, 440, 300 }, + [11] = { 30.9, 36.3, 440, 300 }, + [12] = { 77.8, 64.1, 490, 300 }, + [13] = { 78, 64, 490, 300 }, + [14] = { 51.2, 29.8, 618, 300 }, + [15] = { 52, 68.8, 1637, 300 }, + [16] = { 41.4, 69.4, 2040, 25 }, + [17] = { 41.8, 69.2, 2040, 25 }, + [18] = { 40.8, 69, 2040, 25 }, + [19] = { 97.3, 15.7, 5179, 300 }, + [20] = { 97.5, 15, 5179, 300 }, + [21] = { 82.1, 70.5, 5208, 300 }, + [22] = { 39.1, 43.1, 5208, 300 }, + [23] = { 39.3, 42.9, 5208, 300 }, + [24] = { 57.5, 35.1, 5225, 25 }, + [25] = { 57.7, 35, 5225, 25 }, + [26] = { 57.2, 34.9, 5225, 25 }, + [27] = { 28.8, 82.1, 5602, 300 }, + [28] = { 28.8, 82, 5602, 300 }, + }, + }, + [2003570] = { + ["coords"] = {}, + }, + [2003571] = { + ["coords"] = { + [1] = { 64.6, 34.6, 17, 300 }, + [2] = { 64.8, 34.5, 17, 300 }, + [3] = { 64.7, 34.5, 17, 300 }, + [4] = { 64.8, 34.4, 17, 300 }, + [5] = { 61.1, 24.6, 17, 300 }, + [6] = { 31.5, 48.5, 33, 300 }, + [7] = { 31.9, 48.1, 33, 300 }, + [8] = { 50.9, 19, 33, 300 }, + [9] = { 43.5, 17.4, 357, 25 }, + [10] = { 82.8, 54.7, 400, 300 }, + [11] = { 40.8, 10.2, 490, 300 }, + [12] = { 66.1, 80, 5179, 300 }, + [13] = { 45.3, 44.1, 5179, 300 }, + [14] = { 45.5, 44, 5179, 300 }, + }, + }, + [2003572] = { + ["coords"] = { + [1] = { 76.8, 56.7, 15, 300 }, + [2] = { 61.1, 24.5, 17, 300 }, + [3] = { 61, 24.4, 17, 300 }, + [4] = { 31.8, 48.1, 33, 300 }, + [5] = { 51.1, 19, 33, 300 }, + [6] = { 51, 18.9, 33, 300 }, + [7] = { 21.8, 69.6, 46, 300 }, + [8] = { 94.5, 22.6, 331, 300 }, + [9] = { 97.6, 95.7, 5581, 300 }, + }, + }, + [2003573] = { + ["coords"] = {}, + }, + [2003574] = { + ["coords"] = {}, + }, + [2003575] = { + ["coords"] = {}, + }, + [2003576] = { + ["coords"] = { + [1] = { 65.2, 12.5, 33, 300 }, + [2] = { 66.1, 28.3, 1497, 300 }, + }, + }, + [2003577] = { + ["coords"] = { + [1] = { 28.6, 61.5, 12, 300 }, + }, + }, + [2003578] = { + ["coords"] = {}, + }, + [2003579] = { + ["coords"] = { + [1] = { 80.8, 63.7, 28, 300 }, + [2] = { 34, 17.5, 28, 0 }, + [3] = { 60.2, 80.4, 36, 300 }, + [4] = { 35.1, 10, 45, 300 }, + [5] = { 14.4, 71.7, 47, 300 }, + [6] = { 4.5, 62.1, 85, 300 }, + [7] = { 23.6, 58.3, 85, 300 }, + [8] = { 12.1, 56.2, 85, 300 }, + [9] = { 12.1, 53.1, 85, 300 }, + [10] = { 17.2, 49.3, 85, 300 }, + [11] = { 17.1, 49.3, 85, 300 }, + [12] = { 90.3, 32.3, 85, 0 }, + [13] = { 41.9, 10.2, 130, 300 }, + [14] = { 22.5, 87.5, 139, 300 }, + [15] = { 61.5, 18.8, 267, 300 }, + [16] = { 60, 44.2, 409, 300 }, + [17] = { 58.1, 40.7, 409, 300 }, + [18] = { 76.8, 89, 5581, 25 }, + [19] = { 43.5, 26.1, 5581, 300 }, + [20] = { 43.5, 26, 5581, 300 }, + }, + }, + [2003580] = { + ["coords"] = { + [1] = { 34.8, 48.8, 10, 300 }, + [2] = { 33.9, 48.6, 10, 300 }, + [3] = { 32.6, 47.7, 10, 300 }, + [4] = { 48.9, 60.7, 11, 300 }, + [5] = { 48.9, 60.4, 11, 300 }, + [6] = { 57.2, 99, 14, 300 }, + [7] = { 46, 45.9, 15, 300 }, + [8] = { 75.6, 49.6, 17, 300 }, + [9] = { 75.1, 48.7, 17, 300 }, + [10] = { 61.5, 24.2, 17, 300 }, + [11] = { 57.8, 75.7, 38, 300 }, + [12] = { 58.1, 74, 38, 300 }, + [13] = { 42, 74.9, 331, 300 }, + [14] = { 77.6, 41.1, 406, 300 }, + [15] = { 30.3, 14.6, 1519, 300 }, + [16] = { 62.7, 84.3, 5121, 300 }, + [17] = { 32.8, 85.2, 5581, 300 }, + [18] = { 28.1, 83, 5602, 300 }, + [19] = { 28.3, 82.2, 5602, 300 }, + [20] = { 6.3, 25.5, 5602, 300 }, + [21] = { 6.3, 25.4, 5602, 300 }, + }, + }, + [2003581] = { + ["coords"] = {}, + }, + [2003582] = { + ["coords"] = {}, + }, + [2003583] = { + ["coords"] = {}, + }, + [2003584] = { + ["coords"] = {}, + }, + [2003585] = { + ["coords"] = {}, + }, + [2003586] = { + ["coords"] = {}, + }, + [2003587] = { + ["coords"] = {}, + }, + [2003588] = { + ["coords"] = {}, + }, + [2003589] = { + ["coords"] = {}, + }, + [2003590] = { + ["coords"] = { + [1] = { 28.1, 6.6, 405, 300 }, + }, + }, + [2003591] = { + ["coords"] = {}, + }, + [2003592] = { + ["coords"] = { + [1] = { 22.1, 52.4, 331, 300 }, + [2] = { 75.9, 42.3, 357, 300 }, + [3] = { 58.5, 19.5, 406, 300 }, + [4] = { 49.7, 30.9, 618, 300 }, + }, + }, + [2003593] = { + ["coords"] = { + [1] = { 23.3, 65.1, 141, 300 }, + [2] = { 23.2, 64.7, 141, 300 }, + [3] = { 55.8, 57.8, 141, 300 }, + [4] = { 29.1, 87.2, 1657, 300 }, + [5] = { 29.1, 85.6, 1657, 300 }, + }, + }, + [2003594] = { + ["coords"] = {}, + }, + [2003595] = { + ["coords"] = { + [1] = { 29.8, 64.2, 141, 300 }, + [2] = { 37.2, 52.9, 331, 300 }, + [3] = { 34.2, 48.5, 331, 300 }, + [4] = { 60.6, 82.9, 1657, 300 }, + }, + }, + [2003596] = { + ["coords"] = { + [1] = { 24.1, 65.1, 141, 300 }, + [2] = { 24.1, 64.7, 141, 300 }, + [3] = { 33.3, 87.2, 1657, 300 }, + [4] = { 33.2, 85.6, 1657, 300 }, + }, + }, + [2003597] = { + ["coords"] = {}, + }, + [2003598] = { + ["coords"] = { + [1] = { 82.9, 62.7, 38, 25 }, + [2] = { 31.4, 62.7, 141, 300 }, + [3] = { 55.8, 59.1, 141, 300 }, + [4] = { 43, 98, 148, 300 }, + [5] = { 43.2, 97.8, 148, 300 }, + [6] = { 27, 40.9, 331, 300 }, + [7] = { 27.3, 16.1, 331, 300 }, + [8] = { 27.5, 15.9, 331, 300 }, + [9] = { 60.7, 23.5, 361, 300 }, + [10] = { 41.9, 18, 406, 300 }, + [11] = { 49.7, 30.7, 618, 300 }, + [12] = { 69.1, 30.1, 876, 300 }, + [13] = { 61.8, 71.4, 1519, 300 }, + [14] = { 68.1, 75.8, 1657, 300 }, + [15] = { 41, 76.4, 5602, 25 }, + }, + }, + [2003599] = { + ["coords"] = {}, + }, + [2003600] = { + ["coords"] = { + [1] = { 62.1, 24.9, 361, 300 }, + [2] = { 40.6, 11.5, 490, 300 }, + }, + }, + [2003601] = { + ["coords"] = { + [1] = { 42.1, 18.2, 406, 300 }, + [2] = { 49.8, 31.9, 618, 300 }, + }, + }, + [2003602] = { + ["coords"] = { + [1] = { 29.3, 69.7, 16, 300 }, + [2] = { 29.1, 69.7, 16, 300 }, + [3] = { 29.3, 69.6, 16, 300 }, + [4] = { 29.1, 69.5, 16, 300 }, + [5] = { 29.3, 69.4, 16, 300 }, + [6] = { 29.2, 69.4, 16, 300 }, + [7] = { 79, 62.5, 28, 25 }, + [8] = { 20.5, 86.2, 139, 25 }, + [9] = { 27, 65, 141, 300 }, + [10] = { 26.9, 64.9, 141, 300 }, + [11] = { 27, 64.8, 141, 300 }, + [12] = { 24, 64.8, 141, 300 }, + [13] = { 29.7, 64.2, 141, 300 }, + [14] = { 29.8, 64, 141, 300 }, + [15] = { 29.4, 63.6, 141, 300 }, + [16] = { 29.5, 63.5, 141, 300 }, + [17] = { 29.1, 63.1, 141, 300 }, + [18] = { 29.2, 62.9, 141, 300 }, + [19] = { 31, 62.8, 141, 300 }, + [20] = { 31.1, 62.6, 141, 300 }, + [21] = { 55.8, 59, 141, 300 }, + [22] = { 55.8, 58.9, 141, 300 }, + [23] = { 26.1, 58.1, 141, 300 }, + [24] = { 25.8, 58, 141, 300 }, + [25] = { 26.2, 58, 141, 300 }, + [26] = { 25.7, 57.9, 141, 300 }, + [27] = { 28.2, 57.9, 141, 300 }, + [28] = { 28.3, 57.9, 141, 300 }, + [29] = { 26.2, 57.9, 141, 300 }, + [30] = { 28.2, 57.8, 141, 300 }, + [31] = { 35, 52.3, 331, 300 }, + [32] = { 35, 52.2, 331, 300 }, + [33] = { 43.6, 17.2, 357, 25 }, + [34] = { 62.3, 24.7, 361, 300 }, + [35] = { 49.8, 32, 618, 300 }, + [36] = { 49.8, 31.7, 618, 300 }, + [37] = { 49.1, 31.2, 618, 300 }, + [38] = { 49.7, 31.1, 618, 300 }, + [39] = { 49.7, 30.9, 618, 300 }, + [40] = { 49.7, 30.7, 618, 300 }, + [41] = { 49.5, 30.2, 618, 300 }, + [42] = { 53.3, 29.9, 618, 300 }, + [43] = { 53.3, 29.8, 618, 300 }, + [44] = { 51.4, 29.4, 618, 300 }, + [45] = { 47.3, 86.8, 1657, 300 }, + [46] = { 46.8, 86.6, 1657, 300 }, + [47] = { 47.3, 86.1, 1657, 300 }, + [48] = { 32.7, 86.1, 1657, 300 }, + [49] = { 60.2, 82.8, 1657, 300 }, + [50] = { 60.7, 82.2, 1657, 300 }, + [51] = { 58.9, 80.2, 1657, 300 }, + [52] = { 59.3, 79.7, 1657, 300 }, + [53] = { 57.4, 77.6, 1657, 300 }, + [54] = { 57.9, 76.9, 1657, 300 }, + [55] = { 66.5, 76.1, 1657, 300 }, + [56] = { 66.9, 75.3, 1657, 300 }, + [57] = { 42.8, 53.5, 1657, 300 }, + [58] = { 41.3, 53.3, 1657, 300 }, + [59] = { 43, 53.2, 1657, 300 }, + [60] = { 41.1, 52.9, 1657, 300 }, + [61] = { 52.9, 52.9, 1657, 300 }, + [62] = { 53.4, 52.8, 1657, 300 }, + [63] = { 43.4, 52.7, 1657, 300 }, + [64] = { 40.9, 52.5, 1657, 300 }, + [65] = { 53, 52.1, 1657, 300 }, + }, + }, + [2003603] = { + ["coords"] = { + [1] = { 30.2, 64.3, 141, 300 }, + [2] = { 60.4, 23.7, 361, 300 }, + [3] = { 41.9, 18.1, 406, 300 }, + [4] = { 49.1, 31.1, 618, 300 }, + [5] = { 62.7, 83.7, 1657, 300 }, + }, + }, + [2003604] = { + ["coords"] = { + [1] = { 32.7, 57.8, 141, 300 }, + [2] = { 43.2, 97.9, 148, 300 }, + [3] = { 41.4, 59.6, 331, 300 }, + [4] = { 35.1, 52.2, 331, 300 }, + [5] = { 27.5, 16, 331, 300 }, + [6] = { 62.1, 25, 361, 300 }, + [7] = { 60.7, 23.5, 361, 300 }, + [8] = { 38, 30, 405, 300 }, + [9] = { 50, 31.8, 618, 300 }, + [10] = { 50.2, 30.2, 618, 300 }, + [11] = { 74.4, 52.2, 1657, 300 }, + }, + }, + [2003605] = { + ["coords"] = { + [1] = { 35.1, 52.2, 331, 300 }, + [2] = { 62.3, 24.9, 361, 300 }, + [3] = { 60.5, 23.3, 361, 300 }, + [4] = { 60.6, 23.2, 361, 300 }, + [5] = { 42.1, 18.1, 406, 300 }, + [6] = { 49.8, 32, 618, 300 }, + [7] = { 62.7, 84.3, 5121, 300 }, + }, + }, + [2003606] = { + ["coords"] = {}, + }, + [2003607] = { + ["coords"] = { + [1] = { 23.4, 64.9, 141, 300 }, + [2] = { 24, 64.9, 141, 300 }, + [3] = { 83, 30.5, 616, 300 }, + [4] = { 49.2, 31.2, 618, 300 }, + [5] = { 50.9, 30.1, 618, 300 }, + [6] = { 29.6, 86.4, 1657, 300 }, + [7] = { 32.7, 86.3, 1657, 300 }, + }, + }, + [2003608] = { + ["coords"] = { + [1] = { 23.7, 64.7, 141, 300 }, + [2] = { 24, 64.6, 141, 300 }, + [3] = { 23.9, 64.6, 141, 300 }, + [4] = { 23.8, 64.6, 141, 300 }, + [5] = { 55.6, 57.5, 141, 300 }, + [6] = { 38, 30.1, 405, 300 }, + [7] = { 42.1, 18.6, 406, 300 }, + [8] = { 42.1, 18.5, 406, 300 }, + [9] = { 49.9, 31.7, 618, 300 }, + [10] = { 51.3, 29.5, 618, 300 }, + [11] = { 31.2, 85.3, 1657, 300 }, + [12] = { 32.5, 85.2, 1657, 300 }, + [13] = { 32.2, 85.2, 1657, 300 }, + [14] = { 31.5, 85.1, 1657, 300 }, + }, + }, + [2003609] = { + ["coords"] = { + [1] = { 23.7, 64.6, 141, 300 }, + [2] = { 23.9, 64.6, 141, 300 }, + [3] = { 28.1, 58.3, 141, 300 }, + [4] = { 28, 57.9, 141, 300 }, + [5] = { 28.2, 57.9, 141, 300 }, + [6] = { 28.3, 57.9, 141, 300 }, + [7] = { 28.2, 57.8, 141, 300 }, + [8] = { 38, 30, 405, 300 }, + [9] = { 42.1, 18.6, 406, 300 }, + [10] = { 49.1, 31.2, 618, 300 }, + [11] = { 31.3, 85.2, 1657, 300 }, + [12] = { 32.3, 85.2, 1657, 300 }, + [13] = { 52.5, 54.8, 1657, 300 }, + [14] = { 51.9, 53, 1657, 300 }, + [15] = { 52.9, 52.9, 1657, 300 }, + [16] = { 53.4, 52.8, 1657, 300 }, + [17] = { 53, 52.1, 1657, 300 }, + }, + }, + [2003610] = { + ["coords"] = { + [1] = { 23.3, 65.1, 141, 300 }, + [2] = { 24.1, 65.1, 141, 300 }, + [3] = { 27.3, 64.8, 141, 300 }, + [4] = { 23.3, 64.7, 141, 300 }, + [5] = { 24.1, 64.7, 141, 300 }, + [6] = { 28, 58.2, 141, 300 }, + [7] = { 26, 57.8, 141, 300 }, + [8] = { 25.8, 57.8, 141, 300 }, + [9] = { 26, 57.5, 141, 300 }, + [10] = { 26, 57.4, 141, 300 }, + [11] = { 81.2, 88.1, 405, 300 }, + [12] = { 38.3, 30.3, 405, 300 }, + [13] = { 49.9, 31.7, 618, 300 }, + [14] = { 49.4, 30.5, 618, 300 }, + [15] = { 51.3, 29.5, 618, 300 }, + [16] = { 29.3, 87.3, 1657, 300 }, + [17] = { 33.2, 87.2, 1657, 300 }, + [18] = { 48.7, 85.8, 1657, 300 }, + [19] = { 29.2, 85.6, 1657, 300 }, + [20] = { 33.1, 85.5, 1657, 300 }, + [21] = { 51.9, 54.3, 1657, 300 }, + [22] = { 42.5, 52.4, 1657, 300 }, + [23] = { 41.6, 52, 1657, 300 }, + [24] = { 42.5, 50.6, 1657, 300 }, + [25] = { 42.1, 50.4, 1657, 300 }, + }, + }, + [2003611] = { + ["coords"] = { + [1] = { 55.8, 59, 141, 300 }, + [2] = { 55.8, 58.9, 141, 300 }, + [3] = { 55.9, 58.9, 141, 300 }, + [4] = { 36, 53.1, 331, 300 }, + [5] = { 35, 51.8, 331, 300 }, + [6] = { 31.1, 50.3, 331, 300 }, + [7] = { 27, 40.9, 331, 300 }, + [8] = { 26.8, 40.8, 331, 300 }, + [9] = { 26.9, 40.7, 331, 300 }, + [10] = { 60.5, 23.4, 361, 300 }, + [11] = { 49.8, 31.1, 618, 300 }, + [12] = { 51.3, 29.3, 618, 300 }, + }, + }, + [2003612] = { + ["coords"] = { + [1] = { 35, 51.9, 331, 300 }, + [2] = { 35.1, 51.8, 331, 300 }, + [3] = { 31, 50.3, 331, 300 }, + [4] = { 31.1, 50.2, 331, 300 }, + [5] = { 42, 18, 406, 300 }, + [6] = { 42, 17.9, 406, 300 }, + [7] = { 49.7, 31.1, 618, 300 }, + [8] = { 49.6, 31.1, 618, 300 }, + }, + }, + [2003613] = { + ["coords"] = { + [1] = { 28.1, 58.3, 141, 300 }, + [2] = { 28.2, 58, 141, 300 }, + [3] = { 28, 57.9, 141, 300 }, + [4] = { 28.2, 57.9, 141, 300 }, + [5] = { 28.3, 57.9, 141, 300 }, + [6] = { 28.2, 57.8, 141, 300 }, + [7] = { 31, 50.9, 331, 300 }, + [8] = { 31.1, 50.9, 331, 300 }, + [9] = { 31.1, 50.8, 331, 300 }, + [10] = { 52.6, 54.8, 1657, 300 }, + [11] = { 52.4, 54.8, 1657, 300 }, + [12] = { 52.9, 53, 1657, 300 }, + [13] = { 52, 52.9, 1657, 300 }, + [14] = { 52.8, 52.9, 1657, 300 }, + [15] = { 53.5, 52.8, 1657, 300 }, + [16] = { 53.3, 52.8, 1657, 300 }, + [17] = { 51.8, 52.8, 1657, 300 }, + [18] = { 53, 52.7, 1657, 300 }, + [19] = { 53.4, 52.6, 1657, 300 }, + [20] = { 52.9, 52.2, 1657, 300 }, + [21] = { 53, 52, 1657, 300 }, + }, + }, + [2003614] = { + ["coords"] = {}, + }, + [2003615] = { + ["coords"] = { + [1] = { 95.1, 27.2, 331, 300 }, + }, + }, + [2003616] = { + ["coords"] = { + [1] = { 51.3, 34.2, 5121, 300 }, + }, + }, + [2003617] = { + ["coords"] = {}, + }, + [2003618] = { + ["coords"] = { + [1] = { 94.2, 22.1, 331, 300 }, + }, + }, + [2003619] = { + ["coords"] = { + [1] = { 38.1, 29.9, 405, 300 }, + }, + }, + [2003620] = { + ["coords"] = { + [1] = { 95.2, 21.5, 331, 300 }, + }, + }, + [2003621] = { + ["coords"] = { + [1] = { 62.5, 60.2, 331, 300 }, + [2] = { 17.4, 26.7, 331, 300 }, + [3] = { 17.4, 25.6, 331, 300 }, + }, + }, + [2003622] = { + ["coords"] = { + [1] = { 17.3, 26.3, 331, 300 }, + }, + }, + [2003623] = { + ["coords"] = { + [1] = { 96.1, 25.8, 331, 300 }, + [2] = { 60.5, 23.3, 361, 300 }, + }, + }, + [2003624] = { + ["coords"] = { + [1] = { 30.9, 62.7, 141, 300 }, + [2] = { 95.5, 27.1, 331, 300 }, + [3] = { 95.5, 26.4, 331, 300 }, + [4] = { 96.6, 26, 331, 300 }, + [5] = { 95.2, 25.7, 331, 300 }, + [6] = { 95.7, 25.6, 331, 300 }, + [7] = { 96.1, 25.4, 331, 300 }, + [8] = { 94.8, 24.4, 331, 300 }, + [9] = { 94.5, 24.1, 331, 300 }, + [10] = { 95, 23.9, 331, 300 }, + [11] = { 94.6, 23.5, 331, 300 }, + [12] = { 94.9, 23.4, 331, 300 }, + [13] = { 94.3, 23.4, 331, 300 }, + [14] = { 95.1, 23, 331, 300 }, + [15] = { 95.9, 22.4, 331, 300 }, + [16] = { 60.7, 23.7, 361, 300 }, + [17] = { 60.7, 23.5, 361, 300 }, + [18] = { 65.7, 75.6, 1657, 300 }, + }, + }, + [2003625] = { + ["coords"] = { + [1] = { 62.2, 24.8, 361, 300 }, + [2] = { 49.8, 31.9, 618, 300 }, + [3] = { 49.1, 31.1, 618, 300 }, + [4] = { 51.3, 29.3, 618, 300 }, + }, + }, + [2003626] = { + ["coords"] = { + [1] = { 30.3, 71.1, 16, 300 }, + [2] = { 33.2, 52.5, 141, 300 }, + [3] = { 77.2, 26.9, 1657, 300 }, + }, + }, + [2003627] = { + ["coords"] = { + [1] = { 29.9, 70.8, 16, 300 }, + [2] = { 29.1, 70.4, 16, 300 }, + [3] = { 29.3, 69.8, 16, 300 }, + [4] = { 23.4, 64.4, 141, 300 }, + [5] = { 23.5, 64.4, 141, 300 }, + [6] = { 27.9, 58.2, 141, 300 }, + [7] = { 29.7, 84.2, 1657, 300 }, + [8] = { 30.4, 84.2, 1657, 300 }, + [9] = { 51.3, 54.1, 1657, 300 }, + }, + }, + [2003628] = { + ["coords"] = { + [1] = { 60.8, 23.9, 361, 300 }, + [2] = { 51.3, 29.3, 618, 300 }, + }, + }, + [2003629] = { + ["coords"] = { + [1] = { 40.5, 68.4, 14, 300 }, + [2] = { 66.4, 32.8, 17, 300 }, + [3] = { 96.3, 26.2, 331, 300 }, + [4] = { 30.9, 89.7, 405, 300 }, + [5] = { 51.3, 29.3, 618, 300 }, + }, + }, + [2003630] = { + ["coords"] = { + [1] = { 64.5, 16.4, 4, 300 }, + [2] = { 73, 34.3, 1497, 300 }, + }, + }, + [2003631] = { + ["coords"] = { + [1] = { 30.4, 64.1, 141, 300 }, + [2] = { 94.9, 26.6, 331, 300 }, + [3] = { 60.4, 23.5, 361, 300 }, + [4] = { 56.3, 44.7, 618, 300 }, + [5] = { 51.3, 29.4, 618, 300 }, + [6] = { 63.5, 82.3, 1657, 300 }, + }, + }, + [2003632] = { + ["coords"] = {}, + }, + [2003633] = { + ["coords"] = { + [1] = { 96.3, 26.2, 331, 300 }, + [2] = { 42, 17.9, 406, 300 }, + }, + }, + [2003634] = { + ["coords"] = { + [1] = { 55.6, 57.5, 141, 300 }, + [2] = { 35, 51.9, 331, 300 }, + [3] = { 96.3, 26.2, 331, 300 }, + [4] = { 60.5, 23.6, 361, 300 }, + [5] = { 38, 30, 405, 300 }, + [6] = { 66.5, 24.2, 440, 300 }, + [7] = { 56.3, 44.7, 618, 300 }, + }, + }, + [2003635] = { + ["coords"] = { + [1] = { 23.7, 65.1, 141, 300 }, + [2] = { 96.1, 22.4, 331, 300 }, + [3] = { 60.4, 23.8, 361, 300 }, + [4] = { 51.3, 29.3, 618, 300 }, + [5] = { 31.2, 87.1, 1657, 300 }, + }, + }, + [2003636] = { + ["coords"] = { + [1] = { 23.7, 64.6, 141, 300 }, + [2] = { 49.3, 31.1, 618, 300 }, + [3] = { 31.3, 85.1, 1657, 300 }, + }, + }, + [2003637] = { + ["coords"] = { + [1] = { 23.9, 64.6, 141, 300 }, + [2] = { 96.1, 22.5, 331, 300 }, + [3] = { 49.8, 31.8, 618, 300 }, + [4] = { 32.3, 85.1, 1657, 300 }, + }, + }, + [2003638] = { + ["coords"] = { + [1] = { 27, 64.9, 141, 300 }, + [2] = { 96.6, 25.6, 331, 300 }, + [3] = { 47.1, 86.3, 1657, 300 }, + }, + }, + [2003639] = { + ["coords"] = { + [1] = { 23.7, 65.2, 141, 300 }, + [2] = { 62.7, 60.2, 331, 300 }, + [3] = { 96.7, 25.7, 331, 300 }, + [4] = { 60.5, 23.3, 361, 300 }, + [5] = { 60.7, 23.3, 361, 300 }, + [6] = { 38, 30, 405, 300 }, + [7] = { 66.7, 24.1, 440, 300 }, + [8] = { 49.9, 31.8, 618, 300 }, + [9] = { 49.6, 31.1, 618, 300 }, + [10] = { 53.3, 29.9, 618, 300 }, + [11] = { 31.1, 87.6, 1657, 300 }, + }, + }, + [2003640] = { + ["coords"] = { + [1] = { 23.7, 65.1, 141, 300 }, + [2] = { 55.6, 57.6, 141, 300 }, + [3] = { 35.2, 52.2, 331, 300 }, + [4] = { 96.8, 25.7, 331, 300 }, + [5] = { 60.5, 23.3, 361, 300 }, + [6] = { 60.7, 23.3, 361, 300 }, + [7] = { 66.7, 24.1, 440, 300 }, + [8] = { 49.9, 31.9, 618, 300 }, + [9] = { 53.3, 30, 618, 300 }, + [10] = { 31, 87.5, 1657, 300 }, + }, + }, + [2003641] = { + ["coords"] = { + [1] = { 23.7, 65.1, 141, 300 }, + [2] = { 60.7, 23.4, 361, 300 }, + [3] = { 31.2, 87.1, 1657, 300 }, + }, + }, + [2003642] = { + ["coords"] = { + [1] = { 32.7, 57.4, 141, 300 }, + [2] = { 60.7, 23.3, 361, 300 }, + [3] = { 38, 30.1, 405, 300 }, + [4] = { 42.1, 18.2, 406, 300 }, + [5] = { 53.3, 30, 618, 300 }, + [6] = { 74.7, 50.4, 1657, 300 }, + }, + }, + [2003643] = { + ["coords"] = {}, + }, + [2003644] = { + ["coords"] = {}, + }, + [2003645] = { + ["coords"] = {}, + }, + [2003646] = { + ["coords"] = { + [1] = { 30.3, 71.1, 16, 300 }, + [2] = { 30.4, 71, 16, 300 }, + }, + }, + [2003647] = { + ["coords"] = { + [1] = { 62.4, 60.8, 331, 300 }, + [2] = { 96.4, 25, 331, 300 }, + }, + }, + [2003648] = { + ["coords"] = { + [1] = { 30.4, 71.3, 16, 300 }, + }, + }, + [2003649] = { + ["coords"] = { + [1] = { 29.9, 70.2, 16, 300 }, + }, + }, + [2003650] = { + ["coords"] = {}, + }, + [2003651] = { + ["coords"] = { + [1] = { 30.4, 70.2, 16, 300 }, + }, + }, + [2003652] = { + ["coords"] = { + [1] = { 29.2, 70.5, 16, 300 }, + }, + }, + [2003653] = { + ["coords"] = { + [1] = { 29.8, 71.1, 16, 300 }, + }, + }, + [2003654] = { + ["coords"] = { + [1] = { 29.3, 71.5, 16, 300 }, + }, + }, + [2003655] = { + ["coords"] = { + [1] = { 29.1, 71.3, 16, 300 }, + }, + }, + [2003656] = { + ["coords"] = {}, + }, + [2003657] = { + ["coords"] = {}, + }, + [2003658] = { + ["coords"] = {}, + }, + [2003659] = { + ["coords"] = { + [1] = { 20.5, 31.7, 331, 300 }, + }, + }, + [2003660] = { + ["coords"] = {}, + }, + [2003661] = { + ["coords"] = {}, + }, + [2003662] = { + ["coords"] = {}, + }, + [2003663] = { + ["coords"] = { + [1] = { 21, 32.1, 331, 300 }, + }, + }, + [2003664] = { + ["coords"] = {}, + }, + [2003665] = { + ["coords"] = { + [1] = { 20.9, 31.8, 331, 300 }, + }, + }, + [2003666] = { + ["coords"] = {}, + }, + [2003667] = { + ["coords"] = {}, + }, + [2003668] = { + ["coords"] = {}, + }, + [2003669] = { + ["coords"] = {}, + }, + [2003670] = { + ["coords"] = {}, + }, + [2003671] = { + ["coords"] = {}, + }, + [2003672] = { + ["coords"] = { + [1] = { 95.7, 27.2, 331, 300 }, + }, + }, + [2003673] = { + ["coords"] = { + [1] = { 26.7, 65, 141, 300 }, + [2] = { 45.5, 86.8, 1657, 300 }, + }, + }, + [2003674] = { + ["coords"] = {}, + }, + [2003675] = { + ["coords"] = {}, + }, + [2003676] = { + ["coords"] = {}, + }, + [2003677] = { + ["coords"] = {}, + }, + [2003678] = { + ["coords"] = { + [1] = { 17.2, 26, 331, 300 }, + }, + }, + [2003679] = { + ["coords"] = { + [1] = { 23.7, 64.6, 141, 300 }, + [2] = { 23.9, 64.6, 141, 300 }, + [3] = { 24, 64.6, 141, 300 }, + [4] = { 30.2, 63.9, 141, 300 }, + [5] = { 30.2, 63.8, 141, 300 }, + [6] = { 31, 62.8, 141, 300 }, + [7] = { 31.1, 62.5, 141, 300 }, + [8] = { 60.7, 23.4, 361, 300 }, + [9] = { 40.8, 11.4, 490, 300 }, + [10] = { 67.4, 46.6, 1519, 25 }, + [11] = { 31, 85, 1657, 300 }, + [12] = { 31.4, 85, 1657, 300 }, + [13] = { 32.1, 84.9, 1657, 300 }, + [14] = { 32.5, 84.9, 1657, 300 }, + [15] = { 62.5, 81.6, 1657, 300 }, + [16] = { 62.6, 81, 1657, 300 }, + [17] = { 66.3, 76.4, 1657, 300 }, + [18] = { 67, 74.9, 1657, 300 }, + [19] = { 41.7, 70.3, 2040, 25 }, + [20] = { 41.8, 69.9, 2040, 25 }, + [21] = { 42.1, 69.8, 2040, 25 }, + [22] = { 42.3, 69.2, 2040, 25 }, + [23] = { 57.6, 35.5, 5225, 25 }, + [24] = { 57.7, 35.3, 5225, 25 }, + [25] = { 57.8, 35.3, 5225, 25 }, + [26] = { 57.9, 35, 5225, 25 }, + }, + }, + [2003680] = { + ["coords"] = {}, + }, + [2003681] = { + ["coords"] = {}, + }, + [2003682] = { + ["coords"] = {}, + }, + [2003683] = { + ["coords"] = {}, + }, + [2003684] = { + ["coords"] = {}, + }, + [2003685] = { + ["coords"] = { + [1] = { 51.2, 30.4, 618, 300 }, + }, + }, + [2003686] = { + ["coords"] = {}, + }, + [2003687] = { + ["coords"] = {}, + }, + [2003688] = { + ["coords"] = {}, + }, + [2003689] = { + ["coords"] = {}, + }, + [2003690] = { + ["coords"] = { + [1] = { 49.3, 32, 618, 300 }, + }, + }, + [2003691] = { + ["coords"] = { + [1] = { 50.4, 30, 618, 300 }, + }, + }, + [2003692] = { + ["coords"] = { + [1] = { 49.7, 31.6, 618, 300 }, + }, + }, + [2003693] = { + ["coords"] = {}, + }, + [2003694] = { + ["coords"] = {}, + }, + [2003695] = { + ["coords"] = { + [1] = { 41.6, 66.2, 1519, 300 }, + }, + }, + [2003696] = { + ["coords"] = {}, + }, + [2003697] = { + ["coords"] = {}, + }, + [2003698] = { + ["coords"] = {}, + }, + [2003699] = { + ["coords"] = {}, + }, + [2003700] = { + ["coords"] = {}, + }, + [2003701] = { + ["coords"] = {}, + }, + [2003702] = { + ["coords"] = {}, + }, + [2003703] = { + ["coords"] = {}, + }, + [2003704] = { + ["coords"] = {}, + }, + [2003705] = { + ["coords"] = {}, + }, + [2003706] = { + ["coords"] = {}, + }, + [2003707] = { + ["coords"] = {}, + }, + [2003708] = { + ["coords"] = {}, + }, + [2003709] = { + ["coords"] = {}, + }, + [2003710] = { + ["coords"] = {}, + }, + [2003711] = { + ["coords"] = {}, + }, + [2003712] = { + ["coords"] = {}, + }, + [2003713] = { + ["coords"] = {}, + }, + [2003714] = { + ["coords"] = {}, + }, + [2003715] = { + ["coords"] = {}, + }, + [2003716] = { + ["coords"] = {}, + }, + [2003717] = { + ["coords"] = {}, + }, + [2003718] = { + ["coords"] = {}, + }, + [2003719] = { + ["coords"] = {}, + }, + [2003720] = { + ["coords"] = {}, + }, + [2003721] = { + ["coords"] = {}, + }, + [2003722] = { + ["coords"] = {}, + }, + [2003723] = { + ["coords"] = {}, + }, + [2003724] = { + ["coords"] = {}, + }, + [2003725] = { + ["coords"] = {}, + }, + [2003726] = { + ["coords"] = {}, + }, + [2003727] = { + ["coords"] = { + [1] = { 95.1, 27.2, 331, 300 }, + }, + }, + [2003728] = { + ["coords"] = { + [1] = { 53.2, 30, 618, 300 }, + [2] = { 53.3, 29.9, 618, 300 }, + }, + }, + [2003729] = { + ["coords"] = { + [1] = { 23.7, 65.1, 141, 300 }, + [2] = { 53.3, 30, 618, 300 }, + [3] = { 53.3, 29.8, 618, 300 }, + [4] = { 31.2, 87.1, 1657, 300 }, + }, + }, + [2003730] = { + ["coords"] = { + [1] = { 23.8, 65.1, 141, 300 }, + [2] = { 31.6, 87.2, 1657, 300 }, + }, + }, + [2003731] = { + ["coords"] = { + [1] = { 23.6, 65.1, 141, 300 }, + [2] = { 31, 87.3, 1657, 300 }, + }, + }, + [2003732] = { + ["coords"] = { + [1] = { 23.7, 65.2, 141, 300 }, + [2] = { 53.2, 30, 618, 300 }, + [3] = { 53.2, 29.8, 618, 300 }, + [4] = { 31.3, 87.6, 1657, 300 }, + }, + }, + [2003733] = { + ["coords"] = { + [1] = { 59.1, 75.1, 38, 300 }, + [2] = { 32.9, 57.6, 141, 300 }, + [3] = { 32.9, 57.4, 141, 300 }, + [4] = { 94.9, 26.6, 331, 300 }, + [5] = { 96.3, 26.2, 331, 300 }, + [6] = { 96.1, 22.5, 331, 300 }, + [7] = { 62.3, 24.7, 361, 300 }, + [8] = { 42, 17.9, 406, 300 }, + [9] = { 40.8, 11.1, 490, 300 }, + [10] = { 56.3, 44.7, 618, 300 }, + [11] = { 49.8, 31.8, 618, 300 }, + [12] = { 49.7, 31.1, 618, 300 }, + [13] = { 49.7, 30.9, 618, 300 }, + [14] = { 51.3, 29.3, 618, 300 }, + [15] = { 75.6, 51.2, 1657, 300 }, + [16] = { 75.6, 50.3, 1657, 300 }, + [17] = { 28.8, 82.7, 5602, 300 }, + }, + }, + [2003734] = { + ["coords"] = { + [1] = { 81.3, 29.2, 616, 300 }, + }, + }, + [2003735] = { + ["coords"] = {}, + }, + [2003736] = { + ["coords"] = {}, + }, + [2003737] = { + ["coords"] = { + [1] = { 66.7, 24.3, 440, 300 }, + [2] = { 59.4, 56, 876, 300 }, + [3] = { 61.6, 55.5, 876, 300 }, + }, + }, + [2003738] = { + ["coords"] = {}, + }, + [2003739] = { + ["coords"] = { + [1] = { 38.4, 30.2, 405, 300 }, + }, + }, + [2003740] = { + ["coords"] = {}, + }, + [2003741] = { + ["coords"] = { + [1] = { 49.7, 30.8, 618, 300 }, + }, + }, + [2003742] = { + ["coords"] = {}, + }, + [2003743] = { + ["coords"] = {}, + }, + [2003744] = { + ["coords"] = { + [1] = { 49.7, 31.1, 618, 300 }, + }, + }, + [2003745] = { + ["coords"] = { + [1] = { 31.3, 63, 141, 300 }, + [2] = { 68, 77.1, 1657, 300 }, + }, + }, + [2003746] = { + ["coords"] = {}, + }, + [2003747] = { + ["coords"] = { + [1] = { 55.8, 58.9, 141, 300 }, + [2] = { 62.3, 24.9, 361, 300 }, + [3] = { 66.7, 24.1, 440, 300 }, + }, + }, + [2003748] = { + ["coords"] = { + [1] = { 35, 52.3, 331, 300 }, + [2] = { 62.3, 25, 361, 300 }, + [3] = { 49, 31, 618, 300 }, + }, + }, + [2003749] = { + ["coords"] = { + [1] = { 51.3, 29.4, 618, 300 }, + }, + }, + [2003750] = { + ["coords"] = { + [1] = { 51.3, 29.3, 618, 300 }, + }, + }, + [2003751] = { + ["coords"] = { + [1] = { 66.6, 24, 440, 300 }, + [2] = { 49.8, 30.8, 618, 300 }, + }, + }, + [2003752] = { + ["coords"] = {}, + }, + [2003753] = { + ["coords"] = {}, + }, + [2003754] = { + ["coords"] = { + [1] = { 83.7, 56.2, 400, 25 }, + }, + }, + [2003755] = { + ["coords"] = { + [1] = { 25.6, 66.2, 16, 300 }, + [2] = { 84, 56.3, 400, 25 }, + }, + }, + [2003756] = { + ["coords"] = { + [1] = { 83.9, 55.7, 400, 25 }, + }, + }, + [2003757] = { + ["coords"] = {}, + }, + [2003758] = { + ["coords"] = { + [1] = { 52.8, 64.4, 14, 300 }, + [2] = { 41.9, 72.5, 15, 25 }, + [3] = { 34.3, 10.2, 17, 300 }, + [4] = { 44.6, 98.2, 28, 300 }, + [5] = { 81.5, 50.9, 36, 300 }, + [6] = { 67.6, 83.3, 130, 300 }, + [7] = { 14.2, 49.9, 267, 300 }, + [8] = { 42.1, 75, 331, 300 }, + [9] = { 79.8, 62.9, 406, 300 }, + [10] = { 77.8, 41.2, 406, 300 }, + [11] = { 66.6, 24.1, 440, 300 }, + [12] = { 72.1, 12.5, 5179, 300 }, + [13] = { 84.2, 78.3, 5208, 300 }, + }, + }, + [2003759] = { + ["coords"] = { + [1] = { 48.9, 60.2, 11, 300 }, + [2] = { 39.1, 69.3, 12, 300 }, + [3] = { 20.9, 55.1, 331, 300 }, + [4] = { 50.1, 63.5, 406, 300 }, + [5] = { 57.4, 22, 406, 300 }, + [6] = { 29.9, 13.9, 1519, 300 }, + [7] = { 32.5, 84.8, 5581, 300 }, + [8] = { 6.3, 25.2, 5602, 300 }, + }, + }, + [2003760] = { + ["coords"] = {}, + }, + [2003761] = { + ["coords"] = {}, + }, + [2003762] = { + ["coords"] = {}, + }, + [2003763] = { + ["coords"] = {}, + }, + [2003764] = { + ["coords"] = {}, + }, + [2003765] = { + ["coords"] = {}, + }, + [2003766] = { + ["coords"] = {}, + }, + [2003767] = { + ["coords"] = {}, + }, + [2003768] = { + ["coords"] = {}, + }, + [2003769] = { + ["coords"] = {}, + }, + [2003770] = { + ["coords"] = {}, + }, + [2003771] = { + ["coords"] = {}, + }, + [2003772] = { + ["coords"] = {}, + }, + [2003773] = { + ["coords"] = {}, + }, + [2003774] = { + ["coords"] = {}, + }, + [2003775] = { + ["coords"] = {}, + }, + [2003776] = { + ["coords"] = {}, + }, + [2003777] = { + ["coords"] = {}, + }, + [2003778] = { + ["coords"] = {}, + }, + [2003779] = { + ["coords"] = {}, + }, + [2003780] = { + ["coords"] = {}, + }, + [2003781] = { + ["coords"] = {}, + }, + [2003782] = { + ["coords"] = {}, + }, + [2003783] = { + ["coords"] = {}, + }, + [2003784] = { + ["coords"] = {}, + }, + [2003785] = { + ["coords"] = { + [1] = { 28.5, 1.4, 408, 300 }, + [2] = { 47.5, 79.1, 409, 300 }, + }, + }, + [2003786] = { + ["coords"] = { + [1] = { 41.5, 74.2, 15, 25 }, + [2] = { 81.1, 61.6, 28, 300 }, + [3] = { 22.8, 85.2, 139, 300 }, + [4] = { 74.7, 29.5, 357, 300 }, + }, + }, + [2003787] = { + ["coords"] = { + [1] = { 35.6, 25.8, 16, 300 }, + [2] = { 35.8, 25.5, 16, 300 }, + [3] = { 30.2, 48.8, 33, 300 }, + [4] = { 29.8, 48, 33, 300 }, + [5] = { 29.8, 47.8, 33, 300 }, + [6] = { 31, 47, 33, 300 }, + [7] = { 30.1, 47, 33, 300 }, + [8] = { 30.9, 46.9, 33, 300 }, + [9] = { 30.2, 46.9, 33, 300 }, + [10] = { 25.1, 13.1, 406, 300 }, + [11] = { 66.7, 86, 618, 300 }, + [12] = { 67.1, 85.9, 618, 300 }, + [13] = { 66.7, 85.7, 618, 300 }, + [14] = { 66.3, 85.7, 618, 300 }, + [15] = { 67.3, 85.6, 618, 300 }, + [16] = { 66.4, 85.6, 618, 300 }, + [17] = { 67, 85.6, 618, 300 }, + [18] = { 66.2, 85.1, 618, 300 }, + [19] = { 66.4, 85.1, 618, 300 }, + [20] = { 66.3, 84.8, 618, 300 }, + [21] = { 52.4, 70.3, 1637, 300 }, + }, + }, + [2003788] = { + ["coords"] = {}, + }, + [2003789] = { + ["coords"] = {}, + }, + [2003790] = { + ["coords"] = { + [1] = { 30.3, 48.9, 33, 300 }, + [2] = { 30.7, 57, 5561, 300 }, + }, + }, + [2003791] = { + ["coords"] = {}, + }, + [2003792] = { + ["coords"] = { + [1] = { 62, 8.5, 33, 300 }, + }, + }, + [2003793] = { + ["coords"] = { + [1] = { 48.4, 22.8, 45, 300 }, + [2] = { 26.9, 83.7, 47, 300 }, + }, + }, + [2003794] = { + ["coords"] = { + [1] = { 55.6, 34.2, 14, 300 }, + [2] = { 49.2, 9.9, 17, 300 }, + [3] = { 64.4, 16.9, 33, 300 }, + [4] = { 24.4, 12.8, 406, 300 }, + }, + }, + [2003795] = { + ["coords"] = { + [1] = { 49.2, 9.9, 17, 300 }, + [2] = { 50.8, 25.3, 45, 300 }, + [3] = { 55.1, 56.1, 405, 300 }, + [4] = { 24.4, 12.8, 406, 300 }, + }, + }, + [2003796] = { + ["coords"] = { + [1] = { 58.8, 5.8, 17, 0 }, + [2] = { 24.4, 12.8, 406, 300 }, + }, + }, + [2003797] = { + ["coords"] = { + [1] = { 40.5, 68.5, 14, 300 }, + [2] = { 41.3, 18, 14, 300 }, + [3] = { 66.4, 32.9, 17, 300 }, + }, + }, + [2003798] = { + ["coords"] = {}, + }, + [2003799] = { + ["coords"] = {}, + }, + [2003800] = { + ["coords"] = { + [1] = { 50, 50.3, 8, 300 }, + [2] = { 49.5, 49.9, 8, 300 }, + [3] = { 48.7, 47.1, 8, 300 }, + [4] = { 49.9, 44.5, 8, 300 }, + }, + }, + [2003801] = { + ["coords"] = { + [1] = { 48.7, 55.5, 8, 300 }, + [2] = { 54.4, 41.3, 14, 300 }, + }, + }, + [2003802] = { + ["coords"] = {}, + }, + [2003803] = { + ["coords"] = { + [1] = { 28.9, 73.5, 16, 300 }, + }, + }, + [2003804] = { + ["coords"] = { + [1] = { 48.7, 9.8, 17, 300 }, + [2] = { 48.3, 8.9, 17, 300 }, + [3] = { 48.2, 8.3, 17, 300 }, + [4] = { 90.7, 58.4, 331, 300 }, + [5] = { 90.7, 57.9, 331, 300 }, + [6] = { 49.9, 72.1, 1637, 300 }, + }, + }, + [2003805] = { + ["coords"] = {}, + }, + [2003806] = { + ["coords"] = {}, + }, + [2003807] = { + ["coords"] = {}, + }, + [2003808] = { + ["coords"] = { + [1] = { 31.3, 48.5, 33, 300 }, + [2] = { 64.5, 27.5, 33, 300 }, + [3] = { 64.7, 26.4, 33, 300 }, + [4] = { 64.6, 26.2, 33, 300 }, + [5] = { 64.7, 25, 33, 300 }, + [6] = { 62.3, 20.7, 33, 300 }, + [7] = { 62.5, 20.4, 33, 300 }, + [8] = { 62.1, 19.2, 33, 300 }, + [9] = { 59.3, 18.4, 33, 300 }, + [10] = { 57.3, 17.8, 33, 300 }, + [11] = { 59.4, 15, 33, 300 }, + [12] = { 57.9, 14.4, 33, 300 }, + [13] = { 59.4, 14.3, 33, 300 }, + [14] = { 64, 14.2, 33, 300 }, + [15] = { 58.4, 13.5, 33, 300 }, + [16] = { 63.6, 12.7, 33, 300 }, + [17] = { 58.6, 11.1, 33, 300 }, + [18] = { 61.7, 10.2, 33, 300 }, + }, + }, + [2003809] = { + ["coords"] = {}, + }, + [2003810] = { + ["coords"] = {}, + }, + [2003811] = { + ["coords"] = {}, + }, + [2003812] = { + ["coords"] = { + [1] = { 51.2, 48.3, 8, 300 }, + [2] = { 49.1, 48, 8, 300 }, + [3] = { 51.2, 46.2, 8, 300 }, + [4] = { 37.6, 72.1, 14, 300 }, + [5] = { 40.5, 68.1, 14, 300 }, + [6] = { 44.8, 15.2, 14, 300 }, + [7] = { 45.3, 14.9, 14, 300 }, + [8] = { 44.8, 12.7, 14, 300 }, + [9] = { 29.1, 70.6, 16, 300 }, + [10] = { 29.1, 70.5, 16, 300 }, + [11] = { 45.9, 85.7, 17, 300 }, + [12] = { 38.1, 37.1, 17, 300 }, + [13] = { 64.9, 34.7, 17, 300 }, + [14] = { 66.4, 32.7, 17, 300 }, + [15] = { 61.6, 24.6, 17, 300 }, + [16] = { 61.6, 24.5, 17, 300 }, + [17] = { 62.7, 24.2, 17, 300 }, + [18] = { 61.6, 24.1, 17, 300 }, + [19] = { 61.2, 24, 17, 300 }, + [20] = { 62, 19.9, 17, 300 }, + [21] = { 48.8, 9.1, 17, 300 }, + [22] = { 54.2, 1.3, 17, 300 }, + [23] = { 95.8, 75.8, 25, 300 }, + [24] = { 28.6, 75.6, 33, 300 }, + [25] = { 40.1, 33.4, 46, 300 }, + [26] = { 89.2, 22.5, 46, 300 }, + [27] = { 89.2, 22.4, 46, 300 }, + [28] = { 90.1, 22, 46, 300 }, + [29] = { 77.1, 81.9, 47, 300 }, + [30] = { 64, 18.1, 215, 300 }, + [31] = { 79.2, 82, 331, 300 }, + [32] = { 73.1, 57, 331, 300 }, + [33] = { 91.5, 54.2, 331, 300 }, + [34] = { 47.9, 53.4, 331, 300 }, + [35] = { 48.8, 61.2, 406, 300 }, + [36] = { 51.7, 52.3, 409, 300 }, + [37] = { 51.6, 52.3, 409, 300 }, + [38] = { 53.2, 49.7, 409, 300 }, + [39] = { 53.4, 49.6, 409, 300 }, + [40] = { 58, 22.3, 440, 300 }, + [41] = { 58, 22, 440, 300 }, + [42] = { 46.5, 97.8, 1637, 300 }, + [43] = { 36.9, 19.3, 5561, 300 }, + [44] = { 54.9, 19.2, 5561, 300 }, + }, + }, + [2003813] = { + ["coords"] = { + [1] = { 43.1, 69.4, 14, 300 }, + [2] = { 42.4, 67.9, 14, 300 }, + [3] = { 44.2, 67.5, 14, 300 }, + [4] = { 44, 67.2, 14, 300 }, + [5] = { 44.5, 67.2, 14, 300 }, + [6] = { 44.7, 15.2, 14, 300 }, + [7] = { 45.3, 14.9, 14, 300 }, + [8] = { 44.8, 12.7, 14, 300 }, + [9] = { 43.7, 91.8, 17, 300 }, + [10] = { 61.1, 24.6, 17, 300 }, + [11] = { 61.1, 24.2, 17, 300 }, + [12] = { 62, 19.9, 17, 300 }, + [13] = { 49, 10.1, 17, 300 }, + [14] = { 48, 8.4, 17, 300 }, + [15] = { 96.3, 82.9, 25, 300 }, + [16] = { 96.6, 82.8, 25, 300 }, + [17] = { 98.7, 80.3, 25, 300 }, + [18] = { 97.9, 77.1, 25, 300 }, + [19] = { 95.5, 75.8, 25, 300 }, + [20] = { 50.8, 25.3, 45, 300 }, + [21] = { 40.3, 35.1, 46, 300 }, + [22] = { 40.8, 34.5, 46, 300 }, + [23] = { 40.7, 33.7, 46, 300 }, + [24] = { 40.1, 33.4, 46, 300 }, + [25] = { 77.1, 81.9, 47, 300 }, + [26] = { 27.9, 77, 85, 300 }, + [27] = { 70.9, 68.4, 331, 300 }, + [28] = { 62.4, 60.4, 331, 300 }, + [29] = { 88.9, 59.4, 331, 300 }, + [30] = { 73.2, 58.2, 331, 300 }, + [31] = { 73.2, 58.1, 331, 300 }, + [32] = { 31.2, 21.2, 400, 300 }, + [33] = { 23.9, 68.2, 405, 300 }, + [34] = { 49, 61.3, 406, 300 }, + [35] = { 48.7, 60.3, 406, 300 }, + [36] = { 24.7, 11.8, 406, 300 }, + [37] = { 24.8, 11.7, 406, 300 }, + [38] = { 46.6, 97.8, 1637, 300 }, + [39] = { 53.7, 65.9, 1637, 300 }, + [40] = { 5.9, 90.2, 2100, 300 }, + [41] = { 40.7, 76.4, 5561, 300 }, + }, + }, + [2003814] = { + ["coords"] = { + [1] = { 51.5, 44.8, 8, 300 }, + [2] = { 37.5, 71, 14, 300 }, + [3] = { 45.3, 14.9, 14, 300 }, + [4] = { 43.7, 91.8, 17, 300 }, + [5] = { 43.7, 91.7, 17, 300 }, + [6] = { 38.2, 37.1, 17, 300 }, + [7] = { 64.8, 34.2, 17, 300 }, + [8] = { 61.6, 24.6, 17, 300 }, + [9] = { 61.2, 24.1, 17, 300 }, + [10] = { 48.9, 9.9, 17, 300 }, + [11] = { 48.8, 9.1, 17, 300 }, + [12] = { 98.1, 81.8, 25, 300 }, + [13] = { 98, 77.4, 25, 300 }, + [14] = { 95.4, 76.1, 25, 300 }, + [15] = { 31.8, 27.5, 33, 300 }, + [16] = { 51, 25, 45, 300 }, + [17] = { 48.5, 23, 45, 300 }, + [18] = { 40.7, 34.8, 46, 300 }, + [19] = { 40.7, 33.8, 46, 300 }, + [20] = { 40, 33.5, 46, 300 }, + [21] = { 90.3, 22.9, 46, 300 }, + [22] = { 27, 83.8, 47, 300 }, + [23] = { 64.1, 18.1, 215, 300 }, + [24] = { 70.8, 68.3, 331, 300 }, + [25] = { 88.9, 59.4, 331, 300 }, + [26] = { 47.8, 53.3, 331, 300 }, + [27] = { 31.2, 21.3, 400, 300 }, + [28] = { 31.3, 21, 400, 300 }, + [29] = { 50.3, 63.6, 406, 300 }, + [30] = { 49.2, 61.3, 406, 300 }, + [31] = { 48.8, 60.2, 406, 300 }, + [32] = { 53.4, 49.6, 409, 300 }, + [33] = { 53.2, 49.5, 409, 300 }, + }, + }, + [2003815] = { + ["coords"] = { + [1] = { 52.8, 64.5, 14, 300 }, + [2] = { 55.5, 33.9, 14, 300 }, + [3] = { 44.8, 12.7, 14, 300 }, + [4] = { 43.8, 91.9, 17, 300 }, + [5] = { 43.7, 91.6, 17, 300 }, + [6] = { 61.8, 19.8, 17, 300 }, + [7] = { 48.7, 9.3, 17, 300 }, + [8] = { 54.1, 1.3, 17, 300 }, + [9] = { 95.6, 82.6, 25, 300 }, + [10] = { 97.4, 82.1, 25, 300 }, + [11] = { 31.8, 27.5, 33, 300 }, + [12] = { 51.9, 24.9, 45, 300 }, + [13] = { 48.5, 22.6, 45, 300 }, + [14] = { 16.9, 65.7, 46, 300 }, + [15] = { 40.1, 35, 46, 300 }, + [16] = { 40.5, 34.9, 46, 300 }, + [17] = { 89.3, 22.3, 46, 300 }, + [18] = { 90.1, 22, 46, 300 }, + [19] = { 30.2, 85.6, 47, 300 }, + [20] = { 27, 83.5, 47, 300 }, + [21] = { 21.8, 68.1, 85, 300 }, + [22] = { 79, 81.9, 331, 300 }, + [23] = { 73.1, 59.8, 331, 300 }, + [24] = { 89.1, 58.4, 331, 300 }, + [25] = { 91.4, 57.4, 331, 300 }, + [26] = { 91.4, 54.1, 331, 300 }, + [27] = { 74.7, 42.6, 357, 300 }, + [28] = { 31.4, 21.5, 400, 300 }, + [29] = { 31.2, 20.8, 400, 300 }, + [30] = { 49, 61.3, 406, 300 }, + [31] = { 48.7, 60.4, 406, 300 }, + [32] = { 44.7, 50.3, 406, 300 }, + [33] = { 27.6, 18.6, 406, 300 }, + [34] = { 52.7, 49.3, 409, 300 }, + [35] = { 46.5, 97.7, 1637, 300 }, + [36] = { 93.1, 92.1, 5581, 300 }, + }, + }, + [2003816] = { + ["coords"] = { + [1] = { 50.9, 45.9, 8, 300 }, + [2] = { 51.5, 44.8, 8, 300 }, + [3] = { 39.2, 69.4, 12, 300 }, + [4] = { 37.5, 71, 14, 300 }, + [5] = { 52.8, 64.2, 14, 300 }, + [6] = { 55.5, 33.9, 14, 300 }, + [7] = { 44.8, 15.2, 14, 300 }, + [8] = { 45.4, 14.8, 14, 300 }, + [9] = { 29.1, 70.5, 16, 300 }, + [10] = { 51.2, 37.9, 16, 300 }, + [11] = { 51.2, 37.7, 16, 300 }, + [12] = { 51.5, 37.5, 16, 300 }, + [13] = { 54.7, 10.3, 16, 300 }, + [14] = { 54.5, 10.2, 16, 300 }, + [15] = { 43.7, 91.8, 17, 300 }, + [16] = { 43.7, 91.7, 17, 300 }, + [17] = { 64.8, 34.2, 17, 300 }, + [18] = { 61.1, 24.6, 17, 300 }, + [19] = { 61.6, 24.5, 17, 300 }, + [20] = { 61.6, 24.1, 17, 300 }, + [21] = { 61.2, 24.1, 17, 300 }, + [22] = { 48.7, 9.2, 17, 300 }, + [23] = { 48.8, 9.1, 17, 300 }, + [24] = { 54.1, 1.4, 17, 300 }, + [25] = { 54.2, 1.4, 17, 300 }, + [26] = { 44.1, 98.6, 28, 300 }, + [27] = { 80.8, 51.4, 36, 300 }, + [28] = { 51.1, 25, 45, 300 }, + [29] = { 90.1, 23.1, 46, 300 }, + [30] = { 90.2, 23.1, 46, 300 }, + [31] = { 89.4, 22.2, 46, 300 }, + [32] = { 89.5, 22.1, 46, 300 }, + [33] = { 79.1, 82, 331, 300 }, + [34] = { 79.2, 82, 331, 300 }, + [35] = { 70.8, 68.3, 331, 300 }, + [36] = { 89.1, 58.6, 331, 300 }, + [37] = { 73.1, 58.2, 331, 300 }, + [38] = { 47.8, 53.4, 331, 300 }, + [39] = { 12.3, 34.9, 331, 300 }, + [40] = { 12.3, 34.8, 331, 300 }, + [41] = { 31.2, 21.1, 400, 300 }, + [42] = { 55.2, 56.1, 405, 300 }, + [43] = { 50.3, 63.8, 406, 300 }, + [44] = { 50.3, 63.7, 406, 300 }, + [45] = { 49.1, 61.3, 406, 300 }, + [46] = { 48.8, 61.1, 406, 300 }, + [47] = { 49.2, 60.3, 406, 300 }, + [48] = { 49.1, 60.2, 406, 300 }, + [49] = { 48.8, 60.2, 406, 300 }, + [50] = { 27.6, 18.7, 406, 300 }, + [51] = { 52, 51.6, 409, 300 }, + [52] = { 53.1, 49.4, 409, 300 }, + [53] = { 66.2, 84.9, 618, 300 }, + }, + }, + [2003817] = { + ["coords"] = { + [1] = { 50.6, 45.9, 8, 300 }, + [2] = { 50.6, 45.8, 8, 300 }, + [3] = { 55.4, 34.2, 14, 300 }, + [4] = { 61.6, 24.6, 17, 300 }, + [5] = { 62.7, 24.2, 17, 300 }, + [6] = { 61.7, 24.1, 17, 300 }, + [7] = { 61.2, 24.1, 17, 300 }, + [8] = { 48.7, 9.3, 17, 300 }, + [9] = { 51.5, 25.6, 45, 300 }, + [10] = { 50.7, 25, 45, 300 }, + [11] = { 51.3, 24.8, 45, 300 }, + [12] = { 48.6, 22.6, 45, 300 }, + [13] = { 19.6, 65.8, 46, 300 }, + [14] = { 89.7, 22.6, 46, 300 }, + [15] = { 89.3, 22.3, 46, 300 }, + [16] = { 90.3, 22.1, 46, 300 }, + [17] = { 29.8, 86.3, 47, 300 }, + [18] = { 29.6, 85.5, 47, 300 }, + [19] = { 27, 83.5, 47, 300 }, + [20] = { 27.7, 76.9, 85, 300 }, + [21] = { 21.8, 67.8, 85, 300 }, + [22] = { 16.5, 54.3, 85, 300 }, + [23] = { 91.4, 57.4, 331, 300 }, + [24] = { 47.8, 53.3, 331, 300 }, + [25] = { 74.5, 43, 357, 300 }, + [26] = { 50.3, 63.6, 406, 300 }, + [27] = { 49.2, 61.3, 406, 300 }, + [28] = { 48.7, 60.2, 406, 300 }, + [29] = { 52.9, 50.1, 409, 300 }, + [30] = { 53.1, 49.8, 409, 300 }, + [31] = { 31.5, 36.6, 440, 300 }, + [32] = { 58, 21.9, 440, 300 }, + [33] = { 79, 64.5, 490, 300 }, + [34] = { 95.6, 92.2, 5581, 300 }, + }, + }, + [2003818] = { + ["coords"] = { + [1] = { 50.2, 45.5, 8, 300 }, + [2] = { 41.3, 18, 14, 300 }, + [3] = { 44.8, 15.3, 14, 300 }, + [4] = { 61.7, 24.1, 17, 300 }, + [5] = { 62, 19.7, 17, 300 }, + [6] = { 48.8, 9, 17, 300 }, + [7] = { 47.8, 8.7, 17, 300 }, + [8] = { 95.8, 82.7, 25, 300 }, + [9] = { 31.5, 30, 33, 300 }, + [10] = { 31.7, 27.5, 33, 300 }, + [11] = { 51.9, 25, 45, 300 }, + [12] = { 40.1, 35.1, 46, 300 }, + [13] = { 30.2, 85.7, 47, 300 }, + [14] = { 4.4, 62.1, 85, 300 }, + [15] = { 70.8, 68.3, 331, 300 }, + [16] = { 12.1, 35, 331, 300 }, + [17] = { 74.4, 42.8, 357, 300 }, + [18] = { 49.2, 61.3, 406, 300 }, + [19] = { 41.5, 61.6, 1637, 300 }, + [20] = { 46.2, 63.6, 5561, 300 }, + }, + }, + [2003819] = { + ["coords"] = { + [1] = { 51.2, 46.4, 8, 300 }, + [2] = { 51.1, 46.3, 8, 300 }, + [3] = { 50.2, 45.5, 8, 300 }, + [4] = { 44.9, 15.3, 14, 300 }, + [5] = { 44.8, 15.3, 14, 300 }, + [6] = { 54.7, 10.5, 16, 300 }, + [7] = { 54.6, 10.1, 16, 300 }, + [8] = { 43.8, 91.9, 17, 300 }, + [9] = { 61.1, 24.8, 17, 300 }, + [10] = { 61.1, 24.7, 17, 300 }, + [11] = { 61.7, 24.1, 17, 300 }, + [12] = { 61.2, 24.1, 17, 300 }, + [13] = { 98.4, 80.2, 25, 300 }, + [14] = { 51.6, 24.6, 45, 300 }, + [15] = { 48.6, 22.9, 45, 300 }, + [16] = { 40.8, 34.4, 46, 300 }, + [17] = { 89.7, 22.7, 46, 300 }, + [18] = { 89.3, 22.4, 46, 300 }, + [19] = { 90.3, 22.1, 46, 300 }, + [20] = { 29.9, 85.4, 47, 300 }, + [21] = { 27, 83.8, 47, 300 }, + [22] = { 73.1, 58.3, 331, 300 }, + [23] = { 73.2, 58.3, 331, 300 }, + [24] = { 47.7, 53.5, 331, 300 }, + [25] = { 74.7, 42.6, 357, 300 }, + [26] = { 31.3, 21.4, 400, 300 }, + [27] = { 49.2, 61.3, 406, 300 }, + [28] = { 54.2, 84.9, 408, 300 }, + [29] = { 52.9, 52.3, 409, 300 }, + [30] = { 58, 22.4, 440, 300 }, + [31] = { 58, 22, 440, 300 }, + [32] = { 54.7, 19.3, 5561, 300 }, + }, + }, + [2003820] = { + ["coords"] = { + [1] = { 54.7, 10.3, 16, 300 }, + [2] = { 43.8, 91.9, 17, 300 }, + [3] = { 93.4, 78.6, 25, 300 }, + [4] = { 98.1, 77.8, 25, 300 }, + [5] = { 94.9, 76.5, 25, 300 }, + [6] = { 39.6, 34.1, 46, 300 }, + [7] = { 40.7, 33.9, 46, 300 }, + [8] = { 39.9, 33.6, 46, 300 }, + [9] = { 74.4, 42.9, 357, 300 }, + [10] = { 31.4, 21.5, 400, 300 }, + [11] = { 48.6, 60.4, 406, 300 }, + [12] = { 46.2, 63.7, 5561, 300 }, + }, + }, + [2003821] = { + ["coords"] = { + [1] = { 50.1, 45.4, 8, 300 }, + [2] = { 53.5, 64.7, 14, 300 }, + [3] = { 44.5, 15, 14, 300 }, + [4] = { 44.5, 14.9, 14, 300 }, + [5] = { 61.3, 23.9, 17, 300 }, + [6] = { 48.7, 9.3, 17, 300 }, + [7] = { 98.7, 79.8, 25, 300 }, + [8] = { 93.8, 78.5, 25, 300 }, + [9] = { 98.1, 78.4, 25, 300 }, + [10] = { 94.6, 76.7, 25, 300 }, + [11] = { 94.9, 76.5, 25, 300 }, + [12] = { 50.6, 25, 45, 300 }, + [13] = { 51.9, 25, 45, 300 }, + [14] = { 40.8, 34.4, 46, 300 }, + [15] = { 39.6, 34, 46, 300 }, + [16] = { 40.7, 34, 46, 300 }, + [17] = { 39.8, 33.6, 46, 300 }, + [18] = { 39.9, 33.6, 46, 300 }, + [19] = { 30.2, 85.7, 47, 300 }, + [20] = { 76.9, 81.8, 47, 300 }, + [21] = { 42.1, 10, 130, 300 }, + [22] = { 91.4, 54.1, 331, 300 }, + [23] = { 48.8, 61.2, 406, 300 }, + [24] = { 41.6, 61.7, 1637, 300 }, + [25] = { 40.8, 76.4, 5561, 300 }, + }, + }, + [2003822] = { + ["coords"] = { + [1] = { 41.3, 18.1, 14, 300 }, + [2] = { 53.9, 8.9, 15, 300 }, + [3] = { 63.4, 58.6, 17, 300 }, + [4] = { 50.9, 25, 45, 300 }, + [5] = { 15.4, 68.4, 85, 300 }, + [6] = { 49.4, 60.7, 406, 300 }, + [7] = { 51.2, 29.7, 618, 300 }, + }, + }, + [2003823] = { + ["coords"] = { + [1] = { 51.3, 44.4, 8, 300 }, + [2] = { 54.1, 8.9, 15, 300 }, + [3] = { 63.5, 58.6, 17, 300 }, + [4] = { 61.1, 24.2, 17, 300 }, + [5] = { 12.8, 64.9, 85, 300 }, + [6] = { 85.6, 57.7, 85, 300 }, + [7] = { 73.1, 58.2, 331, 300 }, + [8] = { 74.7, 42.5, 357, 300 }, + [9] = { 40.7, 76.5, 5561, 300 }, + [10] = { 54.7, 19.3, 5561, 300 }, + }, + }, + [2003824] = { + ["coords"] = { + [1] = { 44.6, 14.9, 14, 300 }, + [2] = { 53.9, 9, 15, 300 }, + [3] = { 63.4, 58.6, 17, 300 }, + [4] = { 49, 9.8, 17, 300 }, + [5] = { 96, 82.9, 25, 300 }, + [6] = { 29.3, 44.6, 28, 300 }, + [7] = { 53.6, 99.2, 36, 300 }, + [8] = { 48.6, 23, 45, 300 }, + [9] = { 40.2, 35.1, 46, 300 }, + [10] = { 89.2, 22.7, 46, 300 }, + [11] = { 27, 83.8, 47, 300 }, + [12] = { 15.8, 68.5, 85, 300 }, + [13] = { 85.7, 58.1, 85, 300 }, + [14] = { 21.1, 49, 267, 300 }, + [15] = { 55.7, 35.3, 267, 300 }, + [16] = { 74.8, 42.5, 357, 300 }, + [17] = { 78.1, 11.8, 5179, 300 }, + [18] = { 40.8, 76.3, 5561, 300 }, + }, + }, + [2003825] = { + ["coords"] = { + [1] = { 50.6, 45.8, 8, 300 }, + [2] = { 53.2, 43.4, 14, 300 }, + [3] = { 54.7, 10.5, 16, 300 }, + [4] = { 54.7, 10.3, 16, 300 }, + [5] = { 54.6, 10.1, 16, 300 }, + [6] = { 61.3, 23.9, 17, 300 }, + [7] = { 48.7, 9.3, 17, 300 }, + [8] = { 58.8, 5.8, 17, 0 }, + [9] = { 98.4, 79.7, 25, 300 }, + [10] = { 93.7, 78.9, 25, 300 }, + [11] = { 93.7, 78.5, 25, 300 }, + [12] = { 95.2, 76.1, 25, 300 }, + [13] = { 50.8, 25.3, 45, 300 }, + [14] = { 51.9, 24.8, 45, 300 }, + [15] = { 51.4, 24.7, 45, 300 }, + [16] = { 40.8, 34.3, 46, 300 }, + [17] = { 39.6, 34.1, 46, 300 }, + [18] = { 39.6, 34, 46, 300 }, + [19] = { 40, 33.5, 46, 300 }, + [20] = { 30.2, 85.5, 47, 300 }, + [21] = { 30.1, 85.5, 47, 300 }, + [22] = { 29.6, 85.5, 47, 300 }, + [23] = { 89.1, 58.6, 331, 300 }, + [24] = { 89, 58.6, 331, 300 }, + [25] = { 43.6, 17, 357, 25 }, + [26] = { 53, 52.6, 409, 300 }, + [27] = { 75.2, 51.6, 1497, 300 }, + [28] = { 46.2, 63.8, 5561, 300 }, + [29] = { 46.3, 63.8, 5561, 300 }, + [30] = { 36.9, 19.3, 5561, 300 }, + }, + }, + [2003826] = { + ["coords"] = { + [1] = { 25.5, 66.4, 16, 300 }, + [2] = { 77, 81.4, 47, 300 }, + [3] = { 25.1, 13.1, 406, 300 }, + [4] = { 54.1, 84.7, 408, 300 }, + [5] = { 54.7, 19, 5561, 300 }, + }, + }, + [2003827] = { + ["coords"] = { + [1] = { 25.5, 65.9, 16, 300 }, + [2] = { 61.4, 24, 17, 300 }, + [3] = { 54.2, 19, 33, 300 }, + [4] = { 77.2, 81.5, 47, 300 }, + [5] = { 72.7, 58.6, 331, 300 }, + [6] = { 91.5, 54.1, 331, 300 }, + [7] = { 44.5, 49.8, 406, 300 }, + [8] = { 52.8, 52.3, 409, 300 }, + [9] = { 54.6, 19.2, 5561, 300 }, + }, + }, + [2003828] = { + ["coords"] = { + [1] = { 25.3, 66.3, 16, 300 }, + [2] = { 73, 56.9, 331, 300 }, + [3] = { 44.5, 50, 406, 300 }, + }, + }, + [2003829] = { + ["coords"] = { + [1] = { 44.7, 56.8, 8, 300 }, + [2] = { 50.3, 49.2, 8, 300 }, + [3] = { 33.6, 49, 10, 300 }, + [4] = { 37.5, 71.6, 14, 300 }, + [5] = { 42.5, 68.9, 14, 300 }, + [6] = { 55.6, 34.2, 14, 300 }, + [7] = { 41.3, 18, 14, 300 }, + [8] = { 45.3, 14.8, 14, 300 }, + [9] = { 45.1, 14.7, 14, 300 }, + [10] = { 45.2, 14.5, 14, 300 }, + [11] = { 41.9, 74.1, 15, 300 }, + [12] = { 42, 74, 15, 300 }, + [13] = { 42.3, 72.8, 15, 300 }, + [14] = { 25.6, 66.2, 16, 300 }, + [15] = { 42.7, 93.1, 17, 300 }, + [16] = { 42.6, 93.1, 17, 300 }, + [17] = { 64.8, 34.4, 17, 300 }, + [18] = { 61.5, 23.6, 17, 300 }, + [19] = { 62, 19.7, 17, 300 }, + [20] = { 48.7, 9.3, 17, 300 }, + [21] = { 47.9, 8.7, 17, 300 }, + [22] = { 54.1, 1, 17, 300 }, + [23] = { 43.3, 80.3, 33, 300 }, + [24] = { 37.5, 66.7, 33, 300 }, + [25] = { 32.6, 28.2, 33, 300 }, + [26] = { 74.3, 32, 45, 300 }, + [27] = { 74.2, 32, 45, 300 }, + [28] = { 51.9, 24.8, 45, 300 }, + [29] = { 51.4, 24.8, 45, 300 }, + [30] = { 90.1, 22.7, 46, 300 }, + [31] = { 30.2, 85.5, 47, 300 }, + [32] = { 29.6, 85.5, 47, 300 }, + [33] = { 76.7, 81.9, 47, 300 }, + [34] = { 77.8, 81.9, 47, 300 }, + [35] = { 76.7, 81.8, 47, 300 }, + [36] = { 76.7, 81.7, 47, 300 }, + [37] = { 22.1, 69.6, 85, 300 }, + [38] = { 21.9, 67.9, 85, 300 }, + [39] = { 67.8, 83.1, 130, 300 }, + [40] = { 14.5, 49.8, 267, 300 }, + [41] = { 79, 81.3, 331, 300 }, + [42] = { 74, 60.8, 331, 300 }, + [43] = { 88.9, 59.7, 331, 300 }, + [44] = { 72.5, 57.6, 331, 300 }, + [45] = { 72.2, 57.4, 331, 300 }, + [46] = { 73.2, 56.7, 331, 300 }, + [47] = { 43.6, 17.1, 357, 25 }, + [48] = { 43.6, 16.2, 357, 25 }, + [49] = { 83.1, 55.4, 400, 25 }, + [50] = { 82.5, 53.8, 400, 25 }, + [51] = { 82.9, 53.7, 400, 25 }, + [52] = { 82.7, 53.5, 400, 25 }, + [53] = { 28.9, 24.3, 400, 300 }, + [54] = { 28.6, 24.2, 400, 300 }, + [55] = { 23.8, 67.9, 405, 300 }, + [56] = { 55.1, 56.2, 405, 300 }, + [57] = { 37, 51.5, 406, 300 }, + [58] = { 24.4, 13.7, 406, 300 }, + [59] = { 25.9, 11.1, 406, 300 }, + [60] = { 25.8, 11.1, 406, 300 }, + [61] = { 25.7, 11, 406, 300 }, + [62] = { 25.6, 11, 406, 300 }, + [63] = { 72.6, 54.2, 1497, 300 }, + [64] = { 72.7, 54, 1497, 300 }, + [65] = { 72.2, 53.7, 1497, 300 }, + [66] = { 72.4, 53.4, 1497, 300 }, + [67] = { 72.3, 53.4, 1497, 300 }, + [68] = { 73.4, 52.1, 1497, 300 }, + [69] = { 75.2, 51.3, 1497, 300 }, + [70] = { 75.5, 50.5, 1497, 300 }, + [71] = { 75.5, 50.4, 1497, 300 }, + [72] = { 74.2, 49.9, 1497, 300 }, + [73] = { 68.2, 26.8, 1637, 25 }, + [74] = { 68, 26.2, 1637, 25 }, + [75] = { 68.4, 25.8, 1637, 25 }, + [76] = { 68.1, 25.7, 1637, 25 }, + [77] = { 5.6, 88.7, 2100, 300 }, + [78] = { 5.2, 88.4, 2100, 300 }, + [79] = { 72.3, 12.4, 5179, 300 }, + }, + }, + [2003830] = { + ["coords"] = { + [1] = { 45.3, 14.8, 14, 300 }, + [2] = { 45.3, 14.7, 14, 300 }, + [3] = { 29.2, 62.2, 16, 300 }, + [4] = { 61.9, 19.8, 17, 300 }, + [5] = { 51.2, 25.1, 45, 300 }, + [6] = { 51.2, 25, 45, 300 }, + [7] = { 29.5, 85.8, 47, 300 }, + [8] = { 29.5, 85.7, 47, 300 }, + [9] = { 89, 59.4, 331, 300 }, + [10] = { 53.3, 49.2, 409, 300 }, + [11] = { 52.9, 49.2, 409, 300 }, + [12] = { 66.7, 86.1, 618, 300 }, + }, + }, + [2003831] = { + ["coords"] = { + [1] = { 50, 46.1, 8, 300 }, + [2] = { 55.7, 73.2, 14, 300 }, + [3] = { 37.6, 71.3, 14, 300 }, + [4] = { 43.2, 68.4, 14, 300 }, + [5] = { 53, 64, 14, 300 }, + [6] = { 41.7, 74.2, 15, 25 }, + [7] = { 25.6, 66.4, 16, 300 }, + [8] = { 64.9, 34.3, 17, 300 }, + [9] = { 61, 24.3, 17, 300 }, + [10] = { 48.7, 9.3, 17, 300 }, + [11] = { 58.8, 5.8, 17, 0 }, + [12] = { 37.5, 66.7, 33, 300 }, + [13] = { 51.5, 25.2, 45, 300 }, + [14] = { 48.4, 22.8, 45, 300 }, + [15] = { 29.8, 85.9, 47, 300 }, + [16] = { 26.9, 83.6, 47, 300 }, + [17] = { 77.1, 81.9, 47, 300 }, + [18] = { 22, 67.9, 85, 300 }, + [19] = { 72.5, 57.6, 331, 300 }, + [20] = { 82.7, 53.8, 400, 25 }, + [21] = { 50.5, 63.2, 406, 300 }, + [22] = { 71.2, 55.4, 1497, 300 }, + [23] = { 21.5, 37.3, 1519, 300 }, + [24] = { 68.3, 26.3, 1637, 25 }, + [25] = { 28, 97.4, 5581, 300 }, + }, + }, + [2003832] = { + ["coords"] = { + [1] = { 77.9, 81.8, 47, 300 }, + [2] = { 31.2, 63, 141, 300 }, + [3] = { 67.2, 77.2, 1657, 300 }, + [4] = { 62.9, 84.4, 5121, 300 }, + }, + }, + [2003833] = { + ["coords"] = { + [1] = { 53.5, 64.6, 14, 300 }, + [2] = { 25.6, 66.4, 16, 300 }, + [3] = { 60, 77.2, 38, 300 }, + [4] = { 77.8, 81.9, 47, 300 }, + [5] = { 42, 75, 331, 300 }, + [6] = { 88.8, 59.4, 331, 300 }, + [7] = { 96.3, 26.2, 331, 300 }, + [8] = { 55.1, 56.4, 405, 300 }, + [9] = { 77.6, 41.1, 406, 300 }, + [10] = { 54.1, 84.4, 408, 300 }, + [11] = { 53.5, 49.5, 409, 300 }, + [12] = { 60.7, 44.6, 409, 300 }, + [13] = { 61.2, 44.3, 409, 300 }, + [14] = { 61, 43.9, 409, 300 }, + [15] = { 61.3, 43.8, 409, 300 }, + [16] = { 61.3, 43.7, 409, 300 }, + [17] = { 61.1, 43.6, 409, 300 }, + [18] = { 62.8, 84.4, 5121, 300 }, + [19] = { 55.3, 36.3, 5130, 300 }, + [20] = { 30.9, 57.1, 5561, 300 }, + [21] = { 29.3, 83.8, 5602, 300 }, + }, + }, + [2003834] = { + ["coords"] = { + [1] = { 42.1, 79.5, 33, 300 }, + [2] = { 77.1, 65.9, 490, 300 }, + }, + }, + [2003835] = { + ["coords"] = { + [1] = { 54.3, 1.5, 17, 300 }, + [2] = { 54.4, 1.5, 17, 300 }, + [3] = { 79.5, 82.2, 331, 300 }, + [4] = { 54.1, 37.8, 5130, 300 }, + [5] = { 55.7, 35.9, 5130, 300 }, + [6] = { 55.9, 33.2, 5130, 300 }, + [7] = { 54, 32.9, 5130, 300 }, + [8] = { 54.5, 31.4, 5130, 300 }, + }, + }, + [2003836] = { + ["coords"] = {}, + }, + [2003837] = { + ["coords"] = { + [1] = { 54.9, 19.3, 5561, 300 }, + }, + }, + [2003838] = { + ["coords"] = {}, + }, + [2003839] = { + ["coords"] = { + [1] = { 89.9, 22.7, 46, 300 }, + [2] = { 89.9, 22.4, 46, 300 }, + }, + }, + [2003840] = { + ["coords"] = { + [1] = { 37, 33.9, 17, 300 }, + [2] = { 61.7, 11.8, 215, 300 }, + }, + }, + [2003841] = { + ["coords"] = { + [1] = { 48.2, 51.7, 8, 300 }, + [2] = { 48.2, 51.3, 8, 300 }, + }, + }, + [2003842] = { + ["coords"] = { + [1] = { 64.3, 12.9, 33, 300 }, + }, + }, + [2003843] = { + ["coords"] = { + [1] = { 51.4, 71.5, 1637, 300 }, + }, + }, + [2003844] = { + ["coords"] = { + [1] = { 42, 73.2, 15, 25 }, + [2] = { 30.8, 36.6, 440, 300 }, + [3] = { 77.8, 64.6, 490, 300 }, + }, + }, + [2003845] = { + ["coords"] = {}, + }, + [2003846] = { + ["coords"] = {}, + }, + [2003847] = { + ["coords"] = {}, + }, + [2003848] = { + ["coords"] = {}, + }, + [2003849] = { + ["coords"] = {}, + }, + [2003850] = { + ["coords"] = {}, + }, + [2003851] = { + ["coords"] = {}, + }, + [2003852] = { + ["coords"] = {}, + }, + [2003853] = { + ["coords"] = {}, + }, + [2003854] = { + ["coords"] = { + [1] = { 32.9, 47.8, 10, 300 }, + [2] = { 37.7, 71.4, 14, 300 }, + [3] = { 29.8, 70.7, 16, 300 }, + [4] = { 64.9, 34.4, 17, 300 }, + [5] = { 54.1, 0.6, 17, 300 }, + [6] = { 43.1, 99, 28, 300 }, + [7] = { 79.3, 52, 36, 300 }, + [8] = { 20, 66.5, 46, 300 }, + [9] = { 79, 80.7, 331, 300 }, + [10] = { 96, 92.8, 5581, 300 }, + }, + }, + [2003855] = { + ["coords"] = {}, + }, + [2003856] = { + ["coords"] = {}, + }, + [2003857] = { + ["coords"] = { + [1] = { 48.1, 51.3, 8, 300 }, + [2] = { 50.7, 45.6, 8, 300 }, + [3] = { 76.8, 81.7, 47, 300 }, + [4] = { 72.5, 57.5, 331, 300 }, + }, + }, + [2003858] = { + ["coords"] = { + [1] = { 50.1, 45.6, 8, 300 }, + [2] = { 29.4, 44.7, 28, 300 }, + [3] = { 51.7, 24.8, 45, 300 }, + [4] = { 29.9, 85.5, 47, 300 }, + [5] = { 85.9, 58.1, 85, 300 }, + [6] = { 73.1, 57.6, 331, 300 }, + }, + }, + [2003859] = { + ["coords"] = { + [1] = { 48, 51.8, 8, 300 }, + [2] = { 50.5, 46.9, 8, 300 }, + [3] = { 24.9, 65.3, 16, 300 }, + [4] = { 29.6, 44.6, 28, 300 }, + [5] = { 86.1, 58.1, 85, 300 }, + [6] = { 53.2, 49.2, 409, 300 }, + }, + }, + [2003860] = { + ["coords"] = { + [1] = { 48.2, 51.5, 8, 300 }, + [2] = { 29.6, 44.6, 28, 300 }, + [3] = { 50.8, 25.1, 45, 300 }, + [4] = { 86, 58.1, 85, 300 }, + [5] = { 73, 57.9, 331, 300 }, + }, + }, + [2003861] = { + ["coords"] = { + [1] = { 50, 45.6, 8, 300 }, + [2] = { 33.3, 48.1, 10, 300 }, + [3] = { 44.9, 15.3, 14, 300 }, + [4] = { 42.3, 73, 15, 300 }, + [5] = { 25.5, 66.5, 16, 300 }, + [6] = { 25.3, 66.4, 16, 300 }, + [7] = { 61.1, 24.8, 17, 300 }, + [8] = { 61.1, 24.7, 17, 300 }, + [9] = { 61, 24.2, 17, 300 }, + [10] = { 48.8, 9, 17, 300 }, + [11] = { 72.3, 57.2, 331, 300 }, + [12] = { 72.2, 56.9, 331, 300 }, + [13] = { 72.2, 56.8, 331, 300 }, + [14] = { 73.2, 55.9, 331, 300 }, + [15] = { 73.2, 55.6, 331, 300 }, + [16] = { 26, 11.2, 406, 300 }, + [17] = { 26, 11.1, 406, 300 }, + }, + }, + [2003862] = { + ["coords"] = { + [1] = { 51.1, 48, 8, 300 }, + [2] = { 51.1, 46.8, 8, 300 }, + [3] = { 33.4, 48, 10, 300 }, + [4] = { 25, 65.4, 16, 300 }, + [5] = { 43.4, 80.5, 33, 300 }, + [6] = { 77.2, 82, 47, 300 }, + [7] = { 72.2, 57.1, 331, 300 }, + [8] = { 73.3, 55.7, 331, 300 }, + [9] = { 26.1, 11, 406, 300 }, + [10] = { 58, 22.1, 440, 300 }, + [11] = { 22, 36.2, 1519, 300 }, + [12] = { 28.3, 96.8, 5581, 300 }, + }, + }, + [2003863] = { + ["coords"] = { + [1] = { 50.8, 45.9, 8, 300 }, + [2] = { 50.9, 45.7, 8, 300 }, + [3] = { 33.6, 48.4, 10, 300 }, + [4] = { 25.6, 66.5, 16, 300 }, + [5] = { 51.5, 25.9, 45, 300 }, + [6] = { 72.4, 57.7, 331, 300 }, + [7] = { 53.3, 49.2, 409, 300 }, + [8] = { 58, 22.4, 440, 300 }, + [9] = { 58, 22.1, 440, 300 }, + [10] = { 21.8, 36.4, 1519, 300 }, + [11] = { 28.2, 96.9, 5581, 300 }, + }, + }, + [2003864] = { + ["coords"] = { + [1] = { 57.1, 99.1, 14, 300 }, + [2] = { 25, 65.2, 16, 300 }, + [3] = { 75.1, 48.8, 17, 300 }, + [4] = { 48.7, 9.3, 17, 300 }, + [5] = { 43.3, 17.3, 357, 25 }, + [6] = { 37.1, 51.3, 406, 300 }, + }, + }, + [2003865] = { + ["coords"] = { + [1] = { 55.9, 54.9, 876, 300 }, + [2] = { 50.1, 71, 1637, 300 }, + }, + }, + [2003866] = { + ["coords"] = { + [1] = { 31.5, 30, 33, 300 }, + [2] = { 78.5, 80.3, 47, 300 }, + }, + }, + [2003867] = { + ["coords"] = {}, + }, + [2003868] = { + ["coords"] = { + [1] = { 43.6, 67.4, 14, 300 }, + }, + }, + [2003869] = { + ["coords"] = { + [1] = { 46, 52.1, 8, 300 }, + [2] = { 50.4, 47.2, 8, 300 }, + [3] = { 49.7, 45.9, 8, 300 }, + [4] = { 45.4, 14.8, 14, 300 }, + [5] = { 54.7, 10.6, 16, 300 }, + [6] = { 54.7, 10.4, 16, 300 }, + [7] = { 54.5, 10.2, 16, 300 }, + [8] = { 93.9, 78.4, 25, 300 }, + [9] = { 63.2, 10.5, 33, 300 }, + [10] = { 39.7, 34, 46, 300 }, + [11] = { 90.1, 22.6, 46, 300 }, + [12] = { 21.8, 67.9, 85, 300 }, + [13] = { 52, 51.6, 409, 300 }, + }, + }, + [2003870] = { + ["coords"] = { + [1] = { 46, 52.2, 8, 300 }, + [2] = { 50.6, 45.9, 8, 300 }, + [3] = { 52.9, 64, 14, 300 }, + [4] = { 58.6, 26.4, 14, 300 }, + [5] = { 45.4, 14.8, 14, 300 }, + [6] = { 54.7, 10.4, 16, 300 }, + [7] = { 54.7, 10.2, 16, 300 }, + [8] = { 54.5, 10.2, 16, 300 }, + [9] = { 54.6, 10.2, 16, 300 }, + [10] = { 54.3, 1.5, 17, 300 }, + [11] = { 54.1, 1.3, 17, 300 }, + [12] = { 97.3, 82.3, 25, 300 }, + [13] = { 93.8, 78.7, 25, 300 }, + [14] = { 96, 75.7, 25, 300 }, + [15] = { 63.2, 10.5, 33, 300 }, + [16] = { 51.5, 25.2, 45, 300 }, + [17] = { 51.2, 25.1, 45, 300 }, + [18] = { 40.5, 34.9, 46, 300 }, + [19] = { 39.7, 34.1, 46, 300 }, + [20] = { 40.2, 33.4, 46, 300 }, + [21] = { 90.1, 22.5, 46, 300 }, + [22] = { 29.8, 85.9, 47, 300 }, + [23] = { 29.5, 85.8, 47, 300 }, + [24] = { 76.7, 81.8, 47, 300 }, + [25] = { 79.5, 82.2, 331, 300 }, + [26] = { 79, 81.8, 331, 300 }, + [27] = { 88.9, 59.4, 331, 300 }, + [28] = { 23.9, 68, 405, 300 }, + [29] = { 59.5, 33.3, 618, 300 }, + [30] = { 5.8, 89.1, 2100, 300 }, + }, + }, + [2003871] = { + ["coords"] = { + [1] = { 46, 52.2, 8, 300 }, + [2] = { 45.9, 52, 8, 300 }, + [3] = { 53, 63.9, 14, 300 }, + [4] = { 55.6, 34.1, 14, 300 }, + [5] = { 45.4, 14.8, 14, 300 }, + [6] = { 51.2, 37.9, 16, 300 }, + [7] = { 54.3, 1.5, 17, 300 }, + [8] = { 54.1, 1.2, 17, 300 }, + [9] = { 95.7, 76, 25, 300 }, + [10] = { 51.2, 25.2, 45, 300 }, + [11] = { 51.5, 25.2, 45, 300 }, + [12] = { 40.1, 33.5, 46, 300 }, + [13] = { 90.1, 22.4, 46, 300 }, + [14] = { 29.5, 85.9, 47, 300 }, + [15] = { 29.8, 85.9, 47, 300 }, + [16] = { 79.5, 82.2, 331, 300 }, + [17] = { 79, 81.8, 331, 300 }, + [18] = { 88.9, 59.4, 331, 300 }, + [19] = { 54.2, 84.9, 408, 300 }, + [20] = { 52.8, 49.2, 409, 300 }, + [21] = { 59.5, 33.3, 618, 300 }, + [22] = { 71.2, 46.6, 1497, 300 }, + }, + }, + [2003872] = { + ["coords"] = { + [1] = { 45.9, 52, 8, 300 }, + [2] = { 52.9, 64.2, 14, 300 }, + [3] = { 58.7, 26.4, 14, 300 }, + [4] = { 58.7, 26.3, 14, 300 }, + [5] = { 45.3, 14.9, 14, 300 }, + [6] = { 44.6, 14.7, 14, 300 }, + [7] = { 51.1, 37.7, 16, 300 }, + [8] = { 54.6, 10.2, 16, 300 }, + [9] = { 43.7, 91.7, 17, 300 }, + [10] = { 54.4, 1.5, 17, 300 }, + [11] = { 63.5, 9.9, 33, 300 }, + [12] = { 51.2, 25.1, 45, 300 }, + [13] = { 48.4, 22.8, 45, 300 }, + [14] = { 90.3, 22.9, 46, 300 }, + [15] = { 90.1, 22.4, 46, 300 }, + [16] = { 29.5, 85.8, 47, 300 }, + [17] = { 26.9, 83.6, 47, 300 }, + [18] = { 79.5, 82.2, 331, 300 }, + [19] = { 89.1, 58.6, 331, 300 }, + [20] = { 31.3, 21, 400, 300 }, + [21] = { 44.7, 50.3, 406, 300 }, + [22] = { 52, 51.6, 409, 300 }, + [23] = { 52.8, 49.3, 409, 300 }, + [24] = { 60.7, 44.4, 409, 300 }, + [25] = { 59.5, 33.3, 618, 300 }, + [26] = { 61, 64.3, 1519, 300 }, + }, + }, + [2003873] = { + ["coords"] = { + [1] = { 45, 56.1, 8, 300 }, + [2] = { 46, 52.1, 8, 300 }, + [3] = { 45.9, 51.9, 8, 300 }, + [4] = { 49.1, 48.1, 8, 300 }, + [5] = { 50.4, 47.2, 8, 300 }, + [6] = { 49.7, 45.8, 8, 300 }, + [7] = { 52.8, 64.5, 14, 300 }, + [8] = { 52.9, 64.2, 14, 300 }, + [9] = { 55.7, 34.1, 14, 300 }, + [10] = { 58.6, 26.4, 14, 300 }, + [11] = { 58.7, 26.3, 14, 300 }, + [12] = { 57.5, 25, 14, 300 }, + [13] = { 45.3, 14.9, 14, 300 }, + [14] = { 45.4, 14.8, 14, 300 }, + [15] = { 43.7, 91.7, 17, 300 }, + [16] = { 54.4, 1.4, 17, 300 }, + [17] = { 95.8, 82.8, 25, 300 }, + [18] = { 95.6, 75.9, 25, 300 }, + [19] = { 63.5, 10, 33, 300 }, + [20] = { 51.5, 25.2, 45, 300 }, + [21] = { 51.2, 24.9, 45, 300 }, + [22] = { 40.2, 35.1, 46, 300 }, + [23] = { 40.1, 33.4, 46, 300 }, + [24] = { 90.1, 22.7, 46, 300 }, + [25] = { 90.1, 22, 46, 300 }, + [26] = { 29.8, 85.9, 47, 300 }, + [27] = { 29.5, 85.6, 47, 300 }, + [28] = { 79.5, 82.1, 331, 300 }, + [29] = { 62.4, 60.4, 331, 300 }, + [30] = { 31.3, 21, 400, 300 }, + [31] = { 52, 51.7, 409, 300 }, + [32] = { 52.8, 49.2, 409, 300 }, + [33] = { 53.3, 49.2, 409, 300 }, + [34] = { 60.4, 39.8, 409, 300 }, + [35] = { 59.5, 33.3, 618, 300 }, + }, + }, + [2003874] = { + ["coords"] = { + [1] = { 45.9, 51.9, 8, 300 }, + [2] = { 52.8, 64.5, 14, 300 }, + [3] = { 55.7, 34.1, 14, 300 }, + [4] = { 44.6, 14.7, 14, 300 }, + [5] = { 63.8, 10.3, 33, 300 }, + [6] = { 51.2, 25.2, 45, 300 }, + [7] = { 90.3, 22.9, 46, 300 }, + [8] = { 90.1, 22.3, 46, 300 }, + [9] = { 29.5, 85.9, 47, 300 }, + [10] = { 44.7, 50.3, 406, 300 }, + [11] = { 53, 52.6, 409, 300 }, + [12] = { 53.1, 49.8, 409, 300 }, + [13] = { 59.5, 33.3, 618, 300 }, + }, + }, + [2003875] = { + ["coords"] = { + [1] = { 49.1, 60.5, 11, 300 }, + [2] = { 53.4, 64.6, 14, 300 }, + [3] = { 55.5, 33.9, 14, 300 }, + [4] = { 45.1, 15.2, 14, 300 }, + [5] = { 45.4, 14.8, 14, 300 }, + [6] = { 51.1, 37.7, 16, 300 }, + [7] = { 54.5, 10.1, 16, 300 }, + [8] = { 54.4, 1.5, 17, 300 }, + [9] = { 93.9, 76.6, 25, 300 }, + [10] = { 94.1, 76.4, 25, 300 }, + [11] = { 44.3, 98, 28, 300 }, + [12] = { 81.1, 50.6, 36, 300 }, + [13] = { 51.2, 25.3, 45, 300 }, + [14] = { 39.7, 33.6, 46, 300 }, + [15] = { 39.7, 33.5, 46, 300 }, + [16] = { 90.3, 23, 46, 300 }, + [17] = { 29.5, 86, 47, 300 }, + [18] = { 67.6, 82.9, 130, 300 }, + [19] = { 14.3, 49.4, 267, 300 }, + [20] = { 79.5, 82.2, 331, 300 }, + [21] = { 55.1, 56.3, 405, 300 }, + [22] = { 37.1, 51.4, 406, 300 }, + [23] = { 54.2, 84.8, 408, 300 }, + [24] = { 53, 49.4, 409, 300 }, + [25] = { 72.1, 12, 5179, 300 }, + [26] = { 54.8, 18.9, 5561, 300 }, + [27] = { 6.4, 25.4, 5602, 300 }, + }, + }, + [2003876] = { + ["coords"] = { + [1] = { 55.5, 34.2, 14, 300 }, + [2] = { 44.8, 15.2, 14, 300 }, + [3] = { 45.3, 14.9, 14, 300 }, + [4] = { 29.8, 71.1, 16, 300 }, + [5] = { 54.6, 10.2, 16, 300 }, + [6] = { 54.3, 1.4, 17, 300 }, + [7] = { 94.1, 76.8, 25, 300 }, + [8] = { 44, 98.3, 28, 300 }, + [9] = { 80.7, 50.9, 36, 300 }, + [10] = { 51.2, 25.3, 45, 300 }, + [11] = { 39.7, 33.6, 46, 300 }, + [12] = { 90.3, 22.9, 46, 300 }, + [13] = { 42, 53.3, 267, 300 }, + [14] = { 79.5, 82.2, 331, 300 }, + [15] = { 62.4, 60.4, 331, 300 }, + [16] = { 37.1, 51.6, 406, 300 }, + [17] = { 53, 49.3, 409, 300 }, + [18] = { 58.2, 22.6, 440, 300 }, + [19] = { 58, 22.4, 440, 300 }, + [20] = { 21.2, 36.9, 1519, 300 }, + [21] = { 52.8, 70.1, 1637, 300 }, + [22] = { 96.3, 15.5, 5179, 300 }, + [23] = { 54.8, 18.9, 5561, 300 }, + [24] = { 27.8, 97.2, 5581, 300 }, + }, + }, + [2003877] = { + ["coords"] = {}, + }, + [2003878] = { + ["coords"] = {}, + }, + [2003879] = { + ["coords"] = { + [1] = { 65.5, 25.6, 33, 300 }, + [2] = { 65.8, 24.7, 33, 300 }, + [3] = { 65.9, 23.9, 33, 300 }, + [4] = { 90.7, 58.2, 331, 300 }, + [5] = { 90.7, 58, 331, 300 }, + }, + }, + [2003880] = { + ["coords"] = {}, + }, + [2003881] = { + ["coords"] = {}, + }, + [2003882] = { + ["coords"] = { + [1] = { 51.1, 48.2, 8, 300 }, + [2] = { 44.7, 14.3, 14, 300 }, + [3] = { 16.9, 65.9, 46, 300 }, + [4] = { 42.1, 10.4, 130, 300 }, + [5] = { 25.1, 12.9, 406, 300 }, + [6] = { 52.8, 49.6, 409, 300 }, + [7] = { 93.2, 92.2, 5581, 300 }, + }, + }, + [2003883] = { + ["coords"] = { + [1] = { 51.5, 24.7, 45, 300 }, + [2] = { 34.9, 10.3, 45, 300 }, + [3] = { 29.7, 85.4, 47, 300 }, + [4] = { 14.3, 72, 47, 300 }, + [5] = { 4.4, 61.8, 85, 300 }, + }, + }, + [2003884] = { + ["coords"] = { + [1] = { 44.7, 56.9, 8, 300 }, + [2] = { 45, 56.1, 8, 300 }, + [3] = { 45, 55.6, 8, 300 }, + [4] = { 45.1, 55.5, 8, 300 }, + [5] = { 50.3, 49.2, 8, 300 }, + [6] = { 50.3, 49.1, 8, 300 }, + [7] = { 50.9, 43.3, 8, 300 }, + [8] = { 43.4, 68.4, 14, 300 }, + [9] = { 43.2, 68.4, 14, 300 }, + [10] = { 43.3, 68.3, 14, 300 }, + [11] = { 44.2, 67, 14, 300 }, + [12] = { 44.9, 15.3, 14, 300 }, + [13] = { 45.1, 15.2, 14, 300 }, + [14] = { 44.9, 14.9, 14, 300 }, + [15] = { 44.9, 14.8, 14, 300 }, + [16] = { 45.1, 14.7, 14, 300 }, + [17] = { 45, 14.6, 14, 300 }, + [18] = { 45.2, 14.5, 14, 300 }, + [19] = { 45.2, 14.4, 14, 300 }, + [20] = { 61.5, 23.7, 17, 300 }, + [21] = { 61.5, 23.6, 17, 300 }, + [22] = { 48.7, 9.3, 17, 300 }, + [23] = { 48.8, 9, 17, 300 }, + [24] = { 43.3, 80.5, 33, 300 }, + [25] = { 51.6, 24.6, 45, 300 }, + [26] = { 90.1, 22.7, 46, 300 }, + [27] = { 90.1, 22.5, 46, 300 }, + [28] = { 90.1, 22.4, 46, 300 }, + [29] = { 29.9, 85.4, 47, 300 }, + [30] = { 77.8, 81.9, 47, 300 }, + [31] = { 76.9, 81.8, 47, 300 }, + [32] = { 77.9, 81.8, 47, 300 }, + [33] = { 76.8, 81.7, 47, 300 }, + [34] = { 42, 75, 331, 300 }, + [35] = { 74, 60.8, 331, 300 }, + [36] = { 74.1, 60.7, 331, 300 }, + [37] = { 73.9, 60.5, 331, 300 }, + [38] = { 73.9, 60.4, 331, 300 }, + [39] = { 72.5, 58.3, 331, 300 }, + [40] = { 47.7, 53.5, 331, 300 }, + [41] = { 77.6, 41.2, 406, 300 }, + [42] = { 25.9, 11.1, 406, 300 }, + [43] = { 25.7, 11, 406, 300 }, + [44] = { 67.6, 26.9, 440, 300 }, + [45] = { 73.1, 54, 1497, 300 }, + [46] = { 72.2, 53.5, 1497, 300 }, + [47] = { 72.3, 53.4, 1497, 300 }, + [48] = { 73.4, 52.2, 1497, 300 }, + [49] = { 73.3, 52, 1497, 300 }, + [50] = { 75.3, 51.3, 1497, 300 }, + [51] = { 75.6, 50.4, 1497, 300 }, + [52] = { 75.5, 50.3, 1497, 300 }, + [53] = { 75.9, 49, 1497, 300 }, + [54] = { 51.5, 70.6, 1637, 300 }, + [55] = { 68.2, 26.8, 1637, 25 }, + [56] = { 68.2, 26.7, 1637, 25 }, + [57] = { 68, 26.2, 1637, 25 }, + [58] = { 68, 26.1, 1637, 25 }, + [59] = { 54.7, 19.3, 5561, 300 }, + }, + }, + [2003885] = { + ["coords"] = { + [1] = { 61.3, 24.7, 17, 300 }, + [2] = { 61.2, 24.7, 17, 300 }, + [3] = { 61.5, 24.6, 17, 300 }, + [4] = { 61.6, 24.6, 17, 300 }, + [5] = { 61, 24.6, 17, 300 }, + [6] = { 61.6, 24.5, 17, 300 }, + [7] = { 61, 24.5, 17, 300 }, + [8] = { 61.7, 24.5, 17, 300 }, + [9] = { 61.7, 24.4, 17, 300 }, + [10] = { 61, 24.1, 17, 300 }, + [11] = { 61.9, 23.6, 17, 300 }, + [12] = { 61.9, 23.5, 17, 300 }, + [13] = { 61.9, 23.4, 17, 300 }, + [14] = { 61.8, 23.4, 17, 300 }, + [15] = { 61.8, 23.3, 17, 300 }, + [16] = { 61.6, 23.3, 17, 300 }, + [17] = { 61.7, 23.2, 17, 300 }, + }, + }, + [2003886] = { + ["coords"] = { + [1] = { 61.2, 24.7, 17, 300 }, + [2] = { 61.5, 24.6, 17, 300 }, + [3] = { 61, 24.5, 17, 300 }, + [4] = { 61, 24.1, 17, 300 }, + [5] = { 61.9, 23.7, 17, 300 }, + [6] = { 83.7, 56.4, 400, 25 }, + [7] = { 84, 56.4, 400, 25 }, + [8] = { 83.5, 56.3, 400, 25 }, + [9] = { 83.7, 56.1, 400, 25 }, + [10] = { 84, 56, 400, 25 }, + }, + }, + [2003887] = { + ["coords"] = {}, + }, + [2003888] = { + ["coords"] = { + [1] = { 41.9, 74.2, 15, 25 }, + [2] = { 43.4, 80.1, 33, 300 }, + [3] = { 74.2, 32, 45, 300 }, + [4] = { 23.8, 67.9, 405, 300 }, + [5] = { 31.1, 38.1, 440, 300 }, + [6] = { 78.2, 67.3, 490, 300 }, + [7] = { 72.8, 54, 1497, 300 }, + [8] = { 5.6, 88.8, 2100, 300 }, + }, + }, + [2003889] = { + ["coords"] = {}, + }, + [2003890] = { + ["coords"] = {}, + }, + [2003891] = { + ["coords"] = {}, + }, + [2003892] = { + ["coords"] = {}, + }, + [2003893] = { + ["coords"] = { + [1] = { 44.6, 14.7, 14, 300 }, + [2] = { 37.7, 32.9, 17, 300 }, + [3] = { 52, 30, 17, 300 }, + [4] = { 34.1, 10.1, 17, 300 }, + [5] = { 48.8, 9, 17, 300 }, + [6] = { 47.9, 8.8, 17, 300 }, + [7] = { 43.3, 80.6, 33, 300 }, + [8] = { 63.2, 9.8, 215, 300 }, + [9] = { 79.9, 80.3, 331, 300 }, + [10] = { 74, 60.8, 331, 300 }, + [11] = { 72.2, 56.9, 331, 300 }, + [12] = { 55.3, 56.7, 405, 300 }, + [13] = { 50.4, 63.2, 406, 300 }, + [14] = { 79.5, 62.6, 406, 300 }, + [15] = { 49.1, 60.8, 406, 300 }, + [16] = { 53.4, 49.4, 409, 300 }, + [17] = { 51.2, 34.4, 5121, 300 }, + }, + }, + [2003894] = { + ["coords"] = { + [1] = { 45.1, 55.6, 8, 300 }, + [2] = { 45.1, 15.1, 14, 300 }, + [3] = { 21.8, 67.8, 85, 300 }, + [4] = { 25.2, 13.1, 406, 300 }, + }, + }, + [2003895] = { + ["coords"] = { + [1] = { 51.4, 25, 45, 300 }, + [2] = { 29.6, 85.7, 47, 300 }, + [3] = { 48.8, 60.8, 406, 300 }, + [4] = { 24.9, 11.8, 406, 300 }, + }, + }, + [2003896] = { + ["coords"] = { + [1] = { 52.9, 52.3, 409, 300 }, + [2] = { 49.2, 66.9, 5602, 300 }, + [3] = { 49.2, 59.3, 5602, 300 }, + }, + }, + [2003897] = { + ["coords"] = { + [1] = { 48.9, 64.5, 5602, 300 }, + }, + }, + [2003898] = { + ["coords"] = {}, + }, + [2003899] = { + ["coords"] = { + [1] = { 47.7, 66.3, 5602, 300 }, + [2] = { 48.8, 66, 5602, 300 }, + [3] = { 48.9, 64.6, 5602, 300 }, + [4] = { 48.7, 60.2, 5602, 300 }, + [5] = { 49.1, 59.9, 5602, 300 }, + }, + }, + [2003900] = { + ["coords"] = { + [1] = { 54.2, 85, 408, 300 }, + [2] = { 49.3, 66.9, 5602, 300 }, + [3] = { 47.6, 66, 5602, 300 }, + [4] = { 48, 64, 5602, 300 }, + [5] = { 49.2, 60.1, 5602, 300 }, + [6] = { 48.2, 60, 5602, 300 }, + [7] = { 49.2, 59.4, 5602, 300 }, + [8] = { 48.4, 58.1, 5602, 300 }, + }, + }, + [2003901] = { + ["coords"] = { + [1] = { 47.8, 66.2, 5602, 300 }, + [2] = { 48.9, 64.5, 5602, 300 }, + [3] = { 48.2, 60, 5602, 300 }, + }, + }, + [2003902] = { + ["coords"] = { + [1] = { 55.2, 34.8, 14, 300 }, + [2] = { 61.3, 32.1, 15, 300 }, + [3] = { 61.7, 24.2, 17, 300 }, + }, + }, + [2003903] = { + ["coords"] = {}, + }, + [2003904] = { + ["coords"] = { + [1] = { 25.6, 11.5, 406, 300 }, + [2] = { 51.7, 51.8, 409, 300 }, + [3] = { 67.8, 26.8, 440, 300 }, + }, + }, + [2003905] = { + ["coords"] = {}, + }, + [2003906] = { + ["coords"] = {}, + }, + [2003907] = { + ["coords"] = {}, + }, + [2003908] = { + ["coords"] = { + [1] = { 81.1, 61.8, 28, 300 }, + [2] = { 22.9, 85.4, 139, 300 }, + }, + }, + [2003909] = { + ["coords"] = { + [1] = { 52.9, 50, 409, 300 }, + [2] = { 59.6, 34.9, 1497, 300 }, + [3] = { 59.9, 34.4, 1497, 300 }, + }, + }, + [2003910] = { + ["coords"] = { + [1] = { 58.8, 5.8, 17, 0 }, + }, + }, + [2003911] = { + ["coords"] = { + [1] = { 55.6, 33.9, 14, 300 }, + [2] = { 25.4, 66, 16, 300 }, + }, + }, + [2003912] = { + ["coords"] = {}, + }, + [2003913] = { + ["coords"] = {}, + }, + [2003914] = { + ["coords"] = {}, + }, + [2003915] = { + ["coords"] = {}, + }, + [2003916] = { + ["coords"] = {}, + }, + [2003917] = { + ["coords"] = {}, + }, + [2003918] = { + ["coords"] = {}, + }, + [2003919] = { + ["coords"] = { + [1] = { 41.7, 72.4, 15, 25 }, + }, + }, + [2003920] = { + ["coords"] = { + [1] = { 29.2, 62.2, 16, 300 }, + }, + }, + [2003921] = { + ["coords"] = {}, + }, + [2003922] = { + ["coords"] = {}, + }, + [2003923] = { + ["coords"] = { + [1] = { 42.7, 73.4, 15, 25 }, + }, + }, + [2003924] = { + ["coords"] = {}, + }, + [2003925] = { + ["coords"] = {}, + }, + [2003926] = { + ["coords"] = {}, + }, + [2003927] = { + ["coords"] = {}, + }, + [2003928] = { + ["coords"] = {}, + }, + [2003929] = { + ["coords"] = {}, + }, + [2003930] = { + ["coords"] = {}, + }, + [2003931] = { + ["coords"] = {}, + }, + [2003932] = { + ["coords"] = {}, + }, + [2003933] = { + ["coords"] = {}, + }, + [2003934] = { + ["coords"] = {}, + }, + [2003935] = { + ["coords"] = {}, + }, + [2003936] = { + ["coords"] = {}, + }, + [2003937] = { + ["coords"] = {}, + }, + [2003938] = { + ["coords"] = {}, + }, + [2003939] = { + ["coords"] = {}, + }, + [2003940] = { + ["coords"] = {}, + }, + [2003941] = { + ["coords"] = {}, + }, + [2003942] = { + ["coords"] = {}, + }, + [2003943] = { + ["coords"] = {}, + }, + [2003944] = { + ["coords"] = {}, + }, + [2003945] = { + ["coords"] = {}, + }, + [2003946] = { + ["coords"] = {}, + }, + [2003947] = { + ["coords"] = {}, + }, + [2003948] = { + ["coords"] = {}, + }, + [2003949] = { + ["coords"] = {}, + }, + [2003950] = { + ["coords"] = {}, + }, + [2003951] = { + ["coords"] = {}, + }, + [2003952] = { + ["coords"] = {}, + }, + [2003953] = { + ["coords"] = {}, + }, + [2003954] = { + ["coords"] = {}, + }, + [2003955] = { + ["coords"] = {}, + }, + [2003956] = { + ["coords"] = {}, + }, + [2003957] = { + ["coords"] = {}, + }, + [2003958] = { + ["coords"] = {}, + }, + [2003959] = { + ["coords"] = {}, + }, + [2003960] = { + ["coords"] = {}, + }, + [2003961] = { + ["coords"] = {}, + }, + [2003962] = { + ["coords"] = {}, + }, + [2003963] = { + ["coords"] = {}, + }, + [2003964] = { + ["coords"] = {}, + }, + [2003965] = { + ["coords"] = {}, + }, + [2003966] = { + ["coords"] = { + [1] = { 51.3, 24.3, 45, 300 }, + [2] = { 29.6, 85, 47, 300 }, + [3] = { 22, 67.9, 85, 300 }, + [4] = { 25.2, 12.9, 406, 300 }, + }, + }, + [2003967] = { + ["coords"] = { + [1] = { 61.5, 23.7, 17, 300 }, + [2] = { 63.5, 10, 33, 300 }, + [3] = { 74.3, 32, 45, 300 }, + [4] = { 77.9, 81.8, 47, 300 }, + [5] = { 73.2, 56.7, 331, 300 }, + [6] = { 23.8, 67.9, 405, 300 }, + [7] = { 25.9, 11.1, 406, 300 }, + [8] = { 5.5, 88.7, 2100, 300 }, + }, + }, + [2003968] = { + ["coords"] = { + [1] = { 44.7, 56.8, 8, 300 }, + [2] = { 45, 56.1, 8, 300 }, + [3] = { 45, 55.6, 8, 300 }, + [4] = { 42.3, 68.1, 14, 300 }, + [5] = { 55.6, 34.2, 14, 300 }, + [6] = { 45.1, 15.2, 14, 300 }, + [7] = { 51.1, 37.8, 16, 300 }, + [8] = { 42.7, 93.2, 17, 300 }, + [9] = { 42.6, 93.1, 17, 300 }, + [10] = { 54.4, 1.1, 17, 300 }, + [11] = { 32.7, 28.2, 33, 300 }, + [12] = { 63.2, 10.5, 33, 300 }, + [13] = { 63.8, 10.3, 33, 300 }, + [14] = { 51.3, 25.3, 45, 300 }, + [15] = { 51.8, 24.8, 45, 300 }, + [16] = { 51.2, 24.8, 45, 300 }, + [17] = { 48.4, 22.8, 45, 300 }, + [18] = { 29.6, 86, 47, 300 }, + [19] = { 30, 85.5, 47, 300 }, + [20] = { 29.5, 85.5, 47, 300 }, + [21] = { 26.9, 83.7, 47, 300 }, + [22] = { 79.5, 81.6, 331, 300 }, + [23] = { 74, 60.9, 331, 300 }, + [24] = { 74.1, 60.7, 331, 300 }, + [25] = { 73.9, 60.4, 331, 300 }, + [26] = { 72.5, 58.4, 331, 300 }, + [27] = { 72.2, 57.4, 331, 300 }, + [28] = { 73.2, 56, 331, 300 }, + [29] = { 28.9, 24.4, 400, 300 }, + [30] = { 28.6, 24.2, 400, 300 }, + [31] = { 81, 76.7, 405, 300 }, + [32] = { 24.3, 12.8, 406, 300 }, + [33] = { 25.7, 11, 406, 300 }, + [34] = { 54.1, 84.4, 408, 300 }, + [35] = { 52.9, 52.5, 409, 300 }, + [36] = { 52.8, 49.6, 409, 300 }, + [37] = { 42, 61.3, 1637, 300 }, + [38] = { 30.9, 57.2, 5561, 300 }, + [39] = { 54.6, 19, 5561, 300 }, + }, + }, + [2003969] = { + ["coords"] = { + [1] = { 61.4, 58.3, 1497, 300 }, + [2] = { 61.8, 58, 1497, 300 }, + }, + }, + [2003970] = { + ["coords"] = { + [1] = { 51.9, 24.8, 45, 300 }, + [2] = { 30.1, 85.5, 47, 300 }, + [3] = { 53.1, 52.3, 409, 300 }, + }, + }, + [2003971] = { + ["coords"] = {}, + }, + [2003972] = { + ["coords"] = { + [1] = { 60.7, 58.2, 1497, 300 }, + }, + }, + [2003973] = { + ["coords"] = { + [1] = { 50.1, 45.4, 8, 300 }, + [2] = { 67.4, 27.3, 440, 300 }, + [3] = { 67.5, 27, 440, 300 }, + }, + }, + [2003974] = { + ["coords"] = { + [1] = { 55.4, 34.2, 14, 300 }, + [2] = { 67.5, 27.5, 440, 300 }, + [3] = { 67.8, 26.8, 440, 300 }, + }, + }, + [2003975] = { + ["coords"] = { + [1] = { 58.6, 27.2, 14, 300 }, + [2] = { 67.8, 26.4, 440, 300 }, + }, + }, + [2003976] = { + ["coords"] = { + [1] = { 45, 15.2, 14, 300 }, + [2] = { 72.2, 56.8, 331, 300 }, + }, + }, + [2003977] = { + ["coords"] = { + [1] = { 72.2, 56.8, 331, 300 }, + }, + }, + [2003978] = { + ["coords"] = { + [1] = { 58.5, 27.2, 14, 300 }, + }, + }, + [2003979] = { + ["coords"] = { + [1] = { 58.6, 27.1, 14, 300 }, + }, + }, + [2003980] = { + ["coords"] = { + [1] = { 53.1, 52.3, 409, 300 }, + [2] = { 61.4, 58.4, 1497, 300 }, + [3] = { 61.2, 58, 1497, 300 }, + }, + }, + [2003981] = { + ["coords"] = { + [1] = { 61.4, 58.3, 1497, 300 }, + [2] = { 61.1, 58.2, 1497, 300 }, + }, + }, + [2003982] = { + ["coords"] = { + [1] = { 52, 24.9, 45, 300 }, + [2] = { 30.2, 85.7, 47, 300 }, + [3] = { 61.4, 58.4, 1497, 300 }, + [4] = { 61.4, 58.2, 1497, 300 }, + [5] = { 61.2, 58.1, 1497, 300 }, + }, + }, + [2003983] = { + ["coords"] = { + [1] = { 61.4, 58.3, 1497, 300 }, + [2] = { 61.4, 58.2, 1497, 300 }, + [3] = { 61.3, 58, 1497, 300 }, + }, + }, + [2003984] = { + ["coords"] = { + [1] = { 61.2, 58.3, 1497, 300 }, + }, + }, + [2003985] = { + ["coords"] = {}, + }, + [2003986] = { + ["coords"] = {}, + }, + [2003987] = { + ["coords"] = {}, + }, + [2003988] = { + ["coords"] = {}, + }, + [2003989] = { + ["coords"] = { + [1] = { 39.4, 77.9, 5121, 300 }, + [2] = { 60, 31.2, 5602, 300 }, + }, + }, + [2003990] = { + ["coords"] = { + [1] = { 51.1, 48.4, 8, 300 }, + [2] = { 49.9, 45.8, 8, 300 }, + [3] = { 42.4, 68, 14, 300 }, + [4] = { 44.2, 67, 14, 300 }, + [5] = { 53.5, 64.5, 14, 300 }, + [6] = { 52.8, 64.5, 14, 300 }, + [7] = { 44.9, 15.2, 14, 300 }, + [8] = { 36.6, 33.1, 17, 300 }, + [9] = { 31.7, 27.9, 17, 300 }, + [10] = { 48.7, 9.3, 17, 300 }, + [11] = { 76.9, 82, 47, 300 }, + [12] = { 61, 10.3, 215, 300 }, + [13] = { 47.8, 53.4, 331, 300 }, + [14] = { 75.4, 92.6, 406, 300 }, + [15] = { 31.5, 36.5, 440, 300 }, + [16] = { 79.1, 64.3, 490, 300 }, + }, + }, + [2003991] = { + ["coords"] = { + [1] = { 51.2, 46.5, 8, 300 }, + [2] = { 43, 69.4, 14, 300 }, + [3] = { 72.2, 56.9, 331, 300 }, + }, + }, + [2003992] = { + ["coords"] = { + [1] = { 50.4, 47.4, 8, 300 }, + }, + }, + [2003993] = { + ["coords"] = { + [1] = { 48.9, 48, 8, 300 }, + [2] = { 50.8, 45.8, 8, 300 }, + [3] = { 45.3, 14.8, 14, 300 }, + [4] = { 48.8, 9, 17, 300 }, + [5] = { 89.1, 58.5, 331, 300 }, + }, + }, + [2003994] = { + ["coords"] = { + [1] = { 55.7, 34.1, 14, 300 }, + }, + }, + [2003995] = { + ["coords"] = {}, + }, + [2003996] = { + ["coords"] = { + [1] = { 44.5, 44.5, 5179, 300 }, + }, + }, + [2003997] = { + ["coords"] = {}, + }, + [2003998] = { + ["coords"] = { + [1] = { 48.1, 51.5, 8, 300 }, + [2] = { 25.4, 66.5, 16, 300 }, + [3] = { 22.9, 9, 406, 300 }, + [4] = { 52.8, 49.6, 409, 300 }, + [5] = { 67.2, 85.5, 618, 300 }, + [6] = { 54.6, 19, 5561, 300 }, + }, + }, + [2003999] = { + ["coords"] = { + [1] = { 49.1, 60.8, 11, 300 }, + [2] = { 61.1, 24.7, 17, 300 }, + [3] = { 64.6, 13.7, 33, 300 }, + [4] = { 60, 77.3, 38, 300 }, + [5] = { 77, 81.6, 47, 300 }, + [6] = { 44.5, 50.3, 406, 300 }, + [7] = { 22.9, 9, 406, 300 }, + [8] = { 60.7, 44.2, 409, 300 }, + [9] = { 67.2, 85.5, 618, 300 }, + [10] = { 49.5, 30.3, 618, 300 }, + [11] = { 29.3, 83.9, 5602, 300 }, + [12] = { 6.4, 25.7, 5602, 300 }, + }, + }, + [2004000] = { + ["coords"] = { + [1] = { 46, 52.1, 8, 300 }, + [2] = { 45.9, 52, 8, 300 }, + [3] = { 19.6, 54.9, 10, 300 }, + [4] = { 19.1, 53.4, 10, 300 }, + [5] = { 45.1, 15.2, 14, 300 }, + [6] = { 25.4, 66.5, 16, 300 }, + [7] = { 61.3, 24.2, 17, 300 }, + [8] = { 49, 10.1, 17, 300 }, + [9] = { 54.4, 1.1, 17, 300 }, + [10] = { 29.4, 44.8, 28, 300 }, + [11] = { 29.6, 44.7, 28, 300 }, + [12] = { 65.2, 12.6, 33, 300 }, + [13] = { 65.1, 12.5, 33, 300 }, + [14] = { 77, 81.7, 47, 300 }, + [15] = { 59.4, 67.4, 85, 300 }, + [16] = { 85.9, 58.3, 85, 300 }, + [17] = { 85.9, 58.2, 85, 300 }, + [18] = { 86.1, 58.2, 85, 300 }, + [19] = { 79.5, 81.6, 331, 300 }, + [20] = { 81, 76.8, 405, 300 }, + [21] = { 23.8, 67.9, 405, 300 }, + [22] = { 24.4, 13.9, 406, 25 }, + [23] = { 24.4, 13.7, 406, 300 }, + [24] = { 74.5, 39.7, 1497, 300 }, + [25] = { 54.5, 11, 1497, 300 }, + [26] = { 5.4, 88.6, 2100, 300 }, + [27] = { 53.7, 73.7, 5561, 300 }, + [28] = { 30.8, 57.1, 5561, 300 }, + [29] = { 56.5, 52.7, 5601, 604800 }, + }, + }, + [2004001] = { + ["coords"] = { + [1] = { 25.5, 66.5, 16, 300 }, + [2] = { 61.3, 24, 17, 300 }, + [3] = { 64.6, 13.5, 33, 300 }, + [4] = { 90.1, 22.5, 46, 300 }, + [5] = { 53.1, 49.8, 409, 300 }, + [6] = { 56.6, 52.7, 5601, 604800 }, + }, + }, + [2004002] = { + ["coords"] = { + [1] = { 25.4, 66.5, 16, 300 }, + [2] = { 64.6, 13.7, 33, 300 }, + [3] = { 81, 76.6, 405, 300 }, + [4] = { 24.4, 13.8, 406, 25 }, + [5] = { 22.9, 9, 406, 300 }, + [6] = { 53.1, 49.4, 409, 300 }, + }, + }, + [2004003] = { + ["coords"] = { + [1] = { 25.4, 66.5, 16, 300 }, + [2] = { 64.6, 13.6, 33, 300 }, + [3] = { 64.5, 13.5, 33, 300 }, + [4] = { 77, 81.6, 47, 300 }, + [5] = { 24.4, 13.8, 406, 25 }, + [6] = { 24.4, 13.7, 406, 300 }, + [7] = { 22.9, 9, 406, 300 }, + }, + }, + [2004004] = { + ["coords"] = { + [1] = { 50, 46.1, 8, 300 }, + [2] = { 49.9, 46.1, 8, 300 }, + [3] = { 43, 93.8, 17, 300 }, + [4] = { 31.3, 47.7, 33, 300 }, + [5] = { 51.3, 25, 45, 300 }, + [6] = { 29.6, 85.7, 47, 300 }, + [7] = { 29.6, 25.9, 400, 300 }, + [8] = { 25.7, 10.5, 406, 300 }, + [9] = { 52.7, 69.8, 1637, 300 }, + }, + }, + [2004005] = { + ["coords"] = { + [1] = { 91.5, 54.1, 331, 300 }, + [2] = { 24.5, 13.9, 406, 300 }, + }, + }, + [2004006] = { + ["coords"] = { + [1] = { 43, 93.8, 17, 300 }, + [2] = { 31.2, 47.5, 33, 300 }, + [3] = { 51.7, 25.1, 45, 300 }, + [4] = { 30, 85.8, 47, 300 }, + [5] = { 76.8, 81.8, 47, 300 }, + [6] = { 91.5, 54.1, 331, 300 }, + [7] = { 43.4, 17.3, 357, 25 }, + [8] = { 29.6, 25.9, 400, 300 }, + [9] = { 25.1, 13.1, 406, 300 }, + [10] = { 25.7, 10.5, 406, 300 }, + [11] = { 54, 84.6, 408, 300 }, + [12] = { 52.7, 49.4, 409, 300 }, + [13] = { 52.5, 69.8, 1637, 300 }, + }, + }, + [2004007] = { + ["coords"] = {}, + }, + [2004008] = { + ["coords"] = { + [1] = { 51.5, 45.9, 8, 300 }, + }, + }, + [2004009] = { + ["coords"] = { + [1] = { 49.3, 48.1, 8, 300 }, + [2] = { 43.5, 70, 14, 300 }, + }, + }, + [2004010] = { + ["coords"] = {}, + }, + [2004011] = { + ["coords"] = { + [1] = { 77, 81.6, 47, 300 }, + }, + }, + [2004012] = { + ["coords"] = { + [1] = { 50.5, 46.9, 8, 300 }, + [2] = { 13.6, 68.9, 46, 300 }, + [3] = { 43, 61.6, 1637, 300 }, + [4] = { 90.2, 95, 5581, 300 }, + }, + }, + [2004013] = { + ["coords"] = { + [1] = { 42.3, 68.3, 14, 300 }, + [2] = { 67.5, 82.9, 130, 300 }, + [3] = { 14.2, 49.4, 267, 300 }, + [4] = { 31.4, 90.7, 405, 300 }, + [5] = { 37, 51.6, 406, 300 }, + [6] = { 72, 12, 5179, 300 }, + }, + }, + [2004014] = { + ["coords"] = { + [1] = { 49.6, 49.8, 8, 300 }, + [2] = { 51.1, 44.5, 8, 300 }, + [3] = { 49.5, 60.6, 11, 300 }, + [4] = { 44.8, 15.1, 14, 300 }, + [5] = { 44.1, 98.7, 28, 300 }, + [6] = { 80.9, 51.6, 36, 300 }, + [7] = { 51.4, 24.5, 45, 300 }, + [8] = { 16.5, 65.9, 46, 300 }, + [9] = { 29.7, 85.2, 47, 300 }, + [10] = { 67.4, 83, 130, 300 }, + [11] = { 13.9, 49.6, 267, 300 }, + [12] = { 72.5, 58.5, 331, 300 }, + [13] = { 31.4, 90.7, 405, 300 }, + [14] = { 37, 51.6, 406, 300 }, + [15] = { 71.8, 12.2, 5179, 300 }, + [16] = { 92.8, 92.3, 5581, 300 }, + [17] = { 6.8, 25.5, 5602, 300 }, + }, + }, + [2004015] = { + ["coords"] = { + [1] = { 31.4, 90.7, 405, 300 }, + }, + }, + [2004016] = { + ["coords"] = {}, + }, + [2004017] = { + ["coords"] = { + [1] = { 49.2, 9.9, 17, 300 }, + }, + }, + [2004018] = { + ["coords"] = {}, + }, + [2004019] = { + ["coords"] = {}, + }, + [2004020] = { + ["coords"] = {}, + }, + [2004021] = { + ["coords"] = { + [1] = { 27.4, 63.8, 16, 300 }, + [2] = { 60.2, 33.9, 1497, 300 }, + }, + }, + [2004022] = { + ["coords"] = {}, + }, + [2004023] = { + ["coords"] = { + [1] = { 19.2, 53.5, 10, 300 }, + [2] = { 55.3, 97.3, 14, 300 }, + [3] = { 74.1, 47.8, 17, 300 }, + [4] = { 20, 66.9, 46, 300 }, + [5] = { 67.4, 83.5, 130, 300 }, + [6] = { 42, 10.1, 130, 300 }, + [7] = { 14, 50.2, 267, 300 }, + [8] = { 50.3, 63.1, 406, 300 }, + [9] = { 44.6, 50.3, 406, 300 }, + [10] = { 49.2, 30.4, 618, 300 }, + [11] = { 71.8, 12.7, 5179, 300 }, + [12] = { 96, 93.2, 5581, 300 }, + }, + }, + [2004024] = { + ["coords"] = {}, + }, + [2004025] = { + ["coords"] = {}, + }, + [2004026] = { + ["coords"] = { + [1] = { 58.8, 5.8, 17, 0 }, + }, + }, + [2004027] = { + ["coords"] = {}, + }, + [2004028] = { + ["coords"] = {}, + }, + [2004029] = { + ["coords"] = { + [1] = { 42.8, 93.5, 17, 300 }, + [2] = { 29.1, 25.3, 400, 300 }, + [3] = { 29.2, 25.2, 400, 300 }, + [4] = { 29, 25.1, 400, 300 }, + [5] = { 52.5, 51, 409, 300 }, + [6] = { 78.9, 65.8, 616, 300 }, + [7] = { 23.3, 37.2, 616, 300 }, + [8] = { 42.5, 33.7, 616, 300 }, + [9] = { 42.8, 31.6, 616, 300 }, + }, + }, + [2004030] = { + ["coords"] = { + [1] = { 15.6, 63.2, 46, 300 }, + [2] = { 78.4, 66.1, 616, 300 }, + [3] = { 23, 37.3, 616, 300 }, + [4] = { 42.4, 33.8, 616, 300 }, + [5] = { 41.8, 33.1, 616, 300 }, + [6] = { 92, 89.8, 5581, 300 }, + }, + }, + [2004031] = { + ["coords"] = { + [1] = { 42.3, 93.7, 17, 300 }, + [2] = { 27.9, 25.7, 400, 300 }, + [3] = { 27, 14, 406, 300 }, + [4] = { 70, 76.2, 408, 300 }, + [5] = { 39.6, 77.7, 5121, 300 }, + [6] = { 60, 30.8, 5602, 300 }, + }, + }, + [2004032] = { + ["coords"] = {}, + }, + [2004033] = { + ["coords"] = {}, + }, + [2004034] = { + ["coords"] = {}, + }, + [2004035] = { + ["coords"] = {}, + }, + [2004036] = { + ["coords"] = {}, + }, + [2004037] = { + ["coords"] = {}, + }, + [2004038] = { + ["coords"] = {}, + }, + [2004039] = { + ["coords"] = {}, + }, + [2004040] = { + ["coords"] = {}, + }, + [2004041] = { + ["coords"] = {}, + }, + [2004042] = { + ["coords"] = {}, + }, + [2004043] = { + ["coords"] = {}, + }, + [2004044] = { + ["coords"] = {}, + }, + [2004045] = { + ["coords"] = {}, + }, + [2004046] = { + ["coords"] = {}, + }, + [2004047] = { + ["coords"] = {}, + }, + [2004048] = { + ["coords"] = {}, + }, + [2004049] = { + ["coords"] = {}, + }, + [2004050] = { + ["coords"] = {}, + }, + [2004051] = { + ["coords"] = {}, + }, + [2004052] = { + ["coords"] = {}, + }, + [2004053] = { + ["coords"] = {}, + }, + [2004054] = { + ["coords"] = {}, + }, + [2004055] = { + ["coords"] = {}, + }, + [2004056] = { + ["coords"] = {}, + }, + [2004057] = { + ["coords"] = {}, + }, + [2004058] = { + ["coords"] = {}, + }, + [2004059] = { + ["coords"] = {}, + }, + [2004060] = { + ["coords"] = {}, + }, + [2004061] = { + ["coords"] = {}, + }, + [2004062] = { + ["coords"] = {}, + }, + [2004063] = { + ["coords"] = {}, + }, + [2004064] = { + ["coords"] = {}, + }, + [2004065] = { + ["coords"] = {}, + }, + [2004066] = { + ["coords"] = {}, + }, + [2004067] = { + ["coords"] = {}, + }, + [2004068] = { + ["coords"] = {}, + }, + [2004069] = { + ["coords"] = {}, + }, + [2004070] = { + ["coords"] = {}, + }, + [2004071] = { + ["coords"] = {}, + }, + [2004072] = { + ["coords"] = {}, + }, + [2004073] = { + ["coords"] = {}, + }, + [2004074] = { + ["coords"] = {}, + }, + [2004075] = { + ["coords"] = {}, + }, + [2004076] = { + ["coords"] = {}, + }, + [2004077] = { + ["coords"] = {}, + }, + [2004078] = { + ["coords"] = {}, + }, + [2004079] = { + ["coords"] = {}, + }, + [2004080] = { + ["coords"] = {}, + }, + [2004081] = { + ["coords"] = {}, + }, + [2004082] = { + ["coords"] = {}, + }, + [2004083] = { + ["coords"] = {}, + }, + [2004084] = { + ["coords"] = {}, + }, + [2004085] = { + ["coords"] = {}, + }, + [2004086] = { + ["coords"] = {}, + }, + [2004087] = { + ["coords"] = {}, + }, + [2004088] = { + ["coords"] = {}, + }, + [2004089] = { + ["coords"] = {}, + }, + [2004090] = { + ["coords"] = {}, + }, + [2004091] = { + ["coords"] = { + [1] = { 56.3, 52.5, 1519, 300 }, + }, + }, + [2004092] = { + ["coords"] = { + [1] = { 24.4, 31.8, 1, 300 }, + [2] = { 24.4, 31.7, 1, 300 }, + [3] = { 74.8, 30.2, 721, 300 }, + [4] = { 74.9, 29.8, 721, 300 }, + [5] = { 56.9, 52.2, 1519, 300 }, + }, + }, + [2004093] = { + ["coords"] = { + [1] = { 57.1, 54, 1519, 300 }, + [2] = { 57, 52.2, 1519, 300 }, + }, + }, + [2004094] = { + ["coords"] = {}, + }, + [2004095] = { + ["coords"] = { + [1] = { 70.9, 23.8, 1637, 300 }, + [2] = { 70.1, 22.4, 1637, 300 }, + }, + }, + [2004096] = { + ["coords"] = { + [1] = { 70.8, 23.9, 1637, 300 }, + }, + }, + [2004097] = { + ["coords"] = { + [1] = { 70.7, 23.9, 1637, 300 }, + }, + }, + [2004098] = { + ["coords"] = {}, + }, + [2004099] = { + ["coords"] = { + [1] = { 48.9, 61.1, 11, 300 }, + [2] = { 84.5, 79.1, 12, 300 }, + [3] = { 53.2, 43.4, 14, 300 }, + [4] = { 42, 74.2, 15, 300 }, + [5] = { 34.3, 10.2, 17, 300 }, + [6] = { 44.5, 98.1, 28, 300 }, + [7] = { 81.5, 50.7, 36, 300 }, + [8] = { 18.8, 61.6, 44, 300 }, + [9] = { 35.1, 10.1, 45, 300 }, + [10] = { 14.5, 71.8, 47, 300 }, + [11] = { 12.3, 56, 85, 300 }, + [12] = { 67.4, 83.4, 130, 300 }, + [13] = { 67.4, 83.3, 130, 300 }, + [14] = { 43.1, 97.6, 148, 300 }, + [15] = { 14, 50, 267, 300 }, + [16] = { 27.4, 15.7, 331, 300 }, + [17] = { 29.8, 86.9, 405, 300 }, + [18] = { 79.9, 62.7, 406, 300 }, + [19] = { 61.3, 43.9, 409, 300 }, + [20] = { 58.1, 41.3, 409, 300 }, + [21] = { 38.1, 61, 1519, 300 }, + [22] = { 28.3, 14.9, 1519, 300 }, + [23] = { 30.3, 14.8, 1519, 300 }, + [24] = { 29.8, 14, 1519, 300 }, + [25] = { 28.8, 11, 1519, 300 }, + [26] = { 51.2, 34.7, 5121, 300 }, + [27] = { 44.6, 44.6, 5179, 300 }, + [28] = { 44.7, 44.6, 5179, 300 }, + [29] = { 71.9, 12.6, 5179, 300 }, + [30] = { 31.7, 85.4, 5581, 300 }, + [31] = { 32.8, 85.3, 5581, 300 }, + [32] = { 32.5, 84.9, 5581, 300 }, + [33] = { 31.9, 83.3, 5581, 300 }, + [34] = { 6.3, 25.9, 5602, 300 }, + }, + }, + [2004100] = { + ["coords"] = { + [1] = { 34.1, 48.7, 10, 300 }, + [2] = { 34.1, 48.6, 10, 300 }, + [3] = { 58, 99.4, 14, 300 }, + [4] = { 75.5, 48.9, 17, 300 }, + [5] = { 44.5, 98.2, 28, 300 }, + [6] = { 81.4, 50.8, 36, 300 }, + [7] = { 37.7, 61.5, 1519, 300 }, + [8] = { 29.8, 13.9, 1519, 300 }, + [9] = { 28.8, 11.1, 1519, 300 }, + [10] = { 32.5, 84.9, 5581, 300 }, + [11] = { 31.9, 83.4, 5581, 300 }, + }, + }, + [2004101] = { + ["coords"] = {}, + }, + [2004102] = { + ["coords"] = {}, + }, + [2004103] = { + ["coords"] = {}, + }, + [2004104] = { + ["coords"] = {}, + }, + [2004105] = { + ["coords"] = {}, + }, + [2004106] = { + ["coords"] = { + [1] = { 79.3, 66.2, 28, 300 }, + [2] = { 78.9, 66, 28, 300 }, + [3] = { 20.9, 90.3, 139, 300 }, + }, + }, + [2004107] = { + ["coords"] = {}, + }, + [2004108] = { + ["coords"] = { + [1] = { 20.7, 49.1, 267, 300 }, + [2] = { 20.9, 49.1, 267, 300 }, + [3] = { 20.8, 48.9, 267, 300 }, + [4] = { 77.7, 11.8, 5179, 300 }, + [5] = { 77.8, 11.8, 5179, 300 }, + [6] = { 77.8, 11.7, 5179, 300 }, + [7] = { 39.4, 44, 5208, 300 }, + }, + }, + [2004109] = { + ["coords"] = {}, + }, + [2004110] = { + ["coords"] = {}, + }, + [2004111] = { + ["coords"] = {}, + }, + [2004112] = { + ["coords"] = {}, + }, + [2004113] = { + ["coords"] = { + [1] = { 25.2, 56, 141, 300 }, + [2] = { 38.7, 28.7, 215, 300 }, + [3] = { 66.7, 37.6, 1497, 300 }, + [4] = { 65.5, 37.6, 1497, 300 }, + [5] = { 55.6, 55.6, 1519, 300 }, + [6] = { 31.9, 61.9, 1537, 300 }, + [7] = { 55.1, 72.1, 1637, 300 }, + [8] = { 43.5, 58.4, 1638, 300 }, + [9] = { 38.7, 43.7, 1657, 300 }, + [10] = { 50, 45.6, 2040, 300 }, + [11] = { 45.4, 46.8, 5130, 300 }, + [12] = { 45.5, 46.3, 5130, 300 }, + [13] = { 61.6, 23.8, 5225, 300 }, + }, + }, + [2004114] = { + ["coords"] = { + [1] = { 25.3, 56, 141, 300 }, + [2] = { 38.7, 28.7, 215, 300 }, + [3] = { 66.2, 37.5, 1497, 300 }, + [4] = { 65.5, 37.4, 1497, 300 }, + [5] = { 55.5, 55.7, 1519, 300 }, + [6] = { 31.8, 61.7, 1537, 300 }, + [7] = { 55.1, 72.1, 1637, 300 }, + [8] = { 43.6, 58.5, 1638, 300 }, + [9] = { 38.7, 43.6, 1657, 300 }, + [10] = { 45.3, 46.8, 5130, 300 }, + [11] = { 45.5, 45.9, 5130, 300 }, + }, + }, + [2004115] = { + ["coords"] = { + [1] = { 25.3, 56.1, 141, 300 }, + [2] = { 38.6, 28.7, 215, 300 }, + [3] = { 55.4, 55.9, 1519, 300 }, + [4] = { 55.6, 55.7, 1519, 300 }, + [5] = { 31.8, 61.9, 1537, 300 }, + [6] = { 43.5, 58.6, 1638, 300 }, + [7] = { 39, 44, 1657, 300 }, + [8] = { 49.8, 45.5, 2040, 300 }, + [9] = { 45.5, 46.8, 5130, 300 }, + [10] = { 61.5, 23.8, 5225, 300 }, + }, + }, + [2004116] = { + ["coords"] = { + [1] = { 66.5, 37.6, 1497, 300 }, + [2] = { 65.4, 37.5, 1497, 300 }, + [3] = { 55.4, 56, 1519, 300 }, + [4] = { 55.1, 72.3, 1637, 300 }, + [5] = { 50.1, 45.7, 2040, 300 }, + [6] = { 45.4, 46.9, 5130, 300 }, + [7] = { 45.6, 46.4, 5130, 300 }, + [8] = { 45.6, 46.2, 5130, 300 }, + [9] = { 61.6, 23.8, 5225, 300 }, + }, + }, + [2004117] = { + ["coords"] = { + [1] = { 25.3, 56.1, 141, 300 }, + [2] = { 38.6, 28.8, 215, 300 }, + [3] = { 65.9, 37.5, 1497, 300 }, + [4] = { 66.6, 37.5, 1497, 300 }, + [5] = { 55.3, 55.9, 1519, 300 }, + [6] = { 55.6, 55.5, 1519, 300 }, + [7] = { 32, 62.1, 1537, 300 }, + [8] = { 55.2, 72, 1637, 300 }, + [9] = { 43.5, 58.8, 1638, 300 }, + [10] = { 39, 43.9, 1657, 300 }, + [11] = { 49.8, 45.5, 2040, 300 }, + [12] = { 45.5, 46.6, 5130, 300 }, + [13] = { 45.6, 45.9, 5130, 300 }, + [14] = { 61.5, 23.7, 5225, 300 }, + }, + }, + [2004118] = { + ["coords"] = { + [1] = { 25.3, 56.1, 141, 300 }, + [2] = { 38.6, 28.8, 215, 300 }, + [3] = { 65.6, 37.6, 1497, 300 }, + [4] = { 55.6, 55.6, 1519, 300 }, + [5] = { 55.1, 72.2, 1637, 300 }, + [6] = { 43.4, 58.9, 1638, 300 }, + [7] = { 39.1, 43.9, 1657, 300 }, + [8] = { 50, 45.8, 2040, 300 }, + [9] = { 49.8, 45.5, 2040, 300 }, + [10] = { 45.5, 46.4, 5130, 300 }, + [11] = { 45.5, 45.8, 5130, 300 }, + [12] = { 61.6, 23.9, 5225, 300 }, + [13] = { 61.5, 23.7, 5225, 300 }, + }, + }, + [2004119] = { + ["coords"] = { + [1] = { 25.2, 56.1, 141, 300 }, + [2] = { 38.6, 28.8, 215, 300 }, + [3] = { 38.6, 28.7, 215, 300 }, + [4] = { 66.5, 37.5, 1497, 300 }, + [5] = { 65.6, 37.4, 1497, 300 }, + [6] = { 66.9, 29.4, 1519, 300 }, + [7] = { 67, 29.2, 1519, 300 }, + [8] = { 66.2, 29.1, 1519, 300 }, + [9] = { 67.2, 29.1, 1519, 300 }, + [10] = { 66.3, 29, 1519, 300 }, + [11] = { 67.3, 28.9, 1519, 300 }, + [12] = { 66.6, 28.8, 1519, 300 }, + [13] = { 66.4, 28.8, 1519, 300 }, + [14] = { 67.2, 28.7, 1519, 300 }, + [15] = { 66.5, 28.7, 1519, 300 }, + [16] = { 65.9, 28.6, 1519, 300 }, + [17] = { 67.1, 28.6, 1519, 300 }, + [18] = { 66, 28.5, 1519, 300 }, + [19] = { 67, 28.4, 1519, 300 }, + [20] = { 66.8, 28.3, 1519, 300 }, + [21] = { 66.1, 28.3, 1519, 300 }, + [22] = { 66.9, 28.2, 1519, 300 }, + [23] = { 66.2, 28.2, 1519, 300 }, + [24] = { 66.1, 28, 1519, 300 }, + [25] = { 66.5, 27.8, 1519, 300 }, + [26] = { 66.6, 27.7, 1519, 300 }, + [27] = { 66.5, 27.5, 1519, 300 }, + [28] = { 65.9, 27.4, 1519, 300 }, + [29] = { 66.4, 27.3, 1519, 300 }, + [30] = { 66, 27.2, 1519, 300 }, + [31] = { 66.3, 27.1, 1519, 300 }, + [32] = { 66.1, 27.1, 1519, 300 }, + [33] = { 66.2, 26.9, 1519, 300 }, + [34] = { 54.9, 71.9, 1637, 300 }, + [35] = { 43.3, 59, 1638, 300 }, + [36] = { 43.5, 58.2, 1638, 300 }, + [37] = { 38.5, 43.9, 1657, 300 }, + [38] = { 50.3, 45.8, 2040, 300 }, + [39] = { 61.7, 23.9, 5225, 300 }, + [40] = { 52.4, 93.1, 5581, 300 }, + [41] = { 52, 93, 5581, 300 }, + [42] = { 52.5, 93, 5581, 300 }, + [43] = { 52, 92.9, 5581, 300 }, + [44] = { 52.6, 92.9, 5581, 300 }, + [45] = { 52.2, 92.9, 5581, 300 }, + [46] = { 52.1, 92.8, 5581, 300 }, + [47] = { 52.5, 92.8, 5581, 300 }, + [48] = { 52.2, 92.8, 5581, 300 }, + [49] = { 51.8, 92.7, 5581, 300 }, + [50] = { 52.5, 92.7, 5581, 300 }, + [51] = { 51.9, 92.6, 5581, 300 }, + [52] = { 52.4, 92.6, 5581, 300 }, + [53] = { 52.3, 92.6, 5581, 300 }, + [54] = { 52, 92.6, 5581, 300 }, + [55] = { 52.4, 92.5, 5581, 300 }, + [56] = { 52, 92.5, 5581, 300 }, + [57] = { 52, 92.4, 5581, 300 }, + [58] = { 52.2, 92.3, 5581, 300 }, + [59] = { 52.2, 92.2, 5581, 300 }, + [60] = { 52.2, 92.1, 5581, 300 }, + [61] = { 51.8, 92.1, 5581, 300 }, + [62] = { 52.1, 92, 5581, 300 }, + [63] = { 51.9, 92, 5581, 300 }, + [64] = { 52.1, 91.9, 5581, 300 }, + [65] = { 52, 91.9, 5581, 300 }, + [66] = { 52, 91.8, 5581, 300 }, + }, + }, + [2004120] = { + ["coords"] = { + [1] = { 25.2, 56, 141, 300 }, + [2] = { 38.7, 28.8, 215, 300 }, + [3] = { 38.7, 28.7, 215, 300 }, + [4] = { 61.2, 36.9, 618, 300 }, + [5] = { 65.9, 37.4, 1497, 300 }, + [6] = { 66.2, 37.4, 1497, 300 }, + [7] = { 66, 29.3, 1519, 300 }, + [8] = { 65.7, 28.8, 1519, 300 }, + [9] = { 66.7, 28.5, 1519, 300 }, + [10] = { 66.4, 28, 1519, 300 }, + [11] = { 55.1, 71.8, 1637, 300 }, + [12] = { 43.6, 58.9, 1638, 300 }, + [13] = { 43.7, 58.5, 1638, 300 }, + [14] = { 38.6, 43.5, 1657, 300 }, + [15] = { 50.1, 45.7, 2040, 300 }, + [16] = { 61.6, 23.8, 5225, 300 }, + [17] = { 51.9, 93.1, 5581, 300 }, + [18] = { 51.8, 92.8, 5581, 300 }, + [19] = { 52.2, 92.7, 5581, 300 }, + [20] = { 52.1, 92.4, 5581, 300 }, + }, + }, + [2004121] = { + ["coords"] = {}, + }, + [2004122] = { + ["coords"] = {}, + }, + [2004123] = { + ["coords"] = {}, + }, + [2004124] = { + ["coords"] = {}, + }, + [2004125] = { + ["coords"] = {}, + }, + [2004126] = { + ["coords"] = {}, + }, + [2004127] = { + ["coords"] = {}, + }, + [2004128] = { + ["coords"] = {}, + }, + [2004129] = { + ["coords"] = {}, + }, + [2004130] = { + ["coords"] = {}, + }, + [2004131] = { + ["coords"] = {}, + }, + [2004132] = { + ["coords"] = {}, + }, + [2004133] = { + ["coords"] = {}, + }, + [2004134] = { + ["coords"] = {}, + }, + [2004135] = { + ["coords"] = { + [1] = { 66.7, 47.6, 267, 300 }, + }, + }, + [2004136] = { + ["coords"] = {}, + }, + [2004137] = { + ["coords"] = { + [1] = { 84.5, 79.9, 12, 300 }, + [2] = { 80.8, 61.2, 28, 300 }, + [3] = { 80.8, 61.1, 28, 300 }, + [4] = { 58.1, 75.1, 38, 300 }, + [5] = { 78.8, 55.8, 85, 300 }, + [6] = { 32, 45.9, 85, 300 }, + [7] = { 41.7, 10.1, 130, 300 }, + [8] = { 22.5, 84.7, 139, 300 }, + [9] = { 55.6, 57.7, 141, 300 }, + [10] = { 50, 63.2, 267, 300 }, + [11] = { 49.4, 62.1, 267, 300 }, + [12] = { 31, 90, 405, 300 }, + [13] = { 30.9, 90, 405, 300 }, + [14] = { 67.4, 26.7, 440, 300 }, + [15] = { 23.8, 64.2, 2040, 25 }, + [16] = { 49.1, 32.6, 5225, 25 }, + [17] = { 28.3, 82.7, 5602, 300 }, + }, + }, + [2004138] = { + ["coords"] = { + [1] = { 41.9, 74.2, 15, 25 }, + [2] = { 42.8, 93.1, 17, 300 }, + [3] = { 89.1, 59.6, 331, 300 }, + [4] = { 89.1, 59.5, 331, 300 }, + [5] = { 29.1, 24.3, 400, 300 }, + [6] = { 29, 24.3, 400, 300 }, + [7] = { 24.5, 12.7, 406, 300 }, + [8] = { 24.4, 12.6, 406, 300 }, + }, + }, + [2004139] = { + ["coords"] = { + [1] = { 50.5, 24.3, 5087, 300 }, + }, + }, + [2004140] = { + ["coords"] = { + [1] = { 14, 77.8, 85, 300 }, + [2] = { 24.1, 8.3, 130, 300 }, + [3] = { 25, 6.2, 130, 300 }, + }, + }, + [2004141] = { + ["coords"] = {}, + }, + [2004142] = { + ["coords"] = {}, + }, + [2004143] = { + ["coords"] = {}, + }, + [2004144] = { + ["coords"] = {}, + }, + [2004145] = { + ["coords"] = { + [1] = { 83.6, 56.2, 400, 25 }, + }, + }, + [2004146] = { + ["coords"] = {}, + }, + [2004147] = { + ["coords"] = { + [1] = { 63.4, 86.1, 16, 300 }, + [2] = { 83.8, 55.8, 400, 25 }, + }, + }, + [2004148] = { + ["coords"] = {}, + }, + [2004149] = { + ["coords"] = { + [1] = { 20.9, 49, 267, 300 }, + [2] = { 77.9, 11.7, 5179, 300 }, + }, + }, + [2004150] = { + ["coords"] = {}, + }, + [2004151] = { + ["coords"] = {}, + }, + [2004152] = { + ["coords"] = {}, + }, + [2004153] = { + ["coords"] = { + [1] = { 81.1, 74.7, 331, 0 }, + [2] = { 83.8, 56.6, 400, 25 }, + }, + }, + [2004154] = { + ["coords"] = {}, + }, + [2004155] = { + ["coords"] = {}, + }, + [2004156] = { + ["coords"] = {}, + }, + [2004157] = { + ["coords"] = {}, + }, + [2004158] = { + ["coords"] = {}, + }, + [2004159] = { + ["coords"] = {}, + }, + [2004160] = { + ["coords"] = {}, + }, + [2004161] = { + ["coords"] = {}, + }, + [2004162] = { + ["coords"] = {}, + }, + [2004163] = { + ["coords"] = {}, + }, + [2004164] = { + ["coords"] = {}, + }, + [2004165] = { + ["coords"] = {}, + }, + [2004166] = { + ["coords"] = {}, + }, + [2004167] = { + ["coords"] = {}, + }, + [2004168] = { + ["coords"] = {}, + }, + [2004169] = { + ["coords"] = {}, + }, + [2004170] = { + ["coords"] = {}, + }, + [2004171] = { + ["coords"] = {}, + }, + [2004172] = { + ["coords"] = {}, + }, + [2004173] = { + ["coords"] = {}, + }, + [2004174] = { + ["coords"] = {}, + }, + [2004175] = { + ["coords"] = {}, + }, + [2004176] = { + ["coords"] = {}, + }, + [2004177] = { + ["coords"] = { + [1] = { 42.1, 72.1, 15, 25 }, + }, + }, + [2004178] = { + ["coords"] = { + [1] = { 41.8, 74, 15, 300 }, + [2] = { 21, 55, 331, 300 }, + [3] = { 75.9, 42.2, 357, 300 }, + [4] = { 57.5, 22, 406, 300 }, + [5] = { 61.4, 44.3, 409, 300 }, + }, + }, + [2004179] = { + ["coords"] = { + [1] = { 55.8, 73.3, 14, 300 }, + }, + }, + [2004180] = { + ["coords"] = { + [1] = { 69.7, 57.2, 10, 300 }, + [2] = { 61.5, 23.7, 17, 300 }, + [3] = { 80.7, 63.4, 28, 300 }, + [4] = { 22.4, 87.2, 139, 300 }, + [5] = { 31.3, 62.9, 141, 300 }, + [6] = { 60.5, 23.6, 361, 300 }, + [7] = { 82.5, 55.6, 400, 25 }, + [8] = { 67.9, 76.8, 1657, 300 }, + }, + }, + [2004181] = { + ["coords"] = { + [1] = { 41.8, 74.2, 15, 300 }, + [2] = { 61, 43.9, 409, 300 }, + }, + }, + [2004182] = { + ["coords"] = { + [1] = { 51.4, 34.5, 5121, 300 }, + }, + }, + [2004183] = { + ["coords"] = { + [1] = { 31.2, 38.3, 440, 300 }, + [2] = { 67.6, 26.9, 440, 300 }, + [3] = { 78.4, 67.8, 490, 300 }, + }, + }, + [2004184] = { + ["coords"] = { + [1] = { 67.4, 27.3, 440, 300 }, + [2] = { 38.5, 10.9, 490, 300 }, + [3] = { 39.3, 10.9, 490, 300 }, + [4] = { 39.3, 10.8, 490, 300 }, + }, + }, + [2004185] = { + ["coords"] = { + [1] = { 39.3, 10.7, 490, 300 }, + }, + }, + [2004186] = { + ["coords"] = { + [1] = { 67.6, 26.9, 440, 300 }, + [2] = { 39.3, 10.7, 490, 300 }, + }, + }, + [2004187] = { + ["coords"] = {}, + }, + [2004188] = { + ["coords"] = {}, + }, + [2004189] = { + ["coords"] = {}, + }, + [2004190] = { + ["coords"] = { + [1] = { 35.6, 25.7, 16, 300 }, + [2] = { 67.1, 85.8, 618, 300 }, + }, + }, + [2004191] = { + ["coords"] = { + [1] = { 35.6, 25.7, 16, 300 }, + [2] = { 53.7, 0.8, 17, 300 }, + [3] = { 53.8, 0.8, 17, 300 }, + [4] = { 53.8, 0.7, 17, 300 }, + [5] = { 53.8, 0.6, 17, 300 }, + [6] = { 53.8, 0.5, 17, 300 }, + [7] = { 78.3, 81.1, 331, 300 }, + [8] = { 78.4, 81.1, 331, 300 }, + [9] = { 78.5, 81, 331, 300 }, + [10] = { 78.4, 81, 331, 300 }, + [11] = { 78.5, 80.9, 331, 300 }, + [12] = { 78.6, 80.8, 331, 300 }, + [13] = { 78.6, 80.7, 331, 300 }, + [14] = { 78.5, 80.5, 331, 300 }, + [15] = { 67.1, 85.8, 618, 300 }, + }, + }, + [2004192] = { + ["coords"] = { + [1] = { 35.6, 25.7, 16, 300 }, + [2] = { 67.1, 85.8, 618, 300 }, + [3] = { 42.6, 43.6, 5179, 300 }, + [4] = { 36.6, 19, 5561, 300 }, + }, + }, + [2004193] = { + ["coords"] = { + [1] = { 9.3, 22.4, 139, 300 }, + [2] = { 69.9, 49.4, 2040, 300 }, + [3] = { 71.1, 45, 2040, 300 }, + [4] = { 50, 83.9, 5225, 300 }, + [5] = { 71.1, 25.6, 5225, 300 }, + [6] = { 71.6, 23.5, 5225, 300 }, + }, + }, + [2004194] = { + ["coords"] = { + [1] = { 9.4, 22.4, 139, 300 }, + [2] = { 69.9, 49.5, 2040, 300 }, + [3] = { 50.1, 83.9, 5225, 300 }, + [4] = { 71.1, 25.6, 5225, 300 }, + }, + }, + [2004195] = { + ["coords"] = { + [1] = { 33.5, 51.7, 14, 300 }, + [2] = { 62.8, 24.1, 17, 300 }, + [3] = { 98, 25.5, 331, 300 }, + }, + }, + [2004196] = { + ["coords"] = { + [1] = { 33.5, 52.3, 14, 300 }, + [2] = { 62.7, 24.4, 17, 300 }, + [3] = { 88.7, 72.3, 36, 300 }, + [4] = { 3.3, 51.3, 47, 300 }, + [5] = { 86.5, 11.7, 267, 300 }, + [6] = { 27.2, 63.5, 409, 300 }, + [7] = { 27, 63.3, 409, 300 }, + }, + }, + [2004197] = { + ["coords"] = { + [1] = { 77.4, 56.2, 15, 300 }, + [2] = { 26.7, 82.9, 440, 300 }, + [3] = { 26.8, 82.7, 440, 300 }, + }, + }, + [2004198] = { + ["coords"] = {}, + }, + [2004199] = { + ["coords"] = { + [1] = { 47.8, 62.5, 11, 300 }, + [2] = { 27.2, 63.3, 409, 300 }, + [3] = { 27.3, 63.3, 409, 300 }, + [4] = { 5.4, 26.9, 5602, 300 }, + }, + }, + [2004200] = { + ["coords"] = {}, + }, + [2004201] = { + ["coords"] = {}, + }, + [2004202] = { + ["coords"] = {}, + }, + [2004203] = { + ["coords"] = { + [1] = { 25.2, 30.6, 1, 300 }, + [2] = { 32.5, 47.6, 10, 300 }, + [3] = { 32.5, 47.5, 10, 300 }, + [4] = { 48.9, 60.3, 11, 300 }, + [5] = { 84.6, 79, 12, 300 }, + [6] = { 39.1, 69.5, 12, 300 }, + [7] = { 55.2, 97.3, 14, 300 }, + [8] = { 37.7, 72.4, 14, 300 }, + [9] = { 37.7, 72.3, 14, 300 }, + [10] = { 68, 48.5, 15, 300 }, + [11] = { 45.9, 85.7, 17, 300 }, + [12] = { 75.6, 49.5, 17, 300 }, + [13] = { 74.1, 47.9, 17, 300 }, + [14] = { 64.9, 34.9, 17, 300 }, + [15] = { 64.9, 34.8, 17, 300 }, + [16] = { 34.2, 10.1, 17, 300 }, + [17] = { 44.1, 98.7, 28, 300 }, + [18] = { 44.1, 98.6, 28, 300 }, + [19] = { 43.8, 98.5, 28, 300 }, + [20] = { 44.4, 98.4, 28, 300 }, + [21] = { 80.8, 63.6, 28, 300 }, + [22] = { 80.8, 61.2, 28, 300 }, + [23] = { 33.8, 17.8, 28, 300 }, + [24] = { 80.8, 51.5, 36, 300 }, + [25] = { 80.3, 51.3, 36, 300 }, + [26] = { 81.3, 51.2, 36, 300 }, + [27] = { 81.3, 51.1, 36, 300 }, + [28] = { 4.6, 61.4, 85, 300 }, + [29] = { 16.3, 53.6, 85, 300 }, + [30] = { 12, 53.5, 85, 300 }, + [31] = { 11.9, 53.5, 85, 300 }, + [32] = { 17.4, 49.7, 85, 300 }, + [33] = { 23.4, 49.7, 85, 300 }, + [34] = { 90.1, 32.6, 85, 300 }, + [35] = { 67.6, 83.6, 130, 300 }, + [36] = { 22.6, 87.4, 139, 300 }, + [37] = { 22.6, 84.7, 139, 300 }, + [38] = { 42.5, 53.4, 267, 300 }, + [39] = { 14.3, 50.4, 267, 300 }, + [40] = { 79.6, 62.7, 406, 300 }, + [41] = { 47.8, 57.4, 406, 300 }, + [42] = { 37.1, 51.6, 406, 300 }, + [43] = { 81.5, 19.7, 721, 300 }, + [44] = { 37.4, 73.4, 1519, 300 }, + [45] = { 37.5, 73.4, 1519, 300 }, + [46] = { 96.8, 15.6, 5179, 300 }, + [47] = { 72.1, 12.9, 5179, 300 }, + [48] = { 6.3, 25.3, 5602, 300 }, + }, + }, + [2004204] = { + ["coords"] = { + [1] = { 53.5, 99.1, 36, 300 }, + [2] = { 35.2, 10.4, 45, 300 }, + [3] = { 14.5, 72.1, 47, 300 }, + [4] = { 78.7, 55.7, 85, 300 }, + [5] = { 55.7, 35.2, 267, 300 }, + }, + }, + [2004205] = { + ["coords"] = { + [1] = { 57, 98.9, 14, 300 }, + [2] = { 55.2, 97.3, 14, 300 }, + [3] = { 37.6, 72.3, 14, 300 }, + [4] = { 49.7, 35.9, 14, 25 }, + [5] = { 68.3, 48.8, 15, 300 }, + [6] = { 46.1, 46.1, 15, 300 }, + [7] = { 46.1, 46, 15, 300 }, + [8] = { 54.5, 10.2, 16, 300 }, + [9] = { 75, 48.7, 17, 300 }, + [10] = { 74.1, 47.9, 17, 300 }, + [11] = { 64.9, 34.8, 17, 300 }, + [12] = { 95.7, 82.4, 25, 300 }, + [13] = { 40.1, 35, 46, 300 }, + [14] = { 37.2, 51.5, 406, 300 }, + [15] = { 44.6, 50.2, 406, 300 }, + [16] = { 37.6, 73.4, 1519, 300 }, + [17] = { 39.6, 77.7, 5121, 300 }, + [18] = { 48.6, 69.1, 5536, 300 }, + [19] = { 42.8, 68, 5581, 300 }, + [20] = { 42.8, 67.9, 5581, 300 }, + }, + }, + [2004206] = { + ["coords"] = { + [1] = { 34.1, 48.6, 10, 300 }, + [2] = { 49.1, 60.5, 11, 300 }, + [3] = { 55.2, 97.3, 14, 300 }, + [4] = { 46.1, 45.9, 15, 300 }, + [5] = { 29.9, 71.1, 16, 300 }, + [6] = { 74.1, 47.9, 17, 300 }, + [7] = { 44.3, 98.2, 28, 300 }, + [8] = { 79.9, 62.9, 28, 300 }, + [9] = { 33.8, 17.8, 28, 300 }, + [10] = { 81.1, 50.8, 36, 300 }, + [11] = { 62, 75, 38, 300 }, + [12] = { 35.1, 10.2, 45, 300 }, + [13] = { 14.5, 71.9, 47, 300 }, + [14] = { 90.1, 32.5, 85, 300 }, + [15] = { 21.5, 86.6, 139, 300 }, + [16] = { 42.1, 53.4, 267, 300 }, + [17] = { 47.8, 57.3, 406, 300 }, + [18] = { 37.2, 51.5, 406, 300 }, + [19] = { 36.5, 76.5, 1519, 300 }, + [20] = { 96.4, 15.6, 5179, 300 }, + [21] = { 36.9, 19.3, 5561, 300 }, + [22] = { 42.8, 67.9, 5581, 300 }, + [23] = { 30.3, 82.7, 5602, 300 }, + [24] = { 6.4, 25.4, 5602, 300 }, + }, + }, + [2004207] = { + ["coords"] = {}, + }, + [2004208] = { + ["coords"] = { + [1] = { 66.7, 24.3, 440, 300 }, + }, + }, + [2004209] = { + ["coords"] = {}, + }, + [2004210] = { + ["coords"] = { + [1] = { 61.8, 59.5, 1497, 300 }, + [2] = { 61.7, 59.3, 1497, 300 }, + [3] = { 61.8, 58.8, 1497, 300 }, + [4] = { 62.1, 58.7, 1497, 300 }, + }, + }, + [2004211] = { + ["coords"] = {}, + }, + [2004212] = { + ["coords"] = {}, + }, + [2004213] = { + ["coords"] = {}, + }, + [2004214] = { + ["coords"] = {}, + }, + [2004215] = { + ["coords"] = {}, + }, + [2004216] = { + ["coords"] = {}, + }, + [2004217] = { + ["coords"] = {}, + }, + [2004218] = { + ["coords"] = {}, + }, + [2004219] = { + ["coords"] = {}, + }, + [2004220] = { + ["coords"] = {}, + }, + [2004221] = { + ["coords"] = {}, + }, + [2004222] = { + ["coords"] = {}, + }, + [2004223] = { + ["coords"] = {}, + }, + [2004224] = { + ["coords"] = {}, + }, + [2004225] = { + ["coords"] = {}, + }, + [2004226] = { + ["coords"] = { + [1] = { 52.5, 70.3, 1637, 300 }, + }, + }, + [2004227] = { + ["coords"] = { + [1] = { 61.5, 24, 17, 300 }, + [2] = { 74.3, 43, 357, 300 }, + [3] = { 55.4, 56.5, 405, 300 }, + }, + }, + [2004228] = { + ["coords"] = { + [1] = { 61.5, 24.1, 17, 300 }, + [2] = { 50.8, 25, 45, 300 }, + [3] = { 74.3, 43.2, 357, 300 }, + [4] = { 55.4, 56.4, 405, 300 }, + [5] = { 58.1, 41.3, 409, 300 }, + }, + }, + [2004229] = { + ["coords"] = { + [1] = { 40.7, 68.4, 14, 300 }, + [2] = { 81.2, 60.7, 28, 300 }, + [3] = { 81.1, 60.5, 28, 300 }, + [4] = { 33.2, 17.7, 28, 300 }, + [5] = { 32.8, 17.6, 28, 300 }, + [6] = { 33.3, 17.5, 28, 300 }, + [7] = { 33, 17.1, 28, 300 }, + [8] = { 89.5, 32.4, 85, 300 }, + [9] = { 89.1, 32.4, 85, 300 }, + [10] = { 89.6, 32.3, 85, 300 }, + [11] = { 89.3, 31.9, 85, 300 }, + [12] = { 23, 84.2, 139, 300 }, + [13] = { 22.9, 84, 139, 300 }, + [14] = { 56.4, 53.6, 5601, 604800 }, + [15] = { 56.9, 53.5, 5601, 604800 }, + [16] = { 56.4, 53, 5601, 604800 }, + [17] = { 56.9, 52.8, 5601, 604800 }, + }, + }, + [2004230] = { + ["coords"] = {}, + }, + [2004231] = { + ["coords"] = {}, + }, + [2004232] = { + ["coords"] = { + [1] = { 78.9, 62.9, 28, 300 }, + [2] = { 20.5, 86.7, 139, 300 }, + [3] = { 68.1, 27, 1519, 300 }, + [4] = { 67.7, 26.3, 1519, 300 }, + [5] = { 82.6, 80.4, 5208, 300 }, + [6] = { 82.6, 78.9, 5208, 300 }, + [7] = { 84.4, 77.7, 5208, 300 }, + [8] = { 53, 91.9, 5581, 300 }, + [9] = { 52.8, 91.5, 5581, 300 }, + }, + }, + [2004233] = { + ["coords"] = { + [1] = { 4.5, 61.7, 85, 300 }, + [2] = { 4.8, 61.7, 85, 300 }, + [3] = { 66.6, 24.4, 440, 300 }, + [4] = { 66.2, 29.5, 1519, 300 }, + [5] = { 65.6, 28.4, 1519, 300 }, + [6] = { 67.2, 25.5, 1519, 300 }, + [7] = { 52, 93.2, 5581, 300 }, + [8] = { 51.7, 92.6, 5581, 300 }, + [9] = { 52.5, 91.1, 5581, 300 }, + }, + }, + [2004234] = { + ["coords"] = { + [1] = { 64.1, 15.7, 4, 300 }, + [2] = { 81.2, 71.9, 10, 300 }, + [3] = { 81.2, 71.7, 10, 300 }, + [4] = { 33.6, 49.1, 10, 300 }, + [5] = { 33.1, 48.8, 10, 300 }, + [6] = { 48.9, 60.9, 11, 300 }, + [7] = { 55.4, 97.4, 14, 300 }, + [8] = { 42.3, 68.1, 14, 300 }, + [9] = { 58.6, 27.4, 14, 300 }, + [10] = { 41.8, 74.2, 15, 300 }, + [11] = { 51.1, 37.8, 16, 300 }, + [12] = { 74.2, 47.9, 17, 300 }, + [13] = { 48.8, 9, 17, 300 }, + [14] = { 44.4, 98, 28, 300 }, + [15] = { 79.7, 61.4, 28, 300 }, + [16] = { 79.3, 61.1, 28, 300 }, + [17] = { 29.5, 44.7, 28, 300 }, + [18] = { 32.8, 17.3, 28, 300 }, + [19] = { 32.9, 17.2, 28, 300 }, + [20] = { 65.3, 12.6, 33, 300 }, + [21] = { 65.3, 12.3, 33, 300 }, + [22] = { 65.1, 12.3, 33, 300 }, + [23] = { 81.2, 50.6, 36, 300 }, + [24] = { 34.9, 10.5, 45, 300 }, + [25] = { 34.7, 10.1, 45, 300 }, + [26] = { 77, 81.6, 47, 300 }, + [27] = { 14.2, 72.1, 47, 300 }, + [28] = { 14.1, 71.8, 47, 300 }, + [29] = { 21.7, 69.3, 85, 300 }, + [30] = { 20.9, 69, 85, 300 }, + [31] = { 60, 68.3, 85, 300 }, + [32] = { 59.5, 68.3, 85, 300 }, + [33] = { 59.9, 68.3, 85, 300 }, + [34] = { 59.3, 67.7, 85, 300 }, + [35] = { 59.3, 67.4, 85, 300 }, + [36] = { 59.3, 67.3, 85, 300 }, + [37] = { 4.6, 62.1, 85, 300 }, + [38] = { 4.5, 62, 85, 300 }, + [39] = { 4.8, 61.9, 85, 300 }, + [40] = { 4.7, 61.8, 85, 300 }, + [41] = { 4.6, 61.8, 85, 300 }, + [42] = { 4.6, 61.7, 85, 300 }, + [43] = { 85.9, 58.2, 85, 300 }, + [44] = { 32.4, 47.9, 85, 300 }, + [45] = { 25.7, 40.3, 85, 300 }, + [46] = { 89.1, 32.1, 85, 300 }, + [47] = { 89.2, 32, 85, 300 }, + [48] = { 67.7, 83.7, 130, 300 }, + [49] = { 21.3, 85, 139, 300 }, + [50] = { 20.8, 84.6, 139, 300 }, + [51] = { 42.1, 53, 267, 300 }, + [52] = { 42.6, 52.4, 267, 300 }, + [53] = { 42.5, 51.8, 267, 300 }, + [54] = { 14.4, 50.4, 267, 300 }, + [55] = { 30.9, 50.6, 331, 300 }, + [56] = { 51.2, 62.3, 357, 300 }, + [57] = { 37.1, 51.6, 406, 300 }, + [58] = { 60.9, 44.7, 409, 300 }, + [59] = { 61.3, 44.6, 409, 300 }, + [60] = { 61.6, 44.4, 409, 300 }, + [61] = { 61.2, 44.4, 409, 300 }, + [62] = { 60.7, 44.3, 409, 300 }, + [63] = { 61.6, 43.8, 409, 300 }, + [64] = { 60.8, 43.8, 409, 300 }, + [65] = { 61.4, 43.7, 409, 300 }, + [66] = { 61.3, 43.7, 409, 300 }, + [67] = { 56.9, 43.7, 409, 300 }, + [68] = { 61.1, 43.6, 409, 300 }, + [69] = { 59, 43.4, 409, 300 }, + [70] = { 51.3, 29.5, 618, 300 }, + [71] = { 56.3, 51.4, 1497, 300 }, + [72] = { 56.3, 51.2, 1497, 300 }, + [73] = { 57.6, 15.3, 1497, 300 }, + [74] = { 55.2, 15.3, 1497, 300 }, + [75] = { 56.8, 15.2, 1497, 300 }, + [76] = { 54.3, 12.3, 1497, 300 }, + [77] = { 54.4, 10.8, 1497, 300 }, + [78] = { 54.4, 10.5, 1497, 300 }, + [79] = { 38.3, 61, 1519, 300 }, + [80] = { 59.9, 55.9, 1519, 300 }, + [81] = { 60, 55.8, 1519, 300 }, + [82] = { 21.2, 36.7, 1519, 300 }, + [83] = { 92.9, 67.5, 5086, 300 }, + [84] = { 53.6, 37.2, 5130, 300 }, + [85] = { 96.4, 15.2, 5179, 300 }, + [86] = { 96.8, 14.7, 5179, 300 }, + [87] = { 96.8, 14.2, 5179, 300 }, + [88] = { 72.2, 13, 5179, 300 }, + [89] = { 53.9, 74, 5561, 300 }, + [90] = { 54.6, 19, 5561, 300 }, + [91] = { 27.9, 97.1, 5581, 300 }, + [92] = { 50.2, 67.3, 5581, 300 }, + [93] = { 51.3, 48.7, 5581, 300 }, + [94] = { 51.3, 48.3, 5581, 300 }, + [95] = { 56.5, 52.9, 5601, 604800 }, + [96] = { 56.8, 52.9, 5601, 604800 }, + [97] = { 56.5, 52.8, 5601, 604800 }, + [98] = { 56.6, 52.8, 5601, 604800 }, + [99] = { 56.6, 52.7, 5601, 604800 }, + [100] = { 56.5, 52.7, 5601, 604800 }, + [101] = { 6.3, 25.7, 5602, 300 }, + }, + }, + [2004235] = { + ["coords"] = { + [1] = { 81.2, 71.8, 10, 300 }, + [2] = { 42.6, 93.1, 17, 300 }, + [3] = { 29.5, 44.8, 28, 300 }, + [4] = { 65.3, 12.5, 33, 300 }, + [5] = { 65.3, 12.4, 33, 300 }, + [6] = { 65.2, 12.3, 33, 300 }, + [7] = { 63.5, 10, 33, 300 }, + [8] = { 21.7, 69.3, 85, 300 }, + [9] = { 59.5, 68.3, 85, 300 }, + [10] = { 59.3, 67.6, 85, 300 }, + [11] = { 59.3, 67.2, 85, 300 }, + [12] = { 86, 58.3, 85, 300 }, + [13] = { 85.7, 57.5, 85, 300 }, + [14] = { 32.5, 48, 85, 300 }, + [15] = { 67.6, 82.9, 130, 300 }, + [16] = { 14.3, 49.4, 267, 300 }, + [17] = { 66.9, 47.1, 267, 300 }, + [18] = { 31, 50.6, 331, 300 }, + [19] = { 12.2, 35, 331, 300 }, + [20] = { 28.6, 24.2, 400, 300 }, + [21] = { 37.1, 51.6, 406, 300 }, + [22] = { 61.1, 44.4, 409, 300 }, + [23] = { 60.9, 43.8, 409, 300 }, + [24] = { 61.3, 43.7, 409, 300 }, + [25] = { 61.1, 43.6, 409, 300 }, + [26] = { 56.3, 51.3, 1497, 300 }, + [27] = { 73.7, 33.1, 1497, 300 }, + [28] = { 55.1, 15.1, 1497, 300 }, + [29] = { 54.3, 11.9, 1497, 300 }, + [30] = { 54.4, 10.2, 1497, 300 }, + [31] = { 59.9, 55.8, 1519, 300 }, + [32] = { 63.3, 33.7, 4012, 300 }, + [33] = { 93, 67.4, 5086, 300 }, + [34] = { 92.8, 67.3, 5086, 300 }, + [35] = { 72.1, 12.1, 5179, 300 }, + [36] = { 53.8, 74, 5561, 300 }, + [37] = { 53.7, 73.7, 5561, 300 }, + [38] = { 54.6, 19, 5561, 300 }, + [39] = { 50.2, 67.3, 5581, 300 }, + [40] = { 56.7, 52.9, 5601, 604800 }, + [41] = { 56.6, 52.8, 5601, 604800 }, + [42] = { 56.7, 52.7, 5601, 604800 }, + }, + }, + [2004236] = { + ["coords"] = { + [1] = { 64.3, 15.3, 4, 300 }, + [2] = { 81.2, 71.9, 10, 300 }, + [3] = { 33.1, 48.8, 10, 300 }, + [4] = { 33.3, 48.6, 10, 300 }, + [5] = { 34.1, 48.4, 10, 300 }, + [6] = { 32.2, 48.1, 10, 300 }, + [7] = { 48.9, 61.1, 11, 300 }, + [8] = { 48.9, 60.9, 11, 300 }, + [9] = { 39.1, 69.5, 12, 300 }, + [10] = { 71.1, 73.4, 15, 300 }, + [11] = { 30, 71.3, 16, 300 }, + [12] = { 61.1, 24.8, 17, 300 }, + [13] = { 34.2, 10.1, 17, 300 }, + [14] = { 48.7, 9.2, 17, 300 }, + [15] = { 48.8, 9, 17, 300 }, + [16] = { 79.4, 61.7, 28, 300 }, + [17] = { 79.7, 61.4, 28, 300 }, + [18] = { 80.4, 59.9, 28, 300 }, + [19] = { 29.5, 44.8, 28, 300 }, + [20] = { 65.3, 12.6, 33, 300 }, + [21] = { 65.2, 12.3, 33, 300 }, + [22] = { 74, 31.8, 45, 300 }, + [23] = { 16.9, 66.2, 46, 300 }, + [24] = { 21.7, 69.3, 85, 300 }, + [25] = { 60.1, 68.3, 85, 300 }, + [26] = { 60, 68.3, 85, 300 }, + [27] = { 59.8, 68.3, 85, 300 }, + [28] = { 59.3, 67.6, 85, 300 }, + [29] = { 59.3, 67.5, 85, 300 }, + [30] = { 59.3, 67.3, 85, 300 }, + [31] = { 86, 58.2, 85, 300 }, + [32] = { 85.7, 57.6, 85, 300 }, + [33] = { 32.4, 48, 85, 300 }, + [34] = { 25.6, 40.3, 85, 300 }, + [35] = { 67.4, 83.2, 130, 300 }, + [36] = { 21, 85.3, 139, 300 }, + [37] = { 21.3, 85, 139, 300 }, + [38] = { 22.1, 83.3, 139, 300 }, + [39] = { 42.1, 53.4, 267, 300 }, + [40] = { 42.1, 53, 267, 300 }, + [41] = { 42.1, 52.5, 267, 300 }, + [42] = { 42.6, 52.3, 267, 300 }, + [43] = { 14, 49.8, 267, 300 }, + [44] = { 31, 50.7, 331, 300 }, + [45] = { 51.2, 62.3, 357, 300 }, + [46] = { 79.6, 62.7, 406, 300 }, + [47] = { 47.8, 57.4, 406, 300 }, + [48] = { 37.1, 51.4, 406, 300 }, + [49] = { 60.7, 44.3, 409, 300 }, + [50] = { 61.5, 44.2, 409, 300 }, + [51] = { 60.8, 43.8, 409, 300 }, + [52] = { 61.1, 43.6, 409, 300 }, + [53] = { 59, 43.4, 409, 300 }, + [54] = { 58, 22.3, 440, 300 }, + [55] = { 49.9, 31.7, 618, 300 }, + [56] = { 51.4, 29.6, 618, 300 }, + [57] = { 58.1, 15.3, 1497, 300 }, + [58] = { 57.4, 15.3, 1497, 300 }, + [59] = { 56.5, 15.2, 1497, 300 }, + [60] = { 54.3, 12.1, 1497, 300 }, + [61] = { 54.4, 11.7, 1497, 300 }, + [62] = { 54.4, 10.6, 1497, 300 }, + [63] = { 37.1, 76.4, 1519, 300 }, + [64] = { 59.9, 55.8, 1519, 300 }, + [65] = { 60, 55.8, 1519, 300 }, + [66] = { 30, 14.8, 1519, 300 }, + [67] = { 63.2, 33.7, 4012, 300 }, + [68] = { 93, 67.6, 5086, 300 }, + [69] = { 93.2, 67.4, 5086, 300 }, + [70] = { 53.6, 37.2, 5130, 300 }, + [71] = { 96.4, 15.6, 5179, 300 }, + [72] = { 96.4, 15.2, 5179, 300 }, + [73] = { 96.4, 14.8, 5179, 300 }, + [74] = { 96.9, 14.6, 5179, 300 }, + [75] = { 71.8, 12.4, 5179, 300 }, + [76] = { 53.9, 73.9, 5561, 300 }, + [77] = { 53.7, 73.7, 5561, 300 }, + [78] = { 36.9, 18.9, 5561, 300 }, + [79] = { 93.2, 92.6, 5581, 300 }, + [80] = { 32.6, 85.3, 5581, 300 }, + [81] = { 51.3, 48.7, 5581, 300 }, + [82] = { 56.6, 52.9, 5601, 604800 }, + [83] = { 56.6, 52.8, 5601, 604800 }, + [84] = { 56.7, 52.8, 5601, 604800 }, + [85] = { 56.5, 52.7, 5601, 604800 }, + [86] = { 56.6, 52.7, 5601, 604800 }, + [87] = { 6.3, 25.9, 5602, 300 }, + [88] = { 6.3, 25.7, 5602, 300 }, + }, + }, + [2004237] = { + ["coords"] = { + [1] = { 54.6, 19, 5561, 300 }, + }, + }, + [2004238] = { + ["coords"] = { + [1] = { 58.7, 26.5, 14, 300 }, + [2] = { 59.9, 55.9, 1519, 300 }, + [3] = { 56.5, 52.8, 5601, 604800 }, + [4] = { 56.7, 52.7, 5601, 604800 }, + }, + }, + [2004239] = { + ["coords"] = { + [1] = { 55.4, 97.4, 14, 300 }, + [2] = { 58.7, 26.5, 14, 300 }, + [3] = { 58.2, 25.7, 14, 300 }, + [4] = { 74.2, 47.9, 17, 300 }, + [5] = { 62.8, 84.4, 5121, 300 }, + }, + }, + [2004240] = { + ["coords"] = { + [1] = { 81.2, 71.7, 10, 300 }, + [2] = { 33.1, 48.8, 10, 300 }, + [3] = { 58.7, 26.5, 14, 300 }, + [4] = { 79, 61.3, 28, 300 }, + [5] = { 20.6, 84.9, 139, 300 }, + [6] = { 58.1, 41.2, 409, 300 }, + [7] = { 58, 22.3, 440, 300 }, + [8] = { 51.5, 29.5, 618, 300 }, + [9] = { 56.5, 52.8, 5601, 604800 }, + }, + }, + [2004241] = { + ["coords"] = { + [1] = { 80.8, 60.9, 28, 300 }, + [2] = { 81, 60.7, 28, 300 }, + [3] = { 22.6, 84.4, 139, 300 }, + [4] = { 22.8, 84.2, 139, 300 }, + [5] = { 31.3, 90.5, 405, 300 }, + }, + }, + [2004242] = { + ["coords"] = { + [1] = { 37.5, 72.1, 14, 300 }, + [2] = { 37.9, 71.9, 14, 300 }, + [3] = { 64.8, 34.7, 17, 300 }, + [4] = { 65, 34.6, 17, 300 }, + [5] = { 64.7, 34.6, 17, 300 }, + [6] = { 64.7, 34.4, 17, 300 }, + [7] = { 11.7, 46.4, 47, 300 }, + [8] = { 96.6, 5.8, 267, 300 }, + }, + }, + [2004243] = { + ["coords"] = {}, + }, + [2004244] = { + ["coords"] = {}, + }, + [2004245] = { + ["coords"] = {}, + }, + [2004246] = { + ["coords"] = {}, + }, + [2004247] = { + ["coords"] = { + [1] = { 49.9, 50.2, 8, 300 }, + [2] = { 49.6, 50, 8, 300 }, + [3] = { 47.4, 49.6, 8, 300 }, + [4] = { 50.3, 49.5, 8, 300 }, + [5] = { 46.7, 48.9, 8, 300 }, + [6] = { 47.7, 48.7, 8, 300 }, + [7] = { 50.8, 48.6, 8, 300 }, + [8] = { 48.1, 48.2, 8, 300 }, + [9] = { 49.1, 48.2, 8, 300 }, + [10] = { 47.4, 47.9, 8, 300 }, + [11] = { 46.3, 47.5, 8, 300 }, + [12] = { 49.6, 47.2, 8, 300 }, + [13] = { 48.7, 47, 8, 300 }, + [14] = { 47.2, 46.9, 8, 300 }, + [15] = { 51.1, 46.9, 8, 300 }, + [16] = { 46.7, 46.8, 8, 300 }, + [17] = { 48.9, 46.3, 8, 300 }, + [18] = { 50.3, 45.7, 8, 300 }, + [19] = { 50, 44.6, 8, 300 }, + [20] = { 50.5, 44.2, 8, 300 }, + [21] = { 51.1, 42.6, 8, 300 }, + [22] = { 48.3, 62.3, 11, 300 }, + [23] = { 48.8, 62.2, 11, 300 }, + [24] = { 48.2, 61.8, 11, 300 }, + [25] = { 49.3, 60.9, 11, 300 }, + [26] = { 49.4, 60.3, 11, 300 }, + [27] = { 33.6, 52, 14, 300 }, + [28] = { 29.7, 75.6, 16, 300 }, + [29] = { 30.3, 75.3, 16, 300 }, + [30] = { 30.2, 75, 16, 300 }, + [31] = { 29.9, 74.8, 16, 300 }, + [32] = { 29.8, 73.8, 16, 300 }, + [33] = { 29.4, 71.3, 16, 300 }, + [34] = { 29.5, 71, 16, 300 }, + [35] = { 29.5, 68.8, 16, 300 }, + [36] = { 29.9, 68.4, 16, 300 }, + [37] = { 29.5, 68.1, 16, 300 }, + [38] = { 27.2, 67.8, 16, 300 }, + [39] = { 27.9, 67.7, 16, 300 }, + [40] = { 26.5, 67.4, 16, 300 }, + [41] = { 29.2, 67.3, 16, 300 }, + [42] = { 28.5, 67.1, 16, 300 }, + [43] = { 28.9, 66.8, 16, 300 }, + [44] = { 25.1, 65.1, 16, 300 }, + [45] = { 42.9, 94, 17, 300 }, + [46] = { 45.9, 85.6, 17, 300 }, + [47] = { 45.8, 85.5, 17, 300 }, + [48] = { 36.3, 44, 17, 300 }, + [49] = { 37.1, 34.8, 17, 300 }, + [50] = { 37, 34.8, 17, 300 }, + [51] = { 36.9, 34.1, 17, 300 }, + [52] = { 47.5, 29.7, 17, 300 }, + [53] = { 47.4, 29.7, 17, 300 }, + [54] = { 61.2, 24.6, 17, 300 }, + [55] = { 61.5, 24.5, 17, 300 }, + [56] = { 62.6, 24.3, 17, 300 }, + [57] = { 62.8, 24.2, 17, 300 }, + [58] = { 61.9, 24.1, 17, 300 }, + [59] = { 48.8, 10.1, 17, 300 }, + [60] = { 48.7, 10.1, 17, 300 }, + [61] = { 48.9, 10, 17, 300 }, + [62] = { 48.8, 9.9, 17, 300 }, + [63] = { 49.2, 9.9, 17, 300 }, + [64] = { 48.1, 8.8, 17, 300 }, + [65] = { 48.1, 8.7, 17, 300 }, + [66] = { 97.8, 81.3, 25, 300 }, + [67] = { 43.9, 98.7, 28, 300 }, + [68] = { 43.7, 98.2, 28, 300 }, + [69] = { 60, 84.3, 28, 300 }, + [70] = { 59.4, 83.7, 28, 300 }, + [71] = { 79.2, 66.4, 28, 300 }, + [72] = { 80.4, 66.4, 28, 300 }, + [73] = { 80.3, 66.1, 28, 300 }, + [74] = { 80.3, 63.9, 28, 300 }, + [75] = { 80.3, 60.4, 28, 300 }, + [76] = { 80.6, 60, 28, 300 }, + [77] = { 33.4, 22.1, 28, 300 }, + [78] = { 33.7, 22, 28, 0 }, + [79] = { 33.8, 20.9, 28, 0 }, + [80] = { 34.3, 19.6, 28, 0 }, + [81] = { 52.3, 19.4, 33, 300 }, + [82] = { 59.7, 14.9, 33, 300 }, + [83] = { 59.7, 14.4, 33, 300 }, + [84] = { 80.5, 51.6, 36, 300 }, + [85] = { 80.2, 50.8, 36, 300 }, + [86] = { 77.6, 77.1, 38, 25 }, + [87] = { 78.6, 76.2, 38, 25 }, + [88] = { 77.4, 76, 38, 25 }, + [89] = { 78.3, 74.7, 38, 25 }, + [90] = { 77, 74.3, 38, 25 }, + [91] = { 75.9, 74.1, 38, 25 }, + [92] = { 76, 74, 38, 25 }, + [93] = { 78, 73.6, 38, 25 }, + [94] = { 78.2, 73.5, 38, 25 }, + [95] = { 77.8, 73.5, 38, 25 }, + [96] = { 77.7, 73.4, 38, 25 }, + [97] = { 77, 73.3, 38, 25 }, + [98] = { 77.2, 73.3, 38, 25 }, + [99] = { 57.4, 31.9, 41, 300 }, + [100] = { 44.7, 30.2, 45, 300 }, + [101] = { 51.7, 25.2, 45, 300 }, + [102] = { 21.7, 69.4, 46, 300 }, + [103] = { 19.9, 67.4, 46, 300 }, + [104] = { 17.8, 66.9, 46, 300 }, + [105] = { 17.3, 66.7, 46, 300 }, + [106] = { 19.9, 66.2, 46, 300 }, + [107] = { 19.3, 66, 46, 300 }, + [108] = { 18, 66, 46, 300 }, + [109] = { 17, 65.7, 46, 300 }, + [110] = { 17.4, 65.1, 46, 300 }, + [111] = { 16.4, 64.6, 46, 300 }, + [112] = { 15.6, 63.9, 46, 300 }, + [113] = { 40.6, 34.7, 46, 300 }, + [114] = { 29.9, 85.9, 47, 300 }, + [115] = { 27.2, 46.8, 85, 300 }, + [116] = { 26.1, 46.7, 85, 300 }, + [117] = { 27.3, 46.4, 85, 300 }, + [118] = { 26.2, 46.1, 85, 300 }, + [119] = { 89.7, 36.7, 85, 300 }, + [120] = { 89.9, 36.6, 85, 0 }, + [121] = { 90.1, 35.5, 85, 0 }, + [122] = { 90.6, 34.3, 85, 0 }, + [123] = { 22.1, 90.5, 139, 300 }, + [124] = { 21.9, 90.2, 139, 300 }, + [125] = { 22, 87.8, 139, 300 }, + [126] = { 22, 83.8, 139, 300 }, + [127] = { 22.3, 83.5, 139, 300 }, + [128] = { 43, 98, 148, 300 }, + [129] = { 60.5, 31.7, 215, 300 }, + [130] = { 62, 13.6, 215, 300 }, + [131] = { 61.8, 13.5, 215, 300 }, + [132] = { 61.7, 12.3, 215, 300 }, + [133] = { 43.5, 54.5, 267, 300 }, + [134] = { 42.8, 53.6, 267, 300 }, + [135] = { 43.3, 53.4, 267, 300 }, + [136] = { 43.4, 53, 267, 300 }, + [137] = { 43, 52.3, 267, 300 }, + [138] = { 42.1, 51.8, 267, 300 }, + [139] = { 42.4, 50.8, 267, 300 }, + [140] = { 89.1, 59.6, 331, 300 }, + [141] = { 88.8, 59.5, 331, 300 }, + [142] = { 47.7, 53.3, 331, 300 }, + [143] = { 27.3, 16, 331, 300 }, + [144] = { 29.3, 26.2, 400, 300 }, + [145] = { 47.8, 57.3, 406, 300 }, + [146] = { 57.7, 46.5, 408, 300 }, + [147] = { 52.6, 52.3, 409, 300 }, + [148] = { 52, 51.7, 409, 300 }, + [149] = { 52.5, 51.6, 409, 300 }, + [150] = { 53.1, 50.4, 409, 300 }, + [151] = { 53, 49.9, 409, 300 }, + [152] = { 31.2, 37.4, 440, 300 }, + [153] = { 30.9, 37.1, 440, 300 }, + [154] = { 31.4, 36.6, 440, 300 }, + [155] = { 31.6, 36, 440, 300 }, + [156] = { 31.8, 35.8, 440, 300 }, + [157] = { 74.8, 67.5, 490, 300 }, + [158] = { 75.6, 67, 490, 300 }, + [159] = { 76.4, 66.4, 490, 300 }, + [160] = { 78.4, 66, 490, 300 }, + [161] = { 77.9, 65.5, 490, 300 }, + [162] = { 78.9, 64.5, 490, 300 }, + [163] = { 79.3, 63.4, 490, 300 }, + [164] = { 79.7, 63.1, 490, 300 }, + [165] = { 97.6, 16.5, 5179, 300 }, + [166] = { 97, 15.7, 5179, 300 }, + [167] = { 97.4, 15.6, 5179, 300 }, + [168] = { 97.6, 15.2, 5179, 300 }, + [169] = { 97.1, 14.6, 5179, 300 }, + [170] = { 96.4, 14.2, 5179, 300 }, + [171] = { 96.6, 13.3, 5179, 300 }, + [172] = { 97.5, 95.4, 5581, 300 }, + [173] = { 95.9, 93.7, 5581, 300 }, + [174] = { 94, 93.2, 5581, 300 }, + [175] = { 93.5, 93, 5581, 300 }, + [176] = { 95.9, 92.5, 5581, 300 }, + [177] = { 95.3, 92.3, 5581, 300 }, + [178] = { 94.2, 92.3, 5581, 300 }, + [179] = { 93.3, 92.1, 5581, 300 }, + [180] = { 93.7, 91.5, 5581, 300 }, + [181] = { 92.7, 91.1, 5581, 300 }, + [182] = { 92, 90.5, 5581, 300 }, + [183] = { 38.3, 83.7, 5602, 25 }, + [184] = { 38.8, 83.3, 5602, 25 }, + [185] = { 38.2, 83.2, 5602, 25 }, + [186] = { 38.7, 82.5, 5602, 25 }, + [187] = { 38, 82.3, 5602, 25 }, + [188] = { 37.4, 82.2, 5602, 25 }, + [189] = { 37.5, 82.1, 5602, 25 }, + [190] = { 38.5, 81.9, 5602, 25 }, + [191] = { 38.6, 81.9, 5602, 25 }, + [192] = { 38.4, 81.9, 5602, 25 }, + [193] = { 38.3, 81.8, 5602, 25 }, + [194] = { 38, 81.8, 5602, 25 }, + [195] = { 38.1, 81.8, 5602, 25 }, + [196] = { 5.8, 26.8, 5602, 300 }, + [197] = { 6.2, 26.7, 5602, 300 }, + [198] = { 5.8, 26.5, 5602, 300 }, + [199] = { 6.6, 25.8, 5602, 300 }, + [200] = { 6.7, 25.3, 5602, 300 }, + }, + }, + [2004248] = { + ["coords"] = {}, + }, + [2004249] = { + ["coords"] = { + [1] = { 4.6, 62.2, 85, 300 }, + [2] = { 4.5, 61.9, 85, 300 }, + }, + }, + [2004250] = { + ["coords"] = {}, + }, + [2004251] = { + ["coords"] = {}, + }, + [2004252] = { + ["coords"] = {}, + }, + [2004253] = { + ["coords"] = {}, + }, + [2004254] = { + ["coords"] = {}, + }, + [2004255] = { + ["coords"] = {}, + }, + [2004256] = { + ["coords"] = {}, + }, + [2004257] = { + ["coords"] = {}, + }, + [2004258] = { + ["coords"] = {}, + }, + [2004259] = { + ["coords"] = {}, + }, + [2004260] = { + ["coords"] = { + [1] = { 30.5, 55.5, 141, 300 }, + [2] = { 30.5, 55.2, 141, 300 }, + [3] = { 64.1, 41.2, 1657, 300 }, + [4] = { 64, 39.7, 1657, 300 }, + }, + }, + [2004261] = { + ["coords"] = { + [1] = { 69.2, 31.6, 876, 300 }, + }, + }, + [2004262] = { + ["coords"] = { + [1] = { 37.5, 72.3, 14, 300 }, + [2] = { 64.8, 34.8, 17, 300 }, + [3] = { 30.5, 55.7, 141, 300 }, + [4] = { 30.5, 55, 141, 300 }, + [5] = { 64.1, 42.4, 1657, 300 }, + [6] = { 64, 38.6, 1657, 300 }, + }, + }, + [2004263] = { + ["coords"] = {}, + }, + [2004264] = { + ["coords"] = {}, + }, + [2004265] = { + ["coords"] = {}, + }, + [2004266] = { + ["coords"] = {}, + }, + [2004267] = { + ["coords"] = {}, + }, + [2004268] = { + ["coords"] = {}, + }, + [2004269] = { + ["coords"] = {}, + }, + [2004270] = { + ["coords"] = {}, + }, + [2004271] = { + ["coords"] = {}, + }, + [2004272] = { + ["coords"] = { + [1] = { 80.7, 61.2, 28, 300 }, + [2] = { 89.5, 23, 46, 300 }, + [3] = { 21.9, 68.3, 85, 300 }, + [4] = { 22.4, 84.8, 139, 300 }, + }, + }, + [2004273] = { + ["coords"] = { + [1] = { 80.7, 61.3, 28, 300 }, + [2] = { 22.4, 84.9, 139, 300 }, + }, + }, + [2004274] = { + ["coords"] = { + [1] = { 43.3, 80.4, 33, 300 }, + [2] = { 55, 49.5, 876, 300 }, + [3] = { 54.3, 49.5, 876, 300 }, + }, + }, + [2004275] = { + ["coords"] = {}, + }, + [2004276] = { + ["coords"] = {}, + }, + [2004277] = { + ["coords"] = { + [1] = { 98, 82, 25, 300 }, + [2] = { 40.7, 34.9, 46, 300 }, + [3] = { 89.3, 22.3, 46, 300 }, + [4] = { 79, 56.3, 85, 300 }, + }, + }, + [2004278] = { + ["coords"] = { + [1] = { 80.6, 61.3, 28, 300 }, + [2] = { 22.3, 84.8, 139, 300 }, + }, + }, + [2004279] = { + ["coords"] = {}, + }, + [2004280] = { + ["coords"] = { + [1] = { 45.9, 43.7, 5179, 300 }, + }, + }, + [2004281] = { + ["coords"] = { + [1] = { 97.9, 82.4, 25, 300 }, + [2] = { 97.7, 82, 25, 300 }, + [3] = { 98.1, 81.8, 25, 300 }, + [4] = { 97.8, 81.8, 25, 300 }, + [5] = { 98, 81.6, 25, 300 }, + [6] = { 40.7, 35, 46, 300 }, + [7] = { 40.6, 34.9, 46, 300 }, + [8] = { 40.7, 34.8, 46, 300 }, + [9] = { 40.6, 34.8, 46, 300 }, + [10] = { 45.9, 43.7, 5179, 300 }, + }, + }, + [2004282] = { + ["coords"] = {}, + }, + [2004283] = { + ["coords"] = {}, + }, + [2004284] = { + ["coords"] = {}, + }, + [2004285] = { + ["coords"] = { + [1] = { 51.4, 27.5, 11, 0 }, + [2] = { 8.2, 0, 5602, 0 }, + }, + }, + [2004286] = { + ["coords"] = { + [1] = { 35, 48, 10, 300 }, + [2] = { 51.5, 27.5, 11, 0 }, + [3] = { 8.3, 0, 5602, 0 }, + }, + }, + [2004287] = { + ["coords"] = { + [1] = { 33.1, 49.1, 10, 300 }, + }, + }, + [2004288] = { + ["coords"] = {}, + }, + [2004289] = { + ["coords"] = {}, + }, + [2004290] = { + ["coords"] = { + [1] = { 29.7, 72.3, 85, 300 }, + [2] = { 30.8, 38.4, 440, 300 }, + [3] = { 77.7, 67.9, 490, 300 }, + [4] = { 51, 34.4, 5121, 300 }, + }, + }, + [2004291] = { + ["coords"] = { + [1] = { 63, 38, 17, 300 }, + }, + }, + [2004292] = { + ["coords"] = { + [1] = { 62.5, 38.3, 17, 300 }, + }, + }, + [2004293] = { + ["coords"] = { + [1] = { 37.9, 72.1, 14, 300 }, + [2] = { 62.6, 38.4, 17, 300 }, + [3] = { 62.9, 38.1, 17, 300 }, + [4] = { 65, 34.7, 17, 300 }, + }, + }, + [2004294] = { + ["coords"] = { + [1] = { 62.7, 38.2, 17, 300 }, + [2] = { 62.8, 38.1, 17, 300 }, + }, + }, + [2004295] = { + ["coords"] = { + [1] = { 62, 39, 17, 300 }, + }, + }, + [2004296] = { + ["coords"] = { + [1] = { 62, 38.1, 17, 300 }, + }, + }, + [2004297] = { + ["coords"] = {}, + }, + [2004298] = { + ["coords"] = {}, + }, + [2004299] = { + ["coords"] = {}, + }, + [2004300] = { + ["coords"] = {}, + }, + [2004301] = { + ["coords"] = {}, + }, + [2004302] = { + ["coords"] = {}, + }, + [2004303] = { + ["coords"] = {}, + }, + [2004304] = { + ["coords"] = {}, + }, + [2004305] = { + ["coords"] = {}, + }, + [2004306] = { + ["coords"] = {}, + }, + [2004307] = { + ["coords"] = {}, + }, + [2004308] = { + ["coords"] = {}, + }, + [2004309] = { + ["coords"] = {}, + }, + [2004310] = { + ["coords"] = { + [1] = { 27.2, 64.8, 141, 300 }, + [2] = { 26.8, 64.8, 141, 300 }, + [3] = { 28.1, 58.1, 141, 300 }, + [4] = { 44.4, 73.4, 331, 300 }, + [5] = { 21.3, 54.6, 331, 300 }, + [6] = { 21.8, 54.6, 331, 300 }, + [7] = { 21.1, 54.1, 331, 300 }, + [8] = { 20.9, 53.8, 331, 300 }, + [9] = { 21, 53.1, 331, 300 }, + [10] = { 79.9, 39.7, 406, 300 }, + [11] = { 57.8, 21.6, 406, 300 }, + [12] = { 58.3, 21.6, 406, 300 }, + [13] = { 57.6, 21.1, 406, 300 }, + [14] = { 57.4, 20.9, 406, 300 }, + [15] = { 57.5, 20.1, 406, 300 }, + [16] = { 48, 86.1, 1657, 300 }, + [17] = { 46, 85.7, 1657, 300 }, + [18] = { 52.5, 53.6, 1657, 300 }, + }, + }, + [2004311] = { + ["coords"] = {}, + }, + [2004312] = { + ["coords"] = {}, + }, + [2004313] = { + ["coords"] = {}, + }, + [2004314] = { + ["coords"] = {}, + }, + [2004315] = { + ["coords"] = {}, + }, + [2004316] = { + ["coords"] = {}, + }, + [2004317] = { + ["coords"] = { + [1] = { 87.3, 71, 616, 300 }, + [2] = { 50.2, 83, 618, 300 }, + }, + }, + [2004318] = { + ["coords"] = {}, + }, + [2004319] = { + ["coords"] = {}, + }, + [2004320] = { + ["coords"] = {}, + }, + [2004321] = { + ["coords"] = {}, + }, + [2004322] = { + ["coords"] = { + [1] = { 26.4, 26.9, 5204, 300 }, + }, + }, + [2004323] = { + ["coords"] = { + [1] = { 23.6, 19.9, 5204, 300 }, + }, + }, + [2004324] = { + ["coords"] = {}, + }, + [2004325] = { + ["coords"] = {}, + }, + [2004326] = { + ["coords"] = { + [1] = { 37.5, 40.3, 5087, 300 }, + [2] = { 34.3, 36.5, 5087, 300 }, + [3] = { 40.4, 36.5, 5087, 300 }, + }, + }, + [2004327] = { + ["coords"] = {}, + }, + [2004328] = { + ["coords"] = {}, + }, + [2004329] = { + ["coords"] = {}, + }, + [2004330] = { + ["coords"] = {}, + }, + [2004331] = { + ["coords"] = {}, + }, + [2004332] = { + ["coords"] = {}, + }, + [2004333] = { + ["coords"] = {}, + }, + [2004334] = { + ["coords"] = { + [1] = { 51.3, 27.3, 11, 0 }, + [2] = { 79.6, 58.9, 38, 25 }, + [3] = { 75, 65, 5087, 300 }, + [4] = { 77.2, 60.1, 5087, 300 }, + [5] = { 39.3, 74.4, 5602, 25 }, + }, + }, + [2004335] = { + ["coords"] = {}, + }, + [2004336] = { + ["coords"] = {}, + }, + [2004337] = { + ["coords"] = { + [1] = { 71.3, 29.8, 28, 300 }, + [2] = { 71.3, 29.7, 28, 300 }, + [3] = { 70.9, 29.7, 28, 300 }, + [4] = { 12, 49.9, 139, 300 }, + [5] = { 12, 49.8, 139, 300 }, + [6] = { 11.6, 49.8, 139, 300 }, + [7] = { 11.5, 49.8, 139, 300 }, + }, + }, + [2004338] = { + ["coords"] = {}, + }, + [2004339] = { + ["coords"] = {}, + }, + [2004340] = { + ["coords"] = {}, + }, + [2004341] = { + ["coords"] = { + [1] = { 46.5, 38.4, 5087, 300 }, + }, + }, + [2004342] = { + ["coords"] = {}, + }, + [2004343] = { + ["coords"] = {}, + }, + [2004344] = { + ["coords"] = {}, + }, + [2004345] = { + ["coords"] = {}, + }, + [2004346] = { + ["coords"] = {}, + }, + [2004347] = { + ["coords"] = { + [1] = { 64, 62.3, 5087, 300 }, + }, + }, + [2004348] = { + ["coords"] = {}, + }, + [2004349] = { + ["coords"] = {}, + }, + [2004350] = { + ["coords"] = {}, + }, + [2004351] = { + ["coords"] = { + [1] = { 65.1, 12.6, 33, 300 }, + [2] = { 46.5, 38.6, 5087, 300 }, + }, + }, + [2004352] = { + ["coords"] = { + [1] = { 42.5, 51.1, 267, 300 }, + [2] = { 96.8, 13.5, 5179, 300 }, + }, + }, + [2004353] = { + ["coords"] = {}, + }, + [2004354] = { + ["coords"] = {}, + }, + [2004355] = { + ["coords"] = { + [1] = { 75.4, 65.3, 5087, 300 }, + [2] = { 77.7, 65.1, 5087, 300 }, + [3] = { 71.5, 64.3, 5087, 300 }, + [4] = { 71.3, 60, 5087, 300 }, + [5] = { 77.8, 59.4, 5087, 300 }, + [6] = { 74.9, 59.4, 5087, 300 }, + }, + }, + [2004356] = { + ["coords"] = {}, + }, + [2004357] = { + ["coords"] = {}, + }, + [2004358] = { + ["coords"] = {}, + }, + [2004359] = { + ["coords"] = {}, + }, + [2004360] = { + ["coords"] = {}, + }, + [2004361] = { + ["coords"] = { + [1] = { 46.6, 77.2, 5087, 300 }, + }, + }, + [2004362] = { + ["coords"] = {}, + }, + [2004363] = { + ["coords"] = {}, + }, + [2004364] = { + ["coords"] = {}, + }, + [2004365] = { + ["coords"] = {}, + }, + [2004366] = { + ["coords"] = { + [1] = { 64, 62.4, 5087, 300 }, + }, + }, + [2004367] = { + ["coords"] = {}, + }, + [2004368] = { + ["coords"] = { + [1] = { 33, 76.2, 5179, 300 }, + }, + }, + [2004369] = { + ["coords"] = { + [1] = { 30.2, 72.5, 85, 300 }, + [2] = { 33.1, 76.2, 5179, 300 }, + }, + }, + [2004370] = { + ["coords"] = {}, + }, + [2004371] = { + ["coords"] = {}, + }, + [2004372] = { + ["coords"] = {}, + }, + [2004373] = { + ["coords"] = { + [1] = { 69.4, 46.8, 5087, 300 }, + [2] = { 75.9, 83.1, 5208, 300 }, + }, + }, + [2004374] = { + ["coords"] = { + [1] = { 67.1, 45.6, 5087, 300 }, + [2] = { 75.8, 83.4, 5208, 300 }, + }, + }, + [2004375] = { + ["coords"] = { + [1] = { 71.8, 45.7, 5087, 300 }, + }, + }, + [2004376] = { + ["coords"] = { + [1] = { 69.8, 40.1, 5087, 300 }, + }, + }, + [2004377] = { + ["coords"] = { + [1] = { 70.3, 45.6, 5087, 300 }, + }, + }, + [2004378] = { + ["coords"] = { + [1] = { 70.1, 41.1, 5087, 300 }, + }, + }, + [2004379] = { + ["coords"] = {}, + }, + [2004380] = { + ["coords"] = { + [1] = { 20.6, 48.9, 267, 300 }, + [2] = { 77.6, 11.6, 5179, 300 }, + }, + }, + [2004381] = { + ["coords"] = {}, + }, + [2004382] = { + ["coords"] = { + [1] = { 55.6, 17.4, 33, 300 }, + [2] = { 30.1, 71.8, 85, 300 }, + [3] = { 66.7, 46.9, 267, 300 }, + }, + }, + [2004383] = { + ["coords"] = { + [1] = { 39.8, 39.1, 8, 300 }, + [2] = { 38.1, 62, 5561, 300 }, + }, + }, + [2004384] = { + ["coords"] = { + [1] = { 28.9, 43.5, 85, 300 }, + }, + }, + [2004385] = { + ["coords"] = {}, + }, + [2004386] = { + ["coords"] = { + [1] = { 55.6, 17.4, 33, 300 }, + }, + }, + [2004387] = { + ["coords"] = { + [1] = { 66.4, 47.2, 267, 300 }, + }, + }, + [2004388] = { + ["coords"] = {}, + }, + [2004389] = { + ["coords"] = {}, + }, + [2004390] = { + ["coords"] = { + [1] = { 84.7, 79.7, 12, 300 }, + [2] = { 17.4, 49.6, 85, 300 }, + [3] = { 42.4, 51.8, 267, 300 }, + [4] = { 96.6, 14.1, 5179, 300 }, + }, + }, + [2004391] = { + ["coords"] = { + [1] = { 84.6, 79.7, 12, 300 }, + [2] = { 84.7, 79.7, 12, 300 }, + [3] = { 19.9, 66.7, 46, 300 }, + [4] = { 42.3, 51.7, 267, 300 }, + [5] = { 96.6, 14.1, 5179, 300 }, + [6] = { 95.9, 93.1, 5581, 300 }, + }, + }, + [2004392] = { + ["coords"] = { + [1] = { 31.8, 48.4, 33, 300 }, + [2] = { 32.7, 28.3, 33, 300 }, + [3] = { 19.9, 66.7, 46, 300 }, + [4] = { 95.9, 93.1, 5581, 300 }, + }, + }, + [2004393] = { + ["coords"] = { + [1] = { 41.3, 18.1, 14, 300 }, + [2] = { 98.3, 79.2, 25, 300 }, + [3] = { 32.6, 28.4, 33, 300 }, + [4] = { 40.8, 34.2, 46, 300 }, + [5] = { 89.2, 22.5, 46, 300 }, + [6] = { 73, 58, 331, 300 }, + }, + }, + [2004394] = { + ["coords"] = { + [1] = { 77.1, 56.5, 15, 300 }, + [2] = { 77.2, 56.4, 15, 300 }, + [3] = { 77.3, 56.3, 15, 300 }, + [4] = { 37.1, 34.5, 17, 300 }, + [5] = { 37, 34.3, 17, 300 }, + [6] = { 37, 34.2, 17, 300 }, + [7] = { 62, 13, 215, 300 }, + [8] = { 61.8, 12.6, 215, 300 }, + [9] = { 61.8, 12.5, 215, 300 }, + }, + }, + [2004395] = { + ["coords"] = {}, + }, + [2004396] = { + ["coords"] = {}, + }, + [2004397] = { + ["coords"] = {}, + }, + [2004398] = { + ["coords"] = {}, + }, + [2004399] = { + ["coords"] = {}, + }, + [2004400] = { + ["coords"] = {}, + }, + [2004401] = { + ["coords"] = { + [1] = { 41.9, 79.8, 1519, 300 }, + }, + }, + [2004402] = { + ["coords"] = {}, + }, + [2004403] = { + ["coords"] = {}, + }, + [2004404] = { + ["coords"] = {}, + }, + [2004405] = { + ["coords"] = {}, + }, + [2004406] = { + ["coords"] = {}, + }, + [2004407] = { + ["coords"] = {}, + }, + [2004408] = { + ["coords"] = {}, + }, + [2004409] = { + ["coords"] = {}, + }, + [2004410] = { + ["coords"] = {}, + }, + [2004411] = { + ["coords"] = {}, + }, + [2004412] = { + ["coords"] = {}, + }, + [2004413] = { + ["coords"] = {}, + }, + [2004414] = { + ["coords"] = {}, + }, + [2004415] = { + ["coords"] = {}, + }, + [2004416] = { + ["coords"] = { + [1] = { 30.4, 72.2, 85, 300 }, + [2] = { 30.4, 72.1, 85, 300 }, + [3] = { 60.8, 53.7, 85, 300 }, + [4] = { 60.6, 23.8, 361, 300 }, + [5] = { 67.7, 27.6, 1519, 300 }, + [6] = { 68.2, 26.8, 1637, 25 }, + [7] = { 44.5, 44.5, 5179, 300 }, + [8] = { 45.2, 44.2, 5179, 300 }, + [9] = { 52.8, 92.2, 5581, 300 }, + }, + }, + [2004417] = { + ["coords"] = { + [1] = { 29, 73.5, 16, 300 }, + [2] = { 80.9, 63.5, 28, 300 }, + [3] = { 80.4, 61.3, 28, 300 }, + [4] = { 80.5, 61.3, 28, 300 }, + [5] = { 80.5, 61.2, 28, 300 }, + [6] = { 80.6, 61.2, 28, 300 }, + [7] = { 80.4, 61.2, 28, 300 }, + [8] = { 80.4, 61.1, 28, 300 }, + [9] = { 80.5, 61.1, 28, 300 }, + [10] = { 80.5, 61, 28, 300 }, + [11] = { 81.1, 60.7, 28, 300 }, + [12] = { 81.1, 60.6, 28, 300 }, + [13] = { 43.3, 80.3, 33, 300 }, + [14] = { 30.2, 72.5, 85, 300 }, + [15] = { 29.7, 72.5, 85, 300 }, + [16] = { 30.4, 72.2, 85, 300 }, + [17] = { 30.3, 71.8, 85, 300 }, + [18] = { 30.2, 71.8, 85, 300 }, + [19] = { 60, 68.3, 85, 300 }, + [20] = { 60.2, 67.9, 85, 300 }, + [21] = { 59.4, 67.5, 85, 300 }, + [22] = { 22.7, 87.3, 139, 300 }, + [23] = { 22.1, 84.9, 139, 300 }, + [24] = { 22.1, 84.8, 139, 300 }, + [25] = { 22.2, 84.8, 139, 300 }, + [26] = { 22.3, 84.7, 139, 300 }, + [27] = { 22, 84.7, 139, 300 }, + [28] = { 22.1, 84.7, 139, 300 }, + [29] = { 22.1, 84.6, 139, 300 }, + [30] = { 22.2, 84.6, 139, 300 }, + [31] = { 22.9, 84.2, 139, 300 }, + [32] = { 22.9, 84.1, 139, 300 }, + [33] = { 60.8, 23.8, 361, 300 }, + [34] = { 60.9, 23.6, 361, 300 }, + [35] = { 57.3, 15.2, 1497, 300 }, + [36] = { 58.4, 13.6, 1497, 300 }, + [37] = { 54.4, 11.5, 1497, 300 }, + [38] = { 50.7, 70.3, 1637, 300 }, + [39] = { 51.3, 34.2, 5121, 300 }, + [40] = { 33, 76.3, 5179, 300 }, + [41] = { 33, 76.2, 5179, 300 }, + [42] = { 33.1, 76.2, 5179, 300 }, + [43] = { 83.7, 77, 5208, 300 }, + [44] = { 39.5, 44.1, 5208, 300 }, + [45] = { 54.6, 19, 5561, 300 }, + }, + }, + [2004418] = { + ["coords"] = {}, + }, + [2004419] = { + ["coords"] = { + [1] = { 45.8, 51.2, 5024, 300 }, + }, + }, + [2004420] = { + ["coords"] = {}, + }, + [2004421] = { + ["coords"] = {}, + }, + [2004422] = { + ["coords"] = {}, + }, + [2004423] = { + ["coords"] = {}, + }, + [2004424] = { + ["coords"] = {}, + }, + [2004425] = { + ["coords"] = {}, + }, + [2004426] = { + ["coords"] = {}, + }, + [2004427] = { + ["coords"] = {}, + }, + [2004428] = { + ["coords"] = {}, + }, + [2004429] = { + ["coords"] = { + [1] = { 43.2, 80.3, 33, 300 }, + [2] = { 60.5, 14.6, 33, 300 }, + [3] = { 31, 38.1, 440, 300 }, + [4] = { 78.2, 67.3, 490, 300 }, + [5] = { 49.5, 32.3, 618, 300 }, + [6] = { 55, 52.6, 876, 300 }, + [7] = { 38.6, 69.3, 5561, 300 }, + }, + }, + [2004430] = { + ["coords"] = { + [1] = { 27.8, 77.2, 33, 300 }, + [2] = { 60.5, 14.6, 33, 300 }, + [3] = { 31.1, 38.3, 440, 300 }, + [4] = { 31.1, 38.2, 440, 300 }, + [5] = { 78.4, 67.8, 490, 300 }, + [6] = { 78.3, 67.5, 490, 300 }, + [7] = { 49.5, 32.4, 618, 300 }, + [8] = { 36.8, 18.6, 5561, 300 }, + }, + }, + [2004431] = { + ["coords"] = { + [1] = { 23.2, 29.3, 1, 300 }, + [2] = { 34.2, 49, 10, 300 }, + [3] = { 43.2, 80, 33, 300 }, + [4] = { 60.5, 14.7, 33, 300 }, + [5] = { 49.3, 32.5, 618, 300 }, + [6] = { 49.3, 32.3, 618, 300 }, + [7] = { 64.4, 8.5, 721, 300 }, + [8] = { 68.4, 25.5, 1637, 25 }, + [9] = { 36.8, 18.6, 5561, 300 }, + }, + }, + [2004432] = { + ["coords"] = {}, + }, + [2004433] = { + ["coords"] = {}, + }, + [2004434] = { + ["coords"] = { + [1] = { 44.5, 15, 14, 300 }, + [2] = { 75.6, 49.5, 17, 300 }, + [3] = { 16.9, 65.7, 46, 300 }, + [4] = { 73, 56.9, 331, 300 }, + [5] = { 93.2, 92.1, 5581, 300 }, + }, + }, + [2004435] = { + ["coords"] = { + [1] = { 21.8, 68, 85, 300 }, + [2] = { 61.5, 43.5, 409, 300 }, + [3] = { 61.9, 58.3, 1497, 300 }, + [4] = { 84.5, 78.3, 5208, 300 }, + }, + }, + [2004436] = { + ["coords"] = { + [1] = { 39.3, 11.4, 490, 300 }, + [2] = { 39.3, 11.3, 490, 300 }, + }, + }, + [2004437] = { + ["coords"] = { + [1] = { 38.5, 11, 490, 300 }, + }, + }, + [2004438] = { + ["coords"] = {}, + }, + [2004439] = { + ["coords"] = {}, + }, + [2004440] = { + ["coords"] = {}, + }, + [2004441] = { + ["coords"] = {}, + }, + [2004442] = { + ["coords"] = {}, + }, + [2004443] = { + ["coords"] = {}, + }, + [2004444] = { + ["coords"] = {}, + }, + [2004445] = { + ["coords"] = { + [1] = { 43.3, 60.1, 2040, 300 }, + [2] = { 58.4, 30.6, 5225, 300 }, + }, + }, + [2004446] = { + ["coords"] = {}, + }, + [2004447] = { + ["coords"] = { + [1] = { 49.1, 60.5, 11, 300 }, + [2] = { 61.6, 23.4, 17, 300 }, + [3] = { 21.8, 68.1, 85, 300 }, + [4] = { 42, 53.3, 267, 300 }, + [5] = { 96.3, 15.5, 5179, 300 }, + [6] = { 6.4, 25.4, 5602, 300 }, + }, + }, + [2004448] = { + ["coords"] = {}, + }, + [2004449] = { + ["coords"] = {}, + }, + [2004450] = { + ["coords"] = {}, + }, + [2004451] = { + ["coords"] = {}, + }, + [2004452] = { + ["coords"] = {}, + }, + [2004453] = { + ["coords"] = {}, + }, + [2004454] = { + ["coords"] = {}, + }, + [2004455] = { + ["coords"] = { + [1] = { 43.6, 17.1, 357, 25 }, + [2] = { 59, 55.5, 876, 300 }, + }, + }, + [2004456] = { + ["coords"] = { + [1] = { 61.2, 36.9, 618, 300 }, + }, + }, + [2004457] = { + ["coords"] = {}, + }, + [2004458] = { + ["coords"] = {}, + }, + [2004459] = { + ["coords"] = {}, + }, + [2004460] = { + ["coords"] = { + [1] = { 11.9, 53.2, 85, 300 }, + [2] = { 42.2, 10.5, 130, 300 }, + [3] = { 24.6, 71.9, 440, 300 }, + [4] = { 59, 54, 1497, 300 }, + [5] = { 72.4, 53.3, 1497, 300 }, + [6] = { 71.3, 46.6, 1497, 300 }, + [7] = { 33.1, 76, 5179, 300 }, + [8] = { 84.5, 77.8, 5208, 300 }, + }, + }, + [2004461] = { + ["coords"] = { + [1] = { 48.6, 83, 17, 300 }, + [2] = { 78.8, 62.2, 28, 25 }, + [3] = { 20.3, 85.9, 139, 25 }, + [4] = { 43.7, 17.3, 357, 25 }, + [5] = { 83.5, 54.8, 400, 25 }, + [6] = { 67.5, 26.7, 440, 300 }, + [7] = { 61.2, 36.9, 618, 300 }, + [8] = { 61.6, 71.1, 1519, 300 }, + }, + }, + [2004462] = { + ["coords"] = { + [1] = { 12, 53.3, 85, 300 }, + [2] = { 42, 10.7, 130, 300 }, + [3] = { 42.2, 10.5, 130, 300 }, + [4] = { 61.5, 43.9, 409, 300 }, + [5] = { 24.6, 71.9, 440, 300 }, + [6] = { 61.1, 58.3, 1497, 300 }, + [7] = { 71.6, 47.5, 1497, 300 }, + [8] = { 41.8, 67.1, 1519, 300 }, + [9] = { 41.7, 67.1, 1519, 300 }, + [10] = { 61, 64.3, 1519, 300 }, + [11] = { 42, 61.4, 1637, 300 }, + }, + }, + [2004463] = { + ["coords"] = { + [1] = { 43.4, 17.1, 357, 25 }, + [2] = { 41.5, 67.8, 1519, 300 }, + }, + }, + [2004464] = { + ["coords"] = {}, + }, + [2004465] = { + ["coords"] = {}, + }, + [2004466] = { + ["coords"] = {}, + }, + [2004467] = { + ["coords"] = {}, + }, + [2004468] = { + ["coords"] = {}, + }, + [2004469] = { + ["coords"] = {}, + }, + [2004470] = { + ["coords"] = {}, + }, + [2004471] = { + ["coords"] = {}, + }, + [2004472] = { + ["coords"] = {}, + }, + [2004473] = { + ["coords"] = {}, + }, + [2004474] = { + ["coords"] = {}, + }, + [2004475] = { + ["coords"] = {}, + }, + [2004476] = { + ["coords"] = {}, + }, + [2004477] = { + ["coords"] = { + [1] = { 25.5, 66.5, 16, 300 }, + [2] = { 25.6, 66.5, 16, 300 }, + [3] = { 28.9, 62.6, 16, 300 }, + [4] = { 72.3, 57.7, 331, 300 }, + }, + }, + [2004478] = { + ["coords"] = { + [1] = { 51.6, 24.8, 45, 300 }, + [2] = { 51.6, 24.7, 45, 300 }, + [3] = { 29.8, 85.5, 47, 300 }, + [4] = { 29.8, 85.4, 47, 300 }, + }, + }, + [2004479] = { + ["coords"] = { + [1] = { 64.8, 13.1, 33, 300 }, + [2] = { 72.4, 58.4, 331, 300 }, + }, + }, + [2004480] = { + ["coords"] = {}, + }, + [2004481] = { + ["coords"] = {}, + }, + [2004482] = { + ["coords"] = {}, + }, + [2004483] = { + ["coords"] = {}, + }, + [2004484] = { + ["coords"] = {}, + }, + [2004485] = { + ["coords"] = {}, + }, + [2004486] = { + ["coords"] = {}, + }, + [2004487] = { + ["coords"] = { + [1] = { 51.1, 24.9, 45, 300 }, + [2] = { 24.4, 12.7, 406, 300 }, + }, + }, + [2004488] = { + ["coords"] = {}, + }, + [2004489] = { + ["coords"] = { + [1] = { 25.3, 66.5, 16, 300 }, + [2] = { 49.3, 9.7, 17, 300 }, + [3] = { 64, 13, 33, 300 }, + [4] = { 64, 12.8, 33, 300 }, + [5] = { 21, 55.1, 331, 300 }, + [6] = { 57.5, 22.1, 406, 300 }, + }, + }, + [2004490] = { + ["coords"] = {}, + }, + [2004491] = { + ["coords"] = {}, + }, + [2004492] = { + ["coords"] = {}, + }, + [2004493] = { + ["coords"] = { + [1] = { 24.4, 12.7, 406, 300 }, + }, + }, + [2004494] = { + ["coords"] = {}, + }, + [2004495] = { + ["coords"] = {}, + }, + [2004496] = { + ["coords"] = {}, + }, + [2004497] = { + ["coords"] = {}, + }, + [2004498] = { + ["coords"] = {}, + }, + [2004499] = { + ["coords"] = {}, + }, + [2004500] = { + ["coords"] = {}, + }, + [2004501] = { + ["coords"] = { + [1] = { 49.5, 60.4, 11, 300 }, + [2] = { 84.4, 79.7, 12, 300 }, + [3] = { 58, 99.4, 14, 300 }, + [4] = { 45.9, 85.6, 17, 300 }, + [5] = { 75.5, 49, 17, 300 }, + [6] = { 34, 17.8, 28, 0 }, + [7] = { 58.1, 75.2, 38, 300 }, + [8] = { 35.3, 10.2, 45, 300 }, + [9] = { 14.6, 71.9, 47, 300 }, + [10] = { 51, 67.7, 85, 300 }, + [11] = { 51, 67.4, 85, 300 }, + [12] = { 79, 55.8, 85, 300 }, + [13] = { 90.2, 32.6, 85, 0 }, + [14] = { 79.6, 25.6, 85, 300 }, + [15] = { 79.6, 25.5, 85, 300 }, + [16] = { 41.9, 10.4, 130, 300 }, + [17] = { 42.4, 51.8, 267, 300 }, + [18] = { 66.9, 47, 267, 300 }, + [19] = { 73, 58.2, 331, 300 }, + [20] = { 60.1, 39.9, 409, 300 }, + [21] = { 50.2, 29.9, 618, 300 }, + [22] = { 60.7, 30.2, 1497, 300 }, + [23] = { 61.1, 29.9, 1497, 300 }, + [24] = { 60.8, 29.9, 1497, 300 }, + [25] = { 37, 76.1, 1519, 300 }, + [26] = { 37, 76, 1519, 300 }, + [27] = { 36.9, 75.9, 1519, 300 }, + [28] = { 28.3, 14.7, 1519, 300 }, + [29] = { 96.7, 14.2, 5179, 300 }, + [30] = { 82.3, 70.6, 5208, 300 }, + [31] = { 82.3, 70.5, 5208, 300 }, + [32] = { 81.5, 70.3, 5208, 300 }, + [33] = { 82.5, 69.8, 5208, 300 }, + [34] = { 31.7, 85.3, 5581, 300 }, + [35] = { 28.3, 82.8, 5602, 300 }, + [36] = { 6.7, 25.3, 5602, 300 }, + }, + }, + [2004502] = { + ["coords"] = { + [1] = { 49.5, 60.3, 11, 300 }, + [2] = { 58, 99.5, 14, 300 }, + [3] = { 75.5, 49, 17, 300 }, + [4] = { 37.7, 66.1, 33, 300 }, + [5] = { 20, 67, 46, 300 }, + [6] = { 79, 55.7, 85, 300 }, + [7] = { 79.6, 25.6, 85, 300 }, + [8] = { 42.4, 51.8, 267, 300 }, + [9] = { 50.2, 29.9, 618, 300 }, + [10] = { 36.9, 75.9, 1519, 300 }, + [11] = { 28.3, 14.8, 1519, 300 }, + [12] = { 96.7, 14.2, 5179, 300 }, + [13] = { 82.2, 70.4, 5208, 300 }, + [14] = { 96, 93.3, 5581, 300 }, + [15] = { 31.7, 85.3, 5581, 300 }, + [16] = { 6.8, 25.3, 5602, 300 }, + }, + }, + [2004503] = { + ["coords"] = { + [1] = { 49.5, 60.3, 11, 300 }, + [2] = { 58, 99.4, 14, 300 }, + [3] = { 75.5, 49, 17, 300 }, + [4] = { 37.7, 66.1, 33, 300 }, + [5] = { 35.3, 10.2, 45, 300 }, + [6] = { 20, 67, 46, 300 }, + [7] = { 14.6, 71.9, 47, 300 }, + [8] = { 32.1, 46.1, 85, 300 }, + [9] = { 41.8, 10.5, 130, 300 }, + [10] = { 55.6, 57.9, 141, 300 }, + [11] = { 50.2, 29.9, 618, 300 }, + [12] = { 60.5, 30.1, 1497, 300 }, + [13] = { 61.2, 29.6, 1497, 300 }, + [14] = { 37, 76, 1519, 300 }, + [15] = { 28.3, 14.7, 1519, 300 }, + [16] = { 82.3, 70.4, 5208, 300 }, + [17] = { 44.5, 57.3, 5225, 300 }, + [18] = { 96, 93.3, 5581, 300 }, + [19] = { 31.7, 85.3, 5581, 300 }, + [20] = { 6.7, 25.3, 5602, 300 }, + }, + }, + [2004504] = { + ["coords"] = { + [1] = { 48.8, 48.8, 8, 300 }, + [2] = { 49.5, 60.4, 11, 300 }, + [3] = { 53.2, 43.4, 14, 300 }, + [4] = { 29.3, 61.8, 16, 300 }, + [5] = { 29.2, 61.8, 16, 300 }, + [6] = { 54.6, 10.2, 16, 300 }, + [7] = { 48.9, 9.8, 17, 300 }, + [8] = { 51.3, 24.5, 45, 300 }, + [9] = { 19.9, 66, 46, 300 }, + [10] = { 19.9, 65.9, 46, 300 }, + [11] = { 29.5, 85.3, 47, 300 }, + [12] = { 17.4, 49.5, 85, 300 }, + [13] = { 32.1, 46.1, 85, 300 }, + [14] = { 82.9, 54.4, 400, 25 }, + [15] = { 56.7, 36.1, 1497, 300 }, + [16] = { 56.9, 35.8, 1497, 300 }, + [17] = { 36.9, 75.8, 1519, 300 }, + [18] = { 95.9, 92.3, 5581, 300 }, + [19] = { 95.8, 92.3, 5581, 300 }, + [20] = { 6.8, 25.4, 5602, 300 }, + }, + }, + [2004505] = { + ["coords"] = { + [1] = { 48.8, 48.8, 8, 300 }, + [2] = { 29.2, 61.8, 16, 300 }, + [3] = { 48.9, 9.8, 17, 300 }, + [4] = { 33.9, 17.9, 28, 0 }, + [5] = { 37.7, 66.1, 33, 300 }, + [6] = { 19.9, 66, 46, 300 }, + [7] = { 90.2, 32.6, 85, 0 }, + [8] = { 73, 58.2, 331, 300 }, + [9] = { 82.5, 55.9, 400, 25 }, + [10] = { 95.9, 92.3, 5581, 300 }, + }, + }, + [2004506] = { + ["coords"] = { + [1] = { 48.8, 48.8, 8, 300 }, + [2] = { 43.9, 67.2, 14, 300 }, + [3] = { 53.2, 43.4, 14, 300 }, + [4] = { 42.5, 73.2, 15, 300 }, + [5] = { 54.6, 10.2, 16, 300 }, + [6] = { 45.8, 85.7, 17, 300 }, + [7] = { 33.9, 17.9, 28, 0 }, + [8] = { 37.7, 66.1, 33, 300 }, + [9] = { 31.5, 49.1, 33, 300 }, + [10] = { 31.9, 27.6, 33, 300 }, + [11] = { 51.2, 24.7, 45, 300 }, + [12] = { 19.9, 65.9, 46, 300 }, + [13] = { 29.5, 85.4, 47, 300 }, + [14] = { 90.2, 32.7, 85, 0 }, + [15] = { 82.5, 55.9, 400, 25 }, + [16] = { 31.5, 36.4, 440, 300 }, + [17] = { 79.1, 64.2, 490, 300 }, + [18] = { 56.8, 36, 1497, 300 }, + [19] = { 95.8, 92.3, 5581, 300 }, + }, + }, + [2004507] = { + ["coords"] = { + [1] = { 32.8, 48.4, 10, 300 }, + [2] = { 31, 36.8, 440, 300 }, + [3] = { 78.2, 64.9, 490, 300 }, + }, + }, + [2004508] = { + ["coords"] = {}, + }, + [2004509] = { + ["coords"] = {}, + }, + [2004510] = { + ["coords"] = {}, + }, + [2004511] = { + ["coords"] = {}, + }, + [2004512] = { + ["coords"] = {}, + }, + [2004513] = { + ["coords"] = {}, + }, + [2004514] = { + ["coords"] = {}, + }, + [2004515] = { + ["coords"] = {}, + }, + [2004516] = { + ["coords"] = {}, + }, + [2004517] = { + ["coords"] = {}, + }, + [2004518] = { + ["coords"] = { + [1] = { 74.7, 14.8, 130, 180 }, + [2] = { 41.5, 32.4, 215, 180 }, + [3] = { 41, 32.3, 215, 180 }, + [4] = { 37.3, 29.2, 215, 180 }, + [5] = { 38.8, 28.5, 215, 180 }, + [6] = { 40.3, 23.9, 215, 180 }, + [7] = { 35.3, 22.7, 215, 180 }, + [8] = { 88.9, 50.2, 405, 180 }, + [9] = { 58.6, 97.8, 1497, 180 }, + [10] = { 65.7, 55.2, 1497, 180 }, + [11] = { 73.4, 44.6, 1497, 180 }, + [12] = { 58.5, 43.6, 1497, 180 }, + [13] = { 50.2, 65.9, 1637, 180 }, + [14] = { 47.2, 65.2, 1637, 180 }, + [15] = { 20.5, 56.4, 1637, 180 }, + [16] = { 73.5, 36.2, 1637, 180 }, + [17] = { 57.7, 76.7, 1638, 180 }, + [18] = { 55.1, 76, 1638, 180 }, + [19] = { 36.6, 60.9, 1638, 180 }, + [20] = { 44.5, 57.4, 1638, 180 }, + [21] = { 51.5, 34.7, 1638, 180 }, + [22] = { 27.1, 29, 1638, 180 }, + }, + }, + [2004519] = { + ["coords"] = {}, + }, + [2004520] = { + ["coords"] = {}, + }, + [2004521] = { + ["coords"] = {}, + }, + [2004522] = { + ["coords"] = {}, + }, + [2004523] = { + ["coords"] = {}, + }, + [2004524] = { + ["coords"] = {}, + }, + [2004525] = { + ["coords"] = {}, + }, + [2004526] = { + ["coords"] = {}, + }, + [2004527] = { + ["coords"] = { + [1] = { 83.4, 78.9, 12, 300 }, + }, + }, + [2004528] = { + ["coords"] = {}, + }, + [2004529] = { + ["coords"] = {}, + }, + [2004530] = { + ["coords"] = {}, + }, + [2004531] = { + ["coords"] = {}, + }, + [2004532] = { + ["coords"] = {}, + }, + [2004533] = { + ["coords"] = {}, + }, + [2004534] = { + ["coords"] = {}, + }, + [2004535] = { + ["coords"] = {}, + }, + [2004536] = { + ["coords"] = {}, + }, + [2004537] = { + ["coords"] = { + [1] = { 29, 39.3, 406, 300 }, + [2] = { 28.5, 37.4, 406, 300 }, + [3] = { 29.2, 36.6, 406, 300 }, + [4] = { 29, 36.3, 406, 300 }, + }, + }, + [2004538] = { + ["coords"] = { + [1] = { 29.3, 39.3, 406, 300 }, + [2] = { 28.9, 38.6, 406, 300 }, + [3] = { 28.7, 36.8, 406, 300 }, + }, + }, + [2004539] = { + ["coords"] = {}, + }, + [2004540] = { + ["coords"] = {}, + }, + [2004541] = { + ["coords"] = {}, + }, + [2004542] = { + ["coords"] = {}, + }, + [2004543] = { + ["coords"] = {}, + }, + [2004544] = { + ["coords"] = {}, + }, + [2004545] = { + ["coords"] = {}, + }, + [2004546] = { + ["coords"] = {}, + }, + [2004547] = { + ["coords"] = {}, + }, + [2004548] = { + ["coords"] = {}, + }, + [2004549] = { + ["coords"] = {}, + }, + [2004550] = { + ["coords"] = {}, + }, + [2004551] = { + ["coords"] = { + [1] = { 31.4, 90.7, 405, 300 }, + }, + }, + [2004552] = { + ["coords"] = { + [1] = { 32.6, 49, 10, 300 }, + [2] = { 45.1, 14.1, 14, 300 }, + [3] = { 17.9, 65.7, 46, 300 }, + [4] = { 67.3, 82.7, 130, 300 }, + [5] = { 13.9, 49.2, 267, 300 }, + [6] = { 71.8, 11.9, 5179, 300 }, + [7] = { 94.1, 92.1, 5581, 300 }, + }, + }, + [2004553] = { + ["coords"] = {}, + }, + [2004554] = { + ["coords"] = {}, + }, + [2004555] = { + ["coords"] = {}, + }, + [2004556] = { + ["coords"] = { + [1] = { 62.2, 82.3, 3457, 300 }, + [2] = { 65.7, 66.4, 3457, 300 }, + [3] = { 42.8, 31.1, 5557, 300 }, + }, + }, + [2004557] = { + ["coords"] = {}, + }, + [2004558] = { + ["coords"] = {}, + }, + [2004559] = { + ["coords"] = {}, + }, + [2004560] = { + ["coords"] = { + [1] = { 50.5, 17.7, 5121, 300 }, + }, + }, + [2004561] = { + ["coords"] = {}, + }, + [2004562] = { + ["coords"] = {}, + }, + [2004563] = { + ["coords"] = {}, + }, + [2004564] = { + ["coords"] = {}, + }, + [2004565] = { + ["coords"] = {}, + }, + [2004566] = { + ["coords"] = {}, + }, + [2004567] = { + ["coords"] = {}, + }, + [2004568] = { + ["coords"] = {}, + }, + [2004569] = { + ["coords"] = {}, + }, + [2004570] = { + ["coords"] = {}, + }, + [2004571] = { + ["coords"] = { + [1] = { 45.5, 52.6, 8, 300 }, + [2] = { 70.8, 68.2, 331, 300 }, + }, + }, + [2004572] = { + ["coords"] = { + [1] = { 52.9, 64.2, 14, 300 }, + [2] = { 51.2, 37.9, 16, 300 }, + [3] = { 81.1, 75.1, 331, 0 }, + [4] = { 66.7, 86.1, 618, 300 }, + }, + }, + [2004573] = { + ["coords"] = { + [1] = { 53.5, 64.5, 14, 300 }, + [2] = { 51.2, 37.9, 16, 300 }, + [3] = { 51.1, 37.7, 16, 300 }, + [4] = { 81.1, 75, 331, 0 }, + [5] = { 27.6, 18.5, 406, 300 }, + [6] = { 66.3, 84.8, 618, 300 }, + }, + }, + [2004574] = { + ["coords"] = { + [1] = { 51.2, 37.9, 16, 300 }, + [2] = { 51.4, 37.4, 16, 300 }, + [3] = { 81.2, 75, 331, 0 }, + [4] = { 66.7, 86.1, 618, 300 }, + }, + }, + [2004575] = { + ["coords"] = {}, + }, + [2004576] = { + ["coords"] = { + [1] = { 80.9, 74.9, 331, 0 }, + }, + }, + [2004577] = { + ["coords"] = { + [1] = { 81.2, 75.1, 331, 0 }, + }, + }, + [2004578] = { + ["coords"] = { + [1] = { 37.8, 71.7, 14, 300 }, + [2] = { 65, 34.5, 17, 300 }, + [3] = { 36.8, 33.8, 17, 300 }, + [4] = { 37.8, 32.9, 17, 300 }, + [5] = { 61.4, 11.7, 215, 300 }, + [6] = { 63.3, 9.8, 215, 300 }, + }, + }, + [2004579] = { + ["coords"] = { + [1] = { 41.3, 18.6, 14, 300 }, + [2] = { 42.4, 93.8, 17, 300 }, + [3] = { 74.4, 42.7, 357, 300 }, + [4] = { 28.3, 25.9, 400, 300 }, + }, + }, + [2004580] = { + ["coords"] = { + [1] = { 42.4, 93.8, 17, 300 }, + [2] = { 37.8, 32.9, 17, 300 }, + [3] = { 64.5, 11.7, 33, 300 }, + [4] = { 63.3, 9.8, 215, 300 }, + [5] = { 28.2, 25.9, 400, 300 }, + [6] = { 24.3, 12.7, 406, 300 }, + }, + }, + [2004581] = { + ["coords"] = { + [1] = { 37.2, 33.7, 17, 300 }, + [2] = { 62.1, 11.3, 215, 300 }, + }, + }, + [2004582] = { + ["coords"] = { + [1] = { 37, 33.9, 17, 300 }, + [2] = { 49, 10, 17, 300 }, + [3] = { 61.8, 11.9, 215, 300 }, + }, + }, + [2004583] = { + ["coords"] = { + [1] = { 44.5, 67.2, 14, 300 }, + [2] = { 37, 33.9, 17, 300 }, + [3] = { 49, 10.1, 17, 300 }, + [4] = { 80, 60.1, 28, 300 }, + [5] = { 21.7, 83.5, 139, 300 }, + [6] = { 61.8, 11.8, 215, 300 }, + [7] = { 82.4, 68.9, 5208, 300 }, + }, + }, + [2004584] = { + ["coords"] = { + [1] = { 36.5, 44, 17, 300 }, + [2] = { 36.9, 33.4, 17, 300 }, + [3] = { 49.2, 9.7, 17, 300 }, + [4] = { 60.7, 31.8, 215, 300 }, + [5] = { 61.5, 10.8, 215, 300 }, + }, + }, + [2004585] = { + ["coords"] = { + [1] = { 36.5, 44, 17, 300 }, + [2] = { 36.6, 33.1, 17, 300 }, + [3] = { 60.7, 31.7, 215, 300 }, + [4] = { 61.1, 10.3, 215, 300 }, + [5] = { 50.3, 63.7, 406, 300 }, + [6] = { 44.6, 50.4, 406, 300 }, + }, + }, + [2004586] = { + ["coords"] = { + [1] = { 74.5, 42.8, 357, 300 }, + }, + }, + [2004587] = { + ["coords"] = { + [1] = { 36.6, 33.1, 17, 300 }, + [2] = { 49.2, 9.7, 17, 300 }, + [3] = { 54.3, 1.5, 17, 300 }, + [4] = { 61.1, 10.3, 215, 300 }, + [5] = { 79.5, 82.2, 331, 300 }, + }, + }, + [2004588] = { + ["coords"] = {}, + }, + [2004589] = { + ["coords"] = { + [1] = { 49, 60.8, 11, 300 }, + [2] = { 41.5, 18.7, 14, 300 }, + [3] = { 36.5, 44, 17, 300 }, + [4] = { 48.8, 9.9, 17, 300 }, + [5] = { 67.8, 83.2, 130, 300 }, + [6] = { 60.7, 31.7, 215, 300 }, + [7] = { 14.5, 49.8, 267, 300 }, + [8] = { 50.3, 63.8, 406, 300 }, + [9] = { 72.3, 12.4, 5179, 300 }, + [10] = { 6.4, 25.6, 5602, 300 }, + }, + }, + [2004590] = { + ["coords"] = { + [1] = { 42.8, 93.2, 17, 300 }, + [2] = { 74.4, 42.9, 357, 300 }, + [3] = { 76.1, 42.2, 357, 300 }, + [4] = { 29.1, 24.4, 400, 300 }, + [5] = { 50.2, 63.9, 406, 300 }, + }, + }, + [2004591] = { + ["coords"] = { + [1] = { 38.1, 37, 17, 300 }, + [2] = { 54.3, 1.5, 17, 300 }, + [3] = { 64, 17.9, 215, 300 }, + [4] = { 79.5, 82.2, 331, 300 }, + [5] = { 76.1, 42.3, 357, 300 }, + }, + }, + [2004592] = { + ["coords"] = { + [1] = { 41.8, 74.1, 15, 25 }, + [2] = { 25.6, 66.3, 16, 300 }, + [3] = { 61.1, 24.7, 17, 300 }, + [4] = { 49.2, 9.7, 17, 300 }, + [5] = { 50.5, 63.2, 406, 300 }, + [6] = { 37, 51.5, 406, 300 }, + [7] = { 44.6, 50.4, 406, 300 }, + }, + }, + [2004593] = { + ["coords"] = {}, + }, + [2004594] = { + ["coords"] = {}, + }, + [2004595] = { + ["coords"] = { + [1] = { 67.4, 27, 440, 300 }, + [2] = { 67.4, 26.5, 440, 300 }, + }, + }, + [2004596] = { + ["coords"] = {}, + }, + [2004597] = { + ["coords"] = { + [1] = { 44.7, 14.6, 14, 300 }, + [2] = { 43.8, 91.6, 17, 300 }, + [3] = { 36.4, 44, 17, 300 }, + [4] = { 36.6, 33.1, 17, 300 }, + [5] = { 61.3, 24.7, 17, 300 }, + [6] = { 49.1, 9.7, 17, 300 }, + [7] = { 48.8, 9, 17, 300 }, + [8] = { 60.7, 31.7, 215, 300 }, + [9] = { 61, 10.2, 215, 300 }, + [10] = { 31.3, 20.9, 400, 300 }, + [11] = { 50.3, 63.7, 406, 300 }, + [12] = { 48.6, 60.9, 406, 300 }, + [13] = { 48.9, 60.1, 406, 300 }, + [14] = { 66.4, 85.3, 618, 300 }, + }, + }, + [2004598] = { + ["coords"] = { + [1] = { 61.2, 24.7, 17, 300 }, + [2] = { 50.1, 63.9, 406, 300 }, + }, + }, + [2004599] = { + ["coords"] = { + [1] = { 53.9, 9, 15, 300 }, + [2] = { 43.7, 91.6, 17, 300 }, + [3] = { 63.4, 58.6, 17, 300 }, + [4] = { 36.4, 44, 17, 300 }, + [5] = { 61.1, 24.7, 17, 300 }, + [6] = { 60.7, 31.7, 215, 300 }, + [7] = { 31.3, 20.8, 400, 300 }, + [8] = { 50.4, 63.4, 406, 300 }, + [9] = { 48.8, 60.1, 406, 300 }, + }, + }, + [2004600] = { + ["coords"] = { + [1] = { 41.5, 18.7, 14, 300 }, + [2] = { 44.6, 15, 14, 300 }, + [3] = { 43.6, 91.6, 17, 300 }, + [4] = { 36.5, 44.1, 17, 300 }, + [5] = { 36.8, 33.8, 17, 300 }, + [6] = { 61, 24.8, 17, 300 }, + [7] = { 49.2, 9.7, 17, 300 }, + [8] = { 56.8, 11.4, 148, 25 }, + [9] = { 60.7, 31.9, 215, 300 }, + [10] = { 61.4, 11.7, 215, 300 }, + [11] = { 31, 20.8, 400, 300 }, + [12] = { 50.3, 63.7, 406, 300 }, + [13] = { 50.2, 63.7, 406, 300 }, + [14] = { 48.6, 60.8, 406, 300 }, + [15] = { 44.6, 50.2, 406, 300 }, + [16] = { 50.9, 73.4, 1637, 300 }, + }, + }, + [2004601] = { + ["coords"] = { + [1] = { 44.6, 14.8, 14, 300 }, + [2] = { 44.7, 50.4, 406, 300 }, + }, + }, + [2004602] = { + ["coords"] = { + [1] = { 44.6, 14.6, 14, 300 }, + [2] = { 61.7, 23.7, 17, 300 }, + [3] = { 49.3, 9.7, 17, 300 }, + [4] = { 48.8, 9, 17, 300 }, + [5] = { 50.4, 63.3, 406, 300 }, + [6] = { 48.8, 61.1, 406, 300 }, + [7] = { 48.6, 60.9, 406, 300 }, + [8] = { 44.7, 50.3, 406, 300 }, + }, + }, + [2004603] = { + ["coords"] = {}, + }, + [2004604] = { + ["coords"] = {}, + }, + [2004605] = { + ["coords"] = {}, + }, + [2004606] = { + ["coords"] = {}, + }, + [2004607] = { + ["coords"] = { + [1] = { 61.4, 32.4, 15, 300 }, + [2] = { 25.4, 66.5, 16, 300 }, + [3] = { 63.6, 10.4, 33, 300 }, + [4] = { 77.6, 75.4, 38, 25 }, + [5] = { 77.8, 75.3, 38, 25 }, + [6] = { 77.6, 75, 38, 25 }, + [7] = { 83.1, 55.4, 400, 25 }, + [8] = { 83, 55.1, 400, 25 }, + [9] = { 83.1, 55.1, 400, 25 }, + [10] = { 67.5, 27.3, 440, 300 }, + [11] = { 67.4, 27.3, 440, 300 }, + [12] = { 67.4, 27.2, 440, 300 }, + [13] = { 38.3, 82.9, 5602, 25 }, + [14] = { 38.4, 82.8, 5602, 25 }, + [15] = { 38.3, 82.7, 5602, 25 }, + }, + }, + [2004608] = { + ["coords"] = { + [1] = { 25.6, 66.3, 16, 300 }, + [2] = { 90.1, 22.5, 46, 300 }, + [3] = { 12.3, 35, 331, 300 }, + [4] = { 12.2, 34.9, 331, 300 }, + [5] = { 75.9, 42.4, 357, 300 }, + [6] = { 75.9, 42.3, 357, 300 }, + [7] = { 76.1, 42.2, 357, 300 }, + [8] = { 55.1, 56.3, 405, 300 }, + }, + }, + [2004609] = { + ["coords"] = { + [1] = { 55.3, 55.8, 405, 300 }, + }, + }, + [2004610] = { + ["coords"] = {}, + }, + [2004611] = { + ["coords"] = { + [1] = { 48.3, 48.7, 8, 300 }, + [2] = { 42.9, 93.9, 17, 300 }, + [3] = { 36.3, 44.1, 17, 300 }, + [4] = { 36.1, 32.9, 17, 300 }, + [5] = { 48.7, 9.8, 17, 300 }, + [6] = { 31.3, 47.6, 33, 300 }, + [7] = { 60.5, 32, 215, 300 }, + [8] = { 60.1, 9.8, 215, 300 }, + [9] = { 29.4, 26.1, 400, 300 }, + [10] = { 25.1, 13.1, 406, 300 }, + [11] = { 25.8, 10.4, 406, 300 }, + [12] = { 66.7, 86.1, 618, 300 }, + }, + }, + [2004612] = { + ["coords"] = { + [1] = { 43, 93.8, 17, 300 }, + [2] = { 48.7, 9.8, 17, 300 }, + [3] = { 29.5, 25.9, 400, 300 }, + [4] = { 29.5, 25.8, 400, 300 }, + [5] = { 66.8, 86.1, 618, 300 }, + [6] = { 66.4, 85.2, 618, 300 }, + }, + }, + [2004613] = { + ["coords"] = { + [1] = { 43, 93.9, 17, 300 }, + [2] = { 36.1, 32.9, 17, 300 }, + [3] = { 48.7, 9.8, 17, 300 }, + [4] = { 48.8, 9.8, 17, 300 }, + [5] = { 60, 9.8, 215, 300 }, + [6] = { 29.5, 26, 400, 300 }, + [7] = { 25.1, 13.2, 406, 300 }, + [8] = { 25.8, 10.4, 406, 300 }, + [9] = { 66.8, 86, 618, 300 }, + [10] = { 66.4, 85.2, 618, 300 }, + }, + }, + [2004614] = { + ["coords"] = { + [1] = { 42.6, 93.1, 17, 300 }, + [2] = { 76.1, 42.5, 357, 300 }, + [3] = { 28.6, 24.3, 400, 300 }, + [4] = { 57.3, 55.7, 876, 300 }, + [5] = { 49.9, 70.4, 1637, 300 }, + [6] = { 51, 34.1, 5121, 300 }, + [7] = { 45.5, 45.9, 5179, 300 }, + }, + }, + [2004615] = { + ["coords"] = { + [1] = { 42.8, 93.2, 17, 300 }, + [2] = { 36.4, 44.1, 17, 300 }, + [3] = { 60.7, 31.9, 215, 300 }, + [4] = { 95.3, 25.1, 331, 300 }, + [5] = { 60.8, 23.8, 361, 300 }, + [6] = { 29, 24.5, 400, 300 }, + [7] = { 91.8, 22.8, 405, 300 }, + [8] = { 63.8, 91.6, 406, 300 }, + [9] = { 44.8, 44.1, 5179, 300 }, + }, + }, + [2004616] = { + ["coords"] = { + [1] = { 43.2, 80.4, 33, 300 }, + [2] = { 66.4, 85.3, 618, 300 }, + [3] = { 45.7, 43.7, 5179, 300 }, + }, + }, + [2004617] = { + ["coords"] = { + [1] = { 42.8, 94, 17, 300 }, + [2] = { 42.7, 94, 17, 300 }, + [3] = { 49.1, 9.7, 17, 300 }, + [4] = { 49.2, 9.7, 17, 300 }, + [5] = { 29.1, 26.3, 400, 300 }, + [6] = { 29.2, 26.3, 400, 300 }, + [7] = { 29, 26.3, 400, 300 }, + [8] = { 28.8, 26.3, 400, 300 }, + [9] = { 30.9, 56.9, 5561, 300 }, + }, + }, + [2004618] = { + ["coords"] = { + [1] = { 42.5, 93.9, 17, 300 }, + [2] = { 43.8, 92, 17, 300 }, + [3] = { 28.4, 26.1, 400, 300 }, + [4] = { 31.5, 21.7, 400, 300 }, + [5] = { 50.2, 63, 406, 300 }, + }, + }, + [2004619] = { + ["coords"] = {}, + }, + [2004620] = { + ["coords"] = { + [1] = { 41.5, 18.8, 14, 300 }, + [2] = { 37.4, 33.1, 17, 300 }, + [3] = { 62.6, 10.2, 215, 300 }, + }, + }, + [2004621] = { + ["coords"] = {}, + }, + [2004622] = { + ["coords"] = {}, + }, + [2004623] = { + ["coords"] = {}, + }, + [2004624] = { + ["coords"] = { + [1] = { 61.2, 24.2, 17, 300 }, + [2] = { 55.6, 56.2, 405, 300 }, + }, + }, + [2004625] = { + ["coords"] = { + [1] = { 61.6, 23.4, 17, 300 }, + }, + }, + [2004626] = { + ["coords"] = { + [1] = { 45, 15.3, 14, 300 }, + [2] = { 61.3, 24.3, 17, 300 }, + [3] = { 50, 63.8, 406, 300 }, + [4] = { 48.7, 60.5, 406, 300 }, + }, + }, + [2004627] = { + ["coords"] = { + [1] = { 48.6, 60.5, 406, 300 }, + }, + }, + [2004628] = { + ["coords"] = {}, + }, + [2004629] = { + ["coords"] = { + [1] = { 49.1, 9.7, 17, 300 }, + }, + }, + [2004630] = { + ["coords"] = { + [1] = { 41.5, 18.7, 14, 300 }, + [2] = { 42.5, 93, 17, 300 }, + [3] = { 61.4, 23.9, 17, 300 }, + [4] = { 49.3, 9.7, 17, 300 }, + [5] = { 43.3, 17.1, 357, 25 }, + [6] = { 28.5, 24, 400, 300 }, + [7] = { 24.4, 12.8, 406, 300 }, + }, + }, + [2004631] = { + ["coords"] = { + [1] = { 42.8, 93.3, 17, 300 }, + [2] = { 42.6, 93, 17, 300 }, + [3] = { 43.8, 91.8, 17, 300 }, + [4] = { 36.8, 33.7, 17, 300 }, + [5] = { 36.1, 33.1, 17, 300 }, + [6] = { 36.2, 32.9, 17, 300 }, + [7] = { 37.8, 32.8, 17, 300 }, + [8] = { 61.6, 23.3, 17, 300 }, + [9] = { 48.8, 9.9, 17, 300 }, + [10] = { 48.7, 9.8, 17, 300 }, + [11] = { 49.1, 9.8, 17, 300 }, + [12] = { 49.3, 9.8, 17, 300 }, + [13] = { 61.3, 11.4, 215, 300 }, + [14] = { 60.1, 10.3, 215, 300 }, + [15] = { 60.1, 9.9, 215, 300 }, + [16] = { 63.3, 9.6, 215, 300 }, + [17] = { 29.1, 24.7, 400, 300 }, + [18] = { 28.7, 24.1, 400, 300 }, + [19] = { 31.4, 21.1, 400, 300 }, + }, + }, + [2004632] = { + ["coords"] = { + [1] = { 37.2, 34, 17, 300 }, + [2] = { 37.3, 33.7, 17, 300 }, + [3] = { 62.2, 11.9, 215, 300 }, + [4] = { 62.4, 11.4, 215, 300 }, + }, + }, + [2004633] = { + ["coords"] = {}, + }, + [2004634] = { + ["coords"] = {}, + }, + [2004635] = { + ["coords"] = {}, + }, + [2004636] = { + ["coords"] = { + [1] = { 55.3, 56.6, 405, 300 }, + }, + }, + [2004637] = { + ["coords"] = {}, + }, + [2004638] = { + ["coords"] = { + [1] = { 41.1, 93.5, 17, 300 }, + [2] = { 25.1, 25.1, 400, 300 }, + [3] = { 50.1, 63.7, 406, 300 }, + }, + }, + [2004639] = { + ["coords"] = {}, + }, + [2004640] = { + ["coords"] = { + [1] = { 36.3, 44.1, 17, 300 }, + [2] = { 48.7, 9.8, 17, 300 }, + [3] = { 60.5, 31.9, 215, 300 }, + }, + }, + [2004641] = { + ["coords"] = { + [1] = { 36.3, 44.1, 17, 300 }, + [2] = { 48.7, 9.8, 17, 300 }, + [3] = { 60.3, 31.9, 215, 300 }, + }, + }, + [2004642] = { + ["coords"] = { + [1] = { 37.7, 71.1, 14, 300 }, + [2] = { 54.7, 10.4, 16, 300 }, + [3] = { 43.6, 91.6, 17, 300 }, + [4] = { 36.5, 44, 17, 300 }, + [5] = { 61.8, 38.7, 17, 300 }, + [6] = { 64.9, 34.2, 17, 300 }, + [7] = { 36.6, 33.1, 17, 300 }, + [8] = { 61, 24.8, 17, 300 }, + [9] = { 61.3, 24.7, 17, 300 }, + [10] = { 61.6, 24.1, 17, 300 }, + [11] = { 61.7, 23.5, 17, 300 }, + [12] = { 49.2, 9.7, 17, 300 }, + [13] = { 48.8, 9, 17, 300 }, + [14] = { 60.7, 31.8, 215, 300 }, + [15] = { 60.9, 10.2, 215, 300 }, + [16] = { 47.8, 53.3, 331, 300 }, + [17] = { 12.2, 34.9, 331, 300 }, + [18] = { 31, 20.9, 400, 300 }, + [19] = { 50, 63.8, 406, 300 }, + [20] = { 48.8, 60.2, 406, 300 }, + [21] = { 36.9, 19.6, 5561, 300 }, + }, + }, + [2004643] = { + ["coords"] = { + [1] = { 19.2, 53.4, 10, 300 }, + [2] = { 32.5, 47.5, 10, 300 }, + [3] = { 32.2, 47.4, 10, 300 }, + [4] = { 48.9, 62.1, 11, 300 }, + [5] = { 49.1, 60.6, 11, 300 }, + [6] = { 39.1, 69.3, 12, 300 }, + [7] = { 58.1, 99.6, 14, 300 }, + [8] = { 55.3, 97.2, 14, 300 }, + [9] = { 37.7, 72.1, 14, 300 }, + [10] = { 37.7, 71.1, 14, 300 }, + [11] = { 52.8, 64.1, 14, 300 }, + [12] = { 58.8, 27.3, 14, 300 }, + [13] = { 42, 74.1, 15, 25 }, + [14] = { 29.3, 71.5, 16, 300 }, + [15] = { 29.5, 70.9, 16, 300 }, + [16] = { 25.4, 66, 16, 300 }, + [17] = { 54.6, 10.2, 16, 300 }, + [18] = { 42.6, 93, 17, 300 }, + [19] = { 43.7, 91.7, 17, 300 }, + [20] = { 43.7, 91.6, 17, 300 }, + [21] = { 75.6, 49.6, 17, 300 }, + [22] = { 75.6, 49.1, 17, 300 }, + [23] = { 74.1, 47.8, 17, 300 }, + [24] = { 36.5, 44, 17, 300 }, + [25] = { 36.4, 44, 17, 300 }, + [26] = { 61.8, 38.6, 17, 300 }, + [27] = { 38.1, 37, 17, 300 }, + [28] = { 64.9, 34.7, 17, 300 }, + [29] = { 64.9, 34.2, 17, 300 }, + [30] = { 61, 24.7, 17, 300 }, + [31] = { 61.6, 24.5, 17, 300 }, + [32] = { 61.7, 24.2, 17, 300 }, + [33] = { 61.7, 23.6, 17, 300 }, + [34] = { 34.1, 10.2, 17, 300 }, + [35] = { 48.8, 10, 17, 300 }, + [36] = { 49.1, 9.8, 17, 300 }, + [37] = { 49.3, 9.7, 17, 300 }, + [38] = { 48.7, 9.2, 17, 300 }, + [39] = { 48, 8.4, 17, 300 }, + [40] = { 93.7, 79.1, 25, 300 }, + [41] = { 44.4, 98.7, 28, 300 }, + [42] = { 44.3, 98.1, 28, 300 }, + [43] = { 43.2, 80.4, 33, 300 }, + [44] = { 81.3, 51.5, 36, 300 }, + [45] = { 81.1, 50.7, 36, 300 }, + [46] = { 17.8, 67.1, 46, 300 }, + [47] = { 17.3, 67, 46, 300 }, + [48] = { 39.6, 34.2, 46, 300 }, + [49] = { 89.8, 22.5, 46, 300 }, + [50] = { 67.4, 83.5, 130, 300 }, + [51] = { 42.1, 10.1, 130, 300 }, + [52] = { 60.7, 31.8, 215, 300 }, + [53] = { 60.5, 31.8, 215, 300 }, + [54] = { 64, 18, 215, 300 }, + [55] = { 42.8, 51.9, 267, 300 }, + [56] = { 13.9, 50.2, 267, 300 }, + [57] = { 42, 75, 331, 300 }, + [58] = { 73.2, 55.5, 331, 300 }, + [59] = { 12.2, 34.9, 331, 300 }, + [60] = { 75.9, 42.4, 357, 300 }, + [61] = { 43.4, 17.4, 357, 25 }, + [62] = { 28.6, 24.1, 400, 300 }, + [63] = { 31.2, 21, 400, 300 }, + [64] = { 31.1, 20.8, 400, 300 }, + [65] = { 50.2, 63.9, 406, 300 }, + [66] = { 50.3, 63.1, 406, 300 }, + [67] = { 79.4, 62.7, 406, 300 }, + [68] = { 48.9, 61.3, 406, 300 }, + [69] = { 44.7, 50.2, 406, 300 }, + [70] = { 77.6, 41.1, 406, 300 }, + [71] = { 58, 22, 440, 300 }, + [72] = { 38.8, 11.6, 490, 300 }, + [73] = { 39, 11.4, 490, 300 }, + [74] = { 39.4, 11.4, 490, 300 }, + [75] = { 39.3, 10.7, 490, 300 }, + [76] = { 21.6, 36.3, 1519, 300 }, + [77] = { 29.8, 14.8, 1519, 300 }, + [78] = { 97, 14.3, 5179, 300 }, + [79] = { 71.8, 12.7, 5179, 300 }, + [80] = { 36.9, 19.3, 5561, 300 }, + [81] = { 28.1, 96.9, 5581, 300 }, + [82] = { 94, 93.3, 5581, 300 }, + [83] = { 93.6, 93.2, 5581, 300 }, + [84] = { 32.5, 85.3, 5581, 300 }, + [85] = { 6.3, 26.7, 5602, 300 }, + [86] = { 6.4, 25.5, 5602, 300 }, + }, + }, + [2004644] = { + ["coords"] = { + [1] = { 48.6, 62.4, 11, 300 }, + [2] = { 55.3, 97.2, 14, 300 }, + [3] = { 37.8, 71.5, 14, 300 }, + [4] = { 58.8, 27.4, 14, 300 }, + [5] = { 58.8, 27.3, 14, 300 }, + [6] = { 74.1, 47.8, 17, 300 }, + [7] = { 36.5, 44, 17, 300 }, + [8] = { 65, 34.4, 17, 300 }, + [9] = { 61, 24.8, 17, 300 }, + [10] = { 61.6, 24.1, 17, 300 }, + [11] = { 93.4, 78.6, 25, 300 }, + [12] = { 39.6, 34.1, 46, 300 }, + [13] = { 60.7, 31.8, 215, 300 }, + [14] = { 42, 53.4, 267, 300 }, + [15] = { 43.3, 17.4, 357, 25 }, + [16] = { 43.6, 16.9, 357, 25 }, + [17] = { 43.6, 16.8, 357, 25 }, + [18] = { 50, 63.7, 406, 300 }, + [19] = { 48.8, 60.2, 406, 300 }, + [20] = { 39, 11.4, 490, 300 }, + [21] = { 39.3, 11.3, 490, 300 }, + [22] = { 39.4, 11.3, 490, 300 }, + [23] = { 96.3, 15.5, 5179, 300 }, + [24] = { 6.1, 26.9, 5602, 300 }, + }, + }, + [2004645] = { + ["coords"] = { + [1] = { 50.1, 63.5, 406, 300 }, + }, + }, + [2004646] = { + ["coords"] = { + [1] = { 50.2, 63.3, 406, 300 }, + }, + }, + [2004647] = { + ["coords"] = {}, + }, + [2004648] = { + ["coords"] = { + [1] = { 50.3, 63.1, 406, 300 }, + }, + }, + [2004649] = { + ["coords"] = { + [1] = { 50.2, 63.3, 406, 300 }, + }, + }, + [2004650] = { + ["coords"] = { + [1] = { 42.2, 93.6, 17, 300 }, + [2] = { 27.8, 25.4, 400, 300 }, + }, + }, + [2004651] = { + ["coords"] = {}, + }, + [2004652] = { + ["coords"] = { + [1] = { 42.2, 93.6, 17, 300 }, + [2] = { 27.7, 25.4, 400, 300 }, + }, + }, + [2004653] = { + ["coords"] = {}, + }, + [2004654] = { + ["coords"] = {}, + }, + [2004655] = { + ["coords"] = {}, + }, + [2004656] = { + ["coords"] = {}, + }, + [2004657] = { + ["coords"] = {}, + }, + [2004658] = { + ["coords"] = {}, + }, + [2004659] = { + ["coords"] = {}, + }, + [2004660] = { + ["coords"] = {}, + }, + [2004661] = { + ["coords"] = { + [1] = { 36.5, 33.1, 17, 300 }, + [2] = { 60.8, 10.3, 215, 300 }, + }, + }, + [2004662] = { + ["coords"] = {}, + }, + [2004663] = { + ["coords"] = {}, + }, + [2004664] = { + ["coords"] = {}, + }, + [2004665] = { + ["coords"] = {}, + }, + [2004666] = { + ["coords"] = {}, + }, + [2004667] = { + ["coords"] = {}, + }, + [2004668] = { + ["coords"] = {}, + }, + [2004669] = { + ["coords"] = { + [1] = { 74.5, 42.7, 357, 300 }, + }, + }, + [2004670] = { + ["coords"] = {}, + }, + [2004671] = { + ["coords"] = {}, + }, + [2004672] = { + ["coords"] = {}, + }, + [2004673] = { + ["coords"] = {}, + }, + [2004674] = { + ["coords"] = { + [1] = { 55.4, 55.9, 405, 300 }, + }, + }, + [2004675] = { + ["coords"] = {}, + }, + [2004676] = { + ["coords"] = { + [1] = { 55.6, 56.7, 405, 300 }, + }, + }, + [2004677] = { + ["coords"] = {}, + }, + [2004678] = { + ["coords"] = {}, + }, + [2004679] = { + ["coords"] = {}, + }, + [2004680] = { + ["coords"] = {}, + }, + [2004681] = { + ["coords"] = {}, + }, + [2004682] = { + ["coords"] = {}, + }, + [2004683] = { + ["coords"] = {}, + }, + [2004684] = { + ["coords"] = {}, + }, + [2004685] = { + ["coords"] = {}, + }, + [2004686] = { + ["coords"] = { + [1] = { 48.9, 9.9, 17, 300 }, + }, + }, + [2004687] = { + ["coords"] = {}, + }, + [2004688] = { + ["coords"] = { + [1] = { 42.3, 93.8, 17, 300 }, + [2] = { 28, 25.8, 400, 300 }, + }, + }, + [2004689] = { + ["coords"] = {}, + }, + [2004690] = { + ["coords"] = {}, + }, + [2004691] = { + ["coords"] = { + [1] = { 36.3, 44.2, 17, 300 }, + [2] = { 36.6, 33.2, 17, 300 }, + [3] = { 60.4, 32.1, 215, 300 }, + [4] = { 61.1, 10.5, 215, 300 }, + [5] = { 50.1, 63.5, 406, 300 }, + [6] = { 44.7, 50.3, 406, 300 }, + }, + }, + [2004692] = { + ["coords"] = {}, + }, + [2004693] = { + ["coords"] = {}, + }, + [2004694] = { + ["coords"] = {}, + }, + [2004695] = { + ["coords"] = { + [1] = { 44.7, 14.5, 14, 300 }, + [2] = { 42.4, 93.8, 17, 300 }, + [3] = { 36.3, 44, 17, 300 }, + [4] = { 61.7, 24.4, 17, 300 }, + [5] = { 60.5, 31.8, 215, 300 }, + [6] = { 28.1, 25.9, 400, 300 }, + [7] = { 50.2, 63.9, 406, 300 }, + [8] = { 25.7, 11.2, 406, 300 }, + }, + }, + [2004696] = { + ["coords"] = {}, + }, + [2004697] = { + ["coords"] = { + [1] = { 56.8, 11.4, 148, 25 }, + [2] = { 62, 69.9, 5024, 300 }, + }, + }, + [2004698] = { + ["coords"] = { + [1] = { 42.5, 93.1, 17, 300 }, + [2] = { 28.5, 24.3, 400, 300 }, + [3] = { 68.6, 26.9, 1637, 25 }, + [4] = { 68.6, 26.8, 1637, 25 }, + [5] = { 68.7, 26.8, 1637, 25 }, + [6] = { 68.7, 26.7, 1637, 25 }, + [7] = { 68.7, 26.6, 1637, 25 }, + [8] = { 68.7, 26.5, 1637, 25 }, + [9] = { 68.8, 26.5, 1637, 25 }, + [10] = { 68.8, 26.4, 1637, 25 }, + [11] = { 62.8, 84.5, 5121, 300 }, + }, + }, + [2004699] = { + ["coords"] = { + [1] = { 42.8, 94, 17, 300 }, + [2] = { 42.7, 94, 17, 300 }, + [3] = { 49.1, 9.7, 17, 300 }, + [4] = { 49.2, 9.7, 17, 300 }, + [5] = { 29.1, 26.3, 400, 300 }, + [6] = { 29.2, 26.3, 400, 300 }, + [7] = { 29, 26.3, 400, 300 }, + [8] = { 28.8, 26.3, 400, 300 }, + }, + }, + [2004700] = { + ["coords"] = {}, + }, + [2004701] = { + ["coords"] = { + [1] = { 45.2, 14.4, 14, 300 }, + [2] = { 41.1, 93.6, 17, 300 }, + [3] = { 43.7, 91.7, 17, 300 }, + [4] = { 36.9, 33.4, 17, 300 }, + [5] = { 61.1, 24.7, 17, 300 }, + [6] = { 60.9, 24.3, 17, 300 }, + [7] = { 48.7, 10, 17, 300 }, + [8] = { 48.8, 10, 17, 300 }, + [9] = { 48.7, 9.2, 17, 300 }, + [10] = { 18.1, 65.7, 46, 300 }, + [11] = { 61.6, 10.8, 215, 300 }, + [12] = { 25.2, 25.3, 400, 300 }, + [13] = { 31.2, 20.9, 400, 300 }, + [14] = { 94.2, 92.1, 5581, 300 }, + [15] = { 56.7, 53.2, 5601, 604800 }, + }, + }, + [2004702] = { + ["coords"] = { + [1] = { 41.5, 18.7, 14, 300 }, + [2] = { 45.2, 14.5, 14, 300 }, + [3] = { 48.7, 10, 17, 300 }, + [4] = { 48.9, 10, 17, 300 }, + [5] = { 48.7, 9.3, 17, 300 }, + [6] = { 74.6, 42.9, 357, 300 }, + [7] = { 50.5, 63.3, 406, 300 }, + [8] = { 44.5, 50.2, 406, 300 }, + [9] = { 24.5, 13.8, 406, 25 }, + }, + }, + [2004703] = { + ["coords"] = { + [1] = { 43.3, 68.3, 14, 300 }, + [2] = { 36.1, 33, 17, 300 }, + [3] = { 61.1, 24.7, 17, 300 }, + [4] = { 48.8, 10.1, 17, 300 }, + [5] = { 48.8, 9.9, 17, 300 }, + [6] = { 59.9, 10.1, 215, 300 }, + [7] = { 88.9, 59.9, 331, 300 }, + [8] = { 74.5, 42.8, 357, 300 }, + [9] = { 76, 42.4, 357, 300 }, + [10] = { 66.7, 24.3, 440, 300 }, + }, + }, + [2004704] = { + ["coords"] = { + [1] = { 43.4, 68.4, 14, 300 }, + [2] = { 53.5, 64.5, 14, 300 }, + [3] = { 45.2, 14.5, 14, 300 }, + [4] = { 43.7, 91.6, 17, 300 }, + [5] = { 36.8, 33.7, 17, 300 }, + [6] = { 37.1, 33.6, 17, 300 }, + [7] = { 61.1, 24.8, 17, 300 }, + [8] = { 61, 24.3, 17, 300 }, + [9] = { 48.7, 10.1, 17, 300 }, + [10] = { 48.8, 10.1, 17, 300 }, + [11] = { 48.8, 9.9, 17, 300 }, + [12] = { 31.3, 48.5, 33, 300 }, + [13] = { 59.6, 14.7, 33, 300 }, + [14] = { 64.5, 11.7, 33, 300 }, + [15] = { 17.9, 67, 46, 300 }, + [16] = { 19.8, 66, 46, 300 }, + [17] = { 61.4, 11.5, 215, 300 }, + [18] = { 62.1, 11.2, 215, 300 }, + [19] = { 91.5, 54.1, 331, 300 }, + [20] = { 12.2, 35, 331, 300 }, + [21] = { 74.7, 42.5, 357, 300 }, + [22] = { 43.4, 17.2, 357, 25 }, + [23] = { 43.3, 17.2, 357, 25 }, + [24] = { 31.2, 20.8, 400, 300 }, + [25] = { 24.1, 68.2, 405, 300 }, + [26] = { 55.3, 56.2, 405, 300 }, + [27] = { 50.5, 63.2, 406, 300 }, + [28] = { 66.6, 24.1, 440, 300 }, + [29] = { 7.2, 90.4, 2100, 300 }, + [30] = { 94.1, 93.3, 5581, 300 }, + [31] = { 95.8, 92.4, 5581, 300 }, + }, + }, + [2004705] = { + ["coords"] = { + [1] = { 48.8, 60.4, 11, 300 }, + [2] = { 6.3, 25.4, 5602, 300 }, + }, + }, + [2004706] = { + ["coords"] = {}, + }, + [2004707] = { + ["coords"] = { + [1] = { 37.2, 33.6, 17, 300 }, + [2] = { 61.3, 24.1, 17, 300 }, + [3] = { 62.1, 11.3, 215, 300 }, + [4] = { 73.3, 56.1, 331, 300 }, + }, + }, + [2004708] = { + ["coords"] = { + [1] = { 36.5, 33.1, 17, 300 }, + [2] = { 61.3, 24, 17, 300 }, + [3] = { 60.9, 10.3, 215, 300 }, + [4] = { 73.3, 56.3, 331, 300 }, + [5] = { 50.5, 63.2, 406, 300 }, + }, + }, + [2004709] = { + ["coords"] = { + [1] = { 36.4, 44.1, 17, 300 }, + [2] = { 37.7, 32.8, 17, 300 }, + [3] = { 60.6, 32, 215, 300 }, + [4] = { 63.1, 9.6, 215, 300 }, + [5] = { 73.3, 56.2, 331, 300 }, + }, + }, + [2004710] = { + ["coords"] = { + [1] = { 37.2, 33.6, 17, 300 }, + [2] = { 62.1, 11.3, 215, 300 }, + }, + }, + [2004711] = { + ["coords"] = {}, + }, + [2004712] = { + ["coords"] = { + [1] = { 41.5, 18.8, 14, 300 }, + [2] = { 76.1, 42.2, 357, 300 }, + [3] = { 23.7, 67.9, 405, 300 }, + [4] = { 4.9, 88.4, 2100, 300 }, + }, + }, + [2004713] = { + ["coords"] = { + [1] = { 44.1, 75.8, 215, 300 }, + [2] = { 75.9, 42.3, 357, 300 }, + }, + }, + [2004714] = { + ["coords"] = { + [1] = { 42.4, 68.2, 14, 300 }, + [2] = { 12.2, 34.9, 331, 300 }, + }, + }, + [2004715] = { + ["coords"] = {}, + }, + [2004716] = { + ["coords"] = {}, + }, + [2004717] = { + ["coords"] = {}, + }, + [2004718] = { + ["coords"] = {}, + }, + [2004719] = { + ["coords"] = {}, + }, + [2004720] = { + ["coords"] = {}, + }, + [2004721] = { + ["coords"] = { + [1] = { 43.1, 93.6, 17, 300 }, + [2] = { 29.7, 25.5, 400, 300 }, + }, + }, + [2004722] = { + ["coords"] = {}, + }, + [2004723] = { + ["coords"] = {}, + }, + [2004724] = { + ["coords"] = {}, + }, + [2004725] = { + ["coords"] = {}, + }, + [2004726] = { + ["coords"] = {}, + }, + [2004727] = { + ["coords"] = {}, + }, + [2004728] = { + ["coords"] = {}, + }, + [2004729] = { + ["coords"] = {}, + }, + [2004730] = { + ["coords"] = { + [1] = { 55.4, 54.2, 876, 300 }, + [2] = { 50.9, 73.7, 1637, 300 }, + [3] = { 52.6, 70.1, 1637, 300 }, + }, + }, + [2004731] = { + ["coords"] = { + [1] = { 36.8, 33.8, 17, 300 }, + [2] = { 37.7, 33, 17, 300 }, + [3] = { 61.4, 11.6, 215, 300 }, + [4] = { 63.2, 10, 215, 300 }, + }, + }, + [2004732] = { + ["coords"] = {}, + }, + [2004733] = { + ["coords"] = {}, + }, + [2004734] = { + ["coords"] = { + [1] = { 48.8, 9.9, 17, 300 }, + }, + }, + [2004735] = { + ["coords"] = { + [1] = { 48.7, 10, 17, 300 }, + }, + }, + [2004736] = { + ["coords"] = { + [1] = { 48.9, 10, 17, 300 }, + [2] = { 73.2, 56.3, 331, 300 }, + }, + }, + [2004737] = { + ["coords"] = { + [1] = { 41.5, 18.8, 14, 300 }, + [2] = { 37.2, 33.6, 17, 300 }, + [3] = { 48.8, 10.1, 17, 300 }, + [4] = { 62.1, 11.3, 215, 300 }, + [5] = { 22.9, 9.2, 406, 300 }, + }, + }, + [2004738] = { + ["coords"] = { + [1] = { 66.7, 24.4, 440, 300 }, + }, + }, + [2004739] = { + ["coords"] = { + [1] = { 50.4, 63.5, 406, 300 }, + }, + }, + [2004740] = { + ["coords"] = { + [1] = { 49.2, 9.7, 17, 300 }, + }, + }, + [2004741] = { + ["coords"] = {}, + }, + [2004742] = { + ["coords"] = { + [1] = { 50.9, 50.5, 8, 300 }, + [2] = { 51.3, 49.9, 8, 300 }, + [3] = { 51.4, 47.2, 8, 300 }, + [4] = { 44.6, 15.1, 14, 300 }, + [5] = { 42.6, 94, 17, 300 }, + [6] = { 34.6, 10, 45, 300 }, + [7] = { 14, 71.6, 47, 300 }, + [8] = { 75.9, 42.1, 357, 300 }, + [9] = { 28.6, 26.2, 400, 300 }, + }, + }, + [2004743] = { + ["coords"] = { + [1] = { 51.5, 47.5, 8, 300 }, + [2] = { 44.7, 12.9, 14, 300 }, + [3] = { 44.8, 12.8, 14, 300 }, + [4] = { 42.6, 93.1, 17, 300 }, + [5] = { 43.9, 92, 17, 300 }, + [6] = { 43.8, 91.9, 17, 300 }, + [7] = { 61.2, 24, 17, 300 }, + [8] = { 48.8, 9.1, 17, 300 }, + [9] = { 54.1, 1.2, 17, 300 }, + [10] = { 79.1, 81.8, 331, 300 }, + [11] = { 70.9, 68.3, 331, 300 }, + [12] = { 28.7, 24.3, 400, 300 }, + [13] = { 31.5, 21.7, 400, 300 }, + [14] = { 31.4, 21.6, 400, 300 }, + [15] = { 50.2, 63.1, 406, 300 }, + [16] = { 50.2, 63, 406, 300 }, + [17] = { 49, 61.2, 406, 300 }, + [18] = { 58.2, 22.5, 440, 300 }, + [19] = { 46, 98.3, 1637, 300 }, + [20] = { 46.3, 98, 1637, 300 }, + }, + }, + [2004744] = { + ["coords"] = {}, + }, + [2004745] = { + ["coords"] = { + [1] = { 43, 93.6, 17, 300 }, + [2] = { 29.6, 25.5, 400, 300 }, + [3] = { 50.1, 63.5, 406, 300 }, + [4] = { 30.7, 37.9, 440, 300 }, + [5] = { 77.7, 67, 490, 300 }, + }, + }, + [2004746] = { + ["coords"] = { + [1] = { 43, 93.6, 17, 300 }, + [2] = { 36.8, 33.8, 17, 300 }, + [3] = { 48.8, 9.8, 17, 300 }, + [4] = { 61.3, 11.5, 215, 300 }, + [5] = { 29.6, 25.4, 400, 300 }, + }, + }, + [2004747] = { + ["coords"] = { + [1] = { 43.9, 67.2, 14, 300 }, + [2] = { 25.3, 66.3, 16, 300 }, + [3] = { 25.3, 66.2, 16, 300 }, + [4] = { 42.7, 93.1, 17, 300 }, + [5] = { 43.7, 91.7, 17, 300 }, + [6] = { 36.8, 33.8, 17, 300 }, + [7] = { 37.7, 32.9, 17, 300 }, + [8] = { 61.9, 19.9, 17, 300 }, + [9] = { 48.8, 9.8, 17, 300 }, + [10] = { 61.4, 11.6, 215, 300 }, + [11] = { 63.1, 9.8, 215, 300 }, + [12] = { 73.2, 56.4, 331, 300 }, + [13] = { 28.9, 24.2, 400, 300 }, + [14] = { 31.2, 21, 400, 300 }, + [15] = { 50.1, 63.9, 406, 300 }, + [16] = { 53.1, 49.8, 409, 300 }, + }, + }, + [2004748] = { + ["coords"] = { + [1] = { 25.3, 66.2, 16, 300 }, + [2] = { 36.8, 33.7, 17, 300 }, + [3] = { 37.7, 32.9, 17, 300 }, + [4] = { 62, 19.7, 17, 300 }, + [5] = { 48.8, 9.9, 17, 300 }, + [6] = { 61.3, 11.5, 215, 300 }, + [7] = { 63.1, 9.8, 215, 300 }, + [8] = { 50.2, 63.8, 406, 300 }, + }, + }, + [2004749] = { + ["coords"] = { + [1] = { 54, 8.8, 15, 300 }, + [2] = { 63.5, 58.5, 17, 300 }, + }, + }, + [2004750] = { + ["coords"] = { + [1] = { 44.9, 60, 215, 0 }, + [2] = { 21, 55.1, 331, 300 }, + [3] = { 57.5, 22.1, 406, 300 }, + }, + }, + [2004751] = { + ["coords"] = { + [1] = { 42.6, 94, 17, 300 }, + [2] = { 42.5, 93.9, 17, 300 }, + [3] = { 43, 93.9, 17, 300 }, + [4] = { 43.1, 93.7, 17, 300 }, + [5] = { 43.1, 93.4, 17, 300 }, + [6] = { 50.6, 61.6, 357, 300 }, + [7] = { 50.2, 60.8, 357, 300 }, + [8] = { 50.1, 59.4, 357, 300 }, + [9] = { 50.1, 59, 357, 300 }, + [10] = { 50.1, 58.7, 357, 300 }, + [11] = { 50.8, 58.5, 357, 300 }, + [12] = { 50.4, 58.5, 357, 300 }, + [13] = { 51, 58.5, 357, 300 }, + [14] = { 51.7, 58.4, 357, 300 }, + [15] = { 50.1, 58.4, 357, 300 }, + [16] = { 51.1, 58.2, 357, 300 }, + [17] = { 28.7, 26.4, 400, 300 }, + [18] = { 28.3, 26.1, 400, 300 }, + [19] = { 29.7, 26, 400, 300 }, + [20] = { 29.9, 25.5, 400, 300 }, + [21] = { 29.7, 25, 400, 300 }, + }, + }, + [2004752] = { + ["coords"] = { + [1] = { 42.9, 94, 17, 300 }, + [2] = { 42.3, 93.8, 17, 300 }, + [3] = { 50.6, 62.1, 357, 300 }, + [4] = { 50.6, 62, 357, 300 }, + [5] = { 50.6, 61.9, 357, 300 }, + [6] = { 50.1, 58.4, 357, 300 }, + [7] = { 50.1, 58.3, 357, 300 }, + [8] = { 51.1, 58.1, 357, 300 }, + [9] = { 29.4, 26.3, 400, 300 }, + [10] = { 28, 25.9, 400, 300 }, + }, + }, + [2004753] = { + ["coords"] = {}, + }, + [2004754] = { + ["coords"] = { + [1] = { 37.2, 33.6, 17, 300 }, + [2] = { 62.1, 11.3, 215, 300 }, + }, + }, + [2004755] = { + ["coords"] = {}, + }, + [2004756] = { + ["coords"] = {}, + }, + [2004757] = { + ["coords"] = {}, + }, + [2004758] = { + ["coords"] = { + [1] = { 64.6, 13.7, 33, 300 }, + [2] = { 64.4, 13.7, 33, 300 }, + [3] = { 64.3, 13.7, 33, 300 }, + [4] = { 64.6, 13.5, 33, 300 }, + [5] = { 64.3, 13.5, 33, 300 }, + [6] = { 64.4, 13.5, 33, 300 }, + }, + }, + [2004759] = { + ["coords"] = {}, + }, + [2004760] = { + ["coords"] = { + [1] = { 31.3, 48.5, 33, 300 }, + [2] = { 59.5, 14.6, 33, 300 }, + }, + }, + [2004761] = { + ["coords"] = { + [1] = { 55.8, 73.3, 14, 300 }, + [2] = { 25, 13.2, 406, 300 }, + [3] = { 53, 49.9, 409, 300 }, + }, + }, + [2004762] = { + ["coords"] = { + [1] = { 25.6, 66.2, 16, 300 }, + [2] = { 27.4, 63.8, 16, 300 }, + [3] = { 28.1, 61.4, 16, 300 }, + [4] = { 28.7, 56.1, 33, 300 }, + [5] = { 64.3, 12.9, 33, 300 }, + [6] = { 65.3, 12.6, 33, 300 }, + [7] = { 78.6, 80.8, 47, 300 }, + [8] = { 25.7, 10.6, 406, 300 }, + [9] = { 66.6, 24.4, 440, 300 }, + [10] = { 54.2, 56.4, 876, 300 }, + }, + }, + [2004763] = { + ["coords"] = { + [1] = { 25.5, 66.6, 16, 300 }, + [2] = { 28.9, 62.6, 16, 300 }, + [3] = { 65.2, 12.3, 33, 300 }, + [4] = { 62, 8.5, 33, 300 }, + [5] = { 78.5, 80.6, 47, 300 }, + [6] = { 72.7, 56.9, 331, 300 }, + [7] = { 52.6, 49.7, 409, 300 }, + [8] = { 66.6, 24.4, 440, 300 }, + [9] = { 53.9, 54.2, 876, 300 }, + }, + }, + [2004764] = { + ["coords"] = { + [1] = { 27.9, 62.7, 16, 300 }, + [2] = { 64.8, 13.1, 33, 300 }, + [3] = { 65.3, 12.4, 33, 300 }, + [4] = { 77, 81.7, 47, 300 }, + [5] = { 72.8, 56.6, 331, 300 }, + }, + }, + [2004765] = { + ["coords"] = { + [1] = { 4.1, 60.8, 85, 300 }, + [2] = { 57.1, 38.2, 5179, 300 }, + }, + }, + [2004766] = { + ["coords"] = { + [1] = { 4.1, 60.7, 85, 300 }, + [2] = { 57.2, 38.3, 5179, 300 }, + }, + }, + [2004767] = { + ["coords"] = {}, + }, + [2004768] = { + ["coords"] = {}, + }, + [2004769] = { + ["coords"] = {}, + }, + [2004770] = { + ["coords"] = { + [1] = { 34.1, 18.4, 28, 0 }, + [2] = { 34.1, 18.1, 28, 0 }, + [3] = { 33.1, 17.6, 28, 300 }, + [4] = { 33, 17.6, 28, 300 }, + [5] = { 32.9, 17.6, 28, 300 }, + [6] = { 32.8, 17.5, 28, 300 }, + [7] = { 32.9, 17.5, 28, 300 }, + [8] = { 33.2, 17.4, 28, 300 }, + [9] = { 33.1, 17.3, 28, 300 }, + [10] = { 33, 17.3, 28, 300 }, + [11] = { 33, 17.2, 28, 300 }, + [12] = { 32.9, 17.1, 28, 300 }, + [13] = { 60.6, 67.1, 85, 300 }, + [14] = { 60, 66.8, 85, 300 }, + [15] = { 59.8, 66.8, 85, 300 }, + [16] = { 90.3, 33.1, 85, 0 }, + [17] = { 90.3, 32.9, 85, 0 }, + [18] = { 89.4, 32.4, 85, 300 }, + [19] = { 89.3, 32.4, 85, 300 }, + [20] = { 89.3, 32.3, 85, 300 }, + [21] = { 89.1, 32.3, 85, 300 }, + [22] = { 89.2, 32.3, 85, 300 }, + [23] = { 89.5, 32.1, 85, 300 }, + [24] = { 89.4, 32.1, 85, 300 }, + [25] = { 89.3, 32.1, 85, 300 }, + [26] = { 89.3, 32, 85, 300 }, + [27] = { 89.2, 31.9, 85, 300 }, + [28] = { 60.4, 9.6, 1497, 300 }, + [29] = { 57.5, 8.3, 1497, 300 }, + }, + }, + [2004771] = { + ["coords"] = { + [1] = { 34.1, 18.2, 28, 0 }, + [2] = { 60.5, 67.1, 85, 300 }, + [3] = { 60.2, 67, 85, 300 }, + [4] = { 59.7, 66.8, 85, 300 }, + [5] = { 90.4, 33, 85, 0 }, + [6] = { 60, 9.8, 1497, 300 }, + [7] = { 58.6, 9.3, 1497, 300 }, + }, + }, + [2004772] = { + ["coords"] = {}, + }, + [2004773] = { + ["coords"] = {}, + }, + [2004774] = { + ["coords"] = {}, + }, + [2004775] = { + ["coords"] = {}, + }, + [2004776] = { + ["coords"] = {}, + }, + [2004777] = { + ["coords"] = {}, + }, + [2004778] = { + ["coords"] = {}, + }, + [2004779] = { + ["coords"] = { + [1] = { 87.2, 54.8, 85, 300 }, + }, + }, + [2004780] = { + ["coords"] = {}, + }, + [2004781] = { + ["coords"] = {}, + }, + [2004782] = { + ["coords"] = {}, + }, + [2004783] = { + ["coords"] = {}, + }, + [2004784] = { + ["coords"] = {}, + }, + [2004785] = { + ["coords"] = { + [1] = { 75.8, 84.5, 5208, 300 }, + [2] = { 75.7, 84.3, 5208, 300 }, + }, + }, + [2004786] = { + ["coords"] = { + [1] = { 80.8, 63.6, 28, 300 }, + [2] = { 33.5, 22.2, 28, 300 }, + [3] = { 33.4, 21.9, 28, 300 }, + [4] = { 60.1, 66.8, 85, 300 }, + [5] = { 59.5, 66.8, 85, 300 }, + [6] = { 89.8, 36.7, 85, 300 }, + [7] = { 89.7, 36.5, 85, 300 }, + [8] = { 22.5, 87.4, 139, 300 }, + [9] = { 58.1, 8.4, 1497, 300 }, + }, + }, + [2004787] = { + ["coords"] = {}, + }, + [2004788] = { + ["coords"] = { + [1] = { 60.5, 68.7, 85, 300 }, + [2] = { 51.2, 68.1, 85, 300 }, + [3] = { 61.9, 65.7, 85, 300 }, + [4] = { 78.9, 56.4, 85, 300 }, + [5] = { 79.1, 56, 85, 300 }, + [6] = { 79.5, 25.7, 85, 300 }, + [7] = { 79.2, 25.4, 85, 300 }, + [8] = { 58.3, 37.6, 1497, 300 }, + [9] = { 61.8, 32.5, 1497, 300 }, + [10] = { 66.1, 22.3, 1497, 300 }, + [11] = { 59.6, 17.3, 1497, 300 }, + [12] = { 66.2, 3.3, 1497, 300 }, + }, + }, + [2004789] = { + ["coords"] = {}, + }, + [2004790] = { + ["coords"] = {}, + }, + [2004791] = { + ["coords"] = {}, + }, + [2004792] = { + ["coords"] = {}, + }, + [2004793] = { + ["coords"] = {}, + }, + [2004794] = { + ["coords"] = {}, + }, + [2004795] = { + ["coords"] = {}, + }, + [2004796] = { + ["coords"] = {}, + }, + [2004797] = { + ["coords"] = {}, + }, + [2004798] = { + ["coords"] = {}, + }, + [2004799] = { + ["coords"] = {}, + }, + [2004800] = { + ["coords"] = { + [1] = { 60.9, 59.5, 1497, 300 }, + }, + }, + [2004801] = { + ["coords"] = {}, + }, + [2004802] = { + ["coords"] = {}, + }, + [2004803] = { + ["coords"] = {}, + }, + [2004804] = { + ["coords"] = {}, + }, + [2004805] = { + ["coords"] = {}, + }, + [2004806] = { + ["coords"] = {}, + }, + [2004807] = { + ["coords"] = {}, + }, + [2004808] = { + ["coords"] = {}, + }, + [2004809] = { + ["coords"] = {}, + }, + [2004810] = { + ["coords"] = {}, + }, + [2004811] = { + ["coords"] = {}, + }, + [2004812] = { + ["coords"] = {}, + }, + [2004813] = { + ["coords"] = {}, + }, + [2004814] = { + ["coords"] = {}, + }, + [2004815] = { + ["coords"] = {}, + }, + [2004816] = { + ["coords"] = {}, + }, + [2004817] = { + ["coords"] = {}, + }, + [2004818] = { + ["coords"] = {}, + }, + [2004819] = { + ["coords"] = {}, + }, + [2004820] = { + ["coords"] = {}, + }, + [2004821] = { + ["coords"] = {}, + }, + [2004822] = { + ["coords"] = {}, + }, + [2004823] = { + ["coords"] = {}, + }, + [2004824] = { + ["coords"] = {}, + }, + [2004825] = { + ["coords"] = {}, + }, + [2004826] = { + ["coords"] = {}, + }, + [2004827] = { + ["coords"] = { + [1] = { 59.4, 67.4, 85, 300 }, + [2] = { 54.4, 11.3, 1497, 300 }, + }, + }, + [2004828] = { + ["coords"] = { + [1] = { 25.6, 40.2, 85, 300 }, + }, + }, + [2004829] = { + ["coords"] = {}, + }, + [2004830] = { + ["coords"] = { + [1] = { 56.9, 38.5, 5179, 300 }, + }, + }, + [2004831] = { + ["coords"] = { + [1] = { 89.3, 67.8, 5086, 300 }, + }, + }, + [2004832] = { + ["coords"] = {}, + }, + [2004833] = { + ["coords"] = {}, + }, + [2004834] = { + ["coords"] = {}, + }, + [2004835] = { + ["coords"] = {}, + }, + [2004836] = { + ["coords"] = {}, + }, + [2004837] = { + ["coords"] = { + [1] = { 42.5, 72.7, 15, 25 }, + [2] = { 61.1, 24.4, 17, 300 }, + [3] = { 41.6, 10.2, 130, 300 }, + [4] = { 24.4, 13.8, 406, 25 }, + [5] = { 61.5, 56, 1497, 300 }, + [6] = { 32.9, 75.5, 5179, 300 }, + }, + }, + [2004838] = { + ["coords"] = { + [1] = { 62.6, 59.2, 1497, 300 }, + }, + }, + [2004839] = { + ["coords"] = {}, + }, + [2004840] = { + ["coords"] = {}, + }, + [2004841] = { + ["coords"] = {}, + }, + [2004842] = { + ["coords"] = {}, + }, + [2004843] = { + ["coords"] = { + [1] = { 62.4, 56.5, 1497, 300 }, + }, + }, + [2004844] = { + ["coords"] = { + [1] = { 62.3, 58.6, 1497, 300 }, + [2] = { 61.2, 55.5, 1497, 300 }, + }, + }, + [2004845] = { + ["coords"] = {}, + }, + [2004846] = { + ["coords"] = { + [1] = { 61, 55.5, 1497, 300 }, + }, + }, + [2004847] = { + ["coords"] = { + [1] = { 60.5, 58.3, 1497, 300 }, + }, + }, + [2004848] = { + ["coords"] = {}, + }, + [2004849] = { + ["coords"] = {}, + }, + [2004850] = { + ["coords"] = {}, + }, + [2004851] = { + ["coords"] = {}, + }, + [2004852] = { + ["coords"] = {}, + }, + [2004853] = { + ["coords"] = {}, + }, + [2004854] = { + ["coords"] = {}, + }, + [2004855] = { + ["coords"] = {}, + }, + [2004856] = { + ["coords"] = {}, + }, + [2004857] = { + ["coords"] = {}, + }, + [2004858] = { + ["coords"] = {}, + }, + [2004859] = { + ["coords"] = {}, + }, + [2004860] = { + ["coords"] = {}, + }, + [2004861] = { + ["coords"] = {}, + }, + [2004862] = { + ["coords"] = {}, + }, + [2004863] = { + ["coords"] = {}, + }, + [2004864] = { + ["coords"] = {}, + }, + [2004865] = { + ["coords"] = {}, + }, + [2004866] = { + ["coords"] = {}, + }, + [2004867] = { + ["coords"] = {}, + }, + [2004868] = { + ["coords"] = {}, + }, + [2004869] = { + ["coords"] = {}, + }, + [2004870] = { + ["coords"] = {}, + }, + [2004871] = { + ["coords"] = {}, + }, + [2004872] = { + ["coords"] = {}, + }, + [2004873] = { + ["coords"] = {}, + }, + [2004874] = { + ["coords"] = {}, + }, + [2004875] = { + ["coords"] = {}, + }, + [2004876] = { + ["coords"] = {}, + }, + [2004877] = { + ["coords"] = {}, + }, + [2004878] = { + ["coords"] = {}, + }, + [2004879] = { + ["coords"] = {}, + }, + [2004880] = { + ["coords"] = {}, + }, + [2004881] = { + ["coords"] = {}, + }, + [2004882] = { + ["coords"] = {}, + }, + [2004883] = { + ["coords"] = {}, + }, + [2004884] = { + ["coords"] = {}, + }, + [2004885] = { + ["coords"] = {}, + }, + [2004886] = { + ["coords"] = {}, + }, + [2004887] = { + ["coords"] = { + [1] = { 72.1, 54, 1497, 300 }, + [2] = { 72.6, 53.3, 1497, 300 }, + }, + }, + [2004888] = { + ["coords"] = { + [1] = { 23.7, 58.7, 85, 300 }, + [2] = { 59, 53.8, 1497, 300 }, + [3] = { 42.5, 43.2, 5179, 300 }, + [4] = { 39.9, 42.7, 5208, 300 }, + }, + }, + [2004889] = { + ["coords"] = { + [1] = { 48.3, 19, 17, 300 }, + }, + }, + [2004890] = { + ["coords"] = {}, + }, + [2004891] = { + ["coords"] = { + [1] = { 34, 48.2, 10, 300 }, + [2] = { 58.1, 99.7, 14, 300 }, + [3] = { 75.6, 49.1, 17, 300 }, + [4] = { 80.4, 59.9, 28, 300 }, + [5] = { 51, 67.4, 85, 300 }, + [6] = { 16.4, 54, 85, 300 }, + [7] = { 16.6, 53.9, 85, 300 }, + [8] = { 22.1, 83.3, 139, 300 }, + [9] = { 43.7, 15.8, 357, 25 }, + }, + }, + [2004892] = { + ["coords"] = {}, + }, + [2004893] = { + ["coords"] = {}, + }, + [2004894] = { + ["coords"] = { + [1] = { 25.5, 30.4, 1, 300 }, + [2] = { 61.2, 32.4, 15, 300 }, + [3] = { 61.3, 32.1, 15, 300 }, + [4] = { 78.1, 76.7, 38, 25 }, + [5] = { 78.2, 76.7, 38, 25 }, + [6] = { 78.1, 76.6, 38, 25 }, + [7] = { 78.2, 76.5, 38, 25 }, + [8] = { 78.1, 76.5, 38, 25 }, + [9] = { 43.8, 15.9, 357, 25 }, + [10] = { 43.7, 15.8, 357, 25 }, + [11] = { 58, 22.4, 440, 300 }, + [12] = { 58, 22, 440, 300 }, + [13] = { 84.3, 18, 721, 300 }, + [14] = { 68.4, 47.4, 1519, 25 }, + [15] = { 65.5, 47.2, 1519, 25 }, + [16] = { 67.6, 47.1, 1519, 25 }, + [17] = { 65.4, 47.1, 1519, 25 }, + [18] = { 65.3, 47, 1519, 25 }, + [19] = { 68.4, 47, 1519, 25 }, + [20] = { 64.2, 45.3, 1519, 25 }, + [21] = { 39.3, 72.3, 2040, 25 }, + [22] = { 39.5, 72.2, 2040, 25 }, + [23] = { 39, 72.2, 2040, 25 }, + [24] = { 38.8, 72.1, 2040, 25 }, + [25] = { 39.8, 72.1, 2040, 25 }, + [26] = { 38.5, 72, 2040, 25 }, + [27] = { 40, 72, 2040, 25 }, + [28] = { 38.3, 71.8, 2040, 25 }, + [29] = { 40.2, 71.8, 2040, 25 }, + [30] = { 38.1, 71.5, 2040, 25 }, + [31] = { 40.4, 71.5, 2040, 25 }, + [32] = { 38, 71.2, 2040, 25 }, + [33] = { 37.9, 70.8, 2040, 25 }, + [34] = { 40.8, 70.6, 2040, 25 }, + [35] = { 42.1, 69.5, 2040, 25 }, + [36] = { 40.9, 69.2, 2040, 25 }, + [37] = { 43.1, 68.3, 2040, 25 }, + [38] = { 43.3, 68, 2040, 25 }, + [39] = { 43.4, 67.8, 2040, 25 }, + [40] = { 43.6, 67.5, 2040, 25 }, + [41] = { 43.7, 67.1, 2040, 25 }, + [42] = { 23.8, 64.3, 2040, 25 }, + [43] = { 56.5, 36.4, 5225, 25 }, + [44] = { 56.6, 36.4, 5225, 25 }, + [45] = { 56.3, 36.4, 5225, 25 }, + [46] = { 56.2, 36.3, 5225, 25 }, + [47] = { 56.7, 36.3, 5225, 25 }, + [48] = { 56.1, 36.3, 5225, 25 }, + [49] = { 56.8, 36.3, 5225, 25 }, + [50] = { 56, 36.2, 5225, 25 }, + [51] = { 56.9, 36.2, 5225, 25 }, + [52] = { 55.9, 36, 5225, 25 }, + [53] = { 57, 36, 5225, 25 }, + [54] = { 55.9, 35.9, 5225, 25 }, + [55] = { 55.8, 35.7, 5225, 25 }, + [56] = { 57.2, 35.6, 5225, 25 }, + [57] = { 57.8, 35.1, 5225, 25 }, + [58] = { 57.3, 35, 5225, 25 }, + [59] = { 58.3, 34.5, 5225, 25 }, + [60] = { 58.4, 34.4, 5225, 25 }, + [61] = { 58.5, 34.3, 5225, 25 }, + [62] = { 58.5, 34.1, 5225, 25 }, + [63] = { 58.6, 34, 5225, 25 }, + [64] = { 49.1, 32.7, 5225, 25 }, + [65] = { 38.6, 83.6, 5602, 25 }, + [66] = { 38.6, 83.5, 5602, 25 }, + [67] = { 38.5, 83.5, 5602, 25 }, + [68] = { 38.6, 83.4, 5602, 25 }, + }, + }, + [2004895] = { + ["coords"] = { + [1] = { 67.4, 27.2, 440, 300 }, + }, + }, + [2004896] = { + ["coords"] = { + [1] = { 29.9, 86.8, 405, 300 }, + [2] = { 67.5, 27.5, 440, 300 }, + [3] = { 67.5, 27, 440, 300 }, + [4] = { 67.8, 26.8, 440, 300 }, + [5] = { 67.6, 26.8, 440, 300 }, + [6] = { 67.6, 26.6, 440, 300 }, + [7] = { 67.8, 26.5, 440, 300 }, + [8] = { 67.4, 26.4, 440, 300 }, + [9] = { 67.2, 25.4, 440, 300 }, + }, + }, + [2004897] = { + ["coords"] = {}, + }, + [2004898] = { + ["coords"] = {}, + }, + [2004899] = { + ["coords"] = { + [1] = { 73.8, 49.6, 17, 300 }, + [2] = { 49.7, 30.9, 618, 300 }, + [3] = { 67.7, 27.5, 1519, 300 }, + [4] = { 29.6, 10.2, 1519, 300 }, + [5] = { 52.8, 92.1, 5581, 300 }, + [6] = { 32.4, 82.8, 5581, 300 }, + }, + }, + [2004900] = { + ["coords"] = { + [1] = { 29.6, 10.2, 1519, 300 }, + [2] = { 32.4, 82.8, 5581, 300 }, + }, + }, + [2004901] = { + ["coords"] = {}, + }, + [2004902] = { + ["coords"] = { + [1] = { 54.4, 1.1, 17, 300 }, + [2] = { 79.5, 81.6, 331, 300 }, + }, + }, + [2004903] = { + ["coords"] = {}, + }, + [2004904] = { + ["coords"] = { + [1] = { 29.4, 44.7, 28, 300 }, + [2] = { 85.9, 58.1, 85, 300 }, + }, + }, + [2004905] = { + ["coords"] = {}, + }, + [2004906] = { + ["coords"] = { + [1] = { 75.5, 49.6, 17, 300 }, + [2] = { 27.7, 15.2, 1519, 300 }, + [3] = { 31.4, 85.5, 5581, 300 }, + }, + }, + [2004907] = { + ["coords"] = {}, + }, + [2004908] = { + ["coords"] = {}, + }, + [2004909] = { + ["coords"] = {}, + }, + [2004910] = { + ["coords"] = { + [1] = { 54.1, 1.3, 17, 300 }, + [2] = { 79.1, 81.8, 331, 300 }, + }, + }, + [2004911] = { + ["coords"] = { + [1] = { 54.3, 84.6, 408, 300 }, + }, + }, + [2004912] = { + ["coords"] = {}, + }, + [2004913] = { + ["coords"] = { + [1] = { 23, 12.2, 406, 300 }, + }, + }, + [2004914] = { + ["coords"] = {}, + }, + [2004915] = { + ["coords"] = { + [1] = { 48.1, 8.7, 17, 300 }, + }, + }, + [2004916] = { + ["coords"] = { + [1] = { 51, 49.2, 8, 300 }, + [2] = { 37.7, 71.7, 14, 300 }, + [3] = { 64.9, 34.5, 17, 300 }, + [4] = { 48.1, 8.7, 17, 300 }, + [5] = { 64.9, 11.8, 33, 300 }, + [6] = { 64.4, 11.4, 33, 300 }, + [7] = { 77, 75.6, 38, 25 }, + [8] = { 38, 83, 5602, 25 }, + }, + }, + [2004917] = { + ["coords"] = { + [1] = { 50.7, 49.8, 8, 300 }, + [2] = { 64.5, 11.4, 33, 300 }, + }, + }, + [2004918] = { + ["coords"] = { + [1] = { 48.1, 8.7, 17, 300 }, + }, + }, + [2004919] = { + ["coords"] = {}, + }, + [2004920] = { + ["coords"] = {}, + }, + [2004921] = { + ["coords"] = {}, + }, + [2004922] = { + ["coords"] = {}, + }, + [2004923] = { + ["coords"] = {}, + }, + [2004924] = { + ["coords"] = {}, + }, + [2004925] = { + ["coords"] = { + [1] = { 87.7, 49.2, 139, 300 }, + [2] = { 28.9, 19.9, 406, 25 }, + [3] = { 28.8, 19.9, 406, 25 }, + [4] = { 48.4, 26.5, 4012, 300 }, + }, + }, + [2004926] = { + ["coords"] = {}, + }, + [2004927] = { + ["coords"] = {}, + }, + [2004928] = { + ["coords"] = {}, + }, + [2004929] = { + ["coords"] = {}, + }, + [2004930] = { + ["coords"] = { + [1] = { 62.6, 58.5, 1497, 300 }, + [2] = { 61.2, 56.1, 1497, 300 }, + }, + }, + [2004931] = { + ["coords"] = {}, + }, + [2004932] = { + ["coords"] = { + [1] = { 74.7, 42.5, 357, 300 }, + [2] = { 68.2, 27.4, 1637, 25 }, + }, + }, + [2004933] = { + ["coords"] = { + [1] = { 37.9, 71.5, 14, 300 }, + [2] = { 65, 34.4, 17, 300 }, + [3] = { 24.3, 12.7, 406, 300 }, + [4] = { 52.8, 49.8, 876, 300 }, + }, + }, + [2004934] = { + ["coords"] = {}, + }, + [2004935] = { + ["coords"] = {}, + }, + [2004936] = { + ["coords"] = {}, + }, + [2004937] = { + ["coords"] = {}, + }, + [2004938] = { + ["coords"] = { + [1] = { 57.2, 27.6, 5087, 300 }, + }, + }, + [2004939] = { + ["coords"] = { + [1] = { 53.9, 26.5, 5087, 300 }, + [2] = { 57.5, 22.8, 5087, 300 }, + }, + }, + [2004940] = { + ["coords"] = {}, + }, + [2004941] = { + ["coords"] = {}, + }, + [2004942] = { + ["coords"] = {}, + }, + [2004943] = { + ["coords"] = {}, + }, + [2004944] = { + ["coords"] = {}, + }, + [2004945] = { + ["coords"] = {}, + }, + [2004946] = { + ["coords"] = {}, + }, + [2004947] = { + ["coords"] = {}, + }, + [2004948] = { + ["coords"] = {}, + }, + [2004949] = { + ["coords"] = {}, + }, + [2004950] = { + ["coords"] = {}, + }, + [2004951] = { + ["coords"] = {}, + }, + [2004952] = { + ["coords"] = {}, + }, + [2004953] = { + ["coords"] = {}, + }, + [2004954] = { + ["coords"] = {}, + }, + [2004955] = { + ["coords"] = {}, + }, + [2004956] = { + ["coords"] = {}, + }, + [2004957] = { + ["coords"] = {}, + }, + [2004958] = { + ["coords"] = {}, + }, + [2004959] = { + ["coords"] = {}, + }, + [2004960] = { + ["coords"] = { + [1] = { 60.4, 24, 14, 300 }, + [2] = { 60.1, 24, 14, 300 }, + }, + }, + [2004961] = { + ["coords"] = { + [1] = { 66.5, 24.2, 440, 300 }, + }, + }, + [2004962] = { + ["coords"] = {}, + }, + [2004963] = { + ["coords"] = {}, + }, + [2004964] = { + ["coords"] = {}, + }, + [2004965] = { + ["coords"] = {}, + }, + [2004966] = { + ["coords"] = {}, + }, + [2004967] = { + ["coords"] = {}, + }, + [2004968] = { + ["coords"] = { + [1] = { 23.9, 33.4, 1, 300 }, + [2] = { 26.5, 31.5, 1, 300 }, + [3] = { 26.8, 30.4, 1, 300 }, + [4] = { 25.5, 30.3, 1, 300 }, + [5] = { 23.5, 29.2, 1, 300 }, + [6] = { 24.6, 28.9, 1, 300 }, + [7] = { 23.4, 28.1, 1, 300 }, + [8] = { 23.5, 28, 1, 300 }, + [9] = { 61.8, 12.4, 16, 300 }, + [10] = { 70.4, 43.8, 721, 300 }, + [11] = { 93.2, 27.5, 721, 300 }, + [12] = { 95.1, 18.2, 721, 300 }, + [13] = { 84.4, 17.5, 721, 300 }, + [14] = { 67, 7.5, 721, 300 }, + [15] = { 76.4, 5.4, 721, 300 }, + }, + }, + [2004969] = { + ["coords"] = { + [1] = { 25.3, 30.3, 1, 300 }, + [2] = { 82.9, 17.7, 721, 300 }, + }, + }, + [2004970] = { + ["coords"] = { + [1] = { 23.5, 28.3, 1, 300 }, + [2] = { 24.3, 27.8, 1, 300 }, + [3] = { 24.1, 27.7, 1, 300 }, + [4] = { 66.7, 0.3, 721, 300 }, + }, + }, + [2004971] = { + ["coords"] = { + [1] = { 61.2, 36.9, 618, 300 }, + }, + }, + [2004972] = { + ["coords"] = { + [1] = { 41.5, 73.2, 15, 25 }, + }, + }, + [2004973] = { + ["coords"] = {}, + }, + [2004974] = { + ["coords"] = { + [1] = { 48.2, 48.4, 8, 300 }, + [2] = { 31.3, 47.5, 33, 300 }, + [3] = { 51.6, 25, 45, 300 }, + [4] = { 29.8, 85.7, 47, 300 }, + [5] = { 79, 80.7, 47, 300 }, + }, + }, + [2004975] = { + ["coords"] = { + [1] = { 44.9, 79.6, 5121, 300 }, + [2] = { 44.8, 79.6, 5121, 300 }, + }, + }, + [2004976] = { + ["coords"] = {}, + }, + [2004977] = { + ["coords"] = {}, + }, + [2004978] = { + ["coords"] = { + [1] = { 26, 69.1, 15, 300 }, + [2] = { 49, 89.8, 17, 300 }, + }, + }, + [2004979] = { + ["coords"] = {}, + }, + [2004980] = { + ["coords"] = {}, + }, + [2004981] = { + ["coords"] = {}, + }, + [2004982] = { + ["coords"] = { + [1] = { 64, 62.3, 5087, 300 }, + [2] = { 44.8, 57.7, 5087, 900 }, + [3] = { 76.9, 52.7, 5087, 300 }, + }, + }, + [2004983] = { + ["coords"] = {}, + }, + [2004984] = { + ["coords"] = {}, + }, + [2004985] = { + ["coords"] = { + [1] = { 30.9, 57.2, 5561, 300 }, + }, + }, + [2004986] = { + ["coords"] = {}, + }, + [2004987] = { + ["coords"] = {}, + }, + [2004988] = { + ["coords"] = {}, + }, + [2004989] = { + ["coords"] = {}, + }, + [2004990] = { + ["coords"] = {}, + }, + [2004991] = { + ["coords"] = {}, + }, + [2004992] = { + ["coords"] = { + [1] = { 59.9, 52.8, 440, 0 }, + [2] = { 48.4, 31.4, 1941, 0 }, + }, + }, + [2004993] = { + ["coords"] = {}, + }, + [2004994] = { + ["coords"] = {}, + }, + [2004995] = { + ["coords"] = {}, + }, + [2004996] = { + ["coords"] = { + [1] = { 21.9, 37.5, 1519, 300 }, + [2] = { 28.3, 97.5, 5581, 300 }, + }, + }, + [2004997] = { + ["coords"] = {}, + }, + [2004998] = { + ["coords"] = {}, + }, + [2004999] = { + ["coords"] = {}, + }, + [2005000] = { + ["coords"] = {}, + }, + [2005001] = { + ["coords"] = {}, + }, + [2005002] = { + ["coords"] = {}, + }, + [2005003] = { + ["coords"] = {}, + }, + [2005004] = { + ["coords"] = { + [1] = { 31.3, 63, 141, 300 }, + [2] = { 28, 57.9, 141, 300 }, + [3] = { 67.8, 77.1, 1657, 300 }, + [4] = { 51.9, 53, 1657, 300 }, + }, + }, + [2005005] = { + ["coords"] = { + [1] = { 44.9, 47.2, 2040, 300 }, + [2] = { 59.2, 24.5, 5225, 300 }, + }, + }, + [2005006] = { + ["coords"] = {}, + }, + [2005007] = { + ["coords"] = {}, + }, + [2005008] = { + ["coords"] = {}, + }, + [2005009] = { + ["coords"] = {}, + }, + [2005010] = { + ["coords"] = { + [1] = { 64.4, 15.6, 4, 300 }, + [2] = { 64.3, 15.6, 4, 300 }, + [3] = { 64.4, 15.5, 4, 300 }, + [4] = { 64.3, 15.5, 4, 300 }, + [5] = { 27.1, 67.5, 2040, 25 }, + [6] = { 50.7, 34.2, 5225, 25 }, + }, + }, + [2005011] = { + ["coords"] = { + [1] = { 67.8, 59.6, 3, 300 }, + [2] = { 44.5, 45, 16, 300 }, + [3] = { 50.8, 29.9, 618, 300 }, + [4] = { 27, 68.3, 2040, 25 }, + [5] = { 50.6, 34.5, 5225, 25 }, + }, + }, + [2005012] = { + ["coords"] = {}, + }, + [2005013] = { + ["coords"] = { + [1] = { 40.6, 68.5, 14, 300 }, + [2] = { 66.4, 32.8, 17, 300 }, + [3] = { 29.5, 44.8, 28, 300 }, + [4] = { 86, 58.2, 85, 300 }, + [5] = { 31.3, 15.1, 5557, 300 }, + }, + }, + [2005014] = { + ["coords"] = { + [1] = { 25.9, 46.6, 28, 300 }, + [2] = { 82.6, 59.9, 85, 300 }, + }, + }, + [2005015] = { + ["coords"] = { + [1] = { 74.2, 32, 45, 300 }, + [2] = { 72.5, 58.4, 331, 300 }, + [3] = { 43.6, 17.3, 357, 25 }, + [4] = { 60.1, 39.8, 409, 300 }, + [5] = { 73.6, 33, 1497, 300 }, + }, + }, + [2005016] = { + ["coords"] = { + [1] = { 59.1, 75.1, 38, 300 }, + [2] = { 83, 64.6, 38, 25 }, + [3] = { 37.4, 75.1, 1519, 300 }, + [4] = { 28.8, 82.7, 5602, 300 }, + [5] = { 41, 77.3, 5602, 25 }, + }, + }, + [2005017] = { + ["coords"] = {}, + }, + [2005018] = { + ["coords"] = {}, + }, + [2005019] = { + ["coords"] = {}, + }, + [2005020] = { + ["coords"] = {}, + }, + [2005021] = { + ["coords"] = {}, + }, + [2005022] = { + ["coords"] = { + [1] = { 40, 84.5, 33, 0 }, + }, + }, + [2005023] = { + ["coords"] = {}, + }, + [2005024] = { + ["coords"] = {}, + }, + [2005025] = { + ["coords"] = {}, + }, + [2005026] = { + ["coords"] = { + [1] = { 58, 20.6, 33, 300 }, + }, + }, + [2005027] = { + ["coords"] = { + [1] = { 58.2, 73.8, 38, 300 }, + [2] = { 4.4, 62.1, 85, 300 }, + [3] = { 82.9, 54.8, 400, 300 }, + [4] = { 28.3, 82.1, 5602, 300 }, + }, + }, + [2005028] = { + ["coords"] = { + [1] = { 83.7, 65.5, 38, 25 }, + [2] = { 50.1, 25.3, 5087, 300 }, + [3] = { 41.4, 77.8, 5602, 25 }, + }, + }, + [2005029] = { + ["coords"] = { + [1] = { 83.4, 64.9, 38, 25 }, + [2] = { 41.3, 77.5, 5602, 25 }, + }, + }, + [2005030] = { + ["coords"] = {}, + }, + [2005031] = { + ["coords"] = {}, + }, + [2005032] = { + ["coords"] = { + [1] = { 55.1, 55, 876, 300 }, + [2] = { 70.8, 46.3, 1497, 300 }, + [3] = { 62.8, 84.2, 5121, 300 }, + }, + }, + [2005033] = { + ["coords"] = { + [1] = { 64.3, 59.1, 876, 300 }, + }, + }, + [2005034] = { + ["coords"] = {}, + }, + [2005035] = { + ["coords"] = {}, + }, + [2005036] = { + ["coords"] = {}, + }, + [2005037] = { + ["coords"] = {}, + }, + [2005038] = { + ["coords"] = {}, + }, + [2005039] = { + ["coords"] = {}, + }, + [2005040] = { + ["coords"] = { + [1] = { 26.7, 64.8, 141, 300 }, + [2] = { 45.5, 85.8, 1657, 300 }, + }, + }, + [2005041] = { + ["coords"] = {}, + }, + [2005042] = { + ["coords"] = {}, + }, + [2005043] = { + ["coords"] = { + [1] = { 85.8, 45.8, 331, 300 }, + }, + }, + [2005044] = { + ["coords"] = { + [1] = { 44.4, 73.4, 331, 300 }, + [2] = { 79.9, 39.7, 406, 300 }, + }, + }, + [2005045] = { + ["coords"] = {}, + }, + [2005046] = { + ["coords"] = {}, + }, + [2005047] = { + ["coords"] = {}, + }, + [2005048] = { + ["coords"] = {}, + }, + [2005049] = { + ["coords"] = {}, + }, + [2005050] = { + ["coords"] = {}, + }, + [2005051] = { + ["coords"] = {}, + }, + [2005052] = { + ["coords"] = {}, + }, + [2005053] = { + ["coords"] = {}, + }, + [2005054] = { + ["coords"] = {}, + }, + [2005055] = { + ["coords"] = {}, + }, + [2005056] = { + ["coords"] = {}, + }, + [2005057] = { + ["coords"] = {}, + }, + [2005058] = { + ["coords"] = {}, + }, + [2005059] = { + ["coords"] = {}, + }, + [2005060] = { + ["coords"] = {}, + }, + [2005061] = { + ["coords"] = { + [1] = { 27.3, 64.9, 141, 300 }, + [2] = { 48.7, 86.2, 1657, 300 }, + }, + }, + [2005062] = { + ["coords"] = {}, + }, + [2005063] = { + ["coords"] = { + [1] = { 81.2, 75.2, 331, 0 }, + }, + }, + [2005064] = { + ["coords"] = {}, + }, + [2005065] = { + ["coords"] = {}, + }, + [2005066] = { + ["coords"] = {}, + }, + [2005067] = { + ["coords"] = {}, + }, + [2005068] = { + ["coords"] = {}, + }, + [2005069] = { + ["coords"] = { + [1] = { 95.8, 26.4, 331, 300 }, + }, + }, + [2005070] = { + ["coords"] = {}, + }, + [2005071] = { + ["coords"] = {}, + }, + [2005072] = { + ["coords"] = {}, + }, + [2005073] = { + ["coords"] = {}, + }, + [2005074] = { + ["coords"] = {}, + }, + [2005075] = { + ["coords"] = {}, + }, + [2005076] = { + ["coords"] = {}, + }, + [2005077] = { + ["coords"] = {}, + }, + [2005078] = { + ["coords"] = {}, + }, + [2005079] = { + ["coords"] = {}, + }, + [2005080] = { + ["coords"] = {}, + }, + [2005081] = { + ["coords"] = {}, + }, + [2005082] = { + ["coords"] = {}, + }, + [2005083] = { + ["coords"] = {}, + }, + [2005084] = { + ["coords"] = {}, + }, + [2005085] = { + ["coords"] = {}, + }, + [2005086] = { + ["coords"] = {}, + }, + [2005087] = { + ["coords"] = {}, + }, + [2005088] = { + ["coords"] = {}, + }, + [2005089] = { + ["coords"] = {}, + }, + [2005090] = { + ["coords"] = {}, + }, + [2005091] = { + ["coords"] = {}, + }, + [2005092] = { + ["coords"] = {}, + }, + [2005093] = { + ["coords"] = { + [1] = { 82.9, 54.8, 400, 300 }, + }, + }, + [2005094] = { + ["coords"] = {}, + }, + [2005095] = { + ["coords"] = {}, + }, + [2005096] = { + ["coords"] = {}, + }, + [2005097] = { + ["coords"] = {}, + }, + [2005098] = { + ["coords"] = {}, + }, + [2005099] = { + ["coords"] = {}, + }, + [2005100] = { + ["coords"] = {}, + }, + [2005101] = { + ["coords"] = {}, + }, + [2005102] = { + ["coords"] = {}, + }, + [2005103] = { + ["coords"] = {}, + }, + [2005104] = { + ["coords"] = {}, + }, + [2005105] = { + ["coords"] = {}, + }, + [2005106] = { + ["coords"] = {}, + }, + [2005107] = { + ["coords"] = {}, + }, + [2005108] = { + ["coords"] = {}, + }, + [2005109] = { + ["coords"] = {}, + }, + [2005110] = { + ["coords"] = { + [1] = { 59.9, 55.8, 1519, 300 }, + [2] = { 66.3, 43.8, 5536, 300 }, + }, + }, + [2005111] = { + ["coords"] = { + [1] = { 27.7, 77.1, 33, 300 }, + }, + }, + [2005112] = { + ["coords"] = { + [1] = { 27.7, 77.1, 33, 300 }, + }, + }, + [2005113] = { + ["coords"] = { + [1] = { 27.8, 77.2, 33, 300 }, + [2] = { 27.7, 77.1, 33, 300 }, + }, + }, + [2005114] = { + ["coords"] = {}, + }, + [2005115] = { + ["coords"] = {}, + }, + [2005116] = { + ["coords"] = {}, + }, + [2005117] = { + ["coords"] = {}, + }, + [2005118] = { + ["coords"] = {}, + }, + [2005119] = { + ["coords"] = {}, + }, + [2005120] = { + ["coords"] = {}, + }, + [2005121] = { + ["coords"] = {}, + }, + [2005122] = { + ["coords"] = {}, + }, + [2005123] = { + ["coords"] = {}, + }, + [2005124] = { + ["coords"] = {}, + }, + [2005125] = { + ["coords"] = {}, + }, + [2005126] = { + ["coords"] = {}, + }, + [2005127] = { + ["coords"] = {}, + }, + [2005128] = { + ["coords"] = {}, + }, + [2005129] = { + ["coords"] = {}, + }, + [2005130] = { + ["coords"] = {}, + }, + [2005131] = { + ["coords"] = {}, + }, + [2005132] = { + ["coords"] = {}, + }, + [2005133] = { + ["coords"] = {}, + }, + [2005134] = { + ["coords"] = {}, + }, + [2005135] = { + ["coords"] = {}, + }, + [2005136] = { + ["coords"] = {}, + }, + [2005137] = { + ["coords"] = {}, + }, + [2005138] = { + ["coords"] = {}, + }, + [2005139] = { + ["coords"] = {}, + }, + [2005140] = { + ["coords"] = {}, + }, + [2005141] = { + ["coords"] = {}, + }, + [2005142] = { + ["coords"] = {}, + }, + [2005143] = { + ["coords"] = {}, + }, + [2005144] = { + ["coords"] = { + [1] = { 45.8, 46.1, 5179, 300 }, + [2] = { 46.4, 46, 5179, 300 }, + [3] = { 44.5, 45.8, 5179, 300 }, + [4] = { 45.7, 45.5, 5179, 300 }, + [5] = { 44, 45.4, 5179, 300 }, + [6] = { 44.5, 45.3, 5179, 300 }, + [7] = { 43.6, 45.3, 5179, 300 }, + [8] = { 46.2, 45, 5179, 300 }, + [9] = { 45.8, 44.7, 5179, 300 }, + [10] = { 45.1, 44.7, 5179, 300 }, + [11] = { 43.6, 44.5, 5179, 300 }, + [12] = { 43, 44.4, 5179, 300 }, + [13] = { 45.9, 44.3, 5179, 300 }, + [14] = { 45.4, 44.2, 5179, 300 }, + [15] = { 44.9, 44.1, 5179, 300 }, + [16] = { 42.7, 44, 5179, 300 }, + [17] = { 45.1, 43.9, 5179, 300 }, + [18] = { 45.7, 43.6, 5179, 300 }, + [19] = { 43.9, 43.6, 5179, 300 }, + [20] = { 42.7, 43.2, 5179, 300 }, + [21] = { 43.7, 42.7, 5179, 300 }, + }, + }, + [2005145] = { + ["coords"] = {}, + }, + [2005146] = { + ["coords"] = {}, + }, + [2005147] = { + ["coords"] = {}, + }, + [2005148] = { + ["coords"] = { + [1] = { 21.4, 54.8, 331, 300 }, + [2] = { 57.9, 21.8, 406, 300 }, + }, + }, + [2005149] = { + ["coords"] = {}, + }, + [2005150] = { + ["coords"] = {}, + }, + [2005151] = { + ["coords"] = {}, + }, + [2005152] = { + ["coords"] = {}, + }, + [2005153] = { + ["coords"] = {}, + }, + [2005154] = { + ["coords"] = { + [1] = { 33, 76.2, 5179, 300 }, + }, + }, + [2005155] = { + ["coords"] = { + [1] = { 34.9, 9.8, 45, 300 }, + [2] = { 14.2, 71.5, 47, 300 }, + [3] = { 61.2, 44.2, 409, 300 }, + [4] = { 61.3, 44.1, 409, 300 }, + }, + }, + [2005156] = { + ["coords"] = {}, + }, + [2005157] = { + ["coords"] = {}, + }, + [2005158] = { + ["coords"] = {}, + }, + [2005159] = { + ["coords"] = {}, + }, + [2005160] = { + ["coords"] = {}, + }, + [2005161] = { + ["coords"] = {}, + }, + [2005162] = { + ["coords"] = {}, + }, + [2005163] = { + ["coords"] = {}, + }, + [2005164] = { + ["coords"] = {}, + }, + [2005165] = { + ["coords"] = {}, + }, + [2005166] = { + ["coords"] = {}, + }, + [2005167] = { + ["coords"] = {}, + }, + [2005168] = { + ["coords"] = {}, + }, + [2005169] = { + ["coords"] = {}, + }, + [2005170] = { + ["coords"] = {}, + }, + [2005171] = { + ["coords"] = {}, + }, + [2005172] = { + ["coords"] = { + [1] = { 49.1, 10, 17, 300 }, + [2] = { 79, 79.8, 331, 300 }, + }, + }, + [2005173] = { + ["coords"] = {}, + }, + [2005174] = { + ["coords"] = {}, + }, + [2005175] = { + ["coords"] = {}, + }, + [2005176] = { + ["coords"] = {}, + }, + [2005177] = { + ["coords"] = { + [1] = { 56.9, 57.7, 408, 300 }, + [2] = { 57.2, 57, 408, 300 }, + [3] = { 55.9, 56.6, 408, 300 }, + [4] = { 56, 56.5, 408, 300 }, + [5] = { 55.1, 54.3, 408, 300 }, + [6] = { 55, 54.1, 408, 300 }, + [7] = { 52.6, 53, 408, 300 }, + [8] = { 54.1, 49.7, 408, 300 }, + [9] = { 54.7, 48.7, 408, 300 }, + }, + }, + [2005178] = { + ["coords"] = { + [1] = { 82.5, 52.4, 47, 300 }, + [2] = { 56.8, 57.7, 408, 300 }, + [3] = { 56, 56.6, 408, 300 }, + [4] = { 55.1, 54.2, 408, 300 }, + [5] = { 52.5, 52.9, 408, 300 }, + [6] = { 54.1, 49.6, 408, 300 }, + [7] = { 54.7, 48.6, 408, 300 }, + }, + }, + [2005179] = { + ["coords"] = {}, + }, + [2005180] = { + ["coords"] = {}, + }, + [2005181] = { + ["coords"] = {}, + }, + [2005182] = { + ["coords"] = {}, + }, + [2005183] = { + ["coords"] = {}, + }, + [2005184] = { + ["coords"] = {}, + }, + [2005185] = { + ["coords"] = { + [1] = { 63.5, 18.7, 33, 300 }, + [2] = { 63.8, 16.1, 33, 300 }, + }, + }, + [2005186] = { + ["coords"] = { + [1] = { 63.8, 18.3, 33, 300 }, + [2] = { 63.6, 17.3, 33, 300 }, + }, + }, + [2005187] = { + ["coords"] = {}, + }, + [2005188] = { + ["coords"] = {}, + }, + [2005189] = { + ["coords"] = {}, + }, + [2005190] = { + ["coords"] = {}, + }, + [2005191] = { + ["coords"] = {}, + }, + [2005192] = { + ["coords"] = {}, + }, + [2005193] = { + ["coords"] = {}, + }, + [2005194] = { + ["coords"] = {}, + }, + [2005195] = { + ["coords"] = {}, + }, + [2005196] = { + ["coords"] = { + [1] = { 38.1, 8, 17, 300 }, + }, + }, + [2005197] = { + ["coords"] = {}, + }, + [2005198] = { + ["coords"] = {}, + }, + [2005199] = { + ["coords"] = {}, + }, + [2005200] = { + ["coords"] = {}, + }, + [2005201] = { + ["coords"] = {}, + }, + [2005202] = { + ["coords"] = {}, + }, + [2005203] = { + ["coords"] = {}, + }, + [2005204] = { + ["coords"] = {}, + }, + [2005205] = { + ["coords"] = { + [1] = { 26.3, 42.7, 85, 300 }, + }, + }, + [2005206] = { + ["coords"] = { + [1] = { 26.4, 42.7, 85, 300 }, + }, + }, + [2005207] = { + ["coords"] = { + [1] = { 25.5, 65.5, 16, 300 }, + }, + }, + [2005208] = { + ["coords"] = {}, + }, + [2005209] = { + ["coords"] = {}, + }, + [2005210] = { + ["coords"] = {}, + }, + [2005211] = { + ["coords"] = {}, + }, + [2005212] = { + ["coords"] = {}, + }, + [2005213] = { + ["coords"] = {}, + }, + [2005214] = { + ["coords"] = {}, + }, + [2005215] = { + ["coords"] = {}, + }, + [2005216] = { + ["coords"] = {}, + }, + [2005217] = { + ["coords"] = { + [1] = { 49.5, 67.9, 331, 300 }, + [2] = { 51.1, 67.8, 331, 300 }, + [3] = { 69, 29.6, 876, 300 }, + }, + }, + [2005218] = { + ["coords"] = { + [1] = { 50.2, 29.8, 618, 300 }, + }, + }, + [2005219] = { + ["coords"] = {}, + }, + [2005220] = { + ["coords"] = { + [1] = { 80.8, 73.8, 331, 300 }, + }, + }, + [2005221] = { + ["coords"] = {}, + }, + [2005222] = { + ["coords"] = {}, + }, + [2005223] = { + ["coords"] = {}, + }, + [2005224] = { + ["coords"] = {}, + }, + [2005225] = { + ["coords"] = {}, + }, + [2005226] = { + ["coords"] = {}, + }, + [2005227] = { + ["coords"] = {}, + }, + [2005228] = { + ["coords"] = {}, + }, + [2005229] = { + ["coords"] = {}, + }, + [2005230] = { + ["coords"] = { + [1] = { 49.8, 32, 618, 300 }, + [2] = { 49.6, 31.1, 618, 300 }, + [3] = { 49.1, 31.1, 618, 300 }, + [4] = { 51.3, 29.3, 618, 300 }, + }, + }, + [2005231] = { + ["coords"] = {}, + }, + [2005232] = { + ["coords"] = {}, + }, + [2005233] = { + ["coords"] = {}, + }, + [2005234] = { + ["coords"] = {}, + }, + [2005235] = { + ["coords"] = {}, + }, + [2005236] = { + ["coords"] = {}, + }, + [2005237] = { + ["coords"] = { + [1] = { 13.1, 78.8, 85, 300 }, + [2] = { 24, 7.3, 130, 300 }, + }, + }, + [2005238] = { + ["coords"] = {}, + }, + [2005239] = { + ["coords"] = { + [1] = { 39.2, 11, 490, 300 }, + [2] = { 39.2, 10.7, 490, 300 }, + }, + }, + [2005240] = { + ["coords"] = {}, + }, + [2005241] = { + ["coords"] = {}, + }, + [2005242] = { + ["coords"] = {}, + }, + [2005243] = { + ["coords"] = {}, + }, + [2005244] = { + ["coords"] = {}, + }, + [2005245] = { + ["coords"] = {}, + }, + [2005246] = { + ["coords"] = {}, + }, + [2005247] = { + ["coords"] = { + [1] = { 44.2, 43.1, 5179, 300 }, + }, + }, + [2005248] = { + ["coords"] = { + [1] = { 44.2, 43.4, 5179, 300 }, + }, + }, + [2005249] = { + ["coords"] = {}, + }, + [2005250] = { + ["coords"] = { + [1] = { 44.2, 43.5, 5179, 300 }, + }, + }, + [2005251] = { + ["coords"] = {}, + }, + [2005252] = { + ["coords"] = {}, + }, + [2005253] = { + ["coords"] = {}, + }, + [2005254] = { + ["coords"] = {}, + }, + [2005255] = { + ["coords"] = {}, + }, + [2005256] = { + ["coords"] = {}, + }, + [2005257] = { + ["coords"] = {}, + }, + [2005258] = { + ["coords"] = {}, + }, + [2005259] = { + ["coords"] = {}, + }, + [2005260] = { + ["coords"] = {}, + }, + [2005261] = { + ["coords"] = {}, + }, + [2005262] = { + ["coords"] = {}, + }, + [2005263] = { + ["coords"] = {}, + }, + [2005264] = { + ["coords"] = {}, + }, + [2005265] = { + ["coords"] = {}, + }, + [2005266] = { + ["coords"] = { + [1] = { 31.6, 89.4, 405, 300 }, + }, + }, + [2005267] = { + ["coords"] = { + [1] = { 66.3, 85, 618, 300 }, + [2] = { 91, 51.5, 5086, 300 }, + [3] = { 90.6, 49.8, 5086, 300 }, + }, + }, + [2005268] = { + ["coords"] = {}, + }, + [2005269] = { + ["coords"] = {}, + }, + [2005270] = { + ["coords"] = { + [1] = { 29.3, 62.3, 16, 300 }, + }, + }, + [2005271] = { + ["coords"] = {}, + }, + [2005272] = { + ["coords"] = {}, + }, + [2005273] = { + ["coords"] = {}, + }, + [2005274] = { + ["coords"] = {}, + }, + [2005275] = { + ["coords"] = {}, + }, + [2005276] = { + ["coords"] = {}, + }, + [2005277] = { + ["coords"] = {}, + }, + [2005278] = { + ["coords"] = {}, + }, + [2005279] = { + ["coords"] = {}, + }, + [2005280] = { + ["coords"] = {}, + }, + [2005281] = { + ["coords"] = {}, + }, + [2005282] = { + ["coords"] = {}, + }, + [2005283] = { + ["coords"] = { + [1] = { 25.6, 65.8, 16, 300 }, + [2] = { 26.5, 63.5, 16, 300 }, + [3] = { 27.2, 63.3, 16, 300 }, + [4] = { 27.6, 62.9, 16, 300 }, + [5] = { 28.3, 62.4, 16, 300 }, + [6] = { 52.3, 18.8, 33, 300 }, + [7] = { 64.5, 13.8, 33, 300 }, + [8] = { 64.3, 13.8, 33, 300 }, + [9] = { 64.2, 13.6, 33, 300 }, + [10] = { 64.3, 13.5, 33, 300 }, + [11] = { 64.5, 13.5, 33, 300 }, + [12] = { 64.5, 11.7, 33, 300 }, + [13] = { 64.7, 11.6, 33, 300 }, + [14] = { 64.4, 11.5, 33, 300 }, + [15] = { 64.6, 11.3, 33, 300 }, + [16] = { 64.4, 11.3, 33, 300 }, + [17] = { 59.9, 9.1, 33, 300 }, + [18] = { 59.7, 9, 33, 300 }, + [19] = { 60.3, 9, 33, 300 }, + [20] = { 60.5, 9, 33, 300 }, + [21] = { 59.6, 8.9, 33, 300 }, + [22] = { 60.6, 8.9, 33, 300 }, + }, + }, + [2005284] = { + ["coords"] = { + [1] = { 25.4, 65.8, 16, 300 }, + [2] = { 25.4, 65.5, 16, 300 }, + [3] = { 56.7, 10.7, 33, 300 }, + [4] = { 59.6, 9, 33, 300 }, + [5] = { 60.6, 9, 33, 300 }, + [6] = { 59.7, 8.6, 33, 300 }, + [7] = { 72.4, 58.5, 331, 300 }, + [8] = { 72.4, 58.4, 331, 300 }, + }, + }, + [2005285] = { + ["coords"] = { + [1] = { 26.9, 60.8, 16, 300 }, + [2] = { 49.2, 9.9, 17, 300 }, + [3] = { 89.3, 22.8, 46, 300 }, + }, + }, + [2005286] = { + ["coords"] = { + [1] = { 57.6, 59.3, 440, 0 }, + [2] = { 36.8, 65.3, 1941, 0 }, + }, + }, + [2005287] = { + ["coords"] = {}, + }, + [2005288] = { + ["coords"] = {}, + }, + [2005289] = { + ["coords"] = {}, + }, + [2005290] = { + ["coords"] = {}, + }, + [2005291] = { + ["coords"] = {}, + }, + [2005292] = { + ["coords"] = {}, + }, + [2005293] = { + ["coords"] = {}, + }, + [2005294] = { + ["coords"] = {}, + }, + [2005295] = { + ["coords"] = {}, + }, + [2005296] = { + ["coords"] = { + [1] = { 56.2, 44.7, 618, 300 }, + }, + }, + [2005297] = { + ["coords"] = {}, + }, + [2005298] = { + ["coords"] = { + [1] = { 65.2, 12.5, 33, 300 }, + }, + }, + [2005299] = { + ["coords"] = { + [1] = { 65.2, 12.5, 33, 300 }, + }, + }, + [2005300] = { + ["coords"] = { + [1] = { 65.2, 12.5, 33, 300 }, + }, + }, + [2005301] = { + ["coords"] = { + [1] = { 65.2, 12.5, 33, 300 }, + }, + }, + [2005302] = { + ["coords"] = { + [1] = { 65.2, 12.6, 33, 300 }, + }, + }, + [2005303] = { + ["coords"] = {}, + }, + [2005304] = { + ["coords"] = {}, + }, + [2005305] = { + ["coords"] = {}, + }, + [2005306] = { + ["coords"] = { + [1] = { 56.3, 44.7, 618, 300 }, + }, + }, + [2005307] = { + ["coords"] = { + [1] = { 56.3, 44.6, 618, 300 }, + }, + }, + [2005308] = { + ["coords"] = { + [1] = { 56.2, 44.7, 618, 300 }, + }, + }, + [2005309] = { + ["coords"] = {}, + }, + [2005310] = { + ["coords"] = {}, + }, + [2005311] = { + ["coords"] = {}, + }, + [2005312] = { + ["coords"] = {}, + }, + [2005313] = { + ["coords"] = {}, + }, + [2005314] = { + ["coords"] = {}, + }, + [2005315] = { + ["coords"] = { + [1] = { 43.3, 80.3, 33, 300 }, + [2] = { 27.6, 77.1, 33, 300 }, + }, + }, + [2005316] = { + ["coords"] = { + [1] = { 43.3, 80.5, 33, 300 }, + [2] = { 43.2, 80.3, 33, 300 }, + [3] = { 49.5, 32.3, 618, 300 }, + [4] = { 53.7, 52.1, 876, 300 }, + [5] = { 36.8, 18.6, 5561, 300 }, + }, + }, + [2005317] = { + ["coords"] = { + [1] = { 43.2, 80.4, 33, 300 }, + [2] = { 53.9, 50.4, 876, 300 }, + }, + }, + [2005318] = { + ["coords"] = {}, + }, + [2005319] = { + ["coords"] = { + [1] = { 50.5, 17.8, 5121, 300 }, + }, + }, + [2005320] = { + ["coords"] = {}, + }, + [2005321] = { + ["coords"] = {}, + }, + [2005322] = { + ["coords"] = {}, + }, + [2005323] = { + ["coords"] = {}, + }, + [2005324] = { + ["coords"] = {}, + }, + [2005325] = { + ["coords"] = {}, + }, + [2005326] = { + ["coords"] = {}, + }, + [2005327] = { + ["coords"] = {}, + }, + [2005328] = { + ["coords"] = {}, + }, + [2005329] = { + ["coords"] = {}, + }, + [2005330] = { + ["coords"] = {}, + }, + [2005331] = { + ["coords"] = { + [1] = { 24, 64.9, 141, 300 }, + [2] = { 56.4, 44.6, 618, 300 }, + [3] = { 32.9, 86.3, 1657, 300 }, + }, + }, + [2005332] = { + ["coords"] = {}, + }, + [2005333] = { + ["coords"] = { + [1] = { 23.3, 64.9, 141, 300 }, + [2] = { 15.9, 19.7, 331, 300 }, + [3] = { 29.4, 86.4, 1657, 300 }, + }, + }, + [2005334] = { + ["coords"] = {}, + }, + [2005335] = { + ["coords"] = {}, + }, + [2005336] = { + ["coords"] = {}, + }, + [2005337] = { + ["coords"] = {}, + }, + [2005338] = { + ["coords"] = {}, + }, + [2005339] = { + ["coords"] = {}, + }, + [2005340] = { + ["coords"] = {}, + }, + [2005341] = { + ["coords"] = {}, + }, + [2005342] = { + ["coords"] = {}, + }, + [2005343] = { + ["coords"] = {}, + }, + [2005344] = { + ["coords"] = { + [1] = { 35, 47.8, 10, 300 }, + }, + }, + [2005345] = { + ["coords"] = {}, + }, + [2005346] = { + ["coords"] = { + [1] = { 28.7, 61.5, 12, 300 }, + }, + }, + [2005347] = { + ["coords"] = {}, + }, + [2005348] = { + ["coords"] = {}, + }, + [2005349] = { + ["coords"] = {}, + }, + [2005350] = { + ["coords"] = {}, + }, + [2005351] = { + ["coords"] = {}, + }, + [2005352] = { + ["coords"] = {}, + }, + [2005353] = { + ["coords"] = {}, + }, + [2005354] = { + ["coords"] = {}, + }, + [2005355] = { + ["coords"] = {}, + }, + [2005356] = { + ["coords"] = { + [1] = { 51.4, 46.9, 5601, 604800 }, + [2] = { 50.6, 45.2, 5601, 604800 }, + [3] = { 50.4, 45.1, 5601, 604800 }, + [4] = { 50.5, 44.9, 5601, 604800 }, + [5] = { 51.1, 43.7, 5601, 604800 }, + [6] = { 50.8, 43.7, 5601, 604800 }, + [7] = { 49.2, 42.1, 5601, 604800 }, + [8] = { 52.1, 41.9, 5601, 604800 }, + [9] = { 47.6, 41.9, 5601, 604800 }, + [10] = { 49.2, 41.9, 5601, 604800 }, + [11] = { 47.5, 41.9, 5601, 604800 }, + [12] = { 52.1, 41.8, 5601, 604800 }, + [13] = { 51, 41.2, 5601, 604800 }, + [14] = { 50.5, 41.1, 5601, 604800 }, + [15] = { 46.3, 40.4, 5601, 604800 }, + [16] = { 50, 40.3, 5601, 604800 }, + [17] = { 47.2, 40.3, 5601, 604800 }, + [18] = { 50.5, 39.6, 5601, 604800 }, + [19] = { 51.6, 39.5, 5601, 604800 }, + [20] = { 51.6, 39.4, 5601, 604800 }, + [21] = { 51.7, 39.4, 5601, 604800 }, + [22] = { 51.6, 39.3, 5601, 604800 }, + [23] = { 49.8, 39.2, 5601, 604800 }, + [24] = { 49.8, 39.1, 5601, 604800 }, + [25] = { 49.5, 38.1, 5601, 604800 }, + [26] = { 49.6, 38.1, 5601, 604800 }, + [27] = { 47.6, 37.6, 5601, 604800 }, + [28] = { 45.6, 37.3, 5601, 604800 }, + [29] = { 46.7, 37.2, 5601, 604800 }, + [30] = { 46.6, 37.2, 5601, 604800 }, + [31] = { 50.1, 37.1, 5601, 604800 }, + [32] = { 45.7, 37.1, 5601, 604800 }, + [33] = { 59.6, 37, 5601, 604800 }, + [34] = { 50.1, 37, 5601, 604800 }, + [35] = { 59.7, 37, 5601, 604800 }, + [36] = { 59.4, 36.9, 5601, 604800 }, + [37] = { 59.6, 36.8, 5601, 604800 }, + [38] = { 47.3, 34.4, 5601, 604800 }, + [39] = { 58.9, 34.2, 5601, 604800 }, + [40] = { 45.7, 34.2, 5601, 604800 }, + [41] = { 45.6, 34.1, 5601, 604800 }, + [42] = { 59.1, 34.1, 5601, 604800 }, + [43] = { 58.9, 34, 5601, 604800 }, + [44] = { 59.1, 34, 5601, 604800 }, + [45] = { 56.5, 33.8, 5601, 604800 }, + [46] = { 47.7, 33.7, 5601, 604800 }, + [47] = { 49.2, 33.6, 5601, 604800 }, + [48] = { 49.3, 33.6, 5601, 604800 }, + [49] = { 47.7, 33.6, 5601, 604800 }, + [50] = { 56.6, 33.6, 5601, 604800 }, + [51] = { 55.6, 33.5, 5601, 604800 }, + [52] = { 46.8, 33.2, 5601, 604800 }, + [53] = { 46.8, 33, 5601, 604800 }, + [54] = { 49.5, 32.8, 5601, 604800 }, + [55] = { 56, 32.5, 5601, 604800 }, + [56] = { 55.8, 32.5, 5601, 604800 }, + [57] = { 49.8, 32.2, 5601, 604800 }, + [58] = { 51.7, 31.8, 5601, 604800 }, + [59] = { 51.5, 31.7, 5601, 604800 }, + [60] = { 51.6, 31.7, 5601, 604800 }, + [61] = { 50.4, 31.7, 5601, 604800 }, + [62] = { 55.6, 31.7, 5601, 604800 }, + [63] = { 54.4, 31.7, 5601, 604800 }, + [64] = { 45.8, 31.7, 5601, 604800 }, + [65] = { 50.5, 31.6, 5601, 604800 }, + [66] = { 45.6, 31.6, 5601, 604800 }, + [67] = { 55.5, 31.6, 5601, 604800 }, + [68] = { 54.3, 31.6, 5601, 604800 }, + [69] = { 45.7, 31.6, 5601, 604800 }, + [70] = { 51.6, 31.5, 5601, 604800 }, + [71] = { 50.6, 31.5, 5601, 604800 }, + [72] = { 51.5, 31.5, 5601, 604800 }, + [73] = { 45.7, 31.3, 5601, 604800 }, + [74] = { 55.1, 30.7, 5601, 604800 }, + [75] = { 55.2, 30.7, 5601, 604800 }, + [76] = { 47.1, 30.6, 5601, 604800 }, + [77] = { 47.2, 30.4, 5601, 604800 }, + [78] = { 54.5, 30, 5601, 604800 }, + [79] = { 53.2, 30, 5601, 604800 }, + [80] = { 53.1, 30, 5601, 604800 }, + [81] = { 53, 30, 5601, 604800 }, + [82] = { 54.4, 30, 5601, 604800 }, + [83] = { 48.8, 29.9, 5601, 604800 }, + [84] = { 54.5, 29.9, 5601, 604800 }, + [85] = { 51, 29.9, 5601, 604800 }, + [86] = { 54.4, 29.9, 5601, 604800 }, + [87] = { 53, 29.8, 5601, 604800 }, + [88] = { 53.1, 29.8, 5601, 604800 }, + [89] = { 53.1, 29.6, 5601, 604800 }, + [90] = { 49.8, 29.4, 5601, 604800 }, + [91] = { 49.7, 29.4, 5601, 604800 }, + [92] = { 47.3, 29, 5601, 604800 }, + [93] = { 46.7, 28.9, 5601, 604800 }, + [94] = { 46.8, 28.9, 5601, 604800 }, + [95] = { 49.1, 28.3, 5601, 604800 }, + [96] = { 49.2, 28.2, 5601, 604800 }, + [97] = { 51.4, 28.2, 5601, 604800 }, + [98] = { 53.9, 28.1, 5601, 604800 }, + [99] = { 47.4, 28.1, 5601, 604800 }, + [100] = { 54, 28.1, 5601, 604800 }, + [101] = { 47.5, 28, 5601, 604800 }, + [102] = { 49.2, 28, 5601, 604800 }, + [103] = { 49.1, 28, 5601, 604800 }, + [104] = { 51.5, 27.9, 5601, 604800 }, + [105] = { 51.5, 27.8, 5601, 604800 }, + [106] = { 51, 27.5, 5601, 604800 }, + [107] = { 51.1, 27.5, 5601, 604800 }, + [108] = { 54.8, 27.5, 5601, 604800 }, + [109] = { 54.9, 27.4, 5601, 604800 }, + [110] = { 51, 27.4, 5601, 604800 }, + [111] = { 54.8, 27.3, 5601, 604800 }, + [112] = { 54.1, 27.2, 5601, 604800 }, + [113] = { 54.2, 27.1, 5601, 604800 }, + [114] = { 54.1, 27, 5601, 604800 }, + [115] = { 54.1, 26.9, 5601, 604800 }, + [116] = { 51.3, 26.5, 5601, 604800 }, + [117] = { 54.9, 26, 5601, 604800 }, + [118] = { 50.5, 25.9, 5601, 604800 }, + [119] = { 50.6, 25.8, 5601, 604800 }, + [120] = { 50.7, 25.7, 5601, 604800 }, + [121] = { 54.5, 25, 5601, 604800 }, + [122] = { 51.2, 24.4, 5601, 604800 }, + [123] = { 51.3, 24.3, 5601, 604800 }, + [124] = { 51.2, 24.2, 5601, 604800 }, + [125] = { 54.1, 24.2, 5601, 604800 }, + [126] = { 51.3, 24.1, 5601, 604800 }, + [127] = { 54.1, 24.1, 5601, 604800 }, + }, + }, + [2005357] = { + ["coords"] = { + [1] = { 51.3, 47.1, 5601, 604800 }, + [2] = { 50.5, 45.1, 5601, 604800 }, + [3] = { 50.4, 45, 5601, 604800 }, + [4] = { 47.9, 44.4, 5601, 604800 }, + [5] = { 50.7, 43.7, 5601, 604800 }, + [6] = { 47.5, 41.8, 5601, 604800 }, + [7] = { 47.6, 41.4, 5601, 604800 }, + [8] = { 49.9, 41.4, 5601, 604800 }, + [9] = { 51, 41.3, 5601, 604800 }, + [10] = { 47.2, 40.4, 5601, 604800 }, + [11] = { 49.9, 40.3, 5601, 604800 }, + [12] = { 46.3, 40.3, 5601, 604800 }, + [13] = { 47.1, 40.3, 5601, 604800 }, + [14] = { 50.4, 39.6, 5601, 604800 }, + [15] = { 51.5, 39.4, 5601, 604800 }, + [16] = { 49.5, 38.2, 5601, 604800 }, + [17] = { 47.5, 37.6, 5601, 604800 }, + [18] = { 47.5, 37.5, 5601, 604800 }, + [19] = { 59.5, 37.1, 5601, 604800 }, + [20] = { 46.6, 37, 5601, 604800 }, + [21] = { 50, 37, 5601, 604800 }, + [22] = { 45.9, 37, 5601, 604800 }, + [23] = { 47.2, 34.3, 5601, 604800 }, + [24] = { 47.2, 34.2, 5601, 604800 }, + [25] = { 58.8, 34.1, 5601, 604800 }, + [26] = { 49.3, 33.7, 5601, 604800 }, + [27] = { 47.6, 33.7, 5601, 604800 }, + [28] = { 55.7, 33.6, 5601, 604800 }, + [29] = { 55.9, 32.6, 5601, 604800 }, + [30] = { 49.8, 32, 5601, 604800 }, + [31] = { 51.5, 31.8, 5601, 604800 }, + [32] = { 50.6, 31.6, 5601, 604800 }, + [33] = { 54.4, 31.5, 5601, 604800 }, + [34] = { 45.8, 31.4, 5601, 604800 }, + [35] = { 47, 30.4, 5601, 604800 }, + [36] = { 53, 30.2, 5601, 604800 }, + [37] = { 54.3, 29.8, 5601, 604800 }, + [38] = { 53.2, 29.8, 5601, 604800 }, + [39] = { 49.8, 29.3, 5601, 604800 }, + [40] = { 46.8, 28.8, 5601, 604800 }, + [41] = { 54, 28.3, 5601, 604800 }, + [42] = { 47.5, 28.2, 5601, 604800 }, + [43] = { 49.1, 28.1, 5601, 604800 }, + [44] = { 51.4, 28, 5601, 604800 }, + [45] = { 51.1, 27.3, 5601, 604800 }, + [46] = { 54.2, 26.9, 5601, 604800 }, + [47] = { 50.7, 25.9, 5601, 604800 }, + [48] = { 54.5, 25.1, 5601, 604800 }, + [49] = { 51.1, 24.3, 5601, 604800 }, + [50] = { 54.1, 24, 5601, 604800 }, + }, + }, + [2005358] = { + ["coords"] = { + [1] = { 51.3, 46.9, 5601, 604800 }, + [2] = { 48, 44.4, 5601, 604800 }, + [3] = { 51.4, 44, 5601, 604800 }, + [4] = { 46.8, 42, 5601, 604800 }, + [5] = { 52.2, 41.9, 5601, 604800 }, + [6] = { 47.5, 41.4, 5601, 604800 }, + [7] = { 51.6, 39.6, 5601, 604800 }, + [8] = { 49.5, 38, 5601, 604800 }, + [9] = { 59.4, 37.1, 5601, 604800 }, + [10] = { 59, 34.1, 5601, 604800 }, + [11] = { 49.8, 34.1, 5601, 604800 }, + [12] = { 56.3, 33.7, 5601, 604800 }, + [13] = { 47.8, 33.6, 5601, 604800 }, + [14] = { 51.7, 31.7, 5601, 604800 }, + [15] = { 45.9, 31.6, 5601, 604800 }, + [16] = { 49.5, 30.6, 5601, 604800 }, + [17] = { 54.4, 30.1, 5601, 604800 }, + [18] = { 49.1, 29.4, 5601, 604800 }, + [19] = { 49.7, 29.3, 5601, 604800 }, + [20] = { 47.3, 29.2, 5601, 604800 }, + [21] = { 50.6, 26, 5601, 604800 }, + [22] = { 54.4, 25, 5601, 604800 }, + }, + }, + [2005359] = { + ["coords"] = {}, + }, + [2005360] = { + ["coords"] = { + [1] = { 93.8, 55.2, 46, 300 }, + }, + }, + [2005361] = { + ["coords"] = {}, + }, + [2005362] = { + ["coords"] = {}, + }, + [2005363] = { + ["coords"] = {}, + }, + [2005364] = { + ["coords"] = {}, + }, + [2005365] = { + ["coords"] = { + [1] = { 93.9, 55.5, 46, 300 }, + }, + }, + [2005366] = { + ["coords"] = {}, + }, + [2005367] = { + ["coords"] = {}, + }, + [2005368] = { + ["coords"] = { + [1] = { 53.5, 51.6, 876, 300 }, + [2] = { 54.1, 51.1, 876, 300 }, + [3] = { 52.9, 51.1, 876, 300 }, + }, + }, + [2005369] = { + ["coords"] = {}, + }, + [2005370] = { + ["coords"] = { + [1] = { 50.8, 73.1, 1637, 300 }, + [2] = { 52.4, 69.5, 1637, 300 }, + }, + }, + [2005371] = { + ["coords"] = { + [1] = { 53.5, 64.4, 14, 300 }, + [2] = { 52, 73.1, 1637, 300 }, + }, + }, + [2005372] = { + ["coords"] = { + [1] = { 53.4, 64.9, 14, 300 }, + [2] = { 52.4, 73.1, 1637, 300 }, + }, + }, + [2005373] = { + ["coords"] = {}, + }, + [2005374] = { + ["coords"] = { + [1] = { 51.6, 69.8, 1637, 300 }, + [2] = { 50.7, 66.8, 1637, 300 }, + [3] = { 53.6, 65.8, 1637, 300 }, + }, + }, + [2005375] = { + ["coords"] = {}, + }, + [2005376] = { + ["coords"] = {}, + }, + [2005377] = { + ["coords"] = {}, + }, + [2005378] = { + ["coords"] = {}, + }, + [2005379] = { + ["coords"] = {}, + }, + [2005380] = { + ["coords"] = {}, + }, + [2005381] = { + ["coords"] = {}, + }, + [2005382] = { + ["coords"] = {}, + }, + [2005383] = { + ["coords"] = {}, + }, + [2005384] = { + ["coords"] = { + [1] = { 69.4, 77, 28, 300 }, + }, + }, + [2005385] = { + ["coords"] = {}, + }, + [2005386] = { + ["coords"] = {}, + }, + [2005387] = { + ["coords"] = { + [1] = { 91.9, 22.4, 405, 300 }, + [2] = { 64, 91.3, 406, 300 }, + }, + }, + [2005388] = { + ["coords"] = { + [1] = { 49.3, 9.7, 17, 300 }, + }, + }, + [2005389] = { + ["coords"] = { + [1] = { 91.8, 22.7, 405, 300 }, + [2] = { 63.9, 91.5, 406, 300 }, + }, + }, + [2005390] = { + ["coords"] = { + [1] = { 49.2, 9.9, 17, 300 }, + }, + }, + [2005391] = { + ["coords"] = {}, + }, + [2005392] = { + ["coords"] = { + [1] = { 82.8, 55.1, 400, 25 }, + [2] = { 83, 54.9, 400, 300 }, + [3] = { 83.2, 53.8, 400, 25 }, + }, + }, + [2005393] = { + ["coords"] = { + [1] = { 83.5, 55.4, 400, 25 }, + [2] = { 83.2, 53.8, 400, 25 }, + }, + }, + [2005394] = { + ["coords"] = { + [1] = { 83, 54.9, 400, 300 }, + }, + }, + [2005395] = { + ["coords"] = {}, + }, + [2005396] = { + ["coords"] = {}, + }, + [2005397] = { + ["coords"] = {}, + }, + [2005398] = { + ["coords"] = {}, + }, + [2005399] = { + ["coords"] = {}, + }, + [2005400] = { + ["coords"] = {}, + }, + [2005401] = { + ["coords"] = {}, + }, + [2005402] = { + ["coords"] = {}, + }, + [2005403] = { + ["coords"] = {}, + }, + [2005404] = { + ["coords"] = {}, + }, + [2005405] = { + ["coords"] = {}, + }, + [2005406] = { + ["coords"] = {}, + }, + [2005407] = { + ["coords"] = {}, + }, + [2005408] = { + ["coords"] = { + [1] = { 50.1, 50.2, 8, 300 }, + [2] = { 51.8, 44.9, 8, 300 }, + [3] = { 51.5, 44.4, 8, 300 }, + }, + }, + [2005409] = { + ["coords"] = { + [1] = { 51, 49.7, 8, 300 }, + [2] = { 49.2, 49.6, 8, 300 }, + [3] = { 48.6, 48.9, 8, 300 }, + [4] = { 51.6, 47.9, 8, 300 }, + [5] = { 48.7, 47.7, 8, 300 }, + [6] = { 51.8, 46.8, 8, 300 }, + [7] = { 52, 45.7, 8, 300 }, + [8] = { 49.1, 45.7, 8, 300 }, + [9] = { 49.7, 44.9, 8, 300 }, + [10] = { 50.9, 44.2, 8, 300 }, + [11] = { 81.3, 63.9, 28, 300 }, + [12] = { 23.1, 87.8, 139, 300 }, + }, + }, + [2005410] = { + ["coords"] = { + [1] = { 50, 50.1, 8, 300 }, + [2] = { 50.7, 50.1, 8, 300 }, + [3] = { 49.6, 49.8, 8, 300 }, + [4] = { 48.5, 48.3, 8, 300 }, + [5] = { 51.7, 47.4, 8, 300 }, + [6] = { 48.8, 47.1, 8, 300 }, + [7] = { 52, 46.3, 8, 300 }, + [8] = { 49, 46.3, 8, 300 }, + [9] = { 49.3, 45.1, 8, 300 }, + [10] = { 52, 45.1, 8, 300 }, + [11] = { 50, 44.7, 8, 300 }, + [12] = { 50.5, 44.3, 8, 300 }, + [13] = { 51.4, 44.2, 8, 300 }, + }, + }, + [2005411] = { + ["coords"] = { + [1] = { 46.6, 48.6, 8, 300 }, + [2] = { 46.3, 47.8, 8, 300 }, + [3] = { 47.3, 47.6, 8, 300 }, + [4] = { 47, 46.8, 8, 300 }, + [5] = { 48.5, 45.5, 8, 300 }, + [6] = { 49.7, 44.7, 8, 300 }, + [7] = { 50.9, 44, 8, 300 }, + [8] = { 79, 63.9, 28, 300 }, + [9] = { 20.6, 87.8, 139, 300 }, + }, + }, + [2005412] = { + ["coords"] = { + [1] = { 47.3, 49.6, 8, 300 }, + [2] = { 51.3, 49.2, 8, 300 }, + [3] = { 47.8, 49.1, 8, 300 }, + [4] = { 47.8, 48.9, 8, 300 }, + [5] = { 46.6, 47.1, 8, 300 }, + [6] = { 46.8, 46.7, 8, 300 }, + [7] = { 48.4, 45.9, 8, 300 }, + [8] = { 51.7, 44.6, 8, 300 }, + [9] = { 50.7, 44.1, 8, 300 }, + [10] = { 81.1, 64, 28, 300 }, + [11] = { 22.9, 87.8, 139, 300 }, + }, + }, + [2005413] = { + ["coords"] = { + [1] = { 50.3, 50.2, 8, 300 }, + [2] = { 47.1, 49.5, 8, 300 }, + [3] = { 48.8, 49.3, 8, 300 }, + [4] = { 47.6, 48.5, 8, 300 }, + [5] = { 51.4, 48.5, 8, 300 }, + [6] = { 47.6, 48.4, 8, 300 }, + [7] = { 48.4, 45.8, 8, 300 }, + [8] = { 80, 64.3, 28, 300 }, + [9] = { 81.1, 64, 28, 300 }, + [10] = { 81, 63.9, 28, 300 }, + [11] = { 21.6, 88.2, 139, 300 }, + [12] = { 22.8, 87.8, 139, 300 }, + [13] = { 22.8, 87.7, 139, 300 }, + }, + }, + [2005414] = { + ["coords"] = {}, + }, + [2005415] = { + ["coords"] = {}, + }, + [2005416] = { + ["coords"] = {}, + }, + [2005417] = { + ["coords"] = {}, + }, + [2005418] = { + ["coords"] = { + [1] = { 41.7, 72.6, 15, 300 }, + }, + }, + [2005419] = { + ["coords"] = { + [1] = { 41.6, 72.6, 15, 300 }, + }, + }, + [2005420] = { + ["coords"] = {}, + }, + [2005421] = { + ["coords"] = {}, + }, + [2005422] = { + ["coords"] = {}, + }, + [2005423] = { + ["coords"] = {}, + }, + [2005424] = { + ["coords"] = {}, + }, + [2005425] = { + ["coords"] = {}, + }, + [2005426] = { + ["coords"] = {}, + }, + [2005427] = { + ["coords"] = {}, + }, + [2005428] = { + ["coords"] = {}, + }, + [2005429] = { + ["coords"] = {}, + }, + [2005430] = { + ["coords"] = {}, + }, + [2005431] = { + ["coords"] = {}, + }, + [2005432] = { + ["coords"] = {}, + }, + [2005433] = { + ["coords"] = {}, + }, + [2005434] = { + ["coords"] = {}, + }, + [2005435] = { + ["coords"] = {}, + }, + [2005436] = { + ["coords"] = {}, + }, + [2005437] = { + ["coords"] = {}, + }, + [2005438] = { + ["coords"] = { + [1] = { 44.5, 50.4, 406, 300 }, + }, + }, + [2005439] = { + ["coords"] = {}, + }, + [2005440] = { + ["coords"] = {}, + }, + [2005441] = { + ["coords"] = {}, + }, + [2005442] = { + ["coords"] = { + [1] = { 49.3, 85.4, 440, 300 }, + }, + }, + [2005443] = { + ["coords"] = {}, + }, + [2005444] = { + ["coords"] = { + [1] = { 28.3, 58, 141, 300 }, + [2] = { 61.2, 44.2, 409, 300 }, + [3] = { 61.3, 44.1, 409, 300 }, + [4] = { 53.4, 53.3, 1657, 300 }, + }, + }, + [2005445] = { + ["coords"] = {}, + }, + [2005446] = { + ["coords"] = {}, + }, + [2005447] = { + ["coords"] = {}, + }, + [2005448] = { + ["coords"] = {}, + }, + [2005449] = { + ["coords"] = {}, + }, + [2005450] = { + ["coords"] = {}, + }, + [2005451] = { + ["coords"] = {}, + }, + [2005452] = { + ["coords"] = {}, + }, + [2005453] = { + ["coords"] = {}, + }, + [2005454] = { + ["coords"] = {}, + }, + [2005455] = { + ["coords"] = {}, + }, + [2005456] = { + ["coords"] = {}, + }, + [2005457] = { + ["coords"] = {}, + }, + [2005458] = { + ["coords"] = {}, + }, + [2005459] = { + ["coords"] = {}, + }, + [2005460] = { + ["coords"] = {}, + }, + [2005461] = { + ["coords"] = {}, + }, + [2005462] = { + ["coords"] = {}, + }, + [2005463] = { + ["coords"] = {}, + }, + [2005464] = { + ["coords"] = {}, + }, + [2005465] = { + ["coords"] = {}, + }, + [2005466] = { + ["coords"] = {}, + }, + [2005467] = { + ["coords"] = {}, + }, + [2005468] = { + ["coords"] = {}, + }, + [2005469] = { + ["coords"] = {}, + }, + [2005470] = { + ["coords"] = {}, + }, + [2005471] = { + ["coords"] = {}, + }, + [2005472] = { + ["coords"] = {}, + }, + [2005473] = { + ["coords"] = {}, + }, + [2005474] = { + ["coords"] = {}, + }, + [2005475] = { + ["coords"] = {}, + }, + [2005476] = { + ["coords"] = {}, + }, + [2005477] = { + ["coords"] = {}, + }, + [2005478] = { + ["coords"] = {}, + }, + [2005479] = { + ["coords"] = {}, + }, + [2005480] = { + ["coords"] = {}, + }, + [2005481] = { + ["coords"] = {}, + }, + [2005482] = { + ["coords"] = {}, + }, + [2005483] = { + ["coords"] = {}, + }, + [2005484] = { + ["coords"] = {}, + }, + [2005485] = { + ["coords"] = {}, + }, + [2005486] = { + ["coords"] = {}, + }, + [2005487] = { + ["coords"] = {}, + }, + [2005488] = { + ["coords"] = {}, + }, + [2005489] = { + ["coords"] = {}, + }, + [2005490] = { + ["coords"] = {}, + }, + [2005491] = { + ["coords"] = {}, + }, + [2005492] = { + ["coords"] = { + [1] = { 96, 24.5, 331, 300 }, + }, + }, + [2005493] = { + ["coords"] = {}, + }, + [2005494] = { + ["coords"] = {}, + }, + [2005495] = { + ["coords"] = {}, + }, + [2005496] = { + ["coords"] = {}, + }, + [2005497] = { + ["coords"] = {}, + }, + [2005498] = { + ["coords"] = {}, + }, + [2005499] = { + ["coords"] = {}, + }, + [2005500] = { + ["coords"] = {}, + }, + [2005501] = { + ["coords"] = {}, + }, + [2005502] = { + ["coords"] = {}, + }, + [2005503] = { + ["coords"] = {}, + }, + [2005504] = { + ["coords"] = {}, + }, + [2005505] = { + ["coords"] = {}, + }, + [2005506] = { + ["coords"] = { + [1] = { 43.1, 97.7, 148, 300 }, + [2] = { 27.4, 15.8, 331, 300 }, + }, + }, + [2005507] = { + ["coords"] = {}, + }, + [2005508] = { + ["coords"] = { + [1] = { 66.4, 85.6, 618, 300 }, + }, + }, + [2005509] = { + ["coords"] = { + [1] = { 35.6, 25.7, 16, 300 }, + [2] = { 67.1, 85.8, 618, 300 }, + [3] = { 66.4, 85.7, 618, 300 }, + }, + }, + [2005510] = { + ["coords"] = {}, + }, + [2005511] = { + ["coords"] = {}, + }, + [2005512] = { + ["coords"] = { + [1] = { 27.3, 64.9, 141, 300 }, + [2] = { 20.8, 32.4, 331, 300 }, + [3] = { 48.3, 86.5, 1657, 300 }, + }, + }, + [2005513] = { + ["coords"] = {}, + }, + [2005514] = { + ["coords"] = { + [1] = { 26.6, 65, 141, 300 }, + [2] = { 24.1, 64.9, 141, 300 }, + [3] = { 45.4, 86.9, 1657, 300 }, + [4] = { 33, 86.4, 1657, 300 }, + }, + }, + [2005515] = { + ["coords"] = {}, + }, + [2005516] = { + ["coords"] = { + [1] = { 26.9, 65, 141, 300 }, + [2] = { 23.8, 64.6, 141, 300 }, + [3] = { 44.4, 73.7, 331, 300 }, + [4] = { 79.9, 39.9, 406, 300 }, + [5] = { 46.4, 86.9, 1657, 300 }, + [6] = { 31.8, 85.1, 1657, 300 }, + }, + }, + [2005517] = { + ["coords"] = { + [1] = { 23.6, 65.1, 141, 300 }, + [2] = { 27.4, 64.7, 141, 300 }, + [3] = { 26.7, 64.7, 141, 300 }, + [4] = { 30.7, 87.4, 1657, 300 }, + [5] = { 48.8, 85.6, 1657, 300 }, + [6] = { 45.6, 85.4, 1657, 300 }, + }, + }, + [2005518] = { + ["coords"] = { + [1] = { 23.5, 65.2, 141, 300 }, + [2] = { 23.9, 65.1, 141, 300 }, + [3] = { 24.1, 64.8, 141, 300 }, + [4] = { 26.8, 64.5, 141, 300 }, + [5] = { 27.2, 64.5, 141, 300 }, + [6] = { 20.9, 32.4, 331, 300 }, + [7] = { 21, 32.3, 331, 300 }, + [8] = { 30.2, 87.7, 1657, 300 }, + [9] = { 32.4, 87.5, 1657, 300 }, + [10] = { 32.9, 86, 1657, 300 }, + [11] = { 46, 84.6, 1657, 300 }, + [12] = { 48.3, 84.6, 1657, 300 }, + }, + }, + [2005519] = { + ["coords"] = { + [1] = { 23.3, 65, 141, 300 }, + [2] = { 23.3, 64.8, 141, 300 }, + [3] = { 44.5, 73.3, 331, 300 }, + [4] = { 86.7, 44.2, 331, 300 }, + [5] = { 80.1, 39.5, 406, 300 }, + [6] = { 29.4, 86.8, 1657, 300 }, + [7] = { 29.4, 86.1, 1657, 300 }, + }, + }, + [2005520] = { + ["coords"] = { + [1] = { 78.4, 66.1, 616, 300 }, + [2] = { 78.9, 65.7, 616, 300 }, + [3] = { 79.6, 65.6, 616, 300 }, + [4] = { 23.1, 37.3, 616, 300 }, + [5] = { 41.8, 33.1, 616, 300 }, + [6] = { 46.7, 80.5, 618, 300 }, + }, + }, + [2005521] = { + ["coords"] = { + [1] = { 78.5, 65.9, 616, 300 }, + [2] = { 78.3, 65.8, 616, 300 }, + [3] = { 79.5, 65.7, 616, 300 }, + [4] = { 79, 65.6, 616, 300 }, + [5] = { 23.2, 36.9, 616, 300 }, + [6] = { 42.4, 33.7, 616, 300 }, + [7] = { 42.8, 31.5, 616, 300 }, + [8] = { 46.6, 80.6, 618, 300 }, + }, + }, + [2005522] = { + ["coords"] = {}, + }, + [2005523] = { + ["coords"] = { + [1] = { 20.7, 50.8, 331, 300 }, + [2] = { 57.2, 18, 406, 300 }, + }, + }, + [2005524] = { + ["coords"] = {}, + }, + [2005525] = { + ["coords"] = {}, + }, + [2005526] = { + ["coords"] = { + [1] = { 20.5, 50.6, 331, 300 }, + [2] = { 57, 17.8, 406, 300 }, + }, + }, + [2005527] = { + ["coords"] = {}, + }, + [2005528] = { + ["coords"] = {}, + }, + [2005529] = { + ["coords"] = { + [1] = { 38, 10.1, 490, 300 }, + }, + }, + [2005530] = { + ["coords"] = { + [1] = { 39.9, 12.8, 490, 300 }, + [2] = { 36.9, 12.3, 490, 300 }, + [3] = { 41.4, 9.3, 490, 300 }, + }, + }, + [2005531] = { + ["coords"] = { + [1] = { 23.8, 65.2, 141, 300 }, + [2] = { 31.5, 87.6, 1657, 300 }, + }, + }, + [2005532] = { + ["coords"] = { + [1] = { 23.4, 65.2, 141, 300 }, + [2] = { 40.9, 9.6, 490, 300 }, + [3] = { 29.7, 87.7, 1657, 300 }, + }, + }, + [2005533] = { + ["coords"] = {}, + }, + [2005534] = { + ["coords"] = {}, + }, + [2005535] = { + ["coords"] = {}, + }, + [2005536] = { + ["coords"] = {}, + }, + [2005537] = { + ["coords"] = { + [1] = { 95.3, 24.8, 331, 300 }, + }, + }, + [2005538] = { + ["coords"] = {}, + }, + [2005539] = { + ["coords"] = {}, + }, + [2005540] = { + ["coords"] = {}, + }, + [2005541] = { + ["coords"] = {}, + }, + [2005542] = { + ["coords"] = {}, + }, + [2005543] = { + ["coords"] = { + [1] = { 87.2, 71.9, 616, 300 }, + [2] = { 87.3, 71.2, 616, 300 }, + [3] = { 87.5, 70.8, 616, 300 }, + [4] = { 87.9, 70.5, 616, 300 }, + [5] = { 50.1, 83.4, 618, 300 }, + [6] = { 50.2, 83.1, 618, 300 }, + [7] = { 50.3, 82.9, 618, 300 }, + [8] = { 50.4, 82.8, 618, 300 }, + }, + }, + [2005544] = { + ["coords"] = { + [1] = { 25.6, 21.6, 5208, 300 }, + }, + }, + [2005545] = { + ["coords"] = {}, + }, + [2005546] = { + ["coords"] = {}, + }, + [2005547] = { + ["coords"] = {}, + }, + [2005548] = { + ["coords"] = {}, + }, + [2005549] = { + ["coords"] = {}, + }, + [2005550] = { + ["coords"] = {}, + }, + [2005551] = { + ["coords"] = {}, + }, + [2005552] = { + ["coords"] = {}, + }, + [2005553] = { + ["coords"] = {}, + }, + [2005554] = { + ["coords"] = {}, + }, + [2005555] = { + ["coords"] = {}, + }, + [2005556] = { + ["coords"] = {}, + }, + [2005557] = { + ["coords"] = {}, + }, + [2005558] = { + ["coords"] = { + [1] = { 77.9, 75.8, 1497, 300 }, + }, + }, + [2005559] = { + ["coords"] = {}, + }, + [2005560] = { + ["coords"] = {}, + }, + [2005561] = { + ["coords"] = {}, + }, + [2005562] = { + ["coords"] = {}, + }, + [2005563] = { + ["coords"] = {}, + }, + [2005564] = { + ["coords"] = {}, + }, + [2005565] = { + ["coords"] = {}, + }, + [2005566] = { + ["coords"] = {}, + }, + [2005567] = { + ["coords"] = {}, + }, + [2005568] = { + ["coords"] = {}, + }, + [2005569] = { + ["coords"] = {}, + }, + [2005570] = { + ["coords"] = {}, + }, + [2005571] = { + ["coords"] = {}, + }, + [2005572] = { + ["coords"] = {}, + }, + [2005573] = { + ["coords"] = {}, + }, + [2005574] = { + ["coords"] = {}, + }, + [2005575] = { + ["coords"] = {}, + }, + [2005576] = { + ["coords"] = {}, + }, + [2005577] = { + ["coords"] = { + [1] = { 59.1, 25.7, 1537, 300 }, + }, + }, + [2005578] = { + ["coords"] = {}, + }, + [2005579] = { + ["coords"] = {}, + }, + [2005580] = { + ["coords"] = { + [1] = { 31.3, 48.6, 33, 300 }, + [2] = { 31.4, 48.4, 33, 300 }, + }, + }, + [2005581] = { + ["coords"] = {}, + }, + [2005582] = { + ["coords"] = {}, + }, + [2005583] = { + ["coords"] = {}, + }, + [2005584] = { + ["coords"] = {}, + }, + [2005585] = { + ["coords"] = {}, + }, + [2005586] = { + ["coords"] = {}, + }, + [2005587] = { + ["coords"] = {}, + }, + [2005588] = { + ["coords"] = {}, + }, + [2005589] = { + ["coords"] = {}, + }, + [2005590] = { + ["coords"] = {}, + }, + [2005591] = { + ["coords"] = {}, + }, + [2005592] = { + ["coords"] = {}, + }, + [2005593] = { + ["coords"] = {}, + }, + [2005594] = { + ["coords"] = {}, + }, + [2005595] = { + ["coords"] = {}, + }, + [2005596] = { + ["coords"] = {}, + }, + [2005597] = { + ["coords"] = {}, + }, + [2005598] = { + ["coords"] = {}, + }, + [2005599] = { + ["coords"] = {}, + }, + [2005600] = { + ["coords"] = {}, + }, + [2005601] = { + ["coords"] = {}, + }, + [2005602] = { + ["coords"] = {}, + }, + [2005603] = { + ["coords"] = {}, + }, + [2005604] = { + ["coords"] = {}, + }, + [2005605] = { + ["coords"] = {}, + }, + [2005606] = { + ["coords"] = {}, + }, + [2005607] = { + ["coords"] = {}, + }, + [2005608] = { + ["coords"] = {}, + }, + [2005609] = { + ["coords"] = {}, + }, + [2005610] = { + ["coords"] = {}, + }, + [2005611] = { + ["coords"] = {}, + }, + [2005612] = { + ["coords"] = {}, + }, + [2005613] = { + ["coords"] = {}, + }, + [2005614] = { + ["coords"] = {}, + }, + [2005615] = { + ["coords"] = {}, + }, + [2005616] = { + ["coords"] = {}, + }, + [2005617] = { + ["coords"] = {}, + }, + [2005618] = { + ["coords"] = {}, + }, + [2005619] = { + ["coords"] = {}, + }, + [2005620] = { + ["coords"] = {}, + }, + [2005621] = { + ["coords"] = {}, + }, + [2005622] = { + ["coords"] = {}, + }, + [2005623] = { + ["coords"] = {}, + }, + [2005624] = { + ["coords"] = {}, + }, + [2005625] = { + ["coords"] = {}, + }, + [2005626] = { + ["coords"] = {}, + }, + [2005627] = { + ["coords"] = {}, + }, + [2005628] = { + ["coords"] = {}, + }, + [2005629] = { + ["coords"] = {}, + }, + [2005630] = { + ["coords"] = {}, + }, + [2005631] = { + ["coords"] = {}, + }, + [2005632] = { + ["coords"] = {}, + }, + [2005633] = { + ["coords"] = {}, + }, + [2005634] = { + ["coords"] = {}, + }, + [2005635] = { + ["coords"] = {}, + }, + [2005636] = { + ["coords"] = {}, + }, + [2005637] = { + ["coords"] = {}, + }, + [2005638] = { + ["coords"] = {}, + }, + [2005639] = { + ["coords"] = {}, + }, + [2005640] = { + ["coords"] = {}, + }, + [2005641] = { + ["coords"] = {}, + }, + [2005642] = { + ["coords"] = {}, + }, + [2005643] = { + ["coords"] = {}, + }, + [2005644] = { + ["coords"] = {}, + }, + [2005645] = { + ["coords"] = {}, + }, + [2005646] = { + ["coords"] = {}, + }, + [2005647] = { + ["coords"] = {}, + }, + [2005648] = { + ["coords"] = {}, + }, + [2005649] = { + ["coords"] = {}, + }, + [2005650] = { + ["coords"] = {}, + }, + [2005651] = { + ["coords"] = {}, + }, + [2005652] = { + ["coords"] = {}, + }, + [2005653] = { + ["coords"] = {}, + }, + [2005654] = { + ["coords"] = {}, + }, + [2005655] = { + ["coords"] = {}, + }, + [2005656] = { + ["coords"] = {}, + }, + [2005657] = { + ["coords"] = {}, + }, + [2005658] = { + ["coords"] = {}, + }, + [2005659] = { + ["coords"] = {}, + }, + [2005660] = { + ["coords"] = {}, + }, + [2005661] = { + ["coords"] = {}, + }, + [2005662] = { + ["coords"] = {}, + }, + [2005663] = { + ["coords"] = {}, + }, + [2005664] = { + ["coords"] = { + [1] = { 37.4, 33.1, 17, 300 }, + [2] = { 62.6, 10.2, 215, 300 }, + }, + }, + [2005665] = { + ["coords"] = { + [1] = { 36.4, 32.8, 17, 300 }, + [2] = { 60.6, 9.7, 215, 300 }, + [3] = { 91.8, 23.2, 405, 300 }, + [4] = { 63.8, 91.9, 406, 300 }, + }, + }, + [2005666] = { + ["coords"] = { + [1] = { 36.7, 33.1, 17, 300 }, + [2] = { 61.3, 10.2, 215, 300 }, + }, + }, + [2005667] = { + ["coords"] = { + [1] = { 91.9, 23.3, 405, 300 }, + [2] = { 64, 92, 406, 300 }, + }, + }, + [2005668] = { + ["coords"] = {}, + }, + [2005669] = { + ["coords"] = { + [1] = { 62.6, 22.3, 33, 300 }, + [2] = { 62.7, 22.3, 33, 300 }, + }, + }, + [2005670] = { + ["coords"] = {}, + }, + [2005671] = { + ["coords"] = {}, + }, + [2005672] = { + ["coords"] = {}, + }, + [2005673] = { + ["coords"] = {}, + }, + [2005674] = { + ["coords"] = {}, + }, + [2005675] = { + ["coords"] = {}, + }, + [2005676] = { + ["coords"] = {}, + }, + [2005677] = { + ["coords"] = {}, + }, + [2005678] = { + ["coords"] = {}, + }, + [2005679] = { + ["coords"] = {}, + }, + [2005680] = { + ["coords"] = { + [1] = { 36.9, 33.9, 17, 300 }, + [2] = { 37.6, 33.9, 17, 300 }, + [3] = { 36.2, 33.5, 17, 300 }, + [4] = { 37.4, 33.3, 17, 300 }, + [5] = { 37.7, 33.1, 17, 300 }, + [6] = { 61.6, 11.9, 215, 300 }, + [7] = { 63, 11.8, 215, 300 }, + [8] = { 60.3, 11, 215, 300 }, + [9] = { 62.6, 10.6, 215, 300 }, + [10] = { 63.1, 10.2, 215, 300 }, + }, + }, + [2005681] = { + ["coords"] = { + [1] = { 36.3, 32.7, 17, 300 }, + [2] = { 60.3, 9.5, 215, 300 }, + }, + }, + [2005682] = { + ["coords"] = {}, + }, + [2005683] = { + ["coords"] = {}, + }, + [2005684] = { + ["coords"] = {}, + }, + [2005685] = { + ["coords"] = {}, + }, + [2005686] = { + ["coords"] = {}, + }, + [2005687] = { + ["coords"] = {}, + }, + [2005688] = { + ["coords"] = {}, + }, + [2005689] = { + ["coords"] = {}, + }, + [2005690] = { + ["coords"] = {}, + }, + [2005691] = { + ["coords"] = { + [1] = { 50.4, 47.4, 8, 300 }, + [2] = { 29.2, 62.3, 16, 300 }, + [3] = { 54.5, 10.4, 16, 300 }, + [4] = { 25, 12.1, 406, 300 }, + }, + }, + [2005692] = { + ["coords"] = {}, + }, + [2005693] = { + ["coords"] = { + [1] = { 45, 14.7, 14, 300 }, + [2] = { 43, 93.7, 17, 300 }, + [3] = { 36.2, 44.1, 17, 300 }, + [4] = { 54.1, 0.9, 17, 300 }, + [5] = { 58.6, 76.1, 38, 300 }, + [6] = { 60.2, 31.9, 215, 300 }, + [7] = { 79.1, 81.2, 331, 300 }, + [8] = { 29.6, 25.6, 400, 300 }, + [9] = { 76, 85.4, 5208, 300 }, + [10] = { 28.6, 83.2, 5602, 300 }, + }, + }, + [2005694] = { + ["coords"] = {}, + }, + [2005695] = { + ["coords"] = {}, + }, + [2005696] = { + ["coords"] = {}, + }, + [2005697] = { + ["coords"] = {}, + }, + [2005698] = { + ["coords"] = {}, + }, + [2005699] = { + ["coords"] = {}, + }, + [2005700] = { + ["coords"] = {}, + }, + [2005701] = { + ["coords"] = {}, + }, + [2005702] = { + ["coords"] = {}, + }, + [2005703] = { + ["coords"] = {}, + }, + [2005704] = { + ["coords"] = {}, + }, + [2005705] = { + ["coords"] = {}, + }, + [2005706] = { + ["coords"] = {}, + }, + [2005707] = { + ["coords"] = {}, + }, + [2005708] = { + ["coords"] = {}, + }, + [2005709] = { + ["coords"] = {}, + }, + [2005710] = { + ["coords"] = {}, + }, + [2005711] = { + ["coords"] = {}, + }, + [2005712] = { + ["coords"] = {}, + }, + [2005713] = { + ["coords"] = {}, + }, + [2005714] = { + ["coords"] = {}, + }, + [2005715] = { + ["coords"] = {}, + }, + [2005716] = { + ["coords"] = {}, + }, + [2005717] = { + ["coords"] = {}, + }, + [2005718] = { + ["coords"] = {}, + }, + [2005719] = { + ["coords"] = {}, + }, + [2005720] = { + ["coords"] = {}, + }, + [2005721] = { + ["coords"] = {}, + }, + [2005722] = { + ["coords"] = {}, + }, + [2005723] = { + ["coords"] = {}, + }, + [2005724] = { + ["coords"] = {}, + }, + [2005725] = { + ["coords"] = {}, + }, + [2005726] = { + ["coords"] = {}, + }, + [2005727] = { + ["coords"] = { + [1] = { 11.7, 45.7, 47, 300 }, + [2] = { 96.7, 5, 267, 300 }, + }, + }, + [2005728] = { + ["coords"] = {}, + }, + [2005729] = { + ["coords"] = {}, + }, + [2005730] = { + ["coords"] = {}, + }, + [2005731] = { + ["coords"] = {}, + }, + [2005732] = { + ["coords"] = {}, + }, + [2005733] = { + ["coords"] = {}, + }, + [2005734] = { + ["coords"] = {}, + }, + [2005735] = { + ["coords"] = {}, + }, + [2005736] = { + ["coords"] = {}, + }, + [2005737] = { + ["coords"] = {}, + }, + [2005738] = { + ["coords"] = {}, + }, + [2005739] = { + ["coords"] = {}, + }, + [2005740] = { + ["coords"] = {}, + }, + [2005741] = { + ["coords"] = {}, + }, + [2005742] = { + ["coords"] = {}, + }, + [2005743] = { + ["coords"] = {}, + }, + [2005744] = { + ["coords"] = {}, + }, + [2005745] = { + ["coords"] = { + [1] = { 31, 57.1, 5561, 300 }, + }, + }, + [2005746] = { + ["coords"] = {}, + }, + [2005747] = { + ["coords"] = {}, + }, + [2005748] = { + ["coords"] = {}, + }, + [2005749] = { + ["coords"] = {}, + }, + [2005750] = { + ["coords"] = {}, + }, + [2005751] = { + ["coords"] = {}, + }, + [2005752] = { + ["coords"] = {}, + }, + [2005753] = { + ["coords"] = {}, + }, + [2005754] = { + ["coords"] = {}, + }, + [2005755] = { + ["coords"] = {}, + }, + [2005756] = { + ["coords"] = {}, + }, + [2005757] = { + ["coords"] = {}, + }, + [2005758] = { + ["coords"] = {}, + }, + [2005759] = { + ["coords"] = {}, + }, + [2005760] = { + ["coords"] = {}, + }, + [2005761] = { + ["coords"] = {}, + }, + [2005762] = { + ["coords"] = {}, + }, + [2005763] = { + ["coords"] = {}, + }, + [2005764] = { + ["coords"] = {}, + }, + [2005765] = { + ["coords"] = {}, + }, + [2005766] = { + ["coords"] = {}, + }, + [2005767] = { + ["coords"] = {}, + }, + [2005768] = { + ["coords"] = {}, + }, + [2005769] = { + ["coords"] = {}, + }, + [2005770] = { + ["coords"] = {}, + }, + [2005771] = { + ["coords"] = {}, + }, + [2005772] = { + ["coords"] = {}, + }, + [2005773] = { + ["coords"] = {}, + }, + [2005774] = { + ["coords"] = {}, + }, + [2005775] = { + ["coords"] = {}, + }, + [2005776] = { + ["coords"] = {}, + }, + [2005777] = { + ["coords"] = {}, + }, + [2005778] = { + ["coords"] = {}, + }, + [2005779] = { + ["coords"] = {}, + }, + [2005780] = { + ["coords"] = {}, + }, + [2005781] = { + ["coords"] = {}, + }, + [2005782] = { + ["coords"] = {}, + }, + [2005783] = { + ["coords"] = {}, + }, + [2005784] = { + ["coords"] = {}, + }, + [2005785] = { + ["coords"] = {}, + }, + [2005786] = { + ["coords"] = {}, + }, + [2005787] = { + ["coords"] = {}, + }, + [2005788] = { + ["coords"] = {}, + }, + [2005789] = { + ["coords"] = {}, + }, + [2005790] = { + ["coords"] = {}, + }, + [2005791] = { + ["coords"] = {}, + }, + [2005792] = { + ["coords"] = {}, + }, + [2005793] = { + ["coords"] = {}, + }, + [2005794] = { + ["coords"] = {}, + }, + [2005795] = { + ["coords"] = {}, + }, + [2005796] = { + ["coords"] = {}, + }, + [2005797] = { + ["coords"] = {}, + }, + [2005798] = { + ["coords"] = {}, + }, + [2005799] = { + ["coords"] = {}, + }, + [2005800] = { + ["coords"] = {}, + }, + [2005801] = { + ["coords"] = { + [1] = { 64.5, 13.7, 33, 300 }, + [2] = { 64.3, 13.7, 33, 300 }, + [3] = { 64.3, 13.5, 33, 300 }, + [4] = { 30.2, 72.5, 85, 300 }, + [5] = { 30.3, 72.5, 85, 300 }, + }, + }, + [2005802] = { + ["coords"] = { + [1] = { 30.3, 72.5, 85, 300 }, + [2] = { 30.2, 71.8, 85, 300 }, + }, + }, + [2005803] = { + ["coords"] = { + [1] = { 64.3, 13.6, 33, 300 }, + [2] = { 64.5, 13.5, 33, 300 }, + [3] = { 30.2, 72.5, 85, 300 }, + [4] = { 33, 76.2, 5179, 300 }, + }, + }, + [2005804] = { + ["coords"] = { + [1] = { 45, 47.2, 2040, 300 }, + [2] = { 59.2, 24.5, 5225, 300 }, + }, + }, + [2005805] = { + ["coords"] = {}, + }, + [2005806] = { + ["coords"] = {}, + }, + [2005807] = { + ["coords"] = {}, + }, + [2005808] = { + ["coords"] = {}, + }, + [2005809] = { + ["coords"] = {}, + }, + [2005810] = { + ["coords"] = {}, + }, + [2005811] = { + ["coords"] = {}, + }, + [2005812] = { + ["coords"] = {}, + }, + [2005813] = { + ["coords"] = {}, + }, + [2005814] = { + ["coords"] = {}, + }, + [2005815] = { + ["coords"] = {}, + }, + [2005816] = { + ["coords"] = {}, + }, + [2005817] = { + ["coords"] = {}, + }, + [2005818] = { + ["coords"] = {}, + }, + [2005819] = { + ["coords"] = {}, + }, + [2005820] = { + ["coords"] = {}, + }, + [2005821] = { + ["coords"] = {}, + }, + [2005822] = { + ["coords"] = {}, + }, + [2005823] = { + ["coords"] = {}, + }, + [2005824] = { + ["coords"] = {}, + }, + [2005825] = { + ["coords"] = {}, + }, + [2005826] = { + ["coords"] = {}, + }, + [2005827] = { + ["coords"] = {}, + }, + [2005828] = { + ["coords"] = {}, + }, + [2005829] = { + ["coords"] = {}, + }, + [2005830] = { + ["coords"] = {}, + }, + [2005831] = { + ["coords"] = {}, + }, + [2005832] = { + ["coords"] = {}, + }, + [2005833] = { + ["coords"] = {}, + }, + [2005834] = { + ["coords"] = {}, + }, + [2005835] = { + ["coords"] = {}, + }, + [2005836] = { + ["coords"] = {}, + }, + [2005837] = { + ["coords"] = {}, + }, + [2005838] = { + ["coords"] = {}, + }, + [2005839] = { + ["coords"] = {}, + }, + [2005840] = { + ["coords"] = {}, + }, + [2005841] = { + ["coords"] = {}, + }, + [2005842] = { + ["coords"] = {}, + }, + [2005843] = { + ["coords"] = {}, + }, + [2005844] = { + ["coords"] = {}, + }, + [2005845] = { + ["coords"] = {}, + }, + [2005846] = { + ["coords"] = {}, + }, + [2005847] = { + ["coords"] = {}, + }, + [2005848] = { + ["coords"] = {}, + }, + [2005849] = { + ["coords"] = {}, + }, + [2005850] = { + ["coords"] = {}, + }, + [2005851] = { + ["coords"] = {}, + }, + [2005852] = { + ["coords"] = {}, + }, + [2005853] = { + ["coords"] = {}, + }, + [2005854] = { + ["coords"] = {}, + }, + [2005855] = { + ["coords"] = {}, + }, + [2005856] = { + ["coords"] = { + [1] = { 53.1, 49.6, 409, 300 }, + }, + }, + [2005857] = { + ["coords"] = {}, + }, + [2005858] = { + ["coords"] = {}, + }, + [2005859] = { + ["coords"] = {}, + }, + [2005860] = { + ["coords"] = {}, + }, + [2005861] = { + ["coords"] = {}, + }, + [2005862] = { + ["coords"] = {}, + }, + [2005863] = { + ["coords"] = {}, + }, + [2005864] = { + ["coords"] = {}, + }, + [2005865] = { + ["coords"] = {}, + }, + [2005866] = { + ["coords"] = {}, + }, + [2005867] = { + ["coords"] = {}, + }, + [2005868] = { + ["coords"] = {}, + }, + [2005869] = { + ["coords"] = {}, + }, + [2005870] = { + ["coords"] = { + [1] = { 42.5, 41.8, 406, 25 }, + }, + }, + [2005871] = { + ["coords"] = {}, + }, + [2005872] = { + ["coords"] = {}, + }, + [2005873] = { + ["coords"] = {}, + }, + [2005874] = { + ["coords"] = {}, + }, + [2005875] = { + ["coords"] = { + [1] = { 91.7, 21.7, 405, 300 }, + [2] = { 63.8, 90.8, 406, 300 }, + }, + }, + [2005876] = { + ["coords"] = {}, + }, + [2005877] = { + ["coords"] = {}, + }, + [2005878] = { + ["coords"] = {}, + }, + [2005879] = { + ["coords"] = {}, + }, + [2005880] = { + ["coords"] = {}, + }, + [2005881] = { + ["coords"] = {}, + }, + [2005882] = { + ["coords"] = { + [1] = { 31, 89.7, 405, 300 }, + [2] = { 36.1, 44, 406, 300 }, + }, + }, + [2005883] = { + ["coords"] = {}, + }, + [2005884] = { + ["coords"] = {}, + }, + [2005885] = { + ["coords"] = {}, + }, + [2005886] = { + ["coords"] = {}, + }, + [2005887] = { + ["coords"] = {}, + }, + [2005888] = { + ["coords"] = {}, + }, + [2005889] = { + ["coords"] = {}, + }, + [2005890] = { + ["coords"] = {}, + }, + [2005891] = { + ["coords"] = {}, + }, + [2005892] = { + ["coords"] = {}, + }, + [2005893] = { + ["coords"] = {}, + }, + [2005894] = { + ["coords"] = {}, + }, + [2005895] = { + ["coords"] = {}, + }, + [2005896] = { + ["coords"] = {}, + }, + [2005897] = { + ["coords"] = { + [1] = { 64.2, 13, 33, 300 }, + [2] = { 64.2, 12.7, 33, 300 }, + [3] = { 60, 7.8, 33, 300 }, + [4] = { 52.7, 52.8, 409, 300 }, + }, + }, + [2005898] = { + ["coords"] = {}, + }, + [2005899] = { + ["coords"] = {}, + }, + [2005900] = { + ["coords"] = {}, + }, + [2005901] = { + ["coords"] = {}, + }, + [2005902] = { + ["coords"] = {}, + }, + [2005903] = { + ["coords"] = {}, + }, + [2005904] = { + ["coords"] = {}, + }, + [2005905] = { + ["coords"] = {}, + }, + [2005906] = { + ["coords"] = {}, + }, + [2005907] = { + ["coords"] = {}, + }, + [2005908] = { + ["coords"] = {}, + }, + [2005909] = { + ["coords"] = {}, + }, + [2005910] = { + ["coords"] = {}, + }, + [2005911] = { + ["coords"] = {}, + }, + [2005912] = { + ["coords"] = {}, + }, + [2005913] = { + ["coords"] = {}, + }, + [2005914] = { + ["coords"] = {}, + }, + [2005915] = { + ["coords"] = {}, + }, + [2005916] = { + ["coords"] = {}, + }, + [2005917] = { + ["coords"] = { + [1] = { 58.1, 22.6, 440, 300 }, + }, + }, + [2005918] = { + ["coords"] = {}, + }, + [2005919] = { + ["coords"] = { + [1] = { 82.5, 54.9, 400, 25 }, + }, + }, + [2005920] = { + ["coords"] = {}, + }, + [2005921] = { + ["coords"] = {}, + }, + [2005922] = { + ["coords"] = {}, + }, + [2005923] = { + ["coords"] = {}, + }, + [2005924] = { + ["coords"] = {}, + }, + [2005925] = { + ["coords"] = {}, + }, + [2005926] = { + ["coords"] = {}, + }, + [2005927] = { + ["coords"] = {}, + }, + [2005928] = { + ["coords"] = {}, + }, + [2005929] = { + ["coords"] = {}, + }, + [2005930] = { + ["coords"] = {}, + }, + [2005931] = { + ["coords"] = {}, + }, + [2005932] = { + ["coords"] = {}, + }, + [2005933] = { + ["coords"] = {}, + }, + [2005934] = { + ["coords"] = {}, + }, + [2005935] = { + ["coords"] = {}, + }, + [2005936] = { + ["coords"] = {}, + }, + [2005937] = { + ["coords"] = {}, + }, + [2005938] = { + ["coords"] = {}, + }, + [2005939] = { + ["coords"] = {}, + }, + [2005940] = { + ["coords"] = {}, + }, + [2005941] = { + ["coords"] = {}, + }, + [2005942] = { + ["coords"] = {}, + }, + [2005943] = { + ["coords"] = {}, + }, + [2005944] = { + ["coords"] = {}, + }, + [2005945] = { + ["coords"] = { + [1] = { 41.3, 93.6, 17, 300 }, + [2] = { 25.6, 25.4, 400, 300 }, + }, + }, + [2005946] = { + ["coords"] = {}, + }, + [2005947] = { + ["coords"] = {}, + }, + [2005948] = { + ["coords"] = { + [1] = { 41.2, 93.7, 17, 300 }, + [2] = { 25.3, 25.5, 400, 300 }, + }, + }, + [2005949] = { + ["coords"] = {}, + }, + [2005950] = { + ["coords"] = {}, + }, + [2005951] = { + ["coords"] = {}, + }, + [2005952] = { + ["coords"] = {}, + }, + [2005953] = { + ["coords"] = {}, + }, + [2005954] = { + ["coords"] = {}, + }, + [2005955] = { + ["coords"] = {}, + }, + [2005956] = { + ["coords"] = {}, + }, + [2005957] = { + ["coords"] = { + [1] = { 46.9, 34.7, 17, 300 }, + [2] = { 82, 62.5, 357, 300 }, + [3] = { 81.9, 62.5, 357, 300 }, + [4] = { 81.9, 62.4, 357, 300 }, + [5] = { 39.1, 64.3, 718, 300 }, + [6] = { 43.3, 60.1, 2040, 300 }, + [7] = { 58.4, 30.6, 5225, 300 }, + }, + }, + [2005958] = { + ["coords"] = { + [1] = { 46.9, 34.7, 17, 300 }, + [2] = { 39.4, 63.7, 718, 300 }, + }, + }, + [2005959] = { + ["coords"] = {}, + }, + [2005960] = { + ["coords"] = {}, + }, + [2005961] = { + ["coords"] = {}, + }, + [2005962] = { + ["coords"] = {}, + }, + [2005963] = { + ["coords"] = {}, + }, + [2005964] = { + ["coords"] = {}, + }, + [2005965] = { + ["coords"] = {}, + }, + [2005966] = { + ["coords"] = {}, + }, + [2005967] = { + ["coords"] = {}, + }, + [2005968] = { + ["coords"] = {}, + }, + [2005969] = { + ["coords"] = {}, + }, + [2005970] = { + ["coords"] = {}, + }, + [2005971] = { + ["coords"] = {}, + }, + [2005972] = { + ["coords"] = {}, + }, + [2005973] = { + ["coords"] = {}, + }, + [2005974] = { + ["coords"] = {}, + }, + [2005975] = { + ["coords"] = {}, + }, + [2005976] = { + ["coords"] = {}, + }, + [2005977] = { + ["coords"] = {}, + }, + [2005978] = { + ["coords"] = {}, + }, + [2005979] = { + ["coords"] = { + [1] = { 32.3, 47.4, 10, 300 }, + [2] = { 39.2, 69.4, 12, 300 }, + [3] = { 44.9, 15.3, 14, 300 }, + [4] = { 51.1, 37.9, 16, 300 }, + [5] = { 43.7, 91.6, 17, 300 }, + [6] = { 54.4, 1.5, 17, 300 }, + [7] = { 54.4, 1.4, 17, 300 }, + [8] = { 54.2, 1.3, 17, 300 }, + [9] = { 90.1, 22, 46, 300 }, + [10] = { 79.5, 82.2, 331, 300 }, + [11] = { 79.5, 82.1, 331, 300 }, + [12] = { 79.2, 81.9, 331, 300 }, + [13] = { 31.2, 20.8, 400, 300 }, + [14] = { 50.3, 63.6, 406, 300 }, + [15] = { 67.2, 85.5, 618, 300 }, + }, + }, + [2005980] = { + ["coords"] = { + [1] = { 42.6, 72.7, 15, 25 }, + [2] = { 82.3, 55.8, 400, 25 }, + [3] = { 66.5, 85.7, 618, 300 }, + [4] = { 66.6, 85.6, 618, 300 }, + [5] = { 66.8, 85.5, 618, 300 }, + }, + }, + [2005981] = { + ["coords"] = { + [1] = { 35.6, 25.7, 16, 300 }, + [2] = { 35.5, 25.7, 16, 300 }, + [3] = { 35.8, 25.5, 16, 300 }, + [4] = { 67.1, 85.8, 618, 300 }, + [5] = { 67.2, 85.6, 618, 300 }, + }, + }, + [2005982] = { + ["coords"] = { + [1] = { 50.8, 50.2, 8, 300 }, + [2] = { 51, 50, 8, 300 }, + [3] = { 51.1, 49.8, 8, 300 }, + [4] = { 35.8, 25.6, 16, 300 }, + [5] = { 95.3, 25, 331, 300 }, + [6] = { 95.1, 21.6, 331, 300 }, + [7] = { 67.3, 85.7, 618, 300 }, + [8] = { 44.2, 43.2, 5179, 300 }, + }, + }, + [2005983] = { + ["coords"] = {}, + }, + [2005984] = { + ["coords"] = {}, + }, + [2005985] = { + ["coords"] = {}, + }, + [2005986] = { + ["coords"] = {}, + }, + [2005987] = { + ["coords"] = { + [1] = { 64.1, 16.9, 33, 300 }, + }, + }, + [2005988] = { + ["coords"] = { + [1] = { 44.2, 43.5, 5179, 300 }, + [2] = { 44.2, 43.4, 5179, 300 }, + }, + }, + [2005989] = { + ["coords"] = { + [1] = { 64.4, 16.9, 33, 300 }, + }, + }, + [2005990] = { + ["coords"] = {}, + }, + [2005991] = { + ["coords"] = { + [1] = { 51.2, 50.6, 8, 300 }, + [2] = { 51.2, 50.3, 8, 300 }, + [3] = { 51.1, 50.2, 8, 300 }, + [4] = { 51.1, 50.1, 8, 300 }, + }, + }, + [2005992] = { + ["coords"] = { + [1] = { 27.9, 44.7, 15, 0 }, + [2] = { 27.9, 44.5, 15, 0 }, + [3] = { 50, 77.1, 17, 0 }, + [4] = { 50, 77, 17, 0 }, + }, + }, + [2005993] = { + ["coords"] = { + [1] = { 28, 44.8, 15, 0 }, + [2] = { 50, 77.2, 17, 0 }, + }, + }, + [2005994] = { + ["coords"] = {}, + }, + [2005995] = { + ["coords"] = { + [1] = { 51.1, 37.8, 16, 300 }, + [2] = { 51.6, 37.4, 16, 300 }, + [3] = { 61.5, 24.3, 17, 300 }, + }, + }, + [2005996] = { + ["coords"] = { + [1] = { 35.6, 25.7, 16, 300 }, + [2] = { 66.7, 86.1, 618, 300 }, + [3] = { 67.1, 85.8, 618, 300 }, + [4] = { 67.2, 85.6, 618, 300 }, + [5] = { 5.6, 87.3, 1337, 300 }, + [6] = { 13.1, 94.2, 5602, 300 }, + }, + }, + [2005997] = { + ["coords"] = {}, + }, + [2005998] = { + ["coords"] = {}, + }, + [2005999] = { + ["coords"] = {}, + }, + [2006000] = { + ["coords"] = {}, + }, + [2006001] = { + ["coords"] = {}, + }, + [2006002] = { + ["coords"] = {}, + }, + [2006003] = { + ["coords"] = {}, + }, + [2006004] = { + ["coords"] = {}, + }, + [2006005] = { + ["coords"] = {}, + }, + [2006006] = { + ["coords"] = {}, + }, + [2006007] = { + ["coords"] = {}, + }, + [2006008] = { + ["coords"] = {}, + }, + [2006009] = { + ["coords"] = {}, + }, + [2006010] = { + ["coords"] = {}, + }, + [2006011] = { + ["coords"] = {}, + }, + [2006012] = { + ["coords"] = {}, + }, + [2006013] = { + ["coords"] = {}, + }, + [2006014] = { + ["coords"] = {}, + }, + [2006015] = { + ["coords"] = {}, + }, + [2006016] = { + ["coords"] = {}, + }, + [2006017] = { + ["coords"] = {}, + }, + [2006018] = { + ["coords"] = {}, + }, + [2006019] = { + ["coords"] = {}, + }, + [2006020] = { + ["coords"] = {}, + }, + [2006021] = { + ["coords"] = {}, + }, + [2006022] = { + ["coords"] = {}, + }, + [2006023] = { + ["coords"] = {}, + }, + [2006024] = { + ["coords"] = {}, + }, + [2006025] = { + ["coords"] = {}, + }, + [2006026] = { + ["coords"] = {}, + }, + [2006027] = { + ["coords"] = {}, + }, + [2006028] = { + ["coords"] = {}, + }, + [2006029] = { + ["coords"] = {}, + }, + [2006030] = { + ["coords"] = {}, + }, + [2006031] = { + ["coords"] = {}, + }, + [2006032] = { + ["coords"] = {}, + }, + [2006033] = { + ["coords"] = {}, + }, + [2006034] = { + ["coords"] = {}, + }, + [2006035] = { + ["coords"] = {}, + }, + [2006036] = { + ["coords"] = {}, + }, + [2006037] = { + ["coords"] = {}, + }, + [2006038] = { + ["coords"] = {}, + }, + [2006039] = { + ["coords"] = {}, + }, + [2006040] = { + ["coords"] = {}, + }, + [2006041] = { + ["coords"] = { + [1] = { 52.7, 64.5, 14, 300 }, + }, + }, + [2006042] = { + ["coords"] = {}, + }, + [2006043] = { + ["coords"] = { + [1] = { 53, 63.8, 14, 300 }, + }, + }, + [2006044] = { + ["coords"] = {}, + }, + [2006045] = { + ["coords"] = {}, + }, + [2006046] = { + ["coords"] = {}, + }, + [2006047] = { + ["coords"] = {}, + }, + [2006048] = { + ["coords"] = { + [1] = { 51.2, 62.3, 357, 300 }, + [2] = { 24.3, 12.8, 406, 300 }, + [3] = { 51.2, 34.2, 5121, 300 }, + [4] = { 33.1, 76.1, 5179, 300 }, + }, + }, + [2006049] = { + ["coords"] = { + [1] = { 48.1, 51.5, 8, 300 }, + [2] = { 52.7, 45.4, 5601, 604800 }, + }, + }, + [2006050] = { + ["coords"] = {}, + }, + [2006051] = { + ["coords"] = {}, + }, + [2006052] = { + ["coords"] = {}, + }, + [2006053] = { + ["coords"] = {}, + }, + [2006054] = { + ["coords"] = {}, + }, + [2006055] = { + ["coords"] = {}, + }, + [2006056] = { + ["coords"] = {}, + }, + [2006057] = { + ["coords"] = {}, + }, + [2006058] = { + ["coords"] = {}, + }, + [2006059] = { + ["coords"] = {}, + }, + [2006060] = { + ["coords"] = {}, + }, + [2006061] = { + ["coords"] = {}, + }, + [2006062] = { + ["coords"] = {}, + }, + [2006063] = { + ["coords"] = {}, + }, + [2006064] = { + ["coords"] = {}, + }, + [2006065] = { + ["coords"] = { + [1] = { 52.8, 64.3, 14, 300 }, + }, + }, + [2006066] = { + ["coords"] = {}, + }, + [2006067] = { + ["coords"] = {}, + }, + [2006068] = { + ["coords"] = {}, + }, + [2006069] = { + ["coords"] = {}, + }, + [2006070] = { + ["coords"] = {}, + }, + [2006071] = { + ["coords"] = {}, + }, + [2006072] = { + ["coords"] = {}, + }, + [2006073] = { + ["coords"] = {}, + }, + [2006074] = { + ["coords"] = {}, + }, + [2006075] = { + ["coords"] = {}, + }, + [2006076] = { + ["coords"] = {}, + }, + [2006077] = { + ["coords"] = {}, + }, + [2006078] = { + ["coords"] = {}, + }, + [2006079] = { + ["coords"] = {}, + }, + [2006080] = { + ["coords"] = {}, + }, + [2006081] = { + ["coords"] = { + [1] = { 91.8, 23.2, 405, 300 }, + [2] = { 92.1, 23.1, 405, 300 }, + [3] = { 92, 22.5, 405, 300 }, + [4] = { 63.9, 91.9, 406, 300 }, + [5] = { 64.1, 91.8, 406, 300 }, + [6] = { 64, 91.3, 406, 300 }, + }, + }, + [2006082] = { + ["coords"] = { + [1] = { 91.9, 22.2, 405, 300 }, + [2] = { 63.9, 91.2, 406, 300 }, + }, + }, + [2006083] = { + ["coords"] = {}, + }, + [2006084] = { + ["coords"] = {}, + }, + [2006085] = { + ["coords"] = {}, + }, + [2006086] = { + ["coords"] = {}, + }, + [2006087] = { + ["coords"] = {}, + }, + [2006088] = { + ["coords"] = {}, + }, + [2006089] = { + ["coords"] = {}, + }, + [2006090] = { + ["coords"] = {}, + }, + [2006091] = { + ["coords"] = {}, + }, + [2006092] = { + ["coords"] = {}, + }, + [2006093] = { + ["coords"] = {}, + }, + [2006094] = { + ["coords"] = {}, + }, + [2006095] = { + ["coords"] = { + [1] = { 42.6, 43.5, 5179, 300 }, + }, + }, + [2006096] = { + ["coords"] = {}, + }, + [2006097] = { + ["coords"] = { + [1] = { 23, 29.2, 1, 300 }, + [2] = { 23, 29.1, 1, 300 }, + [3] = { 23, 28.9, 1, 300 }, + [4] = { 23, 28.8, 1, 300 }, + [5] = { 43.2, 80.4, 33, 300 }, + [6] = { 24.6, 72, 440, 300 }, + [7] = { 31.1, 38.3, 440, 300 }, + [8] = { 78.3, 67.7, 490, 300 }, + [9] = { 62.5, 7.7, 721, 300 }, + [10] = { 62.6, 6.7, 721, 300 }, + [11] = { 62.7, 5.5, 721, 300 }, + [12] = { 62.9, 4.4, 721, 300 }, + }, + }, + [2006098] = { + ["coords"] = {}, + }, + [2006099] = { + ["coords"] = {}, + }, + [2006100] = { + ["coords"] = {}, + }, + [2006101] = { + ["coords"] = {}, + }, + [2006102] = { + ["coords"] = {}, + }, + [2006103] = { + ["coords"] = {}, + }, + [2006104] = { + ["coords"] = {}, + }, + [2006105] = { + ["coords"] = {}, + }, + [2006106] = { + ["coords"] = {}, + }, + [2006107] = { + ["coords"] = {}, + }, + [2006108] = { + ["coords"] = {}, + }, + [2006109] = { + ["coords"] = {}, + }, + [2006110] = { + ["coords"] = {}, + }, + [2006111] = { + ["coords"] = {}, + }, + [2006112] = { + ["coords"] = {}, + }, + [2006113] = { + ["coords"] = {}, + }, + [2006114] = { + ["coords"] = {}, + }, + [2006115] = { + ["coords"] = {}, + }, + [2006116] = { + ["coords"] = {}, + }, + [2006117] = { + ["coords"] = {}, + }, + [2006118] = { + ["coords"] = {}, + }, + [2006119] = { + ["coords"] = {}, + }, + [2006120] = { + ["coords"] = {}, + }, + [2006121] = { + ["coords"] = { + [1] = { 61.2, 58.3, 1497, 300 }, + }, + }, + [2006122] = { + ["coords"] = {}, + }, + [2006123] = { + ["coords"] = {}, + }, + [2006124] = { + ["coords"] = {}, + }, + [2006125] = { + ["coords"] = {}, + }, + [2006126] = { + ["coords"] = {}, + }, + [2006127] = { + ["coords"] = {}, + }, + [2006128] = { + ["coords"] = {}, + }, + [2006129] = { + ["coords"] = {}, + }, + [2006130] = { + ["coords"] = {}, + }, + [2006131] = { + ["coords"] = {}, + }, + [2006132] = { + ["coords"] = {}, + }, + [2006133] = { + ["coords"] = {}, + }, + [2006134] = { + ["coords"] = {}, + }, + [2006135] = { + ["coords"] = {}, + }, + [2006136] = { + ["coords"] = {}, + }, + [2006137] = { + ["coords"] = {}, + }, + [2006138] = { + ["coords"] = { + [1] = { 28.7, 10.2, 5628, 300 }, + }, + }, + [2006139] = { + ["coords"] = { + [1] = { 45.7, 39.6, 5601, 604800 }, + }, + }, + [2006140] = { + ["coords"] = {}, + }, + [2006141] = { + ["coords"] = { + [1] = { 15.7, 63.3, 46, 300 }, + [2] = { 15.7, 63.2, 46, 300 }, + [3] = { 9.9, 45.1, 47, 300 }, + [4] = { 9.7, 45.1, 47, 300 }, + [5] = { 9.6, 44.8, 47, 300 }, + [6] = { 9.6, 44.3, 47, 300 }, + [7] = { 10.2, 44.1, 47, 300 }, + [8] = { 9.7, 43.6, 47, 300 }, + [9] = { 10.2, 43.3, 47, 300 }, + [10] = { 94.5, 4.3, 267, 300 }, + [11] = { 94.3, 4.2, 267, 300 }, + [12] = { 94, 3.9, 267, 300 }, + [13] = { 94.1, 3.4, 267, 300 }, + [14] = { 94.9, 3.1, 267, 300 }, + [15] = { 94.3, 2.5, 267, 300 }, + [16] = { 94.8, 2.2, 267, 300 }, + [17] = { 81.9, 62.5, 357, 300 }, + [18] = { 82, 62.4, 357, 300 }, + [19] = { 81.9, 62.4, 357, 300 }, + [20] = { 92, 89.9, 5581, 300 }, + [21] = { 92.1, 89.8, 5581, 300 }, + }, + }, + [2006142] = { + ["coords"] = { + [1] = { 15.7, 63.1, 46, 300 }, + [2] = { 92.1, 89.8, 5581, 300 }, + }, + }, + [2006143] = { + ["coords"] = { + [1] = { 15.6, 63.1, 46, 300 }, + [2] = { 92, 89.8, 5581, 300 }, + }, + }, + [2006144] = { + ["coords"] = {}, + }, + [2006145] = { + ["coords"] = {}, + }, + [2006146] = { + ["coords"] = {}, + }, + [2006147] = { + ["coords"] = {}, + }, + [2006148] = { + ["coords"] = {}, + }, + [2006149] = { + ["coords"] = {}, + }, + [2006150] = { + ["coords"] = {}, + }, + [2006151] = { + ["coords"] = {}, + }, + [2006152] = { + ["coords"] = {}, + }, + [2006153] = { + ["coords"] = {}, + }, + [2006154] = { + ["coords"] = {}, + }, + [2006155] = { + ["coords"] = {}, + }, + [2006156] = { + ["coords"] = { + [1] = { 43.2, 80.4, 33, 300 }, + [2] = { 38, 30, 405, 300 }, + [3] = { 31, 38.2, 440, 300 }, + [4] = { 78.2, 67.4, 490, 300 }, + [5] = { 58.1, 25.5, 1537, 300 }, + [6] = { 45.2, 40.6, 1637, 300 }, + }, + }, + [2006157] = { + ["coords"] = {}, + }, + [2006158] = { + ["coords"] = {}, + }, + [2006159] = { + ["coords"] = {}, + }, + [2006160] = { + ["coords"] = {}, + }, + [2006161] = { + ["coords"] = {}, + }, + [2006162] = { + ["coords"] = {}, + }, + [2006163] = { + ["coords"] = {}, + }, + [2006164] = { + ["coords"] = {}, + }, + [2006165] = { + ["coords"] = {}, + }, + [2006166] = { + ["coords"] = {}, + }, + [2006167] = { + ["coords"] = {}, + }, + [2006168] = { + ["coords"] = {}, + }, + [2006169] = { + ["coords"] = {}, + }, + [2006170] = { + ["coords"] = {}, + }, + [2006171] = { + ["coords"] = {}, + }, + [2006172] = { + ["coords"] = {}, + }, + [2006173] = { + ["coords"] = {}, + }, + [2006174] = { + ["coords"] = {}, + }, + [2006175] = { + ["coords"] = {}, + }, + [2006176] = { + ["coords"] = {}, + }, + [2006177] = { + ["coords"] = { + [1] = { 24.2, 27.8, 1, 300 }, + }, + }, + [2006178] = { + ["coords"] = {}, + }, + [2006179] = { + ["coords"] = {}, + }, + [2006180] = { + ["coords"] = {}, + }, + [2006181] = { + ["coords"] = {}, + }, + [2006182] = { + ["coords"] = {}, + }, + [2006183] = { + ["coords"] = {}, + }, + [2006184] = { + ["coords"] = {}, + }, + [2006185] = { + ["coords"] = {}, + }, + [2006186] = { + ["coords"] = {}, + }, + [2006187] = { + ["coords"] = {}, + }, + [2006188] = { + ["coords"] = {}, + }, + [2006189] = { + ["coords"] = { + [1] = { 59.5, 33.3, 618, 300 }, + }, + }, + [2006190] = { + ["coords"] = {}, + }, + [2006191] = { + ["coords"] = {}, + }, + [2006192] = { + ["coords"] = {}, + }, + [2006193] = { + ["coords"] = {}, + }, + [2006194] = { + ["coords"] = {}, + }, + [2006195] = { + ["coords"] = {}, + }, + [2006196] = { + ["coords"] = {}, + }, + [2006197] = { + ["coords"] = { + [1] = { 39.9, 39.1, 8, 300 }, + [2] = { 48.9, 60.9, 11, 300 }, + [3] = { 29.3, 70.6, 16, 300 }, + [4] = { 80.8, 60.6, 28, 300 }, + [5] = { 19.6, 65.8, 46, 300 }, + [6] = { 29.8, 72.5, 85, 300 }, + [7] = { 22.5, 84.1, 139, 300 }, + [8] = { 42.1, 74.9, 331, 300 }, + [9] = { 83, 55.1, 400, 25 }, + [10] = { 47.8, 57.3, 406, 300 }, + [11] = { 77.7, 41.1, 406, 300 }, + [12] = { 67.6, 26.9, 1519, 300 }, + [13] = { 28, 14.7, 1519, 300 }, + [14] = { 95.6, 92.2, 5581, 300 }, + [15] = { 52.7, 91.8, 5581, 300 }, + [16] = { 31.5, 85.3, 5581, 300 }, + [17] = { 6.3, 25.7, 5602, 300 }, + }, + }, + [2006198] = { + ["coords"] = {}, + }, + [2006199] = { + ["coords"] = {}, + }, + [2006200] = { + ["coords"] = {}, + }, + [2006201] = { + ["coords"] = {}, + }, + [2006202] = { + ["coords"] = {}, + }, + [2006203] = { + ["coords"] = {}, + }, + [2006204] = { + ["coords"] = {}, + }, + [2006205] = { + ["coords"] = {}, + }, + [2006206] = { + ["coords"] = { + [1] = { 84.2, 77.6, 5208, 300 }, + }, + }, + [2006207] = { + ["coords"] = {}, + }, + [2006208] = { + ["coords"] = {}, + }, + [2006209] = { + ["coords"] = {}, + }, + [2006210] = { + ["coords"] = {}, + }, + [2006211] = { + ["coords"] = {}, + }, + [2006212] = { + ["coords"] = {}, + }, + [2006213] = { + ["coords"] = {}, + }, + [2006214] = { + ["coords"] = {}, + }, + [2006215] = { + ["coords"] = {}, + }, + [2006216] = { + ["coords"] = {}, + }, + [2006217] = { + ["coords"] = {}, + }, + [2006218] = { + ["coords"] = { + [1] = { 60.2, 67.9, 85, 300 }, + [2] = { 72.5, 54.5, 1497, 300 }, + [3] = { 58.5, 13.3, 1497, 300 }, + }, + }, + [2006219] = { + ["coords"] = {}, + }, + [2006220] = { + ["coords"] = { + [1] = { 42, 74.1, 15, 300 }, + }, + }, + [2006221] = { + ["coords"] = {}, + }, + [2006222] = { + ["coords"] = {}, + }, + [2006223] = { + ["coords"] = {}, + }, + [2006224] = { + ["coords"] = {}, + }, + [2006225] = { + ["coords"] = {}, + }, + [2006226] = { + ["coords"] = {}, + }, + [2006227] = { + ["coords"] = {}, + }, + [2006228] = { + ["coords"] = {}, + }, + [2006229] = { + ["coords"] = { + [1] = { 62.4, 56.5, 1497, 300 }, + [2] = { 61.9, 56.1, 1497, 300 }, + }, + }, + [2006230] = { + ["coords"] = {}, + }, + [2006231] = { + ["coords"] = {}, + }, + [2006232] = { + ["coords"] = {}, + }, + [2006233] = { + ["coords"] = {}, + }, + [2006234] = { + ["coords"] = {}, + }, + [2006235] = { + ["coords"] = {}, + }, + [2006236] = { + ["coords"] = {}, + }, + [2006237] = { + ["coords"] = {}, + }, + [2006238] = { + ["coords"] = {}, + }, + [2006239] = { + ["coords"] = {}, + }, + [2006240] = { + ["coords"] = { + [1] = { 45.3, 46.4, 5130, 300 }, + }, + }, + [2006241] = { + ["coords"] = { + [1] = { 45.2, 45.7, 5130, 300 }, + }, + }, + [2006242] = { + ["coords"] = {}, + }, + [2006243] = { + ["coords"] = {}, + }, + [2006244] = { + ["coords"] = {}, + }, + [2006245] = { + ["coords"] = {}, + }, + [2006246] = { + ["coords"] = {}, + }, + [2006247] = { + ["coords"] = {}, + }, + [2006248] = { + ["coords"] = {}, + }, + [2006249] = { + ["coords"] = {}, + }, + [2006250] = { + ["coords"] = {}, + }, + [2006251] = { + ["coords"] = {}, + }, + [2006252] = { + ["coords"] = {}, + }, + [2006253] = { + ["coords"] = {}, + }, + [2006254] = { + ["coords"] = { + [1] = { 78.4, 69.1, 38, 25 }, + [2] = { 79.1, 67.7, 38, 25 }, + [3] = { 79.5, 67.6, 38, 25 }, + [4] = { 79.1, 67.6, 38, 25 }, + [5] = { 79.1, 67.5, 38, 25 }, + [6] = { 80.3, 66.4, 38, 25 }, + [7] = { 79.9, 64.1, 38, 25 }, + [8] = { 85.1, 61.6, 38, 25 }, + [9] = { 84.6, 60.7, 38, 25 }, + [10] = { 32.5, 43.5, 405, 300 }, + [11] = { 32.8, 43.4, 405, 300 }, + [12] = { 32.7, 43.2, 405, 300 }, + [13] = { 32.7, 43, 405, 300 }, + [14] = { 38.7, 79.6, 5602, 25 }, + [15] = { 39.1, 78.9, 5602, 25 }, + [16] = { 39.3, 78.9, 5602, 25 }, + [17] = { 39, 78.9, 5602, 25 }, + [18] = { 39.1, 78.8, 5602, 25 }, + [19] = { 39.7, 78.2, 5602, 25 }, + [20] = { 39.5, 77.1, 5602, 25 }, + [21] = { 42.1, 75.8, 5602, 25 }, + [22] = { 41.9, 75.3, 5602, 25 }, + }, + }, + [2006255] = { + ["coords"] = { + [1] = { 78.4, 75.2, 38, 25 }, + [2] = { 78.4, 68.9, 38, 25 }, + [3] = { 80.4, 66.1, 38, 25 }, + [4] = { 79.1, 65.9, 38, 25 }, + [5] = { 84.4, 62.9, 38, 25 }, + [6] = { 83.9, 62.9, 38, 25 }, + [7] = { 85, 61.8, 38, 25 }, + [8] = { 32.5, 43.1, 405, 300 }, + [9] = { 38.7, 82.8, 5602, 25 }, + [10] = { 38.7, 79.6, 5602, 25 }, + [11] = { 39.7, 78.1, 5602, 25 }, + [12] = { 39.1, 78, 5602, 25 }, + [13] = { 41.8, 76.5, 5602, 25 }, + [14] = { 41.5, 76.5, 5602, 25 }, + [15] = { 42.1, 75.9, 5602, 25 }, + }, + }, + [2006256] = { + ["coords"] = { + [1] = { 78.2, 69.1, 38, 25 }, + [2] = { 79.6, 67.3, 38, 25 }, + [3] = { 79.3, 67.1, 38, 25 }, + [4] = { 84.8, 60.8, 38, 25 }, + [5] = { 32.7, 43.4, 405, 300 }, + [6] = { 32.5, 43.4, 405, 300 }, + [7] = { 38.6, 79.6, 5602, 25 }, + [8] = { 39.3, 78.7, 5602, 25 }, + [9] = { 39.2, 78.6, 5602, 25 }, + [10] = { 42, 75.4, 5602, 25 }, + }, + }, + [2006257] = { + ["coords"] = { + [1] = { 78.2, 68.9, 38, 25 }, + [2] = { 79.7, 67.4, 38, 25 }, + [3] = { 79.4, 67.2, 38, 25 }, + [4] = { 80, 65.3, 38, 25 }, + [5] = { 84.5, 62.8, 38, 25 }, + [6] = { 83.6, 62.1, 38, 25 }, + [7] = { 84.7, 60.8, 38, 25 }, + [8] = { 32.6, 43.5, 405, 300 }, + [9] = { 32.8, 43, 405, 300 }, + [10] = { 38.6, 79.5, 5602, 25 }, + [11] = { 39.4, 78.8, 5602, 25 }, + [12] = { 39.2, 78.7, 5602, 25 }, + [13] = { 39.5, 77.7, 5602, 25 }, + [14] = { 41.8, 76.4, 5602, 25 }, + [15] = { 41.4, 76.1, 5602, 25 }, + [16] = { 41.9, 75.4, 5602, 25 }, + }, + }, + [2006258] = { + ["coords"] = { + [1] = { 78.3, 75.2, 38, 25 }, + [2] = { 79.8, 65.3, 38, 25 }, + [3] = { 80, 64.2, 38, 25 }, + [4] = { 32.5, 43.3, 405, 300 }, + [5] = { 38.7, 82.8, 5602, 25 }, + [6] = { 39.4, 77.7, 5602, 25 }, + [7] = { 39.5, 77.1, 5602, 25 }, + }, + }, + [2006259] = { + ["coords"] = {}, + }, + [2006260] = { + ["coords"] = {}, + }, + [2006261] = { + ["coords"] = {}, + }, + [2006262] = { + ["coords"] = {}, + }, + [2006263] = { + ["coords"] = {}, + }, + [2006264] = { + ["coords"] = {}, + }, + [2006265] = { + ["coords"] = { + [1] = { 51.5, 60.8, 357, 300 }, + [2] = { 51.4, 60.8, 357, 300 }, + [3] = { 51.4, 60.7, 357, 300 }, + [4] = { 51.3, 60.6, 357, 300 }, + [5] = { 51.3, 60.5, 357, 300 }, + [6] = { 51.3, 60.4, 357, 300 }, + [7] = { 51.3, 60.3, 357, 300 }, + [8] = { 51.3, 60.2, 357, 300 }, + [9] = { 51.3, 60, 357, 300 }, + [10] = { 51.3, 59.9, 357, 300 }, + [11] = { 51.3, 59.8, 357, 300 }, + [12] = { 51.3, 59.7, 357, 300 }, + [13] = { 51.3, 59.6, 357, 300 }, + [14] = { 51.3, 59.5, 357, 300 }, + [15] = { 51.3, 59.4, 357, 300 }, + [16] = { 51.3, 59.3, 357, 300 }, + [17] = { 51.3, 59.2, 357, 300 }, + [18] = { 51.3, 59.1, 357, 300 }, + [19] = { 51.4, 59.1, 357, 300 }, + [20] = { 30.8, 38.5, 440, 300 }, + [21] = { 30.7, 38.5, 440, 300 }, + [22] = { 30.9, 38.4, 440, 300 }, + [23] = { 30.6, 38.3, 440, 300 }, + [24] = { 30.6, 38.2, 440, 300 }, + [25] = { 30.6, 38.1, 440, 300 }, + [26] = { 30.7, 38, 440, 300 }, + [27] = { 77.7, 68.1, 490, 300 }, + [28] = { 77.8, 68.1, 490, 300 }, + [29] = { 77.6, 68, 490, 300 }, + [30] = { 77.9, 68, 490, 300 }, + [31] = { 77.9, 67.9, 490, 300 }, + [32] = { 77.4, 67.7, 490, 300 }, + [33] = { 77.4, 67.6, 490, 300 }, + [34] = { 77.4, 67.5, 490, 300 }, + [35] = { 77.4, 67.4, 490, 300 }, + [36] = { 77.5, 67.3, 490, 300 }, + [37] = { 77.5, 67.2, 490, 300 }, + }, + }, + [2006266] = { + ["coords"] = {}, + }, + [2006267] = { + ["coords"] = { + [1] = { 51.4, 59, 357, 300 }, + }, + }, + [2006268] = { + ["coords"] = { + [1] = { 51.3, 60.5, 357, 300 }, + [2] = { 51.3, 60.1, 357, 300 }, + [3] = { 51.3, 59.6, 357, 300 }, + [4] = { 51.4, 59, 357, 300 }, + [5] = { 30.8, 38.5, 440, 300 }, + [6] = { 30.7, 38.5, 440, 300 }, + [7] = { 30.9, 38.4, 440, 300 }, + [8] = { 30.6, 38.3, 440, 300 }, + [9] = { 30.6, 38.2, 440, 300 }, + [10] = { 30.6, 38.1, 440, 300 }, + [11] = { 30.7, 38, 440, 300 }, + [12] = { 77.8, 68.1, 490, 300 }, + [13] = { 77.7, 68.1, 490, 300 }, + [14] = { 77.8, 68, 490, 300 }, + [15] = { 77.6, 68, 490, 300 }, + [16] = { 77.9, 67.9, 490, 300 }, + [17] = { 77.4, 67.8, 490, 300 }, + [18] = { 77.4, 67.7, 490, 300 }, + [19] = { 77.4, 67.5, 490, 300 }, + [20] = { 77.4, 67.4, 490, 300 }, + [21] = { 77.4, 67.3, 490, 300 }, + [22] = { 77.5, 67.2, 490, 300 }, + }, + }, + [2006269] = { + ["coords"] = {}, + }, + [2006270] = { + ["coords"] = {}, + }, + [2006271] = { + ["coords"] = {}, + }, + [2006272] = { + ["coords"] = {}, + }, + [2006273] = { + ["coords"] = {}, + }, + [2006274] = { + ["coords"] = {}, + }, + [2006275] = { + ["coords"] = { + [1] = { 56.8, 10.8, 490, 300 }, + }, + }, + [2006276] = { + ["coords"] = {}, + }, + [2006277] = { + ["coords"] = {}, + }, + [2006278] = { + ["coords"] = {}, + }, + [2006279] = { + ["coords"] = {}, + }, + [2006280] = { + ["coords"] = { + [1] = { 57.3, 8.5, 490, 300 }, + [2] = { 56.2, 8.2, 490, 300 }, + [3] = { 56.6, 7.4, 490, 300 }, + }, + }, + [2006281] = { + ["coords"] = {}, + }, + [2006282] = { + ["coords"] = { + [1] = { 56.9, 9, 490, 300 }, + }, + }, + [2006283] = { + ["coords"] = {}, + }, + [2006284] = { + ["coords"] = {}, + }, + [2006285] = { + ["coords"] = {}, + }, + [2006286] = { + ["coords"] = {}, + }, + [2006287] = { + ["coords"] = {}, + }, + [2006288] = { + ["coords"] = {}, + }, + [2006289] = { + ["coords"] = {}, + }, + [2006290] = { + ["coords"] = {}, + }, + [2006291] = { + ["coords"] = { + [1] = { 78.3, 69, 38, 25 }, + [2] = { 78.3, 65.3, 38, 25 }, + [3] = { 38.7, 79.6, 5602, 25 }, + [4] = { 38.7, 77.7, 5602, 25 }, + }, + }, + [2006292] = { + ["coords"] = {}, + }, + [2006293] = { + ["coords"] = { + [1] = { 77.9, 71.8, 38, 25 }, + [2] = { 80, 63.9, 38, 25 }, + [3] = { 85.2, 61.9, 38, 25 }, + [4] = { 38.4, 81, 5602, 25 }, + [5] = { 39.5, 77, 5602, 25 }, + [6] = { 42.2, 75.9, 5602, 25 }, + }, + }, + [2006294] = { + ["coords"] = { + [1] = { 77.9, 70.1, 38, 25 }, + [2] = { 38.4, 80.2, 5602, 25 }, + }, + }, + [2006295] = { + ["coords"] = { + [1] = { 78.2, 68.9, 38, 25 }, + [2] = { 79.2, 66.4, 38, 25 }, + [3] = { 81.9, 65.8, 38, 25 }, + [4] = { 78.8, 65.3, 38, 25 }, + [5] = { 79.6, 61.6, 38, 25 }, + [6] = { 38.6, 79.5, 5602, 25 }, + [7] = { 39.1, 78.3, 5602, 25 }, + [8] = { 40.5, 78, 5602, 25 }, + [9] = { 38.9, 77.7, 5602, 25 }, + [10] = { 39.3, 75.8, 5602, 25 }, + }, + }, + [2006296] = { + ["coords"] = { + [1] = { 79.4, 66.1, 38, 25 }, + [2] = { 39.2, 78.1, 5602, 25 }, + }, + }, + [2006297] = { + ["coords"] = { + [1] = { 80.4, 66.1, 38, 25 }, + [2] = { 79.1, 65.9, 38, 25 }, + [3] = { 39.7, 78.1, 5602, 25 }, + [4] = { 39, 78, 5602, 25 }, + }, + }, + [2006298] = { + ["coords"] = { + [1] = { 77.3, 68.4, 38, 25 }, + [2] = { 79.3, 67.5, 38, 25 }, + [3] = { 38.1, 79.3, 5602, 25 }, + [4] = { 39.2, 78.8, 5602, 25 }, + }, + }, + [2006299] = { + ["coords"] = {}, + }, + [2006300] = { + ["coords"] = { + [1] = { 79.6, 67.5, 38, 25 }, + [2] = { 39.3, 78.8, 5602, 25 }, + }, + }, + [2006301] = { + ["coords"] = { + [1] = { 79.8, 65.4, 38, 25 }, + [2] = { 39.4, 77.8, 5602, 25 }, + }, + }, + [2006302] = { + ["coords"] = {}, + }, + [2006303] = { + ["coords"] = {}, + }, + [2006304] = { + ["coords"] = {}, + }, + [2006305] = { + ["coords"] = {}, + }, + [2006306] = { + ["coords"] = {}, + }, + [2006307] = { + ["coords"] = {}, + }, + [2006308] = { + ["coords"] = { + [1] = { 64.3, 15.2, 4, 300 }, + [2] = { 48.2, 51.6, 8, 300 }, + [3] = { 60.2, 67.8, 85, 300 }, + [4] = { 66.7, 24.2, 440, 300 }, + [5] = { 58.5, 13.1, 1497, 300 }, + }, + }, + [2006309] = { + ["coords"] = {}, + }, + [2006310] = { + ["coords"] = {}, + }, + [2006311] = { + ["coords"] = {}, + }, + [2006312] = { + ["coords"] = {}, + }, + [2006313] = { + ["coords"] = {}, + }, + [2006314] = { + ["coords"] = {}, + }, + [2006315] = { + ["coords"] = {}, + }, + [2006316] = { + ["coords"] = {}, + }, + [2006317] = { + ["coords"] = {}, + }, + [2006318] = { + ["coords"] = {}, + }, + [2006319] = { + ["coords"] = {}, + }, + [2006320] = { + ["coords"] = { + [1] = { 56.4, 7.6, 490, 300 }, + }, + }, + [2006321] = { + ["coords"] = {}, + }, + [2006322] = { + ["coords"] = {}, + }, + [2006323] = { + ["coords"] = {}, + }, + [2006324] = { + ["coords"] = {}, + }, + [2006325] = { + ["coords"] = {}, + }, + [2006326] = { + ["coords"] = { + [1] = { 72.7, 33.7, 1497, 300 }, + }, + }, + [2006327] = { + ["coords"] = { + [1] = { 43.3, 80.3, 33, 300 }, + }, + }, + [2006328] = { + ["coords"] = { + [1] = { 54.4, 1.1, 17, 300 }, + [2] = { 79.5, 81.6, 331, 300 }, + }, + }, + [2006329] = { + ["coords"] = {}, + }, + [2006330] = { + ["coords"] = {}, + }, + [2006331] = { + ["coords"] = { + [1] = { 31.6, 85.5, 405, 300 }, + }, + }, + [2006332] = { + ["coords"] = {}, + }, + [2006333] = { + ["coords"] = {}, + }, + [2006334] = { + ["coords"] = {}, + }, + [2006335] = { + ["coords"] = {}, + }, + [2006336] = { + ["coords"] = {}, + }, + [2006337] = { + ["coords"] = {}, + }, + [2006338] = { + ["coords"] = {}, + }, + [2006339] = { + ["coords"] = {}, + }, + [2006340] = { + ["coords"] = {}, + }, + [2006341] = { + ["coords"] = { + [1] = { 81, 71.4, 10, 300 }, + }, + }, + [2006342] = { + ["coords"] = { + [1] = { 61.2, 36.9, 618, 300 }, + }, + }, + [2006343] = { + ["coords"] = { + [1] = { 66.6, 24.3, 440, 300 }, + [2] = { 55.8, 9.7, 490, 300 }, + }, + }, + [2006344] = { + ["coords"] = { + [1] = { 66.6, 24.3, 440, 300 }, + }, + }, + [2006345] = { + ["coords"] = {}, + }, + [2006346] = { + ["coords"] = { + [1] = { 55.9, 9.1, 490, 300 }, + }, + }, + [2006347] = { + ["coords"] = {}, + }, + [2006348] = { + ["coords"] = {}, + }, + [2006349] = { + ["coords"] = { + [1] = { 42.4, 67.9, 14, 300 }, + [2] = { 61.3, 24.2, 17, 300 }, + [3] = { 31.3, 37.7, 440, 300 }, + [4] = { 78.6, 66.6, 490, 300 }, + [5] = { 72.9, 34.2, 1497, 300 }, + [6] = { 42.3, 55.5, 1537, 300 }, + [7] = { 82.9, 80.5, 5208, 300 }, + [8] = { 82.8, 80.5, 5208, 300 }, + }, + }, + [2006350] = { + ["coords"] = { + [1] = { 42.5, 68, 14, 300 }, + [2] = { 61.3, 24.1, 17, 300 }, + [3] = { 31.1, 66.5, 85, 300 }, + [4] = { 44, 75.9, 215, 300 }, + [5] = { 72.6, 33.7, 1497, 300 }, + [6] = { 40.1, 51.4, 1537, 300 }, + }, + }, + [2006351] = { + ["coords"] = { + [1] = { 33.6, 49, 10, 300 }, + [2] = { 66.7, 27.1, 1519, 300 }, + [3] = { 52.3, 91.9, 5581, 300 }, + }, + }, + [2006352] = { + ["coords"] = { + [1] = { 72.4, 33.5, 1497, 300 }, + }, + }, + [2006353] = { + ["coords"] = {}, + }, + [2006354] = { + ["coords"] = {}, + }, + [2006355] = { + ["coords"] = {}, + }, + [2006356] = { + ["coords"] = {}, + }, + [2006357] = { + ["coords"] = {}, + }, + [2006358] = { + ["coords"] = {}, + }, + [2006359] = { + ["coords"] = {}, + }, + [2006360] = { + ["coords"] = {}, + }, + [2006361] = { + ["coords"] = {}, + }, + [2006362] = { + ["coords"] = {}, + }, + [2006363] = { + ["coords"] = {}, + }, + [2006364] = { + ["coords"] = {}, + }, + [2006365] = { + ["coords"] = {}, + }, + [2006366] = { + ["coords"] = {}, + }, + [2006367] = { + ["coords"] = {}, + }, + [2006368] = { + ["coords"] = {}, + }, + [2006369] = { + ["coords"] = {}, + }, + [2006370] = { + ["coords"] = { + [1] = { 58, 6.3, 490, 300 }, + }, + }, + [2006371] = { + ["coords"] = {}, + }, + [2006372] = { + ["coords"] = { + [1] = { 50.6, 47.8, 8, 300 }, + }, + }, + [2006373] = { + ["coords"] = {}, + }, + [2006374] = { + ["coords"] = { + [1] = { 54.1, 84.9, 408, 300 }, + [2] = { 38.1, 56.1, 5581, 300 }, + [3] = { 37.4, 56.1, 5581, 300 }, + [4] = { 37.9, 56.1, 5581, 300 }, + [5] = { 38.8, 56.1, 5581, 300 }, + [6] = { 36.9, 56.1, 5581, 300 }, + }, + }, + [2006375] = { + ["coords"] = {}, + }, + [2006376] = { + ["coords"] = { + [1] = { 48.6, 62.5, 11, 300 }, + [2] = { 48.6, 62.4, 11, 300 }, + [3] = { 48.2, 61.8, 11, 300 }, + [4] = { 48.4, 61.6, 11, 300 }, + [5] = { 48.5, 61.4, 11, 300 }, + [6] = { 48.5, 61.3, 11, 300 }, + [7] = { 49.2, 61.2, 11, 300 }, + [8] = { 49.6, 60.8, 11, 300 }, + [9] = { 49.5, 60.2, 11, 300 }, + [10] = { 49.4, 60.1, 11, 300 }, + [11] = { 55, 84.5, 408, 300 }, + [12] = { 54.8, 84.4, 408, 300 }, + [13] = { 55.4, 84.3, 408, 300 }, + [14] = { 55, 84.3, 408, 300 }, + [15] = { 55.2, 84.3, 408, 300 }, + [16] = { 55.5, 84, 408, 300 }, + [17] = { 54.6, 83.9, 408, 300 }, + [18] = { 54.9, 83.8, 408, 300 }, + [19] = { 55, 83.6, 408, 300 }, + [20] = { 54.8, 83.5, 408, 300 }, + [21] = { 6.1, 27, 5602, 300 }, + [22] = { 6.1, 26.9, 5602, 300 }, + [23] = { 5.7, 26.4, 5602, 300 }, + [24] = { 5.9, 26.2, 5602, 300 }, + [25] = { 6, 26.1, 5602, 300 }, + [26] = { 6, 26, 5602, 300 }, + [27] = { 6.5, 26, 5602, 300 }, + [28] = { 6.5, 25.9, 5602, 300 }, + [29] = { 6.9, 25.7, 5602, 300 }, + [30] = { 6.8, 25.6, 5602, 300 }, + [31] = { 6.7, 25.2, 5602, 300 }, + [32] = { 6.7, 25.1, 5602, 300 }, + }, + }, + [2006377] = { + ["coords"] = {}, + }, + [2006378] = { + ["coords"] = {}, + }, + [2006379] = { + ["coords"] = {}, + }, + [2006380] = { + ["coords"] = {}, + }, + [2006381] = { + ["coords"] = {}, + }, + [2006382] = { + ["coords"] = {}, + }, + [2006383] = { + ["coords"] = {}, + }, + [2006384] = { + ["coords"] = {}, + }, + [2006385] = { + ["coords"] = {}, + }, + [2006386] = { + ["coords"] = {}, + }, + [2006387] = { + ["coords"] = { + [1] = { 48.3, 62.4, 11, 300 }, + [2] = { 5.9, 26.9, 5602, 300 }, + }, + }, + [2006388] = { + ["coords"] = {}, + }, + [2006389] = { + ["coords"] = {}, + }, + [2006390] = { + ["coords"] = {}, + }, + [2006391] = { + ["coords"] = {}, + }, + [2006392] = { + ["coords"] = {}, + }, + [2006393] = { + ["coords"] = {}, + }, + [2006394] = { + ["coords"] = {}, + }, + [2006395] = { + ["coords"] = {}, + }, + [2006396] = { + ["coords"] = {}, + }, + [2006397] = { + ["coords"] = {}, + }, + [2006398] = { + ["coords"] = {}, + }, + [2006399] = { + ["coords"] = { + [1] = { 65.6, 35.4, 5581, 300 }, + }, + }, + [2006400] = { + ["coords"] = { + [1] = { 56.3, 44.6, 618, 300 }, + }, + }, + [2006401] = { + ["coords"] = {}, + }, + [2006402] = { + ["coords"] = {}, + }, + [2006403] = { + ["coords"] = {}, + }, + [2006404] = { + ["coords"] = {}, + }, + [2006405] = { + ["coords"] = {}, + }, + [2006406] = { + ["coords"] = { + [1] = { 49.2, 9.9, 17, 300 }, + [2] = { 29.4, 44.8, 28, 300 }, + [3] = { 85.9, 58.2, 85, 300 }, + }, + }, + [2006407] = { + ["coords"] = { + [1] = { 46, 52, 8, 300 }, + [2] = { 48.1, 51.5, 8, 300 }, + [3] = { 49.2, 9.9, 17, 300 }, + [4] = { 54.4, 1.5, 17, 300 }, + [5] = { 79.5, 82.2, 331, 300 }, + }, + }, + [2006408] = { + ["coords"] = { + [1] = { 63.7, 18.5, 33, 300 }, + [2] = { 63.4, 18.4, 33, 300 }, + [3] = { 64.6, 17.3, 33, 300 }, + [4] = { 64.2, 17.2, 33, 300 }, + [5] = { 64.6, 16.6, 33, 300 }, + [6] = { 64.2, 16.5, 33, 300 }, + }, + }, + [2006409] = { + ["coords"] = {}, + }, + [2006410] = { + ["coords"] = {}, + }, + [2006411] = { + ["coords"] = {}, + }, + [2006412] = { + ["coords"] = {}, + }, + [2006413] = { + ["coords"] = {}, + }, + [2006414] = { + ["coords"] = {}, + }, + [2006415] = { + ["coords"] = {}, + }, + [2006416] = { + ["coords"] = {}, + }, + [2006417] = { + ["coords"] = {}, + }, + [2006418] = { + ["coords"] = {}, + }, + [2006419] = { + ["coords"] = {}, + }, + [2006420] = { + ["coords"] = {}, + }, + [2006421] = { + ["coords"] = {}, + }, + [2006422] = { + ["coords"] = {}, + }, + [2006423] = { + ["coords"] = {}, + }, + [2006424] = { + ["coords"] = {}, + }, + [2006425] = { + ["coords"] = {}, + }, + [2006426] = { + ["coords"] = { + [1] = { 48.7, 61.4, 11, 300 }, + [2] = { 6.1, 26.1, 5602, 300 }, + }, + }, + [2006427] = { + ["coords"] = { + [1] = { 32.6, 43, 405, 300 }, + }, + }, + [2006428] = { + ["coords"] = { + [1] = { 32.7, 43.2, 405, 300 }, + [2] = { 32.6, 43, 405, 300 }, + }, + }, + [2006429] = { + ["coords"] = {}, + }, + [2006430] = { + ["coords"] = {}, + }, + [2006431] = { + ["coords"] = {}, + }, + [2006432] = { + ["coords"] = {}, + }, + [2006433] = { + ["coords"] = {}, + }, + [2006434] = { + ["coords"] = { + [1] = { 32.8, 70.4, 215, 300 }, + }, + }, + [2006435] = { + ["coords"] = { + [1] = { 32.7, 70.2, 215, 300 }, + }, + }, + [2006436] = { + ["coords"] = { + [1] = { 32.7, 70.4, 215, 300 }, + [2] = { 32.7, 70.1, 215, 300 }, + }, + }, + [2006437] = { + ["coords"] = {}, + }, + [2006438] = { + ["coords"] = {}, + }, + [2006439] = { + ["coords"] = {}, + }, + [2006440] = { + ["coords"] = {}, + }, + [2006441] = { + ["coords"] = {}, + }, + [2006442] = { + ["coords"] = {}, + }, + [2006443] = { + ["coords"] = {}, + }, + [2006444] = { + ["coords"] = {}, + }, + [2006445] = { + ["coords"] = {}, + }, + [2006446] = { + ["coords"] = {}, + }, + [2006447] = { + ["coords"] = {}, + }, + [2006448] = { + ["coords"] = { + [1] = { 23.8, 15.9, 406, 25 }, + [2] = { 23.9, 15.9, 406, 25 }, + [3] = { 25.3, 15.8, 406, 25 }, + [4] = { 25.3, 15.6, 406, 25 }, + [5] = { 24.3, 15.6, 406, 25 }, + [6] = { 24, 14.7, 406, 25 }, + [7] = { 25, 14.7, 406, 25 }, + [8] = { 24, 14.6, 406, 25 }, + [9] = { 25.1, 14.6, 406, 25 }, + [10] = { 25, 14.6, 406, 25 }, + [11] = { 24.6, 14.5, 406, 25 }, + [12] = { 25.1, 14.5, 406, 25 }, + [13] = { 25.1, 14.4, 406, 25 }, + [14] = { 25, 14.3, 406, 25 }, + [15] = { 23.9, 14.2, 406, 25 }, + [16] = { 24.4, 14.2, 406, 25 }, + [17] = { 24.6, 14, 406, 25 }, + [18] = { 24.2, 14, 406, 25 }, + [19] = { 24.2, 13.9, 406, 25 }, + [20] = { 22.9, 13.9, 406, 25 }, + [21] = { 25.1, 13.9, 406, 25 }, + [22] = { 24, 13.8, 406, 25 }, + [23] = { 22.9, 13.8, 406, 25 }, + [24] = { 24.8, 13.8, 406, 25 }, + [25] = { 25.3, 13.7, 406, 25 }, + [26] = { 24.7, 13.7, 406, 25 }, + [27] = { 23.2, 13.7, 406, 25 }, + [28] = { 24, 13.7, 406, 25 }, + [29] = { 24.8, 13.7, 406, 25 }, + [30] = { 23.1, 13.7, 406, 25 }, + [31] = { 24.4, 13.4, 406, 25 }, + [32] = { 24.5, 13.4, 406, 25 }, + [33] = { 24.3, 13.4, 406, 25 }, + [34] = { 22.9, 13.4, 406, 25 }, + [35] = { 24.4, 13.3, 406, 25 }, + [36] = { 24.5, 13.2, 406, 25 }, + [37] = { 23.4, 13.2, 406, 25 }, + [38] = { 24.3, 13.1, 406, 25 }, + [39] = { 23.3, 13.1, 406, 25 }, + [40] = { 23, 12.9, 406, 25 }, + [41] = { 23.3, 12.8, 406, 25 }, + [42] = { 23, 12.7, 406, 25 }, + [43] = { 23.4, 12.6, 406, 25 }, + [44] = { 24.2, 12.6, 406, 25 }, + [45] = { 23.1, 12.6, 406, 25 }, + [46] = { 23.2, 12.6, 406, 25 }, + [47] = { 23.3, 12.6, 406, 25 }, + [48] = { 22.5, 12.5, 406, 25 }, + [49] = { 23.2, 12.5, 406, 25 }, + [50] = { 23.8, 12.5, 406, 25 }, + [51] = { 22.4, 12.4, 406, 25 }, + [52] = { 23.2, 12.4, 406, 25 }, + [53] = { 24, 12.2, 406, 25 }, + [54] = { 22.7, 12.2, 406, 25 }, + [55] = { 23, 12.1, 406, 25 }, + [56] = { 22.7, 12, 406, 25 }, + [57] = { 23.7, 11.9, 406, 25 }, + [58] = { 22.8, 11.9, 406, 25 }, + [59] = { 23.6, 11.8, 406, 25 }, + [60] = { 24.3, 11.8, 406, 25 }, + [61] = { 24, 11.8, 406, 25 }, + [62] = { 23.9, 11.7, 406, 25 }, + [63] = { 22.8, 11.7, 406, 25 }, + [64] = { 24, 11.7, 406, 25 }, + [65] = { 24.2, 11.7, 406, 25 }, + [66] = { 22.7, 11.6, 406, 25 }, + [67] = { 23.6, 11.3, 406, 25 }, + [68] = { 23.4, 11.2, 406, 25 }, + [69] = { 23.4, 11.1, 406, 25 }, + [70] = { 22.3, 11.1, 406, 25 }, + [71] = { 22.3, 11, 406, 25 }, + [72] = { 22.3, 10.9, 406, 25 }, + [73] = { 23.4, 10.7, 406, 25 }, + [74] = { 23.3, 10.6, 406, 25 }, + [75] = { 23.2, 10.4, 406, 25 }, + [76] = { 22.9, 10.3, 406, 25 }, + [77] = { 23, 10.2, 406, 25 }, + }, + }, + [2006449] = { + ["coords"] = {}, + }, + [2006450] = { + ["coords"] = {}, + }, + [2006451] = { + ["coords"] = {}, + }, + [2006452] = { + ["coords"] = {}, + }, + [2006453] = { + ["coords"] = {}, + }, + [2006454] = { + ["coords"] = {}, + }, + [2006455] = { + ["coords"] = {}, + }, + [2006456] = { + ["coords"] = {}, + }, + [2006457] = { + ["coords"] = {}, + }, + [2006458] = { + ["coords"] = {}, + }, + [2006459] = { + ["coords"] = {}, + }, + [2006460] = { + ["coords"] = {}, + }, + [2006461] = { + ["coords"] = {}, + }, + [2006462] = { + ["coords"] = {}, + }, + [2006463] = { + ["coords"] = {}, + }, + [2006464] = { + ["coords"] = {}, + }, + [2006465] = { + ["coords"] = {}, + }, + [2006466] = { + ["coords"] = {}, + }, + [2006467] = { + ["coords"] = {}, + }, + [2006468] = { + ["coords"] = {}, + }, + [2006469] = { + ["coords"] = {}, + }, + [2006470] = { + ["coords"] = {}, + }, + [2006471] = { + ["coords"] = {}, + }, + [2006472] = { + ["coords"] = {}, + }, + [2006473] = { + ["coords"] = {}, + }, + [2006474] = { + ["coords"] = { + [1] = { 75.9, 84.7, 5208, 300 }, + [2] = { 75.8, 84.5, 5208, 300 }, + }, + }, + [2006475] = { + ["coords"] = {}, + }, + [2006476] = { + ["coords"] = {}, + }, + [2006477] = { + ["coords"] = {}, + }, + [2006478] = { + ["coords"] = {}, + }, + [2006479] = { + ["coords"] = {}, + }, + [2006480] = { + ["coords"] = {}, + }, + [2006481] = { + ["coords"] = {}, + }, + [2006482] = { + ["coords"] = {}, + }, + [2006483] = { + ["coords"] = {}, + }, + [2006484] = { + ["coords"] = {}, + }, + [2006485] = { + ["coords"] = {}, + }, + [2006486] = { + ["coords"] = {}, + }, + [2006487] = { + ["coords"] = {}, + }, + [2006488] = { + ["coords"] = {}, + }, + [2006489] = { + ["coords"] = {}, + }, + [2006490] = { + ["coords"] = { + [1] = { 82.3, 56.8, 38, 25 }, + [2] = { 40.7, 73.3, 5602, 25 }, + }, + }, + [2006491] = { + ["coords"] = {}, + }, + [2006492] = { + ["coords"] = {}, + }, + [2006493] = { + ["coords"] = {}, + }, + [2006494] = { + ["coords"] = {}, + }, + [2006495] = { + ["coords"] = {}, + }, + [2006496] = { + ["coords"] = {}, + }, + [2006497] = { + ["coords"] = {}, + }, + [2006498] = { + ["coords"] = {}, + }, + [2006499] = { + ["coords"] = {}, + }, + [2006500] = { + ["coords"] = {}, + }, + [2006501] = { + ["coords"] = {}, + }, + [2006502] = { + ["coords"] = {}, + }, + [2006503] = { + ["coords"] = {}, + }, + [2006504] = { + ["coords"] = { + [1] = { 48.7, 23.3, 45, 300 }, + [2] = { 27.1, 84.1, 47, 300 }, + }, + }, + [2006505] = { + ["coords"] = { + [1] = { 48.1, 22.8, 45, 300 }, + [2] = { 26.5, 83.7, 47, 300 }, + }, + }, + [2006506] = { + ["coords"] = { + [1] = { 48.7, 23.2, 45, 300 }, + [2] = { 27.1, 84, 47, 300 }, + }, + }, + [2006507] = { + ["coords"] = { + [1] = { 48.3, 22.9, 45, 300 }, + [2] = { 26.8, 83.8, 47, 300 }, + }, + }, + [2006508] = { + ["coords"] = { + [1] = { 48.7, 23.2, 45, 300 }, + [2] = { 27.1, 84, 47, 300 }, + }, + }, + [2006509] = { + ["coords"] = {}, + }, + [2006510] = { + ["coords"] = {}, + }, + [2006511] = { + ["coords"] = {}, + }, + [2006512] = { + ["coords"] = { + [1] = { 85.7, 57.4, 85, 300 }, + }, + }, + [2006513] = { + ["coords"] = {}, + }, + [2006514] = { + ["coords"] = {}, + }, + [2006515] = { + ["coords"] = {}, + }, + [2006516] = { + ["coords"] = {}, + }, + [2006517] = { + ["coords"] = { + [1] = { 86.7, 57.8, 85, 300 }, + [2] = { 86.5, 57.2, 85, 300 }, + }, + }, + [2006518] = { + ["coords"] = { + [1] = { 86.6, 57.2, 85, 300 }, + }, + }, + [2006519] = { + ["coords"] = { + [1] = { 86.6, 57.7, 85, 300 }, + [2] = { 86.5, 57.3, 85, 300 }, + }, + }, + [2006520] = { + ["coords"] = { + [1] = { 25.6, 47.2, 28, 300 }, + [2] = { 25.6, 46.6, 28, 300 }, + [3] = { 82.3, 60.5, 85, 300 }, + [4] = { 82.3, 60, 85, 300 }, + [5] = { 82.3, 59.5, 85, 300 }, + [6] = { 82.8, 59.2, 85, 300 }, + [7] = { 86.7, 57.7, 85, 300 }, + [8] = { 85.8, 56.4, 85, 300 }, + }, + }, + [2006521] = { + ["coords"] = {}, + }, + [2006522] = { + ["coords"] = { + [1] = { 28.7, 46.3, 28, 300 }, + [2] = { 33.8, 21.1, 28, 0 }, + [3] = { 34.1, 19.6, 28, 0 }, + [4] = { 34.2, 18.6, 28, 0 }, + [5] = { 85.2, 59.7, 85, 300 }, + [6] = { 82.6, 59.4, 85, 300 }, + [7] = { 86.4, 57.1, 85, 300 }, + [8] = { 90, 35.7, 85, 0 }, + [9] = { 90.3, 34.2, 85, 0 }, + [10] = { 90.4, 33.3, 85, 0 }, + }, + }, + [2006523] = { + ["coords"] = { + [1] = { 33.9, 20.7, 28, 300 }, + [2] = { 34, 20.6, 28, 300 }, + [3] = { 34.1, 20.3, 28, 0 }, + [4] = { 33.6, 18.7, 28, 300 }, + [5] = { 33.6, 18.6, 28, 300 }, + [6] = { 34.2, 17.3, 28, 300 }, + [7] = { 34.2, 17.2, 28, 300 }, + [8] = { 90.2, 35.3, 85, 300 }, + [9] = { 90.3, 35.2, 85, 300 }, + [10] = { 90.4, 34.9, 85, 0 }, + [11] = { 89.9, 33.4, 85, 300 }, + [12] = { 89.9, 33.3, 85, 300 }, + [13] = { 90.5, 32.1, 85, 300 }, + [14] = { 90.4, 32, 85, 300 }, + }, + }, + [2006524] = { + ["coords"] = { + [1] = { 27.4, 47.2, 28, 300 }, + [2] = { 27.3, 47.2, 28, 300 }, + [3] = { 25.6, 47.2, 28, 300 }, + [4] = { 26.3, 47.1, 28, 300 }, + [5] = { 25.6, 47.1, 28, 300 }, + [6] = { 28.1, 46.8, 28, 300 }, + [7] = { 26.9, 46.6, 28, 300 }, + [8] = { 26.4, 46.5, 28, 300 }, + [9] = { 28.8, 45.9, 28, 300 }, + [10] = { 29.3, 45.4, 28, 300 }, + [11] = { 29.1, 45.2, 28, 300 }, + [12] = { 29.7, 45.1, 28, 300 }, + [13] = { 30.1, 44.6, 28, 300 }, + [14] = { 29.7, 44.5, 28, 300 }, + [15] = { 34.5, 21, 28, 0 }, + [16] = { 83.9, 60.6, 85, 300 }, + [17] = { 83.8, 60.6, 85, 300 }, + [18] = { 82.3, 60.5, 85, 300 }, + [19] = { 82.9, 60.4, 85, 300 }, + [20] = { 82.3, 60.4, 85, 300 }, + [21] = { 84.7, 60.1, 85, 300 }, + [22] = { 83.5, 59.9, 85, 300 }, + [23] = { 83, 59.9, 85, 300 }, + [24] = { 82.4, 59.6, 85, 300 }, + [25] = { 85.3, 59.3, 85, 300 }, + [26] = { 85.8, 58.8, 85, 300 }, + [27] = { 85.6, 58.6, 85, 300 }, + [28] = { 86.1, 58.5, 85, 300 }, + [29] = { 86.6, 58, 85, 300 }, + [30] = { 86.2, 58, 85, 300 }, + [31] = { 85.2, 57.9, 85, 300 }, + [32] = { 86.5, 57.8, 85, 300 }, + [33] = { 85.3, 57.7, 85, 300 }, + [34] = { 87, 57.5, 85, 300 }, + [35] = { 86.4, 57.3, 85, 300 }, + [36] = { 85.9, 56.9, 85, 300 }, + [37] = { 85.8, 56.8, 85, 300 }, + [38] = { 90.7, 35.6, 85, 0 }, + }, + }, + [2006525] = { + ["coords"] = { + [1] = { 31.4, 29.3, 33, 300 }, + [2] = { 60.6, 51.5, 85, 300 }, + [3] = { 59.7, 53.5, 1497, 300 }, + }, + }, + [2006526] = { + ["coords"] = {}, + }, + [2006527] = { + ["coords"] = { + [1] = { 27.7, 46.9, 28, 300 }, + [2] = { 84.3, 60.3, 85, 300 }, + [3] = { 87.4, 56.4, 85, 300 }, + }, + }, + [2006528] = { + ["coords"] = { + [1] = { 77.6, 84.9, 5208, 300 }, + }, + }, + [2006529] = { + ["coords"] = {}, + }, + [2006530] = { + ["coords"] = {}, + }, + [2006531] = { + ["coords"] = { + [1] = { 85.6, 57.8, 85, 300 }, + }, + }, + [2006532] = { + ["coords"] = {}, + }, + [2006533] = { + ["coords"] = {}, + }, + [2006534] = { + ["coords"] = {}, + }, + [2006535] = { + ["coords"] = {}, + }, + [2006536] = { + ["coords"] = {}, + }, + [2006537] = { + ["coords"] = {}, + }, + [2006538] = { + ["coords"] = { + [1] = { 82.6, 59.4, 85, 300 }, + }, + }, + [2006539] = { + ["coords"] = {}, + }, + [2006540] = { + ["coords"] = {}, + }, + [2006541] = { + ["coords"] = {}, + }, + [2006542] = { + ["coords"] = {}, + }, + [2006543] = { + ["coords"] = {}, + }, + [2006544] = { + ["coords"] = {}, + }, + [2006545] = { + ["coords"] = {}, + }, + [2006546] = { + ["coords"] = {}, + }, + [2006547] = { + ["coords"] = {}, + }, + [2006548] = { + ["coords"] = { + [1] = { 80.6, 62, 28, 300 }, + [2] = { 22.3, 85.7, 139, 300 }, + }, + }, + [2006549] = { + ["coords"] = {}, + }, + [2006550] = { + ["coords"] = {}, + }, + [2006551] = { + ["coords"] = { + [1] = { 80.5, 60.8, 28, 300 }, + [2] = { 22.2, 84.4, 139, 300 }, + }, + }, + [2006552] = { + ["coords"] = {}, + }, + [2006553] = { + ["coords"] = {}, + }, + [2006554] = { + ["coords"] = { + [1] = { 58.5, 14.8, 139, 25 }, + }, + }, + [2006555] = { + ["coords"] = {}, + }, + [2006556] = { + ["coords"] = { + [1] = { 80.4, 60.9, 28, 300 }, + [2] = { 22.1, 84.5, 139, 300 }, + }, + }, + [2006557] = { + ["coords"] = {}, + }, + [2006558] = { + ["coords"] = {}, + }, + [2006559] = { + ["coords"] = {}, + }, + [2006560] = { + ["coords"] = {}, + }, + [2006561] = { + ["coords"] = {}, + }, + [2006562] = { + ["coords"] = {}, + }, + [2006563] = { + ["coords"] = {}, + }, + [2006564] = { + ["coords"] = { + [1] = { 28.1, 46.7, 28, 300 }, + [2] = { 84.7, 60, 85, 300 }, + }, + }, + [2006565] = { + ["coords"] = {}, + }, + [2006566] = { + ["coords"] = {}, + }, + [2006567] = { + ["coords"] = { + [1] = { 28.1, 46.8, 28, 300 }, + [2] = { 84.6, 60.1, 85, 300 }, + }, + }, + [2006568] = { + ["coords"] = {}, + }, + [2006569] = { + ["coords"] = {}, + }, + [2006570] = { + ["coords"] = {}, + }, + [2006571] = { + ["coords"] = {}, + }, + [2006572] = { + ["coords"] = { + [1] = { 70.5, 29.5, 28, 300 }, + [2] = { 11.1, 49.5, 139, 300 }, + [3] = { 58.4, 52.5, 1497, 300 }, + [4] = { 58.5, 51.2, 1497, 300 }, + [5] = { 58.2, 50.5, 1497, 300 }, + [6] = { 75.4, 39.2, 1497, 300 }, + [7] = { 74.8, 39.2, 1497, 300 }, + [8] = { 76.2, 39, 1497, 300 }, + [9] = { 75.5, 38, 1497, 300 }, + [10] = { 73.7, 35.4, 1497, 300 }, + [11] = { 89.3, 67.6, 5086, 300 }, + }, + }, + [2006573] = { + ["coords"] = { + [1] = { 71, 29.8, 28, 300 }, + [2] = { 11.6, 49.9, 139, 300 }, + [3] = { 74.1, 38.5, 1497, 300 }, + [4] = { 74.5, 38, 1497, 300 }, + [5] = { 74.9, 37.6, 1497, 300 }, + [6] = { 73.3, 35.9, 1497, 300 }, + }, + }, + [2006574] = { + ["coords"] = { + [1] = { 71.3, 29.9, 28, 300 }, + [2] = { 71, 29.9, 28, 300 }, + [3] = { 71.3, 29.3, 28, 300 }, + [4] = { 12, 50, 139, 300 }, + [5] = { 11.7, 50, 139, 300 }, + [6] = { 12, 49.3, 139, 300 }, + [7] = { 74.5, 38.8, 1497, 300 }, + [8] = { 71.5, 33.1, 1497, 300 }, + [9] = { 71.9, 32.5, 1497, 300 }, + }, + }, + [2006575] = { + ["coords"] = { + [1] = { 29.4, 44.9, 28, 300 }, + [2] = { 85.9, 58.4, 85, 300 }, + }, + }, + [2006576] = { + ["coords"] = {}, + }, + [2006577] = { + ["coords"] = {}, + }, + [2006578] = { + ["coords"] = { + [1] = { 71.1, 29.2, 28, 300 }, + [2] = { 59.9, 68.3, 85, 300 }, + [3] = { 59.8, 68.3, 85, 300 }, + [4] = { 59.6, 68.3, 85, 300 }, + [5] = { 11.7, 49.2, 139, 300 }, + [6] = { 57.1, 15.3, 1497, 300 }, + [7] = { 56.3, 15.3, 1497, 300 }, + [8] = { 55.5, 15.2, 1497, 300 }, + }, + }, + [2006579] = { + ["coords"] = {}, + }, + [2006580] = { + ["coords"] = {}, + }, + [2006581] = { + ["coords"] = { + [1] = { 71.1, 30, 28, 300 }, + [2] = { 71.3, 29.9, 28, 300 }, + [3] = { 71, 29.6, 28, 300 }, + [4] = { 60.1, 68.3, 85, 300 }, + [5] = { 59.4, 68.3, 85, 300 }, + [6] = { 11.7, 50.1, 139, 300 }, + [7] = { 12, 50, 139, 300 }, + [8] = { 11.7, 49.7, 139, 300 }, + [9] = { 31.3, 90.9, 405, 300 }, + [10] = { 72.3, 34.6, 1497, 300 }, + [11] = { 57.9, 15.4, 1497, 300 }, + [12] = { 54.7, 15.3, 1497, 300 }, + [13] = { 33.1, 76.2, 5179, 300 }, + }, + }, + [2006582] = { + ["coords"] = {}, + }, + [2006583] = { + ["coords"] = {}, + }, + [2006584] = { + ["coords"] = { + [1] = { 32.7, 17.4, 28, 300 }, + [2] = { 32.8, 17.1, 28, 300 }, + [3] = { 30.2, 72.5, 85, 300 }, + [4] = { 89.1, 32.2, 85, 300 }, + [5] = { 89.1, 31.9, 85, 300 }, + [6] = { 72.6, 35.1, 1497, 300 }, + [7] = { 72, 34.1, 1497, 300 }, + [8] = { 69, 31.5, 1497, 300 }, + }, + }, + [2006585] = { + ["coords"] = {}, + }, + [2006586] = { + ["coords"] = {}, + }, + [2006587] = { + ["coords"] = { + [1] = { 71.4, 29.6, 28, 300 }, + [2] = { 70.8, 29.6, 28, 300 }, + [3] = { 70.6, 29.5, 28, 300 }, + [4] = { 71.4, 28.7, 28, 300 }, + [5] = { 60.1, 66.6, 85, 300 }, + [6] = { 59.4, 66.6, 85, 300 }, + [7] = { 12.1, 49.7, 139, 300 }, + [8] = { 11.4, 49.6, 139, 300 }, + [9] = { 11.2, 49.6, 139, 300 }, + [10] = { 12.1, 48.7, 139, 300 }, + [11] = { 57.9, 7.1, 1497, 300 }, + }, + }, + [2006588] = { + ["coords"] = { + [1] = { 59.6, 66.6, 85, 300 }, + [2] = { 59.8, 66.6, 85, 300 }, + [3] = { 59.9, 66.5, 85, 300 }, + [4] = { 51.2, 61.7, 357, 300 }, + [5] = { 51.2, 61.6, 357, 300 }, + [6] = { 61.6, 59.2, 1497, 300 }, + [7] = { 61.7, 58.8, 1497, 300 }, + [8] = { 76.3, 39.4, 1497, 300 }, + [9] = { 40, 42.6, 5208, 300 }, + }, + }, + [2006589] = { + ["coords"] = { + [1] = { 29.4, 44.9, 28, 300 }, + [2] = { 29.4, 44.7, 28, 300 }, + [3] = { 71.4, 29.3, 28, 300 }, + [4] = { 70.6, 29.1, 28, 300 }, + [5] = { 32.8, 17.4, 28, 300 }, + [6] = { 32.9, 17.2, 28, 300 }, + [7] = { 85.9, 58.3, 85, 300 }, + [8] = { 85.9, 58.2, 85, 300 }, + [9] = { 89.2, 32.2, 85, 300 }, + [10] = { 89.2, 32, 85, 300 }, + [11] = { 12, 49.4, 139, 300 }, + [12] = { 11.2, 49.1, 139, 300 }, + }, + }, + [2006590] = { + ["coords"] = {}, + }, + [2006591] = { + ["coords"] = {}, + }, + [2006592] = { + ["coords"] = {}, + }, + [2006593] = { + ["coords"] = { + [1] = { 44.3, 45.2, 16, 300 }, + [2] = { 80.8, 63.4, 28, 300 }, + [3] = { 71.1, 29.6, 28, 300 }, + [4] = { 70.6, 29.3, 28, 300 }, + [5] = { 71.4, 29.1, 28, 300 }, + [6] = { 21.7, 68.9, 85, 300 }, + [7] = { 4.4, 61.9, 85, 300 }, + [8] = { 4.6, 61.3, 85, 300 }, + [9] = { 22.6, 87.2, 139, 300 }, + [10] = { 11.8, 49.7, 139, 300 }, + [11] = { 11.2, 49.3, 139, 300 }, + [12] = { 12.1, 49.2, 139, 300 }, + [13] = { 71.2, 55.4, 1497, 300 }, + }, + }, + [2006594] = { + ["coords"] = { + [1] = { 81, 60.5, 28, 300 }, + [2] = { 29.4, 44.8, 28, 300 }, + [3] = { 60.1, 68.2, 85, 300 }, + [4] = { 59.4, 68.1, 85, 300 }, + [5] = { 21.9, 68, 85, 300 }, + [6] = { 60.2, 67.9, 85, 300 }, + [7] = { 85.9, 58.3, 85, 300 }, + [8] = { 42, 10.3, 130, 300 }, + [9] = { 41.7, 10.3, 130, 300 }, + [10] = { 42.1, 10.3, 130, 300 }, + [11] = { 22.8, 84, 139, 300 }, + [12] = { 70.3, 56.2, 1497, 300 }, + [13] = { 57.8, 51.2, 1497, 300 }, + [14] = { 71, 47.4, 1497, 300 }, + [15] = { 58.1, 14.7, 1497, 300 }, + [16] = { 54.6, 14.6, 1497, 300 }, + [17] = { 58.5, 13.2, 1497, 300 }, + }, + }, + [2006595] = { + ["coords"] = {}, + }, + [2006596] = { + ["coords"] = {}, + }, + [2006597] = { + ["coords"] = {}, + }, + [2006598] = { + ["coords"] = { + [1] = { 71.1, 29.9, 28, 300 }, + [2] = { 11.8, 50, 139, 300 }, + [3] = { 61.9, 56.1, 1497, 300 }, + }, + }, + [2006599] = { + ["coords"] = { + [1] = { 62.4, 56.5, 1497, 300 }, + }, + }, + [2006600] = { + ["coords"] = {}, + }, + [2006601] = { + ["coords"] = { + [1] = { 70.3, 32.5, 1497, 300 }, + }, + }, + [2006602] = { + ["coords"] = {}, + }, + [2006603] = { + ["coords"] = { + [1] = { 70.7, 29.5, 28, 300 }, + [2] = { 11.3, 49.5, 139, 300 }, + [3] = { 61, 55.6, 1497, 300 }, + }, + }, + [2006604] = { + ["coords"] = { + [1] = { 71.4, 29, 28, 300 }, + [2] = { 12.1, 49, 139, 300 }, + }, + }, + [2006605] = { + ["coords"] = {}, + }, + [2006606] = { + ["coords"] = {}, + }, + [2006607] = { + ["coords"] = { + [1] = { 29, 73.6, 16, 300 }, + }, + }, + [2006608] = { + ["coords"] = {}, + }, + [2006609] = { + ["coords"] = {}, + }, + [2006610] = { + ["coords"] = {}, + }, + [2006611] = { + ["coords"] = {}, + }, + [2006612] = { + ["coords"] = {}, + }, + [2006613] = { + ["coords"] = { + [1] = { 71.3, 29.8, 28, 300 }, + [2] = { 70.9, 29.7, 28, 300 }, + [3] = { 12, 49.9, 139, 300 }, + [4] = { 11.6, 49.8, 139, 300 }, + }, + }, + [2006614] = { + ["coords"] = {}, + }, + [2006615] = { + ["coords"] = { + [1] = { 69.9, 49.3, 2040, 300 }, + [2] = { 71.1, 25.6, 5225, 300 }, + }, + }, + [2006616] = { + ["coords"] = {}, + }, + [2006617] = { + ["coords"] = {}, + }, + [2006618] = { + ["coords"] = {}, + }, + [2006619] = { + ["coords"] = {}, + }, + [2006620] = { + ["coords"] = {}, + }, + [2006621] = { + ["coords"] = {}, + }, + [2006622] = { + ["coords"] = {}, + }, + [2006623] = { + ["coords"] = {}, + }, + [2006624] = { + ["coords"] = {}, + }, + [2006625] = { + ["coords"] = {}, + }, + [2006626] = { + ["coords"] = {}, + }, + [2006627] = { + ["coords"] = { + [1] = { 44.6, 47.7, 5628, 300 }, + }, + }, + [2006628] = { + ["coords"] = {}, + }, + [2006629] = { + ["coords"] = {}, + }, + [2006630] = { + ["coords"] = {}, + }, + [2006631] = { + ["coords"] = {}, + }, + [2006632] = { + ["coords"] = {}, + }, + [2006633] = { + ["coords"] = {}, + }, + [2006634] = { + ["coords"] = { + [1] = { 87.4, 43.6, 5086, 300 }, + }, + }, + [2006635] = { + ["coords"] = {}, + }, + [2006636] = { + ["coords"] = {}, + }, + [2006637] = { + ["coords"] = {}, + }, + [2006638] = { + ["coords"] = {}, + }, + [2006639] = { + ["coords"] = {}, + }, + [2006640] = { + ["coords"] = {}, + }, + [2006641] = { + ["coords"] = {}, + }, + [2006642] = { + ["coords"] = {}, + }, + [2006643] = { + ["coords"] = {}, + }, + [2006644] = { + ["coords"] = {}, + }, + [2006645] = { + ["coords"] = {}, + }, + [2006646] = { + ["coords"] = {}, + }, + [2006647] = { + ["coords"] = {}, + }, + [2006648] = { + ["coords"] = {}, + }, + [2006649] = { + ["coords"] = {}, + }, + [2006650] = { + ["coords"] = {}, + }, + [2006651] = { + ["coords"] = {}, + }, + [2006652] = { + ["coords"] = {}, + }, + [2006653] = { + ["coords"] = {}, + }, + [2006654] = { + ["coords"] = {}, + }, + [2006655] = { + ["coords"] = {}, + }, + [2006656] = { + ["coords"] = {}, + }, + [2006657] = { + ["coords"] = {}, + }, + [2006658] = { + ["coords"] = {}, + }, + [2006659] = { + ["coords"] = {}, + }, + [2006660] = { + ["coords"] = {}, + }, + [2006661] = { + ["coords"] = {}, + }, + [2006662] = { + ["coords"] = { + [1] = { 84.8, 86.6, 5086, 300 }, + }, + }, + [2006663] = { + ["coords"] = {}, + }, + [2006664] = { + ["coords"] = {}, + }, + [2006665] = { + ["coords"] = {}, + }, + [2006666] = { + ["coords"] = {}, + }, + [2006667] = { + ["coords"] = {}, + }, + [2006668] = { + ["coords"] = {}, + }, + [2006669] = { + ["coords"] = { + [1] = { 61, 24.3, 17, 300 }, + [2] = { 80.6, 60.4, 28, 300 }, + [3] = { 22.4, 83.8, 139, 300 }, + }, + }, + [2006670] = { + ["coords"] = {}, + }, + [2006671] = { + ["coords"] = {}, + }, + [2006672] = { + ["coords"] = {}, + }, + [2006673] = { + ["coords"] = { + [1] = { 25.2, 43, 85, 300 }, + [2] = { 25.4, 42.1, 85, 300 }, + }, + }, + [2006674] = { + ["coords"] = {}, + }, + [2006675] = { + ["coords"] = {}, + }, + [2006676] = { + ["coords"] = {}, + }, + [2006677] = { + ["coords"] = {}, + }, + [2006678] = { + ["coords"] = {}, + }, + [2006679] = { + ["coords"] = {}, + }, + [2006680] = { + ["coords"] = {}, + }, + [2006681] = { + ["coords"] = {}, + }, + [2006682] = { + ["coords"] = {}, + }, + [2006683] = { + ["coords"] = {}, + }, + [2006684] = { + ["coords"] = {}, + }, + [2006685] = { + ["coords"] = { + [1] = { 30.9, 89.7, 405, 300 }, + }, + }, + [2006686] = { + ["coords"] = {}, + }, + [2006687] = { + ["coords"] = { + [1] = { 87.4, 56.4, 85, 300 }, + }, + }, + [2006688] = { + ["coords"] = { + [1] = { 77.9, 84.7, 5208, 300 }, + }, + }, + [2006689] = { + ["coords"] = { + [1] = { 29.1, 44.8, 28, 300 }, + [2] = { 85.6, 58.3, 85, 300 }, + }, + }, + [2006690] = { + ["coords"] = { + [1] = { 33.6, 21.6, 28, 0 }, + [2] = { 89.9, 36.2, 85, 0 }, + }, + }, + [2006691] = { + ["coords"] = { + [1] = { 33.7, 18.7, 28, 300 }, + [2] = { 89.9, 33.4, 85, 300 }, + }, + }, + [2006692] = { + ["coords"] = {}, + }, + [2006693] = { + ["coords"] = { + [1] = { 34.2, 18.4, 28, 0 }, + [2] = { 90.5, 33.2, 85, 0 }, + }, + }, + [2006694] = { + ["coords"] = { + [1] = { 80.5, 67, 28, 300 }, + [2] = { 80.5, 60.6, 28, 300 }, + [3] = { 29.7, 72.1, 85, 300 }, + [4] = { 85.7, 57.5, 85, 300 }, + [5] = { 25.1, 42.4, 85, 300 }, + [6] = { 22.1, 91.1, 139, 300 }, + [7] = { 22.2, 84.1, 139, 300 }, + [8] = { 30.6, 88.2, 405, 300 }, + [9] = { 31.5, 86, 405, 300 }, + }, + }, + [2006695] = { + ["coords"] = {}, + }, + [2006696] = { + ["coords"] = { + [1] = { 30.9, 88.2, 405, 300 }, + }, + }, + [2006697] = { + ["coords"] = {}, + }, + [2006698] = { + ["coords"] = {}, + }, + [2006699] = { + ["coords"] = { + [1] = { 48.8, 50, 8, 300 }, + [2] = { 49.3, 49.9, 8, 300 }, + [3] = { 49.2, 49.8, 8, 300 }, + [4] = { 48.9, 49.7, 8, 300 }, + }, + }, + [2006700] = { + ["coords"] = { + [1] = { 79.2, 63.5, 38, 25 }, + [2] = { 79.3, 62.9, 38, 25 }, + [3] = { 79.4, 62.9, 38, 25 }, + [4] = { 23.1, 12.2, 406, 300 }, + [5] = { 39.1, 76.8, 5602, 25 }, + [6] = { 39.1, 76.5, 5602, 25 }, + [7] = { 39.2, 76.5, 5602, 25 }, + }, + }, + [2006701] = { + ["coords"] = {}, + }, + [2006702] = { + ["coords"] = {}, + }, + [2006703] = { + ["coords"] = { + [1] = { 79.9, 64.4, 28, 300 }, + [2] = { 80.7, 60.2, 28, 300 }, + [3] = { 80.4, 59.5, 28, 25 }, + [4] = { 80.3, 59.4, 28, 25 }, + [5] = { 81.4, 59.3, 28, 25 }, + [6] = { 21.6, 88.3, 139, 300 }, + [7] = { 22.4, 83.6, 139, 300 }, + [8] = { 22.1, 82.9, 139, 25 }, + [9] = { 22, 82.8, 139, 25 }, + [10] = { 23.2, 82.6, 139, 25 }, + }, + }, + [2006704] = { + ["coords"] = { + [1] = { 79.6, 64.5, 28, 300 }, + [2] = { 82.2, 62.9, 28, 25 }, + [3] = { 82.2, 61.2, 28, 25 }, + [4] = { 81.8, 59.9, 28, 25 }, + [5] = { 79.9, 59.5, 28, 25 }, + [6] = { 80.7, 59.2, 28, 25 }, + [7] = { 81.2, 59, 28, 25 }, + [8] = { 21.2, 88.4, 139, 300 }, + [9] = { 24.1, 86.7, 139, 25 }, + [10] = { 24.1, 84.8, 139, 25 }, + [11] = { 23.7, 83.4, 139, 25 }, + [12] = { 21.5, 82.8, 139, 25 }, + [13] = { 22.5, 82.5, 139, 25 }, + [14] = { 23, 82.3, 139, 25 }, + }, + }, + [2006705] = { + ["coords"] = { + [1] = { 79.8, 64.5, 28, 300 }, + [2] = { 21.5, 88.4, 139, 300 }, + }, + }, + [2006706] = { + ["coords"] = { + [1] = { 80.3, 64.1, 28, 300 }, + [2] = { 81.7, 59.7, 28, 25 }, + [3] = { 81.6, 59.5, 28, 25 }, + [4] = { 80.6, 59.5, 28, 25 }, + [5] = { 21.9, 88, 139, 300 }, + [6] = { 23.5, 83.1, 139, 25 }, + [7] = { 23.4, 82.9, 139, 25 }, + [8] = { 22.3, 82.8, 139, 25 }, + [9] = { 23.3, 82.7, 139, 25 }, + }, + }, + [2006707] = { + ["coords"] = { + [1] = { 80.1, 64.3, 28, 300 }, + [2] = { 81, 63.8, 28, 300 }, + [3] = { 80.6, 63.7, 28, 300 }, + [4] = { 21.7, 88.2, 139, 300 }, + [5] = { 22.7, 87.6, 139, 300 }, + [6] = { 22.3, 87.5, 139, 300 }, + }, + }, + [2006708] = { + ["coords"] = {}, + }, + [2006709] = { + ["coords"] = {}, + }, + [2006710] = { + ["coords"] = { + [1] = { 27.2, 43.2, 85, 300 }, + [2] = { 24.2, 40.1, 85, 300 }, + }, + }, + [2006711] = { + ["coords"] = { + [1] = { 25.7, 44.2, 85, 300 }, + }, + }, + [2006712] = { + ["coords"] = { + [1] = { 29, 73.7, 85, 300 }, + }, + }, + [2006713] = { + ["coords"] = { + [1] = { 26.6, 41.2, 85, 300 }, + }, + }, + [2006714] = { + ["coords"] = {}, + }, + [2006715] = { + ["coords"] = { + [1] = { 29.2, 45.9, 28, 300 }, + [2] = { 33.9, 20.6, 28, 300 }, + [3] = { 33.6, 18.7, 28, 300 }, + [4] = { 34.3, 17.2, 28, 0 }, + [5] = { 85.7, 59.3, 85, 300 }, + [6] = { 24.8, 41.7, 85, 300 }, + [7] = { 90.2, 35.2, 85, 300 }, + [8] = { 89.8, 33.4, 85, 300 }, + [9] = { 90.5, 32, 85, 0 }, + }, + }, + [2006716] = { + ["coords"] = {}, + }, + [2006717] = { + ["coords"] = { + [1] = { 25.2, 44.1, 85, 300 }, + }, + }, + [2006718] = { + ["coords"] = { + [1] = { 25.7, 43.1, 85, 300 }, + }, + }, + [2006719] = { + ["coords"] = { + [1] = { 27.7, 46.9, 28, 300 }, + [2] = { 32.3, 22.1, 28, 0 }, + [3] = { 84.2, 60.3, 85, 300 }, + [4] = { 86.1, 57, 85, 300 }, + [5] = { 88.6, 36.7, 85, 0 }, + }, + }, + [2006720] = { + ["coords"] = { + [1] = { 33, 22.2, 28, 0 }, + [2] = { 26.5, 44, 85, 300 }, + [3] = { 89.3, 36.7, 85, 0 }, + }, + }, + [2006721] = { + ["coords"] = {}, + }, + [2006722] = { + ["coords"] = { + [1] = { 25, 45.3, 85, 300 }, + }, + }, + [2006723] = { + ["coords"] = {}, + }, + [2006724] = { + ["coords"] = {}, + }, + [2006725] = { + ["coords"] = {}, + }, + [2006726] = { + ["coords"] = {}, + }, + [2006727] = { + ["coords"] = {}, + }, + [2006728] = { + ["coords"] = {}, + }, + [2006729] = { + ["coords"] = {}, + }, + [2006730] = { + ["coords"] = {}, + }, + [2006731] = { + ["coords"] = {}, + }, + [2006732] = { + ["coords"] = {}, + }, + [2006733] = { + ["coords"] = {}, + }, + [2006734] = { + ["coords"] = {}, + }, + [2006735] = { + ["coords"] = {}, + }, + [2006736] = { + ["coords"] = {}, + }, + [2006737] = { + ["coords"] = {}, + }, + [2006738] = { + ["coords"] = {}, + }, + [2006739] = { + ["coords"] = {}, + }, + [2006740] = { + ["coords"] = {}, + }, + [2006741] = { + ["coords"] = {}, + }, + [2006742] = { + ["coords"] = {}, + }, + [2006743] = { + ["coords"] = { + [1] = { 37, 56.1, 5581, 300 }, + }, + }, + [2006744] = { + ["coords"] = {}, + }, + [2006745] = { + ["coords"] = {}, + }, + [2006746] = { + ["coords"] = {}, + }, + [2006747] = { + ["coords"] = {}, + }, + [2006748] = { + ["coords"] = {}, + }, + [2006749] = { + ["coords"] = {}, + }, + [2006750] = { + ["coords"] = {}, + }, + [2006751] = { + ["coords"] = {}, + }, + [2006752] = { + ["coords"] = {}, + }, + [2006753] = { + ["coords"] = {}, + }, + [2006754] = { + ["coords"] = {}, + }, + [2006755] = { + ["coords"] = {}, + }, + [2006756] = { + ["coords"] = {}, + }, + [2006757] = { + ["coords"] = {}, + }, + [2006758] = { + ["coords"] = {}, + }, + [2006759] = { + ["coords"] = {}, + }, + [2006760] = { + ["coords"] = {}, + }, + [2006761] = { + ["coords"] = {}, + }, + [2006762] = { + ["coords"] = {}, + }, + [2006763] = { + ["coords"] = {}, + }, + [2006764] = { + ["coords"] = {}, + }, + [2006765] = { + ["coords"] = {}, + }, + [2006766] = { + ["coords"] = {}, + }, + [2006767] = { + ["coords"] = {}, + }, + [2006768] = { + ["coords"] = {}, + }, + [2006769] = { + ["coords"] = {}, + }, + [2006770] = { + ["coords"] = {}, + }, + [2006771] = { + ["coords"] = {}, + }, + [2006772] = { + ["coords"] = {}, + }, + [2006773] = { + ["coords"] = {}, + }, + [2006774] = { + ["coords"] = {}, + }, + [2006775] = { + ["coords"] = {}, + }, + [2006776] = { + ["coords"] = {}, + }, + [2006777] = { + ["coords"] = {}, + }, + [2006778] = { + ["coords"] = {}, + }, + [2006779] = { + ["coords"] = {}, + }, + [2006780] = { + ["coords"] = {}, + }, + [2006781] = { + ["coords"] = {}, + }, + [2006782] = { + ["coords"] = {}, + }, + [2006783] = { + ["coords"] = {}, + }, + [2006784] = { + ["coords"] = {}, + }, + [2006785] = { + ["coords"] = {}, + }, + [2006786] = { + ["coords"] = {}, + }, + [2006787] = { + ["coords"] = {}, + }, + [2006788] = { + ["coords"] = {}, + }, + [2006789] = { + ["coords"] = {}, + }, + [2006790] = { + ["coords"] = {}, + }, + [2006791] = { + ["coords"] = {}, + }, + [2006792] = { + ["coords"] = {}, + }, + [2006793] = { + ["coords"] = {}, + }, + [2006794] = { + ["coords"] = {}, + }, + [2006795] = { + ["coords"] = {}, + }, + [2006796] = { + ["coords"] = {}, + }, + [2006797] = { + ["coords"] = {}, + }, + [2006798] = { + ["coords"] = {}, + }, + [2006799] = { + ["coords"] = {}, + }, + [2006800] = { + ["coords"] = {}, + }, + [2006801] = { + ["coords"] = {}, + }, + [2006802] = { + ["coords"] = {}, + }, + [2006803] = { + ["coords"] = {}, + }, + [2006804] = { + ["coords"] = {}, + }, + [2006805] = { + ["coords"] = {}, + }, + [2006806] = { + ["coords"] = {}, + }, + [2006807] = { + ["coords"] = {}, + }, + [2006808] = { + ["coords"] = {}, + }, + [2006809] = { + ["coords"] = {}, + }, + [2006810] = { + ["coords"] = {}, + }, + [2006811] = { + ["coords"] = {}, + }, + [2006812] = { + ["coords"] = {}, + }, + [2006813] = { + ["coords"] = {}, + }, + [2006814] = { + ["coords"] = {}, + }, + [2006815] = { + ["coords"] = {}, + }, + [2006816] = { + ["coords"] = {}, + }, + [2006817] = { + ["coords"] = {}, + }, + [2006818] = { + ["coords"] = {}, + }, + [2006819] = { + ["coords"] = {}, + }, + [2006820] = { + ["coords"] = {}, + }, + [2006821] = { + ["coords"] = {}, + }, + [2006822] = { + ["coords"] = {}, + }, + [2006823] = { + ["coords"] = {}, + }, + [2006824] = { + ["coords"] = {}, + }, + [2006825] = { + ["coords"] = {}, + }, + [2006826] = { + ["coords"] = {}, + }, + [2006827] = { + ["coords"] = {}, + }, + [2006828] = { + ["coords"] = {}, + }, + [2006829] = { + ["coords"] = {}, + }, + [2006830] = { + ["coords"] = {}, + }, + [2006831] = { + ["coords"] = {}, + }, + [2006832] = { + ["coords"] = {}, + }, + [2006833] = { + ["coords"] = {}, + }, + [2006834] = { + ["coords"] = {}, + }, + [2006835] = { + ["coords"] = {}, + }, + [2006836] = { + ["coords"] = {}, + }, + [2006837] = { + ["coords"] = {}, + }, + [2006838] = { + ["coords"] = {}, + }, + [2006839] = { + ["coords"] = {}, + }, + [2006840] = { + ["coords"] = {}, + }, + [2006841] = { + ["coords"] = {}, + }, + [2006842] = { + ["coords"] = {}, + }, + [2006843] = { + ["coords"] = {}, + }, + [2006844] = { + ["coords"] = {}, + }, + [2006845] = { + ["coords"] = {}, + }, + [2006846] = { + ["coords"] = {}, + }, + [2006847] = { + ["coords"] = {}, + }, + [2006848] = { + ["coords"] = {}, + }, + [2006849] = { + ["coords"] = {}, + }, + [2006850] = { + ["coords"] = {}, + }, + [2006851] = { + ["coords"] = {}, + }, + [2006852] = { + ["coords"] = {}, + }, + [2006853] = { + ["coords"] = {}, + }, + [2006854] = { + ["coords"] = {}, + }, + [2006855] = { + ["coords"] = {}, + }, + [2006856] = { + ["coords"] = {}, + }, + [2006857] = { + ["coords"] = {}, + }, + [2006858] = { + ["coords"] = {}, + }, + [2006859] = { + ["coords"] = {}, + }, + [2006860] = { + ["coords"] = {}, + }, + [2006861] = { + ["coords"] = {}, + }, + [2006862] = { + ["coords"] = {}, + }, + [2006863] = { + ["coords"] = {}, + }, + [2006864] = { + ["coords"] = {}, + }, + [2006865] = { + ["coords"] = {}, + }, + [2006866] = { + ["coords"] = {}, + }, + [2006867] = { + ["coords"] = {}, + }, + [2006868] = { + ["coords"] = {}, + }, + [2006869] = { + ["coords"] = {}, + }, + [2006870] = { + ["coords"] = {}, + }, + [2006871] = { + ["coords"] = {}, + }, + [2006872] = { + ["coords"] = {}, + }, + [2006873] = { + ["coords"] = {}, + }, + [2006874] = { + ["coords"] = {}, + }, + [2006875] = { + ["coords"] = {}, + }, + [2006876] = { + ["coords"] = {}, + }, + [2006877] = { + ["coords"] = {}, + }, + [2006878] = { + ["coords"] = {}, + }, + [2006879] = { + ["coords"] = {}, + }, + [2006880] = { + ["coords"] = {}, + }, + [2006881] = { + ["coords"] = {}, + }, + [2006882] = { + ["coords"] = {}, + }, + [2006883] = { + ["coords"] = {}, + }, + [2006884] = { + ["coords"] = {}, + }, + [2006885] = { + ["coords"] = {}, + }, + [2006886] = { + ["coords"] = {}, + }, + [2006887] = { + ["coords"] = {}, + }, + [2006888] = { + ["coords"] = {}, + }, + [2006889] = { + ["coords"] = {}, + }, + [2006890] = { + ["coords"] = {}, + }, + [2006891] = { + ["coords"] = {}, + }, + [2006892] = { + ["coords"] = {}, + }, + [2006893] = { + ["coords"] = {}, + }, + [2006894] = { + ["coords"] = {}, + }, + [2006895] = { + ["coords"] = {}, + }, + [2006896] = { + ["coords"] = {}, + }, + [2006897] = { + ["coords"] = {}, + }, + [2006898] = { + ["coords"] = {}, + }, + [2006899] = { + ["coords"] = {}, + }, + [2006900] = { + ["coords"] = {}, + }, + [2006901] = { + ["coords"] = {}, + }, + [2006902] = { + ["coords"] = {}, + }, + [2006903] = { + ["coords"] = {}, + }, + [2006904] = { + ["coords"] = {}, + }, + [2006905] = { + ["coords"] = {}, + }, + [2006906] = { + ["coords"] = {}, + }, + [2006907] = { + ["coords"] = {}, + }, + [2006908] = { + ["coords"] = {}, + }, + [2006909] = { + ["coords"] = {}, + }, + [2006910] = { + ["coords"] = {}, + }, + [2006911] = { + ["coords"] = {}, + }, + [2006912] = { + ["coords"] = {}, + }, + [2006913] = { + ["coords"] = {}, + }, + [2006914] = { + ["coords"] = {}, + }, + [2006915] = { + ["coords"] = {}, + }, + [2006916] = { + ["coords"] = {}, + }, + [2006917] = { + ["coords"] = {}, + }, + [2006918] = { + ["coords"] = {}, + }, + [2006919] = { + ["coords"] = {}, + }, + [2006920] = { + ["coords"] = {}, + }, + [2006921] = { + ["coords"] = {}, + }, + [2006922] = { + ["coords"] = {}, + }, + [2006923] = { + ["coords"] = {}, + }, + [2006924] = { + ["coords"] = {}, + }, + [2006925] = { + ["coords"] = {}, + }, + [2006926] = { + ["coords"] = {}, + }, + [2006927] = { + ["coords"] = {}, + }, + [2006928] = { + ["coords"] = {}, + }, + [2006929] = { + ["coords"] = {}, + }, + [2006930] = { + ["coords"] = {}, + }, + [2006931] = { + ["coords"] = {}, + }, + [2006932] = { + ["coords"] = {}, + }, + [2006933] = { + ["coords"] = {}, + }, + [2006934] = { + ["coords"] = {}, + }, + [2006935] = { + ["coords"] = {}, + }, + [2006936] = { + ["coords"] = {}, + }, + [2006937] = { + ["coords"] = {}, + }, + [2006938] = { + ["coords"] = {}, + }, + [2006939] = { + ["coords"] = {}, + }, + [2006940] = { + ["coords"] = {}, + }, + [2006941] = { + ["coords"] = {}, + }, + [2006942] = { + ["coords"] = {}, + }, + [2006943] = { + ["coords"] = {}, + }, + [2006944] = { + ["coords"] = {}, + }, + [2006945] = { + ["coords"] = {}, + }, + [2006946] = { + ["coords"] = {}, + }, + [2006947] = { + ["coords"] = {}, + }, + [2006948] = { + ["coords"] = {}, + }, + [2006949] = { + ["coords"] = {}, + }, + [2006950] = { + ["coords"] = {}, + }, + [2006951] = { + ["coords"] = {}, + }, + [2006952] = { + ["coords"] = {}, + }, + [2006953] = { + ["coords"] = {}, + }, + [2006954] = { + ["coords"] = {}, + }, + [2006955] = { + ["coords"] = {}, + }, + [2006956] = { + ["coords"] = {}, + }, + [2006957] = { + ["coords"] = {}, + }, + [2006958] = { + ["coords"] = {}, + }, + [2006959] = { + ["coords"] = {}, + }, + [2006960] = { + ["coords"] = {}, + }, + [2006961] = { + ["coords"] = {}, + }, + [2006962] = { + ["coords"] = {}, + }, + [2006963] = { + ["coords"] = {}, + }, + [2006964] = { + ["coords"] = {}, + }, + [2006965] = { + ["coords"] = {}, + }, + [2006966] = { + ["coords"] = {}, + }, + [2006967] = { + ["coords"] = {}, + }, + [2006968] = { + ["coords"] = {}, + }, + [2006969] = { + ["coords"] = {}, + }, + [2006970] = { + ["coords"] = {}, + }, + [2006971] = { + ["coords"] = {}, + }, + [2006972] = { + ["coords"] = {}, + }, + [2006973] = { + ["coords"] = {}, + }, + [2006974] = { + ["coords"] = {}, + }, + [2006975] = { + ["coords"] = {}, + }, + [2006976] = { + ["coords"] = {}, + }, + [2006977] = { + ["coords"] = {}, + }, + [2006978] = { + ["coords"] = {}, + }, + [2006979] = { + ["coords"] = {}, + }, + [2006980] = { + ["coords"] = {}, + }, + [2006981] = { + ["coords"] = {}, + }, + [2006982] = { + ["coords"] = {}, + }, + [2006983] = { + ["coords"] = {}, + }, + [2006984] = { + ["coords"] = {}, + }, + [2006985] = { + ["coords"] = {}, + }, + [2006986] = { + ["coords"] = {}, + }, + [2006987] = { + ["coords"] = {}, + }, + [2006988] = { + ["coords"] = {}, + }, + [2006989] = { + ["coords"] = {}, + }, + [2006990] = { + ["coords"] = {}, + }, + [2006991] = { + ["coords"] = {}, + }, + [2006992] = { + ["coords"] = {}, + }, + [2006993] = { + ["coords"] = {}, + }, + [2006994] = { + ["coords"] = {}, + }, + [2006995] = { + ["coords"] = {}, + }, + [2006996] = { + ["coords"] = {}, + }, + [2006997] = { + ["coords"] = {}, + }, + [2006998] = { + ["coords"] = {}, + }, + [2006999] = { + ["coords"] = {}, + }, + [2007000] = { + ["coords"] = {}, + }, + [2007001] = { + ["coords"] = {}, + }, + [2007002] = { + ["coords"] = {}, + }, + [2007003] = { + ["coords"] = {}, + }, + [2007004] = { + ["coords"] = {}, + }, + [2007005] = { + ["coords"] = {}, + }, + [2007006] = { + ["coords"] = {}, + }, + [2007007] = { + ["coords"] = {}, + }, + [2007008] = { + ["coords"] = {}, + }, + [2007009] = { + ["coords"] = {}, + }, + [2007010] = { + ["coords"] = {}, + }, + [2007011] = { + ["coords"] = {}, + }, + [2007012] = { + ["coords"] = {}, + }, + [2007013] = { + ["coords"] = {}, + }, + [2007014] = { + ["coords"] = {}, + }, + [2007015] = { + ["coords"] = {}, + }, + [2007016] = { + ["coords"] = {}, + }, + [2007017] = { + ["coords"] = {}, + }, + [2007018] = { + ["coords"] = {}, + }, + [2007019] = { + ["coords"] = {}, + }, + [2007020] = { + ["coords"] = {}, + }, + [2007021] = { + ["coords"] = {}, + }, + [2007022] = { + ["coords"] = {}, + }, + [2007023] = { + ["coords"] = {}, + }, + [2007024] = { + ["coords"] = {}, + }, + [2007025] = { + ["coords"] = {}, + }, + [2007026] = { + ["coords"] = {}, + }, + [2007027] = { + ["coords"] = {}, + }, + [2007028] = { + ["coords"] = {}, + }, + [2007029] = { + ["coords"] = {}, + }, + [2007030] = { + ["coords"] = {}, + }, + [2007031] = { + ["coords"] = {}, + }, + [2007032] = { + ["coords"] = {}, + }, + [2007033] = { + ["coords"] = {}, + }, + [2007034] = { + ["coords"] = {}, + }, + [2007035] = { + ["coords"] = {}, + }, + [2007036] = { + ["coords"] = {}, + }, + [2007037] = { + ["coords"] = {}, + }, + [2007038] = { + ["coords"] = {}, + }, + [2007039] = { + ["coords"] = {}, + }, + [2007040] = { + ["coords"] = {}, + }, + [2007041] = { + ["coords"] = {}, + }, + [2007042] = { + ["coords"] = {}, + }, + [2007043] = { + ["coords"] = {}, + }, + [2007044] = { + ["coords"] = {}, + }, + [2007045] = { + ["coords"] = {}, + }, + [2007046] = { + ["coords"] = {}, + }, + [2007047] = { + ["coords"] = {}, + }, + [2007048] = { + ["coords"] = {}, + }, + [2007049] = { + ["coords"] = {}, + }, + [2007050] = { + ["coords"] = {}, + }, + [2007051] = { + ["coords"] = {}, + }, + [2007052] = { + ["coords"] = {}, + }, + [2007053] = { + ["coords"] = {}, + }, + [2007054] = { + ["coords"] = {}, + }, + [2007055] = { + ["coords"] = {}, + }, + [2007056] = { + ["coords"] = {}, + }, + [2007057] = { + ["coords"] = {}, + }, + [2007058] = { + ["coords"] = {}, + }, + [2007059] = { + ["coords"] = {}, + }, + [2007060] = { + ["coords"] = {}, + }, + [2007061] = { + ["coords"] = {}, + }, + [2007062] = { + ["coords"] = {}, + }, + [2007063] = { + ["coords"] = {}, + }, + [2007064] = { + ["coords"] = {}, + }, + [2007065] = { + ["coords"] = {}, + }, + [2007066] = { + ["coords"] = {}, + }, + [2007067] = { + ["coords"] = {}, + }, + [2007068] = { + ["coords"] = {}, + }, + [2007069] = { + ["coords"] = {}, + }, + [2007070] = { + ["coords"] = {}, + }, + [2007071] = { + ["coords"] = {}, + }, + [2007072] = { + ["coords"] = {}, + }, + [2007073] = { + ["coords"] = {}, + }, + [2007074] = { + ["coords"] = {}, + }, + [2007075] = { + ["coords"] = {}, + }, + [2007076] = { + ["coords"] = {}, + }, + [2007077] = { + ["coords"] = {}, + }, + [2007078] = { + ["coords"] = {}, + }, + [2007079] = { + ["coords"] = {}, + }, + [2007080] = { + ["coords"] = {}, + }, + [2007081] = { + ["coords"] = {}, + }, + [2007082] = { + ["coords"] = {}, + }, + [2007083] = { + ["coords"] = {}, + }, + [2007084] = { + ["coords"] = {}, + }, + [2007085] = { + ["coords"] = {}, + }, + [2007086] = { + ["coords"] = {}, + }, + [2007087] = { + ["coords"] = {}, + }, + [2007088] = { + ["coords"] = {}, + }, + [2007089] = { + ["coords"] = {}, + }, + [2007090] = { + ["coords"] = {}, + }, + [2007091] = { + ["coords"] = {}, + }, + [2007092] = { + ["coords"] = {}, + }, + [2007093] = { + ["coords"] = {}, + }, + [2007094] = { + ["coords"] = {}, + }, + [2007095] = { + ["coords"] = {}, + }, + [2007096] = { + ["coords"] = {}, + }, + [2007097] = { + ["coords"] = {}, + }, + [2007098] = { + ["coords"] = {}, + }, + [2007099] = { + ["coords"] = {}, + }, + [2007100] = { + ["coords"] = {}, + }, + [2007101] = { + ["coords"] = {}, + }, + [2007102] = { + ["coords"] = {}, + }, + [2007103] = { + ["coords"] = {}, + }, + [2007104] = { + ["coords"] = {}, + }, + [2007105] = { + ["coords"] = {}, + }, + [2007106] = { + ["coords"] = {}, + }, + [2007107] = { + ["coords"] = {}, + }, + [2007108] = { + ["coords"] = {}, + }, + [2007109] = { + ["coords"] = {}, + }, + [2007110] = { + ["coords"] = {}, + }, + [2007111] = { + ["coords"] = {}, + }, + [2007112] = { + ["coords"] = {}, + }, + [2007113] = { + ["coords"] = {}, + }, + [2007114] = { + ["coords"] = {}, + }, + [2007115] = { + ["coords"] = {}, + }, + [2007116] = { + ["coords"] = {}, + }, + [2007117] = { + ["coords"] = {}, + }, + [2007118] = { + ["coords"] = {}, + }, + [2007119] = { + ["coords"] = {}, + }, + [2007120] = { + ["coords"] = {}, + }, + [2007121] = { + ["coords"] = {}, + }, + [2007122] = { + ["coords"] = {}, + }, + [2007123] = { + ["coords"] = {}, + }, + [2007124] = { + ["coords"] = {}, + }, + [2007125] = { + ["coords"] = {}, + }, + [2007126] = { + ["coords"] = {}, + }, + [2007127] = { + ["coords"] = {}, + }, + [2007128] = { + ["coords"] = {}, + }, + [2007129] = { + ["coords"] = {}, + }, + [2007130] = { + ["coords"] = {}, + }, + [2007131] = { + ["coords"] = {}, + }, + [2007132] = { + ["coords"] = {}, + }, + [2007133] = { + ["coords"] = {}, + }, + [2007134] = { + ["coords"] = {}, + }, + [2007135] = { + ["coords"] = {}, + }, + [2007136] = { + ["coords"] = {}, + }, + [2007137] = { + ["coords"] = {}, + }, + [2007138] = { + ["coords"] = {}, + }, + [2007139] = { + ["coords"] = {}, + }, + [2007140] = { + ["coords"] = {}, + }, + [2007141] = { + ["coords"] = {}, + }, + [2007142] = { + ["coords"] = {}, + }, + [2007143] = { + ["coords"] = {}, + }, + [2007144] = { + ["coords"] = {}, + }, + [2007145] = { + ["coords"] = {}, + }, + [2007146] = { + ["coords"] = {}, + }, + [2007147] = { + ["coords"] = {}, + }, + [2007148] = { + ["coords"] = {}, + }, + [2007149] = { + ["coords"] = {}, + }, + [2007150] = { + ["coords"] = {}, + }, + [2007151] = { + ["coords"] = {}, + }, + [2007152] = { + ["coords"] = {}, + }, + [2007153] = { + ["coords"] = {}, + }, + [2007154] = { + ["coords"] = {}, + }, + [2007155] = { + ["coords"] = {}, + }, + [2007156] = { + ["coords"] = {}, + }, + [2007157] = { + ["coords"] = {}, + }, + [2007158] = { + ["coords"] = {}, + }, + [2007159] = { + ["coords"] = {}, + }, + [2007160] = { + ["coords"] = {}, + }, + [2007161] = { + ["coords"] = {}, + }, + [2007162] = { + ["coords"] = {}, + }, + [2007163] = { + ["coords"] = {}, + }, + [2007164] = { + ["coords"] = {}, + }, + [2007165] = { + ["coords"] = {}, + }, + [2007166] = { + ["coords"] = {}, + }, + [2007167] = { + ["coords"] = {}, + }, + [2007168] = { + ["coords"] = {}, + }, + [2007169] = { + ["coords"] = {}, + }, + [2007170] = { + ["coords"] = {}, + }, + [2007171] = { + ["coords"] = {}, + }, + [2007172] = { + ["coords"] = {}, + }, + [2007173] = { + ["coords"] = {}, + }, + [2007174] = { + ["coords"] = {}, + }, + [2007175] = { + ["coords"] = {}, + }, + [2007176] = { + ["coords"] = {}, + }, + [2007177] = { + ["coords"] = {}, + }, + [2007178] = { + ["coords"] = {}, + }, + [2007179] = { + ["coords"] = {}, + }, + [2007180] = { + ["coords"] = {}, + }, + [2007181] = { + ["coords"] = {}, + }, + [2007182] = { + ["coords"] = {}, + }, + [2007183] = { + ["coords"] = {}, + }, + [2007184] = { + ["coords"] = {}, + }, + [2007185] = { + ["coords"] = {}, + }, + [2007186] = { + ["coords"] = {}, + }, + [2007187] = { + ["coords"] = {}, + }, + [2007188] = { + ["coords"] = {}, + }, + [2007189] = { + ["coords"] = {}, + }, + [2007190] = { + ["coords"] = {}, + }, + [2007191] = { + ["coords"] = {}, + }, + [2007192] = { + ["coords"] = {}, + }, + [2007193] = { + ["coords"] = {}, + }, + [2007194] = { + ["coords"] = {}, + }, + [2007195] = { + ["coords"] = {}, + }, + [2007196] = { + ["coords"] = {}, + }, + [2007197] = { + ["coords"] = {}, + }, + [2007198] = { + ["coords"] = {}, + }, + [2007199] = { + ["coords"] = {}, + }, + [2007200] = { + ["coords"] = {}, + }, + [2007201] = { + ["coords"] = {}, + }, + [2007202] = { + ["coords"] = {}, + }, + [2007203] = { + ["coords"] = {}, + }, + [2007204] = { + ["coords"] = {}, + }, + [2007205] = { + ["coords"] = {}, + }, + [2007206] = { + ["coords"] = {}, + }, + [2007207] = { + ["coords"] = {}, + }, + [2007208] = { + ["coords"] = {}, + }, + [2007209] = { + ["coords"] = {}, + }, + [2007210] = { + ["coords"] = {}, + }, + [2007211] = { + ["coords"] = {}, + }, + [2007212] = { + ["coords"] = {}, + }, + [2007213] = { + ["coords"] = {}, + }, + [2007214] = { + ["coords"] = {}, + }, + [2007215] = { + ["coords"] = {}, + }, + [2007216] = { + ["coords"] = {}, + }, + [2007217] = { + ["coords"] = {}, + }, + [2007218] = { + ["coords"] = {}, + }, + [2007219] = { + ["coords"] = {}, + }, + [2007220] = { + ["coords"] = {}, + }, + [2007221] = { + ["coords"] = {}, + }, + [2007222] = { + ["coords"] = {}, + }, + [2007223] = { + ["coords"] = {}, + }, + [2007224] = { + ["coords"] = {}, + }, + [2007225] = { + ["coords"] = {}, + }, + [2007226] = { + ["coords"] = {}, + }, + [2007227] = { + ["coords"] = {}, + }, + [2007228] = { + ["coords"] = {}, + }, + [2007229] = { + ["coords"] = {}, + }, + [2007230] = { + ["coords"] = {}, + }, + [2007231] = { + ["coords"] = {}, + }, + [2007232] = { + ["coords"] = {}, + }, + [2007233] = { + ["coords"] = {}, + }, + [2007234] = { + ["coords"] = {}, + }, + [2007235] = { + ["coords"] = {}, + }, + [2007236] = { + ["coords"] = {}, + }, + [2007237] = { + ["coords"] = {}, + }, + [2007238] = { + ["coords"] = {}, + }, + [2007239] = { + ["coords"] = {}, + }, + [2007240] = { + ["coords"] = {}, + }, + [2007241] = { + ["coords"] = {}, + }, + [2007242] = { + ["coords"] = {}, + }, + [2007243] = { + ["coords"] = {}, + }, + [2007244] = { + ["coords"] = {}, + }, + [2007245] = { + ["coords"] = {}, + }, + [2007246] = { + ["coords"] = {}, + }, + [2007247] = { + ["coords"] = {}, + }, + [2007248] = { + ["coords"] = {}, + }, + [2007249] = { + ["coords"] = {}, + }, + [2007250] = { + ["coords"] = {}, + }, + [2007251] = { + ["coords"] = {}, + }, + [2007252] = { + ["coords"] = {}, + }, + [2007253] = { + ["coords"] = {}, + }, + [2007254] = { + ["coords"] = {}, + }, + [2007255] = { + ["coords"] = { + [1] = { 28.2, 43.6, 85, 300 }, + [2] = { 44.5, 50.4, 406, 300 }, + }, + }, + [2007256] = { + ["coords"] = {}, + }, + [2007257] = { + ["coords"] = { + [1] = { 68.4, 76.6, 5087, 300 }, + }, + }, + [2007258] = { + ["coords"] = {}, + }, + [2007259] = { + ["coords"] = {}, + }, + [2007260] = { + ["coords"] = {}, + }, + [2007261] = { + ["coords"] = {}, + }, + [2007262] = { + ["coords"] = {}, + }, + [2007263] = { + ["coords"] = {}, + }, + [2007264] = { + ["coords"] = {}, + }, + [2007265] = { + ["coords"] = {}, + }, + [2007266] = { + ["coords"] = {}, + }, + [2007267] = { + ["coords"] = {}, + }, + [2007268] = { + ["coords"] = {}, + }, + [2007269] = { + ["coords"] = {}, + }, + [2007270] = { + ["coords"] = {}, + }, + [2007271] = { + ["coords"] = {}, + }, + [2007272] = { + ["coords"] = {}, + }, + [2007273] = { + ["coords"] = {}, + }, + [2007274] = { + ["coords"] = {}, + }, + [2007275] = { + ["coords"] = {}, + }, + [2007276] = { + ["coords"] = {}, + }, + [2007277] = { + ["coords"] = {}, + }, + [2007278] = { + ["coords"] = {}, + }, + [2007279] = { + ["coords"] = {}, + }, + [2007280] = { + ["coords"] = {}, + }, + [2007281] = { + ["coords"] = {}, + }, + [2007282] = { + ["coords"] = {}, + }, + [2007283] = { + ["coords"] = {}, + }, + [2007284] = { + ["coords"] = {}, + }, + [2007285] = { + ["coords"] = {}, + }, + [2007286] = { + ["coords"] = { + [1] = { 21, 48.5, 267, 300 }, + [2] = { 78, 11.3, 5179, 300 }, + }, + }, + [2007287] = { + ["coords"] = {}, + }, + [2007288] = { + ["coords"] = {}, + }, + [2007289] = { + ["coords"] = {}, + }, + [2007290] = { + ["coords"] = {}, + }, + [2007291] = { + ["coords"] = {}, + }, + [2007292] = { + ["coords"] = {}, + }, + [2007293] = { + ["coords"] = {}, + }, + [2007294] = { + ["coords"] = {}, + }, + [2007295] = { + ["coords"] = {}, + }, + [2007296] = { + ["coords"] = {}, + }, + [2007297] = { + ["coords"] = {}, + }, + [2007298] = { + ["coords"] = {}, + }, + [2007299] = { + ["coords"] = {}, + }, + [2007300] = { + ["coords"] = {}, + }, + [2007301] = { + ["coords"] = {}, + }, + [2007302] = { + ["coords"] = {}, + }, + [2007303] = { + ["coords"] = {}, + }, + [2007304] = { + ["coords"] = {}, + }, + [2007305] = { + ["coords"] = {}, + }, + [2007306] = { + ["coords"] = {}, + }, + [2007307] = { + ["coords"] = {}, + }, + [2007308] = { + ["coords"] = {}, + }, + [2007309] = { + ["coords"] = {}, + }, + [2007310] = { + ["coords"] = {}, + }, + [2007311] = { + ["coords"] = {}, + }, + [2007312] = { + ["coords"] = {}, + }, + [2007313] = { + ["coords"] = {}, + }, + [2007314] = { + ["coords"] = {}, + }, + [2007315] = { + ["coords"] = {}, + }, + [2007316] = { + ["coords"] = {}, + }, + [2007317] = { + ["coords"] = {}, + }, + [2007318] = { + ["coords"] = {}, + }, + [2007319] = { + ["coords"] = {}, + }, + [2007320] = { + ["coords"] = {}, + }, + [2007321] = { + ["coords"] = {}, + }, + [2007322] = { + ["coords"] = {}, + }, + [2007323] = { + ["coords"] = {}, + }, + [2007324] = { + ["coords"] = {}, + }, + [2007325] = { + ["coords"] = {}, + }, + [2007326] = { + ["coords"] = { + [1] = { 23.1, 29.2, 1, 300 }, + [2] = { 34.2, 48.9, 10, 300 }, + [3] = { 18.1, 65.6, 46, 300 }, + [4] = { 25.5, 55.8, 141, 300 }, + [5] = { 39.1, 28.7, 215, 300 }, + [6] = { 60.4, 39.6, 409, 300 }, + [7] = { 49.3, 32.5, 618, 300 }, + [8] = { 63.4, 8.2, 721, 300 }, + [9] = { 65.1, 42.5, 1497, 300 }, + [10] = { 62.8, 80.5, 1519, 300 }, + [11] = { 35.6, 63.9, 1537, 300 }, + [12] = { 50.2, 69.2, 1637, 300 }, + [13] = { 46, 58.3, 1638, 300 }, + [14] = { 39.9, 42.7, 1657, 300 }, + [15] = { 14.1, 33.6, 5179, 300 }, + [16] = { 94.3, 92.1, 5581, 300 }, + }, + }, + [2007327] = { + ["coords"] = {}, + }, + [2007328] = { + ["coords"] = {}, + }, + [2007329] = { + ["coords"] = {}, + }, + [2007330] = { + ["coords"] = { + [1] = { 24.1, 33.1, 1, 300 }, + [2] = { 80.6, 60.8, 28, 300 }, + [3] = { 61.9, 74.9, 38, 300 }, + [4] = { 22.4, 84.3, 139, 300 }, + [5] = { 72.3, 41.4, 721, 300 }, + [6] = { 72, 32.8, 1497, 300 }, + [7] = { 30.3, 82.6, 5602, 300 }, + }, + }, + [2007331] = { + ["coords"] = { + [1] = { 24.1, 33, 1, 300 }, + [2] = { 72.6, 41.1, 721, 300 }, + }, + }, + [2007332] = { + ["coords"] = {}, + }, + [2007333] = { + ["coords"] = {}, + }, + [2007334] = { + ["coords"] = {}, + }, + [2007335] = { + ["coords"] = {}, + }, + [2007336] = { + ["coords"] = {}, + }, + [2007337] = { + ["coords"] = {}, + }, + [2007338] = { + ["coords"] = {}, + }, + [2007339] = { + ["coords"] = {}, + }, + [2007340] = { + ["coords"] = {}, + }, + [2007341] = { + ["coords"] = {}, + }, + [2007342] = { + ["coords"] = {}, + }, + [2007343] = { + ["coords"] = { + [1] = { 29.3, 62.1, 16, 300 }, + }, + }, + [2007344] = { + ["coords"] = {}, + }, + [2007345] = { + ["coords"] = {}, + }, + [2007346] = { + ["coords"] = {}, + }, + [2007347] = { + ["coords"] = {}, + }, + [2007348] = { + ["coords"] = {}, + }, + [2007349] = { + ["coords"] = {}, + }, + [2007350] = { + ["coords"] = {}, + }, + [2007351] = { + ["coords"] = {}, + }, + [2007352] = { + ["coords"] = {}, + }, + [2007353] = { + ["coords"] = {}, + }, + [2007354] = { + ["coords"] = {}, + }, + [2007355] = { + ["coords"] = {}, + }, + [2007356] = { + ["coords"] = { + [1] = { 30.9, 57.1, 5561, 300 }, + }, + }, + [2007357] = { + ["coords"] = {}, + }, + [2007358] = { + ["coords"] = {}, + }, + [2007359] = { + ["coords"] = {}, + }, + [2007360] = { + ["coords"] = {}, + }, + [2007361] = { + ["coords"] = {}, + }, + [2007362] = { + ["coords"] = {}, + }, + [2007363] = { + ["coords"] = {}, + }, + [2007364] = { + ["coords"] = {}, + }, + [2007365] = { + ["coords"] = {}, + }, + [2007366] = { + ["coords"] = {}, + }, + [2007367] = { + ["coords"] = {}, + }, + [2007368] = { + ["coords"] = {}, + }, + [2007369] = { + ["coords"] = {}, + }, + [2007370] = { + ["coords"] = {}, + }, + [2007371] = { + ["coords"] = {}, + }, + [2007372] = { + ["coords"] = {}, + }, + [2007373] = { + ["coords"] = {}, + }, + [2007374] = { + ["coords"] = {}, + }, + [2007375] = { + ["coords"] = {}, + }, + [2007376] = { + ["coords"] = {}, + }, + [2007377] = { + ["coords"] = { + [1] = { 62.6, 22.4, 33, 300 }, + [2] = { 62.6, 22.3, 33, 300 }, + [3] = { 62.6, 22.2, 33, 300 }, + }, + }, + [2007378] = { + ["coords"] = {}, + }, + [2007379] = { + ["coords"] = {}, + }, + [2007380] = { + ["coords"] = {}, + }, + [2007381] = { + ["coords"] = {}, + }, + [2007382] = { + ["coords"] = {}, + }, + [2007383] = { + ["coords"] = {}, + }, + [2007384] = { + ["coords"] = {}, + }, + [2007385] = { + ["coords"] = {}, + }, + [2007386] = { + ["coords"] = {}, + }, + [2007387] = { + ["coords"] = {}, + }, + [2007388] = { + ["coords"] = {}, + }, + [2007389] = { + ["coords"] = {}, + }, + [2007390] = { + ["coords"] = {}, + }, + [2007391] = { + ["coords"] = {}, + }, + [2007392] = { + ["coords"] = {}, + }, + [2007393] = { + ["coords"] = {}, + }, + [2007394] = { + ["coords"] = {}, + }, + [2007395] = { + ["coords"] = {}, + }, + [2007396] = { + ["coords"] = {}, + }, + [2007397] = { + ["coords"] = {}, + }, + [2007398] = { + ["coords"] = {}, + }, + [2007399] = { + ["coords"] = {}, + }, + [2007400] = { + ["coords"] = {}, + }, + [2007401] = { + ["coords"] = {}, + }, + [2007402] = { + ["coords"] = {}, + }, + [2007403] = { + ["coords"] = {}, + }, + [2007404] = { + ["coords"] = {}, + }, + [2007405] = { + ["coords"] = {}, + }, + [2007406] = { + ["coords"] = {}, + }, + [2007407] = { + ["coords"] = { + [1] = { 81, 60.7, 28, 300 }, + [2] = { 22.8, 84.2, 139, 300 }, + [3] = { 31.2, 90.7, 405, 300 }, + }, + }, + [2007408] = { + ["coords"] = { + [1] = { 32.9, 17.4, 28, 300 }, + [2] = { 89.2, 32.1, 85, 300 }, + }, + }, + [2007409] = { + ["coords"] = {}, + }, + [2007410] = { + ["coords"] = {}, + }, + [2007411] = { + ["coords"] = {}, + }, + [2007412] = { + ["coords"] = {}, + }, + [2007413] = { + ["coords"] = {}, + }, + [2007414] = { + ["coords"] = {}, + }, + [2007415] = { + ["coords"] = {}, + }, + [2007416] = { + ["coords"] = {}, + }, + [2007417] = { + ["coords"] = {}, + }, + [2007418] = { + ["coords"] = {}, + }, + [2007419] = { + ["coords"] = { + [1] = { 33.5, 48.3, 10, 300 }, + }, + }, + [2007420] = { + ["coords"] = {}, + }, + [2007421] = { + ["coords"] = {}, + }, + [2007422] = { + ["coords"] = { + [1] = { 51, 61.4, 357, 300 }, + }, + }, + [2007423] = { + ["coords"] = {}, + }, + [2007424] = { + ["coords"] = {}, + }, + [2007425] = { + ["coords"] = {}, + }, + [2007426] = { + ["coords"] = { + [1] = { 80.8, 63.4, 28, 300 }, + [2] = { 22.5, 87.2, 139, 300 }, + [3] = { 30.9, 89.8, 405, 300 }, + }, + }, + [2007427] = { + ["coords"] = {}, + }, + [2007428] = { + ["coords"] = {}, + }, + [2007429] = { + ["coords"] = {}, + }, + [2007430] = { + ["coords"] = {}, + }, + [2007431] = { + ["coords"] = {}, + }, + [2007432] = { + ["coords"] = {}, + }, + [2007433] = { + ["coords"] = {}, + }, + [2007434] = { + ["coords"] = {}, + }, + [2007435] = { + ["coords"] = {}, + }, + [2007436] = { + ["coords"] = {}, + }, + [2007437] = { + ["coords"] = {}, + }, + [2007438] = { + ["coords"] = {}, + }, + [2007439] = { + ["coords"] = {}, + }, + [2007440] = { + ["coords"] = {}, + }, + [2007441] = { + ["coords"] = {}, + }, + [2007442] = { + ["coords"] = {}, + }, + [2007443] = { + ["coords"] = {}, + }, + [2007444] = { + ["coords"] = { + [1] = { 48.7, 60.9, 11, 300 }, + [2] = { 6.2, 25.7, 5602, 300 }, + }, + }, + [2007445] = { + ["coords"] = {}, + }, + [2007446] = { + ["coords"] = {}, + }, + [2007447] = { + ["coords"] = {}, + }, + [2007448] = { + ["coords"] = {}, + }, + [2007449] = { + ["coords"] = {}, + }, + [2007450] = { + ["coords"] = {}, + }, + [2007451] = { + ["coords"] = {}, + }, + [2007452] = { + ["coords"] = {}, + }, + [2007453] = { + ["coords"] = {}, + }, + [2007454] = { + ["coords"] = {}, + }, + [2007455] = { + ["coords"] = {}, + }, + [2007456] = { + ["coords"] = {}, + }, + [2007457] = { + ["coords"] = {}, + }, + [2007458] = { + ["coords"] = {}, + }, + [2007459] = { + ["coords"] = {}, + }, + [2007460] = { + ["coords"] = {}, + }, + [2007461] = { + ["coords"] = {}, + }, + [2007462] = { + ["coords"] = {}, + }, + [2007463] = { + ["coords"] = {}, + }, + [2007464] = { + ["coords"] = {}, + }, + [2007465] = { + ["coords"] = {}, + }, + [2007466] = { + ["coords"] = {}, + }, + [2007467] = { + ["coords"] = {}, + }, + [2007468] = { + ["coords"] = {}, + }, + [2007469] = { + ["coords"] = {}, + }, + [2007470] = { + ["coords"] = {}, + }, + [2007471] = { + ["coords"] = {}, + }, + [2007472] = { + ["coords"] = {}, + }, + [2007473] = { + ["coords"] = {}, + }, + [2007474] = { + ["coords"] = {}, + }, + [2007475] = { + ["coords"] = {}, + }, + [2007476] = { + ["coords"] = {}, + }, + [2007477] = { + ["coords"] = {}, + }, + [2007478] = { + ["coords"] = {}, + }, + [2007479] = { + ["coords"] = {}, + }, + [2007480] = { + ["coords"] = {}, + }, + [2007481] = { + ["coords"] = {}, + }, + [2007482] = { + ["coords"] = {}, + }, + [2007483] = { + ["coords"] = {}, + }, + [2007484] = { + ["coords"] = {}, + }, + [2007485] = { + ["coords"] = {}, + }, + [2007486] = { + ["coords"] = { + [1] = { 26.7, 61.1, 12, 300 }, + }, + }, + [2007487] = { + ["coords"] = {}, + }, + [2007488] = { + ["coords"] = {}, + }, + [2007489] = { + ["coords"] = {}, + }, + [2007490] = { + ["coords"] = {}, + }, + [2007491] = { + ["coords"] = {}, + }, + [2007492] = { + ["coords"] = {}, + }, + [2007493] = { + ["coords"] = {}, + }, + [2007494] = { + ["coords"] = {}, + }, + [2007495] = { + ["coords"] = { + [1] = { 44, 98.3, 28, 300 }, + [2] = { 80.7, 51, 36, 300 }, + }, + }, + [2007496] = { + ["coords"] = {}, + }, + [2007497] = { + ["coords"] = {}, + }, + [2007498] = { + ["coords"] = {}, + }, + [2007499] = { + ["coords"] = {}, + }, + [2007500] = { + ["coords"] = {}, + }, + [2007501] = { + ["coords"] = { + [1] = { 33.9, 17.6, 28, 0 }, + [2] = { 90.1, 32.4, 85, 0 }, + }, + }, + [2007502] = { + ["coords"] = {}, + }, + [2007503] = { + ["coords"] = {}, + }, + [2007504] = { + ["coords"] = {}, + }, + [2007505] = { + ["coords"] = {}, + }, + [2007506] = { + ["coords"] = {}, + }, + [2007507] = { + ["coords"] = {}, + }, + [2007508] = { + ["coords"] = {}, + }, + [2007509] = { + ["coords"] = {}, + }, + [2007510] = { + ["coords"] = {}, + }, + [2007511] = { + ["coords"] = {}, + }, + [2007512] = { + ["coords"] = {}, + }, + [2007513] = { + ["coords"] = {}, + }, + [2007514] = { + ["coords"] = {}, + }, + [2007515] = { + ["coords"] = {}, + }, + [2007516] = { + ["coords"] = {}, + }, + [2007517] = { + ["coords"] = {}, + }, + [2007518] = { + ["coords"] = {}, + }, + [2007519] = { + ["coords"] = {}, + }, + [2007520] = { + ["coords"] = {}, + }, + [2007521] = { + ["coords"] = {}, + }, + [2007522] = { + ["coords"] = {}, + }, + [2007523] = { + ["coords"] = {}, + }, + [2007524] = { + ["coords"] = {}, + }, + [2007525] = { + ["coords"] = {}, + }, + [2007526] = { + ["coords"] = {}, + }, + [2007527] = { + ["coords"] = {}, + }, + [2007528] = { + ["coords"] = { + [1] = { 37.8, 71.3, 14, 300 }, + [2] = { 37.6, 71, 14, 300 }, + [3] = { 64.6, 34.3, 17, 300 }, + [4] = { 65, 34.3, 17, 300 }, + [5] = { 64.8, 34.2, 17, 300 }, + [6] = { 64.9, 34.2, 17, 300 }, + }, + }, + [2007529] = { + ["coords"] = {}, + }, + [2007530] = { + ["coords"] = {}, + }, + [2007531] = { + ["coords"] = {}, + }, + [2007532] = { + ["coords"] = {}, + }, + [2007533] = { + ["coords"] = {}, + }, + [2007534] = { + ["coords"] = {}, + }, + [2007535] = { + ["coords"] = {}, + }, + [2007536] = { + ["coords"] = {}, + }, + [2007537] = { + ["coords"] = {}, + }, + [2007538] = { + ["coords"] = {}, + }, + [2007539] = { + ["coords"] = {}, + }, + [2007540] = { + ["coords"] = {}, + }, + [2007541] = { + ["coords"] = {}, + }, + [2007542] = { + ["coords"] = {}, + }, + [2007543] = { + ["coords"] = {}, + }, + [2007544] = { + ["coords"] = {}, + }, + [2007545] = { + ["coords"] = {}, + }, + [2007546] = { + ["coords"] = {}, + }, + [2007547] = { + ["coords"] = {}, + }, + [2007548] = { + ["coords"] = {}, + }, + [2007549] = { + ["coords"] = {}, + }, + [2007550] = { + ["coords"] = {}, + }, + [2007551] = { + ["coords"] = {}, + }, + [2007552] = { + ["coords"] = {}, + }, + [2007553] = { + ["coords"] = {}, + }, + [2007554] = { + ["coords"] = {}, + }, + [2007555] = { + ["coords"] = { + [1] = { 67.8, 83, 130, 300 }, + [2] = { 14.5, 49.6, 267, 300 }, + [3] = { 72.3, 12.3, 5179, 300 }, + }, + }, + [2007556] = { + ["coords"] = {}, + }, + [2007557] = { + ["coords"] = {}, + }, + [2007558] = { + ["coords"] = {}, + }, + [2007559] = { + ["coords"] = {}, + }, + [2007560] = { + ["coords"] = {}, + }, + [2007561] = { + ["coords"] = {}, + }, + [2007562] = { + ["coords"] = {}, + }, + [2007563] = { + ["coords"] = {}, + }, + [2007564] = { + ["coords"] = {}, + }, + [2007565] = { + ["coords"] = {}, + }, + [2007566] = { + ["coords"] = {}, + }, + [2007567] = { + ["coords"] = {}, + }, + [2007568] = { + ["coords"] = {}, + }, + [2007569] = { + ["coords"] = {}, + }, + [2007570] = { + ["coords"] = {}, + }, + [2007571] = { + ["coords"] = {}, + }, + [2007572] = { + ["coords"] = {}, + }, + [2007573] = { + ["coords"] = {}, + }, + [2007574] = { + ["coords"] = {}, + }, + [2007575] = { + ["coords"] = {}, + }, + [2007576] = { + ["coords"] = {}, + }, + [2007577] = { + ["coords"] = {}, + }, + [2007578] = { + ["coords"] = {}, + }, + [2007579] = { + ["coords"] = {}, + }, + [2007580] = { + ["coords"] = {}, + }, + [2007581] = { + ["coords"] = {}, + }, + [2007582] = { + ["coords"] = {}, + }, + [2007583] = { + ["coords"] = {}, + }, + [2007584] = { + ["coords"] = {}, + }, + [2007585] = { + ["coords"] = {}, + }, + [2007586] = { + ["coords"] = {}, + }, + [2007587] = { + ["coords"] = {}, + }, + [2007588] = { + ["coords"] = {}, + }, + [2007589] = { + ["coords"] = {}, + }, + [2007590] = { + ["coords"] = {}, + }, + [2007591] = { + ["coords"] = {}, + }, + [2007592] = { + ["coords"] = {}, + }, + [2007593] = { + ["coords"] = {}, + }, + [2007594] = { + ["coords"] = {}, + }, + [2007595] = { + ["coords"] = {}, + }, + [2007596] = { + ["coords"] = {}, + }, + [2007597] = { + ["coords"] = {}, + }, + [2007598] = { + ["coords"] = {}, + }, + [2007599] = { + ["coords"] = {}, + }, + [2007600] = { + ["coords"] = {}, + }, + [2007601] = { + ["coords"] = {}, + }, + [2007602] = { + ["coords"] = {}, + }, + [2007603] = { + ["coords"] = {}, + }, + [2007604] = { + ["coords"] = {}, + }, + [2007605] = { + ["coords"] = {}, + }, + [2007606] = { + ["coords"] = {}, + }, + [2007607] = { + ["coords"] = {}, + }, + [2007608] = { + ["coords"] = {}, + }, + [2007609] = { + ["coords"] = { + [1] = { 27.7, 82.4, 4, 300 }, + [2] = { 68.8, 29.1, 33, 300 }, + [3] = { 53.6, 19.7, 33, 300 }, + [4] = { 53.3, 19.3, 33, 300 }, + [5] = { 54, 19.2, 33, 300 }, + [6] = { 54.1, 19.1, 33, 300 }, + }, + }, + [2007610] = { + ["coords"] = { + [1] = { 60.1, 10.4, 33, 300 }, + [2] = { 60.1, 10.1, 33, 300 }, + }, + }, + [2007611] = { + ["coords"] = {}, + }, + [2007612] = { + ["coords"] = {}, + }, + [2007613] = { + ["coords"] = {}, + }, + [2007614] = { + ["coords"] = {}, + }, + [2007615] = { + ["coords"] = {}, + }, + [2007616] = { + ["coords"] = {}, + }, + [2007617] = { + ["coords"] = {}, + }, + [2007618] = { + ["coords"] = {}, + }, + [2007619] = { + ["coords"] = {}, + }, + [2007620] = { + ["coords"] = {}, + }, + [2007621] = { + ["coords"] = {}, + }, + [2007622] = { + ["coords"] = {}, + }, + [2007623] = { + ["coords"] = {}, + }, + [2007624] = { + ["coords"] = {}, + }, + [2007625] = { + ["coords"] = {}, + }, + [2007626] = { + ["coords"] = {}, + }, + [2007627] = { + ["coords"] = {}, + }, + [2007628] = { + ["coords"] = {}, + }, + [2007629] = { + ["coords"] = {}, + }, + [2007630] = { + ["coords"] = {}, + }, + [2007631] = { + ["coords"] = {}, + }, + [2007632] = { + ["coords"] = {}, + }, + [2007633] = { + ["coords"] = {}, + }, + [2007634] = { + ["coords"] = {}, + }, + [2007635] = { + ["coords"] = {}, + }, + [2007636] = { + ["coords"] = {}, + }, + [2007637] = { + ["coords"] = {}, + }, + [2007638] = { + ["coords"] = {}, + }, + [2007639] = { + ["coords"] = {}, + }, + [2007640] = { + ["coords"] = {}, + }, + [2007641] = { + ["coords"] = {}, + }, + [2007642] = { + ["coords"] = {}, + }, + [2007643] = { + ["coords"] = {}, + }, + [2007644] = { + ["coords"] = {}, + }, + [2007645] = { + ["coords"] = {}, + }, + [2007646] = { + ["coords"] = {}, + }, + [2007647] = { + ["coords"] = {}, + }, + [2007648] = { + ["coords"] = {}, + }, + [2007649] = { + ["coords"] = {}, + }, + [2007650] = { + ["coords"] = {}, + }, + [2007651] = { + ["coords"] = {}, + }, + [2007652] = { + ["coords"] = {}, + }, + [2007653] = { + ["coords"] = {}, + }, + [2007654] = { + ["coords"] = {}, + }, + [2007655] = { + ["coords"] = {}, + }, + [2007656] = { + ["coords"] = {}, + }, + [2007657] = { + ["coords"] = {}, + }, + [2007658] = { + ["coords"] = {}, + }, + [2007659] = { + ["coords"] = {}, + }, + [2007660] = { + ["coords"] = {}, + }, + [2007661] = { + ["coords"] = {}, + }, + [2007662] = { + ["coords"] = {}, + }, + [2007663] = { + ["coords"] = {}, + }, + [2007664] = { + ["coords"] = {}, + }, + [2007665] = { + ["coords"] = {}, + }, + [2007666] = { + ["coords"] = {}, + }, + [2007667] = { + ["coords"] = {}, + }, + [2007668] = { + ["coords"] = {}, + }, + [2007669] = { + ["coords"] = {}, + }, + [2007670] = { + ["coords"] = {}, + }, + [2007671] = { + ["coords"] = {}, + }, + [2007672] = { + ["coords"] = {}, + }, + [2007673] = { + ["coords"] = {}, + }, + [2007674] = { + ["coords"] = {}, + }, + [2007675] = { + ["coords"] = {}, + }, + [2007676] = { + ["coords"] = {}, + }, + [2007677] = { + ["coords"] = {}, + }, + [2007678] = { + ["coords"] = {}, + }, + [2007679] = { + ["coords"] = {}, + }, + [2007680] = { + ["coords"] = {}, + }, + [2007681] = { + ["coords"] = {}, + }, + [2007682] = { + ["coords"] = {}, + }, + [2007683] = { + ["coords"] = {}, + }, + [2007684] = { + ["coords"] = {}, + }, + [2007685] = { + ["coords"] = {}, + }, + [2007686] = { + ["coords"] = {}, + }, + [2007687] = { + ["coords"] = {}, + }, + [2007688] = { + ["coords"] = {}, + }, + [2007689] = { + ["coords"] = {}, + }, + [2007690] = { + ["coords"] = {}, + }, + [2007691] = { + ["coords"] = {}, + }, + [2007692] = { + ["coords"] = {}, + }, + [2007693] = { + ["coords"] = {}, + }, + [2007694] = { + ["coords"] = {}, + }, + [2007695] = { + ["coords"] = {}, + }, + [2007696] = { + ["coords"] = {}, + }, + [2007697] = { + ["coords"] = {}, + }, + [2007698] = { + ["coords"] = {}, + }, + [2007699] = { + ["coords"] = {}, + }, + [2007700] = { + ["coords"] = {}, + }, + [2007701] = { + ["coords"] = {}, + }, + [2007702] = { + ["coords"] = {}, + }, + [2007703] = { + ["coords"] = {}, + }, + [2007704] = { + ["coords"] = {}, + }, + [2007705] = { + ["coords"] = {}, + }, + [2007706] = { + ["coords"] = {}, + }, + [2007707] = { + ["coords"] = {}, + }, + [2007708] = { + ["coords"] = {}, + }, + [2007709] = { + ["coords"] = {}, + }, + [2007710] = { + ["coords"] = {}, + }, + [2007711] = { + ["coords"] = {}, + }, + [2007712] = { + ["coords"] = {}, + }, + [2007713] = { + ["coords"] = {}, + }, + [2007714] = { + ["coords"] = {}, + }, + [2007715] = { + ["coords"] = {}, + }, + [2007716] = { + ["coords"] = {}, + }, + [2007717] = { + ["coords"] = {}, + }, + [2007718] = { + ["coords"] = {}, + }, + [2007719] = { + ["coords"] = {}, + }, + [2007720] = { + ["coords"] = {}, + }, + [2007721] = { + ["coords"] = {}, + }, + [2007722] = { + ["coords"] = {}, + }, + [2007723] = { + ["coords"] = {}, + }, + [2007724] = { + ["coords"] = {}, + }, + [2007725] = { + ["coords"] = {}, + }, + [2007726] = { + ["coords"] = {}, + }, + [2007727] = { + ["coords"] = {}, + }, + [2007728] = { + ["coords"] = {}, + }, + [2007729] = { + ["coords"] = {}, + }, + [2007730] = { + ["coords"] = {}, + }, + [2007731] = { + ["coords"] = {}, + }, + [2007732] = { + ["coords"] = {}, + }, + [2007733] = { + ["coords"] = {}, + }, + [2007734] = { + ["coords"] = {}, + }, + [2007735] = { + ["coords"] = {}, + }, + [2007736] = { + ["coords"] = {}, + }, + [2007737] = { + ["coords"] = {}, + }, + [2007738] = { + ["coords"] = {}, + }, + [2007739] = { + ["coords"] = {}, + }, + [2007740] = { + ["coords"] = {}, + }, + [2007741] = { + ["coords"] = {}, + }, + [2007742] = { + ["coords"] = {}, + }, + [2007743] = { + ["coords"] = {}, + }, + [2007744] = { + ["coords"] = {}, + }, + [2007745] = { + ["coords"] = {}, + }, + [2007746] = { + ["coords"] = {}, + }, + [2007747] = { + ["coords"] = {}, + }, + [2007748] = { + ["coords"] = {}, + }, + [2007749] = { + ["coords"] = {}, + }, + [2007750] = { + ["coords"] = {}, + }, + [2007751] = { + ["coords"] = {}, + }, + [2007752] = { + ["coords"] = {}, + }, + [2007753] = { + ["coords"] = {}, + }, + [2007754] = { + ["coords"] = {}, + }, + [2007755] = { + ["coords"] = {}, + }, + [2007756] = { + ["coords"] = {}, + }, + [2007757] = { + ["coords"] = {}, + }, + [2007758] = { + ["coords"] = {}, + }, + [2007759] = { + ["coords"] = {}, + }, + [2007760] = { + ["coords"] = {}, + }, + [2007761] = { + ["coords"] = {}, + }, + [2007762] = { + ["coords"] = {}, + }, + [2007763] = { + ["coords"] = {}, + }, + [2007764] = { + ["coords"] = {}, + }, + [2007765] = { + ["coords"] = {}, + }, + [2007766] = { + ["coords"] = {}, + }, + [2007767] = { + ["coords"] = {}, + }, + [2007768] = { + ["coords"] = {}, + }, + [2007769] = { + ["coords"] = {}, + }, + [2007770] = { + ["coords"] = {}, + }, + [2007771] = { + ["coords"] = {}, + }, + [2007772] = { + ["coords"] = {}, + }, + [2007773] = { + ["coords"] = {}, + }, + [2007774] = { + ["coords"] = {}, + }, + [2007775] = { + ["coords"] = {}, + }, + [2007776] = { + ["coords"] = {}, + }, + [2007777] = { + ["coords"] = {}, + }, + [2007778] = { + ["coords"] = {}, + }, + [2007779] = { + ["coords"] = {}, + }, + [2007780] = { + ["coords"] = {}, + }, + [2007781] = { + ["coords"] = {}, + }, + [2007782] = { + ["coords"] = {}, + }, + [2007783] = { + ["coords"] = {}, + }, + [2007784] = { + ["coords"] = {}, + }, + [2007785] = { + ["coords"] = {}, + }, + [2007786] = { + ["coords"] = {}, + }, + [2007787] = { + ["coords"] = {}, + }, + [2007788] = { + ["coords"] = {}, + }, + [2007789] = { + ["coords"] = {}, + }, + [2007790] = { + ["coords"] = {}, + }, + [2007791] = { + ["coords"] = {}, + }, + [2007792] = { + ["coords"] = {}, + }, + [2007793] = { + ["coords"] = {}, + }, + [2007794] = { + ["coords"] = {}, + }, + [2007795] = { + ["coords"] = {}, + }, + [2007796] = { + ["coords"] = {}, + }, + [2007797] = { + ["coords"] = {}, + }, + [2007798] = { + ["coords"] = {}, + }, + [2007799] = { + ["coords"] = {}, + }, + [2007800] = { + ["coords"] = {}, + }, + [2007801] = { + ["coords"] = {}, + }, + [2007802] = { + ["coords"] = {}, + }, + [2007803] = { + ["coords"] = {}, + }, + [2007804] = { + ["coords"] = {}, + }, + [2007805] = { + ["coords"] = {}, + }, + [2007806] = { + ["coords"] = {}, + }, + [2007807] = { + ["coords"] = {}, + }, + [2007808] = { + ["coords"] = {}, + }, + [2007809] = { + ["coords"] = {}, + }, + [2007810] = { + ["coords"] = {}, + }, + [2007811] = { + ["coords"] = {}, + }, + [2007812] = { + ["coords"] = {}, + }, + [2007813] = { + ["coords"] = {}, + }, + [2007814] = { + ["coords"] = {}, + }, + [2007815] = { + ["coords"] = {}, + }, + [2007816] = { + ["coords"] = {}, + }, + [2007817] = { + ["coords"] = {}, + }, + [2007818] = { + ["coords"] = {}, + }, + [2007819] = { + ["coords"] = {}, + }, + [2007820] = { + ["coords"] = {}, + }, + [2007821] = { + ["coords"] = {}, + }, + [2007822] = { + ["coords"] = {}, + }, + [2007823] = { + ["coords"] = {}, + }, + [2007824] = { + ["coords"] = {}, + }, + [2007825] = { + ["coords"] = {}, + }, + [2007826] = { + ["coords"] = {}, + }, + [2007827] = { + ["coords"] = {}, + }, + [2007828] = { + ["coords"] = {}, + }, + [2007829] = { + ["coords"] = {}, + }, + [2007830] = { + ["coords"] = {}, + }, + [2007831] = { + ["coords"] = {}, + }, + [2007832] = { + ["coords"] = {}, + }, + [2007833] = { + ["coords"] = {}, + }, + [2007834] = { + ["coords"] = {}, + }, + [2007835] = { + ["coords"] = {}, + }, + [2007836] = { + ["coords"] = {}, + }, + [2007837] = { + ["coords"] = {}, + }, + [2007838] = { + ["coords"] = {}, + }, + [2007839] = { + ["coords"] = {}, + }, + [2007840] = { + ["coords"] = { + [1] = { 44.7, 73.1, 357, 300 }, + }, + }, + [2007841] = { + ["coords"] = {}, + }, + [2007842] = { + ["coords"] = {}, + }, + [2007843] = { + ["coords"] = {}, + }, + [2007844] = { + ["coords"] = {}, + }, + [2007845] = { + ["coords"] = {}, + }, + [2007846] = { + ["coords"] = {}, + }, + [2007847] = { + ["coords"] = {}, + }, + [2007848] = { + ["coords"] = {}, + }, + [2007849] = { + ["coords"] = {}, + }, + [2007850] = { + ["coords"] = {}, + }, + [2007851] = { + ["coords"] = {}, + }, + [2007852] = { + ["coords"] = {}, + }, + [2007853] = { + ["coords"] = {}, + }, + [2007854] = { + ["coords"] = {}, + }, + [2007855] = { + ["coords"] = {}, + }, + [2007856] = { + ["coords"] = {}, + }, + [2007857] = { + ["coords"] = {}, + }, + [2007858] = { + ["coords"] = {}, + }, + [2007859] = { + ["coords"] = {}, + }, + [2007860] = { + ["coords"] = {}, + }, + [2007861] = { + ["coords"] = {}, + }, + [2007862] = { + ["coords"] = {}, + }, + [2007863] = { + ["coords"] = {}, + }, + [2007864] = { + ["coords"] = {}, + }, + [2007865] = { + ["coords"] = { + [1] = { 30.6, 69.6, 16, 300 }, + }, + }, + [2007866] = { + ["coords"] = {}, + }, + [2007867] = { + ["coords"] = {}, + }, + [2007868] = { + ["coords"] = { + [1] = { 30, 71.1, 16, 300 }, + [2] = { 29.2, 70.7, 16, 300 }, + }, + }, + [2007869] = { + ["coords"] = {}, + }, + [2007870] = { + ["coords"] = {}, + }, + [2007871] = { + ["coords"] = {}, + }, + [2007872] = { + ["coords"] = {}, + }, + [2007873] = { + ["coords"] = {}, + }, + [2007874] = { + ["coords"] = {}, + }, + [2007875] = { + ["coords"] = {}, + }, + [2007876] = { + ["coords"] = {}, + }, + [2007877] = { + ["coords"] = {}, + }, + [2007878] = { + ["coords"] = {}, + }, + [2007879] = { + ["coords"] = {}, + }, + [2007880] = { + ["coords"] = {}, + }, + [2007881] = { + ["coords"] = {}, + }, + [2007882] = { + ["coords"] = {}, + }, + [2007883] = { + ["coords"] = {}, + }, + [2007884] = { + ["coords"] = {}, + }, + [2007885] = { + ["coords"] = {}, + }, + [2007886] = { + ["coords"] = {}, + }, + [2007887] = { + ["coords"] = {}, + }, + [2007888] = { + ["coords"] = { + [1] = { 83.7, 56.1, 400, 25 }, + }, + }, + [2007889] = { + ["coords"] = {}, + }, + [2007890] = { + ["coords"] = {}, + }, + [2007891] = { + ["coords"] = {}, + }, + [2007892] = { + ["coords"] = {}, + }, + [2007893] = { + ["coords"] = {}, + }, + [2007894] = { + ["coords"] = {}, + }, + [2007895] = { + ["coords"] = { + [1] = { 82.7, 53.8, 400, 25 }, + }, + }, + [2007896] = { + ["coords"] = { + [1] = { 83.7, 54.2, 400, 25 }, + }, + }, + [2007897] = { + ["coords"] = { + [1] = { 37.5, 72.4, 14, 300 }, + [2] = { 64.8, 34.9, 17, 300 }, + [3] = { 82.4, 55.5, 400, 25 }, + }, + }, + [2007898] = { + ["coords"] = {}, + }, + [2007899] = { + ["coords"] = {}, + }, + [2007900] = { + ["coords"] = {}, + }, + [2007901] = { + ["coords"] = {}, + }, + [2007902] = { + ["coords"] = {}, + }, + [2007903] = { + ["coords"] = {}, + }, + [2007904] = { + ["coords"] = {}, + }, + [2007905] = { + ["coords"] = {}, + }, + [2007906] = { + ["coords"] = {}, + }, + [2007907] = { + ["coords"] = {}, + }, + [2007908] = { + ["coords"] = {}, + }, + [2007909] = { + ["coords"] = {}, + }, + [2007910] = { + ["coords"] = {}, + }, + [2007911] = { + ["coords"] = {}, + }, + [2007912] = { + ["coords"] = {}, + }, + [2007913] = { + ["coords"] = {}, + }, + [2007914] = { + ["coords"] = { + [1] = { 29.2, 69.6, 16, 300 }, + [2] = { 40.6, 10.4, 490, 300 }, + }, + }, + [2007915] = { + ["coords"] = {}, + }, + [2007916] = { + ["coords"] = {}, + }, + [2007917] = { + ["coords"] = {}, + }, + [2007918] = { + ["coords"] = {}, + }, + [2007919] = { + ["coords"] = {}, + }, + [2007920] = { + ["coords"] = {}, + }, + [2007921] = { + ["coords"] = { + [1] = { 40.7, 11.4, 490, 300 }, + }, + }, + [2007922] = { + ["coords"] = {}, + }, + [2007923] = { + ["coords"] = {}, + }, + [2007924] = { + ["coords"] = {}, + }, + [2007925] = { + ["coords"] = {}, + }, + [2007926] = { + ["coords"] = {}, + }, + [2007927] = { + ["coords"] = {}, + }, + [2007928] = { + ["coords"] = {}, + }, + [2007929] = { + ["coords"] = { + [1] = { 50.7, 60.6, 357, 300 }, + }, + }, + [2007930] = { + ["coords"] = {}, + }, + [2007931] = { + ["coords"] = {}, + }, + [2007932] = { + ["coords"] = {}, + }, + [2007933] = { + ["coords"] = {}, + }, + [2007934] = { + ["coords"] = {}, + }, + [2007935] = { + ["coords"] = {}, + }, + [2007936] = { + ["coords"] = {}, + }, + [2007937] = { + ["coords"] = {}, + }, + [2007938] = { + ["coords"] = {}, + }, + [2007939] = { + ["coords"] = {}, + }, + [2007940] = { + ["coords"] = {}, + }, + [2007941] = { + ["coords"] = {}, + }, + [2007942] = { + ["coords"] = {}, + }, + [2007943] = { + ["coords"] = {}, + }, + [2007944] = { + ["coords"] = {}, + }, + [2007945] = { + ["coords"] = {}, + }, + [2007946] = { + ["coords"] = {}, + }, + [2007947] = { + ["coords"] = {}, + }, + [2007948] = { + ["coords"] = {}, + }, + [2007949] = { + ["coords"] = {}, + }, + [2007950] = { + ["coords"] = {}, + }, + [2007951] = { + ["coords"] = {}, + }, + [2007952] = { + ["coords"] = {}, + }, + [2007953] = { + ["coords"] = {}, + }, + [2007954] = { + ["coords"] = {}, + }, + [2007955] = { + ["coords"] = {}, + }, + [2007956] = { + ["coords"] = {}, + }, + [2007957] = { + ["coords"] = {}, + }, + [2007958] = { + ["coords"] = {}, + }, + [2007959] = { + ["coords"] = {}, + }, + [2007960] = { + ["coords"] = {}, + }, + [2007961] = { + ["coords"] = {}, + }, + [2007962] = { + ["coords"] = {}, + }, + [2007963] = { + ["coords"] = {}, + }, + [2007964] = { + ["coords"] = {}, + }, + [2007965] = { + ["coords"] = {}, + }, + [2007966] = { + ["coords"] = {}, + }, + [2007967] = { + ["coords"] = {}, + }, + [2007968] = { + ["coords"] = {}, + }, + [2007969] = { + ["coords"] = {}, + }, + [2007970] = { + ["coords"] = {}, + }, + [2007971] = { + ["coords"] = {}, + }, + [2007972] = { + ["coords"] = {}, + }, + [2007973] = { + ["coords"] = {}, + }, + [2007974] = { + ["coords"] = {}, + }, + [2007975] = { + ["coords"] = {}, + }, + [2007976] = { + ["coords"] = {}, + }, + [2007977] = { + ["coords"] = {}, + }, + [2007978] = { + ["coords"] = {}, + }, + [2007979] = { + ["coords"] = {}, + }, + [2007980] = { + ["coords"] = {}, + }, + [2007981] = { + ["coords"] = {}, + }, + [2007982] = { + ["coords"] = {}, + }, + [2007983] = { + ["coords"] = {}, + }, + [2007984] = { + ["coords"] = {}, + }, + [2007985] = { + ["coords"] = { + [1] = { 42.8, 93.5, 17, 300 }, + [2] = { 29.1, 25.2, 400, 300 }, + }, + }, + [2007986] = { + ["coords"] = { + [1] = { 61.1, 24.8, 17, 300 }, + }, + }, + [2007987] = { + ["coords"] = { + [1] = { 43.7, 91.6, 17, 300 }, + [2] = { 31.2, 20.9, 400, 300 }, + }, + }, + [2007988] = { + ["coords"] = {}, + }, + [2007989] = { + ["coords"] = {}, + }, + [2007990] = { + ["coords"] = {}, + }, + [2007991] = { + ["coords"] = { + [1] = { 42.8, 93.2, 17, 300 }, + [2] = { 42.6, 93.1, 17, 300 }, + [3] = { 29.1, 24.4, 400, 300 }, + [4] = { 28.6, 24.1, 400, 300 }, + }, + }, + [2007992] = { + ["coords"] = { + [1] = { 36.4, 44, 17, 300 }, + [2] = { 36.9, 33.4, 17, 300 }, + [3] = { 37.7, 32.9, 17, 300 }, + [4] = { 60.6, 31.8, 215, 300 }, + [5] = { 61.6, 10.8, 215, 300 }, + [6] = { 63.2, 9.8, 215, 300 }, + }, + }, + [2007993] = { + ["coords"] = {}, + }, + [2007994] = { + ["coords"] = {}, + }, + [2007995] = { + ["coords"] = {}, + }, + [2007996] = { + ["coords"] = {}, + }, + [2007997] = { + ["coords"] = {}, + }, + [2007998] = { + ["coords"] = {}, + }, + [2007999] = { + ["coords"] = {}, + }, + [2008000] = { + ["coords"] = {}, + }, + [2008001] = { + ["coords"] = {}, + }, + [2008002] = { + ["coords"] = {}, + }, + [2008003] = { + ["coords"] = {}, + }, + [2008004] = { + ["coords"] = {}, + }, + [2008005] = { + ["coords"] = {}, + }, + [2008006] = { + ["coords"] = {}, + }, + [2008007] = { + ["coords"] = {}, + }, + [2008008] = { + ["coords"] = {}, + }, + [2008009] = { + ["coords"] = {}, + }, + [2008010] = { + ["coords"] = {}, + }, + [2008011] = { + ["coords"] = {}, + }, + [2008012] = { + ["coords"] = {}, + }, + [2008013] = { + ["coords"] = {}, + }, + [2008014] = { + ["coords"] = {}, + }, + [2008015] = { + ["coords"] = {}, + }, + [2008016] = { + ["coords"] = {}, + }, + [2008017] = { + ["coords"] = {}, + }, + [2008018] = { + ["coords"] = {}, + }, + [2008019] = { + ["coords"] = {}, + }, + [2008020] = { + ["coords"] = {}, + }, + [2008021] = { + ["coords"] = {}, + }, + [2008022] = { + ["coords"] = {}, + }, + [2008023] = { + ["coords"] = {}, + }, + [2008024] = { + ["coords"] = {}, + }, + [2008025] = { + ["coords"] = { + [1] = { 52.1, 51, 148, 300 }, + [2] = { 51.8, 50.1, 148, 300 }, + [3] = { 36.8, 26.8, 361, 300 }, + [4] = { 36.4, 25.7, 361, 300 }, + }, + }, + [2008026] = { + ["coords"] = {}, + }, + [2008027] = { + ["coords"] = {}, + }, + [2008028] = { + ["coords"] = {}, + }, + [2008029] = { + ["coords"] = { + [1] = { 41.2, 93.8, 17, 300 }, + [2] = { 25.4, 25.8, 400, 300 }, + }, + }, + [2008030] = { + ["coords"] = {}, + }, + [2008031] = { + ["coords"] = {}, + }, + [2008032] = { + ["coords"] = {}, + }, + [2008033] = { + ["coords"] = {}, + }, + [2008034] = { + ["coords"] = { + [1] = { 59.7, 84, 28, 300 }, + }, + }, + [2008035] = { + ["coords"] = {}, + }, + [2008036] = { + ["coords"] = {}, + }, + [2008037] = { + ["coords"] = {}, + }, + [2008038] = { + ["coords"] = {}, + }, + [2008039] = { + ["coords"] = {}, + }, + [2008040] = { + ["coords"] = {}, + }, + [2008041] = { + ["coords"] = {}, + }, + [2008042] = { + ["coords"] = {}, + }, + [2008043] = { + ["coords"] = {}, + }, + [2008044] = { + ["coords"] = {}, + }, + [2008045] = { + ["coords"] = {}, + }, + [2008046] = { + ["coords"] = { + [1] = { 43.7, 15.8, 357, 25 }, + }, + }, + [2008047] = { + ["coords"] = {}, + }, + [2008048] = { + ["coords"] = {}, + }, + [2008049] = { + ["coords"] = {}, + }, + [2008050] = { + ["coords"] = {}, + }, + [2008051] = { + ["coords"] = {}, + }, + [2008052] = { + ["coords"] = {}, + }, + [2008053] = { + ["coords"] = {}, + }, + [2008054] = { + ["coords"] = { + [1] = { 53.7, 0.7, 17, 300 }, + [2] = { 78.4, 80.8, 331, 300 }, + }, + }, + [2008055] = { + ["coords"] = {}, + }, + [2008056] = { + ["coords"] = {}, + }, + [2008057] = { + ["coords"] = {}, + }, + [2008058] = { + ["coords"] = {}, + }, + [2008059] = { + ["coords"] = {}, + }, + [2008060] = { + ["coords"] = {}, + }, + [2008061] = { + ["coords"] = {}, + }, + [2008062] = { + ["coords"] = {}, + }, + [2008063] = { + ["coords"] = {}, + }, + [2008064] = { + ["coords"] = {}, + }, + [2008065] = { + ["coords"] = {}, + }, + [2008066] = { + ["coords"] = {}, + }, + [2008067] = { + ["coords"] = {}, + }, + [2008068] = { + ["coords"] = {}, + }, + [2008069] = { + ["coords"] = {}, + }, + [2008070] = { + ["coords"] = {}, + }, + [2008071] = { + ["coords"] = {}, + }, + [2008072] = { + ["coords"] = {}, + }, + [2008073] = { + ["coords"] = { + [1] = { 41.7, 93.6, 17, 300 }, + [2] = { 26.6, 25.3, 400, 300 }, + }, + }, + [2008074] = { + ["coords"] = {}, + }, + [2008075] = { + ["coords"] = {}, + }, + [2008076] = { + ["coords"] = {}, + }, + [2008077] = { + ["coords"] = {}, + }, + [2008078] = { + ["coords"] = {}, + }, + [2008079] = { + ["coords"] = {}, + }, + [2008080] = { + ["coords"] = {}, + }, + [2008081] = { + ["coords"] = {}, + }, + [2008082] = { + ["coords"] = {}, + }, + [2008083] = { + ["coords"] = {}, + }, + [2008084] = { + ["coords"] = {}, + }, + [2008085] = { + ["coords"] = {}, + }, + [2008086] = { + ["coords"] = {}, + }, + [2008087] = { + ["coords"] = {}, + }, + [2008088] = { + ["coords"] = {}, + }, + [2008089] = { + ["coords"] = {}, + }, + [2008090] = { + ["coords"] = {}, + }, + [2008091] = { + ["coords"] = {}, + }, + [2008092] = { + ["coords"] = {}, + }, + [2008093] = { + ["coords"] = {}, + }, + [2008094] = { + ["coords"] = {}, + }, + [2008095] = { + ["coords"] = {}, + }, + [2008096] = { + ["coords"] = {}, + }, + [2008097] = { + ["coords"] = {}, + }, + [2008098] = { + ["coords"] = {}, + }, + [2008099] = { + ["coords"] = {}, + }, + [2008100] = { + ["coords"] = {}, + }, + [2008101] = { + ["coords"] = {}, + }, + [2008102] = { + ["coords"] = {}, + }, + [2008103] = { + ["coords"] = {}, + }, + [2008104] = { + ["coords"] = {}, + }, + [2008105] = { + ["coords"] = {}, + }, + [2008106] = { + ["coords"] = {}, + }, + [2008107] = { + ["coords"] = {}, + }, + [2008108] = { + ["coords"] = {}, + }, + [2008109] = { + ["coords"] = {}, + }, + [2008110] = { + ["coords"] = {}, + }, + [2008111] = { + ["coords"] = {}, + }, + [2008112] = { + ["coords"] = {}, + }, + [2008113] = { + ["coords"] = {}, + }, + [2008114] = { + ["coords"] = {}, + }, + [2008115] = { + ["coords"] = {}, + }, + [2008116] = { + ["coords"] = {}, + }, + [2008117] = { + ["coords"] = {}, + }, + [2008118] = { + ["coords"] = {}, + }, + [2008119] = { + ["coords"] = {}, + }, + [2008120] = { + ["coords"] = {}, + }, + [2008121] = { + ["coords"] = {}, + }, + [2008122] = { + ["coords"] = {}, + }, + [2008123] = { + ["coords"] = {}, + }, + [2008124] = { + ["coords"] = {}, + }, + [2008125] = { + ["coords"] = {}, + }, + [2008126] = { + ["coords"] = {}, + }, + [2008127] = { + ["coords"] = {}, + }, + [2008128] = { + ["coords"] = {}, + }, + [2008129] = { + ["coords"] = {}, + }, + [2008130] = { + ["coords"] = {}, + }, + [2008131] = { + ["coords"] = {}, + }, + [2008132] = { + ["coords"] = {}, + }, + [2008133] = { + ["coords"] = {}, + }, + [2008134] = { + ["coords"] = {}, + }, + [2008135] = { + ["coords"] = {}, + }, + [2008136] = { + ["coords"] = {}, + }, + [2008137] = { + ["coords"] = {}, + }, + [2008138] = { + ["coords"] = {}, + }, + [2008139] = { + ["coords"] = {}, + }, + [2008140] = { + ["coords"] = {}, + }, + [2008141] = { + ["coords"] = {}, + }, + [2008142] = { + ["coords"] = {}, + }, + [2008143] = { + ["coords"] = { + [1] = { 43.7, 17.3, 357, 25 }, + }, + }, + [2008144] = { + ["coords"] = {}, + }, + [2008145] = { + ["coords"] = {}, + }, + [2008146] = { + ["coords"] = {}, + }, + [2008147] = { + ["coords"] = {}, + }, + [2008148] = { + ["coords"] = {}, + }, + [2008149] = { + ["coords"] = {}, + }, + [2008150] = { + ["coords"] = {}, + }, + [2008151] = { + ["coords"] = {}, + }, + [2008152] = { + ["coords"] = {}, + }, + [2008153] = { + ["coords"] = {}, + }, + [2008154] = { + ["coords"] = {}, + }, + [2008155] = { + ["coords"] = {}, + }, + [2008156] = { + ["coords"] = {}, + }, + [2008157] = { + ["coords"] = {}, + }, + [2008158] = { + ["coords"] = {}, + }, + [2008159] = { + ["coords"] = {}, + }, + [2008160] = { + ["coords"] = {}, + }, + [2008161] = { + ["coords"] = {}, + }, + [2008162] = { + ["coords"] = {}, + }, + [2008163] = { + ["coords"] = {}, + }, + [2008164] = { + ["coords"] = {}, + }, + [2008165] = { + ["coords"] = {}, + }, + [2008166] = { + ["coords"] = {}, + }, + [2008167] = { + ["coords"] = {}, + }, + [2008168] = { + ["coords"] = {}, + }, + [2008169] = { + ["coords"] = {}, + }, + [2008170] = { + ["coords"] = {}, + }, + [2008171] = { + ["coords"] = {}, + }, + [2008172] = { + ["coords"] = {}, + }, + [2008173] = { + ["coords"] = {}, + }, + [2008174] = { + ["coords"] = {}, + }, + [2008175] = { + ["coords"] = {}, + }, + [2008176] = { + ["coords"] = {}, + }, + [2008177] = { + ["coords"] = {}, + }, + [2008178] = { + ["coords"] = {}, + }, + [2008179] = { + ["coords"] = {}, + }, + [2008180] = { + ["coords"] = {}, + }, + [2008181] = { + ["coords"] = {}, + }, + [2008182] = { + ["coords"] = {}, + }, + [2008183] = { + ["coords"] = {}, + }, + [2008184] = { + ["coords"] = {}, + }, + [2008185] = { + ["coords"] = {}, + }, + [2008186] = { + ["coords"] = {}, + }, + [2008187] = { + ["coords"] = {}, + }, + [2008188] = { + ["coords"] = {}, + }, + [2008189] = { + ["coords"] = {}, + }, + [2008190] = { + ["coords"] = {}, + }, + [2008191] = { + ["coords"] = {}, + }, + [2008192] = { + ["coords"] = {}, + }, + [2008193] = { + ["coords"] = {}, + }, + [2008194] = { + ["coords"] = {}, + }, + [2008195] = { + ["coords"] = {}, + }, + [2008196] = { + ["coords"] = {}, + }, + [2008197] = { + ["coords"] = {}, + }, + [2008198] = { + ["coords"] = {}, + }, + [2008199] = { + ["coords"] = {}, + }, + [2008200] = { + ["coords"] = {}, + }, + [2008201] = { + ["coords"] = {}, + }, + [2008202] = { + ["coords"] = {}, + }, + [2008203] = { + ["coords"] = {}, + }, + [2008204] = { + ["coords"] = {}, + }, + [2008205] = { + ["coords"] = {}, + }, + [2008206] = { + ["coords"] = {}, + }, + [2008207] = { + ["coords"] = {}, + }, + [2008208] = { + ["coords"] = {}, + }, + [2008209] = { + ["coords"] = {}, + }, + [2008210] = { + ["coords"] = {}, + }, + [2008211] = { + ["coords"] = { + [1] = { 51.2, 37.8, 16, 300 }, + }, + }, + [2008212] = { + ["coords"] = {}, + }, + [2008213] = { + ["coords"] = {}, + }, + [2008214] = { + ["coords"] = {}, + }, + [2008215] = { + ["coords"] = {}, + }, + [2008216] = { + ["coords"] = {}, + }, + [2008217] = { + ["coords"] = {}, + }, + [2008218] = { + ["coords"] = {}, + }, + [2008219] = { + ["coords"] = {}, + }, + [2008220] = { + ["coords"] = {}, + }, + [2008221] = { + ["coords"] = {}, + }, + [2008222] = { + ["coords"] = {}, + }, + [2008223] = { + ["coords"] = {}, + }, + [2008224] = { + ["coords"] = {}, + }, + [2008225] = { + ["coords"] = {}, + }, + [2008226] = { + ["coords"] = {}, + }, + [2008227] = { + ["coords"] = {}, + }, + [2008228] = { + ["coords"] = {}, + }, + [2008229] = { + ["coords"] = {}, + }, + [2008230] = { + ["coords"] = {}, + }, + [2008231] = { + ["coords"] = {}, + }, + [2008232] = { + ["coords"] = { + [1] = { 40.8, 63.2, 12, 300 }, + }, + }, + [2008233] = { + ["coords"] = {}, + }, + [2008234] = { + ["coords"] = {}, + }, + [2008235] = { + ["coords"] = {}, + }, + [2008236] = { + ["coords"] = {}, + }, + [2008237] = { + ["coords"] = {}, + }, + [2008238] = { + ["coords"] = {}, + }, + [2008239] = { + ["coords"] = {}, + }, + [2008240] = { + ["coords"] = {}, + }, + [2008241] = { + ["coords"] = {}, + }, + [2008242] = { + ["coords"] = {}, + }, + [2008243] = { + ["coords"] = {}, + }, + [2008244] = { + ["coords"] = {}, + }, + [2008245] = { + ["coords"] = {}, + }, + [2008246] = { + ["coords"] = {}, + }, + [2008247] = { + ["coords"] = {}, + }, + [2008248] = { + ["coords"] = {}, + }, + [2008249] = { + ["coords"] = {}, + }, + [2008250] = { + ["coords"] = {}, + }, + [2008251] = { + ["coords"] = {}, + }, + [2008252] = { + ["coords"] = {}, + }, + [2008253] = { + ["coords"] = {}, + }, + [2008254] = { + ["coords"] = {}, + }, + [2008255] = { + ["coords"] = {}, + }, + [2008256] = { + ["coords"] = {}, + }, + [2008257] = { + ["coords"] = {}, + }, + [2008258] = { + ["coords"] = {}, + }, + [2008259] = { + ["coords"] = {}, + }, + [2008260] = { + ["coords"] = {}, + }, + [2008261] = { + ["coords"] = {}, + }, + [2008262] = { + ["coords"] = {}, + }, + [2008263] = { + ["coords"] = {}, + }, + [2008264] = { + ["coords"] = {}, + }, + [2008265] = { + ["coords"] = {}, + }, + [2008266] = { + ["coords"] = {}, + }, + [2008267] = { + ["coords"] = {}, + }, + [2008268] = { + ["coords"] = {}, + }, + [2008269] = { + ["coords"] = {}, + }, + [2008270] = { + ["coords"] = { + [1] = { 37.5, 66.3, 33, 300 }, + }, + }, + [2008271] = { + ["coords"] = {}, + }, + [2008272] = { + ["coords"] = {}, + }, + [2008273] = { + ["coords"] = {}, + }, + [2008274] = { + ["coords"] = {}, + }, + [2008275] = { + ["coords"] = {}, + }, + [2008276] = { + ["coords"] = {}, + }, + [2008277] = { + ["coords"] = {}, + }, + [2008278] = { + ["coords"] = {}, + }, + [2008279] = { + ["coords"] = {}, + }, + [2008280] = { + ["coords"] = {}, + }, + [2008281] = { + ["coords"] = {}, + }, + [2008282] = { + ["coords"] = {}, + }, + [2008283] = { + ["coords"] = {}, + }, + [2008284] = { + ["coords"] = {}, + }, + [2008285] = { + ["coords"] = {}, + }, + [2008286] = { + ["coords"] = {}, + }, + [2008287] = { + ["coords"] = {}, + }, + [2008288] = { + ["coords"] = {}, + }, + [2008289] = { + ["coords"] = {}, + }, + [2008290] = { + ["coords"] = {}, + }, + [2008291] = { + ["coords"] = { + [1] = { 84.4, 73.5, 5208, 300 }, + [2] = { 61.9, 64.8, 5208, 300 }, + [3] = { 74.3, 64.2, 5208, 300 }, + [4] = { 73.1, 55.2, 5208, 300 }, + [5] = { 83.4, 54.3, 5208, 300 }, + [6] = { 48, 51.5, 5208, 300 }, + [7] = { 75, 42.8, 5208, 300 }, + [8] = { 81.6, 42.2, 5208, 300 }, + }, + }, + [2008292] = { + ["coords"] = {}, + }, + [2008293] = { + ["coords"] = { + [1] = { 59, 83.4, 3457, 300 }, + [2] = { 71.5, 40.8, 3457, 300 }, + [3] = { 51.5, 75.9, 3457, 300 }, + [4] = { 66.4, 35.5, 3457, 300 }, + [5] = { 59.1, 59.8, 3457, 300 }, + [6] = { 78.7, 50.4, 5208, 300 }, + }, + }, + [2008294] = { + ["coords"] = { + [1] = { 59.4, 63.9, 3457, 300 }, + [2] = { 71.9, 26.9, 3457, 300 }, + [3] = { 77.8, 86.7, 5208, 300 }, + }, + }, + [2008295] = { + ["coords"] = {}, + }, + [2008296] = { + ["coords"] = {}, + }, + [2008297] = { + ["coords"] = {}, + }, + [2008298] = { + ["coords"] = { + [1] = { 73.7, 84.9, 5208, 300 }, + [2] = { 56.7, 84.4, 5208, 300 }, + [3] = { 60.4, 83, 5208, 300 }, + [4] = { 62.4, 79.5, 5208, 300 }, + [5] = { 59.6, 77.2, 5208, 300 }, + [6] = { 62.3, 72.5, 5208, 300 }, + [7] = { 68.5, 71.6, 5208, 300 }, + [8] = { 72.6, 69.9, 5208, 300 }, + [9] = { 84.7, 65.3, 5208, 300 }, + [10] = { 83.1, 62.1, 5208, 300 }, + [11] = { 53.7, 56.8, 5208, 300 }, + [12] = { 86.3, 56.7, 5208, 300 }, + [13] = { 75.6, 55.5, 5208, 300 }, + [14] = { 77.6, 51.6, 5208, 300 }, + [15] = { 82.6, 49.6, 5208, 300 }, + [16] = { 71.5, 43, 5208, 300 }, + [17] = { 42.3, 36.5, 5208, 300 }, + [18] = { 53.5, 32.2, 5208, 300 }, + }, + }, + [2008299] = { + ["coords"] = {}, + }, + [2008300] = { + ["coords"] = {}, + }, + [2008301] = { + ["coords"] = {}, + }, + [2008302] = { + ["coords"] = {}, + }, + [2008303] = { + ["coords"] = {}, + }, + [2008304] = { + ["coords"] = {}, + }, + [2008305] = { + ["coords"] = {}, + }, + [2008306] = { + ["coords"] = {}, + }, + [2008307] = { + ["coords"] = {}, + }, + [2008308] = { + ["coords"] = {}, + }, + [2008309] = { + ["coords"] = {}, + }, + [2008310] = { + ["coords"] = {}, + }, + [2008311] = { + ["coords"] = {}, + }, + [2008312] = { + ["coords"] = {}, + }, + [2008313] = { + ["coords"] = {}, + }, + [2008314] = { + ["coords"] = {}, + }, + [2008315] = { + ["coords"] = {}, + }, + [2008316] = { + ["coords"] = {}, + }, + [2008317] = { + ["coords"] = {}, + }, + [2008318] = { + ["coords"] = {}, + }, + [2008319] = { + ["coords"] = {}, + }, + [2008320] = { + ["coords"] = {}, + }, + [2008321] = { + ["coords"] = {}, + }, + [2008322] = { + ["coords"] = {}, + }, + [2008323] = { + ["coords"] = {}, + }, + [2008324] = { + ["coords"] = {}, + }, + [2008325] = { + ["coords"] = {}, + }, + [2008326] = { + ["coords"] = {}, + }, + [2008327] = { + ["coords"] = {}, + }, + [2008328] = { + ["coords"] = {}, + }, + [2008329] = { + ["coords"] = {}, + }, + [2008330] = { + ["coords"] = {}, + }, + [2008331] = { + ["coords"] = {}, + }, + [2008332] = { + ["coords"] = {}, + }, + [2008333] = { + ["coords"] = {}, + }, + [2008334] = { + ["coords"] = {}, + }, + [2008335] = { + ["coords"] = {}, + }, + [2008336] = { + ["coords"] = {}, + }, + [2008337] = { + ["coords"] = {}, + }, + [2008338] = { + ["coords"] = {}, + }, + [2008339] = { + ["coords"] = {}, + }, + [2008340] = { + ["coords"] = {}, + }, + [2008341] = { + ["coords"] = {}, + }, + [2008342] = { + ["coords"] = {}, + }, + [2008343] = { + ["coords"] = {}, + }, + [2008344] = { + ["coords"] = {}, + }, + [2008345] = { + ["coords"] = {}, + }, + [2008346] = { + ["coords"] = {}, + }, + [2008347] = { + ["coords"] = {}, + }, + [2008348] = { + ["coords"] = {}, + }, + [2008349] = { + ["coords"] = {}, + }, + [2008350] = { + ["coords"] = {}, + }, + [2008351] = { + ["coords"] = {}, + }, + [2008352] = { + ["coords"] = {}, + }, + [2008353] = { + ["coords"] = {}, + }, + [2008354] = { + ["coords"] = {}, + }, + [2008355] = { + ["coords"] = {}, + }, + [2008356] = { + ["coords"] = {}, + }, + [2008357] = { + ["coords"] = {}, + }, + [2008358] = { + ["coords"] = {}, + }, + [2008359] = { + ["coords"] = {}, + }, + [2008360] = { + ["coords"] = {}, + }, + [2008361] = { + ["coords"] = {}, + }, + [2008362] = { + ["coords"] = {}, + }, + [2008363] = { + ["coords"] = {}, + }, + [2008364] = { + ["coords"] = {}, + }, + [2008365] = { + ["coords"] = {}, + }, + [2008366] = { + ["coords"] = {}, + }, + [2008367] = { + ["coords"] = {}, + }, + [2008368] = { + ["coords"] = {}, + }, + [2008369] = { + ["coords"] = {}, + }, + [2008370] = { + ["coords"] = {}, + }, + [2008371] = { + ["coords"] = {}, + }, + [2008372] = { + ["coords"] = {}, + }, + [2008373] = { + ["coords"] = {}, + }, + [2008374] = { + ["coords"] = {}, + }, + [2008375] = { + ["coords"] = {}, + }, + [2008376] = { + ["coords"] = {}, + }, + [2008377] = { + ["coords"] = {}, + }, + [2008378] = { + ["coords"] = {}, + }, + [2008379] = { + ["coords"] = {}, + }, + [2008380] = { + ["coords"] = {}, + }, + [2008381] = { + ["coords"] = {}, + }, + [2008382] = { + ["coords"] = {}, + }, + [2008383] = { + ["coords"] = {}, + }, + [2008384] = { + ["coords"] = {}, + }, + [2008385] = { + ["coords"] = {}, + }, + [2008386] = { + ["coords"] = {}, + }, + [2008387] = { + ["coords"] = {}, + }, + [2008388] = { + ["coords"] = {}, + }, + [2008389] = { + ["coords"] = {}, + }, + [2008390] = { + ["coords"] = {}, + }, + [2008391] = { + ["coords"] = {}, + }, + [2008392] = { + ["coords"] = {}, + }, + [2008393] = { + ["coords"] = {}, + }, + [2008394] = { + ["coords"] = {}, + }, + [2008395] = { + ["coords"] = {}, + }, + [2008396] = { + ["coords"] = {}, + }, + [2008397] = { + ["coords"] = {}, + }, + [2008398] = { + ["coords"] = {}, + }, + [2008399] = { + ["coords"] = {}, + }, + [2008400] = { + ["coords"] = {}, + }, + [2008401] = { + ["coords"] = {}, + }, + [2008402] = { + ["coords"] = {}, + }, + [2008403] = { + ["coords"] = {}, + }, + [2008404] = { + ["coords"] = {}, + }, + [2008405] = { + ["coords"] = {}, + }, + [2008406] = { + ["coords"] = {}, + }, + [2008407] = { + ["coords"] = {}, + }, + [2008408] = { + ["coords"] = {}, + }, + [2008409] = { + ["coords"] = {}, + }, + [2008410] = { + ["coords"] = {}, + }, + [2008411] = { + ["coords"] = {}, + }, + [2008412] = { + ["coords"] = {}, + }, + [2008413] = { + ["coords"] = {}, + }, + [2008414] = { + ["coords"] = {}, + }, + [2008415] = { + ["coords"] = {}, + }, + [2008416] = { + ["coords"] = {}, + }, + [2008417] = { + ["coords"] = {}, + }, + [2008418] = { + ["coords"] = {}, + }, + [2008419] = { + ["coords"] = {}, + }, + [2008420] = { + ["coords"] = {}, + }, + [2008421] = { + ["coords"] = {}, + }, + [2008422] = { + ["coords"] = {}, + }, + [2008423] = { + ["coords"] = {}, + }, + [2008424] = { + ["coords"] = {}, + }, + [2008425] = { + ["coords"] = {}, + }, + [2008426] = { + ["coords"] = {}, + }, + [2008427] = { + ["coords"] = {}, + }, + [2008428] = { + ["coords"] = {}, + }, + [2008429] = { + ["coords"] = {}, + }, + [2008430] = { + ["coords"] = {}, + }, + [2008431] = { + ["coords"] = {}, + }, + [2008432] = { + ["coords"] = {}, + }, + [2008433] = { + ["coords"] = {}, + }, + [2008434] = { + ["coords"] = {}, + }, + [2008435] = { + ["coords"] = {}, + }, + [2008436] = { + ["coords"] = {}, + }, + [2008437] = { + ["coords"] = {}, + }, + [2008438] = { + ["coords"] = {}, + }, + [2008439] = { + ["coords"] = {}, + }, + [2008440] = { + ["coords"] = {}, + }, + [2008441] = { + ["coords"] = {}, + }, + [2008442] = { + ["coords"] = {}, + }, + [2008443] = { + ["coords"] = {}, + }, + [2008444] = { + ["coords"] = {}, + }, + [2008445] = { + ["coords"] = {}, + }, + [2008446] = { + ["coords"] = {}, + }, + [2008447] = { + ["coords"] = {}, + }, + [2008448] = { + ["coords"] = {}, + }, + [2008449] = { + ["coords"] = {}, + }, + [2008450] = { + ["coords"] = {}, + }, + [2008451] = { + ["coords"] = {}, + }, + [2008452] = { + ["coords"] = {}, + }, + [2008453] = { + ["coords"] = {}, + }, + [2008454] = { + ["coords"] = {}, + }, + [2008455] = { + ["coords"] = {}, + }, + [2008456] = { + ["coords"] = {}, + }, + [2008457] = { + ["coords"] = {}, + }, + [2008458] = { + ["coords"] = {}, + }, + [2008459] = { + ["coords"] = {}, + }, + [2008460] = { + ["coords"] = {}, + }, + [2008461] = { + ["coords"] = {}, + }, + [2008462] = { + ["coords"] = {}, + }, + [2008463] = { + ["coords"] = {}, + }, + [2008464] = { + ["coords"] = {}, + }, + [2008465] = { + ["coords"] = {}, + }, + [2008466] = { + ["coords"] = {}, + }, + [2008467] = { + ["coords"] = {}, + }, + [2008468] = { + ["coords"] = {}, + }, + [2008469] = { + ["coords"] = {}, + }, + [2008470] = { + ["coords"] = {}, + }, + [2008471] = { + ["coords"] = {}, + }, + [2008472] = { + ["coords"] = {}, + }, + [2008473] = { + ["coords"] = {}, + }, + [2008474] = { + ["coords"] = {}, + }, + [2008475] = { + ["coords"] = {}, + }, + [2008476] = { + ["coords"] = {}, + }, + [2008477] = { + ["coords"] = {}, + }, + [2008478] = { + ["coords"] = {}, + }, + [2008479] = { + ["coords"] = {}, + }, + [2008480] = { + ["coords"] = {}, + }, + [2008481] = { + ["coords"] = {}, + }, + [2008482] = { + ["coords"] = {}, + }, + [2008483] = { + ["coords"] = {}, + }, + [2008484] = { + ["coords"] = {}, + }, + [2008485] = { + ["coords"] = {}, + }, + [2008486] = { + ["coords"] = {}, + }, + [2008487] = { + ["coords"] = {}, + }, + [2008488] = { + ["coords"] = {}, + }, + [2008489] = { + ["coords"] = {}, + }, + [2008490] = { + ["coords"] = {}, + }, + [2008491] = { + ["coords"] = {}, + }, + [2008492] = { + ["coords"] = {}, + }, + [2008493] = { + ["coords"] = {}, + }, + [2008494] = { + ["coords"] = {}, + }, + [2008495] = { + ["coords"] = {}, + }, + [2008496] = { + ["coords"] = {}, + }, + [2008497] = { + ["coords"] = {}, + }, + [2008498] = { + ["coords"] = {}, + }, + [2008499] = { + ["coords"] = {}, + }, + [2008500] = { + ["coords"] = {}, + }, + [2008501] = { + ["coords"] = {}, + }, + [2008502] = { + ["coords"] = {}, + }, + [2008503] = { + ["coords"] = {}, + }, + [2008504] = { + ["coords"] = {}, + }, + [2008505] = { + ["coords"] = {}, + }, + [2008506] = { + ["coords"] = {}, + }, + [2008507] = { + ["coords"] = {}, + }, + [2008508] = { + ["coords"] = { + [1] = { 82.7, 64.3, 38, 25 }, + [2] = { 82.2, 63.4, 38, 25 }, + [3] = { 67.6, 29.1, 1519, 300 }, + [4] = { 67.4, 28.7, 1519, 300 }, + [5] = { 68, 28.5, 1519, 300 }, + [6] = { 67.6, 28.4, 1519, 300 }, + [7] = { 52.8, 93, 5581, 300 }, + [8] = { 52.6, 92.8, 5581, 300 }, + [9] = { 53, 92.6, 5581, 300 }, + [10] = { 52.7, 92.6, 5581, 300 }, + [11] = { 40.9, 77.2, 5602, 25 }, + [12] = { 40.6, 76.7, 5602, 25 }, + }, + }, + [2008509] = { + ["coords"] = { + [1] = { 67.4, 28.8, 1519, 300 }, + [2] = { 67.8, 28.1, 1519, 300 }, + [3] = { 52.7, 92.8, 5581, 300 }, + [4] = { 52.9, 92.5, 5581, 300 }, + }, + }, + [2008510] = { + ["coords"] = {}, + }, + [2008511] = { + ["coords"] = { + [1] = { 84, 62.7, 38, 25 }, + [2] = { 83.8, 62.1, 38, 25 }, + [3] = { 41.5, 76.3, 5602, 25 }, + [4] = { 41.4, 76.1, 5602, 25 }, + }, + }, + [2008512] = { + ["coords"] = {}, + }, + [2008513] = { + ["coords"] = {}, + }, + [2008514] = { + ["coords"] = {}, + }, + [2008515] = { + ["coords"] = {}, + }, + [2008516] = { + ["coords"] = {}, + }, + [2008517] = { + ["coords"] = {}, + }, + [2008518] = { + ["coords"] = {}, + }, + [2008519] = { + ["coords"] = {}, + }, + [2008520] = { + ["coords"] = {}, + }, + [2008521] = { + ["coords"] = {}, + }, + [2008522] = { + ["coords"] = {}, + }, + [2008523] = { + ["coords"] = {}, + }, + [2008524] = { + ["coords"] = {}, + }, + [2008525] = { + ["coords"] = {}, + }, + [2008526] = { + ["coords"] = {}, + }, + [2008527] = { + ["coords"] = {}, + }, + [2008528] = { + ["coords"] = {}, + }, + [2008529] = { + ["coords"] = {}, + }, + [2008530] = { + ["coords"] = {}, + }, + [2008531] = { + ["coords"] = {}, + }, + [2008532] = { + ["coords"] = {}, + }, + [2008533] = { + ["coords"] = {}, + }, + [2008534] = { + ["coords"] = {}, + }, + [2008535] = { + ["coords"] = {}, + }, + [2008536] = { + ["coords"] = {}, + }, + [2008537] = { + ["coords"] = {}, + }, + [2008538] = { + ["coords"] = {}, + }, + [2008539] = { + ["coords"] = {}, + }, + [2008540] = { + ["coords"] = {}, + }, + [2008541] = { + ["coords"] = {}, + }, + [2008542] = { + ["coords"] = {}, + }, + [2008543] = { + ["coords"] = {}, + }, + [2008544] = { + ["coords"] = {}, + }, + [2008545] = { + ["coords"] = {}, + }, + [2008546] = { + ["coords"] = {}, + }, + [2008547] = { + ["coords"] = {}, + }, + [2008548] = { + ["coords"] = {}, + }, + [2008549] = { + ["coords"] = {}, + }, + [2008550] = { + ["coords"] = {}, + }, + [2008551] = { + ["coords"] = {}, + }, + [2008552] = { + ["coords"] = {}, + }, + [2008553] = { + ["coords"] = {}, + }, + [2008554] = { + ["coords"] = {}, + }, + [2008555] = { + ["coords"] = {}, + }, + [2008556] = { + ["coords"] = {}, + }, + [2008557] = { + ["coords"] = {}, + }, + [2008558] = { + ["coords"] = {}, + }, + [2008559] = { + ["coords"] = {}, + }, + [2008560] = { + ["coords"] = {}, + }, + [2008561] = { + ["coords"] = {}, + }, + [2008562] = { + ["coords"] = {}, + }, + [2008563] = { + ["coords"] = {}, + }, + [2008564] = { + ["coords"] = {}, + }, + [2008565] = { + ["coords"] = {}, + }, + [2008566] = { + ["coords"] = {}, + }, + [2008567] = { + ["coords"] = {}, + }, + [2008568] = { + ["coords"] = {}, + }, + [2008569] = { + ["coords"] = {}, + }, + [2008570] = { + ["coords"] = {}, + }, + [2008571] = { + ["coords"] = {}, + }, + [2008572] = { + ["coords"] = {}, + }, + [2008573] = { + ["coords"] = {}, + }, + [2008574] = { + ["coords"] = {}, + }, + [2008575] = { + ["coords"] = { + [1] = { 29.5, 69.6, 2040, 25 }, + [2] = { 51.8, 35.1, 5225, 25 }, + }, + }, + [2008576] = { + ["coords"] = { + [1] = { 59.6, 76.1, 38, 300 }, + [2] = { 57.6, 76.1, 38, 300 }, + [3] = { 58.2, 73.8, 38, 300 }, + [4] = { 31.1, 38, 440, 300 }, + [5] = { 78.3, 67.1, 490, 300 }, + [6] = { 36.7, 75.2, 1519, 300 }, + [7] = { 37.7, 74.8, 1519, 300 }, + [8] = { 42, 70.3, 2040, 25 }, + [9] = { 57.8, 35.5, 5225, 25 }, + [10] = { 29, 83.3, 5602, 300 }, + [11] = { 28, 83.2, 5602, 300 }, + [12] = { 28.3, 82.1, 5602, 300 }, + }, + }, + [2008577] = { + ["coords"] = { + [1] = { 41.5, 70.4, 2040, 25 }, + [2] = { 42.3, 69.5, 2040, 25 }, + [3] = { 57.5, 35.5, 5225, 25 }, + [4] = { 57.9, 35.1, 5225, 25 }, + }, + }, + [2008578] = { + ["coords"] = { + [1] = { 59.3, 75.9, 38, 300 }, + [2] = { 57.6, 75.7, 38, 300 }, + [3] = { 69.4, 56.5, 1497, 300 }, + [4] = { 70.5, 56.4, 1497, 300 }, + [5] = { 70.3, 55.9, 1497, 300 }, + [6] = { 28.9, 83.1, 5602, 300 }, + [7] = { 28.1, 83, 5602, 300 }, + }, + }, + [2008579] = { + ["coords"] = { + [1] = { 37, 75.3, 1519, 300 }, + [2] = { 37.5, 75, 1519, 300 }, + [3] = { 65.6, 45.9, 1519, 25 }, + [4] = { 41.5, 71.1, 2040, 25 }, + [5] = { 42.2, 70.7, 2040, 25 }, + [6] = { 40.3, 69.8, 2040, 25 }, + [7] = { 42.7, 69.7, 2040, 25 }, + [8] = { 40.3, 68.6, 2040, 25 }, + [9] = { 42.7, 68.6, 2040, 25 }, + [10] = { 40.7, 67.7, 2040, 25 }, + [11] = { 42.2, 67.6, 2040, 25 }, + [12] = { 41.5, 67.3, 2040, 25 }, + [13] = { 42.7, 64.7, 2040, 25 }, + [14] = { 42.7, 63.7, 2040, 25 }, + [15] = { 44.8, 63.7, 2040, 25 }, + [16] = { 43.1, 62.8, 2040, 25 }, + [17] = { 44.4, 62.8, 2040, 25 }, + [18] = { 43.7, 62.5, 2040, 25 }, + [19] = { 57.5, 35.8, 5225, 25 }, + [20] = { 57.9, 35.7, 5225, 25 }, + [21] = { 57, 35.2, 5225, 25 }, + [22] = { 58.1, 35.2, 5225, 25 }, + [23] = { 57, 34.7, 5225, 25 }, + [24] = { 58.1, 34.7, 5225, 25 }, + [25] = { 57.2, 34.2, 5225, 25 }, + [26] = { 57.9, 34.2, 5225, 25 }, + [27] = { 57.5, 34, 5225, 25 }, + [28] = { 58.1, 32.8, 5225, 25 }, + [29] = { 58.1, 32.3, 5225, 25 }, + [30] = { 59.1, 32.3, 5225, 25 }, + [31] = { 58.3, 31.9, 5225, 25 }, + [32] = { 58.9, 31.9, 5225, 25 }, + [33] = { 58.6, 31.8, 5225, 25 }, + }, + }, + [2008580] = { + ["coords"] = { + [1] = { 25.1, 78.6, 2040, 25 }, + [2] = { 24.4, 77.4, 2040, 300 }, + [3] = { 25.9, 77.4, 2040, 25 }, + [4] = { 24.5, 76.6, 2040, 300 }, + [5] = { 25.7, 76.6, 2040, 25 }, + [6] = { 25.1, 76.3, 2040, 300 }, + [7] = { 49.7, 39.4, 5225, 25 }, + [8] = { 49.4, 38.9, 5225, 300 }, + [9] = { 50.1, 38.9, 5225, 25 }, + [10] = { 49.5, 38.5, 5225, 300 }, + [11] = { 50, 38.4, 5225, 25 }, + [12] = { 49.7, 38.3, 5225, 300 }, + }, + }, + [2008581] = { + ["coords"] = {}, + }, + [2008582] = { + ["coords"] = {}, + }, + [2008583] = { + ["coords"] = {}, + }, + [2008584] = { + ["coords"] = { + [1] = { 81.9, 61.3, 38, 25 }, + [2] = { 24.7, 76.4, 2040, 25 }, + [3] = { 42.1, 70.3, 2040, 25 }, + [4] = { 49.5, 38.4, 5225, 25 }, + [5] = { 57.8, 35.5, 5225, 25 }, + [6] = { 40.5, 75.7, 5602, 25 }, + }, + }, + [2008585] = { + ["coords"] = { + [1] = { 81.9, 61.4, 38, 25 }, + [2] = { 27.6, 68.3, 2040, 25 }, + [3] = { 27.5, 68, 2040, 25 }, + [4] = { 27.4, 67.7, 2040, 25 }, + [5] = { 50.9, 34.5, 5225, 25 }, + [6] = { 50.8, 34.4, 5225, 25 }, + [7] = { 50.8, 34.2, 5225, 25 }, + [8] = { 40.5, 75.7, 5602, 25 }, + }, + }, + [2008586] = { + ["coords"] = { + [1] = { 82, 63.8, 38, 25 }, + [2] = { 37.2, 75.1, 1519, 300 }, + [3] = { 23.1, 74.2, 2040, 25 }, + [4] = { 26.7, 70.8, 2040, 25 }, + [5] = { 40.9, 67.9, 2040, 25 }, + [6] = { 48.7, 37.3, 5225, 25 }, + [7] = { 50.5, 35.7, 5225, 25 }, + [8] = { 57.2, 34.4, 5225, 25 }, + [9] = { 40.5, 76.9, 5602, 25 }, + }, + }, + [2008587] = { + ["coords"] = { + [1] = { 59, 75.2, 38, 300 }, + [2] = { 36.7, 75.3, 1519, 300 }, + [3] = { 67.9, 47.5, 1519, 25 }, + [4] = { 63.7, 47, 1519, 25 }, + [5] = { 27.6, 69.8, 2040, 25 }, + [6] = { 37.9, 69.3, 2040, 25 }, + [7] = { 26.3, 68.8, 2040, 25 }, + [8] = { 40.5, 68.7, 2040, 25 }, + [9] = { 42.1, 67.9, 2040, 25 }, + [10] = { 50.9, 35.3, 5225, 25 }, + [11] = { 55.8, 35, 5225, 25 }, + [12] = { 50.3, 34.8, 5225, 25 }, + [13] = { 57.1, 34.7, 5225, 25 }, + [14] = { 57.8, 34.3, 5225, 25 }, + [15] = { 28.8, 82.8, 5602, 300 }, + }, + }, + [2008588] = { + ["coords"] = { + [1] = { 61.6, 75.1, 38, 300 }, + [2] = { 37.7, 74.9, 1519, 300 }, + [3] = { 27.1, 70.5, 2040, 25 }, + [4] = { 41.5, 67.7, 2040, 25 }, + [5] = { 50.7, 35.6, 5225, 25 }, + [6] = { 57.5, 34.2, 5225, 25 }, + [7] = { 30.1, 82.7, 5602, 300 }, + }, + }, + [2008589] = { + ["coords"] = {}, + }, + [2008590] = { + ["coords"] = { + [1] = { 12.7, 64.8, 85, 300 }, + [2] = { 69.6, 48.6, 2040, 300 }, + [3] = { 70.9, 25.2, 5225, 300 }, + }, + }, + [2008591] = { + ["coords"] = { + [1] = { 57.8, 76.2, 38, 300 }, + [2] = { 31.2, 37.9, 440, 300 }, + [3] = { 78.4, 66.9, 490, 300 }, + [4] = { 27.4, 68.4, 2040, 300 }, + [5] = { 50.8, 34.6, 5225, 300 }, + [6] = { 28.2, 83.3, 5602, 300 }, + }, + }, + [2008592] = { + ["coords"] = { + [1] = { 59.1, 77, 38, 300 }, + [2] = { 61.6, 75.2, 38, 300 }, + [3] = { 67.5, 46.7, 1519, 25 }, + [4] = { 27.4, 69.4, 2040, 25 }, + [5] = { 27.4, 68.3, 2040, 300 }, + [6] = { 50.8, 35.1, 5225, 25 }, + [7] = { 50.8, 34.5, 5225, 300 }, + [8] = { 28.8, 83.7, 5602, 300 }, + [9] = { 30.1, 82.8, 5602, 300 }, + }, + }, + [2008593] = { + ["coords"] = { + [1] = { 61.7, 75.1, 38, 300 }, + [2] = { 27.4, 69.7, 2040, 25 }, + [3] = { 27.5, 68.3, 2040, 25 }, + [4] = { 50.8, 35.2, 5225, 25 }, + [5] = { 50.9, 34.5, 5225, 25 }, + [6] = { 30.1, 82.7, 5602, 300 }, + }, + }, + [2008594] = { + ["coords"] = {}, + }, + [2008595] = { + ["coords"] = { + [1] = { 27.2, 67.7, 2040, 25 }, + [2] = { 50.7, 34.3, 5225, 25 }, + }, + }, + [2008596] = { + ["coords"] = { + [1] = { 43.6, 17, 357, 25 }, + [2] = { 67.8, 46.8, 1519, 25 }, + [3] = { 64, 46.1, 1519, 25 }, + }, + }, + [2008597] = { + ["coords"] = { + [1] = { 43.6, 17, 357, 25 }, + [2] = { 67.3, 46.9, 1519, 25 }, + [3] = { 64.3, 46.2, 1519, 25 }, + [4] = { 41.4, 69.1, 2040, 25 }, + [5] = { 27.5, 68.2, 2040, 25 }, + [6] = { 57.5, 34.9, 5225, 25 }, + [7] = { 50.9, 34.5, 5225, 25 }, + }, + }, + [2008598] = { + ["coords"] = {}, + }, + [2008599] = { + ["coords"] = {}, + }, + [2008600] = { + ["coords"] = {}, + }, + [2008601] = { + ["coords"] = {}, + }, + [2008602] = { + ["coords"] = {}, + }, + [2008603] = { + ["coords"] = {}, + }, + [2008604] = { + ["coords"] = {}, + }, + [2008605] = { + ["coords"] = {}, + }, + [2008606] = { + ["coords"] = { + [1] = { 51.2, 62.1, 357, 300 }, + }, + }, + [2008607] = { + ["coords"] = {}, + }, + [2008608] = { + ["coords"] = {}, + }, + [2008609] = { + ["coords"] = {}, + }, + [2008610] = { + ["coords"] = {}, + }, + [2008611] = { + ["coords"] = {}, + }, + [2008612] = { + ["coords"] = {}, + }, + [2008613] = { + ["coords"] = {}, + }, + [2008614] = { + ["coords"] = {}, + }, + [2008615] = { + ["coords"] = {}, + }, + [2008616] = { + ["coords"] = { + [1] = { 64.5, 44.4, 1519, 25 }, + }, + }, + [2008617] = { + ["coords"] = { + [1] = { 59, 77.1, 38, 300 }, + [2] = { 59, 77, 38, 300 }, + [3] = { 82.9, 62.7, 38, 25 }, + [4] = { 53.5, 16.2, 139, 25 }, + [5] = { 31.1, 37.9, 440, 300 }, + [6] = { 78.3, 67, 490, 300 }, + [7] = { 36.4, 76.5, 1519, 300 }, + [8] = { 36.4, 76.4, 1519, 300 }, + [9] = { 36.4, 76.3, 1519, 300 }, + [10] = { 61.8, 71.5, 1519, 300 }, + [11] = { 61.6, 71, 1519, 300 }, + [12] = { 66.1, 47.4, 1519, 25 }, + [13] = { 66.6, 47.4, 1519, 25 }, + [14] = { 66.7, 46.1, 1519, 25 }, + [15] = { 65.8, 46.1, 1519, 25 }, + [16] = { 64.8, 44.8, 1519, 25 }, + [17] = { 64.2, 44.8, 1519, 25 }, + [18] = { 39.7, 66.6, 2040, 25 }, + [19] = { 39.7, 66.3, 2040, 25 }, + [20] = { 34.8, 62, 2040, 25 }, + [21] = { 34.7, 61.9, 2040, 25 }, + [22] = { 34.7, 61.4, 2040, 25 }, + [23] = { 56.7, 33.7, 5225, 25 }, + [24] = { 56.7, 33.6, 5225, 25 }, + [25] = { 54.3, 31.6, 5225, 25 }, + [26] = { 54.3, 31.5, 5225, 25 }, + [27] = { 54.3, 31.3, 5225, 25 }, + [28] = { 28.8, 83.7, 5602, 300 }, + [29] = { 41, 76.3, 5602, 25 }, + [30] = { 53.5, 56.7, 5602, 300 }, + [31] = { 53.3, 56.5, 5602, 300 }, + }, + }, + [2008618] = { + ["coords"] = { + [1] = { 73, 45.8, 2040, 300 }, + [2] = { 72.5, 23.9, 5225, 300 }, + }, + }, + [2008619] = { + ["coords"] = {}, + }, + [2008620] = { + ["coords"] = {}, + }, + [2008621] = { + ["coords"] = {}, + }, + [2008622] = { + ["coords"] = {}, + }, + [2008623] = { + ["coords"] = { + [1] = { 81, 60.5, 28, 300 }, + [2] = { 27.7, 77.1, 33, 300 }, + [3] = { 59.8, 77.1, 38, 300 }, + [4] = { 22.8, 84, 139, 300 }, + [5] = { 51.2, 62.3, 357, 300 }, + [6] = { 43.6, 17.1, 357, 25 }, + [7] = { 60.5, 23.6, 361, 300 }, + [8] = { 82.5, 53.9, 400, 25 }, + [9] = { 82.5, 53.6, 400, 25 }, + [10] = { 82.7, 53.5, 400, 25 }, + [11] = { 24.7, 71.9, 440, 300 }, + [12] = { 71.6, 47.5, 1497, 300 }, + [13] = { 37.4, 75.1, 1519, 300 }, + [14] = { 60.9, 64.4, 1519, 300 }, + [15] = { 67.8, 47.4, 1519, 25 }, + [16] = { 63.6, 46.7, 1519, 25 }, + [17] = { 67.2, 46.4, 1519, 25 }, + [18] = { 42, 61.5, 1637, 300 }, + [19] = { 40.7, 68.8, 2040, 25 }, + [20] = { 38.7, 64.1, 2040, 25 }, + [21] = { 57.2, 34.8, 5225, 25 }, + [22] = { 56.2, 32.6, 5225, 25 }, + [23] = { 29.2, 83.8, 5602, 300 }, + }, + }, + [2008624] = { + ["coords"] = { + [1] = { 75.5, 49.6, 17, 300 }, + [2] = { 80.7, 63.3, 28, 300 }, + [3] = { 59.1, 75.1, 38, 300 }, + [4] = { 12.2, 53.5, 85, 300 }, + [5] = { 22.5, 87.1, 139, 300 }, + [6] = { 94.9, 26.6, 331, 300 }, + [7] = { 96, 22.5, 331, 300 }, + [8] = { 51.2, 62.4, 357, 300 }, + [9] = { 60.5, 23.6, 361, 300 }, + [10] = { 82.5, 53.7, 400, 25 }, + [11] = { 61.5, 44.7, 409, 300 }, + [12] = { 40.8, 11.1, 490, 300 }, + [13] = { 61.2, 36.9, 618, 300 }, + [14] = { 71.6, 47.7, 1497, 300 }, + [15] = { 71.3, 46.6, 1497, 300 }, + [16] = { 37, 75.3, 1519, 300 }, + [17] = { 61, 64.3, 1519, 300 }, + [18] = { 41.9, 70.5, 2040, 25 }, + [19] = { 42.3, 69.8, 2040, 25 }, + [20] = { 41.1, 68.4, 2040, 25 }, + [21] = { 57.7, 35.6, 5225, 25 }, + [22] = { 57.9, 35.2, 5225, 25 }, + [23] = { 57.3, 34.6, 5225, 25 }, + [24] = { 28.8, 82.7, 5602, 300 }, + }, + }, + [2008625] = { + ["coords"] = { + [1] = { 82.5, 53.6, 400, 25 }, + [2] = { 71.6, 47.5, 1497, 300 }, + [3] = { 42, 61.4, 1637, 300 }, + [4] = { 41, 68.1, 2040, 25 }, + [5] = { 57.3, 34.4, 5225, 25 }, + }, + }, + [2008626] = { + ["coords"] = { + [1] = { 82.5, 53.7, 400, 25 }, + [2] = { 61.2, 44.6, 409, 300 }, + [3] = { 71.6, 47.5, 1497, 300 }, + [4] = { 71.3, 46.5, 1497, 300 }, + [5] = { 63.9, 46.3, 1519, 25 }, + [6] = { 26.4, 70.6, 2040, 25 }, + [7] = { 41.2, 69.3, 2040, 25 }, + [8] = { 40.8, 69, 2040, 25 }, + [9] = { 50.3, 35.6, 5225, 25 }, + [10] = { 57.4, 35, 5225, 25 }, + [11] = { 57.2, 34.8, 5225, 25 }, + }, + }, + [2008627] = { + ["coords"] = { + [1] = { 82, 62.2, 38, 25 }, + [2] = { 40.5, 76.1, 5602, 25 }, + }, + }, + [2008628] = { + ["coords"] = {}, + }, + [2008629] = { + ["coords"] = { + [1] = { 59, 75, 38, 300 }, + [2] = { 53.2, 54.5, 876, 300 }, + [3] = { 53.4, 54.5, 876, 300 }, + [4] = { 53.5, 49.9, 876, 300 }, + [5] = { 53.5, 49.8, 876, 300 }, + [6] = { 37.3, 75.1, 1519, 300 }, + [7] = { 64.3, 46.2, 1519, 25 }, + [8] = { 26.5, 70.6, 2040, 25 }, + [9] = { 41.4, 69.3, 2040, 25 }, + [10] = { 41.5, 69.1, 2040, 25 }, + [11] = { 50.4, 35.6, 5225, 25 }, + [12] = { 57.5, 35, 5225, 25 }, + [13] = { 57.5, 34.9, 5225, 25 }, + [14] = { 28.8, 82.7, 5602, 300 }, + }, + }, + [2008630] = { + ["coords"] = { + [1] = { 80.7, 63.4, 28, 300 }, + [2] = { 22.4, 87.2, 139, 300 }, + [3] = { 41.9, 70.4, 2040, 25 }, + [4] = { 41.8, 69.1, 2040, 25 }, + [5] = { 57.7, 35.5, 5225, 25 }, + [6] = { 57.7, 34.9, 5225, 25 }, + }, + }, + [2008631] = { + ["coords"] = { + [1] = { 59.1, 75.1, 38, 300 }, + [2] = { 43.4, 17.1, 357, 25 }, + [3] = { 37.4, 75.1, 1519, 300 }, + [4] = { 37.5, 74.1, 1519, 300 }, + [5] = { 37.4, 70, 2040, 25 }, + [6] = { 55.6, 35.3, 5225, 25 }, + [7] = { 28.8, 82.7, 5602, 300 }, + }, + }, + [2008632] = { + ["coords"] = { + [1] = { 58.3, 73.9, 38, 300 }, + [2] = { 36.6, 75.3, 1519, 300 }, + [3] = { 37.9, 74.7, 1519, 300 }, + [4] = { 36.1, 72.9, 1519, 300 }, + [5] = { 37.4, 72.4, 1519, 300 }, + [6] = { 41.1, 67.4, 1519, 300 }, + [7] = { 41.2, 67.1, 1519, 300 }, + [8] = { 23.1, 74.4, 2040, 25 }, + [9] = { 23.7, 73.6, 2040, 25 }, + [10] = { 21.9, 73.5, 2040, 25 }, + [11] = { 21.9, 72.8, 2040, 25 }, + [12] = { 37.4, 69.3, 2040, 25 }, + [13] = { 41.6, 69, 2040, 25 }, + [14] = { 41.6, 68.7, 2040, 25 }, + [15] = { 48.8, 37.4, 5225, 25 }, + [16] = { 49, 37, 5225, 25 }, + [17] = { 48.2, 37, 5225, 25 }, + [18] = { 48.2, 36.7, 5225, 25 }, + [19] = { 55.6, 35, 5225, 25 }, + [20] = { 57.6, 34.9, 5225, 25 }, + [21] = { 57.6, 34.7, 5225, 25 }, + [22] = { 28.4, 82.1, 5602, 300 }, + }, + }, + [2008633] = { + ["coords"] = { + [1] = { 37.6, 74.3, 1519, 300 }, + [2] = { 41, 67.5, 1519, 300 }, + [3] = { 64.4, 46.8, 1519, 25 }, + [4] = { 67.6, 46.6, 1519, 25 }, + [5] = { 22, 72.3, 2040, 25 }, + [6] = { 37.3, 69.9, 2040, 25 }, + [7] = { 41.5, 69.6, 2040, 25 }, + [8] = { 41.3, 69.5, 2040, 25 }, + [9] = { 41.7, 69.3, 2040, 25 }, + [10] = { 41.2, 69.1, 2040, 25 }, + [11] = { 41.6, 68.9, 2040, 25 }, + [12] = { 41.4, 68.7, 2040, 25 }, + [13] = { 39, 64.3, 2040, 25 }, + [14] = { 38.5, 64.2, 2040, 25 }, + [15] = { 38.8, 64.1, 2040, 25 }, + [16] = { 48.2, 36.4, 5225, 25 }, + [17] = { 55.5, 35.3, 5225, 25 }, + [18] = { 57.6, 35.2, 5225, 25 }, + [19] = { 57.4, 35.1, 5225, 25 }, + [20] = { 57.6, 35, 5225, 25 }, + [21] = { 57.4, 34.9, 5225, 25 }, + [22] = { 57.6, 34.8, 5225, 25 }, + [23] = { 57.5, 34.7, 5225, 25 }, + [24] = { 56.3, 32.6, 5225, 25 }, + [25] = { 56.1, 32.6, 5225, 25 }, + [26] = { 56.2, 32.5, 5225, 25 }, + }, + }, + [2008634] = { + ["coords"] = {}, + }, + [2008635] = { + ["coords"] = { + [1] = { 40.6, 69.6, 2040, 25 }, + [2] = { 40.6, 68.8, 2040, 25 }, + [3] = { 41.2, 68.5, 2040, 25 }, + [4] = { 57.1, 35.2, 5225, 25 }, + [5] = { 57.1, 34.7, 5225, 25 }, + [6] = { 57.4, 34.6, 5225, 25 }, + }, + }, + [2008636] = { + ["coords"] = { + [1] = { 41, 69.4, 2040, 25 }, + [2] = { 27.5, 69.2, 2040, 25 }, + [3] = { 41, 68.9, 2040, 25 }, + [4] = { 40.9, 68, 2040, 25 }, + [5] = { 57.3, 35.1, 5225, 25 }, + [6] = { 50.9, 34.9, 5225, 25 }, + [7] = { 57.3, 34.8, 5225, 25 }, + [8] = { 57.3, 34.4, 5225, 25 }, + }, + }, + [2008637] = { + ["coords"] = { + [1] = { 69.1, 45.8, 2040, 300 }, + [2] = { 70.7, 23.9, 5225, 300 }, + }, + }, + [2008638] = { + ["coords"] = {}, + }, + [2008639] = { + ["coords"] = {}, + }, + [2008640] = { + ["coords"] = { + [1] = { 58.9, 77.2, 38, 300 }, + [2] = { 83.3, 65.3, 38, 25 }, + [3] = { 36.3, 75.9, 1519, 300 }, + [4] = { 28.7, 83.8, 5602, 300 }, + [5] = { 41.2, 77.7, 5602, 25 }, + }, + }, + [2008641] = { + ["coords"] = { + [1] = { 83, 62.6, 38, 25 }, + [2] = { 37.3, 68.6, 1519, 300 }, + [3] = { 24.2, 18.4, 1537, 300 }, + [4] = { 41, 76.3, 5602, 25 }, + }, + }, + [2008642] = { + ["coords"] = { + [1] = { 94.9, 26.6, 331, 300 }, + [2] = { 43.6, 17.1, 357, 25 }, + [3] = { 60.7, 23.9, 361, 300 }, + [4] = { 74.4, 49, 1497, 300 }, + [5] = { 67.8, 47.4, 1519, 25 }, + [6] = { 67.7, 47.3, 1519, 25 }, + [7] = { 67.8, 47.3, 1519, 25 }, + [8] = { 67.8, 47.2, 1519, 25 }, + [9] = { 63.9, 46.3, 1519, 25 }, + [10] = { 40.7, 69.6, 2040, 25 }, + [11] = { 40.8, 69.5, 2040, 25 }, + [12] = { 41.1, 69.2, 2040, 25 }, + [13] = { 40.7, 68.9, 2040, 25 }, + [14] = { 40.8, 68.8, 2040, 25 }, + [15] = { 57.2, 35.1, 5225, 25 }, + [16] = { 57.3, 35, 5225, 25 }, + [17] = { 57.2, 34.8, 5225, 25 }, + }, + }, + [2008643] = { + ["coords"] = { + [1] = { 43.6, 17.1, 357, 25 }, + [2] = { 60.6, 23.8, 361, 300 }, + [3] = { 60.7, 23.8, 361, 300 }, + [4] = { 31.1, 37.9, 440, 300 }, + [5] = { 78.3, 67, 490, 300 }, + [6] = { 72.4, 53.4, 1497, 300 }, + [7] = { 74.3, 48.9, 1497, 300 }, + [8] = { 37, 75.3, 1519, 300 }, + [9] = { 37.1, 75.1, 1519, 300 }, + [10] = { 63.9, 46.3, 1519, 25 }, + [11] = { 42.3, 69.8, 2040, 25 }, + [12] = { 41.9, 69.1, 2040, 25 }, + [13] = { 41.1, 68.3, 2040, 25 }, + [14] = { 41, 68.2, 2040, 25 }, + [15] = { 38.6, 64.1, 2040, 25 }, + [16] = { 84.5, 77.8, 5208, 300 }, + [17] = { 57.9, 35.2, 5225, 25 }, + [18] = { 57.7, 34.9, 5225, 25 }, + [19] = { 57.4, 34.5, 5225, 25 }, + [20] = { 57.3, 34.5, 5225, 25 }, + [21] = { 56.2, 32.5, 5225, 25 }, + }, + }, + [2008644] = { + ["coords"] = { + [1] = { 41.9, 74.1, 15, 25 }, + [2] = { 59.8, 77.2, 38, 300 }, + [3] = { 58.2, 74.2, 38, 300 }, + [4] = { 28, 57.9, 141, 300 }, + [5] = { 43.3, 17.1, 357, 25 }, + [6] = { 60.7, 23.9, 361, 300 }, + [7] = { 60.6, 23.8, 361, 300 }, + [8] = { 67.2, 46.7, 1519, 25 }, + [9] = { 25.8, 16.4, 1537, 300 }, + [10] = { 51.9, 52.9, 1657, 300 }, + [11] = { 40.9, 69.6, 2040, 25 }, + [12] = { 40.7, 69.5, 2040, 25 }, + [13] = { 41.1, 69.3, 2040, 25 }, + [14] = { 62.9, 84.4, 5121, 300 }, + [15] = { 53.8, 35.6, 5130, 300 }, + [16] = { 84.5, 77.8, 5208, 300 }, + [17] = { 57.2, 35.1, 5225, 25 }, + [18] = { 57.3, 35, 5225, 25 }, + [19] = { 29.2, 83.8, 5602, 300 }, + [20] = { 28.4, 82.3, 5602, 300 }, + }, + }, + [2008645] = { + ["coords"] = {}, + }, + [2008646] = { + ["coords"] = {}, + }, + [2008647] = { + ["coords"] = {}, + }, + [2008648] = { + ["coords"] = { + [1] = { 32.8, 17.3, 28, 300 }, + [2] = { 89.1, 32, 85, 300 }, + [3] = { 36.2, 72.2, 1519, 300 }, + [4] = { 37, 71.9, 1519, 300 }, + }, + }, + [2008649] = { + ["coords"] = { + [1] = { 41.5, 71, 2040, 25 }, + [2] = { 40.8, 70.6, 2040, 25 }, + [3] = { 42.2, 70.6, 2040, 25 }, + [4] = { 40.3, 69.7, 2040, 25 }, + [5] = { 42.6, 69.7, 2040, 25 }, + [6] = { 40.3, 68.6, 2040, 25 }, + [7] = { 40.8, 67.7, 2040, 25 }, + [8] = { 42.2, 67.7, 2040, 25 }, + [9] = { 41.5, 67.4, 2040, 25 }, + [10] = { 57.5, 35.8, 5225, 25 }, + [11] = { 57.2, 35.6, 5225, 25 }, + [12] = { 57.9, 35.6, 5225, 25 }, + [13] = { 57, 35.2, 5225, 25 }, + [14] = { 58.1, 35.2, 5225, 25 }, + [15] = { 57, 34.7, 5225, 25 }, + [16] = { 57.2, 34.3, 5225, 25 }, + [17] = { 57.9, 34.3, 5225, 25 }, + [18] = { 57.5, 34.1, 5225, 25 }, + }, + }, + [2008650] = { + ["coords"] = { + [1] = { 36.2, 72.2, 1519, 300 }, + [2] = { 37, 71.9, 1519, 300 }, + [3] = { 41.1, 67.2, 1519, 300 }, + [4] = { 41.5, 66.3, 1519, 300 }, + [5] = { 67.6, 47.1, 1519, 25 }, + [6] = { 40.7, 70.7, 2040, 25 }, + [7] = { 42.6, 68.6, 2040, 25 }, + [8] = { 57.2, 35.7, 5225, 25 }, + [9] = { 58.1, 34.7, 5225, 25 }, + }, + }, + [2008651] = { + ["coords"] = {}, + }, + [2008652] = { + ["coords"] = {}, + }, + [2008653] = { + ["coords"] = {}, + }, + [2008654] = { + ["coords"] = {}, + }, + [2008655] = { + ["coords"] = {}, + }, + [2008656] = { + ["coords"] = {}, + }, + [2008657] = { + ["coords"] = { + [1] = { 51, 48.5, 8, 300 }, + [2] = { 33.7, 51.8, 14, 300 }, + [3] = { 45, 14.9, 14, 300 }, + [4] = { 62.8, 24.1, 17, 300 }, + [5] = { 61.5, 23.7, 17, 300 }, + [6] = { 62, 19.7, 17, 300 }, + [7] = { 54.2, 0.9, 17, 300 }, + [8] = { 44, 98.3, 28, 300 }, + [9] = { 80.6, 51, 36, 300 }, + [10] = { 83.3, 65.2, 38, 25 }, + [11] = { 83.2, 65.1, 38, 25 }, + [12] = { 4.6, 62.1, 85, 300 }, + [13] = { 67.6, 83.1, 130, 300 }, + [14] = { 14.2, 49.7, 267, 300 }, + [15] = { 79.2, 81.2, 331, 300 }, + [16] = { 74, 60.6, 331, 300 }, + [17] = { 73.9, 60.4, 331, 300 }, + [18] = { 73.2, 56.6, 331, 300 }, + [19] = { 37, 51.4, 406, 300 }, + [20] = { 49.5, 30.3, 618, 300 }, + [21] = { 21.6, 42, 1519, 300 }, + [22] = { 72.1, 12.3, 5179, 300 }, + [23] = { 28.1, 99.9, 5581, 300 }, + [24] = { 41.2, 77.6, 5602, 25 }, + }, + }, + [2008658] = { + ["coords"] = { + [1] = { 51, 48.6, 8, 300 }, + [2] = { 51, 48.5, 8, 300 }, + [3] = { 33.7, 49, 10, 300 }, + [4] = { 45.1, 14.7, 14, 300 }, + [5] = { 44.7, 14.4, 14, 300 }, + [6] = { 29.9, 71, 16, 300 }, + [7] = { 25.6, 66.3, 16, 300 }, + [8] = { 25.6, 66.2, 16, 300 }, + [9] = { 61.1, 24.7, 17, 300 }, + [10] = { 62, 19.7, 17, 300 }, + [11] = { 44, 98.3, 28, 300 }, + [12] = { 80.7, 50.9, 36, 300 }, + [13] = { 60, 77.2, 38, 300 }, + [14] = { 83.3, 65.3, 38, 25 }, + [15] = { 83.3, 65.2, 38, 25 }, + [16] = { 35, 10.4, 45, 300 }, + [17] = { 14.3, 72.1, 47, 300 }, + [18] = { 23.7, 58.5, 85, 300 }, + [19] = { 17.2, 49, 85, 300 }, + [20] = { 67.8, 83.1, 130, 300 }, + [21] = { 14.5, 49.7, 267, 300 }, + [22] = { 73, 56.8, 331, 300 }, + [23] = { 83, 55, 400, 25 }, + [24] = { 49.5, 30.3, 618, 300 }, + [25] = { 72.3, 12.3, 5179, 300 }, + [26] = { 29.3, 83.8, 5602, 300 }, + [27] = { 41.2, 77.7, 5602, 25 }, + }, + }, + [2008659] = { + ["coords"] = {}, + }, + [2008660] = { + ["coords"] = {}, + }, + [2008661] = { + ["coords"] = { + [1] = { 79.1, 63.6, 38, 25 }, + [2] = { 39.1, 76.8, 5602, 25 }, + }, + }, + [2008662] = { + ["coords"] = { + [1] = { 78.9, 63.2, 38, 25 }, + [2] = { 39, 76.6, 5602, 25 }, + }, + }, + [2008663] = { + ["coords"] = { + [1] = { 79.3, 62.8, 38, 25 }, + [2] = { 79.5, 62.8, 38, 25 }, + [3] = { 39.1, 76.4, 5602, 25 }, + [4] = { 39.2, 76.4, 5602, 25 }, + }, + }, + [2008664] = { + ["coords"] = {}, + }, + [2008665] = { + ["coords"] = {}, + }, + [2008666] = { + ["coords"] = {}, + }, + [2008667] = { + ["coords"] = {}, + }, + [2008668] = { + ["coords"] = {}, + }, + [2008669] = { + ["coords"] = {}, + }, + [2008670] = { + ["coords"] = {}, + }, + [2008671] = { + ["coords"] = {}, + }, + [2008672] = { + ["coords"] = {}, + }, + [2008673] = { + ["coords"] = {}, + }, + [2008674] = { + ["coords"] = {}, + }, + [2008675] = { + ["coords"] = {}, + }, + [2008676] = { + ["coords"] = { + [1] = { 69.6, 56.4, 1497, 300 }, + }, + }, + [2008677] = { + ["coords"] = { + [1] = { 45, 55.6, 8, 300 }, + [2] = { 45.2, 14.5, 14, 300 }, + [3] = { 70.4, 56.2, 1497, 300 }, + }, + }, + [2008678] = { + ["coords"] = { + [1] = { 43.4, 80.3, 33, 300 }, + }, + }, + [2008679] = { + ["coords"] = { + [1] = { 32.3, 47.8, 10, 300 }, + [2] = { 43.4, 80.4, 33, 300 }, + [3] = { 21, 55, 331, 300 }, + [4] = { 57.5, 22, 406, 300 }, + }, + }, + [2008680] = { + ["coords"] = { + [1] = { 80.7, 61, 28, 300 }, + [2] = { 59, 75.1, 38, 300 }, + [3] = { 22.4, 84.5, 139, 300 }, + [4] = { 43.5, 17.2, 357, 25 }, + [5] = { 31.6, 90.1, 405, 300 }, + [6] = { 57.2, 43.5, 409, 300 }, + [7] = { 28.8, 82.7, 5602, 300 }, + }, + }, + [2008681] = { + ["coords"] = { + [1] = { 64.1, 16.3, 4, 300 }, + [2] = { 72.5, 33.6, 1497, 300 }, + }, + }, + [2008682] = { + ["coords"] = { + [1] = { 72.9, 34.4, 1497, 300 }, + }, + }, + [2008683] = { + ["coords"] = { + [1] = { 62, 75, 38, 300 }, + [2] = { 26.6, 16.8, 1537, 300 }, + [3] = { 30.3, 82.7, 5602, 300 }, + }, + }, + [2008684] = { + ["coords"] = { + [1] = { 66.1, 47.3, 1519, 25 }, + [2] = { 65.1, 45.2, 1519, 25 }, + }, + }, + [2008685] = { + ["coords"] = { + [1] = { 83.4, 64.7, 38, 25 }, + [2] = { 83.2, 64.1, 38, 25 }, + [3] = { 81.7, 64.1, 38, 25 }, + [4] = { 82.3, 63.4, 38, 25 }, + [5] = { 68.1, 47.1, 1519, 25 }, + [6] = { 66.7, 46.9, 1519, 25 }, + [7] = { 63.6, 46.6, 1519, 25 }, + [8] = { 64.1, 46.1, 1519, 25 }, + [9] = { 65.2, 45.5, 1519, 25 }, + [10] = { 26.9, 70.6, 2040, 300 }, + [11] = { 40.5, 69.7, 2040, 25 }, + [12] = { 39.5, 66.9, 2040, 25 }, + [13] = { 39, 64.4, 2040, 25 }, + [14] = { 50.6, 35.6, 5225, 300 }, + [15] = { 57, 35.2, 5225, 25 }, + [16] = { 56.6, 33.9, 5225, 25 }, + [17] = { 56.4, 32.7, 5225, 25 }, + [18] = { 41.2, 77.4, 5602, 25 }, + [19] = { 41.1, 77.1, 5602, 25 }, + [20] = { 40.4, 77.1, 5602, 25 }, + [21] = { 40.7, 76.7, 5602, 25 }, + }, + }, + [2008686] = { + ["coords"] = {}, + }, + [2008687] = { + ["coords"] = {}, + }, + [2008688] = { + ["coords"] = {}, + }, + [2008689] = { + ["coords"] = { + [1] = { 66.6, 45.8, 1519, 25 }, + }, + }, + [2008690] = { + ["coords"] = {}, + }, + [2008691] = { + ["coords"] = {}, + }, + [2008692] = { + ["coords"] = {}, + }, + [2008693] = { + ["coords"] = {}, + }, + [2008694] = { + ["coords"] = {}, + }, + [2008695] = { + ["coords"] = { + [1] = { 36.6, 70.4, 1519, 300 }, + [2] = { 65.3, 46.5, 1519, 25 }, + }, + }, + [2008696] = { + ["coords"] = {}, + }, + [2008697] = { + ["coords"] = { + [1] = { 30.2, 72.5, 85, 300 }, + [2] = { 37.1, 75.1, 1519, 300 }, + [3] = { 67.1, 47, 1519, 25 }, + [4] = { 42.3, 70.2, 2040, 25 }, + [5] = { 57.9, 35.4, 5225, 25 }, + }, + }, + [2008698] = { + ["coords"] = { + [1] = { 44.6, 14.7, 14, 300 }, + [2] = { 45.2, 14.4, 14, 300 }, + [3] = { 50.5, 63.3, 406, 300 }, + [4] = { 31.1, 38, 440, 300 }, + [5] = { 78.3, 67.1, 490, 300 }, + [6] = { 61.2, 36.9, 618, 300 }, + [7] = { 36.7, 75.3, 1519, 300 }, + [8] = { 36.9, 75.2, 1519, 300 }, + [9] = { 37.7, 74.8, 1519, 300 }, + [10] = { 67.9, 47.5, 1519, 25 }, + [11] = { 67.4, 47.3, 1519, 25 }, + [12] = { 67.2, 47, 1519, 25 }, + [13] = { 65.5, 45.8, 1519, 25 }, + [14] = { 65.3, 45.6, 1519, 25 }, + [15] = { 68.3, 27, 1637, 25 }, + [16] = { 68.1, 27, 1637, 25 }, + [17] = { 68.1, 26.7, 1637, 25 }, + [18] = { 68, 26.3, 1637, 25 }, + [19] = { 67.9, 26.1, 1637, 25 }, + [20] = { 42.2, 70.3, 2040, 25 }, + [21] = { 47.1, 61.4, 2040, 25 }, + [22] = { 57.9, 35.5, 5225, 25 }, + [23] = { 60.2, 31.3, 5225, 25 }, + }, + }, + [2008699] = { + ["coords"] = { + [1] = { 45.2, 14.5, 14, 300 }, + [2] = { 60.9, 24.3, 17, 300 }, + [3] = { 72.4, 57.6, 331, 300 }, + [4] = { 82.4, 55.6, 400, 25 }, + [5] = { 82.4, 55.5, 400, 25 }, + [6] = { 31.1, 38, 440, 300 }, + [7] = { 78.3, 67.1, 490, 300 }, + [8] = { 36.7, 75.3, 1519, 300 }, + [9] = { 37, 75.3, 1519, 300 }, + [10] = { 67.1, 47.1, 1519, 25 }, + [11] = { 67.2, 46.8, 1519, 25 }, + [12] = { 41.5, 70.6, 2040, 25 }, + [13] = { 42.4, 69.6, 2040, 25 }, + [14] = { 57.5, 35.6, 5225, 25 }, + [15] = { 58, 35.1, 5225, 25 }, + }, + }, + [2008700] = { + ["coords"] = { + [1] = { 48.9, 60.6, 11, 300 }, + [2] = { 60.9, 24.3, 17, 300 }, + [3] = { 50.5, 63.2, 406, 300 }, + [4] = { 70.2, 56.3, 1497, 300 }, + [5] = { 70.5, 56, 1497, 300 }, + [6] = { 37.1, 75.2, 1519, 300 }, + [7] = { 37.7, 74.9, 1519, 300 }, + [8] = { 66.8, 47.3, 1519, 25 }, + [9] = { 42.2, 70, 2040, 25 }, + [10] = { 40.6, 69.6, 2040, 25 }, + [11] = { 41, 69.4, 2040, 25 }, + [12] = { 41, 68.9, 2040, 25 }, + [13] = { 40.6, 68.8, 2040, 25 }, + [14] = { 41.2, 68.5, 2040, 25 }, + [15] = { 40.9, 68, 2040, 25 }, + [16] = { 47, 61.3, 2040, 25 }, + [17] = { 57.9, 35.3, 5225, 25 }, + [18] = { 57.1, 35.2, 5225, 25 }, + [19] = { 57.3, 35.1, 5225, 25 }, + [20] = { 57.3, 34.8, 5225, 25 }, + [21] = { 57.1, 34.7, 5225, 25 }, + [22] = { 57.4, 34.6, 5225, 25 }, + [23] = { 57.3, 34.4, 5225, 25 }, + [24] = { 60.2, 31.2, 5225, 25 }, + [25] = { 6.3, 25.5, 5602, 300 }, + }, + }, + [2008701] = { + ["coords"] = { + [1] = { 64.4, 15.9, 4, 300 }, + }, + }, + [2008702] = { + ["coords"] = {}, + }, + [2008703] = { + ["coords"] = {}, + }, + [2008704] = { + ["coords"] = { + [1] = { 31.2, 62.8, 141, 300 }, + [2] = { 67.4, 76.4, 1657, 300 }, + }, + }, + [2008705] = { + ["coords"] = { + [1] = { 73.1, 33.3, 1497, 300 }, + }, + }, + [2008706] = { + ["coords"] = {}, + }, + [2008707] = { + ["coords"] = {}, + }, + [2008708] = { + ["coords"] = { + [1] = { 64.6, 15.6, 4, 300 }, + [2] = { 64.2, 15.4, 4, 300 }, + [3] = { 51.1, 62.2, 357, 300 }, + [4] = { 51.1, 61.9, 357, 300 }, + }, + }, + [2008709] = { + ["coords"] = { + [1] = { 71.6, 48.9, 2040, 300 }, + [2] = { 71.9, 25.3, 5225, 300 }, + }, + }, + [2008710] = { + ["coords"] = { + [1] = { 58.8, 33.3, 1497, 300 }, + }, + }, + [2008711] = { + ["coords"] = { + [1] = { 37.8, 69.8, 2040, 25 }, + [2] = { 55.8, 35.3, 5225, 25 }, + }, + }, + [2008712] = { + ["coords"] = {}, + }, + [2008713] = { + ["coords"] = {}, + }, + [2008714] = { + ["coords"] = { + [1] = { 71.5, 47.6, 1497, 300 }, + }, + }, + [2008715] = { + ["coords"] = {}, + }, + [2008716] = { + ["coords"] = {}, + }, + [2008717] = { + ["coords"] = { + [1] = { 47.1, 58.6, 2040, 25 }, + [2] = { 60.2, 29.9, 5225, 25 }, + }, + }, + [2008718] = { + ["coords"] = { + [1] = { 26.1, 42.3, 85, 300 }, + [2] = { 48.5, 62.6, 2040, 25 }, + [3] = { 60.9, 31.8, 5225, 25 }, + }, + }, + [2008719] = { + ["coords"] = {}, + }, + [2008720] = { + ["coords"] = {}, + }, + [2008721] = { + ["coords"] = { + [1] = { 36.2, 72.8, 1519, 300 }, + [2] = { 64.6, 44.3, 1519, 25 }, + [3] = { 25.7, 17, 1537, 300 }, + }, + }, + [2008722] = { + ["coords"] = {}, + }, + [2008723] = { + ["coords"] = {}, + }, + [2008724] = { + ["coords"] = {}, + }, + [2008725] = { + ["coords"] = {}, + }, + [2008726] = { + ["coords"] = {}, + }, + [2008727] = { + ["coords"] = { + [1] = { 31.2, 38.3, 440, 300 }, + [2] = { 78.5, 67.7, 490, 300 }, + }, + }, + [2008728] = { + ["coords"] = {}, + }, + [2008729] = { + ["coords"] = { + [1] = { 60.8, 53.7, 85, 300 }, + [2] = { 31.1, 38.3, 440, 300 }, + [3] = { 78.4, 67.7, 490, 300 }, + }, + }, + [2008730] = { + ["coords"] = {}, + }, + [2008731] = { + ["coords"] = {}, + }, + [2008732] = { + ["coords"] = {}, + }, + [2008733] = { + ["coords"] = {}, + }, + [2008734] = { + ["coords"] = {}, + }, + [2008735] = { + ["coords"] = {}, + }, + [2008736] = { + ["coords"] = {}, + }, + [2008737] = { + ["coords"] = {}, + }, + [2008738] = { + ["coords"] = {}, + }, + [2008739] = { + ["coords"] = {}, + }, + [2008740] = { + ["coords"] = {}, + }, + [2008741] = { + ["coords"] = {}, + }, + [2008742] = { + ["coords"] = {}, + }, + [2008743] = { + ["coords"] = {}, + }, + [2008744] = { + ["coords"] = {}, + }, + [2008745] = { + ["coords"] = {}, + }, + [2008746] = { + ["coords"] = {}, + }, + [2008747] = { + ["coords"] = {}, + }, + [2008748] = { + ["coords"] = {}, + }, + [2008749] = { + ["coords"] = {}, + }, + [2008750] = { + ["coords"] = {}, + }, + [2008751] = { + ["coords"] = {}, + }, + [2008752] = { + ["coords"] = {}, + }, + [2008753] = { + ["coords"] = { + [1] = { 27.4, 69.5, 2040, 25 }, + [2] = { 50.8, 35.1, 5225, 25 }, + }, + }, + [2008754] = { + ["coords"] = { + [1] = { 40.8, 69.5, 2040, 25 }, + [2] = { 40.8, 68.9, 2040, 25 }, + [3] = { 41, 68.2, 2040, 25 }, + [4] = { 57.2, 35.1, 5225, 25 }, + [5] = { 57.2, 34.8, 5225, 25 }, + [6] = { 57.3, 34.5, 5225, 25 }, + }, + }, + [2008755] = { + ["coords"] = { + [1] = { 41.5, 69.2, 2040, 25 }, + [2] = { 57.5, 34.9, 5225, 25 }, + }, + }, + [2008756] = { + ["coords"] = { + [1] = { 17.4, 25.6, 331, 300 }, + [2] = { 69.7, 45.6, 2040, 300 }, + [3] = { 71, 23.8, 5225, 300 }, + }, + }, + [2008757] = { + ["coords"] = {}, + }, + [2008758] = { + ["coords"] = { + [1] = { 34.6, 64.7, 11, 300 }, + [2] = { 81.9, 63.9, 38, 25 }, + [3] = { 82.1, 63.7, 38, 25 }, + [4] = { 37.4, 75.1, 1519, 300 }, + [5] = { 25.7, 16.4, 1537, 300 }, + [6] = { 22, 72.2, 2040, 25 }, + [7] = { 26.4, 70.6, 2040, 25 }, + [8] = { 41.3, 70.5, 2040, 25 }, + [9] = { 41.9, 70.4, 2040, 25 }, + [10] = { 37.4, 70, 2040, 25 }, + [11] = { 42.3, 69.8, 2040, 25 }, + [12] = { 41.2, 69.3, 2040, 25 }, + [13] = { 41.1, 69.3, 2040, 25 }, + [14] = { 41.6, 69.2, 2040, 25 }, + [15] = { 27.5, 69, 2040, 25 }, + [16] = { 38.7, 64.1, 2040, 25 }, + [17] = { 41.4, 35, 2040, 300 }, + [18] = { 13.9, 33.7, 5179, 300 }, + [19] = { 48.3, 36.4, 5225, 25 }, + [20] = { 50.3, 35.6, 5225, 25 }, + [21] = { 57.5, 35.6, 5225, 25 }, + [22] = { 57.7, 35.5, 5225, 25 }, + [23] = { 55.6, 35.3, 5225, 25 }, + [24] = { 57.9, 35.2, 5225, 25 }, + [25] = { 57.4, 35, 5225, 25 }, + [26] = { 57.3, 35, 5225, 25 }, + [27] = { 57.6, 34.9, 5225, 25 }, + [28] = { 50.9, 34.9, 5225, 25 }, + [29] = { 56.2, 32.5, 5225, 25 }, + [30] = { 57.5, 18.8, 5225, 300 }, + [31] = { 40.5, 77, 5602, 25 }, + [32] = { 40.6, 76.9, 5602, 25 }, + }, + }, + [2008759] = { + ["coords"] = { + [1] = { 60.7, 53.7, 85, 300 }, + }, + }, + [2008760] = { + ["coords"] = {}, + }, + [2008761] = { + ["coords"] = { + [1] = { 38.7, 64.1, 2040, 25 }, + [2] = { 56.2, 32.6, 5225, 25 }, + }, + }, + [2008762] = { + ["coords"] = { + [1] = { 73.2, 45.9, 2040, 300 }, + [2] = { 72.6, 23.9, 5225, 300 }, + }, + }, + [2008763] = { + ["coords"] = {}, + }, + [2008764] = { + ["coords"] = {}, + }, + [2008765] = { + ["coords"] = {}, + }, + [2008766] = { + ["coords"] = {}, + }, + [2008767] = { + ["coords"] = {}, + }, + [2008768] = { + ["coords"] = {}, + }, + [2008769] = { + ["coords"] = {}, + }, + [2008770] = { + ["coords"] = {}, + }, + [2008771] = { + ["coords"] = {}, + }, + [2008772] = { + ["coords"] = {}, + }, + [2008773] = { + ["coords"] = {}, + }, + [2008774] = { + ["coords"] = {}, + }, + [2008775] = { + ["coords"] = { + [1] = { 81.2, 65.2, 38, 25 }, + [2] = { 80.1, 64.1, 38, 25 }, + [3] = { 84.9, 63.3, 38, 25 }, + [4] = { 80.2, 61.5, 38, 25 }, + [5] = { 84.1, 60.4, 38, 25 }, + [6] = { 83.2, 59.4, 38, 25 }, + [7] = { 80.7, 58.4, 38, 25 }, + [8] = { 40.1, 77.7, 5602, 25 }, + [9] = { 39.6, 77.1, 5602, 25 }, + [10] = { 42, 76.7, 5602, 25 }, + [11] = { 39.6, 75.7, 5602, 25 }, + [12] = { 41.6, 75.2, 5602, 25 }, + [13] = { 41.1, 74.7, 5602, 25 }, + [14] = { 39.9, 74.2, 5602, 25 }, + }, + }, + [2008776] = { + ["coords"] = {}, + }, + [2008777] = { + ["coords"] = {}, + }, + [2008778] = { + ["coords"] = { + [1] = { 37.6, 69.5, 2040, 25 }, + [2] = { 55.7, 35.1, 5225, 25 }, + }, + }, + [2008779] = { + ["coords"] = {}, + }, + [2008780] = { + ["coords"] = { + [1] = { 58.1, 75.1, 38, 300 }, + [2] = { 39.8, 66.6, 2040, 25 }, + [3] = { 56.7, 33.7, 5225, 25 }, + [4] = { 28.3, 82.7, 5602, 300 }, + }, + }, + [2008781] = { + ["coords"] = { + [1] = { 79.5, 59, 38, 25 }, + [2] = { 14.4, 74.8, 85, 300 }, + [3] = { 39.3, 74.5, 5602, 25 }, + }, + }, + [2008782] = { + ["coords"] = { + [1] = { 59.2, 75.8, 38, 300 }, + [2] = { 82.9, 62.7, 38, 25 }, + [3] = { 36.4, 76, 1519, 300 }, + [4] = { 27.4, 70, 2040, 25 }, + [5] = { 27.7, 68.9, 2040, 25 }, + [6] = { 44.5, 57.3, 5225, 300 }, + [7] = { 50.8, 35.3, 5225, 25 }, + [8] = { 50.9, 34.8, 5225, 25 }, + [9] = { 28.9, 83.1, 5602, 300 }, + [10] = { 41, 76.4, 5602, 25 }, + }, + }, + [2008783] = { + ["coords"] = { + [1] = { 59.2, 75.9, 38, 300 }, + [2] = { 36.4, 75.8, 1519, 300 }, + [3] = { 23.6, 65.6, 2040, 25 }, + [4] = { 49, 33.3, 5225, 25 }, + [5] = { 28.9, 83.1, 5602, 300 }, + }, + }, + [2008784] = { + ["coords"] = {}, + }, + [2008785] = { + ["coords"] = {}, + }, + [2008786] = { + ["coords"] = {}, + }, + [2008787] = { + ["coords"] = {}, + }, + [2008788] = { + ["coords"] = {}, + }, + [2008789] = { + ["coords"] = { + [1] = { 61.7, 12.5, 16, 300 }, + }, + }, + [2008790] = { + ["coords"] = {}, + }, + [2008791] = { + ["coords"] = { + [1] = { 61.4, 32.3, 15, 300 }, + [2] = { 55.8, 57.7, 141, 300 }, + }, + }, + [2008792] = { + ["coords"] = {}, + }, + [2008793] = { + ["coords"] = { + [1] = { 57.8, 75.7, 38, 300 }, + [2] = { 59.1, 74.9, 38, 300 }, + [3] = { 36.6, 74.6, 1519, 300 }, + [4] = { 37.5, 74.2, 1519, 300 }, + [5] = { 64.1, 47.1, 1519, 25 }, + [6] = { 28.1, 83, 5602, 300 }, + [7] = { 28.8, 82.6, 5602, 300 }, + }, + }, + [2008794] = { + ["coords"] = { + [1] = { 66.4, 47.4, 1519, 25 }, + [2] = { 25.9, 77.7, 2040, 25 }, + [3] = { 24.8, 76.2, 2040, 25 }, + [4] = { 44.1, 62.5, 2040, 25 }, + [5] = { 50.1, 39, 5225, 25 }, + [6] = { 49.6, 38.3, 5225, 25 }, + [7] = { 58.8, 31.8, 5225, 25 }, + }, + }, + [2008795] = { + ["coords"] = { + [1] = { 58.9, 77.3, 38, 300 }, + [2] = { 57.8, 75.6, 38, 300 }, + [3] = { 64.7, 44.4, 1519, 25 }, + [4] = { 25.9, 77, 2040, 25 }, + [5] = { 24.4, 76.9, 2040, 25 }, + [6] = { 42.6, 64.2, 2040, 25 }, + [7] = { 44.7, 63.1, 2040, 25 }, + [8] = { 50.1, 38.6, 5225, 25 }, + [9] = { 49.4, 38.6, 5225, 25 }, + [10] = { 58.1, 32.6, 5225, 25 }, + [11] = { 59.1, 32.1, 5225, 25 }, + [12] = { 28.7, 83.9, 5602, 300 }, + [13] = { 28.1, 83, 5602, 300 }, + }, + }, + [2008796] = { + ["coords"] = { + [1] = { 59.9, 77.6, 38, 300 }, + [2] = { 59, 77.2, 38, 300 }, + [3] = { 59.3, 75.7, 38, 300 }, + [4] = { 36.2, 69.8, 1519, 300 }, + [5] = { 65.9, 45.9, 1519, 25 }, + [6] = { 25.4, 78.5, 2040, 25 }, + [7] = { 25.5, 76.2, 2040, 25 }, + [8] = { 49.9, 39.4, 5225, 25 }, + [9] = { 49.9, 38.3, 5225, 25 }, + [10] = { 29.2, 84, 5602, 300 }, + [11] = { 28.7, 83.8, 5602, 300 }, + [12] = { 28.9, 83, 5602, 300 }, + }, + }, + [2008797] = { + ["coords"] = { + [1] = { 59.2, 75.6, 38, 300 }, + [2] = { 40.9, 70.9, 2040, 25 }, + [3] = { 40.6, 70.5, 2040, 25 }, + [4] = { 37.4, 70.2, 2040, 25 }, + [5] = { 57.3, 35.8, 5225, 25 }, + [6] = { 57.1, 35.6, 5225, 25 }, + [7] = { 55.6, 35.4, 5225, 25 }, + [8] = { 28.9, 83, 5602, 300 }, + }, + }, + [2008798] = { + ["coords"] = { + [1] = { 35.9, 71.1, 1519, 300 }, + }, + }, + [2008799] = { + ["coords"] = { + [1] = { 59.1, 75.5, 38, 300 }, + [2] = { 26.7, 70.3, 2040, 25 }, + [3] = { 26, 70.3, 2040, 25 }, + [4] = { 27.2, 69.8, 2040, 25 }, + [5] = { 25.4, 69.7, 2040, 25 }, + [6] = { 41.3, 69.4, 2040, 25 }, + [7] = { 41.8, 69.4, 2040, 25 }, + [8] = { 27.4, 68.9, 2040, 25 }, + [9] = { 25.3, 68.7, 2040, 25 }, + [10] = { 27.3, 67.9, 2040, 25 }, + [11] = { 25.5, 67.7, 2040, 25 }, + [12] = { 27, 67.3, 2040, 25 }, + [13] = { 26.7, 67.3, 2040, 25 }, + [14] = { 26.1, 67.2, 2040, 25 }, + [15] = { 50.5, 35.5, 5225, 25 }, + [16] = { 50.1, 35.5, 5225, 25 }, + [17] = { 50.7, 35.2, 5225, 25 }, + [18] = { 49.9, 35.2, 5225, 25 }, + [19] = { 57.4, 35, 5225, 25 }, + [20] = { 57.7, 35, 5225, 25 }, + [21] = { 50.8, 34.8, 5225, 25 }, + [22] = { 49.8, 34.7, 5225, 25 }, + [23] = { 50.8, 34.3, 5225, 25 }, + [24] = { 49.9, 34.3, 5225, 25 }, + [25] = { 50.6, 34.1, 5225, 25 }, + [26] = { 50.5, 34, 5225, 25 }, + [27] = { 50.2, 34, 5225, 25 }, + [28] = { 28.8, 82.9, 5602, 300 }, + }, + }, + [2008800] = { + ["coords"] = { + [1] = { 64.7, 15.4, 4, 300 }, + [2] = { 59.8, 77.5, 38, 300 }, + [3] = { 57.9, 75.6, 38, 300 }, + [4] = { 36.5, 72.8, 1519, 300 }, + [5] = { 36.9, 72.6, 1519, 300 }, + [6] = { 36.5, 69.6, 1519, 300 }, + [7] = { 67, 47.4, 1519, 25 }, + [8] = { 40.7, 70, 2040, 25 }, + [9] = { 57.2, 35.4, 5225, 25 }, + [10] = { 29.2, 84, 5602, 300 }, + [11] = { 28.2, 83, 5602, 300 }, + }, + }, + [2008801] = { + ["coords"] = { + [1] = { 58.9, 75, 38, 300 }, + [2] = { 36.8, 70.7, 1519, 300 }, + [3] = { 68.1, 47.2, 1519, 25 }, + [4] = { 26.4, 17, 1537, 300 }, + [5] = { 25.6, 70.6, 2040, 25 }, + [6] = { 40.7, 68.3, 2040, 25 }, + [7] = { 42.8, 63.2, 2040, 25 }, + [8] = { 50, 35.6, 5225, 25 }, + [9] = { 57.2, 34.5, 5225, 25 }, + [10] = { 58.1, 32.1, 5225, 25 }, + [11] = { 28.7, 82.7, 5602, 300 }, + }, + }, + [2008802] = { + ["coords"] = { + [1] = { 64.1, 15.2, 4, 300 }, + [2] = { 59.7, 77.5, 38, 300 }, + [3] = { 59.7, 76.3, 38, 300 }, + [4] = { 35.8, 70, 1519, 300 }, + [5] = { 66, 47.3, 1519, 25 }, + [6] = { 67.4, 46.7, 1519, 25 }, + [7] = { 27, 70.9, 2040, 25 }, + [8] = { 26.1, 70.8, 2040, 25 }, + [9] = { 40.5, 69.2, 2040, 25 }, + [10] = { 43.4, 62.5, 2040, 25 }, + [11] = { 50.6, 35.8, 5225, 25 }, + [12] = { 50.2, 35.7, 5225, 25 }, + [13] = { 57.1, 35, 5225, 25 }, + [14] = { 58.4, 31.8, 5225, 25 }, + [15] = { 29.1, 84, 5602, 300 }, + [16] = { 29.1, 83.3, 5602, 300 }, + }, + }, + [2008803] = { + ["coords"] = {}, + }, + [2008804] = { + ["coords"] = {}, + }, + [2008805] = { + ["coords"] = {}, + }, + [2008806] = { + ["coords"] = {}, + }, + [2008807] = { + ["coords"] = {}, + }, + [2008808] = { + ["coords"] = {}, + }, + [2008809] = { + ["coords"] = {}, + }, + [2008810] = { + ["coords"] = {}, + }, + [2008811] = { + ["coords"] = {}, + }, + [2008812] = { + ["coords"] = {}, + }, + [2008813] = { + ["coords"] = {}, + }, + [2008814] = { + ["coords"] = {}, + }, + [2008815] = { + ["coords"] = {}, + }, + [2008816] = { + ["coords"] = {}, + }, + [2008817] = { + ["coords"] = {}, + }, + [2008818] = { + ["coords"] = {}, + }, + [2008819] = { + ["coords"] = {}, + }, + [2008820] = { + ["coords"] = {}, + }, + [2008821] = { + ["coords"] = {}, + }, + [2008822] = { + ["coords"] = {}, + }, + [2008823] = { + ["coords"] = {}, + }, + [2008824] = { + ["coords"] = {}, + }, + [2008825] = { + ["coords"] = {}, + }, + [2008826] = { + ["coords"] = {}, + }, + [2008827] = { + ["coords"] = {}, + }, + [2008828] = { + ["coords"] = {}, + }, + [2008829] = { + ["coords"] = {}, + }, + [2008830] = { + ["coords"] = {}, + }, + [2008831] = { + ["coords"] = {}, + }, + [2008832] = { + ["coords"] = {}, + }, + [2008833] = { + ["coords"] = {}, + }, + [2008834] = { + ["coords"] = {}, + }, + [2008835] = { + ["coords"] = {}, + }, + [2008836] = { + ["coords"] = {}, + }, + [2008837] = { + ["coords"] = {}, + }, + [2008838] = { + ["coords"] = {}, + }, + [2008839] = { + ["coords"] = {}, + }, + [2008840] = { + ["coords"] = {}, + }, + [2008841] = { + ["coords"] = {}, + }, + [2008842] = { + ["coords"] = {}, + }, + [2008843] = { + ["coords"] = {}, + }, + [2008844] = { + ["coords"] = {}, + }, + [2008845] = { + ["coords"] = {}, + }, + [2008846] = { + ["coords"] = {}, + }, + [2008847] = { + ["coords"] = {}, + }, + [2008848] = { + ["coords"] = {}, + }, + [2008849] = { + ["coords"] = {}, + }, + [2008850] = { + ["coords"] = {}, + }, + [2008851] = { + ["coords"] = {}, + }, + [2008852] = { + ["coords"] = {}, + }, + [2008853] = { + ["coords"] = {}, + }, + [2008854] = { + ["coords"] = {}, + }, + [2008855] = { + ["coords"] = {}, + }, + [2008856] = { + ["coords"] = {}, + }, + [2008857] = { + ["coords"] = {}, + }, + [2008858] = { + ["coords"] = {}, + }, + [2008859] = { + ["coords"] = {}, + }, + [2008860] = { + ["coords"] = {}, + }, + [2008861] = { + ["coords"] = {}, + }, + [2008862] = { + ["coords"] = {}, + }, + [2008863] = { + ["coords"] = {}, + }, + [2008864] = { + ["coords"] = {}, + }, + [2008865] = { + ["coords"] = {}, + }, + [2008866] = { + ["coords"] = {}, + }, + [2008867] = { + ["coords"] = {}, + }, + [2008868] = { + ["coords"] = {}, + }, + [2008869] = { + ["coords"] = {}, + }, + [2008870] = { + ["coords"] = {}, + }, + [2008871] = { + ["coords"] = {}, + }, + [2008872] = { + ["coords"] = {}, + }, + [2008873] = { + ["coords"] = {}, + }, + [2008874] = { + ["coords"] = {}, + }, + [2008875] = { + ["coords"] = {}, + }, + [2008876] = { + ["coords"] = {}, + }, + [2008877] = { + ["coords"] = {}, + }, + [2008878] = { + ["coords"] = {}, + }, + [2008879] = { + ["coords"] = {}, + }, + [2008880] = { + ["coords"] = {}, + }, + [2008881] = { + ["coords"] = {}, + }, + [2008882] = { + ["coords"] = {}, + }, + [2008883] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [2008884] = { + ["coords"] = {}, + }, + [2008885] = { + ["coords"] = {}, + }, + [2008886] = { + ["coords"] = {}, + }, + [2008887] = { + ["coords"] = {}, + }, + [2008888] = { + ["coords"] = {}, + }, + [2008889] = { + ["coords"] = {}, + }, + [2008890] = { + ["coords"] = {}, + }, + [2008891] = { + ["coords"] = {}, + }, + [2008892] = { + ["coords"] = {}, + }, + [2008893] = { + ["coords"] = {}, + }, + [2008894] = { + ["coords"] = {}, + }, + [2008895] = { + ["coords"] = {}, + }, + [2008896] = { + ["coords"] = {}, + }, + [2008897] = { + ["coords"] = {}, + }, + [2008898] = { + ["coords"] = {}, + }, + [2008899] = { + ["coords"] = {}, + }, + [2008900] = { + ["coords"] = {}, + }, + [2008901] = { + ["coords"] = {}, + }, + [2008902] = { + ["coords"] = {}, + }, + [2008903] = { + ["coords"] = {}, + }, + [2008904] = { + ["coords"] = {}, + }, + [2008905] = { + ["coords"] = {}, + }, + [2008906] = { + ["coords"] = {}, + }, + [2008907] = { + ["coords"] = {}, + }, + [2008908] = { + ["coords"] = {}, + }, + [2008909] = { + ["coords"] = {}, + }, + [2008910] = { + ["coords"] = {}, + }, + [2008911] = { + ["coords"] = {}, + }, + [2008912] = { + ["coords"] = {}, + }, + [2008913] = { + ["coords"] = {}, + }, + [2008914] = { + ["coords"] = {}, + }, + [2008915] = { + ["coords"] = {}, + }, + [2008916] = { + ["coords"] = {}, + }, + [2008917] = { + ["coords"] = {}, + }, + [2008918] = { + ["coords"] = {}, + }, + [2008919] = { + ["coords"] = {}, + }, + [2008920] = { + ["coords"] = {}, + }, + [2008921] = { + ["coords"] = {}, + }, + [2008922] = { + ["coords"] = {}, + }, + [2008923] = { + ["coords"] = {}, + }, + [2008924] = { + ["coords"] = {}, + }, + [2008925] = { + ["coords"] = {}, + }, + [2008926] = { + ["coords"] = {}, + }, + [2008927] = { + ["coords"] = {}, + }, + [2008928] = { + ["coords"] = {}, + }, + [2008929] = { + ["coords"] = {}, + }, + [2008930] = { + ["coords"] = {}, + }, + [2008931] = { + ["coords"] = {}, + }, + [2008932] = { + ["coords"] = {}, + }, + [2008933] = { + ["coords"] = {}, + }, + [2008934] = { + ["coords"] = {}, + }, + [2008935] = { + ["coords"] = {}, + }, + [2008936] = { + ["coords"] = {}, + }, + [2008937] = { + ["coords"] = {}, + }, + [2008938] = { + ["coords"] = {}, + }, + [2008939] = { + ["coords"] = {}, + }, + [2008940] = { + ["coords"] = {}, + }, + [2008941] = { + ["coords"] = {}, + }, + [2008942] = { + ["coords"] = {}, + }, + [2008943] = { + ["coords"] = {}, + }, + [2008944] = { + ["coords"] = {}, + }, + [2008945] = { + ["coords"] = {}, + }, + [2008946] = { + ["coords"] = {}, + }, + [2008947] = { + ["coords"] = {}, + }, + [2008948] = { + ["coords"] = {}, + }, + [2008949] = { + ["coords"] = {}, + }, + [2008950] = { + ["coords"] = {}, + }, + [2008951] = { + ["coords"] = {}, + }, + [2008952] = { + ["coords"] = {}, + }, + [2008953] = { + ["coords"] = {}, + }, + [2008954] = { + ["coords"] = {}, + }, + [2008955] = { + ["coords"] = {}, + }, + [2008956] = { + ["coords"] = {}, + }, + [2008957] = { + ["coords"] = {}, + }, + [2008958] = { + ["coords"] = {}, + }, + [2008959] = { + ["coords"] = {}, + }, + [2008960] = { + ["coords"] = {}, + }, + [2008961] = { + ["coords"] = {}, + }, + [2008962] = { + ["coords"] = {}, + }, + [2008963] = { + ["coords"] = {}, + }, + [2008964] = { + ["coords"] = {}, + }, + [2008965] = { + ["coords"] = {}, + }, + [2008966] = { + ["coords"] = { + [1] = { 59.1, 77, 38, 300 }, + [2] = { 28.8, 83.7, 5602, 300 }, + }, + }, + [2008967] = { + ["coords"] = {}, + }, + [2008968] = { + ["coords"] = {}, + }, + [2008969] = { + ["coords"] = { + [1] = { 72.2, 53.6, 1497, 300 }, + [2] = { 71.2, 46.5, 1497, 300 }, + }, + }, + [2008970] = { + ["coords"] = {}, + }, + [2008971] = { + ["coords"] = {}, + }, + [2008972] = { + ["coords"] = {}, + }, + [2008973] = { + ["coords"] = {}, + }, + [2008974] = { + ["coords"] = {}, + }, + [2008975] = { + ["coords"] = {}, + }, + [2008976] = { + ["coords"] = {}, + }, + [2008977] = { + ["coords"] = {}, + }, + [2008978] = { + ["coords"] = {}, + }, + [2008979] = { + ["coords"] = {}, + }, + [2008980] = { + ["coords"] = {}, + }, + [2008981] = { + ["coords"] = {}, + }, + [2008982] = { + ["coords"] = {}, + }, + [2008983] = { + ["coords"] = {}, + }, + [2008984] = { + ["coords"] = {}, + }, + [2008985] = { + ["coords"] = {}, + }, + [2008986] = { + ["coords"] = {}, + }, + [2008987] = { + ["coords"] = {}, + }, + [2008988] = { + ["coords"] = {}, + }, + [2008989] = { + ["coords"] = {}, + }, + [2008990] = { + ["coords"] = {}, + }, + [2008991] = { + ["coords"] = {}, + }, + [2008992] = { + ["coords"] = {}, + }, + [2008993] = { + ["coords"] = {}, + }, + [2008994] = { + ["coords"] = {}, + }, + [2008995] = { + ["coords"] = {}, + }, + [2008996] = { + ["coords"] = {}, + }, + [2008997] = { + ["coords"] = {}, + }, + [2008998] = { + ["coords"] = {}, + }, + [2008999] = { + ["coords"] = {}, + }, + [2009000] = { + ["coords"] = {}, + }, + [2009001] = { + ["coords"] = {}, + }, + [2009002] = { + ["coords"] = {}, + }, + [2009003] = { + ["coords"] = {}, + }, + [2009004] = { + ["coords"] = {}, + }, + [2009005] = { + ["coords"] = {}, + }, + [2009006] = { + ["coords"] = {}, + }, + [2009007] = { + ["coords"] = {}, + }, + [2009008] = { + ["coords"] = {}, + }, + [2009009] = { + ["coords"] = {}, + }, + [2009010] = { + ["coords"] = {}, + }, + [2009011] = { + ["coords"] = {}, + }, + [2009012] = { + ["coords"] = {}, + }, + [2009013] = { + ["coords"] = {}, + }, + [2009014] = { + ["coords"] = {}, + }, + [2009015] = { + ["coords"] = {}, + }, + [2009016] = { + ["coords"] = {}, + }, + [2009017] = { + ["coords"] = {}, + }, + [2009018] = { + ["coords"] = {}, + }, + [2009019] = { + ["coords"] = {}, + }, + [2009020] = { + ["coords"] = {}, + }, + [2009021] = { + ["coords"] = {}, + }, + [2009022] = { + ["coords"] = {}, + }, + [2009023] = { + ["coords"] = {}, + }, + [2009024] = { + ["coords"] = { + [1] = { 59.1, 78.5, 38, 300 }, + [2] = { 56.3, 78.3, 38, 300 }, + [3] = { 55, 77.5, 38, 300 }, + [4] = { 56.7, 77.1, 38, 300 }, + [5] = { 23.8, 20, 1537, 300 }, + [6] = { 28.8, 84.5, 5602, 300 }, + [7] = { 27.4, 84.4, 5602, 300 }, + [8] = { 26.7, 84, 5602, 300 }, + [9] = { 27.6, 83.7, 5602, 300 }, + }, + }, + [2009025] = { + ["coords"] = { + [1] = { 54.2, 77.2, 38, 300 }, + [2] = { 26.3, 83.8, 5602, 300 }, + }, + }, + [2009026] = { + ["coords"] = {}, + }, + [2009027] = { + ["coords"] = {}, + }, + [2009028] = { + ["coords"] = {}, + }, + [2009029] = { + ["coords"] = {}, + }, + [2009030] = { + ["coords"] = {}, + }, + [2009031] = { + ["coords"] = {}, + }, + [2009032] = { + ["coords"] = {}, + }, + [2009033] = { + ["coords"] = {}, + }, + [2009034] = { + ["coords"] = {}, + }, + [2009035] = { + ["coords"] = {}, + }, + [2009036] = { + ["coords"] = { + [1] = { 81.9, 87.2, 5086, 300 }, + [2] = { 81.9, 85.7, 5086, 300 }, + [3] = { 84.3, 81.7, 5086, 300 }, + [4] = { 83.6, 81.7, 5086, 300 }, + }, + }, + [2009037] = { + ["coords"] = {}, + }, + [2009038] = { + ["coords"] = {}, + }, + [2009039] = { + ["coords"] = {}, + }, + [2009040] = { + ["coords"] = {}, + }, + [2009041] = { + ["coords"] = {}, + }, + [2009042] = { + ["coords"] = {}, + }, + [2009043] = { + ["coords"] = {}, + }, + [2009044] = { + ["coords"] = {}, + }, + [2009045] = { + ["coords"] = {}, + }, + [2009046] = { + ["coords"] = {}, + }, + [2009047] = { + ["coords"] = {}, + }, + [2009048] = { + ["coords"] = {}, + }, + [2009049] = { + ["coords"] = {}, + }, + [2009050] = { + ["coords"] = {}, + }, + [2009051] = { + ["coords"] = {}, + }, + [2009052] = { + ["coords"] = {}, + }, + [2009053] = { + ["coords"] = {}, + }, + [2009054] = { + ["coords"] = {}, + }, + [2009055] = { + ["coords"] = {}, + }, + [2009056] = { + ["coords"] = {}, + }, + [2009057] = { + ["coords"] = {}, + }, + [2009058] = { + ["coords"] = {}, + }, + [2009059] = { + ["coords"] = {}, + }, + [2009060] = { + ["coords"] = {}, + }, + [2009061] = { + ["coords"] = {}, + }, + [2009062] = { + ["coords"] = {}, + }, + [2009063] = { + ["coords"] = {}, + }, + [2009064] = { + ["coords"] = {}, + }, + [2009065] = { + ["coords"] = {}, + }, + [2009066] = { + ["coords"] = {}, + }, + [2009067] = { + ["coords"] = {}, + }, + [2009068] = { + ["coords"] = {}, + }, + [2009069] = { + ["coords"] = {}, + }, + [2009070] = { + ["coords"] = {}, + }, + [2009071] = { + ["coords"] = {}, + }, + [2009072] = { + ["coords"] = {}, + }, + [2009073] = { + ["coords"] = {}, + }, + [2009074] = { + ["coords"] = {}, + }, + [2009075] = { + ["coords"] = {}, + }, + [2009076] = { + ["coords"] = {}, + }, + [2009077] = { + ["coords"] = {}, + }, + [2009078] = { + ["coords"] = {}, + }, + [2009079] = { + ["coords"] = {}, + }, + [2009080] = { + ["coords"] = {}, + }, + [2009081] = { + ["coords"] = {}, + }, + [2009082] = { + ["coords"] = {}, + }, + [2009083] = { + ["coords"] = {}, + }, + [2009084] = { + ["coords"] = {}, + }, + [2009085] = { + ["coords"] = {}, + }, + [2009086] = { + ["coords"] = {}, + }, + [2009087] = { + ["coords"] = {}, + }, + [2009088] = { + ["coords"] = {}, + }, + [2009089] = { + ["coords"] = {}, + }, + [2009090] = { + ["coords"] = {}, + }, + [2009091] = { + ["coords"] = {}, + }, + [2009092] = { + ["coords"] = {}, + }, + [2009093] = { + ["coords"] = {}, + }, + [2009094] = { + ["coords"] = {}, + }, + [2009095] = { + ["coords"] = {}, + }, + [2009096] = { + ["coords"] = {}, + }, + [2009097] = { + ["coords"] = {}, + }, + [2009098] = { + ["coords"] = {}, + }, + [2009099] = { + ["coords"] = {}, + }, + [2009100] = { + ["coords"] = {}, + }, + [2009101] = { + ["coords"] = {}, + }, + [2009102] = { + ["coords"] = {}, + }, + [2009103] = { + ["coords"] = {}, + }, + [2009104] = { + ["coords"] = {}, + }, + [2009105] = { + ["coords"] = {}, + }, + [2009106] = { + ["coords"] = {}, + }, + [2009107] = { + ["coords"] = {}, + }, + [2009108] = { + ["coords"] = {}, + }, + [2009109] = { + ["coords"] = {}, + }, + [2009110] = { + ["coords"] = {}, + }, + [2009111] = { + ["coords"] = {}, + }, + [2009112] = { + ["coords"] = {}, + }, + [2009113] = { + ["coords"] = {}, + }, + [2009114] = { + ["coords"] = {}, + }, + [2009115] = { + ["coords"] = {}, + }, + [2009116] = { + ["coords"] = {}, + }, + [2009117] = { + ["coords"] = {}, + }, + [2009118] = { + ["coords"] = {}, + }, + [2009119] = { + ["coords"] = {}, + }, + [2009120] = { + ["coords"] = {}, + }, + [2009121] = { + ["coords"] = {}, + }, + [2009122] = { + ["coords"] = {}, + }, + [2009123] = { + ["coords"] = {}, + }, + [2009124] = { + ["coords"] = {}, + }, + [2009125] = { + ["coords"] = {}, + }, + [2009126] = { + ["coords"] = {}, + }, + [2009127] = { + ["coords"] = {}, + }, + [2009128] = { + ["coords"] = {}, + }, + [2009129] = { + ["coords"] = {}, + }, + [2009130] = { + ["coords"] = {}, + }, + [2009131] = { + ["coords"] = {}, + }, + [2009132] = { + ["coords"] = {}, + }, + [2009133] = { + ["coords"] = {}, + }, + [2009134] = { + ["coords"] = {}, + }, + [2009135] = { + ["coords"] = {}, + }, + [2009136] = { + ["coords"] = {}, + }, + [2009137] = { + ["coords"] = {}, + }, + [2009138] = { + ["coords"] = {}, + }, + [2009139] = { + ["coords"] = {}, + }, + [2009140] = { + ["coords"] = {}, + }, + [2009141] = { + ["coords"] = {}, + }, + [2009142] = { + ["coords"] = {}, + }, + [2009143] = { + ["coords"] = {}, + }, + [2009144] = { + ["coords"] = {}, + }, + [2009145] = { + ["coords"] = {}, + }, + [2009146] = { + ["coords"] = {}, + }, + [2009147] = { + ["coords"] = {}, + }, + [2009148] = { + ["coords"] = {}, + }, + [2009149] = { + ["coords"] = {}, + }, + [2009150] = { + ["coords"] = {}, + }, + [2009151] = { + ["coords"] = {}, + }, + [2009152] = { + ["coords"] = {}, + }, + [2009153] = { + ["coords"] = {}, + }, + [2009154] = { + ["coords"] = {}, + }, + [2009155] = { + ["coords"] = {}, + }, + [2009156] = { + ["coords"] = {}, + }, + [2009157] = { + ["coords"] = {}, + }, + [2009158] = { + ["coords"] = {}, + }, + [2009159] = { + ["coords"] = {}, + }, + [2009160] = { + ["coords"] = {}, + }, + [2009161] = { + ["coords"] = {}, + }, + [2009162] = { + ["coords"] = {}, + }, + [2009163] = { + ["coords"] = {}, + }, + [2009164] = { + ["coords"] = {}, + }, + [2009165] = { + ["coords"] = {}, + }, + [2009166] = { + ["coords"] = {}, + }, + [2009167] = { + ["coords"] = {}, + }, + [2009168] = { + ["coords"] = {}, + }, + [2009169] = { + ["coords"] = {}, + }, + [2009170] = { + ["coords"] = {}, + }, + [2009171] = { + ["coords"] = {}, + }, + [2009172] = { + ["coords"] = {}, + }, + [2009173] = { + ["coords"] = {}, + }, + [2009174] = { + ["coords"] = {}, + }, + [2009175] = { + ["coords"] = {}, + }, + [2009176] = { + ["coords"] = {}, + }, + [2009177] = { + ["coords"] = {}, + }, + [2009178] = { + ["coords"] = {}, + }, + [2009179] = { + ["coords"] = {}, + }, + [2009180] = { + ["coords"] = {}, + }, + [2009181] = { + ["coords"] = {}, + }, + [2009182] = { + ["coords"] = {}, + }, + [2009183] = { + ["coords"] = {}, + }, + [2009184] = { + ["coords"] = {}, + }, + [2009185] = { + ["coords"] = {}, + }, + [2009186] = { + ["coords"] = {}, + }, + [2009187] = { + ["coords"] = {}, + }, + [2009188] = { + ["coords"] = {}, + }, + [2009189] = { + ["coords"] = {}, + }, + [2009190] = { + ["coords"] = {}, + }, + [2009191] = { + ["coords"] = {}, + }, + [2009192] = { + ["coords"] = {}, + }, + [2009193] = { + ["coords"] = {}, + }, + [2009194] = { + ["coords"] = {}, + }, + [2009195] = { + ["coords"] = {}, + }, + [2009196] = { + ["coords"] = {}, + }, + [2009197] = { + ["coords"] = {}, + }, + [2009198] = { + ["coords"] = {}, + }, + [2009199] = { + ["coords"] = {}, + }, + [2009200] = { + ["coords"] = {}, + }, + [2009201] = { + ["coords"] = {}, + }, + [2009202] = { + ["coords"] = {}, + }, + [2009203] = { + ["coords"] = {}, + }, + [2009204] = { + ["coords"] = {}, + }, + [2009205] = { + ["coords"] = {}, + }, + [2009206] = { + ["coords"] = {}, + }, + [2009207] = { + ["coords"] = {}, + }, + [2009208] = { + ["coords"] = {}, + }, + [2009209] = { + ["coords"] = {}, + }, + [2009210] = { + ["coords"] = {}, + }, + [2009211] = { + ["coords"] = {}, + }, + [2009212] = { + ["coords"] = {}, + }, + [2009213] = { + ["coords"] = {}, + }, + [2009214] = { + ["coords"] = {}, + }, + [2009215] = { + ["coords"] = {}, + }, + [2009216] = { + ["coords"] = {}, + }, + [2009217] = { + ["coords"] = {}, + }, + [2009218] = { + ["coords"] = {}, + }, + [2009219] = { + ["coords"] = {}, + }, + [2009220] = { + ["coords"] = {}, + }, + [2009221] = { + ["coords"] = {}, + }, + [2009222] = { + ["coords"] = {}, + }, + [2009223] = { + ["coords"] = {}, + }, + [2009224] = { + ["coords"] = {}, + }, + [2009225] = { + ["coords"] = {}, + }, + [2009226] = { + ["coords"] = {}, + }, + [2009227] = { + ["coords"] = {}, + }, + [2009228] = { + ["coords"] = {}, + }, + [2009229] = { + ["coords"] = {}, + }, + [2009230] = { + ["coords"] = {}, + }, + [2009231] = { + ["coords"] = {}, + }, + [2009232] = { + ["coords"] = {}, + }, + [2009233] = { + ["coords"] = {}, + }, + [2009234] = { + ["coords"] = {}, + }, + [2009235] = { + ["coords"] = {}, + }, + [2009236] = { + ["coords"] = {}, + }, + [2009237] = { + ["coords"] = {}, + }, + [2009238] = { + ["coords"] = {}, + }, + [2009239] = { + ["coords"] = {}, + }, + [2009240] = { + ["coords"] = {}, + }, + [2009241] = { + ["coords"] = {}, + }, + [2009242] = { + ["coords"] = {}, + }, + [2009243] = { + ["coords"] = {}, + }, + [2009244] = { + ["coords"] = {}, + }, + [2009245] = { + ["coords"] = {}, + }, + [2009246] = { + ["coords"] = {}, + }, + [2009247] = { + ["coords"] = {}, + }, + [2009248] = { + ["coords"] = {}, + }, + [2009249] = { + ["coords"] = {}, + }, + [2009250] = { + ["coords"] = {}, + }, + [2009251] = { + ["coords"] = {}, + }, + [2009252] = { + ["coords"] = {}, + }, + [2009253] = { + ["coords"] = {}, + }, + [2009254] = { + ["coords"] = {}, + }, + [2009255] = { + ["coords"] = {}, + }, + [2009256] = { + ["coords"] = {}, + }, + [2009257] = { + ["coords"] = {}, + }, + [2009258] = { + ["coords"] = {}, + }, + [2009259] = { + ["coords"] = {}, + }, + [2009260] = { + ["coords"] = {}, + }, + [2009261] = { + ["coords"] = {}, + }, + [2009262] = { + ["coords"] = {}, + }, + [2009263] = { + ["coords"] = {}, + }, + [2009264] = { + ["coords"] = {}, + }, + [2009265] = { + ["coords"] = {}, + }, + [2009266] = { + ["coords"] = {}, + }, + [2009267] = { + ["coords"] = {}, + }, + [2009268] = { + ["coords"] = {}, + }, + [2009269] = { + ["coords"] = {}, + }, + [2009270] = { + ["coords"] = {}, + }, + [2009271] = { + ["coords"] = {}, + }, + [2009272] = { + ["coords"] = {}, + }, + [2009273] = { + ["coords"] = {}, + }, + [2009274] = { + ["coords"] = {}, + }, + [2009275] = { + ["coords"] = {}, + }, + [2009276] = { + ["coords"] = {}, + }, + [2009277] = { + ["coords"] = {}, + }, + [2009278] = { + ["coords"] = {}, + }, + [2009279] = { + ["coords"] = {}, + }, + [2009280] = { + ["coords"] = {}, + }, + [2009281] = { + ["coords"] = {}, + }, + [2009282] = { + ["coords"] = {}, + }, + [2009283] = { + ["coords"] = {}, + }, + [2009284] = { + ["coords"] = {}, + }, + [2009285] = { + ["coords"] = {}, + }, + [2009286] = { + ["coords"] = {}, + }, + [2009287] = { + ["coords"] = {}, + }, + [2009288] = { + ["coords"] = {}, + }, + [2009289] = { + ["coords"] = {}, + }, + [2009290] = { + ["coords"] = {}, + }, + [2009291] = { + ["coords"] = {}, + }, + [2009292] = { + ["coords"] = {}, + }, + [2009293] = { + ["coords"] = {}, + }, + [2009294] = { + ["coords"] = {}, + }, + [2009295] = { + ["coords"] = {}, + }, + [2009296] = { + ["coords"] = {}, + }, + [2009297] = { + ["coords"] = {}, + }, + [2009298] = { + ["coords"] = {}, + }, + [2009299] = { + ["coords"] = {}, + }, + [2009300] = { + ["coords"] = {}, + }, + [2009301] = { + ["coords"] = {}, + }, + [2009302] = { + ["coords"] = {}, + }, + [2009303] = { + ["coords"] = {}, + }, + [2009304] = { + ["coords"] = {}, + }, + [2009305] = { + ["coords"] = {}, + }, + [2009306] = { + ["coords"] = {}, + }, + [2009307] = { + ["coords"] = {}, + }, + [2009308] = { + ["coords"] = {}, + }, + [2009309] = { + ["coords"] = {}, + }, + [2009310] = { + ["coords"] = {}, + }, + [2009311] = { + ["coords"] = {}, + }, + [2009312] = { + ["coords"] = {}, + }, + [2009313] = { + ["coords"] = {}, + }, + [2009314] = { + ["coords"] = {}, + }, + [2009315] = { + ["coords"] = {}, + }, + [2009316] = { + ["coords"] = {}, + }, + [2009317] = { + ["coords"] = {}, + }, + [2009318] = { + ["coords"] = {}, + }, + [2009319] = { + ["coords"] = {}, + }, + [2009320] = { + ["coords"] = {}, + }, + [2009321] = { + ["coords"] = {}, + }, + [2009322] = { + ["coords"] = {}, + }, + [2009323] = { + ["coords"] = {}, + }, + [2009324] = { + ["coords"] = { + [1] = { 76.1, 42.2, 357, 300 }, + [2] = { 64.4, 45, 1519, 25 }, + }, + }, + [2009325] = { + ["coords"] = { + [1] = { 28.3, 58, 141, 300 }, + [2] = { 65, 46.4, 1519, 25 }, + [3] = { 53.4, 53.4, 1657, 300 }, + }, + }, + [2009326] = { + ["coords"] = { + [1] = { 76.1, 42.3, 357, 300 }, + }, + }, + [2009327] = { + ["coords"] = { + [1] = { 65.1, 46.5, 1519, 25 }, + [2] = { 64.6, 44.8, 1519, 25 }, + }, + }, + [2009328] = { + ["coords"] = { + [1] = { 66.2, 46.4, 1519, 25 }, + }, + }, + [2009329] = { + ["coords"] = { + [1] = { 66.1, 46.3, 1519, 25 }, + }, + }, + [2009330] = { + ["coords"] = {}, + }, + [2009331] = { + ["coords"] = {}, + }, + [2009332] = { + ["coords"] = {}, + }, + [2009333] = { + ["coords"] = {}, + }, + [2009334] = { + ["coords"] = {}, + }, + [2009335] = { + ["coords"] = {}, + }, + [2009336] = { + ["coords"] = {}, + }, + [2009337] = { + ["coords"] = {}, + }, + [2009338] = { + ["coords"] = {}, + }, + [2009339] = { + ["coords"] = {}, + }, + [2009340] = { + ["coords"] = {}, + }, + [2009341] = { + ["coords"] = {}, + }, + [2009342] = { + ["coords"] = {}, + }, + [2009343] = { + ["coords"] = {}, + }, + [2009344] = { + ["coords"] = {}, + }, + [2009345] = { + ["coords"] = {}, + }, + [2009346] = { + ["coords"] = {}, + }, + [2009347] = { + ["coords"] = {}, + }, + [2009348] = { + ["coords"] = {}, + }, + [2009349] = { + ["coords"] = {}, + }, + [2009350] = { + ["coords"] = {}, + }, + [2009351] = { + ["coords"] = {}, + }, + [2009352] = { + ["coords"] = {}, + }, + [2009353] = { + ["coords"] = {}, + }, + [2009354] = { + ["coords"] = {}, + }, + [2009355] = { + ["coords"] = {}, + }, + [2009356] = { + ["coords"] = {}, + }, + [2009357] = { + ["coords"] = {}, + }, + [2009358] = { + ["coords"] = {}, + }, + [2009359] = { + ["coords"] = {}, + }, + [2009360] = { + ["coords"] = {}, + }, + [2009361] = { + ["coords"] = {}, + }, + [2009362] = { + ["coords"] = {}, + }, + [2009363] = { + ["coords"] = {}, + }, + [2009364] = { + ["coords"] = {}, + }, + [2009365] = { + ["coords"] = {}, + }, + [2009366] = { + ["coords"] = {}, + }, + [2009367] = { + ["coords"] = {}, + }, + [2009368] = { + ["coords"] = {}, + }, + [2009369] = { + ["coords"] = {}, + }, + [2009370] = { + ["coords"] = {}, + }, + [2009371] = { + ["coords"] = {}, + }, + [2009372] = { + ["coords"] = {}, + }, + [2009373] = { + ["coords"] = {}, + }, + [2009374] = { + ["coords"] = {}, + }, + [2009375] = { + ["coords"] = {}, + }, + [2009376] = { + ["coords"] = {}, + }, + [2009377] = { + ["coords"] = {}, + }, + [2009378] = { + ["coords"] = {}, + }, + [2009379] = { + ["coords"] = {}, + }, + [2009380] = { + ["coords"] = {}, + }, + [2009381] = { + ["coords"] = {}, + }, + [2009382] = { + ["coords"] = {}, + }, + [2009383] = { + ["coords"] = {}, + }, + [2009384] = { + ["coords"] = {}, + }, + [2009385] = { + ["coords"] = {}, + }, + [2009386] = { + ["coords"] = {}, + }, + [2009387] = { + ["coords"] = {}, + }, + [2009388] = { + ["coords"] = {}, + }, + [2009389] = { + ["coords"] = {}, + }, + [2009390] = { + ["coords"] = {}, + }, + [2009391] = { + ["coords"] = {}, + }, + [2009392] = { + ["coords"] = {}, + }, + [2009393] = { + ["coords"] = {}, + }, + [2009394] = { + ["coords"] = {}, + }, + [2009395] = { + ["coords"] = {}, + }, + [2009396] = { + ["coords"] = {}, + }, + [2009397] = { + ["coords"] = {}, + }, + [2009398] = { + ["coords"] = {}, + }, + [2009399] = { + ["coords"] = {}, + }, + [2009400] = { + ["coords"] = {}, + }, + [2009401] = { + ["coords"] = {}, + }, + [2009402] = { + ["coords"] = {}, + }, + [2009403] = { + ["coords"] = {}, + }, + [2009404] = { + ["coords"] = {}, + }, + [2009405] = { + ["coords"] = {}, + }, + [2009406] = { + ["coords"] = {}, + }, + [2009407] = { + ["coords"] = {}, + }, + [2009408] = { + ["coords"] = {}, + }, + [2009409] = { + ["coords"] = {}, + }, + [2009410] = { + ["coords"] = {}, + }, + [2009411] = { + ["coords"] = {}, + }, + [2009412] = { + ["coords"] = {}, + }, + [2009413] = { + ["coords"] = {}, + }, + [2009414] = { + ["coords"] = {}, + }, + [2009415] = { + ["coords"] = {}, + }, + [2009416] = { + ["coords"] = {}, + }, + [2009417] = { + ["coords"] = {}, + }, + [2009418] = { + ["coords"] = {}, + }, + [2009419] = { + ["coords"] = {}, + }, + [2009420] = { + ["coords"] = {}, + }, + [2009421] = { + ["coords"] = {}, + }, + [2009422] = { + ["coords"] = {}, + }, + [2009423] = { + ["coords"] = {}, + }, + [2009424] = { + ["coords"] = {}, + }, + [2009425] = { + ["coords"] = {}, + }, + [2009426] = { + ["coords"] = {}, + }, + [2009427] = { + ["coords"] = {}, + }, + [2009428] = { + ["coords"] = {}, + }, + [2009429] = { + ["coords"] = {}, + }, + [2009430] = { + ["coords"] = {}, + }, + [2009431] = { + ["coords"] = {}, + }, + [2009432] = { + ["coords"] = {}, + }, + [2009433] = { + ["coords"] = {}, + }, + [2009434] = { + ["coords"] = {}, + }, + [2009435] = { + ["coords"] = {}, + }, + [2009436] = { + ["coords"] = {}, + }, + [2009437] = { + ["coords"] = {}, + }, + [2009438] = { + ["coords"] = {}, + }, + [2009439] = { + ["coords"] = {}, + }, + [2009440] = { + ["coords"] = {}, + }, + [2009441] = { + ["coords"] = {}, + }, + [2009442] = { + ["coords"] = {}, + }, + [2009443] = { + ["coords"] = {}, + }, + [2009444] = { + ["coords"] = {}, + }, + [2009445] = { + ["coords"] = {}, + }, + [2009446] = { + ["coords"] = {}, + }, + [2009447] = { + ["coords"] = {}, + }, + [2009448] = { + ["coords"] = {}, + }, + [2009449] = { + ["coords"] = {}, + }, + [2009450] = { + ["coords"] = {}, + }, + [2009451] = { + ["coords"] = {}, + }, + [2009452] = { + ["coords"] = {}, + }, + [2009453] = { + ["coords"] = {}, + }, + [2009454] = { + ["coords"] = {}, + }, + [2009455] = { + ["coords"] = {}, + }, + [2009456] = { + ["coords"] = {}, + }, + [2009457] = { + ["coords"] = {}, + }, + [2009458] = { + ["coords"] = {}, + }, + [2009459] = { + ["coords"] = {}, + }, + [2009460] = { + ["coords"] = {}, + }, + [2009461] = { + ["coords"] = {}, + }, + [2009462] = { + ["coords"] = {}, + }, + [2009463] = { + ["coords"] = {}, + }, + [2009464] = { + ["coords"] = {}, + }, + [2009465] = { + ["coords"] = {}, + }, + [2009466] = { + ["coords"] = {}, + }, + [2009467] = { + ["coords"] = {}, + }, + [2009468] = { + ["coords"] = {}, + }, + [2009469] = { + ["coords"] = {}, + }, + [2009470] = { + ["coords"] = {}, + }, + [2009471] = { + ["coords"] = {}, + }, + [2009472] = { + ["coords"] = {}, + }, + [2009473] = { + ["coords"] = {}, + }, + [2009474] = { + ["coords"] = {}, + }, + [2009475] = { + ["coords"] = {}, + }, + [2009476] = { + ["coords"] = {}, + }, + [2009477] = { + ["coords"] = {}, + }, + [2009478] = { + ["coords"] = {}, + }, + [2009479] = { + ["coords"] = {}, + }, + [2009480] = { + ["coords"] = {}, + }, + [2009481] = { + ["coords"] = {}, + }, + [2009482] = { + ["coords"] = {}, + }, + [2009483] = { + ["coords"] = {}, + }, + [2009484] = { + ["coords"] = {}, + }, + [2009485] = { + ["coords"] = {}, + }, + [2009486] = { + ["coords"] = {}, + }, + [2009487] = { + ["coords"] = {}, + }, + [2009488] = { + ["coords"] = {}, + }, + [2009489] = { + ["coords"] = {}, + }, + [2009490] = { + ["coords"] = {}, + }, + [2009491] = { + ["coords"] = {}, + }, + [2009492] = { + ["coords"] = {}, + }, + [2009493] = { + ["coords"] = {}, + }, + [2009494] = { + ["coords"] = {}, + }, + [2009495] = { + ["coords"] = {}, + }, + [2009496] = { + ["coords"] = {}, + }, + [2009497] = { + ["coords"] = {}, + }, + [2009498] = { + ["coords"] = {}, + }, + [2009499] = { + ["coords"] = {}, + }, + [2009500] = { + ["coords"] = {}, + }, + [2009501] = { + ["coords"] = {}, + }, + [2009502] = { + ["coords"] = {}, + }, + [2009503] = { + ["coords"] = {}, + }, + [2009504] = { + ["coords"] = {}, + }, + [2009505] = { + ["coords"] = {}, + }, + [2009506] = { + ["coords"] = {}, + }, + [2009507] = { + ["coords"] = {}, + }, + [2009508] = { + ["coords"] = {}, + }, + [2009509] = { + ["coords"] = {}, + }, + [2009510] = { + ["coords"] = {}, + }, + [2009511] = { + ["coords"] = {}, + }, + [2009512] = { + ["coords"] = {}, + }, + [2009513] = { + ["coords"] = {}, + }, + [2009514] = { + ["coords"] = {}, + }, + [2009515] = { + ["coords"] = {}, + }, + [2009516] = { + ["coords"] = {}, + }, + [2009517] = { + ["coords"] = {}, + }, + [2009518] = { + ["coords"] = {}, + }, + [2009519] = { + ["coords"] = {}, + }, + [2009520] = { + ["coords"] = {}, + }, + [2009521] = { + ["coords"] = {}, + }, + [2009522] = { + ["coords"] = {}, + }, + [2009523] = { + ["coords"] = {}, + }, + [2009524] = { + ["coords"] = {}, + }, + [2009525] = { + ["coords"] = {}, + }, + [2009526] = { + ["coords"] = {}, + }, + [2009527] = { + ["coords"] = {}, + }, + [2009528] = { + ["coords"] = {}, + }, + [2009529] = { + ["coords"] = {}, + }, + [2009530] = { + ["coords"] = {}, + }, + [2009531] = { + ["coords"] = {}, + }, + [2009532] = { + ["coords"] = {}, + }, + [2009533] = { + ["coords"] = {}, + }, + [2009534] = { + ["coords"] = {}, + }, + [2009535] = { + ["coords"] = {}, + }, + [2009536] = { + ["coords"] = {}, + }, + [2009537] = { + ["coords"] = {}, + }, + [2009538] = { + ["coords"] = {}, + }, + [2009539] = { + ["coords"] = {}, + }, + [2009540] = { + ["coords"] = {}, + }, + [2009541] = { + ["coords"] = {}, + }, + [2009542] = { + ["coords"] = {}, + }, + [2009543] = { + ["coords"] = {}, + }, + [2009544] = { + ["coords"] = {}, + }, + [2009545] = { + ["coords"] = {}, + }, + [2009546] = { + ["coords"] = {}, + }, + [2009547] = { + ["coords"] = {}, + }, + [2009548] = { + ["coords"] = {}, + }, + [2009549] = { + ["coords"] = {}, + }, + [2009550] = { + ["coords"] = {}, + }, + [2009551] = { + ["coords"] = {}, + }, + [2009552] = { + ["coords"] = {}, + }, + [2009553] = { + ["coords"] = {}, + }, + [2009554] = { + ["coords"] = {}, + }, + [2009555] = { + ["coords"] = {}, + }, + [2009556] = { + ["coords"] = {}, + }, + [2009557] = { + ["coords"] = {}, + }, + [2009558] = { + ["coords"] = {}, + }, + [2009559] = { + ["coords"] = {}, + }, + [2009560] = { + ["coords"] = {}, + }, + [2009561] = { + ["coords"] = {}, + }, + [2009562] = { + ["coords"] = {}, + }, + [2009563] = { + ["coords"] = {}, + }, + [2009564] = { + ["coords"] = {}, + }, + [2009565] = { + ["coords"] = {}, + }, + [2009566] = { + ["coords"] = {}, + }, + [2009567] = { + ["coords"] = {}, + }, + [2009568] = { + ["coords"] = {}, + }, + [2009569] = { + ["coords"] = {}, + }, + [2009570] = { + ["coords"] = {}, + }, + [2009571] = { + ["coords"] = {}, + }, + [2009572] = { + ["coords"] = {}, + }, + [2009573] = { + ["coords"] = {}, + }, + [2009574] = { + ["coords"] = {}, + }, + [2009575] = { + ["coords"] = {}, + }, + [2009576] = { + ["coords"] = {}, + }, + [2009577] = { + ["coords"] = {}, + }, + [2009578] = { + ["coords"] = {}, + }, + [2009579] = { + ["coords"] = {}, + }, + [2009580] = { + ["coords"] = {}, + }, + [2009581] = { + ["coords"] = {}, + }, + [2009582] = { + ["coords"] = {}, + }, + [2009583] = { + ["coords"] = {}, + }, + [2009584] = { + ["coords"] = {}, + }, + [2009585] = { + ["coords"] = {}, + }, + [2009586] = { + ["coords"] = {}, + }, + [2009587] = { + ["coords"] = {}, + }, + [2009588] = { + ["coords"] = {}, + }, + [2009589] = { + ["coords"] = {}, + }, + [2009590] = { + ["coords"] = {}, + }, + [2009591] = { + ["coords"] = {}, + }, + [2009592] = { + ["coords"] = {}, + }, + [2009593] = { + ["coords"] = {}, + }, + [2009594] = { + ["coords"] = {}, + }, + [2009595] = { + ["coords"] = {}, + }, + [2009596] = { + ["coords"] = {}, + }, + [2009597] = { + ["coords"] = {}, + }, + [2009598] = { + ["coords"] = {}, + }, + [2009599] = { + ["coords"] = {}, + }, + [2009600] = { + ["coords"] = {}, + }, + [2009601] = { + ["coords"] = {}, + }, + [2009602] = { + ["coords"] = {}, + }, + [2009603] = { + ["coords"] = {}, + }, + [2009604] = { + ["coords"] = {}, + }, + [2009605] = { + ["coords"] = {}, + }, + [2009606] = { + ["coords"] = {}, + }, + [2009607] = { + ["coords"] = {}, + }, + [2009608] = { + ["coords"] = {}, + }, + [2009609] = { + ["coords"] = {}, + }, + [2009610] = { + ["coords"] = {}, + }, + [2009611] = { + ["coords"] = {}, + }, + [2009612] = { + ["coords"] = {}, + }, + [2009613] = { + ["coords"] = {}, + }, + [2009614] = { + ["coords"] = {}, + }, + [2009615] = { + ["coords"] = {}, + }, + [2009616] = { + ["coords"] = {}, + }, + [2009617] = { + ["coords"] = {}, + }, + [2009618] = { + ["coords"] = {}, + }, + [2009619] = { + ["coords"] = {}, + }, + [2009620] = { + ["coords"] = {}, + }, + [2009621] = { + ["coords"] = {}, + }, + [2009622] = { + ["coords"] = {}, + }, + [2009623] = { + ["coords"] = {}, + }, + [2009624] = { + ["coords"] = {}, + }, + [2009625] = { + ["coords"] = {}, + }, + [2009626] = { + ["coords"] = {}, + }, + [2009627] = { + ["coords"] = {}, + }, + [2009628] = { + ["coords"] = {}, + }, + [2009629] = { + ["coords"] = {}, + }, + [2009630] = { + ["coords"] = {}, + }, + [2009631] = { + ["coords"] = {}, + }, + [2009632] = { + ["coords"] = {}, + }, + [2009633] = { + ["coords"] = {}, + }, + [2009634] = { + ["coords"] = {}, + }, + [2009635] = { + ["coords"] = {}, + }, + [2009636] = { + ["coords"] = {}, + }, + [2009637] = { + ["coords"] = {}, + }, + [2009638] = { + ["coords"] = {}, + }, + [2009639] = { + ["coords"] = {}, + }, + [2009640] = { + ["coords"] = {}, + }, + [2009641] = { + ["coords"] = {}, + }, + [2009642] = { + ["coords"] = {}, + }, + [2009643] = { + ["coords"] = {}, + }, + [2009644] = { + ["coords"] = {}, + }, + [2009645] = { + ["coords"] = {}, + }, + [2009646] = { + ["coords"] = {}, + }, + [2009647] = { + ["coords"] = {}, + }, + [2009648] = { + ["coords"] = {}, + }, + [2009649] = { + ["coords"] = {}, + }, + [2009650] = { + ["coords"] = {}, + }, + [2009651] = { + ["coords"] = {}, + }, + [2009652] = { + ["coords"] = {}, + }, + [2009653] = { + ["coords"] = {}, + }, + [2009654] = { + ["coords"] = {}, + }, + [2009655] = { + ["coords"] = {}, + }, + [2009656] = { + ["coords"] = {}, + }, + [2009657] = { + ["coords"] = {}, + }, + [2009658] = { + ["coords"] = {}, + }, + [2009659] = { + ["coords"] = {}, + }, + [2009660] = { + ["coords"] = {}, + }, + [2009661] = { + ["coords"] = {}, + }, + [2009662] = { + ["coords"] = {}, + }, + [2009663] = { + ["coords"] = {}, + }, + [2009664] = { + ["coords"] = {}, + }, + [2009665] = { + ["coords"] = {}, + }, + [2009666] = { + ["coords"] = {}, + }, + [2009667] = { + ["coords"] = {}, + }, + [2009668] = { + ["coords"] = {}, + }, + [2009669] = { + ["coords"] = {}, + }, + [2009670] = { + ["coords"] = {}, + }, + [2009671] = { + ["coords"] = {}, + }, + [2009672] = { + ["coords"] = {}, + }, + [2009673] = { + ["coords"] = {}, + }, + [2009674] = { + ["coords"] = {}, + }, + [2009675] = { + ["coords"] = {}, + }, + [2009676] = { + ["coords"] = {}, + }, + [2009677] = { + ["coords"] = {}, + }, + [2009678] = { + ["coords"] = {}, + }, + [2009679] = { + ["coords"] = {}, + }, + [2009680] = { + ["coords"] = {}, + }, + [2009681] = { + ["coords"] = {}, + }, + [2009682] = { + ["coords"] = {}, + }, + [2009683] = { + ["coords"] = {}, + }, + [2009684] = { + ["coords"] = {}, + }, + [2009685] = { + ["coords"] = {}, + }, + [2009686] = { + ["coords"] = {}, + }, + [2009687] = { + ["coords"] = {}, + }, + [2009688] = { + ["coords"] = {}, + }, + [2009689] = { + ["coords"] = {}, + }, + [2009690] = { + ["coords"] = {}, + }, + [2009691] = { + ["coords"] = {}, + }, + [2009692] = { + ["coords"] = {}, + }, + [2009693] = { + ["coords"] = {}, + }, + [2009694] = { + ["coords"] = {}, + }, + [2009695] = { + ["coords"] = {}, + }, + [2009696] = { + ["coords"] = {}, + }, + [2009697] = { + ["coords"] = {}, + }, + [2009698] = { + ["coords"] = {}, + }, + [2009699] = { + ["coords"] = {}, + }, + [2009700] = { + ["coords"] = {}, + }, + [2009701] = { + ["coords"] = {}, + }, + [2009702] = { + ["coords"] = {}, + }, + [2009703] = { + ["coords"] = {}, + }, + [2009704] = { + ["coords"] = {}, + }, + [2009705] = { + ["coords"] = {}, + }, + [2009706] = { + ["coords"] = {}, + }, + [2009707] = { + ["coords"] = {}, + }, + [2009708] = { + ["coords"] = {}, + }, + [2009709] = { + ["coords"] = {}, + }, + [2009710] = { + ["coords"] = {}, + }, + [2009711] = { + ["coords"] = {}, + }, + [2009712] = { + ["coords"] = {}, + }, + [2009713] = { + ["coords"] = {}, + }, + [2009714] = { + ["coords"] = { + [1] = { 24.9, 11.8, 406, 300 }, + }, + }, + [2009715] = { + ["coords"] = {}, + }, + [2009716] = { + ["coords"] = { + [1] = { 25.4, 66.6, 16, 300 }, + [2] = { 51.7, 52.6, 409, 300 }, + }, + }, + [2009717] = { + ["coords"] = {}, + }, + [2009718] = { + ["coords"] = { + [1] = { 65.3, 12.5, 33, 300 }, + }, + }, + [2009719] = { + ["coords"] = {}, + }, + [2009720] = { + ["coords"] = { + [1] = { 52.5, 51, 409, 300 }, + }, + }, + [2009721] = { + ["coords"] = {}, + }, + [2009722] = { + ["coords"] = {}, + }, + [2009723] = { + ["coords"] = {}, + }, + [2009724] = { + ["coords"] = {}, + }, + [2009725] = { + ["coords"] = {}, + }, + [2009726] = { + ["coords"] = {}, + }, + [2009727] = { + ["coords"] = {}, + }, + [2009728] = { + ["coords"] = {}, + }, + [2009729] = { + ["coords"] = {}, + }, + [2009730] = { + ["coords"] = {}, + }, + [2009731] = { + ["coords"] = {}, + }, + [2009732] = { + ["coords"] = {}, + }, + [2009733] = { + ["coords"] = {}, + }, + [2009734] = { + ["coords"] = {}, + }, + [2009735] = { + ["coords"] = { + [1] = { 22.9, 9, 406, 300 }, + }, + }, + [2009736] = { + ["coords"] = {}, + }, + [2009737] = { + ["coords"] = {}, + }, + [2009738] = { + ["coords"] = {}, + }, + [2009739] = { + ["coords"] = { + [1] = { 25.1, 14.7, 406, 25 }, + [2] = { 24.1, 14.6, 406, 25 }, + [3] = { 24.5, 14.4, 406, 25 }, + [4] = { 24.6, 14, 406, 25 }, + [5] = { 23, 12.8, 406, 25 }, + [6] = { 23.7, 12.4, 406, 25 }, + [7] = { 23.8, 12.1, 406, 25 }, + [8] = { 24.2, 11.7, 406, 25 }, + [9] = { 23.9, 11.7, 406, 25 }, + [10] = { 24.6, 10.7, 406, 25 }, + [11] = { 24.6, 10.3, 406, 25 }, + }, + }, + [2009740] = { + ["coords"] = {}, + }, + [2009741] = { + ["coords"] = {}, + }, + [2009742] = { + ["coords"] = { + [1] = { 41.6, 71.8, 2040, 25 }, + [2] = { 41, 71.8, 2040, 25 }, + [3] = { 40, 70.8, 2040, 25 }, + [4] = { 38.2, 69.8, 2040, 25 }, + [5] = { 39.8, 69.8, 2040, 25 }, + [6] = { 38.2, 69.6, 2040, 25 }, + [7] = { 37.1, 69.3, 2040, 25 }, + [8] = { 37.8, 68.8, 2040, 25 }, + [9] = { 37.6, 68.7, 2040, 25 }, + [10] = { 57.6, 36.2, 5225, 25 }, + [11] = { 57.3, 36.2, 5225, 25 }, + [12] = { 56.8, 35.7, 5225, 25 }, + [13] = { 56, 35.2, 5225, 25 }, + [14] = { 56.7, 35.2, 5225, 25 }, + [15] = { 56, 35.1, 5225, 25 }, + [16] = { 55.4, 35, 5225, 25 }, + [17] = { 55.8, 34.8, 5225, 25 }, + [18] = { 55.7, 34.7, 5225, 25 }, + }, + }, + [2009743] = { + ["coords"] = {}, + }, + [2009744] = { + ["coords"] = {}, + }, + [2009745] = { + ["coords"] = { + [1] = { 41.3, 71.8, 2040, 25 }, + [2] = { 39.9, 70.3, 2040, 25 }, + [3] = { 38, 70.2, 2040, 25 }, + [4] = { 38.1, 69, 2040, 25 }, + [5] = { 37.2, 68.9, 2040, 25 }, + [6] = { 57.4, 36.2, 5225, 25 }, + [7] = { 56.8, 35.5, 5225, 25 }, + [8] = { 55.9, 35.4, 5225, 25 }, + [9] = { 55.9, 34.9, 5225, 25 }, + [10] = { 55.5, 34.8, 5225, 25 }, + }, + }, + [2009746] = { + ["coords"] = { + [1] = { 60, 77.2, 38, 300 }, + [2] = { 59.7, 77.1, 38, 300 }, + [3] = { 61.8, 75.1, 38, 300 }, + [4] = { 79.5, 67.2, 38, 25 }, + [5] = { 80.3, 66.3, 38, 25 }, + [6] = { 79.2, 66.1, 38, 25 }, + [7] = { 82, 63.7, 38, 25 }, + [8] = { 81, 63.2, 38, 25 }, + [9] = { 84.7, 62.9, 38, 25 }, + [10] = { 84.9, 61.4, 38, 25 }, + [11] = { 81, 61.3, 38, 25 }, + [12] = { 83.5, 60.9, 38, 25 }, + [13] = { 82.6, 59.6, 38, 25 }, + [14] = { 81.1, 59.3, 38, 25 }, + [15] = { 40.9, 71.8, 2040, 25 }, + [16] = { 25.8, 70.9, 2040, 300 }, + [17] = { 40, 70.8, 2040, 25 }, + [18] = { 41.1, 70.7, 2040, 25 }, + [19] = { 25.1, 70.2, 2040, 25 }, + [20] = { 42.2, 70.1, 2040, 25 }, + [21] = { 41.3, 70, 2040, 25 }, + [22] = { 41.8, 69.9, 2040, 25 }, + [23] = { 40.9, 69.5, 2040, 25 }, + [24] = { 27.7, 69.4, 2040, 300 }, + [25] = { 42, 69.4, 2040, 25 }, + [26] = { 24.8, 69.4, 2040, 25 }, + [27] = { 42.5, 68.9, 2040, 25 }, + [28] = { 24.9, 68.5, 2040, 25 }, + [29] = { 42.4, 68.4, 2040, 25 }, + [30] = { 25.1, 67.7, 2040, 25 }, + [31] = { 25.5, 67.1, 2040, 25 }, + [32] = { 27, 67, 2040, 25 }, + [33] = { 25.9, 66.8, 2040, 25 }, + [34] = { 26.5, 66.7, 2040, 25 }, + [35] = { 46.2, 64.1, 2040, 25 }, + [36] = { 57.3, 36.2, 5225, 25 }, + [37] = { 50.1, 35.8, 5225, 300 }, + [38] = { 56.8, 35.7, 5225, 25 }, + [39] = { 57.3, 35.7, 5225, 25 }, + [40] = { 49.7, 35.4, 5225, 25 }, + [41] = { 57.9, 35.4, 5225, 25 }, + [42] = { 57.4, 35.3, 5225, 25 }, + [43] = { 57.7, 35.3, 5225, 25 }, + [44] = { 57.3, 35.1, 5225, 25 }, + [45] = { 51, 35, 5225, 300 }, + [46] = { 57.8, 35, 5225, 25 }, + [47] = { 49.6, 35, 5225, 25 }, + [48] = { 58, 34.8, 5225, 25 }, + [49] = { 49.6, 34.6, 5225, 25 }, + [50] = { 58, 34.6, 5225, 25 }, + [51] = { 49.7, 34.3, 5225, 25 }, + [52] = { 49.9, 33.9, 5225, 25 }, + [53] = { 50.6, 33.9, 5225, 25 }, + [54] = { 50.1, 33.8, 5225, 25 }, + [55] = { 50.4, 33.8, 5225, 25 }, + [56] = { 59.8, 32.6, 5225, 25 }, + [57] = { 29.3, 83.8, 5602, 300 }, + [58] = { 29.1, 83.8, 5602, 300 }, + [59] = { 30.2, 82.8, 5602, 300 }, + [60] = { 39.3, 78.7, 5602, 25 }, + [61] = { 39.6, 78.2, 5602, 25 }, + [62] = { 39.1, 78.1, 5602, 25 }, + [63] = { 40.6, 76.9, 5602, 25 }, + [64] = { 40, 76.6, 5602, 25 }, + [65] = { 41.9, 76.5, 5602, 25 }, + [66] = { 42, 75.7, 5602, 25 }, + [67] = { 40, 75.7, 5602, 25 }, + [68] = { 41.3, 75.5, 5602, 25 }, + [69] = { 40.9, 74.8, 5602, 25 }, + [70] = { 40.1, 74.6, 5602, 25 }, + }, + }, + [2009747] = { + ["coords"] = {}, + }, + [2009748] = { + ["coords"] = { + [1] = { 41.7, 70.6, 2040, 25 }, + [2] = { 42.4, 69.4, 2040, 25 }, + [3] = { 41.6, 67.6, 2040, 25 }, + [4] = { 57.6, 35.6, 5225, 25 }, + [5] = { 58, 35, 5225, 25 }, + [6] = { 57.6, 34.2, 5225, 25 }, + }, + }, + [2009749] = { + ["coords"] = {}, + }, + [2009750] = { + ["coords"] = {}, + }, + [2009751] = { + ["coords"] = { + [1] = { 37.3, 68.9, 1519, 300 }, + [2] = { 37.3, 68.8, 1519, 300 }, + }, + }, + [2009752] = { + ["coords"] = {}, + }, + [2009753] = { + ["coords"] = {}, + }, + [2009754] = { + ["coords"] = { + [1] = { 37.2, 69.1, 1519, 300 }, + }, + }, + [2009755] = { + ["coords"] = {}, + }, + [2009756] = { + ["coords"] = { + [1] = { 60, 68, 85, 300 }, + [2] = { 59.8, 68, 85, 300 }, + [3] = { 59.7, 68, 85, 300 }, + [4] = { 59.8, 66.9, 85, 300 }, + [5] = { 60, 66.9, 85, 300 }, + [6] = { 59.7, 66.9, 85, 300 }, + [7] = { 57.5, 13.8, 1497, 300 }, + [8] = { 56.7, 13.8, 1497, 300 }, + [9] = { 55.9, 13.8, 1497, 300 }, + [10] = { 57.5, 8.7, 1497, 300 }, + }, + }, + [2009757] = { + ["coords"] = { + [1] = { 27.6, 63.3, 11, 300 }, + [2] = { 30.2, 62.6, 11, 300 }, + }, + }, + [2009758] = { + ["coords"] = {}, + }, + [2009759] = { + ["coords"] = {}, + }, + [2009760] = { + ["coords"] = {}, + }, + [2009761] = { + ["coords"] = {}, + }, + [2009762] = { + ["coords"] = {}, + }, + [2009763] = { + ["coords"] = {}, + }, + [2009764] = { + ["coords"] = {}, + }, + [2009765] = { + ["coords"] = {}, + }, + [2009766] = { + ["coords"] = {}, + }, + [2009767] = { + ["coords"] = {}, + }, + [2009768] = { + ["coords"] = {}, + }, + [2009769] = { + ["coords"] = {}, + }, + [2009770] = { + ["coords"] = {}, + }, + [2009771] = { + ["coords"] = {}, + }, + [2009772] = { + ["coords"] = {}, + }, + [2009773] = { + ["coords"] = {}, + }, + [2009774] = { + ["coords"] = {}, + }, + [2009775] = { + ["coords"] = {}, + }, + [2009776] = { + ["coords"] = {}, + }, + [2009777] = { + ["coords"] = {}, + }, + [2009778] = { + ["coords"] = {}, + }, + [2009779] = { + ["coords"] = {}, + }, + [2009780] = { + ["coords"] = {}, + }, + [2009781] = { + ["coords"] = {}, + }, + [2009782] = { + ["coords"] = {}, + }, + [2009783] = { + ["coords"] = {}, + }, + [2009784] = { + ["coords"] = {}, + }, + [2009785] = { + ["coords"] = {}, + }, + [2009786] = { + ["coords"] = {}, + }, + [2009787] = { + ["coords"] = { + [1] = { 83.3, 64.7, 38, 300 }, + [2] = { 83, 62.6, 38, 300 }, + [3] = { 41.2, 77.4, 5602, 300 }, + [4] = { 41, 76.3, 5602, 300 }, + }, + }, + [2009788] = { + ["coords"] = {}, + }, + [2009789] = { + ["coords"] = {}, + }, + [2009790] = { + ["coords"] = {}, + }, + [2009791] = { + ["coords"] = {}, + }, + [2009792] = { + ["coords"] = {}, + }, + [2009793] = { + ["coords"] = {}, + }, + [2009794] = { + ["coords"] = {}, + }, + [2009795] = { + ["coords"] = {}, + }, + [2009796] = { + ["coords"] = {}, + }, + [2009797] = { + ["coords"] = {}, + }, + [2009798] = { + ["coords"] = {}, + }, + [2009799] = { + ["coords"] = {}, + }, + [2009800] = { + ["coords"] = {}, + }, + [2009801] = { + ["coords"] = {}, + }, + [2009802] = { + ["coords"] = {}, + }, + [2009803] = { + ["coords"] = {}, + }, + [2009804] = { + ["coords"] = {}, + }, + [2009805] = { + ["coords"] = {}, + }, + [2009806] = { + ["coords"] = {}, + }, + [2009807] = { + ["coords"] = {}, + }, + [2009808] = { + ["coords"] = {}, + }, + [2009809] = { + ["coords"] = {}, + }, + [2009810] = { + ["coords"] = {}, + }, + [2009811] = { + ["coords"] = {}, + }, + [2009812] = { + ["coords"] = {}, + }, + [2009813] = { + ["coords"] = {}, + }, + [2009814] = { + ["coords"] = {}, + }, + [2009815] = { + ["coords"] = {}, + }, + [2009816] = { + ["coords"] = {}, + }, + [2009817] = { + ["coords"] = {}, + }, + [2009818] = { + ["coords"] = {}, + }, + [2009819] = { + ["coords"] = {}, + }, + [2009820] = { + ["coords"] = {}, + }, + [2009821] = { + ["coords"] = {}, + }, + [2009822] = { + ["coords"] = {}, + }, + [2009823] = { + ["coords"] = {}, + }, + [2009824] = { + ["coords"] = {}, + }, + [2009825] = { + ["coords"] = {}, + }, + [2009826] = { + ["coords"] = {}, + }, + [2009827] = { + ["coords"] = {}, + }, + [2009828] = { + ["coords"] = {}, + }, + [2009829] = { + ["coords"] = {}, + }, + [2009830] = { + ["coords"] = {}, + }, + [2009831] = { + ["coords"] = {}, + }, + [2009832] = { + ["coords"] = {}, + }, + [2009833] = { + ["coords"] = {}, + }, + [2009834] = { + ["coords"] = {}, + }, + [2009835] = { + ["coords"] = {}, + }, + [2009836] = { + ["coords"] = {}, + }, + [2009837] = { + ["coords"] = {}, + }, + [2009838] = { + ["coords"] = {}, + }, + [2009839] = { + ["coords"] = {}, + }, + [2009840] = { + ["coords"] = {}, + }, + [2009841] = { + ["coords"] = {}, + }, + [2009842] = { + ["coords"] = {}, + }, + [2009843] = { + ["coords"] = {}, + }, + [2009844] = { + ["coords"] = {}, + }, + [2009845] = { + ["coords"] = {}, + }, + [2009846] = { + ["coords"] = {}, + }, + [2009847] = { + ["coords"] = {}, + }, + [2009848] = { + ["coords"] = {}, + }, + [2009849] = { + ["coords"] = {}, + }, + [2009850] = { + ["coords"] = {}, + }, + [2009851] = { + ["coords"] = {}, + }, + [2009852] = { + ["coords"] = {}, + }, + [2009853] = { + ["coords"] = {}, + }, + [2009854] = { + ["coords"] = {}, + }, + [2009855] = { + ["coords"] = {}, + }, + [2009856] = { + ["coords"] = {}, + }, + [2009857] = { + ["coords"] = {}, + }, + [2009858] = { + ["coords"] = {}, + }, + [2009859] = { + ["coords"] = {}, + }, + [2009860] = { + ["coords"] = {}, + }, + [2009861] = { + ["coords"] = {}, + }, + [2009862] = { + ["coords"] = {}, + }, + [2009863] = { + ["coords"] = {}, + }, + [2009864] = { + ["coords"] = {}, + }, + [2009865] = { + ["coords"] = {}, + }, + [2009866] = { + ["coords"] = {}, + }, + [2009867] = { + ["coords"] = {}, + }, + [2009868] = { + ["coords"] = {}, + }, + [2009869] = { + ["coords"] = {}, + }, + [2009870] = { + ["coords"] = {}, + }, + [2009871] = { + ["coords"] = {}, + }, + [2009872] = { + ["coords"] = {}, + }, + [2009873] = { + ["coords"] = {}, + }, + [2009874] = { + ["coords"] = {}, + }, + [2009875] = { + ["coords"] = {}, + }, + [2009876] = { + ["coords"] = {}, + }, + [2009877] = { + ["coords"] = {}, + }, + [2009878] = { + ["coords"] = {}, + }, + [2009879] = { + ["coords"] = {}, + }, + [2009880] = { + ["coords"] = {}, + }, + [2009881] = { + ["coords"] = {}, + }, + [2009882] = { + ["coords"] = {}, + }, + [2009883] = { + ["coords"] = {}, + }, + [2009884] = { + ["coords"] = {}, + }, + [2009885] = { + ["coords"] = {}, + }, + [2009886] = { + ["coords"] = {}, + }, + [2009887] = { + ["coords"] = {}, + }, + [2009888] = { + ["coords"] = {}, + }, + [2009889] = { + ["coords"] = {}, + }, + [2009890] = { + ["coords"] = {}, + }, + [2009891] = { + ["coords"] = {}, + }, + [2009892] = { + ["coords"] = {}, + }, + [2009893] = { + ["coords"] = {}, + }, + [2009894] = { + ["coords"] = {}, + }, + [2009895] = { + ["coords"] = {}, + }, + [2009896] = { + ["coords"] = {}, + }, + [2009897] = { + ["coords"] = {}, + }, + [2009898] = { + ["coords"] = {}, + }, + [2009899] = { + ["coords"] = {}, + }, + [2009900] = { + ["coords"] = {}, + }, + [2009901] = { + ["coords"] = {}, + }, + [2009902] = { + ["coords"] = {}, + }, + [2009903] = { + ["coords"] = {}, + }, + [2009904] = { + ["coords"] = {}, + }, + [2009905] = { + ["coords"] = {}, + }, + [2009906] = { + ["coords"] = {}, + }, + [2009907] = { + ["coords"] = {}, + }, + [2009908] = { + ["coords"] = {}, + }, + [2009909] = { + ["coords"] = {}, + }, + [2009910] = { + ["coords"] = {}, + }, + [2009911] = { + ["coords"] = {}, + }, + [2009912] = { + ["coords"] = {}, + }, + [2009913] = { + ["coords"] = {}, + }, + [2009914] = { + ["coords"] = {}, + }, + [2009915] = { + ["coords"] = {}, + }, + [2009916] = { + ["coords"] = {}, + }, + [2009917] = { + ["coords"] = {}, + }, + [2009918] = { + ["coords"] = {}, + }, + [2009919] = { + ["coords"] = {}, + }, + [2009920] = { + ["coords"] = {}, + }, + [2009921] = { + ["coords"] = {}, + }, + [2009922] = { + ["coords"] = {}, + }, + [2009923] = { + ["coords"] = {}, + }, + [2009924] = { + ["coords"] = {}, + }, + [2009925] = { + ["coords"] = {}, + }, + [2009926] = { + ["coords"] = {}, + }, + [2009927] = { + ["coords"] = {}, + }, + [2009928] = { + ["coords"] = {}, + }, + [2009929] = { + ["coords"] = {}, + }, + [2009930] = { + ["coords"] = {}, + }, + [2009931] = { + ["coords"] = {}, + }, + [2009932] = { + ["coords"] = {}, + }, + [2009933] = { + ["coords"] = {}, + }, + [2009934] = { + ["coords"] = {}, + }, + [2009935] = { + ["coords"] = {}, + }, + [2009936] = { + ["coords"] = {}, + }, + [2009937] = { + ["coords"] = {}, + }, + [2009938] = { + ["coords"] = {}, + }, + [2009939] = { + ["coords"] = {}, + }, + [2009940] = { + ["coords"] = {}, + }, + [2009941] = { + ["coords"] = {}, + }, + [2009942] = { + ["coords"] = {}, + }, + [2009943] = { + ["coords"] = {}, + }, + [2009944] = { + ["coords"] = {}, + }, + [2009945] = { + ["coords"] = {}, + }, + [2009946] = { + ["coords"] = {}, + }, + [2009947] = { + ["coords"] = {}, + }, + [2009948] = { + ["coords"] = {}, + }, + [2009949] = { + ["coords"] = {}, + }, + [2009950] = { + ["coords"] = {}, + }, + [2009951] = { + ["coords"] = {}, + }, + [2009952] = { + ["coords"] = {}, + }, + [2009953] = { + ["coords"] = {}, + }, + [2009954] = { + ["coords"] = {}, + }, + [2009955] = { + ["coords"] = {}, + }, + [2009956] = { + ["coords"] = {}, + }, + [2009957] = { + ["coords"] = {}, + }, + [2009958] = { + ["coords"] = {}, + }, + [2009959] = { + ["coords"] = {}, + }, + [2009960] = { + ["coords"] = {}, + }, + [2009961] = { + ["coords"] = {}, + }, + [2009962] = { + ["coords"] = {}, + }, + [2009963] = { + ["coords"] = {}, + }, + [2009964] = { + ["coords"] = {}, + }, + [2009965] = { + ["coords"] = {}, + }, + [2009966] = { + ["coords"] = {}, + }, + [2009967] = { + ["coords"] = {}, + }, + [2009968] = { + ["coords"] = {}, + }, + [2009969] = { + ["coords"] = {}, + }, + [2009970] = { + ["coords"] = {}, + }, + [2009971] = { + ["coords"] = {}, + }, + [2009972] = { + ["coords"] = {}, + }, + [2009973] = { + ["coords"] = {}, + }, + [2009974] = { + ["coords"] = {}, + }, + [2009975] = { + ["coords"] = {}, + }, + [2009976] = { + ["coords"] = {}, + }, + [2009977] = { + ["coords"] = {}, + }, + [2009978] = { + ["coords"] = {}, + }, + [2009979] = { + ["coords"] = {}, + }, + [2009980] = { + ["coords"] = {}, + }, + [2009981] = { + ["coords"] = {}, + }, + [2009982] = { + ["coords"] = {}, + }, + [2009983] = { + ["coords"] = {}, + }, + [2009984] = { + ["coords"] = {}, + }, + [2009985] = { + ["coords"] = {}, + }, + [2009986] = { + ["coords"] = {}, + }, + [2009987] = { + ["coords"] = {}, + }, + [2009988] = { + ["coords"] = {}, + }, + [2009989] = { + ["coords"] = {}, + }, + [2009990] = { + ["coords"] = {}, + }, + [2009991] = { + ["coords"] = {}, + }, + [2009992] = { + ["coords"] = {}, + }, + [2009993] = { + ["coords"] = {}, + }, + [2009994] = { + ["coords"] = {}, + }, + [2009995] = { + ["coords"] = {}, + }, + [2009996] = { + ["coords"] = {}, + }, + [2009997] = { + ["coords"] = { + [1] = { 28.2, 61.7, 2040, 25 }, + [2] = { 51.2, 31.4, 5225, 25 }, + }, + }, + [2009998] = { + ["coords"] = {}, + }, + [2009999] = { + ["coords"] = {}, + }, + [2010000] = { + ["coords"] = {}, + }, + [2010001] = { + ["coords"] = {}, + }, + [2010002] = { + ["coords"] = {}, + }, + [2010003] = { + ["coords"] = {}, + }, + [2010004] = { + ["coords"] = {}, + }, + [2010005] = { + ["coords"] = {}, + }, + [2010006] = { + ["coords"] = {}, + }, + [2010007] = { + ["coords"] = {}, + }, + [2010008] = { + ["coords"] = {}, + }, + [2010009] = { + ["coords"] = {}, + }, + [2010010] = { + ["coords"] = {}, + }, + [2010011] = { + ["coords"] = {}, + }, + [2010012] = { + ["coords"] = {}, + }, + [2010013] = { + ["coords"] = {}, + }, + [2010014] = { + ["coords"] = {}, + }, + [2010015] = { + ["coords"] = {}, + }, + [2010016] = { + ["coords"] = {}, + }, + [2010017] = { + ["coords"] = {}, + }, + [2010018] = { + ["coords"] = {}, + }, + [2010019] = { + ["coords"] = {}, + }, + [2010020] = { + ["coords"] = {}, + }, + [2010021] = { + ["coords"] = {}, + }, + [2010022] = { + ["coords"] = {}, + }, + [2010023] = { + ["coords"] = {}, + }, + [2010024] = { + ["coords"] = {}, + }, + [2010025] = { + ["coords"] = {}, + }, + [2010026] = { + ["coords"] = {}, + }, + [2010027] = { + ["coords"] = {}, + }, + [2010028] = { + ["coords"] = {}, + }, + [2010029] = { + ["coords"] = {}, + }, + [2010030] = { + ["coords"] = {}, + }, + [2010031] = { + ["coords"] = {}, + }, + [2010032] = { + ["coords"] = {}, + }, + [2010033] = { + ["coords"] = {}, + }, + [2010034] = { + ["coords"] = {}, + }, + [2010035] = { + ["coords"] = {}, + }, + [2010036] = { + ["coords"] = {}, + }, + [2010037] = { + ["coords"] = {}, + }, + [2010038] = { + ["coords"] = {}, + }, + [2010039] = { + ["coords"] = {}, + }, + [2010040] = { + ["coords"] = {}, + }, + [2010041] = { + ["coords"] = {}, + }, + [2010042] = { + ["coords"] = {}, + }, + [2010043] = { + ["coords"] = {}, + }, + [2010044] = { + ["coords"] = {}, + }, + [2010045] = { + ["coords"] = {}, + }, + [2010046] = { + ["coords"] = {}, + }, + [2010047] = { + ["coords"] = {}, + }, + [2010048] = { + ["coords"] = {}, + }, + [2010049] = { + ["coords"] = {}, + }, + [2010050] = { + ["coords"] = {}, + }, + [2010051] = { + ["coords"] = {}, + }, + [2010052] = { + ["coords"] = {}, + }, + [2010053] = { + ["coords"] = {}, + }, + [2010054] = { + ["coords"] = {}, + }, + [2010055] = { + ["coords"] = {}, + }, + [2010056] = { + ["coords"] = {}, + }, + [2010057] = { + ["coords"] = {}, + }, + [2010058] = { + ["coords"] = {}, + }, + [2010059] = { + ["coords"] = {}, + }, + [2010060] = { + ["coords"] = {}, + }, + [2010061] = { + ["coords"] = {}, + }, + [2010062] = { + ["coords"] = {}, + }, + [2010063] = { + ["coords"] = {}, + }, + [2010064] = { + ["coords"] = {}, + }, + [2010065] = { + ["coords"] = {}, + }, + [2010066] = { + ["coords"] = {}, + }, + [2010067] = { + ["coords"] = {}, + }, + [2010068] = { + ["coords"] = {}, + }, + [2010069] = { + ["coords"] = {}, + }, + [2010070] = { + ["coords"] = {}, + }, + [2010071] = { + ["coords"] = {}, + }, + [2010072] = { + ["coords"] = {}, + }, + [2010073] = { + ["coords"] = {}, + }, + [2010074] = { + ["coords"] = {}, + }, + [2010075] = { + ["coords"] = {}, + }, + [2010076] = { + ["coords"] = {}, + }, + [2010077] = { + ["coords"] = {}, + }, + [2010078] = { + ["coords"] = {}, + }, + [2010079] = { + ["coords"] = {}, + }, + [2010080] = { + ["coords"] = {}, + }, + [2010081] = { + ["coords"] = {}, + }, + [2010082] = { + ["coords"] = {}, + }, + [2010083] = { + ["coords"] = {}, + }, + [2010084] = { + ["coords"] = {}, + }, + [2010085] = { + ["coords"] = {}, + }, + [2010086] = { + ["coords"] = {}, + }, + [2010087] = { + ["coords"] = {}, + }, + [2010088] = { + ["coords"] = {}, + }, + [2010089] = { + ["coords"] = {}, + }, + [2010090] = { + ["coords"] = {}, + }, + [2010091] = { + ["coords"] = {}, + }, + [2010092] = { + ["coords"] = {}, + }, + [2010093] = { + ["coords"] = {}, + }, + [2010094] = { + ["coords"] = {}, + }, + [2010095] = { + ["coords"] = {}, + }, + [2010096] = { + ["coords"] = {}, + }, + [2010097] = { + ["coords"] = {}, + }, + [2010098] = { + ["coords"] = {}, + }, + [2010099] = { + ["coords"] = {}, + }, + [2010100] = { + ["coords"] = {}, + }, + [2010101] = { + ["coords"] = {}, + }, + [2010102] = { + ["coords"] = {}, + }, + [2010103] = { + ["coords"] = {}, + }, + [2010104] = { + ["coords"] = {}, + }, + [2010105] = { + ["coords"] = {}, + }, + [2010106] = { + ["coords"] = {}, + }, + [2010107] = { + ["coords"] = {}, + }, + [2010108] = { + ["coords"] = {}, + }, + [2010109] = { + ["coords"] = {}, + }, + [2010110] = { + ["coords"] = {}, + }, + [2010111] = { + ["coords"] = {}, + }, + [2010112] = { + ["coords"] = {}, + }, + [2010113] = { + ["coords"] = {}, + }, + [2010114] = { + ["coords"] = {}, + }, + [2010115] = { + ["coords"] = {}, + }, + [2010116] = { + ["coords"] = {}, + }, + [2010117] = { + ["coords"] = {}, + }, + [2010118] = { + ["coords"] = {}, + }, + [2010119] = { + ["coords"] = {}, + }, + [2010120] = { + ["coords"] = {}, + }, + [2010121] = { + ["coords"] = {}, + }, + [2010122] = { + ["coords"] = {}, + }, + [2010123] = { + ["coords"] = {}, + }, + [2010124] = { + ["coords"] = {}, + }, + [2010125] = { + ["coords"] = {}, + }, + [2010126] = { + ["coords"] = {}, + }, + [2010127] = { + ["coords"] = {}, + }, + [2010128] = { + ["coords"] = {}, + }, + [2010129] = { + ["coords"] = {}, + }, + [2010130] = { + ["coords"] = {}, + }, + [2010131] = { + ["coords"] = {}, + }, + [2010132] = { + ["coords"] = {}, + }, + [2010133] = { + ["coords"] = {}, + }, + [2010134] = { + ["coords"] = {}, + }, + [2010135] = { + ["coords"] = {}, + }, + [2010136] = { + ["coords"] = {}, + }, + [2010137] = { + ["coords"] = {}, + }, + [2010138] = { + ["coords"] = {}, + }, + [2010139] = { + ["coords"] = {}, + }, + [2010140] = { + ["coords"] = {}, + }, + [2010141] = { + ["coords"] = {}, + }, + [2010142] = { + ["coords"] = {}, + }, + [2010143] = { + ["coords"] = {}, + }, + [2010144] = { + ["coords"] = {}, + }, + [2010145] = { + ["coords"] = {}, + }, + [2010146] = { + ["coords"] = {}, + }, + [2010147] = { + ["coords"] = {}, + }, + [2010148] = { + ["coords"] = {}, + }, + [2010149] = { + ["coords"] = {}, + }, + [2010150] = { + ["coords"] = {}, + }, + [2010151] = { + ["coords"] = {}, + }, + [2010152] = { + ["coords"] = {}, + }, + [2010153] = { + ["coords"] = {}, + }, + [2010154] = { + ["coords"] = {}, + }, + [2010155] = { + ["coords"] = {}, + }, + [2010156] = { + ["coords"] = {}, + }, + [2010157] = { + ["coords"] = {}, + }, + [2010158] = { + ["coords"] = {}, + }, + [2010159] = { + ["coords"] = {}, + }, + [2010160] = { + ["coords"] = {}, + }, + [2010161] = { + ["coords"] = {}, + }, + [2010162] = { + ["coords"] = {}, + }, + [2010163] = { + ["coords"] = {}, + }, + [2010164] = { + ["coords"] = {}, + }, + [2010165] = { + ["coords"] = {}, + }, + [2010166] = { + ["coords"] = {}, + }, + [2010167] = { + ["coords"] = {}, + }, + [2010168] = { + ["coords"] = {}, + }, + [2010169] = { + ["coords"] = {}, + }, + [2010170] = { + ["coords"] = {}, + }, + [2010171] = { + ["coords"] = {}, + }, + [2010172] = { + ["coords"] = {}, + }, + [2010173] = { + ["coords"] = {}, + }, + [2010174] = { + ["coords"] = {}, + }, + [2010175] = { + ["coords"] = {}, + }, + [2010176] = { + ["coords"] = {}, + }, + [2010177] = { + ["coords"] = {}, + }, + [2010178] = { + ["coords"] = {}, + }, + [2010179] = { + ["coords"] = {}, + }, + [2010180] = { + ["coords"] = {}, + }, + [2010181] = { + ["coords"] = {}, + }, + [2010182] = { + ["coords"] = {}, + }, + [2010183] = { + ["coords"] = {}, + }, + [2010184] = { + ["coords"] = {}, + }, + [2010185] = { + ["coords"] = {}, + }, + [2010186] = { + ["coords"] = {}, + }, + [2010187] = { + ["coords"] = {}, + }, + [2010188] = { + ["coords"] = {}, + }, + [2010189] = { + ["coords"] = {}, + }, + [2010190] = { + ["coords"] = {}, + }, + [2010191] = { + ["coords"] = {}, + }, + [2010192] = { + ["coords"] = {}, + }, + [2010193] = { + ["coords"] = {}, + }, + [2010194] = { + ["coords"] = {}, + }, + [2010195] = { + ["coords"] = {}, + }, + [2010196] = { + ["coords"] = {}, + }, + [2010197] = { + ["coords"] = {}, + }, + [2010198] = { + ["coords"] = {}, + }, + [2010199] = { + ["coords"] = {}, + }, + [2010200] = { + ["coords"] = {}, + }, + [2010201] = { + ["coords"] = {}, + }, + [2010202] = { + ["coords"] = {}, + }, + [2010203] = { + ["coords"] = {}, + }, + [2010204] = { + ["coords"] = {}, + }, + [2010205] = { + ["coords"] = {}, + }, + [2010206] = { + ["coords"] = {}, + }, + [2010207] = { + ["coords"] = {}, + }, + [2010208] = { + ["coords"] = {}, + }, + [2010209] = { + ["coords"] = {}, + }, + [2010210] = { + ["coords"] = {}, + }, + [2010211] = { + ["coords"] = {}, + }, + [2010212] = { + ["coords"] = {}, + }, + [2010213] = { + ["coords"] = {}, + }, + [2010214] = { + ["coords"] = {}, + }, + [2010215] = { + ["coords"] = {}, + }, + [2010216] = { + ["coords"] = {}, + }, + [2010217] = { + ["coords"] = {}, + }, + [2010218] = { + ["coords"] = {}, + }, + [2010219] = { + ["coords"] = {}, + }, + [2010220] = { + ["coords"] = {}, + }, + [2010221] = { + ["coords"] = {}, + }, + [2010222] = { + ["coords"] = {}, + }, + [2010223] = { + ["coords"] = {}, + }, + [2010224] = { + ["coords"] = {}, + }, + [2010225] = { + ["coords"] = {}, + }, + [2010226] = { + ["coords"] = {}, + }, + [2010227] = { + ["coords"] = {}, + }, + [2010228] = { + ["coords"] = {}, + }, + [2010229] = { + ["coords"] = {}, + }, + [2010230] = { + ["coords"] = {}, + }, + [2010231] = { + ["coords"] = {}, + }, + [2010232] = { + ["coords"] = {}, + }, + [2010233] = { + ["coords"] = {}, + }, + [2010234] = { + ["coords"] = {}, + }, + [2010235] = { + ["coords"] = {}, + }, + [2010236] = { + ["coords"] = {}, + }, + [2010237] = { + ["coords"] = {}, + }, + [2010238] = { + ["coords"] = {}, + }, + [2010239] = { + ["coords"] = {}, + }, + [2010240] = { + ["coords"] = {}, + }, + [2010241] = { + ["coords"] = {}, + }, + [2010242] = { + ["coords"] = {}, + }, + [2010243] = { + ["coords"] = {}, + }, + [2010244] = { + ["coords"] = {}, + }, + [2010245] = { + ["coords"] = {}, + }, + [2010246] = { + ["coords"] = {}, + }, + [2010247] = { + ["coords"] = {}, + }, + [2010248] = { + ["coords"] = {}, + }, + [2010249] = { + ["coords"] = {}, + }, + [2010250] = { + ["coords"] = {}, + }, + [2010251] = { + ["coords"] = {}, + }, + [2010252] = { + ["coords"] = {}, + }, + [2010253] = { + ["coords"] = {}, + }, + [2010254] = { + ["coords"] = {}, + }, + [2010255] = { + ["coords"] = {}, + }, + [2010256] = { + ["coords"] = {}, + }, + [2010257] = { + ["coords"] = { + [1] = { 53.4, 51.3, 876, 300 }, + [2] = { 48.4, 49.9, 876, 300 }, + }, + }, + [2010258] = { + ["coords"] = {}, + }, + [2010259] = { + ["coords"] = {}, + }, + [2010260] = { + ["coords"] = {}, + }, + [2010261] = { + ["coords"] = {}, + }, + [2010262] = { + ["coords"] = {}, + }, + [2010263] = { + ["coords"] = {}, + }, + [2010264] = { + ["coords"] = {}, + }, + [2010265] = { + ["coords"] = {}, + }, + [2010266] = { + ["coords"] = {}, + }, + [2010267] = { + ["coords"] = {}, + }, + [2010268] = { + ["coords"] = {}, + }, + [2010269] = { + ["coords"] = {}, + }, + [2010270] = { + ["coords"] = {}, + }, + [2010271] = { + ["coords"] = {}, + }, + [2010272] = { + ["coords"] = {}, + }, + [2010273] = { + ["coords"] = {}, + }, + [2010274] = { + ["coords"] = {}, + }, + [2010275] = { + ["coords"] = {}, + }, + [2010276] = { + ["coords"] = {}, + }, + [2010277] = { + ["coords"] = {}, + }, + [2010278] = { + ["coords"] = {}, + }, + [2010279] = { + ["coords"] = {}, + }, + [2010280] = { + ["coords"] = {}, + }, + [2010281] = { + ["coords"] = {}, + }, + [2010282] = { + ["coords"] = {}, + }, + [2010283] = { + ["coords"] = {}, + }, + [2010284] = { + ["coords"] = {}, + }, + [2010285] = { + ["coords"] = {}, + }, + [2010286] = { + ["coords"] = {}, + }, + [2010287] = { + ["coords"] = {}, + }, + [2010288] = { + ["coords"] = {}, + }, + [2010289] = { + ["coords"] = {}, + }, + [2010290] = { + ["coords"] = {}, + }, + [2010291] = { + ["coords"] = {}, + }, + [2010292] = { + ["coords"] = {}, + }, + [2010293] = { + ["coords"] = {}, + }, + [2010294] = { + ["coords"] = {}, + }, + [2010295] = { + ["coords"] = {}, + }, + [2010296] = { + ["coords"] = {}, + }, + [2010297] = { + ["coords"] = {}, + }, + [2010298] = { + ["coords"] = {}, + }, + [2010299] = { + ["coords"] = {}, + }, + [2010300] = { + ["coords"] = {}, + }, + [2010301] = { + ["coords"] = {}, + }, + [2010302] = { + ["coords"] = {}, + }, + [2010303] = { + ["coords"] = {}, + }, + [2010304] = { + ["coords"] = {}, + }, + [2010305] = { + ["coords"] = {}, + }, + [2010306] = { + ["coords"] = {}, + }, + [2010307] = { + ["coords"] = {}, + }, + [2010308] = { + ["coords"] = {}, + }, + [2010309] = { + ["coords"] = { + [1] = { 44.4, 40.7, 1519, 300 }, + [2] = { 40.3, 99.2, 5581, 300 }, + }, + }, + [2010310] = { + ["coords"] = {}, + }, + [2010311] = { + ["coords"] = {}, + }, + [2010312] = { + ["coords"] = {}, + }, + [2010313] = { + ["coords"] = {}, + }, + [2010314] = { + ["coords"] = {}, + }, + [2010315] = { + ["coords"] = {}, + }, + [2010316] = { + ["coords"] = {}, + }, + [2010317] = { + ["coords"] = {}, + }, + [2010318] = { + ["coords"] = {}, + }, + [2010319] = { + ["coords"] = {}, + }, + [2010320] = { + ["coords"] = {}, + }, + [2010321] = { + ["coords"] = {}, + }, + [2010322] = { + ["coords"] = {}, + }, + [2010323] = { + ["coords"] = {}, + }, + [2010324] = { + ["coords"] = {}, + }, + [2010325] = { + ["coords"] = {}, + }, + [2010326] = { + ["coords"] = {}, + }, + [2010327] = { + ["coords"] = {}, + }, + [2010328] = { + ["coords"] = {}, + }, + [2010329] = { + ["coords"] = {}, + }, + [2010330] = { + ["coords"] = {}, + }, + [2010331] = { + ["coords"] = {}, + }, + [2010332] = { + ["coords"] = {}, + }, + [2010333] = { + ["coords"] = {}, + }, + [2010334] = { + ["coords"] = {}, + }, + [2010335] = { + ["coords"] = { + [1] = { 64.6, 16.2, 4, 300 }, + [2] = { 24.6, 19.3, 1537, 300 }, + [3] = { 41.4, 70.5, 2040, 25 }, + [4] = { 57.5, 35.6, 5225, 25 }, + }, + }, + [2010336] = { + ["coords"] = { + [1] = { 57.6, 76, 38, 300 }, + [2] = { 28.1, 83.2, 5602, 300 }, + }, + }, + [2010337] = { + ["coords"] = {}, + }, + [2010338] = { + ["coords"] = {}, + }, + [2010339] = { + ["coords"] = { + [1] = { 47.4, 40, 361, 300 }, + [2] = { 0.1, 24.4, 616, 300 }, + }, + }, + [2010340] = { + ["coords"] = {}, + }, + [2010341] = { + ["coords"] = {}, + }, + [2010342] = { + ["coords"] = {}, + }, + [2010343] = { + ["coords"] = {}, + }, + [2010344] = { + ["coords"] = {}, + }, + [2010345] = { + ["coords"] = { + [1] = { 82.7, 81.1, 5086, 300 }, + }, + }, + [2010346] = { + ["coords"] = {}, + }, + [2010347] = { + ["coords"] = {}, + }, + [2010348] = { + ["coords"] = {}, + }, + [2010349] = { + ["coords"] = {}, + }, + [2010350] = { + ["coords"] = {}, + }, + [2010351] = { + ["coords"] = {}, + }, + [2010352] = { + ["coords"] = {}, + }, + [2010353] = { + ["coords"] = {}, + }, + [2010354] = { + ["coords"] = {}, + }, + [2010355] = { + ["coords"] = {}, + }, + [2010356] = { + ["coords"] = {}, + }, + [2010357] = { + ["coords"] = {}, + }, + [2010358] = { + ["coords"] = {}, + }, + [2010359] = { + ["coords"] = {}, + }, + [2010360] = { + ["coords"] = {}, + }, + [2010361] = { + ["coords"] = {}, + }, + [2010362] = { + ["coords"] = {}, + }, + [2010363] = { + ["coords"] = {}, + }, + [2010364] = { + ["coords"] = {}, + }, + [2010365] = { + ["coords"] = {}, + }, + [2010366] = { + ["coords"] = {}, + }, + [2010367] = { + ["coords"] = {}, + }, + [2010368] = { + ["coords"] = {}, + }, + [2010369] = { + ["coords"] = { + [1] = { 66.9, 81.7, 130, 300 }, + [2] = { 13.4, 47.8, 267, 300 }, + [3] = { 71.3, 10.7, 5179, 300 }, + }, + }, + [2010370] = { + ["coords"] = {}, + }, + [2010371] = { + ["coords"] = {}, + }, + [2010372] = { + ["coords"] = {}, + }, + [2010373] = { + ["coords"] = {}, + }, + [2010374] = { + ["coords"] = {}, + }, + [2010375] = { + ["coords"] = {}, + }, + [2010376] = { + ["coords"] = {}, + }, + [2010377] = { + ["coords"] = { + [1] = { 58.8, 27.4, 14, 300 }, + [2] = { 43.3, 80.5, 33, 300 }, + [3] = { 67.4, 83.3, 130, 300 }, + [4] = { 14, 49.9, 267, 300 }, + [5] = { 51.2, 61.7, 357, 300 }, + [6] = { 43.5, 17.2, 357, 25 }, + [7] = { 82.6, 54.2, 400, 25 }, + [8] = { 71.9, 12.5, 5179, 300 }, + }, + }, + [2010378] = { + ["coords"] = { + [1] = { 33.3, 49, 10, 300 }, + [2] = { 61.2, 43.6, 409, 300 }, + [3] = { 36.6, 19, 5561, 300 }, + }, + }, + [2010379] = { + ["coords"] = { + [1] = { 17.7, 64.4, 46, 300 }, + [2] = { 17.8, 64.4, 46, 300 }, + [3] = { 93.9, 91, 5581, 300 }, + [4] = { 94, 90.9, 5581, 300 }, + }, + }, + [2010380] = { + ["coords"] = {}, + }, + [2010381] = { + ["coords"] = { + [1] = { 34.8, 10.3, 45, 300 }, + [2] = { 14.1, 72, 47, 300 }, + [3] = { 14.2, 72, 47, 300 }, + [4] = { 59.4, 35.1, 1497, 300 }, + }, + }, + [2010382] = { + ["coords"] = { + [1] = { 44.7, 14.4, 14, 300 }, + [2] = { 26.1, 46.8, 28, 300 }, + [3] = { 26, 46.8, 28, 300 }, + [4] = { 26.1, 46.5, 28, 300 }, + [5] = { 15.7, 68.6, 85, 300 }, + [6] = { 82.7, 60.2, 85, 300 }, + [7] = { 82.6, 60.1, 85, 300 }, + [8] = { 82.7, 59.9, 85, 300 }, + [9] = { 66.3, 85, 618, 300 }, + [10] = { 85.6, 80.4, 718, 300 }, + [11] = { 86.1, 77.4, 718, 300 }, + [12] = { 42.8, 43.3, 5087, 300 }, + [13] = { 43.6, 40, 5087, 300 }, + }, + }, + [2010383] = { + ["coords"] = { + [1] = { 73, 56.9, 331, 300 }, + [2] = { 84, 56.5, 400, 25 }, + [3] = { 83.5, 56.5, 400, 25 }, + [4] = { 83.8, 56.1, 400, 25 }, + [5] = { 83.5, 55.8, 400, 25 }, + [6] = { 66.3, 85, 618, 300 }, + [7] = { 49.5, 30.2, 618, 300 }, + [8] = { 44.9, 38.2, 5087, 300 }, + }, + }, + [2010384] = { + ["coords"] = { + [1] = { 79, 62.5, 28, 25 }, + [2] = { 12.1, 53.3, 85, 300 }, + [3] = { 20.5, 86.2, 139, 25 }, + [4] = { 42.6, 52.3, 267, 300 }, + [5] = { 96.8, 14.6, 5179, 300 }, + }, + }, + [2010385] = { + ["coords"] = {}, + }, + [2010386] = { + ["coords"] = { + [1] = { 81.2, 29.2, 616, 300 }, + }, + }, + [2010387] = { + ["coords"] = {}, + }, + [2010388] = { + ["coords"] = {}, + }, + [2010389] = { + ["coords"] = {}, + }, + [2010390] = { + ["coords"] = {}, + }, + [2010391] = { + ["coords"] = { + [1] = { 93.7, 79.8, 25, 300 }, + [2] = { 98.3, 78.8, 25, 300 }, + [3] = { 39.6, 34.4, 46, 300 }, + [4] = { 40.7, 34.1, 46, 300 }, + [5] = { 80.2, 54.5, 406, 300 }, + }, + }, + [2010392] = { + ["coords"] = {}, + }, + [2010393] = { + ["coords"] = {}, + }, + [2010394] = { + ["coords"] = { + [1] = { 50.1, 47.6, 8, 300 }, + }, + }, + [2010395] = { + ["coords"] = { + [1] = { 72.4, 33.5, 45, 300 }, + [2] = { 73.1, 61.4, 331, 300 }, + [3] = { 83.3, 55.7, 400, 300 }, + [4] = { 48.5, 46.7, 1637, 300 }, + }, + }, + [2010396] = { + ["coords"] = { + [1] = { 32.1, 29.3, 33, 300 }, + [2] = { 47.6, 46.3, 1637, 300 }, + }, + }, + [2010397] = { + ["coords"] = {}, + }, + [2010398] = { + ["coords"] = {}, + }, + [2010399] = { + ["coords"] = {}, + }, + [2010400] = { + ["coords"] = { + [1] = { 41.8, 73.8, 15, 300 }, + [2] = { 59.6, 14.7, 33, 300 }, + [3] = { 59.6, 14.6, 33, 300 }, + [4] = { 90.2, 23, 46, 300 }, + [5] = { 89.7, 22.8, 46, 300 }, + [6] = { 89.7, 22.3, 46, 300 }, + [7] = { 90.2, 22, 46, 300 }, + }, + }, + [2010401] = { + ["coords"] = {}, + }, + [2010402] = { + ["coords"] = {}, + }, + [2010403] = { + ["coords"] = {}, + }, + [2010404] = { + ["coords"] = { + [1] = { 67.6, 28.7, 1519, 300 }, + [2] = { 67.8, 28.4, 1519, 300 }, + [3] = { 52.7, 92.8, 5581, 300 }, + [4] = { 52.9, 92.6, 5581, 300 }, + }, + }, + [2010405] = { + ["coords"] = { + [1] = { 76.9, 75.7, 38, 25 }, + [2] = { 13.3, 79.2, 85, 300 }, + [3] = { 24.3, 7.7, 130, 300 }, + [4] = { 24.6, 6.9, 130, 300 }, + [5] = { 37.9, 83, 5602, 25 }, + }, + }, + [2010406] = { + ["coords"] = { + [1] = { 76.9, 75.6, 38, 25 }, + [2] = { 37.9, 83, 5602, 25 }, + }, + }, + [2010407] = { + ["coords"] = {}, + }, + [2010408] = { + ["coords"] = {}, + }, + [2010409] = { + ["coords"] = {}, + }, + [2010410] = { + ["coords"] = {}, + }, + [2010411] = { + ["coords"] = {}, + }, + [2010412] = { + ["coords"] = { + [1] = { 64.5, 11.7, 33, 300 }, + [2] = { 54.2, 40.8, 5024, 300 }, + }, + }, + [2010413] = { + ["coords"] = { + [1] = { 83.5, 56.4, 400, 25 }, + [2] = { 63.9, 63.1, 5086, 300 }, + [3] = { 70.1, 11.7, 5087, 300 }, + }, + }, + [2010414] = { + ["coords"] = { + [1] = { 70.3, 15.1, 5087, 300 }, + }, + }, + [2010415] = { + ["coords"] = { + [1] = { 13.5, 78.1, 85, 300 }, + [2] = { 24.4, 6.5, 130, 300 }, + [3] = { 28.1, 6.6, 405, 300 }, + [4] = { 64.3, 64.3, 5086, 300 }, + [5] = { 63.8, 63.6, 5086, 300 }, + }, + }, + [2010416] = { + ["coords"] = { + [1] = { 14.8, 69.6, 85, 300 }, + [2] = { 28.1, 6.5, 405, 300 }, + }, + }, + [2010417] = { + ["coords"] = {}, + }, + [2010418] = { + ["coords"] = { + [1] = { 39.8, 38.8, 8, 300 }, + }, + }, + [2010419] = { + ["coords"] = {}, + }, + [2010420] = { + ["coords"] = { + [1] = { 20.8, 49, 267, 300 }, + [2] = { 77.8, 11.7, 5179, 300 }, + }, + }, + [2010421] = { + ["coords"] = {}, + }, + [2010422] = { + ["coords"] = { + [1] = { 83.6, 55.9, 400, 25 }, + }, + }, + [2010423] = { + ["coords"] = {}, + }, + [2010424] = { + ["coords"] = {}, + }, + [2010425] = { + ["coords"] = { + [1] = { 58.2, 25.7, 14, 300 }, + [2] = { 49.9, 31.7, 618, 300 }, + [3] = { 51.5, 29.5, 618, 300 }, + [4] = { 53.7, 73.7, 5561, 300 }, + }, + }, + [2010426] = { + ["coords"] = {}, + }, + [2010427] = { + ["coords"] = {}, + }, + [2010428] = { + ["coords"] = {}, + }, + [2010429] = { + ["coords"] = {}, + }, + [2010430] = { + ["coords"] = {}, + }, + [2010431] = { + ["coords"] = {}, + }, + [2010432] = { + ["coords"] = {}, + }, + [2010433] = { + ["coords"] = {}, + }, + [2010434] = { + ["coords"] = {}, + }, + [2010435] = { + ["coords"] = {}, + }, + [2010436] = { + ["coords"] = {}, + }, + [2010437] = { + ["coords"] = { + [1] = { 37.1, 32.7, 17, 300 }, + [2] = { 62, 9.5, 215, 300 }, + }, + }, + [2010438] = { + ["coords"] = { + [1] = { 86, 57.3, 85, 300 }, + }, + }, + [2010439] = { + ["coords"] = {}, + }, + [2010440] = { + ["coords"] = {}, + }, + [2010441] = { + ["coords"] = {}, + }, + [2010442] = { + ["coords"] = { + [1] = { 48.7, 61.8, 11, 300 }, + [2] = { 71.1, 73.3, 15, 300 }, + [3] = { 78.1, 76.5, 38, 25 }, + [4] = { 67.4, 27.3, 440, 300 }, + [5] = { 38.5, 83.5, 5602, 25 }, + [6] = { 6.2, 26.4, 5602, 300 }, + }, + }, + [2010443] = { + ["coords"] = { + [1] = { 42.3, 72.8, 15, 300 }, + [2] = { 29.5, 44.6, 28, 300 }, + [3] = { 85.9, 58.1, 85, 300 }, + [4] = { 67.9, 81.8, 130, 300 }, + [5] = { 14.7, 48, 267, 300 }, + [6] = { 56.8, 43.6, 409, 300 }, + [7] = { 72.5, 10.8, 5179, 300 }, + }, + }, + [2010444] = { + ["coords"] = { + [1] = { 39.1, 69.4, 12, 300 }, + [2] = { 79.8, 63.1, 28, 300 }, + [3] = { 21.5, 86.9, 139, 300 }, + [4] = { 56.8, 43.6, 409, 300 }, + }, + }, + [2010445] = { + ["coords"] = { + [1] = { 54.1, 0.9, 17, 300 }, + [2] = { 79, 81.2, 331, 300 }, + [3] = { 82.9, 55.2, 400, 25 }, + [4] = { 30.1, 13.9, 1519, 300 }, + [5] = { 51.3, 70.5, 1637, 300 }, + [6] = { 53.7, 35.6, 5130, 300 }, + [7] = { 32.6, 84.9, 5581, 300 }, + }, + }, + [2010446] = { + ["coords"] = { + [1] = { 37.9, 71.5, 14, 300 }, + [2] = { 46.1, 46.2, 15, 300 }, + [3] = { 65, 34.4, 17, 300 }, + [4] = { 49.9, 63.2, 267, 300 }, + [5] = { 49.9, 62.5, 267, 300 }, + [6] = { 49.4, 62.3, 267, 300 }, + [7] = { 49.4, 62.2, 267, 300 }, + [8] = { 54.1, 49.9, 876, 300 }, + }, + }, + [2010447] = { + ["coords"] = {}, + }, + [2010448] = { + ["coords"] = {}, + }, + [2010449] = { + ["coords"] = {}, + }, + [2010450] = { + ["coords"] = {}, + }, + [2010451] = { + ["coords"] = {}, + }, + [2010452] = { + ["coords"] = {}, + }, + [2010453] = { + ["coords"] = {}, + }, + [2010454] = { + ["coords"] = {}, + }, + [2010455] = { + ["coords"] = {}, + }, + [2010456] = { + ["coords"] = {}, + }, + [2010457] = { + ["coords"] = { + [1] = { 83.3, 55.7, 400, 25 }, + }, + }, + [2010458] = { + ["coords"] = {}, + }, + [2010459] = { + ["coords"] = {}, + }, + [2010460] = { + ["coords"] = {}, + }, + [2010461] = { + ["coords"] = {}, + }, + [2010462] = { + ["coords"] = {}, + }, + [2010463] = { + ["coords"] = {}, + }, + [2010464] = { + ["coords"] = {}, + }, + [2010465] = { + ["coords"] = {}, + }, + [2010466] = { + ["coords"] = {}, + }, + [2010467] = { + ["coords"] = {}, + }, + [2010468] = { + ["coords"] = {}, + }, + [2010469] = { + ["coords"] = { + [1] = { 26, 46.8, 28, 300 }, + [2] = { 29.3, 44.8, 28, 300 }, + [3] = { 29.3, 44.7, 28, 300 }, + [4] = { 82.7, 60.2, 85, 300 }, + [5] = { 82.7, 59.8, 85, 300 }, + [6] = { 82.7, 59.7, 85, 300 }, + [7] = { 85.8, 58.3, 85, 300 }, + [8] = { 85.8, 58.2, 85, 300 }, + [9] = { 60.3, 55.4, 1497, 300 }, + [10] = { 60.5, 55.1, 1497, 300 }, + }, + }, + [2010470] = { + ["coords"] = {}, + }, + [2010471] = { + ["coords"] = {}, + }, + [2010472] = { + ["coords"] = {}, + }, + [2010473] = { + ["coords"] = {}, + }, + [2010474] = { + ["coords"] = {}, + }, + [2010475] = { + ["coords"] = {}, + }, + [2010476] = { + ["coords"] = {}, + }, + [2010477] = { + ["coords"] = {}, + }, + [2010478] = { + ["coords"] = {}, + }, + [2010479] = { + ["coords"] = {}, + }, + [2010480] = { + ["coords"] = {}, + }, + [2010481] = { + ["coords"] = {}, + }, + [2010482] = { + ["coords"] = {}, + }, + [2010483] = { + ["coords"] = {}, + }, + [2010484] = { + ["coords"] = {}, + }, + [2010485] = { + ["coords"] = {}, + }, + [2010486] = { + ["coords"] = {}, + }, + [2010487] = { + ["coords"] = {}, + }, + [2010488] = { + ["coords"] = {}, + }, + [2010489] = { + ["coords"] = {}, + }, + [2010490] = { + ["coords"] = {}, + }, + [2010491] = { + ["coords"] = {}, + }, + [2010492] = { + ["coords"] = {}, + }, + [2010493] = { + ["coords"] = {}, + }, + [2010494] = { + ["coords"] = {}, + }, + [2010495] = { + ["coords"] = {}, + }, + [2010496] = { + ["coords"] = {}, + }, + [2010497] = { + ["coords"] = {}, + }, + [2010498] = { + ["coords"] = {}, + }, + [2010499] = { + ["coords"] = {}, + }, + [2010500] = { + ["coords"] = {}, + }, + [2010501] = { + ["coords"] = {}, + }, + [2010502] = { + ["coords"] = {}, + }, + [2010503] = { + ["coords"] = {}, + }, + [2010504] = { + ["coords"] = {}, + }, + [2010505] = { + ["coords"] = {}, + }, + [2010506] = { + ["coords"] = {}, + }, + [2010507] = { + ["coords"] = {}, + }, + [2010508] = { + ["coords"] = {}, + }, + [2010509] = { + ["coords"] = {}, + }, + [2010510] = { + ["coords"] = {}, + }, + [2010511] = { + ["coords"] = {}, + }, + [2010512] = { + ["coords"] = {}, + }, + [2010513] = { + ["coords"] = {}, + }, + [2010514] = { + ["coords"] = {}, + }, + [2010515] = { + ["coords"] = {}, + }, + [2010516] = { + ["coords"] = {}, + }, + [2010517] = { + ["coords"] = {}, + }, + [2010518] = { + ["coords"] = {}, + }, + [2010519] = { + ["coords"] = {}, + }, + [2010520] = { + ["coords"] = {}, + }, + [2010521] = { + ["coords"] = {}, + }, + [2010522] = { + ["coords"] = {}, + }, + [2010523] = { + ["coords"] = {}, + }, + [2010524] = { + ["coords"] = {}, + }, + [2010525] = { + ["coords"] = {}, + }, + [2010526] = { + ["coords"] = {}, + }, + [2010527] = { + ["coords"] = {}, + }, + [2010528] = { + ["coords"] = {}, + }, + [2010529] = { + ["coords"] = {}, + }, + [2010530] = { + ["coords"] = {}, + }, + [2010531] = { + ["coords"] = {}, + }, + [2010532] = { + ["coords"] = {}, + }, + [2010533] = { + ["coords"] = {}, + }, + [2010534] = { + ["coords"] = {}, + }, + [2010535] = { + ["coords"] = {}, + }, + [2010536] = { + ["coords"] = {}, + }, + [2010537] = { + ["coords"] = {}, + }, + [2010538] = { + ["coords"] = {}, + }, + [2010539] = { + ["coords"] = {}, + }, + [2010540] = { + ["coords"] = {}, + }, + [2010541] = { + ["coords"] = {}, + }, + [2010542] = { + ["coords"] = {}, + }, + [2010543] = { + ["coords"] = {}, + }, + [2010544] = { + ["coords"] = {}, + }, + [2010545] = { + ["coords"] = {}, + }, + [2010546] = { + ["coords"] = {}, + }, + [2010547] = { + ["coords"] = {}, + }, + [2010548] = { + ["coords"] = {}, + }, + [2010549] = { + ["coords"] = {}, + }, + [2010550] = { + ["coords"] = {}, + }, + [2010551] = { + ["coords"] = {}, + }, + [2010552] = { + ["coords"] = {}, + }, + [2010553] = { + ["coords"] = {}, + }, + [2010554] = { + ["coords"] = {}, + }, + [2010555] = { + ["coords"] = {}, + }, + [2010556] = { + ["coords"] = {}, + }, + [2010557] = { + ["coords"] = {}, + }, + [2010558] = { + ["coords"] = {}, + }, + [2010559] = { + ["coords"] = {}, + }, + [2010560] = { + ["coords"] = {}, + }, + [2010561] = { + ["coords"] = {}, + }, + [2010562] = { + ["coords"] = {}, + }, + [2010563] = { + ["coords"] = {}, + }, + [2010564] = { + ["coords"] = {}, + }, + [2010565] = { + ["coords"] = {}, + }, + [2010566] = { + ["coords"] = {}, + }, + [2010567] = { + ["coords"] = {}, + }, + [2010568] = { + ["coords"] = {}, + }, + [2010569] = { + ["coords"] = {}, + }, + [2010570] = { + ["coords"] = {}, + }, + [2010571] = { + ["coords"] = {}, + }, + [2010572] = { + ["coords"] = {}, + }, + [2010573] = { + ["coords"] = {}, + }, + [2010574] = { + ["coords"] = {}, + }, + [2010575] = { + ["coords"] = {}, + }, + [2010576] = { + ["coords"] = {}, + }, + [2010577] = { + ["coords"] = {}, + }, + [2010578] = { + ["coords"] = { + [1] = { 72.9, 45.7, 2040, 300 }, + [2] = { 69.8, 45.4, 2040, 300 }, + [3] = { 71, 45, 2040, 300 }, + [4] = { 72.5, 23.8, 5225, 300 }, + [5] = { 71, 23.7, 5225, 300 }, + [6] = { 71.6, 23.5, 5225, 300 }, + [7] = { 53.3, 56.5, 5602, 300 }, + }, + }, + [2010579] = { + ["coords"] = {}, + }, + [2010580] = { + ["coords"] = {}, + }, + [2010581] = { + ["coords"] = {}, + }, + [2010582] = { + ["coords"] = {}, + }, + [2010583] = { + ["coords"] = {}, + }, + [2010584] = { + ["coords"] = { + [1] = { 28.2, 6.5, 405, 300 }, + }, + }, + [2010585] = { + ["coords"] = { + [1] = { 49.3, 30.5, 618, 300 }, + }, + }, + [2010586] = { + ["coords"] = { + [1] = { 50.3, 47.4, 8, 300 }, + [2] = { 50.6, 45.8, 8, 300 }, + [3] = { 44.9, 15.3, 14, 300 }, + [4] = { 25.4, 66, 16, 300 }, + [5] = { 29, 44.9, 28, 300 }, + [6] = { 60.7, 19.5, 33, 300 }, + [7] = { 60.7, 19.2, 33, 300 }, + [8] = { 64.6, 13.7, 33, 300 }, + [9] = { 64.6, 13.6, 33, 300 }, + [10] = { 51.3, 24.7, 45, 300 }, + [11] = { 90.1, 22.7, 46, 300 }, + [12] = { 90.1, 22.4, 46, 300 }, + [13] = { 89.3, 22.4, 46, 300 }, + [14] = { 29.6, 85.5, 47, 300 }, + [15] = { 60.1, 68.3, 85, 300 }, + [16] = { 59.6, 68.3, 85, 300 }, + [17] = { 60.2, 67.8, 85, 300 }, + [18] = { 85.5, 58.3, 85, 300 }, + [19] = { 42.1, 10.1, 130, 300 }, + [20] = { 72.9, 55.8, 331, 300 }, + [21] = { 82.5, 53.6, 400, 25 }, + [22] = { 22.9, 9.1, 406, 300 }, + [23] = { 52.9, 52.6, 409, 300 }, + [24] = { 73.8, 52.7, 1497, 300 }, + [25] = { 75, 52.4, 1497, 300 }, + [26] = { 74.3, 49.1, 1497, 300 }, + [27] = { 58, 15.3, 1497, 300 }, + [28] = { 55.8, 15.2, 1497, 300 }, + [29] = { 58.5, 13, 1497, 300 }, + [30] = { 53.9, 74, 5561, 300 }, + [31] = { 56.5, 52.8, 5601, 604800 }, + [32] = { 56.6, 52.8, 5601, 604800 }, + [33] = { 56.7, 52.7, 5601, 604800 }, + }, + }, + [2010587] = { + ["coords"] = { + [1] = { 60.6, 67.6, 85, 300 }, + [2] = { 60.6, 67.3, 85, 300 }, + [3] = { 81, 76.7, 405, 300 }, + [4] = { 60.2, 12.1, 1497, 300 }, + [5] = { 60.2, 10.5, 1497, 300 }, + }, + }, + [2010588] = { + ["coords"] = {}, + }, + [2010589] = { + ["coords"] = {}, + }, + [2010590] = { + ["coords"] = {}, + }, + [2010591] = { + ["coords"] = { + [1] = { 48, 57.8, 5087, 300 }, + }, + }, + [2010592] = { + ["coords"] = { + [1] = { 48.6, 68.1, 331, 300 }, + }, + }, + [2010593] = { + ["coords"] = {}, + }, + [2010594] = { + ["coords"] = {}, + }, + [2010595] = { + ["coords"] = { + [1] = { 72.3, 34.5, 1497, 300 }, + }, + }, + [2010596] = { + ["coords"] = { + [1] = { 66, 35.4, 5581, 300 }, + }, + }, + [2010597] = { + ["coords"] = {}, + }, + [2010598] = { + ["coords"] = { + [1] = { 29.5, 44.8, 28, 300 }, + [2] = { 86, 58.2, 85, 300 }, + }, + }, + [2010599] = { + ["coords"] = {}, + }, + [2010600] = { + ["coords"] = {}, + }, + [2010601] = { + ["coords"] = {}, + }, + [2010602] = { + ["coords"] = {}, + }, + [2010603] = { + ["coords"] = {}, + }, + [2010604] = { + ["coords"] = {}, + }, + [2010605] = { + ["coords"] = {}, + }, + [2010606] = { + ["coords"] = {}, + }, + [2010607] = { + ["coords"] = {}, + }, + [2010608] = { + ["coords"] = {}, + }, + [2010609] = { + ["coords"] = {}, + }, + [2010610] = { + ["coords"] = {}, + }, + [2010611] = { + ["coords"] = {}, + }, + [2010612] = { + ["coords"] = {}, + }, + [2010613] = { + ["coords"] = {}, + }, + [2010614] = { + ["coords"] = {}, + }, + [2010615] = { + ["coords"] = {}, + }, + [2010616] = { + ["coords"] = {}, + }, + [2010617] = { + ["coords"] = { + [1] = { 43.3, 17.3, 357, 25 }, + }, + }, + [2010618] = { + ["coords"] = { + [1] = { 15.8, 62.1, 85, 300 }, + }, + }, + [2010619] = { + ["coords"] = {}, + }, + [2010620] = { + ["coords"] = {}, + }, + [2010621] = { + ["coords"] = {}, + }, + [2010622] = { + ["coords"] = {}, + }, + [2010623] = { + ["coords"] = {}, + }, + [2010624] = { + ["coords"] = { + [1] = { 26.5, 30.6, 1, 300 }, + [2] = { 92.6, 19.5, 721, 300 }, + }, + }, + [2010625] = { + ["coords"] = {}, + }, + [2010626] = { + ["coords"] = {}, + }, + [2010627] = { + ["coords"] = {}, + }, + [2010628] = { + ["coords"] = {}, + }, + [2010629] = { + ["coords"] = {}, + }, + [2010630] = { + ["coords"] = {}, + }, + [2010631] = { + ["coords"] = {}, + }, + [2010632] = { + ["coords"] = { + [1] = { 44.2, 12.6, 14, 300 }, + [2] = { 43.9, 12.6, 14, 300 }, + [3] = { 47.2, 12.1, 14, 300 }, + [4] = { 46.8, 12, 14, 300 }, + [5] = { 47.4, 8.9, 14, 300 }, + [6] = { 44.3, 97.4, 1637, 300 }, + [7] = { 43, 97.3, 1637, 300 }, + [8] = { 55.3, 95.4, 1637, 300 }, + [9] = { 54, 95.1, 1637, 300 }, + [10] = { 56.3, 83.5, 1637, 300 }, + }, + }, + [2010633] = { + ["coords"] = {}, + }, + [2010634] = { + ["coords"] = {}, + }, + [2010635] = { + ["coords"] = {}, + }, + [2010636] = { + ["coords"] = {}, + }, + [2010637] = { + ["coords"] = {}, + }, + [2010638] = { + ["coords"] = {}, + }, + [2010639] = { + ["coords"] = {}, + }, + [2010640] = { + ["coords"] = {}, + }, + [2010641] = { + ["coords"] = {}, + }, + [2010642] = { + ["coords"] = {}, + }, + [2010643] = { + ["coords"] = { + [1] = { 61, 77, 38, 300 }, + [2] = { 81.7, 64.5, 38, 25 }, + [3] = { 25.8, 64.7, 2040, 25 }, + [4] = { 25, 63.6, 2040, 25 }, + [5] = { 50, 32.8, 5225, 25 }, + [6] = { 49.7, 32.3, 5225, 25 }, + [7] = { 29.8, 83.7, 5602, 300 }, + [8] = { 40.4, 77.3, 5602, 25 }, + }, + }, + [2010644] = { + ["coords"] = { + [1] = { 61.1, 77.3, 38, 300 }, + [2] = { 60, 76.7, 38, 300 }, + [3] = { 54.1, 76, 38, 300 }, + [4] = { 58.9, 71.9, 38, 300 }, + [5] = { 31.8, 49, 47, 25 }, + [6] = { 33.2, 48.1, 47, 25 }, + [7] = { 32.4, 43.2, 47, 25 }, + [8] = { 53.5, 21.9, 139, 25 }, + [9] = { 52.8, 17.1, 139, 25 }, + [10] = { 34.5, 71.3, 2040, 25 }, + [11] = { 41.2, 68.9, 2040, 25 }, + [12] = { 34.6, 68.7, 2040, 25 }, + [13] = { 54.2, 35.9, 5225, 25 }, + [14] = { 57.4, 34.8, 5225, 25 }, + [15] = { 54.2, 34.7, 5225, 25 }, + [16] = { 29.8, 83.9, 5602, 300 }, + [17] = { 29.2, 83.6, 5602, 300 }, + [18] = { 26.3, 83.2, 5602, 300 }, + [19] = { 28.7, 81.1, 5602, 300 }, + [20] = { 53.5, 56.5, 5602, 300 }, + }, + }, + [2010645] = { + ["coords"] = { + [1] = { 59.6, 76.2, 38, 300 }, + [2] = { 57.6, 76.1, 38, 300 }, + [3] = { 59.3, 75.8, 38, 300 }, + [4] = { 57.6, 75.8, 38, 300 }, + [5] = { 59, 75.1, 38, 300 }, + [6] = { 58.2, 73.8, 38, 300 }, + [7] = { 83.3, 64.7, 38, 25 }, + [8] = { 25.8, 16.8, 1537, 300 }, + [9] = { 41, 69.2, 2040, 25 }, + [10] = { 23.8, 64.3, 2040, 25 }, + [11] = { 57.3, 35, 5225, 25 }, + [12] = { 49.1, 32.6, 5225, 25 }, + [13] = { 29, 83.3, 5602, 300 }, + [14] = { 28, 83.2, 5602, 300 }, + [15] = { 28.9, 83.1, 5602, 300 }, + [16] = { 28.1, 83.1, 5602, 300 }, + [17] = { 28.8, 82.7, 5602, 300 }, + [18] = { 28.3, 82.1, 5602, 300 }, + [19] = { 41.2, 77.4, 5602, 25 }, + }, + }, + [2010646] = { + ["coords"] = {}, + }, + [2010647] = { + ["coords"] = {}, + }, + [2010650] = { + ["coords"] = { + [1] = { 24.7, 71.9, 440, 300 }, + [2] = { 61.8, 59.1, 1497, 300 }, + [3] = { 71.2, 46.2, 1497, 300 }, + [4] = { 41.1, 67.2, 1519, 300 }, + [5] = { 42.5, 60.9, 1637, 300 }, + [6] = { 42.3, 60.6, 1637, 300 }, + [7] = { 41.6, 60.5, 1637, 300 }, + }, + }, + [2010651] = { + ["coords"] = {}, + }, + [2010652] = { + ["coords"] = {}, + }, + [2010653] = { + ["coords"] = {}, + }, + [2010654] = { + ["coords"] = { + [1] = { 59.2, 77.1, 38, 300 }, + [2] = { 84.5, 62.5, 38, 300 }, + [3] = { 53.3, 16.2, 139, 25 }, + [4] = { 37.5, 68.9, 1519, 300 }, + [5] = { 64.7, 45.2, 1519, 25 }, + [6] = { 23.8, 19.2, 1537, 300 }, + [7] = { 42.9, 63.8, 2040, 25 }, + [8] = { 58.2, 32.4, 5225, 25 }, + [9] = { 28.8, 83.7, 5602, 300 }, + [10] = { 41.8, 76.3, 5602, 300 }, + [11] = { 53.4, 56.7, 5602, 300 }, + }, + }, + [2010655] = { + ["coords"] = { + [1] = { 58.8, 75.2, 38, 300 }, + [2] = { 83.4, 62.9, 38, 25 }, + [3] = { 65.3, 46.7, 1519, 25 }, + [4] = { 28.7, 82.8, 5602, 300 }, + [5] = { 41.2, 76.5, 5602, 25 }, + }, + }, + [2010656] = { + ["coords"] = { + [1] = { 57.6, 79.1, 38, 300 }, + [2] = { 59, 76.4, 38, 300 }, + [3] = { 83.9, 63, 38, 25 }, + [4] = { 83.5, 62.1, 38, 25 }, + [5] = { 63.8, 47.8, 1519, 25 }, + [6] = { 25.6, 17.3, 1537, 300 }, + [7] = { 28, 84.8, 5602, 300 }, + [8] = { 28.7, 83.4, 5602, 300 }, + [9] = { 41.5, 76.5, 5602, 25 }, + [10] = { 41.3, 76, 5602, 25 }, + }, + }, + [2010657] = { + ["coords"] = { + [1] = { 64.3, 15.6, 4, 300 }, + }, + }, + [2010658] = { + ["coords"] = { + [1] = { 67.7, 83.6, 130, 300 }, + [2] = { 14.4, 50.4, 267, 300 }, + [3] = { 43.6, 17.1, 357, 25 }, + [4] = { 72.2, 12.9, 5179, 300 }, + }, + }, + [2010659] = { + ["coords"] = {}, + }, + [2010660] = { + ["coords"] = {}, + }, + [2010661] = { + ["coords"] = { + [1] = { 64.1, 16, 4, 300 }, + [2] = { 64.2, 15.2, 4, 300 }, + [3] = { 83.6, 65.2, 38, 25 }, + [4] = { 82.6, 64.1, 38, 25 }, + [5] = { 81.7, 64.1, 38, 25 }, + [6] = { 53.4, 16.2, 139, 25 }, + [7] = { 61.2, 58.1, 1497, 300 }, + [8] = { 61.2, 58, 1497, 300 }, + [9] = { 66.6, 47.5, 1519, 25 }, + [10] = { 63.4, 47.2, 1519, 25 }, + [11] = { 66.8, 46.1, 1519, 25 }, + [12] = { 66.4, 46, 1519, 25 }, + [13] = { 25.9, 77.1, 2040, 300 }, + [14] = { 25.8, 76.8, 2040, 300 }, + [15] = { 41.8, 70.7, 2040, 25 }, + [16] = { 41.9, 70.6, 2040, 25 }, + [17] = { 42, 70.6, 2040, 25 }, + [18] = { 40.5, 69.8, 2040, 25 }, + [19] = { 40.5, 69.7, 2040, 25 }, + [20] = { 39.5, 66.9, 2040, 25 }, + [21] = { 39.8, 66.6, 2040, 25 }, + [22] = { 39.8, 66.5, 2040, 25 }, + [23] = { 39.8, 66.4, 2040, 25 }, + [24] = { 39.8, 66.2, 2040, 25 }, + [25] = { 38.9, 64.2, 2040, 25 }, + [26] = { 39.1, 64.2, 2040, 25 }, + [27] = { 50.1, 38.7, 5225, 300 }, + [28] = { 50.1, 38.5, 5225, 300 }, + [29] = { 57.7, 35.7, 5225, 25 }, + [30] = { 57.7, 35.6, 5225, 25 }, + [31] = { 57.8, 35.6, 5225, 25 }, + [32] = { 57.1, 35.3, 5225, 25 }, + [33] = { 57, 35.2, 5225, 25 }, + [34] = { 56.6, 33.9, 5225, 25 }, + [35] = { 56.7, 33.7, 5225, 25 }, + [36] = { 56.7, 33.6, 5225, 25 }, + [37] = { 56.7, 33.5, 5225, 25 }, + [38] = { 56.3, 32.6, 5225, 25 }, + [39] = { 56.4, 32.6, 5225, 25 }, + [40] = { 41.4, 77.6, 5602, 25 }, + [41] = { 40.8, 77.1, 5602, 25 }, + [42] = { 40.4, 77.1, 5602, 25 }, + }, + }, + [2010662] = { + ["coords"] = { + [1] = { 64.4, 16.4, 4, 300 }, + [2] = { 79, 62.5, 28, 25 }, + [3] = { 20.5, 86.2, 139, 25 }, + [4] = { 50.7, 61.8, 357, 300 }, + [5] = { 83.4, 54.2, 400, 25 }, + [6] = { 31.3, 37.7, 440, 300 }, + [7] = { 78.7, 66.6, 490, 300 }, + [8] = { 61.1, 58.3, 1497, 300 }, + [9] = { 41.7, 67.1, 1519, 300 }, + [10] = { 83.7, 77, 5208, 300 }, + }, + }, + [2010663] = { + ["coords"] = { + [1] = { 50.7, 61.7, 357, 300 }, + [2] = { 23.8, 64.5, 2040, 25 }, + [3] = { 49.1, 32.7, 5225, 25 }, + }, + }, + [2010664] = { + ["coords"] = { + [1] = { 41.7, 10.1, 130, 300 }, + [2] = { 89.1, 59.6, 331, 300 }, + [3] = { 88.8, 59.5, 331, 300 }, + [4] = { 50.7, 61.8, 357, 300 }, + [5] = { 23.7, 64.2, 2040, 25 }, + [6] = { 49.1, 32.6, 5225, 25 }, + }, + }, + [2010665] = { + ["coords"] = {}, + }, + [2010666] = { + ["coords"] = { + [1] = { 83.1, 55, 400, 25 }, + }, + }, + [2010667] = { + ["coords"] = {}, + }, + [2010668] = { + ["coords"] = {}, + }, + [2010670] = { + ["coords"] = { + [1] = { 31.2, 38, 440, 300 }, + [2] = { 78.4, 67.1, 490, 300 }, + }, + }, + [2010671] = { + ["coords"] = { + [1] = { 42.4, 52.6, 267, 300 }, + [2] = { 96.6, 14.8, 5179, 300 }, + }, + }, + [2010672] = { + ["coords"] = {}, + }, + [2010673] = { + ["coords"] = {}, + }, + [2010674] = { + ["coords"] = {}, + }, + [2010675] = { + ["coords"] = { + [1] = { 20.9, 55.1, 331, 300 }, + [2] = { 20.9, 55, 331, 300 }, + [3] = { 57.4, 22.1, 406, 300 }, + [4] = { 57.4, 22, 406, 300 }, + }, + }, + [2010676] = { + ["coords"] = { + [1] = { 20.9, 55.1, 331, 300 }, + [2] = { 20.9, 55, 331, 300 }, + [3] = { 21, 55, 331, 300 }, + [4] = { 57.4, 22.1, 406, 300 }, + [5] = { 57.4, 22, 406, 300 }, + }, + }, + [2010677] = { + ["coords"] = { + [1] = { 36, 46.2, 148, 300 }, + [2] = { 82.5, 53.6, 400, 25 }, + [3] = { 69, 45.8, 2040, 300 }, + [4] = { 70.8, 45.2, 2040, 300 }, + [5] = { 70.6, 23.9, 5225, 300 }, + [6] = { 71.5, 23.6, 5225, 300 }, + }, + }, + [2010678] = { + ["coords"] = { + [1] = { 64.6, 16.6, 4, 300 }, + [2] = { 64, 16.4, 4, 300 }, + [3] = { 64.6, 16.4, 4, 300 }, + [4] = { 64, 16.3, 4, 300 }, + [5] = { 64.6, 16.3, 4, 300 }, + [6] = { 64, 16.2, 4, 300 }, + [7] = { 64, 16.1, 4, 300 }, + [8] = { 50.7, 61.8, 357, 300 }, + [9] = { 61.4, 44.4, 409, 300 }, + [10] = { 61.5, 44.3, 409, 300 }, + [11] = { 61.6, 59, 1497, 300 }, + [12] = { 41.2, 67.3, 1519, 300 }, + [13] = { 41.2, 66.8, 1519, 300 }, + [14] = { 63.9, 46.4, 1519, 300 }, + [15] = { 64, 46.4, 1519, 300 }, + [16] = { 81.8, 68.7, 5208, 300 }, + }, + }, + [2010679] = { + ["coords"] = { + [1] = { 13.9, 33.7, 5179, 300 }, + }, + }, + [2010680] = { + ["coords"] = { + [1] = { 79, 55.7, 85, 300 }, + [2] = { 31.2, 37.8, 440, 300 }, + [3] = { 78.5, 66.8, 490, 300 }, + [4] = { 49.3, 30.7, 618, 300 }, + }, + }, + [2010681] = { + ["coords"] = { + [1] = { 49.3, 30.7, 618, 300 }, + [2] = { 49.4, 30.7, 618, 300 }, + [3] = { 49.3, 30.6, 618, 300 }, + }, + }, + [2010682] = { + ["coords"] = { + [1] = { 64.2, 16.3, 4, 300 }, + [2] = { 41.9, 74.2, 15, 25 }, + [3] = { 61.3, 24.2, 17, 300 }, + [4] = { 80.8, 63.2, 28, 300 }, + [5] = { 79, 62.5, 28, 300 }, + [6] = { 43.3, 80.6, 33, 300 }, + [7] = { 27.7, 77.1, 33, 300 }, + [8] = { 62.1, 77.5, 38, 300 }, + [9] = { 11, 46.8, 47, 300 }, + [10] = { 42.2, 10.1, 130, 300 }, + [11] = { 22.5, 87, 139, 300 }, + [12] = { 20.5, 86.2, 139, 300 }, + [13] = { 95.8, 6.3, 267, 300 }, + [14] = { 51.2, 62.4, 357, 300 }, + [15] = { 60.4, 23.6, 361, 300 }, + [16] = { 31.5, 90.6, 405, 300 }, + [17] = { 31.3, 38.2, 440, 300 }, + [18] = { 78.7, 67.5, 490, 300 }, + [19] = { 49.9, 31.7, 618, 300 }, + [20] = { 54.4, 53.6, 876, 300 }, + [21] = { 56.1, 48.8, 1497, 300 }, + [22] = { 73.4, 32.6, 1497, 300 }, + [23] = { 37.6, 74.1, 1519, 300 }, + [24] = { 37.9, 61.5, 1519, 300 }, + [25] = { 67.6, 46.7, 1519, 300 }, + [26] = { 67.3, 26.7, 1519, 300 }, + [27] = { 25.7, 16.5, 1537, 300 }, + [28] = { 51.4, 34.5, 5121, 300 }, + [29] = { 83.9, 79.3, 5208, 300 }, + [30] = { 52.6, 91.7, 5581, 300 }, + [31] = { 30.3, 84, 5602, 300 }, + }, + }, + [2010683] = { + ["coords"] = { + [1] = { 13.4, 54.2, 47, 300 }, + [2] = { 11, 49.4, 47, 300 }, + [3] = { 11.8, 47.1, 47, 300 }, + [4] = { 15.3, 46.8, 47, 370 }, + [5] = { 12.1, 46.7, 47, 300 }, + [6] = { 11.2, 46.2, 47, 300 }, + [7] = { 14, 46, 47, 300 }, + [8] = { 14.6, 45.8, 47, 300 }, + [9] = { 98.7, 15.2, 267, 300 }, + [10] = { 95.8, 9.4, 267, 300 }, + [11] = { 96.8, 6.7, 267, 300 }, + [12] = { 97.1, 6.2, 267, 300 }, + [13] = { 96.1, 5.5, 267, 300 }, + [14] = { 99.4, 5.4, 267, 300 }, + }, + }, + [2010684] = { + ["coords"] = { + [1] = { 41.9, 10.6, 130, 300 }, + [2] = { 41.9, 10.5, 130, 300 }, + [3] = { 61.6, 44.4, 409, 300 }, + }, + }, + [2010685] = { + ["coords"] = { + [1] = { 28.1, 76, 33, 300 }, + }, + }, + [2010686] = { + ["coords"] = {}, + }, + [2010687] = { + ["coords"] = { + [1] = { 37.7, 53.2, 36, 300 }, + [2] = { 45.5, 47.3, 36, 300 }, + [3] = { 39.4, 15.6, 36, 25 }, + [4] = { 66.5, 49.1, 267, 300 }, + [5] = { 65.8, 48.3, 267, 300 }, + [6] = { 76.7, 46.9, 267, 300 }, + [7] = { 76.2, 46.3, 267, 300 }, + [8] = { 78.4, 41.3, 267, 300 }, + }, + }, + [2010688] = { + ["coords"] = {}, + }, + [2010689] = { + ["coords"] = { + [1] = { 66.5, 47.2, 267, 300 }, + [2] = { 77.8, 44.2, 267, 300 }, + }, + }, + [2010690] = { + ["coords"] = { + [1] = { 21.3, 62, 45, 300 }, + [2] = { 22.2, 61.4, 45, 300 }, + [3] = { 25.4, 57.9, 45, 25 }, + [4] = { 46.5, 47.2, 45, 25 }, + [5] = { 45.6, 45.8, 45, 25 }, + }, + }, + [2010691] = { + ["coords"] = { + [1] = { 27.6, 58.1, 45, 300 }, + }, + }, + [2010692] = { + ["coords"] = { + [1] = { 24.1, 61.1, 45, 300 }, + [2] = { 24.1, 60, 45, 300 }, + }, + }, + [2010693] = { + ["coords"] = { + [1] = { 58.7, 58.5, 14, 25 }, + [2] = { 58.7, 58.1, 14, 25 }, + [3] = { 56.1, 44.9, 409, 300 }, + [4] = { 53.5, 44.5, 409, 300 }, + [5] = { 63.9, 43.1, 409, 300 }, + [6] = { 61.1, 41.4, 409, 300 }, + [7] = { 29.2, 9.9, 1519, 300 }, + [8] = { 32.2, 82.7, 5581, 300 }, + }, + }, + [2010694] = { + ["coords"] = { + [1] = { 61.9, 44.4, 409, 300 }, + [2] = { 59.5, 41.5, 409, 300 }, + [3] = { 29.2, 11.8, 1519, 300 }, + [4] = { 29, 11.6, 1519, 300 }, + [5] = { 32.2, 83.7, 5581, 300 }, + [6] = { 32, 83.6, 5581, 300 }, + }, + }, + [2010697] = { + ["coords"] = { + [1] = { 34.3, 65.5, 11, 120 }, + }, + }, + [2010698] = { + ["coords"] = {}, + }, + [2010699] = { + ["coords"] = {}, + }, + [2010700] = { + ["coords"] = { + [1] = { 44.9, 59.9, 215, 0 }, + [2] = { 44.9, 59.8, 215, 0 }, + }, + }, + [2010701] = { + ["coords"] = { + [1] = { 45, 59.8, 215, 0 }, + }, + }, + [2010796] = { + ["coords"] = { + [1] = { 45.9, 52.1, 8, 300 }, + }, + }, + [2010797] = { + ["coords"] = { + [1] = { 59.5, 33.3, 618, 300 }, + }, + }, + [2010798] = { + ["coords"] = { + [1] = { 27.3, 6.9, 1537, 300 }, + }, + }, + [2010799] = { + ["coords"] = { + [1] = { 47.4, 77, 5053, 0 }, + }, + }, + [2010800] = { + ["coords"] = { + [1] = { 56.9, 8.2, 490, 30 }, + }, + }, + [2010801] = { + ["coords"] = { + [1] = { 37.3, 55.3, 16, 0 }, + [2] = { 48.8, 55.2, 16, 300 }, + }, + }, + [2010802] = { + ["coords"] = { + [1] = { 46.5, 20.6, 45, 300 }, + [2] = { 47.3, 20, 45, 300 }, + [3] = { 47.1, 19.6, 45, 300 }, + [4] = { 43.7, 19.2, 45, 300 }, + [5] = { 44.5, 18.9, 45, 300 }, + [6] = { 44.1, 18.4, 45, 300 }, + [7] = { 47.1, 18, 45, 300 }, + [8] = { 45.4, 17.6, 45, 300 }, + [9] = { 44.5, 16.9, 45, 300 }, + [10] = { 44.9, 16.6, 45, 300 }, + [11] = { 39.6, 16.4, 45, 300 }, + [12] = { 42.8, 16, 45, 300 }, + [13] = { 44, 14.4, 45, 300 }, + [14] = { 43.9, 13.5, 45, 300 }, + [15] = { 25, 81.6, 47, 300 }, + [16] = { 25.9, 81, 47, 300 }, + [17] = { 25.6, 80.7, 47, 300 }, + [18] = { 22.4, 80.3, 47, 300 }, + [19] = { 23.2, 80.1, 47, 300 }, + [20] = { 22.9, 79.5, 47, 300 }, + [21] = { 25.7, 79.2, 47, 300 }, + [22] = { 24.1, 78.8, 47, 300 }, + [23] = { 23.3, 78.1, 47, 300 }, + [24] = { 23.6, 77.9, 47, 300 }, + [25] = { 18.6, 77.7, 47, 300 }, + [26] = { 21.6, 77.3, 47, 300 }, + [27] = { 22.8, 75.8, 47, 300 }, + [28] = { 22.6, 75, 47, 300 }, + }, + }, + [2010803] = { + ["coords"] = { + [1] = { 44, 14.6, 45, 30 }, + [2] = { 22.8, 76, 47, 30 }, + }, + }, + [2010804] = { + ["coords"] = {}, + }, + [2010805] = { + ["coords"] = { + [1] = { 12.1, 35.5, 8, 5 }, + }, + }, + [2010806] = { + ["coords"] = { + [1] = { 61, 23.4, 8, 30 }, + }, + }, + [2010807] = { + ["coords"] = { + [1] = { 39.4, 85.8, 33, 30 }, + }, + }, + [2010808] = { + ["coords"] = { + [1] = { 85.1, 27.3, 16, 30 }, + }, + }, + [2010809] = { + ["coords"] = { + [1] = { 77.9, 91.4, 16, 30 }, + }, + }, + [2010810] = { + ["coords"] = { + [1] = { 71.2, 77.1, 12, 300 }, + }, + }, + [2010811] = { + ["coords"] = { + [1] = { 29.1, 51.1, 40, 300 }, + }, + }, + [2010812] = { + ["coords"] = { + [1] = { 19.6, 41.1, 10, 300 }, + }, + }, + [2010813] = { + ["coords"] = { + [1] = { 17.3, 9.9, 33, 0 }, + }, + }, + [2010814] = { + ["coords"] = { + [1] = { 62.4, 33.3, 4, 300 }, + }, + }, + [2010815] = { + ["coords"] = { + [1] = { 60.1, 46.2, 357, 0 }, + }, + }, + [2010816] = { + ["coords"] = { + [1] = { 73.5, 1.3, 14, 30 }, + }, + }, + [2010817] = { + ["coords"] = { + [1] = { 63.4, 86.1, 16, 30 }, + }, + }, + [2010818] = { + ["coords"] = { + [1] = { 45.1, 90.8, 16, 30 }, + }, + }, + [2010819] = { + ["coords"] = {}, + }, + [2010820] = { + ["coords"] = { + [1] = { 73.7, 86.8, 8, 300 }, + [2] = { 80.8, 82.7, 8, 300 }, + [3] = { 70.7, 78, 8, 300 }, + [4] = { 85.4, 74.7, 8, 300 }, + [5] = { 86.8, 70.4, 8, 300 }, + [6] = { 70, 69.9, 8, 300 }, + [7] = { 74, 69.1, 8, 300 }, + [8] = { 69.8, 66.2, 8, 300 }, + [9] = { 63, 66.1, 8, 300 }, + [10] = { 14.7, 65.3, 8, 300 }, + [11] = { 76.4, 64.8, 8, 300 }, + [12] = { 26.9, 63.1, 8, 300 }, + [13] = { 60.6, 63, 8, 300 }, + [14] = { 13.5, 61, 8, 300 }, + [15] = { 11.4, 59.2, 8, 300 }, + [16] = { 31.9, 58.8, 8, 300 }, + [17] = { 78.2, 57.8, 8, 300 }, + [18] = { 15.4, 56.7, 8, 300 }, + [19] = { 60.7, 56.5, 8, 300 }, + [20] = { 89.4, 56.3, 8, 300 }, + [21] = { 32.4, 54.1, 8, 300 }, + [22] = { 78.3, 53.4, 8, 300 }, + [23] = { 18.6, 52.5, 8, 300 }, + [24] = { 62.5, 52, 8, 300 }, + [25] = { 17, 50.7, 8, 300 }, + [26] = { 79.1, 49.2, 8, 300 }, + [27] = { 10.4, 49, 8, 300 }, + [28] = { 80.3, 47.9, 8, 300 }, + [29] = { 34.4, 47.7, 8, 300 }, + [30] = { 27.4, 47.5, 8, 300 }, + [31] = { 28.9, 47, 8, 300 }, + [32] = { 44.9, 46.1, 8, 300 }, + [33] = { 51.4, 45, 8, 300 }, + [34] = { 90.8, 44.5, 8, 300 }, + [35] = { 48.6, 44.1, 8, 300 }, + [36] = { 20.8, 43.9, 8, 300 }, + [37] = { 61.6, 43.2, 8, 300 }, + [38] = { 34.2, 43, 8, 300 }, + [39] = { 79.4, 42.7, 8, 300 }, + [40] = { 43, 41.8, 8, 300 }, + [41] = { 53.1, 41.2, 8, 300 }, + [42] = { 26.4, 40.5, 8, 300 }, + [43] = { 21.5, 39.7, 8, 300 }, + [44] = { 67.9, 39.7, 8, 300 }, + [45] = { 88.1, 38.5, 8, 300 }, + [46] = { 27.9, 38.1, 8, 300 }, + [47] = { 53.1, 37.3, 8, 300 }, + [48] = { 31.3, 37.2, 8, 300 }, + [49] = { 24.8, 37, 8, 300 }, + [50] = { 72.4, 36.9, 8, 300 }, + [51] = { 78.3, 36.9, 8, 300 }, + [52] = { 43.4, 36.3, 8, 300 }, + [53] = { 34.3, 36.1, 8, 300 }, + [54] = { 40.2, 33.5, 8, 300 }, + [55] = { 29.8, 33, 8, 300 }, + [56] = { 77, 32.6, 8, 300 }, + [57] = { 43.6, 32.5, 8, 300 }, + [58] = { 48.5, 31.9, 8, 300 }, + [59] = { 34.2, 30.4, 8, 300 }, + [60] = { 69.8, 30.3, 8, 300 }, + [61] = { 38.1, 30.3, 8, 300 }, + [62] = { 45.1, 29.9, 8, 300 }, + [63] = { 74.4, 29.8, 8, 300 }, + [64] = { 55.7, 29.5, 8, 300 }, + [65] = { 87.8, 29.2, 8, 300 }, + [66] = { 52.7, 28.6, 8, 300 }, + [67] = { 71.3, 25.9, 8, 300 }, + [68] = { 58.4, 24.6, 8, 300 }, + [69] = { 63.1, 21.9, 8, 300 }, + [70] = { 83.7, 19.6, 8, 300 }, + [71] = { 67.2, 18.2, 8, 300 }, + [72] = { 74.8, 15.9, 8, 300 }, + [73] = { 76, 12.1, 8, 300 }, + [74] = { 71.4, 9.6, 8, 300 }, + [75] = { 76.7, 8.3, 8, 300 }, + [76] = { 71.8, 2.8, 8, 300 }, + }, + }, + [2010821] = { + ["coords"] = { + [1] = { 61.4, 13.6, 409, 30 }, + }, + }, + [2010822] = { + ["coords"] = { + [1] = { 60.3, 24.1, 409, 5 }, + }, + }, + [2010823] = { + ["coords"] = { + [1] = { 39.8, 39.1, 8, 5 }, + }, + }, + [2010824] = { + ["coords"] = { + [1] = { 7.8, 64.7, 85, 0 }, + [2] = { 16.5, 54.3, 85, 300 }, + [3] = { 16.6, 53.8, 85, 300 }, + [4] = { 16.4, 53.4, 85, 300 }, + [5] = { 16.9, 53, 85, 300 }, + [6] = { 16.2, 51.3, 85, 300 }, + [7] = { 17.4, 49.2, 85, 300 }, + [8] = { 17.1, 48.9, 85, 300 }, + }, + }, + [2010825] = { + ["coords"] = { + [1] = { 25.8, 65.4, 15, 300 }, + [2] = { 26.4, 65, 15, 300 }, + [3] = { 48.3, 89.6, 17, 300 }, + [4] = { 48.9, 87.9, 17, 300 }, + [5] = { 49.2, 87.6, 17, 300 }, + [6] = { 48.4, 87.2, 17, 300 }, + }, + }, + [2010826] = { + ["coords"] = { + [1] = { 48.1, 89.1, 17, 300 }, + [2] = { 47.8, 88.2, 17, 300 }, + [3] = { 47.5, 86.8, 17, 300 }, + }, + }, + [2010827] = { + ["coords"] = { + [1] = { 26, 69.2, 15, 30 }, + [2] = { 49, 89.8, 17, 30 }, + }, + }, + [2010828] = { + ["coords"] = { + [1] = { 40, 6.1, 1337, 5 }, + }, + }, + [2010829] = { + ["coords"] = { + [1] = { 27.4, 63.5, 409, 0 }, + }, + }, + [2010830] = { + ["coords"] = { + [1] = { 36.9, 55.7, 408, 300 }, + }, + }, + [2010831] = { + ["coords"] = { + [1] = { 29.1, 4.8, 408, 300 }, + [2] = { 24.9, 4.4, 408, 300 }, + [3] = { 29.4, 4.3, 408, 300 }, + [4] = { 28.7, 3.8, 408, 300 }, + [5] = { 28.5, 3.8, 408, 300 }, + [6] = { 30.1, 3.7, 408, 300 }, + [7] = { 24.6, 3.7, 408, 300 }, + [8] = { 28.4, 3.4, 408, 300 }, + [9] = { 25.5, 2.9, 408, 300 }, + [10] = { 27.5, 2.1, 408, 300 }, + [11] = { 24.8, 1.7, 408, 300 }, + [12] = { 28.8, 1.7, 408, 300 }, + [13] = { 28.7, 1.7, 408, 300 }, + [14] = { 28.7, 1.6, 408, 300 }, + [15] = { 25.7, 1.5, 408, 300 }, + [16] = { 26.1, 1.1, 408, 300 }, + [17] = { 29.2, 0.8, 408, 300 }, + [18] = { 28.2, 0.6, 408, 300 }, + [19] = { 28.5, 0.3, 408, 300 }, + [20] = { 48.1, 82.7, 409, 300 }, + [21] = { 43.7, 82.2, 409, 300 }, + [22] = { 48.5, 82.1, 409, 300 }, + [23] = { 47.8, 81.6, 409, 300 }, + [24] = { 47.6, 81.6, 409, 300 }, + [25] = { 49.2, 81.5, 409, 300 }, + [26] = { 43.4, 81.5, 409, 300 }, + [27] = { 47.4, 81.2, 409, 300 }, + [28] = { 44.3, 80.6, 409, 300 }, + [29] = { 46.5, 79.7, 409, 300 }, + [30] = { 43.6, 79.3, 409, 300 }, + [31] = { 47.8, 79.3, 409, 300 }, + [32] = { 47.7, 79.3, 409, 300 }, + [33] = { 47.8, 79.2, 409, 300 }, + [34] = { 44.5, 79.1, 409, 300 }, + [35] = { 44.9, 78.7, 409, 300 }, + [36] = { 48.2, 78.3, 409, 300 }, + [37] = { 47.1, 78.1, 409, 300 }, + [38] = { 47.5, 77.8, 409, 300 }, + [39] = { 49, 77.5, 409, 300 }, + [40] = { 43.3, 77.4, 409, 300 }, + [41] = { 45.3, 76.9, 409, 300 }, + [42] = { 43.2, 76.5, 409, 300 }, + [43] = { 43.2, 74.6, 409, 300 }, + [44] = { 47.3, 73.7, 409, 300 }, + [45] = { 44.3, 73.3, 409, 300 }, + [46] = { 46.2, 73, 409, 300 }, + [47] = { 44.4, 73, 409, 300 }, + [48] = { 49.6, 72.7, 409, 300 }, + [49] = { 54.1, 72.6, 409, 300 }, + [50] = { 47.7, 72.3, 409, 300 }, + [51] = { 53.7, 71.8, 409, 300 }, + [52] = { 52.9, 71.5, 409, 300 }, + [53] = { 47, 71.5, 409, 300 }, + [54] = { 46.6, 71.3, 409, 300 }, + [55] = { 53.5, 71.2, 409, 300 }, + [56] = { 53.3, 71.1, 409, 300 }, + [57] = { 53.2, 71.1, 409, 300 }, + [58] = { 49.6, 70.9, 409, 300 }, + [59] = { 54.4, 70.7, 409, 300 }, + [60] = { 54.3, 70.7, 409, 300 }, + [61] = { 52.1, 70.7, 409, 300 }, + [62] = { 48.3, 70.5, 409, 300 }, + [63] = { 53.7, 70.3, 409, 300 }, + [64] = { 54.2, 70, 409, 300 }, + [65] = { 49.3, 70, 409, 300 }, + [66] = { 53.5, 70, 409, 300 }, + [67] = { 53.3, 69.7, 409, 300 }, + [68] = { 48.1, 69.7, 409, 300 }, + [69] = { 48.6, 69.6, 409, 300 }, + [70] = { 51.2, 69.3, 409, 300 }, + [71] = { 52.9, 69.1, 409, 300 }, + [72] = { 52.8, 69, 409, 300 }, + [73] = { 53.1, 68.6, 409, 300 }, + [74] = { 49.6, 68.2, 409, 300 }, + [75] = { 49.3, 67.8, 409, 300 }, + [76] = { 48.9, 67.6, 409, 300 }, + [77] = { 49.1, 67.6, 409, 300 }, + [78] = { 48.8, 67.5, 409, 300 }, + [79] = { 50.8, 66.8, 409, 300 }, + }, + }, + [2010832] = { + ["coords"] = { + [1] = { 60.4, 74.4, 409, 300 }, + [2] = { 49.8, 74.3, 409, 300 }, + [3] = { 40.8, 73.9, 409, 300 }, + [4] = { 53.1, 72, 409, 300 }, + [5] = { 42.9, 71.8, 409, 300 }, + [6] = { 49.6, 71.7, 409, 300 }, + [7] = { 45.5, 71.6, 409, 300 }, + [8] = { 51.7, 71.2, 409, 300 }, + [9] = { 57.4, 71.1, 409, 300 }, + [10] = { 49.3, 71, 409, 300 }, + [11] = { 54.9, 70.6, 409, 300 }, + [12] = { 48.2, 70.1, 409, 300 }, + [13] = { 38.3, 68.8, 409, 300 }, + [14] = { 59.6, 68.7, 409, 300 }, + [15] = { 50.4, 66.9, 409, 300 }, + [16] = { 57.9, 66.7, 409, 300 }, + [17] = { 52.4, 66.6, 409, 300 }, + [18] = { 55.6, 65.5, 409, 300 }, + [19] = { 36.7, 64.1, 409, 300 }, + [20] = { 58.2, 63.1, 409, 300 }, + [21] = { 65.8, 63.1, 409, 300 }, + [22] = { 57.5, 62.7, 409, 300 }, + [23] = { 71.2, 61.5, 409, 300 }, + [24] = { 48.4, 59.7, 409, 300 }, + [25] = { 59, 59.5, 409, 300 }, + [26] = { 49.7, 59.1, 409, 300 }, + [27] = { 55.2, 57.9, 409, 300 }, + [28] = { 48.3, 57.3, 409, 300 }, + [29] = { 41.4, 56.5, 409, 300 }, + [30] = { 45.5, 56.1, 409, 300 }, + [31] = { 60.5, 55.9, 409, 300 }, + [32] = { 47.4, 54.4, 409, 300 }, + [33] = { 39.7, 53, 409, 300 }, + [34] = { 35.9, 51.3, 409, 300 }, + [35] = { 47.7, 51.1, 409, 300 }, + [36] = { 47, 47.8, 409, 300 }, + [37] = { 49.2, 44.5, 409, 300 }, + [38] = { 52, 43.2, 409, 300 }, + [39] = { 48.4, 41.7, 409, 300 }, + }, + }, + [2010833] = { + ["coords"] = { + [1] = { 27.8, 77, 33, 300 }, + [2] = { 27.7, 76.9, 33, 300 }, + [3] = { 28, 76.8, 33, 300 }, + [4] = { 28.1, 76.7, 33, 300 }, + [5] = { 28.6, 75.6, 33, 300 }, + [6] = { 28.3, 75.3, 33, 300 }, + [7] = { 28, 74.8, 33, 300 }, + [8] = { 27.9, 74.6, 33, 300 }, + }, + }, + [2010834] = { + ["coords"] = { + [1] = { 27.5, 77.5, 33, 300 }, + [2] = { 27.8, 77.3, 33, 0 }, + [3] = { 27.9, 77.2, 33, 300 }, + [4] = { 27.6, 77.1, 33, 300 }, + [5] = { 27.4, 76.9, 33, 300 }, + [6] = { 27.9, 76.8, 33, 300 }, + [7] = { 27.6, 76.7, 33, 300 }, + [8] = { 26.7, 76.7, 33, 300 }, + [9] = { 28.4, 76.6, 33, 0 }, + [10] = { 26.8, 76.5, 33, 300 }, + [11] = { 28.2, 76.4, 33, 300 }, + [12] = { 26.6, 76.3, 33, 300 }, + [13] = { 28.4, 75.7, 33, 300 }, + [14] = { 28.5, 75, 33, 0 }, + [15] = { 28.1, 74.6, 33, 300 }, + [16] = { 18.3, 17.2, 408, 0 }, + [17] = { 36.6, 95.9, 409, 0 }, + }, + }, + [2010835] = { + ["coords"] = { + [1] = { 59.4, 80.4, 408, 30 }, + }, + }, + [2010836] = { + ["coords"] = { + [1] = { 27.5, 77.5, 33, 0 }, + }, + }, + [2010837] = { + ["coords"] = { + [1] = { 18.4, 15.5, 408, 30 }, + [2] = { 36.8, 94.1, 409, 30 }, + }, + }, + [2010838] = { + ["coords"] = { + [1] = { 39.5, 46.5, 331, 20 }, + }, + }, + [2010839] = { + ["coords"] = { + [1] = { 35.3, 45.1, 331, 20 }, + }, + }, + [2010840] = { + ["coords"] = { + [1] = { 67.1, 22.3, 440, 30 }, + }, + }, + [2010841] = { + ["coords"] = { + [1] = { 20, 44.5, 85, 300 }, + }, + }, + [2010842] = { + ["coords"] = { + [1] = { 60, 33.7, 409, 0 }, + }, + }, + [2010843] = { + ["coords"] = { + [1] = { 26.3, 73.2, 33, 5 }, + }, + }, + [2010844] = { + ["coords"] = { + [1] = { 15.6, 40.3, 45, 30 }, + [2] = { 77.9, 70.3, 267, 30 }, + }, + }, + [2010845] = { + ["coords"] = { + [1] = { 20.1, 42.6, 331, 20 }, + }, + }, + [2010846] = { + ["coords"] = { + [1] = { 42.9, 24.4, 5163, 10 }, + }, + }, + [2010847] = { + ["coords"] = { + [1] = { 24.3, 66.4, 2057, 300 }, + }, + }, + [2010848] = { + ["coords"] = { + [1] = { 82.4, 30.8, 16, 30 }, + }, + }, + [2010849] = { + ["coords"] = { + [1] = { 76.1, 39.2, 16, 0 }, + }, + }, + [2010850] = { + ["coords"] = { + [1] = { 44.5, 45, 16, 0 }, + }, + }, + [2010851] = { + ["coords"] = { + [1] = { 40.3, 52.7, 16, 0 }, + }, + }, + [2010852] = { + ["coords"] = { + [1] = { 36, 28.1, 409, 30 }, + }, + }, + [2010853] = { + ["coords"] = { + [1] = { 58.1, 56.5, 440, 300 }, + [2] = { 75.7, 35.1, 1477, 300 }, + [3] = { 39.5, 50.7, 1941, 300 }, + }, + }, + [2010854] = { + ["coords"] = { + [1] = { 50.3, 61.9, 267, 300 }, + }, + }, + [2010855] = { + ["coords"] = { + [1] = { 23.4, 59.8, 85, 300 }, + [2] = { 23.2, 59.5, 85, 300 }, + [3] = { 23.9, 59.4, 85, 300 }, + [4] = { 23.3, 58.8, 85, 300 }, + [5] = { 23.7, 58.6, 85, 300 }, + [6] = { 24, 56.1, 85, 300 }, + [7] = { 25.2, 56, 85, 300 }, + [8] = { 27, 52.5, 85, 300 }, + [9] = { 26.5, 52.2, 85, 300 }, + [10] = { 26.9, 52.1, 85, 300 }, + [11] = { 26.7, 51.8, 85, 300 }, + [12] = { 25.1, 51.6, 85, 300 }, + [13] = { 25.7, 50.5, 85, 300 }, + [14] = { 25.4, 50.5, 85, 300 }, + [15] = { 23.2, 50, 85, 300 }, + }, + }, + [2010856] = { + ["coords"] = { + [1] = { 65.6, 30, 209, 5 }, + }, + }, + [2010857] = { + ["coords"] = { + [1] = { 77, 43.9, 16, 30 }, + }, + }, + [2010858] = { + ["coords"] = { + [1] = { 49.2, 49.6, 16, 30 }, + }, + }, + [2010859] = { + ["coords"] = { + [1] = { 53.7, 42.3, 5024, 300 }, + }, + }, + [2010860] = { + ["coords"] = { + [1] = { 40.2, 24.5, 5077, 5 }, + }, + }, + [2010861] = { + ["coords"] = { + [1] = { 41.3, 50.8, 33, 30 }, + [2] = { 41.5, 49.7, 33, 30 }, + }, + }, + [2010862] = { + ["coords"] = { + [1] = { 42.1, 36.5, 33, 300 }, + [2] = { 41.8, 36.2, 33, 300 }, + [3] = { 42.5, 36.1, 33, 300 }, + [4] = { 42.4, 36, 33, 300 }, + [5] = { 42.3, 35.7, 33, 300 }, + [6] = { 42.3, 35.6, 33, 300 }, + [7] = { 42.5, 35.6, 33, 300 }, + [8] = { 41.8, 35.6, 33, 300 }, + [9] = { 42.4, 35.4, 33, 300 }, + [10] = { 42.5, 34.9, 33, 300 }, + }, + }, + [2010863] = { + ["coords"] = { + [1] = { 29.2, 38.7, 408, 300 }, + [2] = { 26.3, 35.8, 408, 300 }, + [3] = { 25.1, 32.1, 408, 300 }, + [4] = { 21.5, 31.5, 408, 300 }, + [5] = { 21.1, 31.3, 408, 300 }, + [6] = { 21.1, 31.1, 408, 300 }, + [7] = { 20.7, 30.9, 408, 300 }, + [8] = { 20.4, 30.9, 408, 300 }, + [9] = { 20.6, 30.7, 408, 300 }, + [10] = { 26, 30.6, 408, 300 }, + [11] = { 26.2, 30.4, 408, 300 }, + [12] = { 25.9, 30.2, 408, 300 }, + [13] = { 25.9, 30.1, 408, 300 }, + [14] = { 27.9, 30, 408, 300 }, + [15] = { 22.1, 25.9, 408, 300 }, + [16] = { 21.9, 25.3, 408, 300 }, + [17] = { 24.7, 25.3, 408, 300 }, + [18] = { 24.6, 25.2, 408, 300 }, + [19] = { 21, 25.1, 408, 300 }, + [20] = { 22.4, 22.9, 408, 300 }, + [21] = { 22.4, 22.7, 408, 300 }, + [22] = { 20.3, 18.5, 408, 300 }, + [23] = { 20.4, 18.4, 408, 300 }, + [24] = { 20.1, 18.2, 408, 300 }, + [25] = { 18.5, 18, 408, 300 }, + [26] = { 20.4, 17.3, 408, 300 }, + [27] = { 18.6, 16.8, 408, 300 }, + [28] = { 18.5, 16.3, 408, 300 }, + [29] = { 18.7, 15.9, 408, 300 }, + [30] = { 25.5, 15.1, 408, 300 }, + [31] = { 21.5, 13.2, 408, 300 }, + [32] = { 38.8, 97.3, 409, 300 }, + [33] = { 38.9, 97.1, 409, 300 }, + [34] = { 38.5, 97, 409, 300 }, + [35] = { 36.8, 96.8, 409, 300 }, + [36] = { 38.9, 96, 409, 300 }, + [37] = { 37, 95.5, 409, 300 }, + [38] = { 36.9, 95, 409, 300 }, + [39] = { 37, 94.5, 409, 300 }, + [40] = { 44.3, 93.7, 409, 300 }, + [41] = { 40, 91.6, 409, 300 }, + }, + }, + [2010864] = { + ["coords"] = { + [1] = { 40.2, 86.4, 33, 300 }, + [2] = { 39.7, 86, 33, 300 }, + [3] = { 39.4, 85.9, 33, 300 }, + [4] = { 38.6, 85.7, 33, 300 }, + [5] = { 41, 85.6, 33, 300 }, + [6] = { 40.6, 85.5, 33, 300 }, + [7] = { 38.7, 85.4, 33, 300 }, + [8] = { 40.7, 85.3, 33, 300 }, + [9] = { 41.5, 84.9, 33, 300 }, + [10] = { 41.2, 84.7, 33, 300 }, + [11] = { 38.2, 84.6, 33, 300 }, + [12] = { 40.7, 84.4, 33, 300 }, + [13] = { 41, 84.2, 33, 300 }, + [14] = { 40.1, 83.3, 33, 300 }, + [15] = { 40.3, 83, 33, 300 }, + [16] = { 40.9, 82.9, 33, 300 }, + [17] = { 40.8, 82.9, 33, 300 }, + [18] = { 40.7, 82.7, 33, 300 }, + [19] = { 38.5, 82.5, 33, 300 }, + [20] = { 40.7, 82.5, 33, 300 }, + [21] = { 41.8, 82.3, 33, 300 }, + [22] = { 41.5, 82.2, 33, 300 }, + [23] = { 41.4, 82.1, 33, 300 }, + [24] = { 37.8, 82, 33, 300 }, + [25] = { 41.6, 81.8, 33, 300 }, + [26] = { 40.4, 81.1, 33, 300 }, + [27] = { 40.2, 81, 33, 300 }, + [28] = { 40.3, 80.8, 33, 300 }, + [29] = { 39.5, 80, 33, 300 }, + [30] = { 38.1, 79.5, 33, 300 }, + [31] = { 38.3, 79.5, 33, 300 }, + [32] = { 37.1, 79.5, 33, 300 }, + [33] = { 37.4, 79.4, 33, 300 }, + [34] = { 39.6, 79.3, 33, 300 }, + [35] = { 37.6, 79.2, 33, 300 }, + [36] = { 38.2, 79, 33, 300 }, + [37] = { 40.6, 78.8, 33, 300 }, + [38] = { 38.9, 78.7, 33, 300 }, + [39] = { 40.7, 78.6, 33, 300 }, + [40] = { 39.8, 78.5, 33, 300 }, + [41] = { 38.9, 78.3, 33, 300 }, + [42] = { 40.5, 78, 33, 300 }, + [43] = { 40.5, 77.9, 33, 300 }, + }, + }, + [2010865] = { + ["coords"] = { + [1] = { 26.4, 21.9, 5204, 300 }, + }, + }, + [2010866] = { + ["coords"] = { + [1] = { 63.1, 86, 11, 300 }, + [2] = { 71.7, 56.2, 11, 300 }, + [3] = { 46.5, 70.5, 41, 300 }, + [4] = { 97.4, 58.4, 46, 300 }, + [5] = { 57.1, 63, 440, 300 }, + [6] = { 55.6, 53.2, 440, 300 }, + [7] = { 34.2, 84.6, 1941, 300 }, + [8] = { 26.6, 33.5, 1941, 300 }, + [9] = { 55.1, 56, 5023, 300 }, + [10] = { 54.3, 55.8, 5023, 300 }, + [11] = { 54.9, 55.4, 5023, 300 }, + [12] = { 54.1, 55.2, 5023, 300 }, + [13] = { 40.7, 40.3, 5023, 300 }, + [14] = { 40.1, 40, 5023, 300 }, + [15] = { 40.9, 39.8, 5023, 300 }, + [16] = { 40.3, 39.3, 5023, 300 }, + [17] = { 66.6, 32, 5023, 300 }, + [18] = { 67.5, 31.5, 5023, 300 }, + [19] = { 65.9, 31.3, 5023, 300 }, + [20] = { 66.9, 30.8, 5023, 300 }, + [21] = { 69.9, 95, 5097, 300 }, + [22] = { 11.2, 55.3, 5103, 300 }, + [23] = { 27.8, 30.5, 5179, 300 }, + [24] = { 85.6, 39.3, 5208, 300 }, + [25] = { 17.2, 45, 5602, 300 }, + [26] = { 23.8, 22.1, 5602, 300 }, + }, + }, + [2010867] = { + ["coords"] = {}, + }, + [2010868] = { + ["coords"] = { + [1] = { 40.5, 81.4, 16, 300 }, + [2] = { 41.5, 79.6, 16, 300 }, + [3] = { 39.9, 78.9, 16, 300 }, + }, + }, + [2010869] = { + ["coords"] = { + [1] = { 60, 76.2, 357, 30 }, + [2] = { 56.2, 74, 357, 30 }, + [3] = { 53.9, 64.9, 357, 30 }, + [4] = { 77.1, 64.1, 357, 30 }, + [5] = { 76.7, 64.1, 357, 30 }, + [6] = { 47.2, 63.3, 357, 30 }, + [7] = { 71.3, 59.3, 357, 30 }, + [8] = { 47.9, 56.6, 357, 30 }, + [9] = { 75.1, 51.5, 357, 30 }, + [10] = { 77.5, 49.5, 357, 30 }, + [11] = { 63.4, 49.3, 357, 30 }, + [12] = { 56.4, 48.5, 357, 30 }, + [13] = { 79.5, 48.3, 357, 30 }, + [14] = { 59.7, 47.5, 357, 30 }, + [15] = { 76.6, 46.8, 357, 30 }, + [16] = { 48, 45.7, 357, 30 }, + [17] = { 68.5, 37.8, 357, 30 }, + [18] = { 84, 37.7, 357, 30 }, + [19] = { 78.1, 36.2, 357, 30 }, + [20] = { 71.6, 35.9, 357, 30 }, + [21] = { 46.2, 27.4, 357, 30 }, + [22] = { 50.5, 26, 357, 30 }, + [23] = { 38.4, 25.1, 357, 30 }, + [24] = { 6, 19.5, 2557, 30 }, + }, + }, + [2010870] = { + ["coords"] = { + [1] = { 24.9, 52.4, 33, 0 }, + }, + }, + [2010871] = { + ["coords"] = { + [1] = { 57.9, 69.2, 357, 0 }, + }, + }, + [2010872] = { + ["coords"] = { + [1] = { 58.1, 68.1, 357, 300 }, + [2] = { 60.3, 67.9, 357, 300 }, + [3] = { 59.4, 67.5, 357, 300 }, + [4] = { 59.7, 65, 357, 300 }, + }, + }, + [2010873] = { + ["coords"] = { + [1] = { 43.3, 80.5, 33, 300 }, + }, + }, + [2010874] = { + ["coords"] = { + [1] = { 76.4, 35.2, 1477, 300 }, + }, + }, + [2010875] = { + ["coords"] = { + [1] = { 61.8, 38.4, 17, 300 }, + [2] = { 61.3, 23.8, 17, 300 }, + }, + }, + [2010876] = { + ["coords"] = { + [1] = { 31.6, 65.7, 11, 300 }, + [2] = { 32.6, 64.5, 11, 300 }, + [3] = { 38.3, 63.6, 11, 300 }, + [4] = { 37.4, 62.8, 11, 300 }, + [5] = { 34.4, 61.7, 11, 300 }, + [6] = { 37.1, 61.3, 11, 300 }, + [7] = { 36.3, 61.1, 11, 300 }, + [8] = { 34, 60.8, 11, 300 }, + [9] = { 34.5, 60.6, 11, 300 }, + [10] = { 35.1, 60.5, 11, 300 }, + }, + }, + [2010877] = { + ["coords"] = { + [1] = { 58.5, 17.5, 2017, 0 }, + }, + }, + [2010878] = { + ["coords"] = { + [1] = { 37.3, 50.5, 408, 300 }, + }, + }, + [2010879] = { + ["coords"] = {}, + }, + [2010880] = { + ["coords"] = {}, + }, + [2010882] = { + ["coords"] = {}, + }, + [2010883] = { + ["coords"] = { + [1] = { 56.7, 29.6, 331, 25 }, + [2] = { 55.9, 93.8, 361, 25 }, + }, + }, + [2010884] = { + ["coords"] = { + [1] = { 26.1, 16.5, 40, 300 }, + }, + }, + [2010885] = { + ["coords"] = { + [1] = { 40.9, 48.4, 361, 30 }, + }, + }, + [2010886] = { + ["coords"] = { + [1] = { 79.7, 61.4, 28, 300 }, + [2] = { 21.3, 85, 139, 300 }, + }, + }, + [2010887] = { + ["coords"] = { + [1] = { 79, 62.6, 28, 300 }, + [2] = { 20.5, 86.3, 139, 300 }, + }, + }, + [2010888] = { + ["coords"] = { + [1] = { 64, 27.8, 15, 5 }, + }, + }, + [2010889] = { + ["coords"] = { + [1] = { 36.1, 70.6, 1519, 0 }, + [2] = { 36.5, 70.5, 1519, 0 }, + }, + }, + [2010890] = { + ["coords"] = { + [1] = { 57.7, 13.7, 4, 300 }, + }, + }, + [2010891] = { + ["coords"] = { + [1] = { 54, 12, 5087, 300 }, + [2] = { 54.2, 11.9, 5087, 300 }, + }, + }, + [2010892] = { + ["coords"] = { + [1] = { 70.1, 11.6, 4, 300 }, + [2] = { 66.2, 11.3, 4, 300 }, + [3] = { 63.6, 9.8, 4, 300 }, + [4] = { 64.8, 9.7, 4, 300 }, + [5] = { 69.9, 8.9, 4, 300 }, + [6] = { 65.2, 8.9, 4, 300 }, + [7] = { 60, 7.8, 4, 300 }, + [8] = { 63.8, 7.6, 4, 300 }, + [9] = { 55.5, 7.5, 4, 300 }, + [10] = { 55.7, 7.1, 4, 300 }, + [11] = { 59.6, 78.9, 8, 300 }, + [12] = { 50.1, 76.2, 8, 300 }, + [13] = { 62.8, 76.2, 8, 300 }, + [14] = { 51.8, 76, 8, 300 }, + [15] = { 59.3, 74.9, 8, 300 }, + [16] = { 52.4, 74.8, 8, 300 }, + [17] = { 44.9, 73.3, 8, 300 }, + [18] = { 50.4, 72.9, 8, 300 }, + [19] = { 38.2, 72.8, 8, 300 }, + [20] = { 38.5, 72.2, 8, 300 }, + [21] = { 57.8, 70.3, 8, 300 }, + [22] = { 52.8, 68.6, 8, 300 }, + [23] = { 37.2, 68.2, 8, 300 }, + [24] = { 59.8, 68.1, 8, 300 }, + [25] = { 48.9, 67.5, 8, 300 }, + [26] = { 51, 67, 8, 300 }, + [27] = { 43.7, 65.5, 8, 300 }, + [28] = { 43.8, 65.1, 8, 300 }, + [29] = { 38.2, 64.7, 8, 300 }, + [30] = { 55.9, 64.2, 8, 300 }, + [31] = { 47.4, 63.5, 8, 300 }, + [32] = { 43.5, 62.6, 8, 300 }, + [33] = { 59.9, 61.9, 8, 300 }, + }, + }, + [2010893] = { + ["coords"] = { + [1] = { 38.2, 34.9, 17, 5 }, + [2] = { 64.1, 13.7, 215, 5 }, + }, + }, + [2010894] = { + ["coords"] = { + [1] = { 36.7, 34.4, 17, 5 }, + [2] = { 61.2, 12.8, 215, 5 }, + }, + }, + [2010895] = { + ["coords"] = { + [1] = { 37.4, 36, 17, 5 }, + [2] = { 62.6, 15.9, 215, 5 }, + }, + }, + [2010896] = { + ["coords"] = { + [1] = { 29.3, 43.5, 46, 5 }, + }, + }, + [2010897] = { + ["coords"] = { + [1] = { 55.8, 84.1, 5103, 5 }, + }, + }, + [2010898] = { + ["coords"] = { + [1] = { 44.6, 71, 40, 5 }, + [2] = { 75.1, 0.3, 1581, 5 }, + }, + }, + [2010899] = { + ["coords"] = { + [1] = { 45.9, 19.4, 40, 5 }, + }, + }, + [2010900] = { + ["coords"] = { + [1] = { 29, 48.6, 40, 5 }, + }, + }, + [2010901] = { + ["coords"] = { + [1] = { 20.9, 36, 44, 5 }, + }, + }, + [2010902] = { + ["coords"] = { + [1] = { 66.6, 52.2, 5103, 5 }, + }, + }, + [2010903] = { + ["coords"] = { + [1] = { 96.9, 58.2, 46, 300 }, + }, + }, + [2010904] = { + ["coords"] = { + [1] = { 94.5, 76.7, 25, 30 }, + [2] = { 39.8, 33.6, 46, 30 }, + }, + }, + [2010905] = { + ["coords"] = { + [1] = { 44.9, 51.1, 46, 300 }, + }, + }, + [2010906] = { + ["coords"] = { + [1] = { 44.3, 56.8, 46, 300 }, + }, + }, + [2010907] = { + ["coords"] = { + [1] = { 42.1, 55.9, 46, 300 }, + }, + }, + [2010908] = { + ["coords"] = { + [1] = { 98.2, 78.4, 25, 30 }, + [2] = { 40.7, 34, 46, 30 }, + }, + }, + [2010909] = { + ["coords"] = { + [1] = { 62.8, 55.8, 45, 30 }, + }, + }, + [2010910] = { + ["coords"] = { + [1] = { 56.4, 77.7, 5103, 300 }, + [2] = { 27, 62.9, 5103, 300 }, + [3] = { 29.7, 56.3, 5103, 300 }, + [4] = { 38.6, 38.5, 5103, 300 }, + [5] = { 27.5, 36.2, 5103, 300 }, + }, + }, + [2010911] = { + ["coords"] = { + [1] = { 55.1, 83.1, 5103, 300 }, + [2] = { 36.5, 81.2, 5103, 300 }, + [3] = { 50.4, 80.8, 5103, 300 }, + [4] = { 52.5, 56.7, 5103, 300 }, + [5] = { 54.7, 52.4, 5103, 300 }, + }, + }, + [2010912] = { + ["coords"] = { + [1] = { 42.4, 83.5, 5103, 300 }, + [2] = { 29, 72.4, 5103, 300 }, + [3] = { 27.3, 63.3, 5103, 300 }, + [4] = { 25.8, 61.1, 5103, 300 }, + [5] = { 42, 60.7, 5103, 300 }, + [6] = { 58.9, 44.2, 5103, 300 }, + [7] = { 34.7, 42.2, 5103, 300 }, + }, + }, + [2010913] = { + ["coords"] = { + [1] = { 42.4, 84.1, 5103, 300 }, + [2] = { 58.1, 83.4, 5103, 300 }, + [3] = { 56.5, 77.9, 5103, 300 }, + [4] = { 28.8, 72.7, 5103, 300 }, + [5] = { 27.2, 63.1, 5103, 300 }, + [6] = { 59.4, 60.3, 5103, 300 }, + [7] = { 40.5, 58.6, 5103, 300 }, + [8] = { 40.7, 40.4, 5103, 300 }, + }, + }, + [2010914] = { + ["coords"] = { + [1] = { 26.3, 36.8, 1, 30 }, + [2] = { 91.6, 73.8, 721, 30 }, + }, + }, + [2010915] = { + ["coords"] = { + [1] = { 16.7, 46.3, 1176, 300 }, + }, + }, + [2010916] = { + ["coords"] = { + [1] = { 49, 61.3, 11, 300 }, + [2] = { 6.4, 26.1, 5602, 300 }, + }, + }, + [2010917] = { + ["coords"] = {}, + }, + [2010918] = { + ["coords"] = { + [1] = { 82.5, 52.3, 47, 300 }, + }, + }, + [2010919] = { + ["coords"] = { + [1] = { 82.5, 52.4, 47, 0 }, + }, + }, + [2010920] = { + ["coords"] = { + [1] = { 32.4, 30.3, 15, 300 }, + [2] = { 52.3, 69.7, 17, 300 }, + }, + }, + [2010921] = { + ["coords"] = { + [1] = { 68.5, 48.6, 15, 5 }, + }, + }, + [2010922] = { + ["coords"] = { + [1] = { 68.6, 48.6, 15, 5 }, + }, + }, + [2010923] = { + ["coords"] = { + [1] = { 32.5, 30.3, 15, 300 }, + [2] = { 52.3, 69.7, 17, 300 }, + }, + }, + [2010924] = { + ["coords"] = { + [1] = { 55.2, 54.9, 215, 300 }, + }, + }, + [2010925] = { + ["coords"] = { + [1] = { 52.3, 71.4, 215, 300 }, + [2] = { 45.1, 69.5, 215, 300 }, + [3] = { 56, 69.3, 215, 300 }, + [4] = { 49, 68.6, 215, 300 }, + [5] = { 52.8, 67.8, 215, 300 }, + [6] = { 42.8, 66.9, 215, 300 }, + [7] = { 45.3, 66.6, 215, 300 }, + [8] = { 55.2, 66.6, 215, 300 }, + [9] = { 47, 65.4, 215, 300 }, + [10] = { 48.4, 63.7, 215, 300 }, + [11] = { 52, 63.6, 215, 300 }, + [12] = { 49.6, 62.2, 215, 300 }, + [13] = { 56.1, 61.9, 215, 300 }, + [14] = { 42.9, 61.6, 215, 300 }, + [15] = { 53.3, 61.6, 215, 300 }, + [16] = { 50.6, 59.2, 215, 300 }, + [17] = { 41.4, 57.9, 215, 300 }, + [18] = { 53.3, 57.9, 215, 300 }, + [19] = { 55.3, 57.7, 215, 300 }, + [20] = { 51.5, 56.8, 215, 300 }, + [21] = { 42, 56.5, 215, 300 }, + [22] = { 54.9, 54.7, 215, 300 }, + [23] = { 44.1, 53, 215, 300 }, + [24] = { 45.7, 52.5, 215, 300 }, + [25] = { 56.3, 50.5, 215, 300 }, + [26] = { 48.5, 49.3, 215, 300 }, + [27] = { 51.9, 47.1, 215, 300 }, + }, + }, + [2010926] = { + ["coords"] = { + [1] = { 49.5, 59.5, 440, 5 }, + }, + }, + [2010927] = { + ["coords"] = { + [1] = { 39.5, 43.9, 40, 300 }, + }, + }, + [2010928] = { + ["coords"] = { + [1] = { 60.8, 58.1, 40, 5 }, + }, + }, + [2010929] = { + ["coords"] = {}, + }, + [2010930] = { + ["coords"] = { + [1] = { 76.2, 62.9, 406, 60 }, + [2] = { 76.2, 62.6, 406, 60 }, + [3] = { 76.5, 62.4, 406, 60 }, + [4] = { 75.6, 62.2, 406, 60 }, + [5] = { 76.3, 61.8, 406, 60 }, + [6] = { 74.9, 61.4, 406, 60 }, + [7] = { 75.4, 61, 406, 60 }, + }, + }, + [2010931] = { + ["coords"] = { + [1] = { 30.9, 40.6, 406, 300 }, + [2] = { 31, 40.5, 406, 300 }, + [3] = { 31.2, 40.5, 406, 300 }, + [4] = { 31.2, 40.4, 406, 300 }, + [5] = { 31.4, 40.3, 406, 300 }, + [6] = { 23.4, 39.4, 406, 300 }, + [7] = { 22.2, 39, 406, 300 }, + [8] = { 21.9, 38, 406, 300 }, + [9] = { 30.3, 37.6, 406, 300 }, + [10] = { 29.7, 37.4, 406, 300 }, + [11] = { 29.3, 37.4, 406, 300 }, + [12] = { 29.7, 37.3, 406, 300 }, + [13] = { 30.3, 36.5, 406, 300 }, + [14] = { 30.3, 36.4, 406, 300 }, + [15] = { 30.2, 36.4, 406, 300 }, + [16] = { 30.3, 36.3, 406, 300 }, + [17] = { 29.7, 36, 406, 300 }, + [18] = { 29.5, 35.9, 406, 300 }, + [19] = { 29.7, 34.1, 406, 300 }, + [20] = { 28.3, 33.2, 406, 300 }, + [21] = { 28.1, 33.1, 406, 300 }, + [22] = { 27.7, 32.4, 406, 300 }, + [23] = { 29.1, 32, 406, 300 }, + [24] = { 27.7, 31.3, 406, 300 }, + [25] = { 27.2, 31.2, 406, 300 }, + [26] = { 27.7, 31.1, 406, 300 }, + [27] = { 27.8, 31.1, 406, 300 }, + [28] = { 27.8, 31, 406, 300 }, + [29] = { 26.8, 31, 406, 300 }, + [30] = { 27.5, 31, 406, 300 }, + [31] = { 27.4, 30.9, 406, 300 }, + [32] = { 26.6, 30.8, 406, 300 }, + [33] = { 27.9, 30.5, 406, 300 }, + [34] = { 27, 30.4, 406, 300 }, + [35] = { 28.1, 29.9, 406, 300 }, + [36] = { 28.4, 29.4, 406, 300 }, + [37] = { 28.4, 29.3, 406, 300 }, + [38] = { 26.6, 29.2, 406, 300 }, + [39] = { 27.8, 29.1, 406, 300 }, + [40] = { 27.9, 29, 406, 300 }, + [41] = { 28.1, 28.8, 406, 300 }, + [42] = { 26.7, 27.2, 406, 300 }, + [43] = { 24.4, 26, 406, 300 }, + [44] = { 24.6, 25.9, 406, 300 }, + [45] = { 24.7, 25.8, 406, 300 }, + [46] = { 24.7, 25.2, 406, 300 }, + [47] = { 25.1, 24.6, 406, 300 }, + }, + }, + [2010932] = { + ["coords"] = { + [1] = { 31.5, 40.4, 406, 300 }, + [2] = { 29.6, 37.3, 406, 300 }, + [3] = { 31, 36.8, 406, 300 }, + [4] = { 30.3, 36.5, 406, 300 }, + [5] = { 29.7, 36, 406, 300 }, + [6] = { 28.9, 35.9, 406, 300 }, + [7] = { 29.7, 35.6, 406, 300 }, + [8] = { 30.3, 35.1, 406, 300 }, + [9] = { 28.2, 33.2, 406, 300 }, + [10] = { 28.1, 33.1, 406, 300 }, + [11] = { 29.6, 32.5, 406, 300 }, + [12] = { 27.7, 32.4, 406, 300 }, + [13] = { 29.2, 32, 406, 300 }, + [14] = { 28.5, 31.9, 406, 300 }, + [15] = { 27.7, 31.2, 406, 300 }, + [16] = { 27.3, 31.2, 406, 300 }, + [17] = { 27.1, 31.1, 406, 300 }, + [18] = { 27.7, 31.1, 406, 300 }, + [19] = { 27.8, 31, 406, 300 }, + [20] = { 27.7, 30.8, 406, 300 }, + [21] = { 29.2, 30.7, 406, 300 }, + [22] = { 27.9, 30.4, 406, 300 }, + [23] = { 28.5, 29.6, 406, 300 }, + [24] = { 27.8, 29.1, 406, 300 }, + [25] = { 28.3, 28.9, 406, 300 }, + [26] = { 26.1, 28.4, 406, 300 }, + [27] = { 26.8, 27.9, 406, 300 }, + [28] = { 26.8, 27.8, 406, 300 }, + [29] = { 25.2, 27.4, 406, 300 }, + [30] = { 25.9, 27.4, 406, 300 }, + [31] = { 26.7, 27.2, 406, 300 }, + [32] = { 26.6, 26.7, 406, 300 }, + [33] = { 25.6, 26.3, 406, 300 }, + [34] = { 24.5, 25.9, 406, 300 }, + [35] = { 24.4, 25.9, 406, 300 }, + [36] = { 25.1, 25.5, 406, 300 }, + [37] = { 24.3, 25.5, 406, 300 }, + [38] = { 25.4, 25.1, 406, 300 }, + [39] = { 25.2, 24.7, 406, 300 }, + [40] = { 25.1, 24.6, 406, 300 }, + }, + }, + [2010933] = { + ["coords"] = { + [1] = { 67.8, 59.6, 3, 300 }, + }, + }, + [2010934] = { + ["coords"] = { + [1] = { 73.5, 42.8, 3, 300 }, + }, + }, + [2010935] = { + ["coords"] = { + [1] = { 41.3, 27, 3, 30 }, + [2] = { 19.2, 95.8, 5602, 30 }, + }, + }, + [2010936] = { + ["coords"] = { + [1] = { 62.1, 97.1, 14, 30 }, + [2] = { 62.6, 97, 14, 30 }, + [3] = { 62.2, 96.8, 14, 30 }, + [4] = { 64.1, 96.3, 14, 30 }, + [5] = { 63.3, 95.9, 14, 30 }, + [6] = { 62.9, 95.6, 14, 30 }, + [7] = { 62.5, 95.2, 14, 30 }, + [8] = { 62.5, 94.9, 14, 30 }, + [9] = { 60.5, 90.9, 14, 30 }, + [10] = { 59.3, 90.7, 14, 30 }, + [11] = { 58.9, 90.7, 14, 30 }, + [12] = { 60.2, 90.6, 14, 30 }, + [13] = { 59, 90.2, 14, 30 }, + [14] = { 58.9, 90.2, 14, 30 }, + [15] = { 61.1, 90.2, 14, 30 }, + [16] = { 59.9, 88.6, 14, 30 }, + [17] = { 53.3, 87.5, 14, 30 }, + [18] = { 77.7, 47.8, 17, 30 }, + [19] = { 77.9, 47.7, 17, 30 }, + [20] = { 77.7, 47.6, 17, 30 }, + [21] = { 78.7, 47.4, 17, 30 }, + [22] = { 78.3, 47.1, 17, 30 }, + [23] = { 78.1, 47, 17, 30 }, + [24] = { 77.9, 46.8, 17, 30 }, + [25] = { 77.9, 46.6, 17, 30 }, + [26] = { 76.8, 44.5, 17, 30 }, + [27] = { 76.2, 44.4, 17, 30 }, + [28] = { 76, 44.4, 17, 30 }, + [29] = { 76.7, 44.4, 17, 30 }, + [30] = { 76.1, 44.2, 17, 30 }, + [31] = { 76, 44.2, 17, 30 }, + [32] = { 77.1, 44.1, 17, 30 }, + [33] = { 76.5, 43.3, 17, 30 }, + [34] = { 73.1, 42.7, 17, 30 }, + }, + }, + [2010937] = { + ["coords"] = { + [1] = { 36, 23.6, 405, 300 }, + [2] = { 37.6, 23.1, 405, 300 }, + [3] = { 34.3, 22.7, 405, 300 }, + [4] = { 36.8, 22.1, 405, 300 }, + [5] = { 34.5, 21.9, 405, 300 }, + [6] = { 34.2, 20, 405, 300 }, + [7] = { 36.8, 19.5, 405, 300 }, + [8] = { 38.8, 19.1, 405, 300 }, + [9] = { 39.4, 17.4, 405, 300 }, + [10] = { 34.3, 17.3, 405, 300 }, + [11] = { 35.1, 16.9, 405, 300 }, + [12] = { 39.3, 16.4, 405, 300 }, + [13] = { 37.5, 16.1, 405, 300 }, + [14] = { 30.4, 15.5, 405, 300 }, + [15] = { 36.3, 12.8, 405, 300 }, + [16] = { 36, 12.4, 405, 300 }, + [17] = { 37.2, 11.3, 405, 300 }, + [18] = { 33.5, 10.8, 405, 300 }, + [19] = { 34.3, 9, 405, 300 }, + [20] = { 23.1, 83, 406, 300 }, + [21] = { 20.9, 81.2, 406, 300 }, + }, + }, + [2010938] = { + ["coords"] = { + [1] = { 32.6, 43.3, 405, 30 }, + }, + }, + [2010939] = { + ["coords"] = { + [1] = { 66.5, 24.1, 440, 300 }, + }, + }, + [2010940] = { + ["coords"] = { + [1] = { 66.7, 24.2, 440, 300 }, + }, + }, + [2010941] = { + ["coords"] = { + [1] = { 66.6, 24, 440, 300 }, + }, + }, + [2010942] = { + ["coords"] = { + [1] = { 66.6, 24.4, 440, 300 }, + }, + }, + [2010943] = { + ["coords"] = { + [1] = { 70.6, 64.3, 406, 30 }, + }, + }, + [2010944] = { + ["coords"] = { + [1] = { 32.6, 10.2, 17, 5 }, + [2] = { 76.9, 62.7, 406, 5 }, + }, + }, + [2010945] = { + ["coords"] = { + [1] = { 32.2, 19.7, 17, 300 }, + [2] = { 32.3, 19.6, 17, 300 }, + [3] = { 31.9, 19.3, 17, 300 }, + [4] = { 32.4, 19.3, 17, 300 }, + [5] = { 32.5, 19.2, 17, 300 }, + [6] = { 35, 19, 17, 300 }, + [7] = { 34.9, 18.9, 17, 300 }, + [8] = { 34.7, 18.9, 17, 300 }, + [9] = { 32.1, 17.7, 17, 300 }, + [10] = { 32.8, 17.6, 17, 300 }, + [11] = { 33.5, 17.5, 17, 300 }, + [12] = { 32.9, 17.5, 17, 300 }, + [13] = { 31.4, 17.4, 17, 300 }, + [14] = { 31.6, 17.4, 17, 300 }, + [15] = { 32.1, 17.2, 17, 300 }, + [16] = { 76.3, 78.8, 406, 300 }, + [17] = { 76.5, 78.5, 406, 300 }, + [18] = { 75.7, 78.2, 406, 300 }, + [19] = { 76.7, 78.1, 406, 300 }, + [20] = { 76.8, 78, 406, 300 }, + [21] = { 72.2, 77.8, 406, 300 }, + [22] = { 81, 77.6, 406, 300 }, + [23] = { 80.7, 77.5, 406, 300 }, + [24] = { 80.4, 77.5, 406, 300 }, + [25] = { 76, 75.4, 406, 300 }, + [26] = { 77.2, 75.2, 406, 300 }, + [27] = { 78.4, 75.1, 406, 300 }, + [28] = { 77.4, 75.1, 406, 300 }, + [29] = { 74.9, 75, 406, 300 }, + [30] = { 75.2, 74.9, 406, 300 }, + [31] = { 76, 74.6, 406, 300 }, + }, + }, + [2010946] = { + ["coords"] = { + [1] = { 38.1, 29.6, 3, 0 }, + [2] = { 17.7, 97, 5602, 0 }, + }, + }, + [2010947] = { + ["coords"] = { + [1] = { 57, 39.6, 3, 30 }, + }, + }, + [2010948] = { + ["coords"] = { + [1] = { 52.6, 87, 5121, 300 }, + [2] = { 47.1, 86.9, 5121, 300 }, + [3] = { 47.2, 86.7, 5121, 300 }, + [4] = { 48.8, 85.8, 5121, 300 }, + [5] = { 48.1, 85.7, 5121, 300 }, + [6] = { 52.6, 84.2, 5121, 300 }, + [7] = { 43.4, 84.2, 5121, 300 }, + [8] = { 51.9, 84, 5121, 300 }, + [9] = { 49.5, 84, 5121, 300 }, + [10] = { 46.9, 83.4, 5121, 300 }, + [11] = { 46.9, 83.3, 5121, 300 }, + [12] = { 42.1, 82.6, 5121, 300 }, + [13] = { 46.3, 82.4, 5121, 300 }, + [14] = { 49, 81.5, 5121, 300 }, + [15] = { 45, 81.5, 5121, 300 }, + [16] = { 50.7, 81.2, 5121, 300 }, + [17] = { 46.5, 81.2, 5121, 300 }, + [18] = { 50.2, 80.6, 5121, 300 }, + [19] = { 45.3, 80.5, 5121, 300 }, + [20] = { 50.2, 80.5, 5121, 300 }, + [21] = { 50.9, 80.3, 5121, 300 }, + [22] = { 47.2, 79.7, 5121, 300 }, + [23] = { 51.2, 78.6, 5121, 300 }, + [24] = { 52.2, 78.5, 5121, 300 }, + [25] = { 48.8, 77.8, 5121, 300 }, + [26] = { 46.2, 77.7, 5121, 300 }, + [27] = { 48.1, 76.7, 5121, 300 }, + [28] = { 51, 75.3, 5121, 300 }, + [29] = { 46.2, 75.2, 5121, 300 }, + [30] = { 49.7, 74.7, 5121, 300 }, + [31] = { 48, 74.4, 5121, 300 }, + [32] = { 52, 74.4, 5121, 300 }, + [33] = { 49.5, 73.8, 5121, 300 }, + [34] = { 52.1, 73.7, 5121, 300 }, + [35] = { 49.9, 73.3, 5121, 300 }, + [36] = { 42.6, 72.1, 5121, 300 }, + [37] = { 47.5, 71.6, 5121, 300 }, + [38] = { 55.4, 70.4, 5121, 300 }, + [39] = { 55.3, 67.5, 5121, 300 }, + [40] = { 54.2, 65.8, 5121, 300 }, + [41] = { 60.8, 63.9, 5121, 300 }, + [42] = { 56.4, 63.6, 5121, 300 }, + [43] = { 62.4, 63.4, 5121, 300 }, + [44] = { 51, 63.2, 5121, 300 }, + [45] = { 52, 62.7, 5121, 300 }, + [46] = { 52.1, 62.6, 5121, 300 }, + [47] = { 50.4, 62.4, 5121, 300 }, + [48] = { 60.7, 62, 5121, 300 }, + [49] = { 63.1, 61.7, 5121, 300 }, + [50] = { 50.8, 61.5, 5121, 300 }, + [51] = { 44.3, 60.6, 5121, 300 }, + [52] = { 49.1, 60.6, 5121, 300 }, + [53] = { 61.1, 59.7, 5121, 300 }, + [54] = { 62.1, 59.1, 5121, 300 }, + [55] = { 44.6, 58.6, 5121, 300 }, + [56] = { 47.6, 58.4, 5121, 300 }, + [57] = { 48, 56.8, 5121, 300 }, + [58] = { 55.3, 56.5, 5121, 300 }, + [59] = { 46, 55.9, 5121, 300 }, + [60] = { 53.8, 55.8, 5121, 300 }, + [61] = { 41, 55, 5121, 300 }, + [62] = { 42.2, 54.3, 5121, 300 }, + [63] = { 53.5, 53.8, 5121, 300 }, + [64] = { 59.5, 53.8, 5121, 300 }, + [65] = { 45.8, 53.6, 5121, 300 }, + [66] = { 45.6, 53.5, 5121, 300 }, + [67] = { 45.8, 53.4, 5121, 300 }, + [68] = { 44.3, 53.3, 5121, 300 }, + [69] = { 40.4, 53.1, 5121, 300 }, + [70] = { 55.8, 53.1, 5121, 300 }, + [71] = { 62.8, 52.6, 5121, 300 }, + [72] = { 41.6, 52.5, 5121, 300 }, + [73] = { 56.3, 52.1, 5121, 300 }, + [74] = { 50.8, 52, 5121, 300 }, + [75] = { 58.7, 52, 5121, 300 }, + [76] = { 54.3, 51.9, 5121, 300 }, + [77] = { 59, 51.5, 5121, 300 }, + [78] = { 54.3, 51.5, 5121, 300 }, + [79] = { 59.6, 50.9, 5121, 300 }, + [80] = { 41.2, 50.9, 5121, 300 }, + [81] = { 41, 50.8, 5121, 300 }, + [82] = { 43.7, 50.8, 5121, 300 }, + [83] = { 47.4, 50.6, 5121, 300 }, + [84] = { 57.7, 50.2, 5121, 300 }, + [85] = { 56.4, 50.1, 5121, 300 }, + [86] = { 45.4, 50, 5121, 300 }, + [87] = { 54, 49.5, 5121, 300 }, + [88] = { 39.4, 49.5, 5121, 300 }, + [89] = { 54, 49.3, 5121, 300 }, + [90] = { 47.9, 48.9, 5121, 300 }, + [91] = { 54, 48.9, 5121, 300 }, + [92] = { 61.4, 48.7, 5121, 300 }, + [93] = { 62.1, 48.3, 5121, 300 }, + [94] = { 50.4, 47.9, 5121, 300 }, + [95] = { 48.1, 47.8, 5121, 300 }, + [96] = { 51.3, 47.7, 5121, 300 }, + [97] = { 45.3, 47.4, 5121, 300 }, + [98] = { 52.3, 46.3, 5121, 300 }, + [99] = { 52.1, 44, 5121, 300 }, + [100] = { 41.5, 43.9, 5121, 300 }, + [101] = { 48.1, 43.4, 5121, 300 }, + [102] = { 55.6, 42.6, 5121, 300 }, + [103] = { 55.5, 42.3, 5121, 300 }, + [104] = { 55.8, 42.3, 5121, 300 }, + [105] = { 54.1, 42, 5121, 300 }, + [106] = { 49.4, 41.9, 5121, 300 }, + [107] = { 44, 40.2, 5121, 300 }, + [108] = { 43.9, 40.1, 5121, 300 }, + [109] = { 60.8, 39.8, 5121, 300 }, + [110] = { 46.8, 39.4, 5121, 300 }, + [111] = { 45.3, 39.2, 5121, 300 }, + [112] = { 41.1, 39.2, 5121, 300 }, + [113] = { 41.2, 39, 5121, 300 }, + [114] = { 45.6, 38.5, 5121, 300 }, + [115] = { 42.8, 38.4, 5121, 300 }, + [116] = { 56.5, 37.6, 5121, 300 }, + [117] = { 64.5, 36.9, 5121, 300 }, + [118] = { 64.6, 36.4, 5121, 300 }, + [119] = { 43.5, 36.3, 5121, 300 }, + [120] = { 44.9, 35.8, 5121, 300 }, + [121] = { 53, 35.2, 5121, 300 }, + [122] = { 45.4, 35.1, 5121, 300 }, + [123] = { 41.7, 34.8, 5121, 300 }, + [124] = { 48.2, 33.8, 5121, 300 }, + [125] = { 41.4, 33.7, 5121, 300 }, + [126] = { 65, 33.5, 5121, 300 }, + [127] = { 51, 32.8, 5121, 300 }, + [128] = { 40.1, 31.8, 5121, 300 }, + [129] = { 47.8, 27, 5121, 300 }, + [130] = { 51.8, 26.2, 5121, 300 }, + [131] = { 46.5, 26.1, 5121, 300 }, + [132] = { 55.2, 25.9, 5121, 300 }, + [133] = { 41.3, 25.6, 5121, 300 }, + [134] = { 45, 25.5, 5121, 300 }, + [135] = { 49.9, 25.4, 5121, 300 }, + [136] = { 41.1, 24.6, 5121, 300 }, + [137] = { 46.1, 24.5, 5121, 300 }, + [138] = { 53.9, 24.4, 5121, 300 }, + [139] = { 53.7, 24.3, 5121, 300 }, + [140] = { 54.9, 24.2, 5121, 300 }, + [141] = { 40.6, 24.1, 5121, 300 }, + [142] = { 46.8, 23.7, 5121, 300 }, + [143] = { 50, 22.8, 5121, 300 }, + [144] = { 47.9, 22.8, 5121, 300 }, + [145] = { 50.2, 22.4, 5121, 300 }, + [146] = { 46.8, 22.1, 5121, 300 }, + [147] = { 44.5, 22, 5121, 300 }, + [148] = { 48.7, 21.9, 5121, 300 }, + [149] = { 43.9, 21.3, 5121, 300 }, + [150] = { 46, 21.3, 5121, 300 }, + [151] = { 50.4, 20.7, 5121, 300 }, + [152] = { 55.7, 20.2, 5121, 300 }, + [153] = { 50.2, 18, 5121, 300 }, + [154] = { 44.8, 17.8, 5121, 300 }, + [155] = { 48.3, 17.7, 5121, 300 }, + [156] = { 50, 17.6, 5121, 300 }, + [157] = { 48.6, 17.4, 5121, 300 }, + [158] = { 48.8, 16.8, 5121, 300 }, + [159] = { 50.7, 15.9, 5121, 300 }, + [160] = { 58.2, 15.8, 5121, 300 }, + [161] = { 47.8, 15.3, 5121, 300 }, + [162] = { 48.9, 15, 5121, 300 }, + [163] = { 55.2, 12.9, 5121, 300 }, + [164] = { 58, 12.7, 5121, 300 }, + [165] = { 56.7, 10.4, 5121, 300 }, + [166] = { 55.9, 10.1, 5121, 300 }, + }, + }, + [2010949] = { + ["coords"] = { + [1] = { 45.4, 85.5, 5121, 300 }, + [2] = { 48.7, 84.5, 5121, 300 }, + [3] = { 47.4, 79, 5121, 300 }, + [4] = { 51.8, 77.3, 5121, 300 }, + [5] = { 50.7, 76.6, 5121, 300 }, + [6] = { 44, 73.9, 5121, 300 }, + [7] = { 59.1, 61.4, 5121, 300 }, + [8] = { 48.9, 60, 5121, 300 }, + [9] = { 54.9, 58.6, 5121, 300 }, + [10] = { 42.8, 57.4, 5121, 300 }, + [11] = { 51.9, 57, 5121, 300 }, + [12] = { 54.6, 55.4, 5121, 300 }, + [13] = { 58.9, 53.5, 5121, 300 }, + [14] = { 57, 51.3, 5121, 300 }, + [15] = { 53.1, 48.1, 5121, 300 }, + [16] = { 43.9, 42.7, 5121, 300 }, + [17] = { 52.8, 42.6, 5121, 300 }, + [18] = { 49.6, 40, 5121, 300 }, + [19] = { 41.4, 33.3, 5121, 300 }, + [20] = { 47.5, 20, 5121, 300 }, + [21] = { 57.3, 16.5, 5121, 300 }, + [22] = { 49.6, 15.8, 5121, 300 }, + }, + }, + [2010950] = { + ["coords"] = { + [1] = { 51.1, 34.6, 5121, 5 }, + }, + }, + [2010951] = { + ["coords"] = {}, + }, + [2010952] = { + ["coords"] = {}, + }, + [2010953] = { + ["coords"] = {}, + }, + [2010954] = { + ["coords"] = {}, + }, + [2010955] = { + ["coords"] = { + [1] = { 27.8, 77, 33, 300 }, + }, + }, + [2010956] = { + ["coords"] = { + [1] = { 79.4, 7.8, 1637, 300 }, + [2] = { 77.8, 6.4, 1637, 300 }, + }, + }, + [2010957] = { + ["coords"] = { + [1] = { 77.6, 13.6, 1637, 300 }, + [2] = { 75.1, 11.2, 1637, 300 }, + [3] = { 79.3, 7, 1637, 300 }, + }, + }, + [2010958] = { + ["coords"] = { + [1] = { 76, 13.3, 1637, 300 }, + }, + }, + [2010959] = { + ["coords"] = { + [1] = { 79.9, 14.2, 1637, 300 }, + [2] = { 78.4, 6.2, 1637, 300 }, + }, + }, + [2010960] = { + ["coords"] = { + [1] = { 27.9, 77.1, 33, 300 }, + }, + }, + [2010961] = { + ["coords"] = { + [1] = { 41.1, 53.2, 5121, 5 }, + }, + }, + [2010962] = { + ["coords"] = { + [1] = { 59.1, 88.2, 5121, 300 }, + [2] = { 61.5, 87.6, 5121, 300 }, + [3] = { 62.2, 87.3, 5121, 300 }, + [4] = { 59.7, 87.3, 5121, 300 }, + [5] = { 59.7, 86.9, 5121, 300 }, + [6] = { 61.2, 86.4, 5121, 300 }, + [7] = { 62.4, 86.3, 5121, 300 }, + [8] = { 60.6, 86, 5121, 300 }, + [9] = { 61.2, 85.7, 5121, 300 }, + [10] = { 62.5, 85.6, 5121, 300 }, + [11] = { 63.4, 85.6, 5121, 300 }, + [12] = { 63.4, 85, 5121, 300 }, + [13] = { 62.4, 84.1, 5121, 300 }, + [14] = { 60.5, 84, 5121, 300 }, + [15] = { 62.4, 84, 5121, 300 }, + [16] = { 63.9, 83.8, 5121, 300 }, + [17] = { 60.7, 83.5, 5121, 300 }, + [18] = { 60.4, 82.1, 5121, 300 }, + [19] = { 60.4, 81.6, 5121, 300 }, + [20] = { 61.7, 81.2, 5121, 300 }, + [21] = { 62.2, 81.2, 5121, 300 }, + [22] = { 62.1, 80.7, 5121, 300 }, + [23] = { 62.8, 80.4, 5121, 300 }, + [24] = { 61.5, 80.1, 5121, 300 }, + }, + }, + [2010963] = { + ["coords"] = { + [1] = { 50.1, 16, 5121, 5 }, + }, + }, + [2010964] = { + ["coords"] = { + [1] = { 66.6, 24.3, 440, 300 }, + [2] = { 53.2, 55.6, 876, 300 }, + }, + }, + [2010965] = { + ["coords"] = { + [1] = { 66.6, 24.2, 440, 300 }, + }, + }, + [2010966] = { + ["coords"] = { + [1] = { 66.7, 24.3, 440, 300 }, + }, + }, + [2010967] = { + ["coords"] = { + [1] = { 50.2, 48.2, 1584, 300 }, + }, + }, + [2010968] = { + ["coords"] = {}, + }, + [2010969] = { + ["coords"] = { + [1] = { 62.5, 84.6, 5121, 300 }, + }, + }, + [2010970] = { + ["coords"] = { + [1] = { 62.5, 84.6, 5121, 300 }, + }, + }, + [2010971] = { + ["coords"] = { + [1] = { 36.9, 75.2, 5130, 10 }, + }, + }, + [2010972] = { + ["coords"] = { + [1] = { 42.1, 77.1, 5121, 300 }, + }, + }, + [2010973] = { + ["coords"] = { + [1] = { 41.5, 34.2, 5121, 5 }, + }, + }, + [2010974] = { + ["coords"] = { + [1] = { 42, 51.8, 1584, 300 }, + }, + }, + [2010975] = { + ["coords"] = { + [1] = { 54.3, 86.3, 1583, 300 }, + }, + }, + [2010976] = { + ["coords"] = { + [1] = { 62.2, 38.6, 5121, 60 }, + [2] = { 60.5, 38.5, 5121, 60 }, + [3] = { 60, 38.4, 5121, 60 }, + [4] = { 60.3, 37.5, 5121, 60 }, + [5] = { 60.9, 36.7, 5121, 60 }, + [6] = { 60.3, 35.9, 5121, 60 }, + [7] = { 59.5, 35.8, 5121, 60 }, + [8] = { 61.2, 35.6, 5121, 60 }, + }, + }, + [2010977] = { + ["coords"] = { + [1] = { 57.9, 54.4, 876, 300 }, + [2] = { 47.6, 21.6, 5121, 30 }, + [3] = { 47.2, 21.6, 5121, 30 }, + [4] = { 46.7, 21.5, 5121, 30 }, + [5] = { 48, 21.4, 5121, 30 }, + [6] = { 47.3, 21.1, 5121, 30 }, + [7] = { 47.7, 21.1, 5121, 30 }, + [8] = { 47.1, 20.8, 5121, 30 }, + [9] = { 47.6, 20.7, 5121, 30 }, + }, + }, + [2010978] = { + ["coords"] = { + [1] = { 62.4, 37.5, 17, 5 }, + }, + }, + [2010979] = { + ["coords"] = { + [1] = { 67.2, 57.9, 15, 5 }, + }, + }, + [2010980] = { + ["coords"] = {}, + }, + [2010981] = { + ["coords"] = {}, + }, + [2010982] = { + ["coords"] = {}, + }, + [2010983] = { + ["coords"] = {}, + }, + [2010984] = { + ["coords"] = {}, + }, + [2010985] = { + ["coords"] = {}, + }, + [2010986] = { + ["coords"] = {}, + }, + [2010987] = { + ["coords"] = {}, + }, + [2010988] = { + ["coords"] = {}, + }, + [2010989] = { + ["coords"] = {}, + }, + [2010990] = { + ["coords"] = {}, + }, + [2010991] = { + ["coords"] = {}, + }, + [2010992] = { + ["coords"] = {}, + }, + [2010993] = { + ["coords"] = {}, + }, + [2010994] = { + ["coords"] = {}, + }, + [2010995] = { + ["coords"] = {}, + }, + [2010996] = { + ["coords"] = {}, + }, + [2010997] = { + ["coords"] = { + [1] = { 13.1, 44, 85, 300 }, + [2] = { 39.8, 25.2, 85, 300 }, + }, + }, + [2010998] = { + ["coords"] = {}, + }, + [2010999] = { + ["coords"] = {}, + }, + [2011000] = { + ["coords"] = {}, + }, + [2011001] = { + ["coords"] = {}, + }, + [2011002] = { + ["coords"] = {}, + }, + [2011003] = { + ["coords"] = {}, + }, + [2011004] = { + ["coords"] = {}, + }, + [2011005] = { + ["coords"] = {}, + }, + [2011006] = { + ["coords"] = {}, + }, + [2011007] = { + ["coords"] = {}, + }, + [2011008] = { + ["coords"] = {}, + }, + [2011009] = { + ["coords"] = {}, + }, + [2011010] = { + ["coords"] = {}, + }, + [2011011] = { + ["coords"] = {}, + }, + [2011012] = { + ["coords"] = {}, + }, + [2011013] = { + ["coords"] = {}, + }, + [2011014] = { + ["coords"] = {}, + }, + [2011015] = { + ["coords"] = {}, + }, + [2011016] = { + ["coords"] = {}, + }, + [2011017] = { + ["coords"] = {}, + }, + [2011018] = { + ["coords"] = {}, + }, + [2011019] = { + ["coords"] = {}, + }, + [2011020] = { + ["coords"] = {}, + }, + [2011021] = { + ["coords"] = {}, + }, + [2011022] = { + ["coords"] = {}, + }, + [2011023] = { + ["coords"] = {}, + }, + [2011024] = { + ["coords"] = {}, + }, + [2011025] = { + ["coords"] = {}, + }, + [2011026] = { + ["coords"] = {}, + }, + [2011027] = { + ["coords"] = {}, + }, + [2011028] = { + ["coords"] = {}, + }, + [2011029] = { + ["coords"] = {}, + }, + [2011030] = { + ["coords"] = {}, + }, + [2011031] = { + ["coords"] = {}, + }, + [2011032] = { + ["coords"] = {}, + }, + [2011033] = { + ["coords"] = {}, + }, + [2011034] = { + ["coords"] = {}, + }, + [2011035] = { + ["coords"] = { + [1] = { 57.2, 73, 5179, 300 }, + [2] = { 48.7, 62.5, 5179, 300 }, + [3] = { 33.5, 56.3, 5179, 300 }, + [4] = { 35.5, 45.8, 5179, 300 }, + [5] = { 45, 33, 5179, 300 }, + [6] = { 35.7, 28.6, 5179, 300 }, + }, + }, + [2011036] = { + ["coords"] = { + [1] = { 57.2, 73, 5179, 300 }, + [2] = { 48.7, 62.5, 5179, 300 }, + [3] = { 53.1, 44.9, 5179, 300 }, + [4] = { 45, 33, 5179, 300 }, + }, + }, + [2011037] = { + ["coords"] = { + [1] = { 57.2, 73, 5179, 300 }, + [2] = { 48.7, 62.5, 5179, 300 }, + [3] = { 33.5, 56.3, 5179, 300 }, + [4] = { 45, 33, 5179, 300 }, + [5] = { 35.7, 28.6, 5179, 300 }, + }, + }, + [2011038] = { + ["coords"] = { + [1] = { 57.2, 73, 5179, 300 }, + [2] = { 48.7, 62.5, 5179, 300 }, + [3] = { 45, 33, 5179, 300 }, + }, + }, + [2011039] = { + ["coords"] = { + [1] = { 48.7, 62.5, 5179, 300 }, + [2] = { 53.1, 44.9, 5179, 300 }, + [3] = { 45, 33, 5179, 300 }, + }, + }, + [2011040] = { + ["coords"] = {}, + }, + [2011041] = { + ["coords"] = { + [1] = { 35.5, 45.8, 5179, 300 }, + }, + }, + [2011042] = { + ["coords"] = { + [1] = { 59, 72.8, 5179, 300 }, + }, + }, + [2011043] = { + ["coords"] = { + [1] = { 65.5, 73.6, 3457, 604800 }, + [2] = { 64.1, 70.6, 3457, 604800 }, + }, + }, + [2011044] = { + ["coords"] = { + [1] = { 50.6, 68.8, 3457, 604800 }, + [2] = { 66.5, 67.1, 3457, 604800 }, + }, + }, + [2011045] = { + ["coords"] = { + [1] = { 66, 39.6, 1497, 300 }, + }, + }, + [2011046] = { + ["coords"] = { + [1] = { 71.8, 55.2, 2017, 300 }, + [2] = { 71, 53.8, 2017, 300 }, + }, + }, + [2011047] = { + ["coords"] = { + [1] = { 30.8, 87.5, 36, 300 }, + [2] = { 35.8, 25, 267, 300 }, + }, + }, + [2011048] = { + ["coords"] = { + [1] = { 31.7, 70.5, 616, 300 }, + }, + }, + [2011049] = { + ["coords"] = { + [1] = { 83, 59.2, 2677, 300 }, + }, + }, + [2011050] = { + ["coords"] = { + [1] = { 33.2, 53.3, 5179, 300 }, + [2] = { 83.6, 79.8, 5208, 300 }, + }, + }, + [2011051] = { + ["coords"] = { + [1] = { 57.7, 68.4, 5179, 300 }, + }, + }, + [2011052] = { + ["coords"] = {}, + }, + [2011053] = { + ["coords"] = {}, + }, + [2011054] = { + ["coords"] = {}, + }, + [2011055] = { + ["coords"] = {}, + }, + [2011056] = { + ["coords"] = {}, + }, + [2011057] = { + ["coords"] = {}, + }, + [2011058] = { + ["coords"] = {}, + }, + [2011059] = { + ["coords"] = {}, + }, + [2011060] = { + ["coords"] = {}, + }, + [2011061] = { + ["coords"] = {}, + }, + [2011062] = { + ["coords"] = {}, + }, + [2011063] = { + ["coords"] = {}, + }, + [2011064] = { + ["coords"] = {}, + }, + [2011065] = { + ["coords"] = {}, + }, + [2011066] = { + ["coords"] = {}, + }, + [2011067] = { + ["coords"] = {}, + }, + [2011068] = { + ["coords"] = {}, + }, + [2011069] = { + ["coords"] = {}, + }, + [2011070] = { + ["coords"] = {}, + }, + [2011071] = { + ["coords"] = {}, + }, + [2011072] = { + ["coords"] = {}, + }, + [2011073] = { + ["coords"] = {}, + }, + [2011074] = { + ["coords"] = {}, + }, + [2011075] = { + ["coords"] = {}, + }, + [2011076] = { + ["coords"] = {}, + }, + [2011077] = { + ["coords"] = {}, + }, + [2011078] = { + ["coords"] = {}, + }, + [2011079] = { + ["coords"] = {}, + }, + [2011080] = { + ["coords"] = {}, + }, + [2011081] = { + ["coords"] = {}, + }, + [2011082] = { + ["coords"] = { + [1] = { 61.1, 37.1, 618, 300 }, + }, + }, + [2011083] = { + ["coords"] = {}, + }, + [2011084] = { + ["coords"] = {}, + }, + [2011085] = { + ["coords"] = {}, + }, + [2011086] = { + ["coords"] = {}, + }, + [2011087] = { + ["coords"] = {}, + }, + [2011088] = { + ["coords"] = {}, + }, + [2011089] = { + ["coords"] = {}, + }, + [2011090] = { + ["coords"] = {}, + }, + [2011091] = { + ["coords"] = {}, + }, + [2011092] = { + ["coords"] = {}, + }, + [2011093] = { + ["coords"] = {}, + }, + [2011094] = { + ["coords"] = {}, + }, + [2011095] = { + ["coords"] = {}, + }, + [2011096] = { + ["coords"] = {}, + }, + [2011097] = { + ["coords"] = {}, + }, + [2011098] = { + ["coords"] = { + [1] = { 81.8, 89.7, 405, 300 }, + [2] = { 75.8, 85.7, 405, 300 }, + }, + }, + [2011099] = { + ["coords"] = {}, + }, + [2011100] = { + ["coords"] = {}, + }, + [2011101] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [2011102] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [2011103] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [2011104] = { + ["coords"] = { + [1] = { 14, 33.7, 5179, 300 }, + }, + }, + [2011105] = { + ["coords"] = { + [1] = { 36.3, 46, 5179, 30 }, + }, + }, + [2011107] = { + ["coords"] = { + [1] = { 80.3, 66.3, 28, 300 }, + [2] = { 22, 90.4, 139, 300 }, + }, + }, + [2011108] = { + ["coords"] = {}, + }, + [2011109] = { + ["coords"] = { + [1] = { 60.7, 57.1, 1519, 300 }, + }, + }, + [2011110] = { + ["coords"] = { + [1] = { 46.5, 37.1, 10, 25 }, + }, + }, + [2020000] = { + ["coords"] = { + [1] = { 46.5, 44.2, 5208, 300 }, + }, + }, + [2020001] = { + ["coords"] = { + [1] = { 84.7, 64.8, 5208, 300 }, + }, + }, + [2020002] = { + ["coords"] = { + [1] = { 83.8, 54.4, 5208, 300 }, + }, + }, + [2020003] = { + ["coords"] = { + [1] = { 79, 49.7, 5208, 300 }, + }, + }, + [2020004] = { + ["coords"] = { + [1] = { 74.7, 48.3, 5208, 300 }, + }, + }, + [2020005] = { + ["coords"] = { + [1] = { 74.5, 64.1, 5208, 300 }, + }, + }, + [2020006] = { + ["coords"] = { + [1] = { 72.9, 69.7, 5208, 300 }, + }, + }, + [2020007] = { + ["coords"] = { + [1] = { 68.3, 72, 5208, 300 }, + }, + }, + [2020008] = { + ["coords"] = { + [1] = { 62.4, 78.8, 5208, 300 }, + }, + }, + [2020009] = { + ["coords"] = { + [1] = { 61.8, 65.7, 5208, 300 }, + }, + }, + [2020010] = { + ["coords"] = { + [1] = { 55, 53.8, 5208, 300 }, + }, + }, + [2020011] = { + ["coords"] = { + [1] = { 47.9, 50.7, 5208, 300 }, + }, + }, + [2020012] = { + ["coords"] = { + [1] = { 81.6, 43.2, 5208, 300 }, + }, + }, + [2020013] = { + ["coords"] = { + [1] = { 42, 36.5, 5208, 300 }, + }, + }, + [2020014] = { + ["coords"] = { + [1] = { 82.3, 71.4, 5208, 300 }, + }, + }, + [2020015] = { + ["coords"] = { + [1] = { 82.5, 69.2, 5208, 5 }, + }, + }, + [2020016] = { + ["coords"] = { + [1] = { 20.4, 64.4, 5179, 300 }, + [2] = { 18.9, 62.7, 5179, 300 }, + [3] = { 21, 61.9, 5179, 300 }, + [4] = { 21, 61.8, 5179, 300 }, + [5] = { 20.6, 61.4, 5179, 300 }, + [6] = { 20.5, 61.2, 5179, 300 }, + [7] = { 19.9, 60.7, 5179, 300 }, + [8] = { 20.8, 59.9, 5179, 300 }, + [9] = { 19, 59, 5179, 300 }, + [10] = { 19.7, 46.2, 5179, 300 }, + [11] = { 18.6, 45.1, 5179, 300 }, + [12] = { 20.6, 44.9, 5179, 300 }, + [13] = { 18.1, 44.9, 5179, 300 }, + [14] = { 24.5, 44.8, 5179, 300 }, + [15] = { 24, 44.4, 5179, 300 }, + [16] = { 21.8, 44.3, 5179, 300 }, + [17] = { 21.5, 44.2, 5179, 300 }, + [18] = { 22.8, 43.9, 5179, 300 }, + [19] = { 18.5, 43.9, 5179, 300 }, + [20] = { 18.4, 43.8, 5179, 300 }, + [21] = { 22.8, 42.8, 5179, 300 }, + [22] = { 21.6, 42.1, 5179, 300 }, + }, + }, + [2020017] = { + ["coords"] = {}, + }, + [2020018] = { + ["coords"] = { + [1] = { 12.8, 98.9, 721, 0 }, + }, + }, + [2020019] = { + ["coords"] = { + [1] = { 24.3, 43.8, 1, 5 }, + }, + }, + [2020020] = { + ["coords"] = { + [1] = { 53.8, 85.8, 721, 5 }, + }, + }, + [2020021] = { + ["coords"] = { + [1] = { 28, 31.2, 1, 300 }, + [2] = { 29.3, 30.9, 1, 300 }, + [3] = { 30, 30.5, 1, 300 }, + [4] = { 27.7, 30.4, 1, 300 }, + [5] = { 27.2, 29.8, 1, 300 }, + [6] = { 29.6, 29.1, 1, 300 }, + [7] = { 29.6, 29, 1, 300 }, + [8] = { 31.8, 28.7, 1, 300 }, + [9] = { 32.3, 28.2, 1, 300 }, + [10] = { 28.3, 28.1, 1, 300 }, + [11] = { 33.2, 27.8, 1, 300 }, + [12] = { 29.9, 27, 1, 300 }, + [13] = { 30.5, 27, 1, 300 }, + [14] = { 27.9, 26.7, 1, 300 }, + [15] = { 32.8, 26.5, 1, 300 }, + [16] = { 28.7, 26.5, 1, 300 }, + [17] = { 31.6, 25.9, 1, 300 }, + [18] = { 32.8, 25.1, 1, 300 }, + [19] = { 32.2, 24.9, 1, 300 }, + [20] = { 30.4, 24.8, 1, 300 }, + [21] = { 31.9, 23.9, 1, 300 }, + [22] = { 99.2, 13.2, 721, 300 }, + }, + }, + [2020022] = { + ["coords"] = { + [1] = { 77.4, 62, 1, 5 }, + [2] = { 77.9, 61.8, 1, 5 }, + [3] = { 77.6, 61, 1, 5 }, + }, + }, + [2020023] = { + ["coords"] = { + [1] = { 52.4, 52.5, 361, 300 }, + [2] = { 50, 49.3, 361, 300 }, + [3] = { 43.9, 88.1, 616, 300 }, + [4] = { 57.6, 87.5, 616, 300 }, + [5] = { 51, 87.3, 616, 300 }, + [6] = { 59.8, 86.2, 616, 300 }, + [7] = { 58.2, 86.1, 616, 300 }, + [8] = { 40.5, 85.4, 616, 300 }, + [9] = { 54, 83.7, 616, 300 }, + [10] = { 43.3, 83.1, 616, 300 }, + [11] = { 54.5, 82.3, 616, 300 }, + [12] = { 39.5, 81.2, 616, 300 }, + [13] = { 65.2, 81.1, 616, 300 }, + [14] = { 60.2, 80.9, 616, 300 }, + [15] = { 58.9, 80.5, 616, 300 }, + [16] = { 33.6, 80.4, 616, 300 }, + [17] = { 44.2, 80.3, 616, 300 }, + [18] = { 75.2, 80.1, 616, 300 }, + [19] = { 27.1, 79.1, 616, 300 }, + [20] = { 31.5, 79.1, 616, 300 }, + [21] = { 58.1, 78.2, 616, 300 }, + [22] = { 45.9, 78.2, 616, 300 }, + [23] = { 29.9, 78, 616, 300 }, + [24] = { 60.4, 77.7, 616, 300 }, + [25] = { 76.7, 76.5, 616, 300 }, + [26] = { 42.8, 75.7, 616, 300 }, + [27] = { 70.7, 74.8, 616, 300 }, + [28] = { 25.7, 74.8, 616, 300 }, + [29] = { 78.8, 74.6, 616, 300 }, + [30] = { 49.6, 74.6, 616, 300 }, + [31] = { 67.3, 74.4, 616, 300 }, + [32] = { 72, 73.9, 616, 300 }, + [33] = { 57.5, 73.5, 616, 300 }, + [34] = { 70.3, 73.3, 616, 300 }, + [35] = { 62.2, 73.2, 616, 300 }, + [36] = { 63.3, 72.4, 616, 300 }, + [37] = { 66.1, 72.1, 616, 300 }, + [38] = { 22.6, 72, 616, 300 }, + [39] = { 65.5, 71.9, 616, 300 }, + [40] = { 63, 71.7, 616, 300 }, + [41] = { 87.3, 71.5, 616, 300 }, + [42] = { 71.6, 70.5, 616, 300 }, + [43] = { 29.3, 70.4, 616, 300 }, + [44] = { 31.4, 70.4, 616, 300 }, + [45] = { 75.1, 70, 616, 300 }, + [46] = { 78.6, 69.2, 616, 300 }, + [47] = { 61, 69, 616, 300 }, + [48] = { 19.1, 68.4, 616, 300 }, + [49] = { 66.2, 68.3, 616, 300 }, + [50] = { 35.2, 68, 616, 300 }, + [51] = { 58.7, 67.7, 616, 300 }, + [52] = { 21.4, 66.5, 616, 300 }, + [53] = { 50.3, 66.5, 616, 300 }, + [54] = { 42.4, 66.3, 616, 300 }, + [55] = { 88.4, 66, 616, 300 }, + [56] = { 81.8, 65.9, 616, 300 }, + [57] = { 62.2, 65.9, 616, 300 }, + [58] = { 15.8, 65.7, 616, 300 }, + [59] = { 68.7, 65.2, 616, 300 }, + [60] = { 45.8, 64.5, 616, 300 }, + [61] = { 63.7, 64, 616, 300 }, + [62] = { 32.6, 63.9, 616, 300 }, + [63] = { 20.6, 62.8, 616, 300 }, + [64] = { 37.9, 62.8, 616, 300 }, + [65] = { 22, 62.5, 616, 300 }, + [66] = { 19, 61.1, 616, 300 }, + [67] = { 20.8, 60.5, 616, 300 }, + [68] = { 61.5, 60.1, 616, 300 }, + [69] = { 53.4, 59.3, 616, 300 }, + [70] = { 24.3, 58.6, 616, 300 }, + [71] = { 63.8, 58.1, 616, 300 }, + [72] = { 50.7, 57.6, 616, 300 }, + [73] = { 52.7, 57.2, 616, 300 }, + [74] = { 62.3, 57.1, 616, 300 }, + [75] = { 14.5, 56.6, 616, 300 }, + [76] = { 65.1, 56.3, 616, 300 }, + [77] = { 11.9, 56.3, 616, 300 }, + [78] = { 52.6, 56, 616, 300 }, + [79] = { 55.3, 55.8, 616, 300 }, + [80] = { 44.3, 55.1, 616, 300 }, + [81] = { 20.9, 53.8, 616, 300 }, + [82] = { 66.3, 53.3, 616, 300 }, + [83] = { 51.5, 53.2, 616, 300 }, + [84] = { 64.9, 53.1, 616, 300 }, + [85] = { 24.7, 52.2, 616, 300 }, + [86] = { 10.2, 51.3, 616, 300 }, + [87] = { 29.4, 51.2, 616, 300 }, + [88] = { 48.3, 51.2, 616, 300 }, + [89] = { 32.6, 51, 616, 300 }, + [90] = { 11, 50.2, 616, 300 }, + [91] = { 31.2, 50.1, 616, 300 }, + [92] = { 19.1, 49.7, 616, 300 }, + [93] = { 12.9, 48.7, 616, 300 }, + [94] = { 71, 48.6, 616, 300 }, + [95] = { 9.9, 47.8, 616, 300 }, + [96] = { 42.4, 47.5, 616, 300 }, + [97] = { 9.1, 46.8, 616, 300 }, + [98] = { 72.7, 46.6, 616, 300 }, + [99] = { 19.7, 46.5, 616, 300 }, + [100] = { 10.6, 46.3, 616, 300 }, + [101] = { 13.1, 45.6, 616, 300 }, + [102] = { 31.9, 43.1, 616, 300 }, + [103] = { 57.3, 43.1, 616, 300 }, + [104] = { 19.7, 43, 616, 300 }, + [105] = { 37.3, 43, 616, 300 }, + [106] = { 10.7, 42.3, 616, 300 }, + [107] = { 79.9, 42.2, 616, 300 }, + [108] = { 79.1, 42.2, 616, 300 }, + [109] = { 33.8, 41.5, 616, 300 }, + [110] = { 82.2, 41.4, 616, 300 }, + [111] = { 4.9, 41.1, 616, 300 }, + [112] = { 40.3, 40.5, 616, 300 }, + [113] = { 33.2, 40.4, 616, 300 }, + [114] = { 14.1, 39.9, 616, 300 }, + [115] = { 33.4, 39.6, 616, 300 }, + [116] = { 76.3, 38.7, 616, 300 }, + [117] = { 24.9, 38.5, 616, 300 }, + [118] = { 73, 38.2, 616, 300 }, + [119] = { 48, 36.8, 616, 300 }, + [120] = { 84.6, 36.6, 616, 300 }, + [121] = { 82.4, 36.3, 616, 300 }, + [122] = { 85.4, 35.4, 616, 300 }, + [123] = { 34.6, 35, 616, 300 }, + [124] = { 76.5, 34.7, 616, 300 }, + [125] = { 79.2, 34.1, 616, 300 }, + [126] = { 81.7, 33.3, 616, 300 }, + [127] = { 77.9, 30.4, 616, 300 }, + [128] = { 86.9, 28.2, 616, 300 }, + [129] = { 61.2, 28, 616, 300 }, + [130] = { 78.4, 28, 616, 300 }, + [131] = { 43, 27.8, 616, 300 }, + [132] = { 74.3, 27.4, 616, 300 }, + [133] = { 81.6, 25.7, 616, 300 }, + [134] = { 82.6, 23.9, 616, 300 }, + [135] = { 52, 22.3, 616, 300 }, + [136] = { 83.9, 21.9, 616, 300 }, + [137] = { 70.3, 21, 616, 300 }, + [138] = { 71.1, 19.8, 616, 300 }, + [139] = { 68.5, 19.2, 616, 300 }, + [140] = { 72.6, 17.5, 616, 300 }, + [141] = { 69.1, 17.3, 616, 300 }, + [142] = { 70.6, 16.8, 616, 300 }, + [143] = { 45.4, 85.5, 618, 300 }, + [144] = { 46.4, 84.7, 618, 300 }, + [145] = { 50.2, 83.2, 618, 300 }, + [146] = { 46.2, 82.2, 618, 300 }, + [147] = { 50.6, 80.8, 618, 300 }, + [148] = { 47.7, 80.7, 618, 300 }, + }, + }, + [2020024] = { + ["coords"] = { + [1] = { 26.7, 25, 5208, 300 }, + }, + }, + [2020025] = { + ["coords"] = { + [1] = { 39.3, 55.5, 5179, 5 }, + }, + }, + [2020026] = { + ["coords"] = { + [1] = { 39.2, 55.4, 5179, 300 }, + }, + }, + [2020027] = { + ["coords"] = { + [1] = { 26.5, 24.8, 5208, 604800 }, + }, + }, + [2020028] = { + ["coords"] = { + [1] = { 56.2, 79.9, 41, 0 }, + }, + }, + [2020029] = { + ["coords"] = { + [1] = { 46.2, 46.1, 15, 5 }, + }, + }, + [2020030] = { + ["coords"] = { + [1] = { 43.2, 26.6, 5179, 5 }, + }, + }, + [2020031] = { + ["coords"] = { + [1] = { 39.6, 36.3, 5179, 5 }, + }, + }, + [2020032] = { + ["coords"] = {}, + }, + [2020033] = { + ["coords"] = { + [1] = { 26.7, 24.9, 5208, 5 }, + }, + }, + [2020034] = { + ["coords"] = { + [1] = { 41.7, 50.6, 33, 300 }, + [2] = { 41.9, 50.2, 33, 300 }, + [3] = { 41.7, 49.9, 33, 300 }, + [4] = { 43, 49.5, 33, 300 }, + [5] = { 43.8, 49.4, 33, 300 }, + [6] = { 42.3, 49.2, 33, 300 }, + [7] = { 43.5, 48.9, 33, 300 }, + [8] = { 42.8, 48.5, 33, 300 }, + [9] = { 42.3, 48.5, 33, 300 }, + [10] = { 44.4, 48.4, 33, 300 }, + [11] = { 42.4, 47.8, 33, 300 }, + [12] = { 43.8, 47.5, 33, 300 }, + [13] = { 43.2, 47.4, 33, 300 }, + [14] = { 42.1, 47.2, 33, 300 }, + [15] = { 43.1, 45.9, 33, 300 }, + }, + }, + [2020035] = { + ["coords"] = { + [1] = { 38.2, 60.7, 5179, 300 }, + }, + }, + [2020036] = { + ["coords"] = { + [1] = { 81.7, 35.2, 616, 0 }, + }, + }, + [2020037] = { + ["coords"] = { + [1] = { 64.7, 76.8, 616, 300 }, + }, + }, + [2020038] = { + ["coords"] = { + [1] = { 66.3, 79.7, 5179, 5 }, + }, + }, + [2020039] = { + ["coords"] = { + [1] = { 25.6, 21.6, 5208, 5 }, + }, + }, + [2020040] = { + ["coords"] = { + [1] = { 58.7, 56.6, 3457, 5 }, + }, + }, + [2020041] = { + ["coords"] = { + [1] = { 62.7, 57.4, 2017, 5 }, + }, + }, + [2020042] = { + ["coords"] = {}, + }, + [2020043] = { + ["coords"] = { + [1] = { 38.8, 47, 361, 5 }, + }, + }, + [2020044] = { + ["coords"] = { + [1] = { 35.5, 51, 5179, 300 }, + [2] = { 30.7, 50.5, 5179, 300 }, + [3] = { 30.7, 49.1, 5179, 300 }, + [4] = { 32, 48.9, 5179, 300 }, + [5] = { 31.4, 48.4, 5179, 300 }, + [6] = { 30.4, 47.4, 5179, 300 }, + [7] = { 34.8, 47.3, 5179, 300 }, + [8] = { 34.6, 47.2, 5179, 300 }, + [9] = { 32.2, 47.2, 5179, 300 }, + [10] = { 34.6, 47.1, 5179, 300 }, + [11] = { 34.5, 47, 5179, 300 }, + [12] = { 35.9, 46.6, 5179, 300 }, + [13] = { 31.4, 46.6, 5179, 300 }, + [14] = { 34.7, 45.6, 5179, 300 }, + [15] = { 36.8, 45.6, 5179, 300 }, + [16] = { 35, 45.6, 5179, 300 }, + [17] = { 34.2, 45.4, 5179, 300 }, + [18] = { 35.3, 44.7, 5179, 300 }, + [19] = { 34.8, 44.4, 5179, 300 }, + [20] = { 36.8, 44.3, 5179, 300 }, + }, + }, + [2020045] = { + ["coords"] = { + [1] = { 58.5, 71.7, 357, 5 }, + }, + }, + [2020046] = { + ["coords"] = { + [1] = { 40.8, 62.2, 5179, 300 }, + [2] = { 50.3, 61, 5179, 300 }, + [3] = { 49.3, 59.8, 5179, 300 }, + [4] = { 49.1, 59.7, 5179, 300 }, + [5] = { 45.8, 59.5, 5179, 300 }, + [6] = { 37.9, 59.5, 5179, 300 }, + [7] = { 51.2, 59.3, 5179, 300 }, + [8] = { 37.4, 59, 5179, 300 }, + [9] = { 51.1, 57.2, 5179, 300 }, + [10] = { 43.2, 57.1, 5179, 300 }, + [11] = { 46.6, 57, 5179, 300 }, + [12] = { 38.6, 56.9, 5179, 300 }, + [13] = { 44.3, 56.9, 5179, 300 }, + [14] = { 37, 56.8, 5179, 300 }, + [15] = { 37.2, 56.1, 5179, 300 }, + [16] = { 37.4, 56, 5179, 300 }, + [17] = { 50.6, 56, 5179, 300 }, + [18] = { 39.8, 55.9, 5179, 300 }, + [19] = { 42.2, 55.8, 5179, 300 }, + [20] = { 48, 55.5, 5179, 300 }, + [21] = { 36.8, 55.1, 5179, 300 }, + [22] = { 38.5, 54.9, 5179, 300 }, + [23] = { 51.3, 53.2, 5179, 300 }, + [24] = { 49.8, 52.8, 5179, 300 }, + [25] = { 36.5, 52.1, 5179, 300 }, + [26] = { 49.7, 52, 5179, 300 }, + [27] = { 37.2, 51.3, 5179, 300 }, + [28] = { 50.3, 51.1, 5179, 300 }, + [29] = { 51, 50.5, 5179, 300 }, + [30] = { 37, 48.9, 5179, 300 }, + [31] = { 51.8, 48.4, 5179, 300 }, + [32] = { 36.8, 47.9, 5179, 300 }, + [33] = { 52.7, 46.8, 5179, 300 }, + [34] = { 37.3, 46.6, 5179, 300 }, + [35] = { 49.2, 45.2, 5179, 300 }, + [36] = { 37, 44.8, 5179, 300 }, + [37] = { 49.5, 44.7, 5179, 300 }, + [38] = { 51.5, 44.1, 5179, 300 }, + [39] = { 53.2, 44.1, 5179, 300 }, + [40] = { 50.5, 41.6, 5179, 300 }, + [41] = { 48.4, 39.5, 5179, 300 }, + [42] = { 52.4, 39.2, 5179, 300 }, + [43] = { 51.9, 39.1, 5179, 300 }, + [44] = { 47.2, 38.8, 5179, 300 }, + [45] = { 50.4, 38.8, 5179, 300 }, + [46] = { 45.7, 38.7, 5179, 300 }, + [47] = { 42, 38.2, 5179, 300 }, + [48] = { 43.6, 37.3, 5179, 300 }, + [49] = { 53.7, 37.1, 5179, 300 }, + [50] = { 36.2, 36.9, 5179, 300 }, + [51] = { 38.8, 36.4, 5179, 300 }, + [52] = { 36.9, 33.8, 5179, 300 }, + }, + }, + [2020047] = { + ["coords"] = { + [1] = { 89.2, 46.3, 357, 300 }, + [2] = { 88.3, 45.8, 357, 300 }, + [3] = { 7.4, 18.5, 400, 300 }, + [4] = { 5.9, 17.8, 400, 300 }, + }, + }, + [2020048] = { + ["coords"] = { + [1] = { 74, 79.6, 10, 300 }, + }, + }, + [2020049] = { + ["coords"] = { + [1] = { 62.8, 10.2, 361, 5 }, + }, + }, + [2020050] = { + ["coords"] = { + [1] = { 61.5, 35.9, 3457, 5 }, + [2] = { 61.9, 35.7, 3457, 5 }, + [3] = { 61.6, 35.5, 3457, 5 }, + }, + }, + [2020051] = { + ["coords"] = { + [1] = { 43.8, 57.4, 3457, 0 }, + }, + }, + [2020052] = { + ["coords"] = { + [1] = { 85.9, 46.6, 3457, 300 }, + }, + }, + [2020053] = { + ["coords"] = { + [1] = { 74.9, 79.3, 616, 300 }, + [2] = { 75.8, 75.7, 616, 300 }, + [3] = { 76.2, 75.4, 616, 300 }, + [4] = { 73.8, 74.2, 616, 300 }, + [5] = { 78.1, 73.4, 616, 300 }, + [6] = { 74.6, 72.8, 616, 300 }, + [7] = { 80, 72.3, 616, 300 }, + [8] = { 82.6, 70.2, 616, 300 }, + [9] = { 84.4, 69.8, 616, 300 }, + [10] = { 80.3, 69.2, 616, 300 }, + [11] = { 81.1, 68, 616, 300 }, + [12] = { 83.6, 66.4, 616, 300 }, + [13] = { 81.1, 65.7, 616, 300 }, + [14] = { 82.9, 65.5, 616, 300 }, + [15] = { 46, 84.1, 618, 300 }, + [16] = { 46.9, 83.6, 618, 300 }, + [17] = { 48.1, 82.6, 618, 300 }, + [18] = { 48.9, 82.5, 618, 300 }, + [19] = { 47, 82.2, 618, 300 }, + [20] = { 47.4, 81.7, 618, 300 }, + [21] = { 48.5, 80.9, 618, 300 }, + [22] = { 47.4, 80.6, 618, 300 }, + [23] = { 48.2, 80.5, 618, 300 }, + }, + }, + [2020054] = { + ["coords"] = { + [1] = { 64, 48.9, 1519, 300 }, + }, + }, + [2020055] = { + ["coords"] = { + [1] = { 82.9, 80.6, 5208, 5 }, + }, + }, + [2020056] = { + ["coords"] = { + [1] = { 83.7, 77, 5208, 5 }, + }, + }, + [2020057] = { + ["coords"] = { + [1] = { 82.5, 80.2, 5208, 5 }, + }, + }, + [2020058] = { + ["coords"] = {}, + }, + [2020059] = { + ["coords"] = {}, + }, + [2020060] = { + ["coords"] = { + [1] = { 61.2, 36.9, 618, 300 }, + }, + }, + [2020061] = { + ["coords"] = {}, + }, + [2020062] = { + ["coords"] = { + [1] = { 17.4, 44.4, 47, 300 }, + }, + }, + [2020063] = { + ["coords"] = { + [1] = { 99.6, 61, 14, 300 }, + [2] = { 99.1, 61, 14, 300 }, + [3] = { 97.8, 60.2, 14, 300 }, + [4] = { 99.5, 60.2, 14, 300 }, + [5] = { 99.6, 59.4, 14, 300 }, + [6] = { 97.8, 59.2, 14, 300 }, + [7] = { 98.4, 59.2, 14, 300 }, + [8] = { 98.6, 59.1, 14, 300 }, + [9] = { 98.1, 59.1, 14, 300 }, + [10] = { 99.4, 58.6, 14, 300 }, + [11] = { 98.8, 58.3, 14, 300 }, + [12] = { 97.2, 58.2, 14, 300 }, + [13] = { 98, 58.2, 14, 300 }, + [14] = { 99.1, 58, 14, 300 }, + [15] = { 100, 57.7, 14, 300 }, + [16] = { 98.5, 57.5, 14, 300 }, + [17] = { 99.2, 57.2, 14, 300 }, + [18] = { 98.1, 57.2, 14, 300 }, + [19] = { 98.6, 56.9, 14, 300 }, + [20] = { 99.7, 56.7, 14, 300 }, + [21] = { 99.2, 56, 14, 300 }, + [22] = { 99.4, 55.3, 14, 300 }, + [23] = { 38.7, 68.6, 5536, 300 }, + [24] = { 37.6, 68.5, 5536, 300 }, + [25] = { 34.7, 66.9, 5536, 300 }, + [26] = { 38.5, 66.8, 5536, 300 }, + [27] = { 38.5, 65.2, 5536, 300 }, + [28] = { 34.7, 64.8, 5536, 300 }, + [29] = { 36.1, 64.7, 5536, 300 }, + [30] = { 36.5, 64.6, 5536, 300 }, + [31] = { 35.4, 64.5, 5536, 300 }, + [32] = { 38.1, 63.4, 5536, 300 }, + [33] = { 36.8, 62.8, 5536, 300 }, + [34] = { 33.6, 62.6, 5536, 300 }, + [35] = { 35.3, 62.5, 5536, 300 }, + [36] = { 37.5, 62.1, 5536, 300 }, + [37] = { 39.4, 61.6, 5536, 300 }, + [38] = { 36.2, 61, 5536, 300 }, + [39] = { 40, 60.6, 5536, 300 }, + [40] = { 37.8, 60.5, 5536, 300 }, + [41] = { 35.5, 60.5, 5536, 300 }, + [42] = { 36.5, 59.9, 5536, 300 }, + [43] = { 38.8, 59.3, 5536, 300 }, + [44] = { 41.9, 58.4, 5536, 300 }, + [45] = { 37.7, 57.8, 5536, 300 }, + [46] = { 39.6, 57.7, 5536, 300 }, + [47] = { 40.5, 56.7, 5536, 300 }, + [48] = { 38.3, 56.6, 5536, 300 }, + [49] = { 41.7, 55.7, 5536, 300 }, + [50] = { 40.3, 55.4, 5536, 300 }, + }, + }, + [2020064] = { + ["coords"] = { + [1] = { 96, 70.5, 14, 10 }, + [2] = { 31, 88.7, 5536, 10 }, + }, + }, + [2020065] = { + ["coords"] = { + [1] = { 44.1, 44.9, 5536, 300 }, + }, + }, + [2020066] = { + ["coords"] = { + [1] = { 56.7, 72, 5536, 300 }, + [2] = { 56.4, 71.6, 5536, 300 }, + [3] = { 57.2, 71.6, 5536, 300 }, + [4] = { 56.5, 71.1, 5536, 300 }, + [5] = { 56.8, 70.6, 5536, 300 }, + [6] = { 57.4, 60.6, 5536, 300 }, + [7] = { 56.9, 60.5, 5536, 300 }, + [8] = { 57.2, 60.5, 5536, 300 }, + [9] = { 56.9, 60.1, 5536, 300 }, + [10] = { 57.3, 59.8, 5536, 300 }, + [11] = { 59, 55.5, 5536, 300 }, + [12] = { 58.9, 55.3, 5536, 300 }, + [13] = { 59.1, 55.2, 5536, 300 }, + [14] = { 54.3, 50.9, 5536, 300 }, + [15] = { 54.5, 50.7, 5536, 300 }, + [16] = { 54.4, 50.5, 5536, 300 }, + [17] = { 60, 49.7, 5536, 300 }, + [18] = { 60.7, 49.6, 5536, 300 }, + [19] = { 60.3, 49.3, 5536, 300 }, + [20] = { 60.7, 49.2, 5536, 300 }, + [21] = { 60.3, 49, 5536, 300 }, + [22] = { 60.7, 48.8, 5536, 300 }, + [23] = { 55.4, 44.2, 5536, 300 }, + [24] = { 55.1, 44.2, 5536, 300 }, + [25] = { 55.6, 44, 5536, 300 }, + [26] = { 55.6, 43.8, 5536, 300 }, + [27] = { 55.2, 43.8, 5536, 300 }, + [28] = { 49.7, 39.4, 5536, 300 }, + [29] = { 49.5, 39.2, 5536, 300 }, + [30] = { 49.7, 39.2, 5536, 300 }, + }, + }, + [2020067] = { + ["coords"] = { + [1] = { 61.2, 81.5, 5536, 300 }, + }, + }, + [2020068] = { + ["coords"] = { + [1] = { 76, 65, 5536, 10 }, + }, + }, + [2020069] = { + ["coords"] = { + [1] = { 65.4, 75.6, 5536, 300 }, + [2] = { 63.5, 74.4, 5536, 300 }, + [3] = { 69.2, 72.4, 5536, 300 }, + [4] = { 62.5, 69.9, 5536, 300 }, + [5] = { 72.1, 69.1, 5536, 300 }, + [6] = { 66.4, 69, 5536, 300 }, + [7] = { 64.9, 67.7, 5536, 300 }, + [8] = { 70.8, 66.9, 5536, 300 }, + [9] = { 66.7, 65.6, 5536, 300 }, + [10] = { 68.8, 64.9, 5536, 300 }, + [11] = { 69.2, 62.3, 5536, 300 }, + [12] = { 76.3, 61.8, 5536, 300 }, + [13] = { 67.5, 61.4, 5536, 300 }, + [14] = { 72.8, 60.2, 5536, 300 }, + [15] = { 74.7, 58.5, 5536, 300 }, + [16] = { 71.5, 57.9, 5536, 300 }, + [17] = { 68.6, 56.4, 5536, 300 }, + [18] = { 69.8, 54.5, 5536, 300 }, + [19] = { 72.4, 52.9, 5536, 300 }, + [20] = { 70, 49.2, 5536, 300 }, + [21] = { 69.8, 45.1, 5536, 300 }, + [22] = { 72, 44.7, 5536, 300 }, + [23] = { 73.7, 42.7, 5536, 300 }, + [24] = { 72.7, 40.1, 5536, 300 }, + [25] = { 70, 40, 5536, 300 }, + [26] = { 73.6, 39.1, 5536, 300 }, + [27] = { 76.8, 38.4, 5536, 300 }, + [28] = { 78.8, 34.7, 5536, 300 }, + [29] = { 70, 34.5, 5536, 300 }, + [30] = { 72.5, 33, 5536, 300 }, + [31] = { 77.6, 30.4, 5536, 300 }, + [32] = { 71.8, 28, 5536, 300 }, + [33] = { 70.5, 26.3, 5536, 300 }, + [34] = { 73.7, 25.7, 5536, 300 }, + [35] = { 74.9, 23.6, 5536, 300 }, + [36] = { 71, 22.5, 5536, 300 }, + [37] = { 77.6, 22.5, 5536, 300 }, + [38] = { 68.1, 20.9, 5536, 300 }, + [39] = { 62.9, 20.6, 5536, 300 }, + [40] = { 65.5, 18.8, 5536, 300 }, + [41] = { 73.5, 18.7, 5536, 300 }, + [42] = { 64.5, 17.7, 5536, 300 }, + [43] = { 71.3, 14.9, 5536, 300 }, + [44] = { 64.1, 13.4, 5536, 300 }, + [45] = { 70.1, 11.5, 5536, 300 }, + [46] = { 66.8, 8.8, 5536, 300 }, + }, + }, + [2020070] = { + ["coords"] = { + [1] = { 29, 73.6, 16, 300 }, + }, + }, + [2020071] = { + ["coords"] = { + [1] = { 29, 73.5, 16, 300 }, + }, + }, + [2020072] = { + ["coords"] = { + [1] = { 6.6, 27.2, 139, 300 }, + [2] = { 6.8, 27.2, 139, 300 }, + [3] = { 6.2, 27.1, 139, 300 }, + [4] = { 7.7, 26.8, 139, 300 }, + [5] = { 8.7, 26.5, 139, 300 }, + [6] = { 9.1, 26.4, 139, 300 }, + [7] = { 7.9, 26, 139, 300 }, + [8] = { 8.9, 26, 139, 300 }, + [9] = { 6.9, 25.3, 139, 300 }, + [10] = { 9.9, 25.1, 139, 300 }, + [11] = { 10.1, 24.3, 139, 300 }, + [12] = { 10.4, 23.3, 139, 300 }, + [13] = { 11.1, 23.2, 139, 300 }, + [14] = { 9.3, 22, 139, 300 }, + [15] = { 11.1, 21.9, 139, 300 }, + [16] = { 11.4, 21.5, 139, 300 }, + [17] = { 11, 20.9, 139, 300 }, + [18] = { 11, 20.7, 139, 300 }, + [19] = { 9.3, 20.4, 139, 300 }, + [20] = { 8.1, 19.2, 139, 300 }, + [21] = { 7.9, 18.9, 139, 300 }, + [22] = { 9.7, 18.8, 139, 300 }, + [23] = { 9.9, 18.8, 139, 300 }, + [24] = { 9.5, 18.5, 139, 300 }, + [25] = { 8.7, 17.8, 139, 300 }, + [26] = { 10.6, 17.7, 139, 300 }, + [27] = { 8.9, 17.6, 139, 300 }, + [28] = { 9.3, 17.1, 139, 300 }, + [29] = { 9.8, 17, 139, 300 }, + [30] = { 11.6, 16.7, 139, 300 }, + [31] = { 11.1, 15.8, 139, 300 }, + [32] = { 10.7, 15.6, 139, 300 }, + [33] = { 9.7, 15.5, 139, 300 }, + [34] = { 46.6, 90, 5225, 300 }, + [35] = { 46.8, 90, 5225, 300 }, + [36] = { 46.1, 89.9, 5225, 300 }, + [37] = { 48, 89.5, 5225, 300 }, + [38] = { 49.3, 89.1, 5225, 300 }, + [39] = { 49.7, 88.9, 5225, 300 }, + [40] = { 44.5, 88.9, 5225, 300 }, + [41] = { 48.2, 88.5, 5225, 300 }, + [42] = { 49.5, 88.4, 5225, 300 }, + [43] = { 44.7, 88.3, 5225, 300 }, + [44] = { 44.3, 88.1, 5225, 300 }, + [45] = { 47, 87.6, 5225, 300 }, + [46] = { 50.7, 87.4, 5225, 300 }, + [47] = { 51, 86.3, 5225, 300 }, + [48] = { 44.6, 86, 5225, 300 }, + [49] = { 44.3, 85.9, 5225, 300 }, + [50] = { 44.7, 85.4, 5225, 300 }, + [51] = { 51.4, 85.1, 5225, 300 }, + [52] = { 52.2, 84.9, 5225, 300 }, + [53] = { 44.7, 84.6, 5225, 300 }, + [54] = { 50, 83.5, 5225, 300 }, + [55] = { 52.2, 83.3, 5225, 300 }, + [56] = { 45.4, 82.9, 5225, 300 }, + [57] = { 44.5, 82.9, 5225, 300 }, + [58] = { 52.6, 82.9, 5225, 300 }, + [59] = { 44.5, 82.1, 5225, 300 }, + [60] = { 52.1, 82, 5225, 300 }, + [61] = { 52.1, 81.9, 5225, 300 }, + [62] = { 45.1, 81.6, 5225, 300 }, + [63] = { 50, 81.5, 5225, 300 }, + [64] = { 45.1, 80.6, 5225, 300 }, + [65] = { 47.1, 80.5, 5225, 300 }, + [66] = { 48.5, 79.9, 5225, 300 }, + [67] = { 48.2, 79.6, 5225, 300 }, + [68] = { 50.5, 79.5, 5225, 300 }, + [69] = { 50.7, 79.4, 5225, 300 }, + [70] = { 50.2, 79.1, 5225, 300 }, + [71] = { 47.9, 78.3, 5225, 300 }, + [72] = { 49.2, 78.2, 5225, 300 }, + [73] = { 51.6, 78, 5225, 300 }, + [74] = { 49.5, 77.9, 5225, 300 }, + [75] = { 50, 77.4, 5225, 300 }, + [76] = { 46, 77.3, 5225, 300 }, + [77] = { 50.6, 77.2, 5225, 300 }, + [78] = { 52.9, 76.8, 5225, 300 }, + [79] = { 49.9, 76.3, 5225, 300 }, + [80] = { 45.9, 75.9, 5225, 300 }, + [81] = { 49.5, 75.8, 5225, 300 }, + [82] = { 52.2, 75.7, 5225, 300 }, + [83] = { 51.8, 75.5, 5225, 300 }, + [84] = { 50.5, 75.3, 5225, 300 }, + [85] = { 46.1, 75.3, 5225, 300 }, + [86] = { 48, 75.3, 5225, 300 }, + [87] = { 47.2, 75.2, 5225, 300 }, + [88] = { 49, 75.2, 5225, 300 }, + [89] = { 46.7, 75, 5225, 300 }, + [90] = { 46.1, 74.5, 5225, 300 }, + [91] = { 50.2, 74.4, 5225, 300 }, + [92] = { 51.9, 73.3, 5225, 300 }, + [93] = { 42.1, 71.9, 5225, 300 }, + [94] = { 50.2, 71.6, 5225, 300 }, + [95] = { 44.1, 71.1, 5225, 300 }, + [96] = { 50, 71, 5225, 300 }, + [97] = { 41.7, 70.6, 5225, 300 }, + [98] = { 44.7, 70.5, 5225, 300 }, + [99] = { 49.6, 69.7, 5225, 300 }, + [100] = { 51.2, 69.7, 5225, 300 }, + [101] = { 44.7, 69.7, 5225, 300 }, + [102] = { 52.6, 69.5, 5225, 300 }, + [103] = { 47.4, 69, 5225, 300 }, + }, + }, + [2020073] = { + ["coords"] = { + [1] = { 40.5, 89, 5225, 30 }, + [2] = { 40, 84.1, 5225, 30 }, + [3] = { 42.5, 79.7, 5225, 30 }, + }, + }, + [2020074] = { + ["coords"] = { + [1] = { 19.9, 50.2, 139, 5 }, + }, + }, + [2020075] = { + ["coords"] = { + [1] = { 55.1, 33.4, 5536, 30 }, + [2] = { 55.2, 32.4, 5536, 30 }, + [3] = { 56.4, 29.6, 5536, 30 }, + }, + }, + [2020076] = { + ["coords"] = { + [1] = { 32.7, 41.8, 148, 300 }, + }, + }, + [2020077] = { + ["coords"] = { + [1] = { 45.4, 37.1, 406, 300 }, + }, + }, + [2020078] = { + ["coords"] = { + [1] = { 16.8, 12.8, 139, 300 }, + [2] = { 17.9, 12.6, 139, 300 }, + [3] = { 19.4, 11.8, 139, 60 }, + [4] = { 19.2, 11.3, 139, 60 }, + [5] = { 17.3, 11.1, 139, 60 }, + [6] = { 18.2, 10.9, 139, 60 }, + [7] = { 20.7, 10.7, 139, 60 }, + [8] = { 20.9, 10.6, 139, 60 }, + [9] = { 17.5, 10.5, 139, 60 }, + [10] = { 20.1, 10.4, 139, 60 }, + [11] = { 20.9, 10.3, 139, 60 }, + [12] = { 18.8, 10.3, 139, 60 }, + [13] = { 20.4, 10.2, 139, 60 }, + [14] = { 17.9, 10.1, 139, 300 }, + [15] = { 18.6, 9.6, 139, 60 }, + [16] = { 17, 9.4, 139, 60 }, + [17] = { 19.2, 9.4, 139, 300 }, + [18] = { 19.6, 9.4, 139, 60 }, + [19] = { 16.9, 9.3, 139, 300 }, + [20] = { 20, 9.3, 139, 60 }, + [21] = { 18, 8.9, 139, 60 }, + [22] = { 16.5, 8.9, 139, 300 }, + [23] = { 21, 8.8, 139, 60 }, + [24] = { 18.2, 8.8, 139, 60 }, + [25] = { 19.3, 8.8, 139, 60 }, + [26] = { 16.5, 8.6, 139, 60 }, + [27] = { 19.2, 8.6, 139, 60 }, + [28] = { 20.4, 8.3, 139, 60 }, + [29] = { 20.1, 7.3, 139, 60 }, + [30] = { 20.3, 7, 139, 60 }, + [31] = { 59.4, 71.9, 5225, 300 }, + [32] = { 60.8, 71.6, 5225, 300 }, + [33] = { 62.7, 70.7, 5225, 60 }, + [34] = { 62.4, 70, 5225, 60 }, + [35] = { 60, 69.8, 5225, 60 }, + [36] = { 61.2, 69.6, 5225, 60 }, + [37] = { 64.3, 69.3, 5225, 60 }, + [38] = { 64.5, 69.2, 5225, 60 }, + [39] = { 60.3, 69.1, 5225, 60 }, + [40] = { 63.5, 69, 5225, 60 }, + [41] = { 64.5, 68.8, 5225, 60 }, + [42] = { 61.9, 68.7, 5225, 60 }, + [43] = { 63.9, 68.7, 5225, 60 }, + [44] = { 60.8, 68.6, 5225, 300 }, + [45] = { 61.6, 67.9, 5225, 60 }, + [46] = { 56, 67.8, 5225, 300 }, + [47] = { 59.7, 67.7, 5225, 60 }, + [48] = { 62.4, 67.7, 5225, 300 }, + [49] = { 62.9, 67.6, 5225, 60 }, + [50] = { 59.6, 67.6, 5225, 300 }, + [51] = { 63.5, 67.5, 5225, 60 }, + [52] = { 58.9, 67.2, 5225, 60 }, + [53] = { 60.9, 67, 5225, 60 }, + [54] = { 59.1, 67, 5225, 300 }, + [55] = { 56.6, 67, 5225, 60 }, + [56] = { 64.7, 66.9, 5225, 60 }, + [57] = { 61.2, 66.9, 5225, 60 }, + [58] = { 62.6, 66.9, 5225, 60 }, + [59] = { 59, 66.7, 5225, 60 }, + [60] = { 62.4, 66.7, 5225, 60 }, + [61] = { 56, 66.6, 5225, 60 }, + [62] = { 63.9, 66.3, 5225, 60 }, + [63] = { 56.3, 66.2, 5225, 300 }, + [64] = { 58.3, 65.8, 5225, 300 }, + [65] = { 58.8, 65.6, 5225, 60 }, + [66] = { 60.1, 65.3, 5225, 60 }, + [67] = { 61.1, 65.2, 5225, 60 }, + [68] = { 58.8, 65.1, 5225, 60 }, + [69] = { 63.5, 65, 5225, 60 }, + [70] = { 58.4, 64.9, 5225, 60 }, + [71] = { 61.1, 64.7, 5225, 60 }, + [72] = { 63.8, 64.6, 5225, 60 }, + [73] = { 60.5, 63.9, 5225, 60 }, + [74] = { 62.3, 63.5, 5225, 60 }, + }, + }, + [2020079] = { + ["coords"] = { + [1] = { 37, 99.5, 2040, 60 }, + [2] = { 27.3, 98, 2040, 60 }, + [3] = { 26.8, 97.9, 2040, 60 }, + [4] = { 30.8, 96.9, 2040, 60 }, + [5] = { 23.1, 96.6, 2040, 60 }, + [6] = { 38, 96.3, 2040, 300 }, + [7] = { 34.8, 95.6, 2040, 60 }, + [8] = { 24.4, 93.7, 2040, 60 }, + [9] = { 40.2, 93.4, 2040, 60 }, + [10] = { 28, 92.8, 2040, 60 }, + [11] = { 32.3, 92.5, 2040, 60 }, + [12] = { 26.8, 91.9, 2040, 60 }, + [13] = { 32.7, 91.4, 2040, 60 }, + [14] = { 27.4, 90.9, 2040, 60 }, + [15] = { 26.9, 90.4, 2040, 60 }, + [16] = { 25.2, 90.3, 2040, 300 }, + [17] = { 41.8, 89.9, 2040, 60 }, + [18] = { 37.2, 89.5, 2040, 300 }, + [19] = { 28.9, 87.6, 2040, 60 }, + [20] = { 28.2, 87.3, 2040, 60 }, + [21] = { 24.7, 86.6, 2040, 300 }, + [22] = { 32.6, 86.3, 2040, 60 }, + [23] = { 31.4, 85.7, 2040, 300 }, + [24] = { 32.6, 85.3, 2040, 60 }, + [25] = { 27.3, 85.1, 2040, 300 }, + [26] = { 27.2, 85, 2040, 60 }, + [27] = { 31.3, 84.9, 2040, 60 }, + [28] = { 29.4, 83.3, 2040, 60 }, + [29] = { 32.1, 82.7, 2040, 300 }, + [30] = { 52.7, 53.2, 5225, 60 }, + [31] = { 52.9, 52.6, 5225, 300 }, + [32] = { 55.3, 52.3, 5225, 300 }, + [33] = { 51.6, 50.2, 5225, 300 }, + [34] = { 54.7, 50.1, 5225, 60 }, + [35] = { 55.4, 49.3, 5225, 60 }, + [36] = { 50.7, 48.6, 5225, 60 }, + [37] = { 50.5, 48.6, 5225, 60 }, + [38] = { 52.4, 48.1, 5225, 60 }, + [39] = { 48.8, 47.9, 5225, 60 }, + [40] = { 55.9, 47.8, 5225, 300 }, + [41] = { 54.3, 47.4, 5225, 60 }, + [42] = { 49.4, 46.5, 5225, 60 }, + [43] = { 56.9, 46.4, 5225, 60 }, + [44] = { 51.1, 46.1, 5225, 60 }, + [45] = { 53.2, 46, 5225, 60 }, + [46] = { 50.5, 45.7, 5225, 60 }, + [47] = { 53.3, 45.5, 5225, 60 }, + [48] = { 50.8, 45.2, 5225, 60 }, + [49] = { 50.6, 45, 5225, 60 }, + [50] = { 49.8, 45, 5225, 300 }, + [51] = { 57.7, 44.7, 5225, 60 }, + [52] = { 55.5, 44.6, 5225, 300 }, + [53] = { 51.5, 43.7, 5225, 60 }, + [54] = { 51.2, 43.5, 5225, 60 }, + [55] = { 49.5, 43.2, 5225, 300 }, + [56] = { 53.3, 43.1, 5225, 60 }, + [57] = { 52.7, 42.8, 5225, 300 }, + [58] = { 53.3, 42.6, 5225, 60 }, + [59] = { 50.8, 42.5, 5225, 300 }, + [60] = { 50.7, 42.5, 5225, 60 }, + [61] = { 52.7, 42.4, 5225, 60 }, + [62] = { 51.8, 41.7, 5225, 60 }, + [63] = { 53.1, 41.4, 5225, 300 }, + }, + }, + [2020080] = { + ["coords"] = { + [1] = { 2.9, 59.2, 2040, 60 }, + [2] = { 1.9, 56.4, 2040, 60 }, + [3] = { 31.6, 38.4, 5225, 60 }, + [4] = { 31.6, 37.2, 5225, 60 }, + [5] = { 32.4, 37, 5225, 60 }, + [6] = { 33.1, 35.9, 5225, 60 }, + [7] = { 34.7, 35.4, 5225, 60 }, + [8] = { 36.9, 33.4, 5225, 60 }, + [9] = { 37.6, 33, 5225, 60 }, + [10] = { 28, 32.8, 5225, 60 }, + [11] = { 26.7, 30.7, 5225, 60 }, + [12] = { 39.2, 30.2, 5225, 60 }, + [13] = { 32.4, 29.3, 5225, 60 }, + [14] = { 25.5, 29.1, 5225, 60 }, + [15] = { 38.7, 28.9, 5225, 60 }, + [16] = { 33.6, 28.3, 5225, 60 }, + [17] = { 33.9, 28, 5225, 60 }, + [18] = { 32.7, 28, 5225, 60 }, + [19] = { 35.9, 27, 5225, 60 }, + [20] = { 25.9, 26.8, 5225, 60 }, + [21] = { 31.4, 26.5, 5225, 60 }, + [22] = { 32.3, 25.4, 5225, 60 }, + [23] = { 26.7, 25.1, 5225, 60 }, + [24] = { 30.5, 21.8, 5225, 60 }, + [25] = { 30.5, 21.3, 5225, 60 }, + }, + }, + [2020081] = { + ["coords"] = { + [1] = { 16.9, 46.5, 5225, 5 }, + }, + }, + [2020082] = { + ["coords"] = { + [1] = { 42.8, 65.5, 2040, 60 }, + [2] = { 43.1, 63.9, 2040, 60 }, + [3] = { 45.7, 57.4, 2040, 300 }, + [4] = { 50.9, 56.1, 2040, 60 }, + [5] = { 64.4, 55.9, 2040, 300 }, + [6] = { 53.3, 55.9, 2040, 60 }, + [7] = { 51.7, 55.9, 2040, 60 }, + [8] = { 54.9, 53.9, 2040, 60 }, + [9] = { 45.5, 53.6, 2040, 300 }, + [10] = { 58.9, 53.6, 2040, 60 }, + [11] = { 52, 53.6, 2040, 60 }, + [12] = { 53.8, 53.2, 2040, 60 }, + [13] = { 51.6, 53, 2040, 60 }, + [14] = { 51.7, 53, 2040, 60 }, + [15] = { 55.4, 52.6, 2040, 60 }, + [16] = { 53.9, 51.9, 2040, 60 }, + [17] = { 50.5, 51.9, 2040, 60 }, + [18] = { 53, 51.4, 2040, 60 }, + [19] = { 41.4, 51.1, 2040, 300 }, + [20] = { 57.5, 51, 2040, 60 }, + [21] = { 54.9, 50.4, 2040, 60 }, + [22] = { 54.6, 49.9, 2040, 60 }, + [23] = { 51.2, 49.6, 2040, 60 }, + [24] = { 47.9, 47.5, 2040, 60 }, + [25] = { 46.8, 47, 2040, 300 }, + [26] = { 61.3, 46.4, 2040, 300 }, + [27] = { 55.6, 44.1, 2040, 60 }, + [28] = { 44.5, 42.9, 2040, 300 }, + [29] = { 47.4, 42.9, 2040, 60 }, + [30] = { 56.2, 42.4, 2040, 300 }, + [31] = { 51.2, 41.8, 2040, 60 }, + [32] = { 41.3, 38.5, 2040, 300 }, + [33] = { 47.2, 37.4, 2040, 60 }, + [34] = { 42.9, 37.4, 2040, 60 }, + [35] = { 40.7, 36.8, 2040, 300 }, + [36] = { 47.7, 35.2, 2040, 300 }, + [37] = { 50.7, 31.1, 2040, 300 }, + [38] = { 58.1, 33.2, 5225, 60 }, + [39] = { 58.3, 32.5, 5225, 60 }, + [40] = { 59.5, 29.4, 5225, 300 }, + [41] = { 62, 28.8, 5225, 60 }, + [42] = { 68.4, 28.6, 5225, 300 }, + [43] = { 63.2, 28.6, 5225, 60 }, + [44] = { 62.4, 28.6, 5225, 60 }, + [45] = { 63.9, 27.7, 5225, 60 }, + [46] = { 59.4, 27.6, 5225, 300 }, + [47] = { 65.8, 27.6, 5225, 60 }, + [48] = { 62.5, 27.6, 5225, 60 }, + [49] = { 63.4, 27.4, 5225, 60 }, + [50] = { 62.3, 27.3, 5225, 60 }, + [51] = { 62.4, 27.3, 5225, 60 }, + [52] = { 64.2, 27.1, 5225, 60 }, + [53] = { 63.5, 26.8, 5225, 60 }, + [54] = { 61.8, 26.8, 5225, 60 }, + [55] = { 63, 26.5, 5225, 60 }, + [56] = { 57.5, 26.4, 5225, 300 }, + [57] = { 65.1, 26.3, 5225, 60 }, + [58] = { 63.9, 26.1, 5225, 60 }, + [59] = { 63.8, 25.8, 5225, 60 }, + [60] = { 62.2, 25.7, 5225, 60 }, + [61] = { 60.6, 24.7, 5225, 60 }, + [62] = { 60.1, 24.5, 5225, 300 }, + [63] = { 66.9, 24.2, 5225, 300 }, + [64] = { 64.3, 23.1, 5225, 60 }, + [65] = { 59, 22.5, 5225, 300 }, + [66] = { 60.4, 22.5, 5225, 60 }, + [67] = { 64.5, 22.3, 5225, 300 }, + [68] = { 62.2, 22, 5225, 60 }, + [69] = { 57.4, 20.4, 5225, 300 }, + [70] = { 60.2, 19.9, 5225, 60 }, + [71] = { 58.2, 19.9, 5225, 60 }, + [72] = { 57.2, 19.6, 5225, 300 }, + [73] = { 60.5, 18.8, 5225, 300 }, + [74] = { 61.9, 16.9, 5225, 300 }, + }, + }, + [2020083] = { + ["coords"] = { + [1] = { 38.6, 60.2, 5225, 5 }, + }, + }, + [2020084] = { + ["coords"] = { + [1] = { 3.7, 49.3, 2040, 60 }, + [2] = { 3.4, 48.4, 2040, 60 }, + [3] = { 28.8, 31, 5225, 60 }, + [4] = { 29.1, 30.9, 5225, 60 }, + [5] = { 29, 30.9, 5225, 60 }, + [6] = { 28.9, 30.6, 5225, 60 }, + [7] = { 39.5, 25.5, 5225, 60 }, + [8] = { 39.4, 25.1, 5225, 60 }, + [9] = { 30.3, 23.6, 5225, 60 }, + [10] = { 30.3, 23.3, 5225, 60 }, + [11] = { 30.1, 22.8, 5225, 60 }, + [12] = { 29.9, 22.7, 5225, 60 }, + }, + }, + [2020085] = { + ["coords"] = { + [1] = { 49, 53, 2040, 300 }, + [2] = { 61.1, 27.3, 5225, 300 }, + }, + }, + [2020086] = { + ["coords"] = { + [1] = { 59.5, 61.6, 2040, 300 }, + [2] = { 66.1, 31.3, 5225, 300 }, + }, + }, + [2020087] = { + ["coords"] = { + [1] = { 62.8, 60.7, 2040, 300 }, + [2] = { 67.7, 30.9, 5225, 300 }, + }, + }, + [2020088] = { + ["coords"] = { + [1] = { 73.5, 66.6, 11, 300 }, + [2] = { 25.2, 30.1, 5602, 300 }, + }, + }, + [2020089] = { + ["coords"] = { + [1] = { 60.4, 23.2, 1537, 300 }, + }, + }, + [2020090] = { + ["coords"] = { + [1] = { 50.2, 73.2, 1519, 300 }, + }, + }, + [2020091] = { + ["coords"] = { + [1] = { 24.6, 75.6, 2017, 604800 }, + }, + }, + [2020092] = { + ["coords"] = { + [1] = { 54.8, 73.1, 1583, 604800 }, + }, + }, + [2020093] = { + ["coords"] = { + [1] = { 78.3, 75.4, 1497, 300 }, + }, + }, + [2020094] = { + ["coords"] = { + [1] = { 46.8, 39.2, 1637, 300 }, + }, + }, + [2020095] = { + ["coords"] = { + [1] = { 57.6, 60.1, 4, 2700 }, + [2] = { 56.7, 59.8, 4, 2700 }, + [3] = { 54.8, 57.5, 4, 2700 }, + [4] = { 54.9, 55.7, 4, 2700 }, + [5] = { 55.8, 53.4, 4, 2700 }, + [6] = { 64.8, 50.1, 4, 2700 }, + [7] = { 49.4, 48, 4, 2700 }, + [8] = { 48.8, 43.5, 4, 2700 }, + [9] = { 51.4, 42.3, 4, 2700 }, + [10] = { 60.6, 40.8, 4, 2700 }, + [11] = { 57.4, 36.7, 4, 2700 }, + [12] = { 38, 34.7, 4, 2700 }, + [13] = { 38.2, 33.2, 4, 2700 }, + [14] = { 48.5, 33, 4, 2700 }, + [15] = { 51.7, 31.9, 4, 2700 }, + [16] = { 61.6, 31.5, 4, 2700 }, + [17] = { 66, 31.2, 4, 2700 }, + [18] = { 40.9, 30.4, 4, 2700 }, + [19] = { 66, 29.9, 4, 2700 }, + [20] = { 46, 29.3, 4, 2700 }, + [21] = { 38.5, 29.3, 4, 2700 }, + [22] = { 64.2, 29.2, 4, 2700 }, + [23] = { 39.2, 28.5, 4, 2700 }, + [24] = { 42.1, 24.1, 4, 2700 }, + [25] = { 43.2, 20.8, 4, 2700 }, + [26] = { 44.1, 19.2, 4, 2700 }, + [27] = { 44.3, 13.9, 4, 2700 }, + [28] = { 46.1, 13.8, 4, 2700 }, + [29] = { 57.7, 12.7, 4, 2700 }, + [30] = { 61.5, 71.2, 8, 2700 }, + [31] = { 46.9, 65.5, 8, 2700 }, + [32] = { 50.6, 65.3, 8, 2700 }, + [33] = { 44.9, 60, 8, 2700 }, + [34] = { 41.3, 59.8, 8, 2700 }, + [35] = { 73.4, 86.4, 16, 2700 }, + [36] = { 64, 85.4, 16, 2700 }, + [37] = { 36.8, 64.3, 16, 2700 }, + [38] = { 42.9, 62.8, 16, 2700 }, + [39] = { 38.1, 62.2, 16, 2700 }, + [40] = { 37, 61.6, 16, 2700 }, + [41] = { 41, 57.3, 16, 2700 }, + [42] = { 61.2, 50.1, 16, 2700 }, + [43] = { 41, 46.1, 16, 2700 }, + [44] = { 56.8, 44.8, 16, 2700 }, + [45] = { 74.2, 44.1, 16, 2700 }, + [46] = { 90.3, 35.2, 16, 2700 }, + [47] = { 89.3, 34.6, 16, 2700 }, + [48] = { 38.2, 33.4, 16, 2700 }, + [49] = { 39.2, 32.9, 16, 2700 }, + [50] = { 67.5, 32, 16, 2700 }, + [51] = { 80.2, 28.6, 16, 2700 }, + [52] = { 56.1, 28.4, 16, 2700 }, + [53] = { 56.4, 26.4, 16, 2700 }, + [54] = { 62.6, 26.3, 16, 2700 }, + [55] = { 61.9, 26.3, 16, 2700 }, + [56] = { 69.9, 19.6, 16, 2700 }, + [57] = { 41.3, 19.3, 16, 2700 }, + [58] = { 68.1, 18.9, 16, 2700 }, + [59] = { 77.7, 15.6, 16, 2700 }, + [60] = { 91.5, 96.3, 25, 2700 }, + [61] = { 94.4, 62.1, 25, 2700 }, + [62] = { 89.4, 62.1, 25, 2700 }, + [63] = { 94.6, 55.5, 25, 2700 }, + [64] = { 91.6, 54.9, 25, 2700 }, + [65] = { 61.2, 61.9, 28, 2700 }, + [66] = { 54, 61.1, 28, 2700 }, + [67] = { 65.2, 60.5, 28, 2700 }, + [68] = { 52.5, 58.8, 28, 2700 }, + [69] = { 51.9, 57.9, 28, 2700 }, + [70] = { 55.4, 57.6, 28, 2700 }, + [71] = { 66.9, 54.2, 28, 2700 }, + [72] = { 55, 53.6, 28, 2700 }, + [73] = { 68, 52.6, 28, 2700 }, + [74] = { 60.7, 49.4, 28, 2700 }, + [75] = { 44.6, 42.5, 28, 2700 }, + [76] = { 49.7, 40.4, 28, 2700 }, + [77] = { 65, 38.7, 28, 2700 }, + [78] = { 47.8, 38.3, 28, 2700 }, + [79] = { 61.5, 37.7, 28, 2700 }, + [80] = { 64, 37.7, 28, 2700 }, + [81] = { 43.7, 36.9, 28, 2700 }, + [82] = { 64.9, 36.6, 28, 2700 }, + [83] = { 54.7, 36.2, 28, 2700 }, + [84] = { 47.6, 35.9, 28, 2700 }, + [85] = { 64.2, 33.5, 28, 2700 }, + [86] = { 47.4, 27.8, 28, 2700 }, + [87] = { 53.5, 26.4, 28, 2700 }, + [88] = { 50.2, 24.8, 28, 2700 }, + [89] = { 48.6, 23.8, 28, 2700 }, + [90] = { 70.4, 23.5, 28, 2700 }, + [91] = { 52.3, 21, 28, 2700 }, + [92] = { 48.6, 20.5, 28, 2700 }, + [93] = { 48.8, 20.3, 28, 2700 }, + [94] = { 41.5, 20.1, 28, 2700 }, + [95] = { 40.9, 14.3, 28, 2700 }, + [96] = { 48.2, 13.2, 28, 2700 }, + [97] = { 46.1, 11.9, 28, 2700 }, + [98] = { 42.2, 11.8, 28, 2700 }, + [99] = { 81.8, 22.4, 45, 2700 }, + [100] = { 23, 73.2, 46, 2700 }, + [101] = { 89.3, 70.9, 46, 2700 }, + [102] = { 30.1, 70.5, 46, 2700 }, + [103] = { 21.8, 69.9, 46, 2700 }, + [104] = { 35.3, 69.6, 46, 2700 }, + [105] = { 89.4, 68, 46, 2700 }, + [106] = { 23.4, 67, 46, 2700 }, + [107] = { 22, 66.5, 46, 2700 }, + [108] = { 91.4, 66.3, 46, 2700 }, + [109] = { 25.7, 65, 46, 2700 }, + [110] = { 27, 64.2, 46, 2700 }, + [111] = { 72, 64.1, 46, 2700 }, + [112] = { 22.9, 64.1, 46, 2700 }, + [113] = { 90.8, 63.3, 46, 2700 }, + [114] = { 48.8, 62.6, 46, 2700 }, + [115] = { 22.5, 62.5, 46, 2700 }, + [116] = { 42.2, 62.1, 46, 2700 }, + [117] = { 91.5, 61.3, 46, 2700 }, + [118] = { 43.6, 59.6, 46, 2700 }, + [119] = { 47.2, 59.5, 46, 2700 }, + [120] = { 30.3, 58.6, 46, 2700 }, + [121] = { 36.3, 58.2, 46, 2700 }, + [122] = { 16.9, 58.1, 46, 2700 }, + [123] = { 65, 57.9, 46, 2700 }, + [124] = { 59.5, 57.1, 46, 2700 }, + [125] = { 36.3, 56.6, 46, 2700 }, + [126] = { 74.3, 56.3, 46, 2700 }, + [127] = { 70, 56.3, 46, 2700 }, + [128] = { 75.2, 56, 46, 2700 }, + [129] = { 74.8, 55.9, 46, 2700 }, + [130] = { 76.4, 55.4, 46, 2700 }, + [131] = { 62.2, 54.9, 46, 2700 }, + [132] = { 26.5, 54.8, 46, 2700 }, + [133] = { 67, 53.6, 46, 2700 }, + [134] = { 47.5, 50.8, 46, 2700 }, + [135] = { 16.3, 50.7, 46, 2700 }, + [136] = { 80.9, 48.5, 46, 2700 }, + [137] = { 81.8, 48.5, 46, 2700 }, + [138] = { 79.9, 47.8, 46, 2700 }, + [139] = { 96.8, 47.5, 46, 2700 }, + [140] = { 26.1, 45.8, 46, 2700 }, + [141] = { 79.6, 45.6, 46, 2700 }, + [142] = { 81.1, 45, 46, 2700 }, + [143] = { 41.8, 44.8, 46, 2700 }, + [144] = { 20.8, 44.8, 46, 2700 }, + [145] = { 67.7, 44.4, 46, 2700 }, + [146] = { 77.5, 44, 46, 2700 }, + [147] = { 83.5, 44, 46, 2700 }, + [148] = { 64.6, 44, 46, 2700 }, + [149] = { 56, 43.4, 46, 2700 }, + [150] = { 42.3, 43.1, 46, 2700 }, + [151] = { 50.3, 42.9, 46, 2700 }, + [152] = { 57.9, 42.4, 46, 2700 }, + [153] = { 20.8, 42.3, 46, 2700 }, + [154] = { 78.4, 41.3, 46, 2700 }, + [155] = { 39.7, 41.3, 46, 2700 }, + [156] = { 38, 41, 46, 2700 }, + [157] = { 44.3, 40.6, 46, 2700 }, + [158] = { 81.4, 40.4, 46, 2700 }, + [159] = { 72, 40.2, 46, 2700 }, + [160] = { 81.4, 40.1, 46, 2700 }, + [161] = { 61.2, 39.8, 46, 2700 }, + [162] = { 60.7, 39.7, 46, 2700 }, + [163] = { 39.1, 38.3, 46, 2700 }, + [164] = { 57.6, 37.6, 46, 2700 }, + [165] = { 42.6, 37.4, 46, 2700 }, + [166] = { 64.2, 36.8, 46, 2700 }, + [167] = { 46.8, 35.8, 46, 2700 }, + [168] = { 63.7, 35.7, 46, 2700 }, + [169] = { 47.3, 33.5, 46, 2700 }, + [170] = { 61.8, 31.2, 46, 2700 }, + [171] = { 39.8, 30.1, 46, 2700 }, + [172] = { 38.6, 30.1, 46, 2700 }, + [173] = { 55.1, 30, 46, 2700 }, + [174] = { 15, 30, 46, 2700 }, + [175] = { 39.9, 28.5, 46, 2700 }, + [176] = { 39.1, 28.4, 46, 2700 }, + [177] = { 63.9, 27.6, 46, 2700 }, + [178] = { 72.4, 27.3, 46, 2700 }, + [179] = { 62.5, 27.1, 46, 2700 }, + [180] = { 58.5, 25.2, 46, 2700 }, + [181] = { 64.1, 24.7, 46, 2700 }, + [182] = { 62.8, 24.5, 46, 2700 }, + [183] = { 65.8, 22.7, 46, 2700 }, + [184] = { 58.1, 83.3, 47, 2700 }, + [185] = { 57.9, 69.9, 47, 2700 }, + [186] = { 56.1, 68.2, 47, 2700 }, + [187] = { 57.6, 67, 47, 2700 }, + [188] = { 71.7, 66.2, 47, 2700 }, + [189] = { 60.1, 59.4, 47, 2700 }, + [190] = { 68.1, 55.1, 47, 2700 }, + [191] = { 66.8, 52.4, 47, 2700 }, + [192] = { 79.4, 50, 47, 2700 }, + [193] = { 65.7, 41.8, 47, 2700 }, + [194] = { 48.9, 99.8, 51, 2700 }, + [195] = { 21.6, 79.6, 51, 2700 }, + [196] = { 20.5, 78.1, 51, 2700 }, + [197] = { 31.4, 75.9, 51, 2700 }, + [198] = { 26.5, 66.2, 51, 2700 }, + [199] = { 38.5, 63.3, 51, 2700 }, + [200] = { 23.7, 53.2, 51, 2700 }, + [201] = { 23.3, 43.7, 51, 2700 }, + [202] = { 34.2, 42.2, 51, 2700 }, + [203] = { 41.7, 41.5, 51, 2700 }, + [204] = { 40.5, 39.1, 51, 2700 }, + [205] = { 24, 36.6, 51, 2700 }, + [206] = { 15.7, 32.4, 51, 2700 }, + [207] = { 22.5, 30.9, 51, 2700 }, + [208] = { 23, 30.3, 51, 2700 }, + [209] = { 22.5, 24.4, 51, 2700 }, + [210] = { 97.4, 34.7, 85, 2700 }, + [211] = { 83.5, 88.2, 139, 2700 }, + [212] = { 66.2, 84.7, 139, 2700 }, + [213] = { 46.7, 84.3, 139, 2700 }, + [214] = { 41.5, 84.1, 139, 2700 }, + [215] = { 45.9, 83.4, 139, 2700 }, + [216] = { 86.7, 80.5, 139, 2700 }, + [217] = { 75.6, 80.2, 139, 2700 }, + [218] = { 78.7, 77.9, 139, 2700 }, + [219] = { 55.7, 77.6, 139, 2700 }, + [220] = { 84.1, 74.4, 139, 2700 }, + [221] = { 47.4, 71.3, 139, 2700 }, + [222] = { 56.9, 69.2, 139, 2700 }, + [223] = { 56.1, 67.2, 139, 2700 }, + [224] = { 73.8, 65.8, 139, 2700 }, + [225] = { 57.2, 64.7, 139, 2700 }, + [226] = { 76.6, 64.3, 139, 2700 }, + [227] = { 30.5, 64.2, 139, 2700 }, + [228] = { 54.9, 64.1, 139, 2700 }, + [229] = { 72.4, 63.3, 139, 2700 }, + [230] = { 77.1, 61.3, 139, 2700 }, + [231] = { 20.7, 52.7, 139, 2700 }, + [232] = { 43.3, 51, 139, 2700 }, + [233] = { 19.3, 51, 139, 2700 }, + [234] = { 72.9, 49.7, 139, 2700 }, + [235] = { 57.8, 49.4, 139, 2700 }, + [236] = { 20.3, 49.3, 139, 2700 }, + [237] = { 56.1, 49.3, 139, 2700 }, + [238] = { 18.5, 48.9, 139, 2700 }, + [239] = { 71.6, 48.9, 139, 2700 }, + [240] = { 40.2, 47.2, 139, 2700 }, + [241] = { 84.5, 47.2, 139, 2700 }, + [242] = { 71.3, 45.5, 139, 2700 }, + [243] = { 80.8, 45.1, 139, 2700 }, + [244] = { 81.6, 45, 139, 2700 }, + [245] = { 87.8, 43.9, 139, 2700 }, + [246] = { 52.8, 43.8, 139, 2700 }, + [247] = { 32.5, 43, 139, 2700 }, + [248] = { 10.9, 42.9, 139, 2700 }, + [249] = { 81.3, 41.3, 139, 2700 }, + [250] = { 83.7, 36.2, 139, 2700 }, + [251] = { 61.2, 30.8, 139, 2700 }, + [252] = { 63.8, 30, 139, 2700 }, + [253] = { 28.4, 30, 139, 2700 }, + [254] = { 72.9, 28.5, 139, 2700 }, + [255] = { 59.7, 27.9, 139, 2700 }, + [256] = { 54.2, 27.7, 139, 2700 }, + [257] = { 68.4, 26.5, 139, 2700 }, + [258] = { 61.8, 25.4, 139, 2700 }, + [259] = { 65.1, 23.4, 139, 2700 }, + [260] = { 65.4, 22.6, 139, 2700 }, + [261] = { 68.7, 22.1, 139, 2700 }, + [262] = { 66.6, 21.8, 139, 2700 }, + [263] = { 69.3, 21, 139, 2700 }, + [264] = { 73.3, 18.1, 139, 2700 }, + [265] = { 73.5, 17.9, 139, 2700 }, + [266] = { 69.8, 12.6, 139, 2700 }, + [267] = { 54.7, 84, 148, 2700 }, + [268] = { 50.3, 81.7, 148, 2700 }, + [269] = { 54.5, 45.4, 148, 2700 }, + [270] = { 25.2, 72.3, 357, 2700 }, + [271] = { 45.4, 69.4, 357, 2700 }, + [272] = { 62.4, 69.3, 357, 2700 }, + [273] = { 65.4, 26.9, 357, 2700 }, + [274] = { 66.2, 26.3, 357, 2700 }, + [275] = { 41.1, 81.5, 361, 2700 }, + [276] = { 41, 75.3, 361, 2700 }, + [277] = { 39.7, 64.4, 361, 2700 }, + [278] = { 34.7, 61.8, 361, 2700 }, + [279] = { 37.5, 54.2, 361, 2700 }, + [280] = { 37.7, 52.7, 361, 2700 }, + [281] = { 51.4, 52.1, 361, 2700 }, + [282] = { 37.8, 52, 361, 2700 }, + [283] = { 38.1, 50.4, 361, 2700 }, + [284] = { 49.6, 49.6, 361, 2700 }, + [285] = { 37.7, 47, 361, 2700 }, + [286] = { 39, 46.4, 361, 2700 }, + [287] = { 53.9, 45.3, 361, 2700 }, + [288] = { 56.3, 44.3, 361, 2700 }, + [289] = { 54.5, 43.2, 361, 2700 }, + [290] = { 56.6, 42, 361, 2700 }, + [291] = { 55.8, 41.9, 361, 2700 }, + [292] = { 55.1, 40.7, 361, 2700 }, + [293] = { 42.8, 40.2, 361, 2700 }, + [294] = { 37.9, 33.4, 361, 2700 }, + [295] = { 50, 31.9, 361, 2700 }, + [296] = { 49.4, 27.4, 361, 2700 }, + [297] = { 57.4, 25.7, 361, 2700 }, + [298] = { 62.9, 24, 361, 2700 }, + [299] = { 60.3, 22.9, 361, 2700 }, + [300] = { 57.8, 22.1, 361, 2700 }, + [301] = { 61, 21.8, 361, 2700 }, + [302] = { 39.5, 20.4, 361, 2700 }, + [303] = { 57.3, 19.5, 361, 2700 }, + [304] = { 56.4, 17.6, 361, 2700 }, + [305] = { 47.8, 14.2, 361, 2700 }, + [306] = { 64.3, 12.8, 361, 2700 }, + [307] = { 64.4, 10.5, 361, 2700 }, + [308] = { 64.4, 6.5, 361, 2700 }, + [309] = { 26.4, 89.6, 408, 2700 }, + [310] = { 27.1, 88.8, 408, 2700 }, + [311] = { 69.2, 73.5, 408, 2700 }, + [312] = { 66.8, 71, 408, 2700 }, + [313] = { 69.6, 69.6, 408, 2700 }, + [314] = { 42.4, 62.5, 408, 2700 }, + [315] = { 47.7, 51.2, 408, 2700 }, + [316] = { 49.1, 50.3, 408, 2700 }, + [317] = { 48.9, 44.7, 408, 2700 }, + [318] = { 63.9, 74.4, 409, 2700 }, + [319] = { 61.6, 73.2, 409, 2700 }, + [320] = { 63.1, 73, 409, 2700 }, + [321] = { 65.3, 72.2, 409, 2700 }, + [322] = { 62.2, 71, 409, 2700 }, + [323] = { 72.5, 60.6, 409, 2700 }, + [324] = { 45.8, 58.5, 409, 2700 }, + [325] = { 34.6, 26.2, 409, 2700 }, + [326] = { 55.4, 73, 440, 2700 }, + [327] = { 27.5, 72.8, 440, 2700 }, + [328] = { 28.4, 71.9, 440, 2700 }, + [329] = { 28.1, 70.5, 440, 2700 }, + [330] = { 27.4, 68.7, 440, 2700 }, + [331] = { 29.7, 67.9, 440, 2700 }, + [332] = { 29.4, 64.8, 440, 2700 }, + [333] = { 31.2, 64.6, 440, 2700 }, + [334] = { 29.4, 64.3, 440, 2700 }, + [335] = { 54.4, 53.6, 440, 2700 }, + [336] = { 64, 53.3, 440, 2700 }, + [337] = { 30.1, 53, 440, 2700 }, + [338] = { 37, 52.9, 440, 2700 }, + [339] = { 32.9, 52.9, 440, 2700 }, + [340] = { 64, 52.8, 440, 2700 }, + [341] = { 52.6, 51.7, 440, 2700 }, + [342] = { 37.7, 51.6, 440, 2700 }, + [343] = { 61.3, 51, 440, 2700 }, + [344] = { 72.2, 50.9, 440, 2700 }, + [345] = { 35.9, 50.5, 440, 2700 }, + [346] = { 73.4, 50, 440, 2700 }, + [347] = { 62.7, 48.8, 440, 2700 }, + [348] = { 61.1, 48.3, 440, 2700 }, + [349] = { 64.4, 47.1, 440, 2700 }, + [350] = { 61.6, 47.1, 440, 2700 }, + [351] = { 62.9, 46.2, 440, 2700 }, + [352] = { 34.9, 46.1, 440, 2700 }, + [353] = { 53.1, 45.7, 440, 2700 }, + [354] = { 30.8, 45.6, 440, 2700 }, + [355] = { 31.6, 44.8, 440, 2700 }, + [356] = { 64.1, 44.8, 440, 2700 }, + [357] = { 31, 44.7, 440, 2700 }, + [358] = { 73.3, 44.5, 440, 2700 }, + [359] = { 32.2, 44.1, 440, 2700 }, + [360] = { 31, 44, 440, 2700 }, + [361] = { 51.2, 43.8, 440, 2700 }, + [362] = { 72.3, 43.8, 440, 2700 }, + [363] = { 32, 43.7, 440, 2700 }, + [364] = { 30.5, 43.6, 440, 2700 }, + [365] = { 71.7, 43.1, 440, 2700 }, + [366] = { 71.2, 42.3, 440, 2700 }, + [367] = { 70.1, 42.2, 440, 2700 }, + [368] = { 68.1, 41.8, 440, 2700 }, + [369] = { 67.4, 40.5, 440, 2700 }, + [370] = { 66.5, 38.8, 440, 2700 }, + [371] = { 56.9, 36.5, 440, 2700 }, + [372] = { 53.3, 34.5, 440, 2700 }, + [373] = { 53.1, 33.7, 440, 2700 }, + [374] = { 66.5, 33.3, 440, 2700 }, + [375] = { 36.5, 33, 440, 2700 }, + [376] = { 65.9, 31.2, 440, 2700 }, + [377] = { 64, 30.3, 440, 2700 }, + [378] = { 57.8, 27.3, 440, 2700 }, + [379] = { 41.4, 26.7, 440, 2700 }, + [380] = { 44.1, 25.9, 440, 2700 }, + [381] = { 57, 25.8, 440, 2700 }, + [382] = { 32, 24.9, 440, 2700 }, + [383] = { 56.4, 23.9, 440, 2700 }, + [384] = { 59.2, 23.3, 440, 2700 }, + [385] = { 62.3, 23, 440, 2700 }, + [386] = { 31.5, 22.9, 440, 2700 }, + [387] = { 61.5, 22.7, 440, 2700 }, + [388] = { 56, 92.7, 490, 2700 }, + [389] = { 42.5, 91.5, 490, 2700 }, + [390] = { 61.7, 84.9, 490, 2700 }, + [391] = { 77.8, 81.4, 490, 2700 }, + [392] = { 48.8, 80.3, 490, 2700 }, + [393] = { 64.8, 80.3, 490, 2700 }, + [394] = { 78.2, 79.7, 490, 2700 }, + [395] = { 78.1, 78.3, 490, 2700 }, + [396] = { 38.4, 78, 490, 2700 }, + [397] = { 77.2, 77.6, 490, 2700 }, + [398] = { 50.4, 76.1, 490, 2700 }, + [399] = { 50.5, 75.6, 490, 2700 }, + [400] = { 30.7, 74.7, 490, 2700 }, + [401] = { 10.2, 73.1, 490, 2700 }, + [402] = { 31, 71.6, 490, 2700 }, + [403] = { 73.6, 70.4, 490, 2700 }, + [404] = { 28.5, 70.3, 490, 2700 }, + [405] = { 74.2, 69.9, 490, 2700 }, + [406] = { 34.1, 69.5, 490, 2700 }, + [407] = { 63.1, 66.5, 490, 2700 }, + [408] = { 59.4, 65.5, 490, 2700 }, + [409] = { 37, 64.9, 490, 2700 }, + [410] = { 45.5, 64.8, 490, 2700 }, + [411] = { 40.9, 64.8, 490, 2700 }, + [412] = { 75.6, 63.7, 490, 2700 }, + [413] = { 22.2, 60.3, 490, 2700 }, + [414] = { 21.9, 60.1, 490, 2700 }, + [415] = { 23.8, 57.1, 490, 2700 }, + [416] = { 48, 56, 490, 2700 }, + [417] = { 46.7, 53.8, 490, 2700 }, + [418] = { 50.2, 52.6, 490, 2700 }, + [419] = { 54.1, 51.9, 490, 2700 }, + [420] = { 46.1, 50.9, 490, 2700 }, + [421] = { 54.3, 50.8, 490, 2700 }, + [422] = { 52.1, 50.6, 490, 2700 }, + [423] = { 76.6, 50.5, 490, 2700 }, + [424] = { 54.6, 50.4, 490, 2700 }, + [425] = { 76.8, 49.5, 490, 2700 }, + [426] = { 47.3, 47.4, 490, 2700 }, + [427] = { 54, 46.6, 490, 2700 }, + [428] = { 46.6, 44.9, 490, 2700 }, + [429] = { 79.9, 42.7, 490, 2700 }, + [430] = { 20.8, 42.4, 490, 2700 }, + [431] = { 78, 41, 490, 2700 }, + [432] = { 76.3, 40.3, 490, 2700 }, + [433] = { 25.5, 39.8, 490, 2700 }, + [434] = { 75.6, 39.7, 490, 2700 }, + [435] = { 79, 39, 490, 2700 }, + [436] = { 9, 37.5, 490, 2700 }, + [437] = { 55.5, 35.2, 490, 2700 }, + [438] = { 45.4, 35.2, 490, 2700 }, + [439] = { 63, 33.4, 490, 2700 }, + [440] = { 75.8, 32.6, 490, 2700 }, + [441] = { 12.3, 27.3, 490, 2700 }, + [442] = { 69, 17.7, 490, 2700 }, + [443] = { 67.7, 16.8, 490, 2700 }, + [444] = { 67.6, 16.7, 490, 2700 }, + [445] = { 63.9, 16.2, 490, 2700 }, + [446] = { 65.7, 15.5, 490, 2700 }, + [447] = { 67.4, 13.6, 490, 2700 }, + [448] = { 48.6, 12.7, 490, 2700 }, + [449] = { 56.6, 11.7, 490, 2700 }, + [450] = { 55.8, 87.8, 616, 2700 }, + [451] = { 94.6, 84.6, 616, 2700 }, + [452] = { 61.7, 84.2, 616, 2700 }, + [453] = { 58.7, 79.9, 616, 2700 }, + [454] = { 95.2, 79.3, 616, 2700 }, + [455] = { 46.4, 78.4, 616, 2700 }, + [456] = { 91.8, 76.8, 616, 2700 }, + [457] = { 95, 74.2, 616, 2700 }, + [458] = { 44.6, 73.9, 616, 2700 }, + [459] = { 40.7, 73.5, 616, 2700 }, + [460] = { 48.1, 72.3, 616, 2700 }, + [461] = { 21.9, 71.6, 616, 2700 }, + [462] = { 70.1, 71.3, 616, 2700 }, + [463] = { 74.9, 70.2, 616, 2700 }, + [464] = { 28.3, 70, 616, 2700 }, + [465] = { 64.1, 69.8, 616, 2700 }, + [466] = { 57.4, 68.7, 616, 2700 }, + [467] = { 78.4, 68.1, 616, 2700 }, + [468] = { 50.7, 66.6, 616, 2700 }, + [469] = { 83.9, 66.1, 616, 2700 }, + [470] = { 88.4, 65.4, 616, 2700 }, + [471] = { 70, 64.8, 616, 2700 }, + [472] = { 83.4, 63.6, 616, 2700 }, + [473] = { 64.6, 63.3, 616, 2700 }, + [474] = { 38.8, 61.7, 616, 2700 }, + [475] = { 61.3, 59.8, 616, 2700 }, + [476] = { 64.8, 59.1, 616, 2700 }, + [477] = { 55.1, 58.5, 616, 2700 }, + [478] = { 12.5, 58, 616, 2700 }, + [479] = { 49.4, 57.2, 616, 2700 }, + [480] = { 64.8, 55.4, 616, 2700 }, + [481] = { 23.3, 55.3, 616, 2700 }, + [482] = { 61.7, 54.9, 616, 2700 }, + [483] = { 52.2, 52.7, 616, 2700 }, + [484] = { 34.7, 50.1, 616, 2700 }, + [485] = { 64.4, 50, 616, 2700 }, + [486] = { 44.8, 50, 616, 2700 }, + [487] = { 70.7, 48.7, 616, 2700 }, + [488] = { 29.9, 48.6, 616, 2700 }, + [489] = { 7.2, 46.1, 616, 2700 }, + [490] = { 17.4, 45.6, 616, 2700 }, + [491] = { 31.1, 45.3, 616, 2700 }, + [492] = { 67.9, 43.7, 616, 2700 }, + [493] = { 37.9, 43.1, 616, 2700 }, + [494] = { 21.1, 43.1, 616, 2700 }, + [495] = { 26.2, 42.4, 616, 2700 }, + [496] = { 4.1, 41.7, 616, 2700 }, + [497] = { 47.2, 41.1, 616, 2700 }, + [498] = { 16.4, 36.2, 616, 2700 }, + [499] = { 73.3, 35.6, 616, 2700 }, + [500] = { 14, 34.3, 616, 2700 }, + [501] = { 34.9, 34.1, 616, 2700 }, + [502] = { 11.7, 34.1, 616, 2700 }, + [503] = { 16.1, 32.3, 616, 2700 }, + [504] = { 65.5, 31.4, 616, 2700 }, + [505] = { 43, 30.8, 616, 2700 }, + [506] = { 12.9, 30.3, 616, 2700 }, + [507] = { 46.7, 29.8, 616, 2700 }, + [508] = { 16.5, 28.1, 616, 2700 }, + [509] = { 15.1, 28, 616, 2700 }, + [510] = { 14, 25.7, 616, 2700 }, + [511] = { 52.3, 23.1, 616, 2700 }, + [512] = { 70.1, 22.8, 616, 2700 }, + [513] = { 62, 18.7, 616, 2700 }, + [514] = { 92, 10.7, 616, 2700 }, + [515] = { 4.7, 10, 616, 2700 }, + [516] = { 94.5, 6.1, 616, 2700 }, + [517] = { 3.6, 2, 616, 2700 }, + [518] = { 94.5, 1.7, 616, 2700 }, + [519] = { 99.5, 1.6, 616, 2700 }, + [520] = { 56.8, 89.9, 618, 2700 }, + [521] = { 57.1, 89.5, 618, 2700 }, + [522] = { 53.5, 89.2, 618, 2700 }, + [523] = { 58.4, 88.8, 618, 2700 }, + [524] = { 59, 88.6, 618, 2700 }, + [525] = { 59.6, 87.9, 618, 2700 }, + [526] = { 53.8, 86.7, 618, 2700 }, + [527] = { 59.4, 86.3, 618, 2700 }, + [528] = { 52.2, 85.6, 618, 2700 }, + [529] = { 53.6, 84.5, 618, 2700 }, + [530] = { 59, 84.4, 618, 2700 }, + [531] = { 61.1, 84.3, 618, 2700 }, + [532] = { 62.4, 82.7, 618, 2700 }, + [533] = { 60.6, 82, 618, 2700 }, + [534] = { 46.1, 81.7, 618, 2700 }, + [535] = { 71.2, 81.2, 618, 2700 }, + [536] = { 48.6, 80.8, 618, 2700 }, + [537] = { 50.7, 80.5, 618, 2700 }, + [538] = { 61.2, 80.4, 618, 2700 }, + [539] = { 48.4, 79.7, 618, 2700 }, + [540] = { 65.5, 79.5, 618, 2700 }, + [541] = { 60.3, 78.8, 618, 2700 }, + [542] = { 61.7, 78.6, 618, 2700 }, + [543] = { 59.5, 77.6, 618, 2700 }, + [544] = { 56.6, 77.6, 618, 2700 }, + [545] = { 57.4, 72.5, 618, 2700 }, + [546] = { 62.8, 71.1, 618, 2700 }, + [547] = { 64.6, 70.4, 618, 2700 }, + [548] = { 66.2, 69.2, 618, 2700 }, + [549] = { 60.5, 68.3, 618, 2700 }, + [550] = { 63.2, 67.7, 618, 2700 }, + [551] = { 61.1, 64, 618, 2700 }, + [552] = { 59.6, 63.4, 618, 2700 }, + [553] = { 57.8, 61.1, 618, 2700 }, + [554] = { 64.6, 60.8, 618, 2700 }, + [555] = { 66.7, 60.1, 618, 2700 }, + [556] = { 65.3, 58.6, 618, 2700 }, + [557] = { 52.3, 55.7, 618, 2700 }, + [558] = { 57.1, 55.3, 618, 2700 }, + [559] = { 53.4, 53.7, 618, 2700 }, + [560] = { 53.4, 51.6, 618, 2700 }, + [561] = { 55.7, 51.6, 618, 2700 }, + [562] = { 54.7, 49.7, 618, 2700 }, + [563] = { 55.7, 48.9, 618, 2700 }, + [564] = { 51.3, 45.1, 618, 2700 }, + [565] = { 55.9, 44.7, 618, 2700 }, + [566] = { 56.9, 44.6, 618, 2700 }, + [567] = { 52.8, 44.4, 618, 2700 }, + [568] = { 55.7, 44.3, 618, 2700 }, + [569] = { 53.8, 43.8, 618, 2700 }, + [570] = { 50.3, 43.7, 618, 2700 }, + [571] = { 55.5, 43.6, 618, 2700 }, + [572] = { 50.1, 43.4, 618, 2700 }, + [573] = { 56.5, 42.7, 618, 2700 }, + [574] = { 69.6, 41.8, 618, 2700 }, + [575] = { 53, 41.1, 618, 2700 }, + [576] = { 49.9, 41, 618, 2700 }, + [577] = { 24.5, 39.9, 618, 2700 }, + [578] = { 70.2, 39.8, 618, 2700 }, + [579] = { 70.8, 39.7, 618, 2700 }, + [580] = { 52.1, 39.5, 618, 2700 }, + [581] = { 55.1, 39.2, 618, 2700 }, + [582] = { 67.7, 38.6, 618, 2700 }, + [583] = { 69.4, 38.5, 618, 2700 }, + [584] = { 70, 38.2, 618, 2700 }, + [585] = { 24.6, 38.1, 618, 2700 }, + [586] = { 66.5, 37.5, 618, 2700 }, + [587] = { 68.6, 37.4, 618, 2700 }, + [588] = { 68, 35.6, 618, 2700 }, + [589] = { 24.6, 34.9, 618, 2700 }, + [590] = { 51.5, 18.6, 618, 2700 }, + [591] = { 50.3, 16.9, 618, 2700 }, + [592] = { 60.6, 15.9, 618, 2700 }, + [593] = { 54.8, 10.5, 618, 2700 }, + [594] = { 48.3, 9.2, 618, 2700 }, + [595] = { 51.1, 7, 618, 2700 }, + [596] = { 47.8, 6.6, 618, 2700 }, + [597] = { 48.7, 6.4, 618, 2700 }, + [598] = { 44, 51.4, 876, 300 }, + [599] = { 63.8, 94, 1377, 2700 }, + [600] = { 57, 90.8, 1377, 2700 }, + [601] = { 40.4, 90.7, 1377, 2700 }, + [602] = { 48.9, 86.9, 1377, 2700 }, + [603] = { 32.3, 83.8, 1377, 2700 }, + [604] = { 66.9, 81.5, 1377, 2700 }, + [605] = { 40.4, 79.9, 1377, 2700 }, + [606] = { 62.8, 78.8, 1377, 2700 }, + [607] = { 43.7, 78.5, 1377, 2700 }, + [608] = { 44.2, 78, 1377, 2700 }, + [609] = { 68.3, 77.9, 1377, 2700 }, + [610] = { 19.7, 76.1, 1377, 2700 }, + [611] = { 61.2, 76, 1377, 2700 }, + [612] = { 36.9, 71, 1377, 2700 }, + [613] = { 41.4, 67.1, 1377, 2700 }, + [614] = { 17.9, 66.5, 1377, 2700 }, + [615] = { 65.4, 65, 1377, 2700 }, + [616] = { 81.1, 64.3, 1377, 2700 }, + [617] = { 80.8, 64.2, 1377, 2700 }, + [618] = { 48.2, 61.9, 1377, 2700 }, + [619] = { 37.7, 61.1, 1377, 2700 }, + [620] = { 54.4, 60.2, 1377, 2700 }, + [621] = { 58.6, 51.5, 1377, 2700 }, + [622] = { 79.7, 45.4, 1377, 2700 }, + [623] = { 33.4, 41.7, 1377, 2700 }, + [624] = { 67.1, 40.1, 1377, 2700 }, + [625] = { 26.5, 33.3, 1377, 2700 }, + [626] = { 49.1, 29.6, 1377, 2700 }, + [627] = { 70.6, 29.4, 1377, 2700 }, + [628] = { 32.5, 28.1, 1377, 2700 }, + [629] = { 51.1, 23.8, 1377, 2700 }, + [630] = { 32.2, 23.1, 1377, 2700 }, + [631] = { 28.8, 22.6, 1377, 2700 }, + [632] = { 50.7, 21.9, 1377, 2700 }, + [633] = { 65.2, 21.6, 1377, 2700 }, + [634] = { 60.4, 21.3, 1377, 2700 }, + [635] = { 58.3, 21.3, 1377, 2700 }, + [636] = { 31.3, 20.1, 1377, 2700 }, + [637] = { 36.6, 18.3, 1377, 2700 }, + [638] = { 49.7, 17.7, 1377, 2700 }, + [639] = { 40.9, 17.2, 1377, 2700 }, + [640] = { 58.3, 15.3, 1377, 2700 }, + [641] = { 46.2, 15.2, 1377, 2700 }, + [642] = { 42, 11.8, 1377, 2700 }, + [643] = { 20.7, 35.7, 1941, 2700 }, + [644] = { 69.6, 34.2, 1941, 2700 }, + [645] = { 69.7, 31.9, 1941, 2700 }, + [646] = { 11.3, 25.7, 1941, 2700 }, + [647] = { 55.6, 22.3, 1941, 2700 }, + [648] = { 63, 10.8, 1941, 2700 }, + [649] = { 54.9, 8.1, 1941, 2700 }, + [650] = { 71.9, 2.2, 1941, 2700 }, + [651] = { 57.6, 2.1, 1941, 2700 }, + [652] = { 84.4, 24.3, 2557, 2700 }, + [653] = { 88.5, 21.1, 2557, 2700 }, + [654] = { 87.4, 4.6, 3478, 2700 }, + [655] = { 81.7, 2.1, 3478, 2700 }, + [656] = { 67.7, 2, 3478, 2700 }, + [657] = { 43.2, 74.2, 4012, 2700 }, + [658] = { 22.1, 69.9, 4012, 2700 }, + [659] = { 47.2, 64.7, 4012, 2700 }, + [660] = { 33.6, 64.4, 4012, 2700 }, + [661] = { 37.5, 61.6, 4012, 2700 }, + [662] = { 9.3, 61.2, 4012, 2700 }, + [663] = { 44, 57.3, 4012, 2700 }, + [664] = { 10.7, 50.9, 4012, 2700 }, + [665] = { 9.7, 48.4, 4012, 2700 }, + [666] = { 31.4, 46.8, 4012, 2700 }, + [667] = { 11.1, 45.4, 4012, 2700 }, + [668] = { 34.9, 44.9, 4012, 2700 }, + [669] = { 8.3, 44.6, 4012, 2700 }, + [670] = { 29.7, 43.7, 4012, 2700 }, + [671] = { 35.5, 41.3, 4012, 2700 }, + [672] = { 30.3, 27, 4012, 2700 }, + [673] = { 11.7, 26.6, 4012, 2700 }, + [674] = { 9.7, 26.5, 4012, 2700 }, + [675] = { 28.7, 26, 4012, 2700 }, + [676] = { 44.5, 24, 4012, 2700 }, + [677] = { 28.4, 21.8, 4012, 2700 }, + [678] = { 40, 21.4, 4012, 2700 }, + [679] = { 40.9, 21.3, 4012, 2700 }, + [680] = { 48.6, 19.9, 4012, 2700 }, + [681] = { 5.7, 19.8, 4012, 2700 }, + [682] = { 40.6, 16.8, 4012, 2700 }, + [683] = { 43.5, 10.6, 4012, 2700 }, + [684] = { 16, 3.9, 4012, 2700 }, + [685] = { 19.1, 2.9, 4012, 2700 }, + [686] = { 30.3, 1.1, 4012, 2700 }, + [687] = { 14.1, 0.4, 4012, 2700 }, + [688] = { 7.4, 0.1, 4012, 2700 }, + [689] = { 62, 83, 5121, 2700 }, + [690] = { 58.5, 69.9, 5121, 2700 }, + [691] = { 61, 69.7, 5121, 2700 }, + [692] = { 54.1, 69.2, 5121, 2700 }, + [693] = { 59.4, 66.6, 5121, 2700 }, + [694] = { 43.3, 65.4, 5121, 2700 }, + [695] = { 49.2, 56.6, 5121, 2700 }, + [696] = { 52.5, 54.8, 5121, 2700 }, + [697] = { 54.6, 54.1, 5121, 2700 }, + [698] = { 52.2, 53.9, 5121, 2700 }, + [699] = { 56.4, 53, 5121, 2700 }, + [700] = { 55.3, 51.8, 5121, 2700 }, + [701] = { 61.8, 51.8, 5121, 2700 }, + [702] = { 40.6, 51, 5121, 2700 }, + [703] = { 45.4, 49.3, 5121, 2700 }, + [704] = { 57.6, 49.1, 5121, 2700 }, + [705] = { 53, 48.9, 5121, 2700 }, + [706] = { 52.1, 48.2, 5121, 2700 }, + [707] = { 56.9, 47.7, 5121, 2700 }, + [708] = { 0.6, 47.2, 5121, 2700 }, + [709] = { 3.2, 45.3, 5121, 2700 }, + [710] = { 50.7, 41.1, 5121, 2700 }, + [711] = { 57.1, 38.5, 5121, 2700 }, + [712] = { 63.3, 35.4, 5121, 2700 }, + [713] = { 3.1, 33.8, 5121, 2700 }, + [714] = { 0.9, 32.2, 5121, 2700 }, + [715] = { 60.8, 23.6, 5121, 2700 }, + [716] = { 48.8, 18.8, 5121, 2700 }, + [717] = { 10.9, 96.8, 5225, 2700 }, + [718] = { 21.1, 95.3, 5225, 2700 }, + [719] = { 18.2, 93.5, 5225, 2700 }, + [720] = { 73.9, 93.4, 5225, 2700 }, + [721] = { 12.8, 93.3, 5225, 2700 }, + [722] = { 98.7, 98.9, 5581, 2700 }, + [723] = { 97.6, 95.9, 5581, 2700 }, + [724] = { 99, 93.3, 5581, 2700 }, + [725] = { 97.8, 92.8, 5581, 2700 }, + [726] = { 98.6, 90.7, 5581, 2700 }, + [727] = { 98.2, 89.2, 5581, 2700 }, + [728] = { 93.2, 85.2, 5581, 2700 }, + [729] = { 92.6, 78.5, 5581, 2700 }, + [730] = { 96.7, 73.2, 5581, 2700 }, + [731] = { 96.7, 70.9, 5581, 2700 }, + [732] = { 91.4, 59.8, 5581, 2700 }, + [733] = { 94.5, 44.4, 5581, 2700 }, + [734] = { 93.7, 43.3, 5581, 2700 }, + [735] = { 97.9, 35.1, 5581, 2700 }, + [736] = { 96, 26.2, 5581, 2700 }, + [737] = { 95.7, 19.6, 5581, 2700 }, + [738] = { 96.2, 14.7, 5581, 2700 }, + [739] = { 90.4, 11.8, 5581, 2700 }, + [740] = { 95.1, 10.8, 5581, 2700 }, + [741] = { 95.5, 10.4, 5581, 2700 }, + [742] = { 95.1, 6.3, 5581, 2700 }, + }, + }, + [2020096] = { + ["coords"] = { + [1] = { 83.8, 79.5, 5208, 300 }, + }, + }, + [2020097] = { + ["coords"] = { + [1] = { 36.3, 26.6, 405, 300 }, + }, + }, + [2020098] = { + ["coords"] = { + [1] = { 62.3, 47.4, 3457, 300 }, + }, + }, + [2020099] = { + ["coords"] = { + [1] = { 29.1, 41.1, 16, 0 }, + }, + }, + [2020100] = { + ["coords"] = { + [1] = { 34.3, 41.1, 16, 300 }, + [2] = { 34.4, 40.4, 16, 300 }, + [3] = { 35.5, 35.9, 16, 300 }, + [4] = { 35.6, 35.5, 16, 300 }, + [5] = { 43.5, 30.4, 16, 300 }, + [6] = { 44.2, 26.4, 16, 300 }, + [7] = { 44.6, 26.2, 16, 300 }, + [8] = { 44.4, 25.4, 16, 300 }, + [9] = { 45.6, 22.6, 16, 300 }, + [10] = { 45, 22, 16, 300 }, + [11] = { 45.3, 21.9, 16, 300 }, + [12] = { 45.6, 21.8, 16, 300 }, + [13] = { 43.5, 21.2, 16, 300 }, + [14] = { 41.5, 20.4, 16, 300 }, + [15] = { 40.8, 20.3, 16, 300 }, + [16] = { 43.3, 20.1, 16, 300 }, + [17] = { 41.6, 19.4, 16, 300 }, + [18] = { 42.9, 18, 16, 300 }, + [19] = { 43.2, 18, 16, 300 }, + [20] = { 71.3, 82, 618, 300 }, + [21] = { 70.8, 81.9, 618, 300 }, + [22] = { 71.4, 81.3, 618, 300 }, + [23] = { 72.3, 80.3, 618, 300 }, + }, + }, + [2020101] = { + ["coords"] = { + [1] = { 23.4, 43.2, 2057, 300 }, + }, + }, + [2020102] = { + ["coords"] = { + [1] = { 73.2, 62, 2017, 300 }, + }, + }, + [2020103] = { + ["coords"] = { + [1] = { 57.7, 81.1, 5103, 300 }, + }, + }, + [2020104] = { + ["coords"] = { + [1] = { 53.2, 57.4, 1583, 300 }, + }, + }, + [2020105] = { + ["coords"] = { + [1] = { 66.5, 9, 16, 0 }, + }, + }, + [2020106] = { + ["coords"] = { + [1] = { 52.8, 55.9, 5121, 300 }, + }, + }, + [2020107] = { + ["coords"] = { + [1] = { 76.9, 41.9, 267, 0 }, + }, + }, + [2020108] = { + ["coords"] = { + [1] = { 63, 63, 85, 300 }, + }, + }, + [2020109] = { + ["coords"] = { + [1] = { 91.5, 9.2, 616, 300 }, + [2] = { 52.1, 55.1, 618, 300 }, + }, + }, + [2020110] = { + ["coords"] = { + [1] = { 74.3, 73, 5103, 300 }, + }, + }, + [2020111] = { + ["coords"] = { + [1] = { 43.3, 60.1, 3457, 300 }, + }, + }, + [2020112] = { + ["coords"] = { + [1] = { 23.6, 50.7, 3457, 300 }, + }, + }, + [2020113] = { + ["coords"] = { + [1] = { 26.7, 24.9, 5208, 300 }, + }, + }, + [2020114] = { + ["coords"] = { + [1] = { 33.8, 40.3, 616, 300 }, + }, + }, + [2020115] = { + ["coords"] = { + [1] = { 58.6, 22.7, 361, 300 }, + [2] = { 57.5, 22.4, 361, 300 }, + [3] = { 57, 21.2, 361, 300 }, + [4] = { 61.1, 21.2, 361, 300 }, + [5] = { 59.7, 21.1, 361, 300 }, + [6] = { 58, 20.6, 361, 300 }, + [7] = { 61, 20.4, 361, 300 }, + [8] = { 57.7, 19.8, 361, 300 }, + [9] = { 58, 19.6, 361, 300 }, + [10] = { 59.9, 19.4, 361, 300 }, + [11] = { 57.7, 19.1, 361, 300 }, + [12] = { 58.3, 18.8, 361, 300 }, + [13] = { 58.8, 18.2, 361, 300 }, + [14] = { 57.4, 17.9, 361, 300 }, + [15] = { 58.1, 17.2, 361, 300 }, + }, + }, + [2020116] = { + ["coords"] = { + [1] = { 76.6, 9.7, 3457, 300 }, + }, + }, + [2020117] = { + ["coords"] = { + [1] = { 71.7, 28.7, 3457, 0 }, + }, + }, + [2020118] = { + ["coords"] = { + [1] = { 68.8, 31.1, 3457, 0 }, + }, + }, + [2020119] = { + ["coords"] = { + [1] = { 69.8, 31.5, 3457, 0 }, + }, + }, + [2020120] = { + ["coords"] = { + [1] = { 25.2, 54.1, 3457, 0 }, + }, + }, + [2020121] = { + ["coords"] = { + [1] = { 49.5, 50.3, 3457, 300 }, + }, + }, + [2020122] = { + ["coords"] = { + [1] = { 46.9, 72.5, 3457, 0 }, + }, + }, + [2020123] = { + ["coords"] = { + [1] = { 68.7, 33.8, 3457, 300 }, + }, + }, + [2020124] = { + ["coords"] = { + [1] = { 63.1, 17.4, 3457, 300 }, + }, + }, + [2020125] = { + ["coords"] = { + [1] = { 59.9, 23.2, 3457, 300 }, + }, + }, + [2020126] = { + ["coords"] = { + [1] = { 74.9, 30.5, 3457, 300 }, + }, + }, + [2020127] = { + ["coords"] = { + [1] = { 88.2, 52.1, 5135, 300 }, + [2] = { 51.3, 48.7, 5581, 300 }, + }, + }, + [2020128] = { + ["coords"] = { + [1] = { 66.4, 45.3, 5135, 300 }, + [2] = { 51, 48.6, 5581, 300 }, + }, + }, + [2020129] = { + ["coords"] = { + [1] = { 52.3, 16.5, 357, 300 }, + [2] = { 50.2, 16.3, 357, 300 }, + [3] = { 51.4, 15.6, 357, 300 }, + [4] = { 53.5, 15.5, 357, 300 }, + [5] = { 49.8, 15.3, 357, 300 }, + [6] = { 48.3, 13.9, 357, 300 }, + [7] = { 54, 12.9, 357, 300 }, + [8] = { 48.7, 12.3, 357, 300 }, + [9] = { 51.3, 12, 357, 300 }, + [10] = { 50, 11.6, 357, 300 }, + [11] = { 48.2, 10.9, 357, 300 }, + [12] = { 52.2, 10.7, 357, 300 }, + [13] = { 54.3, 10.6, 357, 300 }, + [14] = { 52.6, 10.5, 357, 300 }, + [15] = { 53, 10.5, 357, 300 }, + [16] = { 54.1, 10.1, 357, 300 }, + [17] = { 48.3, 10, 357, 300 }, + [18] = { 50.3, 9.7, 357, 300 }, + [19] = { 53.1, 8.4, 357, 300 }, + [20] = { 50.5, 7.9, 357, 300 }, + [21] = { 51, 7.7, 357, 300 }, + [22] = { 54, 7.7, 357, 300 }, + [23] = { 51.5, 7.5, 357, 300 }, + [24] = { 49.9, 7.2, 357, 300 }, + }, + }, + [2020130] = { + ["coords"] = { + [1] = { 7, 89.9, 4012, 0 }, + }, + }, + [2020131] = { + ["coords"] = { + [1] = { 62.6, 37.6, 15, 300 }, + }, + }, + [2020132] = { + ["coords"] = { + [1] = { 24.7, 75.8, 2017, 300 }, + }, + }, + [2020133] = { + ["coords"] = { + [1] = { 43.8, 20.6, 357, 300 }, + }, + }, + [2020134] = { + ["coords"] = { + [1] = { 87.7, 44.8, 491, 5 }, + }, + }, + [2020135] = { + ["coords"] = { + [1] = { 57.4, 58, 5163, 5 }, + }, + }, + [2020136] = { + ["coords"] = { + [1] = { 48.2, 58.6, 130, 300 }, + [2] = { 54.4, 58.4, 130, 300 }, + [3] = { 49.5, 57.9, 130, 300 }, + [4] = { 48.5, 57.8, 130, 300 }, + [5] = { 54.7, 55.7, 130, 300 }, + [6] = { 56.4, 55.1, 130, 300 }, + [7] = { 50.4, 55, 130, 300 }, + [8] = { 49.5, 54.9, 130, 300 }, + [9] = { 55.1, 54.4, 130, 300 }, + [10] = { 50.8, 54.1, 130, 300 }, + [11] = { 56.6, 53.5, 130, 300 }, + [12] = { 55.1, 53.3, 130, 300 }, + [13] = { 55.5, 53.3, 130, 300 }, + [14] = { 44.6, 53.1, 130, 300 }, + [15] = { 44, 52.5, 130, 300 }, + [16] = { 56.3, 52.4, 130, 300 }, + [17] = { 54.7, 51.5, 130, 300 }, + [18] = { 44.9, 51.2, 130, 300 }, + [19] = { 53.5, 51.2, 130, 300 }, + [20] = { 52.5, 51, 130, 300 }, + [21] = { 46.3, 50.6, 130, 300 }, + [22] = { 43.4, 50.2, 130, 300 }, + [23] = { 45.2, 49.8, 130, 300 }, + [24] = { 45.9, 49.4, 130, 300 }, + [25] = { 44.5, 49.2, 130, 300 }, + [26] = { 44.6, 48.6, 130, 300 }, + [27] = { 43.9, 48.4, 130, 300 }, + [28] = { 45.2, 47.3, 130, 300 }, + [29] = { 44.3, 47.1, 130, 300 }, + [30] = { 46.4, 46.5, 130, 300 }, + [31] = { 44, 46.4, 130, 300 }, + [32] = { 44, 46, 130, 300 }, + [33] = { 51.4, 41.8, 130, 300 }, + [34] = { 50, 41.8, 130, 300 }, + [35] = { 44.6, 35.1, 130, 300 }, + [36] = { 48.8, 34.3, 130, 300 }, + [37] = { 48.4, 34.3, 130, 300 }, + [38] = { 50.6, 33.7, 130, 300 }, + [39] = { 47.9, 33.3, 130, 300 }, + [40] = { 50.7, 32.7, 130, 300 }, + [41] = { 45, 31.2, 130, 300 }, + [42] = { 45.6, 30.4, 130, 300 }, + [43] = { 44.1, 30.1, 130, 300 }, + [44] = { 50.3, 30, 130, 300 }, + [45] = { 46, 29.6, 130, 300 }, + [46] = { 44.5, 29.5, 130, 300 }, + [47] = { 48.5, 29.4, 130, 300 }, + [48] = { 50.4, 28.9, 130, 300 }, + [49] = { 47.9, 28.9, 130, 300 }, + [50] = { 51.2, 28.8, 130, 300 }, + [51] = { 48.5, 28.3, 130, 300 }, + [52] = { 50.9, 28.2, 130, 300 }, + [53] = { 45.6, 27.7, 130, 300 }, + [54] = { 50.5, 27.1, 130, 300 }, + [55] = { 48.7, 26.7, 130, 300 }, + }, + }, + [2020137] = { + ["coords"] = { + [1] = { 66.6, 56, 51, 300 }, + [2] = { 64.5, 53.2, 51, 300 }, + [3] = { 68.7, 52.2, 51, 300 }, + [4] = { 69.3, 52.2, 51, 300 }, + [5] = { 65.4, 52, 51, 300 }, + [6] = { 66, 51, 51, 300 }, + [7] = { 66.4, 50, 51, 300 }, + [8] = { 68.1, 47.4, 51, 300 }, + [9] = { 69.1, 43.8, 51, 300 }, + [10] = { 69.3, 40.7, 51, 300 }, + [11] = { 68.1, 39.8, 51, 300 }, + [12] = { 57.7, 37.7, 51, 300 }, + [13] = { 59.3, 36.2, 51, 300 }, + [14] = { 66.7, 35.8, 51, 300 }, + [15] = { 69.2, 35.5, 51, 300 }, + [16] = { 55.1, 35.3, 51, 300 }, + [17] = { 62.6, 35.1, 51, 300 }, + [18] = { 49.4, 34.6, 51, 300 }, + [19] = { 53, 34.4, 51, 300 }, + [20] = { 64, 34.3, 51, 300 }, + [21] = { 72.3, 34.1, 51, 300 }, + [22] = { 50.8, 33.9, 51, 300 }, + [23] = { 55.4, 33.6, 51, 300 }, + [24] = { 67, 33.3, 51, 300 }, + [25] = { 70.5, 31.1, 51, 300 }, + [26] = { 58.1, 30.5, 51, 300 }, + [27] = { 58.7, 29.7, 51, 300 }, + [28] = { 73.9, 29.3, 51, 300 }, + [29] = { 55.6, 29.1, 51, 300 }, + [30] = { 58.4, 28.5, 51, 300 }, + [31] = { 60.3, 28.2, 51, 300 }, + [32] = { 56.9, 28, 51, 300 }, + [33] = { 57.6, 26.6, 51, 300 }, + [34] = { 73.2, 25.9, 51, 300 }, + [35] = { 59.7, 25.8, 51, 300 }, + [36] = { 74.3, 25.5, 51, 300 }, + [37] = { 57.6, 24.3, 51, 300 }, + [38] = { 73.8, 23.1, 51, 300 }, + [39] = { 59.3, 22.9, 51, 300 }, + [40] = { 77.1, 21.1, 51, 300 }, + [41] = { 73.5, 21, 51, 300 }, + [42] = { 77.4, 20.1, 51, 300 }, + [43] = { 73, 20, 51, 300 }, + [44] = { 74.1, 18.9, 51, 300 }, + [45] = { 71.2, 18.4, 51, 300 }, + [46] = { 77.2, 17.7, 51, 300 }, + [47] = { 74.5, 17.7, 51, 300 }, + [48] = { 72, 16.7, 51, 300 }, + }, + }, + [2020138] = { + ["coords"] = { + [1] = { 64.7, 74.4, 267, 300 }, + [2] = { 63.3, 72.7, 267, 300 }, + [3] = { 64.9, 71.1, 267, 300 }, + [4] = { 66.6, 70.8, 267, 300 }, + [5] = { 65.7, 70.4, 267, 300 }, + [6] = { 66.7, 70.2, 267, 300 }, + [7] = { 62.5, 69.8, 267, 300 }, + [8] = { 62.5, 69.2, 267, 300 }, + [9] = { 66.2, 68.9, 267, 300 }, + [10] = { 65.2, 68.6, 267, 300 }, + [11] = { 68, 68.3, 267, 300 }, + [12] = { 72.4, 66.2, 267, 300 }, + [13] = { 71.5, 65.8, 267, 300 }, + [14] = { 68, 65.1, 267, 300 }, + [15] = { 62.9, 64.9, 267, 300 }, + [16] = { 62.3, 64.3, 267, 300 }, + [17] = { 57.7, 63.5, 267, 300 }, + [18] = { 70.2, 62.7, 267, 300 }, + [19] = { 57.8, 62.6, 267, 300 }, + [20] = { 71.8, 62.4, 267, 300 }, + [21] = { 73.8, 61.8, 267, 300 }, + [22] = { 59.7, 61, 267, 300 }, + [23] = { 68.5, 60.8, 267, 300 }, + [24] = { 67.9, 60.5, 267, 300 }, + [25] = { 67, 60.3, 267, 300 }, + [26] = { 73.9, 60.3, 267, 300 }, + [27] = { 61.3, 60, 267, 300 }, + [28] = { 72.1, 59.5, 267, 300 }, + [29] = { 69.5, 58.9, 267, 300 }, + [30] = { 67.6, 58.1, 267, 300 }, + [31] = { 62.7, 58.1, 267, 300 }, + [32] = { 67.6, 58, 267, 300 }, + [33] = { 61, 57.2, 267, 300 }, + [34] = { 57.1, 54.2, 267, 300 }, + [35] = { 57, 53.4, 267, 300 }, + [36] = { 59.7, 53.4, 267, 300 }, + [37] = { 60.9, 52.5, 267, 300 }, + [38] = { 62.2, 52.4, 267, 300 }, + [39] = { 60.2, 50.8, 267, 300 }, + [40] = { 62.9, 50.6, 267, 300 }, + [41] = { 61.2, 46.8, 267, 300 }, + [42] = { 62.1, 45.3, 267, 300 }, + }, + }, + [2020139] = { + ["coords"] = { + [1] = { 18.9, 56.8, 47, 300 }, + [2] = { 19.3, 56.7, 47, 300 }, + [3] = { 19.9, 56.3, 47, 300 }, + [4] = { 18, 56.1, 47, 300 }, + [5] = { 20, 55.8, 47, 300 }, + [6] = { 18.7, 55.6, 47, 300 }, + [7] = { 16.3, 55.4, 47, 300 }, + [8] = { 15.5, 55.3, 47, 300 }, + [9] = { 15.3, 55, 47, 300 }, + [10] = { 14.3, 54.5, 47, 300 }, + [11] = { 16.8, 54.4, 47, 300 }, + [12] = { 20.1, 54.3, 47, 300 }, + [13] = { 21.3, 53.7, 47, 300 }, + [14] = { 12.5, 53.3, 47, 300 }, + [15] = { 18.9, 52.9, 47, 300 }, + [16] = { 15, 52.8, 47, 300 }, + [17] = { 17.3, 52.4, 47, 300 }, + [18] = { 15.3, 52.2, 47, 300 }, + [19] = { 18.9, 52.1, 47, 300 }, + [20] = { 14.3, 52, 47, 300 }, + [21] = { 20.3, 51.6, 47, 300 }, + [22] = { 21.1, 51.5, 47, 300 }, + [23] = { 17, 51.4, 47, 300 }, + [24] = { 19, 50.6, 47, 300 }, + [25] = { 15.4, 50.3, 47, 300 }, + [26] = { 16, 50, 47, 300 }, + [27] = { 16.3, 50, 47, 300 }, + [28] = { 17.4, 50, 47, 300 }, + [29] = { 16.2, 49.7, 47, 300 }, + [30] = { 18.6, 49.3, 47, 300 }, + [31] = { 18.4, 48.5, 47, 300 }, + [32] = { 17.7, 48.2, 47, 300 }, + [33] = { 20, 47.8, 47, 300 }, + [34] = { 19.3, 47.4, 47, 300 }, + [35] = { 99.8, 15.6, 267, 300 }, + [36] = { 97.6, 14.1, 267, 300 }, + [37] = { 99.7, 12.6, 267, 300 }, + }, + }, + [2020140] = { + ["coords"] = {}, + }, + [2020141] = { + ["coords"] = { + [1] = { 49.5, 71.5, 5581, 300 }, + }, + }, + [2020142] = { + ["coords"] = { + [1] = { 49.5, 71.5, 5581, 300 }, + [2] = { 32.5, 51.2, 5581, 300 }, + [3] = { 45.8, 42.4, 5581, 300 }, + }, + }, + [2020143] = { + ["coords"] = { + [1] = { 49.4, 71.4, 5581, 300 }, + }, + }, + [2020144] = { + ["coords"] = { + [1] = { 32.5, 51.3, 5581, 300 }, + [2] = { 45.7, 42.4, 5581, 300 }, + }, + }, + [2020145] = { + ["coords"] = { + [1] = { 49.4, 71.4, 5581, 300 }, + }, + }, + [2020146] = { + ["coords"] = { + [1] = { 32.5, 51.3, 5581, 300 }, + [2] = { 45.7, 42.4, 5581, 300 }, + }, + }, + [2020147] = { + ["coords"] = { + [1] = { 32.5, 51.2, 5581, 300 }, + [2] = { 45.8, 42.4, 5581, 300 }, + }, + }, + [2020148] = { + ["coords"] = { + [1] = { 49, 60.5, 5581, 300 }, + }, + }, + [2020149] = { + ["coords"] = { + [1] = { 63.2, 72.3, 5581, 300 }, + }, + }, + [2020150] = { + ["coords"] = { + [1] = { 43.7, 60.6, 5581, 300 }, + }, + }, + [2020151] = { + ["coords"] = { + [1] = { 53.9, 41.6, 5581, 300 }, + }, + }, + [2020152] = { + ["coords"] = { + [1] = { 28.7, 39.7, 5581, 300 }, + }, + }, + [2020153] = { + ["coords"] = { + [1] = { 31.6, 90.6, 1, 300 }, + [2] = { 62.2, 24.3, 5581, 300 }, + }, + }, + [2020154] = { + ["coords"] = { + [1] = { 30.9, 43, 5581, 5 }, + }, + }, + [2020155] = { + ["coords"] = { + [1] = { 31.9, 90.6, 1, 5 }, + [2] = { 62.5, 24.3, 5581, 5 }, + }, + }, + [2020156] = { + ["coords"] = { + [1] = { 57.3, 62.7, 5581, 300 }, + }, + }, + [2020157] = { + ["coords"] = { + [1] = { 61.6, 73.6, 5581, 300 }, + }, + }, + [2020158] = { + ["coords"] = { + [1] = { 70.2, 16.7, 5581, 0 }, + }, + }, + [2020159] = { + ["coords"] = { + [1] = { 19.5, 45.7, 5581, 0 }, + }, + }, + [2020160] = { + ["coords"] = { + [1] = { 31.9, 62.3, 5581, 0 }, + }, + }, + [2020161] = { + ["coords"] = { + [1] = { 43.1, 35.5, 1176, 300 }, + }, + }, + [2020162] = { + ["coords"] = { + [1] = { 52.8, 55.1, 5581, 5 }, + }, + }, + [2020163] = { + ["coords"] = { + [1] = { 54.4, 32.3, 5581, 5 }, + }, + }, + [2020164] = { + ["coords"] = { + [1] = { 36.3, 80.3, 5581, 120 }, + [2] = { 34.8, 79.5, 5581, 120 }, + [3] = { 35.9, 77.9, 5581, 120 }, + [4] = { 36.4, 77.8, 5581, 120 }, + [5] = { 37.2, 76.9, 5581, 300 }, + [6] = { 37.5, 75.5, 5581, 300 }, + [7] = { 36.8, 75.5, 5581, 300 }, + [8] = { 66.5, 44.1, 5581, 120 }, + [9] = { 68.4, 43.7, 5581, 120 }, + [10] = { 66.8, 43.2, 5581, 120 }, + [11] = { 67.7, 42, 5581, 120 }, + [12] = { 66.9, 41.5, 5581, 120 }, + [13] = { 70, 41.5, 5581, 120 }, + [14] = { 68.7, 41.5, 5581, 120 }, + [15] = { 65.6, 41.4, 5581, 120 }, + [16] = { 69.3, 39.7, 5581, 120 }, + [17] = { 64.8, 39.3, 5581, 120 }, + [18] = { 66.9, 38.8, 5581, 120 }, + [19] = { 68.1, 37.3, 5581, 120 }, + [20] = { 69.8, 36.8, 5581, 120 }, + [21] = { 66.3, 36.6, 5581, 120 }, + [22] = { 27.8, 28.8, 5581, 120 }, + }, + }, + [2020165] = { + ["coords"] = { + [1] = { 64.5, 73.4, 5581, 300 }, + [2] = { 72.3, 70.2, 5581, 300 }, + [3] = { 72, 70, 5581, 300 }, + [4] = { 71.3, 68.9, 5581, 300 }, + [5] = { 73, 68.5, 5581, 300 }, + [6] = { 70.7, 68.5, 5581, 300 }, + [7] = { 72, 67.3, 5581, 300 }, + [8] = { 70.9, 66.1, 5581, 300 }, + [9] = { 72.3, 65.6, 5581, 300 }, + [10] = { 70.6, 63.5, 5581, 300 }, + [11] = { 71.4, 63, 5581, 300 }, + [12] = { 71.4, 62, 5581, 300 }, + [13] = { 72.5, 61.8, 5581, 300 }, + [14] = { 74.6, 61.5, 5581, 300 }, + [15] = { 70.2, 61.3, 5581, 300 }, + [16] = { 73.4, 61.2, 5581, 300 }, + [17] = { 69.5, 60.8, 5581, 300 }, + [18] = { 73.4, 60.5, 5581, 300 }, + [19] = { 68.6, 60.3, 5581, 300 }, + [20] = { 72.4, 59.9, 5581, 300 }, + [21] = { 73.1, 59.7, 5581, 300 }, + [22] = { 71, 59.5, 5581, 300 }, + [23] = { 74.3, 59.2, 5581, 300 }, + [24] = { 68.8, 59.2, 5581, 300 }, + [25] = { 71.7, 57.3, 5581, 300 }, + [26] = { 70.3, 57.2, 5581, 300 }, + [27] = { 74, 57, 5581, 300 }, + [28] = { 72.5, 56.9, 5581, 300 }, + [29] = { 71.8, 55.8, 5581, 300 }, + [30] = { 70.2, 55.5, 5581, 300 }, + }, + }, + [2020166] = { + ["coords"] = { + [1] = { 61.2, 37, 618, 300 }, + }, + }, + [2020167] = { + ["coords"] = { + [1] = { 61.8, 12.4, 16, 0 }, + }, + }, + [2020168] = { + ["coords"] = { + [1] = { 59.5, 29.8, 5602, 300 }, + }, + }, + [2020169] = { + ["coords"] = { + [1] = { 41.5, 27.9, 215, 60 }, + [2] = { 53.2, 12.8, 1519, 60 }, + [3] = { 55.1, 12.3, 1519, 60 }, + [4] = { 56.8, 11.5, 1519, 60 }, + [5] = { 58, 10.9, 1519, 60 }, + [6] = { 57.6, 8.8, 1519, 60 }, + [7] = { 51.6, 7.3, 1519, 60 }, + [8] = { 62.4, 5, 1519, 60 }, + [9] = { 54.9, 4, 1519, 60 }, + [10] = { 56.2, 3.7, 1519, 60 }, + [11] = { 62.5, 2.5, 1519, 60 }, + [12] = { 53.9, 2.1, 1519, 60 }, + [13] = { 56.3, 1.5, 1519, 60 }, + [14] = { 57.8, 54.5, 1638, 60 }, + [15] = { 45, 84.2, 5581, 60 }, + [16] = { 46.1, 84, 5581, 60 }, + [17] = { 47, 83.6, 5581, 60 }, + [18] = { 47.6, 83.2, 5581, 60 }, + [19] = { 47.4, 82.1, 5581, 60 }, + [20] = { 44.2, 81.3, 5581, 60 }, + [21] = { 49.9, 80, 5581, 60 }, + [22] = { 45.9, 79.5, 5581, 60 }, + [23] = { 46.6, 79.4, 5581, 60 }, + [24] = { 50, 78.7, 5581, 60 }, + [25] = { 45.4, 78.5, 5581, 60 }, + [26] = { 46.7, 78.2, 5581, 60 }, + [27] = { 49.4, 77.1, 5581, 60 }, + [28] = { 47.6, 76.8, 5581, 60 }, + [29] = { 48.1, 76.4, 5581, 60 }, + [30] = { 48.4, 75.1, 5581, 60 }, + }, + }, + [2020170] = { + ["coords"] = { + [1] = { 36, 53.9, 5581, 60 }, + }, + }, + [2020171] = { + ["coords"] = { + [1] = { 48.9, 54.6, 5581, 10 }, + }, + }, + [2020172] = { + ["coords"] = { + [1] = { 57.5, 62.6, 5581, 10 }, + }, + }, + [2020173] = { + ["coords"] = { + [1] = { 15.8, 64.6, 51, 300 }, + [2] = { 12.1, 64.1, 51, 300 }, + [3] = { 13.3, 64.1, 51, 300 }, + [4] = { 14.3, 63.7, 51, 300 }, + [5] = { 14.8, 63.3, 51, 300 }, + [6] = { 12.8, 63.1, 51, 300 }, + [7] = { 13.4, 62.8, 51, 300 }, + [8] = { 13, 62.7, 51, 300 }, + [9] = { 15.8, 62, 51, 300 }, + [10] = { 14.5, 61.9, 51, 300 }, + [11] = { 10.9, 61.8, 51, 300 }, + [12] = { 16.7, 61.8, 51, 300 }, + [13] = { 11, 61.6, 51, 300 }, + [14] = { 12.5, 61.6, 51, 300 }, + [15] = { 15.1, 61.4, 51, 300 }, + [16] = { 11.5, 61.4, 51, 300 }, + [17] = { 9.7, 61.3, 51, 300 }, + [18] = { 12.5, 61, 51, 300 }, + [19] = { 17.7, 60.6, 51, 300 }, + [20] = { 11.7, 60.5, 51, 300 }, + [21] = { 15.2, 60.3, 51, 300 }, + [22] = { 13.1, 59.9, 51, 300 }, + [23] = { 16.6, 59.5, 51, 300 }, + [24] = { 15.6, 58.2, 51, 300 }, + [25] = { 90.5, 34, 5581, 300 }, + [26] = { 88, 33.7, 5581, 300 }, + [27] = { 88.8, 33.7, 5581, 300 }, + [28] = { 89.5, 33.4, 5581, 300 }, + [29] = { 89.8, 33.1, 5581, 300 }, + [30] = { 88.5, 33, 5581, 300 }, + [31] = { 88.9, 32.8, 5581, 300 }, + [32] = { 88.6, 32.7, 5581, 300 }, + [33] = { 90.5, 32.2, 5581, 300 }, + [34] = { 89.6, 32.2, 5581, 300 }, + [35] = { 87.2, 32.1, 5581, 300 }, + [36] = { 91.1, 32.1, 5581, 300 }, + [37] = { 87.2, 32, 5581, 300 }, + [38] = { 88.3, 32, 5581, 300 }, + [39] = { 90, 31.8, 5581, 300 }, + [40] = { 87.6, 31.8, 5581, 300 }, + [41] = { 86.3, 31.7, 5581, 300 }, + [42] = { 88.2, 31.6, 5581, 300 }, + [43] = { 91.8, 31.3, 5581, 300 }, + [44] = { 87.7, 31.2, 5581, 300 }, + [45] = { 90.1, 31, 5581, 300 }, + [46] = { 88.7, 30.8, 5581, 300 }, + [47] = { 91.1, 30.5, 5581, 300 }, + [48] = { 90.4, 29.6, 5581, 300 }, + [49] = { 79.7, 24.4, 5581, 300 }, + }, + }, + [2020174] = { + ["coords"] = { + [1] = { 40.3, 80, 5581, 60 }, + [2] = { 39.6, 79.4, 5581, 60 }, + [3] = { 39.4, 79.4, 5581, 60 }, + [4] = { 39.5, 78.7, 5581, 60 }, + [5] = { 38.6, 78.3, 5581, 60 }, + [6] = { 39.4, 78.2, 5581, 60 }, + [7] = { 38.5, 77.7, 5581, 60 }, + [8] = { 38.7, 77.6, 5581, 60 }, + [9] = { 40.2, 77.6, 5581, 60 }, + [10] = { 40.8, 77.5, 5581, 60 }, + [11] = { 39.7, 77.1, 5581, 60 }, + [12] = { 39.3, 76.8, 5581, 60 }, + [13] = { 34.7, 72.9, 5581, 60 }, + [14] = { 34.1, 72.8, 5581, 60 }, + [15] = { 34.4, 71.8, 5581, 60 }, + [16] = { 35, 71.4, 5581, 60 }, + [17] = { 34.4, 71.3, 5581, 60 }, + [18] = { 34.9, 70.5, 5581, 60 }, + }, + }, + [2020175] = { + ["coords"] = { + [1] = { 65.7, 73.2, 5581, 300 }, + [2] = { 65.9, 73, 5581, 300 }, + [3] = { 66, 72.8, 5581, 300 }, + [4] = { 65.9, 71.8, 5581, 300 }, + [5] = { 65.6, 69.9, 5581, 300 }, + [6] = { 65.6, 68.5, 5581, 300 }, + [7] = { 69.7, 66.2, 5581, 300 }, + [8] = { 69.3, 65.6, 5581, 300 }, + [9] = { 69.6, 63.6, 5581, 300 }, + [10] = { 69.7, 62.5, 5581, 300 }, + [11] = { 68.7, 61.7, 5581, 300 }, + [12] = { 65.2, 61.1, 5581, 300 }, + [13] = { 29.3, 57.3, 5581, 300 }, + [14] = { 30, 57.2, 5581, 300 }, + [15] = { 60.8, 53.8, 5581, 300 }, + [16] = { 59.4, 53.6, 5581, 300 }, + [17] = { 60.4, 53.2, 5581, 300 }, + [18] = { 31.1, 52.6, 5581, 300 }, + [19] = { 27.8, 52.6, 5581, 300 }, + [20] = { 31.7, 52.5, 5581, 300 }, + [21] = { 58.2, 52.4, 5581, 300 }, + [22] = { 38.3, 52.2, 5581, 300 }, + [23] = { 51.3, 52, 5581, 300 }, + [24] = { 39.2, 52, 5581, 300 }, + [25] = { 35.6, 51.7, 5581, 300 }, + [26] = { 54.3, 51.5, 5581, 300 }, + [27] = { 57.8, 51.4, 5581, 300 }, + [28] = { 45.1, 50.8, 5581, 300 }, + [29] = { 56.3, 50.7, 5581, 300 }, + [30] = { 43, 50.7, 5581, 300 }, + [31] = { 26.5, 50.5, 5581, 300 }, + [32] = { 53.5, 50.1, 5581, 300 }, + [33] = { 40.2, 50, 5581, 300 }, + [34] = { 41.5, 49.6, 5581, 300 }, + [35] = { 24.6, 49.6, 5581, 300 }, + [36] = { 49.7, 49.5, 5581, 300 }, + [37] = { 46, 49.4, 5581, 300 }, + [38] = { 45.6, 49.4, 5581, 300 }, + [39] = { 24.4, 46.5, 5581, 300 }, + [40] = { 23.2, 45.9, 5581, 300 }, + [41] = { 22, 44.2, 5581, 300 }, + }, + }, + [2020176] = { + ["coords"] = { + [1] = { 23.2, 94, 1, 300 }, + [2] = { 22.7, 93.4, 1, 300 }, + [3] = { 20.8, 92.6, 1, 300 }, + [4] = { 22, 92.1, 1, 300 }, + [5] = { 20.1, 91.8, 1, 300 }, + [6] = { 21.4, 91.8, 1, 300 }, + [7] = { 48.8, 33.9, 5581, 300 }, + [8] = { 46.7, 33.1, 5581, 300 }, + [9] = { 51.5, 32.5, 5581, 300 }, + [10] = { 44.9, 31.1, 5581, 300 }, + [11] = { 44.1, 31, 5581, 300 }, + [12] = { 47.9, 31, 5581, 300 }, + [13] = { 44.4, 30.2, 5581, 300 }, + [14] = { 45.9, 30.2, 5581, 300 }, + [15] = { 49.3, 29.5, 5581, 300 }, + [16] = { 46.4, 29.2, 5581, 300 }, + [17] = { 48.6, 28.5, 5581, 300 }, + [18] = { 44.3, 27.8, 5581, 300 }, + [19] = { 45.7, 27.4, 5581, 300 }, + [20] = { 47.5, 26.7, 5581, 300 }, + [21] = { 44.6, 26.2, 5581, 300 }, + [22] = { 46.6, 26.2, 5581, 300 }, + }, + }, + [2020177] = { + ["coords"] = { + [1] = { 49.2, 47.2, 5561, 300 }, + }, + }, + [2020178] = { + ["coords"] = { + [1] = { 40.7, 76.3, 5561, 300 }, + }, + }, + [2020179] = { + ["coords"] = { + [1] = { 46.1, 63.6, 5561, 0 }, + }, + }, + [2020180] = { + ["coords"] = { + [1] = { 54.6, 60.2, 5561, 0 }, + }, + }, + [2020181] = { + ["coords"] = { + [1] = { 37.1, 21.7, 5561, 300 }, + [2] = { 37.1, 21.3, 5561, 300 }, + [3] = { 37.3, 20.6, 5561, 300 }, + [4] = { 37.2, 20.5, 5561, 300 }, + [5] = { 37.2, 20.4, 5561, 300 }, + [6] = { 41.6, 19.6, 5561, 300 }, + [7] = { 36.7, 19.4, 5561, 300 }, + [8] = { 37, 19.3, 5561, 300 }, + [9] = { 37, 19.2, 5561, 300 }, + [10] = { 36.7, 19.2, 5561, 300 }, + [11] = { 36.9, 19.2, 5561, 300 }, + [12] = { 40.7, 19.1, 5561, 300 }, + [13] = { 37, 19.1, 5561, 300 }, + [14] = { 37, 19, 5561, 300 }, + [15] = { 40.5, 17.9, 5561, 300 }, + }, + }, + [2020182] = { + ["coords"] = { + [1] = { 45.4, 35.7, 5561, 0 }, + }, + }, + [2020183] = { + ["coords"] = { + [1] = { 38.1, 62, 5561, 300 }, + }, + }, + [2020184] = { + ["coords"] = { + [1] = { 49.4, 55.9, 5581, 300 }, + }, + }, + [2020185] = { + ["coords"] = { + [1] = { 37.8, 57.5, 5581, 300 }, + }, + }, + [2020186] = { + ["coords"] = { + [1] = { 32.4, 61, 5581, 300 }, + }, + }, + [2020187] = { + ["coords"] = { + [1] = { 53.9, 63.8, 3457, 300 }, + }, + }, + [2020188] = { + ["coords"] = { + [1] = { 78.1, 16.5, 1519, 300 }, + [2] = { 58.4, 86.2, 5581, 300 }, + }, + }, + [2020189] = { + ["coords"] = { + [1] = { 92.3, 51.6, 11, 10 }, + [2] = { 39.6, 18.6, 5602, 10 }, + }, + }, + [2020190] = { + ["coords"] = { + [1] = { 62.9, 47.3, 5602, 300 }, + [2] = { 63.5, 47.2, 5602, 300 }, + [3] = { 63.4, 46.8, 5602, 300 }, + [4] = { 62.1, 46.2, 5602, 300 }, + [5] = { 60.5, 45.9, 5602, 300 }, + [6] = { 61.3, 45.8, 5602, 300 }, + [7] = { 62.6, 45.7, 5602, 300 }, + [8] = { 61.3, 45.1, 5602, 300 }, + [9] = { 61.9, 44.2, 5602, 300 }, + [10] = { 62.8, 42.9, 5602, 300 }, + [11] = { 61.3, 42, 5602, 300 }, + [12] = { 59.7, 42, 5602, 300 }, + [13] = { 63.9, 41.9, 5602, 300 }, + [14] = { 63.9, 41.7, 5602, 300 }, + [15] = { 60.2, 41, 5602, 300 }, + [16] = { 60, 40.8, 5602, 300 }, + [17] = { 63.6, 40.5, 5602, 300 }, + [18] = { 60.9, 40.3, 5602, 300 }, + [19] = { 61.7, 40.1, 5602, 300 }, + [20] = { 62.3, 40, 5602, 300 }, + [21] = { 62.8, 39.9, 5602, 300 }, + [22] = { 63.8, 39.4, 5602, 300 }, + [23] = { 62, 39.2, 5602, 300 }, + }, + }, + [2020191] = { + ["coords"] = { + [1] = { 48.4, 51.2, 5602, 300 }, + [2] = { 48.5, 50.6, 5602, 300 }, + [3] = { 45.8, 47.1, 5602, 300 }, + [4] = { 46, 47, 5602, 300 }, + [5] = { 48.4, 21.4, 5602, 300 }, + [6] = { 48.2, 21.1, 5602, 300 }, + [7] = { 43.8, 20.8, 5602, 300 }, + [8] = { 49.5, 20.3, 5602, 300 }, + [9] = { 43.6, 20.2, 5602, 300 }, + [10] = { 51.2, 19.2, 5602, 300 }, + [11] = { 51, 18.9, 5602, 300 }, + [12] = { 49.7, 18.4, 5602, 300 }, + [13] = { 43.6, 18.3, 5602, 300 }, + [14] = { 43.2, 18, 5602, 300 }, + [15] = { 49.7, 17.9, 5602, 300 }, + }, + }, + [2020192] = { + ["coords"] = { + [1] = { 62.2, 72.4, 5602, 300 }, + [2] = { 51.2, 70, 5602, 300 }, + [3] = { 62.9, 67.6, 5602, 300 }, + [4] = { 48.4, 66.3, 5602, 300 }, + [5] = { 52.2, 62.7, 5602, 300 }, + [6] = { 56.2, 61, 5602, 300 }, + [7] = { 49.2, 60.6, 5602, 300 }, + [8] = { 47, 60.3, 5602, 300 }, + [9] = { 62.7, 60.2, 5602, 300 }, + [10] = { 59.4, 58.6, 5602, 300 }, + [11] = { 46.8, 56.9, 5602, 300 }, + [12] = { 58.2, 55.5, 5602, 300 }, + [13] = { 63.7, 53.7, 5602, 300 }, + [14] = { 54.7, 52.7, 5602, 300 }, + [15] = { 46.3, 52.3, 5602, 300 }, + [16] = { 51.4, 51.5, 5602, 300 }, + [17] = { 49.1, 50.8, 5602, 300 }, + [18] = { 48.8, 49.8, 5602, 300 }, + [19] = { 61.3, 48.2, 5602, 300 }, + [20] = { 64.2, 47, 5602, 300 }, + [21] = { 48, 45, 5602, 300 }, + [22] = { 58.8, 44.6, 5602, 300 }, + [23] = { 53.9, 43.7, 5602, 300 }, + [24] = { 46.8, 41.9, 5602, 300 }, + [25] = { 56, 41.2, 5602, 300 }, + [26] = { 51.8, 41.1, 5602, 300 }, + [27] = { 45.1, 40.9, 5602, 300 }, + [28] = { 58.8, 40.5, 5602, 300 }, + [29] = { 61.3, 40.4, 5602, 300 }, + [30] = { 54.9, 40, 5602, 300 }, + [31] = { 47.8, 39.1, 5602, 300 }, + [32] = { 57.2, 38.2, 5602, 300 }, + [33] = { 55.1, 38.1, 5602, 300 }, + [34] = { 43.2, 37.5, 5602, 300 }, + [35] = { 54.9, 36.1, 5602, 300 }, + [36] = { 59.1, 35.6, 5602, 300 }, + [37] = { 55, 35.1, 5602, 300 }, + [38] = { 61, 34.8, 5602, 300 }, + [39] = { 62, 34, 5602, 300 }, + [40] = { 52.7, 33.1, 5602, 300 }, + [41] = { 57, 32.2, 5602, 300 }, + [42] = { 44, 31.9, 5602, 300 }, + [43] = { 49.6, 31.6, 5602, 300 }, + [44] = { 53.5, 30.7, 5602, 300 }, + [45] = { 51.7, 30.7, 5602, 300 }, + [46] = { 58, 30.6, 5602, 300 }, + [47] = { 50.3, 29.7, 5602, 300 }, + [48] = { 55, 29.3, 5602, 300 }, + [49] = { 61.1, 28.2, 5602, 300 }, + [50] = { 46.7, 28, 5602, 300 }, + [51] = { 48.7, 28, 5602, 300 }, + [52] = { 51.4, 27.6, 5602, 300 }, + [53] = { 43.8, 27.5, 5602, 300 }, + [54] = { 49.4, 24.8, 5602, 300 }, + [55] = { 52.7, 23.5, 5602, 300 }, + [56] = { 56.7, 23.2, 5602, 300 }, + [57] = { 61.4, 22.9, 5602, 300 }, + [58] = { 52.4, 22.9, 5602, 300 }, + [59] = { 56.5, 18.2, 5602, 300 }, + [60] = { 62.2, 17.2, 5602, 300 }, + [61] = { 58.7, 17, 5602, 300 }, + [62] = { 59, 10.7, 5602, 300 }, + }, + }, + [2020193] = { + ["coords"] = { + [1] = { 51.9, 83.6, 5602, 0 }, + }, + }, + [2020194] = { + ["coords"] = { + [1] = { 23.5, 50.6, 3457, 300 }, + }, + }, + [2020195] = { + ["coords"] = { + [1] = { 36.2, 40.1, 3457, 300 }, + }, + }, + [2020196] = { + ["coords"] = { + [1] = { 65.9, 35.4, 5581, 0 }, + }, + }, + [2020197] = { + ["coords"] = { + [1] = { 40.7, 64.7, 5601, 10 }, + }, + }, + [2020198] = { + ["coords"] = { + [1] = { 34.1, 93.2, 5601, 300 }, + }, + }, + [2020199] = { + ["coords"] = { + [1] = { 50.3, 47.1, 5581, 300 }, + }, + }, + [2020200] = { + ["coords"] = { + [1] = { 50.6, 47.2, 5581, 300 }, + }, + }, + [2020201] = { + ["coords"] = { + [1] = { 50.8, 47.8, 5581, 300 }, + }, + }, + [2020202] = { + ["coords"] = { + [1] = { 50.8, 48, 5581, 300 }, + }, + }, + [2020203] = { + ["coords"] = { + [1] = { 50.5, 47.1, 5581, 300 }, + }, + }, + [2020204] = { + ["coords"] = { + [1] = { 53.4, 68.5, 5602, 300 }, + [2] = { 46.5, 51.7, 5602, 300 }, + [3] = { 44, 40.5, 5602, 300 }, + [4] = { 47.6, 40.3, 5602, 300 }, + [5] = { 46, 34.3, 5602, 300 }, + }, + }, + [2020205] = { + ["coords"] = { + [1] = { 53.4, 68.5, 5602, 300 }, + [2] = { 46.5, 51.6, 5602, 300 }, + [3] = { 44, 40.5, 5602, 300 }, + [4] = { 47.6, 40.3, 5602, 300 }, + [5] = { 46, 34.3, 5602, 300 }, + [6] = { 45.2, 28, 5602, 300 }, + }, + }, + [2020206] = { + ["coords"] = { + [1] = { 44, 40.5, 5602, 300 }, + [2] = { 47.6, 40.3, 5602, 300 }, + [3] = { 46, 34.3, 5602, 300 }, + }, + }, + [2020207] = { + ["coords"] = { + [1] = { 44, 40.5, 5602, 300 }, + [2] = { 46, 34.3, 5602, 300 }, + }, + }, + [2020208] = { + ["coords"] = { + [1] = { 47.6, 40.3, 5602, 300 }, + }, + }, + [2020209] = { + ["coords"] = { + [1] = { 46.5, 51.7, 5602, 300 }, + }, + }, + [2020210] = { + ["coords"] = { + [1] = { 53.4, 68.5, 5602, 300 }, + [2] = { 46.5, 51.7, 5602, 300 }, + }, + }, + [2020211] = { + ["coords"] = { + [1] = { 53.5, 68.5, 5602, 300 }, + [2] = { 46.5, 51.7, 5602, 300 }, + }, + }, + [2020212] = { + ["coords"] = { + [1] = { 45.2, 28, 5602, 300 }, + }, + }, + [2020213] = { + ["coords"] = { + [1] = { 57.3, 38.6, 5602, 300 }, + }, + }, + [2020214] = { + ["coords"] = { + [1] = { 43.8, 46.3, 5601, 300 }, + }, + }, + [2020215] = { + ["coords"] = { + [1] = { 46, 48.6, 5601, 300 }, + }, + }, + [2020216] = { + ["coords"] = { + [1] = { 11.1, 37.2, 5601, 300 }, + }, + }, + [2020217] = { + ["coords"] = { + [1] = { 29.3, 84.4, 440, 120 }, + }, + }, + [2020218] = { + ["coords"] = { + [1] = { 62.8, 80.4, 490, 300 }, + [2] = { 63.2, 77.4, 490, 300 }, + [3] = { 67.3, 73.1, 490, 300 }, + [4] = { 61, 72.2, 490, 300 }, + [5] = { 66.6, 66.8, 490, 300 }, + [6] = { 62.3, 66, 490, 300 }, + [7] = { 63.9, 62.9, 490, 300 }, + [8] = { 67, 62.5, 490, 300 }, + [9] = { 67.3, 60.7, 490, 300 }, + [10] = { 71.5, 60.1, 490, 300 }, + [11] = { 61.3, 57.9, 490, 300 }, + [12] = { 71.8, 53.4, 490, 300 }, + [13] = { 69.2, 50.3, 490, 300 }, + [14] = { 64.5, 48.7, 490, 300 }, + }, + }, + [2020219] = { + ["coords"] = { + [1] = { 57.8, 49.5, 5601, 604800 }, + }, + }, + [2020220] = { + ["coords"] = { + [1] = { 34.3, 92.8, 5601, 0 }, + }, + }, + [2020221] = { + ["coords"] = { + [1] = { 39.9, 69.8, 5561, 10 }, + }, + }, + [2020222] = { + ["coords"] = { + [1] = { 34.3, 64.3, 5561, 10 }, + }, + }, + [2020223] = { + ["coords"] = { + [1] = { 46.2, 80.6, 5087, 300 }, + }, + }, + [2020224] = { + ["coords"] = { + [1] = { 34.1, 19.3, 5561, 0 }, + }, + }, + [2020225] = { + ["coords"] = { + [1] = { 26.7, 79.1, 440, 300 }, + }, + }, + [2020226] = { + ["coords"] = { + [1] = { 26.1, 76.4, 440, 0 }, + }, + }, + [2020227] = { + ["coords"] = { + [1] = { 25, 77.3, 440, 300 }, + }, + }, + [2020228] = { + ["coords"] = { + [1] = { 24.1, 76.2, 440, 300 }, + }, + }, + [2020229] = { + ["coords"] = { + [1] = { 29.5, 81.1, 33, 300 }, + }, + }, + [2020230] = { + ["coords"] = { + [1] = { 54.5, 64.7, 5561, 300 }, + }, + }, + [2020231] = { + ["coords"] = { + [1] = { 48.2, 69.1, 406, 300 }, + }, + }, + [2020232] = { + ["coords"] = { + [1] = { 59.7, 48.6, 5601, 0 }, + }, + }, + [2020233] = { + ["coords"] = { + [1] = { 56.1, 84.3, 5561, 0 }, + [2] = { 23.4, 71.3, 5628, 0 }, + [3] = { 37, 47.7, 5628, 0 }, + }, + }, + [2020234] = { + ["coords"] = { + [1] = { 54.8, 64.9, 719, 300 }, + [2] = { 55.1, 64.8, 719, 300 }, + [3] = { 54.5, 64.2, 719, 300 }, + [4] = { 55, 64, 719, 300 }, + }, + }, + [2020235] = { + ["coords"] = { + [1] = { 38.7, 61.2, 5561, 10 }, + }, + }, + [2020236] = { + ["coords"] = { + [1] = { 27.2, 29.7, 5628, 0 }, + [2] = { 31, 28.6, 5628, 0 }, + [3] = { 26.1, 26.3, 5628, 0 }, + [4] = { 29, 16.3, 5628, 0 }, + }, + }, + [2020237] = { + ["coords"] = { + [1] = { 91.9, 70.2, 11, 2 }, + [2] = { 39.3, 32.9, 5602, 2 }, + }, + }, + [2020238] = { + ["coords"] = { + [1] = { 62, 46.1, 5602, 300 }, + [2] = { 60.5, 46.1, 5602, 300 }, + [3] = { 61.8, 45.6, 5602, 300 }, + [4] = { 62.8, 45.5, 5602, 300 }, + [5] = { 61.8, 45.4, 5602, 300 }, + [6] = { 62.2, 45.4, 5602, 300 }, + [7] = { 61.3, 45.4, 5602, 300 }, + [8] = { 61.8, 44.8, 5602, 300 }, + [9] = { 61.4, 44.6, 5602, 300 }, + [10] = { 62.2, 44.5, 5602, 300 }, + [11] = { 62, 44.2, 5602, 300 }, + [12] = { 62, 44.1, 5602, 300 }, + [13] = { 61.1, 43.3, 5602, 300 }, + [14] = { 62.5, 42.8, 5602, 300 }, + [15] = { 63.3, 42.7, 5602, 300 }, + [16] = { 60.6, 42.5, 5602, 300 }, + [17] = { 61, 42.4, 5602, 300 }, + [18] = { 60.7, 42.1, 5602, 300 }, + }, + }, + [2020239] = { + ["coords"] = { + [1] = { 60.9, 42.3, 5602, 300 }, + }, + }, + [2020240] = { + ["coords"] = { + [1] = { 78.2, 16.1, 1519, 0 }, + [2] = { 58.4, 86, 5581, 0 }, + }, + }, + [2020241] = { + ["coords"] = { + [1] = { 39, 91.2, 12, 300 }, + }, + }, + [2020242] = { + ["coords"] = { + [1] = { 36.7, 18.7, 5561, 300 }, + }, + }, + [2020243] = { + ["coords"] = { + [1] = { 46.6, 41.4, 5602, 2 }, + }, + }, + [2020244] = { + ["coords"] = { + [1] = { 49.4, 21.7, 5602, 300 }, + [2] = { 49.8, 21.7, 5602, 300 }, + [3] = { 49.8, 21.5, 5602, 300 }, + [4] = { 49.6, 21.3, 5602, 300 }, + [5] = { 49.7, 21.3, 5602, 300 }, + [6] = { 50, 21.2, 5602, 300 }, + [7] = { 49.6, 21.1, 5602, 300 }, + [8] = { 50, 20.9, 5602, 300 }, + [9] = { 48.8, 20.4, 5602, 300 }, + [10] = { 50, 18.8, 5602, 300 }, + [11] = { 50.1, 18.7, 5602, 300 }, + [12] = { 50, 18.6, 5602, 300 }, + [13] = { 49.8, 18.6, 5602, 300 }, + [14] = { 52.2, 18.4, 5602, 300 }, + [15] = { 52.2, 17.7, 5602, 300 }, + [16] = { 52.2, 17.5, 5602, 300 }, + }, + }, + [2020245] = { + ["coords"] = { + [1] = { 61.6, 17.9, 5602, 300 }, + [2] = { 61.2, 17.7, 5602, 300 }, + [3] = { 61.3, 17.2, 5602, 300 }, + [4] = { 60.9, 17.1, 5602, 300 }, + [5] = { 60, 16.2, 5602, 300 }, + [6] = { 60.1, 15.9, 5602, 300 }, + [7] = { 60, 15.7, 5602, 300 }, + [8] = { 59.8, 15.3, 5602, 300 }, + [9] = { 59.4, 14.5, 5602, 300 }, + [10] = { 59.7, 13.7, 5602, 300 }, + [11] = { 59.9, 13.5, 5602, 300 }, + [12] = { 59.8, 13.3, 5602, 300 }, + [13] = { 60.4, 12.9, 5602, 300 }, + [14] = { 60.5, 12.6, 5602, 300 }, + }, + }, + [2020246] = { + ["coords"] = { + [1] = { 59.7, 13.1, 5602, 300 }, + }, + }, + [2020247] = { + ["coords"] = { + [1] = { 93.4, 52.6, 11, 300 }, + [2] = { 93, 52.4, 11, 300 }, + [3] = { 92.3, 52.3, 11, 300 }, + [4] = { 94.9, 51.9, 11, 300 }, + [5] = { 95.1, 51.7, 11, 300 }, + [6] = { 92.3, 51.4, 11, 10 }, + [7] = { 95.3, 51.3, 11, 300 }, + [8] = { 92.7, 51.2, 11, 300 }, + [9] = { 92.4, 50.5, 11, 300 }, + [10] = { 93.6, 50.5, 11, 300 }, + [11] = { 94.5, 50.4, 11, 300 }, + [12] = { 93.9, 50.4, 11, 300 }, + [13] = { 94, 50.2, 11, 300 }, + [14] = { 92.7, 49.9, 11, 300 }, + [15] = { 93.2, 49, 11, 300 }, + [16] = { 40.5, 19.3, 5602, 300 }, + [17] = { 40.1, 19.2, 5602, 300 }, + [18] = { 39.6, 19.1, 5602, 300 }, + [19] = { 41.6, 18.8, 5602, 300 }, + [20] = { 41.8, 18.6, 5602, 300 }, + [21] = { 39.6, 18.5, 5602, 10 }, + [22] = { 41.9, 18.3, 5602, 300 }, + [23] = { 40, 18.3, 5602, 300 }, + [24] = { 39.7, 17.8, 5602, 300 }, + [25] = { 40.6, 17.7, 5602, 300 }, + [26] = { 41.3, 17.7, 5602, 300 }, + [27] = { 40.9, 17.7, 5602, 300 }, + [28] = { 40.9, 17.5, 5602, 300 }, + [29] = { 39.9, 17.3, 5602, 300 }, + [30] = { 40.3, 16.6, 5602, 300 }, + }, + }, + [2020248] = { + ["coords"] = { + [1] = { 93.7, 67.3, 11, 300 }, + [2] = { 61.1, 73.4, 5602, 300 }, + [3] = { 55.6, 71, 5602, 300 }, + [4] = { 60.2, 67.5, 5602, 300 }, + [5] = { 59, 65.1, 5602, 300 }, + [6] = { 60.9, 64.5, 5602, 300 }, + [7] = { 53, 63.9, 5602, 300 }, + [8] = { 46.7, 51.6, 5602, 300 }, + [9] = { 47.8, 49, 5602, 300 }, + [10] = { 47.4, 48.1, 5602, 300 }, + [11] = { 45.5, 48, 5602, 300 }, + [12] = { 49.6, 47.6, 5602, 300 }, + [13] = { 60.1, 46, 5602, 300 }, + [14] = { 46.7, 44.5, 5602, 300 }, + [15] = { 60.9, 43.3, 5602, 300 }, + [16] = { 45.8, 42.8, 5602, 300 }, + [17] = { 62.8, 42.5, 5602, 300 }, + [18] = { 45.2, 42.4, 5602, 300 }, + [19] = { 46.4, 42.2, 5602, 300 }, + [20] = { 52, 42.1, 5602, 300 }, + [21] = { 47, 41.6, 5602, 300 }, + [22] = { 51.8, 41.5, 5602, 300 }, + [23] = { 51.6, 41.4, 5602, 300 }, + [24] = { 43.6, 41.2, 5602, 300 }, + [25] = { 47.7, 41.2, 5602, 300 }, + [26] = { 43.4, 40.9, 5602, 300 }, + [27] = { 46.2, 40.9, 5602, 300 }, + [28] = { 57.4, 40.8, 5602, 300 }, + [29] = { 43.7, 40.6, 5602, 300 }, + [30] = { 55.4, 40.2, 5602, 300 }, + [31] = { 56.1, 40, 5602, 300 }, + [32] = { 57.5, 38.9, 5602, 300 }, + [33] = { 57, 38.4, 5602, 300 }, + [34] = { 57.3, 37.9, 5602, 300 }, + [35] = { 45.9, 35.5, 5602, 300 }, + [36] = { 40.7, 30.7, 5602, 300 }, + [37] = { 44.3, 22.7, 5602, 300 }, + [38] = { 49.4, 21.6, 5602, 300 }, + [39] = { 49.4, 21.3, 5602, 300 }, + [40] = { 48.4, 21.2, 5602, 300 }, + [41] = { 43.9, 20.8, 5602, 300 }, + [42] = { 50, 20.7, 5602, 300 }, + [43] = { 49.8, 20, 5602, 300 }, + [44] = { 51, 19.9, 5602, 300 }, + [45] = { 44.3, 19.7, 5602, 300 }, + [46] = { 51.9, 19.6, 5602, 300 }, + [47] = { 51.7, 19.4, 5602, 300 }, + [48] = { 43.3, 18.7, 5602, 300 }, + [49] = { 51.8, 18.5, 5602, 300 }, + [50] = { 50.9, 18.3, 5602, 300 }, + [51] = { 45, 18.2, 5602, 300 }, + [52] = { 43, 18, 5602, 300 }, + [53] = { 51.7, 17.8, 5602, 300 }, + [54] = { 45.2, 17.7, 5602, 300 }, + [55] = { 52.3, 17.7, 5602, 300 }, + [56] = { 44.3, 17.7, 5602, 300 }, + [57] = { 44.4, 17.5, 5602, 300 }, + [58] = { 51.5, 17.1, 5602, 300 }, + [59] = { 44.5, 16.8, 5602, 300 }, + [60] = { 54.9, 14.9, 5602, 300 }, + [61] = { 53.6, 13.1, 5602, 300 }, + [62] = { 46.9, 12.5, 5602, 300 }, + [63] = { 50.7, 11.2, 5602, 300 }, + [64] = { 50, 10.7, 5602, 300 }, + [65] = { 51.5, 9, 5602, 300 }, + }, + }, + [2020249] = { + ["coords"] = { + [1] = { 20.4, 24.3, 5628, 300 }, + }, + }, + [2020250] = { + ["coords"] = { + [1] = { 46.2, 57.1, 5561, 300 }, + }, + }, + [2020251] = { + ["coords"] = { + [1] = { 41.9, 35.8, 5601, 300 }, + }, + }, + [2020252] = { + ["coords"] = { + [1] = { 66.9, 84.3, 11, 300 }, + [2] = { 20.1, 43.7, 5602, 300 }, + }, + }, + [2020253] = { + ["coords"] = { + [1] = { 55.6, 58.2, 5602, 300 }, + }, + }, + [2020254] = { + ["coords"] = { + [1] = { 28.4, 86.6, 440, 2 }, + }, + }, + [2050505] = { + ["coords"] = { + [1] = { 52.6, 61.2, 3457, 300 }, + [2] = { 35.2, 55.1, 3457, 0 }, + [3] = { 63.3, 49.2, 3457, 0 }, + [4] = { 54.7, 42.3, 3457, 300 }, + [5] = { 65.7, 29.2, 3457, 300 }, + [6] = { 56.7, 26.8, 3457, 300 }, + }, + }, + [3000100] = { + ["coords"] = { + [1] = { 49.4, 35.4, 14, 25 }, + }, + }, + [3000101] = { + ["coords"] = { + [1] = { 53.8, 2.9, 17, 300 }, + [2] = { 78.5, 84.8, 331, 300 }, + }, + }, + [3000102] = { + ["coords"] = { + [1] = { 72, 50.4, 1, 300 }, + }, + }, + [3000105] = { + ["coords"] = { + [1] = { 95.3, 25, 331, 300 }, + [2] = { 43.6, 16.2, 357, 300 }, + }, + }, + [3000200] = { + ["coords"] = {}, + }, + [3000202] = { + ["coords"] = {}, + }, + [3000203] = { + ["coords"] = { + [1] = { 77.5, 76.1, 38, 0 }, + [2] = { 38.3, 83.3, 5602, 0 }, + }, + }, + [3000204] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [3000205] = { + ["coords"] = { + [1] = { 58, 56.6, 440, 0 }, + [2] = { 58, 56.3, 440, 0 }, + [3] = { 39, 51.5, 1941, 0 }, + [4] = { 39.1, 49.7, 1941, 0 }, + }, + ["fac"] = "AH", + }, + [3000206] = { + ["coords"] = {}, + }, + [3000207] = { + ["coords"] = { + [1] = { 83.1, 59.4, 38, 25 }, + [2] = { 83.3, 59.4, 38, 25 }, + [3] = { 41.1, 74.7, 5602, 25 }, + [4] = { 41.2, 74.7, 5602, 25 }, + }, + }, + [3000208] = { + ["coords"] = { + [1] = { 58.7, 75, 38, 300 }, + [2] = { 83.7, 62.1, 38, 300 }, + [3] = { 31.5, 49.3, 47, 25 }, + [4] = { 6.6, 23.6, 139, 300 }, + [5] = { 53.2, 17.2, 139, 25 }, + [6] = { 42.1, 55, 876, 300 }, + [7] = { 36.8, 69.2, 1519, 300 }, + [8] = { 64.7, 45.9, 1519, 25 }, + [9] = { 38.3, 77, 2040, 300 }, + [10] = { 40.2, 70.9, 2040, 25 }, + [11] = { 26.8, 66.6, 2040, 25 }, + [12] = { 44.8, 64.2, 2040, 300 }, + [13] = { 53.8, 52.9, 2040, 300 }, + [14] = { 46.7, 85.4, 5225, 300 }, + [15] = { 56, 38.6, 5225, 300 }, + [16] = { 56.9, 35.8, 5225, 25 }, + [17] = { 50.5, 33.7, 5225, 25 }, + [18] = { 59.1, 32.6, 5225, 300 }, + [19] = { 63.4, 27.2, 5225, 300 }, + [20] = { 28.6, 82.7, 5602, 300 }, + [21] = { 41.4, 76, 5602, 300 }, + }, + ["fac"] = "AH", + }, + [3000209] = { + ["coords"] = {}, + }, + [3000220] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [3000221] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [3000222] = { + ["coords"] = { + [1] = { 38.9, 98.4, 2040, 25 }, + [2] = { 40.4, 95.6, 2040, 25 }, + [3] = { 37.8, 92, 2040, 25 }, + [4] = { 40, 88.2, 2040, 25 }, + [5] = { 35.7, 86.8, 2040, 25 }, + [6] = { 40.1, 86.6, 2040, 25 }, + [7] = { 35, 83.4, 2040, 25 }, + [8] = { 41.3, 82.9, 2040, 25 }, + [9] = { 39.7, 82.2, 2040, 25 }, + [10] = { 41.6, 81.9, 2040, 25 }, + [11] = { 35.6, 81.1, 2040, 25 }, + [12] = { 43.4, 80.9, 2040, 25 }, + [13] = { 41.9, 80.3, 2040, 25 }, + [14] = { 38.8, 79.7, 2040, 25 }, + [15] = { 44, 79.1, 2040, 25 }, + [16] = { 41.4, 76.2, 2040, 25 }, + [17] = { 56.7, 50.1, 5225, 25 }, + [18] = { 56.3, 48.8, 5225, 25 }, + [19] = { 57, 47.5, 5225, 25 }, + [20] = { 55.8, 45.7, 5225, 25 }, + [21] = { 56.8, 43.9, 5225, 25 }, + [22] = { 54.8, 43.3, 5225, 25 }, + [23] = { 56.9, 43.2, 5225, 25 }, + [24] = { 54.4, 41.7, 5225, 25 }, + [25] = { 57.4, 41.4, 5225, 25 }, + [26] = { 56.7, 41.1, 5225, 25 }, + [27] = { 57.6, 41, 5225, 25 }, + [28] = { 54.7, 40.6, 5225, 25 }, + [29] = { 58.4, 40.5, 5225, 25 }, + [30] = { 57.7, 40.2, 5225, 25 }, + [31] = { 56.3, 39.9, 5225, 25 }, + [32] = { 58.7, 39.7, 5225, 25 }, + [33] = { 57.5, 38.3, 5225, 25 }, + }, + }, + [3000223] = { + ["coords"] = { + [1] = { 60.9, 73.7, 357, 25 }, + [2] = { 60.9, 72.9, 357, 25 }, + [3] = { 58.9, 72.7, 357, 25 }, + [4] = { 61.6, 72.5, 357, 25 }, + [5] = { 57.7, 72.4, 357, 25 }, + [6] = { 58.4, 72.3, 357, 25 }, + [7] = { 58.2, 72.2, 357, 25 }, + [8] = { 59.4, 72, 357, 25 }, + [9] = { 61, 71.9, 357, 25 }, + [10] = { 57.6, 71.8, 357, 25 }, + [11] = { 58, 71.7, 357, 25 }, + [12] = { 58.9, 71.7, 357, 25 }, + [13] = { 58.6, 71, 357, 25 }, + [14] = { 58.4, 71, 357, 25 }, + [15] = { 58.8, 70.7, 357, 25 }, + [16] = { 57.1, 69.2, 357, 25 }, + [17] = { 61.1, 69, 357, 25 }, + [18] = { 57.6, 68.9, 357, 25 }, + [19] = { 60.3, 68.8, 357, 25 }, + [20] = { 58.4, 68.6, 357, 25 }, + [21] = { 59.6, 68.2, 357, 25 }, + [22] = { 59.4, 67.7, 357, 25 }, + [23] = { 60.8, 67.3, 357, 25 }, + [24] = { 59, 66.6, 357, 25 }, + [25] = { 58.1, 66.1, 357, 25 }, + [26] = { 59.8, 65.8, 357, 25 }, + [27] = { 60.1, 65.3, 357, 25 }, + [28] = { 58.2, 64.5, 357, 25 }, + [29] = { 59, 63.9, 357, 25 }, + [30] = { 60, 63, 357, 25 }, + [31] = { 60.5, 62.7, 357, 25 }, + [32] = { 60.1, 62.7, 357, 25 }, + [33] = { 60.4, 62, 357, 25 }, + [34] = { 60.7, 57.2, 357, 25 }, + [35] = { 61.2, 56.2, 357, 25 }, + [36] = { 61, 55.5, 357, 25 }, + }, + }, + [3000224] = { + ["coords"] = { + [1] = { 37.5, 70.1, 2040, 25 }, + [2] = { 55.6, 35.4, 5225, 25 }, + }, + ["fac"] = "AH", + }, + [3000225] = { + ["coords"] = { + [1] = { 41.5, 69, 2040, 0 }, + [2] = { 57.5, 34.9, 5225, 0 }, + }, + ["fac"] = "AH", + }, + [3000227] = { + ["coords"] = { + [1] = { 98.1, 61.5, 14, 300 }, + [2] = { 99.5, 60.6, 14, 300 }, + [3] = { 99.3, 60.1, 14, 300 }, + [4] = { 99.8, 60.1, 14, 300 }, + [5] = { 98.6, 59.9, 14, 300 }, + [6] = { 99.6, 59.6, 14, 300 }, + [7] = { 98, 59.2, 14, 300 }, + [8] = { 97.9, 59.1, 14, 300 }, + [9] = { 97.3, 58.9, 14, 300 }, + [10] = { 99.2, 58.7, 14, 300 }, + [11] = { 97.8, 58.4, 14, 300 }, + [12] = { 99.4, 58.1, 14, 300 }, + [13] = { 99.6, 56.8, 14, 300 }, + [14] = { 98.3, 56.5, 14, 300 }, + [15] = { 99.8, 56.4, 14, 300 }, + [16] = { 98.8, 56.4, 14, 300 }, + [17] = { 99.1, 56, 14, 300 }, + [18] = { 99.8, 56, 14, 300 }, + [19] = { 99.1, 55.9, 14, 300 }, + [20] = { 99.8, 55.2, 14, 300 }, + [21] = { 98.9, 53.9, 14, 300 }, + [22] = { 42.5, 38.1, 406, 160 }, + [23] = { 35.3, 69.7, 5536, 300 }, + [24] = { 38.3, 67.7, 5536, 300 }, + [25] = { 38, 66.6, 5536, 300 }, + [26] = { 39, 66.6, 5536, 300 }, + [27] = { 36.5, 66.2, 5536, 300 }, + [28] = { 38.5, 65.6, 5536, 300 }, + [29] = { 35.2, 64.7, 5536, 300 }, + [30] = { 35.1, 64.4, 5536, 300 }, + [31] = { 33.6, 64.1, 5536, 300 }, + [32] = { 37.9, 63.7, 5536, 300 }, + [33] = { 34.7, 63, 5536, 300 }, + [34] = { 38.2, 62.4, 5536, 300 }, + [35] = { 41.4, 61.7, 5536, 300 }, + [36] = { 39.6, 60.3, 5536, 300 }, + [37] = { 38.6, 59.6, 5536, 300 }, + [38] = { 35.8, 59, 5536, 300 }, + [39] = { 39, 58.9, 5536, 300 }, + [40] = { 36.8, 58.7, 5536, 300 }, + [41] = { 37.5, 57.9, 5536, 300 }, + [42] = { 39.1, 57.8, 5536, 300 }, + [43] = { 37.5, 57.8, 5536, 300 }, + [44] = { 37.6, 57.8, 5536, 300 }, + [45] = { 43.6, 57.6, 5536, 300 }, + [46] = { 40.1, 56.3, 5536, 300 }, + [47] = { 39.1, 56.2, 5536, 300 }, + [48] = { 40.1, 56.2, 5536, 300 }, + [49] = { 41.7, 56, 5536, 300 }, + [50] = { 42.7, 54.2, 5536, 300 }, + [51] = { 37, 53.5, 5536, 300 }, + [52] = { 41, 53.4, 5536, 300 }, + }, + }, + [3000228] = { + ["coords"] = { + [1] = { 98.5, 60.9, 14, 300 }, + [2] = { 99.2, 59.7, 14, 300 }, + [3] = { 98.1, 59.5, 14, 300 }, + [4] = { 99.6, 58.4, 14, 300 }, + [5] = { 99.3, 56.8, 14, 300 }, + [6] = { 99.1, 56.3, 14, 300 }, + [7] = { 99.8, 56.1, 14, 300 }, + [8] = { 98.7, 55.9, 14, 300 }, + [9] = { 43.5, 39.6, 406, 160 }, + [10] = { 42.8, 39, 406, 160 }, + [11] = { 36.2, 68.3, 5536, 300 }, + [12] = { 37.8, 65.9, 5536, 300 }, + [13] = { 35.3, 65.4, 5536, 300 }, + [14] = { 38.6, 63, 5536, 300 }, + [15] = { 40.9, 59.6, 5536, 300 }, + [16] = { 38, 59.6, 5536, 300 }, + [17] = { 37.5, 58.6, 5536, 300 }, + [18] = { 39, 58.1, 5536, 300 }, + [19] = { 36.6, 57.8, 5536, 300 }, + [20] = { 41, 55.1, 5536, 300 }, + [21] = { 39.9, 54.1, 5536, 300 }, + }, + }, + [3000229] = { + ["coords"] = { + [1] = { 99.3, 61.1, 14, 300 }, + [2] = { 97.2, 60.5, 14, 300 }, + [3] = { 97.9, 59.1, 14, 300 }, + [4] = { 98, 58, 14, 300 }, + [5] = { 99, 57.2, 14, 300 }, + [6] = { 99.4, 56.3, 14, 300 }, + [7] = { 38.1, 68.8, 5536, 300 }, + [8] = { 33.6, 67.5, 5536, 300 }, + [9] = { 35, 64.6, 5536, 300 }, + [10] = { 35.1, 62.2, 5536, 300 }, + [11] = { 40.4, 62, 5536, 300 }, + [12] = { 37.3, 60.4, 5536, 300 }, + [13] = { 39.5, 59, 5536, 300 }, + [14] = { 38.3, 58.5, 5536, 300 }, + [15] = { 40, 56, 5536, 300 }, + [16] = { 39.6, 54.1, 5536, 300 }, + }, + }, + [3000235] = { + ["coords"] = { + [1] = { 62.7, 49.7, 17, 25 }, + [2] = { 62.7, 49.6, 17, 25 }, + [3] = { 63.6, 49.5, 17, 25 }, + [4] = { 63.7, 49.3, 17, 25 }, + [5] = { 63.6, 49.3, 17, 25 }, + [6] = { 64.4, 47.2, 17, 25 }, + [7] = { 64.3, 47.1, 17, 25 }, + [8] = { 63.5, 46.2, 17, 25 }, + [9] = { 64.5, 44.2, 17, 25 }, + [10] = { 64.4, 44.2, 17, 25 }, + [11] = { 64.5, 44, 17, 25 }, + }, + }, + [3000236] = { + ["coords"] = { + [1] = { 67.7, 26.4, 1637, 25 }, + }, + }, + [3000238] = { + ["coords"] = { + [1] = { 95.5, 74.9, 12, 90 }, + [2] = { 27, 81.6, 44, 90 }, + [3] = { 34.2, 79.5, 44, 90 }, + [4] = { 11.4, 77.7, 44, 90 }, + [5] = { 28.1, 76, 44, 90 }, + [6] = { 9.6, 75.9, 44, 90 }, + [7] = { 17.5, 75.6, 44, 90 }, + [8] = { 20.5, 75.4, 44, 90 }, + [9] = { 16.2, 75.3, 44, 90 }, + [10] = { 25.4, 75, 44, 90 }, + [11] = { 27.7, 74.6, 44, 90 }, + [12] = { 14.4, 74.4, 44, 90 }, + [13] = { 11.4, 73.3, 44, 90 }, + [14] = { 33.9, 73.2, 44, 90 }, + [15] = { 39.9, 72.9, 44, 90 }, + [16] = { 21.2, 72, 44, 90 }, + [17] = { 19.1, 71.8, 44, 90 }, + [18] = { 31.1, 71.2, 44, 90 }, + [19] = { 28, 71.1, 44, 90 }, + [20] = { 16.2, 70.3, 44, 90 }, + [21] = { 35.5, 70, 44, 90 }, + [22] = { 25, 69.7, 44, 90 }, + [23] = { 22.4, 67.9, 44, 90 }, + [24] = { 19, 67.5, 44, 90 }, + [25] = { 13.7, 67.1, 44, 90 }, + [26] = { 28.4, 66.8, 44, 90 }, + [27] = { 17.4, 66.2, 44, 90 }, + [28] = { 31.8, 64.6, 44, 90 }, + [29] = { 34.3, 64.1, 44, 90 }, + [30] = { 14.3, 64.1, 44, 90 }, + [31] = { 35.4, 64, 44, 90 }, + [32] = { 23.7, 63.8, 44, 90 }, + [33] = { 27.9, 62.8, 44, 90 }, + [34] = { 19.1, 62.2, 44, 90 }, + [35] = { 15.5, 61, 44, 90 }, + [36] = { 20.4, 57.8, 44, 90 }, + [37] = { 17.4, 54, 44, 90 }, + [38] = { 21, 48.2, 44, 90 }, + [39] = { 37, 44.7, 44, 90 }, + [40] = { 25.9, 44.2, 44, 90 }, + [41] = { 43.4, 38.9, 44, 90 }, + [42] = { 39.1, 36.4, 44, 90 }, + }, + }, + [3000240] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [3000241] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [3000242] = { + ["coords"] = { + [1] = { 26.5, 20.6, 406, 25 }, + [2] = { 27.6, 19.8, 406, 300 }, + [3] = { 26, 19, 406, 300 }, + [4] = { 25.7, 18.8, 406, 25 }, + [5] = { 26.4, 18.7, 406, 300 }, + [6] = { 25.5, 18.6, 406, 300 }, + [7] = { 25.2, 18.4, 406, 300 }, + [8] = { 25.2, 17.9, 406, 300 }, + [9] = { 26.5, 17.5, 406, 300 }, + [10] = { 25.8, 17.1, 406, 25 }, + }, + }, + [3000245] = { + ["coords"] = { + [1] = { 53.5, 58.5, 15, 30 }, + [2] = { 54, 56.8, 15, 30 }, + [3] = { 53.6, 56.6, 15, 30 }, + [4] = { 54.5, 54.9, 15, 30 }, + [5] = { 54.6, 54.1, 15, 30 }, + [6] = { 53.7, 52.9, 15, 30 }, + }, + }, + [3000246] = { + ["coords"] = { + [1] = { 48.2, 23.4, 440, 0 }, + }, + }, + [3000247] = { + ["coords"] = { + [1] = { 38.5, 74.6, 15, 300 }, + [2] = { 40.1, 74, 15, 300 }, + [3] = { 38, 72.8, 15, 300 }, + [4] = { 38.5, 71.7, 15, 300 }, + [5] = { 40.2, 71.5, 15, 300 }, + [6] = { 39.4, 71.4, 15, 300 }, + [7] = { 41.8, 69.9, 15, 300 }, + [8] = { 44.6, 69.7, 15, 300 }, + [9] = { 40.7, 69.6, 15, 300 }, + [10] = { 40, 69.1, 15, 300 }, + [11] = { 43.9, 66.6, 15, 300 }, + [12] = { 42.9, 65.8, 15, 300 }, + [13] = { 55.2, 91.7, 17, 300 }, + }, + }, + [3000248] = { + ["coords"] = { + [1] = { 53.9, 55.7, 15, 300 }, + [2] = { 52.7, 55.6, 15, 300 }, + [3] = { 54.7, 54.1, 15, 300 }, + [4] = { 54.2, 53.6, 15, 300 }, + [5] = { 53, 53.4, 15, 300 }, + }, + }, + [3000270] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [3000271] = { + ["coords"] = {}, + }, + [3000273] = { + ["coords"] = { + [1] = { 55.9, 38.8, 5087, 300 }, + }, + }, + [3000275] = { + ["coords"] = { + [1] = { 55.9, 40.9, 5087, 0 }, + }, + }, + [3000276] = { + ["coords"] = { + [1] = { 55.9, 36.3, 5087, 0 }, + }, + }, + [3000280] = { + ["coords"] = { + [1] = { 66.3, 73.8, 331, 800 }, + [2] = { 68.1, 72.9, 331, 800 }, + [3] = { 70.6, 72.4, 331, 800 }, + [4] = { 70.8, 71.7, 331, 800 }, + [5] = { 70.4, 70.7, 331, 800 }, + [6] = { 69, 70.6, 331, 800 }, + [7] = { 66, 70.2, 331, 800 }, + [8] = { 71.9, 69.9, 331, 800 }, + [9] = { 67.8, 69, 331, 800 }, + [10] = { 33, 67.9, 331, 800 }, + [11] = { 62.3, 67.5, 331, 800 }, + [12] = { 32.5, 67.1, 331, 800 }, + [13] = { 34.1, 67.1, 331, 800 }, + [14] = { 57.4, 66.4, 331, 800 }, + [15] = { 34.9, 65.3, 331, 800 }, + [16] = { 31.8, 64.9, 331, 800 }, + [17] = { 58.4, 64.7, 331, 800 }, + [18] = { 56.5, 63.8, 331, 800 }, + [19] = { 35.6, 62.6, 331, 800 }, + [20] = { 35.8, 62.2, 331, 800 }, + [21] = { 52.2, 61.7, 331, 800 }, + [22] = { 54.1, 61.6, 331, 800 }, + [23] = { 28.6, 60.6, 331, 800 }, + [24] = { 51.7, 60, 331, 800 }, + [25] = { 34.4, 59.7, 331, 800 }, + [26] = { 32.7, 59.7, 331, 800 }, + [27] = { 36, 59.6, 331, 800 }, + [28] = { 49.9, 59.6, 331, 800 }, + [29] = { 37, 59.4, 331, 800 }, + [30] = { 33.5, 59, 331, 800 }, + [31] = { 27.5, 58.6, 331, 800 }, + [32] = { 30.5, 58.5, 331, 800 }, + [33] = { 50.1, 56.8, 331, 800 }, + [34] = { 47.9, 56.1, 331, 800 }, + [35] = { 51.7, 55.3, 331, 800 }, + [36] = { 27.3, 54.7, 331, 800 }, + [37] = { 50, 54.2, 331, 800 }, + [38] = { 50.8, 52.3, 331, 800 }, + [39] = { 25, 49.7, 331, 800 }, + [40] = { 49.5, 49.1, 331, 800 }, + [41] = { 25.1, 48.6, 331, 800 }, + [42] = { 50.6, 48.1, 331, 800 }, + [43] = { 26, 45.9, 331, 800 }, + [44] = { 50.2, 45.7, 331, 800 }, + [45] = { 50.9, 44.2, 331, 800 }, + [46] = { 26.4, 43.1, 331, 800 }, + [47] = { 18.8, 41.6, 331, 800 }, + [48] = { 19.8, 41.5, 331, 800 }, + [49] = { 25.4, 41.2, 331, 800 }, + [50] = { 20.7, 40.3, 331, 800 }, + [51] = { 22.6, 40.2, 331, 800 }, + [52] = { 19.4, 40.2, 331, 800 }, + [53] = { 18.4, 39.8, 331, 800 }, + [54] = { 26.4, 38.8, 331, 800 }, + [55] = { 23.5, 37.5, 331, 800 }, + [56] = { 18, 37.5, 331, 800 }, + [57] = { 27.3, 37.1, 331, 800 }, + [58] = { 12.1, 35.8, 331, 800 }, + [59] = { 17.9, 34.7, 331, 800 }, + [60] = { 13.7, 33.5, 331, 800 }, + [61] = { 18.4, 33.1, 331, 800 }, + [62] = { 15, 31.5, 331, 800 }, + [63] = { 15.5, 31.4, 331, 800 }, + [64] = { 20.4, 29.9, 331, 800 }, + [65] = { 17.6, 29.4, 331, 800 }, + [66] = { 18.5, 29.2, 331, 800 }, + [67] = { 20.4, 28.4, 331, 800 }, + [68] = { 19.9, 27.5, 331, 800 }, + [69] = { 69, 34.4, 406, 800 }, + [70] = { 68.5, 33.6, 406, 800 }, + [71] = { 70.1, 33.6, 406, 800 }, + [72] = { 67.8, 31.5, 406, 800 }, + [73] = { 64.7, 27.3, 406, 800 }, + [74] = { 63.7, 25.5, 406, 800 }, + [75] = { 66.6, 25.3, 406, 800 }, + [76] = { 63.5, 21.7, 406, 800 }, + [77] = { 61.3, 16.9, 406, 800 }, + }, + }, + [3000282] = { + ["coords"] = { + [1] = { 75.7, 66.5, 1519, 300 }, + [2] = { 58.9, 83.3, 3457, 300 }, + [3] = { 71.5, 40.8, 3457, 300 }, + [4] = { 51.5, 76, 3457, 300 }, + [5] = { 66.4, 35.5, 3457, 300 }, + [6] = { 71.8, 26.9, 3457, 300 }, + [7] = { 59.4, 63.6, 3457, 300 }, + [8] = { 45.4, 45.9, 3457, 300 }, + [9] = { 46, 45.2, 3457, 300 }, + [10] = { 79.4, 38.6, 5087, 300 }, + [11] = { 73.5, 85, 5208, 300 }, + [12] = { 56.7, 84.2, 5208, 300 }, + [13] = { 60.3, 83.1, 5208, 300 }, + [14] = { 62.4, 79.3, 5208, 300 }, + [15] = { 59.7, 77, 5208, 300 }, + [16] = { 84.3, 73.9, 5208, 300 }, + [17] = { 62.3, 72.3, 5208, 300 }, + [18] = { 68.7, 71.7, 5208, 300 }, + [19] = { 72.7, 70.1, 5208, 300 }, + [20] = { 84.6, 65.4, 5208, 300 }, + [21] = { 62.1, 65.1, 5208, 300 }, + [22] = { 74.2, 63.8, 5208, 300 }, + [23] = { 83.1, 61.9, 5208, 300 }, + [24] = { 53.6, 56.7, 5208, 300 }, + [25] = { 86.2, 56.5, 5208, 300 }, + [26] = { 75.6, 55.7, 5208, 300 }, + [27] = { 73.1, 54.9, 5208, 300 }, + [28] = { 83.4, 54.1, 5208, 300 }, + [29] = { 77.4, 51.7, 5208, 300 }, + [30] = { 47.8, 51.3, 5208, 300 }, + [31] = { 78.7, 50.4, 5208, 300 }, + [32] = { 82.4, 49.5, 5208, 300 }, + [33] = { 74.8, 43, 5208, 300 }, + [34] = { 71.5, 42.8, 5208, 300 }, + [35] = { 81.6, 42.6, 5208, 300 }, + [36] = { 42.4, 36.6, 5208, 300 }, + }, + }, + [3000284] = { + ["coords"] = { + [1] = { 59.2, 44.4, 17, 25 }, + }, + }, + [3000290] = { + ["coords"] = { + [1] = { 61.6, 37.7, 876, 300 }, + }, + }, + [3000291] = { + ["coords"] = {}, + }, + [3000292] = { + ["coords"] = {}, + }, + [3000293] = { + ["coords"] = {}, + }, + [3000294] = { + ["coords"] = {}, + }, + [3000295] = { + ["coords"] = {}, + }, + [3000296] = { + ["coords"] = { + [1] = { 67.6, 47.6, 1519, 300 }, + [2] = { 41.7, 67.8, 2040, 300 }, + [3] = { 57.6, 34.3, 5225, 300 }, + }, + }, + [3000297] = { + ["coords"] = { + [1] = { 62.4, 13.7, 3457, 300 }, + [2] = { 46, 44.9, 3457, 300 }, + }, + }, + [3000298] = { + ["coords"] = {}, + }, + [3000299] = { + ["coords"] = {}, + }, + [3000300] = { + ["coords"] = {}, + }, + [3000301] = { + ["coords"] = { + [1] = { 23.7, 42.4, 1519, 300 }, + [2] = { 23.3, 42.4, 1519, 300 }, + [3] = { 53.8, 66.2, 1637, 300 }, + }, + }, + [3000302] = { + ["coords"] = { + [1] = { 83.2, 54.5, 400, 25 }, + [2] = { 39.4, 10.2, 490, 300 }, + [3] = { 66.6, 75.3, 1519, 300 }, + [4] = { 61.8, 71.1, 1519, 300 }, + }, + }, + [3000303] = { + ["coords"] = { + [1] = { 49.9, 45.9, 8, 300 }, + [2] = { 19.2, 53.5, 10, 300 }, + [3] = { 32.3, 47.6, 10, 300 }, + [4] = { 32.4, 47.5, 10, 300 }, + [5] = { 39.1, 69.3, 12, 300 }, + [6] = { 37.7, 71.6, 14, 300 }, + [7] = { 37.7, 71.5, 14, 300 }, + [8] = { 43.7, 91.7, 17, 300 }, + [9] = { 38.1, 37, 17, 300 }, + [10] = { 64.9, 34.5, 17, 300 }, + [11] = { 64.9, 34.4, 17, 300 }, + [12] = { 64.7, 34.3, 17, 300 }, + [13] = { 48.7, 9.3, 17, 300 }, + [14] = { 43.4, 79.9, 33, 300 }, + [15] = { 83, 64.7, 38, 300 }, + [16] = { 82.3, 63.5, 38, 300 }, + [17] = { 17.8, 67.2, 46, 300 }, + [18] = { 17.9, 67.2, 46, 300 }, + [19] = { 17.3, 67.1, 46, 300 }, + [20] = { 41.7, 10.5, 130, 300 }, + [21] = { 64, 18, 215, 300 }, + [22] = { 42, 75, 331, 300 }, + [23] = { 20.9, 31.9, 331, 300 }, + [24] = { 43.7, 15.8, 357, 25 }, + [25] = { 31.1, 20.9, 400, 300 }, + [26] = { 47.8, 57.4, 406, 300 }, + [27] = { 44.6, 50.3, 406, 300 }, + [28] = { 77.6, 41.2, 406, 300 }, + [29] = { 27.6, 18.6, 406, 300 }, + [30] = { 27.5, 18.6, 406, 300 }, + [31] = { 26.1, 11.1, 406, 300 }, + [32] = { 97, 80.4, 616, 300 }, + [33] = { 54.6, 87.3, 618, 300 }, + [34] = { 32.3, 75.7, 5179, 300 }, + [35] = { 32.4, 75.6, 5179, 300 }, + [36] = { 30.9, 56.9, 5561, 300 }, + [37] = { 94, 93.5, 5581, 300 }, + [38] = { 94.1, 93.5, 5581, 300 }, + [39] = { 93.5, 93.4, 5581, 300 }, + [40] = { 41.1, 77.4, 5602, 300 }, + [41] = { 40.7, 76.8, 5602, 300 }, + }, + }, + [3000304] = { + ["coords"] = { + [1] = { 49.8, 45.9, 8, 300 }, + [2] = { 50.6, 45.9, 8, 300 }, + [3] = { 19.2, 53.4, 10, 300 }, + [4] = { 58.1, 99.6, 14, 300 }, + [5] = { 37.7, 71.6, 14, 300 }, + [6] = { 29.3, 71.5, 16, 300 }, + [7] = { 29.4, 71.4, 16, 300 }, + [8] = { 42.5, 93, 17, 300 }, + [9] = { 43.7, 91.6, 17, 300 }, + [10] = { 75.6, 49, 17, 300 }, + [11] = { 64.9, 34.4, 17, 300 }, + [12] = { 64.7, 34.3, 17, 300 }, + [13] = { 61.8, 23.6, 17, 300 }, + [14] = { 61.7, 23.5, 17, 300 }, + [15] = { 34.3, 10.2, 17, 300 }, + [16] = { 34.1, 10.2, 17, 300 }, + [17] = { 43.3, 79.9, 33, 300 }, + [18] = { 83.4, 65.2, 38, 300 }, + [19] = { 83.4, 65.1, 38, 300 }, + [20] = { 17.2, 67.1, 46, 300 }, + [21] = { 22.1, 69.5, 85, 300 }, + [22] = { 22.1, 69.4, 85, 300 }, + [23] = { 23.1, 50.1, 85, 300 }, + [24] = { 42.1, 75, 331, 300 }, + [25] = { 72.4, 57.2, 331, 300 }, + [26] = { 72.2, 56.9, 331, 300 }, + [27] = { 73.3, 55.9, 331, 300 }, + [28] = { 73.3, 55.6, 331, 300 }, + [29] = { 20.9, 31.8, 331, 300 }, + [30] = { 43.8, 15.9, 357, 25 }, + [31] = { 43.7, 15.8, 357, 25 }, + [32] = { 28.5, 24, 400, 300 }, + [33] = { 31.1, 20.7, 400, 300 }, + [34] = { 31.3, 90.9, 405, 300 }, + [35] = { 31.3, 90.8, 405, 300 }, + [36] = { 31, 90, 405, 300 }, + [37] = { 50.1, 63.5, 406, 300 }, + [38] = { 79.8, 62.8, 406, 300 }, + [39] = { 79.4, 62.7, 406, 300 }, + [40] = { 77.7, 41.1, 406, 300 }, + [41] = { 27.6, 18.7, 406, 300 }, + [42] = { 26, 11.1, 406, 300 }, + [43] = { 97.1, 80.2, 616, 300 }, + [44] = { 54.6, 87.2, 618, 300 }, + [45] = { 56.2, 44.8, 618, 300 }, + [46] = { 30.3, 13.9, 1519, 300 }, + [47] = { 62.8, 84.2, 5121, 300 }, + [48] = { 51.2, 34.7, 5121, 300 }, + [49] = { 51.2, 34.6, 5121, 300 }, + [50] = { 32.3, 75.6, 5179, 300 }, + [51] = { 44.6, 44.6, 5179, 300 }, + [52] = { 44.5, 44.6, 5179, 300 }, + [53] = { 93.4, 93.4, 5581, 300 }, + [54] = { 32.8, 84.8, 5581, 300 }, + [55] = { 41.3, 77.6, 5602, 300 }, + }, + }, + [3000305] = { + ["coords"] = { + [1] = { 53.2, 43.3, 14, 300 }, + [2] = { 42.1, 72.8, 15, 300 }, + [3] = { 28.6, 75.7, 33, 300 }, + [4] = { 28.5, 75.7, 33, 300 }, + [5] = { 82.5, 54.8, 400, 25 }, + [6] = { 83.2, 54.6, 400, 25 }, + }, + }, + [3000306] = { + ["coords"] = { + [1] = { 42.3, 72.9, 15, 300 }, + [2] = { 24.7, 71.9, 440, 300 }, + [3] = { 55.2, 51.2, 876, 300 }, + }, + }, + [3000307] = { + ["coords"] = { + [1] = { 41.7, 72.7, 15, 300 }, + [2] = { 29, 69.9, 16, 300 }, + [3] = { 43.3, 17, 357, 25 }, + [4] = { 82.8, 54.9, 400, 300 }, + [5] = { 67.5, 27, 440, 300 }, + [6] = { 67.6, 26.9, 440, 300 }, + [7] = { 67.2, 25.2, 440, 300 }, + }, + }, + [3000308] = { + ["coords"] = { + [1] = { 41.5, 72.7, 15, 300 }, + [2] = { 29.1, 70, 16, 300 }, + [3] = { 82.8, 55, 400, 300 }, + [4] = { 67.6, 26.8, 440, 300 }, + [5] = { 67.4, 26.4, 440, 300 }, + }, + }, + [3000309] = { + ["coords"] = { + [1] = { 68.1, 26.8, 440, 300 }, + [2] = { 65.9, 56.9, 876, 300 }, + [3] = { 64.2, 56.7, 876, 300 }, + }, + }, + [3000310] = { + ["coords"] = { + [1] = { 68, 27.4, 440, 300 }, + [2] = { 68, 26.1, 440, 300 }, + [3] = { 66.5, 57.4, 876, 300 }, + }, + }, + [3000311] = { + ["coords"] = { + [1] = { 68.2, 26.5, 440, 300 }, + [2] = { 66.6, 55.9, 876, 300 }, + }, + }, + [3000312] = { + ["coords"] = {}, + }, + [3000313] = { + ["coords"] = { + [1] = { 67.7, 26.9, 440, 300 }, + [2] = { 67.2, 25.2, 440, 300 }, + }, + }, + [3000314] = { + ["coords"] = { + [1] = { 67.7, 26.6, 440, 300 }, + [2] = { 64, 58.9, 876, 300 }, + [3] = { 63.8, 58.9, 876, 300 }, + }, + }, + [3000315] = { + ["coords"] = { + [1] = { 82.5, 54.8, 400, 25 }, + [2] = { 67.8, 26.7, 440, 300 }, + [3] = { 67.2, 25.2, 440, 300 }, + }, + }, + [3000316] = { + ["coords"] = { + [1] = { 82.5, 54.8, 400, 25 }, + [2] = { 67.8, 26.8, 440, 300 }, + }, + }, + [3000317] = { + ["coords"] = { + [1] = { 67.2, 25.2, 440, 300 }, + }, + }, + [3000318] = { + ["coords"] = {}, + }, + [3000319] = { + ["coords"] = { + [1] = { 82.8, 55, 400, 300 }, + }, + }, + [3000320] = { + ["coords"] = { + [1] = { 29, 70, 16, 300 }, + }, + }, + [3000321] = { + ["coords"] = { + [1] = { 67.4, 27.3, 440, 300 }, + [2] = { 67.8, 26.4, 440, 300 }, + [3] = { 55.4, 51.2, 876, 300 }, + }, + }, + [3000322] = { + ["coords"] = { + [1] = { 67.5, 27.5, 440, 300 }, + [2] = { 67.5, 27.2, 440, 300 }, + [3] = { 67.6, 26.6, 440, 300 }, + }, + }, + [3000325] = { + ["coords"] = {}, + }, + [3000330] = { + ["coords"] = {}, + }, + [3000331] = { + ["coords"] = {}, + }, + [3000332] = { + ["coords"] = { + [1] = { 41.7, 73.2, 15, 25 }, + [2] = { 67.5, 27.5, 440, 300 }, + [3] = { 67.5, 26.6, 440, 300 }, + [4] = { 56.4, 53.8, 1519, 300 }, + [5] = { 56.3, 52.8, 1519, 300 }, + [6] = { 57.1, 51.9, 1519, 300 }, + }, + }, + [3000333] = { + ["coords"] = {}, + }, + [3000343] = { + ["coords"] = { + [1] = { 69.3, 31.1, 440, 300 }, + [2] = { 69.8, 30.7, 440, 300 }, + [3] = { 68.8, 30.7, 440, 300 }, + [4] = { 69.5, 29.5, 440, 300 }, + [5] = { 69, 29, 440, 300 }, + [6] = { 68.8, 28.9, 440, 300 }, + [7] = { 68.8, 28.1, 440, 300 }, + [8] = { 69.3, 27.6, 440, 300 }, + [9] = { 68.7, 27.3, 440, 300 }, + [10] = { 68.8, 27, 440, 300 }, + [11] = { 68.5, 26.4, 440, 300 }, + [12] = { 68.9, 26.1, 440, 300 }, + [13] = { 68.2, 25.8, 440, 300 }, + [14] = { 68.8, 25.7, 440, 300 }, + [15] = { 69.6, 25.6, 440, 300 }, + [16] = { 67.7, 25.5, 440, 300 }, + [17] = { 68.1, 25.5, 440, 300 }, + [18] = { 68.6, 24.8, 440, 300 }, + [19] = { 70.1, 24.6, 440, 300 }, + [20] = { 69, 23.7, 440, 300 }, + [21] = { 69.7, 23.4, 440, 300 }, + }, + }, + [3000491] = { + ["coords"] = { + [1] = { 45.7, 34.8, 361, 0 }, + }, + ["fac"] = "AH", + }, + [3000493] = { + ["coords"] = {}, + }, + [3000494] = { + ["coords"] = {}, + }, + [3000495] = { + ["coords"] = {}, + }, + [3000496] = { + ["coords"] = {}, + }, + [3000497] = { + ["coords"] = {}, + }, + [3000498] = { + ["coords"] = {}, + }, + [3000499] = { + ["coords"] = {}, + }, + [3000500] = { + ["coords"] = {}, + }, + [3000501] = { + ["coords"] = {}, + }, + [3000502] = { + ["coords"] = {}, + }, + [3000503] = { + ["coords"] = {}, + }, + [3000504] = { + ["coords"] = {}, + }, + [3000505] = { + ["coords"] = {}, + }, + [3000506] = { + ["coords"] = {}, + }, + [3000507] = { + ["coords"] = {}, + }, + [3000508] = { + ["coords"] = {}, + }, + [3000509] = { + ["coords"] = {}, + }, + [3000510] = { + ["coords"] = { + [1] = { 65.4, 31, 47, 0 }, + }, + ["fac"] = "AH", + }, + [3000511] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [3000513] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [3000519] = { + ["coords"] = { + [1] = { 47.7, 89.5, 17, 300 }, + }, + }, + [3000520] = { + ["coords"] = { + [1] = { 95.2, 24.5, 8, 5 }, + }, + }, + [3000525] = { + ["coords"] = {}, + }, + [3000600] = { + ["coords"] = {}, + }, + [3000601] = { + ["coords"] = {}, + }, + [3000602] = { + ["coords"] = {}, + }, + [3000603] = { + ["coords"] = {}, + }, + [3000604] = { + ["coords"] = {}, + }, + [3000605] = { + ["coords"] = {}, + }, + [3000606] = { + ["coords"] = {}, + }, + [3000607] = { + ["coords"] = {}, + }, + [3000608] = { + ["coords"] = {}, + }, + [3000609] = { + ["coords"] = {}, + }, + [3000610] = { + ["coords"] = {}, + }, + [3000611] = { + ["coords"] = {}, + }, + [3000612] = { + ["coords"] = {}, + }, + [3000613] = { + ["coords"] = {}, + }, + [3000614] = { + ["coords"] = {}, + }, + [3000615] = { + ["coords"] = {}, + }, + [3000616] = { + ["coords"] = {}, + }, + [3000617] = { + ["coords"] = {}, + }, + [3000618] = { + ["coords"] = {}, + }, + [3000619] = { + ["coords"] = {}, + }, + [3000620] = { + ["coords"] = {}, + }, + [3000621] = { + ["coords"] = {}, + }, + [3000622] = { + ["coords"] = {}, + }, + [3000623] = { + ["coords"] = {}, + }, + [3000624] = { + ["coords"] = {}, + }, + [3000625] = { + ["coords"] = {}, + }, + [3000626] = { + ["coords"] = {}, + }, + [3000627] = { + ["coords"] = {}, + }, + [3000628] = { + ["coords"] = {}, + }, + [3000629] = { + ["coords"] = {}, + }, + [3000630] = { + ["coords"] = {}, + }, + [3000631] = { + ["coords"] = {}, + }, + [3000632] = { + ["coords"] = {}, + }, + [3000633] = { + ["coords"] = {}, + }, + [3000634] = { + ["coords"] = {}, + }, + [3000635] = { + ["coords"] = { + [1] = { 70.4, 45.8, 1497, 300 }, + }, + }, + [3000636] = { + ["coords"] = { + [1] = { 71, 48.5, 1497, 300 }, + }, + }, + [3000637] = { + ["coords"] = { + [1] = { 70.8, 48.4, 1497, 300 }, + }, + }, + [3000638] = { + ["coords"] = { + [1] = { 71.3, 46.6, 1497, 300 }, + }, + }, + [3000639] = { + ["coords"] = { + [1] = { 71.2, 46.5, 1497, 300 }, + }, + }, + [3000640] = { + ["coords"] = { + [1] = { 71.2, 46.5, 1497, 300 }, + }, + }, + [3000641] = { + ["coords"] = { + [1] = { 71.1, 46.6, 1497, 300 }, + }, + }, + [3000642] = { + ["coords"] = {}, + }, + [3000643] = { + ["coords"] = {}, + }, + [3000644] = { + ["coords"] = { + [1] = { 71, 46.5, 1497, 300 }, + }, + }, + [3000645] = { + ["coords"] = { + [1] = { 71.1, 46.5, 1497, 300 }, + }, + }, + [3000646] = { + ["coords"] = {}, + }, + [3000647] = { + ["coords"] = {}, + }, + [3000648] = { + ["coords"] = {}, + }, + [3000649] = { + ["coords"] = {}, + }, + [3000650] = { + ["coords"] = {}, + }, + [3000651] = { + ["coords"] = {}, + }, + [3000652] = { + ["coords"] = { + [1] = { 48.5, 2.6, 490, 300 }, + }, + }, + [3000653] = { + ["coords"] = {}, + }, + [3000654] = { + ["coords"] = { + [1] = { 48.6, 2.9, 490, 300 }, + }, + }, + [3000655] = { + ["coords"] = { + [1] = { 48.2, 2.8, 490, 300 }, + }, + }, + [3000656] = { + ["coords"] = {}, + }, + [3000657] = { + ["coords"] = { + [1] = { 47.6, 2.9, 490, 300 }, + }, + }, + [3000658] = { + ["coords"] = {}, + }, + [3000659] = { + ["coords"] = {}, + }, + [3000660] = { + ["coords"] = {}, + }, + [3000661] = { + ["coords"] = {}, + }, + [3000662] = { + ["coords"] = {}, + }, + [3000663] = { + ["coords"] = {}, + }, + [3000664] = { + ["coords"] = {}, + }, + [3000665] = { + ["coords"] = {}, + }, + [3000666] = { + ["coords"] = {}, + }, + [3000667] = { + ["coords"] = {}, + }, + [3000668] = { + ["coords"] = {}, + }, + [3000669] = { + ["coords"] = {}, + }, + [3000670] = { + ["coords"] = {}, + }, + [3000671] = { + ["coords"] = {}, + }, + [3000672] = { + ["coords"] = {}, + }, + [3000673] = { + ["coords"] = {}, + }, + [3000674] = { + ["coords"] = {}, + }, + [3000675] = { + ["coords"] = {}, + }, + [3000676] = { + ["coords"] = {}, + }, + [3000677] = { + ["coords"] = {}, + }, + [3000678] = { + ["coords"] = {}, + }, + [3000679] = { + ["coords"] = {}, + }, + [3000680] = { + ["coords"] = {}, + }, + [3000681] = { + ["coords"] = {}, + }, + [3000682] = { + ["coords"] = {}, + }, + [3000683] = { + ["coords"] = {}, + }, + [3000684] = { + ["coords"] = {}, + }, + [3000685] = { + ["coords"] = {}, + }, + [3000687] = { + ["coords"] = {}, + }, + [3000688] = { + ["coords"] = {}, + }, + [3000690] = { + ["coords"] = {}, + }, + [3000691] = { + ["coords"] = {}, + }, + [3002965] = { + ["coords"] = { + [1] = { 63.2, 86, 11, 300 }, + [2] = { 32.7, 10.7, 5601, 604800 }, + [3] = { 17.3, 45.1, 5602, 300 }, + }, + }, + [4000509] = { + ["coords"] = { + [1] = { 46.4, 64.9, 5087, 300 }, + }, + }, + [5000000] = { + ["coords"] = {}, + }, + [5000001] = { + ["coords"] = {}, + }, + [5000002] = { + ["coords"] = {}, + }, + [5000003] = { + ["coords"] = {}, + }, + [5000004] = { + ["coords"] = {}, + }, + [5000005] = { + ["coords"] = {}, + }, + [5000006] = { + ["coords"] = {}, + }, + [5000007] = { + ["coords"] = {}, + }, + [5000008] = { + ["coords"] = {}, + }, + [5000009] = { + ["coords"] = {}, + }, + [5000010] = { + ["coords"] = {}, + }, + [5000011] = { + ["coords"] = {}, + }, + [5000012] = { + ["coords"] = {}, + }, + [5000013] = { + ["coords"] = {}, + }, + [5000014] = { + ["coords"] = {}, + }, + [5000050] = { + ["coords"] = {}, + }, + [6000001] = { + ["coords"] = { + [1] = { 32.6, 49.2, 10, 300 }, + }, + }, + [6000002] = { + ["coords"] = { + [1] = { 45, 13.9, 14, 300 }, + }, + }, + [6000003] = { + ["coords"] = { + [1] = { 82.6, 56, 400, 300 }, + }, + }, + [6000004] = { + ["coords"] = { + [1] = { 39, 43.6, 40, 300 }, + }, + }, + [7000030] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [7000031] = { + ["coords"] = {}, + ["fac"] = "AH", + }, + [7000032] = { + ["coords"] = {}, + }, + [7000035] = { + ["coords"] = {}, + }, + [7000036] = { + ["coords"] = { + [1] = { 54.3, 54.5, 876, 0 }, + }, + }, +} + diff --git a/RelationshipsQuestAndItemBrowserData_Quests.lua b/RelationshipsQuestAndItemBrowserData_Quests.lua new file mode 100644 index 0000000..36e4328 --- /dev/null +++ b/RelationshipsQuestAndItemBrowserData_Quests.lua @@ -0,0 +1,162295 @@ +-- Relationships Quest And Item Browser bundled quest database. +-- Source data: pfQuest and pfQuest-turtle (MIT). + +-- Source: https://raw.githubusercontent.com/shagu/pfQuest/master/db/enUS/quests.lua +RelationshipsQuestAndItemBrowserData["quests"]["enUS"] = { + [1] = { + ["D"] = "$Tpunk;! Kill Kobold Vermin, 2 of em. NEW TEST AGAIN", + ["O"] = "Kill Kobold Vermin, 2 of em.", + ["T"] = "The \"Chow\" Quest (123)aa", + }, + [2] = { + ["D"] = "The mighty hippogryph Sharptalon has been slain, with the claw of the felled beast serving as a testament to your victory. Senani Thunderheart at the Splintertree Post will no doubt be interested in seeing this trophy as proof of your deeds.", + ["O"] = "Bring Sharptalon\'s Claw to Senani Thunderheart at Splintertree Post, Ashenvale.", + ["T"] = "Sharptalon\'s Claw", + }, + [5] = { + ["D"] = "I\'ve been stuck hiding in this ghost town for weeks, and I haven\'t eaten anything but grubs and weeds! I need some decent food, and I\'m willing to trade well for it.$B$BBring me a feast and I\'ll pay you handsomely.$B$BI heard Chef Grual at the Scarlet Raven Tavern in Darkshire makes very good Dusky Crab Cakes...", + ["O"] = "Speak with Chef Grual.", + ["T"] = "Jitters\' Growling Gut", + }, + [6] = { + ["D"] = "Garrick Padfoot - a cutthroat who\'s plagued our farmers and merchants for weeks - was seen at a shack near the vineyards, which lies east of the Abbey and across the bridge. Bring me the villain\'s head, and earn his bounty!$B$BBut be wary, $N. Garrick has gathered a gang of thugs around him. He will not be an easy man to reach.", + ["O"] = "Kill Garrick Padfoot and bring his head to Deputy Willem at Northshire Abbey.", + ["T"] = "Bounty on Garrick Padfoot", + }, + [7] = { + ["D"] = "Your first task is one of cleansing, $N. A clan of kobolds have infested the woods to the north. Go there and fight the kobold vermin you find. Reduce their numbers so that we may one day drive them from Northshire.", + ["O"] = "Kill 10 Kobold Vermin, then return to Marshal McBride.", + ["T"] = "Kobold Camp Cleanup", + }, + [8] = { + ["D"] = "Hey, mate! Do a favor for a young man who\'s been fighting more than his fair share of mindless zombies and spiders?$B$BI got this here letter that needs to go to Brill... to an innkeeper named Renee something-or-other. Don\'t really matter none what her last name is.$B$BAnyway, it\'s a nice cozy little place full of victims of the plague trying to make their way in the world. And it be a great spot for you to rest too if the need arises. You should check it out... you do and I\'ll pay you well.", + ["O"] = "Deliver the Nondescript Letter to Innkeeper Renee in Tirisfal Glades.", + ["T"] = "A Rogue\'s Deal", + }, + [9] = { + ["D"] = "Look at what has happened to this place! These lands were once occupied by good farm folk. But the damned thieves have driven them all off. Not me, though! But it seems some Harvest Watchers have taken over the fields.$b$bIf you\'re up for the work, I\'d like you to go out and kill twenty of them. Come back when you\'re done for your pay. If you finish up with the ones in my field, clear them from the neighboring fields as well.", + ["O"] = "Farmer Saldean wants you to kill 20 Harvest Watchers.", + ["T"] = "The Killing Fields", + }, + [10] = { + ["D"] = "Oh, this is just terrible! I sent out my top assistant, Junior Surveyor Scrimshank, into the desert southeast of here. That\'s an area we call the Gaping Chasm. Well, he\'s gone missing, and his last report had more of those weird bugs where he was. Could it be that they\'ve infested two major regions of the desert now?$B$BI need you to head into the Gaping Chasm and look for Scrimshank, please! That... or at least find his surveying equipment. I fear that may be all that is left of the poor sod.", + ["O"] = "Discover the fate of Junior Surveyor Scrimshank, and bring either him or his surveying equipment to Senior Surveyor Fizzledowser in Gadgetzan.", + ["T"] = "The Scrimshank Redemption", + }, + [11] = { + ["D"] = "Gnolls, brutish creatures with no decent business in these lands, have been seen along the borders of Elwynn Forest. A large pack of them, many more than we can handle alone, have infested the woods south of the guard tower yonder. Another group has infested the areas near Stone Cairn Lake to the east.$B$BThe Stormwind Army will commend whomever helps kill them. Bring me their painted gnoll armbands as proof of your deed.", + ["O"] = "Bring 8 Painted Gnoll Armbands to Deputy Rainer at the Barracks.", + ["T"] = "Riverpaw Gnoll Bounty", + }, + [12] = { + ["D"] = "The People\'s Militia has but one goal: To defend the lands of Westfall and return peace to our surroundings. Unfortunately, the price of peace is often blood. $b$bOne of my scouts has brought word of a band of Defias Trappers wreaking havoc nearby. I have reports of Defias Trapper sightings near the Jangolode Mine to the Northwest as well as at the Molsen Farm and Furlbrow\'s Pumpkin Farm. If you seek to join our ranks, slay 15 Defias Trappers and 15 Defias Smugglers then return to me.", + ["O"] = "Gryan Stoutmantle wants you to kill 15 Defias Trappers and 15 Defias Smugglers then return to him on Sentinel Hill.", + ["T"] = "The People\'s Militia", + }, + [13] = { + ["D"] = "A band of vicious Defias Pillagers has been seen plundering the Gold Coast Quarry, Moonbrook and the Alexston Farmstead. The People\'s Militia will not stand for such behavior. Dispatch immediately, $n, and make the Light\'s presence known in Westfall.$b$bThe Gold Coast Quarry is near the shore, to the West of the tower. As the next step of your training, I want you to kill 15 of those foul Defias Pillagers and 15 Defias Looters.", + ["O"] = "Gryan Stoutmantle wants you to kill 15 Defias Pillagers and 15 Defias Looters and return to him on Sentinel Hill.", + ["T"] = "The People\'s Militia", + }, + [14] = { + ["D"] = "Some Defias have eluded us. My most trusted scout reports that these Defias have been looting and pillaging the countryside, all the way into Southern Westfall. We believe they are hiding out in the Dagger Hills, plotting their next move. Slay the wretches in the name of The People\'s Militia.", + ["O"] = "Gryan Stoutmantle wants you to kill 15 Defias Highwaymen, 5 Defias Pathstalkers and 5 Defias Knuckledusters then return to him on Sentinel Hill.", + ["T"] = "The People\'s Militia", + }, + [15] = { + ["D"] = "$N, my scouts tell me that the kobold infestation is larger than we had thought. A group of kobold workers has camped near the Echo Ridge Mine to the north.$B$BGo to the mine and remove them. We know there are at least 10. Kill them, see if there are more, then report back to me.", + ["O"] = "Kill 10 Kobold Workers, then report back to Marshal McBride.", + ["T"] = "Investigate Echo Ridge", + }, + [16] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Give Gerard a Drink", + }, + [17] = { + ["D"] = "I\'ve heard about a newly discovered plant called the magenta fungus caps. They grow in clusters, deep in the Uldaman dig site; they may be elsewhere, but for now that\'s the only place I know they\'re at. I want to study their potential use in alchemy, and that\'s where you come in.$B$BFind the magenta cap clusters and bring me a dozen caps. Be warned, the clusters may spew out poison spores if jostled.$B$BDo this for me, and I\'ll whip up a batch of one of my famous restorative elixirs for you!", + ["O"] = "Bring 12 Magenta Fungus Caps to Ghak Healtouch in Thelsamar.", + ["T"] = "Uldaman Reagent Run", + }, + [18] = { + ["D"] = "Recently, a new group of thieves has been hanging around Northshire. They call themselves the Defias Brotherhood, and have been seen across the river to the east.$B$BI don\'t know what they\'re up to, but I\'m sure it\'s not good! Bring me the bandanas they wear, and I\'ll reward you with a weapon.", + ["O"] = "Bring 12 Red Burlap Bandanas to Deputy Willem outside the Northshire Abbey.", + ["T"] = "Brotherhood of Thieves", + }, + [19] = { + ["D"] = "Blackrock Outrunners and Renegades are running ambushes between here and Stonewatch Keep. The leader of the Outrunners is an orc named Tharil\'zun--we want this orc. Bring me the head of Tharil\'zun!", + ["O"] = "Bring Tharil\'zun\'s Head to Marshal Marris in Redridge.", + ["T"] = "Tharil\'zun", + }, + [20] = { + ["D"] = "The Blackrock orcs have travelled from the Burning Steppes and claimed Stonewatch Keep to the north. From there they maraud the areas north of Lakeshire and keep its citizens in town, penned like cattle.$B$BHelp rid Lakeshire of this menace. Kill these Blackrock orcs and bring me ten of their Battleworn Axes as proof.$B$BAnd although Blackrocks threaten us from the north, we\'ve received reports of more in the southeastern pocket of Redridge. If you find any there, then they too should be hunted.", + ["O"] = "Bring 10 Battleworn Axes to Marshal Marris in Lakeshire.", + ["T"] = "Blackrock Menace", + }, + [21] = { + ["D"] = "Your previous investigations are proof that the Echo Ridge Mine needs purging. Return to the mine and help clear it of kobolds.$B$BWaste no time, $N. The longer the kobolds are left unmolested in the mine, the deeper a foothold they gain in Northshire.", + ["O"] = "Kill 12 Kobold Laborers, then return to Marshal McBride at Northshire Abbey.", + ["T"] = "Skirmish at Echo Ridge", + }, + [22] = { + ["D"] = "The onions are peeled. The garlic is minced. The rosemary is crushed. The crust has been baked. The dill weed is chopped. The gravy is simmering. Now all I need for my famous meat pie are 8 Goretusk Livers!", + ["O"] = "Salma Saldean needs 8 Goretusk livers to make a Goretusk Liver Pie.", + ["T"] = "Goretusk Liver Pie", + }, + [23] = { + ["D"] = "The paw of the mighty bear Ursangous is your trophy for this part of the Ashenvale Hunt. On the paw is a small quarter-crescent emblem; the significance of the emblem remains a mystery.$B$BThe paw should be brought to Senani Thunderheart in Splintertree Post to prove that you have bested the mighty creature and completed this portion of the hunt.", + ["O"] = "Bring Ursangous\'s Paw to Senani Thunderheart at Splintertree Post, Ashenvale.", + ["T"] = "Ursangous\'s Paw", + }, + [24] = { + ["D"] = "The once swift Shadumbra now lies still as you claim victory over it. The head of the slain nightsaber is a fitting trophy for this fight of the Ashenvale Hunt. Senani Thunderheart at Splintertree Post will want to see such a trophy to award you credit for this part of the Ashenvale Hunt.", + ["O"] = "Bring Shadumbra\'s Head to Senani Thunderheart at Splintertree Post, Ashenvale.", + ["T"] = "Shadumbra\'s Head", + }, + [25] = { + ["D"] = "If you want to be useful, then why don\'t you do something about the situation near Talondeep Path?$B$BThe transports between Ashenvale and Stonetalon are at a standstill because of the lake coming alive and attacking anything that gets close... which means anyone on the path. What\'d be even more useful than just putting the hammer down on the water elementals there is someone scouting the gazebo on Mystral Lake - the one that has a solid view of the Alliance outpost there.$B$BYou up for being useful?", + ["O"] = "Dispatch 12 Befouled Water Elementals at Mystral Lake, due east of the Talondeep Path and southwest of Splintertree Post.$B$BScout the gazebo on Mystral Lake that overlooks the nearby Alliance outpost.$B$BReturn to Mastok Wrilehiss at Splintertree Post, Ashenvale.", + ["T"] = "Stonetalon Standstill", + }, + [26] = { + ["D"] = "$N, I have been following your progress with much delight. You are most assuredly developing yourself into a valued protector of nature.$B$BThe time has come for you to learn more about one of the various animal aspects that Cenarius has blessed us with the ability to change into - one that affords you command and mastery of the water. For this, you must travel to the village of Nighthaven in Moonglade and speak with Dendrite Starblaze of the Cenarion Circle there. He will guide you further.", + ["O"] = "Speak with Dendrite Starblaze in the village of Nighthaven, Moonglade.", + ["T"] = "A Lesson to Learn", + }, + [27] = { + ["D"] = "$N, I have been following your progress with much delight. You are most assuredly developing yourself into a valued protector of nature.$B$BThe time has come for you to learn more about one of the various animal aspects that Cenarius has blessed us with the ability to change into - one that affords you command and mastery of the water. For this, you must travel to the village of Nighthaven in Moonglade and speak with Dendrite Starblaze of the Cenarion Circle there. He will guide you further.", + ["O"] = "Speak with Dendrite Starblaze in the village of Nighthaven, Moonglade.", + ["T"] = "A Lesson to Learn", + }, + [28] = { + ["D"] = "For your first trial, search the depths of Lake Elune\'ara to locate a Shrine Bauble. It decays rapidly, so proceed with it to the Shrine of Remulos post haste. Use the bauble at the shrine, and then speak with Tajarri there; she is one of Moonglade\'s most trusted wardens.$B$BYou only have a set amount of time to complete the task, and you may be competing against other druids searching for baubles themselves. Mental and physical dexterity will be critical to your success.$B$BGood luck, $N.", + ["O"] = "Find a Shrine Bauble in Lake Elune\'ara, and take it to the Shrine of Remulos in northwestern Moonglade. Once there, use the Shrine Bauble.$B$BYou must speak with Tajarri at the shrine afterwards in order to complete the trial.", + ["T"] = "Trial of the Lake", + }, + [29] = { + ["D"] = "For your first trial, search the depths of Lake Elune\'ara to locate a Shrine Bauble. It decays rapidly, so proceed with it to the Shrine of Remulos post haste. Use the bauble at the shrine, and then speak with Tajarri there; she is one of Moonglade\'s most trusted wardens.$B$BYou only have a set amount of time to complete the task, and you may be competing against other druids searching for baubles themselves. Mental and physical dexterity will be critical to your success.$B$BGood luck, $N.", + ["O"] = "Find a Shrine Bauble in Lake Elune\'ara, and take it to the Shrine of Remulos in northwestern Moonglade. Once there, use the Shrine Bauble.$B$BYou must speak with Tajarri at the shrine afterwards in order to complete the trial.", + ["T"] = "Trial of the Lake", + }, + [30] = { + ["D"] = "For the second trial, you\'ll need the two halves that make the Pendant of the Sea Lion. One half draws power from the agility of the sea lion aspect, gliding through water; the other draws power from the incredible endurance of the sea lion aspect. Druids draw on both these traits equally to embody the aspect of their aquatic form.$B$BSpeak with the locals of Moonglade to learn where the parts may lie, and bring both here to join them together. Once formed, take the pendant to Dendrite Starblaze.", + ["O"] = "Find the Half Pendant of Aquatic Agility and the Half Pendant of Aquatic Endurance. Speak with the residents of Moonglade to learn clues as to where these items may be located.$B$BForm the Pendant of the Sea Lion from the two pendant halves. You need to be in proximity of the Shrine of Remulos to do this.$B$BBring the joined pendant to Dendrite Starblaze in the village of Nighthaven, Moonglade.", + ["T"] = "Trial of the Sea Lion", + }, + [31] = { + ["D"] = "You have completed the necessary lessons all young druids are taught before they can adopt an aquatic aspect. Go now back to your trainer, Turak Runetotem, in Thunder Bluff. Show him your pendant and prove to him you are ready to learn what he has to teach you. He will complete your training, allowing you to become one with the water.$B$BGoodbye, young druid. We shall speak again.", + ["O"] = "Return to Thunder Bluff and show Turak Runetotem the Pendant of the Sea Lion.", + ["T"] = "Aquatic Form", + }, + [32] = { + ["D"] = "Here\'s your report. I urge you to take it to someone who might have working knowledge in this kind of thing.$B$BI know this troll scholar named Zilzibin Drumlore. He\'s spent a lot of time studying life forms that are unique to the ecology of Azeroth; he\'s a historian to boot! If you want someone to help figure out what exactly this threat is and how to stop it, give this report to him. We\'re going to need all the help we can get.$B$BZil lives in a house on the second tier of the Drag in Orgrimmar.", + ["O"] = "Take the report to Zilzibin Drumlore in Orgrimmar.", + ["T"] = "Rise of the Silithid", + }, + [33] = { + ["D"] = "I hate those nasty timber wolves! But I sure like eating wolf steaks... Bring me tough wolf meat and I will exchange it for something you\'ll find useful.$B$BTough wolf meat is gathered from hunting the timber wolves and young wolves wandering the Northshire countryside.", + ["O"] = "Bring 8 pieces of Tough Wolf Meat to Eagan Peltskinner outside Northshire Abbey.", + ["T"] = "Wolves Across the Border", + }, + [34] = { + ["D"] = "Once again my garden was trampled and pillaged. And I know the brute who is doing it. It\'s that forsaken boar, the one Marshal Marris has taken to calling Bellygrub.$b$bI won\'t be able to re-plant the daffodils until next season now. Ruined! All ruined by that one menacing boar. Put an end to that pest! Show me his tusk and I\'d be happy to reward you. He seems to spend his time foraging in the field southwest of Lakeshire but occasionally he roams over here and into my garden.", + ["O"] = "Martie Jainrose of Lakeshire wants you to kill Bellygrub. Bring her his tusk as proof.", + ["T"] = "An Unwelcome Guest", + }, + [35] = { + ["D"] = "If you are concerned that the rumors of murlocs are true, then do this -- travel to the eastern Elwynn bridge and speak with Guard Thomas. He has been stationed at the bridge for the past week and will know the state of the area.$B$BBring me his report.", + ["O"] = "Marshal Dughan wants you to speak with Guard Thomas.", + ["T"] = "Further Concerns", + }, + [36] = { + ["D"] = "I never thought the day would come when I\'d leave the farm. But the fields are overrun with thieves and it\'s far too dangerous for us here now. As soon as Farmer Furlbrow gets the wagon fixed, we\'ll be on our way. $b $bMaybe you could do me a favor? Let me scribble down my recipe for Westfall stew. Please take it to Salma Saldean over on the farm yonder. The Saldean\'s farm is just beyond the fork in the road.", + ["O"] = "Verna Furlbrow wants you to deliver her recipe for Westfall Stew to Salma Saldean.", + ["T"] = "Westfall Stew", + }, + [37] = { + ["D"] = "A few days ago we sent two Guards, Rolf and Malakai, to investigate along the river, and they have not yet returned. To complete my report, I must know what happened to those men.$B$BTravel north along the river and find the guards... or their remains.", + ["O"] = "Guard Thomas wants you to travel north up the river and search for the two lost guards, Rolf and Malakai.", + ["T"] = "Find the Lost Guards", + }, + [38] = { + ["D"] = "Help me make some Westfall Stew! Come back with the following ingredients: $b $b 3 Stringy Vulture Meat $b 3 Goretusk Snouts $b 3 Murloc Eyes $b 3 Okra", + ["O"] = "Salma Saldean wants 3 Stringy Vulture Meat, 3 Goretusk Snouts, 3 Murloc Eyes, 3 Okra.", + ["T"] = "Westfall Stew", + }, + [39] = { + ["D"] = "Tell Marshal Dughan of Malakai and Rolf\'s deaths, and report to him that the Murlocs in eastern Elwynn cannot be contained by our current troop presence.$B$BI know we don\'t have many troops to spare, but hopefully Dughan can find someone.", + ["O"] = "Report to Marshal Dughan in Goldshire.", + ["T"] = "Deliver Thomas\' Report", + }, + [40] = { + ["D"] = "$N, there\'s a new threat in Elwynn Forest! Murlocs are swimming up the streams of eastern Elwynn, scaring away fish and attacking gentle folk!$B$BI warned Marshal Dughan, but he\'s more worried about the gnolls and the bandits. He\'s not convinced that the murlocs are a danger.$B$BPlease, $N, speak to Dughan and persuade him to send more troops to the east!", + ["O"] = "Remy \"Two Times\" wants you to speak with Marshal Dughan in Goldshire.", + ["T"] = "A Fishy Peril", + }, + [45] = { + ["D"] = "Upon further searching the area, you find webbed footprints leading east along the shore of Stone Cairn Lake. In the distance to the east, you can just barely see a Murloc village.$B$BPerhaps Rolf\'s fate ended there...", + ["O"] = "Search the murloc village for Rolf, or signs of his death.", + ["T"] = "Discover Rolf\'s Fate", + }, + [46] = { + ["D"] = "The Stormwind Army has placed a bounty on murloc lurkers and foragers in Elwynn. Slaughter them and bring me their torn murloc fins, and the Stormwind Army will reward you well.$B$BThe murlocs have built a village at Stone Cairn Lake north of here, and another to the south where the stream forks.", + ["O"] = "Bring 8 Torn Murloc Fins to Guard Thomas at the east Elwynn bridge.", + ["T"] = "Bounty on Murlocs", + }, + [47] = { + ["D"] = "The Kobolds in these parts sometimes carry Gold Dust on them. I could really use the stuff - bring me a load of it and I\'ll give you the best price in town...best price in town!$B$BYou can find kobolds in the Fargodeep Mine to the south, and around the Jasperlode Mine to the northeast.", + ["O"] = "Bring 10 Gold Dust to Remy \"Two Times\" in Goldshire. Gold Dust is gathered from Kobolds in Elwynn Forest.", + ["T"] = "Gold Dust Exchange", + }, + [48] = { + ["D"] = "In the land to the south where vines twist and creep$bLies a hidden well where the water runs deep$bPure as the Light\'s sacred Daughter$bBring to me now some Holy Spring Water.", + ["O"] = "Bring Holy Spring Water to Grimbooze Thunderbrew.", + ["T"] = "Sweet Amber", + }, + [49] = { + ["D"] = "Amber is the hue of my life\'s longest love$bLike the last embers of dusk in the sky above$bRetrieve for me so that my love shall be born$bOne sack of each: barley, rye and corn.", + ["O"] = "Grimbooze Thunderbrew wants a Sack of Barley, a Sack of Rye and a Sack of Corn.", + ["T"] = "Sweet Amber", + }, + [50] = { + ["D"] = "I\'ll mix and mix till we have a mash$bFor this will be our own private stash$bA still must be fashioned of metal strong$bBring me some Truesilver so I can finish this song.", + ["O"] = "Grimbooze Thunderbrew wants Truesilver.", + ["T"] = "Sweet Amber", + }, + [51] = { + ["D"] = "Not yet filtered but freshly distilled$bLike unseeded land waiting there tilled.$bNext I will fashion our pile of charcoal$bDeliver a sycamore branch, that is your next goal.", + ["O"] = "Bring a Sycamore Branch to Grimbooze Thunderbrew.", + ["T"] = "Sweet Amber", + }, + [52] = { + ["D"] = "Hail, $N. Wild animals are growing more and more aggressive the farther we get from Goldshire, and the Eastvale Logging Camp suffers nearly constant attacks from wolves and bears!$B$BWe could use your help out here.", + ["O"] = "Kill 8 Prowlers and 5 Young Forest Bears, and then return to Guard Thomas at the east Elwynn bridge.", + ["T"] = "Protect the Frontier", + }, + [53] = { + ["D"] = "Mellifluous liquid clear as a baby\'s tears$bTurns a lovely deep amber over the years$bBut before we proceed to get lit to the hilt$bA barrel of charred oak must be built.", + ["O"] = "Bring Grimbooze Thunderbrew a bundle of Charred Oak.", + ["T"] = "Sweet Amber", + }, + [54] = { + ["D"] = "$N, you are a $c with proven interest in the security of Northshire. You are now tasked with the protection of the surrounding Elwynn Forest.$B$BIf you accept this duty, then I have prepared papers that must be delivered to Marshal Dughan in Goldshire. Goldshire lies along the southern road, past the border gates.", + ["O"] = "Take Marshal McBride\'s Documents to Marshal Dughan in Goldshire.", + ["T"] = "Report to Goldshire", + }, + [55] = { + ["D"] = "Morbent Fel hides in his lair, the house perched atop the hill to the east overlooking the Raven Hill cemetery. His time in this land is drawing to an end...$B$BUse Morbent\'s Bane against him. It will render his protective magics powerless.$B$BSlay him. Slay him, and save us from his wickedness. Be the instrument of my revenge, and a hero of Duskwood!", + ["O"] = "Use Morbent\'s Bane on Morbent Fel, kill Morbent Fel, then return Morbent\'s Bane to Sven at his camp.", + ["T"] = "Morbent Fel", + }, + [56] = { + ["D"] = "As Commander of The Night Watch it is my sworn duty to protect the citizens of Darkshire. Stormwind has retracted their commissioned guards from their posts here, leaving us to our own devices.$b$bIf you feel worthy of the task, we need your help! Assist The Night Watch by venturing forth into Tranquil Gardens, just south of Darkshire, and slaying 8 Skeletal Warriors and 6 Skeletal Mages. The undead threat must be thwarted!", + ["O"] = "Commander Althea Ebonlocke of Darkshire wants you to kill 8 Skeletal Warriors and 6 Skeletal Mages.", + ["T"] = "The Night Watch", + }, + [57] = { + ["D"] = "$N, I\'m getting reports of an undead infestation in the forest! If you\'re up to the job, journey to the Raven Hill graveyard and slay 15 of those vile Skeletal Fiends and 15 Skeletal Horrors. There are also reports of skeletons just south of Darkshire, in and around Tranquil Gardens Cemetery. The undead must be driven from Duskwood!", + ["O"] = "Commander Althea Ebonlocke of Darkshire wants you to kill 15 Skeletal Fiends and 15 Skeletal Horrors.", + ["T"] = "The Night Watch", + }, + [58] = { + ["D"] = "The situation in Raven Hill is still grim. The safety of Darkshire is in your hands, $N. I don\'t have enough Watchers to keep the town safe. We need you to dispatch for Raven Hill yet again and rid the eastern mausoleum of 20 Plague Spreaders!", + ["O"] = "Commander Althea Ebonlocke of Darkshire wants you to kill 20 Plague Spreaders in the eastern Raven Hill mausoleum.", + ["T"] = "The Night Watch", + }, + [59] = { + ["D"] = "For your shrewdness and valor, I have a marker here that is good for one piece of armor. I want you to take it to Sara Timberlain at the Eastvale Logging Camp. Give her the marker, and she will fashion the armor for you. And after you receive it, $N, use it in the defense of Elwynn.$B$BThe Eastvale Logging Camp is beyond Guard Thomas\' post to the east.", + ["O"] = "Give Sara Timberlain the Stormwind Armor Marker.", + ["T"] = "Cloth and Leather Armor", + }, + [60] = { + ["D"] = "Hello, $ggood sir:my lady;! Do you have a moment?$B$BMy brother and I run an apothecary in Stormwind, and I\'m here to gather large candles for their wax. Can you help me?$B$BYou can get large candles from kobolds, and I hear rumors that kobolds are infesting the Elwynn mines ... the Fargodeep mine to the south and Jasperlode Mine to the east. I suggest looking for candles in one of those places.", + ["O"] = "Bring 8 Large Candles to William Pestle in Goldshire.", + ["T"] = "Kobold Candles", + }, + [61] = { + ["D"] = "My brother Morgan is waiting in Stormwind for my shipment of candles. I don\'t have enough time to make the trip myself, but if you\'d like to take him the shipment, he\'ll pay you well.$B$BI\'ve packed up the candles, and you can find Morgan in our shop, Pestle\'s Apothecary, in the Stormwind Trade District.", + ["O"] = "Bring William\'s Shipment to Morgan Pestle in the Stormwind Trade District.", + ["T"] = "Shipment to Stormwind", + }, + [62] = { + ["D"] = "The mine in Northshire isn\'t the only one with problems! I have reports that the Fargodeep Mine in Elwynn has also become a haven for Kobolds.$B$BExplore the mine and confirm these reports, then return to me. The mine is almost due south of Goldshire, between the Stonefield and Maclure homesteads.", + ["O"] = "Explore the Fargodeep Mine, then return to Marshal Dughan in Goldshire.", + ["T"] = "The Fargodeep Mine", + }, + [63] = { + ["D"] = "Along the coast of Silverpine, west of the Sepulcher, you will find a shrine that has become tainted by the plague. The spirits there no longer speak to our people and it will be up to you to defeat the manifestation and cleanse the pool.$B$BTake the elemental\'s bracers, along with the remaining drops of Brine\'s potion, and place them on the brazier. The ritual should be enough to summon a pure spirit for you to communicate with.$B$BBring me proof the task is done, and I will reward you with your totem.", + ["O"] = "Defeat the Corrupt Manifestation of Water and place the Corrupted Manifestation\'s Bracers along with the Remaining Drops of Purest Water on the Brazier of Everfount in Silverpine Forest.", + ["T"] = "Call of Water", + }, + [64] = { + ["D"] = "It was horrible! Verna woke me when she heard a ruckus in the fields. The fields were full of hooligans. We left in a rush and I forgot to pack my pocket watch. Verna\'s pa gave me that watch on our wedding day and I feel just sick knowing those thieves have it. I left the pocket watch in the wardrobe at the farmhouse. Look for the field of pumpkins to the West -- you can\'t miss it. If you bring it back to me, I\'d sure be grateful!", + ["O"] = "Farmer Furlbrow wants you to retrieve his pocket watch from the wardrobe in his farmhouse at the pumpkin farm to the West.", + ["T"] = "The Forgotten Heirloom", + }, + [65] = { + ["D"] = "The band of wretches responsible for driving the good people of Westfall from the land call themselves The Defias Brotherhood. I need you to infiltrate this clan of thugs. We need to know who heads up the cartel and where they are hiding out. In Lakeshire, in the inn, there is a rogue by the name of Wiley who owes me a favor.$b$bTravel to Lakeshire in the Redridge Mountains, east of Elwynn, and find out what you can.", + ["O"] = "Gryan Stoutmantle wants you to talk to Wiley in Lakeshire.", + ["T"] = "The Defias Brotherhood", + }, + [66] = { + ["D"] = "Last night a horrible disturbance rippled through my veins. I sensed that my granddaughter, Alyssa, was in great danger. I consulted the cards and Death stared up at me from the table.$b$bAfter taking a long journey through a dark trance I was able to uncover a clue to this terrifying mystery. A name came to me, the name of Stalvan.$b$bSeek out the Clerk in the Town Hall and see if you can find out more about this character. I fear for us all.", + ["O"] = "Seek out the Clerk Daltry in the Darkshire Town Hall.", + ["T"] = "The Legend of Stalvan", + }, + [67] = { + ["D"] = "Stalvan, eh? Let me check the town registry.$b$bStalvan. . .Stalvan. . .let\'s see. Ah, here we go! I have a record of a Mr. Stalvan Mistmantle. The last recorded address is the Moonbrook Schoolhouse. My, talk about outdated!$b$bDo me a favor will you, friend? If you happen to go out to Moonbrook, let me know if you get any update on this fellow. I like to keep the records clean.", + ["O"] = "Travel to the Moonbrook Schoolhouse and bring back any updated information about Stalvan to Clerk Daltry.", + ["T"] = "The Legend of Stalvan", + }, + [68] = { + ["D"] = "You find a Dusty Unsent Letter in the old footlocker.", + ["O"] = "Take the Dusty Unsent Letter to Clerk Daltry.", + ["T"] = "The Legend of Stalvan", + }, + [69] = { + ["D"] = "Oh my! Must have missed this the first time. In the registry, right beneath the first address for Stalvan there\'s another one listed, only partially scratched out. Looks like he was headed to The Lion\'s Pride Inn over in Goldshire. Might want to check there, $N.", + ["O"] = "Go to The Lion\'s Pride Inn to see if anyone there has heard of the name Stalvan.", + ["T"] = "The Legend of Stalvan", + }, + [70] = { + ["D"] = "The name Stalvan rings a bell. I remember now.$b$bMany years back, on a stormy night, a messenger came in, seeking refuge for the night. Near the stroke of midnight, the man ran down the stairs screaming, his face pale with fear. Still wearing his bedclothes, he disappeared into the downpour.$b$bIn his haste he forgot his letters in the chest upstairs. He never returned for them. One remains from that Stalvan fellow, intended for the Canal District in Stormwind. Help yourself to it.", + ["O"] = "Retrieve Stalvan\'s Undelivered Letter from the chest and deliver it to the Canal District in Stormwind.", + ["T"] = "The Legend of Stalvan", + }, + [71] = { + ["D"] = "Now that you have both medallions, deliver them to Guard Thomas at the bridge so that he might know the fate of his murdered guards.", + ["O"] = "Deliver Rolf and Malakai\'s Medallions to Guard Thomas at the eastern Elwynn bridge.", + ["T"] = "Report to Thomas", + }, + [72] = { + ["D"] = "My father was the caretaker of the estate long before I was. He had to mop the blood up after the massacre. But that\'s neither here nor there.$b$bThe last funds of the Flintridge trust have dried up. Now the last of the family possessions are headed for auction. Blame the tax vultures. I guess if you\'re really itching to learn more you\'re free to look through this junk. Who knows what you might find.", + ["O"] = "Search through the packed up possessions for a clue.", + ["T"] = "The Legend of Stalvan", + }, + [73] = { + ["D"] = "", + ["O"] = "", + ["T"] = " No Reward", + }, + [74] = { + ["D"] = "Inside the crate you find various objects: musty heirlooms, a family portrait, a few hunting trophies and some old books. Near the bottom, underneath a ceramic vase, you uncover A Torn Journal Page.", + ["O"] = "The Torn Journal page you discovered provides your next clue.", + ["T"] = "The Legend of Stalvan", + }, + [75] = { + ["D"] = "There was a bundle of parchments in the chest upstairs when I moved into this place. I looked at them once when I first arrived but I gave up once the fog hazed over my peepers. $b$bDo an old, nearly-blind man a favor and check the chest upstairs for anything that might help you in your quest to discover more about this Stalvan character. I\'m pretty sure there\'s a faded journal page that might be of interest to you. Bring it to me and I\'ll help in anyway I can.", + ["O"] = "Marshal Haggard wants you to check the chest upstairs for the Faded Journal Page.", + ["T"] = "The Legend of Stalvan", + }, + [76] = { + ["D"] = "Thanks to you we know the Fargodeep Mine is infested with kobolds. Now we need a scout to investigate the more distant Jasperlode Mine.$B$BExplore Jasperlode and confirm any kobold presence. To reach the mine, travel east along the road until you reach the Tower of Azora. From the tower, head north and you\'ll find the mine in the foothills.", + ["O"] = "Explore the Jasperlode Mine, then report back to Marshal Dughan in Goldshire.", + ["T"] = "The Jasperlode Mine", + }, + [77] = { + ["D"] = "I possess original packaging materials for the ripple Dran Droffers seeks. I will assist you in packaging the ripple for Malton\'s abrasive father... for a fee of two additional bottles of said ripple. They are located in crates found in the abandoned Horde base near Skulk Rock.$B$BIt will be an arduous task, to wit; foul slimes and oozes will be found sticking to the ruins; rumor has it they are led by some sort of master ooze. Regardless, procure the ripple and return to me here for packaging.", + ["O"] = "Recover 10 bottles of Hinterlands Honey Ripple from the crates located around the abandoned Horde base in Skulk Rock.", + ["T"] = "A Sticky Situation", + }, + [78] = { + ["D"] = "I know of someone who might be able to assist you. Back when I was leading the Stormwind Guard, we used to get drinks at the Scarlet Raven Tavern in Darkshire. The Innkeeper there, Smitts, was quite an expert on the local lore. Show him this page and see what he has to say about it.", + ["O"] = "Take the Faded Journal Page to Tavernkeep Smitts.", + ["T"] = "The Legend of Stalvan", + }, + [79] = { + ["D"] = "I followed the legend of that Stalvan character for years. When those visiting nobles were slaughtered a few years back I went with Haggard to investigate. I found these muddy pages but we were never able to link the handwriting to that crazy man in the woods. Your trail of evidence proves his guilt. Take this to Commander Ebonlocke immediately and fill her in on what you\'ve discovered!", + ["O"] = "Take the muddy page to Commander Ebonlocke.", + ["T"] = "The Legend of Stalvan", + }, + [80] = { + ["D"] = "I have had my eye on that creep, Stalvan, for quite sometime. But if this page was written by the same hand it proves his guilt beyond a shadow of a doubt.$b$bIn all his days keeping the Town Registry, Clerk Daltry has become an expert at identifying handwriting. Show him this page and see if the writing matches that of the registry signature.", + ["O"] = "Show Clerk Daltry the Bloodstained Journal Page.", + ["T"] = "The Legend of Stalvan", + }, + [81] = { + ["D"] = "I have taken the extra step of securing not only Dran\'s packaged ripple in the barrel, but also the extra bottles of ripple he is purloining. While I may not hold Dran very highly, there is nothing worse than jostled ripple. You\'re welcome.$B$BNow, deliver yon barrel to Dran Droffers in his salvage emporium in Orgrimmar. Pray tell, please extend my warmest greetings to Malton; let him know that should he ever thirst for fine drink and finer drinking companions, we would be honored with his visit.", + ["O"] = "Deliver the barrel to Dran Droffers in Orgrimmar.", + ["T"] = "Ripple Delivery", + }, + [82] = { + ["D"] = "All right now, these reports about the bugs... what we know is that they are draining the water pools that used to be where the Noxious Lair is. What we DON\'T know is, well, everything else.$B$BLet\'s figure out who our enemy is first! I want you to head into the Noxious Lair and get some parts off of those critters. Get five from the Centipaar there and bring them to Alchemist Pestlezugg for him to dink with. With him on the case, we\'ll figure out what they are!", + ["O"] = "Bring five Centipaar insect parts from the Noxious Lair to Alchemist Pestlezugg in Gadgetzan.", + ["T"] = "Noxious Lair Investigation", + }, + [83] = { + ["D"] = "The Defias gang in Northshire wears burlap masks, but the Defias in Elwynn wear linen which I can use to make fine linen goods.$B$BBring me red linen bandanas and I\'ll use them to fashion something for you.$B$BDefias gang members have camps pocketed throughout Elwynn.", + ["O"] = "Bring 6 Red Linen Bandanas to Sara Timberlain at the Eastvale Logging Camp.", + ["T"] = "Red Linen Goods", + }, + [84] = { + ["D"] = "Here you go. And when you give this pie to that Billy, you tell him I hope he chokes on it!", + ["O"] = "Bring the Pork Belly Pie to Billy Maclure at the Maclure Vineyards.", + ["T"] = "Back to Billy", + }, + [85] = { + ["D"] = "I lost my necklace, and think that guttersnipe Billy Maclure took it! He\'s usually scuttling like a rat around the Maclure vineyards east of here. $B$BGet my necklace back for me, and you\'ll warm an old widow\'s heart.", + ["O"] = "Speak with Billy Maclure.", + ["T"] = "Lost Necklace", + }, + [86] = { + ["D"] = "Maybe if I got a pie, I could tell you who has that necklace. And you know, I think that old Bernice lady at that other farm makes great Pork Belly Pies... $B$BMaybe if you gave her some chunks of boar meat from the boars that hang around our farms, and told her what it was for, she\'d bake up a pie for you.", + ["O"] = "Bring 4 Chunks of Boar Meat to Auntie Bernice Stonefield at the Stonefield\'s Farm.", + ["T"] = "Pie for Billy", + }, + [87] = { + ["D"] = "I was playing near the Fargodeep Mine, and I think I dropped, er...I mean I saw, the old lady\'s necklace. Don\'t ask me how it got there...it wasn\'t me!$B$BWell anyway, I saw this big, gold-toothed kobold pick up the necklace and run into the mine. Go find that kobold and you\'ll find the necklace, I swear!", + ["O"] = "Bring Bernice\'s Necklace to \"Auntie\" Bernice Stonefield at the Stonefield Farm.", + ["T"] = "Goldtooth", + }, + [88] = { + ["D"] = "The Brackwells have a prize-winning pig, Princess. The sow is HUGE, and she got that way from sneaking over here and eating my veggies!$B$BSo before she comes to our fields...Princess must die! Bring me her collar as proof of the deed and I\'ll give you something for your time!$B$BPrincess is usually over at the Brackwell Pumpkin Patch, to the east and beyond the Maclure farm. Get her before she gets hungry and comes back here!", + ["O"] = "Kill Princess, grab her collar, then bring it back to Ma Stonefield at the Stonefield Farm.", + ["T"] = "Princess Must Die!", + }, + [89] = { + ["D"] = "During the last orc invasion we were forced to smelt our iron down to make bullets, swords and armor. We sent word to Stormwind for a new shipment of materials but a band of Redridge gnolls hijacked the caravan and ran off into the hills behind Lakeshire.$b$bNow we\'re coming up short on supplies to get this bridge rebuilt. If you can bring me 5 iron pikes and 5 iron rivets, $N, I\'ll make sure you\'re rewarded. $b$bNow let\'s get to work!", + ["O"] = "Bring 5 Iron Pikes and 5 Iron Rivets to Foreman Oslow in Lakeshire.", + ["T"] = "The Everstill Bridge", + }, + [90] = { + ["D"] = "Seasoned Wolf Kabobs are a house favorite! Sure, I can make you some. But first I\'ll need the supplies. Bring me 10 Lean Wolf Flanks as well as some Stormwind Seasoning Herbs. There are so many wolves here in the forest, I am sure finding the Flanks will be no problem. For the herbs, seek out Felicia Gump in her canal district flower shop in Stormwind.", + ["O"] = "Gather 10 Lean Wolf Flanks and Stormwind Seasoning Herbs and return to Chef Grual in Darkshire.", + ["T"] = "Seasoned Wolf Kabobs", + }, + [91] = { + ["D"] = "An enemy of Stormwind has taken up residence in the eastern foothills of Redridge. This wicked villain uses the Arcane to spread terror and misery upon our town and our people. Under the name, Morganth, he conducts his evil business.$b$bMorganth now controls the Shadowhide Gnoll Clan to perform his biddings. As stated by the Law of Lakeshire, aiding a criminal of the Kingdom is punishable by death.$b$bThese vile gnolls must be killed!$b$bTurn in 10 Shadowhide Pendants to me, and you shall be rewarded.", + ["O"] = "Bring 10 Shadowhide Pendants to Bailiff Conacher in the Lakeshire Town Hall.", + ["T"] = "Solomon\'s Law", + }, + [92] = { + ["D"] = "Nothing would please me more than to make you some Redridge Goulash. But there\'s a slight problem. During the recent orc uprising I fed the entire brigade of Stormwind troops. My cupboard is now bare. But if you can provide me with the ingredients, I\'d be happy to oblige.$b$bJust bring me five pieces of Tough Condor Meat, five Great Goretusk Snouts and five helpings of Crisp Spider Meat.", + ["O"] = "Chef Breanna of Lakeshire wants five pieces of Tough Condor Meat, five Great Goretusk Snouts and five helpings of Crisp Spider Meat.", + ["T"] = "Redridge Goulash", + }, + [93] = { + ["D"] = "I\'ll let you in on a little secret - Dusky \"Crab\" Cakes are really made from spider legs! I know it\'s a bit disgusting, but the cakes have a nice, tangy flavor and make great snacks! Bring me Gooey Spider Legs and I\'ll whip you up a few of them.$B$BI hear Venom Web Spiders are a good source - they nest to the north, between the foothills and the river. ", + ["O"] = "Gather 6 Gooey Spider Legs and bring them to Chef Grual in Darkshire.", + ["T"] = "Dusky Crab Cakes", + }, + [94] = { + ["D"] = "My rival, Morganth, is a vicious mage of great power who lives in the Tower of Ilgalar in Redridge. I have developed a means of spying on him, the Eye of Azora, and can now view him from afar.$B$BBut to study his thoughts ... I require further aid.$B$BIf you are willing, then take my Glyph of Azora to the Tower of Ilgalar. Place it upon the Lion Statue near the Tower.$B$BWhen this is done, the power of Azora will grant visions of Morganth\'s future plans.", + ["O"] = "Take the Glyph of Azora to the Lion Statue near the Tower of Ilgalar in Redridge.", + ["T"] = "A Watchful Eye", + }, + [95] = { + ["D"] = "I used to work one of the farms to the southeast...until Dark Riders from Deadwind Pass descended upon my farm and slaughtered my family when I was away!$B$BWhen I returned I saw a shadowy figure skulking near my barn, burying something. He fled before I could catch him, and I couldn\'t linger for I was hot on the heels of the Dark Riders. So I never discovered what was hidden.$B$BIf you can find what that shadowy figure buried, I would be grateful. The hiding spot is behind the old stump near my barn.", + ["O"] = "Go to Sven\'s Farm and find what was buried behind the old stump.", + ["T"] = "Sven\'s Revenge", + }, + [96] = { + ["D"] = "Take shard. Take shard and give life.$B$BGive life and understand. Understand water is life... corruption stops life.$B$BYou protect and give life with water\'s power.", + ["O"] = "Bring the Shard of Water to Islen Waterseer in the Barrens.", + ["T"] = "Call of Water", + }, + [97] = { + ["D"] = "Let Commander Ebonlocke know immediately that the handwriting matched, $N! Her suspicions were correct!", + ["O"] = "Report the news to Commander Ebonlocke.", + ["T"] = "The Legend of Stalvan", + }, + [98] = { + ["D"] = "Stalvan Mistmantle led a life of depravity. Innocent victims died by his hand. Undoubtedly he is guilty of countless crimes. Now the lunatic threatens Darkshire. The Light only knows what sordid acts he is plotting. Travel to his cottage just north of town, $C, and execute Stalvan, once and for all.$b$bWhen the deed is done, travel to Madame Eva\'s and show her his family ring. After all, it was her premonition that led to this gruesome discovery. But Darkshire is safer because of her.", + ["O"] = "Kill Stalvan Mistmantle and show Madame Eva his family ring.", + ["T"] = "The Legend of Stalvan", + }, + [99] = { + ["D"] = "As my understanding of Arugal\'s magic grows so does my disdain for the hapless fool. I am close to completing my research on his so called remedy.$b$bMy knowledge will be complete when I learn what enchantment is causing the strange behavior going on in Pyrewood Village. By day, the peasants appear to be Human. But when the sun goes down the townsfolk turn into Moonrage Worgen.$b$bI need to draw energy from the enchanted shackles Arugal cast on them. Bring to me six enchanted Pyrewood Shackles, $N.", + ["O"] = "Bring 6 Pyrewood Shackles to Dalar Dawnweaver at the Sepulcher.", + ["T"] = "Arugal\'s Folly", + }, + [100] = { + ["D"] = "Light explodes as you finish the incantation. The sounds of the water drops hitting the flame have died down and your senses are overcome as the corrupt spirits around you are destroyed.", + ["O"] = "Speak to the Minor Manifestation of Water in Silverpine Forest.", + ["T"] = "Call of Water", + }, + [101] = { + ["D"] = "As the mystical taint creeps through the forest, the need for self-protection is undeniable, $N. The winds whisper to me and they speak of a great danger which waits patiently for you in the near future.$b$bIf you wish to protect yourself, noble $c, bring to me 10 ghoul fangs, 10 skeleton fingers and 5 vials of spider venom. For you I shall enchant a Totem of Infliction which will harm those who attempt violent acts against you.", + ["O"] = "Bring 10 Ghoul Fangs, 10 Skeleton Fingers and 5 Vials of Spider Venom to Madame Eva in Darkshire.", + ["T"] = "The Totem of Infliction", + }, + [102] = { + ["D"] = "Stormwind has abandoned us. A foul wind of depravity rustles through the plains of Westfall. This was my homeland and I will not turn my back on the citizens who choose to remain here. We, the former farmers, shall make our stand.$b$bYour task, should you choose to accept, is to patrol the grasslands of Westfall. Track down and slay the vile Gnolls that seem to be working in conjunction with the Deadmines thieves. Bring me eight Gnoll Paws and I will reward your bravery.", + ["O"] = "Bring 8 Gnoll Paws to Captain Danuvin on Sentinel Hill.", + ["T"] = "Patrolling Westfall", + }, + [103] = { + ["D"] = "The night the Lighthouse Keeper\'s family died was horrible. I watched, helpless, as Old Murk-Eye led the attack. But what\'s done is done and now my concern is for the lives of the sailors on The Great Sea whose ships come close to the perilous rocks of the coastline. With no one to keep watch on the flame the responsibility has fallen upon me.$b$bHelp me keep the torch lit by bringing me 5 flasks of oil from the Harvest Monsters.", + ["O"] = "Bring 5 Flasks of Oil to Captain Grayson at the Westfall Lighthouse.", + ["T"] = "Keeper of the Flame", + }, + [104] = { + ["D"] = "When my life was ended upon the rocks, I had no clue what the afterlife held for me. The Lighthouse was black that night because Old Murk-Eye had scared the keeper\'s family off. They returned and re-lit the flame but Old Murk-Eye coerced the weaker minded murlocs to raid the Lighthouse with him once again. The second time the family was not so lucky and before my eyes they perished helplessly.$b$bSlay Old Murk-Eye if you see him along the shore and bring me one of his scales and I shall reward you.", + ["O"] = "Bring a scale of Old Murk-Eye to Captain Grayson at the Westfall Lighthouse.", + ["T"] = "The Coastal Menace", + }, + [105] = { + ["D"] = "Alas, the time to attack Andorhal and drive out the lich that controls it is upon us!$B$BYou may have noticed a summoning crystal inside the watchtowers you marked. We believe these feed the lich power needed to dominate the city. You must take down all four of them; destroying one will no doubt summon more of the lich\'s troops. If all four are down, the lich itself should arise to defend the heart of the city.$B$BDestroy the lich, $N, and bring me a shard from its phylactery as proof!", + ["O"] = "Bring Araj\'s Phylactery Shard to High Executor Derrington at the Bulwark, Western Plaguelands.", + ["T"] = "Alas, Andorhal", + }, + [106] = { + ["D"] = "Oh, I\'m cursed! My heart belongs to Tommy Joe Stonefield, but our families are bitter enemies. So I can\'t see him, even though my eyes ache to gaze upon that handsome face!$B$BPlease, take this letter and give it to Tommy Joe. He\'s usually at the river to the west of the Stonefield Farm, which is due west of here.", + ["O"] = "Give Maybell\'s Love Letter to Tommy Joe Stonefield.", + ["T"] = "Young Lovers", + }, + [107] = { + ["D"] = "I bet William Pestle has a potion to unite our two young lovers!$B$BHere, take this note to William. He\'s staying at the Lion\'s Pride Inn in Goldshire.", + ["O"] = "Take Gramma Stonefield\'s Note to William Pestle.", + ["T"] = "Note to William", + }, + [108] = { + ["D"] = "", + ["O"] = "", + ["T"] = " Mystery Reward", + }, + [109] = { + ["D"] = "Looks to me you\'ve seen quite a bit of combat in your time, $c. If you haven\'t already, you should report to Gryan Stoutmantle. He heads up the People\'s Militia, aimed at protecting the farmlands of Westfall. I bet he could use your help. You can usually find him in the stone tower on Sentinel Hill, just off the road in the middle of Westfall.", + ["O"] = "Talk to Gryan Stoutmantle. He usually can be found in the stone tower on Sentinel Hill, just off the road, in the middle of Westfall.", + ["T"] = "Report to Gryan Stoutmantle", + }, + [110] = { + ["D"] = "I\'m going to spend some time taking a look at Scrimshank\'s surveying gear... as well as putting his personal effects in order. I get the sneaking feeling behind my ears that this isn\'t the last loss we\'ll be facing against these bugs.$B$BI\'d like for you to check in with Alchemist Pestlezugg to see if he has had a chance to process the insect parts we sent him. If they\'re ready, bring them to me.", + ["O"] = "Check in Gadgetzan for Alchemist Pestlezugg and his analysis of the insect parts.", + ["T"] = "Insect Part Analysis", + }, + [111] = { + ["D"] = "Please, $N, talk with my Gramma. If anyone can find a way to bring me together with Maybell, she can.$B$BShe\'s inside our house east of here.", + ["O"] = "Speak with Gramma Stonefield.", + ["T"] = "Speak with Gramma", + }, + [112] = { + ["D"] = "I can make an invisibility liquor for Maybell, so she can slip away from the Maclure Vineyards and go to Tommy Joe. But to make the Liquor, I need some crystal kelp.$B$BAlthough the kelp usually grows in the ocean... sometimes murlocs collect it. See if the murlocs near Crystal Lake have any. Crystal Lake is just east of Goldshire.", + ["O"] = "Bring 4 Crystal Kelp Fronds to William Pestle in Goldshire.", + ["T"] = "Collecting Kelp", + }, + [113] = { + ["D"] = "Senior Surveyor Fizzledowser needs to see this report immediately. Actually... everyone who can read needs to see this report. We are facing a grave and serious threat to not only Tanaris and Gadgetzan, but if left unchecked, the entirety of southern Kalimdor. Heck, even quite possible the whole of Azeroth; this thing has given no indication it will subside.$B$BHave Fizzledowser make a duplicate of the report for you to distribute freely to your allegiance. Everyone must know about this threat!", + ["O"] = "Deliver the report to Senior Surveyor Fizzledowser in Gadgetzan. Be sure he gives you a copy of the report, as Alchemist Pestlezugg has requested.", + ["T"] = "Insect Part Analysis", + }, + [114] = { + ["D"] = "Take this invisibility liquor to young Maybell. It should last long enough for her to visit Tommy Joe.", + ["O"] = "Take the Invisibility Liquor to Maybell Maclure.", + ["T"] = "The Escape", + }, + [115] = { + ["D"] = "The Blackrock orcs enlisted shadowcasters to aid their attacks in Redridge, and they have brought with them devices of dark power--midnight orbs. These orbs have struck telling blows against Redridge\'s defenders, and it\'s imperative we remove the demon-tainted items from the conflict.$B$BFind and deliver to me midnight orbs from slain Blackrock shadowcasters. I will then have them disposed of, for this world would be a better place without them!", + ["O"] = "Bring 3 Midnight Orbs to Marshal Marris in Lakeshire.", + ["T"] = "Shadow Magic", + }, + [116] = { + ["D"] = "I find myself in quite a pinch here, $N. The bottles are close to running dry. The latest booze shipment is long overdue. The orc invasion has been hell.$b$bPerhaps you can go to work for me?$b$bI need you to pick up a keg of Thunderbrew Lager from Grimbooze Thunderbrew in the Westfall hills, a cask of Merlot from Stormwind, a bottle of Moonshine from Darkshire and a skin of Sweet Rum from Goldshire. Bring those back to me and I will see to it you are rewarded.", + ["O"] = "Barkeep Daniels of Lakeshire needs a keg of Thunderbrew Lager, a cask of Merlot, a bottle of Moonshine and a skin of Sweet Rum.", + ["T"] = "Dry Times", + }, + [117] = { + ["D"] = "Hurry, my friend, move with haste $bIn order for our rich lager to taste $bMore like beer and less like stew, $bHops are needed to make the brew.", + ["O"] = "Bring Grimbooze Thunderbrew 5 hops to complete his special brew.", + ["T"] = "Thunderbrew", + }, + [118] = { + ["D"] = "I\'ve been using so much iron keeping the Stormwind Guards outfitted, I don\'t have enough to supply the stable\'s horses with shoes!$B$BTake this note to Blacksmith Argus in Goldshire. It explains to him my problem and requests a shipment of horseshoes.", + ["O"] = "Take Verner\'s Note to Smith Argus in Goldshire.", + ["T"] = "The Price of Shoes", + }, + [119] = { + ["D"] = "Ok, I\'ll give him his 50 horseshoes...$B$BHere they are, all boxed up and ready to go! Tell Verner it was a pleasure doing business, and be sure he reads the note attached to this crate!", + ["O"] = "Return to Verner Osgood in Redridge. Give him the Crate of Horseshoes.", + ["T"] = "Return to Verner", + }, + [120] = { + ["D"] = "These are trying times, $c. The township is under constant siege. Without reinforcements, we will certainly face defeat. The message I now entrust to you is of utmost importance. Get this report to General Marcus Jonathan of Stormwind immediately. Once your delivery is made, return to me at once with any news, be it good or bad. $b$bNow make haste!", + ["O"] = "Magistrate Solomon has given you a report which must be delivered to General Marcus Jonathan in Stormwind. The judge wants you to return to him as soon as the delivery has been made.", + ["T"] = "Messenger to Stormwind", + }, + [121] = { + ["D"] = "While I wait for a response from the King I want you to carry this letter to Magistrate Solomon. $b$bDismissed, $c!", + ["O"] = "Take General Marcus Jonathan\'s letter of response to Magistrate Solomon in Lakeshire.", + ["T"] = "Messenger to Stormwind", + }, + [122] = { + ["D"] = "I need some underbelly scales from black dragon whelps to pay for the shoes Argus sent me from Goldshire. If you can get 6 of them for me, then I can pay Argus with some... and have enough left to fashion something for you.$B$BBlack dragon whelps are often flying around south of Lakeshire, but they like to wander. You might have to just keep an eye out and hunt them when you see them.", + ["O"] = "Gather 6 Underbelly Whelp Scales from Black Dragon Whelps, and bring them to Verner Osgood in Redridge.", + ["T"] = "Underbelly Scales", + }, + [123] = { + ["D"] = "This note is a schedule with a list of days and times when a person -- described only as \"The Collector\" -- will receive a shipment of gold from the mines in Elwynn Forest.$B$BFrom the schedule, it looks as if the Collector resides near the Brackwell Pumpkin Patch in eastern Elwynn.$B$BThis sounds important. You should report it to Marshal Dughan in Goldshire.", + ["O"] = "Go to Marshal Dughan in Goldshire and give him The Collector\'s Schedule", + ["T"] = "The Collector", + }, + [124] = { + ["D"] = "As if the attacking orcs weren\'t enough! Now I have gnoll brutes and mystics prowling along the ridge north of my stable, taking my horses when they stray...$B$BIf you can get rid of those gnolls, my horses and I would be very grateful.", + ["O"] = "Kill 10 Redridge Brutes and 8 Redridge Mystics, then return to Verner Osgood.", + ["T"] = "A Baying of Gnolls", + }, + [125] = { + ["D"] = "I could really use a hand here, $N. With the town under siege, it\'s been hard to get supplies. My tools were being delivered from Goldshire by wagon but the bridge was blown out. We put the tools in a boat but the orcs hit it with a catapult. Just my luck, my toolbox sank right to the bottom of the lake.$b$bRetrieve my toolbox, $N, and I\'ll make it worth your while.", + ["O"] = "Foreman Oslow of Lakeshire wants you to retrieve his toolbox from the bottom of Lake Everstill.", + ["T"] = "The Lost Tools", + }, + [126] = { + ["D"] = "$N, the gnolls are still out there. I can hear their baying as they hunt in the hills above Lakeshire. And one cry is louder than the rest - Yowler, their leader.$B$BKill Yowler and send his pack scattering! Bring me his paw as proof.$B$BAnd be careful, this gnoll is their leader for a reason. He is no Mongrel...", + ["O"] = "Bring Yowler\'s Paw to Verner Osgood in Lakeshire.", + ["T"] = "Howling in the Hills", + }, + [127] = { + ["D"] = "Lake Everstill is famous for its spotted sunfish. There\'s always demand for them...and I\'m running low!$B$BBring me a batch of 10 and I\'ll barter well for them. If you can\'t fish yourself, then...maybe you can get them off the murlocs!", + ["O"] = "Bring 10 Spotted Sunfish to Dockmaster Baren in Lakeshire.", + ["T"] = "Selling Fish", + }, + [128] = { + ["D"] = "The Blackrock Clan must be destroyed. The Enemy has invaded our lands. These mountains fall under the sovereign right of the King of Stormwind. Our sources tell us that the leaders of each unit within the Clan are known as Champions. You\'ll find them in their encampment to the north, just west of the road to the Burning Steppes.$b$bMagistrate Solomon wants these foul brutes dead. Slay 15 Blackrock Champions and return to me.", + ["O"] = "Kill 15 Blackrock Champions and Guard Howe in Lakeshire will reward you.", + ["T"] = "Blackrock Bounty", + }, + [129] = { + ["D"] = "Can you do me a favor? I\'ve prepared a lunch for Guard Parker, but he\'s out on patrol...he\'s a big, strong Stormwind guard who can defend himself, but it\'s much too dangerous out there for a townsperson like me.$B$BSo if you deliver his lunch for me, then come back here and I\'ll give you a free lunch! Parker patrols the stretch of road leading to Duskwood.", + ["O"] = "Bring Parker\'s lunch to Guard Parker. He patrols the road leading to Darkshire.", + ["T"] = "A Free Lunch", + }, + [130] = { + ["D"] = "Before you go back to Darcy, can you bring her some flowers for me? You can get them at the herbalist shop back in Lakeshire, at the west end of town.$B$BBut when you get the flowers...don\'t tell the herbalist, Martie, whom they\'re from, or whom they\'re for...", + ["O"] = "Speak with the Redridge Herbalist, Martie Jainrose.", + ["T"] = "Visit the Herbalist", + }, + [131] = { + ["D"] = "Here is your bouquet. I chose Daffodils for you. They\'re my favorite!", + ["O"] = "Give Darcy the Daffodil Bouquet.", + ["T"] = "Delivering Daffodils", + }, + [132] = { + ["D"] = "What I am about to tell you could cost me my life. The Defias gang is up to something big. Last I heard they were working in conjunction with various gnolls, kobolds and even goblins.$b$bTake this note to Stoutmantle. It explains as much as I know on the subject.", + ["O"] = "Take Wiley\'s Note to Gryan Stoutmantle in Westfall.", + ["T"] = "The Defias Brotherhood", + }, + [133] = { + ["D"] = "I live so far from the protection of town, it\'s a wonder the ghouls and the walking dead haven\'t eaten me! In fact, just yesterday a pack of Bone Chewers was pounding on the walls of my house!$B$BI want to make an effigy - a kind of \"scarecrow\" for Ghouls. To do that I need some Ghoul Ribs. You can get them from Flesh Eaters, Bone Chewers, Brain Eaters, Rotted Ones and Plague Spreaders.$B$BGet the ribs for me, and I will repay you with some coin.", + ["O"] = "Gather 7 Ghoul Ribs and bring them to Abercrombie at his shack.", + ["T"] = "Ghoulish Effigy", + }, + [134] = { + ["D"] = "A few weeks ago I was picking herbs far from my house, and a band of ogres attacked me! I ran, and I was forced to leave behind a crate of precious tools and herbs.$B$BAfter they chased me off, the ogres swaggered back to the ogre mound in southern Duskwood. I\'m sure my crate is somewhere near the mound.$B$BPlease, $N, retrieve this crate for me for I miss it sorely.", + ["O"] = "Return Abercrombie\'s Crate to Abercrombie.", + ["T"] = "Ogre Thieves", + }, + [135] = { + ["D"] = "I wonder what Wiley meant when he mentioned the Stonemasons. Perhaps that was a slip of tongue. Could the Defias gang be related to the Stonemasons? Only one man would know for sure: Mathias Shaw, head of SI:7. Show him Wiley\'s Note and see if he has anything to add to this growing mystery. If you have trouble finding Shaw, check the Barracks in Old Town.", + ["O"] = "Take Wiley\'s Note to Mathias Shaw in Stormwind.", + ["T"] = "The Defias Brotherhood", + }, + [136] = { + ["D"] = "If ye be readin\' this, it means that Ol\' Captain Sanders is in a watery grave. So my treasure is yours now, ye jest need to follow the clues. $b$bFirst ye need to find me footlocker. It\'s probably half-buried in sand by now, along the Western Coast of Westfall near the shipwreck. There be lots of shipwrecks but only one rusty anchor on the coast. Find that anchor and you\'ll find me locker! Look in there for the next clue.", + ["O"] = "Find Captain Sanders\' footlocker and search it for the next clue.", + ["T"] = "Captain Sander\'s Hidden Treasure", + }, + [137] = { + ["D"] = "If you earn a commendation from one of our Marshals, then bring it to me. It will be good for one of our Lion Emblem gloves.", + ["O"] = "General Marcus Jonathan in Stormwind will accept a commendation from Elwynn Forest. Bringing him such a document will reward you with a choice of armor.", + ["T"] = " Stormwind Commendation", + }, + [138] = { + ["D"] = "The clue to the treasure reads: Good work, matey! Now ye need to head due east. East up the bluffs, east to the road. Look for the ol\' chimney ruins near the side of the road. There you\'ll find an old barrel with your next clue.", + ["O"] = "Find the old barrel near the ruined chimney and search it for your next clue.", + ["T"] = "Captain Sander\'s Hidden Treasure", + }, + [139] = { + ["D"] = "Searching through the barrel you discover another piece of parchment. This one reads: Now from this here barrel, face ye North. Straight as the crow flies, keep ye walkin\' till you see the empty jug next to the lone windmill on the sea bluffs. If ye poke around that jug, ye just might find what you\'re lookin\' for.", + ["O"] = "Search the empty jug next to the windmill for the next clue.", + ["T"] = "Captain Sander\'s Hidden Treasure", + }, + [140] = { + ["D"] = "Sure enough, deep within the Old Jug there is another clue to Sander\'s treasure. The ink has run in some places and the paper smells like whiskey but you can make out some of the text: Now that ye found me ol\' whiskey jug, you\'re almost to the treasure! Just face West from the bottle and walk down to the shore. Once ye get to the water, keep going! Swim straight west till you find the island with me treasure chest!", + ["O"] = "Locate Captain Sanders\' chest and open it for your reward.", + ["T"] = "Captain Sander\'s Hidden Treasure", + }, + [141] = { + ["D"] = "The Stonemasons\' Guild was run by a man named Edwin VanCleef. VanCleef was responsible for rebuilding Stormwind after the orcs razed it in the First War. Apparently, VanCleef and his men were unhappy with their treatment by the King after the reconstruction was complete. That just might explain a thing or two.$b$bI have written a more detailed account for your Master in Westfall. Take this to him at once!", + ["O"] = "Take Shaw\'s report to Gryan Stoutmantle in Westfall.", + ["T"] = "The Defias Brotherhood", + }, + [142] = { + ["D"] = "We need to discover the location of the Defias hideout. $N, my scout reports that a Defias Messenger has been seen on the roads between Moonbrook, the Gold Coast Quarry and the Jangolode Mine. I want you to capture him. If he resists, kill him and bring me whatever he is carrying.", + ["O"] = "Track down the Defias Messenger in Westfall and bring his message to Stoutmantle.", + ["T"] = "The Defias Brotherhood", + }, + [143] = { + ["D"] = "Something odd is afoot with the Stormwind Army. They should have been here in force by now. Time is a luxury we don\'t have, however. I will not stand by and watch the people of Lakeshire give their lives without trying to enlist more help. I\'ve heard word of a people\'s militia forming in Westfall.$b$bTake this plea to their leader, Gryan Stoutmantle. Perhaps Stoutmantle\'s men can lend some support here until the King sends reserves.", + ["O"] = "Magistrate Solomon wants you to take his written plea to Gryan Stoutmantle in Westfall.", + ["T"] = "Messenger to Westfall", + }, + [144] = { + ["D"] = "Magistrate Solomon\'s note pains me to read. But it is obvious he knows not the war which is waged in Westfall or else he would know better than to expect aid from the Militia. If Stormwind had not deserted us as well, we would not have the need for the Militia.$b$bTake this response to your master in Redridge, $c. And let him know that my heart is heavy with the loss of good men.", + ["O"] = "Return to Magistrate Solomon with Gryan Stoutmantle\'s response.", + ["T"] = "Messenger to Westfall", + }, + [145] = { + ["D"] = "I require your assistance once again. I have written to Lord Ebonlocke, requesting that he sends his trained guards, the Night Watch, to help with Lakeshire\'s defense. It is imperative this message makes it to him swiftly. You must exercise extreme caution. Ebonlocke is the mayor of Darkshire, in the heart of Duskwood. Do not stray from the roads.", + ["O"] = "Magistrate Solomon wants you to take a letter to Lord Ebonlocke in Darkshire.", + ["T"] = "Messenger to Darkshire", + }, + [146] = { + ["D"] = "If I did not know Magistrate Solomon personally, I would say the man has gone mad. Send the Night Watch to Lakeshire because Stormwind refuses aid? The Night Watch was formed because Stormwind left us when this foul magic seeped into the land. If I sent my Night Watch, this town would be overrun by evil before the guards even reached the forest\'s edge.$b$bTake this letter of response to your Master in Lakeshire.", + ["O"] = "Return to Magistrate Solomon with Lord Ebonlocke\'s letter of response.", + ["T"] = "Messenger to Darkshire", + }, + [147] = { + ["D"] = "If the \"Collector\" is taking gold from our mines then he\'s stealing from the kingdom! Bring the Collector to justice, and bring me the ring mentioned in the pickup schedule you gave me. It may tell us whom the Collector is working for...$B$BThat Pickup Schedule says the Collector is hiding out at the Brackwell Pumpkin Patch. You should search for him there.", + ["O"] = "Find and kill \"the Collector\" then return to Marshal Dughan with The Collector\'s Ring.", + ["T"] = "Manhunt", + }, + [148] = { + ["D"] = "Oh, what is a poor old man to do? I need some supplies from Darkshire, but the village is so far away and I am so old and feeble...I would never make the trip.$B$BCan you go to Darkshire and bring me back some Ghost Hair Thread? You can get it from Madame Eva at her home on the Darkshire square.", + ["O"] = "Speak with Madame Eva.", + ["T"] = "Supplies from Darkshire", + }, + [149] = { + ["D"] = "There is a poor, sad spirit, Blind Mary, who haunts an old farm house in the hills south of Darkshire.$B$BHere, take this Spectral Comb and ask Blind Mary to comb her hair. Then bring back the comb and I will glean from it the Ghost Hair I\'ll need for the thread.$B$BAnd take care, for dark things now lurk near that house...", + ["O"] = "Bring the Spectral Comb to Blind Mary.", + ["T"] = "Ghost Hair Thread", + }, + [150] = { + ["D"] = "Murlocs are becoming a problem. Larger groups of the fishmen are dropping anchor along the shores of Lake Everstill and fishing up a storm! We need them gone before they eat all the fish in the lake!$B$BHunt murlocs! Bring me eight of their fins and I might have something for you...", + ["O"] = "Bring 8 Murloc Fins to Dockmaster Baren in Lakeshire.", + ["T"] = "Murloc Poachers", + }, + [151] = { + ["D"] = "Poor Old Blanchy! Such a tired beast after all the work we put her through. I fed her before we left the farm, but we weren\'t expecting the wagon to break on us. If you could bring her a few handfuls of oats from the fields, I\'d be grateful.$B$BI bet you could find some around all of the farms in Westfall, if you can steer clear of those horrific machines that have taken over. There are several farms southwest of here.", + ["O"] = "Verna Furlbrow in Westfall wants you to bring her 8 Handfuls of Oats.", + ["T"] = "Poor Old Blanchy", + }, + [152] = { + ["D"] = "You probably noticed all of the shipwrecks along the coast. The Great Sea is treacherous indeed. The coast of Westfall needs to be kept clear, so that if sailors find their way to our beaches, they are safe. The Murlocs are trouble though.$b$bKill 7 Tidehunters, 7 Warriors, 7 Oracles and 7 Coastrunners and I will see to it that you are rewarded.", + ["O"] = "Kill 7 Tidehunters, 7 Warriors, 7 Oracles and 7 Coastrunners and return to Captain Grayson at the Westfall Lighthouse.", + ["T"] = "The Coast Isn\'t Clear", + }, + [153] = { + ["D"] = "The Defias Front is constantly shifting. I\'ve been following their movements for quite some time now. On a side note, I\'ve ascertained that many members of the gang can be tracked by the Red Leather Bandanas they wear.$b$bBring me 15 of these Bandanas and I\'ll see to it you are rewarded.", + ["O"] = "Bring 15 Red Leather Bandanas to Scout Galiaan at Sentinel Hill.", + ["T"] = "Red Leather Bandanas", + }, + [154] = { + ["D"] = "NO!!!!!$B$BTake it, take this comb away from me!$B$BI\'m a monster, and no one will ever think me lovely again!", + ["O"] = "Return the Ghost Hair Comb to Madame Eva in Darkshire.", + ["T"] = "Return the Comb", + }, + [155] = { + ["D"] = "So Stoutmantle sends a scrawny $r like you to protect me? Guess you\'ll have to do. Better bring some friends too. $b$bYou know the deal, right? You watch my back and I\'ll take you to the Defias hideout. But you better be close by my side. The Defias gang wants my head now. If they see me with you, they\'ll try to kill me.$b$bLet me know when you and any friends you can round up are ready to go.", + ["O"] = "Escort the Defias Traitor to the secret hideout of the Defias Brotherhood. Once the Defias Traitor shows you where VanCleef and his men are hiding out, return to Gryan Stoutmantle with the information.", + ["T"] = "The Defias Brotherhood", + }, + [156] = { + ["D"] = "If you bring me some rot blossoms then I can brew you up a batch of zombie juice.$B$BRot blossoms grow in strange places. In particular, I hear you can find them inside the skulls of Skeletal Horrors and Skeletal Fiends... not that I\'ve gotten close enough to look!$B$BThe Raven Hill Cemetery and the Tranquil Gardens are both lousy with those skeletons. You may as well get rid of them while you\'re looking for rot blossoms. The town of Darkshire would be grateful.", + ["O"] = "Gather 8 Rot Blossoms and bring them to Tavernkeep Smitts in Darkshire.", + ["T"] = "Gather Rot Blossoms", + }, + [157] = { + ["D"] = "Here is your thread, $N. It has a thousand uses, from binding evil spirits to sewing life into inanimate objects.", + ["O"] = "Bring the Ghost Hair Thread to Abercrombie, in his shack north of the Raven Hill Cemetery.", + ["T"] = "Deliver the Thread", + }, + [158] = { + ["D"] = "I need a bottle of a certain liquor - Zombie Juice. Tavernkeep Smitts at the Scarlet Raven Tavern in Darkshire should have some.$B$BAnd please hurry, $N. These nights get cold, and I need that drink to put fire in my veins again!", + ["O"] = "Speak with Tavernkeep Smitts.", + ["T"] = "Zombie Juice", + }, + [159] = { + ["D"] = "Here\'s your Zombie Juice...$B$B...and be careful with this stuff. It\'s strong enough to raise the dead!", + ["O"] = "Bring the Zombie Juice to Abercrombie at his shack.", + ["T"] = "Juice Delivery", + }, + [160] = { + ["D"] = "Take this note to Ello Ebonlocke, the Mayor of Darkshire.$B$BHe and I are old friends...and when he reads it and discovers what you did for me...I\'m sure he\'ll be just as happy as I am! Hahahaha!", + ["O"] = "Bring Abercrombie\'s Letter to Ello Ebonlocke, Mayor of Darkshire.", + ["T"] = "Note to the Mayor", + }, + [161] = { + ["D"] = "If my suspicions are correct, this is some type of explosive powder. This must be analyzed by an explosives expert so we know just what we\'re dealing with here. Ashlan Stonesmirk was assigned to the regiment guarding Dun Modr and the Thandol Span. I need you to make a grave and perilous journey, $N.$b$bTravel through the Algaz Gate, follow the road through the Wetlands and seek out Stonesmirk in Dun Modr. Heed my advice: stick to the roads and stop for nothing!", + ["O"] = "Chief Engineer Hinderweir wants you to take the strange smelling powder to Ashlan Stonesmirk, the explosives expert in Dun Modr.", + ["T"] = "A Dark Threat Looms", + }, + [162] = { + ["D"] = "I urge you to take this report to someone who has working knowledge in this kind of thing.$B$BI know this night elf scholar named Gracina Spiritmight. She\'s spent a lot of time studying life forms that are unique to the ecology of Azeroth; she\'s a historian to boot! If you want someone to help figure out what exactly this threat is, and more importantly how to stop it, give her the report. We\'ll need the help.$B$BLast I heard, she was residing in the Temple of the Moon, located in Darnassus.", + ["O"] = "Take the Insect Analysis Report to Gracina Spiritmight in Darnassus.", + ["T"] = "Rise of the Silithid", + }, + [163] = { + ["D"] = "Something\'s amiss at Raven Hill, $n. Calor swears that someone--or something--is haunting the buildings there. Two nights running he\'s noticed the shadows moving, and the third before that he says he saw light in one of the windows.$b$bIf, as you say, you care about the safety of Duskwood, find out what monster haunts in Raven Hill.", + ["O"] = "Find out what is haunting Raven Hill.", + ["T"] = "Raven Hill", + }, + [164] = { + ["D"] = "Do you know Sven? Now, there is a man who does the work of the Light! He and his followers keep a camp at the northwestern edge of Duskwood.$b$bUnfortunately, because they are so few, they cannot even spare a man to fetch supplies from town. Will you deliver these supplies to him?", + ["O"] = "Deliver the supplies to Sven.", + ["T"] = "Deliveries to Sven", + }, + [165] = { + ["D"] = "There was an old man who used to come into town to buy supplies rather frequently, but I haven\'t seen him for quite some time now. He lives out in a shack overlooking Raven Hill cemetery, if I remember correctly. Perhaps you should go see if something is amiss.", + ["O"] = "Check on the old man in the shack near Raven Hill cemetery.", + ["T"] = "The Hermit", + }, + [166] = { + ["D"] = "There is but one task left for you to complete. Edwin VanCleef must be assassinated. While it saddens me to condemn any man to a death sentence, it is for the greater good of the people of Westfall that VanCleef is laid to rest once and for all. Bring me the villain\'s head once the deed is done.", + ["O"] = "Kill Edwin VanCleef and bring his head to Gryan Stoutmantle.", + ["T"] = "The Defias Brotherhood", + }, + [167] = { + ["D"] = "We were deep in a vast mine in Westfall, hidden beneath a barn in Moonbrook. No clue where these stinkin\' thieving types came from. Anyway, the mine tunnel collapsed on us. I got out but the others... well... the others haven\'t been heard from.$b$bYou look like you might have better luck in there. If you could look for my brother, I\'d be thankful. He always carried his Explorers\' League Badge. If you can\'t find him, that badge would at least give me some peace of mind.", + ["O"] = "Bring Foreman Thistlenettle\'s Explorers\' League Badge to Wilder Thistlenettle in Stormwind.", + ["T"] = "Oh Brother. . .", + }, + [168] = { + ["D"] = "Many of my friends perished that horrible day when the mine tunnel caved in. If your adventures happen to bring you into that wing of the mine in Moonbrook, please keep an eye out for any sign which might identify them. If you come across any of their Miners\' Union Cards, bring them back to me and I\'ll make sure their families get some resolution from this horrible accident.", + ["O"] = "Retrieve 4 Miners\' Union Cards and return them to Wilder Thistlenettle in Stormwind.", + ["T"] = "Collecting Memories", + }, + [169] = { + ["D"] = "Wanted! Gath\'Ilzogg, Leader of the Blackrock attacks on Stonewatch Keep and raids against the township of Lakeshire. $b$bGath\'Ilzogg is extremely dangerous. He is reportedly holed up in the recently conquered keep plotting the Blackrock clan\'s further crimes against humanity. The orc infestation must be quelled at all costs. A gracious reward will be given to whatever brave soul can deliver the head of Gath\'Ilzogg to Magistrate Solomon.", + ["O"] = "Kill Gath\'Ilzogg and bring his head to Magistrate Solomon in Lakeshire for the reward.", + ["T"] = "Wanted: Gath\'Ilzogg", + }, + [170] = { + ["D"] = "I hope you\'re here to lend us a hand, $c. After the last trogg attack, we could use all the help we can get.$b$bI hear the buggers have been popping up all across the lands, and it seems Coldridge Valley is no exception. They\'ve been spotted all over the hills to the southeast and near the frozen lake.$b$bAnd that\'s not all, just a few nights ago, they attacked and overran our camp to the west! $b$bWe\'re a bit shorthanded here, $g lad : lass;, and we need strong arms to help drive the troggs back.", + ["O"] = "Balir Frosthammer wants you to kill 6 Rockjaw Troggs and 6 Burly Rockjaw Troggs.", + ["T"] = "A New Threat", + }, + [171] = { + ["D"] = "You have been so very kind to me, $N. I never dreamed that I\'d have so much fun during Children\'s Week. Thank you. I don\'t wanna be sad about what\'s happened to me and all - my folks always told me to rise above anything bad that happens. You know, when I grow up I wanna be a hero... just like you.$B$BI\'m sad to say this, but it\'s time for me to go home. Let\'s go back and I\'ll tell the matron what an awesome person you are!", + ["O"] = "Return your ward to the Stormwind orphanage by handing in the Human Orphan Whistle to Orphan Matron Nightingale in the Cathedral District.", + ["T"] = "A Warden of the Alliance", + }, + [172] = { + ["D"] = "Lord Ebonlocke sent me to Stormwind to represent Darkshire at the recent council of the House of Nobles. I was tasked with requesting military aid in light of the undead infestation which has taken over the forest.But on my way back a band of thieves ambushed me. I was forced to drive my cart to The Rotting Orchard in southern Duskwood.Before the thieves could rob me of my goods, a pack of ferocious Worgen overtook the thugs. Now I need you to retrieve my satchel from the chest in the wagon.", + ["O"] = "Retrieve Ambassador Berrybuck\'s satchel and bring it back to him in Darkshire.", + ["T"] = "Ambushed In The Forest", + }, + [173] = { + ["D"] = "Darkness seems drawn inexorably to Duskwood. Master Carevin\'s quest is the expulsion of evil and heresy. Through our efforts are the people of Darkshire kept safe.$b$bYou believe yourself worthy to join us?$b$bI once thought as you. Disillusioned by the complacency of the Watch, I joined Master Carevin. If you wish to prove yourself, it will not be through words.$b$bTest your skills against the Nightbane Shadow Weaver worgen in Brightwood Grove--bright, hah!--and the Rotting Orchard.", + ["O"] = "Kill 6 Nightbane Shadow Weaver worgen for Calor in Darkshire.", + ["T"] = "Worgen in the Woods", + }, + [174] = { + ["D"] = "My Gnomish friend, Cog, has promised to help me build a device which will let me peer towards the stars. A truth exists, beyond magic, that can explain the strange transformation in the forest.$b$bBring to me a bronze tube made by a skilled engineer. That is the first step, according to Cog\'s blueprint.", + ["O"] = "Viktori Prism\'Antras of Darkshire wants you to bring him a bronze tube.", + ["T"] = "Look To The Stars", + }, + [175] = { + ["D"] = "According to Cog\'s blueprint, what I need now is a way to reflect light. I remember a woman by the name of Mary who became well known around these parts for always carrying a looking glass. Perhaps you can track Mary down and see if she might lend us a reflective surface for this project? I believe she once resided in southern Duskwood. . .", + ["O"] = "Locate Mary and persuade her to give up a reflective surface for Viktori\'s project.", + ["T"] = "Look To The Stars", + }, + [176] = { + ["D"] = "Wanted: Hogger$B$BA huge gnoll, Hogger, is prowling the woods in southwestern Elwynn. He has overpowered all attempts at his capture.$B$BThe Stormwind Army has placed a generous bounty on the Gnoll. To earn the reward, bounty hunters should bring proof of Hogger\'s demise to Marshal Dughan in Goldshire.", + ["O"] = "Slay the gnoll Hogger and bring his Huge Gnoll Claw to Marshal Dughan.", + ["T"] = "Wanted: \"Hogger\"", + }, + [177] = { + ["D"] = "The looking glass was one of my finest treasures until. . .the incident. After that happened, I discarded it behind the barn. There was an Insane Ghoul who used to roam back there. Perhaps he picked it up. Rumor has it the devilish beast resides in the Tranquil Gardens Cemetery.", + ["O"] = "Retrieve Blind Mary\'s Looking Glass from the Insane Ghoul and give it to Viktori in Darkshire.", + ["T"] = "Look To The Stars", + }, + [178] = { + ["D"] = "$B$BDo not be alarmed. I am Theocritus, High Mage of Tower Azora in Elwynn Forest. The pendant you are holding is a method of communication between the Shadowhide Gnolls and their master, Morganth.$B$BThrough months of research, I believe I too can communicate through these pendants. If you can hear this message, then my spell was a success.$B$BBring me this pendant and I will reward you for the service.", + ["O"] = "Bring the Faded Shadowhide Pendant to Theocritus the Mage.", + ["T"] = "Theocritus\' Retrieval", + }, + [179] = { + ["D"] = "What do we have here? You look as though you might need something to keep your hands warm, hm?$b$bI\'ll tell you what would help: a pair of nice, warm gloves. And, being the kind soul that I am, I\'d be more than happy to provide you with a suitable pair. I\'ve one condition, however.$b$bI need you to go get me some wolf meat. Nice arrangement, hm? You bring me some wolf meat, and I\'ll make sure you don\'t lose any digits to frostbite. Well, what do you say?", + ["O"] = "Sten Stoutarm would like 8 pieces of Tough Wolf Meat.", + ["T"] = "Dwarven Outfitters", + }, + [180] = { + ["D"] = "Wanted: Lieutenant Fangore$b$bKnown leader of the Shadowhide Gnoll Clan, working under the enemy of the Township and Kingdom, Morganth. By mandate of Magistrate Solomon, this vile betrayer of Stormwind is wanted dead. Show his paw to the Magistrate as proof of his death.", + ["O"] = "Kill Lieutenant Fangore and return to Magistrate Solomon in Lakeshire with his paw.", + ["T"] = "Wanted: Lieutenant Fangore", + }, + [181] = { + ["D"] = "Now there is just one more item needed to complete this device. Cog\'s blueprint calls for a lens of some sort. The only lens I know of that would be large enough will be very difficult to acquire.$b$bThere is an ogre by the name of Zzarc\'Vul who resides in the mound in southern Duskwood. If you can, bring to me his monocle and I will use that as our lens!", + ["O"] = "Locate Zzarc\'Vul in the southern ogre mound in Duskwood and return his monocle to Viktori in Darkshire.", + ["T"] = "Look To The Stars", + }, + [182] = { + ["D"] = "My brother Senir and I were sent to different parts of Dun Morogh to investigate the threat posed by the trolls. The Senate has its hands full with the troggs, so they\'ve no need for further annoyances.$b$bFrom what I\'ve seen, the trolls aren\'t well situated here in Coldridge Valley--mostly the southern cave. I\'d say that the army will not be necessary. A few strong arms should be more than enough.$b$bPerhaps you\'d like to assist in this endeavor? I have the authority to offer compensation for your help.", + ["O"] = "Grelin Whitebeard would like you to kill 14 Frostmane Troll Whelps.", + ["T"] = "The Troll Cave", + }, + [183] = { + ["D"] = "Nothing like a day of boar hunting, eh?$b$bThough, here in Coldridge Valley, there are so many boars it almost takes the fun out of it. No need to get them charging. They\'re all angry and ready without any help. In fact, recently, there\'ve been so many boars in the area, it\'s become dangerous for me to do my daily hunting.$b$bLong story short, if you could help me kill some of the boars, I would appreciate it.", + ["O"] = "Talin Keeneye would like you to kill 12 Small Crag Boars.", + ["T"] = "The Boar Hunter", + }, + [184] = { + ["D"] = "This is the deed to an expanse of farmlands within Westfall. It is signed by a Theodore Furlbrow and cosigned by his wife, Verna. And on the back of the deed are hastily scrawled words:$B$B\"We leaned on Furlbrow and got his deed. Thought it might be handy if you wanted to forge one of these for your own place.$B$BThe Furlbrows won\'t give us trouble. Last I saw them they were on their way out of Westfall, stuck with a broken wagon.\"$B$BYou think the Furlbrows might want their deed back...", + ["O"] = "Bring Furlbrow\'s Deed to Farmer Furlbrow.", + ["T"] = "Furlbrow\'s Deed", + }, + [185] = { + ["D"] = "When I was but a young girl, my father trained me in the art of tiger hunting.$b$bYou\'ll find the young felines much easier to track and slay. For this reason, we\'ll start you out easy. One can often find young tigers near the expedition camp.$b$bTest your tracking skills and see if you can hunt some of the beasts down.", + ["O"] = "Ajeck Rouack of Nesingwary\'s Expedition wants you to kill 10 Young Stranglethorn Tigers.", + ["T"] = "Tiger Mastery", + }, + [186] = { + ["D"] = "You are learning, $c. Let us test your skills with the mature cats now. Kill 10 Stranglethorn Tigers this time out.", + ["O"] = "Ajeck Rouack of Nesingwary\'s Expedition wants you to kill 10 Stranglethorn Tigers.", + ["T"] = "Tiger Mastery", + }, + [187] = { + ["D"] = "Now I\'m going to up the stakes on you and truly test your skill. Prove to me you can kill 10 Elder Stranglethorn Tigers. If you can do that, you will be ready for your final challenge before I declare you a master tiger hunter in Master Nesingwary\'s presence.$b$bElder Stranglethorn Tigers are not only the most difficult to find, they are also the fiercest to defeat.", + ["O"] = "Ajeck Rouack of Nesingwary\'s Expedition wants you to kill 10 Elder Stranglethorn Tigers.", + ["T"] = "Tiger Mastery", + }, + [188] = { + ["D"] = "Here is the final challenge that I will put forth. We\'ve been tracking an elusive tiger for weeks. We call the beast Sin\'Dall. See if you can do what no $r has done before: hunt down and kill Sin\'Dall. Bring me her paw as proof of your accomplishment.$b$bTracking her down will be no easy task.", + ["O"] = "Ajeck Rouack of Nesingwary\'s Expedition wants you to kill Sin\'Dall and return with her paw.", + ["T"] = "Tiger Mastery", + }, + [189] = { + ["D"] = "Damn trolls! They\'ve been killing off our agents in the jungle! I\'ve already lost a good number of my best guards to skirmishes with them. The costs are piling up! How will I explain this to Baron Revilgaz?$b$bDecisive action... Think, Kebok... you weren\'t assigned to the post you have today for sitting around... I\'ve got it! You... $n, is it? You\'ll help me, won\'t you? There\'s money to be had!$b$bHere\'s the deal... you bring me the ears of fifteen Bloodscalp Trolls, and I\'ll compensate you well.", + ["O"] = "Acquire 15 Bloodscalp Ears and return them to Kebok in Booty Bay.", + ["T"] = "Bloodscalp Ears", + }, + [190] = { + ["D"] = "If you want to be a part of the hunt with this crack group Hemet has assembled, you\'re going to need to prove yourself an able panther hunter. We\'ll start you out easy -- don\'t you worry. Let\'s see you kill 10 young panthers to start.$b$bTracking them down is only half the challenge...", + ["O"] = "Sir S. J. Erlgadin of Nesingwary\'s Expedition wants you to kill 10 Young Panthers.", + ["T"] = "Panther Mastery", + }, + [191] = { + ["D"] = "Now you\'re ready to turn it up a notch. If you want to prove yourself worthy of socializing with the likes of these big game hunters, you\'ll need to prove that you can kill 10 panthers.$b$bThose big boys are tougher. They\'re not as easy as the young ones you were killing earlier.", + ["O"] = "Sir S. J. Erlgadin of Nesingwary\'s Expedition wants you to kill 10 Panthers.", + ["T"] = "Panther Mastery", + }, + [192] = { + ["D"] = "Now the hard part. A true panther hunter can show skill by dropping Shadowmaw Panthers, the deadliest in Stranglethorn. Prove to us that you can slay 10 of these beasts.$b$bIf you think they are hard to track, wait until you attempt to slay one....", + ["O"] = "Sir S. J. Erlgadin of Nesingwary\'s Expedition wants you to kill 10 Shadowmaw Panthers.", + ["T"] = "Panther Mastery", + }, + [193] = { + ["D"] = "You\'ve almost proven yourself to be a master hunter of panthers. A panther by the name of Bhag\'thera has been prowling the jungle. So far he\'s eluded our party. See if you can use your skills to kill the great Bhag\'thera.$b$bBring me the Fang of Bhag\'thera and you\'ll have earned my respect!", + ["O"] = "Sir S. J. Erlgadin of Nesingwary\'s Expedition wants you to bring him the Fang of Bhag\'thera.", + ["T"] = "Panther Mastery", + }, + [194] = { + ["D"] = "So you think your hunting skills are in tip-top shape? I can put them to the test in a jiffy. Head out into that jungle and kill 10 Stranglethorn Raptors. We\'ll see just how much of a big game hunter you are.$b$bAnd no, I won\'t tell you where you can find them! Locating the beasts is half the challenge.", + ["O"] = "Hemet Nesingwary wants you to kill 10 Stranglethorn Raptors.", + ["T"] = "Raptor Mastery", + }, + [195] = { + ["D"] = "Now let\'s step up the challenge and see if you\'re up to it. Venture into the jungle and bag yourself 10 of those bloody Lashtail Raptors. Let\'s see what you\'ve got!", + ["O"] = "Hemet Nesingwary wants you to kill 10 Lashtail Raptors.", + ["T"] = "Raptor Mastery", + }, + [196] = { + ["D"] = "Let\'s see how you handle this next challenge. There is a cagey breed of raptor out there. We call them Jungle Stalkers. They are far more difficult to track down and kill than the other breeds you\'ve been trying your luck at. Kill 10 Jungle Stalkers and I\'ll tip you off to the best hunting yet.", + ["O"] = "Hemet Nesingwary wants you to kill 10 Jungle Stalkers.", + ["T"] = "Raptor Mastery", + }, + [197] = { + ["D"] = "Because you proved yourself to be such a go-getter in the jungle, let me tell you about a ferocious raptor that even I have failed to kill. Ajeck here calls this wily raptor Tethis.$b$bIf you want to prove yourself a true master, kill Tethis and bring me his talon. It would be a feat that no other big game hunter has accomplished.", + ["O"] = "Hemet Nesingwary wants you to kill Tethis, an elusive, dangerous raptor in Stranglethorn.", + ["T"] = "Raptor Mastery", + }, + [198] = { + ["D"] = "Hmm. Yes, I do have something you could do, actually. Lieutenant Doren and his followers up in the north need their regular supplies from us.$b$bThey haven\'t been delivered, and with the trolls attacking, I\'ll need someone to do it. Doren\'s camp lies northwest of the road at the entrance to Stranglethorn from Duskwood. Give the supplies to Private Thorsen, if he\'s not in the camp, then he\'ll be patrolling south of it. He\'ll take care of them.$b$bMind you, if you fail, you\'ll owe me restitution.", + ["O"] = "Deliver the Miscellaneous Goblin Supplies to Private Thorsen.", + ["T"] = "Supplies to Private Thorsen", + }, + [199] = { + ["D"] = "You take a sample of the strange smelling powder.", + ["O"] = "Return to Chief Engineer Hinderweir and show him the clue that you discovered.", + ["T"] = "A Dark Threat Looms", + }, + [200] = { + ["D"] = "If Kurzen knows Thorsen\'s secret, then we have a spy in our midst. We must determine how the secret was leaked!$B$BThorsen\'s contact within Kurzen\'s camp was Bookie Herod. Herod is Kurzen\'s logistics officer and knows everything about the running of Kurzen\'s Compound. If you can get Herod\'s notes or records, maybe we can find out how Thorsen was discovered.$B$BWhen we were still with Kurzen, Bookie\'s office was on the top floor of the camp\'s only two-story house. His records are probably still there.", + ["O"] = "Find Bookie Herod\'s Records.", + ["T"] = "Bookie Herod", + }, + [201] = { + ["D"] = "I\'ve gotten reports of a group of hunters that have set up camp upriver of the Venture Company mining camp on Lake Nazferiti. Now, normally I wouldn\'t care, but improbably, I heard that Hemet Nesingwary was one of the hunters there? He\'s certainly well-connected, if you catch my meaning, and you never can be too safe.$b$bWhy don\'t you go check out the camp, $n, see what they\'re about?", + ["O"] = "Find the hunters\' camp and report its location to Krazek in Booty Bay.", + ["T"] = "Investigate the Camp", + }, + [202] = { + ["D"] = "You have proven yourself time and again, and your resourcefulness seems to rival even that of Kurzen himself. You may be the salvation of our band of rebels...if you can pit yourself against Kurzen and prevail!$B$BHe commands his men from deep within the Stockpile. You must enter that cave, brave through his defenders, and face Kurzen and his leaders.$B$BFarewell, $N. My hope, and the fate of my men, go with you.", + ["O"] = "Kill 6 Kurzen Elite, 4 Kurzen Subchiefs, and bring Kurzen\'s Head to Lieutenant Doren at the Rebel Camp.", + ["T"] = "Colonel Kurzen", + }, + [203] = { + ["D"] = "We\'re fighting a losing battle with Colonel Kurzen. Not only is he a brilliant tactician, he outnumbers us at least 10 to 1! To survive, we need to use his own, covert tactics against him.$B$BEnter his camp to the east and kill his men. Lots of them. And get out before reinforcements can close on you.", + ["O"] = "Kill 15 Kurzen Jungle Fighters.$B$BReturn to Sergeant Yohwa at the Rebel Camp.", + ["T"] = "The Second Rebellion", + }, + [204] = { + ["D"] = "To have a chance against Kurzen, we need his healing support neutralized. He has gathered around him a large number of Medicine Men who heal his forces with Jungle Remedies and poison our fighters with Venom Fern Extracts.$B$BWe need those remedies to cure our own people, and we need a sample of those extracts to study so we can make our own remedies. Search the Kurzen Compound for both - his Medicine Men will have the remedies, and the extracts are probably stowed in some of the camp\'s supply boxes.", + ["O"] = "Bring 7 Jungle Remedies and 1 Venom Fern Extract to Sergeant Yohwa at the Rebel Camp.", + ["T"] = "Bad Medicine", + }, + [205] = { + ["D"] = "While I study those legends you acquired, gather for me implements of evil troll magic. Enter the territory of the Skullsplitter trolls, a second tribe to the distant south, and acquire Skullsplitter Fetishes from their Witchdoctors and Mystics.", + ["O"] = "Bring 4 Skullsplitter Fetishes to Brother Nimetz at the Rebel Camp.", + ["T"] = "Troll Witchery", + }, + [206] = { + ["D"] = "Kurzen may be dead, but...that which drove him to evil still lives! Through my studies I have discovered this: An Ogre Mage - Mai\'Zoth - dwells in an Ogre Mound within the eastern mountains of Stranglethorn. He is rumored to employ mind-controlling magic, and I am positive that he corrupted Kurzen.$B$BIf Mai\'Zoth is allowed to live, then his evil may influence others, and may even cause another Kurzen to surface.$B$BKill him, and bring me his Mind\'s Eye, the artifact he uses to corrupt others.", + ["O"] = "Bring the Mind\'s Eye to Brother Nimetz at the Rebel Camp.", + ["T"] = "Mai\'Zoth", + }, + [207] = { + ["D"] = "Colonel Kurzen was once a great, noble man - I must find what caused his fall into depravity! He may be under the sway of troll magic. To confirm this, I must study some of their legends.$B$BThere are 4 tablets hidden within the troll ruins of Stranglethorn. I must see what is written on these tablets! Transcribe their markings and bring the transcriptions back to me.$B$BThe first tablet is in the Bal\'lal Ruins, the second is in the Vile Reef, and the third and fourth are in the Ruins of Zul\'Kunda.", + ["O"] = "Find the 4 tablets and bring their legends back to Brother Nimetz.", + ["T"] = "Kurzen\'s Mystery", + }, + [208] = { + ["D"] = "$N, you are a hunter worthy of our company. From the battlefields of Lordaeron to the deepest jungle, I have rarely witnessed such prowess with weaponry as you have demonstrated.$b$bYou have killed the ferocious Sin\'Dall, the elusive Bag\'thera and the treacherous Tethis. But the true prize is the head of King Bangalash. That white tiger is the reason I am here. I\'ve had my sights on him for quite some time now. Kill King Bangalash and your hunting prowess is proven to be second to none.", + ["O"] = "Hemet Nesingwary wants you to bring him the head of King Bangalash, the great white tiger.", + ["T"] = "Big Game Hunter", + }, + [209] = { + ["D"] = "It\'s expensive and hard to kill enough tigers to support the export of tiger fangs to the islands in the South Seas. Luckily, we\'ve developed a technique that allows us to take mundane horn-like objects and turn them into undetectable forgeries.$b$bThe closest match we\'ve found, amazingly, are the tusks of the Skullsplitter trolls.$b$bHey, before you say anything, what the buyer doesn\'t know doesn\'t hurt them, am I right? Bring me a large number of them so we can get to work on the monthly shipment!", + ["O"] = "Acquire 18 Skullsplitter Tusks and return them to Kebok.", + ["T"] = "Skullsplitter Tusks", + }, + [210] = { + ["D"] = "I do most of the cooking at the camp. And it used to be a lot of work, until I bought a mechanical cooking pot from a goblin merchant in Booty Bay. The pot is a wonder! It saved me countless hours...until it broke!$B$BCan you take the pot back to the goblin for me so he can fix it? His name is Krazek.", + ["O"] = "Bring Krazek\'s Crock Pot to Krazek the goblin.", + ["T"] = "Krazek\'s Cookery", + }, + [211] = { + ["D"] = "Alas, the time to attack Andorhal and drive out the lich that controls it is upon us!$B$BYou may have noticed a summoning crystal inside the watchtowers you marked. We believe these feed the lich power needed to dominate the city. You must take down all four of them; destroying one will no doubt summon more of the lich\'s troops. If all four are down, the lich itself should arise to defend the heart of the city.$B$BDestroy the lich, $N, and bring me a shard from its phylactery as proof!", + ["O"] = "Bring Araj\'s Phylactery Shard to Commander Ashlam Valorfist at Chillwind Camp, Western Plaguelands.", + ["T"] = "Alas, Andorhal", + }, + [212] = { + ["D"] = "One of my most famous dishes is Chilled Basilisk in Lime Vinaigrette. But the problem is... the meat is impossible to keep fresh, and I must serve the dish tonight for a noble\'s birthday!$B$BSo if you can bring me a Chilled Basilisk Haunch from a freshly-killed Cold Eye Basilisk, quickly, then I will owe you a king\'s feast!$B$BCold Eye Basilisks are known to roam along the beach dunes of northwestern Stranglethorn, so you have much traveling to do. And be swift!", + ["O"] = "Kill a Cold Eye Basilisk, get a Chilled Basilisk Haunch, and return it to Angus Stern in the Blue Recluse.$B$B", + ["T"] = "A Meal Served Cold", + }, + [213] = { + ["D"] = "He\'s done it this time! Bad enough that Gelriz\'s muscling out the moguls who were appointed by the trade princes, now he tries to cut in on the most notorious pirate!$b$bRevilgaz won\'t have it, and he\'s told me to take care of the problem in my own way.$b$bMy way? Theft. The Venture Co. geologists near Lake Nazferiti are deeply interested in those strange blue crystals they have been finding in the mines. Bring me samples of the stone from their geologists, I don\'t care what you have to do to get them.", + ["O"] = "Retrieve 8 Tumbled Crystals and return them to Kebok in Booty Bay.", + ["T"] = "Hostile Takeover", + }, + [214] = { + ["D"] = "It\'s no secret that the trademark of the Defias Gang is their Red Bandanas. But we\'ve learned that the material from which these bandanas are made signifies the member\'s rank.$b$bThat being said, I want you to eliminate as many high ranking Defias members as you can. The highest ranking members will undoubtedly be found in VanCleef\'s secret hideout. When you\'re done bring me 10 Red Silk Bandanas as proof of their deaths and I will reward you. Good luck, $N.", + ["O"] = "Scout Riell at the Sentinel Hill Tower wants you to bring her 10 Red Silk Bandanas.", + ["T"] = "Red Silk Bandanas", + }, + [215] = { + ["D"] = "Thank you for saving me, $N. I know how this looks, but...allow me to explain.$B$BI was charged by Lieutenant Doren to re-enlist with Kurzen\'s men, so that I might spy on them and bring sorely needed intelligence to the rebels. You saw here what I had thought would be my chance to infiltrate Kurzen\'s Compound. I was wrong, and again, thanks for saving me.$B$BThis was a top secret mission, so you must tell no one. But if you speak with Doren he will explain.", + ["O"] = "Speak with Lieutenant Doren at the Rebel Camp.", + ["T"] = "Jungle Secrets", + }, + [216] = { + ["D"] = "The Thistlefur furbolgs are threatening our expansion! Thistlefur Village to our east blocks the way between us here and the Splintertree Post. It\'s a path that would circumvent the village of Astranaar; without it, we give the Alliance an extra expansion path.$B$B$N, we must not allow... an expansion path gap!$B$BProceed to Thistlefur Village and thin out the furbolgs. You will be given compensation for this task, but more importantly you will be doing your duty for the Horde!", + ["O"] = "Take down 12 Thistlefur Avengers and 12 Thistlefur Shaman; most are located east of Zoram Strand in Thistlefur Village. Once completed, return to Karang Amakkar at Zoram\'gar Outpost, Ashenvale.", + ["T"] = "Between a Rock and a Thistlefur", + }, + [217] = { + ["D"] = "$N, our scouts have identified the leader of this recent Trogg incursion. It appears that these beasts in Loch Modan are following the lead of a chieftain named Grawmug. Grawmug is heavily guarded, however. Two of his most elite guards, Gnasher and Brawler, never leave his side.$b$bIf you feel yourself worthy, $N, I want you to lead the assassination mission on Grawmug and his two thugs. With the Trogg leadership dead, we just might stand a chance at pushing these beasts back into the ground.", + ["O"] = "Kill the Trogg leader, Grawmug, and his two guards, Gnasher and Brawler then report back to Captain Rugelfuss in the southern guard tower.", + ["T"] = "In Defense of the King\'s Lands", + }, + [218] = { + ["D"] = "My journal! They took it away to the cave. The one that had it... It was a big brute with some odd markings on his skin and face. I didn\'t get a much better look than that.$b$bYou\'ve had some luck with the trolls, maybe you could go get it back for me?", + ["O"] = "Grelin Whitebeard wants you to kill Grik\'nir the Cold, and retrieve his journal.", + ["T"] = "The Stolen Journal", + }, + [219] = { + ["D"] = "At last, friends of the Alliance!$b$bHelp... please... $b$bThe last thing I remember these foul Orcs overpowered our regiment. Most the men were killed. I took a strong blow to the head and everything went black. Now I am held captive in this cave. Help me, I am hurt badly.$b$bI\'ll need help getting back to town... please... you\'re my last hope...", + ["O"] = "Protect Corporal Keeshan on the journey back to Redridge.", + ["T"] = "Missing In Action", + }, + [220] = { + ["D"] = "Islen will have one more task for you before rewarding you with your next totem. The vial of water I\'ve given you is necessary for whatever that task is.$B$BGo now and find her. We shall meet again some day.", + ["O"] = "Bring the Vial of Purest Water to Islen Waterseer in the Barrens.", + ["T"] = "Call of Water", + }, + [221] = { + ["D"] = "You might have noticed some larger worgen wandering around with the Shadow Weavers in the woods? From what we can tell, these Dark Runners make up the bulk of the worgen numbers.$b$bOn my rangings, I\'ve also noticed that they have overrun the Rotting Orchard southwest of town. These worgen are a bit tougher than the last you faced.$b$bBe on your guard.", + ["O"] = "Kill 12 Nightbane Dark Runner worgen for Calor in Darkshire.", + ["T"] = "Worgen in the Woods", + }, + [222] = { + ["D"] = "Your previous accomplishments have convinced me that you are ready to take on the toughest worgen infesting the woods.$b$bOf the worgen that have made their new home here, the Vile Fangs and the Tainted Ones have proven the most dangerous. They\'ve settled down near some of the caves and in the mine to the south.$b$bFrom far away you can even see the light from their bonfires...", + ["O"] = "Kill 8 Nightbane Vile Fang and 8 Nightbane Tainted One worgen for Calor in Darkshire.", + ["T"] = "Worgen in the Woods", + }, + [223] = { + ["D"] = "Here you go, $n. Bring this message to Master Carevin.$b$b$b$bA few more like you, and we will outnumber the Night Watch! Perhaps then we could complete the work that we few carry on today.", + ["O"] = "Bring Calor\'s note to Jonathan Carevin.", + ["T"] = "Worgen in the Woods", + }, + [224] = { + ["D"] = "We need to protect the Loch, $N! With so many of the King\'s soldiers fighting valiantly on remote battlefields, we\'ve become overwhelmed on the home front. Troggs are tunneling up from every crevice! The Trogg infestation poses the largest threat to Ironforge. These disgusting mutants must be destroyed.$b$bWe need you, brave adventurer, to venture forth and lay waste to the Trogg threat. Slay 10 Stonesplinter Troggs and 10 Stonesplinter Scouts and report back.", + ["O"] = "Mountaineer Cobbleflint of the southern guard tower wants you to kill 10 Stonesplinter Troggs and 10 Stonesplinter Scouts.", + ["T"] = "In Defense of the King\'s Lands", + }, + [225] = { + ["D"] = "The weathered grave marker reads simply:$b$bMORGAN LADIMORE$b$b", + ["O"] = "Speak with Sirra Von\'Indi in Darkshire.", + ["T"] = "The Weathered Grave", + }, + [226] = { + ["D"] = "Sven and I have dangerous days ahead of us, what with the Necromancer to the east and all. And out here alone as we are, we have to hunt for our own food. It seems every time I\'m heading back to camp with some meat on me, starving or rabid dire wolves come out of the forest wanting a bite. It goes without saying, living out here is dangerous work!$B$BBut if you can rid us of some of those wolves, we\'d have an easier time of it. They mostly prowl north and east of here, near the river.", + ["O"] = "Kill 12 Starving Dire Wolves and 8 Rabid Dire Wolves, then return to Lars at Sven\'s Camp on the western border of Duskwood.", + ["T"] = "Wolves at Our Heels", + }, + [227] = { + ["D"] = "$b$bIf you would like to know more, you might ask Althea, she\'s been the one to handle the... trouble... with him of late.", + ["O"] = "Speak with Commander Althea Ebonlocke in Darkshire.", + ["T"] = "Morgan Ladimore", + }, + [228] = { + ["D"] = "From what my scouts tell me, Mor\'Ladim wanders throughout Duskwood, following a strange and meandering path through the cemetery. We buried him out past the house on the hill, you know where that is?$b$bThere isn\'t anything I can do to help you, but I wish you good luck.", + ["O"] = "Kill Mor\'Ladim, then return his skull to Commander Althea Ebonlocke in Darkshire.", + ["T"] = "Mor\'Ladim", + }, + [229] = { + ["D"] = "I should have told you this earlier...$b$bHow do I put this...$b$bMorgan may have believed that his family was all dead, but, in fact, his daughter Sarah Ladimore is now a Watcher. She\'s always been troubled by the... circumstances... surrounding her father\'s death. Perhaps you could go to bring the news to her.", + ["O"] = "Speak with Watcher Sarah Ladimore in Darkshire.", + ["T"] = "The Daughter Who Lived", + }, + [230] = { + ["D"] = "Digging through the mound, you find a small, dirt-stained book.$B$BThe book has no title, but...it has information Sven would like to know.", + ["O"] = "Bring the Book from Sven\'s Farm to Sven.", + ["T"] = "Sven\'s Camp", + }, + [231] = { + ["D"] = "Here, take this and lay it on his grave. Maybe... somehow, he\'ll know that I\'m okay, and that none of us hold him responsible for what happened.$b$b$b$bAnd... thank you, $n.", + ["O"] = "Take Sarah Ladimore\'s ring to Morgan Ladimore\'s grave.", + ["T"] = "A Daughter\'s Love", + }, + [232] = { + ["D"] = "The Royal Apothecary Society needs your assistance. Listen closely, and both of us may profit from my plan.$B$BApothecary Keever in the next room may be... touched... but his research does potentially bear fruit if it were pursued by a clever researcher. Fortunately, I am such a researcher. I want you to take this purchase order to Alessandro Luca, the proprietor of Blue Moon Odds and Ends; he\'ll give you a testing kit. When you have it, bring it back to me and I\'ll outline your task in detail.", + ["O"] = "Take the purchase order to Alessandro Luca in the Undercity.", + ["T"] = "Errand for Apothecary Zinge", + }, + [233] = { + ["D"] = "Hm, I don\'t suppose you\'d be willing to do a favor for me, $g lad : lass;? A stack of letters came through the pass today, but I don\'t have the time to send them along.$b$bThey\'re all addressed to Talin Keeneye. You can find him to the west down the road. He\'s set up camp next to the frozen lake.$b$bWhat do you say?", + ["O"] = "Deliver the stack of letters to Talin Keeneye.", + ["T"] = "Coldridge Valley Mail Delivery", + }, + [234] = { + ["D"] = "If I remember correctly, Grelin\'s camp is down the road to the southeast. No doubt he\'ll be eager to get his mail.", + ["O"] = "Deliver the letter to Grelin Whitebeard.", + ["T"] = "Coldridge Valley Mail Delivery", + }, + [235] = { + ["D"] = "Attention, young adventurers! The wilds of Ashenvale await you!$B$BThe Horde has established a strong presence in the lands north of the Barrens. Our two outposts - Splintertree Post and the Zoram Strand Outpost - strive to bring glory to the Horde! Those who would prove themselves should seek out guidance there. Of note: Senani Thunderheart in Splintertree Post, directly north of the Barrens, seeks adventurers willing to take part in a great hunt of Ashenvale!", + ["O"] = "Speak with Senani Thunderheart at Splintertree Post, Ashenvale.", + ["T"] = "The Ashenvale Hunt", + }, + [236] = { + ["D"] = "A few weeks ago, I dispatched Watcher Callahan and a few others to the northern border of Duskwood to deal with the wolf infestation. I haven\'t heard word from him for quite some time. If he followed my instructions, he\'ll be camped out on the road north from Darkshire. $B$BIf it\'s on your way, please check up on him and inform him that I am awaiting a progress report from him.", + ["O"] = "Speak with Watcher Callahan.", + ["T"] = "Awaiting Word", + }, + [237] = { + ["D"] = "Mountaineer Cobbleflint had nothing but good things to say about you, $r. For that reason I am going to entrust upon you a mission of utmost importance. We need to keep pressure on the invading Trogg forces until our Dwarven brethren return from the Alliance front.$b$bSet forth into the southern hills and kill 10 Stonesplinter Skullthumpers and 10 Stonesplinter Seers. Your attacks will buy us some time. Report back when your mission is complete.", + ["O"] = "Mountaineer Gravelgaw in the southern guard tower wants you to kill 10 Stonesplinter Skullthumpers and 10 Stonesplinter Seers and report back to him.", + ["T"] = "In Defense of the King\'s Lands", + }, + [238] = { + ["D"] = "The kit is ready, $n. No doubt that Apothecary Zinge will want this as soon as possible. Take it to her without delay, and let her know that I will add the cost of the kit to the Society\'s tab. Also, please extend to her my warmest salutations.$B$BWell, don\'t just stand there. Such is the life of a simple courier, yes?", + ["O"] = "Bring the Field Sampling Kit to Apothecary Zinge in the Undercity.", + ["T"] = "Errand for Apothecary Zinge", + }, + [239] = { + ["D"] = "The Garrison on our western border sends word of increasing gnoll and thief activity. They\'re requesting we send more Stormwind soldiers... but we just don\'t have any to spare!$B$BIf you can help, we could use it. Go and speak with Deputy Rainer at the Westbrook Garrison and see what he needs done.$B$BThe Garrison is down the road to the west. After you cross the bridge over the small brook it will be to the right.", + ["O"] = "Go to the Westbrook Garrison and speak with Deputy Rainer.", + ["T"] = "Westbrook Garrison Needs Help!", + }, + [240] = { + ["D"] = "And here we are - \"Crab\" Cakes ala Grual!", + ["O"] = "Return to Jitters with the Dusky Crab Cakes.", + ["T"] = "Return to Jitters", + }, + [241] = { + ["D"] = "Description", + ["O"] = "Log", + ["T"] = " HEY MISTER WILSON!", + }, + [242] = { + ["D"] = "Throm-ka, $c. There is no time to waste. Orcs of the Dragonmaw clan have fortified themselves in the valley to the south of here. $b$bThey have denied the Warchief\'s mandate, leaving us only one course of action. We will eliminate them so that they will no longer dirty the name of the Horde.", + ["O"] = "Kill 8 Dragonmaw Raiders, 3 Dragonmaw Bonewarders, and a Dragonmaw Battlemaster.", + ["T"] = "", + }, + [243] = { + ["D"] = "You will be headed to the Tanaris desert, testing the tissue consistency of the basilisks, scorpids, and hyena native there. Obtain tissue samples and use them with the testing kit in tow; expect a chunk of the samples to fail. I need eight acceptable samples of each creature type.$B$BIn addition, the goblins of Gadgetzan have a power source that must be used with this kind of modified kit. Speak to Chief Engineer Bilgewhizzle and acquire one for the kit.$B$BReturn to me only when you are successful.", + ["O"] = "Speak to Chief Engineer Bilgewhizzle in Gadgetzan about getting a power source for the testing kit.", + ["T"] = "Into the Field", + }, + [244] = { + ["D"] = "Hail, $c. I am charged to patrol this stretch of road. Although the road is safe for now, I\'ve seen gnoll encampments to the north and east of here.$B$BLakeshire must know of the gathering gnoll force! Report to Deputy Feldon in Lakeshire and tell him of the gnolls. Do this, and I\'m sure Feldon will offer you a scout\'s wage.$B$BFeldon\'s usually inspecting the area south of the bridge to Lakeshire.", + ["O"] = "Report to Deputy Feldon.", + ["T"] = "Encroaching Gnolls", + }, + [245] = { + ["D"] = "Hail, $c. Perhaps you\'ve seen those spiders that have taken over the western border? The eight-legged menaces are too much for us to handle, and the Commander hasn\'t enough manpower to spare so far from Darkshire.$b$bI hate to ask this of you, but you seem like you might be able to handle them. I can\'t promise you anything of great value, but I can reward you if you can help root out the filthy bugs.$b$bOh, and a word of advice, you\'ll want to avoid their venom if you can.", + ["O"] = "Kill 15 Pygmy Venom Web Spiders, and then report back to Watcher Dodds in Duskwood.", + ["T"] = "Eight-Legged Menaces", + }, + [246] = { + ["D"] = "We don\'t have men to spare, but something must be done about those gnolls you reported to me.$B$BScout southern Redridge for gnolls. Harry them, kill those you can and report back to me with a count of their numbers and an assessment of the threat they present. You may find those gnolls camped all along the southern road of Redridge.$B$BDo this for the Stormwind Army, $N, and you will be rewarded.", + ["O"] = "Kill 10 Redridge Mongrels and 6 Redridge Poachers, then report back to Deputy Feldon in Lakeshire.", + ["T"] = "Assessing the Threat", + }, + [247] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Hunt Completed", + }, + [248] = { + ["D"] = "I have been watching the Tower of Ilgalar, and can detect that Morganth is in conflict with the Orcs in Stonewatch Keep. I do not know the reason behind their contention, but you may aid me in unraveling this mystery.$B$BTake another Glyph of Azora, then go to the top of the intact watch tower beside Stonewatch Keep.$B$BFind a suitable object on which to place the Glyph. A chest or a jar -- some place where the glyph will not be noticed -- will suit my purpose.", + ["O"] = "Climb the intact watch tower beside Stonewatch Keep.$B$BFind a suitable container to place the Glyph of Azora.", + ["T"] = "Looking Further", + }, + [249] = { + ["D"] = "After much observation, I have discovered Morganth\'s plans.$B$BHe searches for the Scythe of Elune...and he may have found it! If he has, then the Redridge Mountains, and the kingdom of Stormwind, will soon feel his dark might.$B$BI am not prepared to pit myself against Morganth, but I fear he must be dealt with now. So you must enter the Tower of Ilgalar and face Morganth.$B$BDefeat him, and bring me his Pendant of Shadow. Do this, and the kingdom will owe you much.", + ["O"] = "Defeat Morganth.$B$BBring his Pendant of Shadow to Theocritus at the Tower of Azora in Elwynn Forest.", + ["T"] = "Morganth", + }, + [250] = { + ["D"] = "Thank the stars someone is concerned about the well-being of the Dam. First the destruction of the Thandol Span and then the pillaging of Dun Modr! I have no doubt that the Dam will be the target of the next Dark Iron threat. Most of the security detail here was reassigned to the Alliance Front, including my top inspector.$b$bThat\'s why I need you, $N. I spotted some Dark Iron Sappers milling about the eastern ramp of the Dam. Investigate the area and bring back a clue.", + ["O"] = "Investigate the area near the eastern ramp of the Dam and bring Chief Engineer Hinderweir a clue that might reveal what the Dark Iron Dwarves are up to.", + ["T"] = "A Dark Threat Looms", + }, + [251] = { + ["D"] = "Take the note you gave me to Sirra Von\'Indi. He\'s very learned in languages and ancient arts - if anyone here can translate this message, it\'s he.", + ["O"] = "Bring the Letter to Ello to Sirra Von\'Indi.", + ["T"] = "Translate Abercrombie\'s Note", + }, + [252] = { + ["D"] = "Oh my! If what is written on this note is true, then Abercrombie\'s done something...unspeakable.$B$BYou better bring the translated note back to Ello.$B$BAnd do so quickly, for I fear a doom already lumbers toward our town...", + ["O"] = "Bring the Translated Letter to Lord Ello Ebonlocke", + ["T"] = "Translation to Ello", + }, + [253] = { + ["D"] = "The Embalmer is a name told in one of our children\'s stories. He was a kindly alchemist, driven mad by the death of his wife, Eliza. To restore her, he used dark magic to place his own heart within the bosom of his dead spouse.$B$BThis revived Eliza...but it cursed her with a hunger for human flesh, forcing the Embalmer to keep her buried.$B$BHis heart is his power. Find his wife\'s grave, retrieve his heart, and bring it to me while it still beats. Do this and his power will be broken.", + ["O"] = "Find Eliza\'s grave. Retrieve the Embalmer\'s Heart from her, then return to Ello Ebonlocke.", + ["T"] = "Bride of the Embalmer", + }, + [254] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Digging Through the Dirt", + }, + [255] = { + ["D"] = "Two months just to hear from Ironforge that we\'ll be spared a handful of soldiers for our own defense, and another two months until they arrive! Bad enough that our town goes unprotected, but the excavation and the dam--the dam!--are open to attacks as well.$b$bI\'ve no choice then, it seems. I\'ll need hired arms.$b$bHow about you? You seem a likely sort, $c. A group of ogres has set up camp on the northeast of the lake. Perhaps you could recruit some others and help remove the threat to our town?", + ["O"] = "Magistrate Bluntnose of Thelsamar has hired you to kill 4 Mo\'grosh Ogres, 4 Mo\'grosh Brutes and 4 Mo\'grosh Enforcers.", + ["T"] = "Mercenaries", + }, + [256] = { + ["D"] = "By order of the Magistrate of Thelsamar:$b$bChok\'sul, the ogre presumed to be the leader and coordinator of attacks against the town of Thelsamar, Stonewrought Dam, and the excavation site, is wanted dead through any means necessary.$b$bMonetary compensation will be provided when proof is brought to the Magistrate of Chok\'sul\'s death.$b$bChok\'sul was last seen at the ogre encampment in the northeastern part of Loch Modan.", + ["O"] = "Kill Chok\'sul and bring his head to Magistrate Bluntnose of Thelsamar.", + ["T"] = "WANTED: Chok\'sul", + }, + [257] = { + ["D"] = "Think you can match wits with Daryl the Bold, huh? I should think not! Of course, you\'re more than welcome to try. Here\'s a challenge that should prove to be above your abilities, so don\'t feel too bad if you can\'t face up to it.$b$bA flock of buzzards has nested here in Loch Modan. Why don\'t you try to take down some of the beasts? Tell you what, if you meet my challenge in fifteen minutes, I\'ll give you my bow or gun.$b$b$b$bIt seems you haven\'t much to lose, anyways.", + ["O"] = "Kill 6 Mountain Buzzards and return to Daryl the Youngling in the Farstrider Lodge within 15 minutes.", + ["T"] = "A Hunter\'s Boast", + }, + [258] = { + ["D"] = "$nath, is it? I can tell you\'re bursting with pride over completing the first test, hm? As I told you before, it\'s no large feat.$b$bYou should try your hand at boar hunting. Trust me, this is no Coldridge Valley boar hunt, so you\'d best have a care with them. I\'ll give you just twelve minutes this time.$b$bDon\'t feel bad if you fail. I\'d give you the shirt off my back if you succeeded!$b$bHave I ever related to you the story of how I received my famous scar? No? It was two years ago...", + ["O"] = "Kill 5 Elder Mountain Boars and return to Daryl the Youngling in the Farstrider Lodge within 12 minutes.", + ["T"] = "A Hunter\'s Challenge", + }, + [259] = { + ["D"] = "Hello there, $n. I\'ve heard much about your exploits, and must say I\'m honored to meet you. I don\'t suppose you\'ve heard the story of Ol\' Kelt? Ah, well, Ol\' Kelt--Kelt Thomasin, that is--was once considered one of the finest hunters in all the realm. There wasn\'t much he hadn\'t done, but then, one day, he became obsessed with an ancient story... a myth, really. Well, as the stories go, a huge threshadon lives in the waters of the lake. Hogwash, if you ask me. If you\'re interested, you might talk to Kelt.", + ["O"] = "Talk to Kelt Thomasin.", + ["T"] = "", + }, + [260] = { + ["D"] = "Now, this will no doubt convince you that I am, as they say--and don\'t deny it, I know what they say--of an addled mind, obsessed with an impossible legend. An old dwarven legend, it is, of an enormous monster that lives in the depths of the Loch. I spent a good bit of my life trying to track it down, and I believe I got close, but alas, I fear old age has caught up to me. If you would like to try hunting down the monster of the Loch, bring me some treshadon teeth and claws.$B$B", + ["O"] = "Collect 5 Threshadon Teeth and 5 Threshadon Claws, then bring them to Kelt Thomasin.", + ["T"] = "", + }, + [261] = { + ["D"] = "I will be frank. We are at war with the Scourge. It is an evil that corrupts our people and infects our land. It must be stopped before it overwhelms us and drags our world into shadow. We of the Scarlet Crusade have sworn to fight the Scourge with body and soul.$B$BIf you are with us, then gather your courage and prove your allegiance--destroy the undead ravagers of Desolace, in the Valley of Bones to the south.$B$BDo this, and the Crusade will embrace you.", + ["O"] = "Destroy 30 Undead Ravagers, then return to Brother Anton at Nijel\'s Point.", + ["T"] = "Down the Scarlet Path", + }, + [262] = { + ["D"] = "I must know who was that skulker in the shadows I saw the night my family was killed!$B$BPlease, $N, you have shown your resourcefulness. Please find that shadowy figure. I must learn what secrets he holds!$B$BI do not have clues that you do not already know, but here - take the book you found at my farm. Perhaps some of the townsfolk can link this book with its owner.", + ["O"] = "Take the book you found at Sven\'s farm and show it to townsfolk in Darkshire.", + ["T"] = "The Shadowy Figure", + }, + [263] = { + ["D"] = "The Mountaineers tell me you are quite brave and capable, $N. We need a $r like you around here. The Trogg problem isn\'t getting any better. The reserves have been called to the front and we\'re all alone out here. But now that we have a seasoned $c here, let\'s see what you can do.$b$bGo out and kill 10 Stonesplinter Shaman and 10 Stonesplinter Bonesnappers. Let\'s see if you live up to your reputation, Trogg-Slayer.", + ["O"] = "Mountaineer Wallbang in the southern guard tower wants you to kill 10 Stonesplinter Shaman and 10 Stonesplinter Bonesnappers.", + ["T"] = "In Defense of the King\'s Lands", + }, + [264] = { + ["D"] = "Filthy scum! Leaves me for his damn crusade. Because \"the Light is the most important thing we have against the threats the undead pose.\"$B$BWell, what about his children?! What about ME?! Night after night I sat patiently waiting for him... always second to his blasted duty!$B$BWell, witness what \"justice\" brings you, $N! He\'s dead and I\'m bearing the very thing he was trying to stop!$B$BTake this piece of junk and put it on his tomb at the Sepulcher. I want nothing to do with it anymore... or him!", + ["O"] = "Place Clarice\'s Pendant on Yuriv\'s Tomb in Silverpine.", + ["T"] = "Until Death Do Us Part", + }, + [265] = { + ["D"] = "Here is your book back, $N, and I bid you fortune with your search. If you ask others in town, perhaps they can offer you more clues.$B$BAnd here is one more for you - although the author of this book is a stranger to Darkshire, the book itself was purchased here.", + ["O"] = "See if other townsfolk have clues about the shadowy figure.", + ["T"] = "The Shadowy Search Continues", + }, + [266] = { + ["D"] = "Here is your book, and good luck with your inquiries.$B$BYou might want to expand your search to the inn. If the person whom you seek spent time in town, then chances are someone saw him there.", + ["O"] = "Search the inn for clues about the shadowy figure.", + ["T"] = "Inquire at the Inn", + }, + [267] = { + ["D"] = "$C, you may or may not be aware of the Trogg threat looming over Dwarven lands. With the Ironforge Reserve called up to the Alliance Front, we are left with a fraction of the defense forces needed to keep these lands safe. My regiment is assigned to watch over the Gate here and we cannot leave our post for fear of invasion.$b$bBut we need some pressure put on those damned Troggs lurking in the hills. If you\'re up to the task, wage an assault on the Troggs. Bring me back 8 Trogg Stone Teeth as proof.", + ["O"] = "Bring 8 Trogg Stone Teeth to Captain Rugelfuss in the southern guard tower.", + ["T"] = "The Trogg Threat", + }, + [268] = { + ["D"] = "The book you found was only half finished. I had to leave it at Sven\'s farm when I fled there...$B$BHere. Take my completed journal to Sven. It describes more fully what happened at his farm.$B$BAlthough this journal has been my only company these past weeks, if giving it up keeps me from having to face Sven and his wrath, then I do it willingly!", + ["O"] = "Return to Sven with Jitters\' completed journal.", + ["T"] = "Return to Sven", + }, + [269] = { + ["D"] = "Go to the city of Stormwind and speak with Bishop Farthing in the Cathedral of Light. Give him Jitters\' journal and tell him you mean to face Morbent Fel.$B$BAlthough Stormwind has forsaken Darkshire, Farthing is a kind soul and very wise. He may help you on your quest to save us.$B$BYour mission is perilous, but hurry, $N. With each passing hour, the shadows of Duskwood grow ever darker.", + ["O"] = "Give Jitters\' Completed Journal to Bishop Farthing in Stormwind.", + ["T"] = "Seeking Wisdom", + }, + [270] = { + ["D"] = "Years ago, the Third Fleet of Kul\'Tiras sunk along the coasts of The Wetlands, an expanse of marsh north of the Dwarven kingdom of Ironforge. Aboard one ship was a load of Lightforge Iron.$B$BThis metal is precious to us, for items crafted from it strike with holy truth. If you are to face Morbent Fel, then you will need such a weapon.$B$BGo to Menethil Harbor and speak with my dwarven colleague Glorin Steelbrow. If that lost metal can be found, he\'ll know where to look.", + ["O"] = "Go to Menethil Harbor in the Wetlands, and speak with Glorin Steelbrow.", + ["T"] = "The Doomed Fleet", + }, + [271] = { + ["D"] = "I don\'t suppose you\'d be interested in a little payback for His Boldness? Daryl does have some skill, it pains me to say.$b$bA year ago, a large bear had been the target of the Farstrider Lodge, but none of the hunters had any luck with him. So, Daryl thought he\'d try his hand against him. All he had to show for his effort was that ugly scar over his eye.$b$bKill the bear, and I\'m sure even Daryl would be speechless for once.$b$bThe bear, Ol\' Sooty, can be found around his lair in the hills over Thelsamar.", + ["O"] = "Kill Ol\' Sooty then show your handiwork to Daryl the Youngling at the Farstrider Lodge.", + ["T"] = "Vyrin\'s Revenge", + }, + [272] = { + ["D"] = "For the second trial, you\'ll need the two halves that make the Pendant of the Sea Lion. One half draws power from the agility of the sea lion aspect, gliding through water; the other draws power from the incredible endurance of the sea lion aspect. Druids draw on both these traits equally to embody the aspect of their aquatic form.$B$BSpeak with the locals of Moonglade to learn where the parts may lie, and bring both here to join them together. Once formed, take the pendant to Dendrite Starblaze.", + ["O"] = "Find the Half Pendant of Aquatic Agility and the Half Pendant of Aquatic Endurance. Speak with the residents of Moonglade to learn clues as to where these items may be located.$B$BForm the Pendant of the Sea Lion from the two pendant halves. You need to be in proximity of the Shrine of Remulos to do this.$B$BBring the joined pendant to Dendrite Starblaze in the village of Nighthaven, Moonglade.", + ["T"] = "Trial of the Sea Lion", + }, + [273] = { + ["D"] = "It\'s not too late though, you\'re welcome to go look for Huldar. He can\'t have made it very far, strong as they are, Miran and Saean can only move so fast laden down with those barrels.$b$bThey\'re taking the normal route to the site, leaving south out of town and following the curve of the Loch.$b$bShouldn\'t have a problem finding them unless they\'ve already gotten there.", + ["O"] = "Speak with Huldar.", + ["T"] = "Resupplying the Excavation", + }, + [274] = { + ["D"] = "This ain\'t no ordinary blast powder. Look at the tiny silver crystals. And the distinct smell! Why it\'s clear as daylight that this is Seaforium Powder. Seaforium is harmless enough. But once it\'s wet it could blow Ironforge out of the mountain.$b$bThe chemical reaction can be defused by mixing four components: lurker venom, crushed Mo\'Grosh crystal, a crocolisk tear and this disarming colloid. Now tell Hinderweir before it\'s too late!", + ["O"] = "Ashlan Stonesmirk wants you to return to Chief Engineer Hinderweir and inform him of the new discovery.", + ["T"] = "A Dark Threat Looms", + }, + [275] = { + ["D"] = "I do not know why, but a festering grows within the Wetlands. Fen Creepers have risen. They are diseased, fevered blisters on the land, and for the fever to break they must be dispatched and allowed to settle back into the marshes.$B$BThe Fen Creepers shamble amidst the waterways of the Wetlands.", + ["O"] = "Kill 12 Fen Creepers, then return to Rethiel the Greenwarden in the Wetlands.", + ["T"] = "Blisters on The Land", + }, + [276] = { + ["D"] = "The Mosshide Gnolls have lived in the Wetlands peacefully for many years, but now grow in numbers. Their feet stamp flat the fen\'s bushes and flowers, and their foul axes cut too much wood to fuel their fires.$B$BThey are no longer in balance with the land. For the Wetlands to survive, the Gnolls must be reduced.$B$BKill 15 Mosshide Gnolls and 10 Mosshide Mongrels. Hunt them to the south, near the Dwarven gate of Algaz. After you do this, return to me.", + ["O"] = "Kill 15 Mosshide Gnolls and 10 Mosshide Mongrels, then return to Rethiel the Greenwarden in the Wetlands.", + ["T"] = "Tramping Paws", + }, + [277] = { + ["D"] = "The Mosshides are cutting the trees of the Wetlands, using the trees\' flesh to warm themselves with fire. I will suffer this pain no longer!$B$BRid the Mosshides of their crude flints, the tools they use to make fire. The flints are borne by all Mosshides except the smaller Mosshide gnolls and Mosshide mongrels.", + ["O"] = "Bring Rethiel the Greenwarden 9 Crude Flints.", + ["T"] = "Fire Taboo", + }, + [278] = { + ["D"] = "Begin collecting the disarming materials immediately, $N. Lurker Venom can be found on the indigenous spiders in Loch Modan. Crocolisk tears are found here in the Loch as well. But a Mo\'Grosh crystal will be very difficult to procure. The ogres to the northeast mine them but the crystals are a very rare commodity.$b$bWe need to be prepared to defuse a Dark Iron attack! Return to me once you\'ve collected the needed items and I will prepare the mixture.", + ["O"] = "Chief Engineer Hinderweir wants you to gather Lurker Venom, a Mo\'grosh Crystal, and a Crocolisk Tear.", + ["T"] = "A Dark Threat Looms", + }, + [279] = { + ["D"] = "Murlocs are crawling out from the deep waters and building their villages on the coastline. They are harassing our fishers and merchants and must be stopped.$B$BOne of these Murlocs, Gobbler, skulks with other Bluegill Murlocs and harries merchants along the road, always then retreating to the safety of the nearby Murloc hovels. Our merchants are in jeopardy, and we will pay to secure them.$B$BGobbler prowls the river inlet north of here. Find him, slay his kin, and bring me his head.", + ["O"] = "Kill 12 Bluegill Murlocs.$B$BSlay Gobbler and take his head.$B$BBring Gobbler\'s Head to Karl Boran in Menethil Harbor.", + ["T"] = "Claws from the Deep", + }, + [280] = { + ["D"] = "Earlier today I spotted some Dark Iron Insurgents swimming toward the Dam with a large keg. No Mountaineers were on hand to stop them! I\'m afraid they\'ve planted the Seaforium at the base of the Dam and it could blow at any minute! Let me combine all these ingredients into the Disarming Mixture. There we go.$b$bNow I need you to take this mixture and stir it into the keg before it\'s too late! Hurry!", + ["O"] = "Chief Engineer Hinderweir wants you to swim down to the base of the dam, locate the powder keg and stir in the Disarming Mixture to prevent an explosion.", + ["T"] = "A Dark Threat Looms", + }, + [281] = { + ["D"] = "Not long ago a merchant vessel, the Blind Princess, was raided by Murlocs. Although the ship escaped intact, much of its cargo was dragged overboard by the creatures, including a very valuable statuette of Terenas Menethil. We want that statuette recovered.$B$BSearch the coastal Murloc hovels for crates, barrels and other evidence of lost cargo. Find the Menethil Statuette and return it to me.", + ["O"] = "Search the crates and barrels at the coastal Murloc camps.", + ["T"] = "Reclaiming Goods", + }, + [282] = { + ["D"] = "I was planning on sending my apprentice to my brother Senir with my report, but I would feel much better were it placed in more... reliable hands. That is, of course, if you wouldn\'t mind?$b$bHmm... you\'ll have to take the tunnel to get to Kharanos.$b$bSpeak with Mountaineer Thalos before going through the tunnel. It\'s completely infested with troggs now.$b$bFollow the road back to Anvilmar, then keep heading east to the tunnel, Thalos is stationed nearby.", + ["O"] = "Speak with Mountaineer Thalos.", + ["T"] = "Senir\'s Observations", + }, + [283] = { + ["D"] = "The keg fizzles slightly.", + ["O"] = "The Disarming Mixture seemed to take effect. Return to Chief Engineer Hinderweir to report the good news.", + ["T"] = "A Dark Threat Looms", + }, + [284] = { + ["D"] = "You thoroughly search this cluster of Murloc hovels, and find no trace of the Menethil Statuette.$B$BPerhaps one of the two nearby hovels to the north and northeast will have more clues.", + ["O"] = "Search for the Menethil Statuette.", + ["T"] = "The Search Continues", + }, + [285] = { + ["D"] = "This grouping of Murloc hovels, after a thorough inspection, reveals nothing.$B$B...but you\'re certain that the next clue you find will be fruitful.$B$BOne of the hovels to the north must have the Menethil Statuette!", + ["O"] = "Continue searching the Murloc hovels for the Menethil Statuette.", + ["T"] = "Search More Hovels", + }, + [286] = { + ["D"] = "After pulling the barrel free from the muck and opening it, a silvery figurine is found packed in fine straw. It depicts a young, long-haired Paladin with hammer upraised.$B$BThis must be the Menethil Statuette! You must now return it to Karl Boran in Menethil Harbor.", + ["O"] = "Bring Karl Boran the Menethil Statuette.", + ["T"] = "Return the Statuette", + }, + [287] = { + ["D"] = "I\'m behind on my report, and could use your help, $n. I just managed to find where the trolls are holed up, but I saw so many trolls, I was afraid to go in.$b$bHere\'s what I need... Go down to the cave, poke around inside, kill a few of the trolls, then come back here.$b$bTake the road north out of Kharanos, when you get to the bridge, follow the frozen river west until you reach Iceflow Lake. You\'ll find Brewnall Village on the west bank. The Hold is southwest of the village.", + ["O"] = "Explore Frostmane Hold, and kill 5 Frostmane Headhunters for Senir Whitebeard in Kharanos.", + ["T"] = "Frostmane Hold", + }, + [288] = { + ["D"] = "I was once First Mate on the Wave Mistress, ship-of-the-line in the Kul Tiras Third Fleet. The Doomed Fleet. Doomed, for on its last voyage the fleet was attacked by Red Dragons. Dragons controlled by Orcs!$B$BWe didn\'t stand a chance against that dragonfire...and our fleet was burned and sunk off this here coast. I\'m the sole survivor of those poor vessels...$B$B...Oh, my head hammers and pounds! I\'ll need a fresh drink if I\'m to get a handle on this hangover and continue my tale.", + ["O"] = "Buy First Mate Fitzsimmons a Flagon of Mead.", + ["T"] = "The Third Fleet", + }, + [289] = { + ["D"] = "$B$BI am the sole survivor of the ill-fated Third Fleet of Kul Tiras, wrecked off the coast to the north. But although I\'m the only member of the fleet still breathing, I\'m not the only one still walking about! For on one of our ships was hidden a great, and terrible treasure, and the eerie power of it keeps the souls of my brothers trapped within the ships\' rotting hulls.$B$BBut if you can free some of my brothers, then perhaps you can break their curse.", + ["O"] = "Kill 13 Cursed Sailors, 5 Cursed Marines and First Mate Snellig. Bring Snellig\'s Snuffbox to First Mate Fitzsimmons in Menethil Harbor.", + ["T"] = "The Cursed Crew", + }, + [290] = { + ["D"] = "To break the curse and free all of my brethren, the...thing...stowed on my ship must be retrieved and cleansed! I don\'t know what it was, but I do know that it was stored securely in the ship\'s strongbox, which Captain Halyndor lorded over.$B$BMy old captain is still in my dreams. I know he walks my doomed ship, the Intrepid. Get the key from him, and use it to open the Intrepid\'s strongbox.$B$BThen, after you have the cursed thing, bring it to the priest Glorin Steelbrow in town.", + ["O"] = "Get the Intrepid Strongbox Key from Captain Halyndor.$B$BUse the key to open the Intrepid\'s Locked Strongbox.", + ["T"] = "Lifting the Curse", + }, + [291] = { + ["D"] = "Excellent! Take my report to Senator Barin Redstone. He\'s a sour type, so don\'t let his less-than-sunny disposition get to you. He\'s in Ironforge, in the chamber where King Magni holds court.$b$bDon\'t know the way to Ironforge? Take the road out of Kharanos north, cross the bridge, then follow the road east--there are large banners flanking the road--up the mountainside.$b$bBy the way, if you might avoid mentioning how you assisted me? Can\'t let them think I\'m not working hard out here, you know?", + ["O"] = "Deliver Senir\'s report to Senator Barin Redstone in Ironforge.", + ["T"] = "The Reports", + }, + [292] = { + ["D"] = "Opening the chest reveals a blackened orb, pulsing with an eerie light. It is the treasure of which Fitzsimmons spoke: a Cursed Eye of Paleth.$B$BTake the Cursed Eye of Paleth to the dwarven priest Glorin Steelbrow, in Menethil Harbor. Ask him how to remove the Eye\'s curse.", + ["O"] = "Bring the Cursed Eye of Paleth to Glorin Steelbrow.", + ["T"] = "The Eye of Paleth", + }, + [293] = { + ["D"] = "I can\'t lift the curse from the Eye of Paleth. The Eyes were crafted by Human Priests, so you\'ll have to go to Stormwind to find someone who can help you. Speak with Archbishop Benedictus. He is head of the Cathedral of Light in Stormwind. He can help.$B$BI hope, for your sake.", + ["O"] = "Bring Archbishop Benedictus the Cursed Eye of Paleth. Benedictus is in the Cathedral of Light, in the city of Stormwind.", + ["T"] = "Cleansing the Eye", + }, + [294] = { + ["D"] = "The situation is severe, that much is for sure. When we uncovered these bones it attracted the Raptors. These filthy beasts killed my brethren and trapped me, Merrin and the poor Prospector up here.$b$bHelp clear the Wetlands of these Raptors, $N. Mottled Raptors and Mottled Screechers are just West of the bluff there. Kill 10 of each, if you can.$b$bThat will be a good start to the vengeance I have planned for them.", + ["O"] = "Ormer Ironbraid at the Whelgar Excavation Site wants you to kill 10 Mottled Screechers and 10 Mottled Raptors.", + ["T"] = "Ormer\'s Revenge", + }, + [295] = { + ["D"] = "Now it\'s time to really make those dreaded Raptors regret their blood-thirst. Just down below there are scores of Mottled Scytheclaws and Mottled Razormaws. Make those rotten creatures pay by slaying 10 of each!", + ["O"] = "Ormer Ironbraid wants you to kill 10 Mottled Scytheclaw raptors and 10 Mottled Razormaw raptors then return to him at the Whelgar Excavation Site.", + ["T"] = "Ormer\'s Revenge", + }, + [296] = { + ["D"] = "While you were down there I happened to notice that one of those beasts stood out from the rest. He was bigger and more menacing. I bet he\'s the one who led the others here to cause the disruption to the dig site.$b$bI ask of you now one final task, $N. See to it that Sarltooth is brought to justice. And considering the gravity of his crimes, justice in this case means death! Bring me one of his talons as proof of his death.", + ["O"] = "Ormer Ironbraid at the Whelgar Excavation Site wants you to kill Sarltooth and return to him with one of his talons once the task is fulfilled.", + ["T"] = "Ormer\'s Revenge", + }, + [297] = { + ["D"] = "Recently, just before the Troggs surfaced within the site, we had uncovered a large number of strange, carved idols. But we didn\'t have the chance to study them, for soon after their discovery the Troggs chased us away from the ruins! And those idols have a strange effect on the Troggs. It makes them go berserk!$B$BBring me 8 idols - I want to study them, and I want them out of Trogg hands! You can find the idols on the Troggs infesting the site.", + ["O"] = "Bring Magmar Fellhew 8 Carved Stone Idols.", + ["T"] = "Gathering Idols", + }, + [298] = { + ["D"] = "I need a progress report sent to Thelsamar - a progress report, and a restatement of my request for more blastpowder! Here\'s the report. Take it to Jern Hornhelm. He\'s our local contact in Thelsamar.$B$BIt\'s not a difficult task, but it must be done.", + ["O"] = "Bring Ironband\'s Progress Report to Jern Hornhelm in Thelsamar.", + ["T"] = "Excavation Progress Report", + }, + [299] = { + ["D"] = "Just before the invasion I uncovered a large tablet called the Goaz Stone. The translated text breaks off in 4 places. The text speaks of a \"divine plan\" and a \"doomed prophecy.\"$b$bI fear we are running out of time. I am too old to go down and brave those beasts. But you are strong.$b$bScour the excavation site and uncover the 4 missing tablet fragments: Ados, Modr, Golm and Neru. Search for them in ancient artifacts or where the soil is loose. Bring them to me so I can begin unlocking the mystery!", + ["O"] = "Prospector Whelgar wants you to scour the excavation site in search of the 4 missing tablet fragments: Ados, Modr, Golm and Neru.", + ["T"] = "Uncovering the Past", + }, + [301] = { + ["D"] = "We\'ll need approval to get Ironband more blastpowder. You\'ll have to take his report to the Explorers\' League headquarters in Ironforge.$B$BHere\'s the report. Give it to Prospector Stormpike, and don\'t forget to duck after you deliver it. Stormpike is hotheaded, and he won\'t be happy to hear of Ironband\'s slow progress at the site.$B$BYou\'ll find Stormpike in the Assembly of Explorers.", + ["O"] = "Take Ironband\'s Progress Report to Prospector Stormpike.", + ["T"] = "Report to Ironforge", + }, + [302] = { + ["D"] = "If Ironband still needs blastpowder, then by Magni he\'ll have it! I sent the approval on ahead with a messenger to Jern Hornhelm in Thelsamar. He\'ll prepare the powder and other supplies to take to Ironband.$B$BAnd one more thing: I want you to personally see that the shipment of powder reaches its destination. The last one didn\'t, so keep your mind sharp and your eyes open.", + ["O"] = "Speak with Jern Hornhelm in Thelsamar.", + ["T"] = "Powder to Ironband", + }, + [303] = { + ["D"] = "War rages both home and abroad. While mighty Dwarven soldiers give their lives in far off territories in the name of the Alliance, our own lands fall prey to the evil deeds of the Dark Iron Dwarves. They laid waste to the Thandol Span. Dun Modr fell soon after.$b$bWe need you to gather force and push the front back. If you can kill 15 Dark Iron Dwarves, 5 Tunnelers, 5 Saboteurs and 5 Demolitionists, the reserve might arrive in time to finish the drive.$b$bNow make haste!", + ["O"] = "Motley Garmason at Dun Modr wants you to kill 15 Dark Iron Dwarves, 5 Dark Iron Tunnelers, 5 Dark Iron Saboteurs and 5 Dark Iron Demolitionists.", + ["T"] = "The Dark Iron War", + }, + [304] = { + ["D"] = "Many of my soldiers died in the battle of Dun Modr. My own brother perished when the West Bridge over the Thandol Span was destroyed. Aye, the Dark Iron dwarves are a devilish breed. From what Roggo was able to gather, the leader of this band of thugs in the Wetlands is a warlock named Balgaras the Foul. He is quite a coward however. He sends his soldiers to do his bidding but stays elusive, avoiding danger.$b$bIf you can find the spineless scum, slay him and bring me his ear. I will reward you, $c.", + ["O"] = "Kill Balgaras the Foul and bring his ear to Longbraid the Grim outside of Dun Modr.", + ["T"] = "A Grim Task", + }, + [305] = { + ["D"] = "Oh my, you must be the scout Longbraid said he would send! You cannot imagine how worried I have been.$b$bMy wife, Merrin, has been sending me letters each week for the past month. She is part of the Whelgar Excavation team. But it has been nearly two weeks since her last correspondence. Surely something is wrong!$b$bLongbraid said that he would send a scout to check up on things if we did not hear from the team soon. I assume that scout is you, $N. Find Merrin at the excavation site to the east!", + ["O"] = "Tarrel Rockweaver wants you to travel to the Excavation Site and contact Merrin Rockweaver.", + ["T"] = "In Search of The Excavation Team", + }, + [306] = { + ["D"] = "It was horrible! We were uncovering some rare artifacts and we began to discover these large bones.$b$bBefore we knew what was happening, these Mottled Raptors overwhelmed the dig site. Many lives were lost.$b$bOrmer here -- so brave -- saved the Prospector and me. He defended us as we ran for shelter. Now we are trapped. And our hard work lies in ruin.$b$bHere, take this note back to my sweet Tarrel. It will explain the situation to him.", + ["O"] = "Return to Tarrel Rockweaver with Merrin\'s note.", + ["T"] = "In Search of The Excavation Team", + }, + [307] = { + ["D"] = "The Silver Stream Mine to the east ran dry long ago. It was converted by the Miners\' League into a storage depot, but now Kobolds have moved in, putting their filthy paws on good, Dwarven tools!$B$BWe\'ll root out those vermin soon enough, but the League wants someone to get their gear out of the mine before we warriors tromp in there and break things. It\'ll be a tough delve - you might want cohorts at your side.$B$BThe gear is stored in Miners\' League Crates throughout the mine. Good luck.", + ["O"] = "Go to the Silver Stream Mine and collect 4 loads of Miners\' Gear.$B$BReturn to Mountaineer Stormpike.", + ["T"] = "Filthy Paws", + }, + [308] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Distracting Jarven", + }, + [309] = { + ["D"] = "Ready to go, $n?$b$bFirst, we need to get this powder to Ironband. It\'ll be a lot for me to carry, and these parts can get dangerous -- and who knows what else the Dark Irons might have in store for me.$b$bI\'ll feel a lot better with you coming along.", + ["O"] = "Ensure Miran and the shipment arrive at the excavation site, then inform Prospector Ironband.", + ["T"] = "Protecting the Shipment", + }, + [310] = { + ["D"] = "I have to admit, those Thunderbrews make some good drinks. But they need to learn that theirs isn\'t the only decent brew! Maybe you can help me teach them that lesson...$B$BHere, take this barrel of Barleybrew Scalder. Sneak into the basement of the Thunderbrew Distillery in Kharanos and switch it with one of their barrels of Thunder Ale. Then we\'ll see how their patrons like my brew over theirs!$B$BAnd if the barrels are guarded, then you might have to distract the guard ...", + ["O"] = "In the basement of the Thunderbrew Distillery in Kharanos, replace a barrel of Thunder Ale with a Barrel of Barleybrew Scalder.", + ["T"] = "Bitter Rivals", + }, + [311] = { + ["D"] = "Having inserted a barrel of Marleth\'s Scalder in the Kharanos Distillery\'s cellar, you grab a barrel of Thunder Ale as proof of the deed...", + ["O"] = "Bring the barrel of Thunder Ale to Marleth Barleybrew at the Brewnall Village.", + ["T"] = "Return to Marleth", + }, + [312] = { + ["D"] = "I had a month\'s worth of dried meats salted and locked away for the cold season. Kept it locked so the bears wouldn\'t get it! But while I was off hunting deer, that beast, Old Icebeard, made off with the meat locker. He won\'t be able to smash through that Thorium though. But I\'ll starve if I can\'t get my meats back.$b$bYou seem a bit more stealthy than me. Perhaps you can retrieve my stash? I\'ll never make it in and out of that cave fast enough with this bum leg of mine.", + ["O"] = "Retrieve Tundra MacGrann\'s dried meats from the stolen meat locker in Old Icebeard\'s cave.", + ["T"] = "Tundra MacGrann\'s Stolen Stash", + }, + [313] = { + ["D"] = "Driving a Siege Engine isn\'t for everyone. It takes an iron grip and nerves of steel...lucky I have both! How about you? How\'s your mettle? Want to prove it to me?$B$BWell...I\'m looking to make my engine, Trollplow, a little more cozy. How about you get me a heap of Wendigo Manes from the Grizzled Den, west of Kharanos. Those manes would make a great rug for Trollplow\'s inside deck!", + ["O"] = "Gather 8 Wendigo Manes and bring them to Pilot Stonegear.", + ["T"] = "The Grizzled Den", + }, + [314] = { + ["D"] = "We heard the cries in the middle of the night. Then this morning, sure enough, the herd was missing two rams. That dastardly beast known as Vagash has been preying on our livelihood. With most of King Magni\'s army off in distant lands fighting with the Alliance, there is no one to keep Vagash at bay.$b$bPerhaps you are brave enough to seek out the beast and slay him. Bring me one of his fangs and I will reward you. Vagash lurks just above the ranch here, but be warned, he is deadly.", + ["O"] = "Rudra Amberstill wants you to slay Vagash and bring his fang to her at the Ram ranch.", + ["T"] = "Protecting the Herd", + }, + [315] = { + ["D"] = "I\'m on a quest, a quest to make the perfect stout. I know I can do it -- brewing\'s in my blood. I just need to find the right recipe...$B$BThe Frostmane trolls grow a plant, shimmerweed, high up in the hills to the east. They use it in their strange, tribal rituals. We dwarves haven\'t found much use for it, but it has a unique taste...and I want to experiment with it in my brews!$B$BGet me some shimmerweed from Frostmane seers, or swipe it from the trolls\' shimmerweed baskets.", + ["O"] = "Bring 6 Shimmerweeds to Rejold Barleybrew in the Brewnall Village.", + ["T"] = "The Perfect Stout", + }, + [316] = { + ["D"] = "", + ["O"] = "", + ["T"] = "", + }, + [317] = { + ["D"] = "I\'m preparing to start a mission for the Siege Brigade. It\'s a long one, and I need to stock Jetsteam with a month\'s worth of supplies. So while Steelgrill is working on my tank, can you do some hunting for me?$B$BI\'ll need some fur for bedding, and boar meat for food. You can get meat from boars and fur from the bears... you can find them both in the snow fields south of the Grizzled Den.", + ["O"] = "Gather 4 Chunks of Boar Meat and 2 Thick Bear Furs, and deliver them to Pilot Bellowfiz at Steelgrill\'s Depot.", + ["T"] = "Stocking Jetsteam", + }, + [318] = { + ["D"] = "Rejold Barleybrew experiments with his brews. Some of them taste good, some bad, and some...well, some will lay all but the stoutest dwarf flat.$B$BHe lives at Brewnall Village, west of Kharanos, and one of his drinks, Evershine, is what I want. It\'ll help keep me warm while I\'m on the cold road.$B$BAnd...the blessed stuff burns so hot I can throw it in Jetsteam\'s furnace for a burst of power! That little tactic has gotten me out of more than one tight spot.", + ["O"] = "Get a cask of Evershine from Rejold Barleybrew in Brewnall Village.", + ["T"] = "Evershine", + }, + [319] = { + ["D"] = "I have a cask of Evershine handy, but...can you do me a favor? Brewnall village could use a hand against the wild animals that wander the nearby snows. Sometimes they wander close.$B$BWe\'re not afraid of these bears and cats and boars - no self respecting dwarf would be - but if you can take care of those animals for us, then we\'d have more time for our crafting and brewing.", + ["O"] = "Kill 6 Ice Claw Bears, 8 Elder Crag Boars, and 8 Snow Leopards, and then return to Rejold Barleybrew in Brewnall Village.", + ["T"] = "A Favor for Evershine", + }, + [320] = { + ["D"] = "Here\'s your cask of Evershine, $N. And again, thank you for the hunting earlier.", + ["O"] = "Give the cask of Evershine to Pilot Bellowfiz at Steelgrill\'s Depot.", + ["T"] = "Return to Bellowfiz", + }, + [321] = { + ["D"] = "The shipwrecks off the shore here are the doomed Third Fleet of Kul\'Tiras, burned and sunk by Red Dragons during the last Great War.$B$BThe Fleet hailed from Lordaeron, but one ship, an Elvish Destroyer: Flying Osprey, was with it. It was shipping a load of Lightforge Iron and joined the Third Fleet for protection. Ironic that it sunk to the same dragons...$B$BEnough history. The Flying Osprey is wrecked to the south of Menethil Harbor. If you find the Lightforge Iron there, bring it to me.", + ["O"] = "Search the wreckage of The Flying Osprey in the Wetlands.", + ["T"] = "Lightforge Iron", + }, + [322] = { + ["D"] = "There is a dwarven weaponsmith in the Dwarven District of Stormwind who can craft with lightforge iron. His name is Grimand Elmore.$B$BI\'ve packed the iron you found into a crate. Take it to Grimand and tell him your tale. I\'m sure he\'ll oblige someone on a quest such as yours, and craft for you a weapon - a weapon to give even Morbent Fel worry!", + ["O"] = "Take the Crate of Lightforge Ingots to Grimand Elmore in Stormwind.", + ["T"] = "Blessed Arm", + }, + [323] = { + ["D"] = "Morbent Fel is a necromancer, and an ally to the dark riders. I would pit you against the power of Morbent Fel, but I will not send you against that vile fiend without first knowing your strength.$B$BYou have already proven your bravery to me, but if you truly wish to face the necromancer, then you must now prove your skill against his minions.", + ["O"] = "Kill 15 Skeletal Raiders, 3 Skeletal Healers and 3 Skeletal Warders, and then return to Sven.", + ["T"] = "Proving Your Worth", + }, + [324] = { + ["D"] = "Having grabbed the single lightforge ingot from the waterlogged chest, it is clear that murlocs have stolen the rest. Hunt the murloc raiders near the Flying Osprey wreckage for the lost lightforge iron.", + ["O"] = "Gather 5 Lightforge Ingots, then return to Glorin Steelbrow in the Wetlands.", + ["T"] = "The Lost Ingots", + }, + [325] = { + ["D"] = "Here is the weapon against the fiend of which you spoke. You\'re all ready, $N. Best of luck to you, and I look forward to your tale of glory!", + ["O"] = "Bring Morbent\'s Bane to Sven in Duskwood.", + ["T"] = "Armed and Ready", + }, + [328] = { + ["D"] = "Although no mention of Private Thorsen is found in these records, hidden within the binding of one of Herod\'s ledger books is a small, brass key.$B$BAnd after further study of his notes, a few references to a \"secure strongbox\" are contained among various papers. The box is somewhere within the Stockpile - the cavern complex at the back of Kurzen\'s Compound.$B$BIf this secure strongbox is found, and the small brass key can open it, then perhaps the mystery behind Thorsen\'s detection will be revealed.", + ["O"] = "Use the Small Brass Key to open Bookie Herod\'s Strongbox.", + ["T"] = "The Hidden Key", + }, + [329] = { + ["D"] = "Among the valuables of the strongbox is a muddy, scribbled note. Although barely legible, it looks to be an itinerary for Private Thorsen. It details his patrol routes, who he speaks with and how he spends his time with the rebels. It\'s signed with only one letter: -M.$B$BBut whoever wrote this note must have stayed very close to Thorsen. Whoever wrote this note is the traitor within the rebel camp.", + ["O"] = "Take the Muddy Note to Lieutenant Doren at the Rebel Camp.", + ["T"] = "The Spy Revealed!", + }, + [330] = { + ["D"] = "The note you gave me is signed with an \"-M\"...I don\'t know what that could mean.$B$BBut...the note also says this person shared patrol routes with Thorsen last week. So whoever shared patrol with Thorsen last week must be the traitor!$B$BGo to Corporal Sethman. He handles the patrol schedules and can tell you who was with Thorsen.", + ["O"] = "Speak with Corporal Sethman.", + ["T"] = "Patrol Schedules", + }, + [331] = { + ["D"] = "Did Lieutenant Doren want you to report back to him with that patrol information?", + ["O"] = "Speak with Lieutenant Doren.", + ["T"] = "Report to Doren", + }, + [332] = { + ["D"] = "If you talk to anyone about wine, then you know we Gallinas sell the best wine in Stormwind. And we\'re not far, still in the Trade District along the city\'s lovely canals.$B$BHere, take this pamphlet. Bring it to my sister Suzetta at our shop for a complimentary bottle of our famous pinot noir. You won\'t regret it!", + ["O"] = "Go to the Gallina Winery, and bring Suzetta Gallina the Wine Ticket for a free bottle of wine.", + ["T"] = "Wine Shop Advert", + }, + [333] = { + ["D"] = "We\'ve been doing a lot of business lately. It seems like everyone is buying armor and sturdy clothes. Almost like they expect a cold, harsh season ahead...$B$BBut those are future worries. My worry today is that I\'m running out of knitted clothing to sell. I need another load from our supplier.$B$BIf you can take this request to Rema Schneider at the Canal Tailor and Fit Shop, I\'d be most grateful.", + ["O"] = "Go to the Canal Tailor Shop and bring Rema Schneider the Cloth Request from Harlan Bagley.", + ["T"] = "Harlan Needs a Resupply", + }, + [334] = { + ["D"] = "My son Thurman is an apprentice at the Larson Clothiers, in the Mage\'s Quarter. He was in a hurry today and forgot his shears and needles. I know a great $C like you must have important tasks at hand, but without his tools Thurman can\'t do his apprentice work!$B$BPlease, $N. Can you take my son\'s sewing kit to him? Larson Clothiers is one of two clothing shops in the Mage\'s Quarter - it\'s the one deeper in, near the Mage\'s Tower.", + ["O"] = "Go to the Larson Clothiers in the Stormwind Mage Quarter, and give Thurman Schneider his Sewing Kit.", + ["T"] = "Package for Thurman", + }, + [335] = { + ["D"] = "Lord Wishock is causing quite a stir amongst the House of Nobles. He was made aware of our little \"establishment\" down here and is lobbying for a full investigation. I have a plan to keep Wishock \"preoccupied,\" but I\'ll need your help. $b$bThere is a flower growing in the Garden of Stalvan on the outskirts of Darkshire. This small white flower is known as the Tear of Tilloa. I will also need a Musquash Root, found only at the very base of the falls far beneath the Stonewrought Dam in the Wetlands.", + ["O"] = "Zardeth the Black Claw wants you to bring him a Tear of Tilloa from Darkshire and a Musquash Root from the Wetlands.", + ["T"] = "A Noble Brew", + }, + [336] = { + ["D"] = "Lord Wishock, like all men, has his weaknesses. His happens to be a fondness for liquor. The hypocrisy is astounding. The trite fool spends his days trying to shut down our little \"tavern\" while his nights are spent upstairs, running up a bill he never pays. Well, let\'s see how Wishock likes this special brew I have prepared for him: Black Claw stout. It\'s got quite a kick, $n.$b$bTake it to him and see how he likes it. Most likely the old fool is milling about the Hall of Petitioners.", + ["O"] = "Take the Black Claw Stout to Lord Wishock in the Hall of Petitioners.", + ["T"] = "A Noble Brew", + }, + [337] = { + ["D"] = "Although the cover of this book is marred by scratches and caked with mud, the words \"The History of Stormwind\" can still be read along its spine. Upon opening the book, the seal of the Stormwind Library is clearly stamped on the book\'s first page.$B$BIt looks like someone checked out this book, and never returned it...", + ["O"] = "Return the book: The History of Stormwind, to the Stormwind Library.", + ["T"] = "An Old History Book", + }, + [338] = { + ["D"] = "Master Nesingwary will be so upset if he finds out!$b$bHe trusted me to proofread the manuscript of his novel, The Green Hills of Stranglethorn. Everything was going well, but a large gust of wind blew through the camp and scattered the pages everywhere!$b$bI was able to gather most of the pages but many are still strewn about the jungle. Collect the pages to complete each of the four chapters.$b$bI will help you organize them. Return the chapters to me once you have all four.", + ["O"] = "Collect the missing pages from The Green Hills of Stranglethorn manuscript. Once all four chapters are complete, return them to Barnil.", + ["T"] = "The Green Hills of Stranglethorn", + }, + [339] = { + ["D"] = "Chapter I was quite riveting! Master Nesingwary sets the backdrop for the story and makes mention of his hunting companions, including me! $b$bBut that\'s besides the point. Let me see which pages are still missing. It seems pages 1, 4, 6 and 8 are still out there somewhere in the jungle!", + ["O"] = "Bring pages 1, 4, 6, and 8 of Nesingwary\'s The Green Hills of Stranglethorn to Barnil Stonepot in order to complete Chapter I.", + ["T"] = "Chapter I", + }, + [340] = { + ["D"] = "Chapter II was chock full of exciting tales of panther and tiger hunting. I could just kick myself for letting the pages blow away! $b$b It seems I was able to recover all of the pages with the exception of pages 10, 11, 14, and 16.", + ["O"] = "Bring pages 10, 11, 14 and 16 of Nesingwary\'s The Green Hills of Stranglethorn to Barnil Stonepot in order to complete Chapter II.", + ["T"] = "Chapter II", + }, + [341] = { + ["D"] = "Chapter III was my favorite. It tells of Sir Erlgadin and Lady Rouack\'s first kill with a dwarven rifle. And the end of Chapter III, why, such a cliffhanger! $b$bLooks to me as though we still need pages 18, 20, 21 and 24 to finish the chapter. Those pages are out there somewhere. . .", + ["O"] = "Bring pages 18, 20, 21and 24 of Nesingwary\'s The Green Hills of Stranglethorn to Barnil Stonepot in order to complete Chapter III.", + ["T"] = "Chapter III", + }, + [342] = { + ["D"] = "Ah Chapter IV; the big finale! And what an ending it was! $b$bWe are only missing three pages for this chapter. We need pages 25, 26 and 27 to put Chapter IV back together.", + ["O"] = "Bring pages 25, 26, and 27 of Nesingwary\'s The Green Hills of Stranglethorn to Barnil Stonepot in order to complete Chapter IV.", + ["T"] = "Chapter IV", + }, + [343] = { + ["D"] = "I\'m giving a speech on the Fortitude of the Spirit, and I\'d like to recite passages from a particular book on metallurgy - \"The Stresses of Iron.\" A copy of this book should be in the Royal Library, within Stormwind Keep. Can you retrieve it for me? If so, then may the blessings of the Light be with you!$B$BThe Royal Library is very large, but the head librarian, Milton Sheaf, knows each shelf like it was his own son. Speak to him, he\'ll retrieve the book for you.", + ["O"] = "Go to the Royal Library in Stormwind Keep and speak with Milton Sheaf. He can find for you the book on metallurgy that Brother Kristoff needs for his speech.", + ["T"] = "Speaking of Fortitude", + }, + [344] = { + ["D"] = "The Stresses of Iron? Yes, I know the book. Quite a good one, written by the Dwarven miner Margulf Blaggon a few decades ago. He spent most his time deep in the mountains of Khaz Modan, digging ore. Smart fellow!$B$BBut where was I? Oh yes, the Stresses of Iron! I\'m afraid the book was moved to the Northshire Abbey. The caretaker of the Abbey\'s library, Brother Paxton, wanted to make a copy of the book for his own shelves.$B$BBut that was months ago. I wonder why it\'s taking him so long...", + ["O"] = "Speak with Brother Paxton in the Northshire Abbey.", + ["T"] = "Brother Paxton", + }, + [345] = { + ["D"] = "I\'ve been meaning to finish my copy of The Stresses of Iron, but...$B$BWell you see, I make my own ink for books I copy. It\'s my own recipe; it doesn\'t run or smear, and it dries very quickly Unfortunately, it dries too quickly! My last batch dried up before I could finish the copying job, and I haven\'t had the chance to make more ink!$B$BTo make more I need Rethban Iron Ore from the Redridge Mountains. Foreman Oslow in Lakeshire is my usual supplier.", + ["O"] = "Speak with Foreman Oslow in Lakeshire and ask him for Rethban Iron Ore.", + ["T"] = "Ink Supplies", + }, + [346] = { + ["D"] = "Now that I\'ve finished copying the book, here\'s the original Stresses of Iron. Thank you for your patience, and if you see Milton please tell him I\'m sorry for the long delay.", + ["O"] = "Return to Brother Kristoff in the Cathedral Square. Give him the book The Stresses of Iron.", + ["T"] = "Return to Kristoff", + }, + [347] = { + ["D"] = "Rethban Ore is named after the man who first found it, Bart Rethban. When smelted it\'s not as strong as iron, but its ore has a dark, flat color that some scribes use in their dyes. It can be found in the Rethban Caverns, north of here.$B$BWe usually have some in stock, but we\'re too busy preparing for Orc attacks to gather any. And besides...Redridge Gnolls are now living in the Rethban Caverns and their Drudgers are gathering the ore themselves.$B$BSo if you need some, you\'ll have to get it yourself.", + ["O"] = "Gather 5 loads of Rethban Ore and bring it to Brother Paxton in the Northshire Library.", + ["T"] = "Rethban Ore", + }, + [348] = { + ["D"] = "Sick...so...very s-s-sick....$b$b...have contracted Stranglethorn Fever...deadly v-v-virus...$b$b...only cure...is...is...to eat the heart of M-m-m-m-mokk the Savage...elusive white beast...$b$b...Witch doctor Unbagwa...only one who can s-s-summon....$b$b...seek Unbagwa in hidden cave on southern cape...$b$b...hurry...dying...dying....", + ["O"] = "Seek out Witch Doctor Unbagwa and have him summon Mokk the Savage. Bring the Heart of Mokk to Fin Fizracket.", + ["T"] = "Stranglethorn Fever", + }, + [349] = { + ["D"] = "temp text 02 - description", + ["O"] = "temp text 02 - log", + ["T"] = "Stranglethorn Fever", + }, + [350] = { + ["D"] = "That Marzon would be contacting a member of the Defias and have ties to Lescovar...$B$BHaving killed VanCleef and Thredd, it would be hard to see Lescovar brought to proper justice, as your evidence is nothing without their testimonies. That is not even considering the fact that Lescovar is a noble and well connected. It effectively makes him above the law.$B$BYou\'ll need other help. I loathe to do so, but there is someone I know that will aid us. You\'ll find Trias in the Trade District of the city.", + ["O"] = "Speak to Elling Trias in Stormwind.", + ["T"] = "Look to an Old Friend", + }, + [351] = { + ["D"] = "You have uncovered some sort of strange, egg-shaped device made from metal. Fiddling with one of its knobs springs the egg to life, as it opens up into some sort of gnomish robotic contraption! A voice from inside the robotic egg crackles to life.$B$B\"The name\'s Oglethorpe, and my homing robot has gone missing! I will reward you for its recovery! Please take this beacon to the robot. Excellent, I now have computed the coordinates for you! It crashed near the Gaping Chasm in Tanaris!\"", + ["O"] = "Bring the distress beacon to Oglethorpe\'s homing robot.", + ["T"] = "Find OOX-17/TN!", + }, + [352] = { + ["D"] = "Great Mammoda. Enormous, she was, with claws and teeth like swords. Now, I was caught off my guard, but I don\'t think being ready would have helped my cause much. One swipe and poof! Darkness. They say I\'m lucky to walk now...$b$bWell, not much enjoyment to be had in hearing that old story now, is there? Anyways, $n, if you\'d like to try yourself against her, the Lady of the Loch,", + ["O"] = "", + ["T"] = "", + }, + [353] = { + ["D"] = "The Stormpikes are a respected dwarven clan, and are well known for their fine and discerning tastes. So it\'s no wonder that Gringer Stormpike, a Mountaineer of Ironforge, commissioned me to craft him a weapon.$B$BThe weapon is finished, but... Mountaineer Stormpike is far away, in distant Loch Modan. If you plan on traveling to the north, can you deliver this package to him?$B$BMy last message from Mountaineer Stormpike said he\'s stationed at the northern guard tower in Loch Modan.", + ["O"] = "Deliver the Package for Stormpike to Mountaineer Stormpike in Loch Modan.", + ["T"] = "Stormpike\'s Delivery", + }, + [354] = { + ["D"] = "The Agamand family was the most prosperous family in Tirisfal Glades. I used to work their mills...before the Plague.$B$BWhen the Scourge first came, the Agamands fortified their home and convinced those in their employ to remain and help them defend. We were fools, but at least we were loyal fools.$B$BThe Agamands, in their pride, doomed us to undeath. And now they are minions of the Scourge!$B$BServe the Forsaken by defeating the Agamands who fell to the Plague. Serve me by bringing me their remains.", + ["O"] = "Bring Gregor\'s Remains, Nissa\'s Remains and Thurman\'s Remains to Coleman Farthing in Brill.", + ["T"] = "Deaths in the Family", + }, + [355] = { + ["D"] = "You have given me the remains of the Agamands, and satisfied my desire for revenge. But the Agamand Mills hold a threat to all the Forsaken, not just to me.$B$BI have spoken to Magistrate Sevren of your exploits against the Agamands, and he wishes to speak with you.", + ["O"] = "Speak with Magistrate Sevren in Brill.", + ["T"] = "Speak with Sevren", + }, + [356] = { + ["D"] = "The defenders on The Bulwark protecting Tirisfal from the Plaguelands are on constant alert. But sometimes Scourge will slip past them.$B$BOur success at the Bulwark depends on a one-front battle - we cannot allow an attack from the rear, nor can we allow our defenders\' supply line to be cut.$B$BAssist the Bulwark. Patrol east and slay any Scourge you find. Spend particular effort at the Balnir Farmstead to the east. It has become a haven for interloping Scourge.", + ["O"] = "Kill 8 Bleeding Horrors and 8 Wandering Spirits, then report back to Linnea at her camp.", + ["T"] = "Rear Guard Patrol", + }, + [357] = { + ["D"] = "There is a lich who dwells on the island in Brightwater Lake to the north. Although he is a free-willed Forsaken, he believes all other Undead are Scourge slaves and has his minions attack anyone who approaches him.$B$BBut because he is Forsaken, the Queen will want him. And if he is skilled in Necromancy, then his knowledge would be...quite useful to us.$B$BTo discover his identity and his talents, I must see his spellbook. Steal into his camp and acquire it, then return to me.", + ["O"] = "Bring the Lich\'s Spellbook to Bethor Iceshard in the Undercity.", + ["T"] = "The Lich\'s Identity", + }, + [358] = { + ["D"] = "The Mass Graves, southwest of Garren\'s Haunt to the north, were made to accommodate the...impressive...number of deaths Tirisfal suffered when the Plague first came. $B$BThe bodies in these graves have so far been spared an undeath, but the Scourge now send Rot Hide Gnolls to gather the corpses and use them to bolster their armies. This cannot be allowed!$B$BYour task is twofold: slay the Rot Hides at the Mass Grave and Garren\'s Haunt, and gather from them the Embalming Ichor that gives them life.", + ["O"] = "Kill Rot Hide Graverobbers and Rot Hide Mongrels. $B$BBring 8 Embalming Ichors to Magistrate Sevren in Brill.", + ["T"] = "Graverobbers", + }, + [359] = { + ["D"] = "I need a fresh report from our Deathguard waystation to the east.$B$BI must know if more Scourge forces have slipped past The Bulwark and into Tirisfal. Our vigilance on the border to the Plaguelands must be maintained - we can\'t let the Scourge get a stronger foothold here!$B$BTravel south along the road, then east at the fork to the waystation. Speak with Deathguard Linnea. She has the information I need.", + ["O"] = "Speak with Deathguard Linnea.", + ["T"] = "Forsaken Duties", + }, + [360] = { + ["D"] = "Now return to Magistrate Sevren with the information I gave you. He\'ll want it as soon as possible, so be swift.$B$BAnd if you see any Scourge on your way back, take them down - we can\'t let them wander our lands unchallenged.", + ["O"] = "Return to Magistrate Sevren in Brill.", + ["T"] = "Return to the Magistrate", + }, + [361] = { + ["D"] = "This is a letter written by Thurman, the eldest son of Gregor Agamand. It is addressed to an Yvette Farthing, though it does not appear to have reached her...", + ["O"] = "Find Yvette Farthing, and deliver to her the letter from Thurman Agamand.", + ["T"] = "A Letter Undelivered", + }, + [362] = { + ["D"] = "Devlin Agamand was the younger of two sons in the Agamand family, and in life the two could not be more different. Thurman was tall and gentle while his younger brother was weak and sharp tongued.$B$BWhen Agamand Mills fell to the Plague, I was not surprised to hear that Devlin was quick to succumb. His mad chattering can still be heard near the road leading to the Agamand Mills.$B$BI\'m collecting the remains of the Agamands, and I want poor Devlin. Find him, destroy him, and bring me his bones.", + ["O"] = "Slay Devlin Agamand, and bring Devlin\'s Remains to Coleman Farthing in Brill.", + ["T"] = "The Haunted Mills", + }, + [363] = { + ["D"] = "About time you woke up. We were ready to toss you into the fire with the others, but it looks like you made it.$b$bI am Mordo, the caretaker of the crypt of Deathknell. And you are the Lich King\'s slave no more.$b$bSpeak with Shadow Priest Sarvis in the chapel at the base of the hill, he will tell you more of what you must know.", + ["O"] = "Speak with Shadow Priest Sarvis.", + ["T"] = "Rude Awakening", + }, + [364] = { + ["D"] = "We Forsaken are at war with the Lich King\'s army of the Scourge: necromantically raised armies of the undead, foul beasts of the north, and tormented spectres.$b$bThe northern part of the village has become overrun with the Mindless Ones, and they must be destroyed. Destroy them, show them no mercy, our former brothers and sisters as they might be. The Fallen are nothing but The Lich King\'s slaves.", + ["O"] = "Shadow Priest Sarvis wants you to kill 8 Mindless Zombies and 8 Wretched Zombies.", + ["T"] = "The Mindless Ones", + }, + [365] = { + ["D"] = "What have we here? You look like a fledgling $c. If you hope to prove yourself to The Dark Lady, you need to learn the ways of The Forsaken.$b$bTo the west you\'ll find a farm. Humans infest the land like mold on a rotting corpse. And worse yet, the Scarlet Crusade patrols nearby from their tower. Teach those scum a lesson and steal 10 of their precious pumpkins.$b$bOnce you have 10, take them to Apothecary Johaan in Brill.", + ["O"] = "Steal 10 pumpkins from the farm to the west, just north of Deathknell and take them to Apothecary Johaan in Brill.", + ["T"] = "Fields of Grief", + }, + [366] = { + ["D"] = "Long ago Gunther and I, along with the now Scourge Necromancer Thule Ravenclaw, were friends and students within the Kirin Tor - a society of mages in Dalaran.$B$BGunther and I both fell to the Plague, but I thought he either remained dead, or was raised into the ranks of the Lich King. It is good to know he is free.$B$BWe must have him. I have placed a spell on his book that, when he sees it, will show him that I too am free of the Lich King. After knowing this, it is my hope that he will join us.", + ["O"] = "Return Gunther\'s Spellbook to him, on the island of Gunther\'s Retreat.", + ["T"] = "Return the Book", + }, + [367] = { + ["D"] = "Lady Sylvanas has called upon the Royal Apothecary Society. The Dark Lady believes our knowledge coupled with the newfound magic will provide the key to Arthas\'s demise. She has challenged us to concoct a new plague, a plague deadlier than any ailment on Azeroth. This new disease will bring Arthas\'s Scourge Army to ruin.$b$bMy studies show that the blood of beasts might prove to be the key. Bring to me 5 vials of darkhound blood so I can test my theory. ", + ["O"] = "Apothecary Johaan in the town of Brill wants you to collect 5 Vials of Darkhound Blood.", + ["T"] = "A New Plague", + }, + [368] = { + ["D"] = "While you were collecting samples for me, my experiments led me to realize that more reagents will be required for this new disease to spread properly. Poisoning some hapless victim is child\'s play. Plaguing an entire world proves to be a bit more complicated.$b$bI will need 5 Vile Fin Scales from Murlocs in the vicinity. You will find the creatures along the coast to the north or to the west.", + ["O"] = "Apothecary Johaan of the town of Brill needs 5 Vile Fin Scales from Murlocs in Tirisfal Glades.", + ["T"] = "A New Plague", + }, + [369] = { + ["D"] = "While you were out gathering, I uncovered some old text in one of my tomes that indicates that an ancient plague wiped out thousands of innocent victims. Later it was discovered that the deadly agent in the plague was preserved through the venom of Night Web Spiders.$b$bBring me some venom from a Vicious Night Web Spider to complete this experiment. I want to see if the contagious element from the venom will work with my new concoction. Rumor has it the spiders can be found in Eastern Tirisfal Glades.", + ["O"] = "Apothecary Johaan in the town of Brill wants you to bring him 4 samples of venom from a Vicious Night Web Spider.", + ["T"] = "A New Plague", + }, + [370] = { + ["D"] = "The strategic documents from Executor Arren contain all the details we need to wipe the human infestation from the lands. According to the information, The Scarlet Crusade has assigned Captain Perrine and a brigade to the ruined tower southwest of Brill.$b$bKill Perrine along with 3 Zealots and 3 Missionaries and report back to me.", + ["O"] = "Executor Zygand in Brill wants you to kill Captain Perrine, 3 Scarlet Zealots and 3 Scarlet Missionaries.", + ["T"] = "At War With The Scarlet Crusade", + }, + [371] = { + ["D"] = "We are still at war and the Scarlet Crusade grows in strength. The report Executor Arren sent me indicates Scarlet Crusaders have been raiding from the ruined tower in southeastern Tirisfal near the Balnir Farmstead under the command of Captain Vachon.$b$bKill Vachon along with 5 Scarlet Friars. It should prove to be a devastating blow to the Crusade!", + ["O"] = "Executor Zygand in Brill has commissioned you to slay Captain Vachon and 5 Scarlet Friars.", + ["T"] = "At War With The Scarlet Crusade", + }, + [372] = { + ["D"] = "Scarlet Crusaders have been raiding from the ruined tower in northern Tirisfal, past Faol\'s Rest. According to the information we have, a ruthless commander named Captain Melrache is in charge of this evil crew.$b$bI am entrusting you now with a special and dangerous mission. Slay Melrache and his two bodyguards, in the name of The Dark Lady.", + ["O"] = "Executor Zygand in the town of Brill wants you to assassinate Captain Melrache and his two bodyguards.", + ["T"] = "At War With The Scarlet Crusade", + }, + [373] = { + ["D"] = "Searching Edwin VanCleef\'s person, you discover, among other things, an unsent letter. It is addressed to Baros Alexston, the City Architect of Stormwind, City Hall, Cathedral Square.$B$BIt appears to be recently written and sealed.", + ["O"] = "Deliver the Letter to the City Architect to Baros Alexston in Stormwind.", + ["T"] = "The Unsent Letter", + }, + [374] = { + ["D"] = "Executor Zygand tells me you\'ve been out killing Scarlet Crusaders. Tirisfal Glades is crawling with them.$b$bVarimathras, lieutenant to The Dark Lady, is seeing to it personally that the scum of Azeroth, the Human race, gets wiped into oblivion. Here in Tirisfal Glades we face a particularly annoying breed of humans: The Scarlet Crusade.$b$bVenture forth and wage an offensive on the Scarlet Crusade, $c. Bring me back 10 Scarlet Insignia Rings as proof of your loyalty to Varimathras and The Dark Lady.", + ["O"] = "Bring 10 Scarlet Insignia Rings to Deathguard Burgess in Brill.", + ["T"] = "Proof of Demise", + }, + [375] = { + ["D"] = "It\'s so cold, now. The Plague of Undeath crawls through my veins like an icy serpent. The Mindless State will be upon me soon. But no doomed destiny will prevent me from serving our Dark Lady. When the call arose I sewed body bags for the fallen soldiers of Sylvanas\'s mighty army.$b$bNow my hands shake from the chill. If you would bring me five Duskbat Pelts and some Coarse Thread I could sew myself a blanket. Help me, $N, so that I can continue to serve the cause.", + ["O"] = "Bring five Duskbat Pelts and some Coarse Thread to Gretchen Dedmar in Brill.", + ["T"] = "The Chill of Death", + }, + [376] = { + ["D"] = "My duties include tending to our wounded warriors, tailoring armor and clothes, and assisting Shadow Priest Sarvis with whatever else he might need.$b$bFrom the look of it, you\'ll be enlisted in his service also... hunting the Mindless Ones, if I know his mind. Well, if you\'d like to stay in one piece--and I\'ve no doubt you do--perhaps I can help. I\'m running out of paws and wings, and if you bring me some, I\'ll find some armor for you. You\'ll find a good number of wolves and bats to the south.", + ["O"] = "Novice Elreth requires 6 Scavenger Paws and 6 Duskbat Wings.", + ["T"] = "The Damned", + }, + [377] = { + ["D"] = "As if the neglect for the residents of Duskwood was not bad enough, now the House of Nobles spits in the eye of the Darkshire Council with their decision to imprison Dextren Ward in Stormwind rather than behead the villain as per Lord Ebonlocke\'s sentence.$b$bWard was caught selling bodies from the cemetery to Morbent Fel, a crime punishable by death. Yet Stormwind claims Ward as their prisoner.$b$bAssassinate Ward in The Stormwind Stockade - bring me his hand - and I shall reward you.", + ["O"] = "Councilman Millstipe of Darkshire wants you to bring him the hand of Dextren Ward.", + ["T"] = "Crime and Punishment", + }, + [378] = { + ["D"] = "You have proven your loyalty to King Magni, $c. And your hatred for the Dark Iron scum is as great as my own.$b$bThere is a task I wish to complete myself but I am bound by honor to stay with Longbraid. But Roggo has gathered intelligence that proves Kam Deepfury was a conspirator in the attack on the Thandol Span. It was by Deepfury\'s planning that Longbraid lost his kin.$b$bDeepfury is being held for political reasons in the Stormwind Stockade. I want him dead, $N. For Longbraid! Bring me his head!", + ["O"] = "Motley Garmason wants Kam Deepfury\'s head brought to him at Dun Modr.", + ["T"] = "The Fury Runs Deep", + }, + [379] = { + ["D"] = "You want a power source. I can help you with that. Know what I want? I want something to drink! Bring me five Wastewander Water Pouches, and I\'ll give you the 4711-FTZ.$B$BNow... guess where you can find Wastewander Water Pouches! Why don\'t you walk up to one of the Wastewander nomads to the east of here and ask them for one. Let me know how that works out for you.", + ["O"] = "Bring 5 Wastewander Water Pouches to Chief Engineer Bilgewhizzle in Gadgetzan.", + ["T"] = "Slake That Thirst", + }, + [380] = { + ["D"] = "One of our greatest struggles is obtaining the natural resources we need to survive. Gold was scarce even in the height of the Alliance\'s power.$b$bThere is a gold mine to the northwest that has been overrun with spiders. We need gold from the mine, but we can\'t very well get it while the spiders are crawling around in there. I\'ve not much manpower to commit to the task, so we\'ll just have to do it little by little.$B$BGet up there and see what you can do for us, $n.", + ["O"] = "Executor Arren wants you to kill 10 Young Night Web Spiders and 8 Night Web Spiders.", + ["T"] = "Night Web\'s Hollow", + }, + [381] = { + ["D"] = "You\'ll be happy to know we appear to be making progress in the mine, thanks in no small part to your efforts. We can now turn our eyes to other concerns.$b$bMy scouts have reported that a detachment of the Scarlet Crusade is setting up a camp southeast of here. The Scarlet Crusade is a despicable organization that hunts us, and they will not rest until every undead--Lich King\'s Scourge or no--is destroyed. We must strike first!$b$bBe careful, their unholy zeal makes them dangerous adversaries.", + ["O"] = "Bring Executor Arren 12 Scarlet Armbands from Scarlet Converts and Scarlet Initiates.", + ["T"] = "The Scarlet Crusade", + }, + [382] = { + ["D"] = "Reports from my superiors in Brill indicate that an agent of the Scarlet Crusade was dispatched from the Scarlet Monastery and sent here to Deathknell. According to the reports, the messenger possesses important information on his person. I do not have further details, but whatever it is, we must have it!$b$bYou\'re the most qualified person I have to send, $n. Find that messenger and bring me whatever information you can find.", + ["O"] = "Kill Meven Korgal, the messenger, at the Crusader camp, then return any information you find to Executor Arren.", + ["T"] = "The Red Messenger", + }, + [383] = { + ["D"] = "These will need to be taken to my superior, Executor Zygand, in Brill. With this information, we\'ll be able to deal a decisive blow to the Scarlet Crusade. Your services have been useful here in Deathknell, but I need someone to deliver this to Zygand, and I believe he\'ll be able to find you more appropriate work.$b$bTake the road north out of Deathknell. Soon after entering Tirisfal proper, you\'ll hit a crossroads. Take the eastern fork, and keep going east. You\'ll pass Cold Hearth Manor along the way.", + ["O"] = "Deliver the Scarlet Crusade Documents to Executor Zygand in Brill.", + ["T"] = "Vital Intelligence", + }, + [384] = { + ["D"] = "Nothing my tavern patrons enjoy more than some Beer Basted Boar Ribs! Only problem is, the local trapper who used to bring me supplies enlisted in the King\'s Army to help with the war on the Alliance front. $b$bMaybe you can help me out? If you bring me six crag boar ribs and a Rhapsody Malt from the tavern here, I\'ll give you the family recipe for my famous Beer Basted Boar Ribs, not to mention a free sample! The secret\'s in the Malt!", + ["O"] = "Ragnar Thunderbrew in Kharanos wants 6 Crag Boar Ribs and a mug of Rhapsody Malt.", + ["T"] = "Beer Basted Boar Ribs", + }, + [385] = { + ["D"] = "Many a hunter is attracted to Loch Modan to hunt our famous crocs. There are always merchants who seek out crocolisk skins for clothing items or armor, and there are also some who enjoy the taste of their meat.$b$bWe do some trade in this, but not a huge amount, as the crocolisks are ferocious and have entrenched themselves on the islands in the Loch. But don\'t let me dissuade you, it\'s quite an experience, wrestling with the jaws of the beasts.$b$bWhy, this one time...", + ["O"] = "Get 5 pieces of Crocolisk Meat and 6 Crocolisk Skins for Marek Ironheart at the Farstrider Lodge.", + ["T"] = "Crocolisk Hunting", + }, + [386] = { + ["D"] = "Targorr the Dread served under Gath\'Ilzogg as supreme Executioner. His methods were ruthless, even by filthy orc standards. Men who fought bravely to defend the Kingdom were tortured on his whim. Now he is being held in the Stormwind Stockade, sentenced to die. Yet something is amiss. One of the bureaucratic nobles put a hold on his execution. I am sure foul play is in the works.$b$bPut an end to Targorr the Dread, $N. Travel to The Stockade and behead him before trickery is upon us.", + ["O"] = "Bring the head of Targorr the Dread to Guard Berton in Lakeshire.", + ["T"] = "What Comes Around...", + }, + [387] = { + ["D"] = "The uprising must be quelled! I need your assistance. If word gets out that the prison is overrun I will lose my job! This is a case of foul play if I\'ve ever seen one. But what\'s important now is forcing these prisoners into submission for the safety of Stormwind.$b$bThe punishment for insurgency is death. Kill some of these deviants! That ought to get things under control.", + ["O"] = "Warden Thelwater of Stormwind wants you to kill 10 Defias Prisoners, 8 Defias Convicts, and 8 Defias Insurgents in The Stockade.", + ["T"] = "Quell The Uprising", + }, + [388] = { + ["D"] = "Bitterness flows through my veins like a cold river. My grandson, Mac, was such a good boy. A mere 14 years old. When the army was sent off to the front, Mac took up arms to defend the city. He was a guard in The Stockade, where the Defias gang is locked up. Mac reprimanded some of the prisoners for tearing their wool blankets to make scarves, a symbol of their gang. For that Mac was stabbed in the back.$b$bI want revenge. Bring me 10 of their precious Wool Bandanas. They are the color of blood.", + ["O"] = "Nikova Raskol of Stormwind wants you to collect 10 Red Wool Bandanas.", + ["T"] = "The Color of Blood", + }, + [389] = { + ["D"] = "VanCleef and I were members of the Stonemasons Guild. Our main project was to rebuild Stormwind after the War.$B$BWhen we had finished our duties, we were cheated. The nobles refused to pay us for our work. Some of the more senior of the Stonemasons were offered governmental jobs, but VanCleef refused it out of loyalty to all the Stonemasons. He led a riot and left the city, swearing revenge.$b$bHis lieutenant, Bazil Thredd, might know more about VanCleef\'s plans. He\'s being held prisoner in the Stockade.", + ["O"] = "Speak with Warden Thelwater in the Stockade.", + ["T"] = "Bazil Thredd", + }, + [390] = { + ["D"] = "", + ["O"] = "", + ["T"] = "", + }, + [391] = { + ["D"] = "Let\'s get one thing straight, $N: I don\'t trust you. But, with the situation as it is, you probably won\'t make a difference.$B$BSo here\'s how it\'s going to be: go down there and have your talk with Thredd. If you\'re really on our side, then kill him and bring me his head when the job\'s done. And if it turns out you\'re on his side, and don\'t come out... when we find you, you\'ll die along with the rest of the maggots.", + ["O"] = "Kill Bazil Thredd and bring his head back to Warden Thelwater at the Stockade.", + ["T"] = "The Stockade Riots", + }, + [392] = { + ["D"] = "During the first years of Thredd\'s imprisonment, he never had any visitors. I figured that he was no longer of use to the Brotherhood, so they abandoned him.$B$BAnyway, a few months ago, that all changed; he started to get regular visits... once, maybe twice a week. It was a strange man--the quiet type. I had my suspicions, but all his papers checked out.$B$BHis documents claimed his name was Maelik; here\'s his description. I don\'t think he\'ll be coming to visit Thredd anymore.", + ["O"] = "Bring the Sealed Description of Thredd\'s Visitor to Baros Alexston in Stormwind.", + ["T"] = "The Curious Visitor", + }, + [393] = { + ["D"] = "I really haven\'t a clue, $N. There is someone else who might be able to help you, and it so happens that he owes me a favor for--well, let\'s not get into that. Master Mathias Shaw of SI:7 can be found in the barracks in Old Town. Shaw has his thumb on most of the shady, or underhanded dealings of the city.$B$BIf anyone knows, it\'d be him.", + ["O"] = "Bring the Sealed Description of Thredd\'s Visitor to Master Mathias Shaw in Stormwind.", + ["T"] = "Shadow of the Past", + }, + [394] = { + ["D"] = "Find Shaw in Old Town. Let him know that the Lescovar threat has been dealt with and about your involvement in the Lord\'s plots against the city. I\'m sure he\'ll be proud to have another hero among Stormwind\'s citizens.$B$BHe\'ll more than likely send you off to meet with the Prince or some other noble. Don\'t let it get to your head, $N. The nobles can think they rule the city all they want, but some things remain out of their hands.", + ["O"] = "Speak to Mathias Shaw in Stormwind.", + ["T"] = "The Head of the Beast", + }, + [395] = { + ["D"] = "Ah, I almost forgot. Alexston came while you were away, he wished to speak with you. No doubt he wishes to report the goings-on of the Defias Brotherhood to the nobles.$B$BA bit of advice, $N: if anyone should ask, I would provide all details but that it was your hand that slew Lescovar. Trust me. I am... acquainted... with the ways of such things.$B$BAnd as far as Trias goes, well, speak to no one of him... ever... if you can help it.", + ["O"] = "Speak with Baros Alexston in Stormwind.", + ["T"] = "Brotherhood\'s End", + }, + [396] = { + ["D"] = "I have prepared a report for the King. I believe you should be the one to deliver it to him, along with an account of your findings. Do not worry, there is no doubt that he will commend you for doing your duty to the people of Stormwind.$B$BYour audience is scheduled soon, so you\'d best hurry, it\'s a bit of a ways to Stormwind Keep.", + ["O"] = "Deliver Baros Alexston\'s report on the Defias Brotherhood to King Varian Wrynn in Stormwind Keep.", + ["T"] = "An Audience with the King", + }, + [397] = { + ["D"] = "I hear Lord Wishock enjoyed his beverage. $b$bYou have served us well, $N. The Warlocks of Stormwind will be able to practice our ways without disturbance, thanks to you. For your efforts, I have prepared a special gift for you. Speak with my servant, Zggi, and claim your reward.", + ["O"] = "Speak with Zggi, the servant of Zardeth the Blackclaw, to claim your reward.", + ["T"] = "You Have Served Us Well", + }, + [398] = { + ["D"] = "Wanted: Maggot Eye!$b$bA foul beast, even by Gnoll standards, Maggot Eye has been sentenced to death for his crimes against The Forsaken. This despicable villain has been stealing corpses for use by the Lich King\'s army. Maggot Eye was last seen pillaging the lands near Garren\'s Haunt to the north of Brill.$b$bThe town of Brill hereby offers a reward to the capable soul who can carry out the execution. Show Executor Zygand the villain\'s paw once the deed is done.$b$bMercy is for the weak.", + ["O"] = "Kill Maggot Eye and return to Executor Zygand in Brill with his paw for a reward.", + ["T"] = "Wanted: Maggot Eye", + }, + [399] = { + ["D"] = "It seems an eternity since I was a boy working the farm in Westfall. They say you can never go back, and it\'s true. Doubly true in my case, my family\'s home has been burned down and taken over by thieves.$b$bI have spoken with my father about the fate of some of my possessions, including my first compass. He was unable to save them. However, he also says that they should be hidden away on the farm.$b$bYou\'ll find the Alexston Farmstead west of Sentinel Hill. Perhaps you could go and retrieve it for me?", + ["O"] = "Go to Baros Alexston\'s house in Westfall and search for his compass, then return it to him in Cathedral Square of Stormwind.", + ["T"] = "Humble Beginnings", + }, + [400] = { + ["D"] = "Beldin Steelgrill owns the local mechanic shop, and he\'s the best siege engine tech there is! But he\'s not forgiving to his tools. I swear he almost breaks more arclight spanners than we can supply him with!$B$BWe just filled his last order for tools. If you deliver it to him I\'m sure he\'ll make it worth the effort.$B$BHis shop, Steelgrill\'s Depot, is just northeast of Kharanos. And it\'s a local haunt for veteran siege engine pilots, so keep your ears open for opportunities while you\'re there.", + ["O"] = "Deliver Steelgrill\'s Tools to Beldin Steelgrill.", + ["T"] = "Tools for Steelgrill", + }, + [401] = { + ["D"] = "I\'m almost finished translating that note. If you come back in a few moments I should be done.", + ["O"] = "Wait a moment, then speak with Sirra Von\'Indi again.", + ["T"] = "Wait for Sirra to Finish", + }, + [403] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Guarded Thunderbrew Barrel", + }, + [404] = { + ["D"] = "Scourge have trickled into Tirisfal Glades and have infested the area west of Brill, near the old bridge.$B$BGo there and beat back the rotting dead and ravaged corpses you find. Scatter their bones and bring back their putrid claws, and the Deathguards will reward you.", + ["O"] = "Bring 7 Putrid Claws to Deathguard Dillinger in Brill.", + ["T"] = "A Putrid Task", + }, + [405] = { + ["D"] = "Bethor Iceshard, a high-ranking and powerful mage in the Undercity to the south, commands me to send him an agent with proven worth against the Scourge. You, $N, will be that agent.$B$BPresent these orders to Bethor. He will then instruct you on your mission. I don\'t know its details, but it deals with recruiting a wayward Lich. And it will be dangerous.$B$BSo ready yourself, $C. You must not fail.$B$BYou may find Bethor in the Magic Quarter of the Undercity.", + ["O"] = "Present Sevren\'s Orders to Bethor Iceshard in the Undercity.", + ["T"] = "The Prodigal Lich", + }, + [406] = { + ["D"] = "", + ["O"] = "", + ["T"] = "", + }, + [407] = { + ["D"] = "Harmless pumpkins, right? Or so it would seem. If we are to defeat Arthas\'s advances from the North and the Human infestation from the South we need to start realizing the full potential of our gift of undeath.$b$bWith a little ingenuity a simple pumpkin becomes an agent for our Dark Lady. This pumpkin, laced with my latest formula, will prove to be quite a treat.$b$bYet another Scarlet Zealot has been captured and is being kept in the cellar of the Gallow\'s End Tavern. Take this pumpkin to the fool.", + ["O"] = "Take the Laced Pumpkin to the Captured Scarlet Zealot who is being held in the cellar of the Gallow\'s End Tavern.", + ["T"] = "Fields of Grief", + }, + [408] = { + ["D"] = "The Agamand Mills area has become a foothold for the Scourge. Their strongest point is the Agamand Family Crypt where their local military leader, a skeleton named Captain Dargol, has headquartered. With Necromancy he has raised the ancestors of the Agamands and plans to use them against us.$B$BThis cannot pass, and you must stop it. Travel to the Agamand Family Crypt and defeat the raised Agamand ancestors.$B$BAnd, bring me the skull of Captain Dargol.", + ["O"] = "Kill 8 Wailing Ancestors and 8 Rotting Ancestors.$B$BKill Captain Dargol, and bring his skull to Magistrate Sevren in Brill.", + ["T"] = "The Family Crypt", + }, + [409] = { + ["D"] = "You say you are not bound by the will of the Lich King, and the enchantment Bethor placed upon my book corroborates this. But before I believe you I must have proof that you are enemy to the Scourge.$B$BThere is an old, bloody altar just off the southern coast of this island. it is used by a powerful Scourge agent, Lillith Nefara.$B$BTake a Candle of Beckoning from this crate here. Light it on the altar and Lillith will awake. Destroy Lillith, and I will believe you are the Lich King\'s foe.", + ["O"] = "Obtain a Candle of Beckoning.$B$BSummon Lillith Nefara and kill her.$B$BReturn to Gunther on his island.", + ["T"] = "Proving Allegiance", + }, + [410] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Dormant Shade", + }, + [411] = { + ["D"] = "Take this Nether Gem to my old comrade Bethor. It will let us communicate ... and I have much to tell him.", + ["O"] = "Bring the Nether Gem to Bethor Iceshard in the Undercity.", + ["T"] = "The Prodigal Lich Returns", + }, + [412] = { + ["D"] = "Upon further analysis of the Gnomeregan situation, it would appear as though we not only failed to eradicate the troggs but we also happened to turn most of the gnomish race into horrific, mindless, evil-doing leper gnomes.$b$bOzzie and I plan to reverse the horrible leper effect with our latest invention: The Recombobulator. The machine is almost complete but we are in dire need of some Restabilization Cogs and Gyromechanic Gears. Retrieve some from the leper gnomes out front of Gnomeregan for us.", + ["O"] = "Bring Razzle Sprysprocket in Kharanos 8 Restabilization Cogs and 8 Gyromechanic Gears.", + ["T"] = "Operation Recombobulation", + }, + [413] = { + ["D"] = "I\'d like my brother Wellart to try my new Shimmer Stout. He\'s a Mountaineer stationed in the southern guard tower, one of two towers on the border to Loch Modan.$B$BHe may not be a brewer like the rest of us Barleybrews, but he loves his drinks and I know he\'ll like this one.$B$BCan you bring him this Barrel of Shimmer Stout for me?", + ["O"] = "Take the Barrel of Shimmer Stout to Mountaineer Barleybrew.", + ["T"] = "Shimmer Stout", + }, + [414] = { + ["D"] = "I\'ve been drinking more of that Shimmer Stout my brother made - it\'s great stuff! I want a fellow Mountaineer to try it. His name\'s Kadrell, and he\'s usually patrolling the road through Thelsamar in Loch Modan.$B$BTo get to Thelsamar, go southeast through the tunnel, then turn northeast when the path forks into a road. Follow that road straight into Thelsamar.$B$BGive Mountaineer Kadrell this cask of Shimmer Stout and see what he thinks!", + ["O"] = "Take the Cask of Shimmer Stout to Mountaineer Kadrell.", + ["T"] = "Stout to Kadrell", + }, + [415] = { + ["D"] = "Rejold Barleybrew at Brewnall Village has been asking for you.$B$BHe wants to talk to you about a new drink he\'s been brewing...said something about you helping him with it. You might want to head back to Brewnall Village and see what he has to say.$B$BThere could be some free booze in it for you...", + ["O"] = "Speak with Rejold Barleybrew.", + ["T"] = "Rejold\'s New Brew", + }, + [416] = { + ["D"] = "We have a real infestation problem to the west. Tunnel rat kobolds have moved into the foothills, setting up dens and fouling our land with their filth!$B$BWe want them eliminated. Hunt them, bring me their ears and earn their bounty.$B$BYou can find tunnel rat kobolds and their dens west of Thelsamar, littered along the mountainside.", + ["O"] = "Bring 12 Tunnel Rat Ears to Mountaineer Kadrell in Thelsamar.", + ["T"] = "Rat Catching", + }, + [417] = { + ["D"] = "Hildelve wrote in his journal that he was attacked by Mangeclaw, a \"huge Ice Claw Bear.\" He drove off the beast, but not before it mauled him savagely.$B$BJudging from the state of Hildelve\'s body, Mangeclaw must have later returned and killed him.$B$BHowever, Hildelve wrote in his journal his one, final wish:$B$BRevenge against Mangeclaw.", + ["O"] = "Kill Mangeclaw.$B$BBring his Mangy Claw and Hildelve\'s Journal to Pilot Hammerfoot.", + ["T"] = "A Pilot\'s Revenge", + }, + [418] = { + ["D"] = "There\'s never a shortage of empty bellies here in Thelsamar, kids running in and out, workers from the excavation coming in after a hard day\'s work. We\'re famous for our blood sausages, I don\'t suppose you\'ve ever tried them?$b$bNo? Well, around here you\'ve got to work for your meals, and don\'t think just because you\'re a fancy $c, you\'ll be any exception.$b$bI\'ll need bear meat, boar intestines for the casings, and spider ichor for spice. You get me some of those, and leave the cooking to Vidra!", + ["O"] = "Bring 3 pieces of Bear Meat, 3 Boar Intestines, and 3 Spider Ichor to Vidra Hearthstove in Thelsamar.", + ["T"] = "Thelsamar Blood Sausages", + }, + [419] = { + ["D"] = "My friend and fellow Siege Engine pilot, Mori Hildelve, is lost in the hills. We were looking for a rare ore that\'s needed for a high-grade blastpowder, and during our search he drove his engine up a steep hill and busted it!$B$BStill convinced that ore was in these mountains, Hildelve charged me to guard our engines while he continued on foot, searching.$B$BIt\'s been days, and I\'ve heard some beastly growls in the hills at night. Mori\'s tough as nails, but I\'m worried.$B$BPlease, $N. Find him.", + ["O"] = "Find Pilot Hildelve.", + ["T"] = "The Lost Pilot", + }, + [420] = { + ["D"] = "The troggs in the tunnel are extremely hostile, and haven\'t shown any hesitation in attacking travelers through the tunnel. You seem tough enough, though, so you should probably be safe.$b$bDirections? If you\'re going to speak with Senir, you\'ll find him in Kharanos.$b$bMake your way through the tunnel, and after you come out on the other side, just keep following the road, it\'ll run right into Kharanos.", + ["O"] = "Deliver Grelin\'s report to Senir Whitebeard in Kharanos.", + ["T"] = "Senir\'s Observations", + }, + [421] = { + ["D"] = "Lady Sylvanas has charged Varimathras with the conquering of the human and dwarven lands to the south.$b$bBut that fool, Arugal -- charlatan of Dalaran and now cursed beast of Shadowfang Keep -- let his reckless magic wreak havoc with the strategic stronghold of Silverpine Forest.$b$bI need someone skilled in the ways of combat to help clean up Arugal\'s mess. Prove yourself to me by killing 5 Moonrage Whitescalps. The wretched beasts can often be found just off the road, down the hill below.", + ["O"] = "Dalar Dawnweaver at the Sepulcher wants you to kill 5 Moonrage Whitescalps.", + ["T"] = "Prove Your Worth", + }, + [422] = { + ["D"] = "How Arugal gained acceptance within the Kirin Tor is beyond me. His spell-casting knowledge seemed as transparent as a blown glass bauble.$b$bWhat\'s important now is learning exactly what magic Arugal used so that I can turn it against him and secure Silverpine Forest for the Dark Lady.$b$bArugal first stayed at the wheat farm just north of the bridge. One of the Deathstalkers reported seeing some spellbooks but could not secure them. Retrieve for me the spell labeled Remedy of Arugal from those books.", + ["O"] = "Retrieve the Remedy of Arugal for Dalar Dawnweaver at the Sepulcher.", + ["T"] = "Arugal\'s Folly", + }, + [423] = { + ["D"] = "After examining Arugal\'s work my worst suspicions were confirmed. The old hack was not qualified to clean chamber pots in Dalaran let alone represent the Kirin Tor in its most dire hour. Fools!$b$bArugal used enchanted items to reinforce his weak magic. I need to examine these items first hand. Travel forth and slay Moonrage Gluttons and Moonrage Darksouls until you have collected enough of their enchanted shackles for my research. The foul creatures have been seen to the north and east.", + ["O"] = "Bring 6 Glutton Shackles and 3 Darksoul Shackles to Dalar Dawnweaver at the Sepulcher.", + ["T"] = "Arugal\'s Folly", + }, + [424] = { + ["D"] = "It will indeed take me longer than I had thought to uncover the dark secrets behind the enchantments Arugal was using.$b$bBut in the meantime I need you to take care of a slight problem our Darkstalkers have discovered. It seems that Arugal let his magic spread to the Deep Elem Mine in the hills to the southeast.$b$bThe mine would prove to be quite a resource for Varimathras\'s advance.$b$bI want you to behead the tainted foreman of the mine, Grimson the Pale. With his death, the mine shall be ours.", + ["O"] = "Kill Grimson the Pale and bring his head to Dalar Dawnweaver at the Sepulcher.", + ["T"] = "Arugal\'s Folly", + }, + [425] = { + ["D"] = "My brother Quinn and I were tasked to recon Silverpine Forest and report to High Executor Hadrec. But we didn\'t get far -- when moving through this farm we were attacked by the ghoul Ivar the Foul.$B$BWe escaped from Ivar, but he seriously mauled Quinn. He\'s healing from the potion you gave him, but Ivar may return before Quinn recovers.$B$BKill Ivar so Quinn will have time to heal. Ivar is usually in the barn yonder, waiting for my guard to drop.", + ["O"] = "Kill Ivar the Foul, and bring Ivar\'s Head to Rane Yorick at the Ivar Patch.", + ["T"] = "Ivar the Foul", + }, + [426] = { + ["D"] = "The Scourge are trying to form a base at the Agamand Mills. If they do, then they can stage further attacks within Tirisfal.$B$BThe orders have been given. The Scourge in the Mills must be destroyed.$B$BGo to the Mills. Collect Notched Ribs from Rattlecage and Cracked Skull Soldiers, and Blackened Skulls from Darkeye Bonecasters.$B$BTo get to the Mills, follow the road west. After crossing the bridge, take the next fork north then keep going north. When you see windmills, the battle will begin.", + ["O"] = "Gather 5 Notched Ribs and 3 Blackened Skulls, then return to Deathguard Dillinger in Brill.", + ["T"] = "The Mills Overrun", + }, + [427] = { + ["D"] = "The documents Executor Arren provided are just the break we needed in our battle with the wretched Scarlet Crusade. We now know their exact locations throughout Tirisfal Glades.$b$bBut the Deathguard has larger concerns. The Lich King\'s army grows in number each night. We need someone with \"initiative\" like yourself to drive the Scarlet Crusade to the grave.$b$bProve to me you are capable of serving The Dark Lady by travelling west to the tower past the Solliden Farmstead and slay 10 Scarlet Warriors.", + ["O"] = "Executor Zygand of Brill wants you to kill 10 Scarlet Warriors.", + ["T"] = "At War With The Scarlet Crusade", + }, + [428] = { + ["D"] = "A couple weeks ago two of our Deathstalkers, Rane and Quinn Yorick, were sent on a reconnaissance mission through northern Silverpine. We have not heard from them.$B$BThey may have become victim to the Scourge, though if that is true then I want it confirmed. Find these Deathstalkers.$B$BTheir first objective was to scout the farms in northern Silverpine. You should begin your search there.", + ["O"] = "Find the Deathstalkers Quinn and Rane Yorick.", + ["T"] = "Lost Deathstalkers", + }, + [429] = { + ["D"] = "My brother Quinn was badly hurt by the ghoul, Ivar the Foul, and I don\'t know if he will heal properly without magical aid. Although I am not an apothecary, I do know that our apothecaries can make healing potions from the discolored hearts of worgs.$B$BGather such hearts and take them to Apothecary Renferrel at the Sepulcher to the south. Then return here with the potion.$B$BYou can find plenty of worgs between here and Malden\'s Orchard to the east.", + ["O"] = "Gather 6 discolored worg hearts and bring them to Apothecary Renferrel at the Sepulcher.", + ["T"] = "Wild Hearts", + }, + [430] = { + ["D"] = "Here is the potion to aid in Quinn Yorick\'s recovery.$B$BNow if you will excuse me, I have very important work to continue...", + ["O"] = "Bring Quinn\'s potion to Quinn Yorick at the Ivar Patch, north of the Sepulcher.", + ["T"] = "Return to Quinn", + }, + [431] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Candles of Beckoning", + }, + [432] = { + ["D"] = "Those Light-blasted troggs, turning my work site into a wreck! Look at that, there goes another barrel of powder!$b$bOhhh, I wish I could go down there and wring every one of their scrawny little necks! I want to kill them all!$b$bThis can\'t be good for my health, all this stress and anger... What have they left me with? Nothing!$b$bI\'d kill them myself, but my aim\'s no good anymore! You go into the quarry and kill some of the filthy buggers! I\'ll pay you! Just hurt them, kill them!", + ["O"] = "Kill 6 Rockjaw Skullthumpers for Foreman Stonebrow at the Gol\'Bolar quarry.", + ["T"] = "Those Blasted Troggs!", + }, + [433] = { + ["D"] = "As a member of the Senate and the Explorers\' League, I\'ve taken it upon myself to take care of this part of the trogg infestation that has gripped our lands.$b$bThey\'ve certainly made a mess of Gol\'Bolar quarry, and for no reason. As we dug deep into the earth, they poured out, destroying our equipment and driving the miners out. There\'s not much for us to do but to exterminate the lot of them, rebuild, then get back to work.$b$bIf you help me with the troggs, I\'ll gladly recompense you for your time.", + ["O"] = "Kill 10 Rockjaw Bonesnappers for Senator Mehr Stonehallow at the Gol\'Bolar quarry.", + ["T"] = "The Public Servant", + }, + [434] = { + ["D"] = "After I put on Spybot\'s disguise, he\'ll head in to talk to Lescovar. The guards should let him pass no problem.$B$BWhile you were getting materials for me, I took care of informing Marzon that it was time for him and Lescovar to meet again. I even dropped some false information.$B$BLescovar will dismiss his guards and wait for Marzon out here in the garden. After you catch wind of talk about the Defias, make your move. You need to kill them both before the guards return! When you\'re done, speak to Trias.", + ["O"] = "Remain in the garden until Lord Gregor Lescovar and Marzon the Silent Blade have had their conversation. Afterwards, kill them both before returning to Elling Trias in Stormwind.", + ["T"] = "The Attack!", + }, + [435] = { + ["D"] = "The wolves outside won\'t leave, and they eye me evilly every time I step foot out that door. They must be incredibly hungry to think I\'m worth eating.$B$BI have to report to my teammate, the Deathstalker Rane Yorick. And to get to Rane, I\'ll need help against those wolves.$B$BPlease escort me! And there are a lot of wolves out there, so we\'ll have a better chance if you have friends who can help...", + ["O"] = "Escort Erland through the wolves, to Rane Yorick.", + ["T"] = "Escorting Erland", + }, + [436] = { + ["D"] = "Prospector Ironband is heading an excavation of ancient ruins east of the lake. His progress has been slow lately, especially considering all the supplies we\'ve sent him.$B$BIronband\'s a stout, honest dwarf who values results, which has me worried that forces are at work against him.$B$BGo to Ironband\'s Excavation and speak with Magmar Fellhew. He manages the details of the site and will know why there\'s a slowdown.$B$BTo get to the excavation site, go around the southern tip of the lake, then head east.", + ["O"] = "Speak with Explorer Fellhew.", + ["T"] = "Ironband\'s Excavation", + }, + [437] = { + ["D"] = "Our initial scouting reports of Silverpine show the rot hides have a base at an old farm to the north, the Dead Fields. We have sent small assaults against them, but each time they are reinforced by the banshee Nightlash, who uses her magic to rout our forces.$B$BWe want Nightlash destroyed.$B$BGo to the Dead Fields and assault the rot hides. If you don\'t see Nightlash then kill the rot hides until she appears, then defeat her.$B$BHer essence will turn to dust. Bring me that dust as proof.", + ["O"] = "Kill rot hide gnolls at the Dead Fields.$B$BWhen Nightlash appears, kill her.$B$BBring the Essence of Nightlash to High Executor Hadrec at the Sepulcher.", + ["T"] = "The Dead Fields", + }, + [438] = { + ["D"] = "$N, we\'ve discovered a new hive for the Scourge: the Decrepit Ferry. The ferry lies east of the Sepulcher, and is heavily patrolled by rot hides and other undead.$B$BThere must be a reason for the Scourge\'s occupation of the area. Go to the Decrepit Ferry and find out why the Scourge are there.", + ["O"] = "Go to the Decrepit Ferry.$B$BSearch for the reason the Scourge are there.", + ["T"] = "The Decrepit Ferry", + }, + [439] = { + ["D"] = "Among the corpses a hand protrudes, unwrapped. It is the hand of a woman, pockmarked from the plague but relatively fresh. $B$BOn the hand is a ring. Removing the ring and inspecting it reveals an engraving:$B$B\"For Deliah\"", + ["O"] = "Bring Deliah\'s Ring to High Executor Hadrec at the Sepulcher.", + ["T"] = "Rot Hide Clues", + }, + [440] = { + ["D"] = "If you want to find the husband or beloved who gave Deliah her ring... then speak with Magistrate Sevren in Brill. He should have records of recent deaths and, with luck, can discover who Deliah is.$B$BBut I wouldn\'t hope. Whoever gave her the ring is probably dead. Or if he\'s undead he probably no longer cares about Deliah.", + ["O"] = "Bring Deliah\'s Ring to Magistrate Sevren in Brill.", + ["T"] = "The Engraved Ring", + }, + [441] = { + ["D"] = "Deliah had a husband, Raleigh, who now dwells in the Undercity. If the Deliah who lived in Brill is the one who owned this ring, then Raleigh will know.$B$BRaleigh is in the Trade Quarter of the Undercity.", + ["O"] = "Bring Deliah\'s Ring to Raleigh.", + ["T"] = "Raleigh and the Undercity", + }, + [442] = { + ["D"] = "Now is the time to assault the Scourge\'s place of strength in Silverpine: Fenris Isle.$B$BYou must again go to the Isle and destroy Thule Ravenclaw. I want his head!$B$BThis mission is as dangerous as it is vital, $N. You must not fail.", + ["O"] = "Bring Thule\'s Head to High Executor Hadrec at the Sepulcher.", + ["T"] = "Assault on Fenris Isle", + }, + [443] = { + ["D"] = "Before we launch an assault on Fenris Isle, we must determine who is behind the rot hide gnolls. Our apothecaries believe their origin lies within the strange fluid that flows through their bodies.$B$BGo to Fenris Isle, east of the Decrepit Ferry, and collect rot hide ichor from the gnolls you find there. Bring it to Apothecary Renferrel, stationed outside the Sepulcher.", + ["O"] = "Bring 8 bottles of rot hide ichor to Apothecary Renferrel at the Sepulcher.", + ["T"] = "Rot Hide Ichor", + }, + [444] = { + ["D"] = "I have reduced the ichor you brought me and separated it into its base components. My findings are not conclusive, but I have determined that warlock and necromantic magics were used in the ichor\'s creation.$B$BWhile I continue to study the ichor, I want you to take a sample to Bethor Iceshard in the Undercity. Bethor is not an apothecary, but his knowledge of magic may help to unravel the mystery of the rot hides.$B$BGo. You will find Bethor in the Magic Quarter of the Undercity.", + ["O"] = "Bring the Sample Ichor to Bethor Iceshard in the Undercity.", + ["T"] = "Rot Hide Origins", + }, + [445] = { + ["D"] = "Time is a luxury that is not afforded to those of us under the employ of Lady Sylvanas. Surely you know this by now.$b$bAs a member of the Royal Apothecary Society it is my duty to share my knowledge with my colleagues so that our collective efforts might one day provide The Dark Lady with the New Plague she so badly desires.$b$bTake these findings to Apothecary Renferrel who is stationed at The Sepulcher in Silverpine Forest. Follow the roads to the south from Brill. From the Undercity go southwest.", + ["O"] = "Take Apothecary Johaan\'s findings to Apothecary Renferrel in Silverpine Forest.", + ["T"] = "Delivery to Silverpine Forest", + }, + [446] = { + ["D"] = "This Ichor was crafted by an old colleague of mine: Thule Ravenclaw. He was a young, promising mage before the great war, but when the Lich King rose to power, he betrayed his brethren and allied with the Scourge.$B$BI did not realize he still lives, nor that he leads the Rot Hides in their forays against us!$B$BI know many of his spells, and can help concoct a potion to counter them. Take this scroll back to Apothecary Renferrel. It has the incantations needed for the potion.", + ["O"] = "Bring Bethor\'s Scroll to Apothecary Renferrel at the Silverpine Sepulcher.", + ["T"] = "Thule Ravenclaw", + }, + [447] = { + ["D"] = "Arthas\'s numbers are overwhelming. But with a New Plague we could eradicate both the Scourge Army and the Human infestation once and for all.$b$bMy studies have proven that spider blood combined with a toxin derived from a grizzled bear heart results in a deadly elixir. Collect samples from the spiders in the Skittering Dark to the northwest and from the bears wandering throughout Silverpine Forest. Deliver the reagents to Master Apothecary Faranell of the Royal Apothecary Society in the Undercity.", + ["O"] = "Collect 6 Grizzled Bear Hearts and 6 samples of Skittering Blood and deliver them to Master Apothecary Faranell in the Undercity.", + ["T"] = "A Recipe For Death", + }, + [448] = { + ["D"] = "Before you launch an assault on Fenris Isle, report to High Executor Hadrec. He may have additional information or equipment you\'ll need.", + ["O"] = "Report to High Executor Hadrec at the Sepulcher.", + ["T"] = "Report to Hadrec", + }, + [449] = { + ["D"] = "Although Quinn\'s wounds are mending, I want to get our report to High Executor Hadrec as quickly as possible. It has information that is vital to the Forsaken\'s occupation of Silverpine.", + ["O"] = "Bring the Deathstalker Report to High Executor Hadrec at the Sepulcher.", + ["T"] = "The Deathstalkers\' Report", + }, + [450] = { + ["D"] = "You can be of further service to the Royal Apothecary Society, $N.$b$bWhen Arugal cast his wretched magic on the forest, he cursed one of our most promising members, Apothecary Berard. Now a mindless servant of Arugal, Berard is useless to us. But his findings might prove to be of worth. He was studying an ancient plague that killed off all the aquatic life in Lake Lordamere ages ago.$b$bRetrieve Berard\'s Journal from his study in the Pyrewood Village Inn and take it to Apothecary Renferrel.", + ["O"] = "Retrieve Apothecary Berard\'s journal from Pyrewood Village and take it to Apothecary Renferrel at the Sepulcher.", + ["T"] = "A Recipe For Death", + }, + [451] = { + ["D"] = "According to Berard\'s Journal the moss from Lake Skulkers and Creepers might prove useful for our quest to brew a new plague. Those beasts dwell on the islands in Lake Lordamere to the east.$b$bHe also mentions a very rare Hardened Tumor that he discovered on a Vile Fin murloc. Apparently the tumor is so rare Berard was only able to obtain one.$b$bCollect samples of the moss as well as the rare hardened tumor and take them to Master Apothecary Faranell in the Undercity.", + ["O"] = "Bring 6 samples of Lake Creeper Moss, 6 samples of Lake Skulker Moss and a Hardened Tumor to Master Apothecary Faranell in the Undercity.", + ["T"] = "A Recipe For Death", + }, + [452] = { + ["D"] = "You got here just in the nick of time, $N!$b$bThe Pyrewood Council will be returning any moment. Arugal has other matters to tend to in the keep. He uses the Council as mere puppets to keep the mindless minions of Pyrewood under his control. But I believe that without the guidance of the Pyrewood Council, the sons of Arugal will turn against their master.$b$bI cannot handle them all by myself. I need you to help me. Together we can lay waste to the Council for Lady Sylvanas.", + ["O"] = "Help Deathstalker Faerleia kill the Pyrewood Council.", + ["T"] = "Pyrewood Ambush", + }, + [453] = { + ["D"] = "Good luck, $N. I hope you find the chap, and I hope you find him alive.$B$BIf he\'s left the safety of Darkshire then he could be prey to the beasts of the wilds.", + ["O"] = "Find the Shadowy Figure. Your clues:$B$BHe is not native to Darkshire.$B$BHe is a nervous, jittery person.$B$BHe left Darkshire and headed west.", + ["T"] = "Finding the Shadowy Figure", + }, + [454] = { + ["D"] = "We\'d been hauling the barrels of powder back and forth in trips before this... business. Now we have to split up the work, Miran\'s taking the barrels and I\'m watching over the other ones.$b$bI don\'t feel safe letting Miran haul the rest of the shipment by himself. When he\'s ready to go, maybe you could escort him on his next trip?", + ["O"] = "Speak with Miran.", + ["T"] = "After the Ambush", + }, + [455] = { + ["D"] = "Orcs of the Dragonmaw clan have a haven in the Wetlands. And now they have expanded into Dun Algaz! We can\'t let them keep their foothold here or Loch Modan will be cut off from Menethil Harbor, our port and stronghold in the Wetlands.$B$BBreak through Dun Algaz to the Wetlands beyond, and kill some orcs for good measure! Report to Valstag Ironjaw in Menethil Harbor.$B$BMenethil is through Dun Algaz, then north along the road, then west at the fork.$B$BWe\'re counting on you, $N. Do not fail.", + ["O"] = "Traverse Dun Algaz.$B$BKill 8 Dragonmaw Scouts and 6 Dragonmaw Grunts.$B$BReport to Valstag Ironjaw in Menethil Harbor.", + ["T"] = "The Algaz Gauntlet", + }, + [456] = { + ["D"] = "Greetings, $N. I am Conservator Ilthalaine. My purpose in Shadowglen is to ensure that the balance of nature is maintained.$b$bThe spring rains were particularly heavy this year, causing some of the forest\'s beasts to flourish while others suffered.$b$bUnfortunately, the nightsaber and thistle boar populations grew too large. Shadowglen can only produce so much food for the beasts. Journey forth, young $c, and thin the boar and saber populations so that nature\'s harmony will be preserved.", + ["O"] = "Kill 7 Young Nightsabers and 4 Young Thistle Boars and return to Conservator Ilthalaine.", + ["T"] = "The Balance of Nature", + }, + [457] = { + ["D"] = "Thinning the younger population of creatures here in Shadowglen was a good start, $N, but there is still work to be done.$b$bThe resources of the forest will be depleted too quickly if the problem is not addressed. Killing nature\'s beasts is a necessary evil for the good of all who share the land. Venture into the forest and slay mangy nightsabers and thistle boars in the name of balance.", + ["O"] = "Conservator Ilthalaine needs you to kill 7 Mangy Nightsabers and 7 Thistle Boars.", + ["T"] = "The Balance of Nature", + }, + [458] = { + ["D"] = "Thank goodness you are here, $c. Strange news has traveled to me through the whisperings of the forest spirits.$b$bThe mysterious woodland protector, Tarindrella, has returned to Shadowglen. The dryad\'s presence has not been felt in the forests of Kalimdor in years. Something is surely amiss if she has journeyed back to this land.$b$bSeek out Tarindrella and see what business she tends to in our grove. One of the Sentinels reported seeing her to the southwest of Aldrassil.", + ["O"] = "Seek out the dryad known as Tarindrella.", + ["T"] = "The Woodland Protector", + }, + [459] = { + ["D"] = "Something evil is brewing in the forests of Teldrassil. Look long the hills to where the peaceful furbolgs used to dwell. They have deserted their homes and are amassing under the name of the Gnarlpine tribe.$b$bOnly the corruption of wicked Fel Moss could cause such a transformation. The grells and grellkin have infested the area and are threatening the residents of Shadowglen. $b$bEngage these grells and grellkin, $N, and see if they are indeed caught under the enchantment of the wicked Fel Moss.", + ["O"] = "Collect 8 Fel Moss and bring them to Tarindrella.", + ["T"] = "The Woodland Protector", + }, + [460] = { + ["D"] = "You don\'t look like a rot hide. Good. I had lost hope...$B$BMy name is Alaric, and I was once Thule\'s head servant and bodyguard. He used his magic to \"protect\" me from the Plague of Undeath, but instead his spell gave me an unlife from which I cannot escape. And after creating the cursed rot hide gnolls, Thule beheaded me... and gave my head to the gnolls as a plaything!$B$BPlease, take me to my body. I believe the gnolls buried it here in Fenris Keep, near the stable, in an unmarked grave.", + ["O"] = "Bring Alaric\'s Head to his grave.", + ["T"] = "Resting in Pieces", + }, + [461] = { + ["D"] = "I know of a hidden niche within the keep that holds an item dear to Thule, and his old colleagues. It also holds something you might find useful. Take me there!$B$BThe alcove is in the southwestern tower of the keep, behind a dusty shelf.$B$BTake my body, but leave my boots. They never fit me anyway...", + ["O"] = "Take Alaric to the hidden alcove.", + ["T"] = "The Hidden Niche", + }, + [462] = { + ["D"] = "Other than you, we sent two scouts through Algaz. Only one returned. Here\'s what he discovered:$B$BThe Dragonmaws sent one of their Lieutenants, Maruk Wyrmscale, to organize a crew of orcs in Algaz and cut off the land route to Menethil Harbor!$B$BWe have to stop this, now. Take out Maruk, and then report to Valstag Ironjaw in Menethil Harbor.$B$BMaruk is headquartered in a small cave, across a pond between the second and third tunnels of Algaz. Menethil is through Algaz, then west along the road.", + ["O"] = "Kill Maruk Wyrmscale$B$BReport to Valstag Ironjaw in Menethil Harbor.", + ["T"] = "", + }, + [463] = { + ["D"] = "You\'ve heard of the Greenwarden? You\'re not looking for him, are you? Well I say you\'re crazy if you are, but who am I to keep a fool from $ghis:her; death?$B$BIf you are seeking that beast, then I hear he is in the marsh, east of the road where it forks to Dun Modr. He\'s lurking there among the crocs...and worse!$B$BAnd leave your money here. You won\'t need it where you\'re going...and you don\'t want to chip ol\' Greenie\'s tooth on your gold when he bites you in half, do you?", + ["O"] = "Find the Greenwarden.", + ["T"] = "The Greenwarden", + }, + [464] = { + ["D"] = "The Dragonmaw orc clan was all but destroyed by the end of the Second War, after they lost control of their red dragon pets. The dragons were not very happy with their old masters, and fiercely hunted the Dragonmaws. What few remained fled from Grim Batol and into the Mountains east of Whelgar\'s Excavation.$B$BNow they\'ve gained strength, and have an encampment northeast of Menethil.$B$BWe want you to attack that encampment. Gather and bring me their war banners as proof.", + ["O"] = "Bring 8 Dragonmaw War Banners to Captain Stoutfist.", + ["T"] = "War Banners", + }, + [465] = { + ["D"] = "While you were fighting the Dragonmaws, we discovered more of their plans.$B$BNek\'rosh has built catapults and aims to lay siege to Menethil! And with the fighting in Dun Algaz, we\'re effectively blocked from reinforcements!$B$BYou need to take out those catapults. They\'re in the Dragonmaw encampment.$B$BHere, take this tinder. Fight your way to the catapults and light them with the tinder.$B$BAnd after you\'ve done that, find and kill Nek\'rosh. We need to cut this Dragonmaw beast down...at its neck.", + ["O"] = "Destroy the Dragonmaw catapults.", + ["T"] = "Nek\'rosh\'s Gambit", + }, + [466] = { + ["D"] = "I heard that a rare ore, incendicite, was found in the Wetlands, in a cave northwest of Algaz Gate. Incendicite is volatile stuff and hard to use without blowing yourself up, but I\'m sure if it\'s smelted the right way it could make cannon shells that pack a mighty punch!$B$BGet me incendicite ore and I\'ll find someone brave enough to experiment with it.$B$BOh, and to extract that ore from a vein you\'ll need skill in mining. If you don\'t have it, then ... bring a friend who does to that cave!", + ["O"] = "Bring 6 loads of Incendicite Ore to Pilot Stonegear in Dun Morogh.", + ["T"] = "Search for Incendicite", + }, + [467] = { + ["D"] = "Pilot Stonegear loves his siege engine, as every pilot should! And he\'s always eager to find new ways to improve his tank\'s firepower!$B$BHe heard rumors of a rare ore and is looking for someone to hunt it down for him. If your boots are starting to itch, then find Stonegear at Steelgrill\'s Depot in Dun Morogh and see what he wants.", + ["O"] = "Speak with Pilot Stonegear.", + ["T"] = "Stonegear\'s Search", + }, + [468] = { + ["D"] = "Mountaineer Rockgar is looking for volunteers for a mission through Dun Algaz and into the Wetlands. $B$BIf you want to get your boots wet in that soggy county to the north, then speak with Rockgar at Dun Algaz. Dun Algaz is north up the road, beyond the guard tower.", + ["O"] = "Speak with Mountaineer Rockgar.", + ["T"] = "Report to Mountaineer Rockgar", + }, + [469] = { + ["D"] = "Greetings, traveler!$b$bDon\'t suppose you might be heading in the direction of Menethil, would you? If you\'re not, I\'d suggest you stop there, it\'s a good place to purchase goods and even have a pint and relax.$b$bNow, if it just so happens that you\'re heading in that direction, I don\'t suppose you\'d mind taking this bundle of crocolisk skins to James Halloran, the tanner?$b$bI\'d do it myself, but my wife\'s been in quite a mood lately, and I\'d like to put off facing her as long as possible.", + ["O"] = "Deliver the Bundle of Crocolisk Skins to James Halloran, the tanner, in Menethil Harbor.", + ["T"] = "Daily Delivery", + }, + [470] = { + ["D"] = "On my weekly visit to Ironbeard\'s Tomb I was attacked by dreadful, dripping oozes! Naturally, I panicked.$b$bI threw my bag at one, but it didn\'t do anything! The ooze just sucked it right up... Luckily, it did give me enough time to get away.$b$bThe bad news is that I really need to get the contents of my bag!$b$bI don\'t know which ooze I threw my bag at; they all looked the same! Ironbeard\'s Tomb is northeast of here, near Dun Modr. Thank you so much!", + ["O"] = "One of the oozes at Ironbeard\'s Tomb has Sida\'s bag, retrieve it and bring it back to her in Menethil Harbor.", + ["T"] = "Digging Through the Ooze", + }, + [471] = { + ["D"] = "I sent my apprentice out into the marshes to skin some of our famous giant Wetlands crocolisks. When he didn\'t return, I went out to look for him... Let\'s just say it wasn\'t a pretty sight.$b$bMidwife says he might pull through, but in the meantime I still need my skins!$b$b...If you\'d like to kill a few more of the brutes, I wouldn\'t be opposed, after what they did. You\'ll find the crocs north up the coast, beyond the murloc hovels.", + ["O"] = "Collect 6 Giant Crocolisk Skins and bring them to James Halloran in Menethil Harbor.", + ["T"] = "Apprentice\'s Duties", + }, + [472] = { + ["D"] = "Dun Modr has fallen to the Dark Iron Dwarves!$b$bMy wounds are grave, $c. Most of the regiment was killed! The Dark Iron thugs attacked us before we could regroup from the Thandol Span ambush.$b$bOur leader, Longbraid, sounded the retreat horn. As we left the town I was hit by a stray axe in the back. All went black.$b$bI awoke here in Menethil but I fear for my fellow soldiers. Hope still burns within me. Perhaps Longbraid is still alive! See if you can find him near Dun Modr, $r!", + ["O"] = "Search for Longbraid near the town of Dun Modr.", + ["T"] = "Fall of Dun Modr", + }, + [473] = { + ["D"] = "$N. The Dragonmaw orc clan is showing its strength in more than just Algaz. Captain Stoutfist has asked to speak with those willing to offer aid against these orcs. He is inside the keep, in the war room.", + ["O"] = "Speak with Captain Stoutfist.", + ["T"] = "Report to Captain Stoutfist", + }, + [474] = { + ["D"] = "Now that the catapults have been burned, find and kill Chieftain Nek\'rosh.", + ["O"] = "Kill Chieftain Nek\'rosh$B$BBring Nek\'rosh\'s Head to Captain Stoutfist.", + ["T"] = "Defeat Nek\'rosh", + }, + [475] = { + ["D"] = "A troubling breeze blows through the forest.$b$bGaerolas Talvethren serves as Great Warden to the hibernating Druids of the Talon in the Ban\'ethil Barrow Den. His duty as the chosen protector of the Sleeping is to ensure their safety so that their pact with Ysera remains fulfilled.$b$bBut word from Gaerolas is now delayed and I grow nervous. Travel east to Starbreeze Village and bring back a report from Gaerolas so that I can put my worries to rest, knowing my dreaming brethren slumber safely.", + ["O"] = "Seek out Gaerolas Talvethren in Starbreeze Village.", + ["T"] = "A Troubling Breeze", + }, + [476] = { + ["D"] = "The Gnarlpine tribe has been corrupted!$b$bThe once peaceful furbolgs have turned against the protectors of the forest. They ambushed me as I left for the Ban\'ethil Barrow Den and proceeded to pillage Starbreeze Village. Ursal the Mauler, their chieftain, is using the evil powers of the Fel Moss to drive them mad.$b$bI am too wounded to return to Athridas to bring him this grave news. The task is left to you, young $c. We can only hope that the deranged Gnarlpines have not made it to Ban\'ethil yet!", + ["O"] = "Return to Athridas Bearmantle in Dolanaar.", + ["T"] = "Gnarlpine Corruption", + }, + [477] = { + ["D"] = "As you may know, the town of Ambermill remains a source of human opposition, mainly through the support they receive from the wizards of Dalaran.$b$bI don\'t know what their plan is, but for them to show interest in a backwater village like Ambermill indicates that it must have some greater importance.$b$bThey\'ve been shipping crates by the wagon from Hillsbrad. Many of those supplies end up at a small camp north of Pyrewood Village. Retrieve the contents of a crate and return them to me.", + ["O"] = "Retrieve the contents of one of the Dalaran wizards\' crates. You will find Pyrewood Village to the south.", + ["T"] = "Border Crossings", + }, + [478] = { + ["D"] = "", + ["O"] = "Bring the strange pendant to Shadow Priest Allister at the Sepulcher.", + ["T"] = "Maps and Runes", + }, + [479] = { + ["D"] = "Dalar is attempting to locate the source of the wizards\' spellcasting. For now, we\'ll have to slow their progress in any way we can...$b$bThe conjurers, mages and protectors are no doubt carrying the pendants. Remove and retrieve them.$b$bTake the main road south and the eastern fork into Ambermill.", + ["O"] = "Obtain 8 Dalaran Pendants for Shadow Priest Allister at the Sepulcher.", + ["T"] = "Ambermill Investigations", + }, + [480] = { + ["D"] = "An archmage of great power is overseeing the reactivation of the ley energy node. With the progress they have made, our only hope of stopping them is by killing him. It will be difficult, he is no doubt protected by many other mages and warders.$b$bYou must go, and you must dispatch him quickly. When he is dead, retrieve his staff for me. Go now.", + ["O"] = "Kill the Dalaran archmage, then retrieve his staff for Shadow Priest Allister at the Sepulcher.", + ["T"] = "The Weaver", + }, + [481] = { + ["D"] = "Take the pendant to Dalar Dawnweaver, perhaps he can shed some light on the wizards\' plans.", + ["O"] = "Take the rune-inscribed pendant to Dalar Dawnweaver at the Sepulcher.", + ["T"] = "Dalar\'s Analysis", + }, + [482] = { + ["D"] = "Of course! How could I have forgotten?$b$bAmbermill was one of the sites earmarked by the Kirin Tor, noted because it houses a dormant ley energy node. The wizards must be planning to reactivate the node and use its energies for some greater purpose.$b$bWe cannot allow this to happen...$b$bIt will take a great amount of power to activate the area\'s ley energies, we can stall them by taking the pendants away from the wizards.$b$bRelay this information to Allister, he will decide a course of action.", + ["O"] = "Speak with Shadow Priest Allister at the Sepulcher.", + ["T"] = "Dalaran\'s Intentions", + }, + [483] = { + ["D"] = "Gnarlpine invaders were seen ravaging the Ban\'ethil Barrow Den to the west.$b$bThe slumbering druids will be trapped in the Emerald Dream for eternity, unaware of their fate, unless we help. The delicate hibernation ritual cannot be broken without the Relics of Wakening.$b$bJourney to the Den and retrieve the Raven Claw Talisman, Black Feather Quill, Sapphire of Sky, and Rune of Nesting. The druids store them in sacred chests. Return them to me and I will prepare the awakening ritual.", + ["O"] = "Retrieve the Relics of Wakening and bring them to Athridas Bearmantle in Dolanaar.", + ["T"] = "The Relics of Wakening", + }, + [484] = { + ["D"] = "I\'m James Halloran, the tanner. My cured crocolisk skins are sought after all over, shipments leaving by boat to ports around the world.$b$bMet Einar? He\'s one of the hunters that brings crocolisk skins in for me.$b$bI\'m a bit short on the softer skins that come off crocolisk young.$b$bBeing that I\'m running low, I\'ll pay you top coin for a stack of the skins. You can find the young crocs in the marshes right outside of town.", + ["O"] = "Obtain 4 Young Crocolisk Skins for James Halloran in Menethil Harbor.", + ["T"] = "Young Crocolisk Skins", + }, + [485] = { + ["D"] = "You have uncovered some sort of strange, egg-shaped device made from metal. Fiddling with one of its knobs springs the egg to life, as it opens up into some sort of gnomish robotic contraption! A voice from inside the robotic egg crackles to life.$B$B\"My name\'s Oglethorpe Obnoticus, and my homing robot has crashed! I will reward you for its recovery; please take this beacon to the robot!\"$B$B\"I now have computed the coordinates of the robot for you; it crashed at the head of the river near Skulk Rock!\"", + ["O"] = "Take the distress beacon to Oglethorpe\'s homing robot at the head of the river in the Hinterlands, near Skulk Rock.", + ["T"] = "Find OOX-09/HL!", + }, + [486] = { + ["D"] = "Now the time has come to save the Druids of the Talon. If we fail now, $N, they will be forever lost in sleep.$b$bI shall prepare the Relics of Wakening and perform the ritual. For my work to take effect, the cursed beast responsible for this horrible situation must be slain. Only then will the ritual be complete.$b$bIt was Ursal the Mauler who meddled with our brethren\'s calling and it is Ursal the Mauler who must now pay so they can be freed. Travel to Gnarlpine Hold in the southwest and slay him.", + ["O"] = "Kill Ursal the Mauler and return to Athridas Bearmantle in Dolanaar.", + ["T"] = "Ursal the Mauler", + }, + [487] = { + ["D"] = "The road to Darnassus must be kept safe. Travelers heading from Dolanaar to Darnassus have been reporting ruthless attacks by corrupted furbolgs from the Gnarlpine tribe.$b$bImportant news and commerce travels to and from Darnassus by way of this road daily. We cannot afford to have a rogue band of heathens terrorizing people.$b$bTake up arms in the name of the sacred forest, $c. Their den lies somewhere below this vantage point. Slay 6 of these Gnarlpine ambushers and report back to me.", + ["O"] = "Slay 6 Gnarlpine Ambushers and return to Sentinel Amara Nightwalker outside of Dolanaar.", + ["T"] = "The Road to Darnassus", + }, + [488] = { + ["D"] = "Eager for work, I see. Lucky for you a day never goes by that I don\'t wish I had a fledgling $c to perform my bidding.$b$bYou see, $N, I can make you very happy and provide you with things you never dreamed of having. But in order for that to happen you must bring me certain items.$b$bMy business in the forest often requires certain. . .reagents. Fetch for me 3 Nightsaber Fangs, 3 Strigid Owl Feathers and 3 swatches of Webwood Spider Silk.$b$bLet\'s keep this our little secret, $r.", + ["O"] = "Bring Zenn Foulhoof outside of Dolanaar 3 Nightsaber Fangs, 3 Strigid Owl Feathers and 3 swatches of Webwood Spider Silk.", + ["T"] = "Zenn\'s Bidding", + }, + [489] = { + ["D"] = "The Council of the Forest has news that you aided Zenn Foulhoof. The satyr is an enemy of the forest. As a $r, you should know better than to defile the forest by killing Nature\'s creatures.$b$bYou must redeem yourself in the eyes of the Council if you wish to remain a friend of Teldrassil.$b$bTeach Foulhoof a lesson and you shall be redeemed. Fel Cones are corrupted seeds that fall from the trees. They billow with green smoke.$b$bGive some to Foulhoof. He\'ll think you have brought him a harmless snack.", + ["O"] = "Collect 3 Fel Cones and give them to Zenn Foulhoof outside of Dolanaar.", + ["T"] = "Seek Redemption!", + }, + [490] = { + ["D"] = "By strict orders from the Council of Darnassus, I am commissioning a bounty on the Gnarlpine Tribe. They are no longer friends of the forest. Their corruption has left them mindless threats to our people and the creatures of the glade.$b$bAs decreed by the Council, you shall be rewarded for removing the furbolg menaces from Kalidar. Bring to me their fangs as proof of your deeds.", + ["O"] = "Shayla Nightbreeze outside of Darnassus wants you to bring her 20 Gnarlpine Fangs.", + ["T"] = "", + }, + [491] = { + ["D"] = "Thule once told me that, long ago, he and two colleagues created a magic wand, woven together from the apprentice wands each mage possessed. This wand was a symbol of their friendship, and although Thule came to despise it he could not part with it, nor could he let the others have it. So he stole the wand, and hid it in Fenris Keep.$B$BHere. Take the wand to Bethor Iceshard, one of Thule\'s friends from years past. I\'m sure he will want it.", + ["O"] = "Take the Woven Wand to Bethor Iceshard in the Magic Quarter of the Undercity.", + ["T"] = "Wand to Bethor", + }, + [492] = { + ["D"] = "According to the Deathguard, another one of those foolish Dwarven Mountaineers has just been captured. The Deathguard likes to use the cellar of the Gallows End Tavern as a holding cell until prisoners can be \"properly\" dealt with.$b$bWhy don\'t you go see how the Captured Mountaineer enjoys this special drink I made for him? It contains a subtle hint of what The Dark Lady has planned for the rest of Azeroth.", + ["O"] = "Bring Johaan\'s Special Drink to the Captured Mountaineer.", + ["T"] = "A New Plague", + }, + [493] = { + ["D"] = "The Royal Apothecary Society is under extreme pressure from the Dark Lady to develop a New Plague. We are working diligently and have made much progress. It is our belief that the success will be achieved much faster if we share information amongst the Society.$b$bFor that reason I want you to deliver my latest findings to Apothecary Lydon in Tarren Mill, a small town nestled in the Hillsbrad Foothills. The journey will be a long one.$b$bHead south and stick to the roads. Follow the signs closely!", + ["O"] = "Deliver Apothecary Renferrel\'s findings to Apothecary Lydon in the town of Tarren Mill in the Hillsbrad Foothills.", + ["T"] = "Journey to Hillsbrad Foothills", + }, + [494] = { + ["D"] = "Be silent and pay attention, $c.$b$bI was sent to this position in order to survey the town of Hillsbrad. My mission is one of reconnaissance. It is imperative that you send word to High Executor Darthalia in Tarren Mill at once. Let her know that I, Deathstalker Lesh, send the following message:$b$b\"The raven\'s cry from the west doth beckon.\"$b$bFollow the road to the east and pay close attention to the signs. Now, hurry! Off you go to Tarren Mill, and with urgency I might add!", + ["O"] = "Travel to Tarren Mill to deliver Deathstalker Lesh\'s message to High Executor Darthalia.", + ["T"] = "Time To Strike", + }, + [495] = { + ["D"] = "Mug\'Thol and his ogre warband was sent to Alterac to retrieve the Crown of Will for Lady Sylvanas. Unfortunately, instead of returning it, the idiot decided to try it on... I suppose ogres can\'t resist anything bright and shiny.$b$bHis bumbling actions have become something of a problem, however. The Crown of Will enabled him to resist the possession placed upon him to serve Lady Sylvanas.$b$bThe Dark Lady wants an example made, travel to Tarren Mill in Hillsbrad and report to Melisara, my lieutenant.", + ["O"] = "Report to Melisara at Tarren Mill in the Hillsbrad Foothills.", + ["T"] = "The Crown of Will", + }, + [496] = { + ["D"] = "Ah, another wretched day in Tarren Mill. All of this clean air puts me in such a foul mood, $N.$b$bThe sooner we can plague the humans here, the better. I\'ve been conducting intense studies on possible killing agents to use in my concoctions but I haven\'t the time to collect them all.$b$bIf you want to make yourself of use, procure the following items for me: 10 Gray Bear Tongues and the very rare and hard to find, Creeper Ichor. You\'ll find both bears and creepers just outside of Tarren Mill.", + ["O"] = "Apothecary Lydon of Tarren Mill wants 10 Gray Bear Tongues and some Creeper Ichor.", + ["T"] = "Elixir of Suffering", + }, + [497] = { + ["D"] = "As a child, raised as a gladiator at Durnholde Keep, I was befriended by Taretha, the daughter of my wet nurse and mistress of the damned bastard Blackmoore.$b$bThe past is the past, $n, but reports of human movements in Hillsbrad reminded me of that time. I dispatched a small party to the area to investigate and to retrieve an... item... given to me by Taretha, if they could.$b$bA fruitless task, no doubt, but perhaps...$b$bThey should have returned by now, I want you to go to Tarren Mill to investigate.", + ["O"] = "Go to Tarren Mill and find out the status of the party sent by Thrall.", + ["T"] = "", + }, + [498] = { + ["D"] = "Me and some other warriors were sent by the Warchief to retrieve an object from Durnholde and to investigate this so-called Syndicate.$b$bWe went to Durnholde to take a look around, but we were taken by surprise by a large number of the humans. We fought bravely, but their sheer numbers were enough to defeat us. They took a few of us captive, but I was able to escape.$b$bDurnholde is just southeast of here, across the river. Drull and Tog\'thar are being held there, you must go and rescue them.", + ["O"] = "Krusk in Tarren Mill needs you to free Drull and Tog\'thar from Durnholde Keep.", + ["T"] = "The Rescue", + }, + [499] = { + ["D"] = "It will take but a moment for me to mix these components into what I have deemed an Elixir of Suffering.$b$bThere we go! Ah, nothing brightens a gloomy day in these miserable foothills like bringing a little suffering into the world.$b$bLet us see if our little potion has achieved its desired effect.$b$bGive my assistant Umpi a taste of what the Dark Lady has planned for both humans and Scourge alike.", + ["O"] = "Give Umpi the Elixir of Suffering.", + ["T"] = "Elixir of Suffering", + }, + [500] = { + ["D"] = "Crushridge ogres have dug an ogre mound up in the Alterac Mountains near the ruined city of Alterac. And my scouts tell me they\'ve taken over those ruins as well.$B$BWe can\'t let them get cozy up there; if they think they\'re safe where they are, then their next step will be to move down into the foothills, which will put them right at our front door!$B$BGo north to the Alterac Mountains and hunt ogres. Bring me the Dirty Knucklebones they carry and you will earn a nice bounty.", + ["O"] = "Gather 9 Dirty Knucklebones from Crushridge ogres in the Alterac Mountains. Bring them to Marshal Redpath in Southshore.", + ["T"] = "Crushridge Bounty", + }, + [501] = { + ["D"] = "Oh, $N. . .the flowers are blooming in Hillsbrad and the air is so fresh and brisk. I can\'t help but to wallow in the misery of it all. I look out my grimy window and long for the day when our New Plague brings this world the death it deserves.$b$bAs much as I would love to sit and brood all day, my duty to the Dark Lady calls. Help me, would you? My research leads me to believe I can make the most splendid death-brew with the blood of a Mountain Lion. Bring some to me and we\'ll have a little fun.", + ["O"] = "Bring 10 vials of Mountain Lion Blood to Apothecary Lydon in Tarren Mill.", + ["T"] = "Elixir of Pain", + }, + [502] = { + ["D"] = "Ah, nothing like the smell of fresh blood in the foothills!$b$bNow we\'ll mix in a touch of this and a little of that and let the real fun begin! What I have created with this blood, I like to call an Elixir of Pain. If my calculations are correct this concoction could be the start of something very beautiful for Lady Sylvanas. But what we need is a test.$b$bTake this elixir out to the northern farm in Hillsbrad Fields to the southwest. Let\'s see how Farmer Ray\'s little dog Stanley likes this \"treat.\"", + ["O"] = "Feed the Elixir of Pain to Stanley.", + ["T"] = "Elixir of Pain", + }, + [503] = { + ["D"] = "From what I can tell of the documents you procured, Gol\'dir is being held in a large Syndicate base to the north, most likely in the Alterac Mountains. He has been held captive far too long and must be freed.", + ["O"] = "Free Gol\'dir then return to Krusk in Tarren Mill.", + ["T"] = "Gol\'dir", + }, + [504] = { + ["D"] = "Now that you\'ve had a taste of the Crushridge ogres, I want you to really bloody their noses...$B$BGo into the Ruins of Alterac and seek out the Crushridge Warmongers. I want you to cut down a good number of them - that\'s the only way those brutes will learn to keep their distance from Alliance territory.", + ["O"] = "Slay 15 Crushridge Warmongers, then return to Marshal Redpath in Southshore.", + ["T"] = "Crushridge Warmongers", + }, + [505] = { + ["D"] = "I am the new magistrate of Southshore, recently assigned after the assassination of the previous magistrate. The assassins were never found, but through our investigations we\'re almost certain they were hired by the Syndicate - a group of thieves led by villainous nobles of the now fallen kingdom of Alterac.$B$BThe Syndicate has a camp north of the Horde-occupied Tarren Mill, and our last clues led to that camp. Slay the Syndicate members you find there.", + ["O"] = "Kill 12 Syndicate Footpads and 8 Syndicate Thieves, then return to Magistrate Henry Maleb in Southshore.", + ["T"] = "Syndicate Assassins", + }, + [506] = { + ["D"] = "A day or two ago, I was visited by the leader of this Syndicate. His name was Aliden Perenolde, and styled himself lord of this land. He confided in me his plans to take the orcs that stood against him as slaves, just as his father and his mentor, the despised Blackmoore, had planned.$b$bMore important was that he brought his mistress, a wisp of a girl named Elysa. Around her neck was the pendant the Warchief desires.$b$bNow go, I will make my own way, after I have settled my business here.", + ["O"] = "Return the information gathered by Gol\'dir to Krusk in Tarren Mill.", + ["T"] = "Blackmoore\'s Legacy", + }, + [507] = { + ["D"] = "It is clear that Perenolde must be killed, his foulness removed from the world. His manor lies a ways to the north of here, on the shores of Lordamere Lake. Do your duty, $n, then retrieve the pendant that the Warchief desires, and return here.", + ["O"] = "Kill Lord Aliden Perenolde and ask his mistress, Elysa, about Taretha\'s pendant.", + ["T"] = "Lord Aliden Perenolde", + }, + [508] = { + ["D"] = "The pendant? Of course you can have it... Take it! I want no memory of him... just please, please leave in peace...", + ["O"] = "Return Taretha\'s pendant to Krusk in Tarren Mill.", + ["T"] = "Taretha\'s Gift", + }, + [509] = { + ["D"] = "Another day, another elixir to be made. If it were up to me, I\'d just let the pathetic humans and Scourge fight it out. They seem bent on killing each other as is.$b$bAlas, our Dark Lady wants to help speed up the process a tad so why not pass these morbid days by spreading a little death and disease across the land?$b$bHere\'s the plan, $N: you go out to Nethander Stead, south of Tarren Mill and east of the river and Southshore. Collect for me 6 Mudsnout Blossoms from the field for my next elixir.", + ["O"] = "Bring 6 Mudsnout Blossoms to Apothecary Lydon in Tarren Mill.", + ["T"] = "Elixir of Agony", + }, + [510] = { + ["D"] = "Among these documents is a list of requested supplies. These include mundane items (food, weapons, clothing) as well as more exotic gear (masks, oil, poison).$B$BBut what is most notable is the urgency of the request - these supplies were needed soon in order to undertake what is described in the document as an \"important mission against Southshore.\"", + ["O"] = "Bring the Foreboding Plans to Magistrate Maleb in Southshore.", + ["T"] = "Foreboding Plans", + }, + [511] = { + ["D"] = "One of the letters on this table is encrypted and inscrutable.", + ["O"] = "Bring the Encrypted Letter to Loremaster Dibbs in Southshore.", + ["T"] = "Encrypted Letter", + }, + [512] = { + ["D"] = "I fear the leadership behind the Syndicate is bent on Southshore\'s ruin. We must strike hard at these leaders before their plans are realized.$B$BEnter the ruins of Strahnbrad, in the Alterac Mountains to the north. We think the Syndicate is using the area as a headquarters.$B$BWe know this gang of cutthroats is run by former Alterac nobles. They may be hiding as normal Syndicate agents, but you\'ll know you\'ve killed a noble by the signet ring he wears.$B$BBring me those signet rings.", + ["O"] = "Bring 7 Alterac Signet Rings to Magistrate Maleb in Southshore.", + ["T"] = "Noble Deaths", + }, + [513] = { + ["D"] = "Just when I thought another day was going to pass devoid of any joy, you brought me those marvelous Mudsnout Blossoms.$b$bFirst I will mix them down into a fine composite. We\'ll then need Master Apothecary Faranell in the Undercity to apply his colloid of decay to it and then we\'ll be ready for some good fun indeed!$b$bHere, take this Mudsnout Composite and run it off to Master Faranell at once, $N.", + ["O"] = "Take the Mudsnout Composite to Master Apothecary Faranell in the Undercity.", + ["T"] = "Elixir of Agony", + }, + [514] = { + ["D"] = "I have a colleague in Ironforge who may be able to help decrypt this letter. Go to the Library in the Hall of Explorers in Ironforge and speak with Prospector Stormpike. Tell him I sent you and show him the letter. If there\'s anyone north of Blackrock Spire who can read this, it is he.", + ["O"] = "Take the Cleverly Encrypted Letter to Prospector Stormpike in Ironforge.", + ["T"] = "Letter to Stormpike", + }, + [515] = { + ["D"] = "A mudsnout composite? Absolutely brilliant! Why didn\'t I think of that?$b$bLet me contribute my colloid of decay to this devilish brew.$b$bIn order to activate the contaminating agents in this mudsnout mixture, Lydon is going to need a strong troll\'s blood potion, as well as some daggerspine scales and torn fin eyes from the southern coast of Hillsbrad. He\'ll know what to do once you\'ve gathered him all the reagents. And my, how anxious I am to hear how his experiment goes!", + ["O"] = "Bring the Mudsnout Mixture, a Strong Troll\'s Blood Potion, 5 Daggerspine Scales and 5 Torn Fin Eyes to Apothecary Lydon in Tarren Mill.", + ["T"] = "Elixir of Agony", + }, + [516] = { + ["D"] = "I have received reports that a group of undead are holing up to prepare for an attack against us. Armed with this information, we can turn the tables and attack them first, nipping their little plan in the bud.$b$bUnfortunately, my information is spotty, at best. They are reported to be hiding in a location known as Beren\'s Peril. The exact location is unknown, but it appears to be a cave in the hills, near a pocket of Dalaran wizards.$b$bI trust your resourcefulness. Find them, and put them down.", + ["O"] = "Locate Beren\'s Peril, then kill 6 Ravenclaw Drudgers and 6 Ravenclaw Guardians, then return to Shadow Priest Allister at the Sepulcher.", + ["T"] = "Beren\'s Peril", + }, + [517] = { + ["D"] = "This new elixir is finally ready to be tested. But why let a perfectly good, highly contagious plague go to waste on a mere frog or dog? Let\'s have us some true fun in the name of Lady Sylvanas.$b$bHead down to Dun Garok. You know the barracks where those filthy little dwarves skitter about. Steal me a keg of their Shindigger Stout. Once I have that keg, you and I will have quite the party, $N.", + ["O"] = "Bring a keg of Shindigger Stout to Apothecary Lydon in Tarren Mill.", + ["T"] = "Elixir of Agony", + }, + [518] = { + ["D"] = "Mug\'Thol and his Crushridge ogres have overrun the ruins of Alterac. It will be hard to inflict any serious punishment upon him without thinning out the ogres\' numbers.$b$bAfter softening them up, we\'ll proceed.$b$bUnderstood? Good. Now go.", + ["O"] = "Kill 14 Crushridge Maulers for Melisara in Tarren Mill.", + ["T"] = "The Crown of Will", + }, + [519] = { + ["D"] = "Targ, Muckrake, and Glommus are Mug\'Thol\'s lieutenants. They are loyal to him, though who can say what drives an ogre to loyalty.$b$bBring me their heads, $n, and then all that will remain is to remove Mug\'Thol\'s head, crown and all.", + ["O"] = "Kill Targ, Muckrake, and Glommus and bring their heads to Melisara in Tarren Mill.", + ["T"] = "The Crown of Will", + }, + [520] = { + ["D"] = "With Mug\'Thol\'s lieutenants dead, all that remains is to kill Mug\'Thol and retrieve the Crown of Will. I have no doubt he\'ll be reluctant to part with it. Most likely expecting you, too, given the... departure... of his fellows.$b$bFind Mug\'Thol, and deliver his head and the Crown to me. The Crushridge resistance will be at an end.", + ["O"] = "Kill Mug\'Thol, and return his head with the Crown of Will to Melisara in Tarren Mill.", + ["T"] = "The Crown of Will", + }, + [521] = { + ["D"] = "All that remains is to deliver the Crown of Will to Sharlindra in the Undercity. She will see that it is delivered to Lady Sylvanas. I would warn you against thinking to use it for your own purposes, $n, Mug\'Thol\'s fate should be illustration enough.", + ["O"] = "Deliver the Crown of Will to Sharlindra in the Undercity.", + ["T"] = "The Crown of Will", + }, + [522] = { + ["D"] = "This is a contract for the assassination of Magistrate Henry Maleb. It was sealed and stamped in red wax, using a distinctive signet ring.", + ["O"] = "Bring the Assassin\'s Contract to Magistrate Maleb in Southshore.", + ["T"] = "Assassin\'s Contract", + }, + [523] = { + ["D"] = "The contract you recovered was signed by Baron Vardus, a noble of the former kingdom of Alterac, and one known for a cold heart and brutal practices. I\'m not surprised someone like the Baron was behind this.$B$BFind this man. Find him, and bring him to justice. He must be among the Syndicate haunts - perhaps at the ruins of Strahnbrad, or perhaps within the valley north of them.", + ["O"] = "Bring the Head of Baron Vardus to Magistrate Maleb in Southshore.", + ["T"] = "Baron\'s Demise", + }, + [524] = { + ["D"] = "Next door the Deathguards are holding a few captured farmers hostage. High Executor Darthalia suspected one of the military strategists from Stormwind to be hiding out amongst them. Apparently the military chap was found dead in the Plaguelands last night. Darthalia, always looking out for me, decided the prisoners would be left to my disposal.$b$bI think it\'s time we threw those farmers a party. Sounds like a grand ol\' time!$b$bPlace this tainted keg on the rug in their room. Plagued brew for all!", + ["O"] = "Place the Tainted Keg on the rug for the captured farmers.", + ["T"] = "Elixir of Agony", + }, + [525] = { + ["D"] = "I decrypted the letter, but I don\'t know what to make of it. You found this among thieves in the Alterac foothills? Very strange...$B$BYou should take this to the magistrate of Southshore. Although this letter is cryptic, his is the closest town to Alterac; if a threat is brewing, then he should know.", + ["O"] = "Bring the Decrypted Letter to Magistrate Maleb in Southshore.", + ["T"] = "Further Mysteries", + }, + [526] = { + ["D"] = "You might have found one lightforge ingot in that chest, but that\'s not enough to craft anything decent!$B$BYou should go back there and look for more. Maybe the murlocs around that wrecked ship have lightforge ingots on them.", + ["O"] = "Gather 5 lightforge ingots, then return to Glorin Steelbrow in the Wetlands.", + ["T"] = "Lightforge Ingots", + }, + [527] = { + ["D"] = "Stand at attention while addressing me, $c.$b$bI am under direct command of Varimathras. We are to quell the human infestation until our apothecaries can develop the new plague.$b$bOur information leads us to believe that the town of Hillsbrad is vulnerable to attack. Your first assignment is aimed at disrupting their food supply and infrastructure.$b$bTravel west. Raid the northernmost farms of Hillsbrad Fields. Make sure that the landowners, Farmer Ray and Farmer Getz, are executed as well.", + ["O"] = "Kill 6 Hillsbrad Farmhands, 6 Hillsbrad Farmers, Farmer Ray and Farmer Getz and report back to Darthalia in Tarren Mill.", + ["T"] = "Battle of Hillsbrad", + }, + [528] = { + ["D"] = "Word of the attack on the northern farms has the townsfolk panicked. Most excellent.$b$bOur Deathstalkers report peasants fleeing to the fields in southern Hillsbrad. The fools think they can hide in the orchards and escape their doom.$b$bProve them wrong, $N. Return to Hillsbrad Fields and seek out the cowering peasants. Lay waste to them in the name of our Dark Lady.$b$bDismissed!", + ["O"] = "Kill 15 Hillsbrad Peasants and report back to Darthalia in Tarren Mill.", + ["T"] = "Battle of Hillsbrad", + }, + [529] = { + ["D"] = "The humans of Hillsbrad have been putting up unexpected resistance. The problem appears to be that the townsfolk are being armed by the local blacksmith. We need to shut down all supply lines.$b$bYour mission will be to execute Blacksmith Verringtan. Slay his apprentices as well. While there, bring back a shipment of iron from their stockpile. The supplies will come in handy when we are done with the conquering of Hillsbrad and begin razing Southshore.", + ["O"] = "Kill Blacksmith Verringtan and 4 Hillsbrad Apprentice Blacksmiths.$b$bRetrieve a shipment of iron and report back to Darthalia in Tarren Mill.", + ["T"] = "Battle of Hillsbrad", + }, + [530] = { + ["D"] = "Valdred, once my good friend, was my wife\'s murderer. Although I am incapable of grieving, I do yearn for revenge. If you kill Valdred and bring me his cursed hands, then I will reward you.$B$BI last heard he was at the Greymane Wall in southern Silverpine, trying to flee into the kingdom of Gilneas.", + ["O"] = "Kill Valdred Moray.$B$BBring his hands to Raleigh Andrean in the Undercity.", + ["T"] = "A Husband\'s Revenge", + }, + [531] = { + ["D"] = "Light! Don\'t bring things like that into the Lodge... it\'s unsanitary, unspeakable, un... un... unsanitary!$b$bJust get it out of here, will you? No one wants to see your bloody little trophy, really!", + ["O"] = "Bring Ol\' Sooty\'s head to Vyrin Swiftwind at the Farstrider Lodge.", + ["T"] = "Vyrin\'s Revenge", + }, + [532] = { + ["D"] = "The town of Hillsbrad is in disarray and we believe it will soon fall. We must, however, persist in our ruthlessness until the human scum are wiped from the foothills for eternity.$b$bDespite their overwhelming losses, the humans rally around their leadership and keep fighting. We must eliminate their leader, Magistrate Burnside, as well as the town council. Destroy their revered political document as well, the Hillsbrad Proclamation. And while you\'re at it, steal the town registry.", + ["O"] = "Kill Magistrate Burnside and 5 Hillsbrad Councilmen. Destroy the Hillsbrad Proclamation. Steal the Hillsbrad Town Registry. Report back to Darthalia in Tarren Mill afterwards.", + ["T"] = "Battle of Hillsbrad", + }, + [533] = { + ["D"] = "At last we begin to hear word and rumor, find evidence of Gol\'dir\'s whereabouts. The humans have been moving him around, but we are narrowing down our search and focusing on the large Syndicate camp just north of here.$b$bGo there, $n, and bring back whatever information you can get your hands on.", + ["O"] = "Retrieve information about Gol\'dir\'s whereabouts for Krusk in Tarren Mill.", + ["T"] = "Infiltration", + }, + [534] = { + ["D"] = "", + ["O"] = "", + ["T"] = "", + }, + [535] = { + ["D"] = "Urrgh... Injured and dying and confronted with the enemy.$b$bNo doubt you\'ll kill me anyway, but if you bring me some Southshore stout--your kind does drink, don\'t they?--I\'ll tell you what you want to know.", + ["O"] = "Bring a mug of Southshore Stout to Valik in the Syndicate camp.", + ["T"] = "Valik", + }, + [536] = { + ["D"] = "Transferred from the Stormwind city guard to Southshore, a town that should be abandoned by the looks of it... Smell of the harbor day and night.$b$bNot to mention ol\' Redpath... Wants me to take care of the murlocs. Ha! $b$bI can barely rouse myself to go out to some of the pockets of the overgrown fish down the Western Strand. If you would go in my place and take care of them, I\'d appreciate it.", + ["O"] = "Kill 10 Torn Fin Tidehunters and 10 Torn Fin Oracles for Lieutenant Farren Orinelle in Southshore.", + ["T"] = "Down the Coast", + }, + [537] = { + ["D"] = "The letter you brought me was written by a being who calls himself Nagaz, a member of the Argus Wake. I don\'t know what this Argus Wake is, but if they\'re in alliance with the Syndicate then they must be a threat.$B$BI want you to find Nagaz and the Argus Shadow Mages mentioned in that letter. I want you to find them, and kill them.$B$BSearch in the Uplands, where the Syndicate is strongest. It is north of Strahnbrad.$B$BWith luck, you\'ll find these envoys of the Argus Wake there.", + ["O"] = "Kill 4 Argus Shadow Mages.$B$BBring the Head of Nagaz to Magistrate Maleb in Southshore.", + ["T"] = "Dark Council", + }, + [538] = { + ["D"] = "$N. If you don\'t mind a long journey then I have a task for you, to again help Stormwind fill its library.$B$BThe old kingdom of Alterac fell after the great war, and it had a large collection of books. It\'s a tragedy that the city is ruined, but even more tragic is all of their knowledge lost! We must recover what we can.$B$BSouthshore is the closest town to the Ruins of Alterac. Go there and speak with Loremaster Dibbs. He can direct you to the ruins, and to what books may be found there.", + ["O"] = "Speak with Loremaster Dibbs in Southshore.", + ["T"] = "Southshore", + }, + [539] = { + ["D"] = "The Hillsbrad Town Registry indicates that the Azureload Mine is under Alliance control. Furthermore, the mine is a prime source of iron ore for the Alliance armories.$b$bEven though we\'ve struck a decisive blow to the town of Hillsbrad, the Alliance still supports and protects the Azureload Mine fervently.$b$bThe mine lies due south of Hillsbrad. Go there and slay the foreman, a human by the name of Bonds. Kill his miners as well. That should send a clear message to the Alliance.", + ["O"] = "Kill Foreman Bonds and 10 Hillsbrad Miners and report back to Darthalia in Tarren Mill.", + ["T"] = "Battle of Hillsbrad", + }, + [540] = { + ["D"] = "Those beastly ogres now reside within Alterac\'s ruins, and I shudder to think what they\'re doing with the precious books still there. You must recover what you can!$B$BEnter the Ruins of Alterac and search for tomes looted by the ogres. Get whatever you can find and bring them to me, but also seek out one book in particular: The Arm of Gri\'lek. It contains ancient troll lore that I must learn, and the Ruins of Alterac was the last known location of an intact copy of this book.", + ["O"] = "Bring 5 Recovered Tomes and the Worn Leather Book containing The Arm of Gri\'lek to Loremaster Dibbs in Southshore.", + ["T"] = "Preserving Knowledge", + }, + [541] = { + ["D"] = "Dwarves aiding the humans? Damn those filthy little beasts.$b$bWe shall test the strength of the so-called Alliance. We\'ll see how anxious those little ankle-bashers are to help the humans once they feel our wrath. We know exactly where their stronghold is in this territory.$b$bThey have established a barracks in southeastern Hillsbrad along Thoradin\'s Wall called Dun Garok. The final mission of this battle is to lay siege on Dun Garok, $c. Captain Ironhill, their leader, must die.", + ["O"] = "Travel to Dun Garok and kill 10 Mountaineers, 8 Riflemen, 4 Priests and Captain Ironhill and report back to Darthalia in Tarren Mill.", + ["T"] = "Battle of Hillsbrad", + }, + [542] = { + ["D"] = "I need to spend some time studying the Arm of Gri\'lek book you brought me, though I\'m sure Milton is eager to get the other recovered books into Stormwind\'s collection.$B$BHere are the books you gathered from the Ruins of Alterac, packed and catalogued. Take them back to Milton Sheaf in Stormwind and I\'m sure he\'ll be grateful.", + ["O"] = "Bring the Tomes of Alterac to Milton Sheaf in Stormwind.", + ["T"] = "Return to Milton", + }, + [543] = { + ["D"] = "The Perenolde Tiara is an old heirloom of the Perenolde \"nobles\" - the ruling family of Alterac before that kingdom fell to ruin. It is said to have been crafted by master jewelers in Ironforge, and fitted with the finest of emeralds.$B$BWhen Alterac was destroyed the Tiara was lost, but there are rumors that an Ogre Mage, Grel\'borg the Miser, found the tiara and now wanders the Ruins of Alterac searching for more treasures.$B$BWe would have you acquire the tiara for us.", + ["O"] = "Bring the Perenolde Tiara to Remington Ridgewell in Stormwind.", + ["T"] = "The Perenolde Tiara", + }, + [544] = { + ["D"] = "I came to Tarren Mill to research, but now must resolve a crisis. You see, four Forsaken fled the Undercity a few months ago. They turned their backs on their brethren, but what\'s worse...they stole from the Dark Lady.$B$BThese thieves broke into a secure vault and stole four artifacts, items our apothecaries required in certain studies. Sylvanas would have these artifacts returned.$B$BThe thieves fled the Undercity to Dalaran, and those wizards quarantined them in the Lordamere Internment Camp.", + ["O"] = "Find the traitors and recover their artifacts, then return to Magus Voidglare in Tarren Mill.", + ["T"] = "Prison Break In", + }, + [545] = { + ["D"] = "The wizards of Dalaran constructed a vast, magical dome around the heart of their city. Some believe it was for protection from the violence of these times, while others say they merely wanted solitude, to study and plot.$B$BI don\'t care what the reason was. I do care that the ruined outskirts of their city, outside the dome, may hide valuable magical treasures.$B$BBut the area is patrolled by the wizards and their elemental slaves.$B$BSo hunt them, and return when their numbers are sufficiently reduced.", + ["O"] = "Kill 6 Dalaran Summoners and 12 Elemental Slaves, then return to Magus Voidglare in Tarren Mill.", + ["T"] = "Dalaran Patrols", + }, + [546] = { + ["D"] = "I hear you were enlisted by Darthalia to wage war on the humans of Hillsbrad. So jealous I am. . .$b$bWhile you\'re off having all the fun -- slaying humans, pillaging the town, terrorizing innocent people -- I am stuck standing guard here in Tarren Mill.$b$bPerhaps you\'ll take pity on an old Deathguard like myself? You see I am collecting human skulls. And you will be fighting humans for quite some time. Over the course of your long battle, bring me 30 skulls and I will make it worth your while.", + ["O"] = "Deathguard Samsa of Tarren Mill wants 30 Hillsbrad Human Skulls.", + ["T"] = "Souvenirs of Death", + }, + [547] = { + ["D"] = "High Executor Darthalia sent me to keep watch of Dun Garok from a distance. I had set up camp just out of sight. But when morning came and I had to boil water, I left to gather firewood.$b$bWhen I returned to camp, I discovered my gear was missing.$b$bApparently some dwarven scouts from Dun Garok had passed by and made off with it. I need my sword! If you can get it back for me I would be so grateful. So many dwarves there...it will be quite difficult to find the dirty little thief who stole it.", + ["O"] = "Retrieve Deathguard Humbert\'s sword from Dun Garok and return it to him in Tarren Mill.", + ["T"] = "Humbert\'s Sword", + }, + [548] = { + ["D"] = "This will start the Bloodstone Pendant quest line...", + ["O"] = "", + ["T"] = " Bloodstone Pendant", + }, + [549] = { + ["D"] = "By the authority of Lady Sylvanas, all members of the organization known as the Syndicate are wanted dead. Those brought into custody or taken prisoner will be summarily executed. They are currently known to be amassing in the ruins of Durnholde Keep, to the southeast of Tarren Mill.$b$bA handsome reward is offered to all who bring proof of their deeds to High Executor Darthalia.", + ["O"] = "Kill 10 Syndicate Rogues and 10 Syndicate Watchmen. Return to High Executor Darthalia in Tarren Mill for your reward.", + ["T"] = "WANTED: Syndicate Personnel", + }, + [550] = { + ["D"] = "Because you fought with such valor and perseverance in the Battle of Hillsbrad, I have written this commendation, extolling your heroics in combat for the high command to recognize.$b$bTake this sealed commendation to Varimathras in the Undercity. Go with pride, $c.", + ["O"] = "Take Darthalia\'s Sealed Commendation to Varimathras in the Undercity.", + ["T"] = "Battle of Hillsbrad", + }, + [551] = { + ["D"] = "This parchment is enchanted with a spell, rendering it indecipherable. But one word at the top of the paper can be read:$B$B$B Nagaz$B$B", + ["O"] = "Take the Ensorcelled Parchment to Loremaster Dibbs in Southshore.", + ["T"] = "The Ensorcelled Parchment", + }, + [552] = { + ["D"] = "Master Helcular was almost complete with his transformation into a Lich when a human lynch mob discovered his ritual lair in the hills and brutally killed him. To make matters worse they buried his corpse in the Southshore cemetery.$b$bSuch disregard for the great wizard is unacceptable. As his apprentice I shall see to it that the rains of vengeance fall upon the town of Southshore.$b$bWe will need Helcular\'s Rod first. Yeti overtook his ritual lair. Undoubtedly one of the beasts has it.", + ["O"] = "Retrieve Helcular\'s Rod from the Yeti and bring it back to Novice Thaivand in Tarren Mill.", + ["T"] = "Helcular\'s Revenge", + }, + [553] = { + ["D"] = "Here, take the Rod of Helcular. You will need it.$b$bHelcular fashioned 3 ceremonial pyres as part of his most powerful spell. The Flame of Azel and the Flame of Veraz lie within the Foothill Caverns. The Flame of Uzel lies in a cave above the caverns, further north in the mountains.$b$bThe Rod of Helcular must be charged from each of the three flames. Once the ritual is complete, drive the rod into Helcular\'s grave in Southshore, the heavily guarded human town to the south. Vengeance shall be ours!", + ["O"] = "Charge the Rod of Helcular with the powers of the Flame of Azel, Flame of Veraz and the Flame of Uzel.$b$bDrive the charged rod into Helcular\'s grave in Southshore.", + ["T"] = "Helcular\'s Revenge", + }, + [554] = { + ["D"] = "Prospector Stormpike is a master of decryption and deciphering. If you take the parchment you found to him, then with luck he can make sense of it. Stormpike is currently studying in the Prospector headquarters in Ironforge.$B$BAnd when you see him tell him you spoke with me - I\'ve been sending him quite a lot of business lately.", + ["O"] = "Take the Ensorcelled Parchment to Prospector Stormpike in Ironforge.", + ["T"] = "Stormpike\'s Deciphering", + }, + [555] = { + ["D"] = "If there\'s one thing you\'ll learn about Southshore it\'s that we have some of the best cuisine north of Stormwind!$b$bTake my secret recipe for Turtle Bisque, for example. I\'ve known folks to travel from as far as Darkshire just to enjoy a bowl. Speaking of which, I haven\'t been able to make any lately. I used to head up past Dalaran to Lake Lordamere myself to hunt Snapjaws but it\'s just too dangerous now. If you bring me some Turtle Meat from the Snapjaws up north and Soothing Spices, I\'ll whip some up!", + ["O"] = "Bring 10 pieces of Turtle Meat and some Soothing Spices to Chef Jessen in Southshore.", + ["T"] = "Soothing Turtle Bisque", + }, + [556] = { + ["D"] = "A notable talent of the wizards of Dalaran is their familiarity with elementals: powerful creatures from other dimensions. The wizards use magical tokens as a means to control these elementals. Magus Voidglare would like some of these tokens to study.$B$BEnter the territories of the Dalaran wizards, west of Hillsbrad, and gather the tokens.$B$BYou might find the tokens on any citizen of Dalaran, but I suggest hunting at the internment camp. It\'s safer than Dalaran itself.", + ["O"] = "Bring 10 Worn Stone Tokens to Keeper Bel\'varil in Tarren Mill.", + ["T"] = "Stone Tokens", + }, + [557] = { + ["D"] = "The Magus will be busy studying those stone tokens you gathered, but I know he\'ll eventually want examples of their counterpart: bracers of binding. These are set around the wrists of actual elementals, and bind them into the mage\'s service.$B$BHunt elementals in the ruins of Dalaran and gather their Bracers of Earth Binding, and the Magus will be pleased.", + ["O"] = "Bring 4 Bracers of Earth Binding to Keeper Bel\'varil in Tarren Mill.", + ["T"] = "Bracers of Binding", + }, + [558] = { + ["D"] = "They say that Lady Jaina Proudmoore in Theramore is one of the greatest heroes the Alliance has ever had. When I grow up, I wanna be a hero of the Alliance too!$B$BDo you know Jaina, $N? Could you do me a favor, please? Could you get her autograph for me? I dunno how to ask her, and she\'d probably be too busy for someone like me... but you! You\'re an adventurer just like she is! I bet she\'d give you her autograph easy!$B$BPlease?", + ["O"] = "Travel to Theramore to see about getting Lady Jaina Proudmoore\'s autograph for your ward.", + ["T"] = "Jaina\'s Autograph", + }, + [559] = { + ["D"] = "Would you believe it, $n? Redpath wasn\'t satisfied with all the murlocs we killed--oh now, don\'t be modest, you had some hand in it. Now he wants me to bring proof of the dead, hacking off cold, slimy murloc heads to submit for his approval.", + ["O"] = "Collect 10 Murloc Heads from the murlocs on the Western Strand for Lieutenant Farren Orinelle in Southshore.", + ["T"] = "Farren\'s Proof", + }, + [560] = { + ["D"] = "You know, $n, I\'d really rather not take these heads... Since you\'ve already got a handle on them, would you mind delivering them to Redpath for me?", + ["O"] = "Deliver the sack of murloc heads to Marshall Redpath in Southshore.", + ["T"] = "Farren\'s Proof", + }, + [561] = { + ["D"] = "Please inform Lieutenant Orinelle that I would like him to refocus his efforts on the naga infesting the Eastern Strand. When he has results, tell him to report to me in person.", + ["O"] = "Speak with Lieutenant Farren Orinelle in Southshore.", + ["T"] = "Farren\'s Proof", + }, + [562] = { + ["D"] = "My former mentor in the Stormwind city guard sent a message to me that Alliance High Command is becoming concerned with the threat posed by the naga. From what he\'s heard, there\'s good chances for promotion--or at least reassignment--for anyone who proves valuable in this regard.$b$bThere\'s just one small problem... I can\'t handle the naga, $n. Oh sure, I could break up a drunken barroom brawl, or haul off a belligerent beggar, but the naga are too much for me. You\'ve got to help me, $n!", + ["O"] = "Kill 10 Daggerspine Shorehunters and 10 Daggerspine Sirens for Lieutenant Farren Orinelle in Southshore.", + ["T"] = "Stormwind Ho!", + }, + [563] = { + ["D"] = "It shouldn\'t be a problem getting my report seen. The new captain of the guard, Major Samuelson, was my mentor while I was stationed in Stormwind. It should give him more than enough excuse to have me transferred back to the city. I\'ll need you to carry my report to him, though... wouldn\'t want ol\' Redpath to catch on.", + ["O"] = "Deliver Farren\'s report to Major Samuelson in Stormwind Keep.", + ["T"] = "Reassignment", + }, + [564] = { + ["D"] = "Ain\'t nothin\' that irks me more than losin\' these here beautiful horses. And believe me, we\'ve lost quite a few between them pesky undead creeps, the dang Syndicate gang and all the other good-for-nothin\' scoundrels pokin\' about these parts.$b$bBut I swear on my ol\' grand-daddy\'s grave there ain\'t no bigger menace to our horses here than them Mountain Lions up in Alterac. Always comin\' down from the hills and makin\' my life difficult!$b$bYou fancy yourself a hero? Go and do somethin\' about it then!", + ["O"] = "Darren Malvew of Southshore wants you to kill 8 Mountain Lions and 10 Hulking Mountain Lions.", + ["T"] = "Costly Menace", + }, + [565] = { + ["D"] = "I, the great Bartolo, shall make for you the world famous, Alliance renowned, Yeti Fur Cloak!$b$bTravel the planet and find yourself a better cloak, I dare you. Oh wait, what is that, little $r? \"Bartolo, there is no finer cloak!\" Yes, yes! That, I have heard before.$b$bBartolo requires a Bolt of Wool, a Hillman\'s Cloak made by a skilled leatherworker, Fine Thread and Yeti Fur, of course! Bring to me these items and you shall be a happy customer!", + ["O"] = "Bring Bartolo Ginsetti of Southshore a Bolt of Wool, a Hillman\'s Cloak, Fine Thread and 10 clumps of Yeti Fur.", + ["T"] = "Bartolo\'s Yeti Fur Cloak", + }, + [566] = { + ["D"] = "By order of High Executor Darthalia, the human known as Baron Vardus is wanted for crimes against the Forsaken. Vardus is known to be a high-ranking member of the organization known as the Syndicate.$b$bHe was last spotted in the Uplands in the Alterac Mountains, north of Tarren Mill.$b$bHe is wanted dead. Bring evidence of his demise to High Executor Darthalia to claim the reward.", + ["O"] = "Kill Baron Vardus and deliver his head to High Executor Darthalia in Tarren Mill.", + ["T"] = "WANTED: Baron Vardus", + }, + [567] = { + ["D"] = "Dangerous!$b$bThe following humans of Hillsbrad have been deemed dangerous and are marked for bounty by High Executor Darthalia:$b$bClerk Horrace Whitesteed. Wanted for the murder of Deathguard Toma.$b$bCitizen Wilkes. Wanted for the murder of Apothecary Eli.$b$bMiner Hackett. Wanted for the murder of Deathstalker Fry.$b$bFarmer Kalaba. Wanted for the ambush of supplies from the Undercity.$b$bAll of these enemies are hiding and will be hard to find. A reward will be granted upon notice of their death.", + ["O"] = "High Executor Darthalia of Tarren Mill is offering a bounty on Clerk Horrace Whitesteed, Citizen Wilkes, Miner Hackett and Farmer Kalaba.", + ["T"] = "Dangerous!", + }, + [568] = { + ["D"] = "Throm\'ka, $c!$b$bYour arrival at Grom\'gol is timely, indeed. As commander of the Warchief\'s base camp here in the jungle I am bound by honor to ensure the safety of all members of the Horde. Our mission to provide a safe chain of supply to Stonard is being hampered by some of the local inhabitants.$b$bI am putting you in charge of thinning out the raptor population outside of Grom\'gol. Once you have made significant progress, report back to me for reassignment.", + ["O"] = "Commander Aggro\'gosh of the Grom\'gol base camp wants you to kill 15 Lashtail Raptors.", + ["T"] = "The Defense of Grom\'gol", + }, + [569] = { + ["D"] = "When we first arrived in this jungle we did not intend to wage war on the local tribes. Our mission to supply Stonard is of the highest priority. But complications have arisen. A local band of ogres has occupied the Mizjah Ruins to the southeast of Grom\'gol. Despite warnings, they continue to ambush our supply caravans.$b$bI am putting you in charge of dealing with these uncooperative ogres.$b$bTravel to the ruins and attempt to drive them from the area. At the very least it will send a firm message.", + ["O"] = "Commander Aggro\'gosh of the Grom\'gol base camp wants you to kill 10 Ogre Brutes and 5 Ogre Witch Doctors.", + ["T"] = "The Defense of Grom\'gol", + }, + [570] = { + ["D"] = "The power of the jungle\'s magic must be realized and then harnessed by the Horde. My rituals have proven successful so far. I can cast very powerful enchantments. For you, brave $c, I shall make a special item indeed.$b$bBring to me some Shadowmaw Panther claws along with a Tigress fang. Not just any fang will do. It must be in pristine condition.$b$bThe beasts lurk throughout the jungle but you will find some close by, just across the river from Mizjah Ruins to the southeast.", + ["O"] = "Far Seer Mok\'thardin at the Grom\'gol base camp wants 8 Shadowmaw Claws and a Pristine Tigress Fang.", + ["T"] = "Mok\'thardin\'s Enchantment", + }, + [571] = { + ["D"] = "What I need from you now will be very difficult to obtain.$b$bTo hold all these feathers, claws and the pristine fang in place I require a magical tether. Only an aged gorilla sinew will work.$b$bYou will only be able to find one on an Elder Mistvale Gorilla. They are known to forage to the east of Booty Bay.$b$bThe sinew must be perfect. It might take quite a few kills for you to find exactly what I need but it will be well worth the hunt.", + ["O"] = "Bring an Aged Gorilla Sinew to Far Seer Mok\'thardin in Grom\'gol.", + ["T"] = "Mok\'thardin\'s Enchantment", + }, + [572] = { + ["D"] = "The items you gathered from the feline beasts of the Vale are only the first requirement for a powerful enchanted item. These jungle trinkets combined with my shamanistic ritual will provide you with a very useful tool in assisting the Horde and the Warchief.$b$bBut now you must gather for me some Jungle Stalker Feathers. The feathers are traditionally worn by the beasts on their armbands. You will find a tribe of the raptors directly south of Grom\'gol, not far from the great arena.", + ["O"] = "Bring 10 Jungle Stalker Feathers to Far Seer Mok\'thardin at the Grom\'gol base camp.", + ["T"] = "Mok\'thardin\'s Enchantment", + }, + [573] = { + ["D"] = "There is but one final reagent needed to complete the enchantment.$b$bIn the south, towards the western coast, high above the bluffs, lies a Holy Spring. This spring is the subject of great conflict amongst religious and mystical scholars. Every race in Azeroth claims that the spring waters were made divine for their people.$b$bMy final request of you: bring to me Holy Spring Water. Be warned. An expedition of naga explorers have advanced upon the spring. They will need to be dealt with as well.", + ["O"] = "Far Seer Mok\'thardin of Grom\'gol needs Holy Spring Water. He also wants you to kill 10 Naga Explorers.", + ["T"] = "Mok\'thardin\'s Enchantment", + }, + [574] = { + ["D"] = "Now that many of his regular troops are reduced, you must face his highly trained forces. When they\'re not in the wilderness slaughtering our rebel soldiers, they are found deep in the back of the Kurzen Compound, in a cave they call the Stockpile.$B$BI know many of Kurzen\'s troops personally, and I know they are skilled, loyal, and cruel. This is no easy task I set before you, $N.$B$BAfter you defeat them, report to Lieutenant Doren, my commanding officer. He will want your report firsthand.", + ["O"] = "Kill 10 Kurzen Commandoes and 6 Kurzen Headshrinkers.$B$BReport to Lieutenant Doren at the Rebel Camp.", + ["T"] = "Special Forces", + }, + [575] = { + ["D"] = "\"The finest leathercrafter of the South Seas and the worlds old and new.\" That\'s what they call me. Me! Drizzlik! The finest lea... Ahem. Well.$b$bMy leather goods are known far and wide as the most exquisite, a connoisseur\'s choice!$b$bI\'ve just received an order from Director Riddlevox of the Tinkers\' Union for a dozen of his favorite Excelsior-line boots. Our best sellers, actually.$b$bTo start on the basic shape, I\'ll need crocolisk skins from the crocs along the river in northern Stranglethorn.", + ["O"] = "Bring 2 Large River Crocolisk Skins to Drizzlik in Booty Bay.", + ["T"] = "Supply and Demand", + }, + [576] = { + ["D"] = "Avast! Who goes there?$b$bArgh, I am but useless without me special enchanted eye. Bad enough to have lost me eyes in battle in the first place! But by some stroke o\' luck we docked in Menethil and a traveling wizard enchanted a special glass eye that let me see again.$b$bLast night I ended up gettin\' jumped by some Bloodsail Buccaneers on me way out. Took me eye, they did! Seems those blokes have found their way to Booty Bay.$b$bHelp an old sea dog out by gettin\' me eye back?", + ["O"] = "Dizzy One-Eye in Booty Bay wants you to retrieve his eye from the Bloodsail Buccaneers.", + ["T"] = "Keep An Eye Out", + }, + [577] = { + ["D"] = "Well, I\'ve got the basic shape of the boots worked out, and they\'re coming along fine, but the skins you brought aren\'t going to be quite enough for the inner layers.$b$b\"What are we going to do, Drizzlik?\" No doubt the question on your lips, and well, isn\'t it lucky you\'re talking to Drizzlik, because he\'s going to tell you what we\'re going to do!$b$bThe inner layers will never really be seen, so we\'ll just get some of the thicker, cheaper skins from the crocs around Lake Nazferiti to fill the boots out.", + ["O"] = "Bring 5 Snapjaw Crocolisks Skins to Drizzlik in Booty Bay.", + ["T"] = "Some Assembly Required", + }, + [578] = { + ["D"] = "If there is indeed a goblin mage and water elementals haunting the island, it could mean the Stone of the Tides can be mine!$b$bI want you to locate this haunted island... find out what\'s going on. Oh, and if you perhaps want to find out more about the Stone of the Tides, take this scrip to the Stormwind Library, they should be able to find you a copy of the book I first came across the legend in.$b$bCould it be that Gazban actually discovered the Stone...?", + ["O"] = "Find the haunted island for Baron Revilgaz in Booty Bay.", + ["T"] = "The Stone of the Tides", + }, + [579] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Stormwind Library", + }, + [580] = { + ["D"] = "We was splicin\' the mainbrace somethin\' fierce off of the Overlook Cliffs, ol\' Hinterlands just in the distance. Thought the seas was goin\' to swallow us whole.$b$bOl\' Slim knows all about liquid courage! Cap\'n had a crate of Pupellyverbos Port we commandeered from a privateer en route to Stormwind.$b$bSo when that storm off of Hinterlands hit, I busted into the grog. Big wave hit and tossed them bottles overboard. Cap\'n is goin\' to give me a taste o\' the cat if ye don\'t help me get \'em back though!", + ["O"] = "Whiskey Slim in Booty Bay wants you to bring him the bottles of Pupellyverbos Port he lost.", + ["T"] = "Whiskey Slim\'s Lost Grog", + }, + [581] = { + ["D"] = "A doom, there is. A doom on my chief\'s youngest son, Yenniku. As is a custom with our people, he was given to the Gurubashi Trolls of Zul\'Gurub, but after my tribe, the Darkspear tribe, left with the orc Thrall, poor Yenniku was lost to us. I was sent from distant Orgrimmar, back to Stranglethorn, to search for my chief\'s son.$B$BAnd I believe the Bloodscalp tribe has him.$B$BIf you would help me, then hunt the Bloodscalps. You may find them to the north. Gather their tusks and return to me.", + ["O"] = "Bring 9 Bloodscalp Tusks to Nimboya at the Grom\'gol Base Camp.", + ["T"] = "Hunt for Yenniku", + }, + [582] = { + ["D"] = "We must find if Yenniku is dead.$B$BSlay the Bloodscalp Headhunters and take from them their Shrunken Heads. You must gather many, many heads, and I will inspect them to make sure Yenniku\'s head is not among them.$B$BAnd if Yenniku was killed by the Bloodscalps, then may a 600-year curse fall on the spirit of their chief, Gan\'zulah!$B$BGo, $N. You may find many Headhunters at the ruins of Zuuldaia and Zul\'Kunda, along the coast to the north.", + ["O"] = "Bring 20 Shrunken Heads to Nimboya at the Grom\'gol Base Camp.", + ["T"] = "Headhunting", + }, + [583] = { + ["D"] = "Welcome to Stranglethorn!$b$bPerhaps you\'re not aware of this, but that dwarf over there is the one and only Hemet Nesingwary, renowned war hero of the Alliance and master big game hunter. He\'s not one for welcoming strangers into his camp, but you look like you\'ve seen quite a bit of action in your day, $c.$b$bBeing a veteran of many battles himself, Master Nesingwary has a soft spot for fellow heroes.$b$bGo and speak with him. Perhaps he can give you some hunting pointers.", + ["O"] = "Speak with Hemet Nesingwary.", + ["T"] = "Welcome to the Jungle", + }, + [584] = { + ["D"] = "Yenniku was not among the heads, and I thank the Great Serpent for it. But we are no closer to finding him.$B$BWe must know the truth, and I fear that only the Bloodscalp chief and his witchdoctor know it. They are the enemies of the Darkspear tribe and will not speak freely, so we must force the truth from their dead lips!$B$BBring me the heads of Gan\'zulah and Nezzliok the Dire and place them within this cauldron.$B$BThey are deep within Zul\'Kunda. Bring their heads...we will then make them talk.", + ["O"] = "Bring Gan\'zulah\'s Head and Nezzliok\'s Head to the bubbling cauldron at the Grom\'gol Base Camp.", + ["T"] = "Bloodscalp Clan Heads", + }, + [585] = { + ["D"] = "$B$BIt is true. I know where the child of the Darkspears was taken. You have bested me and bound my spirit, but I will say nothing without appeasement!$B$BThe Bloodscalps war with the Skullsplitters. To gain my favor, steal from the Skullsplitters 3 of their trophy skulls and place them here with us, so that my spirit will have slaves in the Nether. One skull must be from their trophy pile in Balia\'mah, another from Ziata\'jai, and the last from Zul\'Mamwe.", + ["O"] = "Bring a Balia\'mah Trophy, a Ziata\'jai Trophy and a Zul\'Mamwe Trophy to the Bubbling Cauldron at the Grom\'gol Base Camp.", + ["T"] = "Speaking with Nezzliok", + }, + [586] = { + ["D"] = "$B$BCurse you! And curse your ancestors!!$B$BOnly blood and revenge can cool my rage, so if that is your wish, then... do this:$B$BThrow yourself into the heart of the Skullsplitters to the east. Slay the fiercest among them, and if you survive...then break yourself against their chief, Ana\'thek the Cruel. Hah! Bring me his shattered armor if you can!$B$BMay he tear off your limbs and leave you to rot and be eaten by carrion.", + ["O"] = "Kill 8 Skullsplitter Hunters, 6 Skullsplitter Headhunters, and 4 Skullsplitter Berserkers.$B$BBring the Broken Armor of Ana\'thek to the Bubbling Cauldron at the Grom\'gol Base Camp.", + ["T"] = "Speaking with Gan\'zulah", + }, + [587] = { + ["D"] = "Ah, the sea life. I ain\'t gonna say it\'s the good life, but it\'s my life.$b$bWhen I get into port I like to find me a good bottle of grog and some high quality snuff. Nasty habits but what\'s a pirate without his vices, right?$b$bSo you can imagine how heartbroken I was to find out the herbalist here in town has gone and sold out of the stuff. Says his shipment got hijacked by those damned Bloodsail Raiders.$b$bI bet a fearless $c like you could convince \'em to share the goods, eh?", + ["O"] = "Deeg in Booty Bay wants you to bring him 15 shares of Snuff.", + ["T"] = "Up to Snuff", + }, + [588] = { + ["D"] = "$B$BYou have appeased myself and my chief, so I will tell you that which you seek to discover...$B$BYoung Yenniku is lost to his clan.$B$BHe was taken by the witchdoctor Zanzil the Outcast. Now Zanzil controls him, body and soul, and only the most potent magic could set him free.$B$BA magic that you do not have, $c.$B$BPerhaps your Darkspear allies can offer a hope of Yenniku\'s salvation. But that, I doubt.", + ["O"] = "Speak with Kin\'weelay.", + ["T"] = "The Fate of Yenniku", + }, + [589] = { + ["D"] = "Legends tell of a jewel, hidden deep in the heart of Stranglethorn. We call it the Mind\'s Eye, and it has great powers. If you gain this Eye then, perhaps, we can use it to bring lost Yenniku back from the darkness.$B$BI will consult with the spirits of the jungle to find the Mind\'s Eye. While I do this, you enter the Crystalvein Mine, southeast of here, and gather Pulsing Blue Shards from Ironjaw Basilisks. The shards are rare, but we will need their magic to bend the Mind\'s Eye to our will.", + ["O"] = "Bring 3 Pulsing Blue Shards to Kin\'weelay at the Grom\'gol Base Camp.", + ["T"] = "The Singing Crystals", + }, + [590] = { + ["D"] = "What?$B$BWhat?!$B$BYou want money? I don\'t owe you any money.$B$BLetter? What letter? Oh, you wanna fight then? All right, mate... let\'s do this! Owe you any money...", + ["O"] = "Defeat Calvin Montague in Deathknell.", + ["T"] = "A Rogue\'s Deal", + }, + [591] = { + ["D"] = "The Mind\'s Eye is held by an ogre mage, east of here and deep within the Mosh\'Ogg ogre mound. His name is Mai\'Zoth. I know him from when the Darkspears dwelt in Stranglethorn - he is vicious, and his magic is strong.$B$BAnd if he has the Mind\'s Eye, then his magic will be stronger still.$B$BYou must face Mai\'Zoth and wrest from him the Mind\'s Eye. It is a perilous task, but it is the only hope we have of saving Yenniku.", + ["O"] = "Bring the Mind\'s Eye to Kin\'weelay at the Grom\'gol Base Camp.", + ["T"] = "The Mind\'s Eye", + }, + [592] = { + ["D"] = "I have reshaped the Mind\'s Eye into a Soul Gem. Its purpose is twofold: you must use it to stun Yenniku, and once stunned place it upon his head to entrap his soul.$B$BThen, bring the gem to Nimboya.$B$BYenniku dwells with Zanzil the Outcast, at the Ruins of Aboraz, along the Crystal Shore on the distant Cape of Stranglethorn.", + ["O"] = "Bring the Filled Soul Gem to Nimboya.", + ["T"] = "Saving Yenniku", + }, + [593] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Filling the Soul Gem", + }, + [594] = { + ["D"] = "The note reads, in fairly good handwriting:$B$BTo any that can aid me-$B$BPlease, my need for help is dire. A great Skymane holds me captive on an island in the South Seas.$B$BThe stars at night are foreign to me and obscured by the jungle trees, but on the clearest days I see Wild Shore to the northwest, and what seem to be large sailing ships to the southwest.$B$BI beg of you, my would-be savior, please help me.", + ["O"] = "Find the author of the message in a bottle.", + ["T"] = "Message in a Bottle", + }, + [595] = { + ["D"] = "You sure seem eager to work, matey. Not sure why some land-loving $r $c is offering help to the Blackwater Raiders, but I\'m not going to turn you away.$b$bOur ship just docked here in Booty Bay and word has it that our rivals--those damned, dirty Bloodsail Buccaneers--have been spotted all over southern Stranglethorn.$b$bAll the boys are too busy hitting the grog and looking for ladies! What I need is a scout.$b$bCheck the cove just north of Booty Bay along the Savage Coast and see what you find.", + ["O"] = "First Mate Crazz wants you to check the cove north of Booty Bay.", + ["T"] = "The Bloodsail Buccaneers", + }, + [596] = { + ["D"] = "I was sent to Grom\'gol to aid Nimboya on his quest, but... I too have reasons for being here.$B$BThe Bloodscalp tribe is enemy to our tribe. Collecting trophies of our enemies gives us power over them. You may aid our tribe by hunting our enemies.$B$BThey dwell to the north. Slay Bloodscalp trolls and take from them their bloody bone necklaces. Collect many, and your reward will be great.", + ["O"] = "Bring 25 Bloody Bone Necklaces to Kin\'weelay at the Grom\'gol Base Camp.", + ["T"] = "Bloody Bone Necklaces", + }, + [597] = { + ["D"] = "The map shows Booty Bay with a red \"X\" drawn precisely at the spot at which you are standing.$b$bThe scribbled text reads:$b$b\"You men are to secure a camp at this location and keep quiet. Wait for the signal from the southern command post before attacking. If anyone approaches you, kill them.\"", + ["O"] = "Report your findings to First Mate Crazz in Booty Bay.", + ["T"] = "The Bloodsail Buccaneers", + }, + [598] = { + ["D"] = "Now that you have gathered Bloodscalp trophies, I have another task for you. The Skullsplitter tribe of trolls live to the southeast, and for years we have warred with them. Although the Darkspears no longer dwell in Stranglethorn, we are bound to our conflict with the Skullsplitters.$B$BSo, hunt them. Gather their Split Bone Necklaces and return to me. Aid us in our war, and you will earn the friendship of the Darkspears.", + ["O"] = "Bring 25 Split Bone Necklaces to Kin\'weelay at the Grom\'gol Base camp.", + ["T"] = "Split Bone Necklace", + }, + [599] = { + ["D"] = "Shiver me timbers! So the Bloodsail Buccaneers are planning some sort of attack on Booty Bay? Why, the nerve of those scoundrels. Booty Bay will always be run by the Blackwater Raiders!$b$bThis is bigger than I thought. Report what you have learned to Fleet Master Seahorn at once! The ol\' sea dog is around town somewhere....", + ["O"] = "Report the planned Bloodsail attack to Fleet Master Seahorn.", + ["T"] = "The Bloodsail Buccaneers", + }, + [600] = { + ["D"] = "The Venture Company has a string of operations through Stranglethorn which keeps hard-working goblins, like me, from making honest gold! Please, you must help me!$B$BThe Venture Company is mining near the Crystalvein Mine to the north. They can\'t get into the mine because of all the basilisks, but they\'re still able to dig up Singing Crystals from the surrounding hills.$B$BTake their crystals from them, and show them they don\'t have the run of the jungle.$B$BAnd... um... bring me those crystals as proof!", + ["O"] = "Bring 10 Singing Blue Crystals to Crank Fizzlebub in Booty Bay.", + ["T"] = "Venture Company Mining", + }, + [601] = { + ["D"] = "The water elementals were no doubt summoned by Gazban, the goblin wizard rumored to have discovered the Stone of the Tides. As you may know, the Stone of the Tides curses its bearer, causing him to fade in and out of existence...$b$bPerhaps we can find a way to counteract the curse. We can have a mage of Dalaran analyze the magical residue of one of the water elemental\'s bracers. I need you to go back to the island and retrieve a few specimens.", + ["O"] = "Acquire 6 Water Elemental Bracers for Baron Revilgaz in Booty Bay.", + ["T"] = "Water Elementals", + }, + [602] = { + ["D"] = "From what I\'ve heard, the mages of Dalaran are busy with the reconstruction of their destroyed city, I\'m sure you can find one of them who will spare some time to look at the bracers. If there\'s anything I know about mages, they can\'t resist a magical puzzle.$b$bTake the bag of water elemental bracers and see if they can shed any light on the Stone\'s curse. Look for the Archmage Ansirem Runeweaver in particular. I\'ve dealt with him before, and his knowledge is vast.", + ["O"] = "Bring the water elemental bracers to Archmage Ansirem Runeweaver in Dalaran.", + ["T"] = "Magical Analysis", + }, + [603] = { + ["D"] = "The mage that is in possession of the Stone is amplifying its power through some focal point... an altar of some sort. You should be able to disrupt it by overpowering it.$b$bAs it happens, I know just the thing: an ancient dagger, another troll relic. There\'s just one... little problem.$b$bYou see, I found the dagger while researching in Stranglethorn, but I gave it to my willful daughter, Catelyn, who ran off to Booty Bay to become a pirate.", + ["O"] = "Talk to Catelyn in Booty Bay.", + ["T"] = "Ansirem\'s Key", + }, + [604] = { + ["D"] = "Crazz speaks highly of your dedication to the Blackwater Raiders. I am going to trust you with a mission of extreme importance to the fleet.$b$bInfiltrate the so-called southern command post the Bloodsail Buccaneers have established on the Wild Shore. Raid the encampment. Bring me their charts along with their written orders. We shall see exactly what those scum are up to.", + ["O"] = "Fleet Master Seahorn in Booty Bay wants you to kill 10 Bloodsail Swashbucklers and bring back the Bloodsail Charts and the Bloodsail Orders.", + ["T"] = "The Bloodsail Buccaneers", + }, + [605] = { + ["D"] = "The Singing Crystals are unique to Stranglethorn, and are very valuable to certain parties. I can move those crystals, but the cursed Venture Company makes it hard for an honest entrepreneur like myself to gather any!$B$BI\'d like to hire you.$B$BThe basilisks in Stranglethorn eat the crystal. This gives them their hardened skin, and sometimes decent quality crystal can be harvested from it.$B$BYou can get it from any basilisk, but the less nasty ones are along the shores south of Zul\'Kunda, to the north.", + ["O"] = "Bring 10 Singing Crystal Shards to Crank Fizzlebub.", + ["T"] = "Singing Blue Shards", + }, + [606] = { + ["D"] = "If there\'s one thing I can\'t stand, it\'s people who don\'t pay their gambling debts! And there are a lot of people who owe me. Think you can help me collect?$B$BFirst, there\'s \"Shaky\" Phillipe down by the docks. He owes me plenty after last week\'s game and I want my due! But to get it, we\'ll have to scare him.$B$BGo out of town and hunt Elder Mistvale Gorillas. Find a nice selection of giblets, then take them to Shaky. Don\'t let on that they\'re from an animal; let him think the worst.", + ["O"] = "Bring 5 Mistvale Giblets to \"Shaky\" Phillipe in Booty Bay.", + ["T"] = "Scaring Shaky", + }, + [607] = { + ["D"] = "Here, take this pouch and give it to Sea Wolf. And tell him I meant to pay him back! I swear!!$B$BI just got a little drunk and lost my way, and...you know how things are. He\'ll understand - you don\'t have to get rough!", + ["O"] = "Bring Shaky\'s Payment to \"Sea Wolf\" MacKinley", + ["T"] = "Return to MacKinley", + }, + [608] = { + ["D"] = "Blast the nerve of Firallon! He couldn\'t sail a skiff through Crystal Lake let alone lead an entire fleet against us.$b$bThe Bloodsail Buccaneers will pay for their carelessness. Now that we know their plan of attack, we can counter before they know what hit them.$b$bBut why send the entire fleet to do the work of one brave adventuring party? $n, take some of your most skilled comrades out to Firallon\'s landing spot and assassinate the Bloodsail leadership. Their fleet will sink soon after....", + ["O"] = "Fleet-Master Seahorn in Booty Bay wants you to kill Captain Stillwater, Captain Keelhaul and Fleet Master Firallon.", + ["T"] = "The Bloodsail Buccaneers", + }, + [609] = { + ["D"] = "My list is shortening, but there are still people who owe me.$B$BNext, we have Maury \"Club Foot\" Wilkins, Jon-Jon the Crow, and Chucky \"Ten Thumbs.\"$B$BThese scurvy dogs\' debts are months outstanding and I thought they skipped town to avoid paying up! Later, I heard they\'re cursed and bewitched and now wander the jungle ruins. But I don\'t care what their fate is - I want what\'s mine!$B$BThey\'re at the Ruins of Aboraz and the Ruins of Jubuwal, northeast of here. Find them, and collect.", + ["O"] = "Bring Maury\'s Clubbed Foot, Jon-Jon\'s Golden Spyglass, and Chucky\'s Huge Ring to \"Sea Wolf\" MacKinley in Booty Bay.", + ["T"] = "Voodoo Dues", + }, + [610] = { + ["D"] = "My FATHER sent you? I\'d have thought that old codger would have given up on me by now.$b$bIt wasn\'t really his fault I ran off, he just shouldn\'t have expected I\'d be willing to live a boring life, reading over musty books and associating with grey-haired, stiff-backed, stuffy mages!$b$bIf you need my dagger, you\'ll have to get it back from \"Pretty Boy\" Duncan, one of the Bloodsail Buccaneers. Put something \'tween his shoulders and I\'m sure he\'ll give it up.", + ["O"] = "Get Catelyn\'s dagger from \"Pretty Boy\" Duncan.", + ["T"] = "\"Pretty Boy\" Duncan", + }, + [611] = { + ["D"] = "So you\'re looking for an altar of some sort? Well, I\'m no expert on troll ruins like my father, but I have heard about a sunken troll city out near that island you\'re looking for. Maybe you should try there.$b$bYou got my knife back for me, so I guess you can borrow it... but I want it back when you\'re done!", + ["O"] = "Destroy the Altar of the Tides with Catelyn\'s Blade, kill Gazban and bring the Stone of the Tides and Catelyn\'s Blade back to Baron Revilgaz.", + ["T"] = "The Curse of the Tides", + }, + [613] = { + ["D"] = "Curses! That swab Maury put a lock on his foot, and I can\'t open it! His loot\'s inside the foot, and that\'s what he owes me!$B$BWe need to find the key to open the lock. Maury was known to gamble with the Mosh\'Ogg ogres, at their mound to the northeast. And he told me, when he was still alive, that the last time he went to the mound he was chased off after winning too much. Maybe the Ogres there have his key.$B$BBut if they do, you might have to kill a load of them to find the right one...", + ["O"] = "Bring Maury\'s Key to \"Sea Wolf\" Mackinley in Booty Bay.", + ["T"] = "Cracking Maury\'s Foot", + }, + [614] = { + ["D"] = "I used to sail a ship from here all the way to Ratchet, in Kalimdor. I was a successful captain with a sterling reputation.$B$BUntil...$B$BThose cursed sea giants ruined me! They smashed my ship, killed my crew, and set me on a lifeboat to Booty Bay. And one of the giants, Gorlash, stole my Captain\'s Chest. He said he wanted it for a snuffbox. The nerve!$B$BI hear Gorlash wanders the coast east of here. Find him and get back my chest! Do that, and you\'ll have earned a captain\'s gratitude.", + ["O"] = "Bring Smotts\' Chest to Hecklebury Smotts in Booty Bay.", + ["T"] = "The Captain\'s Chest", + }, + [615] = { + ["D"] = "After I lost my first ship to those giants, I bought another. Named Smotts\' Revenge, I filled it with supplies and crew, and set out to find the villains. I found them, but...they beat me. They smashed Smotts\' Revenge, killed my second crew and set me on another lifeboat.$B$BThis time another of the giants, Negolash, stole my cutlass.$B$BFace Negolash and bring me my cutlass!$B$BSpeak with Sprogger. He was my cook on the Smotts\' Revenge, and survived the last attack. He can help you find the giant.", + ["O"] = "Speak with Sprogger.", + ["T"] = "The Captain\'s Cutlass", + }, + [616] = { + ["D"] = "Baron Revilgaz has had me keep an ear out for rumors of the strange and out-of-place in Booty Bay and Stranglethorn. I don\'t usually put much stock in ghost stories, but I heard some sailors in the tavern talking about a haunted island off the coast. Water elementals and a raving goblin ghost, they say.$b$bIf you\'re going to go talk to Revilgaz, could you relay that story to him?", + ["O"] = "Speak with Baron Revilgaz in Booty Bay.", + ["T"] = "The Haunted Isle", + }, + [617] = { + ["D"] = "You looking fer work, $N? I might have some if you\'re up for a little challenge.$B$BI got a friend named Groy who makes a killing selling what the naga call akiris reed: it\'s some kind of valuable ocean reed. Not too sure what it\'s for, but he pays well for bundles of the stuff.$B$BYa bring me ten stalks of the stuff, and we\'ll have business to do. The naga were last seen along the beach to the north of here.", + ["O"] = "Bring 10 Bundles of Akiris Reed to Privateer Bloads in Booty Bay.", + ["T"] = "Akiris by the Bundle", + }, + [618] = { + ["D"] = "Negolash is a hungry giant.$B$BWhen the giants destroyed our ship, Negolash went straight for my kitchen. He wasn\'t hungry for crew like the other giants. Negolash wanted wine...and my Barbecued Buzzard Wings. They\'re my specialty, and I had to go all the way to the Badlands for the recipe!$B$BIf you want to lure the giant, then get some wine and a heap of buzzard wings. Put them in our old lifeboat, southeast of here along the coast. When Negolash smells all that food, he\'ll come for sure!", + ["O"] = "Bring 10 Barbecued Buzzard Wings and 5 bottles of Junglevine Wine to Captain Smotts\' Lifeboat.$B$BKill Negolash, and bring Smotts\' Cutlass to Captain Smotts in Stranglethorn.", + ["T"] = "Facing Negolash", + }, + [619] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Enticing Negolash", + }, + [620] = { + ["D"] = "This fine sash has the letters \"HS\" embroidered along its hem.", + ["O"] = "Return the Monogrammed Sash to its owner.", + ["T"] = "The Monogrammed Sash", + }, + [621] = { + ["D"] = "Zanzil the Outcast dwells with his followers in the Jubuwai and Aboraz Ruins, northeast of Booty Bay. He is exiled from his tribe. Why? Well...$B$BZanzil has methods of bending the minds of others, and his leaders fear him. He uses a mixture of jungle plants on his followers to suppress their will and strengthen their bodies.$B$BHis mixture would be worth much to those who wish to control others.$B$BBring me samples of his mixture, and I will find a use for them.", + ["O"] = "Bring 12 samples of Zanzil\'s Mixture to Crank Fizzlebub in Booty Bay.", + ["T"] = "Zanzil\'s Secret", + }, + [622] = { + ["D"] = "While you were gone I fixed the pot you brought me. I even added an extra steam whistle, and look! There\'s a new chopper at the bottom that\'ll cut through leg bones!$B$BYes yes, Krazek\'s Crock Pot is a 100% cook pleaser! I\'m sure its owner will be satisfied.", + ["O"] = "Bring Krazek\'s Fixed Pot to Corporal Kaleb at the Rebel Camp.", + ["T"] = "Return to Corporal Kaleb", + }, + [623] = { + ["D"] = "$N, since I have you here, I got a message from Groy while you were gone. He mentioned bein\' satisfied with the last shipment that arrived and has a client that wants some more of the stuff right away.$B$BI won\'t be headin\' to Theramore for a week, but if you\'re willin\' to make the journey, there\'s no reason you can\'t take the stuff for me.$B$BFeeling adventurous? You do know where Dustwallow Marsh is, doncha? I\'d be careful though, Theramore can be dangerous if you\'re the wrong kind of crowd.", + ["O"] = "Bring a Bundle of Akiris Reeds to Privateer Groy in Theramore.", + ["T"] = "Akiris by the Bundle", + }, + [624] = { + ["D"] = "There is an ornate, well-traveled bridge$bEast of Deadwind and south of Redridge$bUnderneath there waits something for you$bSome call it a hint, others a clue$bThere it will lie for endless tomorrows$bBiding its time in the Swamp of Sorrows", + ["O"] = "Solve the riddle!", + ["T"] = "Cortello\'s Riddle", + }, + [625] = { + ["D"] = "A far off land in Kalimdor awaits$bWhere peril has dashed hopes and fates$bEast of Barrens the weather is harsh$bGloom and danger pock Dustwallow Marsh$bBut there lies a clue for those up to the test$bWaiting to be found in a cave in the southwest", + ["O"] = "Solve the riddle!", + ["T"] = "Cortello\'s Riddle", + }, + [626] = { + ["D"] = "To Lordaeron! The great land of turmoil$bWhere brave soldiers with death do toil$bFind your way through the great unrest$bThere you will find the end to this quest$bAlong the coast of the Hinterlands, at the base of the great falls$bUnderneath the water there does your treasure call!", + ["O"] = "Solve the riddle!", + ["T"] = "Cortello\'s Riddle", + }, + [627] = { + ["D"] = "There is a mountain cave in Drywhisker Gorge, far to the north in the Arathi Highlands. In that cave is rare ore: bloodstone. The bloodstone in this cave is not of the highest grade, but even low-quality bloodstone is valuable... to those with the knowledge to use it.$B$BI would like some.$B$BI will fix your crock pot, but while I work on it... bring me samples of bloodstone. Bring me enough, and I\'ll even give you a bonus.$B$BOh, and if you don\'t have the skill to mine it... find someone who does!", + ["O"] = "Bring 4 loads of Lesser Bloodstone Ore to Krazek in Booty Bay.", + ["T"] = "Favor for Krazek", + }, + [628] = { + ["D"] = "With the inside finished, all that\'s left is to add the outer layer. For this, I use only the best elder croc skins. They are more durable and a better canvas--if you will--for adding the designs and accents that make Drizzlik\'s Excelsior line.$b$bIt\'s hard to find that perfect skin though, the only one that fits my plan is the skin of an elder saltwater crocolisk. The elders only come out to defend the other saltwater crocs, so you might need to kill a few to draw one out.", + ["O"] = "Bring an Elder Crocolisk Skin to Drizzlik in Booty Bay.", + ["T"] = "Excelsior", + }, + [629] = { + ["D"] = "Long ago, a great shudder of the earth sunk an old troll city beneath the waters of the Savage Coast to the northwest. We call that place the Vile Reef, for murlocs now reside in the ruins of the city, attacking any who draw close.$B$BThere is an old tablet among those ruins that tells the ancient tale of Gri\'lek, a hero of troll legends. The tale is sacred to the Darkspear tribe, and although the tablet is too large to move, I want a shard of it to enshrine in our new home in Orgrimmar.", + ["O"] = "Bring a Tablet Shard to Kin\'weelay at the Grom\'gol Base Camp.", + ["T"] = "The Vile Reef", + }, + [630] = { + ["D"] = "$N, I put my faith in you and anyone you can muster to help free me. The great Skymane King Mukla is my captor. He commands the beasts of this island, and they keep me here against my will with the aid of this chain. If you can slay him and find the key to this shackle, I shall be indebted to you greatly.$B$BI often hear him to the southeast side of the island, but please be careful: he is not to be trifled with.", + ["O"] = "Slay King Mukla and return to Princess Poobah with the Key to free her.", + ["T"] = "Message in a Bottle", + }, + [631] = { + ["D"] = "A tremendous explosion roared through the hills. \'Twas horrible, I tell you!$b$bGood soldiers died defending the Thandol Span. Longbraid says we\'ll take revenge on the Dark Irons before all is said and done.$b$bWe\'re in a world of hurt though and I don\'t see any reinforcements in sight. Longbraid sent Ol\' Rustlocke to scout the eastern bridge to see if we could secure it.$b$bThat was days ago. We haven\'t the manpower to search for him with Dun Modr under siege.$b$bPerhaps you can find him...", + ["O"] = "Rhag Garmason wants you to locate Ol\' Rustlocke.", + ["T"] = "The Thandol Span", + }, + [632] = { + ["D"] = "It seems as though poor Ol\' Rustlocke ran into a Dark Iron ambush. You notice a parchment next to his clenched fist.$b$bReport the grim news to Rhag Garmason and show him what you found.", + ["O"] = "Report back to Rhag Garmason and show him the parchment you found on Rustlocke\'s corpse.", + ["T"] = "The Thandol Span", + }, + [633] = { + ["D"] = "Heavens no! Poor Rustlocke. \'Tis quite a tragedy indeed.$b$bWe must not let his death pass in vain. This parchment you discovered indicates that Kam Deepfury, the mastermind behind the original attack, arranged for a cache of explosives to be stashed just across the Thandol Span, in Arathi Highlands.$b$bIf those explosives make it to the bridge, our major supply line to the north will be severed! The cache must be destroyed, $n! Return to me when your mission is complete.$b$bYou\'re our only hope.", + ["O"] = "Destroy the cache of explosives.", + ["T"] = "The Thandol Span", + }, + [634] = { + ["D"] = "I ask of you one more small favor, $c. We await the reserves of Ironforge. However, Roggo has knowledge of an Alliance camp to the north in Arathi Highlands at Refuge Pointe.$b$bTravel there and seek out Captain Nials. Ask the good Captain if the Alliance can spare some soldiers to help us reclaim Dun Modr and the Thandol Span.", + ["O"] = "Seek out Captain Nials at Refuge Pointe.", + ["T"] = "Plea To The Alliance", + }, + [635] = { + ["D"] = "This shard pulses as you hold it...$B$BYou feel a sense of pleading coming from the shard, as if someone is trying to communicate, someone who desperately needs your help.$B$BA vision appears in your mind - of the northern mountains of Arathi, and of a brilliant crystal jutting from the earth there.$B$BYou feel drawn to that place.", + ["O"] = "Find the crystal from your vision.", + ["T"] = "Crystal in the Mountains", + }, + [636] = { + ["D"] = "This book tells the tale of an elemental princess, Myzrael, and of her imprisonment deep underneath the Arathi Highlands.$B$BIt also tells of a secret outcropping of crystals in the highlands. These crystals, the Shards of Myzrael, are a window to the princess\' prison.$B$BIf a brave soul found the Shards of Myzrael, the perhaps $ghe:she; could speak with her...", + ["O"] = "Find the Shards of Myzrael.", + ["T"] = "Legends of the Earth ", + }, + [637] = { + ["D"] = "The waterlogged and war-torn envelope dissolves in your hands, leaving you with a few pages of a letter in your grasp, written with painstaking care.$b$bThe letter is addressed to a Mrs. Sara Balloo of Ironforge and begins, \"My dear Sara....\"", + ["O"] = "Deliver Sully Balloo\'s Letter to Sara Balloo.", + ["T"] = "Sully Balloo\'s Letter", + }, + [638] = { + ["D"] = "With Thoras Trollbane dead and Stromgarde in ruins, Vol\'jin has instructed that we make every effort to spirit the legendary sword Trol\'kalar from the humans\' hands, so that we might use it in our coming battles against the trolls of Zul\'Gurub.$b$bZengu, one of our seasoned hunters, was dispatched to Hammerfall in northeastern Arathi Highlands to oversee its procurement.", + ["O"] = "Travel to Hammerfall in the Arathi Highlands and speak with Zengu.", + ["T"] = "Trollbane", + }, + [639] = { + ["D"] = "In ancient times, trolls fought against the Arathorian Empire and our most capable adversary, Lord Ignaeus of Strom, named Trollbane. He rode into battle wielding Trol\'kalar--troll slayer, in their ancient tongue.$b$bBut now the sons of Trollbane are weakened, their stronghold brought to ruin.$b$bThe sword is protected by several sigils that were divided among the survivors of Stromgarde, and we must retrieve them.$b$bThe first was taken by the Syndicate, one of their men in Stromgarde should have it.", + ["O"] = "Get the Sigil of Strom for Zengu in Hammerfall.", + ["T"] = "Sigil of Strom", + }, + [640] = { + ["D"] = "Thoras Trollbane\'s tomb is protected by three sigils--the first of which you retrieved from the Syndicate. The other two will be harder to get, as they\'re held by the firmly entrenched Stromgarde militia.$b$bThe sigil of Thoradin was divided into eleven pieces by Thoras\' son, Galen, and dispersed among the Stromgarde defenders. Retrieve the pieces and bring them to Tor\'gan, the troll shaman, he will be able to bind them into the complete sigil.", + ["O"] = "Retrieve the 11 Sigil Fragments from the defenders in Stromgarde, and bring them to Tor\'gan in Hammerfall.", + ["T"] = "The Broken Sigil", + }, + [641] = { + ["D"] = "The reconstruction worked flawlessly. The sigil can now be used to unlock the seal on Trollbane\'s tomb. Return it to Zengu, no doubt he has additional tasks for you to complete.", + ["O"] = "Bring the restored Sigil of Thoradin to Zengu in Hammerfall.", + ["T"] = "Sigil of Thoradin", + }, + [642] = { + ["D"] = "My name is Myzrael. I am a princess of the earth, and my captors, the giants, have trapped me deep beneath the Arathi Highlands. These crystal shards are the only way I can speak with the surface world.$B$BPlease help me. Allies of the giants, the Drywhisker Kobolds, have a shard like this one in their Drywhisker Gorge, to the east. To power the cluster, you must gather Motes of Myzrael from the kobolds and apply them to it.$B$BI beg you, $N, aid me!", + ["O"] = "Gather 12 Motes of Myzrael, then bring them to the Iridescent Shards in Drywhisker Gorge.", + ["T"] = "The Princess Trapped", + }, + [643] = { + ["D"] = "Though they can barely be said to control Stromgarde, let alone the whole of Arathi Highlands, the human prince trots the remnants of his cavalry over the countryside. I can\'t understand why he does it, but who understands the way the humans think, hm?$b$bWhatever his reasoning, more importantly, he has given one of the sigils to Lieutenant Valorcall, their cavalry leader. Locate him and bring his sigil back to me.", + ["O"] = "Retrieve the Sigil of Arathor and return it to Zengu in Hammerfall.", + ["T"] = "Sigil of Arathor", + }, + [644] = { + ["D"] = "The final of the sigils needed to unlock the tomb of Thoras Trollbane is held by his son personally. He resides deep within Stromgarde, in a chapel in the militia-held districts. Prince Galen is well protected and no slouch of a warrior himself, so this task could prove most difficult.", + ["O"] = "Kill Prince Galen Trollbane and bring the Sigil of Trollbane to Zengu in Hammerfall.", + ["T"] = "Sigil of Trollbane", + }, + [645] = { + ["D"] = "What\'s this? With the four sigils brought together, they have formed together to create one sigil. There can be no doubt that this will be able to break the wardings placed upon Trollbane\'s tomb.$b$bTrollbane\'s remains are entombed in the Sanctum behind the chapel in Stromgarde. Retrieve Trol\'kalar.", + ["O"] = "Retrieve Trol\'kalar from Trollbane\'s tomb in Stromgarde.", + ["T"] = "Trol\'kalar", + }, + [646] = { + ["D"] = "The light slowly fades, the sword Trol\'kalar, held within a stone sheath has been released.", + ["O"] = "Deliver Trol\'kalar to Zengu in Hammerfall.", + ["T"] = "Trol\'kalar", + }, + [647] = { + ["D"] = "Had quite a bit of the ol\' Moonshine last night! Longbraid would have my head if he knew that I passed out during my watch.$b$bThe noggin hurts something fierce. Felt as though a whole brigade of siege engines passed overhead, all that rumbling.$b$bOh my, look at the time! I promised Brewmeister Bilger in Southshore that I\'d repay my debt to him by sending some Moonshine.$b$bBut there are just 15 minutes left before I\'m overdue! Take him this batch, would you please? And hurry!", + ["O"] = "Take MacKreel\'s Moonshine to Brewmeister Bilger in Southshore.", + ["T"] = "MacKreel\'s Moonshine", + }, + [648] = { + ["D"] = "The gnome\'s voice crackles once again from the robot:$B$B\"I need to move OOX-17/TN to an open, safe place so it can begin a lengthy take-off procedure. It has built-in cloaking, but I need time on my end to make it operational again. I need you to escort the robot from its current location to, let\'s say, Steamwheedle Port! That should be a perfect place, and long enough, to get things on line!\"$B$B\"Escort it safely to the port, and then come talk to me in Booty Bay! Oglethorpe Obnoticus - out!\"", + ["O"] = "Escort OOX-17/TN to Steamwheedle Port, then report to Oglethorpe Obnoticus in Booty Bay.", + ["T"] = "Rescue OOX-17/TN!", + }, + [649] = { + ["D"] = "I\'ve got some salvage work for you, and if you\'re an aficionado of fine ripple like I am, then you\'ll love this task. Ripple!$B$BIt\'s a drink, you dummy.$B$BAn abandoned Horde outpost has a stash of Hinterlands Honey Ripple from when they were in business. You can\'t get fine ripple like that anymore! One of Malton\'s dummy associates knows the shot, so you\'ll go out there and bring me a case of packaged ripple, and two for my own collection! Talk to Malton, he\'ll fill you in on the details.", + ["O"] = "Talk to Malton Droffers in Orgrimmar.", + ["T"] = "Ripple Recovery", + }, + [650] = { + ["D"] = "The elf you will need to talk to is Gilveradin Sunchaser. He can name any wine, vintage and all, just by smell alone! He can package up the ripple we need, so you\'ll need to talk with him. We need six bottles for packaging, two for dad, and how ever many he\'ll want... and believe me, he\'ll want some. When you\'ve packaged the ripple and got dad\'s two bottles, come back here!$B$BGilveradin\'s camp is near some high elf lodge in the Hinterlands, and those high elves are not good. Trust me.", + ["O"] = "Talk to Gilveradin Sunchaser; his camp is located in the Hinterlands.", + ["T"] = "Ripple Recovery", + }, + [651] = { + ["D"] = "Four Stones of Binding are scattered throughout Arathi. These stones keep me pinned beneath the earth.$B$BTo unlock them you must unlock the strongest: the Stone of Inner Binding. And to do that, you must gather keys from the other three.$B$BThese stones are watched by guardians, but if you are clever, or lucky, you may find ways to banish them.", + ["O"] = "Gather the Burning Key, the Cresting Key and the Thundering Key from the Stone of West Binding, the Stone of East Binding and the Stone of Outer Binding.$B$BBring them to the Stone of Inner Binding.", + ["T"] = "Stones of Binding", + }, + [652] = { + ["D"] = "Opening the Stones of Binding loosened much of my confinement, but a lock still holds me chained. It is the Keystone you see among this circle of stones. And the key is held by one of my captors, the stone watcher Fozruk.$B$BYou must obtain that key, which the stone watchers call the Rod of Order, from Fozruk and use it to open the Keystone.$B$B$N, you have done so much to aid me. Just a little more...and my gratitude will shake the very foundations of the earth!", + ["O"] = "Find and kill Fozruk. Bring the Rod of Order to the Keystone in the Arathi Highlands.", + ["T"] = "Breaking the Keystone", + }, + [653] = { + ["D"] = "$B$BFree! I AM FREE! I am free to gather strength, hidden from my captors. For if they faced me now they would surely overpower and again imprison me.$B$BBut in time I will confront the giants, and they will regret their wardship of me!$B$BYou are a noble ally, $N. I will need your help again in time. When I am ready, I will need you to summon me to the surface.$B$BSpeak with Gerrig Bonegrip. He is in Ironforge, in a shop of the Forlorn Cavern. He knows how I can be summoned.", + ["O"] = "Speak with Gerrig Bonegrip in the Forlorn Cavern of Ironforge.", + ["T"] = "Myzrael\'s Allies", + }, + [654] = { + ["D"] = "Activating the power source makes the field testing kit start to glow and vibrate. It would seem to be working as planned.$B$BAccording to Chief Engineer Bilgewhizzle, you now have two hours to collect the data you need in the Tanaris desert. If you do not collect it within two hours, all the data will be lost and you will need to buy another power source from him.$B$BReturn to him when you have completed the task.", + ["O"] = "Acquire acceptable samples for 8 basilisks, 8 hyenas, and 8 scorpions. Bring the testing kit back to Chief Engineer Bilgewhizzle in Gadgetzan before the power source runs out.", + ["T"] = "Tanaris Field Sampling", + }, + [655] = { + ["D"] = "It is still clear to me, like yesterday... So many years without hope, with wood and steel to bind me to this terrible place. Then finally, finally! There was the Warchief. Doomhammer in his midnight plate, his warhammer held high.$b$bIt was... too terrible... That the blow of a coward would strike down our greatest hero. From behind he charged on his horse, and then his lance ran him through... I fell to my knees. What hope was there? What hope is there...", + ["O"] = "Speak with Tor\'gan in Hammerfall.", + ["T"] = "Hammerfall", + }, + [656] = { + ["D"] = "You must defeat Myzrael before she grows in strength. If you do not, then once she has gathered enough power she will challenge her captors! There are some who think they can control her, but if she can be controlled then why did the giants chain her in the first place??$B$BCrazy logic, eh?$B$BTo defeat her, summon her at the Shards of Myzrael where you first spoke with her. Defeat her and gather her Eldritch Shackles, then bind them to the Shards of Myzrael.$B$BDo that, and she will again be trapped.", + ["O"] = "Go to the Shards of Myzrael, summon her and defeat her.$B$BGather her Eldritch Shackles and bind them to the Shards of Myzrael.", + ["T"] = "Summoning the Princess", + }, + [657] = { + ["D"] = "$B$BThis IS interesting. Seems Apothecary Jorell has been working on some deadly experiments here at Go\'Shek. Not sure what that has to do with Hillsbrad, but Phin wouldn\'t like it if we let it continue.$B$BWe had a run-in with some orcs while you were gone, and I\'m not in good enough shape to help Kinelory. If you\'re up for it, she\'s going to need some protection when she goes down to the farm to steal whatever research Jorell still hasn\'t sent to Tarren Mill.", + ["O"] = "Speak to Kinelory.", + ["T"] = "Hints of a New Plague?", + }, + [658] = { + ["D"] = "So, Phin sent you to check on us? Not surprised--he worries too much.$B$BWe\'ve been watching the farm for days, and Kin claims she saw a courier come out of that small house to the south not long ago.$B$BShe talks a lot, but I can always trust her senses when we\'re in dangerous areas.$B$BYou wouldn\'t happen to be a skilled tracker, would you? We think the courier might be carrying notes to Tarren Mill. If we could get our hands on those documents, it might shed some light on what\'s happening in Hillsbrad.", + ["O"] = "Find the Forsaken Courier and bring back her Sealed Folder to Quae near the Go\'Shek Farm.", + ["T"] = "Hints of a New Plague?", + }, + [659] = { + ["D"] = "Hail, and well met, $N. I lead a group of adventurers investigating odd happenings in this area.$B$BMy cousin in Hillsbrad recently put down his dog Stanley because the animal mystically grew to an immense size and savagely attacked anyone who came near him.$B$BI believe the undead are involved, and we\'re looking for signs to prove as much.$B$BTwo of my companions, Quae and Kinelory, headed to the Go\'Shek Farm in the Arathi Highlands, and haven\'t checked in for days. Find them for me? I grow concerned.", + ["O"] = "Find Quae and Kinelory near the Go\'Shek Farm in the Arathi Highlands.", + ["T"] = "Hints of a New Plague?", + }, + [660] = { + ["D"] = "All right, $N. I\'m ready if you are.$B$BShall we?", + ["O"] = "Protect Kinelory until she returns to Quae.", + ["T"] = "Hints of a New Plague?", + }, + [661] = { + ["D"] = "I\'ve seen Kinelory look way worse after a night in the tavern than she does now. You obviously did a good job protecting her.$B$BThese items she brought back from the farm should at least let Phin get an idea of what\'s going on out here in Arathi. Just to make sure there\'s no retaliation after your attack, we\'re going to stay here for a bit longer. Would you be willing to head back to Southshore and talk to Phin?", + ["O"] = "Find Phin Odelic in Southshore.", + ["T"] = "Hints of a New Plague?", + }, + [662] = { + ["D"] = "O\'Breen led the ships into the cove. We were certain this is where the treasure could be found. The Harbinger docked safely but as the Maiden\'s Folly and Spirit of Silverpine approached the tides began to lower. Strangest thing I\'ve ever seen!$b$bThose two ships ran aground into something... some sort of temple in the reef. They sank so quickly, was quite a tragedy.$b$bWe need to retrieve their Logs as well as their Charts before we leave. We can\'t leave that information behind for prying eyes!", + ["O"] = "First Mate Nilzlix wants you to retrieve the Charts and Logs from the Maiden\'s Folly and the Spirit of Silverpine.", + ["T"] = "Deep Sea Salvage", + }, + [663] = { + ["D"] = "Lolo sees a tiny $r! Always on the lookout, Lolo is!$b$bWelcome to Faldir\'s Cove. Captain O\'Breen said we\'d only be here for a few hours. Just long enough to gather the treasure and get back to Booty Bay.$b$bBut Lolo thinks we\'re going to be here a lot longer than that. We lost the other two ships from our formation. Poor Spirit of Silverpine and Maiden\'s Folly. On the bottom of the sea they rest now!$b$bLolo suggests you talk to Captain O\'Breen if you plan on sticking around here.", + ["O"] = "Talk to Captain O\'Breen in Faldir\'s Cove.", + ["T"] = "Land Ho!", + }, + [664] = { + ["D"] = "Argh, \'tis a horrible life. I should be in a watery grave right now, not sittin\' here by the fire, breathin\' fresh air.$b$bThe crew tried so hard to save my beautiful Maiden\'s Folly. Bless the boys, bless their hearts.$b$bO\'Breen made it to shore safely but we weren\'t so lucky. The seas just sank on us, I swear.$b$bOne second we\'re afloat and the next water is rushin\' in. And those beasts! Killed all the survivors. Horrible naga scum. I went black and ended up here, saved.$b$bI want those beasts dead.", + ["O"] = "Captain Steelgut in Faldir\'s Cove wants you to kill 10 Daggerspine Raiders and 3 Daggerspine Sorceresses.", + ["T"] = "Drowned Sorrows", + }, + [665] = { + ["D"] = "Now that we are full-fledged Blackwater Raiders it is our job to help Mr. O\'Breen locate the lost elven treasure.$b$bIt is next to impossible to find the gems in the dark sea without aid. The doctor has constructed some goggles that will help. He needs the goggles charged with the energy derived from the enchanted stone in the cave just up the hill.$b$bBut the cave is cursed! When we get close, we get ambushed. Defend me and I can harness the energy from the stone into the goggles.", + ["O"] = "Escort Professor Phizzlethorpe to the cave and back.", + ["T"] = "Sunken Treasure", + }, + [666] = { + ["D"] = "The treasure has been on the sea floor so long that the gems have calcified into thick stone. But the power harnessed in these goggles will allow you to locate them easily.$b$bA little gnomish ingenuity goes a long way!$b$bSo borrow the Goggles of Gem Hunting, $n, and see if you can collect some of the lost treasure for Captain O\'Breen.$b$bI\'d swim down there myself but...um...well, I have important scientific business to tend to up on the safe, dry land....er, yeah.", + ["O"] = "Doctor Draxlegauge in Faldir\'s Cove wants you to collect 10 Elven Gems and return the Goggles of Gem Hunting once you are done.", + ["T"] = "Sunken Treasure", + }, + [667] = { + ["D"] = "This is bad. It seems the Daggerspines are amassing for an attack.$b$bNaga are known for their ruthlessness in battle. They will keep attacking until I am dead.$b$bI don\'t value my own life above that of my crew members, but you must help to defend me. The crew will not be able to make it back to Booty Bay without my knowledge of the seas.$b$bThe naga will be coming from the sea. I need you to remain up here with me to fend off the attack. Man the cannon and drive them back.$b$bAre you ready, $n?", + ["O"] = "Protect Shakes O\'Breen during the attack.", + ["T"] = "Death From Below", + }, + [668] = { + ["D"] = "Let\'s not leave Captain O\'Breen waiting. He\'ll want to see these gems first hand. After all, that\'s why we\'re here!$b$bAnd after a few weeks of consorting with these pirates, the professor and I have realized the last thing that\'s good for our health is to be caught hanging on to their treasure.$b$bHere, $n, take these to O\'Breen.", + ["O"] = "Take the Elven Gems to Captain O\'Breen.", + ["T"] = "Sunken Treasure", + }, + [669] = { + ["D"] = "Fleet Master Seahorn will want to hear about our find at once.$b$bBut as you can see, we\'re not in much of a position to get out of here. Not only is the tide too low, but those damned creatures we disrupted are keeping a close eye on our movements.$b$bYou can be of great service to the Blackwater Raiders if you can get word to Fleet Master Seahorn in Booty Bay that we discovered the treasure and are working on extracting more. Take him this sample as proof.", + ["O"] = "Take the Sample Elven Gem to Fleet Master Seahorn in Booty Bay.", + ["T"] = "Sunken Treasure", + }, + [670] = { + ["D"] = "Say, $n, you seem to be an adventurous type. My fleet is stuck in Booty Bay until we can restock.$b$bThere are some heavy things brewing here and abroad and I need to get some top secret correspondence to Shakes O\'Breen who is tied up off the Arathi coast.$b$bCan I trust you to deliver this message safely and in confidence?", + ["O"] = "Deliver Seahorn\'s Letter to Shakes O\'Breen in Arathi Highlands.", + ["T"] = "Sunken Treasure", + }, + [671] = { + ["D"] = "I have felt a strangeness in the air... a feeling that simmers in my blood. I had my suspicions. I set off to find the source of my unease and discovered to the west, at Northfold Manor, the residual traces of demonic summoning. As I got close, my blood began to boil and the rage within me grew.$b$bOn the ground I spied an amulet of bloodstone, used to assist in demonic summoning. The one I found was depleted, however. I\'ll need another to examine, but I dare not return to the manor. Can you bring me some?", + ["O"] = "Get 10 Bloodstone Amulets for Tor\'gan in Hammerfall.", + ["T"] = "Foul Magics", + }, + [672] = { + ["D"] = "We tried to settle him in, cheer him up, telling him stories of our mighty city at Orgrimmar in Kalimdor, but nothing would move him.$b$bTales of our young Warchief, Thrall, who bears the armor and hammer of Orgrim... but, perhaps... Perhaps! A demonstration of our newly found shamanistic magic would give him new hope. It is worth a try!$b$bA small object we could make for him, yes... Bring me some raptor eyes, and I will see what I can do.", + ["O"] = "Acquire 10 Highland Raptor Eyes from Highland Striders and Highland Thrashers for Tor\'gan in Hammerfall.", + ["T"] = "Raising Spirits", + }, + [673] = { + ["D"] = "There is no doubt in my mind that a powerful warlock resides within the walls of Stromgarde. From time to time, using an arcane magical relic, this warlock has summoned forth terrible demons in large numbers. We must remove the source of his energy.$b$bFind the warlock and kill him. Bring me whatever magical object you find on his person, and I will take steps to destroy it and see that its power is not used to taint this land any longer.", + ["O"] = "Retrieve Marez Cowl\'s Bloodstone Orb and bring it to Tor\'gan in Hammerfall.", + ["T"] = "Foul Magics", + }, + [674] = { + ["D"] = "Here, take this amulet to Gor\'mul, and see if the raptors\' strength can awaken the flame of the warrior that once burned through his veins.", + ["O"] = "Give the Raptor Talon Amulet to Gor\'mul.", + ["T"] = "Raising Spirits", + }, + [675] = { + ["D"] = "$b$bTor\'gan sent you, didn\'t he? Pah! Why he feels some mercy towards me I would not understand. Mercy was denied me when I was not allowed to die with my Warchief in battle. A cruel blow fate has dealt me...", + ["O"] = "Speak with Tor\'gan.", + ["T"] = "Raising Spirits", + }, + [676] = { + ["D"] = "Weaklings... all of them. You, $c, what are you looking at? Think you\'re something special, huh? Why not prove it?$B$BThe Hammerfall outpost in Arathi\'s under attack. Unless we send them help soon, their demise is imminent.$B$BBut before you go rushing off, you may want to test your skills first. Northeast of Stromgarde in Arathi is an ogre mound inhabited by the Boulderfist tribe. When you can handle the ogres and enforcers there, then report to Drum Fel in Hammerfall.", + ["O"] = "Kill 8 Boulderfist Ogres and 10 Boulderfist Enforcers, then find Drum Fel in the Hammerfall outpost in Arathi Highlands.", + ["T"] = "The Hammer May Fall", + }, + [677] = { + ["D"] = "The Witherbark trolls and Boulderfist ogres of Arathi are working together to rid us from this land, but we shall not meet our fates at their, or anyone else\'s, hand. We will slay them and show them that we, too, have a home here. $B$BThe trolls turned their backs to us; the ogres would use us for food and bedding if we allowed them to--these things shall not be.$B$BWe start our attack on the Witherbark trolls to the south of here. Slay them in droves, and only return when their camps run thick with blood.", + ["O"] = "Slay 10 Witherbark Axe Throwers, 10 Headhunters and 8 Witch Doctors, and return to Drum Fel in the Hammerfall outpost.", + ["T"] = "Call to Arms", + }, + [678] = { + ["D"] = "Your strength is evident, $N. Now to see how you fare against a real enemy.$B$BThe Boulderfists have a lair to the southwest of here towards the dwarven bridge, and, if I\'m not mistaken, the maulers and magi there shall present to you a greater challenge--they have done so to us thus far.$B$BSlay as many as you can and come to me in body when you are successful, or come to me in spirit when you fail. I shall give praise to your tenacity in battle either way.", + ["O"] = "Kill 10 Boulderfist Brutes and 4 Boulderfist Magi, and return to Drum Fel in the Hammerfall outpost.", + ["T"] = "Call to Arms", + }, + [679] = { + ["D"] = "The head of the beast is ready to be taken off... with great force, $N. You have shown every sign that you are able to help us with this final mighty blow. The leaders of these attacks have made their lair within the ruins of Stromgarde, a glaring symbol of human frailty.$B$BFind and slay those Boulderfist lords and their lackey shaman who would try and drive us from these lands.", + ["O"] = "Kill 15 Boulderfist Shaman and 10 Boulderfist Lords and return to Drum Fel in the Hammerfall outpost.", + ["T"] = "Call to Arms", + }, + [680] = { + ["D"] = "You serve my husband well, $c, but he does not know why Hammerfall is under attack.$B$BOr\'Kalar, Mug\'thol\'s pawn in Stromgarde, has an intense hatred for my husband, and wishes nothing more than my husband\'s death for defeating him years ago.$B$BMy auguries tell me that Or\'Kalar has laid a trap for my husband, so I have hidden signs of the ogre\'s presence from him.$B$BMy husband will rush off foolishly if he learns of the ogre\'s whereabouts and I would ask for your help in slaying the creature.", + ["O"] = "Slay Or\'Kalar and bring his Head to Korin Fel in the Hammerfall outpost.", + ["T"] = "The Real Threat", + }, + [681] = { + ["D"] = "We are fighting a war for Stromgarde, and we are losing. The ogres, the Syndicate and we have divided our once great city, and each faction battles the other into a bloody stalemate.$B$BBut our forces dwindle while our enemy grows.$B$BWe need help from the town of Southshore, but supplies are difficult to receive while the Syndicate holds territory between us.$B$BGo to the Syndicate base in Northfold Manor and slay them. Then, perhaps, pressure on our supply trains will lessen and more will get through.", + ["O"] = "Kill 10 Syndicate Highwaymen and 6 Syndicate Mercenaries.$B$BReturn to Captain Nials at Refuge Pointe.", + ["T"] = "Northfold Manor", + }, + [682] = { + ["D"] = "The Syndicate in Stromgarde do battle with our contingent of militia there. In order to urge the rabble to fight our more disciplined troops, the Syndicate leaders have placed a bounty on our soldiers, awarding gold for each Stromgarde Badge gathered off killed militiamen.$B$BWe want those badges retrieved - we cannot allow the cutthroats to take trophies from our brave fallen!$B$BEnter the Syndicate-controlled area of Stromgarde and hunt them for our badges.", + ["O"] = "Bring Stromgarde Badges to Captain Nials at Refuge Pointe.", + ["T"] = "Stromgarde Badges", + }, + [683] = { + ["D"] = "$n, I have but a small request to ask of you.$b$bTake this note I have prepared to our great monarch of Ironforge, King Magni Bronzebeard. \'Tis a small task to ask of one such as yourself, someone who has shown great valor to the cause of the Alliance thus far.$b$bFor me to go before the King in my grief-ridden state would not serve the purpose of my cause. Surely you understand.", + ["O"] = "Take Sara Balloo\'s note to King Magni Bronzebeard of Ironforge.", + ["T"] = "Sara Balloo\'s Plea", + }, + [684] = { + ["D"] = "A bounty has been placed on the head of Marez Cowl, a high-level advisor and operative of the Syndicate. She was last seen within the Syndicate controlled territory of Stromgarde.$B$BBounty may be collected from Captain Nials.$B$BBe warned: Marez is a skilled and cunning Warlock, known for her trafficking with demons. Extreme caution is advised when hunting her.", + ["O"] = "Bring Marez\'s head to Captain Nials at Refuge Pointe.", + ["T"] = "Wanted! Marez Cowl", + }, + [685] = { + ["D"] = "The Stromgarde Militia has placed bounties on the heads of Lord Falconcrest, and his bodyguard Otto. Falconcrest heads the Syndicate\'s efforts in the Arathi Highlands, and his death would cause a major disruption in those efforts.$B$BHis bodyguard Otto, although not a strategic target, is a fierce opponent and has killed dozens of our defenders.$B$BTheir bounties may be collected from Captain Nials.", + ["O"] = "Bring Otto\'s Head and Falconcrest\'s Head to Captain Nials at Refuge Pointe.", + ["T"] = "Wanted! Otto and Falconcrest", + }, + [686] = { + ["D"] = "I do not expect good dwarves like Mrs. Balloo to understand why the travesties of war must be endured for the greater good of our people. The loss of her husband, and the loss of every dwarf that fights in the name of the Alliance, weighs heavy on my soul.$b$bWhile I cannot bring her husband back from the Twisting Nether, I can pay tribute to him.$b$bI am going to commission a memorial to Sully Balloo to be built by Grand Mason Mablesten.$b$bSend word to him now, $c. You shall be custodian of my bidding.", + ["O"] = "King Magni Bronzebeard wants you to speak with Grand Mason Marblesten.", + ["T"] = "A King\'s Tribute", + }, + [687] = { + ["D"] = "Theldurin the Lost was once a member of our order, the Twilight\'s Hammer. But he lost his mind and scorned our teachings. And before he fled from us, he stole the scroll of Myzrael! We could not catch him, but rumors say he hides in the Badlands, gibbering and mad.$B$BTo bring the Lady back to us, you must find the scroll. And to do that, you must find Theldurin.", + ["O"] = "Find Theldurin the Lost.", + ["T"] = "Theldurin the Lost", + }, + [688] = { + ["D"] = "$B$BFree! I AM FREE! I am free to gather strength, hidden from my captors. For if they faced me now they would surely overpower and again imprison me.$B$BBut in time I will confront the giants, and they will regret their wardship of me!$B$BYou are a noble ally, $N. I will need your help again in time. When I am ready, I will need you to summon me to the surface$B$BSpeak with Zaruk in Hammerfall. He knows how I can be summoned.", + ["O"] = "Speak with Zaruk in Hammerfall.", + ["T"] = "Myzrael\'s Allies", + }, + [689] = { + ["D"] = "So our good King would like a memorial built in honor of a soldier named Sully Balloo? And you say the poor chap died during the Thandol Span tragedy?$b$bBah, will there ever be peace on Azeroth?$b$bNonetheless, any commission from the King is of utmost importance. To build a truly epic and lasting piece I want to work with one of the finest stones available. Travel to Darrow Hill in Hillsbrad and gather for me some Alterac Granite.", + ["O"] = "Grand Mason Marblesten of Ironforge wants 5 pieces of Alterac Granite.", + ["T"] = "A King\'s Tribute", + }, + [690] = { + ["D"] = "Greetings, $N. You have the look of an adventurer about you, and I have a task that needs some tending to.$B$BArchmage Trelane, my original master, fled Stromgarde in the Arathi Highlands not too long ago, and he\'s asked me to help him in recovering some of the items he left behind.$B$BThe city fell under siege, and he attempted to defend the Tower of Arathor, but to no avail. I have agents in the Highlands already, but they\'ve requested I send more aid. Are you interested?", + ["O"] = "Find Skuerto at Refuge Pointe in the Arathi Highlands.", + ["T"] = "Malin\'s Request", + }, + [691] = { + ["D"] = "Archmage Malin sent Skuerto and I here to collect reagents for him. I was at a loss as to how I was going to collect the items, but now that you\'re here, I think my problem\'s solved.$B$BI need the following: Witherbark tusks, Witherbark medicine pouches and a shadow hunter knife.$B$BCould you find those for me? The Witherbark live to the southeast of Arathi.", + ["O"] = "Find 10 Witherbark Tusks, 4 Witherbark Medicine Pouches and a Shadow Hunter Knife for Apprentice Kryten at Refuge Pointe.", + ["T"] = "Worth Its Weight in Gold", + }, + [692] = { + ["D"] = "The Scroll of Myzrael...the Scroll of Myzrael?! You don\'t want that! Its magic can pull Myzrael to the surface world and if you do that, we are in trouble!$B$BOr...maybe it\'s too late. Maybe she already is free. Maybe she\'s just gathering strength before unleashing herself upon us. If so, then you\'ll NEED the scroll!$B$B...too bad it\'s destroyed. Enraged elementals stole it and tore it up and now fight over the fragments.$B$BBut if you can gather those fragments, maybe we can fix it...", + ["O"] = "Bring the Torn Scroll Fragment, the Crumpled Scroll Fragment and the Singed Scroll Fragment to Theldurin the Lost.", + ["T"] = "The Lost Fragments", + }, + [693] = { + ["D"] = "Hey, $N. Sorry to be so short with ye earlier... and no, that ain\'t a pun.$B$BI figured out where Trelane\'s first item ended up: Kor\'gresh has it in Boulderfist Hall. An\' by the way he was throwing down blasts of ice at his kin to keep them in line, he must be close to figurin\' out how to use all of its powers.$B$BBoulderfist Hall\'s south of here an\' then east of Thandol Span. Find the ogre an\' get back that wand.$B$BWhile you\'re gone, I\'ll figure out what we\'re gonna do about Stromgarde.", + ["O"] = "Find Trelane\'s Wand of Invocation and return it to Skuerto at Refuge Pointe.", + ["T"] = "Wand over Fist", + }, + [694] = { + ["D"] = "All rested?$B$BHere\'s our next step: there\'re ogres all around the Tower of Arathor in Stromgarde. We\'re gonna need to activate the tower\'s defenses if you\'re gonna stand a chance against \'em an\' still make it to the items alive. To do that, we\'re gonna need some gems the Boulderfist shaman have taken a liking to. They took \'em from the tower, but they\'re not gonna stay in their possession for long.$B$BGet one of them gems an\' bring \'em to Kryten--he knows the spell to enchant \'em so they\'ll work as a key.", + ["O"] = "Find an Azure Agate and bring it to Apprentice Kryten at Refuge Pointe.", + ["T"] = "Trelane\'s Defenses", + }, + [695] = { + ["D"] = "Here you are, $N. The gem only needs to be pressed against one of the pedestals near the base of the tower to activate its defenses. Use it when you\'re ready to enter the tower and find Trelane\'s remaining items. $B$BGood luck to you. I\'ll be awaiting your return here at the camp. Oh, and speak to Skuerto before you leave. He\'ll give you the rest of the details you\'ll need.", + ["O"] = "Speak to Skuerto.", + ["T"] = "An Apprentice\'s Enchantment", + }, + [696] = { + ["D"] = "Here\'s what your lookin\' for: Trelane\'s phylactery, Trelane\'s orb, an\' Trelane\'s ember agate.$B$BAll three should be in chests within the tower an\' you shouldn\'t have a problem opening the chests on your own; you just have to be careful of the ogres.$B$BThe tower\'s defenses won\'t take care of \'em on their own; you\'ll need to have your weapons at the ready. Those ogres find out you\'re there and stealing from \'em, an\' they\'ll be sure to put the hurt on you.$B$BBe careful, an\' good luck.", + ["O"] = "Find Trelane\'s Phylactery, Trelane\'s Orb, and Trelane\'s Ember Agate, and return them to Skuerto at Refuge Pointe.", + ["T"] = "Attack on the Tower", + }, + [697] = { + ["D"] = "Take this letter back to Stormwind and let Malin know that Kryten an\' I\'ll be home soon. He\'ll reward you well for helping us here, $N, of that I\'ve no doubt.$B$BTravel safely.", + ["O"] = "Take the Sealed Letter to Archmage Malin in the Mage Quarter of Stormwind.", + ["T"] = "Malin\'s Request", + }, + [698] = { + ["D"] = "I\'m working on getting some supplies together for our outpost near the beach to the east--Tok\'kar does what he can, but between shifts of guard duty and cooking for his soldiers there\'s not much time left in the day.$B$BThey do enjoy cooking up some sawtooth meat when they can, but I haven\'t had time to get them another shipment. Would you mind helping them out?$B$BThe young sawtooths aren\'t as tasty as the older ones, so stay clear of those; give them a year or two to get to full size.", + ["O"] = "Bring 8 Unprepared Sawtooth Flanks to Tok\'Kar in Swamp of Sorrows.", + ["T"] = "Lack of Surplus", + }, + [699] = { + ["D"] = "With the threat of murlocs along the coast, we\'re stationed out here to protect--or warn if the force is too large--of any coming threats to Stonard. It doesn\'t give us much time for relaxation, and we could use some more help if you\'re able.$B$BThe sawtooth snappers\' claws make for fine weapons when properly prepared. Bring me some of their claws and I\'ll see you\'re rewarded with one of our weapons in thanks for the fresh meat and the good company.", + ["O"] = "Bring 6 Sawtooth Snapper Claws to Tok\'Kar in the Swamp of Sorrows.", + ["T"] = "Lack of Surplus", + }, + [700] = { + ["D"] = "Ah, such fine stone comes from Lordaeron. Such a shame the land is in such shambles.$b$bBut the Memorial came out quite well! I should think the King will be most pleased with it.$b$bNow if you will, please send word to His Majesty that the Memorial is complete as requested. ", + ["O"] = "Report to King Magni Bronzebeard.", + ["T"] = "A King\'s Tribute", + }, + [701] = { + ["D"] = "With some additional objects, I will be able to create an item that will imbue Gor\'mul with the guile of the raptor! With the power of the raptor flowing through him, Gor\'mul will know our new power and rediscover the warrior that lies dormant!$b$bI will require raptor hearts to fashion the item and spell.", + ["O"] = "Acquire 12 Raptor Hearts from Highland Fleshstalkers for Tor\'gan.", + ["T"] = "Guile of the Raptor", + }, + [702] = { + ["D"] = "Take this orb and use its energy to give Gor\'mul the essence of the raptor. Surely this will invigorate his spirit and give him new purpose in life. With him returned to normal, we can explain to him the current state of the Horde, and we will have a great warrior\'s assistance in our unceasing battles.", + ["O"] = "Give Tor\'gan\'s Orb to Gor\'mul.", + ["T"] = "Guile of the Raptor", + }, + [703] = { + ["D"] = "Oh yes, my barbecued buzzard wings are a favorite! The sauce is rich and the meat is tangy. And the smell will bring the hungry running from miles away!$B$BI have everything I need to cook up a batch. Everything...except the buzzard wings!$B$BIf you want some then get me the buzzard wings. Bring me enough, and I might even share the recipe with you!", + ["O"] = "Bring 4 Buzzard Wings to Rigglefuzz.", + ["T"] = "Barbecued Buzzard Wings", + }, + [704] = { + ["D"] = "The last report I received from Agmond is troubling, more so now that he\'s dead! He mentioned that his diggers uncovered \"ancient urns\" at the dig site outside Uldaman. I fear that the urns he found at that site incited the troggs, just as did the idols I found here.$B$BI need you to get those urns for our studies. Go to the Uldaman site, gather the urns, then return to me.", + ["O"] = "Bring 4 Carved Stone Urns to Prospector Ironband in Loch Modan.", + ["T"] = "Agmond\'s Fate", + }, + [705] = { + ["D"] = "The Badlands is a harsh place, filled with vicious predators and bold scavengers. Scary, especially for a short little goblin. To survive, I have to be tricky!$B$BI know the recipe for flash bombs. I use those to scare away wildlife. But I\'m running low on one of the ingredients: crushed blue pearl powder. Get me some and I\'ll make it worth your efforts.$B$BHeh, and I hope you have good boots on. The Blue Pearls I need are found from clams at the Vile Reef.$B$BYep, the Vile Reef in Stranglethorn!", + ["O"] = "Bring 9 Blue Pearls to Rigglefuzz in the Badlands.", + ["T"] = "Pearl Diving", + }, + [706] = { + ["D"] = "As an apprentice to Feranor Steeltoe, I learned his special technique for imbuing weapons with fiery enchantments. Last I heard of him, he was working at a smithy with a hunting party up in Lordaeron.$b$bI can\'t tell you too many of the details about the process, but I can tell you it requires blood from a rare, still-beating black drake whelp\'s heart. I don\'t have much to do waiting for word from Ironforge. If you bring me a heart from the whelps in Lethlor Ravine, I\'ll show you my skill!", + ["O"] = "Acquire a Black Drake\'s Heart for Sigrun Ironhew.", + ["T"] = "Fiery Blaze Enchantments", + }, + [707] = { + ["D"] = "$N. I received reports from Prospector Ironband at his excavation site in Loch Modan--he needs some legwork done concerning another of our excavations.$B$BI don\'t have more details than that, but if you want to stretch your legs then go speak with Ironband.", + ["O"] = "Speak with Prospector Ironband at Ironband\'s Excavation Site in Loch Modan.", + ["T"] = "Ironband Wants You!", + }, + [708] = { + ["D"] = "The surface of this metallic black box is heavily pitted, as if it had been immersed in acid - it must have been sitting in the giant condor\'s stomach for a long time.$B$BTurning the box over, a symbol is found stamped on its bottom. Below the symbol are the words:$B$B\"Engine #19 - Ironforge Siege Brigade\"", + ["O"] = "Take the Corroded Black Box to the Hall of Arms in Ironforge.", + ["T"] = "The Black Box", + }, + [709] = { + ["D"] = "Oh my! Oh my! There is a doom approaching. Mark me! A doom!$B$BNo, I cannot speak of it...cannot utter their names or they may hear me! But if we learn, yes, if we learn more of them...then maybe we can learn how to foil them!$B$BMaybe.$B$BGo into Uldaman. No! I said it! You must find...find the tablet of...Ryun\'eh. Yes, find it! And don\'t make me speak that name again!$B$BIt is deep in that place, in an ancient chest. That\'s where it hides...in a chest crafted before the works of any dwarf.", + ["O"] = "Bring the Tablet of Ryun\'eh to Theldurin the Lost.", + ["T"] = "Solution to Doom", + }, + [710] = { + ["D"] = "Here in the Badlands I\'ve stopped to work on my latest project: my shackles of elemental binding.$B$BWhen complete, they will allow mages to summon even more powerful elementals for use in even greater capacities. To start things off, I need small stone shards to test some of my newest offensive spells along with a few gizmos I\'ve pieced together.$B$BThe shards are easily collected from the lesser rock elementals to the west of here. Could you bring me some?", + ["O"] = "Find 10 Small Stone Shards and bring them to Lotwil Veriatus in the Badlands.", + ["T"] = "Study of the Elements: Rock", + }, + [711] = { + ["D"] = "$N, you\'ve already proven more able than all my apprentices combined.$B$BThe next parts I need require a little more strength. Large stone slabs can be found on rock elementals if you\'re careful enough. Their bodies are stronger and larger, and therefore more prone to having pieces large enough for my tests. You can find them further west of here or southeast along the mountains\' edges.$B$BTake your time; I\'ll need a while to test these smaller pieces you brought me.", + ["O"] = "Bring 3 Large Stone Slabs to Lotwil Veriatus in the Badlands.", + ["T"] = "Study of the Elements: Rock", + }, + [712] = { + ["D"] = "$N, there\'s one more part I need from the elementals here in the Badlands: the bracers of rock binding from the greater rock elementals. By my calculations, those bracers should be enough to gauge the strength of my own shackles.$B$BMy attempts at scrying the greater rock elementals showed a group of them southwest of here, near some ogres if I recall.$B$BBring me 5 of their bracers just so I have extras. Servo\'s notorious for misplacing my reagents and research.", + ["O"] = "Bring 5 Bracers of Rock Binding to Lotwil Veriatus in the Badlands.", + ["T"] = "Study of the Elements: Rock", + }, + [713] = { + ["D"] = "Let me tell you something about Frost Oil: nothing can keep an engine or gears from overheating quite like it.$B$BIts cooling properties are extraordinary, and its longevity as a lubricant without equal. That\'s not all: it also aids in retaining enchantments on magical items.$B$BI need a vial of it to increase the magical capacity of my shackles and make them powerful enough to stop our summoned friend from killing us all.$B$BBro\'kin, a goblin friend of mine, can teach you to make it. He\'s in Alterac.", + ["O"] = "Find Frost Oil and bring it to Lotwil Veriatus in Badlands.", + ["T"] = "Coolant Heads Prevail", + }, + [714] = { + ["D"] = "$N, you\'ve done your job well beyond all standards.$B$B$B$BIf we ever meet in Kharanos, feel free to come apply for work.$B$BWhoops! Quick, grab the... yes, that. Thanks.$B$BNow I just need one more thing. It\'s a small part, but rather crucial, I\'m afraid: a gyrochronatom.$B$BIf you could just go grab one and bring it to me, I should be ready to complete this.", + ["O"] = "Bring a Gyrochronatom to Lotwil Veriatus in the Badlands.", + ["T"] = "Gyro... What?", + }, + [715] = { + ["D"] = "I\'m thinking those items you acquired for Lotwil are going to be the least of our worries, $N. On the other hand, you\'ve proven more than adept at the sciences Lotwil holds sacred, so how about helping me out?$B$BI need an invisibility potion and a healing potion; both might come in handy real soon if he pulls this off.$B$BIn return, I\'ll give you this recipe for a potion I\'ve been developing while learning from Lotwil. It\'s based on some of the research he\'s been doing here in the Badlands.", + ["O"] = "Bring a Healing Potion and a Lesser Invisibility Potion to Lucien Tosselwrench in the Badlands.", + ["T"] = "Liquid Stone", + }, + [716] = { + ["D"] = "I know how cheap Lotwil can be, $N, so let me make you something for all your troubles. Maybe it\'ll even help protect you from the coming atrocity that is Lotwil\'s newest invention.$B$BI\'ve been working with all the extra stones you collected for him, and I can make some nice bracers that you might want to use. They\'re enchanted, of course.$B$BI\'ll just need patterned bronze bracers crafted by a blacksmith so I can complete the bracers I\'m making for you.", + ["O"] = "Bring some Patterned Bronze Bracers to Lucien Tosselwrench in the Badlands.", + ["T"] = "Stone Is Better than Cloth", + }, + [717] = { + ["D"] = "It has become obvious that we cannot ensure that Blacklash and Hematus will remain imprisoned in Lethlor. That black dragons have taken up residence there, and that the ogres managed to steal the Sign indicates that more drastic measures will have to be taken.$b$bThe drakes\' prison is maintained by three runestones that may only be retrieved using the Sign of the Earth. Those runestones can then be used to break the seal which imprisons them.$b$b$n... assure that their dreams are eternal.", + ["O"] = "Use the Sign of the Earth to activate the Pillars of Amethyst, Opal, and Diamond and obtain the Runestones.$b$bPlace the runestones in the Seal of the Earth to free Blacklash and Hematus.$b$bSlay them and return Blacklash\'s Bindings, the Chains of Hematus, and the Sign of the Earth to Garek.", + ["T"] = "Tremors of the Earth", + }, + [718] = { + ["D"] = "In our hurry to leave the Uldaman excavation site, we were forced to abandon many wagons and crates of supplies along the way. The local ogres from Camp Kosh have been on our abandoned equipment like vultures on a rotting corpse. Don\'t smell much better, either. Than the corpses, I mean.$b$bAnyways, they took the cart that was carrying all our weapons and such... so--well, this is a bit embarrassing--we haven\'t been able to get any food.$b$bWe\'re in a bit of a pickle here, suppose you could help us out?", + ["O"] = "Retrieve the Supply Crate for Sigrun Ironhew.", + ["T"] = "Mirages", + }, + [719] = { + ["D"] = "Hey, $N. Be careful \'round here. There be Dark Iron dwarves all around--looked like the Shadowforge clan.$B$BThey just attacked the excavation site I was workin\' at--killed nearly everyone there, including my boss Hammertoe. I barely escaped with me life.$B$BThe site\'s just to the north of here, and I\'m tryin\' to plan a way to get some of our supplies back, especially me lucky pick.$B$BThink you\'d be up to helpin\' me out some? One of those damned Dark Iron must have my pick! Could be anyone of them.", + ["O"] = "Find Ryedol\'s Lucky Pick and return it to Prospector Ryedol south of Hammertoe\'s Dig Site.", + ["T"] = "A Dwarf and His Tools", + }, + [720] = { + ["D"] = "$B$B\"Ryedol, $BThey\'re taking me to Uldaman. Send help.$B-Hammertoe\"", + ["O"] = "Find Prospector Ryedol and let him know Hammertoe Grez is alive.", + ["T"] = "A Sign of Hope", + }, + [721] = { + ["D"] = "$N, can ye find him? Can you find Hammertoe in Uldaman?$B$BIf those dirty Shadowforge are holdin\' him hostage to figure out what he knows about the titan excavations, then all of Ironforge could be in huge trouble.$B$BFor a long time now those Dark Irons have been lookin\' for magics to make more powerful golems. Hammertoe was doin\' the same, of course, but only to stop them.$B$BThey\'re probably keepin\' him alive until they learn what he knows.Ye\'ve got to hurry if you\'re gonna save him!", + ["O"] = "Find Hammertoe Grez in Uldaman.", + ["T"] = "A Sign of Hope", + }, + [722] = { + ["D"] = "Ye\'re brave... ... to come into Uldaman fer me, $c.$B$BIf ye\'re really here to help... ol\' Hammertoe, then... ... you\'ll need to find... me amulet.$B$BDeepshadow\'s got it... Magregan Deepshadow. He\'s \'round here... in the ruins fer sure. That amulet\'ll lead \'em... ... right to the scrolls if he ain\'t stopped. It\'s up to you, $N. Please... get that amulet.$B$BThe scrolls will surely help the Dark Irons create even more powerful golems. I just know it. I can feel it in me bones.", + ["O"] = "Find Hammertoe\'s Amulet and return it to him in Uldaman.", + ["T"] = "Amulet of Secrets", + }, + [723] = { + ["D"] = "$B$BFind Ryedol, $N. Bring \'im me amulet. He\'ll... figure out what to do. He knows I was seeking the origins of our people, and he... ... knows it was also my mission to stop the Shadowforge clan. They must not be allowed to find the scrolls... ", + ["O"] = "Take Hammertoe\'s Amulet to Prospector Ryedol in the Badlands.", + ["T"] = "Prospect of Faith", + }, + [724] = { + ["D"] = "Okay, okay... who would know what to do?$B$BHistorian Karnik! That\'s it!$B$BHe\'s in Ironforge. He\'ll be able to help. He and Hammertoe were workin\' together to find the lost artifacts in Uldaman.$B$BGuess the Shadowforge found out the two of them knew more than they were lettin\' on.$B$BTell Karnik what\'s happened to Hammertoe and give him the amulet--he\'ll tell you what needs to be done next.", + ["O"] = "Take Hammertoe\'s Amulet to Historian Karnik in Ironforge.", + ["T"] = "Prospect of Faith", + }, + [725] = { + ["D"] = "$N, run and find Advisor Belgrum as quickly as you can. Tell him what you\'ve witnessed and ask him how he wants us to proceed. This note will explain more to him.$B$BIn the meantime, I will take the time to speak to Hammertoe\'s spirit. Maybe he knows something that will help us put a stop to those Shadowforge cretins\' activities in the Badlands. We can only pray.", + ["O"] = "Find Advisor Belgrum and give him his note.", + ["T"] = "Passing Word of a Threat", + }, + [726] = { + ["D"] = "$B$BOch, these are evil tidings.$B$B$N, please return to Historian Karnik and tell him on the king\'s authority to act on this information swiftly and decisively. He must halt the Shadowforge\'s activities in the Badlands.", + ["O"] = "Speak to Historian Karnik.", + ["T"] = "Passing Word of a Threat", + }, + [727] = { + ["D"] = "The Tablet tells much. But not enough! Not nearly enough!$B$BThere is a book, a digest that Yagyin wrote in ages past. The ... people I fled ... they keep this book in many places. And their most learned study it. It holds vast knowledge. Knowledge to protect us!$B$BGo to Gerrig Bonegrip. He is in a shop in Ironforge, in the Forlorn Cavern. Show him this sigil and he\'ll think you one of them. Ask him for Yagyin\'s Digest ... and bring it to me!", + ["O"] = "Give the Sigil of the Hammer to Gerrig Bonegrip in the Forlorn Cavern of Ironforge.", + ["T"] = "To Ironforge for Yagyin\'s Digest", + }, + [728] = { + ["D"] = "The tablet tells much. But not enough! Not nearly enough!$B$BThere is a book, a digest that Yagyin wrote in ages past. The... people I fled from... they keep this book in many places. And their most learned study it. It holds vast knowledge. Knowledge to protect us!$B$BGo to Keeper Bel\'dugur in the Undercity of Lordaeron. Show him this sigil and he\'ll think you one of them. Ask him for Yagin\'s Digest...and bring it to me!", + ["O"] = "Bring the Sigil of the Hammer to Keeper Bel\'dugur in the Undercity.", + ["T"] = "To the Undercity for Yagyin\'s Digest", + }, + [729] = { + ["D"] = "What an honor it was when Master Greywhisker assigned me to work under the guidance of the great Prospector Remtravel. At the academy in Ironforge everyone knew of Remtravel\'s great discoveries.$b$bBut the prospector is rather... um... oblivious ...to his surroundings.$b$bWe had uncovered evidence of a great society. Horrible golems sprang forth from the ground and overran the site. Remtravel never seemed to notice. I ran back to Auberdine for help.$b$bPlease travel south and see if the prospector is ok!", + ["O"] = "Travel south and check on Prospector Remtravel.", + ["T"] = "The Absent Minded Prospector", + }, + [730] = { + ["D"] = "How nice it is to see a $c interested in the great archeological wonders of our world.$b$bOftentimes our work is dismissed as mere hobby by our friends in the Alliance. But what many fail to realize is that recent discoveries in Khaz Modan have proven that a great and powerful force threatens all of Azeroth, from Lordaeron to Kalimdor.$b$bI am most worried about my crew that I sent to Darkshore. They haven\'t sent word in weeks.$b$bTravel to Auberdine and look for a clue as to their whereabouts.", + ["O"] = "Travel to Auberdine and look for signs of the dwarven excavation team.", + ["T"] = "Trouble In Darkshore?", + }, + [731] = { + ["D"] = "So then, Hollee... oh that\'s right, you are not Hollee. Where\'s Hollee?$b$bBah, that\'s beside the point. We must find that stone brush... I mean the mysterious fossil! We must find that fossil. The Explorers\' League in Darnassus will want some indication as to what I\'ve been doing.$b$bLet me know when you are ready and we will hunt down that brush.... I mean fossil! We shall find something in writing to satisfy the League.$b$bSo are you ready yet?", + ["O"] = "Protect Prospector Remtravel as he searches for the mysterious fossil, then return to Archaeologist Hollee in Auberdine.", + ["T"] = "The Absent Minded Prospector", + }, + [732] = { + ["D"] = "I heard from Sigrun that you have been a great help to him. Perhaps I might enlist your help. I was sent here by my master, Krasus of the Kirin Tor, to put an end to the trouble brewing in Lethlor Ravine.$b$bI cannot divulge the exact nature of my assignment here or the tasks that I must undertake, but be assured it is of vital importance.$b$bA band of wandering ogres, sometimes seen near Camp Boff, stole an object called the Sign of the Earth; I must have it. Bring it to me, and I will tell you more.", + ["O"] = "Retrieve the Sign of the Earth for Garek.", + ["T"] = "Tremors of the Earth", + }, + [733] = { + ["D"] = "It\'s going to be tough going here if I can\'t manage to scrounge up some materials to construct some defenses and other necessities. I\'ve noticed that the ogres in the area seem to be well equipped with scrap metal. Maybe the stories of siege engines in the Badlands weren\'t so far off after all...$b$bAnyways, the Prospector\'s been getting worried about the state of our little camp, so I\'d like to get working soon if I can.$b$bThe main ogre camp is at Dustbelch Grotto, a good trek to the west of here.", + ["O"] = "Get 7 pieces of Scrap Metal for Sigrun.", + ["T"] = "Scrounging", + }, + [734] = { + ["D"] = "Wonderful, wonderful.$B$B$B$BGo speak to Lucien, $N. I need a cog #5. Bring it to me, will you?", + ["O"] = "Speak to Lucien Tosselwrench in the Badlands.", + ["T"] = "This Is Going to Be Hard", + }, + [735] = { + ["D"] = "Yagyin\'s Digest, eh? Are you starting a new chapter of us, somewhere? Never mind, it is not my place to ask.$B$BI will help you, for I have an extra copy. We must aid each other, yes? That is how we flourish.$B$BI require three items of power. Bring them to me and I will give you the digest.$B$BI will not speak their names. Ears may be on us. But here, I will write them down.", + ["O"] = "Return the items on the Bonegrip\'s Note to Gerrig Bonegrip in Ironforge.", + ["T"] = "The Star, the Hand and the Heart", + }, + [736] = { + ["D"] = "You need Yagyin\'s Digest? Your plan, then, is to gather another flock? Of course it is...and of course I will help you, $gbrother:sister;.$B$BBut you must help me too.$B$BI require three items of power. Bring me these and the digest will be yours.$B$BI cannot utter the names of these items, but I will write them down.$B$BGet me the items on this list. If you can do that, then you are truly worthy of opening your own chapter of our order.", + ["O"] = "Bring the items on Bel\'dugur\'s Note to Keeper Bel\'dugur in the Undercity.", + ["T"] = "The Star, the Hand and the Heart", + }, + [737] = { + ["D"] = "I have the digest for you, $N. I need not tell you to take great care with it. And to keep it far from unfriendly hands. $B$BThis book holds many truths...$B$B...And the truth can burn.", + ["O"] = "Bring Yagyin\'s Digest to Theldurin.", + ["T"] = "Forbidden Knowledge", + }, + [738] = { + ["D"] = "Prospector Agmond was in charge of our excavation sites in the Badlands, to the southwest. I say \"was\" because...well, I haven\'t heard from him in weeks. I need you to find Agmond so I can get his report.$B$BLast I heard Agmond was at the southernmost dig site in the Badlands--a tiny operation past the Angor Fortress. I\'d start your search for him there.", + ["O"] = "Find Agmond.", + ["T"] = "Find Agmond", + }, + [739] = { + ["D"] = "Agmond\'s tracks lead from the west. It is easy to tell from the bloody smears across rock and sand that the dwarf crawled some distance.$B$BAnd here he died.$B$BUpon close inspection, the word \"Murdaloc\" is roughly scrawled in a patch of Badlands sandstone.$B$BScrawled next to Agmond\'s dead hand.", + ["O"] = "Slay Agmond\'s killer, Murdaloc.$B$BSlay 12 Stonevault Bonesnappers.$B$BReport to Prospector Ironband in Loch Modan.", + ["T"] = "Murdaloc", + }, + [741] = { + ["D"] = "So the prospector wants to send the mysterious fossil to the Explorers\' League in Darnassus? I don\'t feel right leaving Darkshore without him.$b$bHere, $n, deliver the mysterious fossil to Chief Archaeologist Greywhisker in Darnassus.", + ["O"] = "Take the mysterious fossil to Chief Archaeologist Greywhisker in Darnassus.", + ["T"] = "The Absent Minded Prospector", + }, + [742] = { + ["D"] = "Attention, young adventurers! The wilds of Ashenvale await you!$B$BThe Horde has established a strong presence in the lands north of the Barrens. Our two outposts - Splintertree Post and the Zoram Strand Outpost - strive to bring glory to the Horde! Those who would prove themselves should seek out guidance there. Of note: Senani Thunderheart in Splintertree Post, directly north of the Barrens, seeks adventurers willing to take part in a great hunt of Ashenvale!", + ["O"] = "Speak with Senani Thunderheart at Splintertree Post, Ashenvale.", + ["T"] = "The Ashenvale Hunt", + }, + [743] = { + ["D"] = "Thank you for taking the time to speak to me, $N. I am Ruul, warrior and teacher.$B$BYou have obviously reached an age when you must prepare for your trials if you are to adventure much further out of Mulgore.$B$BIf you wish a test of your strength, start by seeking out the Windfury harpies to the southeast. They nestle along the mountain\'s edges away from the road.$B$BThey are one of our natural enemies here in Mulgore and will be a good gauge of your skill.", + ["O"] = "Bring 8 Windfury Talons to Ruul Eagletalon in Bloodhoof Village.", + ["T"] = "Dangers of the Windfury", + }, + [744] = { + ["D"] = "$N, my brother soon stands before Chief Bloodhoof, and it is my honor to make his headdress for him.$B$BI want to ask a favor of you while I finish tanning these leather straps. There is not time for me to find enough feathers, and I was wondering, would you gather more for me?$B$BYou can find feathers of the correct size from the harpies residing far to the north and northwest of Thunder Bluff. I need only 6 azure and 6 bronze feathers to complete the design.", + ["O"] = "Collect 6 Azure Feathers and 6 Bronze Feathers, and bring them to Eyahn Eagletalon in Thunder Bluff.", + ["T"] = "Preparation for Ceremony", + }, + [745] = { + ["D"] = "$N, there are many conflicts that wound this land. It is my hope that you will not bear witness to as many of them as I have. Yet there is one that I would ask you to seek out. It will give you some sense of how terrible, if left unchecked, even a small threat can be to the land.$B$BPalemane gnolls have settled to the south of Bloodhoof and in a cave to the west. They disrespect our attempts to communicate with them, and they slay the wildlife of Mulgore unbridled.$B$BWords are no longer the answer.", + ["O"] = "Kill 10 Palemane Tanners, 8 Palemane Skinners, and 5 Palemane Poachers, then return to Baine Bloodhoof in Bloodhoof Village.", + ["T"] = "Sharing the Land", + }, + [746] = { + ["D"] = "There are dwarves preparing a dig site to the northwest. They think secrets lie in the earth, and that is true, but hollowing and defiling the land is no way to earn its teachings.$B$BCollect the dwarven tools of digging, smash them, and return to me with the dwarves\' broken tools.$B$BYou can smash the tools at a forge. You will find one in Thunder Bluff, but any forge -- even a forge at the dwarven camp -- will suffice.", + ["O"] = "Collect 5 Prospector\'s Picks.$B$BAt a forge, smash the Prospector\'s Picks to create Broken Tools.$B$BBring 5 Broken Tools to Baine Bloodhoof in Bloodhoof Village.", + ["T"] = "Dwarven Digging", + }, + [747] = { + ["D"] = "You have a promising air about you, and will prove yourself to the tribe. Perhaps someday soon you will be welcomed into the great city of Thunder Bluff. But before that can happen you must prove yourself to my father, Chief Hawkwind.$b$bUp here on Red Cloud Mesa we pride ourselves on keen hunting skills. Tauren hunt out of necessity and for sport. Our supply of meats has run low and we require feathers for clothing. Hunt the nearby plainstriders and prove yourself by resupplying the village.", + ["O"] = "Grull Hawkwind in Camp Narache wants you to bring him 7 Plainstrider Feathers and 7 pieces of Plainstrider Meat.", + ["T"] = "The Hunt Begins", + }, + [748] = { + ["D"] = "Goblins and their servants have tainted our sacred water wells! We cannot allow this.$B$BTo cleanse each well, I must create a cleansing totem, then you must bring the totem to the well and perform a cleansing ritual.$B$BFirst we will create a cleansing totem for the Winterhoof Water Well. To do this, the land must offer its aid. Hunt prairie wolves for their paws and adult plainstriders for their talons. They are to the southwest.$B$BReturn to me with the paws and talons, $N.", + ["O"] = "Bring 6 Prairie Wolf Paws and 4 Plainstrider Talons to Mull Thunderhorn in Bloodhoof.", + ["T"] = "Poison Water", + }, + [749] = { + ["D"] = "A few days ago, we found a Venture Co. caravan traveling under guard on the northern shore of Stonebull Lake. We\'d lost two of our number in an earlier battle, so we were quick to attack and lay waste to the caravan.$b$bWe left their supply crates, thinking that our torches would destroy anything of value, but given that Venture Co. salvagers have been spotted near the burned wagons, maybe we were wrong.$b$bPerhaps you could go to the caravan and examine the contents of the crates.", + ["O"] = "Morin Cloudstalker wants you to examine the contents of a supply crate at the Ravaged Caravan.", + ["T"] = "The Ravaged Caravan", + }, + [750] = { + ["D"] = "A tauren skilled in the ways of the hunt knows that his prey is not for mere trophy. The beasts of the plains provide us with a means of survival. You will make quite an impression on the elders if you can bring back some highly valued Mountain Cougar Pelts. You can find the beasts lurking in the hills to the south.$b$bOur children need clothing and our tents need mending.", + ["O"] = "Grull Hawkwind in Camp Narache wants you to bring him 10 Mountain Cougar Pelts.", + ["T"] = "The Hunt Continues", + }, + [751] = { + ["D"] = "Prying open the lid reveals a tightly packed assortment of ore and minerals, more evidence of the Venture Co.\'s mining operation in Mulgore. On the top of the ore and minerals you remove a tightly bound sheaf of papers.$b$bUp in the foothills to the east, you can barely hear the sounds of work, and see smoke rising from a large fire.", + ["O"] = "Return the Venture Co. Documents to Morin Cloudstalker near Bloodhoof Village.", + ["T"] = "The Ravaged Caravan", + }, + [752] = { + ["D"] = "All members of the tribe share in the harmony of life. We live together and work together.$b$bOur commitment to one another carries with it a high degree of responsibility. I ask of you now a humble task.$b$bMy mother set out this morning to fetch water from the well to the southeast of Narache. It has been quite some time now. Perhaps you could check on her for me while I attend to tribal matters here?", + ["O"] = "Chief Hawkwind wants you to search for his mother near the water well to the southeast of Camp Narache.", + ["T"] = "A Humble Task", + }, + [753] = { + ["D"] = "I have traveled many paths through life and these old legs lack the vigor they once had. I can still perform my duties to the tribe. Sometimes it just takes an old woman a little longer to do the task.$b$bBut you look like an eager $c. Let\'s put some of that youthful vitality to the test. Take a water pitcher from the well and bring it to my son, the Chief, in Camp Narache.$b$bRemember that even the most humble task can gain the recognition of elders.", + ["O"] = "Take a Water Pitcher from the water well.$b$bReturn the pitcher to Chief Hawkwind in Camp Narache which is northwest from the water well.", + ["T"] = "A Humble Task", + }, + [754] = { + ["D"] = "I have crafted the totem to cleanse the Winterhoof Water Well. Now, you must take it to the well and perform a cleansing ritual. You will find it to the southeast, guarded by foul goblins!$B$BThis will not be an easy task, but you must do it if we are ever to use its waters again.$B$BFortune to you, $N.", + ["O"] = "Use the Winterhoof Cleansing Totem at the Winterhoof Water Well, then return to Mull Thunderhorn.", + ["T"] = "Winterhoof Cleansing", + }, + [755] = { + ["D"] = "Your willingness to perform a humble task for the tauren of Narache and your eagerness to learn are noble traits, $n. I believe one day you will be heralded in Thunder Bluff as a $c of greatness.$b$bBefore that you must embark on the Rites of the Earthmother, of which there are three.$b$bThe first test is the Rite of Strength. Travel to Seer Graytongue and tell him Chief Hawkwind has sent you.$b$bYou will find the seer\'s abode directly to the south of Camp Narache, tucked away in the hills.", + ["O"] = "Travel to Seer Graytongue who lives in the hills directly south of Camp Narache.", + ["T"] = "Rites of the Earthmother", + }, + [756] = { + ["D"] = "To create the Thunderhorn Cleansing Totem, you must gather the claws of the predators of the Mulgore plains. Hunt prairie stalkers for their stalker claws and flatland cougars for their cougar claws, then return to me.$B$BYou will find the prairie stalkers and flatland cougars to the east and west.", + ["O"] = "Bring 6 Stalker Claws and 6 Cougar Claws to Mull Thunderhorn.", + ["T"] = "Thunderhorn Totem", + }, + [757] = { + ["D"] = "The Rites of the Earthmother are the steps a young tauren needs to take to gain respect in Thunder Bluff.$b$bFirst you must pass the Rite of Strength. In this test you must prove your bravery by slaying enemies of the tribe.$b$bBristlebacks of Brambleblade Ravine to the east are encroaching on our tribal lands. They ambush our hunting parties and steal from the village by dark.$b$bShow your valor by slaying these villains and return to the Chief in Camp Narache with their belts as proof of your deeds.", + ["O"] = "Kill Bristlebacks in Brambleblade Ravine and bring 12 Bristleback Belts to Chief Hawkwind in Camp Narache.", + ["T"] = "Rite of Strength", + }, + [758] = { + ["D"] = "The totem is ready, $N. And again, it is your task to perform the ritual of cleansing.$B$BGo to the Thunderhorn Water Well, north of the village, and use the Thunderhorn Cleansing Totem in your ritual. After you do this, return to me.$B$BMay the spirits guide you.", + ["O"] = "Use the Thunderhorn Cleansing Totem at the Thunderhorn Water Well, then return to Mull.", + ["T"] = "Thunderhorn Cleansing", + }, + [759] = { + ["D"] = "There is but one water well left to cleanse, named after the Wildmane clan. For this well to be pure, the land must offer the teeth of a fierce predator, the prairie wolf alpha. Find the alphas to the north, then return to me when your hunt is finished.$B$BAlphas often wander around the base of our mighty city, Thunder Bluff.", + ["O"] = "Bring 8 Prairie Alpha Teeth to Mull Thunderhorn in Bloodhoof Village.", + ["T"] = "Wildmane Totem", + }, + [760] = { + ["D"] = "Your cleansing of the Winterhoof and Thunderhorn wells is spoken among the spirits, young $N. The Wildmane Totem is made, and your last task lies ahead.$B$BThe Wildmane Water Well lies north of Thunder Bluff. Perform the ritual! Heal the land of the goblins\' poisons! Let clean water flow once again!", + ["O"] = "Use the Wildmane Cleansing Totem at the Wildmane Water Well, then return to Mull Thunderhorn.", + ["T"] = "Wildmane Cleansing", + }, + [761] = { + ["D"] = "The swoop is a cunning bird, and difficult to find and hunt. A collection of Swoop Quills is a badge of cleverness and determination for a hunter.$B$BIf you are willing to take up this task, then enter the plains and hunt the swoop.$B$BBring me their quills, and bring honor to your clan.$B$BThe swoops may be found anywhere in Mulgore, but your eyes must be sharp to spot them, and your hooves must be quick to catch them.", + ["O"] = "Bring 8 Trophy Swoop Quills to Harken Windtotem in Bloodhoof Village.", + ["T"] = "Swoop Hunting", + }, + [762] = { + ["D"] = "Ambassador Infernus was sent to Angor Fortress by Ragnaros himself to mind the Shadowforge seeking lost artifacts in Uldaman.$B$BIt has already meant tremendous casualties for our people, but it has obviously grown worse. I hesitate to guess how many artifacts they would be able to find and use against Ironforge.$B$BOur goal is simple, $c. Return to the Badlands and destroy Ambassador Infernus. Once the threat is eliminated, return to Advisor Belgrum with proof of your victory.$B$BIt is in your hands now.", + ["O"] = "Kill Ambassador Infernus in Angor Fortress and bring proof of his death to Advisor Belgrum in Ironforge.", + ["T"] = "An Ambassador of Evil", + }, + [763] = { + ["D"] = "For you to continue with the Rites of the Earthmother you must pass two more tests. It is time for you to broaden your experience, $n.$b$bTravel to Bloodhoof Village and seek out the Chief, Baine Bloodhoof, son of Cairne. There you may continue your journey and earn the acceptance of the elders of Thunder Bluff.$b$bTake this totem to Baine. He will recognize my carvings and help you on your path.$b$bFollow the road out of Camp Narache and travel with haste. Do not stray or you will lose your way.", + ["O"] = "Take the Totem of Hawkwind to Baine Bloodhoof in Bloodhoof Village. Follow the road out of Camp Narache.", + ["T"] = "Rites of the Earthmother", + }, + [764] = { + ["D"] = "This explains the buildup of Venture Co. employees and equipment we\'ve seen in Mulgore. Those goblins... their company is expanding too quickly for their own good. It\'s how they say, show a goblin something, and you can hear the scales in the background.$b$bGreedy little things, they are. Unfortunately for their business enterprise, we tauren cannot allow them to conduct their operations in our lands. Go to their mine northeast of the ravaged caravan and send them a message.", + ["O"] = "Kill 14 Venture Co. Workers and 6 Venture Co. Supervisors for Morin Cloudstalker at Bloodhoof Village.", + ["T"] = "The Venture Co.", + }, + [765] = { + ["D"] = "According to the documents you salvaged from the caravan, the Venture Co. created many plans to attempt to drive us from our lands here, so that they could have free reign to plunder our lands.$b$bThe depths that they would sink to accomplish their goals disgusts and appalls me. I want the mastermind behind their plans killed. His name is Supervisor Fizsprocket, you will find him at the Venture Co. mine east of the ravaged caravan. Bring me his clipboard, we shall see if we find out anything useful.", + ["O"] = "Kill Supervisor Fizsprocket and return his clipboard to Morin Cloudstalker at Bloodhoof Village.", + ["T"] = "Supervisor Fizsprocket", + }, + [766] = { + ["D"] = "My grandfather told me stories about his battles with a strider named Mazzranache. He told me of its demonic red eyes, razor-sharp talons and venomous bite.$b$bAs fortune would have it, while traveling across the plains, I encountered it, and it took a nasty bite from my shoulder. He was as terrible as my grandfather described. I will need some hard-to-find animal parts to clean the infection from his bite: a wolf heart, cougar femur, plainstrider scale and swoop gizzard.$b$bHurry, time is of the essence.", + ["O"] = "Bring a Prairie Wolf Heart, Flatland Cougar Femur, Plainstrider Scale and Swoop Gizzard to Maur Raincaller at Bloodhoof Village.", + ["T"] = "Mazzranache", + }, + [767] = { + ["D"] = "The Rite of Vision, one of the Rites of the Earthmother, will help guide you toward earning the respect of the elders of Thunder Bluff.$b$bOur people have learned that the land is our most holy provider. In order to take part in the ritualistic vision, you must speak with the spiritual leader of the village, Zarlman Two-Moons.", + ["O"] = "Speak with Zarlman Two-Moons in Bloodhoof Village.", + ["T"] = "Rite of Vision", + }, + [768] = { + ["D"] = "Greetings, young one. You have a gleam in your eye; I can tell you are eager to venture back to the plains for the hunt. May you bring honor to your clan!$B$BI work with the skins of beasts, fashioning them into clothes and armor for the people of Thunder Bluff.$B$BIf you hunt beasts and bring me their skins, then I will fashion something for you.", + ["O"] = "Bring 12 pieces of Light Leather to Veren Tallstrider in Thunder Bluff.", + ["T"] = "Gathering Leather", + }, + [769] = { + ["D"] = "The kodo beasts of Mulgore are strong and sturdy -- traits much respected among us. If you are skilled in leatherworking and wish the knowledge to make a Kodo Hide Bag, then bring me supplies for my trade.$B$BDo this, and I will share my knowledge with you.", + ["O"] = "Bring 4 Light Leather and 4 Coarse Thread to Veren Tallstrider in Thunder Bluff.", + ["T"] = "Kodo Hide Bag", + }, + [770] = { + ["D"] = "The ragged hide of Ghost Howl still bears a terrible wound, gained from the wolf\'s battles against the Burning Legion.$B$BPerhaps someone in Bloodhoof Village should know of Ghost Howl\'s demise....", + ["O"] = "Find someone who knows of Ghost Howl.", + ["T"] = "The Demon Scarred Cloak", + }, + [771] = { + ["D"] = "In order to pass through the Rite of Vision, you must gather the reagents needed to make the Water of the Seers.$b$bI will need well stones, which can be found around the water wells in Mulgore. With those I will combine Ambercorn, which fall beneath the mighty trees in our land.$b$bThese reagents contain magical elements, and when brewed and consumed before the tribal fire, will cause you to encounter a vision. Follow it, and it will lead you to the next step of this holy quest.", + ["O"] = "Collect 2 Well Stones and 2 Ambercorn and bring them back to Zarlman Two-Moons in Bloodhoof Village.", + ["T"] = "Rite of Vision", + }, + [772] = { + ["D"] = "I now present you with the Water of the Seers.$b$bWhen you are ready, consume the waters near the tribal fire. Once you have ingested the holy waters, it will take a few moments before the vision materializes before the fire.$b$bAt that point, it is up to you to follow it to your destiny....", + ["O"] = "Consume the Water of the Seers in front of the tribal fire in Bloodhoof Village and follow the vision once it appears.", + ["T"] = "Rite of Vision", + }, + [773] = { + ["D"] = "To gain acceptance amongst the elders of Thunder Bluff you must next complete the Rite of Wisdom.$b$bNow that you have passed the Rite of Vision, the ancestral spirits of Red Rocks will give you the blessing of our ancestors. Only those who have drunk from the Water of Seers can gain the blessing.$b$bTravel east of Thunder Bluff, to Red Rocks and seek out the Ancestral Spirit, $n.", + ["O"] = "Travel to Red Rocks east of Thunder Bluff and speak with the Ancestral Spirit.", + ["T"] = "Rite of Wisdom", + }, + [774] = { + ["D"] = "", + ["O"] = "", + ["T"] = "", + }, + [775] = { + ["D"] = "You will now be revered within our great city. Any $r worthy of completing the Rites of the Earthmother earns that honor.$b$bFor your final quest, seek out our noble leader, Cairne Bloodhoof, who dwells atop the highest mesa in Thunder Bluff.", + ["O"] = "Speak with Cairne Bloodhoof in Thunder Bluff.", + ["T"] = "Journey into Thunder Bluff", + }, + [776] = { + ["D"] = "You have passed the Rites of the Earthmother and earned your place in Thunder Bluff.$b$bBut in order to maintain the spot that you strived so hard to achieve, you must continue to prove your worth to your people.$b$bWe are hunters, $n. Down below in Mulgore there is a mighty kodo named Arra\'chea. Show me your skills in the ways of tracking and hunting by bringing me the Horn of Arra\'chea.", + ["O"] = "Cairne Bloodhoof in Thunder Bluff wants you to bring him the Horn of Arra\'chea.", + ["T"] = "Rites of the Earthmother", + }, + [777] = { + ["D"] = "Okay, here you go.$B$BI\'m going to be over here... behind cover.$B$BFeel free to join me.", + ["O"] = "Bring Cog #5 to Lotwil Veriatus.", + ["T"] = "This Is Going to Be Hard", + }, + [778] = { + ["D"] = "Haha! Done! The shackles are done!$B$BIt\'s time, Lucien. It\'s time, Servo!$B$BAre you ready to bear witness to the perfect blend of alchemy, engineering, and the arcane, $N?$B$BI shall summon forth a powerful elemental now. This is a groundbreaking day for all of us.", + ["O"] = "Defeat the Fam\'retor Guardian and bring Lotwil\'s Shackles of Elemental Binding back to Lotwil Veriatus.", + ["T"] = "This Is Going to Be Hard", + }, + [779] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Seal of the Earth", + }, + [780] = { + ["D"] = "The Battleboars of Brambleblade Ravine to the east are encroaching on our tribal hunting grounds. They are trained to be malicious by the Bristleback Quilboars with whom we are at war.$b$bGo and slay the vile creatures and bring back some snouts and flanks so that we can make stew for our young.", + ["O"] = "Grull Hawkwind in Camp Narache wants you to kill Battleboars and bring back 8 Battleboar Snouts and 8 Battleboar Flanks.", + ["T"] = "The Battleboars", + }, + [781] = { + ["D"] = "After carefully evaluating the map, you realize that what you discovered are the plans made by the Bristleback warchief for an extended siege on Camp Narache.$b$bSurely Chief Hawkwind could use this information!", + ["O"] = "Bring the Bristleback Attack Plans to Chief Hawkwind in Camp Narache.", + ["T"] = "Attack on Camp Narache", + }, + [782] = { + ["D"] = "From the Horde\'s alliance with the dragon Deathwing during the Second War, we know that two of his lieutenants, Blacklash and Hematus, were imprisoned within Lethlor Ravine far to the east. We must silence our depraved allies of old to restore honor to the Horde!$B$BWe hired Tho\'grun and his band of ogre mercenaries to help us obtain the Sign of the Earth, a key needed to unlock the drakes\' prison. Tho\'grun betrayed us though, overwhelming us and taking it for himself. Go to Camp Boff and take it back!", + ["O"] = "Kill Boss Tho\'grun and bring the Sign of the Earth to Gorn in Kargath.", + ["T"] = "Broken Alliances", + }, + [783] = { + ["D"] = "I hope you strapped your belt on tight, young $c, because there is work to do here in Northshire.$B$BAnd I don\'t mean farming.$B$BThe Stormwind guards are hard pressed to keep the peace here, with so many of us in distant lands and so many threats pressing close. And so we\'re enlisting the aid of anyone willing to defend their home. And their alliance.$B$BIf you\'re here to answer the call, then speak with my superior, Marshal McBride. He\'s inside the abbey behind me.", + ["O"] = "Speak with Marshal McBride.", + ["T"] = "A Threat Within", + }, + [784] = { + ["D"] = "Led by Admiral Proudmoore, the humans of Kul Tiras encroached on Durotar, violating the Warchief\'s pact made with Jaina Proudmoore in order to defeat Archimonde years ago.$b$bThe human aggression was repelled and Tiragarde Keep fell. But recently, the Admiral\'s reserves, led by Lieutenant Benedict, have retaken the keep and once again pose a threat to our homeland. These humans show no respect for diplomacy.$b$bProve your honor and travel south to Tiragarde Keep to eliminate the human invaders.", + ["O"] = "Kill 10 Kul Tiras Sailors, 8 Kul Tiras Marines and Lieutenant Benedict and return to Gar\'Thok in Razor Hill.", + ["T"] = "Vanquish the Betrayers", + }, + [785] = { + ["D"] = "Thrall is a most wise and noble leader. His tenacity on the battlefield is matched only by his diplomatic tact.$b$bThe Darkspear Trolls have proven to be invaluable allies to orckind. Out of loyalty and honor we have sworn a pact of protection with them.$b$bThe Warchief has sent orders to make sure our Darkspear friends in Sen\'jin Village are not under any direct threat. One of their most trusted scouts, Lar Prowltusk is keeping a close watch on their western flank.$b$bSeek out Lar and assist as needed.", + ["O"] = "Seek out Lar Prowltusk on the western flank of Sen\'jin Village.", + ["T"] = "A Strategic Alliance", + }, + [786] = { + ["D"] = "Lower your voice, $c. The Kolkar centaurs lie just over the ridge to the west in Kolkar Crag.$b$bLast night while they were raiding, I snuck into their village and discovered that the dirty beasts have a three-tiered attack planned on the trolls and orcs of Durotar.$b$bWe mustn\'t let their invasion come to fruition. Perhaps you can muster the might needed to infiltrate Kolkar Crag and destroy their attack plans.$b$bLast I saw, they had divided them up amongst three of their leaders.", + ["O"] = "Lar Prowltusk outside of Sen\'jin Village wants you to destroy the 3 sets of Attack Plans held within Kolkar Crag.", + ["T"] = "Thwarting Kolkar Aggression", + }, + [787] = { + ["D"] = "Throm\'ka, $c. I am Eitrigg, charged by Thrall to oversee the training of recruits.$b$bThe Horde has changed from what it once was. There was a time where I left the Horde, disillusioned by the growing influence of the power-hungry pawns of the Burning Legion. During my exile, I was taken prisoner by a group of humans, but was rescued by the Warchief. Hearing his vision of the Horde free of demonic influence, guided by the shamans, I returned.$b$bGornek will have further instructions for you.", + ["O"] = "Report to Gornek in the Den.", + ["T"] = "The New Horde", + }, + [788] = { + ["D"] = "The first order of business will be to put a little strength in your backbone. I could send you out to the Barrens to hunt kodo, but well, in all honesty, you\'re more useful to us alive than dead.$b$bI believe you would find a good match with the mottled boars you\'ll find to the north of here.", + ["O"] = "Kill 10 Mottled Boars then return to Gornek at the Den.", + ["T"] = "Cutting Teeth", + }, + [789] = { + ["D"] = "Powerful warrior and awkward novice alike have fallen to the venomous sting of the scorpid. You will find large numbers of scorpids northwest of here. Bring me ten of their tails as proof of your prowess in battle.$b$bThe antidote for their sting is actually made from venom extracted from their stingers. We keep large quantities of antidote for scorpid venom on hand to heal young bloods just like you...$b$bBut I\'m sure you won\'t be needing any of that, will you?", + ["O"] = "Get 10 Scorpid Worker Tails for Gornek in the Den.", + ["T"] = "Sting of the Scorpid", + }, + [790] = { + ["D"] = "$C! I thought I would die out here with none to know of it. While I was hunting the scorpids of the Valley, I came across a particularly vicious-looking one. Hurling myself at it, I managed to inflict a massive blow to its claw before it closed around my leg.$b$bI wasn\'t ready for its stinger though, and it sliced down and into my chest, cutting into my flesh and letting my blood. Please, you must kill the scorpid for me! My honor must be upheld! I fought it up on the plateau to the south.", + ["O"] = "Kill Sarkoth and bring his claw back to Hana\'zua.", + ["T"] = "Sarkoth", + }, + [791] = { + ["D"] = "Age has rendered me useless in battle. Now I make myself useful in other ways.$b$bFrom this vantage point I watch for invaders. As our strength here grows, I find myself blowing the signal horn less and less.$b$bTo pass the time I fashion goods to help younger, more able warriors defend our homeland.$b$bFor you, I can fashion you a bag for your belongings. If such an item would be of use to you, bring me some canvas, a material common to the humans and centaurs.", + ["O"] = "Furl Scornbrow in the Razor Hill watchtower wants 8 Canvas Scraps.", + ["T"] = "Carry Your Weight", + }, + [792] = { + ["D"] = "I trust the Valley of Trials will teach you much, young $c.$B$BI was sent to the Valley to guide you, but I have discovered a growing taint here...$B$BA group that calls itself the Burning Blade has a coven here in the Valley of Trials. They are skulking in a cave to the northeast, and their Vile Familiars have spilled from its mouth to cause havoc.$B$BAs your first task against the Burning Blade, I bid you, defeat these familiars. Slay many and, if you survive, return to me.", + ["O"] = "Kill 12 Vile Familiars.$B$BReturn to Zureetha Fargaze outside the Den.", + ["T"] = "Vile Familiars", + }, + [793] = { + ["D"] = "The Seal of the Earth is held by three runestones, held in the Pillars of Diamond, Opal, and Amethyst in Lethlor Ravine. Using the Sign of the Earth, you will be able to remove the runestones and unlock the Seal of the Earth.$b$bBe wary though, $n, the black drakes Blacklash and Hematus are not to be trifled with. See them dead and return their bindings to me.$B$BTo reach the ravine, travel to the far eastern part of the Badlands. Be careful though, for the ravine is home to countless drakes.", + ["O"] = "Use the Sign of the Earth to activate the Pillars of Diamond, Opal, and Amethyst and obtain the Runestones.$b$bPlace the runestones in the Seal of the Earth to free Blacklash and Hematus.$b$bSlay them and return Blacklash\'s Bindings, the Chains of Hematus, and the Sign of the Earth to Gorn.", + ["T"] = "Broken Alliances", + }, + [794] = { + ["D"] = "Through my divinations, I see that an item of power hides deep within the Burning Blade Coven, guarded by beasts and black magic.$B$BIt is called the Burning Blade Medallion, and your next task is to find it and remove it from the coven.$B$BBut be wary, for the medallion may be possessed by an agent of the Burning Blade, and if so then the agent\'s power would be greater than the familiars you have already encountered.$B$BGo, $N. You will find the coven in a cave, to the north and west.", + ["O"] = "Bring the Burning Blade Medallion to Zureetha Fargaze, outside The Den.", + ["T"] = "Burning Blade Medallion", + }, + [795] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Seal of the Earth", + }, + [796] = { + ["D"] = "", + ["O"] = "", + ["T"] = "", + }, + [797] = { + ["D"] = "", + ["O"] = "", + ["T"] = "", + }, + [798] = { + ["D"] = "", + ["O"] = "", + ["T"] = "", + }, + [799] = { + ["D"] = "", + ["O"] = "", + ["T"] = "", + }, + [800] = { + ["D"] = "", + ["O"] = "", + ["T"] = "", + }, + [801] = { + ["D"] = "", + ["O"] = "", + ["T"] = "", + }, + [802] = { + ["D"] = "", + ["O"] = "", + ["T"] = "", + }, + [803] = { + ["D"] = "", + ["O"] = "", + ["T"] = "", + }, + [804] = { + ["D"] = "Seeing the deed you have done for me steels my heart. I cannot fall so easily! I must endure!$b$bBut it remains that I cannot make the trek back to the Den unassisted. Please, $n, return to the Den and tell Gornek of my situation. Perhaps he can help me.", + ["O"] = "Bring the news of Hana\'zua\'s plight to Gornek at the Den.", + ["T"] = "Sarkoth", + }, + [805] = { + ["D"] = "Your trials against the Burning Blade are finished... here in the Valley. But I want you to report your findings.$B$BGo to the troll village of Sen\'jin and seek out Master Gadrin. Sen\'jin Village is east out of the valley, then right at the fork.$B$BTell Gadrin of the Burning Blade, and that they have reached the Valley of Trials. Discover from him if they have yet reached Sen\'jin.$B$BGo, $N, and be swift. I fear the evil found in the Burning Blade Coven is but the herald of a larger threat...", + ["O"] = "Speak with Master Gadrin in Sen\'jin Village.", + ["T"] = "Report to Sen\'jin Village", + }, + [806] = { + ["D"] = "We cannot allow the Burning Blade a foothold in Durotar! We must destroy them before their evil festers!$B$BI have undergone my own investigations and found that a Burning Blade warlock, the goblin Fizzle Darkstorm, has camped within Thunder Ridge to the northwest. There he and his cultist minions spread chaos.$B$BFind and defeat Fizzle, and bring me his dead claw!", + ["O"] = "Bring Fizzle\'s Claw to Orgnil Soulscar in Razor Hill.", + ["T"] = "Dark Storms", + }, + [808] = { + ["D"] = "I hear the voice of my brother, Minshina, calling to me in my dreams.$B$BHe was taken by Zalazane, the warlock on the Echo Isles to the east. And he is dead.$B$BBut death is not freedom for my brother. Minshina\'s spirit was trapped within his own skull by Zalazane\'s magics. In my dreams I see it with other skulls, in a circle of power on the largest Echo Isle. As long as it remains there my brother\'s soul is doomed.$B$BPlease, $N. Find the circle and retrieve Minshina\'s skull. Bring it to me.$B$BFree him!", + ["O"] = "Retrieve Minshina\'s skull from the circle of power on the Echo Isles.$B$BBring it to Master Gadrin in Sen\'jin Village.", + ["T"] = "Minshina\'s Skull", + }, + [809] = { + ["D"] = "Since the last great war when the Burning Legion was defeated, I have searched for sources of demonic corruption in orc society. The collar you brought me confirms my fears.$B$BIt belongs to the Burning Blade, a cult that rallies around an item of demonic power. It is called the Demon Seed, and it resides in the Barrens atop Dreadmist Peak. It must be destroyed!$B$BGo to Far Watch Post, on the border of the Barrens to the west, and speak with my assistant, Ak\'Zeloth. He will direct you further.", + ["O"] = "Speak with Ak\'Zeloth in the Barrens.", + ["T"] = "Ak\'Zeloth", + }, + [810] = { + ["D"] = "You would do well to learn how dangerous this land can be, $c.$B$BThe wildlife here can teach us such things... if we are wise and observant.$B$BThe scorpids are a perfect example of survival in Durotar. If you are to survive, it would be wise to take on some of their characteristics as your own. Their hardened carapaces can protect you from the harshness of the sun, or even a deadly weapon.$B$BBring me 6 Small Scorpid Carapaces from the Clattering Scorpids, $N, and I shall see about rewarding you justly.", + ["O"] = "Bring 6 Small Scorpid Carapaces to Kor\'ghan in Sen\'jin Village.", + ["T"] = "", + }, + [811] = { + ["D"] = "One of the other traits of the scorpids is their fierce loyalty. They will protect one another if they are in danger--you\'ve probably already seen this behavior in your first scorpid hunt.$B$BYou would do well to heed that lesson and adapt it for yourself: we are stronger as one; we are weak when we are divided into many.$B$BBring me 8 Large Scorpid Carapaces from the Armored Scorpids and I shall reward you for learning this wisdom.", + ["O"] = "Bring 8 Large Scorpid Carapaces to Kor\'ghan in Sen\'jin Village.", + ["T"] = "", + }, + [812] = { + ["D"] = "$N... your timing is perfect. I just hope I can compliment your haste as well.$B$BI was careless while fighting a few of the venomtails nearby, and one of them stung me deeply. I can feel its poison weakening me even as we speak. At this rate, I got maybe an hour left to live. But I\'ll need your help if I\'m to do so...$B$BKor\'ghan in Orgrimmar knows how to make the antidote. Find him... and hurry, $N. I won\'t be able to last much longer. He should be in the Cleft of Shadow.", + ["O"] = "Find Kor\'ghan in Orgrimmar and get the Venomtail Antidote. Then bring the antidote to Rhinag near the northwestern border of Durotar.", + ["T"] = "Need for a Cure", + }, + [813] = { + ["D"] = "Venomtails are some of the deadliest scorpids in Durotar. It was unwise for Rhinag to hunt them without having some of the antidote with him, but right now, chastising is the last thing he needs.$B$BBring me a few venomtail poison sacs from any of the venomtails near the entrance of Orgrimmar and I\'ll make an antidote for him.$B$BMake haste, $N. One of our own needs your help.", + ["O"] = "Bring 4 Venomtail Poison Sacs to Kor\'ghan in Orgrimmar.", + ["T"] = "Finding the Antidote", + }, + [814] = { + ["D"] = "Cook and clean--that\'s all I do!$B$BYou want to eat, you get me some more meat! I don\'t have all day to hunt and prepare food for all these louses. You got to learn to pull your own weight around here if you wanna be treated equal.$B$BGet me some Chunks of Boar Meat if you want to make yourself useful... or you don\'t want to starve to death.", + ["O"] = "Bring 10 Chunks of Boar Meat to Cook Torka in Razor Hill.", + ["T"] = "", + }, + [815] = { + ["D"] = "Bah! I almost forgot I need to get breakfast ready.$B$B$N, get yourself movin\' and get me some taillasher eggs. I\'ll need at least three of them if I\'m going to have enough for tomorrow\'s meal.$B$BThe Bloodtalon taillashers can be fierce, and protect their eggs to the death more often than not. They sometimes bury their eggs too deep in the earth to uncover safely, but if you head to the Echo Isles to the southeast of Sen\'jin Village, you can usually find them all over those islands.", + ["O"] = "Bring 3 Taillasher Eggs to Cook Torka in Razor Hill.", + ["T"] = "Break a Few Eggs", + }, + [816] = { + ["D"] = "$N, please, can you help me? My son Kron went hunting days ago, and he still hasn\'t returned. He went west towards the Barrens to hunt crocolisks along Southfury River. I fear the worst.$B$BAs strong as he was, his stubborn pride has always drawn him into trouble. I warned him that the crocolisks were powerful and vicious. He grew angry and stormed off.$B$BIf you can\'t find him, at least bring me a sign of his fate... even if you have to open up the stomach of every crocolisk along the Southfury\'s banks.", + ["O"] = "Bring a sign of Kron\'s fate to Misha Tor\'kren at the farmstead northwest of Razor Hill.", + ["T"] = "Lost But Not Forgotten", + }, + [817] = { + ["D"] = "Many of the hides we use come from Durotar tigers, $N. Blankets, armor, tents: there are a great many reasons we hunt the beasts, and many reasons we let them thrive at the same time.$B$BThe time has come for us to cull the flock, so to speak. Our numbers grow, and our needs are beginning to overwhelm our stocks. I need more hides if I\'m to prepare suitable goods for our people.$B$BBring me 4 Durotar tiger furs, and I shall reward you. You can find them on the islands south of here.", + ["O"] = "Bring 4 Durotar Tiger Furs to Vel\'rin Fang in Sen\'jin Village.", + ["T"] = "Practical Prey", + }, + [818] = { + ["D"] = "Although my eyes fail me, I still can see clearly enough. More often I must rely on my alchemical skills to aid me in magics that once came easily. But I refuse to take on an apprentice--no troll or orc worthy enough has ever come forward.$B$BAre you worthy? Yes, of course you are... of course you think you are.$B$BI need a few things. Will you get them for me?$B$BI need intact makrura eyes, and vials of crawler mucus. You can find them on any makrura or crawler in Durotar. We shall speak again soon.", + ["O"] = "Bring 4 Intact Makrura Eyes and 8 vials of Crawler Mucus to Master Vornal in Sen\'jin Village.", + ["T"] = "A Solvent Spirit", + }, + [819] = { + ["D"] = "A small placard on one of the ends of the keg says,$B$B\"Chen Stormstout-$B$BMay your spirit be raised and always raise your spirits.\"", + ["O"] = "Find someone who knows about Chen\'s Empty Keg.", + ["T"] = "Chen\'s Empty Keg", + }, + [821] = { + ["D"] = "Would you like a taste of Chen\'s namesake? Ahh, the stormstout is a mighty brew. Chen taught the recipe to my mentor, and my mentor passed it on to me. I\'ll need you to get me a few things, but I can tell you this: the kick is worth it.$B$BBring me 5 savannah lion tusks from any savannah lion, 5 plainstrider kidneys from any plainstrider, and 1 thunder lizard horn from any species of thunder lizard. That should do the trick nicely.$B$BYou can find these ingredients throughout the Barrens.", + ["O"] = "Bring 5 Savannah Lion Tusks, 5 Plainstrider Kidneys, and 1 Thunder Lizard Horn to Brewmaster Drohn in Ratchet.", + ["T"] = "Chen\'s Empty Keg", + }, + [822] = { + ["D"] = "Good stuff, that stormstout, huh?$B$BI have another recipe that I learned from Chen. Would you be interested? It won\'t take long to make, and it might be useful if you plan on adventuring some more.$B$BBring me 5 lightning glands from any stormhide, 1 thunderhawk saliva gland from greater thunderhawks, and a kodo liver from any of the Barrens\' kodos.$B$BLike I said, this stuff has kick; it\'s the trogg brew that I mentioned to you before.", + ["O"] = "Bring 5 Lightning Glands, 1 Thunderhawk Saliva Gland and 1 Kodo Liver to Brewmaster Drohn in Ratchet.", + ["T"] = "Chen\'s Empty Keg", + }, + [823] = { + ["D"] = "We at Sen\'jin Village are not without our own troubles, and we thank you for your aid. But the news you bring regarding the Burning Blade could be trouble for everyone.$B$BThere is an orc stationed at Razor Hill, Orgnil Soulscar, who polices Durotar from evils such as the Burning Blade! Go to Orgnil and tell him of our plight, as well as your news from the Valley of Trials. He will want to know these things.$B$BRazor Hill lies to the north.", + ["O"] = "Speak with Orgnil Soulscar in Razor Hill.", + ["T"] = "Report to Orgnil", + }, + [824] = { + ["D"] = "The Earthen Ring is a shamanistic group dedicated to studying and preserving the elements. They have forgotten more about crazy old gods, ancient legends and lore than most scholars will ever know.$B$BLucky for you, I know someone in the Earthen Ring here in Ashenvale. Head over to Zoram\'gar Outpost on the coast of the Zoram Strand; show Je\'neu Sancrea what you found. If anyone can figure out that globe\'s significance, it\'d be him.", + ["O"] = "Bring the Befouled Water Globe to Je\'neu Sancrea at Zoram\'gar Outpost, Ashenvale.", + ["T"] = "Je\'neu of the Earthen Ring", + }, + [825] = { + ["D"] = "One of my most observant scouts brings back word that the wreckage of Proudmoore\'s fleet still remains off the coast of Durotar, just east of Tiragarde Keep.$b$bIt is no secret that the humans, in alliance with those foul little creatures known as gnomes, have an advanced knowledge of mechanics. We must have a complete understanding of all our potential enemies. And our people will benefit from this new knowledge as well.$b$bSwim through the wreckage, $n, and retrieve for me the tools of the Alliance.", + ["O"] = "Gar\'Thok of Razor Hill wants you to retrieve 3 Gnomish Tools from the wreckage off the coast.", + ["T"] = "From The Wreckage....", + }, + [826] = { + ["D"] = "The witchdoctor Zalazane dwells on the Echo Isles to the east. They are the isles we once called home.$B$BFrom there he sends his trolls to the mainland, to hex our people and drag more of them under his sway.$B$BHe must be stopped.$B$BDefeat Zalazane and his minions -- former Darkspear trolls, now lost to us. Bring me his head and I will know his reign of evil is over.", + ["O"] = "Defeat Zalazane.$B$BKill 8 Voodoo Trolls and 8 Hexed Trolls.$B$BBring Zalazane\'s Head to Gadrin.", + ["T"] = "Zalazane", + }, + [827] = { + ["D"] = "$N. The Burning Blade has infested the cave east of Orgrimmar known as Skull Rock. Inside that cave they perform vile rituals, and burn their own flesh with Searing Collars.$B$BBy wearing these collars, I believe the cultists attune themselves to demonic power. But to confirm this, I must have a collection of the collars to study.$B$BGo to Skull Rock and gather Searing Collars from the cultists you find there. Bring them to me, and I will uncover their secrets.", + ["O"] = "Gather Searing Collars from the cultists in Skull Rock.$B$BBring them to Margoz at his camp.", + ["T"] = "Skull Rock", + }, + [828] = { + ["D"] = "One of our Shamans, Margoz, knows more of the Burning Blade\'s corruption. He speaks of a cave called Skull Rock in the mountains - just outside Orgrimmar! - that shelters a large band of Burning Blade cultists.$B$BBefore you go to Skull Rock speak with Margoz. He is wise and his council is valued.$B$BHe is camped to the northeast, between the coast and Drygulch Ravine.$B$BFollow his advice, but whatever Margoz says, $N, I still want you to crush those cultists!", + ["O"] = "Speak with Margoz.", + ["T"] = "Margoz", + }, + [829] = { + ["D"] = "The Searing Collars you brought me are powerful, demonic implements. Divining their origin is, I\'m afraid, beyond my skills as a shaman. We will need a warlock to study them.$B$BTake a searing collar to Neeru Fireblade. Although he is a skilled warlock, he professes to use his powers to thwart demons, and claims his research in the occult is benign. Be that true or false, we may need his aid against the demonic cult in Durotar.$B$BYou may find Neeru in Orgrimmar in the Cleft of Shadow.", + ["O"] = "Bring an Example Collar to Neeru Fireblade in Orgrimmar.", + ["T"] = "Neeru Fireblade", + }, + [830] = { + ["D"] = "You open the aged and weathered envelope and discover an official looking document. You recognize the seal of Admiral Proudmoore.$b$bThis looks important. Perhaps Gar\'Thok, the commander of Razor Hill, would be interested in having this information.", + ["O"] = "Take Admiral Proudmoore\'s Orders to Gar\'Thok in Razor Hill.", + ["T"] = "The Admiral\'s Orders", + }, + [831] = { + ["D"] = "Humans cannot be trusted. We fought alongside them with a weary heart, knowing they would betray us one day.$b$bAdmiral Proudmoore\'s death was not enough to stop his legacy of deceit. The human scum had his plans well laid out before he ever met his demise.$b$bHis reign won\'t even die with Benedict it seems. Who knows how long it will be before the next waves of Proudmoore\'s men land upon our shores.$b$bWe need to get these orders to Nazgrel in Orgrimmar immediately! He can be found in Thrall\'s chamber.", + ["O"] = "Deliver Admiral Proudmoore\'s Orders to Nazgrel in Thrall\'s chamber in Orgrimmar.", + ["T"] = "The Admiral\'s Orders", + }, + [832] = { + ["D"] = "$B$BGazz\'uz?$B$BGazz\'uz...report!$B$BThere is word of your discovery in Skull Rock. You must prepare for an attack!$B$BGazz\'uz, I order you to speak! Speak or I will make sure Neeru Fireblade knows of your presence, and he will descend on you with swift brutality.$B$BDo not test your skills against Neeru...$B$B...Gazz\'uz, are you there...?", + ["O"] = "Take this eye to Neeru Fireblade.", + ["T"] = "Burning Shadows", + }, + [833] = { + ["D"] = "Only the most valiant tauren are laid to rest at Red Rocks, our sacred burial ground. It is an honor bestowed upon the great warriors who helped found and defend Thunder Bluff and those who have given their lives for the greater good of their tribes and chieftains.$b$bBut it appears a foul menace has made its way onto our holy land. A band of Bristleback Interlopers is ravaging the grave site and I am too old and past my prime to drive them away.$b$bThey must be driven off with force, $n.", + ["O"] = "Lorekeeper Raintotem wants you to kill 8 Bristleback Interlopers at Red Rocks.", + ["T"] = "A Sacred Burial", + }, + [834] = { + ["D"] = "I\'m Rezlak, one of Gazlowe\'s boys. Boss sent me to help the orcs here in Durotar. Things\'d been going good except for the caravans. Can\'t manage to keep them safe! Makes my job a little harder, you know?$b$bThe last shipment--they promised it\'d get through!--was snatched by the Dustwind harpies of...where was it...Razorwind Canyon?$b$bI gotta have those supplies or I\'ll never get anything done! Follow the big canyon to the south, you\'ll find the ravine cut right into the west and east sides of the walls.", + ["O"] = "Retrieve 5 Sacks of Supplies and return them to Rezlak near Orgrimmar.", + ["T"] = "Winds in the Desert", + }, + [835] = { + ["D"] = "Gazlowe told me once, \"Rezlak. There\'s one thing you need to know in life, and that\'s if you want something done well, do it yourself.\"$b$bI can\'t deal with losing all our caravans, so I\'m just going to take matters into my own hands. Drygulch Ravine lies through the eastern part of Razorwind Canyon. If we kill all the harpies there, the routes will be safe.$b$bOf course, there was one other thing that Gazlowe taught me, and that\'s \"You can get anything done for a price.\" So, going to help me out, $n?", + ["O"] = "Kill 12 Dustwind Savages and 8 Dustwind Storm Witches for Rezlak near Drygulch Ravine.", + ["T"] = "Securing the Lines", + }, + [836] = { + ["D"] = "The gnome\'s voice crackles once again from the robot:$B$B\"I need to move OOX-09/HL to an open, safe place so it can begin a lengthy take-off procedure. It has built-in cloaking, but I need time on my end to make it operational again. Escort the robot from its current location to, let\'s say, the shoreline beyond Overlook Cliff! That should be a perfect place, and long enough, to get things online!\"$B$B\"Escort it safely to the shore, and then come talk to me in Booty Bay! Oglethorpe Obnoticus - out!\"", + ["O"] = "Escort OOX-09/HL to the shoreline beyond Overlook Cliff, then report to Oglethorpe Obnoticus in Booty Bay.", + ["T"] = "Rescue OOX-09/HL!", + }, + [837] = { + ["D"] = "When we arrived, the Razormane quilboars possessed much of the land, and proved a thorn in our sides. Through our efforts we have driven out the largest part of their numbers, but still they remain well-fortified in some areas.$b$bIt has gone on long enough, however. For our own protection, we cannot allow the Razormane any hold in our lands. Their camps can be found to the west of here. Look for the brambles and you will find them. Today we drive them from Durotar, tomorrow, perhaps from all of Kalimdor.", + ["O"] = "Kill 4 Razormane Quilboars, 4 Razormane Scouts, 4 Razormane Dustrunners and 4 Razormane Battleguards for Gar\'Thok at Razor Hill.", + ["T"] = "Encroachment", + }, + [838] = { + ["D"] = "On the island of Caer Darrow lies Scholomance - a school that serves as a stronghold for the Scourge. Our enemy dwells within, safely allowed to pursue research that strengthens their power. A door bars the way, and try as we might no entry is to be had without a proper key.$B$BApothecary Dithers is well versed on Scholomance, and has an idea how to obtain a key. You have proved your value to me as someone who can get things done; I now entrust this task to you. Speak with him on this matter.", + ["O"] = "Speak with Apothecary Dithers at the Bulwark, Western Plaguelands.", + ["T"] = "Scholomance", + }, + [839] = { + ["D"] = "", + ["O"] = "", + ["T"] = "", + }, + [840] = { + ["D"] = "Hmm, you look pretty strong.$B$BListen, my good friend Kargal needs some new recruits for Barrens duty. I know you want to do what\'s right for the Horde. Well, this is your chance.$B$BTake this recruitment letter to Kargal and see if he\'ll sign it.", + ["O"] = "Follow the western road from Razor Hill to the Barrens over a bridge.$B$BStop at the orc outpost across the bridge.$B$BGive Kargal Battlescar at the Barrens outpost your recruitment letter.", + ["T"] = "Conscript of the Horde", + }, + [841] = { + ["D"] = "Let me guess - you didn\'t get whatever world-ending, nefarious deed you were doing done in time. No wait, better still... you dropped it in the sand! Well, whatever the reason, I do have additional power sources I will sell to you. This time, however, it will cost you ten, YES TEN Wastewander Water Pouches!$B$BTimes are tough all around, $n, and power sources don\'t grow on trees! Hrm, but what if they did. Maybe we could MAKE a power source tree...", + ["O"] = "Bring 10 Wastewander Water Pouches to Chief Engineer Bilgewhizzle in Gadgetzan in exchange for another power source.", + ["T"] = "Another Power Source?", + }, + [842] = { + ["D"] = "Take this signed recruitment letter to the Crossroads.$B$BSergra Darkthorn, curse her hide, is in charge there. She\'s a nasty shaman who will talk your head in circles before she lets you do anything useful. Thrall is convinced she\'s something special, but I\'m not so sure.$B$BYou\'ll just have to decide for yourself, pup...", + ["O"] = "Follow the western road from Kargal\'s Far Watch Outpost.$B$BAt the T intersection, turn left and follow the road south. $B$BFind Sergra Darkthorn at the crossing of roads within the Crossroads.", + ["T"] = "Crossroads Conscription", + }, + [843] = { + ["D"] = "In solitude I wander these roads.$b$bThe dwarves of Bael Modan show no respect for my land. Horrendous blasts drive holes deep into the ground as noisy machines rip apart the hills. Lands which once served as home and provider to my tribe are now riddled with destructive dwarves.$b$bAttempts at reaching a diplomatic resolution have failed. Now is the time for decisive action.$b$bDrive the dwarves from the Bael Modan excavation by force and bring to me the journal of their leader, Prospector Khazgorm.", + ["O"] = "Gann Stonespire wants you to kill 15 Bael\'dun Excavators and 5 Bael\'dun Foremen.$b$bBring Khazgorm\'s Journal to Gann Stonespire.", + ["T"] = "Gann\'s Reclamation", + }, + [844] = { + ["D"] = "Your first prey will be easy.$B$BThe plainstriders to the east have been harassing our food supplies and have become a nuisance.$B$BPut down the plainstriders and return to me with their beaks.", + ["O"] = "Collect 7 Plainstrider Beaks and return them to Sergra Darkthorn in the Crossroads.", + ["T"] = "Plainstrider Menace", + }, + [845] = { + ["D"] = "The zhevra, although not the fiercest beast in the Barrens, are a shade tougher than the plainstriders. Don\'t worry -- we\'ll send you against bigger prey in good time, but for now your teeth could use a little more cutting.$B$BHunt the zhevra to the north and south, and collect their hooves. Bring them to me and perhaps we\'ll next send you against something tougher.", + ["O"] = "Slay Zhevra Runners to collect 4 Zhevra Hooves for Sergra Darkthorn in the Crossroads.", + ["T"] = "The Zhevra", + }, + [846] = { + ["D"] = "It is clear the prospector depended on explosives and those noisy vehicles to rip the ground apart. We can expect a new foreman to take over soon.$b$bI want to give the dwarves a taste of their own medicine. According to these plans if we combine nitroglycerin with wood pulp and sodium nitrate we can create an explosive charge. The rifleman, soldiers and officers in the Keep are known to have the supplies.$b$bCollect these items and bring them to me. I will fashion a charge that the dwarves won\'t forget!", + ["O"] = "Gann Stonespire wants you to bring him 6 vials of Nitroglycerin, 6 bundles of Wood Pulp, and 6 samples of Sodium Nitrate.", + ["T"] = "Revenge of Gann", + }, + [847] = { + ["D"] = "This... this power.... Is this the power of the shamans that Tor\'gan tried to show me? I must say, it is interesting. Tell Tor\'gan that he has convinced me... for the time being. I will listen to what he has to say.", + ["O"] = "Speak with Tor\'gan.", + ["T"] = "Guile of the Raptor", + }, + [848] = { + ["D"] = "The oases of the Barrens hide a mystery. Life energy flows from their waters, invigorating the plants and beasts that drink it.$B$BInvigorating, and altering.$B$BThere is a mushroom that grows near these oases. Its spores hold properties that we, the apothecaries of Lordaeron, find useful.$B$BBring me these spores and you will earn our gratitude.", + ["O"] = "Bring 4 Fungal Spores to Apothecary Helbrim at the Crossroads.", + ["T"] = "Fungal Spores", + }, + [849] = { + ["D"] = "Following Khazgorm\'s plans it should be no problem to fashion an explosive charge$b$bAh, there we go.$b$bNow, $n, I am going to entrust you with a special task. Take this explosive stick and use it to blow up the flying machine at Bael Modan.$b$bNot only is the flying machine a key part of the site\'s infrastructure it also serves as a weapon of war. More importantly it is an icon of power and an insult to the memory of my tribe.$b$bMake me proud by completing this heroic task and you shall be rewarded.", + ["O"] = "Destroy the flying machine at Bael Modan and return to Gann Stonespire.", + ["T"] = "Revenge of Gann", + }, + [850] = { + ["D"] = "The centaurs have plagued the Tauren for years. And recently, the Kolkar centaurs of the Barrens have grown into a real threat. Normally they were disorganized in these lands, but new leaders have risen among them. Rallying them.$B$BTo preserve our holdings here, these centaur leaders must be destroyed.$B$BBring me the head of Barak Kodobane. He camps near the Forgotten Pools to the north.$B$BDefeat him, then return to me.", + ["O"] = "Bring Barak\'s Head to Regthar Deathgate, west of the Crossroads.", + ["T"] = "Kolkar Leaders", + }, + [851] = { + ["D"] = "The centaur Verog the Dervish wanders the Barrens, and will be difficult to find. But he is based at the centaur command tent at the Stagnant Oasis to the southeast. It may be possible to draw him to you.$B$BTravel to the Stagnant Oasis to the southeast and attack centaur near the command tent. It will be dangerous, but if you can kill enough centaur then they should raise an alarm. And Verog will come.$B$BBring me his head and I will place it with Barak Kodobane\'s.", + ["O"] = "Bring Verog\'s Head to Regthar Deathgate, west of the Crossroads.", + ["T"] = "Verog the Dervish", + }, + [852] = { + ["D"] = "Hezrul Bloodmark is the leader of the Kolkar centaurs in the Barrens. He is fierce, brutal and cunning. Defeating him would disrupt and fracture the Kolkars, greatly reducing their threat to us.$B$BSo kill him. As with Barak and Verog, bring me Hezrul\'s Head.$B$BHe leads his people from the Lushwater Oasis, to the south.", + ["O"] = "Bring Hezrul\'s Head to Regthar Deathgate, west of the Crossroads.", + ["T"] = "Hezrul Bloodmark", + }, + [853] = { + ["D"] = "I have rendered the spores you gave me into an emulsion. I must now send it to my associate, Apothecary Zamah. If you were to carry this to her, she can offer you something from our stores of alchemical goods.$B$BShe is in the Pools of Vision, a cave beneath the shamans of Thunder Bluff. The path to this cave is well hidden, but you may find it on the Spirit Rise bluff.$B$BDo hurry. This emulsion will maintain its potency for only a short time, and must be resealed and processed before then.", + ["O"] = "Bring the Rendered Spores to Apothecary Zamah in Thunder Bluff, before the time limit is up.", + ["T"] = "Apothecary Zamah", + }, + [854] = { + ["D"] = "I have foreseen your arrival, young $c. Though perhaps you are not so young anymore.$B$BI think that it is time for you to move deeper into this land. I can sense that you are destined for great things.$B$BIt is the Crossroads that you must seek out, for our lives with the orcs have become intertwined and they need assistance. Continue down this road towards the east and follow it north to the Crossroads. Find Thork within its walls, he has the Earthmother\'s blessing.", + ["O"] = "Speak with Thork at the Crossroads in the Barrens.", + ["T"] = "Journey to the Crossroads", + }, + [855] = { + ["D"] = "The Kolkar are a threat to the Horde\'s claims in the Barrens; we must reduce the numbers of their troops. And so, I have a bounty task for you.$B$BWhile in Kolkar territories, slay their warriors and collect centaur bracers. Return when you have a heap of bracers and the Horde will reward you well.", + ["O"] = "Bring 15 Centaur Bracers to Regthar Deathgate, west of the Crossroads.", + ["T"] = "Centaur Bracers", + }, + [856] = { + ["D"] = "Though you have reached the Barrens, your journey is not complete. You must continue on to the Crossroads, where you are needed most.$B$BFollow the road as you were, and turn left where the path gives you the choice. Follow it North until you see the walls of the Crossroads.$B$BJust before you enter, you should see the Ancestral Sage, he will have words of wisdom for you.", + ["O"] = "Continue down the road from Camp Taurajo.$B$BTurn left at the T intersection and continue North.$B$BFollow the path to the Ancestral Sage outside the Crossroads.", + ["T"] = "", + }, + [857] = { + ["D"] = "The power was mine! In my very hands! And I want it back! Back I say!$b$bThose dirty excavators uncovered it... so beautiful it was. Deemed the Tear of the Moons, it was the first great discovery we made at Bael Modan.$b$bIt should have been mine! Mine I say!$b$bGeneral Twinbraid grew jealous of the power it gave me. He locked it away in the Keep. Called it cursed, he did! The fool!$b$bOthers wanted it and they had to be stopped! That bastard Twinbraid drove me off.$b$bNow I want it back. Back I say!", + ["O"] = "Feegly the Exiled wants you to retrieve for him the Tear of the Moons.", + ["T"] = "The Tear of the Moons", + }, + [858] = { + ["D"] = "I don\'t suppose Sputtervalve sent you? I\'m in a bind here. I hopped in without realizing that I need a key to unlock the shredder\'s movement column. One of the other shredder operators asked me if everything was okay, and I panicked! Instead of telling him that I was missing my key, I told him there was some sort of mechanical problem.$b$bWe need to get out of here on the double! Go up to the control room at the top of the derrick, the supervisor should have a key for this shredder.$b$bHelp me out here!", + ["O"] = "Get the Ignition Key and bring it to Wizzlecrank.", + ["T"] = "Ignition", + }, + [860] = { + ["D"] = "If you wish to walk the hunter\'s path, then your journey leads to the Barrens. Its beasts are strong-willed and fierce. You will learn much by hunting there, and your spirit will grow.$B$BSpeak with Sergra Darkthorn. She will be your first guide in the Barrens.$B$BSergra is at the Crossroads. To reach her, travel east from Bloodhoof Village into the Barrens, then north as the road forks. And have care as you travel--the Barrens holds great danger for the unprepared and unwary.", + ["O"] = "Speak with Sergra Darkthorn at the Crossroads.", + ["T"] = "Sergra Darkthorn", + }, + [861] = { + ["D"] = "You are eager to explore, I can tell. I too had the lust to wander, once...$B$BWander, and hunt. For hunting is a Tauren\'s greatest honor.$B$BIf you truly wish to follow the ways of the hunter, then Melor Stonehoof can show you the path. He is in Thunder Bluff, on the Hunter\'s Rise.$B$BAnd to show him your skill and resolve, bring him the claws of the flatland prowlers of Mulgore. They are tough and cunning -- fitting prey for a young $c on the hunter\'s path.", + ["O"] = "Bring 4 Flatland Prowler Claws to Melor Stonehoof in Thunder Bluff.", + ["T"] = "The Hunter\'s Way", + }, + [862] = { + ["D"] = "A $c like you must get pretty hungry out here in The Barrens. Me, I\'m starving all day long.$b$bTell you what, I\'ll fix you up a nice stew. Just need a few dig rats.$b$bSeems those filthy dwarves at Bael Modan are overrun with everyone\'s favorite feast. Now head on down south to Bael Modan and bring me back some dig rats.$b$bYou can\'t call yourself a seasoned adventurer until you\'ve spent some time killing rats! Haw!", + ["O"] = "Bring 8 Dig Rats to Grub east of the Crossroads.", + ["T"] = "Dig Rat Stew", + }, + [863] = { + ["D"] = "I suppose I\'ll learn as we go... Couldn\'t be too hard. Just some buttons here, and a lever or two... Well, are you ready to go?", + ["O"] = "Protect Wizzlecrank and the stolen goblin shredder on the way to Sputtervalve in Ratchet.", + ["T"] = "The Escape", + }, + [864] = { + ["D"] = "\"Here you go, the power source is safely removed and the data is preserved. Well, safe journeys and all that. Hope the nefarious science experiment worked out for you and all.\"$B$BThe goblin turns away from you to attend to the demands of the Gadgetzan Water Company. You secure the sealed testing kit for the journey back to the Undercity. Apothecary Zinge waits for you and the sealed field testing kit there.", + ["O"] = "Bring the Sealed Field Testing Kit to Apothecary Zinge in the Undercity.", + ["T"] = "Return to Apothecary Zinge", + }, + [865] = { + ["D"] = "The raptors of the Barrens are smarter than raptors in other lands. And I think all that smarts is hiding in their horns! If so, then I could grind their horns into powder and use it to make \"smart drinks.\" I could sell them for a fortune!!!$B$BAnd you can help me. Find me intact raptor horns from sunscale scytheclaws. They roam in the southern Barrens, and in the northern Barrens near the border of Ashenvale Forest.", + ["O"] = "Gather 5 Intact Raptor Horns from Sunscale Scytheclaws, and bring them to Mebok Mizzyrix in Ratchet.", + ["T"] = "Raptor Horns", + }, + [866] = { + ["D"] = "The herbs of the Barrens are not quite like herbs in other lands. Their properties are mostly the same, but the oasis water here alters the plants; they are just slightly different.$B$BI want to study those differences... to see if they\'re exploitable!$B$BIf you are skilled in herbalism, then gather root samples off the herbs you find in the Barrens. Bring back these samples so that I may compare them with herbs from other regions.", + ["O"] = "Bring 8 Root Samples to Mebok Mizzyrix in Ratchet.", + ["T"] = "Root Samples", + }, + [867] = { + ["D"] = "The blasted harpies have been ravaging our caravan supplies for too long. It\'s time we slit a few of their throats and diminished their numbers.$B$BI\'ve been snooping around their nests and figured out who leads who. The most devastating attack will destroy a good section of their lower chain of command and then we can work our way to the top.$B$BI\'ll start you off slow, take out Witchwing Harpies and Witchwing Roguefeathers in the Northwest and bring me 8 Witchwing talons. That should be a good start...", + ["O"] = "Collect 8 Witchwing talons.$B$BReturn them to Darsok Swiftdagger at the Crossroads.", + ["T"] = "Harpy Raiders", + }, + [868] = { + ["D"] = "Hey, $N. I been sent to the Crossroads to watch over the land and take note of its happenings for my masters in Orgrimmar.$B$BOne object of my studies are the insect-like creatures found to the south in the Field of Giants. We know little of the creatures, so I be makin\' it a point to discover more. They seem to have intelligence to them, more so than any normal animal.$B$BTake this digging claw and collect some of the creatures\' eggs from their mounds, but be careful: if alerted, they will attack you.", + ["O"] = "Bring 12 Silithid Eggs and the Digging Claw to Korran at the Crossroads.", + ["T"] = "Egg Hunt", + }, + [869] = { + ["D"] = "Not long ago, a shipment of silver was stolen from our guard tower. It was meant as payroll to the Crossroads\' guards, and we want that silver back.$B$BThe strange thing is... we caught one of the thieves on the night of the theft. And... it was a raptor! Unbelievable!$B$BI don\'t know what raptors would want with silver. But I don\'t care -- I want the raptors dead so they won\'t steal from us again!$B$BHunt raptors in the Barrens. Collect for me their heads!", + ["O"] = "Bring 12 Raptor Heads to Gazrog at the Crossroads.", + ["T"] = "Raptor Thieves", + }, + [870] = { + ["D"] = "Long ago, the Barrens was a lush place, teeming with life. But war and cataclysm raged across the land, scorching it and leaving a dry husk. Such is the way of things, and it saddens my heart.$B$BBut within the past few years, new oases have formed in the Barrens, and life stirs. And deep down, we druids sense a power leaking its way to the surface.$B$BWe must find its source. Travel to the Forgotten Pools, northwest of the Crossroads. Search its waters for a source of power, then return here.", + ["O"] = "Report back to Tonga Runetotem with your findings.", + ["T"] = "The Forgotten Pools", + }, + [871] = { + ["D"] = "All the quilboars are our enemies, $N. Some just prove to be more of a nuisance than others.$B$BThe Razormane tribe has been attacking our supply lines from Durotar, causing us no end of annoyance. I have scouts seeking the leader of these raids, but until then, any losses you can inflict on the filthy pig men would aid us.$B$BStart in the northeast towards Durotar. You can always tell their dens from the huge thorny vines that come up from the earth. Seek them out, and slay them.", + ["O"] = "Of the Razormane tribe, kill 8 Water Seekers, 8 Thornweavers and 3 Hunters, and then return to Thork in the Crossroads.", + ["T"] = "Disrupt the Attacks", + }, + [872] = { + ["D"] = "One of my scouts witnessed an attack on a caravan from Durotar, $N. The culprits are indeed the Razormane tribe of quilboars. One of the quilboars in particular is leading the raids: Kreenig Snarlsnout. He was seen northeast of here, just south of the road from Durotar. If the threat is to be ended, then Kreenig must die.$B$BTo be sure the attacks cease, though, I say we add insult to their injury. Kill Kreenig along with more of their tribe, and return to me when you have his tusk.", + ["O"] = "Kill 8 Razormane Geomancers, 8 Razormane Defenders, and Kreenig Snarlsnout.$B$BThen bring Kreenig Snarlsnout\'s Tusk to Thork at the Crossroads.", + ["T"] = "The Disruption Ends", + }, + [873] = { + ["D"] = "The grand Isha Awak is lord of these waters. Great is his strength, and solemn his pride. The humans on the coast fear him, for he has consumed many of their number.$B$BBut I do not fear him. I am grateful he is here. He is a worthy challenge, and honorable prey.$B$BIf you are ready, then swim out and search for Isha Awak, the Deep Doom.$B$BHis spirit dwells in his heart, and to hear its beat is to know your fate.", + ["O"] = "Bring the Heart of Isha Awak to Mahren Skyseer.", + ["T"] = "Isha Awak", + }, + [874] = { + ["D"] = "You have hunted the beasts of the Barrens. Your spirit is strong. But a hunter must always be prepared. A true hunter can stalk prey down any path. Mountains and swamps will not sway $ghim:her;.$B$BNot even the sea.$B$BFind my sister, Mahren. She hunts the great water beasts along the coast. She will be your teacher in their ways.$B$BBut be wary in your search for her, for the Barrens\' coast is held by humans.", + ["O"] = "Speak with Mahren Skyseer.", + ["T"] = "Mahren Skyseer", + }, + [875] = { + ["D"] = "Hahaha, $n. Back for more? Good, I like to hear that.$B$BThis time I want you to assassinate some of the harpy lieutenants in the Dry Hills. Only Witchwing Slayers can be lieutenants, and you can tell them apart by the rings they carry. They are a nasty bunch, but they lead some of the underlings in that area. Taking out 6 of them will be a decisive strike against their matriarchy.$B$BMake sure they die painfully, $n. We want those harpy wenches to know the idiocy of picking fights with the Horde.", + ["O"] = "Collect 6 Harpy Lieutenant Rings from Witchwing Slayers and return them to Darsok Swiftdagger at the Crossroads.", + ["T"] = "Harpy Lieutenants", + }, + [876] = { + ["D"] = "You did so well with the lieutenants and underlings that I\'d like you to do one last thing for me.$B$BSerena Bloodfeather is the sister of a harpy named Bloodfeather who was slain by Rexxar quite a while ago. Apparently, these attacks on the Horde caravans are revenge for her sister\'s death.$B$BI need you to slit her throat and bring me back her head. I want to place it on the next caravan we send out... Give those harpies something to think about.", + ["O"] = "Slay Serena Bloodfeather and return her head to Darsok Swiftdagger at the Crossroads.", + ["T"] = "Serena Bloodfeather", + }, + [877] = { + ["D"] = "Like the one you found at the Forgotten Pools, there may be fissures at the other oases in the Barrens. If so, then perhaps the fissures are the oases\' source of life.$B$BWe must test this.$B$BHere, take these seeds. They are dead and infertile, but take them to the Stagnant Oasis to the southeast. If there is a fissure there, then place the seeds within it...and observe.", + ["O"] = "Return to Tonga at The Crossroads, after investigating the Stagnant Oasis.", + ["T"] = "The Stagnant Oasis", + }, + [878] = { + ["D"] = "You must strike my enemies. You must help Mangletooth and the Razormane by weakening the Bristlebacks. Both tribes are very spiritual--tied to the earth and its power. It gives us strength in all things... especially war.$B$BIf you want to find out who really causes Thork and the Horde such anguish, then help Mangletooth! You attack the spiritual leaders of the Bristlebacks to the north; weaken them so the Razormanes can defeat them and rule the Barrens.", + ["O"] = "Kill 6 Bristleback Water Seekers, 12 Bristleback Thornweavers and 12 Bristleback Geomancers and return to Mangletooth at Camp Taurajo in the Barrens.", + ["T"] = "Tribes at War", + }, + [879] = { + ["D"] = "Three of my tribe came out of the Kraul to lead the raids against the Horde, $r. They are ruthless and cunning, and if you defeat them, then your Crossroads and even most of the Barrens will learn peace... at least from the Razormane tribe. $B$BNak, Kuz, and Lok Orcbane are the ones you seek. They are far to the south of the Barrens. One is a spell caster, another a tracker, and their leader, the one called Orcbane, a warrior. Kill them, $r, like they have killed me.", + ["O"] = "Kill Nak, Kuz, and Lok Orcbane and bring their skulls to Mangletooth at Camp Taurajo in the Barrens.", + ["T"] = "Betrayal from Within", + }, + [880] = { + ["D"] = "Your findings are incredible, $N. These oases hold properties that must come from an outside source. Or perhaps an inside one.$B$BI want to know how these fissures are affecting the beasts who drink from the oases\' water.$B$BHunt oasis snapjaws at the Lushwater and Stagnant Oases. Bring me their shells so I may examine them.", + ["O"] = "Bring 8 Altered Snapjaw Shells to Tonga Runetotem at the Crossroads.", + ["T"] = "Altered Beings", + }, + [881] = { + ["D"] = "Whitemist, Echeyakee in the Tauren tongue, is the king of the savannah cats. He hunts with such stealth, they say he\'s like a thin, white mist on the earth. And he kills so fast his prey have no time for fear, or pain.$B$BThe Tauren say he is both mercy and death.$B$BYou will learn if that\'s true, for I now set you on the path to hunt Echeyakee. His lair is northeast of the Crossroads, among the bones of giant Kodo$B$BGo. Blow this horn when you reach his lair. Blow the horn, and he will come.", + ["O"] = "Bring Echeyakee\'s Hide to Sergra Darkthorn at the Crossroads.", + ["T"] = "Echeyakee", + }, + [882] = { + ["D"] = "Ishamuhale, Speartooth, is the fiercest sunscale raptor of the Barrens. He does not hunt for sport, nor for food. He hunts because hunting is his passion. He kills because it is his nature to kill.$B$BAnd you will learn of his nature, $N, for your path now follows the taloned tracks of Ishamuhale.$B$BBegin the hunt. Slay his favorite prey, a zhevra, then bring its carcass to the dead tree northwest of Ratchet. Ishamuhale will smell the carcass and be drawn to it.$B$BBe ready when he comes.", + ["O"] = "Bring Ishamuhale\'s Fang to Jorn at Camp Taurajo.", + ["T"] = "Ishamuhale", + }, + [883] = { + ["D"] = "The Hoof of Lakota\'mani is a symbol of the strength of the great kodo.", + ["O"] = "Bring the Hoof of Lakota\'mani to Jorn at Camp Taurajo.", + ["T"] = "Lakota\'mani", + }, + [884] = { + ["D"] = "When touched, sparks fly from the tailspike of Owatanka.", + ["O"] = "Bring Owatanka\'s Tailspike to Jorn at Camp Taurajo.", + ["T"] = "Owatanka", + }, + [885] = { + ["D"] = "The feather of Washte Pawne is painful to the touch.", + ["O"] = "Bring Washte Pawne\'s Feather to Jorn Skyseer at Camp Taurajo.", + ["T"] = "Washte Pawne", + }, + [886] = { + ["D"] = "The druids of Thunder Bluff sense a strange power leaking into the Barrens, east of Mulgore.$B$BTonga Runetotem was sent to discover the source of this power, but we fear he will need aid.$B$BTravel to the Barrens and speak with Tonga. He will be at the Crossroads. To reach there, take the road east out of Bloodhoof village. Enter the Barrens, then turn north when the road forks. Continue north and you will find the Crossroads.$B$BAnd do not leave the road, $N, for the Barrens is a harsh land.", + ["O"] = "Speak with Tonga Runetotem at the Crossroads.", + ["T"] = "The Barrens Oases", + }, + [887] = { + ["D"] = "I sure wish Vice Admiral Grezzlik did a better job of keeping the seas safe for our trading vessels. With all the gold the trade princes have poured into the Trade Fleets, it ticks me off to see so many pirates running willy-nilly, raiding my ships and stealing my goods!$b$bI heard that the Southsea Freebooters have set up a camp just south of here. They\'ve been a real thorn in my side and if Grezzlik won\'t take care of them, well, maybe you can help me get rid of them.", + ["O"] = "Kill 12 Southsea Brigands and 6 Southsea Cannoneers for Gazlowe in Ratchet.", + ["T"] = "Southsea Freebooters", + }, + [888] = { + ["D"] = "While I\'d like to recover all my goods, I\'m sure that\'s not possible. Still, there\'s a few things that I absolutely must have!$b$bAs you see, my observatory is ready to go, but it needs the smaller of the two lenses. The first arrived by caravan from Durotar, but the second was bound by ship, and never arrived. Also, I never got my boot shipment from Drizzlik in Booty Bay!$b$bHead down to the pirate camp and see if you can find them.", + ["O"] = "Retrieve the Shipment of Boots and Telescopic Lens for Gazlowe in Ratchet.", + ["T"] = "Stolen Booty", + }, + [889] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Spirit of the Wind", + }, + [890] = { + ["D"] = "I\'ve been waiting forever for my last shipment of goods from Booty Bay! I\'m pretty sure that it must have been stolen by the Freebooters, but just to make sure, will you go down to the dockside and ask Dizzywig if my goods were already put into my warehouse without my knowledge?$b$bHere, take my ledger down to Dizzywig and have him double check my inventory records against his logs.", + ["O"] = "Bring Gazlowe\'s Ledger to Wharfmaster Dizzywig.", + ["T"] = "The Missing Shipment", + }, + [891] = { + ["D"] = "Yet another ship from my fleet has been lost to those overzealous humans at Northwatch Hold!$b$bThose bastards must be dealt with. Their paranoia has them in a state of frenzy. Trigger happy, reckless louts are shooting at anything in their sights.$b$bTravel south along the Merchant Coast to the Hold and lay siege to their forces. Bring me the medals of their soldiers as proof. And for the love of my fleet, slay Captain Fairmount and her overzealous cannoneers!", + ["O"] = "Captain Thalo\'thas Brightsun of Ratchet wants you to collect 10 Theramore Medals and slay Captain Fairmount, Cannoneer Whessan and Cannoneer Smythe.", + ["T"] = "The Guns of Northwatch", + }, + [892] = { + ["D"] = "Everything looks square from my records, $n. Go on back and tell Gazlowe he\'s out of luck. I wouldn\'t be surprised if it was the pirates that nabbed his goodies.$b$bNothing else I can do for him. Oh... though you could tell him that I\'ve got some things from Undermine for him, when he has the time to come pick them up.", + ["O"] = "Return Gazlowe\'s Ledger to Gazlowe in Ratchet.", + ["T"] = "The Missing Shipment", + }, + [893] = { + ["D"] = "The Razormane quilboars to the south, beyond the Field of Giants, have no skilled blacksmiths from what I am told, but they\'ve apparently started to develop sturdier weapons. I\'d like to get my hands on a few different types to learn their techniques if possible.$B$BIf you wish to help bring honor to the Horde, then bring me examples of their weapons. Find me a dagger from their stalkers, a wand from their seers, and a shield from their warfrenzy. That should do nicely!", + ["O"] = "Bring a Razormane Backstabber, a Charred Razormane Wand and a Razormane War Shield to Tatternack Steelforge at Camp Taurajo in the Barrens.", + ["T"] = "Weapons of Choice", + }, + [894] = { + ["D"] = "The Venture Company set up a small research facility far to the north of here, southwest of the Sludge Fen. I don\'t know very much about what they\'re doing, but did manage to discover that they\'re experimenting with something called a \"samophlange\".$b$bNow what the heck is a samophlange? Well, whatever it is, I want to examine it, so I need someone to go get it.$b$bI obtained a copy of their control system operating manual, you should be able to figure out how to disengage the samophlange from it.", + ["O"] = "Access the control console at the Venture Company research site.", + ["T"] = "Samophlange", + }, + [895] = { + ["D"] = "WANTED!$b$bBaron Longshore, Captain of the Heedless$b$bCaptain Longshore of Gilneas leads vessels of the Southsea Freebooters, and is wanted on charges of piracy. Remains must be in identifiable condition!$b$b-- Gazlowe", + ["O"] = "Bring the head of Baron Longshore to Gazlowe in Ratchet.", + ["T"] = "WANTED: Baron Longshore", + }, + [896] = { + ["D"] = "Being Wharfmaster of a busy port like Ratchet, I keep my finger on the pulse of information. I know all about the exchange of goods and money between here and Booty Bay.$b$bThe latest bit of news I\'ve heard is about the Venture Company\'s Boulder Lode mine northeast of the Sludge Fen. One of the miners discovered an emerald the size of your fist. I know a few buyers who\'d be interested in getting their hands on something like that, and I\'d be willing to go half and half on its sale.", + ["O"] = "Retrieve the Cats Eye Emerald from one of the Venture Co. Overseers or Enforcers for Wharfmaster Dizzywig at Ratchet.", + ["T"] = "Miner\'s Fortune", + }, + [897] = { + ["D"] = "This strange, insect-like creature looks outside of the natural order, as though it does not belong in the Barrens.", + ["O"] = "Bring the Harvester\'s Head to Jorn Skyseer.", + ["T"] = "The Harvester", + }, + [898] = { + ["D"] = "Finally! Someone to rescue me!$b$bI can\'t believe you got past the guards. These zealots from Theramore are out of their minds. They sank our ship and imprisoned me, the only survivor. I was called an enemy and threat to the Alliance.$b$bMe! A threat to their great sham of an Alliance? I was a deckhand on a moonshine transport between Ratchet and Booty Bay.$b$bEnough talk. Help me get back to Ratchet will you? Let me know when you\'re ready and we\'ll make our break.", + ["O"] = "Safely escort Gilthares Firebough back to Captain Brightsun in Ratchet.", + ["T"] = "Free From the Hold", + }, + [899] = { + ["D"] = "Perhaps you know the pain of uncertainty, perhaps not, $c. But know this: I stand here every day, from the sun\'s rising till its decline, scouring the horizon for more of those monsters. I\'ve killed every pig man I\'ve come across since, but my thirst for their blood is far from quenched. Perhaps instead of heading north to the Crossroads I should have headed to Taurajo.$B$BYou, $c--you could help me.$B$BKill them. Kill as many as you can. Bring me their tusks, and we will celebrate their deaths together.", + ["O"] = "Bring 60 Bristleback Quilboar Tusks to Mankrik at the Crossroads.", + ["T"] = "Consumed by Hatred", + }, + [900] = { + ["D"] = "The three control valves are currently opened. The various readings on the control panel lead you to presume that they must be shut off before the apparatus can be shut off.", + ["O"] = "Close off the Fuel Control Valve, the Regulator Valve and the Main Control Valve then use the control console again.", + ["T"] = "Samophlange", + }, + [901] = { + ["D"] = "With the apparatus deactivated, the control panel can be opened up and the samophlange removed from the console. With everything else in place, all that is left is to acquire the key to unlock the console.", + ["O"] = "Get the Console Key from Tinkerer Sniggles to use on the control console.", + ["T"] = "Samophlange", + }, + [902] = { + ["D"] = "Pulling open the face of the control console reveals a dense jumble of wires, tubing and other strange mechanical objects--most of which seem to serve no practical purpose. Pushing them aside and digging deeper into the console, you find the samophlange. A tug removes it from its housing.", + ["O"] = "Return the Samophlange to Sputtervalve in Ratchet.", + ["T"] = "Samophlange", + }, + [903] = { + ["D"] = "Now it\'s time to go after something that really bites. The prowlers of the Barrens are a tough breed. Tough, resourceful, sly... and deadly. You\'ll find them among the tall grasses. You\'ll find many to the southwest of the Crossroads.$B$BBe wary as you hunt them, $n, or you may find yourself no longer the predator, but instead the prey.", + ["O"] = "Collect 7 Prowler Claws from Savannah Prowlers for Sergra Darkthorn in the Crossroads.", + ["T"] = "Prowlers of the Barrens", + }, + [904] = { + ["D"] = "", + ["O"] = "", + ["T"] = "", + }, + [905] = { + ["D"] = "Now, $N, the hunt deepens. Now you must defeat your prey, and then find your way to its lair.$B$BHunt the sunscale raptors to the south. Slay them and remove the feathers they wear. Place the feathers on the scytheclaw nests southwest of the Stagnant Oasis. Show their brethren you do not fear them!", + ["O"] = "Kill Sunscale raptors and collect their feathers. Use the feathers on the 3 Scytheclaw nests. Return to Sergra Darkthorn in the Crossroads.", + ["T"] = "The Angry Scytheclaws", + }, + [906] = { + ["D"] = "Take Lok\'s head to Thork in the Crossroads, $r. He should know what has happened to my tribe without any words--ha, not that he would believe Mangletooth helped in such things. But I am sure he\'ll reward you for carrying out such a great deed. $B$BI will continue to bless you with Agamaggan\'s power for as long as I remain in this cage, $r. Until then, farewell.", + ["O"] = "Bring Lok\'s Skull to Thork at the Crossroads in the Barrens.", + ["T"] = "Betrayal from Within", + }, + [907] = { + ["D"] = "Now, $N, you must face the great thunder lizards. So large are the beasts, the ground rumbles as they stomp across the plains. Take care as you fight them, for one false step and you may find yourself beneath their feet.$B$BYou will find the thunder lizards in the southern Barrens. They are known as Stormsnouts, Stormhides and Thunderheads. Return to me after you have bested them.", + ["O"] = "Bring 3 Thunder Lizard Blood to Jorn Skyseer at Camp Taurajo.", + ["T"] = "Enraged Thunder Lizards", + }, + [908] = { + ["D"] = "The Twilight\'s Hammer has moved into the Moonshrine Ruins of Blackfathom Deeps. Their presence can only serve to coerce the elements into working against us. If left unchecked, this region will be theirs for good.$B$B$N, go into Blackfathom and find the ruin\'s fathom stone; it should be somewhere close in the water. In it is a fathom core - a device that when properly read it will relate a history of all elemental activity. If I have it, I and the Earthen Ring can maybe do something to stop them!", + ["O"] = "Bring the Fathom Core to Je\'neu Sancrea at Zoram\'gar Outpost, Ashenvale.", + ["T"] = "Amongst the Ruins", + }, + [909] = { + ["D"] = "The defeated water elemental has left behind a strange water globe. You surmise that the object somehow fed the beast energy. Inside the globe, a putrid-looking form of water sloshes about. The globe itself seems impervious to any sort of physical force.$B$BIf anyone can make any sense of this item, it would be Je\'neu Sancrea of the Earthen Ring. He is located at the Horde\'s Zoram\'gar Outpost in Ashenvale.", + ["O"] = "Bring the Strange Water Globe to Je\'neu Sancrea at Zoram\'gar Outpost, Ashenvale.", + ["T"] = "Baron Aquanis", + }, + [910] = { + ["D"] = "I have heard tales of the mighty ships that sail between Ratchet and Booty Bay! That would be so cool to sail on the ocean and fight in many great sea battles. Maybe I will be a mighty Horde sailor when I grow up! Yeah!$B$BWould you take me to see the Ratchet docks, please? I promise I won\'t get into the water or cause any trouble - I just want to see the big boats and smell the salty sea water! Yeah!", + ["O"] = "Take your ward to the docks of Ratchet in the Barrens.", + ["T"] = "Down at the Docks", + }, + [911] = { + ["D"] = "They say that Ashenvale is the new frontier, and that the Mor\'shan Rampart in the Barrens is the gateway to it. That would be so cool to be a pioneer, carving everything you need out of the untamed wilds! They say that this is where the Horde and Alliance will clash the most in the future, and I want to be there $N!$B$BWould you take me to the Mor\'shan Rampart so I can see what the frontier looks like, please? I wanna see where the Horde is driving out those smelly night elves!", + ["O"] = "Take your ward to the Mor\'shan Rampart in the northern part of the Barrens, just before entering Ashenvale.", + ["T"] = "Gateway to the Frontier", + }, + [912] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Stonesplinter Trogg Disguise", + }, + [913] = { + ["D"] = "The thunderhawk, $N, is a fierce beast. It is time for you to face them. You must find where it roams, and bring me its wings as proof of your successful hunt.$B$BDo this, and your time with me will near its end.", + ["O"] = "Find and slay a Thunderhawk, return its wings to Jorn Skyseer at Camp Taurajo.", + ["T"] = "Cry of the Thunderhawk", + }, + [914] = { + ["D"] = "The druids in the Wailing Caverns, the Druids of the Fang, are an aberration. They were part of an order of noble druids whose plan was to heal the Barrens, but now seek to remake that land to match their own, twisted dreams.$B$BThe Druids of the Fang have four leaders, and each possesses a dream gem. Even now their faces haunt me! Defeat the leaders and bring me their gems, and the Barrens may again know peace.$B$BGo, $N. You will find them lurking deep within the Wailing Caverns.", + ["O"] = "Bring the Gems of Cobrahn, Anacondra, Pythas and Serpentis to Nara Wildmane in Thunder Bluff.", + ["T"] = "Leaders of the Fang", + }, + [915] = { + ["D"] = "ICE CREAM! Oh please please please could you get me some ice cream?! Strawberry is my favorite flavor, and there\'s no better strawberry ice cream in the world than Tigule and Foror\'s Strawberry Ice Cream! It\'s my favorite ice cream in the whole wide world!$B$BI had it once a long time ago when I was at the Shimmering Flats race track, but I heard that they might be selling them in town now! Please? Pretty please? With Tigule and Foror\'s Strawberry Ice Cream on top??!?!", + ["O"] = "Get some Strawberry Ice Cream for your ward. The lad seems to prefer Tigule and Foror\'s brand ice cream.", + ["T"] = "You Scream, I Scream...", + }, + [916] = { + ["D"] = "I came to Shadowglen to observe the webwood spiders that dwell in the Shadowthread Cave. They are cousin to a much smaller variety of spider; I believe the world tree has had a profound effect on them, and I would like specimens to study to confirm this.$B$BFirst, I would like some of their venom. Gather Webwood venom sacs from the spiders in and around the Shadowthread Cave, to the north. I can then examine them for similarities with their smaller cousin\'s venom.", + ["O"] = "Bring 10 Webwood Venom Sacs to Gilshalan Windwalker at Aldrassil.", + ["T"] = "Webwood Venom", + }, + [917] = { + ["D"] = "Now that I have the spiders\' venom, I\'d like some live specimens to study. Unfortunately, capturing a living, giant spider is more than I can ask of you, young $c. And a giant spider is more than I could handle myself!$B$BBut if you can find an unhatched egg, then delivering specimens will be much easier, and I can then arrange for the unhatched spiders to be contained.$B$BThere must be a nest deep in the Shadowthread Cave. Please, search for an egg in the nest and return it to me.", + ["O"] = "Bring a Webwood Egg to Gilshalan in Aldrassil.", + ["T"] = "Webwood Egg", + }, + [918] = { + ["D"] = "The timberlings of Teldrassil are elementals of nature. In some ways they reflect the natural order of plants and animals on our great tree.$B$BSo it is disturbing to see how angry the timberlings have become.$B$BI believe it has something to do with the soil. I have been working on different methods of nurturing plants and would like to try them on timberling seeds. Please, can you gather seeds from timberlings around Lake Al\'Ameth and bring them to me?", + ["O"] = "Bring 8 Timberling Seeds to Denelan at Lake Al\'Ameth.", + ["T"] = "Timberling Seeds", + }, + [919] = { + ["D"] = "Small timberlings are sprouting around the waters of Lake Al\'Ameth. I\'m afraid these sprouts are beyond help -- we should try to clear them from the land before they grow large enough to cause trouble.$B$BWhen you\'re wandering the lake, if you see any timberling sprouts please take them. Help keep our land clean!", + ["O"] = "Bring 12 Timberling Sprouts to Denalan at Lake Al\'Ameth.", + ["T"] = "Timberling Sprouts", + }, + [920] = { + ["D"] = "$n, is it? I heard that Tenaron has been asking for you. You\'ll find him in the highest room atop Aldrassil.$b$bWe may live long lives, but it\'s best you not keep him waiting too long.", + ["O"] = "Speak with Tenaron Stormgrip atop Aldrassil in Shadowglen.", + ["T"] = "Tenaron\'s Summons", + }, + [921] = { + ["D"] = "It is time for you to set out to seek your destiny, $n. But before you are ready to set out into the world beyond our enchanted forests, there is much you must learn about our recent history.$b$bMuch has changed with our people since the Battle of Mount Hyjal. Nordrassil lies a pale shadow of what it once was, its power used to defeat Archimonde and drive back the Burning Legion...$b$bThere is a task you must perform. Go to the moonwell north of Aldrassil and return me a phial of its water.", + ["O"] = "Fill the Crystal Phial and bring it back to Tenaron Stormgrip atop Aldrassil.", + ["T"] = "Crown of the Earth", + }, + [922] = { + ["D"] = "$N, can you take one of the seeds you brought me to my friend, Rellian Greenspyre? He is a druid in Darnassus, and when last we spoke he revealed his interest in my work with the Timberlings. He had some ideas himself, and he will appreciate a specimen seed to work with.$B$BThank you, $N. You have been a great help to me. I hope that, some day, you will see the fruit of my labors.$B$BYou will usually find Rellian walking the pathways of the Cenarian Enclave in Darnassus.", + ["O"] = "Bring a Timberling Seed to Rellian Greenspyre in Darnassus.", + ["T"] = "Rellian Greenspyre", + }, + [923] = { + ["D"] = "There is a malevolence growing in the timberlings. We are trying to find the source, but until we do...in order to keep Teldrassil safe we must cut down the timberlings who are beyond help. Those that wander Wellspring Lake in northern Teldrassil are the most tainted. They must be removed!$B$BDestroy the Timberlings you find there, and gather the mossy tumors growing upon them. Bring the tumors to me so that they may be burned.", + ["O"] = "Bring 5 Mossy Tumors to Rellian Greenspyre in Darnassus.", + ["T"] = "Tumors", + }, + [924] = { + ["D"] = "The Demon Seed is a powerful tool for the Burning Legion. It rests in a cave on Dreadmist Peak, above a demonic altar of fire.$B$BI have prepared power stones that when placed near the Seed will disrupt its connection to the Legion.$B$BTake a stone from the table and bring it to the altar of fire atop Dreadmist Peak. Travel west, then north when the road forks. The Peak will be to your left. The safest climb to the top is on its northern face.$B$BAnd hurry--the stone\'s power will consume itself in time.", + ["O"] = "Grab a Flawed Power Stone. Bring it to the Altar of Fire before the stone expires, then return to Ak\'Zeloth.", + ["T"] = "The Demon Seed", + }, + [925] = { + ["D"] = "They say that Cairne Bloodhoof is one of the greatest heroes the Horde has ever seen. When I grow up, I wanna be a hero of the Horde too!$B$BDo you know Cairne, $N? Could you do me a favor, please? Could you get his hoofprint for me? I dunno how to ask him, and he\'d probably be too busy for someone like me... but you! You\'re an adventurer just like he is! I bet he\'d give you his hoofprint easy!$B$BPlease?", + ["O"] = "Travel to Thunder Bluff to see about getting Cairne Bloodhoof\'s hoofprint for your ward.", + ["T"] = "Cairne\'s Hoofprint", + }, + [926] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Flawed Power Stone", + }, + [927] = { + ["D"] = "The heart of Blackmoss the Fetid is covered with a dark, oily moss. In fact, the only way to tell this is a heart is from its slow, rhythmic beat... A beat that continues even now.$B$BPerhaps Denalan will want to see this heart.", + ["O"] = "Bring the Moss-twined Heart to Denalan at Lake Al\'Ameth.", + ["T"] = "The Moss-twined Heart", + }, + [928] = { + ["D"] = "While there is more I could speak to you of the moonwells and of Teldrassil, I must send you along. Corithras Moonrage will be expecting you. I have poured the phial of water you brought to me into this vessel to bring to him.$b$bSeek out Corithras. You will find him at the moonwell in Dolanaar. Follow the road south from Aldrassil out of Shadowglen, and continue to follow the cobblestones as the road turns west.$b$bMind you stay on the road though, $n. There are dangerous beasts in the forests of late.", + ["O"] = "Bring the Partially Filled Vessel to Corithras Moonrage in Dolanaar.", + ["T"] = "Crown of the Earth", + }, + [929] = { + ["D"] = "First, let me tell you more of the task you must complete. The druids in Darnassus use the water of the moonwells of Teldrassil, and their moonwell must be replenished from time to time. Using these specially crafted phials, you can collect the water of the moonwells.$b$bTake this vessel to the moonwell outside of Starbreeze Village to the east, and fill it with some of its waters, then return to me. When you have completed your task, I shall continue the story where Tenaron left off...", + ["O"] = "Fill the Jade Phial and bring it back to Corithras Moonrage in Dolanaar.", + ["T"] = "Crown of the Earth", + }, + [930] = { + ["D"] = "Hanging from beneath its fronds of this glowing plant is a large, round fruit.$B$BDenalan would want to study this fruit, you are certain.", + ["O"] = "Bring the glowing fruit to Denalan at Lake Al\'Ameth.", + ["T"] = "The Glowing Fruit", + }, + [931] = { + ["D"] = "The fronds on this plant shimmer in the forest light, giving it a twisting, pulsing aura.$B$BYou believe that Denalan would want a specimen of this.", + ["O"] = "Bring a Shimmering Frond to Denalan at Lake Al\'Ameth", + ["T"] = "The Shimmering Frond", + }, + [932] = { + ["D"] = "I must warn you, $n, this matter must stay between us. The satyr are enough of an embarrassment to us already, and this one is much too close to home.$B$BHe is called Lord Melenas. He resides in the nearby cave of Fel Rock where he has gathered a large group of grell warriors. His heart is black as night, and he plots something most foul.$B$BYou must find him within his nearby cave just to the north of here, and bring me his head.", + ["O"] = "Kill Lord Melenas and bring his head to Tallonkai Swiftroot in Dolanaar.", + ["T"] = "Twisted Hatred", + }, + [933] = { + ["D"] = "There is another moonwell southeast of the entrance to Darnassus, on the shores of the Pools of Arlithrien. The Sentinels are having problems patrolling the area because of attacks and the growing ill-temperedness of the Gnarlpine furbolgs.$b$bBe wary as you seek out the well, and keep your weapons close at hand.", + ["O"] = "Fill the Tourmaline Phial and bring it back to Corithras Moonrage in Dolanaar.", + ["T"] = "Crown of the Earth", + }, + [934] = { + ["D"] = "All was not well with Teldrassil, however. Staghelm\'s carefully made plans for the new World Tree had borne out as he had hoped, but there was one small problem, a problem to which many of the troubles on Teldrassil may be attributed.$b$bHowever, I will not get into that yet. You must visit the last moonwell, to the northwest in the Oracle Glade. Under the boughs of the Oracle Tree lies the first and most powerful of our wells. Retrieve a phial of its water and return to me.", + ["O"] = "Fill the Amethyst Phial and bring it back to Corithras Moonrage in Dolanaar.", + ["T"] = "Crown of the Earth", + }, + [935] = { + ["D"] = "Without the blessings of Alexstrasza the Life-Binder and Nozdormu the Timeless, Teldrassil\'s growth has not been without flaw. Strange beasts have been reported arising from the very ground of the tree, and crazed furbolgs attack passing travelers.$b$bI can only hope that the solution the Arch Druid is looking for will be found quickly. I will pour all the phials you brought into this vessel, for you to deliver to Darnassus.$b$bBring it to Fandral Staghelm, you will find him in the druid grove.", + ["O"] = "Bring the Filled Vessel to Arch Druid Fandral Staghelm in Darnassus.", + ["T"] = "Crown of the Earth", + }, + [936] = { + ["D"] = "Excuse me $c, but I\'d like just a moment of your time if possible.$B$BThe Cenarion Circle in Thunder Bluff is most interested in seasoned adventurers such as yourself to lend them aid in a vital research project. While I do not know the specifics, I can inform you that none other than Hamuul Runetotem is spearheading this research.$B$BPlease - if you are interested, speak with him directly on the Elder Rise within Thunder Bluff proper.", + ["O"] = "Speak with Arch Druid Hamuul Runetotem in Thunder Bluff.", + ["T"] = "Assisting Arch Druid Runetotem", + }, + [937] = { + ["D"] = "I was dispatched with a small group of Sentinels here to protect the Oracle Tree from the harpies that have made nests all around the glade. Little by little we are trying to push them back.$b$bWhen the Oracle Tree attempted to send a runner to Darnassus with a report, the messenger was attacked and killed by a group of the harpies.$b$bIf you feel up to the task, go to their nests, slay them, and return their belts to me as proof of your deeds.", + ["O"] = "Acquire 6 Bloodfeather Belts and bring them to Sentinel Arynia Cloudsbreak in the Oracle Glade.", + ["T"] = "The Enchanted Glade", + }, + [938] = { + ["D"] = "The sabercat\'s fur is a distinctive gray color, blending into the surrounding forest. As she lays there, you observe that she is badly wounded, with deep lacerations across her back and stomach.$b$bShe raises her head and gazes at you, bright intelligence shining in blue eyes. She seems to wish to follow you.", + ["O"] = "Escort Mist to Sentinel Arynia Cloudsbreak at the moon well near the Oracle Tree.", + ["T"] = "Mist", + }, + [939] = { + ["D"] = "You study the simple wooden flute you picked up after defeating Xavaric.$B$BThe knotted wood feels solid, but it seems as if the spirals and patterns in the surface begin to spin and move as you turn it over in your hands. Suddenly, you feel a sense of dread...$B$BYou shake your head, sure that your mind is playing tricks on you.$B$BIt\'s possible that other satyrs carry clues as to what you have found. Bring your findings to the druid, Eridan Bluewind, that lives in southern Felwood.", + ["O"] = "Bring the Flute of Xavaric and 5 Jadefire Felbind samples to Eridan Bluewind in southern Felwood.", + ["T"] = "Flute of Xavaric", + }, + [940] = { + ["D"] = "The forest whispers of your feats of valor, $n. As I felt the harpies forced from their nests, a greater calm spread across the forest, its creatures once again feeling safe. I have feared sending another messenger to the Arch Druid, but I know that you will see my message safely to him.$b$bDeliver this to him and know that the forest will see you safely along its paths to the forest of stone.", + ["O"] = "Deliver the Oracle Tree\'s report to Arch Druid Fandral Staghelm in Darnassus.", + ["T"] = "Teldrassil", + }, + [941] = { + ["D"] = "I have removed that foul moss from the heart, but it remains tainted...$B$BTry placing the heart in my planter. It is filled with a nutritive soil that may cleanse and heal the heart.", + ["O"] = "Plant the Tainted Heart in Denalan\'s Planter.", + ["T"] = "Planting the Heart", + }, + [942] = { + ["D"] = "This fossil bears a striking resemblance to one I once saw in Ironforge. An archaeologist by the name of Flagongut brought it to our annual Explorers\' League conference. He believed the fossil had a power which could be unlocked somehow.$b$bLast I heard Flagongut had holed up in the Deepwater Tavern in Menethil Harbor, awaiting escort to the Whelgar Excavation Site. Seek him out and show him Remtravel\'s fossil. Perhaps he can reveal the secrets of the past.$b$bThe ship to Menethil departs from Auberdine.", + ["O"] = "Take the mysterious fossil to Archaeologist Flagongut in Menethil Harbor.", + ["T"] = "The Absent Minded Prospector", + }, + [943] = { + ["D"] = "Prospector Whelgar now holds the original fossil at his site in the Wetlands. When I discovered the Stone of Relu, I believed it to be the key to unlocking the mystery of the fossil.$b$bWhile I traveled on the road to meet Whelgar, I was attacked by raptors and the relic was lost. I don\'t know which one of the mottled beasts swallowed the relic but if you can retrieve it, I can unleash the power of these artifacts.$B$BBring me both the Stone of Relu, and the original fossil he holds.", + ["O"] = "Archaeologist Flagongut in Menethil Harbor wants you to bring him the Stone of Relu and Flagongut\'s Fossil.", + ["T"] = "The Absent Minded Prospector", + }, + [944] = { + ["D"] = "It is strange that the naga are here, in Darkshore. But stranger still...are the Twilight\'s Hammer. That cult worships the old, old lords of the earth. Lords defeated long ago.$B$BThe Master\'s Glaive, to the south, is a place where such an old lord fell.$B$BGo there and look for more Twilight\'s Hammer cultists.$B$BTake this phial of scrying. Use it to create a scrying bowl after searching the Master\'s Glaive. Then speak to me through the bowl.", + ["O"] = "Gather information, then use the Phial of Scrying to create a Scrying Bowl. Use the bowl to speak with Onu.", + ["T"] = "The Master\'s Glaive", + }, + [945] = { + ["D"] = "Help!$B$BI was wandering around the Master\'s Glaive, and these dirty cultists surrounded me. Lucky I\'m good at hiding!!$B$BCan you help me out of here? And I need to send word to my sister Therysil that I\'m all right. She\'s in Ashenvale to the south, at the Shrine of Aessina.", + ["O"] = "Help Therylune escape, then tell Therysil at the Shrine of Aessina that her sister is safe.", + ["T"] = "Therylune\'s Escape", + }, + [946] = { + ["D"] = "", + ["O"] = "", + ["T"] = "", + }, + [947] = { + ["D"] = "I am devising a potion that requires rare mushrooms, mushrooms that grow only in a certain cave. The cave lies behind Cliffspring Falls, to the east and slightly north along the mountains.$B$BI would go there myself, but I was advised by the Grove of the Ancients to stay away from that place. Our venerable allies sense that the cave is the hiding place for a new evil in Darkshore.$B$BPlease, $N, gather the mushrooms for me. And while doing so, scout the cave to confirm the Ancients\' fears.", + ["O"] = "Bring 5 Scaber Stalks and 1 Death Cap to Barithras Moonshade in Auberdine.", + ["T"] = "Cave Mushrooms", + }, + [948] = { + ["D"] = "Onu, an Ancient of Lore at the Grove of the Ancients, knows of your journey to Cliffwater Falls and wishes to speak with you. The grove lies to the south, nestled near the mountains.$B$BThe Ancients are patient and wise, $N. But if Onu seeks your counsel concerning what you saw in the falls, then I fear it is urgent.", + ["O"] = "Speak with Onu at the Grove of the Ancients.", + ["T"] = "Onu", + }, + [949] = { + ["D"] = "The Twilight\'s Hammer\'s purpose at the Master\'s Glaive is not known. But it must be dark.$B$BSearch through their camp at the Glaive... Search for some thing that may teach us their intentions.$B$BFor we must learn their intentions before a plan is made.", + ["O"] = "Find a clue in the Twilight\'s Hammer camp at the Master\'s Glaive.", + ["T"] = "The Twilight Camp", + }, + [950] = { + ["D"] = "Peering into the Twilight Tome is maddening. Text begins to swim and dance after only a moment\'s glance, and once beautiful scrollwork twists into grotesque shapes.$B$BTearing away one page of insane scribbles is all that is possible before a swoon overtakes you.", + ["O"] = "Bring Onu the recovered Insane Scribbles.", + ["T"] = "Return to Onu", + }, + [951] = { + ["D"] = "The parchment you found at the Master\'s Glaive is a page from an ancient text...written by elves! It is heavily cursed and tainted by the corruption of the Twilight\'s Hammer, but it seems the cult is using ancient elven magic to bring their old masters back to our world.$B$BTravel to the ruins of Mathystra to the northeast, and search for ancient relics among the grass and broken stones. Through their study, we may divine how the Twilight\'s Hammer intends to exploit the magic of the elves.", + ["O"] = "Bring 6 Mathystra Relics to Onu at the Grove of the Ancients.", + ["T"] = "Mathystra Relics", + }, + [952] = { + ["D"] = "If you had enough time to run messages for the Oracle Tree, then I\'m sure that I can press you into service to deliver a message to the Grove of the Ancients in Darkshore, due south of Auberdine.$b$bYou will most likely have to secure transport on a hippogryph, but I have faith enough in you that you can manage that. Take this to Onu, the Ancient of Lore. He has been awaiting word from me, even as I waited for news from the Oracle Glade.", + ["O"] = "Deliver Fandral\'s message to Onu in the Grove of the Ancients in Darkshore, south of Auberdine.", + ["T"] = "Grove of the Ancients", + }, + [953] = { + ["D"] = "To the east you will find the ruins of Ameth\'Aran. It is now inhabited by the restless spirits of the Highborne that once dwelt within its walls, but once it was a place where the servants of Azshara freely practiced their powerful magics.$b$bI was sent to explore the ruins and came across two large tablets, scrawled with the stories of Ameth\'Aran and its fall. While I read the runes, I was accosted by the spirits, and fled.$b$bPlease, if you can, venture to the ruins and decipher the tablets in my place.", + ["O"] = "Study the tablets which tell of Ameth\'Aran and of its fall, then return to Sentinel Tysha Moonblade in Darkshore.", + ["T"] = "The Fall of Ameth\'Aran", + }, + [954] = { + ["D"] = "The ruins of Bashal\'Aran to the east are overrun with demonic minions. The sprites and satyrs that have taken up residence in the area feed upon the magical energies of the area, their powers growing from continued exposure.$b$bEven with that, I have noticed that there is one shrine they will not approach. On the western side of the ruins, atop a small bluff, a strange blue aura permeates... There must be an explanation to the demons\' reluctance.$b$bI would like you to investigate it.", + ["O"] = "Find the source of the strange blue aura in the ruins of Bashal\'Aran.", + ["T"] = "Bashal\'Aran", + }, + [955] = { + ["D"] = "If I were to relate the story of my life, I have no doubt it would surpass the limits of your patience. Let us say that mine has been a long and painful life, and this spectral form is perhaps the worst torment of all.$b$bI am held here by the means of magic. Though my words may seem disingenuous, I assure you I would be grateful beyond words if you would help me find the means of my imprisonment. A seal binds me, and by examining the earpieces of the sprites and grells, I may find a trace of it.", + ["O"] = "Acquire 8 Grell Earrings for Asterion in Bashal\'Aran.", + ["T"] = "Bashal\'Aran", + }, + [956] = { + ["D"] = "If the grells have come into close contact with the seal that binds my eternal prison, I suspect I know the cause. No doubt the seal has come into the possession of the satyr that lead them.$b$bI feel strongly that this must be true, $n. One of the satyr must surely possess it. If you can obtain it, you would bring me so close to passing the bars of my prison that tears would come to my eyes.", + ["O"] = "Obtain the Ancient Moonstone Seal and bring it to Asterion in Bashal\'Aran.", + ["T"] = "Bashal\'Aran", + }, + [957] = { + ["D"] = "It was the craft of one of the most powerful of the Highborne that created the seal that formed my prison. In Ameth\'Aran, the ruins to the south that are twin to these, persists even today an ancient flame, blue in color. In this flame this seal could be destroyed.$b$bBe wary in the ruins, $n...", + ["O"] = "Destroy the Ancient Moonstone Seal at the ancient flame in Ameth\'Aran, then return to Asterion in Bashal\'Aran.", + ["T"] = "Bashal\'Aran", + }, + [958] = { + ["D"] = "$C. A task I would ask of you.$b$bHave you seen the ruins of Ameth\'Aran? If not, you will find them on the eastern side of the main road, some ways to the south. Once they were the home of many powerful Highborne, now they are a testament to the destruction their dabblings produced.$b$bI have been told by the Sentinels that the spirits of the Highborne persist, and that they wield their ancient magical implements. Those relics must be appropriated, so that we might destroy them.", + ["O"] = "Retrieve 7 Highborne Relics for Thundris Windweaver in Auberdine.", + ["T"] = "Tools of the Highborne", + }, + [959] = { + ["D"] = "Oops!$b$bHad a little mishap, as you can see! The morning cargo shipment from Booty Bay was huge. Huge I say! Never seen so many crates. Well, I was trying to expedite things so I started unloading a bit more than I could handle. That\'s when everything came tumbling down.$b$bBefore I knew what was going on, I saw that menace, Mad Magglish, go running off with a bottle of 99-year-old port. Chased him all the way to Wailing Caverns. No way I was going in there.$b$bMaybe you\'re brave enough to find him?", + ["O"] = "Crane Operator Bigglefuzz in Ratchet wants you to retrieve the bottle of 99-Year-Old Port from Mad Magglish who is hiding in the Wailing Caverns.", + ["T"] = "Trouble at the Docks", + }, + [960] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Onu is meditating", + }, + [961] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Onu is meditating", + }, + [962] = { + ["D"] = "The Royal Apothecary Society, based in the great Undercity of Lordaeron, has sent me here for a very specific service, $n. Perhaps you wish to aid me, and in turn The Dark Lady in our efforts to advance the Forsaken.$b$bRecently I studied a rare specimen of flora named Serpentbloom. I believe in greater quantities this herb has great potential.$b$bUnfortunately Serpentbloom can only be found in the darkest recesses of the Wailing Caverns, a dangerous cave system located in the Barrens.", + ["O"] = "Apothecary Zamah in Thunder Bluff wants you to collect 10 Serpentbloom.", + ["T"] = "Serpentbloom", + }, + [963] = { + ["D"] = "In the aftermath of the battles at the Well of Eternity, I heard that Ameth\'Aran had been destroyed, its people dead, including my love, Anaya.$b$bI would never have thought, thousands of years later, that memories of Anaya would still haunt my dreams. Wandering the woods of Darkshore in a stupor, I found myself in the ruins of Ameth\'Aran... where I saw the haunted spirit of my beloved.$b$bShe must be freed, but I lack the heart to do it. Her spirit must be destroyed.", + ["O"] = "Free the spirit of Anaya Dawnrunner and bring her pendant back to Cerellean Whiteclaw in Auberdine.", + ["T"] = "For Love Eternal", + }, + [964] = { + ["D"] = "The key to Scholomance is called a Skeleton Key. It must be forged from the remains of a skeleton - several actually - and hardened by only the strongest of metals within a suitable mold. A signet of power from a being who naturally can open the portal to Scholomance will make the key ultimately function.$B$BFirst thing\'s first though, $N. We\'ll need skeletal fragments for the key\'s forging. Skeletons inside Andorhal should yield what we need, but the ones outside the walls might work too.", + ["O"] = "Bring 15 Skeletal Fragments to Apothecary Dithers at the Bulwark, Western Plaguelands.", + ["T"] = "Skeletal Fragments", + }, + [965] = { + ["D"] = "Hail, young $r. I am Elissa Starbreeze, and it is my charge to protect Auberdine from harm.$b$bTo this end, I sent Balthule Shadowstrike to observe the strange happenings around the Tower of Althalaxx to the northeast.$b$bIt is past time that he should have returned. I worry that he has encountered some unforeseen danger in the forest. I would be most appreciative if you would find him and see that he is doing well.", + ["O"] = "Find Balthule Shadowstrike near the Tower of Althalaxx in Darkshore.", + ["T"] = "The Tower of Althalaxx", + }, + [966] = { + ["D"] = "A group of warlocks has taken up residence around and inside the tower. I would have returned to Auberdine to report to Elissa earlier, but I was afraid that I might miss something while I was away.$b$bDelgren suspected such a company might be gathering at the tower, but did not know why.$b$bA few scraps of parchment that the warlocks carry have found their way to my hands, but I need more to complete the puzzle. I warn you not to venture into the tower, however, the warlocks there are much more powerful!", + ["O"] = "Collect 4 Worn Parchments for Balthule Shadowstrike near the Tower of Althalaxx.", + ["T"] = "The Tower of Althalaxx", + }, + [967] = { + ["D"] = "My master, Delgren the Purifier, is a paladin who has graciously offered his assistance in defending our forests from the forces of the demons and undead. He has taught me much about the Holy Light and the art of battle.$b$bDelgren must know of the cult\'s operations immediately.$b$bYou will find him far south of here at Maestra\'s Post in Ashenvale Forest. Be swift, I fear the Dark Strand\'s threat grows with each passing hour.", + ["O"] = "Deliver Balthule\'s letter to Delgren the Purifier in Ashenvale Forest.", + ["T"] = "The Tower of Althalaxx", + }, + [968] = { + ["D"] = "Although terribly worn and scratched, the title of this book can still be read upon its cover:$B$BThe Powers Below$B$BInside the book is a listing of unpronounceable names with foreboding titles, methods of worship, and preferred sacrifices...many of which include living, humanoid creatures.$B$BOn the inside cover of the book are the words: \"Bonegrip\'s Runes and Dooms, The Forlorn Cavern, Ironforge. Proprietor: Gerrig Bonegrip.\"$B$BIf Bonegrip sells books like this, perhaps he\'ll buy this one back.", + ["O"] = "Bring the Book: The Powers Below to Gerrig Bonegrip in the Forlorn Cavern, Ironforge.", + ["T"] = "The Powers Below", + }, + [969] = { + ["D"] = "Ah, I can tell just by lookin\' at ya -- you be wantin\' to make a lucky charm. Mau\'ari always knows!$B$BYou\'ll need ta travel to a place called Winterspring ta the north, far from da heat of Durotar.$B$BIn Winterspring, to da south. you\'ll find a canyon, an\' giants made a\' solid ice. The giants sometimes be carryin\' dem, but ya can always gather da shards yerself from da canyon. These shards have a powerful reflective quality.$B$BBring back 10 frostmaul shards, and my lucky charm will be yours.", + ["O"] = "Collect 10 Frostmaul Shards for Witch Doctor Mau\'ari in Orgrimmar.", + ["T"] = "Luck Be With You", + }, + [970] = { + ["D"] = "Balthule\'s letter is dire. This Cult of the Dark Strand is a thorn in my side that must be removed. I have been dealing with some of the Dark Strand scum northeast of here at Ordil\'Aran. One of their number possesses a soul gem that I believe holds the secret to the cult\'s power.$b$bBring it to me, and I will be able to decipher the secrets held within.", + ["O"] = "Collect a Glowing Soul Gem and return it to Delgren the Purifier at Maestra\'s Post.", + ["T"] = "The Tower of Althalaxx", + }, + [971] = { + ["D"] = "As you might know, I collect lore. Old lore. Powerful lore. Lore that opens doorways, and lore that can awaken Those Who Sleep.$B$BThere are rumors of an old piece of lore, the Lorgalis Manuscript, at the bottom of Blackfathom Deeps in Ashenvale. That place is the old dwelling of long-dead elves. Elves who held great knowledge before their city fell to ruin.$B$BSearch Blackfathom Deeps for the manuscript. Do this, and I will not forget it. Not even after ... the end days.", + ["O"] = "Bring the Lorgalis Manuscript to Gerrig Bonegrip in the Forlorn Cavern in Ironforge.", + ["T"] = "Knowledge in the Deeps", + }, + [972] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Water Sapta", + }, + [973] = { + ["D"] = "Ilkrud Magthrull. Yes, I have knowledge of him. He is a powerful orc warlock that makes his residence at the Fire Scar Shrine, a place of great evil in southwestern Ashenvale.$b$bHe had been little more than an annoyance until now, and I had not dealt with him, but it seems that his time has come.", + ["O"] = "Bring Ilkrud Magthrull\'s Tome to Delgren the Purifier at Maestra\'s Post.", + ["T"] = "The Tower of Althalaxx", + }, + [974] = { + ["D"] = "The hot springs here are a source of mystery to me. Where does the heat come from?$B$BLooking at how close the pools are to Fire Plume Ridge, I really wonder if the volcano might have something to do with it. I created a thermometer to take readings of the temperatures at the volcano, and I\'d like to find the hottest part. It gives the measurements in degrees Kraklenheit!$B$BHere, take it, and take readings of the temperatures at the ridge whenever you see a hot spot!", + ["O"] = "Krakle in Un\'Goro Crater wants you to find the hottest area of Fire Plume Ridge.$B$BWhenever you find a hot spot, right click the thermometer to check the temperature. Keep looking until you find the hottest one.", + ["T"] = "Finding the Source", + }, + [975] = { + ["D"] = "Now, before I give ya dis charm, I better explain how ta use it.$B$BIf you carry da charm with ya, you\'ll find dat certain items will drop from creatures ya fight. If you don\'t have da charm with you, you won\'t find them. Understand?$B$BYou\'ll know these special items by the name -- they be called E\'ko. If you find any of these items, just bring dem to ol\' Mau\'ari, and she help ya out.$B$BWait here while I fix your charm.", + ["O"] = "Speak to Witch Doctor Mau\'ari again in a moment to receive the lucky charm.", + ["T"] = "Cache of Mau\'ari", + }, + [976] = { + ["D"] = "Delgren has asked me to deliver messages and supplies to Sentinel Starbreeze in Auberdine, but I am loathe to leave on my own. Dangerous foes operate in the forest, and I do not wish to risk letting these supplies and information fall into the wrong hands.$b$bIf you and others could act as my guards, I could leave now. With your protection, I have no doubt that we can see these goods safely to Auberdine.", + ["O"] = "Speak with Delgren the Purifier at Maestra\'s Post after seeing Feero safely through Ashenvale Forest.", + ["T"] = "Supplies to Auberdine", + }, + [977] = { + ["D"] = "Now that I have what I need to cover the mechanical moving parts, I only need one other thing. Well, actually two. Two horns!$B$BThe ice thistle patriarchs and matriarchs have the largest horns, so of course, those are the ones I want. That type of yeti inhabits a cave to the southeast. There are plenty of them there; you shouldn\'t have any problem finding them.$B$BRemember, I only want the best looking ones -- no beat up or broken horns, please!", + ["O"] = "Collect 2 Pristine Yeti Horns for Umi Rumplesnicker in Everlook.", + ["T"] = "Are We There, Yeti?", + }, + [978] = { + ["D"] = "Wildkin feathers from the Hinterlands appear to contain traces of magical qualities. These powers... they don\'t seem to be wielded by the creatures, it\'s more like they are simply inherent to the species -- part of their very essence.$B$BDuring my studies, I heard that a large population of wildkin inhabit the snowy lands of Winterspring. Could these creatures have the same powers? Please help me find an answer, $N. Go to Winterspring and gather feathers that have dropped to the ground, then return to me.", + ["O"] = "Collect 10 Moontouched Feathers from Winterspring, then return to Erelas Ambersky in Rut\'theran Village.", + ["T"] = "Moontouched Wildkin", + }, + [979] = { + ["D"] = "Yes, yes, these feathers seem to hold the same magical enchantment that I noticed previously... While I am not certain what we might find, I urge you to continue searching for answers, $N.$B$BA colleague of mine recently traveled into Winterspring to observe the wildkin there, in their own habitat. Why don\'t you catch up with her and see what she has found?", + ["O"] = "Find Ranshalla in eastern Winterspring.", + ["T"] = "Find Ranshalla", + }, + [980] = { + ["D"] = "Now, I\'ve heard about other hot springs in a place called Winterspring, far to the north of here. The strange thing is, there are no volcanoes anywhere near them. Interesting, I know.$B$BWell, if you want to find out more, you should head to Winterspring and speak to a friend of mine. Her name is Donova Snowden, and she is currently staying by the hot springs there.$B$BThanks again for helping me with my thermometer! See you later!", + ["O"] = "Travel to Winterspring and speak with Donova Snowden.", + ["T"] = "The New Springs", + }, + [981] = { + ["D"] = "For all the work that you have done, you deserve to be well rewarded. Return to Delgren and tell him that Athrikus Narassin lies stilled by your hand, and the Cult of the Dark Strand is beaten and scattered.", + ["O"] = "Talk to Delgren the Purifier at Maestra\'s Post.", + ["T"] = "The Tower of Althalaxx", + }, + [982] = { + ["D"] = "Off the coast of Darkshore to our north are two wrecked ships - the Silver Dawning and the Mist Veil. Some time ago, both ships ran afoul of the blasted murlocs as they sailed across the vast sea into Auberdine. They now lie at the bottom of the ocean as trophies for those fiends.$B$BBoth captains didn\'t make it out that night, and their logs and other effects are still below in lockboxes. I\'d like for you to recover them for us; it would mean a lot to the crew members still around these parts.", + ["O"] = "Recover the Silver Dawning\'s Lockbox and the Mist Veil\'s Lockbox for Gorbold Steelhand in Auberdine. Both items should be found aboard the wreckage of the ships to the north of the village.", + ["T"] = "Deep Ocean, Vast Sea", + }, + [983] = { + ["D"] = "Hey! Help me with my latest invention, the buzzbox. You can talk to people far away!$B$BMaybe you\'ve already seen them, they\'re boxes with levers on them. The only problem is they need constant maintenance.$B$BEach one suffers from a different problem, but I made a really smart decision. I placed each one near creatures that have the proper parts to fix that particular machine. Right now Buzzbox 827 is on the fritz. It\'s just south of Auberdine, real close. It takes 6 Crawler Legs to fix it. I\'ll pay ya...", + ["O"] = "Collect 6 Crawler Legs and place them in Buzzbox 827.", + ["T"] = "Buzzbox 827", + }, + [984] = { + ["D"] = "Some of my brethren were rescued from a corrupt furbolg in Teldrassil, and I\'ve vowed to stop any more atrocities before more of our kind are injured... or worse.$B$BI have seen a couple hints of corruption in Darkshore already, but I have yet to find any widespread signs. I think it would be logical if the investigation continued with the furbolgs. Would you find one of their camps, and return to me if you see any signs of corruption?", + ["O"] = "Find a corrupt furbolg camp in Darkshore and return to Terenthis in Auberdine.", + ["T"] = "How Big a Threat?", + }, + [985] = { + ["D"] = "You\'ve already proven adept at scouting our enemy, $N. Do you have what it takes to fight them as well?$B$BNot all adventurers prefer straightforward combat to the art of stealth and evasion.$B$BIf you think you\'re up for the task, then the furbolg camp south of Auberdine is currently the biggest threat to our people. You\'ll find some of the Blackwood tribe there. Kill 8 pathfinders and 5 windtalkers, and return to me here.", + ["O"] = "Kill 8 Blackwood Pathfinders and 5 Windtalkers and return to Terenthis in Auberdine.", + ["T"] = "How Big a Threat?", + }, + [986] = { + ["D"] = "$N, your skills have already helped me in my endeavor. Could I impose on you again to help Grimclaw and his master Volcor? In addition, I can craft you a magical cloak that will allow you to walk unhindered by Darkshore\'s creatures while you look for him.$B$BTo create the cloak, I\'ll need five fine moonstalker pelts from a moonstalker sire or matriarch to have enough material. The cats can be found near Wildbend River to the south, or even farther south near Ashenvale.", + ["O"] = "Find 5 Fine Moonstalker Pelts and return them to Terenthis in Auberdine.", + ["T"] = "A Lost Master", + }, + [987] = { + ["D"] = "", + ["O"] = "", + ["T"] = "", + }, + [990] = { + ["D"] = "$N, my mistress, Raene Wolfrunner, awaits you in the city of Astranaar within Ashenvale. With your help, perhaps we can at least ease some of the corruption that\'s taken hold there.$B$BHead south from here and stay close to the road--you\'ll find your way there without issue if you follow those directions.", + ["O"] = "Find Raene Wolfrunner in Ashenvale.", + ["T"] = "Trek to Ashenvale", + }, + [991] = { + ["D"] = "$N, a longtime friend of mine is also aiding the Sentinels here in Ashenvale, but he has yet to return.$B$BHe had leads on finding an item that he thought could slow the furbolg attacks on our people--a rod created by a now-dead, evil wizard.$B$BBefore he left here, he mentioned seeking out a gem for the rod.$B$BHe mentioned the gem possibly being hidden at the shrine in Lake Falathim at the base of the mountain to the west. The gem was being held there before it was overrun.$B$BFind my friend, $N, please.", + ["O"] = "Find Teronis in Ashenvale.", + ["T"] = "Raene\'s Cleansing", + }, + [992] = { + ["D"] = "We\'ve got a position open for a temporary junior-grade surveyor in the Gadgetzan Water Company, if you\'re interested!$B$BWith the nomads seizing all our wells, we need to exploit more free sources of water! There is water to be had in the desert, but only to those smart enough to survey them first.$B$BTake this dowsing widget and tap a sample of the water by the pool near Sandsorrow Watch. It\'s right in sight of the trolls around there. Bring the tapped widget back to me when you\'re done!", + ["O"] = "Use the untapped dowsing widget near the pool of water by Sandsorrow Watch. Once you have collected the sample, return the tapped dowsing widget to Senior Surveyor Fizzledowser in Gadgetzan.", + ["T"] = "Gadgetzan Water Survey", + }, + [993] = { + ["D"] = "The cloak is complete, $N. The time has come to find Volcor. I can only hope we are in time.$B$BThe cloak\'s magic, once invoked, will not last long; perhaps five minutes. It will be up to you to know when to use it: I would suggest waiting until you find Grimclaw.$B$BIf what he has told me is true, you will find his master in a cave south of here. Grimclaw will be alongside the road waiting for you. Signal to him by waving when you see him, and he\'ll point the way towards his master.", + ["O"] = "Find Volcor in Darkshore and give him the Enchanted Moonstalker Cloak.", + ["T"] = "A Lost Master", + }, + [994] = { + ["D"] = "All right, $N, force it is. Let\'s get out of here as soon as you\'re ready. We\'ll fight our way down to the road--Grimclaw should still be there. Once there, we can part ways.$B$BTerenthis will want to hear your version of the story immediately, so head to Auberdine after we make it out of here.", + ["O"] = "Protect Volcor until you reach the road, then speak to Terenthis in Auberdine.", + ["T"] = "Escape Through Force", + }, + [995] = { + ["D"] = "All right then... if you\'re sure, we\'ll sneak out of here. Let us leave when you\'re ready.$B$BRemember, after you\'ve escaped, meet Terenthis back in Auberdine. I\'ll head there on my own since I\'ll probably be moving faster than you.", + ["O"] = "Escape the Furbolg cave and meet Terenthis in Auberdine.", + ["T"] = "Escape Through Stealth", + }, + [996] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Corrupted Windblossom", + }, + [997] = { + ["D"] = "Are you heading to the south? To Lake Al\'Ameth? If so, then I have a task I might ask of you...$B$BMy colleague Denalan has a camp along the eastern end of the lake, where he is studying and experimenting on the plant life of Teldrassil. He requested a package of rare earths from Darnassus and it was late, only recently arriving here in Dolanaar.$B$BCan you take the package to him?", + ["O"] = "Bring the package of Rare Earth to Denalan at Lake Al\'Ameth.", + ["T"] = "Denalan\'s Earth", + }, + [998] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Corrupted Windblossom", + }, + [999] = { + ["D"] = "", + ["O"] = "", + ["T"] = "When Dreams Turn to Nightmares", + }, + [1000] = { + ["D"] = "Attention, heroes!$B$BThe Cenarion Circle seeks able bodied individuals to assist them in exploring the vast new frontiers of Kalimdor! A forbidden wasteland of unimaginable dangers lies far to the west of Tanaris and Gadgetzan, and the Circle needs willing and honorable proxies to act in their stead.$B$BAll interested individuals should seek audience with the Cenarion Circle. Speak with the Arch Druid Hamuul Runetotem on the Elder\'s Rise of Thunder Bluff for more information!", + ["O"] = "Speak with Arch Druid Hamuul Runetotem on the Elder Rise of Thunder Bluff about the Cenarion Circle\'s call to explore the frontiers of Kalimdor.", + ["T"] = "The New Frontier", + }, + [1001] = { + ["D"] = "A tiny voice crackles from deep within the machine.$B$B\"Wizbang here! The next Buzzbox is north of Auberdine, on the beach$B$BSo, that Buzzbox is number 411 and it needs 3 Thresher Eyes for its repairs. They\'re just off the coast! The darkshore threshers... *Hic*... Sorry about that...$B$BJust like last time, when you give the Buzzbox the goods, it\'ll spit out your reward. *Hic*... What? No, I\'m fine!\"", + ["O"] = "Collect 3 Thresher Eyes from Darkshore Threshers in the deep sea near Buzzbox 411.", + ["T"] = "Buzzbox 411", + }, + [1002] = { + ["D"] = "The Buzzbox gives a burst of static as you hear Wizbang begin to speak.$B$B\"The next Buzzbox is number 323. Ish north of Auberdine but... where\'s the ale? Wha? Oh, ish on the road sho ya shouldn\'t have trouble finding it near the bridge.\"$B$BWizbang mumbles something incoherent before you hear a loud gulping sound.$B$B\"Thish one needs Moonstalker Fangs... 6 of \'em.\"", + ["O"] = "Collect 6 Moonstalker Fangs and place them in Buzzbox 323.", + ["T"] = "Buzzbox 323", + }, + [1003] = { + ["D"] = "Over the boiling noises and dripping sounds coming from the machine, you hear Wizbang\'s wavering voice call out.$B$B\"Nexsht onesh far south down the road. Shouldn\'t be hard to find... jusht off to the shide... near a fensh. I think I hid it in shum bushesh... Bushessh. Hehehe... Yesh, Buzzbox 525 takes grizzled scalps from thoshe grizzled thistle bears. Boy thash a mouthful. Grizzshled... Hehehe...\"$B$BYou hear more gulping sounds as the machine cuts out. Then, suddenly, it bursts back to life.$B$B\"4!\"", + ["O"] = "Collect 4 Grizzled Scalps from Grizzled Thistle Bears to the south of Auberdine and place them in Buzzbox 525.", + ["T"] = "Buzzbox 525", + }, + [1004] = { + ["D"] = "Attention, heroes!$B$BThe Cenarion Circle seeks able bodied individuals to assist them in exploring the vast new frontiers of Kalimdor! A forbidden wasteland of unimaginable dangers lies far to the west of Tanaris and Gadgetzan, and the Circle needs willing and honorable proxies to act in their stead.$B$BAll interested individuals should seek audience with the Cenarion Circle. Speak with the Arch Druid Hamuul Runetotem on the Elder\'s Rise of Thunder Bluff for more information!", + ["O"] = "Speak with Arch Druid Hamuul Runetotem on the Elder Rise of Thunder Bluff about the Cenarion Circle\'s call to explore the frontiers of Kalimdor.", + ["T"] = "The New Frontier", + }, + [1005] = { + ["D"] = "", + ["O"] = "", + ["T"] = "What Lurks Beyond", + }, + [1006] = { + ["D"] = "", + ["O"] = "", + ["T"] = "What Lies Beyond", + }, + [1007] = { + ["D"] = "I would charge you with a task, $N.$B$BI was on my small vessel, skimming over the submerged ruins of Zoram, when naga attacked me, surging from the water and tearing at me with their claws! I fled, carrying what supplies I could to make this meager camp.$B$BBut when I reached the shore and ran... my prized possession was lost.$B$BPlease, $N, find the site of my ambush, along the coast to the north, and search for an ancient statuette. It is the reason I have braved the dangers of the Zoram Strand.", + ["O"] = "Bring the Ancient Statuette to Talen, in his camp near the Zoram Strand.", + ["T"] = "The Ancient Statuette", + }, + [1008] = { + ["D"] = "There is evil lurking on our northwestern coast, known as the Zoram Strand.$B$BIt is the resting place of the doomed city of Zoram, destroyed during the Sundering and submerged beneath the seas. It has been lost to the night elves for ages. Lost, and nearly forgotten.$B$BNow, the naga have returned, and for what reason we do not know. But reason matters little; we must slay these fiends and throw them back to the depths!$B$BReturn to me when your mission is complete.", + ["O"] = "Bring 20 Wrathtail Heads to Shindrell Swiftfire in Astranaar.", + ["T"] = "The Zoram Strand", + }, + [1009] = { + ["D"] = "I fear the ancient statuette\'s secrets will remain forever hidden unless you find the key to its ancient lock.$B$BThat key is a ring, the Ring of Zoram. It belonged to the rulers of this city before the waves of the Sundering drowned it.$B$BFor years the ring was lost, but the naga have recently found it.$B$BTheir leader, Ruuzel, dwells on an isle on the northern edge of Zoram. Please, $N, retrieve the ring for me!", + ["O"] = "Bring the Ring of Zoram to Talen near the Zoram Strand.", + ["T"] = "Ruuzel", + }, + [1010] = { + ["D"] = "There is a plant that once grew in the old ruins of Bathran\'s Haunt to the north. The plant was called Bathran\'s Hair and was known to cure ailments of the spirit.$B$BThere is a sick child in the village, and I believe it is more than just a physical illness. Will you go to Bathran\'s Haunt and search it for Bathran\'s Hair? I may need it to properly treat the child.$B$BBathran\'s Haunt lies north of Maestra\'s Post and just south of the border to Darkshore.", + ["O"] = "Bring 5 Bathran\'s Hair to Orendil Broadleaf in Ashenvale.", + ["T"] = "Bathran\'s Hair", + }, + [1011] = { + ["D"] = "The Forsaken, the undead arm of the Horde, have crept into Ashenvale, lurking at our ruins and our barrows. We believe their goal is to spread disease amongst the lands of the night elves. We must confirm this!$B$BThe Forsaken have a camp south of here, near the Dor\'Danil Barrow Den, where they create poisons and diseases and place them in bottles. Fight your way into that camp and steal a bottle of disease. Return with such a bottle. I will test it and find its purpose.", + ["O"] = "Bring a Bottle of Disease to Kayneth Stillwind in Forest Song.", + ["T"] = "Forsaken Diseases", + }, + [1012] = { + ["D"] = "When I struggled with the Forsaken\'s poisons, I had a vision. I had a vision of the druids in the Dor\'danil Barrow Den, poisoned... murdered by the undead! They are now errant ghosts, severed from their bodies and driven mad.$B$BSo that the druids\' spirits might some day find peace, you must enter the Dor\'danil Barrow Den and destroy its once great leaders: Taneel Darkwood, Uthil Mooncall and Mavoris Cloudsbreak.$B$BDo this, then return to me.", + ["O"] = "Kill the druids: Taneel Darkwood, Uthil Mooncall, Mavoris Cloudsbreak; then return to Kayneth Stillwind in Forest Song.", + ["T"] = "Insane Druids", + }, + [1013] = { + ["D"] = "$N, Shadowfang Keep holds a book, the Book of Ur, which would be much prized in my collection. Ur was a great mage of Dalaran before the coming of the Scourge, his studies in other worlds are of much value to ... certain parties among the Forsaken.$B$BEnter Shadowfang Keep and find the book. Bring it to me, and I will report your service to our Dark Lady...", + ["O"] = "Bring the Book of Ur to Keeper Bel\'dugur at the Apothecarium in the Undercity.", + ["T"] = "The Book of Ur", + }, + [1014] = { + ["D"] = "Arugal still resides in Shadowfang Keep. We cannot claim Silverpine as a strategic stronghold for the Dark Lady until Arugal is slain.$b$bI shall see to it that his magic is eradicated, $n. But I leave it in your hands to see that Arugal meets the death he so deserves.$b$bTravel to Shadowfang Keep and put an end to Arugal\'s foul spells once and for all. Bring to me the vile wizard\'s head!", + ["O"] = "Kill Arugal and bring his head to Dalar Dawnweaver at the Sepulcher.", + ["T"] = "Arugal Must Die", + }, + [1015] = { + ["D"] = "Attention, heroes!$B$BThe Cenarion Circle seeks able bodied individuals to assist them in exploring the vast new frontiers of Kalimdor! A forbidden wasteland of unimaginable dangers lies far to the west of Tanaris and Gadgetzan, and the Circle needs willing and honorable proxies to act in their stead.$B$BAll interested individuals should seek audience with the Cenarion Circle. Speak with the Arch Druid in Darnassus, Fandral Staghelm, for more information!", + ["O"] = "Speak with Arch Druid Fandral Staghelm at the Cenarion Enclave of Darnassus about the Cenarion Circle\'s call to explore the frontiers of Kalimdor.", + ["T"] = "The New Frontier", + }, + [1016] = { + ["D"] = "Take this divining scroll--it can determine the creator of these elementals. But you will need something from them to use as a reagent to focus scroll\'s magic--their bracers should do nicely.$B$BA few intact bracers from the creatures should be enough. The other bracers will be useless for our purposes, but they may be worth something to a merchant if you wish to sell them. Once you have the intact bracers attempt to use the scroll. Return to me with the results and we shall proceed from there.", + ["O"] = "Collect 5 Intact Elemental Bracers and use the Divining Scroll on them. Afterwards, bring the Divined Scroll to Sentinel Velene Starstrike at the Silverwind Refuge.", + ["T"] = "Elemental Bracers", + }, + [1017] = { + ["D"] = "There\'s only one undead mage in the Barrens capable of defiling this many water elementals. He\'s also the only one foolish enough to try. Sarilus Foulborne is probably sitting at the top of Dreadmist Peak, laughing at me.$B$B$n, you must go into enemy territory and destroy this miscreant. I have had enough of his idiocy and we must show him what happens to those who annoy the Sentinels.$B$BDestroy him and bring me his head. Be wary though, the Horde may be watching for you.", + ["O"] = "Slay Sarilus Foulborne and bring his head to Sentinel Velene Starstrike in Silverwind Refuge.", + ["T"] = "Mage Summoner", + }, + [1018] = { + ["D"] = "Attention, heroes!$B$BThe Cenarion Circle seeks able bodied individuals to assist them in exploring the vast new frontiers of Kalimdor! A forbidden wasteland of unimaginable dangers lies far to the west of Tanaris and Gadgetzan, and the Circle needs willing and honorable proxies to act in their stead.$B$BAll interested individuals should seek audience with the Cenarion Circle. Speak with the Arch Druid Hamuul Runetotem on the Elder\'s Rise of Thunder Bluff for more information!", + ["O"] = "Speak with Arch Druid Hamuul Runetotem on the Elder Rise of Thunder Bluff about the Cenarion Circle\'s call to explore the frontiers of Kalimdor.", + ["T"] = "The New Frontier", + }, + [1019] = { + ["D"] = "Attention, heroes!$B$BThe Cenarion Circle seeks able bodied individuals to assist them in exploring the vast new frontiers of Kalimdor! A forbidden wasteland of unimaginable dangers lies far to the west of Tanaris and Gadgetzan, and the Circle needs willing and honorable proxies to act in their stead.$B$BAll interested individuals should seek audience with the Cenarion Circle. Speak with the Arch Druid in Darnassus, Fandral Staghelm, for more information!", + ["O"] = "Speak with Arch Druid Fandral Staghelm at the Cenarion Enclave of Darnassus about the Cenarion Circle\'s call to explore the frontiers of Kalimdor.", + ["T"] = "The New Frontier", + }, + [1020] = { + ["D"] = "$N, I have created a cure that I believe will help the afflicted child. Take it to Astranaar and give it to the child\'s parent, Pelturas Whitemoon.$B$BTo reach Astranaar, follow the road south, then east.", + ["O"] = "Bring Orendil\'s Cure to Pelturas Whitemoon in Astranaar.", + ["T"] = "Orendil\'s Cure", + }, + [1021] = { + ["D"] = "Listen, I don\'t know who you are, but I need your help. My sisters went to take back the Branch of Cenarius from the satyr. They said they\'d be back soon, but it\'s been two whole days!$B$B$n, you have to find them! They were looking for the ruins of a night elf temple in Xavian to the northeast. I don\'t know what to think. Look for Anilia, she was leading them on the search.", + ["O"] = "Find Anilia in Xavian.", + ["T"] = "Vile Satyr! Dryads in Danger!", + }, + [1022] = { + ["D"] = "Though we have put many resources and much effort into driving the remaining demons from the Felwood to the north, our successes have been few. We have been able to keep much of the demonic presence from Ashenvale.$b$bTo the north, near the Felwood border, the ruined shrine of Mel\'Thandris has been overtaken by mysterious wolf-men. Their chilling calls have led the area to be known as the Howling Vale. The Tome of Mel\'Thandris kept at the shrine may shed some light on why these wolf-men have come.", + ["O"] = "Go to the Howling Vale and study the Tome of Mel\'Thandris, then return to Sentinel Melyria Frostshadow at the Shrine of Aessina.", + ["T"] = "The Howling Vale", + }, + [1023] = { + ["D"] = "As you rummage through Teronis\' belongings, you find a journal that is still in good condition.$B$BYou take the journal and leave Teronis\' corpse as is.$B$BThe only thing left to do is find the gem Teronis was seeking. Raene mentioned it being in the area. Perhaps the murlocs have it...", + ["O"] = "Find the Glowing Gem and return to Raene Wolfrunner in Astranaar with Teronis\' Journal.", + ["T"] = "Raene\'s Cleansing", + }, + [1024] = { + ["D"] = "You\'ll have to do the research yourself, but from what notes Teronis has made, it sounds like your next course of action is to find the other pieces of the rod Dartol created. I would start by heading to the moonwell east of Iris Lake. When you\'re ready, follow the road and turn north when you reach a small sitting area on your left.$B$BA dryad there named Shael\'dryn is better suited to guide you. Seek her out.$B$BKeep the gem with you--Shael\'dryn will need it if she\'s to help you recreate the rod.", + ["O"] = "Find Shael\'dryn at the moonwell to the northeast.", + ["T"] = "Raene\'s Cleansing", + }, + [1025] = { + ["D"] = "Before you travel to the moonwell I have another task that will aid the people of Ashenvale if you would like to test your skills.$B$BAlong the road heading east before the Falfarren River, furbolgs have been attacking travelers. Their tortured minds feeding upon fear, and their appetites satiated by the blood of innocents.$B$BAid the Sentinels in protecting the lands by showing those monsters the same mercy they have shown our kind.$B$BI believe their camps are south of the road... be careful.", + ["O"] = "Kill 1 Den Watcher, 2 Ursas, 10 Totemics, and 12 Warriors of the Foulweald tribe, and then return to Raene Wolfrunner in Astranaar.", + ["T"] = "An Aggressive Defense", + }, + [1026] = { + ["D"] = "I wish your tidings were better.$B$BRaene is correct, I know about Dartol\'s creation and the treants in the area--at least I did once. They\'ve become corrupted now, their nature twisted.$B$BIf your goal is to find the next piece of the rod, then you\'ll have to find the key to open the chest it\'s in.$B$BThe wooden key is on one of the treants northeast of here, near Felwood. Once you have it, look for a small glade west of the road near the Felwood border... the chest should be hidden around there.", + ["O"] = "Find the Wooden Key and a piece of Dartol\'s Rod before returning to Shael\'dryn at the moonwell.", + ["T"] = "Raene\'s Cleansing", + }, + [1027] = { + ["D"] = "The final piece of the rod was given to the druids of Dor\'danil for safekeeping. I have no idea where they hid it. I\'m sorry I can\'t help you more than that.$B$BAll I can tell you is to follow the road that leads towards the Barrens. The druids took shelter to the east of that road, but they won\'t be of much help to you: they were killed recently... it\'s something I don\'t like to think about much.$B$BWhen you find the final piece, bring it to me and I will help you reconstruct the rod.", + ["O"] = "Find the final piece of Dartol\'s Rod and return to Shael\'dryn at the moonwell.", + ["T"] = "Raene\'s Cleansing", + }, + [1028] = { + ["D"] = "Here is the completed rod, $N. Reconstructing it was simple... it\'s finding the shrine that has the power to recharge it that will be the hard part.$B$BWith some focus and effort it shouldn\'t be too hard for someone like you, who\'s already accomplished so much.$B$BHead southeast of here--there are very few paths, so be careful--and keep your eyes to the north. The shrine is hidden within the mountains that surround this glade.$B$BOnce there, place the rod within the shrine... the rest is magic. Hehe.", + ["O"] = "Find the hidden shrine and re-enchant Dartol\'s Rod.", + ["T"] = "Raene\'s Cleansing", + }, + [1029] = { + ["D"] = "I suggest you find Raene and let her know the rod is finished. I\'m sure she\'ll know what your next course should be.$B$BGood luck, $N.", + ["O"] = "Return to Raene Wolfrunner in Astranaar.", + ["T"] = "Raene\'s Cleansing", + }, + [1030] = { + ["D"] = "Alas, I\'m not completely certain what he had in mind next.$B$BIf what he said was true about the rod\'s power, then it will allow you to take on another form altogether. Which form, I do not know.$B$BPerhaps he meant to use its powers to get closer to the tainted furbolgs, but even the uncorrupted creatures would slaughter him were he not careful. Transformed by the rod, Dartol would have to speak to a furbolg who was safe from the effects of Fel Moss.$B$BI would start your search southeast of Mystral Lake.", + ["O"] = "Find an uncorrupted furbolg, and using the power of Dartol\'s Rod of Transformation, speak to him.", + ["T"] = "Raene\'s Cleansing", + }, + [1031] = { + ["D"] = "Anilia puts her hands on your shoulders and draws you close. Gasping, she points towards the arch to the north, before her eyes close and her last wheezing breath leaves her body. \"He has taken it... Geltharis...\" You know in your heart that Anilia\'s dying wish is to see the Branch of Cenarius back in dryad hands.", + ["O"] = "Kill Geltharis and return the Branch of Cenarius to Illiyana at the Shrine of Aessina.", + ["T"] = "The Branch of Cenarius", + }, + [1032] = { + ["D"] = "I can\'t believe that Anilia is gone... We used to play together in the forests all the time. I almost feel... sad.$B$BI know something that might make me feel better. Please, slay the satyrs that took Anilia from me! Bring me their horns as proof of your actions and you will forever have my gratitude.", + ["O"] = "Bring 16 Satyr Horns to Illiyana in the Shrine of Aessina.", + ["T"] = "Satyr Slaying!", + }, + [1033] = { + ["D"] = "I had hoped Orendil\'s cure would save Relara, but I fear it only slowed the disease running through my child. We must find more powerful medicine! Thankfully, Orendil spoke to me of further remedies to try should his first one fail.$B$BElune\'s Tear is a type of stone that rests in only one place: the isle on Iris Lake, east of Astranaar. Orendil said the stone will wash away corruption... please, $N, bring me Elune\'s Tear and pray it will end my child\'s sickness!", + ["O"] = "Bring Elune\'s Tear to Pelturas in Astranaar.", + ["T"] = "Elune\'s Tear", + }, + [1034] = { + ["D"] = "Elune\'s Tear washed clear some of my daughter\'s sickness. Her nightmares are lessened and I thank the goddess for her blessing. But ... fever still rages within her.$B$BOrendil told me of a frosted dust found among the Ruins of Stardust. Perhaps it will abate Relara\'s fever. Gather some of the dust, then please return to me.$B$BThe Ruins of Stardust lie to the south, $N. May Elune speed your journey.", + ["O"] = "Bring 5 Handfuls of Stardust to Pelturas in Astranaar.", + ["T"] = "The Ruins of Stardust", + }, + [1035] = { + ["D"] = "Relara\'s fever has passed, but she is still very weak. I do not believe time alone will give her back the strength she has lost. I believe it will take the power of a moonstone.$B$BWe used to gather moonstones at Fallen Sky Lake to the southeast... until the Shadethickets came.$B$BTheir leader, a Shadethicket Oracle, gathered up all the fallen moonstones and hoards them. Now, you must retrieve a moonstone from the Oracle.$B$BAnd to do that, I fear that you must slay him.", + ["O"] = "Retrieve a Fallen Moonstone from the Shadethicket Oracle, then bring it to Pelturas in Astranaar.", + ["T"] = "Fallen Sky Lake", + }, + [1036] = { + ["D"] = "$N... yeah, I\'ve heard of you. I\'ve heard that you\'re no friend of Booty Bay - just like us Bloodsail Buccaneers. Fleet Master Firallon is looking for hale and hearty $g men : women; just like you for a special mission.$B$BIf you\'re interested, head on out to the Crimson Veil and speak with him below decks. She\'s anchored off the Wild Coast east of here, next to the Riptide and the Damsel\'s Luck.", + ["O"] = "Speak with Fleet Master Firallon aboard the Crimson Vale off the coast of Stranglethorn Vale.", + ["T"] = "Avast Ye, Scallywag", + }, + [1037] = { + ["D"] = "Velinde Starsong was my predecessor here in Ashenvale Forest. At first it seemed she had the situation in Felwood under control, but little by little her efforts faltered. One day, she simply disappeared.$b$bI was sent here to continue her work. I\'m afraid I know nothing of the priestess, however. Perhaps Thyn\'tel Bladeweaver, one of the commanders of the Sentinels, knows further details of her disappearance that I was not a party to.$b$bSurely she will understand the import of such information.", + ["O"] = "Speak with Thyn\'tel Bladeweaver at the Warrior\'s Terrace in Darnassus.", + ["T"] = "Velinde Starsong", + }, + [1038] = { + ["D"] = "The Tome of Mel\'Thandris showed you this? I suppose there would be little harm in allowing you to examine her belongings. This key will allow you to open the chest where we stored her things in the Sentinels\' bunkhouse. She kept a journal of her duties, if there is anything to be learned, it will be from that.$b$bI should tell you, the Sentinels believe that she had her own reasons for leaving, and expect that she could return at any time. The priestess has done much in the past to earn our trust.", + ["O"] = "Search through Velinde\'s chest for her journal, then return it along with the key to Thyn\'tel Bladeweaver in Darnassus.", + ["T"] = "Velinde\'s Effects", + }, + [1039] = { + ["D"] = "Ratchet is the only port in the Barrens. Most likely Velinde found a trading vessel in Ratchet to take her to Blackwater Cove in Azeroth. We\'ve had limited dealings with the goblins that run the port, but the master of the dock should have information about the comings and goings of ship passengers.$b$bFollow the road southeast through Ashenvale and you will find yourself in the Barrens. Watch your step, $n, warriors of the Horde patrol the land. You will be safe at the port, though.", + ["O"] = "Speak with Wharfmaster Dizzywig in Ratchet.", + ["T"] = "The Barrens Port", + }, + [1040] = { + ["D"] = "Ah yes, finally found it. Should have told me she passed through here that long ago. Let\'s see.$b$bVelinde. Booked passage to Booty Bay on the Black Osprey. I don\'t have anything here saying otherwise, so I\'d assume it arrived in port safely.$b$bNot much more help I can be to you, but she asked about overland travel over on that side of the world, and I mentioned Ruzzgot, a caravan driver based out of Booty Bay. Might be that this Velinde traveled with him.$b$bMove along, now. I haven\'t all day for you.", + ["O"] = "Take a boat to Booty Bay and speak with Caravaneer Ruzzgot.", + ["T"] = "Passage to Booty Bay", + }, + [1041] = { + ["D"] = "Turns out I was wrong about you, and that isn\'t something that happens everyday.$b$bIt just so happens that I remember this Velinde you\'re looking for. Isn\'t every day that a night elf priestess that wants to travel with a dirty old--but great for your shipping needs!--caravan like my own.$b$bWe split up on the way north, she was headed for Darkshire. The clerk there keeps all sorts of records. Might know something useful.$b$bBe careful in the jungle, it is a deadly place even at the best of times.", + ["O"] = "Speak with Clerk Daltry in Darkshire.", + ["T"] = "The Caravan Road", + }, + [1042] = { + ["D"] = "No, I don\'t have any records of a Velinde Starsong staying in Darkshire... though, if you don\'t mind me saying, I can hardly imagine a night elf priestess taking a room in the inn, if you get my meaning?$b$bThese wolf-men you mentioned though, that\'s something I\'ve heard about. Just the other day, Calor came into town with a string of their heads. He works with the Carevin family. Hunters of demons, undead, and other monstrosities. Speak with Jonathan, he\'s the head of the household.", + ["O"] = "Speak with Jonathan Carevin in Darkshire.", + ["T"] = "The Carevin Family", + }, + [1043] = { + ["D"] = "Your story rings true... I do not entirely understand your motives, but if your business here in Duskwood involves ridding the forest of worgen in any number, then I can forgo understanding for results.$b$bThere is a mine to the south that has been overrun with worgen... They appeared out of nowhere, but from what we know, that is where they first were found.$b$bGo about your business, but I would ask that if you find anything of import, you share it with me. We will accept any aid in our war against evil.", + ["O"] = "Look for signs of the Scythe of Elune then return to Jonathan Carevin in Darkshire.", + ["T"] = "The Scythe of Elune", + }, + [1044] = { + ["D"] = "We shall rein in the worgen problem, have no worry of that. This evil that your friend introduced to our woods will be contained, and I bear her no ill will for her actions. Strange events are afoot in these times, $n, and the darkness knows no respite.$b$bI will keep you no longer. I suspect that there are others that should hear of what you have found in the mines of Duskwood.", + ["O"] = "Return to Thyn\'tel Bladeweaver in Darnassus.", + ["T"] = "Answered Questions", + }, + [1045] = { + ["D"] = "The night elves are as old as time, but their arrogance destroys their very world. And now it destroys our lives too. But that can no longer be controlled...$B$BI blame the elves for much, but we are still responsible for our actions. Even beyond the corruption, we are capable of great evil.$B$BRan Bloodtooth is one such evil. Power hungry, lusting... the corruption has only made him stronger. My hatred for the elves burns, but I do not wish ill upon their children, so we must police our own.", + ["O"] = "Kill Ran Bloodtooth and 4 Bloodtooth Guards and return to Krolg near Lake Mystral.", + ["T"] = "Raene\'s Cleansing", + }, + [1046] = { + ["D"] = "Return to your own tribe and let them know of your victory here.$B$BShow them your trophy, and bask in the glory...", + ["O"] = "Bring Ran Bloodtooth\'s Skull and Dartol\'s Rod of Transformation to Raene Wolfrunner in Astranaar.", + ["T"] = "Raene\'s Cleansing", + }, + [1047] = { + ["D"] = "Attention, heroes!$B$BThe Cenarion Circle seeks able bodied individuals to assist them in exploring the vast new frontiers of Kalimdor! A forbidden wasteland of unimaginable dangers lies far to the west of Tanaris and Gadgetzan, and the Circle needs willing and honorable proxies to act in their stead.$B$BAll interested individuals should seek audience with the Cenarion Circle. Speak with the Arch Druid in Darnassus, Fandral Staghelm, for more information!", + ["O"] = "Speak with Arch Druid Fandral Staghelm at the Cenarion Enclave of Darnassus about the Cenarion Circle\'s call to explore the frontiers of Kalimdor.", + ["T"] = "The New Frontier", + }, + [1048] = { + ["D"] = "Whilst the Dark Lady tends to the pressing issue of the Lich King\'s advance to the north, I am seeing to it that matters closer to home are being taken care of accordingly.$b$bNo doubt, the human pests who call themselves the Scarlet Crusade are proving to be the sharpest thorn in our side domestically. Tirisfal Glades is literally crawling with the little red ants.$b$bTravel to the Monastery, $c, and lay waste to High Inquisitor Whitemane and her top lieutenants.", + ["O"] = "Kill High Inquisitor Whitemane, Scarlet Commander Mograine, Herod, the Scarlet Champion and Houndmaster Loksey and then report back to Varimathras in the Undercity.", + ["T"] = "Into The Scarlet Monastery", + }, + [1049] = { + ["D"] = "The Earthen Ring had pure intentions towards our plagued brethren. But who is to know the motivations of those whispering in the ears of the Elder Council?$b$bThe Forsaken whom we have allied with have a history wrought with deceit. Too hasty was our pact. Perhaps Cairne would have been wise to heed the warnings from Orgrimmar.$b$bDeep within the Scarlet Monastery lies the Compendium of the Fallen, guarded by crazed human zealots. Their method is forged from insanity but their research might prove useful.", + ["O"] = "Retrieve the Compendium of the Fallen from the Monastery in Tirisfal Glades and return to Sage Truthseeker in Thunder Bluff.", + ["T"] = "Compendium of the Fallen", + }, + [1050] = { + ["D"] = "The future is inevitable! We hurl ourselves towards it like falling raindrops to the Great Sea.$b$bBut perhaps, by studying the past, we can know what to expect and be better prepared for the unknown.$b$bBefore dire troubles fell upon Lordaeron, there was a bastion of knowledge tucked away in the Tirisfal Glades. It is rumored that a book called Mythology of the Titans was housed in the library of the old Monastery.$b$bBring it to me and perhaps together we can unlock the secrets of the past!", + ["O"] = "Retrieve Mythology of the Titans from the Monastery and bring it to Librarian Mae Paledust in Ironforge.", + ["T"] = "Mythology of the Titans", + }, + [1051] = { + ["D"] = "Even though my will is free, I can serve the Dark Lady no more. I feel my time on Azeroth has come to an end. My life force is shattered.$b$bInterrogator Vishas did this to me! Tortured me for weeks! Took my wedding ring and gave it to his wife. The bastard!$b$bRevenge... I want revenge!$b$bThe pompous fool bragged about his precious wife, Nancy, who lived along Lake Lordamere. Track the wench down, slay her and return my wedding ring to my wife, Monika in Tarren Mill.$b$bHeed my last wishes....", + ["O"] = "Return Vorrel Sengutz\'s wedding ring to Monika Sengutz in Tarren Mill.", + ["T"] = "Vorrel\'s Revenge", + }, + [1052] = { + ["D"] = "We of the Scarlet Crusade lay claim to strongholds from Hearthglen to Tirisfal Glades. We are quite proud of our bastions of cleansing throughout Lordaeron.$b$bYou have proven yourself against the undead in Desolace. But the true threat of the plague lies in Lordaeron.$b$bTravel to the town of Southshore, in the Eastern Kingdoms. Seek out a crusader named Raleigh the Devout. Give him this letter of commendation bearing my seal and he will escort you to a place of honor in our Scarlet Monastery.", + ["O"] = "Take Brother Anton\'s Letter of Commendation to Raleigh the Devout in Southshore.", + ["T"] = "Down the Scarlet Path", + }, + [1053] = { + ["D"] = "I once served the Scarlet Crusade with honor, loyalty and pride. I believed their cause to be a noble one: to rid Azeroth of the undead.$b$bBut as I spent time at the Monastery in Tirisfal Glades I realized that their grasp on reality was slipping. They now think everyone is plagued who doesn\'t wear the tabard of the Crusade. Innocent men and women were tortured because they were supposedly plagued. $b$bThe Scarlet Crusade must be crushed in the name of the Light. You, $n, must destroy the deranged regime.", + ["O"] = "Kill High Inquisitor Whitemane, Scarlet Commander Mograine, Herod, the Scarlet Champion and Houndmaster Loksey and then report back to Raleigh the Devout in Southshore.", + ["T"] = "In the Name of the Light", + }, + [1054] = { + ["D"] = "Directly to the north of Astranaar are the Thistlefur furbolg. My scouts report that their numbers have grown greatly over the past few months. If they grow too great, they may find the courage to attack Astranaar directly.$B$BKill as many of their kind as you can, but bring me their chieftain\'s skull as proof that their efforts have been stifled... for now.$B$BI shall remain here in Astranaar and await word from you. Elune be with you.", + ["O"] = "Bring Dal Bloodclaw\'s Skull to Raene Wolfrunner in Astranaar.", + ["T"] = "Culling the Threat", + }, + [1055] = { + ["D"] = "The rod, now complete, lies in your hands. Shael\'dryn will want to hear of your success.", + ["O"] = "Return to Shael\'dryn at the moonwell.", + ["T"] = "Raene\'s Cleansing", + }, + [1056] = { + ["D"] = "The forest spirits tell me you are brave and willing to travel.$b$bTo the south, not far from Mystral Lake, there lies a tunnel named The Talondeep Path. Through this tunnel you will come to an area known as Windshear Crag in the Stonetalon Mountains. Once there, journey to the southwest past Cragpool Lake and then north, up the steep slope until you reach Stonetalon Peak.$b$bThere awaits Keeper Albagorm. Heed his bidding, $r.$b$bThe journey will be perilous.", + ["O"] = "Travel to Keeper Albagorm on Stonetalon Peak.", + ["T"] = "Journey to Stonetalon Peak", + }, + [1057] = { + ["D"] = "As a protector of the forest spirits you can undoubtedly guess why I am alarmed.$b$bYou have traveled through these mountains to reach this peak. Surely you have seen the travesty which has befallen the land. Greed has led to the destruction of these sacred hills.$b$bThe Charred Vale to the south was set afire by the greedy mechanized army of industrialists. Worse yet, the Bloodfuries that have encroached on the land refuse us passage in to begin regrowth.$b$bDrive the wretched harpies out, $n!", + ["O"] = "Keeper Albagorm on Stonetalon Peak wants you to slay 7 Bloodfury Harpies, 7 Bloodfury Ambushers, 7 Bloodfury Slayers and 7 Bloodfury Roguefeathers.", + ["T"] = "Reclaiming the Charred Vale", + }, + [1058] = { + ["D"] = "So excited I am!$b$bThree little cages for three little elves! But what shall we do with our lovely tree-hugging friends? Why, let\'s give them a taste of... what do they call it... forest magic!$b$bI\'ll need a good mess of Stonetalon sap. From those horrid felines, bring me some twilight whiskers. This calls for plenty of courser eyes, of course -- can never have enough eyes. Oh, and lest we forget, a precious scale from a fey dragon.$b$bHurry to Stonetalon Peak, $n, so I can brew some forest magic!", + ["O"] = "Witch Doctor Jin\'Zil at Malaka\'jin wants 5 portions of Stonetalon Sap, 5 Twilight Whiskers, 30 Courser Eyes and a Fey Dragon Scale.", + ["T"] = "Jin\'Zil\'s Forest Magic", + }, + [1059] = { + ["D"] = "The Bloodfuries have been subdued. But they will regroup soon enough if action is not taken.$b$bFar south of the Barrens lies a land known as Thousand Needles. If you travel west in Thousand Needles until you reach the lush forest\'s edge of Feralas, you will find a druid named Falfindel Waywarder.$b$bThis great and wise druid is capable of calling forth great forest spirits which can aid in the reclamation of the Charred Vale.$b$bSend word of our need! Seek him out at once!", + ["O"] = "Travel to Falfindel Waywarder on the border of Thousand Needles and Feralas.", + ["T"] = "Reclaiming the Charred Vale", + }, + [1060] = { + ["D"] = "You\'ve done so well for me, $n. You\'re a regular lucky rabbit\'s foot and there\'s something I want you to see.$B$BThe harpies are not from around the Barrens. They come from a place called Stonetalon, far to the northwest of here. Though it is probably a dangerous place for you, I need this letter delivered to an old friend of mine who lives there, a witch doctor by the name of Jin\'Zil.$B$BHe\'ll be happy to know that Serena Bloodfeather is dead, and I think you\'ll find Stonetalon an interesting place.", + ["O"] = "Deliver Darsok\'s letter to Jin\'Zil within his cave in Malaka\'Jin, in Stonetalon.", + ["T"] = "Letter to Jin\'Zil", + }, + [1061] = { + ["D"] = "The spirits of the Stonetalon Mountains are angered, for goblins and their servants are plundering and burning the land. So the land has cried out, and those who listen for such things... have heard.$B$BSeereth Stonebreak, a promising shaman of the Horde, was sent to Stonetalon. She reports massive deforestation at the hands of the goblins, and requests aid.$B$BMeet Seereth in Stonetalon. To reach her, follow the road west of the Barrens\' Crossroads. She is camped near the Greatwood Vale.", + ["O"] = "Speak with Seereth Stonebreak in the Stonetalon Mountains.", + ["T"] = "The Spirits of Stonetalon", + }, + [1062] = { + ["D"] = "The goblin-run Venture Company moved into the Stonetalon Mountains, chopping down trees and burning huge stretches of forest. The spirits of this place are nearly blind with pain and rage. We must stop the Venture Company!$B$BHead northwest, beyond the Greatwood Vale and into the Windshear Crag. You will find the goblins and their servants at work -- show them the Horde will not allow the exploitation of Stonetalon. Show them in the language they best understand...$B$BViolence.", + ["O"] = "Kill 15 Venture Co. Loggers, then return to Seereth Stonebreak on the border of Stonetalon and the Barrens.", + ["T"] = "Goblin Invaders", + }, + [1063] = { + ["D"] = "To truly tend the spirits of Stonetalon we must consult the tauren elders.$B$BI do not know many of their leaders\' names, but I do know of one: Magatha. I have heard that she is very old, and she knows much. If anyone can marshal spiritual aid from the tauren, it is she.$B$BMagatha resides in the tauren capital of Thunder Bluff, on Elder Rise -- the city\'s northeastern bluff. Speak with Magatha, and tell her of the peril of Stonetalon Mountains.", + ["O"] = "Speak with Magatha in Thunder Bluff.", + ["T"] = "The Elder Crone", + }, + [1064] = { + ["D"] = "The tauren have a bond with the land, and it pains me to hear of Stonetalon\'s plight. But I fear that to heal the land, we must first remove the disease upon it.$B$BIs it not fortunate, then, that the Forsaken are allied with us? They know much of disease. I believe they can aid us, and by doing so they will strengthen the trust between our people.$B$BSpeak with Apothecary Zamah. She is a scholar and an emissary of the Forsaken. You will find her in the Pools of Vision below the Spirit Rise.", + ["O"] = "Speak with Apothecary Zamah in the Pools of Vision in Thunder Bluff.", + ["T"] = "Forsaken Aid", + }, + [1065] = { + ["D"] = "To rid Stonetalon of the Venture Company, we must take extreme measures. Extreme, but without bloodshed.$B$BA colleague of mine may have just the tool we need. His name is Lydon; he dwells in the town of Tarren Mill in the Hillsbrad Foothills, in the distant land of Lordaeron.$B$BTo reach Hillsbrad, travel by zeppelin to our capital, the Undercity. Then go north to Tirisfal Glades, southwest to Silverpine, and south to Hillsbrad.$B$BSeek Lydon and bring him this note. It details our needs to him.", + ["O"] = "Bring Zamah\'s Note to Apothecary Lydon in Tarren Mill.", + ["T"] = "Journey to Tarren Mill", + }, + [1066] = { + ["D"] = "I will create a toxin to bleed the violence from the Venture Company, rendering them weak and docile. That should fix the Horde\'s problem in Stonetalon, yes?$B$BBut to create the toxin, I will need the blood of innocents, a difficult ingredient to obtain.$B$BFortunately the Syndicate, a group of human brigands in this area, employ shadow mages... and those mages collect innocent blood for their own, unsavory purposes.$B$BYou can find the Syndicate shadow mages in Durnholde Keep to the southeast.", + ["O"] = "Bring 5 Vials of Innocent Blood to Apothecary Lydon in Tarren Mill.", + ["T"] = "Blood of Innocents", + }, + [1067] = { + ["D"] = "Here is the toxin. If you use it against the Venture Company it should produce favorable, perhaps even contagious, results. I must say, it is quite exciting to see my work applied in the field!$B$BBut before using it, take it to Apothecary Zamah. She must create a delivery method for the toxin to maximize its effect.", + ["O"] = "Bring Lydon\'s Toxin to Apothecary Zamah in Thunder Bluff.", + ["T"] = "Return to Thunder Bluff", + }, + [1068] = { + ["D"] = "There is a relation to the spiritual magic of shamans and the natural magic of druids. This is why we shamans can hear the plea of the spirits of Stonetalon. Many of their whisperings are lost to me, but one message, one vision, is clear...$B$BI saw a vision of two man-shaped machines in Windshear Crag, northwest of Greatwood Vale, felling trees with impossible speed. These metal beasts must be stopped!$B$BIn my vision, the machines were marked with strange symbols:$B$BXT:4 and XT:9.", + ["O"] = "Kill the shredders XT:4 and XT:9, then return to Seereth Stonebreak at the border of the Stonetalon Mountains and the Barrens.", + ["T"] = "Shredding Machines", + }, + [1069] = { + ["D"] = "Spider egg omelettes are a new fad in Booty Bay! The problem is... Booty Bay\'s got no eggs.$B$BI smell an opportunity!$B$BIn Windshear Crag and Sishir Canyon, in the Stonetalon Mountains to the northwest, lives the deepmoss spider. Bring me its eggs and I\'ll pay a bundle!$B$BIn Windshear Crag, the eggs will be clustered under what trees remain.$B$BIn Sishir Canyon... well, if you have a weak stomach then maybe you should just collect the eggs at Windshear Crag...", + ["O"] = "Bring 15 Deepmoss Eggs to Mebok Mizzyrix in Ratchet.", + ["T"] = "Deepmoss Spider Eggs", + }, + [1070] = { + ["D"] = "Hello, $N.$B$BYou seem to be full of wanderlust by the looks of you. Have you been to the Stonetalon Mountains? It is a land plagued by the Venture Co. and other enemies of the night elves.$B$BRecently, Sentinel Wolfrunner sent my friend Kaela Shadowspear there to investigate what\'s happening to the land, but I have yet to hear word back from her. I\'m even more concerned because the Alliance sent a gnome mage along with her... a sign of trouble for sure.$B$BWould you find her and report back to me?", + ["O"] = "Find Kaela Shadowspear overlooking the valley entering Windshear Crag in the Stonetalon Mountains.", + ["T"] = "On Guard in Stonetalon", + }, + [1071] = { + ["D"] = "You see, $N, I\'m a member of the Enlightened Assembly of Arcanology, Alchemy and Engineering Sciences, and it\'s my goal... nay, my DUTY! to show the night elves that a blend of magic, mixtures, and mechanisms can help save their forests.$B$BBut it\'s a hard fought war, and the goblins reproduce like rabbits it seems. I haven\'t even had time to build my newest inventions!$B$BI need some time to plan and organize. But to do that, I need your help keeping the goblins at bay in Windshear Crag to the east...", + ["O"] = "Kill 10 Venture Co. Loggers, and 10 Venture Co. Deforesters and return to Gaxim Rustfizzle in Stonetalon.", + ["T"] = "A Gnome\'s Respite", + }, + [1072] = { + ["D"] = "The device I\'m thinking about is my most advanced version to date. But we\'ll need a special potion if it\'s to work. I\'m thinking we might as well get the good stuff since this mission could be your last.$B$BAnd for that, we\'re going to need some potent explosives: Nitromirglyceronium.$B$BThe only person who can make NG-5 is an old friend of mine: Lomac Gearstrip. Look for him in Tinker Town.$B$BYou talk him into making us some NG-5, I\'ll get to work on placement for my devices.", + ["O"] = "Speak to Lomac Gearstrip in Ironforge.", + ["T"] = "An Old Colleague", + }, + [1073] = { + ["D"] = "Hahaha... you need Nitromirglyceronium to stop goblins from destroying a forest?!$B$BI don\'t care if you know Gaxim or not... I\'ll give you the stuff just to see you or them explode into itty bitty pieces.$B$BThere\'s a problem though: I\'m all out.$B$BBut I\'ll tell you what, you bring me the correct potions, and I\'ll make some up for you right away.$B$BThe least you can do is prove you\'ve got some skill as an alchemist before I just give you a sample of my greatest creation.", + ["O"] = "Bring 4 Minor Mana Potions and 2 Elixirs of Fortitude to Lomac Gearstrip in Ironforge.", + ["T"] = "Ineptitude + Chemicals = Fun", + }, + [1074] = { + ["D"] = "Here you go, stranger. Take heed with it though... it\'s volatile stuff.$B$BIf you\'re really a friend of Gaxim\'s, then tell him I say hello. If you\'re not, then have fun blowin\' yerself up.", + ["O"] = "Bring the Nitromirglyceronium back to Gaxim Rustfizzle in Stonetalon.", + ["T"] = "Ineptitude + Chemicals = Fun", + }, + [1075] = { + ["D"] = "Okay, now for the remote detonation part of my plan... oh, I haven\'t explained that yet, have I?$B$BOkay, so the short of it is this: with a little magic, I can make it so the explosives go off while you\'re not around. I\'m putting together a device that\'ll allow you to push just one button and have the NG-5 explode when you\'re ready.$B$BBut I need a spell from a friend in Stormwind--Collin Mauren is his name. You can find him in the mage quarter there. He\'s human, so he shouldn\'t be hard to miss.", + ["O"] = "Find Collin Mauren in Stormwind.", + ["T"] = "A Scroll from Mauren", + }, + [1076] = { + ["D"] = "Ah, I think I have it. A messaging spell... I believe that\'s the effect he\'s looking for.$B$BI\'ll have to create a scroll with the spell impressed upon it. To do that I\'ll need debris from a dust devil.$B$BWhile I gather the rest of the components, why don\'t you head to Westfall and find one of the foul creatures? They are dangerous, but I\'m sure it\'s nothing you can\'t handle if you\'re willing to subject yourself to one of Gaxim\'s experiments.$B$BI\'ll be here when you return.", + ["O"] = "Bring Dust Devil Debris to Collin Mauren in Stormwind.", + ["T"] = "Devils in Westfall", + }, + [1077] = { + ["D"] = "Here you are, $N. This should do nicely.$B$BPlease give my regards to Gaxim when next you see him. I look forward to hearing about this adventure when it sees its completion.$B$BFare well.", + ["O"] = "Bring the Scroll of Messaging to Gaxim Rustfizzle in Stonetalon.", + ["T"] = "Special Delivery for Gaxim", + }, + [1078] = { + ["D"] = "Travelers keep asking me about the Stonetalon Mountains. It seems to be a popular place for adventure--it doesn\'t matter if you\'re seeking wyvern, elementals, or you have business with the Venture Co.$B$BWithin the Charred Vale, deep in Stonetalon, there used to be a species of basilisks whose scales, when ground to dust, made a wonderful reagent for some spells I\'ve created.$B$BIf those basilisks still live, I would love to have a few of their scales.$B$BTake your time, it is no rush, but I can pay well.", + ["O"] = "Bring 8 Crystalized Scales to Collin Mauren in Stormwind.", + ["T"] = "Retrieval for Mauren", + }, + [1079] = { + ["D"] = "This is it, $N. Pay close attention. The devices are done, and ready to be used.$B$BTake these pages--they\'ll explain more about the detonators and explosives, and where you should place them.$B$BRemember, the success of your mission doesn\'t depend on how much destruction you cause. Plan Alpha\'s success depends on you bringing back the Venture Co.\'s engineering plans from inside the lumber mill south of Cragpool Lake.", + ["O"] = "Retrieve the Venture Co.\'s Engineering Plans from the lumber mill in Windshear Crag.", + ["T"] = "Covert Ops - Alpha", + }, + [1080] = { + ["D"] = "Plan Beta\'s just like Plan Alpha, $N.$B$BWe cause a distraction and then steal their precious letters.$B$BThe key is to get their letters... remember that.$B$BThe pages I gave you already will tell you where to plant the explosives. Just get back here alive and with those letters....", + ["O"] = "Retrieve the Venture Co. Letters from Windshear Mine at the east end of Windshear Crag.", + ["T"] = "Covert Ops - Beta", + }, + [1081] = { + ["D"] = "$N, I am sure Tyrande Whisperwind herself would like to thank you for taking part in this mission.$B$BIt may not appear so on the surface, but what you\'ve helped start could very well strengthen our foothold in the Stonetalon Mountains.$B$BIf you consider yourself our ally against these atrocities, go see Tyrande in the Temple of the Moon in Darnassus.", + ["O"] = "Find Tyrande Whisperwind in Darnassus.", + ["T"] = "Reception from Tyrande", + }, + [1082] = { + ["D"] = "$N, you have done a great deed by lending a hand here.$B$BThe Sentinels of Ashenvale will reward you well if you informed them that Gaxim and I are alive. Tell them we are well on our way to stopping the Venture Co. and healing the lands.$B$BFind Tara Thenysil in Astranaar; she will be pleased to see you\'ve returned with good news.", + ["O"] = "Return to Sentinel Thenysil in Ashenvale.", + ["T"] = "Update for Sentinel Thenysil", + }, + [1083] = { + ["D"] = "I\'m unsure what the Venture Co. did to the Vale, but it\'s obvious they were overpowered by the creatures there.$B$BThey set the forest aflame, and used their inventions of destruction to decimate as much of the Vale as possible.$B$BBut in their ignorance they also released something else: burning spirits, elementals of flame, stone and rage.$B$BThe land has no chance to see Elune\'s smile while these creatures roam free.$B$BBring me their smoldering embers to show you\'ve reduced their numbers.", + ["O"] = "Bring 8 Smoldering Embers from any of the fire elementals in the Charred Vale to Kaela Shadowspear in Stonetalon.", + ["T"] = "Enraged Spirits", + }, + [1084] = { + ["D"] = "It seems obvious to me that the protectors of the Vale--the treants--had something to do with the Venture Co. being driven back. Unfortunately, even those once great guardians have now become corrupt.$B$BGaxim thinks their corruption is somehow linked to the weapons the goblins used during their retreat.$B$BI told him I\'d collect a sample from a wounded treant and allow him to study it in order to figure out if that\'s true.$B$BBring me some of the shrapnel so the gnome can tell me more...", + ["O"] = "Bring a piece of Corroded Shrapnel to Kaela Shadowspear in Stonetalon.", + ["T"] = "Wounded Ancients", + }, + [1085] = { + ["D"] = "The situation here in Stonetalon is obviously grave for a night elf and gnome to be working together.$B$BThe Venture Co. has devastated these lands and I\'ve spent most of my time putting an end to the destruction.$B$BDo not judge Gaxim prematurely; he understands the need for us to work together.$B$BIf you wish to aid us, then start by speaking to Gaxim.$B$BI\'m sorry I cannot send you back to Tara with good news yet. Perhaps soon.", + ["O"] = "Speak to Gaxim.", + ["T"] = "On Guard in Stonetalon", + }, + [1086] = { + ["D"] = "The toxin is ready. All that remains is its delivery. You, $N, must make that delivery.$B$BThe Venture Company must have a means of sending messages and light cargo between its headquarters and its operations in Stonetalon. It is likely a small sky port -- not big enough for a zeppelin, but perhaps for a flying machine. You must search the areas in Stonetalon under control of the Venture Company and find this sky port, if it exists. If you find it, then place the toxin there.$B$BPlace it, and run.", + ["O"] = "Bring the Toxic Fogger to the Venture Co. sky port, then return to Apothecary Zamah.", + ["T"] = "The Flying Machine Airport", + }, + [1087] = { + ["D"] = "You cannot imagine the hatred I possess for this wretched land. The ilk of Cenarius and the kaldorei druids at the peak employ their pathetic powers to stifle the flow of magic, even so far south of their pathetic holdings... their beloved forests.$b$bWould that I could return to Jaedenar and exult in the flow of magic, but my master will not allow me to return until my work is done.$b$bI have no doubt you love the night elves and their allies as little as I. Aid me, and both our ends might be satisfied.", + ["O"] = "Kill 4 Sons of Cenarius, 4 Daughters of Cenarius and 4 Cenarion Botanists for Braelyn Firehand near Sun Rock Retreat.", + ["T"] = "Cenarius\' Legacy", + }, + [1088] = { + ["D"] = "They thought that they could halt the flow of magic. They were mistaken. They thought that they could hide Ordanus, but I will have his head!$b$bMagic grants me true sight. Yes... there he is. A crossroads... At the top of a great tree in Ashenvale Forest. A name... Raynewood. One of the eldest sons of the forest god. They spirited him away from the peak before I could find him, but his time runs short.$b$bBring it to me and I will share with you a mighty gift.", + ["O"] = "Bring Ordanus\' head to Braelyn Firehand near Sun Rock Retreat.", + ["T"] = "Ordanus", + }, + [1089] = { + ["D"] = "The druids built the Talon Den on Stonetalon Peak, where they keep many powerful items.$b$bThey devised a complex scheme to keep them from falling into the wrong hands.$b$bLuckily, I managed to... extract some details from one of them.$b$bHidden in a small lantern at the entrance of the Den, you will find the Gatekeeper\'s Key--with it you will be able to open caches around the Den. The items from these caches will allow you to open their hoard, located in one of the central areas.", + ["O"] = "Travel to the Den on Stonetalon Peak. Using the Gatekeeper\'s Key, obtain the druids\' hidden items. Use these items to open the Talon Den Hoard. ", + ["T"] = "The Den", + }, + [1090] = { + ["D"] = "You know, I was once the second most important person here at this site. That all changed when Gerenzo took over. Fired my boss, Ziz Fizziks, and sent me down to work in the mines. Ziz told me to stay here and gather information, though. His new boss will pay us well if we can find out what Gerenzo\'s plans are.$b$bAnyways, what I do know is that Gerenzo has ordered large amounts of this gold-green ore to be mined. I can get you a sample to bring to Ziz, but you\'ll have to watch for patrols while I get it.", + ["O"] = "Get the mysterious ore from Piznik after he finishes mining it.", + ["T"] = "Gerenzo\'s Orders", + }, + [1091] = { + ["D"] = "$N, take these letters to Kaela. I\'m sure she\'ll want to know about this. Or at least the Sentinels will.$B$BMake sure you tell her how successful we were and how we couldn\'t have done it without a little bit of magic.", + ["O"] = "Bring the Venture Co. Letters to Kaela Shadowspear.", + ["T"] = "Kaela\'s Update", + }, + [1092] = { + ["D"] = "I guess I\'d better think about getting out of here, also. It won\'t take long for word of what happened here to spread to the higher ups, and I\'m sure they wouldn\'t take too kindly to meeting me again.$b$bI\'ll sneak out and meet with Ziz. Hopefully, he\'ll be able to find me a new job!$b$bI\'ll try and clean up this mess a little, but you should take the ore sample to Ziz right away. He told me that he\'d set up camp somewhere on the western side of Windshear Crag. Good luck.", + ["O"] = "Deliver the Unidentified Ore to Ziz Fizziks in the Stonetalon Mountains.", + ["T"] = "Gerenzo\'s Orders", + }, + [1093] = { + ["D"] = "Terrible what the Venture Company has done here, eh? What were they thinking? Goblin company hiring a gnome!$b$bLucky for me, Sputtervalve knows a genius when he sees one. Hired me just after I\'d been kicked out!$b$bTells me they built some enormous woodcutting machine, and Sput\' wants me to steal the plans for him. Unfortunately, Gerenzo--bloody gnome--wants me dead on sight... maybe you could steal the plans for me? You should be able to find them on one of their operators.", + ["O"] = "Get the Super Reaper 6000 Blueprints for Ziz Fizziks in the Stonetalon Mountains.", + ["T"] = "Super Reaper 6000", + }, + [1094] = { + ["D"] = "This envelope has all the information I was able to snatch as they booted me out the door... Venture Company internal documents, some manuals, technical things... Oh, and of course the Super Reaper 6000 blueprints.$b$bSputtervalve has taken up residence at Ratchet in the Barrens. Shouldn\'t have much trouble finding him, he\'s a little green fellow.", + ["O"] = "Deliver the Sealed Envelope to Sputtervalve in the Barrens.", + ["T"] = "Further Instructions", + }, + [1095] = { + ["D"] = "The matter of this gnome that has been hired by the Venture Company has caused a bit of a stir in Undermine. The trade princes do not approve of Razdunk\'s consorting with this Gerenzo.$b$bRiddlevox has asked me to take care of the problem, and I\'m sure he was instructed to do so by one or more of the trade princes. Of course, the Director didn\'t tell me that. Let\'s just say I have a hunch.$b$bWhatever the case, Gerenzo must be removed, and it would be a fitting test to have Fizziks take care of him.", + ["O"] = "Bring the new orders to Ziz Fizziks in the Stonetalon Mountains.", + ["T"] = "Further Instructions", + }, + [1096] = { + ["D"] = "I met Gerenzo once, but let me tell you, he\'s not easy on the eyes. His flesh looks like it\'s rotting away, and he\'s grafted metal and gears onto his body, replaced some of his limbs with mechanical ones.$b$bNortheast of here, far above Cragpool Lake, up near the water wheel is where Gerenzo watches over the entire site. There\'s no way I could fight my way up there, not to mention take on Gerenzo... But you look like you might be able to make it.$b$bIf you kill him for me, I\'ll make it worth your while!", + ["O"] = "Bring Gerenzo Wrenchwhistle\'s Mechanical Arm to Ziz Fizziks in the Stonetalon Mountains.", + ["T"] = "Gerenzo Wrenchwhistle", + }, + [1097] = { + ["D"] = "There\'s a dwarven weaponsmith in Stormwind, Grimand Elmore, who sent word that he needs help with a delivery. I believe he wants a package sent to his homeland in the north.$B$BYou have a sturdy pair on you! So if you\'re interested in some legwork then speak with Grimand. We could use you down here, but we must also keep our ties strong with the dwarves.$B$BYou can find Grimand Elmore at the weapon shop in the Dwarven District of Stormwind, in the northeast section of town.", + ["O"] = "Speak with Grimand Elmore.", + ["T"] = "Elmore\'s Task", + }, + [1098] = { + ["D"] = "In preparation for an assault on Shadowfang, two deathstalkers were sent to the keep to gather intelligence. It has been many days and they have not returned, but we must receive their report if we\'re to have any hope of a successful attack!$B$BSo here is your task, $N. Go to Shadowfang Keep to the south and find the Deathstalkers Adamant and Vincent. Find them, and if they require aid then give it.$B$BThis mission is as dangerous as is it critical, $N. Do not fail.", + ["O"] = "Find the Deathstalker Adamant and Deathstalker Vincent.", + ["T"] = "Deathstalkers in Shadowfang", + }, + [1099] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Goblins Win!", + }, + [1100] = { + ["D"] = "You slowly open the weathered journal of Henrig Lonebrow....", + ["O"] = "Read Henrig Lonebrow\'s Journal.", + ["T"] = "Lonebrow\'s Journal", + }, + [1101] = { + ["D"] = "Poor Heralath! And this dwarf... Lonebrow. What a brave soul he was.$b$bWe must not let their valiance go for naught. This crone... Charlga Razorflank ... must be stopped.$b$bSurely, infiltrating the Kraul will be perilous. There isn\'t time to send word to Darnassus. $n, assemble a party to slay the crone.$b$bBring me Razorflank\'s Medallion as proof of demise.", + ["O"] = "Bring Razorflank\'s Medallion to Falfindel Waywarder in Thalanaar.", + ["T"] = "The Crone of the Kraul", + }, + [1102] = { + ["D"] = "Cairne is a noble leader for uniting our people here on Thunder Bluff.$b$bBut I cannot forgive those who drove us from our ancestral lands as easily as some. My people inhabited the southern Barrens for decades. The land was holy to us. But we were driven off by numerous foes.$b$bA vengeful fate awaits the crone, Charlga Razorflank, who musters a foul army from within Razorfen Kraul.$b$bBring me Razorflank\'s heart and I can die in peace, $n.", + ["O"] = "Bring Razorflank\'s Heart to Auld Stonespire in Thunder Bluff.", + ["T"] = "A Vengeful Fate", + }, + [1103] = { + ["D"] = "Greetin\'s, $g brotha:sista;! Have you too come to purify the waters here and prove your understandin\' to Islen?$B$BI\'ve just defeated the corrupt water spirit meself, and I\'m just \'bout to put da bracers and remaining drops o\' water on the brazier.$B$BWhat\'s dat? Ahhh. Tiev understan\' all too well when somethin\' goes wrong. Well, Tiev can help you plenty if you be needin\' to see the pure water spirit again.$B$BBring me a water sapta from Islen as proof that you be ready, an\' I\'ll wait to turn in me parts.", + ["O"] = "Bring a Water Sapta to Tiev Mordune in Silverpine Forest if you failed to speak to the Minor Manifestation of Water.", + ["T"] = "Call of Water", + }, + [1104] = { + ["D"] = "I have so many designs for our rocket car! So many! And I must try them all!!$B$BI\'m working on a new type of fuel. One that burns really really really hot!! I haven\'t gotten the mixture perfect, but I think I know what I need...$B$BThe scorpids who wander the Shimmering Flats have a venom with lots and lots of salt in it. It\'s very unique! And it\'s just what I need!$B$BBring me venom and trust me -- our car will fly!!", + ["O"] = "Bring 6 Salty Scorpid Venoms to Fizzle Brassbolts in the Shimmering Flats.", + ["T"] = "Salt Flat Venom", + }, + [1105] = { + ["D"] = "My brother is working on a new fuel for his rocket car. He\'s brilliant, he really is. So brilliant that... I think that new fuel he\'s designing is strong enough to eat right through the car\'s chassis!$B$BI want to reinforce its fuel tanks before that happens.$B$BThe tortoises out on the flats have very hard shells. I want to use them to create new tanks for our rocket car. Tanks that can hold my brother\'s new fuel.$B$BYou look responsible enough. Will you get me those shells?", + ["O"] = "Bring 9 Hardened Tortoise Shells to Wizzle Brassbolts in the Shimmering Flats.", + ["T"] = "Hardened Shells", + }, + [1106] = { + ["D"] = "I\'m developing a new engine that\'ll make the car go so fast! Fast enough to fly, I know it! I just need to make pistons that can handle very very heavy stress. All my trials have failed because I can\'t make pistons hard enough!$B$BBut there is someone who might know how.$B$BHis name is Martek the Exiled. He is a great smith and knows more about metal than anyone. Take him this letter, I know he can help!$B$BBut he\'s far far away -- in Azeroth, in the Badlands, in a camp, with a goblin!$B$BFind him!", + ["O"] = "Bring Fizzle\'s Letter to Martek the Exiled in the Badlands.", + ["T"] = "Martek the Exiled", + }, + [1107] = { + ["D"] = "Our rocket car is the fastest thing on the flats! So fast that ... I\'m afraid friction is going to tear it apart!$B$BTo prevent that I need to create a composite to coat the car\'s moving parts. It must be hard but not brittle, and must be resistant to salt corrosion, or time spent on the Shimmering Flats will eat it away.$B$BHave you heard of the Vile Reef, $N? It\'s off the coast of Stranglethorn Vale. Saltscale murlocs live there, and their tail fins are a crucial ingredient of my composite.", + ["O"] = "Bring 10 Encrusted Tail Fins to Wizzle Brassbolts in the Shimmering Flats.", + ["T"] = "Encrusted Tail Fins", + }, + [1108] = { + ["D"] = "I\'m not out here just to stay away from people. There is a wealth of metal in the Badlands, $N, if you have the guts to get it.$B$BThe metal\'s called indurium and as luck would have it, it is rumored to possess high resistance to heat and stress. It might work for Fizzle\'s car.$B$BBut let\'s make sure. Get me samples of indurium and I\'ll test its properties.$B$BTrue indurium ore lies deep in Uldaman, but the Stonevault troggs of the Badlands sometimes have flakes of it on them. Bring me those flakes.", + ["O"] = "Bring 10 Indurium Flakes to Martek the Exiled in the Badlands.", + ["T"] = "Indurium", + }, + [1109] = { + ["D"] = "As you can see, $n, we\'re up to some very.... interesting experiments at the Royal Apothecary Society.$b$bAs the Master here, it is my job to oversee the most ambitious of our alchemical attempts. So much work and so little time!$b$bYou look well traveled for a $c. Perhaps you can aid me.$b$bI\'m in need of a rare substance. It\'s foul material; it comes from a rare species of bats only found in the muck-hole known as Razorfen Kraul. Bring to me the guano from the Kraul Bats so we can begin our work...", + ["O"] = "Bring 1 pile of Kraul Guano to Master Apothecary Faranell in the Undercity.", + ["T"] = "Going, Going, Guano!", + }, + [1110] = { + ["D"] = "Heh heh, with all the races they\'re running here, it\'s no surprise that a few mishaps happen along the way. If you look around the Shimmering Flats then you\'ll see evidence of past crashes -- scraps of rocket car parts are littered everywhere!$B$BAnd those parts are worth money to the gnomes and goblins. They\'re always looking for more contraptions to slap onto their cars.$B$BSo go out and get me parts. Bring me a heap and I\'ll pay you well.", + ["O"] = "Bring 30 Rocket Car Parts to Kravel Koalbeard in the Shimmering Flats.", + ["T"] = "Rocket Car Parts", + }, + [1111] = { + ["D"] = "I make it my job to get people what they need, and the gnomes over there need a parts order filled. Their parts were shipped to Ratchet a week ago, but I haven\'t been able to make the trip.$B$BSo, are you ready for some legwork? Go to Ratchet and give this parts order to Wharfmaster Dizzywig -- he\'ll probably be at the docks.$B$BDo this for me, and I\'ll have more jobs for you.$B$BJobs, my friend, with serious profit potential...", + ["O"] = "Bring Kravel\'s Parts Order to Wharfmaster Dizzywig in Ratchet.", + ["T"] = "Wharfmaster Dizzywig", + }, + [1112] = { + ["D"] = "Here\'s Kravel\'s package, $N. And when you deliver it, tell him... if he wants more special orders, then he\'ll have to pay his tab!", + ["O"] = "Bring Kravel\'s Parts to Kravel Koalbeard in the Shimmering Flats.", + ["T"] = "Parts for Kravel", + }, + [1113] = { + ["D"] = "Why do I need a rare type of guano, you might ask. Well, for this experiment I want to see what effect two diametrically opposed chemical substances can have on each other, especially when both are combined with an ever-toxic agent to ensure the most... ghastly results.$b$bIn the northeastern peaks of Tirisfal Glades lies the Scarlet Monastery. There the crazed disciples of the Scarlet Crusade congregate. Slay them and bring me their zealous hearts.$b$bOur concoction will be most wicked!", + ["O"] = "Master Apothecary Faranell in the Undercity wants 20 Hearts of Zeal.", + ["T"] = "Hearts of Zeal", + }, + [1114] = { + ["D"] = "Now that I have what I need, give these parts to Fizzle Brassbolts. He\'s been waiting a long time for them -- I\'m sure he won\'t miss the little piece I removed from his order...$B$BAnd I wouldn\'t bother mentioning it to him. It was small and worthless.$B$BTrust me.", + ["O"] = "Bring the Delicate Car Parts to Fizzle Brassbolts in Shimmering Flats.", + ["T"] = "Delivery to the Gnomes", + }, + [1115] = { + ["D"] = "Now that we\'ve done a service for the gnomes, it\'s time to do the goblins a favor! $B$BI hear that the goblin racer pilot, Nazz Steamboil, didn\'t always use that name. I wonder why he changed it. I wonder if it\'s a secret, and... I wonder if he values that secret.$B$BIf anyone knows the truth, then it\'s Krazek of Booty Bay, on the southern tip of Stranglethorn. Speak with Krazek and ask him about our goblin pilot.$B$BIf you can get useful information from him, then we might just turn a profit from it.", + ["O"] = "Talk to Krazek in Booty Bay.", + ["T"] = "The Rumormonger", + }, + [1116] = { + ["D"] = "Getting the information on Nazz is quite a favor, $N. Yes, quite a favor. But you\'ve come all the way from the Shimmering Flats to get it... are you willing to travel some more?$B$BWhile I contact my sources, why don\'t you gather something for me, eh?$B$BHm... what will it be? How about dream dust, from the dragon whelps of the Swamp of Sorrows. Yes, I\'d love some dream dust for my snuff pouch!$B$BGet it for me, $N, and I\'ll give you the information you seek.", + ["O"] = "Bring 10 Specks of Dream Dust to Krazek in Booty Bay. Dream Dust is gathered from the dragon whelps of the Swamp of Sorrows.", + ["T"] = "Dream Dust in the Swamp", + }, + [1117] = { + ["D"] = "I had to use some of my favors, and gave away a rare bottle of elven wine, and did some heavy deducing myself! But I found the information you seek.$B$BHere, I wrote a letter with some very interesting bits on our friend, Nazz Steamboil. Do with it what you will -- it\'s too dangerous for me to use.$B$BJust don\'t tell anyone where you got it!", + ["O"] = "Bring the Goblin Rumors to Kravel Koalbeard in the Shimmering Flats.", + ["T"] = "Rumors for Kravel", + }, + [1118] = { + ["D"] = "$N, you\'re a $c I can trust, both to get the job done and to keep your mouth shut while doing it.$B$BI\'ve been brewing up a new scheme. It\'s risky, but if it works then we could both make a bundle! And I think you\'re just the person to see it through.$B$BTo start, you must go back to Booty Bay. I apologize, good $N. I know my last task took you there. But this time, speak with Crank Fizzlebub.$B$BGive him this letter. And if he requires aid, do your best to help him. It will be worth the effort.", + ["O"] = "Bring Kravel\'s Scheme to Crank Fizzlebub in Booty Bay.", + ["T"] = "Back to Booty Bay", + }, + [1119] = { + ["D"] = "I figured out how to use Zanzil\'s mixture with stout to make a powerful libation. A Fool\'s Stout. I think it\'ll be just what Kravel needs, but try it out and let me know how it works.$B$BAnd $N, don\'t keep this stuff too long without using it. Zanzil\'s mixture has a weird effect on the stout\'s yeast, kicking it into high gear. So it won\'t stay fresh forever.", + ["O"] = "Bring the Fool\'s Stout back to Kravel in the Shimmering Flats.", + ["T"] = "Zanzil\'s Mixture and a Fool\'s Stout", + }, + [1120] = { + ["D"] = "We need to try the Fool\'s Stout on one of the pit crews. If you want to try it on the gnomes, then here -- take the stout and give it to the gnome pit boss.$B$BAnd don\'t wait too long. This stout will go bad eventually.", + ["O"] = "Bring the Fool\'s Stout to the Gnome Pit Boss.", + ["T"] = "Get the Gnomes Drunk", + }, + [1121] = { + ["D"] = "We need to try the Fool\'s Stout on one of the pit crews. If you want to try it on the goblins, then here -- take the stout and give it to the goblin pit boss.$B$BAnd don\'t wait too long. This stout will go bad eventually.", + ["O"] = "Bring the Fool\'s Stout to the Goblin Pit Boss.", + ["T"] = "Get the Goblins Drunk", + }, + [1122] = { + ["D"] = "That Fool\'s Stout worked great! I placed a bet on the next race, and... let\'s hope the crew you got drunk did a number on their car!$B$BThere\'s only one more task for you -- take this note back to Crank Fizzlebub in Booty Bay. He\'ll want to know of the successful test.$B$BAnd hopefully we can get more of that Fool\'s Stout for future races!", + ["O"] = "Bring the Fool\'s Stout report to Crank Fizzlebub in Booty Bay.", + ["T"] = "Report Back to Fizzlebub", + }, + [1123] = { + ["D"] = "For this task, Keeper Remulos\' majordomo in Moonglade - Rabine Saturna - seeks aid in exploring the vast wastelands far to the west of Tanaris and Un\'Goro. He is located in Nighthaven, the main village of Moonglade.$B$BI want to impart on you the importance of your presence. There are growing tensions between the night elves of Darnassus and the Cenarion Circle in Moonglade. Look beyond racial boundaries and tap into the wisdom of your ancestors in dealings with the Circle there, $N. Good luck.", + ["O"] = "Speak with Rabine Saturna in the village of Nighthaven, Moonglade. Moonglade lies between Felwood and Winterspring, accessible through a path out of Timbermaw Hold.", + ["T"] = "Rabine Saturna", + }, + [1124] = { + ["D"] = "West of Un\'Goro Crater, via the northwestern ridge, is a harsh wasteland - Silithus. Few know that an ancient war was waged there between the night elves and a malign, alien power. The evil was sealed, but now we suspect that forces work to stir this... unspeakable horror.$B$BSeek out Layo Starstrike, one of our agents in Silithus; look for him at Valor\'s Rest, the final resting spot for the fallen of the wastes. Give him this letter, and he will give you his trust accordingly.", + ["O"] = "Speak with Layo Starstrike near the Valor\'s Rest graveyard of Silithus, showing him Rabine\'s Letter.", + ["T"] = "Wasteland", + }, + [1125] = { + ["D"] = "To our southwest lies a tragic site - the ruins of Southwind Village. This is where our work should begin, $N.$B$BFrom what we\'ve learned, this village was once a night elf base of operations for Silithus. It\'s long since overrun by the silithid hives that infest the wastes. I can only imagine the horror of the village\'s initial sundering...$B$BThe tortured spirits of fallen druids and sentinels wander the ruins aimlessly. Explore this locale, freeing the souls of these wretched beings as needed.", + ["O"] = "Free the spirits of 8 Tortured Druids and 8 Tortured Sentinels in Southwind Village, and then return to Layo Starstrike at the Valor\'s Rest graveyard of Silithus.", + ["T"] = "The Spirits of Southwind", + }, + [1126] = { + ["D"] = "The hive needs to be addressed in Southwind Village, and I think I know a way to get at them. It\'s been my experience that the silithid hives are very sensitive to their environment; this explains their attacks when hearing the death wails of the spirits.$B$BThe silithid are strongest in the tower - the one with the mass of wasps circling it. Scale the tower and jostle the hive into activity. Report back what you learn, but be careful! If you uncover anything that might help, bring it to me.", + ["O"] = "Scale the tower of Southwind Village and locate a means to stir the silithid hive into activity. Bring back anything unusual you may uncover when doing so to Layo Starstrike at the Valor\'s Rest graveyard of Silithus.", + ["T"] = "Hive in the Tower", + }, + [1127] = { + ["D"] = "So you want some Fool\'s Stout, eh? Thinking of heading back to the races...?$B$BAll right, bring me more of Zanzil\'s mixture and I\'ll make some more stout for you.", + ["O"] = "Bring 12 of Zanzil\'s Mixture to Crank Fizzlebub in Booty Bay.", + ["T"] = "Fool\'s Stout", + }, + [1130] = { + ["D"] = "$N, Melor Stonehoof has heard of your deeds, and has set a path before you.$B$BIf you wish to take it, then go to Thunder Bluff and speak with Melor. You will find him on Hunter\'s Rise.", + ["O"] = "Speak with Melor Stonehoof in Thunder Bluff.", + ["T"] = "Melor Sends Word", + }, + [1131] = { + ["D"] = "At times we hunt for food. At times we hunt for honor. And at times we hunt to earn the Earthmother\'s teachings.$B$BBut the hunt I now set upon you is none of these things. It is to slay a creature outside the Earthmother\'s blessing.$B$BThe hyena Steelsnap roams the Thousand Needles, south of the Barrens. He is a tyrant, attracting other hyenas to him and spreading fear and bloodshed among more peaceful beasts.$B$BFind Steelsnap, $N. Find him, and defeat him.", + ["O"] = "Bring Steelsnap\'s Rib to Melor Stonehoof in Thunder Bluff.", + ["T"] = "Steelsnap", + }, + [1132] = { + ["D"] = "Oh, to be at sea once again! To feel the kiss of the wind, and to have the waves rock me like my blessed mother, long ago!$B$BOh, I wish I had your fortune, good $c, for I see the sea in your future!$B$BIt\'s my job to tell eager souls of the land of Kalimdor, the land of opportunity! If you\'re willing to try your luck across the sea, then take a ship from here to the lovely port of Theramore. Speak there with my partner, the elf, Fiora Longears.$B$BShe\'ll start you on your Kalimdor adventure!", + ["O"] = "Speak with Fiora Longears in Theramore.", + ["T"] = "Fiora Longears", + }, + [1133] = { + ["D"] = "If you\'re fresh off the boat from Menethil, then the first thing you should do is... go to Astranaar. I\'m sure an eager member of the Alliance such as you can do some real good there. Speak with Shindrell Swiftfire and offer your services.$B$BBut don\'t bother mentioning who sent you. Shindrell does not know me...", + ["O"] = "Speak with Shindrell Swiftfire in Astranaar.", + ["T"] = "Journey to Astranaar", + }, + [1134] = { + ["D"] = "We are not in open war with the Horde, but our peace is fragile. We often find their agents moving against us, but they do so covertly.$B$BOne such advance was revealed to us from hidden sources in Theramore, claiming that the orcs collect venom from the pridewings near Mirkfallon Lake, in the Stonetalon Mountains to the south. Orc assassins then use the venom on their secret death raids against the Alliance!$B$BIf this is true, then we must stop them, $N. We must deny them their source of venom.", + ["O"] = "Bring 12 Pridewing Venom Sacs to Shindrell Swiftfire in Astranaar.", + ["T"] = "Pridewings of Stonetalon", + }, + [1135] = { + ["D"] = "As you may know, wyverns are often tamed by orcs for use as mounts. But what is less known is that the venom of a wyvern, in some circles, is more valuable than the beast itself. So if you\'re not afraid to do a little wyvern hunting, then... I have a job for you.$B$BThere is a place called Highperch in the land of a Thousand Needles, west of here. The Highperch wyverns have a potent venom. Potent, and valuable.", + ["O"] = "Bring 10 Highperch Venom Sacs to Fiora Longears in Theramore.", + ["T"] = "Highperch Venom", + }, + [1136] = { + ["D"] = "$N, it is now time for you to travel to far-off lands. You are ready.$B$BYou now hunt Frostmaw, a yeti in the Alterac Mountains. He is elusive, his white coat blending into the snows of his mountain home. He rarely shows himself.$B$BBut I will show you how to entice a creature such as he. Here, take this scroll. On it I have written how Frostmaw may be lured.$B$BNow go, $N. Your journey is long and many challenges lay waiting. When you return with Frostmaw\'s mane, only then is your task complete.", + ["O"] = "Bring Frostmaw\'s Mane to Melor Stonehoof in Thunder Bluff.", + ["T"] = "Frostmaw", + }, + [1137] = { + ["D"] = "Indurium has an amazing resistance to heat! I\'m sure it will work for Fizzle\'s pistons. But he\'ll need true indurium ore, not just the flakes.$B$BTo get the ore, it must be mined from deep within Uldaman, on the northern borders of the Badlands. That is the true source of indurium.$B$BSend Fizzle Brassbolts my regards, and tell him what I told you.$B$BSafe travels, $N. And it won\'t surprise me if we meet again -- once Fizzle learns of indurium he\'ll probably send you to Uldaman to acquire it!", + ["O"] = "Speak with Fizzle Brassbolts in the Shimmering Flats.", + ["T"] = "News for Fizzle", + }, + [1138] = { + ["D"] = "I love crab. Crabs are the fruit of the sea! You can bake it, barbecue it, boil it, and broil it. They\'re pan fried, deep fried, and stir fried. There\'s crab salad, crab soup, crab stew, pepper crab, lemon crab, whipper root crab, and Ironforge surprise crab. That\'s... that\'s about it.$B$BI\'m here fishing right now, so I can\'t get any fine crab chunks. You can pick them out of reef crawlers and encrusted tide crawlers. You can make a lot with it. You can bake it, barbecue it, boil it...", + ["O"] = "Collect 6 Fine Crab Chunks for Gubber Blump in Auberdine.", + ["T"] = "Fruit of the Sea", + }, + [1139] = { + ["D"] = "We\'ve slowed the Shadowforge clan by cutting them off from Blackrock Spire, but Hammertoe\'s quest is still unfulfilled. His death must not be in vain. He dreamt of finding the Tablet of Will: a stone shard inscribed with magic by the titans themselves to help imbue their creations with life--making them have a will of their own, or so the legends say.$B$BWe must still recover the Tablet before the Shadowforge clan finds it.$B$BReturn to Uldaman, find the tablet, and return here immediately.", + ["O"] = "Find the Tablet of Will, and return them to Advisor Belgrum in Ironforge.", + ["T"] = "The Lost Tablets of Will", + }, + [1140] = { + ["D"] = "The writing of the orcs is little better than the scribblings of a child. Many of my order scoffed when I chose to learn their tongue, but I have found it beneficial to gain further understanding of my enemies.$b$bFrom Ilkrud\'s scribblings, it appears that Athrikus still possesses two soulgems, and they are being held in Night Run and Satyrnaar, satyr-held areas in northeast Ashenvale.$b$bBe careful out there, $n, the satyrs\' blood-soaked temples can be unsettling even for a seasoned $c such as yourself.", + ["O"] = "Free the trapped Highborne souls in Night Run and Satyrnaar, then return to Delgren the Purifier at Maestra\'s Post.", + ["T"] = "The Tower of Althalaxx", + }, + [1141] = { + ["D"] = "I love fishing. The Blump family is known for fishing. My name is Gubber Blump; I fish.$B$BThere\'s a kind of fish I like to catch around these parts called Darkshore grouper. I used to go out on a boat to fish for grouper, but no boats have been going out since them mean ol\' murlocs moved in. I bet they been eating up all the grouper too.$B$BSay, you wanna help me catch Darkshore grouper? I\'d give you a bona fide Blump Family Fishing Pole if you did! It\'s a real good pole to catch fish with.", + ["O"] = "Catch 6 Darkshore Grouper for Gubber Blump in Auberdine.", + ["T"] = "The Family and the Fishing Pole", + }, + [1142] = { + ["D"] = "I have not long to live... so... so... weak.$b$b...the b-b-brave dwarf, Lonebrow, has been sent to w-w-warn Falfindel...$b$bBut before I... d-d-die...$b$b...my wife, Treshala... her pendant of bonding to me... stolen... by one of the f-f-foul aggressors...$b$bFind it p-p-please... and return it to Treshala in Darnassus...$b$b...along with w-w-word of my lonely... death.", + ["O"] = "Find and return Treshala\'s Pendant to Treshala Fallowbrook in Darnassus.", + ["T"] = "Mortality Wanes", + }, + [1143] = { + ["D"] = "I see. Well, if what you say is true, then now is the time to strike. I believe Athrikus resides at the top of the tower. Be careful though, he is surrounded by many powerful warlocks, much more deadly than the ones you faced before.", + ["O"] = "Kill Athrikus Narassin and bring his head to Balthule Shadowstrike near the Tower of Althalaxx.", + ["T"] = "The Tower of Althalaxx", + }, + [1144] = { + ["D"] = "At last, help has arrived!$b$bYou have no clue how long I\'ve been held prisoner here. I can\'t remember the last time I saw the outside of this place.$b$bYou see, I am an entrepreneur. Always out for a copper, as they say. I caught wind that Mebok Mizzyrix was paying well for Redleaf Tuber from this here pig pen. I figured it would be an easy in, easy out kind of affair. As you can see, I was a bit wrong!$b$bAnyway, if you\'d be so kind as to help me get out of here, I\'ll make it worth your while.", + ["O"] = "Escort Willix the Importer out of Razorfen Kraul.", + ["T"] = "Willix the Importer", + }, + [1145] = { + ["D"] = "Many travelers who\'ve come through the Crossroads helped me gather eggs from the Field of Giants, and many of them have tales of how deadly the creatures are. I\'ve heard enough to consider them insects a much larger threat than my masters first thought.$B$BI need a courier to travel to Orgrimmar to meet Belgrom Rockmaul. It be no simple matter, and someone who would take the task seriously should go.$B$BBelgrom usually be found outside the warriors\' guild house.", + ["O"] = "Deliver Korran\'s Sealed Note to Belgrom Rockmaul in Orgrimmar.", + ["T"] = "The Swarm Grows", + }, + [1146] = { + ["D"] = "So, Korran has come to a similar conclusion about these insects--they seem to be a larger threat than we assumed.$B$BA few days ago a hunter returned to me from Thousand Needles nearly dead. He was with a raiding party sent to drive a dwarven excavation team out of the Shimmering Flats. During the attack, more of these insects erupted from a cave in the dig site and nearly killed the party.$B$BThey were led by Moktar Krin, and they\'ve taken refuge on the border of the Shimmering Flats. Bring him this note.", + ["O"] = "Deliver Belgrom\'s Sealed Note to Moktar Krin in Thousand Needles.", + ["T"] = "The Swarm Grows", + }, + [1147] = { + ["D"] = "Hmm. Seems Belgrom thinks those monsters are a threat. He wants them pushed back into whatever depths they crawled up out of.$B$BI guess killing the dwarves sent by the Explorers\' League wasn\'t enough--now I have to send a half-dead war party into another battle. We won\'t be able to do it ourselves; not while we\'re in this condition. The dig site\'s to the south of here. There shouldn\'t be anymore dwarves to deal with. Feel up to wielding a blade or staff and doing your part to aid us?", + ["O"] = "Kill 5 Silithid Searchers, 5 Silithid Hive Drones, and 5 Silithid Invaders and return to Moktar Krin in Thousand Needles.", + ["T"] = "The Swarm Grows", + }, + [1148] = { + ["D"] = "You inspect the carapace carefully. As you turn it over in your hands you realize that the chitinous plating is interlaced in such a way that makes it incredibly strong. It\'s unlike anything you\'ve ever seen. You inspect the rest of the corpse further and realize that these creatures are very powerful and highly evolved.$B$BLooking down at the carapace again, you think that Korran would enjoy studying more of these creatures. It could help him figure out what these creatures are, and where they come from.", + ["O"] = "Bring 1 Silithid Heart, 5 Silithid Talons, and 3 Intact Silithid Carapaces, to Korran at the Crossroads.", + ["T"] = "Parts of the Swarm", + }, + [1149] = { + ["D"] = "So, you have sought me out, or perhaps destiny brings you to me? No matter. You are here now, and so your journey will begin anew.$B$BMany facets make up a being: the spirit, the body, the mind. Some of these can be measured by a culture\'s traditions. Others we can only hope exist within ourselves. If you agree, I shall test some of the facets within you.$B$BIf you pass, then you shall become stronger. If you fail, then you will realize the vastness of the Nether.$B$BThe first is a Test of Faith.", + ["O"] = "If you have faith, leap from the planks overlooking Thousand Needles.", + ["T"] = "Test of Faith", + }, + [1150] = { + ["D"] = "I\'m pleased to see your courage remains steadfast in light of what you\'ve already done. Since your faith is intact, the time has come to test your body.$B$BFirst is a test of endurance. Go with friends to the Roguefeather Den west of Freewind Post. Make your way to the depths of their lair and destroy their foodstuffs. By then you should have provoked their fury, and if you are able to survive long enough, Grenka Bloodscreech herself will come for you--kill her and bring me her claw to complete your test.", + ["O"] = "Bring Grenka\'s Claw to Dorn Plainstalker in Thousand Needles.", + ["T"] = "Test of Endurance", + }, + [1151] = { + ["D"] = "During the time of the Old Gods, elementals inhabited much of this world. They worshipped the Old Gods, and the Gods, through their power, kept the elementals bound to this world. When the Old Gods were banished, the elementals faded from our world and now only return at the bidding of powerful mages.$B$BThere are exceptions though. Some elementals were powerful enough to remain here on their own. One such elemental is Rok\'Alim.$B$BTo test your strength, find Rok\'Alim in Thousand Needles and slay him.", + ["O"] = "Bring Fragments of Rok\'Alim to Dorn Plainstalker in Thousand Needles.", + ["T"] = "Test of Strength", + }, + [1152] = { + ["D"] = "Your time with me is just about finished. I am knowledgeable, but the Test of Lore is not mine to give. There are lessons to be learned and places to visit that others claim domain over.$B$BIf you are prepared, then seek out Braug Dimspirit--he is a shaman of great wisdom. He will test you further, so heed his words, $N.$B$BWhen you are ready, find the tunnel that connects the Stonetalon Mountains with Ashenvale: Braug dwells near there. And be careful, $N, the night elves may wish to impede your test.", + ["O"] = "Find Braug Dimspirit near the entrance to Talondeep Path in Stonetalon Mountains.", + ["T"] = "Test of Lore", + }, + [1153] = { + ["D"] = "$C, you have done well in helping me in the past. The warchief is pleased thus far with what I\'ve accomplished, and asks me to continue with renewed determination. My honor dictates that I give you proper recognition to the warchief for all you have done, but first I would ask you for your help again.$B$BTravelers recently came from the south from a place called Thousand Needles. There they killed a kobold who had an unusual ore sample, but they would not sell it. I want a sample of that ore to examine.", + ["O"] = "Find an Unrefined Ore Sample on a Gravelsnout Digger or Surveyor and bring it to Tatternack Steelforge at Camp Taurajo in the Barrens.", + ["T"] = "A New Ore Sample", + }, + [1154] = { + ["D"] = "You have passed Dorn\'s tests, and now you seek to pass your next trial. Very good. But up until now, your challenges have been childish. It is easy to test your body--your mind is another matter completely.$B$BI shall explain it simply: find the book I name, study it, and answer my question about its contents.$B$BWhat book, you must be asking? The Legacy of the Aspects. It can be found at the bottom of Dor\'danil in southern Ashenvale, protected by the dead druids and their slayers.", + ["O"] = "Find the Legacy of the Aspects and return it to Braug Dimspirit near the entrance to Talondeep Path in Stonetalon Mountains.", + ["T"] = "Test of Lore", + }, + [1155] = { + ["D"] = "x", + ["O"] = "x", + ["T"] = " bug crystal side quest", + }, + [1156] = { + ["D"] = "x", + ["O"] = "x", + ["T"] = " speak to alchemist pestlezugg", + }, + [1157] = { + ["D"] = "", + ["O"] = "", + ["T"] = " pestlezugg needs items", + }, + [1158] = { + ["D"] = "x", + ["O"] = "x", + ["T"] = " speak to rabine saturna", + }, + [1159] = { + ["D"] = "Well done, $N. You have passed the first portion of the Test of Lore, but there is still another question to be answered. But that question is not mine to ask.$B$BSeek out Parqual Fintallas in Lordaeron City. He was a great historian for the humans before the Plague overtook him. Now he continues to seek enlightenment, but of a different nature.$B$BHe will have another requirement of you before he asks you anything, but you have done masterfully thus far--I\'m sure you will overcome his obstacle.", + ["O"] = "Find Parqual Fintallas in Undercity.", + ["T"] = "Test of Lore", + }, + [1160] = { + ["D"] = "I will tell you what you must seek, and I will even ask you my question, but not because you wish to prove yourself. Knowledge is far more important than strength. Even as others seem to pass you by in ability, your knowledge of the world will be more valuable.$B$BGo to the Monastery in the north of Tirisfal Glades. In the library there, a book called Beginnings of the Undead Threat resides. It was used by the now-corrupt paladins there to train them to fight my kind.$B$BBring it to me.", + ["O"] = "Find The Beginnings of the Undead Threat, and return it to Parqual Fintallas in Undercity.", + ["T"] = "Test of Lore", + }, + [1161] = { + ["D"] = "x", + ["O"] = "x", + ["T"] = " gossip shade of ambermoon", + }, + [1162] = { + ["D"] = "x", + ["O"] = "x", + ["T"] = " speak to hamuul runetotem", + }, + [1163] = { + ["D"] = "x", + ["O"] = "x", + ["T"] = " speak to tyrande whisperwind", + }, + [1164] = { + ["D"] = "The harlot! The swine! Kenata still lives; her family healthy and prospering while I suffer. Forsaken indeed!$B$BMy family is gone, taken by the plague. Our estate also forfeit; looted and burned during the war. And after all that, her and her lousy children had the audacity to steal the only precious belongings I had left.$B$BI don\'t care about the things they stole any more. What I want now are their heads!$B$BKill them for me! Go to the Dabyrie Farmstead in Arathi, northeast of Refuge Point.", + ["O"] = "Bring Kenata, Fardel, and Marcel Dabyrie\'s Heads to Genavie Callow in Undercity.", + ["T"] = "To Steal From Thieves", + }, + [1166] = { + ["D"] = "Bow before Overlord Mok\'Morokk!$b$bRexxar make me mighty leader of Stonemaul Clan!$b$bMe good leader. Me keep clan safe.$b$bBig dragons come and make fire at old home. Me smart ogre. Find new home for clan here.$b$bLeave old home so fast, me forget stuff. Tiny $r, go get my things. Go south and find my yummy grog, my snuff and my strongbox. Me like you after you do that. You look in Den of Flame and Stonemaul Ruins... they be there, me sure!", + ["O"] = "Overlord Mok\'Morokk in Brackenwall Village wants you to retrieve his grog, snuff and strongbox in Dustwallow Swamp.", + ["T"] = "Overlord Mok\'Morokk\'s Concern", + }, + [1167] = { + ["D"] = "Before confronting Athrikus, it would probably be wise for you to consult with Balthule. I have no doubt he has been vigilant in his watch of the Tower, and he may have information about recent developments.", + ["O"] = "Speak with Balthule Shadowstrike near the Tower of Althalaxx.", + ["T"] = "The Tower of Althalaxx", + }, + [1168] = { + ["D"] = "Mok\'Morokk was made Overlord by Rexxar. He care more for power than he care for ogres.$b$bBlack dragons kill many ogre. Kill Tharg\'s wife. Mok\'Morokk tell us to run. Make us come here.$b$bOgre should fight. Ogres not good at running. Mok\'Morokk care only about Mok\'Morokk.$b$bMe call Stonemaul Ruins home. Me like it in the south. This place not home.$b$bHelp ogres fight army of the black dragon. Me want revenge. Me want to go home.", + ["O"] = "Tharg in Brackenwall Village wants you to kill 15 Firemane Scouts, 10 Firemane Ash Tails, and 5 Firemane Guards.", + ["T"] = "Army of the Black Dragon", + }, + [1169] = { + ["D"] = "Whilst that craven fool, Mok\'Morokk, wallows in power and Tharg wrestles the demons of sorrow and vengeance and vies for leadership of the clan, I seem to be the only one concerned with identifying the source of aggression on our old home.$b$bWhy the puzzled stare, $n? Expecting me to speak like an uncouth ruffian merely because I am an ogre?$b$bNow back to business, bring to me the hearts and tongues from the whelps and hatchlings. I shall trace the root of this evil...", + ["O"] = "Draz\'Zilb in Brackenwall Village would like you to bring him 15 Searing Tongues and 15 Searing Hearts.", + ["T"] = "Identifying the Brood", + }, + [1170] = { + ["D"] = "Stonemaul Village was invaded by the brood of Onyxia. But why would the daughter of the black dragonlord, Deathwing, descend upon our lands?$b$bThis is most troubling. Surely, Onyxia was driven here for a purpose beyond laying siege to a small band of ogres.$b$bNotify Mok\'Morokk at once! Action must be taken.", + ["O"] = "Speak with Overlord Mok\'Morokk in Brackenwall Village.", + ["T"] = "The Brood of Onyxia", + }, + [1171] = { + ["D"] = "You leave me alone now. Go tell Draz\'Zilb we stay here. No black dragon here.", + ["O"] = "Speak with Draz\'Zilb in Brackenwall Village.", + ["T"] = "The Brood of Onyxia", + }, + [1172] = { + ["D"] = "Onyxia\'s brood has been scattered across the Dragonmurk. It is imperative that no more whelps be permitted to hatch.$b$bMake haste to Wyrmbog in the south of Dustwallow Marsh. Surely, she has made her lair there. Track down the evil dragon\'s eggs and destroy them.$b$bWe will never reclaim Stonemaul Village if the surrounding area remains a breeding ground.$b$bAs for Mok\'Morokk... I have other plans for the sod.", + ["O"] = "Draz\'Zilb in Brackenwall Village wants you to destroy 5 Eggs of Onyxia.", + ["T"] = "The Brood of Onyxia", + }, + [1173] = { + ["D"] = "You dare challenge Overlord Mok\'Morokk?$b$bHaw!$b$bMe crush tiny $r!$b$bYou tell me when ready for good beating.", + ["O"] = "Defeat Mok\'Morokk and report the news to Draz\'Zilb in Brackenwall Village.", + ["T"] = "Challenge Overlord Mok\'Morokk", + }, + [1174] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Gnomes Win!", + }, + [1175] = { + ["D"] = "After the big crash with the goblins\' Red Thunder racer and a basilisk, Kronkrider hired me on to take care of the track. I don\'t know what all the animals out on the flats are feeding on to grow so big, but we have to be careful to thin them out so they won\'t wander onto the track when a race is going on.$b$bTell you what. If you want to go out and make a little profit, go out and remove the basilisks from the area.", + ["O"] = "Kill 10 Saltstone Basilisks, 10 Saltstone Crystalhides and 6 Saltstone Gazers for Trackmaster Zherin on the Shimmering Flats.", + ["T"] = "A Bump in the Road", + }, + [1176] = { + ["D"] = "When it comes to racing, every bit counts! Whether it\'s a minor tweaking on the power output, a slight slackening on the tension coils, or lightening the weight of the frame, you have to take everything into account.$b$bWe use vulture bones for a lot of the minor structural tweaks we make to our racers, which offer the perfect balance of strength and weight. Even better, it\'s easy for us to get more, as the salt flats are littered with vultures.$b$bBring me some and I\'ll give you a good price on them.", + ["O"] = "Get 10 Hollow Vulture Bones for Pozzik in the Shimmering Flats.", + ["T"] = "Load Lightening", + }, + [1177] = { + ["D"] = "Mud big ogre.$b$bMe hungry.$b$bGo bash fishy. Bring Mud food.$b$bYou feed Mud or Mud eat you.", + ["O"] = "Mudcrush Durtfeet in northern Dustwallow wants 12 Mirefin Heads.", + ["T"] = "Hungry!", + }, + [1178] = { + ["D"] = "Our racing team is the pride of goblins everywhere. You\'d be surprised at some of the people who contribute in one way or another to our team.$b$bYou know Gazlowe? He tracks down parts from around the world for us. He even came down to work on one of our rigs once!$b$bA few weeks ago, he said he\'d send us a new prototype fuel regulator but it hasn\'t come yet. He\'s usually very prompt... Maybe you wouldn\'t mind going to Ratchet to ask him about it? I wouldn\'t be so pushy, but the gnomes are gaining on us!", + ["O"] = "Speak to Gazlowe in Ratchet.", + ["T"] = "Goblin Sponsorship", + }, + [1179] = { + ["D"] = "You ever heard of the Shimmering Flats? It\'s a stretch of salt flats way over in Kalimdor, just south of the Thousand Needles canyon. It\'s a great place for racing because, well, it\'s so flat!$B$BA couple of gnome brothers are out there, friends of mine, trying out their new rocket car, and from what I hear it\'s fast! Heh, so fast that their pilots keep crashing. Giving themselves concussions.$B$BSo they asked me for some Siege Engine helmets, but I have duties here. I can\'t make the trip!$B$BCan you?", + ["O"] = "Bring the crate of crash helmets to Wizzle Brassbolts in the Shimmering Flats.", + ["T"] = "The Brassbolts Brothers", + }, + [1180] = { + ["D"] = "Back to what you came here about. I know I promised Pozzik that I\'d deliver a new fuel regulator for him, but I still haven\'t received it yet. Revilgaz over in Booty Bay said he\'d have it shipped over, but it might be it slipped through the cracks somehow.$b$bIf that\'s true, there\'s not much we can do about it. We can at least find out if it was dispatched from Booty Bay.$b$bCheck in with Wharfmaster Lozgil over there, he should be able to check the cargo records.", + ["O"] = "Speak with Wharfmaster Lozgil in Booty Bay.", + ["T"] = "Goblin Sponsorship", + }, + [1181] = { + ["D"] = "I\'m afraid I can\'t be of much more help to you, $n. If you\'d like to follow up on it more, I\'d suggest you go hit up the Baron himself. If there\'s anyone who knows Revilgaz\'s business, it\'s Revilgaz.$b$bYou\'ll find him at the tavern across the harbor, top floor.", + ["O"] = "Speak with Baron Revilgaz in Booty Bay.", + ["T"] = "Goblin Sponsorship", + }, + [1182] = { + ["D"] = "See, the Venture Company shredders out in Lake Nazferiti (in northern Stranglethorn) have been equipped with a new model fuel regulator. I was thinking that Pozzik would be able to take advantage of it, if he could get some details. Unfortunately, Cozzle, the foreman out there, appears to be a little more clever than I gave him credit for.$b$bYou seem like you might have more luck finding the blueprints though. I know he keeps them in his house, but they\'re almost certainly under lock and key.", + ["O"] = "Bring the Fuel Regulator Blueprints to Baron Revilgaz in Booty Bay.", + ["T"] = "Goblin Sponsorship", + }, + [1183] = { + ["D"] = "You should be all set to go. Give Pozzik my regards and tell him that if he ever needs anything, not to hesitate to ask. I\'ll be waiting for the news that he breaks the track record soon!", + ["O"] = "Deliver the Fuel Regulator Blueprints to Pozzik on the Shimmering Flats.", + ["T"] = "Goblin Sponsorship", + }, + [1184] = { + ["D"] = "Head back to Belgrom in Orgrimmar and tell him Moktar be doing his bidding well out in the Thousand Needles. Tell him also, that me studies progress, and I hope to be havin\' learned more soon. That should please him greatly.", + ["O"] = "Return to Belgrom Rockmaul in Orgrimmar.", + ["T"] = "Parts of the Swarm", + }, + [1185] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Under the Chitin Was...", + }, + [1186] = { + ["D"] = "I\'m going to be busy with working on integrating this new fuel regulator to our racer designs, but if you\'d like to help out the team some more, talk to Razzeric. He\'s our pilot--well, our eighteenth pilot, to be exact--and he likes to add his own little modifications to the racers.$b$bHe\'s a little off his rocker, though, so try not to act too surprised.", + ["O"] = "Speak with Razzeric on the Shimmering Flats.", + ["T"] = "The Eighteenth Pilot", + }, + [1187] = { + ["D"] = "Pozzik\'s a great mechanic, I know that, but he\'s afraid to just load on the firepower and grab on for the ride. Not me, though.$b$bAfter Pozzik finishes with a racer, I take a little time to put my own modifications on--you know, loosening up the controls, removing parts of the frame, and adding more juice!$b$bI ordered a seaforium booster from Shreev at the Gizmorium in Gadgetzan, but apparently the zeppelin it was being sent on crashed in Dustwallow Marsh! I gotta have it, $n!", + ["O"] = "Retrieve the Seaforium Booster for Razzeric in the Shimmering Flats.", + ["T"] = "Razzeric\'s Tweaking", + }, + [1188] = { + ["D"] = "But wait, what\'s this? Shreev left the safety on. That will limit the amount of power I can draw from the booster at any time. I told him I wanted it off! This is no good.$b$bYou have to take this to the Gadgetzan Gizmorium in the Tanaris Desert and have Shreev remove this.", + ["O"] = "Bring the Seaforium Booster to Shreev in Gadgetzan.", + ["T"] = "Safety First", + }, + [1189] = { + ["D"] = "There, I did what Razzeric wanted. Just tell him to be careful when he sets this off. If he makes the slightest mistake, he won\'t be moving forward, he\'ll just be a burnt spot on the track.$b$bWould be a shame, too, if that happened. Who knows if our nineteenth driver would be any good?", + ["O"] = "Return the Modified Seaforium Booster to Razzeric on the Shimmering Flats.", + ["T"] = "Safety First", + }, + [1190] = { + ["D"] = "The Brassbolts brothers have discovered a new building material, that\'s the only explanation that makes sense. Their cars have been operating faster than before, but their designs, and all the other data we\'ve gathered from their runs is identical.$b$bWhat we do know, is that Rizzle Brassbolts has been focused on the plans for this new discovery almost constantly.$b$bZamek can create a diversion for you, so that you can steal those plans from them.", + ["O"] = "Have Zamek create a diversion, then steal Rizzle\'s plans for Pozzik on the Shimmering Flats.", + ["T"] = "Keeping Pace", + }, + [1191] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Zamek\'s Distraction", + }, + [1192] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Indurium Ore", + }, + [1193] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Broken Trap", + }, + [1194] = { + ["D"] = "Rizzle\'s schematics describe the process of the refinement of indurium ore. From his scrawls, it is apparent that indurium ore is being obtained from the dwarven excavation site of Uldaman in the Badlands.$b$bMuch of the other notes relate to the heat resistant properties.$b$bUsed as a paperweight for the plans is a hunk of what appears to be unrefined indurium ore.", + ["O"] = "Bring the Sample of Indurium Ore to Pozzik on the Shimmering Flats.", + ["T"] = "Rizzle\'s Schematics", + }, + [1195] = { + ["D"] = "The Galak centaur in the Thousand Needles are protecting an artifact from the time of the centaurs\' creation.$b$bWe would like to retrieve it, but we require a phial of water from one of the night elves\' moonwells.$b$bTo collect the water, you will first need to obtain one of the phials carried by the dryads near the Raynewood Retreat in the heart of Ashenvale Forest. There is a moonwell near the western bank of the Falfarren River, south of the main road, where you can fill the phial.", + ["O"] = "Return a Filled Etched Phial to Zangen Stonehoof in Thunder Bluff.", + ["T"] = "The Sacred Flame", + }, + [1196] = { + ["D"] = "Bring the filled phial to Rau Cliffrunner at the Freewind Post in southeastern Thousand Needles. You can get to the Thousand Needles by taking the Great Lift at the southern edge of the Barrens.$b$bI wouldn\'t be surprised if you can help us out further.", + ["O"] = "Deliver the Filled Etched Phial to Rau Cliffrunner at the Freewind Post.", + ["T"] = "The Sacred Flame", + }, + [1197] = { + ["D"] = "Using the water you brought, you will be able to temporarily douse the flame that holds the centaur relic. It will not work permanently, however, so you will have to be quick about it.$b$bYou will find Splithoof Crag, the centaurs\' stronghold, to the north of here. The flame is kept in Splithoof Hold, a heavily guarded part of the crag.$b$bBe careful, though, the Galak centaur have great numbers here, and will be rather reluctant to surrender something so dear to them.", + ["O"] = "Retrieve the Cloven Hoof for Rau Cliffrunner at the Freewind Post.", + ["T"] = "The Sacred Flame", + }, + [1198] = { + ["D"] = "Many rumors circulate these days about the union of the Twilight\'s Hammer and the naga in Blackfathom Deeps on the coasts of Ashenvale.$b$bMy role here with the Argent Dawn is to collect as much information as I can, so we know when and where help is needed.$b$bIt has been weeks now since I sent a scout to check on the activity at Blackfathom Deeps. Argent Guard Thaelrid has not yet reported back.$b$bMy other scouts are preoccupied with pressing matters.$b$bSeek out and aid Thaelrid for me, $n.", + ["O"] = "Seek out Argent Guard Thaelrid in Blackfathom Deeps.", + ["T"] = "In Search of Thaelrid", + }, + [1199] = { + ["D"] = "Empowered by the ancient rites of the chaotic Old Gods the members of the Twilight\'s Hammer strive to bring about the return of their dark patrons and spread death and terror across the world.$b$bWe believe that the Twilight\'s Hammer has allied with the naga and are amassing in Blackfathom Deeps on the coast of Ashenvale.$b$bWhatever evil plan brews in the depths of the old temple must be thwarted.$b$bWage war on the Hammer and bring back proof of your deeds. Your efforts will be rewarded handsomely.", + ["O"] = "Bring 10 Twilight Pendants to Argent Guard Manados in Darnassus.", + ["T"] = "Twilight Falls", + }, + [1200] = { + ["D"] = "Strength has left me. Your help is needed!$b$bLong ago this site was a great temple of Elune. But misfortune led to ruin when the corruption of an Old God seeped up from beneath the earth and tainted the sacred Moon Well.$b$bAku\'Mai, servant of the Old God, rose from the waters.$b$bThe Twilight\'s Hammer cultists have allied with the naga to occupy these grounds. The cultists, led by Kelris, sacrifice innocents to Aku\'Mai for power.$b$bSlay Kelris and bring his head to Selgorm in Darnassus, $N, please.", + ["O"] = "Bring the head of Twilight Lord Kelris to Dawnwatcher Selgorm in Darnassus.", + ["T"] = "Blackfathom Villainy", + }, + [1201] = { + ["D"] = "The Horde and Alliance hold an uneasy truce. Outlying skirmishes and covert actions are taken by one side against the other, and it is our duty to ensure the Horde is on top!$B$BNow is the chance to do just that.$B$BAlliance infiltrators have taken positions east of Brackenwall Village. They spy on the village and report our movements to Theramore, which we cannot allow.$B$BHunt down the infiltrators and slay them. Send a clear message to their superiors that we will not tolerate their spies\' presence!", + ["O"] = "Kill 9 Theramore Infiltrators, then return to Nazeer Bloodpike in Brackenwall Village.", + ["T"] = "Theramore Spies", + }, + [1202] = { + ["D"] = "$N, two of our spies were sent to steal documents from a ship at the Theramore docks. They gained the papers but were discovered, and were forced to throw the documents into the sea.$B$BOne spy later escaped, but was unable to recover the prize. He reported his failure to me, and I now charge the task to you.$B$BThe documents are in a footlocker, in the waters somewhere beneath the Theramore docks. Find those documents, $N, and bring them to me.", + ["O"] = "Bring the Captain\'s Documents to Nazeer Bloodpike in Brackenwall Village.", + ["T"] = "The Theramore Docks", + }, + [1203] = { + ["D"] = "I have cutting to do. I can\'t tell you what I\'m going to cut, but... I need myself a blade. A certain blade...$B$BSome people call it a moonsteel broadsword. I call it a swing blade.$B$BYou help me? Maybe you find it in town, maybe you talk to a blacksmith and he\'ll make it special.$B$BBut don\'t sleep on this. What I\'m cutting won\'t keep forever...", + ["O"] = "Bring a Moonsteel Broadsword to Jarl in Dustwallow Marsh.", + ["T"] = "Jarl Needs a Blade", + }, + [1204] = { + ["D"] = "I\'m working on a dish I call \"Mudrock Soup and Bugs.\" I still need the major ingredients, and... well, I don\'t think I\'d last long trudging through Dustwallow Marsh!$B$BSo, $N, can you do some hunting for me? First, I need the tongues of Mudrock turtles. You can find Mudrocks along the coast, mostly around the bay.$B$BBut I don\'t want just any tongues! I hear that the tongues of some Mudrocks are forked...$B$BThey say the forked tongues have a distinct flavor, and I want that flavor in my dish...", + ["O"] = "Bring 8 Forked Mudrock Tongues to Morgan Stern in Theramore.", + ["T"] = "Mudrock Soup and Bugs", + }, + [1205] = { + ["D"] = "Deadmire is an ancient crocolisk in Dustwallow marsh. And it is his time to die.$B$BOld bones grind as he pulls his huge body through the swamp, and although he still moves with the strength and speed of youth, his aging body tortures the great spirit within it, a spirit whose flame will not waver.$B$BYet now he lives in constant, maddening pain. You must end the life of this noble creature, $N. You must lead Deadmire to peace.", + ["O"] = "Bring Deadmire\'s Tooth to Melor in Thunder Bluff.", + ["T"] = "Deadmire", + }, + [1206] = { + ["D"] = "Eye juice is good juice for drinking. Too bad most critters only have two eyes.$B$BBut spiders have lots of eyes. Lots and lots. And Darkmist eye juice is tasty. Smooth and salty! Unpopped spider eyes... I taste them already.$B$BDarkmist spiders are west of here, in the Darkmist Cavern. You figure the spiders are named after the cave... or is it the other way around?", + ["O"] = "Bring 40 Unpopped Darkmist Eyes to \"Swamp Eye\" Jarl at the Swamplight Manor.", + ["T"] = "Jarl Needs Eyes", + }, + [1218] = { + ["D"] = "I like cooking. Good swamp cooking. Fried green frog legs and the like.$B$BAnd for cooking, I need spice. Soothing spice. Then I\'ll make a stew and stew it up and suck it down and give you some too.$B$BDo you like stew?", + ["O"] = "Bring 3 Soothing Spices to \"Swamp Eye\" Jarl in Dustwallow Marsh.", + ["T"] = "Soothing Spices", + }, + [1219] = { + ["D"] = "Sifting through the loose dirt, the severed hand of an orc is found. And clutched in the hand is a bone-carved tube. And in the tube is a dirt-stained parchment.$B$BThe parchment is written in orcish... and it looks important.", + ["O"] = "Bring the Spy\'s Report to a Theramore Lieutenant.", + ["T"] = "The Orc Report", + }, + [1220] = { + ["D"] = "Captain Vimes should see the orc report you found, $N. He knows the orcish language better than most. And he should know that there are Horde spies near Theramore!$B$BThe captain is in the barracks, on the northeastern side of Theramore Isle.", + ["O"] = "Bring the Spy\'s Report to Captain Garran Vimes.", + ["T"] = "Captain Vimes", + }, + [1221] = { + ["D"] = "Blueleaf tubers are a delicacy around the world! But they\'re rare, very rare. The only place to find them is here in the Barrens, deep in the earth, in Razorfen Kraul.$B$BAnd even then, they\'re impossible to find unless you know just where to look! That\'s why I\'ve trained these snufflenose gophers to find them for me. They have great noses and can smell a tuber from fifty paces away.$B$BIt won\'t be easy, but if you get me some tubers I\'ll pay you handsomely.", + ["O"] = "Grab a Crate with Holes.$BGrab a Snufflenose Command Stick.$BGrab and read the Snufflenose Owner\'s Manual.$B$BIn Razorfen Kraul, use the Crate with Holes to summon a Snufflenose Gopher, and use the Command Stick on the gopher to make it search for Tubers.$B$BBring 6 Blueleaf Tubers, the Snufflenose Command Stick and the Crate with Holes to Mebok Mizzyrix in Ratchet.", + ["T"] = "Blueleaf Tubers", + }, + [1222] = { + ["D"] = "Great, finally something that doesn\'t want to eat me!$B$BI need help handling the critters around here, and you fit the mold, $gbuddy:lady;.$B$BThe cook Morgan Stern is researching a new recipe, and he sent me out here to gather bogbean leaves. I guess he thinks they\'re tasty.$B$BAnyway, while looking for a bogbean plant... I got myself surrounded! Can you help me out of here, and watch my back as I look for the bogbean?", + ["O"] = "Escort \"Stinky\" Ignatz, then speak with Morgan Stern in Theramore.", + ["T"] = "Stinky\'s Escape", + }, + [1238] = { + ["D"] = "Sifting through the loose dirt, the severed hand of an orc is found. And clutched in the hand is a bone-carved tube. And in the tube is a dirt-stained parchment.$B$BThe parchment is a report made by an orc who spent weeks spying on the city of Theramore.$B$BAfter scanning the parchment, it is clear that it must be brought to the orc spymaster in Brackenwall Village.", + ["O"] = "Bring the Spy\'s Report to Nazeer Bloodpike in Brackenwall Village.", + ["T"] = "The Lost Report", + }, + [1239] = { + ["D"] = "Vigorous digging reveals the head of a male orc, raggedly severed at the neck. His lips are frozen in a snarl, and its dark eyes stare defiantly.", + ["O"] = "Bring the Defiant Orc Head to Nazeer Bloodpike in Brackenwall Village.", + ["T"] = "The Severed Head", + }, + [1240] = { + ["D"] = "We must know the events surrounding Marg\'s death! And the only way to do that, $N, is through the witch-magic of trolls.$B$BBring Marg\'s head to Kin\'weelay in Stranglethorn Vale, at the Grom\'gol Base Camp.$B$BKin\'weelay is the most powerful witchdoctor of the Darkspear trolls. If anyone can speak to Marg Nighteye\'s spirit, it is he.", + ["O"] = "Take the Defiant Orc Head to Kin\'weelay in the Grom\'gol Base Camp in Stranglethorn Vale.", + ["T"] = "The Troll Witchdoctor", + }, + [1241] = { + ["D"] = "Recently a diplomat was sent to Theramore to meet with Jaina Proudmoore. That diplomat never arrived.$B$BI believe the Defias are involved in this plot, but I\'m not sure how. The diplomat\'s disappearance still eludes public attention, but it can\'t remain that way for long.$B$BAgents of the king are already scouring the city for clues, but I have my own contacts I would like involved.$B$BIn the Valley of Heroes is an old friend of mine named Jorgen. Find him, give him this note, and follow his instructions.", + ["O"] = "Find Jorgen in Stormwind City.", + ["T"] = "The Missing Diplomat", + }, + [1242] = { + ["D"] = "Take this here note to Elling Trias. Don\'t say nothin\' else to him. Just be polite and wait for him to respond. And don\'t worry, he will.$B$BI\'m gonna only impress this on ya once more, $N: treat this matter seriously, and keep your yapper shut.$B$BYa can find Trias at his cheese shop, Trias\' Cheese, in the Trade District. Good luck.", + ["O"] = "Delivery Jorgen\'s Sealed Note to Elling Trias in Stormwind City.", + ["T"] = "The Missing Diplomat", + }, + [1243] = { + ["D"] = "Jorgen, you ol\' sonuva.... So, that\'s how it\'s going to be, huh?$B$BAll right, I can deal with that. I hope he finds the Twisting Nether that much sooner!$B$BHere\'s what\'s gonna happen, $N. I\'ll start using my contacts here, but you\'re doing most of the footwork so I save some coin.$B$BHead to Darkshire in Duskwood and find Watcher Backus--he usually patrols the north road right outside of town. Just tell him you\'re looking into any Defias activity for me and he\'ll help you out with any information he can.", + ["O"] = "Give the Sealed Note to Watcher Backus in Duskwood.", + ["T"] = "The Missing Diplomat", + }, + [1244] = { + ["D"] = "Defias activity? Well, there\'s always some activity; even if they keep to themselves we consider them a threat.$B$BBut now that I think about it, there was a recent sighting that seemed odd. It must have been a couple weeks ago, but some of their agents had gathered around Addle\'s Stead. From the report, I\'d guessed something big went down.$B$BWhy don\'t you check there first and bring me back anything you find?$B$BThe farmstead is south of the road from Westfall just as you enter Duskwood.", + ["O"] = "Find the Defias Docket and return it to Watcher Backus in Duskwood.", + ["T"] = "The Missing Diplomat", + }, + [1245] = { + ["D"] = "Whoa, this looks way too complex to be something to just lead you astray. I shouldn\'t even be looking at this stuff. Take it to Trias--he\'ll be able to make sense of it. And DON\'T let anyone get in your way. This is bigger than me. It might even be bigger than him, but we\'ll see.$B$BAnd do me a favor, $N, don\'t tell anyone I helped you. If my superiors found out I knew about any of this and didn\'t share it with them they\'d probably hang me.", + ["O"] = "Bring the Defias Docket to Elling Trias in Stormwind.", + ["T"] = "The Missing Diplomat", + }, + [1246] = { + ["D"] = "Yeah, now that I think about it... Dashel... Dashel something... What was his name? FIST! Dashel Stonefist. They call him Fist in some circles--probably on account that he likes to get in brawls.$B$BYou can find him in Old Town usually--right smack dab in the center of it. Go talk to him. If you have to, use a sword or something heavy and blunt to persuade him to open up some. And don\'t hesitate. If he\'s in this as deep as these papers suggest, then he\'s not going to give you any information willingly.", + ["O"] = "Speak to Dashel Stonefist in Stormwind.", + ["T"] = "The Missing Diplomat", + }, + [1247] = { + ["D"] = "So yeah... um... I might know something \'bout that meeting at Addle\'s Stead. Happened a few weeks back I think. I really didn\'t have any part in it. Me part was done when plan A failed... damn adventurers.$B$BThe guy we got on the inside for plan B came out of Menethil; guy called Slim. That\'s all I know regarding their backup plan.", + ["O"] = "Speak to Elling Trias in Stormwind.", + ["T"] = "The Missing Diplomat", + }, + [1248] = { + ["D"] = "A contact of mine retired in the Wetlands at the harbor city of Menethil. He should be willing to help on your word alone if you tell him you\'re working for me. His name is Mikhail. He mentioned becoming a bartender before leaving Stormwind a few years ago.$B$BSpeak to him, find this Slim, and find out if there\'s anything else to know about this kidnapped diplomat. We need to find out where they\'ve taken him, or at least who he is. The docket doesn\'t mention anything about their plans after he\'s captured.", + ["O"] = "Speak to Mikhail in the Wetlands.", + ["T"] = "The Missing Diplomat", + }, + [1249] = { + ["D"] = "You say Elling sent you here? Well then, the hospitality I expressed is now tenfold. Anything you need, just ask. I will do my best to aid you.$B$BHmm, Slim, you say? Not sure the name sounds familiar, but I\'ll keep my eyes out for him.$B$BDon\'t look now, $N, but the gentleman over by the exit is looking over here. He\'s listening to our conversation a little too intently if you catch my meaning? If I were you, I\'d do what you can to subdue him before he makes a break for the door.", + ["O"] = "Subdue Tapoke Jahn before he escapes, and then return to Mikhail in Menethil.", + ["T"] = "The Missing Diplomat", + }, + [1250] = { + ["D"] = "The Defias didn\'t pay me well enough to die for their cause. They took the king. Yeah, the king of Stormwind, not some lowly diplomat. He was on his way to Theramore to meet with Jaina Proudmore--it was a big deal apparently, and a big secret. But it\'s not just the Defias that are involved. They\'re working with someone. I think they knew this was bigger than them.$B$BMy part was just to get their man on board the king\'s ship while it was in the harbor. The guy\'s name was Hendel. That\'s all I know. I swear!", + ["O"] = "Speak to Mikhail in the Wetlands.", + ["T"] = "The Missing Diplomat", + }, + [1251] = { + ["D"] = "An iron shield, blackened by the fire that raged through the inn, is affixed to the crumbling chimney, one of the few remaining parts of the structure that once made up the Shady Rest Inn.$b$bThe shield can be removed from the brick of the chimney.", + ["O"] = "Bring the Blackened Iron Shield to Krog in Brackenwall Village.", + ["T"] = "The Black Shield ", + }, + [1252] = { + ["D"] = "A glint of light on the ground catches your eye from underneath the rubble. Brushing away debris and ash caked onto the object reveals the insignia of a gold anchor on white enameled on the surface: the sign of Theramore.$b$bUnderneath the anchor is embossed the name \"Lieutenant Paval Reethe\".", + ["O"] = "Bring Reethe\'s Badge to Captain Garran Vimes in Theramore.", + ["T"] = "Lieutenant Paval Reethe", + }, + [1253] = { + ["D"] = "An iron shield, blackened by the fire that raged through the inn, is affixed to the crumbling chimney, one of the few remaining parts of the structure that once made up the Shady Rest Inn.$b$bThe shield can be removed from the brick of the chimney.", + ["O"] = "Bring the Blackened Iron Shield to Captain Garran Vimes in Theramore.", + ["T"] = "The Black Shield", + }, + [1258] = { + ["D"] = "Another component of my new recipe is the shelled leg of a giant crab. And the crabs they have in Dustwallow -- Muckshells they call them -- just won\'t do! I\'m afraid the only suitable crabs live far away, in the Swamp of Sorrows.$B$BThe shell of the crab leg is a key element of the dish\'s presentation so I need pristine, unscarred legs. An adult crab might only have one or two such legs, and I need a lot in order to research my dish.$B$BSo, $N... are you willing to travel?", + ["O"] = "Bring 12 Pristine Crawler Legs to Morgan Stern in Theramore.", + ["T"] = "... and Bugs", + }, + [1259] = { + ["D"] = "I don\'t recognize the name of Lieutenant Paval Reethe. Your best bet would be to check with Adjutant Tesoran. He keeps track of all the records for the Theramore guard, from personnel to their equipment.$b$bHe should be able to tell you who this Reethe is with a quick check of his books.", + ["O"] = "Find out more about Reethe from Adjutant Tesoran in Theramore.", + ["T"] = "Lieutenant Paval Reethe", + }, + [1260] = { + ["D"] = "I\'m developing a new menu for the restaurant. It will be filled with rural dishes with a \"bayou\" theme. I think my clientele at the Blue Recluse will love them!$B$BI sent my nephew Morgan to Theramore, a city on the edge of the Dustwallow Marsh. He\'s there gathering recipes from the locals, and I must know what he found so far.$B$BThe trip to Theramore is long. Too long for me. But I bet a young $c like yourself would jump at the chance to travel, yes?", + ["O"] = "Speak with Morgan Stern in Theramore.", + ["T"] = "Morgan Stern", + }, + [1261] = { + ["D"] = "Cursed muckshell! You can\'t kill Marg! Ah, but I am dead. So it must have slain me...$B$BBut my mission! My mission! You, $N, must complete it.$B$BWhile near Theramore, I spied a group of Alliance soldiers camped on the beach. And one soldier wore a pendant... a pendant laden with more gems than any soldier could afford!$B$BThat night I snuck into their camp and stole the pendant, but on my return to base a muckshell crab-man killed me!$B$B$N, you must find that muckshell and recover the pendant!", + ["O"] = "Bring the Jeweled Pendant to Nazeer in Brackenwall Village.", + ["T"] = "Marg Speaks", + }, + [1262] = { + ["D"] = "It is strange that the pendant Marg stole was in the hands of common soldiers. Perhaps its owner was in disguise, or perhaps the soldiers themselves stole it!$B$BRegardless of which is true, this is a noble\'s pendant and we must discover its true owner if we are to unravel its mystery.$B$BTake the pendant to Zor Lonetree in Orgrimmar. He is well schooled in Alliance politics, and will know if this pendant has a history among the nobles of Stormwind.", + ["O"] = "Bring the Jeweled Pendant to Zor Lonetree in Orgrimmar.", + ["T"] = "Report to Zor", + }, + [1263] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Burning Inn ", + }, + [1264] = { + ["D"] = "The beginning of every month the Kul Tiras Marines all get paid and usually leave Theramore for somewhere else. A lot of them come here to womanize, carouse, and just have a good time. One of those groups I\'d consider regulars here at the tavern, and I believe this Hendel is among them.$B$BCommander Samaul in Theramore would be able to help you find him if Hendel\'s still stationed there. He\'s completely loyal to Proudmoore, but if you drop Elling\'s name, he should help you out... discretely.", + ["O"] = "Find Commander Samaul in Dustwallow Marsh.", + ["T"] = "The Missing Diplomat", + }, + [1265] = { + ["D"] = "Hendel? Yes, I know the man. But why would you need one of my soldiers?$B$BElling sent you to find him? Hmm, I don\'t like the sound of that. Elling wouldn\'t have you come to me first if your business wasn\'t troubling. I understand if you can\'t tell me what this is about, but know this: I have a duty to protect these lands. If you\'re going to cause a disturbance, then I suggest you inform me of whatever you can.$B$BI believe Hendel was stationed at the first tower outside of Theramore. Be cautious.", + ["O"] = "Search Sentry Point for any sign of Private Hendel.", + ["T"] = "The Missing Diplomat", + }, + [1266] = { + ["D"] = "Private Hendel is to the west of here. He\'s currently on guard duty protecting some of Theramore\'s infiltrators while they rest. They\'ve been keeping tabs on the Horde base, Brackenwall, and looking for anything else that might threaten our borders.$B$BYou should have no problem finding him; just look for the tents along the road.$B$BI have another matter to attend to, but I shall catch up to you soon enough. You can always find me in the Lady Proudmoore\'s tower if you have any problems.", + ["O"] = "Find Private Hendel in Dustwallow Marsh.", + ["T"] = "The Missing Diplomat", + }, + [1267] = { + ["D"] = "", + ["O"] = "Speak to Jaina Proudmore in Dustwallow Swamp.", + ["T"] = "The Missing Diplomat", + }, + [1268] = { + ["D"] = "Rows of hoofprints lead away from the still-smoking skeleton of the Shady Rest Inn. There are at least a few visible impressions, with more rows of prints almost imperceptible in the soft mud of the marsh.", + ["O"] = "Report about the suspicious prints at the Shady Rest Inn to Krog in Brackenwall Village.", + ["T"] = "Suspicious Hoofprints", + }, + [1269] = { + ["D"] = "A glint of light on the ground catches your eye from underneath the rubble. Brushing debris and ash caked onto the object reveals the insignia of a gold anchor on white, enameled on the surface: the sign of Theramore.$b$bUnderneath the anchor is embossed the name \"Lieutenant Paval Reethe\".", + ["O"] = "Bring Reethe\'s Badge to Krog in Brackenwall Village.", + ["T"] = "Lieutenant Paval Reethe", + }, + [1270] = { + ["D"] = "Great, finally something that doesn\'t want to eat me!!$B$BI need help handling the critters around here, and you fit the mold, $gbuddy:lady;.$B$BA goblin from Ratchet named Mebok Mizzyrix needs some bogbean leaves for a potion, or something... I honestly don\'t care why -- his money was good and I know this swamp, so here I am.$B$BToo bad I got myself surrounded before I found the bogbean! Can you help me out of here, and watch my back as I look for Mebok\'s plant?", + ["O"] = "Escort \"Stinky\" Ignatz, then speak with Mebok Mizzyrix in Ratchet.", + ["T"] = "Stinky\'s Escape", + }, + [1271] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Feast at the Blue Recluse", + }, + [1273] = { + ["D"] = "It took a long time, but I found Reethe. He hide good for a human.$b$bOgron worried that he might be crazy after so much time in swamp. You come with me for we go get answers from him.", + ["O"] = "Go with Ogron to speak with Reethe, then return to Krog in Brackenwall Village.", + ["T"] = "Questioning Reethe", + }, + [1274] = { + ["D"] = "Excuse me, $g sir : madam;. Bishop DeLavey asked me to approach adventurers that might be able to help him with a delicate matter.$B$BIf you could quietly head to Stormwind Keep and speak to him at your earliest convenience, I\'m sure he would appreciate your help. Again, please be discreet. It is a matter of some importance.", + ["O"] = "Find Bishop DeLavey in Stormwind Keep.", + ["T"] = "The Missing Diplomat", + }, + [1275] = { + ["D"] = "Foolish blood elves toil with demonic magic. Have they not witnessed what happened with the naga and with the satyrs of Kalimdor?$b$bI fear that the blood elves will meet a similar deformation. Azeroth cannot afford to give birth to another vile race of monsters.$b$bI wish to study the brain stems of the satyr and naga so that I might deduce what fate the elves are headed toward. In Blackfathom Deeps, on the coast of Ashenvale, you will find both satyr and naga.$b$b\'Tis a long journey, $n.", + ["O"] = "Gershala Nightwhisper in Auberdine wants 8 Corrupt Brain stems.", + ["T"] = "Researching the Corruption", + }, + [1276] = { + ["D"] = "Ah, I remember now! Mosarn is a well-respected blacksmith in Thunder Bluff. I knew I had heard his name somewhere, before.$b$bIn thanks, the Earthen Ring awarded me with a set of armor crafted by Mosarn. Very good work.$b$bPerhaps he can tell you more about the shield he crafted.$b$bIt\'s not much of a lead, but since we didn\'t get anything useful out of Reethe, it\'s all we have.", + ["O"] = "Show the Blackened Iron Shield to Mosarn in Thunder Bluff.", + ["T"] = "The Black Shield", + }, + [1277] = { + ["D"] = "Kagoro has revealed that the centaur hoofprints belong to some chumps in Mauradon.", + ["O"] = "Beat down.", + ["T"] = " The Centaur Hoofprints", + }, + [1278] = { + ["D"] = "", + ["O"] = "", + ["T"] = " The Grim Totem Clan", + }, + [1279] = { + ["D"] = "Finish one of the three.", + ["O"] = "", + ["T"] = " The Centaur Hoofprints", + }, + [1280] = { + ["D"] = "", + ["O"] = "", + ["T"] = " The Centaur Hoofprints", + }, + [1281] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Jim\'s Song ", + }, + [1282] = { + ["D"] = "I can\'t help it if I feel sorry for ol\' Jim there. He wasn\'t always like that. Ran an inn out in the marsh for a while, wonderful place.$b$bLook, I don\'t really want to talk about it. Bring it up with Captain Vimes if you really have to.", + ["O"] = "Speak with Captain Garran Vimes in Theramore.", + ["T"] = "They Call Him Smiling Jim", + }, + [1283] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Fire at the Shady Rest ", + }, + [1284] = { + ["D"] = "Rows of hoofprints lead away from the still-smoking skeleton of the Shady Rest Inn. There are at least a few visible impressions, with more rows of prints almost imperceptible in the soft mud of the marsh.", + ["O"] = "Report about the suspicious prints at the Shady Rest Inn to Captain Garran Vimes in Theramore.", + ["T"] = "Suspicious Hoofprints", + }, + [1285] = { + ["D"] = "Reddon... Redpath... Ah, here it is! Lieutenant Paval Reethe.$b$bJoined the Theramore guard along with most of the recruits that came across the sea with Lady Proudmoore. Enlisted with the marines of Kul Tiras at the age of sixteen. Distinguished service, promotions...$b$bListed as missing.", + ["O"] = "Return the information about Reethe to Captain Garran Vimes in Theramore.", + ["T"] = "Daelin\'s Men", + }, + [1286] = { + ["D"] = "It has been a struggle maintaining a presence in the marsh, but through strength of our resolve, we have been able to maintain several defensive watchtowers throughout the area.$b$bThe latest information and scouting reports I have received indicate that a group of deserters has squatted in our abandoned tower at Lost Point, southeast of the inn.$b$bThe deserters\' leader is a man named Jacken. See if you can get some information out of him.$b$bBe warned, $n. He may be a tough nut to crack.", + ["O"] = "Get information about Reethe from Balos Jacken and the deserters in Dustwallow Marsh.", + ["T"] = "The Deserters", + }, + [1287] = { + ["D"] = "Reethe? That coward?$b$bWe threw him out of camp because he insisted on raiding the supplies of the ogres up at Brackenwall Village. We\'re not so many in number that we could stand up to those mindless brutes.$b$bHe crossed the line one too many times, so we left him to fend for himself.$b$bNow, I helped you out... So, why don\'t you help us out and forget you bumped into us?", + ["O"] = "Speak with Captain Garran Vimes in Theramore about Reethe.", + ["T"] = "The Deserters", + }, + [1288] = { + ["D"] = "You\'ve done some good work, $n, best I\'ve seen from an amateur.$b$bLady Proudmoore asked that I keep her apprised of this delicate situation, and I haven\'t spoken to her for some time now.$b$bI was going to deliver my report to her later, but it seems more fitting that you should be the one to speak with her about it. You can probably answer her questions better than I could.", + ["O"] = "Bring Vimes\'s Report to Lady Jaina Proudmoore in Theramore.", + ["T"] = "Vimes\'s Report", + }, + [1289] = { + ["D"] = "Well. judging from Captain Vimes\'s report. you\'ve been a huge help to his investigation. and for that I thank you.$B$BI can put my mind more at ease knowing that the matter is in such capable hands. If you would. I would request that you return to Captain Vimes and help him in getting to the bottom of this mystery.", + ["O"] = "Return to Captain Garran Vimes in Theramore.", + ["T"] = "Vimes\'s Report", + }, + [1293] = { + ["D"] = "", + ["O"] = "", + ["T"] = " Centaur Hoofprints", + }, + [1294] = { + ["D"] = "", + ["O"] = "", + ["T"] = " Centaur Sympathies", + }, + [1295] = { + ["D"] = "", + ["O"] = "", + ["T"] = " Course of Action", + }, + [1296] = { + ["D"] = "", + ["O"] = "", + ["T"] = " Course of Action", + }, + [1297] = { + ["D"] = "", + ["O"] = "", + ["T"] = " Course of Action", + }, + [1299] = { + ["D"] = "", + ["O"] = "", + ["T"] = " Thrall\'s Dirty Work", + }, + [1300] = { + ["D"] = "", + ["O"] = "", + ["T"] = " Lorn Grim Totem", + }, + [1301] = { + ["D"] = "Before working here at the Blue Recluse, I was trained by one of the best chefs and innkeepers I\'d ever met. His name was James Hyal. Everything I have and everywhere I\'ve gotten in life is thanks to him.$b$bI wonder how he\'s doing. His brother Vincent and he went to work in a tavern in Menethil Harbor, but I haven\'t heard from him recently.$b$bIf you ever happen to be headed in that direction, maybe you could say hello to him for me?", + ["O"] = "Speak with Vincent Hyal in Menethil Harbor.", + ["T"] = "James Hyal", + }, + [1302] = { + ["D"] = "My brother James went with Lady Proudmoore across the sea. Last I heard, the fighting had settled down over there, and James was setting up an inn somewhere on the continent. Wherever he is, I\'m sure he\'s doing good business. Damn fine cook he was.$b$bI haven\'t heard from him for a while now--too busy with his inn, I\'d wager--but the clerk in Theramore could probably point you to him.", + ["O"] = "Speak with Clerk Lendry in Theramore.", + ["T"] = "James Hyal", + }, + [1318] = { + ["D"] = "Now you da king, so maybe you get prized Gordok artifact back from creepy elf who calls himself Prince! Da king before you failed, just like all da other kings since Tortheldrin - da creepy elf - stole it from old timey Gordok king!$B$BArtifact is called da Gauntlet of Gordok Might. Old timey stories say only da one true king da Gordok can get it back. Old timey story also say creepy elf is still around here - you find it and it will become mighty gauntlet you wear forever! Yar, I show you!", + ["O"] = "Find the Gauntlet of Gordok Might and return it to Captain Kromcrush in Dire Maul.$B$BAccording to Kromcrush, the \"old timey story\" says that Tortheldrin - a \"creepy\" elf who called himself a prince - stole it from one of the Gordok kings.", + ["T"] = "Unfinished Gordok Business", + }, + [1319] = { + ["D"] = "I\'m sorry I can\'t be of much help, $n, but I can refer you to someone who would be. Caz Twosprocket, one of our best blacksmiths, works the forge at the smithy.$b$bTake the shield to him, and see what he can tell you.", + ["O"] = "Show the Blackened Iron Shield to Caz Twosprocket in Theramore.", + ["T"] = "The Black Shield", + }, + [1320] = { + ["D"] = "Ah, I almost missed this... The leather strap on the back must have burned off, but it seems like it was made to fit a large person. I\'d guess a tauren, actually.$b$bThat\'s about all I can tell you. Tell Captain Vimes I\'m sorry I couldn\'t be of more help.", + ["O"] = "Speak with Captain Garran Vimes in Theramore.", + ["T"] = "The Black Shield", + }, + [1321] = { + ["D"] = "Hmm... I don\'t see anything out of the ordinary with this shield. We should have Do\'gol, the blacksmith, take a look at it, and see if he can tell us more about it, but I wouldn\'t hold out hope...", + ["O"] = "Show the Blackened Iron Shield to Do\'gol in Brackenwall Village.", + ["T"] = "The Black Shield", + }, + [1322] = { + ["D"] = "Hmmm, there\'s writing right here on the rim of the shield, but it\'s hard to read from all the burned stuff.$b$bI need acid to make it clear. Venom from the Darkfang spiders in the marsh would do good. Get me some of their sacs and I can clean this up.", + ["O"] = "Acquire 6 Acidic Venom Sacs for Do\'gol in Brackenwall Village.", + ["T"] = "The Black Shield", + }, + [1323] = { + ["D"] = "Oh, I think I might have dropped too much acid onto the shield. Let me just rub a little...$b$bHm, kind of hard to read, but it looks like the name Mosarn. Never heard of him. Maybe Krog knows. Krog knows many people.", + ["O"] = "Talk with Krog in Brackenwall Village.", + ["T"] = "The Black Shield", + }, + [1324] = { + ["D"] = "What?! You come here accusing me of allying with the Defias, and think I\'ll just stand here while you insult me?! Something tells me you\'ve had this coming for a long time.", + ["O"] = "Defeat Private Hendel in Dustwallow Marsh.", + ["T"] = "The Missing Diplomat", + }, + [1338] = { + ["D"] = "There is a dwarven armorsmith whose work I admire greatly. His name is Furen Longbeard, and his skill is unmatched. I need a new shield, and I must have one of his!$B$BThe problem is... Furen is far to the south, in the dwarven district within Stormwind. In human lands! I can\'t imagine why he would live there, so far from Ironforge. The humans must pay him a king\'s ransom to keep him there!$B$BSo, if you want to travel and don\'t mind making some money, then will you send Furen my request for a shield?", + ["O"] = "Bring Stormpike\'s Request to Furen Longbeard in Stormwind.", + ["T"] = "Stormpike\'s Order", + }, + [1339] = { + ["D"] = "I hear Mountaineer Stormpike is looking for a runner. Someone to do a little traveling for him. How about it? Are you the $r for the job?$B$BIf so, then you\'ll find Stormpike at the top of the northern guard tower.", + ["O"] = "Speak with Mountaineer Stormpike.", + ["T"] = "Mountaineer Stormpike\'s Task", + }, + [1358] = { + ["D"] = "A colleague in Kalimdor, Apothecary Helbrim, is researching the effects of Lordaeron toxins on the beasts of Kalimdor. He would be very interested in a sample of the wolf hearts Renferrel sent me.$B$BHelbrim is stationed in the Barrens, in a village known as the Crossroads. To reach him, you must travel via zeppelin to the orc capital of Orgrimmar, then travel south, by foot, to Durotar. Head west into the Barrens, and you will soon reach the Crossroads.", + ["O"] = "Bring the Wolf Heart Sample to Apothecary Helbrim in the Barrens.", + ["T"] = "Sample for Helbrim", + }, + [1359] = { + ["D"] = "The wolf hearts you acquired possess a quality unseen in similar specimens. There is a toxicity to them that should be deadly to the very wolves in which the hearts beat!$B$BIt\'s quite incredible, and we must study it further. I kept a few samples of the hearts acquired. Take them to my colleague, Apothecary Zinge. You will find her in our headquarters in the Undercity.", + ["O"] = "Bring the Wolf Heart Samples to Apothecary Zinge in the Undercity.", + ["T"] = "Zinge\'s Delivery", + }, + [1360] = { + ["D"] = "I had myself a fine job as a digger at the Uldaman excavation site in the Badlands... that is until those blasted troggs showed up. I escaped with my hide barely intact, and nothing else. In the chaos, I left my most treasured possession. It\'s safe from the troggs in my chest, sure, but it\'s right in the thick of \'em.$B$BI\'d be in your debt, both in honor and coin, if you could fetch it for me! A chest with my name on it is at the end of the North Common Hall. That\'s the one you need to get in.", + ["O"] = "Get Krom Stoutarm\'s treasured possession from his chest in the North Common Hall of Uldaman, and bring it to him in Ironforge.", + ["T"] = "Reclaimed Treasures", + }, + [1361] = { + ["D"] = "A warrior of the Horde, Regthar Deathgate, is recruiting agents for a mission into the land of Desolace. Speak with him if you wish to volunteer. He is stationed in the Barrens, in a series of bunkers west of the Crossroads.$B$BAnd sharpen your weapons. Desolace is a place torn by war.", + ["O"] = "Speak with Regthar Deathgate.", + ["T"] = "Regthar Deathgate", + }, + [1362] = { + ["D"] = "The Kolkar centaur live in Desolace, and their forces have spread into the Barrens. This is a known fact and we have Horde agents dealing with them here.$B$BBut as long as the centaur are strong in Desolace, they will always pose a threat. It is time we rid ourselves of that threat.$B$BSpeak with Felgur Twocuts at Ghost Walker Post in Desolace. He was sent to gather intelligence on the centaur. He will know how to best deal with the Kolkar of Desolace.", + ["O"] = "Speak with Felgur Twocuts at Ghost Walker Post in Desolace.", + ["T"] = "The Kolkar of Desolace", + }, + [1363] = { + ["D"] = "As caretaker of the works here in the library of the Academy of Arcane Arts and Sciences, it is my responsibility to ensure all the magical tomes and scrolls are accounted for at all times. Who knows what folly would unfold if some of these enchanted texts were to fall into the wrong hands?$b$bWhich reminds me... my assistant, Dellis, made a horrible mistake last week. He\'s quite able in the library but incompetent when he leaves the gates of Stormwind. Be a hero, and help old Dellis out, would you?", + ["O"] = "Speak with Acolyte Dellis in Stormwind.", + ["T"] = "Mazen\'s Behest", + }, + [1364] = { + ["D"] = "Master Mazen\'s directions were quite clear: Deliver a very important essay to Watcher Mahar Ba in Nethergarde Keep.$b$bBut I had never been to the Blasted Lands before! The journey was frightening!$b$bWhen I got to the Swamp of Sorrows, I made a wrong turn and ended up surrounded by horrible plant-like swamp creatures. They lurched as if to attack me so I ran. But in my haste I dropped the essay. One of the beasts took it I am sure.$b$bCould you please try to retrieve it and deliver it to Mahar Ba?", + ["O"] = "Retrieve Khadgar\'s Essays on Dimensional Convergence and deliver them to Watcher Mahar Ba in Nethergarde Keep.", + ["T"] = "Mazen\'s Behest", + }, + [1365] = { + ["D"] = "The Kolkar are not the only centaur of Desolace. Many clans wander these dry plains, fighting and dying against each other. And it is good that they fight among themselves, for they are strong and brutal. If the centaur united against us, they would be a fierce foe.$B$BWe must deal with them before they unite.$B$BYour first task is to disrupt the Kolkar clan. Do this by killing its leader, Khan Dez\'hepah.$B$BThe Kolkar Village is northeast of here. Go, and may fortune go with you.", + ["O"] = "Bring Khan Dez\'hepah\'s Head to Felgur Twocuts in Desolace.", + ["T"] = "Khan Dez\'hepah", + }, + [1366] = { + ["D"] = "Now that you scared the centaur clans, it\'s time to bleed them. When traveling Desolace, hunt centaur. I don\'t care which clan you hunt. Just gather ears. A hoard of ears.$B$BBy weakening their numbers you will weaken their resolve, and stamp out any thoughts of expansion.$B$BGood hunting, $N.", + ["O"] = "Bring 15 Centaur Ears to Felgur Twocuts in Desolace.", + ["T"] = "Centaur Bounty", + }, + [1367] = { + ["D"] = "To beat the centaur, we must use their hatred against them. We will ally with one of the clans and through them, we will learn how to defeat all the clans.$B$BIf you choose to ally with the Magram then slay their foes, the Gelkis. This will earn you respect among the Magram. When you earn enough, then meet with the Magram spokesman Warug, on the outskirts of the Magram Village, in southeast Desolace.", + ["O"] = "Gain a Friendly reputation with the Magram, then speak with Warug.", + ["T"] = "Magram Alliance", + }, + [1368] = { + ["D"] = "To beat the centaur, we must use their hatred against them. We will ally with one of the clans and through them, we will learn how to defeat all the clans.$B$BIf you choose to ally with the Gelkis then slay their most hated rival, the Magram. After you earn the respect of the Gelkis, meet with the Gelkis shaman Uthek the Wise, on the outskirts of the Gelkis Village, in southwest Desolace.", + ["O"] = "Gain a Friendly reputation with the Gelkis, then speak with Uthek the Wise.", + ["T"] = "Gelkis Alliance", + }, + [1369] = { + ["D"] = "The Gelkis think our centaur mother, Theradras, protects us. They are stupid. No one protects the centaur. The Magram do not need protection! We are the strongest!$B$BShow the Gelkis they are stupid. Go to the cave in their village. They hoard crystals in that cave, the tears of Theradras. Destroy the tears and bring me the broken pieces!", + ["O"] = "Maintain your reputation with the Magram, and bring 3 Broken Tears to Warug in the Magram Village.", + ["T"] = "Broken Tears", + }, + [1370] = { + ["D"] = "When we are not at war, we hunt for meat. Meat gives us strength, and full bellies fight harder than empty ones.$B$BIt is the same with the Magram. They store extra meat so they may fight longer between hunts. If you raid their village to the east and take their stores of meat, then their strength will fail.", + ["O"] = "Bring 6 bags of Crudely Dried Meat to Uthek the Wise in the Gelkis Village.", + ["T"] = "Stealing Supplies", + }, + [1371] = { + ["D"] = "Long ago, a little gnome came to Desolace. He had horses and a cart, and the cart held strange things. Funny things. Things that burned different colors. Things that moved and weren\'t alive. I killed the little gnome, but before that... he made me laugh.$B$BI kept my favorite thing from his cart. It was a human made of wood and it waved at me until I hit it and broke it.$B$BI want a new one. Get me a new one!", + ["O"] = "Maintain your reputation with the Magram, and bring an Advanced Target Dummy to Warug in the Magram Village in Desolace.", + ["T"] = "Gizmo for Warug", + }, + [1372] = { + ["D"] = "Our expeditionary force was sent at Varimathras\'s behest to survey lower Azeroth.$b$bWhile out scouting I noticed a human Infiltrator spying on Beggar\'s Haunt. Before I could apprehend him, some of our orcish... brethren... captured him and took him to Stonard, their stronghold in Swamp of Sorrows.$b$bI want to... help... our orcish allies. They did not see our camp here but nonetheless I want to lend a hand.$b$bWork with Faustin here to develop a... truth serum for our friend in Stonard.", + ["O"] = "Speak with Apothecary Faustin at Beggar\'s Haunt.", + ["T"] = "Nothing But The Truth", + }, + [1373] = { + ["D"] = "You have more to prove, and your next task will take you far, so for now the Gelkis will fight the Magram without you.$B$BThe earth whispers many secrets to those who listen. One secret I hear is of a red crystal. It is called draenethyst, and it is new to our earth. It comes from a place where mountains fly, and where demons rule.$B$BBring me a shard of draenethyst, and it will make my magic strong! The shard is in a place called the Swamp of Sorrows, held by the lost one Ongeku.", + ["O"] = "Maintain your reputation with the Gelkis, and bring a Draenethyst Shard to Uthek the Wise in the Gelkis Village in Desolace.", + ["T"] = "Ongeku", + }, + [1374] = { + ["D"] = "The earth speaks to me, and it says that the Magram grow weak. Now it is time to kill their Khan!$B$BBring me the head of the Magram Khan, Jehn!", + ["O"] = "Bring the Khan Jehn\'s Head to Uthek the Wise in the Gelkis Village in Desolace.", + ["T"] = "Khan Jehn", + }, + [1375] = { + ["D"] = "You help the Magram, and I like you. Now, kill the Khan of the Gelkis! He is Khan Shaka, and I want his head! I want to stare at his head and laugh at him!", + ["O"] = "Maintain your reputation with the Magram, and bring the Head of Khan Shaka to Warug in the Magram Village in Desolace.", + ["T"] = "Khan Shaka", + }, + [1380] = { + ["D"] = "$N, you helped us against the Magram. Now, help us beat the Maraudine! Kill the head of their clan, Khan Hratha!$B$BTo face him, blow the Maraudine War Horn. It is atop a high bluff in the Valley of Spears.$B$BBut to blow the horn, you must gain a warhorn mouthpiece. These are rare, carried only by trusted Maraudine centaur.$B$BAfter the horn is blown, centaur will come. Kill them until Hratha appears.$B$BKhan Hratha holds the piece of... a key. Bring it to me...", + ["O"] = "Maintain your reputation with the Gelkis, and bring the Maraudine Key Fragment to Uthek the Wise in the Gelkis Village.", + ["T"] = "Khan Hratha", + }, + [1381] = { + ["D"] = "The Gelkis Khan is dead, and now the Maraudine will fall! Kill the Maraudine Khan, Hratha!$B$BTo face him, blow the horn on the high bluff in the Valley of Spears. But to blow the horn, you need a mouthpiece. To get a mouthpiece, kill Maraudine centaur. Keep killing until you find a mouthpiece. Then blow the horn.$B$BDo this and Maraudine centaur will come to the tower. Kill them until Khan Hratha appears. Hratha holds the piece of a key. Give this piece to me...", + ["O"] = "Maintain your Magram reputation, and bring the Maraudine Key Fragment to Warug in the Magram Village in Desolace.", + ["T"] = "Khan Hratha", + }, + [1382] = { + ["D"] = "We are fortunate the centaur clans fight among themselves, for if they joined into a single force then they would be unstoppable. Yes, we are fortunate, and we should press our advantage.$B$BOne of the centaur clans, the Gelkis clan, is in brutal war with the Magram clan. If we attack the Magram, then perhaps an alliance may be struck with the Gelkis.$B$BSpeak with Uthek the Wise, in the outskirts of the Gelkis camps in southwestern Desolace. Through her we might strike an alliance with the Gelkis.", + ["O"] = "Gain a Friendly reputation with the Gelkis, then speak with Uthek the Wise.", + ["T"] = "Strange Alliance", + }, + [1383] = { + ["D"] = "I have just the right serum in mind. It will deal with the truth in precisely the way the truth should be dealt with.$b$bFor this concoction I will need several Shadow Panther hearts from the Swamp. I also require the enchanted fungus off of the Mire Lord who resides there. I am sure one as able as you, $n, can persuade him to part with some.$b$bNow the hard part will be locating a Deepstrider tumor from far-off Desolace. Very rarely the giants there become ill and a tumor forms.$b$bNow, off you go!", + ["O"] = "Apothecary Faustin at Beggar\'s Haunt needs 5 Shadow Panther Hearts, Mire Lord Fungus and a Deep Strider Tumor.", + ["T"] = "Nothing But The Truth", + }, + [1384] = { + ["D"] = "The Kolkar centaurs think their magic is strong. They do not know magic! They would not know magic if it bit them!$B$BYou will show them their magic is weak. Go to the Kolkar to the northeast and kill them. Take their charms. Bring me the charms and I will throw them in the fire and laugh!", + ["O"] = "Maintain your reputation with the Gelkis, and bring 10 Crude Charms to Uthek the Wise in the Gelkis Village in Desolace.", + ["T"] = "Raid on the Kolkar", + }, + [1385] = { + ["D"] = "Desolace is a land at war. The centaurs wage war with each other, and we believe the victor among them will spill out and threaten our strongholds. That, we cannot allow$B$BWe must learn how to beat the centaurs, and to do that... we must ally with one of the clans. The Magram centaurs war with the Gelkis. If you fight the Gelkis then the Magram might consider an alliance.$B$BEarn the favor of the Magrams then speak with Warug, in the Magram village in southeastern Desolace.", + ["O"] = "Gain a Friendly reputation with the Magram, then speak with Warug.", + ["T"] = "Brutal Politics", + }, + [1386] = { + ["D"] = "The Kolkar think they are strong, but we laugh at them! We laugh and we kill them! You kill them too. Show me you can kill Kolkar like we do. Head north and slay them all!", + ["O"] = "Maintain your reputation with the Magram. Kill 12 Kolkar Centaurs, 12 Kolkar Scouts and 6 Kolkar Maulers, then return to Warug in the Magram Village in Desolace.", + ["T"] = "Assault on the Kolkar", + }, + [1387] = { + ["D"] = "Many clans make up the centaur race. Each has its own leader and agenda, but all the clans have one thing in common. Cruelty.$B$BIf we are to ever find peace, then the centaurs must be removed. And so I put you on the task to do just that.$B$BWhile wandering Desolace, hunt centaur and take their ears. Bring me many, many ears.$B$BDo this in service of the Alliance, $N, and we will be one step closer to war\'s end.", + ["O"] = "Bring 15 Centaur Ears to Corporal Melkins at Nijel\'s Point in Desolace.", + ["T"] = "Centaur Bounty", + }, + [1388] = { + ["D"] = "Everything is proceeding according to plan, $n. I want you to give this truth serum to Deathstalker Zraedus and he\'ll show you how to administer it.... properly.$b$bHaha!", + ["O"] = "Give Faustin\'s Truth Serum to Deathstalker Zraedus at Beggar\'s Haunt.", + ["T"] = "Nothing But The Truth", + }, + [1389] = { + ["D"] = "The lost ones who live in the Fallow Sanctuary look as we look, but they are monsters... driven mad by the rigors of our journey to Azeroth. Once our brethren, they now live in the Fallow Sanctuary to the east, catching or killing any who wander near.$B$BAnd they have stolen something sacred to us--draenethyst crystals.$B$BWe lack the force to enter the Fallow Sanctuary and reclaim our stolen draenethyst from among their huts and campfires, but without those crystals... we too may lose our way.", + ["O"] = "Bring 6 Draenethyst crystals to Magtoor at The Harborage in the Swamp of Sorrows.", + ["T"] = "Draenethyst Crystals", + }, + [1390] = { + ["D"] = "Missing text", + ["O"] = "Missing text", + ["T"] = "Oops, We Killed Them Again.", + }, + [1391] = { + ["D"] = "We need to operate with a certain amount of discretion. After all, it\'s not like you\'re going to waltz in there and convince the fool to drink Faustin\'s concoction here, right?$b$bBut if there\'s one thing those humans cannot deny it\'s the booze. I\'ll take Faustin\'s serum and mix it into this ale. I guarantee the poor sap will show no reluctance when it comes to chug-a-lugging a brew.$b$bMake haste to Stonard in the Swamp of Sorrows, $n. And keep our little mission nice and quiet...", + ["O"] = "Take Zraedus\'s Brew to Infiltrator Marksen in Stonard.", + ["T"] = "Nothing But The Truth", + }, + [1392] = { + ["D"] = "Noboru has plagued the Draenei of the Harborage for months, and his cudgel is a symbol of the brutality they have suffered at the hands of the lost ones.", + ["O"] = "Bring Noboru\'s Cudgel to the leader of The Harborage in the Swamp of Sorrows.", + ["T"] = "Noboru the Cudgel", + }, + [1393] = { + ["D"] = "Please help! These creatures are going to eat me!$B$BHelp me out of here, and I\'ll give you a great treasure! It\'s in my camp in the swamp north of Stonard, but it\'s locked in a strongbox that can be opened through a trick that only I know.$B$BIf you help me escape, then I\'ll teach it to you.", + ["O"] = "Escort Galen out of danger, then find his camp in the Swamp of Sorrows and open his strongbox.", + ["T"] = "Galen\'s Escape", + }, + [1394] = { + ["D"] = "You have done well, $N. You have passed my test, and the tests before mine. Return to Dorn in Thousand Needles. He will sense the change within you, and see that your mind, body and spirit are strong enough that you should be rewarded for your efforts.$B$BStay true to the balance you\'ve shown throughout these trials, $N. Dorn will test you again in the future if you do.", + ["O"] = "Speak to Dorn Plainstalker in Thousand Needles.", + ["T"] = "Final Passage", + }, + [1395] = { + ["D"] = "This crate of powerstones needs to go to Nethergarde Keep, in the Blasted Lands. They won\'t hold their power for long, so we can\'t ship them with the next caravan.$B$BYou must take them, and you must take them quickly.$B$BBring them to Quartermaster Lungertz in Nethergarde Keep. To reach the keep, you must travel east through Deadwind Pass, then east through the Swamp of Sorrows, then south through the Blasted Lands.$B$BUse caution, $N. You will travel through dangerous lands, yet you must not fail.", + ["O"] = "Bring the Crate of Powerstones to Quartermaster Lungertz, before the powerstones expire.", + ["T"] = "Supplies for Nethergarde", + }, + [1396] = { + ["D"] = "My caravan was destined for the eastern coast, but we did not reach our goal. Lost Ones attacked us, killing guards and dashing supplies.$B$BI alone survived their assault. I have sworn to protect what supplies remain, but wild creatures skulk near. Please, help me defend my camp from the beasts!", + ["O"] = "Kill 8 Young Sawtooth Crocolisks, 10 Sorrow Spinners and 10 Swamp Jaguars then return to Watcher Biggs in the Swamp of Sorrows.", + ["T"] = "Encroaching Wildlife", + }, + [1398] = { + ["D"] = "I owe you greatly, $N. An honorable heart beats within you. And now I have another task for which I humbly ask your aid.$B$BIf I\'m ever to reach Nethergarde, then I must fix this wagon. And for that... I will need wood. Strong, dry wood--not the spongy, tangled wood of the swamp\'s trees.$B$B$N, go east to the coast and search for driftwood that has been dried by the sun. Bring it to me.", + ["O"] = "Bring 8 pieces of Sundried Driftwood to Watcher Biggs in the Swamp of Sorrows.", + ["T"] = "Driftwood", + }, + [1418] = { + ["D"] = "The Badlands is harsh and lies close to the Alliance-held land of Loch Modan, so communication between Stonard and the Badlands outpost of Kargath is often cut.$B$BProve yourself, $N. Travel to the Badlands and speak with Neeka Bloodscar, head scout of the Kargath outpost. Speak with her, and then send her report back to me.", + ["O"] = "Speak with Neeka Bloodscar.", + ["T"] = "Neeka Bloodscar", + }, + [1419] = { + ["D"] = "Have you spent many days in the Badlands, $c? Have you felt its heat? Have you faced the beasts that wander its dusty plains? It\'s time you did.$B$BCrag coyotes are a tough breed. Tough, and bold enough to creep into Kargath and steal from our food supplies. Help rid the outpost of these thieves!$B$BHunt crag coyotes, $N. Hunt them and bring me their jawbones. Bring me enough, and maybe I\'ll believe it when you say you know the Badlands.", + ["O"] = "Bring 30 Coyote Jawbones to Neeka Bloodscar in Kargath.", + ["T"] = "Coyote Thieves", + }, + [1420] = { + ["D"] = "I wrote a fresh report for Helgrum in Stonard. Bring it to him.$B$BAnd if you consider yourself an outrunner, then don\'t lose your way. Or fall to an enemy.", + ["O"] = "Bring Neeka\'s Report to Helgrum the Swift in Stonard.", + ["T"] = "Report to Helgrum", + }, + [1421] = { + ["D"] = "I was stunned during the attack by the Lost Ones, but before my sight went black I spied one of our wagons being dragged to the Fallow Sanctuary, the lost one village to the north.$B$BA caravan chest with valuable reagents was in that wagon, reagents vital to the studies of the wizards of Nethergarde Keep. Find the chest and get those reagents, $N. Get them and bring them to me.", + ["O"] = "Find the Caravan Chest in the Fallow Sanctuary, obtain the Wizards\' Reagents and bring to Watcher Biggs.", + ["T"] = "The Lost Caravan", + }, + [1422] = { + ["D"] = "While I begin work on your weapon, why don\'t you talk to Katar? He mentioned needing help with patrols along the beach, and I\'d rather see you keep your wits and weapons prepared instead of getting drunk with some of the other louses I share this camp with.", + ["O"] = "Speak to Katar in the Swamp of Sorrows.", + ["T"] = "Threat From the Sea", + }, + [1423] = { + ["D"] = "This barrel is small yet sturdy. Its seams are sealed with a yellow, pungent wax. Stamped on the bottom of the barrel are the words:$B$BQUARTERMASTER LUNGERTZ$B$BNETHERGARDE KEEP", + ["O"] = "Bring the Lost Supplies to Quartermaster Lungertz.", + ["T"] = "The Lost Supplies", + }, + [1424] = { + ["D"] = "The Warchief sent us to investigate strange happenings at The Temple of Atal\'Hakkar.$b$bThe Atal\'ai trolls are a tribe of dark casters, known for practicing forbidden magic. You can imagine how astonished we were when we arrived here to discover the temple had been sunk.$b$bThe green dragons now guard the site, claiming to be protectors of Azeroth.$b$bWe need to discover what happened. Explore around the Pool of Tears and gather Atal\'ai artifacts. From those I can begin to piece together this puzzle.", + ["O"] = "Fel\'zerul in Stonard wants you to gather 10 Atal\'ai Artifacts.", + ["T"] = "Pool of Tears", + }, + [1425] = { + ["D"] = "While I fix this wagon, $N, I have one last task for you.$B$BI have packed the most vital supplies saved from the ogre attacks. Take them to Nethergarde Keep. The keep is nestled in the northern hills of the Blasted Lands, keeping watch over the Dark Portal.$B$BTo reach Nethergard, follow the road east. When it branches head south into the Blasted Lands, then turn left at the next fork. Follow the road, $N, and be wary.", + ["O"] = "Bring the Shipment to Nethergarde to Quartermaster Lungertz in Nethergarde Keep.", + ["T"] = "Deliver the Shipment", + }, + [1426] = { + ["D"] = "I have no love for the sea, nor any creature I\'ve seen come from its depths. It is a powerful but blind mistress; callous and brutal. It would bring me great pleasure to slay the fish men by the hundreds if it were within my power. But I garner some pleasure from watching their deaths at the hands of any who do the Horde\'s will.$B$BWhich brings us to you, $c. How many can you slay? Would you test yourself against their most powerful kind?", + ["O"] = "Kill 10 Marsh Murlocs, 10 Marsh Inkspewer, and 10 Marsh Flesheater, then return to Katar in the Swamp of Sorrows.", + ["T"] = "Threat From the Sea", + }, + [1427] = { + ["D"] = "Before you take rest, speak to Tok\'Kar again. While you were gone I believe he finished a few weapons. For your help here, he would offer one of them to you. You would do well to test its strength against the fish men when you are ready... but only to please me further.", + ["O"] = "Speak with Tok\'Kar in the Swamp of Sorrows.", + ["T"] = "Threat From the Sea", + }, + [1428] = { + ["D"] = "It pleases me to see your hatred for the fish men grows with mine.$B$BFind more of their kind along the beach, and when you\'ve had your fill of combat, return to me. We shall speak then of a reward for your diligence.", + ["O"] = "Kill 10 Marsh Inkspewers, 10 Marsh Flesheaters, and 10 Marsh Oracles, then return to Katar in the Swamp of Sorrows.", + ["T"] = "Continued Threat", + }, + [1429] = { + ["D"] = "While you were braving the dangers of the Pool of Tears, one of my scouts returned with a scroll written in blood on dried flesh. It seems to be a judicial sentence against a priest of the Atal\'ai tribe.$b$bThis priest was sentenced to a fate worse than death amongst the Atal\'ai.$b$bHe was exiled to live far north in the Hinterlands, with the Witherbark trolls.$b$bI will bundle these artifacts. You are to seek out the exile and discover their true use. Return to me once your journey is complete.", + ["O"] = "Bring the Bundle of Atal\'ai Artifacts to the Atal\'ai Exile in the Hinterlands.", + ["T"] = "The Atal\'ai Exile", + }, + [1430] = { + ["D"] = "There\'s a high demand for the succulent taste of crawler meat among my customers; especially the meat from the monstrous crawlers.$B$BIf you plan on heading to the coast, then I could easily make it worth your while to bring me back some of their legs to have transported back to Orgrimmar.$B$BThe coast is to the east from here, and you should have no problem finding the creatures scurrying along the beaches and under the sea.", + ["O"] = "Bring 10 Monstrous Crawler Legs to Dar in the Swamp of Sorrows.", + ["T"] = "Fresh Meat", + }, + [1431] = { + ["D"] = "Be still, $c, and allow me to share with you something important to our people, but far from obvious.$B$BWe are a proud race, and the war with the humans tried even Thrall\'s great patience. You see, our Warchief is wise and prudent, and he continues to put his people first. Ultimately, he is a diplomat, and in his time with the humans he learned much of their ways.$B$BIf the tale I\'ve started piques your interest, then find Keldran near the western exit of the city. His hovel is there.", + ["O"] = "Speak to Keldran in Orgrimmar.", + ["T"] = "Alliance Relations", + }, + [1432] = { + ["D"] = "As the Alliance progresses deeper and deeper into Kalimdor, incorrect conclusions may be drawn about the Horde making pacts with the Burning Legion. The Warchief cannot allow that to happen. And with his blessing, I am taking control of overseeing them removed.$B$BI have agents in the area of Desolace at the Ghost Walker Post north of the great Kodo Graveyard. Head south of the Charred Vale in the Stonetalon Mountains and you shall come across it. When you arrive, seek out Takata Steelblade.", + ["O"] = "Speak to Takata Steelblade in Desolace.", + ["T"] = "Alliance Relations", + }, + [1433] = { + ["D"] = "The Burning Blade have many agendas, but know that they are evil to their core, their spirits corrupted, and their destruction is the only way to thwart their objectives.$B$BKeldran sent Maurin with me because of his knowledge of the Blade and their warlock ways.$B$BHe has control of our plots against the Blade while I deal with the other demonic threats here in Desolace.$B$BSpeak to him, and he will guide you in his designs.", + ["O"] = "Speak to Maurin Bonesplitter in Desolace.", + ["T"] = "Alliance Relations", + }, + [1434] = { + ["D"] = "A demon infestation does not occur without other influences--something else allows evil to gain a foothold.$B$BIt may start with a weakened spirit, a needless desire for power; perhaps it\'s a thirst for revenge, or the appeal for final justice. When we are beset by pain, evil takes advantage of us--evil such as the satyr.$B$BTies have been made between them and the Burning Blade, and Thrall would have them slain. Seek them out to the northeast of here, and return to me when you\'ve driven them back.", + ["O"] = "Slay 7 Hatefury Rogues, 7 Hatefury Felsworn, 7 Hatefury Betrayers, and 7 Hatefury Hellcallers, and return to Takata Steelblade in Desolace.", + ["T"] = "Befouled by Satyr", + }, + [1435] = { + ["D"] = "Death is most desirable for those despicable creatures that turn their back on their liege for such selfish reasons. But death is not enough when dealing with those that have given themselves over to the darkness.$B$BTake this gem. When one of the Burning Blade\'s near death, activate its magic. The spell shall pull the corrupted spirit out of its victim, leaving an infused gem behind.$B$BBring me these infused gems so I may dispose of them properly.$B$BGo now, and may you elude death.", + ["O"] = "Return the Burning Gem and 15 Infused Burning Gems to Maurin Bonesplitter in Desolace.", + ["T"] = "The Burning of Spirits", + }, + [1436] = { + ["D"] = "The fight goes well, $N. Perhaps the Warchief will allow us to return to our homes before the seasons change if we continue to make such great strides in our battle against the demons and their underlings.$B$BReturn to Keldran and let him know what we have done. I am sure he will reward you for your efforts here. His cause is important to him, and he will take pride in knowing that the Warchief respects his concerns.", + ["O"] = "Speak to Keldran in Orgrimmar.", + ["T"] = "Alliance Relations", + }, + [1437] = { + ["D"] = "I am Vahlarriel, $N. I\'ve come here to discover the whereabouts of two missing nobles of a Darnassian merchant family--House Malem. The father of the house fears the worst, and I am to do everything I can to find his missing children. I have yet to start my search for Tyranis or Dalinda, but I am hopeful I shall not be here long.$B$BLast word tells of them passing through the Stonetalon Mountains a few weeks ago.$B$BIf you find their wagon, please, come find me immediately.", + ["O"] = "Find and search Tyranis and Dalinda Malem\'s wagon in Desolace.", + ["T"] = "Vahlarriel\'s Search", + }, + [1438] = { + ["D"] = "Find both Dalinda and Tyranis if you can and come back to me with your findings. Start your search at this fortress. I will contact my superiors in Darnassus immediately and let them know the situation.$B$B$N, there is something else I wish to impress upon you. My superiors have shown some concern over Tyranis\' and his motives for coming here. It is more important to them that Dalinda is found and brought back safely. Tyranis is to be... gauged before he is taken home.", + ["O"] = "Find Dalinda Malem in Desolace.", + ["T"] = "Vahlarriel\'s Search", + }, + [1439] = { + ["D"] = "We were brought here after the orcs slaughtered all our guards and servants. Oh, the terrible things they did to them! I thought surely they would kill us right there and then, but it became obvious they had other plans.$B$BTyranis attempted to speak to them. I think he wanted to impress them with his knowledge of the arcane... I\'m not sure why.$B$BPlease, I can\'t leave here until I know what\'s happened to my brother. Find him, then come back for me when his fate is known.", + ["O"] = "Find Tyranis Malem in Desolace.", + ["T"] = "Search for Tyranis", + }, + [1440] = { + ["D"] = "So, the time is now then? I appreciate your efforts, and if the situation does not lend itself, then allow me to thank you now for everything you\'ve done for me and my family. If you\'re ready, then there is nothing else for me here--we can leave when you feel the time is right.", + ["O"] = "Escort Dalinda Malem from Thunder Axe Fortress and then return to Vahlarriel Demonslayer in Desolace.", + ["T"] = "Return to Vahlarriel", + }, + [1441] = { + ["D"] = "", + ["O"] = "", + ["T"] = "", + }, + [1442] = { + ["D"] = "Greetings, $N. What can I do for one who follows a holy path?$B$BAh, yes, Stilwell, the blacksmith... from long ago. I remember him well, though, I have not heard his name in some time.$B$BHe never struck me as an impudent man, so I can only assume his desire for a Kor gem is noble.$B$BIf you truly wish for one of the gems, then you must head to the northwest of Ashenvale. You will find Blackfathom Deeps there within some ancient ruins. The naga who still use the gems are down below. Do not go alone, $c.", + ["O"] = "Bring a Kor Gem to Thundris Windweaver in Darkshore.", + ["T"] = "Seeking the Kor Gem", + }, + [1444] = { + ["D"] = "Jammal\'an the Prophet sentenced me to exile from The Temple of Atal\'Hakkar. I once felt the high priest was a worthy leader.$b$bHis unyielding faith in his prophecy will bring about the destruction of the Atal\'ai. If it hasn\'t already.$b$bWhen I expressed my concerns, I was labeled an infidel and ousted from the temple.$b$bThose artifacts you brought to me are harmless. But if Jammal\'an has found the proper fetish enchantment for the summoning ritual, the world lies in great peril....", + ["O"] = "Return to Fel\'Zerul in Stonard.", + ["T"] = "Return to Fel\'Zerul", + }, + [1445] = { + ["D"] = "So he spoke of Jammal\'an\'s prophecy?$b$bThe Atal\'ai spiritual leader believes once Hakkar returns to Azeroth from the Nether, the god will grant the Atal\'ai tribe immortality.$b$bFoolish trickery to bring about a premature doomsday if you ask me.$b$bBut you say the exile spoke of enchanted fetishes? This concerns me greatly. If these are in fact the key to the Atal\'ai ritual which caused this mess, we must understand their intrinsic powers.$b$bVenture into the Temple, and seize the fetishes!", + ["O"] = "Collect 20 Fetishes of Hakkar and bring them to Fel\'Zerul in Stonard.", + ["T"] = "The Temple of Atal\'Hakkar", + }, + [1446] = { + ["D"] = "My Witherbark companions don\'t take kindly to strangers around their home.$b$bMe? I don\'t have a home anymore. I was exiled from my people, the great Atal\'ai tribe of the Swamp of Sorrows.$b$bOur spiritual leader, Jammal\'an, had what he called a prophecy. He believes the summoning of the god, Hakkar will bring the Atal\'ai immortality.$b$bBut I urged caution. What if the prophecy was nothing more than manipulation?$b$bI want revenge for my exile. Bring me Jammal\'an\'s head. Maybe then my people will be free.", + ["O"] = "The Atal\'ai Exile in The Hinterlands wants the Head of Jammal\'an.", + ["T"] = "Jammal\'an the Prophet", + }, + [1447] = { + ["D"] = " Yeah, you\'re obviously not the smartest $c to come into Stormwind, but you\'re about to be one of the dumbest to never leave.$B$BHave you met me friends?", + ["O"] = "Defeat Dashel Stonefist in Stormwind.", + ["T"] = "The Missing Diplomat", + }, + [1448] = { + ["D"] = "There was a time when I was young and full of vigor like you, $c.$b$bBut now I\'m old and unable to explore the world like I once did. Ah, the things I saw!$b$bBut there was one mystery that eluded me. For my final quest, the Explorers\' League sent me in search of The Temple of Atal\'Hakkar. It was rumored to be located in the Swamp of Sorrows.$b$bBecause of my frail state, I traveled the skies by gryphon in search of it but never found it.$b$bHelp an old dwarf out? Perhaps you will have better luck on foot.", + ["O"] = "Brohann Caskbelly in Stormwind wants you to search for the Temple of Atal\'Hakkar.", + ["T"] = "In Search of The Temple", + }, + [1449] = { + ["D"] = "As I mentioned earlier, I attempted to scout the temple on my own from the air. Well, I wasn\'t exactly alone.$b$bI traveled to the renowned gryphon aviary at Aerie Peak in The Hinterlands. There I enlisted the aid of one of their finest pilots. The pilot fell off his mount, down into the swamp...$b$bIn my old age the poor fellow\'s name eludes me. The master of the aviary would remember, no doubt.$b$bJourney there and seek out Falstad Wildhammer.$b$bWe need to find out what happened to that pilot.", + ["O"] = "Speak with High Thane Falstad Wildhammer at Aerie Peak in the Hinterlands.", + ["T"] = "To The Hinterlands", + }, + [1450] = { + ["D"] = "So you\'re a glorified errand $g boy:girl; for some old Explorers\' League geezer, eh?$b$bWell you listen to me, $c. I don\'t know who your old buddy was flying around with down in Azeroth. Do I look like Gryphon Master Talonaxe to you? Do I?$b$bIf you\'re so interested in the flight assignments why don\'t you ask the gryphon master? If I catch you idling around here for much longer, I\'m going to put you to some real work.$b$bNow get a move on.", + ["O"] = "Speak with Gryphon Master Talonaxe inside the Aerie Peak Aviary.", + ["T"] = "Gryphon Master Talonaxe", + }, + [1451] = { + ["D"] = "Rhapsody took quite a liking to the booze. Now don\'t get me wrong -- all of us dwarves up here at the aviary love a good ale when the time is right.$b$bBut ol\' Shindigger took to the liquor like a gryphon takes to the skies. And a damned shame it was, too. No one could fly like Rhapsody.$b$bFirst sign of trouble was when he came stumbling back from that mission with your buddy, Brohann. All went down hill quickly after that. Had to let him go.$b$bLast I heard, he\'s set up a brew camp to the east of here...", + ["O"] = "Seek out Rhapsody Shindigger in The Hinterlands.", + ["T"] = "Rhapsody Shindigger", + }, + [1452] = { + ["D"] = "Hiccup!$b$bSo that crazy fool Brohann sent ya? My we had quite an adventure...Hiccup!$b$bIf ya want me to tell ya what happened down in the swamp, I\'m gonna need me something stiff to drink. It wasn\'t a pretty scene, ya see. Hiccup!$b$bTell ya what... bring me what I need to whip up a Kalimdor Kocktail and I\'ll tell ya all about it.$b$bGonna need some Roc gizzards from Tanaris... and let\'s see... some Groddoc and Ironfur livers from Feralas...$b$bA nice stiff Kalimdor Kocktail... that\'ll get me talking!", + ["O"] = "Rhapsody Shindigger in The Hinterlands wants you to bring him 3 Roc Gizzards, 3 Groddoc Livers and 3 Ironfur Livers.", + ["T"] = "Rhapsody\'s Kalimdor Kocktail", + }, + [1453] = { + ["D"] = "There\'s work to be done in Desolace, $N. It\'s an atrocious place, befouled by centaur and other nasties. But if you\'re looking for a good week\'s honest work, then head there, meet with Kreldig Ungor, and tell him I sentcha.$B$BYou can find him holed up at Nijel\'s Point--it\'s a little cozy camp hidden in the mountains of northern Desolace. Just head east if you enter from the Stonetalon Mountains. It\'s easy to miss, so be on the lookout.", + ["O"] = "Speak to Kreldig Ungor in Desolace.", + ["T"] = "Reclaimers\' Business in Desolace", + }, + [1454] = { + ["D"] = "My first order of business is for the mage Karnitol--a noble of some sort in Stormwind. Seems his ship was attacked by sea giants while off the coast in the northwest of Desolace. He and his servants tried to bring one of his more valuable chests ashore, but when the sea giants attacked in droves, he chose to abandon it and teleport himself and his servants to safety.$B$BHe wants us to find the chest and its contents, and return it to him in Stormwind.", + ["O"] = "Find Karnitol\'s Chest in Desolace.", + ["T"] = "The Karnitol Shipwreck", + }, + [1455] = { + ["D"] = "You take a few moments to figure out what pried the chest open, and you notice along the sides and top of the chest, long, deep scratches that reveal that something other than a man or giant took interest in it. The marks don\'t appear as if they were caused by dagger or sword.$B$BAfter going through the chest you find it to be completely empty.$B$BNot having another course of action, you close the chest and prepare to leave. Kreldig will be disappointed.", + ["O"] = "Return to Kreldig Ungor in Desolace.", + ["T"] = "The Karnitol Shipwreck", + }, + [1456] = { + ["D"] = "Intriguing.$B$BWell, we might not be without hope quite yet.$B$BAlong that same coast, but to the north near Ranazjar Isle, there\'re night elf ruins at the bottom of the ocean. A tribe of naga, the Slitherblade, make that their home. I think that\'d be our best bet.$B$BIf a scouting party went that far south, then they must\'ve been pretty powerful. If you\'re gonna find Karnitol\'s belongings, I\'d start with the more powerful naga: the tidehunters or sea witches.", + ["O"] = "Find Karnitol\'s Satchel and return it to Kreldig Ungor in Desolace.", + ["T"] = "The Karnitol Shipwreck", + }, + [1457] = { + ["D"] = "Take Karnitol\'s things back to Roetten in Ironforge and he\'ll pay you for a job well done.$B$BHaha, if you\'re not careful, he\'s gonna be so pleased with ya that he\'ll ask you to join us full time.$B$BAgain, great job, $N.$B$BBe careful on your way back, and don\'t take too much time--Karnitol\'s not the most of patient of men, but he\'s very generous nonetheless.", + ["O"] = "Bring Karnitol\'s Satchel to Roetten Stonehammer in Ironforge.", + ["T"] = "The Karnitol Shipwreck", + }, + [1458] = { + ["D"] = "One of my tasks out here involves picking up some reagents for Leftwitch, a gnome mage in Kharanos . Roetten seems to think it\'s easy coin in the bank since we\'re out here already. He doesn\'t really care that we\'re short-handed as is.$B$BThe first few items on his list should be easy enough to get, and it\'d be a good chunk of coin for anyone helping me out.$B$BI need some horns and claws from the Hatefury satyr to the east of here. Bring \'em back to me and we\'ll get started on the rest of the list.", + ["O"] = "Bring 10 Hatefury Claws, and 10 Hatefury Horns to Kreldig Ungor in Desolace.", + ["T"] = "Reagents for Reclaimers Inc.", + }, + [1459] = { + ["D"] = "Next on Leftwitch\'s list is... let\'s see... hmm. Oh, here it is.$B$BSimple enough, but pretty explicit in his directions. He needs venom from the scorpashi, and hide from some kodo. The fine print says both are from specific creatures: the venom\'s got to come from any of the scorpashi, and the hide\'s got to come from an aged kodo, not the dying or ancient ones.$B$BMages, I tell ya, some of the stuff they want... it\'s just weird.", + ["O"] = "Bring 10 vials of Scorpashi Venom and 3 Aged Kodo Hides to Kreldig Ungor in Desolace.", + ["T"] = "Reagents for Reclaimers Inc.", + }, + [1460] = { + ["D"] = "", + ["O"] = "", + ["T"] = "", + }, + [1461] = { + ["D"] = "", + ["O"] = "", + ["T"] = "", + }, + [1462] = { + ["D"] = "", + ["O"] = "Speak to Seer Ravenfeather for another Earth Sapta.", + ["T"] = "Earth Sapta", + }, + [1463] = { + ["D"] = "", + ["O"] = "Speak to Canaga Earthcaller for another Earth Sapta.", + ["T"] = "Earth Sapta", + }, + [1464] = { + ["D"] = "", + ["O"] = "Speak to Telf Joolam for another Fire Sapta.", + ["T"] = "Fire Sapta", + }, + [1465] = { + ["D"] = "As you continue your search of the wagon you find not only a pendant, but also footprints leading off towards the south. In the distance you can see smoke rising from a large fort. The smoke is from a kept fire, not the burning of buildings, and your instincts tell you that the Malems, if still alive, were taken that direction.$B$BYou think Vahlarriel at Nijel\'s Point should not only see the pendant you\'ve found, but also know about the signs of life to the south.", + ["O"] = "Return the Malem Pendant to Vahlarriel Demonslayer in Desolace.", + ["T"] = "Vahlarriel\'s Search", + }, + [1466] = { + ["D"] = "This is the last of the items, and I won\'t lie, it ain\'t pretty. I\'m also expecting this to take you a little bit longer than the other items.$B$BSo, enough with the warning, let\'s get this started. Leftwitch says he needs: ten brains from either mana eaters, mage hunters, or ley hunters. Ten nether wings from a nether maiden, sister or sorceress. And... ten vials of doomwarder blood from a doomwarder captain, or lord.$B$BSimple enough, huh? Sheesh... if you wanna pass on this one, I\'d understand.", + ["O"] = "Bring 10 Felhound Brains, 10 Nether Wings, and 10 vials of Doomwarder Blood to Kreldig Ungor in Desolace.", + ["T"] = "Reagents for Reclaimers Inc.", + }, + [1467] = { + ["D"] = "To get paid, you\'re gonna have to get back to Ironforge and speak to Roetten himself. He\'ll love getting Leftwitch\'s package out of the way anyway. Just give him this and it should be enough to get your booty.$B$BAnd don\'t worry, I\'m still going to put in a good word for you when I get back. I shouldn\'t be in Desolace much longer.", + ["O"] = "Bring Leftwitch\'s Package back to Roetten Stonehammer in Ironforge.", + ["T"] = "Reagents for Reclaimers Inc.", + }, + [1468] = { + ["D"] = "You\'re willing to help us here at the orphanage? Bless you, friend; your aid during Children\'s Week will be invaluable.$B$BTake this whistle. You will only be able to use it for a short amount of time - typically not longer than Children\'s Week itself. When you use it, you will be able to talk with the child you\'ve agreed to look after. Using it again will dismiss the child.$B$BBy all means $N - use the whistle and meet your ward! I\'m sure the child will be most eager to meet you.", + ["O"] = "Use the Human Orphan Whistle to talk with the child you will be looking after during Children\'s Week.", + ["T"] = "Children\'s Week", + }, + [1469] = { + ["D"] = "Before the flight, I drank me a whole keg of stout. Hiccup!$b$bAnd what a flight it was. Zipping around with Brohann following me. Didn\'t see no temple though. Hiccup!$b$bWell, didn\'t see no temple till I got a little too tipsy and fell off my mount. I plunged right into the water and was sucked down. Found myself surrounded by a bunch of creepy trolls. Sure swam out of there fast! Even made off with this troll souvenir. Here, take it to Brohann and let him know his temple is down there, indeed. Hiccup!", + ["O"] = "Bring the Atal\'ai Tablet Fragment to Brohann Caskbelly in Stormwind.", + ["T"] = "Rhapsody\'s Tale", + }, + [1470] = { + ["D"] = "Greetings, child. I can see that you are still young in the ways of the warlock, power still eluding your grasp. I can sense your eagerness to learn.$b$bAnd you will learn.$b$bThere is no strength in ignorance. Knowledge is our greatest power. Through its application, we can control the chaotic magics and beings of the void, bending them to our will.$b$bI will show you how to bind a servant to your will, but first you must bring me three skulls of the rattlecage skeletons near the abandoned smithy.", + ["O"] = "Bring Venya Marthand 3 Rattlecage Skulls.", + ["T"] = "Piercing the Veil", + }, + [1471] = { + ["D"] = "Surely you have seen the circle of summoning below us? Only there will you be able to draw forth an unbound voidwalker.$b$bUsing these runes, you will be able to draw it forth, and then you must dominate it through strength of arms and magic.$b$bWhen it is subdued, it will be indentured to you. Come to me then, and I will elucidate the spell of summoning, so that it may serve you to whatever end you wish.", + ["O"] = "Using the Runes of Summoning, summon and subdue a voidwalker, then return the Runes of Summoning to Carendin Halgar in the Magic Quarter of the Undercity.", + ["T"] = "The Binding", + }, + [1472] = { + ["D"] = "A succubus is a devourer of souls, destroyer of hearts, tempter of men. A creature of profound evil and of singular mind.$b$bIt cannot be brought into our world without a stimulus.$b$bThus we use its own strength against it. With the hearts of good men, pure men, loving men, the succubus will be unable to resist, and will cross into our world. Then you can dominate it, and make it your own.$b$bSpeak with my assistant, Godrick Farsan, within the Temple. He will help you find your bait.", + ["O"] = "Speak with Godrick Farsan in the Temple of the Damned.", + ["T"] = "Devourer of Souls", + }, + [1473] = { + ["D"] = "It seems the consensus that you are ready to learn to summon a voidwalker.$b$bA being created of the chaos that lies beyond, if you summon one but cannot control it, you will be torn asunder.$b$bThe first voidwalker was summoned by Egalin, and in his grimoire is the process explained.$b$bUnfortunately, it was stolen from us by an agent of the Scarlet Crusade who has it secreted away in his base at a tower to the west. Bring it to me, and I will impart the knowledge to you.", + ["O"] = "Recover Egalin\'s Grimoire and bring it to Carendin Halgar in the Temple of the Damned.", + ["T"] = "Creature of the Void", + }, + [1474] = { + ["D"] = "Using these hearts, cast a spell at the summoning circle to open a doorway for the succubus to come through. Your powers are greater now, and you will need all of them to defeat the succubus. $b$bBeware its charms, $n, many a strong mind has been bound to its will. When overcome, the succubus will be returned to the void, and I will teach you the spell to summon it forth at your command.", + ["O"] = "Using the Pure Hearts, summon and subdue a succubus, then return the Pure Hearts to Carendin Halgar in the Magic Quarter of the Undercity.", + ["T"] = "The Binding", + }, + [1475] = { + ["D"] = "According to legend, The Temple of Atal\'Hakkar is a holy shrine dedicated to the ancient god, Hakkar the Soulflayer. Maintained by a vicious tribe of trolls named the Atal\'ai, the temple is rumored to be impenetrable.$b$bNow sunk beneath the Pool of Tears, retrieving artifacts from the temple is even more difficult. But that\'s what I need you to do, $n.$b$bAid me by gathering the intact Atal\'ai Tablets. Bring them to me and I will return to the Explorers\' Guild a hero. Together we will share the glory.", + ["O"] = "Gather 10 Atal\'ai Tablets for Brohann Caskbelly in Stormwind.", + ["T"] = "Into The Temple of Atal\'Hakkar", + }, + [1476] = { + ["D"] = "Men of honor and goodness? Does such a man exist?$b$bIt took much research, but through bits of overheard stories, I managed to find two men that should do.$b$bThe first is Dalin Forgewright, who has dedicated himself to the care of the Lordaeron refugees, whom are refused by their kin at the Greymane Wall.$b$bThe other is Comar Villard, a man who remains faithful to his lost love, wandering the Wetlands for a sign of his wife.$b$bDeliver their hearts to Carendin. But first, let me show you your quarry.", + ["O"] = "Bring the hearts of Dalin Forgewright and Comar Villard to Carendin Halgar in the Temple of the Damned.", + ["T"] = "Hearts of the Pure", + }, + [1477] = { + ["D"] = "Our mages are conducting research at Nethergarde Keep in the Blasted Lands, research vital to our understanding of the Dark Portals. They require nearly constant supplies, but our supply line to Nethergarde is tenuous.$B$BYou must help ensure the supplies make it to Nethergard. Report to Watchmaster Sorigal in Darkshire, and do as he asks. This task will take you into hostile lands, $N. Prepare yourself.", + ["O"] = "Speak with Watchmaster Sorigal.", + ["T"] = "Vital Supplies", + }, + [1478] = { + ["D"] = "Ah, $n! I just received word from Carendin Halgar that he would like to see you for further training.$b$bYou should be proud of yourself, $n. It\'s not every day that Master Halgar personally sees fit to instruct a young warlock.$b$bYou\'ll be able to find him in the Magic Quarter of the Undercity, near the Temple of the Damned.", + ["O"] = "Speak with Carendin Halgar in the Undercity.", + ["T"] = "Halgar\'s Summons", + }, + [1479] = { + ["D"] = "I\'ve heard stories about how the night elves have their bank in a tree - one that looks like a bear! That\'s so cool! Night elves are neat how they like nature and stuff, but bears are just totally awesome!$B$BWould you take me to see the bear-tree in Darnassus, please? There\'s a boat that will take us close to there, and it shouldn\'t take very long. Please, please, please!", + ["O"] = "Take the orphan to the bank of Darnassus. The bank itself is hollowed out of a tree known as the Bough of the Eternals.", + ["T"] = "The Bough of the Eternals", + }, + [1480] = { + ["D"] = "The torn skin smells rotten, and is remarkably pliable for something that appears to be dry and fragile.$B$BAs you unroll it, you can clearly see the red markings of some kind of language on one side. At the bottom of the skin is a very clear symbol that you guess is a signature of some kind.$B$BPerhaps it is something Maurin could tell you more about?", + ["O"] = "Bring the Flayed Demon Skin to Maurin Bonesplitter in Desolace.", + ["T"] = "The Corrupter", + }, + [1481] = { + ["D"] = "I believe I can find this demon lord given the proper reagents.$B$BIf he is indeed as powerful as I suspect, I will need items gathered from deadly creatures. But you act in the Warchief\'s name, so I am sure you will accept my task.$B$BFirst, I will have to break any wards he has against scrying. For this, I will need the scalp from a satyr--but not any satyr. The scalp must come from a Hatefury shadowstalker.$B$BSearch for them among the ancient ruins in the northeast of Desolace.", + ["O"] = "Bring a Shadowstalker Scalp to Maurin Bonesplitter in Desolace.", + ["T"] = "The Corrupter", + }, + [1482] = { + ["D"] = "An oracle crystal would do nicely. They are crafted by the naga for their oracles to use.$B$BNorthwest of here, along the coast, is a vast coral reef that the naga have taken as their home when this close to the shore. You can find their oracles there. The Slitherblade are deadly and will not react kindly to your intrusions, so be careful and make haste.$B$BWhen you return, we shall see about finding this demon lord Azrethoc.", + ["O"] = "Bring an Oracle Crystal to Maurin Bonesplitter in Desolace.", + ["T"] = "The Corrupter", + }, + [1483] = { + ["D"] = "The Venture Company stole many of the best goblin minds, but from time to time, we get the opportunity to steal some back.$b$bA while ago, the Venture Company outfit in the Stonetalon Mountains hired Gerenzo Wrenchwhistle--a gnome! Their other engineer, Ziz Fizziks, was so taken aback by this, he pleaded with me to find him new employment with the Tinkers\' Union. I set him on a few tasks, but he might need help.$b$bMaybe you could look in on him for me? He\'s stationed at the western edge of Windshear Crag.", + ["O"] = "Speak with Ziz Fizziks in Windshear Crag.", + ["T"] = "Ziz Fizziks", + }, + [1484] = { + ["D"] = "This creature is far more dangerous than I had anticipated. No doubt Takata questions my abilities to take on such a creature, and it would insult his honor if he were not informed about what just happened.$B$BSpeak to the swordsman, tell him you are willing to slay the demon if he would allow it, but do not press too hard. It is better if he thinks it his own idea.", + ["O"] = "Speak to Takata Steelblade in Desolace.", + ["T"] = "The Corrupter", + }, + [1485] = { + ["D"] = "Those warlocks who came before us have earned the distrust of the Horde, and while we are tolerated, we are not loved.$b$bThis has not brought the warlocks closer together, however, as many choose to live reclusively, dabbling in their magics alone. I will not seek to lead you down one path or the other, but only help you in your maturation.$b$bBefore I teach you the art of summoning, bring me six heads of the vile familiars from the cave to the northeast.", + ["O"] = "Bring 6 Vile Familiar Heads to Ruzan.", + ["T"] = "Vile Familiars", + }, + [1486] = { + ["D"] = "As Naralex descended deeper into his nightmare, a strange breed of beasts arose from beneath the Barrens into the Wailing Caverns.$b$bThese deviate creatures have strange, otherworldly properties. While evil in nature, it is my opinion that some good can come from their existence here in Kalimdor. I believe their hides will be of particular use in the ways of leatherworking.$b$bIf you feel up to the task, venture into the caves below and retrieve some deviate hides.", + ["O"] = "Nalpak in the Wailing Caverns wants 20 Deviate Hides.", + ["T"] = "Deviate Hides", + }, + [1487] = { + ["D"] = "Naralex had a noble goal.$b$bOur great leader aspired to enter the Emerald Dream and help regrow these harsh lands back into the lush forest it once was. But something went terribly wrong.$b$bNaralex\'s dream turned into a nightmare and corrupt creatures began to inhabit the caverns.$b$bWhile some Disciples of Naralex seek to awake our master, my concern is with ridding these caves of the evil beasts.$b$bBrave the caverns, $n, and eradicate the deviate spawn.", + ["O"] = "Ebru in the Wailing Caverns wants you to kill 7 Deviate Ravagers, 7 Deviate Vipers, 7 Deviate Shamblers and 7 Deviate Dreadfangs.", + ["T"] = "Deviate Eradication", + }, + [1488] = { + ["D"] = "Although I have no knowledge of this Lord Azrethoc, I agree with Maurin, he must be stopped; especially if he is attempting to gain influence over the Burning Blade to further his goals.$B$BYou have already shown you wish to aid the Warchief, and I would trust you to gather a party to slay the demon lord and his warlock servant.$B$BWhen you are ready, head directly south, and return to me when the threat has been ended.", + ["O"] = "Slay Lord Azrethoc and Jugkar Grim\'rod and return to Takata Steelblade in Desolace.", + ["T"] = "The Corrupter", + }, + [1489] = { + ["D"] = "The shells you brought me have a taint, one I have never before seen. I am certain the water of the Oases is the cause, and I can sense the confusion they cause this land. It is as if the land dreams and cannot awake.$B$BThe Wailing Caverns must be the source of the taint. But before you go there, speak with Hamuul Runetotem, the elder druid. I sent word to him of the happenings in the Barrens. He is wise, and can offer you counsel.$B$BYou will find him in Thunder Bluff, on the Elder Rise.", + ["O"] = "Speak with Hamuul Runetotem", + ["T"] = "Hamuul Runetotem", + }, + [1490] = { + ["D"] = "I entered the land of dreams, and dreamed of a cult of druids who dwell in the Wailing Caverns. I saw that their goals were once noble, but they have lost their way. They are now servants of the taint seeping through the Barrens.$B$BI am old and my strength fails. I could not long dwell in that dreaming place and know little more of the tainted druids. But Nara is young and her spirit is fierce. She remained in the dreaming when I fled.$B$BSpeak with Nara. She is in the tent, over yonder.", + ["O"] = "Speak with Nara Wildmane.", + ["T"] = "Nara Wildmane", + }, + [1491] = { + ["D"] = "Ok, so the raptor horns didn\'t work so well. But that\'s all right -- no one got rich on their first try! And besides, I think I found something that\'ll work even better in my smart drinks!$B$BThere is a substance called Wailing Essence, and I think it is the cause of the strange plants and animals in the Barrens. Get me some and I\'ll try it in my drink!$B$BI heard the essence gathers in ectoplasmic creatures in the Wailing Caverns to the west. Hunt those creatures and gather the essence.", + ["O"] = "Bring 6 portions of Wailing Essence to Mebok Mizzyrix in Ratchet.", + ["T"] = "Smart Drinks", + }, + [1492] = { + ["D"] = "I have need to send a crate of potions, reagents and other items to my associates in the Old World. Little time I have to actually see them to the dock at Ratchet, and the last caravan has already left.$b$bIf you could, please take this to Wharfmaster Dizzywig. He will ensure that it is placed on the next boat to Blackwater Cove.", + ["O"] = "Bring the Secure Crate to Wharfmaster Dizzywig in Ratchet.", + ["T"] = "Wharfmaster Dizzywig", + }, + [1498] = { + ["D"] = "As a warrior, one of our most crucial tasks is... protection. We are the shield of the Horde, and we keep our weaker brethren safe. If you are to join in our ranks, then you must prove your mettle to me.$B$BGo to Thunder Ridge in Durotar, where live the lightning hides and thunder lizards. Hunt the beasts! Show me you are tougher than they! Brave their assaults and bring me a stack of their singed scales as proof.$B$BDo this, and then I will teach you.", + ["O"] = "Bring 5 Singed Scales to Uzzek at Far Watch Post in the Barrens.", + ["T"] = "Path of Defense", + }, + [1499] = { + ["D"] = "Zureetha has been sending novices like yourself to help cull the numbers of the creatures in the cave near where you fought the vile familiars.$b$bI think it would be good for you to gain experience by assisting her. Be sure to tell her that you assisted with the imp problem, she\'ll probably have a reward for you.", + ["O"] = "Speak with Zureetha Fargaze.", + ["T"] = "Vile Familiars", + }, + [1500] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Waking Naralex", + }, + [1501] = { + ["D"] = "So few warlocks remain... We risk much, but the risks are warranted. You must quickly reach maturity in your ability if you are to be of use to the Horde and to the Warchief.$b$bIt is time that you learned a new summoning spell.$b$bFirst, you must recover the Tablet of Verga, which was stolen by warlocks of the Burning Blade and is now kept at their lair in Skull Rock to the east of the city. With the tablet, I will show you the runes necessary to summoning a voidwalker.", + ["O"] = "Retrieve the Tablet of Verga for Gan\'rul Bloodeye in Orgrimmar.", + ["T"] = "Creature of the Void", + }, + [1502] = { + ["D"] = "It is vital that a warrior\'s weapon is one of quality. And if there is an orc who can craft quality weapons, then that orc is Thun\'grim Firegaze. He is a hermit who dwells atop the hills east of the Crossroads.$B$BIf you seek a weapon, warrior, then you should seek Thun\'grim. To find him, first travel to the Crossroads to the west, then strike east into the hills. His camp is high on a hilltop.", + ["O"] = "Speak with Thun\'grim Firegaze in the Barrens.", + ["T"] = "Thun\'grim Firegaze", + }, + [1503] = { + ["D"] = "I will give you a weapon, $N, but first you must aid me. The Razormanes to the northwest came into my camp a few nights past. They would not meet me in combat, but they know my eyes are bad--a few distracted me with snorts while others stole from me! The cowards!$B$BThey took an iron chest, and within it were some forged steel bars. If you can recover them then I will give you the weapon you seek.$B$BSearch for the iron box within the quilboar camps, and return with the forged steel bars.", + ["O"] = "Bring the Forged Steel Bars to Thun\'grim Firegaze in the Barrens.", + ["T"] = "Forged Steel", + }, + [1504] = { + ["D"] = "Now, observe the Tablet of Verga, for it contains the glyphs you will need for the summoning. Take them to the circle in Neeru Fireblade\'s tent on the other side of the cavern. There you will be able to call for the voidwalker.$b$bYou must defeat it using whatever physical and magical means you have at your disposal. When this is completed, return to me with the glyphs of summoning and I will demonstrate how you may bind the creature to your will.", + ["O"] = "Using the Glyphs of Summoning, summon and subdue a voidwalker, then return the Glyphs of Summoning to Gan\'rul Bloodeye in Orgrimmar.", + ["T"] = "The Binding", + }, + [1505] = { + ["D"] = "The Horde honors its warriors because their strength is unquestioned. But the truly great warriors are great students as well.$B$BSeek out Uzzek. He is a veteran of many battles and now instructs young warriors in the ways of combat. You will find him south of Far Watch Post, the orc garrison on the border of the Barrens and Durotar to the east.", + ["O"] = "Speak with Uzzek at Far Watch Post.", + ["T"] = "Veteran Uzzek", + }, + [1506] = { + ["D"] = "You there. $n, right?$b$bI hope your schedule isn\'t busy, because Gan\'rul wants to see you right away. You\'ll find him with the senior warlocks in the Cleft of Shadow.$b$bBased on my past dealings with Gan\'rul, your summons is either a very good thing or a very bad thing.", + ["O"] = "Speak with Gan\'rul Bloodeye in Orgrimmar.", + ["T"] = "Gan\'rul\'s Summons", + }, + [1507] = { + ["D"] = "The time has come for you to learn more of the summoning magics. You will learn to summon a succubus, a creature of incredible mental powers. It can lull those of weak minds into its servitude--but have no fear! I feel certain that you will be equal to the challenge.$b$bA succubus can only be summoned when baited with an item that represents great devotion and love. I leave it to you to find such an object.$b$bA suggestion? Speak with Cazul... There seems to be little the ancient warlock does not know.", + ["O"] = "Speak with Cazul in the Cleft of Shadow.", + ["T"] = "Devourer of Souls", + }, + [1508] = { + ["D"] = "Hmm... But, of course, that is not why you have come to speak with me.$b$bIf Gan\'rul has sent you to me, it must be that you are to summon a succubus, and need an object to use for enticement.$b$bHmm... If you trust a blind man to lead you, $n, then listen. In the bluffs of Orgrimmar, west of the wind rider tower, lives Zankaja. She waits for the return of her mate.$b$bGo to her.", + ["O"] = "Speak with Zankaja in Orgrimmar.", + ["T"] = "Blind Cazul", + }, + [1509] = { + ["D"] = "My mate, Dogran, was recently sent to the Crossroads for duty. It was a promotion, and he was very proud.$b$bI was sad, of course, but I didn\'t let him know that. And worried, too. The Barrens is a more dangerous place than Orgrimmar, and I feared the worst.$b$bNow it\'s been a week after he should have returned, and I have received no word from him...$b$bPerhaps you could go to the Crossroads and see if they have any news? He worked with Gazrog, who should still be stationed there.", + ["O"] = "Speak with Gazrog at the Crossroads.", + ["T"] = "News of Dogran", + }, + [1510] = { + ["D"] = "He was stationed at Camp Taurajo, where we\'ve been trying to weed out the quilboar. He led a few grunts to one of their camps, where he was hurt bad. The others made it back and tried to rescue him. He was in bad shape, his wounds festered, so they were afraid to move him without patching him up first.$b$bThey sent a message here, requesting a healing draught from the trolls at the Malaka\'jin at the base of the Stonetalon Mountains. We sent someone to get it, but they haven\'t returned yet.", + ["O"] = "Speak with Ken\'zigla at the Malaka\'jin.", + ["T"] = "News of Dogran", + }, + [1511] = { + ["D"] = "I figured there might be another coming to get the draught, so I prepared it anyways.$b$bHere you go, $n. Mind you, you should only give half of it to him! That will give him enough strength to move without bleeding himself dry. Wait a night, then give him the other half.$b$bAnyways, you\'ll want to bring this to Logmar at Camp Taurajo. From what the first one told me, he should have an idea where this Dogran is.", + ["O"] = "Bring Ken\'zigla\'s Draught to Grunt Logmar at Camp Taurajo.", + ["T"] = "Ken\'zigla\'s Draught", + }, + [1512] = { + ["D"] = "Zankaja is young and beautiful. To be chained to an invalid... I will not allow her to suffer that injustice.$b$bLeave me, $n. And thank you. I may end my life in glorious battle, instead of a lifeless husk.$b$bAnd please, I would ask you not to tell my mate of this... I do not want guilt on her conscience.", + ["O"] = "Bring the Dirt-caked Pendant to Gan\'rul Bloodeye in Orgrimmar.", + ["T"] = "Love\'s Gift", + }, + [1513] = { + ["D"] = "Take this to the summoning circle in Neeru\'s tent, $n. Summon forth a foul succubus, then show it your mastery. I believe in the strength of your magic. As always, though, be wary, for pride and overconfidence has overcome many a promising warlock.$b$bWhen you have defeated it, return the pendant to me so that I might deliver the news to Zankaja.", + ["O"] = "Using Dogran\'s Pendant, summon and subdue a succubus, then return Dogran\'s Pendant to Gan\'rul Bloodeye in Orgrimmar.", + ["T"] = "The Binding", + }, + [1514] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Corrupted Windblossom", + }, + [1515] = { + ["D"] = "You\'ve made it this far, so if you want to see this through to the end, I won\'t stop you. I can\'t spare you any additional manpower though, you\'ll be on your own.$b$bDogran is being held in a quilboar camp to the north of here. Look for a group of two huts. He\'ll be heavily guarded--that is, if they haven\'t killed him yet, or he hasn\'t succumbed to his wounds.$b$bGood luck.", + ["O"] = "Bring Ken\'zigla\'s Draught to Dogran in the Barrens.", + ["T"] = "Dogran\'s Captivity", + }, + [1516] = { + ["D"] = "The time is now, young $c. You\'ve grown strong and your spirit endures like the earth. Following the shaman\'s path shows you have wisdom before even proving yourself.$B$BThe element of earth will guide your destiny, becoming part of you if you are ready. But you must stand before the earth itself. If you are ready, then you will see things only shaman know of.$B$BSeek out the Felstalkers to the north, and take from them two of their hooves. Return to me then, and we shall speak more of your future.", + ["O"] = "Bring 2 Felstalker Hooves to Canaga Earthcaller in the Valley of Trials.", + ["T"] = "Call of Earth", + }, + [1517] = { + ["D"] = "A sapta is a drink created to bind our spirits to the elements. Fused with magic, the potion will allow the strong willed to see the elements as no one else can. Your spirit will be connected to the element the sapta was created for, and only a select few shaman know the recipe.$B$BThe sapta is always drunk in a holy place, and never anywhere else--remember that.$B$BSeek out Spirit Rock southwest of here--it is found at the end of the Hidden Path. Drink your sapta there, and... well, you shall see.", + ["O"] = "Find Spirit Rock and drink the Earth Sapta.", + ["T"] = "Call of Earth", + }, + [1518] = { + ["D"] = "Take this rough quartz from me and bring it to Canaga Earthcaller as proof of our meeting. He will craft a totem for you, and this pebble will be the heart of it. As small as it may seem, you will come to find that size does not matter, and that even the smallest of things can outlast many others.$B$BBe patient, $N. Remain strong. And seek wisdom. This is what earth asks of you. In the end, you shall become one with the earth--respect it as it shall respect you.", + ["O"] = "Bring the Rough Quartz to Canaga Earthcaller in the Valley of Trials.", + ["T"] = "Call of Earth", + }, + [1519] = { + ["D"] = "The time has come, young $c. Your body ages and grows strong, and your spirit endures like the earth. I see it within you-you have wisdom already.$B$BThe earth guides our people, and it speaks to us, as it will to you in time. But you must be tested. If you are ready, then you shall see things only our kind know of.$B$BSeek out the Bristleback shamans in their ravine to the east, and take from them a salve they use in their rituals. Return to me only when you have enough for your own potion.", + ["O"] = "Bring 2 applications of Ritual Salve to Seer Ravenfeather in Camp Narache.", + ["T"] = "Call of Earth", + }, + [1520] = { + ["D"] = "A sapta is a drink created to bind our spirits to the elements. Fused with magic, the potion will allow the open minded to see the elements as no one has seen them before. Your spirit will forever be tied to the element the sapta was created for, and only a select few of our kind know the secrets of its creation.$B$BThe sapta is always imbibed in a holy place, and never anywhere else.$B$BSeek out the shaman shrine to the east of here and drink of the sapta.", + ["O"] = "Find Kodo Rock and drink the Earth Sapta.", + ["T"] = "Call of Earth", + }, + [1521] = { + ["D"] = "Take this rough quartz from me and bring it to Seer Ravenfeather as proof of our meeting. She will craft a totem for you, and this pebble will be the heart of it. As small as it may seem, you will come to find that size does not matter, and that even the smallest of things can outlast mountains.$B$BBe patient, $N. Remain strong. And seek wisdom. This is what earth asks of you. In the end, you shall become one with the earth--respect it as it shall respect you.", + ["O"] = "Bring the Rough Quartz to Seer Ravenfeather in Camp Narache.", + ["T"] = "Call of Earth", + }, + [1522] = { + ["D"] = "Fire be witcha, mon. I see you be strong in da ways of earth already, an\' me tinkin\' you be ready to talk to Kranal.$B$BKranal live north of da Crossroads in da Barrens. He be strong in da ways of da elements and can teach ya da ways of fire... if you tink you be ready.$B$BHe be easy ta find, just don\' go too far--ya go too far an\' ya find yerself in da elves\' lands.", + ["O"] = "Find Kranal Fiss in the Barrens.", + ["T"] = "Call of Fire", + }, + [1523] = { + ["D"] = "Long has it been since you were last tested, $N. You have shown patience thus far in your studies, but the time has come for you to learn more. The time has come for you to learn about destruction... and chaos. The element of fire is yours for the understanding, if you\'re prepared to pay for it.$B$BSeek out Kranal Fiss in the Barrens. He lives in a small dwelling north of the Crossroads, but be mindful, if you\'ve reached the night elf lands, you\'ve gone too far.", + ["O"] = "Find Kranal Fiss in the Barrens.", + ["T"] = "Call of Fire", + }, + [1524] = { + ["D"] = "You are powerful enough to wield the totem of fire, but that does not mean you are ready.$B$BAlong the Southfury River in Durotar, before the Great Sea, lies a hidden trail to one of the highest peaks in the land. Find your way to the top and you shall find one of our holy shrines watched over by Telf Joolam--the Shrine of the Dormant Flame.$B$BTake this torch to him--it marks that you attempt to tame fire. Return it to me aflame by the brazier at the shrine and I will see you are given the totem of fire.", + ["O"] = "Bring the Torch of the Dormant Flame to Telf Joolam in Durotar.", + ["T"] = "Call of Fire", + }, + [1525] = { + ["D"] = "But you did not come here for a history lesson, did you? You came for the Eternal Flame and fire totem.$B$BThe first step is to create a sapta and bind you to the flame.$B$BI can create the fire sapta for you if you bring me two items. The first is fire tar, a simple item usually carried by Razormane spellcasters in eastern Barrens.$B$BThe second item will be more dangerous: a reagent pouch from one of the cultists of the Burning Blade. You can find them in a cave above the ravines northeast of Razor Hill.", + ["O"] = "Bring 1 Fire Tar and 1 Reagent Pouch to Telf Joolam in Durotar.", + ["T"] = "Call of Fire", + }, + [1526] = { + ["D"] = "The fire sapta is finished. The time has come for you to face the flame. Use the sapta at the shrine and head to the top of the mountain to face the manifestation there. He will not attack until you are ready, but he will realize you are able to see him.$B$BStrike him down swiftly, $N, for he shall only grow in power the longer you take to slay him. Once he is defeated, place his glowing embers within the brazier and light the torch.", + ["O"] = "Defeat the Minor Manifestation of Fire, and place the Glowing Ember in the brazier atop the Shrine of Eternal Flame.", + ["T"] = "Call of Fire", + }, + [1527] = { + ["D"] = "Torch firmly in hand, you turn away from the brazier and look out over Durotar. You feel an excitement tugging at your spirit as the wind picks up and forces the flame to dance violently.$B$BYou start off down the path back to the Barrens in search of Kranal Fiss.", + ["O"] = "Bring the Torch of Eternal Flame to Kranal Fiss in the Barrens.", + ["T"] = "Call of Fire", + }, + [1528] = { + ["D"] = "Water be in ya future, mon. I see you be strong in da ways of fire already, an\' me tinkin\' you be ready to talk to Islen.$B$BIslen live along the coast of da Barrens. If ya head south along the Southfury River, ya canna miss her--look fer da big shark! She be strong in da ways of da elements and can teach ya da ways of water... if you tink you be ready.$B$BShe be easy ta find, just don\' go too far south--she be jus\' beyond Ratchet.", + ["O"] = "Find Islen Waterseer in the Barrens.", + ["T"] = "Call of Water", + }, + [1529] = { + ["D"] = "Long has it been since you were last tested, $N. You have shown patience thus far in your studies, but the time has come for you to learn more. The time has come for you to learn about the purity of water.$B$BSeek out Islen Waterseer in the Barrens. She is along the eastern coast, south of the Southfury River and Ratchet. You will find her there at her fishing hut. Good luck to you, $N.", + ["O"] = "Find Islen Waterseer in the Barrens.", + ["T"] = "Call of Water", + }, + [1530] = { + ["D"] = "If there is one lesson you must learn of water, it is this: water means rebirth.$B$BIts power flows, erodes, and makes clean all manner of things. You will find its ability to heal and replenish incomparable, but only when it is pure.$B$BWhen you understand that water, when polluted, can devastate all that it touches, you will appreciate how vital a resource it is.$B$BIf you wish the water sapta, find Brine deep in Southern Barrens. Her home is continually molested by the quilboar there.", + ["O"] = "Find Brine in Southern Barrens.", + ["T"] = "Call of Water", + }, + [1531] = { + ["D"] = "You be makin\' headway now, mon. Your be ready to prove yerself worthy of the air totem, but first, ya must fin\' Prate Cloudseer in Thousand Needles. She be willin\' ta tell ya how to get yer air totem if ya treat her wit enough respect.$B$BHead south through the Barrens, and after ya reach Thousand Needles, head east. You\'ll find her hiddin\' in a hole wit\' her boyfriend--haha, don\' tell her I be dissin\' her none--she not take it too kindly.", + ["O"] = "Find Prate Cloudseer in Thousand Needles.", + ["T"] = "Call of Air", + }, + [1532] = { + ["D"] = "The winds of Kalimdor rush to meet you and you shall be counted among some of our most powerful $g brothers:sisters;. I am proud to see you have come this far and have such a promising future.$B$BThe element of air is a difficult one to control, but I have faith that your skills will overcome any obstacles that are placed in front of you.$B$BHead to the very south of the Barrens, and enter Thousand Needles. It is there, far to the east, that you will find Prate Cloudseer. She will teach you more.", + ["O"] = "Find Prate Cloudseer in Thousand Needles.", + ["T"] = "Call of Air", + }, + [1534] = { + ["D"] = "Take this waterskin and head deep into the lush forest the night elves call Ashenvale. It is to the far north of the Barrens.$B$BOnce you\'ve entered the forest, travel west. Along the mountains that separate Stonetalon and Ashenvale, and beyond Lake Mystral, you will find a holy place: the Ruins of Stardust. At the center of the lake you will find a small fountain.$B$BBring me a sample of the fountain\'s water. It will be the final component you\'ll need before I send you back to Islen.", + ["O"] = "Fill the Empty Blue Waterskin at the Ruins of Stardust in Ashenvale and return to Brine in the Barrens.", + ["T"] = "Call of Water", + }, + [1535] = { + ["D"] = "To find understanding and gain the sapta from me, you must seek out only the purest forms of water. As you fetch the samples for me, take note of your surroundings. Be aware of the creatures that rely on the water, that protect it. See how it affects forests and deserts. Witness how the very substance that sustains life will force creatures to take lives.$B$BWe shall start with a simple task: down below my hut there is a pond of the precious liquid. Fill this skin with it and return to me.", + ["O"] = "Fill the Empty Brown Waterskin at the watering hole below Brine\'s hut and return it to her in the Barrens.", + ["T"] = "Call of Water", + }, + [1536] = { + ["D"] = "Long ago I followed some companions into the Hillsbrad Foothills. We defended ourselves from some tenacious humans who make their home there and we found ourselves in a small town the Forsaken had taken over: Tarren Mill.$B$BIt was there I found a most peculiar thing: in the center of town was a small well of fresh spring water. I\'m not sure the plagued citizens of the town even realize its value--it\'s a small holy vestige in an unhallowed sea.$B$BBring me a sample of that water in this waterskin.", + ["O"] = "Fill the Empty Red Waterskin at the well in Tarren Mill and return to Brine in the Barrens.", + ["T"] = "Call of Water", + }, + [1558] = { + ["D"] = "Ironforge is where all the dwarves and gnomes live. Near there is a place called Loch Modan, and the dwarves built a HUGE dam there. They say it\'s one of the biggest things anyone\'s ever made. Wow!$B$BCould you take me to Loch Modan and see the dam there, please? I think it is the Stone... um... Stonewrench Dam? Stonewrought? It\'s big - that\'s for sure. I\'d like to look out over the big waterfall. I promise I won\'t lean over too far!", + ["O"] = "Take the orphan to the Stonewrought Dam in Loch Modan. You should take him to the middle of the dam so he can see out over the giant waterfall.", + ["T"] = "The Stonewrought Dam", + }, + [1559] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Flash Bomb Recipe", + }, + [1560] = { + ["D"] = "I am so lost!$b$bMy wife, Torta, sent me out to fetch dinner and I must have taken a wrong turn somewhere.$b$bWould you be so kind as to lead me back to Torta? She\'s waiting for me just south of Steamwheedle Port.", + ["O"] = "Show Tooga the way back to his wife, Torta.", + ["T"] = "Tooga\'s Quest", + }, + [1578] = { + ["D"] = "The mountaineers of Loch Modan are fighting troggs, and having a busy time of it! They need constant supplies of new armor and weapons if we\'re ever to get a handle on those troggs.$B$BThat\'s why my colleague Thorvald is there, trying to keep the mountaineers in good gear. So if you were to make some copper axes and copper chain belts and bring them to Thorvald, he would be obliged. He might even share his knowledge with you.$B$BThorvald is in Loch Modan\'s southern guard tower.", + ["O"] = "Bring 6 Copper Axes and 6 Copper Chain Belts to Thorvald in the southern guard tower of Loch Modan", + ["T"] = "Supplying the Front", + }, + [1579] = { + ["D"] = "I came to Auberdine because of the quiet. I want to invent my inventions where it\'s quiet, because after a night of drinking I don\'t like all the noise of Ironforge!$B$BSo I took a ship to Auberdine and had a little too much to drink on the way. I dropped my box of gaffer jacks overboard! I need my gaffer jacks!$B$BI don\'t know exactly where I dropped them, but if you fish for them in the ocean you might get lucky...", + ["O"] = "Bring 8 Gaffer Jacks to Wizbang Cranktoggle in Auberdine.", + ["T"] = "Gaffer Jacks", + }, + [1580] = { + ["D"] = "We know you\'re lucky, but... just how lucky are you, $N?$B$BOne night I was wandering the roads of Darkshore. I was looking for a good river or lake to try my new self-propelled, exploding duck decoy and I think I was a little tipsy... because I passed out and awoke hours later in Auberdine. My hair was singed and my bag of electropellers was gone! I must have dropped them in the water!$B$BI need those electropellers! Maybe you can fish them out of some lake or stream in Darkshore...", + ["O"] = "Bring 12 Electropellers to Wizbang Cranktoggle in Auberdine.", + ["T"] = "Electropellers", + }, + [1581] = { + ["D"] = "Our herb and alchemy shop is booming, but my husband spends so much time mixing potions that we never have time for each other.$B$BCan you help us?$B$BIf you can bring me a supply of pre-made elixirs, then I would be happy to trade with you. I have some rare herbs that you might find useful.", + ["O"] = "Bring 6 Elixirs of Lion\'s Strength and 2 Elixirs of Minor Defense to Syral Bladeleaf in Dolanaar.", + ["T"] = "Elixirs for the Bladeleafs", + }, + [1582] = { + ["D"] = "We in Darnassus, especially we craftsman, are quite busy. Young adventurers are eager to test themselves in the wilderness, and are in constant need of supplies.$B$BIf you can help me fill my orders of leather goods, then perhaps I can teach you an advanced leatherworking technique.", + ["O"] = "Bring 1 Embossed Leather Glove, 5 Embossed Leather Boots and 5 Embossed Leather Cloaks to Lotherias in Darnassus.", + ["T"] = "Moonglow Vest", + }, + [1598] = { + ["D"] = "You there! $n, right?$b$bI hope you\'re sure about becoming a warlock, because if you can\'t hold your own, you\'re likely to get pulled under.$b$bI\'m to teach you, but I need to make sure you\'re strong enough first.$b$bThere was a novice studying at the Abbey who ran off to join the Defias Brotherhood. Why do I care? Well, he stole some important books.$b$bOne of those happens to be a book I\'ve wanted for myself, the Powers of the Void. Steal it for me, they have it hidden at their tent in the Vineyards.", + ["O"] = "Retrieve the Powers of the Void for Drusilla La Salle.", + ["T"] = "The Stolen Tome", + }, + [1599] = { + ["D"] = "You must be the new warlock everyone\'s been whispering about. Must be someone\'s taken a liking to you if they\'ve asked me to take time away from my research to start your training.$b$bDon\'t worry, I won\'t hold it against you.$b$bThe simplest of the summoning spells you will learn is that of the imp. Before I impart this to you, however, you must prove that you have the necessary magical and physical ability.$b$bBring me three feather charms from the frostmane novices from the cave to the southwest.", + ["O"] = "Bring 3 Feather Charms to Alamar Grimm in Anvilmar.", + ["T"] = "Beginnings", + }, + [1618] = { + ["D"] = "We dwarves aren\'t the only ones fighting. Our human allies have their hands full too!$B$BRedridge is under periodic attack from blackrock orcs, and their supply of equipment is always low. If you were to help them out, I\'m sure their resident blacksmith, Verner Osgood, would teach you a trick or two.", + ["O"] = "Tormus Deepforge wants you to bring 4 Runed Copper Belts and 4 Heavy Copper Mauls to Verner Osgood in Redridge.", + ["T"] = "Gearing Redridge", + }, + [1638] = { + ["D"] = "You\'ve shown yourself to be a competent warrior, $N. But you\'re still young and have a lot to learn.$B$BSpeak with Harry Burlguard--he\'s usually in the Pig and Whistle tavern, in the Old Town of Stormwind. Harry is an old veteran and a good teacher. He can show you a few moves that\'ll keep you breathing longer.", + ["O"] = "Speak with Harry Burlguard.", + ["T"] = "A Warrior\'s Training", + }, + [1639] = { + ["D"] = "Yeah, I can teach you. But first I wanna see what moves you have already.$B$BSee that drunk over there at the end of the bar? Bartleby? I want you to get his mug.$B$BHah, and if you know Bartleby then you know he won\'t just give it to you.", + ["O"] = "Speak with Bartleby.", + ["T"] = "Bartleby the Drunk", + }, + [1640] = { + ["D"] = "You want what?? You\'re crazy!$B$BThe only way you\'ll get this mug is if you pry it from my cold, dead fingers...", + ["O"] = "Beat Bartleby, then talk to him.", + ["T"] = "Beat Bartleby", + }, + [1641] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Tome of Divinity", + }, + [1642] = { + ["D"] = "In all things, a paladin must reflect the Light which supplements our strength. To strive to be divine for one of our kind does not mean we strive for godhood--we strive to be good in all actions.$B$BAlthough called upon to smite evil in these harsh times, you must always remember that it\'s aiding others that will truly set you apart from the citizens of Azeroth. Compassion, patience, bravery--these things mean as much to a paladin as strength in battle.$B$BKnow this well, and never forget it.", + ["O"] = "Speak to Duthorian Rall in Stormwind.", + ["T"] = "The Tome of Divinity", + }, + [1643] = { + ["D"] = "Your task then, $N, is to find someone here in Stormwind that is in need of aid. Someone who is pure of heart and motive. Perhaps someone helping others. Perhaps someone in need of a guide. Regardless, the person must have noble intent and be relying on your kindness.$B$BDo this, and return to me when you are finished. Then, we shall discuss more of your path and what it means to be a paladin of the Light.", + ["O"] = "Search the Trade District of Stormwind for Stephanie Turner.", + ["T"] = "The Tome of Divinity", + }, + [1644] = { + ["D"] = "Bless their hearts, most of them have no families because of the Scourge attacks in the last decade.$B$BMy husband John collects the materials for me to make the shirts and pants for the children, but I haven\'t even had time to do that. I\'ve been too focused on keeping food on their plates, and a roof over their heads.$B$BWhat\'s that? You\'d be willing to help? Oh, thank the Light, and thank you, $N.$B$BIf you could bring me some linen cloth so I can sew clothes for the kids, that would help me out so much.", + ["O"] = "Bring 10 Linen Cloth to Stephanie Turner in Stormwind.", + ["T"] = "The Tome of Divinity", + }, + [1645] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Tome of Divinity", + }, + [1646] = { + ["D"] = "In all things, a paladin must reflect the Light which supplements our strength. To strive to be divine for one of our kind does not mean we strive for godhood--we strive to be good in all actions.$B$BAlthough called upon to smite evil in these harsh times, you must always remember that it\'s aiding others that will truly set you apart from the citizens of Azeroth. Compassion, patience, bravery--these things mean as much to a paladin as strength in battle.$B$BKnow this well, and never forget it.", + ["O"] = "Speak to Tiza Battleforge in Ironforge.", + ["T"] = "The Tome of Divinity", + }, + [1647] = { + ["D"] = "Your task then, $N, is to find someone here in Ironforge that is in need of aid. Someone who is pure of heart and motive. Perhaps someone helping others. Perhaps someone in need of a guide. Regardless, the person must have noble intent and be relying on your kindness.$B$BDo this, and return to me when you are finished. Then, we shall discuss more of your path and what it means to be a paladin of the Light. I will remain here in the temple for your return. Other paladins will need my guidance also.", + ["O"] = "Search the outer ring of Ironforge for John Turner.", + ["T"] = "The Tome of Divinity", + }, + [1648] = { + ["D"] = "My wife and I run an orphanage in Stormwind, mostly for children who have lost parents due to the attacks by the Scourge in the last decade. I come to Ironforge every month or so to see about collecting more supplies from the citizens here, and talk to the various groups to see if they can do anything to help.$B$BThis trip\'s been agonizingly slow, and not very productive.$B$BIf I could just get some more linen for my wife to make some clothes, I could finally send a shipment home.", + ["O"] = "Bring 10 Linen Cloth to John Turner in Ironforge.", + ["T"] = "The Tome of Divinity", + }, + [1649] = { + ["D"] = "Valor, and all the virtues that go along with it, are like rare minerals: you must cherish them when you find them because of their value, but you must also take time to harvest them... refine them. When mixed together properly, a strong alloy is formed, sometimes unbreakable by even the most powerful blows.$B$BThis strength, your faith, your bravery, must be tested. You must learn to never lose faith and realize that with the power of the Light, you can overcome things that most others cannot.", + ["O"] = "Speak to Duthorian Rall in Stormwind.", + ["T"] = "The Tome of Valor", + }, + [1650] = { + ["D"] = "Good! Your lack of hesitation is a sure sign that you are prepared and eager to test yourself. So be it.$B$BAt the very ends of Westfall\'s Longshore, a small house overlooks the ocean. There, a couple lives, the Stilwells. Jordan is an incredible smith, and he\'s gone to Ironforge to meet with the dwarves for a while. But this has left Daphne, his wife, alone and unprotected.$B$BReports suggest that the Defias have all but taken over the area, Daphne may need some protection from the villains. Go there.", + ["O"] = "Find Daphne Stilwell in Westfall.", + ["T"] = "The Tome of Valor", + }, + [1651] = { + ["D"] = "Now, they\'ll be coming again soon, I\'d wager, so get yourself ready.$B$BI\'ve got myself a gun in the house. I\'ll grab it and be ready to help you out, but for the most part, you\'re on your own.$B$BI\'ve no idea how many they\'ll send, but I\'m sure it\'ll be more than the few they sent earlier.$B$BAsk the Light for whatever blessings you can because... did you hear that? I think they\'re coming.$B$BWe make our stand near the house!", + ["O"] = "Defend Daphne Stilwell from the Defias attack.$B$BNeither of your spirits must be released from their mortal coils if you wish to succeed.$B$BAfter you are successful, speak to Daphne Stilwell again.", + ["T"] = "The Tome of Valor", + }, + [1652] = { + ["D"] = "Please, return to Duthorian and let him know that I\'m safe for now. I have you and the Church to thank for that.$B$BHe\'ll send word to Ironforge to let my Jordan know that he has nothing to fear.$B$BOh, how I miss my husband. I can\'t wait till he returns.", + ["O"] = "Speak to Duthorian Rall in Stormwind.", + ["T"] = "The Tome of Valor", + }, + [1653] = { + ["D"] = "Actually, I have no doubt that Jordan himself would like to thank you, and seeing as I need a messenger to send word that his wife is safe, I think you\'d be a perfect choice.$B$BJordan was to be a paladin of the Light before his dedication to his father\'s craft took him on another path--he\'s intimately familiar with our way of life and is considered among our most faithful.$B$BHe should still be in Ironforge--he likes to work outside the gates during the day, something about the cool mountain air.", + ["O"] = "Speak to Jordan Stilwell in Ironforge", + ["T"] = "The Test of Righteousness", + }, + [1654] = { + ["D"] = "I\'d like to reward you if you\'d be willing to accept such a thing? Don\'t misunderstand me, my generosity is dependent on how much help you can be, but I see us both benefiting greatly from such an alliance.$B$BI will craft for you a weapon worthy of what you\'ve accomplished, a symbol of paladinhood and the Light, but you must gather the items I need to craft it. I\'ve already started taking notes on the items, it just requires someone brave and skilled enough to recover them. What do you say, $c?", + ["O"] = "Using Jordan\'s Weapon Notes, find some Whitestone Oak Lumber, Bailor\'s Refined Ore Shipment, Jordan\'s Smithing Hammer, and a Kor Gem, and return them to Jordan Stilwell in Ironforge.", + ["T"] = "The Test of Righteousness", + }, + [1655] = { + ["D"] = "Ach, ya startled me, $G man:woman;! Can\'t ya see I was lost in thought?$B$BWhat\'s that? Jordan\'s shipment... fer Ironforge. Ahhh, yeah, I know whatcha speak of. Mo\'grosh ogres... dat\'s who took me ol\' friend\'s ore shipment. Caravan was headin\' here from the Wetlands and was ambushed. The guard who survived their attack just passed away a few days ago--healer couldn\'t get to \'em fast enough.$B$BIf you want the shipment, you\'ll have to head northeast across the Loch. It\'s got to be there somewhere.", + ["O"] = "Bring Jordan\'s Ore Shipment to Bailor Stonehand in Loch Modan.", + ["T"] = "Bailor\'s Ore Shipment", + }, + [1656] = { + ["D"] = "$N, please, I beg of you, can you help me? I have not finished my tasks here on the Mesa--I\'m in the middle of my Rite of Strength--and my father asked me to deliver these furs to the inn in Bloodhoof.$B$BI\'m far from rested enough to complete both my rite and this task for my father. Would you mind going on for me?$B$BThe inn is pleasant and a perfect place to rest during your long travels. I\'m sure you\'ll agree once you see it.", + ["O"] = "Bring the Bundle of Furs to Innkeeper Kauth in Bloodhoof Village.", + ["T"] = "A Task Unfinished", + }, + [1657] = { + ["D"] = "Celebrate Hallow\'s End in style... by bringing grief to our enemies in Southshore!$B$BTake one of these specially crafted stink bombs. It is filled with an odiferous funk that no human - or any weak-willed beast for that matter - can stand to smell. You\'ll need to throw it right in the heart of Southshore for it to do its job, so be prepared for a fight against the Alliance!$B$BWhen you\'ve completed this task... this tribute to our liberation, return to me!", + ["O"] = "Toss three Forsaken Stink Bombs into the heart of Southshore in Hillsbrad, and return to Darkcaller Yanka at the Wickerman Festival in Tirisfal Glade.", + ["T"] = "Stinking Up Southshore", + }, + [1658] = { + ["D"] = "I need brave individuals to head up to Tirisfal Glade and check out the Wickerman Festival. I\'m not going to lie - heading up there will be dangerous. The guards at the festival will be exceptionally vicious. Still, we need to know how big the festival is this year, and how much trouble the Forsaken are going to cause us during Hallow\'s End.$B$BIf you\'re up for it, head to Tirisfal and scout out the festival. Return to me with the information, and I\'ll make sure you\'re well compensated.", + ["O"] = "Locate the Forsaken\'s Wickerman Festival in Tirisfal Glade. Return to Sergeant Hartman in Southshore once you\'ve done so.", + ["T"] = "Crashing the Wickerman Festival", + }, + [1659] = { + ["D"] = "", + ["O"] = "", + ["T"] = "", + }, + [1660] = { + ["D"] = "", + ["O"] = "", + ["T"] = "", + }, + [1661] = { + ["D"] = "I greet you once again, $N. I am more proud to call you $g brother:sister; than ever before--your dedication is a tribute to us all.$B$BThe time has come for me to bestow a great gift upon you. But know this, for now I give you this freely, but later, when time permits, this will be a much greater challenge to all paladins who choose to undertake my quest.$B$BSpeak to me again and I shall grant you a great boon.", + ["O"] = "Speak to Duthorian Rall in Stormwind.", + ["T"] = "The Tome of Nobility", + }, + [1665] = { + ["D"] = "Ok, here\'s my mug. Wait! Let me finish what\'s in it first... there we go.", + ["O"] = "Bring Bartleby\'s Mug to Burlguard", + ["T"] = "Bartleby\'s Mug", + }, + [1666] = { + ["D"] = "You\'ve learned a few moves, but you could still use a decent weapon. I bet if you spoke with Marshal Haggard he could help you.$B$BMarshal Haggard lives in a manor in Elwynn Forest, at the Eastvale Lumber Camp. He\'s retired now but he collected a lot of gear during his career.$B$BLet him know I sent you, and with luck he\'ll have a spare weapon to offer.", + ["O"] = "Speak with Marshal Haggard.", + ["T"] = "Marshal Haggard", + }, + [1667] = { + ["D"] = "Burlguard sent you, did he? Yes, I have spare weapons around here, but first I have a task for you...$B$BA while ago a Defias villain Dead-tooth Jack tricked me. It was dark and he was wearing a Stormwind tabard and I thought he was Marshal Dughan. He said he needed my old Stormwind Marshal\'s badge and I gave it to him... and then he laughed and ran off before I could catch him!$B$BGet back my badge! Dead-tooth Jack probably has it stowed in his camp to the south.", + ["O"] = "Retrieve Haggard\'s Badge from Dead-tooth Jack\'s camp, and return to Marshal Haggard.", + ["T"] = "Dead-tooth Jack", + }, + [1678] = { + ["D"] = "If you want to rise in the ranks of the warriors, then you better be tough. I can teach you new moves but before that, prove to me you can handle yourself against real foes.$B$BVejrek is the toughest troll you\'ll find in these parts, and he\'s who you have to beat. He has a hut in the foothills just south of Frostmane Hold$B$BBring me Vejrek\'s head and I\'ll know you have mettle.", + ["O"] = "Bring Vejrek\'s Head to Muren Stormpike in Ironforge.", + ["T"] = "Vejrek", + }, + [1679] = { + ["D"] = "Hello, warrior! You show a lot of promise, but you still need to learn some tricks and Muren Stormpike is just the dwarf to teach you.$B$BYou can find Muren at the Hall of Arms in the Military Ward of Ironforge. Talk to him when you\'re ready to learn what it is to be a warrior.", + ["O"] = "Speak with Muren Stormpike.", + ["T"] = "Muren Stormpike", + }, + [1680] = { + ["D"] = "Now that you\'ve learned some moves, it\'s time to get you a decent weapon. Speak with Tormus Deepforge. He can make you a weapon I\'m sure you\'ll like.$B$BYou\'ll find Tormus here in Ironforge, at the Great Forge.", + ["O"] = "Speak with Tormus Deepforge.", + ["T"] = "Tormus Deepforge", + }, + [1681] = { + ["D"] = "My mentor, Sturgy Ironband, had a compound south of Helm\'s Bed Lake in eastern Dun Morogh. There he taught blacksmithing and he was the best.$B$BBut one day, one of his students brought him a load of strange ore. Master Ironband called it umbral ore and was eager to work with it, but soon after it arrived... a band of Dark Iron dwarves attacked his compound. They killed everyone!$B$BEnter Ironband\'s compound, $N, and avenge my master\'s death. And bring me the load of umbral ore that caused it.", + ["O"] = "Bring a load of Umbral Ore to Tormus Deepforge in Ironforge.", + ["T"] = "Ironband\'s Compound", + }, + [1682] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Grey Iron Weapons", + }, + [1683] = { + ["D"] = "Before I can teach you, you must show me your resolve.$B$BThe satyr Vorlus Vilehoof has found one of our remote moonwells, southeast of the Ban\'ethil Barrow Den. He now splashes within it, defiling its pure waters with his filth.$B$BFind Vorlus at the moonwell and destroy him. Bring me his horn as proof and I will begin your advanced training as a warrior.$B$BThe path to the moonwell is hidden well, $N, but stay focused and alert and you will find it.", + ["O"] = "Bring the Horn of Vorlus to Elanaria in Darnassus.", + ["T"] = "Vorlus Vilehoof", + }, + [1684] = { + ["D"] = "Greetings, warrior. Your skill grows, but there is more to your profession than you may believe. To further progress, you must soon find a teacher.$B$BThe warrior Elanaria dwells in Darnassus, at the Warrior\'s Terrace. She can instruct you.", + ["O"] = "Speak with Elanaria.", + ["T"] = "Elanaria", + }, + [1685] = { + ["D"] = "Isn\'t that how it always works? Was looking for you all day and couldn\'t find you, now when I\'m not expecting it, you come and walk right up to me.$b$bI\'ve wasted enough time trying to find you, so I won\'t delay you any longer. Master Gakin\'s summoned you for additional training. Seems to me you should seek him out as soon as possible.$b$bYou\'ll find him in the basement of the Slaughtered Lamb tavern. By the way, you might want to keep that particular location quiet. Don\'t want word spreading about it.", + ["O"] = "Report to Gakin the Darkbinder in the Mage Quarter of Stormwind.", + ["T"] = "Gakin\'s Summons", + }, + [1686] = { + ["D"] = "You have learned much, $N. Now we will craft you a weapon. A warrior\'s weapon.$B$BTo do this, you must travel to Darkshore.$B$BLong ago a ship crashed upon the rocks near the Auberdine lighthouse, scattering many crates of elunite ore along the ocean floor.$B$BFirst, you must defeat the elunite\'s guardian, the Shade of Elura. Once the ship\'s captain, she cursed herself to roam the deeps and protect her shipment for all time. Defeat her, gain her medallion, and gather the crates of lost Elunite.", + ["O"] = "Bring 8 loads of Elunite Ore and the Medallion of Elura to Elanaria in Darnassus.", + ["T"] = "The Shade of Elura", + }, + [1687] = { + ["D"] = "Sometimes late at night, our matrons at the orphanage will tell us spooky stories. Those RULE! There\'s one about a ghost that haunts a lighthouse in Westfall. They say he was a pirate captain who had his ship taken from him by other pirates. Wow!$B$BCould you please take me to the lighthouse in Westfall? I wanna see if the ghost of that captain is there! I promise to stay close to you; I won\'t run off or anything!", + ["O"] = "Take the orphan to see the lighthouse off the coast of Westfall.", + ["T"] = "Spooky Lighthouse", + }, + [1688] = { + ["D"] = "I had a student named Surena Caledon. She stood where you stand now, eager to learn of warlock magic, and possessing no small bit of talent. More than that she was young and pleasing to the eye. Had I seen it then, the traitorous trollop!$b$bThe thieving wench ran off with one of the Defias, Erlan Drudgemoor. While her loss is of little importance, I gifted her a bloodstone choker that I must have.$b$bHer life means nothing to me now. You will find her at the Brackwell Pumpkin Patch. Retrieve what is mine.", + ["O"] = "Retrieve Surena\'s Choker for Gakin the Darkbinder in Stormwind.", + ["T"] = "Surena Caledon", + }, + [1689] = { + ["D"] = "By retrieving my choker and besting Surena, you\'ve proven that you\'re at least as capable as she was.$b$bWith that said, I can tell you\'re direly in need of training. You can manage the flows of magic, yes, but being a warlock is much more than that.$b$bI will show you how to command a voidwalker, but before I can, you must call one forth at a summoning circle and subdue it using whatever weapons--physical and magical--you have at your disposal. Use the magic of this choker at the summoning circle below.", + ["O"] = "Using the Bloodstone Choker, summon and subdue a voidwalker, then return the Bloodstone Choker to Gakin the Darkbinder in Stormwind.", + ["T"] = "The Binding", + }, + [1690] = { + ["D"] = "You there! It\'s time for you to be a big helper to the Gadgetzan Water Company.$B$BThe Wastewander nomads out in the Tanaris desert have seized almost all the water wells! Without access to them, our water supply will dry up in no time. If you want to get in our good graces, then you\'ll help us bring justice to those nomads!$B$BHead east of here and bring down ten Wastewander Bandits and Thieves, then report back to me on the double. Justice waits for no man... goblin... bah, just get on it!", + ["O"] = "Take down 10 Wastewander Bandits and Thieves east of Gadgetzan, then report back to Chief Engineer Bilgewhizzle.", + ["T"] = "Wastewander Justice", + }, + [1691] = { + ["D"] = "We need you to take on the stronger ranks of the Wastewander nomads now. You\'ve done a good job thus far, but if we are to take back those water wells, then it only makes sense to do it against as few nomads as possible!$B$BThis time around we need you to take down their rogues, assassins, and shadow mages. You\'ll find them east and southeast of here.$B$BI\'m not going to lie to you - they\'re a nasty lot. Do this for us though, and we\'ll be on our way to taking back what is rightfully ours!", + ["O"] = "Take down 10 Wastewander Shadow Mages, 8 Wastewander Rogues, and 6 Wastewander Assassins for Chief Engineer Bilgewhizzle in Gadgetzan.", + ["T"] = "More Wastewander Justice", + }, + [1692] = { + ["D"] = "I have placed the elunite you gathered into a case. Take it to the blacksmith Mathiel, and he will craft for you an elunite weapon.$B$BMathiel is to the south, on the other side of this building.", + ["O"] = "Bring the Case of Elunite to Smith Mathiel. ", + ["T"] = "Smith Mathiel", + }, + [1693] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Weapons of Elunite", + }, + [1698] = { + ["D"] = "Yorus Barleybrew has issued a challenge to all able warriors of the Alliance. He waits at the Lakeshire Inn, in Redridge, and pledges a grand reward to anyone able to pass his trial.", + ["O"] = "Speak with Yorus Barleybrew.", + ["T"] = "Yorus Barleybrew", + }, + [1699] = { + ["D"] = "I call my challenge the Rethban Gauntlet. To pass the trial, all you must do is enter the Rethban Caverns, to the first fork, then return here. Easy! Except there are a few wrinkles...$B$BYou have to return within an hour.$B$BThere are whole heaps of Redridge Gnolls in the way.$B$BBefore you start, you have to take a swig of my family\'s signature drink: Barleybrew Scalder!$B$BSo what do you say? The Rethban Caverns are in the foothills north of Lakeshire. Are you ready to run the Rethban Gauntlet?", + ["O"] = "Enter the Rethban Caverns, reach the first fork, and return to Yorus Barleybrew within the time allowed.$B$BYou must not die and release your spirit.", + ["T"] = "The Rethban Gauntlet", + }, + [1700] = { + ["D"] = "I made a copy of my notes on the techniques I learned while making your armor, and I need them sent to Grimand Elmore. He\'s here in the Dwarven District, in the weapon shop.$B$BAnd duck when you give these to him. He\'s fiercely proud of his skills, and won\'t like the idea of learning something from me...", + ["O"] = "Bring Furen\'s Notes to Grimand Elmore.", + ["T"] = "Grimand Elmore", + }, + [1701] = { + ["D"] = "So I gave you a nice shield, but we don\'t have to stop there. I know the secrets to make extremely hard mail armor. It\'s not easy and it takes very rare materials, but if you\'re willing to do the legwork then I\'ll make a piece for you.$B$BWhat do you say, $N? If you\'re up for the challenge, then I\'ll give you a list of what to get and where to get them.", + ["O"] = "Gather the materials Furen Longbeard requires, and bring them to him in Stormwind.", + ["T"] = "Fire Hardened Mail", + }, + [1702] = { + ["D"] = "You really showed what you were made of when you ran the Rethban Gauntlet, $N. And I\'m true to my word. I\'ll get you the reward I promised...$B$BExcept it\'s in Stormwind.$B$BTalk to my friend, Furen Longbeard, in the Dwarven District of Stormwind. He\'s the best shieldsmith you\'ll ever meet, and he owes me a big favor.$B$BHere, take Furen this cask of Barleybrew Scalder and ask him for a shield. He\'ll give you a nice one.", + ["O"] = "Bring the Cask of Scalder to Furen Longbeard.", + ["T"] = "The Shieldsmith", + }, + [1703] = { + ["D"] = "I made a copy of my notes on the techniques I learned while making your armor, and need them sent to the blacksmith Mathiel. He lives in Darnassus which is quite a long way off, but I\'m sure he\'ll be very grateful to learn what I\'ve learned.", + ["O"] = "Bring Furen\'s Notes to Mathiel.", + ["T"] = "Mathiel", + }, + [1704] = { + ["D"] = "I made a copy of my notes on the techniques I learned while making your armor, and need someone to take them to Klockmort Spannerspan. He\'s a gnomish blacksmith in Ironforge and when he learns what I\'ve learned... I bet he\'ll pull off his own beard in excitement.", + ["O"] = "Bring Furen\'s Notes to Klockmort Spannerspan.", + ["T"] = "Klockmort Spannerspan", + }, + [1705] = { + ["D"] = "I hate to admit that Furen might have really found something. But to be sure I\'ll need to try his techniques on a new piece of armor. If you help me with the materials, $N, then you can have the armor.$B$BTo make this armor, I need samples of burning blood and a burning rock.$B$BThe only place I know to get them is Duskwood. The Nightbane worgen based in the Roland\'s Doom mine have burning blood, and their leader Gutspill will have the rock.$B$BMay fortune grant you speed, $N.", + ["O"] = "Bring 20 vials of Burning Blood and 1 Burning Rock to Grimand Elmore in Stormwind.", + ["T"] = "Burning Blood", + }, + [1706] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Grimand\'s Armor", + }, + [1707] = { + ["D"] = "Greetings $n - the name\'s Luglunket, and we\'ve got an important job for you if you\'re up for it! Huzzah!$B$BNothing would please me more as a seasoned spigot operator to take any Wastewander water pouches you might find out in the desert. That\'s our water anyway - the nomads have just stolen it is all! The Gadgetzan Water Company will offer you an official care package for every five you turn in. Most importantly though, you\'re helping Gadgetzan help itself!", + ["O"] = "Bring 5 Wastewander Water Pouches to Spigot Operator Luglunket in Gadgetzan.", + ["T"] = "Water Pouch Bounty", + }, + [1708] = { + ["D"] = "I want to try Furen Longbeard\'s new techniques on my own piece of armor. And because you helped Furen and he helped me, you\'re welcome to the armor after I make it!$B$BTo finish the piece, I need a special coral, searing coral. It grows in only one place--along the coast south of Menethil Harbor in the Wetlands.$B$BBring me enough searing coral and I\'ll get right to work on the armor. And hurry, $N. I\'m so eager to get started it\'s making my toes twist!", + ["O"] = "Bring 20 loads of Searing Coral to Klockmort Spannerspan in Ironforge.", + ["T"] = "Iron Coral", + }, + [1709] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Klockmort\'s Creation", + }, + [1710] = { + ["D"] = "My colleague, Furen Longbeard, made a discovery which I am eager to test. I wish to try it on a new armor that I am researching, for I believe Furen\'s techniques will produce superior results.$B$BWill you help me? If you gather what I need to make the armor, then I will make an extra piece for you.$B$BI need the sunscorched egg shells of the Highperch Wyverns who dwell at Highperch, in Thousand Needles. Search for the shells below their nests, and return to me when you have a sufficient amount.", + ["O"] = "Bring 20 Sunscorched Shells to Mathiel in Darnassus.", + ["T"] = "Sunscorched Shells", + }, + [1711] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Mathiel\'s Armor", + }, + [1712] = { + ["D"] = "I have spent ages watching this site. I watch, so that one day I might see the great Cyclonian fall. But I have not yet found a champion to defeat the wind lord.$B$BPerhaps you are that champion.$B$BProve it to me. Gather the items I need to summon Cyclonian, and I will know you are a great warrior. Perhaps then you can defeat him and gain his whirlwind heart.$B$BIf so, then I will infuse the heart\'s power in a weapon, and I will give that weapon to you.$B$BHere is a parchment with the items I need.", + ["O"] = "Bring the items on Bath\'rah\'s Parchment to Bath\'rah the Windwatcher in Alterac.", + ["T"] = "Cyclonian", + }, + [1713] = { + ["D"] = "I am ready to perform the ritual to summon Cyclonian. When he is summoned, you must defeat him and take his whirlwind heart. This I will use to instill a weapon with Cyclonian\'s power.$B$B$N, are you ready to face the wind lord?", + ["O"] = "Bring the Whirlwind Heart to Bath\'rah Windwatcher.", + ["T"] = "The Summoning", + }, + [1714] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Essence of the Exile", + }, + [1715] = { + ["D"] = "Hmph. Times past, all warlocks in Khaz Modan were trained under the auspices of the masters of Gnomeregan, but now that we\'ve all been forced to relocate into this rat\'s hole in Ironforge, and Magni\'s decided to keep a careful watch on us, we\'re forced to send our novices to Stormwind for training.$b$bLuckily, Gakin\'s no slouch, so you\'ll still learn what you need to know, but it burns my blood!$b$bAnyways, you\'ll find Gakin in the basement of the Slaughtered Lamb in Stormwind.", + ["O"] = "Report to Gakin the Darkbinder in the Mage Quarter of Stormwind.", + ["T"] = "The Slaughtered Lamb", + }, + [1716] = { + ["D"] = "A succubus is a devourer of souls, destroyer of hearts, and dominator of minds. It knows nothing but evil.$b$bThis will be the creature you will learn to summon and control, but it cannot be brought into our world without a stimulus.$b$bWith a symbol of love as bait, it will surely answer your call. Then you can defeat it, and make it your tool.$b$bIt will be hard to find something of this nature, though. You should speak with Takar the Seer. You will find him in the Barrens of Kalimdor near Camp Taurajo.", + ["O"] = "Speak with Takar the Seer in the Barrens.", + ["T"] = "Devourer of Souls", + }, + [1717] = { + ["D"] = "$n! Didn\'t expect to see you around these parts, but I was instructed to keep an eye out for you.$b$bIt\'s past time you got some more training, so you should stop in to see Gakin the next time you\'re in Stormwind. He\'ll be waiting for you.", + ["O"] = "Report to Gakin the Darkbinder in the Mage Quarter of Stormwind.", + ["T"] = "Gakin\'s Summons", + }, + [1718] = { + ["D"] = "Your renown as a warrior grows, $N. Now it is time to pit yourself against your peers and see where you stand.$B$BThere is an island off the coast of the Barrens, south of Ratchet. It is called Fray Island and it is a place where warriors meet.$B$BMeet, and fight.$B$BSpeak with the chief warrior of Fray Island, Klannoc Macleod. If he finds you worthy, then Klannoc will lead you further down the warrior\'s path.$B$BTo reach Fray Island, search for the sand bar shallows along the Merchant Coast.", + ["O"] = "Speak with Klannoc Macleod.", + ["T"] = "The Islander", + }, + [1719] = { + ["D"] = "If you want to learn from me, then you must first pass The Affray. It is a challenge we on Fray Island like to offer rising warriors who think they\'re tough, and if you can pass this test then I\'ll know you are.$B$BTo begin, walk into the middle of that crowd yonder and step on the grate. That\'ll tell Twiggy Flathead you\'re ready, and he\'ll send challengers against you.$B$BBeat all the challengers and he\'ll call out Big Will. Kill Big Will, and return to me in the time we allow.", + ["O"] = "Kill Big Will, then speak to Klannoc Macleod on Fray Island.", + ["T"] = "The Affray", + }, + [1738] = { + ["D"] = "In preparation for your coming, I used my sight to look over the world and through the mists of time. I have found what it is you seek.$b$bIn the War of the Ancients, two lovers fell together in battle. Where they took their last breaths, a tree known as the heartswood grew, a symbol of their undying love.$b$bThat should be enough to tempt a succubus. You will find it in the ruins of Ordil\'Aran in the northwestern part of the forest of Ashenvale.", + ["O"] = "Retrieve the Heartswood from Ashenvale and bring it to Gakin the Darkbinder in the Mage Quarter of Stormwind.", + ["T"] = "Heartswood", + }, + [1739] = { + ["D"] = "Using the heartswood core, you will be able to cast a spell at the summoning circle in the crypt below to open a portal for the succubus to pass through.$b$bBe careful, $n, succubi have overrun even the strongest of minds.$b$bOnce you have bested and returned it to the void, return to me and I will show you how to call and control it.", + ["O"] = "Using the Heartswood Core, summon and subdue a succubus, then return the Heartswood Core to Gakin the Darkbinder in the Slaughtered Lamb.", + ["T"] = "The Binding", + }, + [1740] = { + ["D"] = "When demons of the Legion fall out of favor, their spirits are imprisoned within orbs and distributed to their mages and warlocks.$b$bMany were carried by their servants in Azeroth. Even fragmented, they still possess the powers of the demons trapped inside.$b$bThe orb of Soran\'ruk was broken into two pieces, one was further broken to be used by the acolytes of the Twilight\'s Hammer in Blackfathom Deeps. The other, larger piece, was possessed by a wizard in Shadowfang Keep. Find them and I can reform it.", + ["O"] = "Find 3 Soran\'ruk Fragments and 1 Large Soran\'ruk Fragment and return them to Doan Karhan in the Barrens.", + ["T"] = "The Orb of Soran\'ruk", + }, + [1758] = { + ["D"] = "It will take more than a simple summoning circle to bring forth a felhunter for you to challenge.$b$bMy three acolytes and I will assist in creating the magic circles. You require a copy of the Tome of the Cabal, which has been lost to us for some time. It was written by the first group of warlocks to summon a felhunter unaided.$b$bPerhaps Krom Stoutarm can help you with this. An itinerant warlock these days, he spends his days hoarding ancient texts and skulking about the library in Ironforge.", + ["O"] = "Speak with Krom Stoutarm in Ironforge.", + ["T"] = "Tome of the Cabal", + }, + [1778] = { + ["D"] = "I\'m going to see about making plans to return home soon. Hopefully, Stephanie is doing well back in Stormwind. I can\'t wait to see her again. Till next we meet, $c.", + ["O"] = "Speak to Tiza Battleforge in Ironforge.", + ["T"] = "The Tome of Divinity", + }, + [1779] = { + ["D"] = "I want you to take this, $N. It is called the Symbol of Life.$B$BYou\'ve proven charitable and patient, and now I want you to prove just how adept you\'ve become in both combat, and power.$B$BMy husband Muiredon returned recently from an encounter with some Dark Iron dwarves, and he barely escaped with his life--he\'s over there having his wounds healed by one of our priests.$B$BTake the Symbol and speak to him. If you can help him, then we will speak again soon. May the Light shine upon you.", + ["O"] = "Take the Symbol of Life and speak to Muiredon Battleforge in Ironforge.", + ["T"] = "The Tome of Divinity", + }, + [1780] = { + ["D"] = "I\'ll take these to the children this very day. Please be safe, good $c. It is not often $G men:women; of your character show their faces in the city, but you\'ve proven that the paladins here in Stormwind shall never turn their backs on those in need.$B$BFarewell.", + ["O"] = "Speak to Duthorian Rall in Stormwind.", + ["T"] = "The Tome of Divinity", + }, + [1781] = { + ["D"] = "Take this, $N. It is called the Symbol of Life.$B$BYou\'ve proven charitable and patient, and now the time has come to see if you\'re powerful enough to focus one of the Light\'s greatest gifts.$B$BMy friend Gazin returned recently from an encounter with some Defias in Elwynn near Heroes\' Vigil--he barely escaped with his life. He\'s near the altar having his wounds healed by our priests.$B$BTake the Symbol and speak to him. If you can help him, then we will speak again soon. May you bask in the Light\'s glory.", + ["O"] = "Take the Symbol of Life to Gazin Tenorm in Stormwind.", + ["T"] = "The Tome of Divinity", + }, + [1782] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Furen\'s Armor", + }, + [1783] = { + ["D"] = "We was spyin\' on some of the Dark Iron dwarves that\'ve bunkered down south of Helm\'s Bed Lake. We knew they was up to no good, so Narm an\' me thought we\'d take a closer look--got ta see their leader given orders to some o\' his men.$B$BNarm an\' me took the chance to kill a few of \'em, but they proved tougher than we thought, an\' more of \'em got the jump on us. Narm tol\' me to run an\' get support, so \'ere I am.$B$BNarm needs help, an\' I\'ll not rest till he gets it.$B$BC\'n ya help, $N?", + ["O"] = "Take the Symbol of Life and resurrect Narm Faulk in Dun Morogh.", + ["T"] = "The Tome of Divinity", + }, + [1784] = { + ["D"] = "Before I fell in battle, Muiredon and I had almost defeated one of the Dark Iron spies near that small house. We witnessed their captain passing orders to them, and sought to kill him and take the orders.$B$BSome of the council in Ironforge do not yet believe the presence of Dark Iron dwarves exists in Dun Morogh. By attaining one of those scripts, we\'ll not only have proof of their movements, but possibly an idea of what they\'re planning.$B$BGet one of those scripts and take it back to Muiredon, $N.", + ["O"] = "Retrieve a Dark Iron Script from the Dark Iron dwarves near Helm\'s Bed, and return to Muiredon Battleforge in Ironforge.", + ["T"] = "The Tome of Divinity", + }, + [1785] = { + ["D"] = "I c\'n see me wife\'s o\'er there beamin\' wit pride already. Ya better get yer tuchus o\'er there pronto. I be thinkin\' she\'d have some words wit ya.$B$BLight be witcha, mighty $c. I\'ll be lookin\' fer ya on the battlefield against the Scourge and dem Dark Irons when the time comes.", + ["O"] = "Speak to Tiza Battleforge in Ironforge.", + ["T"] = "The Tome of Divinity", + }, + [1786] = { + ["D"] = "Henze and I had made it to Heroes\' Vigil, an island in the middle of Stone Cairn Lake in northeastern Elwynn. We\'d heard the Defias had infiltrated our borders and we wanted proof to take to the king\'s advisors.$B$BWe caught sight of a couple of the scum going over some documents, and we attacked. Unfortunately, we were quickly overwhelmed by more of the mages.$B$BHenze held them off for me while I escaped... the daft fool, going and being brave.$B$BHe\'s out there now, Henze is. Can you help us, $N?", + ["O"] = "Take the Symbol of Life and resurrect Henze Faulk in Elwynn.", + ["T"] = "The Tome of Divinity", + }, + [1787] = { + ["D"] = "We\'ll have time to talk more about the Symbol at a later time. What\'s important now is to get those papers we saw the Defias going over. If we can get our hands on them, we\'ll be able to prove the Defias have infiltrated Elwynn and hopefully gain some insight into what their plans are.$B$BI\'m in no shape for battle as of now, $N. Do you think you\'re strong enough to get those papers from the Defias here on the island?$B$BIf you\'re able to get them, bring them back to Gazin and let him know I\'m all right.", + ["O"] = "Retrieve a Defias Script from the Defias Rogue Wizards in Elwynn, and return to Gazin Tenorm in Stormwind.", + ["T"] = "The Tome of Divinity", + }, + [1788] = { + ["D"] = "I\'ll take the script to the King\'s advisors after Duthorian\'s taken a look at them, but in the meantime, you should go speak to Duthorian now. He\'ll be wanting to pat you on the back for sure!$B$BThank you again, $N. I hope we meet again. You\'re surely an ally I\'m proud to call friend.", + ["O"] = "Speak to Duthorian Rall in Stormwind.", + ["T"] = "The Tome of Divinity", + }, + [1789] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Symbol of Life", + }, + [1790] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Symbol of Life", + }, + [1791] = { + ["D"] = "Now that you\'ve learned your berserker\'s stance, you\'ll want a nice weapon to use it with.$B$BTalk to Bath\'rah the Windwatcher, a troll hermit who lives between the Alterac Mountains and the Western Plaguelands. He is a skilled weapon maker and a powerful shaman.$B$BTo find Bath\'rah, go to the river that flows along Tarren Mill\'s eastern flank. Follow it north--Bath\'rah is camped near ruins that rest along the river\'s eastern bank.", + ["O"] = "Speak with Bath\'rah the Windwatcher.", + ["T"] = "The Windwatcher", + }, + [1792] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Whirlwind Weapon", + }, + [1793] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Tome of Valor", + }, + [1794] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Tome of Valor", + }, + [1795] = { + ["D"] = "If you\'re are sufficiently prepared, then we should begin. Let me explain the process to you.$b$bI will begin by creating the basic summoning circle. When that is finished, my acolytes will use the rods of channeling to create the greater circle.$b$bOnce that is done, read the incantation from the Tome of the Cabal, and the felhunter will be pulled forth. Be careful, $n. A felhunter is a powerful foe, and I\'d like to see you keep your head on your shoulders.", + ["O"] = "Using the Tome of the Cabal, summon and subdue a felhunter, then return the Tome of the Cabal to Strahad Farsan in Ratchet.", + ["T"] = "The Binding", + }, + [1796] = { + ["D"] = "The first item I will aid you in creating is a robe. You will gather the items for me, and we will put them together. Afterwards, assuming you succeed, you will have the first of many items that will make you more powerful and aid you in your struggles.$B$BTo start, you must have crafted Robes of Arcana. A tailor can make this for you, or perhaps you can purchase one from someone else--I\'d be most impressed if you could make it yourself--but regardless, bring me the robes, and we shall go from there.", + ["O"] = "Bring Robes of the Arcana to Menara Voidrender in the Barrens.", + ["T"] = "Components for the Enchanted Gold Bloodrobe", + }, + [1798] = { + ["D"] = "It is time you learned the felhunter summoning, $n. I do not have the reagents and items necessary to teach you here, so you will have to seek out another, Strahad Farsan, another of our inner circle.$b$bHe makes his residence in the goblin port of Ratchet. I will send word ahead of you to inform him of your coming.", + ["O"] = "Speak with Strahad Farsan in the Barrens.", + ["T"] = "Seeking Strahad", + }, + [1799] = { + ["D"] = "Good, then we shall begin.$B$BThe first thing you must do is speak to my acolytes inside. Choose one of their paths to follow--they will explain more.$B$BSecond, you must travel to Desolace and find an Infernal Orb from one of the warlocks of Mannoroc Coven. It is that orb that you will cleanse with the help of a mage named Tabetha deep in southern Dustwallow Marsh. She will aid you because of our history together.$B$BAgain, do not come back until you have done both things I\'ve asked.", + ["O"] = "Speak to Menara\'s acolytes inside the tower above Ratchet and choose one of their paths to follow.$B$BAfterwards, bring an Infernal Orb to Tabetha in Dustwallow Marsh.", + ["T"] = "Fragments of the Orb of Orahil", + }, + [1800] = { + ["D"] = "The orphan matrons at my home tell mighty stories of battle and lore at night if we are good and do our chores. One story was about how Lordaeron fell, and about how the evil Arthas took his own father\'s life to become ruler.$B$BHe had no honor, $N! When I grow up and become a mighty Horde warrior, my blade will be guided by honor - never evil!$B$BWould you take me to see the throne room, please? It is just before where you would go down into the Undercity.", + ["O"] = "Take your ward to the old Lordaeron Throne Room that lies just before descending into the Undercity.", + ["T"] = "Lordaeron Throne Room", + }, + [1801] = { + ["D"] = "It will take more than a simple summoning circle to bring forth a felhunter for you to challenge.$b$bMy three acolytes and I will assist in creating the magic circles. You require a copy of the Tome of the Cabal, which has been lost to us for some time. It was written by the first group of warlocks to summon a felhunter unaided.$b$bPerhaps Jorah Annison can help you with this. He\'s employed as a cartographer in the Undercity these days, but still knows more of ancient texts than any I know.", + ["O"] = "Speak with Jorah Annison in the Undercity.", + ["T"] = "Tome of the Cabal", + }, + [1802] = { + ["D"] = "It was lost, but there\'s some idea as to where it might be found.$b$bThere was only one copy ever made and it was vandalized at some point, a large portion of it ripped from the binding. Rumor has it that it somehow passed into the hands of the centaur of Thousand Needles.$b$bThe rest was lost off the coast west of Southshore, where it was to be transported to Menethil Harbor by boat. It never arrived.$b$bIn exchange for this knowledge, all I ask is that if you find it, bring it to me to see.", + ["O"] = "Retrieve the Moldy Tome and Tattered Manuscript for Krom Stoutarm in Ironforge.", + ["T"] = "Tome of the Cabal", + }, + [1803] = { + ["D"] = "Ah! I see that you are a warlock of similar tastes to mine. Indeed, acquiring the Tome of the Cabal is a worthy aspiration. Did you know that it was once held within the walls of Lordaeron? It was vandalized though, almost half its pages removed. Who would commit such a heinous act?$b$bThat half is lost, though rumor says that it fell into the hands of the centaur of the Thousand Needles.$b$bThe rest of the text was to be transferred to Ironforge, but was lost in transit on the coast west of Southshore.", + ["O"] = "Retrieve the Moldy Tome and Tattered Manuscript for Jorah Annison in the Undercity.", + ["T"] = "Tome of the Cabal", + }, + [1804] = { + ["D"] = "Well, ah, it\'s hard to let it go. But you found it, and you have more important things to do with it, of course. Just, please, be sure to mention to Strahad that I wanted a copy.$b$bWhile you were out, he sent a message for you. He wanted me to tell you that for his acolytes to assist with the summoning, you\'ll have to acquire three rods of channeling.$b$bHe might not know where to find them, but I do! They were last used by the orcs of the Dragonmaw clan in the Wetlands. I\'d check their spellcasters!", + ["O"] = "Bring the Reconstructed Tome and 3 Rods of Channeling to Strahad Farsan in Ratchet.", + ["T"] = "Tome of the Cabal", + }, + [1805] = { + ["D"] = "This is one of the most interesting texts I have perused in the last few years. The selection here is sparse--mostly books on geography--and I have already read them all. I should hope that Strahad would send me a copy of this tome when he has the chance.$b$bSpeaking of him, he sent word to me while you were away. For your task, you must obtain three rods of channeling.$b$bFor allowing me to look at this text, I will share a secret: You can find the rods on orcs of the Dragonmaw Clan in the Wetlands.", + ["O"] = "Bring the Reconstructed Tome and 3 Rods of Channeling to Strahad Farsan in Ratchet.", + ["T"] = "Tome of the Cabal", + }, + [1806] = { + ["D"] = "Why don\'t we go over to the forge and get started on this? I\'ve been preparing for your arrival for some time, so it shouldn\'t take long at all.$B$BWhen we\'re done, you\'ll be far more prepared to defend the Light than you have been, this much I swear.$B$BI\'ll be somewhat honest, $N, seeing the results of your exploits makes me somewhat envious. But knowing that I can contribute to your adventures in my own significant way does bring me some joy.", + ["O"] = "Wait for Jordan Stilwell to finish forging a weapon for you.", + ["T"] = "The Test of Righteousness", + }, + [1818] = { + ["D"] = "I was told Deathguard Dillinger has a job for someone like you. If you\'re willing to show your value to the Dark Lady\'s forces, then report to Dillinger immediately.$B$BDeathguard Dillinger\'s post is on the west end of Brill, near the graveyard.", + ["O"] = "Speak with Deathguard Dillinger in Brill.", + ["T"] = "Speak with Dillinger", + }, + [1819] = { + ["D"] = "When the Scourge swept through Tirisfal Glades, we captured one to study. He had a free mind, and called himself Ulag the Cleaver. But, although his will was free, he was still enthralled by the Lich King.$B$BWe hoped to find a way to break the king\'s control over Ulag, but we failed. Now, finally, it is time to free him. $B$BFree him, and kill him.$B$BActivate the skull stone trigger near the mausoleum to the north. This will lift the magical seal that binds him.$B$BThen... be ready, $N.", + ["O"] = "Kill Ulag the Cleaver, then speak with Deathguard Dillinger.", + ["T"] = "Ulag the Cleaver", + }, + [1820] = { + ["D"] = "You have proven your value to the Dark Lady, now perhaps you can prove yourself to one of her subjects.$B$BColeman Farthing awaits a warrior who is willing to be his instrument of revenge against the Forsaken\'s enemies.$B$BYou will find him in the Gallow\'s End Tavern in eastern Brill.", + ["O"] = "Speak with Coleman Farthing.", + ["T"] = "Speak with Coleman", + }, + [1821] = { + ["D"] = "The Agamand family were my employers in life, and they were the cause of my death! It is fitting that the Agamands are now mindless minions of the Lich King.$B$BNow I would have their last vestiges of honor. Go into their family crypt and rob them of their family heirlooms: a sword, an axe, a dagger and a mace. Bring them to me!$B$BThe Agamand family crypt is at the north end of the Agamand mills, protected by lurking scourge and dead Agamands.", + ["O"] = "Bring Coleman Farthing the Agamand Family Axe, the Agamand Family Sword, the Agamand Family Mace and the Agamand Family dagger.", + ["T"] = "Agamand Heirlooms", + }, + [1822] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Heirloom Weapon", + }, + [1823] = { + ["D"] = "You are a warrior of skill and growing renown. Perhaps you are ready for Ruga Ragetotem\'s trial? If so, then find Ruga in Camp Taurajo in the Barrens.$B$BHe awaits those warriors who answer his call.", + ["O"] = "Speak with Ruga Ragetotem.", + ["T"] = "Speak with Ruga", + }, + [1824] = { + ["D"] = "To pass this trial, you must travel south to the Field of Giants. There you will find a host of crawling, insect creatures. They are new to the Barrens and I do not like what they herald.$B$BBring me their still-twitching antennae, and waste no time, $N, for harvested antennae will not twitch for long. Bring me the antennae in the time allowed, and you will pass the trial.", + ["O"] = "Bring 5 twitching antennae to Ruga Ragetotem at Camp Taurajo", + ["T"] = "Trial at the Field of Giants", + }, + [1825] = { + ["D"] = "Thun\'grim Firegaze, an orc blacksmith of renown, has heard of your continued deeds of valor in service of the Horde. He would like to fashion for you a suit of armor, and bids you speak with him immediately.$B$BThun\'grim is camped east of the Crossroads in the Barrens.", + ["O"] = "Speak with Thun\'grim Firegaze in the Barrens.", + ["T"] = "Speak with Thun\'grim", + }, + [1838] = { + ["D"] = "I have heard tales of your strength and valor, and wish to make for you a suit of armor, a companion to aid you as tales of your great deeds grow.$B$BBut the fashioning of this armor will be a quest unto itself, $N. I will need your help, and the help of other smiths of the Horde.$B$BHere, take this scroll. I spent many nights, struggling with near-blind eyes, writing that which I need for the armor. Bring me the items on this scroll and I will create for you the first piece of the suit.", + ["O"] = "Bring to Thun\'grim Firegaze 15 Smoky Iron Ingots, 10 Powdered Azurite, 10 Iron Bars and a Vial of Phlogiston.", + ["T"] = "Brutal Armor", + }, + [1839] = { + ["D"] = "The troll smith Ula\'elek will craft for you the brutal gauntlets. He dwells in Durotar, in Sen\'jin Village with his Darkspear brethren, and he awaits your coming.", + ["O"] = "Speak with Ula\'elek in Durotar.", + ["T"] = "Ula\'elek and the Brutal Gauntlets", + }, + [1840] = { + ["D"] = "Orm Stonehoof is respected greatly for his skill. He will make for you the brutal helm.$B$BSeek him out in Thunder Bluff, near the pool by the city\'s great, central totem.", + ["O"] = "Speak with Orm Stonehoof in Thunder Bluff.", + ["T"] = "Orm Stonehoof and the Brutal Helm", + }, + [1841] = { + ["D"] = "It is said that, before her death, Velora Nitely was one of the finest armorsmiths in Lordaeron. Death, it seems, has not decreased her talents. Speak with Velora--she will make your brutal legguards.$B$BVelora plies her trade in the Undercity of Lordaeron, in the trade quarter.", + ["O"] = "Speak with Velora Nitely in the Undercity.", + ["T"] = "Velora Nitely and the Brutal Legguards", + }, + [1842] = { + ["D"] = "I can make you a pair of brutal gauntlets, and great magic will they hold. But first, you must collect this magic and bring it to me.$B$BThe satyrs dwell in northeastern Ashenvale because of the forest\'s power. They feed off its purity, leeching and corrupting. You can tell which satyrs have drawn the most of Ashenvale\'s magic by their swollen, uncloven hooves.$B$BThese hooves hold great power. I will need them for your gauntlets\' crafting.", + ["O"] = "Bring 7 Uncloven Satyr Hooves to Ula\'elek at Sen\'jin Village in Durotar", + ["T"] = "Satyr Hooves", + }, + [1843] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Brutal Gauntlets", + }, + [1844] = { + ["D"] = "I will make you the helm, but you must show me you are worthy of it.$B$BNestled in the northwestern reaches of the Stonetalon Mountains there lies the Charred Vale. It was once a verdant place, but is now defiled and ashen, and what creatures remain there are mad with pain and despair.$B$BThat place is where I send you, $N.$B$BYou must go to the Charred Vale and find a chimaera matriarch. Slay her, free her of her misery. Bring me her galvanized horn as proof, and I shall make for you the helm. ", + ["O"] = "Bring a Galvanized Horn to Orm Stonehoof in Thunder Bluff.", + ["T"] = "Chimaeric Horn", + }, + [1845] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Brutal Helm", + }, + [1846] = { + ["D"] = "To make the brutal leg guards, I need a brace of sturdy shinbones. The Dragonmaw orcs of the Wetlands have nice, thick shinbones. I\'ll need theirs.$B$BBut they must be sturdy. Be sure to test the shinbones as you collect them. If you can break them with your bare hands, then they won\'t be sturdy enough to work with.", + ["O"] = "Bring 8 Sturdy Dragonmaw Shinbones to Velora Nitely in the Undercity.", + ["T"] = "Dragonmaw Shinbones", + }, + [1847] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Brutal Legguards", + }, + [1848] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Brutal Hauberk", + }, + [1858] = { + ["D"] = "I\'ll leave it to you to get Tazan\'s satchel open, and return to me with its contents. The locking mechanism is complex, so it would probably be easiest if you obtained the key.$b$bAs you didn\'t find it on Tazan\'s body, I can only assume that he left the key in the care of another... Ah, yes, that\'s right. He had an assistant named Gamon. A drunkard, you\'ll most likely find him at the tavern. Perhaps you could quietly relieve him of the key.", + ["O"] = "Steal Tazan\'s key, then use it to open his Satchel and deliver its contents to Therzok in the Cleft of Shadow in Orgrimmar.", + ["T"] = "The Shattered Hand", + }, + [1859] = { + ["D"] = "Lower your voice, $n. Yeah, I know your name. Was told to keep an eye out for an orc by your description.$b$bFrom what we\'ve heard about you, you can handle yourself in combat, and aren\'t opposed to a little sneakery from time to time.$b$bAm I right?$b$bAnyways, you should go see Therzok in Orgrimmar. He\'s got an offer for you to hear.", + ["O"] = "Speak with Therzok in the Cleft of Shadow in Orgrimmar.", + ["T"] = "Therzok", + }, + [1860] = { + ["D"] = "We mages have a task that needs doing. One that is vital to the safety of Stormwind and Elwynn forest.$B$BJennea Cannon has the details. She studies in the wizard\'s sanctum, in the mage district of Stormwind. You should make your way to her with haste.", + ["O"] = "Speak with Jennea Cannon in Stormwind.", + ["T"] = "Speak with Jennea", + }, + [1861] = { + ["D"] = "This world has been victim to massive mystic struggles, which tore magic currents from once stable channels. We struggle to determine the effects these changes have caused, and some of us fear the worst!$B$BBut I will reveal more of this later. Right now, we need you to gather information.$B$BHere, take this flask. Go to the base of the waterfall at Mirror Lake, southwest of the Stormwind gates, and retrieve a sample of the water there. Return it to me so that I might test it for magical taints.", + ["O"] = "Bring a Mirror Lake sample to Jennea Cannon in Stormwind.", + ["T"] = "Mirror Lake", + }, + [1878] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Water Pouch Bounty", + }, + [1879] = { + ["D"] = "$N! Bink, my gnome colleague in Ironforge, sends word. She has a task that needs doing and won\'t rely on anyone but a mage to do it! Are you that mage, $N?$B$BIf so, then speak with Bink. She spends her time in the Hall of Mysteries in the Mystic Ward of Ironforge.", + ["O"] = "Speak with Bink in Ironforge.", + ["T"] = "Speak with Bink", + }, + [1880] = { + ["D"] = "We mages do more than just waggle our fingers and make pretty sparks! We control magic, the base fabric of our world! And that takes great care, and resolve. And knowledge... so much knowledge!$B$BOne of my devices, the mage-tastic gizmonitor, collects and stores that knowledge in huge amounts! But it\'s lost! When we fled our home of Gnomeregan, I left it in a chest in one of our huts outside the city, and now the place is crawling with leper gnomes!$B$BPlease, $N, retrieve my gizmonitor!", + ["O"] = "Bring Bink her Mage-tastic Gizmonitor.", + ["T"] = "Mage-tastic Gizmonitor", + }, + [1881] = { + ["D"] = "$N, Anastasia Hartwell has a task for someone of your talents. Speak with her in the Magic Quarter of the Undercity, and prepare yourself for your first task for the mages of the Forsaken.", + ["O"] = "Speak with Anastasia Hartwell.", + ["T"] = "Speak with Anastasia", + }, + [1882] = { + ["D"] = "The Plaguelands to the east are an aberration. Devised by the Lich King, they spread their magic into the soil, corrupting and killing all that live. Although there is a certain charm to the destructive forces of the plague, we, the mages of the Forsaken, believe it is unruly and must be curtailed.$B$BBut first, we must measure how far it has spread into Tirisfal. Go to the Balnir Farmstead in eastern Tirisfal. In the garden are flowers--snapdragons. Gather these and return.", + ["O"] = "Bring Balnir Snapdragons to Anastasia Hartwell in the Mage Quarter of the Undercity.", + ["T"] = "The Balnir Farmstead", + }, + [1883] = { + ["D"] = "Un\'thuwa, tribal mage of Sen\'jin Village, detects a disturbance in the magic currents of Durotar and asks for aid. Speak with Un\'thuwa and do what you can to help him.$B$BDo this, and in time further secrets will be revealed to you.", + ["O"] = "Speak with Un\'thuwa.", + ["T"] = "Speak with Un\'thuwa", + }, + [1884] = { + ["D"] = "The warlock Zalazane of the Echo Isles has disrupted the normal flow of magic in Durotar. He does this through tainted fetishes, ju-ju heaps, which he has placed among his huts on the main Echo Isle.$B$BThese heaps corrupt our wildlife and give power to the warlocks and infernal creatures that lurk in the land\'s dark corners.$B$BYou must destroy the ju-ju heaps, $N, before the flow of magic is forever altered.", + ["O"] = "Destroy 4 Ju-Ju Heaps, then return to Un\'thuwa in Sen\'jin Village.", + ["T"] = "Ju-Ju Heaps", + }, + [1885] = { + ["D"] = "$n? Not quite what I was expecting, considering Carkad himself has taken an interest to you. Looks can be deceiving though, right?$b$bEither way, you should go see him as soon as possible. You wouldn\'t want to know what happened to the last few that chose to ignore his summons.", + ["O"] = "Speak with Mennet Carkad in the Rogues\' Quarter of the Undercity.", + ["T"] = "Mennet Carkad", + }, + [1886] = { + ["D"] = "If you wish to join the Deathstalkers, Lord Varimathras\' elite guard, you will have to prove your worth.$b$bI will not lie to you, $n, this task could mean your death.$b$bI have some things that need attending to. I require the personal effects of Astor Hadren, a messenger who travels between Silverpine and the Undercity. I will leave the method of procurement to your discretion.$b$bIt will be better for you if you know less of the nature of this business. Succeed and I shall tell you more.", + ["O"] = "Get Astor\'s Letter of Introduction and return it to Mennet Carkad in the Rogues\' Quarter.", + ["T"] = "The Deathstalkers", + }, + [1898] = { + ["D"] = "The letter of introduction should be enough to convince Andron that you are the messenger he\'s been waiting for. I\'ve met Andron before, he doesn\'t quite have the mental capacity to be that suspicious.$b$bLord Varimathras suspects that Andron has been providing aid to some other group. He wishes to know what organization this is and requires proof of it.$b$bI want you to speak with Andron, and obtain this information. You\'ll find him at his shop near the Apothecarium.", + ["O"] = "Speak with Andron Gant in the Undercity.", + ["T"] = "The Deathstalkers", + }, + [1899] = { + ["D"] = "You\'ll find the ledger with the information your employers seek on the bookshelf behind me. Deliver it with my regards, and tell them that I would prefer it if they sent you, if they find enough value that they should wish to continue our arrangement.", + ["O"] = "Bring Astor\'s Ledger to Mennet Carkad in the Rogues\' Quarter of Undercity.", + ["T"] = "The Deathstalkers", + }, + [1918] = { + ["D"] = "The slain elemental has produced an intensely glowing globe of water. The contents of the globe are, at best, disgusting. It would be safe to assume that whatever has befouled the water of Mystral Lake is most likely present in the water of the globe.$B$BIt\'s not exactly common knowledge who might be interested in such a find; perhaps the person who originally sent you out to the lake, Mastok Wrilehiss at Splintertree Post, might have an idea.", + ["O"] = "Bring the Befouled Water Globe to Mastok Wrilehiss at Splintertree Post, Ashenvale.", + ["T"] = "The Befouled Element", + }, + [1919] = { + ["D"] = "Your knowledge of the craft grows, young $N. Are you now ready to begin your true lessons? Are you ready to take your place in the secret war we wage?$B$BIf so, then speak with Jennea Cannon, in the wizard\'s sanctum in the mage district of Stormwind. She has a task for you which will open your first window into the invisible world.", + ["O"] = "Speak with Jennea Cannon in Stormwind.", + ["T"] = "Report to Jennea", + }, + [1920] = { + ["D"] = "A disturbance has been reported at the Blue Recluse tavern in the Mage Quarter. Strange, invisible creatures now wander the tavern, and I fear a mana rift has formed there.$B$BI want you to investigate the tavern and capture those creatures. Use the cantation of manifestation in the tavern to make the creatures visible, subdue them then use a containment coffer to capture them. When you have enough, return to me with your filled coffers, your empty coffers and the cantation.", + ["O"] = "Obtain a Cantation of Manifestation and a Chest of Containment coffers from behind Jennea Cannon. Bring 3 Filled Containment Coffers to Jennea at the Wizard\'s Sanctum.", + ["T"] = "Investigate the Blue Recluse", + }, + [1921] = { + ["D"] = "You have served your fellow mages well, and now it is time to don your wizard\'s robe. Wynne Larson can make your robe, but you must bring her the needed materials $B$BThe robe will be made of linen which is easy to find, but you must also gain charged rift gems, and the only known location of the gems is in the Silver Stream Mine of Loch Modan, left in crates by the dwarven miners\' league.$B$BGather the linen and the gems and bring them to Wynne Larson at the Larson Clothiers in the Mage District.", + ["O"] = "Bring 10 Linen and the 6 Charged Rift Gems to Wynne Larson in Stormwind.", + ["T"] = "Gathering Materials", + }, + [1938] = { + ["D"] = "Long ago, three mages studied in this tower until one fell to the dark arts. He was urged to turn away from that evil magic, but he could not resist. And so he was banished.$B$BThe fallen mage\'s new domain is the tower of Ilgalar in Redridge, and he took with him a powerful book--Ur\'s Treatise on Shadow Magic.$B$BWe, the mages of Stormwind, would have that book returned. Enter the tower of Ilgalar, find the tome in his library, and bring it to me.", + ["O"] = "Bring Ur\'s Treatise on Shadow Magic to High Sorcerer Andromath in Stormwind.", + ["T"] = "Ur\'s Treatise on Shadow Magic", + }, + [1939] = { + ["D"] = "High Sorcerer Andromath wishes to speak with you, $N. He is at the top of the wizard\'s sanctum, in the mage\'s district of Stormwind.$B$BIt would be wise to speak with him, for Andromath is one of the most powerful mages not locked away in Dalaran. Council with him is high council indeed.", + ["O"] = "Speak with High Sorcerer Andromath.", + ["T"] = "High Sorcerer Andromath", + }, + [1940] = { + ["D"] = "Your service has been unwavering, $N. I think, perhaps, it is time you had a finer garment, one more suiting your station as an adept mage. If you gather the needed materials, then we will arrange the robe made.$B$BYou must enter Duskwood and hunt carrion recluse spiders. Extract their silk, but only the finest, most pristine silk will do. When you have enough, take it to Wynne Larson, here in the mage district at the Larson Clothiers. She will craft your robe.", + ["O"] = "Bring 8 Pristine Spider Silk to Wynne Larson in Stormwind.", + ["T"] = "Pristine Spider Silk", + }, + [1941] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Manaweave Robe", + }, + [1942] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Astral Knot Garment", + }, + [1943] = { + ["D"] = "The troll mage Deino has need of your assistance, $N. She resides in Orgrimmar, in the Darkbriar Lodge.", + ["O"] = "Speak with Deino.", + ["T"] = "Speak with Deino", + }, + [1944] = { + ["D"] = "The fabled city of Xavian lies nestled deep within eastern Ashenvale, and tales of its ancient knowledge are well known among the learned. It is said that the waters of Xavian hold vast magical powers.$B$BI would have a sample of those waters, from their source.$B$BTake this flask and go to Xavian. Gather water from the bottom of its highest waterfall, and return to me. And use care as you move through that ancient city--satyrs now hold the ruins and do not like mages prying into their affairs.", + ["O"] = "Bring the Xavian Water Sample to Deino in Orgrimmar.", + ["T"] = "Waters of Xavian", + }, + [1945] = { + ["D"] = "For your services, I have arranged for the creation of your new robes, provided you can gather the needed materials...$B$BFor these robes, you must return to Ashenvale for the locks of hair from laughing sisters--dryads who gather near the Raynewood Retreat.$B$BWhen you have their hair, bring it to Kil\'hala, a troll tailor at the Crossroads in the Barrens. He will be expecting you, and will fashion your robes.", + ["O"] = "Bring 12 Laughing Sister\'s Hairs to Kil\'hala at the Crossroads.", + ["T"] = "Laughing Sisters", + }, + [1946] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Nether-lace Garment", + }, + [1947] = { + ["D"] = "Now it is time for you to earn your mage\'s wand. To begin this quest, speak with the human hermit Tabetha in Dustwallow Marsh. You will find her shack deep in the marsh, west of Theramore.$B$BSpeak with her, for her knowledge is vast. You will find Tabetha\'s cottage west of Theramore, and just north of the Stonemaul Ruins.", + ["O"] = "Speak with Tabetha.", + ["T"] = "Journey to the Marsh", + }, + [1948] = { + ["D"] = "The building of a mage\'s wand is not easy. Rare substances are required, and a vessel must be made that can store great quantities of magical energy. You must gather these things and bring them to me.$B$BI have written onto this parchment that which you need, and instructions on how to get it. Bring me exactly what is on this list, and follow my written directions to the letter, for if you do not then when we make your wand things might go... badly.", + ["O"] = "Bring 1 Jade and the Bolt Charged Bramble to Tabetha in Dustwallow Marsh.", + ["T"] = "Items of Power", + }, + [1949] = { + ["D"] = "To make your wand, there are key passages in a certain book that I must read. The book is called Rituals of Power, written by the Magus Tirth.$B$BI do not have a copy of his book, and none of the world\'s great libraries possess it. So you must speak with Tirth and gain it from him.$B$BGood luck. Tirth used to be a great mage and scholar, but now he spends his time at the gnome and goblin races in the Shimmering Flats, drinking and gambling.", + ["O"] = "Speak with Magus Tirth in the Shimmering Flats.", + ["T"] = "Hidden Secrets", + }, + [1950] = { + ["D"] = "I can help you with the book, but first you have to help me!$B$BThe tome you seek is in my magically locked strongbox. To open it a special phrase must be uttered, and I can\'t remember the phrase! Normally my assistant helps me remember these things but he\'s nowhere to be found.$B$BIf you want my book, then find my apprentice! Ask around the race track--if you\'re lucky then someone has seen him. Either drag him back here, or at least get my magic phrase from him so we can open my box!", + ["O"] = "Find the phrase to Tirth\'s strongbox, then return to Tirth.", + ["T"] = "Get the Scoop", + }, + [1951] = { + ["D"] = "Hm... now that I think about it, I don\'t have my book! You see, I had some gambling debts and to pay them off I sold the last copy of Rituals of Power to a member of the clergy....$B$BA member of the Scarlet Brotherhood. He must have taken it to their library in the Scarlet Monastery in Tirisfal Glades!$B$BIf you want that book, then you\'ll have to go to the monastery to find it. And sorry about all the trouble. I\'m not myself these days...", + ["O"] = "Bring the book Rituals of Power to Tabetha in Dustwallow Marsh.", + ["T"] = "Rituals of Power", + }, + [1952] = { + ["D"] = "I\'ll go make the wands now.", + ["O"] = "Speak with Tabetha after her ritual.", + ["T"] = "Mage\'s Wand", + }, + [1953] = { + ["D"] = "It is time, $N, for you to speak with Tabetha... the hermit of Dustwallow Marsh. She will instruct you on the creation of a powerful mage\'s implement.$B$BTabetha\'s shack lies deep in Dustwallow Marsh, west of Theramore.", + ["O"] = "Speak with Tabetha.", + ["T"] = "Return to the Marsh", + }, + [1954] = { + ["D"] = "The first step is to acquire an orb with power. The warlocks of the Burning Blade have nice, high quality orbs... it\'s too bad they\'ve bound demons into them! But we can fix that, yes we can.$B$BGo to Desolace and snatch an infernal orb from a Burning Blade summoner. You\'ll find summoners at the Mannoroc Coven.$B$BWhen you have the orb, return to me.", + ["O"] = "Bring an Infernal Orb to Tabetha in Dustwallow Marsh.", + ["T"] = "The Infernal Orb", + }, + [1955] = { + ["D"] = "Now that we have a summoner\'s orb, we must exorcise the demon within it. I can do that. That\'s the easy part.$B$BYou\'re the one who has the hard job. You\'re the one who has to kill the demon once it\'s out.$B$BAnd you\'ll have to be quick. If you take too long then he\'ll jump back in the orb and we\'ll have to start over!$B$BSo get yourself ready. Prepare your strongest spells and keep your potions handy, and go get a friend if you have one. Because this isn\'t going to be pretty.", + ["O"] = "Kill the Demon of the Orb, then speak with Tabetha.", + ["T"] = "The Exorcism", + }, + [1956] = { + ["D"] = "Now that the demon has been removed, we must gain a power source. Unfortunately, the best power sources are usually the oldest and the hardest to get. It\'s neat how fate likes to take a bite out of you sometimes, isn\'t it?$B$BSo you\'re going to need to go to Uldaman and defeat the obsidian sentinel there. He\'s big, he\'s tough, and his power source packs a punch!$B$BI wish you the best of luck, $N. And if you don\'t get lucky then, well... it was nice knowing you.", + ["O"] = "Retrieve an Obsidian Power Source and bring it to Tabetha in Dustwallow Marsh.", + ["T"] = "Power in Uldaman", + }, + [1957] = { + ["D"] = "We are almost finished, but this last step is the most perilous, $N.$B$BI have the empty summoner\'s orb and am ready to empower it. We will do this by harnessing the energy of a mana rift. I\'ll cast a spell that will temporarily open a rift, from which creatures, mana surges, will pour out. You must defeat the mana surges and their power will be released, which I will then collect.$B$BKill enough mana surges before the rift closes and I will place all their collected energy in your orb.", + ["O"] = "Kill 12 Mana Surges in the allowed time limit.", + ["T"] = "Mana Surges", + }, + [1958] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Celestial Power", + }, + [1959] = { + ["D"] = "The mages of the Undercity have noted a magical disturbance within the city, and have sent word for mages of the Horde to investigate.$B$BAnastasia Hartwell can tell you more. Speak with her in the Magic Quarter in the Undercity.", + ["O"] = "Speak with Anastasia Hartwell.", + ["T"] = "Report to Anastasia", + }, + [1960] = { + ["D"] = "Algernon\'s alchemist shop in the Apothecarium is the locus of a strange disturbance. Invisible creatures, made solely of magic, wander the shop--there must be a reason, and we must find it!$B$BInvestigate the disturbance and capture those creatures. Take a chest of coffers and a scroll from behind me. Use the scroll at the shop to make the creatures visible, subdue them with your spells, then throw down a coffer to capture them. Return with the filled coffers, the empty coffers and the cantation.", + ["O"] = "Obtain a Cantation of Manifestation and a Chest of Containment Coffers from behind Anastasia Hartwell. Bring 3 Filled Containment Coffers, the Chest of Containment Coffers and the Cantation of Manifestation to Anastasia in the Undercity.", + ["T"] = "Investigate the Alchemist Shop", + }, + [1961] = { + ["D"] = "It is time for you to don your first mage\'s robes, $N. They are a sign of your station, and a testament to your worth.$B$BTo gain the robes, you must gather the mana gems from the Dalaran mages of Silverpine. Their beliefs are similar to ours and so killing them is somewhat distasteful, but if they lack the strength to resist us, then they do not deserve their lives.$B$BBring the gems and a supply of linen to Josef Gregorian at the Magic Quarter\'s tailor shop.", + ["O"] = "Bring 10 Linen and 6 Dalaran Mana Gems to Josef Gregorian.", + ["T"] = "Gathering Materials", + }, + [1962] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Spellfire Robes", + }, + [1963] = { + ["D"] = "The Warchief is too subtle in his methods. He is cautious to unleash the might of the Horde. Once we were stronger, mighty conquerors all. That pride we must regain, and the Shattered Hand will do so.$b$bWe build strength from the shadows and strike at the exposed, secretly laying our enemies low. A task you must complete for me, to prove your worth.$b$bThe troll Tazan trades with the pirates near Ratchet. He has information I must have. Kill him and bring me his satchel.", + ["O"] = "Kill Tazan and bring his Satchel to Therzok in the Cleft of Shadow in Orgrimmar.", + ["T"] = "The Shattered Hand", + }, + [1978] = { + ["D"] = "The Syndicate? I would never have suspected. It seems the lords of Alterac have fallen far in the years since their betrayal.$b$bLord Varimathras will be pleased to learn of this, and as you were so instrumental in this discovery, it would be fitting if you were the one to deliver it to him.$b$bAh, and how could I forget?$b$bWelcome to the Deathstalkers.", + ["O"] = "Deliver Andron\'s Ledger to Varimathras in the Hall of the Dark Lady in the Undercity.", + ["T"] = "The Deathstalkers", + }, + [1998] = { + ["D"] = "Lord Varimathras has just sent me a missive about a threat to the Forsaken that must be immediately removed. His name is Fenwick Thatros, one whom Lord Varimathras believes is a leader of the undead that have taken root in Silverpine Forest.$b$bYour name came to mind immediately, $n. I have faith enough in your abilities that you will carry out this mission flawlessly.$b$bThe latest reports from the Deathstalkers in Silverpine indicate that Thatros can be found near the decrepit dock on Lordamere.", + ["O"] = "Kill Fenwick Thatros and bring his head back to Mennet Carkad in the Rogues\' Quarter of the Undercity.", + ["T"] = "Fenwick Thatros", + }, + [1999] = { + ["D"] = "The wizards of the Kirin Tor at Ambermill have stored away important documents pertaining to the current state of Dalaran. This we know from the admissions of one of our prisoners. Lord Varimathras has placed the duty of recovering them in the hands of the Deathstalkers.$b$bThis task falls to you, $n. You will need some equipment, however, and the knowledge of lockpicking. Speak with Estelle Gendry, our outfitter, and ask her for a set of tools before you set out.", + ["O"] = "Find the Dalaran Status Report and return it to Mennet Carkad in the Rogues\' Quarter of the Undercity.", + ["T"] = "Tools of the Trade", + }, + [2038] = { + ["D"] = "As if crashing into the Loch wasn\'t bad enough, troggs from the nearby island attacked me and stole my tools and special Blastenheimer Blastencapper explosives. With no gyrocopter and no explosives, the movement has no chance!$B$BGet my tools back and find my Blastencapper explosives, $N. For Gnomeregan! ", + ["O"] = "Find and return Bingles\' supplies:$B$BBingles\' Wrench, Bingles\' Screwdriver, Bingles\' Hammer, and Bingles\' Blastencapper.", + ["T"] = "Bingles\' Missing Supplies", + }, + [2039] = { + ["D"] = "We\'ve lost contact with Bingles! He was sent on a reconnaissance mission over Gnomeregan and hasn\'t reported back in over a week. I just know he\'s gone and blown himself up.$B$BHe was last seen flying over the Loch. Perhaps you can investigate, $N.", + ["O"] = "Find Bingles Blastenheimer in Loch Modan.", + ["T"] = "Find Bingles", + }, + [2040] = { + ["D"] = "Gnomeregan has fallen under the control of those dastardly troggs! The situation is grave but perhaps you can help, $N.$B$BDeep in the Deadmines is a functional goblin shredder. Find that shredder and bring back the intact power supply. With the shredder\'s power supply, we can give our gyrodrillmatic excavationators the power they need to break through the rocky underground borders of Gnomeregan, opening the way for a gnomish assault!", + ["O"] = "Retrieve the Gnoam Sprecklesprocket from the Deadmines and return it to Shoni the Shilent in Stormwind.", + ["T"] = "Underground Assault", + }, + [2041] = { + ["D"] = "Perhaps... Perhaps you can help us in the battle for Gnomeregan.$B$BIn Stormwind you will find the commander of our underground assault crew, Shoni the Shilent. Shoni needs assistance with her gyrodrillmatic excavationators.$B$BYou will probably find her amongst the dwarves in Stormwind.$B$BGood luck, $N. ", + ["O"] = "Speak with Shoni the Shilent in Stormwind.", + ["T"] = "Speak with Shoni", + }, + [2078] = { + ["D"] = "Landlubber, ye needs to find me first mate.$B$BTake this\'n key, puts it in his gulliver an\' bring him back here to serve the Cap\'n.$B$BThem murlocs an\' their chief ain\'t gonna be too happy once me first mate gets a hold of em!", + ["O"] = "Find Gelkak\'s First Mate, the Threshwackonator 4100, and lead it back to Gelkak.", + ["T"] = "Gyromast\'s Revenge", + }, + [2098] = { + ["D"] = "A pirate\'s life ain\'t an easy one, landlubber. It ain\'t all about plunderin\' and booze! Alas, me ship be sunk just off shore thanks to them pesky Threshadons.$B$BWhat I be needin\' is me first mate back in workin\' order!$B$BWhen I washed up\'n shore, the key for me first mate broke on the rocks and was pilfered by the beasties of Darkshore. Out of the corner of me eyes I saw some of them Ragin\' Crawlers, Ferocious Foreststrider, and murloc rummaging through the wreckage....", + ["O"] = "Find and return the three pieces of Gelkak\'s Key to Gelkak Gyromast.", + ["T"] = "Gyromast\'s Retrieval", + }, + [2118] = { + ["D"] = "A sickness spreads across the Darkshore, gripping the minds and bodies of all it touches.$B$BThe Thistle Bears have been hit the hardest by this plague. The once noble beasts are now an instrument of destruction - rabid and frenzied. I may have a cure for this ailment.$B$BTake this trap to the forest and lay it on the ground. Any Rabid Thistle Bear that crosses the light shall become docile for a short time. Once the bear is docile, it shall follow you. Lead it back here, $N.", + ["O"] = "Capture a living Rabid Thistle Bear and bring it back to Tharnariun.$B$BShould you fail to capture a Rabid Thistle Bear and lose your trap, return to Tharnariun Treetender and request another trap.", + ["T"] = "Plagued Lands", + }, + [2138] = { + ["D"] = "As I had feared, the cure does not work.$B$BIt saddens me greatly to order the death of any of nature\'s beasts, but the sick and tainted thistle bears must be put down.$B$BReturn to the forest and destroy 20 rabid thistle bears, $N. It will most certainly not put a stop to the plague but it will slow down the damage the animals are doing to our forest and its inhabitants for a short time.", + ["O"] = "Cleanse the forest of 20 Rabid Thistle Bears and return to Tharnariun Treetender in Darkshore.", + ["T"] = "Cleansing of the Infected", + }, + [2139] = { + ["D"] = "The survival of our people and lands comes at unfortunate costs, $N.$B$BYou have spilled the blood of nature\'s servants; many sick animals you have felled. The people of Auberdine are indebted to you, for the forest\'s pain is eased - even if only for a moment.$B$BI have one final task for you, but be warned, you will have to kill again. It is my hope that this will be the last time I call upon you, $N.$B$BIn a cave to the northeast, near Bashal\'Aran, resides the Den Mother. Slay her.", + ["O"] = "Find and kill the Den Mother.", + ["T"] = "Tharnariun\'s Hope", + }, + [2158] = { + ["D"] = "Every adventurer should rest when exhaustion sets in - and there is no finer place to get rest and relaxation than at the Lion\'s Pride Inn!$B$BMy best friend, Innkeeper Farley, runs the Lion\'s Pride. If you tell him I sent you, he may give you the special discounted rates on food and drink.$B$BTo find the Lion\'s Pride Inn, travel south along the road from here -- you can\'t miss it!", + ["O"] = "Speak with Innkeeper Farley at the Lion\'s Pride Inn.", + ["T"] = "Rest and Relaxation", + }, + [2159] = { + ["D"] = "Greetings, young $c. Can you offer me aid? I have a package of herbs that I must deliver to the town of Dolanaar. But I still have business with the druids of Shadowglen and cannot yet leave.$B$BCan you deliver this package for me? It must be sent to Innkeeper Keldamyr, at the Dolanaar inn. It lies along the road, to the south.", + ["O"] = "Bring the Dolanaar Delivery to Innkeeper Keldamyr.", + ["T"] = "Dolanaar Delivery", + }, + [2160] = { + ["D"] = "Hey! You look like a hearty adventurer. If you\'re planning on braving the pass, do you suppose you could bring a package to the inn in Kharanos?$b$bYou were planning on stopping at the inn, right? If you make it through the pass, you\'ll definitely want to take a breather there.$b$bAnyways, bring this to Tannok Frosthammer, the innkeeper\'s assistant. I can\'t get through the pass myself, and it\'ll be days until a Mountaineer escort comes through!", + ["O"] = "Deliver the Crate of Inn Supplies to Tannok Frosthammer in Kharanos.", + ["T"] = "Supplies to Tannok", + }, + [2161] = { + ["D"] = "Excuse me? Can you help me?$B$BI have a load of food here. I walked along the road and braved scorpids and spiders and worse! I brought the food to the Valley of Trials because I thought they needed it and I like to help out. But they don\'t need any food! Now I have to take it back to Razor Hill and I\'m afraid of all the beasts along the way...$B$BCan you take it for me? I\'m just a peon, but you\'re a hero. You fear nothing!$B$BTake it to Innkeeper Grosk at the Razor Hill inn. Thank you!", + ["O"] = "Bring Ukor\'s Burden to Innkeeper Grosk in Razor Hill.", + ["T"] = "A Peon\'s Burden", + }, + [2178] = { + ["D"] = "Do you smell that delicious aroma? It\'s my secret recipe, $N--fresh strider stew. Delicious!$B$BPerhaps you would be interested in learning the recipe?$B$BBefore I teach you the recipe, you will need to prove that you can handle the beasts.$B$BNow, I don\'t expect you to go out and tame one and ride it back to me, but if you can kill a few and bring back some of their succulent meat, I may be persuaded to show you the ways of strider stew.", + ["O"] = "Bring back 5 Strider Meat to Alanndarian Nightsong in Auberdine.", + ["T"] = "Easy Strider Living", + }, + [2198] = { + ["D"] = "You have found a tarnished necklace, though the tarnish belies intricate and magical craftsmanship. The necklace has been shattered, as its setting appears to be missing three gems. On the underside of the necklace is the faint imprint of the city seal for Ironforge. Below the seal are three tiny, engraved letters: \"TdK\".$B$BIf there is anything to be gleaned from the necklace, you will need to learn about its origins. Perhaps the seal and the initials are a start...", + ["O"] = "Search for the original creator of the shattered necklace to learn of its potential value.", + ["T"] = "The Shattered Necklace", + }, + [2199] = { + ["D"] = "I am a jeweler of great renown here in Ironforge! Well, former renown anyway... I have fallen onto hard times due to the chicanery of a competitor! A bad reputation in this business spells financial disaster. As a result, I find myself without a copper to my good-though-currently-sullied name.$B$BI want you to get me five silver bars to finish an order I received - the first in what seems like an eternity.$B$BYou get me those five silver bars, and I\'ll answer your questions on the necklace.", + ["O"] = "Bring five silver bars to Talvash del Kissel in Ironforge.", + ["T"] = "Lore for a Price", + }, + [2200] = { + ["D"] = "A competitor of mine started a rumor that my necklace cursed the paladin. Needless to say, no one wants to buy cursed items from a jeweler.$B$B$N, I\'ll make you a deal - find the gems and I\'ll reassemble the necklace, so long as you\'ll advertise that I do NOT make cursed items!$B$BTry looking for clues in Uldaman; maybe see if the paladin\'s body is down there, since he\'s the one who we know had it last! When you find the gems you should use this; it\'ll allow you to contact me here in Ironforge.", + ["O"] = "Search for clues as to the current disposition of Talvash\'s necklace within Uldaman. The slain paladin he mentioned was the person who has it last.", + ["T"] = "Back to Uldaman", + }, + [2201] = { + ["D"] = "The paladin\'s journal has provided perhaps the only clues that Uldaman will yield as to the location of the necklace\'s gems. If the paladin\'s scribing remains accurate, then the Shadowforge dwarves and the troggs that vie for control of the dig site will need to be dealt with.$B$BArmed with this knowledge, the search for the gems begins in earnest. When all the gems have been acquired, Talvash in Ironforge should be notified via the Phial of Scrying as per his instructions.", + ["O"] = "Find the ruby, sapphire, and topaz that are scattered throughout Uldaman. Once acquired, contact Talvash del Kissel remotely by using the Phial of Scrying he previously gave you.$B$BFrom the journal, you know...$B* The ruby has been stashed in a barricaded Shadowforge area.$B* The topaz has been hidden in an urn in one of the Trogg areas, near some Alliance dwarves.$B$B* The sapphire has been claimed by Grimlok, the trogg leader.", + ["T"] = "Find the Gems", + }, + [2202] = { + ["D"] = "I\'ve heard about a newly discovered plant called the magenta fungus caps. They grow in clusters, deep in the Uldaman dig site; they may be elsewhere, but for now that\'s the only place I know they\'re at. I want to study their potential use in alchemy, and that\'s where you come in.$B$BFind the magenta cap clusters and bring me a dozen caps. Be warned, the clusters may spew out poison spores if jostled.$B$BDo this for me, and I\'ll whip up a batch of one of my famous restorative elixirs for you!", + ["O"] = "Bring 12 Magenta Fungus Caps to Jarkal Mossmeld in Kargath.", + ["T"] = "Uldaman Reagent Run", + }, + [2203] = { + ["D"] = "You have been most helpful to me, $c. I would reward you with the very recipe for the brew I gave you earlier... but I would ask of you a task that is quite dangerous. Hear my request.$B$BThis lockbox contains three empty thaumaturgy vessels; they are imbued with an attunement aura that will drain the blood of a scorched guardian dragon. Using one on the beast will anger it greatly, so be warned. Once you have all three filled, bring them to me.$B$BDo this, and the recipe will be yours.", + ["O"] = "Use the empty thaumaturgy vessels on scorched guardian dragons found in the Badlands. Once you have them filled, bring them to Jarkal Mossmeld in Kargath.", + ["T"] = "Badlands Reagent Run II", + }, + [2204] = { + ["D"] = "You are going to need to find some \"oomph\" for the necklace, and Uldaman is probably the best place for it, actually. I guess there are a lot of constructs running around in there, yeah? Well, take out the biggest, baddest construct in that place and grab its power source! I am pretty sure I can fuse that source into the necklace.$B$BWithout that power source, fixing the necklace will be impossible. Come back to me here to Ironforge when you have it, and we\'ll get it all fixed up for you!", + ["O"] = "Obtain a power source from the most powerful construct you can find in Uldaman, and deliver it to Talvash del Kissel in Ironforge.", + ["T"] = "Restoring the Necklace", + }, + [2205] = { + ["D"] = "The badge? Oh, it\'s nothing, fish - nothing you could handle anyhow. By the looks of you, I\'d say Mathias is likely to mistake you for the cheese delivery $g boy:girl; instead of a proper rogue. Regardless, I\'ve been assigned a job and I\'ve made a promise to deliver on that job.$B$BSpeaking of which, deliver this package to Mathias and he may give you a small task or two.$B$BGet cracking. ", + ["O"] = "Deliver Keryn Sylvius\'s package to Master Mathias Shaw at the Stormwind Barracks.", + ["T"] = "Seek out SI: 7", + }, + [2206] = { + ["D"] = "Our operatives in the field are reporting heavy Defias activity south of Goldshire. The reports indicate that the Defias have taken over Jerod\'s Landing and are now using it as a way to smuggle large quantities of contraband from Redridge to Westfall.$B$BI need you to infiltrate the dock house and get me that shipping schedule, $N. You will probably find it buried deep in the pockets of the Dockmaster.$B$B...and $N, should you be discovered, SI:7 will disavow all knowledge of your existence.", + ["O"] = "Find the Defias Dockmaster and recover the Shipping Schedule for Master Mathias Shaw.", + ["T"] = "Snatch and Grab", + }, + [2218] = { + ["D"] = "Another lost soul looking for guidance, eh? I suppose you want to find a purpose - your purpose. I\'ve seen it a thousand times, another hero looking for work.$B$BWell, today\'s your lucky day, friend. Hogral\'s got the cure for your ailment.$B$BHere\'s what you do: Take this road here up to Ironforge and make your way to the Forlorn Cavern. Once there, locate the thieves\' guild and speak with Hulfdan Blackbeard. He\'ll put you on the road to salvation.", + ["O"] = "Speak with Hulfdan Blackbeard in Ironforge.", + ["T"] = "Road to Salvation", + }, + [2238] = { + ["D"] = "Ye see, the King be strip mining the quarry fer ore and gems. More riches than any one dwarf should see in ten lifetimes.$B$BThe Hidden Circle has values, $N. We value valuables. Can ye understand?$B$BNow we feels the King should be sharing some of that booty, but we don\'t want ol\' \'Stinkbeard\' to know he\'s sharin\' - if ye catch me drift.$B$BWe needs ye to speak with Onin MacHammar over by Gnomeregan and bring back a report. The crafty dwarf has hidden hisself amongst the lepers. Be careful.", + ["O"] = "Find Onin MacHammar by Gnomeregan.", + ["T"] = "Simple Subterfugin\'", + }, + [2239] = { + ["D"] = "The Quarry? Yap, I see those monstrous armored steam tanks come by this post near every day.$B$BMy contacts to the east tell me that the tank starts off at Ironforge, makes a pickup at the Gol\'Bolar Quarry, stops over at Kharanos to refuel and then for some blasted reason, it takes the long way around past Gnomeregan, before reaching Ironforge to drop off the shipment.$B$BIt\'s all in the report, $r. Take it back to Hulfdan so he can plan the next step.", + ["O"] = "Take Onin\'s Report back to Hulfdan in Ironforge.", + ["T"] = "Onin\'s Report", + }, + [2240] = { + ["D"] = "Now for the task at hand.$B$BThere is a secret chamber, the Chamber of Khaz\'mul, that must be explored. The problem is that the chamber\'s behind a huge, locked door! It\'s a lucky thing I know how to open it.$B$BI\'ve described everything in my journal, here on the table. My band and I are stuck here for now... so you, $N, must find the chamber of Khaz\'mul for us!$B$BRead my journal, explore the chamber, then report to Prospector Stormpike at the Explorers\' League in Ironforge.", + ["O"] = "Read Baelog\'s Journal, explore the hidden chamber, then report to Prospector Stormpike.", + ["T"] = "The Hidden Chamber", + }, + [2241] = { + ["D"] = "They say I\'m \'lovestruck,\' whatever that means.$B$BSure, I spend my every waking moment thinking about Syurna. Sure, my home is full of paintings and drawings of Syurna. Sure, I often go days without eating, sleeping, or drinking, while I lament about the love we could have had. Is that so wrong?$B$BNow she won\'t see me! ME! I\'ve tried sending her messages but she won\'t even talk to another person unless they are a rogue.$B$BCould you deliver this flower to her? Don\'t forget to tell her it\'s from Jannok.", + ["O"] = "Take Jannok\'s Rose to Syurna in Darnassus.", + ["T"] = "The Apple Falls", + }, + [2242] = { + ["D"] = "We believe there is one being that may be able to help us understand what is happening to the forests of Teldrassil. Unfortunately, getting the creature to cooperate has proven disastrous.$B$BHe hides on a branch at the outskirts of the Oracle Glade. All who have so far approached the satyr, whether through force or diplomacy, have met with doom. Perhaps stealth is the answer, $N.$B$BFind what Sethir the Ancient carries in his packs and report back to me.", + ["O"] = "Find Sethir the Ancient and bring back any clues that you may discover to Syurna.", + ["T"] = "Destiny Calls", + }, + [2258] = { + ["D"] = "$N, I could use your aid if you\'re up for it. I am an alchemist of some note, and I seek your aid in acquiring some reagents found out in the Badlands.$B$BI need the following items to replenish my stocks: five buzzard gizzards, ten crag coyote fangs, and five rock elemental shards. Obviously, you can get them off of the beasties themselves; if you\'re not the fighting type, then find friends who are.$B$BAcquire these items for me, you\'ll get some coin out of the deal. Watcha wanna do?", + ["O"] = "Bring 5 Buzzard Gizzards, 10 Crag Coyote Fangs, and 5 Rock Elemental Shards to Jarkal Mossmeld in Kargath, Badlands.", + ["T"] = "Badlands Reagent Run", + }, + [2259] = { + ["D"] = "Do not worry, $N, I am not sending you to see Syurna. Erion requires your presence at the Cenarion Enclave. Make haste!", + ["O"] = "Contact Erion Shadewhisper in Darnassus.", + ["T"] = "Erion Shadewhisper", + }, + [2260] = { + ["D"] = "Word of your deeds has spread far and wide, $N. So far, in fact, that Stormwind Intelligence has asked for you by name.$B$BThe journey is taxing and not without peril, but an opportunity to train under SI:7 should not be taken lightly.$B$BA new world awaits you, $N. Make your way to Old Town in Stormwind and speak with Renzik \"The Shiv\" at SI:7 headquarters.", + ["O"] = "Travel to Stormwind City and seek council with Renzik \"The Shiv.\"", + ["T"] = "Erion\'s Behest", + }, + [2278] = { + ["D"] = "The centerpieces of this treasure chamber are four huge platinum discs, each adorned with numerous sigils of an unknown origin. Touching them makes your hand tingle. Just after touching the discs, the visage of a large stone watcher springs forth.$B$B\"Salutations. I am a keeper of knowledge. The Creators\' synthesis of the Earthen has been chronicled and stored here for this world in the Discs of Norgannon.\"$B$BYou have uncovered a wealth of previously undiscovered worldly lore!", + ["O"] = "Speak with stone watcher and learn what ancient lore it keeps. Once you have learned what lore it has to offer, activate the Discs of Norgannon.", + ["T"] = "The Platinum Discs", + }, + [2279] = { + ["D"] = "Touching the Discs of Norgannon once again makes your hand tingle. This time, however, a strange grinding noise is heard from inside the discs.$B$BYour backpack suddenly becomes heavier than it was before. Inside, you discover a miniature version of the discs!$B$BNo doubt, an item of this sort would be invaluable for someone interested in the ancient history of Azeroth. The Explorers\' League in Ironforge is such a group, known throughout the Alliance; perhaps they can make good use of it.", + ["O"] = "Take the miniature version of the Discs of Norgannon to the Explorers\' League in Ironforge.", + ["T"] = "The Platinum Discs", + }, + [2280] = { + ["D"] = "Touching the Discs of Norgannon once again makes your hand tingle. This time, however, a strange grinding noise is heard from inside the discs.$B$BYour backpack suddenly becomes heavier than it was before. Inside, you discover a miniature version of the discs!$B$BNo doubt, an item of this sort would be invaluable for someone interested in the ancient history of Azeroth. The sages of Thunder Bluff are such historians, known throughout the Horde; perhaps they can make good use of it.", + ["O"] = "Take the miniature version of the Discs of Norgannon to the one of the sages in Thunder Bluff.", + ["T"] = "The Platinum Discs", + }, + [2281] = { + ["D"] = "Sending you out in the field now would be suicide. Renzik doesn\'t need another dead rogue on his hands. Don\'t fret, though, $N - Renzik is going to get you up to speed.$B$BMake your way to the Redridge Mountains and speak with an associate of SI:7 named Lucius. You will find him hanging around the docks of Lakeshire with the other shady good-for-nothings.", + ["O"] = "Venture forth to Lakeshire in the Redridge Mountains and speak with Lucius.", + ["T"] = "Redridge Rendezvous", + }, + [2282] = { + ["D"] = "We\'ve been training thieves here for years! After all, not every rapscallion is born with the grace and finesse of old Lucius.$B$BUp off the road here you\'ll find Alther\'s Mill. I got a chest up there with something important inside. Go get it for me! Bring back that token and you\'ll receive your Certificate of Thievery!", + ["O"] = "Open Lucius\'s Lockbox, recover the Token of Thievery and return it to Lucius in Lakeshire.", + ["T"] = "Alther\'s Mill", + }, + [2283] = { + ["D"] = "We\'ve got work for you, that is if you\'ve got the guts to do it!$B$BDeep in the Badlands is the Uldaman dig site. We\'ve heard a tale about some idiot paladin who died there recently. Why we even care is that he had a very valuable necklace on him. It\'s supposedly got three large gems: a ruby, a sapphire, and a topaz.$B$BThe shot: we want it, and we\'re payin\' TOP SILVER to get it. It may be damaged, but that\'s neither here nor there; we\'ll fix whatever scratches are on it.", + ["O"] = "Look for a valuable necklace within the Uldaman dig site and bring it back to Dran Droffers in Orgrimmar. The necklace may be damaged.", + ["T"] = "Necklace Recovery", + }, + [2284] = { + ["D"] = "As sure as Malton is a dummy, those gems are still in Uldaman somewhere. You\'re going to have to go back there and look for them.$B$BLike I said before, if the information we have is correct then there\'s a ruby, a sapphire, and a topaz that go with the necklace. Find them and put them in the necklace.$B$BAs to where the gems are, who knows? Maybe you\'ll get lucky and find the corpse of the Paladin. If he\'s not been stripped clean already, then maybe he\'s got them on him still.", + ["O"] = "Find a clue as to the gems\' whereabouts in the depths of Uldaman.", + ["T"] = "Necklace Recovery, Take 2", + }, + [2298] = { + ["D"] = "So there we were, about to start plottin\' out phase III when a couple o\' Magni\'s blockheads come bargin\' in here talkin\' bout some kind o\' heist and arresting some o\' the Hidden Circle.$B$BWell nobody puts the iron on old Blackbeard! The argumentations got heavy and thick and somehow yer name weres blurted out!$B$BMe advice? Take the first Gryphon out o\' Ironforge and get to Stormwind. Get yerself to Old Town and once there, talk to an old friend o\' mine named Renzik \"The Shiv.\"", + ["O"] = "Travel to Stormwind and seek out Renzik \"The Shiv.\"", + ["T"] = "Kingly Shakedown", + }, + [2299] = { + ["D"] = "Where have you been, $N? Hulfdan\'s been looking all over the place for you. We thought the king may have put you in irons.$B$BGet to Ironforge as soon as possible and speak with Hulfdan!", + ["O"] = "Travel to Ironforge and speak with Hulfdan Blackbeard.", + ["T"] = "To Hulfdan!", + }, + [2300] = { + ["D"] = "Renzik was looking for you, fish.$B$BI wouldn\'t keep Mathias\'s second in command waiting if I were you.", + ["O"] = "Travel to Stormwind and seek out Renzik \"The Shiv.\"", + ["T"] = "SI:7", + }, + [2318] = { + ["D"] = "At an impasse of sorts, you know that you will need the book translated into a language you can understand. There certainly are a number of people in the world who could do it; the closest location that might have someone who could, however, is the Kargath outpost in the Badlands. Perhaps that is a good place to start.", + ["O"] = "Find someone who can translate the paladin\'s journal. The closest location that might have someone is Kargath, in the Badlands.", + ["T"] = "Translating the Journal", + }, + [2338] = { + ["D"] = "Droffers and Son Salvage aren\'t smart enough to restore the magic in the necklace, but I am. All I want to do is study the necklace so I can learn to make them myself. To do that, I will need your necklace. Let me borrow it, and in exchange for the time I get to study it I will translate the journal for you. While you are searching for the gems, I should have enough time to learn what I need to.$B$BIt\'s a simple deal, and no one else will be the wiser. Whatcha wanna do?", + ["O"] = "Let Jarkal borrow the necklace. In exchange, he will translate the journal for you.", + ["T"] = "Translating the Journal", + }, + [2339] = { + ["D"] = "Here is the journal, translated for you to read on your own. The crux of it says dwarves hid the ruby, the troggs hid the topaz, and a trogg named Grimlok has the sapphire.$B$BLook - you\'re going to need a power source to make the necklace work again. Dran Droffers doesn\'t know this. To find one, here\'s what I\'d do: go as deep as you can in Uldaman and kill whatever construct there is the strongest. No doubt whatever that is would have it.$B$BWhen you have everything collected, come back here!", + ["O"] = "Recover all three gems and a power source for the necklace from Uldaman, and then bring them to Jarkal Mossmeld in Kargath. Jarkal believes a power source might be found on the strongest construct present in Uldaman.$B$BFrom the journal, you know...$B* The ruby has been stashed in a barricaded Shadowforge area.$B* The topaz has been hidden in an urn in one of the Trogg areas, near some Alliance dwarves.$B* The sapphire has been claimed by Grimlok, the trogg leader.", + ["T"] = "Find the Gems and Power Source", + }, + [2340] = { + ["D"] = "Any necklace setting and gem will work, so long as they are the same material. This power source, however, is what will bring the magic back to the necklace... I hope.$B$BI\'ll gladly supply the gems needed for your version of the necklace, so long as the power source actually works.$B$BHead to Orgrimmar and keep your end of the bargain with Droffers and Son Salvage. Just keep your mouth shut about our deal, and when you get back I might have a wonderful surprise for you.", + ["O"] = "Deliver the Necklace and Gem Salvage to Dran Droffers in Orgrimmar.", + ["T"] = "Deliver the Gems", + }, + [2341] = { + ["D"] = "As Dran and Malton Droffers begin to squabble over their new salvage, half of the deal is now complete. A trip to the Badlands is now in order to finish things up, as Jarkal Mossmeld in Kargath might have a special reward waiting for you there.", + ["O"] = "Visit Jarkal Mossmeld in Kargath to see if he was successful.", + ["T"] = "Necklace Recovery, Take 3", + }, + [2342] = { + ["D"] = "Sweeping the bat pens with this broom is not befitting a Garrett! I\'ve earned a little coin from this accursed job, and I\'m willing to spend it on you to better my station.$B$BThe Garrett family weapon of choice is locked away in our chest in the South Common Hall of Uldaman from when we Garretts toiled there as diggers. Without it, I will be stuck here forever - literally - sweeping up after these infernal bats.$B$BReclaim my family\'s treasure and bring it to me! Help me restore my birthright!", + ["O"] = "Get Patrick Garrett\'s family treasure from their family chest in the South Common Hall of Uldaman, and bring it to him in the Undercity.", + ["T"] = "Reclaimed Treasures", + }, + [2358] = { + ["D"] = "Many years ago, the Horns of Nez\'ra were stolen from Ravenholdt manor. Across continents and oceans I have searched, only to discover that these insignificant beasts have had it in their possession all along.$B$BSlay every Blackrock orc you cross until the Horns of Nez\'ra are recovered. Should you recover the horns, find me in Lakeshire.$B$BDo this for me and your name shall be known to Ravenholdt, $N.", + ["O"] = "Return the Horns of Nez\'ra to Arantir\'s Shadow in Lakeshire.", + ["T"] = "Horns of Nez\'ra", + }, + [2359] = { + ["D"] = "I\'ve been staking out this tower for weeks, $N. Recently a major shipment came through from Duskwood, and along with it came those guards.$B$BWhat are they? Your guess is as good as mine. I can tell you one thing - they aren\'t human.$B$BAnyhow, the shipment had a chest - which is what I assume those abominations are guarding. The zombie with the spikes holds a key we\'ll need.$B$BGet that key, get in the tower, and uncover whatever is in that chest. Take your findings back to Mathias.", + ["O"] = "Steal the Defias Tower Key, break into the Defias Tower and uncover the contents of the Duskwood Chest. Take whatever information you find back to Mathias Shaw in Stormwind. Read Kearnen\'s Journal to gain insight about the tower.", + ["T"] = "Klaven\'s Tower", + }, + [2360] = { + ["D"] = "Not a moment too soon, $N. SI:7 reconnaissance is reporting unusually heavy Defias activity in Westfall.$B$BIt would seem that the Defias have taken over an abandoned Alliance watch tower southeast of Sentinel Hill and are using it as a base of operations to smuggle in goods from the Redridge supply route.$B$BGet to Westfall and contact Agent Kearnen for your debriefing. You will find her hidden near the tower.$B$B...and $N, should you be discovered, SI:7 will disavow all knowledge of your existence. ", + ["O"] = "Travel to Westfall and find Agent Kearnen for your debriefing.", + ["T"] = "Mathias and the Defias", + }, + [2361] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Restoring the Necklace", + }, + [2378] = { + ["D"] = "You have served the Deathstalkers well, $N, but perhaps it is time for you to venture outward. While you have shown aptitude in the ways of stealth and deception, you still require much training.$B$BThe Deathstalkers have allies within the Shattered Hand. Seek out those that would assist us - find Shenthul in Orgrimmar.", + ["O"] = "Journey to Orgrimmar and speak with Shenthul at the Cleft of Shadow.", + ["T"] = "Find the Shattered Hand", + }, + [2379] = { + ["D"] = "Your determination alone is not enough to overcome the obstacles that lay ahead of us.$B$BSpeak with Zando\'zan to begin your training as an operative of the Shattered Hand.$B$BIt is only when you have mastered the practices of stealth and thievery that you may take the next step towards your destiny.", + ["O"] = "Speak with Zando\'zan at the Cleft of Shadow.", + ["T"] = "Zando\'zan", + }, + [2380] = { + ["D"] = "A master of stealth and deception you are not, however, all of that can and will change. You\'ve obviously impressed those in charge with your meager skills, as the great Shenthul has asked for you by name.$B$BTake the road north of here to Orgrimmar and speak with Shenthul in the Cleft of Shadow.", + ["O"] = "Speak with Shenthul at the Cleft of Shadow in Orgrimmar.", + ["T"] = "To Orgrimmar!", + }, + [2381] = { + ["D"] = "I don\'t mean to scare you, $N, but the last five thieves I sent to steal the southsea treasure came back to me in pieces.$B$BSouth along the coast you\'ll find Tide Razor, the southsea freebooter\'s ship. Nestled in the hold is the payoff - the southsea treasure. On the second level of that ship is the pirate\'s den, a place where they train all of their thieves.$B$BBoard that ship, steal the treasure, and bring it back to me. Use the pirate\'s den if you need to practice your thievery, but be careful!", + ["O"] = "Bring the Southsea Treasure back to Wrenix the Wretched in Ratchet. Do not forget to get an E.C.A.C. and Thieves\' Tools from Wrenix\'s Gizmotronic Apparatus. You will need both of these items to complete your mission.$B$BShould you be attacked by any unusually hostile parrots, use your E.C.A.C.!", + ["T"] = "Plundering the Plunderers", + }, + [2382] = { + ["D"] = "Zando\'zan has seen it! Yes, the day comes! Thrall\'s death... the dagger in his back, poison seeping through to his every vein... Zando\'zan has said too much.$B$B$N! Zando\'zan has a task for $N! $N must travel to Ratchet, east of the Crossroads, and speak with Wrenix the Wretched. Go!", + ["O"] = "Travel to Ratchet and speak with Wrenix the Wretched.", + ["T"] = "Wrenix of Ratchet", + }, + [2383] = { + ["D"] = "Ah, while you were gone a parchment came for you, $N.$B$BRead it when you have time. If I\'m not mistaken, it came from the warrior trainer Frang. He would have words with you when you\'re ready. You\'ll find him outside the Den, taking cover in the shade.", + ["O"] = "Read the Simple Parchment and speak to Frang in the Valley of Trials.", + ["T"] = "Simple Parchment", + }, + [2398] = { + ["D"] = "The dig site at Uldaman wasn\'t always overrun. We Ironforge dwarves used to control the area, but... that was before the troggs came. They came so fast and in such numbers that not even dwarven might could stop them!$B$BIn fact, their attack was so sudden that I fear some of our people may be trapped behind enemy lines.$B$BMy friend Baelog led a small band of dwarves deep within the site just before the troggs showed up. If he and his company live, then I want you to find them.", + ["O"] = "Find Baelog in Uldaman.", + ["T"] = "The Lost Dwarves", + }, + [2399] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Sprouted Fronds", + }, + [2418] = { + ["D"] = "A while ago, I had an incident with the Shadowforge Dwarves. They brought me to Angor Fortress to study two types of strange stones from Uldaman. I discovered that the stones were sustained, stable power sources if treated correctly. It\'s amazing the things one can find in that old dig site!$B$BAnyway, after I told them the secret of the stones they kicked me out of Angor Fortress and began digging for more in Uldaman.$B$BI want those stones for myself! Bring me both types and I\'ll pay you plenty!", + ["O"] = "Bring 8 Dentrium Power Stones and 8 An\'Alleum Power Stones to Rigglefuzz in the Badlands.", + ["T"] = "Power Stones", + }, + [2438] = { + ["D"] = "I was once given an emerald dreamcatcher from Gaerolas Talvethen, the warden of the druids in the Ban\'ethil Barrow Den. This powerful amulet is able to siphon energy from the Emerald Dream, bestowing luck upon those who carry it.$B$BSadly, I have not been able to retrieve it from my dresser in Starbreeze Village... Although Starbreeze was once a tranquil place, it has now succumbed to the corruption of the furbolg that reside there.$B$BPerhaps you would be willing to recover my dreamcatcher, $c? ", + ["O"] = "Bring the Emerald Dreamcatcher to Tallonkai Swiftroot in Dolanaar.", + ["T"] = "The Emerald Dreamcatcher", + }, + [2439] = { + ["D"] = "This object is an incredible find. The ancient Titans, or the Creators as these discs refer to them as, are the link to our enchanted creation, if the lore stored in here is correct! We\'ll need to invest as much research time into this as possible.$B$BAs for you, heroic $c, take this voucher to Dinita Stonemantle at the vault. It grants you what I think is a fitting for such a tremendous find!$B$BReturn to me directly when you are ready; there is much more to do for the Explorers\' League!", + ["O"] = "Take your reward voucher to Dinita Stonemantle in the Vault of Ironforge.", + ["T"] = "The Platinum Discs", + }, + [2440] = { + ["D"] = "I shall focus my energies on these discs; they will reveal their true workings to me in due time.$B$BAs for you $N, I will now reward you for your diligence in bringing this to my attention. Take this voucher to Bena Winterhoof, the alchemy trainer for Thunder Bluff. She will give you a special item I believe you will find appealing, and she will supply you with a choice of potions from my personal stock.$B$BReturn to me soon, as I sense there is much more at hand for us to do regarding this find.", + ["O"] = "Take the reward voucher to Bena Winterhoof in Thunder Bluff.", + ["T"] = "The Platinum Discs", + }, + [2458] = { + ["D"] = "The Venture Company... Perhaps you have heard of them?$B$BFor one year we have worked on planting an agent deep within their ranks. Through much hard work and careful planning, we succeeded.$B$BRecently we received word that the Venture Co. are planning something on a grand scale. Go north of the Sludge Fen to the Venture Co. tower and contact our undercover agent, Taskmaster Fizzule.$B$BWhen you find the tower, use this flare gun, then approach Fizzule and show him the salute of the Shattered Hand.", + ["O"] = "Travel to the Venture Co. Tower, north of the Sludge Fen and contact the Shattered Hand\'s covert operative, Taskmaster Fizzule.$B$BWhen the tower is in sight, use the Flare Gun to signal your arrival to Taskmaster Fizzule. Fire off TWO flares, then approach Taskmaster Fizzule and perform the Shattered /Salute.$B$BThese actions must be performed in the correct order, as Fizzule will attack and terminate any person he does not recognize.", + ["T"] = "Deep Cover", + }, + [2459] = { + ["D"] = "The emerald... It is missing! My dreamcatcher has been damaged!$B$BThere is a band of Gnarlpine mystics located to the north of Starbreeze. I have heard reports that their leader, Ferocitas the Dream Eater has been wearing a necklace that glows green in the night. Now seeing my dreamcatcher, I am sure that he has stolen my emerald... He would never realize that its power is useless to him.$B$BFind this missing jewel, $N. And, while you\'re there, clear out some of the corrupted mystics as well.", + ["O"] = "Tallonkai Swiftroot in Dolanaar wants you to kill 7 Gnarlpine Mystics and find the Missing Jewel.", + ["T"] = "Ferocitas the Dream Eater", + }, + [2460] = { + ["D"] = "As a rogue of the Shattered Hand, it is imperative that you learn the Shattered Salute. It is the only way to truly identify another member of the Hand.$B$BWatch, learn, repeat.", + ["O"] = "Perform the Shattered Salute on Shenthul.", + ["T"] = "The Shattered Salute", + }, + [2478] = { + ["D"] = "You will need to steal the tower key from Foreman Silixiz, $N. Once you\'ve got the key in your possession, hold on to it - I may need it later.$B$BRemember, the poison has weakened everything in this tower. Use your abilities to bring chaos and destruction to its inhabitants. Slay them all -- show no mercy!$B$BOnce everything inside lays in a bloodied heap, pick Gallywix\'s lockbox and steal the cache of Zanzil\'s mixture held inside. Take both the head of Gallywix and the mixture to Shenthul in Orgrimmar.", + ["O"] = "Steal Silixiz\'s Tower Key from Foreman Silixiz, then kill two Mutated Venture Co. Drones, two Venture Co. Patrollers, and two Venture Co. Lookouts.$B$BAssassinate Grand Foreman Gallywix and take his head, then pick the lock on Gallywix\'s lockbox and steal the Cache of Zanzil\'s Altered Mixture. Take the Cache and Gallywix\'s Head back to Shenthul in Orgrimmar for further instruction.", + ["T"] = "Mission: Possible But Not Probable", + }, + [2479] = { + ["D"] = "Take a sample of the mixture to Serge Hinott in Tarren Mill.$B$BIf anyone can cure you, it\'s Serge. Live long enough and Serge will show you the ways of poison creation and use.", + ["O"] = "Travel to Tarren Mill in Hillsbrad Foothills and deliver the Sample of Zanzil\'s Mixture to Serge Hinott.$B$BTo get to Tarren Mill, take the Zeppelin to the Undercity and follow the road south through Silverpine and towards Hillsbrad. Follow the signs!", + ["T"] = "Hinott\'s Assistance", + }, + [2480] = { + ["D"] = "I have never seen such wondrous results from a poison! Zanzil you say? Never heard of him, however, I must commend him on the creation of this concoction.$B$BSo, I am to cure you of this and then teach you how to make use of the poison?$B$BGive me a few moments to examine the toxin, $N.", + ["O"] = "Wait for Serge Hinott to complete the cure.", + ["T"] = "Hinott\'s Assistance", + }, + [2498] = { + ["D"] = "I have just received word that Denalan at Lake Al\'Ameth has discovered what may be the cause of the tumors that plague the timberlings. Please speak with him, and tell him I sent you.$B$BMake haste, $N; he needs our help.", + ["O"] = "Rellian Greenspyre wants you to speak with Denalan at Lake Al\'Ameth.", + ["T"] = "Return to Denalan", + }, + [2499] = { + ["D"] = "In a cave along the southern bank of the lake, a timberling named Oakenscowl is spreading corruption to all the creatures that make Lake Al\'Ameth their home.$B$BI dared not get too close, but even from a distance, it is obvious: Oakenscowl is being poisoned by the largest tumor I have ever seen... I would call it gargantuan, even.$B$B$N, you have already done much to aid my efforts, but I ask of you one more task. Hunt down Oakenscowl and collect the tumor; remove this source of corruption from my home.", + ["O"] = "Denalan at Lake Al\'Ameth wants you to collect the Gargantuan Tumor from Oakenscowl.", + ["T"] = "Oakenscowl", + }, + [2500] = { + ["D"] = "$C, I would make use of your services. I am an alchemist of some note, and I seek your aid in acquiring some reagents found out in the Badlands.$B$BI need the following items to replenish my stocks: five buzzard gizzards, ten crag coyote fangs, and five rock elemental shards. Obviously, you can get them off of the beasties themselves; if you\'re not the fighting type, then find friends who are.$B$BAcquire these items for me, you\'ll get some coin out of the deal.$B$BWell, what say ye?", + ["O"] = "Acquire the reagents Ghak Healtouch needs from the Badlands, then return to him in Thelsamar.", + ["T"] = "Badlands Reagent Run", + }, + [2501] = { + ["D"] = "You have been most helpful to me, $N. I would like to reward you with the very recipe for the brew I gave you earlier, but I must ask of you a favor that is quite dangerous.$B$BThis lockbox contains three empty thaumaturgy vessels; they are imbued with an attunement aura that will drain the blood of a scorched guardian dragon. Using one on the beast will anger it greatly, so be careful. Once you have all three filled, bring them to me.$B$BDo this, and the recipe will be yours.", + ["O"] = "Use the empty thaumaturgy vessels on scorched guardian dragons found in the Badlands. Once you have them filled, bring them to Ghak Healtouch in Thelsamar.", + ["T"] = "Badlands Reagent Run II", + }, + [2518] = { + ["D"] = "Lady Sathrah was once beloved of Elune. Graceful and pure, the spider spun her silver threads through the moonlight, catching the evening mist. The silvery dew had strong healing powers and was kept here in the temple.$B$BBut of late, Sathrah has descended into madness. Her future generations are now threatened as well.$B$BFind Lady Sathrah, $N, and end her suffering. She dwells along the northern borders of Teldrassil, near Wellspring Lake. Gather her silvery spinnerets and bring them back to me.", + ["O"] = "Priestess A\'moora in the Temple of the Moon at Darnassus wants you to bring her Lady Sathrah\'s Silvery Spinnerets.", + ["T"] = "Tears of the Moon", + }, + [2519] = { + ["D"] = "A once great creature of the forest is in need of help, $r.$B$BThere is a difficult task that must be done.$B$BPlease seek out Priestess A\'moora; she will explain things to you. Find her to the southeast of here, inside the Temple of the Moon.", + ["O"] = "Sister Aquinne wants you to speak with Priestess A\'moora in the Temple of the Moon.", + ["T"] = "The Temple of the Moon", + }, + [2520] = { + ["D"] = "Now you must finish the task to which you have been appointed. Take the spinnerets and offer Lady Sathrah\'s sacrifice to Elune; lay the great spider to rest.$B$BInside this temple, find the central fountain. There is where you may leave the sacrifice. The holy waters will purify and cleanse the corruption that drove Sathrah mad.$B$BWhen you have completed this, return to me.", + ["O"] = "Priestess A\'moora wants you to place Lady Sathrah\'s silvery spinnerets at the fountain inside the temple, and then return to her.", + ["T"] = "Sathrah\'s Sacrifice", + }, + [2521] = { + ["D"] = "$R, can your miniscule brain comprehend the rarity of a flawless sphere of draenethyst? Draenei have spent lifetimes in search of just one of these crystals, only to meet horrible fates, their purpose unfulfilled.$B$BSo you stand before Kum\'isha, knowing what Kum\'isha has requested and still wish to assist? Very well, $r... At any time during your travels across these lands, should you find a flawless sphere of draenethyst, return it to me and I shall reward you with riches beyond your wildest dreams. ", + ["O"] = "In your journeys throughout the Blasted Lands, should you ever come across a Flawless Draenethyst Sphere, take the item back to Kum\'isha the Collector.$B$BBe warned, this gem is one of the most rare crystals in all of Azeroth. Any creature in these lands could be holding a Flawless Draenethyst Sphere.$B$BYou will be rewarded for each Flawless Draenethyst Sphere you have collected.", + ["T"] = "To Serve Kum\'isha", + }, + [2522] = { + ["D"] = "Even though the portal conjuration was a failure, I remain hopeful that my next attempt will be successful.$B$BThe hope of the Draenei is as fervent as your greed for trinkets, $r. Go back out into these cursed lands and recover another flawless draenethyst sphere.$B$BOf course, the choice to take on this task is completely left to you *grin*.", + ["O"] = "Find and return a Flawless Draenethyst Sphere to Kum\'isha the Collector.", + ["T"] = "Kum\'isha\'s Endeavors", + }, + [2523] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Corrupted Songflower", + }, + [2541] = { + ["D"] = "The Gnarlpine shaman that inhabit this place have discovered a way of separating a sleeping druid\'s spirit from the physical body. The furbolg have animated my physical form and are using it to attack anyone that attempts to explore the Ban\'ethil Barrow Den. I am now trapped in the Emerald Dream, powerless to stop this.$B$BYou must help me. The Gnarlpine shaman carry a strange charm which is used to perform this ritual, and I\'d like to examine it. Please, $N, bring one to me.", + ["O"] = "Bring a Shaman Voodoo Charm to Oben Rageclaw in the Ban\'ethil Barrow Den.", + ["T"] = "The Sleeping Druid", + }, + [2561] = { + ["D"] = "After examining this charm, $N, I see now what must be done. Please take it, and do as I ask.$B$BYou are to explore the deepest areas of the Ban\'ethil Barrow Den. There, you will find my soulless body... Although I regret what I am about to tell you, I see no other way to free myself from the control of the Gnarlpine.$B$BIn order for me to escape them, you must kill my physical form. Once that is done, use the voodoo charm on my fallen body. After you have completed this task, please return to me.", + ["O"] = "Oben Rageclaw wants you to kill his soulless body, and then use the Voodoo Charm.", + ["T"] = "Druid of the Claw", + }, + [2581] = { + ["D"] = "It is a well known fact that hyenas possess tremendous strength in their jowls, but the strength to snap through three inches of thorium steel? Impossible, improbable, and yet I have seen this demonstrated with my own eyes.$B$BVenture forth, into the Blasted Lands, and bring me three snickerfang jowls. As you search for the snickerfang, be on the lookout for boars and scorpoks: The initial assay also requires two blasted boar lungs and one scorpok pincer to complete.", + ["O"] = "Bring three Snickerfang Jowls, two Blasted Boar Lungs, and one Scorpok Pincer to Bloodmage Drazial.", + ["T"] = "Snickerfang Jowls", + }, + [2582] = { + ["D"] = "Ah, $N, welcome back. It seems you enjoyed the effect of the robust, operational imbue, derived from snickerfang. Be warned, while the immediate effect is a titanic burst of strength, the long term effects on your spirit and intelligence could be hazardous.$B$BWith that said, do you require more? If so, bring me another three snickerfang jowls, two blasted boar lungs, and one scorpok pincer.", + ["O"] = "Bring three Snickerfang Jowls, two Blasted Boar Lungs, and one Scorpok Pincer to Bloodmage Drazial.", + ["T"] = "Rage of Ages", + }, + [2583] = { + ["D"] = "Within these blasted lands exists two species of boar: the ash-mane boar and the helboar.$B$BIt would appear that the stamina of these beasts renders them nearly immune to harm, as the other animals find them too difficult to kill and consequently, not worth the effort.$B$BWe need to perform further analysis, $N. Should you bring me three blasted boar lungs, two scorpok pincers, and one basilisk brain, I shall create a divine elixir from the residue of the assay. You will be my first test subject!", + ["O"] = "Bring three Blasted Boar Lungs, two Scorpok Pincers, and one Basilisk Brain to Bloodmage Drazial.", + ["T"] = "A Boar\'s Vitality", + }, + [2584] = { + ["D"] = "When I first administered the elixir, $N, I could tell that one or two applications would not satiate your appetite. Even now, I can see the hunger in your eyes. The concoction has addictive properties of which, seemingly, the most strong of will cannot resist.$B$BSo be it! Should you require more of the lung juice cocktail, venture back into the wasteland and find for me three blasted boar lungs, two scorpok pincers, and one basilisk brain.", + ["O"] = "Bring three Blasted Boar Lungs, two Scorpok Pincers, and one Basilisk Brain to Bloodmage Drazial.", + ["T"] = "Spirit of the Boar", + }, + [2585] = { + ["D"] = "Have you ever watched them in battle, $N? The scorpoks, I mean. Have you ever seen the grace and agility with which they move? The decisiveness of their strikes?$B$BIf only we could somehow isolate that agility and encapsulate it, we would be wealthy beyond our... I mean... it would be a boon for the scientific community.$B$BAssist me, $N, and I shall allow you a sampling of the assay.$B$BIn order to create a stable sample, I will need three scorpok pincers, two vulture gizzards, and one blasted boar lung.", + ["O"] = "Bring three Scorpok Pincers, two Vulture Gizzards, and one Blasted Boar Lung to Bloodmage Drazial.", + ["T"] = "The Decisive Striker", + }, + [2586] = { + ["D"] = "You live! This is good news, indeed. I assume you are back for more of the scorpok assay?$B$BVery well, $N, back to the wasteland with you and do not return until you have collected three scorpok pincers, two vulture gizzards, and one blasted boar lung.", + ["O"] = "Bring three Scorpok Pincers, two Vulture Gizzards, and one Blasted Boar Lung to Bloodmage Drazial.", + ["T"] = "Salt of the Scorpok", + }, + [2601] = { + ["D"] = "These wastelands are riddled with redstone basilisk, $N. These basilisk have adapted and flourished, more so than any of the other wildlife within the region.$B$BI have watched from afar as they hunt and go about their daily activities - the beasts exhibit a thought process more complex than even some humanoids.$B$BI must study their brains!$B$BRetrieve ten of their brains for me, $N. The compound cannot be complete, however, without two vulture gizzards to form the base of the solution.", + ["O"] = "Bring ten Basilisk Brains and two Vulture Gizzards to Bloodmage Lynnore.", + ["T"] = "The Basilisk\'s Bite", + }, + [2602] = { + ["D"] = "Your focused concentration has dwindled so soon? More research must be done!$B$BOh yes, the price remains the same, $N. Venture forth into the blasted lands and return to me with ten brains from the redstone and two vulture gizzards.", + ["O"] = "Bring ten Basilisk Brains and two Vulture Gizzards to Bloodmage Lynnore.", + ["T"] = "Infallible Mind", + }, + [2603] = { + ["D"] = "Death does indeed have wings in these blasted lands, $r. I have witnessed the black slayers and bonepickers feasting upon the corpse of many a fallen explorer - sometimes feeding upon the most vile and disease ridden of carcasses. It is a wonder, then, how their internal systems overcome the pestilence that claims these lands.$B$BAssist me in my studies, $N! Gizzards I need! Two snickerfang jowls will also be required for the base of the concoction.$B$BYou shall be rewarded two-fold for your efforts.", + ["O"] = "Bring ten Vulture Gizzards and two Snickerfang Jowls to Bloodmage Lynnore.", + ["T"] = "Vulture\'s Vigor", + }, + [2604] = { + ["D"] = "I see that the inner fire has dwindled. Would you say the spiritual euphoria lasted an hour?$B$BIf it\'s more of the gizzard gum you desire, then more of the gizzards I require. Back to the wastelands, $N. Do not return until you have recovered ten gizzards and two jowls.", + ["O"] = "Bring ten Vulture Gizzards and two Snickerfang Jowls to Bloodmage Lynnore.", + ["T"] = "Spiritual Domination", + }, + [2605] = { + ["D"] = "I\'ve got an idea, see. I\'ve heard of some strange creatures called dew collectors that live to the southwest... and that they are able to store water in special glands.$B$BI think that if I could get one of these glands, I could create a drink that would quench my terrible thirst! Do you think you could help me, $N?$B$BLook for the cactus garden, $N; that\'s where you\'ll find the dew collectors.", + ["O"] = "Collect a Laden Dew Gland and bring it to Marin Noggenfogger in Gadgetzan.", + ["T"] = "The Thirsty Goblin", + }, + [2606] = { + ["D"] = "Blech! This stuff tastes terrible! So much for that idea...$B$BWait, what\'s that? Oh, I know, I know, you think I shouldn\'t give up on this stuff. Well, okay then.$B$BUhhhh, I have an idea! Brilliant! Take this dew to my friend Sprinkle -- she\'s an excellent chef. Tell her what we\'re up to here and that we want to make it go down a little easier.$B$BI mean, if it\'s going to taste that bad, it at least should have some kick to it... And I\'m just not feeling it... ", + ["O"] = "Marin Noggenfogger wants you to speak with Sprinkle in Gadgetzan.", + ["T"] = "In Good Taste", + }, + [2607] = { + ["D"] = "It appears as if you\'ve brought back more information than even I expected. This certainly is a strange turn of events, $N.$B$BA cure? Hrm... Go down to the cellar and speak with Doc Mixilpixil - he may be able to help.", + ["O"] = "Speak with Doc Mixilpixil in the cellar of the Barracks.", + ["T"] = "The Touch of Zanzil", + }, + [2608] = { + ["D"] = "Oh my, you look like death. Correction - I\'ve seen death, you look worse than death. You, $g sir:miss;, would be what death coughed up at his last physical.$B$BHah! You hear that Noarm? Write that one down!$B$B*Cough* Hrm yes, in order for me to help you, I\'ll need to draw some blood. Don\'t worry, it only hurts the first few... fifty times or so... /lay down when you\'re ready for the treatment, $N.", + ["O"] = "/Lay down to be examined by Doc Mixilpixil. How can he find the cure if he can\'t find the cause?", + ["T"] = "The Touch of Zanzil", + }, + [2609] = { + ["D"] = "It\'s unanimous, $N. You\'ve got the \'itis.\'$B$BLuckily, I have a cure for the \'itis.\'$B$BHere\'s what I need: One bundle of simple wildflowers, one leaded vial, one bronze tube, and last but certainly not least, one spool of light chartreuse silk thread. Ol\' Emma left a spool of it for me at \'The Finest Thread.\' You can find the shop along the canals.$B$BHurry along now, $N, and try not to touch anyone until you\'re cured. Oh, and Dr. Montgomery says you need a shower -- his words, not mine.", + ["O"] = "Bring Doc Mixilpixil one bundle of Simple Wildflowers, one Leaded Vial, one Bronze Tube, and one Spool of Light Chartreuse Silk Thread. The \'itis\' doesn\'t cure itself, young $g fella:lady;. ", + ["T"] = "The Touch of Zanzil", + }, + [2621] = { + ["D"] = "Regret. It is all I have now. One bad decision resulting in several horrible outcomes. If only I had waited for those orders. Maybe they would have detailed the horrors that awaited us in those cursed lands! Maybe they were to redirect us to another detail? Ultimately, it was my fault. All of it was my fault.$B$BSo here I stand, awaiting orders. I must know. I must have those orders.$B$BDispatch Commander Ruag resides in Stonard. Find him and find out what became of the orders.", + ["O"] = "Speak to Dispatch Commander Ruag in Stonard.", + ["T"] = "The Disgraced One", + }, + [2622] = { + ["D"] = "The orders? What could you possibly want with the orders?$B$BWhat are you implying, $N? Of course I relayed those orders! The soldiers I sent the orders with were ambushed and brutally beaten by murlocs. Only one survived, if you can call that surviving. He can hardly speak, cannot walk, and must be fed through a tube. If you want to know what happened to those orders, speak with Bengor. I\'m sure he is around here somewhere... and, $N, be mindful of what you stick your nose into - it may get bitten off.", + ["O"] = "Speak to Bengor.", + ["T"] = "The Missing Orders", + }, + [2623] = { + ["D"] = "Orders were given by the dispatch commander. We took... took orders. On way to Blasted Lands, ambushed.$B$BMurlocs... Many murlocs... One named Swamp Talker. Took orders from my hands as spear thrust into my skull. East... cave....$B$B", + ["O"] = "Retrieve the Warchief\'s Orders and return them to the Fallen Hero of the Horde.", + ["T"] = "The Swamp Talker", + }, + [2641] = { + ["D"] = "When I was a kid, my sister used to do all the cooking. It was horrible! I could barely stomach some of her concoctions -- until I found what I like to call my \"secret\" ingredient! Add it to anything, and... WOW! It tastes great!$B$BWhat is it, you ask? It\'s a mushroom called the Violet Tragan. If you want me to help you turn this horrid-tasting brew into something edible, head to the Hinterlands, and look for a small lake there.$B$BOh, and remember, the Violet Tragan can only be found underwater.", + ["O"] = "Sprinkle in Gadgetzan wants you to collect a Violet Tragan and return it to her.", + ["T"] = "Sprinkle\'s Secret Ingredient", + }, + [2661] = { + ["D"] = "Here\'s the Violet Powder, $N. Take it to Marin and tell him he owes me a favor!", + ["O"] = "Sprinkle wants to you take the Violet Powder to Marin Noggenfogger in Gadgetzan.", + ["T"] = "Delivery for Marin", + }, + [2662] = { + ["D"] = "Now, to mix this powder in with the dew.$B$BCome back and talk to me in a minute... after I have perfected the fabulous Noggenfogger Elixir!", + ["O"] = "Marin Noggenfogger wants you to speak to him again after he creates his elixir.", + ["T"] = "Noggenfogger Elixir", + }, + [2681] = { + ["D"] = "It will take more than you alone to overcome the forces of Razelikh and his subordinates.$B$BGather a suitable group of adventurers and free my men of their eternal torture! Eighteen stones you must shatter.$B$BFight hard and die with honor, $N.", + ["O"] = "Free nine Servants of Razelikh, three Servants of Sevine, three Servants of Allistarj, and three Servants of Grol. Return to the Fallen Hero when your task is complete. You must remain within close proximity of the stones or the process will fail.", + ["T"] = "The Stones That Bind Us", + }, + [2701] = { + ["D"] = "Please, take from this a relic of old. We no longer have a use for the item.$B$BMay it serve you well in your fight against the legion.", + ["O"] = "Open the chest and claim your reward.", + ["T"] = "Heroes of Old", + }, + [2702] = { + ["D"] = "You have honored me with your nobility and heroism, $N.$B$BYou have also honored them...", + ["O"] = "Speak to Corporal Thund Splithoof.", + ["T"] = "Heroes of Old", + }, + [2721] = { + ["D"] = "As one chapter of your adventure closes, another one begins, $N.$B$BOne of my men is still unaccounted for, lost somewhere in the Blasted Lands. I am talking about Lieutenant Kirith, of course.$B$BAs I had mentioned earlier, we were both imprisoned and tortured by Allistarj, but poor Kirith, his strength of will faltered. I could hear the experiments from my cage; the tortured screams rang through the halls of the cave. That was the last I saw or heard of Kirith.", + ["O"] = "Find out what became of Lieutenant Kirith.", + ["T"] = "Kirith", + }, + [2741] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Super Egg-O-Matic", + }, + [2742] = { + ["D"] = "Hey $r!$B$BRin\'ji lost axe and was captured! Please, help Rin\'ji escape. Me know that $r like you don\'t like Rin\'ji\'s kind, but Rin\'ji begs! Must get out of here!$B$BGot something for nice $r if $Ghe helps Rin\'ji out of here:she helps Rin\'ji out of here;...$B$BRin\'ji is hiding something secret at the Overlook Cliffs.", + ["O"] = "Escort Rin\'ji out of the Quel\'Danil Lodge, then find his hidden secret at the Overlook Cliffs to the east.", + ["T"] = "Rin\'ji is Trapped!", + }, + [2743] = { + ["D"] = "Let us not mince words, $r; my time here is limited.$B$BYou must destroy the triad of power which protects the demon lord, Razelikh. Doing so will not be as simple a task as freeing a damned soul.$B$B$B$BYou see, each of Razelikh\'s underlings wears a third of an amulet of Razelikh\'s creation around their neck. The very same amulet you will need in order to summon the arch demon.$B$BReturn to Trebor and tell him what is required to summon Razelikh. He will be able to instruct you further.", + ["O"] = "Return to the Fallen Hero of the Horde with your findings.", + ["T"] = "The Cover of Darkness", + }, + [2744] = { + ["D"] = "The triad is protected by Razelikh.$B$BIn exchange for their servitude, Razelikh granted each of them nearly unlimited power within the Blasted Lands. The amulet pieces are each attuned to the lifeforce of their owner, granting them immortality. As long as they remain within the Blasted Lands, they cannot be slain, their life spans extended until the end of days.$B$BThere is one who may be able to assist you further, $N. Travel to Azshara and find the demon hunter, Loramus Thalipedes. Search the islands.", + ["O"] = "Speak with Loramus Thalipedes in Azshara.", + ["T"] = "The Demon Hunter", + }, + [2745] = { + ["D"] = "Hmm, an interesting tale, and not one to be taken lightly. Yeah, I can help you, but what you need to do is divvy out a form of justice that\'s not... legal, if you\'re to see this through to the end.$B$BLescovar and Marzon need to be dealt with, and swiftly. Do you think you\'re capable of such a thing?$B$BYou decide. If so, then make haste to the castle and find an old friend of mine, a gnome named Tyrion. He\'s been watching Lescovar now for a couple weeks. He should be able to help you end this.", + ["O"] = "Speak to Tyrion in Stormwind Castle.", + ["T"] = "Infiltrating the Castle", + }, + [2746] = { + ["D"] = "Trias wants the timetable pushed up some, huh? Okay, we can do that, but I\'m not ready. And know this, I\'m doing the hard part, but you\'re the one that\'s going to get $g his:her; hands dirty, understand? Good.$B$BOkay, I\'ll need you to get me a few things before I can put my plan into effect. I got the perfect disguise that\'ll get Spybot past those guards.$B$BBring me some silk and a couple apples. The silk\'s up to you, but Clara\'s little farm right outside the city has the perfect sized apples.", + ["O"] = "Bring 3 Silk Cloth and 2 of Clara\'s Fresh Apples to Tyrion in Stormwind.", + ["T"] = "Items of Some Consequence", + }, + [2747] = { + ["D"] = "", + ["O"] = "", + ["T"] = "An Extraordinary Egg", + }, + [2748] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Fine Egg", + }, + [2749] = { + ["D"] = "", + ["O"] = "", + ["T"] = "An Ordinary Egg", + }, + [2750] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Bad Egg", + }, + [2751] = { + ["D"] = "Twenty generations of Omosh have held this hammer, $N. A hundred thousand tons of metal we have molded. Tragically, it all ends at Orokk, failure of the Omosh: Without kin and incapable of producing offspring.$B$BI cannot let the secret recipes of Omosh die with me! Someone must continue the legacy, Omosh or not!$B$BProve to Orokk you are capable, $N. Bring for Orokk the following: Two patterned bronze bracers, two bronze greatswords, and two sharp claws. Bring them for Orokk and we shall continue.", + ["O"] = "Bring two Patterned Bronze Bracers, two Bronze Greatswords, and two Sharp Claws to Orokk Omosh in Orgrimmar.", + ["T"] = "Barbaric Battlements", + }, + [2752] = { + ["D"] = "Orokk sees the eagerness in your eyes, $N. Like a sponge you soak in the wisdom of the Omosh.$B$BThree lessons I shall teach!$B$BReturn to the anvil, soak in the heat of the forge, create for Orokk four bronze battleaxes and four bronze warhammers. Only then will you learn of the iron pauldron.", + ["O"] = "Bring four Bronze Battleaxes and four Bronze Warhammers to Orokk Omosh in Orgrimmar.", + ["T"] = "On Iron Pauldrons", + }, + [2753] = { + ["D"] = "Only two more lessons Orokk will teach, $N. Your muscles ache, I know, but continue on for the Omosh!$B$BBring to Orokk four green iron helms, four green iron bracers, and two green iron leggings - for this you learn and your enemies suffer!", + ["O"] = "Bring four Green Iron Helms, four Green Iron Bracers, and two Green Iron Leggings to Orokk Omosh in Orgrimmar.", + ["T"] = "Trampled Under Foot", + }, + [2754] = { + ["D"] = "The final lesson Orokk teaches you, $N. To the sacred anvil and forge you return! Bring for Orokk two solid iron mauls, two silvered bronze boots, and two silvered bronze gauntlets.$B$BSee the fear in their eyes as you approach!", + ["O"] = "Bring two Solid Iron Mauls, two Silvered Bronze Boots, and two Silvered Bronze Gauntlets to Orokk Omosh in Orgrimmar.", + ["T"] = "Horns of Frenzy", + }, + [2755] = { + ["D"] = "Orokk is not crying, $N. Soot is in eye.$B$B$B$BThere is one last Omosh family secret Orokk will teach you. Orokk will die happy, thanks to $N.$B$BLearn Omosh dance of joy and then you learn fist of iron!", + ["O"] = "Watch and learn the Omosh Dance of Joy.", + ["T"] = "Joys of Omosh", + }, + [2756] = { + ["D"] = "In the time of legends, Aturk would crush the skulls of his enemies and grind the bone into a fine powder for use in filament. Long gone are those days, $r. The Warchief calls for peace among the clans. Old enemies are now only watched with weary eyes!$B$BUnbelievable, I know, but such is the will of Thrall.$B$BEnough lamenting! You are here to learn, and learn you will! Bring me four steel breastplates and four steel helms and you will gain a taste of war!", + ["O"] = "Bring four Steel Breastplates and four Steel Plate Helms to Aturk the Anvil in Orgrimmar.", + ["T"] = "The Old Ways", + }, + [2757] = { + ["D"] = "Listen, kid, you\'re not gonna learn anything hanging around here.$B$BI know a guy who knows a guy. He hangs around the smithy in Booty Bay. If you show him this insignia, he\'ll tell you all about mithril.$B$BSo whadd\'ya say? Leave this kid stuff to the babies in diapers, $N -- it\'s time to move on.$B$BIf you\'re interested, his name\'s McGavan. Show him this trinket and he\'ll recognize your commitment.", + ["O"] = "Speak with McGavan in Booty Bay.", + ["T"] = "Booty Bay or Bust!", + }, + [2758] = { + ["D"] = "When I was about your age, a dwarf by the name of Galvan took me under his wing and trained me in the ways of the armorsmith. Before he left for Booty Bay, he made me promise to train all those with the desire and determination to advance in the craft of blacksmithing -- so here I am -- all these years later.$B$BSo, now it\'s time for you to learn a little something. Make me six golden scale bracers and you will learn where smithing comes from, $N.", + ["O"] = "Bring six Golden Scale Bracers to Hank the Hammer in Stormwind.", + ["T"] = "The Origins of Smithing", + }, + [2759] = { + ["D"] = "Although Galvan left Booty Bay many years ago, members of the order still remain in town, hoping to one day find another worthy of Galvan\'s tutelage.$B$BTake this insignia and present it to McGavan in Booty Bay.$B$BIf you actually make it that far, he\'ll know that you are worthy. I have faith, $N!", + ["O"] = "Speak with McGavan in Booty Bay.", + ["T"] = "In Search of Galvan", + }, + [2760] = { + ["D"] = "Most of our recruits never make it to Booty Bay, $N. The shine of the insignia is enough to trigger the loot lust in even the staunchest of blacksmiths. Fools they be, as the insignia is a drop in the bucket compared to the wealth of items you\'ll see!$B$BFind Galvan the Ancient and show him this pin. His residence is far to the north, between Zul Gurub and the Mosh\'Ogg ogre mound.", + ["O"] = "Speak with Galvan the Ancient in Stranglethorn Vale.", + ["T"] = "The Mithril Order", + }, + [2761] = { + ["D"] = "Many blacksmiths believe that mining and smithing are separate, independent jobs; but can there be blacksmithing without mining? Ah ha -- it is an impossibility! The accomplished blacksmith must also be an accomplished miner.$B$BShow Galvan that you are capable, $N. Bring me forty bars of iron and forty bars of mithril. For this, Galvan will teach you the ways of the ornate mithril pants!", + ["O"] = "Bring forty Mithril Bars and forty Iron Bars to Galvan the Ancient in Stranglethorn.", + ["T"] = "Smelt On, Smelt Off", + }, + [2762] = { + ["D"] = "It is said that truesilver is stronger and more durable than mithril. Galvan does not disagree with this assessment of the minerals, but contrary to its name, truesilver is not true! Mithril is a far nobler mineral! HAH! Regardless, for this lesson you will need to find the great silver deceiver, $N.$B$BBring me forty bars of mithril and five bars of truesilver. In exchange, you will be taught the secret of ornate mithril gloves and more importantly, learn that truesilver is a liar!", + ["O"] = "Bring forty Mithril Bars and five Truesilver Bars to Galvan the Ancient in Stranglethorn.", + ["T"] = "The Great Silver Deceiver", + }, + [2763] = { + ["D"] = "The harvesting of precious gems is of utmost importance to our craft, $N. Few gems are more precious than the citrine. The magical properties we imbue into our goods are amplified greatly by the presence of citrine.$B$BFor this lesson, we will fortify forty bars of mithril with four citrines. The result will be a better understanding of magical gemology and the knowledge to create ornate mithril shoulders.", + ["O"] = "Bring forty Mithril Bars and four Citrines to Galvan the Ancient in Stranglethorn.", + ["T"] = "The Art of the Imbue", + }, + [2764] = { + ["D"] = "If you are ready to conclude your training with Galvan, you should journey to Gadgetzan.$B$BThere, you will find my finest pupil: Trenton Lighthammer. He has much to teach you in the ways of ornate mithril. Otherwise, remain here and learn!$B$BOh, Gadgetzan is in Tanaris, of course!", + ["O"] = "Speak with Trenton Lighthammer in Gadgetzan.", + ["T"] = "Galvan\'s Finest Pupil", + }, + [2765] = { + ["D"] = "When you first came to me, I knew that you would turn out to be one of my finest pupils! It was without hesitancy that you gave up a trinket of some power to McGavan. You did this only so that you could meet me. Such blind faith and devotion to the craft should be rewarded.$B$BYou have attained expertise over blacksmithing, $N. Reap the rewards!", + ["O"] = "Claim your reward from Galvan the Ancient!", + ["T"] = "Expert Blacksmith!", + }, + [2766] = { + ["D"] = "You have uncovered some sort of strange, egg-shaped device made from metal. Fiddling with one of its knobs springs the egg to life, as it opens up into some sort of gnomish robotic contraption! A voice from inside the robotic egg crackles to life.$B$B\"My name\'s Oglethorpe Obnoticus, and my homing robot has crashed! I will reward you for its recovery; please take this beacon to the robot!\"$B$B\"I now have computed the coordinates of the robot for you; it is in a cave near Feral Scar Vale!\"", + ["O"] = "Take the distress beacon to Oglethorpe\'s homing robot in a cave near Feral Scar Vale.", + ["T"] = "Find OOX-22/FE!", + }, + [2767] = { + ["D"] = "The gnome\'s voice crackles once again from the robot:$B$B\"I need to move OOX-22/FE to an open, safe place so it can begin a lengthy take-off procedure. It has built-in cloaking, but I need time on my end to make it operational again. Escort the robot from its current location to, let\'s say, the dock along the Forgotten Coast! That should be a perfect place, and long enough, to get things online!\"$B$B\"Escort it safely to the dock, and then come talk to me in Booty Bay! Oglethorpe Obnoticus - out!\"", + ["O"] = "Escort OOX-22/FE to the dock along the Forgotten Coast, then report to Oglethorpe Obnoticus in Booty Bay.", + ["T"] = "Rescue OOX-22/FE!", + }, + [2768] = { + ["D"] = "Sergeant Bly stole from me! He said he\'d only borrow it, but he stole my cherished divino-matic rod!! Without that rod how will I know where to dig new water holes??$B$BFind Bly and bring me my rod! I heard he led his band of ill-reputed adventurers to go treasure hunting in Zul\'Farrak to the west. I bet you\'ll find him there.$B$BLet\'s hope the trolls took care of him, because if you have to fight him for the rod then you\'re in for a serious fight.", + ["O"] = "Bring the Divino-matic Rod to Chief Engineer Bilgewhizzle in Gadgetzan.", + ["T"] = "Divino-matic Rod", + }, + [2769] = { + ["D"] = "Have you met the Brassbolts brothers? They\'re over in the Shimmering Flats, in Kalimdor, racing their rocket car against the goblins. They usually win which is no surprise--the goblin car blows up so much it barely ever crosses the finish line!$B$BBut even then, the Brassbolts brothers are always looking for new ways to make their car go faster, and Wizzle told me he needs a very rare component for his next experiment.$B$BHe probably needs help getting that part. Speak to him and find out.", + ["O"] = "Speak with Wizzle Brassbolts in the Shimmering Flats.", + ["T"] = "The Brassbolts Brothers", + }, + [2770] = { + ["D"] = "Deep in Zul\'Farrak, the sand troll city in Tanaris, there is a sacred pool. From that pool the trolls summon a huge beast! Gahz\'rilla! He\'s so fierce that even his scales crackle with energy. It\'s that energy I want to harness for my car!$B$BBring me the electrified scale of Gahz\'rilla!$B$BBut the summoning of Gahz\'rilla is a well-kept secret of the trolls. To face him, you must first wrest the secret from them.", + ["O"] = "Bring Gahz\'rilla\'s Electrified Scale to Wizzle Brassbolts in the Shimmering Flats.", + ["T"] = "Gahz\'rilla", + }, + [2771] = { + ["D"] = "It seems as if master had this planned from the start. I was not taught to create the items which you learned to create and you were not taught the items which I learned to create.$B$BThe master is wise, $N. We shall teach each other!$B$BShow me how to make a mithril coif and ornate mithril shoulders and I shall show you how to create an ornate mithril helm.", + ["O"] = "Bring two Mithril Coifs and one Ornate Mithril Shoulder to Trenton Lighthammer.", + ["T"] = "A Good Head On Your Shoulders", + }, + [2772] = { + ["D"] = "At last year\'s All-Valley Blacksmithing Championship, all those who watched saw my leg get swept from under me by a cowardly dog from the Venture Co. Foundry. What they didn\'t know, however, was the reason I was able to continue and ultimately win the tournament: That\'s right, ornate mithril boots!$B$BI will need to learn how to craft ornate mithril pants for this year\'s tournament, however, as a Venture Co. shredder is an entrant! Teach me the way of the pants and learn the way of the boot!", + ["O"] = "Bring two Heavy Mithril Boots and one Ornate Mithril Pants to Trenton Lighthammer.", + ["T"] = "The World At Your Feet", + }, + [2773] = { + ["D"] = "Around these parts I am known as the Mithril Kid. I supply ornate mithril to adventurers from around the world.$B$B$B$BLittle do they know that I do not know the technique to fashion ornate mithril gloves. Shhhh! This will be our little secret.$B$BTeach me the technique to create ornate mithril gloves, $N, and in exchange, I will show you the resultant of the culmination of my training under Galvan: the ornate mithril breastplate.", + ["O"] = "Bring two Heavy Mithril Breastplates and one Ornate Mithril Gloves to Trenton Lighthammer.", + ["T"] = "The Mithril Kid", + }, + [2781] = { + ["D"] = "WANTED: Caliph Scorpidsting!$B$BThe Gadgetzan Water Company of Gadgetzan, Tanaris will pay a high bounty for the head of Caliph Scorpidsting, leader of the Wastewander outlaws. His crimes include:$B$B1. Murdering Gadgetzan Water Co. employees!$B2.Stealing Gadgetzan Water Co. resources!$B3.Seizing Gadgetzan Water Co. property!$B$BBring proof of Caliph Scorpidsting\'s demise to Chief Engineer Bilgewhizzle for an immediate reward!", + ["O"] = "Bring the head of Caliph Scorpidsting to Chief Engineer Bilgewhizzle in Gadgetzan.", + ["T"] = "WANTED: Caliph Scorpidsting", + }, + [2782] = { + ["D"] = "The tablet is covered with Witherbark troll markings. Rin\'ji\'s secret truly is a mystery... $B$BIt\'s possible that you might have something quite valuable on your hands here. On the other hand, quite the opposite is also possible. A Witherbark troll in distress would probably do anything to find his way out of trouble...", + ["O"] = "Oran Snakewrithe, a well known scholar on matters concerning the Witherbark trolls, may be able to decipher the tablet. She is known to reside within the Magic Quarter of the Undercity.", + ["T"] = "Rin\'ji\'s Secret", + }, + [2783] = { + ["D"] = "We fight the wrong enemy, $N.$B$BThe true power in these lands continues to grow in strength and number while we squabble over scorched earth with orcs.$B$BDo we continue to fight a war in these lands against the Horde, only to be routed one day by the armies of the Burning Legion? It is futile.$B$BPut your differences aside, $N, speak with the fallen hero of the Horde. He knows the truth behind the Blasted Lands.", + ["O"] = "Speak with the Fallen Hero of the Horde at the border of the Blasted Lands and the swamp.", + ["T"] = "Petty Squabbles", + }, + [2784] = { + ["D"] = "Hear my story, $r.", + ["O"] = "Listen to the Fallen Hero of the Horde tell his story.", + ["T"] = "Fall From Grace", + }, + [2801] = { + ["D"] = "Before we may continue, you must hear my story.", + ["O"] = "Listen to the Fallen Hero of the Horde tell his story.", + ["T"] = "A Tale of Sorrow", + }, + [2821] = { + ["D"] = "My philosophy on leatherworking is that the work must be the best quality possible - no compromises. Anyone who says that quality doesn\'t matter is trying to sell you ocean-front property in Dun Morogh!$B$BIn my latest pursuit of high-quality materials, I have run across thick yeti hides. The Yeti are native to Feralas, with many found in Feral Scar Vale. I want some, and I\'ll give you a choice of one of my leather goods for a stack of ten. If that sounds fair to you, then we\'re in business.", + ["O"] = "Bring 10 Thick Yeti Hides to Pratt McGrubben in Feathermoon Stronghold.", + ["T"] = "The Mark of Quality", + }, + [2822] = { + ["D"] = "I take pride in my leather work, and I feel it shows; quality should never be compromised. Anyone who says that quality doesn\'t matter would also have you believe that the earth does not keep secrets!$B$BIn my latest pursuit of high-quality materials, I have discovered thick yeti hides. Yetis are native to Feralas, often found west of here in Feral Scar Vale. I\'ll give you a choice of one of my leather goods for a stack of ten. If that is agreeable to you, then we are set!", + ["O"] = "Bring 10 Thick Yeti Hides to Jangdor Swiftstrider in Camp Mojache.", + ["T"] = "The Mark of Quality", + }, + [2841] = { + ["D"] = "Gnome technology - two years ago its most common use was as a punch line. Times certainly have changed. Now they\'ve got a new rig built that\'s better than all our shredder models combined. I need the blueprints, $N!$B$BUnfortunately, the plans are locked away in a safe near Mekgineer Thermaplugg. To make matters worse, the combination to the safe is only known by Mekgineer Thermaplugg.$B$BDo whatever you have to do to get that combination, $N. Then crack open that safe and bring back those blueprints!", + ["O"] = "Retrieve the Rig Blueprints and Thermaplugg\'s Safe Combination from Gnomeregan and bring them to Nogg in Orgrimmar.", + ["T"] = "Rig Wars", + }, + [2842] = { + ["D"] = "As soon as we got word from Kernobee about the new gnomish rig, Scooty and I began work on the Transpolyporter 6000: The fastest and most reliable way to Gnomeregan.$B$BIt\'s finally ready for passengers to board, $N. If you want to give it a try, go to Booty Bay and talk with Scooty at the wind rider roost. To get to Booty Bay, take the boat from Ratchet.$B$BOf course, you could always try and make the run to Gnomeregan through the dwarf infested mountains of Dun Morogh!", + ["O"] = "Speak with Scooty in Booty Bay.", + ["T"] = "Chief Engineer Scooty", + }, + [2843] = { + ["D"] = "As long as you have the transponder in your possession, all you need to do is step on the pad and you\'ll be teleported to Gnomeregan.$B$BYou may experience some unusual side effects, but none of those should be permanent... anymore.$B$BI almost forgot the most important part - getting back. When you\'re ready to come back, just step on the transpolyporter pad in Gnomeregan!$B$BNow to calibrate the transponder to your size and weight.", + ["O"] = "Wait for Scooty to calibrate the Goblin Transponder.", + ["T"] = "Gnomer-gooooone!", + }, + [2844] = { + ["D"] = "I am no good, $N. I was \'spose to be watchin\' over my little friend, Shay, and somehow, she got away from me. I\'m not all that sure what happened, really, but last time I saw her, we was walkin\' through the ruins just north of here.$B$BEverythin\' was goin\' fine, but then I turned around, and... she was gone.$B$BNow I jus can\'t quite figure out what I should do here. Got any ideas, $N? I\'m awful worried.$B$BHey, how \'bout you go look fer Shay? Yer legs can travel much faster \'n mine.", + ["O"] = "Locate the lost night elf girl.", + ["T"] = "The Giant Guardian", + }, + [2845] = { + ["D"] = "Do you think you could help me find my way back to my friend, Rockbiter? He was supposed to be watching me... But I do have a tendency to wander off now and then. There are just so many things to see, and I get so distracted.$B$BThere is one thing that will always work to get my attention, though.$B$BInside this chest, you\'ll find a bell that is very precious to me. I just love the sound of it. You have my word, if I wander off, all you have to do is ring it and I\'ll come running back.", + ["O"] = "Pick up Shay\'s Bell from the chest.$B$BEscort Shay Leafrunner to Rockbiter\'s camp.", + ["T"] = "Wandering Shay", + }, + [2846] = { + ["D"] = "Long ago I possessed a beautiful piece of jewelry, the Tiara of the Deep. And not only was it pretty--it held great power for those with the knowledge to use it.$B$BSo when word of the tiara reached the Hydromancer Velratha, she had to have it. She sent agents to my home and they stole it while I was away. The thieves!$B$BI want my tiara back! Go to Zul\'Farrak, the troll city in Tanaris, find Velratha and wrench the tiara from her. Return it to me and you\'ll earn my favor.", + ["O"] = "Bring the Tiara of the Deep to Tabetha in Dustwallow Marsh.", + ["T"] = "Tiara of the Deep", + }, + [2847] = { + ["D"] = "$n, you\'re becoming quite skilled as a leatherworker! I know some patterns you might be interested in... Wild Leather armor! Wild Leather taps into the potent and chaotic properties of wildvines, found in areas of lush vegetation and on some of the creatures there. The armor made using it is second to none for people of your skill, guaranteed.$B$BI\'ll teach this to you, but you\'ll be working for me for a while. The first cost is simply ten pieces of thick leather. After this, we\'ll talk specifics.", + ["O"] = "Bring 10 Thick Leather to Pratt McGrubben in Feathermoon Stronghold.", + ["T"] = "Wild Leather Armor", + }, + [2848] = { + ["D"] = "Wild Leather shoulders support the wearer\'s frame extremely well, offering top notch protection of the upper arms and the shoulders themselves. As with all Wild Leather armor, a potent but random benefit is applied to the item as the wildvine is stitched in.$B$BFor this pattern, I will require six thick armor kits and a wildvine. That shouldn\'t be too tall of an order for you to fill.", + ["O"] = "Bring 6 Thick Armor Kits and a Wildvine to Pratt McGrubben in Feathermoon Stronghold.", + ["T"] = "Wild Leather Shoulders", + }, + [2849] = { + ["D"] = "Wild Leather vests are the staple of any Wild Leather armor set. The frame of the vest blends with the wildvine to produce a product that offers maximum protection of the torso while allowing for the potent magic to work its way through the garment.$B$BFor this pattern, I will require two Turtle Scale breastplates, two sets of Turtle Scale gloves, and a wildvine. It\'s a tall order, but one you should have little difficulty in filling for me.", + ["O"] = "Bring 2 Turtle Scale Breastplates, 2 Turtle Scale Gloves, and a Wildvine to Pratt McGrubben in Feathermoon Stronghold.", + ["T"] = "Wild Leather Vest", + }, + [2850] = { + ["D"] = "A Wild Leather helmet offers the wearer superior protection to the vital areas of the head without a sacrifice in comfort. As with all Wild Leather armor, the integrated wildvine yields a powerful but random enhancement to the frame of the helm. Leather wearers will definitely want this piece!$B$BFor this pattern, I will need two Nightscape tunics, two Nightscape headbands, and a wildvine. Complete this order and the pattern will be yours!", + ["O"] = "Bring 2 Nightscape Tunics, 2 Nightscape Headbands, and a Wildvine to Pratt McGrubben in Feathermoon Stronghold.", + ["T"] = "Wild Leather Helmet", + }, + [2851] = { + ["D"] = "You\'ve learned quite a bit now, $n; still, there is more for you to learn. Next are Wild Leather boots, the cornerstone of any set.$B$BThese boots are crafted to cradle the foot in comfort while bracing it against the hazards of adventuring. The soft soles are a blessing to those seeking quiet movement in footwear.$B$BFor this pattern, I need an order of two Nightscape pants and two Nightscape boots filled. I also will require two wildvines... not just one. When you have all this, let me know.", + ["O"] = "Bring 2 Nightscape Pants, 2 Nightscape Boots, and 2 Wildvines to Pratt McGrubben in Feathermoon Stronghold.", + ["T"] = "Wild Leather Boots", + }, + [2852] = { + ["D"] = "With the basics down, you are ready to master more complex fare, $n. Wild Leather leggings are some of the sturdiest and powerful leather gear around. The waist, thighs, calves, and the vitals - all are given tremendous protection. Coupled with the enhancement that the wildvine provides, adventurers who own it will thank you each time they see you.$B$BFor this pattern, I need an order of two Turtle Scale helms, two Turtle Scale bracers, and two wildvines filled.", + ["O"] = "Bring 2 Turtle Scale Helms, 2 Turtle Scale Bracers, and 2 Wildvines to Pratt McGrubben in Feathermoon Stronghold.", + ["T"] = "Wild Leather Leggings", + }, + [2853] = { + ["D"] = "Well $n, you are the definition of diligence. There is one pattern left for Wild Leather armor; you\'ve mastered the others. I won\'t require you to toil needlessly for the pattern. You\'ve earned it outright, and then some... but I cannot give it to you myself. My teacher, the one who brought me into the craft, is the one who must reward you.$B$BTake this letter to Telonis; he teaches leatherworking in Darnassus. Show him the letter, and let him acknowledge you as an equal, as I do.", + ["O"] = "Give Pratt\'s Letter to Telonis, the master leatherworker of Darnassus.", + ["T"] = "Master of the Wild Leather", + }, + [2854] = { + ["D"] = "$n, your skill as a leatherworker precedes you. I possess leatherworking lore you would be wise to acquire... Wild Leather armor! Wild Leather taps into the potent and chaotic properties of wildvines, found in areas of lush vegetation and on some of the creatures there. Armor made using it is second to none for a crafter of your skill, guaranteed.$B$BI\'ll teach you, but you\'ll be working for me for a while. The first cost is simply ten pieces of thick leather. After this, we\'ll talk specifics.", + ["O"] = "Bring 10 Thick Leather to Jangdor Swiftstrider in Camp Mojache.", + ["T"] = "Wild Leather Armor", + }, + [2855] = { + ["D"] = "Wild Leather shoulders support a wearer\'s frame extremely well, offering superior protection of the upper arms as well as the shoulders. As with all Wild Leather armor, a random yet very potent enhancement is imbued within the item as the wildvine is stitched in.$B$BFor this pattern, I will require six thick armor kits and a wildvine. That shouldn\'t be too tall of an order for you to fill.", + ["O"] = "Bring 6 Thick Armor Kits and a Wildvine to Jangdor Swiftstrider in Camp Mojache.", + ["T"] = "Wild Leather Shoulders", + }, + [2856] = { + ["D"] = "Wild Leather vests are the staple of any Wild Leather armor set. The frame of the vest and the wildvine weave within it produces a product that offers maximum protection of the torso while allowing for potent magic to work its way through the garment.$B$BFor this pattern, I will require two Turtle Scale breastplates, two sets of Turtle Scale gloves, and a wildvine. This is not an easy lesson, but it is one you certainly have the skill to complete.", + ["O"] = "Bring 2 Turtle Scale Breastplates, 2 Turtle Scale Gloves, and a Wildvine to Jangdor Swiftstrider in Camp Mojache.", + ["T"] = "Wild Leather Vest", + }, + [2857] = { + ["D"] = "A Wild Leather helmet offers the wearer superior protection to the vital areas of the head without a sacrifice in comfort. As with all Wild Leather armor, the integrated wildvine yields a powerful but random magic imbuement to the helm\'s frame. Leather wearers will definitely want this piece!$B$BFor this pattern, I will need two Nightscape tunics, 2 Nightscape headbands, and a wildvine. Complete this lesson and the pattern will be yours!", + ["O"] = "Bring 2 Nightscape Tunics, 2 Nightscape Headbands, and a Wildvine to Jangdor Swiftstrider in Camp Mojache.", + ["T"] = "Wild Leather Helmet", + }, + [2858] = { + ["D"] = "Your knowledge of Wild Leather armor grows, $n; still, there is more for you to learn.$B$BWild Leather boots are the cornerstone of any set. Such boots are crafted to cradle the foot in comfort while bracing it against the hazards of adventuring. The soft soles are a blessing to those seeking quiet movement in footwear.$B$BFor this pattern, I need two Nightscape pants and two Nightscape boots crafted. I also will require two wildvines... not just one. When you have these items, we will proceed.", + ["O"] = "Bring 2 Nightscape Pants, 2 Nightscape Boots, and 2 Wildvines to Jangdor Swiftstrider in Camp Mojache.", + ["T"] = "Wild Leather Boots", + }, + [2859] = { + ["D"] = "You are ready to master more complex lessons, $n. Wild Leather leggings are some of the sturdiest and powerful leather gear around. The waist, thighs, calves, and the vitals - all are given tremendous protection. Coupled with the enhancement that the wildvine provides, adventurers who own it will thank you each time they see you.$B$BFor you to gain this pattern, I need two Turtle Scale helms, two Turtle Scale bracers, and two wildvines.", + ["O"] = "Bring 2 Turtle Scale Helms, 2 Turtle Scale Bracers, and 2 Wildvines to Jangdor Swiftstrider in Camp Mojache.", + ["T"] = "Wild Leather Leggings", + }, + [2860] = { + ["D"] = "$n, you have learned all I am able to teach you. There is, however, one remaining pattern for Wild Leather armor. I will not require you to toil needlessly for this; you\'ve earned it outright, and then some. This pattern, however, is one that I cannot freely share with you.$B$BMy teacher, the one who brought me into the craft, is the one who must reward you. Take this note to Una; she teaches leatherworking in Thunder Bluff. Show her the letter, and let her acknowledge you as an equal, as I do.", + ["O"] = "Give Jangdor\'s Letter to Una, the master leatherworker of Thunder Bluff.", + ["T"] = "Master of the Wild Leather", + }, + [2861] = { + ["D"] = "Rumor is that Tabetha, a mage colleague who lives deep in Dustwallow Marsh, has a bone to pick with a certain sand troll in Zul\'Farrak. If you speak with Tabetha she can tell you more.$B$BAnd bring some friends with you, $N. If Tabetha has you go to Zul\'Farrak then you\'re not going to want to go alone.$B$BYou will find Tabetha\'s cottage west of Theramore, and just north of the Stonemaul Ruin.", + ["O"] = "Speak with Tabetha in Dustwallow Marsh.", + ["T"] = "Tabetha\'s Task", + }, + [2862] = { + ["D"] = "The gnolls... they are more than a nuisance. They are a constant threat to the existence of this very camp! It is irrelevant whether they are indigenous to Feralas or not; if we do not strengthen our resolve against them, we will find ourselves driven out of the entire region.$B$BThe gnoll attacks against the camp have become more fevered as of late. We need your aid in thinning their numbers; bring to me ten of their manes, and I will reward you handsomely for your effort.$B$BGo!", + ["O"] = "Bring 10 Woodpaw Gnoll Manes to Hadoken Swiftstrider in Camp Mojache.", + ["T"] = "War on the Woodpaw", + }, + [2863] = { + ["D"] = "The plan is for various leaders of the gnolls - Alphas as they call themselves - to be taken down within rapid succession. If we\'re able to execute this sort of swift and precise devastation against them, it would cause chaos in their ranks. Perhaps it would also drive a message through their thick flea-bitten heads that we can and will destroy them!$B$BI want you to be the messenger of my will; eliminate five of their Alphas within one hour for this to work $N, or we\'ll remain at this impasse!", + ["O"] = "Kill 5 Woodpaw Alphas and return to Hadoken Swiftstrider within one hour.", + ["T"] = "Alpha Strike", + }, + [2864] = { + ["D"] = "My cousin Tran\'rek is in a tight spot. He promised me a load of scarab shells weeks ago and he hasn\'t delivered. He\'s my cousin, so I\'d hate to have to send someone to Gadgetzan to break something on him.$B$BCan you speak to Tran\'rek for me? Let him know he needs to get that delivery together before I do something rash?$B$BGadgetzan is in northern Tanaris, in Kalimdor.", + ["O"] = "Speak with Tran\'rek in Gadgetzan.", + ["T"] = "Tran\'rek", + }, + [2865] = { + ["D"] = "The scarabs of Tanaris have very hard shells! Hard enough to use as a building material for lots of things. So many things!$B$BIn fact, those shells are so useful... the scarabs were hunted all to near extinction!$B$BI know where there are more scarabs, and if you promise to bring me their shells then I\'ll tell you where they are. Promise?$B$BOk, the scarabs have a colony in Zul\'Farrak. I guess the trolls don\'t hunt them for their shells.$B$BBut you can! Go to Zul\'Farrak and get me uncracked shells!", + ["O"] = "Bring 9 Uncracked Scarab Shells to Tran\'rek in Gadgetzan.", + ["T"] = "Scarab Shells", + }, + [2866] = { + ["D"] = "To our south are the Ruins of Solarsal; this is an area that far pre-dates modern times. We explored the ruins initially and found nothing of note; as such, we left it in peace.$B$BVery recently, the Hatecrest naga have occupied these ruins in alarming numbers. At first, we considered it as the precursor for an attack. Though that threat is still possible, we believe there might be something else going on.$B$BGo there, explore the ruins, and look for anything that stands out to you. Good luck, $n.", + ["O"] = "Explore the Ruins of Solarsal and investigate the presence of the naga there.", + ["T"] = "The Ruins of Solarsal ", + }, + [2867] = { + ["D"] = "With the discovery of the strange gazebo in the heart of the Ruins of Solarsal, the time has come to return to Feathermoon Stronghold and report to General Shandris Feathermoon what has been discovered here.", + ["O"] = "Return to Shandris Feathermoon in the Feathermoon Stronghold and report your findings.", + ["T"] = "Return to Feathermoon Stronghold", + }, + [2868] = { + ["D"] = "Turn this badboy into some troll tomb in the Sunken Temple, and get something cool!", + ["O"] = "", + ["T"] = " The Shriveled Heart", + }, + [2869] = { + ["D"] = "The best course of action at this point is to assume that, regardless of what the naga are up to, they will eventually move to secure the island for their own. We need to take aggressive steps to counter that threat before it is too late.$B$BBring me ten Hatecrest Scales that are in good condition; it should be obvious to you how to acquire them. You\'ll cut your teeth on the naga for the first time, and we\'ll have a weakened naga presence on Sardor Isle - both are prospects that play to our advantage.", + ["O"] = "Bring 10 Hatecrest Naga Scales to Latronicus Moonspear in Feathermoon Stronghold.", + ["T"] = "Against the Hatecrest", + }, + [2870] = { + ["D"] = "$n, new scouting reports have given us a good idea on the naga chain of command. Royalty is present amongst their rank and file, and they\'re the ones calling all the shots.$B$BSpecifically, we\'ve identified one of the crueler royals as Lord Shalzaru. Scouts report that he himself has uncovered an odd relic during a recent naga excavation in a cave south of the main ruins, across the water on the Isle of Dread.$B$BPut a stop to it by putting a stop to him, and bring me his relic so we can study it.", + ["O"] = "Eliminate Lord Shalzaru, and then bring the Mysterious Relic he uncovered to Latronicus Moonspear in Feathermoon Stronghold.", + ["T"] = "Against Lord Shalzaru", + }, + [2871] = { + ["D"] = "If you would be so kind as to deliver the relic to my wife Vestia, I would appreciate it. She\'s not only a fine priestess for our community, but she is one of the most well-versed scholars you\'ll find anywhere. I couldn\'t make heads or tails of this device even if there was a wager involved. My wife though, if anyone can figure out what this thing is, she could... and we need to know!$B$BShe\'s just around the bend, no doubt studying. Thanks, $n.", + ["O"] = "Deliver the Mysterious Relic to Vestia Moonspear in Feathermoon Stronghold.", + ["T"] = "Delivering the Relic", + }, + [2872] = { + ["D"] = "My old buddy Stoley owes me a very special bottle of rum. He tends the bar at Steamwheedle Port in Tanaris, Kalimdor, and he promised me that the rum there is stronger than anything we can find in Booty Bay. He\'s so confident that he says if I try that rum and don\'t agree with him, then he\'ll double the money he owes me!$B$BWell, I think he\'s not as confident as he was when last we spoke, and now he\'s afraid to give me that rum. But I don\'t back down from wagers, so why don\'t you talk to him for me...", + ["O"] = "Speak with Stoley in Steamwheedle Port.", + ["T"] = "Stoley\'s Debt", + }, + [2873] = { + ["D"] = "I owe \"Sea Wolf\" MacKinley in Booty Bay some rum, to settle a bet, but I\'m all out of rum! Captain Cuergo stole my last shipment, and he has it stowed in that walled pirate town to the south.$B$BIf you can find my shipment of rum and return it to me, then I can prove to MacKinley that Kalimdor\'s booze beats the dirt out of Booty Bay!", + ["O"] = "Bring Stoley\'s Shipment to Stoley in Steamwheedle Port.", + ["T"] = "Stoley\'s Shipment", + }, + [2874] = { + ["D"] = "Thanks again for your help, $N. Here\'s a bottle of Steamwheedle bilge rum. Take it to MacKinley and he can finally put to rest his crazy beliefs about Booty Bay booze.", + ["O"] = "Bring Stoley\'s Bottle to \"Sea Wolf\" MacKinley in Booty Bay.", + ["T"] = "Deliver to MacKinley", + }, + [2875] = { + ["D"] = "The vile pirate Andre Firebeard is wanted for crimes against Steamwheedle and Gadgetzan.$B$BBy decree of governing counsel, any who read this are hereby authorized to use lethal force during the apprehension of Andre and his abettors.$B$BBy further decree, should Andre be deceased, or otherwise indisposed, during the time of his hearing, his head may act as proxy, and deliverance of such head to Security Chief Bilgewhizzle constitutes a binding, and tenderable, contract.", + ["O"] = "Bring Andre\'s Head to Security Chief Bilgewhizzle in Steamwheedle Port.", + ["T"] = "WANTED: Andre Firebeard", + }, + [2876] = { + ["D"] = "This scroll contains the schedules of shipments between Steamwheedle Port and Booty Bay. Both past and future shipments are included, along with ship names, with large \'X\'s next to some ships\' journeys, and annotations like \"GREAT LOOT\" and \"HARD FIGHT\" next to others.$B$BSomeone at Steamwheedle Port would want to see this document.", + ["O"] = "Report the Ship Schedules to an authority in Steamwheedle Port.", + ["T"] = "Ship Schedules", + }, + [2877] = { + ["D"] = "We Wildhammers remember the past, more than our brothers in Ironforge. If you want to make friends here, then you get your hands dirty for us!$B$BThe Horde abandoned their positions in the Hinterlands around Skulk Rock; it\'s now overrun with nasty sludges and oozes. We\'ve got plans on that area, but first we need a clean-up crew to make a hole for us.$B$BThat\'s where you come in, Sunshine! Head down there and take out ten green sludges and ten jade oozes, then report back to me here. Move out!", + ["O"] = "Kill 10 Green Sludges and 10 Jade Oozes, and then report back to Fraggar Thundermantle in Aerie Peak.", + ["T"] = "Skulk Rock Clean-up", + }, + [2878] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Corrupted Songflower", + }, + [2879] = { + ["D"] = "This stave might be the Stave of Equinex! The Stave of Equinex is actually a key, used to unlock the Equinex Monolith in the Ruins of Ravenwind, on the mainland west of the Dream Bough.$B$BFind the four flames that still burn in those ruins: Samha, Imbel, Byltan, and Lahassa. Retrieve their essence and then while standing by the Equinex Monolith, use the essences to energize the stave. If this is truly is the Stave of Equinex, you will be able to unlock the Monolith and gather a sacred artifact from it.", + ["O"] = "Energize Troyas\' Stave and find the Equinex Monolith.", + ["T"] = "The Stave of Equinex", + }, + [2880] = { + ["D"] = "Get this straight, $r - we are NOT part of the Alliance! The Wildhammers are independent, relying on deeds and actions to prove one\'s worth, rather than the blather of those who use jibber-jabber to bolster their do-nothing attitudes!$B$BIf you\'re looking for friends here, then prove your worth to us first! The foul trolls that choke the hillsides of the Hinterlands sometimes carry tribal necklaces. Bring five of them to me, and we\'ll mark it down as a step in the right direction for you.", + ["O"] = "Bring 5 Troll Tribal Necklaces to Fraggar Thundermantle in Aerie Peak.", + ["T"] = "Troll Necklace Bounty", + }, + [2881] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Troll Necklace Bounty", + }, + [2882] = { + ["D"] = "This map shows a stretch of beach with a southern face. Below the map are words, elegantly written...$B$B$BSouth of Wheedle$BSouth of home$BFind a mast and flag and bones$BDig you there, if you be bold$BDig and claim Cuergo\'s gold!$BA key you\'ll need and a key you\'ll see$BThe men you face take blood as fee.", + ["O"] = "Find Cuergo\'s gold!", + ["T"] = "Cuergo\'s Gold", + }, + [2902] = { + ["D"] = "Gnolls aren\'t the sharpest tools in the shed, but they will no doubt have some sort of documented strategy on their recent activity. If we were to find those plans, then we\'d have a clearer idea of what is making them so worked up.$B$BI want you to head back to the Woodpaw and find anything that might resemble their battle plans. They have to have something; their attacks have been too coordinated to be done without them. Find them, and return to me when you have them.", + ["O"] = "Find the gnoll battle plans somewhere in the gnoll camps to the south of Camp Mojache.", + ["T"] = "Woodpaw Investigation", + }, + [2903] = { + ["D"] = "With the battle plans of the gnolls discovered, all that now remains is to bring the plans back to Hadoken Swiftstrider in Camp Mojache. Perhaps he or someone there can make further sense of what the gnolls are up to.", + ["O"] = "Bring the Woodpaw Battle Plans to Hadoken Swiftstrider in Camp Mojache.", + ["T"] = "The Battle Plans", + }, + [2904] = { + ["D"] = " Wha.. What happened?$B$BThe last thing I remember is being captured by a group of dark iron dwarves, beaten to within an inch of my life and then thrown in here with these filthy troggs.$B$BGet me out of here, $N!$B$BHere\'s the plan: Lead me to the exit; if we make it out alive, you go to Booty Bay and let Scooty know that I went to Ratchet to warn Tinkerwiz of the dark iron\'s involvement in the making of that super rig.$B$BLet\'s get going!", + ["O"] = "Escort Kernobee to the Clockwerk Run exit and then report to Scooty in Booty Bay.", + ["T"] = "A Fine Mess", + }, + [2922] = { + ["D"] = "When our beloved city Gnomeregan fell, a rogue spark must have jolted my poor creation, Techbot. It once aided me and my associates with its countless gizmos and limitless store of information, but its positronic brain has polarized. Now it\'s negatronic... and Techbot\'s behaviors are reversed. It roams Gnomeregan in a frenzy!$B$BBut perhaps it can be salvaged. Perhaps, if you can retrieve Techbot\'s memory core and bring it to me, I can discover the cause of the polarization and fix my poor Techbot.$B$B", + ["O"] = "Bring Techbot\'s Memory Core to Tinkmaster Overspark in Ironforge.", + ["T"] = "Save Techbot\'s Brain!", + }, + [2923] = { + ["D"] = "Tinkmaster Overspark is very upset with the fate of his mechanical creation, Techbot. I remember Techbot as a kind and helpful tool for the gnomes, but Overspark tells me it\'s malfunctioned.$B$BVery sad. But with luck perhaps he can be fixed!$B$BSpeak with Tinkmaster Overspark, in Tinker Town in Ironforge. He would welcome your help.", + ["O"] = "Speak with Tinkmaster Overspark in Ironforge.", + ["T"] = "Tinkmaster Overspark", + }, + [2924] = { + ["D"] = "A nigh-universal mechanical component--the essential artificial--was of great use to the tinkers and smiths of Gnomeregan. But during the frantic exodus from our city, no one remembered to take any of these devices with them! And I need a large supply of them for work I will soon undertake.$B$BPlease, go into Gnomeregan and get me some essential artificials. You\'ll find them in the deeper areas of our city, held in containers called artificial extrapolators.$B$BThank you, $N, and please hurry!", + ["O"] = "Bring 12 Essential Artificials to Klockmort Spannerspan in Ironforge.", + ["T"] = "Essential Artificials", + }, + [2925] = { + ["D"] = "A gnome friend, Klockmort Spannerspan, sent word to me from Ironforge. He tells me he needs help on a dangerous, but essential, mission into Gnomeregan, the once great gnome city now contaminated and filled with mad gnomes and their devices.$B$BI must stay here, but my heart aches to help my friend. If you can go in my stead, then I would be much indebted to you.$B$BYou may find Klockmort in Tinkertown, in Ironforge.", + ["O"] = "Speak with Klockmort Spannerspan in Ironforge.", + ["T"] = "Klockmort\'s Essentials", + }, + [2926] = { + ["D"] = "Since the accident, all Gnoarn thinks about or talks about is cleansing Gnomeregan of the trogg infestation and finding a cure for the sickness that plagues it, $N.$B$BLuckily, Razzle and I are close to some kind of cure - either that or the recipe for a really powerful rum. We won\'t know until we test! Naturally, in order to test our theory, we\'re going to need a few things; namely, fallout from the irradiated troggs in Gnomeregan. Fill up this phial with the green glow and bring it back!", + ["O"] = "Use the Empty Leaden Collection Phial on Irradiated Invaders or Irradiated Pillagers to collect radioactive fallout. Once it is full, take it back to Ozzie Togglevolt in Kharanos.", + ["T"] = "Gnogaine", + }, + [2927] = { + ["D"] = "You don\'t think I was always bald, do you? No $g sir:ma\'am;! It was the radiation leak in Gnomeregan that caused this tragic hair loss. Before that day, I had the only gnomefro in all of Azeroth.$B$B$B$BDamn those damned dirty troggs - damn them all!!$B$BPerhaps it\'s not too late, $N. We may still be able to save it - the city I mean! Speak to Ozzie Togglevolt in Kharanos. He and his partner Razzle are working on a solution.", + ["O"] = "Speak with Ozzie Togglevolt in Kharanos.", + ["T"] = "The Day After", + }, + [2928] = { + ["D"] = "It\'s terrible, $N. We are not going to have enough parts to get our fleet of gyrodrillmatic excavationators to Dun Morogh.$B$BWhat we need are spare parts, $N. What better place to get the spare parts for our vehicles than Gnomeregan? I hear that bots and mechs roam around that place like cattle on an open range.$B$BWhat I need you to do is go to Gnomeregan and tear apart those robots. Bring me back their robot guts. Two dozen should be sufficient.", + ["O"] = "Bring twenty-four Robo-mechanical Guts to Shoni in Stormwind.", + ["T"] = "Gyrodrillmatic Excavationators", + }, + [2929] = { + ["D"] = "I trusted Thermaplugg, $r. Never did I expect that he would betray me and the entire gnomish people. And for what? Power? Wealth? All things that he would have had in time. Now we have been displaced from our home and that madman is in charge. The king of nothing....$B$BWe will retake Gnomeregan, $N. We will not stop until the city is back in our control. If you wish to join in our fight, a simple task I ask of you: Kill the betrayer. Destroy Mekgineer Thermaplugg.", + ["O"] = "Venture to Gnomeregan and kill Mekgineer Thermaplugg. Return to High Tinker Mekkatorque when the task is complete.", + ["T"] = "The Grand Betrayal", + }, + [2930] = { + ["D"] = "When we fled Gnomeregan, we left so much data behind! Vitally important data!$B$BI need the data on a prismatic punch card, from a Matrix Punchograph 3005-D high security terminal, deep in Gnomeregan. You must access the terminal, but to do that you first need clearance... and to get that you must access lower security terminals-- models -A, -B and -C. And to do THAT you need security punch cards, starting with white... and we left all the punch cards in the city.$B$BIt\'s a catastrophe! Can you help?", + ["O"] = "Bring a Prismatic Punch Card to Master Mechanic Castpipe in Ironforge.", + ["T"] = "Data Rescue", + }, + [2931] = { + ["D"] = "Master Mechanic Castpipe in Ironforge has need of adventurers! He\'s organizing bands to reenter Gnomeregan on a data retrieval mission of top security and importance.$B$BCastpipe might not be a member of the Enlightened Assembly of Arcanology, Alchemy and Engineering Sciences like I am, but he\'s still a smart gnome so if he thinks it\'s important, then by my calculations there\'s an eighty-four percent probability that it really is important!$B$BThose are good odds!", + ["O"] = "Speak with Master Mechanic Castpipe in Ironforge.", + ["T"] = "Castpipe\'s Task", + }, + [2932] = { + ["D"] = "The Witherbark trolls were once allies to the Horde, but they betrayed Thrall... and that must be punished!$B$BHere, take my pike and go to the Hinterlands, far to the north. You will find it northeast of Tarren Mill, a village held by our allies, the Forsaken.$B$BWhen you enter the Hinterlands, hunt Witherbark trolls. Gather their skulls and drive my pike into the ground at one of their smaller villages, Hiri\'watha or Zun\'watha.$B$BShow them their vile actions are of consequence!", + ["O"] = "Gather Witherbark Skulls and place on Nimboya\'s Pike. Place Nimboya\'s Laden Pike at one of the Witherbark Villages in the Hinterlands, then return to Nimboya in Stranglethorn.", + ["T"] = "Grim Message", + }, + [2933] = { + ["D"] = "These bottles hold a vile, green venom.$B$BConsidering the number of bottles in this village, the Witherbarks must deem it very important. Perhaps an apothecary in nearby Tarren Mill would like a sample.", + ["O"] = "Bring a Venom Bottle to an apothecary in Tarren Mill.", + ["T"] = "Venom Bottles", + }, + [2934] = { + ["D"] = "I must have a fresh sample of the venom you brought me. The spiders from which it was gathered must dwell in the Hinterlands -- hunt them until you find an undamaged venom sac and bring it to me. You will find many spiders near the troll city of Shadra\'Alor.$B$BDo not tarry, $N, for the venom sac must be fresh when you deliver it.", + ["O"] = "Bring an Undamaged Venom Sac to Apothecary Lydon in Tarren Mill.", + ["T"] = "Undamaged Venom Sac", + }, + [2935] = { + ["D"] = "The venom from the broodguards wasn\'t as potent as the venom you brought originally. It must have come from a different spider.$B$BI want a fresh sample of that venom. To find out where it came from, you must consult with a troll who knows the Witherbark well--Master Gadrin in Sen\'jin Village. Travel to Durotar and speak with Gadrin. With luck, he\'ll know where the Witherbarks get their venom.", + ["O"] = "Speak with Master Gadrin in Sen\'jin Village.", + ["T"] = "Consult Master Gadrin", + }, + [2936] = { + ["D"] = "The Witherbarks worship a spider god, and from her they collect their most potent venom. So if you want the venom, then you must summon their god!$B$BTo do that, you must know her true name, and that name is on a tablet buried in Tanaris, in the troll city of Zul\'Farrak, in a tomb guarded by Theka the Martyr.$B$BDefeat Theka and find and read his tablet to discover the spider god\'s name. When you know it, return to me.", + ["O"] = "Read from the Tablet of Theka to learn the name of the Witherbark spider god, then return to Master Gadrin.", + ["T"] = "The Spider God", + }, + [2937] = { + ["D"] = "Take his parchment, and read it at the altar of Shadra\'Alor, deep within the witherbark realm in the Hinterlands. This will summon Shadra the spider god.", + ["O"] = "Defeat Shadra at the altar of Shadra\'Alor, then bring her venom to Apothecary Lydon in Tarren Mill.", + ["T"] = "Summoning Shadra", + }, + [2938] = { + ["D"] = "The venom you gathered from the Witherbark\'s spider god is quite a find! I\'ve been able to kill nearly two dozen rabbits with just a drop of the stuff. Granted, some of those rabbits were very young and small enough to fit in the palm of one\'s hand so I\'m certain their resistance to toxins was low, but it can\'t be denied that this poison is powerful!$B$BI\'d like a sample sent to my superior, Apothecary Faranell in the Apothecarium of the Undercity. I am positive he would want to test this himself.", + ["O"] = "Bring Faranell\'s Parcel to Master Apothecary Faranell in the Undercity.", + ["T"] = "Venom to the Undercity", + }, + [2939] = { + ["D"] = "While the ruins of Feralas can be quite dangerous, they have much to tell of what has happened here.$B$BSearching through the rubble to the south a few days ago, I discovered what appears to be a normal stave. However, I just can\'t shake the feeling that there is something more to it. Angelas and I have been poring over our books here, but we can\'t find a thing about it.$B$BI have a colleague in Darnassus that may be able to tell us what this is, $N. Why don\'t you go talk to her and see if she can help us?", + ["O"] = "Talk to Daryn Lightwind in Rut\'theran Village.", + ["T"] = "In Search of Knowledge", + }, + [2940] = { + ["D"] = "This book looks as if no one has opened it for quite a long time. Its covers are quite worn, and its pages yellowed, but after examining it, you notice that it might be just what Troyas is looking for.$B$BYou pick it up, but realize you should probably ask before borrowing it.", + ["O"] = "Ask Daryn Lightwind if you may borrow her book.", + ["T"] = "Feralas: A History", + }, + [2941] = { + ["D"] = "I have studied many subjects in my time, and my latest fascination is with the snapjaw that occupy the beach in the Hinterlands. There\'s one in particular I\'d like to see, a giant snapjaw named Gammerita. I\'d like to go myself, but my research keeps me here. I think a picture of her would be the next best thing.$B$BTake this letter to Curgle Cranklehop in Tanaris. She has created an invention for me that can capture a picture. She called it a \"snapshot,\" I think...", + ["O"] = "Take the letter to Curgle Cranklehop in Tanaris.", + ["T"] = "The Borrower", + }, + [2942] = { + ["D"] = "The moment the artifact is removed from the Monolith, you feel the energy in the Stave of Equinex begin to fade.", + ["O"] = "Return the Sparkling Stone and the Stave of Equinex to Troyas Moonbreeze in Feathermoon Stronghold. ", + ["T"] = "The Morrow Stone", + }, + [2943] = { + ["D"] = "Here it is, $N. Please, take care of my book.$B$BNow, hurry along. I\'m sure Troyas is eager for your return.", + ["O"] = "Deliver the book to Troyas Moonbreeze in Feathermoon Stronghold.", + ["T"] = "Return to Troyas", + }, + [2944] = { + ["D"] = "Have the first look at my new invention, $N. All you need to do is target whatever it is you\'d like to take a picture of, and push the button.$B$BWhat was that creature from the Hinterlands that you mentioned? Gammerita? Well, good luck finding her. I\'m sure Daryn will be quite pleased with the snapshot you return to her.$B$BIn any case, here\'s the Super Snapper. Have fun!", + ["O"] = "Use the Super Snapper FX to take a snapshot of Gammerita, then return to Daryn Lightwind in Rut\'theran Village.", + ["T"] = "The Super Snapper FX", + }, + [2945] = { + ["D"] = "You have uncovered what appears to be a ring from the corpse of one of the Dark Iron dwarves. It is difficult to tell what kind of ring it is, however; dirt and hardened residue cake the item completely, making wearing it impossible. You think you can make out the slight luster of precious metal and maybe even the glint of a gem under the residue.$B$BIf you are going to make use of this ring, you are going to need to find something to get the hardened residue off of it.", + ["O"] = "Figure out a way to remove the grime from the Grime-Encrusted Ring.", + ["T"] = "Grime-Encrusted Ring", + }, + [2946] = { + ["D"] = "We want you to take the miniature discs you found to the sealed gates of Uldum. We... we aren\'t sure what will happen when you do this.$B$BThis sounds risky, sure, we acknowledge that. It might, however, do nothing. You might need to use the discs on something. Perhaps the doors unlock when you have the discs in your possession. Be open to try anything, and be ready for anything to happen.$B$BWhen you\'ve found out what happens, return to Ironforge. We\'ll have a lot to analyze when you\'re done!", + ["O"] = "Bring the miniature platinum discs to the gates of Uldum in Tanaris and look for clues as to the connection between the two.", + ["T"] = "Seeing What Happens", + }, + [2947] = { + ["D"] = "Opening the box produced by the Sparklematic 5200 reveals what you had suspected - a shiny ring! Wearing the ring, you feel magic power surge through you body.$B$BInside the band is a small but nonetheless discernable imprint of the seal of Ironforge. Next to that, three small initials are engraved: \"TdK\". This may signify either the initials of the previous owner, or perhaps the initials of the ring\'s crafter. Keep the ring... or return it to this person. Decisions, decisions...", + ["O"] = "You may either keep the ring, or you may find the person responsible for the imprint and engravings on the inside of the band.", + ["T"] = "Return of the Ring", + }, + [2948] = { + ["D"] = "Listen $n, that ring is yours, sure... but I can make you a better one! That design, like I said, is really simple. I am a lot more skilled now, and for the mere fee of thirty silver coins I\'ll spruce it up for you! Well, a little more than thirty, actually...$B$BI\'m in a tight spot right now; all my material stock is all dried up. If you bring me a bar of silver and a moss agate, I\'ll add a silver and agate lattice to the ring that will give it a little more pizzazz!$B$BTrust me!", + ["O"] = "Bring the Brilliant Gold Ring, a Silver Bar, a Moss Agate, and 30 silver coins to Talvash del Kissel in Ironforge.", + ["T"] = "Gnome Improvement", + }, + [2949] = { + ["D"] = "Opening the box produced by the Sparklematic 5200 reveals a shiny ring! Donning the ring, you feel magic power surge through your body.$B$BInside the band is a small but nonetheless discernable imprint of the seal of Orgrimmar. Engraved letters are next to it, but only the first three stand out even after cleaning: \"NOG...\"$B$BThis may signify either the initials of the previous owner, or perhaps the initials of the ring\'s crafter. Keep the ring... or find \"NOG\" - decisions, decisions...", + ["O"] = "You may either keep the ring, or you may find the person responsible for the imprint and engravings on the inside of the band.", + ["T"] = "Return of the Ring", + }, + [2950] = { + ["D"] = "No, no, no - I\'m not all of the sudden saying that the ring is mine. I normally don\'t do this, but your information about the Dark Irons was very useful. I\'ll improve your ring for you, better than whomever made this simple little thing could have ever done. Probably some gnome...$B$BIf you bring me a bar of silver, a moss agate, and thirty silver coins for my trouble, I\'ll add a silver and agate lattice to the ring that will strengthen the magic inside of it. Interested?", + ["O"] = "Bring the Brilliant Gold Ring, a Silver Bar, a Moss Agate, and 30 silver coins to Nogg in Orgrimmar.", + ["T"] = "Nogg\'s Ring Redo", + }, + [2951] = { + ["D"] = "This contraption stands out amongst the gnomes holding out against the madness outside the room. A small plaque on the device reads \"The Sparklematic 5200\", followed by some text:$B$B\"Grime and residue ruining your sparklies? The Sparklematic 5200 puts the shine back in shine-tastic! Insert the item you wish to clean and deposit three silver coins in the coin slot. Give the Sparklematic 5200 a moment for operation, and voila! Your valuables will emerge clean and shiny!\"", + ["O"] = "Insert a Grime-Encrusted Item into the Sparklematic 5200, and be sure to have three silver coins to start the machine.", + ["T"] = "The Sparklematic 5200!", + }, + [2952] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Sparklematic 5200!", + }, + [2953] = { + ["D"] = "", + ["O"] = "", + ["T"] = "More Sparklematic Action", + }, + [2954] = { + ["D"] = "\"Salutations - I am a guardian of entry. Unless you have the Plates of Uldum already integrated with your disc set, I will not allow for entry into the Uldum compound.\"$B$BThe appearance of the Stone Watcher of Norgannon must be the reaction that was hoped for in sending you out to the Tanaris desert with the platinum discs. As instructed, you will need to find out what the story behind the Stone Watcher is before continuing on.", + ["O"] = "Learn the purpose of the Stone Watcher of Norgannon, and then interact with the Uldum Pedestal in the Tanaris desert.", + ["T"] = "The Stone Watcher", + }, + [2962] = { + ["D"] = "Not only was your sample insufficient in quantity, it was also impure.$B$BWhat we require is more green glow. The troggs are obviously not irradiated sufficiently to fulfill our needs. You will have to go into Gnomeregan and bring back some radioactive fallout, straight from the tap. I am speaking of the irradiated slimes, lurkers and horrors. Be warned, the containment of this type of fallout is difficult. You may need to make several attempts with the phial until a suitable sampling is recovered.", + ["O"] = "Travel to Gnomeregan and bring back High Potency Radioactive Fallout. Be warned, the fallout is unstable and will collapse rather quickly.$B$BOzzie will also require your Heavy Leaden Collection Phial when the task is complete.", + ["T"] = "The Only Cure is More Green Glow", + }, + [2963] = { + ["D"] = "Greetings once again, $n! Your discovery inside Uldaman has set the Explorers\' League abuzz with excitement. The League has been working to unlock the secrets of the miniature platinum discs you found. Your fortuitous arrival here in the Hall allows me to share with you that we are quite possibly on to something!$B$BHistorian Karnik has uncovered some important clues as to the true origins of the Valley of the Watchers in the Tanaris desert. He would like to speak with you as soon as possible!", + ["O"] = "Speak with Historian Karnik in the Hall of Explorers within Ironforge.", + ["T"] = "Portents of Uldum", + }, + [2964] = { + ["D"] = "Well $n... we seem to be at a temporary dead end here. We know what we need - the Plates of Uldum - but we have no idea where they might be. We\'ll need to do quite a bit of research on this to come up with a solid plan of attack. I have a couple ideas where to start looking; I have high hopes that soon, we\'ll be asking you to head out and recover them.$B$BThe High Explorer needs to be informed on this, $n; no doubt, he also wants to thank you personally for once again aiding the League.", + ["O"] = "Speak with High Explorer Magellas in Ironforge.", + ["T"] = "A Future Task", + }, + [2965] = { + ["D"] = "Ah, $n, it is fortuitous that you have come to me again. Your revelations at the Uldaman dig site have certainly given us sages much discuss. I was doing just that with one of the druids, Nara Wildmane, when it dawned on me that her past adventuring experiences may have some great importance as to the next step we need to take.$B$BI would like for you to speak with her concerning her travels to the Valley of the Watchers in the Tanaris desert. She waits for you on the Elder Rise.", + ["O"] = "Speak with Nara Wildmane on the Elder Rise in Thunder Bluff.", + ["T"] = "Portents of Uldum", + }, + [2966] = { + ["D"] = "Sage Truthseeker and I would like you to take the miniature discs you found to the sealed gates of Uldum. We... we aren\'t sure what will happen when you do this.$B$BThis sounds risky, sure, we acknowledge that. It might, however, do nothing. You might need to use the discs on something. Perhaps the doors unlock when you have the discs in your possession. Be open to try anything, and be ready for anything to happen.$B$BLearn what you can, then return to me. We will have much to discuss.", + ["O"] = "Bring the miniature platinum discs to the gates of Uldum in Tanaris and look for clues as to the connection between the two.", + ["T"] = "Seeing What Happens", + }, + [2967] = { + ["D"] = "You access the pedestal again; the platinum discs suddenly appear once more in your backpack.$B$BWith the knowledge of the stone watcher learned and the discs returned to your possession, the time has come to return to Thunder Bluff and inform the Nara Wildmane of your discovery.", + ["O"] = "Speak with Nara Wildmane in Thunder Bluff.", + ["T"] = "Return to Thunder Bluff", + }, + [2968] = { + ["D"] = "Well $n... we seem to be at an unfortunate impasse. We know what we need - the Plates of Uldum - but we have no idea where they might be. We will research this, and then devise a solid plan of attack. I have a couple ideas where to start looking; I have high hopes that soon, we\'ll be asking you to rejoin our efforts to discover the truth.$B$BSage Truthseeker needs to be informed on this, $n; no doubt, he also wants to thank you personally for once again heeding the call.", + ["O"] = "Speak with Sage Truthseeker in Thunder Bluff.", + ["T"] = "A Future Task", + }, + [2969] = { + ["D"] = "The filthy Grimtotem clan are capturing faerie dragons, $N. Jer\'kai and I have no idea what they plan on doing with them, but they\'re obviously up to no good.$B$BWe\'re not powerful enough to fight our way into the camp and free the captured dragons, but perhaps with your help...$B$BIf you\'re willing, and you have some strong friends, release the creatures from their cage with this key and make sure they escape with their lives. I\'ll be by your side the entire time. Jer\'kai will remain here.", + ["O"] = "Using the Bamboo Cage Key, free the Sprite Darters from the pen in the Grimtotem camp. At least 6 Sprite Darters and Kindal Moonweaver must survive.$B$BYou have 6 minutes before Kindal decides it is time to retreat and you fail the quest.", + ["T"] = "Freedom for All Creatures", + }, + [2970] = { + ["D"] = "As she\'s already told you, Kindal and I will now take the fight to the Grimtotem. Together, we should still be able to pick off some of the tauren without much threat to ourselves, but we\'d love some help if you\'re willing and able.$B$BYou\'ve seen the camp below us, but there are more to the east. Using your own tactics, deal as much damage to the tauren as you can. We can all meet back here after they\'ve felt the sting of Kindal\'s arrows and your own weapons.", + ["O"] = "Kill 12 Grimtotem Naturalists, 10 Grimtotem Raiders, and 6 Grimtotem Shamans before returning to Jer\'kai Moonweaver in Feralas.", + ["T"] = "Doling Justice", + }, + [2971] = { + ["D"] = "[PH] Description", + ["O"] = "[PH] Log Description", + ["T"] = "", + }, + [2972] = { + ["D"] = "Out here in the wilderness, Kindal and I have meager means to reward your help, but we don\'t want you to feel unappreciated. Take my signet ring. If you ever find yourself in the boughs of Teldrassil, go to the Temple of the Moon in the heart of Darnassus. There you will find my High Priestess Tyrande Whisperwind. The ring will let her know that we are well and give credit to your story.$B$BWe both thank you, $N.", + ["O"] = "Take Jer\'kai\'s Signet Ring to High Priestess Tyrande Whisperwind in Darnassus.", + ["T"] = "Doling Justice", + }, + [2973] = { + ["D"] = "Well met, $c. I\'ve traveled with my companions down to the Feralas on a mission for our Orgrimmar masters.$B$BMy life-mate Korrin finds great pleasure in new clothing, so I aim to make her a new cloak adorned with the gossamer wings of faerie dragons. Would you be able to help me? Sprite darters with gorgeous wings I want are west of Camp Mojache.", + ["O"] = "Bring 10 Iridescent Sprite Darter Wings to Krueg Skullsplitter in Camp Mojache.", + ["T"] = "A New Cloak\'s Sheen", + }, + [2974] = { + ["D"] = "What!? You came across tauren in the area? You\'re joking! What did they look like!?$B$BThe Grimtotem clan! You found some of them? Belgrom, one of our masters, has an interest in their kind... he\'s even put a bounty on them.$B$BYou have to go back, $c. Go back and bring me their horns... piles of them if you can. The Grimtotem are not to be trifled with or underestimated. Go back and slay them; let the rivers in Feralas run red with their dark blood.", + ["O"] = "Bring 20 Grimtotem Horns to Krueg Skullsplitter in Camp Mojache.", + ["T"] = "A Grim Discovery", + }, + [2975] = { + ["D"] = "The effects of the Gordunni Ogre tribe can hardly go unnoticed in this area. Look around, $N; their very presence scars this land. We must push them back before they expand even further into Feralas.$B$BFollow the river north, and you will find their outpost. Decrease their numbers, $N. We must show them that their kind is not wanted here.", + ["O"] = "Rok Orhan in Camp Mojache wants you to kill 10 Gordunni Ogres, 10 Gordunni Ogre-Magi, and 5 Gordunni Brutes.", + ["T"] = "The Ogres of Feralas", + }, + [2976] = { + ["D"] = "What?!$B$BAh, so I did mention a bounty, didn\'t I? Well, that\'ll teach me to open my mouth, won\'t it?$B$BYou did the work, so I suppose it is only right you reap the greatest reward from it. Take the horns, I\'ll have them put in a crate for you. Find Belgrom Rockmaul in the Valley of Honor, he\'ll want to know what you saw and he\'ll reward you for your hard work.$B$BBe well, $c, and thank you again for everything you\'ve done.", + ["O"] = "Bring the Crate of Grimtotem Horns to Belgrom Rockmaul in Orgrimmar.", + ["T"] = "A Grim Discovery", + }, + [2977] = { + ["D"] = "You access the pedestal again; the platinum discs suddenly appear once more in your backpack.$B$BWith the knowledge of the stone watcher learned and the discs returned to your possession, the time has come to return to Ironforge and inform the Explorers\' League of your discovery.", + ["O"] = "Speak with Historian Karnik in Ironforge.", + ["T"] = "Return to Ironforge", + }, + [2978] = { + ["D"] = "Picking up the soiled scroll, you notice that it seems to be depicting some sort of meeting or ceremony. Rok Orhan would be interested in this scroll, and what it might mean to the Gordunni.", + ["O"] = "Bring the Gordunni Scroll to Rok Orhan in Camp Mojache.", + ["T"] = "The Gordunni Scroll", + }, + [2979] = { + ["D"] = "These seem to be plans for some sort of dark ceremony, $N. From what I can make out, this ritual is conducted by the Gordunni mage-lords.$B$BFind one of these mage-lords, and from him, gather an orb.$B$BThe orb of a mage contains great power, and will help us discover more about this ceremony and the magic that the Gordunni wield.", + ["O"] = "Rok Orhan in Camp Mojache wants you to find a Gordunni Orb.", + ["T"] = "Dark Ceremony", + }, + [2980] = { + ["D"] = "Now that you have proven that you are a true fighter, I trust that you possess the courage to continue with the task at hand.$B$BTravel to the High Wilderness, southwest of here. There lie some abandoned and destroyed structures, on land that once belonged to the night elves. Look for these ruins, and when you see the withered trees and desecrated terrain, you will find the Gordunni. Push them back.$B$BThese ogres are much stronger than the ones you faced previously, $N. Be aware.", + ["O"] = "Rok Orhan in Camp Mojache wants you to kill 10 Gordunni Shaman, 10 Gordunni Warlocks, and 5 Gordunni Maulers.", + ["T"] = "The Ogres of Feralas", + }, + [2981] = { + ["D"] = "Feralas is an ideal location for an accomplished $c to prove $Ghimself:herself;. A tribe of ogres called the Gordunni are the dominant military force there, and their numbers are growing. They must be stopped before they threaten our presence in Feralas.$B$BA warrior I know of named Rok Orhan resides at Camp Mojache in Feralas; go to her. She will tell you more of the situation when you arrive.", + ["O"] = "Belgrom Rockmaul wants you to speak with Rok Orhan in Camp Mojache.", + ["T"] = "A Threat in Feralas", + }, + [2982] = { + ["D"] = "Although it is dangerous, Troyas and I have been investigating the ruins that cover the forests of Feralas.$B$BLately, though, Troyas has been going on his own to the High Wilderness, and I really worry about him. The Gordunni Ogres have taken over that area, and they don\'t take kindly to anyone that enters their territory.$B$BI was hoping you might be willing to travel to the ruins to the southeast and clear out some of the ogres. Make it a little safer for my Troyas, and I will be extremely grateful.", + ["O"] = "Angelas Moonbreeze wants you to kill 8 Gordunni Warlocks, 8 Gordunni Shaman, and 8 Gordunni Brutes.", + ["T"] = "The High Wilderness", + }, + [2983] = { + ["D"] = "It\'s been some time since you were tested last, $N. You\'ve been patient thus far in your studies, but it\'s time for you to learn about greater powers... it\'s time you learn real power. The element of fire is yours if you\'re prepared to pay for it.$B$BSeek out Kranal Fiss in the Barrens. He lives in a small dwelling north of the Crossroads, but be mindful, if you\'ve reached the blasted night elf lands, you\'ve gone way too far.", + ["O"] = "Find Kranal Fiss in the Barrens.", + ["T"] = "Call of Fire", + }, + [2984] = { + ["D"] = "Long has it been since you were last tested, $N. You have shown patience thus far in your studies, but the time has come for you to learn more. The time has come for you to learn about destruction... and chaos. The element of fire is yours for the understanding, if you\'re prepared to pay for it.$B$BSeek out Kranal Fiss in the Barrens. He lives in a small dwelling north of the Crossroads, but be mindful, if you\'ve reached the night elf lands, you\'ve gone too far.", + ["O"] = "Find Kranal Fiss in the Barrens.", + ["T"] = "Call of Fire", + }, + [2985] = { + ["D"] = "You look ready for your next test, $N. You\'ve been patient in your studies, but the time has come for you to learn more. The time has come for you to learn about the purity of water.$B$BSeek out Islen Waterseer in the Barrens. She is along the eastern coast, south of the Southfury River and Ratchet. You will find her there at her fishing hut. Good luck to you, $N.", + ["O"] = "Find Islen Waterseer in the Barrens.", + ["T"] = "Call of Water", + }, + [2986] = { + ["D"] = "Long has it been since you were last tested, $N. You have shown patience thus far in your studies, but the time has come for you to learn more. The time has come for you to learn about the purity of water.$B$BSeek out Islen Waterseer in the Barrens. She is along the eastern coast, south of the Southfury River and Ratchet. You will find her there at her fishing hut. Good luck to you, $N.", + ["O"] = "Find Islen Waterseer in the Barrens.", + ["T"] = "Call of Water", + }, + [2987] = { + ["D"] = "I just arrived here in Feralas, and I\'ve heard that the Gordunni Ogres that inhabit the wilds here have some interesting minerals. Who knows what they are up to, but they sure are protective of that stuff! They don\'t leave it just lying around; no, they bury it to protect folks like me from getting their hands on it.$B$BIf you\'d be willing, I\'ll give you my shovel. Go to the Gordunni Outpost north of here and dig me up some Gordunni cobalt. Look for the blue glow, then start digging!", + ["O"] = "Orwin Gizzmick in Camp Mojache wants 12 samples of Gordunni Cobalt.", + ["T"] = "Gordunni Cobalt", + }, + [2988] = { + ["D"] = "The son of our mightiest gryphon is gone! Swiftwing\'s heir, Sharpbeak, was lost while hunting with his parents a few days ago, and we believe it was the trolls who took him.$B$BYou must aid us! Search the cages in the two Witherbark troll villages to see if Sharpbeak is there.", + ["O"] = "Check the cages at the two Witherbark villages, then return to Gryphon Master Talonaxe.", + ["T"] = "Witherbark Cages", + }, + [2989] = { + ["D"] = "Sharpbeak was not with the Witherbark trolls. Perhaps the Vilebranch trolls took him. Go to the Altar of Zul on the western edge of Vilebranch territory and search for the gryphon child. ", + ["O"] = "Check the top of the Altar of Zul, then return to Gryphon Master Talonaxe.", + ["T"] = "The Altar of Zul", + }, + [2990] = { + ["D"] = "Take this feather to Thadius Grimshade, the diviner. He left Aerie Peak years ago to pursue darker knowledge, but in his heart he is still a Wildhammer!$B$BAnd perhaps his talents can help us find Sharpbeak.$B$BThis feather was taken from the nest where the gryphon child sleeps. If you give it to Thadius then, with luck, he can use his divining magics to find Sharpbeak.$B$BGood luck, $N. You will find Thadius in the Blasted Lands, in the mage tower of Nethergarde Keep.", + ["O"] = "Bring Sharpbeak\'s Feather to Thadius Grimshade in the Blasted Lands.", + ["T"] = "Thadius Grimshade", + }, + [2991] = { + ["D"] = "I\'ll find out where your gryphon is, but first you have to do something for me. There\'s a troll in Zul\'Farrak, Nekrum Gutchewer, who possesses a medallion I would very much like to study. Bring me that Medallion and I\'ll use my powers to find Sharpbeak.$B$BZul\'Farrak is across the ocean to the west, in the desert of Tanaris.", + ["O"] = "Bring Nekrum\'s Medallion to Thadius Grimshade in the Blasted Lands.", + ["T"] = "Nekrum\'s Medallion", + }, + [2992] = { + ["D"] = "Give me room while I perform a ritual of divination. I will find the connection between the feather you brought me and its owner, and follow that connection to Sharpbeak himself.$B$BThat is... I will if all goes according to plan. If it does not, then... you better close your eyes.", + ["O"] = "Wait until Grimshade performs the ritual of divination.", + ["T"] = "The Divination", + }, + [2993] = { + ["D"] = "Sharpbeak is held in a cage, high on a cliff at the top of Jintha\'Alor in the Hinterlands. The key to this cage is possessed by the high priestess of the Vilebranch trolls, Vile Priestess Hexx.$B$BThere. I have done my part. I bid you fortune on your quest, $N.", + ["O"] = "Speak with Gryphon Master Talonaxe.", + ["T"] = "Return to the Hinterlands", + }, + [2994] = { + ["D"] = "We must save Sharpbeak!$B$BFight your way to the top of Jintha\'Alor in the heart of Vilebranch territory, gain the key to Sharpbeak\'s cage from the vile Priestess Hexx, and then find and save Sharpbeak!", + ["O"] = "Fight to the top of Jintha\'Alor, kill Vile Priestess Hexx for the key to Sharpbeak\'s cage, and save Sharpbeak.", + ["T"] = "Saving Sharpbeak", + }, + [2995] = { + ["D"] = "The Quel\'Danil Lodge is a center of communication for the high elves of the Hinterlands. Their ambassadors are working to establish relationships with other races, with whom they share their knowledge of the Witherbark trolls that inhabit the area in the southern Hinterlands. All of the documents regarding the communications are kept at the lodge.$B$BWe don\'t need the Highvale building alliances with others, $N.$B$BDestroy the Highvale documents. We need to burn their lines of communication... literally.", + ["O"] = "Oran Snakewrithe in Undercity wants you to travel to the Hinterlands and burn the Highvale Records, Highvale Report, and Highvale Notes.", + ["T"] = "Lines of Communication", + }, + [2996] = { + ["D"] = "I have taught you skills in the past, but the time has come for another to teach you. He is in Ratchet, and his name is Strahad. He is human, but do not let that fool you into thinking he is weak. He is powerful even though he may be small. He can teach you about more powerful summonings--I feel you are ready. Go to him now. He is in Ratchet... above the port town next to his tower.", + ["O"] = "Speak to Strahad Farsan in Ratchet.", + ["T"] = "Seeking Strahad", + }, + [2997] = { + ["D"] = "Hello, $N. I know you\'re busy helping out the people of Dun Morogh, but when you have the time, you should make your way up to Ironforge to speak to one of our most respected ilk: Tiza Battleforge. She\'s the one the younger paladins go to when it\'s time they learn more about the Light and what\'s expected of ya.$B$BYou can find her upstairs in the Hall of Mysteries. If you\'ve never been there, it\'s in the Mystic Ward. Good luck to ya, $N.", + ["O"] = "Speak to Tiza Battleforge in Ironforge.", + ["T"] = "Tome of Divinity", + }, + [2998] = { + ["D"] = "Greetings, $Gbrother:sister;. Duthorian Rall, one of our most influential paladins, was speaking about you recently. I overheard him talking about how it was time you be put to the test some... along with some very complimentary things about how well you\'ve performed thus far.$B$BIf I were you, I\'d head to Stormwind and speak to him when you have time. I\'m sure he\'s in the Cathedral of Light--that\'s where he spends most of his time.", + ["O"] = "Speak to Duthorian Rall in Stormwind.", + ["T"] = "Tome of Divinity", + }, + [2999] = { + ["D"] = "Hello, $N. I know you\'re busy helping out the people of Dun Morogh, but when you have the time, you should go upstairs and speak to one of our most respected ilk: Tiza Battleforge. She\'s the one the younger paladins go to when it\'s time they learn more about the Light and what\'s expected of ya.", + ["O"] = "Speak to Tiza Battleforge in Ironforge", + ["T"] = "Tome of Divinity", + }, + [3000] = { + ["D"] = "Hello, $N. I know you\'re busy helping out the people of Azeroth, but when you have the time, you should return to Ironforge and speak to one of the most respected paladins of your home: Tiza Battleforge. She\'s the one the younger dwarven paladins go to when it is time they learn more about the Light and what\'s expected of all of us.$B$BYou can find her upstairs in the Hall of Mysteries which is located in the Mystic Ward.", + ["O"] = "Speak to Tiza Battleforge in Ironforge.", + ["T"] = "Tome of Divinity", + }, + [3001] = { + ["D"] = "I have taught you skills in the past, but the time has come for another to teach you. He is in Ratchet, and his name is Strahad. He is human, but do not let that fool you into thinking he is weak, nor is he your enemy... at least for now. He is powerful and should be respected. He can teach you about greater summonings, summonings I feel you are prepared for. Go to him now.$B$BYou can find him in Ratchet... above the port town next to the tower there.", + ["O"] = "Find Strahad Farsan in Ratchet.", + ["T"] = "Seeking Strahad", + }, + [3002] = { + ["D"] = "Although I know my enemy well, I am a warrior, $N. I cannot begin to tell you what this orb is capable of.$B$BI know of a mage in Orgrimmar that will be able to tell us more about the orb. Take it to him. ", + ["O"] = "Bring the Gordunni Orb to Uthel\'nay in the Darkbriar Lodge in Orgrimmar.", + ["T"] = "The Gordunni Orb", + }, + [3022] = { + ["D"] = "$N, I can see you yearn to be dedicated to my worthwhile cause. Yes, of course, you can do something for me!$B$BTake this crate of eggs to Erelas Ambersky. He is a druid that cares for these eggs, helping them to hatch and then training the young hippogryphs. You will find him in Teldrassil, in a small village to the south called Rut\'theran.", + ["O"] = "Bring the Carefully-packed Crate to Erelas Ambersky in Rut\'theran Village.", + ["T"] = "Handle With Care", + }, + [3042] = { + ["D"] = "The Sandfury trolls of Zul\'Farrak make a tempering agent from sandstones, and I can use that to temper the goods I craft, yes I can! It is highly prized by connoisseurs, so if you bring me a good supply of the temper, then I\'ll reward you well.$B$BZul\'Farrak is northwest of Gadgetzan. Good luck.", + ["O"] = "Bring 20 Vials of Troll Temper to Trenton Lighthammer in Gadgetzan.", + ["T"] = "Troll Temper", + }, + [3062] = { + ["D"] = "Edana Hatetalon is the queen of the Northspring harpies that reside in the ruins to the west. She is pure evil; I have heard that her heart is one of crystal. She is void of any emotion aside from the hate she feels towards all others. You must face Edana and bring me back her dark heart.$B$BI have heard of a horn that harpies carry -- blowing it by the Hatetalon stones, in the northern part of the ruins, will summon the queen.$B$BImagine her surprise when it is not her kin calling her, but her death.", + ["O"] = "Talo Thornhoof in Camp Mojache wants Edana Hatetalon\'s Dark Heart.", + ["T"] = "Dark Heart", + }, + [3063] = { + ["D"] = "In my day, I was a seasoned hunter. There wasn\'t any creature around that I feared. Until...$B$BI was out in the forest, sharpening my blade after a tough battle, when I was ambushed. Harpies surrounded me, and I barely managed to drag myself to safety.$B$BEven now, I can still hear their cries echoing...$B$BI was never the same after that. But the hate boils inside of me -- I must get even, after all these years.$B$BThe Northspring harpies can be found to the west of here. $N, get my revenge. ", + ["O"] = "Talo Thornhoof wants you to kill 4 Northspring Harpies, 4 Northspring Roguefeathers, 4 Northspring Windcallers, and 4 Northspring Slayers.", + ["T"] = "Vengeance on the Northspring", + }, + [3064] = { + ["D"] = "I need pirate hats for my shop. Get me lots!", + ["O"] = "Bring 20 Untorn Pirate Hats to Yorba Screwspigot.", + ["T"] = " Pirate Hats", + }, + [3065] = { + ["D"] = "Ah, while you were gone a parchment came for you, $N.$B$BRead it when you have time. If I\'m not mistaken, it came from the warrior trainer Frang. He would have words with you when you\'re ready. You\'ll find him outside the Den, taking cover in the shade.", + ["O"] = "Read the Simple Tablet and speak to Frang in the Valley of Trials.", + ["T"] = "Simple Tablet", + }, + [3082] = { + ["D"] = "Ah, while you were gone a tablet came for you, $N.$B$BRead it when you have time. If I\'m not mistaken, it came from the hunter trainer Jen\'shan. She would have words with you when you\'re ready.", + ["O"] = "Speak to Jen\'shan in the Valley of Trials.", + ["T"] = "Etched Tablet", + }, + [3083] = { + ["D"] = "Ah, while you were gone a tablet came for you, $N.$B$BRead it when you have time. If I\'m not mistaken, it came from the rogue trainer Rwag. He would have words with you when you\'re ready.", + ["O"] = "Read the Encrypted Tablet and speak to Rwag in the Valley of Trials.", + ["T"] = "Encrypted Tablet", + }, + [3084] = { + ["D"] = "Ah, while you were gone a tablet came for you, $N.$B$BRead it when you have time. If I\'m not mistaken, it came from the shaman trainer Shikrik. She would have words with you when you\'re ready.", + ["O"] = "Speak to Shikrik in the Valley of Trials.", + ["T"] = "Rune-Inscribed Tablet", + }, + [3085] = { + ["D"] = "Ah, while you were gone a tablet came for you, $N.$B$BRead it when you have time. If I\'m not mistaken, it came from the priest trainer Ken\'jai. He would have words with you when you\'re ready.", + ["O"] = "Read the Hallowed Tablet and speak to Ken\'jai outside the Den in the Valley of Trials.", + ["T"] = "Hallowed Tablet", + }, + [3086] = { + ["D"] = "Ah, while you were gone a tablet came for you, $N.$B$BRead it when you have time. If I\'m not mistaken, it came from the mage trainer Mai\'ah. She would have words with you when you\'re ready.", + ["O"] = "Read the Glyphic Tablet and speak with Mai\'ah near the entrance to the Den in the Valley of Trials.", + ["T"] = "Glyphic Tablet", + }, + [3087] = { + ["D"] = "Ah, while you were gone a parchment came for you, $N.$B$BRead it when you have time. If I\'m not mistaken, it came from the hunter trainer Jen\'shan. She would have words with you when you\'re ready.", + ["O"] = "Read the Etched Parchment and speak to Jen\'shan in the Valley of Trials.", + ["T"] = "Etched Parchment", + }, + [3088] = { + ["D"] = "Ah, while you were gone a parchment came for you, $N.$B$BRead it when you have time. If I\'m not mistaken, it came from the rogue trainer Rwag. He would have words with you when you\'re ready.", + ["O"] = "Read the Encrypted Parchment and speak to Rwag in the Valley of Trials.", + ["T"] = "Encrypted Parchment", + }, + [3089] = { + ["D"] = "Ah, while you were gone a parchment came for you, $N.$B$BRead it when you have time. If I\'m not mistaken, it came from the shaman trainer Shikrik. She would have words with you when you\'re ready.", + ["O"] = "Read the Rune-Inscribed Parchment and speak to Shikrik in the Valley of Trials.", + ["T"] = "Rune-Inscribed Parchment", + }, + [3090] = { + ["D"] = "Ah, while you were gone a parchment came for you, $N.$B$BI usually avoid dealing with warlocks if I can help it, but I think you should read it when you have time. If I\'m not mistaken, it came from your newly-appointed trainer Nartok. He would have words with you when you\'re ready.", + ["O"] = "Read the Tainted Parchment and speak to Nartok inside the Den in the Valley of Trials.", + ["T"] = "Tainted Parchment", + }, + [3091] = { + ["D"] = "Just a moment ago a messenger was looking for you, $N. I believe she was sent by the warrior trainer Harutt. If this note is from Harutt, I wouldn\'t take long in reading it\'s contents.", + ["O"] = "Read the Simple Note and speak to Harutt Thunderhorn in Camp Narache.", + ["T"] = "Simple Note", + }, + [3092] = { + ["D"] = "Just a moment ago a messenger was looking for you, $N. I believe she was sent by the hunter trainer Lanka. If this note is from Lanka, I wouldn\'t take long in reading it\'s contents.", + ["O"] = "Read the Etched Note and speak to Lanka Farshot in Red Cloud Mesa.", + ["T"] = "Etched Note", + }, + [3093] = { + ["D"] = "Just a moment ago a messenger was looking for you, $N. I believe she was sent by the shaman trainer Meela. If this note is from Meela, I wouldn\'t take long in reading it\'s contents.", + ["O"] = "Read the Rune-Inscribed Note and speak to Meela Dawnstrider in Camp Narache.", + ["T"] = "Rune-Inscribed Note", + }, + [3094] = { + ["D"] = "Just a moment ago a messenger was looking for you, $N. I believe she was sent by the druid trainer Gart. If this note is from Gart, I wouldn\'t take long in reading its contents.", + ["O"] = "Read the Verdant Note and speak to Gart Mistrunner in Camp Narache.", + ["T"] = "Verdant Note", + }, + [3095] = { + ["D"] = "Ah, while you were off dealing with the mindless Scourge, this scroll arrived for you. I would think it\'s some matter of importance as it seems it bears the seal of the warrior trainer Dannal. I would take some time to read it before heading out again.", + ["O"] = "Read the Simple Scroll and speak to Dannal Stern in Deathknell.", + ["T"] = "Simple Scroll", + }, + [3096] = { + ["D"] = "Ah, while you were off dealing with the mindless Scourge, this scroll arrived for you. I would think it\'s some matter of importance as it seems it bears the seal of the rogue trainer David Trias. I would take some time to read it before heading out again.", + ["O"] = "Read the Encrypted Scroll and speak to David Trias in Deathknell.", + ["T"] = "Encrypted Scroll", + }, + [3097] = { + ["D"] = "Ah, while you were off dealing with the mindless Scourge, this scroll arrived for you. I would think it\'s some matter of importance as it seems it bears the seal of the priest trainer Duesten. I would take some time to read it before heading out again.", + ["O"] = "Read the Hallowed Scroll and speak to Dark Cleric Duesten in the church in Deathknell.", + ["T"] = "Hallowed Scroll", + }, + [3098] = { + ["D"] = "Ah, while you were off dealing with the mindless Scourge, this scroll arrived for you. I would think it\'s some matter of importance as it seems it bears the seal of the mage trainer Isabella. I would take some time to read it before heading out again.", + ["O"] = "Read the Glyphic Scroll and speak to Isabella in the church in Deathknell.", + ["T"] = "Glyphic Scroll", + }, + [3099] = { + ["D"] = "Ah, while you were off dealing with the mindless Scourge, this scroll arrived for you. I would think it\'s some matter of importance as it seems it bears the seal of the warlock trainer Maximillion. I would take some time to read it before heading out again.", + ["O"] = "Read the Tainted Scroll and speak to Maximillion in Deathknell.", + ["T"] = "Tainted Scroll", + }, + [3100] = { + ["D"] = "I was asked to bring this to your attention as soon as you returned from the kobold camps, $N. It appears to be a letter sealed with the insignia of Llane, our local warrior trainer. I wouldn\'t hesitate to read it before you go about any other business here in the Abbey.", + ["O"] = "Read the Simple Letter and speak to Llane Beshere in Northshire Abbey.", + ["T"] = "Simple Letter", + }, + [3101] = { + ["D"] = "I was asked to bring this to your attention as soon as you returned from the kobold camps, $N. It appears to be a letter sealed with the insignia of Brother Sammuel, our local paladin trainer. I wouldn\'t hesitate to read it before you go about any other business here in the Abbey.", + ["O"] = "Read the Consecrated Letter and speak to Brother Sammuel in Northshire Abbey.", + ["T"] = "Consecrated Letter", + }, + [3102] = { + ["D"] = "I was asked to bring this to your attention as soon as you returned from the kobold camps, $N. It appears to be a letter sealed with the insignia of Jorik, one of our local trainers. I wouldn\'t hesitate to read it before you go about any other business here in the Abbey.", + ["O"] = "Read the Encrypted Letter and speak to Jorik Kerridan in the stable behind Northshire Abbey.", + ["T"] = "Encrypted Letter", + }, + [3103] = { + ["D"] = "I was asked to bring this to your attention as soon as you returned from the kobold camps, $N. It appears to be a letter sealed with the insignia of Priestess Anetta, our local priest trainer. I wouldn\'t hesitate to read it before you go about any other business here in the Abbey.", + ["O"] = "Read the Hallowed Letter and speak to Priestess Anetta in Northshire Abbey.", + ["T"] = "Hallowed Letter", + }, + [3104] = { + ["D"] = "I was asked to bring this to your attention as soon as you returned from the kobold camps, $N. It appears to be a letter sealed with the insignia of Khelden, our local mage trainer. I wouldn\'t hesitate to read it before you go about any other business here in the Abbey.", + ["O"] = "Read the Glyphic Letter and speak to Khelden Bremen inside Northshire Abbey.", + ["T"] = "Glyphic Letter", + }, + [3105] = { + ["D"] = "I was asked to bring this to your attention as soon as you returned from the kobold camps, $N. It appears to be a letter sealed with the insignia of Drusilla, one of our local trainers. I wouldn\'t hesitate to read it before you go about any other business here in the Abbey.", + ["O"] = "Read the Tainted Letter and speak to Drusilla La Salle next to Northshire Abbey.", + ["T"] = "Tainted Letter", + }, + [3106] = { + ["D"] = "While you were helping me out, this rune was given to me to pass on to you. Take some time to read it when you have a chance. I\'m thinkin\' it came from the warrior trainer Thran. Take a gander at it and go find him inside Anvilmar when you\'ve a chance.", + ["O"] = "Read the Simple Rune and speak to Thran Khorman in Coldridge Valley.", + ["T"] = "Simple Rune", + }, + [3107] = { + ["D"] = "While you were helping me out, this rune was given to me to pass on to you. Take some time to read it when you have a chance. I\'m thinkin\' it came from the paladin trainer Bromos. Take a gander at it and go find him inside Anvilmar when you\'ve a chance.", + ["O"] = "Read the Consecrated Rune and speak to Bromos Grummner in Coldridge Valley.", + ["T"] = "Consecrated Rune", + }, + [3108] = { + ["D"] = "While you were helping me out, this rune was given to me to pass on to you. Take some time to read it when you have a chance. I\'m thinkin\' it came from the hunter trainer Thorgas. Take a gander at it and go find him inside Anvilmar when you\'ve a chance.", + ["O"] = "Read the Etched Rune and speak to Thorgas Grimson in Coldridge Valley.", + ["T"] = "Etched Rune", + }, + [3109] = { + ["D"] = "While you were helping me out, this rune was given to me to pass on to you. Take some time to read it when you have a chance. I\'m thinkin\' it came from the rogue trainer Solm. Take a gander at it and go find him inside Anvilmar when you\'ve a chance.", + ["O"] = "Read the Encrypted Rune and speak to Solm Hargrin in Coldridge Valley.", + ["T"] = "Encrypted Rune", + }, + [3110] = { + ["D"] = "While you were helping me out, this rune was given to me to pass on to you. Take some time to read it when you have a chance. I\'m thinkin\' it came from the priest trainer Branstock. Take a gander at it and go find him inside Anvilmar when you\'ve a chance.", + ["O"] = "Read the Hallowed Rune and speak to Branstock Khalder in Anvilmar.", + ["T"] = "Hallowed Rune", + }, + [3111] = { + ["D"] = "Long ago high elves taught us the secrets of magic along with our human allies. They preached to us about rules and how magic can make ya go mad! But don\'t believe it. We\'re not like the elves; we don\'t have the same weaknesses. Just keep yourself on the right path and you\'ll find magic is as powerful a tool as it is a weapon.$B$BWhen you\'re ready, come find me inside Anvilmar. I\'ll be waiting for ya!", + ["O"] = "Speak to Marryk Nurribit inside Anvilmar.", + ["T"] = "Glyphic Rune", + }, + [3112] = { + ["D"] = "While you were helping me out, this memorandum was given to me to pass on to you. Take some time to read it when you have a chance. I\'m thinkin\' it came from the warrior trainer Thran. Take a gander at it and go find him inside Anvilmar when you\'ve a chance.", + ["O"] = "Read the Simple Memorandum and speak to Thran Khorman in Coldridge Valley.", + ["T"] = "Simple Memorandum", + }, + [3113] = { + ["D"] = "While you were helping me out, this memorandum was given to me to pass on to you. Take some time to read it when you have a chance. I\'m thinkin\' it came from the rogue trainer Solm. Take a gander at it and go find him inside Anvilmar when you\'ve a chance.", + ["O"] = "Read the Encrypted Memorandum and speak to Solm Hargrin in Coldridge Valley.", + ["T"] = "Encrypted Memorandum", + }, + [3114] = { + ["D"] = "While you were helping me out, this memorandum was given to me to pass on to you. Take some time to read it when you have a chance. I\'m thinkin\' it came from the mage trainer Marryk. Take a gander at it and go find him inside Anvilmar when you\'ve a chance.", + ["O"] = "Read the Glyphic Memorandum and speak to Marryk Nurribit inside Anvilmar above Coldridge Valley.", + ["T"] = "Glyphic Memorandum", + }, + [3115] = { + ["D"] = "While you were helping me out, this memorandum was given to me to pass on to you. Take some time to read it when you have a chance. I\'m thinkin\' it came from the warlock trainer Alamar. Take a gander at it and go find him inside Anvilmar when you\'ve a chance.$B$BAnd watch yerself, $N, your kind ain\'t too trusted \'round these parts.", + ["O"] = "Read the Tainted Memorandum and speak to Alamar Grimm inside Anvilmar above Coldridge Valley.", + ["T"] = "Tainted Memorandum", + }, + [3116] = { + ["D"] = "This sigil was given to me by a messenger from our warrior trainer, Alyissia. It seems Alyissia would have words with you when you have a moment. Read it and bring it to her afterwards.", + ["O"] = "Read the Simple Sigil and speak to Alyissia in Shadowglen.", + ["T"] = "Simple Sigil", + }, + [3117] = { + ["D"] = "This sigil was given to me by a messenger from our hunter trainer, Ayanna. It seems Ayanna would have words with you when you have a moment. Read it and bring it to her afterwards.", + ["O"] = "Read the Etched Sigil and speak to Ayanna Everstride at the top of Aldrassil in Shadowglen.", + ["T"] = "Etched Sigil", + }, + [3118] = { + ["D"] = "This sigil was given to me by a messenger from our rogue trainer, Frahun. It seems Frahun would have words with you when you have a moment. Read it and bring it to him afterwards.", + ["O"] = "Read the Encrypted Sigil and speak to Frahun Shadewhisper in Shadowglen.", + ["T"] = "Encrypted Sigil", + }, + [3119] = { + ["D"] = "This sigil was given to me by a messenger from our priest trainer, Shanda. It seems Shanda would have words with you when you have a moment. Read it and bring it to her afterwards.", + ["O"] = "Read the Hallowed Sigil and speak to Shanda in Aldrassil.", + ["T"] = "Hallowed Sigil", + }, + [3120] = { + ["D"] = "This sigil was given to me by a messenger from our druid trainer, Mardant. It seems Mardant would have words with you when you have a moment. Read it and bring it to him afterwards.", + ["O"] = "Read the Verdant Sigil and speak to Mardant Strongoak, in the tree Aldrassil in Shadowglen.", + ["T"] = "Verdant Sigil", + }, + [3121] = { + ["D"] = "Neeru Fireblade in Orgrimmar has what I need to get started here! He has mixed up a concoction that I need for my... well, you\'ll see.$B$BOff with you now -- to Orgrimmar. Here, take this with you. It\'s a shrunken head that I promised Neeru in exchange for the herbs. It\'s the head of some poor dwarf I ventured across in the forest. I\'m sure Neeru will be pleased.$B$BYou\'ll find Neeru in the Cleft of Shadow.", + ["O"] = "Take the Shrunken Head to Neeru Fireblade in Orgrimmar.", + ["T"] = "A Strange Request", + }, + [3122] = { + ["D"] = "Here are the herbs, $N. Take them to Witch Doctor Uzer\'i.$B$BPlease let him know that I am satisfied with the shrunken head.", + ["O"] = "Deliver Neeru\'s Herb Pouch to Witch Doctor Uzer\'i in Feralas.", + ["T"] = "Return to Witch Doctor Uzer\'i", + }, + [3123] = { + ["D"] = "This will be a test; both of the ritual I performed, and of your abilities. Take this vessel, $N. With it, you will have the power to shrink and capture a creature inside of it.$B$BTravel to the Hinterlands and look for creatures known as Wildkin that were once pets of the night elf goddess Elune. The vicious, primitive, or savage owlbeasts are your targets, $N. Kill 10, and use the muisek vessel to shrink and capture them before their spirits can escape.", + ["O"] = "Travel to the Hinterlands, and locate the Wildkin. Kill 10, and use the Muisek Vessel to shrink and capture the fallen Wildkin.$B$BBring 10 Wildkin Muiseks and the Muisek Vessel to Witch Doctor Uzer\'i in Feralas.", + ["T"] = "Testing the Vessel", + }, + [3124] = { + ["D"] = "Since you have proven that you are both trustworthy and gifted with the ability to use the muisek vessel, I now wish you to capture another creature.$B$BHippogryphs have been loyal companions to the night elves for many years; their spirits are loyal and steadfast.$B$BYour task is to kill 10 frayfeather hippogryphs, and quickly, shrink and capture them with the vessel, so that their muisek may be preserved. You will find the hippogryphs in the High Wilderness, to the south of here. ", + ["O"] = "Kill 10 Frayfeather Hippogryphs of any type, then use the Muisek Vessel to shrink and capture them.", + ["T"] = "Hippogryph Muisek", + }, + [3125] = { + ["D"] = "$N, next I must have you capture a creature that in appearance, may look quite fragile, yet its powerful spirit is what we are truly after. The faerie dragons that I speak of have served the night elves as their allies. We must capture one so that the horde may benefit from this strength of spirit as well.$B$BHere is the muisek, $N. Kill 8 sprite darters or sprite dragons, and capture their muisek. They may be found to the west of here.", + ["O"] = "Kill 8 Sprite Darters or Sprite Dragons. Use the Muisek Vessel to shrink and capture the fallen Faerie Dragons.", + ["T"] = "Faerie Dragon Muisek", + }, + [3126] = { + ["D"] = "The wandering forest walkers that can be found meandering through the forest are our next target, $N. Night elves have enlisted treants as allies to fight against the horde. Their movement may be slow, but their role as protectors is undeniable.$B$BSoon we will be able to use this power for our own benefit.$B$BFind 3 wandering forest walkers; kill them, and use the muisek vessel to shrink and capture them.", + ["O"] = "Kill 3 Wandering Forest Walkers. Use the Muisek Vessel to shrink and capture the fallen Treants.", + ["T"] = "Treant Muisek", + }, + [3127] = { + ["D"] = "The last task I will require of you is to travel to the northwest and find the final enemy.$B$BThe mountain giants left the mountains to aid the night elves when the burning legion appeared in the world. You will know them by their massive size and the way the ground begins to shake as you travel along their rocky terrain.$B$BI am eager to harness power of that size. Kill 7 mountain giants, then use the muisek vessel to capture their powerful muisek.", + ["O"] = "Kill 7 Land Walkers or Cliff Giants. Use the Muisek Vessel to shrink and capture the fallen Mountain Giants.", + ["T"] = "Mountain Giant Muisek", + }, + [3128] = { + ["D"] = "I will need certain materials to complete my endeavor... You may do this alongside the other tasks I will give you.$B$BI\'ll need a splintered log from a treant of Feralas. Encrusted minerals, these can be found on the mountain giants and faerie dragons to the west. Also, find me some resilient sinew from the owlbeasts of the Hinterlands or hippogryphs of Feralas. Finally, I\'ll need a large amount of metallic fragments from any of these creatures I mentioned.", + ["O"] = "Bring 2 Splintered Logs, 6 Encrusted Minerals, 20 pieces of Resilient Sinew, and 40 Metallic Fragments to Witch Doctor Uzer\'i in Camp Mojache.", + ["T"] = "Natural Materials", + }, + [3129] = { + ["D"] = "Imbuing the muisek into the weapons is a difficult process. Now that I have all of the required materials and the muisek of the creatures that you captured, I may begin. Please wait; I will return in a moment.", + ["O"] = "Witch Doctor Uzer\'i wants you to wait for a moment while he prepares the weapons.", + ["T"] = "Weapons of Spirit", + }, + [3130] = { + ["D"] = "At this point, I am going to direct you to my second, Latronicus. He\'s been keeping a close eye on the naga forces to date. I\'ll assess the general situation here in regards to the naga; as much as I want to commit a full force to move against them, leaving the stronghold open to direct attack from the Horde - or worse - seems less than optimal.$B$BAnyway, Latronicus awaits. Good work thus far, $n. Keep it up.$B$BYou\'re dismissed.", + ["O"] = "Report to Latronicus Moonspear in Feathermoon Stronghold.", + ["T"] = "Against the Hatecrest", + }, + [3141] = { + ["D"] = "So you wish to battle demons? You would do well to listen to my tale. ", + ["O"] = "Listen to Loramus Thalipedes tell his story.", + ["T"] = "Loramus", + }, + [3161] = { + ["D"] = "$N, I\'m a scientist, but also a treasure hunter at heart!$B$BLong ago, when trolls used to occupy this land, they created large amounts of ornaments modeled after Gahz\'rilla, a hydra they worshipped as a deity. These ornaments are carved out of an element that I call \"Gahz\'ridian,\" after the hydra god.$B$BI did find some myself, but I\'d like to have some more to study -- maybe you can find some?$B$BI even invented a detector that makes finding the Gahz\'ridian a snap! Just put it on, and the search begins! ", + ["O"] = "Marvon Rivetseeker in Tanaris wants you to collect 30 Gahz\'ridian Ornaments.", + ["T"] = "Gahz\'ridian", + }, + [3181] = { + ["D"] = "The gigantic horn has numerous scratches and cracks. An unusual metal object is lodged into the rough surface.$B$BUpon further examination, you notice that the metal is actually a broken axe head. On the metal, the following words are etched:$B$BProperty of Mountaineer Pebblebitty.$B$BWhen you try and dislodge the broken axe head, it shatters into a million pieces.$B$BWoops!", + ["O"] = "Take Margol\'s Gigantic Horn to Mountaineer Pebblebitty.", + ["T"] = "The Horn of the Beast", + }, + [3182] = { + ["D"] = "You expect me to believe a story like that? The real horn would have had my broken axe head still lodged into its surface.$B$BListen, take that obvious fake to Curator Thorius in Ironforge. If he can validate your claim, you will receive a proof of deed. Bring that proof back to me and I\'ll give you the key to the Searing Gorge.$B$BGet going! ", + ["O"] = "Take Margol\'s Gigantic Horn to Curator Thorius in Ironforge.", + ["T"] = "Proof of Deed", + }, + [3201] = { + ["D"] = "I can\'t believe Pebblebitty doubted the authenticity of the horn. Between you and me, I think she\'s just jealous. I know she really wanted to kill that beast herself, what with the \'incident\' and all.$B$BSo you need a proof of deed? After the contribution you just made to the museum, it won\'t be a problem.$B$B$B$BThere we go! You can take that back to Pebblebitty.", + ["O"] = "Take the Proof of Deed back to Mountaineer Pebblebitty.", + ["T"] = "At Last!", + }, + [3221] = { + ["D"] = "While you were out helping our deathstalkers, Apothecary Renferrel sent you a summons. He did not give me details, but he wanted to speak with you about the wolf hearts you had given him.", + ["O"] = "Speak with Apothecary Renferrel at the Sepulcher.", + ["T"] = "Speak with Renferrel", + }, + [3241] = { + ["D"] = "Collect the totems from Dreadmist Peak, because it\'s icky there now and no place for shiny clean totems.", + ["O"] = "Bring them to Tonga Runetotem.", + ["T"] = " Dreadmist Peak", + }, + [3261] = { + ["D"] = "Your time with me is over, $N. To learn more, you must go to Camp Taurajo to the south and speak with Jorn Skyseer. He will continue your guidance.", + ["O"] = "Speak with Jorn Skyseer at Camp Taurajo.", + ["T"] = "Jorn Skyseer", + }, + [3281] = { + ["D"] = "You may have killed the raptors, but the silver they stole must be recovered! I have reports that the raptors have a large grouping of nests south of Ratchet, known as the Raptor Grounds. It is likely that they brought our stolen silver there.$B$BGo to this raptor haven and search for the stolen silver. When you find it, return it to me.", + ["O"] = "Bring the Stolen Silver to Gazrog in the Crossroads.", + ["T"] = "Stolen Silver", + }, + [3301] = { + ["D"] = "My clanmate, Mura Runetotem, traveled to Silverpine so that she might aid our undead allies. Silverpine is an ailing forest, a dying forest, and it was Mura\'s hope to bring it new life. Perhaps the strange life found here in the Barrens can help her work in Silverpine.$B$BTake a sample of the shells you gathered, and bring it to Mura in Silverpine. She is staying at the Sepulcher. With luck, studying the shell will give her the insight she needs to heal that dying place.", + ["O"] = "Speak with Mura Runetotem in the Sepulcher.", + ["T"] = "Mura Runetotem", + }, + [3321] = { + ["D"] = "You have done much for the Order, $N. The sheer dedication it takes to get this far would have turned away any ordinary person. There is no doubt in my mind, or in the mind of Galvan, that you are one of us.$B$BWhich is why I think you deserve a little reward. It is nothing really, just a trinket. You may be familiar with its properties, as I do believe it is what brought you to us in the first place.", + ["O"] = "Wait for Trenton to finish his work.", + ["T"] = "Did You Lose This?", + }, + [3341] = { + ["D"] = "In the Barrens lies a horrid mess of tangled vines called Razorfen Downs. While our first observations of this place revealed little threat, our recent findings are much more serious...$B$BThe quilboar of Razorfen Downs have aligned themselves with the Scourge. A Lich named Amnennar the Coldbringer rules them now, using the power of his massive consciousness to control their every move.$B$BAmnennar has a direct telepathic link to Ner\'zhul; we must sever this bond, $N. An end must come to the Coldbringer.", + ["O"] = "Andrew Brownell wants you to kill Amnennar the Coldbringer and return his skull.", + ["T"] = "Bring the End", + }, + [3361] = { + ["D"] = "We drove the troggs out of Gnomeregan, but then it all went so horribly wrong! Now our home is completely irradiated, and we gnomes have been scattered all over Dun Morogh.$B$BIn my haste to get away from the radiation, I lost all my personal belongings and tools. It was the trolls that got them. They stole my chest, my box, and my bucket of bolts! They took them back to their camps southwest of Anvilmar.$B$BI\'m no adventurer - could you find my things and bring them here to me, please?", + ["O"] = "Bring Felix\'s Box, Felix\'s Chest and Felix\'s Bucket of Bolts to Felix Whindlebolt in Anvilmar.", + ["T"] = "A Refugee\'s Quandary", + }, + [3362] = { + ["D"] = "Have you ever seen Thistleshrub Valley? It\'s a mighty dangerous place, $N.$B$BThose strange beasts there, I don\'t trust them for a minute! Gnarled thistleshrubs and thistleshrub rootshapers, that\'s what I think they were called...$B$BAnyhow, I want to get into the valley, but with so many of those thistleshrubs around, there\'s no way I\'m going back there. But here\'s where you come in -- if you clear some of them out, I just might think about going back. What do you think, $N? Help me out?", + ["O"] = "Tran\'rek in Gadgetzan wants you to kill 8 Gnarled Thistleshrubs and 8 Thistleshrub Rootshapers.", + ["T"] = "Thistleshrub Valley", + }, + [3363] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Corrupted Songflower", + }, + [3364] = { + ["D"] = "Gah! I was supposed to get this delicious scalding mornbrew to Durnan Furcutter inside Anvilmar a while ago now, but I had to deliver one to Grelin here first. I\'ll never make it to Anvilmar before the brew runs cold!$B$BYou look fast. Maybe you can make it. This cup will only stay hot for five more minutes, and Durnan didn\'t order \"chilly\" mornbrew, so get going. Anvilmar is to the northeast, a settlement dug into the mountain.$B$BThanks, $N, and don\'t forget to bring me back my mug!", + ["O"] = "Take a Scalding Mornbrew to Durnan Furcutter inside Anvilmar before it gets cold in five minutes!", + ["T"] = "Scalding Mornbrew Delivery", + }, + [3365] = { + ["D"] = "Now that hit the spot! Nothing like a piping hot - nay, SCALDING mornbrew on a cold winter\'s day to warm your cackles of yer soul.$B$BHere ya go $N - be a pal and take this empty mug back to Nori for me, would ya now.", + ["O"] = "Return Nori\'s Mug to Nori Pridedrift.", + ["T"] = "Bring Back the Mug", + }, + [3366] = { + ["D"] = "The shard is a brilliant green, and although solid, what looks like smoke swirls just below the surface. You can\'t help staring into the depths of the crystal; at the same time, you know there is something very disturbing about it.$B$BMaybe you should see if anyone in Ratchet can tell you more about this strange shard.", + ["O"] = "Travel to Ratchet to find the meaning behind the Nightmare Shard.", + ["T"] = "The Glowing Shard", + }, + [3367] = { + ["D"] = "$B$BI\'m badly injured, $r. Feel... light headed... World spinning... Bleeding... internally.$B$BI must get back to Ironforge. Help me, $N.", + ["O"] = "Help Dorius get back to Ironforge.", + ["T"] = "Suntara Stones", + }, + [3368] = { + ["D"] = "Brother,$B$BIf you are reading this letter, I am no more. How it got to you, I do not know, but thank and reward the ones responsible.$B$BAbout the stones: They exist and the Dark Irons have them in their possession. Their leader, Lathoric the Black, is using the power of the stones to enslave my excavation team. They were taken to the cauldron. Their minds are twisted, working night and day to complete something called Obsidion.$B$BHelp them, brother. It is the final wish of a dead man.$B$B-Dorius", + ["O"] = "Take the Singed Letter to Thorius in Ironforge. He is in the Hall of Explorers.", + ["T"] = "Suntara Stones", + }, + [3369] = { + ["D"] = "This shard holds great secrets; it is the pure essence of the Emerald Dream. However, what I see in this shard is not a dream; one would call this sort of a vision a nightmare.$B$BI do not wish to alarm you, $N, but I think it is best if you deliver this shard into the hands of a wise druid as soon as you can.$B$BHamuul Runetotem on Elder Rise is who you need to find. Head to Thunder Bluff. I cannot say more. ", + ["O"] = "Bring the Nightmare Shard to Hamuul Runetotem on Elder Rise.", + ["T"] = "In Nightmares", + }, + [3370] = { + ["D"] = "This shard holds great secrets; it is the pure essence of the Emerald Dream. However, what I see in this shard is not a dream; one would call this sort of a vision a nightmare.$B$BI do not wish to alarm you, $N, but I think it is best if you deliver this shard into the hands of a wise druid as soon as you can... $B$BMathrengyl Bearwalker in the Cenarion Circle is who you need to find. Head to Darnassus. I cannot say more.", + ["O"] = "Bring the Nightmare Shard to Mathrengyl Bearwalker in Darnassus.", + ["T"] = "In Nightmares", + }, + [3371] = { + ["D"] = "There is an empty, vacuous hole, where my heart used to be, $N. The loss of Dorius is not one that I will soon recover from. I must see his final wish through - the perpetrators of this cold blooded murder must be brought to justice.$B$BReturn to the Searing Gorge and fulfill his last request: Free his men.", + ["O"] = "Return to the Searing Gorge and find Dorius\'s archaeology unit. ", + ["T"] = "Dwarven Justice", + }, + [3372] = { + ["D"] = "Release them, $r. Even after their bodies give out, the power of the Suntara forces them to complete their tasks.$B$BThe altar of Suntara is the key. Go northwest; in the hills above the cave... Twilight\'s Hammer guard a relic. Retrieve it and place it on the altar of Suntara.$B$B", + ["O"] = "Find the Mysterious Artifact being guarded by the Twilight\'s Hammer Idolaters in the northwest quadrant of the Searing Gorge.", + ["T"] = "Release Them", + }, + [3373] = { + ["D"] = "As you touch the gem, a deep voice resonates in your mind.$B$B\"Mortal, heed this plea. I am Eranikus of the Green Dragonflight, keeper of this accursed temple. My charge to ensure that the trolls never again bring forth their abomination of a god has for now ended in failure. As I imbue this gem with part of my essence, I sense my grip on the Dream twisting into chaos. Please - place this gem into the essence font in my lair, and let our magic there purge the taint from my psyche so that I may rest.\"", + ["O"] = "Place the Essence of Eranikus in the Essence Font located in this lair in the Sunken Temple.", + ["T"] = "The Essence of Eranikus", + }, + [3374] = { + ["D"] = "You engage the Oathstone, and Itharius speaks directly to your mind through the stone.$B$B\"By accepting the charge placed in this Oathstone, you agree to aid my cause and the cause of Ysera\'s Dragonflight in redeeming the corrupted soul of Eranikus. The first sacrifice, one of many you and I will no doubt make, will be to relinquish the gem to me that has chained what free-willed part of Eranikus\' psyche remains.\"$B$B\"Do this $N, and we will work together to redeem a soul worthy of redemption.\"", + ["O"] = "Bring the Oathstone of Ysera\'s Dragonflight and the Chained Essence of Eranikus to Itharius in the Swamp of Sorrows. It is there that you will make your choice to aid Ysera\'s Dragonflight or not.", + ["T"] = "The Essence of Eranikus", + }, + [3375] = { + ["D"] = "Um... you need another phial of scrying? You\'re kidding, right? What did you do with the first one?! We have a lot of work ahead of us here, $r. Those phials don\'t grow on trees! Actually, I wish they did, because I\'d go there and pick one off since I don\'t have another one!!$B$Bin order to make you one, I need the following: a mana potion, a piece of coal, and some sweet nectar. Don\'t ask why, just bring me what I ask and I\'ll make you a new one.", + ["O"] = "Bring a Mana Potion, Coal, and Sweet Nectar to Talvash del Kissel in Ironforge to get a replacement for Talvash\'s Phial of Scrying.", + ["T"] = "Replacement Phial", + }, + [3376] = { + ["D"] = "$N - I have heard of you, newcomer. Perhaps it is you that will help us, where others have failed.$B$BWe tauren have carved a home out of this land, but not without a cost. The Bristleback quilboars of Brambleblade Ravine, led by Chief Sharptusk Thornmantle, have made our lives difficult with their continued war against us. I charge you to bring me the chief\'s head!$B$BHe will be found in the ravine to the east in their makeshift village.", + ["O"] = "Bring the head of Chief Sharptusk Thornmantle to Brave Windfeather in Red Cloud Mesa.", + ["T"] = "Break Sharptusk!", + }, + [3377] = { + ["D"] = "Will you assist me, mortal? Hear my tale.", + ["O"] = "Hear Zamael tell his tale.", + ["T"] = "Prayer to Elune", + }, + [3378] = { + ["D"] = "Will you assist me, mortal? Will you find the prayer to Elune?$B$BAs I stated, the prayer was etched onto a golden tablet. One of these idol worshipping scoundrels must have it on their person.$B$BIf you do recover my prayer, take it to Astarii Starseeker in Darnassus. It matters little that my faith has been rekindled after the countless malevolent actions that I have taken against this world and its inhabitants, but my prayer must be heard. Absolution is the last thing I expect.", + ["O"] = "Find the Prayer to Elune and take it to Astarii Starseeker in Darnassus.", + ["T"] = "Prayer to Elune", + }, + [3379] = { + ["D"] = "The spiders of the Searing Gorge are an invaluable source of shadow silk. As you know, shadow silk is highly sought after by the artisans of our trade.$B$BRecently, a group of poachers has encroached upon these lands, carelessly slaying spiders en masse without so much as a thought as to the long term effect of their actions. The first task I ask of you, then, is a simple one: Find them... and end them.$B$BBegin your search to the north.$B$BIf you require assistance, speak with Raze.", + ["O"] = "Kill the group of Shadow Silk Poachers that wander the Searing Gorge. Nilith has reason to believe that there are five of them that need to be exterminated. Return to Nilith in the Searing Gorge when this task is complete.", + ["T"] = "Shadoweaver", + }, + [3380] = { + ["D"] = "There are restless spirits in this world, $N. There are spirits that have been tainted by their isolation, bound to an ancient evil...$B$BI have heard of a place that lies deep below the surface of the earth -- banished there by powers greater than I have ever seen.$B$BIf you wish to learn more of this place; the Sunken Temple, seek out a goblin named Marvon Rivetseeker. He has studied many ancient areas of the world, and was last known to have left his home in Ratchet to study the troll ruins in Tanaris.", + ["O"] = "Find Marvon Rivetseeker in Tanaris.", + ["T"] = "The Sunken Temple", + }, + [3381] = { + ["D"] = "Ah, a young $r come to speak to Sanath. What a wonderful day! I am so honored to have you grace me with your presence. Thank you!$B$BPlease... do not be so arrogant to assume my sarcasm was a compliment. Let us get one thing straight: I don\'t like you. But this little conversation doesn\'t have anything to do with us--it has to do with my master.$B$BBring me a couple hippogryph feathers for my arrows and I\'ll give you leave to see him. He\'s asked that I send adventurers to him if they proved worthy enough.", + ["O"] = "Bring 2 Undamaged Hippogryph Feathers to Sanath Lim-yo in Azshara if you wish to speak to his master.", + ["T"] = "A Meeting with the Master", + }, + [3382] = { + ["D"] = "We were just off the coast looking for a safe haven to make anchor. The sun hadn\'t been down for more than an hour when they attacked... those damned naga!$B$BI\'m not sure what they were looking for, but it\'s clear they didn\'t find it--they\'ve already come back once. A couple of my scouts are on watch at the entrance of the valley to give us fair warning when the next attack comes.$B$BI\'m sorry you\'ve come along now, $N, but it\'s out of my hands.$B$BAre you ready for the fight of your life?", + ["O"] = "Defend Captain Vanessa Beltis, her crew and the Horizon Scout\'s passengers against the naga attack. Captain Vanessa Beltis must survive.", + ["T"] = "A Crew Under Fire", + }, + [3383] = { + ["D"] = "", + ["O"] = "", + ["T"] = "", + }, + [3384] = { + ["D"] = "", + ["O"] = "", + ["T"] = "", + }, + [3385] = { + ["D"] = "They call themselves the Undermarket: Cutthroat traders that will sell, move, trade and do just about anything for the right price.$B$BIt gets worse, $N. They have set up a base of operations here in the Searing Gorge. Trade Master Kovic is heading up the operation and has close ties with the Dark Iron dwarves of the region.$B$BWe must strike hard and send a message to their leadership. Slay Trade Master Kovic and his minion Clunk. Bring back his trader\'s satchel when the job is done.$B$BTo the Cauldron!", + ["O"] = "Slay Trade Master Kovic and his minion Clunk. Retrieve the Trader\'s Satchel from his corpse and return it to Nilith.", + ["T"] = "The Undermarket", + }, + [3401] = { + ["D"] = "", + ["O"] = "", + ["T"] = "", + }, + [3402] = { + ["D"] = "I want you to personally deliver the news of Kovic\'s defeat to Vizzklick in Gadgetzan. He will be so happy to hear that Kovic is dead that I\'m certain he\'ll give you some grand reward.", + ["O"] = "Speak with Vizzklick in Gadgetzan.", + ["T"] = "The Undermarket", + }, + [3403] = { + ["D"] = "", + ["O"] = "", + ["T"] = "", + }, + [3404] = { + ["D"] = "", + ["O"] = "", + ["T"] = "", + }, + [3405] = { + ["D"] = "", + ["O"] = "", + ["T"] = "", + }, + [3421] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Return Trip", + }, + [3422] = { + ["D"] = "", + ["O"] = "", + ["T"] = "", + }, + [3423] = { + ["D"] = "", + ["O"] = "", + ["T"] = "", + }, + [3424] = { + ["D"] = "", + ["O"] = "", + ["T"] = "", + }, + [3425] = { + ["D"] = "", + ["O"] = "", + ["T"] = "", + }, + [3441] = { + ["D"] = "Hear my tale, adventurer.", + ["O"] = "Listen as Kalaran Windblade tells his story.", + ["T"] = "Divine Retribution", + }, + [3442] = { + ["D"] = "You have made the right decision, $N.$B$BWe must strike where we will do the most damage: the four sentry towers.$B$BWith the four towers in flames, we can initiate an offensive before they have time to react.$B$BYou will need the proper tool to set the towers ablaze. To make the tool requires some materials.$B$BBring me four hearts of flame and four golem oil and I shall craft the torch of flawless flame.$B$BThe golems and elementals in these lands should be your first target.", + ["O"] = "Collect 4 Hearts of Flame and 4 globes of Golem Oil and return the items to Kalaran Windblade.", + ["T"] = "The Flawless Flame", + }, + [3443] = { + ["D"] = "To hold the flawless flame, we will need a shaft and a casing. You must first find a suitable shaft.$B$BThe Dark Iron taskmasters and slavers of the cauldron use weapons of enchanted thorium, an extremely sturdy alloy. If you bring me eight thorium plated daggers, I can break the alloy down and reforge a shaft.", + ["O"] = "Bring 8 Thorium Plated Daggers to Kalaran Windblade.", + ["T"] = "Forging the Shaft", + }, + [3444] = { + ["D"] = "I once entered the foreboding chambers of the Sunken Temple. The evil in that place penetrates all that enter; I barely managed to find my way out, wading through the ooze that now covers the floors. All I can remember is stumbling through a large circular room, filled with serpent statues...$B$BRecently, I discovered a round stone that appeared to have the same serpent symbol imprinted on it. I had it packed up and shipped to my workshop in Ratchet. Retrieve it, and I might be able to tell you more.", + ["O"] = "Retrieve the Stone Circle from Marvon Rivetseeker\'s workshop in Ratchet.", + ["T"] = "The Stone Circle", + }, + [3445] = { + ["D"] = "I have heard of a place that lies deep below the surface of the earth -- banished there by powers greater than I have ever seen.$B$BIf you wish to learn more of this place; the Sunken Temple, seek out a goblin named Marvon Rivetseeker. Much like Troyas and I, he has studied many ancient areas of the world. He was last known to have left his home in Ratchet to study the troll ruins in Tanaris.$B$BGood luck finding him; he hasn\'t been heard from in some time.", + ["O"] = "Find Marvon Rivetseeker in Tanaris.", + ["T"] = "The Sunken Temple", + }, + [3446] = { + ["D"] = "Inside the temple, I found a circular room with six balconies, each one with a serpent statue on the edge. Curious, I pushed one of them to see what would happen, and it was a trap! I nearly fell to my death from the explosion. Laying there on the ledge, I looked down and noticed that there was another statue at the base of the room; an altar of sorts... Hakkar, I think it was called.$B$BI think that this altar is the secret -- you must bring this token to the altar in the Sunken Temple.", + ["O"] = "Find the Altar of Hakkar in the Sunken Temple in Swamp of Sorrows.", + ["T"] = "Into the Depths", + }, + [3447] = { + ["D"] = "My memories are cloudy, but I will tell you what I can. The circle of statues in the Sunken Temple, while dangerous, I believe that they hold the secret to unlock an even greater treasure.$B$BFrom the main altar, I was able to activate a series of lights. I think that if you can uncover what these lights mean, you might be able to unlock whatever secrets are hiding in this room.$B$BI warn you though, $N. Great evil lies in the temple. It\'s likely that anything valuable will be fervently guarded...", + ["O"] = "Travel into the Sunken Temple and discover the secret hidden in the circle of statues.", + ["T"] = "Secret of the Circle", + }, + [3448] = { + ["D"] = "I\'ve recently been handed the responsibility of investigating Azshara--a once beautiful area the elves called home. This would be back when they practiced magic. It\'s now a more dangerous place than it is beautiful, but that doesn\'t stop us from turning over every stone for answers to our past.$B$BA companion of mine named Tymor offered to help me investigate the area since he takes a particular interest in such things.$B$BHe owns a small place to the right of the Hall of Mysteries here in the city.", + ["O"] = "Speak to Tymor in Ironforge.", + ["T"] = "Passing the Burden", + }, + [3449] = { + ["D"] = "Magic was once as revered as Elune herself to some elves. Some of their most powerful mages created runes and tablets citing rules of the arcane and insights into their findings. They would leave these for all to ponder in public places.$B$BI would very much like rubbings of these runes from the Ruins of Eldarath. I have a kit for you to make the rubbings with, but it will be up to you to find them. Be careful though, the Explorer\'s League isn\'t the only one interested in Eldarath.", + ["O"] = "Using the Drawing Kit, make rubbings of the Rune of Beth\'Amara, the Rune of Jin\'yael, the Rune of Markri, and the Rune of Sael\'hai before heading to the small island off of the southern peninsula of Azshara and signaling Pilot Xiggs Fuselighter to pick them up.", + ["T"] = "Arcane Runes", + }, + [3450] = { + ["D"] = "I want the rubbings delivered to my tower, but there\'s no need to have you go all the way there. I\'ll just have them air-lifted out of Azshara.$B$BXiggs Fuselighter owes me a favor or two and will be in the area soon--he\'s signed on to patrol the coast. Speak to him before you leave. He can give you a flare gun to signal him with. When you have the rubbings, just head to wherever he tells you and then give them to him so he can get them to my tower safely. He should be in the hangar in the Military Ward.", + ["O"] = "Speak to Xiggs Fuselighter in Ironforge.", + ["T"] = "An Easy Pickup", + }, + [3451] = { + ["D"] = "Ah, so Tymor sent you, huh? Yeah, I owe him a favor or two. What\'s that? Why, that little devil. Yeah, I can help him out with that. So you\'ll need a flare gun and a location... easy enough.$B$BThere\'s a small island off the southern peninsula of Azshara that we\'ve made a landing pad on. You take this flare gun, and use it there. I\'ll see your signal and come by to pick up this... whatever it is he wants.", + ["O"] = "Speak to Xiggs Fuselighter and get a Standard Issue Flare Gun from him in Ironforge.", + ["T"] = "Signal for Pickup", + }, + [3452] = { + ["D"] = "We need one final piece to form the torch.$B$BIn the mountains to the northwest you will find a large encampment of Twilight\'s Hammer. It is rumored that they carry symbols and idols that pay homage to their god. These symbols and idols could carry sufficient enchantment to form a magical casing. Bring me a single symbol of Ragnaros and I will try to extract the magic from the item to create the casing.", + ["O"] = "Find and return a Symbol of Ragnaros to Kalaran Windblade.", + ["T"] = "The Flame\'s Casing", + }, + [3453] = { + ["D"] = "Give me a moment to combine the pieces and apply the necessary enchantments.", + ["O"] = "Wait for Kalaran Windblade to complete the Torch of Retribution.", + ["T"] = "The Torch of Retribution", + }, + [3454] = { + ["D"] = "The torch must now be bound to its owner. Pick up the torch, $N. ", + ["O"] = "Take the Torch of Retribution.", + ["T"] = "The Torch of Retribution", + }, + [3461] = { + ["D"] = "Tymor didn\'t give me anything to pay you with, so I suggest you take it up with him when you get back to Ironforge. I\'m sure he\'ll still be in his place in the Mystic Ward. Just go knockin\' and make sure he pays you good. This place ain\'t no picnic... that\'s for sure.$B$BThanks again for helping him out though, and good luck.$B$BOh, and I don\'t need the drawing kit. Why don\'t you just bring it back to Tymor when you go to see him?", + ["O"] = "Return Tymor\'s Drawing Kit to him in Ironforge.", + ["T"] = "Return to Tymor", + }, + [3462] = { + ["D"] = "Speak with my envoy, Squire Maltrake. He will further instruct you as to the use of the Torch of Retribution.", + ["O"] = "Speak with Squire Maltrake.", + ["T"] = "Squire Maltrake", + }, + [3463] = { + ["D"] = "Listen well, $N. While the four towers can never be destroyed, you can use the torch of retribution to set them ablaze for a very long period of time: A fire that no element or force can subdue.$B$BWhile they are ablaze, no guard or sentry unit can inhabit the watch posts and thus, their first line of defense is nullified.$B$BYou must enter each tower and use the Torch of Retribution within their fortifications. Beware the elite sentry units of the Dark Irons, $N.", + ["O"] = "Set the North, South, East, and West Sentry Towers on fire by using the Torch of Retribution inside each of the buildings. ", + ["T"] = "Set Them Ablaze!", + }, + [3481] = { + ["D"] = "The chest appears locked.", + ["O"] = "Open the chest.", + ["T"] = "Trinkets...", + }, + [3482] = { + ["D"] = "This is the horde version of the black box quest.", + ["O"] = "Take this box to Kravel.", + ["T"] = " The Pocked Black Box", + }, + [3483] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Signal for Pickup", + }, + [3501] = { + ["D"] = "Although you may never find a flawless sphere of draenethyst, you will undoubtedly uncover various imperfect fragments of the draenethyst in your exploration of these lands.$B$BWhile it is doubtful that Kum\'isha will be able to use the flawed fragments to return home, the pieces may serve other, useful purposes for the draenei.$B$BReturn any piece of flawed draenethyst fragments that you may find and I shall reward you.", + ["O"] = "Bring Kum\'isha Imperfect Draenethyst Fragments and be rewarded for each one you turn in.", + ["T"] = "Everything Counts In Large Amounts", + }, + [3502] = { + ["D"] = "Well, after that display of voracious greed, I feel nauseous.$B$BRegardless, I shall not dwell too long on your material addiction.$B$BFor each imperfect draenethyst fragment you turn in, I shall reward you with more junk. My junk heap gets smaller while your junk heap gets larger. On Draenor we call this a \'win-win\' situation.", + ["O"] = "Bring Kum\'isha Imperfect Draenethyst Fragments. Any form of monster in the Blasted Lands could be carrying a fragment.", + ["T"] = "One Draenei\'s Junk...", + }, + [3503] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Meeting with the Master", + }, + [3504] = { + ["D"] = "Betraying, thieving woman! That\'s what I call her--that\'s all she\'ll ever be!$B$BI may have made a grave mistake, $N. I trusted a blood elf. What\'s worse, I trusted a woman!$B$BShe claimed Azshara would hold great riches... powerful items. I simply send some warriors with her to protect her and I would be rewarded. Well, look who\'s the fool--she\'s killed them all.$B$BI want vengeance, $N, but I can\'t afford to send anyone else. Find Ag\'tor at Valormok, north of the Haldarr Encampment. He\'ll tell you more.", + ["O"] = "Deliver the Sealed Letter to Ag\'tor to Ag\'tor Bloodfist in Azshara.", + ["T"] = "Betrayed", + }, + [3505] = { + ["D"] = "I thought as much.$B$BWe start our crusade against her workers along the southern bluffs on the northern peninsula of Azshara. Kill them with bloody rage--let them know they\'ve betrayed the wrong allies.$B$BDo not concern yourself with her yet--she spends most of her time with her bodyguards searching Azshara. It would be prudent after you\'ve slain her workers to find her personal camp. Scouting out where we can attack her would be wise. Perhaps there is something there we can use to provoke her.", + ["O"] = "Kill 10 Blood Elf Reclaimers, and 10 Blood Elf Surveyors before seeking out Magus Rimtori\'s camp. Once you\'ve found it, look for something that might be important to her that can be used to draw her into a fight.", + ["T"] = "Betrayed", + }, + [3506] = { + ["D"] = "A few more moments of thought brings a few ideas to mind, one of which brings a smile to your face: perhaps destroying the crystals would upset the blood elf responsible for the slaughter of so many orcs and the betrayal of Belgrom?$B$BYou continue to decipher more of the script and pictures and realize that one of the crystals is tied to the creator of the circle--the others are tied to something far more sinister.$B$BYou close the book and begin to decide which crystal to destroy. ", + ["O"] = "Destroy the arcane focusing crystal tied to Magus Rimtori and then slay her. Afterwards, take the Head of Magus Rimtori to Ag\'tor Bloodfist in Azshara.", + ["T"] = "Betrayed", + }, + [3507] = { + ["D"] = "Return to Belgrom in Orgrimmar. He will want to see her head for himself! We\'ll return there shortly.$B$BAh, this is indeed a good day. Thank you for your help, $N.", + ["O"] = "Speak to Belgrom Rockmaul in Orgrimmar.", + ["T"] = "Betrayed", + }, + [3508] = { + ["D"] = "You are foolhardy, $N. It is an admirable quality of your kind - to blindly enter battle when you have little to no chance of success. I will assist you, if only to see just one of Razelikh\'s minions fall.$B$BTo break the ward placed over Razelikh\'s subordinates will take time and require the acquisition of rare artifacts.$B$BBe still, I must first perform the enlightenment ritual. The information I gather will assist me in forging weapons of great power.", + ["O"] = "Wait for Loramus to complete the enlightenment spell.", + ["T"] = "Breaking the Ward", + }, + [3509] = { + ["D"] = "There is only one way to harm the demon lord and his minions. A weapon of power must be forged bearing his true name.$B$BWhen such a weapon is forged, the demon and all under his command are vulnerable.$B$BA lesser deity resides in Azshara: Lord Arkkoroc. You must seek him out but be warned, his minions will stop at nothing to destroy you if you are discovered.$B$BUndoubtedly, you will have to pay a price for such information. ", + ["O"] = "Speak with Lord Arkkoroc in Azshara. Begin your search at the waters edge to find the Temple of Arkkoran.", + ["T"] = "The Name of the Beast", + }, + [3510] = { + ["D"] = "She kills my children, mortal. She that calls herself the ruler of these oceans. A false god, nothing more. Crush her and bring back all of her heads.$B$BFor that, you will be given the name that you seek and something else of equal importance.$B$BShe roams the clutch... Hetaera she is called.$B$B$B$BGo!", + ["O"] = "Slay Hetaera and bring back Hetaera\'s Bloodied Head, Hetaera\'s Beaten Head, and Hetaera\'s Bruised Head to Lord Arkkoroc.", + ["T"] = "The Name of the Beast", + }, + [3511] = { + ["D"] = "As promised, I will reveal the name of the demon lord, Razelikh the Defiler. First, however, I must prepare something of utmost importance for your journey.$B$BThe weapon you seek to create requires a temper. Give me a moment to drain the blood from these heads.$B$B$B$BTake the temper back to Loramus along with the name of the beast: Rakh\'likh.", + ["O"] = "Take the temper back to Loramus Thalipedes.", + ["T"] = "The Name of the Beast", + }, + [3512] = { + ["D"] = "$N, our first step will be to devise a method to speak with Eranikus through the gem. He lies in a precarious state between sleep and death now, twisted within a weave of nightmares. Though the essence you have given me is badly tainted, there is a chance we can reach him.$B$BTravel far to the icy lands of eastern Winterspring and seek one of our mortal allies, Umbranse the Spiritspeaker. He is a human medium who speaks for the dead. Though Eranikus is not truly dead, he may be of aid to us still.", + ["O"] = "Travel to the eastern part of Winterspring and speak with Umbranse the Spiritspeaker.", + ["T"] = "In Eranikus\' Own Words", + }, + [3513] = { + ["D"] = "The official-looking scroll is wrapped tightly with a silvery ribbon. You\'re sure someone would be interested in seeing this, but who?$B$BThere is an outpost close to the Ashenvale border to the north, and if the information on this scroll involves the night elves, this would be the place to take it.", + ["O"] = "Take the Runed Scroll to the northern guard tower in the Barrens.", + ["T"] = "The Runed Scroll", + }, + [3514] = { + ["D"] = "This scroll is from that scheming dryad Rynthariel, Keymaster of the Talon Den on Stonetalon Peak.$B$BShe\'ll not be making any more contact with the messenger you looted this from, heh, but we must stand our ground here. The Horde will not tolerate her outrunners here.$B$B$N, travel to the Talon Den. Kill Rynthariel, and then put up a symbol for all to see. Take this Horde flag, $N. Put it up in the Talon Den so that they will not be so rash as to send another messenger through our territory again.", + ["O"] = "Kill the leader of the Talon Den, Rynthariel the Keymaster.", + ["T"] = "Horde Presence", + }, + [3515] = { + ["D"] = "", + ["O"] = "", + ["T"] = "", + }, + [3516] = { + ["D"] = "", + ["O"] = "", + ["T"] = "", + }, + [3517] = { + ["D"] = "I admit, $N, I\'ve made the most of my situation in Azshara. Belgrom\'s punishment has had its share of benefits.$B$BBefore I left, I did some research and you would be surprised how many valuable items are lying around.$B$BI\'ll tell you more about my deals, and even give you a cut of the profits, if you help me gather some of them.$B$BThere are tablets throughout the Ruins of Eldarath to the east that I need. All four are named after Highborne wizards. Get them for me and we\'ll talk some more.", + ["O"] = "Find the Tablet of Beth\'Amara, the Tablet of Jin\'yael, the Tablet of Markri, and the Tablet of Sael\'hai before returning to Jediga in Azshara.", + ["T"] = "Stealing Knowledge", + }, + [3518] = { + ["D"] = "The first tablet goes to a tauren female... one called Magatha. She is among the elders in Thunder Bluff, and is one of the proponents of the alliance between the tauren and the Forsaken. She, more than anyone among the elders, feels the tauren and their ways can help the Forsaken find a path back to being human.$B$BBring her the Tablet of Beth\'Amara. The tablet may be the link she needs in finding a way to help the Forsaken... or so she claims.", + ["O"] = "Bring the Tablet of Beth\'Amara to Magatha in Thunder Bluff.", + ["T"] = "Delivery to Magatha", + }, + [3519] = { + ["D"] = "Ughhh... I was bitten very badly by a spider named Githyiss the Vile while exploring the spider cave very close to here. I am sure I have been seriously poisoned; you must help me.$B$BPlease tell Dirania Silvershine. She will be able to help me.$B$BHurry... I\'m so dizzy...", + ["O"] = "Speak to Dirania Silvershine in Shadowglen.", + ["T"] = "A Friend in Need", + }, + [3520] = { + ["D"] = "I seek the spirits of the vale screechers of Feralas. They are the cousins of an old, old god, and their spirits are linked to him.$B$BTake this bramble wand and go to Feralas. Find and defeat vale screechers in southern and central Feralas, then wave my bramble over their fallen bodies. This will coax their spirit to reveal itself. Touch the spirit and collect its essence.$B$BReturn to me with my bramble and with the collected essence, and I will tell you more of the old god of which I spoke.", + ["O"] = "Capture the spirits of 3 screechers in Feralas, then return to Yeh\'kinya in Steamwheedle Port.", + ["T"] = "Screecher Spirits", + }, + [3521] = { + ["D"] = "We may be able to help Iverron, as I know of an antidote that should help with the poison. It requires some ingredients, though, before I can make it.$B$BI\'ll need Hyacinth mushrooms. You can find these growing under trees, or you may collect them from the grell south of here; they seem to have taken a liking to them. I\'ll also need Moonpetal lilies, which only grow around watery pools.$B$BThe last ingredient may prove the most difficult. From the very spiders that poisoned Iverron, collect Webwood ichor.", + ["O"] = "Collect 7 Hyacinth Mushrooms, 4 Moonpetal Lilies, and 1 Webwood Ichor for Dirania Silveshine in Shadowglen.", + ["T"] = "Iverron\'s Antidote", + }, + [3522] = { + ["D"] = "The antidote is ready, $N. Please see that Iverron drinks it.$B$BThere is something that you should know -- the antidote -- it will only remain viable for 5 minutes. You must get it to him in time.$B$BSpeed be with you, $N.", + ["O"] = "Bring Iverron\'s Antidote to Iverron before the time limit is up. Iverron can be found by the cave to the north.", + ["T"] = "Iverron\'s Antidote", + }, + [3523] = { + ["D"] = "Outstanding! My name is Belnistrasz, and I thank you for rescuing me. I had given myself up for dead... or worse, as a meal for these Scourge-infested vermin. Yes - I said Scourge all right; they\'ve brokered some sort of deal with the Quilboar here, and this nightmare is a result.$B$BListen... rather than just flee, I want to make a difference for all of our sakes. Would you be up to helping me out to that end? It\'s probably dangerous, but you seem to be the type not to worry about that too much.", + ["O"] = "If you agree to aid Belnistrasz, speak with him again and hand the Oathstone he gave you back to him.", + ["T"] = "Scourge of the Downs", + }, + [3524] = { + ["D"] = "Majestic sea creatures are known to launch themselves at the Darkshore coastline, beached there until they die. Lately, these beasts have been washing ashore in ever-increasing numbers. I\'ve been sent here by the Temple of the Moon to investigate, but the presence of murlocs along the water has made my research difficult.$B$BThere is a giant creature washed ashore just south of Auberdine that is ringed by the foul Greymist murlocs. Could you go there and retrieve bones from the creature for our study?", + ["O"] = "Recover Sea Creature Bones from the beached sea creature just south of Auberdine, and then return with it to Gwennyth Bly\'Leggonde in Auberdine.", + ["T"] = "Washed Ashore", + }, + [3525] = { + ["D"] = "Near the entrance is an idol that functions as a macabre oven for the Quilboar; the beasts... they literally consume their abductees from the Barrens. I can shut down the idol and bind them from using it again, but I need your aid in doing so. My plan: escort me to the idol. Once we arrive, I\'ll commence the ritual. I\'ll barely be able to communicate with you, let alone defend myself. Protect me while I shut down the idol. If they take me down, then it\'s all over for us.$B$BAre you with me?!", + ["O"] = "Escort Belnistrasz to the Quilboar\'s idol in Razorfen Downs.$B$BProtect Belnistrasz while he performs the ritual to shut down the idol.", + ["T"] = "Extinguishing the Idol", + }, + [3526] = { + ["D"] = "Expert engineering yields two distinct disciplines: gnome and goblin. Clearly, goblin engineering is the choice of all brilliant engineers. Learn to master the world through the judicious use of high explosives and fantastic gear!$B$B$N, read this manual. If you want to learn about goblin engineering, then take it to Nixx Sprocketspring in Gadgetzan. Remember - membership is permanent and prevents joining the other discipline, so make sure this is what you want before finishing his task.", + ["O"] = "If you wish to learn more about Goblin Engineering, take the Manual of Engineering Disciplines to Nixx Sprocketspring in Gadgetzan.", + ["T"] = "Goblin Engineering", + }, + [3527] = { + ["D"] = "The ancient prophecy of Mosh\'aru speaks of a way to contain the god Hakkar\'s essence. It was written on two tablets and taken to the troll city of Zul\'Farrak, west of Gadgetzan.$B$BBring me the Mosh\'aru tablets!$B$BThe first tablet is held by the long-dead troll Theka the Martyr. It is said his persecutors were cursed into scarabs and now scuttle about his shrine.$B$BThe second tablet is held by the hydromancer Velratha, near the sacred pool of Gahz\'rilla.$B$BWhen you have the tablets, bring them to me.", + ["O"] = "Bring the First and Second Mosh\'aru Tablets to Yeh\'kinya in Tanaris.", + ["T"] = "The Prophecy of Mosh\'aru", + }, + [3528] = { + ["D"] = "Now it is time to capture the essence of the avatar of Hakkar.$B$BTake the Egg of Hakkar to the Sanctum of the Fallen God in the Sunken Temple in Azeroth. Invoke the egg\'s power to stir the dead god.$B$BHe will send his minions against you. Defeat his bloodrinkers and take their Hakkari blood, then use the blood to dowse the eternal flames that hold Hakkar\'s spirit. When all the flames go out, the avatar of Hakkar will enter our world.$B$BDefeat him, and place his essence within the egg of Hakkar.", + ["O"] = "Bring the Filled Egg of Hakkar to Yeh\'kinya in Tanaris.", + ["T"] = "The God Hakkar", + }, + [3529] = { + ["D"] = "", + ["O"] = "", + ["T"] = "", + }, + [3541] = { + ["D"] = "I have a fence in Orgrimmar. He resides in The Drag. He\'s difficult to nail down if you don\'t know where to look, but if you go looking in one of the highest buildings there you should have no problem finding him.$B$BDo me a favor though, don\'t go shouting to all of Kalimdor that he\'s there and what his business is--it\'d be bad for both of us.$B$BHe\'ll give us more than a fair price for the Tablet of Jin\'yael. I\'m not sure why, but you should have seen how excited he was to hear about its whereabouts.", + ["O"] = "Bring the Tablet of Jin\'yael to Jes\'rimon in Orgrimmar.", + ["T"] = "Delivery to Jes\'rimon", + }, + [3542] = { + ["D"] = "Andron Gant is my next contact. He usually holds himself up in the Undercity... right near the Apothecarium.$B$BHe was a little more loose-lipped when it came to speaking about what he wanted the Tablet for. Apparently some of the mages of Undercity are looking to study some of the arcane spells the highborne used. They think this tablet will help them. Markri was adept at summoning creatures; especially elementals.$B$BTake the Tablet of Markri and return to me for your part of the reward.", + ["O"] = "Bring the Tablet of Markri to Andron Gant in Undercity.", + ["T"] = "Delivery to Andron Gant", + }, + [3561] = { + ["D"] = "This final tablet goes to someone very dangerous, $N. Heed me when I tell you that I trust this person far less than anyone else I\'ve asked you to meet with.$B$BArchmage Xylem has a tower up in the hills overlooking Azshara. He\'s human, but he acts like no human I\'ve met... or killed. He exudes power, and I dare not ask him what he plans on doing with the tablet.$B$BHe came to me, but told me that his bodyguard Sanath would help me get to the tower when I was ready to meet him. Look north for Sanath.", + ["O"] = "Bring the Tablet of Sael\'hai to Archmage Xylem in Azshara.", + ["T"] = "Delivery to Archmage Xylem", + }, + [3562] = { + ["D"] = "Take this note to Jediga. Tell her the payment will be here for her when she returns. And tell her I am pleased with her work.$B$BGo swiftly, $N. Tell your master I will be awaiting her here.", + ["O"] = "Deliver Magatha\'s Note to Jediga in Azshara.", + ["T"] = "Magatha\'s Payment to Jediga", + }, + [3563] = { + ["D"] = "Take this letter to Jediga. Let her know that our deal has been beneficial and I be pleased with her work.$B$BYou tell her she come back to Orgrimmar fast and Jes\'rimon make sure he take good care of her.$B$BTell her that, and maybe in the future I have need of your services again, $N.", + ["O"] = "Deliver Jes\'rimon\'s Note to Jediga in Azshara.", + ["T"] = "Jes\'rimon\'s Payment to Jediga", + }, + [3564] = { + ["D"] = "Here... take... this to Jediga. Good luck to ya!", + ["O"] = "Deliver Andron\'s Note to Jediga in Azshara.", + ["T"] = "Andron\'s Payment to Jediga", + }, + [3565] = { + ["D"] = "What is it? Oh yes, your payment. Of course.$B$BTake this and be off with you. I\'m sure Jediga is awaiting oh so patiently for your return.", + ["O"] = "Deliver Xylem\'s Note to Jediga in Azshara.", + ["T"] = "Xylem\'s Payment to Jediga", + }, + [3566] = { + ["D"] = "It... It... It was all a trap.$B$BForgive... me.$B$BKill the bastard... Kill him for us... for Thorius.", + ["O"] = "Slay Lathoric the Black and Obsidion, and return to Thorius in Ironforge with the Head of Lathoric the Black and the Heart of Obsidion. ", + ["T"] = "Rise, Obsidion!", + }, + [3567] = { + ["D"] = "", + ["O"] = "", + ["T"] = "To the Top", + }, + [3568] = { + ["D"] = "See that tauren behind me--the one who looks like she\'s going to be ill at any moment? She was in Azshara recently. She claims she was wounded by some naga while making her way through the Ruins of Eldarath.$B$BAfter fighting off a few of them, she took a break on the beach and drank from one of the tide pools. Now she\'s feeling nauseous... among other things.$B$BI\'d like to find out what she drank. Take this box, in it are some empty vials I labeled. Fill each at different pools and come back.", + ["O"] = "Fill all 4 Empty Vials at the tide pools along the coast of the Ruins of Eldarath in Azshara before returning to Chemist Cuely.", + ["T"] = "Seeping Corruption", + }, + [3569] = { + ["D"] = "Give this to Thersa. Perhaps it will cure her... perhaps not. We really won\'t know until after she drinks it.", + ["O"] = "Give Cuely\'s Elixir to Thersa Windsong in Undercity.", + ["T"] = "Seeping Corruption", + }, + [3570] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Seeping Corruption", + }, + [3581] = { + ["D"] = "Imagine yourself racing across the plains, through forests and over mountains, the wind in your face... Traveling over unseen territory", + ["O"] = "Speak to Saern Priderunner again to learn the Plainsrunning skill.", + ["T"] = "Plainsrunning", + }, + [3601] = { + ["D"] = "Kim\'jael indeed!! Do you know what Kim\'jael means to the Blood elves, $N? Little rat... or something like that. The big bullies!$B$BThey hired me to help them scout the area looking for some sort of lost treasures. Of course I jumped aboard the moment they said \"treasure\" and the amount they were willing to pay, but of course, they turned on me and tried to kill me... ME!$B$BGoes to show you, you can\'t trust a Blood elf.$B$BThe problem is, they still have my equipment and I can\'t get it back. Help me out?", + ["O"] = "Search the Thalassian Base Camp for Kim\'jael\'s Compass, Scope, Stuffed Chicken and Wizzlegoober, then return them to him in Azshara.", + ["T"] = "Kim\'jael Indeed!", + }, + [3602] = { + ["D"] = "The ancient cliff giants of the southern region of Azshara consume the rock and buildings of the land for sustenance. The excrement from their consumption is a highly malleable and extremely strong crystal known as Azsharite.$B$BThe formations litter the southern arc, but few are ever recovered due to the extremely violent nature of the giants.$B$BYou are to venture south and recover enough of the Azsharite for the creation of the weapon\'s body. My felhounds will aid in the recovery of the crystal.", + ["O"] = "Recover twenty Crystallized Azsharite from southern Azshara. You may use the Felhound to assist you in \'sniffing\' out the location of cleverly hidden deposits.$B$BReturn to Loramus when the task is complete.", + ["T"] = "Azsharite", + }, + [3621] = { + ["D"] = "The weapons are ready to be forged. You must take the tempered azsharite to one with the ability to harness fel energy.$B$BIn Stranglethorn Vale such a blacksmith exists. Galvan the Ancient, leader of the Mithril Order, will craft the weapons to your specifications. You will find his encampment between Zul\'Gurub and the Mosh\'Ogg ogre mound.$B$BMay your determination and faith carry you through this ordeal. Should you fail, know that your God smiles down upon you, mortal.", + ["O"] = "Take the Shipment to Galvan the Ancient in Stranglethorn Vale.", + ["T"] = "The Formation of Felbane", + }, + [3622] = { + ["D"] = "", + ["O"] = "", + ["T"] = "", + }, + [3625] = { + ["D"] = "$N, the creation of each weapon will take some time.$B$BAdditionally, you may only use the power of the Felcurse once per three minutes. Its weakening properties against Razelikh the Defiler and his minions may be variable in duration. This is why you must release the Felcurse only when the moment is right!$B$BNow give me a moment to craft your weapon, $N.", + ["O"] = "Wait for Galvan to finish forging the weaponry.", + ["T"] = "Enchanted Azsharite Fel Weaponry", + }, + [3626] = { + ["D"] = "The hour of redemption is near, $N. You must return to the Blasted Lands with your new-found weaponry and speak with the Fallen Hero of the Horde to receive your final objective.", + ["O"] = "Return to the Fallen Hero of the Horde.", + ["T"] = "Return to the Blasted Lands", + }, + [3627] = { + ["D"] = "To reach the Defiler, you must first destroy the triad of power and recover the amulet pieces. When you recover all three pieces, return to me and I shall give you further instruction.$B$BGo $N! To the Blasted Lands! Sevine, Allistarj, and Grol must fall!", + ["O"] = "Slay Grol the Destroyer, Lady Sevine, and Archmage Allistarj. From their corpses take the Amulet of Grol, the Amulet of Sevine, and the Amulet of Allistarj.$B$BRemember to USE your Enchanted Azsharite Fel Weaponry to weaken the triad. They cannot be killed otherwise - but use them wisely...", + ["T"] = "Uniting the Shattered Amulet", + }, + [3628] = { + ["D"] = "Razelikh\'s lair is atop the highest mountain in the Blasted Lands. The only way to the lair is through the use of the teleport runes near the mountain. As long as you hold the amulet, you can freely transport up to the lair. Once you reach the lair, you must conjure the beast. The amulet is your key, $N. Use it on the Altar of the Defiler.$B$BShould you defeat the Defiler, bring back his horn. It will become a symbol of hope for all that view it - proof that heroes do exist in this war torn world.", + ["O"] = "Destroy Razelikh the Defiler and return the Severed Horn of the Defiler to the Fallen Hero of the Horde. You will also need to return the Ward of the Defiler so that the Fallen Hero can destroy it, preventing it from ever falling into the wrong hands.", + ["T"] = "You Are Rakh\'likh, Demon", + }, + [3629] = { + ["D"] = "Expert engineering yields two distinct disciplines: gnome and goblin. I only bother to mention goblin engineering because I\'m a fair trainer. They like to make things that blow up, and they rarely care what is in the way - even themselves.$B$B$N, read this manual. If you want to learn how to blow yourself up, then take it to Nixx Sprocketspring in Gadgetzan. Remember - membership is permanent and prevents joining the other discipline, so make sure this is what you want before finishing his task.", + ["O"] = "If you wish to learn more about Goblin Engineering, take the Manual of Engineering Disciplines to Nixx Sprocketspring in Gadgetzan.", + ["T"] = "Goblin Engineering", + }, + [3630] = { + ["D"] = "Engineering at the expert level breaks into two disciplines: gnome and goblin. Gnome engineering represents by far the superior of the two! It\'s about the construction of wonderful gadgets and devices that make life better!$B$B$N, read this manual. If you want to learn more on gnome engineering, then take that manual to Tinkmaster Overspark in Ironforge. Remember - membership is permanent and prevents joining the other discipline, so make sure you are sure before finishing his task!", + ["O"] = "If you wish to learn more about Gnome Engineering, take the Manual of Engineering Disciplines to Tinkmaster Overspark in Ironforge.", + ["T"] = "Gnome Engineering", + }, + [3631] = { + ["D"] = "Hmph. I say you\'re not prepared, but that is not my decision. Strahad feels otherwise, and it is his decision to make... this time.$B$BHe wishes to speak to you, and quickly. You\'ll find him still above Ratchet in the Barrens, at his little tower there with his acolytes.$B$BDo not dawdle long.", + ["O"] = "Speak to Strahad Farsan in the Barrens.", + ["T"] = "Summon Felsteed", + }, + [3632] = { + ["D"] = "Engineering at the expert level breaks into two disciplines: gnome and goblin. Gnome engineering represents by far the superior of the two! It\'s about the construction of wonderful gadgets and devices that make life better!$B$B$N, read this manual. If you want to learn more on gnome engineering, then take that manual to Tinkmaster Overspark here in Ironforge. Remember - membership is permanent and prevents joining the other discipline, so make sure you are sure before finishing his task!", + ["O"] = "If you wish to learn more about Gnome Engineering, take the Manual of Engineering Disciplines to Tinkmaster Overspark in Ironforge.", + ["T"] = "Gnome Engineering", + }, + [3633] = { + ["D"] = "Expert engineering yields two distinct disciplines: gnome and goblin. Clearly, goblin engineering is the choice of all brilliant engineers. Learn to master the world through the judicious use of high explosives and fantastic gear!$B$B$N, read this manual. If you want to learn about goblin engineering, then take it to Nixx Sprocketspring in Gadgetzan. Remember - membership is permanent and prevents joining the other discipline, so make sure this is what you want before finishing his task.", + ["O"] = "If you wish to learn more about Goblin Engineering, take the Manual of Engineering Disciplines to Nixx Sprocketspring in Gadgetzan.", + ["T"] = "Goblin Engineering", + }, + [3634] = { + ["D"] = "Engineering at the expert level breaks into two disciplines: gnome and goblin. While I think it is a waste, you should be aware of gnome specialization. They make items and gadgets that claim to change the world, but rarely often work.$B$B$N, read this manual. If you wish to learn how to make metal paper weights, then take that manual to Tinkmaster Overspark in Ironforge. Remember - membership is permanent and prevents joining the other discipline, so make sure you are sure before finishing his task!", + ["O"] = "If you wish to learn more about Gnome Engineering, take the Manual of Engineering Disciplines to Tinkmaster Overspark in Ironforge.", + ["T"] = "Gnome Engineering", + }, + [3635] = { + ["D"] = "Engineering at the expert level breaks into two disciplines: gnome and goblin. While I think it is a waste, you should be aware of gnome specialization. They make items and gadgets that claim to change the world, but rarely work.$B$B$N, read this manual. If you wish to learn how to make metal paper weights, then take the manual to Oglethorpe Obnoticus in Booty Bay. Remember - membership is permanent and prevents joining the other discipline, so make sure you are sure before finishing his task.", + ["O"] = "If you wish to learn more about Gnome Engineering, take the Manual of Engineering Disciplines to Oglethorpe Obnoticus in Booty Bay.", + ["T"] = "Gnome Engineering", + }, + [3636] = { + ["D"] = "The Scourge is a persistent threat to the Alliance, a fact I am sure you know quite well. Recently, we have come across some very peculiar findings, $N.$B$BIn the Barrens lies a horrid tangle of briars called Razorfen Downs. While once it was the home of simple quilboar, now it has become apparent that a pact was made with the Scourge, creating creatures far worse... They are now ruled by the lich, Amnennar the Coldbringer.$B$BAlign yourself with the Light, $N; put an end to this evil union.", + ["O"] = "Archbishop Bendictus wants you to slay Amnennar the Coldbringer in Razorfen Downs.", + ["T"] = "Bring the Light", + }, + [3637] = { + ["D"] = "Engineering at the expert level breaks into two disciplines: gnome and goblin. While I think it is a waste, you should be aware of gnome specialization. They make items and gadgets that claim to change the world, but rarely work.$B$B$N, read this manual. If you wish to learn how to make metal paper weights, then take the manual to Oglethorpe Obnoticus in Booty Bay. Remember - membership is permanent and prevents joining the other discipline, so make sure you are sure before finishing his task.", + ["O"] = "If you wish to learn more about Gnome Engineering, take the Manual of Engineering Disciplines to Oglethorpe Obnoticus in Booty Bay.", + ["T"] = "Gnome Engineering", + }, + [3638] = { + ["D"] = "Goblin engineering is about practical uses for high profit and higher explosive power! Our schemata allow us to make powerful bombs and mighty weaponry; the manual you read covered this.$B$BThe manual also covered our ages old oath of secrecy on our schemata. Once you become a goblin engineer, that\'s that. There is no access to gnome engineering at all.$B$BIf you still want to become a goblin engineer, sign this document pledging life-long secrecy and speak with me again. Think about it carefully, $N.", + ["O"] = "If you agree to become a Goblin Engineer, then right-click on the Pledge of Secrecy and speak once more with Nixx Sprocketspring in Gadgetzan.", + ["T"] = "The Pledge of Secrecy", + }, + [3639] = { + ["D"] = "As your mentor, I want samples of your work. You\'re a skilled engineer; there is no question of this, $N. What I hope to do though is analyze them for ways to emphasize goblin-oriented techniques in your future efforts. I need the following: twenty big iron bombs, twenty sticks of solid dynamite, and five explosive sheep - and keep the safeties armed!$B$BSubmit these items to me and I will issue you your own Goblin Engineer Membership Card; it is required for access to all goblin engineering trainers!", + ["O"] = "Bring 20 Big Iron Bombs, 20 Solid Dynamite, and 5 Explosive Sheep to Nixx Sprocketspring in Gadgetzan.", + ["T"] = "Show Your Work", + }, + [3640] = { + ["D"] = "Gnome engineering is about engineering theory shaped to serve our needs! Our schemata allow us to make devices that control the world around us; the manual you read covered this.$B$BThe manual also covered our ages old oath of secrecy on our schemata. Once you become a gnome engineer, that\'s that. There is no access to goblin engineering at all.$B$BIf you still want to become a gnome engineer, sign this document pledging life-long secrecy and speak with me again. Think about it carefully, $N.", + ["O"] = "If you agree to become a Gnome Engineer, then right-click on the Pledge of Secrecy and speak once more with Tinkmaster Overspark in Ironforge.", + ["T"] = "The Pledge of Secrecy", + }, + [3641] = { + ["D"] = "As your mentor, I want some samples of your work. You\'re a skilled engineer; there is no question of this, $N. What I hope to do though is to analyze your work for ways to emphasize gnome-oriented techniques in your future efforts. I need the following samples: six mithril tubes, an accurate scope, and two advanced target dummies.$B$BSubmit these items to me and I will issue you your own Gnome Engineer Membership Card; it is required for access to all gnome engineering trainers!", + ["O"] = "Bring 6 Mithril Tubes, an Accurate Scope, and 2 Advanced Target Dummies to Tinkmaster Overspark in Ironforge.", + ["T"] = "Show Your Work", + }, + [3642] = { + ["D"] = "Gnome engineering is about engineering theory shaped to serve our needs! Our schemata allow us to make devices that control the world around us; the manual you read covered this.$B$BThe manual also covered our ages old oath of secrecy on our schemata. Once you become a gnome engineer, that\'s that. There is no access to goblin engineering at all.$B$BIf you still want to become a gnome engineer, sign this document pledging life-long secrecy and speak with me again. Think about it carefully, $N.", + ["O"] = "If you agree to become a Gnome Engineer, then right-click on the Pledge of Secrecy and speak once more with Oglethrope Obnoticus in Booty bay.", + ["T"] = "The Pledge of Secrecy", + }, + [3643] = { + ["D"] = "As your mentor, I want some samples of your work. You\'re a skilled engineer; there is no question of this, $N. What I hope to do though is to analyze your work for ways to emphasize gnome-oriented techniques in your future efforts. I need the following samples: six mithril tubes, an accurate scope, and two advanced target dummies.$B$BSubmit these items to me and I will issue you your own Gnome Engineer Membership Card; it is required for access to all gnome engineering trainers!", + ["O"] = "Bring 6 Mithril Tubes, an Accurate Scope, and a 2 Advanced Target Dummies to Oglethorpe Obnoticus in Booty Bay.", + ["T"] = "Show Your Work", + }, + [3644] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Membership Card Renewal", + }, + [3645] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Membership Card Renewal", + }, + [3646] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Membership Card Renewal", + }, + [3647] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Membership Card Renewal", + }, + [3661] = { + ["D"] = "Wildkin are quite unpredictable creatures, $N. Capable of incredible gentleness, these creatures will show extreme ferocity if something they deem important is threatened.$B$BThese beasts are rumored to have been created by Elune, and I am interested in finding if this is really the truth.$B$BRecently, I heard about a population of wildkin living in the Hinterlands -- Vicious, Primitive, and Savage Owlbeasts. They can be found amongst the wildlife there. Will you gather some wildkin feathers for me?", + ["O"] = "Collect 15 Wildkin Feathers from the Hinterlands for Erelas Ambersky in Rut\'theran Village.", + ["T"] = "Favored of Elune?", + }, + [3681] = { + ["D"] = "Sorry to interrupt your travels, $r, but I thought you should know that word was sent from Stormwind recently asking that paladins report there for training.$B$BIf I didn\'t know any better, I\'d say your close to reaching a special time and it\'s time you started studying the Tomes.$B$BLook for Duthorian Rall in Stormwind. He usually trains paladins in the Cathedral of Light.", + ["O"] = "Speak with Duthorian Rall in Stormwind.", + ["T"] = "Tome of Divinity", + }, + [3701] = { + ["D"] = "Venture to the smoldering ruins of Thaurissan in the Burning Steppes and gather as much information as possible.$B$BIt is said that mysterious relics litter the ruins. Perhaps you should start your search there, $N. Beware the Thaurissan guardians: Assassins that guard the ruins, keeping whatever secrets may still be buried there protected.", + ["O"] = "Venture to the Ruins of Thaurissan in the Burning Steppes and recover information from the Thaurissan Relics. Return to Royal Historian Archesonus when you have recovered the information.", + ["T"] = "The Smoldering Ruins of Thaurissan", + }, + [3702] = { + ["D"] = "Would you like to hear a brief history of the Dark Iron dwarves?", + ["O"] = "Listen to Royal Historian Archesonus recant the history of Thaurissan.", + ["T"] = "The Smoldering Ruins of Thaurissan", + }, + [3721] = { + ["D"] = "", + ["O"] = "", + ["T"] = "An OOX of Your Own", + }, + [3741] = { + ["D"] = "My friend Hilary lost her necklace, and we can\'t find it. We\'ve been fishing all day right here, and we looked around here already. The only thing I can think of is that it fell into the lake. Our parents don\'t want us to swim in the lake... my mom says there\'s some mean things underwater, but you look like you aren\'t scared of mean things.$B$BCould you find it for her, please?", + ["O"] = "Find Hilary\'s Necklace, and return it to Hilary in Lakeshire.", + ["T"] = "Hilary\'s Necklace", + }, + [3761] = { + ["D"] = "The soil of Un\'Goro Crater is reportedly enriched with potent magical qualities. The Cenarion Circle wants to study this soil in large quantities; go into the wilds of Un\'Goro and acquire enough of it for our continued research.$B$BThe rich soil will stick out in piles from time to time, and some of the beasts might have usable samples on their being. Take them all outside to Ghede; just look for the piles of dirt and the tauren barking orders. He means well, just don\'t get him riled up though!", + ["O"] = "Bring 20 Un\'Goro Soil samples to Ghede on the Elder Rise of Thunder Bluff.", + ["T"] = "Un\'Goro Soil", + }, + [3762] = { + ["D"] = "Excuse me $c, but I\'d like just a moment of your time if possible.$B$BThe Cenarion Circle in Thunder Bluff is most interested in seasoned adventurers such as yourself to lend them aid in a vital research project. While I do not know the specifics, I can inform you that none other than Hamuul Runetotem is spearheading this research.$B$BPlease - if you are interested, speak with him directly on the Elder Rise within Thunder Bluff proper.", + ["O"] = "Speak with Arch Druid Hamuul Runetotem in Thunder Bluff.", + ["T"] = "Assisting Arch Druid Runetotem", + }, + [3763] = { + ["D"] = "Excuse me $c, but I\'d like just a moment of your time if possible.$B$BThe Cenarion Circle in Darnassus is looking for seasoned adventurers such as yourself to lend them aid in a vital research project. While I do not know the specifics, I can inform you that none other than Arch Druid Fandral Staghelm is spearheading this research.$B$BPlease - if you are interested, speak with him directly in the Cenarion Enclave within Darnassus proper.", + ["O"] = "Speak with Arch Druid Fandral Staghelm in Darnassus.", + ["T"] = "Assisting Arch Druid Staghelm", + }, + [3764] = { + ["D"] = "The soil of Un\'Goro Crater is reportedly enriched with potent magical qualities. I want to know facts from falsehoods; go into the wilds of Un\'Goro and acquire enough quality samples of soil for our continued study.$B$BYou may think that collection tasks are beneath you; that sort of attitude does not endear yourself to me or the Cenarion Circle. Bring the samples to Jenal, who is no doubt wasting time outside behind this tree; just look for the piles of dirt. He will handle the logistics - not I.", + ["O"] = "Bring 20 Un\'Goro Soil samples to Jenal at the Cenarion Enclave in Darnassus.", + ["T"] = "Un\'Goro Soil", + }, + [3765] = { + ["D"] = "Stormwind -- such a bustling hub of activity.$b$bI have traveled from afar to seek help. Often it is heard that brave adventurers roam these city streets.$b$bMy brother, Gershala, requires assistance in Darkshore. He resides in the seaside town of Auberdine.$b$bThe journey is a long and epic one. It is for this reason that I ask the help of a seasoned $c such as yourself.", + ["O"] = "Travel to Gershala Nightwhisper in Auberdine.", + ["T"] = "The Corruption Abroad", + }, + [3781] = { + ["D"] = "With what we call an Evergreen Pouch, we have cultivated Tharlendris seeds in the soil from Un\'Goro Crater. These seeds blossom into an array of random, potent herbs. One result is morrowgrain, a mysterious herb we know little about; I intend to unravel this mystery.$B$BTake this to Mathrengyl downstairs, and he will give you some seeds so you can get started. If you run out, you will need to purchase more from him.", + ["O"] = "Take the Arch Druid\'s Seed Voucher to Mathrengyl Bearwalker in the Cenarion Enclave of Darnassus.", + ["T"] = "Morrowgrain Research", + }, + [3782] = { + ["D"] = "With what we call an Evergreen Pouch, we have cultivated Tharlendris seeds in the soil from Un\'Goro Crater. These seeds have blossomed into an array of random, potent herbs. One result is morrowgrain, a mysterious herb we know little about; I very much hope to unravel this mystery for the Circle.$B$BTake this voucher over to my daughter Bashana, and she will give you some seeds so you may assist us. If you run out, you will need to purchase more from her.", + ["O"] = "Take the Seed Voucher to Bashana Runetotem in Thunder Bluff.", + ["T"] = "Morrowgrain Research", + }, + [3783] = { + ["D"] = "My friends are always coming up with great ideas. I\'ve never felt like I could match them... until today! I just drew up the plans for something great! If you promise not to tell, I\'ll let you in on the secret... $B$BI\'m going to make a mechanical yeti! Not only are my friends sure to be freaked out when they see it, but when they get over that, I know they\'ll be impressed!$B$BI need thick yeti fur from the ice thistle yeti to start with. Will you help? You\'ll find them to the southeast.", + ["O"] = "Collect 10 Thick Yeti Furs for Umi Rumplesnicker in Everlook.", + ["T"] = "Are We There, Yeti?", + }, + [3784] = { + ["D"] = "Excuse me $c, but I\'d like just a moment of your time if possible.$B$BThe Cenarion Circle in Thunder Bluff is most interested in seasoned adventurers such as yourself to lend them aid in a vital research project. While I do not know the specifics, I can inform you that none other than Hamuul Runetotem is spearheading this research.$B$BPlease - if you are interested, speak with him directly on the Elder Rise within Thunder Bluff proper.", + ["O"] = "Speak with Arch Druid Hamuul Runetotem in Thunder Bluff.", + ["T"] = "Assisting Arch Druid Runetotem", + }, + [3785] = { + ["D"] = "Here\'s your Evergreen Pouch that you\'ll need to use the Tharlendis seeds with. You also need to have Un\'Goro soil samples on hand to use as fertilizer for the seeds. Just use the pouch when you have everything; the pouch will take care of the rest.$B$BWhen you have enough morrowgrain, bring them here to me in the enclave. Please don\'t bother the Arch Druid; he\'s a very busy man, and he doesn\'t need to be disturbed every time someone returns with another batch of morrowgrain!", + ["O"] = "Use an Evergreen Pouch with a Packet of Tharlendis Seeds and two Un\'Goro Soil samples to try and cultivate samples of Morrowgrain.$B$BBring 10 Morrowgrain to Mathrengyl Bearwalker in Darnassus.", + ["T"] = "Morrowgrain Research", + }, + [3786] = { + ["D"] = "Here\'s your Evergreen Pouch that you\'ll need to use the Tharlendis seeds with. You also need to have Un\'Goro soil samples on hand to use as fertilizer for the seeds. Just use the pouch when you have everything; the pouch will take care of the rest.$B$BWhen you have enough morrowgrain, bring them to me here on Elder Rise. Please don\'t bother the Arch Druid; he\'ll be very busy with the research, as well as the multitude of concerns he has!", + ["O"] = "Use an Evergreen Pouch with a Packet of Tharlendis Seeds and two Un\'Goro Soil samples to try and cultivate samples of Morrowgrain.$B$BBring 10 Morrowgrain to Bashana Runetotem in Thunder Bluff.", + ["T"] = "Morrowgrain Research", + }, + [3787] = { + ["D"] = "Excuse me, friend...$B$BA colleague of mine would like to speak with you about the research you are doing in conjunction with the Cenarion Circle. He is a druid by the name of Quintis Jonespyre, and he resides in Feathermoon Stronghold, Feralas. He would like to confer with you about morrowgrain... and he very much would like for you to keep our discussion from the ears of the Arch Druid.$B$BIf you\'re interested, speak with him; no doubt, all will be revealed once you do.", + ["O"] = "Speak with Quintis Jonespyre in Feathermoon Stronghold.", + ["T"] = "Jonespyre\'s Request", + }, + [3788] = { + ["D"] = "Excuse me, friend...$B$BA colleague of mine would like to speak with you about the research you are doing in conjunction with the Cenarion Circle. He is a druid by the name of Quintis Jonespyre, and he resides here in Feathermoon Stronghold. He would like to confer with you about morrowgrain... and he very much would like for you to keep our discussion from the ears of the Arch Druid.$B$BIf you\'re interested, speak with him; no doubt, all will be revealed once you do.", + ["O"] = "Speak with Quintis Jonespyre in Feathermoon Stronghold.", + ["T"] = "Jonespyre\'s Request", + }, + [3789] = { + ["D"] = "Excuse me $c, but I\'d like just a moment of your time if possible.$B$BThe Cenarion Circle in Darnassus is looking for seasoned adventurers such as yourself to lend them aid in a vital research project. While I do not know the specifics, I can inform you that none other than Arch Druid Fandral Staghelm is spearheading this research.$B$BPlease - if you are interested, speak with him directly in the Cenarion Enclave within Darnassus proper.", + ["O"] = "Speak with Arch Druid Fandral Staghelm in Darnassus.", + ["T"] = "Assisting Arch Druid Staghelm", + }, + [3790] = { + ["D"] = "Excuse me $c, but I\'d like just a moment of your time if possible.$B$BThe Cenarion Circle in Darnassus is looking for seasoned adventurers such as yourself to lend them aid in a vital research project. While I do not know the specifics, I can inform you that none other than Arch Druid Fandral Staghelm is spearheading this research.$B$BPlease - if you are interested, speak with him directly in the Cenarion Enclave within Darnassus proper.", + ["O"] = "Speak with Arch Druid Fandral Staghelm in Darnassus.", + ["T"] = "Assisting Arch Druid Staghelm", + }, + [3791] = { + ["D"] = "Let me to be frank with you, $N. I\'m interested - nay, concerned with why the Arch Druid in Darnassus is using the name of the Cenarion Circle as well as the Circle\'s resources to procure vast amounts of morrowgrain. I\'m a researcher - curses are my specialty. I\'ve heard that morrowgrain, under the right conditions, exude qualities like other herbs used in primitive curses.$B$BI want to know more, and I ask for your help. Bring me ten morrowgrain, and I will be sure to take care of you.", + ["O"] = "Bring 10 Morrowgrain to Quintis Jonespyre in Feathermoon Stronghold.", + ["T"] = "The Mystery of Morrowgrain", + }, + [3792] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Morrowgrain to Feathermoon Stronghold", + }, + [3801] = { + ["D"] = "Greetings, $N. I am Franclorn Forgewright. Yes, the Franclorn Forgewright responsible for the stonewrought method of architecture. You have undoubtedly passed through or stood upon one of my creations in your adventures across our war torn world.$B$BYou are probably wondering why I am here and what it is that I want from you - both valid questions.$B$BI need your assistance, of course. In exchange for your assistance, I shall grant you the key to the depths of my accursed city.", + ["O"] = "Speak with Franclorn Forgewright if you are interested in obtaining a key to the city major.", + ["T"] = "Dark Iron Legacy", + }, + [3802] = { + ["D"] = "You will find Fineous Darkvire beyond the Ring of Law, in the Hall of Crafting. Kill the miserable cur and recover Ironfel.$B$BTake Ironfel to the Shrine of Thaurissan and place the hammer in its rightful place: In the hands of the statue erected in my honor.$B$BWhen this is done, the compartment in which I stored the master key will open. More importantly, Ironfel will remain forever in my grasp. Should they make an attempt to remove the hammer; both the statue and hammer will shatter, lost forever.", + ["O"] = "Slay Fineous Darkvire and recover the great hammer, Ironfel. Take Ironfel to the Shrine of Thaurissan and place it on the statue of Franclorn Forgewright.", + ["T"] = "Dark Iron Legacy", + }, + [3803] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Morrowgrain to Darnassus", + }, + [3804] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Morrowgrain to Thunder Bluff", + }, + [3821] = { + ["D"] = "Sha\'ni was sent to investigate reports of strange ritualistic activity coming from the Firegut ogres of the Burning Steppes over three weeks ago.$B$BGoretooth tells me that he hasn\'t heard from anyone in that platoon and that it\'s best that I move on and focus on the task at hand. Can you believe it? That\'s my wife!$B$BI can\'t leave my post, $N, but I must know what became of Sha\'ni. Travel to the Burning Steppes and search for her.", + ["O"] = "Venture forth to the Burning Steppes and find out what became of Sha\'ni Proudtusk.", + ["T"] = "Dreadmaul Rock", + }, + [3822] = { + ["D"] = "My whole platoon was captured, $N. All were slain - except me.$B$BTheir leader, Krom\'Grul, wanted to save me for some sort of ritual.$B$BI was chained to this altar and brutalized by the beast. My physical being ceased functioning after an hour of this torture. The beast then ripped my wedding nose-ring off of my face and stuck it on his finger. I had never seen such savagery!$B$BFind Krom\'Grul and kill him! Take my ring back to Thal\'trak.$B$BAnd $N, tell him that we will meet again... in another life. ", + ["O"] = "Recover Sha\'ni\'s Nose-Ring from Krom\'Grul and return it to Thal\'trak in Kargath. Search the various caves and mines in Dreadmaul Rock.", + ["T"] = "Krom\'Grul", + }, + [3823] = { + ["D"] = "We must strike at our enemies before they strike at us!$B$BI\'ll make this brief, soldier.$B$BThe Firegut ogres of the Burning Steppes are allies of the Blackrock orcs. They work closely with those vile orcs, keeping the mineral rich Dreadmaul Rock guarded and the supply lines open at all times.$B$BLeave your mark, $N. Cripple their forces and return to me when the job is done.$B$B$B$BI WILL KILL YOU, WINKY!", + ["O"] = "Slay 15 Firegut Ogre-Mages, 7 Firegut Ogres, and 7 Firegut Ogre Brutes, and return to Oralius when you are finished.", + ["T"] = "Extinguish the Firegut", + }, + [3824] = { + ["D"] = "They\'re reeling I tell you! Our next strike must be decisive.$B$BThe brute lord, Gor\'tesh, must be slain. More importantly, his head must be returned to me so that I may prepare the third phase of our attack on the Firegut ogres.$B$BBe warned, soldier, Gor\'tesh rules not from Dreadmaul Rock but from a Blackrock orc structure to the west of Dreadmaul Rock.$B$BYour orders, then, are simple. Find Gor\'tesh and chop off his fat head. Return to me when the job is done.$B$BSHUT UP, WINKY!", + ["O"] = "Find Gor\'tesh, somewhere to the west of Dreadmaul Rock. Kill Gor\'tesh and then take Gor\'tesh\'s Lopped Off Head back to Oralius in Burning Steppes.", + ["T"] = "Gor\'tesh the Brute Lord", + }, + [3825] = { + ["D"] = "Just one last thing you must do, soldier.$B$BI\'ve taken the liberty of putting Gor\'tesh\'s head on a pike. Now all you have to do is take this head to the top of Dreadmaul Rock and stick it into the ground. Once you do that, watch as those cowardly ogres run for their lives! After you\'ve had your fun, come back to me and I\'ll reward you for all of your hard work.$B$B", + ["O"] = "Take Gor\'tesh\'s Lopped Off Head and place it at the top of Dreadmaul Rock. Look for a soft dirt mound to plant the pike.", + ["T"] = "Ogre Head On A Stick = Party", + }, + [3841] = { + ["D"] = "Oh, hello, $N. I\'m so glad to see you again. How was your trip to Darnassus?$B$BWell, you\'ll be happy to know that we\'ve made quite a bit of progress while you\'ve been gone. We even saved a nest full of eggs. Unfortunately, the mother died before we got to her.$B$BSay, would you want one for a pet? They look to hatch soon, so they\'ll need a good $Gfather:mother;. What do you say?$B$BIf you\'re really interested, take one of the eggs to Quentin at the race tracks in Shimmering Flats. He\'ll tell you more.", + ["O"] = "Speak to Quentin in Thousand Needles.", + ["T"] = "An Orphan Looking For a Home", + }, + [3842] = { + ["D"] = "The Moonweavers, huh? Most intriguing. I wish the sprite darters could truly appreciate what it means to have those two look after them. They are both quite capable.$B$BSo, they gave you the egg as a gift. Well, then you should be responsible for it for as long as you desire. It appears it\'s almost ready to hatch, but we should ensure it\'s healthy and no damage has been done to it.$B$BI only need two elixirs of fortitude for a small spell to protect the egg. I have the rest of the components here with me.", + ["O"] = "Bring 2 Elixir of Fortitudes to Quentin in Thousand Needles.", + ["T"] = "A Short Incubation", + }, + [3843] = { + ["D"] = "A magnificent specimen, $N. If this creature survives gestation, then it\'ll be a healthy pet indeed!$B$BThere is one last thing I would suggest doing if you plan on following through with this--head to Aerie Peak in the Hinterlands. Speak to a dwarf there named Agnar Beastamer, he\'s a master animal handler and should be able to guide you in the final steps of incubation.$B$BBut hurry, $N, this egg is fragile and will not last long without proper care.", + ["O"] = "Take your Fragile Sprite Darter Egg to the Hinterlands and speak to Agnar Beastamer, but hurry, you only have 1 hour to find him before the hatchling within the egg dies.", + ["T"] = "The Newest Member of the Family", + }, + [3844] = { + ["D"] = "A destroyed raft rests along the shoreline. Considering this is only a small pond, it is not clear as to how it ended up here, although looking at the trees tells you that the water level may not be constant.$B$BPerhaps a little exploration in the area might uncover more clues...", + ["O"] = "Look around in the pond for a clue about who this wrecked raft may belong to.", + ["T"] = "It\'s a Secret to Everybody", + }, + [3845] = { + ["D"] = " Grabbing onto it, you pull the pack back to the shore. Perhaps if you examine the items inside the pack, you might find out more about who it belongs to.$B$BThere are a few stray travelers at Marshal\'s Refuge. Perhaps you might find out more there.", + ["O"] = "Examine the items inside the pack and bring them to their owner.", + ["T"] = "It\'s a Secret to Everybody", + }, + [3861] = { + ["D"] = "\"Cluck... cluck... cluck... BACAW!$B$BCluck... cluck... cluck.\"$B$BThe chicken looks up at you and then starts to scratch its claws into the ground. You think it is spelling out a word, but you are not sure what it is. Could it be... S-A-L-D-E-A-N? Before you can ask, the chicken turns away and goes about its business.", + ["O"] = "Find some Special Chicken Feed and return to your befriended chicken. When you find it, /cheer at it before trying to give it the Special Chicken Feed.", + ["T"] = "CLUCK!", + }, + [3881] = { + ["D"] = "I don\'t know how you made it here, but you\'re a sight for sore eyes! I\'m Williden Marshal, and I lead a non-aligned expedition troupe. Our latest and greatest endeavor has met with what seems like countless disasters, the most serious of which being that we underestimated the savagery of Un\'Goro Crater!$B$BAs we fled our base camps in the southwestern and northeastern parts of the crater, we left behind vital supplies. You look like you\'re capable enough - can you help us by getting them back?", + ["O"] = "Bring a Crate of Foodstuffs and Research Equipment to Williden Marshal in Un\'Goro Crater.", + ["T"] = "Expedition Salvation", + }, + [3882] = { + ["D"] = "You\'d think that being chief digger for Marshal Expeditions means I like digging. There might be worse things to do in this world... but none really leap to mind.$B$BWe were supposed to be digging in Terror Run - FANTASTIC name by the way - for dead stegodons and diemetradons. Well, there are plenty of live ones there too! Wil and Hol are still all about studying this death trap, so we need those dinosaur bones. Between you and me though, bringing some from live ones will work out just as well.", + ["O"] = "Bring 8 Dinosaur Bones to Spark Nilminer in Un\'Goro Crater.", + ["T"] = "Roll the Bones", + }, + [3883] = { + ["D"] = "Just because we\'ve suffered a setback doesn\'t mean that research must stop! We were investigating the Gorishi insects in the southern part of the crater before winding up here. Their presence is alien to the ecology of Un\'Goro, and we want to find out why.$B$BIn their hive network must be larval hatcheries. You can identify these places by their hanging larval spawns. Use this vial to take a sample of the hive wall near any of the hatcheries. Bring it back to me for study, but be careful!", + ["O"] = "Use the Scraping Vial to collect a Hive Wall Sample from one of the Gorishi hive hatcheries in Un\'Goro Crater. Look for the chambers with the hanging larval spawns.$B$BBring the Hive Wall Sample to Hol\'anyee Marshal in Un\'Goro Crater.", + ["T"] = "Alien Ecology", + }, + [3884] = { + ["D"] = "You have uncovered a mangled journal. Parts of it remain legible, with a Williden Marshal claiming ownership over the contents therein. If the journal is accurate, then Williden may be found somewhere in the northern part of the Crater; according to the journal, he and his companions sought higher ground from the savage beasts of the Crater once their base camps were overrun.", + ["O"] = "Return the journal to Williden Marshal somewhere in Un\'Goro Crater.", + ["T"] = "Williden\'s Journal", + }, + [3885] = { + ["D"] = "Escort Me and Dadanga!", + ["O"] = "Escort Petra and Dadanga!", + ["T"] = " The Gadgetzan Run", + }, + [3901] = { + ["D"] = "You\'ve shown your potential to the Forsaken under normal circumstances $N - now let\'s see you under pressure.$B$BThe Rattlecage skeletons, more mindless minions of the Lich King, are a tougher foe than the zombies you have faced thus far. Again, thin their numbers and prove yourself to the Forsaken. Do not tarry - when you are done, speak to me again.", + ["O"] = "Kill 12 Rattlecage Skeletons, and then return to Shadow Priest Sarvis in Deathknell when you are done.", + ["T"] = "Rattling the Rattlecages", + }, + [3902] = { + ["D"] = "You there! If you\'re looking for something to make yourself useful, then listen up!$B$BWe need fresh out-of-the-ground recruits to head into Deathknell and search for any sort of useful equipment. Most likely, they\'ll be in stacks of boxes. We expect more recruits to be rising soon, and unless we want them to stumble about naked we had better get to scavenging!$B$BWell get to work, you miserable bag of bones! I\'m not going to reward those without some hustle.", + ["O"] = "Search Deathknell and the vicinity for 6 pieces of Scavenged Goods, and return them to Deathguard Saltain.", + ["T"] = "Scavenging Deathknell", + }, + [3903] = { + ["D"] = "You\'ve shown yourself a dependable $c, $N. Dependable, and not afraid to get your hands dirty, eh?$B$BI have a friend, Milly Osworth, who\'s in some trouble. She\'s over with her wagon on the other side of the abbey, near the stable. I\'m sure she could use a pair of hands like yours.", + ["O"] = "Speak with Milly Osworth.", + ["T"] = "Milly Osworth", + }, + [3904] = { + ["D"] = "A gang of brigands, the Defias, moved into the Northshire Vineyards while I was harvesting! I reported it to the Northshire guards and they assured me they\'d take care of things, but... I\'m afraid for my crop of grapes! If the Defias don\'t steal them then I fear our guards will trample them when they chase away the thugs.$B$BPlease, you must help me! I gathered most of my grapes into buckets, but I left them in the vineyards to the southeast.$B$BBring me those crates! Save my harvest!", + ["O"] = "Bring 8 crates of Milly\'s Harvest to Milly Osworth at Northshire Abbey.", + ["T"] = "Milly\'s Harvest", + }, + [3905] = { + ["D"] = "Now that my crop is saved, take this Grape Manifest to Brother Neals. He manages the store of food and drink in Northshire, and I\'m sure he\'ll be delighted to hear that he has fresh grapes.$B$BYou\'ll find Brother Neals in the abbey, in the bell tower... where he likes to taste his wine.", + ["O"] = "Bring the Grape Manifest to Brother Neals in Northshire Abbey.", + ["T"] = "Grape Manifest", + }, + [3906] = { + ["D"] = "The elders have felt a disturbance amongst the elements. The Dark Iron dwarves have summoned a foul spirit into our world that threatens to plague our lands with an eternal draught. This disharmony of flame must be investigated.$B$BTravel to Blackrock Mountain, through the Chasm of Flame, into the quarry. It is there that you shall find this lord of fire: Overmaster Pyron.$B$BEnd the disruption and return to me.", + ["O"] = "Travel to the quarry in Blackrock Mountain and slay Overmaster Pyron. Return to Thunderheart when you have completed this assignment.", + ["T"] = "Disharmony of Flame", + }, + [3907] = { + ["D"] = "I can taste the foulness in the air that surrounds you, $N. There is another, hidden in the depths of Blackrock, who does control this foulness.$B$BThe wind and earth cry his name: Lord Incendius... but someone... something... commands this being. He is merely an emissary.$B$BFind him and discover where his master hides. Return to me when you have collected this information.", + ["O"] = "Enter Blackrock Depths and track down Lord Incendius. Slay him and return any source of information you may find to Thunderheart.", + ["T"] = "Disharmony of Fire", + }, + [3908] = { + ["D"] = "You see, I have no idea how I ended up here. No one really knows -- it\'s a secret to everybody! I just can\'t seem to remember anything...$B$BThese items you brought to me, though... I am remembering something.$B$BMy sword. I am supposed to strengthen it somehow, but I\'m really not sure why. Sorry I can\'t tell you more, but I just don\'t remember!$B$BAnyhoo, I do know where you can take it -- Donova Snowden in Winterspring. You\'ll find her by the hot springs. She can temper the sword by the pools there.", + ["O"] = "Take Linken\'s Sword to Donova Snowden in Winterspring.", + ["T"] = "It\'s a Secret to Everybody", + }, + [3909] = { + ["D"] = "Now, what\'s this? Linken... FORGOT?$B$BOh, I see... Lost his memory...$B$BWell, here is his sword. It\'s not complete, though. I know of the one that can finish it, but... speaking with him may prove difficult.$B$BListen, I know of someone that will be able to help you. It\'s too much to explain right now, but you must somehow acquire a Videre Elixir. The only one I know that can help you with that is Gregan Brewspewer. He\'s hard to track down, but last I knew he was camping in the wilds of Feralas.", + ["O"] = "Seek out Gregan Brewspewer in northern Feralas. From him, learn how you may acquire the Videre Elixir, then return to Donova Snowden in Winterspring.", + ["T"] = "The Videre Elixir", + }, + [3911] = { + ["D"] = "There is work to be had for those venturing into the depths, $N.$B$BThe Dark Irons have mastered creation of extremely powerful golems.$B$BInitial reports from our spies indicate that the dwarves use a unique power source to give their creations incomparable killing power.$B$BJust imagine what we could do with our abominations if we could get our hands on this essence of the elements! Turn that city upside down if you must, but do not return until you have found the essence! Payment will be worth the risk.", + ["O"] = "Travel to Blackrock Depths and recover 10 Essence of the Elements. Your first inclination is to search the golems and golem makers. You remember Vivian Lagrave also muttering something about elementals.", + ["T"] = "The Last Element", + }, + [3912] = { + ["D"] = "This elixir will allow you to speak with one that you would not normally even see...$B$BTake the Videre elixir, along with Linken\'s sword, to the graveyard just outside Gadgetzan in Tanaris. Once there, drink the potion. You may be quite surprised at the results, but do not be alarmed.$B$BIn your \"other\" form, head due north until you reach the mountains. You\'ll find the one you need to speak with in one of the rocky crevices. His name is Gaeriyan.$B$BRemember, he will only speak to you in that form...", + ["O"] = "Go to the graveyard outside Gadgetzan, and use the Videre Elixir. Follow the rest of Donova\'s instructions to find Gaeriyan.", + ["T"] = "Meet at the Grave", + }, + [3913] = { + ["D"] = "If you return to the graveyard, $N, you will find a gravestone there... Not just any gravestone; this one will stand out from the others. Secrets lie within it.$B$BPush on the stone, and you will learn of these secrets...", + ["O"] = "Resurrect, then look for the gravestone that Gaeriyan told you to find.", + ["T"] = "A Grave Situation", + }, + [3914] = { + ["D"] = "After a strong flash of light, you are able to pick up the sword again. It has been transformed!", + ["O"] = "Deliver Linken\'s Superior Sword to Linken in Un\'Goro Crater.", + ["T"] = "Linken\'s Sword", + }, + [3921] = { + ["D"] = "I think I might have broken that Samophlange. That\'s not good, because I already told some colleagues in Undermine about it and they were very intrigued. We must find a way to fix it!$B$BTake the broken samophlange to Wenikee Boltbucket, just south of Mor\'shan Rampart, the horde outpost between the Barrens and Ashenvale. She is very clever and inquisitive. If you show her the samophlange I bet she\'d jump at the chance to fix it.", + ["O"] = "Bring the Broken Samophlange to Wenikee Boltbucket.", + ["T"] = "Wenikee Boltbucket", + }, + [3922] = { + ["D"] = "I want to fix this samophlange, but to do that I\'m going to need some supplies. I ran out of seventeen-point-five gauge nugget slugs and I\'m going to need a bunch of those for the work ahead.$B$BThe closest place to get them is the Sludge Fen to the east. The Venture Company usually keeps them in their tool buckets. Go to the Sludge Fen and look in the tool buckets you find there, then return to me when you\'ve gathered enough nugget slugs.", + ["O"] = "Bring 15 Nugget Slugs to Wenikee Boltbucket in the Barrens.", + ["T"] = "Nugget Slugs", + }, + [3923] = { + ["D"] = "Well, that didn\'t work. I put some extra gauges on the samophlange to measure its structural integrity, and they read the integrity at an all-time low. I could add some more dials and maybe a lever or two to try and fix it, but... I think that might make things even worse.$B$BYou should take the samophlange to Rilli Greasygob. He used to work for the Venture Company -- if anyone knows how to fix it, it\'s Rilli.$B$BYou can find him at Nogg\'s Machine Shop in Orgrimmar, in the Valley of Honor.", + ["O"] = "Bring the Broken and Battered Samophlange to Rilli Greasygob in Orgrimmar.", + ["T"] = "Rilli Greasygob", + }, + [3924] = { + ["D"] = "I think I can fix the samophlange, but I\'m going to need the user\'s manual first. When I was in the Venture Company I had a rival, Boss Copperplug, who hoarded the secrets of the samophlange, giving out small bits of knowledge on the device to those he trusted. I wasn\'t one of the trusted few...$B$BBoss Copperplug used to stay at the Boulder Lode Mine in northeastern Barrens. Get the manual from him, and if he\'s given pages from it to anyone, you\'ll have to collect them too.", + ["O"] = "Bring the Samophlange Manual to Rilli Greasygob in Orgrimmar.", + ["T"] = "Samophlange Manual", + }, + [3941] = { + ["D"] = "Thinking... Thinking... I know I came here for something important...$B$BI have an idea, $N. In the cave over there is a gnome named J.D. that was very kind to me when I first arrived here. Perhaps in my disoriented state, I might have mentioned something to her.$B$BWhy don\'t you go ask her if she knows anything? Oh, but be careful -- she\'s always messing with those crazy glowing crystals I\'ve seen in the crater. I\'m not quite sure what she\'s up to in there!", + ["O"] = "Find J.D. Collie in the cave at Marshal\'s Refuge.", + ["T"] = "A Gnome\'s Assistance", + }, + [3942] = { + ["D"] = "Oh... Linken? Yeah, he\'s a funny one. When he first got here, he was mumbling about all kinds of strange things. Probably got bumped on the head pretty hard, I imagine.$B$BSomething he said kinda stuck with me though -- that he was making some sort of totem; said he had to talk to someone named Eridan Bluewind... in a place called Felwood, I think?$B$BI doubt he could tell you much now, though. If you want to know more, maybe you should look for Eridan yourself?", + ["O"] = "Find Eridan Bluewind in southern Felwood.", + ["T"] = "Linken\'s Memory", + }, + [3961] = { + ["D"] = "To think all this time that the reason Linken came here was to rid us of Blazerunner... He seems like such an ordinary guy, but I did notice that he\'s not at all interested in any of my experiments or gadgets like most gnomes would be. He must be a true warrior at heart.$B$BBring the totem to him. See if that helps him remember why he came here.", + ["O"] = "Take the Silver Totem of Aquementas to Linken in Marshal\'s Refuge.", + ["T"] = "Linken\'s Adventure", + }, + [3962] = { + ["D"] = "$N, I finally remember now... I did come here to fight Blazerunner. I was on a journey, and this was to be the last step.$B$BBut I am no longer the hero... You are. All that you have done -- you must finish this now, not me.$B$BBlazerunner guards an artifact called the Golden Flame. It provides power more vast than anything else I have ever known, and it is dangerous in the hands of one with an evil heart.$B$BYou will want to bring others with you -- it\'s dangerous to go alone. Take this as my advice.", + ["O"] = "Travel to Fire Plume Ridge, south of Marshal\'s Refuge.$B$BFind Blazerunner and use the totem to remove his protective aura. Once he has been defeated, acquire the Golden Flame from the cave.", + ["T"] = "It\'s Dangerous to Go Alone", + }, + [3981] = { + ["D"] = "Poor Gargal... didn\'t even see it coming. WHAM! The arrow landed dead center on the top of his head. He was no genius before but now...$B$B$B$BWhen we dislodged the arrow, we noticed a rolled up note attached to the shaft. On the note was a crudely drawn picture of an orc behind bars with the signature of Commander Gor\'shak attached.$B$BIf he\'s still alive in the Depths, you\'ll have to find him.$B$BA trap you say? Well no kidding, numb hooves! That\'s why you\'re going!", + ["O"] = "Find Commander Gor\'shak in Blackrock Depths.$B$BYou recall that the crudely drawn picture of the orc included bars drawn over the portrait. Perhaps you should search for a prison of some sort.", + ["T"] = "Commander Gor\'shak", + }, + [3982] = { + ["D"] = "I was sent here under the auspices of Thrall. Do you actually think these buffoons could capture me? I allowed myself to be captured so that I could gather intelligence.$B$B$B$BThe Princess of Ironforge has been kidnapped by Emperor Thaurissan. Princess Bronzebeard is in this very city! I bet old Magni\'s heart almost stopped when he heard that news.$B$B$B$BShhh! Do you hear that? Guards coming! DEFEND YOURSELF!", + ["O"] = "Defend Gor\'shak.", + ["T"] = "What Is Going On?", + }, + [4001] = { + ["D"] = "So far, my communication with the dwarf, Kharan, in the cell across the hall, has been limited. I have, however, managed to convince him that I, rather -we- mean him no harm.$B$BGo speak with him and gather as much information about the Princess and her captors as possible. Take that information back to the Warchief.$B$BThrall does not want the Princess harmed, but instead, has some grand plan laid out, which includes her being safely returned to Ironforge. Kharan already knows all of this... Go!", + ["O"] = "Speak with Kharan Mighthammer and gather information about Princess Moira Bronzebeard\'s kidnapping. Take that information to Thrall in Orgrimmar.$B$BYou recall Gor\'shak mentioning that Kharan is being held in a cell nearby.", + ["T"] = "What Is Going On?", + }, + [4002] = { + ["D"] = "You bring excellent information, $N.$B$BAs Warchief, it is my duty to do what is best for the Horde. To ensure that the generations that come after us are not forced into a hopeless existence.$B$BThe opportunity to shape our future alliances has fallen into our collective laps. A move to help the dwarves could greatly strengthen our relationships in the Eastern Kingdoms. This, then, is why you must not fail!$B$BAre you prepared?", + ["O"] = "Speak with Thrall if you are prepared to take on the mission he has planned.", + ["T"] = "The Eastern Kingdoms", + }, + [4003] = { + ["D"] = "This strike against the Dark Iron dwarves, if successful, will send a shockwave throughout their entire kingdom.$B$BPrincess Bronzebeard is under the control of Emperor Thaurissan. To free her, you must kill the Emperor. Be warned, your task is doubly dangerous, as Bronzebeard will attack you without question while under the control of the Emperor.$B$BDO NOT HARM HER!", + ["O"] = "Slay Emperor Dagran Thaurissan and free Princess Moira Bronzebeard from his evil spell. ", + ["T"] = "The Royal Rescue", + }, + [4004] = { + ["D"] = "You have slain my husband, $r! My child will be born into this world without a father.$B$B$B$BI assure you, this child will be the next ruler of the kingdom of Ironforge. You and your kind shall be hunted down until the end of days for this wrongful act.$B$B$B$BLeave me be, $r. I am certain your warchief will be eager to hear the results of his meddling.", + ["O"] = "Return to Thrall!", + ["T"] = "The Princess Saved?", + }, + [4005] = { + ["D"] = "Take this bag of supplies with you to Tanaris. Travel to Lost Rigger Cove, and look for a circle of stones.$B$BThe eastmost peninsula is the secret...$B$BFrom this circle only, read from the book of Aquor; summon the only creature that can transform the items you collected into a totem to fight Blazerunner.$B$BAquementas will not be pleased to be awakened, but remember, you must remain in the circle for him to transform the items.", + ["O"] = "Take the Book of Aquor, the Silvery Claws, and the Irontree Heart to Tanaris.$B$BUse the Book of Aquor to summon Aquementas.$B$BAfter you have the completed totem, take it to J.D. Collie in Marshal\'s Refuge.", + ["T"] = "Aquementas", + }, + [4021] = { + ["D"] = "The Horde commends your successes against the Kolkar, but the Kolkar themselves are maddened. I have reports that a contingent of Kolkar has traveled to the Barrens from their home in Desolace, to seek vengeance. My latest report was that, even now, they move against these bunkers, from the west!$B$BFace the Kolkar invaders, and end their threat in the Barrens. Kill them until their leader, Warlord Krom\'zar, appears. Defeat him and bring me a piece of his banner as proof.$B$BWe\'re counting on you, $N.", + ["O"] = "Bring a Piece of Krom\'zar\'s Banner to Regthar Deathgate, west of the Crossroads.", + ["T"] = "Counterattack!", + }, + [4022] = { + ["D"] = "The flight is aware of your work in the Searing Gorge.$B$BShow it to me, $r. The molt, imbecile.", + ["O"] = "Show Cyrus Therepentous the Black Dragonflight Molt you received from Kalaran Windblade.", + ["T"] = "A Taste of Flame", + }, + [4023] = { + ["D"] = "You seek out the Flight? Present to me proof of your worth, mortal.", + ["O"] = "Show Cyrus Therepentous proof of your worth.$B$BYou have a feeling that Cyrus already knows that you are unworthy.", + ["T"] = "A Taste of Flame", + }, + [4024] = { + ["D"] = "I wish to taste the searing flames of the mountain of fire. To let the molten fires of Blackrock cascade across my being. That essence, that searing heat, it is what I crave.$B$BBael\'Gar resides in the Depths of Blackrock: A being of pure flame, born of the fires of Ragnaros. Slay Bael\'Gar and from his smoldering remains bring for me a piece of his inner fire.$B$BUse the molt on his remains to safely extract the inner flame.$B$BSucceed and be rewarded.", + ["O"] = "Travel to Blackrock Depths and slay Bael\'Gar.$B$BYou only know that the giant resides inside Blackrock Depths. Remember to use the Altered Black Dragonflight Molt on Bael\'Gar\'s remains to capture the Fiery Essence.$B$BReturn the Encased Fiery Essence to Cyrus Therepentous.", + ["T"] = "A Taste of Flame", + }, + [4041] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Videre Elixir", + }, + [4061] = { + ["D"] = "The machines made themselves known to us during our initial forays into the Searing Gorge. Upon further investigation we discovered that they were being imported from Burning Steppes, possibly Blackrock Depths. That is what we need you for, $N.$B$BYour first task is to venture to the Burning Steppes and recover elemental shards from the rock automatons and lesser rock creations of the region. Once you have collected a sufficient amount, return to me and I shall determine their source of origin.", + ["O"] = "Venture to the Burning Steppes and recover 10 Fractured Elemental Shards for Hierophant Theodora Mulvadania.$B$BYou recall Theodora mentioning the golems and elementals of that region as being a source for these shards.", + ["T"] = "The Rise of the Machines", + }, + [4062] = { + ["D"] = "G.L.A.$B$BThose are the \'initials\' imprinted on the elemental shards. Below the initials are a rank marking of some sort. The machinations you destroyed in the Burning Steppes were of \'Rank IV.\' I assume that this is a lowly rank.$B$BTake this shard sample to Lotwil Veriatus in the camp to the east. He is a scholar of some renown in the field of elemental sciences. He may be able to assist us in our search.", + ["O"] = "Take the Elemental Shard Sample to Lotwil Veriatus.$B$BYou recall Theodora saying that Lotwil was stationed in a camp to the east.", + ["T"] = "The Rise of the Machines", + }, + [4063] = { + ["D"] = "This can\'t be Argelmach! Argelmach was killed ten years ago. How can I be sure? I was the one who killed him.$B$BHe was a despicable dwarf, hell-bent on twisting my life\'s work to meet his diabolical needs. It seems that the wicked always find a way to escape justice.$B$BIf this is Argelmach\'s handiwork then he must be destroyed. I will need samplings of his latest creations. With the proper samples, I may be able to stop this uprising. The creations guard Argelmach in Blackrock Depths.", + ["O"] = "Find and slay Golem Lord Argelmach. Return his head to Lotwil. You will also need to collect 10 Intact Elemental Cores from the Ragereaver Golems and Warbringer Constructs protecting Argelmach. You know this because you are psychic. ", + ["T"] = "The Rise of the Machines", + }, + [4081] = { + ["D"] = "By order of Warlord Goretooth, commander of the Kargath Expeditionary Force:$B$BAny and all of General Angerforge\'s forces within Blackrock Depths must be annihilated.$B$BAngerforge\'s men are ruthless killers, responsible for the mass murder of the 109th division of the Kargath Expeditionary Force. Heroes are warned to exercise extreme caution when confronting these brutes.$B$BAny person who destroys the first line of General Angerforge\'s forces in Blackrock Depths shall receive a tribute.", + ["O"] = "Venture to Blackrock Depths and destroy the vile aggressors!$B$BWarlord Goretooth wants you to kill 15 Anvilrage Guardsmen, 10 Anvilrage Wardens and 5 Anvilrage Footmen. Return to him once your task is complete.", + ["T"] = "KILL ON SIGHT: Dark Iron Dwarves", + }, + [4082] = { + ["D"] = "By order of Warlord Goretooth, commander of the Kargath Expeditionary Force:$B$BHead of the K.E.F. reconnaissance division, Grandmaster Lexlort, has returned with news of the whereabouts of high ranking Dark Iron officials. Through locked gate, near the heart of the city, they train their forces to snuff out our men. Travel to Blackrock Depths and destroy them!$B$BCompletion of this mission will result in a tribute.", + ["O"] = "Venture to Blackrock Depths and destroy the vile aggressors!$B$BWarlord Goretooth wants you to kill 10 Anvilrage Medics, 10 Anvilrage Soldiers and 10 Anvilrage Officers. Return to him once your task is complete.", + ["T"] = "KILL ON SIGHT: High Ranking Dark Iron Officials", + }, + [4083] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Spectral Chalice", + }, + [4084] = { + ["D"] = "I do not know the one you speak of, $N.$B$BBut worry not; if your friend was on a journey to find me, I do know what it was he desired.$B$BIn the heart of Un\'Goro Crater dwells evil of the purest form. This evil takes the shape of an elemental called Blazerunner... protected by an aura that none can dispel...$B$BNone... except those with enough power to do so. I can teach you of this power, $N.$B$BFirst, do as I ask. Collect 11 Silvery Claws and 1 Irontree Heart from the creatures in Felwood, then return.", + ["O"] = "Collect 11 Silvery Claws and 1 Irontree Heart for Eridan Bluewind in Felwood.", + ["T"] = "Silver Heart", + }, + [4101] = { + ["D"] = "Plants give life to Felwood, yet even they suffer the taint of corruption. I know ways to cleanse them, but I cannot give out such knowledge to those I don\'t know or trust. Prove to me that you will truly aid the cause of the Cenarion Circle!$B$BTo the north lie the Irontree Caverns. The Warpwood elementals present there are now beyond hope of cleansing. I ask you to bring me their sap - blood amber it is called - so I may study it in the hopes of saving other forms of life here.", + ["O"] = "Bring 15 Blood Amber to Arathandris Silversky in Felwood.", + ["T"] = "Cleansing Felwood", + }, + [4102] = { + ["D"] = "Plants give life to Felwood, yet even they suffer the taint of corruption. I know ways to cleanse them, but I cannot give out such knowledge to those I don\'t know or trust. Prove to me that you will truly aid the cause of the Cenarion Circle!$B$BTo the north lie the Irontree Caverns. The Warpwood elementals present there are now beyond hope of cleansing. I ask you to bring me their sap - blood amber it is called - so I may study it in the hopes of saving other forms of life here.", + ["O"] = "Bring 15 Blood Amber to Maybess Riverbreeze in Felwood.", + ["T"] = "Cleansing Felwood", + }, + [4103] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Salve via Hunting", + }, + [4104] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Salve via Mining", + }, + [4105] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Salve via Gathering", + }, + [4106] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Salve via Skinning", + }, + [4107] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Salve via Disenchanting", + }, + [4108] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Salve via Hunting", + }, + [4109] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Salve via Mining", + }, + [4110] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Salve via Gathering", + }, + [4111] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Salve via Skinning", + }, + [4112] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Salve via Disenchanting", + }, + [4113] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Corrupted Songflower", + }, + [4114] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Corrupted Songflower", + }, + [4115] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Corrupted Windblossom", + }, + [4116] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Corrupted Songflower", + }, + [4117] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Corrupted Whipper Root", + }, + [4118] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Corrupted Songflower", + }, + [4119] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Corrupted Night Dragon", + }, + [4120] = { + ["D"] = "Being a hunter, I strive to emulate the strengths I see in my opponents. It is possible to turn the battle in your favor by simply knowing your enemy well, $N.$B$BIn a place called Felwood, north of Ashenvale, the creatures have been tainted by a substance called fel. The bears and wolves have been driven mad by it, but I believe that they have also grown even stronger as well.$B$BGo, $N. Travel to Felwood and face these beasts. Learn for yourself if they are truly as strong as I believe.", + ["O"] = "Talo Thornhoof at Camp Mojache in Feralas wants you to kill 12 Angerclaw Grizzlies and 12 Felpaw Ravagers in Felwood.", + ["T"] = "The Strength of Corruption", + }, + [4121] = { + ["D"] = "Do you truly believe that you will make it to your rendezvous point with me in custody? You actually expected to break into a heavily fortified Blackrock fortress to capture a prized asset of theirs without alerting anyone or anything to your presence?$B$BYou will be destroyed!", + ["O"] = "Escort your prisoner, Grark Lorkrub, through Burning Steppes and through Blackrock Mountain to the Searing Gorge.$B$BYou recall Lexlort mentioning that he would have his men waiting on the other side to take Grark into custody.$B$BYou will also be required to hand over your Thorium Shackles to Lexlort.", + ["T"] = "Precarious Predicament", + }, + [4122] = { + ["D"] = "I tracked him across the Searing Gorge, through the mountain, and into the Burning Steppes. That traitor was caught red-handed giving the Blackrock orcs vital information about our day to day operations. I\'m speaking of Grark Lorkrub.$B$BHe now sits in the Burning Steppes, safely under their protection - or so he thinks.$B$BTake these shackles, $N. Find Grark, place the shackles on him and lead him through Blackrock Mountain. Do this and a tribute is yours.", + ["O"] = "Travel to the Burning Steppes and find Grark Lorkrub. You recall Lexlort mentioning that he was last seen in a massive Blackrock fortress.$B$BWhen you find Grark Lorkrub, use the Thorium Shackles to bind him and then lead him back through Blackrock Mountain to the Searing Gorge. Lexlort will have his men waiting on the other side to take Grark into custody.", + ["T"] = "Grark Lorkrub", + }, + [4123] = { + ["D"] = "For years I have sought a certain gem. It is called the Heart of the Mountain and it\'s the size of your fist! The Dark Iron dwarves have it locked in their vault and, try as I may, they won\'t let me purchase it.$B$BSo I must resort to force.$B$BFight your way to the Lower Vault of Blackrock Depths, breach its secret safe and gain the Heart. To do that, you must defeat Watchman Doomgrip, and he won\'t appear until you\'ve opened every relic coffer in the vault!$B$BGood luck.", + ["O"] = "Bring the Heart of the Mountain to Maxwort Uberglint in the Burning Steppes.", + ["T"] = "The Heart of the Mountain", + }, + [4124] = { + ["D"] = "An associate of mine, Ginro Hearthkindle, is looking for assistance concerning the location of a courier and the parcels he was carrying. It has been a week or so since the courier went missing; our own searches have proved fruitless, and we\'re at an impasse. Unfortunately, I have had to declare the courier as missing in action.$B$BIf you have the time and resources to spare, please speak with Ginro. He should be here in the Stronghold - perhaps in his quarters.", + ["O"] = "Speak with Ginro Hearthkindle in Feathermoon Stronghold.", + ["T"] = "The Missing Courier", + }, + [4125] = { + ["D"] = "It\'s been about a week since Raschal, the courier, set out for Thalanaar. He knows Feralas well; he\'s been with us since General Feathermoon led the expeditionary forces here. I know his plan was to take a row boat down the coast and try and traverse across southern Feralas to avoid the Horde camp.$B$BI couldn\'t find his boat, but maybe you can. Maybe it is hidden, or maybe it was sunk. Regardless, it might hold a clue as to where he is. If you uncover something, please let me know.", + ["O"] = "Locate the courier\'s boat somewhere along the coast of Feralas.", + ["T"] = "The Missing Courier", + }, + [4126] = { + ["D"] = "The Dark Iron dwarves, led by the villain Hurley Blackbreath, stole one of the Thunderbrew\'s best recipes, Thunderbrew Lager. The villains! They don\'t deserve such a fine brew!$B$B$N, I have a tough task for you. Go to the Blackrock Depths in the Burning Steppes, destroy any kegs of Thunderbrew Lager you find, and bring back our recipe for Thunderbrew Lager!$B$BPlease, get that recipe back, even if you have to turn Blackrock Depths upside down to do it!", + ["O"] = "Bring the Lost Thunderbrew Recipe to Ragnar Thunderbrew in Kharanos.", + ["T"] = "Hurley Blackbreath", + }, + [4127] = { + ["D"] = "Running your hand along the mud, your fingers graze the handle of a knife. It looks well cared for, and it might be safe to assume that whoever was on the boat might have lost it. Perhaps the large chunk of the missing boat might have something to do with the loss.$B$BYou grab the knife, remembering that Ginro Hearthkindle in the Feathermoon Stronghold instructed you to return to him with any found clues. You get the feeling, however, that you are not quite alone in the water...", + ["O"] = "Return to Feathermoon Stronghold and show Ginro Hearthkindle the Discarded Knife you have found.", + ["T"] = "Boat Wreckage", + }, + [4128] = { + ["D"] = "Ho, $n. I heard that Ragnar Thunderbrew is steaming mad about someone stealing his ale. He\'s looking for stalwart adventurers, and willing to pay plenty.$B$BTalk to Ragnar if you\'re interested. He\'s at the Thunderbrew Distillery in Kharanos, in Dun Morogh.", + ["O"] = "Speak with Ragnar Thunderbrew.", + ["T"] = "Ragnar Thunderbrew", + }, + [4129] = { + ["D"] = "The Stronghold\'s resident druid, Quintis Jonespyre, has some... unusual skills. One of them involves psychometry - the ability to reveal an item\'s history by touch. Don\'t ask me how he does it; I chalk it up to magic I do not and choose not to understand. I do know, however, two things: one, I\'ve seen it work and two, the bum owes me.$B$BTake the knife up to Quint in his little tree-house here, and tell him for me that his Kalimdor Hold \'Em debt will be paid if he works his mojo on that knife.", + ["O"] = "Take the Discarded Knife to Quintis Jonespyre in Feathermoon Stronghold.", + ["T"] = "The Knife Revealed", + }, + [4130] = { + ["D"] = "I\'m a little wobbly still, sorry. Anyway, I received some useful visions.$B$BRaschal takes two large leather backpacks from his boat and goes inland; he returns to the boat, however. I see gnoll scalps... he ran into some gnolls - Woodpaw I think they\'re called. He\'s very worried - almost terrified - about something. So much so, that he is not paying attention to water elementals forming behind him. The images... stop there.$B$BI need to rest, sorry $N. Tell Gin what I\'ve seen. He needs to know.", + ["O"] = "Speak with Ginro Hearthkindle in Feathermoon Stronghold.", + ["T"] = "Psychometric Reading", + }, + [4131] = { + ["D"] = "Our \"friends\" the Woodpaw might have gotten Raschal in the end, but something tells me that\'s not what occurred. Still, they\'re the best place to start looking.$B$BI wish I had clearer insight as to what to do, but all I have right now is \'Search the Woodpaw camps - go.\' I do know that gnolls will keep items they scavenge and fight over them; maybe they ran across the backpacks Quint mentioned. I hadn\'t risked a head-on fight in past searches, but with Quint\'s vision on this I say rip into them.", + ["O"] = "Search the Woodpaw Gnoll camps of southern Feralas for evidence of the courier\'s belongings or the courier himself.", + ["T"] = "The Woodpaw Gnolls", + }, + [4132] = { + ["D"] = "You have done an exemplary job, $N. It is now time to send you on your last mission.$B$BGeneral Angerforge, the Dark Iron responsible for coordinating the attacks on the 109th division of the K.E.F. and the mass slaughter of our forces must be brought to justice.$B$BThis will undoubtedly be your most grueling mission, but should you succeed, you will be richly rewarded.", + ["O"] = "Travel to Blackrock Depths and slay General Angerforge! Return to Warlord Goretooth when the task is complete.", + ["T"] = "Operation: Death to Angerforge", + }, + [4133] = { + ["D"] = "Shadowmaster Vivian Lagrave is in need of your services. She is in the Badlands, in the orcish outpost of Kargath, pursuing rumors of a certain brew made by the Dark Iron dwarves of Blackrock Depths.$B$BSpeak with Vivian. She awaits you.", + ["O"] = "Speak with Shadowmaster Vivian Lagrave in Kargath.", + ["T"] = "Vivian Lagrave", + }, + [4134] = { + ["D"] = "It is rumored that the Dark Iron Hurley Blackbreath has stolen a recipe for ale. This ale, Thunderbrew Lager, is said to infuse its imbiber with great strength and courage. We wish to study the drink. Perhaps, we will find other applications for its virtues... applications more in line with Forsaken objectives.$B$BDelve into Blackrock Depths, find Hurley, take from him the recipe for Thunderbrew lager and bring it to me.$B$BAnd to find him, you may have to entice him by threatening his precious ale.", + ["O"] = "Bring the Lost Thunderbrew Recipe to Vivian Lagrave in Kargath.", + ["T"] = "Lost Thunderbrew Recipe", + }, + [4135] = { + ["D"] = "Inside the backpacks are two items: the first is a parcel of goods that was bound for Thalanaar, and the second is a note hastily penned to an unknown reader.$B$BThe note tells of discovering insidious bug-like creatures south of the gnoll camps in a place called the Writhing Deep. The author felt the need to investigate it personally, as though it was a serious threat to all of Feralas. The note is signed, \"Raschal of Feathermoon\".$B$BIt would seem that you have located where Raschal ultimately went.", + ["O"] = "Now that Raschal\'s last known whereabouts have been discovered, continue your search for him or his remains in the Writhing Deep. According to the note, it is located to the south of the Woodpaw gnoll camps.", + ["T"] = "The Writhing Deep", + }, + [4136] = { + ["D"] = "My brother Ribbly has always been a drain to his family, taking our money and wasting it on one scheme after another.$B$BWell, his last scheme must have been his worst, because Baron Revilgaz of Booty Bay just put a price on poor Ribbly\'s head. I can\'t tell you how happy this makes the Screwspigots! Our little Ribbly\'s finally worth something!$B$BBut now he\'s hiding out, deep in Blackrock Depths. Please, find him and bring him to me!$B$BOr, if he won\'t come, then that\'s ok... just bring me his head.", + ["O"] = "Bring Ribbly\'s Head to Yuka Screwspigot in the Burning Steppes.", + ["T"] = "Ribbly Screwspigot", + }, + [4141] = { + ["D"] = "See Larion over there? It\'s HIS fault we\'re here!$B$BI told him we were going the wrong way, but would he listen? And would you believe that he\'s the one that won\'t speak to me? Well, until he changes his mind, let\'s have a bit of fun with him.$B$BHave you noticed the strange plant-like creatures around here? They\'re nothing but trouble, really, but I think if trained properly, I could get them to obey commands.$B$BFirst thing though, I\'ll need some samples to study. Do you think you could collect some?", + ["O"] = "Collect 15 Bloodpetals and return to Muigin.", + ["T"] = "Muigin and Larion", + }, + [4142] = { + ["D"] = "I\'m not quite sure what to make of this, $N. The plants... they seem to have some minimal intelligence.$B$BI\'m no expert, though. But, I do know someone that is!$B$BHead to northern Feralas, and look for a buddy of mine named Gregan Brewspewer. He\'s an expert on this sort of thing.$B$BI\'m sure Gregan can help us out here. You\'ll find him out in the wilderness; he\'s not the type to live in a big city.", + ["O"] = "Take a Bloodpetal to Gregan Brewspewer in Feralas.", + ["T"] = "A Visit to Gregan", + }, + [4143] = { + ["D"] = "To tell you the truth, $N, I\'ve never seen any plants like this in my travels. Perhaps I should take a trip to this crater...$B$BAt any rate, I think I know just the thing Muigin\'s looking for -- Atal\'ai haze. It\'s horrid stuff, hard to collect, but it\'s just what he needs to control the little monsters.$B$BYou\'ll need to visit the temple of Atal\'Hakkar in the Swamp of Sorrows. The Atal\'ai Haze can be collected from the deep lurkers, murk worms, or oozes found there. Good luck, $N!", + ["O"] = "Collect 5 samples of Atal\'ai Haze, then return to Muigin in Un\'Goro Crater.", + ["T"] = "Haze of Evil", + }, + [4144] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Bloodpetal Sprouts", + }, + [4145] = { + ["D"] = "See Muigin over there? It\'s HIS fault we\'re lost!$B$BI\'m the one that knew the way, but he insisted he knew a shortcut, and we ended up here!$B$BTo make matters worse, now he keeps sending his crazy plant pests to annoy me. I\'m so angry that I\'m not planning on talking to him any time soon, but these pests are too much to handle.$B$BWhy don\'t we try to limit his supply, first thing. Go out and hunt some Bloodpetals, then return to me.", + ["O"] = "Hunt 5 Bloodpetal Lashers, 5 Bloodpetal Threshers, 5 Bloodpetal Flayers and 5 Bloodpetal Trappers for Larion at Marshal\'s Refuge.", + ["T"] = "Larion and Muigin", + }, + [4146] = { + ["D"] = "You\'re in luck, $n! I\'ve been working on some of my own experiments while Marvon\'s been gone, and one of them is a short range bug zapper. With just a few adjustments, it should be great for ridding yourself of those Bloodpetal pests.$B$BI can let you have one of my zapper prototypes, but you\'ll still need to collect the fuel. You can get the necessary Atal\'ai haze that the zapper needs in the temple of Atal\'Hakkar. The deep lurkers, murk worms, or oozes are the ones you\'ll need to get it from.", + ["O"] = "Deliver the Unloaded Zapper and 5 samples of Atal\'ai Haze to Larion in Marshal\'s Refuge.", + ["T"] = "Zapper Fuel", + }, + [4147] = { + ["D"] = "I managed to spy on what Muigin was doing, and he\'s actually growing the darn things over there!$B$BI think the only solution here is to... no, not go talk to him... What are you thinking? The solution is to fight back!$B$BWe\'ll need the help of my friend, Marvon, who has a workshop in Ratchet. I\'m sure he\'ll be able to create some sort of gadget that will help us.", + ["O"] = "Travel to Marvon Rivetseeker\'s workshop in Ratchet.", + ["T"] = "Marvon\'s Workshop", + }, + [4148] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Bloodpetal Zapper", + }, + [4161] = { + ["D"] = "Long ago, the night elves were called the kaldorei, a name that means \"children of the stars.\" Learning of the past is an important step in your path as a $c, $N, so listen well to what I have to tell you.$B$BThe kaldorei have always taken much pride in their harmonious relationship with nature. This means that we only take from nature what is necessary, and that we return in kind. This balance has afforded us much, $N.$B$BGo out and collect seven small spider legs -- no more than that, and return to me.", + ["O"] = "Collect 7 Small Spider Legs for Zarrin in Dolanaar.", + ["T"] = "Recipe of the Kaldorei", + }, + [4181] = { + ["D"] = "Expert engineering yields two distinct disciplines: gnome and goblin. I only bother to mention goblin engineering because I\'m a fair trainer. They like to make things that blow up, and they rarely care what is in the way - even themselves.$B$B$N, read this manual. If you want to learn how to blow yourself up, then take it to Nixx Sprocketspring in Gadgetzan. Remember - membership is permanent and prevents joining the other discipline, so make sure this is what you want before finishing his task.", + ["O"] = "If you wish to learn more about Goblin Engineering, take the Manual of Engineering Disciplines to Nixx Sprocketspring in Gadgetzan.", + ["T"] = "Goblin Engineering", + }, + [4182] = { + ["D"] = "Life in the Burning Steppes is rife with conflict.$B$BJust look at this place! We know very little of what happened to these buildings, but we do know that at one time, before the great explosion, this was all part of the Redridge mountain range.$B$BEnough lamenting! We have a problem, $N. You may have noticed the dragonkin below this ridge. We need assistance in pushing them back. Kill as many as you can and return to me. Succeed and perhaps we can talk of other things.", + ["O"] = "Slay 15 Black Broodlings, 10 Black Dragonspawn, 4 Black Wyrmkin and 1 Black Drake. Return to Helendis Riverhorn when the task is complete.", + ["T"] = "Dragonkin Menace", + }, + [4183] = { + ["D"] = "We had always assumed that the Blackrock orcs were a product of their savage upbringing. What we have found here, in their homeland, tells us another story.$B$BIndeed, it is bloodlust and thirst for conflict that empowers them, but the black dragonflight are the beings whom control the orcs of Blackrock. We suspect that it is the black dragonflight that fuels them with rage and hostility.$B$BTake this letter to Magistrate Solomon. He will know what must be done.$B$B", + ["O"] = "Travel to Lakeshire and deliver Helendis Riverhorn\'s Letter to Magistrate Solomon. ", + ["T"] = "The True Masters", + }, + [4184] = { + ["D"] = "This is grim news, $N. To discover that our mortal enemies are merely pawns of a much greater threat is disheartening. There is no possible way that Lakeshire could survive an attack from both the Blackrock orcs and the black dragonflight. Should Lakeshire fall to this menace, Darkshire would fall next, and then what? Goldshire? Stormwind itself?$B$BYou must take this information to Highlord Bolvar Fordragon in Stormwind at once! If this does not merit the aid of Stormwind, nothing will and all is lost.", + ["O"] = "Travel to Stormwind and deliver Solomon\'s Plea to Highlord Bolvar Fordragon.$B$BBolvar resides in Stormwind Keep. ", + ["T"] = "The True Masters", + }, + [4185] = { + ["D"] = "Solomon paints a dreary picture. Still, we cannot afford to send our thinly spread troops to the aid of Lakeshire on speculation. I will need proof of these claims before I can act.$B$BSpeak with Lady Prestor, $N. She is a learned woman and knows much of dragons and dragonkin. She may be able to shed some light on this situation.", + ["O"] = "Speak with Highlord Bolvar Fordragon after speaking with Lady Katrana Prestor.", + ["T"] = "The True Masters", + }, + [4186] = { + ["D"] = "I am going to empower you as an acting deputy of Stormwind, $N.$B$BReturn to Magistrate Solomon in Lakeshire and deliver this decree.", + ["O"] = "Take Bolvar\'s Decree to Magistrate Solomon in Lakeshire.", + ["T"] = "The True Masters", + }, + [4201] = { + ["D"] = "Oh, the pains of love! My dear Private Rocknot is immune to my charms. I am spurned! It\'s maddening!$B$BYou must help me! We succubi know much of love, and I can make a potion to beat down the iron walls around Rocknot\'s heart. To make it, I need these items: the herb gromsblood, giant silver veins from the cliff giants of Azshara, and water from the Golakka Springs Crater in Un\'Goro. You can place the water in this vial.$B$BPlease, $N, help a poor soul in her quest for happiness!", + ["O"] = "Bring 4 Gromsblood, 10 Giant Silver Veins and Nagmara\'s Filled Vial to Mistress Nagmara in Blackrock Depths.", + ["T"] = "The Love Potion", + }, + [4221] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Corrupted Windblossom", + }, + [4222] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Corrupted Windblossom", + }, + [4223] = { + ["D"] = "$B$BYou must return to the Burning Steppes, $N. As a deputy of Stormwind, you will be required to report to Marshal Maxwell. Good luck.", + ["O"] = "Speak with Marshal Maxwell in the Burning Steppes.", + ["T"] = "The True Masters", + }, + [4224] = { + ["D"] = "What? You thought you were the first? How many soldiers must we lose before Stormwind acts?$B$BWe had accumulated enormous amounts of intelligence pertaining to the Blackrock menace before we lost our commanding officer, Marshal Windsor. With Marshal Windsor went all of our precious information.$B$BWhat we need is that documentation. Speak with Ragged John, $N. He was with Windsor when they were attacked by a Blackrock raiding party. He was last seen in a cave to the north.", + ["O"] = "Speak with Ragged John to learn of Marshal Windsor\'s fate and return to Marshal Maxwell when you have completed this task.$B$BYou recall Marshal Maxwell telling you to search for him in a cave to the north.", + ["T"] = "The True Masters", + }, + [4241] = { + ["D"] = "So that good for nothing coward says that Windsor is alive, eh?$B$BSuit up, deputy, you are going in to find him. If Windsor is alive, you are to bring him back. If he\'s dead, I want proof.$B$B$B$BI bet you are getting tired of hearing that, aren\'t you?", + ["O"] = "Travel to Blackrock Mountain in the northwest and enter Blackrock Depths. Find out what became of Marshal Windsor.$B$BYou recall Ragged John talking about Windsor being dragged off to a prison.", + ["T"] = "Marshal Windsor", + }, + [4242] = { + ["D"] = "Bolvar is a fool. I was gathering his precious \'proof\' so that I could shove it down his throat.$B$BHe is a blind buffoon. Proof stands two feet away from him and he does not see.$B$BAs for my data, it\'s lost. Gone. Unrecoverable.$B$BShould I ever find Ironfoe and make it out of this labyrinth, my first stop will be Stormwind, to place my hammer in between that reptile\'s eyes.$B$BLeave me, $N.", + ["O"] = "Give Marshal Maxwell the bad news.", + ["T"] = "Abandoned Hope", + }, + [4243] = { + ["D"] = "Unfortunately, something\'s happened to one of my greatest inventions. You\'ve seen mechanical squirrels, yes? Well, to get closer to the apes of Un\'Goro Crater, I created a mechanical ape to blend in with their kind--I call her A-Me 01.$B$BShe has scrying gems for eyes so I could see everything she saw. She made it to Fungal Rock--the apes\' lair--just east of here, and that\'s when I lost contact. The last thing I saw was one of their alpha males rushing up to say hello to her!$B$BCan you help me find her?", + ["O"] = "Find A-Me 01 in Un\'Goro Crater.", + ["T"] = "Chasing A-Me 01", + }, + [4244] = { + ["D"] = "A little further investigation shows a panel that slides open. Clearly written above some wiring is the statement, \"Replace Mithril Casing And Turn Power Off Then On.\"$B$BTaking a moment to replace the panel, you wonder if it\'ll be that simple to fix A-Me 01 and get her back to Karna Remtravel near Marshall\'s Refuge.$B$BOnly trying it will tell.", + ["O"] = "Find a Mithril Casing and return to A-Me 01 in Un\'Goro Crater.", + ["T"] = "Chasing A-Me 01", + }, + [4245] = { + ["D"] = "Checking to see if your prepared to lead A-Me 01 back to Karna Remtravel, you flip the switch to the \"Off\" position. Glancing around once again to make sure none of the gorillas are coming, you prepare to see what happens when you flip the switch back to the \"On\" position.$B$BThis is your last chance... are you sure this is what you want to do?", + ["O"] = "Escort A-Me 01 back to Karna Remtravel in Un\'Goro Crater.", + ["T"] = "Chasing A-Me 01", + }, + [4261] = { + ["D"] = "Felwood was once a peaceful and serene land... Until the legion took hold. The infernals, destruction, chaos...$B$BThe skull of Gul\'dan ensured that none were spared here. All fell to the corruption.$B$BEven now, as a spirit, I still find myself trapped, bearing the suffering of this land. Help me find my way home. Please, $N, tell me you will lead an ancient spirit away from here, where I may finally rest.$B$BOnce I am free, seek out Kayneth Stillwind, a druid that resides in Forest Song, to the east.", + ["O"] = "Escort Arei to safety, then speak with Kayneth Stillwind in Forest Song, in eastern Ashenvale.", + ["T"] = "Ancient Spirit", + }, + [4262] = { + ["D"] = "The last five of my mages that went snooping around in Blackrock Mountain came back extra crispy with a permanent orange gnomefro - or worse.$B$B$B$BOne nasty bugger in particular, Overmaster Pyron, seems to be causing quite a bit of trouble. We need that elemental terminated so that our expedition crew can make its way into Blackrock Depths!$B$BHe guards the entrance at the Blackrock Quarry.", + ["O"] = "Slay Overmaster Pyron and return to Jalinda Sprig.$B$BYou recall Jalinda talking about Pyron guarding the quarry. Perhaps you should search there?", + ["T"] = "Overmaster Pyron", + }, + [4263] = { + ["D"] = "Are you sure Pyron said \'Incendius\' when he died?$B$B$B$BLord Incendius is purported to be a minion of Ragnaros! Oh dear, oh dear... whatever will we do?$B$BDo you think you can handle another mission? I don\'t have anybody else to send, $N!$B$BWe will never get a team in if Incendius continues to raise Pyron from the ashes.$B$BYou\'ll have to find and destroy Lord Incendius!", + ["O"] = "Find Lord Incendius in Blackrock Depths and destroy him!", + ["T"] = "Incendius!", + }, + [4264] = { + ["D"] = "The note has stains covering its surface. The text is barely legible, but you make out the following:$B$B...sweet irony...$B$B...the fall of the broken Alliance...$B$B...if it were not for General Angerforge\'s diligence, we may have never discovered the pattern to the encryption...$B$B...Argelmach is almost done with the decryption of Windsor\'s notes.$B$BOur lord will rise from the depths and crush any that remain...$B$B-Emperor Dagran Thaurissan.", + ["O"] = "You may have just stumbled on to something that Marshal Windsor would be interested in seeing. There may be hope, after all.", + ["T"] = "A Crumpled Up Note", + }, + [4265] = { + ["D"] = "The pod splits opens some when you touch it, revealing a night elven male who is surprisingly still alive. He seems to be in good health, though deeply stunned. As you help him down from the pod, he stirs to life.$B$B\"Thank Elune - you\'ve saved me, friend! I... I\'m Raschal, and I awoke paralyzed inside this pod after these bugs overwhelmed me. I could use a hand getting out of here; after that, would you let the Stronghold know that I am all right? I\'ll be fine - we just need to leave, and fast!\"", + ["O"] = "Escort Raschal safely out of the Zukk\'ash hive.$B$BReturn to Ginro Hearthkindle in Feathermoon Stronghold and let him know that Raschal is alive and well.", + ["T"] = "Escaping the Hive", + }, + [4266] = { + ["D"] = "$N, General Shandris Feathermoon would like to speak with you personally. No doubt she wants to thank you for your service to the Stronghold, but I do know that she also wants to talk to you about the insect creatures that you and Raschal faced in southern Feralas. The reports of those Zukk\'ash insects are... frightening, to say the least.$B$BGeneral Feathermoon is waiting for you in the main compound.", + ["O"] = "Speak with Shandris Feathermoon in Feathermoon Stronghold.", + ["T"] = "A Hero\'s Welcome", + }, + [4267] = { + ["D"] = "I am entrusting you with a copy of the report Raschal made on the infestation of southeastern Feralas. While the main report is being filed in Darnassus, I want you to give this copy to an associate of the Protectorate. Her name is Gracina Spiritmight; she is a priestess who dwells in the Temple of the Moon in Darnassus. She has broad knowledge on these kinds of creatures, and her receiving this report would benefit us all.$B$BYou\'re dismissed - good luck, $N; may Elune watch over us all.", + ["O"] = "Bring Raschal\'s Report to Gracina Spiritmight in Darnassus.", + ["T"] = "Rise of the Silithid", + }, + [4281] = { + ["D"] = "This parcel of goods you found in the Woodpaw gnoll camps was supposed to be delivered to the small way-station of Thalanaar in southeastern Feralas. Regardless of the missing courier\'s fate, the task of delivering the parcel remains unfinished.$B$BExamining the parcel in detail reveals a hand written name of \"Falfindel Waywarder\" on the outside of the packaging. Perhaps this is the parcel\'s ultimate recipient.", + ["O"] = "Bring the Undelivered Parcel to Falfindel Waywarder in Thalanaar.", + ["T"] = "Thalanaar Delivery", + }, + [4282] = { + ["D"] = "$B$BDo you realize what this means, $N?$B$BPerhaps all is not lost! From what I can ascertain, the information is being held by two Dark Iron dwarves: General Angerforge and the golem lord, Argelmach. I have a feeling that they won\'t just hand over the information if we ask nicely.$B$BI hope you are ready to battle.$B$BVenture forth and find these two villains! Destroy them and return my lost information.", + ["O"] = "Return Marshal Windsor\'s Lost Information.$B$BMarshal Windsor believes that the information is being held by Golem Lord Argelmach and General Angerforge.", + ["T"] = "A Shred of Hope", + }, + [4283] = { + ["D"] = "I\'m going to let you in on a little secret, soldier. Come a little closer.$B$BI\'M THE ONLY SANE ONE HERE!$B$BLook at these people! Would you believe that they\'re all insane!? Well they are! NUTS! CRAZY!$B$B$B$BLet\'s just keep that between me, you, and my pal Captain Winky.$B$B$B$BAnyhooooo... I\'m collecting badges to go along with my ogre ear collection. Orc is the flavor of the day. Fifty. GO!$B$B$B$BSHIP IT!", + ["O"] = "Oralius wants 50 Blackrock Medallions. Chances are high that these medallions can be found on the orcs in the Burning Steppes.", + ["T"] = "FIFTY! YEP!", + }, + [4284] = { + ["D"] = "I\'m sure you\'ve noticed \'em, $N. They\'re everywhere!$B$BWhat am I talking about? Why, the crystals, of course!$B$BThe crystals... They\'re all over the crater. Most people ignore them, but I have a strange feeling that they hold power within them. I\'ve been doing experiments here with them for a while, but I can\'t seem to find anything. Well, I haven\'t yet, anyway.$B$BSay, I\'m running a little low on the crystals I have here -- think you might be able to collect some more for me?", + ["O"] = "Collect 7 Power Crystals of each color: red, blue, yellow, and green. Bring them to J.D. Collie at Marshal\'s Refuge.", + ["T"] = "Crystals of Power", + }, + [4285] = { + ["D"] = "What could they be for? I can\'t get the thought out of my head!$B$BIt\'s driving me crazy -- that the rumors I have heard about the crystal pylons are all true. Call me gullible, but I\'ll usually believe anything people tell me.$B$BAnyway, I have heard that there is one of the crystal pylons fairly close. Somewhere in the north... Please locate it, $N. I just know they exist.", + ["O"] = "Discover the location of the Northern Crystal Pylon in Un\'Goro Crater.", + ["T"] = "The Northern Pylon", + }, + [4286] = { + ["D"] = "Captain Winky tells me that the Dark Irons in the Depths got all the good stuff. Ain\'t that right, Winky?$B$B$B$BARRR MATEY! IT BE RIGHT!$B$BSee what I\'m saying? You need to get in there and bring me back some samples of the good stuff.$B$BGet in there and shake your moneymaker!", + ["O"] = "Travel to Blackrock Depths and recover 20 Dark Iron Fanny Packs. Return to Oralius when you have completed this task. You assume that the Dark Iron dwarves inside Blackrock Depths carry these \'fanny pack\' contraptions.", + ["T"] = "The Good Stuff", + }, + [4287] = { + ["D"] = "During my stay here, I have heard strange rumors about mysterious pylons existing out in the wilderness of the crater, $N. I guess that they are quite large, with crystals lining their interiors.$B$BAlthough I\'ve never seen one, I can\'t help but think that the rumors are true -- and that the pylons have something to do with all the crystals we found$B$BSo why don\'t you help me put my curiosity to rest? Supposedly, there is one in the eastern area of the crater. Do you think you can find it?", + ["O"] = "Discover the location of the Eastern Crystal Pylon in Un\'Goro Crater.", + ["T"] = "The Eastern Pylon", + }, + [4288] = { + ["D"] = "My experiments so far have not yielded any positive results, $N. I can\'t help but hope that you can find a solution by searching for one of the pylons that I have heard exist.$B$BPerhaps if we combine certain colors at them... but I get ahead of myself. Let\'s find them first!$B$B$N, search the western area of the crater; a pylon is said to be somewhere in that area.", + ["O"] = "Discover the location of the Western Crystal Pylon.", + ["T"] = "The Western Pylon", + }, + [4289] = { + ["D"] = "This crater has many strange creatures--they seem to be nobler versions of the creatures found throughout my homeland and beyond. I cannot explain it, but this place cries of the Earth Mother. I pay homage to her every time I track one of her beautiful creatures across its basin.$B$BIf you too wish to feel the enlightenment that accompanies such a great feat, then head to the north. There you\'ll find great apes who are a test for any mortal\'s strength. Bring me their pelts... prove your strength.", + ["O"] = "Bring 2 Un\'Goro Gorilla Pelts, 2 Un\'Goro Stomper Pelts, and 2 Un\'Goro Thunderer Pelts to Torwa Pathfinder at the entrance of Un\'Goro Crater.", + ["T"] = "The Apes of Un\'Goro", + }, + [4290] = { + ["D"] = "Once, a long time ago, a brother of mine took some meat from one of Lar\'korwi\'s kills. He didn\'t know it at the time, but Lar\'korwi saw him from the forest. Lar\'korwi followed my brother for days, destroying everything he touched. My brother, scared, finally decided to run from the Crater and leave Lar\'korwi behind.$B$BLar\'korwi killed him not far from this spot.$B$BIf you want to provoke Lar\'korwi, find a fresh kill of his and take some of the meat from it.$B$BReturn to me afterwards.", + ["O"] = "Find the carcass of Lar\'korwi\'s freshest kill and steal a Piece of Threshadon Carcass before returning to Torwa Pathfinder in Un\'Goro Crater.", + ["T"] = "The Fare of Lar\'korwi", + }, + [4291] = { + ["D"] = "I\'m actually surprised he has not come for you yet, $N. But all is well, for I have a final plan that will bring the monster to us.$B$BBeing the dominant male gives Lar\'korwi rights to breed with any female he chooses--and he chooses many of them. You\'ll find many ravasaur eggs to the west of here. Get close to them and you should provoke an attack by his mates. The females produce an awful smell from a gland in their heads that allow males to know they are ready to breed. Bring me two of those glands.", + ["O"] = "Bring 2 Ravasaur Pheromone Glands to Torwa Pathfinder near the entrance to Un\'Goro Crater.", + ["T"] = "The Scent of Lar\'korwi", + }, + [4292] = { + ["D"] = "This will be the most difficult part because there is some complexity to the plan. To the north of here, you will find a small trail into the mountains. It was here I saw Lar\'korwi last. You will know you are in the right area because of all the bones from massive creatures that once wandered nearby. Take the meat you recovered and place it there. Then, rub this mixture I created on the meat. If both lures mingled together do not bring Lar\'korwi to you, then I know nothing else that will.", + ["O"] = "Using the contents of Torwa\'s Pouch, summon Lar\'korwi and defeat him. Then bring Lar\'korwi\'s Head to Torwa Pathfinder near the entrance to Un\'Goro Crater.", + ["T"] = "The Bait for Lar\'korwi", + }, + [4293] = { + ["D"] = "Felwood is a forest far north of the Barrens, even farther than Ashenvale. There, slimes are found all around pools of water blessed by the touch of Fel. The Scourge decimated the area with attacks of Infernals and other demonic magics--the slimes supposedly crept up through the earth during these attacks.$B$BGather samples of Felwood slimes and we will use the testing equipment next to me to create a control group for our tests against other samples you gather.", + ["O"] = "Gather Felwood Slime Samples from any of the slimes in Felwood. Then, using the Testing Equipment next to Chemist Fuely in Undercity, see which of your samples are the most corrupt. Bring 5 of the Corrupted Felwood Samples you find to Chemist Fuely.", + ["T"] = "A Sample of Slime...", + }, + [4294] = { + ["D"] = "Have you heard of the Un\'Goro Crater, $N? It is near the Tanaris desert, and it is a magnificent place: lush, vibrant, full of creatures and plant life.$B$BIt is there you must go. Word has reached me that the place seems completely untainted by outside hands. Explorers are just now discovering its secrets.$B$BI would like to test the slimes or oozes there. If it is true--that they are uncorrupt--then I would like to see how such creatures have evolved.", + ["O"] = "Gather Un\'Goro Slime Samples from any of the slimes in Un\'Goro Crater. Then, using the Testing Equipment next to Chemist Fuely in Undercity, see which of your samples are the most pure. Bring 5 of the Pure Un\'Goro Samples you find to Chemist Fuely.", + ["T"] = "... and a Batch of Ooze", + }, + [4295] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Rocknot\'s Ale", + }, + [4296] = { + ["D"] = "I came to the Burning Steppes, following the legends of the Seven. They were dwarves of great knowledge and power, and if you have knowledge and power, then wealth is sure to follow.$B$BThat\'s what I want. Wealth!$B$BIf we can learn more of the Seven, then maybe we can get rich together. The ruins of Thaurissan is rumored to keep the Tablet of the Seven, which holds knowledge of the ancient dwarves. Find this tablet, copy its text and bring it to me. Let\'s discover its secrets together!", + ["O"] = "Bring the Tablet Transcript to Maxwort Uberglint in the Burning Steppes.", + ["T"] = "Tablet of the Seven", + }, + [4297] = { + ["D"] = "Sprite darters are omnivores--that means they eat both meat and vegetation. If your egg here\'s gonna hatch, we best be prepared. Some good eats for these little guys are flanks of meat, raw and juicy, believe it or not. I was never able to find out why, but it has somethin\' to do with Elune\'s plan for the elves... maybe they were to be protectors or somethin\', I don\'t know.$B$BI\'ll take care of the egg for now, why don\'t you get me some good Silvermane stalker flanks for \'em to eat when he\'s hatched.", + ["O"] = "Bring 5 Silvermane Stalker Flanks to Agnar Beastamer in Hinterlands.", + ["T"] = "Food for Baby", + }, + [4298] = { + ["D"] = "Whoa, it was a lot more ready than I thought...", + ["O"] = "Speak to Agnar Beastamer in the Hinterlands.", + ["T"] = "Becoming a Parent", + }, + [4299] = { + ["D"] = "Find the Tomb of the Seven, and place this PX83-Enigmatron there. ", + ["O"] = "Place the PX83-Enigmatron in the Tomb of the Seven, then return to Maxwort Uberglint.", + ["T"] = " The Tomb of the Seven", + }, + [4300] = { + ["D"] = "Hmm, maybe there be somethin\' you can do for the Hand now that me think \'bout it. Yes, Jes\'rimon could use your help for sure.$B$BIn Un\'Goro Crater there be raptors with deadly claws. Some of those raptors sometimes have white claws instead of ones black like death. The Hand have... clients... that like weapons crafted from these claws. Bring me many of those white claws, and me pay you good coin. Do it fast enough, and maybe me help you in other ways.", + ["O"] = "Bring 8 White Ravasaur Claws to Jes\'rimon in Orgrimmar.", + ["T"] = "Bone-Bladed Weapons", + }, + [4301] = { + ["D"] = "While you have been exploring Un\'Goro, I have seen other things that a mighty hunter such as yourself would relish in. One such sight was a huge ape among the other gorillas to the north. You have been to that cave before, but this time, I wonder if you\'ll survive the encounter if you accept my task.$B$BI call him U\'cha, and he is one of the Earth Mother\'s greatest sons, of that you can be sure. Defeat U\'cha and bring me his pelt. Do this, and I will defend your right to call yourself a great hunter.", + ["O"] = "Bring U\'cha\'s Pelt to Torwa Pathfinder at the entrance of Un\'Goro Crater.", + ["T"] = "The Mighty U\'cha", + }, + [4321] = { + ["D"] = "The information you have given me about the pylons is very interesting...$B$BGive me a moment to do some calculations, $N. Speak to me again in a moment and I should be able to give you the answer we have been looking for.", + ["O"] = "Speak with J.D. Collie in a moment.", + ["T"] = "Making Sense of It", + }, + [4322] = { + ["D"] = "We need to get out of here, $N. Help me get my gear back from the supply area and free my friends. If we make it out of here, you are to proceed to Morgan\'s Vigil and speak with Marshal Maxwell. He will give you further instruction.", + ["O"] = "Help Marshal Windsor get his gear back and free his friends. Return to Marshal Maxwell if you succeed.", + ["T"] = "Jail Break!", + }, + [4323] = { + ["D"] = "I want some Hyena Pelts, and only the best will do! Get me spotted Hyena pelts and I\'ll give you phat lewtz, yo.", + ["O"] = "Bring 7 Spotted Hyena Pelts to TESTTAUREN at Freewind Post.", + ["T"] = " Get those Hyenas!!!", + }, + [4324] = { + ["D"] = "Although my little brother Ribbly has been worthless his whole life, I think, finally, he has some value! But... we might need your help to capitalize on Ribbly\'s newfound worth.$B$BMy sister Yuka has been looking for him for weeks, and tracked him to the Burning Steppes. She sent word to me, asking for some hired hands.$B$BSo, what do you say? Want to help? If so, then speak with my sister. You\'ll find her holed up in Flame Crest, a cave northwest of Dreadmaul Rock.", + ["O"] = "Speak with Yuka Screwspigot in the Burning Steppes.", + ["T"] = "Yuka Screwspigot", + }, + [4341] = { + ["D"] = "You have been to the smoldering ruins of Thaurissan? Did you happen to run into a pitiful lout named Kharan Mighthammer? The dwarf that was supposedly watching over my baby girl!$B$B$B$BAnd now she\'s gone, $N!$B$BI have had my men turn the Steppes upside down. The only clue they have as to the whereabouts of my daughter is that she may be inside the Depths. For all I know, she could be dead!$B$BKharan is supposedly being held prisoner there... find him! I want answers!", + ["O"] = "Travel to Blackrock Depths and find Kharan Mighthammer.$B$BThe King mentioned that Kharan was being held prisoner there - perhaps you should try looking for a prison.", + ["T"] = "Kharan Mighthammer", + }, + [4342] = { + ["D"] = "Please, hear me out before passing judgement!", + ["O"] = "Listen as Kharan Mighthammer tells his story.", + ["T"] = "Kharan\'s Tale", + }, + [4343] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Corrupted Windblossom", + }, + [4361] = { + ["D"] = "You must take this information back to King Magni, $N. He will know what to do!", + ["O"] = "Return to Ironforge and deliver the bad news to King Magni Bronzebeard.", + ["T"] = "The Bearer of Bad News", + }, + [4362] = { + ["D"] = "It would seem as if my old adversary, Dagran Thaurissan, has me and the kingdom of Ironforge at his mercy.$B$BYou may be my last hope, $N. You must rescue my dear daughter, Moira!$B$BThere is only one way to make sure that the spell Thaurissan has cast on Moira is broken: Kill him.$B$BAnd $N, do not harm her! Remember, she is being controlled by Thaurissan! The things she may do or say are a result of Thaurissan\'s evil spell!", + ["O"] = "Return to Blackrock Depths and rescue Princess Moira Bronzebeard from the evil clutches of Emperor Dagran Thaurissan.", + ["T"] = "The Fate of the Kingdom", + }, + [4363] = { + ["D"] = "Thaurissan was a great and honorable dwarf. You ruined my life and the life of my unborn child!$B$B$B$BReturn to Ironforge and tell my father that the heir to the Kingdom of Ironforge will be a Dark Iron dwarf.$B$BWhether he approves or not, it shall be.", + ["O"] = "Return to Ironforge and speak with King Magni Bronzebeard.", + ["T"] = "The Princess\'s Surprise", + }, + [4381] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Crystal Restore", + }, + [4382] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Crystal Force", + }, + [4383] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Crystal Ward", + }, + [4384] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Crystal Yield", + }, + [4385] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Crystal Charge", + }, + [4386] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Crystal Spire", + }, + [4401] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Corrupted Songflower", + }, + [4402] = { + ["D"] = "It sure gets hot out here in the Valley of Trials.$B$B$B$BIf only I had some cactus apples, I could make my famous cactus apple surprise! Nothing cools you off faster than a piece of that delicious treat.$B$BI\'ll tell you what, $N. If you bring me 10 cactus apples, I\'ll make you a few portions of cactus apple surprise to take with you on your adventures. If you\'re interested, you can find cactus apples growing near the cactus plants around here.", + ["O"] = "Bring Galgar 10 Cactus Apples. You remember him saying that they could be found near cactuses.", + ["T"] = "Galgar\'s Cactus Apple Surprise", + }, + [4403] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Corrupted Windblossom", + }, + [4421] = { + ["D"] = "Not many seek adventure here... Felwood\'s corruption is widespread and indiscriminate.$B$BAs part of the Emerald Circle, I seek to heal this land, but there are some that wish it to fester.$B$BThe ones I speak of are the Jadefire satyrs that dwell to the northwest of here, at the Ruins of Constellas. Led by a particularly cruel satyr named Xavathras, they continue to spread the disease to any creatures they encounter.$B$BWe must defend this land that was once ours. Defeat Xavathras and destroy his minions.", + ["O"] = "Kill 11 Jadefire Felsworns, 9 Jadefire Shadowstalkers, 9 Jadefire Rogues, and Xavathras. Return to Eridan Bluewind in Felwood when the task has been completed.", + ["T"] = "The Corruption of the Jadefire", + }, + [4441] = { + ["D"] = "The flute you found was carved from an ancient protector, the treant allies that have faithfully protected the night elves.$B$BThe satyrs have been able to corrupt anything they come in contact with, which includes the ancients that made Felwood their home. By the use of the fel, the spirit of the ancient has been bound and tortured, never completely released. The felbind you found is no doubt related.$B$BWe must try to purify the flute, $N. Bring me blessed water from the Temple of the Moon in Darnassus.", + ["O"] = "Travel to Darnassus and use Eridan\'s Vial to collect a Vial of Blessed Water from the Temple of the Moon. Return to Eridan with the filled vial.", + ["T"] = "Felbound Ancients", + }, + [4442] = { + ["D"] = "Using the water of Elune, I will attempt to purify the flute. We must end this suffering...$B$BMay Elune guide my hands and heart.$B$BSpeak with me again in a moment.", + ["O"] = "Speak to Eridan again in a moment.", + ["T"] = "Purified!", + }, + [4443] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Corrupted Whipper Root", + }, + [4444] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Corrupted Whipper Root", + }, + [4445] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Corrupted Whipper Root", + }, + [4446] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Corrupted Whipper Root", + }, + [4447] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Corrupted Night Dragon", + }, + [4448] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Corrupted Night Dragon", + }, + [4449] = { + ["D"] = "Hey! Hey, you! Get over here!$B$BYa gotta help me out. I was runnin\' from them Dark Iron dwarves, and I hid in here to get out of sight. Damn bastard geologists and their magic ways! They musta seen me hide, cause next thing I knew, they locked the door and stuck me in here.$B$BTeach them geologists a lesson! Oh... an\' can ya get me some pieces of silk cloth for... for... nothin\'.", + ["O"] = "Kill 8 Dark Iron Geologists and bring 15 pieces of Silk Cloth to the person locked in the outhouse in Searing Gorge.", + ["T"] = "Caught!", + }, + [4450] = { + ["D"] = "Oh, you know what? That reminds me.$B$BYou wanna finish up a little job I took up while I was in Tanaris? It\'s easy...$B$BKrinkle Goodsteel in Gadgetzan was lookin\' for some stuff found here in Searing Gorge and a few other places. Maybe you could take a look at the list and then bring it all to him?$B$BI\'ll just slide his ledger under the door if you\'re interested. Take that, and the stuff he wants back to him after ya collected it all.", + ["O"] = "Take the copy of Goodsteel\'s Ledger and then find the items listed in it before seeking Krinkle Goodsteel in Tanaris.", + ["T"] = "Ledger from Tanaris", + }, + [4451] = { + ["D"] = "The small brass key looks simple enough.. The only thing that seems to make it stand out are some words scratched into the head of it:$B$B\"Dark Iron Outhouse - Do Not Duplicate.\"$B$BYou have no idea what it means or what it will lead to.", + ["O"] = "Search Searing Gorge and find a use for the Grimesilt Outhouse Key you have found.", + ["T"] = "The Key to Freedom", + }, + [4461] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Corrupted Whipper Root", + }, + [4462] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Corrupted Night Dragon", + }, + [4463] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Libram of Rumination", + }, + [4464] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Corrupted Songflower", + }, + [4465] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Corrupted Songflower", + }, + [4466] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Corrupted Windblossom", + }, + [4467] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Corrupted Windblossom", + }, + [4481] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Libram of Constitution", + }, + [4482] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Libram of Tenacity", + }, + [4483] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Libram of Resilience", + }, + [4484] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Libram of Voracity", + }, + [4485] = { + ["D"] = "Hello, $N. I see your dedication remains strong, as does your faith.$B$BI think it is time you spoke with Duthorian Rall in Stormwind. There are some more lessons for you to learn, and I feel you are prepared.$B$BSeek him out in the Cathedral of Light, and $N, take these lessons seriously. You\'ve attained your status through humility and hard work, do not disappoint us by becoming arrogant.$B$BBe well.", + ["O"] = "Speak to Duthorian Rall in Stormwind.", + ["T"] = "The Tome of Nobility", + }, + [4486] = { + ["D"] = "Well, well, well, look at the mighty paladin in all $ghis:her; regality.$B$BSorry, $N, I meant no offense... I just get a little jealous sometimes when I see some of the feats you\'ve accomplished. Tiza tells me it\'s my weakness, and I swore to her I\'d work on it. It\'s just hard sometimes, you know?$B$BBut the reason I wanted to talk to you was because Duthorian Rall in Stormwind sent word for you to meet him in the Cathedral of Light when you\'re ready. Sounded important. Sounded like something\'s going on.", + ["O"] = "Speak to Duthorian Rall in Stormwind.", + ["T"] = "The Tome of Nobility", + }, + [4487] = { + ["D"] = "Ah, good, you\'re here. I sent a $g succubus:infernal; after you to get your attention, but it seems you were able to get here before it found you. No matter.$B$BThere has been some talk lately of your growing power--that is good for you, possibly bad for others. But those are irrelevant points. The point is, I feel you\'ve proven yourself and therefore are deserving of... hehe... a blessing of sorts.$B$BAbove Ratchet in the Barrens you\'ll find a man named Strahad. I believe you\'ve crossed paths before.", + ["O"] = "Speak to Strahad Farsan in Ratchet.", + ["T"] = "Summon Felsteed", + }, + [4488] = { + ["D"] = "Ah, $N, you\'ve seen fit to grace us with your presence. How wonderful!$B$BI hope you do not expect us to wait on you hand and foot also. You may be growing quickly in power, but you still are a pup when it comes to true knowledge and understanding. If you\'re not careful, corruption will overwhelm you and your weak will.$B$BBut I should get to the point: Strahad wishes to speak to you. He is still residing in his tower overlooking Ratchet in the Barrens. I suggest not taking too long.", + ["O"] = "Speak to Strahad Farsan in Ratchet.", + ["T"] = "Summon Felsteed", + }, + [4489] = { + ["D"] = "You, $r! Come here!$B$BYou\'re the one they call $N, yes?$B$BI thought as much. I will keep this short: you\'re growing in power, and it has been acknowledged. And now, the time has come that you are rewarded for your efforts.$B$BGo to the Barrens. There, above Ratchet, you\'ll find Strahad Farsan--perhaps you remember him? He would have words with you. I wouldn\'t take long.", + ["O"] = "Speak to Strahad Farsan in Ratchet.", + ["T"] = "Summon Felsteed", + }, + [4490] = { + ["D"] = "I would give you a reward for your patience and hard work. But know this, the ability to summon a Felsteed will be much more difficult in the future. You will have to earn it... and it will not be easy.$B$BFor now, go with the power to summon such a creature and use it as you see fit.", + ["O"] = "Speak to Strahad Farsan in Ratchet to learn the ability to summon a Felsteed.", + ["T"] = "Summon Felsteed", + }, + [4491] = { + ["D"] = "Ugh... It\'s so hot...$B$BI was exploring this area, when all of a sudden, the heat just became unbearable. I must be suffering from heat exhaustion.$B$BPlease, help me get back to my friend Spraggle at Marshal\'s Refuge. I think I\'m well enough to follow you there.$B$BI am feeling a little out of it, so if I do happen to faint again, just splash some water on me from Spraggle\'s canteen. That should work, I hope...", + ["O"] = "Lead Ringo to Spraggle Frock at Marshal\'s Refuge.$B$BIf Ringo faints, use Spraggle\'s Canteen to revive him.", + ["T"] = "A Little Help From My Friends", + }, + [4492] = { + ["D"] = "You\'ve got to help me, $N! My friend, Ringo left earlier to explore the volcano to the south of here, and he has been gone way too long. I am really worried about him.$B$BDo you think you could find him? Why don\'t you take my canteen with you -- if you do find Ringo, I\'m sure he\'ll need it!", + ["O"] = "Find Ringo at Fire Plume Ridge.", + ["T"] = "Lost!", + }, + [4493] = { + ["D"] = "It would seem that the silithid\'s intent, nay - reason for being, is to devour everything in their path that is not of their ecology. Their focus is singular, and it is for this reason they are a grave threat to all life on Azeroth.$B$BWhat we\'ve seen to date is but the first stages. I suspect that their strength comes from deeper in Kalimdor: Un\'Goro Crater. Go to Gadgetzan in the Tanaris desert and speak to Alchemist Pestlezugg. Tell him of my theory; he will surely aid us in fighting the silithid.", + ["O"] = "Speak to Alchemist Pestlezugg in Gadgetzan.", + ["T"] = "March of the Silithid", + }, + [4494] = { + ["D"] = "It would seem that the silithid\'s intent, nay - reason for being, is to devour everything in their path that is not of their ecology. Their focus is singular, and it is for this reason they are a grave threat to all life on Azeroth.$B$BWhat we\'ve seen to date is but the first stages. I suspect that their strength comes from deeper in Kalimdor: Un\'Goro Crater. Go to Gadgetzan in the Tanaris desert and speak to Alchemist Pestlezugg. Tell him of my theory; he will surely aid us in fighting the silithid.", + ["O"] = "Speak to Alchemist Pestlezugg in Gadgetzan.", + ["T"] = "March of the Silithid", + }, + [4495] = { + ["D"] = "A friend of mine named Iverron usually visits me at the same time every day. The strange thing is that he hasn\'t been by today at all -- he\'s several hours late, in fact.$B$BI admit, I am a little worried, $N. Iverron spends a lot of time over by the cave to the north, and I\'m sure you know how dangerous it is there -- spiders, everywhere!$B$BIf you happen to be going that way, though, will you keep an eye out for him?", + ["O"] = "Find Iverron by the cave to the north.", + ["T"] = "A Good Friend", + }, + [4496] = { + ["D"] = "My research revealed to me that the silithid are like bees; destroy the queen of the hive, and the rest of should be thrown into disarray. I\'ll brew a lure that we\'ll use to bring out the queen; once summoned, you\'ll take her down.$B$BFirst though, we need some reagents; we don\'t want you bungling into the jungle unprepared. Go west to find the silithid hive in Un\'Goro Crater and obtain a scent gland from one of the bugs. I\'ll also need some samples of the native Un\'Goro soil.", + ["O"] = "Bring a Gorishi Scent Gland and 5 Un\'Goro Soil samples to Alchemist Pestlezugg in Gadgetzan.", + ["T"] = "Bungle in the Jungle", + }, + [4501] = { + ["D"] = "Wanted: A skilled fighter to deal with the threat of the Pterrordax that inhabit the Un\'Goro Crater. Their numbers are growing, and they are becoming a menace to travelers in the area.$B$BDecrease the population by slaying 10 pterrordax and 15 frenzied pterrordax.$B$BSpeak with Spraggle Frock after completing the task for a reward.", + ["O"] = "Kill 10 Pterrordax and 15 Frenzied Pterrordax, then speak to Spraggle Frock at Marshal\'s Refuge.", + ["T"] = "Beware of Pterrordax", + }, + [4502] = { + ["D"] = "Being an apprentice to Marvon Rivetseeker, I\'ve learned so much. But he\'s been gone for such a long time now, so I think I\'m going to work on some experiments of my own.$B$BI\'ve been reading about Un\'Goro Crater most recently, and about the strange volcanic activity going on in the middle of the crater. I think a lot could be learned if I could just get some of the ash from the elementals there.$B$BDo you think you\'d mind collecting some for me, if you are going that way?", + ["O"] = "Collect 9 samples of Un\'Goro Ash from the fire elementals around the volcano in Un\'Goro Crater, and return them to Liv Rizzlefix in Ratchet.", + ["T"] = "Volcanic Activity", + }, + [4503] = { + ["D"] = "I\'m making a flying machine!$B$BI got stranded here, and I\'m absolutely horrible at finding my way around. I\'d take a gryphon or wind rider back to Gadgetzan, but those beasts just scare me to death.$B$BSo, will you help me? All I have left to build is the wings, and I was thinking that the webby scales from the pterrordax and diemetradon would be perfect. There\'s no way I\'m going to go up against one of those, but you look pretty tough. Why don\'t you give it a try?", + ["O"] = "Collect 8 Webbed Diemetradon Scales and 8 Webbed Pterrordax Scales for Shizzle in Marshal\'s Refuge.", + ["T"] = "Shizzle\'s Flyer", + }, + [4504] = { + ["D"] = "I\'m always looking for a quick way to earn a gold, $N. If you help me with my newest idea, I\'ll let you in on a little of the profit. How does that sound to you?$B$BI thought so!$B$BHead to the tar pits in northern Un\'Goro Crater, and collect me some tar. Not just any tar, now, you\'ll need to get it from the beasts that live around the tar pits. Regular tar just simply isn\'t sticky enough.$B$BThe plant-like creatures contain chlorophyll in their skin, and mixed with the tar, it\'s super sticky!", + ["O"] = "Collect 12 samples of Super Sticky Tar for Tran\'rek in Gadgetzan.", + ["T"] = "Super Sticky", + }, + [4505] = { + ["D"] = "Some may say that I am exceptionally cruel... But truly, it is only a strong desire to see the Horde gain an advantage against the Alliance, in any way possible.$B$BMy newest interest is a moonwell at the Ruins of Constellas, south of here, tended by the Jadefire satyrs. The moonwell, once a symbol of renewal for the insufferable night elves, is now corrupted, and used to bring forth more satyrs.$B$BI have an idea, $N, and I\'d like a sample of the water... for my little feline friend here.", + ["O"] = "Collect a sample of corrupted water from the Jadefire Satyrs\' moonwell and bring it to Winna Hazzard at Bloodvenom Post.", + ["T"] = "Well of Corruption", + }, + [4506] = { + ["D"] = "This corrupted water can be used to our advantage, $N. With just a small amount of the water, my kitten doubled in size, and seems to be stronger... somehow. These cats may prove useful...$B$BHere, $N. Take this cat carrier, and release the kitten inside next to the moon well in the Ruins of Constellas. Heh, heh... I\'m sure you\'ll be pleased with the results!$B$BReturn the cat to me, and I\'m sure I can make it worth your time.", + ["O"] = "Take Winna\'s kitten to the corrupted moon well, release it, then bring it back to Winna.$B$BOnce you have returned to Winna, click on the cat to release it to Winna.", + ["T"] = "Corrupted Sabers", + }, + [4507] = { + ["D"] = "Here\'s the lure. Inside the hive network should be a crystal of some sort. We think the silithid use the crystal as some sort of hive-wide attunement device. As for where this crystal might be, I\'d say try the hatcheries inside the hive.$B$BUsing the lure on the crystal should roust out the queen, but be warned - she will probably be protected by several guards. Take out the queen and remove her brain. As icky as that sounds, we desperately need to study it. Good luck, $N!", + ["O"] = "Defeat the Gorishi Hive Queen once she is summoned.$B$BBring the Gorishi Queen\'s Brain to Alchemist Pestlezugg in Gadgetzan.", + ["T"] = "Pawn Captures Queen", + }, + [4508] = { + ["D"] = "My recent findings and the knowledge we have gained here today needs to reach hands that can quite possibly do something with it. As resourceful as we are here in Gadgetzan, we can\'t do this alone.$B$BTake my latest report back to Gracina Spiritmight in Darnassus; she\'s still at the Temple of the Moon, is she not? She\'s got friends who are Alliance bigwigs; if we can get them involved in this $N, then we just might make it out of this alive.", + ["O"] = "Bring Pestlezugg\'s Un\'Goro Report to Gracina Spiritmight in Darnassus.", + ["T"] = "Calm Before the Storm", + }, + [4509] = { + ["D"] = "My recent findings and the knowledge we have gained here today needs to reach hands that can quite possibly do something with it. As resourceful as we are here in Gadgetzan, we can\'t do this alone.$B$BTake my latest report back to Zilzibin Drumlore in Orgrimmar; he\'s still in his place on the upper part of the Drag, is he not? He\'s got friends who are high within the Horde; if we can get them involved in this $N, then we just might make it out of this alive.", + ["O"] = "Bring Pestlezugg\'s Un\'Goro Report to Zilzibin Drumlore in Orgrimmar.", + ["T"] = "Calm Before the Storm", + }, + [4510] = { + ["D"] = "$N, your help has been immeasurable. The time will come, no doubt, when I\'ll ask for your assistance against the silithid once more. We must absorb what we have learned in Un\'Goro; I fear that my assumptions that the silithid originated from Un\'Goro are now wrong... that indeed there is a far stronger presence somewhere.$B$BTake this note to Idriana at the bank. She\'ll give you something from my vault that should be viewed as a token of my gratitude. Thank you for your assistance, brave $c.", + ["O"] = "Bring the Bank Voucher to Idriana in the bank of Darnassus.", + ["T"] = "Calm Before the Storm", + }, + [4511] = { + ["D"] = "$N, we could not have gotten this far without you. The time will come soon, no doubt, when I\'ll ask for your help against the silithid once more. We must absorb what we have learned in Un\'Goro; I fear that my assumptions that the silithid originated from Un\'Goro are now wrong... that indeed there is a far stronger presence somewhere.$B$BTake this note to Karus at the bank. He\'ll give you something from my vault that should be viewed as a token of my gratitude. Thank you for your assistance, mighty $c.", + ["O"] = "Bring the Bank Voucher to Karus in the bank of Orgrimmar.", + ["T"] = "Calm Before the Storm", + }, + [4512] = { + ["D"] = "But the thing I\'ve studied most is ooze. I know it sounds odd, but they\'re all over!$B$BI helped a lady in Menethil find her bag not too long ago--it was eaten by oozes. I\'ve seen members of the Royal Apothecary Society from Undercity collecting samples of the stuff. I want to know why! Where does it come from?$B$BI\'ve heard of more in Felwood. What I need are samples of the oozes there so I can further my research. I\'ll give you containers, you use them to collect a sample from the deceased creatures.", + ["O"] = "Bring 6 Filled Cursed Ooze Jars and 6 Filled Tainted Ooze Jars to Laris Geardawdle in Ironforge.", + ["T"] = "A Little Slime Goes a Long Way", + }, + [4513] = { + ["D"] = "I\'m going to need more samples, $N. But--and I don\'t know how to put this--they have to be pure samples. I know, I know. \"What does \'pure\' mean, Laris?\" I\'m not sure. I do know that these are corrupt... just like Felwood. Which is what makes my realization so important. The oozes seem to adapt... to take on the aspects of the area they\'re in. I\'ll need to find samples that haven\'t been polluted. But where? Where?!$B$BBah! $N, take these containers just in case you find any on your own.", + ["O"] = "Bring 10 Filled Pure Sample Jars to Laris Geardawdle in Ironforge.$B$BIf you have trouble finding them, perhaps try to get more clues from Laris.", + ["T"] = "A Little Slime Goes a Long Way", + }, + [4521] = { + ["D"] = "Winterspring lies just beyond Timbermaw, northeast of Felwood. Have you been there?$B$BI have heard that the area is laden with creatures called wildkin. These beasts have been known to guard secrets; secrets of the Night elves.$B$BWe must figure out what may be hidden in Winterspring.$B$BI have heard the ragged owlbeasts can be found just south of the road, and that there are others called raging owlbeasts that may be found in the center of Winterspring. Clear them out, and gain access to the land.", + ["O"] = "Trull Failbane in Felwood wants you to kill 15 Raging Owlbeasts and 15 Ragged Owlbeasts.", + ["T"] = "Wild Guardians", + }, + [4542] = { + ["D"] = "Brave traveler, the centaurs have increased their attacks in this area. Freewind Post must know about this renewed harassment immediately! Seek Cliffwatcher Longhorn at Freewind Post to the southeast and give him this urgent message.$b$bBe warned, avoid the Grimtotem Clan nearby... they have been acting strange toward us lately.", + ["O"] = "Bring the Urgent Message to Cliffwatcher Longhorn at Freewind Post.", + ["T"] = "Message to Freewind Post", + }, + [4561] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Testing for Impurities - Un\'Goro Crater", + }, + [4581] = { + ["D"] = "The druid Kayneth Stillwind sent word to me. He would like a report of the happenings along our coast and in the forests surrounding Astranaar. He fears there is a corruption moving through Ashenvale... and he may be right.$B$BHere, take my report to him. You will find him in the shrine of Forest Song, in the Nightsong Woods to the east.", + ["O"] = "Take Shindrell\'s Note to Kayneth Stillwind in Forest Song.", + ["T"] = "Kayneth Stillwind", + }, + [4601] = { + ["D"] = "This contraption stands out amongst the gnomes holding out against the madness outside the room. A small plaque on the device reads \"The Sparklematic 5200\", followed by some text:$B$B\"Grime and residue ruining your sparklies? The Sparklematic 5200 puts the shine back in shine-tastic! Insert the item you wish to clean and deposit three silver coins in the coin slot. Give the Sparklematic 5200 a moment for operation, and voila! Your valuables will emerge clean and shiny!\"", + ["O"] = "Insert a Grime-Encrusted Item into the Sparklematic 5200, and be sure to have three silver coins to start the machine.", + ["T"] = "The Sparklematic 5200!", + }, + [4602] = { + ["D"] = "This contraption stands out amongst the gnomes holding out against the madness outside the room. A small plaque on the device reads \"The Sparklematic 5200\", followed by some text:$B$B\"Grime and residue ruining your sparklies? The Sparklematic 5200 puts the shine back in shine-tastic! Insert the item you wish to clean and deposit three silver coins in the coin slot. Give the Sparklematic 5200 a moment for operation, and voila! Your valuables will emerge clean and shiny!\"", + ["O"] = "Insert a Grime-Encrusted Item into the Sparklematic 5200, and be sure to have three silver coins to start the machine.", + ["T"] = "The Sparklematic 5200!", + }, + [4603] = { + ["D"] = "", + ["O"] = "", + ["T"] = "More Sparklematic Action", + }, + [4604] = { + ["D"] = "", + ["O"] = "", + ["T"] = "More Sparklematic Action", + }, + [4605] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Sparklematic 5200!", + }, + [4606] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Sparklematic 5200!", + }, + [4621] = { + ["D"] = "Listen close, sea dawg... the powers of Booty Bay is what keeps us Bloodsail from sailing wheres we like and taking whats we want as rights o\' plunder. Were ye to put a knife to Fleet Master Seahorn, we\'d ne\'er run afoul of a Booty Bay\'s vessel. Were ye to put a knife to Baron Revilgaz, we\'d ne\'er face the law on their terms.$B$BIf ye are to be an honorary admiral amongst us - yes, ADMIRAL, you\'ll puts a knife to both of \'em as I\'ve says. Go now $g lad : lass;, and return to me once ye does the deeds.", + ["O"] = "Slay Fleet Master Seahorn and Baron Revilgaz of Booty Bay, and then return to Fleet Master Firallon aboard the Crimson Veil off the coast of Stranglethorn Vale.", + ["T"] = "Avast Ye, Admiral!", + }, + [4641] = { + ["D"] = "Finally, you are of age, $N... of age to battle in the name of the Horde. To conquer for the glory of the Warchief.$B$BYes...$B$B$B$BYou will do nicely.$B$BNo doubt you wish to find a great dragon or demon and strangle it with your bare hands, but perhaps it would be wise to start on something less... dangerous.$B$B$B$BReport to Gornek, he should be able to assign a task better suited to a young $c. You will find Gornek in the Den, to the west.", + ["O"] = "Speak with Gornek. You recall Kaltunk marking your map with his location and mentioning that Gornek resided in the Den, a building to the west. ", + ["T"] = "Your Place In The World", + }, + [4642] = { + ["D"] = "Here is some encased ooze created from the Felwood samples you recovered. Take the case to Un\'Goro Crater and find a pure ooze... the primal variety will do nicely. When you get close enough, release the ooze in the case, and let us see what the two think of one another.$B$BAfter the experiment concludes, bring me a sample of whatever is left over. I will await you here in the Apothecarium.", + ["O"] = "Bring a Merged Ooze Sample to Chemist Fuely in Undercity.", + ["T"] = "Melding of Influences", + }, + [4661] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Testing for Corruption - Felwood", + }, + [4681] = { + ["D"] = "That beached creature is not an isolated incident here in Darkshore. There are more along the coastline and even in the water. I would like for you to investigate another one that we know of; this one was reported to be in the water due west of Auberdine, close to a sunken vessel. Return to me with anything that you may recover that would aid our research.$B$BAlso, in your travels you may find other creatures. By all means, if you should discover anything then please bring it to our attention!", + ["O"] = "Recover the Sea Turtle Remains from the Skeletal Sea Turtle in the waters west of Auberdine, and then speak with Gwennyth Bly\'Leggonde back in Auberdine.", + ["T"] = "Washed Ashore", + }, + [4701] = { + ["D"] = "You have no doubt seen the worgs which the Blackrock orcs command.$B$BIt is curious - no matter how many we destroy, their numbers never dwindle. My scouts have reported that the worgs are bred, trained, and ultimately exported from Blackrock Spire: capital city of the Blackrock orcs. You must travel to Blackrock Spire and discover the source of this menace. Discover... and destroy.$B$BGood luck, $N. May Cenarius protect you...", + ["O"] = "Travel to Blackrock Spire and destroy the source of the worg menace. As you left Helendis, he shouted a name: Halycon. It is what the orcs refer to in regards to the worg.", + ["T"] = "Put Her Down", + }, + [4721] = { + ["D"] = "Runners have returned from Winterspring with reports that there is a series of small caves in the southern area of Winterspring. It seems that there are wildkin situated in the area around these caves. If there is something valuable that they are guarding, I believe that this is the place we will find it.$B$BYou will find these to be more of a challenge than the previous types, $N. The creatures seem to have gone mad from exposure to the very thing that they strive to protect. ", + ["O"] = "Trull Failbane in Felwood wants you to hunt 10 Berserk Owlbeasts in Winterspring.", + ["T"] = "Wild Guardians", + }, + [4722] = { + ["D"] = "You find a corpse of a sea turtle that had beached itself on the coast of Darkshore some time ago. It has been scavenged by the murlocs who have encamped themselves around the creature\'s remains. Still, there appear to be some suitable samples left on the creature\'s remains that Gwennyth Bly\'Leggonde in Auberdine might be able to make use of.", + ["O"] = "Take the Sea Turtle Remains to Gwennyth Bly\'Leggonde in Auberdine.", + ["T"] = "Beached Sea Turtle", + }, + [4723] = { + ["D"] = "The remains of a giant thresher - much larger than one you\'d expect to find in Darkshore - lie beached on the coast of the Mist\'s Edge. How this creature came to be here is unknown; the group of murlocs that now feast off the carcass of it seem to be much too weak, even in large numbers, to have brought down the beast. $B$BWhile some of it has been picked clean, enough of it remains to take a sample for Gwennyth Bly\'Leggonde in Auberdine to study.", + ["O"] = "Take the Sea Creature Bones to Gwennyth Bly\'Leggonde in Auberdine.", + ["T"] = "Beached Sea Creature", + }, + [4724] = { + ["D"] = "Some say the worg controlled by the Blackrock orcs are the creation of a supernatural force. Others say they are not true worg but instead a breed of demon dog, granted to the orcs by a fallen pit lord.$B$BThe truth is far less contrived but every bit as frightening. The worg of Blackrock come from Halycon and her mate. Halycon is the gigantic den mother of the worg. Her mate? Nobody has ever lived to tell the tale of that one.$B$BStrike at the heart of the worg. Destroy Halycon... and $N, watch your back.", + ["O"] = "Slay Halycon, pack mistress of the Bloodaxe worg.", + ["T"] = "The Pack Mistress", + }, + [4725] = { + ["D"] = "More sea turtle remains lie beached along the coastline. This particular set has an abandoned carriage attached to the turtle\'s shell. Perhaps this creature was driven to the shoreline by unknown beings rather than beaching itself as some of the other remains suggested. Greymist murlocs now make the remains of this creature their home, feasting off the carrion.$B$BIn the carriage, you find a box with strange markings on it; perhaps Gwennyth Bly\'Leggonde in Auberdine can make sense of it.", + ["O"] = "Take the Strangely Marked Box to Gwennyth Bly\'Leggonde in Auberdine.", + ["T"] = "Beached Sea Turtle", + }, + [4726] = { + ["D"] = "I have been studying the dragonkin of the Burning Steppes for weeks, and I think I\'ve finally had a breakthrough! I created a device--I call it the Draco Incarcinatrix 900. It can capture the essence of dragon whelp broodlings!$B$BOr, at least I think it can.$B$BHere, take the device and zap a broodling in the Burning Steppes with it. While it\'s under the device\'s effects, defeat the broodling and its essence should be released.$B$BIf it is, then splendid! Bring me back samples so I can study them!", + ["O"] = "Bring 8 Broodling Essence and the Draco-Incarcinatrix 900 to Tinkee Steamboil at the Flame Crest in the Burning Steppes.", + ["T"] = "Broodling Essence", + }, + [4727] = { + ["D"] = "The skeletal remains of a sea turtle lie in the sand of the northern Darkshore beaches. The Greymist murlocs have either not found this carcass, or perhaps they have and are shying away from it for some unknown reason. Regardless, there is enough of the turtle left to take a sample back to Gwennyth Bly\'Leggonde in Auberdine for the Temple of the Moon to study.", + ["O"] = "Take the Sea Turtle Remains to Gwennyth Bly\'Leggonde in Auberdine.", + ["T"] = "Beached Sea Turtle", + }, + [4728] = { + ["D"] = "The corpse of what appears to be some sort of giant sea mammal lies partially gutted on the beach. A wheelbarrow and various tools lie abandoned by this enormous beached sea creature, as though an attempt to study it had been made previously. Though murlocs have scavenged this beast, enough of it remains to gather a suitable sample for Gwennyth Bly\'Leggonde in Auberdine.", + ["O"] = "Take the Sea Creature Bones to Gwennyth Bly\'Leggonde in Auberdine.", + ["T"] = "Beached Sea Creature", + }, + [4729] = { + ["D"] = "You\'re probably wondering what I\'m doing out here. Look at the cages! Ain\'t it obvious?$B$BI\'m an animal lover, first and foremost, but a salesman by trade. I track down exotic animals for the rich and famous and domesticate the beasts so they behave as proper pets.$B$BNow you\'re probably wondering, \"What can I do for you, Kibler.\" The answer is simple: Take this here beast cage and find me some worg pups. For that, I\'ll domesticate a worg for you!", + ["O"] = "Travel to Blackrock Spire and find Bloodaxe Worg Pups. Use the cage to carry the ferocious little beasts. Bring back a Caged Worg Pup to Kibler.", + ["T"] = "Kibler\'s Exotic Pets", + }, + [4730] = { + ["D"] = "The half-devoured corpse of what might have been a giant sea mammal lies on the beach. A band of murlocs, stronger than those found closer to Auberdine, have taken up residence around the fallen creature. Enough of the creature remains that a suitable sample of its bones could be delivered to Gwennyth Bly\'Leggonde in Auberdine.", + ["O"] = "Take the Sea Creature Bones to Gwennyth Bly\'Leggonde in Auberdine.", + ["T"] = "Beached Sea Creature", + }, + [4731] = { + ["D"] = "Another set of sea turtle remains lie beached on the coastline. This set of remains has an abandoned carriage half buckled to the turtle\'s shell. Perhaps this creature was driven to the shoreline by unknown beings rather than beaching itself as some of the other remains suggested. Powerful Greymist murlocs have made the carcass of this creature their current home.$B$BIn the carriage, you find a box with strange markings on it; perhaps Gwennyth Bly\'Leggonde in Auberdine can make sense of it.", + ["O"] = "Take the Strangely Marked Box to Gwennyth Bly\'Leggonde in Auberdine.", + ["T"] = "Beached Sea Turtle", + }, + [4732] = { + ["D"] = "You find a corpse of a sea turtle that had beached itself on the coast of Darkshore some time ago. It has been picked nearly clean by Greymist murlocs, the very ones who now have encamped themselves around the creature\'s remains. Still, there appear to be some suitable samples left on the creature\'s remains that Gwennyth Bly\'Leggonde in Auberdine might be able to make use of.", + ["O"] = "Take the Sea Turtle Remains to Gwennyth Bly\'Leggonde in Auberdine.", + ["T"] = "Beached Sea Turtle", + }, + [4733] = { + ["D"] = "The remains of what appear to be a giant thresher have washed ashore on the rocky inlet of the Twilight Shore. The thresher is several times larger than any of the other threshers spotted in these parts. Wherever it came from, this creature would not seem to have been native to Darkshore.$B$BThough the creature has been picked apart in places, enough of it remains to gather a suitable sample for Gwennyth Bly\'Leggonde in Auberdine.", + ["O"] = "Take the Sea Creature Bones to Gwennyth Bly\'Leggonde in Auberdine.", + ["T"] = "Beached Sea Creature", + }, + [4734] = { + ["D"] = "$N, I\'ve been working hard on a new device, the eggscilloscope! It\'s designed to project a burst of cold energy at the egg of a black dragon... and freeze it solid! Can you test it for me?$B$BI heard that high up in Blackrock Spire, the dragons have a rookery where they hatch their eggs. That\'s where you\'ll have to go to test the eggscilloscope, and then let me know how it worked!$B$BAnd don\'t worry. Frozen dragon eggs should be harmless. It\'s the unfrozen ones you have to worry about!", + ["O"] = "Use the Eggscilloscope Prototype on an egg in the Rookery.", + ["T"] = "Egg Freezing", + }, + [4735] = { + ["D"] = "$N, I\'m finally ready for real samples of dragon eggs! Here, take this collectronic module. It\'s designed to extract a dragon egg and prepare it for transport. Go back to the Rookery and use the module to collect eggs.$B$BAnd don\'t forget to freeze them first, or they might hatch before you can collect them!$B$BWhen you have enough eggs, bring them to me! ", + ["O"] = "Bring 8 Collected Dragon Eggs and the Collectronic Module to Tinkee Steamboil at Flame Crest in the Burning Steppes.", + ["T"] = "Egg Collection", + }, + [4736] = { + ["D"] = "Ah, hello, $N. You\'re progressing well in your training. So well in fact that I think you should be rewarded for your hard work--and for not becoming corrupted by the arcane yet.$B$BIf you\'re interested, seek out Menara Voidrender in Ratchet. She is currently staying at Strahad Farsan\'s tower overlooking the town.$B$BShe\'s not very friendly, $N, so don\'t expect any praise. But if you work hard, she\'ll make sure you\'re taken care of.", + ["O"] = "Speak to Menara Voidrender in the Barrens.", + ["T"] = "In Search of Menara Voidrender", + }, + [4737] = { + ["D"] = "Hmph, still you strive to become more powerful. I say it\'s only time before the corruption and addiction takes hold of you and you become a slave to that which you seek to gain power over.$B$BPfah! A fool you are! Time will prove me right--nothing else... just time.$B$BBut it seems that not all agree with Zevrost. It seems Menara would create tools for you to become more powerful and to harness your strength. If you\'re interested, then go to Ratchet in the Barrens. She is there overlooking the town.", + ["O"] = "Speak to Menara Voidrender in the Barrens.", + ["T"] = "In Search of Menara Voidrender", + }, + [4738] = { + ["D"] = "Let us be clear about one thing, $N: I don\'t feel you are ready for such responsibilities. I don\'t think aiding in the creation of any item of power is something a novice should ever be involved in; especially one so untested.$B$BBut that\'s not my decision. The powers that be, or at least the ones that do wish to impart such gifts upon you get to decide that.$B$BIf you\'re interested in learning more, I suggest you seek out Menara Voidrender in Ratchet. She usually resides in the tower above the port town.", + ["O"] = "Speak with Menara Voidrender in the Barrens.", + ["T"] = "In Search of Menara Voidrender", + }, + [4739] = { + ["D"] = "$C! Yes, you!$B$BYou don\'t have all the accoutrements, but it\'s plain to see you\'re ready--the air around you exudes greater confidence. Yes, I see it now.$B$BMenara Voidrender would teach you a few things if you feel you\'re ready. She spends her time tutoring younger students in the arcane. She even gives gifts to those who pass her tests.$B$BGo to Ratchet in the Barrens if you\'re interested. She\'s above the city in Strahad\'s tower.", + ["O"] = "Speak to Menara Voidrender in the Barrens.", + ["T"] = "In Search of Menara Voidrender", + }, + [4740] = { + ["D"] = "Attention!$B$BA reward is being offered for the death of the murloc \"Murkdeep\". This foul beast is known to be responsible for the death of at least one Sentinel, and is suspected of causing the sinking of at least two cargo vessels in the waters off Darkshore!$B$BMurkdeep was last spotted at a hutted murloc camp south of Auberdine, and is thought to be protecting the huts there. Reward claims for this bounty should be claimed with Sentinel Glynda Nal\'Shea in Auberdine.$B$BThe Auberdine Village Council", + ["O"] = "Find and slay the murloc known as Murkdeep. The creature is thought to be defending the murloc huts south of Auberdine along the water.$B$BReport the death of Murkdeep to Sentinel Glynda Nal\'Shea in Auberdine.", + ["T"] = "WANTED: Murkdeep!", + }, + [4741] = { + ["D"] = "In the northern areas of Winterspring, the Wildkin grow even more ferocious. We must continue our measures there.$B$BHunt the moontouched owlbeasts in Winterspring, and explore the area they inhabit.$B$BThis is dangerous ground, but I know that you will be able to handle the challenge. Return to me after you have slain 13 of the wildkin.", + ["O"] = "Trull Failbane in Felwood wants you to hunt 13 Moontouched Owlbeasts.", + ["T"] = "Wild Guardians", + }, + [4742] = { + ["D"] = "As you can see, the unadorned seal has three empty sockets. Each of those sockets must be filled with a gemstone representing the leadership\'s command. Finally, Overlord Wyrmthalak, master of the lower citadel, must forge the seal in the flames of the Black Dragonflight.$B$BUnderstand this, mortal: the chance that one of the three generals of the lower citadel would carry a gemstone at any given time is rare. You must be vigilant in your quest. Remain determined!", + ["O"] = "Find the three gemstones of command: The Gemstone of Smolderthorn, Gemstone of Spirestone, and Gemstone of Bloodaxe. Return them, along with the Unadorned Seal of Ascension, to Vaelan.$B$BThe Generals, as told to you by Vaelan, are: War Master Voone of the Smolderthorn; Highlord Omokk of the Spirestone; and Overlord Wyrmthalak of the Bloodaxe.", + ["T"] = "Seal of Ascension", + }, + [4743] = { + ["D"] = "Few of the black dragonkin, outside of those in the upper citadel, have the ability to forge the seal with their own flaming breath. Wyrmthalak is one such dragonkin, but his will is unbreakable.$B$BYou must travel to the Wyrmbog in Dustwallow Marsh. It is there that you will find an ancient drake known as Emberstrife. You must break his will, $N. Break it and use this orb on his weakened form. You will have scant seconds to control his mind and fan the flames that will forge the seal.", + ["O"] = "Travel to the Wyrmbog in Dustwallow Marsh. Find the ancient drake, Emberstrife and beat him without mercy until his will is broken.$B$BIt is at that moment which you must place the Unforged Seal of Ascension before the great beast. You must then be quick to use the Orb of Draconic Energy on his weakened form and claim dominion over his mental faculties. Control the beast and force the Flames of the Black Dragonflight upon the Unforged Seal of Ascension!", + ["T"] = "Seal of Ascension", + }, + [4761] = { + ["D"] = "Your scouting of the furbolg camp is information that Thundris Windweaver should be made aware of. He graciously serves as the elder of Auberdine, offering sage and just stewardship of the day to day affairs of the village. Please - share with him your findings to date on the furbolg situation.$B$BI believe he has some ideas of his own on the reasons behind their corruption. Perhaps you can work with him to enact a plan to restore the balance of nature here!", + ["O"] = "Speak with Thundris Windweaver in Auberdine.", + ["T"] = "Thundris Windweaver", + }, + [4762] = { + ["D"] = "The Cliffspring River has begun turning foul and corrupted. It empties into the Mist\'s Edge, and I fear the wash will affect Auberdine soon. I suspect the Blackwood furbolgs up-river are the cause of the taint, but I also suspect that they aren\'t the true root of it.$B$BTake this sampling tube and go to the mouth of the river to our north. Proceed inland to the first waterfall and draw a sample from the pool there. You\'ll see a bridge overhead. Once you have a sample, return to me in Auberdine.", + ["O"] = "Travel north of Auberdine to the first waterfall along the Cliffspring River and draw a sample from the pool there.$B$BReturn to Thundris Windweaver in Auberdine with the Cliffspring River Sample.", + ["T"] = "The Cliffspring River", + }, + [4763] = { + ["D"] = "We\'ve learned that a source of furbolg corruption is from the satyr. They hold sway via talismans that they channel magic through. If the furbolg have a chance at salvation, we must lure out the satyr corruptor and take that talisman!$B$BFill this bowl at our moonwell and take samples of the furbolgs\' food from their northern camp. Mix them and place it near the bonfire by the river; any furbolgs who eat will be cleansed just long enough to lure out the satyr corruptor... who then you must slay!", + ["O"] = "Fill the Empty Cleansing Bowl at the Auberdine Moonwell.$B$BGather a sample of fruit, nut, and grain from the northern Blackwood furbolg camps.$B$BMix the bowl and place it near the bonfire closest to the Cliffspring River at the northern camp, thus summoning the satyr corruptor.$B$BTake the Talisman of Corruption and bring it to Thundris Windweaver in Auberdine.", + ["T"] = "The Blackwood Corrupted", + }, + [4764] = { + ["D"] = "There is a chamber, high in Blackrock Spire, that was once called the Hall of Fortune. It was where the Dark Iron dwarves kept their relics, trophies and objects of art.$B$BThat was long ago. It is said the hall has collapsed and is now used for... less savory tasks. But I believe some old dwarven relics may still be found there.$B$BOne such relic is Doomrigger\'s clasp, with a surface so encrusted with rare gems that it was said to make weep any dwarf who gazes upon it.$B$BThat clasp, $N, is your goal.", + ["O"] = "Bring Doomrigger\'s Clasp to Mayara Brightwing in the Burning Steppes.", + ["T"] = "Doomrigger\'s Clasp", + }, + [4765] = { + ["D"] = "I have packaged Doomriggers Clasp into a crate, suitable for shipment to Stormwind. $N, you have been extremely helpful -- can I ask you for one last favor?$B$BDeliver the crate to Count Remington Ridgewell. You will find him in the Keep of Stormwind. I am sure he\'ll be very pleased to see what you have for him.", + ["O"] = "Bring Ridgewell\'s Crate to Remington Ridgewell in Stormwind.", + ["T"] = "Delivery to Ridgewell", + }, + [4766] = { + ["D"] = "An agent of mine, Mayara Brightwing, was sent to the Burning Steppes to scout the ruined city of Thaurissan. That destroyed city of the Dark Iron dwarves may hide objects of great value... objects that would fit nicely into our family museum.$B$BMayara says she found something and will need aid in retrieving it, but it is not in Thaurissan. Instead, a foray into Blackrock Spire will be required.$B$BI do not know the details, but if interested then speak with Mayara in the Burning Steppes.", + ["O"] = "Speak with Mayara Brightwing in the Burning Steppes.", + ["T"] = "Mayara Brightwing", + }, + [4767] = { + ["D"] = "I\'ve been tasked to recruit more wyverns for the master wind riders. Their numbers are growing and I myself hope to become a wind rider one day. However, we cannot train enough wyverns to keep up with the demand. Perhaps you can help me, $N.$B$BI need you to travel to Highperch to gather some wyvern eggs. From here, head northwest along the canyon walls to a ramp that will lead you into Highperch. Be careful, wyverns are very protective over their eggs and they will not be kind to intruders.", + ["O"] = "Bring 10 Highperch Wyvern Eggs to Elu in Freewind Post.", + ["T"] = "Wind Rider", + }, + [4768] = { + ["D"] = "The Darkstone Tablet holds the writings of the long-dead dwarf Urheld Darkstone. An alchemist of great skill, he was thought insane by his contemporaries and, hence, did not share his research.$B$BBut he did etch it onto tablets, and I believe one such tablet lies in Blackrock Spire, in a chamber once named the Hall of Fortune. I know not what it is now called, for few enter Blackrock and return.$B$BBut if you are willing to brave its dangers and return to me with the tablet, your reward will be great.", + ["O"] = "Bring the Darkstone Tablet to Shadow Mage Vivian Lagrave in Kargath.", + ["T"] = "The Darkstone Tablet", + }, + [4769] = { + ["D"] = "Vivian Lagrave sent me word from Kargath, in the Badlands. Through her studies, she believes there is an ancient text within Blackrock Spire that would benefit our research. To confirm this, she will need someone to extract the text from the spire. No easy task.$B$BIf interested, then speak with Vivian in Kargath.", + ["O"] = "Speak with Shadowmage Vivian Lagrave.", + ["T"] = "Vivian Lagrave and the Darkstone Tablet", + }, + [4770] = { + ["D"] = "Please help me, $c! I\'ve been hiding here in Highperch for some time now and it\'s been days since I\'ve seen a friendly face. I came here to study the wyvern and I think I got a little too close. After being chased away from one of the nests I got lost.$B$BI need to get back to Whitereach Post! Motega does not know that I am missing and will be furious to know that I ventured into Highperch by myself.$B$BWhitereach Post is just east of here... please take me there!", + ["O"] = "Escort Pao\'ka Swiftmountain from Highperch, and then talk to Motega Firemane in Whitereach Post.", + ["T"] = "Homeward Bound", + }, + [4771] = { + ["D"] = "I\'ve placed Dawn\'s Gambit in the container you brought to us, the one that held the dragon eggs. Your job is to bring it deep within the Scholomance.$B$BThe undead mage Vectus leads a team of scourge scholars... place Dawn\'s Gambit in their chamber, called the \"viewing room.\" It will then react with the undead found there and, with a little luck, destroy them!$B$BAfter that, defeating Vectus shouldn\'t be a problem. Right?", + ["O"] = "Place Dawn\'s Gambit in the Viewing Room of the Scholomance. Defeat Vectus, then return to Betina Bigglezink.", + ["T"] = "Dawn\'s Gambit", + }, + [4781] = { + ["D"] = "Your next task is as simple as your first, but will require you to seek out aid.$B$BI require gold thread for the embroidery of the cloak, but gold thread is not easy to come by, and very few know how to make it. Fortunately, one who is loyal to our cause knows its secrets and is willing to help those rising in our ranks.$B$BBring a gold bar to Xizk Goodstitch in Booty Bay. He is a master tailor and will be happy to spin the thread for you. Gold bars are smelted by skilled miners. Ask a miner for help.", + ["O"] = "Bring a Gold Bar to Xizk Goodstitch in Stranglethorn Vale.", + ["T"] = "Components for the Enchanted Gold Bloodrobe", + }, + [4782] = { + ["D"] = "Return to Menara, tell her it\'ll take some time, but I\'ll make sure to come through for her... and you. Tell her to have you finish gathering the rest of your components--I should have the thread done by then. You can return and pick it up then.$B$BGood luck, $N. Oh, and say hello to Strahad for me while you\'re there. That old coot... putting a tower right there next to Ratchet... crazy.", + ["O"] = "Return to Menara Voidrender in the Barrens.", + ["T"] = "Components for the Enchanted Gold Bloodrobe", + }, + [4783] = { + ["D"] = "The next components are found in Desolace, far to the west of the Barrens and even the Stonetalon Mountains.$B$BThere, chaos still reigns after the Sundering. Both your strength and cunning will be tested there--you will face creatures of hatred and also of the Burning Legion.$B$BFrom the Hatefury satyr in the northeast, bring me their blood. From the lesser infernals in Mannoroc Coven, bring me a lesser infernal stone.$B$BWe will use both in the construction of your robe.", + ["O"] = "Bring 10 Vials of Hatefury Blood and 1 Lesser Infernal Stone to Menara Voidrender in the Barrens.", + ["T"] = "Components for the Enchanted Gold Bloodrobe", + }, + [4784] = { + ["D"] = "I need only three things now, $N, then we can finish your robe.$B$BFirst, the fine gold thread Xizk is making for you. Return to him in Booty Bay and get it.$B$BSecond, bring me two smoldering coals from the fire elementals in the Arathi Highlands. If I recall correctly, they are to the west, near Thoradin\'s Wall.$B$BFinally, a soul shard created by you.$B$BAfter you have all the components, return here to the tower and I will complete the robe for you.", + ["O"] = "Bring some Fine Gold Thread, 2 Smoldering Coals, and a Soul Shard to Menara Voidrender in the Barrens.", + ["T"] = "Components for the Enchanted Gold Bloodrobe", + }, + [4785] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Fine Gold Thread", + }, + [4786] = { + ["D"] = "I will put the robe together for you now. It will take but a few moments. Do not go far.", + ["O"] = "Wait for Menara Voidrender to complete your robe and then speak to her again.", + ["T"] = "The Completed Robe", + }, + [4787] = { + ["D"] = "The Prophecy of Mosh\'aru speaks of an ancient egg. It is a relic of a time when trolls ruled vast empires, and it has the power to hold the essence of Hakkar. It may be the only way to keep our world safe from his evil.$B$BBring me the ancient egg, $N. It is said to lay hidden deep within Jintha\'Alor in the Hinterlands, in a cave behind the amphitheater at the top of the city.", + ["O"] = "Bring the Ancient Egg to Yeh\'kinya in Tanaris.", + ["T"] = "The Ancient Egg", + }, + [4788] = { + ["D"] = "While I look over the third and fourth tablets of Mosh\'aru, you must find the fifth and sixth! It will not be easy, for they are held by the Smolderthorn trolls within Blackrock Spire. The spire is a dark mountain of fire between the Burning Steppes and the Searing Gorge.$B$BGood luck, $N. Blackrock Spire is no place for decent folk...", + ["O"] = "Bring the Fifth and Sixth Mosh\'aru Tablets to Prospector Ironboot in Tanaris.", + ["T"] = "The Final Tablets", + }, + [4801] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Frostsaber E\'ko", + }, + [4802] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Winterfall E\'ko", + }, + [4803] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Shardtooth E\'ko", + }, + [4804] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Chillwind E\'ko", + }, + [4805] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Ice Thistle E\'ko", + }, + [4806] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Frostmaul E\'ko", + }, + [4807] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Wildkin E\'ko", + }, + [4808] = { + ["D"] = "I have another favor to ask of you.$B$BMy initial study of the essence you collected shows that it might be possible to freeze dragon whelp eggs and preserve them! I want to test this theory, but first I need specially made engineering components. My colleague, Felnok Steelspring, can make them.$B$BHere, take this letter to Felnok. It tells him what I need. You\'ll find Felnok in Winterspring, in the town of Everlook.", + ["O"] = "Give Tinkee\'s Letter to Felnok Steelspring.", + ["T"] = "Felnok Steelspring", + }, + [4809] = { + ["D"] = "I have most of what Tinkee needs, but I\'m missing one important component, and that\'s chillwind horns. The horns of the chillwind chimaera in Winterspring are a concentrated source of cold, but only pristine, uncracked horns will do! I\'ll need a supply of those to complete Tinkee\'s order.$B$BBring me the uncracked chillwind horns, and I\'ll prepare a package for Tinkee.", + ["O"] = "Bring 8 Uncracked Chillwind Horns to Felnok Steelspring.", + ["T"] = "Chillwind Horns", + }, + [4810] = { + ["D"] = "Ok, everything is prepared and packed and ready for transport! Good luck in your journey, and make sure you tell Tinkee that she owes me!", + ["O"] = "Bring Felnok\'s Package to Tinkee Steamboil in the Burning Steppes.", + ["T"] = "Return to Tinkee", + }, + [4811] = { + ["D"] = "Hostile moonkin roam in ever increasing numbers to our east. They once were thought to be gentle, almost mystical creatures. While some continue to hold reverence for them, the safety of Auberdine forces me to keep a more realistic view.$B$BI\'ve received reports that moonkin are being drawn to a large red crystal along Darkshore\'s eastern mountain range. No one has any idea what that crystal is, or even if it really exists. I want you to locate it over there and report back to me what you find.", + ["O"] = "Travel east of Auberdine and look for a large, red crystal along Darkshore\'s eastern mountain range. Report back what you find to Sentinel Glynda Nal\'Shea in Auberdine.", + ["T"] = "The Red Crystal", + }, + [4812] = { + ["D"] = "Use this empty vial and fill up on some moonwell water here in Auberdine. Such potent magic should provide a clue as to the composition of the crystal. To do that, you\'ll pour the liquid over the crystal; it should take care of the rest.$B$BWhile I don\'t anticipate anything bad happening to you, I still want you to be careful. Above us to the east is Felwood; if that crystal is tied to that place as I suspect it is, then it could prove to be very dangerous.", + ["O"] = "Fill the Empty Water Tube at the Auberdine moonwell, and then investigate the red crystal along Darkshore\'s eastern mountain wall.", + ["T"] = "As Water Cascades", + }, + [4813] = { + ["D"] = "The moonwell water has revealed that embedded inside the crystal are a few small fragments of bone, as well as half of a jawbone. The jawbone appears to be from a humanoid, but it is unclear without breaking open the crystal - a feat that even the strongest of magic would find near impossible.$B$BWith the task at hand complete, all that remains is to report back to Sentinel Glynda Nal\'Shea in Auberdine.", + ["O"] = "Report back what you have found to Sentinel Glynda Nal\'Shea in Auberdine.", + ["T"] = "The Fragments Within", + }, + [4821] = { + ["D"] = "A rumor has surfaced about an alien egg here in Thousand Needles. Those that report seeing this egg have failed to even get close enough to examine it in detail. Serpents guard the egg as if it\'s one of their own.$B$BI want you to seek out this alien egg and bring it to me so that I may examine it. Reports say the egg is located within a serpent den, but there are several serpent dens along the base of the cliff walls south and northeast of Freewind Post.", + ["O"] = "Return the Alien Egg to Hagar Lightninghoof in Freewind Post.", + ["T"] = "Alien Egg", + }, + [4822] = { + ["D"] = "ICE CREAM! Oh please please please could you get me some ice cream?! Strawberry is my favorite flavor, and there\'s no better strawberry ice cream in the world than Tigule and Foror\'s Strawberry Ice Cream! It\'s my favorite ice cream in the whole wide world!$B$BI had it once a long time ago when I was at the Shimmering Flats race track, but I heard that they might be selling them in town now! Please? Pretty please? With Tigule and Foror\'s Strawberry Ice Cream on top??!?!", + ["O"] = "Get some Strawberry Ice Cream for your ward. The lad seems to prefer Tigule and Foror\'s brand ice cream.", + ["T"] = "You Scream, I Scream...", + }, + [4841] = { + ["D"] = "$N, I entreat you to hunt these centaur down. They shall feel the wrath of our revenge. Attack the centaur camp to the north of Freewind Post! Let wrath guide your hand!", + ["O"] = "Kill 12 Galak Scouts, 10 Galak Wranglers, and 6 Galak Windchasers, and then return to Cliffwatcher Longhorn in Freewind Post.", + ["T"] = "Pacify the Centaur", + }, + [4842] = { + ["D"] = "To tell you the truth, although there are no volcanoes here in Winterspring, I believe that there are far more threatening reasons for these hot springs...$B$BWell, I think you\'ll want to see it for yourself. You\'ll need to travel the length of Winterspring, and head to the very south. When the air becomes thick and muggy, and the sky turns dark, you\'ll have found what I believe to be the source of the hot springs.$B$BHave a look. I\'m sure you\'ll have many questions when you return.", + ["O"] = "Follow Donova Snowden\'s instructions, then report back.", + ["T"] = "Strange Sources", + }, + [4861] = { + ["D"] = "Hey there, $Glad:lass;! I was chased from my camp in southern Winterspring by some bloodthirsty wildkin! Well, I suppose I got too close to something the wildkin were guarding.$B$BI barely managed to get away safely; I fear a buddy of mine wasn\'t as lucky. Would you mind braving the wildkin and heading to the camp? I really need my supplies, and I\'d also like to get back the amulet I unearthed yesterday at the dig site.", + ["O"] = "Locate Jaron Stoneshaper\'s wrecked camp and supplies in southern Winterspring.", + ["T"] = "Enraged Wildkin", + }, + [4862] = { + ["D"] = "Believe it or not, there are people out there willing to pay for the most vile of domesticated beast!$B$BI\'d sent Bijou into the Spire to try and collect some of those spire spider eggs but I haven\'t heard from her in weeks. Maybe you can help me out?$B$BI\'ll tell you what, $N. Go to Blackrock Spire and collect some spire spider eggs for me. Bring them back here and not only will I give you a little cash, but I\'ll even domesticate one for you!", + ["O"] = "Travel to Blackrock Spire and collect 15 Spire Spider Eggs for Kibler.$B$BBy the sound of it, these eggs could be found near spiders.", + ["T"] = "En-Ay-Es-Tee-Why", + }, + [4863] = { + ["D"] = "Looking around, you don\'t see much that Jaron could want here. However, you do notice that the crate you found has been smashed open, almost as if this was what the wildkin were after...$B$BLooking to the east, you can barely make out an abandoned wagon. Perhaps you might find Jaron\'s things there. It\'s worth a look.", + ["O"] = "Find Jaron Stoneshaper\'s wrecked wagon.", + ["T"] = "Enraged Wildkin", + }, + [4864] = { + ["D"] = "After inspecting the contents of the box, you decide that Jaron could make use of the tools and other items inside. However, there is no sign of the amulet.$B$BIt appears that the wildkin inhabit the lands to the north and east of here, so you decide that the next step is to face the creatures and reclaim the amulet from them.", + ["O"] = "Pick up Jaron\'s Supplies from the snow, then find the wildkin that stole the amulet Jaron spoke of.$B$BBring Jaron\'s Supplies and the Blue-feathered Amulet to Jaron Stoneshaper at the lodge in Winterspring.", + ["T"] = "Enraged Wildkin", + }, + [4865] = { + ["D"] = "If I did not see that with my own eyes I would never have believed it to be true. Vengeance has come to Thousand Needles!$B$B$B$B$N, you must act quickly! Go now and seek out Motega Firemane; he is located at Whitereach Post just northwest of Freewind Post along the road. He will know what to do!", + ["O"] = "Report your findings to Motega Firemane.", + ["T"] = "Serpent Wild", + }, + [4866] = { + ["D"] = "It\'s probably one of the most potent poisons in the world, $r!$B$BI\'ve overheard the Blackrock speaking about its lethality in my jaunts into the Spire. They call it \'Mother\'s Milk\', named after Mother Smolderweb, the big nasty spider in the Skitterweb cave.$B$BNow here\'s what I need from you: A live sample of the Milk, flowing through YOUR veins. Just bringing me the gland won\'t be enough! Get her to poison you and come back to me!$B$BThen... I get to milk ya!$B$B", + ["O"] = "In the heart of Blackrock Spire you will find Mother Smolderweb. Engage her and get her to poison you. Chances are good that you will have to kill her as well. Return to Ragged John when you are poisoned so that he can \'milk\' you.", + ["T"] = "Mother\'s Milk", + }, + [4867] = { + ["D"] = "Argh! So hard to speak!$B$BTake this note! Get me my mojo!", + ["O"] = "Read Warosh\'s Scroll. Bring Warosh\'s Mojo to Warosh.", + ["T"] = "Urok Doomhowl", + }, + [4881] = { + ["D"] = "The Tauren, Kanati Greycloud is bold to set up a hunting camp in Thousand Needles. We must kill him to rid this hunting camp and all who may follow him. We will converge at the small post Southwest of the Great Lift.", + ["O"] = "Warn Kanati Greycloud at Whitereach Post of the plot to kill him.", + ["T"] = "Assassination Plot", + }, + [4882] = { + ["D"] = "You are unsure of the significance of the necklace that fell from the neck of the recently-slain wildkin. It glows brightly, slowly fading in and out.$B$BTrull Failbane might be able to tell you more, since his knowledge of the wildkin seems extensive. Perhaps you should ask him about it.", + ["O"] = "Take the Blue-feathered Necklace to Trull Failbane at Bloodvenom Post.", + ["T"] = "Guarding Secrets", + }, + [4883] = { + ["D"] = "While I do possess much knowledge about the owlbeasts you defeated in Winterspring, I am not very learned on the subject of the magics they wield. But I do believe I know of one that would be able to examine the necklace and most likely tell you what it is.$B$BNara Wildmane in Thunder Bluff is an expert in this field; see her. Good luck, $N.", + ["O"] = "Take the Blue-feathered Necklace to Nara Wildmane.", + ["T"] = "Guarding Secrets", + }, + [4901] = { + ["D"] = "At the very top of the ridge lies what I believe to be an altar of the goddess Elune. From what I can tell, we need to light the five torches in each cave, and then we will be able to access the altar directly.$B$BI transcribed some incantations carved into the stone in the ancient ruins of Kel\'Theril, which I believe are the secret to unlocking the altar. I\'ll need your help to light each torch, while I recite the spell.$B$BIf we are successful, you\'ll be able to report our findings to Erelas!", + ["O"] = "Protect Ranshalla while she attempts to reactivate the Altar of Elune. Report your findings to Erelas Ambersky in Rut\'theran Village.", + ["T"] = "Guardians of the Altar", + }, + [4902] = { + ["D"] = "That\'s fascinating!$B$BI have always wondered about the truth... Well, you must share this knowledge, definitely! Go to Arch Druid Fandral Staghelm right away -- you\'ll find him in Darnassus, in the Cenarion Circle. Explain to him what happened, just the same as you told me. I\'m sure he will be just as interested!$B$BThis is important information, $N!", + ["O"] = "Speak with Arch Druid Fandral Staghelm in Darnassus.", + ["T"] = "Wildkin of Elune", + }, + [4903] = { + ["D"] = "By order of Warlord Goretooth, the following inhabitants of Blackrock Spire must be destroyed:$B$BThe rotund menace, Highlord Omokk.$B$BThe cruel and ruthless troll, War Master Voone.$B$BOverlord Wyrmthalak, taskmaster of the lesser city.$B$BYou will also be required to return any important documents that you may find.$B$BSucceed and be honored.$B$BFail and be forgotten.", + ["O"] = "Slay Highlord Omokk, War Master Voone, and Overlord Wyrmthalak. Recover Important Blackrock Documents. Return to Warlord Goretooth in Kargath when the mission has been accomplished.", + ["T"] = "Warlord\'s Command", + }, + [4904] = { + ["D"] = "Arnak thinks we\'re going to be married... but after I declined his offer he came back that night and kidnapped me. My brother tried to stop him, but Arnak was too strong. He... he slew my brother and then brought me here. My poor brother...$B$B$N, could you escort me out of the Darkcloud Pinnacle? Please... I need to get back to Thalia! She must be worried sick about me.", + ["O"] = "Escort Lakota Windsong from the Darkcloud Pinnacle, and then talk to Thalia Amberhide at Freewind Post.", + ["T"] = "Free at Last", + }, + [4905] = { + ["D"] = "Defend Kanati Greycloud against the Centaur Assassins.", + ["O"] = "Defend Kanati Greycloud", + ["T"] = "", + }, + [4906] = { + ["D"] = "A second encampment of satyrs threatens the land of Felwood towards the north, led by the cruel Xavaric. The vile betrayers and tricksters feed upon the corruption of the native creatures of Felwood.$B$BXavathras and his minions were only part of a larger plan -- to cultivate a corrupted moonwell, and then provide the spoils to Xavaric.$B$BNow that Xavathras is out of the way, finish this task, $N. Head to the north and defeat Xavaric.", + ["O"] = "Eridan Bluewind in Felwood wants you to kill 8 Jadefire Hellcallers, 8 Jadefire Betrayers, 8 Jadefire Tricksters, and Xavaric. Return to Eridan when the task is completed.", + ["T"] = "Further Corruption", + }, + [4907] = { + ["D"] = "Hi, $N. Remember Tinkee Steamboil? Well, she remembers you! She sent me a message to keep an eye out for you, because... she needs your help again. I think it has something to do with her studies on dragons.$B$BYou should speak to her in the Burning Steppes, at the Flame Crest.", + ["O"] = "Speak with Tinkee Steamboil.", + ["T"] = "Tinkee Steamboil", + }, + [4921] = { + ["D"] = "We battled in a small tauren camp when we were separated--she held three of the Bristlebacks off by herself. But the odds began to overwhelm us. I led some away only to see her overwhelmed by newcomers. In my rage, I turned to face my enemies, but they brought me down easily with their vast numbers.$B$BI awoke to a tauren druid tending my wounds--he had come across me on the Gold Road as I fell.$B$BPlease, $c, find some sign of my wife.", + ["O"] = "Find Mankrik\'s wife and then return to him in the Crossroads.", + ["T"] = "Lost in Battle", + }, + [4941] = { + ["D"] = "Rend lives?$B$BImpossible!$B$BIt had been thought that Rend was slain decades ago.$B$BSeek out the wisdom of Eitrigg, $N. None know the workings of the Blackrock better than he and if what is written here bares truth, Eitrigg should be informed. No person should be denied the right of vengeance.$B$BYou will find him in Orgrimmar.$B$BOnce you have spoken with Eitrigg, confer with the Warchief to find out what he wishes to do about this problem.", + ["O"] = "Speak with Eitrigg in Orgrimmar. When you have discussed matters with Eitrigg, seek council from Thrall.$B$BYou recall having seen Eitrigg in Thrall\'s chamber.", + ["T"] = "Eitrigg\'s Wisdom", + }, + [4961] = { + ["D"] = "Ah, a summoner\'s orb--this is where the taint must be coming from. We must exorcise the demon within it if you\'re to use it. That I can do easily.$B$BYou\'re the one who has the hard job. You must kill the demon once I release it.$B$BAnd you\'ll have to be quick. If you take too long then he\'ll return to the orb and we\'ll have to start over!$B$BSo get yourself ready, $N. Prepare your strongest spells and keep your potions handy, and go get a friend if you have one. Because this isn\'t going to be pretty.", + ["O"] = "Kill the Demon of the Orb, then speak with Tabetha.", + ["T"] = "Cleansing of the Orb of Orahil", + }, + [4962] = { + ["D"] = "So, you have chosen to capture the soul of a felhound, good.$B$BTake this ruby--with it, you will be able to capture the creature\'s soul. It works very similar to spells you already know: when the creature is close to dying, use the gem and it should do the rest of the work for you.$B$BI would suggest going to Desolace and trying your hand at any of the felhounds there. Those should do nicely.$B$BAfter you\'re successful, take both the captured spirit and your ruby to Menara.", + ["O"] = "Take the Felhas Ruby and use it on one of the Felhounds found in Desolace. After successful, bring the Felhas Ruby and the Imprisoned Felhound Spirit back to Menara Voidrender in the Barrens.", + ["T"] = "Shard of a Felhound", + }, + [4963] = { + ["D"] = "So, you have chosen to capture the soul of an infernal, good.$B$BTake this emerald--with it, you will be able to capture the creature\'s soul. It works very similar to spells you already know: when the creature is close to dying, use the gem and it should do the rest of the work for you.$B$BI would suggest going to Desolace and trying your hand at any of the infernals there. Those should do nicely.$B$BAfter you\'re successful, take both the captured spirit and your emerald to Menara.", + ["O"] = "Take the Infus Emerald and use it on one of the Infernals found in Desolace. After successful, bring the Infus Emerald and the Imprisoned Infernal Spirit back to Menara Voidrender in the Barrens.", + ["T"] = "Shard of an Infernal", + }, + [4964] = { + ["D"] = "I will get started immediately on crafting your orb and infusing your new demon into it. When done, you will have the choice of having it in the form of a staff or orb. I always felt it was important to cater to a warlock\'s chosen weapon... I see no reason not to continue that practice.", + ["O"] = "Wait for Menara Voidrender to complete the Orb of Dar\'Orahil and then speak to her again.", + ["T"] = "The Completed Orb of Dar\'Orahil", + }, + [4965] = { + ["D"] = "Well, well, well... a pleasure to see you\'re growing in power, $N. I\'d wager you\'d be about ready to speak to Menara Voidrender in the Barrens. If you haven\'t spoken to her before, then let me tell you, I don\'t think I\'ve ever met another expert in the creation of items--orbs specifically--that can inprison even a demon to serve our will so easily.$B$BIf you\'re interested, she\'s in Strahad\'s tower above Ratchet in the Barrens.", + ["O"] = "Speak to Menara Voidrender in the Barrens.", + ["T"] = "Knowledge of the Orb of Orahil", + }, + [4966] = { + ["D"] = "But, there may be more centaur than I thought, I ask you, $n, to fight with me against these vile assassins.", + ["O"] = "Protect Kanati Greycloud from the centaur attack.", + ["T"] = "Protect Kanati Greycloud", + }, + [4967] = { + ["D"] = "Still a fool, and still seeking the trappings of mortals. Yes, I speak to you with arrogance. I see you before me and I laugh. You\'re pathetic!$B$BBut it matters not what I think. It only matters what those willing to deal with you thinks! And in this case, against my better judgment, those with some portion of power feel you deserve more.$B$BIf this is something you strive for then you should speak with Menara Voidrender in the tower above Ratchet. I believe you have met her before some time ago.", + ["O"] = "Speak to Menara Voidrender in the Barrens.", + ["T"] = "Knowledge of the Orb of Orahil", + }, + [4968] = { + ["D"] = "Hmm, you\'ve made it this far... truly astonishing. I would have thought the corruption of channeling the arcane would have seeped into your very soul and driven you mad by now. How about we try and push you further then?$B$BIf you want to test your skill, seek out Menara Voidrender above Ratchet in Strahad\'s tower. She will guide you.", + ["O"] = "Speak to Menara Voidrender in the Barrens.", + ["T"] = "Knowledge of the Orb of Orahil", + }, + [4969] = { + ["D"] = "Haha! You\'re doing very well for yourself, young $c.$B$BGiven time, infernals and dreadlords will bow before you!$B$BBut until that time comes, you must still rely on weapons forged by the hands of the mortal races.$B$BYou seem prepared for another such creation, and if you are willing, Menara Voidrender would speak with you! She is near Strahad\'s tower overlooking the port town of Ratchet. Go there when you are ready.", + ["O"] = "Speak to Menara Voidrender in the Barrens.", + ["T"] = "Knowledge of the Orb of Orahil", + }, + [4970] = { + ["D"] = "If you wish to prove yourself, you may begin by doing a very simple, but very important task.$B$BGather meat from the chimaera and from the shardtooth bears in the area. Bring it to me so that I may use it to feed the frostsabers that are being trained.", + ["O"] = "Collect 5 Shardtooth Meats and 5 Chillwind Meats for Rivern Frostwind in Winterspring.", + ["T"] = "Frostsaber Provisions", + }, + [4971] = { + ["D"] = "Tampering of the timeline by a sinister force - most likely the Scourge - has occurred in Andorhal! I can try to keep the passage of time here intact and mend what has been damaged, but I\'ll need your help to do so uninterrupted.$B$BTemporal parasites - carrion that feed on the strands of time\'s altered flow - now infest the silos of Andorhal. A blue pulse of distortion is their only visual marker. They slow my auguries; please $N, help me by using this temporal displacer to root out these parasites.", + ["O"] = "Use the Temporal Displacer near one of Andorhal\'s silos and uncover Temporal Parasites.$B$BSlay 15 Temporal Parasites, and then return the Temporal Displacer to Chromie in the Andorhal Inn, Western Plaguelands.", + ["T"] = "A Matter of Time", + }, + [4972] = { + ["D"] = "I need you to reach into the world beyond this room, $N. Allow me to explain.$B$BYou see the difference in this room compared to the rest of Andorhal. My dragonflight works in many different ways and in many different timelines. To mend Andorhal\'s damage, I now act from a different timeline as not to overly contaminate it. To continue this though I need time trinkets, ones trapped from when the plague hit. Find them in lockboxes found in the ruined buildings that make up this once proud city.", + ["O"] = "Locate 5 Andorhal Watches, found in lockboxes amongst the rubble of the city. Return with them to Chromie in the Andorhal Inn, Western Plaguelands.", + ["T"] = "Counting Out Time", + }, + [4973] = { + ["D"] = "If you are willing to help once more, I can certainly use your assistance. I\'ll gladly take more watches you might uncover from the ruins of Andorhal. They certainly help me in maintaining a balance against whatever malign force is meddling with the timeline here.$B$BIn exchange for those watches, I\'ll give you another item that, in the future, I suspect you\'ll find quite the use for.", + ["O"] = "Locate 5 Andorhal Watches amongst the rubble of the city, and return with them to Chromie in the Andorhal Inn, Western Plaguelands.", + ["T"] = "Counting Out Time", + }, + [4974] = { + ["D"] = "Rend dares make such grand claims because of the protection he is afforded by the black flight.$B$BYou, $N, will find a way to pass through the Halls of Ascension. You will then find \'Warchief\' Rend Blackhand and you will destroy him - FOR THE HORDE!$B$B$B$BThe next time you return to my chambers, you will hold his head high in triumph and then you shall present it to your Warchief. Do this and be honored as a hero of the Horde.", + ["O"] = "Travel to Blackrock Spire and slay Warchief Rend Blackhand. Take his head and return to Orgrimmar.", + ["T"] = "For The Horde!", + }, + [4975] = { + ["D"] = "I will get started immediately on crafting your orb and infusing your new demon into it. When done, you will have the choice of having it in the form of a staff or orb. I always felt it was important to cater to a warlock\'s chosen weapon... I see no reason not to continue that practice.", + ["O"] = "Wait for Menara Voidrender to complete the Orb of Noh\'Orahil and then speak to her again.", + ["T"] = "The Completed Orb of Noh\'Orahil", + }, + [4976] = { + ["D"] = "Take the cleansed orb back to Menara in Ratchet, $N. Give her my regards and be safe. I truly hope you are able to withstand the temptation and corruption that is sure to come as you follow your path.$B$BGood luck.", + ["O"] = "Return the Cleansed Infernal Orb to Menara Voidrender in the Barrens.", + ["T"] = "Returning the Cleansed Orb", + }, + [4981] = { + ["D"] = "Never trust a goblin. That\'s what it comes down to, $N.$B$BBijou is her name - one of our slipperiest operatives. I found out she was working for some shady exotic pet dealer out of the Burning Steppes named Kibler, in essence, two timing us. Worse yet, she was using Horde funds to finance her operations.$B$BI want her brought back here alive.$B$BShe was last seen entering Blackrock Spire. Find her and bring her back.$B$BAnd $N, do not let her sweet talk you.", + ["O"] = "Travel to Blackrock Spire and find out what happened to Bijou.", + ["T"] = "Operative Bijou", + }, + [4982] = { + ["D"] = "At night when this place is lightly guarded, I sneak around the city, taking notes and writing down anything I see that could be of some strategic value to the K.E.F.$B$BLast night, however, things went dreadfully wrong. I stumbled across a tripwire and set off an alarm. I stashed my recon gear and ran for cover! Unfortunately, I can\'t get back to that gear. They\'ve doubled and tripled up the patrols! All that information is lost.$B$BGet my belongings back and I\'ll return to the K.E.F. peacefully.", + ["O"] = "Find Bijou\'s Belongings and return them to her. You recall her mentioning that she stashed them on the bottom floor of the city.", + ["T"] = "Bijou\'s Belongings", + }, + [4983] = { + ["D"] = "Take this report back to Lexlort. It will redeem my good name and will surely give the K.E.F. a strategic advantage in dealing with these orcs.$B$BCome with you? I\'ve got way too much work to do. Get going, they need these reports as soon as possible!", + ["O"] = "Take Bijou\'s Reconnaissance Report back to Grandmaster Lexlort in Kargath.", + ["T"] = "Bijou\'s Reconnaissance Report", + }, + [4984] = { + ["D"] = "While there was little I could do alone to thwart the Scourge, I nevertheless came to these lands to try and heal the damage done to nature. Animals suffer from the plague that continues to choke these lands, unable to find mercy and peace. I ask for you to continue what I could not finish here.$B$BThere is no salvation for the suffering animals but a sweet and merciful release. Seek out diseased wolves nearby and put them down. Please $N, end their misery - doing so will surely soothe mine.", + ["O"] = "Destroy 8 Diseased Wolves, and then return to Mulgris Deepriver at the Writhing Haunt, Western Plaguelands.", + ["T"] = "The Wildlife Suffers Too", + }, + [4985] = { + ["D"] = "To the east of where we are, near where the Eastern Plaguelands begin, once proud and majestic grizzlies roamed the countryside. The plague released by the Scourge has sundered these beasts too. They wander the countryside, agonized by the stiffening of their muscles and the rotting of their fur and flesh.$B$BI ask of you to end their misery as well. The only cure for their suffering is a swift death, one that must be ministered by your hand. ", + ["O"] = "Destroy 8 Diseased Grizzlies, and then return to Mulgris Deepriver at the Writhing Haunt, Western Plaguelands.", + ["T"] = "The Wildlife Suffers Too", + }, + [4986] = { + ["D"] = "The lifeless hand of the tauren druid clutches a surprisingly healthy looking oaken branch. Examining the branch reveals glyphs of a druidic nature carved into the bark.$B$BAs you grasp the branch, you notice it is warm to the touch, more than it should be. The image of the Teldrassil tree enters your mind - Darnassus specifically - and the words \"Cenarion Circle\" are on the tip of your tongue. It would appear that the suggestion of where to take the branch has been placed within it.", + ["O"] = "Based on the magic enchanted within the Glyphed Oaken Branch, its delivery to the Cenarion Circle in Darnassus is the next step the tauren druid sought. Seek one of the druids there for assistance.", + ["T"] = "Glyphed Oaken Branch", + }, + [4987] = { + ["D"] = "The lifeless hand of the tauren druid clutches a surprisingly healthy looking oaken branch. Examining the branch reveals glyphs of a druidic nature carved into the bark.$B$BAs you grasp the branch, you notice it is warm to the touch, more than it should be. The image of Thunder Bluff in Mulgore enters your mind - Elder Rise specifically - and the words \"Cenarion Circle\" are on the tip of your tongue. It would appear that the suggestion of where to take the branch has been placed within it.", + ["O"] = "Based on the magic enchanted within the Glyphed Oaken Branch, its delivery to the Cenarion Circle in Thunder Bluff is the next step the tauren druid sought. Seek one of the druids there for assistance.", + ["T"] = "Glyphed Oaken Branch", + }, + [5001] = { + ["D"] = "Ordinarily I don\'t deal with $rs but it seems that I\'m stuck between a troll and a hard place. You see, my mission here is one of utmost importance to the Horde. The information I\'ve discovered, however, applies to the well being of the Alliance as well. Now believe me, I\'m no Alliance sympathizer, but the Blackrock threat is bigger than just a bunch of orcs.$B$BYou help me out by finding my belongings and I\'ll help you out with some information that could prove useful to your kind.$B$BDeal?", + ["O"] = "Find Bijou\'s Belongings and return them to her. Good luck!", + ["T"] = "Bijou\'s Belongings", + }, + [5002] = { + ["D"] = "I\'m a goblin of my word, $r. Now listen closely:$B$BThese orcs are used primarily as beasts of burden and cannon fodder for the black dragonflight!$B$BTheir true leader is none other than Nefarian, brood of Deathwing. I\'ve also discovered the location of Nefarian\'s subordinates in this part of the citadel.$B$BTake this map to Marshal Maxwell in the Burning Steppes. It has the location of these fiends marked for easy identification.", + ["O"] = "Travel to the Burning Steppes and give Bijou\'s Information to Marshal Maxwell.", + ["T"] = "Message to Maxwell", + }, + [5021] = { + ["D"] = "\"The package must be delivered... delivered before I\'m trapped here!\"$B$BThe cries of a panicked woman feel almost like a whisper floating through the house. Cowered in the upstairs corner is the apparition of a woman. She does not seem to be fully cognizant of her surroundings, and she is only vaguely aware of you.$B$B\"Are you here to deliver my package? Please, before it gets much worse! I was going to ride out of here. It should still be by my horse... or am I too late?\"", + ["O"] = "The ramblings of the ghostly woman indicated that she needed a package delivered. She claimed that it was where her horse was. As to where the horse is or where the package was to be delivered - the ghost remains incomprehensible.", + ["T"] = "Better Late Than Never", + }, + [5022] = { + ["D"] = "You pick up the package, wiping off a small layer of dust and grime that had settled on it. It is addressed in a hurried hand to an Emma Felstone of Stormwind; the delivery of the package is dated for well over four years ago.$B$BThough it is unclear if Emma Felstone is even alive, it is widely known that the Stormwind City Hall keep records on the populace of the city. This is handled through the Royal Factors of the Stormwind Census.", + ["O"] = "Check with the Royal Factors of Stormwind to learn the whereabouts of an Emma Felstone. There is usually a census officer located in City Hall.", + ["T"] = "Better Late Than Never", + }, + [5023] = { + ["D"] = "You pick up the package, wiping off a small layer of dust and grime that had settled on it. It is addressed in a hurried hand to a Jeremiah Felstone of Lordaeron; the delivery of the package is dated for well over four years ago.$B$BThough it is unclear if Jeremiah Felstone is even alive, it is widely known that the Undercity, formerly known as Lordaeron, keeps records on the populace of the city. This is handled through the Royal Overseers of the Undercity Census.", + ["O"] = "Check with the Royal Overseers of the Undercity to learn the whereabouts of a Jeremiah Felstone. There is usually a census officer located near guild and tabard registration.", + ["T"] = "Better Late Than Never", + }, + [5041] = { + ["D"] = "That attack on the caravan contained supplies we desperately needed.$B$BYou\'ve been brave enough to take on the Razormane tribe so far, and I will ask you to do so again, but this time, I wonder if I could ask you to keep your eyes open for some of our lost supplies. You can probably find them throughout their camps, the quilboar getting fat off their dishonorable acts.$B$BThe people of the Crossroads would be in your debt.", + ["O"] = "Find and return Crossroads\' Supply Crates to Thork in the Barrens.", + ["T"] = "Supplies for the Crossroads", + }, + [5042] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Agamaggan\'s Strength", + }, + [5043] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Agamaggan\'s Agility", + }, + [5044] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Wisdom of Agamaggan", + }, + [5045] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Rising Spirit", + }, + [5046] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Razorhide", + }, + [5047] = { + ["D"] = "You\'ll find Malyfous Darkhammer in Everlook, $c. Tell him that \'Finkle is A-OK\' and that the suit works perfectly.$B$BThen hand him this:$B$B$B$BI snatched it from the beast\'s innards during my \'vacation.\'$B$BI bet Malyfous could give you a fairly accurate assessment of what he can do with parts from a monster like this!$B$BOh, I suppose you don\'t know where Everlook is, do you? To Winterspring, $g fella:lady;!", + ["O"] = "Talk to Malyfous Darkhammer in Everlook.", + ["T"] = "Finkle Einhorn, At Your Service!", + }, + [5048] = { + ["D"] = "She\'s a tad ornery, and quite possibly out of her gourd... but the records indicate that Ol\' Emma does fit the framework of who Emma Felstone might be.$B$BPerhaps you\'ve seen Ol\' Emma wander the city - she talks to herself, most often in nonsensical jibber-jabber. Still, she doesn\'t hurt anything or anyone, so folks pretty much leave her be.$B$BAll things considered, I would say that Ol\' Emma is in fact Emma Felstone. You might try asking if her last name is indeed Felstone.", + ["O"] = "Find Ol\' Emma in Stormwind and see if she is in fact Emma Felstone. If she is, then perhaps she\'d like the package Janice Felstone made for her.", + ["T"] = "Good Natured Emma", + }, + [5049] = { + ["D"] = "From the evidence I am able to muster, the person you seek - and the intended recipient of the parcel - is Jeremiah Payson, the Undercity cockroach vendor.$B$BI\'ve always been of the opinion that it takes a special gift to sell... cockroaches. No doubt you are on quite the epic sojourn now, mighty $c. I will leave you to your world-shaping endeavors. Allow me, however, to be a part of your magnum opus and reveal that he is located near the bank, suitably groveling under one of the walkways.", + ["O"] = "Find Jeremiah Payson in the Undercity and see if he is in fact Jeremiah Felstone. If he is, then perhaps he\'d like the package Janice Felstone made for him.", + ["T"] = "The Jeremiah Blues", + }, + [5050] = { + ["D"] = "It would seem that I was wrong about you $N, and for that I owe you an apology. My sister sent me a number of personal effects, including humorously enough the deed to the Felstone farm. I think I\'ll pass on reclaiming it right now.$B$BIf my sister\'s spirit remains tethered to the farm and cannot rest, please... could you return this to her? It is half of a good luck charm she had, with her husband having the other half.$B$BMaybe her knowing I have these things will now put her soul to rest.", + ["O"] = "Return to Janice Felstone in Western Plaguelands her Good Luck Half-Charm.", + ["T"] = "Good Luck Charm", + }, + [5051] = { + ["D"] = "The ramblings of the poor ghost continue:$B$B\"I\'m so cold, John. Bring me your charm, and we\'ll be together! Quickly John, before the plague comes to change us into hideous beasts! I can\'t see you John... but I know you\'re near. I feel you near me.\"$B$BPerhaps if the second half of the charm was found and reassembled, this would constitute what the spirit of Janice Felstone is seeking.", + ["O"] = "Locate the other half of the Good Luck Charm somewhere on the Felstone Farm in Western Plaguelands and reassemble it.$B$BGive the Good Luck Charm to Janice Felstone on the Felstone Farm, Western Plaguelands.", + ["T"] = "Two Halves Become One", + }, + [5052] = { + ["D"] = "Along with the thorns, the blood affected other aspects of the earth: blood red stones mixed in with other minerals. The Bristleback dig up these shards and carry them as totems for strength in battle and as totems for their magics. $B$BI know the secrets of that magic.$B$BBring Mangletooth one of these blood shards to show you understand. Bring Mangletooth many of the shards, and he will bless you with quilboar magic--the magic of Agamaggan! ", + ["O"] = "Bring a Blood Shard to Mangletooth in Camp Taurajo in the Barrens.$B$BCollect more Blood Shards if you want him to bless you with Agamaggan\'s power.", + ["T"] = "Blood Shards of Agamaggan", + }, + [5053] = { + ["D"] = "This quest will send you mail to your mail box. Just hit complete.", + ["O"] = "Test quest to see if mail is sent to your mailbox. Just hit complete, then go check your mail.$B$BHave a nice day.", + ["T"] = "", + }, + [5054] = { + ["D"] = "In the snowy mountains of Winterspring, a skilled hunter stalks his prey... I speak of Ursius of the shardtooth bears, an agile and clever beast.$B$BI send you now against him. He roams the sloping hills to the west of Everlook. Find and hunt him, before he discovers your intent.$B$BAll that have gone up against Ursius have quickly found themselves to be the prey, and he, the hunter. Stay on your guard.", + ["O"] = "Storm Shadowhoof at Bloodvenom Post in Felwood wants you to kill Ursius.", + ["T"] = "Ursius of the Shardtooth", + }, + [5055] = { + ["D"] = "Swift, and clever, Brumeran glides silently across the snowy landscape of southern Winterspring. But do not let her graceful appearance convince you that she is harmless. All that cross her pay considerably, and often with their own lives.$B$BSeek out Brumeran of the chillwind among the chimera. Defeat her, then return again to me.", + ["O"] = "Storm Shadowhoof at Bloodvenom Post in Felwood wants you to kill Brumeran.", + ["T"] = "Brumeran of the Chillwind", + }, + [5056] = { + ["D"] = "In northern Winterspring, great cats assemble around a large landmark called Frostsaber Rock. The leader of these cats is known by the name Shy-Rotam. Defeating the matriarch of the frostsabers would grant you much respect in the eyes of your fellow $R.$B$BGo again to Winterspring, and once there, gather sacred meat from the frostsabers. Find the stone of Shy-Rotam, and place it there. Placing the meat of her kin before her will summon Shy-Rotam, in anger.$B$BBe ready for her fury, and defeat her.", + ["O"] = "Storm Shadowhoof at Bloodvenom Post in Felwood wants you to defeat Shy-Rotam.", + ["T"] = "Shy-Rotam", + }, + [5057] = { + ["D"] = "Before you spoke to me, $N, I had heard of your endeavors... that you had an unyielding desire to prove yourself, that you had an exceptional ability as a $c, and I now know these things to be the truth.$B$BThose that excel as you do are worthy of recognition. Take this marker to a friend of mine in Thunder Bluff named Melor Stonehoof. I\'m sure he will remember you, and what you accomplished so long ago. Speak to him of you recent victories, and do not ever forget what you have accomplished today.", + ["O"] = "Bring Storm Shadowhoof\'s Marker to Melor Stonehoof in Thunder Bluff.", + ["T"] = "Past Endeavors", + }, + [5058] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Mrs. Dalson\'s Diary", + }, + [5059] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Locked Away", + }, + [5060] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Locked Away", + }, + [5061] = { + ["D"] = "You have completed the necessary lessons all young druids are taught before they can adopt an aquatic aspect. Go now back to your trainer, Mathrengyl Bearwalker, in Darnassus. Show him your pendant and prove to him you are ready to learn what he has to teach you. He will complete your training, allowing you to become one with the water.$B$BGoodbye, young druid. We shall speak again.", + ["O"] = "Return to Darnassus and show Mathrengyl Bearwalker the Pendant of the Sea Lion.", + ["T"] = "Aquatic Form", + }, + [5062] = { + ["D"] = "Arikara is a deadly creature that must be dealt with swiftly. In order to hunt her down you will need to light the sacred fire of life - this will summon Arikara.$B$BGo now and harvest the rare Incendia agave plant. Once you have harvested enough agave, seek council with Magatha Grimtotem on Elder Rise in Thunder Bluff. She is a powerful shaman that can enchant the agave plant to create a powder that will light the fire.$B$BTravel northeast to the Boiling Pool and gather Incendia Agave.", + ["O"] = "Gather 10 bushels of Incendia Agave, and then consult Magatha Grimtotem on Elder Rise in Thunderbluff.", + ["T"] = "Sacred Fire", + }, + [5063] = { + ["D"] = "A finer cap you may never see. From the pristine hide of the beast, our expert crafters will create the most phenomenal hat a prestidigitator could ever hope to don!$B$BFifty gold pieces along with the listed items and your head shall be graced with the Cap of the Scarlet Savant:$B$B*The pristine hide of the Beast.$B$B*Frayed abomination stitchings.$B$B*Arcane crystals.$B$B*Enchanted scarlet thread.$B$BBEHOLD!", + ["O"] = "In order to create the Cap of the Scarlet Savant, you will be required to bring the following items back to Malyfous Darkhammer: 1 Pristine Hide of the Beast; 5 Frayed Abomination Stitchings; 8 Arcane Crystals; 5 Enchanted Scarlet Thread. $B$BYou will also be required to pay 50 gold pieces for the crafting of the item.", + ["T"] = "Cap of the Scarlet Savant", + }, + [5064] = { + ["D"] = "$N, you have served us well in the past, so I now entrust to you an important mission. The Grimtotem Clan is up to something secretive. Three agents of unknown origin were seen visiting the Grimtotem over the recent weeks. We discovered that separate chests in Darkcloud Pinnacle hold these guarded messages.$b$b$N, if you succeed in this dangerous mission, I will reward you in kind.", + ["O"] = "Locate and retrieve the three Secret Notes in Darkcloud Pinnacle", + ["T"] = "Grimtotem Spying", + }, + [5065] = { + ["D"] = "The troll with whom you spoke did not tell the truth. The two tablets you gained for him spoke of containing the essence of Hakkar, but there is more to that legend. I have studied long, and found that there are six Tablets of Mosh\'aru, not two! Six!$B$BAnd I fear that we will not like what secrets the others hold..$B$BFind the third and fourth tablets of Mosh\'aru. They\'re in the Eastern Plaguelands, held by the mossflayer trolls. Find them, and bring them to me.", + ["O"] = "Bring the Third and Fourth Mosh\'aru Tablets to Prospector Ironboot in Tanaris.", + ["T"] = "The Lost Tablets of Mosh\'aru", + }, + [5066] = { + ["D"] = "Hear ye, hear ye! All heroes are called upon to heed these words!$B$BA call to arms has been issued by the Kingdom of Stormwind! All able bodied individuals are entreated to take up arms against the dark threat of the Scourge in the northern lands of the Eastern Kingdoms! Rumors fly of new threats rising from the ruins of the Plaguelands!$B$BHeroes of the realm - seek out Commander Ashlam Valorfist who has set up his base camp in Chillwind Camp, north of the Alterac Mountains!", + ["O"] = "Seek out Commander Ashlam Valorfist. His base camp is located at Chillwind Camp, north of the Alterac Mountains.", + ["T"] = "A Call to Arms: The Plaguelands!", + }, + [5067] = { + ["D"] = "While the crafting of such an item has never successfully been accomplished, it is thought to be possible - under the right circumstance.$B$BShould the seeker of arcanum desire to imbue leggings with immense power, the following they must find:$B$B* The pristine hide of the Beast.$B$B* Frayed abomination stitchings.$B$B*Arcanite Bars.$B$B*Frostwhisper\'s embalming fluid.$B$BBEHOLD!", + ["O"] = "In order to create the Leggings of Arcana, you will be required to bring the following items back to Malyfous Darkhammer: 1 Pristine Hide of the Beast; 5 Frayed Abomination Stitchings; 5 Arcanite Bars; 5 Frostwhisper\'s Embalming Fluid.$B$BYou will also be required to pay 50 gold pieces for the crafting of the item.", + ["T"] = "Leggings of Arcana", + }, + [5068] = { + ["D"] = "It is said that only one Breastplate of Bloodthirst has ever been created and that it was made for the legendary assassin, Garona. Whether this world will ever see another is doubtful.$B$BRegardless! Our master crafters can reproduce the item given the necessary components:$B$B*The pristine hide of the Beast.$B$B*Frayed abomination stitchings.$B$B*Arcanite bars.$B$B*The skin of shadow.$B$BBEHOLD!", + ["O"] = "In order to create the Breastplate of Bloodthirst, you will be required to bring the following items back to Malyfous Darkhammer: 1 Pristine Hide of the Beast; 10 Frayed Abomination Stitchings; 5 Arcanite Bars; 5 Skin of Shadow.$B$BYou will also be required to pay 50 gold pieces for the crafting of the item.", + ["T"] = "Breastplate of Bloodthirst", + }, + [5081] = { + ["D"] = "This information fills in the gaps to our otherwise impeccable intelligence of Blackrock Spire.$B$BThe attack must be decisive, $N.$B$BFirst their war master, the troll Voone, must be destroyed. Without his battle plans, the Blackrock orcs will be thrown into chaos.$B$BYou must then take out the ogre Highlord, Omokk. The cowardly ogres of Blackrock are powerless without his leadership.$B$BLastly, the overlord of the citadel: Wyrmthalak. With Wyrmthalak dead, their central command unit is without a conduit.", + ["O"] = "Travel to Blackrock Spire and destroy War Master Voone, Highlord Omokk, and Overlord Wyrmthalak. Return to Marshal Maxwell when the job is done.", + ["T"] = "Maxwell\'s Mission", + }, + [5082] = { + ["D"] = "I came to Winterspring to investigate the Frostfire Hot Springs. I\'ve noticed that the water seems to have ...strange qualities. I haven\'t yet been able to discover the source, and to tell you the truth, I\'ve had some difficulty lately, due to the Winterfall furbolg.$B$BThey seem to be drawn to the springs, just as I am. They have become extremely protective of the water, and won\'t let me come near the two larger springs to the north of here.$B$BI\'d like to continue my studies, so won\'t you help me?", + ["O"] = "Donova Snowden in Winterspring wants you to kill 8 Winterfall Pathfinders, 8 Winterfall Den Watchers, and 8 Winterfall Totemics.", + ["T"] = "Threat of the Winterfall", + }, + [5083] = { + ["D"] = "This vial that you picked up from the Winterfall furbolg is empty, but you can detect a few drops of a strange green liquid inside; it almost glows.$B$BIs it something important?$B$BDonova Snowden would probably be able to tell you more, since she has been camped by the hot springs in Winterspring for some time now.", + ["O"] = "Bring the Empty Firewater Flask to Donova Snowden in Winterspring.", + ["T"] = "Winterfall Firewater", + }, + [5084] = { + ["D"] = "This greenish liquid... it reminds me a bit of the sludge I saw when traveling through Felwood. And I have seen some Winterfall Runners passing into Timbermaw... Perhaps these things have something to do with the flask you found, $N.$B$BThere is a large group of furbolg just past Timbermaw Hold, in Felwood. Called the Deadwood tribe, they have been corrupted and driven mad by the fel. Why don\'t you look around there and see if you can find any evidence of dealings between the Winterfall and the Deadwood?", + ["O"] = "Search the Deadwood furbolg camp in northern Felwood for a clue.", + ["T"] = "Falling to Corruption", + }, + [5085] = { + ["D"] = "The greenish substance inside the cauldron appears to be similar to what you found in the flask. This strange gooey stuff could be as corrupted as the furbolg that created it...$B$BIf the Winterfall furbolg are using it, does this mean that they will soon be as corrupted as the Deadwood tribe?$B$BIt would be best to report back to Donova with your findings, along with a sample of the liquid in the cauldron.", + ["O"] = "Report back to Donova Snowden with your findings.", + ["T"] = "Mystery Goo", + }, + [5086] = { + ["D"] = "I\'ve studied the sample you returned with, and while I can\'t say for sure, I believe it contains traces of toxic elements. However, the only way to know for sure is to gather some as a comparison.$B$BI believe that the Deadwood furbolg may be gathering these elements from other corrupted creatures in Felwood; in particular, the elementals living in the Irontree Woods, called toxic horrors.$B$BCollect a few samples for me to compare, but be careful -- it\'s very dangerous there!", + ["O"] = "Collect 3 Toxic Horror Droplets for Donova Snowden in Winterspring.", + ["T"] = "Toxic Horrors", + }, + [5087] = { + ["D"] = "Very interesting, $N...$B$BWhen this toxic substance is mixed with the water from the hot springs, it loses its toxicity, only retaining the ability to temporarily affect those that ingest it. This must be why the Winterfall protect the hot springs so fervently -- they need them to purify their firewater.$B$BWe need to stop this -- cut off contact between the Winterfall and the Deadwood. A group of runners walks the distance between their village and Felwood. Find and defeat them, and steal their shipment.", + ["O"] = "Find the Winterfall Runners and stop them from delivering their shipment to Winterfall Village.", + ["T"] = "Winterfall Runners", + }, + [5088] = { + ["D"] = "Take this refined and purified Incendia powder to Thousand Needles and toss it on the sacred fire of life. It is located in the Darkcloud Pinnacle on an isolated needle where they bury their dead.$B$BThe enchantment that I have weaved into the Incendia powder will summon Arikara to you, $N.$B$BI fear she may be stalking Cairne Bloodhoof; too much Tauren lore has changed, and I fear this has angered Arikara. Move quickly before all is lost, $c!", + ["O"] = "Slay Arikara. Bring her remains and the Incendia powder to Motega Firemane in Whitereach Post as proof of your deed.", + ["T"] = "Arikara", + }, + [5089] = { + ["D"] = "From the corpse of the defeated serpent you uncover what appears to be a note of some importance: A letter from his superior, General Drakkisath, concerning protocol.$B$BYour instinct tells you that you should take it to Marshal Maxwell.", + ["O"] = "Take General Drakkisath\'s Command to Marshal Maxwell in Burning Steppes.", + ["T"] = "General Drakkisath\'s Command", + }, + [5090] = { + ["D"] = "Hear ye, hear ye! All heroes are called upon to heed these words!$B$BA call to arms has been issued by the Kingdom of Stormwind! All able bodied individuals are entreated to take up arms against the dark threat of the Scourge in the northern lands of the Eastern Kingdoms! Rumors fly of new threats rising from the ruins of the Plaguelands!$B$BHeroes of the realm - seek out Commander Ashlam Valorfist who has set up his base camp in Chillwind Camp, north of the Alterac Mountains!", + ["O"] = "Seek out Commander Ashlam Valorfist. His base camp is located at Chillwind Camp, north of the Alterac Mountains.", + ["T"] = "A Call to Arms: The Plaguelands!", + }, + [5091] = { + ["D"] = "Hear ye, hear ye! All heroes are called upon to heed these words!$B$BA call to arms has been issued by the Kingdom of Stormwind! All able bodied individuals are entreated to take up arms against the dark threat of the Scourge in the northern lands of the Eastern Kingdoms! Rumors fly of new threats rising from the ruins of the Plaguelands!$B$BHeroes of the realm - seek out Commander Ashlam Valorfist who has set up his base camp in Chillwind Camp, north of the Alterac Mountains!", + ["O"] = "Seek out Commander Ashlam Valorfist. His base camp is located at Chillwind Camp, north of the Alterac Mountains.", + ["T"] = "A Call to Arms: The Plaguelands!", + }, + [5092] = { + ["D"] = "With Andorhal\'s western and northern roads into the city well fortified, I\'m looking to strike at it from the less defended eastern road. The Scourge relies on the buffer of undead that infests Sorrow Hill as a first line of defense. If we are to advance on Andorhal, we will need to do it through Sorrow Hill.$B$BYour first assignment will be to clear the way through Sorrow Hill. Thin out the skeletons and ghouls that haunt the area; report back to me when this is done!", + ["O"] = "Kill 10 Skeletal Flayers and 10 Slavering Ghouls in Sorrow Hill.$B$BReturn to Commander Ashlam Valorfist at Chillwind Camp, Western Plaguelands.", + ["T"] = "Clear the Way", + }, + [5093] = { + ["D"] = "Heroes of the realm, hear me - the Horde calls upon you for swift action!$B$BA call to arms has been issued for all able bodied individuals to take up arms against the Scourge! Rumors fly of new threats rising from the ruins of the Eastern Kingdoms. They loom to the east of the Undercity, in the northern reaches of the lands now known as the Plaguelands!$B$BHeroes of the realm - seek out High Executor Derrington, who has set up his base camp at the Bulwark, east of Tirisfal Glade!", + ["O"] = "Seek out High Executor Derrington. His base camp is located at the Bulwark, east of Tirisfal Glade and the Undercity.", + ["T"] = "A Call to Arms: The Plaguelands!", + }, + [5094] = { + ["D"] = "Heroes of the realm, hear me - the Horde calls upon you for swift action!$B$BA call to arms has been issued for all able bodied individuals to take up arms against the Scourge! Rumors fly of new threats rising from the ruins of the Eastern Kingdoms. They loom to the east of the Undercity, in the northern reaches of the lands now known as the Plaguelands!$B$BHeroes of the realm - seek out High Executor Derrington, who has set up his base camp at the Bulwark, east of Tirisfal Glade!", + ["O"] = "Seek out High Executor Derrington. His base camp is located at the Bulwark, east of Tirisfal Glade and the Undercity.", + ["T"] = "A Call to Arms: The Plaguelands!", + }, + [5095] = { + ["D"] = "Heroes of the realm, hear me - the Horde calls upon you for swift action!$B$BA call to arms has been issued for all able bodied individuals to take up arms against the Scourge! Rumors fly of new threats rising from the ruins of the Eastern Kingdoms. They loom to the east of the Undercity, in the northern reaches of the lands now known as the Plaguelands!$B$BHeroes of the realm - seek out High Executor Derrington, who has set up his base camp at the Bulwark, east of Tirisfal Glades!", + ["O"] = "Seek out High Executor Derrington. His base camp is located at the Bulwark, east of Tirisfal Glades and the Undercity.", + ["T"] = "A Call to Arms: The Plaguelands!", + }, + [5096] = { + ["D"] = "Before Andorhal, we must tackle the advancing Scarlet Crusade menace from Hearthglen. They\'ve made camp between Felstone Field and Dalson\'s Tears, making us risk conflict against both the Scourge and the Crusade at once.$B$BMy plan is to play them off of each other by sending you to destroy the command tent they\'ve set up; use some Flame in a Bottle from this box of incendiaries. Once razed, plant this Scourge banner by the tent. With some luck, they\'ll ignore us and focus on the Scourge for vengeance.", + ["O"] = "Proceed to the Scarlet Crusade\'s base camp between Felstone Field and Dalson\'s Tears and destroy their command tent.$B$BPlace the Scourge banner at the camp, and then return to High Executor Derrington at the Bulwark, Western Plaguelands.", + ["T"] = "Scarlet Diversions", + }, + [5097] = { + ["D"] = "Through the use of a magical device known as a beacon torch, we can mark targets of our choosing for future actions by our troops. To that end, we think the Scourge are using Andorhal\'s watchtowers as a means to control their troop movements.$B$BYour mission: breach Andorhal\'s defenses to plant beacons at all four watchtowers. You\'ll need to be in the doorway of each tower to plant the beacon; it will then proceed to mark the tower. There are only five charges on the beacon torch, so use them wisely!", + ["O"] = "Using the Beacon Torch, mark each tower in Andorhal; you will need to stand in the doorway of the tower to successfully mark it.$B$BOnce all four towers are marked, return the Beacon Torch to Commander Ashlam Valorfist in Chillwind Camp, Western Plaguelands.", + ["T"] = "All Along the Watchtowers", + }, + [5098] = { + ["D"] = "Through the use of a magical device known as a beacon torch, we can mark targets of our choosing for future actions by our troops. To that end, we think the Scourge are using Andorhal\'s watchtowers as a means to control their troop movements.$B$BYour mission: breach Andorhal\'s defenses to plant beacons at all four watchtowers. You\'ll need to be in the doorway of each tower to plant the beacon; it will then proceed to mark the tower. There are only five charges on the beacon torch, so use them wisely!", + ["O"] = "Using the Beacon Torch, mark each tower in Andorhal; you will need to stand in the doorway of the tower to successfully mark it.$B$BOnce all four towers are marked, return the Beacon Torch to High Executor Derrington at the Bulwark, Western Plaguelands.", + ["T"] = "All Along the Watchtowers", + }, + [5101] = { + ["D"] = "Bah! What do think this is, some kind of Test Quest? I be there even be typos in it!$B$BIf ya be thinkin\' my quest is goin\' ta be easy, then ya got another thing coming!$B$BKill me ten sheep (1933) and don\'t come back until you do!", + ["O"] = "Kill 6 sheep for Benny and then run like hell!$B$B$B$B$BJust kidding... about the running part.", + ["T"] = "Lee\'s Ultimate Test Quest... of Doom!", + }, + [5102] = { + ["D"] = "We battle against these beasts on two fronts: From our capital of Stormwind we fight them from the inside out and here, in the Burning Steppes, we take the battle to their doorstep. We must be vigilant, $N. None should be spared our wrath as none of our own were spared when they struck at our homes and families.$B$BFind this General Drakkisath and destroy him!$B$BThe task certainly will not be a simple one, but the rewards shall be extravagant.", + ["O"] = "Travel to Blackrock Spire and destroy General Drakkisath. Return to Marshal Maxwell when the job is done.", + ["T"] = "General Drakkisath\'s Demise", + }, + [5103] = { + ["D"] = "The only thing that remains of this human are some charred bones. He seems to have died within arms reach of what he was after - unfired plate gauntlets.$B$BPerhaps you should grab the gauntlets and get out of the fire?", + ["O"] = "Someone in this world must know what to do with these gauntlets. Good luck!", + ["T"] = "Hot Fiery Death", + }, + [5121] = { + ["D"] = "While we still know very little about why the furbolg have been ingesting this strange substance, I do think it\'s best that we put a stop to it before it gets out of hand.$B$BThe Winterfall furbolg are not a normally aggressive tribe, and this change in their behavior leads me to think that they must be under orders from their chief. We most likely can\'t undo the damage that has already been done, but I think that if their leader is slain, they will not get any worse.$B$BHead east to Winterfall Village.", + ["O"] = "Donova Snowden in Winterspring wants you to defeat High Chief Winterfall.", + ["T"] = "High Chief Winterfall", + }, + [5122] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Medallion of Faith", + }, + [5123] = { + ["D"] = "The log you found on the high chief looks extensive, but after looking through a couple of the pages, you find that you cannot read the text. The markings are so crude and poorly-formed that you are not sure if anyone would be able to read them.$B$BBut perhaps Donova will be able to tell you what it says... ", + ["O"] = "Bring the Crudely-written Log to Donova Snowden in Winterspring.", + ["T"] = "The Final Piece", + }, + [5124] = { + ["D"] = "By Thaurissan\'s beard!$B$BWhere did you find them?$B$BMore importantly, are you willing to part with them? Naturally, I would pay you for such a noble gesture.$B$BI\'ll tell you what, $N. If you give me those unfired gauntlets, I will teach you how to make a set all your own. All you need to do is collect the parts for me so that I may narrow down the exact recipe.$B$BDo we have a deal??$B$BHere\'s the list of what I need, I\'ll front the non-enchanted thorium myself since you\'re supplying the gauntlets.", + ["O"] = "Bring Malyfous Darkhammer 6 Enchanted Thorium Bars, 2 Essence of Fire, and 4 Star Rubies. You will also need to turn in your Unfired Plate Gauntlets.", + ["T"] = "Fiery Plate Gauntlets", + }, + [5125] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Aurius\' Reckoning", + }, + [5126] = { + ["D"] = "The Satyr paces about and talks to himself. Do you wish to question him?", + ["O"] = "Speak with Lorax. Listen to what he has to say.", + ["T"] = "Lorax\'s Tale", + }, + [5127] = { + ["D"] = "Lorax makes deals, he does not accept them from insignificant mortals.$B$BA deal I shall make with you, however... take this pike, it is imbued with powerful Fel energies. When you find Goraluk Anvilcrack, slay him and drive this pike through his dying heart. His soul he bartered, his soul I shall have. Return the pike and return the breastplate that the thief stole and I shall teach you what it is that he was to learn.", + ["O"] = "Travel to Blackrock Spire and find Goraluk Anvilcrack. Slay him and then use the Blood Stained Pike upon his corpse. After his soul has been siphoned, the pike will be Soul Stained.$B$BYou must also find the Unforged Rune Covered Breastplate.$B$BReturn both the Soul Stained Pike and the Unforged Rune Covered Breastplate to Lorax in Winterspring.", + ["T"] = "The Demon Forge", + }, + [5128] = { + ["D"] = "The Winterfall are no longer a threat to me, but if you still want to find out what was driving the furbolg to create and consume this strange firewater, I think you should seek out Kelek Skykeeper.$B$BHe is part of a group known as the Emerald Circle, druids that are committed to their work in Felwood, healing the land from the corruption.$B$BKelek has much experience with the furbolgs in Felwood, and may be able to tell you more about the log.$B$BThank you, again, $N.", + ["O"] = "Take the Crudely-written Log to Kelek Skykeeper in southern Felwood.", + ["T"] = "Words of the High Chief", + }, + [5141] = { + ["D"] = "Dragonscale leatherworking isn\'t easy, but it\'s extremely rewarding. I\'ll teach you how to make this fine mail armor, but only if you agree to certain conditions.$B$BBy choosing this path, you agree never to learn elemental or tribal leatherworking; there is only room for one of the three at the apex of the craft. Furthermore, I\'ll need some samples of your best work involving scorpid armor. Finally, I\'ll need proof of your ability to acquire the staple of the trade: scales of the dragonkin.", + ["O"] = "Bring 2 Tough Scorpid Breastplates, 2 Tough Scorpid Gloves, and 10 Worn Dragonscales to Peter Galen in Azshara.$B$BCompleting this quest will give you access to the Dragonscale Leatherworking arts.$B$BThe completion of this quest will prevent you from learning Elemental Leatherworking and Tribal Leatherworking; be sure this is the path you wish to follow before doing so.", + ["T"] = "Dragonscale Leatherworking", + }, + [5142] = { + ["D"] = "So many of us died at the battle of Darrowshire. So many died... and worse.$B$BWhen the battle began I hid my niece Pamela, and I do not know what happened to her. I am but a wandering spirit, but my heart still longs to know Pamela\'s fate.$B$BPlease, good $c. Will you go to Darrowshire and search for her? It is to the east, beyond Gahrron\'s Withering.", + ["O"] = "Find Pamela Redpath.", + ["T"] = "Little Pamela", + }, + [5143] = { + ["D"] = "To learn tribal leatherworking demands an understanding of how primal nature truly is; I know that you have already mastered the art of making wild leather armor, and I am willing to complete your training.$B$BKnow this, $c: by choosing this path you agree never to learn dragonscale or elemental leatherworking; there is only room for practice of one of the three arts. Furthermore, bring to me the finest samples of your wild leather armor. From there, we will begin your mastery.", + ["O"] = "Bring a Wild Leather Vest and a Wild Leather Helmet to Caryssia Moonhunter in Feralas.$B$BCompleting this quest will give you access to the Tribal Leatherworking arts.$B$BThe completion of this quest will prevent you from learning Dragonscale Leatherworking and Elemental Leatherworking; be sure this is the path you wish to follow before doing so.", + ["T"] = "Tribal Leatherworking", + }, + [5144] = { + ["D"] = "Elemental leatherworking is what I know, and if you\'re willing to open your mind to the greater powers of substance, I will share with you all there is to learn.$B$BKnow this, $c: by choosing this path you agree never to learn dragonscale or tribal leatherworking; there is only room for practice of one of the three arts. Furthermore, I\'ll need adequate proof that you are in tune with the elements of nature; to that end, bring me the purest essences of fire, water, earth, and wind.", + ["O"] = "Bring 4 Heart of Fire, 4 Globe of Water, 4 Core of Earth, and 4 Breath of Wind to Sarah Tanner in Searing Gorge.$B$BCompleting this quest will give you access to the Elemental Leatherworking arts.$B$BThe completion of this quest will prevent you from learning Dragonscale Leatherworking and Tribal Leatherworking; be sure this is the path you wish to follow before doing so.", + ["T"] = "Elemental Leatherworking", + }, + [5145] = { + ["D"] = "Dragonscale leatherworking isn\'t easy, but it\'s extremely rewarding. I\'ll teach you how to make this fine mail armor, but only if you agree to certain conditions.$B$BBy choosing this path, you agree never to learn elemental or tribal leatherworking; there is only room for one of the three at the apex of the craft. Furthermore, I\'ll need some samples of your best work involving scorpid armor. Finally, I\'ll need proof of your ability to acquire the staple of the trade: scales of the dragonkin.", + ["O"] = "Bring 2 Tough Scorpid Breastplates, 2 Tough Scorpid Gloves, and 10 Worn Dragonscales to Thorkaf Dragoneye in the Badlands.$B$BCompleting this quest will give you access to the Dragonscale Leatherworking arts.$B$BThe completion of this quest will prevent you from learning Elemental Leatherworking and Tribal Leatherworking; be sure this is the path you wish to follow before doing so.", + ["T"] = "Dragonscale Leatherworking", + }, + [5146] = { + ["D"] = "Elemental leatherworking is what I know, and if you\'re willing to open your mind to the greater powers of substance, I will share with you all there is to learn.$B$BKnow this, $c: by choosing this path you agree never to learn dragonscale or tribal leatherworking; there is only room for practice of one of the three arts. Furthermore, I\'ll need adequate proof that you are in tune with the elements of nature; to that end, bring me the purest essences of fire, water, earth, and wind.", + ["O"] = "Bring 4 Heart of Fire, 4 Globe of Water, 4 Core of Earth, and 4 Breath of Wind to Brumn Winterhoof in the Arathi Mountains.$B$BCompleting this quest will give you access to the Elemental Leatherworking arts.$B$BThe completion of this quest will prevent you from learning Dragonscale Leatherworking and Tribal Leatherworking; be sure this is the path you wish to follow before doing so.", + ["T"] = "Elemental Leatherworking", + }, + [5147] = { + ["D"] = "Wanted: Arnak Grimtotem$B$BArnak the outcast is wanted for the heinous crimes of murder and kidnapping. Handsome rewards will be given to those brave enough to bring this criminal to justice.$B$BArnak was last seen on the cliffs near the Darkcloud Pinnacle. Show the proof of your deed to Cliffwatcher Longhorn in Freewind Post in order to claim the reward.", + ["O"] = "Slay Arnak Grimtotem and bring proof of your deed to Cliffwatcher Longhorn in Freewind Post.", + ["T"] = "Wanted - Arnak Grimtotem", + }, + [5148] = { + ["D"] = "To learn tribal leatherworking demands an understanding of how primal nature truly is; I know that you have already mastered the art of making wild leather armor, and I am willing to complete your training.$B$BKnow this, $c: by choosing this path you agree never to learn dragonscale or elemental leatherworking; there is only room for practice of one of the three arts. Furthermore, bring to me the finest samples of your wild leather armor. From there, we will begin your mastery.", + ["O"] = "Bring a Wild Leather Vest and a Wild Leather Helmet to Se\'Jib in Stranglethorn Vale.$B$BCompleting this quest will give you access to the Tribal Leatherworking arts.$B$BThe completion of this quest will prevent you from learning Dragonscale Leatherworking and Elemental Leatherworking; be sure this is the path you wish to follow before doing so.", + ["T"] = "Tribal Leatherworking", + }, + [5149] = { + ["D"] = "My auntie Marlene told me to stay here in our house because my father had to go and fight. My father\'s the bravest man in the whole world!$B$BBut I\'ve been here for a long time, and he hasn\'t come for me. Sometimes bad people come and whisper to me and I want my dad to make them go away, but he\'s not here!$B$BAnd sometimes when it gets dark I want to play with my doll but I can\'t because I left it in town.$B$BWill you find my doll for me?", + ["O"] = "Find Pamela\'s doll.", + ["T"] = "Pamela\'s Doll", + }, + [5150] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Dadanga is Hungry!", + }, + [5151] = { + ["D"] = "I am the only survivor from our caravan attack by the centaur! A rare yet mighty panther is guarding my best gizmo, which is around his neck. Hah! Even the centaur tremble in the presence of this ferocious beast!$B$BHere is the key to the cage. They took everything there, but left him alone. Slay this beast and bring back my hypercapacitor, and I shall reward you.$b$bThe wrecked caravan is just north of here.", + ["O"] = "Slay the beast and bring back the Hypercapacitor Gizmo and Panther Cage Key to Wizlo Bearingshiner.", + ["T"] = "Hypercapacitor Gizmo", + }, + [5152] = { + ["D"] = "Oh, I\'m so lonely! Where is my family? Auntie Marlene told me to stay here, but then she left and never came back! And my dad... have you seen him?$B$BMaybe Auntie Marlene knows where he is. She lives near Andorhal, in a house to the south. I think it was on a hill... she said it was on a hill.$B$BPlease, $N. You\'re my new friend! Will you talk to my Auntie for me?", + ["O"] = "Speak with Marlene, south of the Ruins of Andorhal.", + ["T"] = "Auntie Marlene", + }, + [5153] = { + ["D"] = "I wish Joseph could again be with his daughter, but it cannot be so. His soul was twisted by the Scourge, and he became a monster. Oh, he is doomed!$B$BBut perhaps we can change his fate.$B$BSearch the graves outside for Joseph\'s monument. His body\'s not there, for it was trampled and destroyed years ago, but under the monument is his wedding ring. Take that ring to Chromie... a strange gnome with very strange powers.$B$BChromie is staying in the ruined inn at the northwest corner of Andorhal.", + ["O"] = "Bring Joseph\'s Wedding Ring to Chromie.", + ["T"] = "A Strange Historian", + }, + [5154] = { + ["D"] = "To save Joseph Redpath, we must first discover his past. We can learn this in the Annals of Darrowshire, a book held in the city hall of Andorhal.$B$BBring me that book. We can then learn Joseph\'s fate, and with luck... change it!", + ["O"] = "Bring the Annals of Darrowshire to Chromie in Andorhal.", + ["T"] = "The Annals of Darrowshire", + }, + [5155] = { + ["D"] = "If I am to trust you in this matter, you will first have to prove yourself.$B$BI must know that you are an enemy of the Shadow Council--the ones responsible for many evils here and abroad.$B$BTravel deeper into Felwood. To the west you will see a path leading to Jaedenar. It is there that the Council plots with the Burning Legion.$B$BEnter the depths of one of the corrupted Barrow Dens they inhabit and slay their kind. Return to me after you\'ve done this. Then I will know you truly seek to help us.", + ["O"] = "Enter Jaedenar and slay 4 Jaedenar Hounds, 4 Jaedenar Guardsmen, 6 Jaedenar Adepts, and 6 Jaedenar Cultists before returning to Greta Mosshoof in Felwood.", + ["T"] = "Forces of Jaedenar", + }, + [5156] = { + ["D"] = "To the north, along the east of the road in what\'s called Shatter Scar Vale, is an area where infernals were called down during the last great war--the craters still scar the land, as do the infernals themselves.$B$BI am curious about two things. First, are there still entropic elementals roaming the area? And second, are the craters still filled with the corrupt, fetid water that gathered there years ago? Will you help me and check, $N? Be careful though, the infernals destroy anything in their path.", + ["O"] = "Seek out and destroy 2 Entropic Beasts and 2 Entropic Horrors while exploring Shatter Scar Vale. After checking to see if the craters there are still filled with corrupt fel water, return to Taronn Redfeather in Felwood.", + ["T"] = "Verifying the Corruption", + }, + [5157] = { + ["D"] = "Deep within Jaedenar lies Shadow Hold--the main fortress of their corruption and evil.$B$BThe Shadow Council has protective spells surrounding their lair in the form of braziers. If I am to find out any more information about our enemy through scrying, then those braziers must be extinguished. By doing so, I should be able to spy on the Council and find out who leads them.$B$BIf you can, take this canteen and fill it at the Moon Well in the center of Jaedenar. Return to me afterwards.", + ["O"] = "Take the Empty Canteen to the Moon Well in the center of Jaedenar and fill it before returning to Greta Mosshoof in Felwood.", + ["T"] = "Collection of the Corrupt Water", + }, + [5158] = { + ["D"] = "Take the corrupt water to the Barrens, $N. South of Ratchet, hidden along the shore, is an old friend of mine, a shaman named Islen Waterseer. She is a powerful shaman who will help us. Her relationship with the spirits of water has always been strong. Our task being a noble one should be enough to persuade her and the spirits of water to aid us in this task.$B$BYou should find her at a small camp right along the water\'s edge. And, $N, ignore the pirates... they are but a nuisance and no threat to you.", + ["O"] = "Take the Corrupt Moon Well Water to Islen Waterseer in the Barrens.", + ["T"] = "Seeking Spiritual Aid", + }, + [5159] = { + ["D"] = "Thank the spirits, $N. They are the ones that have come to your aid, not me.$B$BI give this purified water to you now. Please give my regards to Greta and my best wishes. She is tackling something greater than many of us... as I\'m sure she will soon find out.$B$BThe Shadow Council is not a force to be trifled with, $N. Remember that.$B$BGo now. Take the water and return to Greta.", + ["O"] = "Take the Purified Moon Well Water to Greta Mosshoof in Felwood.", + ["T"] = "Cleansed Water Returns to Felwood", + }, + [5160] = { + ["D"] = "Travel to Kalimdor, $r. Our flight makes its home in the frigid landscape of Winterspring. Once you reach Winterspring, find the caves of Mazthoril.$B$BUpon the icy floors of Mazthoril you will find cobalt runes. Hold one of my scales and stand upon a rune and you shall be transported to Haleh, our matron protectorate.$B$BGive her the scale so that she may scry what it is I have seen and felt, here in this doomed place.", + ["O"] = "Travel to Winterspring and find Haleh. Give her Awbee\'s scale.", + ["T"] = "The Matron Protectorate", + }, + [5161] = { + ["D"] = "We understand what the cursed brood of Deathwing attempts to do and we know that it cannot be allowed.$B$BBecause of the protection Blackrock mountain affords Nefarian, it has become increasingly difficult for us to intercede.$B$BWe can, however, empower you, mortal - should you so choose.$B$BThe path before you is one full of peril. You must decide whether to accept our help. Ponder this and speak with me again when a decision has been made.", + ["O"] = "Speak with Haleh if you wish to continue.", + ["T"] = "Wrath of the Blue Flight", + }, + [5162] = { + ["D"] = "It is the arcane that I control and the arcane which will send you to your next destination.$B$BWhen you are ready, the journey will begin. To the Plaguelands you will go and to Jeziba you will speak.$B$BHe is a mortal as wise as the ancients and as patient as the immovable earth. Find him in Andorhal.", + ["O"] = "Speak with Jeziba in the Plaguelands. He resides in Andorhal.", + ["T"] = "Wrath of the Blue Flight", + }, + [5163] = { + ["D"] = "It\'s all ready, $N!$B$BNow, I sent some mail to my friends already, telling them that I have a surprise for them. This is where you come in!$B$BI\'m going to give you my mechanical yeti, and you need to surprise them by paying each of my friends a visit, turning the yeti on and sending it towards them.$B$B Once you have shown Legacki in Everlook, Sprinkle in Gadgetzan, and Quixxil in Marshal\'s Refuge, come back and tell me what happened!$B$BPlease bring my yeti back to me then, too.", + ["O"] = "Take Umi\'s Mechanical Yeti and scare her friends with it:$B$BLegacki in Everlook (Winterspring)$BSprinkle in Gadgetzan (Tanaris)$BQuixxil in Marshal\'s Refuge (Un\'Goro Crater)$B$BWhen you are done, bring the Mechanical Yeti back to Umi.", + ["T"] = "Are We There, Yeti?", + }, + [5164] = { + ["D"] = "A finer instrument of justice, Haleh could not have chosen. Read from the catalogue of the wayward and be enlightened.$B$BShould you persist... should you do what is asked of you... should you survive... a hero you will make.", + ["O"] = "Read from the Catalogue of the Wayward.", + ["T"] = "Catalogue of the Wayward", + }, + [5165] = { + ["D"] = "Now, you must return to Jaedenar. The braziers are more than likely spread throughout Shadow Hold. Douse each of their flames and the protections the Council has set up will fall for at least a short period of time. I will be waiting for that to happen. When it does, I will look deep within the Hold and try to find out who the head of this beast is. Then, and only then, will we see about attacking them directly.", + ["O"] = "Using the Purified Moon Well Water, douse the flames of the four braziers of protection within Shadow Hold in Felwood, then return to Greta Mosshoof in the Emerald Sanctuary.", + ["T"] = "Dousing the Flames of Protection", + }, + [5166] = { + ["D"] = "The forging of a powerful breastplate to protect against the unrelenting attacks of the chromatic flight is one built upon irony.$B$BThe scales of the very beasts we battle must be sewn to the pristine carapace of an elder chromatic drake or dragon. None are known to exist at this time and we should hope that none will ever exist.$B$BLastly, perhaps the most difficult of all components: the blood of heroes.$B$BThe Sculptor must ultimately forge this creation.", + ["O"] = "To forge the Breastplate of the Chromatic Flight, you will be required to bring the following items to Jeziba the \'Sculptor\':$B$B1 Chromatic Carapace.$B$B10 Brilliant Chromatic Scales.$B$B10 Blood of Heroes.$B$B10 Frayed Abomination Stitchings.", + ["T"] = "Breastplate of the Chromatic Flight", + }, + [5167] = { + ["D"] = "The carapace of a mature chromatic drake is needed to form the foundation of the leggings. Brilliant chromatic scales are then layered upon the wire frame and enchanted in the blood of heroes. Finally, the supple skin of shadow must be applied to the inner greaves.", + ["O"] = "To forge the Legplates of the Chromatic Defier, you will be required to bring the following items to Jeziba the \'Sculptor\':$B$B1 Chromatic Carapace.$B$B10 Brilliant Chromatic Scales.$B$B10 Blood of Heroes.$B$B5 Skin of Shadow.", + ["T"] = "Legplates of the Chromatic Defier", + }, + [5168] = { + ["D"] = "The heroes of Darrowshire hold a place in my heart, and the book you brought me, the Annals of Darrowshire, tells their tales.$B$BIt tells of the paladin Davil Lightfire and how the Crusade took his libram to the town hall of Hearthglen.$B$BIts passages also speak of my brother, Captain Redpath. After his betrayal, his shield was cracked and discarded and now lies in the most unlikely of places -- near the barn of Gahrron\'s Withering.$B$BGather these relics, $N. For fate and tragedy surrounds them.", + ["O"] = "Bring Davil\'s Libram and Redpath\'s Shield to Carlin Redpath.", + ["T"] = "Heroes of Darrowshire", + }, + [5181] = { + ["D"] = "The Annals of Darrowshire tells of the villains of that battle. It tells how the ghoul lord Horgus the Ravager was destroyed by Alliance forces during the battle. His body was cast into a lake, northwest of Corin\'s Crossing, and his skull remains there.$B$BMarduk the Black was never defeated, but his fabled sword was shattered and lost. It lies at the bottom of the gorge west of Corin\'s Crossing.$B$BRetrieve these items, $N. I know not why, but I am certain their fate lies with you.", + ["O"] = "Bring the Skull of Horgus and the Shattered Sword of Marduk to Carlin Redpath at Light\'s Hope Chapel.", + ["T"] = "Villains of Darrowshire", + }, + [5201] = { + ["D"] = "My presence goes unnoticed by most, $N. However, there is an annoyance that seems firmly rooted here in Winterspring: the Winterfall furbolg.$B$BAlthough I have never directly attacked the furbolg, they seem crazed, fearful of anything in their path. I have watched them slay countless creatures that had the misfortune to simply be in the wrong place at the wrong time.$B$BI am weary of their meddling -- please, help me by fighting back. Slay the furbolg and keep them away from Frostsaber Rock.", + ["O"] = "Rivern Frostwind wants you to slay 5 Winterfall Shaman and 5 Winterfall Ursa.", + ["T"] = "Winterfall Intrusion", + }, + [5202] = { + ["D"] = "The small red key seems to be made of some kind of bone material. It is heavy in your hand, but appears very fragile. Why would a member of the Shadow Council have such a thing? Perhaps there is something within Jaedenar that this strange key unlocks.", + ["O"] = "Search through Jaedenar to discover what the Blood Red Key is used for.", + ["T"] = "A Strange Red Key", + }, + [5203] = { + ["D"] = "But, as much as it pains me, there is one thing that must be done first: I have to find Trey\'s sword Lightforge and escape Shadow Hold to tell my superiors what\'s happening here. Can you help me, $N?$B$BOur equipment isn\'t far from here, and you\'ve already proven you can survive the path to the top.$B$BAfter we escape, I\'ll head to Darnassus if you can find my friend Jessir near the Ashenvale border. She was to meet us at the Emerald Circle\'s camp near there.$B$BWhat do you say, $N? Can you help me again?", + ["O"] = "Escort Arko\'narin to where Lightforge and her equipment are being held, and then protect her as you escape Shadow Hold. Afterwards, seek out Jessir Moonbow in Felwood to let her know what\'s happened to her friends.", + ["T"] = "Rescue From Jaedenar", + }, + [5204] = { + ["D"] = "She would like to pretend that she\'s fine. She\'d love for me to think that she\'s strong enough to deal with all of this on her own, but I know better than that. Trey\'s death and hearing the torture he was put through is going to haunt her for a long time, and there\'s nothing we can do to stop that. But we can give her some peace!$B$B$N, return to Shadow Hold, kill Trey\'s torturer and find his remains. There is no reason we can\'t tie off all these loose ends while Arko\'narin mourns in her own private way.", + ["O"] = "Return to Jaedenar and kill the succubus Rakaiah before finding the Remains of Trey Lightforge.", + ["T"] = "Retribution of the Light", + }, + [5205] = { + ["D"] = "", + ["O"] = "", + ["T"] = "", + }, + [5206] = { + ["D"] = "Chromie said the relics you gathered are reagents to a powerful spell, and one more is required: skulls from the scourge who took part in the battle of Darrowshire.$B$BTake this crystal and hunt scourge champions for their skulls. The crystal is enchanted; if a champion took part in the battle, then when you pass the crystal over its skull it will resonate. Bring me those resonating skulls.$B$BGo, $N. You\'ll find scourge champions in the Noxious Glade to the north and the Fungal Vale to the west.", + ["O"] = "Bring 5 Resonating Skulls and the Mystic Crystal to Carlin Redpath in Eastern Plaguelands.", + ["T"] = "Marauders of Darrowshire", + }, + [5207] = { + ["D"] = "", + ["O"] = "", + ["T"] = " The True Summoner", + }, + [5208] = { + ["D"] = "", + ["O"] = "", + ["T"] = " The Blessing of Evil", + }, + [5209] = { + ["D"] = "", + ["O"] = "", + ["T"] = "", + }, + [5210] = { + ["D"] = "The Annals of Darrowshire, through my magic, has gained pages at its end, and now it extends its history beyond the battle. One of the extra passages tells of another Redpath, Carlin, who survived Joseph\'s betrayal. Carlin\'s now in the Plaguelands to the east, at the Light\'s Hope Chapel.$B$BTake the book and speak with him.", + ["O"] = "Bring the Extended Annals of Darrowshire to Carlin Redpath in Eastern Plaguelands.", + ["T"] = "Brother Carlin", + }, + [5211] = { + ["D"] = "Many of the defenders fell at the battle of Darrowshire. And many roam again as the ghastly servants of the Scourge! Find these poor souls and end their misery!$B$BHunt cannibal ghouls, gibbering ghouls and diseased flayers. Many of these fiends were once the good folk of Darrowshire and destroying their forms now will set their souls free.$B$BYou will find them in Plaguewood and Corin\'s Crossing, and in other Scourge strongholds of Eastern Plaguelands.", + ["O"] = "Free 15 Darrowshire Spirits and return to Carlin Redpath.", + ["T"] = "Defenders of Darrowshire", + }, + [5212] = { + ["D"] = "The Forsaken apothecaries are not the only beings in this world schooled in the sciences.$B$BI have been studying the plague for years, $r. We had previously thought that the potency of the plague was dwindling, but what I have discovered here in the Plaguelands is startling. The plague seems to be growing in strength!$B$BI need to run more tests! The most potent source of the plague is from the tainted flesh of the most recently infected. Travel to Stratholme and bring me samples, $N.", + ["O"] = "Recover 20 Plagued Flesh Samples from Stratholme and return them to Betina Bigglezink. You suspect that any creature in Stratholme would have said flesh sample.", + ["T"] = "The Flesh Does Not Lie", + }, + [5213] = { + ["D"] = "You will have to delve deeper into Stratholme, $N.$B$BBeyond the first gates you will find the ziggurats. We know that the Scourge draws great power from these structures. Search the Ziggurats and return with any information that you may discover.", + ["O"] = "Travel to Stratholme and search the ziggurats. Find and return new Scourge Data to Betina Bigglezink.", + ["T"] = "The Active Agent", + }, + [5214] = { + ["D"] = "Terrible thing... what happened to Fras. You see, the town was sacked and Fras didn\'t want to leave his precious goods behind. The last thing I remember him saying was, \'I\'ll burn every last leaf before they get their damned, dirty hands on them!\'$B$BI may love a good stogie but I\'m no fool. I left Fras and his delightful store that day. I assume he went down in flames but if there\'s a chance that even one box of his famous tobacco is still intact...$B$BWhat do you say, $N? Find a box for ol\' Smokey?", + ["O"] = "Find Fras Siabi\'s smoke shop in Stratholme and recover a box of Siabi\'s Premium Tobacco. Return to Smokey LaRue when the job is done.", + ["T"] = "The Great Fras Siabi", + }, + [5215] = { + ["D"] = "Within the lands of former Lordaeron are eight cauldrons - four here in the west, and four more ensconced in the east. These cauldrons spew poisons into the air, propagating the plague throughout the land for the Scourge.$B$BThe necromantic might of Kel\'Thuzad is too strong to outright shut down these cauldrons, but we think we might have a way to subvert them to our advantage. My second, High Priestess MacDonnell, will be your point on this assignment; she\'ll continue the briefing from here.", + ["O"] = "Speak with High Priestess MacDonnell at Chillwind Point, Western Plaguelands.", + ["T"] = "The Scourge Cauldrons", + }, + [5216] = { + ["D"] = "Of the four cauldrons here in the west, the one located at Felstone Field may be the easiest one in obtaining access to. The Scourge have greener troops positioned here, though they should not be underestimated.$B$BGo to Felstone Field, northwest of Andorhal, and engage the cauldron lord there. We think it has a key that will unlock access to the cauldron. When unlocked, use this bottle to obtain a sample of the poisons inside the cauldron; we\'ll need it for study in developing a counter agent.", + ["O"] = "Go to Felstone Field in Western Plaguelands to locate and defeat the Cauldron Lord present there. It may have a key that will allow access to the cauldron. You must have the Empty Felstone Field Bottle with you to secure a sample of the poisons used inside the cauldron.", + ["T"] = "Target: Felstone Field", + }, + [5217] = { + ["D"] = "You fill the bottle with enough of the cauldron\'s poisonous concoction for a suitable sample to be studied.$B$BWith the poison in hand, it is time to return to High Priestess MacDonnell at Chillwind Camp to complete the mission.", + ["O"] = "Bring the Filled Felstone Field Bottle to High Priestess MacDonnell at Chillwind Camp, Western Plaguelands.", + ["T"] = "Return to Chillwind Camp", + }, + [5218] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Felstone Field Cauldron", + }, + [5219] = { + ["D"] = "One of the plague cauldrons is located in the field of a former farmhouse now referred to as Dalson\'s Tears. Well, we shall shed no tears this day as we thwart the Scourge and have them choke on their own fumes!$B$BGo to Dalson\'s Tears, almost due north of Andorhal, and eliminate the cauldron lord there. It should have a key like the last one did, allowing you into the cauldron. Use this bottle to obtain a sample from inside the cauldron; each cauldron has its own distinct brew of toxins it uses.", + ["O"] = "Go to Dalson\'s Tears in Western Plaguelands to locate and defeat the Cauldron Lord present there, and use its key to gain access to the cauldron. You must have the Empty Dalson\'s Tears Bottle with you to secure a sample of the poisons used inside the cauldron.", + ["T"] = "Target: Dalson\'s Tears", + }, + [5220] = { + ["D"] = "You carefully fill the bottle with enough of the cauldron\'s ichors for what you consider to be suitably sized sample.$B$BWith the poison in hand, it is time to return to High Priestess MacDonnell at Chillwind Camp to complete the mission.", + ["O"] = "Bring the Filled Dalson\'s Tears Bottle to High Priestess MacDonnell at Chillwind Camp, Western Plaguelands.", + ["T"] = "Return to Chillwind Camp", + }, + [5221] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Dalson\'s Tears Cauldron", + }, + [5222] = { + ["D"] = "Two cauldrons have been successfully opened; while you will be able to access them indefinitely, we still want to open up the other two that remain. This will provide all of us with more options to introduce the counter agent!$B$BThis time, you\'ll be hitting the Writhing Haunt\'s cauldron. It is almost due east of Andorhal, relatively close to the ruined city walls; again, eliminate the cauldron lord present there for its key. Use this bottle to obtain the sample from the cauldron.$B$BGood hunting, $N!", + ["O"] = "Go to the Writhing Haunt in Western Plaguelands to locate and defeat the Cauldron Lord present there, and use its key to gain access to the cauldron. You must have the Empty Writhing Haunt Bottle with you to secure a sample of the poisons used inside the cauldron.", + ["T"] = "Target: Writhing Haunt", + }, + [5223] = { + ["D"] = "You delicately top off the empty bottle; a sample of the foul substance that churns under the platform of the cauldron now oozes back and forth inside the fragile glass container.$B$BWith the poison in hand, it is time to return to High Priestess MacDonnell at Chillwind Camp to complete the mission.", + ["O"] = "Bring the Filled Writhing Haunt Bottle to High Priestess MacDonnell at Chillwind Camp, Western Plaguelands.", + ["T"] = "Return to Chillwind Camp", + }, + [5224] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Writhing Haunt Cauldron", + }, + [5225] = { + ["D"] = "The last cauldron that remains is located on a farm now called Gahrron\'s Withering. It is guarded by some of the Scourge\'s tougher minions - specifically, wraiths and ghosts. They are not to be trifled with, $N.$B$BGahrron\'s Withering is due northeast of our position here, close to where the Eastern Plaguelands begin; again, eliminate the cauldron lord present there for its key. Here is your empty sample bottle; bring it to me filled. May the Light protect you in this dangerous mission, $c.", + ["O"] = "Go to Gahrron\'s Withering in Western Plaguelands to locate and defeat the Cauldron Lord present there, and use its key to gain access to the cauldron. You must have the Empty Gahrron\'s Withering Bottle with you to secure a sample of the poisons used inside the cauldron.", + ["T"] = "Target: Gahrron\'s Withering", + }, + [5226] = { + ["D"] = "You carefully close the spigot in the control panel, watching the cauldron\'s putrid ichors drip into the empty bottle.$B$BWith the poison in hand, it is time to return to High Priestess MacDonnell at Chillwind Camp to complete the mission.", + ["O"] = "Bring the Filled Gahrron\'s Withering Bottle to High Priestess MacDonnell at Chillwind Camp, Western Plaguelands.", + ["T"] = "Return to Chillwind Camp", + }, + [5227] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Gahrron\'s Withering Cauldron", + }, + [5228] = { + ["D"] = "Within the lands of former Lordaeron are eight cauldrons - four in the west, and four more entrenched in the east. These cauldrons spew poisons into the air, propagating the plague throughout the land for the Scourge.$B$BThe necromantic might of Kel\'Thuzad is too strong to outright shut down these cauldrons, but we think we might have a way to subvert them to our advantage. My second, Shadow Priestess Vandis, will be your point on this assignment; she\'ll continue the briefing from here.", + ["O"] = "Speak with Shadow Priestess Vandis at the Bulwark, Western Plaguelands.", + ["T"] = "The Scourge Cauldrons", + }, + [5229] = { + ["D"] = "Of the four cauldrons in the Western Plaguelands, the one at Felstone Field may be the easiest one to gain access to. The Scourge have greener troops positioned here, though they should not be underestimated.$B$BGo to Felstone Field, due east of here and northwest of Andorhal, and engage the cauldron lord there. On it is a key that will unlock access to the cauldron. When unlocked, use this bottle to get a sample of the cauldron\'s toxins; we\'ll need it for study in developing a counter agent.", + ["O"] = "Go to Felstone Field in Western Plaguelands to locate and defeat the Cauldron Lord present there. It may have a key that will allow access to the cauldron. You must have the Empty Felstone Field Bottle with you to secure a sample of the poisons used inside the cauldron.", + ["T"] = "Target: Felstone Field", + }, + [5230] = { + ["D"] = "You fill the bottle with enough of the cauldron\'s poisonous concoction for a suitable sample to be studied.$B$BWith the poison in hand, it is time to return to Shadow Priestess Vandis at the Bulwark to complete the mission.", + ["O"] = "Bring the Filled Felstone Field Bottle to Shadow Priestess Vandis at the Bulwark, Western Plaguelands.", + ["T"] = "Return to the Bulwark", + }, + [5231] = { + ["D"] = "One of the plague cauldrons is located in the field of a former farmhouse now referred to as Dalson\'s Tears. No tears will be shed this day, $c; we must strike at this cauldron and gain access to it!$B$BGo to Dalson\'s Tears, almost due north of Andorhal, and eliminate the cauldron lord there. It should have a key like the last one did, allowing you inside the cauldron\'s innards. Use this bottle to obtain a sample from inside the cauldron; each cauldron has its own distinct brew of toxins it uses.", + ["O"] = "Go to Dalson\'s Tears in Western Plaguelands to locate and defeat the Cauldron Lord present there, and use its key to gain access to the cauldron. You must have the Empty Dalson\'s Tears Bottle with you to secure a sample of the poisons used inside the cauldron.", + ["T"] = "Target: Dalson\'s Tears", + }, + [5232] = { + ["D"] = "You carefully fill the bottle with enough of the cauldron\'s ichors for what you consider to be suitably sized sample.$B$BWith the poison in hand, it is time to return to Shadow Priestess Vandis at the Bulwark to complete the mission.", + ["O"] = "Bring the Filled Dalson\'s Tears Bottle to Shadow Priestess Vandis at the Bulwark, Western Plaguelands.", + ["T"] = "Return to the Bulwark", + }, + [5233] = { + ["D"] = "Two cauldrons have been successfully opened; while you\'ll be able to access them indefinitely, we still want to open up the other two that remain. This will provide all of us with more options to introduce the counter agent!$B$BThis time, you\'ll be hitting the Writhing Haunt\'s cauldron. It is almost due east of Andorhal, relatively close to the ruined city walls; again, eliminate the cauldron lord present there for its key. Use this bottle to obtain the sample from the cauldron.$B$BGood hunting, $N!", + ["O"] = "Go to the Writhing Haunt in Western Plaguelands to locate and defeat the Cauldron Lord present there, and use its key to gain access to the cauldron. You must have the Empty Writhing Haunt Bottle with you to secure a sample of the poisons used inside the cauldron.", + ["T"] = "Target: Writhing Haunt", + }, + [5234] = { + ["D"] = "You delicately top off the empty bottle; a sample of the foul substance that churns under the platform of the cauldron now oozes back and forth inside the fragile glass container.$B$BWith the poison in hand, it is time to return to Shadow Priestess Vandis at the Bulwark to complete the mission.", + ["O"] = "Bring the Filled Writhing Haunt Bottle to Shadow Priestess Vandis at The Bulwark, Western Plaguelands.", + ["T"] = "Return to the Bulwark", + }, + [5235] = { + ["D"] = "The last cauldron that remains is located on a farm now called Gahrron\'s Withering. It is guarded by some of the Scourge\'s tougher minions - specifically, wraiths and ghosts. They are not to be trifled with, $N.$B$BGahrron\'s Withering is far to the east of the Bulwark, close to where the Eastern Plaguelands begin; again, eliminate the cauldron lord present there for its key. Here is your empty sample bottle; bring it to me filled. May the shadows cloak you in safety for this dangerous mission, $c.", + ["O"] = "Go to Gahrron\'s Withering in Western Plaguelands to locate and defeat the Cauldron Lord present there, and use its key to gain access to the cauldron. You must have the Empty Gahrron\'s Withering Bottle with you to secure a sample of the poisons used inside the cauldron.", + ["T"] = "Target: Gahrron\'s Withering", + }, + [5236] = { + ["D"] = "You carefully close the spigot in the control panel, watching the cauldron\'s putrid ichors drip into the empty bottle.$B$BWith the poison in hand, it is time to return to Shadow Priestess Vandis at the Bulwark to complete the mission.", + ["O"] = "Bring the Filled Gahrron\'s Withering Bottle to Shadow Priestess Vandis at the Bulwark, Western Plaguelands.", + ["T"] = "Return to the Bulwark", + }, + [5237] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Mission Accomplished!", + }, + [5238] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Mission Accomplished!", + }, + [5241] = { + ["D"] = "Sometimes, when it\'s nighttime, I can hear my Uncle Carlin crying. It sounds like he\'s far away, to the east.$B$BI hope he\'s not crying for me! $N, will you find my uncle and tell him I\'m alright?$B$BIf you find him say I\'m waiting for him, and I want to hear the story he used to tell... the one about the rabbits and the berry jam! That story\'s so funny!", + ["O"] = "Find Carlin Redpath.", + ["T"] = "Uncle Carlin", + }, + [5242] = { + ["D"] = "Unfortunately, I see the only way to stop this threat to Felwood is a frontal attack. There are no other ways into Shadow Hold, and I have no means to teleport you inside. The straight path down to the bottom is the only way... and I also know who you should seek out. His name is Fel\'dan... Shadow Lord Fel\'dan. He is the mortal in power down below... he is the head of the serpent. Kill him and his two succubus servants and return to me. Fel\'dan is the one making pacts with the Legion. He must be stopped.", + ["O"] = "Kill Moora and Salia, and bring Shadow Lord Fel\'dan\'s Head to Greta Mosshoof in Felwood.", + ["T"] = "A Final Blow", + }, + [5243] = { + ["D"] = "I look at my undeath as a malady, $r. An illness that merely requires treatment; however, it is also a great blessing for the Argent Dawn. What better vessel to smite the heathens of the Scourge than through the undead?$B$BI am revered by my colleagues because of the sacrifices I have made, but the accolades mean nothing to me.$B$BIf you are interested in assisting the Argent Dawn, then a job I can offer.$B$BVenture to Stratholme and recover our surplus of holy water. Search the supply crates.", + ["O"] = "Travel to Stratholme, in the north. Search the supply crates that litter the city and recover 5 Stratholme Holy Water. Return to Leonid Barthalomew the Revered when you have collected enough of the blessed fluid.", + ["T"] = "Houses of the Holy", + }, + [5244] = { + ["D"] = "The story behind Kel\'Theril is one of a cursed race, bound to the place where they attempted an unfortunate ritual...$B$BThe highborne that you will find there once stole a sacred artifact, believing that they could siphon its power for themselves, becoming even more powerful. In their efforts, the relic shattered in a huge explosion, driving the pieces below the ice of the lake...$B$BSpeak with Jaron Stoneshaper if you\'d like to learn more; he has recently visited the area and can tell you more.", + ["O"] = "Speak with Jaron Stoneshaper in Starfall Village.", + ["T"] = "The Ruins of Kel\'Theril", + }, + [5245] = { + ["D"] = "The highborne spirits are miserable creatures, that\'s for sure. They are still searching for pieces of the very thing that has cursed them to Kel\'Theril forever -- the stolen relic.$B$BIf you are that interested, take my pick and go south to the lake, see if you can gather the pieces of it from within the ice.$B$BNow, I can\'t tell you a thing about what you find, but I do know of someone who might... Aurora Skycaller; she dwells near the Northpass Tower in the northern part of Eastern Plaguelands.", + ["O"] = "Use Jaron\'s Pick to find the four Highborne Relic Fragments. Bring them to Aurora Skycaller in Eastern Plaguelands.", + ["T"] = "Troubled Spirits of Kel\'Theril", + }, + [5246] = { + ["D"] = "I did not realize... Forgive my callous words, $c.$B$BThe mistakes of my ancestors are not what I wish to dwell on, but if your request is truly genuine, then I will help you.$B$B$B$BI believe this is the Crystal of Zin-Malor, an artifact that can contain and control strong arcane forces. It could have been used for good, but the evil intentions of those that stole it caused it to shatter.$B$BGo to the Temple of Zin-Malor in Azshara - I can only hope the book is still there.", + ["O"] = "Find the Sacred Highborne Writings in the Temple of Zin-Malor in Azshara, and bring them to Aurora Skycaller near the Northpass Tower in Eastern Plaguelands.", + ["T"] = "Fragments of the Past", + }, + [5247] = { + ["D"] = "I will be able to help you, if recreating the artifact is truly what you wish to do.$B$BTo seal the pieces back together, I will need items with strong magical qualities. An enchanted thorium bar and five crystal restore... You\'ll also need to collect some water from what might seem an unlikely place... Find the dire pool along Eldreth Row at Dire Maul in Feralas, and fill this vial.$B$BWhile you are gone, I will attempt to glean from these pages the knowledge I need to repair the damage done to the relic.", + ["O"] = "Bring an Enchanted Thorium Bar, 5 Crystal Restore, and a Vial of Dire Water to Aurora Skycaller near the Northpass Tower in Eastern Plaguelands.", + ["T"] = "Fragments of the Past", + }, + [5248] = { + ["D"] = "$N, I weep for what has happened in the past. Like this crystal, the elves, as a race, have been shattered. I do not know if the pieces will ever again be reunited into one, but my sorrow has been eased by being able to help you with this one small task. $B$BWe must not forget the past, $N...$B$BPlease take the Crystal of Zin-Malor back to Lake Kel\'Theril. You must find a highborne spirit that realizes the error of what was done so long ago. Show the spirit that we have made things right again.", + ["O"] = "Take the Crystal of Zin-Malor to Lake Kel\'Theril in Winterspring and find a highborne spirit that will speak to you.", + ["T"] = "Tormented By the Past", + }, + [5249] = { + ["D"] = "In Winterspring, to the north of here, there are many ancient elven ruins. It\'s a harsh land, but it holds many secrets and places to explore.$B$BWith all my work to do here in Felwood, I have not had the opportunity to travel to Winterspring. But there\'s no reason why you shouldn\'t!$B$BWhile you\'re there, look for Wynd Nightchaser. He spends most of his time in Starfall Village and he knows a lot about the area.", + ["O"] = "Find Starfall Village in Winterspring and speak with Wynd Nightchaser.", + ["T"] = "To Winterspring!", + }, + [5250] = { + ["D"] = "In Winterspring, to the north of Felwood, there are many ancient elven ruins. It\'s a harsh land, but it holds many secrets and places to explore.$B$BMy studies here keep me so busy that I have not had the opportunity to travel to Winterspring for some time. But there\'s no reason why you shouldn\'t travel there and study the ruins.$B$BWhile you\'re there, look for Wynd Nightchaser. He spends most of his time in Starfall and he knows a lot about the area.$B$BTell him that you are a student of mine...", + ["O"] = "Find Starfall in Winterspring and speak with Wynd Nightchaser.", + ["T"] = "Starfall", + }, + [5251] = { + ["D"] = "Anything taken to an extreme is hazardous to our world, $N. Take for example, the Scarlet Crusade. Do you believe that their blind zealotry serves a greater good? How many innocents have they destroyed in the name of the Light?$B$BBlasphemers, one and all!$B$BOne in particular interests me, though; the Archivist Galford of Stratholme: A man that watches over the Crusade\'s most valued documents. Destroy him and burn down his archives! Should you succeed, return to me and be rewarded.", + ["O"] = "Travel to Stratholme and find Archivist Galford of the Scarlet Crusade. Destroy him and burn down the Scarlet Archive.", + ["T"] = "The Archivist", + }, + [5252] = { + ["D"] = "The... the crystal...$B$BThe highborne here are clouded by their own misssery...$B$BI am sorrrrrowful, but I realize the errorrrr of what happened so long ago. Even though there is no waaaay to change the past, I am now at peacccce knowing that you have recovered the crystal of Zin-Malor...$B$BYouuu must return it...$B$BIt muuuussst be returrrned.", + ["O"] = "Speak with Wynd Nightchaser in Starfall Village, and ask about the proper place for the Crystal of Zin-Malor.", + ["T"] = "Remorseful Highborne", + }, + [5253] = { + ["D"] = "Quite impressive, $N.$B$BThe crystal of Zin-Malor can never be returned to the temple which, as you know, lies in ruin. But I believe that your effort to undo the evil of the past should not go unrewarded.$B$BSeek out Arch Druid Fandral Staghelm in Darnassus, and bring the crystal to him, $N. It should be in the hands of those that will not abuse its power. From the looks of it, only a handful of the strongest magic users would be able to control such a power. ", + ["O"] = "Deliver the Crystal of Zin-Malor to Arch Druid Fandral Staghelm in Darnassus.", + ["T"] = "The Crystal of Zin-Malor", + }, + [5261] = { + ["D"] = "Eagan Peltskinner is looking for someone to hunt wolves for him. That\'s good news, because we\'re seeing a lot more wolves in Northshire Valley lately.$B$BIf you\'re interested then speak with Eagan. He\'s around the side of the abbey, to the left.", + ["O"] = "Speak with Eagan Peltskinner.", + ["T"] = "Eagan Peltskinner", + }, + [5262] = { + ["D"] = "You try and gather your thoughts as the dust settles across the chamber. You go over the events that just transpired and still cannot comprehend the gravity of the situation.$B$BThe Grand Crusader of the Scarlet Crusade a demon? And not just any demon but brother to Varimathras, arch lord of the Undercity?$B$BYou carefully stow the severed head of the dreadlord into your pack. Surely, none would believe the tale you would tell without proof.$B$BDuke Nicholas Zverenhoff must be told at once!", + ["O"] = "Take the Head of Balnazzar to Duke Nicholas Zverenhoff in the Eastern Plaguelands.", + ["T"] = "The Truth Comes Crashing Down", + }, + [5263] = { + ["D"] = "You display a natural aptitude for destruction and you follow orders. It is rare to see the two coexist. I am beginning to think that you may make an excellent vehicle of divine justice.$B$B$B$BKel\'Thuzad\'s errand boy rules over Stratholme. Prove to me that you are a champion - my champion. Destroy Baron Rivendare and return to me with his head. ", + ["O"] = "Venture to Stratholme and destroy Baron Rivendare. Take his head and return to Duke Nicholas Zverenhoff.", + ["T"] = "Above and Beyond", + }, + [5264] = { + ["D"] = "I am about to bestow a great honor upon you, $N.$B$BLord Maxwell wishes to reward you for your service to the Argent Dawn!$B$BIt has been years since Maxwell has granted audience to outsiders.", + ["O"] = "Speak with Lord Maxwell Tyrosus. He is inside the church.", + ["T"] = "Lord Maxwell Tyrosus", + }, + [5265] = { + ["D"] = "Through the years the Argent Hold has remained locked. None have been worthy to reach inside and take from it the power of the Argent Dawn - until today.$B$BThe Argent Hold is now open to you, $N.", + ["O"] = "Open the Argent Hold and claim your reward.", + ["T"] = "The Argent Hold", + }, + [5281] = { + ["D"] = "There are those that died tragically in the fall of Stratholme. Many took their own lives, opting to hurl themselves into the myriad flames of the smoldering city rather than become one of the Scourge.$B$BThey now walk the streets of Stratholme as restless spirits.$B$BWe must aid them, $N!$B$BI have an associate named Egan who has been doing miraculous work with ghosts and souls. Seek him out. He walks the eastern Plaguelands, near Stratholme, testing his innovations.", + ["O"] = "Find Egan. You only know that he was last seen around Stratholme.", + ["T"] = "The Restless Souls", + }, + [5282] = { + ["D"] = "I draw my power - my will to continue living and breathing - from the unmitigated hatred I have for the Scourge and all that they have done. I am, however, no zealot. There are those, like the Scarlet Crusade, who would sooner destroy the innocent undead than lend them even an ounce of compassion.$B$BWhich brings me to this: My blaster. It will unchain the tortured souls from Stratholme.$B$BUse it on the ghosts that haunt the ransacked streets. Free their souls.", + ["O"] = "Use Egan\'s Blaster on the ghostly and spectral citizens of Stratholme. When the restless souls break free from their ghostly shells, use the blaster again - freedom will be theirs!$B$BFree 15 Restless Souls and return to Egan.", + ["T"] = "The Restless Souls", + }, + [5283] = { + ["D"] = "So ye made the smart decision.$B$BThere ain\'t no love lost betwixt me an old Ironus here. That good for nothing toy maker knows who the true craftsmen round here be.$B$BThe truly great wars are won with a good defense. When it be go time, no offense is gonna be helping ye out.$B$BRight, so let\'s get to work. All ye need to do is show me that ye\'ve got some raw talent. After that, I\'ll yank whatever impurities be left in ye and mold ye into an armorsmith. Ye do know how to make ornate mithril, don\'t ye?", + ["O"] = "To become an Armorsmith, you must make the following items and return them to Grumnus: 4 Ornate Mithril Helms, 2 Ornate Mithril Boots, 1 Ornate Mithril Breastplate.", + ["T"] = "The Art of the Armorsmith", + }, + [5284] = { + ["D"] = "As a weaponsmith you\'ll find that more often than not, heroes and adventurers will be coming to you for gear. While the workload can be unbearable at times, the riches more than make up for the back strain and ash lung.$B$BOh yes, $N, weaponsmiths are the ones with all the gold!$B$BIf you wish to join our ranks, you\'ll need to show me that you can make me a silver or two - I mean, show me that you\'ve got what it takes to be the go to $g guy:girl; when people need superior quality weapons. Get to work!", + ["O"] = "To become a Weaponsmith, you must make the following items and return them to Ironus: 4 Moonsteel Broadswords, 4 Massive Iron Axes, 2 Heavy Mithril Axes, and 2 Big Black Maces.", + ["T"] = "The Way of the Weaponsmith", + }, + [5301] = { + ["D"] = "Satisfaction. It is what I draw from the hammer and the anvil. To see a proud Horde warrior protected under my steel reminds me of what it is to be alive. It is an addiction that I dare never give up, $N.$B$BI can not grant you this satisfaction, merely set you upon the path. As with all of life\'s endeavors, the path of the armorsmith is a journey.$B$BIf you wish to be one of the select few, you need only to ask and I shall train, but, a task you must first complete.", + ["O"] = "To become an armorsmith, you must make the following items and return them to Okothos: 4 Ornate Mithril Helms, 2 Ornate Mithril Boots, 1 Ornate Mithril Breastplate.", + ["T"] = "The Art of the Armorsmith", + }, + [5302] = { + ["D"] = "One day, I will create a legendary hammer. A hammer fit for a Warchief!$B$BIt is my life\'s work, $N. My passion. I recognize that you have the potential to be among us, one of us - a weaponsmith. I am the one that can help you harness that potential.$B$BA simple task is all that you must complete. Simple for one of your exceptional skill. ", + ["O"] = "To become a Weaponsmith, you must make the following items and return them to Borgosh: 4 Moonsteel Broadswords, 4 Massive Iron Axes, 2 Heavy Mithril Axes, and 2 Big Black Maces.", + ["T"] = "The Way of the Weaponsmith", + }, + [5305] = { + ["D"] = "Within the confines of the Scarlet Bastion lies sweet Serenity. The Crimson Hammersmith guards the recipe with his life. Defeat him and bring me his apron. For that, I shall train you to become a hammersmith.$B$BUnderstand this: Once you have chosen the path of the hammersmith, the paths of the swordsmith and axesmith will no longer be available.", + ["O"] = "Travel to Stratholme and kill the Crimson Hammersmith. Recover the Crimson Hammersmith\'s Apron and return to Lilith.", + ["T"] = "Sweet Serenity", + }, + [5306] = { + ["D"] = "Don\'t let her beauty fool you, $c. The shadow huntress, Vosh\'gajin is deadly and deranged.$B$B$B$BAye, she gave me that - a love tap, she called it.$B$BThe time for vengeance has finally come.$B$BYou can find Vosh\'gajin in Blackrock Spire. Slay her and return to me with her snakestone. Do this and I will teach you the ways of the axesmith.", + ["O"] = "Travel to Blackrock Spire and slay Shadow Hunter Vosh\'gajin. Recover Vosh\'gajin\'s Snakestone and return to Kilram.", + ["T"] = "Snakestone of the Shadow Huntress", + }, + [5307] = { + ["D"] = "If I am short with you, it is for a reason. The plans for the creation of the great blade, Corruption, have been stolen by the Black Guard: Elite skeletal units of Baron Rivendare.$B$BYes, Baron Rivendare of Stratholme.$B$BThe Black Guard swordsmith now guards those plans with his... undeath.$B$BSlay him and return proof of this deed and I shall train you in the ways of the swordsmith.", + ["O"] = "Find the Black Guard Swordsmith in Stratholme and destroy him. Recover the Insignia of the Black Guard and return to Seril Scourgebane.", + ["T"] = "Corruption", + }, + [5321] = { + ["D"] = "I was on my way to Maestra\'s Post to meet Liladris Moonriver, but I decided to stop here and take a short nap. Ever since I awoke from the emerald dream, I have been so sleepy...$B$B$B$BWould you mind showing me the way? I understand that Maestra\'s Post is south of here, along the road in Ashenvale. It can be dangerous, so I hope you have some friends that will join us.$B$BLastly, I may fall asleep so if you ever need to wake me, please use my horn. You\'ll find it in the chest here.", + ["O"] = "Escort Kerlonian Evershade to Liladris Moonriver at Maestra\'s Post in Ashenvale.", + ["T"] = "The Sleeper Has Awakened", + }, + [5341] = { + ["D"] = "Within the Scholomance lays the Barov family fortune. I, Alexi Barov, am one of the last two remaining heirs of the house Barov. My brother, Weldon, is the other.$B$BWeldon, the miserable coward, fled during the war and thus retained his worthless existence as a human.$B$BHe now searches for the deeds so that he may claim the fortune for his own. Recover the deeds before my brother does and I shall make you wealthy beyond your wildest dreams!", + ["O"] = "Venture to the Scholomance and recover the Barov family fortune. Four deeds make up this fortune: The Deed to Caer Darrow; The Deed to Brill; The Deed to Tarren Mill; and The Deed to Southshore. Return to Alexi Barov when you have completed this task.", + ["T"] = "Barov Family Fortune", + }, + [5342] = { + ["D"] = "Naturally, with my brother still alive, there may be some contention as to the primary beneficiary of the family\'s fortune. This cannot be.$B$BA low down guttersnipe like you isn\'t above a little cold-blooded murder, I hope.$B$BIt\'s a simple task and one that I expect you will complete; that is, if you wish to claim your reward.$B$BWeldon sits under Alliance protection at Chillwind Camp, to the east. Slay him, return his head.$B$B$B$BHurry along now.", + ["O"] = "Travel to Chillwind Camp - Alliance territory - and assassinate Weldon Barov. Take his head and return to Alexi Barov.$B$BBe warned, Weldon will probably be well protected by Alliance scum.", + ["T"] = "The Last Barov", + }, + [5343] = { + ["D"] = "My dear brother Alexi. What a fool I was to spare his life. I looked into the face of the enemy, one of the undead, and let him live.$B$B$B$BHe now searches for MY inheritance. This simply cannot happen.$B$BFind my family\'s deeds before that vile retch gets his boney hands upon them and I shall reward you with vast riches. They lay in the ruins of the Scholomance. Make haste!", + ["O"] = "Venture to the Scholomance and recover the Barov family fortune. Four deeds make up this fortune: The Deed to Caer Darrow; The Deed to Brill; The Deed to Tarren Mill; and The Deed to Southshore. Return to Weldon Barov when you have completed this task.", + ["T"] = "Barov Family Fortune", + }, + [5344] = { + ["D"] = "With the deeds recovered, there is but one thing left to do. Alexi must be killed. With him dead, I need not ever worry about an unscrupulous gang of mercenaries seeking my head.$B$BIt\'s a simple task. Alexi hides under the protection of the Horde - at the Bulwark.$B$BNo, I do not expect you to just walk up and kill him, I want his head! How you get it... well, that part is up to you. That type of behavior is below one of my noble upbringing.", + ["O"] = "Travel to the Bulwark - Horde territory - and assassinate Alexi Barov. Take his head and return to Weldon Barov.$B$BBe warned, Alexi will probably be well protected by Horde filth.", + ["T"] = "The Last Barov", + }, + [5361] = { + ["D"] = "My brother Nataka is stationed at Ghost Walker Post over in Desolace. I\'d like to ask you... could you give this report to him for me? A year has passed since the last time I wrote, there has been unusual centaur activity since then and he should be informed.$B$BJourney to Stonetalon Mountain north of the Crossroads, and then head west into Charred Vale. From there, head south into Desolace; there you will find a road going south to Ghost Walker Post.", + ["O"] = "Deliver Cliffwatcher Longhorn Report to Nataka Longhorn at Ghost Walker Post in Desolace.", + ["T"] = "Family Tree", + }, + [5381] = { + ["D"] = "The Burning Blade possesses the Demon Box. Within it lies the powerful Hand of Iruxos. The Burning Blade uses it to open demonic portals at Mannoroc Coven. We must stop the tide of demons entering our world, $n!$B$BUse this demon pick on the red crystal in Thunder Axe Fortress to gain access to the Demon Box.", + ["O"] = "Retrieve the Demon Box from Thunder Axe Fortress, and return it, along with the Demon Pick to Taiga Wisemane in Shadowprey Village.", + ["T"] = "Hand of Iruxos", + }, + [5382] = { + ["D"] = "Krastinov is responsible for the deaths of thousands. He must be punished, justice must be meted out.$B$BFind him and exact upon him the agony he has inflicted upon countless innocents. Once he is destroyed, burn our remains. Turn them to ashes, $N.", + ["O"] = "Find Doctor Theolen Krastinov inside the Scholomance. Destroy him, then burn the Remains of Eva Sarkhoff and the Remains of Lucien Sarkhoff. Return to Eva Sarkhoff when the task is complete.", + ["T"] = "Doctor Theolen Krastinov, the Butcher", + }, + [5383] = { + ["D"] = "You open the bag to discover various instruments of torture. Amidst the paraphernalia, an odd object catches your eye: A vial of blood - still warm to the touch.$B$BYou think that the Sarkhoff\'s might be interested in your discovery.", + ["O"] = "Take the Bag of Horrors to Eva Sarkhoff on Caer Darrow.", + ["T"] = "Krastinov\'s Bag of Horrors", + }, + [5384] = { + ["D"] = "This is it, $N.$B$B$B$BThe blood of innocents. The purest blood, used to appease Krastinov\'s master.$B$BIt is with this blood that Kirtonos may be summoned. It is with this blood, then, that Kirtonos must be destroyed.$B$BTake the blood to the porch. Place it upon the brazier. Kirtonos will come - he cannot resist. When he appears, unleash the fury and wrath of a thousand innocent deaths upon him.$B$BShould you succeed, you will earn more than just our gratitude.", + ["O"] = "Return to the Scholomance with the Blood of Innocents. Find the porch and place the Blood of Innocents in the brazier. Kirtonos will come to feast upon your soul.$B$BFight valiantly, do not give an inch! Destroy Kirtonos and return to Eva Sarkhoff.", + ["T"] = "Kirtonos the Herald", + }, + [5385] = { + ["D"] = "You pick up the sack carefully and prepare to make your way back to Jessir Moonbow on the border of Felwood and Ashenvale. Hopefully the paladin will be given the proper respects once you\'ve passed his remains on to his friends.", + ["O"] = "Return the Remains of Trey Lightforge to Jessir Moonbow in Felwood.", + ["T"] = "The Remains of Trey Lightforge", + }, + [5386] = { + ["D"] = "The smell of cooked fish has long been missing here at Ghost Walker Post. The trolls at Shadowprey Village are the best at catching fish... but alas, with all the centaur activities I have little time to make a journey to the trolls. Hrm...$B$BDo me a favor and journey to Shadowprey Village. Talk to the local fisherman Jinar\'Zillen and bring me back my favorite, Bloodbelly fish. The road south of here will take you west to the troll village.", + ["O"] = "Talk to Jinar\'Zillen at Shadowprey Village, and then bring Nataka Longhorn 2 Bloodbelly fish.", + ["T"] = "Catch of the Day", + }, + [5401] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Argent Dawn Commission", + }, + [5402] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Minion\'s Scourgestones", + }, + [5403] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Invader\'s Scourgestones", + }, + [5404] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Corruptor\'s Scourgestones", + }, + [5405] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Argent Dawn Commission", + }, + [5406] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Corruptor\'s Scourgestones", + }, + [5407] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Invader\'s Scourgestones", + }, + [5408] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Minion\'s Scourgestones", + }, + [5421] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Fish in a Bucket", + }, + [5441] = { + ["D"] = "Cursed peons! They work hard gathering lumber from the trees of the valley, but they\'re always taking naps! I need someone to help keep the peons in line.$B$BYou look like the right $r for my task. Here, you take this blackjack and use it on any lazy peons you find sleeping on the job. A good smack will get them right back to work! Return the blackjack when you\'re done.$B$BLousy slacking peons...", + ["O"] = "Use the Foreman\'s Blackjack on Lazy Peons when they\'re sleeping. Wake up 5 peons, then return the Foreman\'s Blackjack to Foreman Thazz\'ril in the Valley of Trials.", + ["T"] = "Lazy Peons", + }, + [5461] = { + ["D"] = "The undead fear life just as the living fear death. It is not unusual for a sentient undead being to completely destroy all remnants of his or her previous life after having turned.$B$BUnfortunately, in order to create an artifact capable of reverting Ras Frostwhisper to a mortal, we must have a keepsake from his years among the living.$B$BYou must venture to the ruined city of Stromgarde, Frostwhisper\'s home, and search for such an item. May luck be with you, $N.", + ["O"] = "Travel to the Arathi Highlands, to the ruins of Stromgarde. Search Stromgarde for a Keepsake of Remembrance. If you find such an item, return with it to Magistrate Marduke.", + ["T"] = "The Human, Ras Frostwhisper", + }, + [5462] = { + ["D"] = "Upon tainted soil, the keepsake must be attuned.$B$BIt is rumored that Stratholme is where Frostwhisper succumbed to the Lich King. Upon those bloodied grounds he gave his life - freely and with motive - to become one of the undying.$B$BIt is those grounds that must be found.$B$BThere is one, an undead dissenter of the Scourge, freed by the Banshee Queen but loyal to the cause of the Argent Dawn. Find him: Leonid Barthalomew the Revered. He may know more. Seek out Light\'s Hope, $N. ", + ["O"] = "Travel to Light\'s Hope in Eastern Plaguelands and seek out Leonid Barthalomew the Revered. Show him the Keepsake of Remembrance and tell him all that you have discovered.", + ["T"] = "The Dying, Ras Frostwhisper", + }, + [5463] = { + ["D"] = "I watched as the human, Ras Frostwhisper, pledged his undying soul to the Lich King. He drew the dagger to his own throat and with a smile, cut from ear to ear. His body collapsed inside the borders of the pentagram. The Lich King stood over the fallen mage and with a single motion, Ras Frostwhisper the lich, was born.$B$B$B$BYes, $r, I remember. What you seek has a name - Menethil\'s Gift: The ground blessed by the Lich King - holy ground to Scourge.", + ["O"] = "Travel to Stratholme and find Menethil\'s Gift. Place the Keepsake of Remembrance upon the unholy ground. ", + ["T"] = "Menethil\'s Gift", + }, + [5464] = { + ["D"] = "The soul of the fallen clings to that which represents its former life and transforms the item into a soulbound keepsake. You pick the item up and place it in your pack.", + ["O"] = "Take the Soulbound Keepsake to Leonid Barthalomew in Eastern Plaguelands.", + ["T"] = "Menethil\'s Gift", + }, + [5465] = { + ["D"] = "Return to Marduke with the keepsake, $N. He will instruct you in its use.", + ["O"] = "Return to Magistrate Marduke in Caer Darrow. Show him the Soulbound Keepsake.", + ["T"] = "Soulbound Keepsake", + }, + [5466] = { + ["D"] = "There is but one task remaining, $N. Confront the lich, Ras Frostwhisper, in his lair.$B$BUse the power of the keepsake against the beast - be unrelenting in your actions! Weather the blows that the flailing beast will surely bring down upon you. Do not give in to the pain!$B$BWhen the ritual is complete, Ras will be mortal once more. It is at that point that he must be slain. Strike him down and take his human head.", + ["O"] = "Find Ras Frostwhisper in the Scholomance. When you have found him, use the Soulbound Keepsake on his undead visage. Should you succeed in reverting him to a mortal, strike him down and recover the Human Head of Ras Frostwhisper. Take the head back to Magistrate Marduke.", + ["T"] = "The Lich, Ras Frostwhisper", + }, + [5481] = { + ["D"] = "Master want weeds. Us gots big hands and not good at picking. You help us and we not hurt you. Us need gloom weed. Many weeds around here and near road.$b$bWhen you have gloom weed you take to Master Holland in Brill graveyard.", + ["O"] = "Collect 3 Gloom Weed and deliver them to Junior Apothecary Holland in the Brill graveyard.", + ["T"] = "Gordo\'s Task", + }, + [5482] = { + ["D"] = "So you can see the predicament that I\'m in, $N. That thing is out there collecting the wrong weeds! I\'ll make it worth your while to gather what I need. Bring back to me enough doom weed and I\'ll give you a suitable reward.$B$BIt is my understanding that they like to plague the flora near the mass gravesite, to the north of the Brill graveyard. Hurry and be mindful of the gnolls in the area.", + ["O"] = "Collect 10 Doom Weed and deliver them back to Junior Apothecary Holland.", + ["T"] = "Doom Weed", + }, + [5501] = { + ["D"] = "We\'re sitting on a goldmine here, I tell you - a goldmine! Kodo bones will change the world forever... I have customers making furniture, music instruments, and even blasting powder out of them.$B$BThere\'s a caravan that comes by and picks up my kodo bones and then sells them at Shadowprey Village. If you can travel to the kodo graveyard south of here and bring me ten kodo bones, I\'ll give you something in return. Is it a deal?", + ["O"] = "Bring 10 Kodo Bones from the Kodo Graveyard to Bibbly F\'utzbuckle at Kormek\'s Hut.", + ["T"] = "Bone Collector", + }, + [5502] = { + ["D"] = "You have been so very kind to me, $N. I never dreamed that I\'d have so much fun during Children\'s Week. Thank you. I won\'t be sad about what\'s happened to me - my parents always told me to rise above anything bad that happens. I\'ll be a hero... just like you.$B$BI\'m sad to say this, but it\'s time for me to go home. Let\'s go back and I\'ll tell the matron what an awesome person you are!", + ["O"] = "Return your ward to the Orgrimmar orphanage by handing in the Orcish Orphan Whistle to Orphan Matron Battlewail in the Valley of Honor.", + ["T"] = "A Warden of the Horde", + }, + [5503] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Argent Dawn Commission", + }, + [5504] = { + ["D"] = "Your service to the Argent Dawn is to be commended, $N. You are truly revered amongst us. I have been authorized to make available for you to purchase one of the Dawn\'s most valued items - our magic resistance mantles.$B$BApplication of a mantle to your existing shoulder piece will enhance your resistance to the powers of magic in one of five potential ways. As a sign of continued dedication to our cause, I ask for no less than ten of our valor tokens in exchange for access to these mantles.", + ["O"] = "Bring 10 Argent Dawn Valor Tokens to Quartermaster Hasana at the Bulwark, Western Plaguelands.", + ["T"] = "Mantles of the Dawn", + }, + [5505] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Key to Scholomance", + }, + [5506] = { + ["D"] = "", + ["O"] = "", + ["T"] = "", + }, + [5507] = { + ["D"] = "Your service to the Argent Dawn is to be commended, $N. You are truly revered amongst us. I have been authorized to make available for you to purchase one of the Dawn\'s most valued items - our magic resistance mantles.$B$BApplication of a mantle to your existing shoulder piece will enhance your resistance to the powers of magic in one of five potential ways. As a sign of continued dedication to our cause, I ask for no less than ten of our valor tokens in exchange for access to these mantles.", + ["O"] = "Bring 10 Argent Dawn Valor Tokens to Quartermaster Lightspark at Chillwind Camp, Western Plaguelands.", + ["T"] = "Mantles of the Dawn", + }, + [5508] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Corruptor\'s Scourgestones", + }, + [5509] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Invader\'s Scourgestones", + }, + [5510] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Minion\'s Scourgestones", + }, + [5511] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Key to Scholomance", + }, + [5512] = { + ["D"] = "", + ["O"] = "", + ["T"] = "", + }, + [5513] = { + ["D"] = "Your service to the Argent Dawn is to be commended, $N. You are truly revered amongst us. I have been authorized to make available for you to purchase one of the Dawn\'s most valued items - our magic resistance mantles.$B$BApplication of a mantle to your existing shoulder piece will enhance your resistance to the powers of magic in one of five potential ways. As a sign of continued dedication to our cause, I ask for no less than ten of our valor tokens in exchange for access to these mantles.", + ["O"] = "Bring 10 Argent Dawn Valor Tokens to Quartermaster Breechlock at Light\'s Hope Chapel, Eastern Plaguelands.", + ["T"] = "Mantles of the Dawn", + }, + [5514] = { + ["D"] = "The goblin you will need to speak with is Krinkle Goodsteel. He peddles his skills to the highest bidder in Gadgetzan, within the Tanaris desert. He\'ll likely be the only one who can produce the mold we need, and his services won\'t come cheap. We now ask for you to dig deep by footing whatever fee he will charge.$B$BI\'m an apothecary, not a banker. If I had gold lying around, I certainly wouldn\'t be here.$B$BI guess I said the quiet part out loud again. Oops.$B$BGadgetzan awaits you! Good luck!", + ["O"] = "Bring the Imbued Skeletal Fragments and 15 gold coins to Krinkle Goodsteel in Gadgetzan.", + ["T"] = "Mold Rhymes With...", + }, + [5515] = { + ["D"] = "A great weight has been lifted from our hearts, $N, but your task is not yet complete. Krastinov\'s master, Kirtonos, still lives.$B$BBefore you may face Kirtonos, however, you must first secure a method in which to summon him.$B$BIt is said that Jandice Barov stewards the blood of innocents from Krastinov to Kirtonos.$B$BFind her in the sunken catacombs of Scholomance and strike her down. Bring back any clues that you may find.", + ["O"] = "Locate Jandice Barov in the Scholomance and destroy her. From her corpse recover Krastinov\'s Bag of Horrors. Return the bag to Eva Sarkhoff.", + ["T"] = "Krastinov\'s Bag of Horrors", + }, + [5516] = { + ["D"] = "", + ["O"] = "", + ["T"] = "", + }, + [5517] = { + ["D"] = "$G Brother : Sister; $N - your deeds on behalf of the Argent Dawn are far too numerous to be recounted easily. As a fitting tribute, I\'ll part with one of our special Chromatic Mantles of the Dawn - a version that protects the wearer from all forms of resistible magic simultaneously. Chromatic Mantles of the Dawn are reserved for only the mightiest of the Dawn\'s heroes!$B$BBring to me twenty-five valor tokens as a sign of tribute, and I\'ll give you the finest of all our mantles.", + ["O"] = "Bring 25 Argent Dawn Valor Tokens to Quartermaster Breechlock at Light\'s Hope Chapel, Eastern Plaguelands.", + ["T"] = "Chromatic Mantle of the Dawn", + }, + [5518] = { + ["D"] = "If you\'re going to fight the king of this dump - and I think that\'s what you\'re bound to do - then you\'re going to need to get by Captain Kromcrush. Now, you can get by him by killing him, sure. You might actually want to leave him alive.$B$BHow, you ask? Since I\'ve been here, I think I know how to make an ogre suit that will last just long enough to fool these bozos. The only problem is stability - ten minutes tops. Bring me what I need, and I\'ll make you one. I\'m not going anywhere...", + ["O"] = "Bring 4 Bolts of Runecloth, 8 Rugged Leather, 2 Rune Threads, and Ogre Tannin to Knot Thimblejack. He is currently chained inside the Gordok wing of Dire Maul.", + ["T"] = "The Gordok Ogre Suit", + }, + [5519] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Gordok Ogre Suit", + }, + [5520] = { + ["D"] = "", + ["O"] = "", + ["T"] = "", + }, + [5521] = { + ["D"] = "$G Brother : Sister; $N - your deeds on behalf of the Argent Dawn are far too numerous to be recounted easily. As a fitting tribute, I\'ll part with one of our special Chromatic Mantles of the Dawn - a version that protects the wearer from all forms of resistible magic simultaneously. Chromatic Mantles of the Dawn are reserved for only the mightiest of the Dawn\'s heroes!$B$BBring to me twenty-five valor tokens as a sign of tribute, and I\'ll give you the finest of all our mantles.", + ["O"] = "Bring 25 Argent Dawn Valor Tokens to Quartermaster Lightspark at Chillwind Camp, Western Plaguelands.", + ["T"] = "Chromatic Mantle of the Dawn", + }, + [5522] = { + ["D"] = "I received a message from my master, Vectus. Well, the message wasn\'t really from Vectus...it was from someone named Leonid Barthalomew. I don\'t know Leonid, but he knew my master, and no one knows my master unless he allows it.$B$BLeonid says Vectus wants the dragon eggs. He wants you to deliver them to him at the Light\'s Hope Chapel in the Eastern Plaguelands.$B$BThat hurts! Why you? Doesn\'t Vectus trust me? Oh, never mind... just take the eggs and tell Leonid that I did what our master commanded.", + ["O"] = "Bring the Frozen Eggs to Leonid Barthalomew in the Eastern Plaguelands.", + ["T"] = "Leonid Barthalomew", + }, + [5523] = { + ["D"] = "", + ["O"] = "", + ["T"] = "", + }, + [5524] = { + ["D"] = "$G Brother : Sister; $N - your deeds on behalf of the Argent Dawn are far too numerous to be recounted easily. As a fitting tribute, I\'ll part with one of our special Chromatic Mantles of the Dawn - a version that protects the wearer from all forms of resistible magic simultaneously. Chromatic Mantles of the Dawn are reserved for only the mightiest of the Dawn\'s heroes!$B$BBring to me twenty-five valor tokens as a sign of tribute, and I\'ll give you the finest of all our mantles.", + ["O"] = "Bring 25 Argent Dawn Valor Tokens to Quartermaster Hasana at the Bulwark, Western Plaguelands.", + ["T"] = "Chromatic Mantle of the Dawn", + }, + [5525] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Free Knot!", + }, + [5526] = { + ["D"] = "Your knowledge of Eldre\'Thalas - Dire Maul - in Feralas will now come into play, $N. In the eastern part of the ruined city is where Alzzin the Wildshaper has exerted his corrupt dominion. Go there with all due haste and brave whatever challenges await you.$B$BThe Fruit of Fertility, now corrupted as the Felvine, should be close to Alzzin. When he falls, capture whatever essence of the Felvine you can. Seal it in the Reliquary, and bring it to me.$B$BGood luck, and Cenarion\'s speed.", + ["O"] = "Find the Felvine in Dire Maul and acquire a shard from it. Chances are you\'ll only be able to procure one with the demise of Alzzin the Wildshaper. Use the Reliquary of Purity to securely seal the shard inside, and return it to Rabine Saturna in Nighthaven, Moonglade.", + ["T"] = "Shards of the Felvine", + }, + [5527] = { + ["D"] = "The first step is to find a container capable of holding an extremely corruptible substance without the handler suffering ill effects. There is only one sort device I am aware of that could possibly contain something as vile as the Felvine: a Reliquary of Purity.$B$BDeep in the wasteland of Silithus is the remnants of the night elf village known as Southwind. I know one was there many, many years ago. If we are to succeed, I need you to scour those ruins in the hopes of reclaiming it.", + ["O"] = "Travel to Silithus and search for a Reliquary of Purity within the ruins of Southwind Village. If you are able to find it, return with it to Rabine Saturna in Nighthaven, Moonglade.", + ["T"] = "A Reliquary of Purity", + }, + [5528] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Gordok Taste Test", + }, + [5529] = { + ["D"] = "The Argent Dawn recently learned that the Scourge are creating their own plagued dragonflight! We must stop them -- if the Scourge gain a force of dragons they\'ll sweep across Azeroth unchecked!$B$BTheir necromancers are breeding plagued dragons at the Scholomance, in the middle of Darrowmere Lake.$B$BGo to the Scholomance and kill as many hatchlings as you can... before they get any bigger!", + ["O"] = "Kill 20 Plagued Hatchlings, then return to Betina Bigglezink at the Light\'s Hope Chapel.", + ["T"] = "Plagued Hatchlings", + }, + [5530] = { + ["D"] = "", + ["O"] = "", + ["T"] = " Necklace of the Dawn", + }, + [5531] = { + ["D"] = "The eggs you brought were to be used in Scourge experiments to create a plagued dragonflight. These frozen black dragon eggs would have been invaluable in their studies, and would have assuredly quickened their timetable.$B$BNow, it is time we ended their research.$B$BTake the frozen eggs to Betina Bigglezink outside. She is well-learned in science and alchemy, and has produced a weapon we can use against the Scourge. With your help, we will deal them a heavy blow.", + ["O"] = "Bring the Frozen Eggs to Betina Bigglezink.", + ["T"] = "Betina Bigglezink", + }, + [5532] = { + ["D"] = "", + ["O"] = "", + ["T"] = " Ring of the Dawn", + }, + [5533] = { + ["D"] = "On the island of Caer Darrow lies Scholomance - a wretched center of Scourge necromancy and evil. Our enemy dwells within, conducting unspeakable acts of depravity on unwitting victims... at least, we surmise as much. A door bars the way, and try as we might no entry is to be had without a proper key.$B$BAlchemist Arbington is well versed on Scholomance, and has an idea how to obtain a key. You have proved your worth to me, and now I entrust this task to you. Speak with him on this matter.", + ["O"] = "Speak with Alchemist Arbington at Chillwind Point, Western Plaguelands.", + ["T"] = "Scholomance", + }, + [5534] = { + ["D"] = "What?! What?!$B$BThat wasn\'t good enough for you? You know how expensive those explosives are? They sell for... oh, nevermind. Fine, you want to make some real money? Cause that\'s how business is done: you prove you\'re a valuable employee and then you\'re rewarded adequately after you stick it out some.$B$BIf you\'re a \"valuable\" employee, then hit the Ruins of Eldarath and find me some rune that them Blood elves were lookin\' for. The naga apparently have it in their possession.", + ["O"] = "Find Some Rune that the naga have in their possession in the Ruins of Eldarath and return it to Kim\'jael in Azshara.", + ["T"] = "Kim\'jael\'s \"Missing\" Equipment", + }, + [5535] = { + ["D"] = "Long ago, the Highborne were some of the most powerful students of the arcane the night elves ever produced. The corruption that comes along with such studies caused much harm to night elf society and greatly affected all of Azeroth... as I\'m sure you well know.$B$BI promised the Sentinels that I would release the spirits from their mortal bonds as I find them. If you would do the same, then I am sure I can reward you some.$B$BThe spirits haunt the Shadowsong Shrine to the northeast of here.", + ["O"] = "Destroy 6 Highborne Apparitions and 6 Highborne Lichlings before returning to Loh\'atu in Azshara.", + ["T"] = "Spiritual Unrest", + }, + [5536] = { + ["D"] = "The satyr, a disfigured, evil aspect of the night elves, now infect the sacred lands once traveled by Cenarius. I cannot speak for the night elves when it comes to all the atrocities those demonic creatures have committed, but I have sworn an oath to the Earthmother to aid the elves in ridding the land of such a nuisance.$B$BI am sure you would prove yourself if you aided me in purging them.$B$BNortheast of here, you can find the Haldarr clan. Return to me after you\'ve tested yourself against their power.", + ["O"] = "Kill 6 Haldarr Satyr, 2 Haldarr Tricksters, 2 Haldarr Felsworn and then return to Loh\'atu on the border of Ashenvale.", + ["T"] = "A Land Filled with Hatred", + }, + [5537] = { + ["D"] = "The key to Scholomance is called a Skeleton Key. It must be forged from the remains of a skeleton - several actually - and hardened by only the strongest of metals within a suitable mold. A signet of power from a being who naturally can open the portal to Scholomance will make the key ultimately function.$B$BFirst thing\'s first though, $N. We\'ll need skeletal fragments for the key\'s forging. Skeletons inside Andorhal should yield what we need, but the ones outside the walls might work too.", + ["O"] = "Bring 15 Skeletal Fragments to Alchemist Arbington at Chillwind Point, Western Plaguelands.", + ["T"] = "Skeletal Fragments", + }, + [5538] = { + ["D"] = "The goblin you will need to speak with is Krinkle Goodsteel. He peddles his skills to the highest bidder in Gadgetzan, within the Tanaris desert. He\'ll likely be the only one who can produce the mold we need, and his services won\'t come cheap. We now ask for you to dig deep by footing whatever fee he will charge.$B$BI\'m an alchemist, not a banker. If I had gold lying around, I certainly wouldn\'t be here.$B$BI guess I said the quiet part out loud again. Oops.$B$BGadgetzan awaits you! Good luck!", + ["O"] = "Bring the Imbued Skeletal Fragments and 15 gold coins to Krinkle Goodsteel in Gadgetzan.", + ["T"] = "Mold Rhymes With...", + }, + [5541] = { + ["D"] = "Hegnar Rumbleshot sells guns off the road to Anvilmar. Riflemen and mortar teams spend a lot of time practicing out near his shop, and he\'s always needing fresh ammunition.$B$BBut... the last crate of ammo I sent him got lost along the way. My courier said he was camped near the Grizzled Den when wendigo chased him away... and the fool left Rumbleshot\'s ammo behind!$B$B$N, can you get that ammo and take it to Rumbleshot? He\'s been waiting on it and I\'m sure he\'s running low.", + ["O"] = "Bring Rumbleshot\'s Ammo to Hegnar Rumbleshot in Dun Morogh.", + ["T"] = "Ammo for Rumbleshot", + }, + [5542] = { + ["D"] = "If you are going to remain here, I ask only that you earn your keep. We have many nuisances that could use some \'discipline.\'$B$BYou can start with the Plaguehounds and their runts.$B$BI cannot offer much in return, but you are guaranteed a warm meal and some conversation should you succeed.", + ["O"] = "Slay 20 Plaguehound Runts, 5 Plaguehounds and 5 Frenzied Plaguehounds. Return to Tirion Fordring when the task is complete.", + ["T"] = "Demon Dogs", + }, + [5543] = { + ["D"] = "Woe to those that foolishly wander into the Plaguelands. All manner of foulness inhabit these woods - from the fanatical Scarlet Crusade, who will kill any that do not bear the mark of the Crusade, to the murderous Scourge, who only look to bolster their numbers by adding more undead to their ranks.$B$BEven the wildlife have been transformed into rapacious, man eating beasts. I ask that you destroy those that would strike from the skies: The Plaguebats.", + ["O"] = "Slay 30 Plaguebats and return to Tirion Fordring.", + ["T"] = "Blood Tinged Skies", + }, + [5544] = { + ["D"] = "My food supplies are running low, $r. I am ashamed to admit that I might not have enough food to share with you.$B$BCould you assist an old man with a simple task? Around here, the only manner of beast unaffected by the ravages of the Plague are the Carrion worms. While rather bland in taste, the meat of the worms can easily be preserved to last for months. I will need several hundred pounds to restock for the coming winter!", + ["O"] = "Seek out the Carrion Grubs and Devourers of the region. Slay them and harvest their meat. Return to Tirion Fordring when you have gathered 15 Slabs of Carrion Worm Meat.", + ["T"] = "Carrion Grubbage", + }, + [5545] = { + ["D"] = "I\'ve got a real problem on my hands. I have a deadline looming for an order of lumber, and I\'m running out of time. The wolves and bears north of here have chased my workers away from the bundles of wood that they\'ve already chopped.$B$BI\'ve already talked to Deputy Rainer about clearing the animals, but I need someone to go collect the wood for me. If you could collect eight bundles of wood for me I might just make my deadline.", + ["O"] = "Bring 8 Bundles of Wood to Raelen at the Eastvale Logging Camp.", + ["T"] = "A Bundle of Trouble", + }, + [5561] = { + ["D"] = "Bibbly thinks he is the only goblin in Desolace who knows how to make money. Well, the only caravan brave enough to travel these parts relies on me. Ever since I learned how to rejuvenate and control aged and dying kodos with my kodo kombobulator, the caravan owner Cork, Rigger, and I entered a partnership.$B$BTake the kombobulator and use it on any ancient, aged, or dying kodos; it will jolt the beast into a tamed kodo and force it to follow you. Once you have a kodo tamed, bring it back to me.", + ["O"] = "Bring five Tamed Kodos and the Kodo Kombobulator back to Smeed Scrabblescrew at Scrabblescrew\'s Camp.", + ["T"] = "Kodo Roundup", + }, + [5581] = { + ["D"] = "Behold - the Hand of Iruxos. A gruesome sight indeed.$B$BYou must possess it if the demon portals at Mannoroc Coven are to be banished... which is what I now ask you to do. The Demon threat is increasing and we must close these portals to stem the tide of demons to this world. Good luck, $N... and be wary of the portal guardians.", + ["O"] = "Banish 6 Portals at Mannoroc Coven and return to Taiga Wisemane at Shadowprey Village.", + ["T"] = "Portals of the Legion", + }, + [5582] = { + ["D"] = "This is a scale shed from a plagued dragon hatchling. But unlike the other pocked, oozing scales on the infant beast, this rare scale is healthy and unmarred.$B$BBetina Bigglezink will want a sample of this to study.", + ["O"] = "Bring the Healthy Dragon Scale to Betina Bigglezink at the Light\'s Hope Chapel in Eastern Plaguelands.", + ["T"] = "Healthy Dragon Scale", + }, + [5601] = { + ["D"] = "I fled Lordaeron during the great war, and was lucky to escape before the Scourge swept through my homeland and turned it into a plagued nightmare! I was lucky, but my family was not. I fear they were all killed during the battle of Darrowshire.$B$BDarrowshire is a village in the Eastern Kingdoms, nestled in the southern hills of what is now the Eastern Plaguelands. Will you go there and search for my family? I miss them so much, especially my little sister Pamela.$B$BPlease, find her for me!", + ["O"] = "Find Pamela Redpath in Darrowshire.", + ["T"] = "Sister Pamela", + }, + [5621] = { + ["D"] = "I need your help, $N. I am needed here to train the other students, but you, you can help one of our injured Sentinels just south of Dolanaar. She was hurt patrolling the town and could use our aid. Her name is Shaya.$B$BWhen you find her, heal her wounds, and then fortify her body with your spells. This will at least protect her from harm longer if she finds trouble. Return to me here after you\'ve done your duty to Elune.", + ["O"] = "Find Sentinel Shaya and heal her wounds using Lesser Heal (Rank 2). Afterwards, grant her Power Word: Fortitude and then return to Laurna Morninglight in Dolanaar.", + ["T"] = "Garments of the Moon", + }, + [5622] = { + ["D"] = "$N, you must travel to Dolanaar when your business here in Shadowglen is done. There, you will find Laurna Morninglight. She will instruct you further in the ways of Elune, and it is with her that you will earn your first garments denoting your station as a $gpriest:priestess; of Elune.$B$BTake care, and may you be protected in your journeys.", + ["O"] = "Speak to Laurna Morninglight in Teldrassil.", + ["T"] = "In Favor of Elune", + }, + [5623] = { + ["D"] = "Hello again, young $gpriest:priestess;. The time has come for you to learn more about our religion. After you\'ve completed whatever tasks you have here in Northshire, please seek out Priestess Josetta in Goldshire. She has more to teach you and has heard that you are growing strong in the ways of the Light. She looks forward to tutoring you more.", + ["O"] = "Speak to Priestess Josetta in Elwynn Forest.", + ["T"] = "In Favor of the Light", + }, + [5624] = { + ["D"] = "Normally I put forth a small challenge to followers of the Light to test their skill. I want to see if they are worthy of wearing their first robes--a sign that the church outwardly approves of the $gpriest:priestess; and supports $ghim:her;.$B$BBut this situation is a bit different. One of Goldshire\'s citizens saw an injured guard near the lake to the east of here. His name is Roberts. Find him, heal him, fortify his body and return here. If you can do that for me, then I will consider your test complete.", + ["O"] = "Find Guard Roberts and heal his wounds using Lesser Heal (Rank 2). Afterwards, grant him Power Word: Fortitude and then return to Priestess Josetta in Goldshire.", + ["T"] = "Garments of the Light", + }, + [5625] = { + ["D"] = "It\'s usually about this time that one of your power is tested to see if they\'re worthy of wearing robes denoting their place in the church. But to be honest, I got more pressing matters to look into. Citizen of Kharanos\' just came in here and told me \'bout a hurt mountaineer just outside town to the south--name\'s Dolf.$B$BYou heal Dolf and give him Fortitude, and I\'ll consider you done with proving yourself. How\'s that sound?", + ["O"] = "Find Mountaineer Dolf and heal his wounds using Lesser Heal (Rank 2). Afterwards, grant him Power Word: Fortitude and then return to Maxan Anvol in Kharanos.", + ["T"] = "Garments of the Light", + }, + [5626] = { + ["D"] = "Hey! $N! Got a minute?!$B$BYa been following the Light now for long enough that you find your way to Maxan Anvol in Kharanos. He\'ll teach ya more about the path yer following, and if you prove worthy, give ya yer first set of robes to denote your station as a $gpriest:priestess;.$B$BNow get goin\'! As soon as yer done here, head through the tunnel--he\'ll be waitin\' for ya.", + ["O"] = "Speak to Maxan Anvol in Dun Morogh.", + ["T"] = "In Favor of the Light", + }, + [5627] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Stars of Elune", + }, + [5628] = { + ["D"] = "Ah, yes, hello, $N? I\'m glad you stopped to talk for a moment. You are a far way from home at such a young age--I admire such ambition. I wish when I was younger I could have mustered the courage to travel the world.$B$BThere was a priestess of your order here looking for you not too long ago. She said it was very urgent you returned to the Temple of the Moon in Darnassus and speak to Priestess Alathea--it had something to do with your training. I wouldn\'t dally too long if you can help it.", + ["O"] = "Speak to Priestess Alathea in Darnassus.", + ["T"] = "Returning Home", + }, + [5629] = { + ["D"] = "Hello again, $N. I know you\'ve been busy aiding our people, but you must take some time for yourself also. Priestess Alathea sent someone here looking for you. It seems that you\'ve caught the attention of our elders and they feel you are prepared for greater things. Head to the Temple of the Moon in Darnassus and look for Alathea there. She will be waiting. Good luck, and may Elune be with you.", + ["O"] = "Speak to Priestess Alathea in Darnassus.", + ["T"] = "Returning Home", + }, + [5630] = { + ["D"] = "Hello there, $gladdy:lassy;. Good to see you travelin\' far and wide to distant lands. No offense meant, but a lot o\' your kind don\'t take well to these cold climates usually. Glad to see you\'re made of tougher stuff.$B$BNot too long ago one of your priestesses was in here lookin\' for you--said somethin\' about you finding a Priestess Alathea in the Temple of the Moon back in Darnassus. Said it was important and you should head back there soon.", + ["O"] = "Speak to Priestess Alathea in Darnassus.", + ["T"] = "Returning Home", + }, + [5631] = { + ["D"] = "A priestess recently visited our halls seeking you out, young $r. She said that she was on a mission to find you and that you should return to the Temple of the Moon in Darnassus as soon as possible. When you arrive, seek out a Priestess Alathea--she will tell you more.$B$BThe Light be with you, $N.", + ["O"] = "Speak to Priestess Alathea in Darnassus.", + ["T"] = "Returning Home", + }, + [5632] = { + ["D"] = "Oh, yes, of course. Hello, $N. A messenger from our order was here not too long ago looking for you. She mentioned something important happening back in Darnassus and that you should return to the Temple of the Moon as soon as you can. When you arrive, speak to Priestess Alathea. I believe it has something to do with your progressing so well in our ways.$B$BAgain, return to Darnassus when you can.", + ["O"] = "Speak to Priestess Alathea in Darnassus.", + ["T"] = "Returning Home", + }, + [5633] = { + ["D"] = "Greetings, $gladdy:lass;. Good to see you here in our great halls. A blessing be on you and your kind.$B$BWhile you were traveling through our lands, a priestess of your temple came here seeking you. She said that you were to return to the Temple of the Moon as soon as possible. I\'m sorry I can\'t tell you more, but it did sound important. When you get to the temple, speak to a Priestess Alathea.", + ["O"] = "Speak to Priestess Alathea in Darnassus.", + ["T"] = "Returning Home", + }, + [5634] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Desperate Prayer", + }, + [5635] = { + ["D"] = "You\'ve caught the attention of our superiors, $N. They\'ve asked you travel to the Cathedral of Light in Stormwind as soon as possible. Apparently they feel you\'ve proven yourself already and are prepared to further your training. When you get there, find High Priestess Laurena. She will be able to guide you further. Good luck, and may the Light be with you.", + ["O"] = "Speak to High Priestess Laurena in Stormwind.", + ["T"] = "Desperate Prayer", + }, + [5636] = { + ["D"] = "Elune bless you, good $r. I hope your Light finds you and protects you well this day.$B$BOne of your priests was here not long ago looking for you. He mentioned you returning to the Cathedral of Light as soon as possible to speak with High Priestess Laurena. It seems you\'ve done well to garner such attention. I wouldn\'t spend too much time here--your people have need of you.", + ["O"] = "Speak to High Priestess Laurena in Stormwind.", + ["T"] = "Desperate Prayer", + }, + [5637] = { + ["D"] = "Time\'s come for you to head to Stormwind, $N. High Priestess Laurena in the Cathedral of Light wants to speak to you. Gotta be somethin\' really good or really bad for the High Priestess to want you there personally, but I\'m guessin\' you\'ve only done well for yourself and it\'s a good thing that she wants to speak to ya.$B$BBut don\'t waste too much time \'round here. I\'d head there as soon as you can.", + ["O"] = "Speak to High Priestess Laurena in Stormwind.", + ["T"] = "Desperate Prayer", + }, + [5638] = { + ["D"] = "Just a short time ago, one of your priests was here looking for you, $r. He said that if I were to see you, I should direct you towards the Cathedral of Light. He said it was very important, but I would not be overly concerned if I were you. His demeanor seemed positive... as though it were good news. I wouldn\'t take too long in making my way there if I were you.$B$BElune be with you, good $r.", + ["O"] = "Speak to High Priestess Laurena in Stormwind.", + ["T"] = "Desperate Prayer", + }, + [5639] = { + ["D"] = "You\'re needed in Stormwind, $N. The High Priestess there, Laurena, says it\'s time for you to prove you\'re worthy of the next level of your training. Don\'t waste too much time finding your way there. You can find her in the Cathedral of Light in the center of the city. Give her my regards, and prove how worthy you are of such a calling. The Light be with you, $N.", + ["O"] = "Speak to High Priestess Laurena in Stormwind.", + ["T"] = "Desperate Prayer", + }, + [5640] = { + ["D"] = "Praise be to Elune, and to your Light, $N.$B$BAbout this time, many of our order learn abilities reflecting their faith in Elune. If knowledge serves me, I believe the same holds true for your order also.$B$BWhen your business in Darnassus is complete, I would seek out one of your High Priestesses for further training.", + ["O"] = "Speak to High Priestess Laurena in Stormwind.", + ["T"] = "Desperate Prayer", + }, + [5641] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Lack of Fear", + }, + [5642] = { + ["D"] = "Something important is up in Orgrimmar, $N.$B$BThe normal messengers that come through here looking for troll priests usually are very casual. This time, they seemed to be in much more a hurry. Don\'t dally too long in Thunder Bluff. I\'d return to the Valley of Spirits as soon as possible.", + ["O"] = "Speak to Ur\'kyo in Orgrimmar.", + ["T"] = "Shadowguard", + }, + [5643] = { + ["D"] = "Like many of our own priests, your own tribe puts you through rites of passage. These rites often teach priests special abilities that are vital to their survival. I sense that time is upon you even as we speak. You must return to the Valley of Spirits in Orgrimmar and speak to Ur\'kyo. What he teaches you might be very important for the future.", + ["O"] = "Speak to Ur\'kyo in Orgrimmar.", + ["T"] = "Shadowguard", + }, + [5644] = { + ["D"] = "Ah, a wonderful day for you, $N. I can see by the lessons you\'ve learned that the time has come to send you back to Aelthalyste. There are things only she can teach you, and even then, only if you prove worthy.$B$BI will not spoil the surprise for you, but I remember when I was a young priest learning about true power... divine power. Yes, those were the days.$B$BGo back to Aelthalyste in the Undercity, $N. She will be awaiting you in the War Quarter.", + ["O"] = "Speak to Aelthalyste in the Undercity.", + ["T"] = "Devouring Plague", + }, + [5645] = { + ["D"] = "$N, your High Priest Rohan would have an audience with you in Ironforge. Make haste, my strong friend, your next test quickly approaches. Although I wish I could bear witness to your race\'s own special rites, my place is here. But may the Light go with you in your travels. Rohan should still be in the Mystic Ward once you reach the city. He will be waiting.", + ["O"] = "Speak to High Priest Rohan in Ironforge.", + ["T"] = "A Lack of Fear", + }, + [5646] = { + ["D"] = "Aelthalyste show our people great respect by sending them back to me for more training, and now I do the same for her tribe.$B$BYou return to the Undercity, $N. There, in the War Quarter, she be ready to teach you more \'bout your people and their ways. Go there, and do not wait long.", + ["O"] = "Speak to Aelthalyste in the Undercity.", + ["T"] = "Devouring Plague", + }, + [5647] = { + ["D"] = "Your race is so very strong, $N. We are proud to call you allies. And as each day\'s sun sets, you and your kin grow closer to not only finding your true origins, but find great confidence that you are on the right path in so many things. That feeling must make you feel so triumphant.$B$BWord came from Ironforge just recently. It asked that you return there and speak to High Priest Rohan in the Mystic Ward. I would not keep him waiting. May Elune guide your travels.", + ["O"] = "Speak to High Priest Rohan in Ironforge.", + ["T"] = "A Lack of Fear", + }, + [5648] = { + ["D"] = "You be ready for your first test, $N. South of Razor Hill, just outta town, one of our grunts be hurt fightin\' off some o\' Proudmoore\'s old troops. She not doin\' too well, an\' she benefit much if one of our kind could help her. Find her--her name be Kor\'ja--heal her wounds, an\' give her the blessin\' of our ancestors.$B$BYou do this, an\' me thinks that be sufficient proof that you ready to move on in our ways.", + ["O"] = "Find Grunt Kor\'ja and heal her wounds using Lesser Heal (Rank 2). Afterwards, grant her Power Word: Fortitude and then return to Tai\'jin at Razor Hill.", + ["T"] = "Garments of Spirituality", + }, + [5649] = { + ["D"] = "Aye, mon. Our kind have joined the Horde because they be good for us. They loyal, and they teach us much \'bout tings like honor. But our old ways die hard. The orcs may not approve of all our traditions, but that not mean we can\'t continue to practice some them in secret.$B$BYou know this, an\' that\'s why I send you to Tai\'jin in Razor Hill. She teach you more \'bout our history. She teach you the ways of our tribe. Go to her when you be ready.", + ["O"] = "Speak to Tai\'jin in Durotar.", + ["T"] = "In Favor of Spirituality", + }, + [5650] = { + ["D"] = "Our power comes from darkness and shadow, $N, but that is not your only role. You have acknowledged that there is merit in knowing the healing arts. This is wise. But before you can know the dark, you must also know the light. And for this, I have a test for you.$B$BNorth of the cemetery is a wounded Deathguard--Deathguard Kel. He has protected us from gnolls for some time, and needs healing. But, you must also fortify his body before he can return to duty. Do both with your spells, and then return to me.", + ["O"] = "Find Deathguard Kel and heal his wounds using Lesser Heal (Rank 2). Afterwards, grant him Power Word: Fortitude and then return to Dark Cleric Beryl in Brill.", + ["T"] = "Garments of Darkness", + }, + [5651] = { + ["D"] = "There are many lessons that the Forsaken have learned through experience--things that some races can only begin to fathom. And although our path lies in darkness, you will find that a great many things rely on both the light and the dark. Your lessons shall teach you to use both... and with discretion. But heed my words: never forget we were forged in corruption and left to rot like so much carrion. The Darkness is our home.$B$BSeek out Dark Cleric Beryl in Brill when you\'re ready to learn more.", + ["O"] = "Speak to Dark Cleric Beryl in Tirisfal Glades.", + ["T"] = "In Favor of Darkness", + }, + [5652] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Hex of Weakness", + }, + [5654] = { + ["D"] = "It be time for you to meet with Ur\'kyo, $N. He be in the Valley of Spirits in the orc city. Go there and speak to him. It is time you learn more of the old ways of our kind. It time you be brought into the circle and made a true priest of our tribe.", + ["O"] = "Speak to Ur\'kyo in Orgrimmar.", + ["T"] = "Hex of Weakness", + }, + [5655] = { + ["D"] = "I sent here to make sure that you not wander too far from home, $N. They send me to make sure you return home because Ur\'kyo, greatest of our priests, wish to speak to you. You go there. You go to the Valley of Spirits in the orc city and you speak to Ur\'kyo. He wait for you now.", + ["O"] = "Speak to Ur\'kyo in Orgrimmar.", + ["T"] = "Hex of Weakness", + }, + [5656] = { + ["D"] = "It always warms my undying heart to see priests from all cultures wander the world. To know that power exists that is not arcane and well within our grasp. That\'s why it is my honor to direct you home, $N.$B$BUr\'kyo, your great priest in Orgrimmar, has asked for your presence. You can find him in the Valley of Spirits.", + ["O"] = "Speak to Ur\'kyo in Orgrimmar.", + ["T"] = "Hex of Weakness", + }, + [5657] = { + ["D"] = "Home. Return home, young $r.$B$BYour spiritual leader Ur\'kyo begs you to return to him and speak about the path you travel.$B$BGo to the Valley of Spirits in the great Horde city of Orgrimmar. You will find him there.", + ["O"] = "Speak to Ur\'kyo in Orgrimmar.", + ["T"] = "Hex of Weakness", + }, + [5658] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Touch of Weakness", + }, + [5659] = { + ["D"] = "This isn\'t the place for you, $N. You should head to the War Quarter in Undercity as soon as possible. Aelthalyste has called all her priests and priestesses there as soon as they are ready. It\'s time they learn more about their power and how to harness it.$B$BShe will not tolerate tardiness or excuses, so you\'d best be on your way.", + ["O"] = "Speak to Aelthalyste in the Undercity.", + ["T"] = "Touch of Weakness", + }, + [5660] = { + ["D"] = "You be far from home, $c. You be needed there, back in your city under the ground. Your mistress, the one you be callin\' Aelthalyste be needin\' you back there. Like my tribe, there things you must learn only from her. Don\'t be stayin\' here too long. You should be headin\' to the War Quarter as fast as a zeppelin can carry you.", + ["O"] = "Speak to Aelthalyste in the Undercity.", + ["T"] = "Touch of Weakness", + }, + [5661] = { + ["D"] = "You be far from home out here in the Bloodhoof Village, $N. I be sent here to find priests of my own tribe to send back to speak to our leaders, but that not mean I cannot help you too.$B$BI hear word that your head priestess spirit want all Forsaken to come to her--there are things you must learn.$B$BGo to meet Aelthalyste in the War Quarter in that city of yours.", + ["O"] = "Speak to Aelthalyste in the Undercity.", + ["T"] = "Touch of Weakness", + }, + [5662] = { + ["D"] = "My respect to you and your kind, $N. I normally teach only those of my own tribe. Your lessons come from Aelthalyste in the city once called Lordaeron.$B$BYou should return to her if you\'re to learn those abilities that set you apart from other faiths.$B$BGo to the War Quarter in the Undercity and find your mistress there.", + ["O"] = "Speak to Aelthalyste in the Undercity.", + ["T"] = "Touch of Weakness", + }, + [5663] = { + ["D"] = "Aelthalyste sent word out to all her priests. We\'re to direct the younger of our order to the Undercity for more training. If you truly count yourself among our faithful, then you should return there also.$B$BYou can find Aelthalyste in the War Quarter deep in the Undercity.", + ["O"] = "Speak to Aelthalyste in the Undercity.", + ["T"] = "Touch of Weakness", + }, + [5672] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Elune\'s Grace", + }, + [5673] = { + ["D"] = "You know you have access to any of our trainers at any time, $N, but there are some things that we cannot pass on to you. One of those things are the teachings of your goddess Elune. She gives special abilities to her faithful, and if I\'m not mistaken, it is time for you to return home to your Temple of the Moon to be tested.$B$BReturn there when you can and speak to Priestess Alathea.", + ["O"] = "Speak to Priestess Alathea in Darnassus.", + ["T"] = "Elune\'s Grace", + }, + [5674] = { + ["D"] = "A wonderful day has come, $N. You\'ve reached the age in which our $gpriests:priestesses; are trained in abilities only Night elves know. But it is not for me to train you. You must return to the Temple of the Moon and speak to Priestess Alathea as soon as your business here is concluded. She will test you to ensure you\'re prepared, and only then will she teach you Elune\'s Grace.", + ["O"] = "Speak to Priestess Alathea in Darnassus.", + ["T"] = "Elune\'s Grace", + }, + [5675] = { + ["D"] = "Time\'s a wastin\', $glad:lass;. It\'s time for you to return home to Darnassus. Priestess Alathea\'s sent word here that you\'re to return there for training. Seems they feel you\'re ready to be tested much like those who serve the Light. You should head out whenever you can. Alathea\'s message said that she\'d be waitin\' for you in the Temple of the Moon. Good luck.", + ["O"] = "Speak to Priestess Alathea in Darnassus.", + ["T"] = "Elune\'s Grace", + }, + [5676] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Arcane Feedback", + }, + [5677] = { + ["D"] = "As much as I\'d like to show you our own special teachings of the Light, it is not our place. Your place is back in Stormwind with your own kind, $N... for now. Believe me, I mean no offense. When you return to High Priestess Laurena in the Cathedral of Light you\'ll understand what I\'m talking about--the time has come for your race to prepare you for the future; to separate yourself from others that follow a similar path.", + ["O"] = "Speak to High Priestess Laurena in Stormwind.", + ["T"] = "Arcane Feedback", + }, + [5678] = { + ["D"] = "It is time for you to return to Stormwind, young one. Your superiors there have called you back for more training. And although it disturbs me some, your race and mine are allies and I would not betray that.$b$bI do not mean to be so coy with you--my distrust of arcane magics, be they divine inspired or not, is still strong within me.$b$bYou will know of what I speak after you return to your Cathedral of Light. Speak to High Priestess Laurena when you arrive.", + ["O"] = "Speak to High Priestess Laurena in Stormwind.", + ["T"] = "Arcane Feedback", + }, + [5679] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Devouring Plague", + }, + [5680] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Shadowguard", + }, + [5713] = { + ["D"] = "I was traveling to Auberdine with an important message when I was attacked by the furbolg Marosh and his trackers. During the attack I was poisoned, leaving me barely able to stand. I can make an antidote, but it will take time before it is ready.$B$BI would ask that you defend me until I can apply the antidote. I will aid you with my bow as best I can.$B$BShould we survive, I will be able deliver my message to Auberdine, while you speak with Onaeya at Maestra\'s Post to inform her of this incident.", + ["O"] = "Protect Sentinel Aynasha, then speak with Onaeya at Maestra\'s Post in Ashenvale.", + ["T"] = "One Shot. One Kill.", + }, + [5721] = { + ["D"] = "Now, $N, you will take part in battle of Darrowshire, and you will save Joseph Redpath.$B$BPlace this relic bundle in the Darrowshire town square, and the spirits of Darrowshire will rise. Join their battle and assure that these two things come to pass: Davil must survive beyond the death of Horgus, and Redpath must survive to be corrupted, then defeated.$B$BAfter defeating the corrupted Redpath, his spirit will be saved. Speak with him, then return to his daughter Pamela.", + ["O"] = "Place the Relic Bundle at the Darrowshire town square.$B$BPrevent Davil Lightfire\'s death until the death of Horgus.$B$BPrevent Captain Redpath\'s death until Redpath the Corrupted appears.$B$BDefeat Redpath the Corrupted.$B$BSpeak with the spirit of Joseph Redpath when he appears at the town square, then speak with Pamela at her home.", + ["T"] = "The Battle of Darrowshire", + }, + [5722] = { + ["D"] = "The troggs are not the only thing that interested Magatha in Ragefire Chasm. She has heard word that one of her servants, a Maur Grimtotem, found something peculiar while in the Chasm, but he never made it out to show her what. She\'d like Maur\'s body found--if it still exists--and any signs of what he found while attempting to speak to the troggs.$B$BReturn to Magatha any items of interest, and I\'m sure she would be very generous in her reward.$B$BAgain, seek the Chasm in the darkest areas of Orgrimmar.", + ["O"] = "Search Ragefire Chasm for Maur Grimtotem\'s corpse and search it for any items of interest.", + ["T"] = "Searching for the Lost Satchel", + }, + [5723] = { + ["D"] = "Beneath the city of Orgrimmar, stout creatures known as troggs started coming to the surface from deep below the lava filled tunnels. In her ever-benevolence, Magatha sought to make peace with the creatures, but they turned on her diplomats, killing them. She will not allow such treatment of the tauren people and now consider the creatures a threat to all of the Horde.$B$BShe asks that you put an end to this trogg threat before it overwhelms the Horde from below. Find Ragefire Chasm and destroy them all.", + ["O"] = "Search Orgrimmar for Ragefire Chasm, then kill 8 Ragefire Troggs and 8 Ragefire Shaman before returning to Rahauro in Thunder Bluff.", + ["T"] = "Testing an Enemy\'s Strength", + }, + [5724] = { + ["D"] = "You find a satchel under the body of the tauren. It is still gripped tightly in his arms as though he was trying to protect it while being attacked by the troggs.$B$BRemoving the satchel from his vice-like grip, you stow it with your own equipment and prepare to make your way out of the tunnels and back to Rahauro in Thunder Bluff.", + ["O"] = "Take the Grimtotem Satchel to Rahauro in Thunder Bluff.", + ["T"] = "Returning the Lost Satchel", + }, + [5725] = { + ["D"] = "Many denizens of the Legion bestow gifts on their followers as you may well know. Some of these gifts the Dark Lady feels would be better off in her hands than in the hands of those with... lesser vision.$B$BA sect of the Shadow Council hidden in caverns below Orgrimmar known as the Searing Blade are a prime example. The Lady tells me that members of the Searing Blade have come into the possession of two powerful spell books--she would like to \"borrow\" these books from them. You will get them for her.", + ["O"] = "Bring the books Spells of Shadow and Incantations from the Nether to Varimathras in Undercity.", + ["T"] = "The Power to Destroy...", + }, + [5726] = { + ["D"] = "One thing I will not tolerate are traitors in our midst, $N. But I would be a fool to play my hand so early--it would not sufficiently cut the corruption out of our lands and only cause the infection to grow worse.$B$BBut you, a young adventurer, could go places my agents could not... could learn the truth... could find the true head of the beast.$B$BIf you are brave enough, then enter Skull Rock to the east of Orgrimmar, find a lieutenant\'s insignia off one of the Burning Blade there, and return to me.", + ["O"] = "Bring a Lieutenant\'s Insignia to Thrall in Orgrimmar.", + ["T"] = "Hidden Enemies", + }, + [5727] = { + ["D"] = "Now let us see if this insignia you found is worth the effort.$B$BThere is a warlock within the city who believes he has my trust. He does not know that I realize where his true loyalties lie. He is in fact the leader of the Burning Blade. But do not rush off to do battle with him; he has a purpose, and we shall use him against our enemies.$B$BTake this insignia to him in the Cleft of Shadow here in Orgrimmar, speak to him and see if he believes you are one of his own, then return to me here.", + ["O"] = "Take the Lieutenant\'s Insignia to Neeru Fireblade and speak to him. Gauge if he believes you are a member of the Burning Blade and then return to Thrall in Orgrimmar.", + ["T"] = "Hidden Enemies", + }, + [5728] = { + ["D"] = "Hmm, leaders of the Searing Blade... this concerns me most. If they are the ones of value to Neeru, then those are who we must target first. This satyr... Bazzalan, and the other Neeru mentioned--what was he, a warlock?--must be slain.$B$BReturn to the Cleft of Shadow and enter Ragefire Chasm, $N. Find these two leaders of the Searing Blade, and kill them. But be careful not to let Neeru know it was you who did this. You must retain your identity as one of his $gbrothers:sisters; in arms.", + ["O"] = "Kill Bazzalan and Jergosh the Invoker before returning to Thrall in Orgrimmar.", + ["T"] = "Hidden Enemies", + }, + [5729] = { + ["D"] = "I think our next step should be to have you placed close to Neeru. If he is as agitated as reports suggest, then we may accomplish two things. One, you may be able to gain some greater knowledge about the Council or at least the Burning Blade, and two, he may just begin to trust you enough that he asks you to start to aid him. He may very well look at you as someone who can fill the void now that some of the leadership is in turmoil.$B$BReturn to the Cleft and speak to him again, but do not be too overt.", + ["O"] = "Speak to Neeru Fireblade in Orgrimmar.", + ["T"] = "Hidden Enemies", + }, + [5730] = { + ["D"] = "You are one of my lieutenants! Prepare yourself, $c. I will call upon you soon.$B$BMy time spent on the Searing Blade may be all but wasted now, but that does not mean that the Shadow Council\'s schemes elsewhere must suffer. I will do what I can to minimize the damage here in Ragefire Chasm. In the meantime, I will have my agents in the Barrens and Ashenvale begin work on our newest agenda. Return to me soon.", + ["O"] = "Speak to Thrall in Orgrimmar and tell him what you\'ve learned.", + ["T"] = "Hidden Enemies", + }, + [5741] = { + ["D"] = "The Burning Blade in Thunder Axe Fortress to the east is rumored to have acquired the Sceptre of Light from the Naga. Legend tells that the sceptre is able to sink entire cities under the great seas. The Burning Blade must not be allowed to possess such power.$B$BTo that end, you must retrieve the sceptre yourself! It is held by a Burning Blade seer, who studies the sceptre from atop one of the Thunder Axe watchtowers.", + ["O"] = "Get the Sceptre of Light and then return it to Azore Aldamort at the tower in Ethel Rethor.", + ["T"] = "Sceptre of Light", + }, + [5742] = { + ["D"] = "You have worked hard, friend. Rest your weary bones and allow me to properly introduce myself.", + ["O"] = "Listen to what Tirion Fordring has to say.", + ["T"] = "Redemption", + }, + [5761] = { + ["D"] = "The primary task set upon me by our great Warchief is to root out the creatures responsible for infesting our lord\'s great city with demonic influence. The Burning Blade is one threat, but there are others; the Searing Blade for instance, who make their home in Ragefire Chasm, secretly attempting to subvert innocent members of the Horde.$B$BIf they are to be stopped, then their leader must be slain--a Felguard named Taragaman the Hungerer.$B$BKill him, and his heart will appease Thrall, of this I\'m sure.", + ["O"] = "Enter Ragefire Chasm and slay Taragaman the Hungerer, then bring his heart back to Neeru Fireblade in Orgrimmar.", + ["T"] = "Slaying the Beast", + }, + [5762] = { + ["D"] = "I have a package for an old customer of mine, a dwarf named Hemet Nesingwary. The package took weeks to arrive, and Hemet\'s long gone by now. He said he was going to Stranglethorn to hunt the beasts there, but he left me some money to send his delivery when I could. $B$BHemet\'s a rich dwarf and it\'s a good idea to keep up relations with the rich ones, yeah? So... you want to deliver the package for me?$B$BI heard Hemet has a camp in Stranglethorn, north of Grom\'gol.", + ["O"] = "Take Kravel\'s Crate to Hemet Nesingwary in Stranglethorn.", + ["T"] = "Hemet Nesingwary", + }, + [5763] = { + ["D"] = "Long ago, a dwarf came to this land. His name was Hemet and he wished to hunt great beasts. His skills with the rifle were uncanny, and we spent many days hunting together. Even the enmity between our peoples was forgotten.$B$BWhen he left Desolace for Stranglethorn, I vowed to one day welcome him back so that we may hunt again. Now is that time.$B$BTake this kodo horn to Hemet. He will know it is from me. You will find him in Stranglethorn, north of the Grom\'gol Base camp.", + ["O"] = "Bring Roon\'s Kodo Horn to Hemet Nesingwary in Stranglethorn.", + ["T"] = "Hunting in Stranglethorn", + }, + [5781] = { + ["D"] = "To help Taelan regain what he has lost, you must gather items from his past.$B$BThe first such item is a toy that I gave to him on his 7th birthday. It was his most cherished possession: A miniature war hammer; an exact replica of my very own.$B$BAfter I was banished for treason, his mother told him that I had died. He was taken to my false grave at the Undercroft, where he buried the hammer along with my memory - forever.$B$BYou must venture to the Undercroft and recover Taelan\'s hammer.", + ["O"] = "Travel to the Undercroft - at the southernmost section of the Eastern Plaguelands - and recover Taelan\'s Hammer. Return to Tirion Fordring upon completion of your objective.", + ["T"] = "Of Forgotten Memories", + }, + [5801] = { + ["D"] = "You need two bars of thorium and a powerfully hot heat source to forge the key stem. You\'re on your own for the thorium, but I can help with the heat.$B$BTo our west in Un\'Goro Crater is Fire Plume Ridge - a simmering volcano. The lava lake up top is hot enough to fuse thorium and bone together. Your gold has bought you a mold that simply requires you to dip it in the lake up top; the lava will take care of the rest.$B$BThat\'s it on my end. To finish your key, you\'ll need to talk to Arbington again.", + ["O"] = "Take the Skeleton Key Mold and 2 Thorium Bars to the top of Fire Plume Ridge in Un\'Goro Crater. Use the Skeleton Key Mold by the lava lake to forge the Unfinished Skeleton Key.$B$BBring the Unfinished Skeleton Key to Alchemist Arbington at Chillwind Point, Western Plaguelands.", + ["T"] = "Fire Plume Forged", + }, + [5802] = { + ["D"] = "You need two bars of thorium and a powerfully hot heat source to forge the key stem. You\'re on your own for the thorium, but I can help with the heat.$B$BTo our west in Un\'Goro Crater is Fire Plume Ridge - a simmering volcano. The lava lake up top is hot enough to fuse thorium and bone together. Your gold has bought you a mold that simply requires you to dip it in the lake up top; the lava will take care of the rest.$B$BThat\'s it on my end. To finish your key, you\'ll need to talk to Dithers again.", + ["O"] = "Take the Skeleton Key Mold and 2 Thorium Bars to the top of Fire Plume Ridge in Un\'Goro Crater. Use the Skeleton Key Mold by the lava lake to forge the Unfinished Skeleton Key.$B$BBring the Unfinished Skeleton Key to Apothecary Dithers at the Bulwark, Western Plaguelands.", + ["T"] = "Fire Plume Forged", + }, + [5803] = { + ["D"] = "Araj the Summoner lords over Andorhal from an obfuscated vantage. We know that he was the former leader of Scholomance before claiming the city as his own. To finish the key, we will need his signet - called a scarab - mounted as the head of the key.$B$BIn the city are four summoning crystals, one in each tower you marked for us previously. Destroy all four crystals and break his hold on the city, drawing him into the open. Once destroyed, seize his scarab from his fallen phylactery!", + ["O"] = "Destroy the four Scourge Summoning Crystals inside Andorhal to call forth Araj the Summoner. Destroy Araj the Summoner and bring Araj\'s Scarab to Alchemist Arbington at Chillwind Point, Western Plaguelands.", + ["T"] = "Araj\'s Scarab", + }, + [5804] = { + ["D"] = "Araj the Summoner lords over Andorhal from an obfuscated vantage. We know that he was the former leader of Scholomance before claiming the city as his own. To finish the key, we will need his signet - called a scarab - mounted as the head of the key.$B$BIn the city are four summoning crystals, one in each tower you marked for us previously. Destroy all four crystals and break his hold on the city, drawing him into the open. Once destroyed, seize his scarab from his fallen phylactery!", + ["O"] = "Destroy the four Scourge Summoning Crystals inside Andorhal to call forth Araj the Summoner. Destroy Araj the Summoner and bring Araj\'s Scarab to Apothecary Dithers at the Bulwark, Western Plaguelands.", + ["T"] = "Araj\'s Scarab", + }, + [5805] = { + ["D"] = "Welcome to the World of Warcraft!$B$BAs special thanks for purchasing the World of Warcraft Collector\'s Edition, turn in this gift voucher to Merissa Stilwell in Northshire Valley. You\'ll then be given a gift: a little companion to join you on your quest for adventure and glory.$B$BThanks again, and enjoy your stay in the World of Warcraft!", + ["O"] = "Bring the Northshire Gift Voucher to Merissa Stilwell.", + ["T"] = "Welcome!", + }, + [5821] = { + ["D"] = "Under normal circumstances, Rigger and I would lead our kodo past the Kolkar Centaur. Every now and then we hear the Centaur war drums, and when we hear those we stop. It\'s not good for business to be dead!$B$BI\'ll tell you what $c, if you protect us past the Kolkar village we\'ll make it worth your while.$B$BIt\'s just a short distance, all you need to do is keep the caravan intact and you can pick up your reward from Smeed Scrabblescrew - he is down the road a bit. We do a little business together.", + ["O"] = "Escort the Gizelton Caravan past the Kolkar Centaur village. Talk with Smeed at Scrabblescrew\'s Camp for your reward.", + ["T"] = "Bodyguard for Hire ", + }, + [5841] = { + ["D"] = "Welcome to the World of Warcraft!$B$BAs special thanks for purchasing the World of Warcraft Collector\'s Edition, turn in this gift voucher to Yori Crackhelm in Coldridge Valley. You\'ll then be given a gift: a little companion to join you on your quest for adventure and glory.$B$BThanks again, and enjoy your stay in the World of Warcraft!", + ["O"] = "Bring the Coldridge Valley Gift Voucher to Yori Crackhelm.", + ["T"] = "Welcome!", + }, + [5842] = { + ["D"] = "Welcome to the World of Warcraft!$B$BAs special thanks for purchasing the World of Warcraft Collector\'s Edition, turn in this gift voucher to Orenthil Whisperwind in Shadowglen. You\'ll then be given a gift: a little companion to join you on your quest for adventure and glory.$B$BThanks again, and enjoy your stay in the World of Warcraft!", + ["O"] = "Bring the Shadowglen Gift Voucher to Orenthil Whisperwind.", + ["T"] = "Welcome!", + }, + [5843] = { + ["D"] = "Welcome to the World of Warcraft!$B$BAs special thanks for purchasing the World of Warcraft Collector\'s Edition, turn in this gift voucher to Magga in the Valley of Trials. You\'ll then be given a gift: a little companion to join you on your quest for adventure and glory.$B$BThanks again, and enjoy your stay in the World of Warcraft!", + ["O"] = "Bring the Valley of Trials Gift Voucher to Magga.", + ["T"] = "Welcome!", + }, + [5844] = { + ["D"] = "Welcome to the World of Warcraft!$B$BAs special thanks for purchasing the World of Warcraft Collector\'s Edition, turn in this gift voucher to Vorn Skyseer in Camp Narache. You\'ll then be given a gift: a little companion to join you on your quest for adventure and glory.$B$BThanks again, and enjoy your stay in the World of Warcraft!", + ["O"] = "Bring the Camp Narache Gift Voucher to Vorn Skyseer.", + ["T"] = "Welcome!", + }, + [5845] = { + ["D"] = "The Order of the Silver Hand was utterly decimated when Uther was slain.$B$BThe boy held out for as long as he could. Pushed to the war torn hamlet of Northdale, he made his final stand.$B$BWere any of the Order left alive, he thought - and did it matter?$B$BIt was with that thought that Taelan threw down the standard of the Order and renounced all that he had known. His honor left upon the blood soaked ground of Northdale.$B$BYou must travel to Northdale and recover that symbol of lost honor.", + ["O"] = "Travel to Northdale, in the northeastern region of the Eastern Plaguelands, and recover the Symbol of Lost Honor. Return to Tirion Fordring upon completion of your objective.", + ["T"] = "Of Lost Honor", + }, + [5846] = { + ["D"] = "When Taelan was a child, we would oft visit Caer Darrow on family excursions. On our last visit, an artist by the name of Renfray painted a portrait of us poised along the beachside. It is my fondest memory of both Taelan and Karandra. For it was at that moment, with my wife and son in my arms, that I felt a bond of love and family that I would never know again.$B$BIf this painting still exists, you must find it.$B$BTravel to the ruined island of Caer Darrow and see if the painting or the artist remain.", + ["O"] = "Travel to island of Caer Darrow, in the south-central region of the Plaguelands, and look for any clues as to the whereabouts of the painting.", + ["T"] = "Of Love and Family", + }, + [5847] = { + ["D"] = "Welcome to the World of Warcraft!$B$BAs special thanks for purchasing the World of Warcraft Collector\'s Edition, turn in this gift voucher to Claire Willower in Deathknell. You\'ll then be given a gift: a little companion to join you on your quest for adventure and glory.$B$BThanks again, and enjoy your stay in the World of Warcraft!", + ["O"] = "Bring the Deathknell Gift Voucher to Claire Willower in Deathknell.", + ["T"] = "Welcome!", + }, + [5848] = { + ["D"] = "The painting... It hung on the wall of my workshop - inside the Order\'s barracks - for years.$B$BAfter Tirion\'s trial was over, I knew that I could no longer keep the painting visible. I hid it in a place that they would never think to look.$B$BTravel to Stratholme and make your way deep inside what is now the Scarlet Bastion, search for a painting of our twin moons. Chip away at the paint until you uncover my master work, \'Of Love and Family.\'$B$BMay the Light guide your actions.", + ["O"] = "Travel to Stratholme, in the northern part of the Plaguelands. It is in the Scarlet Bastion that you will find the painting \'Of Love and Family,\' hidden behind another painting depicting the twin moons of our world.$B$BReturn the painting to Tirion Fordring.", + ["T"] = "Of Love and Family", + }, + [5861] = { + ["D"] = "$N, you have done all that I have asked thus far. Only one step remains in your quest of redemption.$B$BYou must deliver the items you have collected to Taelan. Unfortunately, Taelan and his Scarlet Crusaders will attack you on sight.$B$BThere is only one way in which to deliver my message and that is through a guise of deception.$B$BTo the south you will find Uther\'s tomb. An old and trusted confidant of mine, Myranda, now resides there - seek her out. Show her the items and she will assist you.", + ["O"] = "Travel to Uther\'s Tomb, located in the southern Plaguelands. Show Myranda the Hag Tirion\'s Gift.", + ["T"] = "Find Myranda", + }, + [5862] = { + ["D"] = "I am what you would call, an illusionist. Though I may be able to create an illusion to allow you entry into Hearthglen, be warned; my powers have their limitations.$B$BShould you travel too far from these lands, the effects of the illusion will cease. The spell itself takes a great amount of concentration and power from me, and thus, I can only sustain the effect for a short time.$B$BSpeak to me again when you are ready.", + ["O"] = "Speak to Myranda to gain the Scarlet Illusion. Travel to Hearthglen while under the Scarlet Illusion and deliver Tirion\'s Gift to Highlord Taelan Fordring.$B$BHearthglen is to the north, Taelan should be inside of Mardenholde Keep.", + ["T"] = "Scarlet Subterfuge", + }, + [5863] = { + ["D"] = "Just recently, a large bank of nomadic ogres arrived in Tanaris. South of here, they have taken over a large area of the desert and formed a compound. Several smaller bands are currently wandering the desert, some of which have invaded the old troll ruins.$B$BThe Dunemaul Compound must be destroyed! We cannot allow these ogres to build up a force.$B$BThe leader of this band is named Gor\'marok the Ravager; I believe that putting an end to his leadership will be the beginning of the end for the ogres.", + ["O"] = "Andi Lynn in Gadgetzan wants you to destroy the Dunemaul Compound by killing 10 Dunemaul Brutes, 10 Dunemaul Enforcers, and Gor\'marok the Ravager.", + ["T"] = "The Dunemaul Compound", + }, + [5881] = { + ["D"] = "The Horde does well keeping our troops fresh... since the Great War we have been prosperous here in Kalimdor.$B$BI need you to do me a favor, I have a lad by the name of Grish Longrunner protecting the Great Lift in the southern barrens. Give him this letter; the letter will let him know that I have a reserve warrior coming to relieve him of duty so that he can visit his family. He requested this sometime ago and he would be happy to hear the news.", + ["O"] = "Maggran wishes you to deliver a letter to Grish Longrunner at the Great Lift in the Barrens.", + ["T"] = "Calling in the Reserves", + }, + [5882] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Salve via Hunting", + }, + [5883] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Salve via Mining", + }, + [5884] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Salve via Gathering", + }, + [5885] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Salve via Skinning", + }, + [5886] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Salve via Disenchanting", + }, + [5887] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Salve via Hunting", + }, + [5888] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Salve via Mining", + }, + [5889] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Salve via Gathering", + }, + [5890] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Salve via Skinning", + }, + [5891] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Salve via Disenchanting", + }, + [5892] = { + ["D"] = "Before the fighting started, we stored supplies for Dun Baldar in the Irondeep mine. The troggs that surfaced there weren\'t much of a problem when we had spare troops to guard the mine, but now that we\'re fighting with the Horde we can\'t maintain control of Irondeep.$B$BWe need the supplies in Irondeep, $N. Enter the mine and bring me a load of them.", + ["O"] = "Bring 10 Irondeep Supplies to the Alliance Quartermaster in Dun Baldar.", + ["T"] = "Irondeep Supplies", + }, + [5893] = { + ["D"] = "The Coldtooth mine to the north was once an ideal place to store extra supplies, but now that the fighting with the Stormpikes grows fierce, we do not always have the spare warriors to station at the mine and protect it. And so, control of the mine often falls to the Alliance, or to underground denizens...$B$BBut we still need our supplies, $N! Go to the Coldtooth mine and bring me a load of them. And be wary of enemies as you go; the tides of battle shift quickly in that place...", + ["O"] = "Bring 10 Coldtooth Supplies to the Horde Quatermaster in Frostwolf Keep.", + ["T"] = "Coldtooth Supplies", + }, + [5901] = { + ["D"] = "So, to bring pain and strife to the Scarlet Crusade, I want to take their precious lumber mill from them. I\'m sure the loss of such a resource will cause them a great deal of harm in defending and rebuilding the town for their own reasons. Will you help me, $N?$B$BStart by taking this jar to Plaguewood in the Eastern Plaguelands. Fill it with the termites you find in their mounds throughout the woods. Come back when you have enough.", + ["O"] = "Use the Empty Termite Jar on the Termite Mounds in Eastern Plaguelands. After you\'ve gathered 100 Plagueland Termites, return to Mickey Levine at the Bulwark in Tirisfal Glades.", + ["T"] = "A Plague Upon Thee", + }, + [5902] = { + ["D"] = "Now that we have plenty of termites, take this steel reinforced barrel to the Northridge Lumber Mill south of Hearthglen--you\'ll find it to the west of the road that leads you up to the town.$B$BOnce there, place the barrel in the center of the lumber mill; someplace high, like on a crate or something.$B$BAfter you open it, the rest should take care of itself. Just come back here and I\'ll reward you for helping me.", + ["O"] = "Find someplace suitable in the center of the Northridge Lumber Mill in Western Plaguelands to place the Barrel of Plagueland Termites.", + ["T"] = "A Plague Upon Thee", + }, + [5903] = { + ["D"] = "I\'ve tried many times to rout out the Scarlet Crusade through force alone, but to no avail. So, as an alternative, I\'ve decided to make their lives more difficult.$B$BIf you are willing to help, I want to infest that lumber mill with the most terrible species of termites ever found.$B$BIn Plaguewood, near the once-great Stratholme, there is a breed that survived the plague and the Scourge combined. Find their mounds and fill this jar with them, so we can prepare them to be unleashed on the Crusade.", + ["O"] = "Use the Empty Termite Jar on the Termite Mounds in Eastern Plaguelands. After you\'ve gathered 100 Plagueland Termites, return to Nathaniel Dumah at Chillwind Camp in Western Plaguelands.", + ["T"] = "A Plague Upon Thee", + }, + [5904] = { + ["D"] = "Now that we have the termites, take this steel reinforced barrel to the Northridge Lumber Mill south of Hearthglen--you\'ll find it to the west of the road that leads you up to the town.$B$BOnce there, place the barrel in the center of the lumber mill; find someplace suitable, like on a crate and then open it. The termites should do their work from there and make the mill useless to the Crusade.", + ["O"] = "Find someplace suitable in the center of the Northridge Lumber Mill in Western Plaguelands to place the Barrel of Plagueland Termites.", + ["T"] = "A Plague Upon Thee", + }, + [5921] = { + ["D"] = "All druids are welcome in the sacred lands of Moonglade, regardless of the current tensions in the Cenarion Circle between Arch Druid Staghelm and Keeper Remulos - Moonglade\'s guardian. Now that you\'re learning the ways of the Claw, I\'ll teach you the spell that lets you transport yourself there. Cast it whenever you seek Moonglade\'s knowledge or solace.$B$BAs for your first lesson, travel to Moonglade and speak with Dendrite Starblaze in Nighthaven about the path you\'re now on. Good luck, young druid.", + ["O"] = "Use the spell \"Teleport: Moonglade\" to travel to Moonglade. When you arrive, speak with Dendrite Starblaze in the village of Nighthaven.", + ["T"] = "Moonglade", + }, + [5922] = { + ["D"] = "All druids are welcomed to the sacred lands of Moonglade, tauren and night elf alike. Keeper Remulos - Moonglade\'s guardian - keeps watch over all druids who hibernate there. Now that you\'re learning the ways of the Claw, I\'ll teach you the spell that lets you transport yourself there. Cast it whenever you seek Moonglade\'s knowledge or solace.$B$BAs for your first lesson, travel to Moonglade and speak with Dendrite Starblaze in Nighthaven about the path you\'re now on. Good luck, young druid.", + ["O"] = "Use the spell \"Teleport: Moonglade\" to travel to Moonglade. When you arrive, speak with Dendrite Starblaze in the village of Nighthaven.", + ["T"] = "Moonglade", + }, + [5923] = { + ["D"] = "Excuse me, friend...$B$BIt has come to my attention that Mathrengyl Bearwalker has put out word that he wishes to speak with you. It seems that your training as a druid is about to take on a new life, and he will be training you personally. Mathrengyl is the direct assistant to the Arch Druid himself, and is one of the most sage and august druids you\'ll find in Teldrassil.$B$BHe is located in the Cenarion Enclave of Darnassus, on the second floor of Fandral Staghelm\'s tree.", + ["O"] = "Speak with Mathrengyl Bearwalker in the Cenarion Enclave, Darnassus.", + ["T"] = "Heeding the Call", + }, + [5924] = { + ["D"] = "Excuse me, friend...$B$BIt has come to my attention that Mathrengyl Bearwalker has put out word that he wishes to speak with you. It seems that your training as a druid is about to take on a new life, and he will be training you personally. Mathrengyl is the direct assistant to the Arch Druid himself, and is one of the most sage and august druids you\'ll find in Teldrassil.$B$BHe is located in the Cenarion Enclave of Darnassus, on the second floor of Fandral Staghelm\'s tree.", + ["O"] = "Speak with Mathrengyl Bearwalker in the Cenarion Enclave, Darnassus.", + ["T"] = "Heeding the Call", + }, + [5925] = { + ["D"] = "Excuse me, friend...$B$BIt has come to my attention that Mathrengyl Bearwalker has put out word that he wishes to speak with you. It seems that your training as a druid is about to take on a new life, and he will be training you personally. Mathrengyl is the direct assistant to the Arch Druid himself, and is one of the most sage and august druids you\'ll find in Teldrassil.$B$BHe is located in the Cenarion Enclave of Darnassus, on the second floor of Fandral Staghelm\'s tree.", + ["O"] = "Speak with Mathrengyl Bearwalker in the Cenarion Enclave, Darnassus.", + ["T"] = "Heeding the Call", + }, + [5926] = { + ["D"] = "Excuse me, friend...$B$BIt has come to my attention that Turak Runetotem has put out word that he wishes to speak with you. It seems that your training as a druid is about to take on a new life, and he will be training you personally. Turak is one of the Arch Druid\'s assistants; he is known as a wise and patient druid, and he should teach you well.$B$BHe is located in Thunder Bluff, inside the Cenarion Circle\'s main tent on the Elder Rise.", + ["O"] = "Speak with Turak Runetotem on the Elder Rise of Thunder Bluff.", + ["T"] = "Heeding the Call", + }, + [5927] = { + ["D"] = "Excuse me, friend...$B$BIt has come to my attention that Turak Runetotem has put out word that he wishes to speak with you. It seems that your training as a druid is about to take on a new life, and he will be training you personally. Turak is one of the Arch Druid\'s assistants; he is known as a wise and patient druid, and he should teach you well.$B$BHe is located in Thunder Bluff, inside the Cenarion Circle\'s main tent on the Elder Rise.", + ["O"] = "Speak with Turak Runetotem on the Elder Rise of Thunder Bluff.", + ["T"] = "Heeding the Call", + }, + [5928] = { + ["D"] = "Excuse me, friend...$B$BIt has come to my attention that Turak Runetotem has put out word that he wishes to speak with you. It seems that your training as a druid is about to take on a new life, and he will be training you personally. Turak is one of the Arch Druid\'s assistants; he is known as a wise and patient druid, and he should teach you well.$B$BHe is located in Thunder Bluff, inside the Cenarion Circle\'s main tent on the Elder Rise.", + ["O"] = "Speak with Turak Runetotem on the Elder Rise of Thunder Bluff.", + ["T"] = "Heeding the Call", + }, + [5929] = { + ["D"] = "In the northwest part of Moonglade resides the home of a wise and noble being we call the Great Bear Spirit. For all druids, it has served as a tutor and mentor into the first true natural understanding of the bear. All druids at one point seek the spirit\'s wisdom, and you shall be no exception.$B$BGo to the Great Bear Spirit now and learn what it will teach. When it is satisfied with you, return to me here in Nighthaven. We will then see if you have truly taken account of the lessons it teaches.", + ["O"] = "Seek out the Great Bear Spirit in northwestern Moonglade and learn what it has to share with you about the nature of the bear. When finished, return to Dendrite Starblaze in Nighthaven, Moonglade.", + ["T"] = "Great Bear Spirit", + }, + [5930] = { + ["D"] = "In the northwest part of Moonglade resides the home of a wise and noble being we call the Great Bear Spirit. For all druids, it has served as a tutor and mentor into the first true natural understanding of the bear. All druids at one point seek the spirit\'s wisdom, and you shall be no exception.$B$BGo to the Great Bear Spirit now and learn what it will teach. When it is satisfied with you, return to me here in Nighthaven. We will then see if you have truly taken account of the lessons it teaches.", + ["O"] = "Seek out the Great Bear Spirit in northwestern Moonglade and learn what it has to share with you about the nature of the bear. When finished, return to Dendrite Starblaze in Nighthaven, Moonglade.", + ["T"] = "Great Bear Spirit", + }, + [5931] = { + ["D"] = "The time has come for us to part ways, young one, as the application of your lessons takes you back to whom that sent you to me. Mathrengyl Bearwalker walks truly in balance with nature, even as he dwells precariously close to where the balance has faltered. Listen to his instructions, and you will soon complete your first lessons into your role as a protector of balance.$B$BGo now, young one. We shall meet again.", + ["O"] = "Return to Darnassus and speak with Mathrengyl Bearwalker in the Cenarion Enclave.", + ["T"] = "Back to Darnassus", + }, + [5932] = { + ["D"] = "The time has come for us to part ways, young one, as the application of your lessons takes you back to whom that sent you to me. Though the tauren are thought to be young in the ways of Cenarius, Turak Runetotem walks with much balance in the presence of nature. Listen to his instructions, and you will soon complete your first lessons into your role as a protector of balance.$B$BGo now, young one. We shall meet again.", + ["O"] = "Return to Thunder Bluff and speak with Turak Runetotem on the Elder Rise.", + ["T"] = "Back to Thunder Bluff", + }, + [5941] = { + ["D"] = "You have gathered many relics of the battle of Darrowshire. Each time you returned with more, my heart yearned for my village... yearned to protect it from its fate.$B$BI know that cannot be, but Chromie, that strange gnome in Andorhal, tells me it is possible. She says you can save Darrowshire!$B$BShe asked me to gather together the relics, and to have you bring them to her. She said that she awaits you in the ruined inn of Andorhal.", + ["O"] = "Take the Bundle of Relics to Chromie in Andorhal.", + ["T"] = "Return to Chromie", + }, + [5942] = { + ["D"] = "Daddy told me to give you this key. He said it opens a chest out back behind the house.$B$BHe also wanted me to thank you. Did you do a favor for him? Did you tell him you found my doll?$B$BWell here\'s the key. And thank you $N. Thank you! You\'re a very nice $gman:lady;!", + ["O"] = "Bring Joseph\'s Key to Joseph\'s Chest.", + ["T"] = "Hidden Treasures", + }, + [5943] = { + ["D"] = "You look like a capable $r. Perhaps you\'re looking to make some money? Cork and I started this caravan to make a bundle of money; little did we know the dangers of turning a buck!$B$BUp ahead is Mannoroc Coven... normally the demons ignore us but something has the kodos spooked this time. I\'ll pay you to protect the caravan past Mannoroc Coven. Once we are safely past you can receive your reward from our business associate Smeed at Scrabblescrew\'s Camp.", + ["O"] = "Escort the Gizelton Caravan through Mannoroc Coven. Talk with Smeed at Scrabblescrew\'s Camp for your reward.", + ["T"] = "Gizelton Caravan", + }, + [5944] = { + ["D"] = "For so long, I have been a puppet of the Grand Crusader. What reason was there to fight against what the Scarlet Crusade had become? It has been decades, yet the memories of my father; those precious memories, they are what have kept me alive.$B$BI have dreams, stranger. In these dreams my father is with me. He stands proudly at my side as I am inducted into the Order. We battle legion of Scourge, side by side. We bring honor to the Alliance, to Lordaeron.$B$BI want not to dream anymore.$B$BTake me to him.", + ["O"] = "Escort Taelan Fordring out of Hearthglen.", + ["T"] = "In Dreams", + }, + [5961] = { + ["D"] = "It pleases me greatly to see the battle hardened join our cause. Our numbers grow in size and strength as each day passes. Perhaps you are prepared to test your mettle, $c?$B$BAmong the first of my champions was Nathanos, now known as the Blightcaller. Few exist with more dedication or vigor amidst our ranks.$B$BSeek him out in the Eastern Plaguelands. He resides at the Marris Stead; occasionally roaming the decimated wastes, slaying all Scourge and Alliance filth that cross his path.", + ["O"] = "Speak with Nathanos Blightcaller in the Eastern Plaguelands. He is said to have taken up residence at the Marris Stead.", + ["T"] = "The Champion of the Banshee Queen", + }, + [5981] = { + ["D"] = "Around 4,000 years ago, Tyrande Whisperwind saved the life of the frostsaber queen, at the hands of rampaging giants. Since then, the frostsabers have been allies of the night elves.$B$BThese same giants that once were a danger to the frostsabers, still exist not too far from here. They are called the frostmaul, and they have taken over the large valley to the south.$B$BProve your loyalty to the frostsabers; kill these giants in the name of the frostsaber queen, Shy-Rotam!", + ["O"] = "Rivern Frostwind wants you to kill 4 Frostmaul Giants and 4 Frostmaul Preservers.", + ["T"] = "Rampaging Giants", + }, + [6000] = { + ["D"] = "$N! I would not have expected to see you in the area were however instructed to hold after you look out.$B$BHighest one time of your training is continued. With the next attendance in Stormwind should you with Gakin clean-look. $B$BIt will expect you.", + ["O"] = "Announces you to Gakin the Darkbinder in the Magic quarter of Stormwind.", + ["T"] = "Swearing to Gakin", + }, + [6001] = { + ["D"] = "Directly east of Auberdine lay many moonkin caves. The one closest to Auberdine has a Moonkin Stone inside it. Lunaclaw, the defender of the stone, will face you only when Cenarion Moondust is applied to it. Lunaclaw possesses within it a strength that you must use as one of the Claw.$B$BYou\'ve earned the right to use this Cenarion Moondust, $N... now show me that you\'ve earned the right to possess the strength of body and the strength of heart needed as a druid!", + ["O"] = "Use the Cenarion Moondust on the Moonkin Stone of Auberdine to bring forth Lunaclaw. From there, you must face Lunaclaw and earn the strength of body and heart it possesses.$B$BSpeak with Mathrengyl Bearwalker in Darnassus when you are done.", + ["T"] = "Body and Heart", + }, + [6002] = { + ["D"] = "On land west of Taurajo in the Barrens - just before it turns into Mulgore - lies a Moonkin Stone. The moonkin are special beasts, not native to these parts. Lunaclaw, the stone\'s defender, will face you when Cenarion Lunardust is applied to it. Lunaclaw possesses within it a strength that you must use as one of the Claw.$B$BYou\'ve earned the right to use this Cenarion Lunardust, $N... now show me that you\'ve earned the right to possess the strength of body and the strength of heart needed as a druid!", + ["O"] = "Use the Cenarion Lunardust on the Moonkin Stone between Mulgore and the Barrens to bring forth Lunaclaw. From there, you must face Lunaclaw and earn the strength of body and heart it possesses.$B$BSpeak with Turak Runetotem in Thunder Bluff when you are done.", + ["T"] = "Body and Heart", + }, + [6004] = { + ["D"] = "I was sent as a scout to do some damage and gauge the strength of Hearthglen\'s defenses. Some people in the Alliance feel the little town has more than historical importance. It\'s not my job to question what that importance is, but regardless, I\'m in no shape to continue until I rest up.$B$BIf you\'re willing, I\'d pay handsomely for some help. Start south of here at their camp near the small bulwark they\'ve set up. If you prove strong enough, maybe I could get your help with my main goal.", + ["O"] = "Kill 2 Scarlet Medics, 2 Scarlet Hunters, 2 Scarlet Magi and 2 Scarlet Knights before returning to Kirsta Deepshadow in Western Plaguelands.", + ["T"] = "Unfinished Business", + }, + [6021] = { + ["D"] = "Can you believe that, after all the trouble we have in the plaguelands... we have to worry about thieves too? And not just normal thieves, troll thieves.$B$BAnd not just normal troll thieves. Dead troll thieves!$B$BThey\'re led by this big, dead troll named Zaeldarr the Outcast, and they come here at night and steal bodies from the pit below, then take them back to their evil, dead troll hideout--the Undercroft to the west.$B$BGo there and take out Zaeldarr, $N. I\'m sick to death of his mischief!", + ["O"] = "Bring Zaeldarr\'s Head to Caretaker Alen at Light\'s Hope Chapel.", + ["T"] = "Zaeldarr the Outcast", + }, + [6022] = { + ["D"] = "You kill with purpose while you remain on my stead.$B$BYour first task is to feed my hounds.$B$BTake this mortar and pestle and travel to Corin\'s Crossing. Once there, you will find a robust selection of Scourge to slaughter. From their fresh carcasses I need living rot. Take that living rot and grind it up in the mortar, then let it sit to coagulate. Bring the coagulated rot back here.$B$BAnd imbecile, realize that living rot from the undead doesn\'t remain \'living\' for very long. You must kill quickly!", + ["O"] = "Travel to Corin\'s Crossing to the east and slaughter the Scourge that inhabit the town. Collect 7 pieces of Living Rot in under 10 minutes. Use the Mortar and Pestle to grind the Living Rot into Coagulated Rot.", + ["T"] = "To Kill With Purpose", + }, + [6023] = { + ["D"] = "My real mission was to weaken the Scarlet Crusade\'s outlying forces and then infiltrate Hearthglen to gauge their numbers. I\'m still in no shape to do it on my own, so perhaps I could ask you to aid me again, $N? From what information I gathered before being discovered, the Crusade has two important members that are the backbone of their forces outside the town: Huntsman Radley and Cavalier Durgen. Kill them, and we\'re making progress. They should be along Hearthglen Pass outside the town proper.", + ["O"] = "Kill Huntsman Radley and Cavalier Durgen before returning to Kirsta Deepshadow in Western Plaguelands.", + ["T"] = "Unfinished Business", + }, + [6024] = { + ["D"] = "Kill me. Before it\'s too late.$B$BI am Hameya. While traveling to Zul\'Mashar, my brethren and I ate some bad meat... and we changed. We are infected.$B$BI can feel the lich\'s words now, urging me to reach Zul\'Mashar and infect more of my people. I cannot resist, and so I wrote this scroll before my will left me.$B$BI buried a chest in dirt next to a wagon behind this crypt, but only my key will open it. I have the key. If you want my treasure, then find me.$B$BKill me. Before it\'s too late.", + ["O"] = "Kill Infiltrator Hameya. Use his key on the Mound of Dirt behind the Undercroft.", + ["T"] = "Hameya\'s Plea", + }, + [6025] = { + ["D"] = "What? Really? You want to know more? But you\'ve already done so much for me, $N. I couldn\'t possibly ask you to enter Hearthglen itself on my behalf.$B$BAre you sure, $N? Hearthglen is much more dangerous than the Pass--I cannot provide you any protection or even information about what you might face.$B$BWell, if you really are willing to help, then enter the town and find a high place to gain a good view of the town. From there you can gauge their numbers and report them back to me. But be careful....", + ["O"] = "Enter Hearthglen and find a high vantage point from which you can see the town and gauge the Scarlet Crusade\'s forces, then return to Kirsta Deepshadow in Western Plaguelands.", + ["T"] = "Unfinished Business", + }, + [6026] = { + ["D"] = "These here Argent Dawn people commissioned ol\' Smokey to do a little demolition work for \'em. Smokey\'s mammy ain\'t raised no dummy. When gold coin is slapped on the table, Smokey\'s services are available. That\'s my motto!$B$BNow I\'d be willing to split the commission with you if you\'re willing to do a little legwork. Here\'s the deal: I\'m going to head over to Plaguewood and mark the buildings we need destroyed. You gather the components for the bombs. Meet back here when you\'ve got everything. Deal?", + ["O"] = "Smokey LaRue wants you to get 2 Thorium Bars, 1 Golden Rod, 8 Hi-Explosive Bombs, and 8 Unstable Triggers.$B$BYou will have to find a blacksmith and an engineer for these items.", + ["T"] = "That\'s Asking A Lot", + }, + [6027] = { + ["D"] = "$n, I entrust you with the Gem of the Serpent. Place this gem on the Serpent Statue\'s hand on Ranazjar Isle, a small island northwest of here. Placing it will summon the one who protects the Book of the Ancients. This book contains the secrets of the naga, secrets that have been kept for centuries. Bring this book to me, and we will learn much about our scaled foes!", + ["O"] = "Get the Book of the Ancients and return it to Azore Aldamort at the tower in Ethel Rethor.", + ["T"] = "Book of the Ancients", + }, + [6028] = { + ["D"] = "I am looking for a responsible individual to aid me in a small but nonetheless important matter. I\'m here as a representative of the Argent Dawn\'s interests to the local governance of Everlook. I need to get a progress report to Argent Officer Pureheart at Chillwind Camp; it\'s a ways from here, located along the southern fringe of the Western Plaguelands.$B$BIf I may be so bold - this would be a perfect means to introduce yourself to my superior and perhaps earn some work from her!", + ["O"] = "Deliver the Everlook Report to Argent Officer Pureheart at Chillwind Camp, Western Plaguelands.", + ["T"] = "The Everlook Report", + }, + [6029] = { + ["D"] = "I\'m looking for a responsible individual to aid me in a small but nonetheless important matter. I\'m here as a representative of the Argent Dawn\'s interests to the local governance of Everlook. I need to get a progress report to Argent Officer Garush at the Bulwark; it\'s a ways from here, located along the western fringe of the Western Plaguelands, east of Tirisfal Glades.$B$BIf I may be so bold - this would be a perfect means to introduce yourself to my superior and perhaps earn some work from him!", + ["O"] = "Deliver the Everlook Report to Argent Officer Garush at the Bulwark, Western Plaguelands.", + ["T"] = "The Everlook Report", + }, + [6030] = { + ["D"] = "A recluse medium found in these parts by the name of Umbranse has provided the Argent Dawn with quite a literary masterpiece... one that amounts to quite possibly the largest collection of jibber-jabber I\'ve ever seen written.$B$BOne of the Dawn\'s most respected leaders, Duke Nicholas Zverenhoff, is a brilliant linguist. Could you take this to him for me - for a reward, of course? Light\'s Hope Chapel - that\'s where he\'s currently at, far in the eastern part of the Eastern Plaguelands.", + ["O"] = "Deliver the book, \"Studies in Spirit Speaking\", to Duke Nicholas Zverenhoff at Light\'s Hope Chapel, Eastern Plaguelands.", + ["T"] = "Duke Nicholas Zverenhoff", + }, + [6031] = { + ["D"] = "In Timbermaw, we are content. We do not like strangers. This is good for us, but it is bad for trade.$B$BNot long ago, a rare night elf friend came to Timbermaw and she wore a runecloth cloak. Runecloth is rare among us, but the cloak was so fine my people want me to make more runecloth clothing.$B$BWill you bring me runecloth? If you bring me enough, then I will give you something in trade.", + ["O"] = "Bring 30 Runecloth to Meilosh in Timbermaw Hold.", + ["T"] = "Runecloth", + }, + [6032] = { + ["D"] = "Although the people of Timbermaw delight in the feel of runecloth, it is not sacred to us. But mooncloth is sacred.$B$BBring me a small supply of this holy cloth, and I will teach you a secret fashioning technique. ", + ["O"] = "Bring 2 Mooncloth to Meilosh in Timbermaw Hold.", + ["T"] = "Sacred Cloth", + }, + [6041] = { + ["D"] = "While you were gathering the supplies, I had some of my people handle marking the Scourge buildings we need demolished.$B$BHere\'s the plan: I\'m going to give you ten sticks of my special compound. You\'re going to take them over to Plaguewood and plant them inside the Scourge structures that I\'ve had marked for detonation.$B$B$B$BBing! It\'s just that easy.", + ["O"] = "Travel to Plaguewood, northwest of Light\'s Hope. Destroy 8 Scourge Structures by using Smokey\'s Special Compound at the Mark of Detonation planted inside each building. Smokey has had the Ziggurats and Slaughterhouses marked.$B$BOnce you plant the bomb, leave the building and marvel at your handiwork.$B$BBy the way, Smokey\'s Special Compound is rather... unstable.", + ["T"] = "When Smokey Sings, I Get Violent", + }, + [6042] = { + ["D"] = "You cannot take two steps off of this farm without running into one of those obnoxious bats. I want to be able to take the hounds out and slaughter Scourge without being accosted by any damned, dirty bats. Obviously, I have better things to do with my time than mindlessly kill bats day in and day out. You, however, do not.$B$BWhat? Your training? This is your training! Now get out of my sight and don\'t come back until you\'ve killed a fair number of those winged demons. Don\'t disappoint me.", + ["O"] = "Slay 20 Noxious Plaguebats and 10 Monstrous Plaguebats. Return to Nathanos Blightcaller when you are finished.", + ["T"] = "Un-Life\'s Little Annoyances", + }, + [6061] = { + ["D"] = "As a tauren, it is important to follow the traditions of our ancestors by fighting mighty creatures. By besting these creatures, we are able to intake their spirits, allowing us to become closer to the Earthmother.$B$BIn the same way, taming a beast to fight alongside us helps us become one with nature around us. Eventually, you will learn to tame a beast of your choosing. But all things take practice, and you have much to learn. Begin by taking this taming rod; you must tame an adult plainstrider.", + ["O"] = "Use the Taming Rod to tame an Adult Plainstrider. Practice your skills, then return the Taming Rod to Yaw Sharpmane in Bloodhoof Village.", + ["T"] = "Taming the Beast", + }, + [6062] = { + ["D"] = "It is an admirable skill to command one\'s authority over nature. As a hunter, you must strive to learn to use the force and power inherent to any creature of your choosing.$B$BGaining control of an animal is not an easy feat; it is a task that you must undertake with much determination.$B$BFor your first assignment, take this taming rod and use it to tame a dire mottled boar. You can find them quite close to Razor Hill. Practice your skills in battle with the boar at your side, then return to me.", + ["O"] = "Use the Taming Rod to tame a Dire Mottled Boar. Practice your skills, then return the Taming Rod to Thotar in Razor Hill.", + ["T"] = "Taming the Beast", + }, + [6063] = { + ["D"] = "As a hunter, it is important to remember the responsibility you hold in your hands. Nature is not a power that can be bent to obey our desires; it is one that is to be respected and acknowledged as something stronger than your very existence.$B$B$N, you must prove your understanding of this before you will gain the ability to tame an animal to be your companion.$B$BYour first task is to take this taming rod. With it, you will be able to tame a webwood lurker. Tame it, and practice your skills as a hunter.", + ["O"] = "Use the Taming Rod to tame a Webwood Lurker. Practice your skills, then return the Taming Rod to Dazalar in Dolanaar.", + ["T"] = "Taming the Beast", + }, + [6064] = { + ["D"] = "Hi there, $Glad:lass;! So, you\'d be wanting to know how you can gain a pet of your own?$B$BWell, let\'s get started. There\'s nothing more important than yer equipment when it comes to hunting, but we can chat about my new Shrapnel Blaster some other time. Fer now, let\'s focus on something I\'m sure you\'re quite interested in: a pet!$B$BThe best way to learn is for you to try out several creatures as companions and see what ya like. So, find a large crag boar, then use the taming rod to tame it.", + ["O"] = "Use the Taming Rod to tame a Large Crag Boar. Practice your skills, then return the Taming Rod to Grif Wildheart in Kharanos.", + ["T"] = "Taming the Beast", + }, + [6065] = { + ["D"] = "Hello, young hunter. You look to me like you are skilled enough to handle a beast and train it as your companion.$B$BYou must see Yaw Sharpmane in Bloodhoof Village. He can put you on the path to earning a pet of your own.", + ["O"] = "Speak with Yaw Sharpmane in Bloodhoof Village.", + ["T"] = "The Hunter\'s Path", + }, + [6066] = { + ["D"] = "Hello, young hunter. You look to me like you are skilled enough to handle a beast and train it as your companion.$B$BYou must see Yaw Sharpmane in Bloodhoof Village. He can put you on the path to earning a pet of your own.", + ["O"] = "Speak with Yaw Sharpmane in Bloodhoof Village.", + ["T"] = "The Hunter\'s Path", + }, + [6067] = { + ["D"] = "Hello, young hunter. You look to me like you are skilled enough to handle a beast and train it as your companion.$B$BYou must see Yaw Sharpmane in Bloodhoof Village. He can put you on the path to earning a pet of your own.", + ["O"] = "Speak with Yaw Sharpmane in Bloodhoof Village.", + ["T"] = "The Hunter\'s Path", + }, + [6068] = { + ["D"] = "Hello, young hunter. You look to me like you are skilled enough to handle a beast and train it as your companion.$B$BYou must see Thotar at Razor Hill. He can put you on the path to earning a pet of your own.", + ["O"] = "Speak with Thotar at Razor Hill.", + ["T"] = "The Hunter\'s Path", + }, + [6069] = { + ["D"] = "Hello, young hunter. You look to me like you are skilled enough to handle a beast and train it as your companion.$B$BYou must see Thotar at Razor Hill. He can put you on the path to earning a pet of your own.", + ["O"] = "Speak with Thotar at Razor Hill.", + ["T"] = "The Hunter\'s Path", + }, + [6070] = { + ["D"] = "Hello, young hunter. You look to me like you are skilled enough to handle a beast and train it as your companion.$B$BYou must see Thotar at Razor Hill. He can put you on the path to earning a pet of your own.", + ["O"] = "Speak with Thotar at Razor Hill.", + ["T"] = "The Hunter\'s Path", + }, + [6071] = { + ["D"] = "Hello, young hunter. You look to me like you are skilled enough to handle a beast and train it as your companion.$B$BYou must see Dazalar in Dolanaar. He can put you on the path to earning a pet of your own.", + ["O"] = "Speak with Dazalar in Dolanaar.", + ["T"] = "The Hunter\'s Path", + }, + [6072] = { + ["D"] = "Hello, young hunter. You look to me like you are skilled enough to handle a beast and train it as your companion.$B$BYou must see Dazalar in Dolanaar. He can put you on the path to earning a pet of your own.", + ["O"] = "Speak with Dazalar in Dolanaar.", + ["T"] = "The Hunter\'s Path", + }, + [6073] = { + ["D"] = "Hello, young hunter. You look to me like you are skilled enough to handle a beast and train it as your companion.$B$BYou must see Dazalar in Dolanaar. He can put you on the path to earning a pet of your own.", + ["O"] = "Speak with Dazalar in Dolanaar.", + ["T"] = "The Hunter\'s Path", + }, + [6074] = { + ["D"] = "Hello, young hunter. You look to me like you are skilled enough to handle a beast and train it as your companion.$B$BYou must see Grif Wildheart in Kharanos. He can put you on the path to earning a pet of your own.", + ["O"] = "Speak with Grif Wildheart in Kharanos.", + ["T"] = "The Hunter\'s Path", + }, + [6075] = { + ["D"] = "Hello, young hunter. You look to me like you are skilled enough to handle a beast and train it as your companion.$B$BYou must see Grif Wildheart in Kharanos. He can put you on the path to earning a pet of your own.", + ["O"] = "Speak with Grif Wildheart in Kharanos.", + ["T"] = "The Hunter\'s Path", + }, + [6076] = { + ["D"] = "Hello, young hunter. You look to me like you are skilled enough to handle a beast and train it as your companion.$B$BYou must see Grif Wildheart in Kharanos. He can put you on the path to earning a pet of your own.", + ["O"] = "Speak with Grif Wildheart in Kharanos.", + ["T"] = "The Hunter\'s Path", + }, + [6081] = { + ["D"] = "You now have the power to tame a pet, but you must also gain the skills to train it.$B$BTravel to Orgrimmar. There you must speak to one of our most revered hunters, Ormak Grimshot. He will give you the ability to train your new pet. You will find him near the Hall of the Brave.$B$BGood luck, $N.", + ["O"] = "Speak with Ormak Grimshot in Orgrimmar.", + ["T"] = "Training the Beast", + }, + [6082] = { + ["D"] = "The final creature you need to tame is one you should strive to emulate; the armored scorpid. It strikes quickly and confidently; to control a force such as this is your fate as a hunter.$B$BWhen you return, I will bestow you with the skills you will need to tame an animal of your choosing; this creature will be yours to command. Under your control, your pet will gain experience alongside you. I will also show you how to call it and dismiss it as you wish.", + ["O"] = "Use the Taming Rod to tame an Armored Scorpid. Practice your skills, then return to Thotar at Razor Hill.", + ["T"] = "Taming the Beast", + }, + [6083] = { + ["D"] = "The advantage a pet affords you against your rivals is duly noted, $N. When you gain control over another creature, you are adding to your own strength. Your pet must become an extension of yourself.$B$BThe next task requires you to turn from the land; you will find the next creature in the waters off the coast. Across from Sen\'jin Village, near the Echo Isles. look for a spirited crab called the surf crawler. Use the taming rod to tame it, then practice your skills.", + ["O"] = "Use the Taming Rod to tame a Surf Crawler. Practice your skills, then return the Taming Rod to Thotar at Razor Hill.", + ["T"] = "Taming the Beast", + }, + [6084] = { + ["D"] = "Those crag boars are quite burly; maybe you\'d like something with a little more finesse? Alright then, I\'ve got jus\' the thing. South and east of here, you\'ll find large white cats called snow leopards. Just like an elegantly-carved rifle, behind their beautiful exterior lies a powerful fighter, capable of doing extreme damage. You\'ll find them to be much more agile an\' swift than the boar you tamed.$B$BTake this taming rod and see how you like the snow leopard.", + ["O"] = "Use the Taming Rod to tame a Snow Leopard. Practice your skills, then return to Grif Wildheart in Kharanos.", + ["T"] = "Taming the Beast", + }, + [6085] = { + ["D"] = "Perhaps you\'d like a creature that possesses little more than brute strength. The ice claw bear is an excellent companion for a fledgling hunter like yourself, and can be found east of Kharanos. Here is the taming rod; try this animal as a pet and see if ya like it!$B$BWhen you return, I\'ll give ya the skills you will need to tame an animal of your choosing; this creature will face the challenges you face, and gain experience alongside you. I will also show you how to call it and dismiss it as ya like.", + ["O"] = "Use the Taming Rod to tame an Ice Claw Bear. Practice your skills, then return the Taming Rod to Grif Wildheart in Kharanos.", + ["T"] = "Taming the Beast", + }, + [6086] = { + ["D"] = "$N, ya now have the power to tame a pet, but you must also gain the skills ta train it.$B$BTravel to Ironforge and find the Hall of Arms. There you must speak to one of our most revered animal trainers, Belia Thundergranite. She\'ll give ya the power to train your new pet, so get goin\', $Glad:lass;!$B$BBelia is a friendly sort; you should have no problems gaining her approval. Good luck, $N.", + ["O"] = "Speak with Belia Thundergranite in Ironforge.", + ["T"] = "Training the Beast", + }, + [6087] = { + ["D"] = "You have a fiery spirit, hunter, readily awaiting your next challenge.$B$BYour next task is to gain the companionship of a wolf known as the prairie stalker. This creature is swift and fearless; in taking this beast as your pet, you must also take on these qualities.$B$BDuring a battle, you will learn how you and your pet will become a team. In the end you must work as one, muscle to muscle.$B$BHere is the taming rod, $N. Tame a prairie stalker and practice your skills.", + ["O"] = "Use the Taming Rod to tame a Prairie Stalker. Practice your skills, then return the Taming Rod to Yaw Sharpmane in Bloodhoof Village.", + ["T"] = "Taming the Beast", + }, + [6088] = { + ["D"] = "The final task that I have for you requires that you tame a creature that inhabits the sky. The swoop is a difficult opponent, but as your ally, you will acquire its sharp attacks and threatening presence.$B$BBy the will of the Earthmother, when you return I will bestow you with the skills you will need to tame an animal of your choosing to be your companion; this creature will face the challenges you face, and gain experience alongside you. I will also show you how to call it and dismiss it as you wish.", + ["O"] = "Use the Taming Rod to tame a Swoop. Practice your skills, then return the Taming Rod to Yaw Sharpmane in Bloodhoof Village.", + ["T"] = "Taming the Beast", + }, + [6089] = { + ["D"] = "You now have the power to tame a pet, but you must also gain the skills to train it.$B$BTravel to Thunder Bluff. There you must speak to one of our most revered hunters, Holt Thunderhorn. If he deems you worthy, he will give you the ability to train your new pet.$B$BHolt has bested the most powerful and feared beasts of Azeroth, and commands many strong creatures of his own. His ties to the Earthmother are strong, and you can learn much from him. Good luck, $N.", + ["O"] = "Speak with Holt Thunderhorn on Hunter Rise in Thunder Bluff.", + ["T"] = "Training the Beast", + }, + [6101] = { + ["D"] = "The variance of nature is something that can be relied upon, $N. It is predictable in the way that it never remains the same; it is always changing.$B$BThe tasks I give to you will help you to see and appreciate the vast differences of the creatures you may choose as your companion.$B$BTake this taming rod and use it to tame a nightsaber stalker, found to the south. Practice your skills as a hunter. Then you will begin to understand the similarities and differences of nature.", + ["O"] = "Use the Taming Rod to tame a Nightsaber Stalker. Practice your skills, then return the Taming Rod to Dazalar in Dolanaar.", + ["T"] = "Taming the Beast", + }, + [6102] = { + ["D"] = "You have tamed two creatures that inhabit the land, now you must tame one that soars the skies. Use the taming rod to tame a strigid screecher, found west of here. Practice your skills with this mighty owl at your side.$B$BWhen you return, I will bestow you with the skills you will need to tame an animal of your choosing to be your companion; this creature will face the challenges you face, and gain experience alongside you. I will also show you how to call it and dismiss it as you wish.", + ["O"] = "Use the Taming Rod to tame a Strigid Screecher. Practice your skills, then return the Taming Rod to Dazalar in Dolanaar.", + ["T"] = "Taming the Beast", + }, + [6103] = { + ["D"] = "You now have the power to tame a pet, but you must also gain the skills to train it.$B$BTravel to Darnassus. There you must speak to one of our most revered hunters, Jocaste. She will give you the ability to train your new pet, so make haste.$B$BWhile Jocaste may seem stern, she is always pleased to see another hunter rising through the ranks. Treat her with respect and she will return in kind. Good luck, $N.", + ["O"] = "Speak to Jocaste in the Cenarion Enclave, in Darnassus.", + ["T"] = "Training the Beast", + }, + [6121] = { + ["D"] = "You\'re now ready to learn about poison and the power we as druids have over it, $N. Cenarius has blessed us with the ability to purge even the most foul of poisons with but a mere incantation. This gift is not to be taken lightly... and to ensure you learn this lesson, you\'ll work to address the effects of poisonings as a layman would.$B$BTravel to Moonglade and speak with Dendrite Starblaze; he awaits your arrival to begin your lesson.", + ["O"] = "Travel to Moonglade and speak with Dendrite Starblaze in the village of Nighthaven.", + ["T"] = "Lessons Anew", + }, + [6122] = { + ["D"] = "The Cliffspring Falls in Darkshore serves as the principal source of drinking water for the region, and now I suspect it is the principal source of the poison that is harming the local fauna - deer specifically. Use this sampler to draw some water from the mouth of the cave; be careful, as dangerous naga now reside in a cave by the falls.$B$BOnce filled, deliver it to Alanndarian Nightsong in Auberdine. She is the one that requested our aid, and you will work with her to address this malady.", + ["O"] = "Use the Empty Cliffspring Falls Sampler to draw a sample of water from the mouth of the cave by the falls.$B$BDeliver the Filled Cliffspring Falls Sampler to Alanndarian Nightsong in Auberdine, Darkshore.", + ["T"] = "The Principal Source", + }, + [6123] = { + ["D"] = "The water will serve as the base of the curative salve I\'ll make for the deer. For curative properties, I need some earthroot. Herbalists know how to find it, so if we\'re unlucky and you aren\'t one then you\'ll need to find one to help us out.$B$BFinally for potency, I need some lunar fungus. Finding lunar fungal blooms is easy enough; they\'re all over the place in caves just to the east of here. Moonkin reside in the caves and they\'re irritable as of late, so be careful.", + ["O"] = "Bring 5 Earthroot and 12 Lunar Funguses to Alanndarian Nightsong in Auberdine so she may make a curative salve.", + ["T"] = "Gathering the Cure", + }, + [6124] = { + ["D"] = "The amount of salve made out of the reagents you brought me is good enough for ten doses, $N. While I work with the village to try and make some more salve, I\'d like for you to help us get a head start. All around Darkshore are sickly deer; use the salve on them and cure their malaise.$B$BDendrite Starblaze in Moonglade will want to talk to you when you\'re done, I\'m sure. Please extend Auberdine\'s thanks to the Cenarion Circle there... and let me say thanks to you directly for the help you\'ve given!", + ["O"] = "Use the Curative Animal Salve on 10 Sickly Deer that are located throughout Darkshore; doing so should cure them. Sickly Deer have been reported starting south of the Cliffspring River to the north of Auberdine and extending all the way into southern Darkshore where the edge of Ashenvale begins.", + ["T"] = "Curing the Sick", + }, + [6125] = { + ["D"] = "You\'ve learned what it means to cure poison without the benefit of spiritual aid. Remember what others must endure in fighting poisonous afflictions as you soon embrace your newfound power over poison.$B$BYou should now return to Mathrengyl Bearwalker in Darnassus, $N. He, no doubt, has a very important spell to teach you now that the student understands the lesson given unto $g him : her;.$B$BFarewell, young druid. We shall speak again.", + ["O"] = "Return to Mathrengyl Bearwalker in the Cenarion Enclave, Darnassus.", + ["T"] = "Power over Poison", + }, + [6126] = { + ["D"] = "You\'re now ready to learn about poison and the power we as druids have over it, $N. Cenarius has blessed us with the ability to purge even the most foul of poisons with but a mere incantation. This gift is not to be taken lightly... and to ensure you learn this lesson, you\'ll work to address the effects of poisonings as a layman would.$B$BTravel to Moonglade and speak with Dendrite Starblaze; he awaits your arrival to begin your lesson.", + ["O"] = "Travel to Moonglade and speak with Dendrite Starblaze in the village of Nighthaven.", + ["T"] = "Lessons Anew", + }, + [6127] = { + ["D"] = "Dreadmist Peak to the northwest of the Crossroads is most likely a primary candidate as to the source of the spread of the poison. Its airy peaks have pools of water that influence the weather patterns. I suspect the water is now tainted by the demon-worshipping Burning Blade.$B$BUse this sampler to draw water from the pool at the very top of the peak. Once filled, deliver it to Tonga Runetotem at the Crossroads. He is the one that requested our aid, and you will work with him to address this malady.", + ["O"] = "Use the Empty Dreadmist Peak Sampler to draw a sample of water from a pool at the top of the peak.$B$BDeliver the Filled Dreadmist Peak Sampler to Tonga Runetotem at the Crossroads, Barrens.", + ["T"] = "The Principal Source", + }, + [6128] = { + ["D"] = "The water will serve as the base of the curative salve I shall make for the gazelles. For curative properties, I need some earthroot. Herbalists know how to find it, so if you are not familiar with this skill you\'ll need to find one to help us out.$B$BFinally for potency, I need kodo horns - mere chips and fragments will not suffice. Kodos you can handle wander the northern part of the Barrens; bring some down for the greater good of the balance $N, and fetch the horns for me.", + ["O"] = "Bring 5 Earthroot and 5 Kodo Horns to Tonga Runetotem at the Crossroads so he may make a curative salve.", + ["T"] = "Gathering the Cure", + }, + [6129] = { + ["D"] = "I was able to make enough salve for ten doses of curing, $N. While I work with local authorities to try and make some more salve, I\'d like for you to help us get a head start. All around the northern Barrens are sickly gazelles; use the salve on them and cure their malaise.$B$BDendrite Starblaze in Moonglade will want to talk to you when you\'re done, I\'m sure. Please extend our thanks to the Cenarion Circle there... and let me say thanks to you directly for the help you\'ve given!", + ["O"] = "Use the Curative Animal Salve on 10 Sickly Gazelles that are located throughout the northern part of the Barrens; doing so should cure them. Sickly Gazelles have been reported north of the east-west road that runs through the Crossroads.", + ["T"] = "Curing the Sick", + }, + [6130] = { + ["D"] = "You\'ve learned what it means to cure poison without the benefit of spiritual aid. Remember what others must endure in fighting poisonous afflictions as you soon embrace your newfound power over poison.$B$BYou should now return to Turak Runetotem in Thunder Bluff, $N. He, no doubt, has a very important spell to teach you now that the student understands the lesson given unto $g him : her;.$B$BFarewell, young druid. We shall speak again.", + ["O"] = "Return to Turak Runetotem on the Elder Rise, Thunder Bluff.", + ["T"] = "Power over Poison", + }, + [6131] = { + ["D"] = "The Timbermaw are the only furbolg tribe to escape the corruption. However, many other races kill furbolg blindly now, without bothering to see if they are friend or foe. For this reason, the Timbermaw furbolg trust very few.$B$B Are you interested in proving yourself? Drive back the corrupted Deadwood tribe and we may one day consider you an ally. You\'ll find the Deadwood warriors, pathfinders and gardeners to the south.", + ["O"] = "Grazle wants you to prove yourself by killing 7 Deadwood Warriors, 7 Deadwood Pathfinders, and 7 Deadwood Gardeners.", + ["T"] = "Timbermaw Ally", + }, + [6132] = { + ["D"] = "Get me out of here!$B$BI came up to the Valley of Spears to talk to the Maraudines. I thought I could do a little business with them... but they don\'t want to talk! I think they want to eat me!$B$BGet me out of here and my brother Hornizz will pay you big! He\'s at our camp next to the kodo graveyard, to the east.$B$BLet\'s hurry, $N. Not two minutes ago I heard some centaurs talking about getting wood for their cookpot... ", + ["O"] = "Escort Melizza Brimbuzzle, then speak with Hornizz Brimbuzzle at the Kodo Graveyard in Desolace.", + ["T"] = "Get Me Out of Here!", + }, + [6133] = { + ["D"] = "The high elves of the Quel\'Lithien lodge possesses something that belongs to me, $c: A document detailing my life as a mortal.$B$BBefore you ask; no, you most certainly are not privy to such information. Just do as I tell you, worm: Recover the registry.$B$BAnd imbecile, be sure to leave as much strife and grief as possible in your wake. Leave them suffering...", + ["O"] = "Travel to the northern borders of the Eastern Plaguelands and recover the Quel\'Thalas Registry. The item is somewhere in the Quel\'Lithien lodge.$B$BYou must also slay 8 Rangers, 8 Pathstriders, and 8 Woodsmen.", + ["T"] = "The Ranger Lord\'s Behest", + }, + [6134] = { + ["D"] = "There\'s a valley to the southeast, the Valley of Bones, haunted by Magram ghosts. Sounds scary, doesn\'t it? Well think how scary it is to the Magram! If we captured ghost energy from that place, I bet it\'d be worth plenty to those centaurs.$B$BHere, take this crate of ghost magnets. If you place one between the two big skeletons in the valley, the Dead Goliaths, then ghosts will wander to it. Distance yourself, take out the ghosts and get their ghost-o-plasm--that\'s what we\'ll sell to the Magram.", + ["O"] = "Bring 8 Ghost-o-plasms and the Crate of Ghost Magnets to Hornizz Brimbuzzle in Desolace.", + ["T"] = "Ghost-o-plasm Round Up", + }, + [6135] = { + ["D"] = "Up until now, you have completed the missions I have assigned; even if not in the most timely manner.$B$BI suppose you think that you are ready for a challenge. Yes... Yes, imbecile, perhaps you are ready for a more involved set of missions.$B$BThe albino demon bat, Duskwing, roams the countryside just north of here. Track him down and destroy him. Return to me with a patch of his white fur and you shall be rewarded.", + ["O"] = "Find Duskwing and slay him. From the corpse, recover a Patch of Duskwing\'s Fur and return it to Nathanos Blightcaller.$B$BIt is said that Duskwing roams the countryside to the north of Marris Stead.", + ["T"] = "Duskwing, Oh How I Hate Thee...", + }, + [6136] = { + ["D"] = "Past the Argent Dawn encampment of Light\'s Hope and west of Northdale, you will find the corpulent maggot beast, Borelgore.$B$BI\'ve lost entire regiments to that monster. His size knows no bounds! The more he eats the greater his girth becomes...$B$BWhile I would not suffer any emotional harm should the beast devour you, I would prefer that you were the victor. I recommend you enlist the help of others for this mission. Borelgore has been known to devour small battalions foolish enough to attack him.", + ["O"] = "Find Borelgore in the northern wastes of Eastern Plaguelands and destroy him. Return to Nathanos Blightcaller when the mission is complete.", + ["T"] = "The Corpulent One", + }, + [6141] = { + ["D"] = "My brother in arms, Brother Anton, heard rumors of an undead infestation in distant Kalimdor, in a land known as Desolace. Anton immediately booked passage to that place, to seek and destroy the undead menace!$B$BHe is looking for those with the bravery and resolve to aid him. If your heart is true, then speak with Anton. He is in Desolace, in the Alliance town of Nijel\'s Point. ", + ["O"] = "Speak with Brother Anton in Desolace.", + ["T"] = "Brother Anton", + }, + [6142] = { + ["D"] = "You have the look of a fisherman, $c! I love to fish - been fishing all my life. The best bait to use is soft-shelled clam meat; the fish just can\'t resist, you know what I mean?$B$BUp north you will find a wrecked ship off the coast. Soft-shelled clams are littered throughout the area. If you bring me back 10 pieces of soft-shelled clam meat, I will give you something in return.", + ["O"] = "Find 10 pieces of Soft-shelled Clam Meat and bring it back to Mai\'Lahii at Shadowprey Village.", + ["T"] = "Clam Bait", + }, + [6143] = { + ["D"] = "Maybe you heard or maybe you haven\'t... my crew and I was out fishing near Ranazjar Isle, north of the wrecked ship off the coast up north. We used to fish there all the time; now all I do is think of a way to seek revenge for my fallen comrades.$B$BThe naga attacked us one morning, killing everyone except me.$B$BMe conscience can\'t handle the guilt, $c; I need you to go and fry them naga for me. I\'ll make the effort worth your while; you think you can help me with that?", + ["O"] = "Slay 7 Slitherblade Myrmidon, 7 Slitherblade Naga, and 5 Slitherblade Sorceresses, and then talk to Drulzegar at Shadowprey in Desolace.", + ["T"] = "Other Fish to Fry ", + }, + [6144] = { + ["D"] = "The order has come down, $c. Varimathras himself has requested that I send my most \'capable\' agents back to the Undercity for a highly sensitive tactical operation.$B$BUnfortunately, my most capable agents were killed over three years ago. In their stead I have a collection of brain dead riff-raff.$B$B$B$BTravel to the Undercity at once and report to Varimathras. Do not embarrass me, $c!", + ["O"] = "Travel to the Undercity and speak with Varimathras.", + ["T"] = "The Call to Command", + }, + [6145] = { + ["D"] = "Just as the body cannot survive without the head, the head cannot survive without the body. The defenses of the Scarlet Crusade\'s command inside Stratholme are almost impenetrable. We must, instead, cut the body out from under the head.$B$BMy Deathstalkers have been collecting data on the activity of the Crusade outside of Stratholme. Each day, a report is sent from their central command to Tyr\'s Hand. This report is the key, $r! Find the Crimson Courier and recover that report. Return it to Nathanos.", + ["O"] = "Return to Eastern Plaguelands and track down the Crimson Courier. Kill the Courier and recover the Grand Crusader\'s Command.$B$BTake the command to Nathanos Blightcaller for further instruction.", + ["T"] = "The Crimson Courier", + }, + [6146] = { + ["D"] = "I have made some adjustments to this command. Should our little ruse work, they will expose the Scarlet Oracle and we shall strike!$B$BNow pay attention, $c. You are to deliver this command to the Crusader Lord, Valdelmar.$B$BHow? You are going to hand it to him, imbecile.$B$BTake the command and this rotten apple to Tyr\'s Hand. When you cross into the city, eat the apple. You will transform into something more... palatable to the humans. Take the command and hand it to the Crusader Lord, Valdelmar.", + ["O"] = "Travel to Tyr\'s Hand, southeast of the Marris Stead. Once there, take a bite of the Rotten Apple. While under the guise of the Scarlet Crusade, deliver the Grand Crusader\'s Command to Crusader Lord Valdelmar.", + ["T"] = "Nathanos\' Ruse", + }, + [6147] = { + ["D"] = "The Grand Crusader makes an unusual request. Hrm, regardless... what he asks will be done. Return to the Scarlet Bastion and notify him that the Oracle will be en route shortly.$B$BWe will take every precaution to ensure that she makes it to Stratholme unharmed.", + ["O"] = "Return to Nathanos Blightcaller with the new information.", + ["T"] = "Return to Nathanos", + }, + [6148] = { + ["D"] = "Demetria is chief advisor to the Grand Crusader. She is called the Oracle due to her \'otherworldly\' senses. She has successfully assisted the Crusade in several of their victories against the Scourge.$B$BWhile this ruse was successful in exposing her, if she truly does possess psychic powers, she will undoubtedly be expecting some sort of trouble. You are going to provide that \'trouble.\'$B$BTrack down the Oracle and terminate her. They should be moving out of Tyr\'s Hand as we speak. Make me proud, worm.", + ["O"] = "The Scarlet Crusade is on the move. Somewhere along the road from Tyr\'s Hand to Stratholme you will find the Oracle, Demetria, and her entourage. Hunt her down and slay her. Return to Nathanos Blightcaller should you succeed.", + ["T"] = "The Scarlet Oracle, Demetria", + }, + [6161] = { + ["D"] = "Rackmore\'s log tells of how his ship was sailing for Feathermoon Stronghold when it was attacked by seafaring creatures. To prevent his treasure from falling into enemy hands, he hid his chest on Ranazjar Isle.$B$BTo open the chest requires two keys, a silver and a gold. These keys were lost, but if the keys and the chest are found, a treasure awaits!", + ["O"] = "Find Rackmore\'s Silver Key. Find Rackmore\'s Golden Key. Find and open Rackmore\'s Chest.", + ["T"] = "Claim Rackmore\'s Treasure!", + }, + [6162] = { + ["D"] = "My husband traveled Felwood for the honor of our clan, doing battle against the Shadow Council and other corrupt atrocities!$B$BAfter he escaped death numerous times, I received a letter from him saying that a druid asked him for help against a great befouled furbolg named Overlord Ror--the two were never heard from again.$B$BI want this Ror\'s clawed hand, $N. I want it to pay for leaving me a widow! I believe the creature is to the south... near the Ashenvale border.", + ["O"] = "Kill Overlord Ror and return his claw to Dreka\'Sur at Bloodvenom Post in Felwood.", + ["T"] = "A Husband\'s Last Battle", + }, + [6163] = { + ["D"] = "I was overwhelmed. On this very stead, I stood... held my ground in defense of Lordaeron. The farm and all on it were waylaid by a gigantic wave of Scourge.$B$BThe wretch. The filth. It hovered above me, entrails hanging from its gaping chest cavity.$B$BI woke as Scourge. For so long I was helpless. My mind had coalesced with the Lich King\'s.$B$BShe came for me... somewhere, somehow, I knew she would. Free.$B$BAnd now, I must have my vengeance - my vengeance on that which took from me my life. Destroy it.", + ["O"] = "Travel to Stratholme and slay Ramstein the Gorger. Take his head as a souvenir for Nathanos.", + ["T"] = "Ramstein", + }, + [6164] = { + ["D"] = "I\'m ready for business! What you do want?$B$BOh wait... I can\'t open up shop without my receipt book. How am I to keep track of things without my receipt book?$B$BI must have left it in town somewhere. I had a room in the inn... the book must be there.$B$BBring me my book. Please, bring it to me! Bring me my book and you\'ll see! I\'ll set up shop and you\'ll see that my prices are INSANE!", + ["O"] = "Bring Augustus\' Receipt Book to Augustus the Touched in Terrordale.", + ["T"] = "Augustus\' Receipt Book", + }, + [6165] = { + ["D"] = "", + ["O"] = "", + ["T"] = " Archmage Timolain\'s Remains", + }, + [6181] = { + ["D"] = "Although we don\'t get much aid from Stormwind directly, I do have a contact in the city who helps supply us with armor. His name is Osric Strang. His shop, Limited Immunity, is in the Old Town of Stormwind.$B$BOur supply of armor dwindles, and I must contact Osric for more. Can you take him this note?$B$BThe fastest way to Stormwind is through Thor, our gryphon master. He\'s just down the hill; bring him my note, and then take a gryphon to Stormwind.", + ["O"] = "Bring Lewis\' Note to Thor the gryphon master.", + ["T"] = "A Swift Message", + }, + [6182] = { + ["D"] = "Nathanos Marris was the first and last of the human ranger lords. A disciple of Sylvanas Windrunner, now the Banshee Queen of the Forsaken.$B$BWe had thought that Nathanos had been killed in action in the defense of Lordaeron five years ago. Although his corpse was never recovered, it was assumed that he did not make it out of the Eastern Plaguelands.$B$BMathias Shaw has been investigating the disappearance and may have some new information. Report to him at once. He resides in Old Town, at the Barracks.", + ["O"] = "Speak with Mathias Shaw in Old Town Stormwind. He resides in the Barracks.", + ["T"] = "The First and the Last", + }, + [6183] = { + ["D"] = "Five of my best field agents were assigned the Marris case. One returned, only to end up dead in his sleep three days later.$B$BWhat little information we did manage to get out of him was incoherent gibberish. We made out two words: \"Nathanos,\" and \"Blightcaller.\"$B$BI do not have the available manpower to continue this investigation and Ravenholdt will not assist us. We must get to the bottom of this; if only to provide closure to the families of the deceased. Will you help?", + ["O"] = "Speak with Mathias Shaw again if you wish to accept his task.", + ["T"] = "Honor the Dead", + }, + [6184] = { + ["D"] = "The only information we have thus far, then, is that Nathanos Marris may have been slain by this Blightcaller. We assume the Blightcaller is the same fiend that disposed of my agents.$B$BFlint Shadowmore, another SI:7 operative, is stationed at the Alliance encampment of Chillwind Point in the Western Plaguelands. Seek him out; he will debrief you on the current situation in the Plagues and give you an assignment.$B$BGood luck, $N.", + ["O"] = "Travel to Chillwind Camp in the Western Plaguelands and meet up with your contact, Flint Shadowmore.", + ["T"] = "Flint Shadowmore", + }, + [6185] = { + ["D"] = "As I said, your first mission is one of reconnaissance. Nothing fancy, $N. You must travel to the Eastern Plaguelands and look for any clues as to this Blightcaller.$B$BBe on the lookout for information about our missing operatives. We have to assume that they are dead and if they are dead, they must have a corpse... somewhere.$B$B$B$BAll SI:7 agents carry this insignia.$B$B$B$BBring any of those that you may find back to me.", + ["O"] = "Scour the Eastern Plaguelands for clues as to the \"Blightcaller\" and the missing SI:7 agents. If you find any SI:7 Insignias, return them to Flint Shadowmore at Chillwind Camp.", + ["T"] = "The Eastern Plagues", + }, + [6186] = { + ["D"] = "$B$BNa... Nathanos did this? Nathanos is the Blightcaller?$B$BWhy? He was... was so noble - a ranger lord respected by all. The only human ever allowed to train under the high elves. Now a ruthless agent of the Forsaken?$B$BI... I am sorry to ask this of you, $N, but Highlord Fordragon must be informed of this turn of events at once. Please, return to Stormwind and deliver the news.", + ["O"] = "Return to Stormwind and inform Highlord Bolvar Fordragon of the fate of Nathanos Marris.", + ["T"] = "The Blightcaller Cometh", + }, + [6187] = { + ["D"] = "Do you know how many ranger lords exist in this world? How many human ranger lords have ever existed?$B$BNathanos\' accomplishments were unprecedented. He was a tactical genius, responsible for Alliance victories spanning a decade of conflict.$B$BAnd now... the champion of the Forsaken.$B$BNo. This cannot be. Order must be restored.$B$BGather an army, $N. Return to the Plagues with your army and destroy the Blightcaller.$B$BI wish you luck, $N. Truly, you will need it for this battle.", + ["O"] = "Assemble an army and travel to the Eastern Plaguelands. Launch a full assault on Nathanos Blightcaller and any Horde filth that may attempt to protect him.$B$BKeep your wits about you, $N. The Horde will defend the ranger lord with their very lives.", + ["T"] = "Order Must Be Restored", + }, + [6201] = { + ["D"] = "", + ["O"] = "", + ["T"] = " The Legacy of the Ashbringer", + }, + [6221] = { + ["D"] = "There is a camp of Deadwood furbolgs directly to our southwest. Corruption permeates the camp, and I wish to put an end to it before they become a problem.$B$BThe Deadwood tribe is evil, but it is the effects of the fel that pollutes their minds. Their hostility is not truly an innate quality, yet they cannot be helped. For this reason, I am deeply saddened by having to fight my own brethren.$B$BPlease, $N, do what must be done, and do not mention the details; they upset me far too much.", + ["O"] = "Nafien would like you to kill 5 Deadwood Den Watchers, 5 Deadwood Avengers, and 5 Deadwood Shamans.", + ["T"] = "Deadwood of the North", + }, + [6241] = { + ["D"] = "The Timbermaw tend to stay to themselves, $N. While we do allow safe passage to those that have proven they can be trusted, we try to avoid other furbolg tribes if at all possible.$B$BLately I have noticed that the Winterfall tribe has become increasingly hostile towards us. They seem to be in a state of rage, completely engulfed by their own fear and hatred of anything they do not understand.$B$BIf you could reduce their numbers this would help us greatly, $N.", + ["O"] = "Salfa wants you to kill 6 Winterfall Totemics, 6 Winterfall Den Watchers, and 6 Winterfall Pathfinders.", + ["T"] = "Winterfall Activity", + }, + [6261] = { + ["D"] = "$N, I gathered into this crate everything Lewis asked for. Can you take it to him?$B$BIf you\'ve already spoken to Thor in Westfall, then you can take a gryphon back to him. Dungar Longdrink is our gryphon master, over in the trade district.$B$BSpeak with Dungar, then get this crate to Lewis as fast as you can. We don\'t want our fighting men and women in Westfall to go without fresh equipment!", + ["O"] = "Bring Osric\'s Crate to Dungar Longdrink the gryphon master.", + ["T"] = "Dungar Longdrink", + }, + [6281] = { + ["D"] = "For a small fee, you can take a gryphon to Stormwind, so you can deliver Lewis\' note to Osric. You won\'t get there faster any other way.$B$BIf that sounds acceptable, then just speak to me again when you\'re ready for the ride. I\'ll charge you a little, but trust me; it\'ll be worth it!", + ["O"] = "Buy a gryphon ride from the gryphon master Thor, then bring Lewis\' Note to Osric Strang, in the shop Limited Immunity, in the Old Town of Stormwind.", + ["T"] = "Continue to Stormwind", + }, + [6282] = { + ["D"] = "Tauren take pride as the protector of these lands. Undoubtedly you can guess why I am alarmed with the number of harpies that dwell here in Stonetalon.$B$BThe Bloodfuries are the source of the increasing number of harpies in Kalimdor; they encroach upon all likes of life preventing the innocent from leaving their boundaries.$B$BI need you to cull the harpies, $N!", + ["O"] = "Maggran Earthbinder in Sun Rock Retreat wants you to slay 7 Bloodfury Harpies, 7 Bloodfury Ambushers, 7 Bloodfury Slayers and 7 Bloodfury Roguefeathers.", + ["T"] = "Harpies Threaten", + }, + [6283] = { + ["D"] = "Limiting the number of Bloodfury Harpies will not be enough. The only true cure for their disease would be to slay their leader, Bloodfury Ripper!$B$BShe is all but a queen to those filthy creatures. Slay her and their numbers will surely diminish.$B$BGo back into the Charred Vale and you will find her along the western hills. She will not be easy to vanquish, but the reward will be great.", + ["O"] = "Maggran at Sun Rock Retreat wishes you to slay Bloodfury Ripper and bring her remains as proof of your deed.", + ["T"] = "Bloodfury Bloodline", + }, + [6284] = { + ["D"] = "Warning: Proceed into Sishir Canyon west of here at your own risk.$B$BBesseleth and her eight-legged children of the forest have claimed this canyon as their webbed lair.$B$BMaggran Earthbinder in Sun Rock Retreat has placed a bounty on Besseleth. Slay her and bring proof of your killing to Maggran; there you will receive your reward for disposing this eight-legged menace.", + ["O"] = "Kill Besseleth and bring Besseleth\'s Fang to Maggran at Sun Rock Retreat.", + ["T"] = "Arachnophobia", + }, + [6285] = { + ["D"] = "The gryphon master in Westfall is Thor. If you\'ve spoken to him before, then you can take one of my gryphons to him.$B$BThat\'s a good lesson to know: gryphons are always trained to fly to their capital city, but they\'ll only take you to a remote gryphon master after you\'ve already been there.$B$BYou\'ve already been to Thor, so just speak with me again when you\'re ready to take a gryphon to Westfall. Once there, you can deliver Osric\'s Crate to Quartermaster Lewis.", + ["O"] = "Buy a gryphon ride to Sentinel Hill from the gryphon master Dungar Longdrink, then take Osric\'s Crate to Lewis at Sentinel Hill.", + ["T"] = "Return to Lewis", + }, + [6301] = { + ["D"] = "Industrial greed and continuous war have wrecked the lands of Stonetalon. Only the blessings of the Earthmother can cure such injury.$B$B$N, I will require you to seek a special seed, the Gaea seed. They are only found here in Stonetalon Mountain, north of Sun Rock Retreat at Mirkfallon Lake, near the water\'s edge.$B$BOnce you bring me the seeds I will imbue them with shamanistic power to speed their growth.", + ["O"] = "Tammra Windfield at Sun Rock Retreat wants you to gather 10 Gaea Seeds.", + ["T"] = "Cycle of Rebirth", + }, + [6321] = { + ["D"] = "Executor Hadrec asked me to take stock of our equipment at the Sepulcher. With the Scourge, and worse, lurking in the woods, he doesn\'t want the Deathguards to lack gear they might need.$B$BI found that we are, in general, well stocked, but we do need more weapons to replace those lost in the field.$B$BHere is a requisition order of what is needed, for the weapon dealer Gordon Wendham in the Undercity. Take the order to our bat master, Karos Razok, and speak with him about transport to the Undercity.", + ["O"] = "Bring Podrig\'s Order to Karos Razok.", + ["T"] = "Supplying the Sepulcher", + }, + [6322] = { + ["D"] = "I have placed the Sepulcher\'s supplies into this crate. If you have already visited the Sepulcher and spoken with their bat master, then you may ride a bat back to him.$B$BSpeak with the Undercity\'s bat master, Michael Garrett. He can provide you with a bat to the Sepulcher.", + ["O"] = "Bring Gordon\'s Crate to Michael Garrett.", + ["T"] = "Michael Garrett", + }, + [6323] = { + ["D"] = "One of my bats can take you to the Undercity, for a small fee. Speak with me again when you are ready so that we may arrange your transport.$B$BYou will find Gordon Wendham in the Trade Quarter of the Undercity. That is the same quarter where my bat will land.", + ["O"] = "Buy a bat ride to the Undercity from the bat master Karos Razok, then take Podrig\'s Order to Gordon Wendham in the Undercity.", + ["T"] = "Ride to the Undercity", + }, + [6324] = { + ["D"] = "The bat master in the Sepulcher is Karos Razok. If you have already met him, then I can give you a bat to fly back to him.$B$BOur bats will always fly to the Undercity, but to travel to more remote locales their rider must first visit the area and speak with its bat master.$B$BYou have met Karos in the Sepulcher, so you may now fly bats there. Speak with me again when you are ready.", + ["O"] = "Buy a bat ride to the Sepulcher from the bat master Michael Garrett, then bring Gordon\'s Crate to Deathguard Podrig in the Sepulcher.", + ["T"] = "Return to Podrig", + }, + [6341] = { + ["D"] = "The fishermen of Rut\'theran village do very well, for the fish here are extremely large and abundant. I would like to compare the bounty here with that of the mainland.$B$BI have a collection of fish bones and scales that I would like taken to a colleague of mine in Darkshore. His name is Laird, he is a fish vendor in the village of Auberdine.$B$BBring my collection to our hippogryph master, Vesprystus, and speak to him about traveling to Auberdine.", + ["O"] = "Bring Nessa\'s Collection to Vesprystus.", + ["T"] = "The Bounty of Teldrassil", + }, + [6342] = { + ["D"] = "From Rut\'theran, there are two methods of travel to Auberdine: by ferry and by hippogryph. Both are quick and reliable, but if you have not yet flown to Auberdine by hippogryph, then I suggest you do.$B$BIt is sound advice to speak with the hippogryph master in every town that has one. Once you speak to the master, you can then fly there from other towns.$B$BHere is Nessa\'s collection. Speak with me again when you are ready to fly to Auberdine and deliver Nessa\'s collection to Laird.", + ["O"] = "Ride a hippogryph to Auberdine from the hippogryph master Vesprystus, then bring Nessa\'s Collection to Laird.", + ["T"] = "Flight to Auberdine", + }, + [6343] = { + ["D"] = "I must send a response to Nessa. She\'ll be very interested to know how different the fish here are from those along Teldrassil\'s coastline. We can only guess the cause, but it is my suspicion that the world tree itself is affecting the wildlife around it!$B$BPlease, take this response to Nessa. If you wish to take a hippogryph back to Rut\'theran then speak with the hippogryph master Caylais Moonfeather. If you wish to take the ferry, then one regularly departs from the dock to the northwest.", + ["O"] = "Bring Laird\'s Response to Nessa Shadowsong.", + ["T"] = "Return to Nessa", + }, + [6344] = { + ["D"] = "A friend of mine, Nessa Shadowsong, is a fishing merchant in Rut\'theran Village. She needs a parcel taken to Darkshore, and is looking for someone to help her.$B$BIf you\'re interested, then to reach Nessa you must take the portal in Darnassus to Rut\'theran Village. You will find the portal west of the Temple Gardens.", + ["O"] = "Speak with Nessa Shadowsong.", + ["T"] = "Nessa Shadowsong", + }, + [6361] = { + ["D"] = "I have a bundle of hides from the animals of the Barrens, and must get them to Thunder Bluff. A colleague there, Ahanu, will use the hides to create leather goods.$B$BWill you take the hides to him for me?$B$BThe quickest way to Thunder Bluff is on the back of a wind rider. Bring the bundle of hides to Devrak, our wind rider master in the Crossroads, and speak to him about transport to Thunder Bluff.", + ["O"] = "Bring the Bundle of Hides to the wind rider master Devrak in the Crossroads.", + ["T"] = "A Bundle of Hides", + }, + [6362] = { + ["D"] = "For a small fee, I will give you a wind rider to Thunder Bluff. There\'s no faster way to the city!$B$BIf that is acceptable, speak to me again when you are ready to go.$B$BIf you\'re taking those hides to Ahanu, then I think he\'s at Hewa\'s Armory, at the base of the wind rider tower in Thunder Bluff. And that\'s right where you\'ll land!", + ["O"] = "Buy a wind rider to Thunder Bluff from the wind rider master Devrak, then bring the Bundle of Hides to Ahanu in Thunder Bluff.", + ["T"] = "Ride to Thunder Bluff", + }, + [6363] = { + ["D"] = "I have prepared leather goods for Jahan to sell at the Crossroads. Will you bring them to him?$B$BIf you have already been to the Crossroads and spoken to their wind rider master, then you can fly one of our Thunder Bluff wind riders back to him.$B$BTake the leather goods to Tal, our wind rider master in Thunder Bluff, and speak with him to arrange transport to the Crossroads.", + ["O"] = "Bring Ahanu\'s Leather Goods to Tal in Thunder Bluff.", + ["T"] = "Tal the Wind Rider Master", + }, + [6364] = { + ["D"] = "In order to fly to a town, you must have already been there and spoken with the wind rider master of that town. You have been to the Crossroads and spoken to their wind rider master Devrak, so for a small fee you can take a wind rider to him from here.$B$BSpeak with me again when you are ready. Once at the Crossroads, you can then deliver the leather goods to Jahan Hawkwing.", + ["O"] = "Buy a wind rider to the Crossroads from the wind rider master Tal, then bring Ahanu\'s Leather Goods to Jahan Hawkwing.", + ["T"] = "Return to Jahan", + }, + [6365] = { + ["D"] = "I have some choice cuts of meat that I want to send to a friend. Her name is Gryshka, the innkeeper in Orgrimmar. Will you deliver the meat for me?$B$BThe fastest way to Orgrimmar is on a wind rider. Take the meats to the Crossroads wind rider master, Devrak, and speak with him about transport to Orgrimmar.", + ["O"] = "Bring Zargh\'s Meats to Devrak in the Crossroads.", + ["T"] = "Meats to Orgrimmar", + }, + [6381] = { + ["D"] = "As you have seen, $c, though the land is in pain, the cycle of life is a powerful thing. Now we must do our part help it along. You must plant these seeds at the center of the destruction, to the west, in the Charred Vale. Beware, for harpies and angry fire elementals still plague the scarred land.$B$B$N, take these enchanted Gaea seeds and plant them in fertile mounds of soil. The cycle of life must go on!", + ["O"] = "Plant 10 Gaea Seeds in Gaea Dirt Mounds, and then return the remaining Enchanted Gaea Seeds to Tammra at Sun Rock Retreat.", + ["T"] = "New Life", + }, + [6382] = { + ["D"] = "Your strength impresses me, $c. Your willingness to embrace the hunt gives me confidence that you could move on to bigger game... and bigger challenges.$B$BThe forests of Ashenvale represent a vast untamed wild that the Horde seeks to impose its own will upon, both politically and spiritually. If you seek to prove yourself in an unproven land, seek the guidance of Senani Thunderheart in Splintertree Post. The outpost is due north of the path leading from the Barrens.", + ["O"] = "Speak with Senani Thunderheart at Splintertree Post, Ashenvale.", + ["T"] = "The Ashenvale Hunt", + }, + [6383] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Ashenvale Hunt", + }, + [6384] = { + ["D"] = "For just a few coins I will have a wind rider bring you to Orgrimmar. When you get there, you can take Zargh\'s Meats to Gryshka. Her inn is in the Valley of Strength, not far from the Skytower, where my wind rider will drop you off.$B$BSpeak with me again when you are ready for the journey.", + ["O"] = "Buy a wind rider to Orgrimmar from the wind rider master Devrak, then bring Zargh\'s Meats to Gryshka in Orgrimmar.", + ["T"] = "Ride to Orgrimmar", + }, + [6385] = { + ["D"] = "I\'ve written a letter of thanks to Zargh. Will you deliver it for me? If you\'ve already been to the Crossroads and spoken with their wind rider master, then you can fly a wind rider back there.$B$BTake my letter to Doras, the wind rider master of Orgrimmar, and speak with him about transport to the Crossroads.", + ["O"] = "Bring Gryshka\'s Letter to Doras in Orgrimmar.", + ["T"] = "Doras the Wind Rider Master", + }, + [6386] = { + ["D"] = "My wind riders are trained to fly to many different places, as long as you have already been to that place and spoken with the wind rider master there.$B$BYou have been to the Crossroads and spoken to their wind rider master Devrak, so now you can fly directly to him from here. Once you\'re at the Crossroads, you can deliver Gryshka\'s letter to Zargh.$B$BSpeak with me when you are ready to go.", + ["O"] = "Buy a wind rider to the Crossroads from the wind rider master Doras, then bring Gryshka\'s Letter to Zargh at the Crossroads.", + ["T"] = "Return to the Crossroads.", + }, + [6387] = { + ["D"] = "I see a lot of young dwarves at my door, eager to learn the trade of mining. And if there\'s one thing a miner needs more than anything, it\'s a pick!$B$BI have a list of mining students who scored high in their lessons and earned an honorary pick. Take my list to Golnir Bouldertoe in Ironforge. He\'ll get the picks ready.$B$BThe fastest way to Ironforge is on a gryphon, so bring the list to our gryphon master, Thorgrum Borrelson, and speak with him about transport to Ironforge.", + ["O"] = "Bring Brock\'s List to Thorgrum Borrelson in Thelsamar.", + ["T"] = "Honor Students", + }, + [6388] = { + ["D"] = "Here are the honorary picks for Brock\'s students. If you\'ve already been to Thelsamar, then you should fly a gryphon back there!$B$BTake the picks to our gryphon master, Gryth Thurden, and speak with him about a ride back to Thelsamar.", + ["O"] = "Bring the Honorary Picks to Gryth Thurden in Ironforge.", + ["T"] = "Gryth Thurden", + }, + [6389] = { + ["D"] = "You look around the lumber mill for something suitable to open the barrel with. You find a crowbar that looks like it will do the trick.$B$BYou set your feet and pray that you\'ll be able to get out of the mill before the termites get to you.", + ["O"] = "Release the Plagueland Termites in the Northridge Lumber Mill, then return with the Barrel of Plagueland Termites to Nathaniel Dumah at Chillwind Camp in Western Plaguelands.", + ["T"] = "A Plague Upon Thee", + }, + [6390] = { + ["D"] = "You look around the lumber mill for something suitable to open the barrel with. You find a crowbar that looks like it will do the trick.$B$BYou set your feet and pray that you\'ll be able to get out of the mill before the termites get to you.", + ["O"] = "Release the Plagueland Termites in the Northridge Lumber Mill, then return with the Barrel of Plagueland Termites to Mickey Levine at the Bulwark in Tirisfal Glades.", + ["T"] = "A Plague Upon Thee", + }, + [6391] = { + ["D"] = "For just a few coins, one of my gryphons will take you to Ironforge. From there, deliver Brock\'s list to Golnir Bouldertoe. You\'ll find him in the Deep Mountain Mining Guild. That\'s in the Great Forge District of Ironforge, which is right where my gryphon will drop you off!$B$BSpeak to me again when you\'re ready for the journey.", + ["O"] = "Buy a gryphon to Ironforge from the gryphon master Thorgrum Borrelson, then bring Brock\'s List to Golnir Bouldertoe in Ironforge.", + ["T"] = "Ride to Ironforge", + }, + [6392] = { + ["D"] = "For a small fee you can buy a gryphon ride to Thelsamar... as long as you\'ve already been there. Gryphons will only fly you to places you\'ve already been, so be sure to speak with every gryphon master you see so you can fly to him later.$B$BYou\'ve already been to Thorgrum, the gryphon master of Thelsamar, so now you can return to him. And once in Thelsamar, you can deliver the picks to Brock Stoneseeker.$B$BSpeak with me when you\'re ready to go.", + ["O"] = "Buy a gryphon to Thelsamar from the gryphon master Gryth Thurden, then bring the Honorary Picks to Brock Stoneseeker in Thelsamar.", + ["T"] = "Return to Brock", + }, + [6393] = { + ["D"] = "The Tribunal of the Tides has sent me to wage war on the fire elementals here in Stonetalon Mountain. Neptulon the Tidehunter, Lord of all water elementals, has taken a personal interest in seeing our fiery cousins extinguished.$B$B$N, you can help me gain favor with the Tribunal by destroying the fire elementals in Charred Vale. When destroyed, the fire elementals leave Incendrites. Return these to me and be rewarded.", + ["O"] = "Bring 10 Incendrites to Tsunaman at Sun Rock Retreat.", + ["T"] = "Elemental War", + }, + [6394] = { + ["D"] = "$N, you are a dependable $r. Can I count on you for another task?$B$BSome time ago I was surveying the cave to the north for minerals, and I left my favorite pick behind. When I later returned to retrieve it I found the cave was filled with vicious beasts! Will you go into the cave, the Burning Blade Coven, and get my pick?$B$BI left it in a chamber with waterfalls. My pick has a spell on it so you can see it in the dark, so you won\'t have to worry about finding it... just what\'s guarding it!", + ["O"] = "Bring Thazz\'ril\'s Pick to Foreman Thazz\'ril.", + ["T"] = "Thazz\'ril\'s Pick", + }, + [6395] = { + ["D"] = "My friend Marla Fipps lived with her husband Samuel before the plague, but when the plague came Samuel succumbed and joined the Scourge\'s ranks.$B$BMarla was spared an undeath only to die at the hands of her now mindless husband. So strong was her love, however, that her last dying wish was to be buried with her beloved Samuel.$B$BSamuel Fipps roams at a ruined camp along the road northeast of Deathknell. Defeat him and grant Marla\'s wish: bury him at her grave, in the first row of our graveyard.", + ["O"] = "Bring Samuel Fipps\' Remains to Marla\'s Grave, then return to Novice Elreth.", + ["T"] = "Marla\'s Last Wish", + }, + [6401] = { + ["D"] = "Tell Tammra Windfield, Kaya\'s aunt who\'s at Sun Rock Retreat, about the good news! Kaya is alive! We had thought she was lost after the brutal attack on our village. Follow the path to the west to get to Sun Rock Retreat.", + ["O"] = "Tell Tammra Windfield in Sun Rock Retreat the good news.", + ["T"] = "Kaya\'s Alive", + }, + [6402] = { + ["D"] = "You are to meet with Windsor at the gates of Stormwind.$B$BWhat Windsor is about to unveil will shake the very foundation of the kingdom!$B$BDo not attempt to venture there alone, $N. You must amass an army! Gather your compatriots. To arms! ", + ["O"] = "Travel to Stormwind City and venture to the city gates. Marshal Windsor will meet you just inside the city borders.", + ["T"] = "Stormwind Rendezvous", + }, + [6403] = { + ["D"] = "It has been quite the adventure, friend. I owe you a great debt of gratitude. Perhaps, when all is said and done...$B$BAs you have no doubt ascertained by now, Lady Prestor is Onyxia: Brood of Deathwing, twin to the tyrant of the Spire, Nefarian.$B$BFor too long she has held our kingdom in her captivating gaze. Even the Highlord is controlled by her trickery - a puppet. It all ends today... The spell will be broken.$B$BWorry not, for together, we shall be victorious!$B$BAre you ready?", + ["O"] = "Follow Reginald Windsor through Stormwind. Protect him from harm!", + ["T"] = "The Great Masquerade", + }, + [6421] = { + ["D"] = "Something is amiss here in Stonetalon. Can you feel the tension in the air, $N?$B$BSouth of here lies a deep cave in Boulderslide Ravine. The kobolds there are frantically mining a rare crystal called Resonite. I need you to bring back some ore samples so that I can understand what\'s happening in that cave. I also need you to investigate the depth of that cave.$B$BGo young $c, it\'s imperative I know what evil lurks under these mountains.", + ["O"] = "Explore deep into the cave at Boulderslide Ravine and bring back 10 Resonite Crystals for Mor\'rogal at Sun Rock Retreat to investigate.", + ["T"] = "Boulderslide Ravine", + }, + [6441] = { + ["D"] = "Heya! I\'ve been traveling through Ashenvale, heading towards Ratchet, and decided to make a stop here at Splintertree. I\'m always looking for an opportunity, and it seems that satyr horns are in high demand in Ratchet these days.$B$BAfter asking around here, it seems that the satyrs in Night Run, Satyrnaar, and Xavian all have the type of horns I am looking for. I\'m no match for those satyrs... but you look like you might be!$B$BTell you what, you collect the horns for me and I\'ll make it worth your time.", + ["O"] = "Collect 16 Satyr Horns for Pixel in Splintertree Post.", + ["T"] = "Satyr Horns", + }, + [6442] = { + ["D"] = "There is evil lurking here along the coast, $r.$B$BIt is the resting place of the doomed city of Zoram, long destroyed and submerged beneath the seas. Lost, and nearly forgotten.$B$BNow, the naga have returned, and for what reason we do not know. But reason matters little; we must defend the land we have worked so hard to claim as our own.$B$BReturn to me with 20 of their heads! Throw the naga back to the depths!", + ["O"] = "Bring 20 Wrathtail Heads to Marukai along the Zoram Strand.", + ["T"] = "Naga at the Zoram Strand", + }, + [6461] = { + ["D"] = "We Trolls here at Malaka\'Jin have prospered from the land; Stonetalon Mountain offers great hunting for us to live on.$B$BLately, we have attracted the wrong dinner guests... the spiders in these mountains have been raiding our camps at night looking to steal our hunt.$B$BIf you were to help us kill off these ghastly beasts we at Malaka\'Jin would be in your debt. Spiders are everywhere in Stonetalon - just head north from here and you will see what I am talking about.", + ["O"] = "Xen\'zilla at Malaka\'Jin needs you to kill 10 Deepmoss Creepers and 7 Deepmoss Venomspitters.", + ["T"] = "Blood Feeders", + }, + [6462] = { + ["D"] = "My kinfolk were traveling here with many sacred troll charms, but the Thistlefur furbolgs attacked and killed them before they reached Zoram\'gar! Those vile Furbolgs!$B$BI miss my brothers and sisters who were killed, but we will meet again in the afterlife. However, their troll charms hold great value in this world. It is an outrage that the furbolgs have them!$B$B$N, you must retrieve the charms! They are in chests in Thistlefur Hold, a cave at the end of Thistlefur Village, north of Astranaar.", + ["O"] = "Bring 8 Troll Charms to Mitsuwa at the Zoram\'gar Outpost.", + ["T"] = "Troll Charm", + }, + [6481] = { + ["D"] = "You have uncovered a dark threat to the land, $c. The Resonite cask you have found in that cave houses a slumbering Earthen by the name of Goggeroc.$B$BI have changed the mixture of the Resonite crystals that you gathered with my shamanistic powers. Take the enchanted Resonite crystal and smash open the Resonite cask, which houses the Earthen.$B$BWhen awakened, Goggeroc will be weakened... Slay him, $N!", + ["O"] = "Open the Resonite cask with the Enchanted Resonite Crystal, and then slay Goggeroc. Return to Mor\'rogal with the news and Enchanted Resonite Crystal.", + ["T"] = "Earthen Arise", + }, + [6482] = { + ["D"] = "Eh? Who are you?$B$B$N? You\'re no furbolg. They are cursed! They thought I was a bear and captured me, and now they starve me! My strength is failing...$B$BHelp me escape, then speak with my sister Yama at the Splintertree Post to the east.$B$B$N! I must escape!", + ["O"] = "Escort Ruul, then speak with Yama Snowhoof in Spintertree Post.", + ["T"] = "Freedom to Ruul", + }, + [6501] = { + ["D"] = "A fragment of the shattered medallion is all that I can offer.$B$BYou must find another of dragon blood willing to assist you in forging a new key. Once you secure this key, you must travel to the Wyrmbog in Dustwallow Marsh. It is there that you will find her lair, $N.$B$BWhere to find other flights willing to help? Sadly, I do not know... They are said to exist. Some may even work and live among us, disguised as one of the humanoid races. I wish you luck.", + ["O"] = "You must search the world for a being capable of restoring the power to the Fragment of the Dragon\'s Eye. The only information you possess about such a being is that they exist.", + ["T"] = "The Dragon\'s Eye", + }, + [6502] = { + ["D"] = "It is a piece of the dragon; a scale - enchanted and transformed. Whole, it could have granted access to the beast\'s lair. Shattered, it is useless.$B$BIt is possible to repair the item, but to do so would require the blood of a black dragon champion. There is one... He is known as General Drakkisath, ruler of the dragonspawn armies of Nefarian. Perhaps you have heard of him?$B$BReturn with his blood, $r, and I shall enchant the fragment into something that will grant you access to Onyxia\'s lair.", + ["O"] = "You must retrieve the Blood of the Black Dragon Champion from General Drakkisath. Drakkisath can be found in his throne room behind the Halls of Ascension in Blackrock Spire.", + ["T"] = "Drakefire Amulet", + }, + [6503] = { + ["D"] = "We received reports that Ashenvale outrunners left Silverwing Outpost not long ago, and now sneak near our territories in the forest. We don\'t want them gathering intelligence on our defenses!$B$BSneak through the forests south of our post here and east of the Alliance outpost of Silverwing. Find and slay the outrunners, then return to me.", + ["O"] = "Kill 9 Ashenvale Outrunners, then return to Kuray\'bin at Splintertree Outpost.", + ["T"] = "Ashenvale Outrunners", + }, + [6504] = { + ["D"] = "I just picked up this shredder from Ratchet and I was on my way back to the Warsong Lumber Camp, where I am supposed to be on duty. I was given a manual on how to operate the shredder, but on the trip back, a huge gust of wind blew it from my hands. The pages went everywhere, and all I was left with was the cover.$B$BThe pages could be just about anywhere by now, I suppose... but I don\'t know how to use the shredder without them! Will you find them for me?", + ["O"] = "Find the 12 missing pages of the Shredder Operating Manual, and put them together to form Chapters 1, 2, and 3. Return the pages to Gurda Ragescar near Splintertree Post.", + ["T"] = "The Lost Pages", + }, + [6521] = { + ["D"] = "Malcin claims he is outside Razorfen Downs. This ambassador must be slain--his mission a failure in the eyes of the Lich King.$B$BHis presence there does explain much of what we\'ve discovered about the area--some of the quilboar have grown frightfully powerful while showing signs of the Plague in their own way. Truly that must be a sign of some sort of deal they\'ve struck.$B$BFind Malcin and slay him, $N. Return to me after the deed is done.", + ["O"] = "Bring Ambassador Malcin\'s Head to Varimathras in the Undercity.", + ["T"] = "An Unholy Alliance", + }, + [6522] = { + ["D"] = "My Lady,$B$BYou know very well what it is we are offering. The opportunity for you to take the Barrens and the lands beyond is a great one. We simply want your aid in return. By aid we mean nothing more than your giving us the freedom to take action in the area.$B$BPlease, allow us to discuss this further. We have great power and are willing to share with those wise enough to join us. I will remain outside Razorfen Downs for the time being.$B$BBest Regards,$BAmbassador Malcin", + ["O"] = "Take the Small Scroll to Varimathras in the Undercity.", + ["T"] = "An Unholy Alliance", + }, + [6523] = { + ["D"] = "Thank you for rescuing me! We must leave quickly before they discover that I am free. Please escort me to Camp Aparaje. From there, I know my way.$b$bMy father, Makaba Flathoof, will be desperate to know that I am safe.", + ["O"] = "Escort Kaya Flathoof to Camp Aparaje, and then return to Makaba Flathoof near the southeastern edge of Stonetalon.", + ["T"] = "Protect Kaya", + }, + [6541] = { + ["D"] = "Have you ever been to Ashenvale, to the north? The horde has recently set up an outpost on the Zoram Strand there, and we can always use some new recruits to help defend our new fronts.$B$BIf you think you are up to it, see Kadrak in the northern Barrens, at the watch tower. He is heading up the Ashenvale campaign and can give you further orders.", + ["O"] = "Report to Kadrak at the watch tower in northern Barrens.", + ["T"] = "Report to Kadrak", + }, + [6542] = { + ["D"] = "Have you ever been to Ashenvale, to the north? The horde has recently set up an outpost on the Zoram Strand there, and we can always use some new recruits to help defend our new fronts.$B$BIf you think you are up to it, see Kadrak in the northern Barrens, at the watch tower. He is heading up the Ashenvale campaign and can give you further orders.", + ["O"] = "Report to Kadrak at the watch tower in northern Barrens.", + ["T"] = "Report to Kadrak", + }, + [6543] = { + ["D"] = "I recently deployed a few scouts into Ashenvale and I need a runner to take them their orders, and bring me back a report of what they have observed.$B$BYour first stop should be the Zoram\'gar Outpost, along the coast to the west, at the Zoram Strand, to locate the first runner. You also need to stop at Splintertree Post, to the north, and along the road to the east, near Azshara. You will find a scout and an outrider there.$B$BGive them each a report, and from them, get an update on their findings.", + ["O"] = "Open the Bundle of Reports. Take the Warsong Reports to the Warsong Scout, Warsong Runner, and Warsong Outrider. Bring back the updates they give you to Kadrak at the northern watch tower in the barrens.", + ["T"] = "The Warsong Reports", + }, + [6544] = { + ["D"] = "Hey! $C! Come here!$B$BMy raiders and I are about to attack the Silverwing Outpost to the west. Our target is its leader, Duriel Moonfire. Scouts report the outpost is defended heavily with sentinels and warriors. The battle will be glorious!$B$BDo you want to share in the glory, $N, and aid us? If so, then when it\'s over you can report our success to my superior, Ertog Ragetusk in Splintertree.$B$BWhat do you say. Are you with us?", + ["O"] = "Escort Torek on his attack against Silverwing Outpost and Duriel Moonfire, then report to Ertog Ragetusk at Splintertree Post.", + ["T"] = "Torek\'s Assault", + }, + [6545] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Warsong Runner Update", + }, + [6546] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Warsong Outrider Update", + }, + [6547] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Warsong Scout Update", + }, + [6548] = { + ["D"] = "The Grimtotem Clan raided my village and killed most everyone. I killed all I could, but barely escaped with my life.$b$b$N, all I wish now is that more of them are dead. You will find them just to the west of here.", + ["O"] = "Kill 8 Grimtotem Ruffians and 6 Grimtotem Mercenaries, and then return to Makaba Flathoof near the southeastern edge of Stonetalon.", + ["T"] = "Avenge My Village", + }, + [6561] = { + ["D"] = "Strength has left me. Your help is needed!$b$bLong ago this site was a great temple of Elune. But misfortune led to ruin when the corruption of an Old God seeped up from beneath the earth and tainted the sacred Moon Well.$b$bAku\'Mai, servant of the Old God, rose from the waters.$b$bThe Twilight\'s Hammer cultists have allied with the naga to occupy these grounds. The cultists, led by Kelris, sacrifice innocents to Aku\'Mai for power.$b$bSlay Kelris and bring his head to Bashana in Thunder Bluff, $N, please.", + ["O"] = "Bring the head of Twilight Lord Kelris to Bashana Runetotem in Thunder Bluff.", + ["T"] = "Blackfathom Villainy", + }, + [6562] = { + ["D"] = "Je\'neu Sancrea is in need of aid. He is at the Zoram\'gar Outpost in Ashenvale. The Night elf forest is to the north of the Stonetalon mountains. You can reach it by traveling through Windshear Crag or by heading north through Barrens. Zoram Strand is far to the west of the forest. Be careful, $N. There are forces there that will not take to your presence kindly.", + ["O"] = "Speak to Je\'neu Sancrea in Ashenvale.", + ["T"] = "Trouble in the Deeps", + }, + [6563] = { + ["D"] = "Within the beginning tunnels of Blackfathom Deeps, large sapphire clusters can be found along the cave walls. Recently it was noted that the naga were harvesting the crystals. Until it can be discerned why, I sense we should stop the naga from succeeding. The crystals have great elemental power and if used inappropriately, could make for a powerful arcane component.$B$BWill you help me, $N? Blackfathom Deeps can be found along Zoram Strand to the north of our outpost.", + ["O"] = "Bring 20 Sapphires of Aku\'Mai to Je\'neu Sancrea in Ashenvale.", + ["T"] = "The Essence of Aku\'Mai", + }, + [6564] = { + ["D"] = "Some poor handwriting is scrawled on the crumpled up note:$B$B\"Yes, tell all the priestesses to bring the crystals to me. The water elemental spirits are strong within them and they will aid our aquamancers greatly in their own summonings.$B$BBy controlling the power within the crystals, we will appease Aku\'Mai. One day we will have enough power to bring Aku\'Mai back to us and the world will return to its greatest era! An era of rule by the Old Gods!\"", + ["O"] = "Bring the Damp Note to Je\'neu Sancrea in Ashenvale.", + ["T"] = "Allegiance to the Old Gods", + }, + [6565] = { + ["D"] = "This Twilight\'s Hammer follower cannot be allowed to complete his plan. The Twilight\'s Hammer do not understand the spirits of nature. They believe in the Old Gods--creatures of chaos and destruction that were long ago defeated. This Lorgus cannot be allowed to succeed. You must stop him, $N. I cannot do it myself--I am too weak.$B$BGo into Blackfathom Deeps, find him, and kill him. Return to me here at Zoram\'gar when it\'s done.", + ["O"] = "Kill Lorgus Jett in Blackfathom Deeps and then return to Je\'neu Sancrea in Ashenvale.", + ["T"] = "Allegiance to the Old Gods", + }, + [6566] = { + ["D"] = "It is good to see you again, $N. The wind carries with it news from the Eastern Kingdom.$B$BSit, listen. ", + ["O"] = "Listen to Thrall.", + ["T"] = "What the Wind Carries", + }, + [6567] = { + ["D"] = "I have received word from one of my champions that a way into the lair of the dragon may exist. You are to seek him out.$B$BRexxar wanders the desert wasteland of Desolace, traveling between Stonetalon and Feralas. He awaits your arrival.", + ["O"] = "Seek out Rexxar. The Warchief has instructed you as to his whereabouts. Search the paths of Desolace, between the Stonetalon Mountains and Feralas.", + ["T"] = "The Champion of the Horde", + }, + [6568] = { + ["D"] = "What do you know of illusions, $N? For you see, it is an illusion that you must create in order to circumvent the Black Flight\'s defenses.$B$BI know of one that may be willing to assist you in your quest of deception. She has assisted our kind in the past when she has deemed the cause worthy.$B$BIn the Western Plaguelands you will find Myranda the Hag, master illusionist - an exile of the Lordaeron alliance. Travel there and take with you this message.", + ["O"] = "Deliver Rexxar\'s Testament to Myranda the Hag in the Western Plaguelands.", + ["T"] = "The Testament of Rexxar", + }, + [6569] = { + ["D"] = "So the $r wishes to become one of the Black Flight, eh?$B$BThe creation of the illusion you require is trivial, but the components required for the divination are quite difficult to obtain. Rexxar and the Warchief have entrusted you with this mission, so Myranda must assume you as capable.$B$BTravel to the upper citadel of Blackrock Spire and slay enough of the black dragonspawn to fill up one of your packs with their eyes.$B$BReturn to Myranda when you have gathered enough of the reagent.", + ["O"] = "Travel to Blackrock Spire and collect 20 Black Dragonspawn Eyes. Return to Myranda the Hag when the task is complete.", + ["T"] = "Oculus Illusions", + }, + [6570] = { + ["D"] = "I have attuned this medallion with the magic necessary to create and maintain an illusion within the bounds of the den of Emberstrife.$B$BEmberstrife is an ancient drake; an old gatekeeper of Nefarian, burdened with the duty to test those dragonspawn that would ascend to the rank of elite guard to Onyxia.$B$BTravel to the Wyrmbog of Dustwallow Marsh and enter the lair of Emberstrife. Once there, put on the amulet and follow where your destiny may lead!", + ["O"] = "Travel to the Wyrmbog in Dustwallow Marsh and seek out Emberstrife\'s Den. Once inside, wear the Amulet of Draconic Subversion and speak with Emberstrife.", + ["T"] = "Emberstrife", + }, + [6571] = { + ["D"] = "We are in short supply of a few items at the Warsong lumber camp!$B$BPixel at Splintertree Post has our shipment of saw blades. It\'ll take a trip to Booty Bay to pick up a crate of axes from Wharfmaster Lozgil.$B$BOur shipment of oil and rope will be more difficult. The rope was pilfered by the Thistlefur and Foulweald furbolgs, and the satyrs intercepted the delivery of the oil and are now using it for detestable rituals in Night Run, Satyrnaar, and Xavian!$B$BCan you help me?", + ["O"] = "Collect the Warsong Supplies: Warsong Saw Blades, Logging Rope, Warsong Oil, and the Warsong Axe Shipment for Locke Okarr in Splintertree Post.", + ["T"] = "Warsong Supplies", + }, + [6581] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Warsong Saw Blades", + }, + [6582] = { + ["D"] = "We are Deathwing\'s children, whelp. Our dominance over the lesser Aspects must be enforced.$B$BIf you are truly worthy of ascension, the lesser dragonflight will wilt in your presence.$B$BFind their champions and lay waste to them in the name of our Father!$B$BTravel to Winterspring and track down the mighty blue drake, Scryer. Crush him and any of the Blue Flight that stand in your path. Tear out his skull and return it to me.", + ["O"] = "You must find the blue dragonflight drake champion, Scryer, and slay him. Pry his skull from his corpse and return it to Emberstrife.$B$BYou know that Scryer can be found in Winterspring.", + ["T"] = "The Test of Skulls, Scryer", + }, + [6583] = { + ["D"] = "Just as our Father crushes the Aspects themselves, so too must we strive to bring chaos and destruction to their children.$B$BYou must test your battle prowess against the sleepless dreamers: The children of the Green Flight.$B$BTravel to the Swamp of Sorrows and track down Somnus, drake champion of the Green Flight. Let flow your hatred; dominate the insect... Return to me with his skull...", + ["O"] = "Destroy the drake champion of the Green Flight, Somnus. Take his skull and return it to Emberstrife.", + ["T"] = "The Test of Skulls, Somnus", + }, + [6584] = { + ["D"] = "The time watchers, children of Nozdormu - Lord of the Centuriesss...$B$BIt is three that guard the Caverns of Time, but only one that holds the interests of the Black Flight: The Time Shifter, Chronalis, favored drakeling of Nozdormu.$B$BSsstrike at this champion, a blow to make even the stoic sands of time weep. Return to me with his skull.", + ["O"] = "Guarding the Caverns of Time in the Tanaris Desert is Chronalis, child of Nozdormu. Destroy him and return his skull to Emberstrife.", + ["T"] = "The Test of Skulls, Chronalis", + }, + [6585] = { + ["D"] = "It was over the mountains of Grim Batol that our Father raged against the combined might of the Aspects. The cowardly act of the betrayer, Alexstrasza, bought the other Aspects enough time to escape from Father\'s wrath.$B$BSssuch a shameful act...$B$BThe Red Flight now guards Grim Batol, their lieutenant, Axtroz, must be destroyed. Return the skull of Axtroz to me. For Father, whelp!", + ["O"] = "Travel to Grim Batol and track down Axtroz, drake champion of the Red Flight. Destroy him and take his skull. Return the skull to Emberstrife.", + ["T"] = "The Test of Skulls, Axtroz", + }, + [6601] = { + ["D"] = "From the skulls of our enemies is shaped a medallion. You know this medallion, yesss? You have no doubt seen it worn by your elders.$B$BTake it, whelp. Return to the Spire and present it to General Drakkisath. The General will place the final enchantment upon the medallion, attuning the trinket to your spirit.$B$BYou will wear the finished medallion as a badge of honor, symbolizing your ascension to one of our most guarded ranks: Guardian to the brood mother.$B$BGo!", + ["O"] = "It would appear as if the charade is over. You know that the Amulet of Draconic Subversion that Myranda the Hag created for you will not function inside Blackrock Spire. Perhaps you should find Rexxar and explain your predicament. Show him the Dull Drakefire Amulet. Hopefully he will know what to do next.", + ["T"] = "Ascension...", + }, + [6602] = { + ["D"] = "You will pay the General a visit, yes, but not as one of the Black Dragonflight.$B$BYou see, a ceremony is merely another term for blood letting to the Black Flight.$B$BThe latent amulet merely needs the blood of the General in order to become active. One of their crude failsafe mechanisms.$B$BReturn to Blackrock Spire and destroy Drakkisath. Bring his blood back here and I shall activate the key to Onyxia\'s lair.", + ["O"] = "Travel to Blackrock Spire and slay General Drakkisath. Gather his blood and return it to Rexxar.", + ["T"] = "Blood of the Black Dragon Champion", + }, + [6603] = { + ["D"] = "There\'s trouble in Winterspring!$B$BWhy, sure, I spend some time out in the wilds and know about these things... I\'m always mighty proud to say it. I consider the hours I spend out there in the hills to be golden. Help you cultivate quick reflexes, a cool head and a keen eye...$B$BIt takes judgement, brains and maturity to appreciate the wilderness in the way that I do.$B$BNow, what was I talking about?$B$BAh yes, trouble. See Donova Snowden at the hot springs and she can tell you more.", + ["O"] = "Find Donova Snowden near the hot springs in Winterspring.", + ["T"] = "Trouble in Winterspring!", + }, + [6604] = { + ["D"] = "Have you noticed the abandoned camp to the south of here? It looks like the wildkin went crazy and destroyed just about everything they could find!$B$BI heard a rumor that one of the survivors of the attack is resting at Starfall Village, west of here. I\'m sure curious about what happened... aren\'t you?", + ["O"] = "Speak with Jaron Stoneshaper at Starfall Village.", + ["T"] = "Enraged Wildkin", + }, + [6605] = { + ["D"] = "I just got back from Felwood, $N. On my way through, I stopped at Bloodvenom Post and I met a very odd character... She seemed intent on one thing, and I suppose I could tell you what that is, but I think she\'d like to explain it to you herself.$B$BIf you\'re interested, head to Bloodvenom Post in western Felwood and look for Winna Hazzard.$B$BWho knows, she might need your help...", + ["O"] = "Speak with Winna Hazzard in Felwood.", + ["T"] = "A Strange One", + }, + [6606] = { + ["D"] = "We can always use a little luck, eh? A small advantage is all it takes to turn things in your favor...$B$BI happened to make the acquaintance of a rather eccentric witch doctor some time back. She made me a lucky charm... for a price. Believe me, though, it was well worth it!$B$BMaybe you\'d be interested in one of your own? See Witch Doctor Mau\'ari in Orgrimmar. I\'m not giving mine up!", + ["O"] = "Speak with Witch Doctor Mau\'ari in Orgrimmar.", + ["T"] = "A Little Luck", + }, + [6607] = { + ["D"] = "Can\'t say I really enjoy fishin\' much. Figure I been at it for a good 20 or 30 years now.$B$BI reckon people are driven to do what they do for different reasons.$B$BNow, I\'m not saying you need to fish for 30 years or catch every fish in the sea to become a master fisherman. I reckon you just need to be determined - determined enough to sit on your duff for hours at a time, doin\' nothin\'.$B$BI\'ll tell you what, catch me a few rare fish and I\'ll teach you a thing or two. Here\'s a list:", + ["O"] = "Nat Pagle wants you to catch the following fish:$B$BMisty Reed Mahi Mahi from the Misty Reed Strand in the Swamp of Sorrows.$B$BA Sar\'theris Striker from the Sar\'theris Strand in Desolace.$B$BFeralas Ahi from the Verdantis River of Feralas.$B$BSavage Coast Blue Sailfin from the Savage Coast of Stranglethorn Vale.$B$BReturn to Nat Pagle when you have reeled them all in!", + ["T"] = "Nat Pagle, Angler Extreme", + }, + [6608] = { + ["D"] = "Lumak no can teach $N no more. You too good! Find Lumak friend, Nat Pagle. Is human but no eat! Is Lumak friend! Nat teach you fish gooder.$B$BYou find Nat in Dustwallow Marsh, south of Humie town, Thermorosomethinglikedat. Nat probably fishing. Go now!", + ["O"] = "You think Lumak is trying to tell you that he can no longer help you improve your fishing skill. You may want to try to find his friend, Nat Pagle, a human fishing off one of the islands south of Theramore (at least that\'s what you think Lumak said).", + ["T"] = "You Too Good.", + }, + [6609] = { + ["D"] = "I\'m a dwarf fer cryin\' out loud, $g lad:missy;! I ain\'t been designed to fish! I mean look at me! I\'m practically made outta stone.$B$BI got nothin\' left - ye tapped me out. I\'ve taught ye all I know, flipflop!$B$BDon\'t ye get it? Ah, fine. I got an ol\' friend over on Kalimdor who can help ye out. \'Is name be Nat Pagle, a fine lad. Find him on the islands south o\' Theramore. Git goin\'!", + ["O"] = "Travel to Kalimdor, to the coastal city of Theramore. From there you must search for an island, south of the main town. Nat Pagle awaits your arrival!", + ["T"] = "I Got Nothin\' Left!", + }, + [6610] = { + ["D"] = "Ever heard of a clamlette? Of course you haven\'t! It\'s my latest and greatest culinary masterpiece. Oh, $N, just thinking about a clamlette makes my mouth water.$B$BUnfortunately, I\'m all out of supplies to make any! How about I make you a deal? You gather the supplies I need to make a clamlette and I\'ll teach you the finer points of exotic cuisine and I\'ll even throw in a couple of clamlettes to boot! Deal??$B$BHere\'s what I need:", + ["O"] = "Dirge Quikcleave wants you to get the following items:$B$B12 Giant Eggs. You will find those on the Rocs wandering Tanaris or any other species of large bird.$B$B10 pieces of Zesty Clam Meat. You can find those in clams, naturally!$B$B20 pieces of Alterac Swiss. Get thee to a cheesery!$B$BGather all of the items and return to Dirge.", + ["T"] = "Clamlette Surprise", + }, + [6611] = { + ["D"] = "How you expect Zamja teach you anything? You got all of Zamja\'s cooking mojo and still you crave more!$B$BZamja can\'t help. Fat $r needs to go to Gadgetzan. You find a little goblin named Dirge there - he help you, fatty.$B$BWhen you become big cook on the block, you come back and teach Zamja, ok? Now go!", + ["O"] = "Travel to Gadgetzan in the Tanaris desert and speak with Dirge Quikcleave about advancing your cooking career.", + ["T"] = "To Gadgetzan You Go!", + }, + [6612] = { + ["D"] = "I can tell by yer cooking spoon that ye know what yer doin\'. Unfortunately, I can\'t teach ya nothin\'.$B$BLuckily fer ye, I know a guy. He\'s a goblin and probably the best cook on Kalimdor.$B$BAyep, that\'s the bad news, $g lad:missy; - ye got to travel to Kalimdor. Git to Gadgetzan and find Dirge Quikcleave. He\'ll set ya straight.", + ["O"] = "Travel to Gadgetzan in the Tanaris desert and speak with Dirge Quikcleave about advancing your cooking career.", + ["T"] = "I Know A Guy...", + }, + [6621] = { + ["D"] = "$N, another tribe of Furbolgs, the Foulweald, live southeast of Astranaar. They are not as many as the Thistlefur, but their ferocity poses a future threat. With a show of force, we can remove that threat.$B$BTake this banner, go to the Foulweald village and place it on their totem mound. They will try to destroy the banner, but hold your ground until their chief, Murgut, appears to save face for the tribe. Bring me the totem he carries.$B$BGather your allies, $N. This is no task for a single $c.", + ["O"] = "Place Karang\'s Banner on the Foulweald Totem Mound. Do not let the furbolgs destroy the banner. Defeat Chief Murgut and bring Murgut\'s Totem to Karang Amakkar at Zoram\'gar.", + ["T"] = "King of the Foulweald", + }, + [6622] = { + ["D"] = "Good day, doctor. You will be tested on your ability to triage patients accordingly this afternoon. Should you pass your examination, you will join the prestigious ranks of Horde Trauma.$B$BNow pay attention! The critically injured must be tended to first. After the criticals come the badly injured. The injured should be tended to last. You must save 15 patients to pass this exam. You will fail should 6 of your patients die in triage.$B$BTriage bandages will be supplied.$B$BGood luck, doctor.", + ["O"] = "Save patients by using Triage Bandages to tend to their wounds. You must save 15 patients before 6 of them die from their injuries.$B$BRemember the order of triage! Critically Injured Soldiers die the fastest followed by Badly Injured Soldiers. Injured Soldiers take the longest to die and should be saved AFTER your Critically Injured and Badly Injured Soldiers have been triaged.", + ["T"] = "Triage", + }, + [6623] = { + ["D"] = "Doctor $N, I presume. It is a pleasure to see you again.$B$BI have some wonderful news for you! Doctor Gregory Victor, chief physician of Horde Trauma has made a personal request for you to join him at Hammerfall. This could be the opportunity of a lifetime! I would give anything to be given a chance to study under the great Doctor Gregory Victor! Do not squander this opportunity!", + ["O"] = "Travel to Hammerfall in the Arathi Highlands and speak with Doctor Gregory Victor about joining the ranks of Horde Trauma.", + ["T"] = "Horde Trauma", + }, + [6624] = { + ["D"] = "Good day, doctor. You will be tested on your ability to triage patients accordingly this afternoon. Should you pass your examination, you will join the prestigious ranks of Alliance Trauma.$B$BNow pay attention! The critically injured must be tended to first. After the criticals come the badly injured. The injured should be tended to last. You must save 15 patients to pass this exam. You will fail should 6 of your patients die in triage.$B$BGood luck, doctor.", + ["O"] = "Save patients by using Triage Bandages to tend to their wounds. You must save 15 patients before 6 of them die from their injuries.$B$BRemember the order of triage! Critically Injured Soldiers die the fastest followed by Badly Injured Soldiers. Injured Soldiers take the longest to die and should be saved AFTER your Critically Injured and Badly Injured Soldiers have been triaged.", + ["T"] = "Triage", + }, + [6625] = { + ["D"] = "Doctor $N, I presume. It is a pleasure to see you.$B$BI have some wonderful news for you! Gustaf VanHowzen, chief physician of Alliance Trauma has made a personal request for you to join him at Theramore. This could be the opportunity of a lifetime! I would give anything to be given a chance to study under the great doctor, Gustaf VanHowzen! Do not squander this opportunity, doctor!", + ["O"] = "Travel to Theramore in the Dustwallow Marsh and speak with Doctor Gustaf VanHowzen about joining the ranks of Alliance Trauma.", + ["T"] = "Alliance Trauma", + }, + [6626] = { + ["D"] = "The Forsaken do not pass on their... illness... from what I have seen. This diplomat seems to be granting undeath to would-be followers. I am beginning to think he is one of the Scourge.$B$BFor now, my concern is not with him though, it\'s with the growing ranks around him. They creep from the shadows daily, almost begging him for more power.$B$BI\'m not powerful enough to fight them on my own, $N. What do you say? Are you up for some hunting?", + ["O"] = "Kill 8 Razorfen Battleguard, 8 Razorfen Thornweavers, and 8 Death\'s Head Cultists and return to Myriam Moonsinger near the entrance to Razorfen Downs.", + ["T"] = "A Host of Evil", + }, + [6627] = { + ["D"] = "You have brought me the book, and now it is time for your question. Are you ready?$B$BTime is not an issue, $c, so do not feel pressured. You may take as long as you like to answer.", + ["O"] = "Answer Braug Dimspirit\'s question successfully and then speak to him again. He will remain in Stonetalon Mountains when you are ready.", + ["T"] = "Test of Lore", + }, + [6628] = { + ["D"] = "So the time is once again upon us. As a student of lore, you have shown great tenacity by undertaking my task.$B$BAnd so now I offer you your question. If you are ready, speak to me again, and take all the time you need, $N--there is no pressure to answer quickly.", + ["O"] = "Answer Parqual Fintallas\' question successfully and then speak to him again. He will remain in the Undercity until you are ready.", + ["T"] = "Test of Lore", + }, + [6629] = { + ["D"] = "$N, you\'ve done a fine job killing Grimtotem. If you dare, Grundig Darkcloud and his personal band of brutes is by far the worst of the lot. He was the one who led the brutal attack on my village.$b$bYou will find him in Grimtotem Post a bit further up the path to the west. Kill him, and I will be forever grateful.", + ["O"] = "Kill Grundig Darkcloud and 6 Grimtotem Brutes, and return to Makaba Flathoof near the southeastern edge of Stonetalon.", + ["T"] = "Kill Grundig Darkcloud", + }, + [6641] = { + ["D"] = "Vorsha the Lasher... the fiendish hydra that roams the seas...$B$BShe has attacked our outpost, each time unprovoked, laying waste to anything that falls in her path.$B$BBut I am ready, $N. I have prepared to best the hydra and end these attacks on Zoram\'gar.$B$BThe naga honor the wicked nature of this beast with a brazier that remains lit on an island just off the coast. I believe that if we put it out, Vorsha will appear in anger.$B$BWe will need help, so be sure to bring some strong allies.", + ["O"] = "Keep Muglash safe as he travels to the brazier. Help him by putting the brazier out, then protect him as you fight against the Naga.$B$BIf you are successful, return to the Zoram\'gar Outpost and inform the Warsong Runner of the death of Vorsha the Lasher.", + ["T"] = "Vorsha the Lasher", + }, + [6642] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Favor Amongst the Brotherhood, Dark Iron Ore", + }, + [6643] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Favor Amongst the Brotherhood, Fiery Core", + }, + [6644] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Favor Amongst the Brotherhood, Lava Core", + }, + [6645] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Favor Amongst the Brotherhood, Core Leather", + }, + [6646] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Favor Amongst the Brotherhood, Blood of the Mountain", + }, + [6661] = { + ["D"] = "Avast ye scallywag. Arrrr... Arrrr ye looking fer work? We gots a serious rat problem down here an\' not enough hands on the poop deck.$B$BWhat do ye say? All ye needs to do is take this here rat catchin\' flute and play the melody around the vermin. They\'ll follow ye to the ends of the world!$B$BJust capture five of the little buggers and bring em back here. We needs em alive.$B$BArrrrr...", + ["O"] = "Capture 5 Deeprun Rats by using the Rat Catcher\'s Flute. Lead the rats back to Monty. Don\'t forget to turn in the flute when you\'re finished.", + ["T"] = "Deeprun Rat Roundup", + }, + [6662] = { + ["D"] = "Me brother, Nipsy, runs a rat kabob operation on the other side of Deeprun. Ye needs to take this here crate o\' rats to him before they go bad. Get a move on!$B$BYe have ridden a tram before, aye? It\'s easy. Just step aboard when she arrives and enjoy the ride. An\' keep yer arms and legs inside durin\' the ride, lest ye be peglegged fer life.", + ["O"] = "Take the Carton of Mystery Meat to Nipsy at the Stormwind Deeprun Tram Depot.", + ["T"] = "Me Brother, Nipsy", + }, + [6681] = { + ["D"] = "$N,$B$BRavenholdt has taken an interest in you, young thief. We have been watching. Your style is a bit awkward but nothing we couldn\'t fix.$B$BShould you be prepared to embark on a career as a disciple of Master Ravenholdt and member of the Assassin\'s League, you have only to bring the Seal of Ravenholdt (attached to this letter) to Ravenholdt Manor.$B$BYour first task is to find the manor, hidden away in the hills of Hillsbrad and demonstrate your cunning.$B$BRegards,$B$BFahrad", + ["O"] = "Take the Seal of Ravenholdt to Fahrad at Ravenholdt Manor, hidden away in the hills of Hillsbrad.$B$BYour cunning will be tested along the way. Be prepared.", + ["T"] = "The Manor, Ravenholdt", + }, + [6701] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Syndicate Emblems", + }, + [6721] = { + ["D"] = "Hello, young hunter. You look to me like you are skilled enough to handle a beast and train it as your companion.$B$BYou must see Dazalar in Dolanaar. He can put you on the path to earning a pet of your own.", + ["O"] = "Speak with Dazalar in Dolanaar.", + ["T"] = "The Hunter\'s Path", + }, + [6722] = { + ["D"] = "Hello, young hunter. You look to me like you are skilled enough to handle a beast and train it as your companion.$B$BYou must see Dazalar in Dolanaar. He can put you on the path to earning a pet of your own.", + ["O"] = "Speak with Dazalar in Dolanaar.", + ["T"] = "The Hunter\'s Path", + }, + [6741] = { + ["D"] = "", + ["O"] = "", + ["T"] = "More Booty!", + }, + [6761] = { + ["D"] = "I have relegated my second, Mathrengyl Bearwalker, to deal with Moonglade\'s call for aid. Speak to him on this matter - NOT me.$B$BLet me give you some... friendly... advice. It is I who led us out of the darkness - NOT the Cenarion Circle in Moonglade - when all was lost for our race. Teldrassil gives us all new life! They would have you believe otherwise, and to believe their propaganda would be a fool\'s task.$B$BI\'ll leave it to you to decide whether or not you\'re a fool.", + ["O"] = "Speak with Mathrengyl Bearwalker at the Cenarion Enclave of Darnassus.", + ["T"] = "The New Frontier", + }, + [6762] = { + ["D"] = "For this task, Keeper Remulos\' majordomo in Moonglade - Rabine Saturna - seeks aid in exploring the vast wastelands far to the west of Tanaris... and even further west of Un\'Goro. You should find him in Nighthaven, the main village of Moonglade.$B$BWhile your work will no doubt be of tremendous benefit to us all, I advise you to tread gingerly. There are tensions between Darnassus and Moonglade... ones that may grow over the course of time.", + ["O"] = "Speak with Rabine Saturna in the village of Nighthaven, Moonglade. Moonglade lies between Felwood and Winterspring, accessible through a path out of Timbermaw Hold.", + ["T"] = "Rabine Saturna", + }, + [6781] = { + ["D"] = "", + ["O"] = "", + ["T"] = "More Armor Scraps", + }, + [6801] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Lokholar the Ice Lord", + }, + [6804] = { + ["D"] = "A force of elemental scouts was sent to the eastern plaguelands of Lordaeron, and the disease of that place twisted and infected them. The Waterlords cannot allow this affront to our purity!$B$BTake this vial. In it is a quantity of one aspect of Neptulon. If used on the plagued elementals it will fight the poison within their bodies and cure them! But their inner conflict will drive them into a surging madness.$B$BDefeat the discordant surges and bring me their bracers of binding.", + ["O"] = "Use the Aspect of Neptulon on poisoned elementals of Eastern Plaguelands. Bring 12 Discordant Bracers and the Aspect of Neptulon to Duke Hydraxis in Azshara.", + ["T"] = "Poisoned Water", + }, + [6805] = { + ["D"] = "We, the elementals of water, wage war with those beings of the lesser elements. If you are truly our ally in this conflict, then show me your conviction!$B$BFar to the south, in the desert land of Silithus, the servants of air and earth scurry in a corner of rock named the Crystal Vale. They protect items of power from smaller beings, mortals, and although I do not know why they do this, I wish to foil their efforts.$B$BGo to the Crystal Vale in Silithus and defeat our enemies, then return to me.", + ["O"] = "Kill 15 Dust Stormers and 15 Desert Rumbers and then return to Duke Hydraxis in Azshara.", + ["T"] = "Stormers and Rumblers", + }, + [6821] = { + ["D"] = "You have shown me that you can defeat our enemies and perform missions to further the cause of the Waterlords. But until now you have only faced lesser foes... if pitted against a powerful enemy, can you prevail?$B$BThat is your new task.$B$BHigh up in Blackrock Spire the orcs have captured a servant of fire, the Pyroguard Emberseer. Find his place of imprisonment, slay his captors, and then slay the emberseer. Bring me his eye and it will show me your worth.", + ["O"] = "Bring the Eye of the Emberseer to Duke Hydraxis in Azshara.", + ["T"] = "Eye of the Emberseer", + }, + [6822] = { + ["D"] = "$n, perhaps it is time to give you a real test. Are you ready?$B$BAt the bottom of Blackrock Depths is a passage to the Molten Core. This is a stronghold of our enemy, held by the most powerful servants of fire on this world.$B$BGo to the Molten Core, $N. Show me you have the strength and the will to defeat what you find there.$B$BAnd if you have allies among your people, then rally them. Nothing short of an army can hope to enter the Molten Core and live.", + ["O"] = "Kill 1 Fire Lord, 1 Molten Giant, 1 Ancient Core Hound and 1 Lava Surger, then return to Duke Hydraxis in Azshara.", + ["T"] = "The Molten Core", + }, + [6823] = { + ["D"] = "If you truly wish an allegiance with us, then I invite you to wage war on our foes, the servants of air and earth and fire. Each defeat you heap upon them will weaken their foothold here, and further prove your adherence to our cause.$B$BThe campaign will be long, but if you persevere then your glory and honor will be great.", + ["O"] = "Earn an Honored faction with the Hydraxian Waterlords, then talk to Duke Hydraxis in Azshara.", + ["T"] = "Agent of Hydraxis", + }, + [6824] = { + ["D"] = "$N, your service is of great value to us, so we are reluctant to send you on this last mission for we do not want to lose such a useful agent.$B$BBut its success would further our war efforts tremendously and... it was deemed worth risking you.$B$BWe want these captains in the Molten Core destroyed: Lucifron, Sulfuron, Gehennas and Shazzrah. Kill them and bring me their hands!$B$BThis task will take every resource you possess, $N, but if can do it then the Firelords will be dealt a terrible blow.", + ["O"] = "Bring the Hands of Lucifron, Sulfuron, Gehennas and Shazzrah to Duke Hydraxis in Azshara.", + ["T"] = "Hands of the Enemy", + }, + [6825] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Call of Air - Guse\'s Fleet", + }, + [6826] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Call of Air - Jeztor\'s Fleet", + }, + [6827] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Call of Air - Mulverick\'s Fleet", + }, + [6841] = { + ["D"] = "x", + ["O"] = "x", + ["T"] = "", + }, + [6842] = { + ["D"] = "x", + ["O"] = "x", + ["T"] = "", + }, + [6844] = { + ["D"] = "There\'s plenty to do here still, but I think taking this back to the Circle for analysis is key. Trust me - the work will still be here once this is all said and done. If it\'s a journal inside this sticky chitin, then the Circle would finally have a window into the past!$B$BTake this to the Circle\'s archivist in Nighthaven. His name is Umber, and the man\'s brilliant. Touched, sure, but brilliant nonetheless! Umber\'s salvaged tomes in far worse shape than this. If it can be saved, he can do it.", + ["O"] = "Take the Encrusted Silithid Object to Umber - the Cenarion Circle\'s archivist - in the village of Nighthaven, Moonglade.", + ["T"] = "Umber, Archivist", + }, + [6845] = { + ["D"] = "Anyway, you should check back with me relatively soon... that is if you want to know what was in here. As soon as I find out what it is, and if it\'s indeed a book, I\'d be happy to share that information with you.$B$BIn the meantime, I\'d check in with the den mother of this little bear camp, Rabine. No doubt he\'ll want to know what crazy antics you\'ve been up to. Never leave the den mother waiting, $N... that is, unless you want to be doused in honey.$B$BIt\'s happened, trust me.", + ["O"] = "Speak with Rabine Saturna in the village of Nighthaven, Moonglade.", + ["T"] = "Uncovering Past Secrets", + }, + [6846] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Begin the Attack!", + }, + [6847] = { + ["D"] = "Your war in the heart of Alterac means nothing to the Syndicate, $c. We will do as we have always done: Wait until a clear victor rises from the ashes and rubble of this madness and then strike.$B$BThat, however, is not why we are here now. The All Seeing Eye has been lost - taken by the Winterax trolls of the region.$B$BRecover the Eye and our services shall be yours - for whatever time remains for your side.$B$BReturn to me once you acquire the eye so that I may examine you.$B$B", + ["O"] = "Recover Master Ryson\'s All Seeing Eye from the Winterax caves and return it to Master Ryson.$B$BBe warned, it is said that Master Ryson\'s All Seeing Eye carries with it a terrible curse!", + ["T"] = "Master Ryson\'s All Seeing Eye", + }, + [6848] = { + ["D"] = "Your war in the heart of Alterac means nothing to the Syndicate, $c. We will do as we have always done: Wait until a clear victor rises from the ashes and rubble of this madness and then strike.$B$BThat, however, is not why we are here now. The All Seeing Eye has been lost - taken by the Winterax trolls of the region.$B$BRecover the Eye and our services shall be yours - for whatever time remains for your side.$B$BReturn to me once you acquire the eye so that I may examine you.$B$B", + ["O"] = "Recover Master Ryson\'s All Seeing Eye from the Winterax caves and return it to Master Ryson.$B$BBe warned, it is said that Master Ryson\'s All Seeing Eye carries with it a terrible curse!", + ["T"] = "Master Ryson\'s All Seeing Eye", + }, + [6861] = { + ["D"] = "I\'m as anxious as you are to try out my portable shredder unit, $r, but before I can make the kit, I\'m going to need materials - lots of materials!$B$BTo be exact, I\'m going to need a mountain of thorium, mithril, and iron. I will also need one steamsaw per unit. You\'ll have to get those at the lumber mill.$B$BWhen I was nosing around in here (before my capture) I noticed a pile of steamsaws at the Stormpike lumber camp.", + ["O"] = "Master Engineer Zinfizzlex wants you to bring him the following:$B$B*30 Thorium Bars.$B$B*50 Mithril Bars.$B$B*75 Iron bars.$B$B*1 Steamsaw.", + ["T"] = "Zinfizzlex\'s Portable Shredder Unit", + }, + [6862] = { + ["D"] = "I\'m as anxious as you are to try out my portable shredder unit, $r, but before I can make the kit, I\'m going to need materials - lots of materials!$B$BTo be exact, I\'m going to need a mountain of thorium, mithril, and iron. I will also need one steamsaw per unit. You\'ll have to get those at the lumber mill.$B$BWhen I was nosing around in here (before my capture) I noticed a pile of steamsaws at the Frostwolf lumber camp.", + ["O"] = "Master Engineer Zinfizzlex wants you to bring him the following:$B$B*30 Thorium Bars.$B$B*50 Mithril Bars.$B$B*75 Iron bars.$B$B*1 Steamsaw.", + ["T"] = "Zinfizzlex\'s Portable Shredder Unit", + }, + [6881] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Ivus the Forest Lord", + }, + [6901] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Launch the Attack!", + }, + [6921] = { + ["D"] = "The Twilight\'s Hammer has moved into the Moonshrine Ruins of Blackfathom Deeps. Their presence can only serve to coerce the elements into working against us. If left unchecked, this region will be theirs for good.$B$B$N, go into Blackfathom and find the ruin\'s fathom stone; it should be somewhere close in the water. In it is a fathom core - a device that when properly read it will relate a history of all elemental activity. If I have it, I and the Earthen Ring can maybe do something to stop them!", + ["O"] = "Bring the Fathom Core to Je\'neu Sancrea at Zoram\'gar Outpost, Ashenvale.", + ["T"] = "Amongst the Ruins", + }, + [6922] = { + ["D"] = "The defeated water elemental has left behind a strange water globe. You surmise that the object somehow fed the beast energy. Inside the globe, a putrid-looking form of water sloshes about. The globe itself seems impervious to any sort of physical force.$B$BIf anyone can make any sense of this item, it would be Je\'neu Sancrea of the Earthen Ring. He is located at the Horde\'s Zoram\'gar Outpost in Ashenvale.", + ["O"] = "Bring the Strange Water Globe to Je\'neu Sancrea at Zoram\'gar Outpost, Ashenvale.", + ["T"] = "Baron Aquanis", + }, + [6941] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Call of Air - Vipore\'s Fleet", + }, + [6942] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Call of Air - Slidore\'s Fleet", + }, + [6943] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Call of Air - Ichman\'s Fleet", + }, + [6961] = { + ["D"] = "Have a wondrous Winter Veil, friend! Be sure to say hello to Greatfather Winter! If you\'ve been nice this year, you\'ll receive wondrous treats on the day of the Feast of Winter Veil. Be sure to tell him what you hope to get this year!$B$BAlso, be sure to stock up on treats to give those who\'ve been nice this year. We have a great selection to choose from. Fresh from our farm to your plate - it\'s Smokywood Pastures wholesome goodness!", + ["O"] = "Speak with Greatfather Winter; he is located near the Smokywood Pastures vendor area in Orgrimmar.", + ["T"] = "Great-father Winter is Here!", + }, + [6962] = { + ["D"] = "Hey, can you do Greatfather Winter a favor, um, little $g boy : girl;?$B$BNot to needlessly talk about myself in the third person, but Greatfather Winter has been at this all day and he could use a treat himself. Some gingerbread cookies and ice cold milk to wash them down with would really hit the spot. Think you could be a friend to the Greatfather and fetch some for me?", + ["O"] = "Bring 5 Gingerbread Cookies and an Ice Cold Milk to Greatfather Winter in Orgrimmar.", + ["T"] = "Treats for Great-father Winter", + }, + [6963] = { + ["D"] = "Listen... not to shatter the magic of the season here, but Smokywood Pastures could use some assistance - the kind you adventuring types are known to give.$B$BWe\'re missing an important shipment of treats that was restocking us for the season, and now we\'re missing the agent of Smokywood Pastures that we sent out to the field to find it! Please - the shipment was last reported in the Alterac Mountains, and that\'s where our man went to look for it.$B$BSee if both are out there, safe and sound!", + ["O"] = "Locate the Smokywood Pastures investigator that has gone missing in the snowy regions of the Alterac Mountains.", + ["T"] = "Stolen Winter Veil Treats", + }, + [6964] = { + ["D"] = "Gifts, treats, presents... bah, I say!$B$BThose goblins pollute the true meaning of this season - the Feast of Winter Veil. This is a time of renewal; the land slumbers under a blanket of snow brought forth by Greatfather Winter, who is NOT the bumbling fool over there in the red suit!$B$BIf you\'re interested in learning what the Feast is all about for yourself, ask Sagorne Creststrider. I\'m sure he\'ll be surprised that someone cares about history rather than getting presents.", + ["O"] = "Speak with Sagorne Creststrider in the Valley of Wisdom of Orgrimmar about the Feast of Winter Veil.", + ["T"] = "The Reason for the Season", + }, + [6981] = { + ["D"] = "The shard is a brilliant green, and although solid, what looks like smoke swirls just below the surface. You can\'t help staring into the depths of the crystal; at the same time, you know there is something very disturbing about it.$B$BMaybe you should see if anyone in Ratchet can tell you more about this strange shard.", + ["O"] = "Travel to Ratchet to find someone that can tell you more about the glowing shard.$B$BThen, deliver the shard as you are directed.", + ["T"] = "The Glowing Shard", + }, + [6982] = { + ["D"] = "The Coldtooth mine is a storage depot for the Horde. I can\'t stomach the food they give their troops, and the state of their arms and armor is atrocious! But... in times like these when supplies are so important, we can use what they have.$B$BEnter the Coldtooth mine and bring me back their supplies. That will help keep the Alliance in fighting shape, and remove much needed equipment from the Horde\'s warriors.$B$BGood luck, $N. The mine is to the distant south, deep in Horde territory.", + ["O"] = "Bring 10 Coldtooth Supplies to the Alliance Quartermaster in Dun Baldar.", + ["T"] = "Coldtooth Supplies", + }, + [6983] = { + ["D"] = "A c-c-creature called \"The Abominable Greench\" is the one w-w-who stole our shipment of t-t-treats, $N. Be c-c-careful though! He is t-t-the one who turned me into this s-s-snowy mess!$B$BYou\'re g-g-gonna need some help in f-f-facing him. I\'ve seen him w-w-wander all around where the y-y-yeti are; he\'s s-s-surely here s-s-somewhere! F-f-find the treats $N, take them b-b-back to Smokywood Pastures in Orgrimmar, and t-t-tell them I n-n-need to be unfrozen!", + ["O"] = "Locate and return the Stolen Treats to Kaymard Copperpinch in Orgrimmar. It was last thought to be in the possession of the Abominable Greench, found somewhere in the snowy regions of the Alterac Mountains.", + ["T"] = "You\'re a Mean One...", + }, + [6984] = { + ["D"] = "We at Smokywood Pastures appreciate the recovery of the stolen treats, $N. For that, we\'d like to offer you a special gift... presented by none other than Great-father Winter himself!$B$BPlease, speak with Great-father Winter, and he will give you your Feast of Winter Veil gift from us here at Smokywood Pastures. From our farm to your plate, it\'s always Smokywood Pastures wholesome goodness... thanks to you, of course!", + ["O"] = "Speak with Great-father Winter in Orgrimmar.", + ["T"] = "A Smokywood Pastures\' Thank You!", + }, + [6985] = { + ["D"] = "The Stormpike dwarves are using the Irondeep mine as a storage depot. I want you to raid that mine and bring me its supplies. This will curtail the Stormpikes\' efforts in Alterac Valley, and will provide us with needed equipment!$B$BBe wary, $N. The Irondeep mine is deep in Alliance territory, and control of the mine is as shifting as the snows of Alterac.", + ["O"] = "Bring 10 Irondeep Supplies to the Horde Quartermaster in Frostwolf Keep.", + ["T"] = "Irondeep Supplies", + }, + [7001] = { + ["D"] = "The war in the valley has taken its toll on our soldiers. We must revitalize our forces!$B$BIf we can fill up the stables, the Wolf Riders will once more be able to ride out into the field of battle.$B$BTake this muzzle and track down the frostwolves that inhabit the nearby forest. Once you find a wolf, use the muzzle to tame the beast. Bring the tamed beast back to me so that I may place it in the stable.$B$BWhen we have enough wolves stabled, the Wolf Riders will rejoin their patrol on our front lines.", + ["O"] = "Locate a Frostwolf in Alterac Valley. Use the Frostwolf Muzzle when you are near the Frostwolf to \'tame\' the beast. Once tamed, the Frostwolf will follow you back to the Frostwolf Stable Master. Speak with the Frostwolf Stable Master to earn credit for the capture.", + ["T"] = "Empty Stables", + }, + [7002] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Ram Hide Harnesses", + }, + [7003] = { + ["D"] = "I\'m going to have to do something about the giants if I stay out here! They\'re certainly not good for business, now are they?$B$BI\'ve been working on a variant of a gnomish shrinking ray, but I\'m using superior GOBLIN technological advances in its construction! In an effort to avoid inconveniences for myself such as death, I\'d like for you to try it out on any of the giants in Feralas. You should find miniaturization residue on them after you shrink them - bring me back some!", + ["O"] = "Use Zorbin\'s Ultra-Shrinker to zap any kind of giant found in Feralas into a more manageable form. Bring 15 Miniaturization Residues found on the zapped versions of these giants to Zorbin Fandazzle at the docks of the Forgotten Coast, Feralas.", + ["T"] = "Zapped Giants", + }, + [7021] = { + ["D"] = "Have a wondrous Winter Veil, friend! Be sure to say hello to Greatfather Winter, who\'s currently in Orgrimmar! If you\'ve been nice this year, you\'ll receive wondrous treats on the day of the Feast of Winter Veil. Be sure to tell him what you hope to get this year!$B$BAlso, be sure to stock up on treats to give those who\'ve been nice this year. We have a great selection to choose from. Fresh from our farm to your plate - it\'s Smokywood Pastures wholesome goodness!", + ["O"] = "Speak with Greatfather Winter; he is located near the Smokywood Pastures vendor area in Orgrimmar.", + ["T"] = "Great-father Winter is Here!", + }, + [7022] = { + ["D"] = "Have a wondrous Winter Veil, friend! Be sure to say hello to Greatfather Winter! If you\'ve been nice this year, you\'ll receive wondrous treats on the day of the Feast of Winter Veil. Be sure to tell him what you hope to get this year!$B$BAlso, be sure to stock up on treats to give those who\'ve been nice this year. We have a great selection to choose from. Fresh from our farm to your plate - it\'s Smokywood Pastures wholesome goodness!", + ["O"] = "Speak with Greatfather Winter; he is located near the Smokywood Pastures vendor area in Ironforge.", + ["T"] = "Greatfather Winter is Here!", + }, + [7023] = { + ["D"] = "Have a wondrous Winter Veil, friend! Be sure to say hello to Greatfather Winter, who\'s currently in Ironforge! If you\'ve been nice this year, you\'ll receive wondrous treats on the day of the Feast of Winter Veil. Be sure to tell him what you hope to get this year!$B$BAlso, be sure to stock up on treats to give those who\'ve been nice this year. We have a great selection to choose from. Fresh from our farm to your plate - it\'s Smokywood Pastures wholesome goodness!", + ["O"] = "Speak with Greatfather Winter; he is located near the Smokywood Pastures vendor area in Ironforge.", + ["T"] = "Greatfather Winter is Here!", + }, + [7024] = { + ["D"] = "Have a wondrous Winter Veil, friend! Be sure to say hello to Greatfather Winter, who\'s currently in Orgrimmar! If you\'ve been nice this year, you\'ll receive wondrous treats on the day of the Feast of Winter Veil. Be sure to tell him what you hope to get this year!$B$BAlso, be sure to stock up on treats to give those who\'ve been nice this year. We have a great selection to choose from. Fresh from our farm to your plate - it\'s Smokywood Pastures wholesome goodness!", + ["O"] = "Speak with Greatfather Winter; he is located near the Smokywood Pastures vendor area in Orgrimmar.", + ["T"] = "Great-father Winter is Here!", + }, + [7025] = { + ["D"] = "Hey, can you do Greatfather Winter a favor, um, little $g boy : girl;?$B$BNot to needlessly talk about myself in the third person, but Greatfather Winter has been at this all day and he could use a treat himself. Some gingerbread cookies and ice cold milk to wash them down with would really hit the spot. Think you could be a friend to the Greatfather and fetch some for me?", + ["O"] = "Bring 5 Gingerbread Cookies and an Ice Cold Milk to Greatfather Winter in Ironforge.", + ["T"] = "Treats for Greatfather Winter", + }, + [7026] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Ram Riding Harnesses", + }, + [7027] = { + ["D"] = "Just look at the stables, $N! Empty! The Stormpike Brigade has no rams to ride - the cavalry is defunct.$B$BYou must help us, soldier. Take this training collar and enter the wilds of this valley. Locate the Alterac rams that roam throughout the area and use the collar to snare one. When you have captured a ram, return it to me and I shall place it in our stable.$B$BWhen we have enough rams, the ram rider commander will be notifed. With your help, the cavalry will be reborn!", + ["O"] = "Locate an Alterac Ram in Alterac Valley. Use the Stormpike Training Collar when you are near the Alterac Ram to \'tame\' the beast. Once tamed, the Alterac Ram will follow you back to the Stable Master. Speak with the Stable Master to earn credit for the capture.", + ["T"] = "Empty Stables", + }, + [7028] = { + ["D"] = "The crystal caverns of Terramok lie to the west, deep within Maraudon... It is an ancient place with much history. And I am looking to get my hands on some of it, $c. Relics of the old gods lie hidden behind the giant doors.$B$BIf you are willing to brave the twisted evils found in Maraudon, I believe I can make it worth your time. Collect the theradric crystal carvings you find, and return them to me.$B$BOnce I get the carvings, I will be able to... study them. These powers have been too long at rest... ", + ["O"] = "Collect 25 Theradric Crystal Carvings for Willow in Desolace.", + ["T"] = "Twisted Evils", + }, + [7029] = { + ["D"] = "A satyr known as Vyletongue has corrupted the caverns of Maraudon, stunting the growth of many of the plants inside.$B$BTake this vial, $N. Fill it at the orange crystal pool found inside the caverns; the coating inside the vial will counter the toxins, turning it into a healing agent.$B$BFind the Vylestem vines inside the orange caverns, and use the purified liquid on them. The corruption will be purged from the plant, but do know that Vyletongue will still control it. He may use it against you...", + ["O"] = "Fill the Coated Cerulean Vial at the orange crystal pool in Maraudon.$B$BUse the Filled Cerulean Vial on the Vylestem Vines to force the corrupted Noxxious Scion to emerge.$B$BHeal 8 plants by killing these Noxxious Scion, then return to Vark Battlescar in Shadowprey Village.", + ["T"] = "Vyletongue Corruption", + }, + [7041] = { + ["D"] = "A satyr known as Vyletongue has corrupted the caverns of Maraudon, stunting the growth of many of the plants inside.$B$BTake this vial, $N. Fill it at the corrupted orange pool found inside the caverns; the coating inside the vial will counter the toxins, turning it into a healing agent.$B$BFind the Vylestem vines inside the orange caverns, and use the purified liquid on them. The corruption will be purged from the plant, but do know that Vyletongue will still control it. He may use it against you...", + ["O"] = "Fill the Coated Cerulean Vial at the orange crystal pool in Maraudon.$B$BUse the Filled Cerulean Vial on the Vylestem Vines to force the corrupted Noxxious Scion to emerge.$B$BHeal 8 plants by killing these Noxxious Scion, then return to Talendria in Nijel\'s Point.", + ["T"] = "Vyletongue Corruption", + }, + [7042] = { + ["D"] = "Listen... not to shatter the magic of the season here, but Smokywood Pastures could use some assistance - the kind you adventuring types are known to give.$B$BWe\'re missing an important shipment of treats that was restocking us for the season, and now we\'re missing the agent of Smokywood Pastures that we sent out to the field to find it! Please - the shipment was last reported in the Alterac Mountains, and that\'s where our man went to look for it.$B$BSee if both are out there, safe and sound!", + ["O"] = "Locate the Smokywood Pastures investigator that has gone missing in the snowy regions of the Alterac Mountains.", + ["T"] = "Stolen Winter Veil Treats", + }, + [7043] = { + ["D"] = "A c-c-creature called \"The Abominable Greench\" is the one w-w-who stole our shipment of t-t-treats, $N. Be c-c-careful though! He is t-t-the one who turned me into this s-s-snowy mess!$B$BYou\'re g-g-gonna need some help in f-f-facing him. I\'ve seen him w-w-wander all around where the y-y-yeti are; he\'s s-s-surely here s-s-somewhere! F-f-find the treats $N, take them b-b-back to Smokywood Pastures in Ironforge, and t-t-tell them I n-n-need to be unfrozen!", + ["O"] = "Locate and return the Stolen Treats to Wulmort Jinglepocket in Ironforge. It was last thought to be in the possession of the Abominable Greench, found somewhere in the snowy regions of the Alterac Mountains.", + ["T"] = "You\'re a Mean One...", + }, + [7044] = { + ["D"] = "A dark satyr called Lord Vyletongue spread his evil through these twisting caves, poisoning the minds of all inside. He still resides beyond the purple crystals.$B$BVyletongue also created a living symbol of his corruption called Noxxion that dwells beyond the orange crystals. Together, they have stolen the two parts of my brother\'s scepter. Celebras, my brother... he wanders blindly inside, cursed by corruption.$B$BYou must help him! Find the pieces, and speak to my brother... somehow.", + ["O"] = "Recover the two parts of the Scepter of Celebras: the Celebrian Rod and the Celebrian Diamond.$B$BFind a way to speak with Celebras.", + ["T"] = "Legends of Maraudon", + }, + [7045] = { + ["D"] = "We at Smokywood Pastures appreciate the recovery of the stolen treats, $N. For that, we\'d like to offer you a special gift... presented by none other than Greatfather Winter himself!$B$BPlease, speak with Greatfather Winter, and he will give you your Feast of Winter Veil gift from us here at Smokywood Pastures. From our farm to your plate, it\'s always Smokywood Pastures wholesome goodness... thanks to you, of course!", + ["O"] = "Speak with Greatfather Winter in Ironforge.", + ["T"] = "A Smokywood Pastures\' Thank You!", + }, + [7046] = { + ["D"] = "My scepter was once a source of hope for me. Its power allowed me the freedom to travel quickly through these caverns. I had hoped to bring peace to the spirit of my uncle... It is a task that I now pass to you.$B$BFor the two parts to once again become one, I will need your assistance in performing the ritual. Please follow me, and listen to my instructions while I channel the energy required to reunite the rod with the diamond.$B$BTogether, we shall create the Scepter of Celebras once again!", + ["O"] = "Assist Celebras the Redeemed while he creates the Scepter of Celebras.$B$BSpeak with him when the ritual is complete.", + ["T"] = "The Scepter of Celebras", + }, + [7061] = { + ["D"] = "Here - if you are interested in learning more about the Feast of Winter Veil, read this book. While I think our recognition of the legend is the appropriate one, I\'m enough of a student of legends to appreciate the collection of all information into a single source.$B$BWhen you\'re done, take the book to Cairne Bloodhoof in Thunder Bluff. I know for a fact he\'d be interested in hearing that others have taken an interest in the lore of our people. ", + ["O"] = "Feel free to read the book, \"The Feast of Winter Veil\", to learn more about the holiday. When you are finished with the book, deliver it to Cairne Bloodhoof in Thunder Bluff.", + ["T"] = "The Feast of Winter Veil", + }, + [7062] = { + ["D"] = "Gifts, treats, presents... bah, I say!$B$BThose goblins pollute the true meaning of this season - the Feast of Winter Veil. This is a time of renewal; the land slumbers under a blanket of snow brought forth by Greatfather Winter, who is NOT the bumbling fool over there in the red suit!$B$BIf you\'re interested in learning what the Feast is all about for yourself, ask Historian Karnik at the Explorer\'s League. I\'m sure he\'ll be surprised that someone cares about history rather than getting presents.", + ["O"] = "Speak with Historian Karnik at the Explorer\'s League in Ironforge about the Feast of Winter Veil.", + ["T"] = "The Reason for the Season", + }, + [7063] = { + ["D"] = "Here - if you are interested in learning more about the Feast of Winter Veil, read this book. While I think our recognition of the legend is the appropriate one, I\'m enough of a scholar to appreciate the collection of all information into a single source.$B$BWhen you\'re done, take the book to King Magni Bronzebeard. I know for a fact he\'d be interested in hearing that others have taken an interest in the older legends. ", + ["O"] = "Feel free to read the book, \"The Feast of Winter Veil\", to learn more about the holiday. When you are finished with the book, deliver it to King Magni Bronzebeard in Ironforge.", + ["T"] = "The Feast of Winter Veil", + }, + [7064] = { + ["D"] = "Deep in Maraudon lives an evil creature of chaos--Princess Theradras is an elemental force of earth related to the Old Gods. Ages ago, she and Zaetar, first son of Cenarius, began a relationship. The offspring of their time together became known to the people of Kalimdor as centaur. Ever-thankful creatures, the centaur killed Zaetar, and now hold Zaetar\'s remains. My quest here is to find those powerful enough to slay Theradras so we may recover Zaetar\'s remains before returning to Stonetalon.", + ["O"] = "Slay Princess Theradras and return to Selendra near Shadowprey Village in Desolace.", + ["T"] = "Corruption of Earth and Seed", + }, + [7065] = { + ["D"] = "In the depths of Maraudon lives a creature of chaos and evil, $N. Princess Theradras is an elemental force of earth related somehow to the Old Gods. Ages ago, she was sought out by Zaetar, first son of Cenarius. The offspring of their... relationship are the creatures known as centaur. Ever-thankful creatures, the centaur killed Zaetar, and now Theradras keeps his remains. My quest here is to find those powerful enough to slay Theradras so we may recover Zaetar\'s remains before returning to Stonetalon.", + ["O"] = "Slay Princess Theradras and return to Keeper Marandis at Nijel\'s Point in Desolace.", + ["T"] = "Corruption of Earth and Seed", + }, + [7066] = { + ["D"] = "The misbegotten centaur--my sons and daughters--have need of their father.$B$BLook around you--this place rings of hope and all that my father Cenarius preaches. It sprung from me! And I cannot take that away from them... not even for their crimes against me.$B$BBut there is one thing I would ask of you to ease my brother\'s mind. Take this... it is the first seed that fell from the life my remains nourished. Tell him my spirit remains here, and that I live on. I am sure he will understand.", + ["O"] = "Seek out Remulos in Moonglade and give him the Seed of Life.", + ["T"] = "Seed of Life", + }, + [7067] = { + ["D"] = "Though exiled as a heretic, my beliefs still ring true--that alone drives me onward. But for my destiny to be complete, I need the aid of an outsider... one not of any centaur tribe.$B$BThe task requires someone to enter the holy halls of Maraudon--a tomb my people protect, and only the most devout are ever allowed to enter.$B$BIf you agree to aid me, then you need only nod. I will pass you a parchment with my instructions on it. Read it over and consider my words.", + ["O"] = "Read the Pariah\'s Instructions. Afterwards, obtain the Amulet of Union from Maraudon and return it to the Centaur Pariah in southern Desolace.", + ["T"] = "The Pariah\'s Instructions", + }, + [7068] = { + ["D"] = "Strong magics be found in the centaur holy place... the holy place of Maraudon. The Desolace tribes of centaur protect that place wit\' their lives, but they canna stop us from takin\' what we need.$B$BYou, you head to this Maraudon place and find the rock creatures made of shadowshard. You bring me the purple crystals, and Uthel\'nay make you somethin\' for your time.$B$BThe place be dangerous, so maybe you be bringing some friends.", + ["O"] = "Collect 10 Shadowshard Fragments from Maraudon and return them to Uthel\'nay in Orgrimmar.", + ["T"] = "Shadowshard Fragments", + }, + [7069] = { + ["D"] = "", + ["O"] = "", + ["T"] = "", + }, + [7070] = { + ["D"] = "I\'ve recently begun testing various crystals and their arcane properties. Lady Proudmoore has given me leave to ask travelers heading into Desolace to seek out a place called Maraudon. Within the ruined temple are great elementals composed of purplish stones I\'ve named shadowshards.$B$BIf you decide to head that direction and find some of the crystals, I would be very thankful. I could even fashion you a trinket from them if you so desired.", + ["O"] = "Collect 10 Shadowshard Fragments from Maraudon and return them to Archmage Tervosh in Theramore on the coast of Dustwallow Marsh.", + ["T"] = "Shadowshard Fragments", + }, + [7081] = { + ["D"] = "The graveyards in Alterac Valley are prized territories. Both the Horde and the Alliance fight savagely for these sacred grounds. Are you, $N, ready to join that fight?$B$BI want you to assault an enemy graveyard. Find a graveyard with a Horde banner in its midst, and pull it from the ground! Do that, and your task will be complete....$B$BBut if you can also hold the graveyard for a few minutes, then our troops will soon come to relieve you.", + ["O"] = "Assault a graveyard, then return to Sergeant Durgen Stormpike in the Alterac Mountains.", + ["T"] = "Alterac Valley Graveyards", + }, + [7082] = { + ["D"] = "The battle lines of Alterac Valley are ever shifting. Territories swing back and forth as we meet our opponents in deadly combat. And graveyards, $N, are where battles rage most fierce.$B$BI want you to attack an Alliance held graveyard! Find a graveyard with an Alliance banner in its midst and pull it from the ground.$B$BDo that and your task for me will be complete, but... if you hold the graveyard for a few minutes, then it will be ours and troops will come and relieve you.", + ["O"] = "Assault a graveyard, then return to Corporal Teeka Bloodsnarl in the Alterac Mountains.", + ["T"] = "The Graveyards of Alterac", + }, + [7101] = { + ["D"] = "Towers and bunkers are important positions, and we must capture and hold them all! So to that end, I want you to attack a bunker that is controlled by the enemy.$B$BTo do that, enter one with an Alliance banner. You will see another banner inside. Pull out that banner, and a white Horde banner will appear in its place. Well done!$B$BAt that point your task for me will be complete, but if you hold the place long enough, and if the Alliance doesn\'t take it back, then it will be destroyed!", + ["O"] = "Capture an enemy tower, then return to Corporal Teeka Bloodsnarl in the Alterac Mountains.", + ["T"] = "Towers and Bunkers", + }, + [7102] = { + ["D"] = "Towers and bunkers are key defensive positions, and so we must hold as many as possible! I want you to attack a tower or a bunker in Alterac Valley.$B$BTo do that, enter a tower with a Horde banner atop it. You will see another enemy banner inside. Pull out that banner, and a white Alliance banner will appear in its place. Well done!$B$BAt that point your mission for me will be complete, but hold the area long enough, and if the Horde doesn\'t take it back, then it will be destroyed!", + ["O"] = "Destroy the banner at an enemy tower or bunker, then return to Sergeant Durgen Stormpike in the Alterac Mountains.", + ["T"] = "Towers and Bunkers", + }, + [7121] = { + ["D"] = "$N, our quartermaster charged me to direct new recruits to him. He needs supplies from caches stored in the mines of Alterac, and he\'ll probably send you to get them.$B$BFollow the road. You\'ll find our quartermaster to the west.", + ["O"] = "Speak with the Stormpike Quartermaster.", + ["T"] = "The Quartermaster", + }, + [7122] = { + ["D"] = "The mines in Alterac Valley hold more than just minerals. Both the Frostwolf and Stormpike have cached excess supplies in the Irondeep and Coldtooth mines... that\'s not a bad idea, if we could only maintain control of them!$B$BCapture a mine, then return to me. To capture a mine, enter one that we do not control and kill its leader. When you do that, the mine will be ours, and we\'ll send troops to protect it!", + ["O"] = "Capture a mine that the Stormpike does not control, then return to Sergeant Durgen Stormpike in the Alterac Mountains.", + ["T"] = "Capture a Mine", + }, + [7123] = { + ["D"] = "$N, the Frostwolf Quartermaster is looking for recruits, for tasks that lead into the mines of Alterac Valley. Speak with him; he will tell you more.$B$BFollow the road west into the bunker, then take the west exit and you\'ll find our quartermaster.", + ["O"] = "Speak with the Frostwolf Quartermaster.", + ["T"] = "Speak with our Quartermaster", + }, + [7124] = { + ["D"] = "As battle rages over the landscape of Alterac Valley, so too does it rage through the Coldtooth and Irondeep mines. Both are rich sources of minerals and both are used to store supplies; it\'s no wonder they are so highly valued!$B$BHelp our war effort, $N! Capture one of the mines for the Horde! To capture a mine, enter one that we do not control and kill its leader. When that is done, the mine will be ours and we\'ll send troops to protect it!", + ["O"] = "Capture a mine, then return to Corporal Teeka Bloodsnarl in the Alterac Mountains.", + ["T"] = "Capture a Mine", + }, + [7141] = { + ["D"] = "The Explorers\' League believes there are artifacts in Alterac Valley, but the Frostwolf orcs won\'t let us explore. We can\'t allow the Horde to stop our scholarly pursuits! Defeat the Frostwolf general, Drek\'Thar. With him dead, the orcs will lose their edge.$B$BDrek\'Thar is in Frostwolf Keep, in the south of Alterac Valley. Vanquish him, and then return to me.", + ["O"] = "Enter Alterac Valley, defeat the Horde general Drek\'thar, and then return to Prospector Stonehewer in the Alterac Mountains.", + ["T"] = "The Battle of Alterac", + }, + [7142] = { + ["D"] = "The Stormpike dwarves and their allies have invaded Alterac Valley, and we must drive them out! To win the battle for Alterac, we must defeat their general, Vanndar Stormpike!$B$BYou will find Vanndar in Dun Baldar, in the north of Alterac Valley.$B$BDestroy him, $N, and then return to me.", + ["O"] = "Enter Alterac Valley and defeat the dwarven general, Vanndar Stormpike. Then, return to Voggah Deathgrip in the Alterac Mountains.", + ["T"] = "The Battle for Alterac", + }, + [7161] = { + ["D"] = "Hail, $c. It has been a long time since we have had the chance to answer the call of battle. The old feelings are slow to rise but once awakened, the blood does rush. The battle rage returns...$B$BAll newcomers to the Valley must first complete the rite of battle.$B$BDeep within the Wildpaw gnoll cave is a banner of the Frostwolf. Venture forth and recover the banner. Return it to me and I shall grant you the Frostwolf initiate\'s insignia.", + ["O"] = "Travel to the Wildpaw cavern located southeast of the main base in Alterac Valley and find the Frostwolf Banner. Return the Frostwolf Banner to Warmaster Laggrond. ", + ["T"] = "Proving Grounds", + }, + [7162] = { + ["D"] = "You\'ve arrived just in time, $c. These Frostwolf savages just won\'t give up! We must show them the might of the Stormpike. They must bow to our superiority.$B$BBefore you make your way to the field of battle, you will want to join the rank of Stormpike.$B$BSouthwest of Dun Baldar, you will find the Icewing Caverns. Planted deep within the caverns is a Stormpike Banner. Venture forth and recover that banner. Return it to me, and you will have earned a Stormpike initiate\'s insignia.", + ["O"] = "Travel to the Icewing Caverns located southwest of Dun Baldar in Alterac Valley and recover the Stormpike Banner. Return the Stormpike Banner to Lieutenant Haggerdin in the Alterac Mountains.", + ["T"] = "Proving Grounds", + }, + [7163] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Rise and Be Recognized", + }, + [7164] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Honored Amongst the Clan", + }, + [7165] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Earned Reverence", + }, + [7166] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Legendary Heroes", + }, + [7167] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Eye of Command", + }, + [7168] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Rise and Be Recognized", + }, + [7169] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Honored Amongst the Guard", + }, + [7170] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Earned Reverence", + }, + [7171] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Legendary Heroes", + }, + [7172] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Eye of Command", + }, + [7181] = { + ["D"] = "The invading Stormpike are not the only threat in the region, soldier. The war in the Valley is waged on two fronts. The cannibal Winterax trolls also vie for power.$B$BThey are lead by Korrak the Bloodrager - a cruel and cunning beast.$B$BA strike against Korrak could prove to be a crushing blow to the Winterax clan. Slay the beast and be rewarded!", + ["O"] = "According to legend, the leader of the mighty Winterax trolls appears at will to wreak havoc on the denizens of Alterac Valley.$B$BShould Korrak make himself known, destroy him and return to Warmaster Laggrond.", + ["T"] = "The Legend of Korrak", + }, + [7201] = { + ["D"] = "There is work to be had for those venturing into the depths, $N.$B$BThe Dark Irons have mastered creation of extremely powerful golems.$B$BInitial reports from our spies indicate that the dwarves use a unique power source to give their creations incomparable killing power.$B$BJust imagine what we could do with our abominations if we could get our hands on this essence of the elements! Turn that city upside down if you must, but do not return until you have found the essence! Payment will be worth the risk.", + ["O"] = "Travel to Blackrock Depths and recover 10 Essence of the Elements. Your first inclination is to search the golems and golem makers. You remember Vivian Lagrave also muttering something about elementals.", + ["T"] = "The Last Element", + }, + [7202] = { + ["D"] = "The indigenous Winterax trolls of the region are ruthless savages that would love nothing more than to have our bones added to their foul stew.$B$BWe must show them our might!$B$BWe have recovered tomes from their caves that detail their leadership hierarchy. The artifacts indicate that their leader, Korrak the Bloodrager, tends to remain hidden until given a reason to make his presence known.$B$BDeath to Korrak would mean death to Winterax Clan! Slay him and return.", + ["O"] = "According to legend, the leader of the mighty Winterax trolls appears at will to wreak havoc on the denizens of Alterac Valley.$B$BShould Korrak make himself known, destroy him and return to Lieutenant Haggerdin in the Alterac Mountains.", + ["T"] = "Korrak the Bloodrager", + }, + [7221] = { + ["D"] = "Ah, $N, reporting for duty are you? Great, the Stormpikes can use everyone we can muster!$B$BSpeak with Prospector Stonehewer in Dun Baldar. She\'s recruiting for a vital mission into enemy territory. You\'ll find Stonehewer in the bottom of the Dun Baldar garrison.$B$BAnd keep an eye out as you go through Dun Baldar. There\'s plenty to do for a hardworking $c who\'s not afraid to get $ghis:her; hands dirty.", + ["O"] = "Speak with Prospector Stonehewer in the Dun Baldar garrison.", + ["T"] = "Speak with Prospector Stonehewer", + }, + [7222] = { + ["D"] = "A $c? Good! We are glad to see you in Alterac, $N. Interloping dwarves and their allies invade our valley, and we welcome all in the Horde to join us in righteous slaughter!$B$BSpeak with Voggah Deathgrip. He is looking for agents for an important mission into the Alliance\'s stronghold in Alterac Valley!$B$BYou will find Voggah in Frostwolf Keep.", + ["O"] = "Speak with Voggah in Frostwolf Keep.", + ["T"] = "Speak with Voggah Deathgrip", + }, + [7223] = { + ["D"] = "Battles rage constantly in Alterac Valley, and the supplies we get from Ironforge are not enough to outfit our experienced troops.$B$BIf you find armor scraps from the battlefield, aid the war effort and bring those scraps to me!", + ["O"] = "Bring 20 Armor Scraps to Murgot Deepforge in Dun Baldar.", + ["T"] = "Armor Scraps", + }, + [7224] = { + ["D"] = "When you fight the enemy, gather the scraps of their armor and bring them to me. I\'ll use those scraps to make armor for our own troops!", + ["O"] = "Bring 20 Armor Scraps to Smith Regzar in Frostwolf Village.", + ["T"] = "Enemy Booty", + }, + [7241] = { + ["D"] = "The drums of war sound off in a distant land, $c. The favored clan of your Warchief is under attack from the nefarious Stormpike Guard of Ironforge.$B$BBy the looks of you, I can discern that you are indeed battle hardy and prepared to take on the cause of the Frostwolf.$B$BIt is you who must now take the next step in your evolution.$B$BNorth of Tarren Mill, in Alterac, you will find the entrance to Alterac Valley. It is there that you will find Warmaster Laggrond. Hurry $c, for the battle is upon us!", + ["O"] = "Venture to Alterac Valley, located in the Alterac Mountains. Find and speak with Warmaster Laggrond - who stands outside the tunnel entrance - to begin your career as a soldier of Frostwolf. You will find Alterac Valley north of Tarren Mill at the base of the Alterac Mountains.", + ["T"] = "In Defense of Frostwolf", + }, + [7261] = { + ["D"] = "We are fighting a brutal battle in the valleys of Alterac. The cannibalistic Winterax trolls attack us from one side and the savage Frostwolf Clan from the other. Both must be exterminated in the name of King Magni Bronzebeard! The taking, culling, and turning of that land is a sovereign and territorial imperative to the kingdom of Ironforge.$B$BAlas, soldiers do not grow on trees! Report to Lieutenant Haggerdin outside Alterac Valley to begin your tour of duty and honor amongst the Stormpike.", + ["O"] = "Travel to Alterac Valley in the Hillsbrad Foothills. Outside of the entrance tunnel, find and speak with Lieutenant Haggerdin.$B$BFor the glory of Bronzebeard!", + ["T"] = "The Sovereign Imperative", + }, + [7281] = { + ["D"] = "Tragic... My brother faces me on the field of battle: A commander for the Stormpike.$B$BOf the four Stormpike Commanders, he is undoubtedly the most dangerous. Perhaps if he is slain, the Banshee Queen could turn him as she did me - show him the error of his ways...$B$BDeep within enemy territory you will find my brother. Slay him and return to me. I trust that you are capable of completing this mission, soldier.$B$BAnd soldier, do not go alone.", + ["O"] = "Travel into Stormpike territory and slay Commander Karl Philips. Return to Commander Louis Philips when the task is complete.", + ["T"] = "Brotherly Love", + }, + [7282] = { + ["D"] = "He must be put out of his misery, soldier! He knows not what he does. He has become a mindless servant of the dreaded Banshee Queen.$B$BVenture forth, across the Field of Strife, to the depths of Frostwolf territory. Find my brother and destroy him. His torment must come to an end.", + ["O"] = "Travel into Frostwolf territory and slay Commander Louis Philips. Return to Commander Karl Philips when the task is complete.", + ["T"] = "Brotherly Love", + }, + [7301] = { + ["D"] = "We got them held prisoner, $r. I\'m talking about their Wing Commanders. It was a furious battle in the skies but they finally fell! Unfortunately, our best pilots were shot down in a counterattack against Frostwolf Keep. You gotta find out what happened to them.$B$BSearch Tower Point West and Frostwolf Keep. These were their last known locations. Search these areas thoroughly.", + ["O"] = "Travel to Frostwolf territory and search for Wing Commander Slidore, Wing Commander Vipore, and Wing Commander Ichman. Return to Commander Duffy should you complete your mission.", + ["T"] = "Fallen Sky Lords", + }, + [7302] = { + ["D"] = "Our air support is in shambles, $N. The Wing Commanders were shot down over enemy territory. You must find out what became of them so that we can attempt a rescue!$B$BGuse was last seen flying over the Icewing Bunker. Jeztor\'s War Rider was spotted near the Stormpike lumber mill. Mulverick... that reckless fool was seen crashing near the Dun\'Baldar North Bunker.$B$BThat\'s all the information I have. Move out! Search through the areas thoroughly.", + ["O"] = "Find out what became of Wing Commander Guse, Wing Commander Jeztor, and Wing Commander Mulverick. Return to Commander Mulfort should you complete your mission.", + ["T"] = "Fallen Sky Lords", + }, + [7321] = { + ["D"] = "Who says that the undead don\'t know anything about cooking? Take my secret recipe for Turtle Bisque, for example. I\'ve known folks that would come back from the dead just to enjoy a bowl! Heh, heh...$B$BSpeaking of which, I haven\'t been able to make any lately. I used to head over to Lake Lordamere myself to hunt snapjaws, the nasty things, but I can\'t pull myself away from my work here.$B$BIf you bring me some Turtle Meat from the snapjaws and soothing spices, I\'ll show you how it\'s done!", + ["O"] = "Bring 10 pieces of Turtle Meat and some Soothing Spices to Christoph Jeffcoat in Tarren Mill.", + ["T"] = "Soothing Turtle Bisque", + }, + [7341] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Fair Trade", + }, + [7342] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Arrows Are For Sissies", + }, + [7361] = { + ["D"] = "$B$BBefore the night elves existed there was troll. It was from troll that the night elves came.$B$BTheir mutinous attacks against my people will not be tolerated. Staghelm seeks to wipe us out - to leave no trace of those that bore him and his ilk. It will not happen!$B$BFor every night elf that you slay and decapitate, Najak will grant you favor amongst the Darkspear. Word of your deeds will be spread across Kalimdor and the Eastern Kingdoms. Go now and serve the Darkspear!", + ["O"] = "You have been tasked with slaying opposing night elf players in Alterac Valley.$B$BKill a night elf and return to Najak Hexxen at Frostwolf Keep with a Severed Night Elf Head.", + ["T"] = "Favor Amongst the Darkspear", + }, + [7362] = { + ["D"] = "The Elder Crone has sent me to this warzone to research the other races. More specifically, I am to collect gnome samples. Magatha is primarily interested in their survivability. Aye, the gnomes - while pitifully weak and miniscule - exude great resilience both in and out of combat.$B$BFortunately for you, I am looking for ruffians to do Magatha\'s bidding. Return to me with tufts of gnome hair and you shall be known to the tauren as an ally.", + ["O"] = "You have been tasked with slaying opposing gnome players in Alterac Valley.$B$BKill a gnome and return to Ravak Grimtotem at Frostwolf Keep with a Tuft of Gnome Hair.", + ["T"] = "Ally of the Tauren", + }, + [7363] = { + ["D"] = "Humans are so utterly detestable.$B$B$B$BWhile it is true that I am a soldier of Frostwolf, I remain a servant of Sylvanas.$B$BDuring my tour of duty, I do extra work on the side for the Dark Apothecaries of the Undercity.$B$BI have been tasked with collecting human bone chips that are to be used in curing the human condition.$B$BI am authorized to pass that task on to my subordinates.$B$BFind them. Kill them. Return their bone chips to me.", + ["O"] = "You have been tasked with slaying opposing human players in Alterac Valley.$B$BKill a human and return to Commander Louis Philips (who wanders between the front lines and Frostwolf keep) with a Human Bone Chip.$B$BA cure for the human condition is close at hand!", + ["T"] = "The Human Condition", + }, + [7364] = { + ["D"] = "The High Tinkerer himself has sent me to this field of battle to defend my gnomish brothers and sisters. We have received word that the tauren are singling out and slaying gnomes. Worst of all, they are removing tufts of glorious gnome hair from the corpses of the fallen. These atrocities must be stopped. We must reciprocate!$B$BI want them de-hoofed, $c. Bring me their hooves! Show yourself as an ally of the gnomes.", + ["O"] = "You have been tasked with slaying opposing tauren players in Alterac Valley.$B$BKill a tauren and return to Dirk Swindle at Dun\'Baldar with a Tauren Hoof.", + ["T"] = "Gnomeregan Bounty", + }, + [7365] = { + ["D"] = "Staghelm has given the order. All trolls on the field of battle must be exterminated. Their preposterous claims of birthing night elves must be met with force and due prejudice.$B$BSlay them and return to me with their mojo. To reiterate: I want you to steal their mojo.", + ["O"] = "You have been tasked with slaying opposing troll players in Alterac Valley.$B$BKill a troll and return to Athramanis at Dun\'Baldar with Darkspear Troll Mojo.", + ["T"] = "Staghelm\'s Requiem", + }, + [7366] = { + ["D"] = "The Archbishop is as kind as he is wise. For a man to look mercifully on such a wretched lot...$B$B$B$BToo kind... Just too kind.$B$BThe Archbishop asks that we take pity on the undead and grant them swift and permanent deaths. For this grand display of mercy, we merely require their black, disease ridden hearts.$B$BBring me the hearts of the Forsaken so that they may be ceremoniously incinerated at the Cathedral of Light. Make haste, $N!", + ["O"] = "You have been tasked with slaying opposing Forsaken players in Alterac Valley.$B$BKill a Forsaken and return to Commander Karl Philips (who wanders between the lumber mill and the mine) with a Forsaken Heart.", + ["T"] = "The Archbishop\'s Mercy", + }, + [7367] = { + ["D"] = "The Frostwolf have their front lines and bases booby trapped, $c. You have to watch your step when invading enemy territory.$B$BIf you want to make a solid strike against them, you must destroy their source of anti personnel munitions - I\'m talking about their explosives expert. If you kill him, you are safe to disarm the mines. As long as he is kept down, the mines will also stay down.$B$BYou will probably find him in a tower near the Iceblood Garrison. Good luck!", + ["O"] = "Find the Frostwolf Explosives Expert and kill him. Return to the Stormpike Explosives Expert when the task is complete.", + ["T"] = "Defusing the Threat", + }, + [7368] = { + ["D"] = "I know all about landmines. I\'m the one that lays all the mines on the front lines here, after all.$B$BIf you want to defuse the Stormpike mine fields, all you have to do is kill their explosives expert. That dwarven coward is no doubt hiding in the first tower on the Field of Strife. Take him out and those landmines won\'t come back after they\'ve been disarmed.$B$BIf you do happen to kill him, come back here and let me know. No good deed should go unrewarded.", + ["O"] = "Find the Stormpike Explosives Expert and kill him. Return to the Frostwolf Explosives Expert when the task is complete.", + ["T"] = "Defusing the Threat", + }, + [7381] = { + ["D"] = "While it is true that Korrak has been slain, one question remains: Will he remain dead? Trolls are notorious for their other-worldly tribal magics. I would not be surprised if the fallen leader was raised from the dead to once more rule over his clan.$B$BYou know what to do should this ever occur.$B$B$B$BAnd this time, I want his skull. Just keep your eyes peeled, soldier.$B$BDismissed!", + ["O"] = "Should Korrak the Bloodrager make a return to the Field of Strife, seek him out and destroy him.$B$BReturn the Skull of Korrak to Warmaster Laggrond in the Hillsbrad Foothills.", + ["T"] = "The Return of Korrak", + }, + [7382] = { + ["D"] = "There\'s something not quite right about all of this... Did anybody think to burn Korrak\'s corpse? Those trolls will stop at nothing to revive their fallen leader - as blue skinned pagan man-beasts often do.$B$BJust keep your eyes out, $N. Don\'t be alarmed if Korrak makes a surprise appearance; and if he does, I want him executed - his corpse burned to ashes.$B$BFor good measure, lop off his head and bring me his skull before you ignite the lifeless mass.", + ["O"] = "Should Korrak the Bloodrager make a return to the Field of Strife, seek him out and destroy him.$B$BReturn the Skull of Korrak to Lieutenant Haggerdin in the Hillsbrad Foothills.", + ["T"] = "Korrak the Everliving", + }, + [7383] = { + ["D"] = "All was not well with Teldrassil, however. Staghelm\'s carefully made plans for the new World Tree had borne out as he had hoped, but there was one small problem, a problem to which many of the troubles on Teldrassil may be attributed.$b$bHowever, I will not get into that yet. You must visit the last moonwell, to the northwest in the Oracle Glade. Under the boughs of the Oracle Tree lies the first and most powerful of our wells. Retrieve a phial of its water and return to me.", + ["O"] = "Fill the Amethyst Phial and bring it back to Corithras Moonrage in Dolanaar.", + ["T"] = "Crown of the Earth", + }, + [7385] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Gallon of Blood", + }, + [7386] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Crystal Cluster", + }, + [7401] = { + ["D"] = "By order of Sergeant Yazra Bloodsnarl, all dwarves on the field of battle are to be killed on sight.$B$BShould you slay a dwarf in combat, rip out their spine, leaving a spineless heap of stink and rot to serve as a warning to any and all that dare oppose the might of the Frostwolf.$B$BReturn to Sergeant Yazra Bloodsnarl with proof of your heroics.", + ["O"] = "You have been tasked with slaying opposing Dwarf players in Alterac Valley.$B$BKill a Dwarf and rip out their spine. Take the Dwarf Spine to Sergeant Yazra Bloodsnarl at Frostwolf Keep.", + ["T"] = "Wanted: DWARVES!", + }, + [7402] = { + ["D"] = "By order of Corporal Noreg Stormpike, all able bodied soldiers of Stormpike are required to slay any opposing orcs that they meet upon the field of battle.$B$BSoldiers are required to remove a tusk or tooth from the maw of the enemy and present said tooth as proof of their accomplishment.$B$BWear protective gloves.", + ["O"] = "You have been tasked with slaying opposing Orc players in Alterac Valley.$B$BKill an Orc and take their Orc Tooth back to Corporal Noreg Stormpike at Dun Baldar.", + ["T"] = "Wanted: ORCS!", + }, + [7421] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Darkspear Defense", + }, + [7422] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Tuft it Out", + }, + [7423] = { + ["D"] = "", + ["O"] = "", + ["T"] = "I\'ve Got A Fever For More Bone Chips", + }, + [7424] = { + ["D"] = "", + ["O"] = "", + ["T"] = "What the Hoof?", + }, + [7425] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Staghelm\'s Mojo Jamboree", + }, + [7426] = { + ["D"] = "", + ["O"] = "", + ["T"] = "One Man\'s Love", + }, + [7427] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Wanted: MORE DWARVES!", + }, + [7428] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Wanted: MORE ORCS!", + }, + [7429] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Free Knot!", + }, + [7441] = { + ["D"] = "I had let my guard down for only one moment, stranger. In my haste to escape the grip of the fallen Prince, I was robbed. A most foul demon, the imp Pusillin, pilfered my book of incantations and the key to the once great halls of Eldre\'Thalas.$B$BI no longer hold interest in the key, as I have exchanged my immortality for freedom, but I desperately need my book of incantations.$B$BFind the imp, Pusillin, and recover my book.$B$BSearch the Warpwood Quarter of Dire Maul for Pusillin.", + ["O"] = "Travel to Dire Maul and locate the Imp, Pusillin. Convince Pusillin to give you Azj\'Tordin\'s Book of Incantations through any means necessary.$B$BReturn to Azj\'Tordin at the Lariss Pavilion in Feralas should you recover the Book of Incantations.", + ["T"] = "Pusillin and the Elder Azj\'Tordin", + }, + [7461] = { + ["D"] = "Have you heard enough? Are you a $g man:woman; of action?$B$BThis madness must come to an end. The age of the immortals has long since passed. Destroy the guardians surrounding the pylons to lower the force field. When this is done, destroy Immol\'thar. With the Prince\'s power greatly reduced, attack and end him. Lay the spirits of this city to rest, adventurer.", + ["O"] = "You must destroy the guardians surrounding the 5 Pylons that power the Prison of Immol\'thar. Once the Pylons have powered down, the force field surrounding Immol\'thar will have dissipated.$B$BEnter the Prison of Immol\'thar and eradicate the foul demon that stands at its heart. Finally, confront Prince Tortheldrin in Athenaeum.$B$BReturn to the Shen\'dralar Ancient in the courtyard should you complete this quest.", + ["T"] = "The Madness Within", + }, + [7462] = { + ["D"] = "In the library, Athenaeum, you will find an ancient chest hidden beneath the stairway. Take from it that which you desire.", + ["O"] = "Return to the Athenaeum and find the Treasure of the Shen\'dralar. Claim your reward!", + ["T"] = "The Treasure of the Shen\'dralar", + }, + [7463] = { + ["D"] = "A $r mage! How wonderous. I have not seen one of your kind for... oh what is it going on now? 500 years!$B$BI have something that will quench your thirst, but first you must do a task for me.$B$B$B$BThere is an anomaly in Eldre\'Thalas. A water elemental has taken residence in the east wing. His presence must be catalogued!$B$BVenture to the Warpwood Quarter and extract a portion of the elemental essence of the Hydrospawn. Return it to me and I shall teach you a useful cantrip.", + ["O"] = "Travel to the Warpwood Quarter of Dire Maul and slay the water elemental, Hydrospawn. Return to Lorekeeper Lydros in the Athenaeum with the Hydrospawn Essence.", + ["T"] = "Arcane Refreshment", + }, + [7478] = { + ["D"] = "Master Winthalus lost the Libram of Rapidity in the east wing. The Libram will allow for a minor haste cantrip to be placed upon your equipment. Parlor tricks, really...$B$BRegardless, if you are interested, you will need to present the Libram along with some basic reagents.$B$BHrm... I believe it also requires blood of heroes, a pristine black diamond, and large brilliant shards. I could be wrong!$B$B", + ["O"] = "Bring a Libram of Rapidity, 1 Pristine Black Diamond, 2 Large Brilliant Shards, and 2 Blood of Heroes to Lorekeeper Lydros in Dire Maul to receive an Arcanum of Rapidity.", + ["T"] = "Libram of Rapidity", + }, + [7479] = { + ["D"] = "This libram almost aroused interest in one of the younger Lorekeeper\'s familiars. Poor thing, it was only a few weeks old.$B$BThose among you who are more magically inclined might find this item interesting.$B$BThe Libram of Focus was lost in this wing. I can only assume one of the Highborne spirits holds it in their possession.$B$BBring the Libram along with some large brilliant shards, skin of shadow, and a pristine black diamond and I shall conjure the Arcanum.", + ["O"] = "Bring a Libram of Focus, 1 Pristine Black Diamond, 4 Large Brilliant Shards, and 2 Skin of Shadow to Lorekeeper Lydros in Dire Maul to receive an Arcanum of Focus.", + ["T"] = "Libram of Focus", + }, + [7480] = { + ["D"] = "He wept like an infant at the loss of this libram. Mind you, I myself have wept over texts - there is no greater loss than that of knowledge and history - but to cry over this nearly useless jumbling of incantations? Preposterous! It left me to believe that the Prince was doing him a favor in flaying the flesh from his bones.$B$BBring the Libram along with a pristine black diamond, large brilliant shards, and a frayed abomination stitching and I shall recreate the Arcanum.$B$BOh, and check the north wing.", + ["O"] = "Bring a Libram of Protection, 1 Pristine Black Diamond, 2 Large Brilliant Shards, and 1 Frayed Abomination Stitching to Lorekeeper Lydros in Dire Maul to receive an Arcanum of Protection.", + ["T"] = "Libram of Protection", + }, + [7481] = { + ["D"] = "Several years ago, a lone elven master named Kariel Winthalus fled the devastation of his homeland with several ancient elven artifacts in tow.$B$BOur search for this lost master lead us from the ruins of Quel\'Thalas, through the Burning Steppes, across the great expanses of the sea, to Feralas.$B$BWe suspect that the elf sought sanctuary in the halls of Eldre\'Thalas (what is now known as Dire Maul).$B$BYou must find him, adventurer. Whether alive or dead, the knowledge he carried must be recovered!", + ["O"] = "Search Dire Maul for Kariel Winthalus. Report back to Sage Korolusk at Camp Mojache with whatever information that you may find.", + ["T"] = "Elven Legends", + }, + [7482] = { + ["D"] = "Several years ago, a lone elven master named Kariel Winthalus fled the devastation of his homeland with several ancient elven artifacts in tow.$B$BOur search for this lost master lead us from the ruins of Quel\'Thalas, through the Burning Steppes, across the great expanses of the sea, to Feralas.$B$BWe suspect that the elf sought sanctuary in the halls of Eldre\'Thalas (what is now known as Dire Maul).$B$BYou must find him, adventurer. Whether alive or dead, the knowledge he carried must be recovered!", + ["O"] = "Search Dire Maul for Kariel Winthalus. Report back to Scholar Runethorn at Feathermoon with whatever information that you may find.", + ["T"] = "Elven Legends", + }, + [7483] = { + ["D"] = "Master Winthalus lost the Libram of Rapidity in the east wing. The Libram will allow for a minor haste cantrip to be placed upon your equipment. Parlor tricks, really...$B$BRegardless, if you are interested, you will need to present the Libram along with some basic reagents.$B$BHrm... I believe it also requires blood of heroes, a pristine black diamond, and large brilliant shards. I could be wrong!$B$B", + ["O"] = "Bring a Libram of Rapidity, 1 Pristine Black Diamond, 2 Large Brilliant Shards, and 2 Blood of Heroes to Lorekeeper Lydros in Dire Maul to receive an Arcanum of Rapidity.", + ["T"] = "Libram of Rapidity", + }, + [7484] = { + ["D"] = "This libram almost aroused interest in one of the younger Lorekeeper\'s familiars. Poor thing, it was only a few weeks old.$B$BThose among you who are more magically inclined might find this item interesting.$B$BThe Libram of Focus was lost in this wing. I can only assume one of the Highborne spirits holds it in their possession.$B$BBring the Libram along with some large brilliant shards, skin of shadow, and a pristine black diamond and I shall conjure the Arcanum.", + ["O"] = "Bring a Libram of Focus, 1 Pristine Black Diamond, 4 Large Brilliant Shards, and 2 Skin of Shadow to Lorekeeper Lydros in Dire Maul to receive an Arcanum of Focus.", + ["T"] = "Libram of Focus", + }, + [7485] = { + ["D"] = "He wept like an infant at the loss of this libram. Mind you, I myself have wept over texts - there is no greater loss than that of knowledge and history - but to cry over this nearly useless jumbling of incantations? Preposterous! It left me to believe that the Prince was doing him a favor in flaying the flesh from his bones.$B$BBring the Libram along with a pristine black diamond, large brilliant shards, and a frayed abomination stitching and I shall recreate the Arcanum.$B$BOh, and check the north wing.", + ["O"] = "Bring a Libram of Protection, 1 Pristine Black Diamond, 2 Large Brilliant Shards, and 1 Frayed Abomination Stitching to Lorekeeper Lydros in Dire Maul to receive an Arcanum of Protection.", + ["T"] = "Libram of Protection", + }, + [7486] = { + ["D"] = "$N, your services to the Warlords surpassed all we could expect from the denizens of this world.$B$BWe do not understand your people\'s notions of gratitude, or rewarding good works, but in this case... perhaps a reward is warranted.$B$BUnder the surf at the southern base of this island, you will find a coffer. In it you will find your... reward.$B$BGo, $N. Claim your reward.", + ["O"] = "Claim your reward from Hydraxis\' Coffer.", + ["T"] = "A Hero\'s Reward", + }, + [7487] = { + ["D"] = "Rifts stir, tear, and collapse all around us, $r. Not two paces from where I stand is a tear leading through the depths of Blackrock Mountain, into the maw of the Firelord.$B$BSurprised? Pity... The mortal races cannot comprehend that which they cannot see, touch, or feel.$B$BI assure you, the portal is there and access is possible.$B$BI\'ve piqued your interest? Attunement is simple. Venture into the Molten Core and retrieve a core fragment. Return it to me and I shall attune your essence with the portal.", + ["O"] = "Venture to the Molten Core and recover a Core Fragment. Return to Lothos Riftwaker when you have recovered the Core Fragment.", + ["T"] = "Attunement to the Core", + }, + [7488] = { + ["D"] = "The mage Lethtendris, a vicious blood elf whose brutality is matched only by her twisted addiction to magic, has fled into Dire Maul. She has created a device, a web to ensnare the magical energies of that place and we fear that, if left unchecked, she will cause irreparable damage to our world!$B$BStop her, $N. Find her and retrieve her web. She is likely near the satyrs in Warpwood Quarter of Dire Maul. Bring the web to me so that its power may be released safely back into the wilds...", + ["O"] = "Bring Lethtendris\' Web to Latronicus Moonspear at the Feathermoon Stronghold in Feralas.", + ["T"] = "Lethtendris\'s Web", + }, + [7489] = { + ["D"] = "The blood elf Lethtendris has overstepped her bounds. So eager was she to gather magical power that she defied her brethren and created a device of insidious design, a web meant to siphon the tainted magical energies of Dire Maul. Even now she gathers those energies and plans to release them against her enemies.$B$BLethtendris must be stopped. Find her within the Warpwood Quarter of Dire Maul, defeat her and bring her web to me so that it might be returned to more clear-headed blood elves for study.", + ["O"] = "Bring Lethtendris\'s Web to Talo Thornhoof at Camp Mojache in Feralas.", + ["T"] = "Lethtendris\'s Web", + }, + [7490] = { + ["D"] = "You have accomplished the impossible. The brood mother of the Black Dragonflight lies dead at your feet. Take her head and present it to your Warchief.", + ["O"] = "Take the Head of Onyxia to Thrall in Orgrimmar.", + ["T"] = "Victory for the Horde", + }, + [7491] = { + ["D"] = "Overlord Runthak awaits your arrival in the Valley of Strength.$B$B$B$BDo not keep your public waiting, hero.", + ["O"] = "Seek out Overlord Runthak in the Valley of Strength.", + ["T"] = "For All To See", + }, + [7492] = { + ["D"] = "Talo Thornhoof, a Tauren elder in Feralas, sends a request for aid. He offered few details, but he did say that he needs agents for a matter both delicate... and dire.$B$BServe the Horde, $N. Go to Camp Mojache in Feralas and speak with Talo.", + ["O"] = "Speak with Talo Thornhoof at Camp Mojache in Feralas.", + ["T"] = "Camp Mojache", + }, + [7493] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Journey Has Just Begun", + }, + [7494] = { + ["D"] = "$N! Your aid is needed in Feralas!$B$BAn outlaw mage, Lethtendris, has fled to the ancient elven ruins Eldre\'thalas, now called Dire Maul. It is believed she has an item of dangerous magical energy which must be recovered.$B$BLatronicus Moonspear requests agents to enter Dire Maul and retrieve the item from Lethtendris.$B$BServe the Alliance! Seek out Latronicus at the Feathermoon Stronghold in Feralas.", + ["O"] = "Speak with Latronicus Moonspear at the Feathermoon Stronghold in Feralas.", + ["T"] = "Feathermoon Stronghold", + }, + [7495] = { + ["D"] = "You have accomplished the impossible. The brood mother of the Black Dragonflight lies dead at your feet. Take her head and present it to the Highlord.", + ["O"] = "Take the Head of Onyxia to Highlord Bolvar Fordragon in Stormwind.", + ["T"] = "Victory for the Alliance", + }, + [7496] = { + ["D"] = "Seek out Major Mattingly in the Valley of Heroes, $N. He will be expecting you...", + ["O"] = "Seek out Major Mattingly in the Valley of Heroes.", + ["T"] = "Celebrating Good Times", + }, + [7497] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Journey Has Just Begun", + }, + [7498] = { + ["D"] = "The tome carries the mark of the Athenaeum.", + ["O"] = "Return the book to its rightful owners.", + ["T"] = "Garona: A Study on Stealth and Treachery", + }, + [7499] = { + ["D"] = "The tome carries the mark of the Athenaeum.", + ["O"] = "Return the book to its rightful owners.", + ["T"] = "Codex of Defense", + }, + [7500] = { + ["D"] = "The tome carries the mark of the Athenaeum.", + ["O"] = "Return the book to its rightful owners.", + ["T"] = "The Arcanist\'s Cookbook", + }, + [7501] = { + ["D"] = "The tome carries the mark of the Athenaeum.", + ["O"] = "Return the book to its rightful owners.", + ["T"] = "The Light and How To Swing It", + }, + [7502] = { + ["D"] = "The tome carries the mark of the Athenaeum.", + ["O"] = "Return the book to its rightful owners.", + ["T"] = "Harnessing Shadows", + }, + [7503] = { + ["D"] = "The tome carries the mark of the Athenaeum.", + ["O"] = "Return the book to its rightful owners.", + ["T"] = "The Greatest Race of Hunters", + }, + [7504] = { + ["D"] = "The tome carries the mark of the Athenaeum.", + ["O"] = "Return the book to its rightful owners.", + ["T"] = "Holy Bologna: What the Light Won\'t Tell You", + }, + [7505] = { + ["D"] = "The tome carries the mark of the Athenaeum.", + ["O"] = "Return the book to its rightful owners.", + ["T"] = "Frost Shock and You", + }, + [7506] = { + ["D"] = "The tome carries the mark of the Athenaeum.", + ["O"] = "Return the book to its rightful owners.", + ["T"] = "The Emerald Dream...", + }, + [7507] = { + ["D"] = "You have uncovered something of great importance. This book is unlike any that you have seen.$B$BIt would appear as if someone or something has managed to shatter the seal of Athenaeum. The text within is garbled and barely legible.", + ["O"] = "Return Foror\'s Compendium of Dragon Slaying to the Athenaeum.", + ["T"] = "Foror\'s Compendium", + }, + [7508] = { + ["D"] = "If you wish to take on this task, present Lydros with the dull blade.", + ["O"] = "Give the Dull and Flat Elven Blade to Lorekeeper Lydros.", + ["T"] = "The Forging of Quel\'Serrar", + }, + [7509] = { + ["D"] = "Take the unfired ancient blade to the lair of Onyxia and engage her in battle.$B$BSome trickery must be utilized for the heating of the blade. While in combat, she will surely try to incinerate you with her fiery breath. You must plant the unfired ancient blade nearby and hope that the fiery breath heats the blade. If you live beyond this, pick up the now heated ancient blade and finish off the dragon.$B$BPlunge the heated ancient blade into her smoldering corpse to fashion the treated ancient blade.", + ["O"] = "You must get Onyxia to breathe fire on the Unfired Ancient Blade. Once this is done, pick up the now Heated Ancient Blade. Be warned, a Heated Ancient Blade will not remain heated forever - time is of the essence.$B$BThe last step before returning to me is to slay the beast and drive the Heated Ancient Blade into her corpse.$B$BDo this and Quel\'Serrar will be yours.", + ["T"] = "The Forging of Quel\'Serrar", + }, + [7521] = { + ["D"] = "I have told you all that I know, $N. It is you who must find elementium. It is you who must destroy the Firelord\'s corporeal form.$B$BDo this and gain the blessing of Thunderaan.", + ["O"] = "To free Thunderaan the Windseeker from his prison, you must present the right and left halves of the Bindings of the Wind Seeker, 10 bars of Elementium, and the Essence of the Firelord to Highlord Demitrian. ", + ["T"] = "Thunderaan the Windseeker", + }, + [7541] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Service to the Horde", + }, + [7562] = { + ["D"] = "$N, your delvings into the dark arts are deep. Your mastery over otherworldly denizens has grown so strong... perhaps you are ready to bind to you one of the infamous dreadsteeds.$B$BThe ritual to summon the beast from its home requires great power and resources, but if you desire to dominate that epic mount, then speak with Mor\'zul Bloodbringer. He is camped near the Altar of Storms in the Burning Steppes.$B$BGo, $N. This quest will be perilous, but a Warlock of your stature does not shy from danger!", + ["O"] = "Speak with Mor\'zul Bloodbringer in the Burning Steppes.", + ["T"] = "Mor\'zul Bloodbringer", + }, + [7563] = { + ["D"] = "The dreadsteeds dwell on another world, on the fiery Plains of Xoroth, and to bind one of those famed beasts you must invoke powerful glyphs. I can scribe the glyphs on a parchment for you, but first I will need a special ink.$B$BIn distant Winterspring there dwells a race of owl beasts. Once pure creatures, they were turned mad by the demonic emanations of the Darkwhisper Gorge and now roam the snows in a frenzy.$B$BTheir blood is what I need to ink your parchment. Bring it to me.", + ["O"] = "Bring 30 bottles of Raging Beast\'s Blood to Mor\'zul Bloodbringer in the Burning Steppes.", + ["T"] = "Rage of Blood", + }, + [7564] = { + ["D"] = "My servant, Gorzeeki, is an alchemist of some skill. He can prepare the ink I will need for your parchment. I gathered together the blood you acquired; take it to Gorzeeki so that he can begin his work.", + ["O"] = "Bring the Case of Blood to Gorzeeki Wildeyes in the Burning Steppes.", + ["T"] = "Wildeyes", + }, + [7581] = { + ["D"] = "You must retrieve bindings for the prison of the Doomguard from lesser demons.$B$BThe blood of the Wildspawn satyr that occupy Dire Maul should do nicely. The coagulated blood will bond the Hederine shards and power the crystal prison.", + ["O"] = "Travel to Dire Maul in Feralas and recover 15 Satyr Blood from the Wildspawn Satyr that inhabit the Warpwood Quarter. Return to Daio in the Tainted Scar when this is done.", + ["T"] = "The Prison\'s Bindings", + }, + [7582] = { + ["D"] = "The Hederine demons that occupy the foothills of Mount Hyjal secrete powerful fel poisons, which if left to mature, harden into a dense anti-magic crystal. These crystals have come to be known as Tears of the Hederine.$B$BNot even the immense power of a Doomguard could break the walls of a prison constructed from this material.$B$BTravel to Darkwhisper Gorge in Winterspring and recover the Tears.", + ["O"] = "Travel to Darkwhisper Gorge in Winterspring and recover 5 Tears of the Hederine from the Hederine demons that occupy the gorge. Return to Daio in the Tainted Scar when you have completed this task.", + ["T"] = "The Prison\'s Casing", + }, + [7583] = { + ["D"] = "The prison is ready. Now for the most difficult portion of this task.$B$BYou must find and capture a Doomguard Commander within the Tainted Scar using this crystal prison.$B$BBe warned! A Doomguard is a cunning and lethal adversary and will seek to destroy you as you begin the ritual of imprisonment. It will flail wildly in its attempts to escape imprisonment.$B$BIt will focus on nothing but you, $N. Because of this, I must recommend that you take companions capable of keeping you alive!", + ["O"] = "Venture forth into the Tainted Scar and locate a Doomguard Commander.$B$BUse the Glowing Crystal Prison on the Doomguard Commander. Be prepared for a ferocious onslaught of attacks, as the demon attempts to escape capture.$B$BShould you succeed, return the Imprisoned Doomguard to Daio in the Tainted Scar.", + ["T"] = "Suppression", + }, + [7601] = { + ["D"] = "If I am to teach you the secrets of summoning an infernal servant, you must destroy Kroshius and bring me the infernal core from his burning remains. This, however, is not as easy as it sounds. Kroshius has all but burned out completely. You must reignite his corpse and raise him from the rubble. To do this, however, you must gather some components from other demonic entities.$B$BMy imp, Impsy, shall set you on your way.", + ["O"] = "Speak with Impsy in Felwood.", + ["T"] = "What Niby Commands", + }, + [7602] = { + ["D"] = "If you\'re going to reanimate Kroshius, you\'re going to need Fel fire. I can make Fel fire but it\'s going to require some components.$B$BYou need to bring me flawless Fel essences from three distinct regions of the world.$B$BThe Legashi Satyrs of Azshara will have the first essence type; the Jaedenar legionnaires of Jaedenar the second type and the felguard sentries of the Blasted Lands the third.$B$BBring me back one of each essence type and I will create the Fel fire, allowing you to reanimate Kroshius.", + ["O"] = "Impsy in Felwood has asked that you bring him three Flawless Fel Essences originating from three distinct locations.$B$BThe Legashi Satyrs of Azshara hold the Flawless Fel Essence of their region. The Jaedenar Legionnaires of Jaedenar hold the Flawless Fel Essence of their region. The Felguard Sentries of the Blasted Lands hold the Flawless Fel Essence of their region.$B$BRecover the Flawless Fel Essences and return to Impsy in Felwood.", + ["T"] = "Flawless Fel Essence", + }, + [7603] = { + ["D"] = "Kroshius lays in a heap to the northeast, in the Shatter Scar Vale. Take this Fel fire and use it on his remains. The fire should reanimate the fallen infernal.$B$BAt this point, I fully expect him to kill you and any friends that you may have brought along - and trust me, you will want to bring along some friends.$B$BIf by some miracle you happen to kill Kroshius, take his infernal core and return it to Niby.", + ["O"] = "Search Shatter Scar Vale in Felwood for the remains of Kroshius. When you locate the remains, use the Fel Fire near them and await Kroshius\' return. When the infernal has awoken, slay him and take from his corpse Kroshius\' Infernal Core.$B$BReturn Kroshius\' Infernal Core to Niby the Almighty in Felwood.", + ["T"] = "Kroshius\' Infernal Core", + }, + [7604] = { + ["D"] = "The undersigned hereby declares that the Sulfuron ingot they are delivering to the Thorium Brotherhood (TB Ltd.) is genuine and not a facsimile thereof. The undersigned also acknowledges that any harm that should come to $g him:her; as a result of attempting to build, forge, find, create, sell, or eat Sulfuras, is not the responsibility or fault of TB Ltd.$B$BBy signing this contract, you are agreeing to all terms listed herein.$B$B_________________$B$BSignature", + ["O"] = "Turn the Thorium Brotherhood Contract in to Lokhtos Darkbargainer if you would like to receive the plans for Sulfuron.", + ["T"] = "A Binding Contract", + }, + [7621] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Warning", + }, + [7622] = { + ["D"] = "You must do what I could not: Save the peasants that were cut down while fleeing from Stratholme.$B$BThey will walk towards the light, you must ensure their survival. Should too many fall, our cursed existence shall continue - you will have failed.$B$BEvery ability, prayer, and spell that you have learned will be tested. May the Light protect you, $N.", + ["O"] = "Save 50 Peasants before 15 are slain. Speak with Eris Havenfire should you accomplish this task.$B$BYou may view the Death Post to view how many Peasants have been slain.", + ["T"] = "The Balance of Light and Shadow", + }, + [7623] = { + ["D"] = "Mor\'zul says that you want to open a portal to Xoroth. To do that, you\'ll need Xorothian stardust. That\'s not easy to find on Azeroth!$B$BThere is one being who might have some: Lord Banehollow in Jaedenar, the seat of the Shadow Council! Speak with him and he might part with the stardust.$B$BBut if you\'re going to Jaedenar, then you\'ll need to cloak yourself in the Shadow Council\'s own flavor of evil. That will require some of my shadowy potions, and that will cost you...", + ["O"] = "Purchase Shadowy Potions from Gorzeeki in the Burning Steppes.$B$BUse the potions to travel through Jaedenar, and speak with Lord Banehollow.", + ["T"] = "Lord Banehollow", + }, + [7624] = { + ["D"] = "You wish to enter my good graces? Then kill for me.$B$BMy servant, Ulathek, is pathetic how he grovels before me, all the while plotting with Lord Hel\'nurath on Xoroth. Hel\'nurath plans to usurp my power here, and Ulathek is his spy...$B$BProve that you serve me and not my rivals. Confront Ulathek in his quarters, in the Shadow Hold to the west. Tell him that I know his secret and watch as fear grips him. Then, bring me the traitor\'s heart!", + ["O"] = "Confront Ulathek, then bring The Traitor\'s Heart to Lord Banehollow in Jaedenar.", + ["T"] = "Ulathek the Traitor", + }, + [7625] = { + ["D"] = "So you come to me seeking Xorothian stardust? You wish to open a portal to Xoroth, the domain of Hel\'nurath my rival? Perhaps you plan to steal from him one of his precious dreadsteeds?$B$BVery well. My servant Ur\'dan has a supply of Xorothian stardust. You may obtain it from him... if you can pay the price.", + ["O"] = "Purchase Xorothian Stardust from Ur\'dan. Bring it to Gorzeeki Wildeyes in the Burning Steppes.", + ["T"] = "Xorothian Stardust", + }, + [7626] = { + ["D"] = "A Bell of Dethmoora, named after the late warlock Dethmoora Darkeyes, is one of the three tools needed to create a Circle of Greater Summoning. When properly atuned with the Wheel and the Candle, these items conduct vast stores of arcane power.$B$BMy servant Gorzeeki can construct such a bell, but to do so he will need a large supply of elixirs of shadow power. Procure the elixirs from an alchemist and bring them to Gorzeeki.", + ["O"] = "Bring 10 Elixirs of Shadow Power to Gorzeeki Wildeyes in the Burning Steppes.", + ["T"] = "Bell of Dethmoora", + }, + [7627] = { + ["D"] = "A Wheel of the Black March contains and directs the violent energies required for the Circle of Greater Summoning. For Gozeeki to construct a wheel, he will need both large brilliant shards from an enchanter, and dark iron ore from a master miner.$B$BAcquire these and bring them to my servant.", + ["O"] = "Bring 6 Large Brilliant Shards and 25 Dark Iron Ore to Gorzeeki in the Burning Steppes.", + ["T"] = "Wheel of the Black March", + }, + [7628] = { + ["D"] = "A Doomsday Candle stores fire and directs it at those who would disrupt your ritual. When creating your Circle of Greater Summoning, if your candle is lit then any wayward demons will be burned by its flames!$B$BContaining that fire is not easy, and requires the essence within the scales of a black dragon. Acquire those scales from a skinner and bring them to Gorzeeki Wildeyes.", + ["O"] = "Bring 35 Black Dragonscales to Gorzeeki Wildeyes in the Burning Steppes.", + ["T"] = "Doomsday Candle", + }, + [7629] = { + ["D"] = "There is one more process required for Mor\'zul\'s parchment; I need paper infused with Xorothian stardust. And... I\'m afraid I can\'t do that here. I don\'t have the equipment!$B$BThere is an alchemy lab, however, with everything needed. It\'s in the Scholomance, on the isle of Caer Darrow in the Plaguelands.$B$BI can\'t make the trip, but here - take this jar. There\'s an imp inside who is quite clever. Let him out at the alchemy lab and he\'ll infuse the parchment.", + ["O"] = "Bring the Imp in a Jar to the alchemy lab in the Scholomance. After the parchment is created, return the jar to Gorzeeki Wildeyes.", + ["T"] = "Imp Delivery", + }, + [7630] = { + ["D"] = "Now that the Bell, Wheel and Candle are made, I should make a black lodestone. During your ritual, you\'ll need that lodestone to maintain the other ritual objects if they should fail.$B$BTo make the lodestone, I require arcanite. Do you have any? If not, then... you\'ll have to get the arcanite from an alchemist.$B$BReturn to me when you have the arcanite, and then I\'ll make the black lodestone.", + ["O"] = "Bring 3 Arcanite Bars to Gorzeeki in the Burning Steppes.", + ["T"] = "Arcanite", + }, + [7631] = { + ["D"] = "All the preparations are made. Now, you must perform the ritual to create a Circle of Greater Summoning, then use the parchment infused with Xorothian stardust... to open a portal to Xoroth.$B$BI have written the instructions for the ritual onto a scroll. Study it closely, for you must perform each step exactly if you wish to succeed.$B$BFortune to you, $N. And may the souls of your enemies swiftly find their way into your shard pouch.", + ["O"] = "Read Mor\'zul\'s Instructions. Summon a Xorothian Dreadsteed, defeat it, then bind its spirit to you.", + ["T"] = "Dreadsteed of Xoroth", + }, + [7632] = { + ["D"] = "The epidermis of the leaf glows a bright green. The surface is extremely rugose, exposing several veins and wrinkles.$B$BIf you had to take a guess, you would say this leaf came from something ancient and powerful.$B$BMaybe you should find the original owner of this leaf?", + ["O"] = "Find the owner of the Ancient Petrified Leaf. Good luck, $N; It\'s a big world.", + ["T"] = "The Ancient Leaf", + }, + [7633] = { + ["D"] = "", + ["O"] = "", + ["T"] = "An Introduction", + }, + [7634] = { + ["D"] = "Greetings, $c. I am Hastat, Ancient of Lore. I hold knowledge lost eons ago.$B$BWith the proper binding, one of my leaves can serve as a quiver the likes of which has not been seen in 10,000 years. A quiver that when accompanied by a bow of Ancients, could grant untold powers.$B$BReturn here with sinew from an adult blue dragon and this quiver shall be yours.", + ["O"] = "Hastat the Ancient has asked that you bring him a Mature Blue Dragon Sinew. Should you find this sinew, return it to Hastat in Felwood.", + ["T"] = "Ancient Sinew Wrapped Lamina", + }, + [7635] = { + ["D"] = "Vartrus may offer you the stave to create a bow of Ancients but only I can enchant the string required to complete the bow.$B$BIt is a simple task, puny one. Slay a mature black dragon and remove the sinew from its bones. Return that sinew to me and I shall enchant the material into an almost indestructible bow string.", + ["O"] = "Stoma the Ancient has asked that you bring him a Mature Black Dragon Sinew. Should you find this sinew, return it to Stoma in Felwood.", + ["T"] = "A Proper String", + }, + [7636] = { + ["D"] = "Agents of the Burning Legion are still active in our world, $c. These agents corrupt all that they touch. Nature wilts and weeps in their presence.$B$BYou must track down these demonic corrupters and destroy them, $N. Be warned, you must engage them by yourself or they will flee. As long as you are alone, they will try and destroy you. You must strike at them, turning their arrogance into misery.$B$BI grant you a piece of my bark, the inscriptions shall lead you to your targets. Retrieve their heads.", + ["O"] = "You must find and destroy these four demonic corrupters:$B$BSimone the Seductress.$B$BKlinfran the Crazed.$B$BSolenor the Slayer.$B$BArtorius the Doombringer.$B$BDestroy these creatures and return to Vartrus the Ancient in Felwood with their heads.$B$BRefer to the Petrified Bark in your inventory for clues as to their whereabouts.$B$BYou MUST complete this task by yourself.", + ["T"] = "Stave of the Ancients", + }, + [7637] = { + ["D"] = "In order to prepare yourself for this task, you must first show due sacrifice and judgment... with an emphasis on sacrifice.$B$BYou must acquire High Priest Rohan\'s exorcism censer for your task. Even though its use will be for good and just reasons, due compensation must be given for it.$B$BProceed to Ironforge and speak with the High Priest. By bringing ample coin with you to help offset the loss of his censer, it will show your due sacrifice.$B$BGo now $N, time is of the essence.", + ["O"] = "Travel to Ironforge and get High Priest Rohan\'s Exorcism Censer. You will need to make a donation of 150 gold in order to secure it.", + ["T"] = "Emphasis on Sacrifice", + }, + [7638] = { + ["D"] = "The time has come, $N, for you to learn about what it will take for you to acquire something you have no doubt waited on for some time... your charger.$B$BSpeak with Lord Grayson Shadowbreaker here in Stormwind\'s Cathedral District. It is he who will guide you not only though the legerdemain of a Paladin\'s most trusted mount, but the tasks before you to acquire one of your own.$B$BI wish you the best in this trial. For the Light, noble $G brother : sister;!", + ["O"] = "Speak with Lord Grayson Shadowbreaker in Stormwind\'s Cathedral District.", + ["T"] = "Lord Grayson Shadowbreaker", + }, + [7639] = { + ["D"] = "With my blessings, take the censer. I myself have used it in several exorcisms, and it should serve you well for the arduous tasks that lie ahead.$B$BReturn now to Lord Grayson Shadowbreaker in Stormwind, $N. Your quest continues with him.", + ["O"] = "Return the Exorcism Censer to Lord Grayson Shadowbreaker in the Cathedral District of Stormwind.", + ["T"] = "To Show Due Judgment", + }, + [7640] = { + ["D"] = "I have added a pinch of dirt from the tainted ground of Terrordale in the Eastern Plaguelands to the censer. You will now use this censer to find areas there that show signs of spiritual turmoil and disturbance. Look for green auras that permeate the ground as the physical world buckles under the torment of the spirit realm and use the censer to drive out the evil spirits.$B$BWhen you have passed sufficient judgment on the spirits there, you will be ready to proceed.", + ["O"] = "Use the Exorcism Censer to drive out the spirits that torment Terrordale. When you have slain 25 Terrordale Spirits, return to Lord Grayson Shadowbreaker in the Cathedral District of Stormwind.", + ["T"] = "Exorcising Terrordale", + }, + [7641] = { + ["D"] = "A paladin\'s charger is nothing more than a pack animal without proper barding for it. The barding used by your charger not only needs to be of the finest materials possible, but because of the circumstances involved it must also be sufficiently attuned to the spirit realm.$B$BFirst things first, $N - let\'s get your barding made. In Stormwind\'s Dwarven District is one of the finest craftsmen living today, Grimand Elmore. His work will not be cheap, but his quality is what we seek. Speak with him.", + ["O"] = "Speak with Grimand Elmore in Stormwind\'s Dwarven District.", + ["T"] = "The Work of Grimand Elmore", + }, + [7642] = { + ["D"] = "You\'ll need four things for the barding - runecloth for the lining, arcanite bars for the plating, Arthas\' Tears for the spiritual attunement, and Stratholme holy water for the spiritual imbuement. Actually, you need five things... gold for my fee. That fee includes all labor as well as a handcrafted saddle and stirrups.$B$BOnce you\'ve got all that, I\'ll be able to finish your barding. Until then, there are some things I can get started on for you while you assemble your collection of goods.", + ["O"] = "Bring 40 Runecloth, 6 Arcanite Bars, 10 Arthas\' Tears, 5 Stratholme Holy Water vials, and 150 gold to Grimand Elmore in the Dwarven District of Stormwind.", + ["T"] = "Collection of Goods", + }, + [7643] = { + ["D"] = "Your barding needs a special form of blessing, one from an appropriate spirit. In Dire Maul is such a spirit, the Ancient Equine Spirit. It is currently held by a corrupt treant, Tendris Warpwood. Pass judgment upon this foul beast, $N.$B$BKnow this - freedom alone is not enough. You must soothe the spirit before receiving its blessing. For that, special horse feed is needed. Travel to Southshore first and speak with Merideth Carlson on this... and prepare for more sacrifice.", + ["O"] = "Acquire special horse feed used for feeding a spirit horse. Merideth Carlson in Southshore apparently is the source for such food.$B$BTravel to the Dire Maul dungeon in Feralas and slay Tendris Warpwood. Doing so will free the Ancient Equine Spirit. Feed it the special horse feed, thereby soothing the spirit. Finally, give it the Arcanite Barding so it may bless it.", + ["T"] = "Ancient Equine Spirit", + }, + [7644] = { + ["D"] = "As the barding rests on the back of the Ancient Equine Spirit, it glows ever so slightly. The air is thick with power for a brief moment, and then the barding disappears from the back of the horse and is now secure in your backpack.$B$BIt would seem that the barding has been blessed. As per Lord Shadowbreaker\'s instructions, you should now return with it to him in Stormwind.", + ["O"] = "Return with the Blessed Arcanite Barding to Lord Grayson Shadowbreaker in the Cathedral District of Stormwind.", + ["T"] = "Blessed Arcanite Barding", + }, + [7645] = { + ["D"] = "The Silver Hand thought me MAD when I told them that I could make a special horse feed that could nourish spiritual horses. EVERYONE thought I was mad! Well, now it\'s payback time!$B$BI\'ll make what you need, PALADIN... so-called CHAMPION... but it will cost you. I need special biscuits - Enriched Manna Biscuits sold only by the Argent Dawn - for this blend. I also demand, yes DEMAND gold as compensation for the misery I have endured!$B$BShow me the sacrifice you tout so much, PALADIN.", + ["O"] = "Retrieve 20 Enriched Manna Biscuits - the key ingredient in making Manna-Enriched Horse Feed - for Merideth Carlson at Southshore in the Hillsbrad Foothills. The Argent Dawn is known as the sole purveyor of the biscuits.$B$BYou also need to give her 50 gold to soothe her ruffled sensibilities.", + ["T"] = "Manna-Enriched Horse Feed", + }, + [7646] = { + ["D"] = "We now must assemble a Divination Scryer - this will begin the trial that will allow you to redeem the fallen charger. Your scryer, actually, is almost done. The exorcism censer used in Terrordale is the catalyst for it, and I will fashion a suitable housing for the device.$B$BThe last components needed, though, are two diamonds. They must be as juxtaposed in brilliance as they are in purpose - an Azerothian and a Pristine Black. These two will be the beacon by which the scryer will pierce the shadows!", + ["O"] = "Bring an Azerothian Diamond and a Pristine Black Diamond to Lord Grayson Shadowbreaker in the Cathedral District of Stormwind.", + ["T"] = "The Divination Scryer", + }, + [7647] = { + ["D"] = "Take this satchel - in it are the items you will need for your task.$B$BUse the divination scryer in the heart of the Great Ossuary\'s basement to bring forth accursed spirits that must be judged. Use your judgments wisely during this trial - they will prove more potent than you realize. After the spirits, the death knight will appear; defeat him and reclaim the lost soul of the charger. Only then $N, will you be able to redeem it and place your barding upon your new steed!$B$BGood luck!", + ["O"] = "Use the Divination Scryer in the heart of the Great Ossuary\'s basement in the Scholomance. Doing so will bring forth the spirits you must judge. Defeating these spirits will summon forth Death Knight Darkreaver. Defeat him and reclaim the lost soul of the fallen charger.$B$BGive the Charger\'s Redeemed Soul and the Blessed Enchanted Barding to Darkreaver\'s Fallen Charger.", + ["T"] = "Judgment and Redemption", + }, + [7648] = { + ["D"] = "$B$BThere you are, my friend. This is some of my finest work - as good as the barding I personally made for Lord Shadowbreaker when he went for his own charger. I thank you for your trust in me to provide for you the best.$B$BNo doubt Grayson will want to see the work for himself as well. Take your barding to him, and give him my thanks for his honorable business.", + ["O"] = "Take the Arcanite Barding to Lord Grayson Shadowbreaker in Stormwind\'s Cathedral District for his inspection.", + ["T"] = "Grimand\'s Finest Work", + }, + [7649] = { + ["D"] = "The tome carries the mark of the Athenaeum.", + ["O"] = "Return the book to its rightful owners.", + ["T"] = "Enchanted Thorium Platemail: Volume I", + }, + [7650] = { + ["D"] = "The tome carries the mark of the Athenaeum.", + ["O"] = "Return the book to its rightful owners.", + ["T"] = "Enchanted Thorium Platemail: Volume II", + }, + [7651] = { + ["D"] = "The tome carries the mark of the Athenaeum.", + ["O"] = "Return the book to its rightful owners.", + ["T"] = "Enchanted Thorium Platemail: Volume III", + }, + [7652] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Blue Light Bargain", + }, + [7653] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Imperial Plate Belt", + }, + [7654] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Imperial Plate Boots", + }, + [7655] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Imperial Plate Bracer", + }, + [7656] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Imperial Plate Chest", + }, + [7657] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Imperial Plate Helm", + }, + [7658] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Imperial Plate Leggings", + }, + [7659] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Imperial Plate Shoulders", + }, + [7660] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Wolf Swapping - Arctic Wolf", + }, + [7661] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Wolf Swapping - Red Wolf", + }, + [7662] = { + ["D"] = "", + ["O"] = "", + ["T"] = "New Kodo - Teal", + }, + [7663] = { + ["D"] = "", + ["O"] = "", + ["T"] = "New Kodo - Green", + }, + [7664] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Ivory Raptor Replacement", + }, + [7665] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Red Raptor Replacement", + }, + [7666] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Again Into the Great Ossuary", + }, + [7667] = { + ["D"] = "$N, there is a pressing matter I hope you can help with... both materially and spiritually. Allow me to explain.$B$BWithin the depths of the Scholomance in Lordaeron is a chamber called the Great Ossuary. I need to complete a device that would pierce the shadows of this horrid room. To finish what I have started, I need two diamonds: an Azerothian and a Pristine Black. These are not trivial items, I know - I just don\'t have the resources myself.$B$BCould you provide me with one of each?", + ["O"] = "If you are interested in helping Sagorne Crestrider in Orgrimmar\'s Valley of Wisdom, bring him an Azerothian Diamond and a Pristine Black Diamond.", + ["T"] = "Material Assistance", + }, + [7668] = { + ["D"] = "Death Knight Darkreaver lords over the Great Ossuary in the Scholomance. He threatens to twist the spirit realm to do his own bidding, and he must be stopped! This is where the scryer you helped make comes into play.$B$BUse the divination scryer in the heart of the Great Ossuary\'s basement to call forth Darkreaver\'s spirit minions. Defeat the spirits and the death knight himself will appear. $N, bring me his head! Only his demise will reverse the damage dome to the spirit realm!", + ["O"] = "Use the Divination Scryer in the heart of the Great Ossuary\'s basement in the Scholomance. Doing so will bring forth spirits you must fight. Defeating these spirits will summon forth Death Knight Darkreaver; defeat him.$B$BBring Darkreaver\'s Head to Sagorne Creststrider in the Valley of Wisdom, Orgrimmar.", + ["T"] = "The Darkreaver Menace", + }, + [7669] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Again Into the Great Ossuary", + }, + [7670] = { + ["D"] = "The time has come, $N, for you to learn about what it will take for you to acquire something you have no doubt waited on for some time... your charger.$B$BSpeak with Lord Grayson Shadowbreaker in Stormwind\'s Cathedral District. It is he who will guide you not only though the legerdemain of a Paladin\'s most trusted mount, but the tasks before you to acquire one of your own.$B$BI wish you the best in this trial. For the Light, noble $G brother : sister;!", + ["O"] = "Speak with Lord Grayson Shadowbreaker in Stormwind\'s Cathedral District.", + ["T"] = "Lord Grayson Shadowbreaker", + }, + [7671] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Frostsaber Replacement", + }, + [7672] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Nightsaber Replacement", + }, + [7673] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Frost Ram Exchange", + }, + [7674] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Black Ram Exchange", + }, + [7675] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Icy Blue Mechanostrider Replacement", + }, + [7676] = { + ["D"] = "", + ["O"] = "", + ["T"] = "White Mechanostrider Replacement", + }, + [7677] = { + ["D"] = "", + ["O"] = "", + ["T"] = "White Stallion Exchange", + }, + [7678] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Palomino Exchange", + }, + [7681] = { + ["D"] = "Cast feed pet on your pet.", + ["O"] = "Feed your pet, then talk to your questgiver.", + ["T"] = "Hunter test quest", + }, + [7682] = { + ["D"] = "Cast feed pet on your pet.", + ["O"] = "Feed your pet, then talk to your questgiver.", + ["T"] = "Hunter test quest2", + }, + [7701] = { + ["D"] = "By order o\' \'is eminence, Overseer Oilfist, the rogue Thorium Brotherhood agent an\' newly hired commander o\' the Dark Iron Slag Pit crew o\' the Cauldron, Overseer Maltorius, is to be killed an\' \'is head brung back as proof o\' the deed.$B$BSee Lookout Captan Lolo Longstriker fer the reward on this bounty.", + ["O"] = "Deep within the Slag Pit of the Cauldron, in the Searing Gorge, you will find the traitorous Dark Iron dwarf named Overseer Maltorius.$B$BSlay Overseer Maltorius and take his head. Return the head to Lookout Captain Lolo Longstriker in the Searing Gorge for your reward.", + ["T"] = "WANTED: Overseer Maltorius", + }, + [7703] = { + ["D"] = "Now you da king, so maybe you get prized Gordok artifact back from creepy elf who calls himself Prince! Da king before you failed, just like all da other kings since Tortheldrin - da creepy elf - stole it from old timey Gordok king!$B$BArtifact is called da Gauntlet of Gordok Might. Old timey stories say only da one true king da Gordok can get it back. Old timey story also say creepy elf is still around here - you find it and it will become mighty gauntlet you wear forever! Yar, I show you!", + ["O"] = "Find the Gauntlet of Gordok Might and return it to Captain Kromcrush in Dire Maul.$B$BAccording to Kromcrush, the \"old timey story\" says that Tortheldrin - a \"creepy\" elf who called himself a prince - stole it from one of the Gordok kings.", + ["T"] = "Unfinished Gordok Business", + }, + [7704] = { + ["D"] = "Well, well, well... Isn\'t this a surprise. The Chambermaid had a gigantic ornate pillow and now it\'s yours. Evonice Sootsmoker will definitely want to get her grubby little hands all over this item. Take it to her and see if she\'ll offer you any goodies for your trouble.", + ["O"] = "Take Chambermaid Pillaclencher\'s Pillow to Evonice Sootsmoker in the Searing Gorge.", + ["T"] = "Look at the Size of It!", + }, + [7721] = { + ["D"] = "If I bet against my own better judgment and stay to run an engineering shop along the Forgotten Coast, I will need to deal with these pesky elementals. Curse the powers of elementalism unchecked, I say!$B$BFortunately for me, and now for you my hopeful agent provocateur, the elementals represent an ideal source of raw power for my Ultra-Shrinker refinement - give them the what-for I say! When doing this though, be sure to save me the water elemental cores!", + ["O"] = "Collect 10 Water Elemental Cores from the Sea Elementals and Sea Sprays along the Forgotten Coast of Feralas, and bring them back to Zorbin Fandazzle who is near the dock there.", + ["T"] = "Fuel for the Zapping", + }, + [7722] = { + ["D"] = "When that bastard, Maltorius, left our clan, he left with something more valuable than a pristine arcane crystal: Our recipe for fiery flux! I\'d bet anything that the recipe was part of the deal in his new promotion amongst the Dark Irons.$B$BI want you to get our secret plans back, $N. I\'m sure they\'re somewhere near Maltorius, deep inside the Slag Pit.", + ["O"] = "Somewhere in the Slag Pit of the Cauldron you will find the Secret Plans: Fiery Flux that Overseer Maltorius stole. Find those plans and return them to Master Smith Burninate in the Searing Gorge.", + ["T"] = "What the Flux?", + }, + [7723] = { + ["D"] = "Unfortunately, I can\'t dish out the beats like I used to, due to this here fat finger problem. Ye see, the climate out here combined with the lack o\' air pressure makes me fingers expand. They\'re like gigantic Thelsamar Blood Sausages, they are...$B$BYe\'re gonna have to carry out me orders of business and what have ye.$B$BFirst on me agenda: Poundin\' the livin\' daylights out o\' the heavy war golems o\' the Gorge. Get crackin\'.", + ["O"] = "Hansel Heavyhands wants you to kill 20 Heavy War Golems.$B$BThe Heavy War Golems wander the areas surrounding the Cauldron in the Searing Gorge. When you\'ve killed enough, return to Hansel in Searing Gorge.", + ["T"] = "Curse These Fat Fingers", + }, + [7724] = { + ["D"] = "Wouldn\'t ye know it, every time ol\' Hansel wants to take a moment to relax and reflect upon his life, the powers that be give him another job.$B$BMe gots to think, come on! Ye know what I be saying? Come. On.$B$BSo, these here greater lava spiders are causin\' a ruckus o\' some sort. Oilfist says they shoot fire out their... erm, yea well, anyway, such things upset the children.$B$BI guess we gots to kill \'em. Rather, ye gots to kill \'em.", + ["O"] = "Hansel Heavyhands wants you to kill 20 Greater Lava Spiders in the Searing Gorge. You can find Greater Lava Spiders in the plateaus and lava pools of the Searing Gorge.$B$BReturn to Hansel Heavyhands in the Searing Gorge when you have killed enough Greater Lava Spiders.", + ["T"] = "Fiery Menace!", + }, + [7725] = { + ["D"] = "I know you\'ve gathered residue for me already... but should you find yourself for want of an encore performance to a fun-time activity, I can always use more residue.$B$BWhile I can\'t offer nearly as much in the way of compensation again, I\'ll be more than happy to spread the good word of your service to all my goblin friends with ears.$B$BBelieve me $g sir : madam; when I say that these goblins have quite large ears.", + ["O"] = "Use Zorbin\'s Ultra-Shrinker to zap any kind of giant found in Feralas into a more manageable form. Bring 10 Miniaturization Residues found on the zapped versions of these giants to Zorbin Fandazzle at the docks of the Forgotten Coast, Feralas.", + ["T"] = "Again With the Zapped Giants", + }, + [7726] = { + ["D"] = "More work, you say? Did my heroic mission of collecting bits of goo found inside elemental beings not slake your thirst for adventure? Perhaps more of the same will vainly try to fill the bottomless well of questing you possess...$B$BOK, melodrama aside, I do need more water elemental cores. I\'m trying desperately to set up shop here, so the rewards won\'t be as great... but I promise you I\'ll tell everyone in earshot how you\'ve helped me. Trust me on this - I know people in the Cartel!", + ["O"] = "Collect 6 Water Elemental Cores from the Sea Elementals and Sea Sprays along the Forgotten Coast of Feralas, and bring them back to Zorbin Fandazzle who is near the dock there.", + ["T"] = "Refuel for the Zapping", + }, + [7727] = { + ["D"] = "Bunions, $g lad:lass;. Me bunions got bunions. How am I supposed to do any sort of killin\' with me feet in such disarray? That\'s why ye\'re gonna help.$B$BScrange and Burninate tasked me to kill these things so they can send some expeditionary teams down into the Slag Pit lava pools to do some explorin\'. Supposedly some incendosaurs or some such nonsense down there causin\' all kinds o\' problems. Now move along an\' don\'t come back \'til the incendosaur population be extinct.", + ["O"] = "Hansel Heavyhands wants you to kill 20 Incendosaurs.$B$BYou will find Incendosaurs occupying the lava pools inside the Slag Pit. The Slag Pit can be found in the Cauldron of the Searing Gorge.$B$BReturn to Hansel Heavyhands in the Searing Gorge when you have killed enough Incendosaurs.", + ["T"] = "Incendosaurs? Whateverosaur is More Like It", + }, + [7728] = { + ["D"] = "The following items have been stolen:$B$B*One Dark Iron Tuyere.$B$B*One Lookout\'s Spyglass.$B$BA reward is being offered to individuals who find and return these pilfered items.$B$BThe Thorium Brotherhood is certain that these items were stolen by unscrupulous and jealous Dark Iron dwarves that inhabit the Searing Gorge.$B$BThe spyglass in question was an excellent tool for the lookouts and the tuyere was an irreplaceable smithing tool.$B$BShould you find the missing items, return them to Scrange.", + ["O"] = "Find and return the Smithing Tuyere and Lookout\'s Spyglass to Taskmaster Scrange in the Searing Gorge.$B$BThe only information you have about these items is the following: They were definitely stolen by Dark Iron dwarves. The Smithing Tuyere is a blacksmithing tool used by blacksmiths and the Lookout\'s Spyglass is an invaluable monitoring tool to lookouts. ", + ["T"] = "STOLEN: Smithing Tuyere and Lookout\'s Spyglass", + }, + [7729] = { + ["D"] = "Taskmaster Scrange is looking for a few good men and women to help \'cull the competition\' in the Searing Gorge.$B$BIf you are interested in this position, venture out into the Searing Gorge and slaughter every Dark Iron Taskmaster and Dark Iron Slaver that you see.$B$BReturn to Taskmaster Scrange when your clothes are bloody enough.$B$BYou\'ll know when they\'re bloody enough so don\'t ask.", + ["O"] = "Slay 15 Dark Iron Taskmasters and 15 Dark Iron Slavers. Return to Taskmaster Scrange in the Searing Gorge once you have accomplished this task.", + ["T"] = "JOB OPPORTUNITY: Culling the Competition", + }, + [7730] = { + ["D"] = "From what scouting we have managed to muster, we believe that the foe south of the gnolls is an insect-like race. Frankly, it is irrelevant whether or not if they\'re sentient. If they are driving the gnolls to frenzy against us, then they are as big of a threat - if not more - than the gnolls.$B$BDrive deep into where these Zukk\'ash insects dwell; it is known as the Writhing Deep. Thin their numbers and report back to me what you find, bringing back their carapaces as evidence of your handiwork.", + ["O"] = "Bring 20 Zukk\'ash Carapaces to Hadoken Swiftstrider at Camp Mojache, Feralas.", + ["T"] = "Zukk\'ash Infestation", + }, + [7731] = { + ["D"] = "In surveying the Writhing Deep, one of our scouts reported seeing a giant insect - much larger than the other insects spotted - wandering about the twisted terrain. Not only is it larger, it also seems to secrete some sort of aura that the other insects don\'t. We\'ve given it a name - Stinglasher.$B$BThe innards of this beast would be invaluable to study as we figure out the best way to deal with this new threat. Cut out its secretion glands and bring it back to me immediately!", + ["O"] = "Defeat Stinglasher in the Writhing Deep, bringing its glands back to Hadoken Swiftstrider at Camp Mojache, Feralas.", + ["T"] = "Stinglasher", + }, + [7732] = { + ["D"] = "You\'ve done doubly well in addressing the threat that the Zukk\'ash insects pose to Camp Mojache. The threat these things pose is far from over, and I\'d like to ask you for one last task on behalf of the Horde.$B$BThis is a document that details all the information we have learned about these Zukk\'ash insects. I want you to deliver it to Zilzibin Drumlore in the Drag of Orgrimmar. He\'s an expert on alien creatures like these; I hope he can do something with the lore we\'ve obtained.", + ["O"] = "Deliver the Camp Mojache Zukk\'ash Report to Zilzibin Drumlore. He resides in the Drag of Orgrimmar.", + ["T"] = "Zukk\'ash Report", + }, + [7733] = { + ["D"] = "I have a lead on an even BETTER source of hides, if that\'s even possible to believe! In the northern parts of Feralas - deep within Rage Scar Hold - are another throng of yetis. They\'re much tougher than the ones you dealt with before, so if you\'re up for a bigger challenge you\'d best be on your toes!$B$BI would reward you handsomely for a stack of ten of their hides; bring them to me here, and we\'ll finish our business.", + ["O"] = "Bring 10 Rage Scar Yeti Hides to Pratt McGrubben at Feathermoon Stronghold, Feralas.", + ["T"] = "Improved Quality", + }, + [7734] = { + ["D"] = "I have a lead on an even BETTER source of hides, if that\'s even possible to believe! In the northern parts of Feralas - deep within Rage Scar Hold - are another throng of yetis. They\'re much tougher than the ones you dealt with before, so if you\'re up for a bigger challenge you\'d best be on your toes!$B$BI would reward you handsomely for a stack of ten of their hides; bring them to me here, and we\'ll finish our business.", + ["O"] = "Bring 10 Rage Scar Yeti Hides to Jangdor Swiftstrider at Camp Mojache, Feralas.", + ["T"] = "Improved Quality", + }, + [7735] = { + ["D"] = "You have found a pristine yeti hide that is exceptionally thick and sturdy - more so than even the ones you\'ve seen from the yeti in Rage Scar.$B$BConsidering that Pratt McGrubben at the Feathermoon Stronghold is in the market for yeti hides, this particular one may be of considerable interest to him.", + ["O"] = "Bring the Pristine Yeti Hide to Pratt McGrubben at the Feathermoon Stronghold, Feralas.", + ["T"] = "Pristine Yeti Hide", + }, + [7736] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Restoring Fiery Flux Supplies via Kingsblood", + }, + [7737] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Gaining Acceptance", + }, + [7738] = { + ["D"] = "You have found what may very well be a perfect yeti hide. You easily note that it is exceptionally thick and sturdy - more so than even the ones you\'ve seen from the yeti in Rage Scar.$B$BConsidering that Jangdor Swiftstrider at Camp Mojache is in the market for yeti hides, this particular one may be of considerable interest to him.", + ["O"] = "Bring the Perfect Yeti Hide to Jangdor Swiftstrider at Camp Mojache, Feralas.", + ["T"] = "Perfect Yeti Hide", + }, + [7761] = { + ["D"] = "Imbecile,$B$BI hold very little faith in your ability to prevent outsiders from accessing the master\'s lair. In the very likely event of your death, this orb has its own failsafe built in to prevent outsiders from teleporting directly into Blackwing.$B$BOnly those with the Mark of Drakkisath branded upon their hand may make use of this orb. Thankfully, Drakkisath is not nearly as incompetent as you, Quartermaster. He guards the brand himself!$B$B-Warchief Rend Blackhand$B$BP.S. Destroy this letter, idiot.", + ["O"] = "That is one stupid orc. It would appear as if you need to find this brand and gain the Mark of Drakkisath in order to access the Orb of Command.$B$BThe letter indicates that General Drakkisath guards the brand. Perhaps you should investigate.", + ["T"] = "Blackhand\'s Command", + }, + [7781] = { + ["D"] = "The old feeling returns. The welcome pangs of victory reverberate throughout your being. Before you lies the monolithic, battle scarred head of Nefarian. Return it to your Highlord, champion.", + ["O"] = "Return the Head of Nefarian to Highlord Bolvar Fordragon in Stormwind.", + ["T"] = "The Lord of Blackrock", + }, + [7782] = { + ["D"] = "Go to the Valley of Heroes and speak with Field Marshal Afrasiabi.", + ["O"] = "Venture to the Valley of Heroes in Stormwind City and speak with Field Marshal Afrasiabi.", + ["T"] = "The Lord of Blackrock", + }, + [7783] = { + ["D"] = "The old feeling returns. The welcome pangs of victory reverberate throughout your being. Before you lies the monolithic, battle scarred head of Nefarian. Return it to your Warchief, champion.", + ["O"] = "Return the Head of Nefarian to Thrall in Orgrimmar.", + ["T"] = "The Lord of Blackrock", + }, + [7784] = { + ["D"] = "Seek out High Overlord Saurfang in the Valley of Strength.", + ["O"] = "Speak with High Overlord Saurfang in Orgrimmar. He stands waiting for you in the Valley of Strength.", + ["T"] = "The Lord of Blackrock", + }, + [7785] = { + ["D"] = "Examine the vessel of his rebirth, mortal. It is from this that the Windseeker shall be reborn!", + ["O"] = "Examine the Vessel of Rebirth and return it to Highlord Demitrian.", + ["T"] = "Examine the Vessel", + }, + [7786] = { + ["D"] = "I have told you all that I know, $N. It is you who must find elementium. It is you who must destroy the Firelord\'s corporeal form.$B$BDo this and gain the blessing of Thunderaan.", + ["O"] = "To free Thunderaan the Windseeker from his prison, you must present the right and left halves of the Bindings of the Windseeker, 10 bars of Elementium, and the Essence of the Firelord to Highlord Demitrian in Silithus.", + ["T"] = "Thunderaan the Windseeker", + }, + [7787] = { + ["D"] = "You have defeated the Wind Seeker. Take the dormant blade and force the lying wretch, Demitrian, to use the materials you provided for his betrayal to wake Thunderfury.", + ["O"] = "Present the Dormant Wind Kissed Blade to Highlord Demitrian.", + ["T"] = "Rise, Thunderfury!", + }, + [7788] = { + ["D"] = "Beyond this tunnel you will find a field of strife and turmoil, young $c. The Horde continue to decimate our sacred forest, cutting down the evergreen foliage to power their machines of war.$B$BEnter Warsong Gulch and defend Silverwing Hold. Push back the invading Horde forces!$B$BDo this, and earn a Mark of Honor. Bring it to me, $N, and I shall reward you.", + ["O"] = "Enter Warsong Gulch and defeat the Horde, obtain a Warsong Gulch Mark of Honor, and return to Sentinel Farsong at the Silverwing Grove.", + ["T"] = "Vanquish the Invaders!", + }, + [7789] = { + ["D"] = "The wilds of the Ashenvale forest will succumb to the might of the Horde, $r. Nothing the Silverwing say or do can stop our sovereign imperative. Kalimdor belongs to the Horde. How dare they attempt to prevent us from harvesting what is rightfully ours!$B$BLet the pride swell in your chest as you cut down their weak attempts at slowing our progress. Destroy the Silverwing Sentinels, and earn a Mark of Honor. Return to me with such a Mark, $N, and you will be rewarded.", + ["O"] = "Enter Warsong Gulch and defeat the Alliance, gain a Warsong Gulch Mark of Honor, and bring it to Captain Shatterskull at the Mor\'shan Base Camp.", + ["T"] = "Quell the Silverwing Usurpers", + }, + [7790] = { + ["D"] = "Defeat the Warsong Mill, then return to me.", + ["O"] = "", + ["T"] = "REUSE", + }, + [7791] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Wool", + }, + [7792] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Wool", + }, + [7793] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Silk", + }, + [7794] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Mageweave", + }, + [7795] = { + ["D"] = "$N, you\'ve been a tremendous contributor to our cloth drive. As we work hard to replenish our reserves, I must impart news upon you the most severe of our deficiencies - runecloth. We are in absolutely dire need of runecloth, and we hope that you will be able to help us as you have in the past.$BIf you are willing, please bring me what runecloth you can spare. We\'ll initially accept a single donation of sixty, and then we\'ll go from there.", + ["O"] = "Deliver 60 runecloth to Clavicus Knavingham.", + ["T"] = "A Donation of Runecloth", + }, + [7796] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Additional Runecloth", + }, + [7797] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Dimensional Ripper - Everlook", + }, + [7798] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Silk", + }, + [7799] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Mageweave", + }, + [7800] = { + ["D"] = "$N, you\'ve been a tremendous contributor to our cloth drive. As we work hard to replenish our reserves, I must impart news upon you the most severe of our deficiencies - runecloth. We are in absolutely dire need of runecloth, and we hope that you will be able to help us as you have in the past.$BIf you are willing, please bring me what runecloth you can spare. We\'ll initially accept a single donation of sixty, and then we\'ll go from there.", + ["O"] = "Deliver 60 runecloth to Raedon Duskstriker.", + ["T"] = "A Donation of Runecloth", + }, + [7801] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Additional Runecloth", + }, + [7802] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Wool", + }, + [7803] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Silk", + }, + [7804] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Mageweave", + }, + [7805] = { + ["D"] = "$N, you\'ve been a tremendous contributor to our cloth drive. As we work hard to replenish our reserves, I must impart news upon you the most severe of our deficiencies - runecloth. We are in absolutely dire need of runecloth, and we hope that you will be able to help us as you have in the past.$BIf you are willing, please bring me what runecloth you can spare. We\'ll initially accept a single donation of sixty, and then we\'ll go from there.", + ["O"] = "Deliver 60 runecloth to Mistina Steelshield.", + ["T"] = "A Donation of Runecloth", + }, + [7806] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Additional Runecloth", + }, + [7807] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Wool", + }, + [7808] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Silk", + }, + [7809] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Mageweave", + }, + [7810] = { + ["D"] = "There must be more to being a master of the arena than this! Perhaps the Pirate who runs the event at Gurubashi will know!", + ["O"] = "Speak with Short John Mithril in the Stranglethorn Arena.", + ["T"] = "Arena Master", + }, + [7811] = { + ["D"] = "$N, you\'ve been a tremendous contributor to our cloth drive. As we work hard to replenish our reserves, I must impart news upon you the most severe of our deficiencies - runecloth. We are in absolutely dire need of runecloth, and we hope that you will be able to help us as you have in the past.$BIf you are willing, please bring me what runecloth you can spare. We\'ll initially accept a single donation of sixty, and then we\'ll go from there.", + ["O"] = "Deliver 60 runecloth to Bubulo Acerbus.", + ["T"] = "A Donation of Runecloth", + }, + [7812] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Additional Runecloth", + }, + [7813] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Wool", + }, + [7814] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Silk", + }, + [7815] = { + ["D"] = "Don\'t let their big eyes fool you, mon! Those saltwater snapjaws be a menace. I can\'t fish for five minutes without getting a broken line from one of those oversized fish vacuums stealing my bait.$B$BDo me and the people of Revantusk Village a service and kill em, mon.$B$BKill the whole lot of em!", + ["O"] = "Katoom the Angler at Revantusk Village in the Hinterlands wants you to kill 15 Saltwater Snapjaw turtles. Return to him when you have completed this task.", + ["T"] = "Snapjaws, Mon!", + }, + [7816] = { + ["D"] = "Yo! There be a turtle out there not like the others. She be the Gammerita, leader of the saltwater snapjaws - a downright dirty thievin\' reptile.$B$BMon, she stole my best lure. Snapped it right off my line! Since then, the fish just aren\'t biting the same.$B$BFind Gammerita and get my lure out of her stomach.", + ["O"] = "Katoom the Angler at Revantusk Village in the Hinterlands wants you to kill Gammerita and retrieve Katoom\'s Best Lure from her corpse.$B$BKatoom mentioned that Gammerita hangs out on the coast with the other turtles.", + ["T"] = "Gammerita, Mon!", + }, + [7817] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Mageweave", + }, + [7818] = { + ["D"] = "$N, you\'ve been a tremendous contributor to our cloth drive. As we work hard to replenish our reserves, I must impart news upon you the most severe of our deficiencies - runecloth. We are in absolutely dire need of runecloth, and we hope that you will be able to help us as you have in the past.$BIf you are willing, please bring me what runecloth you can spare. We\'ll initially accept a single donation of sixty, and then we\'ll go from there.", + ["O"] = "Deliver 60 runecloth to Ralston Farnsley.", + ["T"] = "A Donation of Runecloth", + }, + [7819] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Additional Runecloth", + }, + [7820] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Wool", + }, + [7821] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Silk", + }, + [7822] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Mageweave", + }, + [7823] = { + ["D"] = "$N, you\'ve been a tremendous contributor to our cloth drive. As we work hard to replenish our reserves, I must impart news upon you the most severe of our deficiencies - runecloth. We are in absolutely dire need of runecloth, and we hope that you will be able to help us as you have in the past.$BIf you are willing, please bring me what runecloth you can spare. We\'ll initially accept a single donation of sixty, and then we\'ll go from there.", + ["O"] = "Deliver 60 runecloth to Rumstag Proudstrider.", + ["T"] = "A Donation of Runecloth", + }, + [7824] = { + ["D"] = "$N, you\'ve been a tremendous contributor to our cloth drive. As we work hard to replenish our reserves, I must impart news upon you the most severe of our deficiencies - runecloth. We are in absolutely dire need of runecloth, and we hope that you will be able to help us as you have in the past.$BIf you are willing, please bring me what runecloth you can spare. We\'ll initially accept a single donation of sixty, and then we\'ll go from there.", + ["O"] = "Deliver 60 runecloth to Vehena.", + ["T"] = "A Donation of Runecloth", + }, + [7825] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Additional Runecloth", + }, + [7826] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Wool", + }, + [7827] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Silk", + }, + [7828] = { + ["D"] = "Many brave trolls have been lost to the harsh wilds of the Hinterlands, $r. The Silvermane wolves are one of the biggest threats to our hunters. They lay in wait, hiding amongst the bushes and landscape, then strike out when the opportunity presents itself.$B$BThis type of ferocity will not go unchecked!$B$BYou must think like the Silvermane. Stalk the stalkers! Slay them all!", + ["O"] = "Huntsman Markhor at Revantusk Village in the Hinterlands wants you to kill 15 Silvermane Stalkers and 15 Silvermane Howlers. Return to him once the task is complete.$B$BMarkhor mentioned that the wolves hide in the wilds of the Hinterlands.", + ["T"] = "Stalking the Stalkers", + }, + [7829] = { + ["D"] = "Among the more ornery of the wildlife of the Hinterlands are the savage owlbeasts. Many a good Revantusk warrior has been lost to the ferocious claws and beak of the beasts.$B$BKill every savage owlbeast you see, $r. Return to me when you can stand no more bloodshed. Your contribution will then be weighed, measured, and judged.", + ["O"] = "Huntsman Markhor at Revantusk Village in the Hinterlands wants you to kill 20 Savage Owlbeasts. Return to him once the task is complete.$B$BMarkhor mentioned that the Savage Owlbeasts occupy the wilds of the Hinterlands.", + ["T"] = "Hunt the Savages", + }, + [7830] = { + ["D"] = "The filth that calls itself Wildhammer trains gryphon to slay troll. Horrible, I know, but worry not, justice will soon be meted out.$B$BFor now, I want you to focus on eradicating the elder gryphons of the region. They are known as Skylords.$B$BSlay one and return to me with its plume.", + ["O"] = "Huntsman Markhor at Revantusk Village in the Hinterlands wants you to kill a Razorbeak Skylord and retrieve its Skylord Plume. Return to him once the task is complete.$B$BMarkhor mentioned that the Razorbeak Skylord are a rare breed that tend to occupy the wilds of the Hinterlands.", + ["T"] = "Avenging the Fallen", + }, + [7831] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Mageweave", + }, + [7832] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Additional Runecloth", + }, + [7833] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Wool", + }, + [7834] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Silk", + }, + [7835] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Mageweave", + }, + [7836] = { + ["D"] = "$N, you\'ve been a tremendous contributor to our cloth drive. As we work hard to replenish our reserves, I must impart news upon you the most severe of our deficiencies - runecloth. We are in absolutely dire need of runecloth, and we hope that you will be able to help us as you have in the past.$BIf you are willing, please bring me what runecloth you can spare. We\'ll initially accept a single donation of sixty, and then we\'ll go from there.", + ["O"] = "Deliver 60 runecloth to Rashona Straglash.", + ["T"] = "A Donation of Runecloth", + }, + [7837] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Additional Runecloth", + }, + [7838] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Arena Grandmaster", + }, + [7839] = { + ["D"] = "Vilebranch scum invaded our village and stole my tools! I have backup tools but the set they stole was a gift given to me by a kind hearted gnome that saved my life when I was a young orc.$B$BI want those tools back, $N - they mean the world to me.$B$BMarkhor reported that the tools were spotted near the Agol\'watha and Shaol\'watha temples.$B$BThose temples are in the northeastern region of the Hinterlands.$B$BRecover my tools!", + ["O"] = "Smith Slagtree at Revantusk Village in the Hinterlands wants you to find Slagtree\'s Lost Tools. Return to him once this task is complete.$B$BYou recall Smith Slagtree mentioning that the tools might be at one of the Vilebranch temples in the northeastern region of the Hinterlands. You should also check Skulk Rock.", + ["T"] = "Vilebranch Hooligans", + }, + [7840] = { + ["D"] = "Lard was at secret special spot having picnic when ugly mean Vilebranch hit Lard wit da big stick. Lard run back to Revantusk but forget Lard lunch. Lard hungry. Maybe you go back to secret special spot and get Lard lunch? Lard scared. Go nort! Island der to da nort is da secret special spot.", + ["O"] = "Lard at Revantusk Village in the Hinterlands wants you to find Lard\'s Lunch. Return to him when this task is complete.$B$BLard mentioned that he left it on the island to the north. Watch out for Vilebranch trolls.", + ["T"] = "Lard Lost His Lunch", + }, + [7841] = { + ["D"] = "The Wildhammer be striking up deals with our enemies, forgin\' new alliances. This time, they be workin\' with the high elves, mon.$B$B$B$BWe be needin\' to send those Wildhammer dwarves a message - a message in the blood of our enemies. Slaughter every Highvale high elf that you come across, leave their bodies as a warnin\'.$B$BNever mess with trolls!", + ["O"] = "Otho Moji\'ko at Revantusk Village in the Hinterlands wants you to slaughter 15 Highvale Outrunners, 15 Highvale Scouts, 15 Highvale Marksman and 15 Highvale Rangers. Return to him when this task is complete.$B$BYou can find the Highvale high elves at the Quel\'Danil Lodge in the northwestern region of the Hinterlands.", + ["T"] = "Message to the Wildhammer", + }, + [7842] = { + ["D"] = "They say the Wildhammer and gryphon are as close to each other as troll and mate. Disgusting, but we be able to use this to our advantage, mon. We send them another message.$B$BKill all the gryphons you see in the Hinterlands, collect their feathers. From this we make the final message.", + ["O"] = "Otho Moji\'ko at Revantusk Village in the Hinterlands wants you to bring him 10 Long Elegant Feathers from the gryphons that inhabit the Hinterlands. Return to him once this task is complete.$B$BGryphons are known to inhabit every region of the Hinterlands.", + ["T"] = "Another Message to the Wildhammer", + }, + [7843] = { + ["D"] = "$B$BYou take this, mon. You take this to Aerie Peak, dead center of town by the well. You plant it! Drive it right into the ground! Show those dwarves that troll mean business! Come back when you do this. Hopefully you come back alive.", + ["O"] = "Otho Moji\'ko at Revantusk Village in the Hinterlands wants you to travel to Aerie Peak in the western region of the Hinterlands and place the Final Message to the Wildhammer by the well in the center of town. Return to him once this task is complete.$B$BBeware of angry Wildhammer dwarves and unruly members of the Alliance.", + ["T"] = "The Final Message to the Wildhammer", + }, + [7844] = { + ["D"] = "Three different tribes of trolls inhabit the Hinterlands, $N. That is about as far as the similarities between the tribes extends: We are all trolls and we live in the Hinterlands.$B$BThe Vilebranch - aptly named - are a depraved lot; feeding on other trolls and humanoids.$B$BIf Zul\'jin were here, he would have destroyed the whole lot of them with a flick of his wrist - alas, Zul\'jin has not yet returned and we are left to our own devices.$B$BIt is up to you to destroy the filth of the region!", + ["O"] = "Mystic Yayo\'jin at Revantusk Village in the Hinterlands wants you to kill 30 Vilebranch Scalpers and 15 Vilebranch Soothsayers. Return to her when this task is complete.$B$BYayo\'jin indicated that these trolls could be found near the Shaol\'watha and Agol\'watha temples in the north by northeastern region of the Hinterlands.", + ["T"] = "Cannibalistic Cousins", + }, + [7845] = { + ["D"] = "My mate was taken by Vilebranch savages in a bold midnight raid on our village. Our spies have told me that he is still alive and being held prisoner atop Jintha\'alor. The Vile Priestess Hexx is said to be preparing him for a sacrifice to the faceless blood God, Hakkar.$B$BYou must save him, $N! Our village could not stand a loss this great.", + ["O"] = "Primal Torntusk at Raventusk Village in the Hinterlands wants you to rescue her mate, Elder Torntusk, from Jintha\'alor.$B$BYou have been told that he is being held prisoner atop Jintha\'alor, the Vilebranch capital city located in the southern region of the Hinterlands.", + ["T"] = "Kidnapped Elder Torntusk!", + }, + [7846] = { + ["D"] = "The key to my bindings is held by Hitah\'ya the Keeper. She is in the nearby cave. Be careful, $c, for she is guarded well.$B$BKill her and bring the key back to loosen my shackles. Only then will I be free to return home.", + ["O"] = "Elder Torntusk at Jintha\'alor wants you to kill Hitah\'ya the Keeper to get the Shackle Key to his bindings. Return to Elder Torn\'tusk when you have recovered the key.", + ["T"] = "Recover the Key!", + }, + [7847] = { + ["D"] = "Return to my mate, Primal Torntusk at Revantusk Village. Tell her that I am coming home! She is sure to reward you.", + ["O"] = "Elder Torntusk at Jintha\'alor wants you to return to Primal Torntusk at Revantusk Village with news of his rescue.", + ["T"] = "Return to Primal Torntusk", + }, + [7848] = { + ["D"] = "Rifts stir, tear, and collapse all around us, $r. Not two paces from where I stand is a tear leading through the depths of Blackrock Mountain, into the maw of the Firelord.$B$BSurprised? Pity... The mortal races cannot comprehend that which they cannot see, touch, or feel.$B$BI assure you, the portal is there and access is possible.$B$BI\'ve piqued your interest? Attunement is simple. Venture into Blackrock Depths and retrieve a core fragment. Return it to me and I shall attune your essence with the portal.", + ["O"] = "Venture to the Molten Core entry portal in Blackrock Depths and recover a Core Fragment. Return to Lothos Riftwaker in Blackrock Mountain when you have recovered the Core Fragment.", + ["T"] = "Attunement to the Core", + }, + [7849] = { + ["D"] = "Like many in our village, I too have lost a loved one to the wilds. Alas, it was my twin brother Malkhor - taken in the same raid as Torntusk\'s mate by the Vilebranch.$B$BSadly, he was not fated to live and was given a swift, brutal execution; his remains fed to the oozes and wolves of the Vilebranch.$B$BIt is too late to save his life but not too late to save his soul. Recover his remains, $N.", + ["O"] = "Huntsman Markhor at Revantusk Village in the Hinterlands wants you to recover his twin brother\'s remains. Find and return Huntsman Malkhor\'s Skull and Huntsman Malkhor\'s Bones to Huntsman Markhor.$B$BMarkhor mentioned that his brother\'s remains were fed to the oozes and wolves of the Vilebranch. He also mentioned that there is a refuse pit filled with oozes in Jintha\'alor as well as a wolf den. Both of these places are near the top of the temple.", + ["T"] = "Separation Anxiety", + }, + [7850] = { + ["D"] = "The Vilebranch fight with supernatural ferocity. This is due to the foul magical weavings of the Vile Priestess Hexx.$B$BThroughout Jintha\'alor you will find dark vessels of tainted blood. The vessels radiate the foul magic of the faceless blood God, empowering the Vilebranch and also driving them to madness.$B$BSteal those vessels and return them to me so that I may remove the taint and ultimately loosen the grip of the blood God.", + ["O"] = "Primal Torntusk at Revantusk Village in the Hinterlands wants you to recover 10 Vessels of Tainted Blood from Jintha\'alor. Return to Primal Torntusk when this task is complete.", + ["T"] = "Dark Vessels", + }, + [7861] = { + ["D"] = "By order of Primal Torntusk, Vile Priestess Hexx and her minions are to be brought to justice!$B$BA grand reward is offered for any that slay the Vile Priestess Hexx and all of her Aman\'zasi elite guard.", + ["O"] = "You have been ordered to slay Vile Priestess Hexx and 20 Vilebranch Aman\'zasi Guards. See Primal Torntusk at Revantusk Village in the Hinterlands once this task is complete.$B$BVile Priestess Hexx and the Aman\'zasi Guards can be found atop Jintha\'alor in the Hinterlands.", + ["T"] = "Wanted: Vile Priestess Hexx and Her Minions", + }, + [7862] = { + ["D"] = "With the loss of Guard Captain Malkhor, the position of Guard Captain of Revantusk is once again open. If you are interested in becoming Captain of the Guard for Revantusk, complete the following tasks and submit your application to Primal Torntusk:$B$BExterminate Vilebranch Berserkers.$B$BExterminate Vilebranch Shadow Hunters.$B$BExterminate Vilebranch Blood Drinkers.$B$BExterminate Vilebranch Soul Eaters.", + ["O"] = "You have been tasked with the decimation of 20 Vilebranch Berserkers, 20 Vilebranch Shadow Hunters, 20 Vilebranch Blood Drinkers, and 20 Vilebranch Soul Eaters.$B$BShould you complete this task, return to Primal Torntusk at Revantusk Village in the Hinterlands.", + ["T"] = "Job Opening: Guard Captain of Revantusk Village", + }, + [7863] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Sentinel Basic Care Package", + }, + [7864] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Sentinel Standard Care Package", + }, + [7865] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Sentinel Advanced Care Package", + }, + [7866] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Outrider Basic Care Package", + }, + [7867] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Outrider Standard Care Package", + }, + [7868] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Outrider Advanced Care Package", + }, + [7871] = { + ["D"] = "Beyond this tunnel you will find a field of strife and turmoil, young $c. The Horde continue to decimate our sacred forest, cutting down the evergreen foliage to power their machines of war.$B$BEnter Warsong Gulch and defend Silverwing Hold. Push back the invading Horde forces!$B$BDo this, and earn a Mark of Honor. Bring it to me, $N, and I shall reward you.", + ["O"] = "Enter Warsong Gulch and defeat the Horde, obtain a Warsong Gulch Mark of Honor, and return to Sentinel Farsong at the Silverwing Grove.", + ["T"] = "Vanquish the Invaders!", + }, + [7872] = { + ["D"] = "Beyond this tunnel you will find a field of strife and turmoil, young $c. The Horde continue to decimate our sacred forest, cutting down the evergreen foliage to power their machines of war.$B$BEnter Warsong Gulch and defend Silverwing Hold. Push back the invading Horde forces!$B$BDo this, and earn a Mark of Honor. Bring it to me, $N, and I shall reward you.", + ["O"] = "Enter Warsong Gulch and defeat the Horde, obtain a Warsong Gulch Mark of Honor, and return to Sentinel Farsong at the Silverwing Grove.", + ["T"] = "Vanquish the Invaders!", + }, + [7873] = { + ["D"] = "Beyond this tunnel you will find a field of strife and turmoil, young $c. The Horde continue to decimate our sacred forest, cutting down the evergreen foliage to power their machines of war.$B$BEnter Warsong Gulch and defend Silverwing Hold. Push back the invading Horde forces!$B$BDo this, and earn a Mark of Honor. Bring it to me, $N, and I shall reward you.", + ["O"] = "Enter Warsong Gulch and defeat the Horde, obtain a Warsong Gulch Mark of Honor, and return to Sentinel Farsong at the Silverwing Grove.", + ["T"] = "Vanquish the Invaders!", + }, + [7874] = { + ["D"] = "The wilds of the Ashenvale forest will succumb to the might of the Horde, $r. Nothing the Silverwing say or do can stop our sovereign imperative. Kalimdor belongs to the Horde. How dare they attempt to prevent us from harvesting what is rightfully ours!$B$BLet the pride swell in your chest as you cut down their weak attempts at slowing our progress. Destroy the Silverwing Sentinels, and earn a Mark of Honor. Return to me with such a Mark, $N, and you will be rewarded.", + ["O"] = "Enter Warsong Gulch and defeat the Alliance, gain a Warsong Gulch Mark of Honor, and bring it to Captain Shatterskull at the Mor\'shan Base Camp.", + ["T"] = "Quell the Silverwing Usurpers", + }, + [7875] = { + ["D"] = "The wilds of the Ashenvale forest will succumb to the might of the Horde, $r. Nothing the Silverwing say or do can stop our sovereign imperative. Kalimdor belongs to the Horde. How dare they attempt to prevent us from harvesting what is rightfully ours!$B$BLet the pride swell in your chest as you cut down their weak attempts at slowing our progress. Destroy the Silverwing Sentinels, and earn a Warsong mark of honor. Return to me with such a mark, $N, and you will be rewarded.$B", + ["O"] = "Enter Warsong Gulch and defeat the Alliance, gain a Warsong Mark of Honor, and bring it to Captain Shatterskull at the Mor\'shan Base Camp.", + ["T"] = "Quell the Silverwing Usurpers", + }, + [7876] = { + ["D"] = "The wilds of the Ashenvale forest will succumb to the might of the Horde, $r. Nothing the Silverwing say or do can stop our sovereign imperative. Kalimdor belongs to the Horde. How dare they attempt to prevent us from harvesting what is rightfully ours!$B$BLet the pride swell in your chest as you cut down their weak attempts at slowing our progress. Destroy the Silverwing Sentinels, and earn a Mark of Honor. Return to me with such a Mark, $N, and you will be rewarded.", + ["O"] = "Enter Warsong Gulch and defeat the Alliance, gain a Warsong Gulch Mark of Honor, and bring it to Captain Shatterskull at the Mor\'shan Base Camp.", + ["T"] = "Quell the Silverwing Usurpers", + }, + [7877] = { + ["D"] = "In the library, Athenaeum, you will find an ancient chest hidden beneath the stairway. Take from it that which you desire.", + ["O"] = "Return to the Athenaeum and find the Treasure of the Shen\'dralar. Claim your reward!", + ["T"] = "The Treasure of the Shen\'dralar", + }, + [7881] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Carnival Boots", + }, + [7882] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Carnival Jerkins", + }, + [7883] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The World\'s Largest Gnome!", + }, + [7884] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Crocolisk Boy and the Bearded Murloc", + }, + [7885] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Armor Kits", + }, + [7886] = { + ["D"] = "You have proven your value to our efforts in Warsong Gulch. Continue to aid the cause and bring me more talismans of merit. Do this, and you will earn even more of our trust.", + ["O"] = "You obtained a Silverwing Talisman of Merit for your last task, talk to me again, and you gain your reward.", + ["T"] = "Talismans of Merit", + }, + [7887] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Talismans of Merit", + }, + [7888] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Talismans of Merit", + }, + [7889] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Coarse Weightstone", + }, + [7890] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Heavy Grinding Stone", + }, + [7891] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Green Iron Bracers", + }, + [7892] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Big Black Mace", + }, + [7893] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Rituals of Strength", + }, + [7894] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Copper Modulator", + }, + [7895] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Whirring Bronze Gizmo", + }, + [7896] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Green Fireworks", + }, + [7897] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Mechanical Repair Kits", + }, + [7898] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Thorium Widget", + }, + [7899] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Small Furry Paws", + }, + [7900] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Torn Bear Pelts", + }, + [7901] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Soft Bushy Tails", + }, + [7902] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Vibrant Plumes", + }, + [7903] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Evil Bat Eyes", + }, + [7904] = { + ["D"] = "", + ["O"] = "", + ["T"] = "", + }, + [7905] = { + ["D"] = "The Darkmoon Faire is coming! Be sure to experience all the wonders and excitement of it when it comes to town!$B$BIf you act right now, you can redeem this voucher for free prize tickets! Just hand your voucher to Gelvas Grimgate located inside the carnival.$B$BRight now, the Faire is outside Goldshire, in the Elwynn Forest. Don\'t miss out! Go today!", + ["O"] = "Deliver the Free Ticket Voucher to Gelvas Grimgate, located inside the Darkmoon Faire carnival.", + ["T"] = "The Darkmoon Faire", + }, + [7907] = { + ["D"] = "Now that you have gathered all of the Beast cards together into a deck, a ninth card mysteriously appears with the same backing as the first eight. On this card is inscribed, \"Return these cards to the Darkmoon Faire and be rewarded.\" You have heard that this faire alternately stops at Mulgore and Goldshire every few months, so you will have to wait until they are here next.", + ["O"] = "Return the Beast Deck to the Darkmoon Faire when it comes to town.", + ["T"] = "Darkmoon Beast Deck", + }, + [7908] = { + ["D"] = "There must be more to being a master of the arena than this! Perhaps the Pirate who runs the event at Gurubashi will know!", + ["O"] = "Speak with Short John Mithril in the Stranglethorn Arena.", + ["T"] = "Arena Master", + }, + [7921] = { + ["D"] = "You have proven your value to our efforts in Warsong Gulch. Continue to aid the cause and bring me more talismans of merit. Do this, and you will earn even more of our trust.", + ["O"] = "You obtained a Silverwing Talisman of Merit for your last task, talk to me again, and you gain your reward.", + ["T"] = "Talismans of Merit", + }, + [7922] = { + ["D"] = "You have proven your value to our efforts in Warsong Gulch. Continue to rage against the Silverwing Sentinels! Bring me more marks of honor!", + ["O"] = "You obtained a Warsong Mark of Honor for your last task, talk to me again, and you gain your reward.", + ["T"] = "Mark of Honor", + }, + [7923] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Mark of Honor", + }, + [7924] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Mark of Honor", + }, + [7925] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Mark of Honor", + }, + [7926] = { + ["D"] = "The Darkmoon Faire is coming! Be sure to experience all the wonders and excitement of it when it comes to town!$B$BIf you act right now, you can redeem this voucher for free prize tickets! Just hand your voucher to Gelvas Grimgate located inside the carnival.$B$BRight now, the Faire is just outside Thunder Bluff, in Mulgore. Don\'t miss out! Go today!", + ["O"] = "Deliver the Free Ticket Voucher to Gelvas Grimgate, located inside the Darkmoon Faire carnival.", + ["T"] = "The Darkmoon Faire", + }, + [7927] = { + ["D"] = "Now that you have gathered all of the Portal cards together into a deck, a ninth card mysteriously appears with the same backing as the first eight. On this card is inscribed, \"Return these cards to the Darkmoon Faire and be rewarded.\" You have heard that this faire alternately stops at Mulgore and Goldshire every few months, so you will have to wait until they are here next.", + ["O"] = "Return the Portals Deck to the Darkmoon Faire when it comes to town.", + ["T"] = "Darkmoon Portals Deck", + }, + [7928] = { + ["D"] = "Now that you have gathered all of the Warlord cards together into a deck, a ninth card mysteriously appears with the same backing as the first eight. On this card is inscribed, \"Return these cards to the Darkmoon Faire and be rewarded.\" You have heard that this faire alternately stops at Mulgore and Goldshire every few months, so you will have to wait until they are here next.", + ["O"] = "Return the Warlords Deck to the Darkmoon Faire when it comes to town.", + ["T"] = "Darkmoon Warlords Deck", + }, + [7929] = { + ["D"] = "Now that you have gathered all of the Elemental cards together into a deck, a ninth card mysteriously appears with the same backing as the first eight. On this card is inscribed, \"Return these cards to the Darkmoon Faire and be rewarded.\" You have heard that this faire alternately stops at Mulgore and Goldshire every few months, so you will have to wait until they are here next.", + ["O"] = "Return the Elementals Deck to the Darkmoon Faire when it comes to town.", + ["T"] = "Darkmoon Elementals Deck", + }, + [7930] = { + ["D"] = "", + ["O"] = "", + ["T"] = "5 Tickets - Darkmoon Flower", + }, + [7931] = { + ["D"] = "", + ["O"] = "", + ["T"] = "5 Tickets - Minor Darkmoon Prize", + }, + [7932] = { + ["D"] = "", + ["O"] = "", + ["T"] = "12 Tickets - Lesser Darkmoon Prize", + }, + [7933] = { + ["D"] = "", + ["O"] = "", + ["T"] = "40 Tickets - Greater Darkmoon Prize", + }, + [7934] = { + ["D"] = "", + ["O"] = "", + ["T"] = "50 Tickets - Darkmoon Storage Box", + }, + [7935] = { + ["D"] = "", + ["O"] = "", + ["T"] = "10 Tickets - Last Month\'s Mutton", + }, + [7936] = { + ["D"] = "", + ["O"] = "", + ["T"] = "50 Tickets - Last Year\'s Mutton", + }, + [7937] = { + ["D"] = "\"Your fortune awaits you in Eastvale.\"$B$BThe fortune Sayge handed you feels slightly warm to the touch. Grasping it firmly, you see an image of the Eastvale Logging Camp in Elwynn Forest. Focusing closer in on the image, you see a haystack that sits next to a stable.", + ["O"] = "Travel to the Eastvale Logging Camp in Elwynn Forest and seek out your fortune.", + ["T"] = "Your Fortune Awaits You...", + }, + [7938] = { + ["D"] = "\"Your fortune awaits you inside the Deadmines.\"$B$BThe fortune Sayge handed you feels slightly warm to the touch. Grasping it firmly, you see an image of the Deadmines inside Westfall\'s ruined hamlet of Moonbrook. Focusing closer in on the image, you wind about twisty passages until you reach a shimmering portal... one that leads into the heart of the mines itself. Stepping through it, a strange chest appears out from nowhere.", + ["O"] = "Travel to the Deadmines in Westfall and seek out your fortune.", + ["T"] = "Your Fortune Awaits You...", + }, + [7939] = { + ["D"] = "", + ["O"] = "", + ["T"] = "More Dense Grinding Stones", + }, + [7940] = { + ["D"] = "", + ["O"] = "", + ["T"] = "1200 Tickets - Orb of the Darkmoon", + }, + [7941] = { + ["D"] = "", + ["O"] = "", + ["T"] = "More Armor Kits", + }, + [7942] = { + ["D"] = "", + ["O"] = "", + ["T"] = "More Thorium Widgets", + }, + [7943] = { + ["D"] = "", + ["O"] = "", + ["T"] = "More Bat Eyes", + }, + [7944] = { + ["D"] = "\"Your fortune awaits you inside Wailing Caverns.\"$B$BThe fortune Sayge handed you feels slightly warm to the touch. Grasping it firmly, you see an image of a cave to the southwest of the Crossroads in the Barrens. Focusing closer in on the image, you wind about twisty passages until you reach a shimmering portal... one that leads into the heart of the caverns itself. Stepping through it, a strange chest appears out from nowhere.", + ["O"] = "Travel to the Wailing Caverns in the Barrens and seek out your fortune.", + ["T"] = "Your Fortune Awaits You...", + }, + [7945] = { + ["D"] = "\"Your fortune awaits you outside Palemane Rock.\"$B$BThe fortune Sayge handed you feels slightly warm to the touch. Grasping it firmly, you see an image of the Palemane Rock of Mulgore. Focusing closer in on the image, you see a tree stump that sits close to the cave entrance.", + ["O"] = "Travel to Palemane Rock in Mulgore and seek out your fortune.", + ["T"] = "Your Fortune Awaits You...", + }, + [7946] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Spawn of Jubjub", + }, + [7961] = { + ["D"] = "These rabbits are breeding uncontrollably. Something must be done!$b$bHelp us $n, you\'re our only hope.", + ["O"] = "Kill 5 rabbits and return to Jon LeCraft by the forge on Designer Island.", + ["T"] = "Waskily Wabbits!", + }, + [7962] = { + ["D"] = "I want LeCrafty rabbit pelts. Get me some from LeCrafty Rabbits.$b$bThis is important!", + ["O"] = "Bring 3 LeCrafty Rabbit Pelts to Jon LeCraft.", + ["T"] = "Wabbit Pelts", + }, + [7981] = { + ["D"] = "", + ["O"] = "", + ["T"] = "1200 Tickets - Amulet of the Darkmoon", + }, + [8001] = { + ["D"] = "I am Corpus and you are a wretched speciman, YES! You will do nicely, It has become overcrowded in this town and it is getting harder to find a empty grave. Can you help me get rid of some of the filthy zombies investing my graves, 5 should be enough to guarantee me a resting space.", + ["O"] = "Kill 5 Wretched Zombies", + ["T"] = "Zombie Cleansing", + }, + [8021] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Redeem iCoke Prize Voucher", + }, + [8022] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Redeem iCoke Prize Voucher", + }, + [8023] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Redeem iCoke Prize Voucher", + }, + [8024] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Redeem iCoke Prize Voucher", + }, + [8025] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Redeem iCoke Prize Voucher", + }, + [8026] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Redeem iCoke Prize Voucher", + }, + [8041] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Strength of Mount Mugamba", + }, + [8042] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Strength of Mount Mugamba", + }, + [8043] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Strength of Mount Mugamba", + }, + [8044] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Rage of Mugamba", + }, + [8045] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Heathen\'s Brand", + }, + [8046] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Heathen\'s Brand", + }, + [8047] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Heathen\'s Brand", + }, + [8048] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Hero\'s Brand", + }, + [8049] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Eye of Zuldazar", + }, + [8050] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Eye of Zuldazar", + }, + [8051] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Eye of Zuldazar", + }, + [8052] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The All-Seeing Eye of Zuldazar", + }, + [8053] = { + ["D"] = "You are a heathen. Heathens have a place in the tribe. Heathens are freethinkers of Zandalar. Freethinkers do not fear oppression. Freethinkers die for what they believe in. We know you would die for what you believe in. This earns our acknowledgement. This earns you a chance to prove yourself further.$B$BWe must have the Paragons of Power. Go to Zul\'Gurub. Kill the minions of Hakkar. Return when you have what I seek. Claim the first battle gear of a Zandalar freethinker.$B$BGo.", + ["O"] = "Bring Jin\'rokh the Breaker Primal Hakkari Bindings. You must also have a reputation equal to or greater than Friendly with the Zandalar Tribe.$B$BJin\'rokh the Breaker is located on Yojamba Isle, Stranglethorn Vale.", + ["T"] = "Paragons of Power: The Freethinker\'s Armguards", + }, + [8054] = { + ["D"] = "Your beliefs are alien to us, heathen. Ancient Zandalar were once branded as heretics. This was when the Gurubashi Empire was strong. Heathens dared to challenge the priest of Hakkar. Heathens then were hunted and killed as vermin. Those heathens never wavered in their fight against the Blood God. We honor the price they paid. They are the freethinkers.$B$BDestroy the minions of Hakkar in Zul\'Gurub. Bring me the Paragons of Power I seek. Success will be greatly rewarded.$B$BGo.", + ["O"] = "Bring Jin\'rokh the Breaker a Primal Hakkari Shawl. You must also have a reputation equal to or greater than Honored with the Zandalar Tribe.$B$BJin\'rokh the Breaker is located on Yojamba Isle, Stranglethorn Vale.", + ["T"] = "Paragons of Power: The Freethinker\'s Belt", + }, + [8055] = { + ["D"] = "Battle gear gives you power in the tribe. The freethinkers are honored in this way. They are zealots. They imbue their breastplates with powerful mojo. If their beliefs falter in the face of the enemy, their breastplate will not.$B$BYou must be revered amongst us to possess such a breastplate. Go to Zul\'Gurub. Take the Paragons of Power I need. Take the Paragons most painfully from the fools inside. Bring them to me. Prove your worth as a freethinker once and for all.", + ["O"] = "Bring Jin\'rokh the Breaker a Primal Hakkari Tabard. You must also have a reputation equal to or greater than Revered with the Zandalar Tribe.$B$BJin\'rokh the Breaker is located on Yojamba Isle, Stranglethorn Vale.", + ["T"] = "Paragons of Power: The Freethinker\'s Breastplate", + }, + [8056] = { + ["D"] = "The augurs of our tribe are revered for their gifts of the divine sight, ya mon. They ain\'t a witch doctor; they spend their time castin\' bones or readin\' the leaves for insight - not hexin\' people. As a shaman, you already know somethin\' about the power of augury; we Zandalar prize the insight they give to the tribe.$B$BBring me an offerin\' of the Paragons of Power from inside Zul\'Gurub and prove your worth to us. Do this for us, and I\'ll give ya some bracers that our augurs prize above all others! ", + ["O"] = "Bring Maywiki of Zuldazar a Primal Hakkari Armsplint. You must also have a reputation equal to or greater than Friendly with the Zandalar Tribe.$B$BMaywiki of Zuldazar is located on Yojamba Isle, Stranglethorn Vale.", + ["T"] = "Paragons of Power: The Augur\'s Bracers", + }, + [8057] = { + ["D"] = "A haruspex is a key member of our tribe; you\'ll be wise to listen to their portents. By communion with animals and givin\' them up to the spirits when needed, they give us divine guidance. In times past, the haruspex\'s insight and wisdom gave us an edge in the wars against the splintered tribes of the Gurubashi.$B$BBring me an offerin\' of the Paragons of Power from inside Zul\'Gurub and prove your worth to us. Do this, and I\'ll give ya bracers that any haruspex of the Zandalar would want.", + ["O"] = "Bring Maywiki of Zuldazar a Primal Hakkari Stanchion. You must also have a reputation equal to or greater than Friendly with the Zandalar Tribe.$B$BMaywiki of Zuldazar is located on Yojamba Isle, Stranglethorn Vale.", + ["T"] = "Paragons of Power: The Haruspex\'s Bracers", + }, + [8058] = { + ["D"] = "Vengeance is power. The Zandalar vindicator is such power. The tribe has many enemies. The vindicator exacts retribution on them. No crime against us is unpunished. The vindicator delivers this punishment. Our enemies fear our vengeance. They should. They forever will.$B$BBecome one of our vindicators. Seek the Paragons of Power inside Zul\'Gurub. Slay the minions of Hakkar and claim vengeance in the tribe\'s name. You will be rewarded.", + ["O"] = "Bring Jin\'rokh the Breaker a Primal Hakkari Armsplint. You must also have a reputation equal to or greater than Friendly with the Zandalar Tribe.$B$BJin\'rokh the Breaker is located on Yojamba Isle, Stranglethorn Vale.", + ["T"] = "Paragons of Power: The Vindicator\'s Armguards", + }, + [8059] = { + ["D"] = "Warlocks tread dangerous ground in dealing with demons, but our demoniacs take this one step further. Through an ancient and arcane ritual, they allow a demon to enter their being. Rather than let it possess them though, they enslave the demon from the inside, absorbing the power of the beast for their own command. It is a feat few are ever able to master.$B$BFor you to learn of the power of the demoniac, I must have Paragons of Power from Zul\'Gurub. Go there and retrieve that which we seek.", + ["O"] = "Bring Al\'tabim the All-Seeing a Primal Hakkari Stanchion. You must also have a reputation equal to or greater than Friendly with the Zandalar Tribe.$B$BAl\'tabim the All-Seeing is located on Yojamba Isle, Stranglethorn Vale.", + ["T"] = "Paragons of Power: The Demoniac\'s Wraps", + }, + [8060] = { + ["D"] = "Mages in our tribe are known as illusionists. They employ powerful mojo in their incantations, often befuddling and confusing the tribe\'s enemies!$B$B$B$BIt is quite the sight to see a powerful illusionist at work, bringing our enemies to their knees from their own madness!$B$BFor you to know the way of our illusionists, go to Zul\'Gurub and bring back to me selected Paragons of Power. For this, I will give you arm wraps our illusionists use to weave their spells.", + ["O"] = "Bring Al\'tabim the All-Seeing Primal Hakkari Bindings. You must also have a reputation equal to or greater than Friendly with the Zandalar Tribe.$B$BAl\'tabim the All-Seeing is located on Yojamba Isle, Stranglethorn Vale.", + ["T"] = "Paragons of Power: The Illusionist\'s Wraps", + }, + [8061] = { + ["D"] = "We Zandalar invest power in those who speak with the authority of divinity. Our priests are more than just healers - they are our confessors. Evil comes both from outside threats - such as Hakkar - and from within the tribe. Our confessors act as the judges amongst us, preserving us from the same evil that devoured the Gurubashi from inside itself.$B$BGo to Zul\'Gurub and bring back the Paragons of Power from the Gurubashi. Learn what it means to be the confessor, and preserve us from evil.", + ["O"] = "Bring Al\'tabim the All-Seeing a Primal Hakkari Stanchion. You must also have a reputation equal to or greater than Friendly with the Zandalar Tribe.$B$BAl\'tabim the All-Seeing is located on Yojamba Isle, Stranglethorn Vale.", + ["T"] = "Paragons of Power: The Confessor\'s Wraps", + }, + [8062] = { + ["D"] = "In the dark times after the fall of the Gurubashi Empire, Zandalar predators used their prowess to provide sustenance for the tribe. Hunters claim to be much like our tribe\'s predators - to seek the hunt is to embody the essence of the predator, yes. Your hunt in Zul\'Gurub, however, will show us how you truly rate amongst our finest predators.$B$BBring to me a sampling of the Paragons of Power from within Zul\'Gurub. Do so, and you\'ll take first steps in becoming the penultimate predator.", + ["O"] = "Bring the following Paragons of Power from Zul\'Gurub to Falthir the Sightless: A Primal Hakkari Bindings. You must also have a reputation equal to or greater than Friendly with the Zandalar Tribe.$B$BFalthir the Sightless is located on Yojamba Isle, Stranglethorn Vale.", + ["T"] = "Paragons of Power: The Predator\'s Bracers", + }, + [8063] = { + ["D"] = "The madcaps of Zandalar are similar to rogues, but above all else they embrace madness... chaos... the unpredictability of existence. A terror to behold on the battlefield, they sowed the seeds of confusion and mayhem amongst our enemies in the savage times after the tribes splintered. We would not be here today without them.$B$BBring to me the Paragons of Power from Zul\'Gurub that I seek, and I will grant you the first of the madcap\'s prized armors. Embrace the madness!", + ["O"] = "Bring Falthir the Sightless a Primal Hakkari Armsplint. You must also have a reputation equal to or greater than Friendly with the Zandalar Tribe.$B$BFalthir the Sightless is located on Yojamba Isle, Stranglethorn Vale.", + ["T"] = "Paragons of Power: The Madcap\'s Bracers", + }, + [8064] = { + ["D"] = "We Zandalar know not of druidic ways; nature is to be shaped by our need, not the other way around. Still, a haruspex is the one of us most in tune with nature, and rightly so. To give up the ghost of a beastie is to know what it is to be one of them. That is the real power of nature.$B$BBring me an offerin\' of the Paragons of Power from inside Zul\'Gurub, proving yourself to us. Do this, and I\'ll give ya a powerful item - a belt used by many of the Zandalar\'s haruspices.$B$BStrong mojo, ya mon!", + ["O"] = "Bring Maywiki of Zuldazar a Primal Hakkari Sash. Maywiki of Zuldazar is located on Yojamba Isle, Stranglethorn Vale. You must also be Honored with Zandalar.", + ["T"] = "Paragons of Power: The Haruspex\'s Belt", + }, + [8065] = { + ["D"] = "The ultimate symbol of a haruspex\'s power is what they wear, $N. Of these, the tunic symbolizes the connection between themselves and the divine wisdom they seek. It often weaves parts of the beasties they sacrifice into the tunic; this reminds them of the connection they have to their gifts.$B$BBring me an offerin\' of the Paragons of Power from inside Zul\'Gurub and prove your worth to us. Do this, and a tunic seeping with the true power of a haruspex is yours.", + ["O"] = "Bring Maywiki of Zuldazar a Primal Hakkari Tabard. Maywiki of Zuldazar is located on Yojamba Isle, Stranglethorn Vale. You must also be Revered with Zandalar.", + ["T"] = "Paragons of Power: The Haruspex\'s Tunic", + }, + [8066] = { + ["D"] = "A predator knows how to stalk their prey, but a successful one knows how to strike at it once they have closed ranks. You must master both to have any chance of success in Zul\'Gurub... and any chance of being like the Zandalar predators.$B$BBring me choice parts of the Paragons of Power from within Zul\'Gurub. My reward will be the power that the trinkets yield, while yours will be the Zandalar predator\'s belt - equipment well worth the trade.", + ["O"] = "Bring the following Paragons of Power from Zul\'Gurub to Falthir the Sightless: 5 Razzashi Coins, 5 Hakkari Coins, 2 Green Hakkari Bijous, and a Primal Hakkari Shawl. You must also have a reputation equal to or greater than Honored with the Zandalar Tribe.$B$BFalthir the Sightless is located on Yojamba Isle, Stranglethorn Vale.", + ["T"] = "Paragons of Power: The Predator\'s Belt", + }, + [8067] = { + ["D"] = "We Zandalar prize what we wear as a symbol of accomplishment. You don\'t need to be able to see what one wears to be able to sense what emanates from it - power transcends sight. The garments of the Zandalar predator are like this, and most cherished by them is the mantle they wear. It helps to obfuscate them from view... and to make their presence known when they wish it.$B$BThe Paragons of Power await your retrieval in Zul\'Gurub. Bring me what I seek, and the predator\'s mantle shall be yours.", + ["O"] = "Bring the following Paragons of Power from Zul\'Gurub to Falthir the Sightless: 5 Zulian Coins, 5 Gurubashi Coins, 2 Silver Hakkari Bijous, and a Primal Hakkari Aegis. You must also have a reputation equal to or greater than Revered with the Zandalar Tribe.$B$BFalthir the Sightless is located on Yojamba Isle, Stranglethorn Vale.", + ["T"] = "Paragons of Power: The Predator\'s Mantle", + }, + [8068] = { + ["D"] = "Magic is a raw, primal force to be shaped by those strong enough to do it. Mojo is our extension of this power; one such potent manipulation of it is in the form of illusion. How can one truly hope to win against a foe that is not even really there? We Zandalar know the power of this, and as such illusionists hold a honored place within the tribe.$B$BTake the needed Paragons of Power from Zul\'Gurub - for this, honor from the tribe and a powerful mantle used by our best illusionists will be yours!", + ["O"] = "Bring the following Paragons of Power from Zul\'Gurub to Al\'tabim the All-Seeing: 5 Gurubashi Coins, 5 Razzashi Coins, 2 Orange Hakkari Bijous, and a Primal Hakkari Shawl. You must also have a reputation equal to or greater than Honored with the Zandalar Tribe.$B$BAl\'tabim the All-Seeing is located on Yojamba Isle, Stranglethorn Vale.", + ["T"] = "Paragons of Power: The Illusionist\'s Mantle", + }, + [8069] = { + ["D"] = "The tribe acknowledges station and power through what we wear. Our vestments are made from the finest of materials, and interwoven with the mojo we use to make us powerful. Illusionists are no exception; their robes are said to embody the essence of illusion in their look. Legend states that their ancient robes never looked the same twice.$B$BI will give you an illusionist\'s robe, $N... but earn your place of reverence among the tribe first! Bring me the Paragons of Power from Zul\'Gurub!", + ["O"] = "Bring the following Paragons of Power from Zul\'Gurub to Al\'tabim the All-Seeing: 5 Sandfury Coins, 5 Zulian Coins, 2 Silver Hakkari Bijous, and a Primal Hakkari Kossack. You must also have a reputation equal to or greater than Revered with the Zandalar Tribe.$B$BAl\'tabim the All-Seeing is located on Yojamba Isle, Stranglethorn Vale.", + ["T"] = "Paragons of Power: The Illusionist\'s Robes", + }, + [8070] = { + ["D"] = "Shortly after the fall of the Gurubashi, we Zandalar almost succumbed to a final defeat from evil within our own tribe. It was then that the confessors amongst us arose, preserving the tribe by banishing out those who would destroy their own kind. They not only keep us in tune with the spirits, but they also preserve the flesh.$B$BGo forth into Zul\'Gurub and witness first hand the depravity of Hakkar and the Gurubashi. Wrest the Paragons of Power that we seek from them; success will be rewarded!", + ["O"] = "Bring the following Paragons of Power from Zul\'Gurub to Al\'tabim the All-Seeing: 5 Hakkari Coins, 5 Zulian Coins, 2 Orange Hakkari Bijous, and a Primal Hakkari Sash. You must also have a reputation equal to or greater than Honored with the Zandalar Tribe.$B$BAl\'tabim the All-Seeing is located on Yojamba Isle, Stranglethorn Vale.", + ["T"] = "Paragons of Power: The Confessor\'s Bindings", + }, + [8071] = { + ["D"] = "The confessors of the Zandalar all wear a distinctive mantle, marking them as the preservers of the tribe. These mantles are woven with powerful mojo that aids them in judging those who would threaten our tribe. As a priest, you too must spend your time judging those worthy and not; such a mantle would definitely be a blessing to you.$B$BIn exchange for fighting Hakkar\'s minions in Zul\'Gurub and bringing me the Paragons of Power I seek, I will give you a mantle worthy of our finest confessors.", + ["O"] = "Bring the following Paragons of Power from Zul\'Gurub to Al\'tabim the All-Seeing: 5 Razzashi Coins, 5 Witherbark Coins, 2 Bronze Hakkari Bijous, and a Primal Hakkari Aegis. You must also have a reputation equal to or greater than Revered with the Zandalar Tribe.$B$BAl\'tabim the All-Seeing is located on Yojamba Isle, Stranglethorn Vale.", + ["T"] = "Paragons of Power: The Confessor\'s Mantle", + }, + [8072] = { + ["D"] = "One of Zandalar\'s legendary madcaps was Khar\'vaxal the Cracked. Legend states that when facing the enemies of the tribe for the first time, Kar\'xavan used his mantle specifically woven with \"the weave of madness\". His form was shrouded not only by the mantle, but also with the blinding speed of his twin daggers. Madcaps today cherish their mantle as a sign of their place in the tribe.$B$BBring to me the Paragons of Power I seek, and such a mantle will be yours to weave madness unto your own enemies.", + ["O"] = "Bring the following Paragons of Power from Zul\'Gurub to Falthir the Sightless: 5 Zulian Coins, 5 Razzashi Coins, 2 Purple Hakkari Bijous, and a Primal Hakkari Girdle. You must also have a reputation equal to or greater than Honored with the Zandalar Tribe.$B$BFalthir the Sightless is located on Yojamba Isle, Stranglethorn Vale.", + ["T"] = "Paragons of Power: The Madcap\'s Mantle", + }, + [8073] = { + ["D"] = "My eyes failed me long ago, but I do not miss them. Even in a tribe such as ours - where one\'s vestments convey station and purpose - the most potent of garb exudes power that simple eyes cannot see. The prized tunic of the Zandalar madcap is no exception, exuding the raw power of chaos and madness that they are able to channel.$B$BThe Paragons of Power I need lie in Zul\'Gurub; bring me what I seek, and I will reward you with your own legendary tunic... one befitting a weaver of madness.", + ["O"] = "Bring the following Paragons of Power from Zul\'Gurub to Falthir the Sightless: 5 Hakkari Coins, 5 Skullsplitter Coins, 2 Gold Hakkari Bijous, and a Primal Hakkari Aegis. You must also have a reputation equal to or greater than Revered with the Zandalar Tribe.$B$BFalthir the Sightless is located on Yojamba Isle, Stranglethorn Vale.", + ["T"] = "Paragons of Power: The Madcap\'s Tunic", + }, + [8074] = { + ["D"] = "Augurs know the mojo of the elements, mon. They use it as a means to guide the tribe to glory. In the dark days after the Gurubashi Empire ripped itself up, our augurs led us to our safe haven in the South Seas. They\'ve also led us back here to the Vale, right back to the heart of evil brewin\' in Zul\'Gurub.$B$BBring me an offerin\' of the Paragons of Power from inside Zul\'Gurub and prove your worth to us. Do it and I\'ll give ya a belt that our augurs use - one with powerful mojo inside it!", + ["O"] = "Bring the following Paragons of Power from Zul\'Gurub to Maywiki of Zuldazar: 5 Skullsplitter Coins, 5 Gurubashi Coins, 2 Purple Hakkari Bijous, and a Primal Hakkari Girdle. You must also have a reputation equal to or greater than Honored with the Zandalar Tribe.$B$BMaywiki of Zuldazar is located on Yojamba Isle, Stranglethorn Vale.", + ["T"] = "Paragons of Power: The Augur\'s Belt", + }, + [8075] = { + ["D"] = "The augurs of the Zandalar all wear a distinctive chest piece called a hauberk. It\'s fitted with the finest of silks and cloths, interwoven with strong chain. It\'s a symbol of not only their divinity, but also of their authority, mon. It\'s never wise to cross one whose life is devoted to speakin\' with the spirits...$B$BBring me an offerin\' of the Paragons of Power from inside Zul\'Gurub and prove your worth to us. Do it and I\'ll give ya one of the finest hauberks our augurs would ever hope to wear!", + ["O"] = "Bring the following Paragons of Power from Zul\'Gurub to Maywiki of Zuldazar: 5 Witherbark Coins, 5 Hakkari Coins, 2 Gold Hakkari Bijous, and a Primal Hakkari Tabard. You must also have a reputation equal to or greater than Revered with the Zandalar Tribe.$B$BMaywiki of Zuldazar is located on Yojamba Isle, Stranglethorn Vale.", + ["T"] = "Paragons of Power: The Augur\'s Hauberk", + }, + [8076] = { + ["D"] = "The demoniac seeks to embody power outright, not just possess it. More than one of our demoniacs has lost a fight with a demon; with our enemies threatening us - especially in Zul\'Gurub - the power that a demoniac is able to unleash on our foes is worth the sacrifice. Our survival depends on crushing those who would destroy us; the fall of the Gurubashi Empire taught us this.$B$BTravel to Zul\'Gurub and gain the Paragons of Power we need. Do this, and a valuable demoniac item shall be yours.", + ["O"] = "Bring the following Paragons of Power from Zul\'Gurub to Al\'tabim the All-Seeing: 5 Witherbark Coins, 5 Hakkari Coins, 2 Orange Hakkari Bijous, and a Primal Hakkari Sash. You must also have a reputation equal to or greater than Honored with the Zandalar Tribe.$B$BAl\'tabim the All-Seeing is located on Yojamba Isle, Stranglethorn Vale.", + ["T"] = "Paragons of Power: The Demoniac\'s Mantle", + }, + [8077] = { + ["D"] = "The ultimate symbol of power amongst the tribe is the garb we wear in battle. A demoniac\'s robes have fused fine runecloth and devastatingly powerful mojo into a single fabric. The visage of the robe is said to instill fear into the minds of all who see it... especially the demons that the demoniac will eventually dominate.$B$BFrom Zul\'Gurub, you must bring me a very specific set of the Paragons of Power. It will be difficult... but your success will assure you of acquiring a robe for yourself.", + ["O"] = "Bring the following Paragons of Power from Zul\'Gurub to Al\'tabim the All-Seeing: 5 Skullsplitter Coins, 5 Bloodscalp Coins, 2 Silver Hakkari Bijous, and a Primal Hakkari Kossack. You must also have a reputation equal to or greater than Revered with the Zandalar Tribe.$B$BAl\'tabim the All-Seeing is located on Yojamba Isle, Stranglethorn Vale.", + ["T"] = "Paragons of Power: The Demoniac\'s Robes", + }, + [8078] = { + ["D"] = "The ultimate vengeance waits within Zul\'Gurub. Hakkar must not rise again. Hakkar destroyed the Gurubashi Empire from within. No sacrifice was enough. The trolls are a shadow of former glories. I know this is because of Hakkar.$B$BBecome the vindicator you were meant to be. Wreak havoc on the minions of evil. Zul\'Gurub must taste Zandalar vengeance. Bring me proof in the Paragons of Power. You will receive the vindicator\'s belt. You will receive real power.$B$BGo.", + ["O"] = "Bring the following Paragons of Power from Zul\'Gurub to Jin\'rokh the Breaker: 5 Vilebranch Coins, 5 Skullsplitter Coins, 2 Green Hakkari Bijous, and a Primal Hakkari Girdle. You must also have a reputation equal to or greater than Honored with the Zandalar Tribe.$B$BJin\'rokh the Breaker is located on Yojamba Isle, Stranglethorn Vale.", + ["T"] = "Paragons of Power: The Vindicator\'s Belt", + }, + [8079] = { + ["D"] = "The vindicator\'s symbol of power is the breastplate. It is forged with powerful mojo. It is trusted only to those we revere. It is the Zandalar symbol of vengeance.$B$BTo become a vindicator is to become vengeance. Take the Paragons of Power we need from Zul\'Gurub. Bring them to us. We will take the mojo stolen from us. We will make the minions of Hakkar pay. We will reward you with the vindicator\'s breastplate.$B$BGo. Be our vengeance, $N.", + ["O"] = "Bring the following Paragons of Power from Zul\'Gurub to Jin\'rokh the Breaker: 5 Bloodscalp Coins, 5 Sandfury Coins, 2 Bronze Hakkari Bijous, and a Primal Hakkari Kossack. You must also have a reputation equal to or greater than Revered with the Zandalar Tribe.$B$BJin\'rokh the Breaker is located on Yojamba Isle, Stranglethorn Vale.", + ["T"] = "Paragons of Power: The Vindicator\'s Breastplate", + }, + [8080] = { + ["D"] = "War must be fought with soldiers, any soldier will tell you. They\'ll also say that a battle fought with poor gear or on an empty stomach is lost before it starts!$B$BThat is why Arathi Basin is important. There are key areas in the basin that hold essential resources. Metals, weapons, food, lumber - all are needed, and all can be gained there.$B$BThat is what I want from you, $N. Enter Arathi Basin, win the battle by holding more bases than the enemy, and return to me with a Mark of Honor.", + ["O"] = "Win the battle for Arathi Basin, get an Arathi Basin Mark of Honor, and return it to Sergeant Maclear at Refuge Pointe.", + ["T"] = "Arathi Basin Mark of Honor!", + }, + [8081] = { + ["D"] = "War must be fought with soldiers, any soldier will tell you. They\'ll also say that a battle fought with poor gear or on an empty stomach is lost before it starts!$B$BThat is why Arathi Basin is important. There are key areas in the basin that hold essential resources. Metals, weapons, food, lumber - all are needed, and all can be gained there.$B$BThat is what I want from you, $N. Enter Arathi Basin, win the battle by holding more bases than the enemy, and return to me with a crate of resources.", + ["O"] = "Win the battle for Arathi Basin, get an Arathi Resource Crate, and return it to Sergeant Maclear at Refuge Pointe.", + ["T"] = "More Resource Crates", + }, + [8101] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Pebble of Kajaro", + }, + [8102] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Pebble of Kajaro", + }, + [8103] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Pebble of Kajaro", + }, + [8104] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Jewel of Kajaro", + }, + [8105] = { + ["D"] = "$N, the battle for Arathi Basin is a battle for resources and territory. Key points in the area must be held and operated in order to supply our forces with much needed raw materials and supplies. I charge you to assault the points farthest from our Arathi Basin base.$B$BAssault the farm, the mine, the lumber mill and the blacksmith when they are controlled by the enemy. Find the enemy\'s banner and rip it from its flag post!$B$BWhen you have done this to all four points, return to me.", + ["O"] = "Assault the mine, the lumber mill, the blacksmith and the farm, then return to Field Marshal Oslight in Refuge Pointe.", + ["T"] = "The Battle for Arathi Basin!", + }, + [8106] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Kezan\'s Taint", + }, + [8107] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Kezan\'s Taint", + }, + [8108] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Kezan\'s Taint", + }, + [8109] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Kezan\'s Unstoppable Taint", + }, + [8110] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Enchanted South Seas Kelp", + }, + [8111] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Enchanted South Seas Kelp", + }, + [8112] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Enchanted South Seas Kelp", + }, + [8113] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Pristine Enchanted South Seas Kelp", + }, + [8114] = { + ["D"] = "$N, you have taken the battle of Arathi Basin to our enemies and earned great honors in that field of battle. You have shown us your worth as a $c, and you have shown our enemies that we will not submit to their villainy!$B$BBecause of your proven value to us, I have a difficult task for you. I want you to take and hold at least four of the bases in Arathi Basin. If you can do that, then we will not only secure critical resources, we will show the Horde our dominance!$B$BGo, $N, and good fortune. ", + ["O"] = "Enter Arathi Basin, capture and control four bases at the same time, and then return to Field Marshal Oslight at Refuge Pointe.", + ["T"] = "Control Four Bases", + }, + [8115] = { + ["D"] = "$N, battling for the resources of Arathi Basin is a bloody undertaking. Your services to the League of Arathor are are needed as they are appreciated.$B$BAnd we have one more task for you.$B$BThe League wishes to make one strong push against the Defilers\' occupation of Arathi Basin. We want them driven out of every strategic point on the battlefield!$B$BIt will not be easy, but if anyone can get it done, it is you.", + ["O"] = "Control 5 bases in Arathi Basin at the same time, then return to Field Marshal Oslight at Refuge Pointe.", + ["T"] = "Control Five Bases", + }, + [8116] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Vision of Voodress", + }, + [8117] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Vision of Voodress", + }, + [8118] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Vision of Voodress", + }, + [8119] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Unmarred Vision of Voodress", + }, + [8120] = { + ["D"] = "As you no doubt have heard, the League of Arathor is sending large numbers of troops into Arathi Basin. Eager for food and supplies, these Alliance fools are intent to take and control the rich resources there. We must show them that Arathi will never again be a home for humans!$B$BGo to Arathi Basin and assault the mine, the lumber mill, the blacksmith and the stables. Pull down the enemies\' banners, declaring those territories for the Horde.$B$BGo, $N. Report back to me when this task is complete.", + ["O"] = "Assault the Arathi Basin mine, lumber mill, blacksmith and stable, and then return to Deathmaster Dwire in Hammerfall.", + ["T"] = "The Battle for Arathi Basin!", + }, + [8121] = { + ["D"] = "$N, as the battles over Arathi Basin rage, news of your actions have reached many ears. You are highly regarded among us, which gives me confidence that you will accomplish the mission I now have for you.$B$BIt is time to send a message to the League of Arathor. We must show them that their holdings in Arathi Basin are tenuous and quickly lost. We will show them this by holding, all at once, four strategic points in Arathi Basin.$B$BSucceed in this, $N, and earn great respect among the Defilers.", + ["O"] = "Hold four bases at the same time in Arathi Basin, and then return to Deathmaster Dwire in Hammerfall.", + ["T"] = "Take Four Bases", + }, + [8122] = { + ["D"] = "It is difficult to see, so deep we are in the conflict, but our spies report a weakening in the League of Arathor\'s resolve. We must use this window and strike a brutal blow against them! Return to Arathi Basin and throw yourself against our foes. Curse them and kill them and control all five strategic bases! Send their soldiers screaming and bleeding from the front lines, with stories of your cruelty on their mewling lips.$B$BDo this, and score a great victory for the Defilers.", + ["O"] = "Hold five bases in Arathi Basin at the same time, then return to Deathmaster Dwire in Hammerfall.", + ["T"] = "Take Five Bases", + }, + [8123] = { + ["D"] = "The League of Arathor is sparing no expense in their move to retake Arathi. They, and all the races of the Alliance, now stream to this distant region, intent on expanding their hold from Refuge Pointe. We must stop them, and the best means to stop them is to take their supplies.$B$BYou can help us, $N. Enter Arathi Basin, known for its rich mines, fertile land and skilled craftsman. Capture and control every base you can, win the battle, and return to me with the resources you gain.", + ["O"] = "Win the battle for Arathi Basin, get an Arathi Resource Crate, and return it to Deathstalker Mortis at Hammerfall.", + ["T"] = "Cut Arathor Supply Lines", + }, + [8124] = { + ["D"] = "The League of Arathor is sparing no expense in their move to retake Arathi. They, and all the races of the Alliance, now stream to this distant region, intent on expanding their hold from Refuge Pointe. We must stop them, and the best means to stop them is to take their supplies.$B$BYou can help us, $N. Enter Arathi Basin, known for its rich mines, fertile land and skilled craftsman. Capture and control every base you can, win the battle, and return to me with the resources you gain.", + ["O"] = "Win the battle for Arathi Basin, get an Arathi Resource Crate, and return it to Deathstalker Mortis at Hammerfall.", + ["T"] = "More Resource Crates", + }, + [8141] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Zandalarian Shadow Talisman", + }, + [8142] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Zandalarian Shadow Talisman", + }, + [8143] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Zandalarian Shadow Talisman", + }, + [8144] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Zandalarian Shadow Mastery Talisman", + }, + [8145] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Maelstrom\'s Tendril", + }, + [8146] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Maelstrom\'s Tendril", + }, + [8147] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Maelstrom\'s Tendril", + }, + [8148] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Maelstrom\'s Wrath", + }, + [8149] = { + ["D"] = "During the Harvest Festival of Azeroth, we give thanks to heroes for the sacrifices - in some cases ultimate sacrifices - they have given on our behalf. The Alliance acknowledges many heroes, but none weave a more tragic tale than that of Uther Lightbringer.$B$BHelp us honor Uther by taking this offering to his tomb in the Western Plaguelands. Place it at his statue, and then return to me. I\'ll only be here through the end of the festival, so waste no time in giving Uther his tribute.", + ["O"] = "Travel to Uther\'s Tomb in Western Plaguelands and use Uther\'s Tribute at his statue, and then return to Wagner Hammerstrike outside Ironforge before the Harvest Festival is over.", + ["T"] = "Honoring a Hero", + }, + [8150] = { + ["D"] = "During the Harvest Festival of Azeroth, we give thanks to heroes for the sacrifices - in some cases ultimate sacrifices - they have given on our behalf. The Horde acknowledges many heroes, but none exemplify strength and sacrifice more than Grom Hellscream.$B$BHelp us honor Grom by taking this offering to his monument in the Demon Fall Canyon of Ashenvale. Place it at the base, and then return to me. I\'ll only be here through the end of the festival, so waste no time in giving Grom his tribute.", + ["O"] = "Travel to Grom\'s Monument in the Demon Fall Canyon of Ashenvale and use Grom\'s Tribute at the base of the monument. Return to Javnir Nashak outside Orgrimmar before the Harvest Festival is over.", + ["T"] = "Honoring a Hero", + }, + [8151] = { + ["D"] = "Ogtinc of Azshara has sent out a call for seasoned hunters such as yourself. He is a furbolg hunter who has left his tribe to aid the Cenarion Circle. His teachings are meant to enrich the wisdom of others who share his craft, and guide them toward maintaining a balance. You would do well to speak with him.$b$bOgtinc resides atop the cliffs of Azshara, northeast from the Ruins of Eldarath.", + ["O"] = "Speak to Ogtinc in Azshara.", + ["T"] = "The Hunter\'s Charm", + }, + [8153] = { + ["D"] = "The courser wears the mightiest antlers in the known lands. Such antlers are used to defend the courser, goring an attacker and often damaging the points. Perfect, natural antlers are the sign of an animal spirit with supreme confidence.$b$bTo hold such antlers will bestow the same confidence in you.$b$bHunt the mosshoof courser, find the perfect antlers and bring them to me.", + ["O"] = "Bring a pair of Perfect Courser Antlers to Ogtinc in Azshara. Ogtinc resides atop the cliffs northeast of the Ruins of Eldarath.", + ["T"] = "Courser Antlers", + }, + [8154] = { + ["D"] = "War must be fought with soldiers, any soldier will tell you. They\'ll also say that a battle fought with poor gear or on an empty stomach is lost before it starts!$B$BThat is why Arathi Basin is important. There are key areas in the basin that hold essential resources. Metals, weapons, food, lumber - all are needed, and all can be gained there.$B$BThat is what I want from you, $N. Enter Arathi Basin, win the battle by holding more bases than the enemy, and return to me with a crate of resources.", + ["O"] = "Win the battle for Arathi Basin, get an Arathi Resource Crate, and return it to Sergeant Maclear at Refuge Pointe.", + ["T"] = "Arathi Basin Resources!", + }, + [8155] = { + ["D"] = "War must be fought with soldiers, any soldier will tell you. They\'ll also say that a battle fought with poor gear or on an empty stomach is lost before it starts!$B$BThat is why Arathi Basin is important. There are key areas in the basin that hold essential resources. Metals, weapons, food, lumber - all are needed, and all can be gained there.$B$BThat is what I want from you, $N. Enter Arathi Basin, win the battle by holding more bases than the enemy, and return to me with a crate of resources.", + ["O"] = "Win the battle for Arathi Basin, get an Arathi Resource Crate, and return it to Sergeant Maclear at Refuge Pointe.", + ["T"] = "Arathi Basin Resources!", + }, + [8156] = { + ["D"] = "War must be fought with soldiers, any soldier will tell you. They\'ll also say that a battle fought with poor gear or on an empty stomach is lost before it starts!$B$BThat is why Arathi Basin is important. There are key areas in the basin that hold essential resources. Metals, weapons, food, lumber - all are needed, and all can be gained there.$B$BThat is what I want from you, $N. Enter Arathi Basin, win the battle by holding more bases than the enemy, and return to me with a crate of resources.", + ["O"] = "Win the battle for Arathi Basin, get an Arathi Resource Crate, and return it to Sergeant Maclear at Refuge Pointe.", + ["T"] = "Arathi Basin Resources!", + }, + [8157] = { + ["D"] = "War must be fought with soldiers, any soldier will tell you. They\'ll also say that a battle fought with poor gear or on an empty stomach is lost before it starts!$B$BThat is why Arathi Basin is important. There are key areas in the basin that hold essential resources. Metals, weapons, food, lumber - all are needed, and all can be gained there.$B$BThat is what I want from you, $N. Enter Arathi Basin, win the battle by holding more bases than the enemy, and return to me with a crate of resources.", + ["O"] = "Win the battle for Arathi Basin, get an Arathi Resource Crate, and return it to Sergeant Maclear at Refuge Pointe.", + ["T"] = "More Resource Crates", + }, + [8158] = { + ["D"] = "War must be fought with soldiers, any soldier will tell you. They\'ll also say that a battle fought with poor gear or on an empty stomach is lost before it starts!$B$BThat is why Arathi Basin is important. There are key areas in the basin that hold essential resources. Metals, weapons, food, lumber - all are needed, and all can be gained there.$B$BThat is what I want from you, $N. Enter Arathi Basin, win the battle by holding more bases than the enemy, and return to me with a crate of resources.", + ["O"] = "Win the battle for Arathi Basin, get an Arathi Resource Crate, and return it to Sergeant Maclear at Refuge Pointe.", + ["T"] = "More Resource Crates", + }, + [8159] = { + ["D"] = "War must be fought with soldiers, any soldier will tell you. They\'ll also say that a battle fought with poor gear or on an empty stomach is lost before it starts!$B$BThat is why Arathi Basin is important. There are key areas in the basin that hold essential resources. Metals, weapons, food, lumber - all are needed, and all can be gained there.$B$BThat is what I want from you, $N. Enter Arathi Basin, win the battle by holding more bases than the enemy, and return to me with a crate of resources.", + ["O"] = "Win the battle for Arathi Basin, get an Arathi Resource Crate, and return it to Sergeant Maclear at Refuge Pointe.", + ["T"] = "More Resource Crates", + }, + [8160] = { + ["D"] = "The League of Arathor is sparing no expense in their move to retake Arathi. They, and all the races of the Alliance, now stream to this distant region, intent on expanding their hold from Refuge Pointe. We must stop them, and the best means to stop them is to take their supplies.$B$BYou can help us, $N. Enter Arathi Basin, known for its rich mines, fertile land and skilled craftsman. Capture and control every base you can, win the battle, and return to me with the resources you gain.", + ["O"] = "Win the battle for Arathi Basin, get an Arathi Resource Crate, and return it to Deathstalker Mortis at Hammerfall.", + ["T"] = "Cut Arathor Supply Lines", + }, + [8161] = { + ["D"] = "The League of Arathor is sparing no expense in their move to retake Arathi. They, and all the races of the Alliance, now stream to this distant region, intent on expanding their hold from Refuge Pointe. We must stop them, and the best means to stop them is to take their supplies.$B$BYou can help us, $N. Enter Arathi Basin, known for its rich mines, fertile land and skilled craftsman. Capture and control every base you can, win the battle, and return to me with the resources you gain.", + ["O"] = "Win the battle for Arathi Basin, get an Arathi Resource Crate, and return it to Deathstalker Mortis at Hammerfall.", + ["T"] = "Cut Arathor Supply Lines", + }, + [8162] = { + ["D"] = "The League of Arathor is sparing no expense in their move to retake Arathi. They, and all the races of the Alliance, now stream to this distant region, intent on expanding their hold from Refuge Pointe. We must stop them, and the best means to stop them is to take their supplies.$B$BYou can help us, $N. Enter Arathi Basin, known for its rich mines, fertile land and skilled craftsman. Capture and control every base you can, win the battle, and return to me with the resources you gain.", + ["O"] = "Win the battle for Arathi Basin, get an Arathi Resource Crate, and return it to Deathstalker Mortis at Hammerfall.", + ["T"] = "Cut Arathor Supply Lines", + }, + [8163] = { + ["D"] = "The League of Arathor is sparing no expense in their move to retake Arathi. They, and all the races of the Alliance, now stream to this distant region, intent on expanding their hold from Refuge Pointe. We must stop them, and the best means to stop them is to take their supplies.$B$BYou can help us, $N. Enter Arathi Basin, known for its rich mines, fertile land and skilled craftsman. Capture and control every base you can, win the battle, and return to me with the resources you gain.", + ["O"] = "Win the battle for Arathi Basin, get an Arathi Resource Crate, and return it to Deathstalker Mortis at Hammerfall.", + ["T"] = "More Resource Crates", + }, + [8164] = { + ["D"] = "The League of Arathor is sparing no expense in their move to retake Arathi. They, and all the races of the Alliance, now stream to this distant region, intent on expanding their hold from Refuge Pointe. We must stop them, and the best means to stop them is to take their supplies.$B$BYou can help us, $N. Enter Arathi Basin, known for its rich mines, fertile land and skilled craftsman. Capture and control every base you can, win the battle, and return to me with the resources you gain.", + ["O"] = "Win the battle for Arathi Basin, get an Arathi Resource Crate, and return it to Deathstalker Mortis at Hammerfall.", + ["T"] = "More Resource Crates", + }, + [8165] = { + ["D"] = "The League of Arathor is sparing no expense in their move to retake Arathi. They, and all the races of the Alliance, now stream to this distant region, intent on expanding their hold from Refuge Pointe. We must stop them, and the best means to stop them is to take their supplies.$B$BYou can help us, $N. Enter Arathi Basin, known for its rich mines, fertile land and skilled craftsman. Capture and control every base you can, win the battle, and return to me with the resources you gain.", + ["O"] = "Win the battle for Arathi Basin, get an Arathi Resource Crate, and return it to Deathstalker Mortis at Hammerfall.", + ["T"] = "More Resource Crates", + }, + [8166] = { + ["D"] = "$N, the battle for Arathi Basin is a battle for resources and territory. Key points in the area must be held and operated in order to supply our forces with much needed raw materials and supplies. I charge you to assault the points farthest from our Arathi Basin base.$B$BAssault the farm, the mine, the lumber mill and the blacksmith when they are controlled by the enemy. Find the enemy\'s banner and rip it from its flag post!$B$BWhen you have done this to all four points, return to me.", + ["O"] = "Assault the mine, the lumber mill, the blacksmith and the farm, then return to Field Marshal Oslight in Refuge Pointe.", + ["T"] = "The Battle for Arathi Basin!", + }, + [8167] = { + ["D"] = "$N, the battle for Arathi Basin is a battle for resources and territory. Key points in the area must be held and operated in order to supply our forces with much needed raw materials and supplies. I charge you to assault the points farthest from our Arathi Basin base.$B$BAssault the farm, the mine, the lumber mill and the blacksmith when they are controlled by the enemy. Find the enemy\'s banner and rip it from its flag post!$B$BWhen you have done this to all four points, return to me.", + ["O"] = "Assault the mine, the lumber mill, the blacksmith and the farm, then return to Field Marshal Oslight in Refuge Pointe.", + ["T"] = "The Battle for Arathi Basin!", + }, + [8168] = { + ["D"] = "$N, the battle for Arathi Basin is a battle for resources and territory. Key points in the area must be held and operated in order to supply our forces with much needed raw materials and supplies. I charge you to assault the points farthest from our Arathi Basin base.$B$BAssault the farm, the mine, the lumber mill and the blacksmith when they are controlled by the enemy. Find the enemy\'s banner and rip it from its flag post!$B$BWhen you have done this to all four points, return to me.", + ["O"] = "Assault the mine, the lumber mill, the blacksmith and the farm, then return to Field Marshal Oslight in Refuge Pointe.", + ["T"] = "The Battle for Arathi Basin!", + }, + [8169] = { + ["D"] = "As you no doubt have heard, the League of Arathor is sending large numbers of troops into Arathi Basin. Eager for food and supplies, these Alliance fools are intent to take and control the rich resources there. We must show them that Arathi will never again be a home for humans!$B$BGo to Arathi Basin and assault the mine, the lumber mill, the blacksmith and the stables. Pull down the enemies\' banners, declaring those territories for the Horde.$B$BGo, $N. Report back to me when this task is complete.", + ["O"] = "Assault the Arathi Basin mine, lumber mill, blacksmith and stable, and then return to Deathmaster Dwire in Hammerfall.", + ["T"] = "The Battle for Arathi Basin!", + }, + [8170] = { + ["D"] = "As you no doubt have heard, the League of Arathor is sending large numbers of troops into Arathi Basin. Eager for food and supplies, these Alliance fools are intent to take and control the rich resources there. We must show them that Arathi will never again be a home for humans!$B$BGo to Arathi Basin and assault the mine, the lumber mill, the blacksmith and the stables. Pull down the enemies\' banners, declaring those territories for the Horde.$B$BGo, $N. Report back to me when this task is complete.", + ["O"] = "Assault the Arathi Basin mine, lumber mill, blacksmith and stable, and then return to Deathmaster Dwire in Hammerfall.", + ["T"] = "The Battle for Arathi Basin!", + }, + [8171] = { + ["D"] = "As you no doubt have heard, the League of Arathor is sending large numbers of troops into Arathi Basin. Eager for food and supplies, these Alliance fools are intent to take and control the rich resources there. We must show them that Arathi will never again be a home for humans!$B$BGo to Arathi Basin and assault the mine, the lumber mill, the blacksmith and the stables. Pull down the enemies\' banners, declaring those territories for the Horde.$B$BGo, $N. Report back to me when this task is complete.", + ["O"] = "Assault the Arathi Basin mine, lumber mill, blacksmith and stable, and then return to Deathmaster Dwire in Hammerfall.", + ["T"] = "The Battle for Arathi Basin!", + }, + [8181] = { + ["D"] = "My delvings into the Mosh\'aru Tablets bear grim news, $N. Hakkar\'s true form, the god himself, can be born again through the very egg into which you captured him. Yeh\'kinya told you it was to contain his evil, but it is to recreate it! The troll has led you astray!$B$BGo to Yeh\'kinya and demand the egg from him. Pray that it is not too late to stop Hakkar\'s return!", + ["O"] = "Speak with Yeh\'kinya.", + ["T"] = "Confront Yeh\'kinya", + }, + [8182] = { + ["D"] = "$N, our worst fears have come. Legend speaks of the Soulflayer ruling the ancient troll world through evil and terror, and his power was absolute. If he cannot be stopped now, then his new reign may spread across all of Azeroth!$B$BThere is a contingent of Zandalarian trolls who may help us stem this tide of darkness. They have camped on Yojamba Isle, off the coast of Stranglethorn, west of the ruins of Zul\'Kunda. Speak with their leader, Molthor, and pray he knows how to defeat Hakkar.", + ["O"] = "Speak with Molthor in Stranglethorn.", + ["T"] = "The Hand of Rastakhan", + }, + [8183] = { + ["D"] = "The Heart of Hakkar burns from within. Although the Soulflayer is defeated, the kernel of his power yet remains in this cursed organ.", + ["O"] = "Bring the Heart of Hakkar to Molthor on Yojamba Isle.", + ["T"] = "The Heart of Hakkar", + }, + [8184] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Presence of Might", + }, + [8185] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Syncretist\'s Sigil", + }, + [8186] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Death\'s Embrace", + }, + [8187] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Falcon\'s Call", + }, + [8188] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Vodouisant\'s Vigilant Embrace", + }, + [8189] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Presence of Sight", + }, + [8190] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Hoodoo Hex", + }, + [8191] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Prophetic Aura", + }, + [8192] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Animist\'s Caress", + }, + [8193] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Master Angler", + }, + [8194] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Apprentice Angler", + }, + [8195] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Zulian, Razzashi, and Hakkari Coins", + }, + [8196] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Essence Mangoes", + }, + [8201] = { + ["D"] = "It is true. Hakkar now dwells in Zul\'Gurub, bathing in the power of our gods. Enthralled high priests now channel the energies of our most sacred divinities into the Soulflayer, who will soon have a strength beyond any being of Azeroth. He must be stopped!$B$BTake this sacred cord, and string through it the heads of the high priests responsible for channeling our gods\' energy, as well as the head of their leader, Jin\'do the Hexxer.$B$BWhen you have done this, return to me.", + ["O"] = "String 5 Channeler\'s Heads and the Hexxer\'s Head onto the Sacred Cord, then return the Collection of Troll Heads to Exzhal on Zandalar Isle.", + ["T"] = "A Collection of Heads", + }, + [8221] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Rare Fish - Keefer\'s Angelfish", + }, + [8222] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Glowing Scorpid Blood", + }, + [8223] = { + ["D"] = "", + ["O"] = "", + ["T"] = "More Glowing Scorpid Blood", + }, + [8224] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Rare Fish - Dezian Queenfish", + }, + [8225] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Rare Fish - Brownell\'s Blue Striped Racer", + }, + [8227] = { + ["D"] = "Amongst the shattered fishing lures and tackle is a rolled, silken measuring tape. Attached to the tape is a label that reads:$B$B\"Nat Pagle, Dustwallow Marsh.\"", + ["O"] = "Return Nat\'s Measuring Tape to Nat Pagle in Dustwallow Marsh.", + ["T"] = "Nat\'s Measuring Tape", + }, + [8228] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Could I get a Fishing Flier?", + }, + [8229] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Could I get a Fishing Flier?", + }, + [8231] = { + ["D"] = "The wavethrasher is an amphibious beast living only here in Azshara. They are powerful and resilient.$b$bThe tough, reflective scales from a wavethrasher mirror the strength of the hunter.$b$bTrack and hunt wavethrashers along the coast of Azshara, and bring me their scales.", + ["O"] = "Bring 6 Wavethrasher Scales to Ogtinc in Azshara. Ogtinc resides atop the cliffs northeast the Ruins of Eldarath.", + ["T"] = "Wavethrashing", + }, + [8232] = { + ["D"] = "Now I set you on a dangerous hunt to slay the green drake, Morphaz, and bring his tooth to me. Morphaz dwells deep in Temple of Atal\'Hakkar, the entrance to which lies in Swamp of Sorrows.$b$bIf you wish to defeat him, you must not go alone. This drake is an enemy of many -- seek others who wish to destroy him.$b$bThe drake\'s tooth represents the power a hunter will find in the company of others. Bring it to me and you will have learned much.", + ["O"] = "Bring the Tooth of Morphaz to Ogtinc in Azshara. Ogtinc resides atop the cliffs northeast the Ruins of Eldarath.", + ["T"] = "The Green Drake", + }, + [8233] = { + ["D"] = "Lord Jorach Ravenholdt has requested your presence. The matter is secret, and I cannot say any more.$b$bRavenholdt Manor is located in the Hillsbrad Foothills -- look for a path in the mountains northwest of Durnhold Keep.", + ["O"] = "Speak with Lord Jorach Ravenholdt in Ravenholdt Manor.", + ["T"] = "A Simple Request", + }, + [8234] = { + ["D"] = "First things first. What I\'ve lost is a small blue bag, the contents of which are a private matter.$b$bDon\'t bother going after the thieves, because they are already dead. What we do know is the fools couldn\'t get the bag open. so they sold it to some timbermaw shaman in Azshara as a holy relic. Clever.$b$bI need you to travel to Azshara and retrieve it from the shaman through subtlety... or force. Better luck with the first method, I\'d wager. Once acquired, take it to Archmage Xylem.", + ["O"] = "Retrieve the Sealed Azure Bag from the Timbermaw Shaman in Azshara. Then take the bag to Archmage Xylem, also found in Azshara.", + ["T"] = "Sealed Azure Bag", + }, + [8235] = { + ["D"] = "Lord Ravenholdt has asked a favor of us both. He wishes to remove the enchantment from this bag.$b$bUnfortunately, some of my books on the subject of dispelling were taken recently, only to be destroyed by savages. The remains of my books are still valuable to me.$b$bIf you can bring me enough of the encoded fragments, I can piece them back together. Your best chance is to kill forest oozes, since they have a tendency to pick up just about anything. You\'ll find them in northeast Azshara.", + ["O"] = "Bring 10 Encoded Fragments to Archmage Xylem in Azshara.", + ["T"] = "Encoded Fragments", + }, + [8236] = { + ["D"] = "It will take some time to decipher the fragments and remove the enchantment. When I am complete, I\'ll deliver the bag to Lord Ravenholdt personally.$b$bThere is still the matter of the key, said to be held by a green drake known as Morphaz. The drake has made its home deep in the Temple of Atal\'Hakkar, the entrance to which lies in the Swamp of Sorrows.$b$bGather your friends and venture to his lair. Lord Ravenholdt will await your return with the key.", + ["O"] = "Return the Azure Key to Lord Jorach Ravenholdt.", + ["T"] = "The Azure Key", + }, + [8237] = { + ["D"] = "", + ["O"] = "", + ["T"] = "REUSE", + }, + [8238] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Gurubashi, Vilebranch, and Witherbark Coins", + }, + [8239] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Sandfury, Skullsplitter, and Bloodscalp Coins", + }, + [8240] = { + ["D"] = "The destruction of the various Hakkari Bijous is of grave importance to us, so much so that we welcome outsiders of the tribe to do so for themselves!$B$BTake any one of the bijous that you find in Zul\'Gurub to the Altar of Zanza and destroy it. For this one time alone, I will give you an additional Honor Token from our tribe; this is above and beyond what you would normally receive.$B$BWitness for yourself the blessings of Zanza!", + ["O"] = "Destroy any one of the Hakkari Bijous found in Zul\'Gurub at the Altar of Zanza on Yojamba Isle. When done, speak with Vinchaxa nearby.", + ["T"] = "A Bijou for Zanza", + }, + [8241] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Restoring Fiery Flux Supplies via Iron", + }, + [8242] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Restoring Fiery Flux Supplies via Heavy Leather", + }, + [8243] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Zanza\'s Potent Potables", + }, + [8246] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Signets of the Zandalar", + }, + [8249] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Junkboxes Needed", + }, + [8250] = { + ["D"] = "Archmage Xylem has been asking around lately... for someone of your experience.$b$bIf you wish to seek him out, you can find him in Azshara. His tower is built high atop the cliffs, and the only way up is a teleport spell invoked by his arrogant servant, Sanath Lim-yo.$b$bSanath makes camp below his master\'s tower. To find him, travel to where Azshara\'s main road forks at the entrance to the Ruins of Eldarath. From that spot, head directly north until you reach the cliffs.", + ["O"] = "Seek out Sanath Lim-yo and gain passage to see Archmage Xylem.", + ["T"] = "Magecraft", + }, + [8251] = { + ["D"] = "The blood elves in Azshara have developed a method for pulverizing the magical items they acquire. This glittering dust they produce differs from the components normally acquired by a disenchantment spell.$b$bWhen I sent my apprentice to trade for the dust, he was killed without hesitation. For that, they must pay.$b$bThe time for talk is over, $N. Find the blood elves along the cliffs of Azshara and use more \"persuasive\" methods to acquire their glittering dust.", + ["O"] = "Bring 10 Glittering Dust to Archmage Xylem.", + ["T"] = "Magic Dust", + }, + [8252] = { + ["D"] = "Take a look around you. The ruins and beaches are overrun with spitelash. Recently, the wretched creatures have learned to recognize the rare components indigenous to Azshara.$b$bSpecifically, I speak of enchanted coral -- they are drawn to it by reasons unknown to me. Now there is little coral left in the bay, and it is vital to my research. I need you to separate some enchanted coral from the spitelash sirens and bring it to me.", + ["O"] = "Collect 6 Enchanted Coral and return them to Archmage Xylem.", + ["T"] = "The Siren\'s Coral", + }, + [8253] = { + ["D"] = "There is a green drake deep in the sunken temple of Atal\'Hakkar by the name of Morphaz.$b$bYears ago, he overwhelmed me in a bold ambush and consumed my apprentice whole. While the loss of an apprentice is not unknown to me, this particular one carried an arcane shard of unsurpassed size and quality.$b$bYou must gather powerful allies and delve into the temple. Destroy Morphaz and recover the arcane shard from his ageless stomach.", + ["O"] = "Retrieve the Arcane Shard from Morphaz and return to Archmage Xylem.", + ["T"] = "Destroy Morphaz", + }, + [8254] = { + ["D"] = "It is the way of the divine to help those in need. The how is insignificant -- only the why matters.$b$bThe Cenarion Circle has such a need. Speak with Ogtinc to lend aid to their plight. He resides atop the cliffs to the northeast of the Ruins of Eldarath in Azshara.", + ["O"] = "Seek out Ogtinc in Azshara.", + ["T"] = "Cenarion Aid", + }, + [8255] = { + ["D"] = "The mosshoof coursers of Azshara are magnificent animals who once lived in Felwood. They naturally resist disease and poison, and were unaffected by the corruption there. In their ancestral wisdom, they simply chose to leave that sickened place.$b$bIt saddens my heart, but I must ask you to hunt these mighty beasts for me. Gather four courser glands as the first ingredient for a restorative salve -- a salve we will use to heal Felwood.", + ["O"] = "Acquire 4 Healthy Courser Glands and bring them to Ogtinc in Azshara. Ogtinc resides atop the cliffs northeast the Ruins of Eldarath.", + ["T"] = "Of Coursers We Know", + }, + [8256] = { + ["D"] = "For this restorative salve, you must use a simple formula: one part poison, two parts cure. You have acquired one cure, now you must gather the poison.$b$bPowerful undead, such as the lingering highborne who wander the Ruins of Eldarath, are sometimes so infused with evil that it coalesces into a sickly greenish goo. To the living, this substance is known as ichor of undeath.$b$bDue to the potency of this vile element, I require only a single ichor.", + ["O"] = "Acquire an Ichor of Undeath for Ogtinc in Azshara. Ogtinc resides atop the cliffs northeast the Ruins of Eldarath.", + ["T"] = "The Ichor of Undeath", + }, + [8257] = { + ["D"] = "Now the last part, the second cure.$b$bThe green drake Morphaz is known to be immune to all forms of poison and disease -- many druids died to bring us this information. There is no doubt his blood is potent for our needs.$b$bA courier from the Cenarion Circle will take the parts you have already collected while you gather the last. Summon your allies and seek out the drake\'s lair in the sunken temple of Atal\'Hakkar. Bring his blood to Greta Mosshoof in Felwood.", + ["O"] = "Kill Morphaz in the sunken temple of Atal\'Hakkar, and return his blood to Greta Mosshoof in Felwood. The entrance to the sunken temple can be found in the Swamp of Sorrows.", + ["T"] = "Blood of Morphaz", + }, + [8258] = { + ["D"] = "Death Knight Darkreaver lords over the Great Ossuary in the Scholomance. He threatens to twist the spirit realm to do his own bidding, and he must be stopped! This is where the scryer you helped make comes into play.$B$BUse the divination scryer in the heart of the Great Ossuary\'s basement to call forth Darkreaver\'s spirit minions. Defeat the spirits and the death knight himself will appear. $N, bring me his head! Only his demise will reverse the damage done to the spirit realm!", + ["O"] = "Use the Divination Scryer in the heart of the Great Ossuary\'s basement in the Scholomance. Doing so will bring forth spirits you must fight. Defeating these spirits will summon forth Death Knight Darkreaver; defeat him.$B$BBring Darkreaver\'s Head to Sagorne Creststrider in the Valley of Wisdom, Orgrimmar.", + ["T"] = "The Darkreaver Menace", + }, + [8259] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A More Fitting Reward", + }, + [8260] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Arathor Basic Care Package", + }, + [8261] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Arathor Standard Care Package", + }, + [8262] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Arathor Advanced Care Package", + }, + [8263] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Defiler\'s Basic Care Package", + }, + [8264] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Defiler\'s Standard Care Package", + }, + [8265] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Defiler\'s Advanced Care Package", + }, + [8266] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Ribbons of Sacrifice", + }, + [8267] = { + ["D"] = "I understand that it can be difficult at times to come out on top in Warsong Gulch. Still, your effort on our behalf - even when victory is not achieved - is important.$B$BShould you complete one of the trials inside Warsong Gulch and not achieve victory, you will still receive a Ribbons of Sacrifice. Bring it to me so that the Outriders may reward you for acting on our behalf... even if you weren\'t able to win this time.", + ["O"] = "Bring the Ribbons of Sacrifice to Captain Shatterskull so that the Outriders may reward you for acting on our behalf.", + ["T"] = "Ribbons of Sacrifice", + }, + [8268] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Ribbons of Sacrifice", + }, + [8269] = { + ["D"] = "I understand that it can be difficult at times to come out on top in Warsong Gulch. Still, your effort on our behalf - even when victory is not achieved - is important.$B$BShould you complete one of the trials inside Warsong Gulch and not achieve victory, you will still receive a Ribbons of Sacrifice. Bring it to me so that the Sentinels may reward you for acting on our behalf... even if you weren\'t able to win this time.", + ["O"] = "Bring the Ribbons of Sacrifice to Sentinel Farsong so that the Sentinels may reward you for acting on our behalf.", + ["T"] = "Ribbons of Sacrifice", + }, + [8271] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Hero of the Stormpike", + }, + [8272] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Hero of the Frostwolf", + }, + [8273] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Oran\'s Gratitude", + }, + [8274] = { + ["D"] = "Got some time to spare? Kill me some Murlocs and I\'ll give you something shiny!", + ["O"] = "Kill 5 Murlocs and come back to the test character.", + ["T"] = "Test Kill Quest", + }, + [8275] = { + ["D"] = "Attention, heroes of the Alliance! The silithid menace has been left unchecked for too long. Unfettered by any real opposition, they\'ve been preparing all this time for a large-scale expansion. $B$BCenarion Circle forces are gathering in Silithus to take the fight to these wretched creatures and all able-bodied adventurers are hereby called to join us!$B$BDon\'t wait until it\'s too late! Aid us in the defense of Azeroth! Report to Windcaller Proudhorn at Cenarion Hold for specific instructions!", + ["O"] = "Talk to Windcaller Proudhorn at Cenarion Hold in Silithus.", + ["T"] = "Taking Back Silithus", + }, + [8276] = { + ["D"] = "Attention, champions of the Horde! There\'s a threat we\'ve left unchallenged for too long. Tremors in the earth near silithid hives all around Azeroth have alerted us to large movements in their numbers as they prepare for expansion.$B$BCenarion Circle forces are gathering in Silithus to take the fight to the silithid before it\'s too late! No more shall they defile our lands!$B$BAll able-bodied combatants are to report to Windcaller Proudhorn at Cenarion Hold! The silithid shall be vanquished!", + ["O"] = "Talk to Windcaller Proudhorn at Cenarion Hold in Silithus.", + ["T"] = "Taking Back Silithus", + }, + [8277] = { + ["D"] = "Beetix Ficklespragg at your service! My cousin Noggle makes a living gathering rare herbs for Cenarion Hold alchemists. Or used to, anyway. He came back from his last trip with a strong poison running though his veins.$B$BI\'ve managed to slow down the venom, but to fully neutralize it I need poison samples from whatever stung him.$B$BNoggle arrived from the north, so I\'d bet my shirt stonelash scorpids or sand skitterers did it. Bring me some stingers and fangs and I\'ll try to make an antidote for him.", + ["O"] = "Beetix Ficklespragg at Cenarion Hold in Silithus wants you to gather 8 Stonelash Scorpid Stingers and 8 Sand Skitterer Fangs. Return to her when you have completed the task.", + ["T"] = "Deadly Desert Venom", + }, + [8278] = { + ["D"] = "Blasted! The antidote didn\'t work. Noggle must\'ve been stung by one of the stronger creatures in the far south.$B$BI\'m going to need you to go there and get me some more samples, $N. The good news is that since their poison is stronger I won\'t require as many. The bad news is that there are more kinds of poisonous creatures crawling around the southern area so you\'ll have to draw from more sources.", + ["O"] = "Beetix Ficklespragg at Cenarion Hold in Silithus wants you to gather 3 Stonelash Pincer Stingers, 3 Stonelash Flayer Stingers and 3 Rock Stalker Fangs.", + ["T"] = "Noggle\'s Last Hope", + }, + [8279] = { + ["D"] = "The Twilight\'s Hammer are not kind to those that leave their ranks. They hunt me to this day like I\'m some sort of beast! Needless to say, an enemy of theirs is a friend of mine!$B$BTo decipher this Tablet I\'ll need the book used by their scribes to encode secret messages: the Twilight Lexicon. It\'s such an important tool that they keep its three chapters in different locations! The officers entrusted with the Lexicon are known as Twilight Keepers, look for them at the Twilight\'s Hammer camps.", + ["O"] = "Bring the three chapters of the Twilight Lexicon to Hermit Ortell in Silithus. ", + ["T"] = "The Twilight Lexicon", + }, + [8280] = { + ["D"] = "Cenarion Hold is a location of utmost strategic importance. I\'m convinced that while we hold it our victory over the silithid is guaranteed. Provided our influx supplies can be maintained, that is.$B$BDesert worms have proven to be more of a threat to our supply caravans than even the silithid themselves. Just this morning, a large shipment of morrowgrain was ravaged by a group of dredge strikers. I need you to thin their numbers to ensure our supplies aren\'t jeopardized.", + ["O"] = "Windcaller Proudhorn at Cenarion Hold in Silithus wants you to kill 15 Dredge Strikers.", + ["T"] = "Securing the Supply Lines", + }, + [8281] = { + ["D"] = "Your performance has been truly exemplary so far, $N. Our supply lines are not completely safe yet, however. In the absence of dredge strikers, their larger southern cousins will surely move in to take their place in the north.$B$BYou\'ll have to kill quite a few dredge crushers to keep them at bay, but we cannot leave the safety of our supply lines to chance. ", + ["O"] = "Windcaller Proudhorn at Cenarion Hold in Silithus wants you to slay 20 Dredge Crushers.", + ["T"] = "Stepping Up Security", + }, + [8282] = { + ["D"] = "Where am I? Where\'s my bag? *gasp* I must\'ve lost it while fleeing from Deathclasp, the giant scorpid. In my rush to escape I walked right into a nest of stonelash flayers.$B$BThe satchel I was carrying had all sorts of rare reagents in it. Without them, me and Beetix won\'t be able to make the potions that Cenarion Hold needs. I\'m too weak to get up yet, but I can make it worth your while if you bring back my reagents.$B$BI ran into Deathclasp in the southern mountain range, behind Bronzebeard\'s camp.", + ["O"] = "Retrieve Noggle\'s Satchel from the mountains in the south of Silithus and return it to him at Cenarion Hold.", + ["T"] = "Noggle\'s Lost Satchel", + }, + [8283] = { + ["D"] = "The terrible scorpid, Deathclasp, is believed to have retreated to the southern mountain range in the presence of increased silithid activity. She presents a great threat to patrols and expeditions in the southern regions. Individuals participating in her destruction will be remunerated handsomely. Inquire with Captain Vish Kozus, at the top of the Cenarion Hold Watchtower, regarding a reward.", + ["O"] = "Bring Deathclasp\'s Pincer to Vish Kozus, Captain of the Guard.", + ["T"] = "Wanted - Deathclasp, Terror of the Sands", + }, + [8284] = { + ["D"] = "A camp of Twilight\'s Hammer cultists once thrived northwest of here. If you were to venture there now, you\'d find the area swarming with elementals and nothing but scattered pieces of wood and canvas to mark the spot where the camp was.$B$BI\'ve recovered a few fragments of a clay tablet from the site, but I have too few of them to piece together anything useful. See if you can find the remaining tablet fragments so we can shed some light into the Twilight\'s Hammer presence here in Silithus.", + ["O"] = "Geologist Larksbane at Cenarion Hold in Silithus wants you to collect 8 Twilight Tablet Fragments.", + ["T"] = "The Twilight Mystery", + }, + [8285] = { + ["D"] = "There are rumors of a Twilight\'s Hammer member called Ortell having deserted his sect. Word has it he hid in the mountains south of Southwind Village, where he lives as a hermit. Perhaps you can enlist his help in deciphering the tablet.$B$BTake the restored tablet with you and seek out Ortell.", + ["O"] = "Take the restored tablet to Hermit Ortell in Silithus.", + ["T"] = "The Deserter", + }, + [8286] = { + ["D"] = "The embrace of death had all but overcome my being when he intervened. He breathed only once upon my maimed body and then waited patiently for the sands of time to cleanse my wounds.$B$B\"Forever you will remain if you must,\" he said, and with those words I was bound as a Watcher.$B$BLook now to the desert. The second war is upon us. You must seek out the resting place of the Bronze. Venture to the Caverns of Time and see if the master has returned. I must be sure before I am able to proceed.", + ["O"] = "Venture to the Caverns of Time in Tanaris and find Anachronos, Brood of Nozdormu.", + ["T"] = "What Tomorrow Brings", + }, + [8287] = { + ["D"] = "Ok, here we are... a pretty valuable chunk of information, I must say! I\'ve seen the Cenarion Circle forces arrive at Silithus. They plan to drive the Twilight\'s Hammer out, don\'t they? This will help. $B$BTake this parchment to their leader, Commander Mar\'alith. Soon the Twilight\'s Hammer will be vanquished and I will be outside their grasp for good!", + ["O"] = "Take the Decoded Tablet Parchment to Commander Mar\'alith.", + ["T"] = "A Terrible Purpose", + }, + [8288] = { + ["D"] = "There is no time to waste! A hero must be found! The task I give will require an army to complete but only one may rise from the throng of would be champions to take on the burden and responsibility of an ally of the Brood.$B$BWithin the lair of the Lord of Blackrock is a most cruel beast. The Broodlord Lashlayer guards the Halls of Strife, blocking the way into Nefarian\'s inner sanctum. Slay the foul aberration and return his head to me. Do this and you may begin the next step of your journey.", + ["O"] = "Return the Head of the Broodlord Lashlayer to Baristolth of the Shifting Sands at Cenarion Hold in Silithus.", + ["T"] = "Only One May Rise", + }, + [8289] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Talismans of Merit", + }, + [8290] = { + ["D"] = "Beyond this tunnel you will find a field of strife and turmoil, young $c. The Horde continue to decimate our sacred forest, cutting down the evergreen foliage to power their machines of war.$B$BEnter Warsong Gulch and defend Silverwing Hold. Push back the invading Horde forces!$B$BDo this, and earn a talisman of merit. Bring me such a talisman, $N, and I shall reward you.", + ["O"] = "Enter Warsong Gulch and defeat the Horde, obtain a Warsong Gulch Mark of Honor, and return to Sentinel Farsong at the Silverwing Grove.", + ["T"] = "Vanquish the Invaders", + }, + [8291] = { + ["D"] = "Beyond this tunnel you will find a field of strife and turmoil, young $c. The Horde continue to decimate our sacred forest, cutting down the evergreen foliage to power their machines of war.$B$BEnter Warsong Gulch and defend Silverwing Hold. Push back the invading Horde forces!$B$BDo this, and earn a talisman of merit. Bring me such a talisman, $N, and I shall reward you.", + ["O"] = "Enter Warsong Gulch and defeat the Horde, obtain a Silverwing Talisman of Merit, and return to Sentinel Farsong at the Silverwing Grove.", + ["T"] = "Vanquish the Invaders!", + }, + [8292] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Talismans of Merit", + }, + [8293] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Mark of Honor", + }, + [8294] = { + ["D"] = "The wilds of the Ashenvale forest will succumb to the might of the Horde, $r. Nothing the Silverwing say or do can stop our sovereign imperative. Kalimdor belongs to the Horde. How dare they attempt to prevent us from harvesting what is rightfully ours!$B$BLet the pride swell in your chest as you cut down their weak attempts at slowing our progress. Destroy the Silverwing Sentinels, and earn a Warsong mark of honor. Return to me with such a mark, $N, and you will be rewarded.", + ["O"] = "Enter Warsong Gulch and defeat the Alliance, gain a Warsong Mark of Honor, and bring it to Captain Shatterskull at the Mor\'shan Base Camp.", + ["T"] = "Quell the Silverwing Usurpers", + }, + [8295] = { + ["D"] = "The wilds of the Ashenvale forest will succumb to the might of the Horde, $r. Nothing the Silverwing say or do can stop our sovereign imperative. Kalimdor belongs to the Horde. How dare they attempt to prevent us from harvesting what is rightfully ours!$B$BLet the pride swell in your chest as you cut down their weak attempts at slowing our progress. Destroy the Silverwing Sentinels, and earn a Warsong mark of honor. Return to me with such a mark, $N, and you will be rewarded.", + ["O"] = "Enter Warsong Gulch and defeat the Alliance, gain a Warsong Gulch Mark of Honor, and bring it to Captain Shatterskull at the Mor\'shan Base Camp.", + ["T"] = "Quell the Silverwing Usurpers", + }, + [8296] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Mark of Honor", + }, + [8297] = { + ["D"] = "War must be fought with soldiers, any soldier will tell you. They\'ll also say that a battle fought with poor gear or on an empty stomach is lost before it starts!$B$BThat is why Arathi Basin is important. There are key areas in the basin that hold essential resources. Metals, weapons, food, lumber - all are needed, and all can be gained there.$B$BThat is what I want from you, $N. Enter Arathi Basin, win the battle by holding more bases than the enemy, and return to me with a crate of resources.", + ["O"] = "Win the battle for Arathi Basin, get an Arathi Resource Crate, and return it to Sergeant Maclear at Refuge Pointe.", + ["T"] = "Arathi Basin Resources!", + }, + [8298] = { + ["D"] = "War must be fought with soldiers, any soldier will tell you. They\'ll also say that a battle fought with poor gear or on an empty stomach is lost before it starts!$B$BThat is why Arathi Basin is important. There are key areas in the basin that hold essential resources. Metals, weapons, food, lumber - all are needed, and all can be gained there.$B$BThat is what I want from you, $N. Enter Arathi Basin, win the battle by holding more bases than the enemy, and return to me with a crate of resources.", + ["O"] = "Win the battle for Arathi Basin, get an Arathi Resource Crate, and return it to Sergeant Maclear at Refuge Pointe.", + ["T"] = "More Resource Crates", + }, + [8299] = { + ["D"] = "The League of Arathor is sparing no expense in their move to retake Arathi. They, and all the races of the Alliance, now stream to this distant region, intent on expanding their hold from Refuge Pointe. We must stop them, and the best means to stop them is to take their supplies.$B$BYou can help us, $N. Enter Arathi Basin, known for its rich mines, fertile land and skilled craftsman. Capture and control every base you can, win the battle, and return to me with the resources you gain.", + ["O"] = "Win the battle for Arathi Basin, get an Arathi Resource Crate, and return it to Deathstalker Mortis at Hammerfall.", + ["T"] = "Cut Arathor Supply Lines", + }, + [8300] = { + ["D"] = "The League of Arathor is sparing no expense in their move to retake Arathi. They, and all the races of the Alliance, now stream to this distant region, intent on expanding their hold from Refuge Pointe. We must stop them, and the best means to stop them is to take their supplies.$B$BYou can help us, $N. Enter Arathi Basin, known for its rich mines, fertile land and skilled craftsman. Capture and control every base you can, win the battle, and return to me with the resources you gain.", + ["O"] = "Win the battle for Arathi Basin, get an Arathi Resource Crate, and return it to Deathstalker Mortis at Hammerfall.", + ["T"] = "More Resource Crates", + }, + [8301] = { + ["D"] = "The Brood of Nozdormu are naturally distrusting of the lesser races. While it is true that you have proven to me that you have the potential makings of a hero, the time has come to prove this to my master.$B$BHive\'Ashi, Hive\'Zora, Hive\'Regal: All swarming with activity and all a threat to our existence. Slay silithid at these hives and take from them a fragment of their carapace. When you can carry no more, return to me and I shall strengthen your resolve.", + ["O"] = "Collect 200 Silithid Carapace Fragments and return to Baristolth.", + ["T"] = "The Path of the Righteous", + }, + [8302] = { + ["D"] = "Choose your deputies wisely, mortal. Each time you return with your task complete, a new deputy you will be allowed to choose.$B$BWith that said, I require more of the carapace fragments. Waste no time!", + ["O"] = "Collect 200 Silithid Carapace Fragments and return to Baristolth.", + ["T"] = "The Hand of the Righteous", + }, + [8303] = { + ["D"] = "It is time, $N.$B$BI must apologize for keeping so much in secret. Enemies abound, even under our very noses. Please, read from this tome and learn. Take the knowledge I give to you and seek out our master.", + ["O"] = "Seek out Anachronos at the Caverns of Time in Tanaris.", + ["T"] = "Anachronos", + }, + [8304] = { + ["D"] = "My dear Natalia has gone missing.$B$BTruth be told, she had been acting strangely for weeks leading up to her disappearance. I had caught her talking to herself when no one was around on more than one occasion. She was adamant that everything was ok and that she must be allowed to continue her research.$B$BShe was last seen heading to Bronzebeard\'s camp to the south.$B$BMy soldiers are spread too thin, $N. I need you to go to Bronzebeard\'s camp and question those dwarves. ", + ["O"] = "Commander Mar\'alith at Cenarion Hold in Silithus wants you to question the inhabitants of Bronzebeard\'s Encampment. You will find Bronzebeard\'s Encampment south of Cenarion Hold.$B$BOnce you have gathered the requested information, return to Commander Mar\'alith.", + ["T"] = "Dearest Natalia", + }, + [8305] = { + ["D"] = "In the southern desert of Silithus, near the sacred barrier, exists a single crystalline tear. This tear serves as a symbol of the great losses beset upon us during the War of the Shifting Sands. Locate this tear and gaze into its depths to gain enlightenment.", + ["O"] = "Locate the Crystalline Tear in Silithus and gaze into its depths.", + ["T"] = "Long Forgotten Memories", + }, + [8306] = { + ["D"] = "I need you to venture into Hive\'Regal and find what became of my dearest Natalia, $N. This will be no easy task for you to do alone. I recommend that you bring some friends along. Before you dive headlong into the maw of madness, make sure that you go back and speak with those dwarves. They might be able to give you some tips on dealing with the silithid that inhabit that hive.$B$BAnd $N, if she truly is as mad as they say... do what you must.$B$B", + ["O"] = "Commander Mar\'alith at Cenarion Hold in Silithus wants you to find his beloved Natalia. The information that you gathered points to Hive\'Regal in the south as being the area in which you may find Mistress Natalia Mar\'alith.$B$BDo not forget to visit the dwarves at Bronzebeard\'s camp before venturing into the hive. They might have some additional work and advice for you.$B$BAnd $N, remember the Commander\'s words: \"Do what you must...\"", + ["T"] = "Into The Maw of Madness", + }, + [8307] = { + ["D"] = "Adapting to life in the desert has been difficult to say the least. Not only do I miss the birds and trees of Auberdine but our food selection is severely limited by this arid environment. I\'m trying to learn about desert herbs, but there aren\'t many.$B$BI\'ve seen Twilight\'s Hammer groups from the camp west of here hunt sandworms for food. Sandworm meat is so bitter though, I can\'t imagine how they make it palatable. Keep your eyes open if you go to their camp and let me know if you learn anything.", + ["O"] = "Look for information about cooking Sandworm Meat at the Twilight\'s Hammer camp west of Cenarion Hold.", + ["T"] = "Desert Recipe", + }, + [8308] = { + ["D"] = "To Whom It May Concern:$B$BIf you\'re reading this, I\'m either dead or soon to be dead. It\'s hard to say. Most of the crew is dead anyhow.$B$BFound information about a Titan. Great battle between him and an Old God. Yes, a bona fide Old God. Found ancient tunnel leading to Ahn\'Qiraj. Taking it.$B$BTake this letter to my old camp. Make sure my monkey is getting adequate food, water, and hugs.$B$B-Brann Bronzebeard, Explorer Extreme$B$BP.S. Watch out for crazy Old God worshipping night elf.", + ["O"] = "Take Brann Bronzebeard\'s Letter to Bronzebeard\'s Encampment in southern Silithus.", + ["T"] = "Brann Bronzebeard\'s Lost Letter", + }, + [8309] = { + ["D"] = "After our initial foray into the hives and Mistress Mar\'alith\'s subsequent madness the three hives have been spewing out bugs! The increased activity might be tied into the glyphs covering those strange crystals.$B$BWe must get a rubbing from crystals in all three hives. If we can get those rubbings, we might be able to make sense of this madness.$B$BTake this transcription set and some buddies and hit those hives, $N. Don\'t come back until you\'ve gotten copies from each hive.", + ["O"] = "Rutgar Glyphshaper at Bronzebeard\'s Encampment in Silithus wants you to venture to Hive\'Ashi, Hive\'Zora, and Hive\'Regal and recover Glyphed Rubbings from the Glyphed Crystals of each hive.$B$BUse the Geologist\'s Transcription Kit to make a reasonable facsimile of the ancient glyphs. Return to Rutgar Glyphshaper when you complete this task.", + ["T"] = "Glyph Chasing", + }, + [8310] = { + ["D"] = "I think I can formulate an elixir that will allow us to more readily decipher the glyphs and language of the silithid and Qiraji! What do I need? Glad you asked! I need brains! More specifically, a brain from each silithid type that inhabit the hives. Bring me brains and Rutgar\'s work might not be for naught.", + ["O"] = "Frankal Stonebridge at Bronzebeard\'s Encampment in Silithus wants you to recover a Hive\'Zora Silithid Brain, Hive\'Ashi Silithid Brain, and a Hive\'Regal Silithid Brain. Return to Frankal when you have completed this task.", + ["T"] = "Breaking the Code", + }, + [8311] = { + ["D"] = "I want to go trick-or-treating, but I can\'t because I\'m sick. If you go for me, I\'d trade you the candy you get for some I already have! I think you\'d like this candy - it makes you turn into things both funny and scary!$B$BEach of the innkeepers in the big cities have candy they give for Hallow\'s End - talk to them and do the tricks they ask for! Also, a little gnome named Talvash in Ironforge is handing out candy as well. When you have all the candy, bring them back to me here!", + ["O"] = "Speak with the innkeepers of Stormwind, Ironforge, and Darnassus, as well as Talvash del Kissel in Ironforge. Perform the tricks they ask of you in exchange for the treats they offer.$B$BReturn to Jesper at the Stormwind Orphanage with a Darnassus Marzipan, Gnomeregan Gumdrop, Stormwind Nougat, and Ironforge Mint.", + ["T"] = "Hallow\'s End Treats for Jesper!", + }, + [8312] = { + ["D"] = "I want to go trick-or-treating, but I can\'t because I\'m sick. If you go for me, I\'d trade you the candy you get for some I already have! I think you\'d like this candy - it makes you turn into things both funny and scary!$B$BEach of the innkeepers in the big cities have candy they give for Hallow\'s End - talk to them and do the tricks they ask for! Also, a troll named Kali Remik in Sen\'jin Village is handing out candy as well. When you have all the candy, bring them back to me here!", + ["O"] = "Speak with the innkeepers of Orgrimmar, Undercity, and Thunder Bluff, as well as Kali Remik in Sen\'jin Village. Perform the tricks they ask of you in exchange for the treats they offer.$B$BReturn to Spoops at the Orgrimmar Orphanage with a Thunder Bluff Marzipan, Darkspear Gumdrop, Orgrimmar Nougat, and Undercity Mint.", + ["T"] = "Hallow\'s End Treats for Spoops!", + }, + [8313] = { + ["D"] = "While the recipe for cooking sandworm meat is legible, it contains references to herbs and spices you\'ve never heard of. Calandrath might have enough knowledge of the plants that grow in the desert to make sense of it. ", + ["O"] = "Bring the Torn Recipe Page to Calandrath at the inn in Cenarion Hold.", + ["T"] = "Sharing the Knowledge", + }, + [8314] = { + ["D"] = "We\'re on the verge of a breakthrough, $N! The rubbings you recovered have allowed us to recreate the glyphs on this crystalline prism. They are apparently a means for the Qiraji and other unknown entities to communicate various messages to the silithid.$B$BUnfortunately, that is all we could get out of the glyphs. We need to find a way to unlock the messages hidden within the crystals.$B$BTake the glyphed crystal prism to Geologist Larksbane at Cenarion Hold. She might be able to help.", + ["O"] = "Rutgar Glyphshaper at Bronzebeard\'s Encampment wants you to deliver the Glyphed Crystal Prism to Geologist Larksbane at the Cenarion Hold in Silithus.", + ["T"] = "Unraveling the Mystery", + }, + [8315] = { + ["D"] = "The glyphs illustrate an emissary of the Qiraji meeting with three silithid at the bones of a large dragon. Above the glyphs is what I can only assume to be a code of some sort. This code might very well be the key to summoning the emissary.$B$BI will create a copy of the glyph code that you must use in the sand at the Bones of Grakkarond. If I am right, the Overlords will come thinking that new data is ready for transmission. Strike them down and confront the emissary. He holds the key to the crystals...", + ["O"] = "Geologist Larksbane at Cenarion Hold in Silithus wants you to recover the Crystal Unlocking Mechanism from the Qiraji Emissary.$B$BYou have been instructed to take the Glyphs of Calling to the Bones of Grakkarond, south of Cenarion Hold, and draw them in the sand. Should the Qiraji Emissary appear, slay it and recover the Crystal Unlocking Mechanism. Return to Geologist Larksbane if you succeed.$B$BAssemble an army for this task, $N!", + ["T"] = "The Calling", + }, + [8316] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Armaments of War", + }, + [8317] = { + ["D"] = "That recipe sure will come in handy. I\'d better get to work so I can have some smoked desert dumplings ready for today. I could use a hand in making some, I\'ll make it worth your while.", + ["O"] = "Calandrath at Cenarion Hold needs a batch of 10 Smoked Desert Dumplings.", + ["T"] = "Kitchen Assistance", + }, + [8318] = { + ["D"] = "Some of the Twilight\'s Hammer cultists carry around little papers with gibberish written on them. I want you to bring me a stack of them, $c.$B$BI can\'t figure out what the gibberish means, but that\'s not the point! These papers are how their different groups communicate secretly. The more texts we take out of circulation, the less they can communicate!", + ["O"] = "Bring 10 Encrypted Twilight Texts to Bor Wildmane in Cenarion Hold.", + ["T"] = "Secret Communication", + }, + [8319] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Encrypted Twilight Texts", + }, + [8320] = { + ["D"] = "The Twilight\'s Hammer, an insane cult bent on destruction, set up camps in Silithus and perform rituals day and night. We do not yet know their plans, but we do think they are somehow linked to the pulsing red crystals spread across the desert.$B$BAlthough their mystery may one day be solved, we must first deal with their immediate threat. Go to their camps to the west and seek out Twilight geolords. They are the heads of these serpents; that is where we must strike!", + ["O"] = "Kill 10 Twilight Geolords, then return to Huum Wildmane in Cenarion Hold.", + ["T"] = "Twilight Geolords", + }, + [8321] = { + ["D"] = "We have discovered another base of operations for the Twilight\'s Hammer. It is called Twilight\'s Run; it is a cave tucked in the northeast corner of Silithus. The local leader of the cult, Vyral the Vile, haunts that cave - it is he who you must next defeat. When you have done this, bring me his signet ring.$B$BFortune to you, $N. The horrors of Twilight\'s Run are formidable indeed.", + ["O"] = "Bring Vyral\'s Signet Ring to Huum Wildmane in Cenarion Hold.", + ["T"] = "Vyral the Vile", + }, + [8322] = { + ["D"] = "The humans of Southshore love their ale, and as such they prize the ale served at the Southshore Inn. With the chaos of Hallow\'s End now upon them, we can use it to ruin their latest batch of beverages for weeks - if not months to come!$B$BTake these rotten eggs and place them in the main brew keg inside the Southshore Inn. Your presence alone will cause strife, so be prepared to defend yourself!$B$BOnce you\'ve given Southshore a taste they\'ll not soon forget, return to me here at the festival!", + ["O"] = "Place the Rotten Eggs in the main brew keg located inside the Southshore Inn.", + ["T"] = "Rotten Eggs", + }, + [8323] = { + ["D"] = "Now that I have the Twilight Lexicon in my possession, there is a small favor I\'d like to ask of you.$B$BMy former organization has a secret encoded bulletin they circulate on a monthly basis.$B$BIf they make any progress searching for me or if they call off the search, word will be published on the True Believer.$B$BAlthough this information is obviously valuable to me, the publication contains other useful information that I can share. Bring me any encoded texts you find on Twilight\'s Hammer members.", + ["O"] = "Hermit Ortell wants you to bring him 10 Encrypted Twilight Texts", + ["T"] = "True Believers", + }, + [8324] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Still Believing", + }, + [8331] = { + ["D"] = "$N, although we had hoped the Twilight\'s Hammer\'s operations in Silithus were slowing... we were, regrettably, mistaken. Through continued forays against the cult, we have learned that an even darker power, the Abyssal Council, controls the Hammer through the arcane wind stones dotted amongst the cult\'s camps. Your next action, $N, will be against the Abyssal Council.$B$BSpeak with the craftsman Aurel Goldleaf, in the eastern section of Cenarion Hold. Her skill will be needed for this next gambit.", + ["O"] = "Speak with Aurel Goldleaf in Cenarion Hold.", + ["T"] = "Aurel Goldleaf", + }, + [8332] = { + ["D"] = "We think it is possible to use a wind stone to ambush a duke of the Abyssal Council. To do this, however, one must commune through the wind stone, and convince the council you are a middle ranked leader of the Twilight\'s Hammer. $B$BSuch a gambit requires a replica of the cult\'s medallion of station. I can create the medallion, but I will need a large brilliant shard, and crests worn by the Abyssal Templar.$B$BBring these to me and I will do the rest.", + ["O"] = "Bring 1 Large Brilliant Shard and 3 Abyssal Crests to Aurel Goldleaf in Cenarion Hold.", + ["T"] = "Dukes of the Council", + }, + [8333] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Medallion of Station", + }, + [8341] = { + ["D"] = "Lords of the Abyssal Council can only be summoned through the greater wind stones, and only the top ranking members of the Twilight\'s Council may speak to them. But... I have found a way to upgrade your disguise and fool the Abyssal Lords!$B$BThe disguise calls for a ring of lordship, worn only by the highest members of the cult. I will craft one for you if you can bring me large brilliant shards and abyssal signets.", + ["O"] = "Bring 5 Large Brilliant Shards and 3 Abyssal Signets to Aurel Goldleaf in Cenarion Hold.", + ["T"] = "Lords of the Council", + }, + [8342] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Twilight Ring of Lordship", + }, + [8343] = { + ["D"] = "$N, Aurel Goldleaf thinks she\'s found a way to summon and defeat a ruling member of the Abyssal Council! Such a task will be dangerous, but you have earned great respect amongst the Cenarion Circle. We know that if anyone can do it, you can.$B$BMay fortune go with you, $N. Speak with Aurel when you are ready.", + ["O"] = "Speak with Aurel Goldleaf in Cenarion Hold.", + ["T"] = "Goldleaf\'s Discovery", + }, + [8348] = { + ["D"] = "Huum tells me you\'ve figured out how to summon the Abyssal Dukes! That\'s quite an accomplishment.$B$BYou know what else would be quite the accomplishment? Smashing up one of those things really good. That\'ll cause an impression on their underlings, if you know what I mean. Bring back its signet as proof of the deed.", + ["O"] = "Bring the Abyssal Signet to Bor Wildmane in Cenarion Hold.", + ["T"] = "Signet of the Dukes", + }, + [8349] = { + ["D"] = "Now that you have a medallion and can summon an Abyssal Duke, speak with Bor Wildmane. He will set you on a task against the Abyssal Council.$B$BGood luck, $N. And if you ever need more medallions, return to me.", + ["O"] = "Speak with Bor Wildmane in Cenarion Hold.", + ["T"] = "Bor Wildmane", + }, + [8351] = { + ["D"] = "Now that you can disguise yourself as a ruling member of the Twilight Council, I am certain Bor Wildmane will want to speak with you. Go see him, and prepare yourself for a very difficult mission...", + ["O"] = "Speak with Bor Wildmane in Cenarion Hold.", + ["T"] = "Bor Wishes to Speak", + }, + [8352] = { + ["D"] = "Huum and I were just talking about you. He tells me you\'re just about ready to try your hand at fighting an Abyssal Lord!$B$BI must tell you this is a very dangerous endeavor. You\'d better bring backup. And I don\'t mean one or two of your friends, I\'m talking about a top-notch, battle-ready fighting force. If your friends are as good as you, you might even defeat it!$B$BIf you do - and I\'ll want evidence, as always - I\'ll give you a truly great reward.", + ["O"] = "Bring an Abyssal Scepter to Bor Wildmane in Cenarion Hold.", + ["T"] = "Scepter of the Council", + }, + [8353] = { + ["D"] = "Ah, trick-or-treating for a sick child, are we? I was going to say, you\'re a little old to be rummaging about for candies...$B$BWell, for my treat - an Ironforge Mint - you will need to... cluck like a chicken! Yes, chickens love mints... well OK, maybe they don\'t LOVE them... but I won\'t give you a mint unless you chicken cluck for me!$B$BWell $c, are you up to the challenge or not?! Time to earn your treat!", + ["O"] = "Do a chicken emote at Innkeeper Firebrew, and in exchange you\'ll receive an Ironforge Mint!", + ["T"] = "Chicken Clucking for a Mint", + }, + [8354] = { + ["D"] = "Ah, trick-or-treating for a sick child, are we? I was going to say, you\'re a little old to be rummaging about for candies...$B$BWell, for my treat - an Undercity Mint - you will need to... cluck like a chicken! Yes, chickens love mints... well OK, maybe they don\'t LOVE them... but I won\'t give you a mint unless you chicken cluck for me!$B$BWell $c, are you up to the challenge or not?! Time to earn your treat!", + ["O"] = "Do a chicken emote at Innkeeper Norman, and in exchange you\'ll receive an Undercity Mint!", + ["T"] = "Chicken Clucking for a Mint", + }, + [8355] = { + ["D"] = "A trick-or-treater! Huzzah!$B$BWell now, even though you\'re doing something noble and collecting candies for a sick child, I can\'t let you off the hook that easily. I have a yummy Gnomeregan Gumdrop to give to the sick child... if you make a train noise for me! Haha, yes, that\'ll be the trick! The price of this gumdrop is one train noise!$B$BChugga-chugga, $c!", + ["O"] = "Do a train emote at Talvash del Kissel, and in exchange you\'ll receive a Gnomeregan Gumdrop!", + ["T"] = "Incoming Gumdrop", + }, + [8356] = { + ["D"] = "That\'s an... interesting costume you have on. Even though you\'re being nice and helping a sick child trick-or-treat this year, I\'m afraid I\'m going to have to ask you perform a trick for me!$B$BLet\'s see... you look so strong and buff in that... costume... let\'s see you flex! Yes, go on now and flex for me, strong $g man : woman;!$B$BWhen and only when you flex, I\'ll give you some tasty Stormwind Nougat. It\'s a great Hallow\'s End treat.", + ["O"] = "Do a flex emote at Innkeeper Allison, and in exchange you\'ll receive Stormwind Nougat!", + ["T"] = "Flexing for Nougat", + }, + [8357] = { + ["D"] = "Even though you\'re trick-or-treating for a sick child, you still need to perform a trick for the treat! We can\'t very well change the tradition, now can we...$B$BI believe the cost of a piece of marzipan nowadays is to bust out and DANCE! That\'s right, let me see your moves! Dance for me, and I\'ll give you some tasty marzipan!", + ["O"] = "Do a dance emote at Innkeeper Saelienne, and in exchange you\'ll receive Darnassus Marzipan!", + ["T"] = "Dancing for Marzipan", + }, + [8358] = { + ["D"] = "A trick-or-treater! Yeah mon!$B$BWell now, even though you\'re doing something noble and collecting candies for a sick child, I can\'t let you off the hook that easily. I have a yummy Darkspear Gumdrop to give to the sick child... if you make a train noise for me! Haha, yes, that\'ll be the trick! The price of this gumdrop is one train noise!$B$BChugga-chugga, $c!", + ["O"] = "Do a train emote at Kali Remik, and in exchange you\'ll receive a Darkspear Gumdrop!", + ["T"] = "Incoming Gumdrop", + }, + [8359] = { + ["D"] = "That\'s an... interesting costume you have on. Even though you\'re being nice and helping a sick child trick-or-treat this year, I\'m afraid I\'m going to have to ask you perform a trick for me!$B$BLet\'s see... you look so strong and buff in that... costume... let\'s see you flex! Yes, go on now and flex for me, strong $g man : woman;!$B$BWhen and only when you flex, I\'ll give you some tasty Orgrimmar Nougat. It\'s a great Hallow\'s End treat.", + ["O"] = "Do a flex emote at Innkeeper Gryshka, and in exchange you\'ll receive Orgrimmar Nougat!", + ["T"] = "Flexing for Nougat", + }, + [8360] = { + ["D"] = "Even though you\'re trick-or-treating for a sick child, you still need to perform a trick for the treat! We can\'t very well change the tradition, now can we...$B$BI believe the cost of a piece of marzipan nowadays is to bust out and DANCE! That\'s right, let me see your moves! Dance for me, and I\'ll give you some tasty marzipan!", + ["O"] = "Do a dance emote at Innkeeper Pala, and in exchange you\'ll receive Thunder Bluff Marzipan!", + ["T"] = "Dancing for Marzipan", + }, + [8361] = { + ["D"] = "We\'ve seen the Twilight\'s Hammer cultists performing rituals to summon powerful elemental nobles. We don\'t know if these are the beings the cultists worship or if they act as intermediaries to even more powerful forces. One thing is for sure: they are receiving orders from these elementals.$B$BI want you to find a way to contact an Abyssal Templar and give it a proper beating! Nothing throws the troops in disarray like taking out the chain of command. Bring back proof while you\'re at it.", + ["O"] = "Bor Wildmane at Cenarion Hold in Silithus wants you to destroy an Abyssal Templar and bring him an Abyssal Crest as proof of the deed.", + ["T"] = "Abyssal Contacts", + }, + [8362] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Abyssal Crests", + }, + [8363] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Abyssal Signets", + }, + [8364] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Abyssal Scepters", + }, + [8365] = { + ["D"] = "You\'re the help the Cartel sent? I suppose you\'ll do. Listen carefully $c. As you know, I am a procurer of fashionable apparel for the elite of Azerothian society. Kings and Queens, Warchiefs and, well whatever the Horde calls their queens, all wear what I choose is in style. And they pay through the nose for it, which is the best part.$B$BSo here\'s what\'s going to happen. You head down to Lost Rigger Cove and acquire a lot of pirate hats by whatever means. Do you think you can handle that?", + ["O"] = "Haughty Modiste wants you to collect 20 Southsea Pirate Hats and return them to her at Steamwheedle Port in Tanaris.", + ["T"] = "Pirate Hats Ahoy!", + }, + [8366] = { + ["D"] = "Argh! They want the impossible from me!$B$BThe Steamwheedle Cartel wants me to teach the Southsea pirates a lesson. The problem is that I can\'t be in two places at once; I need to stay here to keep the peace.$B$BOf late, the pirates have been disregarding the protection money that the cartel regularly forks over. So I\'d like to temporarily deputize you to go down there and show them what for.$B$BYou\'ll find them at Lost Rigger Cove, which is not too far to the south. Thanks $N, I\'ll owe you one!", + ["O"] = "Security Chief Bilgewhizzle of Steamwheedle Port in Tanaris wants you to kill 10 Southsea Pirates, 10 Southsea Freebooters, 10 Southsea Dock Workers and 10 Southsea Swashbucklers.", + ["T"] = "Southsea Shakedown", + }, + [8367] = { + ["D"] = "Serving the Horde in one of the great battles against the Alliance is a source of great honor! The few however, that have served the Horde in ALL of our active battlefronts are our truly great fighters. We shall vanquish our opponents, not by fighting isolated skirmishes, but by waging a well-coordinated war.$B$BGo forth and crush the Alliance in Arathi Basin, Alterac Valley and Warsong Gulch! For Honor! For the Horde!", + ["O"] = "Bring 3 Alterac Valley Marks of Honor, 3 Arathi Basin Marks of Honor and 3 Warsong Gulch Marks of Honor to a Horde Warbringer outside the battlegrounds.", + ["T"] = "For Great Honor", + }, + [8368] = { + ["D"] = "The battle in Warsong Gulch against the Silverwing Sentinels is of great importance. Under the guise of protecting a forest that doesn\'t belong to them, the Alliance seeks to deny the Horde one of our largest sources for lumber.$B$BDo not let this happen, $N! Come back to me with proof of serving the Horde in a worthy manner!", + ["O"] = "Bring 3 Warsong Marks of Honor to a Horde Warbringer outside the battlegrounds.", + ["T"] = "Battle of Warsong Gulch", + }, + [8369] = { + ["D"] = "Listen up, $N. No matter what you might have heard about the battle raging in Alterac Valley, one thing remains true: the Stormpike Expedition invaded Frostwolf Territory. The day we allow the Alliance to invade Horde lands without a forceful response is the day I hang up my axe and live the rest of my life in shame. Go forth and expel the invaders!", + ["O"] = "Bring 3 Alterac Valley Marks of Honor to a Horde Warbringer outside the battlegrounds.", + ["T"] = "Invaders of Alterac Valley", + }, + [8370] = { + ["D"] = "Our conflict with the Alliance has escalated to a true war. No longer are false pretenses to enter into battle used or expected by either side at this point.$B$BThe battle for the Arathi Basin is one of resources, plain and simple. Either the Alliance gets the resources and uses them against us or we get them and use them to keep our war efforts going. Help the Defilers maintain the flow of resources we need, $N!", + ["O"] = "Bring 3 Arathi Basin Mark of Honor to a Horde Warbringer outside the battlegrounds.", + ["T"] = "Conquering Arathi Basin", + }, + [8371] = { + ["D"] = "We\'re not fighting isolated battles against the Horde anymore, $g lad:lass;.$B$BVictory in one front means denying the Horde resources they\'d use against us in a different battle. By the same token, losing any given battle could give the advantage to our opponent somewhere else around the world.$B$BThe Alliance is in need of more combatants with this sort of worldly understanding... truly seasoned veterans! $N, come back to me after you\'ve served against the Horde at all of our active battlegrounds.", + ["O"] = "Bring 3 Alterac Valley Mark of Honor, 3 Arathi Basin Mark of Honor and 3 Warsong Gulch Mark of Honor to an Alliance Brigadier General outside the battlegrounds.", + ["T"] = "Concerted Efforts", + }, + [8372] = { + ["D"] = "The Silverwing Sentinels are at war with the Warsong Outriders due to the destruction the Orcs are causing to the forest. There are, however, more reasons to defend this particular forest than plain love for nature.$B$BThe forest forms a strategic barrier that makes Ashenvale defendable against a large-scale attack. Without it, Astranaar would last a day or two before being annexed to the Barrens.$B$BDo your part in fighting the Warsong Outriders, $N! For the Alliance!", + ["O"] = "Bring 3 Warsong Gulch Marks of Honor to an Alliance Brigadier General outside the battlegrounds.", + ["T"] = "Fight for Warsong Gulch", + }, + [8373] = { + ["D"] = "The thing I hate the most about Hallow\'s End are the stink bombs the Forsaken use on Southshore. Who knew that celebrating liberation would have to involve such a smelly mess?$B$BDuring Hallow\'s End, use this cleaner to remove any nasty stink bombs the Horde may drop here in the village. It uses the power of pine to fight funky smells.$B$BDo your part to keep Southshore clean, and I\'ll give you some Hallow\'s End treats I\'m sure you\'ll enjoy. We have a deal?", + ["O"] = "Use a Stink Bomb Cleaner to remove any Forsaken Stink Bomb that\'s been dropped on Southshore. Return to Sergeant Hartman in Southshore when you\'re done.", + ["T"] = "The Power of Pine", + }, + [8374] = { + ["D"] = "Winning a war is about more than just outsmarting and outfighting your opponent. Victory often comes down to simply producing more than your enemy.$B$BWhat we have in Arathi Basin is a sizeable supply of resources for whichever side manages to claim it first.$B$BIf the Alliance comes out victorious, it\'ll mean more swords and pikes for our troops. If the Horde were to win, those swords and pikes would still get made, they\'d just be pointed at us! Now is the time to help the Alliance in Arathi Basin, $N.", + ["O"] = "Bring 3 Arathi Basin Marks of Honor to an Alliance Brigadier General outside the battlegrounds.", + ["T"] = "Claiming Arathi Basin", + }, + [8375] = { + ["D"] = "Make no mistake about it, $N. The Horde is quite right when they say Alterac Valley is Frostwolf Territory.$B$BYou see, the Stormpike Expedition arrived as peaceful visitors to the area in search of ore and relics. The Frostwolves reacted with the most brutal and uncivilized act of aggression the Alliance has experienced.$B$BLet us never forget the brave dwarves that perished in that cowardly unannounced attack. Go now, $c, do your part in the battle for Alterac Valley. For the Alliance!", + ["O"] = "Bring 3 Alterac Valley Marks of Honor to an Alliance Brigadier General outside the battlegrounds.", + ["T"] = "Remember Alterac Valley!", + }, + [8376] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Armaments of War", + }, + [8377] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Armaments of War", + }, + [8378] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Armaments of War", + }, + [8379] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Armaments of War", + }, + [8380] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Armaments of War", + }, + [8381] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Armaments of War", + }, + [8382] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Armaments of War", + }, + [8383] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Remember Alterac Valley!", + }, + [8384] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Claiming Arathi Basin", + }, + [8385] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Concerted Efforts", + }, + [8386] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Fight for Warsong Gulch", + }, + [8387] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Invaders of Alterac Valley", + }, + [8388] = { + ["D"] = "", + ["O"] = "", + ["T"] = "For Great Honor", + }, + [8389] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Battle of Warsong Gulch", + }, + [8390] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Conquering Arathi Basin", + }, + [8391] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Claiming Arathi Basin", + }, + [8392] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Claiming Arathi Basin", + }, + [8393] = { + ["D"] = "Winning a war is about more than just outsmarting and outfighting your opponent. Victory often comes down to simply producing more than your enemy.$B$BWhat we have in Arathi Basin is a sizeable supply of resources for whichever side manages to claim it first.$B$BIf the Alliance comes out victorious, it\'ll mean more swords and pikes for our troops. If the Horde were to win, those swords and pikes would still get made, they\'d just be pointed at us! Now is the time to help the Alliance in Arathi Basin, $N.", + ["O"] = "Bring 3 Arathi Basin Marks of Honor to an Alliance Brigadier General outside the battlegrounds.", + ["T"] = "Claiming Arathi Basin", + }, + [8394] = { + ["D"] = "Winning a war is about more than just outsmarting and outfighting your opponent. Victory often comes down to simply producing more than your enemy.$B$BWhat we have in Arathi Basin is a sizeable supply of resources for whichever side manages to claim it first.$B$BIf the Alliance comes out victorious, it\'ll mean more swords and pikes for our troops. If the Horde were to win, those swords and pikes would still get made, they\'d just be pointed at us! Now is the time to help the Alliance in Arathi Basin, $N.", + ["O"] = "Bring 3 Arathi Basin Marks of Honor to an Alliance Brigadier General outside the battlegrounds.", + ["T"] = "Claiming Arathi Basin", + }, + [8395] = { + ["D"] = "Winning a war is about more than just outsmarting and outfighting your opponent. Victory often comes down to simply producing more than your enemy.$B$BWhat we have in Arathi Basin is a sizeable supply of resources for whichever side manages to claim it first.$B$BIf the Alliance comes out victorious, it\'ll mean more swords and pikes for our troops. If the Horde were to win, those swords and pikes would still get made, they\'d just be pointed at us! Now is the time to help the Alliance in Arathi Basin, $N.", + ["O"] = "Bring 3 Arathi Basin Marks of Honor to an Alliance Brigadier General outside the battlegrounds.", + ["T"] = "Claiming Arathi Basin", + }, + [8396] = { + ["D"] = "Winning a war is about more than just outsmarting and outfighting your opponent. Victory often comes down to simply producing more than your enemy.$B$BWhat we have in Arathi Basin is a sizeable supply of resources for whichever side manages to claim it first.$B$BIf the Alliance comes out victorious, it\'ll mean more swords and pikes for our troops. If the Horde were to win, those swords and pikes would still get made, they\'d just be pointed at us! Now is the time to help the Alliance in Arathi Basin, $N.", + ["O"] = "Bring 3 Arathi Basin Marks of Honor to an Alliance Brigadier General outside the battlegrounds.", + ["T"] = "Claiming Arathi Basin", + }, + [8397] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Claiming Arathi Basin", + }, + [8398] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Claiming Arathi Basin", + }, + [8399] = { + ["D"] = "The Silverwing Sentinels are at war with the Warsong Outriders due to the destruction the Orcs are causing to the forest. There are, however, more reasons to defend this particular forest than plain love for nature.$B$BThe forest forms a strategic barrier that makes Ashenvale defendable against a large-scale attack. Without it, Astranaar would last a day or two before being annexed to the Barrens.$B$BDo your part in fighting the Warsong Outriders, $N! For the Alliance!", + ["O"] = "Bring 3 Warsong Gulch Marks of Honor to an Alliance Brigadier General outside the battlegrounds.", + ["T"] = "Fight for Warsong Gulch", + }, + [8400] = { + ["D"] = "The Silverwing Sentinels are at war with the Warsong Outriders due to the destruction the Orcs are causing to the forest. There are, however, more reasons to defend this particular forest than plain love for nature.$B$BThe forest forms a strategic barrier that makes Ashenvale defendable against a large-scale attack. Without it, Astranaar would last a day or two before being annexed to the Barrens.$B$BDo your part in fighting the Warsong Outriders, $N! For the Alliance!", + ["O"] = "Bring 3 Warsong Gulch Marks of Honor to an Alliance Brigadier General outside the battlegrounds.", + ["T"] = "Fight for Warsong Gulch", + }, + [8401] = { + ["D"] = "The Silverwing Sentinels are at war with the Warsong Outriders due to the destruction the Orcs are causing to the forest. There are, however, more reasons to defend this particular forest than the preservationist philosophy the Silverwings espouse.$B$BThe forest forms a strategic barrier that makes Ashenvale defendable against a large-scale attack. Without it, Astranaar would last a day or two before being annexed to the Barrens. Do your part in fighting the Warsong Outriders! For the Alliance!", + ["O"] = "Bring 3 Warsong Gulch Marks of Honor to an Alliance Brigadier General outside the battlegrounds.", + ["T"] = "Fight for Warsong Gulch", + }, + [8402] = { + ["D"] = "The Silverwing Sentinels are at war with the Warsong Outriders due to the destruction the Orcs are causing to the forest. There are, however, more reasons to defend this particular forest than plain love for nature.$B$BThe forest forms a strategic barrier that makes Ashenvale defendable against a large-scale attack. Without it, Astranaar would last a day or two before being annexed to the Barrens.$B$BDo your part in fighting the Warsong Outriders, $N! For the Alliance!", + ["O"] = "Bring 3 Warsong Gulch Marks of Honor to an Alliance Brigadier General outside the battlegrounds.", + ["T"] = "Fight for Warsong Gulch", + }, + [8403] = { + ["D"] = "The Silverwing Sentinels are at war with the Warsong Outriders due to the destruction the Orcs are causing to the forest. There are, however, more reasons to defend this particular forest than plain love for nature.$B$BThe forest forms a strategic barrier that makes Ashenvale defendable against a large-scale attack. Without it, Astranaar would last a day or two before being annexed to the Barrens.$B$BDo your part in fighting the Warsong Outriders, $N! For the Alliance!", + ["O"] = "Bring 3 Warsong Gulch Marks of Honor to an Alliance Brigadier General outside the battlegrounds.", + ["T"] = "Fight for Warsong Gulch", + }, + [8404] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Fight for Warsong Gulch", + }, + [8405] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Fight for Warsong Gulch", + }, + [8406] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Fight for Warsong Gulch", + }, + [8407] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Fight for Warsong Gulch", + }, + [8408] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Fight for Warsong Gulch", + }, + [8409] = { + ["D"] = "The rotten eggs have been successfully placed inside the keg. Future batches of ale from the Southshore Inn are sure to be ruined!$B$BYou should now report back to Darkcaller Yanka at the Wickerman Festival in Tirisfal Glade and report your success.", + ["O"] = "Return to Darkcaller Yanka at the Wickerman Festival in Tirisfal Glade.", + ["T"] = "Ruined Kegs", + }, + [8410] = { + ["D"] = "Bath\'rah the Windwatcher has sent out a summons for a shaman of your wisdom. He requests you bring a sample of each of the elements to show you are ready.$b$bTo find Bath\'rah, go to the river east of Tarren Mill. Follow the river north until you come across the ruins where Bath\'rah resides.", + ["O"] = "Collect a sample of air, fire, earth and water for Bath\'rah the Windwatcher.", + ["T"] = "Elemental Mastery", + }, + [8411] = { + ["D"] = "Welcome, mon. You bring me the elements and then we do the talkin\'.", + ["O"] = "Bring the elements earth, air, fire and water to Bath\'rah the Windwatcher.", + ["T"] = "Mastering the Elements", + }, + [8412] = { + ["D"] = "The elemental spirits of this place don\'t be likin\' me any more.$b$bYou know about the totems more than any, and I be needin\' a spirit totem to protect me. We already got the elements, now we need somethin\' more with more nature. More primal.$b$bIn the Western Plaguelands you can kill bears for claws and spiders for their eyes. The carrion birds eat everything, so they might have either one.", + ["O"] = "Bring the pieces for the spirit totem to Bath\'rah the Windwatcher.", + ["T"] = "Spirit Totem", + }, + [8413] = { + ["D"] = "The spirit totem just isn\'t enough. We be needin\' some voodoo magic to make it work jus\' right.$b$bThe trolls in the sunken temple have feathers strong with voodoo magics. Go there and kill Gasher, Mijan, Zolo, Hukku, Zul\'lor, and Loro. Then we have magic enough for a real spirit totem.", + ["O"] = "Bring the voodoo feathers to Bath\'rah the Windwatcher.", + ["T"] = "Da Voodoo", + }, + [8414] = { + ["D"] = "Greetings, $c. Crusaders like you are a welcome sight in these desolate reaches.$b$bYour holy strength is needed to help fight the endless undead here. We need you to collect a large number of scourgestones and bring them to High Priest Thel\'danis. The high priest can be found guarding Uther\'s Tomb in Sorrow Hill, not far from here.$b$bOnly one with an Argent Dawn Commission can hope to find scourgestones, so speak to Officer Pureheart if you haven\'t already.", + ["O"] = "Collect 20 Minion\'s Scourgestones and bring them to High Priest Thel\'danis in the Western Plaguelands.", + ["T"] = "Dispelling Evil", + }, + [8415] = { + ["D"] = "Commander Ashlam Valorfist has sent out a call for a paladin of your purity and valor, $n. You can find him at Chillwind Point in the southern part of the Western Plaguelands. Seek him and aid in his cause for the Light!", + ["O"] = "Speak to Commander Ashlam Valorfist at Chillwind Point.", + ["T"] = "Chillwind Point", + }, + [8416] = { + ["D"] = "The evil has been purged from the stones, $n.$b$bI am aware of Commander Ashlam\'s plans, and he will require only a single inert stone. Bring it to him so we may bathe the Scourge in righteous fire.", + ["O"] = "Bring the Inert Scourgestone to Commander Ashlan Valorfist in Chillwind Point.", + ["T"] = "Inert Scourgestones", + }, + [8417] = { + ["D"] = "In the Blasted Lands, there is a troubled spirit who was once a great hero of the horde. A warrior\'s honor does not die with the body, and it would serve you well to speak with him.", + ["O"] = "Speak with the Fallen Hero of the Horde at the entrance to the Blasted Lands.", + ["T"] = "A Troubled Spirit", + }, + [8418] = { + ["D"] = "Now we must combine the inert scourgestones and create a weapon to shatter the ranks of undead. This is no trivial task, $n. Only the trolls of the sunken temple carry the kind of rare magic able to turn the evil of something against itself.$b$bIn the temple, the trolls are known as Gasher, Mijan, Zolo, Hukku, Zul\'lor, and Loro. Do not feel remorse for their corrupt souls... they are not without evil.", + ["O"] = "Bring the voodoo feathers to Ashlam Valorfist.", + ["T"] = "Forging the Mightstone", + }, + [8419] = { + ["D"] = "$n, an imp in Felwood by the name of Impsy has requested your presence. It is somewhat strange, as he has asked that you bring a piece of felcloth as a sign of good faith. Considering the power you already wield as a warlock, I can only assume you know the satyrs of Felwood carry this felcloth.$b$bYou can find Impsy just north of the Bloodvenom Falls, which I\'ve heard is quite lovely this time of year.", + ["O"] = "Bring a piece of felcloth to Impsy in Felwood.", + ["T"] = "An Imp\'s Request", + }, + [8420] = { + ["D"] = "Maybe this sounds strange coming from an imp, but I\'d like a pet of my own. I really would. It\'s just not fair that Niby gets me and I get nothing!$b$bIn fact, it doesn\'t even need to be a living pet. I\'d need something to start making it with, like some felcloth. The satyrs here in Felwood sometimes have felcloth, so you\'d just have to kill enough of them until you find some. That doesn\'t sound so bad, does it?", + ["O"] = "Bring a piece of felcloth to Impsy in Felwood.", + ["T"] = "Hot and Itchy", + }, + [8421] = { + ["D"] = "Now that I have my felcloth, I can really begin making *my* pet.$b$bIt\'s going to need some eyes though. Perhaps you could rip some rotting wood from the irontree folk for me, so I can carve out some lovely eyes. They\'re up north in the Irontree Woods.$b$bI\'ll also need some bloodvenom essence to give it that new demon smell. The tainted oozes carry the essence, and they hang out right here near Niby and me.", + ["O"] = "Bring 10 Rotting Wood and 4 Bloodvenom Essence to Impsy in Felwood.", + ["T"] = "The Wrong Stuff", + }, + [8422] = { + ["D"] = "My pet is almost done. Now I just need something to stuff it with.$b$bOnly the voodoo feathers from the trolls in the sunken temple will do. They go by the names Gasher, Mijan, Zolo, Hukku, Zul\'lor, and Loro. Kill them. Kill them all.$b$bThis is no trivial task $n, so I\'ll make it worth your while by giving you something of Niby\'s -- he probably doesn\'t need it anyhow.", + ["O"] = "Bring a total of 6 Voodoo Feathers from the trolls in sunken temple.", + ["T"] = "Trolls of a Feather", + }, + [8423] = { + ["D"] = "$b$bYou are a $c, no doubt. I would ask an honorable task of you, but I must test your strength.$b$bIt is said that Rexxar would measure the sharpness of his blades by killing a helboar with a single, swift strike. Now I will measure your strength by killing them.", + ["O"] = "Kill 7 Helboar in the Blasted Lands and return to the Fallen Hero of the Horde.", + ["T"] = "Warrior Kinship", + }, + [8424] = { + ["D"] = "The continued presence of the shadowsworn in the Blasted Lands bring great pain to me. Their dark rituals and spells cause agony unlike any I felt while alive.$b$bThrough you I can deliver my own message of pain. Go forth and deliver my wrath.", + ["O"] = "Slaughter the Shadowsworn in the Blasted Lands and return to the Fallen Hero of the Horde.", + ["T"] = "War on the Shadowsworn", + }, + [8425] = { + ["D"] = "Your honor has brought some peace to me. It is only right that I offer you something in return.$b$bMy weapons and armor were splendid in life, and yet they are of no use to me now. They would be better served in your possession.$b$bTravel to the sunken temple and destroy the troll guardians Gasher, Mijan, Zolo, Hukku, Zul\'lor, and Loro. They carry magic feathers that can reform my physical body long enough to grant you a reward.", + ["O"] = "Bring the Voodoo Feathers from the trolls in the Sunken Temple to the Fallen Hero of the Horde.", + ["T"] = "Voodoo Feathers", + }, + [8426] = { + ["D"] = "The battle in Warsong Gulch against the Silverwing Sentinels is of great importance. Under the guise of protecting a forest that doesn\'t belong to them, the Alliance seeks to deny the Horde one of our largest sources for lumber.$B$BDo not let this happen, $N! Come back to me with proof of serving the Horde in a worthy manner!", + ["O"] = "Bring 3 Warsong Gulch Marks of Honor to a Horde Warbringer outside the battlegrounds.", + ["T"] = "Battle of Warsong Gulch", + }, + [8427] = { + ["D"] = "The battle in Warsong Gulch against the Silverwing Sentinels is of great importance. Under the guise of protecting a forest that doesn\'t belong to them, the Alliance seeks to deny the Horde one of our largest sources for lumber.$B$BDo not let this happen, $N! Come back to me with proof of serving the Horde in a worthy manner!", + ["O"] = "Bring 3 Warsong Gulch Marks of Honor to a Horde Warbringer outside the battlegrounds.", + ["T"] = "Battle of Warsong Gulch", + }, + [8428] = { + ["D"] = "The battle in Warsong Gulch against the Silverwing Sentinels is of great importance. Under the guise of protecting a forest that doesn\'t belong to them, the Alliance seeks to deny the Horde one of our largest sources for lumber.$B$BDo not let this happen, $N! Come back to me with proof of serving the Horde in a worthy manner!", + ["O"] = "Bring 3 Warsong Gulch Marks of Honor to a Horde Warbringer outside the battlegrounds.", + ["T"] = "Battle of Warsong Gulch", + }, + [8429] = { + ["D"] = "The battle in Warsong Gulch against the Silverwing Sentinels is of great importance. Under the guise of protecting a forest that doesn\'t belong to them, the Alliance seeks to deny the Horde one of our largest sources for lumber.$B$BDo not let this happen, $N! Come back to me with proof of serving the Horde in a worthy manner!", + ["O"] = "Bring 3 Warsong Gulch Marks of Honor to a Horde Warbringer outside the battlegrounds.", + ["T"] = "Battle of Warsong Gulch", + }, + [8430] = { + ["D"] = "The battle in Warsong Gulch against the Silverwing Sentinels is of great importance. Under the guise of protecting a forest that doesn\'t belong to them, the Alliance seeks to deny the Horde one of our largest sources for lumber.$B$BDo not let this happen, $N! Come back to me with proof of serving the Horde in a worthy manner!", + ["O"] = "Bring 3 Warsong Gulch Marks of Honor to a Horde Warbringer outside the battlegrounds.", + ["T"] = "Battle of Warsong Gulch", + }, + [8431] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Battle of Warsong Gulch", + }, + [8432] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Battle of Warsong Gulch", + }, + [8433] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Battle of Warsong Gulch", + }, + [8434] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Battle of Warsong Gulch", + }, + [8435] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Battle of Warsong Gulch", + }, + [8436] = { + ["D"] = "Our conflict with the Alliance has escalated to a true war. No longer are false pretenses to enter into battle used or expected by either side at this point.$B$BThe battle for the Arathi Basin is one of resources, plain and simple. Either the Alliance gets the resources and uses them against us or we get them and use them to keep our war efforts going. Help the Defilers maintain the flow of resources we need, $N!", + ["O"] = "Bring 3 Arathi Basin Mark of Honor to a Horde Warbringer outside the battlegrounds.", + ["T"] = "Conquering Arathi Basin", + }, + [8437] = { + ["D"] = "Our conflict with the Alliance has escalated to a true war. No longer are false pretenses to enter into battle used or expected by either side at this point.$B$BThe battle for the Arathi Basin is one of resources, plain and simple. Either the Alliance gets the resources and uses them against us or we get them and use them to keep our war efforts going. Help the Defilers maintain the flow of resources we need, $N!", + ["O"] = "Bring 3 Arathi Basin Mark of Honor to a Horde Warbringer outside the battlegrounds.", + ["T"] = "Conquering Arathi Basin", + }, + [8438] = { + ["D"] = "Our conflict with the Alliance has escalated to a true war. No longer are false pretenses to enter into battle used or expected by either side at this point.$B$BThe battle for the Arathi Basin is one of resources, plain and simple. Either the Alliance gets the resources and uses them against us or we get them and use them to keep our war efforts going. Help the Defilers maintain the flow of resources we need, $N!", + ["O"] = "Bring 3 Arathi Basin Mark of Honor to a Horde Warbringer outside the battlegrounds.", + ["T"] = "Conquering Arathi Basin", + }, + [8439] = { + ["D"] = "Our conflict with the Alliance has escalated to a true war. No longer are false pretenses to enter into battle used or expected by either side at this point.$B$BThe battle for the Arathi Basin is one of resources, plain and simple. Either the Alliance gets the resources and uses them against us or we get them and use them to keep our war efforts going. Help the Defilers maintain the flow of resources we need, $N!", + ["O"] = "Bring 3 Arathi Basin Mark of Honor to a Horde Warbringer outside the battlegrounds.", + ["T"] = "Conquering Arathi Basin", + }, + [8440] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Conquering Arathi Basin", + }, + [8441] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Conquering Arathi Basin", + }, + [8442] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Conquering Arathi Basin", + }, + [8443] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Conquering Arathi Basin", + }, + [8444] = { + ["D"] = "x", + ["O"] = "x", + ["T"] = " gossip shade of ambermoon", + }, + [8445] = { + ["D"] = "x", + ["O"] = "x", + ["T"] = " gossip shade of ambermoon", + }, + [8446] = { + ["D"] = "Corruption seeps from this object.$B$BThere may be a link between this object and the dragons coming forth from the Dream. You must find someone that can decipher the meaning of this item. Perhaps the druids of the Moonglade or Cenarion Hold could assist you further.", + ["O"] = "Find someone capable of deciphering the meaning behind the Nightmare Engulfed Object.$B$BPerhaps a druid of great power could assist you.", + ["T"] = "Shrouded in Nightmare", + }, + [8447] = { + ["D"] = "The waters of Lake Elune\'ara should dissolve the nightmares engulfing this object. Give me a moment to perform the cleansing, $N.", + ["O"] = "Wait for Keeper Remulos at the Moonglade to cleanse the Nightmare Engulfed Object.", + ["T"] = "Waking Legends", + }, + [8458] = { + ["D"] = "I believe I can find this demon lord given the proper reagents.$B$BIf he is indeed as powerful as I suspect, I will need items gathered from deadly creatures. But you act in the Warchief\'s name, so I am sure you will accept my task.$B$BFirst, I will have to break any wards he has against scrying. For this, I will need the scalp from a satyr--but not any satyr. The scalp must come from a Hatefury shadowstalker.$B$BSearch for them among the ancient ruins in the northeast of Desolace.", + ["O"] = "Bring a Shadowstalker Scalp to Maurin Bonesplitter in Desolace.", + ["T"] = "", + }, + [8459] = { + ["D"] = "Description", + ["O"] = "Log", + ["T"] = "", + }, + [8460] = { + ["D"] = "The Timbermaw are the only furbolg tribe to escape the corruption. However, many other races kill furbolg blindly now, without bothering to see if they are friend or foe. For this reason, the Timbermaw furbolg trust very few.$B$BAre you interested in proving yourself? Drive back the corrupted Deadwood tribe of Felwood and we may one day consider you an ally. You\'ll find the first Deadwood tribe - warriors, pathfinders and gardeners - to my west.", + ["O"] = "Grazle wants you to prove yourself by killing 6 Deadwood Warriors, 6 Deadwood Pathfinders, and 6 Deadwood Gardeners. Return to him in southern Felwood near the Emerald Sanctuary when you are done.", + ["T"] = "Timbermaw Ally", + }, + [8461] = { + ["D"] = "There is a camp of Deadwood furbolgs directly to our southwest. Corruption permeates the camp, and I wish to put an end to it before they become a problem.$B$BThe Deadwood tribe is evil, but it is the effects of the fel that pollutes their minds. Their hostility is not truly an innate quality, yet they cannot be helped. It saddens me that we must fight our own brethren.$B$BPlease, $N - I ask you to do what must be done. Simply spare me the details; such troublesome images upset me far too much.", + ["O"] = "Nafien would like you to kill 6 Deadwood Den Watchers, 6 Deadwood Avengers, and 6 Deadwood Shamans. Return to him in northern Felwood near the entrance to Timbermaw Hold.", + ["T"] = "Deadwood of the North", + }, + [8462] = { + ["D"] = "Perhaps you are capable of handling a larger threat that we Timbermaw face. You certainly have shown yourself capable here...$B$BAnother of my kind stands guard outside the entrance to Timbermaw Hold, along this road far to the north. His name is Nafien; while he may appear to be a feral and unsavory beast, fear him not. He only seeks aid against the malign forces that threaten our home.", + ["O"] = "Travel north along the main road in Felwood and speak with the furbolg named Nafien. He stands guard outside the entrance to Timbermaw Hold.", + ["T"] = "Speak to Nafien", + }, + [8464] = { + ["D"] = "The Timbermaw tend to stay to themselves, $N. While we do allow safe passage to those we trust, we try to avoid other furbolg tribes if at all possible.$B$BThe Winterfall tribe as of late has become increasingly hostile towards us. They seem to be in a state of rage, completely engulfed by their own fear and hatred of anything they do not understand.$B$BI must ask you to thin their numbers as to lessen the threat against us. Seek them out in Winterfall Village, far to the east of here.", + ["O"] = "Salfa wants you to kill 8 Winterfall Shaman, 8 Winterfall Den Watchers, and 8 Winterfall Ursa. Salfa is located just outside the entrance to Timbermaw Hold in Winterspring.", + ["T"] = "Winterfall Activity", + }, + [8465] = { + ["D"] = "The threat of corruption comes not only from the Deadwood furbolgs to the south, but also from the east and the Winterfall furbolgs of Winterspring. If you wish to further aid us, speak with Salfa on the other side of the Hold, by the Winterspring entrance. Follow the path to the left to reach it.$B$BBe warned - if my kind inside considers you hostile or hated, they will attack. Travel as quick as you can, avoiding conflict. To kill a Timbermaw - even in self defense - will only alienate you further.", + ["O"] = "Travel through Timbermaw Hold and exit into Winterspring. Speak with Salfa, who stands guard outside the entrance to Timbermaw Hold.", + ["T"] = "Speak to Salfa", + }, + [8466] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Feathers for Grazle", + }, + [8467] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Feathers for Nafien", + }, + [8469] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Beads for Salfa", + }, + [8470] = { + ["D"] = "You have found one of the Deadwood furbolg\'s ritual totems. The totem itself is of non-descript construction, but a palpable sense of despair emanates from it. If there were any object that might best exemplify the corruption that the Deadwood furbolg suffer under, this item would clearly be it.$B$BOne of the furbolgs inside Timbermaw Hold may have a use for such an item... that is, if you\'ve earned their trust enough for them to speak with you.", + ["O"] = "Take the Deadwood Ritual Totem inside Timbermaw Hold and see if one of the furbolgs there will find a use for the item. The Timbermaw will not speak with you unless you are of Neutral reputation or greater with them.", + ["T"] = "Deadwood Ritual Totem", + }, + [8471] = { + ["D"] = "You have found one of the Winterfall furbolg\'s ritual totems. The totem itself is of non-descript construction, but it seems to emanate an almost tangible sense of dread and despair. If many of the Winterfall furbolgs do indeed carry these, it certainly would go a long way in explaining their current condition.$B$BOne of the furbolgs inside Timbermaw Hold may have a use for such an item... that is, if you\'ve earned their trust enough for them to speak with you.", + ["O"] = "Take the Winterfall Ritual Totem inside Timbermaw Hold and see if one of the furbolgs there will find a use for the item. The Timbermaw will not speak with you unless you are of Neutral reputation or greater with them.", + ["T"] = "Winterfall Ritual Totem", + }, + [8481] = { + ["D"] = "$N, thanks to you we have devised a way to summon forth the root of all evil for the Winterfall tribe - the corrupting demon that dominates them!$B$BTake this torch to the mouth of High Chief Winterfall\'s personal cave and plant it there. Doing so will force the demon to reveal itself and investigate. This is when you and your allies must strike it down! Only the essence of the fallen demon will begin the lengthy healing process of the Winterfall tribe... and the salvation of Timbermaw Hold.", + ["O"] = "Plant the Demon Summoning Torch in the mouth of High Chief Winterfall\'s cave in the Winterfall furbolg village. Defeat the demon and retrieve the Essence of Xandivious for Gorn One Eye in Timbermaw Hold.", + ["T"] = "The Root of All Evil", + }, + [8484] = { + ["D"] = "Your deeds go beyond the tale of a simple hero, $N. If you are a representative of your people, then your people are ones we would work to make peace with.$B$BPlease - take this offering to the dwarven king that resides in a mountain of iron; I believe you call this city Ironforge. In times past, he had tried to make contact with us on behalf of his Alliance. It is now only fitting to acknowledge you as the key in your Alliance\'s efforts in brokering peace.", + ["O"] = "Bring the Timbermaw Offering of Peace to King Magni Bronzebeard in Ironforge.", + ["T"] = "The Brokering of Peace", + }, + [8485] = { + ["D"] = "Your deeds go beyond the tale of a simple hero, $N. If you are a representative of your people, then your people are ones we would work to make peace with.$B$BPlease - take this offering to the orcish warchief that resides in the lands of Durotar; I believe you call this city Orgrimmar. In times past, he had tried to make contact with us on behalf of his Horde. It is now only fitting to acknowledge you as the key in your Horde\'s efforts in brokering peace.", + ["O"] = "Bring the Timbermaw Offering of Peace to Thrall in Orgrimmar.", + ["T"] = "The Brokering of Peace", + }, + [8492] = { + ["D"] = "Hey there, $c, you look fit enough to contribute to the war effort! We need all of the help that we can get here to put together the materiel needed for the Ahn\'Qiraj War and it\'s your lucky day.$B$BI\'m collecting copper bars in stacks of twenty. It\'s for a worthy cause, what do you say? Do you think you could help out the Alliance?", + ["O"] = "Bring 20 Copper Bars to Sergeant Stonebrow at the Military Ward in Ironforge.", + ["T"] = "The Alliance Needs Copper Bars!", + }, + [8493] = { + ["D"] = "Back again $c? Outstanding! We still need more stacks of copper bars if you can procure them for the Ahn\'Qiraj war effort. Will you help us out?", + ["O"] = "Bring 20 copper bars to Sergeant Stonebrow at the airfield in Dun Morogh.", + ["T"] = "The Alliance Needs More Copper Bars!", + }, + [8494] = { + ["D"] = "Well hello there, $g Mr. : Ms.; Fancypants, aren\'t you a sight for sore eyes. In case you hadn\'t heard while you were out there \"adventuring\", the Alliance has been gearing up for a war in Ahn\'Qiraj and is in need of iron bars... a whole mess of \'em. Bring them to me in stacks of twenty. We can count on you, right, $c?", + ["O"] = "Bring 20 Iron Bars to Corporal Carnes at the Military Ward in Ironforge.", + ["T"] = "The Alliance Needs Iron Bars!", + }, + [8495] = { + ["D"] = "Back so soon? Stop making me re-evaluate my low opinion of you $c, you\'re making me feel all gooey inside. So, as you can tell we still don\'t have enough iron bars for all of the weapons, armor, steam tanks and whatnot that need building for the bug hunt. Think you have it in you to bring back another stack of twenty iron bars in between all of those trips to Zul\'Gurub, or wherever it is that you kids hang out these days?", + ["O"] = "Bring 20 iron bars to Corporal Carnes at the airfield in Dun Morogh.", + ["T"] = "The Alliance Needs More Iron Bars!", + }, + [8496] = { + ["D"] = "Our supply of bandages in the battlefield is running dangerously low after the recent casualties we have incurred. Obtain a batch of first-aid supplies and deliver them to Windcaller Proudhorn in Cenarion Hold.", + ["O"] = "Bring 30 Heavy Runecloth Bandages, 30 Heavy Silk Bandages and 30 Heavy Mageweave Bandages to Windcaller Proudhorn at Cenarion Hold in Silithus. You must also bring Logistics Task Briefing X in order to complete this quest.", + ["T"] = "Bandages for the Field", + }, + [8497] = { + ["D"] = "With the arrival of fresh recruits to Cenarion Hold comes the problem of keeping them alive in the desert. Dehydration as well as numerous poisonous creatures present a serious threat to inexperienced volunteers. Gather the supplies necessary for a desert survival kit and bring them to Calandrath in Cenarion Hold.", + ["O"] = "Bring 4 Globes of Water, 4 Powerful Anti-Venom and 4 Smoked Desert Dumplings to Calandrath at the inn in Cenarion Hold in Silithus. You must also bring Logistics Task Briefing I in order to complete this quest.", + ["T"] = "Desert Survival Kits", + }, + [8498] = { + ["D"] = "Our scouts have reported new battle orders being issued by the Twilight\'s Hammer leaders. The orders are being distributed by Twilight Prophets under heavy escort. Intercept the orders and bring them to Commander Mar\'alith.", + ["O"] = "Obtain the Twilight Battle Orders and bring them Commander Mar\'alith at Cenarion Hold in Silithus. You must also bring Tactical Task Briefing X in order to complete this quest.", + ["T"] = "Twilight Battle Orders", + }, + [8499] = { + ["D"] = "It is very kind of you to inquire about the needs that the Alliance has. In addition to all of the other collection efforts underway, we are in need of a great quantity of thorium bars, which is the task that I am in charge of. The thorium will be used in the creation of many different things for the war, foremost of which is the construction of a battalion of steam tanks to be airlifted into Silithus as soon as they are completed. Can you aid us in this endeavor, $c?", + ["O"] = "Bring 20 Thorium Bars to Dame Twinbraid at the Military Ward in Ironforge.", + ["T"] = "The Alliance Needs Thorium Bars!", + }, + [8500] = { + ["D"] = "It is so good to see you again $N. I hope that you\'ve been doing well. It\'s true that we are still in need of thorium bars. If you have them to spare I am collecting them for the Ahn\'Qiraj war effort.", + ["O"] = "Bring 20 thorium bars to Dame Twinbraid at the airfield in Dun Morogh.", + ["T"] = "The Alliance Needs More Thorium Bars!", + }, + [8501] = { + ["D"] = "As the war effort mounts, the silithid presence in the area presents an ever increasing threat to our operations. You\'ve been selected to partake on an assault on Hive\'Ashi where your primary target will consist of the airborne Hive\'Ashi stingers.$B$BReport back to Commander Mar\'alith after your task is completed.", + ["O"] = "Kill 30 Hive\'Ashi Stingers and report back to Commander Mar\'alith at Cenarion Hold in Silithus. You must also bring Combat Task Briefing XII in order to complete this quest.", + ["T"] = "Target: Hive\'Ashi Stingers", + }, + [8502] = { + ["D"] = "As the war effort mounts, the silithid presence in the area presents an ever increasing threat to our operations. You\'ve been selected to partake on an assault on Hive\'Ashi where your primary target will consist of Hive\'Ashi workers.$B$BReport back to Commander Mar\'alith after your task is completed.", + ["O"] = "Slay 30 Hive\'Ashi Workers and report back to Commander Mar\'alith at Cenarion Hold in Silithus. You must also bring Combat Task Briefing III in order to complete this quest.", + ["T"] = "Target: Hive\'Ashi Workers", + }, + [8503] = { + ["D"] = "So, $c, did I already tell you about all of the fabulous uses stranglekelp has? I did? Oh well... in any case we need a lot of it, and when I say a lot, I mean A LOT! Do you think that you could help us out? I know that it means going without all of those wonderful things that you can make with it, but it\'s for a good cause!", + ["O"] = "Bring 20 Stranglekelp to Private Draxlegauge at the Military Ward in Ironforge.", + ["T"] = "The Alliance Needs Stranglekelp!", + }, + [8504] = { + ["D"] = "Well hello again there... what was it? Ah yes, $N! Come to see if I still need more stranglekelp have you? Well, it\'s your lucky day, because the answer to that very important question is a very affirmative YES! Think you could gather up twenty more?", + ["O"] = "Bring 20 stranglekelp to Private Draxlegauge at the airfield in Dun Morogh.", + ["T"] = "The Alliance Needs More Stranglekelp!", + }, + [8505] = { + ["D"] = "$C, the purple lotus is a flower with a plentitude of uses. I am here at the request of the Alliance as an authority on those applications, to preserve the herbs collected and to ensure that their war effort acquires enough purple lotus to sustain whatever function they plan for it.$B$BI would like for you to travel out into the world and return to me with some of these flowers. Is that something that you can do?", + ["O"] = "Bring 20 Purple Lotus to Master Nightsong at the Military Ward in Ironforge.", + ["T"] = "The Alliance Needs Purple Lotus!", + }, + [8506] = { + ["D"] = "Welcome back $c. Our collection grows, but even now we have a need for additional purple lotus. If it is still within your power to gather more of the herb, I entreat you to do so and return them to me here.", + ["O"] = "Bring 20 purple lotus to Master Nightsong at the airfield in Dun Morogh.", + ["T"] = "The Alliance Needs More Purple Lotus!", + }, + [8507] = { + ["D"] = "Greetings, $N. Before I assign you to more involved tasks in the war, you\'ll need to do your share of field duty. $B$BYou will find Captain Blackanvil\'s Ironforge Brigade outside Hive\'Zora.$B$BReport to him or his lieutenant, Janela Stouthammer and come back to me. I shall have a more advanced assignment for you ready.$B$BOh and please do us a favor and stay away from the Orgrimmar Legion. We\'ve been forced to keep the two forces well apart from one another due to mutual animosity.", + ["O"] = "Report for duty at the Ironforge Brigade post near Hive\'Zora. Prepare your Unsigned Field Duty Papers and obtain Signed Field Duty Papers from Captain Blackanvil and return to Windcaller Kaldon at Cenarion Hold in Silithus.$B$BNote: Healing or casting beneficial spells on a member of the Ironforge Brigade will flag you for PvP.", + ["T"] = "Field Duty", + }, + [8508] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Field Duty Papers", + }, + [8509] = { + ["D"] = "I\'ll keep it simple and to the point, $c. The Alliance needs to collect a large quantity of Arthas\' Tears for the Ahn\'Qiraj war effort. Don\'t ask me what for; I\'m just following orders. But I\'d like you to gather up as many of the herbs as you can and bring them back to me here. Are you willing to do that?", + ["O"] = "Bring 20 Arthas\' Tears to Sergeant Major Germaine at the Military Ward in Ironforge.", + ["T"] = "The Alliance Needs Arthas\' Tears!", + }, + [8510] = { + ["D"] = "Ok, so it looks like I still need more Arthas\' Tears. I would imagine that you will be able to find them in the general location that you gathered them up for me last time. The quicker we get these, the faster we can start up the offensive against the forces at Ahn\'Qiraj.$B$BYou gonna help us out again $c?", + ["O"] = "Bring 20 arthas\' tears to Sergeant Major Germaine at the airfield in Dun Morogh.", + ["T"] = "The Alliance Needs More Arthas\' Tears!", + }, + [8511] = { + ["D"] = "We Stoneflayers have a long history of being skinners, $c. That\'s why the Alliance has asked my family to help out with the collection of light leather for the Ahn\'Qiraj war effort. I\'m here to see to it that the leather is tanned correctly for whatever they want to put it to use for. But we need your help.$B$BSince I have to be here doing that, I need you to go out and collect the skins, returning them to me here. What do you say, $g lad : lass;, will you give it a go?", + ["O"] = "Bring 10 Light Leather to Bonnie Stoneflayer at the Military Ward in Ironforge.", + ["T"] = "The Alliance Needs Light Leather!", + }, + [8512] = { + ["D"] = "Good to see you again $N. It does appear that we need more light leather for the creation of the various war materiel. If you could bring me a stack of ten that would be just perfect.", + ["O"] = "Bring 10 light leather to Bonnie Stoneflayer at the airfield in Dun Morogh.", + ["T"] = "The Alliance Needs More Light Leather!", + }, + [8513] = { + ["D"] = "Yes $g sir : ma\'am;, I have been charged with collecting and tracking all of the medium leather gathered for the war effort. If you have the wherewithal to gather medium leather, from whatever source, then please bring them to me here. I sure would appreciate a hand with this if you can spare the time.", + ["O"] = "Bring 10 Medium Leather to Private Porter at the Military Ward in Ironforge.", + ["T"] = "The Alliance Needs Medium Leather!", + }, + [8514] = { + ["D"] = "Yes $g sir : ma\'am;, looks like we\'ve collected $2063w pieces of medium leather to date. I know it\'s a lot to ask, but if you\'re still willing, I could use your help in attempting to put a dent in the rest of my quota.", + ["O"] = "Bring 10 medium leather to Private Porter at the airfield in Dun Morogh.", + ["T"] = "The Alliance Needs More Medium Leather!", + }, + [8515] = { + ["D"] = "Oh boy, this is going to be great! $C, the Ahn\'Qiraj war effort is in full swing, and I\'ve been put in charge of keeping track of all of the thick leather that comes in. We\'ll make tons of things with it, but first we need to get a ton of it. And I mean that literally! That\'s where you come in.$B$BSo, do you think you can go out there and bring me back a nice, fat stack of thick leather? Do yah, do yah?!", + ["O"] = "Bring 10 Thick Leather to Marta Finespindle at the Military Ward in Ironforge.", + ["T"] = "The Alliance Needs Thick Leather!", + }, + [8516] = { + ["D"] = "Yep, the stack\'s still not high enough. $N, we still haven\'t reached our goal of $2071w thick leather. Just think of all the things that we can make with all of that leather! All kinds of armor and weapons. Stuff for inside the steam tanks and rifle scopes! Engineering goggles, and I bet if it ends up that we collect too much we could give the rest to the Horde for their zeppelins!$B$BYou gonna bring me back some more thick leather?", + ["O"] = "Bring 10 thick leather to Marta Finespindle at the airfield in Dun Morogh.", + ["T"] = "The Alliance Needs More Thick Leather!", + }, + [8517] = { + ["D"] = "The war at Ahn\'Qiraj is going to be long and bloody. It is a very wise thing that the Alliance is doing by enlisting the aid of you, and those like you, to build up the materiel necessary before plunging headlong into conflict.$B$BI have been asked to head up the collection of linen bandages for the war, and I am hoping that you are going to assist me in amassing as many as we need. It is no light matter, but at least the linen bandages are the least difficult to create. Are you with us, $c?", + ["O"] = "Bring 20 Linen Bandages to Sentinel Silversky at the Military Ward in Ironforge.", + ["T"] = "The Alliance Needs Linen Bandages!", + }, + [8518] = { + ["D"] = "Ever am I amazed by the selflessness exhibited when so many would instead turn to selfishness instead. $C, I am still in need of a number of linen bandages before my assignment here is fulfilled. Will you aid me once more in the collection of those bandages?", + ["O"] = "Bring 20 linen bandages to Sentinel Silversky at the airfield in Dun Morogh.", + ["T"] = "The Alliance Needs More Linen Bandages!", + }, + [8519] = { + ["D"] = "As you regain your composure and focus your gaze, you notice that something stirs within the crystal. Upon closer inspection, you realize that you are looking into the past... a memory... long forgotten.", + ["O"] = "Learn all that you can of the past, then speak with Anachronos at the Caverns of Time in Tanaris.", + ["T"] = "A Pawn on the Eternal Board", + }, + [8520] = { + ["D"] = "With the Ahn\'Qiraj War looming we need to do everything that we can to see to it that our soldiers have everything that they need. We\'re doing just that right here. For my part I\'ve been placed in charge of seeing to it that we collect enough silk bandages.$B$BDo you think you can help me out, $c?", + ["O"] = "Bring 20 Silk Bandages to Nurse Stonefield at the Military Ward in Ironforge.", + ["T"] = "The Alliance Needs Silk Bandages!", + }, + [8521] = { + ["D"] = "It is very kind of you to offer to help me again $c. It looks like we\'ve collected $2082w silk bandages, so we\'ll need more.", + ["O"] = "Bring 20 silk bandages to Nurse Stonefield at the airfield in Dun Morogh.", + ["T"] = "The Alliance Needs More Silk Bandages!", + }, + [8522] = { + ["D"] = "Argue the merits of the war if you will, $c, but it has already been set in motion. Look around you at your family and friends, and then ask yourself what it is that you can do to see to it that if they are involved, they will have every advantage to survive the conflagration.$B$BTo that end, I am collecting runecloth bandages here from whatever source. Would you like to make a donation?", + ["O"] = "Bring 20 Runecloth Bandages to Keeper Moonshade at the Military Ward in Ironforge.", + ["T"] = "The Alliance Needs Runecloth Bandages!", + }, + [8523] = { + ["D"] = "So it is that we come to discuss pressing matters yet again $c. Once more I thank you for your previous efforts; it is not everyone who would give so selflessly. But there is still more work to do.$B$B$N, will you once more collect runecloth bandages and return them to me here?", + ["O"] = "Bring 20 runecloth bandages to Keeper Moonshade at the airfield in Dun Morogh.", + ["T"] = "The Alliance Needs More Runecloth Bandages!", + }, + [8524] = { + ["D"] = "Hey there, friend! If I were to say to you, \'Don\'t you think that soldiers should have food to eat like anyone else?\', you would of course reply, \'yes\'. I agree with you 110%! I\'m glad we\'re in accord. All I need for you to do is to head out there, fish up a whole bunch of raw rainbow fin albacore, and then cook it all up and bring it back to me right here. Mmm, mmm, I can taste it already.", + ["O"] = "Bring 20 Rainbow Fin Albacore to Slicky Gastronome at the Military Ward in Ironforge.", + ["T"] = "The Alliance Needs Rainbow Fin Albacore!", + }, + [8525] = { + ["D"] = "What! You again? Well I\'ll be a monkey\'s uncle... except that I\'m a gnome. Slicky Gastronome to be precise! So you\'re back to help out again eh? Well, I can\'t say as I blame you. Don\'t you just love the smell of all of that food? $B$BEnough loitering! Get out there and bring me back more rainbow fin albacore!", + ["O"] = "Bring 20 rainbow fin albacore to Slicky Gastronome at the airfield in Dun Morogh.", + ["T"] = "The Alliance Needs More Rainbow Fin Albacore!", + }, + [8526] = { + ["D"] = "Oh, how\'s it going, $c? I see that you\'re interested in maybe gathering up food for the coming war at Ahn\'Qiraj? Somehow my dad thought that it would be a good learning experience for me if I were to volunteer to help out here. Big mistake. I don\'t even like to eat meat.$B$BAnyway, if you feel like it, you could bring me back a lot of roast raptor. Apparently that\'s what all of the soldiers are going to want.", + ["O"] = "Bring 20 Roast Raptor to Sarah Sadwhistle at the Military Ward in Ironforge.", + ["T"] = "The Alliance Needs Roast Raptor!", + }, + [8527] = { + ["D"] = "Hi again $c. I can tell you\'re very excited about all of this. So I suppose you want to bring me another twenty roast raptor. Great. Well you do that. I guess I\'ll see you when you get back.", + ["O"] = "Bring 20 roast raptor to Sarah Sadwhistle at the airfield in Dun Morogh.", + ["T"] = "The Alliance Needs More Roast Raptor!", + }, + [8528] = { + ["D"] = "It may not seem heroic to gather up cooked fish, but do not underestimate the value of preparation, young $c. Soldiers need to eat like anyone else, and we\'re here to do our part to make sure they have what they need once the war in Ahn\'Qiraj commences.$B$BAccordingly, I am stockpiling spotted yellowtail, a versatile source of sustenance that stores well and can be used in many different dishes. It also doesn\'t have the odor of some other saltwater fish. Are you willing to aid me in this endeavor?", + ["O"] = "Bring 20 Spotted Yellowtail to Huntress Swiftriver at the Military Ward in Ironforge.", + ["T"] = "The Alliance Needs Spotted Yellowtail!", + }, + [8529] = { + ["D"] = "If you\'re still willing I\'d like to send you back out to bring in another haul of spotted yellowtail, $N. I\'d imagine with the expertise you gained the first time out that this catch should be much faster and easier. Are you game?", + ["O"] = "Bring 20 spotted yellowtail to Huntress Swiftriver at the airfield in Dun Morogh.", + ["T"] = "The Alliance Needs More Spotted Yellowtail!", + }, + [8530] = { + ["D"] = "$C, I need your help. In the Molten Core there are these stones, singed Corestones to be precise, that we need to harvest for the Ahn\'Qiraj war effort. I\'m told that our blacksmiths and engineers can put them to good use, so that\'s where you come in. I need you to go into the Molten Core and gather up as many of these corestones as you can. Of course, you\'ll want to talk thirty-nine of your closest friends along with you.", + ["O"] = "Bring 50 singed corestones to Commander Stronghammer at the airfield in Dun Morogh.", + ["T"] = "The Alliance Needs Singed Corestones!", + }, + [8532] = { + ["D"] = "So glad that you\'ve decided to help out here. Not everyone would, so I need to make sure you understand what it is that I need. Copper bars, not copper ore. We don\'t have the time or people to do all of the smelting ourselves, so if you would be so kind as to take care of that, your efforts will be duly noted. Is that something that you can handle, $c?", + ["O"] = "Bring 20 Copper Bars to Miner Cromwell at the Valley of Spirits in Orgrimmar.", + ["T"] = "The Horde Needs Copper Bars!", + }, + [8533] = { + ["D"] = "Back so soon? You\'ll be a real miner in no time $c. So, you already know the drill; I need you to go out, mine up a mess of copper ore, smelt it into bars and bring it back to me here. I know that\'s something you\'re capable of, the question is, are you willing?", + ["O"] = "Bring 20 copper bars to Miner Cromwell in Durotar.", + ["T"] = "The Horde Needs More Copper Bars!", + }, + [8534] = { + ["D"] = "We\'ve sent our best scouts deep into the silithid hives to gather intelligence. Scout Azenel has been watching the silithid movements at Hive\'Zora for several days now. Find her and obtain a written report. We need to be able to act on that information as soon as possible, $N.", + ["O"] = "Contact Cenarion Scout Azenel inside Hive\'Zora and return the Hive\'Zora Scout Report to Windcaller Proudhorn at Cenarion Hold. You must also bring Tactical Task Briefing VI in order to complete this quest.", + ["T"] = "Hive\'Zora Scout Report", + }, + [8535] = { + ["D"] = "The Twilight\'s Hammer and the elemental nobles they worship present a formidable threat to our operations in Silithus. With the new enemies we\'re facing inside Ahn\'Qiraj, we cannot afford to lower our guard to our enemies outside.$B$BFind a way to summon and destroy a Hoary Templar and report to Bor Wildmane.", + ["O"] = "Summon and slay a Hoary Templar and report back to Bor Wildmane in Cenarion Hold. You must also bring Tactical Task Briefing IV in order to complete this quest.", + ["T"] = "Hoary Templar", + }, + [8536] = { + ["D"] = "The Twilight\'s Hammer and the elemental nobles they worship present a formidable threat to our operations in Silithus. With the new enemies we\'re facing inside Ahn\'Qiraj, we cannot afford to lower our guard to our enemies outside.$B$BFind a way to summon and destroy an Earthen Templar and report to Bor Wildmane.", + ["O"] = "Summon and slay an Earthen Templar and report back to Bor Wildmane in Cenarion Hold. You must also bring Tactical Task Briefing III in order to complete this quest.", + ["T"] = "Earthen Templar", + }, + [8537] = { + ["D"] = "The Twilight\'s Hammer and the elemental nobles they worship present a formidable threat to our operations in Silithus. With the new enemies we\'re facing inside Ahn\'Qiraj, we cannot afford to lower our guard to our enemies outside.$B$BFind a way to summon and destroy a Crimson Templar and report to Bor Wildmane.", + ["O"] = "Summon and slay a Crimson Templar and report back to Bor Wildmane in Cenarion Hold. You must also bring Tactical Task Briefing II in order to complete this quest.", + ["T"] = "Crimson Templar", + }, + [8538] = { + ["D"] = "The links between the Twilight\'s Hammer and the Abyssal Council are proving to be more important than we had expected.$B$BWe believe the elemental nobles known as the Abyssal Dukes are one of the primary force organizing the Twilight\'s Hammer cultists. Find a way to lure the four Abyssal Dukes into our plane of existence and destroy them!$B$BYour dedication and prowess in past assignments have led us to choose you for this particular assignment. We are certain you will succeed in this endeavor.", + ["O"] = "Find a way to summon and slay the Duke of Cynders, the Duke of Fathoms, the Duke of Zephyrs and the Duke of Shards and report back to Commander Mar\'alith in Cenarion Hold. You must also bring Tactical Task Briefing V in order to complete this quest.", + ["T"] = "The Four Dukes", + }, + [8539] = { + ["D"] = "Reinforcements have been called on to join the assault on Hive\'Zora. You have been selected to target Hive\'Zora hive sisters. Report back to Commander Mar\'alith after completing your task.", + ["O"] = "Slay 30 Hive\'Zora Hive Sisters and report back to Commander Mar\'alith at Cenarion Hold in Silithus. You must also bring Combat Task Briefing V in order to complete this quest.", + ["T"] = "Target: Hive\'Zora Hive Sisters", + }, + [8540] = { + ["D"] = "The mounted division of the Cenarion Hold guard is in short supply of ornate mithril boots. Procure a batch and deliver them immediately to Captain Vish Kozus in Cenarion Hold.", + ["O"] = "Bring 3 Ornate Mithril Boots to Vish Kozus, Captain of the Guard at Cenarion Hold in Silithus. You must also bring Logistics Task Briefing II in order to complete this quest.", + ["T"] = "Boots for the Guard", + }, + [8541] = { + ["D"] = "The Cenarion Hold guard is in short supply of grinding stones. Procure a batch and deliver them immediately to Captain Vish Kozus in Cenarion Hold.", + ["O"] = "Bring 10 Dense Grinding Stones, 10 Solid Grinding Stones and 10 Heavy Grinding Stones to Vish Kozus, Captain of the Guard at Cenarion Hold in Silithus. You must also bring Logistics Task Briefing III in order to complete this quest.", + ["T"] = "Grinding Stones for the Guard", + }, + [8542] = { + ["D"] = "Lok\'tar, $r, I\'m sure you already know that we\'re going to war at Ahn\'Qiraj with the insects. But first the Warchief has decided that we\'re going to do something called \'prepare\'. Though I\'d rather be sharpening weapons and hammering armor into shape, I\'m proud to have been chosen to be in charge of tin bar collection here. But I cannot do that without your help.$B$BSo I need you to go out and make tin bars and bring them back to me here. I think I\'m going to need more than I can count.", + ["O"] = "Bring 20 Tin Bars to Grunt Maug at the Valley of Spirits in Orgrimmar.", + ["T"] = "The Horde Needs Tin Bars!", + }, + [8543] = { + ["D"] = "Very good, I see that you are serious about the war. I\'m a little edgy waiting for it to start though, which means I\'m going to get angry if you don\'t start bringing in the goods faster. Maybe I can just practice on you instead.$B$BHar! Maybe not, \'cuz then who would bring me back the tin bars?", + ["O"] = "Bring 20 tin bars to Grunt Maug in Durotar.", + ["T"] = "The Horde Needs More Tin Bars!", + }, + [8544] = { + ["D"] = "It is said among us that the ornate shoulder armor worn by the mortal races started as an attempt to emulate the wings of a dragon.$B$BBring me the bindings worn by the highest Qiraji leaders and I shall shape them into a set of pauldrons more dreadful than even the wings of Nefarian himself!", + ["O"] = "Bring the Qiraji Bindings of Command, 2 Idols of Night, 5 Stone Scarabs and 5 Clay Scarabs to Andorgos in Ahn\'Qiraj. You must also attain Neutral reputation with the Brood of Nozdormu to complete this quest.", + ["T"] = "Conqueror\'s Spaulders", + }, + [8545] = { + ["D"] = "$C, the war it is comin\' and the only thing we can do is prepare for it. That be where you and I can help each other, mon. Ya see, they put me in charge of collectin\' all the mithril bars we be needin\' ta build for all the things we gonna need. An I still be needin\' more!$B$BSo, I be hopin\' that you can get out there an mine us up some mithril, then smelt it into bars. Sound like something you can do for us?", + ["O"] = "Bring 20 Mithril Bars to Senior Sergeant T\'kelah at the Valley of Spirits in Orgrimmar.", + ["T"] = "The Horde Needs Mithril Bars!", + }, + [8546] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Horde Needs More Mithril Bars!", + }, + [8548] = { + ["D"] = "The badges you collect from performing combat, logistics and tactical assignments for Cenarion Hold are more than just for show, $N.$B$BYou\'d be wise to hold on to them. As you prove your loyalty to our organization I can offer you some of the gear we reserve for our closest allies in exchange for those badges. ", + ["O"] = "Bring 5 Cenarion Combat Badges, 3 Cenarion Logistics Badges and 7 Cenarion Tactical Badges to Vargus at Cenarion Hold in Silithus. You must also attain Friendly reputation with Cenarion Circle to be able to complete this quest.", + ["T"] = "Volunteer\'s Battlegear", + }, + [8549] = { + ["D"] = "It is said that every generation must face a defining trial. I fear the Ahn\'Qiraj War will be the crucible in which our mettle is tested. So we prepare, and in so doing find what we are made of.$B$BI have volunteered to help the Horde by gathering as much peacebloom as possible, so that it can be made into potions for the war. I hope that you are here to lend me your aid. If so, then I need you to bring back to me a good quantity of the herb. Will you assist me, $c?", + ["O"] = "Bring 20 Peacebloom to Herbalist Proudfeather at the Valley of Spirits in Orgrimmar.", + ["T"] = "The Horde Needs Peacebloom!", + }, + [8550] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Horde Needs More Peacebloom!", + }, + [8551] = { + ["D"] = "I used to sail a ship from here all the way to Ratchet, in Kalimdor. I was a successful captain with a sterling reputation.$B$BUntil...$B$BThose cursed sea giants ruined me! They smashed my ship, killed my crew, and set me on a lifeboat to Booty Bay. And one of the giants, Gorlash, stole my Captain\'s Chest. He said he wanted it for a snuffbox. The nerve!$B$BI hear Gorlash wanders the coast east of here. Find him and get back my chest! Do that, and you\'ll have earned a captain\'s gratitude.", + ["O"] = "Bring Smotts\' Chest to Hecklebury Smotts in Booty Bay.", + ["T"] = "The Captain\'s Chest", + }, + [8552] = { + ["D"] = "This fine sash has the letters \"HS\" embroidered along its hem.", + ["O"] = "Return the Monogrammed Sash to its owner.", + ["T"] = "The Monogrammed Sash", + }, + [8553] = { + ["D"] = "After I lost my first ship to those giants, I bought another. Named Smotts\' Revenge, I filled it with supplies and crew, and set out to find the villains. I found them, but...they beat me. They smashed Smotts\' Revenge, killed my second crew and set me on another lifeboat.$B$BThis time another of the giants, Negolash, stole my cutlass.$B$BFace Negolash and bring me my cutlass!$B$BSpeak with Sprogger. He was my cook on the Smotts\' Revenge, and survived the last attack. He can help you find the giant.", + ["O"] = "Speak with Sprogger.", + ["T"] = "The Captain\'s Cutlass", + }, + [8554] = { + ["D"] = "Negolash is a hungry giant.$B$BWhen the giants destroyed our ship, Negolash went straight for my kitchen. He wasn\'t hungry for crew like the other giants. Negolash wanted wine...and my Barbecued Buzzard Wings. They\'re my specialty, and I had to go all the way to the Badlands for the recipe!$B$BIf you want to lure the giant, then get some wine and a heap of buzzard wings. Put them in our old lifeboat, southeast of here along the coast. When Negolash smells all that food, he\'ll come for sure!", + ["O"] = "Bring 10 Barbecued Buzzard Wings and 5 bottles of Junglevine Wine to Captain Smotts\' Lifeboat.$B$BKill Negolash, and bring Smotts\' Cutlass to Captain Smotts in Stranglethorn.", + ["T"] = "Facing Negolash", + }, + [8555] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Charge of the Dragonflights", + }, + [8556] = { + ["D"] = "The rings worn by the Qiraji lieutenants are rumored to grant them formidable abilities. The corrupted gems that adorn them could, in theory, be swapped out with more pure materials to create uncorrupted versions of the rings.$B$BThe gems that adorn Qiraji idols would work quite well, as their quality is superior.$B$BBring me the ring and idols and I\'ll create a powerful ring for you, $c.", + ["O"] = "Bring 1 Qiraji Magisterial Ring, 2 Lambent Idols, 5 Bronze Scarabs and 5 Ivory Scarabs to Windcaller Yessendra in Silithus. You must also attain Honored reputation with Cenarion Circle to complete this quest.", + ["T"] = "Signet of Unyielding Strength", + }, + [8557] = { + ["D"] = "I\'m glad to hear you\'re aiding us in our attack on Ahn\'Qiraj, $N. I can make you a protective item that\'ll be of assistance in the fight against our enemy, $c.$B$BI shall need a Qiraji drape, which I\'ll resize for you of course. I\'ll also need idols and scarabs which I\'ll use to create a suitable clasp.$B$BI promise you won\'t be disappointed.", + ["O"] = "Bring 1 Qiraji Martial Drape, 2 Onyx Idols, 5 Silver Scarabs and 5 Bone Scarabs to Keyl Swiftclaw in Silithus. You must also obtain Revered reputation with Cenarion Circle to complete this quest.", + ["T"] = "Drape of Unyielding Strength", + }, + [8558] = { + ["D"] = "The Qiraji and their servants wield items made with the rarest and finest materials: bones from gargantuan ancient creatures, gems from the depths of the earth, metals pure and strong.$B$BJust the sight of Qiraji artifacts fills me with an urge to practice my craft with their shattered and smelted pieces. Prove your allegiance to the Circle, $N, and I will make you a powerful weapon from the finest Qiraji materials.", + ["O"] = "Bring 1 Qiraji Spiked Hilt, 2 Alabaster Idols, 5 Crystal Scarabs and 5 Stone Scarabs to Warden Haro in Silithus. You must also attain Exalted reputation with Cenarion Circle to complete this quest.", + ["T"] = "Sickle of Unyielding Strength", + }, + [8559] = { + ["D"] = "Qiraji magic is strong and ancient. The most powerful qiraji wield items of such might, they\'d give pause even to a dragon.$B$BBring me the qiraji bindings of command and other minor components by and I\'ll create a set of powerful boots for you.$B$BYou will find them useful in the fight against the enemy.", + ["O"] = "Bring the Qiraji Bindings of Command, 2 Idols of War, 5 Ivory Scarabs and 5 Gold Scarabs to Kandrostrasz in Ahn\'Qiraj. This quest also requires Neutral faction with the Brood of Nozdormu.", + ["T"] = "Conqueror\'s Greaves", + }, + [8560] = { + ["D"] = "You seek to prove your worth to my kind, mortal? Very well, perhaps we can be of mutual assistance.$B$BThe ancient sandworm, Ouro, is a being of legendary power. He is rumored to have been created by the Old God himself as a mockery of life.$B$BHis skin is unnatural... thick, nearly impregnable, yet it\'s flexible and allows him to move with the speed and grace of a much smaller creature.$B$BBring me a sample of his skin along with other minor components and I shall craft you leggings of great power.", + ["O"] = "Bring Ouro\'s Intact Hide, 2 Idols of Death, 5 Bronze Scarabs and 5 Ivory Scarabs to Kandrostrasz inside Ahn\'Qiraj. You must also attain Friendly reputation with the Brood of Nozdormu to complete this quest.", + ["T"] = "Conqueror\'s Legguards", + }, + [8561] = { + ["D"] = "The Twin Emperors... their incessant whispers are slowly taking a toll on my sanity. They mock me, knowing I cannot step further into their domain to save my brother Arygos.$B$BIn my visions I see their monstrous faces adorned by powerful crowns. But I will have my revenge... I will transmute these symbols of Qiraji power to ones better suited to our needs.$B$BBring me the components I require, $N. I will give you a headpiece of unmatched power.", + ["O"] = "Bring Vek\'nilash\'s Circlet, 2 Idols of the Sun, 5 Stone Scarabs and 5 Crystal Scarabs to Andorgos in Ahn\'Qiraj. You must also attain Friendly reputation with the Brood of Nozdormu to complete this quest.", + ["T"] = "Conqueror\'s Crown", + }, + [8562] = { + ["D"] = "The unmentionable Old God slowly awakens from his slumber beneath Ahn\'Qiraj. The terrible fate that awaits Azeroth could come in days or years; time has no meaning for beings of his power.$B$BWhen the stars are favorable, he will lash out against all living beings with terrible wrath. You must find him before then and find a way to bring his existence to an end.$B$BDo this and bring me a piece of his husk. I shall grant you armor no mortal has ever worn... armor fit for one who has slain a god!", + ["O"] = "Bring the the Carapace of the Old God, 2 Idols of War, 5 Silver Scarabs and 5 Bone Scarabs to Vethsera inside Ahn\'Qiraj. You must also attain Honored reputation with the Brood of Nozdormu to complete this quest.", + ["T"] = "Conqueror\'s Breastplate", + }, + [8565] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Past Victories in Arathi", + }, + [8566] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Past Victories in Arathi", + }, + [8567] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Past Victories in Warsong Gulch", + }, + [8568] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Past Victories in Warsong Gulch", + }, + [8569] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Past Efforts in Warsong Gulch", + }, + [8570] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Past Efforts in Warsong Gulch", + }, + [8572] = { + ["D"] = "The badges you collect from performing combat, logistics and tactical assignments for Cenarion Hold are more than just for show, $N.$B$BYou\'d be wise to hold on to them. As you prove your loyalty to our organization I can offer you some of the gear we reserve for our closest allies in exchange for those badges.", + ["O"] = "Bring 7 Cenarion Combat Badges, 4 Cenarion Logistics Badges and 4 Cenarion Tactical Badges to Vargus at Cenarion Hold in Silithus. You must also attain Honored reputation with Cenarion Circle to be able to complete this quest.", + ["T"] = "Veteran\'s Battlegear", + }, + [8573] = { + ["D"] = "The badges you collect from performing combat, logistics and tactical assignments for Cenarion Hold are more than just for show, $N.$B$BYou\'d be wise to hold on to them. As you prove your loyalty to our organization I can offer you some of the gear we reserve for our closest allies in exchange for those badges.", + ["O"] = "Bring 15 Cenarion Combat Badges, 20 Cenarion Logistics Badges, 20 Cenarion Tactical Badges and 1 Mark of Cenarius to Vargus at Cenarion Hold in Silithus. You must also attain Exalted reputation with Cenarion Circle to be able to complete this quest.", + ["T"] = "Champion\'s Battlegear", + }, + [8574] = { + ["D"] = "The badges you collect from performing combat, logistics and tactical assignments for Windcaller Proudhorn are more than just for show, $N.$B$BYou\'d be wise to hold on to them. As you prove your loyalty to our organization I can offer you some of the gear we reserve for our closest allies in exchange for those badges.", + ["O"] = "Bring 15 Cenarion Combat Badges, 20 Cenarion Logistics Badges, 17 Cenarion Tactical Badges and 1 Mark of Remulos to Vargus at Cenarion Hold in Silithus. You must also attain Revered reputation with Cenarion Circle to be able to complete this quest.", + ["T"] = "Stalwart\'s Battlegear", + }, + [8575] = { + ["D"] = "You cannot understand a single word on this ledger. You don\'t even know what language it is written in!", + ["O"] = "Deliver Azuregos\'s Magical Ledger to Narain Soothfancy in Tanaris.", + ["T"] = "Azuregos\'s Magical Ledger", + }, + [8576] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Translating the Ledger", + }, + [8577] = { + ["D"] = "If I am to translate anything, I will need my scrying goggles. Unfortunately, those were stolen quite some time ago by my ex-best friend forever, Stewvul. He broke my heart in five places and then left me here to rot.$B$BWith the help of my trusty crystal ball, I\'ve isolated his whereabouts to either the Greymane Wall in Silverpine or what appears to be a portal world in the Outland that is currently being overrun by the Burning Legion. You\'re going to have to track him down and get my goggles back, $N!", + ["O"] = "Narain Soothfancy wants you to find his ex-best friend forever (BFF), Stewvul, and take back the scrying goggles that Stewvul stole from him.", + ["T"] = "Stewvul, Ex-B.F.F.", + }, + [8578] = { + ["D"] = "$B$BYou just want his scrying goggles? Great! That will be no problem... Just give me a minute to... Hey! Where the... Dagnabbit!$B$BWell, there\'s some bad news and some worse news. The bad news is that I lost the goggles. The worse news is that I lost them when I was nosing around in the Molten Core last month. Yep, the Molten Core... I guess that concludes our business! Bye!", + ["O"] = "Find Narain\'s Scrying Goggles and return them to Narain Soothfancy in Tanaris.", + ["T"] = "Scrying Goggles? No Problem!", + }, + [8579] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Mortal Champions", + }, + [8580] = { + ["D"] = "Hey, $c. Ya you, mon! There be a whole mess of firebloom the Horde thinkin\' they need for this Ahn\'Qiraj war effort. Maybe they put it in nice things that go boom? Maybe they give it to the Alliance as fuel for their steam tanks? Who knows? Not Pele\'keiki!$B$BPele\'keiki know this though... he know you gonna help him out and bring back lots of the firebloom, right, mon?", + ["O"] = "Bring 20 Firebloom to Batrider Pele\'keiki at the Valley of Spirits in Orgrimmar.", + ["T"] = "The Horde Needs Firebloom!", + }, + [8581] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Horde Needs More Firebloom!", + }, + [8582] = { + ["D"] = "The purple lotus, $c, is a reagent in a great many potions, elixirs and oils, some of which will be of use to us at Ahn\'Qiraj. We\'re going to need to create an immense number of those potions for the war effort. And I\'m going to experiment to find more uses for the lotus as well. But to do all of that I\'m going to need a great quantity of the flower.$B$BThat\'s where you come in. Go out into the field and collect up as many purple lotuses as you can. Is this something that you are willing to do for us?", + ["O"] = "Bring 20 Purple Lotus to Apothecary Jezel at the Valley of Spirits in Orgrimmar.", + ["T"] = "The Horde Needs Purple Lotus!", + }, + [8583] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Horde Needs More Purple Lotus!", + }, + [8584] = { + ["D"] = "If there is one thing that you should know about me, it is this: NEVER ask me about my business! I work with things you simply cannot understand. Like for example: Do you know what a psychotronic muzzledorf is? Of course you don\'t! And that\'s why we leave the planning to me and the fetching to you.$B$BAs I said earlier, if this is going to work, we\'re going to need a 500 pound chicken.$B$BHead to Gadgetzan and speak with Dirge Quikcleave - he\'ll get you started on finding a suitable specimen.", + ["O"] = "Narain Soothfancy in Tanaris wants you to speak with Dirge Quikcleave in Gadgetzan.", + ["T"] = "Never Ask Me About My Business", + }, + [8585] = { + ["D"] = "Legend has it that the chimaerok of the Isle of Dread in Feralas have the most succulent and tender vittles in existence! Now these chimaerok also have a daddy who, with proper preparation, may or may not look like a 500 pound chicken.$B$BHead to the Isle of Dread and kill Lord Lakmaeran and bring me his fresh carcass. That should satisfy the gnome. To satisfy me, you\'ll need to get your hands on some chimaerok tenderloin.$B$BDo this and you\'ll have your 500 pound chicken and a little something extra.", + ["O"] = "Recover Lakmaeran\'s Carcass and 20 Chimaerok Tenderloins for Dirge Quickcleave in Tanaris.", + ["T"] = "The Isle of Dread!", + }, + [8586] = { + ["D"] = "My recipe is complete! What I need from you now is some rocket fuel and deeprock salt. I\'ll handle the spices and the meat you brought me will cover the rest.$B$BAfter you bring me what I asked for, the chicken will be ready to take back to Narain.", + ["O"] = "Dirge Quikcleave in Gadgetzan wants you to bring him 20 Goblin Rocket Fuel and 20 Deeprock Salt.", + ["T"] = "Dirge\'s Kickin\' Chimaerok Chops", + }, + [8587] = { + ["D"] = "I\'m a goblin of my word, kid. Here\'s your 500 pound chicken.$B$BWhat a gnome wants with a 500 pound chicken, I\'ll never know...$B$B$B$BProbably to sleep in it... Dirty gnomes...", + ["O"] = "Deliver the 500 Pound Chicken to Narain Soothfancy in Tanaris.", + ["T"] = "Return to Narain", + }, + [8588] = { + ["D"] = "Since we\'re preparing for war, it might be best if we get all of the goods we need first, don\'t you think, mon? One of the staples of the war materiel that we\'re producing is heavy leather. We\'ll use it for just about everything, from reinforcement to armor, and good old plain tarps too.$B$BBut first we need to get our hands on more of it. That\'s your job, $c. Sharpen your knife and bring me back a bundle. Then we\'ll talk further.", + ["O"] = "Bring 10 Heavy Leather to Skinner Jamani at the Valley of Spirits in Orgrimmar.", + ["T"] = "The Horde Needs Heavy Leather!", + }, + [8589] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Horde Needs More Heavy Leather!", + }, + [8590] = { + ["D"] = "I\'m glad that you decided to speak to me about this, $c. It looks like the Horde\'s preparations for the upcoming Ahn\'Qiraj War are in full swing. But you and I still need to do our part.$B$BI\'ve been asked to collect a great number of thick leather skins for use in all manner of war materiel, and I need you to help me by going out there and gathering them up. There\'s honor and the gratitude of the Horde in it for you should you decide to help. Will you?", + ["O"] = "Bring 10 Thick Leather to Sergeant Umala at the Valley of Spirits in Orgrimmar.", + ["T"] = "The Horde Needs Thick Leather!", + }, + [8591] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Horde Needs More Thick Leather!", + }, + [8592] = { + ["D"] = "The Twin Emperors... their incessant whispers are slowly taking a toll on my sanity. They mock me, knowing I cannot step further into their domain to save my brother Arygos.$B$BIn my visions I see their monstrous faces adorned by powerful crowns. But I will have my revenge... I will transmute these symbols of Qiraji power to ones better suited to our needs.$B$BBring me the components I require, $N. I will give you a headpiece of unmatched power.", + ["O"] = "Bring Vek\'nilash\'s Circlet, 2 Idols of the Sage, 5 Silver Scarabs and 5 Bone Scarabs to Andorgos in Ahn\'Qiraj. You must also attain Friendly reputation with the Brood of Nozdormu to complete this quest.", + ["T"] = "Tiara of the Oracle", + }, + [8593] = { + ["D"] = "You seek to prove your worth to my kind, mortal? Very well, perhaps we can be of mutual assistance.$B$BThe ancient sandworm, Ouro, is a being of legendary power. He is rumored to have been created by the Old God himself as a mockery of life.$B$BHis skin is unnatural... thick, nearly impregnable, yet it\'s flexible and allows him to move with the speed and grace of a much smaller creature.$B$BBring me a sample of his skin along with other minor components and I shall craft you leggings of great power.", + ["O"] = "Bring Ouro\'s Intact Hide, 2 Idols of Life, 5 Gold Scarabs and 5 Clay Scarabs to Kandrostrasz inside Ahn\'Qiraj. You must also attain Friendly reputation with the Brood of Nozdormu to complete this quest.", + ["T"] = "Trousers of the Oracle", + }, + [8594] = { + ["D"] = "It is said among us that the ornate shoulder armor worn by the mortal races started as an attempt to emulate the wings of a dragon.$B$BBring me the bindings worn by the highest Qiraji leaders and I shall shape them into a set of pauldrons more dreadful than even the wings of Nefarian himself!", + ["O"] = "Bring the Qiraji Bindings of Command, 2 Idols of Rebirth, 5 Silver Scarabs and 5 Ivory Scarabs to Andorgos in Ahn\'Qiraj. You must also attain Neutral reputation with the Brood of Nozdormu to complete this quest.", + ["T"] = "Mantle of the Oracle", + }, + [8595] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Mortal Champions", + }, + [8596] = { + ["D"] = "Qiraji magic is strong and ancient. The most powerful qiraji wield items of such might, they\'d give pause even to a dragon.$B$BBring me the qiraji bindings of command and other minor components by and I\'ll create a set of powerful boots for you.$B$BYou will find them useful in the fight against the enemy.", + ["O"] = "Bring the Qiraji Bindings of Command, 2 Idols of Death, 5 Bronze Scarabs and 5 Gold Scarabs to Kandrostrasz in Ahn\'Qiraj. This quest also requires Neutral faction with the Brood of Nozdormu.", + ["T"] = "Footwraps of the Oracle", + }, + [8597] = { + ["D"] = "I knew that book would come in handy some day! Thankfully, I had the wit and foresight to stow it somewhere safe.$B$BDon\'t worry, it\'s in a place that nobody could ever hope to find it! I needed a gyrocopter just to get there the first time. Unfortunately I crashed it on the beach on my way back. It was through that accident that I gained these super-gnomish psychic powers!$B$BLook for my crashed gyrocopter somewhere on Land\'s End Beach and swim south from there! You\'ll know the spot when you see it!", + ["O"] = "Find Narain Soothfancy\'s book, buried on an island in the South Seas.", + ["T"] = "Draconic for Dummies", + }, + [8598] = { + ["D"] = "$B$BWe\'ve got your precious book, gnome. If you ever want to see it again, you\'ll do exactly as we ask.$B$B$B$BBring the money and come alone!", + ["O"] = "Return the Ransom Letter to Narain Soothfancy in Tanaris.", + ["T"] = "rAnS0m", + }, + [8599] = { + ["D"] = "It isn\'t often that I get visitors. As a matter of fact, the last time I had a visitor was when I rescued that dear, sweet gnome from the wreckage of the crashed flying machine.$B$B$B$BDo you know him? Narain? Narain Soothfancy? Oh it would mean so much to me if somebody would deliver a message to him for me. I must tell him how I feel! I know it\'s love! I just know it!$B$BCould you possibly deliver a message to Narain? I would be forever indebted to you!", + ["O"] = "Take Meridith\'s Love Letter to Narain Soothfancy in Tanaris.", + ["T"] = "Love Song for Narain", + }, + [8600] = { + ["D"] = "I find that the fit of the knife in your palm is more important than the edge on it. Even the dullest blade can be made to cut if pressure is being properly applied through it, wouldn\'t you agree, $c? But you and I don\'t have such problems as we maintain the sharpest of edges, yes? $B$BWell, no matter, I have a task for you. In service to the Horde, and to do your part for the Ahn\'Qiraj war effort, I want you to return to me with a number of rugged leather skins. This is something that you will do, no?", + ["O"] = "Bring 10 Rugged Leather to Doctor Serratus at the Valley of Spirits in Orgrimmar.", + ["T"] = "The Horde Needs Rugged Leather!", + }, + [8601] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Horde Needs More Rugged Leather!", + }, + [8602] = { + ["D"] = "It is said among us that the ornate shoulder armor worn by the mortal races started as an attempt to emulate the wings of a dragon.$B$BBring me the bindings worn by the highest Qiraji leaders and I shall shape them into a set of pauldrons more dreadful than even the wings of Nefarian himself!", + ["O"] = "Bring the Qiraji Bindings of Dominance, 2 Idols of Life, 5 Gold Scarabs and 5 Crystal Scarabs to Andorgos in Ahn\'Qiraj. You must also attain Neutral reputation with the Brood of Nozdormu to complete this quest.", + ["T"] = "Stormcaller\'s Pauldrons", + }, + [8603] = { + ["D"] = "The unmentionable Old God slowly awakens from his slumber beneath Ahn\'Qiraj. The terrible fate that awaits Azeroth could come in days or years; time has no meaning for beings of his power.$B$BWhen the stars are favorable, he will lash out against all living beings with terrible wrath. You must find him before then and find a way to bring his existence to an end.$B$BDo this and bring me a piece of his husk. I shall grant you armor no mortal has ever worn... armor fit for one who has slain a god!", + ["O"] = "Bring the the Husk of the Old God, 2 Idols of Death, 5 Stone Scarabs and 5 Crystal Scarabs to Vethsera inside Ahn\'Qiraj. You must also attain Honored reputation with the Brood of Nozdormu to complete this quest.", + ["T"] = "Vestments of the Oracle", + }, + [8604] = { + ["D"] = "Greetings, $c. In preparation for the war at Ahn\'Qiraj, I am here coordinating the Horde\'s efforts at gathering wool bandages. Unfortunately, out in the field, our soldiers cannot afford to rely upon the presence of a healer to keep them alive. Trust me, I know first hand. Thus, we\'re putting together all of these first aid kits for them.$B$BIf you have the time, I need many wool bandages. Return them to me here and I will see to it that you are properly rewarded.", + ["O"] = "Bring 20 Wool Bandages to Healer Longrunner at the Valley of Spirits in Orgrimmar.", + ["T"] = "The Horde Needs Wool Bandages!", + }, + [8605] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Horde Needs More Wool Bandages!", + }, + [8606] = { + ["D"] = "I\'ve got it! Here\'s what we\'re going to do. I\'m going to fill a sack up with rocks and you\'re going to make the drop. I know it said that I should make the delivery and I\'m going to - sort of.$B$B$B$BYes, you will do just fine. Take this turban, robe, and sack of rocks and head to the drop off point in Winterspring.$B$BI\'ve included everything you need in this special kit. When they show up to pick up the goods, snuff them out! That will teach them to mess with Narain!", + ["O"] = "Narain Soothfancy in Tanaris wants you to travel to Winterspring and place the Bag of Gold at the drop off point documented by the booknappers.", + ["T"] = "Decoy!", + }, + [8607] = { + ["D"] = "I trust that you are speaking to me because you are going to help with the collection I have been entrusted to? Good! By whatever means, and I do mean whatever, I wish for you to gather up a good number of mageweave bandages. Fresh would be nice, but not absolutely necessary. Return them to me here, $c, and I will personally see to it that you are properly rewarded.", + ["O"] = "Bring 20 Mageweave Bandages to Lady Callow at the Valley of Spirits in Orgrimmar.", + ["T"] = "The Horde Needs Mageweave Bandages!", + }, + [8608] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Horde Needs More Mageweave Bandages!", + }, + [8609] = { + ["D"] = "It appears inevitable that the Horde and Alliance are on a collision course for war at Ahn\'Qiraj. Surprisingly, it is not a war with each other, but rather with the silithid, and whatever force controls them. Also surprisingly, both sides are doing their part to gather the resources necessary to wage a successful war.$B$BI am collecting runecloth bandages to distribute to the soldiers, but I won\'t be successful without assistance, hopefully yours. Is this something that you can aid me with, $c?", + ["O"] = "Bring 20 Runecloth Bandages to Stoneguard Clayhoof at the Valley of Spirits in Orgrimmar.", + ["T"] = "The Horde Needs Runecloth Bandages!", + }, + [8610] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Horde Needs More Runecloth Bandages!", + }, + [8611] = { + ["D"] = "I\'m not standing here just to get a nice tan, $c. There are war preparations to be made. If we\'re going to crush those bugs at Ahn\'Qiraj then we need to be ready, and that includes food too!$B$BThey have me gathering and salting lean wolf steaks here for the upcoming war. But since I need to stay here to take care of all of this, I need you to go out, kill some wolves and then cook up the meat into lean wolf steaks and bring them back to me here. You got all that?", + ["O"] = "Bring 20 Lean Wolf Steaks to Bloodguard Rawtar at the Valley of Spirits in Orgrimmar.", + ["T"] = "The Horde Needs Lean Wolf Steaks!", + }, + [8612] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Horde Needs More Lean Wolf Steaks!", + }, + [8613] = { + ["D"] = "It be a nice day for fishin\', don\'t\'cha think mon? Good thing, cuz I be needin\' a lot of fish it lookin\' like. The Horde, they askin\' me to be in charge of collectin\' a ton of the spotted yellowtail for them. They say they needin\' it for the war they getting\' ready for at Ahn\'Qiraj. I say to them I do the best I can. So I be needin\' to get some help. You gonna be helpin\' me, $c?", + ["O"] = "Bring 20 Spotted Yellowtail to Fisherman Lin\'do at the Valley of Spirits in Orgrimmar.", + ["T"] = "The Horde Needs Spotted Yellowtail!", + }, + [8614] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Horde Needs More Spotted Yellowtail!", + }, + [8615] = { + ["D"] = "The Ahn\'Qiraj war effort is an immense undertaking, $c. All of the materials being gathered here, whether it is metal for weapons, or food to eat, are all as important as the other. For, if you haven\'t eaten in days you will not have the strength to lift your axe when it matters.$B$BThus, we gather what food we can. I am collecting baked salmon, a dish that was chosen both for its sustenance and its ability to keep well. Can you aid me with this task, $c?", + ["O"] = "Bring 20 Baked Salmon to Chief Sharpclaw at the Valley of Spirits in Orgrimmar.", + ["T"] = "The Horde Needs Baked Salmon!", + }, + [8616] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Horde Needs More Baked Salmon!", + }, + [8617] = { + ["D"] = "The time has come for you to contribute to the Ahn\'Qiraj war effort, $c. Gone are the halcyon days of whiling away your time in leisure. Now it is time to serve me and the Horde, and I assure you that I am not as forgiving as the Warchief.$B$BYou will gather your forces, a guild if you have one, and invade the Molten Core. Inside you will find that the denizens of the place have singed corestones. Bring these back to me in large quantities.", + ["O"] = "Bring 50 singed corestones to General Zog in Durotar.", + ["T"] = "The Horde Needs Singed Corestones!", + }, + [8619] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Morndeep the Elder", + }, + [8620] = { + ["D"] = "I should have known. My arch-enemy, Doctor Weavil, up to his old tricks! And now, thanks to your failure in Winterspring, Doctor Weavil has destroyed my book! How are you going to save the world now, hero?$B$BThe note I received stated that the only known copy of \"Draconic for Dummies: Volume II\" was ripped into 8 parts and scattered to the wind! If you somehow manage to find those missing chapters, use this magical binding to put them back together and return to me.", + ["O"] = "Recover the 8 lost chapters of Draconic for Dummies and combine them with the Magical Book Binding and return the completed book of Draconic for Dummies: Volume II to Narain Soothfancy in Tanaris.", + ["T"] = "The Only Prescription", + }, + [8621] = { + ["D"] = "Qiraji magic is strong and ancient. The most powerful qiraji wield items of such might, they\'d give pause even to a dragon.$B$BBring me the qiraji bindings of dominance and other minor components and I\'ll create a set of powerful boots for you.$B$BYou will find them useful in the fight against the enemy.", + ["O"] = "Bring the Qiraji Bindings of Dominance, 2 Idols of the Sage, 5 Bronze Scarabs and 5 Clay Scarabs to Kandrostrasz in Ahn\'Qiraj. This quest also requires Neutral faction with the Brood of Nozdormu.", + ["T"] = "Stormcaller\'s Footguards", + }, + [8622] = { + ["D"] = "The unmentionable Old God slowly awakens from his slumber beneath Ahn\'Qiraj. The terrible fate that awaits Azeroth could come in days or years; time has no meaning for beings of his power.$B$BWhen the stars are favorable, he will lash out against all living beings with terrible wrath. You must find him before then and find a way to bring his existence to an end.$B$BDo this and bring me a piece of his husk. I shall grant you armor no mortal has ever worn... armor fit for one who has slain a god!", + ["O"] = "Bring the Carapace of the Old God, 2 Idols of the Sage, 5 Silver Scarabs and 5 Bone Scarabs to Vethsera inside Ahn\'Qiraj. You must also attain Honored reputation with the Brood of Nozdormu to complete this quest.", + ["T"] = "Stormcaller\'s Hauberk", + }, + [8623] = { + ["D"] = "The Twin Emperors... their incessant whispers are slowly taking a toll on my sanity. They mock me, knowing I cannot step further into their domain to save my brother Arygos.$B$BIn my visions I see their monstrous faces adorned by powerful crowns. But I will have my revenge... I will transmute these symbols of Qiraji power to ones better suited to our needs.$B$BBring me the components I require, $N. I will give you a headpiece of unmatched power.", + ["O"] = "Bring Vek\'lor\'s Diadem, 2 Idols of Rebirth, 5 Stone Scarabs and 5 Crystal Scarabs to Andorgos in Ahn\'Qiraj. You must also attain Friendly reputation with the Brood of Nozdormu to complete this quest.", + ["T"] = "Stormcaller\'s Diadem", + }, + [8624] = { + ["D"] = "You seek to prove your worth to my kind, mortal? Very well, perhaps we can be of mutual assistance.$B$BThe ancient sandworm, Ouro, is a being of legendary power. He is rumored to have been created by the Old God himself as a mockery of life.$B$BHis skin is unnatural... thick, nearly impregnable, yet it\'s flexible and allows him to move with the speed and grace of a much smaller creature.$B$BBring me a sample of his skin along with other minor components and I shall craft you leggings of great power.", + ["O"] = "Bring the Skin of the Great Sandworm, 2 Idols of Strife, 5 Bronze Scarabs and 5 Ivory Scarabs to Kandrostrasz inside Ahn\'Qiraj. You must also attain Friendly reputation with the Brood of Nozdormu to complete this quest.", + ["T"] = "Stormcaller\'s Leggings", + }, + [8625] = { + ["D"] = "It is said among us that the ornate shoulder armor worn by the mortal races started as an attempt to emulate the wings of a dragon.$B$BBring me the bindings worn by the highest Qiraji leaders and I shall shape them into a set of pauldrons more dreadful than even the wings of Nefarian himself!", + ["O"] = "Bring the Qiraji Bindings of Dominance, 2 Idols of Rebirth, 5 Silver Scarabs and 5 Ivory Scarabs to Andorgos in Ahn\'Qiraj. You must also attain Neutral reputation with the Brood of Nozdormu to complete this quest.", + ["T"] = "Enigma Shoulderpads", + }, + [8626] = { + ["D"] = "Qiraji magic is strong and ancient. The most powerful qiraji wield items of such might, they\'d give pause even to a dragon.$B$BBring me the qiraji bindings of command and other minor components by and I\'ll create a set of powerful boots for you.$B$BYou will find them useful in the fight against the enemy.", + ["O"] = "Bring the Qiraji Bindings of Command, 2 Idols of Life, 5 Stone Scarabs and 5 Bone Scarabs to Kandrostrasz in Ahn\'Qiraj. This quest also requires Neutral faction with the Brood of Nozdormu.", + ["T"] = "Striker\'s Footguards", + }, + [8627] = { + ["D"] = "The unmentionable Old God slowly awakens from his slumber beneath Ahn\'Qiraj. The terrible fate that awaits Azeroth could come in days or years; time has no meaning for beings of his power.$B$BWhen the stars are favorable, he will lash out against all living beings with terrible wrath. You must find him before then and find a way to bring his existence to an end.$B$BDo this and bring me a piece of his husk. I shall grant you armor no mortal has ever worn... armor fit for one who has slain a god!", + ["O"] = "Bring the the Carapace of the Old God, 2 Idols of the Sage, 5 Silver Scarabs and 5 Bone Scarabs to Vethsera inside Ahn\'Qiraj. You must also attain Honored reputation with the Brood of Nozdormu to complete this quest.", + ["T"] = "Avenger\'s Breastplate", + }, + [8628] = { + ["D"] = "The Twin Emperors... their incessant whispers are slowly taking a toll on my sanity. They mock me, knowing I cannot step further into their domain to save my brother Arygos.$B$BIn my visions I see their monstrous faces adorned by powerful crowns. But I will have my revenge... I will transmute these symbols of Qiraji power to ones better suited to our needs.$B$BBring me the components I require, $N. I will give you a headpiece of unmatched power.", + ["O"] = "Bring Vek\'lor\'s Diadem, 2 Idols of Rebirth, 5 Stone Scarabs and 5 Crystal Scarabs to Andorgos in Ahn\'Qiraj. You must also attain Friendly reputation with the Brood of Nozdormu to complete this quest.", + ["T"] = "Avenger\'s Crown", + }, + [8629] = { + ["D"] = "You seek to prove your worth to my kind, mortal? Very well, perhaps we can be of mutual assistance.$B$BThe ancient sandworm, Ouro, is a being of legendary power. He is rumored to have been created by the Old God himself as a mockery of life.$B$BHis skin is unnatural... thick, nearly impregnable, yet it\'s flexible and allows him to move with the speed and grace of a much smaller creature.$B$BBring me a sample of his skin along with other minor components and I shall craft you leggings of great power.", + ["O"] = "Bring the Skin of the Great Sandworm, 2 Idols of Strife, 5 Bronze Scarabs and 5 Ivory Scarabs to Kandrostrasz inside Ahn\'Qiraj. You must also attain Friendly reputation with the Brood of Nozdormu to complete this quest.", + ["T"] = "Avenger\'s Legguards", + }, + [8630] = { + ["D"] = "It is said among us that the ornate shoulder armor worn by the mortal races started as an attempt to emulate the wings of a dragon.$B$BBring me the bindings worn by the highest Qiraji leaders and I shall shape them into a set of pauldrons more dreadful than even the wings of Nefarian himself!", + ["O"] = "Bring the Qiraji Bindings of Dominance, 2 Idols of Life, 5 Crystal Scarabs and 5 Gold Scarabs to Andorgos in Ahn\'Qiraj. You must also attain Neutral reputation with the Brood of Nozdormu to complete this quest.", + ["T"] = "Avenger\'s Pauldrons", + }, + [8631] = { + ["D"] = "You seek to prove your worth to my kind, mortal? Very well, perhaps we can be of mutual assistance.$B$BThe ancient sandworm, Ouro, is a being of legendary power. He is rumored to have been created by the Old God himself as a mockery of life.$B$BHis skin is unnatural... thick, nearly impregnable, yet it\'s flexible and allows him to move with the speed and grace of a much smaller creature.$B$BBring me a sample of his skin along with other minor components and I shall craft you leggings of great power.", + ["O"] = "Bring Ouro\'s Intact Hide, 2 Idols of the Sage, 5 Silver Scarabs and 5 Bone Scarabs to Kandrostrasz inside Ahn\'Qiraj. You must also attain Friendly reputation with the Brood of Nozdormu to complete this quest.", + ["T"] = "Enigma Leggings", + }, + [8632] = { + ["D"] = "The Twin Emperors... their incessant whispers are slowly taking a toll on my sanity. They mock me, knowing I cannot step further into their domain to save my brother Arygos.$B$BIn my visions I see their monstrous faces adorned by powerful crowns. But I will have my revenge... I will transmute these symbols of Qiraji power to ones better suited to our needs.$B$BBring me the components I require, $N. I will give you a headpiece of unmatched power.", + ["O"] = "Bring Vek\'nilash\'s Circlet, 2 Idols of Night, 5 Bronze Scarabs and 5 Ivory Scarabs to Andorgos in Ahn\'Qiraj. You must also attain Friendly reputation with the Brood of Nozdormu to complete this quest.", + ["T"] = "Enigma Circlet", + }, + [8633] = { + ["D"] = "The unmentionable Old God slowly awakens from his slumber beneath Ahn\'Qiraj. The terrible fate that awaits Azeroth could come in days or years; time has no meaning for beings of his power.$B$BWhen the stars are favorable, he will lash out against all living beings with terrible wrath. You must find him before then and find a way to bring his existence to an end.$B$BDo this and bring me a piece of his husk. I shall grant you armor no mortal has ever worn... armor fit for one who has slain a god!", + ["O"] = "Bring the Husk of the Old God, 2 Idols of the Sun, 5 Gold Scarabs and 5 Clay Scarabs to Vethsera inside Ahn\'Qiraj. You must also attain Honored reputation with the Brood of Nozdormu to complete this quest.", + ["T"] = "Enigma Robes", + }, + [8634] = { + ["D"] = "Qiraji magic is strong and ancient. The most powerful qiraji wield items of such might, they\'d give pause even to a dragon.$B$BBring me the qiraji bindings of dominance and other minor components by and I\'ll create a set of powerful boots for you.$B$BYou will find them useful in the fight against the enemy.", + ["O"] = "Bring the Qiraji Bindings of Dominance, 2 Idols of the Sun, 5 Silver Scarabs and 5 Crystal Scarabs to Kandrostrasz in Ahn\'Qiraj. This quest also requires Neutral faction with the Brood of Nozdormu.", + ["T"] = "Enigma Boots", + }, + [8635] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Splitrock the Elder", + }, + [8636] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Rumblerock the Elder", + }, + [8637] = { + ["D"] = "Qiraji magic is strong and ancient. The most powerful qiraji wield items of such might, they\'d give pause even to a dragon.$B$BBring me the qiraji bindings of command and other minor components by and I\'ll create a set of powerful boots for you.$B$BYou will find them useful in the fight against the enemy.", + ["O"] = "Bring the Qiraji Bindings of Command, 2 Idols of Strife, 5 Crystal Scarabs and 5 Bone Scarabs to Kandrostrasz in Ahn\'Qiraj. This quest also requires Neutral faction with the Brood of Nozdormu.", + ["T"] = "Deathdealer\'s Boots", + }, + [8638] = { + ["D"] = "The unmentionable Old God slowly awakens from his slumber beneath Ahn\'Qiraj. The terrible fate that awaits Azeroth could come in days or years; time has no meaning for beings of his power.$B$BWhen the stars are favorable, he will lash out against all living beings with terrible wrath. You must find him before then and find a way to bring his existence to an end.$B$BDo this and bring me a piece of his husk. I shall grant you armor no mortal has ever worn... armor fit for one who has slain a god!", + ["O"] = "Bring the the Carapace of the Old God, 2 Idols of Strife, 5 Bronze Scarabs and 5 Ivory Scarabs to Vethsera inside Ahn\'Qiraj. You must also attain Honored reputation with the Brood of Nozdormu to complete this quest.", + ["T"] = "Deathdealer\'s Vest", + }, + [8639] = { + ["D"] = "The Twin Emperors... their incessant whispers are slowly taking a toll on my sanity. They mock me, knowing I cannot step further into their domain to save my brother Arygos.$B$BIn my visions I see their monstrous faces adorned by powerful crowns. But I will have my revenge... I will transmute these symbols of Qiraji power to ones better suited to our needs.$B$BBring me the components I require, $N. I will give you a headpiece of unmatched power.", + ["O"] = "Bring Vek\'lor\'s Diadem, 2 Idols of the War, 5 Gold Scarabs and 5 Clay Scarabs to Andorgos in Ahn\'Qiraj. You must also attain Friendly reputation with the Brood of Nozdormu to complete this quest.", + ["T"] = "Deathdealer\'s Helm", + }, + [8640] = { + ["D"] = "You seek to prove your worth to my kind, mortal? Very well, perhaps we can be of mutual assistance.$B$BThe ancient sandworm, Ouro, is a being of legendary power. He is rumored to have been created by the Old God himself as a mockery of life.$B$BHis skin is unnatural... thick, nearly impregnable, yet it\'s flexible and allows him to move with the speed and grace of a much smaller creature.$B$BBring me a sample of his skin along with other minor components and I shall craft you leggings of great power.", + ["O"] = "Bring Ouro\'s Intact Hide, 2 Idols of Night, 5 Stone Scarabs and 5 Crystal Scarabs to Kandrostrasz inside Ahn\'Qiraj. You must also attain Friendly reputation with the Brood of Nozdormu to complete this quest.", + ["T"] = "Deathdealer\'s Leggings", + }, + [8641] = { + ["D"] = "It is said among us that the ornate shoulder armor worn by the mortal races started as an attempt to emulate the wings of a dragon.$B$BBring me the bindings worn by the highest Qiraji leaders and I shall shape them into a set of pauldrons more dreadful than even the wings of Nefarian himself!", + ["O"] = "Bring the Qiraji Bindings of Command, 2 Idols of the Sun, 5 Silver Scarabs and 5 Clay Scarabs to Andorgos in Ahn\'Qiraj. You must also attain Neutral reputation with the Brood of Nozdormu to complete this quest.", + ["T"] = "Deathdealer\'s Spaulders", + }, + [8642] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Silvervein the Elder", + }, + [8643] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Highpeak the Elder", + }, + [8644] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Stonefort the Elder", + }, + [8645] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Obsidian the Elder", + }, + [8646] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Hammershout the Elder", + }, + [8647] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Bellowrage the Elder", + }, + [8648] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Darkcore the Elder", + }, + [8649] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Stormbrow the Elder", + }, + [8650] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Snowcrown the Elder", + }, + [8651] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Ironband the Elder", + }, + [8652] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Graveborn the Elder", + }, + [8653] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Goldwell the Elder", + }, + [8654] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Primestone the Elder", + }, + [8655] = { + ["D"] = "Qiraji magic is strong and ancient. The most powerful qiraji wield items of such might, they\'d give pause even to a dragon.$B$BBring me the qiraji bindings of dominance and other minor components and I\'ll create a set of powerful boots for you.$B$BYou will find them useful in the fight against the enemy.", + ["O"] = "Bring the Qiraji Bindings of Dominance, 2 Idols of the Sage, 5 Bronze Scarabs and 5 Clay Scarabs to Kandrostrasz in Ahn\'Qiraj. This quest also requires Neutral faction with the Brood of Nozdormu.", + ["T"] = "Avenger\'s Greaves", + }, + [8656] = { + ["D"] = "The unmentionable Old God slowly awakens from his slumber beneath Ahn\'Qiraj. The terrible fate that awaits Azeroth could come in days or years; time has no meaning for beings of his power.$B$BWhen the stars are favorable, he will lash out against all living beings with terrible wrath. You must find him before then and find a way to bring his existence to an end.$B$BDo this and bring me a piece of his husk. I shall grant you armor no mortal has ever worn... armor fit for one who has slain a god!", + ["O"] = "Bring the the Carapace of the Old God, 2 Idols of Life, 5 Gold Scarabs and 5 Clay Scarabs to Vethsera inside Ahn\'Qiraj. You must also attain Honored reputation with the Brood of Nozdormu to complete this quest.", + ["T"] = "Striker\'s Hauberk", + }, + [8657] = { + ["D"] = "The Twin Emperors... their incessant whispers are slowly taking a toll on my sanity. They mock me, knowing I cannot step further into their domain to save my brother Arygos.$B$BIn my visions I see their monstrous faces adorned by powerful crowns. But I will have my revenge... I will transmute these symbols of Qiraji power to ones better suited to our needs.$B$BBring me the components I require, $N. I will make you a headpiece of unmatched power.", + ["O"] = "Bring Vek\'lor\'s Diadem, 2 Idols of Strife, 5 Bronze Scarabs and 5 Ivory Scarabs to Andorgos in Ahn\'Qiraj. You must also attain Friendly reputation with the Brood of Nozdormu to complete this quest.", + ["T"] = "Striker\'s Diadem", + }, + [8658] = { + ["D"] = "You seek to prove your worth to my kind, mortal? Very well, perhaps we can be of mutual assistance.$B$BThe ancient sandworm, Ouro, is a being of legendary power. He is rumored to have been created by the Old God himself as a mockery of life.$B$BHis skin is unnatural... thick, nearly impregnable, yet it\'s flexible and allows him to move with the speed and grace of a much smaller creature.$B$BBring me a sample of his skin along with other minor components and I shall craft you leggings of great power.", + ["O"] = "Bring the Skin of the Great Sandworm, 2 Idols of the Sun, 5 Silver Scarabs and 5 Bone Scarabs to Kandrostrasz inside Ahn\'Qiraj. You must also attain Friendly reputation with the Brood of Nozdormu to complete this quest.", + ["T"] = "Striker\'s Leggings", + }, + [8659] = { + ["D"] = "It is said among us that the ornate shoulder armor worn by the mortal races started as an attempt to emulate the wings of a dragon.$B$BBring me the bindings worn by the highest Qiraji leaders and I shall shape them into a set of pauldrons more dreadful than even the wings of Nefarian himself!", + ["O"] = "Bring the Qiraji Bindings of Command, 2 Idols of War, 5 Crystal Scarabs and 5 Ivory Scarabs to Andorgos in Ahn\'Qiraj. You must also attain Neutral reputation with the Brood of Nozdormu to complete this quest.", + ["T"] = "Striker\'s Pauldrons", + }, + [8660] = { + ["D"] = "Qiraji magic is strong and ancient. The most powerful qiraji wield items of such might, they\'d give pause even to a dragon.$B$BBring me the qiraji bindings of dominance and other minor components by and I\'ll create a set of powerful boots for you.$B$BYou will find them useful in the fight against the enemy.", + ["O"] = "Bring the Qiraji Bindings of Dominance, 2 Idols of Night, 5 Clay Scarabs and 5 Ivory Scarabs to Kandrostrasz in Ahn\'Qiraj. This quest also requires Neutral faction with the Brood of Nozdormu.", + ["T"] = "Doomcaller\'s Footwraps", + }, + [8661] = { + ["D"] = "The unmentionable Old God slowly awakens from his slumber beneath Ahn\'Qiraj. The terrible fate that awaits Azeroth could come in days or years; time has no meaning for beings of his power.$B$BWhen the stars are favorable, he will lash out against all living beings with terrible wrath. You must find him before then and find a way to bring his existence to an end.$B$BDo this and bring me a piece of his husk. I shall grant you armor no mortal has ever worn... armor fit for one who has slain a god!", + ["O"] = "Bring the the Husk of the Old God, 2 Idols of Night, 5 Stone Scarabs and 5 Crystal Scarabs to Vethsera inside Ahn\'Qiraj. You must also attain Honored reputation with the Brood of Nozdormu to complete this quest.", + ["T"] = "Doomcaller\'s Robes", + }, + [8662] = { + ["D"] = "The Twin Emperors... their incessant whispers are slowly taking a toll on my sanity. They mock me, knowing I cannot step further into their domain to save my brother Arygos.$B$BIn my visions I see their monstrous faces adorned by powerful crowns. But I will have my revenge... I will transmute these symbols of Qiraji power to ones better suited to our needs.$B$BBring me the components I require, $N. I will give you a headpiece of unmatched power.", + ["O"] = "Bring Vek\'nilash\'s Circlet, 2 Idols of Death, 5 Silver Scarabs and 5 Bone Scarabs to Andorgos in Ahn\'Qiraj. You must also attain Friendly reputation with the Brood of Nozdormu to complete this quest.", + ["T"] = "Doomcaller\'s Circlet", + }, + [8663] = { + ["D"] = "You seek to prove your worth to my kind, mortal? Very well, perhaps we can be of mutual assistance.$B$BThe ancient sandworm, Ouro, is a being of legendary power. He is rumored to have been created by the Old God himself as a mockery of life.$B$BHis skin is unnatural... thick, nearly impregnable, yet it\'s flexible and allows him to move with the speed and grace of a much smaller creature.$B$BBring me a sample of his skin along with other minor components and I shall craft you leggings of great power.", + ["O"] = "Bring the Skin of the Great Sandworm, 2 Idols of Rebirth, 5 Gold Scarabs and 5 Clay Scarabs to Kandrostrasz inside Ahn\'Qiraj. You must also attain Friendly reputation with the Brood of Nozdormu to complete this quest.", + ["T"] = "Doomcaller\'s Trousers", + }, + [8664] = { + ["D"] = "It is said among us that the ornate shoulder armor worn by the mortal races started as an attempt to emulate the wings of a dragon.$B$BBring me the bindings worn by the highest Qiraji leaders and I shall shape them into a set of pauldrons more dreadful than even the wings of Nefarian himself!", + ["O"] = "Bring the Qiraji Bindings of Dominance, 2 Idols of the Sage, 5 Bronze Scarabs and 5 Bone Scarabs to Andorgos in Ahn\'Qiraj. You must also attain Neutral reputation with the Brood of Nozdormu to complete this quest.", + ["T"] = "Doomcaller\'s Mantle", + }, + [8665] = { + ["D"] = "Qiraji magic is strong and ancient. The most powerful qiraji wield items of such might, they\'d give pause even to a dragon.$B$BBring me the qiraji bindings of dominance and other minor components by and I\'ll create a set of powerful boots for you.$B$BYou will find them useful in the fight against the enemy.", + ["O"] = "Bring the Qiraji Bindings of Dominance, 2 Idols of Rebirth, 5 Stone Scarabs and 5 Silver Scarabs to Kandrostrasz in Ahn\'Qiraj. This quest also requires Neutral faction with the Brood of Nozdormu.", + ["T"] = "Genesis Boots", + }, + [8666] = { + ["D"] = "The unmentionable Old God slowly awakens from his slumber beneath Ahn\'Qiraj. The terrible fate that awaits Azeroth could come in days or years; time has no meaning for beings of his power.$B$BWhen the stars are favorable, he will lash out against all living beings with terrible wrath. You must find him before then and find a way to bring his existence to an end.$B$BDo this and bring me a piece of his husk. I shall grant you armor no mortal has ever worn... armor fit for one who has slain a god!", + ["O"] = "Bring the the Husk of the Old God, 2 Idols of Rebirth, 5 Bronze Scarabs and 5 Ivory Scarabs to Vethsera inside Ahn\'Qiraj. You must also attain Honored reputation with the Brood of Nozdormu to complete this quest.", + ["T"] = "Genesis Vest", + }, + [8667] = { + ["D"] = "The Twin Emperors... their incessant whispers are slowly taking a toll on my sanity. They mock me, knowing I cannot step further into their domain to save my brother Arygos.$B$BIn my visions I see their monstrous faces adorned by powerful crowns. But I will have my revenge... I will transmute these symbols of Qiraji power to ones better suited to our needs.$B$BBring me the components I require, $N. I will give you a headpiece of unmatched power.", + ["O"] = "Bring Vek\'lor\'s Diadem, 2 Idols of Life, 5 Gold Scarabs and 5 Clay Scarabs to Andorgos in Ahn\'Qiraj. You must also attain Friendly reputation with the Brood of Nozdormu to complete this quest.", + ["T"] = "Genesis Helm", + }, + [8668] = { + ["D"] = "You seek to prove your worth to my kind, mortal? Very well, perhaps we can be of mutual assistance.$B$BThe ancient sandworm, Ouro, is a being of legendary power. He is rumored to have been created by the Old God himself as a mockery of life.$B$BHis skin is unnatural... thick, nearly impregnable, yet it\'s flexible and allows him to move with the speed and grace of a much smaller creature.$B$BBring me a sample of his skin along with other minor components and I shall craft you leggings of great power.", + ["O"] = "Bring the Skin of the Great Sandworm, 2 Idols of War, 5 Stone Scarabs and 5 Crystal Scarabs to Kandrostrasz inside Ahn\'Qiraj. You must also attain Friendly reputation with the Brood of Nozdormu to complete this quest.", + ["T"] = "Genesis Trousers", + }, + [8669] = { + ["D"] = "It is said among us that the ornate shoulder armor worn by the mortal races started as an attempt to emulate the wings of a dragon.$B$BBring me the bindings worn by the highest Qiraji leaders and I shall shape them into a set of pauldrons more dreadful than even the wings of Nefarian himself!", + ["O"] = "Bring the Qiraji Bindings of Dominance, 2 Idols of Strife, 5 Gold Scarabs and 5 Bone Scarabs to Andorgos in Ahn\'Qiraj. You must also attain Neutral reputation with the Brood of Nozdormu to complete this quest.", + ["T"] = "Genesis Shoulderpads", + }, + [8670] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Runetotem the Elder", + }, + [8671] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Ragetotem the Elder", + }, + [8672] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Stonespire the Elder", + }, + [8673] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Bloodhoof the Elder", + }, + [8674] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Winterhoof the Elder", + }, + [8675] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Skychaser the Elder", + }, + [8676] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Wildmane the Elder", + }, + [8677] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Darkhorn the Elder", + }, + [8678] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Proudhorn the Elder", + }, + [8679] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Grimtotem the Elder", + }, + [8680] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Windtotem the Elder", + }, + [8681] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Thunderhorn the Elder", + }, + [8682] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Skyseer the Elder", + }, + [8683] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Dawnstrider the Elder", + }, + [8684] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Dreamseer the Elder", + }, + [8685] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Mistwalker the Elder", + }, + [8686] = { + ["D"] = "", + ["O"] = "", + ["T"] = "High Mountain the Elder", + }, + [8687] = { + ["D"] = "Reinforcements have been called on to join the assault on Hive\'Zora. You have been selected to target Hive\'Zora tunnelers. Report back to Commander Mar\'alith after completing your task.", + ["O"] = "Slay 30 Hive\'Zora Tunnelers and report back to Commander Mar\'alith at Cenarion Hold in Silithus. You must also bring Combat Task Briefing VII in order to complete this quest.", + ["T"] = "Target: Hive\'Zora Tunnelers", + }, + [8688] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Windrun the Elder", + }, + [8689] = { + ["D"] = "I\'m glad to hear you\'re aiding us in our attack on Ahn\'Qiraj, $N. I can make you a protective item that\'ll be of assistance in the fight against our enemy, $c.$B$BI shall need a Qiraji drape, which I\'ll resize for you of course. I\'ll also need idols and scarabs which I\'ll use to create a suitable clasp.$B$BI promise you won\'t be disappointed.", + ["O"] = "Bring 1 Qiraji Martial Drape, 2 Jasper Idols, 5 Gold Scarabs and 5 Clay Scarabs to Keyl Swiftclaw in Silithus. You must also obtain Revered reputation with Cenarion Circle to complete this quest.", + ["T"] = "Shroud of Infinite Wisdom", + }, + [8690] = { + ["D"] = "I\'m glad to hear you\'re aiding us in our attack on Ahn\'Qiraj, $N. I can make you a protective item that\'ll be of assistance in the fight against our enemy, $c.$B$BI shall need a Qiraji drape, which I\'ll resize for you of course. I\'ll also need idols and scarabs which I\'ll use to create a suitable clasp.$B$BI promise you won\'t be disappointed.", + ["O"] = "Bring 1 Qiraji Regal Drape, 2 Obsidian Idols, 5 Clay Scarabs and 5 Gold Scarabs to Keyl Swiftclaw in Silithus. You must also obtain Revered reputation with Cenarion Circle to complete this quest.", + ["T"] = "Cloak of the Gathering Storm", + }, + [8691] = { + ["D"] = "I\'m glad to hear you\'re aiding us in our attack on Ahn\'Qiraj, $N. I can make you a protective item that\'ll be of assistance in the fight against our enemy, $c.$B$BI shall need a Qiraji drape, which I\'ll resize for you of course. I\'ll also need idols and scarabs which I\'ll use to create a suitable clasp.$B$BI promise you won\'t be disappointed.", + ["O"] = "Bring 1 Qiraji Martial Drape, 2 Alabaster Idols, 5 Stone Scarabs and 5 Crystal Scarabs to Keyl Swiftclaw in Silithus. You must also obtain Revered reputation with Cenarion Circle to complete this quest.", + ["T"] = "Drape of Vaulted Secrets", + }, + [8692] = { + ["D"] = "I\'m glad to hear you\'re aiding us in our attack on Ahn\'Qiraj, $N. I can make you a protective item that\'ll be of assistance in the fight against our enemy, $c.$B$BI shall need a Qiraji drape, which I\'ll resize for you of course. I\'ll also need idols and scarabs which I\'ll use to create a suitable clasp.$B$BI promise you won\'t be disappointed.", + ["O"] = "Bring 1 Qiraji Regal Drape, 2 Vermillion Idols, 5 Silver Scarabs and 5 Bone Scarabs to Keyl Swiftclaw in Silithus. You must also obtain Revered reputation with Cenarion Circle to complete this quest.", + ["T"] = "Cloak of Unending Life", + }, + [8693] = { + ["D"] = "I\'m glad to hear you\'re aiding us in our attack on Ahn\'Qiraj, $N. I can make you a protective item that\'ll be of assistance in the fight against our enemy, $c.$B$BI shall need a Qiraji drape, which I\'ll resize for you of course. I\'ll also need idols and scarabs which I\'ll use to create a suitable clasp.$B$BI promise you won\'t be disappointed.", + ["O"] = "Bring 1 Qiraji Martial Drape, 2 Azure Idols, 5 Bronze Scarabs and 5 Ivory Scarabs to Keyl Swiftclaw in Silithus. You must also obtain Revered reputation with Cenarion Circle to complete this quest.", + ["T"] = "Cloak of Veiled Shadows", + }, + [8694] = { + ["D"] = "I\'m glad to hear you\'re aiding us in our attack on Ahn\'Qiraj, $N. I can make you a protective item that\'ll be of assistance in the fight against our enemy, $c.$B$BI shall need a Qiraji drape, which I\'ll resize for you of course. I\'ll also need idols and scarabs which I\'ll use to create a suitable clasp.$B$BI promise you won\'t be disappointed.", + ["O"] = "Bring 1 Qiraji Regal Drape, 2 Amber Idols, 5 Ivory Scarabs and 5 Bronze Scarabs to Keyl Swiftclaw in Silithus. You must also obtain Revered reputation with Cenarion Circle to complete this quest.", + ["T"] = "Shroud of Unspoken Names", + }, + [8695] = { + ["D"] = "I\'m glad to hear you\'re aiding us in our attack on Ahn\'Qiraj, $N. I can make you a protective item that\'ll be of assistance in the fight against our enemy, $c.$B$BI shall need a Qiraji drape, which I\'ll resize for you of course. I\'ll also need idols and scarabs which I\'ll use to create a suitable clasp.$B$BI promise you won\'t be disappointed.", + ["O"] = "Bring 1 Qiraji Regal Drape, 2 Obsidian Idols, 5 Gold Scarabs and 5 Clay Scarabs to Keyl Swiftclaw in Silithus. You must also obtain Revered reputation with Cenarion Circle to complete this quest.", + ["T"] = "Cape of Eternal Justice", + }, + [8696] = { + ["D"] = "I\'m glad to hear you\'re aiding us in our attack on Ahn\'Qiraj, $N. I can make you a protective item that\'ll be of assistance in the fight against our enemy, $c.$B$BI shall need a Qiraji drape, which I\'ll resize for you of course. I\'ll also need idols and scarabs which I\'ll use to create a suitable clasp.$B$BI promise you won\'t be disappointed.", + ["O"] = "Bring 1 Qiraji Regal Drape, 2 Lambent Idols, 5 Stone Scarabs and 5 Crystal Scarabs to Keyl Swiftclaw in Silithus. You must also obtain Revered reputation with Cenarion Circle to complete this quest.", + ["T"] = "Cloak of the Unseen Path", + }, + [8697] = { + ["D"] = "The rings worn by the Qiraji lieutenants are rumored to grant them formidable abilities. The corrupted gems that adorn them could, in theory, be swapped out with more pure materials to create uncorrupted versions of the rings.$B$BThe gems that adorn Qiraji idols would work quite well, as their quality is superior.$B$BBring me the ring and idols and I\'ll create a powerful ring for you, $c.", + ["O"] = "Bring 1 Qiraji Ceremonial Ring, 2 Obsidian Idols, 5 Silver Scarabs and 5 Bone Scarabs to Windcaller Yessendra in Silithus. You must also attain Honored reputation with Cenarion Circle to complete this quest.", + ["T"] = "Ring of Infinite Wisdom", + }, + [8698] = { + ["D"] = "The rings worn by the Qiraji lieutenants are rumored to grant them formidable abilities. The corrupted gems that adorn them could, in theory, be swapped out with more pure materials to create uncorrupted versions of the rings.$B$BThe gems that adorn Qiraji idols would work quite well, as their quality is superior.$B$BBring me the ring and idols and I\'ll create a powerful ring for you, $c.", + ["O"] = "Bring 1 Qiraji Magisterial Ring, 2 Vermillion Idols, 5 Silver Scarabs and 5 Bone Scarabs to Windcaller Yessendra in Silithus. You must also attain Honored reputation with Cenarion Circle to complete this quest.", + ["T"] = "Ring of the Gathering Storm", + }, + [8699] = { + ["D"] = "The rings worn by the Qiraji lieutenants are rumored to grant them formidable abilities. The corrupted gems that adorn them could, in theory, be swapped out with more pure materials to create uncorrupted versions of the rings.$B$BThe gems that adorn Qiraji idols would work quite well, as their quality is superior.$B$BBring me the ring and idols and I\'ll create a powerful ring for you, $c.", + ["O"] = "Bring 1 Qiraji Magisterial Ring, 2 Azure Idols, 5 Gold Scarabs and 5 Clay Scarabs to Windcaller Yessendra in Silithus. You must also attain Honored reputation with Cenarion Circle to complete this quest.", + ["T"] = "Band of Vaulted Secrets", + }, + [8700] = { + ["D"] = "The rings worn by the Qiraji lieutenants are rumored to grant them formidable abilities. The corrupted gems that adorn them could, in theory, be swapped out with more pure materials to create uncorrupted versions of the rings.$B$BThe gems that adorn Qiraji idols would work quite well, as their quality is superior.$B$BBring me the ring and idols and I\'ll create a powerful ring for you, $g fellow : sister; druid.", + ["O"] = "Bring 1 Qiraji Magisterial Ring, 2 Alabaster Idols, 5 Bronze Scarabs and 5 Ivory Scarabs to Windcaller Yessendra in Silithus. You must also attain Honored reputation with Cenarion Circle to complete this quest.", + ["T"] = "Band of Unending Life", + }, + [8701] = { + ["D"] = "The rings worn by the Qiraji lieutenants are rumored to grant them formidable abilities. The corrupted gems that adorn them could, in theory, be swapped out with more pure materials to create uncorrupted versions of the rings.$B$BThe gems that adorn Qiraji idols would work quite well, as their quality is superior.$B$BBring me the ring and idols and I\'ll create a powerful ring for you, $c.", + ["O"] = "Bring 1 Qiraji Ceremonial Ring, 2 Onyx Idols, 5 Stone Scarabs and 5 Crystal Scarabs to Windcaller Yessendra in Silithus. You must also attain Honored reputation with Cenarion Circle to complete this quest.", + ["T"] = "Band of Veiled Shadows", + }, + [8702] = { + ["D"] = "The rings worn by the Qiraji lieutenants are rumored to grant them formidable abilities. The corrupted gems that adorn them could, in theory, be swapped out with more pure materials to create uncorrupted versions of the rings.$B$BThe gems that adorn Qiraji idols would work quite well, as their quality is superior.$B$BBring me the ring and idols and I\'ll create a powerful ring for you, $c.", + ["O"] = "Bring 1 Qiraji Ceremonial Ring, 2 Jasper Idols, 5 Stone Scarabs and 5 Crystal Scarabs to Windcaller Yessendra in Silithus. You must also attain Honored reputation with Cenarion Circle to complete this quest.", + ["T"] = "Ring of Unspoken Names", + }, + [8703] = { + ["D"] = "The rings worn by the Qiraji lieutenants are rumored to grant them formidable abilities. The corrupted gems that adorn them could, in theory, be swapped out with more pure materials to create uncorrupted versions of the rings.$B$BThe gems that adorn Qiraji idols would work quite well, as their quality is superior.$B$BBring me the ring and idols and I\'ll create a powerful ring for you, $c.", + ["O"] = "Bring 1 Qiraji Magisterial Ring, 2 Vermillion Idols, 5 Silver Scarabs and 5 Bone Scarabs to Windcaller Yessendra in Silithus. You must also attain Honored reputation with Cenarion Circle to complete this quest.", + ["T"] = "Ring of Eternal Justice", + }, + [8704] = { + ["D"] = "The rings worn by the Qiraji lieutenants are rumored to grant them formidable abilities. The corrupted gems that adorn them could, in theory, be swapped out with more pure materials to create uncorrupted versions of the rings.$B$BThe gems that adorn Qiraji idols would work quite well, as their quality is superior.$B$BBring me the ring and idols and I\'ll create a powerful ring for you, $c.", + ["O"] = "Bring 1 Qiraji Ceremonial Ring, 2 Amber Idols, 5 Gold Scarabs and 5 Clay Scarabs to Windcaller Yessendra in Silithus. You must also attain Honored reputation with Cenarion Circle to complete this quest.", + ["T"] = "Signet of the Unseen Path", + }, + [8705] = { + ["D"] = "The Qiraji and their servants wield items made with the rarest and finest materials: bones from gargantuan ancient creatures, gems from the depths of the earth, metals pure and strong.$B$BJust the sight of Qiraji artifacts fills me with an urge to practice my craft with their shattered and smelted pieces. Prove your allegiance to the Circle, $N, and I will make you a powerful weapon from the finest Qiraji materials.", + ["O"] = "Bring 1 Qiraji Ornate Hilt, 2 Lambent Idols, 5 Bronze Scarabs and 5 Ivory Scarabs to Warden Haro in Silithus. You must also attain Exalted reputation with Cenarion Circle to complete this quest.", + ["T"] = "Gavel of Infinite Wisdom", + }, + [8706] = { + ["D"] = "The Qiraji and their servants wield items made with the rarest and finest materials: bones from gargantuan ancient creatures, gems from the depths of the earth, metals pure and strong.$B$BJust the sight of Qiraji artifacts fills me with an urge to practice my craft with their shattered and smelted pieces. Prove your allegiance to the Circle, $N, and I will make you a powerful weapon from the finest Qiraji materials.", + ["O"] = "Bring 1 Qiraji Spiked Hilt, 2 Amber Idols, 5 Ivory Scarabs and 5 Bronze Scarabs to Warden Haro in Silithus. You must also attain Exalted reputation with Cenarion Circle to complete this quest.", + ["T"] = "Hammer of the Gathering Storm", + }, + [8707] = { + ["D"] = "The Qiraji and their servants wield items made with the rarest and finest materials: bones from gargantuan ancient creatures, gems from the depths of the earth, metals pure and strong.$B$BJust the sight of Qiraji artifacts fills me with an urge to practice my craft with their shattered and smelted pieces. Prove your allegiance to the Circle, $N, and I will make you a powerful weapon from the finest Qiraji materials.", + ["O"] = "Bring 1 Qiraji Ornate Hilt, 2 Obsidian Idols, 5 Silver Scarabs and 5 Bone Scarabs to Warden Haro in Silithus. You must also attain Exalted reputation with Cenarion Circle to complete this quest.", + ["T"] = "Blade of Vaulted Secrets", + }, + [8708] = { + ["D"] = "The Qiraji and their servants wield items made with the rarest and finest materials: bones from gargantuan ancient creatures, gems from the depths of the earth, metals pure and strong.$B$BJust the sight of Qiraji artifacts fills me with an urge to practice my craft with their shattered and smelted pieces. Prove your allegiance to the Circle, $N, and I will make you a powerful weapon from the finest Qiraji materials.", + ["O"] = "Bring 1 Qiraji Ornate Hilt, 2 Jasper Idols, 5 Crystal Scarabs and 5 Stone Scarabs to Warden Haro in Silithus. You must also attain Exalted reputation with Cenarion Circle to complete this quest.", + ["T"] = "Mace of Unending Life", + }, + [8709] = { + ["D"] = "The Qiraji and their servants wield items made with the rarest and finest materials: bones from gargantuan ancient creatures, gems from the depths of the earth, metals pure and strong.$B$BJust the sight of Qiraji artifacts fills me with an urge to practice my craft with their shattered and smelted pieces. Prove your allegiance to the Circle, $N, and I will make you a powerful weapon from the finest Qiraji materials.", + ["O"] = "Bring 1 Qiraji Spiked Hilt, 2 Vermillion Idols, 5 Gold Scarabs and 5 Clay Scarabs to Warden Haro in Silithus. You must also attain Exalted reputation with Cenarion Circle to complete this quest.", + ["T"] = "Dagger of Veiled Shadows", + }, + [8710] = { + ["D"] = "The Qiraji and their servants wield items made with the rarest and finest materials: bones from gargantuan ancient creatures, gems from the depths of the earth, metals pure and strong.$B$BJust the sight of Qiraji artifacts fills me with an urge to practice my craft with their shattered and smelted pieces. Prove your allegiance to the Circle, $N, and I will make you a powerful weapon from the finest Qiraji materials.", + ["O"] = "Bring 1 Qiraji Ornate Hilt, 2 Onyx Idols, 5 Gold Scarabs and 5 Clay Scarabs to Warden Haro in Silithus. You must also attain Exalted reputation with Cenarion Circle to complete this quest.", + ["T"] = "Kris of Unspoken Names", + }, + [8711] = { + ["D"] = "The Qiraji and their servants wield items made with the rarest and finest materials: bones from gargantuan ancient creatures, gems from the depths of the earth, metals pure and strong.$B$BJust the sight of Qiraji artifacts fills me with an urge to practice my craft with their shattered and smelted pieces. Prove your allegiance to the Circle, $N, and I will make you a powerful weapon from the finest Qiraji materials.", + ["O"] = "Bring 1 Qiraji Spiked Hilt, 2 Amber Idols, 5 Bronze Scarabs and 5 Ivory Scarabs to Warden Haro in Silithus. You must also attain Exalted reputation with Cenarion Circle to complete this quest.", + ["T"] = "Blade of Eternal Justice", + }, + [8712] = { + ["D"] = "The Qiraji and their servants wield items made with the rarest and finest materials: bones from gargantuan ancient creatures, gems from the depths of the earth, metals pure and strong.$B$BJust the sight of Qiraji artifacts fills me with an urge to practice my craft with their shattered and smelted pieces. Prove your allegiance to the Circle, $N, and I will make you a powerful weapon from the finest Qiraji materials.", + ["O"] = "Bring 1 Qiraji Spiked Hilt, 2 Azure Idols, 5 Silver Scarabs and 5 Bone Scarabs to Warden Haro in Silithus. You must also attain Exalted reputation with Cenarion Circle to complete this quest.", + ["T"] = "Scythe of the Unseen Path", + }, + [8713] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Starsong the Elder", + }, + [8714] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Moonstrike the Elder", + }, + [8715] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Bladeleaf the Elder", + }, + [8716] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Starglade the Elder", + }, + [8717] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Moonwarden the Elder", + }, + [8718] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Bladeswift the Elder", + }, + [8719] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Bladesing the Elder", + }, + [8720] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Skygleam the Elder", + }, + [8721] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Starweave the Elder", + }, + [8722] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Meadowrun the Elder", + }, + [8723] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Nightwind the Elder", + }, + [8724] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Morningdew the Elder", + }, + [8725] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Riversong the Elder", + }, + [8726] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Brightspear the Elder", + }, + [8727] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Farwhisper the Elder", + }, + [8728] = { + ["D"] = "Well that took a little longer than expected. Now let me see what this ledger says.$B$B$B$B The good news is that I am 99% certain that I am capable of creating an arcanite buoy that will function to your specifications. This is, of course, wholly dependant on the bad news.$B$BThe bad news is that I\'m going to need a lot of arcanite, elementium ore, and rare gemstones.$B$BBring me what I need and I will craft the buoy.", + ["O"] = "Narain Soothfancy in Tanaris wants you to bring him 20 Arcanite Bars, 10 Elementium Ore, 10 Azerothian Diamonds, and 10 Blue Sapphires.", + ["T"] = "The Good News and The Bad News", + }, + [8729] = { + ["D"] = "Did I mention the bad news yet? Its name is Maws: 100 feet of death and destruction. I guess I may have forgotten that little tidbit.$B$BAccording to my superior psycho-psionic clairvoyance, you\'ll find that the best spot to cast this buoy is off the coast of Azshara, in the Bay of Storms.$B$BLook for a swirling maelstrom, most likely cluttered with wreckage.$B$BBy the by, I hope you have friends.$B$BNow if you somehow miraculously succeed, take the scepter shard to Anachronos.", + ["O"] = "Use the Arcanite Buoy at the Swirling Maelstrom at the Bay of Storms in Azshara.", + ["T"] = "The Wrath of Neptulon", + }, + [8730] = { + ["D"] = "Champion, is it you? A thousand years it has been since I was entrusted the shard and it is at my darkest hour that one should rise to relieve me of it... But what would tragedy be without cruelty?$B$B$B$BNe... Nefarius now holds the scepter shard.$B$BTime is of the essence. Nefarius plans to destroy the shard. You must hurry!", + ["O"] = "Slay Nefarian and recover the Red Scepter Shard. Return the Red Scepter Shard to Anachronos at the Caverns of Time in Tanaris. You have 5 hours to complete this task.", + ["T"] = "Nefarius\'s Corruption", + }, + [8731] = { + ["D"] = "Greetings, $N. Before I assign you to more involved tasks in the war, you\'ll need to do your share of field duty. $B$BYou will find Captain Skullsplit\'s Orgrimmar Legion outside Hive\'Regal.$B$BReport to him and come back to me with proof of your field service. I shall have a more advanced assignment ready for you.$B$BOh, please do your best to stay away from the Ironforge Brigade. Tensions are high among our Alliance and Horde volunteers.", + ["O"] = "Report to Krug Skullsplit at the Orgrimmar Legion post in front of Hive\'Regal. Prepare your Unsigned Field Duty Papers, obtain Signed Field Duty Papers and bring them to Windcaller Kaldon in Cenarion Hold.$B$BNote: Healing or casting beneficial spells on a member of the Orgrimmar Legion will flag you for PvP.", + ["T"] = "Field Duty", + }, + [8732] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Field Duty Papers", + }, + [8733] = { + ["D"] = "This is a journey of redemption, hero. Would it be that I was slain today, I would have died for a just and righteous cause. You must recover the green scepter shard. You must cleanse Eranikus of the taint placed upon him by the Old Gods.$B$BTravel to Darnassus. Just outside the city walls you will find one of my agents. This agent will set things in motion for us and inform Tyrande of our plans without alerting Staghelm.$B$B$B$BA fall from grace a thousand years in the making...", + ["O"] = "Travel to the continent of Teldrassil and find Malfurion\'s agent somewhere outside the walls of Darnassus.", + ["T"] = "Eranikus, Tyrant of the Dream", + }, + [8734] = { + ["D"] = "Tyrande will be notifed, mortal. Shan\'do Stormrage has prepared me for this contingency.$B$BNow you must venture to the Moonglade and speak with Remulos. He will have further instruction as to the summoning of Eranikus.$B$BWe all wish you great luck.", + ["O"] = "Travel to the Moonglade and speak to Keeper Remulos. ", + ["T"] = "Tyrande and Remulos", + }, + [8735] = { + ["D"] = "You must travel to the four dream portals of Azeroth. From each you must draw a fragment of the Nightmare\'s corruption. The dragonkin that inhabit these areas will hold such fragments. Return to me when you have gathered these fragments.", + ["O"] = "Travel to the four Emerald Dream portals in Azeroth and collect a Fragment of the Nightmare\'s Corruption from each. Return to Keeper Remulos in the Moonglade when you have completed this task.", + ["T"] = "The Nightmare\'s Corruption", + }, + [8736] = { + ["D"] = "We must use restraint against Eranikus. We are to redeem him not destroy him.$B$BTyrande is already en route to assist us in this task. We must weather the dragon\'s blows and save Nighthaven from certain destruction.$B$BBe on guard! You and your allies are our only hope.", + ["O"] = "Defend Nighthaven from Eranikus. Do not let Keeper Remulos perish. Do not slay Eranikus. Defend yourself. Await Tyrande.", + ["T"] = "The Nightmare Manifests", + }, + [8737] = { + ["D"] = "The Twilight\'s Hammer and the elemental nobles they worship present a formidable threat to our operations in Silithus. With the new enemies we\'re facing inside Ahn\'Qiraj, we cannot afford to lower our guard to our enemies outside.$B$BFind a way to summon and destroy an Azure Templar and report to Bor Wildmane.", + ["O"] = "Summon and slay an Azure Templar and report back to Bor Wildmane in Cenarion Hold. You must also bring Tactical Task Briefing I in order to complete this quest.", + ["T"] = "Azure Templar", + }, + [8738] = { + ["D"] = "We\'ve sent our best scouts deep into the silithid hives to gather intelligence. Scout Landion has been watching the silithid movements at Hive\'Regal for several days now. Find him and obtain a written report. We need to be able to act on that information as soon as possible, $N.", + ["O"] = "Contact Cenarion Scout Landion inside Hive\'Regal and return the Hive\'Regal Scout Report to Windcaller Proudhorn at Cenarion Hold. You must also bring Tactical Task Briefing VII in order to complete this quest.", + ["T"] = "Hive\'Regal Scout Report", + }, + [8739] = { + ["D"] = "We\'ve sent our best scouts deep into the silithid hives to gather intelligence. Scout Jalia has been watching the silithid movements at Hive\'Ashi for several days now. Find her and obtain a written report. We need to be able to act on that information as soon as possible, $N.", + ["O"] = "Contact Cenarion Scout Jalia inside Hive\'Ashi and return the Hive\'Ashi Scout Report to Windcaller Proudhorn at Cenarion Hold. You must also bring Tactical Task Briefing VIII in order to complete this quest.", + ["T"] = "Hive\'Ashi Scout Report", + }, + [8740] = { + ["D"] = "Bands of mounted Twilight\'s Hammer cultists have been spotted riding outside the reach of our forces in Cenarion Hold, picking off our smaller patrols and caravans.$B$BFind and defeat the twilight marauders along with their leader, a terrible warrior by the name of Morna. Report to Windcaller Proudhorn after completing the task.", + ["O"] = "Slay Twilight Marauder Morna and 5 Twilight Marauders. Report to Windcaller Proudhorn when your task is finished. You must also bring Tactical Task Briefing IX in order to complete this quest.", + ["T"] = "Twilight Marauders", + }, + [8741] = { + ["D"] = "The keeper awaits your return, $N. Take the green scepter shard to Anachronos at the Caverns of Time.", + ["O"] = "Take the Green Scepter Shard to Anachronos at the Caverns of Time in Tanaris.", + ["T"] = "The Champion Returns", + }, + [8742] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Might of Kalimdor", + }, + [8743] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Bang a Gong!", + }, + [8744] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Carefully Wrapped Present", + }, + [8745] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Treasure of the Timeless One", + }, + [8746] = { + ["D"] = "DISASTER has struck! Metzen the Reindeer has been kidnapped!$B$BMetzen is one of Great-father Winter\'s eight reindeer - and property of Smokywood Pastures. We\'ve received not one but TWO ransom letters from groups claiming to have Metzen. With the holiday season well under way, we\'re strapped to the coin box here! Please - find Metzen and return him to us!$B$BCheck out the ransom letters for clues, and sprinkle this reindeer dust on him - it will free him from any of his bonds!$B$BPlease, hurry!", + ["O"] = "Find Metzen the Reindeer. Use the notes provided to you for clues as to where he is being held.$B$BWhen you find Metzen, have the Pouch of Reindeer Dust in your possession so you can sprinkle some of the dust on him; this should free Metzen from his bonds of captivity.$B$BReturn the Pouch of Reindeer Dust to Kaymard Copperpinch in Orgrimmar once Metzen is freed.", + ["T"] = "Metzen the Reindeer", + }, + [8747] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Path of the Protector", + }, + [8748] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Path of the Protector", + }, + [8749] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Path of the Protector", + }, + [8750] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Path of the Protector", + }, + [8751] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Protector of Kalimdor", + }, + [8752] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Path of the Conqueror", + }, + [8753] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Path of the Conqueror", + }, + [8754] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Path of the Conqueror", + }, + [8755] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Path of the Conqueror", + }, + [8756] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Qiraji Conqueror", + }, + [8757] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Path of the Invoker", + }, + [8758] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Path of the Invoker", + }, + [8759] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Path of the Invoker", + }, + [8760] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Path of the Invoker", + }, + [8761] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Grand Invoker", + }, + [8762] = { + ["D"] = "DISASTER has struck! Metzen the Reindeer has been kidnapped!$B$BMetzen is one of Greatfather Winter\'s eight reindeer - and property of Smokywood Pastures. We\'ve received not one but TWO ransom letters from groups claiming to have Metzen. With the holiday season well under way, we\'re strapped to the coin box here! Please - find Metzen and return him to us!$B$BCheck out the ransom letters for clues, and sprinkle this reindeer dust on him - it will free him from any of his bonds!$B$BPlease, hurry!", + ["O"] = "Find Metzen the Reindeer. Use the notes provided to you for clues as to where he is being held.$B$BWhen you find Metzen, have the Pouch of Reindeer Dust in your possession so you can sprinkle some of the dust on him; this should free Metzen from his bonds of captivity.$B$BReturn the Pouch of Reindeer Dust to Wulmort Jinglepocket in Ironforge once Metzen is freed.", + ["T"] = "Metzen the Reindeer", + }, + [8763] = { + ["D"] = "Listen... I\'m not really supposed to be telling you this, but since you\'re the hero of the day and all...$B$BThere\'s fresh holly everywhere this time of the year, but it never lasts. We\'ve got a machine that preserves holly - it never goes bad! We use it to spice up the holiday... and profits during the summer!$B$BI\'ll let you use the preserver, but only if you\'re a master cook. You\'ll need some deeprock salt and two, three, oh let\'s say five gold. It\'ll net you a nice batch that\'s yours to keep.", + ["O"] = "Bring 1 Deeprock Salt and 5 gold coins to any Holly Preserver machine, upon which you will receive 5 Preserved Holly.", + ["T"] = "The Hero of the Day", + }, + [8764] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Changing of Paths - Protector No More", + }, + [8765] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Changing of Paths - Invoker No More", + }, + [8766] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Changing of Paths - Conqueror No More", + }, + [8767] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Gently Shaken Gift", + }, + [8768] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Gaily Wrapped Present", + }, + [8769] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Ticking Present", + }, + [8770] = { + ["D"] = "As the war effort mounts, the silithid presence in the area presents an ever increasing threat to our operations. You\'ve been selected to partake on an assault on Hive\'Ashi where your primary target will consist of Hive\'Ashi defenders.$B$BReport back to Commander Mar\'alith after your task is completed.", + ["O"] = "Slay 30 Hive\'Ashi Defenders and report back to Commander Mar\'alith at Cenarion Hold in Silithus. You must also bring Combat Task Briefing I in order to complete this quest.", + ["T"] = "Target: Hive\'Ashi Defenders", + }, + [8771] = { + ["D"] = "As the war effort mounts, the silithid presence in the area presents an ever increasing threat to our operations. You\'ve been selected to partake on an assault on Hive\'Ashi where your primary target will consist of Hive\'Ashi sandstalkers.$B$BReport back to Commander Mar\'alith after your task is completed.", + ["O"] = "Slay 30 Hive\'Ashi Sandstalkers and report back to Commander Mar\'alith at Cenarion Hold in Silithus. You must also bring Combat Task Briefing II in order to complete this quest.", + ["T"] = "Target: Hive\'Ashi Sandstalkers", + }, + [8772] = { + ["D"] = "Reinforcements have been called on to join the assault on Hive\'Zora. You have been selected to target Hive\'Zora waywatchers. Report back to Commander Mar\'alith after completing your task.", + ["O"] = "Slay 30 Hive\'Zora Waywatchers and report back to Commander Mar\'alith at Cenarion Hold in Silithus. You must also bring Combat Task Briefing VI in order to complete this quest.", + ["T"] = "Target: Hive\'Zora Waywatchers", + }, + [8773] = { + ["D"] = "Reinforcements have been called on to join the assault on Hive\'Zora. You have been selected to target Hive\'Zora reavers. Report back to Commander Mar\'alith after completing your task.", + ["O"] = "Slay 30 Hive\'Zora Reavers and report back to Commander Mar\'alith at Cenarion Hold in Silithus. You must also bring Combat Task Briefing IV in order to complete this quest.", + ["T"] = "Target: Hive\'Zora Reavers", + }, + [8774] = { + ["D"] = "As the war effort mounts, the silithid presence in the area presents an ever increasing threat to our operations. You\'ve been selected to partake on an assault on Hive\'Regal where your primary target will consist of the Hive\'Regal ambushers.$B$BReport back to Commander Mar\'alith after your task is completed.", + ["O"] = "Kill 30 Hive\'Regal Ambushers and report back to Commander Mar\'alith at Cenarion Hold in Silithus. You must also bring Combat Task Briefing VIII in order to complete this quest.", + ["T"] = "Target: Hive\'Regal Ambushers", + }, + [8775] = { + ["D"] = "As the war effort mounts, the silithid presence in the area presents an ever increasing threat to our operations. You\'ve been selected to partake on an assault on Hive\'Regal where your primary target will consist of the airborne Hive\'Regal spitfires.$B$BReport back to Commander Mar\'alith after your task is completed.", + ["O"] = "Kill 30 Hive\'Regal Spitfires and report back to Commander Mar\'alith at Cenarion Hold in Silithus. You must also bring Combat Task Briefing IX in order to complete this quest.", + ["T"] = "Target: Hive\'Regal Spitfires", + }, + [8776] = { + ["D"] = "As the war effort mounts, the silithid presence in the area presents an ever increasing threat to our operations. You\'ve been selected to partake on an assault on Hive\'Regal where your primary target will consist of the Hive\'Regal slavemakers.$B$BReport back to Commander Mar\'alith after your task is completed.", + ["O"] = "Kill 30 Hive\'Regal Slavemakers and report back to Commander Mar\'alith at Cenarion Hold in Silithus. You must also bring Combat Task Briefing X in order to complete this quest.", + ["T"] = "Target: Hive\'Regal Slavemakers", + }, + [8777] = { + ["D"] = "As the war effort mounts, the silithid presence in the area presents an ever increasing threat to our operations. You\'ve been selected to partake on an assault on Hive\'Regal where your primary target will consist of Hive\'Regal burrowers.$B$BReport back to Commander Mar\'alith after your task is completed.", + ["O"] = "Kill 30 Hive\'Regal Burrowers and report back to Commander Mar\'alith at Cenarion Hold in Silithus. You must also bring Combat Task Briefing XI in order to complete this quest.", + ["T"] = "Target: Hive\'Regal Burrowers", + }, + [8778] = { + ["D"] = "The Ironforge Brigade has put in an unusual request for highly... volatile... components. Gather them and bring them to Mr. Nozzlespring from the Ironforge Brigade.", + ["O"] = "Bring 6 Oils of Immolation, 5 Goblin Rocket Fuel and 10 Dense Blasting Powder to Arcanist Nozzlespring near Hive\'Zora in Silithus. You must also bring Logistics Task Briefing IV in order to complete this quest.", + ["T"] = "The Ironforge Brigade Needs Explosives!", + }, + [8779] = { + ["D"] = "Geologist Larksbane\'s studies have proven to be of tremendous value to our operations in Silithus. She has recently requested scrying materials to be used in her research.$B$BPlease gather these materials and deliver them to her directly so that she may continue her research.", + ["O"] = "Bring 1 Large Brilliant Shard, 1 Large Radiant Shard and 1 Huge Emerald to Geologist Larksbane at Cenarion Hold in Silithus. You must also bring Logistics Task Briefing V in order to complete this quest.", + ["T"] = "Scrying Materials", + }, + [8780] = { + ["D"] = "The Ironforge Brigade\'s supply of armor kits in the battlefield is running dangerously low. Obtain a batch and deliver them to Janela Stouthammer at the Ironforge Brigade\'s outpost outside Hive\'Zora.", + ["O"] = "Bring 8 Rugged Armor Kits and 8 Heavy Armor Kits to Janela Stouthammer at the Ironforge Brigade Outpost near Hive\'Zora in Silithus. You must also bring Logistics Task Briefing VII in order to complete this quest.", + ["T"] = "Armor Kits for the Field", + }, + [8781] = { + ["D"] = "The Ironforge Brigade has been a worthy ally in our fight in Silithus. Unfortunately, many of their supplies were lost on their way here. Procure a batch of weapons and deliver them to Janela Stouthammer near Hive\'Zora.", + ["O"] = "Bring 2 Moonsteel Broadswords to Janela Stouthammer at the Ironforge Brigade Outpost outside of Hive\'Zora. You must also bring Logistics Task Briefing VI in order to complete this quest.", + ["T"] = "Arms for the Field", + }, + [8782] = { + ["D"] = "The latest influx of volunteers has caused a shortage of uniforms. Procure a batch of uniform materials and bring them to Windcaller Proudhorn.", + ["O"] = "Bring 1 Mooncloth, 2 Bolts of Runecloth and 1 Ironweb Spider Silk to Windcaller Proudhorn at Cenarion Hold in Silithus. You must also bring Logistics Task Briefing VIII in order to complete this quest.", + ["T"] = "Uniform Supplies", + }, + [8783] = { + ["D"] = "Vargus, Cenarion Hold\'s blacksmith, has requested enchanted materials to be used in the crafting of powerful weapons for our forces. Obtain these and bring them directly to Vargus so that Cenarion Hold\'s troops may continue to be well equipped.", + ["O"] = "Bring 2 Enchanted Thorium Bars and 2 Enchanted Leather to Vargus at Cenarion Hold in Silithus. You must also bring Logistics Task Briefing IX in order to complete this quest.", + ["T"] = "Extraordinary Materials", + }, + [8784] = { + ["D"] = "You have discovered an ancient Qiraji artifact! Perhaps one of the dragons near the entrance of the temple would have a use for this relic.", + ["O"] = "Take the Ancient Qiraji Artifact to the dragons hiding near the entrance of the temple.", + ["T"] = "Secrets of the Qiraji", + }, + [8785] = { + ["D"] = "The Orgrimmar Legion has put in a request for several unusual ingredients. Given their current performance in Silithus, we\'d like to comply with their request as soon as possible. Gather the materials and bring them to the troll called Shai.", + ["O"] = "Bring 6 Powerful Mojo, 6 Flasks of Big Mojo and 8 Oils of Immolation to Shadow Priestess Shai near Hive\'Regal in Silithus. You must also bring Logistics Task Briefing IV in order to complete this quest.", + ["T"] = "The Orgrimmar Legion Needs Mojo!", + }, + [8786] = { + ["D"] = "The Orgrimmar Legion has put in a request for additional weapons that we haven\'t been able to provide at the moment. Obtain the weapons they\'ve requested and bring them to Merok Longstride outside of Hive\'Regal.", + ["O"] = "Bring 3 Massive Iron Axes to Merok Longstride at the Orgrimmar Legion camp outside of Hive\'Regal. You must also bring Logistics Task Briefing VI in order to complete this quest.", + ["T"] = "Arms for the Field", + }, + [8787] = { + ["D"] = "The brave volunteers of the Orgrimmar Legion have arrived to Silithus to aid us in our cause. Their supplies of armor kits were somehow lost in the trip. Obtain a batch of armor kits and deliver them to Merok Longstride at the location of the Orgrimmar Legion camp.", + ["O"] = "Bring 8 Rugged Armor Kits and 8 Heavy Armor Kits to Merok Longstride near Hive\'Regal. You must also bring Logistics Task Briefing VII in order to complete this quest.", + ["T"] = "Armor Kits for the Field", + }, + [8788] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Gently Shaken Gift", + }, + [8789] = { + ["D"] = "We have not sat idly by for a millennium, $N.$B$BWe have watched these beasts feast on their own when they have exhausted their utility. We have listened as they have plotted and schemed to destroy our world. And we have learned of their own internal treachery.$B$BWeaknesses exist and we know how to use those weaknesses to our advantage.$B$BFind and bring me their ceremonial armaments: Combined with the element created from the volatility of their own God, they will become a force of reckoning.", + ["O"] = "Arygos in the Temple of Ahn\'Qiraj will create Elementium Infused Armaments for you should you bring him Imperial Qiraji Armaments and 3 Elementium Ore.", + ["T"] = "Imperial Qiraji Armaments", + }, + [8790] = { + ["D"] = "Arygos theorizes that the element which is born of conflicts between the Old Gods and their minions is also extremely deadly to them under the right conditions. I speak of Elementium, mortal.$B$BFind and bring me Imperial Qiraji Regalia and the toxic element and I shall infuse weapons of great power.", + ["O"] = "Merithra of the Dream in the Temple of Ahn\'Qiraj will create Elementium Infused Armaments for you should you bring her Imperial Qiraji Regalia and 3 Elementium Ore.", + ["T"] = "Imperial Qiraji Regalia", + }, + [8791] = { + ["D"] = "A terrible menace has been laid to rest. The cruel Ossirian has been vanquished.$B$BThe denizens of Kalimdor would be relieved to know of this victory. Take Ossirian\'s head and present it to Commander Mar\'alith of Cenarion Hold.", + ["O"] = "Deliver the Head of Ossirian the Unscarred to Commander Mar\'alith at Cenarion Hold in Silithus.", + ["T"] = "The Fall of Ossirian", + }, + [8792] = { + ["D"] = "Hello, I\'m glad that you\'ve decided to hear me out. The Horde needs all of the help that it can get to prepare for the Ahn\'Qiraj War, and that means that we need you! Even now as we speak, official collectors are gathering the necessary material needed for the upcoming war, but we won\'t be able to meet our goals without your assistance, $N!$B$BYou should go speak with the guy in charge, Warlord Gorchuk. What do you say, $c? Will you help out with the vital preparations?", + ["O"] = "Speak with Warlord Gorchuk in Orgrimmar\'s Valley of Spirits.", + ["T"] = "The Horde Needs Your Help!", + }, + [8793] = { + ["D"] = "Hello, I\'m glad that you\'ve decided to hear me out. The Horde needs all of the help that it can get to prepare for the Ahn\'Qiraj War, and that means that we need you! Even now as we speak, official collectors are gathering the necessary material needed for the upcoming war, but we won\'t be able to meet our goals without your assistance, $N!$B$BYou should go speak with the guy in charge, Warlord Gorchuk. What do you say, $c? Will you help out with the vital preparations?", + ["O"] = "Speak with Warlord Gorchuk in Orgrimmar\'s Valley of Spirits.", + ["T"] = "The Horde Needs Your Help!", + }, + [8794] = { + ["D"] = "Hello, I\'m glad that you\'ve decided to hear me out. The Horde needs all of the help that it can get to prepare for the Ahn\'Qiraj War, and that means that we need you! Even now as we speak, official collectors are gathering the necessary material needed for the upcoming war, but we won\'t be able to meet our goals without your assistance, $N!$B$BYou should go speak with the guy in charge, Warlord Gorchuk. What do you say, $c? Will you help out with the vital preparations?", + ["O"] = "Speak with Warlord Gorchuk in Orgrimmar\'s Valley of Spirits.", + ["T"] = "The Horde Needs Your Help!", + }, + [8795] = { + ["D"] = "Hello, I\'m glad that you\'ve decided to hear me out. The Alliance needs all of the help that it can get to prepare for the Ahn\'Qiraj War, and that means that we need you! Even now as we speak, official collectors are gathering the necessary material needed for the upcoming war, but we won\'t be able to meet our goals without your assistance, $N!$B$BYou should go speak with the guy in charge, Field Marshal Snowfall. What do you say, $c? Will you help out with the vital preparations?", + ["O"] = "Speak with Field Marshal Snowfall in Ironforge\'s Military Ward.", + ["T"] = "The Alliance Needs Your Help!", + }, + [8796] = { + ["D"] = "Hello, I\'m glad that you\'ve decided to hear me out. The Alliance needs all of the help that it can get to prepare for the Ahn\'Qiraj War, and that means that we need you! Even now as we speak, official collectors are gathering the necessary material needed for the upcoming war, but we won\'t be able to meet our goals without your assistance, $N!$B$BYou should go speak with the guy in charge, Field Marshal Snowfall. What do you say, $c? Will you help out with the vital preparations?", + ["O"] = "Speak with Field Marshal Snowfall in Ironforge\'s Military Ward.", + ["T"] = "The Alliance Needs Your Help!", + }, + [8797] = { + ["D"] = "Hello, I\'m glad that you\'ve decided to hear me out. The Alliance needs all of the help that it can get to prepare for the Ahn\'Qiraj War, and that means that we need you! Even now as we speak, official collectors are gathering the necessary material needed for the upcoming war, but we won\'t be able to meet our goals without your assistance, $N!$B$BYou should go speak with the guy in charge, Field Marshal Snowfall. What do you say, $c? Will you help out with the vital preparations?", + ["O"] = "Speak with Field Marshal Snowfall in Ironforge\'s Military Ward.", + ["T"] = "The Alliance Needs Your Help!", + }, + [8798] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Yeti of Your Own", + }, + [8799] = { + ["D"] = "Listen... I\'m not really supposed to be telling you this, but since you\'re the hero of the day and all...$B$BThere\'s fresh holly everywhere this time of the year, but it never lasts. We\'ve got a machine that preserves holly - it never goes bad! We use it to spice up the holiday... and profits during the summer!$B$BI\'ll let you use the preserver, but only if you\'re a master cook. You\'ll need some deeprock salt and two, three, oh let\'s say five gold. It\'ll net you a nice batch that\'s yours to keep.", + ["O"] = "Bring 1 Deeprock Salt and 5 gold coins to the Holly Preserver machine, upon which you will receive 5 Preserved Holly.", + ["T"] = "The Hero of the Day", + }, + [8800] = { + ["D"] = "As you complete the tasks you\'re assigned in the war you\'ll want to talk to Vargus, the blacksmith. Show him any badges you\'ve earned along the way. He\'ll provide you with gear to match your level of commitment to our cause.", + ["O"] = "Talk to Vargus at Cenarion Hold in Silithus.", + ["T"] = "Cenarion Battlegear", + }, + [8801] = { + ["D"] = "The walls of Ahn\'Qiraj tremble. A force of evil, older than the world itself, has been destroyed.$B$BAs you look at the remnants of the colossal abomination your heart nearly freezes. Even in death you can feel the legacy of C\'Thun\'s evil around you.$B$BYou have done what was thought to be impossible.$B$BYou grab at an eye stalk of the fiend, stowing it safely in your pack.$B$BTake the Eye of C\'Thun to the dragons in the next chamber. ", + ["O"] = "Take the Eye of C\'Thun to Caelastrasz in the Temple of Ahn\'Qiraj.", + ["T"] = "C\'Thun\'s Legacy", + }, + [8802] = { + ["D"] = "To the Caverns of Time you go, $G Lord:Lady; $N. Anachronos awaits your return. Give him the eye of C\'Thun as he will undoubtedly wish to place it in his master\'s collection.", + ["O"] = "Take the Eye of C\'Thun to Anachronos at the Caverns of Time.", + ["T"] = "The Savior of Kalimdor", + }, + [8803] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Festive Gift", + }, + [8804] = { + ["D"] = "With the arrival of fresh recruits to Cenarion Hold comes the problem of keeping them alive in the desert. Dehydration as well as numerous poisonous creatures present a serious threat to inexperienced volunteers. Gather the supplies necessary for a desert survival kit and bring them to Calandrath in Cenarion Hold.", + ["O"] = "Bring 4 Globes of Water, 4 Powerful Anti-Venom and 4 Smoked Desert Dumplings to Calandrath at the inn in Cenarion Hold in Silithus. You must also bring Logistics Task Briefing I in order to complete this quest.", + ["T"] = "Desert Survival Kits", + }, + [8805] = { + ["D"] = "The mounted division of the Cenarion Hold guard is in short supply of ornate mithril boots. Procure a batch and deliver them immediately to Captain Vish Kozus in Cenarion Hold.", + ["O"] = "Bring 3 Ornate Mithril Boots to Vish Kozus, Captain of the Guard at Cenarion Hold in Silithus. You must also bring Logistics Task Briefing II in order to complete this quest.", + ["T"] = "Boots for the Guard", + }, + [8806] = { + ["D"] = "The Cenarion Hold guard is in short supply of grinding stones. Procure a batch and deliver them immediately to Captain Vish Kozus in Cenarion Hold.", + ["O"] = "Bring 10 Dense Grinding Stones, 10 Solid Grinding Stones and 10 Heavy Grinding Stones to Vish Kozus, Captain of the Guard at Cenarion Hold in Silithus. You must also bring Logistics Task Briefing III in order to complete this quest.", + ["T"] = "Grinding Stones for the Guard", + }, + [8807] = { + ["D"] = "Geologist Larksbane\'s studies have proven to be of tremendous value to our operations in Silithus. She has recently requested scrying materials to be used in her research.$B$BPlease gather these materials and deliver them to her directly so that she may continue her research.", + ["O"] = "Bring 1 Large Brilliant Shard, 1 Large Radiant Shard and 1 Huge Emerald to Geologist Larksbane at Cenarion Hold in Silithus. You must also bring Logistics Task Briefing V in order to complete this quest.", + ["T"] = "Scrying Materials", + }, + [8808] = { + ["D"] = "The latest influx of volunteers has caused a shortage of uniforms. Procure a batch of uniform materials and bring them to Windcaller Proudhorn.", + ["O"] = "Bring 1 Mooncloth, 2 Bolts of Runecloth and 1 Ironweb Spider Silk to Windcaller Proudhorn at Cenarion Hold in Silithus. You must also bring Logistics Task Briefing VIII in order to complete this quest.", + ["T"] = "Uniform Supplies", + }, + [8809] = { + ["D"] = "Vargus, Cenarion Hold\'s blacksmith, has requested enchanted materials to be used in the crafting of powerful weapons for our forces. Obtain these and bring them directly to Vargus so that Cenarion Hold\'s troops may continue to be well equipped.", + ["O"] = "Bring 2 Enchanted Thorium Bars and 2 Enchanted Leather to Vargus at Cenarion Hold in Silithus. You must also bring Logistics Task Briefing IX in order to complete this quest.", + ["T"] = "Extraordinary Materials", + }, + [8810] = { + ["D"] = "Our supply of bandages in the battlefield is running dangerously low after the recent casualties we have incurred. Obtain a batch of first-aid supplies and deliver them to Windcaller Proudhorn in Cenarion Hold.", + ["O"] = "Bring 30 Heavy Runecloth Bandages, 30 Heavy Silk Bandages and 30 Heavy Mageweave Bandages to Windcaller Proudhorn at Cenarion Hold in Silithus. You must also bring Logistics Task Briefing X in order to complete this quest.", + ["T"] = "Bandages for the Field", + }, + [8811] = { + ["D"] = "", + ["O"] = "", + ["T"] = "One Commendation Signet", + }, + [8812] = { + ["D"] = "", + ["O"] = "", + ["T"] = "One Commendation Signet", + }, + [8813] = { + ["D"] = "", + ["O"] = "", + ["T"] = "One Commendation Signet", + }, + [8814] = { + ["D"] = "", + ["O"] = "", + ["T"] = "One Commendation Signet", + }, + [8815] = { + ["D"] = "", + ["O"] = "", + ["T"] = "One Commendation Signet", + }, + [8816] = { + ["D"] = "", + ["O"] = "", + ["T"] = "One Commendation Signet", + }, + [8817] = { + ["D"] = "", + ["O"] = "", + ["T"] = "One Commendation Signet", + }, + [8818] = { + ["D"] = "", + ["O"] = "", + ["T"] = "One Commendation Signet", + }, + [8819] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Ten Commendation Signets", + }, + [8820] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Ten Commendation Signets", + }, + [8821] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Ten Commendation Signets", + }, + [8822] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Ten Commendation Signets", + }, + [8823] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Ten Commendation Signets", + }, + [8824] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Ten Commendation Signets", + }, + [8825] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Ten Commendation Signets", + }, + [8826] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Ten Commendation Signets", + }, + [8827] = { + ["D"] = "I hear Greatfather Winter - with the generous support of Smokeywood Pastures - has put presents for everyone under the tree in Ironforge. I wish I could go, but I\'ve got to look after the PX-238 Winter Wondervolt.$b$bBut you should definitely check it out. I\'m sure Greatfather Winter has some presents with your name on them.", + ["O"] = "Speak with Greatfather Winter. He is located near the Smokywood Pastures vendor area in Ironforge.", + ["T"] = "Winter\'s Presents", + }, + [8828] = { + ["D"] = "I hear Great-father Winter - with the generous support of Smokeywood Pastures - has put presents for everyone under the tree in Orgrimmar. I wish I could go, but I\'ve got to look after the PX-238 Winter Wondervolt.$b$bBut you should definitely check it out. I\'m sure Great-father Winter has some presents with your name on them.", + ["O"] = "Speak with Great-father Winter. He is located near the Smokywood Pastures vendor area in Orgrimmar.", + ["T"] = "Winter\'s Presents", + }, + [8829] = { + ["D"] = "The Twilight\'s Hammer operates through innumerable layers of secrecy and deceit. While their actions are carried out in our world, they are planned in a place we have not yet been able to reach.$B$BWe\'ve come to believe that the stones the Twilight\'s Hammer uses to summon their superiors allow for two-way transportation. To attempt to use them in this manner, we must replicate - to every last detail - a twilight emissary\'s robe.$B$BGather the necessary materials and bring them to Aurel Goldleaf, $N. ", + ["O"] = "Bring a Skin of Shadow, 3 Frayed Abomination Stitchings and 1 Twilight Cultist Robe to Aurel Goldleaf at Cenarion Hold in Silithus. You must also bring Logistics Task Briefing XI in order to complete this quest.", + ["T"] = "The Ultimate Deception", + }, + [8830] = { + ["D"] = "", + ["O"] = "", + ["T"] = "One Commendation Signet", + }, + [8831] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Ten Commendation Signets", + }, + [8832] = { + ["D"] = "", + ["O"] = "", + ["T"] = "One Commendation Signet", + }, + [8833] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Ten Commendation Signets", + }, + [8834] = { + ["D"] = "", + ["O"] = "", + ["T"] = "One Commendation Signet", + }, + [8835] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Ten Commendation Signets", + }, + [8836] = { + ["D"] = "", + ["O"] = "", + ["T"] = "One Commendation Signet", + }, + [8837] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Ten Commendation Signets", + }, + [8838] = { + ["D"] = "", + ["O"] = "", + ["T"] = "One Commendation Signet", + }, + [8839] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Ten Commendation Signets", + }, + [8840] = { + ["D"] = "", + ["O"] = "", + ["T"] = "One Commendation Signet", + }, + [8841] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Ten Commendation Signets", + }, + [8842] = { + ["D"] = "", + ["O"] = "", + ["T"] = "One Commendation Signet", + }, + [8843] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Ten Commendation Signets", + }, + [8844] = { + ["D"] = "", + ["O"] = "", + ["T"] = "One Commendation Signet", + }, + [8845] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Ten Commendation Signets", + }, + [8846] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Five Signets for War Supplies", + }, + [8847] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Ten Signets for War Supplies", + }, + [8848] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Fifteen Signets for War Supplies", + }, + [8849] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Twenty Signets for War Supplies", + }, + [8850] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Thirty Signets for War Supplies", + }, + [8851] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Five Signets for War Supplies", + }, + [8852] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Ten Signets for War Supplies", + }, + [8853] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Fifteen Signets for War Supplies", + }, + [8854] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Twenty Signets for War Supplies", + }, + [8855] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Thirty Signets for War Supplies", + }, + [8856] = { + ["D"] = "With the arrival of fresh recruits to Cenarion Hold comes the problem of keeping them alive in the desert. Dehydration as well as numerous poisonous creatures present a serious threat to inexperienced volunteers. Gather the supplies necessary for a desert survival kit and bring them to Calandrath in Cenarion Hold.", + ["O"] = "Bring 4 Globes of Water, 4 Powerful Anti-Venom and 4 Baked Salmon to Calandrath at the inn in Cenarion Hold in Silithus.", + ["T"] = "Desert Survival Kits", + }, + [8857] = { + ["D"] = "I\'m looking for battle hardened adventurers willing and able to get a fresh husk sample from the fallen Colossus of Ashi to Oglethorpe in Booty Bay. No, no, I wouldn\'t want you to go anywhere near that thing\'s corpse. Just take one of my samples and make it snappy. These things are no good to him rotten!", + ["O"] = "Take the Colossus of Ashi\'s Husk to Oglethorpe Obnoticus in Booty Bay.", + ["T"] = "Secrets of the Colossus - Ashi", + }, + [8858] = { + ["D"] = "There ain\'t nothin\' I\'d like more than to stuff this bug husk down Oilfist\'s fat face... Cept, I\'m stuck here collectin\' samples from that overgrown cockroach. I\'ll be here \'till the wee mornin\' hours given the size o\' that thing.$B$BTake this here sample to Oilfist fer me and do it fast, $c. He\'s payin\' BIG!$B$BYar, Thorium Point - it be in the Searin\' Gorge.", + ["O"] = "Take the Colossus of Regal\'s Husk to Overseer Oilfist in Searing Gorge.", + ["T"] = "Secrets of the Colossus - Regal", + }, + [8859] = { + ["D"] = "My servants were nearly killed in their efforts to recover this sample. You absolutely must hurry! Lord Maxwell Tyrosus eagerly awaits a fresh husk sample. He believes that the secrets of this Colossus could help us in the war against the Scourge!$B$BWhy are you still here!? To Light\'s Hope! Yes, you will be rewarded handsomely for your efforts...", + ["O"] = "Take the Colossus of Zora\'s Husk to Lord Maxwell Tyrosus at Light\'s Hope Chapel in the Eastern Plaguelands.", + ["T"] = "Secrets of the Colossus - Zora", + }, + [8860] = { + ["D"] = "Stormwind is holding a celebration for the new year! All day long today you can get free booze, and at night they\'ll put on a firework show! It should be pretty nice... but Booty Bay is also having a party today; I bet it\'ll be even better!$B$BWell anyway, Innkeeper Allison in Stormwind needs a supply of Smoky Wood Pasture fare to help feed all the party goers. Can you do me a favor and deliver it!$B$BThanks, $N! Innkeeper Allison is in the Gilded Rose, in the Trade District of Stormwind.", + ["O"] = "Bring the Smokywood Supplies to Innkeeper Allison in Stormwind.", + ["T"] = "New Year Celebrations!", + }, + [8861] = { + ["D"] = "Thunder Bluff is holding a celebration for the new year! All day you\'ll find free booze there, and at night they\'ll put on a firework show!$B$BIt should be pretty nice... but Booty Bay is also having a party today; I bet it\'ll be even better!$B$BWell anyway, Innkeeper Pala in Thunder Bluff needs a supply of Smoky Wood Pasture fare to help feed all the party goers. Can you do me a favor and deliver it!$B$BThanks, $N! Innkeeper Pala is in the inn near the bridge to Hunter\'s Rise.", + ["O"] = "Bring the Smokywood Supplies to Innkeeper Pala in Thunder Bluff.", + ["T"] = "New Year Celebrations!", + }, + [8862] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Elune\'s Candle", + }, + [8863] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Festival Dumplings", + }, + [8864] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Festive Lunar Dresses", + }, + [8865] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Festive Lunar Pant Suits", + }, + [8866] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Bronzebeard the Elder", + }, + [8867] = { + ["D"] = "Every year the druids of Moonglade hold a celebration of our city\'s great triumph over an ancient evil.$B$BWe celebrate the wisdom of our elders, share in magnificent feasts and of course... shoot fireworks!$B$BFor a small donation you can purchase colorful rockets from our vendor. Try using some of the launchers around here, $N.", + ["O"] = "Launch 8 Lunar Fireworks and 2 Cluster Fireworks and return to a Lunar Festival Harbinger at any capital city.", + ["T"] = "Lunar Fireworks", + }, + [8868] = { + ["D"] = "The beast Omen was once a hero of this world. A wolf of great strength and fortune, Omen fought beside the heroes of the War of the Ancients until he succumbed to demonic magics. Turning against his allies, he raged across Azeroth and carried death and terror in his wake.$B$BFinally defeated here, in Moonglade, Omen now sleeps among the silt of Lake Elune\'ara. But each new year, during the festival, he stirs...$B$BGather cohorts, $N, and summon and defeat the beast Omen. Earn the blessing of Elune!", + ["O"] = "Summon Omen, defeat him and gain Elune\'s Blessing. Return to Valadar Starsong in Nighthaven", + ["T"] = "Elune\'s Blessing", + }, + [8869] = { + ["D"] = "Within the confines of the Scarlet Bastion lies sweet Serenity. The Crimson Hammersmith guards the recipe with his life. Defeat him and bring me his apron. For that, I shall train you to become a hammersmith.$B$BUnderstand this: Once you have chosen the path of the hammersmith, the paths of the swordsmith and axesmith will no longer be available.", + ["O"] = "Travel to Stratholme and kill the Crimson Hammersmith. Recover the Crimson Hammersmith\'s Apron and return to Lilith.", + ["T"] = "Sweet Serenity", + }, + [8870] = { + ["D"] = "It\'s that time of the year, $N! The Cenarion Circle invites all denizens of Azeroth to partake in our celebration of the Lunar Festival. You will find the Lunar Festival Harbinger in this very city at a location marked by a blessed circle of moonlight. She can tell you more about the holiday.", + ["O"] = "Talk to the Lunar Festival Harbinger in the Mystic Ward of Ironforge. You can also talk to Lunar Festival Harbingers in other capital cities.", + ["T"] = "The Lunar Festival", + }, + [8871] = { + ["D"] = "It\'s that time of the year, $N! The Cenarion Circle invites all denizens of Azeroth to partake in our celebration of the Lunar Festival. You will find the Lunar Festival Harbinger in this very city at a location marked by a blessed circle of moonlight. She can tell you more about the holiday.", + ["O"] = "Talk to the Lunar Festival Harbinger in the Park District in Stormwind. You can also talk to Lunar Festival Harbingers in other capital cities.", + ["T"] = "The Lunar Festival", + }, + [8872] = { + ["D"] = "It\'s that time of the year, $N! The Cenarion Circle invites all denizens of Azeroth to partake in our celebration of the Lunar Festival. You will find the Lunar Festival Harbinger in this very city at a location marked by a blessed circle of moonlight. She can tell you more about the holiday.", + ["O"] = "Talk to the Lunar Festival Harbinger at the Cenarion Enclave in Darnassus. You can also talk to Lunar Festival Harbingers in other capital cities.", + ["T"] = "The Lunar Festival", + }, + [8873] = { + ["D"] = "It\'s that time of the year, $N! The Cenarion Circle invites all denizens of Azeroth to partake in our celebration of the Lunar Festival. You will find the Lunar Festival Harbinger in this very city at a location marked by a blessed circle of moonlight. She can tell you more about the holiday.", + ["O"] = "Talk to the Lunar Festival Harbinger in the Valley of Wisdom in Orgrimmar. You can also talk to Lunar Festival Harbingers in other capital cities.", + ["T"] = "The Lunar Festival", + }, + [8874] = { + ["D"] = "It\'s that time of the year, $N! The Cenarion Circle invites all denizens of Azeroth to partake in our celebration of the Lunar Festival. You will find the Lunar Festival Harbinger in this very city at a location marked by a blessed circle of moonlight. She can tell you more about the holiday.", + ["O"] = "Talk to the Lunar Festival Harbinger in the entrance to the Undercity. You can also talk to Lunar Festival Harbingers in other capital cities.", + ["T"] = "The Lunar Festival", + }, + [8875] = { + ["D"] = "It\'s that time of the year, $N! The Cenarion Circle invites all denizens of Azeroth to partake in our celebration of the Lunar Festival. You will find the Lunar Festival Harbinger in this very city at a location marked by a blessed circle of moonlight. She can tell you more about the holiday.", + ["O"] = "Talk to the Lunar Festival Harbinger at the Elder Rise in Thunder Bluff. You can also talk to Lunar Festival Harbingers in other capital cities.", + ["T"] = "The Lunar Festival", + }, + [8876] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Small Rockets", + }, + [8877] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Firework Launcher", + }, + [8878] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Festive Recipes", + }, + [8879] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Large Rockets", + }, + [8880] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Cluster Rockets", + }, + [8881] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Large Cluster Rockets", + }, + [8882] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Cluster Launcher", + }, + [8883] = { + ["D"] = "Now that you have your Lunar Festival invitation, you may travel to Moonglade! There you will find many revelers, and in the village of Nighthaven Valadar Starsong and his sister Fariel await those eager to participate in the celebration.$B$BTravel to Moonglade through the greater moonlight and speak with Valadar Starsong; see what prizes you might gain during the festival!", + ["O"] = "Use your Lunar Festival Invitation in the moonlight to travel to Moonglade. Speak with Valadar Starsong in Nighthaven when you arrive.", + ["T"] = "Valadar Starsong", + }, + [8893] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Super Egg-O-Matic", + }, + [8897] = { + ["D"] = "I\'ve got to keep watch here at the gate, but I\'m always worrying about my sweetheart, Colara. I only get to see her for a few hours, if I\'m lucky, and well, just look at me. I\'ve got a minor officer\'s pay and I could be called to the front any day now.$b$bWould she just forget about me? There are a lot of men in the city. A lot of rich ones.$b$bAnyways, I\'ve scribbled some things down... nothing much, but if you could take it to her for me, that\'d be great.", + ["O"] = "Deliver Lieutenant Heldric\'s Carefully Penned Note to Colara Dean outside the bank in Stormwind.", + ["T"] = "Dearest Colara,", + }, + [8898] = { + ["D"] = "I met a lass in Stormwind when I was last there on the bank\'s business. She stole my heart away. Now, I can\'t stop thinking about her! I\'d like to send her this message - I\'ve rewritten it twelve times!$b$bThe mail is so full now, and I want to make sure it gets there.$b$bIf you\'re heading that way, could you help me?", + ["O"] = "Deliver the Creased Letter to Colara Dean outside the bank in Stormwind.", + ["T"] = "Dearest Colara,", + }, + [8899] = { + ["D"] = "How to describe her beauty? Thousands of years of words and I am at a loss.$b$bThese mortals confound the mind and leave us babbling fools.$b$bI\'ve stared at these words too long. No more eloquent meaning can I squeeze from them. No, she must have it now, or some other suitor will surely steal her eye.", + ["O"] = "Deliver the Immaculate Letter to Colara Dean outside the bank in Stormwind.", + ["T"] = "Dearest Colara,", + }, + [8900] = { + ["D"] = "She was so sad. I could see that, once I saw past her state. I mean, she seemed sad - wouldn\'t you?$b$bBut after talking to her, there was a connection. I didn\'t think anyone could understand what I was thinking, but she could.$b$bWhen I told the others, they laughed at me, so I never spoke with her again. But I miss her. Can you take this letter to her for me? I want to be sure it finds her hands.", + ["O"] = "Deliver the Slightly Creased Note to Elenia Haydon near the bank in the Undercity.", + ["T"] = "Dearest Elenia,", + }, + [8901] = { + ["D"] = "Have you ever known love, young one? It was a thing foreign to me until lately, when I met a girl from the Undercity, Elenia. It is rare enough for one of my kind to look outside our own, let alone one of the Forsaken.$b$bBut now thoughts of her occupy my mind both days and nights.$b$bIf you can, could you take this letter to her? I want her to come here to Mulgore. I hope that she will say yes.", + ["O"] = "Deliver the Carefully Written Letter to Elenia Haydon near the bank in the Undercity.", + ["T"] = "Dearest Elenia,", + }, + [8902] = { + ["D"] = "A lifetime ago, I was betrothed to marry Elenia, my childhood sweetheart. It\'s been years since I thought about her last, but of late, she frequently occupies my thoughts.$b$bPerhaps, even with everything that has passed, there can be some room in each other\'s lives for our love.$b$bI\'m sure she has changed, also. Can you deliver this letter to her for me? I am too nervous to give it in person.", + ["O"] = "Deliver the Lovingly Composed Letter to Elenia Haydon near the bank in the Undercity.", + ["T"] = "Dearest Elenia,", + }, + [8903] = { + ["D"] = "There\'s something unnatural about this epidemic of love. It\'s not proper, it\'s an eyesore, and at worst, it could be a threat to the the safety of the Alliance itself.$b$bJust think: what if the guards have been taken in by this strange affliction? Something must be done.$b$bGo to one of the guards here in Stormwind and see if they\'ve been caught up in this foolishness.", + ["O"] = "Get a Stormwind Guard\'s Card and return it to Aristan Mottar in Stormwind.", + ["T"] = "Dangerous Love", + }, + [8904] = { + ["D"] = "There\'s something unnatural about this epidemic of love. It\'s disgusting, and as it lowers our defenses, it could be a threat to the all of us.$b$bIt\'s bad enough that so many of our people are caught up in this ridiculous behavior. But I think that it has spread even to our guardians, who should be immune to such things.$b$bFind one of our guardians and see if they\'ve been caught up in this foolishness.", + ["O"] = "Get a Guardian\'s Moldy Card and bring it to Fenstad Argyle in the Undercity.", + ["T"] = "Dangerous Love", + }, + [8905] = { + ["D"] = "Well met, $c. I\'ve something that might interest you.$B$BI have in my possession a set of armor much like the one worn by those of your profession, but of much higher quality. I\'d be willing to trade the bracers for ordinary ones in exchange for a small favor.$B$BThe blood of the frostsabers and bears that inhabit Winterspring has properties I\'m in need of at the moment. Bring me a sizeable sample of it along with the bracers and a small amount of gold. You shall find the effort worth your while.", + ["O"] = "Acquire 15 Winterspring Blood Samples and 20 gold and bring them along with a set of Wildheart Bracers to Deliana in Ironforge.", + ["T"] = "An Earnest Proposition", + }, + [8906] = { + ["D"] = "Well met, $c. I\'ve something that might interest you.$B$BI have in my possession a set of armor much like the one worn by those of your profession, but of much higher quality. I\'d be willing to trade the bracers for ordinary ones in exchange for a small favor.$B$BThe blood of the frostsabers and bears that inhabit Winterspring has properties I\'m in need of at the moment. Bring me a sizeable sample of it along with the bracers and a small amount of gold. You shall find the effort worth your while.", + ["O"] = "Acquire 15 Winterspring Blood Samples and 20 gold and bring them along with a set of Beaststalker\'s Bindings to Deliana in Ironforge.", + ["T"] = "An Earnest Proposition", + }, + [8907] = { + ["D"] = "Well met, $c. I\'ve something that might interest you.$B$BI have in my possession a set of armor much like the one worn by those of your profession, but of much higher quality. I\'d be willing to trade the bracers for ordinary ones in exchange for a small favor.$B$BThe blood of the frostsabers and bears that inhabit Winterspring has properties I\'m in need of at the moment. Bring me a sizeable sample of it along with the bracers and a small amount of gold. You shall find the effort worth your while.", + ["O"] = "Acquire 15 Winterspring Blood Samples and 20 gold and bring them along with a set of Magister\'s Bindings to Deliana in Ironforge.", + ["T"] = "An Earnest Proposition", + }, + [8908] = { + ["D"] = "Well met, $c. I\'ve something that might interest you.$B$BI have in my possession a set of armor much like the one worn by those of your profession, but of much higher quality. I\'d be willing to trade the bracers for ordinary ones in exchange for a small favor.$B$BThe blood of the frostsabers and bears that inhabit Winterspring has properties I\'m in need of at the moment. Bring me a sizeable sample of it along with the bracers and a small amount of gold. You shall find the effort worth your while.", + ["O"] = "Acquire 15 Winterspring Blood Samples and 20 gold and bring them along with a set of Lightforge Bracers to Deliana in Ironforge.", + ["T"] = "An Earnest Proposition", + }, + [8909] = { + ["D"] = "Well met, $c. I\'ve something that might interest you.$B$BI have in my possession a set of armor much like the one worn by those of your profession, but of much higher quality. I\'d be willing to trade the bracers for ordinary ones in exchange for a small favor.$B$BThe blood of the frostsabers and bears that inhabit Winterspring has properties I\'m in need of at the moment. Bring me a sizeable sample of it along with the bracers and a small amount of gold. You shall find the effort worth your while.", + ["O"] = "Acquire 15 Winterspring Blood Samples and 20 gold and bring them along with 1 set of Devout Bracers to Deliana in Ironforge.", + ["T"] = "An Earnest Proposition", + }, + [8910] = { + ["D"] = "Well met, $c. I\'ve something that might interest you.$B$BI have in my possession a set of armor much like the one worn by those of your profession, but of much higher quality. I\'d be willing to trade the bracers for ordinary ones in exchange for a small favor.$B$BThe blood of the frostsabers and bears that inhabit Winterspring has properties I\'m in need of at the moment. Bring me a sizeable sample of it along with the bracers and a small amount of gold. You shall find the effort worth your while.", + ["O"] = "Acquire 15 Winterspring Blood Samples and 20 gold and bring them along with a set of Shadowcraft Bracers to Deliana in Ironforge.", + ["T"] = "An Earnest Proposition", + }, + [8911] = { + ["D"] = "Well met, $c. I\'ve something that might interest you.$B$BI have in my possession a set of armor much like the one worn by those of your profession, but of much higher quality. I\'d be willing to trade the bracers for ordinary ones in exchange for a small favor.$B$BThe blood of the frostsabers and bears that inhabit Winterspring has properties I\'m in need of at the moment. Bring me a sizeable sample of it along with the bracers and a small amount of gold. You shall find the effort worth your while.", + ["O"] = "Acquire 15 Winterspring Blood Samples and 20 gold and bring them along with a set of Dreadmist Bracers to Deliana in Ironforge.", + ["T"] = "An Earnest Proposition", + }, + [8912] = { + ["D"] = "Well met, $c. I\'ve something that might interest you.$B$BI have in my possession a set of armor much like the one worn by those of your profession, but of much higher quality. I\'d be willing to trade the bracers for ordinary ones in exchange for a small favor.$B$BThe blood of the frostsabers and bears that inhabit Winterspring has properties I\'m in need of at the moment. Bring me a sizeable sample of it along with the bracers and a small amount of gold. You shall find the effort worth your while.", + ["O"] = "Acquire 15 Winterspring Blood Samples and 20 gold and bring them along with a set of Bracers of Valor to Deliana in Ironforge.", + ["T"] = "An Earnest Proposition", + }, + [8913] = { + ["D"] = "Hail, $c! I can tell by your demeanor that you\'ve seen and done much in this world. Yet I\'m willing to wager you haven\'t seen a piece of armor like this.$B$BPerform a small favor for me and I\'ll be willing to trade it to you for an ordinary set of bracers.$B$BI\'m in need of a sizeable sample of venom drawn from the spiders and scorpions that inhabit Silithus. Bring this to me along with a few gold coins and I\'ll perform the exchange.", + ["O"] = "Acquire 15 Silithus Venom Samples and 20 gold and bring them along with a set of Wildheart Bracers to Mokvar in Orgrimmar.", + ["T"] = "An Earnest Proposition", + }, + [8914] = { + ["D"] = "Hail, $c! I can tell by your demeanor that you\'ve seen and done much in this world. Yet I\'m willing to wager you haven\'t seen a piece of armor like this.$B$BPerform a small favor for me and I\'ll be willing to trade it to you for an ordinary set of bracers.$B$BI\'m in need of a sizeable sample of venom drawn from the spiders and scorpions that inhabit Silithus. Bring this to me along with a few gold coins and I\'ll perform the exchange.", + ["O"] = "Acquire 15 Silithus Venom Samples and 20 gold and bring them along with a set of Beaststalker\'s Bindings to Mokvar in Orgrimmar.", + ["T"] = "An Earnest Proposition", + }, + [8915] = { + ["D"] = "Hail, $c! I can tell by your demeanor that you\'ve seen and done much in this world. Yet I\'m willing to wager you haven\'t seen a piece of armor like this.$B$BPerform a small favor for me and I\'ll be willing to trade it to you for an ordinary set of bracers.$B$BI\'m in need of a sizeable sample of venom drawn from the spiders and scorpions that inhabit Silithus. Bring this to me along with a few gold coins and I\'ll perform the exchange.", + ["O"] = "Acquire 15 Silithus Venom Samples and 20 gold and bring them along with a set of Magister\'s Bindings to Mokvar in Orgrimmar.", + ["T"] = "An Earnest Proposition", + }, + [8916] = { + ["D"] = "Hail, $c! I can tell by your demeanor that you\'ve seen and done much in this world. Yet I\'m willing to wager you haven\'t seen a piece of armor like this.$B$BPerform a small favor for me and I\'ll be willing to trade it to you for an ordinary set of bracers.$B$BI\'m in need of a sizeable sample of venom drawn from the spiders and scorpions that inhabit Silithus. Bring this to me along with a few gold coins and I\'ll perform the exchange.", + ["O"] = "Acquire 15 Silithus Venom Samples and 20 gold and bring them along with a set of Devout Bracers to Mokvar in Orgrimmar.", + ["T"] = "An Earnest Proposition", + }, + [8917] = { + ["D"] = "Hail, $c! I can tell by your demeanor that you\'ve seen and done much in this world. Yet I\'m willing to wager you haven\'t seen a piece of armor like this.$B$BPerform a small favor for me and I\'ll be willing to trade it to you for an ordinary set of bracers.$B$BI\'m in need of a sizeable sample of venom drawn from the spiders and scorpions that inhabit Silithus. Bring this to me along with a few gold coins and I\'ll perform the exchange.", + ["O"] = "Acquire 15 Silithus Venom Samples and 20 gold and bring them along with a set of Shadowcraft Bracers to Mokvar in Orgrimmar.", + ["T"] = "An Earnest Proposition", + }, + [8918] = { + ["D"] = "Hail, $c! I can tell by your demeanor that you\'ve seen and done much in this world. Yet I\'m willing to wager you haven\'t seen a piece of armor like this.$B$BPerform a small favor for me and I\'ll be willing to trade it to you for an ordinary set of bracers.$B$BI\'m in need of a sizeable sample of venom drawn from the spiders and scorpions that inhabit Silithus. Bring this to me along with a few gold coins and I\'ll perform the exchange.", + ["O"] = "Acquire 15 Silithus Venom Samples and 20 gold and bring them along with a set of Bindings of the Elements to Mokvar in Orgrimmar.", + ["T"] = "An Earnest Proposition", + }, + [8919] = { + ["D"] = "Hail, $c! I can tell by your demeanor that you\'ve seen and done much in this world. Yet I\'m willing to wager you haven\'t seen a piece of armor like this.$B$BPerform a small favor for me and I\'ll be willing to trade it to you for an ordinary set of bracers.$B$BI\'m in need of a sizeable sample of venom drawn from the spiders and scorpions that inhabit Silithus. Bring this to me along with a few gold coins and I\'ll perform the exchange.", + ["O"] = "Acquire 15 Silithus Venom Samples and 20 gold and bring them along with a set of Dreadmist Bracers to Mokvar in Orgrimmar.", + ["T"] = "An Earnest Proposition", + }, + [8920] = { + ["D"] = "Hail, $c! I can tell by your demeanor that you\'ve seen and done much in this world. Yet I\'m willing to wager you haven\'t seen a piece of armor like this.$B$BPerform a small favor for me and I\'ll be willing to trade it to you for an ordinary set of bracers.$B$BI\'m in need of a sizeable sample of venom drawn from the spiders and scorpions that inhabit Silithus. Bring this to me along with a few gold coins and I\'ll perform the exchange.", + ["O"] = "Acquire 15 Silithus Venom Samples and 20 gold and bring them along with a set of Bracers of Valor to Mokvar in Orgrimmar.", + ["T"] = "An Earnest Proposition", + }, + [8921] = { + ["D"] = "Ah, you\'re in need of my latest project... the extra-dimensional ghost revealer! Unfortunately I\'ve run out of funds and manpower.$B$BYou\'re willing to help? Excellent! Our first task is to build a device to harvest the very fabric of death! Building an ectoplasmic distiller won\'t be an easy task, $N.$B$BI\'ll need you to bring me an arcanite converter, some greater eternal essences and stonescale oil. I\'ll also need some volcanic ash from the lava pools in the Burning Steppes to build a filter.", + ["O"] = "Return to Mux Manascrambler in Gadgetzan with 1 Delicate Arcanite Converter, 4 Greater Eternal Essence, 10 Stonescale Oil, 25 Volcanic Ash and 40 gold.", + ["T"] = "The Ectoplasmic Distiller", + }, + [8922] = { + ["D"] = "I must find a way to speak with Anthion Harmon... or more specifically, his ghost!$B$BI know of an engineer with a queer interest in the supernatural. He claims he can build a machine that allows him to speak with the dead!$B$BThe blood you collected was intended for him; travel to Gadgetzan and bring it to him as payment for his services! ", + ["O"] = "Bring the Sealed Blood Container to Mux Manascrambler inside Gadgetzan in Tanaris.", + ["T"] = "A Supernatural Device", + }, + [8923] = { + ["D"] = "You must be quite brave to have stuck around after that. That or I\'ve piqued your interest with the piece of armor I gave you. There is more from where that came from, if you\'re still interested in aiding me.$B$BThe venom samples you collected are for an acquaintance of mine, Mux Manascrambler, an engineer with an interest in the supernatural. His latest project consists of a device that allows you to communicate with the dead! My last hope is to contact Anthion and find out more about my situation.", + ["O"] = "Take the Sealed Venom Container to Mux Manascrambler in Gadgetzan.", + ["T"] = "A Supernatural Device", + }, + [8924] = { + ["D"] = "A fine piece of engineering, if I do say so myself! You will need to travel a bit, I\'m afraid, in order to find the incorporeal undead we require.$B$BYou see, different climates lend different consistencies to the spectral fabric of the dead. The tortured night elves of Silithus, the spirits of the highborne from Winterspring and the ghosts and banshees of the Eastern Plaguelands should give us the different types of ectoplasm we need. Be sure to place the distiller nearby before you harvest them!", + ["O"] = "Use the Ectoplasmic Distiller near incorporeal undead to collect 12 Scorched Ectoplasms in Silithus, 12 Frozen Ectoplasms in Winterspring and 12 Stable Ectoplasms in the Eastern Plaguelands. Bring them along with the Ectoplasmic Distiller back to Mux Manascrambler in Gadgetzan.", + ["T"] = "Hunting for Ectoplasm", + }, + [8925] = { + ["D"] = "Next we shall need to find a stable and portable source of energy to keep the ectoplasm active. I\'ve heard rumors of a mighty elemental called Magma Lord Bokk, whose heart is a powerful magma core - an endless supply of heat!$B$BIt\'s said he can be found in the Burning Steppes, south of Blackrock Mountain. Bring the magma core to me and we shall have enough juice to power the extra-dimensional ghost revealer!", + ["O"] = "Find Magma Lord Bokk in the Burning Steppes, obtain his Magma Core and bring it to Mux Manascrambler in Gadgetzan.", + ["T"] = "A Portable Power Source", + }, + [8926] = { + ["D"] = "You kept your word and brought the device built by Mux. I believe a reward is in order if I\'m to keep you interested in saving my skin. Bring me the belt and set of gloves that you wish to upgrade. I promise the ones I give you in return will be far superior.", + ["O"] = "Bring a Wildheart Belt and a set of Wildheart Gloves Deliana in Ironforge.", + ["T"] = "Just Compensation", + }, + [8927] = { + ["D"] = "You\'ve proven to be a very reliable individual, $N. As much as I trust that you\'ll help me through this predicament, it would be wise of me to reward you according to your performance.$B$BFor now I will exchange your belt and gloves. If we both see this through I shall make the rest of the pieces available to you.", + ["O"] = "Bring a Wildheart Belt and a set of Wildheart Gloves to Mokvar in Orgrimmar.", + ["T"] = "Just Compensation", + }, + [8928] = { + ["D"] = "The core will provide us with enough juice to power our device; now we just have to build a rod that can channel that energy without melting.$B$BI met an imp in Winterspring that sold all manner of exotic goods. He had an elemental rod that would do perfectly. I\'m kicking myself in the head right now for not having bought it.$B$BHe lives inside a cave in the entrance to Darkwhisper Gorge. Sneak in there and try to find him.$B$BMake sure he only charges you forty gold; that\'s the price he quoted me!", + ["O"] = "Search for an imp inside a cave at the entrance of Darkwhisper Gorge in southern Winterspring, purchase a Fel Elemental Rod and return to Mux Manascrambler in Gadgetzan.", + ["T"] = "A Shifty Merchant", + }, + [8929] = { + ["D"] = "Well, nothing left for us to do but try out the goblin\'s invention. Word has it that Anthion was mowed down by the undead legions of Stratholme as he tried to enter its gates.$B$BTry using the device there and find out whatever Anthion knew.", + ["O"] = "Use the Extra-Dimensional Ghost Revealer at the entrance to Stratholme and speak with the ghost of Anthion Harmon.", + ["T"] = "In Search of Anthion", + }, + [8930] = { + ["D"] = "Very well, $N. All that remains is to put the goblin\'s invention to the test. Word has it that Anthion was slain by the undead legions of Stratholme as he tried to enter its gates.$B$BTry using the device there and see if, indeed, you can speak with the dead!", + ["O"] = "Use the Extra-Dimensional Ghost Revealer at the entrance to Stratholme and speak with the ghost of Anthion Harmon.", + ["T"] = "In Search of Anthion", + }, + [8931] = { + ["D"] = "You kept your word and brought the device built by Mux. I believe a reward is in order if I\'m to keep you interested in saving my skin. Bring me an ordinary belt and a set of gloves that you wish to upgrade.", + ["O"] = "Bring a Beaststalker\'s Belt and a set of Beaststalker\'s Gloves to Deliana in Ironforge.", + ["T"] = "Just Compensation", + }, + [8932] = { + ["D"] = "You kept your word and brought the device built by Mux. I believe a reward is in order if I\'m to keep you interested in saving my skin. Bring me an ordinary belt and a set of gloves that you wish to upgrade.", + ["O"] = "Bring a Magister\'s Belt and a set of Magister\'s Gloves to Deliana in Ironforge.", + ["T"] = "Just Compensation", + }, + [8933] = { + ["D"] = "You kept your word and brought the device built by Mux. I believe a reward is in order if I\'m to keep you interested in saving my skin. Bring me the belt and set of gauntlets that you wish to upgrade. I promise the ones I give you in return will be far superior.", + ["O"] = "Bring a Lightforge Belt and a set of Lightforge Gauntlets to Deliana in Ironforge.", + ["T"] = "Just Compensation", + }, + [8934] = { + ["D"] = "You kept your word and brought the device built by Mux. I believe a reward is in order if I\'m to keep you interested in saving my skin. Bring me the belt and set of gloves that you wish to upgrade. I promise the ones I give you in return will be far superior.", + ["O"] = "Bring a Devout Belt and a set of Devout Gloves to Deliana in Ironforge.", + ["T"] = "Just Compensation", + }, + [8935] = { + ["D"] = "You kept your word and brought the device built by Mux. I believe a reward is in order if I\'m to keep you interested in saving my skin. Bring me the belt and set of gloves that you wish to upgrade. I promise the ones I give you in return will be far superior.", + ["O"] = "Bring a Shadowcraft Belt and a set of Shadowcraft Gloves to Deliana in Ironforge.", + ["T"] = "Just Compensation", + }, + [8936] = { + ["D"] = "You kept your word and brought the device built by Mux. I believe a reward is in order if I\'m to keep you interested in saving my skin. Bring me the belt and set of gloves that you wish to upgrade. I promise the ones I give you in return will be far superior.", + ["O"] = "Bring a Dreadmist Belt and a set of Dreadmist Wraps to Deliana in Ironforge.", + ["T"] = "Just Compensation", + }, + [8937] = { + ["D"] = "You kept your word and brought the device built by Mux. I believe a reward is in order if I\'m to keep you interested in saving my skin. Bring me the belt and set of gauntlets that you wish to upgrade. I promise the ones I give you in return will be far superior.", + ["O"] = "Bring a Belt of Valor and a set of Gauntlets of Valor to Deliana in Ironforge.", + ["T"] = "Just Compensation", + }, + [8938] = { + ["D"] = "You\'ve proven to be a very reliable individual, $N. As much as I trust that you\'ll help me through this predicament, it would be wise of me to reward you according to your performance.$B$BFor now I will exchange your belt and gloves. If we both see this through I shall make the rest of the pieces available to you.", + ["O"] = "Bring a Beaststalker\'s Belt and a set of Beaststalker\'s Gloves to Mokvar in Orgrimmar.", + ["T"] = "Just Compensation", + }, + [8939] = { + ["D"] = "You\'ve proven to be a very reliable individual, $N. As much as I trust that you\'ll help me through this predicament, it would be wise of me to reward you according to your performance.$B$BFor now I will exchange your belt and gloves. If we both see this through I shall make the rest of the pieces available to you.", + ["O"] = "Bring a Magister\'s Belt and a set of Magister\'s Gloves to Mokvar in Orgrimmar.", + ["T"] = "Just Compensation", + }, + [8940] = { + ["D"] = "You\'ve proven to be a very reliable individual, $N. As much as I trust that you\'ll help me through this predicament, it would be wise of me to reward you according to your performance.$B$BFor now I will exchange your belt and gloves. If we both see this through I shall make the rest of the pieces available to you.", + ["O"] = "Bring a Devout Belt and a set of Devout Gloves to Mokvar in Orgrimmar.", + ["T"] = "Just Compensation", + }, + [8941] = { + ["D"] = "You\'ve proven to be a very reliable individual, $N. As much as I trust that you\'ll help me through this predicament, it would be wise of me to reward you according to your performance.$B$BFor now I will exchange your belt and gloves. If we both see this through I shall make the rest of the pieces available to you.", + ["O"] = "Bring a Shadowcraft Belt and a set of Shadowcraft Gloves to Mokvar in Orgrimmar.", + ["T"] = "Just Compensation", + }, + [8942] = { + ["D"] = "You\'ve proven to be a very reliable individual, $N. As much as I trust that you\'ll help me through this predicament, it would be wise of me to reward you according to your performance.$B$BFor now I will exchange your belt and gauntlets. If we both see this through I shall make the rest of the pieces available to you.", + ["O"] = "Bring a Cord of the Elements and a set of Gauntlets of the Elements to Mokvar in Orgrimmar.", + ["T"] = "Just Compensation", + }, + [8943] = { + ["D"] = "You\'ve proven to be a very reliable individual, $N. As much as I trust that you\'ll help me through this predicament, it would be wise of me to reward you according to your performance.$B$BFor now I will exchange your belt and gloves. If we both see this through I shall make the rest of the pieces available to you.", + ["O"] = "Bring a Dreadmist Belt and a set of Dreadmist Wraps to Mokvar in Orgrimmar.", + ["T"] = "Just Compensation", + }, + [8944] = { + ["D"] = "You\'ve proven to be a very reliable individual, $N. As much as I trust that you\'ll help me through this predicament, it would be wise of me to reward you according to your performance.$B$BFor now I will exchange your belt and gauntlets. If we both see this through I shall make the rest of the pieces available to you.", + ["O"] = "Bring a Belt of Valor and a set of Gauntlets of Valor to Mokvar in Orgrimmar.", + ["T"] = "Just Compensation", + }, + [8945] = { + ["D"] = "I\'ll provide you the information you ask for, $N. But more pressing matters are at hand.$B$BMy beloved wife has been taken prisoner by Rivendare\'s undead scum.$B$BI strongly objected to her joining the Argent Dawn\'s foolish crusade, yet that\'s not of importance anymore. You must finish what I attempted to do, you must rescue Ysida from the clutches of the Baron!", + ["O"] = "Go into Stratholme and rescue Ysida Harmon from Baron Rivendare.", + ["T"] = "Dead Man\'s Plea", + }, + [8946] = { + ["D"] = "It is the cruelest of fates that my beloved has perished while trying to rescue me. Yet, you claim to possess the ability to converse with him.$B$BBring him this locket as proof that I am well. He must not linger in this world; my heart would not be able to bear it.$B$BFarewell, $N. I shall be in your debt always.", + ["O"] = "Bring Ysida\'s Locket to Anthion Harmon in Eastern Plaguelands.", + ["T"] = "Proof of Life", + }, + [8947] = { + ["D"] = "We didn\'t realize the importance of Valthalak\'s medallion, so it was divided along with the rest of the spoils. The first piece was taken by a dwarf named Theldren. I tried to retrieve it from him and he beat me within an inch of my life. You shall have to take the fragment by force.$B$BLast I heard of him, he\'d become a gladiator for the Dark Iron dwarves. Getting him to fight you is going to present a bit of a challenge, though.$B$BGather the following materials for me. You\'re going to need them.", + ["O"] = "Bring 3 Dark Iron Bars, 20 Enchanted Leather, 3 Mooncloth and 4 Cured Rugged Hides to Anthion Harmon in the Eastern Plaguelands.", + ["T"] = "Anthion\'s Strange Request", + }, + [8948] = { + ["D"] = "Theldren is not one to willingly participate in a fair fight. I\'ve shaped this banner to display his family colors.$B$BWith some additional sorcery, this banner shall provoke him in a way he won\'t be able to resist.$B$BAn old acquaintance of mine named Falrin knows the exact procedure required. He has a particular way of... aggravating people. You shall find him at the library in Dire Maul.", + ["O"] = "Take the incomplete Banner of Provocation to Falrin Treeshaper at the library in Dire Maul.", + ["T"] = "Anthion\'s Old Friend", + }, + [8949] = { + ["D"] = "Yes, it is true that I am familiar with this enchantment you require, $c. Yet I\'m not one to give out favors freely, even if you were sent here by an old friend.$B$BI hold nothing but hatred and contempt for our brutish ogre neighbors. And not only them, I hate the followers of Omokk just as much as I hate those that follow King Gordok.$B$BI want you to kill them. Kill lots of them! Bring me the beads they carry around their neck as proof of your work. Do this and we shall talk about your request.", + ["O"] = "Collect 25 Ogre Warbeads from Ogres inside Dire Maul or Blackrock Spire and return to Falrin Treeshaper inside the Athenaeum in Dire Maul.", + ["T"] = "Falrin\'s Vendetta", + }, + [8950] = { + ["D"] = "I can place the enchantment you require on the banner quite easily, $N. Unfortunately I don\'t have the materials I need as it is very rarely that someone asks for this sort of charm.$B$BI will require the essence of one of the Eldreth ghosts that haunt these halls, a handful of Scholomance dark runes and some large brilliant shards. Bring me these reagents and I shall perform this task for you.", + ["O"] = "Bring the following to Falrin Treeshaper inside Dire Maul: 1 Jeering Spectre\'s Essence, 4 Dark Runes and 8 Large Brilliant Shards.", + ["T"] = "The Instigator\'s Enchantment", + }, + [8951] = { + ["D"] = "Valthalak\'s soul was stored in this amulet. In our greed we foolishly split it into three parts, not knowing the curse that would await us.$B$BThe only way to stop Valthalak\'s spell is to put the medallion back together. Return to Deliana and tell her that Bodley is her only hope for finding the remaining pieces. Speak to her about any rewards you\'ve arranged for.$B$BI, for once, shall rest in peace. I wish you the best of luck; you shall need every bit of it!", + ["O"] = "Return to Deliana in Ironforge with a set of Wildheart Boots, a Wildheart Kilt and Wildheart Spaulders.", + ["T"] = "Anthion\'s Parting Words", + }, + [8952] = { + ["D"] = "Valthalak\'s soul was stored in this amulet. In our greed we foolishly split it into three parts, not knowing the curse that would await us.$B$BThe only way to stop Valthalak\'s spell is to put the medallion back together. Return to Deliana and tell her that Bodley is her only hope for finding the remaining pieces. Speak to her about any rewards you\'ve arranged for.$B$BI, for once, shall rest in peace. I wish you the best of luck; you shall need every bit of it!", + ["O"] = "Return to Deliana in Ironforge with a set of Beaststalker\'s Boots, Beaststalker\'s Pants and Beaststalker\'s Mantle.", + ["T"] = "Anthion\'s Parting Words", + }, + [8953] = { + ["D"] = "Valthalak\'s soul was stored in this amulet. In our greed we foolishly split it into three parts, not knowing the curse that would await us.$B$BThe only way to stop Valthalak\'s spell is to put the medallion back together. Return to Deliana and tell her that Bodley is her only hope for finding the remaining pieces. Speak to her about any rewards you\'ve arranged for.$B$BI, for once, shall rest in peace. I wish you the best of luck; you shall need every bit of it!", + ["O"] = "Return to Deliana in Ironforge with a set of Magister\'s Boots, Magister\'s Leggings and Magister\'s Mantle.", + ["T"] = "Anthion\'s Parting Words", + }, + [8954] = { + ["D"] = "Valthalak\'s soul was stored in this amulet. In our greed we foolishly split it into three parts, not knowing the curse that would await us.$B$BThe only way to stop Valthalak\'s spell is to put the medallion back together. Return to Deliana and tell her that Bodley is her only hope for finding the remaining pieces. Speak to her about any rewards you\'ve arranged for.$B$BI, for once, shall rest in peace. I wish you the best of luck; you shall need every bit of it!", + ["O"] = "Return to Deliana in Ironforge with a set of Lightforge Boots, Lightforge Legplates and Lightforge Spaulders.", + ["T"] = "Anthion\'s Parting Words", + }, + [8955] = { + ["D"] = "Valthalak\'s soul was stored in this amulet. In our greed we foolishly split it into three parts, not knowing the curse that would await us.$B$BThe only way to stop Valthalak\'s spell is to put the medallion back together. Return to Deliana and tell her that Bodley is her only hope for finding the remaining pieces. Speak to her about any rewards you\'ve arranged for.$B$BI, for once, shall rest in peace. I wish you the best of luck; you shall need every bit of it!", + ["O"] = "Return to Deliana in Ironforge with a set of Devout Sandals, Devout Skirt and Devout Mantle.", + ["T"] = "Anthion\'s Parting Words", + }, + [8956] = { + ["D"] = "Valthalak\'s soul was stored in this amulet. In our greed we foolishly split it into three parts, not knowing the curse that would await us.$B$BThe only way to stop Valthalak\'s spell is to put the medallion back together. Return to Deliana and tell her that Bodley is her only hope for finding the remaining pieces. Speak to her about any rewards you\'ve arranged for.$B$BI, for once, shall rest in peace. I wish you the best of luck; you shall need every bit of it!", + ["O"] = "Return to Deliana in Ironforge with a set of Shadowcraft Boots, Shadowcraft Pants and Shadowcraft Spaulders.", + ["T"] = "Anthion\'s Parting Words", + }, + [8957] = { + ["D"] = "Valthalak\'s soul was stored in this amulet. In our greed we foolishly split it into three parts, not knowing the curse that would await us.$B$BThe only way to stop Valthalak\'s spell is to put the amulet back together. Return to Mokvar and tell him that Bodley is his only hope for finding the remaining pieces. Speak to him about any rewards you\'ve arranged for.$B$BI, for once, shall rest in peace. I wish you the best of luck; you shall need every bit of it!", + ["O"] = "Return to Mokvar in Orgimmar with a set of Boots of Elements, Kilt of Elements and Pauldrons of Elements.", + ["T"] = "Anthion\'s Parting Words", + }, + [8958] = { + ["D"] = "Valthalak\'s soul was stored in this amulet. In our greed we foolishly split it into three parts, not knowing the curse that would await us.$B$BThe only way to stop Valthalak\'s spell is to put the medallion back together. Return to Deliana and tell her that Bodley is her only hope for finding the remaining pieces. Speak to her about any rewards you\'ve arranged for.$B$BI, for once, shall rest in peace. I wish you the best of luck; you shall need every bit of it!", + ["O"] = "Return to Deliana in Ironforge with a set of Dreadmist Sandals, Dreadmist Leggings and Dreadmist Mantle.", + ["T"] = "Anthion\'s Parting Words", + }, + [8959] = { + ["D"] = "Valthalak\'s soul was stored in this amulet. In our greed we foolishly split it into three parts, not knowing the curse that would await us.$B$BThe only way to stop Valthalak\'s spell is to put the medallion back together. Return to Deliana and tell her that Bodley is her only hope for finding the remaining pieces. Speak to her about any rewards you\'ve arranged for.$B$BI, for once, shall rest in peace. I wish you the best of luck; you shall need every bit of it!", + ["O"] = "Return to Deliana in Ironforge with a set of Boots of Valor, Legplates of Valor and Spaulders of Valor.", + ["T"] = "Anthion\'s Parting Words", + }, + [8960] = { + ["D"] = "So we need to recover the rest of the medallion? Finding Bodley\'s going to be a bit of a headache. He went back to Blackrock Mountain to attempt to re-enter Blackrock Spire and never came back.$B$BI\'d suggest taking the goblin\'s ghost revealing device with you, as I fear the worst might have happened.", + ["O"] = "Travel to Blackrock Mountain and use the Extra-Dimensional Ghost Revealer to find Bodley near Blackrock Spire.", + ["T"] = "Bodley\'s Unfortunate Fate", + }, + [8961] = { + ["D"] = "In order to summon Lord Valthalak we\'re first going to need to gather the other two-thirds of the amulet. To do that we need to get a brazier and some special coals to burn in it.$B$BThere are three nobles of fire, Lord Incedius in Blackrock Depths, Pyroguard Emberseer in Blackrock Spire and The Duke of Cynders in Silithus, with what we need. Collect from each a piece of their remains, and then return to me with a Hallowed Brazier, which can be purchased from the Argent Dawn if you are honored by them.", + ["O"] = "Gather the Incendicite of Incendius, the Ember of Emberseer and the Cinder of Cynders, along with a Hallowed Brazier, and return them to Bodley inside Blackrock Mountain.", + ["T"] = "Three Kings of Flame", + }, + [8962] = { + ["D"] = "$C, listen closely. Now that we have the brazier, and the means to light it, we still need another component to suffuse it with; something that will provide a focus strong enough to entice the spirit of my deceased, former comrade.$B$BMor Grayhoof, our most prominent druid, had many close friends amongst the Cenarion Circle, some of which have fallen to the silithid. I need you to retrieve some Druidical Remains from the silithid that inhabit the environs of Hive\'Regal in southeastern Silithus.", + ["O"] = "Acquire Druidical Remains and return them to Bodley inside Blackrock Mountain.", + ["T"] = "Components of Importance", + }, + [8963] = { + ["D"] = "$C, listen closely. Now that we have the brazier, and the means to light it, we still need another component to suffuse it with; something that will provide a focus strong enough to entice the spirit of my deceased, former comrade.$B$BIsalien, our priestess, grew up in Winterspring at Starbreeze Village. I need you to gather a Starbreeze Village Relic from the Frostmaul giants of Frostwhisper Gorge in southern Winterspring, who are known for raiding to the north from time to time.", + ["O"] = "Acquire a Starbreeze Village Relic and return it to Bodley inside Blackrock Mountain.", + ["T"] = "Components of Importance", + }, + [8964] = { + ["D"] = "$C, listen closely. Now that we have the brazier, and the means to light it, we still need another component to suffuse it with; something that will provide a focus strong enough to summon the remains of my deceased, former comrades.$B$BThe siblings, Jarien and Sothos, were believers in the way of the Scarlet Crusade. They aspired to knighthood within that vile organization. Go to Tyr\'s Hand in Eastern Plaguelands and retrieve a Brilliant Sword of Zealotry from the praetorians there.", + ["O"] = "Retrieve a Brilliant Sword of Zealotry and return it to Bodley inside Blackrock Mountain.", + ["T"] = "Components of Importance", + }, + [8965] = { + ["D"] = "$C, listen closely. Now that we have the brazier, and the means to light it, we still need another component to suffuse it with; something that will provide a focus strong enough to entice the spirit of my deceased, former comrade.$B$BAn ogre necromancer that traveled with us, Kormok, delighted in summoning forth the souls of the banished dead of Purgation Isle, off the south coast of the Hillsbrad Foothills. Go there and retrieve some Soul Ashes of the Banished from their remains.", + ["O"] = "Obtain Soul Ashes of the Banished and return them to Bodley inside Blackrock Mountain.", + ["T"] = "Components of Importance", + }, + [8966] = { + ["D"] = "My friend, Mor Grayhoof, was the first to fall victim to possession of a piece of Lord Valthalak\'s amulet, and the corrupting spirit fragment that it contains. After stealing Valthalak\'s spellbook and amulet, we fled for our lives from the upper portion of Blackrock Spire. Along the way, Mor fell into the lower portion of the spire.$B$BLater, we discovered that he survived the fall, only to be captured and tortured by War Master Voone. A few spectral assassins snuck in and slew him right in front of Voone.", + ["O"] = "Use the Brazier of Beckoning to summon forth the spirit of Mor Grayhoof and slay him. Return to Bodley inside Blackrock Mountain with the Left Piece of Lord Valthalak\'s Amulet and the Brazier of Beckoning.", + ["T"] = "The Left Piece of Lord Valthalak\'s Amulet", + }, + [8967] = { + ["D"] = "It became known to us in later days, as we were doing what we could ourselves to survive, that Isalien, a night elf priestess of our company, had gone to the night elvic ancestral city, now known as Dire Maul. From what we gathered, she went there both for personal reasons and also to unlock the secrets of the piece of the amulet that she had in her possession.$B$BShe didn\'t quite make it, though. Word got back to us that she was ambushed at the Shrine of Eldretharr by Alzzin the Wildshaper and his forces.", + ["O"] = "Use the Brazier of Beckoning to summon forth the spirit of Isalien and slay her. Return to Bodley inside Blackrock Mountain with the Left Piece of Lord Valthalak\'s Amulet and the Brazier of Beckoning.", + ["T"] = "The Left Piece of Lord Valthalak\'s Amulet", + }, + [8968] = { + ["D"] = "The siblings, Jarien and Sothos, decided to join the Scarlet Crusade upon the disbanding of our mercenary company. They took the Left Piece of Lord Valthalak\'s Amulet with them. Good riddance, I say, but we need that piece back.$B$BFrom what we could gather, they were actually slain by Grand Crusader Dathrohan himself for failing the initiation rites inside his chamber in the Scarlet Bastion.$B$BIn any case, we... meaning you, are still going to need to retrieve that piece of the amulet.", + ["O"] = "Use the Brazier of Beckoning to summon forth Jarien and Sothos and slay them. Return to Bodley inside Blackrock Mountain with the Left Piece of Lord Valthalak\'s Amulet and the Brazier of Beckoning.", + ["T"] = "The Left Piece of Lord Valthalak\'s Amulet", + }, + [8969] = { + ["D"] = "Now we have what we need, so it\'s time to discuss who it is that you\'ll be summoning.$B$BKormok was ok for an ogre, right up until he turned to necromancy. After that, things got creepy for just about everyone in the outfit. It was no surprise then when he took his piece of the amulet and returned to his new home, Scholomance.$B$BBut even there, or perhaps especially there, he was not safe from the spectral assassins. They slew him right in front of his master, Ras Frostwhisper.", + ["O"] = "Use the Brazier of Beckoning to summon forth the spirit of Kormok and slay him. Return to Bodley inside Blackrock Mountain with the Left Piece of Lord Valthalak\'s Amulet and the Brazier of Beckoning.", + ["T"] = "The Left Piece of Lord Valthalak\'s Amulet", + }, + [8970] = { + ["D"] = "As I was saying, $c, in my living years I flirted with becoming a diviner. But, there really wasn\'t as much profit in it as you might imagine, mostly because it\'s dangerous and the reagents are rare and expensive. However, I do know enough to be able to pinpoint the final piece of the amulet, and the spirit of my former comrade along with it.$B$BThis is where you come in, $N. I need you to go to Alcaz Island off the coast of Dustwallow Marsh and collect Bloodkelp from the Strashaz naga that live there.", + ["O"] = "Gather 20 Bloodkelp from the Strashaz naga and then return to Bodley inside Blackrock Mountain.", + ["T"] = "I See Alcaz Island In Your Future...", + }, + [8971] = { + ["D"] = "", + ["O"] = "", + ["T"] = "REUSE", + }, + [8972] = { + ["D"] = "", + ["O"] = "", + ["T"] = "REUSE", + }, + [8973] = { + ["D"] = "", + ["O"] = "", + ["T"] = "REUSE", + }, + [8974] = { + ["D"] = "", + ["O"] = "", + ["T"] = "REUSE", + }, + [8975] = { + ["D"] = "", + ["O"] = "", + ["T"] = "REUSE", + }, + [8976] = { + ["D"] = "", + ["O"] = "", + ["T"] = "REUSE", + }, + [8977] = { + ["D"] = "It\'s been great working with you, $N. Here is the finished product.$B$BI hope it helps you in your current endeavors. And hey, if you don\'t mind, help spread the word. I wouldn\'t mind having more customers!", + ["O"] = "Bring the Extra-Dimensional Ghost Revealer to Deliana in Ironforge.", + ["T"] = "Return to Deliana", + }, + [8978] = { + ["D"] = "It\'s been great working with you, $N. Here is the finished product.$B$BI hope it helps you in your current endeavors. And hey, if you don\'t mind, help spread the word. I wouldn\'t mind having more customers!", + ["O"] = "Return to Mokvar in Orgrimmar with the Extra-Dimensional Ghost Revealer.", + ["T"] = "Return to Mokvar", + }, + [8979] = { + ["D"] = "I believe I know the cause of this recent behavior. Have you smelled the new fragrance on the wind, over the stink of the canals? The new colognes and perfumes that have come into fashion?$b$bOur thinking has been clouded by some foul alchemy.$b$bThere is only one way to be sure - bring a bottle of cologne and perfume to my friend, Apothecary Zinge. The Royal Apothecary Society will find the truth.$b$b I will reimburse you for their purchase when you return.", + ["O"] = "Bring 1 Cologne Bottle and 1 Perfume Bottle to Apothecary Zinge in the Undercity\'s Apothecarium.", + ["T"] = "Fenstad\'s Hunch", + }, + [8980] = { + ["D"] = "This is unexpected. It looks like Fenstad might be on to something after all. I found traces of substances used in mind control potions.$b$bIt isn\'t unheard of for perfumes to have some of this, but a few of the ingredients I detected... This is serious alchemy, along the abilities of a member of the Royal Apothecary Society.", + ["O"] = "Return to Fenstad Argyle outside the bank in the Undercity.", + ["T"] = "Zinge\'s Assessment", + }, + [8981] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Gift Giving", + }, + [8982] = { + ["D"] = "We must find who the supplier is. I noticed Apothecary Katrina with a bottle of the perfume tucked in her pack. She told me that she purchased it from Norman, the innkeeper.", + ["O"] = "Speak with Innkeeper Norman in the Undercity.", + ["T"] = "Tracing the Source", + }, + [8983] = { + ["D"] = "Something\'s wrong with my product? Well, I\'ve never seen so many people wanting something so badly.$b$bI bought my supply from a merchant named Mara Rennick. She\'s new in town.$b$bShe mentioned she had some goods she had to deliver to the tailor in the Mage Quarter.", + ["O"] = "Speak with Mara Rennick at the tailor\'s shop in the Undercity\'s Mage Quarter.", + ["T"] = "Tracing the Source", + }, + [8984] = { + ["D"] = "Look, the actions of a rogue apothecary are not my concern. If he\'s undermining our efforts, then let me be the first to point you in the right direction$b$bIf he\'s innocent, then he\'s got nothing to hide, right?$b$bI purchased the goods from Apothecary Staffron Lerent. He\'s working in a secluded area past Ravenholdt Manor in the hills over Hillsbrad. To be honest with you, I thought he was a little odd.", + ["O"] = "Find Apothecary Staffron Lerent in the Hillsbrad Foothills past Ravenholdt Manor.", + ["T"] = "The Source Revealed", + }, + [8985] = { + ["D"] = "$C, listen closely. Now that we have the location of the last amulet piece, we still need another component to suffuse the brazier with; something that will provide a focus strong enough to entice the spirit of my deceased, former comrade.$B$BIsalien, our priestess, grew up in Winterspring at Starbreeze Village. I need you to gather a Starbreeze Village Relic from the Frostmaul giants of Frostwhisper Gorge in southern Winterspring, who are known for raiding to the north from time to time.", + ["O"] = "Acquire a Starbreeze Village Relic and return it to Bodley inside Blackrock Mountain.", + ["T"] = "More Components of Importance", + }, + [8986] = { + ["D"] = "$C, listen closely. Now that we have the location of the last amulet piece, we still need another component to suffuse the brazier with; something that will provide a focus strong enough to entice the spirit of my deceased, former comrade.$B$BMor Grayhoof, our most prominent druid, had many close friends amongst the Cenarion Circle, some of which have fallen to the silithid. I need you to retrieve some Druidical Remains from the silithid that inhabit the environs of Hive\'Regal in southeastern Silithus.", + ["O"] = "Acquire Druidical Remains and return them to Bodley inside Blackrock Mountain.", + ["T"] = "More Components of Importance", + }, + [8987] = { + ["D"] = "$C, listen closely. Now that we have the location of the last amulet piece, we still need another component to suffuse the brazier with; something that will provide a focus strong enough to summon the remains of my deceased, former comrades.$B$BThe siblings, Jarien and Sothos, were believers in the way of the Scarlet Crusade. They aspired to knighthood within that vile organization. Go to Tyr\'s Hand in Eastern Plaguelands and retrieve a Brilliant Sword of Zealotry from the praetorians there.", + ["O"] = "Retrieve a Brilliant Sword of Zealotry and return it to Bodley inside Blackrock Mountain.", + ["T"] = "More Components of Importance", + }, + [8988] = { + ["D"] = "$C, listen closely. Now that we have the location of the last amulet piece, we still need another component to suffuse the brazier with; something that will provide a focus strong enough to entice the spirit of my deceased, former comrade.$B$BAn ogre necromancer that traveled with us, Kormok, delighted in summoning forth the souls of the banished dead of Purgation Isle, off the south coast of the Hillsbrad Foothills. Go there and retrieve some Soul Ashes of the Banished from their remains.", + ["O"] = "Obtain Soul Ashes of the Banished and return them to Bodley inside Blackrock Mountain.", + ["T"] = "More Components of Importance", + }, + [8989] = { + ["D"] = "My friend, Mor Grayhoof, was the first to fall victim to possession of a piece of Lord Valthalak\'s amulet, and the corrupting spirit fragment that it contains. After stealing Valthalak\'s spellbook and amulet, we fled for our lives from the upper portion of Blackrock Spire. Along the way, Mor fell into the lower portion of the spire.$B$BLater, we discovered that he survived the fall, only to be captured and tortured by War Master Voone. A few spectral assassins snuck in and slew him right in front of Voone.", + ["O"] = "Use the Brazier of Beckoning to summon forth the spirit of Mor Grayhoof and slay him. Return to Bodley inside Blackrock Mountain with the recombined Lord Valthalak\'s Amulet and the Brazier of Beckoning.", + ["T"] = "The Right Piece of Lord Valthalak\'s Amulet", + }, + [8990] = { + ["D"] = "It became known to us in later days, as we were doing what we could ourselves to survive, that Isalien, a night elf priestess of our company, had gone to the night elvic ancestral city, now known as Dire Maul. From what we gathered, she went there both for personal reasons and also to unlock the secrets of the piece of the amulet that she had in her possession.$B$BShe didn\'t quite make it, though. Word got back to us that she was ambushed at the Shrine of Eldretharr by Alzzin the Wildshaper and his forces.", + ["O"] = "Use the Brazier of Beckoning to summon forth the spirit of Isalien and slay her. Return to Bodley inside Blackrock Mountain with the recombined Lord Valthalak\'s Amulet and the Brazier of Beckoning.", + ["T"] = "The Right Piece of Lord Valthalak\'s Amulet", + }, + [8991] = { + ["D"] = "The siblings, Jarien and Sothos, decided to join the Scarlet Crusade upon the disbanding of our mercenary company. They took the Right Piece of Lord Valthalak\'s Amulet with them. Good riddance, I say, but we need that piece back.$B$BFrom what we could gather, they were actually slain by Grand Crusader Dathrohan himself for failing the initiation rites inside his chamber in the Scarlet Bastion.$B$BIn any case, we... meaning you, are still going to need to retrieve that piece of the amulet.", + ["O"] = "Use the Brazier of Beckoning to summon forth Jarien and Sothos and slay them. Return to Bodley inside Blackrock Mountain with the recombined Lord Valthalak\'s Amulet and the Brazier of Beckoning.", + ["T"] = "The Right Piece of Lord Valthalak\'s Amulet", + }, + [8992] = { + ["D"] = "Now we have what we need, so it\'s time to discuss who it is that you\'ll be summoning next.$B$BKormok was ok for an ogre, right up until he turned to necromancy. After that, things got creepy for just about everyone in the outfit. It was no surprise then when he took his piece of the amulet and returned to his new home, Scholomance.$B$BBut even there, or perhaps especially there, he was not safe from the spectral assassins. They slew him right in front of his master, Ras Frostwhisper.", + ["O"] = "Use the Brazier of Beckoning to summon forth the spirit of Kormok and slay him. Return to Bodley inside Blackrock Mountain with the recombined Lord Valthalak\'s Amulet and the Brazier of Beckoning.", + ["T"] = "The Right Piece of Lord Valthalak\'s Amulet", + }, + [8993] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Gift Giving", + }, + [8994] = { + ["D"] = "We\'re nearly there, $c. All that is left is to retrieve a few more components so that I can attune the brazier and enable it to beckon forth Lord Valthalak.$B$BTo begin I must ask you to journey forth into Blackrock Spire and slay the orcs therein. They wear bracers that contain trace metals that I will need, so I\'ll need more than a few to extract the right amount out of them. Then, to complete the imbuing process, you\'ll need to bring me a Flask of Supreme Power.$B$BGood luck, $N!", + ["O"] = "Gather 40 Blackrock Bracers and acquire a Flask of Supreme Power. Return them to Bodley inside Blackrock Mountain.", + ["T"] = "Final Preparations", + }, + [8995] = { + ["D"] = "All is now ready, $N.$B$BWhen alive, Lord Valthalak used to inhabit what is now The Beast\'s chamber. Go there and use the Brazier of Beckoning to summon forth Lord Valthalak. It will reincorporate him, so he\'ll have to be killed again. I\'d take care of The Beast first, and be sure take enough friends along to survive the upper portion of Blackrock Spire.$B$BOnce you\'ve dispatched Valthalak, use the amulet on his corpse. With his spirit reunified, he\'ll likely want his amulet back, as well.$B$BGood luck!", + ["O"] = "Use the Brazier of Beckoning to summon Lord Valthalak. Dispatch him, and use Lord Valthalak\'s Amulet on the corpse. Then, return Lord Valthalak\'s Amulet to the Spirit of Lord Valthalak.", + ["T"] = "Mea Culpa, Lord Valthalak", + }, + [8996] = { + ["D"] = "I will ignore your impertinence this time, $c, because you have done a noble thing today; returning the rest of my stolen spirit to me. Despite your obviously weak nature, $r, you have shown courage where those that stole from me did not, and probably never could!$B$BReturn to them, before I change my mind and slay you where you stand. Go back and tell them that they are safe... for now.", + ["O"] = "Return to Bodley inside Blackrock Mountain and give him the Brazier of Beckoning.", + ["T"] = "Return to Bodley", + }, + [8997] = { + ["D"] = "I suppose that this is goodbye then, my friend. But, I\'ll always be here if you want to come back and talk with me from time to time. Probably while you\'re loitering around waiting for your buddies to join you for a raid on Blackrock Spire.$B$BGo, before I start to cry. Go back to Deliana in Ironforge and tell her what\'s happened.", + ["O"] = "Speak with Deliana at The High Seat in Ironforge.", + ["T"] = "Back to the Beginning", + }, + [8998] = { + ["D"] = "I suppose that this is goodbye then, my friend. But, I\'ll always be here if you want to come back and talk with me from time to time. Probably while you\'re loitering around waiting for your buddies to join you for a raid on Blackrock Spire.$B$BGo, before I start to cry. Go back to Mokvar in Orgrimmar and tell him what\'s happened.", + ["O"] = "Speak with Mokvar at Grommash Hold in Orgrimmar\'s Valley of Wisdom.", + ["T"] = "Back to the Beginning", + }, + [8999] = { + ["D"] = "That\'s an amazing story, $N! You have my thanks, and the heartfelt gratitude of all who were involved. Now maybe I\'ll be able to sleep at night with both eyes shut.$B$BAs to your reward, I believe I have a few things that you\'ll really enjoy.", + ["O"] = "Give Deliana your Wildheart Cowl and Wildheart Vest.", + ["T"] = "Saving the Best for Last", + }, + [9000] = { + ["D"] = "That\'s an amazing story, $N! You have my thanks, and the heartfelt gratitude of all who were involved. Now maybe I\'ll be able to sleep at night with both eyes shut.$B$BAs to your reward, I believe I have a few things that you\'ll really enjoy.", + ["O"] = "Give Deliana your Beaststalker\'s Cap and Beaststalker\'s Tunic.", + ["T"] = "Saving the Best for Last", + }, + [9001] = { + ["D"] = "That\'s an amazing story, $N! You have my thanks, and the heartfelt gratitude of all who were involved. Now maybe I\'ll be able to sleep at night with both eyes shut.$B$BAs to your reward, I believe I have a few things that you\'ll really enjoy.", + ["O"] = "Give Deliana your Magister\'s Crown and Magister\'s Robes.", + ["T"] = "Saving the Best for Last", + }, + [9002] = { + ["D"] = "That\'s an amazing story, $N! You have my thanks, and the heartfelt gratitude of all who were involved. Now maybe I\'ll be able to sleep at night with both eyes shut.$B$BAs to your reward, I believe I have a few things that you\'ll really enjoy.", + ["O"] = "Give Deliana your Lightforge Helm and Lightforge Breastplate.", + ["T"] = "Saving the Best for Last", + }, + [9003] = { + ["D"] = "That\'s an amazing story, $N! You have my thanks, and the heartfelt gratitude of all who were involved. Now maybe I\'ll be able to sleep at night with both eyes shut.$B$BAs to your reward, I believe I have a few things that you\'ll really enjoy.", + ["O"] = "Give Deliana your Devout Crown and Devout Robe.", + ["T"] = "Saving the Best for Last", + }, + [9004] = { + ["D"] = "That\'s an amazing story, $N! You have my thanks, and the heartfelt gratitude of all who were involved. Now maybe I\'ll be able to sleep at night with both eyes shut.$B$BAs to your reward, I believe I have a few things that you\'ll really enjoy.", + ["O"] = "Give Deliana your Shadowcraft Cap and Shadowcraft Tunic.", + ["T"] = "Saving the Best for Last", + }, + [9005] = { + ["D"] = "That\'s an amazing story, $N! You have my thanks, and the heartfelt gratitude of all who were involved. Now maybe I\'ll be able to sleep at night with both eyes shut.$B$BAs to your reward, I believe I have a few things that you\'ll really enjoy.", + ["O"] = "Give Deliana your Dreadmist Mask and Dreadmist Robe.", + ["T"] = "Saving the Best for Last", + }, + [9006] = { + ["D"] = "That\'s an amazing story, $N! You have my thanks, and the heartfelt gratitude of all who were involved. Now maybe I\'ll be able to sleep at night with both eyes shut.$B$BAs to your reward, I believe I have a few things that you\'ll really enjoy.", + ["O"] = "Give Deliana your Helm of Valor and Breastplate of Valor.", + ["T"] = "Saving the Best for Last", + }, + [9007] = { + ["D"] = "A truly amazing story, $N! You have my thanks, and the heartfelt gratitude of all who were involved, I can assure you. Through your efforts we are delivered from the mistakes of our past.$B$BAs to your reward, I believe I have a few things that you have definitely earned and will truly enjoy.", + ["O"] = "Give Mokvar your Wildheart Cowl and Wildheart Vest.", + ["T"] = "Saving the Best for Last", + }, + [9008] = { + ["D"] = "A truly amazing story, $N! You have my thanks, and the heartfelt gratitude of all who were involved, I can assure you. Through your efforts we are delivered from the mistakes of our past.$B$BAs to your reward, I believe I have a few things that you have definitely earned and will truly enjoy.", + ["O"] = "Give Mokvar your Beaststalker\'s Cap and Beaststalker\'s Tunic.", + ["T"] = "Saving the Best for Last", + }, + [9009] = { + ["D"] = "A truly amazing story, $N! You have my thanks, and the heartfelt gratitude of all who were involved, I can assure you. Through your efforts we are delivered from the mistakes of our past.$B$BAs to your reward, I believe I have a few things that you have definitely earned and will truly enjoy.", + ["O"] = "Give Mokvar your Devout Crown and Devout Robe.", + ["T"] = "Saving the Best for Last", + }, + [9010] = { + ["D"] = "A truly amazing story, $N! You have my thanks, and the heartfelt gratitude of all who were involved, I can assure you. Through your efforts we are delivered from the mistakes of our past.$B$BAs to your reward, I believe I have a few things that you have definitely earned and will truly enjoy.", + ["O"] = "Give Mokvar your Shadowcraft Cap and Shadowcraft Tunic.", + ["T"] = "Saving the Best for Last", + }, + [9011] = { + ["D"] = "A truly amazing story, $N! You have my thanks, and the heartfelt gratitude of all who were involved, I can assure you. Through your efforts we are delivered from the mistakes of our past.$B$BAs to your reward, I believe I have a few things that you have definitely earned and will truly enjoy.", + ["O"] = "Give Mokvar your Coif of Elements and Vest of Elements.", + ["T"] = "Saving the Best for Last", + }, + [9012] = { + ["D"] = "A truly amazing story, $N! You have my thanks, and the heartfelt gratitude of all who were involved, I can assure you. Through your efforts we are delivered from the mistakes of our past.$B$BAs to your reward, I believe I have a few things that you have definitely earned and will truly enjoy.", + ["O"] = "Give Mokvar your Dreadmist Mask and Dreadmist Robe.", + ["T"] = "Saving the Best for Last", + }, + [9013] = { + ["D"] = "A truly amazing story, $N! You have my thanks, and the heartfelt gratitude of all who were involved, I can assure you. Through your efforts we are delivered from the mistakes of our past.$B$BAs to your reward, I believe I have a few things that you have definitely earned and will truly enjoy.", + ["O"] = "Give Mokvar your Helm of Valor and Breastplate of Valor.", + ["T"] = "Saving the Best for Last", + }, + [9014] = { + ["D"] = "A truly amazing story, $N! You have my thanks, and the heartfelt gratitude of all who were involved, I can assure you. Through your efforts we are delivered from the mistakes of our past.$B$BAs to your reward, I believe I have a few things that you have definitely earned and will truly enjoy.", + ["O"] = "Give Mokvar your Magister\'s Crown and Magister\'s Robes.", + ["T"] = "Saving the Best for Last", + }, + [9015] = { + ["D"] = "Heed me well, $N. For the banner to work in the desired way, you will need to step into the Ring of the Law in Blackrock Depths. Allow yourself to be sentenced by High Justice Grimstone and place the banner firmly on the ground in a sign of defiance.$B$BYour victim will not be able to restrain himself and shall enter the fray filled with a desire to fight you. Once you obtain that which you seek, go back to Anthion.", + ["O"] = "Travel to the Ring of the Law in Blackrock Depths and place the Banner of Provocation in its center as you are sentenced by High Justice Grimstone. Slay Theldren and his gladiators and return to Anthion Harmon in the Eastern Plaguelands with the first piece of Lord Valthalak\'s amulet.", + ["T"] = "The Challenge", + }, + [9016] = { + ["D"] = "Valthalak\'s soul was stored in this amulet. In our greed we foolishly split it into three parts, not knowing the curse that would await us.$B$BThe only way to stop Valthalak\'s spell is to put the amulet back together. Return to Mokvar and tell him that Bodley is his only hope for finding the remaining pieces. Speak to him about any rewards you\'ve arranged for.$B$BI, for once, shall rest in peace. I wish you the best of luck; you shall need every bit of it!", + ["O"] = "Return to Mokvar in Orgimmar with a set of Wildheart Boots, a Wildheart Kilt and Wildheart Spaulders.", + ["T"] = "Anthion\'s Parting Words", + }, + [9017] = { + ["D"] = "Valthalak\'s soul was stored in this amulet. In our greed we foolishly split it into three parts, not knowing the curse that would await us.$B$BThe only way to stop Valthalak\'s spell is to put the amulet back together. Return to Mokvar and tell him that Bodley is his only hope for finding the remaining pieces. Speak to him about any rewards you\'ve arranged for.$B$BI, for once, shall rest in peace. I wish you the best of luck; you shall need every bit of it!", + ["O"] = "Return to Mokvar in Orgimmar with a set of Beaststalker\'s Boots, Beaststalker\'s Pants and Beaststalker\'s Mantle.", + ["T"] = "Anthion\'s Parting Words", + }, + [9018] = { + ["D"] = "Valthalak\'s soul was stored in this amulet. In our greed we foolishly split it into three parts, not knowing the curse that would await us.$B$BThe only way to stop Valthalak\'s spell is to put the amulet back together. Return to Mokvar and tell him that Bodley is his only hope for finding the remaining pieces. Speak to him about any rewards you\'ve arranged for.$B$BI, for once, shall rest in peace. I wish you the best of luck; you shall need every bit of it!", + ["O"] = "Return to Mokvar in Orgimmar with a set of Magister\'s Boots, Magister\'s Leggings and Magister\'s Mantle.", + ["T"] = "Anthion\'s Parting Words", + }, + [9019] = { + ["D"] = "Valthalak\'s soul was stored in this amulet. In our greed we foolishly split it into three parts, not knowing the curse that would await us.$B$BThe only way to stop Valthalak\'s spell is to put the amulet back together. Return to Mokvar and tell him that Bodley is his only hope for finding the remaining pieces. Speak to him about any rewards you\'ve arranged for.$B$BI, for once, shall rest in peace. I wish you the best of luck; you shall need every bit of it!", + ["O"] = "Return to Mokvar in Orgimmar with a set of Devout Sandals, Devout Skirt and Devout Mantle.", + ["T"] = "Anthion\'s Parting Words", + }, + [9020] = { + ["D"] = "Valthalak\'s soul was stored in this amulet. In our greed we foolishly split it into three parts, not knowing the curse that would await us.$B$BThe only way to stop Valthalak\'s spell is to put the amulet back together. Return to Mokvar and tell him that Bodley is his only hope for finding the remaining pieces. Speak to him about any rewards you\'ve arranged for.$B$BI, for once, shall rest in peace. I wish you the best of luck; you shall need every bit of it!", + ["O"] = "Return to Mokvar in Orgimmar with a set of Shadowcraft Boots, Shadowcraft Pants and Shadowcraft Spaulders.", + ["T"] = "Anthion\'s Parting Words", + }, + [9021] = { + ["D"] = "Valthalak\'s soul was stored in this amulet. In our greed we foolishly split it into three parts, not knowing the curse that would await us.$B$BThe only way to stop Valthalak\'s spell is to put the amulet back together. Return to Mokvar and tell him that Bodley is his only hope for finding the remaining pieces. Speak to him about any rewards you\'ve arranged for.$B$BI, for once, shall rest in peace. I wish you the best of luck; you shall need every bit of it!", + ["O"] = "Return to Mokvar in Orgimmar with a set of Dreadmist Sandals, Dreadmist Leggings and Dreadmist Mantle.", + ["T"] = "Anthion\'s Parting Words", + }, + [9022] = { + ["D"] = "Valthalak\'s soul was stored in this amulet. In our greed we foolishly split it into three parts, not knowing the curse that would await us.$B$BThe only way to stop Valthalak\'s spell is to put the amulet back together. Return to Mokvar and tell him that Bodley is his only hope for finding the remaining pieces. Speak to him about any rewards you\'ve arranged for.$B$BI, for once, shall rest in peace. I wish you the best of luck; you shall need every bit of it!", + ["O"] = "Return to Mokvar in Orgimmar with a set of Boots of Valor, Legplates of Valor and Spaulders of Valor.", + ["T"] = "Anthion\'s Parting Words", + }, + [9023] = { + ["D"] = "My brother and I run the poison operations out of the manor Ravenholdt.$B$BLord Ravenholdt tasked me to track down a new and extremely effective poison compound that can be crafted from the venom sacs of the inhabitants of Zul\'Gurub and the Ruins of Ahn\'Qiraj.$B$BThere are two particularly venomous beasts residing in those blasted ruins that possess what it is that we might be looking for, $c. Bring me a venom sac from the beasts Kurinnaxx and Venoxis and we would be eternally grateful.", + ["O"] = "Dirk Thunderwood at Cenarion Hold wants you to bring him Venoxis\'s Venom Sac and Kurinnaxx\'s Venom Sac.", + ["T"] = "The Perfect Poison", + }, + [9024] = { + ["D"] = "I\'ve got it! Have you smelled the new fragrance on the wind? The new colognes and perfumes that have come into fashion? Our guards wouldn\'t neglect their duties so easily.$b$bThat is, unless their thinking has been clouded by some foul alchemy.$b$bThere is only one way to be sure - bring a bottle of cologne and perfume to Morgan Pestle, and tell him my suspicions. I will reimburse you for their purchase when you return.", + ["O"] = "Bring 1 Cologne Bottle and 1 Perfume Bottle to Morgan Pestle in the Trade District of Stormwind.", + ["T"] = "Aristan\'s Hunch", + }, + [9025] = { + ["D"] = "Well, I\'ll be. It looks like Aristan might be on to something after all. I found traces of substances used in love potions and insidious mind-altering draughts.$b$bIt isn\'t unheard of for perfumes to have some of them, but a few of the ingredients I detected... Smells funny.", + ["O"] = "Return to Aristan Mottar outside the bank in Stormwind\'s Trade District.", + ["T"] = "Morgan\'s Discovery", + }, + [9026] = { + ["D"] = "We\'ve got to find the source. I\'ve seen a lot more people than usual - guards included - going in and out of The Gilded Rose. Talk to Allison. If she\'s selling them, she can tell you where they came from.", + ["O"] = "Speak with Innkeeper Allison at The Gilded Rose in Stormwind\'s Trade District.", + ["T"] = "Tracing the Source", + }, + [9027] = { + ["D"] = "Something funny about the cologne? It\'s possible. I\'ve never seen so many people after one product like this.$b$bLook, if there\'s something wrong with it, I want to know, too. I bought my supply from a merchant named Evert Sorisam. He\'s new in town.$b$bHe mentioned he had some goods he was going to deliver to The Finest Thread.", + ["O"] = "Speak with Evert Sorisam at The Finest Thread along Stormwind\'s Canals.", + ["T"] = "Tracing the Source", + }, + [9028] = { + ["D"] = "What? Treason? No, no. I assure you, my intentions are completely harmless.$b$bIs it so wrong to help those who wish to ease the painful ritual of courtship? Come, that is no crime.$b$bAnd to prove that I mean no harm, I will even tell you my source.$b$bThey were shipped to me by a Staffron Lerent, an apothecary of some sort. I never spoke with him.$b$bOur goblin middle man said that he worked in the foothills over Hillsbrad past that mysterious Ravenholdt Manor. I wish you luck in finding him.", + ["O"] = "Find Apothecary Staffron Lerent in the Hillsbrad Foothills behind Ravenholdt Manor.", + ["T"] = "The Source Revealed", + }, + [9029] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Bubbling Cauldron", + }, + [9030] = { + ["D"] = "Valthalak\'s soul was stored in this amulet. In our greed we foolishly split it into three parts, not knowing the curse that would await us.$B$BThe only way to stop Valthalak\'s spell is to put the medallion back together. Return to Deliana and tell her that Bodley is her only hope for finding the remaining pieces.$B$BI, for once, shall rest in peace. I wish you the best of luck, and you shall need it!", + ["O"] = "Speak to Deliana in Ironforge.", + ["T"] = "Anthion\'s Parting Words", + }, + [9032] = { + ["D"] = "The medallion contained Valthalak\'s soul? It\'s no surprise it was guarded by such a powerful curse.$B$BLocating Bodley presents a bit of a problem. Last time I heard of him, he was preparing to venture back into Blackrock Spire. He was never heard of again.$B$BSeek him out in Blackrock Mountain, though I\'m afraid to say he\'s probably dead by now. I suggest taking the goblin\'s device with you, friend.", + ["O"] = "Travel to Blackrock Mountain and use the Extra-Dimensional Ghost Revealer to find Bodley near Blackrock Spire.", + ["T"] = "Bodley\'s Unfortunate Fate", + }, + [9033] = { + ["D"] = "Five years since the last war...$B$BTens of thousands of lives were lost and for what? The threat was never fully extinguished.$B$BAnd so the Lich King stirs once more... His yes-man, Kel\'Thuzad, amassing for another attack upon our lands.$B$BWe will not allow it! Prove your dedication. Prove that you are willing to risk life and limb to stop this madness and the combined might of the Dawn and the Crusade will be at your beck and call.$B$BEnter Naxxramas and destroy the Scourge within...", + ["O"] = "Commander Eligor Dawnbringer at Light\'s Hope Chapel in the Eastern Plaguelands wants you to slay 5 Living Monstrosities, 5 Stoneskin Gargoyles, 8 Deathknight Captains and 3 Venom Stalkers.", + ["T"] = "Echoes of War", + }, + [9034] = { + ["D"] = "During your battles with the Scourge in Naxxramas, should you come across desecrated battlements and wartorn plate scraps, return them to me and I shall craft for you a piece of armor worn by heroes.", + ["O"] = "Korfax at Light\'s Hope Chapel in the Eastern Plaguelands will make a Dreadnaught Breastplate if you bring him the following items: 1 Desecrated Breastplate, 25 Wartorn Plate Scraps, 4 Arcanite Bars and 2 Nexus Crystals.", + ["T"] = "Dreadnaught Breastplate", + }, + [9036] = { + ["D"] = "During your battles with the Scourge in Naxxramas, should you come across desecrated battlements and wartorn plate scraps, return them to me and I shall craft for you a piece of armor worn by heroes.", + ["O"] = "Korfax at Light\'s Hope Chapel in the Eastern Plaguelands will make Dreadnaught Legplates if you bring him the following items: 1 Desecrated Legplates, 20 Wartorn Plate Scraps, 4 Arcanite Bars and 3 Cured Rugged Hides.", + ["T"] = "Dreadnaught Legplates", + }, + [9037] = { + ["D"] = "During your battles with the Scourge in Naxxramas, should you come across desecrated battlements and wartorn plate scraps, return them to me and I shall craft for you a piece of armor worn by heroes.", + ["O"] = "Korfax at Light\'s Hope Chapel in the Eastern Plaguelands will make a Dreadnaught Helmet if you bring him the following items: 1 Desecrated Helmet, 15 Wartorn Plate Scraps, 5 Arcanite Bars and 1 Nexus Crystal.", + ["T"] = "Dreadnaught Helmet", + }, + [9038] = { + ["D"] = "During your battles with the Scourge in Naxxramas, should you come across desecrated battlements and wartorn plate scraps, return them to me and I shall craft for you a piece of armor worn by heroes.", + ["O"] = "Korfax at Light\'s Hope Chapel in the Eastern Plaguelands will make Dreadnaught Pauldrons if you bring him the following items: 1 Desecrated Pauldrons, 12 Wartorn Plate Scraps, 2 Arcanite Bars and 3 Cured Rugged Hides.", + ["T"] = "Dreadnaught Pauldrons", + }, + [9039] = { + ["D"] = "During your battles with the Scourge in Naxxramas, should you come across desecrated battlements and wartorn plate scraps, return them to me and I shall craft for you a piece of armor worn by heroes.", + ["O"] = "Korfax at Light\'s Hope Chapel in the Eastern Plaguelands will make Dreadnaught Sabatons if you bring him the following items: 1 Desecrated Sabatons, 12 Wartorn Plate Scraps, 2 Arcanite Bars and 3 Cured Rugged Hides.", + ["T"] = "Dreadnaught Sabatons", + }, + [9040] = { + ["D"] = "During your battles with the Scourge in Naxxramas, should you come across desecrated battlements and wartorn plate scraps, return them to me and I shall craft for you a piece of armor worn by heroes.", + ["O"] = "Korfax at Light\'s Hope Chapel in the Eastern Plaguelands will make Dreadnaught Gauntlets if you bring him the following items: 1 Desecrated Gauntlets, 8 Wartorn Plate Scraps, 1 Arcanite Bar and 5 Cured Rugged Hides.", + ["T"] = "Dreadnaught Gauntlets", + }, + [9041] = { + ["D"] = "During your battles with the Scourge in Naxxramas, should you come across desecrated battlements and wartorn plate scraps, return them to me and I shall craft for you a piece of armor worn by heroes.", + ["O"] = "Korfax at Light\'s Hope Chapel in the Eastern Plaguelands will make a Dreadnaught Waistguard if you bring him the following items: 1 Desecrated Waistguard, 8 Wartorn Plate Scraps, 1 Arcanite Bar and 5 Cured Rugged Hides.", + ["T"] = "Dreadnaught Waistguard", + }, + [9042] = { + ["D"] = "During your battles with the Scourge in Naxxramas, should you come across desecrated battlements and wartorn plate scraps, return them to me and I shall craft for you a piece of armor worn by heroes.", + ["O"] = "Korfax at Light\'s Hope Chapel in the Eastern Plaguelands will make Dreadnaught Bracers if you bring him the following items: 1 Desecrated Bracers, 6 Wartorn Plate Scraps, 1 Arcanite Bar and 1 Nexus Crystal.", + ["T"] = "Dreadnaught Bracers", + }, + [9043] = { + ["D"] = "You will find the remnants of our fallen heroes on the corpses of the Lords of Naxxramas. Bring those desecrated keepsakes to me along with wartorn plate scraps and crafting materials capable of revitalizing the cursed armor and I shall craft a fine piece of armor for you.", + ["O"] = "Commander Eligor Dawnbringer at Light\'s Hope Chapel in the Eastern Plaguelands will make a Redemption Tunic if you bring him the following: 1 Desecrated Tunic, 25 Wartorn Plate Scraps, 4 Arcanite Bars and 3 Cured Rugged Hides.", + ["T"] = "Redemption Tunic", + }, + [9044] = { + ["D"] = "You will find the remnants of our fallen heroes on the corpses of the Lords of Naxxramas. Bring those desecrated keepsakes to me along with wartorn plate scraps and crafting materials capable of revitalizing the cursed armor and I shall craft a fine piece of armor for you.", + ["O"] = "Commander Eligor Dawnbringer at Light\'s Hope Chapel in the Eastern Plaguelands will make a pair of Redemption Legguards if you bring him the following: 1 Desecrated Legguards, 20 Wartorn Plate Scraps, 4 Arcanite Bars and 2 Nexus Crystals.", + ["T"] = "Redemption Legguards", + }, + [9045] = { + ["D"] = "You will find the remnants of our fallen heroes on the corpses of the Lords of Naxxramas. Bring those desecrated keepsakes to me along with wartorn plate scraps and crafting materials capable of revitalizing the cursed armor and I shall craft a fine piece of armor for you.", + ["O"] = "Commander Eligor Dawnbringer at Light\'s Hope Chapel in the Eastern Plaguelands will make a Redemption Headpiece if you bring him the following: 1 Desecrated Headpiece, 15 Wartorn Plate Scraps, 5 Arcanite Bars and 2 Cured Rugged Hides.", + ["T"] = "Redemption Headpiece", + }, + [9046] = { + ["D"] = "You will find the remnants of our fallen heroes on the corpses of the Lords of Naxxramas. Bring those desecrated keepsakes to me along with wartorn plate scraps and crafting materials capable of revitalizing the cursed armor and I shall craft a fine piece of armor for you.", + ["O"] = "Commander Eligor Dawnbringer at Light\'s Hope Chapel in the Eastern Plaguelands will make a pair of Redemption Spaulders if you bring him the following: 1 Desecrated Spaulders, 12 Wartorn Plate Scraps, 2 Arcanite Bars and 2 Nexus Crystals.", + ["T"] = "Redemption Spaulders", + }, + [9047] = { + ["D"] = "You will find the remnants of our fallen heroes on the corpses of the Lords of Naxxramas. Bring those desecrated keepsakes to me along with wartorn plate scraps and crafting materials capable of revitalizing the cursed armor and I shall craft a fine piece of armor for you.", + ["O"] = "Commander Eligor Dawnbringer at Light\'s Hope Chapel in the Eastern Plaguelands will make Redemption Boots if you bring him the following: 1 Desecrated Boots, 12 Wartorn Plate Scraps, 2 Arcanite Bars and 3 Cured Rugged Hides.", + ["T"] = "Redemption Boots", + }, + [9048] = { + ["D"] = "You will find the remnants of our fallen heroes on the corpses of the Lords of Naxxramas. Bring those desecrated keepsakes to me along with wartorn plate scraps and crafting materials capable of revitalizing the cursed armor and I shall craft a fine piece of armor for you.", + ["O"] = "Commander Eligor Dawnbringer at Light\'s Hope Chapel in the Eastern Plaguelands will make Redemption Handguards if you bring him the following: 1 Desecrated Handguards, 8 Wartorn Plate Scraps, 1 Arcanite Bar and 5 Cured Rugged Hides.", + ["T"] = "Redemption Handguards", + }, + [9049] = { + ["D"] = "You will find the remnants of our fallen heroes on the corpses of the Lords of Naxxramas. Bring those desecrated keepsakes to me along with wartorn plate scraps and crafting materials capable of revitalizing the cursed armor and I shall craft a fine piece of armor for you.", + ["O"] = "Commander Eligor Dawnbringer at Light\'s Hope Chapel in the Eastern Plaguelands will make a Redemption Girdle if you bring him the following: 1 Desecrated Girdle, 8 Wartorn Plate Scraps, 1 Arcanite Bar and 3 Nexus Crystals.", + ["T"] = "Redemption Girdle", + }, + [9050] = { + ["D"] = "You will find the remnants of our fallen heroes on the corpses of the Lords of Naxxramas. Bring those desecrated keepsakes to me along with wartorn plate scraps and crafting materials capable of revitalizing the cursed armor and I shall craft a fine piece of armor for you.", + ["O"] = "Commander Eligor Dawnbringer at Light\'s Hope Chapel in the Eastern Plaguelands will make Redemption Wristguards if you bring him the following: 1 Desecrated Wristguards, 6 Wartorn Plate Scraps, 1 Arcanite Bar and 2 Cured Rugged Hides.", + ["T"] = "Redemption Wristguards", + }, + [9051] = { + ["D"] = "The toxin you helped me create is for a special purpose. The great devilsaurs of the crater make it dangerous to hunt and difficult for me to survive. Even if I possessed the necessary strength, killing a devilsaur simply allows another to move into its territory.$b$bTake this poisoned barb and stab it deep into a living devilsaur. The toxin should pacify the creature, though I do not know how quickly...", + ["O"] = "Stab a Devilsaur with the Devilsaur Barb. Return to Torwa Pathfinder in Un\'Goro Crater when you have completed this task.", + ["T"] = "Toxic Test", + }, + [9052] = { + ["D"] = "I would ask you to help me create a toxin of sorts, to pacify a great creature living here in the crater. It is not deadly, and only the keen eyes of a $c can hope to collect the ingredients.$b$bYou can find the bloodcap mushrooms growing within the bloodpetal sprouts all across the crater. Gorishi stings are from the giant flying wasps inside and around the Slithering Scar, located in the southern part of the crater.", + ["O"] = "Collect 8 Bloodcap and 8 Gorishi Stings, and return to Torwa Pathfinder in Un\'Goro Crater.", + ["T"] = "Bloodpetal Poison", + }, + [9053] = { + ["D"] = "It is as I feared -- the toxin is simply too weak for such a powerful creature.$b$bIf we are to create a toxin of high enough potency, you must venture to the bottom of the Temple of Atal\'Hakkar, unlock the secrets of the altar and recover a putrid vine from the guardian there. The temple is dangerous, and it would behoove you to bring friends.$b$bReturn to me when this is done.", + ["O"] = "Retrieve a Putrid Vine from the guardian at the bottom of the Sunken Temple and return to Torwa Pathfinder.", + ["T"] = "A Better Ingredient", + }, + [9054] = { + ["D"] = "I have discovered a use for the carapace of the crypt fiend. I am able to fashion an extremely light and very deadly set of armor by combining the fragments with some of the desecrated magical armors lost in Naxxramas.$B$BBring me the items I require and I shall fashion for you a suit of armor the likes of which has never before been seen in our world!", + ["O"] = "Huntsman Leopold at Light\'s Hope Chapel in the Eastern Plaguelands will make a Cryptstalker Tunic if you bring him the following: 1 Desecrated Tunic, 25 Wartorn Chain Scraps, 4 Arcanite Bars and 3 Cured Rugged Hides.", + ["T"] = "Cryptstalker Tunic", + }, + [9055] = { + ["D"] = "I have discovered a use for the carapace of the crypt fiend. I am able to fashion an extremely light and very deadly set of armor by combining the fragments with some of the desecrated magical armors lost in Naxxramas.$B$BBring me the items I require and I shall fashion for you a suit of armor the likes of which has never before been seen in our world!", + ["O"] = "Huntsman Leopold at Light\'s Hope Chapel in the Eastern Plaguelands will make Cryptstalker Legguards if you bring him the following: 1 Desecrated Legguards, 20 Wartorn Chain Scraps, 3 Arcanite Bars and 5 Cured Rugged Hides.", + ["T"] = "Cryptstalker Legguards", + }, + [9056] = { + ["D"] = "I have discovered a use for the carapace of the crypt fiend. I am able to fashion an extremely light and very deadly set of armor by combining the fragments with some of the desecrated magical armors lost in Naxxramas.$B$BBring me the items I require and I shall fashion for you a suit of armor the likes of which has never before been seen in our world!", + ["O"] = "Huntsman Leopold at Light\'s Hope Chapel in the Eastern Plaguelands will make a Cryptstalker Headpiece if you bring him the following: 1 Desecrated Headpiece, 15 Wartorn Chain Scraps, 4 Arcanite Bars and 2 Nexus Crystals.", + ["T"] = "Cryptstalker Headpiece", + }, + [9057] = { + ["D"] = "I have discovered a use for the carapace of the crypt fiend. I am able to fashion an extremely light and very deadly set of armor by combining the fragments with some of the desecrated magical armors lost in Naxxramas.$B$BBring me the items I require and I shall fashion for you a suit of armor the likes of which has never before been seen in our world!", + ["O"] = "Huntsman Leopold at Light\'s Hope Chapel in the Eastern Plaguelands will make Cryptstalker Spaulders if you bring him the following: 1 Desecrated Spaulders, 12 Wartorn Chain Scraps, 2 Arcanite Bars and 3 Cured Rugged Hides.", + ["T"] = "Cryptstalker Spaulders", + }, + [9058] = { + ["D"] = "I have discovered a use for the carapace of the crypt fiend. I am able to fashion an extremely light and very deadly set of armor by combining the fragments with some of the desecrated magical armors lost in Naxxramas.$B$BBring me the items I require and I shall fashion for you a suit of armor the likes of which has never before been seen in our world!", + ["O"] = "Huntsman Leopold at Light\'s Hope Chapel in the Eastern Plaguelands will make Cryptstalker Boots if you bring him the following: 1 Desecrated Boots, 12 Wartorn Chain Scraps, 1 Arcanite Bar and 3 Nexus Crystals.", + ["T"] = "Cryptstalker Boots", + }, + [9059] = { + ["D"] = "I have discovered a use for the carapace of the crypt fiend. I am able to fashion an extremely light and very deadly set of armor by combining the fragments with some of the desecrated magical armors lost in Naxxramas.$B$BBring me the items I require and I shall fashion for you a suit of armor the likes of which has never before been seen in our world!", + ["O"] = "Huntsman Leopold at Light\'s Hope Chapel in the Eastern Plaguelands will make Cryptstalker Handguards if you bring him the following: 1 Desecrated Handguards, 8 Wartorn Chain Scraps, 1 Arcanite Bar and 5 Cured Rugged Hides.", + ["T"] = "Cryptstalker Handguards", + }, + [9060] = { + ["D"] = "I have discovered a use for the carapace of the crypt fiend. I am able to fashion an extremely light and very deadly set of armor by combining the fragments with some of the desecrated magical armors lost in Naxxramas.$B$BBring me the items I require and I shall fashion for you a suit of armor the likes of which has never before been seen in our world!", + ["O"] = "Huntsman Leopold at Light\'s Hope Chapel in the Eastern Plaguelands will make a Cryptstalker Girdle if you bring him the following: 1 Desecrated Girdle, 8 Wartorn Chain Scraps, 1 Arcanite Bar and 3 Nexus Crystals.", + ["T"] = "Cryptstalker Girdle", + }, + [9061] = { + ["D"] = "I have discovered a use for the carapace of the crypt fiend. I am able to fashion an extremely light and very deadly set of armor by combining the fragments with some of the desecrated magical armors lost in Naxxramas.$B$BBring me the items I require and I shall fashion for you a suit of armor the likes of which has never before been seen in our world!", + ["O"] = "Huntsman Leopold at Light\'s Hope Chapel in the Eastern Plaguelands will make Cryptstalker Wristguards if you bring him the following: 1 Desecrated Wristguards, 6 Wartorn Chain Scraps, 1 Arcanite Bar and 2 Cured Rugged Hides.", + ["T"] = "Cryptstalker Wristguards", + }, + [9063] = { + ["D"] = "A hunter by the name of Torwa Pathfinder has requested the help of a druid. He said only we would possess the necessary skills and respect for nature to help him.$b$bThere is a road that connects the Un\'Goro Crater and the desert of Tanaris. As that road enters the crater, you will find Torwa close by.", + ["O"] = "Speak with Torwa Pathfinder in Un\'Goro Crater.", + ["T"] = "Torwa Pathfinder", + }, + [9065] = { + ["D"] = "$Tpunk;! Kill Kobold Vermin, 2 of em.", + ["O"] = "Kill Kobold Vermin, 2 of em.", + ["T"] = "The \"Chow\" Quest (123)aa", + }, + [9068] = { + ["D"] = "Would you honor me by returning the armor of those that fell in the defense of these lands?$B$BThe armor has been desecrated and is undoubtedly being used for evil; however, with wartorn armor scraps, the desecrated armor can be renewed and worn for battle once more.$B$BBring me the remnants of the fallen along with purification materials and Earthshatter shall be yours to don.$B$BSearch Naxxramas.", + ["O"] = "Rimblat Earthshatter at Light\'s Hope Chapel in the Eastern Plaguelands will make an Earthshatter Tunic if you bring him the following: 1 Desecrated Tunic, 25 Wartorn Chain Scraps, 4 Arcanite Bars and 3 Cured Rugged Hides.", + ["T"] = "Earthshatter Tunic", + }, + [9069] = { + ["D"] = "Would you honor me by returning the armor of those that fell in the defense of these lands?$B$BThe armor has been desecrated and is undoubtedly being used for evil; however, with wartorn armor scraps, the desecrated armor can be renewed and worn for battle once more.$B$BBring me the remnants of the fallen along with purification materials and Earthshatter shall be yours to don.$B$BSearch Naxxramas.", + ["O"] = "Rimblat Earthshatter at Light\'s Hope Chapel in the Eastern Plaguelands will make Earthshatter Legguards if you bring him the following: 1 Desecrated Legguards, 20 Wartorn Chain Scraps, 3 Arcanite Bars and 5 Cured Rugged Hides.", + ["T"] = "Earthshatter Legguards", + }, + [9070] = { + ["D"] = "Would you honor me by returning the armor of those that fell in the defense of these lands?$B$BThe armor has been desecrated and is undoubtedly being used for evil; however, with wartorn armor scraps, the desecrated armor can be renewed and worn for battle once more.$B$BBring me the remnants of the fallen along with purification materials and Earthshatter shall be yours to don.$B$BSearch Naxxramas.", + ["O"] = "Rimblat Earthshatter at Light\'s Hope Chapel in the Eastern Plaguelands will make an Earthshatter Headpiece if you bring him the following: 1 Desecrated Headpiece, 15 Wartorn Chain Scraps, 4 Arcanite Bars and 2 Nexus Crystals.", + ["T"] = "Earthshatter Headpiece", + }, + [9071] = { + ["D"] = "Would you honor me by returning the armor of those that fell in the defense of these lands?$B$BThe armor has been desecrated and is undoubtedly being used for evil; however, with wartorn armor scraps, the desecrated armor can be renewed and worn for battle once more.$B$BBring me the remnants of the fallen along with purification materials and Earthshatter shall be yours to don.$B$BSearch Naxxramas.", + ["O"] = "Rimblat Earthshatter at Light\'s Hope Chapel in the Eastern Plaguelands will make Earthshatter Spaulders if you bring him the following: 1 Desecrated Spaulders, 12 Wartorn Chain Scraps, 2 Arcanite Bars and 2 Mooncloth.", + ["T"] = "Earthshatter Spaulders", + }, + [9072] = { + ["D"] = "Would you honor me by returning the armor of those that fell in the defense of these lands?$B$BThe armor has been desecrated and is undoubtedly being used for evil; however, with wartorn armor scraps, the desecrated armor can be renewed and worn for battle once more.$B$BBring me the remnants of the fallen along with purification materials and Earthshatter shall be yours to don.$B$BSearch Naxxramas.", + ["O"] = "Rimblat Earthshatter at Light\'s Hope Chapel in the Eastern Plaguelands will make Earthshatter Boots if you bring him the following: 1 Desecrated Boots, 12 Wartorn Chain Scraps, 1 Arcanite Bar and 3 Nexus Crystals.", + ["T"] = "Earthshatter Boots", + }, + [9073] = { + ["D"] = "Would you honor me by returning the armor of those that fell in the defense of these lands?$B$BThe armor has been desecrated and is undoubtedly being used for evil; however, with wartorn armor scraps, the desecrated armor can be renewed and worn for battle once more.$B$BBring me the remnants of the fallen along with purification materials and Earthshatter shall be yours to don.$B$BSearch Naxxramas.", + ["O"] = "Rimblat Earthshatter at Light\'s Hope Chapel in the Eastern Plaguelands will make Earthshatter Handguards if you bring him the following: 1 Desecrated Handguards, 8 Wartorn Chain Scraps, 1 Arcanite Bar and 5 Cured Rugged Hides.", + ["T"] = "Earthshatter Handguards", + }, + [9074] = { + ["D"] = "Would you honor me by returning the armor of those that fell in the defense of these lands?$B$BThe armor has been desecrated and is undoubtedly being used for evil; however, with wartorn armor scraps, the desecrated armor can be renewed and worn for battle once more.$B$BBring me the remnants of the fallen along with purification materials and Earthshatter shall be yours to don.$B$BSearch Naxxramas.", + ["O"] = "Rimblat Earthshatter at Light\'s Hope Chapel in the Eastern Plaguelands will make an Earthshatter Girdle if you bring him the following: 1 Desecrated Girdle, 8 Wartorn Chain Scraps, 1 Arcanite Bar and 3 Nexus Crystals.", + ["T"] = "Earthshatter Girdle", + }, + [9075] = { + ["D"] = "Would you honor me by returning the armor of those that fell in the defense of these lands?$B$BThe armor has been desecrated and is undoubtedly being used for evil; however, with wartorn armor scraps, the desecrated armor can be renewed and worn for battle once more.$B$BBring me the remnants of the fallen along with purification materials and Earthshatter shall be yours to don.$B$BSearch Naxxramas.", + ["O"] = "Rimblat Earthshatter at Light\'s Hope Chapel in the Eastern Plaguelands will make Earthshatter Wristguards if you bring him the following: 1 Desecrated Wristguards, 6 Wartorn Chain Scraps, 1 Arcanite Bar and 2 Cured Rugged Hides.", + ["T"] = "Earthshatter Wristguards", + }, + [9077] = { + ["D"] = "If you want Bonescythe made, you\'re going to have to supply the materials.$B$BEnter Naxxramas, the big floating city of death in the sky up there, and find desecrated armor and wartorn armor scraps. Bring those back along with the materials to put everything together and you\'ll have your Bonescythe. Oh, and you\'ll need to pay me for my troubles... I\'ll supply the bones.", + ["O"] = "Rohan the Assassin at Light\'s Hope Chapel in the Eastern Plaguelands will make a Bonescythe Breastplate if you bring him the following: 1 Desecrated Breastplate, 25 Wartorn Leather Scraps, 2 Arcanite Bars and 6 Cured Rugged Hides.", + ["T"] = "Bonescythe Breastplate", + }, + [9078] = { + ["D"] = "If you want Bonescythe made, you\'re going to have to supply the materials.$B$BEnter Naxxramas, the big floating city of death in the sky up there, and find desecrated armor and wartorn armor scraps. Bring those back along with the materials to put everything together and you\'ll have your Bonescythe. Oh, and you\'ll need to pay me for my troubles... I\'ll supply the bones.", + ["O"] = "Rohan the Assassin at Light\'s Hope Chapel in the Eastern Plaguelands will make Bonescythe Legplates if you bring him the following: 1 Desecrated Legplates, 20 Wartorn Leather Scraps, 1 Arcanite Bar, 8 Cured Rugged Hides and 100 gold pieces.", + ["T"] = "Bonescythe Legplates", + }, + [9079] = { + ["D"] = "If you want Bonescythe made, you\'re going to have to supply the materials.$B$BEnter Naxxramas, the big floating city of death in the sky up there, and find desecrated armor and wartorn armor scraps. Bring those back along with the materials to put everything together and you\'ll have your Bonescythe. Oh, and you\'ll need to pay me for my troubles... I\'ll supply the bones.", + ["O"] = "Rohan the Assassin at Light\'s Hope Chapel in the Eastern Plaguelands will make a Bonescythe Helmet if you bring him the following: 1 Desecrated Helmet, 15 Wartorn Leather Scraps, 8 Cured Rugged Hides, 1 Nexus Crystal and 75 gold pieces.", + ["T"] = "Bonescythe Helmet", + }, + [9080] = { + ["D"] = "If you want Bonescythe made, you\'re going to have to supply the materials.$B$BEnter Naxxramas, the big floating city of death in the sky up there, and find desecrated armor and wartorn armor scraps. Bring those back along with the materials to put everything together and you\'ll have your Bonescythe. Oh, and you\'ll need to pay me for my troubles... I\'ll supply the bones.", + ["O"] = "Rohan the Assassin at Light\'s Hope Chapel in the Eastern Plaguelands will make Bonescythe Pauldrons if you bring him the following: 1 Desecrated Pauldrons, 12 Wartorn Leather Scraps, 5 Cured Rugged Hides, 1 Nexus Crystal and 50 gold pieces. ", + ["T"] = "Bonescythe Pauldrons", + }, + [9081] = { + ["D"] = "If you want Bonescythe made, you\'re going to have to supply the materials.$B$BEnter Naxxramas, the big floating city of death in the sky up there, and find desecrated armor and wartorn armor scraps. Bring those back along with the materials to put everything together and you\'ll have your Bonescythe. Oh, and you\'ll need to pay me for my troubles... I\'ll supply the bones.", + ["O"] = "Rohan the Assassin at Light\'s Hope Chapel in the Eastern Plaguelands will make Bonescythe Sabatons if you bring him the following: 1 Desecrated Sabatons, 12 Wartorn Leather Scraps, 3 Cured Rugged Hides, 2 Nexus Crystals and 25 gold pieces. ", + ["T"] = "Bonescythe Sabatons", + }, + [9082] = { + ["D"] = "If you want Bonescythe made, you\'re going to have to supply the materials.$B$BEnter Naxxramas, the big floating city of death in the sky up there, and find desecrated armor and wartorn armor scraps. Bring those back along with the materials to put everything together and you\'ll have your Bonescythe. Oh, and you\'ll need to pay me for my troubles... I\'ll supply the bones.", + ["O"] = "Rohan the Assassin at Light\'s Hope Chapel in the Eastern Plaguelands will make Bonescythe Gauntlets if you bring him the following: 1 Desecrated Gauntlets, 8 Wartorn Leather Scraps, 1 Arcanite Bar and 5 Cured Rugged Hides. ", + ["T"] = "Bonescythe Gauntlets", + }, + [9083] = { + ["D"] = "If you want Bonescythe made, you\'re going to have to supply the materials.$B$BEnter Naxxramas, the big floating city of death in the sky up there, and find desecrated armor and wartorn armor scraps. Bring those back along with the materials to put everything together and you\'ll have your Bonescythe. Oh, and you\'ll need to pay me for my troubles... I\'ll supply the bones.", + ["O"] = "Rohan the Assassin at Light\'s Hope Chapel in the Eastern Plaguelands will make a Bonescythe Waistguard if you bring him the following: 1 Desecrated Waistguard, 8 Wartorn Leather Scraps, 5 Cured Rugged Hides, 1 Nexus Crystal and 15 gold pieces.", + ["T"] = "Bonescythe Waistguard", + }, + [9084] = { + ["D"] = "If you want Bonescythe made, you\'re going to have to supply the materials.$B$BEnter Naxxramas, the big floating city of death in the sky up there, and find desecrated armor and wartorn armor scraps. Bring those back along with the materials to put everything together and you\'ll have your Bonescythe. Oh, and you\'ll need to pay me for my troubles... I\'ll supply the bones.", + ["O"] = "Rohan the Assassin at Light\'s Hope Chapel in the Eastern Plaguelands will make Bonescythe Bracers if you bring him the following: 1 Desecrated Bracers, 6 Wartorn Leather Scraps, 1 Arcanite Bar, 2 Cured Rugged Hides and 10 gold pieces.", + ["T"] = "Bonescythe Bracers", + }, + [9085] = { + ["D"] = "After you bring down the defenses of the Scourge summoning circles that have appeared in the zones under attack, you will be able to confront the acolytes who protect them.$b$bIn truth, these are not men. They are shadows, some of the Lich King\'s most frightening creatures. They can be revealed using the necrotic runes they carry, and then destroyed with magic or strength of arms.", + ["O"] = "Go to a summoning circle and kill a Shadow of Doom, then return to Commander Thomas Helleran at Light\'s Hope Chapel in Eastern Plaguelands.", + ["T"] = "Shadows of Doom", + }, + [9086] = { + ["D"] = "Many heroes fell in the last war and many continue to perish at the hands of the Scourge to this day. From the corpses of the fallen, the armor is stripped and taken back to Naxxramas to be used for unknown purposes.$B$BRecover the desecrated armor and wartorn armor scraps and supply to me the other material components I require and I will craft Dreamwalker armor.", + ["O"] = "Rayne at Light\'s Hope Chapel in the Eastern Plaguelands will make a Dreamwalker Tunic if you bring her the following: 1 Desecrated Tunic, 25 Wartorn Leather Scraps, 6 Cured Rugged Hides and 2 Nexus Crystals.", + ["T"] = "Dreamwalker Tunic", + }, + [9087] = { + ["D"] = "Many heroes fell in the last war and many continue to perish at the hands of the Scourge to this day. From the corpses of the fallen, the armor is stripped and taken back to Naxxramas to be used for unknown purposes.$B$BRecover the desecrated armor and wartorn armor scraps and supply to me the other material components I require and I will craft Dreamwalker armor.", + ["O"] = "Rayne at Light\'s Hope Chapel in the Eastern Plaguelands will make Dreamwalker Legguards if you bring her the following: 1 Desecrated Legguards, 20 Wartorn Leather Scraps, 8 Cured Rugged Hides and 1 Nexus Crystal.", + ["T"] = "Dreamwalker Legguards", + }, + [9088] = { + ["D"] = "Many heroes fell in the last war and many continue to perish at the hands of the Scourge to this day. From the corpses of the fallen, the armor is stripped and taken back to Naxxramas to be used for unknown purposes.$B$BRecover the desecrated armor and wartorn armor scraps and supply to me the other material components I require and I will craft Dreamwalker armor.", + ["O"] = "Rayne at Light\'s Hope Chapel in the Eastern Plaguelands will make a Dreamwalker Headpiece if you bring her the following: 1 Desecrated Headpiece, 15 Wartorn Leather Scraps, 6 Cured Rugged Hides and 2 Nexus Crystals.", + ["T"] = "Dreamwalker Headpiece", + }, + [9089] = { + ["D"] = "Many heroes fell in the last war and many continue to perish at the hands of the Scourge to this day. From the corpses of the fallen, the armor is stripped and taken back to Naxxramas to be used for unknown purposes.$B$BRecover the desecrated armor and wartorn armor scraps and supply to me the other material components I require and I will craft Dreamwalker armor.", + ["O"] = "Rayne at Light\'s Hope Chapel in the Eastern Plaguelands will make Dreamwalker Spaulders if you bring her the following: 1 Desecrated Spaulders, 12 Wartorn Leather Scraps, 5 Cured Rugged Hides and 1 Nexus Crystal.", + ["T"] = "Dreamwalker Spaulders", + }, + [9090] = { + ["D"] = "Many heroes fell in the last war and many continue to perish at the hands of the Scourge to this day. From the corpses of the fallen, the armor is stripped and taken back to Naxxramas to be used for unknown purposes.$B$BRecover the desecrated armor and wartorn armor scraps and supply to me the other material components I require and I will craft Dreamwalker armor.", + ["O"] = "Rayne at Light\'s Hope Chapel in the Eastern Plaguelands will make Dreamwalker Boots if you bring her the following: 1 Desecrated Boots, 12 Wartorn Leather Scraps, 3 Mooncloth and 2 Cured Rugged Hides.", + ["T"] = "Dreamwalker Boots", + }, + [9091] = { + ["D"] = "Many heroes fell in the last war and many continue to perish at the hands of the Scourge to this day. From the corpses of the fallen, the armor is stripped and taken back to Naxxramas to be used for unknown purposes.$B$BRecover the desecrated armor and wartorn armor scraps and supply to me the other material components I require and I will craft Dreamwalker armor.", + ["O"] = "Rayne at Light\'s Hope Chapel in the Eastern Plaguelands will make Dreamwalker Handguards if you bring her the following: 1 Desecrated Handguards, 8 Wartorn Leather Scraps, 5 Cured Rugged Hides and 1 Nexus Crystal.", + ["T"] = "Dreamwalker Handguards", + }, + [9092] = { + ["D"] = "Many heroes fell in the last war and many continue to perish at the hands of the Scourge to this day. From the corpses of the fallen, the armor is stripped and taken back to Naxxramas to be used for unknown purposes.$B$BRecover the desecrated armor and wartorn armor scraps and supply to me the other material components I require and I will craft Dreamwalker armor.", + ["O"] = "Rayne at Light\'s Hope Chapel in the Eastern Plaguelands will make a Dreamwalker Girdle if you bring her the following: 1 Desecrated Girdle, 8 Wartorn Leather Scraps, 3 Mooncloth and 2 Cured Rugged Hides.", + ["T"] = "Dreamwalker Girdle", + }, + [9093] = { + ["D"] = "Many heroes fell in the last war and many continue to perish at the hands of the Scourge to this day. From the corpses of the fallen, the armor is stripped and taken back to Naxxramas to be used for unknown purposes.$B$BRecover the desecrated armor and wartorn armor scraps and supply to me the other material components I require and I will craft Dreamwalker armor.", + ["O"] = "Rayne at Light\'s Hope Chapel in the Eastern Plaguelands will make Dreamwalker Wristguards if you bring her the following: 1 Desecrated Wristguards, 6 Wartorn Leather Scraps, 1 Arcane Crystal and 2 Cured Rugged Hides.", + ["T"] = "Dreamwalker Wristguards", + }, + [9094] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Argent Dawn Gloves", + }, + [9095] = { + ["D"] = "As a Watcher, I was allowed access to many of Medivh\'s personal effects. Among those items, I found the tomes most enlightening. While the majority of the books were filled with - to put it bluntly - tripe, there were some gems. One of those tomes documented the creation of a set of armor fit for an archmage: Frostfire.$B$B$B$BIt\'s all in here and I am willing to share the fruits of that knowledge with you as long as you are able to provide me with the necessary materials.", + ["O"] = "Archmage Angela Dosantos at Light\'s Hope Chapel in the Eastern Plaguelands will make a Frostfire Robe if you bring her the following: 1 Desecrated Robe, 25 Wartorn Cloth Scraps, 4 Mooncloth and 2 Nexus Crystals.", + ["T"] = "Frostfire Robe", + }, + [9096] = { + ["D"] = "As a Watcher, I was allowed access to many of Medivh\'s personal effects. Among those items, I found the tomes most enlightening. While the majority of the books were filled with - to put it bluntly - tripe, there were some gems. One of those tomes documented the creation of a set of armor fit for an archmage: Frostfire.$B$B$B$BIt\'s all in here and I am willing to share the fruits of that knowledge with you as long as you are able to provide me with the necessary materials.", + ["O"] = "Archmage Angela Dosantos at Light\'s Hope Chapel in the Eastern Plaguelands will make Frostfire Leggings if you bring her the following: 1 Desecrated Leggings, 20 Wartorn Cloth Scraps, 4 Mooncloth and 2 Nexus Crystals.", + ["T"] = "Frostfire Leggings", + }, + [9097] = { + ["D"] = "As a Watcher, I was allowed access to many of Medivh\'s personal effects. Among those items, I found the tomes most enlightening. While the majority of the books were filled with - to put it bluntly - tripe, there were some gems. One of those tomes documented the creation of a set of armor fit for an archmage: Frostfire.$B$B$B$BIt\'s all in here and I am willing to share the fruits of that knowledge with you as long as you are able to provide me with the necessary materials.", + ["O"] = "Archmage Angela Dosantos at Light\'s Hope Chapel in the Eastern Plaguelands will make a Frostfire Circlet if you bring her the following: 1 Desecrated Circlet, 15 Wartorn Cloth Scraps, 3 Mooncloth and 3 Nexus Crystals.", + ["T"] = "Frostfire Circlet", + }, + [9098] = { + ["D"] = "As a Watcher, I was allowed access to many of Medivh\'s personal effects. Among those items, I found the tomes most enlightening. While the majority of the books were filled with - to put it bluntly - tripe, there were some gems. One of those tomes documented the creation of a set of armor fit for an archmage: Frostfire.$B$B$B$BIt\'s all in here and I am willing to share the fruits of that knowledge with you as long as you are able to provide me with the necessary materials.", + ["O"] = "Archmage Angela Dosantos at Light\'s Hope Chapel in the Eastern Plaguelands will make Frostfire Shoulderpads if you bring her the following: 1 Desecrated Shoulderpads, 12 Wartorn Cloth Scraps, 2 Mooncloth and 3 Cured Rugged Hides.", + ["T"] = "Frostfire Shoulderpads", + }, + [9099] = { + ["D"] = "As a Watcher, I was allowed access to many of Medivh\'s personal effects. Among those items, I found the tomes most enlightening. While the majority of the books were filled with - to put it bluntly - tripe, there were some gems. One of those tomes documented the creation of a set of armor fit for an archmage: Frostfire.$B$B$B$BIt\'s all in here and I am willing to share the fruits of that knowledge with you as long as you are able to provide me with the necessary materials.", + ["O"] = "Archmage Angela Dosantos at Light\'s Hope Chapel in the Eastern Plaguelands will make Frostfire Sandals if you bring her the following: 1 Desecrated Sandals, 12 Wartorn Cloth Scraps, 2 Mooncloth and 3 Cured Rugged Hides.", + ["T"] = "Frostfire Sandals", + }, + [9100] = { + ["D"] = "As a Watcher, I was allowed access to many of Medivh\'s personal effects. Among those items, I found the tomes most enlightening. While the majority of the books were filled with - to put it bluntly - tripe, there were some gems. One of those tomes documented the creation of a set of armor fit for an archmage: Frostfire.$B$B$B$BIt\'s all in here and I am willing to share the fruits of that knowledge with you as long as you are able to provide me with the necessary materials.", + ["O"] = "Archmage Angela Dosantos at Light\'s Hope Chapel in the Eastern Plaguelands will make Frostfire Gloves if you bring her the following: 1 Desecrated Gloves, 8 Wartorn Cloth Scraps and 4 Mooncloth.", + ["T"] = "Frostfire Gloves", + }, + [9101] = { + ["D"] = "As a Watcher, I was allowed access to many of Medivh\'s personal effects. Among those items, I found the tomes most enlightening. While the majority of the books were filled with - to put it bluntly - tripe, there were some gems. One of those tomes documented the creation of a set of armor fit for an archmage: Frostfire.$B$B$B$BIt\'s all in here and I am willing to share the fruits of that knowledge with you as long as you are able to provide me with the necessary materials.", + ["O"] = "Archmage Angela Dosantos at Light\'s Hope Chapel in the Eastern Plaguelands will make a Frostfire Belt if you bring her the following: 1 Desecrated Belt, 8 Wartorn Cloth Scraps, 2 Arcane Crystals and 2 Mooncloth.", + ["T"] = "Frostfire Belt", + }, + [9102] = { + ["D"] = "As a Watcher, I was allowed access to many of Medivh\'s personal effects. Among those items, I found the tomes most enlightening. While the majority of the books were filled with - to put it bluntly - tripe, there were some gems. One of those tomes documented the creation of a set of armor fit for an archmage: Frostfire.$B$B$B$BIt\'s all in here and I am willing to share the fruits of that knowledge with you as long as you are able to provide me with the necessary materials.", + ["O"] = "Archmage Angela Dosantos at Light\'s Hope Chapel in the Eastern Plaguelands will make Frostfire Bindings if you bring her the following: 1 Desecrated Bindings, 6 Wartorn Cloth Scraps, 1 Arcane Crystal and 1 Nexus Crystal.", + ["T"] = "Frostfire Bindings", + }, + [9103] = { + ["D"] = "I make no pretenses, maggot. The darkness Plagueheart items hold could very well destroy the both of us. That is why the price is so high. If I\'m going to die, it\'s going to be as a rich man.$B$BAnd I don\'t give an ounce of gnoll spit how you die, only that you do as I ask. Bring me what I require and we will both benefit - or die; but I\'ve already explained this...", + ["O"] = "Mataus the Wrathcaster at Light\'s Hope Chapel in the Eastern Plaguelands will make a Plagueheart Robe if you bring him the following: 1 Desecrated Robe, 25 Wartorn Cloth Scraps, 4 Mooncloth and 2 Nexus Crystals.", + ["T"] = "Plagueheart Robe", + }, + [9104] = { + ["D"] = "I make no pretenses, maggot. The darkness Plagueheart items hold could very well destroy the both of us. That is why the price is so high. If I\'m going to die, it\'s going to be as a rich man.$B$BAnd I don\'t give an ounce of gnoll spit how you die, only that you do as I ask. Bring me what I require and we will both benefit - or die; but I\'ve already explained this...", + ["O"] = "Mataus the Wrathcaster at Light\'s Hope Chapel in the Eastern Plaguelands will make Plagueheart Leggings if you bring him the following: 1 Desecrated Leggings, 20 Wartorn Cloth Scraps, 4 Mooncloth and 2 Nexus Crystals.", + ["T"] = "Plagueheart Leggings", + }, + [9105] = { + ["D"] = "I make no pretenses, maggot. The darkness Plagueheart items hold could very well destroy the both of us. That is why the price is so high. If I\'m going to die, it\'s going to be as a rich man.$B$BAnd I don\'t give an ounce of gnoll spit how you die, only that you do as I ask. Bring me what I require and we will both benefit - or die; but I\'ve already explained this...", + ["O"] = "Mataus the Wrathcaster at Light\'s Hope Chapel in the Eastern Plaguelands will make a Plagueheart Circlet if you bring him the following: 1 Desecrated Circlet, 15 Wartorn Cloth Scraps, 3 Mooncloth and 3 Nexus Crystals.", + ["T"] = "Plagueheart Circlet", + }, + [9106] = { + ["D"] = "I make no pretenses, maggot. The darkness Plagueheart items hold could very well destroy the both of us. That is why the price is so high. If I\'m going to die, it\'s going to be as a rich man.$B$BAnd I don\'t give an ounce of gnoll spit how you die, only that you do as I ask. Bring me what I require and we will both benefit - or die; but I\'ve already explained this...", + ["O"] = "Mataus the Wrathcaster at Light\'s Hope Chapel in the Eastern Plaguelands will make Plagueheart Shoulderpads if you bring him the following: 1 Desecrated Shoulderpads, 12 Wartorn Cloth Scraps, 2 Mooncloth and 3 Cured Rugged Hides.", + ["T"] = "Plagueheart Shoulderpads", + }, + [9107] = { + ["D"] = "I make no pretenses, maggot. The darkness Plagueheart items hold could very well destroy the both of us. That is why the price is so high. If I\'m going to die, it\'s going to be as a rich man.$B$BAnd I don\'t give an ounce of gnoll spit how you die, only that you do as I ask. Bring me what I require and we will both benefit - or die; but I\'ve already explained this...", + ["O"] = "Mataus the Wrathcaster at Light\'s Hope Chapel in the Eastern Plaguelands will make Plagueheart Sandals if you bring him the following: 1 Desecrated Sandals, 12 Wartorn Cloth Scraps, 2 Mooncloth and 3 Cured Rugged Hides.", + ["T"] = "Plagueheart Sandals", + }, + [9108] = { + ["D"] = "I make no pretenses, maggot. The darkness Plagueheart items hold could very well destroy the both of us. That is why the price is so high. If I\'m going to die, it\'s going to be as a rich man.$B$BAnd I don\'t give an ounce of gnoll spit how you die, only that you do as I ask. Bring me what I require and we will both benefit - or die; but I\'ve already explained this...", + ["O"] = "Mataus the Wrathcaster at Light\'s Hope Chapel in the Eastern Plaguelands will make Plagueheart Gloves if you bring him the following: 1 Desecrated Gloves, 8 Wartorn Cloth Scraps and 4 Mooncloth.", + ["T"] = "Plagueheart Gloves", + }, + [9109] = { + ["D"] = "I make no pretenses, maggot. The darkness Plagueheart items hold could very well destroy the both of us. That is why the price is so high. If I\'m going to die, it\'s going to be as a rich man.$B$BAnd I don\'t give an ounce of gnoll spit how you die, only that you do as I ask. Bring me what I require and we will both benefit - or die; but I\'ve already explained this...", + ["O"] = "Mataus the Wrathcaster at Light\'s Hope Chapel in the Eastern Plaguelands will make a Plagueheart Belt if you bring him the following: 1 Desecrated Belt, 8 Wartorn Cloth Scraps, 2 Arcane Crystals and 2 Mooncloth.", + ["T"] = "Plagueheart Belt", + }, + [9110] = { + ["D"] = "I make no pretenses, maggot. The darkness Plagueheart items hold could very well destroy the both of us. That is why the price is so high. If I\'m going to die, it\'s going to be as a rich man.$B$BAnd I don\'t give an ounce of gnoll spit how you die, only that you do as I ask. Bring me what I require and we will both benefit - or die; but I\'ve already explained this...", + ["O"] = "Mataus the Wrathcaster at Light\'s Hope Chapel in the Eastern Plaguelands will make Plagueheart Bindings if you bring him the following: 1 Desecrated Bindings, 6 Wartorn Cloth Scraps, 1 Arcane Crystal and 1 Nexus Crystal.", + ["T"] = "Plagueheart Bindings", + }, + [9111] = { + ["D"] = "$B$BBlessed $g boy:girl;, have you found the vestments of the fallen? The poor souls whose last breaths were taken on the field of battle - stripped of everything including their dignity.$B$BBring me the desecrated remnants of the departed along with reagents of purification and you shall know faith.", + ["O"] = "Father Inigo Montoy at Light\'s Hope Chapel in the Eastern Plaguelands will make a Robe of Faith if you bring him the following: 1 Desecrated Robe, 25 Wartorn Cloth Scraps, 4 Mooncloth and 2 Nexus Crystals.", + ["T"] = "Robe of Faith", + }, + [9112] = { + ["D"] = "$B$BBlessed $g boy:girl;, have you found the vestments of the fallen? The poor souls whose last breaths were taken on the field of battle - stripped of everything including their dignity.$B$BBring me the desecrated remnants of the departed along with reagents of purification and you shall know faith.", + ["O"] = "Father Inigo Montoy at Light\'s Hope Chapel in the Eastern Plaguelands will make Leggings of Faith if you bring him the following: 1 Desecrated Leggings, 20 Wartorn Cloth Scraps, 4 Mooncloth and 2 Nexus Crystals.", + ["T"] = "Leggings of Faith", + }, + [9113] = { + ["D"] = "$B$BBlessed $g boy:girl;, have you found the vestments of the fallen? The poor souls whose last breaths were taken on the field of battle - stripped of everything including their dignity.$B$BBring me the desecrated remnants of the departed along with reagents of purification and you shall know faith.", + ["O"] = "Father Inigo Montoy at Light\'s Hope Chapel in the Eastern Plaguelands will make a Circlet of Faith if you bring him the following: 1 Desecrated Circlet, 15 Wartorn Cloth Scraps, 3 Mooncloth and 3 Nexus Crystals.", + ["T"] = "Circlet of Faith", + }, + [9114] = { + ["D"] = "$B$BBlessed $g boy:girl;, have you found the vestments of the fallen? The poor souls whose last breaths were taken on the field of battle - stripped of everything including their dignity.$B$BBring me the desecrated remnants of the departed along with reagents of purification and you shall know faith.", + ["O"] = "Father Inigo Montoy at Light\'s Hope Chapel in the Eastern Plaguelands will make Shoulderpads of Faith if you bring him the following: 1 Desecrated Shoulderpads, 12 Wartorn Cloth Scraps, 2 Mooncloth and 3 Cured Rugged Hides.", + ["T"] = "Shoulderpads of Faith", + }, + [9115] = { + ["D"] = "$B$BBlessed $g boy:girl;, have you found the vestments of the fallen? The poor souls whose last breaths were taken on the field of battle - stripped of everything including their dignity.$B$BBring me the desecrated remnants of the departed along with reagents of purification and you shall know faith.", + ["O"] = "Father Inigo Montoy at Light\'s Hope Chapel in the Eastern Plaguelands will make Sandals of Faith if you bring him the following: 1 Desecrated Sandals, 12 Wartorn Cloth Scraps, 2 Mooncloth and 3 Cured Rugged Hides.", + ["T"] = "Sandals of Faith", + }, + [9116] = { + ["D"] = "$B$BBlessed $g boy:girl;, have you found the vestments of the fallen? The poor souls whose last breaths were taken on the field of battle - stripped of everything including their dignity.$B$BBring me the desecrated remnants of the departed along with reagents of purification and you shall know faith.", + ["O"] = "Father Inigo Montoy at Light\'s Hope Chapel in the Eastern Plaguelands will make Gloves of Faith if you bring him the following: 1 Desecrated Gloves, 8 Wartorn Cloth Scraps and 4 Mooncloth.", + ["T"] = "Gloves of Faith", + }, + [9117] = { + ["D"] = "$B$BBlessed $g boy:girl;, have you found the vestments of the fallen? The poor souls whose last breaths were taken on the field of battle - stripped of everything including their dignity.$B$BBring me the desecrated remnants of the departed along with reagents of purification and you shall know faith.", + ["O"] = "Father Inigo Montoy at Light\'s Hope Chapel in the Eastern Plaguelands will make a Belt of Faith if you bring him the following: 1 Desecrated Belt, 8 Wartorn Cloth Scraps, 2 Arcane Crystals and 2 Mooncloth.", + ["T"] = "Belt of Faith", + }, + [9118] = { + ["D"] = "$B$BBlessed $g boy:girl;, have you found the vestments of the fallen? The poor souls whose last breaths were taken on the field of battle - stripped of everything including their dignity.$B$BBring me the desecrated remnants of the departed along with reagents of purification and you shall know faith.", + ["O"] = "Father Inigo Montoy at Light\'s Hope Chapel in the Eastern Plaguelands will make Bindings of Faith if you bring him the following: 1 Desecrated Bindings, 6 Wartorn Cloth Scraps, 1 Arcane Crystal and 1 Nexus Crystal.", + ["T"] = "Bindings of Faith", + }, + [9120] = { + ["D"] = "The phylactery is all that remains of the master of Naxxramas. Your better judgment dictates that you destroy the phylactery, preventing the lich from ever reforming. Thankfully, you seldom listen to that internal voice of reason.$B$BSomeone at Light\'s Hope will pay you hugely for this artifact. Who cares if Kel\'Thuzad regenerates to full power?", + ["O"] = "Take the Phylactery of Kel\'Thuzad to Light\'s Hope Chapel in the Eastern Plaguelands.", + ["T"] = "The Fall of Kel\'Thuzad", + }, + [9121] = { + ["D"] = "In the thick of Plaguewood lies the entrance to the dread citadel of Naxxramas. Previously, all attempts to enter had been stymied by the magical wards placed upon the rune portal. That is, until now.$B$BWe have devised a way to gain entry via arcane cloaking - an old cantrip of the Kirin Tor with a few modifications of my own. Since your dedication to the cause of the Dawn is somewhat lacking, $N, the price will be high. You may decline and choose to return when you are revered or exalted for a discount.", + ["O"] = "Archmage Angela Dosantos at Light\'s Hope Chapel in the Eastern Plaguelands wants 5 Arcane Crystals, 2 Nexus Crystals, 1 Righteous Orb and 60 gold pieces. You must also be Honored with the Argent Dawn.", + ["T"] = "The Dread Citadel - Naxxramas", + }, + [9122] = { + ["D"] = "In the thick of Plaguewood lies the entrance to the dread citadel of Naxxramas. Previously, all attempts to enter had been stymied by the magical wards placed upon the rune portal. That is, until now.$B$BWe have devised a way to gain entry via a permanent arcane cloaking of sorts - an old cantrip of the Kirin Tor with a few modifications of my own. With that said, the cloaking is costly. Since your dedication to the cause of the Dawn is admirable, we are willing to incur some of those costs.", + ["O"] = "Archmage Angela Dosantos at Light\'s Hope Chapel in the Eastern Plaguelands wants 2 Arcane Crystals, 1 Nexus Crystal and 30 gold pieces. You must also be Revered with the Argent Dawn.", + ["T"] = "The Dread Citadel - Naxxramas", + }, + [9123] = { + ["D"] = "In the thick of Plaguewood lies the entrance to the dread citadel of Naxxramas. Previously, all attempts to enter had been stymied by the magical wards placed upon the rune portal. That is, until now.$B$BWe have devised a way to gain entry via a permanent arcane cloaking of sorts - an old cantrip of the Kirin Tor with a few modifications of my own. With that said, the cloaking is costly; however, your dedication to the cause of the Dawn is unwavering! We will waive all cost associations.", + ["O"] = "Archmage Angela Dosantos at Light\'s Hope Chapel in the Eastern Plaguelands will grant you Arcane Cloaking at no cost. You must be Exalted with the Argent Dawn.", + ["T"] = "The Dread Citadel - Naxxramas", + }, + [9124] = { + ["D"] = "How would you like to earn yourself one of these shiny coins?$B$B$B$BI\'ve got a little problem that you might be able to help me with, $N. You see, I make Cryptstalker armor for those daft enough to venture into Naxxramas. While they supply me with the core material requirements for the armor, I always run out of the crypt fiend parts. Bring me back a bundle of parts and I\'ll pay you with an insignia - usable at the quartermaster.", + ["O"] = "Huntsman Leopold at Light\'s Hope Chapel in the Eastern Plaguelands wants 30 Crypt Fiend Parts.", + ["T"] = "Cryptstalker Armor Doesn\'t Make Itself...", + }, + [9125] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Crypt Fiend Parts", + }, + [9126] = { + ["D"] = "Don Julio\'s Bonescythe armor pattern requires bone fragments - a lot of bone fragments. While those crazy enough to venture into Naxxramas provide me with enough of the core materials to make the armor, I\'m always looking for more Scourge bone fragments.$B$BSo what do you think? Interested in getting your hands dirty and destroying some Scourge at the same time? It\'s a win-win situation.", + ["O"] = "Rohan the Assassin at Light\'s Hope Chapel in the Eastern Plaguelands wants 30 Bone Fragments.", + ["T"] = "Bonescythe Digs", + }, + [9127] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Bone Fragments", + }, + [9128] = { + ["D"] = "Greetings, adventurer! Are you interested in some work? I pay those under my employ with insignias. These insignias can be used at the Quartermaster to purchase items of power.$B$BAll I need you to do is bring me as many core of elements as you can carry. The more the better!$B$BYou\'ll find them on elementals of varying shapes and sizes that exist across our world.", + ["O"] = "Archmage Angela Dosantos at Light\'s Hope Chapel in the Eastern Plaguelands wants 30 Core of Elements.", + ["T"] = "The Elemental Equation", + }, + [9129] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Core of Elements", + }, + [9131] = { + ["D"] = "Have you ever seen Dreadnaught armor, $c? No, of course you haven\'t. You\'re still a $g boy:girl; - a tyke. Let me tell you, it is glorious.$B$BYou\'re probably asking yourself what any of this has to do with you, right? I\'ll tell you what, scrub; I need Dark Iron scraps and I\'m willing to pay to get my hands on as many as possible.$B$BI need the scraps to put together sets of Dreadnaught for our champions. Bring me scraps and get paid.", + ["O"] = "Korfax at Light\'s Hope Chapel in the Eastern Plaguelands wants 30 Dark Iron Scraps.", + ["T"] = "Binding the Dreadnaught", + }, + [9132] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Dark Iron Scraps", + }, + [9136] = { + ["D"] = "I make a special type of armor for the brave heroes that enter Naxxramas known as Dreamwalker. They are able to provide me with most of the materials I require but I am always looking for those able to retrieve savage fronds from the flora of our world.$B$BYou may think of this job as beneath you, but without the fronds, the armor could not be made.$B$BI am also in a unique position to pay you with an insignia of your choice as both the Dawn and the Crusade supply me with funds.", + ["O"] = "Rayne at Light\'s Hope Chapel in the Eastern Plaguelands wants 30 Savage Fronds.", + ["T"] = "Savage Flora", + }, + [9137] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Savage Fronds", + }, + [9141] = { + ["D"] = "You want a writ? What? Do you expect me to hand you a highly sought after work order just for showing up? I think not, scrub. Crafters from around the world bid for jobs here at the front lines.$B$BIf you want a work order, you\'ll have to show me that you\'re willing to bleed for the cause. Bring me a valor token and we\'ll talk.$B$BAnd there\'s only one way to get your grubby little scrub mitts on those - get to killin\'.", + ["O"] = "Dispatch Commander Metz at Light\'s Hope Chapel in the Eastern Plaguelands wants an Argent Dawn Valor Token.", + ["T"] = "They Call Me \"The Rooster\"", + }, + [9142] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Craftsman\'s Writ", + }, + [9153] = { + ["D"] = "The floating necropolises of the Scourge plague the lands of Horde and Alliance alike. Tanaris, the Blasted Lands, Winterspring and the Burning Steppes are blanketed in the shadows of the flying fortresses.$b$bOnly through our combined efforts will they be turned away.$b$bThe necropolises are supported by magical circles at various points in the invaded areas. We have determined that destroying the mindless hordes that surround these circles will destroy their defenses.", + ["O"] = "Check your map to find an area under Scourge attack. Go there and damage a necropolis by defeating the Scourge around them. Return 10 of their Necrotic Runes to Commander Thomas Helleran at Light\'s Hope Chapel in the Eastern Plaguelands.", + ["T"] = "Under the Shadow", + }, + [9154] = { + ["D"] = "The Scourge have returned in greater numbers than we have seen before. The Argent Dawn is recruiting all willing and capable men and women to defend our lands.$b$bIf we share common cause, take this document to the Keeper of the Rolls at Light\'s Hope Chapel in the Eastern Plaguelands.", + ["O"] = "Deliver the Call to Arms Announcement to the Keeper of the Rolls at Light\'s Hope Chapel in the Eastern Plaguelands.", + ["T"] = "Light\'s Hope Chapel", + }, + [9165] = { + ["D"] = "Without the help of adventurers, my caravan would have never made it! Scourge were coming out of the woodwork to try and stop us from getting here.$B$B$B$BNow we need to wait here for Field Marshal Chambers to arrive. He\'ll sign your writ of safe passage to take back to Dispatch Commander Metz at Light\'s Hope Chapel.$B$BAnd $N, watch what you say around Chambers. He\'s the \'bite off your head and spit down your wind pipe\' type of guy - except that he\'ll actually do it...", + ["O"] = "Deliver the signed Writ of Safe Passage to Dispatch Commander Metz at Light\'s Hope Chapel in the Eastern Plaguelands.", + ["T"] = "Writ of Safe Passage", + }, + [9178] = { + ["D"] = "The bearer of this writ is entitled to payment in the form of an insignia of their choice upon completion of the contracted work order.$B$BWork Order BS-091:$B$B120 Dense Weightstones.$B$BAll filled orders should be delivered to Packmaster Stonebruiser at Light\'s Hope Chapel in the Eastern Plaguelands.$B$BContract is null and void if tampered with or damaged.$B$B-Dispatch Commander Metz, The Argent Dawn", + ["O"] = "Deliver 120 Dense Weightstones and the Craftsman\'s Writ - Dense Weightstone - to Packmaster Stonebruiser at Light\'s Hope Chapel in the Eastern Plaguelands.", + ["T"] = "Craftsman\'s Writ - Dense Weightstone", + }, + [9179] = { + ["D"] = "The bearer of this writ is entitled to payment in the form of an insignia of their choice upon completion of the contracted work order.$B$BWork Order BS-428:$B$B3 Imperial Plate Chests.$B$BAll filled orders should be delivered to Packmaster Stonebruiser at Light\'s Hope Chapel in the Eastern Plaguelands.$B$BContract is null and void if tampered with or damaged.$B$B-Dispatch Commander Metz, The Argent Dawn", + ["O"] = "Deliver 3 Imperial Plate Chests and the Craftsman\'s Writ - Imperial Plate Chest - to Packmaster Stonebruiser at Light\'s Hope Chapel in the Eastern Plaguelands.", + ["T"] = "Craftsman\'s Writ - Imperial Plate Chest", + }, + [9181] = { + ["D"] = "The bearer of this writ is entitled to payment in the form of an insignia of their choice upon completion of the contracted work order.$B$BWork Order BS-697:$B$B3 Volcanic Hammers.$B$BAll filled orders should be delivered to Packmaster Stonebruiser at Light\'s Hope Chapel in the Eastern Plaguelands.$B$BContract is null and void if tampered with or damaged.$B$B-Dispatch Commander Metz, The Argent Dawn", + ["O"] = "Deliver 3 Volcanic Hammers and the Craftsman\'s Writ - Volcanic Hammer - to Packmaster Stonebruiser at Light\'s Hope Chapel in the Eastern Plaguelands.", + ["T"] = "Craftsman\'s Writ - Volcanic Hammer", + }, + [9182] = { + ["D"] = "The bearer of this writ is entitled to payment in the form of an insignia of their choice upon completion of the contracted work order.$B$BWork Order BS-6020:$B$B3 Huge Thorium Battleaxes.$B$BAll filled orders should be delivered to Packmaster Stonebruiser at Light\'s Hope Chapel in the Eastern Plaguelands.$B$BContract is null and void if tampered with or damaged.$B$B-Dispatch Commander Metz, The Argent Dawn", + ["O"] = "Deliver 3 Huge Thorium Battleaxes and the Craftsman\'s Writ - Huge Thorium Battleaxe - to Packmaster Stonebruiser at Light\'s Hope Chapel in the Eastern Plaguelands.", + ["T"] = "Craftsman\'s Writ - Huge Thorium Battleaxe", + }, + [9183] = { + ["D"] = "The bearer of this writ is entitled to payment in the form of an insignia of their choice upon completion of the contracted work order.$B$BWork Order BS-80:$B$B3 Radiant Circlets.$B$BAll filled orders should be delivered to Packmaster Stonebruiser at Light\'s Hope Chapel in the Eastern Plaguelands.$B$BContract is null and void if tampered with or damaged.$B$B-Dispatch Commander Metz, The Argent Dawn", + ["O"] = "Deliver 3 Radiant Circlets and the Craftsman\'s Writ - Radiant Circlet - to Packmaster Stonebruiser at Light\'s Hope Chapel in the Eastern Plaguelands.", + ["T"] = "Craftsman\'s Writ - Radiant Circlet", + }, + [9184] = { + ["D"] = "The bearer of this writ is entitled to payment in the form of an insignia of their choice upon completion of the contracted work order.$B$BWork Order LW-971:$B$B10 Wicked Leather Headbands.$B$BAll filled orders should be delivered to Packmaster Stonebruiser at Light\'s Hope Chapel in the Eastern Plaguelands.$B$BContract is null and void if tampered with or damaged.$B$B-Dispatch Commander Metz, The Argent Dawn", + ["O"] = "Deliver 10 Wicked Leather Headbands and the Craftsman\'s Writ - Wicked Leather Headband - to Packmaster Stonebruiser at Light\'s Hope Chapel in the Eastern Plaguelands.", + ["T"] = "Craftsman\'s Writ - Wicked Leather Headband", + }, + [9185] = { + ["D"] = "The bearer of this writ is entitled to payment in the form of an insignia of their choice upon completion of the contracted work order.$B$BWork Order LW-448:$B$B25 Rugged Armor Kits.$B$BAll filled orders should be delivered to Packmaster Stonebruiser at Light\'s Hope Chapel in the Eastern Plaguelands.$B$BContract is null and void if tampered with or damaged.$B$B-Dispatch Commander Metz, The Argent Dawn", + ["O"] = "Deliver 25 Rugged Armor Kits and the Craftsman\'s Writ - Rugged Armor Kit - to Packmaster Stonebruiser at Light\'s Hope Chapel in the Eastern Plaguelands.", + ["T"] = "Craftsman\'s Writ - Rugged Armor Kit", + }, + [9186] = { + ["D"] = "The bearer of this writ is entitled to payment in the form of an insignia of their choice upon completion of the contracted work order.$B$BWork Order LW-736:$B$B9 Wicked Leather Belts.$B$BAll filled orders should be delivered to Packmaster Stonebruiser at Light\'s Hope Chapel in the Eastern Plaguelands.$B$BContract is null and void if tampered with or damaged.$B$B-Dispatch Commander Metz, The Argent Dawn", + ["O"] = "Deliver 9 Wicked Leather Belts and the Craftsman\'s Writ - Wicked Leather Belt - to Packmaster Stonebruiser at Light\'s Hope Chapel in the Eastern Plaguelands.", + ["T"] = "Craftsman\'s Writ - Wicked Leather Belt", + }, + [9187] = { + ["D"] = "The bearer of this writ is entitled to payment in the form of an insignia of their choice upon completion of the contracted work order.$B$BWork Order LW-8485:$B$B4 Runic Leather Pants.$B$BAll filled orders should be delivered to Packmaster Stonebruiser at Light\'s Hope Chapel in the Eastern Plaguelands.$B$BContract is null and void if tampered with or damaged.$B$B-Dispatch Commander Metz, The Argent Dawn", + ["O"] = "Deliver 4 Runic Leather Pants and the Craftsman\'s Writ - Runic Leather Pants - to Packmaster Stonebruiser at Light\'s Hope Chapel in the Eastern Plaguelands.", + ["T"] = "Craftsman\'s Writ - Runic Leather Pants", + }, + [9188] = { + ["D"] = "The bearer of this writ is entitled to payment in the form of an insignia of their choice upon completion of the contracted work order.$B$BWork Order TR-95:$B$B6 Brightcloth Pants.$B$BAll filled orders should be delivered to Packmaster Stonebruiser at Light\'s Hope Chapel in the Eastern Plaguelands.$B$BContract is null and void if tampered with or damaged.$B$B-Dispatch Commander Metz, The Argent Dawn", + ["O"] = "Deliver 6 Brightcloth Pants and the Craftsman\'s Writ - Brightcloth Pants - to Packmaster Stonebruiser at Light\'s Hope Chapel in the Eastern Plaguelands.", + ["T"] = "Craftsman\'s Writ - Brightcloth Pants", + }, + [9190] = { + ["D"] = "The bearer of this writ is entitled to payment in the form of an insignia of their choice upon completion of the contracted work order.$B$BWork Order TR-635:$B$B8 Runecloth Boots.$B$BAll filled orders should be delivered to Packmaster Stonebruiser at Light\'s Hope Chapel in the Eastern Plaguelands.$B$BContract is null and void if tampered with or damaged.$B$B-Dispatch Commander Metz, The Argent Dawn", + ["O"] = "Deliver 8 Runecloth Boots and the Craftsman\'s Writ - Runecloth Boots - to Packmaster Stonebruiser at Light\'s Hope Chapel in the Eastern Plaguelands.", + ["T"] = "Craftsman\'s Writ - Runecloth Boots", + }, + [9191] = { + ["D"] = "The bearer of this writ is entitled to payment in the form of an insignia of their choice upon completion of the contracted work order.$B$BWork Order TR-9999:$B$B8 Runecloth Bags.$B$BAll filled orders should be delivered to Packmaster Stonebruiser at Light\'s Hope Chapel in the Eastern Plaguelands.$B$BContract is null and void if tampered with or damaged.$B$B-Dispatch Commander Metz, The Argent Dawn", + ["O"] = "Deliver 8 Runecloth Bags and the Craftsman\'s Writ - Runecloth Bag - to Packmaster Stonebruiser at Light\'s Hope Chapel in the Eastern Plaguelands.", + ["T"] = "Craftsman\'s Writ - Runecloth Bag", + }, + [9194] = { + ["D"] = "The bearer of this writ is entitled to payment in the form of an insignia of their choice upon completion of the contracted work order.$B$BWork Order TR-7229:$B$B8 Runecloth Robes.$B$BAll filled orders should be delivered to Packmaster Stonebruiser at Light\'s Hope Chapel in the Eastern Plaguelands.$B$BContract is null and void if tampered with or damaged.$B$B-Dispatch Commander Metz, The Argent Dawn", + ["O"] = "Deliver 8 Runecloth Robes and the Craftsman\'s Writ - Runecloth Robe - to Packmaster Stonebruiser at Light\'s Hope Chapel in the Eastern Plaguelands.", + ["T"] = "Craftsman\'s Writ - Runecloth Robe", + }, + [9195] = { + ["D"] = "The bearer of this writ is entitled to payment in the form of an insignia of their choice upon completion of the contracted work order.$B$BWork Order EN-11:$B$B20 Goblin Sapper Charges.$B$BAll filled orders should be delivered to Packmaster Stonebruiser at Light\'s Hope Chapel in the Eastern Plaguelands.$B$BContract is null and void if tampered with or damaged.$B$B-Dispatch Commander Metz, The Argent Dawn", + ["O"] = "Deliver 20 Goblin Sapper Charges and the Craftsman\'s Writ - Goblin Sapper Charge - to Packmaster Stonebruiser at Light\'s Hope Chapel in the Eastern Plaguelands.", + ["T"] = "Craftsman\'s Writ - Goblin Sapper Charge", + }, + [9196] = { + ["D"] = "The bearer of this writ is entitled to payment in the form of an insignia of their choice upon completion of the contracted work order.$B$BWork Order EN-7:$B$B20 Thorium Grenades.$B$BAll filled orders should be delivered to Packmaster Stonebruiser at Light\'s Hope Chapel in the Eastern Plaguelands.$B$BContract is null and void if tampered with or damaged.$B$B-Dispatch Commander Metz, The Argent Dawn", + ["O"] = "Deliver 20 Thorium Grenades and the Craftsman\'s Writ - Thorium Grenade - to Packmaster Stonebruiser at Light\'s Hope Chapel in the Eastern Plaguelands.", + ["T"] = "Craftsman\'s Writ - Thorium Grenade", + }, + [9197] = { + ["D"] = "The bearer of this writ is entitled to payment in the form of an insignia of their choice upon completion of the contracted work order.$B$BWork Order EN-0:$B$B4 Gnomish Battle Chickens.$B$BAll filled orders should be delivered to Packmaster Stonebruiser at Light\'s Hope Chapel in the Eastern Plaguelands.$B$BContract is null and void if tampered with or damaged.$B$B-Dispatch Commander Metz, The Argent Dawn", + ["O"] = "Deliver 4 Gnomish Battle Chickens and the Craftsman\'s Writ - Gnomish Battle Chicken - to Packmaster Stonebruiser at Light\'s Hope Chapel in the Eastern Plaguelands.", + ["T"] = "Craftsman\'s Writ - Gnomish Battle Chicken", + }, + [9198] = { + ["D"] = "The bearer of this writ is entitled to payment in the form of an insignia of their choice upon completion of the contracted work order.$B$BWork Order EN-558:$B$B14 Thorium Tubes.$B$BAll filled orders should be delivered to Packmaster Stonebruiser at Light\'s Hope Chapel in the Eastern Plaguelands.$B$BContract is null and void if tampered with or damaged.$B$B-Dispatch Commander Metz, The Argent Dawn", + ["O"] = "Deliver 14 Thorium Tubes and the Craftsman\'s Writ - Thorium Tube - to Packmaster Stonebruiser at Light\'s Hope Chapel in the Eastern Plaguelands.", + ["T"] = "Craftsman\'s Writ - Thorium Tube", + }, + [9200] = { + ["D"] = "The bearer of this writ is entitled to payment in the form of an insignia of their choice upon completion of the contracted work order.$B$BWork Order AL-473:$B$B10 Major Mana Potions.$B$BAll filled orders should be delivered to Packmaster Stonebruiser at Light\'s Hope Chapel in the Eastern Plaguelands.$B$BContract is null and void if tampered with or damaged.$B$B-Dispatch Commander Metz, The Argent Dawn", + ["O"] = "Deliver 10 Major Mana Potions and the Craftsman\'s Writ - Major Mana Potion - to Packmaster Stonebruiser at Light\'s Hope Chapel in the Eastern Plaguelands.", + ["T"] = "Craftsman\'s Writ - Major Mana Potion", + }, + [9201] = { + ["D"] = "The bearer of this writ is entitled to payment in the form of an insignia of their choice upon completion of the contracted work order.$B$BWork Order AL-1420:$B$B15 Greater Arcane Protection Potions.$B$BAll filled orders should be delivered to Packmaster Stonebruiser at Light\'s Hope Chapel in the Eastern Plaguelands.$B$BContract is null and void if tampered with or damaged.$B$B-Dispatch Commander Metz, The Argent Dawn", + ["O"] = "Deliver 15 Greater Arcane Protection Potions and the Craftsman\'s Writ - Greater Arcane Protection Potion - to Packmaster Stonebruiser at Light\'s Hope Chapel in the Eastern Plaguelands.", + ["T"] = "Craftsman\'s Writ - Greater Arcane Protection Potion", + }, + [9202] = { + ["D"] = "The bearer of this writ is entitled to payment in the form of an insignia of their choice upon completion of the contracted work order.$B$BWork Order AL-169110:$B$B20 Major Healing Potions.$B$BAll filled orders should be delivered to Packmaster Stonebruiser at Light\'s Hope Chapel in the Eastern Plaguelands.$B$BContract is null and void if tampered with or damaged.$B$B-Dispatch Commander Metz, The Argent Dawn", + ["O"] = "Deliver 20 Major Healing Potions and the Craftsman\'s Writ - Major Healing Potion - to Packmaster Stonebruiser at Light\'s Hope Chapel in the Eastern Plaguelands.", + ["T"] = "Craftsman\'s Writ - Major Healing Potion", + }, + [9203] = { + ["D"] = "The bearer of this writ is entitled to payment in the form of an insignia of their choice upon completion of the contracted work order.$B$BWork Order AL-90:$B$B1 Flask of Petrification.$B$BAll filled orders should be delivered to Packmaster Stonebruiser at Light\'s Hope Chapel in the Eastern Plaguelands.$B$BContract is null and void if tampered with or damaged.$B$B-Dispatch Commander Metz, The Argent Dawn", + ["O"] = "Deliver 1 Flask of Petrification and the Craftsman\'s Writ - Flask of Petrification - to Packmaster Stonebruiser at Light\'s Hope Chapel in the Eastern Plaguelands.", + ["T"] = "Craftsman\'s Writ - Flask of Petrification", + }, + [9204] = { + ["D"] = "The bearer of this writ is entitled to payment in the form of an insignia of their choice upon completion of the contracted work order.$B$BWork Order FS-5:$B$B40 Stonescale Eel.$B$BAll filled orders should be delivered to Packmaster Stonebruiser at Light\'s Hope Chapel in the Eastern Plaguelands.$B$BContract is null and void if tampered with or damaged.$B$B-Dispatch Commander Metz, The Argent Dawn", + ["O"] = "Deliver 40 Stonescale Eel and the Craftsman\'s Writ - Stonescale Eel - to Packmaster Stonebruiser at Light\'s Hope Chapel in the Eastern Plaguelands.", + ["T"] = "Craftsman\'s Writ - Stonescale Eel", + }, + [9205] = { + ["D"] = "The bearer of this writ is entitled to payment in the form of an insignia of their choice upon completion of the contracted work order.$B$BWork Order FS-12:$B$B30 Plated Armorfish.$B$BAll filled orders should be delivered to Packmaster Stonebruiser at Light\'s Hope Chapel in the Eastern Plaguelands.$B$BContract is null and void if tampered with or damaged.$B$B-Dispatch Commander Metz, The Argent Dawn", + ["O"] = "Deliver 30 Plated Armorfish and the Craftsman\'s Writ - Plated Armorfish - to Packmaster Stonebruiser at Light\'s Hope Chapel in the Eastern Plaguelands.", + ["T"] = "Craftsman\'s Writ - Plated Armorfish", + }, + [9206] = { + ["D"] = "The bearer of this writ is entitled to payment in the form of an insignia of their choice upon completion of the contracted work order.$B$BWork Order FS-9:$B$B30 Lightning Eel.$B$BAll filled orders should be delivered to Packmaster Stonebruiser at Light\'s Hope Chapel in the Eastern Plaguelands.$B$BContract is null and void if tampered with or damaged.$B$B-Dispatch Commander Metz, The Argent Dawn", + ["O"] = "Deliver 30 Lightning Eel and the Craftsman\'s Writ - Lightning Eel - to Packmaster Stonebruiser at Light\'s Hope Chapel in the Eastern Plaguelands.", + ["T"] = "Craftsman\'s Writ - Lightning Eel", + }, + [9208] = { + ["D"] = "Zanza can create many ancient troll enchantments with proper components! Have you heard of the Savage Guard? No, of course you haven\'t. Your mind is addled with the inferior elven magic.$B$BBring me an arcanum of elven creation so that I may destroy the aberration. Do this and the Savage Guard will be yours.", + ["O"] = "Zanza the Restless in Zul\'Gurub wants an Arcanum of Protection.", + ["T"] = "The Savage Guard - Arcanum of Protection", + }, + [9209] = { + ["D"] = "Zanza can create many ancient troll enchantments with proper components! Have you heard of the Savage Guard? No, of course you haven\'t. Your mind is addled with the inferior elven magic.$B$BBring me an arcanum of elven creation so that I may destroy the aberration. Do this and the Savage Guard will be yours.", + ["O"] = "Zanza the Restless in Zul\'Gurub wants an Arcanum of Rapidity.", + ["T"] = "The Savage Guard - Arcanum of Rapidity", + }, + [9210] = { + ["D"] = "Zanza can create many ancient troll enchantments with proper components! Have you heard of the Savage Guard? No, of course you haven\'t. Your mind is addled with the inferior elven magic.$B$BBring me an arcanum of elven creation so that I may destroy the aberration. Do this and the Savage Guard will be yours.", + ["O"] = "Zanza the Restless in Zul\'Gurub wants an Arcanum of Focus.", + ["T"] = "The Savage Guard - Arcanum of Focus", + }, + [9211] = { + ["D"] = "Ah, the Ice Guard. It is a thin sheen of protective magic that covers certain pieces of equipment. Those that do battle with creatures of frost and ice will gain increased protection from their attacks by using the Ice Guard.$B$BAs with all things the Wrathcaster creates, there is a price - a price that I will not lower, regardless of how much you whimper. Interested?", + ["O"] = "Mataus the Wrathcaster at Light\'s Hope Chapel in the Eastern Plaguelands wants 10 Insignia of the Crusade and 30 gold.", + ["T"] = "The Ice Guard", + }, + [9213] = { + ["D"] = "A creation of genius! Much like the Ice Guard, the Shadow Guard employs a thin sheen of protective magic that covers certain pieces of equipment. And like the Ice Guard, the Shadow Guard is going to cost you a good amount of money.$B$B$B$BInterested?", + ["O"] = "Mataus the Wrathcaster at Light\'s Hope Chapel in the Eastern Plaguelands wants 10 Insignia of the Crusade and 30 gold.", + ["T"] = "The Shadow Guard", + }, + [9221] = { + ["D"] = "Greetings, friend. Have you insignias of the Dawn or the Crusade that you would like to redeem for items of power?$B$BI must warn you; purchases made at a friendly reputation with the Dawn come with a hefty surcharge. I would advise that you gain a better reputation with the Dawn before moving forward with your plans.", + ["O"] = "For 30 Insignias of the Dawn and 30 Insignias of the Crusade you may choose an item from the Argent Dawn\'s treasure cache.", + ["T"] = "Superior Armaments of Battle - Friend of the Dawn", + }, + [9222] = { + ["D"] = "Greetings, friend. Have you insignias of the Dawn or the Crusade that you would like to redeem for items of great power?$B$BI must warn you; purchases made at a friendly reputation with the Dawn come with an extremely hefty surcharge. I would advise that you gain a better reputation with the Dawn before moving forward with your plans.", + ["O"] = "For 110 Insignias of the Dawn and 110 Insignias of the Crusade you may choose an item from the Argent Dawn\'s treasure cache.", + ["T"] = "Epic Armaments of Battle - Friend of the Dawn", + }, + [9223] = { + ["D"] = "Greetings, friend. Have you insignias of the Dawn or the Crusade that you would like to redeem for items of power?$B$BI must warn you; purchases made at honored reputation with the Dawn come with a fairly prohibitive surcharge. I would advise that you gain a better reputation with the Dawn before moving forward with your plans.", + ["O"] = "For 20 Insignias of the Dawn and 20 Insignias of the Crusade you may choose an item from the Argent Dawn\'s treasure cache.", + ["T"] = "Superior Armaments of Battle - Honored Amongst the Dawn", + }, + [9224] = { + ["D"] = "Greetings, friend. Have you insignias of the Dawn or the Crusade that you would like to redeem for items of great power?$B$BI must warn you; purchases made at honored reputation with the Dawn come with an extremely hefty surcharge. I would advise that you gain a better reputation with the Dawn before moving forward with your plans.", + ["O"] = "For 75 Insignias of the Dawn and 75 Insignias of the Crusade you may choose an item from the Argent Dawn\'s treasure cache.", + ["T"] = "Epic Armaments of Battle - Honored Amongst the Dawn", + }, + [9225] = { + ["D"] = "Greetings, friend. Have you insignias of the Dawn or the Crusade that you would like to redeem for items of great power?$B$BI must warn you; epic purchases made at revered reputation with the Dawn are still quite expensive. I would advise that you gain a better reputation with the Dawn before moving forward with your plans.", + ["O"] = "For 45 Insignias of the Dawn and 45 Insignias of the Crusade you may choose an item from the Argent Dawn\'s treasure cache.", + ["T"] = "Epic Armaments of Battle - Revered Amongst the Dawn", + }, + [9226] = { + ["D"] = "Greetings, friend. Have you insignias of the Dawn or the Crusade that you would like to redeem for items of power?$B$BItems offered to those revered amongst the Dawn are priced quite reasonably. I encourage you to make a purchase!", + ["O"] = "For 7 Insignias of the Dawn and 7 Insignias of the Crusade you may choose an item from the Argent Dawn\'s treasure cache.", + ["T"] = "Superior Armaments of Battle - Revered Amongst the Dawn", + }, + [9227] = { + ["D"] = "Greetings, friend. Have you insignias of the Dawn or the Crusade that you would like to redeem for items of power?$B$BItems offered to those exalted amongst the Dawn are discounted. I encourage you to make a purchase!", + ["O"] = "For 6 Insignias of the Dawn and 6 Insignias of the Crusade you may choose an item from the Argent Dawn\'s treasure cache.", + ["T"] = "Superior Armaments of Battle - Exalted Amongst the Dawn", + }, + [9228] = { + ["D"] = "Greetings, friend. Have you insignias of the Dawn or the Crusade that you would like to redeem for items of great power?$B$BThose exalted amongst the Dawn receive our greatest discounts! I encourage you to make a purchase.", + ["O"] = "For 27 Insignias of the Dawn and 27 Insignias of the Crusade you may choose an item from the Argent Dawn\'s treasure cache.", + ["T"] = "Epic Armaments of Battle - Exalted Amongst the Dawn", + }, + [9229] = { + ["D"] = "Ramaladni was a warrior of the Brotherhood - a pupil of Highlord Mograine before the Dawn even existed! When news of Mograine\'s death reached him, hatred and anger took over.$B$BUnderstand this, $N, when rage and retribution take the reins, a man ceases to be a man. The man personifies the emotions that control him instead. And so it would be that Ramaladni, the spirit of retribution, would enter Naxxramas to exact vengeance... and never return.$B$BEnter Naxxramas and find what became of Ramaladni.", + ["O"] = "Enter Naxxramas and uncover the Fate of Ramaladni.", + ["T"] = "The Fate of Ramaladni", + }, + [9230] = { + ["D"] = "Fixing this band may prove to be quite challenging, $N. You see, it was made from the very runes that form inside Scourge structures - like Naxxramas. Additional materials are also required but your main concern should be getting those frozen runes. Bring me what I need and I will restore the ring to its former glory.", + ["O"] = "Korfax at Light\'s Hope Chapel in the Eastern Plaguelands wants you to bring him 1 Frozen Rune, 1 Blue Sapphire and 1 Arcanite Bar.", + ["T"] = "Ramaladni\'s Icy Grasp", + }, + [9232] = { + ["D"] = "You fancy yourself a hero of the Dawn, eh? I\'ve seen our greatest soldiers get rolled over by Kel\'Thuzad\'s plebes! How well could someone so clueless possibly fare in Naxxramas?$B$B$B$BBah, what choice do I got? You\'re the best I can do; I may as well help you.$B$BOmarion left me with one recipe. It\'s the only song I know... I can make a few variations of these pants; you just gotta supply the materials.", + ["O"] = "Craftsman Wilhelm at Light\'s Hope Chapel in the Eastern Plaguelands wants you to bring him 2 Frozen Runes, 2 Essence of Water, 2 Blue Sapphires and 30 gold pieces.", + ["T"] = "The Only Song I Know...", + }, + [9233] = { + ["D"] = "Wilhelm,$B$BIf you are reading this, I have perished - finally. I want you to know that my dying thoughts revolved around you and your ineptitude when it comes to tradeskills. Unfortunately, the bearer of this handbook is in even worse shape than you in regards to crafting.$B$BAbout the book: These are the rest of my recipes. Make the bearer of this book whatever they request. I\'m sure you will charge a hefty fee for your services because you are, after all, a bastard.$B$BIn Disdain,$B$BOmarion", + ["O"] = "Take Omarion\'s Handbook to Craftsman Wilhelm at Light\'s Hope Chapel in the Eastern Plaguelands.", + ["T"] = "Omarion\'s Handbook", + }, + [9234] = { + ["D"] = "Thanks to you and Omarion, may he rest in peace, I am now able to create Icebane gauntlets. All you need to do is bring me the materials and pay a small crafting fee.", + ["O"] = "Craftsman Wilhelm at Light\'s Hope Chapel in the Eastern Plaguelands wants 5 Frozen Runes, 12 Thorium Bars, 2 Arcanite Bars, 2 Essences of Water and 200 gold.", + ["T"] = "Icebane Gauntlets", + }, + [9235] = { + ["D"] = "Thanks to you and Omarion (May he rest in peace), I am now able to create Icebane bracers. All you need to do is bring me the materials and pay a small crafting fee.", + ["O"] = "Craftsman Wilhelm at Light\'s Hope Chapel in the Eastern Plaguelands wants 4 Frozen Runes, 12 Thorium Bars, 2 Arcanite Bars, 2 Essence of Water and 200 gold.", + ["T"] = "Icebane Bracers", + }, + [9236] = { + ["D"] = "Thanks to you and Omarion (May he rest in peace), I am now able to create an Icebane breastplate. All you need to do is bring me the materials and pay a small crafting fee.", + ["O"] = "Craftsman Wilhelm at Light\'s Hope Chapel in the Eastern Plaguelands wants 8 Frozen Runes, 16 Thorium Bars, 2 Arcanite Bars, 4 Essence of Water and 300 gold. You will also need to be of Exalted reputation with the Argent Dawn.", + ["T"] = "Icebane Breastplate", + }, + [9237] = { + ["D"] = "Thanks to you and Omarion, may he rest in peace, I am now able to create a Glacial cloak. All you need to do is bring me the materials and pay a small crafting fee.", + ["O"] = "Craftsman Wilhelm at Light\'s Hope Chapel in the Eastern Plaguelands wants 5 Frozen Runes, 4 Bolts of Runecloth, 2 Essences of Water, 4 Ironweb Spider Silks and 200 gold. You must also be of Exalted reputation with the Argent Dawn.", + ["T"] = "Glacial Cloak", + }, + [9238] = { + ["D"] = "Thanks to you and Omarion, may he rest in peace, I am now able to create Glacial wrists. All you need to do is bring me the materials and pay a small crafting fee.", + ["O"] = "Craftsman Wilhelm at Light\'s Hope Chapel in the Eastern Plaguelands wants 4 Frozen Runes, 2 Bolts of Runecloth, 2 Essences of Water, 2 Ironweb Spider Silks and 200 gold.", + ["T"] = "Glacial Wrists", + }, + [9239] = { + ["D"] = "Thanks to you and Omarion, may he rest in peace, I am now able to create Glacial gloves. All you need to do is bring me the materials and pay a small crafting fee.", + ["O"] = "Craftsman Wilhelm at Light\'s Hope Chapel in the Eastern Plaguelands wants 5 Frozen Runes, 4 Bolts of Runecloth, 4 Essences of Water, 2 Ironweb Spider Silks and 200 gold.", + ["T"] = "Glacial Gloves", + }, + [9240] = { + ["D"] = "Thanks to you and Omarion, may he rest in peace, I am now able to create a Glacial vest. All you need to do is bring me the materials and pay a small crafting fee.", + ["O"] = "Craftsman Wilhelm at Light\'s Hope Chapel in the Eastern Plaguelands wants 8 Frozen Runes, 8 Bolts of Runecloth, 6 Essences of Water, 4 Ironweb Spider Silks and 300 gold. You must also be of Exalted reputation with the Argent Dawn.", + ["T"] = "Glacial Vest", + }, + [9241] = { + ["D"] = "Thanks to you and Omarion (May he rest in peace), I am now able to create Polar bracers. All you need to do is bring me the materials and pay a small crafting fee.", + ["O"] = "Craftsman Wilhelm at Light\'s Hope Chapel in the Eastern Plaguelands wants 4 Frozen Runes, 12 Enchanted Leather, 3 Essence of Water, 3 Cured Rugged Hides and 200 gold. ", + ["T"] = "Polar Bracers", + }, + [9242] = { + ["D"] = "Thanks to you and Omarion (May he rest in peace), I am now able to create Polar gloves. All you need to do is bring me the materials and pay a small crafting fee.", + ["O"] = "Craftsman Wilhelm at Light\'s Hope Chapel in the Eastern Plaguelands wants 5 Frozen Runes, 12 Enchanted Leather, 3 Essence of Water, 3 Cured Rugged Hides and 200 gold.", + ["T"] = "Polar Gloves", + }, + [9243] = { + ["D"] = "Thanks to you and Omarion, may he rest in peace, I am now able to create a Polar tunic. All you need to do is bring me the materials and pay a small crafting fee.", + ["O"] = "Craftsman Wilhelm at Light\'s Hope Chapel in the Eastern Plaguelands wants 8 Frozen Runes, 16 Enchanted Leathers, 5 Essences of Water, 5 Cured Rugged Hides and 300 gold. You must also be of Exalted reputation with the Argent Dawn.", + ["T"] = "Polar Tunic", + }, + [9244] = { + ["D"] = "Thanks to you and Omarion, may he rest in peace, I am now able to create Icy Scale bracers. All you need to do is bring me the materials and pay a small crafting fee.", + ["O"] = "Craftsman Wilhelm at Light\'s Hope Chapel in the Eastern Plaguelands wants 4 Frozen Runes, 16 Heavy Scorpid Scales, 5 Essences of Water, 3 Cured Rugged Hides and 200 gold.", + ["T"] = "Icy Scale Bracers", + }, + [9245] = { + ["D"] = "Thanks to you and Omarion (May he rest in peace), I am now able to create Icy Scale gauntlets. All you need to do is bring me the materials and pay a small crafting fee.", + ["O"] = "Craftsman Wilhelm at Light\'s Hope Chapel in the Eastern Plaguelands wants 5 Frozen Runes, 16 Heavy Scorpid Scale, 5 Essence of Water, 3 Cured Rugged Hides and 200 gold.", + ["T"] = "Icy Scale Gauntlets", + }, + [9246] = { + ["D"] = "Thanks to you and Omarion (May he rest in peace), I am now able to create an Icy Scale breastplate. All you need to do is bring me the materials and pay a small crafting fee.", + ["O"] = "Craftsman Wilhelm at Light\'s Hope Chapel in the Eastern Plaguelands wants 8 Frozen Runes, 24 Heavy Scorpid Scale, 7 Essence of Water, 5 Cured Rugged Hides and 300 gold. You must also be of Exalted reputation with the Argent Dawn.", + ["T"] = "Icy Scale Breastplate", + }, + [9247] = { + ["D"] = "$N,$B$BIn times past you have served the interests of the Argent Dawn, always to the best of your abilities. Now, once again, we sound the clarion call in our time of greatest need.$B$B$N, please report to the Keeper of the Rolls at Light\'s Hope Chapel in the Eastern Plaguelands if you are willing to aid us once more.", + ["O"] = "Take the Letter from the Keeper of the Rolls to him at Light\'s Hope Chapel in the Eastern Plaguelands.", + ["T"] = "The Keeper\'s Call", + }, + [9248] = { + ["D"] = "Ishnu-alah, $r. Show me proof of the demise of a Lord of the Abyssal Council and I shall reward you with an item that should aid you in your battles against the Qiraji.", + ["O"] = "Aurel Goldleaf at Cenarion Hold in Silithus wants you to bring her 1 Abyssal Scepter. You must also be Honored with the Cenarion Circle.", + ["T"] = "A Humble Offering", + }, + [9249] = { + ["D"] = "", + ["O"] = "", + ["T"] = "40 Tickets - Schematic: Steam Tonk Controller", + }, + [9250] = { + ["D"] = "With the frame formed, Atiesh is nearly whole. Only the head and base of the staff are now missing. There is also a minor issue regarding the staff being a conduit for Sargeras\'s evil.$B$BFind someone that can assist you in locating the remaining pieces and exorcising the evil from the staff.", + ["O"] = "Find someone that will help you in recovering the last two pieces of the staff and ridding it of evil.", + ["T"] = "Frame of Atiesh", + }, + [9251] = { + ["D"] = "You question why you are still alive. After all, you have in your possession an item of great evil. The answer is not clear, $N. I only do as I must.$B$BKel\'Thuzad sits atop his throne in Naxxramas, plotting... He seeks that which you hold and holds that which you seek.$B$BAs for the base of the staff; the dwarf, Brann Bronzebeard, held it when he entered Ahn\'Qiraj. He has left Ahn\'Qiraj but the base of Atiesh remains.$B$BShould you succeed in recovering the pieces, return them to me.", + ["O"] = "Anachronos at the Caverns of Time in Tanaris wants the Staff Head of Atiesh and the Base of Atiesh.", + ["T"] = "Atiesh, the Befouled Greatstaff", + }, + [9257] = { + ["D"] = "This final task will be the most difficult of all, $N. You have faced and defeated both an Old God and the Lich King\'s General, but now you must face the hand of Sargeras.$B$BTake the staff to Stratholme. It is there that you will find a piece of consecrated earth: ground where the greatest knights of Lordaeron were murdered. Place the befouled staff upon the holy ground and prepare for an entity of immense power to break from within... Defeat the demonic being that controls the staff and return to me.", + ["O"] = "Anachronos at the Caverns of Time in Tanaris wants you to take Atiesh, Greatstaff of the Guardian to Stratholme and use it on Consecrated Earth. Defeat the entity that is exorcised from the staff and return to him.", + ["T"] = "Atiesh, Greatstaff of the Guardian", + }, + [9259] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Traitor to the Bloodsail", + }, + [9260] = { + ["D"] = "The Scourge is camped upon our very doorstep; we cannot remain idle! Surely you will step up to defend Stormwind from these accursed invaders? $b $bThere are strange runic circles outside, glowing with the same energy that surrounds the undead and the Necropolis above. They have significance, I\'m certain, and I want you to find out what. Thin the numbers of those aberrations while you\'re at it; bring me proof of their death along with your results, and I will reward you. Go!", + ["O"] = "Collect three Dim Necrotic Stones from the Scourge outside Stormwind and investigate the glowing runic circles nearby their encampment.", + ["T"] = "Investigate the Scourge of Stormwind", + }, + [9261] = { + ["D"] = "The Scourge is camped upon our very doorstep; we cannot remain idle! Surely you will step up to defend Ironforge from these accursed invaders? $b $bThere are strange runic circles outside, glowing with the same energy that surrounds the undead and the Necropolis above. They have significance, I\'m certain, and I want you to find out what. Thin the numbers of those aberrations while you\'re at it; bring me proof of their death along with your results, and I will reward you. Go!", + ["O"] = "Collect three Dim Necrotic Stones from the Scourge outside Ironforge and investigate the glowing runic circles nearby their encampment.", + ["T"] = "Investigate the Scourge of Ironforge", + }, + [9262] = { + ["D"] = "The Scourge is camped upon our very doorstep; we cannot remain idle! Surely you will step up to defend Darnassus from these accursed invaders? $b $bThere are strange runic circles outside, glowing with the same energy that surrounds the undead and the Necropolis above. They have significance, I\'m certain, and I want you to find out what. Thin the numbers of those aberrations while you\'re at it; bring me proof of their death along with your results, and I will reward you. Go!", + ["O"] = "Collect three Dim Necrotic Stones from the Scourge outside Darnassus and investigate the glowing runic circles nearby their encampment.", + ["T"] = "Investigate the Scourge of Darnassus", + }, + [9263] = { + ["D"] = "The Scourge is camped upon our very doorstep; we cannot remain idle! Surely you will step up to defend Orgrimmar from these accursed invaders? $b $bThere are strange runic circles outside, glowing with the same energy that surrounds the undead and the Necropolis above. They have significance, I\'m certain, and I want you to find out what. Thin the numbers of those aberrations while you\'re at it; bring me proof of their death along with your results, and I will reward you. Go!", + ["O"] = "Collect three Dim Necrotic Stones from the Scourge outside Orgrimmar and investigate the glowing runic circles nearby their encampment.", + ["T"] = "Investigate the Scourge of Orgrimmar", + }, + [9264] = { + ["D"] = "The Scourge is camped upon our very doorstep; we cannot remain idle! Surely you will step up to defend Thunder Bluff from these accursed invaders? $b $bThere are strange runic circles outside, glowing with the same energy that surrounds the undead and the Necropolis above. They have significance, I\'m certain, and I want you to find out what. Thin the numbers of those aberrations while you\'re at it; bring me proof of their death along with your results, and I will reward you. Go!", + ["O"] = "Collect three Dim Necrotic Stones from the Scourge outside Thunder Bluff and investigate the glowing runic circles nearby their encampment.", + ["T"] = "Investigate the Scourge of Thunder Bluff", + }, + [9265] = { + ["D"] = "The Scourge is camped upon our very doorstep; we cannot remain idle! Surely you will step up to defend the Undercity from these accursed invaders? $b $bThere are strange runic circles outside, glowing with the same energy that surrounds the undead and the Necropolis above. They have significance, I\'m certain, and I want you to find out what. Thin the numbers of those aberrations while you\'re at it; bring me proof of their death along with your results, and I will reward you. Go!", + ["O"] = "Collect three Dim Necrotic Stones from the Scourge outside the Undercity and investigate the glowing runic circles nearby their encampment.", + ["T"] = "Investigate the Scourge of the Undercity", + }, + [9266] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Making Amends", + }, + [9267] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Mending Old Wounds", + }, + [9268] = { + ["D"] = "", + ["O"] = "", + ["T"] = "War at Sea", + }, + [9269] = { + ["D"] = "This final task will be the most difficult of all, $N. You have faced and defeated both an Old God and the Lich King\'s General, but now you must face the hand of Sargeras.$B$BTake the staff to Stratholme. It is there that you will find a piece of consecrated earth: ground where the greatest knights of Lordaeron were murdered. Place the befouled staff upon the holy ground and prepare for an entity of immense power to break from within... Defeat the demonic being that controls the staff and return to me.", + ["O"] = "Anachronos at the Caverns of Time in Tanaris wants you to take Atiesh, Greatstaff of the Guardian to Stratholme and use it on Consecrated Earth. Defeat the entity that is exorcised from the staff and return to him.", + ["T"] = "Atiesh, Greatstaff of the Guardian", + }, + [9270] = { + ["D"] = "This final task will be the most difficult of all, $N. You have faced and defeated both an Old God and the Lich King\'s General, but now you must face the hand of Sargeras.$B$BTake the staff to Stratholme. It is there that you will find a piece of consecrated earth: ground where the greatest knights of Lordaeron were murdered. Place the befouled staff upon the holy ground and prepare for an entity of immense power to break from within... Defeat the demonic being that controls the staff and return to me.", + ["O"] = "Anachronos at the Caverns of Time in Tanaris wants you to take Atiesh, Greatstaff of the Guardian to Stratholme and use it on Consecrated Earth. Defeat the entity that is exorcised from the staff and return to him.", + ["T"] = "Atiesh, Greatstaff of the Guardian", + }, + [9271] = { + ["D"] = "This final task will be the most difficult of all, $N. You have faced and defeated both an Old God and the Lich King\'s General, but now you must face the hand of Sargeras.$B$BTake the staff to Stratholme. It is there that you will find a piece of consecrated earth: ground where the greatest knights of Lordaeron were murdered. Place the befouled staff upon the holy ground and prepare for an entity of immense power to break from within... Defeat the demonic being that controls the staff and return to me.", + ["O"] = "Anachronos at the Caverns of Time in Tanaris wants you to take Atiesh, Greatstaff of the Guardian to Stratholme and use it on Consecrated Earth. Defeat the entity that is exorcised from the staff and return to him.", + ["T"] = "Atiesh, Greatstaff of the Guardian", + }, + [9272] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Dressing the Part", + }, + [9273] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Redeem iCoke Prize Voucher", + }, + [9292] = { + ["D"] = "On the corpse of the fallen abomination, you discover a cracked crystal, slowly pulsing with necrotic energy.", + ["O"] = "Bring the Cracked Necrotic Crystal to Lieutenant Orrin outside the gates of Stormwind.", + ["T"] = "Cracked Necrotic Crystal", + }, + [9295] = { + ["D"] = "You found this letter on one of the many Scourge minions you\'ve slain. From its appearance and smell, it has been with the undead for some time. Perhaps someone at Light\'s Hope Chapel would be interested in examining it further...", + ["O"] = "Take the Torn Letter to the Keeper of the Rolls at Light\'s Hope Chapel in the Eastern Plaguelands.", + ["T"] = "Letter from the Front", + }, + [9296] = { + ["D"] = "This stone radiates a dark energy. You should deliver it to SOMEONE.", + ["O"] = "Deliver the Dim Necrotic Stone to SOMEONE.", + ["T"] = "reuse", + }, + [9297] = { + ["D"] = "This stone radiates a dark energy. You should deliver it to SOMEONE.", + ["O"] = "Deliver the Dim Necrotic Stone to SOMEONE.", + ["T"] = "reuse", + }, + [9298] = { + ["D"] = "This stone radiates a dark energy. You should deliver it to SOMEONE.", + ["O"] = "Deliver the Dim Necrotic Stone to SOMEONE.", + ["T"] = "reuse", + }, + [9299] = { + ["D"] = "You found this letter on one of the many Scourge minions you\'ve slain. From its appearance and smell, it has been with the undead for some time. Perhaps someone at Light\'s Hope Chapel would be interested in examining it further...", + ["O"] = "Take the Careworn Note to the Keeper of the Rolls at Light\'s Hope Chapel in the Eastern Plaguelands.", + ["T"] = "Note from the Front", + }, + [9300] = { + ["D"] = "You found this letter on one of the many Scourge minions you\'ve slain. From its appearance and smell, it has been with the undead for some time. Perhaps someone at Light\'s Hope Chapel would be interested in examining it further...", + ["O"] = "Take the Ragged Page to the Keeper of the Rolls at Light\'s Hope Chapel in the Eastern Plaguelands.", + ["T"] = "Page from the Front", + }, + [9301] = { + ["D"] = "You found this letter on one of the many Scourge minions you\'ve slain. From its appearance and smell, it has been with the undead for some time. Perhaps someone at Light\'s Hope Chapel would be interested in examining it further...", + ["O"] = "Take the Bloodstained Envelope to the Keeper of the Rolls at Light\'s Hope Chapel in the Eastern Plaguelands.", + ["T"] = "Envelope from the Front", + }, + [9302] = { + ["D"] = "You found this letter on one of the many Scourge minions you\'ve slain. From its appearance and smell, it has been with the undead for some time. Perhaps someone at Light\'s Hope Chapel would be interested in examining it further...", + ["O"] = "Take the Crumpled Missive to the Keeper of the Rolls at Light\'s Hope Chapel in the Eastern Plaguelands.", + ["T"] = "Missive from the Front", + }, + [9304] = { + ["D"] = "You found this letter on one of the many Scourge minions you\'ve slain. From its appearance and smell, it has been with the undead for some time. Perhaps someone at Light\'s Hope Chapel would be interested in examining it further...", + ["O"] = "Take the Smudged Document to the Keeper of the Rolls at Light\'s Hope Chapel in the Eastern Plaguelands.", + ["T"] = "Document from the Front", + }, + [9310] = { + ["D"] = "On the corpse of the fallen wight, you find a crystal that is faintly radiating necrotic energy.", + ["O"] = "Bring the Faint Necrotic Crystal to Lieutenant Rukag in the courtyard of the Undercity.", + ["T"] = "Faint Necrotic Crystal", + }, + [9317] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Consecrated Sharpening Stones", + }, + [9318] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Blessed Wizard Oil", + }, + [9319] = { + ["D"] = "We are not the only ones who celebrate this holiday, $n. All creatures, all cultures, are touched by the flame. Even in the darkest places, the fires are being lit.$b$bIf you wish to see them for yourself, travel into the depths. Seek out the bonfires burning within Stratholme, Scholomance, among the ogres of Dire Maul, and the halls of Blackrock Spire itself; I will await your return.", + ["O"] = "Find and touch the bonfires located within Blackrock Spire, Dire Maul, Scholomance, and Stratholme, then return to the Festival Flamekeeper.", + ["T"] = "A Light in Dark Places", + }, + [9320] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Major Mana Potion", + }, + [9321] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Major Healing Potion", + }, + [9322] = { + ["D"] = "The Midsummer Fire Festival is celebrated everywhere in Azeroth, and the diverse land of Kalimdor is no exception. You look fit to travel -- perhaps a journey is in order.$b$bMidsummer cannot be truly appreciated unless you\'ve seen the blistering blue fires abroad. The celebrants have lit fires in chilly western Winterspring, northeastern Azshara, near Valor\'s Rest in the wastes of Silithus, and by the entrance to lush Un\'Goro. Return once your journey is complete.", + ["O"] = "Visit the Midsummer camps located in Azshara, Silithus, Un\'Goro Crater, and Winterspring, then return to the Festival Flamekeeper.", + ["T"] = "Wild Fires in Kalimdor", + }, + [9323] = { + ["D"] = "Our celebration of the flame is spread throughout the land, $c. Not a single place remains untouched by the heat of this holiday, and the strongest fires burn a brilliant blue. Seek them out.$b$bYou\'ll find one just north of Blackrock Spire. The others are located deep within the Eastern Plaguelands near a decrepit town, along the road to the cliffs within the mountainous Hinterlands, and on the way to the Dark Portal within the Blasted Lands.$b$b Return once your journey is done.", + ["O"] = "Visit the Fire Festival camps located in Blasted Lands, Eastern Plaguelands, the Hinterlands and Searing Gorge, then speak with the Festival Flamekeeper.", + ["T"] = "Wild Fires in the Eastern Kingdoms", + }, + [9324] = { + ["D"] = "This flame, stolen from the heart of Orgrimmar itself, floods you with warmth. This raw power is foreign to you, but the Loremaster might know more...", + ["O"] = "Return the Flame of Orgrimmar to the Festival Loremaster.", + ["T"] = "Stealing Orgrimmar\'s Flame", + }, + [9325] = { + ["D"] = "This flame, stolen from the shaman of Thunder Bluff, floods you with warmth. This raw power is foreign to you, but the Loremaster might know more...", + ["O"] = "Return the Flame of Thunder Bluff to the Festival Loremaster.", + ["T"] = "Stealing Thunder Bluff\'s Flame", + }, + [9326] = { + ["D"] = "This flame, stolen from the ruins above the Undercity, floods you with warmth. This raw power is foreign to you, but the Loremaster might know more...", + ["O"] = "Return the Flame of the Undercity to the Festival Loremaster.", + ["T"] = "Stealing the Undercity\'s Flame", + }, + [9330] = { + ["D"] = "This flame, stolen from the heart of Stormwind itself, floods you with warmth. This raw power is foreign to you, but the Talespinner might know more...", + ["O"] = "Return the Flame of Stormwind to the Festival Talespinner.", + ["T"] = "Stealing Stormwind\'s Flame", + }, + [9331] = { + ["D"] = "This flame, stolen from the heart of Ironforge itself, floods you with warmth. This raw power is foreign to you, but the Talespinner might know more...", + ["O"] = "Return the Flame of Ironforge to the Festival Talespinner.", + ["T"] = "Stealing Ironforge\'s Flame", + }, + [9332] = { + ["D"] = "This flame, stolen from the shores of Teldrassil, floods you with warmth. This raw power is foreign to you, but the Talespinner might know more...", + ["O"] = "Return the Flame of Darnassus to the Festival Talespinner.", + ["T"] = "Stealing Darnassus\'s Flame", + }, + [9333] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Argent Dawn Gloves", + }, + [9334] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Blessed Wizard Oil", + }, + [9335] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Consecrated Sharpening Stones", + }, + [9336] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Major Healing Potion", + }, + [9337] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Major Mana Potion", + }, + [9338] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Allegiance to Cenarion Circle", + }, + [9339] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Thief\'s Reward", + }, + [9341] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Tabard of the Argent Dawn", + }, + [9343] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Tabard of the Argent Dawn", + }, + [9353] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Redeem iCoke Gift Box Voucher", + }, + [9362] = { + ["D"] = "There isn\'t much time, $n! My scrying spells have revealed a powerful source of magic. I cannot leave the tower, and would ask you to kill the vile creature in possession of this artifact.$b$bThe pathetic little cretin is known as Warlord Krellian, hiding behind his guards in the Temple of Zin-Malor. Burn him to ashes and take the prismatic shell he covets so dearly.", + ["O"] = "Retrieve the Prismatic Shell for Archmage Xylem. The Archmage resides in a tower atop the cliffs of Azshara.", + ["T"] = "Warlord Krellian", + }, + [9364] = { + ["D"] = "My research has revealed a unique purpose for the prismatic shell.$b$bCarry the shell and cast your polymorph spell on the Spitelash in Azshara. If you wait a few moments, the chaotic aura of the shell will cause them to split into several smaller clones for a few moments. Kill these clones as quickly as possible, and the shell will collect their essence.$b$bWhen the shell is full, return it to me.", + ["O"] = "Polymorph the Spitelash of Azshara and kill the clones that appear several seconds later. When you have slain 50 Polymorph Clones, return to Archmage Xylem in Azshara.", + ["T"] = "Fragmented Magic", + }, + [9365] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Thief\'s Reward", + }, + [9367] = { + ["D"] = "Midsummer is upon us once again!$b$bEach year, as tradition dictates, Flamekeepers are chosen to tend the bonfires within our capitals. While fires are burning throughout Azeroth, it is imperative that ours be the hottest and brightest, to properly pay homage to the season.$b$bIn fact, I have a task for you, if you don\'t mind. I\'ve not yet heard if the fires in all capitals are properly burning. Travel there yourself and warm yourself by the fires--make sure they\'re hot!", + ["O"] = "Touch the bonfires within Stormwind, Ironforge, and Darnassus, then speak to a Festival Loremaster within the capital cities.", + ["T"] = "The Festival of Fire", + }, + [9368] = { + ["D"] = "Midsummer is upon us once again!$b$bEach year, as tradition dictates, Flamekeepers are chosen to tend the bonfires within our capitals. While fires are burning throughout Azeroth, it is imperative that ours be the hottest and brightest, to properly pay homage to the season.$b$bIn fact, I have a task for you, if you don\'t mind. I\'ve not yet heard if the fires in all capitals are properly burning. Travel there yourself and warm yourself by the fires--make sure they\'re hot!", + ["O"] = "Touch the bonfires within Orgrimmar, Thunder Bluff, and the Undercity, then speak to a Festival Talespinner within the capital cities.", + ["T"] = "The Festival of Fire", + }, + [9378] = { + ["D"] = "In the thick of Plaguewood lies the entrance to the dread citadel of Naxxramas. Previously, all attempts to enter had been stymied by the magical wards placed upon the rune portal. That is, until now.$B$BWe have devised a way to gain entry via a permanent arcane cloaking of sorts - an old cantrip of the Kirin Tor with a few modifications of my own. With that said, the cloaking is costly; however, your dedication to the cause of the Dawn is unwavering! We will waive all cost associations.", + ["O"] = "Archmage Angela Dosantos at Light\'s Hope Chapel in the Eastern Plaguelands will grant you Arcane Cloaking at no cost. You must be Exalted with the Argent Dawn.", + ["T"] = "DND FLAG The Dread Citadel - Naxxramas", + }, + [9386] = { + ["D"] = "An eager one, aren\'t you? If you\'re willing to enter the depths once more, I\'ll gladly reward you.$b$bSeek out the bonfires burning within Stratholme, Scholomance, Dire Maul, and the halls of Blackrock Spire itself; I look forward to your return, $n.", + ["O"] = "Find and touch the bonfires located within Blackrock Spire, Dire Maul, Scholomance, and Stratholme, then speak with the Festival Flamekeeper.", + ["T"] = "A Light in Dark Places", + }, + [9388] = { + ["D"] = "There are many flames burning throughout the world today, $n. The trickiest fires to tend are those that burn green; they do not stay lit long without supervision. Make certain the emerald fires still burn on Kalimdor for our Flamekeeper, eh?$b$bYou will find them near Ratchet in the Barrens, close to the Master\'s Glaive in Darkshore, in the forest of Ashenvale by the bridge near Silverwing Outpost, and near the road to Windshear Crag along the main road in Stonetalon Mountains.", + ["O"] = "Visit the bonfires within Ashenvale, the Barrens, Darkshore, and Stonetalon Mountains, then speak with the Festival Flamekeeper.", + ["T"] = "Flickering Flames in Kalimdor", + }, + [9389] = { + ["D"] = "The Midsummer Fire Festival traditionally lights up the land with a myriad of flames. Some argue that the green fires are the finest, as they are the hardest to maintain and have such a distinctive hue.$b$bMake sure they still burn in the Eastern Kingdoms for our Flamekeeper. They sit near Dun Modr in the Wetlands, close to Pyrewood Village within Silverpine Forest, on the cliffs overlooking the lighthouse in Westfall, and by the ruined tower in Hillsbrad Foothills.", + ["O"] = "Visit the bonfires within Hillsbrad Foothills, Silverpine Forest, Westfall, and the Wetlands, then speak with the Festival Flamekeeper.", + ["T"] = "Flickering Flames in the Eastern Kingdoms", + }, + [9411] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Infused Bandages", + }, + [9412] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Crystal Flake Throat Lozenge", + }, + [9413] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Crystal Flake Throat Lozenge", + }, + [9414] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Infused Bandages", + }, + [9415] = { + ["D"] = "Are you Marshal Bluewall\'s new recruits? Of course you are.$b$bWhat are you waiting for? Good soldiers are dying in the desert. Aren\'t you excited to join them?$b$bNow, get going and don\'t dry out on the way.", + ["O"] = "Speak with Marshal Bluewall at the Alliance encampment near Hive\'Zora.", + ["T"] = "Report to Marshal Bluewall", + }, + [9416] = { + ["D"] = "You must be one of General Kirika\'s new recruits. It\'s about time you showed up. Bodies wear down quick in the desert.$b$bThe dwarves have been getting reinforcements daily, and we can\'t afford to lose ground in our struggle for resources in Silithus.$b$bGet your instructions from the General. It\'s not my job to train you, just find you.", + ["O"] = "Speak with General Kirika at the Horde encampment near Hive\'Regal.", + ["T"] = "Report to General Kirika", + }, + [9419] = { + ["D"] = "We recently found out that the Horde has been scavenging the Silithus desert for resources, but paid them little mind. We thought it could not be worth it to station large numbers in this sweltering desert.$b$bHowever, it was discovered the importance of the resources, and now we are scrambling to catch up.$b$bIf I have your assistance, you must go into the desert and recover the silithyst and return it here.", + ["O"] = "Find and deliver Silithyst to the Silithyst Extractor, then speak with Marshal Bluewall at the Alliance encampment near Hive\'Zora.", + ["T"] = "Scouring the Desert", + }, + [9422] = { + ["D"] = "For some time now, we have been tapping the crystal resources of the Silithus desert. The only dangers we faced were from the creatures that made this place their home and the oppressive sand and dust and heat.$b$bBut now the Alliance seems to have caught on to what we have found here. It is now a race between us to capture the natural resources, and keep them from the other.$b$bI need every set of hands that is available. I hope I have yours.", + ["O"] = "Find and deliver Silithyst to the Silithyst Extractor then speak with General Kirika at the Horde encampment near Hive\'Regal.", + ["T"] = "Scouring the Desert", + }, + [9458] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Potion of Heightened Senses", + }, + [9459] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Anti-crit Potion", + }, + [9477] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Potion of Nature\'s Armor", + }, + [9478] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Portable Healing Font", + }, + [9479] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Glorious Standard of the Alliance", + }, + [9480] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Debuff Banner", + }, + [9481] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Light Consumable", + }, + [9482] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Nature Resist Potion", + }, + [9556] = { + ["D"] = "You\'ve no doubt been fighting long and hard among the towers, $r. We would like to give something back to you in return for your defense of these lands, but first, you must prove to us you understand the weight of the tragedies that took place here.$b$bWalk the streets of Stratholme and find a vial of the holy water. Once you have it, travel to the mage quarter of Stormwind or the Undercity... There, if you are victorious within these lands, you will find my colleague.", + ["O"] = "Collect a bottle of Stratholme Holy Water from within the city of Stratholme and deliver it to the Lordaeron Mage within the Mage Quarter of Stormwind or the Undercity when your side is victorious in the Eastern Plaguelands.", + ["T"] = "To The Victor...", + }, + [9664] = { + ["D"] = "Welcome to the Plaguelands, $n. As you know, the Forsaken and their allies hold the lands to the west of here against our best efforts. The Alliance commanders have decided that here in the east, we will establish new fortifications to tighten the noose around our enemies.$b$bTowers long abandoned since the days of Lordaeron are to be seized and rebuilt for this purpose. These lands are dangerous, and we could use your help.", + ["O"] = "Capture Crown Guard Tower, Eastwall Tower, Northpass Tower and Plaguewood Tower in the Eastern Plaguelands, then return to Emmisary Whitebeard at Light\'s Hope Chapel.", + ["T"] = "Establishing New Outposts", + }, + [9665] = { + ["D"] = "Agents of the Forsaken uncovered an Alliance plot to establish new bases here in the Eastern Plaguelands, at abandoned towers throughout the area.$b$bIt is imperative that we not allow them to establish a significant presence on our eastern borders, and so we must stave off this Alliance incursion. Our current plans are to drive them out of any towers they may have already seized, and occupy those that we have under our control against further attacks.", + ["O"] = "Capture Crown Guard Tower, Eastwall Tower, Northpass Tower and Plaguewood Tower in the Eastern Plaguelands, then return to Emmisary Gormok at Light\'s Hope Chapel.", + ["T"] = "Bolstering Our Defenses", + }, +} + +-- Source: https://raw.githubusercontent.com/shagu/pfQuest/master/db/quests.lua +RelationshipsQuestAndItemBrowserData["quests"]["data"] = { + [1] = { + ["lvl"] = 4, + ["min"] = 1, + ["race"] = 255, + ["start"] = { + ["I"] = { 6497 }, + }, + }, + [2] = { + ["end"] = { + ["U"] = { 12696 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["pre"] = { 6383 }, + ["race"] = 178, + ["start"] = { + ["I"] = { 16305, 16305 }, + }, + }, + [5] = { + ["end"] = { + ["U"] = { 272 }, + }, + ["lvl"] = 20, + ["min"] = 17, + ["pre"] = { 163 }, + ["start"] = { + ["U"] = { 288 }, + }, + }, + [6] = { + ["end"] = { + ["U"] = { 823 }, + }, + ["lvl"] = 5, + ["min"] = 2, + ["obj"] = { + ["I"] = { 182 }, + }, + ["pre"] = { 18 }, + ["start"] = { + ["U"] = { 823 }, + }, + }, + [7] = { + ["end"] = { + ["U"] = { 197 }, + }, + ["lvl"] = 2, + ["min"] = 1, + ["obj"] = { + ["U"] = { 6 }, + }, + ["pre"] = { 783 }, + ["start"] = { + ["U"] = { 197 }, + }, + }, + [8] = { + ["end"] = { + ["U"] = { 5688 }, + }, + ["lvl"] = 5, + ["min"] = 1, + ["start"] = { + ["U"] = { 6784 }, + }, + }, + [9] = { + ["end"] = { + ["U"] = { 233 }, + }, + ["lvl"] = 15, + ["min"] = 8, + ["obj"] = { + ["U"] = { 114 }, + }, + ["start"] = { + ["U"] = { 233 }, + }, + }, + [10] = { + ["end"] = { + ["U"] = { 7724 }, + }, + ["lvl"] = 48, + ["min"] = 39, + ["obj"] = { + ["I"] = { 8593 }, + }, + ["pre"] = { 82 }, + ["start"] = { + ["U"] = { 7724 }, + }, + }, + [11] = { + ["end"] = { + ["U"] = { 963 }, + }, + ["lvl"] = 10, + ["min"] = 6, + ["obj"] = { + ["I"] = { 782 }, + }, + ["pre"] = { 239 }, + ["start"] = { + ["U"] = { 963 }, + }, + }, + [12] = { + ["end"] = { + ["U"] = { 234 }, + }, + ["lvl"] = 12, + ["min"] = 9, + ["obj"] = { + ["U"] = { 95, 504 }, + }, + ["start"] = { + ["U"] = { 234 }, + }, + }, + [13] = { + ["end"] = { + ["U"] = { 234 }, + }, + ["lvl"] = 14, + ["min"] = 9, + ["obj"] = { + ["U"] = { 589, 590 }, + }, + ["pre"] = { 12 }, + ["start"] = { + ["U"] = { 234 }, + }, + }, + [14] = { + ["end"] = { + ["U"] = { 234 }, + }, + ["lvl"] = 17, + ["min"] = 9, + ["obj"] = { + ["U"] = { 121, 122, 449 }, + }, + ["pre"] = { 13 }, + ["start"] = { + ["U"] = { 234 }, + }, + }, + [15] = { + ["end"] = { + ["U"] = { 197 }, + }, + ["lvl"] = 3, + ["min"] = 1, + ["obj"] = { + ["U"] = { 257 }, + }, + ["pre"] = { 7 }, + ["start"] = { + ["U"] = { 197 }, + }, + }, + [16] = { + ["end"] = { + ["U"] = { 255 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["obj"] = { + ["I"] = { 159 }, + }, + ["start"] = { + ["U"] = { 255 }, + }, + }, + [17] = { + ["end"] = { + ["U"] = { 1470 }, + }, + ["lvl"] = 42, + ["min"] = 38, + ["obj"] = { + ["I"] = { 8047 }, + }, + ["pre"] = { 2500 }, + ["start"] = { + ["U"] = { 1470 }, + }, + }, + [18] = { + ["end"] = { + ["U"] = { 823 }, + }, + ["lvl"] = 4, + ["min"] = 2, + ["obj"] = { + ["I"] = { 752 }, + }, + ["pre"] = { 783 }, + ["start"] = { + ["U"] = { 823 }, + }, + }, + [19] = { + ["end"] = { + ["U"] = { 382 }, + }, + ["lvl"] = 25, + ["min"] = 18, + ["obj"] = { + ["I"] = { 1260 }, + }, + ["pre"] = { 20 }, + ["start"] = { + ["U"] = { 382 }, + }, + }, + [20] = { + ["end"] = { + ["U"] = { 382 }, + }, + ["lvl"] = 21, + ["min"] = 18, + ["obj"] = { + ["I"] = { 3014 }, + }, + ["start"] = { + ["U"] = { 382 }, + }, + }, + [21] = { + ["end"] = { + ["U"] = { 197 }, + }, + ["lvl"] = 5, + ["min"] = 1, + ["obj"] = { + ["U"] = { 80 }, + }, + ["pre"] = { 15 }, + ["start"] = { + ["U"] = { 197 }, + }, + }, + [22] = { + ["end"] = { + ["U"] = { 235 }, + }, + ["lvl"] = 12, + ["min"] = 9, + ["obj"] = { + ["I"] = { 723 }, + }, + ["start"] = { + ["U"] = { 235 }, + }, + }, + [23] = { + ["end"] = { + ["U"] = { 12696 }, + }, + ["lvl"] = 24, + ["min"] = 20, + ["pre"] = { 6383 }, + ["race"] = 178, + ["start"] = { + ["I"] = { 16303, 16303 }, + }, + }, + [24] = { + ["end"] = { + ["U"] = { 12696 }, + }, + ["lvl"] = 27, + ["min"] = 20, + ["pre"] = { 6383 }, + ["race"] = 178, + ["start"] = { + ["I"] = { 16304, 16304 }, + }, + }, + [25] = { + ["end"] = { + ["U"] = { 12737 }, + }, + ["lvl"] = 25, + ["min"] = 23, + ["obj"] = { + ["A"] = { 2926 }, + ["U"] = { 3917 }, + }, + ["start"] = { + ["U"] = { 12737 }, + }, + }, + [26] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 11802 }, + }, + ["lvl"] = 16, + ["min"] = 16, + ["race"] = 8, + ["start"] = { + ["U"] = { 4217 }, + }, + }, + [27] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 11802 }, + }, + ["lvl"] = 16, + ["min"] = 16, + ["race"] = 32, + ["start"] = { + ["U"] = { 3033 }, + }, + }, + [28] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 11799 }, + }, + ["lvl"] = 16, + ["min"] = 16, + ["obj"] = { + ["I"] = { 15877 }, + ["IR"] = { 15877 }, + ["O"] = { 177788 }, + }, + ["pre"] = { 27 }, + ["race"] = 32, + ["start"] = { + ["U"] = { 11802 }, + }, + }, + [29] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 11799 }, + }, + ["lvl"] = 16, + ["min"] = 16, + ["obj"] = { + ["I"] = { 15877 }, + ["IR"] = { 15877 }, + ["O"] = { 177788 }, + }, + ["pre"] = { 26 }, + ["race"] = 8, + ["start"] = { + ["U"] = { 11802 }, + }, + }, + [30] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 11802 }, + }, + ["lvl"] = 16, + ["min"] = 16, + ["obj"] = { + ["I"] = { 15882, 15883, 15885 }, + ["IR"] = { 15883 }, + }, + ["pre"] = { 28 }, + ["start"] = { + ["U"] = { 11799 }, + }, + }, + [31] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 3033 }, + }, + ["lvl"] = 16, + ["min"] = 16, + ["pre"] = { 30 }, + ["race"] = 32, + ["start"] = { + ["U"] = { 11802 }, + }, + }, + [32] = { + ["end"] = { + ["U"] = { 7010 }, + }, + ["lvl"] = 48, + ["min"] = 39, + ["pre"] = { 113 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 7724 }, + }, + }, + [33] = { + ["end"] = { + ["U"] = { 196 }, + }, + ["lvl"] = 2, + ["min"] = 1, + ["obj"] = { + ["I"] = { 750 }, + }, + ["pre"] = { 5261 }, + ["start"] = { + ["U"] = { 196 }, + }, + }, + [34] = { + ["end"] = { + ["U"] = { 342 }, + }, + ["lvl"] = 24, + ["min"] = 18, + ["obj"] = { + ["I"] = { 3631 }, + }, + ["start"] = { + ["U"] = { 342 }, + }, + }, + [35] = { + ["end"] = { + ["U"] = { 261 }, + }, + ["lvl"] = 10, + ["min"] = 7, + ["pre"] = { 40 }, + ["start"] = { + ["U"] = { 240 }, + }, + }, + [36] = { + ["end"] = { + ["U"] = { 235 }, + }, + ["lvl"] = 10, + ["min"] = 9, + ["start"] = { + ["U"] = { 238 }, + }, + }, + [37] = { + ["end"] = { + ["O"] = { 55 }, + }, + ["lvl"] = 10, + ["min"] = 7, + ["pre"] = { 35 }, + ["start"] = { + ["U"] = { 261 }, + }, + }, + [38] = { + ["end"] = { + ["U"] = { 235 }, + }, + ["lvl"] = 13, + ["min"] = 9, + ["obj"] = { + ["I"] = { 729, 730, 731, 732 }, + }, + ["pre"] = { 36 }, + ["start"] = { + ["U"] = { 235 }, + }, + }, + [39] = { + ["end"] = { + ["U"] = { 240 }, + }, + ["lvl"] = 10, + ["min"] = 7, + ["pre"] = { 71 }, + ["start"] = { + ["U"] = { 261 }, + }, + }, + [40] = { + ["end"] = { + ["U"] = { 240 }, + }, + ["lvl"] = 10, + ["min"] = 7, + ["start"] = { + ["U"] = { 241 }, + }, + }, + [45] = { + ["end"] = { + ["O"] = { 56 }, + }, + ["lvl"] = 10, + ["min"] = 7, + ["pre"] = { 37 }, + ["start"] = { + ["O"] = { 55 }, + }, + }, + [46] = { + ["end"] = { + ["U"] = { 261 }, + }, + ["lvl"] = 10, + ["min"] = 7, + ["obj"] = { + ["I"] = { 780 }, + }, + ["start"] = { + ["U"] = { 261 }, + }, + }, + [47] = { + ["end"] = { + ["U"] = { 241 }, + }, + ["lvl"] = 7, + ["min"] = 4, + ["obj"] = { + ["I"] = { 773 }, + }, + ["start"] = { + ["U"] = { 241 }, + }, + }, + [48] = { + ["end"] = { + ["U"] = { 239 }, + }, + ["lvl"] = 44, + ["min"] = 40, + ["obj"] = { + ["I"] = { 737 }, + }, + ["start"] = { + ["U"] = { 239 }, + }, + }, + [49] = { + ["end"] = { + ["U"] = { 239 }, + }, + ["lvl"] = 44, + ["min"] = 40, + ["obj"] = { + ["I"] = { 738, 739, 740 }, + }, + ["pre"] = { 48 }, + ["start"] = { + ["U"] = { 239 }, + }, + }, + [50] = { + ["end"] = { + ["U"] = { 239 }, + }, + ["lvl"] = 44, + ["min"] = 40, + ["obj"] = { + ["I"] = { 6037 }, + }, + ["pre"] = { 49 }, + ["start"] = { + ["U"] = { 239 }, + }, + }, + [51] = { + ["end"] = { + ["U"] = { 239 }, + }, + ["lvl"] = 44, + ["min"] = 40, + ["obj"] = { + ["I"] = { 742 }, + }, + ["pre"] = { 50 }, + ["start"] = { + ["U"] = { 239 }, + }, + }, + [52] = { + ["end"] = { + ["U"] = { 261 }, + }, + ["lvl"] = 10, + ["min"] = 7, + ["obj"] = { + ["U"] = { 118, 822 }, + }, + ["start"] = { + ["U"] = { 261 }, + }, + }, + [53] = { + ["end"] = { + ["U"] = { 239 }, + }, + ["lvl"] = 44, + ["min"] = 40, + ["obj"] = { + ["I"] = { 743 }, + }, + ["pre"] = { 51 }, + ["start"] = { + ["U"] = { 239 }, + }, + }, + [54] = { + ["end"] = { + ["U"] = { 240 }, + }, + ["lvl"] = 5, + ["min"] = 1, + ["pre"] = { 21 }, + ["start"] = { + ["U"] = { 197 }, + }, + }, + [55] = { + ["end"] = { + ["U"] = { 311 }, + }, + ["lvl"] = 32, + ["min"] = 20, + ["obj"] = { + ["IR"] = { 7297 }, + ["U"] = { 1200 }, + }, + ["pre"] = { 325 }, + ["start"] = { + ["U"] = { 311 }, + }, + }, + [56] = { + ["end"] = { + ["U"] = { 264 }, + }, + ["lvl"] = 24, + ["min"] = 18, + ["obj"] = { + ["U"] = { 48, 203 }, + }, + ["start"] = { + ["U"] = { 264 }, + }, + }, + [57] = { + ["end"] = { + ["U"] = { 264 }, + }, + ["lvl"] = 26, + ["min"] = 18, + ["obj"] = { + ["U"] = { 202, 531 }, + }, + ["pre"] = { 56 }, + ["start"] = { + ["U"] = { 264 }, + }, + }, + [58] = { + ["end"] = { + ["U"] = { 264 }, + }, + ["lvl"] = 30, + ["min"] = 18, + ["obj"] = { + ["U"] = { 604 }, + }, + ["pre"] = { 57 }, + ["start"] = { + ["U"] = { 264 }, + }, + }, + [59] = { + ["end"] = { + ["U"] = { 278 }, + }, + ["lvl"] = 10, + ["min"] = 7, + ["pre"] = { 39 }, + ["start"] = { + ["U"] = { 240 }, + }, + }, + [60] = { + ["end"] = { + ["U"] = { 253 }, + }, + ["lvl"] = 7, + ["min"] = 3, + ["obj"] = { + ["I"] = { 772 }, + }, + ["start"] = { + ["U"] = { 253 }, + }, + }, + [61] = { + ["end"] = { + ["U"] = { 279 }, + }, + ["lvl"] = 7, + ["min"] = 3, + ["pre"] = { 60 }, + ["start"] = { + ["U"] = { 253 }, + }, + }, + [62] = { + ["end"] = { + ["U"] = { 240 }, + }, + ["lvl"] = 7, + ["min"] = 4, + ["obj"] = { + ["A"] = { 88, 197 }, + }, + ["start"] = { + ["U"] = { 240 }, + }, + }, + [63] = { + ["class"] = 64, + ["end"] = { + ["O"] = { 113791 }, + }, + ["lvl"] = 23, + ["min"] = 20, + ["obj"] = { + ["I"] = { 7812 }, + }, + ["pre"] = { 220 }, + ["start"] = { + ["U"] = { 5901 }, + }, + }, + [64] = { + ["end"] = { + ["U"] = { 237 }, + }, + ["lvl"] = 12, + ["min"] = 9, + ["obj"] = { + ["I"] = { 841 }, + }, + ["start"] = { + ["U"] = { 237 }, + }, + }, + [65] = { + ["end"] = { + ["U"] = { 266 }, + }, + ["lvl"] = 18, + ["min"] = 14, + ["start"] = { + ["U"] = { 234 }, + }, + }, + [66] = { + ["end"] = { + ["U"] = { 267 }, + }, + ["lvl"] = 28, + ["min"] = 22, + ["start"] = { + ["U"] = { 265 }, + }, + }, + [67] = { + ["end"] = { + ["O"] = { 3643 }, + }, + ["lvl"] = 28, + ["min"] = 22, + ["pre"] = { 66 }, + ["start"] = { + ["U"] = { 267 }, + }, + }, + [68] = { + ["end"] = { + ["U"] = { 267 }, + }, + ["lvl"] = 28, + ["min"] = 22, + ["pre"] = { 67 }, + ["start"] = { + ["O"] = { 3643 }, + }, + }, + [69] = { + ["end"] = { + ["U"] = { 295 }, + }, + ["lvl"] = 28, + ["min"] = 22, + ["pre"] = { 68 }, + ["start"] = { + ["U"] = { 267 }, + }, + }, + [70] = { + ["end"] = { + ["U"] = { 297 }, + }, + ["lvl"] = 28, + ["min"] = 22, + ["obj"] = { + ["I"] = { 910 }, + }, + ["pre"] = { 69 }, + ["start"] = { + ["U"] = { 295 }, + }, + }, + [71] = { + ["end"] = { + ["U"] = { 261 }, + }, + ["lvl"] = 10, + ["min"] = 7, + ["pre"] = { 45 }, + ["start"] = { + ["O"] = { 56 }, + }, + }, + [72] = { + ["end"] = { + ["O"] = { 1561 }, + }, + ["lvl"] = 28, + ["min"] = 22, + ["pre"] = { 70 }, + ["start"] = { + ["U"] = { 297 }, + }, + }, + [73] = { + ["lvl"] = 1, + ["min"] = 1, + }, + [74] = { + ["end"] = { + ["U"] = { 294 }, + }, + ["lvl"] = 28, + ["min"] = 22, + ["pre"] = { 72 }, + ["start"] = { + ["O"] = { 1561 }, + }, + }, + [75] = { + ["end"] = { + ["U"] = { 294 }, + }, + ["lvl"] = 28, + ["min"] = 22, + ["obj"] = { + ["I"] = { 921 }, + }, + ["pre"] = { 74 }, + ["start"] = { + ["U"] = { 294 }, + }, + }, + [76] = { + ["end"] = { + ["U"] = { 240 }, + }, + ["lvl"] = 10, + ["min"] = 4, + ["obj"] = { + ["A"] = { 87, 342 }, + }, + ["pre"] = { 62 }, + ["start"] = { + ["U"] = { 240 }, + }, + }, + [77] = { + ["end"] = { + ["U"] = { 7801 }, + }, + ["lvl"] = 48, + ["min"] = 42, + ["obj"] = { + ["I"] = { 8684 }, + }, + ["pre"] = { 650 }, + ["start"] = { + ["U"] = { 7801 }, + }, + }, + [78] = { + ["end"] = { + ["U"] = { 273 }, + }, + ["lvl"] = 28, + ["min"] = 22, + ["pre"] = { 75 }, + ["start"] = { + ["U"] = { 294 }, + }, + }, + [79] = { + ["end"] = { + ["U"] = { 264 }, + }, + ["lvl"] = 28, + ["min"] = 22, + ["pre"] = { 78 }, + ["start"] = { + ["U"] = { 273 }, + }, + }, + [80] = { + ["end"] = { + ["U"] = { 267 }, + }, + ["lvl"] = 28, + ["min"] = 22, + ["pre"] = { 79 }, + ["start"] = { + ["U"] = { 264 }, + }, + }, + [81] = { + ["end"] = { + ["U"] = { 6986 }, + }, + ["lvl"] = 48, + ["min"] = 42, + ["pre"] = { 77 }, + ["start"] = { + ["U"] = { 7801 }, + }, + }, + [82] = { + ["end"] = { + ["U"] = { 5594 }, + }, + ["lvl"] = 47, + ["min"] = 39, + ["obj"] = { + ["I"] = { 8587 }, + }, + ["pre"] = { 992 }, + ["start"] = { + ["U"] = { 7724 }, + }, + }, + [83] = { + ["end"] = { + ["U"] = { 278 }, + }, + ["lvl"] = 9, + ["min"] = 4, + ["obj"] = { + ["I"] = { 1019 }, + }, + ["start"] = { + ["U"] = { 278 }, + }, + }, + [84] = { + ["end"] = { + ["U"] = { 247 }, + }, + ["lvl"] = 6, + ["min"] = 5, + ["pre"] = { 86 }, + ["start"] = { + ["U"] = { 246 }, + }, + }, + [85] = { + ["end"] = { + ["U"] = { 247 }, + }, + ["lvl"] = 6, + ["min"] = 5, + ["start"] = { + ["U"] = { 246 }, + }, + }, + [86] = { + ["end"] = { + ["U"] = { 246 }, + }, + ["lvl"] = 6, + ["min"] = 5, + ["obj"] = { + ["I"] = { 769 }, + }, + ["pre"] = { 85 }, + ["start"] = { + ["U"] = { 247 }, + }, + }, + [87] = { + ["end"] = { + ["U"] = { 246 }, + }, + ["lvl"] = 8, + ["min"] = 5, + ["obj"] = { + ["I"] = { 981 }, + }, + ["pre"] = { 84 }, + ["start"] = { + ["U"] = { 247 }, + }, + }, + [88] = { + ["end"] = { + ["U"] = { 244 }, + }, + ["lvl"] = 9, + ["min"] = 6, + ["obj"] = { + ["I"] = { 1006 }, + }, + ["start"] = { + ["U"] = { 244 }, + }, + }, + [89] = { + ["end"] = { + ["U"] = { 341 }, + }, + ["lvl"] = 20, + ["min"] = 15, + ["obj"] = { + ["I"] = { 1013, 2856 }, + }, + ["pre"] = { 125 }, + ["start"] = { + ["U"] = { 341 }, + }, + }, + [90] = { + ["end"] = { + ["U"] = { 272 }, + }, + ["lvl"] = 25, + ["min"] = 18, + ["obj"] = { + ["I"] = { 1015, 2665 }, + }, + ["skill"] = 185, + ["start"] = { + ["U"] = { 272 }, + }, + }, + [91] = { + ["end"] = { + ["U"] = { 900 }, + }, + ["lvl"] = 23, + ["min"] = 17, + ["obj"] = { + ["I"] = { 1075 }, + }, + ["start"] = { + ["U"] = { 900 }, + }, + }, + [92] = { + ["end"] = { + ["U"] = { 343 }, + }, + ["lvl"] = 18, + ["min"] = 15, + ["obj"] = { + ["I"] = { 1080, 1081, 2296 }, + }, + ["start"] = { + ["U"] = { 343 }, + }, + }, + [93] = { + ["end"] = { + ["U"] = { 272 }, + }, + ["lvl"] = 20, + ["min"] = 17, + ["obj"] = { + ["I"] = { 2251 }, + }, + ["pre"] = { 5 }, + ["start"] = { + ["U"] = { 272 }, + }, + }, + [94] = { + ["end"] = { + ["O"] = { 31 }, + }, + ["lvl"] = 21, + ["min"] = 20, + ["start"] = { + ["U"] = { 313 }, + }, + }, + [95] = { + ["end"] = { + ["O"] = { 59 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["pre"] = { 164 }, + ["start"] = { + ["U"] = { 311 }, + }, + }, + [96] = { + ["class"] = 64, + ["close"] = { 96 }, + ["end"] = { + ["U"] = { 5901 }, + }, + ["lvl"] = 23, + ["min"] = 20, + ["pre"] = { 100 }, + ["start"] = { + ["U"] = { 5895 }, + }, + }, + [97] = { + ["end"] = { + ["U"] = { 264 }, + }, + ["lvl"] = 28, + ["min"] = 22, + ["pre"] = { 80 }, + ["start"] = { + ["U"] = { 267 }, + }, + }, + [98] = { + ["end"] = { + ["U"] = { 265 }, + }, + ["lvl"] = 35, + ["min"] = 22, + ["obj"] = { + ["I"] = { 3629 }, + }, + ["pre"] = { 97 }, + ["start"] = { + ["U"] = { 264 }, + }, + }, + [99] = { + ["end"] = { + ["U"] = { 1938 }, + }, + ["lvl"] = 15, + ["min"] = 9, + ["obj"] = { + ["I"] = { 3218 }, + }, + ["pre"] = { 424 }, + ["start"] = { + ["U"] = { 1938 }, + }, + }, + [100] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 5895 }, + }, + ["lvl"] = 23, + ["min"] = 20, + ["pre"] = { 63 }, + ["start"] = { + ["O"] = { 113791 }, + }, + }, + [101] = { + ["end"] = { + ["U"] = { 265 }, + }, + ["lvl"] = 25, + ["min"] = 18, + ["obj"] = { + ["I"] = { 1129, 1130, 2378 }, + }, + ["start"] = { + ["U"] = { 265 }, + }, + }, + [102] = { + ["end"] = { + ["U"] = { 821 }, + }, + ["lvl"] = 14, + ["min"] = 8, + ["obj"] = { + ["I"] = { 725 }, + }, + ["start"] = { + ["U"] = { 821 }, + }, + }, + [103] = { + ["end"] = { + ["U"] = { 392 }, + }, + ["lvl"] = 16, + ["min"] = 10, + ["obj"] = { + ["I"] = { 814 }, + }, + ["start"] = { + ["U"] = { 392 }, + }, + }, + [104] = { + ["end"] = { + ["U"] = { 392 }, + }, + ["lvl"] = 20, + ["min"] = 15, + ["obj"] = { + ["I"] = { 3636 }, + }, + ["start"] = { + ["U"] = { 392 }, + }, + }, + [105] = { + ["end"] = { + ["U"] = { 10837 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 17114 }, + }, + ["pre"] = { 5098 }, + ["start"] = { + ["U"] = { 10837 }, + }, + }, + [106] = { + ["end"] = { + ["U"] = { 252 }, + }, + ["lvl"] = 6, + ["min"] = 5, + ["start"] = { + ["U"] = { 251 }, + }, + }, + [107] = { + ["end"] = { + ["U"] = { 253 }, + }, + ["lvl"] = 6, + ["min"] = 5, + ["pre"] = { 111 }, + ["start"] = { + ["U"] = { 248 }, + }, + }, + [108] = { + ["lvl"] = 1, + ["min"] = 1, + }, + [109] = { + ["end"] = { + ["U"] = { 234 }, + }, + ["lvl"] = 10, + ["min"] = 9, + ["start"] = { + ["U"] = { 261, 233, 237, 240, 294, 963 }, + }, + }, + [110] = { + ["end"] = { + ["U"] = { 5594 }, + }, + ["lvl"] = 48, + ["min"] = 39, + ["pre"] = { 10 }, + ["start"] = { + ["U"] = { 7724 }, + }, + }, + [111] = { + ["end"] = { + ["U"] = { 248 }, + }, + ["lvl"] = 6, + ["min"] = 5, + ["pre"] = { 106 }, + ["start"] = { + ["U"] = { 252 }, + }, + }, + [112] = { + ["end"] = { + ["U"] = { 253 }, + }, + ["lvl"] = 7, + ["min"] = 5, + ["obj"] = { + ["I"] = { 1256 }, + }, + ["pre"] = { 107 }, + ["start"] = { + ["U"] = { 253 }, + }, + }, + [113] = { + ["end"] = { + ["U"] = { 7724 }, + }, + ["lvl"] = 48, + ["min"] = 39, + ["pre"] = { 110 }, + ["start"] = { + ["U"] = { 5594 }, + }, + }, + [114] = { + ["end"] = { + ["U"] = { 251 }, + }, + ["lvl"] = 7, + ["min"] = 5, + ["pre"] = { 112 }, + ["start"] = { + ["U"] = { 253 }, + }, + }, + [115] = { + ["end"] = { + ["U"] = { 382 }, + }, + ["lvl"] = 23, + ["min"] = 18, + ["obj"] = { + ["I"] = { 1261 }, + }, + ["pre"] = { 20 }, + ["start"] = { + ["U"] = { 382 }, + }, + }, + [116] = { + ["end"] = { + ["U"] = { 346 }, + }, + ["lvl"] = 15, + ["min"] = 12, + ["obj"] = { + ["I"] = { 1262, 1939, 1941, 1942 }, + }, + ["start"] = { + ["U"] = { 346 }, + }, + }, + [117] = { + ["end"] = { + ["U"] = { 239 }, + }, + ["lvl"] = 15, + ["obj"] = { + ["I"] = { 1274 }, + }, + ["start"] = { + ["U"] = { 239 }, + }, + }, + [118] = { + ["end"] = { + ["U"] = { 514 }, + }, + ["lvl"] = 18, + ["min"] = 14, + ["start"] = { + ["U"] = { 415 }, + }, + }, + [119] = { + ["end"] = { + ["U"] = { 415 }, + }, + ["lvl"] = 18, + ["min"] = 13, + ["pre"] = { 118 }, + ["start"] = { + ["U"] = { 514 }, + }, + }, + [120] = { + ["end"] = { + ["U"] = { 466 }, + }, + ["lvl"] = 14, + ["min"] = 14, + ["start"] = { + ["U"] = { 344 }, + }, + }, + [121] = { + ["end"] = { + ["U"] = { 344 }, + }, + ["lvl"] = 14, + ["min"] = 14, + ["pre"] = { 120 }, + ["start"] = { + ["U"] = { 466 }, + }, + }, + [122] = { + ["end"] = { + ["U"] = { 415 }, + }, + ["lvl"] = 18, + ["min"] = 14, + ["obj"] = { + ["I"] = { 1221 }, + }, + ["pre"] = { 118 }, + ["start"] = { + ["U"] = { 415 }, + }, + }, + [123] = { + ["end"] = { + ["U"] = { 240 }, + }, + ["lvl"] = 10, + ["min"] = 7, + ["race"] = 77, + ["start"] = { + ["I"] = { 1307 }, + }, + }, + [124] = { + ["end"] = { + ["U"] = { 415 }, + }, + ["lvl"] = 20, + ["min"] = 15, + ["obj"] = { + ["U"] = { 426, 430 }, + }, + ["pre"] = { 118 }, + ["start"] = { + ["U"] = { 415 }, + }, + }, + [125] = { + ["end"] = { + ["U"] = { 341 }, + }, + ["lvl"] = 16, + ["min"] = 15, + ["obj"] = { + ["I"] = { 1309 }, + }, + ["start"] = { + ["U"] = { 341 }, + }, + }, + [126] = { + ["end"] = { + ["U"] = { 415 }, + }, + ["lvl"] = 25, + ["min"] = 15, + ["obj"] = { + ["I"] = { 3614 }, + }, + ["pre"] = { 124 }, + ["start"] = { + ["U"] = { 415 }, + }, + }, + [127] = { + ["end"] = { + ["U"] = { 381 }, + }, + ["lvl"] = 21, + ["min"] = 16, + ["obj"] = { + ["I"] = { 1467 }, + }, + ["start"] = { + ["U"] = { 381 }, + }, + }, + [128] = { + ["end"] = { + ["U"] = { 903 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["obj"] = { + ["U"] = { 435 }, + }, + ["start"] = { + ["U"] = { 903 }, + }, + }, + [129] = { + ["end"] = { + ["U"] = { 464 }, + }, + ["lvl"] = 15, + ["min"] = 12, + ["start"] = { + ["U"] = { 379 }, + }, + }, + [130] = { + ["end"] = { + ["U"] = { 342 }, + }, + ["lvl"] = 15, + ["min"] = 12, + ["pre"] = { 129 }, + ["start"] = { + ["U"] = { 464 }, + }, + }, + [131] = { + ["end"] = { + ["U"] = { 379 }, + }, + ["lvl"] = 15, + ["min"] = 12, + ["pre"] = { 130 }, + ["start"] = { + ["U"] = { 342 }, + }, + }, + [132] = { + ["end"] = { + ["U"] = { 234 }, + }, + ["lvl"] = 18, + ["min"] = 14, + ["pre"] = { 65 }, + ["start"] = { + ["U"] = { 266 }, + }, + }, + [133] = { + ["end"] = { + ["U"] = { 289 }, + }, + ["lvl"] = 27, + ["min"] = 20, + ["obj"] = { + ["I"] = { 884 }, + }, + ["pre"] = { 159 }, + ["start"] = { + ["U"] = { 289 }, + }, + }, + [134] = { + ["end"] = { + ["U"] = { 289 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["obj"] = { + ["I"] = { 1349 }, + }, + ["pre"] = { 133 }, + ["start"] = { + ["U"] = { 289 }, + }, + }, + [135] = { + ["end"] = { + ["U"] = { 332 }, + }, + ["lvl"] = 18, + ["min"] = 14, + ["pre"] = { 132 }, + ["start"] = { + ["U"] = { 234 }, + }, + }, + [136] = { + ["end"] = { + ["O"] = { 35 }, + }, + ["lvl"] = 16, + ["min"] = 10, + ["start"] = { + ["I"] = { 1357 }, + }, + }, + [137] = { + ["lvl"] = 8, + ["min"] = 5, + ["obj"] = { + ["I"] = { 1356 }, + }, + }, + [138] = { + ["end"] = { + ["O"] = { 36 }, + }, + ["lvl"] = 16, + ["min"] = 10, + ["pre"] = { 136 }, + ["start"] = { + ["O"] = { 35 }, + }, + }, + [139] = { + ["end"] = { + ["O"] = { 34 }, + }, + ["lvl"] = 16, + ["min"] = 10, + ["pre"] = { 138 }, + ["start"] = { + ["O"] = { 36 }, + }, + }, + [140] = { + ["end"] = { + ["O"] = { 33 }, + }, + ["lvl"] = 16, + ["min"] = 10, + ["pre"] = { 139 }, + ["start"] = { + ["O"] = { 34 }, + }, + }, + [141] = { + ["end"] = { + ["U"] = { 234 }, + }, + ["lvl"] = 18, + ["min"] = 14, + ["pre"] = { 135 }, + ["start"] = { + ["U"] = { 332 }, + }, + }, + [142] = { + ["end"] = { + ["U"] = { 234 }, + }, + ["lvl"] = 18, + ["min"] = 14, + ["obj"] = { + ["I"] = { 1381 }, + }, + ["pre"] = { 141 }, + ["start"] = { + ["U"] = { 234 }, + }, + }, + [143] = { + ["end"] = { + ["U"] = { 234 }, + }, + ["lvl"] = 14, + ["min"] = 14, + ["pre"] = { 121 }, + ["start"] = { + ["U"] = { 344 }, + }, + }, + [144] = { + ["end"] = { + ["U"] = { 344 }, + }, + ["lvl"] = 14, + ["min"] = 14, + ["pre"] = { 143 }, + ["start"] = { + ["U"] = { 234 }, + }, + }, + [145] = { + ["end"] = { + ["U"] = { 263 }, + }, + ["lvl"] = 18, + ["min"] = 18, + ["pre"] = { 144 }, + ["start"] = { + ["U"] = { 344 }, + }, + }, + [146] = { + ["end"] = { + ["U"] = { 344 }, + }, + ["lvl"] = 18, + ["min"] = 18, + ["pre"] = { 145 }, + ["start"] = { + ["U"] = { 263 }, + }, + }, + [147] = { + ["end"] = { + ["U"] = { 240 }, + }, + ["lvl"] = 10, + ["min"] = 7, + ["obj"] = { + ["I"] = { 2239 }, + }, + ["pre"] = { 123 }, + ["start"] = { + ["U"] = { 240 }, + }, + }, + [148] = { + ["end"] = { + ["U"] = { 265 }, + }, + ["lvl"] = 24, + ["min"] = 20, + ["pre"] = { 165 }, + ["start"] = { + ["U"] = { 289 }, + }, + }, + [149] = { + ["end"] = { + ["U"] = { 302 }, + }, + ["lvl"] = 24, + ["min"] = 20, + ["pre"] = { 148 }, + ["start"] = { + ["U"] = { 265 }, + }, + }, + [150] = { + ["end"] = { + ["U"] = { 381 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["obj"] = { + ["I"] = { 1468 }, + }, + ["start"] = { + ["U"] = { 381 }, + }, + }, + [151] = { + ["end"] = { + ["U"] = { 238 }, + }, + ["lvl"] = 14, + ["min"] = 9, + ["obj"] = { + ["I"] = { 1528 }, + }, + ["start"] = { + ["U"] = { 238 }, + }, + }, + [152] = { + ["end"] = { + ["U"] = { 392 }, + }, + ["lvl"] = 19, + ["min"] = 10, + ["obj"] = { + ["U"] = { 126, 127, 171, 517 }, + }, + ["start"] = { + ["U"] = { 392 }, + }, + }, + [153] = { + ["end"] = { + ["U"] = { 878 }, + }, + ["lvl"] = 15, + ["min"] = 10, + ["obj"] = { + ["I"] = { 829 }, + }, + ["start"] = { + ["U"] = { 878 }, + }, + }, + [154] = { + ["end"] = { + ["U"] = { 265 }, + }, + ["lvl"] = 24, + ["min"] = 20, + ["pre"] = { 149 }, + ["start"] = { + ["U"] = { 302 }, + }, + }, + [155] = { + ["end"] = { + ["U"] = { 234 }, + }, + ["lvl"] = 18, + ["min"] = 14, + ["obj"] = { + ["A"] = { 78 }, + }, + ["pre"] = { 142 }, + ["start"] = { + ["U"] = { 467 }, + }, + }, + [156] = { + ["end"] = { + ["U"] = { 273 }, + }, + ["lvl"] = 24, + ["min"] = 20, + ["obj"] = { + ["I"] = { 1598 }, + }, + ["pre"] = { 158 }, + ["start"] = { + ["U"] = { 273 }, + }, + }, + [157] = { + ["end"] = { + ["U"] = { 289 }, + }, + ["lvl"] = 24, + ["min"] = 20, + ["pre"] = { 154 }, + ["start"] = { + ["U"] = { 265 }, + }, + }, + [158] = { + ["end"] = { + ["U"] = { 273 }, + }, + ["lvl"] = 24, + ["min"] = 20, + ["pre"] = { 157 }, + ["start"] = { + ["U"] = { 289 }, + }, + }, + [159] = { + ["end"] = { + ["U"] = { 289 }, + }, + ["lvl"] = 24, + ["min"] = 20, + ["pre"] = { 156 }, + ["start"] = { + ["U"] = { 273 }, + }, + }, + [160] = { + ["end"] = { + ["U"] = { 263 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["pre"] = { 134 }, + ["start"] = { + ["U"] = { 289 }, + }, + }, + [161] = { + ["end"] = { + ["U"] = { 1073 }, + }, + ["lvl"] = 18, + ["min"] = 16, + ["pre"] = { 199 }, + ["start"] = { + ["U"] = { 1093 }, + }, + }, + [162] = { + ["end"] = { + ["U"] = { 7740 }, + }, + ["lvl"] = 49, + ["min"] = 39, + ["pre"] = { 113 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 7724 }, + }, + }, + [163] = { + ["end"] = { + ["U"] = { 288 }, + }, + ["lvl"] = 20, + ["min"] = 17, + ["start"] = { + ["U"] = { 633 }, + }, + }, + [164] = { + ["end"] = { + ["U"] = { 311 }, + }, + ["lvl"] = 23, + ["min"] = 17, + ["start"] = { + ["U"] = { 633 }, + }, + }, + [165] = { + ["end"] = { + ["U"] = { 289 }, + }, + ["lvl"] = 25, + ["min"] = 17, + ["start"] = { + ["U"] = { 633 }, + }, + }, + [166] = { + ["end"] = { + ["U"] = { 234 }, + }, + ["lvl"] = 22, + ["min"] = 14, + ["obj"] = { + ["I"] = { 3637 }, + }, + ["pre"] = { 155 }, + ["start"] = { + ["U"] = { 234 }, + }, + }, + [167] = { + ["end"] = { + ["U"] = { 656 }, + }, + ["lvl"] = 20, + ["min"] = 15, + ["obj"] = { + ["I"] = { 1875 }, + }, + ["start"] = { + ["U"] = { 656 }, + }, + }, + [168] = { + ["end"] = { + ["U"] = { 656 }, + }, + ["lvl"] = 18, + ["min"] = 14, + ["obj"] = { + ["I"] = { 1894 }, + }, + ["start"] = { + ["U"] = { 656 }, + }, + }, + [169] = { + ["end"] = { + ["U"] = { 344 }, + }, + ["lvl"] = 26, + ["min"] = 15, + ["obj"] = { + ["I"] = { 3633 }, + }, + ["start"] = { + ["O"] = { 60 }, + }, + }, + [170] = { + ["end"] = { + ["U"] = { 713 }, + }, + ["lvl"] = 2, + ["min"] = 1, + ["obj"] = { + ["U"] = { 707, 724 }, + }, + ["pre"] = { 179 }, + ["start"] = { + ["U"] = { 713 }, + }, + }, + [171] = { + ["end"] = { + ["U"] = { 2142, 14450 }, + }, + ["lvl"] = 60, + ["min"] = 10, + ["obj"] = { + ["I"] = { 18598 }, + }, + ["pre"] = { 558, 4822 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 2142, 14305 }, + }, + }, + [172] = { + ["end"] = { + ["U"] = { 271, 14444 }, + }, + ["event"] = 10, + ["lvl"] = 29, + ["min"] = 26, + ["obj"] = { + ["I"] = { 1923 }, + }, + ["start"] = { + ["U"] = { 14451, 271 }, + }, + }, + [173] = { + ["end"] = { + ["U"] = { 663 }, + }, + ["lvl"] = 28, + ["min"] = 23, + ["obj"] = { + ["U"] = { 533 }, + }, + ["start"] = { + ["U"] = { 663 }, + }, + }, + [174] = { + ["end"] = { + ["U"] = { 276 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["obj"] = { + ["I"] = { 4371 }, + }, + ["start"] = { + ["U"] = { 276 }, + }, + }, + [175] = { + ["end"] = { + ["U"] = { 302 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["pre"] = { 174 }, + ["start"] = { + ["U"] = { 276 }, + }, + }, + [176] = { + ["end"] = { + ["U"] = { 240 }, + }, + ["lvl"] = 11, + ["min"] = 5, + ["obj"] = { + ["I"] = { 1931 }, + }, + ["race"] = 77, + ["start"] = { + ["O"] = { 68, 156561 }, + }, + }, + [177] = { + ["end"] = { + ["U"] = { 276 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["obj"] = { + ["I"] = { 1946 }, + }, + ["pre"] = { 175 }, + ["start"] = { + ["U"] = { 302 }, + }, + }, + [178] = { + ["end"] = { + ["U"] = { 313 }, + }, + ["lvl"] = 23, + ["min"] = 15, + ["race"] = 77, + ["start"] = { + ["I"] = { 1962 }, + }, + }, + [179] = { + ["end"] = { + ["U"] = { 658 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["obj"] = { + ["I"] = { 750 }, + }, + ["start"] = { + ["U"] = { 658 }, + }, + }, + [180] = { + ["end"] = { + ["U"] = { 344 }, + }, + ["lvl"] = 26, + ["min"] = 15, + ["obj"] = { + ["I"] = { 3632 }, + }, + ["start"] = { + ["O"] = { 47 }, + }, + }, + [181] = { + ["end"] = { + ["U"] = { 276 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["obj"] = { + ["I"] = { 1968 }, + }, + ["pre"] = { 177 }, + ["start"] = { + ["U"] = { 276 }, + }, + }, + [182] = { + ["end"] = { + ["U"] = { 786 }, + }, + ["lvl"] = 4, + ["min"] = 1, + ["obj"] = { + ["U"] = { 706 }, + }, + ["start"] = { + ["U"] = { 786 }, + }, + }, + [183] = { + ["end"] = { + ["U"] = { 714 }, + }, + ["lvl"] = 3, + ["min"] = 1, + ["obj"] = { + ["U"] = { 708 }, + }, + ["start"] = { + ["U"] = { 714 }, + }, + }, + [184] = { + ["end"] = { + ["U"] = { 237 }, + }, + ["lvl"] = 9, + ["min"] = 8, + ["race"] = 77, + ["start"] = { + ["I"] = { 1972 }, + }, + }, + [185] = { + ["end"] = { + ["U"] = { 717 }, + }, + ["lvl"] = 31, + ["min"] = 28, + ["obj"] = { + ["U"] = { 681 }, + }, + ["pre"] = { 583 }, + ["start"] = { + ["U"] = { 717 }, + }, + }, + [186] = { + ["end"] = { + ["U"] = { 717 }, + }, + ["lvl"] = 33, + ["min"] = 28, + ["obj"] = { + ["U"] = { 682 }, + }, + ["pre"] = { 185 }, + ["start"] = { + ["U"] = { 717 }, + }, + }, + [187] = { + ["end"] = { + ["U"] = { 717 }, + }, + ["lvl"] = 35, + ["min"] = 28, + ["obj"] = { + ["U"] = { 1085 }, + }, + ["pre"] = { 186 }, + ["start"] = { + ["U"] = { 717 }, + }, + }, + [188] = { + ["end"] = { + ["U"] = { 717 }, + }, + ["lvl"] = 37, + ["min"] = 28, + ["obj"] = { + ["I"] = { 3879 }, + }, + ["pre"] = { 187 }, + ["start"] = { + ["U"] = { 717 }, + }, + }, + [189] = { + ["end"] = { + ["U"] = { 737 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["I"] = { 1519 }, + }, + ["start"] = { + ["U"] = { 737 }, + }, + }, + [190] = { + ["end"] = { + ["U"] = { 718 }, + }, + ["lvl"] = 31, + ["min"] = 28, + ["obj"] = { + ["U"] = { 683 }, + }, + ["pre"] = { 583 }, + ["start"] = { + ["U"] = { 718 }, + }, + }, + [191] = { + ["end"] = { + ["U"] = { 718 }, + }, + ["lvl"] = 33, + ["min"] = 28, + ["obj"] = { + ["U"] = { 736 }, + }, + ["pre"] = { 190 }, + ["start"] = { + ["U"] = { 718 }, + }, + }, + [192] = { + ["end"] = { + ["U"] = { 718 }, + }, + ["lvl"] = 38, + ["min"] = 28, + ["obj"] = { + ["U"] = { 684 }, + }, + ["pre"] = { 191 }, + ["start"] = { + ["U"] = { 718 }, + }, + }, + [193] = { + ["end"] = { + ["U"] = { 718 }, + }, + ["lvl"] = 40, + ["min"] = 28, + ["obj"] = { + ["I"] = { 3876 }, + }, + ["pre"] = { 192 }, + ["start"] = { + ["U"] = { 718 }, + }, + }, + [194] = { + ["end"] = { + ["U"] = { 715 }, + }, + ["lvl"] = 34, + ["min"] = 28, + ["obj"] = { + ["U"] = { 685 }, + }, + ["pre"] = { 583 }, + ["start"] = { + ["U"] = { 715 }, + }, + }, + [195] = { + ["end"] = { + ["U"] = { 715 }, + }, + ["lvl"] = 36, + ["min"] = 28, + ["obj"] = { + ["U"] = { 686 }, + }, + ["pre"] = { 194 }, + ["start"] = { + ["U"] = { 715 }, + }, + }, + [196] = { + ["end"] = { + ["U"] = { 715 }, + }, + ["lvl"] = 41, + ["min"] = 28, + ["obj"] = { + ["U"] = { 687 }, + }, + ["pre"] = { 195 }, + ["start"] = { + ["U"] = { 715 }, + }, + }, + [197] = { + ["end"] = { + ["U"] = { 715 }, + }, + ["lvl"] = 43, + ["min"] = 28, + ["obj"] = { + ["I"] = { 3877 }, + }, + ["pre"] = { 196 }, + ["start"] = { + ["U"] = { 715 }, + }, + }, + [198] = { + ["end"] = { + ["U"] = { 738 }, + }, + ["lvl"] = 32, + ["min"] = 30, + ["race"] = 77, + ["start"] = { + ["U"] = { 773 }, + }, + }, + [199] = { + ["end"] = { + ["U"] = { 1093 }, + }, + ["lvl"] = 18, + ["min"] = 16, + ["pre"] = { 250 }, + ["start"] = { + ["O"] = { 257 }, + }, + }, + [200] = { + ["end"] = { + ["O"] = { 287 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["pre"] = { 215 }, + ["start"] = { + ["U"] = { 469 }, + }, + }, + [201] = { + ["end"] = { + ["U"] = { 773 }, + }, + ["lvl"] = 32, + ["min"] = 28, + ["obj"] = { + ["A"] = { 98 }, + }, + ["start"] = { + ["U"] = { 773 }, + }, + }, + [202] = { + ["end"] = { + ["U"] = { 469 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["obj"] = { + ["I"] = { 3615 }, + ["U"] = { 939, 978 }, + }, + ["pre"] = { 574 }, + ["start"] = { + ["U"] = { 469 }, + }, + }, + [203] = { + ["end"] = { + ["U"] = { 733 }, + }, + ["lvl"] = 33, + ["min"] = 30, + ["obj"] = { + ["U"] = { 937 }, + }, + ["start"] = { + ["U"] = { 733 }, + }, + }, + [204] = { + ["end"] = { + ["U"] = { 733 }, + }, + ["lvl"] = 34, + ["min"] = 30, + ["obj"] = { + ["I"] = { 2633, 2634 }, + }, + ["start"] = { + ["U"] = { 733 }, + }, + }, + [205] = { + ["end"] = { + ["U"] = { 739 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["obj"] = { + ["I"] = { 2466 }, + }, + ["pre"] = { 207 }, + ["start"] = { + ["U"] = { 739 }, + }, + }, + [206] = { + ["end"] = { + ["U"] = { 739 }, + }, + ["lvl"] = 46, + ["min"] = 30, + ["obj"] = { + ["I"] = { 3616 }, + }, + ["pre"] = { 205 }, + ["start"] = { + ["U"] = { 739 }, + }, + }, + [207] = { + ["end"] = { + ["U"] = { 739 }, + }, + ["lvl"] = 38, + ["min"] = 30, + ["obj"] = { + ["I"] = { 2005, 2006, 2007, 2008 }, + }, + ["start"] = { + ["U"] = { 739 }, + }, + }, + [208] = { + ["end"] = { + ["U"] = { 715 }, + }, + ["lvl"] = 43, + ["min"] = 28, + ["obj"] = { + ["I"] = { 3880 }, + }, + ["pre"] = { 188, 193, 197 }, + ["start"] = { + ["U"] = { 715 }, + }, + }, + [209] = { + ["end"] = { + ["U"] = { 737 }, + }, + ["lvl"] = 42, + ["min"] = 37, + ["obj"] = { + ["I"] = { 1524 }, + }, + ["pre"] = { 189 }, + ["start"] = { + ["U"] = { 737 }, + }, + }, + [210] = { + ["end"] = { + ["U"] = { 773 }, + }, + ["lvl"] = 37, + ["min"] = 32, + ["start"] = { + ["U"] = { 770 }, + }, + }, + [211] = { + ["end"] = { + ["U"] = { 10838 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 17114 }, + }, + ["pre"] = { 5097 }, + ["start"] = { + ["U"] = { 10838 }, + }, + }, + [212] = { + ["end"] = { + ["U"] = { 1141 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["obj"] = { + ["I"] = { 2476 }, + }, + ["start"] = { + ["U"] = { 1141 }, + }, + }, + [213] = { + ["end"] = { + ["U"] = { 737 }, + }, + ["lvl"] = 36, + ["min"] = 31, + ["obj"] = { + ["I"] = { 4106 }, + }, + ["start"] = { + ["U"] = { 737 }, + }, + }, + [214] = { + ["end"] = { + ["U"] = { 820 }, + }, + ["lvl"] = 17, + ["min"] = 14, + ["obj"] = { + ["I"] = { 915 }, + }, + ["pre"] = { 155 }, + ["start"] = { + ["U"] = { 820 }, + }, + }, + [215] = { + ["end"] = { + ["U"] = { 469 }, + }, + ["lvl"] = 33, + ["min"] = 30, + ["start"] = { + ["U"] = { 738 }, + }, + }, + [216] = { + ["end"] = { + ["U"] = { 12757 }, + }, + ["lvl"] = 24, + ["min"] = 21, + ["obj"] = { + ["U"] = { 3924, 3925 }, + }, + ["start"] = { + ["U"] = { 12757 }, + }, + }, + [217] = { + ["end"] = { + ["U"] = { 1092 }, + }, + ["lvl"] = 17, + ["min"] = 10, + ["obj"] = { + ["U"] = { 1205, 1206, 1207 }, + }, + ["pre"] = { 263 }, + ["start"] = { + ["U"] = { 1092 }, + }, + }, + [218] = { + ["end"] = { + ["U"] = { 786 }, + }, + ["lvl"] = 5, + ["min"] = 1, + ["obj"] = { + ["I"] = { 2004 }, + }, + ["pre"] = { 182 }, + ["start"] = { + ["U"] = { 786 }, + }, + }, + [219] = { + ["end"] = { + ["U"] = { 382 }, + }, + ["lvl"] = 25, + ["min"] = 19, + ["start"] = { + ["U"] = { 349 }, + }, + }, + [220] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 5901 }, + }, + ["lvl"] = 23, + ["min"] = 20, + ["pre"] = { 1534 }, + ["start"] = { + ["U"] = { 5899 }, + }, + }, + [221] = { + ["end"] = { + ["U"] = { 663 }, + }, + ["lvl"] = 29, + ["min"] = 23, + ["obj"] = { + ["U"] = { 205 }, + }, + ["pre"] = { 173 }, + ["start"] = { + ["U"] = { 663 }, + }, + }, + [222] = { + ["end"] = { + ["U"] = { 663 }, + }, + ["lvl"] = 31, + ["min"] = 23, + ["obj"] = { + ["U"] = { 206, 920 }, + }, + ["pre"] = { 221 }, + ["start"] = { + ["U"] = { 663 }, + }, + }, + [223] = { + ["end"] = { + ["U"] = { 661 }, + }, + ["lvl"] = 31, + ["min"] = 23, + ["pre"] = { 222 }, + ["start"] = { + ["U"] = { 663 }, + }, + }, + [224] = { + ["end"] = { + ["U"] = { 1089 }, + }, + ["lvl"] = 12, + ["min"] = 10, + ["obj"] = { + ["U"] = { 1161, 1162 }, + }, + ["start"] = { + ["U"] = { 1089 }, + }, + }, + [225] = { + ["end"] = { + ["U"] = { 268 }, + }, + ["lvl"] = 35, + ["min"] = 28, + ["start"] = { + ["O"] = { 61 }, + }, + }, + [226] = { + ["end"] = { + ["U"] = { 893 }, + }, + ["lvl"] = 21, + ["min"] = 19, + ["obj"] = { + ["U"] = { 213, 565 }, + }, + ["start"] = { + ["U"] = { 893 }, + }, + }, + [227] = { + ["end"] = { + ["U"] = { 264 }, + }, + ["lvl"] = 35, + ["min"] = 28, + ["pre"] = { 225 }, + ["start"] = { + ["U"] = { 268 }, + }, + }, + [228] = { + ["end"] = { + ["U"] = { 264 }, + }, + ["lvl"] = 35, + ["min"] = 28, + ["obj"] = { + ["I"] = { 3514 }, + }, + ["pre"] = { 227 }, + ["start"] = { + ["U"] = { 264 }, + }, + }, + [229] = { + ["end"] = { + ["U"] = { 576 }, + }, + ["lvl"] = 35, + ["min"] = 28, + ["pre"] = { 228 }, + ["start"] = { + ["U"] = { 264 }, + }, + }, + [230] = { + ["end"] = { + ["U"] = { 311 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["pre"] = { 95 }, + ["start"] = { + ["O"] = { 59 }, + }, + }, + [231] = { + ["end"] = { + ["O"] = { 61 }, + }, + ["lvl"] = 35, + ["min"] = 28, + ["pre"] = { 229 }, + ["start"] = { + ["U"] = { 576 }, + }, + }, + [232] = { + ["end"] = { + ["U"] = { 7683 }, + }, + ["lvl"] = 45, + ["min"] = 38, + ["start"] = { + ["U"] = { 5204 }, + }, + }, + [233] = { + ["end"] = { + ["U"] = { 714 }, + }, + ["lvl"] = 3, + ["min"] = 1, + ["start"] = { + ["U"] = { 658 }, + }, + }, + [234] = { + ["end"] = { + ["U"] = { 786 }, + }, + ["lvl"] = 4, + ["min"] = 1, + ["pre"] = { 233 }, + ["start"] = { + ["U"] = { 714 }, + }, + }, + [235] = { + ["close"] = { 235, 742, 6382 }, + ["end"] = { + ["U"] = { 12696 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["start"] = { + ["U"] = { 10880 }, + }, + }, + [236] = { + ["end"] = { + ["U"] = { 2142 }, + }, + ["lvl"] = 21, + ["min"] = 17, + ["race"] = 77, + ["start"] = { + ["U"] = { 888 }, + }, + }, + [237] = { + ["end"] = { + ["U"] = { 1091 }, + }, + ["lvl"] = 15, + ["min"] = 10, + ["obj"] = { + ["U"] = { 1163, 1166 }, + }, + ["pre"] = { 224 }, + ["start"] = { + ["U"] = { 1091 }, + }, + }, + [238] = { + ["end"] = { + ["U"] = { 5204 }, + }, + ["lvl"] = 45, + ["min"] = 38, + ["pre"] = { 232 }, + ["start"] = { + ["U"] = { 7683 }, + }, + }, + [239] = { + ["end"] = { + ["U"] = { 963 }, + }, + ["lvl"] = 10, + ["min"] = 6, + ["pre"] = { 76 }, + ["start"] = { + ["U"] = { 240 }, + }, + }, + [240] = { + ["end"] = { + ["U"] = { 288 }, + }, + ["lvl"] = 20, + ["min"] = 17, + ["pre"] = { 93 }, + ["start"] = { + ["U"] = { 272 }, + }, + }, + [241] = { + ["lvl"] = 1, + ["min"] = 1, + }, + [242] = { + ["lvl"] = 30, + ["min"] = 25, + ["obj"] = { + ["U"] = { 1034, 1037, 1057 }, + }, + }, + [243] = { + ["end"] = { + ["U"] = { 7407 }, + }, + ["lvl"] = 46, + ["min"] = 38, + ["pre"] = { 238 }, + ["start"] = { + ["U"] = { 5204 }, + }, + }, + [244] = { + ["end"] = { + ["U"] = { 1070 }, + }, + ["lvl"] = 16, + ["min"] = 11, + ["start"] = { + ["U"] = { 464 }, + }, + }, + [245] = { + ["end"] = { + ["U"] = { 888 }, + }, + ["lvl"] = 21, + ["min"] = 17, + ["obj"] = { + ["U"] = { 539 }, + }, + ["start"] = { + ["U"] = { 888 }, + }, + }, + [246] = { + ["end"] = { + ["U"] = { 1070 }, + }, + ["lvl"] = 17, + ["min"] = 11, + ["obj"] = { + ["U"] = { 423, 424 }, + }, + ["pre"] = { 244 }, + ["start"] = { + ["U"] = { 1070 }, + }, + }, + [247] = { + ["end"] = { + ["U"] = { 12696 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["pre"] = { 2, 23, 24 }, + ["start"] = { + ["U"] = { 12696 }, + }, + }, + [248] = { + ["end"] = { + ["O"] = { 76 }, + }, + ["lvl"] = 22, + ["min"] = 20, + ["pre"] = { 94 }, + ["start"] = { + ["O"] = { 31 }, + }, + }, + [249] = { + ["end"] = { + ["U"] = { 313 }, + }, + ["lvl"] = 27, + ["min"] = 20, + ["obj"] = { + ["I"] = { 3617 }, + }, + ["pre"] = { 248 }, + ["start"] = { + ["O"] = { 31 }, + ["U"] = { 313 }, + }, + }, + [250] = { + ["end"] = { + ["O"] = { 257 }, + }, + ["lvl"] = 18, + ["min"] = 16, + ["start"] = { + ["U"] = { 1093 }, + }, + }, + [251] = { + ["end"] = { + ["U"] = { 268 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["pre"] = { 160 }, + ["start"] = { + ["U"] = { 263 }, + }, + }, + [252] = { + ["end"] = { + ["U"] = { 263 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["pre"] = { 401 }, + ["start"] = { + ["U"] = { 268 }, + }, + }, + [253] = { + ["end"] = { + ["U"] = { 263 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["obj"] = { + ["I"] = { 2382 }, + }, + ["pre"] = { 252 }, + ["start"] = { + ["U"] = { 263 }, + }, + }, + [254] = { + ["end"] = { + ["O"] = { 51708 }, + }, + ["lvl"] = 35, + ["min"] = 20, + ["pre"] = { 253 }, + ["start"] = { + ["O"] = { 51708 }, + }, + }, + [255] = { + ["end"] = { + ["U"] = { 1139 }, + }, + ["lvl"] = 19, + ["min"] = 15, + ["obj"] = { + ["U"] = { 1178, 1179, 1180 }, + }, + ["start"] = { + ["U"] = { 1139 }, + }, + }, + [256] = { + ["end"] = { + ["U"] = { 1139 }, + }, + ["lvl"] = 22, + ["min"] = 17, + ["obj"] = { + ["I"] = { 2561 }, + }, + ["start"] = { + ["O"] = { 256 }, + }, + }, + [257] = { + ["end"] = { + ["U"] = { 1187 }, + }, + ["lvl"] = 16, + ["min"] = 11, + ["obj"] = { + ["U"] = { 1194 }, + }, + ["start"] = { + ["U"] = { 1187 }, + }, + }, + [258] = { + ["end"] = { + ["U"] = { 1187 }, + }, + ["lvl"] = 17, + ["min"] = 11, + ["obj"] = { + ["U"] = { 1192 }, + }, + ["pre"] = { 257 }, + ["start"] = { + ["U"] = { 1187 }, + }, + }, + [259] = { + }, + [260] = { + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["I"] = { 2668, 2669 }, + }, + ["pre"] = { 259 }, + }, + [261] = { + ["end"] = { + ["U"] = { 1182 }, + }, + ["lvl"] = 39, + ["min"] = 34, + ["obj"] = { + ["U"] = { 11561 }, + }, + ["pre"] = { 6141 }, + ["start"] = { + ["U"] = { 1182 }, + }, + }, + [262] = { + ["end"] = { + ["U"] = { 265 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["pre"] = { 230 }, + ["start"] = { + ["U"] = { 311 }, + }, + }, + [263] = { + ["end"] = { + ["U"] = { 1090 }, + }, + ["lvl"] = 15, + ["min"] = 10, + ["obj"] = { + ["U"] = { 1164, 1197 }, + }, + ["pre"] = { 237 }, + ["start"] = { + ["U"] = { 1090 }, + }, + }, + [264] = { + ["end"] = { + ["O"] = { 24776 }, + }, + ["lvl"] = 15, + ["min"] = 12, + ["start"] = { + ["U"] = { 5543 }, + }, + }, + [265] = { + ["end"] = { + ["U"] = { 267 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["pre"] = { 262 }, + ["start"] = { + ["U"] = { 265 }, + }, + }, + [266] = { + ["end"] = { + ["U"] = { 273 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["pre"] = { 265 }, + ["start"] = { + ["U"] = { 267 }, + }, + }, + [267] = { + ["end"] = { + ["U"] = { 1092 }, + }, + ["lvl"] = 12, + ["min"] = 10, + ["obj"] = { + ["I"] = { 2536 }, + }, + ["start"] = { + ["U"] = { 1092 }, + }, + }, + [268] = { + ["end"] = { + ["U"] = { 311 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["pre"] = { 453 }, + ["start"] = { + ["U"] = { 288 }, + }, + }, + [269] = { + ["end"] = { + ["U"] = { 1212 }, + }, + ["lvl"] = 29, + ["min"] = 20, + ["pre"] = { 323 }, + ["start"] = { + ["U"] = { 311 }, + }, + }, + [270] = { + ["end"] = { + ["U"] = { 1217 }, + }, + ["lvl"] = 29, + ["min"] = 20, + ["pre"] = { 269 }, + ["start"] = { + ["U"] = { 1212 }, + }, + }, + [271] = { + ["end"] = { + ["U"] = { 1187 }, + }, + ["lvl"] = 20, + ["min"] = 15, + ["obj"] = { + ["I"] = { 2713 }, + }, + ["pre"] = { 258 }, + ["start"] = { + ["U"] = { 1156 }, + }, + }, + [272] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 11802 }, + }, + ["lvl"] = 16, + ["min"] = 16, + ["obj"] = { + ["I"] = { 15882, 15883, 15885 }, + ["IR"] = { 15883 }, + }, + ["pre"] = { 29 }, + ["race"] = 8, + ["start"] = { + ["U"] = { 11799 }, + }, + }, + [273] = { + ["end"] = { + ["U"] = { 2057 }, + }, + ["lvl"] = 15, + ["min"] = 10, + ["pre"] = { 302 }, + ["start"] = { + ["U"] = { 1105 }, + }, + }, + [274] = { + ["end"] = { + ["U"] = { 1093 }, + }, + ["lvl"] = 18, + ["min"] = 16, + ["pre"] = { 161 }, + ["start"] = { + ["U"] = { 1073 }, + }, + }, + [275] = { + ["end"] = { + ["U"] = { 1244 }, + }, + ["lvl"] = 26, + ["min"] = 20, + ["obj"] = { + ["U"] = { 1040 }, + }, + ["pre"] = { 277 }, + ["start"] = { + ["U"] = { 1244 }, + }, + }, + [276] = { + ["end"] = { + ["U"] = { 1244 }, + }, + ["lvl"] = 21, + ["min"] = 20, + ["obj"] = { + ["U"] = { 1007, 1008 }, + }, + ["pre"] = { 463 }, + ["start"] = { + ["U"] = { 1244 }, + }, + }, + [277] = { + ["end"] = { + ["U"] = { 1244 }, + }, + ["lvl"] = 23, + ["min"] = 20, + ["obj"] = { + ["I"] = { 2611 }, + }, + ["pre"] = { 276 }, + ["start"] = { + ["U"] = { 1244 }, + }, + }, + [278] = { + ["end"] = { + ["U"] = { 1093 }, + }, + ["lvl"] = 18, + ["min"] = 16, + ["obj"] = { + ["I"] = { 2606, 2607, 2939 }, + }, + ["pre"] = { 274 }, + ["start"] = { + ["U"] = { 1093 }, + }, + }, + [279] = { + ["end"] = { + ["U"] = { 1242 }, + }, + ["lvl"] = 22, + ["min"] = 20, + ["obj"] = { + ["I"] = { 3618 }, + ["U"] = { 1024 }, + }, + ["start"] = { + ["U"] = { 1242 }, + }, + }, + [280] = { + ["end"] = { + ["O"] = { 1585 }, + }, + ["lvl"] = 18, + ["min"] = 16, + ["pre"] = { 278 }, + ["start"] = { + ["U"] = { 1093 }, + }, + }, + [281] = { + ["end"] = { + ["O"] = { 261 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["pre"] = { 279 }, + ["start"] = { + ["U"] = { 1242 }, + }, + }, + [282] = { + ["end"] = { + ["U"] = { 1965 }, + }, + ["lvl"] = 5, + ["min"] = 1, + ["pre"] = { 218 }, + ["start"] = { + ["U"] = { 786 }, + }, + }, + [283] = { + ["end"] = { + ["U"] = { 1093 }, + }, + ["lvl"] = 20, + ["min"] = 16, + ["pre"] = { 280 }, + ["start"] = { + ["O"] = { 1585 }, + }, + }, + [284] = { + ["end"] = { + ["O"] = { 142151 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["pre"] = { 281 }, + ["start"] = { + ["O"] = { 261 }, + }, + }, + [285] = { + ["end"] = { + ["O"] = { 259 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["pre"] = { 284 }, + ["start"] = { + ["O"] = { 142151 }, + }, + }, + [286] = { + ["end"] = { + ["U"] = { 1242 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["pre"] = { 285 }, + ["start"] = { + ["O"] = { 259 }, + }, + }, + [287] = { + ["end"] = { + ["U"] = { 1252 }, + }, + ["lvl"] = 9, + ["min"] = 7, + ["obj"] = { + ["A"] = { 97 }, + ["U"] = { 1123 }, + }, + ["pre"] = { 420 }, + ["start"] = { + ["U"] = { 1252 }, + }, + }, + [288] = { + ["end"] = { + ["U"] = { 1239 }, + }, + ["lvl"] = 27, + ["min"] = 22, + ["obj"] = { + ["I"] = { 2594 }, + }, + ["start"] = { + ["U"] = { 1239 }, + }, + }, + [289] = { + ["end"] = { + ["U"] = { 1239 }, + }, + ["lvl"] = 29, + ["min"] = 22, + ["obj"] = { + ["I"] = { 3619 }, + ["U"] = { 1157, 1158 }, + }, + ["pre"] = { 288 }, + ["start"] = { + ["U"] = { 1239 }, + }, + }, + [290] = { + ["end"] = { + ["O"] = { 112948 }, + }, + ["lvl"] = 30, + ["min"] = 22, + ["obj"] = { + ["I"] = { 2629 }, + }, + ["pre"] = { 289 }, + ["start"] = { + ["U"] = { 1239 }, + }, + }, + [291] = { + ["end"] = { + ["U"] = { 1274 }, + }, + ["lvl"] = 10, + ["min"] = 1, + ["pre"] = { 287 }, + ["start"] = { + ["U"] = { 1252 }, + }, + }, + [292] = { + ["end"] = { + ["U"] = { 1217 }, + }, + ["lvl"] = 30, + ["min"] = 22, + ["pre"] = { 290 }, + ["start"] = { + ["O"] = { 112948 }, + }, + }, + [293] = { + ["end"] = { + ["U"] = { 1284 }, + }, + ["lvl"] = 30, + ["min"] = 22, + ["pre"] = { 292 }, + ["start"] = { + ["U"] = { 1217 }, + }, + }, + [294] = { + ["end"] = { + ["U"] = { 1078 }, + }, + ["lvl"] = 24, + ["min"] = 22, + ["obj"] = { + ["U"] = { 1020, 1021 }, + }, + ["start"] = { + ["U"] = { 1078 }, + }, + }, + [295] = { + ["end"] = { + ["U"] = { 1078 }, + }, + ["lvl"] = 27, + ["min"] = 22, + ["obj"] = { + ["U"] = { 1022, 1023 }, + }, + ["pre"] = { 294 }, + ["start"] = { + ["U"] = { 1078 }, + }, + }, + [296] = { + ["end"] = { + ["U"] = { 1078 }, + }, + ["lvl"] = 29, + ["min"] = 22, + ["obj"] = { + ["I"] = { 3638 }, + }, + ["pre"] = { 295 }, + ["start"] = { + ["U"] = { 1078 }, + }, + }, + [297] = { + ["end"] = { + ["U"] = { 1345 }, + }, + ["lvl"] = 18, + ["min"] = 13, + ["obj"] = { + ["I"] = { 2636 }, + }, + ["pre"] = { 436 }, + ["start"] = { + ["U"] = { 1345 }, + }, + }, + [298] = { + ["end"] = { + ["U"] = { 1105 }, + }, + ["lvl"] = 15, + ["min"] = 10, + ["start"] = { + ["U"] = { 1344 }, + }, + }, + [299] = { + ["end"] = { + ["U"] = { 1077 }, + }, + ["lvl"] = 28, + ["min"] = 25, + ["obj"] = { + ["I"] = { 2658, 2659, 2660, 2661 }, + }, + ["start"] = { + ["U"] = { 1077 }, + }, + }, + [301] = { + ["end"] = { + ["U"] = { 1356 }, + }, + ["lvl"] = 15, + ["min"] = 10, + ["pre"] = { 298 }, + ["start"] = { + ["U"] = { 1105 }, + }, + }, + [302] = { + ["end"] = { + ["U"] = { 1105 }, + }, + ["lvl"] = 15, + ["min"] = 10, + ["pre"] = { 301 }, + ["start"] = { + ["U"] = { 1356 }, + }, + }, + [303] = { + ["end"] = { + ["U"] = { 1074 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["obj"] = { + ["U"] = { 1051, 1052, 1053, 1054 }, + }, + ["start"] = { + ["U"] = { 1074 }, + }, + }, + [304] = { + ["end"] = { + ["U"] = { 1071 }, + }, + ["lvl"] = 34, + ["min"] = 26, + ["obj"] = { + ["I"] = { 3639 }, + }, + ["start"] = { + ["U"] = { 1071 }, + }, + }, + [305] = { + ["end"] = { + ["U"] = { 1076 }, + }, + ["lvl"] = 24, + ["min"] = 21, + ["start"] = { + ["U"] = { 2096 }, + }, + }, + [306] = { + ["end"] = { + ["U"] = { 2096 }, + }, + ["lvl"] = 24, + ["min"] = 21, + ["pre"] = { 305 }, + ["start"] = { + ["U"] = { 1076 }, + }, + }, + [307] = { + ["end"] = { + ["U"] = { 1343 }, + }, + ["lvl"] = 15, + ["min"] = 9, + ["obj"] = { + ["I"] = { 2640 }, + }, + ["start"] = { + ["U"] = { 1343 }, + }, + }, + [308] = { + ["end"] = { + ["U"] = { 1373 }, + }, + ["lvl"] = 7, + ["min"] = 1, + ["obj"] = { + ["I"] = { 2686 }, + }, + ["pre"] = { 403 }, + ["start"] = { + ["U"] = { 1373 }, + }, + }, + [309] = { + ["end"] = { + ["U"] = { 1344 }, + }, + ["lvl"] = 15, + ["min"] = 10, + ["pre"] = { 454 }, + ["start"] = { + ["U"] = { 1379 }, + }, + }, + [310] = { + ["end"] = { + ["O"] = { 270 }, + }, + ["lvl"] = 6, + ["min"] = 2, + ["start"] = { + ["U"] = { 1375 }, + }, + }, + [311] = { + ["end"] = { + ["U"] = { 1375 }, + }, + ["lvl"] = 7, + ["min"] = 2, + ["pre"] = { 310 }, + ["start"] = { + ["O"] = { 270 }, + }, + }, + [312] = { + ["end"] = { + ["U"] = { 1266 }, + }, + ["lvl"] = 12, + ["min"] = 7, + ["obj"] = { + ["I"] = { 2667 }, + }, + ["start"] = { + ["U"] = { 1266 }, + }, + }, + [313] = { + ["end"] = { + ["U"] = { 1377 }, + }, + ["lvl"] = 7, + ["min"] = 4, + ["obj"] = { + ["I"] = { 2671 }, + }, + ["start"] = { + ["U"] = { 1377 }, + }, + }, + [314] = { + ["end"] = { + ["U"] = { 1265 }, + }, + ["lvl"] = 12, + ["min"] = 6, + ["obj"] = { + ["I"] = { 3627 }, + }, + ["start"] = { + ["U"] = { 1265 }, + }, + }, + [315] = { + ["end"] = { + ["U"] = { 1374 }, + }, + ["lvl"] = 9, + ["min"] = 5, + ["obj"] = { + ["I"] = { 2676 }, + }, + ["start"] = { + ["U"] = { 1374 }, + }, + }, + [316] = { + ["lvl"] = 1, + ["min"] = 1, + ["obj"] = { + ["I"] = { 2688 }, + }, + }, + [317] = { + ["end"] = { + ["U"] = { 1378 }, + }, + ["lvl"] = 6, + ["min"] = 2, + ["obj"] = { + ["I"] = { 769, 6952 }, + }, + ["start"] = { + ["U"] = { 1378 }, + }, + }, + [318] = { + ["end"] = { + ["U"] = { 1374 }, + }, + ["lvl"] = 7, + ["min"] = 2, + ["pre"] = { 317 }, + ["start"] = { + ["U"] = { 1378 }, + }, + }, + [319] = { + ["end"] = { + ["U"] = { 1374 }, + }, + ["lvl"] = 8, + ["min"] = 2, + ["obj"] = { + ["U"] = { 1127, 1196, 1201 }, + }, + ["pre"] = { 318 }, + ["start"] = { + ["U"] = { 1374 }, + }, + }, + [320] = { + ["end"] = { + ["U"] = { 1378 }, + }, + ["lvl"] = 8, + ["min"] = 2, + ["pre"] = { 319 }, + ["start"] = { + ["U"] = { 1374 }, + }, + }, + [321] = { + ["end"] = { + ["O"] = { 2734 }, + }, + ["lvl"] = 29, + ["min"] = 20, + ["pre"] = { 270 }, + ["start"] = { + ["U"] = { 1217 }, + }, + }, + [322] = { + ["end"] = { + ["U"] = { 1416 }, + }, + ["lvl"] = 29, + ["min"] = 20, + ["pre"] = { 324, 526 }, + ["start"] = { + ["U"] = { 1217 }, + }, + }, + [323] = { + ["end"] = { + ["U"] = { 311 }, + }, + ["lvl"] = 28, + ["min"] = 20, + ["obj"] = { + ["U"] = { 785, 787, 1110 }, + }, + ["pre"] = { 268 }, + ["start"] = { + ["U"] = { 311 }, + }, + }, + [324] = { + ["end"] = { + ["U"] = { 1217 }, + }, + ["lvl"] = 29, + ["min"] = 20, + ["obj"] = { + ["I"] = { 2702 }, + }, + ["pre"] = { 321 }, + ["start"] = { + ["O"] = { 2734 }, + }, + }, + [325] = { + ["end"] = { + ["U"] = { 311 }, + }, + ["lvl"] = 29, + ["min"] = 20, + ["obj"] = { + ["IR"] = { 7297 }, + }, + ["pre"] = { 322 }, + ["start"] = { + ["U"] = { 1416 }, + }, + }, + [328] = { + ["end"] = { + ["O"] = { 288 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["pre"] = { 200 }, + ["start"] = { + ["O"] = { 287 }, + }, + }, + [329] = { + ["end"] = { + ["U"] = { 469 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["pre"] = { 328 }, + ["start"] = { + ["O"] = { 288 }, + }, + }, + [330] = { + ["end"] = { + ["U"] = { 1422 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["pre"] = { 329 }, + ["start"] = { + ["U"] = { 469 }, + }, + }, + [331] = { + ["end"] = { + ["U"] = { 469 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["pre"] = { 330 }, + ["start"] = { + ["U"] = { 1422 }, + }, + }, + [332] = { + ["end"] = { + ["U"] = { 1431 }, + }, + ["lvl"] = 2, + ["min"] = 1, + ["start"] = { + ["U"] = { 1432 }, + }, + }, + [333] = { + ["end"] = { + ["U"] = { 1428 }, + }, + ["lvl"] = 2, + ["min"] = 1, + ["start"] = { + ["U"] = { 1427 }, + }, + }, + [334] = { + ["end"] = { + ["U"] = { 1429 }, + }, + ["lvl"] = 2, + ["min"] = 1, + ["start"] = { + ["U"] = { 1428 }, + }, + }, + [335] = { + ["end"] = { + ["U"] = { 1435 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["obj"] = { + ["I"] = { 2779, 2784 }, + }, + ["start"] = { + ["U"] = { 1435 }, + }, + }, + [336] = { + ["end"] = { + ["U"] = { 1439 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["pre"] = { 335 }, + ["start"] = { + ["U"] = { 1435 }, + }, + }, + [337] = { + ["end"] = { + ["U"] = { 1440 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["race"] = 77, + ["start"] = { + ["I"] = { 2794 }, + }, + }, + [338] = { + ["end"] = { + ["U"] = { 716 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["obj"] = { + ["I"] = { 2756, 2757, 2758, 2759 }, + }, + ["pre"] = { 583 }, + ["start"] = { + ["U"] = { 716 }, + }, + }, + [339] = { + ["end"] = { + ["U"] = { 716 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["obj"] = { + ["I"] = { 2725, 2728, 2730, 2732 }, + }, + ["pre"] = { 338 }, + ["start"] = { + ["U"] = { 716 }, + }, + }, + [340] = { + ["end"] = { + ["U"] = { 716 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["obj"] = { + ["I"] = { 2734, 2735, 2738, 2740 }, + }, + ["pre"] = { 338 }, + ["start"] = { + ["U"] = { 716 }, + }, + }, + [341] = { + ["end"] = { + ["U"] = { 716 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["obj"] = { + ["I"] = { 2742, 2744, 2745, 2748 }, + }, + ["pre"] = { 338 }, + ["start"] = { + ["U"] = { 716 }, + }, + }, + [342] = { + ["end"] = { + ["U"] = { 716 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["obj"] = { + ["I"] = { 2749, 2750, 2751 }, + }, + ["pre"] = { 338 }, + ["start"] = { + ["U"] = { 716 }, + }, + }, + [343] = { + ["end"] = { + ["U"] = { 1440 }, + }, + ["lvl"] = 24, + ["min"] = 20, + ["start"] = { + ["U"] = { 1444 }, + }, + }, + [344] = { + ["end"] = { + ["U"] = { 951 }, + }, + ["lvl"] = 24, + ["min"] = 20, + ["pre"] = { 343 }, + ["start"] = { + ["U"] = { 1440 }, + }, + }, + [345] = { + ["end"] = { + ["U"] = { 341 }, + }, + ["lvl"] = 24, + ["min"] = 20, + ["pre"] = { 344 }, + ["start"] = { + ["U"] = { 951 }, + }, + }, + [346] = { + ["end"] = { + ["U"] = { 1444 }, + }, + ["lvl"] = 24, + ["min"] = 20, + ["pre"] = { 347 }, + ["start"] = { + ["U"] = { 951 }, + }, + }, + [347] = { + ["end"] = { + ["U"] = { 951 }, + }, + ["lvl"] = 24, + ["min"] = 20, + ["obj"] = { + ["I"] = { 2798 }, + }, + ["pre"] = { 345 }, + ["start"] = { + ["U"] = { 341 }, + }, + }, + [348] = { + ["end"] = { + ["U"] = { 2486 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 2797 }, + }, + ["start"] = { + ["U"] = { 2486 }, + }, + }, + [349] = { + ["end"] = { + ["U"] = { 1449 }, + }, + ["lvl"] = 35, + ["min"] = 32, + ["obj"] = { + ["I"] = { 2799 }, + }, + ["pre"] = { 348 }, + ["start"] = { + ["U"] = { 1449 }, + }, + }, + [350] = { + ["end"] = { + ["U"] = { 482 }, + }, + ["lvl"] = 31, + ["min"] = 16, + ["pre"] = { 393 }, + ["start"] = { + ["U"] = { 332 }, + }, + }, + [351] = { + ["end"] = { + ["U"] = { 7784 }, + }, + ["lvl"] = 48, + ["min"] = 43, + ["start"] = { + ["I"] = { 8623, 8623, 8623 }, + }, + }, + [352] = { + ["lvl"] = 1, + ["min"] = 1, + }, + [353] = { + ["end"] = { + ["U"] = { 1343 }, + }, + ["lvl"] = 15, + ["min"] = 9, + ["pre"] = { 1097 }, + ["start"] = { + ["U"] = { 1416 }, + }, + }, + [354] = { + ["end"] = { + ["U"] = { 1500 }, + }, + ["lvl"] = 11, + ["min"] = 7, + ["obj"] = { + ["I"] = { 2828, 2829, 2830 }, + }, + ["start"] = { + ["U"] = { 1500 }, + }, + }, + [355] = { + ["end"] = { + ["U"] = { 1499 }, + }, + ["lvl"] = 10, + ["min"] = 7, + ["pre"] = { 354 }, + ["start"] = { + ["U"] = { 1500 }, + }, + }, + [356] = { + ["end"] = { + ["U"] = { 1495 }, + }, + ["lvl"] = 11, + ["min"] = 6, + ["obj"] = { + ["U"] = { 1529, 1532 }, + }, + ["start"] = { + ["U"] = { 1495 }, + }, + }, + [357] = { + ["end"] = { + ["U"] = { 1498 }, + }, + ["lvl"] = 8, + ["min"] = 5, + ["obj"] = { + ["I"] = { 2833 }, + }, + ["pre"] = { 405 }, + ["start"] = { + ["U"] = { 1498 }, + }, + }, + [358] = { + ["end"] = { + ["U"] = { 1499 }, + }, + ["lvl"] = 8, + ["min"] = 4, + ["obj"] = { + ["I"] = { 2834 }, + ["U"] = { 1675, 1941 }, + }, + ["start"] = { + ["U"] = { 1499 }, + }, + }, + [359] = { + ["end"] = { + ["U"] = { 1495 }, + }, + ["lvl"] = 9, + ["min"] = 6, + ["pre"] = { 358 }, + ["start"] = { + ["U"] = { 1499 }, + }, + }, + [360] = { + ["end"] = { + ["U"] = { 1499 }, + }, + ["lvl"] = 9, + ["min"] = 6, + ["pre"] = { 359 }, + ["start"] = { + ["U"] = { 1495 }, + }, + }, + [361] = { + ["end"] = { + ["U"] = { 1560 }, + }, + ["lvl"] = 7, + ["min"] = 4, + ["race"] = 178, + ["start"] = { + ["I"] = { 2839 }, + }, + }, + [362] = { + ["end"] = { + ["U"] = { 1500 }, + }, + ["lvl"] = 10, + ["min"] = 7, + ["obj"] = { + ["I"] = { 2831 }, + }, + ["start"] = { + ["U"] = { 1500 }, + }, + }, + [363] = { + ["end"] = { + ["U"] = { 1569 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["race"] = 16, + ["start"] = { + ["U"] = { 1568 }, + }, + }, + [364] = { + ["end"] = { + ["U"] = { 1569 }, + }, + ["lvl"] = 2, + ["min"] = 1, + ["obj"] = { + ["U"] = { 1501, 1502 }, + }, + ["pre"] = { 363 }, + ["start"] = { + ["U"] = { 1569 }, + }, + }, + [365] = { + ["end"] = { + ["U"] = { 1518 }, + }, + ["lvl"] = 7, + ["min"] = 4, + ["obj"] = { + ["I"] = { 2846 }, + }, + ["start"] = { + ["U"] = { 1519 }, + }, + }, + [366] = { + ["end"] = { + ["U"] = { 1497 }, + }, + ["lvl"] = 8, + ["min"] = 5, + ["pre"] = { 357 }, + ["start"] = { + ["U"] = { 1498 }, + }, + }, + [367] = { + ["end"] = { + ["U"] = { 1518 }, + }, + ["lvl"] = 6, + ["min"] = 6, + ["obj"] = { + ["I"] = { 2858 }, + }, + ["start"] = { + ["U"] = { 1518 }, + }, + }, + [368] = { + ["end"] = { + ["U"] = { 1518 }, + }, + ["lvl"] = 9, + ["min"] = 6, + ["obj"] = { + ["I"] = { 2859 }, + }, + ["pre"] = { 367 }, + ["start"] = { + ["U"] = { 1518 }, + }, + }, + [369] = { + ["end"] = { + ["U"] = { 1518 }, + }, + ["lvl"] = 11, + ["min"] = 6, + ["obj"] = { + ["I"] = { 2872 }, + }, + ["pre"] = { 368 }, + ["start"] = { + ["U"] = { 1518 }, + }, + }, + [370] = { + ["end"] = { + ["U"] = { 1515 }, + }, + ["lvl"] = 9, + ["min"] = 5, + ["obj"] = { + ["U"] = { 1536, 1537, 1662 }, + }, + ["pre"] = { 427 }, + ["start"] = { + ["U"] = { 1515 }, + }, + }, + [371] = { + ["end"] = { + ["U"] = { 1515 }, + }, + ["lvl"] = 10, + ["min"] = 5, + ["obj"] = { + ["U"] = { 1538, 1664 }, + }, + ["pre"] = { 370 }, + ["start"] = { + ["U"] = { 1515 }, + }, + }, + [372] = { + ["end"] = { + ["U"] = { 1515 }, + }, + ["lvl"] = 12, + ["min"] = 5, + ["obj"] = { + ["U"] = { 1660, 1665 }, + }, + ["pre"] = { 371 }, + ["start"] = { + ["U"] = { 1515 }, + }, + }, + [373] = { + ["end"] = { + ["U"] = { 1646 }, + }, + ["lvl"] = 22, + ["min"] = 16, + ["race"] = 77, + ["start"] = { + ["I"] = { 2874 }, + }, + }, + [374] = { + ["end"] = { + ["U"] = { 1652 }, + }, + ["lvl"] = 7, + ["min"] = 5, + ["obj"] = { + ["I"] = { 2875 }, + }, + ["pre"] = { 427 }, + ["start"] = { + ["U"] = { 1652 }, + }, + }, + [375] = { + ["end"] = { + ["U"] = { 1521 }, + }, + ["lvl"] = 8, + ["min"] = 7, + ["obj"] = { + ["I"] = { 2320, 2876 }, + }, + ["start"] = { + ["U"] = { 1521 }, + }, + }, + [376] = { + ["end"] = { + ["U"] = { 1661 }, + }, + ["lvl"] = 2, + ["min"] = 2, + ["obj"] = { + ["I"] = { 3264, 3265 }, + }, + ["start"] = { + ["U"] = { 1661 }, + }, + }, + [377] = { + ["end"] = { + ["U"] = { 270 }, + }, + ["lvl"] = 26, + ["min"] = 22, + ["obj"] = { + ["I"] = { 3628 }, + }, + ["start"] = { + ["U"] = { 270 }, + }, + }, + [378] = { + ["end"] = { + ["U"] = { 1074 }, + }, + ["lvl"] = 27, + ["min"] = 22, + ["obj"] = { + ["I"] = { 3640 }, + }, + ["pre"] = { 303 }, + ["start"] = { + ["U"] = { 1074 }, + }, + }, + [379] = { + ["end"] = { + ["U"] = { 7407 }, + }, + ["lvl"] = 46, + ["min"] = 38, + ["obj"] = { + ["I"] = { 8483 }, + }, + ["pre"] = { 243 }, + ["start"] = { + ["U"] = { 7407 }, + }, + }, + [380] = { + ["end"] = { + ["U"] = { 1570 }, + }, + ["lvl"] = 4, + ["min"] = 2, + ["obj"] = { + ["U"] = { 1504, 1505 }, + }, + ["pre"] = { 376 }, + ["start"] = { + ["U"] = { 1570 }, + }, + }, + [381] = { + ["end"] = { + ["U"] = { 1570 }, + }, + ["lvl"] = 4, + ["min"] = 2, + ["obj"] = { + ["I"] = { 3266 }, + }, + ["pre"] = { 380 }, + ["start"] = { + ["U"] = { 1570 }, + }, + }, + [382] = { + ["end"] = { + ["U"] = { 1570 }, + }, + ["lvl"] = 5, + ["min"] = 2, + ["obj"] = { + ["I"] = { 2885 }, + }, + ["pre"] = { 381 }, + ["start"] = { + ["U"] = { 1570 }, + }, + }, + [383] = { + ["end"] = { + ["U"] = { 1515 }, + }, + ["lvl"] = 5, + ["min"] = 2, + ["pre"] = { 382 }, + ["start"] = { + ["U"] = { 1570 }, + }, + }, + [384] = { + ["end"] = { + ["U"] = { 1267 }, + }, + ["lvl"] = 7, + ["min"] = 5, + ["obj"] = { + ["I"] = { 2886, 2894 }, + }, + ["skill"] = 185, + ["start"] = { + ["U"] = { 1267 }, + }, + }, + [385] = { + ["end"] = { + ["U"] = { 1154 }, + }, + ["lvl"] = 15, + ["min"] = 10, + ["obj"] = { + ["I"] = { 2924, 2925 }, + }, + ["start"] = { + ["U"] = { 1154 }, + }, + }, + [386] = { + ["end"] = { + ["U"] = { 859 }, + }, + ["lvl"] = 25, + ["min"] = 22, + ["obj"] = { + ["I"] = { 3630 }, + }, + ["start"] = { + ["U"] = { 859 }, + }, + }, + [387] = { + ["end"] = { + ["U"] = { 1719 }, + }, + ["lvl"] = 26, + ["min"] = 22, + ["obj"] = { + ["U"] = { 1706, 1711, 1715 }, + }, + ["start"] = { + ["U"] = { 1719 }, + }, + }, + [388] = { + ["end"] = { + ["U"] = { 1721 }, + }, + ["lvl"] = 26, + ["min"] = 22, + ["obj"] = { + ["I"] = { 2909 }, + }, + ["start"] = { + ["U"] = { 1721 }, + }, + }, + [389] = { + ["end"] = { + ["U"] = { 1719 }, + }, + ["lvl"] = 22, + ["min"] = 16, + ["pre"] = { 373 }, + ["start"] = { + ["U"] = { 1646 }, + }, + }, + [390] = { + ["lvl"] = 1, + ["min"] = 1, + }, + [391] = { + ["end"] = { + ["U"] = { 1719 }, + }, + ["lvl"] = 29, + ["min"] = 16, + ["obj"] = { + ["I"] = { 2926 }, + }, + ["pre"] = { 389 }, + ["start"] = { + ["U"] = { 1719 }, + }, + }, + [392] = { + ["end"] = { + ["U"] = { 1646 }, + }, + ["lvl"] = 29, + ["min"] = 16, + ["pre"] = { 391 }, + ["start"] = { + ["U"] = { 1719 }, + }, + }, + [393] = { + ["end"] = { + ["U"] = { 332 }, + }, + ["lvl"] = 29, + ["min"] = 16, + ["pre"] = { 392 }, + ["start"] = { + ["U"] = { 1646 }, + }, + }, + [394] = { + ["end"] = { + ["U"] = { 332 }, + }, + ["lvl"] = 31, + ["min"] = 16, + ["pre"] = { 434 }, + ["start"] = { + ["U"] = { 482 }, + }, + }, + [395] = { + ["end"] = { + ["U"] = { 1646 }, + }, + ["lvl"] = 31, + ["min"] = 16, + ["pre"] = { 394 }, + ["start"] = { + ["U"] = { 332 }, + }, + }, + [396] = { + ["end"] = { + ["U"] = { 1749 }, + }, + ["lvl"] = 31, + ["min"] = 16, + ["pre"] = { 395 }, + ["start"] = { + ["U"] = { 1646 }, + }, + }, + [397] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 1733 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["pre"] = { 336 }, + ["start"] = { + ["U"] = { 1435 }, + }, + }, + [398] = { + ["end"] = { + ["U"] = { 1515 }, + }, + ["lvl"] = 10, + ["min"] = 6, + ["obj"] = { + ["I"] = { 3635 }, + }, + ["start"] = { + ["O"] = { 711 }, + }, + }, + [399] = { + ["end"] = { + ["U"] = { 1646 }, + }, + ["lvl"] = 15, + ["min"] = 10, + ["obj"] = { + ["I"] = { 2998 }, + }, + ["start"] = { + ["U"] = { 1646 }, + }, + }, + [400] = { + ["end"] = { + ["U"] = { 1376 }, + }, + ["lvl"] = 5, + ["min"] = 2, + ["start"] = { + ["U"] = { 1872 }, + }, + }, + [401] = { + ["end"] = { + ["U"] = { 268 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["pre"] = { 251 }, + ["start"] = { + ["U"] = { 268 }, + }, + }, + [403] = { + ["end"] = { + ["O"] = { 269 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 310 }, + ["start"] = { + ["O"] = { 269 }, + }, + }, + [404] = { + ["end"] = { + ["U"] = { 1496 }, + }, + ["lvl"] = 6, + ["min"] = 4, + ["obj"] = { + ["I"] = { 2855 }, + }, + ["start"] = { + ["U"] = { 1496 }, + }, + }, + [405] = { + ["end"] = { + ["U"] = { 1498 }, + }, + ["lvl"] = 8, + ["min"] = 5, + ["pre"] = { 358 }, + ["start"] = { + ["U"] = { 1499 }, + }, + }, + [406] = { + ["lvl"] = 1, + ["min"] = 1, + }, + [407] = { + ["end"] = { + ["U"] = { 1931 }, + }, + ["lvl"] = 7, + ["min"] = 4, + ["pre"] = { 365 }, + ["start"] = { + ["U"] = { 1518 }, + }, + }, + [408] = { + ["end"] = { + ["U"] = { 1499 }, + }, + ["lvl"] = 13, + ["min"] = 7, + ["obj"] = { + ["I"] = { 3082 }, + ["U"] = { 1530, 1534 }, + }, + ["pre"] = { 355 }, + ["start"] = { + ["U"] = { 1499 }, + }, + }, + [409] = { + ["end"] = { + ["U"] = { 1497 }, + }, + ["lvl"] = 12, + ["min"] = 5, + ["obj"] = { + ["U"] = { 1946 }, + }, + ["pre"] = { 366 }, + ["start"] = { + ["U"] = { 1497 }, + }, + }, + [410] = { + ["end"] = { + ["O"] = { 1557 }, + }, + ["lvl"] = 10, + ["min"] = 5, + ["obj"] = { + ["I"] = { 3080 }, + }, + ["pre"] = { 409 }, + ["start"] = { + ["O"] = { 1557 }, + }, + }, + [411] = { + ["end"] = { + ["U"] = { 1498 }, + }, + ["lvl"] = 12, + ["min"] = 5, + ["pre"] = { 409 }, + ["start"] = { + ["U"] = { 1497 }, + }, + }, + [412] = { + ["end"] = { + ["U"] = { 1269 }, + }, + ["lvl"] = 10, + ["min"] = 7, + ["obj"] = { + ["I"] = { 3083, 3084 }, + }, + ["start"] = { + ["U"] = { 1269 }, + }, + }, + [413] = { + ["end"] = { + ["U"] = { 1959 }, + }, + ["lvl"] = 10, + ["min"] = 8, + ["pre"] = { 315, 415 }, + ["start"] = { + ["U"] = { 1374 }, + }, + }, + [414] = { + ["end"] = { + ["U"] = { 1340 }, + }, + ["lvl"] = 10, + ["min"] = 8, + ["pre"] = { 413 }, + ["start"] = { + ["U"] = { 1959 }, + }, + }, + [415] = { + ["end"] = { + ["U"] = { 1374 }, + }, + ["lvl"] = 10, + ["min"] = 8, + ["pre"] = { 315 }, + ["start"] = { + ["U"] = { 1872, 1378 }, + }, + }, + [416] = { + ["end"] = { + ["U"] = { 1340 }, + }, + ["lvl"] = 11, + ["min"] = 10, + ["obj"] = { + ["I"] = { 3110 }, + }, + ["start"] = { + ["U"] = { 1340 }, + }, + }, + [417] = { + ["end"] = { + ["U"] = { 1960 }, + }, + ["lvl"] = 11, + ["min"] = 8, + ["obj"] = { + ["I"] = { 3183 }, + }, + ["pre"] = { 419 }, + ["start"] = { + ["O"] = { 2059 }, + }, + }, + [418] = { + ["end"] = { + ["U"] = { 1963 }, + }, + ["lvl"] = 11, + ["min"] = 7, + ["obj"] = { + ["I"] = { 3172, 3173, 3174 }, + }, + ["start"] = { + ["U"] = { 1963 }, + }, + }, + [419] = { + ["end"] = { + ["O"] = { 2059 }, + }, + ["lvl"] = 10, + ["min"] = 8, + ["start"] = { + ["U"] = { 1960 }, + }, + }, + [420] = { + ["end"] = { + ["U"] = { 1252 }, + }, + ["lvl"] = 5, + ["min"] = 1, + ["pre"] = { 282 }, + ["start"] = { + ["U"] = { 1965 }, + }, + }, + [421] = { + ["end"] = { + ["U"] = { 1938 }, + }, + ["lvl"] = 10, + ["min"] = 9, + ["obj"] = { + ["U"] = { 1769 }, + }, + ["start"] = { + ["U"] = { 1938 }, + }, + }, + [422] = { + ["end"] = { + ["U"] = { 1938 }, + }, + ["lvl"] = 11, + ["min"] = 9, + ["obj"] = { + ["I"] = { 3155 }, + }, + ["pre"] = { 421 }, + ["start"] = { + ["U"] = { 1938 }, + }, + }, + [423] = { + ["end"] = { + ["U"] = { 1938 }, + }, + ["lvl"] = 14, + ["min"] = 9, + ["obj"] = { + ["I"] = { 3156, 3157 }, + }, + ["pre"] = { 422 }, + ["start"] = { + ["U"] = { 1938 }, + }, + }, + [424] = { + ["end"] = { + ["U"] = { 1938 }, + }, + ["lvl"] = 15, + ["min"] = 9, + ["obj"] = { + ["I"] = { 3634 }, + }, + ["pre"] = { 423 }, + ["start"] = { + ["U"] = { 1938 }, + }, + }, + [425] = { + ["end"] = { + ["U"] = { 1950 }, + }, + ["lvl"] = 12, + ["min"] = 10, + ["obj"] = { + ["I"] = { 3621 }, + }, + ["pre"] = { 430 }, + ["start"] = { + ["U"] = { 1950 }, + }, + }, + [426] = { + ["end"] = { + ["U"] = { 1496 }, + }, + ["lvl"] = 8, + ["min"] = 6, + ["obj"] = { + ["I"] = { 3162, 3163 }, + }, + ["pre"] = { 404 }, + ["start"] = { + ["U"] = { 1496 }, + }, + }, + [427] = { + ["end"] = { + ["U"] = { 1515 }, + }, + ["lvl"] = 8, + ["min"] = 5, + ["obj"] = { + ["U"] = { 1535 }, + }, + ["pre"] = { 383 }, + ["start"] = { + ["U"] = { 1515 }, + }, + }, + [428] = { + ["end"] = { + ["U"] = { 1950 }, + }, + ["lvl"] = 12, + ["min"] = 10, + ["start"] = { + ["U"] = { 1952 }, + }, + }, + [429] = { + ["end"] = { + ["U"] = { 1937 }, + }, + ["lvl"] = 11, + ["min"] = 10, + ["obj"] = { + ["I"] = { 3164 }, + }, + ["pre"] = { 428 }, + ["start"] = { + ["U"] = { 1950 }, + }, + }, + [430] = { + ["end"] = { + ["U"] = { 1951 }, + }, + ["lvl"] = 11, + ["min"] = 10, + ["pre"] = { 429 }, + ["start"] = { + ["U"] = { 1937 }, + }, + }, + [431] = { + ["end"] = { + ["O"] = { 1586 }, + }, + ["lvl"] = 10, + ["min"] = 5, + ["pre"] = { 409 }, + ["start"] = { + ["O"] = { 1586 }, + }, + }, + [432] = { + ["end"] = { + ["U"] = { 1254 }, + }, + ["lvl"] = 9, + ["min"] = 5, + ["obj"] = { + ["U"] = { 1115 }, + }, + ["start"] = { + ["U"] = { 1254 }, + }, + }, + [433] = { + ["end"] = { + ["U"] = { 1977 }, + }, + ["lvl"] = 11, + ["min"] = 6, + ["obj"] = { + ["U"] = { 1117 }, + }, + ["start"] = { + ["U"] = { 1977 }, + }, + }, + [434] = { + ["end"] = { + ["U"] = { 482 }, + }, + ["lvl"] = 31, + ["min"] = 16, + ["obj"] = { + ["U"] = { 1754, 1755 }, + }, + ["pre"] = { 2746 }, + ["start"] = { + ["U"] = { 7766 }, + }, + }, + [435] = { + ["end"] = { + ["U"] = { 1950 }, + }, + ["lvl"] = 11, + ["min"] = 10, + ["start"] = { + ["U"] = { 1978 }, + }, + }, + [436] = { + ["end"] = { + ["U"] = { 1345 }, + }, + ["lvl"] = 18, + ["min"] = 13, + ["start"] = { + ["U"] = { 1105 }, + }, + }, + [437] = { + ["end"] = { + ["U"] = { 1952 }, + }, + ["lvl"] = 14, + ["min"] = 10, + ["obj"] = { + ["A"] = { 173 }, + ["I"] = { 3622 }, + }, + ["start"] = { + ["U"] = { 1952 }, + }, + }, + [438] = { + ["end"] = { + ["O"] = { 1593 }, + }, + ["lvl"] = 16, + ["min"] = 10, + ["pre"] = { 437 }, + ["start"] = { + ["U"] = { 1952 }, + }, + }, + [439] = { + ["end"] = { + ["U"] = { 1952 }, + }, + ["lvl"] = 16, + ["min"] = 10, + ["pre"] = { 438 }, + ["start"] = { + ["O"] = { 1593 }, + }, + }, + [440] = { + ["end"] = { + ["U"] = { 1499 }, + }, + ["lvl"] = 16, + ["min"] = 10, + ["pre"] = { 439 }, + ["start"] = { + ["U"] = { 1952 }, + }, + }, + [441] = { + ["end"] = { + ["U"] = { 2050 }, + }, + ["lvl"] = 16, + ["min"] = 10, + ["pre"] = { 440 }, + ["start"] = { + ["U"] = { 1499 }, + }, + }, + [442] = { + ["end"] = { + ["U"] = { 1952 }, + }, + ["lvl"] = 24, + ["min"] = 10, + ["obj"] = { + ["I"] = { 3623 }, + }, + ["pre"] = { 448 }, + ["start"] = { + ["U"] = { 1952 }, + }, + }, + [443] = { + ["end"] = { + ["U"] = { 1937 }, + }, + ["lvl"] = 17, + ["min"] = 10, + ["obj"] = { + ["I"] = { 3236 }, + }, + ["pre"] = { 439 }, + ["start"] = { + ["U"] = { 1952 }, + }, + }, + [444] = { + ["end"] = { + ["U"] = { 1498 }, + }, + ["lvl"] = 17, + ["min"] = 10, + ["pre"] = { 443 }, + ["start"] = { + ["U"] = { 1937 }, + }, + }, + [445] = { + ["end"] = { + ["U"] = { 1937 }, + }, + ["lvl"] = 10, + ["min"] = 9, + ["start"] = { + ["U"] = { 1518 }, + }, + }, + [446] = { + ["end"] = { + ["U"] = { 1937 }, + }, + ["lvl"] = 16, + ["min"] = 10, + ["pre"] = { 444 }, + ["start"] = { + ["U"] = { 1498 }, + }, + }, + [447] = { + ["end"] = { + ["U"] = { 2055 }, + }, + ["lvl"] = 12, + ["min"] = 9, + ["obj"] = { + ["I"] = { 3253, 3254 }, + }, + ["start"] = { + ["U"] = { 1937 }, + }, + }, + [448] = { + ["end"] = { + ["U"] = { 1952 }, + }, + ["lvl"] = 16, + ["min"] = 10, + ["pre"] = { 446 }, + ["start"] = { + ["U"] = { 1937 }, + }, + }, + [449] = { + ["end"] = { + ["U"] = { 1952 }, + }, + ["lvl"] = 11, + ["min"] = 10, + ["pre"] = { 435 }, + ["start"] = { + ["U"] = { 1950 }, + }, + }, + [450] = { + ["end"] = { + ["U"] = { 1937 }, + }, + ["lvl"] = 15, + ["min"] = 9, + ["obj"] = { + ["I"] = { 3255 }, + }, + ["pre"] = { 447 }, + ["start"] = { + ["U"] = { 2055 }, + }, + }, + [451] = { + ["end"] = { + ["U"] = { 2055 }, + }, + ["lvl"] = 18, + ["min"] = 9, + ["obj"] = { + ["I"] = { 3256, 3257, 3258 }, + }, + ["pre"] = { 450 }, + ["start"] = { + ["U"] = { 1937 }, + }, + }, + [452] = { + ["end"] = { + ["U"] = { 2058 }, + }, + ["lvl"] = 15, + ["min"] = 12, + ["start"] = { + ["U"] = { 2058 }, + }, + }, + [453] = { + ["end"] = { + ["U"] = { 288 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["pre"] = { 266 }, + ["start"] = { + ["U"] = { 273 }, + }, + }, + [454] = { + ["end"] = { + ["U"] = { 1379 }, + }, + ["lvl"] = 15, + ["min"] = 10, + ["pre"] = { 273 }, + ["start"] = { + ["U"] = { 2057 }, + }, + }, + [455] = { + ["end"] = { + ["U"] = { 2086 }, + }, + ["lvl"] = 21, + ["min"] = 19, + ["obj"] = { + ["A"] = { 175 }, + ["U"] = { 2102, 2103 }, + }, + ["pre"] = { 468 }, + ["start"] = { + ["U"] = { 1342 }, + }, + }, + [456] = { + ["end"] = { + ["U"] = { 2079 }, + }, + ["lvl"] = 2, + ["min"] = 1, + ["obj"] = { + ["U"] = { 1984, 2031 }, + }, + ["start"] = { + ["U"] = { 2079 }, + }, + }, + [457] = { + ["end"] = { + ["U"] = { 2079 }, + }, + ["lvl"] = 3, + ["min"] = 1, + ["obj"] = { + ["U"] = { 1985, 2032 }, + }, + ["pre"] = { 456 }, + ["start"] = { + ["U"] = { 2079 }, + }, + }, + [458] = { + ["end"] = { + ["U"] = { 1992 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["start"] = { + ["U"] = { 2077 }, + }, + }, + [459] = { + ["end"] = { + ["U"] = { 1992 }, + }, + ["lvl"] = 3, + ["min"] = 1, + ["obj"] = { + ["I"] = { 3297 }, + }, + ["pre"] = { 458 }, + ["start"] = { + ["U"] = { 1992 }, + }, + }, + [460] = { + ["end"] = { + ["O"] = { 1599 }, + }, + ["lvl"] = 17, + ["min"] = 12, + ["race"] = 178, + ["start"] = { + ["I"] = { 3317 }, + }, + }, + [461] = { + ["end"] = { + ["O"] = { 112888 }, + }, + ["lvl"] = 18, + ["min"] = 12, + ["pre"] = { 460 }, + ["start"] = { + ["O"] = { 1599 }, + }, + }, + [462] = { + ["lvl"] = 1, + ["min"] = 1, + ["obj"] = { + ["U"] = { 2090 }, + }, + }, + [463] = { + ["end"] = { + ["U"] = { 1244 }, + }, + ["lvl"] = 21, + ["min"] = 20, + ["start"] = { + ["U"] = { 1239 }, + }, + }, + [464] = { + ["end"] = { + ["U"] = { 2104 }, + }, + ["lvl"] = 28, + ["min"] = 23, + ["obj"] = { + ["I"] = { 3337 }, + }, + ["pre"] = { 473 }, + ["start"] = { + ["U"] = { 2104 }, + }, + }, + [465] = { + ["end"] = { + ["O"] = { 1609 }, + }, + ["lvl"] = 31, + ["min"] = 23, + ["pre"] = { 464 }, + ["start"] = { + ["U"] = { 2104 }, + }, + }, + [466] = { + ["end"] = { + ["U"] = { 1377 }, + }, + ["lvl"] = 22, + ["min"] = 20, + ["obj"] = { + ["I"] = { 3340 }, + }, + ["pre"] = { 467 }, + ["start"] = { + ["U"] = { 1377 }, + }, + }, + [467] = { + ["end"] = { + ["U"] = { 1377 }, + }, + ["lvl"] = 23, + ["min"] = 20, + ["start"] = { + ["U"] = { 1340, 2092 }, + }, + }, + [468] = { + ["end"] = { + ["U"] = { 1342 }, + }, + ["lvl"] = 21, + ["min"] = 19, + ["start"] = { + ["U"] = { 1340 }, + }, + }, + [469] = { + ["end"] = { + ["U"] = { 2094 }, + }, + ["lvl"] = 21, + ["min"] = 18, + ["start"] = { + ["U"] = { 2093 }, + }, + }, + [470] = { + ["end"] = { + ["U"] = { 2111 }, + }, + ["lvl"] = 24, + ["min"] = 19, + ["obj"] = { + ["I"] = { 3349 }, + }, + ["start"] = { + ["U"] = { 2111 }, + }, + }, + [471] = { + ["end"] = { + ["U"] = { 2094 }, + }, + ["lvl"] = 26, + ["min"] = 18, + ["obj"] = { + ["I"] = { 3348 }, + }, + ["pre"] = { 484 }, + ["start"] = { + ["U"] = { 2094 }, + }, + }, + [472] = { + ["end"] = { + ["U"] = { 1071 }, + }, + ["lvl"] = 25, + ["min"] = 25, + ["start"] = { + ["U"] = { 2097 }, + }, + }, + [473] = { + ["end"] = { + ["U"] = { 2104 }, + }, + ["lvl"] = 28, + ["min"] = 23, + ["start"] = { + ["U"] = { 2086 }, + }, + }, + [474] = { + ["end"] = { + ["U"] = { 2104 }, + }, + ["lvl"] = 32, + ["min"] = 23, + ["obj"] = { + ["I"] = { 3625 }, + }, + ["pre"] = { 465 }, + ["start"] = { + ["O"] = { 1609 }, + }, + }, + [475] = { + ["end"] = { + ["U"] = { 2107 }, + }, + ["lvl"] = 6, + ["min"] = 4, + ["start"] = { + ["U"] = { 2078 }, + }, + }, + [476] = { + ["end"] = { + ["U"] = { 2078 }, + }, + ["lvl"] = 6, + ["min"] = 4, + ["pre"] = { 475 }, + ["start"] = { + ["U"] = { 2107 }, + }, + }, + [477] = { + ["end"] = { + ["O"] = { 1627 }, + }, + ["lvl"] = 14, + ["min"] = 10, + ["start"] = { + ["U"] = { 2121 }, + }, + }, + [478] = { + ["end"] = { + ["U"] = { 2121 }, + }, + ["lvl"] = 14, + ["min"] = 10, + ["pre"] = { 477 }, + ["start"] = { + ["O"] = { 1627 }, + }, + }, + [479] = { + ["end"] = { + ["U"] = { 2121 }, + }, + ["lvl"] = 16, + ["min"] = 10, + ["obj"] = { + ["I"] = { 3354 }, + }, + ["pre"] = { 482 }, + ["start"] = { + ["U"] = { 2121 }, + }, + }, + [480] = { + ["end"] = { + ["U"] = { 2121 }, + }, + ["lvl"] = 22, + ["min"] = 10, + ["obj"] = { + ["I"] = { 3515 }, + }, + ["pre"] = { 479 }, + ["start"] = { + ["U"] = { 2121 }, + }, + }, + [481] = { + ["end"] = { + ["U"] = { 1938 }, + }, + ["lvl"] = 14, + ["min"] = 10, + ["pre"] = { 478 }, + ["start"] = { + ["U"] = { 2121 }, + }, + }, + [482] = { + ["end"] = { + ["U"] = { 2121 }, + }, + ["lvl"] = 14, + ["min"] = 10, + ["pre"] = { 481 }, + ["start"] = { + ["U"] = { 1938 }, + }, + }, + [483] = { + ["end"] = { + ["U"] = { 2078 }, + }, + ["lvl"] = 9, + ["min"] = 4, + ["obj"] = { + ["I"] = { 3405, 3406, 3407, 3408 }, + }, + ["pre"] = { 476 }, + ["start"] = { + ["U"] = { 2078 }, + }, + }, + [484] = { + ["end"] = { + ["U"] = { 2094 }, + }, + ["lvl"] = 22, + ["min"] = 18, + ["obj"] = { + ["I"] = { 3397 }, + }, + ["start"] = { + ["U"] = { 2094 }, + }, + }, + [485] = { + ["end"] = { + ["U"] = { 7806 }, + }, + ["lvl"] = 48, + ["min"] = 43, + ["start"] = { + ["I"] = { 8704, 8704, 8704 }, + }, + }, + [486] = { + ["end"] = { + ["U"] = { 2078 }, + }, + ["lvl"] = 12, + ["min"] = 4, + ["obj"] = { + ["U"] = { 2039 }, + }, + ["pre"] = { 483 }, + ["start"] = { + ["U"] = { 2078 }, + }, + }, + [487] = { + ["end"] = { + ["U"] = { 2151 }, + }, + ["lvl"] = 8, + ["min"] = 5, + ["obj"] = { + ["U"] = { 2152 }, + }, + ["start"] = { + ["U"] = { 2151 }, + }, + }, + [488] = { + ["end"] = { + ["U"] = { 2150 }, + }, + ["lvl"] = 5, + ["min"] = 4, + ["obj"] = { + ["I"] = { 3409, 3411, 3412 }, + }, + ["start"] = { + ["U"] = { 2150 }, + }, + }, + [489] = { + ["end"] = { + ["U"] = { 2150 }, + }, + ["lvl"] = 7, + ["min"] = 4, + ["obj"] = { + ["I"] = { 3418 }, + }, + ["pre"] = { 488 }, + ["start"] = { + ["U"] = { 2083 }, + }, + }, + [490] = { + ["lvl"] = 7, + ["min"] = 5, + ["obj"] = { + ["I"] = { 5220 }, + }, + }, + [491] = { + ["end"] = { + ["U"] = { 1498 }, + }, + ["lvl"] = 18, + ["min"] = 12, + ["pre"] = { 461 }, + ["start"] = { + ["O"] = { 112888 }, + }, + }, + [492] = { + ["end"] = { + ["U"] = { 2211 }, + }, + ["lvl"] = 11, + ["min"] = 6, + ["pre"] = { 369 }, + ["start"] = { + ["U"] = { 1518 }, + }, + }, + [493] = { + ["end"] = { + ["U"] = { 2216 }, + }, + ["lvl"] = 20, + ["min"] = 19, + ["start"] = { + ["U"] = { 1937 }, + }, + }, + [494] = { + ["end"] = { + ["U"] = { 2215 }, + }, + ["lvl"] = 20, + ["min"] = 19, + ["start"] = { + ["U"] = { 2214 }, + }, + }, + [495] = { + ["end"] = { + ["U"] = { 2278 }, + }, + ["lvl"] = 39, + ["min"] = 34, + ["start"] = { + ["U"] = { 2227 }, + }, + }, + [496] = { + ["end"] = { + ["U"] = { 2216 }, + }, + ["lvl"] = 22, + ["min"] = 19, + ["obj"] = { + ["I"] = { 3476, 3477 }, + }, + ["start"] = { + ["U"] = { 2216 }, + }, + }, + [497] = { + ["lvl"] = 22, + ["min"] = 19, + }, + [498] = { + ["end"] = { + ["U"] = { 2229 }, + }, + ["lvl"] = 22, + ["min"] = 17, + ["obj"] = { + ["I"] = { 3467, 3499 }, + ["IR"] = { 3467, 3499 }, + ["O"] = { 1721, 1722 }, + }, + ["start"] = { + ["U"] = { 2229 }, + }, + }, + [499] = { + ["end"] = { + ["U"] = { 2230 }, + }, + ["lvl"] = 22, + ["min"] = 19, + ["pre"] = { 496 }, + ["start"] = { + ["U"] = { 2216 }, + }, + }, + [500] = { + ["end"] = { + ["U"] = { 2263 }, + }, + ["lvl"] = 36, + ["min"] = 30, + ["obj"] = { + ["I"] = { 2843 }, + }, + ["start"] = { + ["U"] = { 2263 }, + }, + }, + [501] = { + ["end"] = { + ["U"] = { 2216 }, + }, + ["lvl"] = 24, + ["min"] = 21, + ["obj"] = { + ["I"] = { 3496 }, + }, + ["start"] = { + ["U"] = { 2216 }, + }, + }, + [502] = { + ["end"] = { + ["U"] = { 2274 }, + }, + ["lvl"] = 24, + ["min"] = 21, + ["pre"] = { 501 }, + ["start"] = { + ["U"] = { 2216 }, + }, + }, + [503] = { + ["end"] = { + ["U"] = { 2316 }, + }, + ["lvl"] = 36, + ["min"] = 29, + ["obj"] = { + ["A"] = { 178 }, + ["I"] = { 3704 }, + }, + ["pre"] = { 533 }, + ["start"] = { + ["U"] = { 2229 }, + }, + }, + [504] = { + ["end"] = { + ["U"] = { 2263 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["obj"] = { + ["U"] = { 2287 }, + }, + ["pre"] = { 500 }, + ["start"] = { + ["U"] = { 2263 }, + }, + }, + [505] = { + ["end"] = { + ["U"] = { 2276 }, + }, + ["lvl"] = 33, + ["min"] = 26, + ["obj"] = { + ["U"] = { 2240, 2241 }, + }, + ["start"] = { + ["U"] = { 2276 }, + }, + }, + [506] = { + ["end"] = { + ["U"] = { 2229 }, + }, + ["lvl"] = 36, + ["min"] = 29, + ["pre"] = { 503 }, + ["start"] = { + ["U"] = { 2316 }, + }, + }, + [507] = { + ["end"] = { + ["U"] = { 2317 }, + }, + ["lvl"] = 42, + ["min"] = 29, + ["obj"] = { + ["U"] = { 2423 }, + }, + ["pre"] = { 506 }, + ["start"] = { + ["U"] = { 2229 }, + }, + }, + [508] = { + ["end"] = { + ["U"] = { 2229 }, + }, + ["lvl"] = 40, + ["min"] = 29, + ["pre"] = { 507 }, + ["start"] = { + ["U"] = { 2317 }, + }, + }, + [509] = { + ["end"] = { + ["U"] = { 2216 }, + }, + ["lvl"] = 28, + ["min"] = 24, + ["obj"] = { + ["I"] = { 3502 }, + }, + ["start"] = { + ["U"] = { 2216 }, + }, + }, + [510] = { + ["end"] = { + ["U"] = { 2276 }, + }, + ["lvl"] = 34, + ["min"] = 26, + ["start"] = { + ["O"] = { 1740, 1738, 1739 }, + }, + }, + [511] = { + ["end"] = { + ["U"] = { 2277 }, + }, + ["lvl"] = 34, + ["min"] = 30, + ["start"] = { + ["O"] = { 1740, 1738, 1739 }, + }, + }, + [512] = { + ["end"] = { + ["U"] = { 2276 }, + }, + ["lvl"] = 36, + ["min"] = 26, + ["obj"] = { + ["I"] = { 3505 }, + }, + ["pre"] = { 510 }, + ["start"] = { + ["U"] = { 2276 }, + }, + }, + [513] = { + ["end"] = { + ["U"] = { 2055 }, + }, + ["lvl"] = 28, + ["min"] = 24, + ["pre"] = { 509 }, + ["start"] = { + ["U"] = { 2216 }, + }, + }, + [514] = { + ["end"] = { + ["U"] = { 1356 }, + }, + ["lvl"] = 34, + ["min"] = 30, + ["pre"] = { 511 }, + ["start"] = { + ["U"] = { 2277 }, + }, + }, + [515] = { + ["end"] = { + ["U"] = { 2216 }, + }, + ["lvl"] = 30, + ["min"] = 24, + ["obj"] = { + ["I"] = { 3388, 3509, 3510 }, + }, + ["pre"] = { 513 }, + ["start"] = { + ["U"] = { 2055 }, + }, + }, + [516] = { + ["end"] = { + ["U"] = { 2121 }, + }, + ["lvl"] = 21, + ["min"] = 16, + ["obj"] = { + ["U"] = { 1973, 1974 }, + }, + ["start"] = { + ["U"] = { 2121 }, + }, + }, + [517] = { + ["end"] = { + ["U"] = { 2216 }, + }, + ["lvl"] = 30, + ["min"] = 24, + ["obj"] = { + ["I"] = { 3517 }, + }, + ["pre"] = { 515 }, + ["start"] = { + ["U"] = { 2216 }, + }, + }, + [518] = { + ["end"] = { + ["U"] = { 2278 }, + }, + ["lvl"] = 39, + ["min"] = 34, + ["obj"] = { + ["U"] = { 2254 }, + }, + ["pre"] = { 495 }, + ["start"] = { + ["U"] = { 2278 }, + }, + }, + [519] = { + ["end"] = { + ["U"] = { 2278 }, + }, + ["lvl"] = 41, + ["min"] = 34, + ["obj"] = { + ["I"] = { 3550, 3551, 3552 }, + }, + ["pre"] = { 518 }, + ["start"] = { + ["U"] = { 2278 }, + }, + }, + [520] = { + ["end"] = { + ["U"] = { 2278 }, + }, + ["lvl"] = 43, + ["min"] = 34, + ["obj"] = { + ["I"] = { 3553, 3554 }, + }, + ["pre"] = { 519 }, + ["start"] = { + ["U"] = { 2278 }, + }, + }, + [521] = { + ["end"] = { + ["U"] = { 2227 }, + }, + ["lvl"] = 43, + ["min"] = 34, + ["pre"] = { 520 }, + ["start"] = { + ["U"] = { 2278 }, + }, + }, + [522] = { + ["end"] = { + ["U"] = { 2276 }, + }, + ["lvl"] = 38, + ["min"] = 30, + ["race"] = 77, + ["start"] = { + ["I"] = { 3668 }, + }, + }, + [523] = { + ["end"] = { + ["U"] = { 2276 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["obj"] = { + ["I"] = { 3626 }, + }, + ["pre"] = { 522 }, + ["start"] = { + ["U"] = { 2276 }, + }, + }, + [524] = { + ["end"] = { + ["O"] = { 1728 }, + }, + ["lvl"] = 30, + ["min"] = 24, + ["pre"] = { 517 }, + ["start"] = { + ["U"] = { 2216 }, + }, + }, + [525] = { + ["end"] = { + ["U"] = { 2276 }, + }, + ["lvl"] = 34, + ["min"] = 30, + ["pre"] = { 514 }, + ["start"] = { + ["U"] = { 1356 }, + }, + }, + [526] = { + ["end"] = { + ["U"] = { 1217 }, + }, + ["lvl"] = 29, + ["min"] = 20, + ["obj"] = { + ["I"] = { 2702 }, + }, + ["pre"] = { 324 }, + ["start"] = { + ["U"] = { 1217 }, + }, + }, + [527] = { + ["end"] = { + ["U"] = { 2215 }, + }, + ["lvl"] = 24, + ["min"] = 19, + ["obj"] = { + ["U"] = { 232, 2266, 2360, 2403 }, + }, + ["start"] = { + ["U"] = { 2215 }, + }, + }, + [528] = { + ["end"] = { + ["U"] = { 2215 }, + }, + ["lvl"] = 25, + ["min"] = 19, + ["obj"] = { + ["U"] = { 2267 }, + }, + ["pre"] = { 527 }, + ["start"] = { + ["U"] = { 2215 }, + }, + }, + [529] = { + ["end"] = { + ["U"] = { 2215 }, + }, + ["lvl"] = 26, + ["min"] = 19, + ["obj"] = { + ["I"] = { 3564 }, + ["U"] = { 2265, 2404 }, + }, + ["pre"] = { 528 }, + ["start"] = { + ["U"] = { 2215 }, + }, + }, + [530] = { + ["end"] = { + ["U"] = { 2050 }, + }, + ["lvl"] = 20, + ["min"] = 10, + ["obj"] = { + ["I"] = { 3613 }, + }, + ["pre"] = { 441 }, + ["start"] = { + ["U"] = { 2050 }, + }, + }, + [531] = { + ["end"] = { + ["U"] = { 1156 }, + }, + ["lvl"] = 20, + ["min"] = 15, + ["pre"] = { 271 }, + ["start"] = { + ["U"] = { 1187 }, + }, + }, + [532] = { + ["end"] = { + ["U"] = { 2215 }, + }, + ["lvl"] = 26, + ["min"] = 19, + ["obj"] = { + ["I"] = { 3657 }, + ["O"] = { 1761 }, + ["U"] = { 2335, 2387 }, + }, + ["pre"] = { 529 }, + ["start"] = { + ["U"] = { 2215 }, + }, + }, + [533] = { + ["end"] = { + ["U"] = { 2229 }, + }, + ["lvl"] = 34, + ["min"] = 29, + ["obj"] = { + ["I"] = { 3601 }, + }, + ["start"] = { + ["U"] = { 2229 }, + }, + }, + [534] = { + ["lvl"] = 34, + ["min"] = 29, + }, + [535] = { + ["end"] = { + ["U"] = { 2333 }, + }, + ["lvl"] = 34, + ["min"] = 29, + ["obj"] = { + ["I"] = { 3703 }, + }, + ["start"] = { + ["U"] = { 2333 }, + }, + }, + [536] = { + ["end"] = { + ["U"] = { 2228 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["obj"] = { + ["U"] = { 2376, 2377 }, + }, + ["start"] = { + ["U"] = { 2228 }, + }, + }, + [537] = { + ["end"] = { + ["U"] = { 2276 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["obj"] = { + ["I"] = { 3672 }, + ["U"] = { 2318 }, + }, + ["pre"] = { 525 }, + ["start"] = { + ["U"] = { 2276 }, + }, + }, + [538] = { + ["end"] = { + ["U"] = { 2277 }, + }, + ["lvl"] = 38, + ["min"] = 20, + ["pre"] = { 337 }, + ["start"] = { + ["U"] = { 1440 }, + }, + }, + [539] = { + ["end"] = { + ["U"] = { 2215 }, + }, + ["lvl"] = 28, + ["min"] = 19, + ["obj"] = { + ["U"] = { 2269, 2305 }, + }, + ["pre"] = { 532 }, + ["start"] = { + ["U"] = { 2215 }, + }, + }, + [540] = { + ["end"] = { + ["U"] = { 2277 }, + }, + ["lvl"] = 38, + ["min"] = 20, + ["obj"] = { + ["I"] = { 3658, 3659 }, + }, + ["pre"] = { 538 }, + ["start"] = { + ["U"] = { 2277 }, + }, + }, + [541] = { + ["end"] = { + ["U"] = { 2215 }, + }, + ["lvl"] = 30, + ["min"] = 19, + ["obj"] = { + ["U"] = { 2304, 2344, 2345, 2346 }, + }, + ["pre"] = { 539 }, + ["start"] = { + ["U"] = { 2215 }, + }, + }, + [542] = { + ["end"] = { + ["U"] = { 1440 }, + }, + ["lvl"] = 38, + ["min"] = 20, + ["pre"] = { 540 }, + ["start"] = { + ["U"] = { 2277 }, + }, + }, + [543] = { + ["end"] = { + ["U"] = { 2285 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["obj"] = { + ["I"] = { 3684 }, + }, + ["start"] = { + ["U"] = { 2285 }, + }, + }, + [544] = { + ["end"] = { + ["U"] = { 2410 }, + }, + ["lvl"] = 34, + ["min"] = 30, + ["obj"] = { + ["I"] = { 3688, 3689, 3690, 3691 }, + }, + ["start"] = { + ["U"] = { 2410 }, + }, + }, + [545] = { + ["end"] = { + ["U"] = { 2410 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["U"] = { 2358, 2359 }, + }, + ["pre"] = { 544 }, + ["start"] = { + ["U"] = { 2410 }, + }, + }, + [546] = { + ["end"] = { + ["U"] = { 2418 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["obj"] = { + ["I"] = { 3692 }, + }, + ["pre"] = { 527 }, + ["start"] = { + ["U"] = { 2418 }, + }, + }, + [547] = { + ["end"] = { + ["U"] = { 2419 }, + }, + ["lvl"] = 30, + ["min"] = 26, + ["obj"] = { + ["I"] = { 3693 }, + }, + ["start"] = { + ["U"] = { 2419 }, + }, + }, + [548] = { + ["lvl"] = 35, + ["min"] = 20, + }, + [549] = { + ["end"] = { + ["U"] = { 2215 }, + }, + ["lvl"] = 22, + ["min"] = 17, + ["obj"] = { + ["U"] = { 2260, 2261 }, + }, + ["start"] = { + ["O"] = { 1763 }, + }, + }, + [550] = { + ["end"] = { + ["U"] = { 2425 }, + }, + ["lvl"] = 32, + ["min"] = 19, + ["pre"] = { 541 }, + ["start"] = { + ["U"] = { 2215 }, + }, + }, + [551] = { + ["end"] = { + ["U"] = { 2277 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["race"] = 77, + ["start"] = { + ["I"] = { 3706 }, + }, + }, + [552] = { + ["end"] = { + ["U"] = { 2429 }, + }, + ["lvl"] = 33, + ["min"] = 29, + ["obj"] = { + ["I"] = { 3708 }, + }, + ["start"] = { + ["U"] = { 2429 }, + }, + }, + [553] = { + ["end"] = { + ["O"] = { 1767 }, + }, + ["lvl"] = 33, + ["min"] = 29, + ["obj"] = { + ["IR"] = { 3710 }, + ["O"] = { 1768, 1769, 1770 }, + }, + ["pre"] = { 552 }, + ["start"] = { + ["U"] = { 2429 }, + }, + }, + [554] = { + ["end"] = { + ["U"] = { 1356 }, + }, + ["lvl"] = 40, + ["min"] = 28, + ["pre"] = { 551 }, + ["start"] = { + ["U"] = { 2277 }, + }, + }, + [555] = { + ["end"] = { + ["U"] = { 2430 }, + }, + ["lvl"] = 31, + ["min"] = 28, + ["obj"] = { + ["I"] = { 3712, 3713 }, + }, + ["start"] = { + ["U"] = { 2430 }, + }, + }, + [556] = { + ["end"] = { + ["U"] = { 2437 }, + }, + ["lvl"] = 32, + ["min"] = 30, + ["obj"] = { + ["I"] = { 3714 }, + }, + ["start"] = { + ["U"] = { 2437 }, + }, + }, + [557] = { + ["end"] = { + ["U"] = { 2437 }, + }, + ["lvl"] = 34, + ["min"] = 30, + ["obj"] = { + ["I"] = { 3715 }, + }, + ["pre"] = { 556 }, + ["start"] = { + ["U"] = { 2437 }, + }, + }, + [558] = { + ["end"] = { + ["U"] = { 14305 }, + }, + ["lvl"] = 60, + ["min"] = 10, + ["obj"] = { + ["I"] = { 18642 }, + }, + ["race"] = 77, + ["start"] = { + ["U"] = { 14305 }, + }, + }, + [559] = { + ["end"] = { + ["U"] = { 2228 }, + }, + ["lvl"] = 32, + ["min"] = 25, + ["obj"] = { + ["I"] = { 3716 }, + }, + ["pre"] = { 536 }, + ["start"] = { + ["U"] = { 2228 }, + }, + }, + [560] = { + ["end"] = { + ["U"] = { 2263 }, + }, + ["lvl"] = 32, + ["min"] = 25, + ["pre"] = { 559 }, + ["start"] = { + ["U"] = { 2228 }, + }, + }, + [561] = { + ["end"] = { + ["U"] = { 2228 }, + }, + ["lvl"] = 32, + ["min"] = 25, + ["pre"] = { 560 }, + ["start"] = { + ["U"] = { 2263 }, + }, + }, + [562] = { + ["end"] = { + ["U"] = { 2228 }, + }, + ["lvl"] = 32, + ["min"] = 25, + ["obj"] = { + ["U"] = { 2369, 2371 }, + }, + ["pre"] = { 561 }, + ["start"] = { + ["U"] = { 2228 }, + }, + }, + [563] = { + ["end"] = { + ["U"] = { 2439 }, + }, + ["lvl"] = 32, + ["min"] = 25, + ["pre"] = { 562 }, + ["start"] = { + ["U"] = { 2228 }, + }, + }, + [564] = { + ["end"] = { + ["U"] = { 2382 }, + }, + ["lvl"] = 34, + ["min"] = 30, + ["obj"] = { + ["U"] = { 2406, 2407 }, + }, + ["start"] = { + ["U"] = { 2382 }, + }, + }, + [565] = { + ["end"] = { + ["U"] = { 2438 }, + }, + ["lvl"] = 34, + ["min"] = 29, + ["obj"] = { + ["I"] = { 2321, 2997, 3719, 3720 }, + }, + ["start"] = { + ["U"] = { 2438 }, + }, + }, + [566] = { + ["end"] = { + ["U"] = { 2215 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["obj"] = { + ["I"] = { 3626 }, + }, + ["start"] = { + ["O"] = { 1763 }, + }, + }, + [567] = { + ["end"] = { + ["U"] = { 2215 }, + }, + ["lvl"] = 28, + ["min"] = 19, + ["obj"] = { + ["U"] = { 2448, 2449, 2450, 2451 }, + }, + ["start"] = { + ["O"] = { 2008 }, + }, + }, + [568] = { + ["end"] = { + ["U"] = { 2464 }, + }, + ["lvl"] = 36, + ["min"] = 33, + ["obj"] = { + ["U"] = { 686 }, + }, + ["start"] = { + ["U"] = { 2464 }, + }, + }, + [569] = { + ["end"] = { + ["U"] = { 2464 }, + }, + ["lvl"] = 37, + ["min"] = 33, + ["obj"] = { + ["U"] = { 1142, 1144 }, + }, + ["pre"] = { 568 }, + ["start"] = { + ["U"] = { 2464 }, + }, + }, + [570] = { + ["end"] = { + ["U"] = { 2465 }, + }, + ["lvl"] = 38, + ["min"] = 33, + ["obj"] = { + ["I"] = { 3838, 3839 }, + }, + ["start"] = { + ["U"] = { 2465 }, + }, + }, + [571] = { + ["end"] = { + ["U"] = { 2465 }, + }, + ["lvl"] = 41, + ["min"] = 33, + ["obj"] = { + ["I"] = { 3862 }, + }, + ["pre"] = { 572 }, + ["start"] = { + ["U"] = { 2465 }, + }, + }, + [572] = { + ["end"] = { + ["U"] = { 2465 }, + }, + ["lvl"] = 41, + ["min"] = 33, + ["obj"] = { + ["I"] = { 3863 }, + }, + ["pre"] = { 570 }, + ["start"] = { + ["U"] = { 2465 }, + }, + }, + [573] = { + ["end"] = { + ["U"] = { 2465 }, + }, + ["lvl"] = 44, + ["min"] = 33, + ["obj"] = { + ["I"] = { 737 }, + ["U"] = { 1907 }, + }, + ["pre"] = { 571 }, + ["start"] = { + ["U"] = { 2465 }, + }, + }, + [574] = { + ["end"] = { + ["U"] = { 469 }, + }, + ["lvl"] = 38, + ["min"] = 30, + ["obj"] = { + ["U"] = { 938, 941 }, + }, + ["pre"] = { 203, 204 }, + ["start"] = { + ["U"] = { 733 }, + }, + }, + [575] = { + ["end"] = { + ["U"] = { 2495 }, + }, + ["lvl"] = 31, + ["min"] = 26, + ["obj"] = { + ["I"] = { 4053 }, + }, + ["start"] = { + ["U"] = { 2495 }, + }, + }, + [576] = { + ["end"] = { + ["U"] = { 2493 }, + }, + ["lvl"] = 42, + ["min"] = 37, + ["obj"] = { + ["I"] = { 3897 }, + }, + ["pre"] = { 595 }, + ["start"] = { + ["U"] = { 2493 }, + }, + }, + [577] = { + ["end"] = { + ["U"] = { 2495 }, + }, + ["lvl"] = 36, + ["min"] = 31, + ["obj"] = { + ["I"] = { 4104 }, + }, + ["pre"] = { 575 }, + ["start"] = { + ["U"] = { 2495 }, + }, + }, + [578] = { + ["end"] = { + ["U"] = { 2496 }, + }, + ["lvl"] = 37, + ["min"] = 32, + ["obj"] = { + ["A"] = { 196 }, + }, + ["pre"] = { 616 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 2496 }, + }, + }, + [579] = { + ["end"] = { + ["U"] = { 2504 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["obj"] = { + ["I"] = { 3898 }, + }, + ["start"] = { + ["U"] = { 2504 }, + }, + }, + [580] = { + ["end"] = { + ["U"] = { 2491 }, + }, + ["lvl"] = 50, + ["min"] = 40, + ["obj"] = { + ["I"] = { 3900 }, + }, + ["start"] = { + ["U"] = { 2491 }, + }, + }, + [581] = { + ["end"] = { + ["U"] = { 2497 }, + }, + ["lvl"] = 34, + ["min"] = 30, + ["obj"] = { + ["I"] = { 3901 }, + }, + ["start"] = { + ["U"] = { 2497 }, + }, + }, + [582] = { + ["end"] = { + ["U"] = { 2497 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["obj"] = { + ["I"] = { 1532 }, + }, + ["pre"] = { 581 }, + ["start"] = { + ["U"] = { 2497 }, + }, + }, + [583] = { + ["end"] = { + ["U"] = { 715 }, + }, + ["lvl"] = 30, + ["min"] = 28, + ["start"] = { + ["U"] = { 716 }, + }, + }, + [584] = { + ["end"] = { + ["O"] = { 2076 }, + }, + ["lvl"] = 41, + ["min"] = 30, + ["obj"] = { + ["I"] = { 3904, 3905 }, + }, + ["pre"] = { 582 }, + ["start"] = { + ["U"] = { 2497 }, + }, + }, + [585] = { + ["end"] = { + ["O"] = { 2076 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["obj"] = { + ["I"] = { 3906, 3907, 3908 }, + }, + ["pre"] = { 584 }, + ["start"] = { + ["O"] = { 2076 }, + }, + }, + [586] = { + ["end"] = { + ["O"] = { 2076 }, + }, + ["lvl"] = 46, + ["min"] = 30, + ["obj"] = { + ["I"] = { 3909 }, + ["U"] = { 669, 781, 783 }, + }, + ["pre"] = { 584 }, + ["start"] = { + ["O"] = { 2076 }, + }, + }, + [587] = { + ["end"] = { + ["U"] = { 2488 }, + }, + ["lvl"] = 41, + ["min"] = 37, + ["obj"] = { + ["I"] = { 3910 }, + }, + ["pre"] = { 595 }, + ["start"] = { + ["U"] = { 2488 }, + }, + }, + [588] = { + ["end"] = { + ["U"] = { 2519 }, + }, + ["lvl"] = 45, + ["min"] = 30, + ["pre"] = { 585, 586 }, + ["start"] = { + ["O"] = { 2076 }, + }, + }, + [589] = { + ["end"] = { + ["U"] = { 2519 }, + }, + ["lvl"] = 45, + ["min"] = 30, + ["obj"] = { + ["I"] = { 3911 }, + }, + ["pre"] = { 588 }, + ["start"] = { + ["U"] = { 2519 }, + }, + }, + [590] = { + ["end"] = { + ["U"] = { 6784 }, + }, + ["lvl"] = 5, + ["min"] = 1, + ["pre"] = { 8 }, + ["start"] = { + ["U"] = { 6784 }, + }, + }, + [591] = { + ["end"] = { + ["U"] = { 2519 }, + }, + ["lvl"] = 46, + ["min"] = 30, + ["obj"] = { + ["I"] = { 3616 }, + }, + ["pre"] = { 589 }, + ["start"] = { + ["U"] = { 2519 }, + }, + }, + [592] = { + ["end"] = { + ["U"] = { 2497 }, + }, + ["lvl"] = 46, + ["min"] = 30, + ["obj"] = { + ["I"] = { 3913 }, + ["IR"] = { 3912 }, + }, + ["pre"] = { 591 }, + ["start"] = { + ["U"] = { 2519 }, + }, + }, + [593] = { + ["end"] = { + ["U"] = { 2530 }, + }, + ["lvl"] = 46, + ["min"] = 1, + ["obj"] = { + ["I"] = { 3912 }, + ["IR"] = { 3912 }, + }, + ["pre"] = { 592 }, + ["start"] = { + ["U"] = { 2530 }, + }, + }, + [594] = { + ["end"] = { + ["U"] = { 2634 }, + }, + ["lvl"] = 45, + ["min"] = 45, + ["start"] = { + ["I"] = { 4098 }, + }, + }, + [595] = { + ["end"] = { + ["O"] = { 2083 }, + }, + ["lvl"] = 41, + ["min"] = 37, + ["start"] = { + ["U"] = { 2490 }, + }, + }, + [596] = { + ["end"] = { + ["U"] = { 2519 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["obj"] = { + ["I"] = { 3915 }, + }, + ["start"] = { + ["U"] = { 2519 }, + }, + }, + [597] = { + ["end"] = { + ["U"] = { 2490 }, + }, + ["lvl"] = 41, + ["min"] = 37, + ["pre"] = { 595 }, + ["start"] = { + ["O"] = { 2083 }, + }, + }, + [598] = { + ["end"] = { + ["U"] = { 2519 }, + }, + ["lvl"] = 42, + ["min"] = 30, + ["obj"] = { + ["I"] = { 3916 }, + }, + ["pre"] = { 596 }, + ["start"] = { + ["U"] = { 2519 }, + }, + }, + [599] = { + ["end"] = { + ["U"] = { 2487 }, + }, + ["lvl"] = 41, + ["min"] = 37, + ["pre"] = { 597 }, + ["start"] = { + ["U"] = { 2490 }, + }, + }, + [600] = { + ["end"] = { + ["U"] = { 2498 }, + }, + ["lvl"] = 41, + ["min"] = 30, + ["obj"] = { + ["I"] = { 3917 }, + }, + ["pre"] = { 605 }, + ["start"] = { + ["U"] = { 2498 }, + }, + }, + [601] = { + ["end"] = { + ["U"] = { 2496 }, + }, + ["lvl"] = 37, + ["min"] = 32, + ["obj"] = { + ["I"] = { 3923 }, + }, + ["pre"] = { 578 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 2496 }, + }, + }, + [602] = { + ["end"] = { + ["U"] = { 2543 }, + }, + ["lvl"] = 37, + ["min"] = 32, + ["pre"] = { 601 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 2496 }, + }, + }, + [603] = { + ["end"] = { + ["U"] = { 2542 }, + }, + ["lvl"] = 37, + ["min"] = 32, + ["pre"] = { 602 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 2543 }, + }, + }, + [604] = { + ["end"] = { + ["U"] = { 2487 }, + }, + ["lvl"] = 43, + ["min"] = 37, + ["obj"] = { + ["I"] = { 3920, 3921 }, + ["U"] = { 1563 }, + }, + ["pre"] = { 599 }, + ["start"] = { + ["U"] = { 2487 }, + }, + }, + [605] = { + ["end"] = { + ["U"] = { 2498 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["I"] = { 3918 }, + }, + ["start"] = { + ["U"] = { 2498 }, + }, + }, + [606] = { + ["end"] = { + ["U"] = { 2502 }, + }, + ["lvl"] = 41, + ["min"] = 30, + ["obj"] = { + ["I"] = { 3919 }, + }, + ["start"] = { + ["U"] = { 2501 }, + }, + }, + [607] = { + ["end"] = { + ["U"] = { 2501 }, + }, + ["lvl"] = 41, + ["min"] = 30, + ["pre"] = { 606 }, + ["start"] = { + ["U"] = { 2502 }, + }, + }, + [608] = { + ["end"] = { + ["U"] = { 2487 }, + }, + ["lvl"] = 45, + ["min"] = 37, + ["obj"] = { + ["U"] = { 2546, 2548, 2550 }, + }, + ["pre"] = { 604 }, + ["start"] = { + ["U"] = { 2487 }, + }, + }, + [609] = { + ["end"] = { + ["U"] = { 2501 }, + }, + ["lvl"] = 44, + ["min"] = 30, + ["obj"] = { + ["I"] = { 3924, 3925, 3926 }, + }, + ["pre"] = { 607 }, + ["start"] = { + ["U"] = { 2501 }, + }, + }, + [610] = { + ["end"] = { + ["U"] = { 2542 }, + }, + ["lvl"] = 39, + ["min"] = 32, + ["obj"] = { + ["I"] = { 4027 }, + ["IR"] = { 4027 }, + }, + ["pre"] = { 603 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 2542 }, + }, + }, + [611] = { + ["end"] = { + ["U"] = { 2496 }, + }, + ["lvl"] = 40, + ["min"] = 32, + ["obj"] = { + ["I"] = { 4034 }, + ["IR"] = { 4027 }, + }, + ["pre"] = { 610 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 2542 }, + }, + }, + [613] = { + ["end"] = { + ["U"] = { 2501 }, + }, + ["lvl"] = 44, + ["min"] = 30, + ["obj"] = { + ["I"] = { 3930 }, + }, + ["pre"] = { 609 }, + ["start"] = { + ["U"] = { 2501 }, + }, + }, + [614] = { + ["end"] = { + ["U"] = { 2500 }, + }, + ["lvl"] = 47, + ["min"] = 35, + ["obj"] = { + ["I"] = { 3932 }, + }, + ["start"] = { + ["U"] = { 2500 }, + }, + }, + [615] = { + ["end"] = { + ["U"] = { 2594 }, + }, + ["lvl"] = 45, + ["min"] = 35, + ["pre"] = { 620 }, + ["start"] = { + ["U"] = { 2500 }, + }, + }, + [616] = { + ["end"] = { + ["U"] = { 2496 }, + }, + ["lvl"] = 37, + ["min"] = 32, + ["race"] = 77, + ["start"] = { + ["U"] = { 773 }, + }, + }, + [617] = { + ["end"] = { + ["U"] = { 2494 }, + }, + ["lvl"] = 43, + ["min"] = 38, + ["obj"] = { + ["I"] = { 4029 }, + }, + ["start"] = { + ["U"] = { 2494 }, + }, + }, + [618] = { + ["end"] = { + ["U"] = { 2500 }, + }, + ["lvl"] = 50, + ["min"] = 37, + ["obj"] = { + ["I"] = { 3935 }, + }, + ["pre"] = { 615 }, + ["start"] = { + ["U"] = { 2594 }, + }, + }, + [619] = { + ["end"] = { + ["O"] = { 2289 }, + }, + ["lvl"] = 52, + ["min"] = 1, + ["obj"] = { + ["I"] = { 4457, 4595 }, + }, + ["start"] = { + ["O"] = { 2289 }, + }, + }, + [620] = { + ["end"] = { + ["U"] = { 2500 }, + }, + ["lvl"] = 45, + ["min"] = 35, + ["start"] = { + ["I"] = { 3985 }, + }, + }, + [621] = { + ["end"] = { + ["U"] = { 2498 }, + }, + ["lvl"] = 44, + ["min"] = 35, + ["obj"] = { + ["I"] = { 4016 }, + }, + ["start"] = { + ["U"] = { 2498 }, + }, + }, + [622] = { + ["end"] = { + ["U"] = { 770 }, + }, + ["lvl"] = 37, + ["min"] = 32, + ["pre"] = { 627 }, + ["start"] = { + ["U"] = { 773 }, + }, + }, + [623] = { + ["end"] = { + ["U"] = { 2616 }, + }, + ["lvl"] = 43, + ["min"] = 38, + ["pre"] = { 617 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 2494 }, + }, + }, + [624] = { + ["end"] = { + ["O"] = { 2553 }, + }, + ["lvl"] = 43, + ["min"] = 35, + ["start"] = { + ["I"] = { 4056 }, + }, + }, + [625] = { + ["end"] = { + ["O"] = { 2555 }, + }, + ["lvl"] = 43, + ["min"] = 35, + ["pre"] = { 624 }, + ["start"] = { + ["O"] = { 2553 }, + }, + }, + [626] = { + ["end"] = { + ["O"] = { 2556 }, + }, + ["lvl"] = 51, + ["min"] = 35, + ["pre"] = { 625 }, + ["start"] = { + ["O"] = { 2555 }, + }, + }, + [627] = { + ["end"] = { + ["U"] = { 773 }, + }, + ["lvl"] = 37, + ["min"] = 32, + ["obj"] = { + ["I"] = { 4278 }, + }, + ["pre"] = { 210 }, + ["start"] = { + ["U"] = { 773 }, + }, + }, + [628] = { + ["end"] = { + ["U"] = { 2495 }, + }, + ["lvl"] = 38, + ["min"] = 31, + ["obj"] = { + ["I"] = { 4105 }, + }, + ["pre"] = { 577 }, + ["start"] = { + ["U"] = { 2495 }, + }, + }, + [629] = { + ["end"] = { + ["U"] = { 2519 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["obj"] = { + ["I"] = { 4094 }, + }, + ["start"] = { + ["U"] = { 2519 }, + }, + }, + [630] = { + ["end"] = { + ["U"] = { 2634 }, + }, + ["lvl"] = 51, + ["min"] = 45, + ["obj"] = { + ["I"] = { 4103 }, + }, + ["pre"] = { 594 }, + ["start"] = { + ["U"] = { 2634 }, + }, + }, + [631] = { + ["end"] = { + ["O"] = { 2652 }, + }, + ["lvl"] = 31, + ["min"] = 28, + ["start"] = { + ["U"] = { 1075 }, + }, + }, + [632] = { + ["end"] = { + ["U"] = { 1075 }, + }, + ["lvl"] = 31, + ["min"] = 28, + ["pre"] = { 631 }, + ["start"] = { + ["O"] = { 2652 }, + }, + }, + [633] = { + ["end"] = { + ["U"] = { 1075 }, + }, + ["lvl"] = 31, + ["min"] = 28, + ["obj"] = { + ["O"] = { 2704 }, + }, + ["pre"] = { 632 }, + ["start"] = { + ["U"] = { 1075 }, + }, + }, + [634] = { + ["end"] = { + ["U"] = { 2700 }, + }, + ["lvl"] = 31, + ["min"] = 28, + ["pre"] = { 633 }, + ["start"] = { + ["U"] = { 1075 }, + }, + }, + [635] = { + ["end"] = { + ["O"] = { 138492 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["start"] = { + ["I"] = { 4614 }, + }, + }, + [636] = { + ["lvl"] = 35, + ["min"] = 30, + }, + [637] = { + ["end"] = { + ["U"] = { 2695 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["race"] = 77, + ["start"] = { + ["I"] = { 4433 }, + }, + }, + [638] = { + ["end"] = { + ["U"] = { 2703 }, + }, + ["lvl"] = 37, + ["min"] = 32, + ["race"] = 178, + ["start"] = { + ["U"] = { 2497 }, + }, + }, + [639] = { + ["end"] = { + ["U"] = { 2703 }, + }, + ["lvl"] = 37, + ["min"] = 32, + ["obj"] = { + ["I"] = { 4440 }, + }, + ["pre"] = { 638 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 2703 }, + }, + }, + [640] = { + ["end"] = { + ["U"] = { 2706 }, + }, + ["lvl"] = 40, + ["min"] = 32, + ["obj"] = { + ["I"] = { 4450 }, + }, + ["pre"] = { 639 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 2703 }, + }, + }, + [641] = { + ["end"] = { + ["U"] = { 2703 }, + }, + ["lvl"] = 40, + ["min"] = 32, + ["pre"] = { 640 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 2706 }, + }, + }, + [642] = { + ["end"] = { + ["O"] = { 2701 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["obj"] = { + ["I"] = { 4435 }, + }, + ["start"] = { + ["O"] = { 138492 }, + }, + }, + [643] = { + ["end"] = { + ["U"] = { 2703 }, + }, + ["lvl"] = 41, + ["min"] = 32, + ["obj"] = { + ["I"] = { 4458 }, + }, + ["pre"] = { 641 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 2703 }, + }, + }, + [644] = { + ["end"] = { + ["U"] = { 2703 }, + }, + ["lvl"] = 42, + ["min"] = 32, + ["obj"] = { + ["I"] = { 4466 }, + }, + ["pre"] = { 643 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 2703 }, + }, + }, + [645] = { + ["end"] = { + ["O"] = { 2703 }, + }, + ["lvl"] = 42, + ["min"] = 32, + ["pre"] = { 644 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 2703 }, + }, + }, + [646] = { + ["end"] = { + ["U"] = { 2703 }, + }, + ["lvl"] = 42, + ["min"] = 32, + ["pre"] = { 645 }, + ["race"] = 178, + ["start"] = { + ["O"] = { 2703 }, + }, + }, + [647] = { + ["end"] = { + ["U"] = { 2705 }, + }, + ["lvl"] = 30, + ["min"] = 28, + ["start"] = { + ["U"] = { 2696 }, + }, + }, + [648] = { + ["end"] = { + ["U"] = { 7406 }, + }, + ["lvl"] = 48, + ["min"] = 43, + ["pre"] = { 351 }, + ["start"] = { + ["U"] = { 7784 }, + }, + }, + [649] = { + ["end"] = { + ["U"] = { 6987 }, + }, + ["lvl"] = 48, + ["min"] = 42, + ["start"] = { + ["U"] = { 6986 }, + }, + }, + [650] = { + ["end"] = { + ["U"] = { 7801 }, + }, + ["lvl"] = 48, + ["min"] = 42, + ["pre"] = { 649 }, + ["start"] = { + ["U"] = { 6987 }, + }, + }, + [651] = { + ["end"] = { + ["O"] = { 2702 }, + }, + ["lvl"] = 38, + ["min"] = 30, + ["obj"] = { + ["I"] = { 4483, 4484, 4485 }, + }, + ["pre"] = { 642 }, + ["start"] = { + ["O"] = { 2701 }, + }, + }, + [652] = { + ["end"] = { + ["O"] = { 2688 }, + }, + ["lvl"] = 42, + ["min"] = 30, + ["obj"] = { + ["I"] = { 4469 }, + }, + ["pre"] = { 651 }, + ["start"] = { + ["O"] = { 2702 }, + }, + }, + [653] = { + ["end"] = { + ["U"] = { 2786 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["pre"] = { 652 }, + ["race"] = 77, + ["start"] = { + ["O"] = { 2688 }, + }, + }, + [654] = { + ["end"] = { + ["U"] = { 7407 }, + }, + ["lvl"] = 46, + ["min"] = 38, + ["obj"] = { + ["I"] = { 8523, 9437, 9438, 9439, 9440, 9441, 9442 }, + }, + ["pre"] = { 379 }, + ["start"] = { + ["I"] = { 8524, 8524 }, + }, + }, + [655] = { + ["end"] = { + ["U"] = { 2706 }, + }, + ["lvl"] = 34, + ["min"] = 29, + ["race"] = 178, + ["start"] = { + ["U"] = { 2792 }, + }, + }, + [656] = { + ["end"] = { + ["O"] = { 138492 }, + }, + ["lvl"] = 50, + ["min"] = 30, + ["obj"] = { + ["I"] = { 4473 }, + ["IR"] = { 4472 }, + }, + ["pre"] = { 692 }, + ["start"] = { + ["U"] = { 2785 }, + }, + }, + [657] = { + ["end"] = { + ["U"] = { 2713 }, + }, + ["lvl"] = 36, + ["min"] = 30, + ["pre"] = { 658 }, + ["start"] = { + ["U"] = { 2712 }, + }, + }, + [658] = { + ["end"] = { + ["U"] = { 2712 }, + }, + ["lvl"] = 36, + ["min"] = 30, + ["obj"] = { + ["I"] = { 4482 }, + }, + ["pre"] = { 659 }, + ["start"] = { + ["U"] = { 2712 }, + }, + }, + [659] = { + ["end"] = { + ["U"] = { 2712 }, + }, + ["lvl"] = 33, + ["min"] = 30, + ["start"] = { + ["U"] = { 2711 }, + }, + }, + [660] = { + ["end"] = { + ["U"] = { 2712 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["pre"] = { 657 }, + ["start"] = { + ["U"] = { 2713 }, + }, + }, + [661] = { + ["end"] = { + ["U"] = { 2711 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["pre"] = { 660 }, + ["start"] = { + ["U"] = { 2712 }, + }, + }, + [662] = { + ["end"] = { + ["U"] = { 2767 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["obj"] = { + ["I"] = { 4487, 4488, 4489, 4490 }, + }, + ["pre"] = { 663 }, + ["start"] = { + ["U"] = { 2767 }, + }, + }, + [663] = { + ["end"] = { + ["U"] = { 2610 }, + }, + ["lvl"] = 35, + ["min"] = 35, + ["start"] = { + ["U"] = { 2766 }, + }, + }, + [664] = { + ["end"] = { + ["U"] = { 2769 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["obj"] = { + ["U"] = { 2595, 2596 }, + }, + ["start"] = { + ["U"] = { 2769 }, + }, + }, + [665] = { + ["end"] = { + ["U"] = { 2774 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["start"] = { + ["U"] = { 2768 }, + }, + }, + [666] = { + ["end"] = { + ["U"] = { 2774 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["obj"] = { + ["I"] = { 4492 }, + }, + ["pre"] = { 665 }, + ["start"] = { + ["U"] = { 2774 }, + }, + }, + [667] = { + ["end"] = { + ["U"] = { 2610 }, + }, + ["lvl"] = 44, + ["min"] = 35, + ["pre"] = { 670 }, + ["start"] = { + ["U"] = { 2610 }, + }, + }, + [668] = { + ["end"] = { + ["U"] = { 2610 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["pre"] = { 666 }, + ["start"] = { + ["U"] = { 2774 }, + }, + }, + [669] = { + ["end"] = { + ["U"] = { 2487 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["pre"] = { 668 }, + ["start"] = { + ["U"] = { 2610 }, + }, + }, + [670] = { + ["end"] = { + ["U"] = { 2610 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["pre"] = { 669 }, + ["start"] = { + ["U"] = { 2487 }, + }, + }, + [671] = { + ["end"] = { + ["U"] = { 2706 }, + }, + ["lvl"] = 33, + ["min"] = 30, + ["obj"] = { + ["I"] = { 4495 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 2706 }, + }, + }, + [672] = { + ["end"] = { + ["U"] = { 2706 }, + }, + ["lvl"] = 34, + ["min"] = 29, + ["obj"] = { + ["I"] = { 4512 }, + }, + ["pre"] = { 655 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 2706 }, + }, + }, + [673] = { + ["end"] = { + ["U"] = { 2706 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["obj"] = { + ["I"] = { 4510 }, + }, + ["pre"] = { 671 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 2706 }, + }, + }, + [674] = { + ["end"] = { + ["U"] = { 2792 }, + }, + ["lvl"] = 34, + ["min"] = 29, + ["pre"] = { 672 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 2706 }, + }, + }, + [675] = { + ["end"] = { + ["U"] = { 2706 }, + }, + ["lvl"] = 34, + ["min"] = 29, + ["pre"] = { 674 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 2792 }, + }, + }, + [676] = { + ["end"] = { + ["U"] = { 2771 }, + }, + ["lvl"] = 32, + ["min"] = 30, + ["obj"] = { + ["U"] = { 2562, 2564 }, + }, + ["start"] = { + ["U"] = { 2770 }, + }, + }, + [677] = { + ["end"] = { + ["U"] = { 2771 }, + }, + ["lvl"] = 32, + ["min"] = 30, + ["obj"] = { + ["U"] = { 2554, 2555, 2556 }, + }, + ["pre"] = { 676 }, + ["start"] = { + ["U"] = { 2771 }, + }, + }, + [678] = { + ["end"] = { + ["U"] = { 2771 }, + }, + ["lvl"] = 38, + ["min"] = 30, + ["obj"] = { + ["U"] = { 2566, 2567 }, + }, + ["pre"] = { 677 }, + ["start"] = { + ["U"] = { 2771 }, + }, + }, + [679] = { + ["end"] = { + ["U"] = { 2771 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["obj"] = { + ["U"] = { 2570, 2571 }, + }, + ["pre"] = { 678 }, + ["start"] = { + ["U"] = { 2771 }, + }, + }, + [680] = { + ["end"] = { + ["U"] = { 2772 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["obj"] = { + ["I"] = { 4551 }, + }, + ["pre"] = { 678 }, + ["start"] = { + ["U"] = { 2772 }, + }, + }, + [681] = { + ["end"] = { + ["U"] = { 2700 }, + }, + ["lvl"] = 31, + ["min"] = 30, + ["obj"] = { + ["U"] = { 2586, 2589 }, + }, + ["start"] = { + ["U"] = { 2700 }, + }, + }, + [682] = { + ["end"] = { + ["U"] = { 2700 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["obj"] = { + ["I"] = { 4506 }, + }, + ["pre"] = { 681 }, + ["start"] = { + ["U"] = { 2700 }, + }, + }, + [683] = { + ["end"] = { + ["U"] = { 2784 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["pre"] = { 637 }, + ["start"] = { + ["U"] = { 2695 }, + }, + }, + [684] = { + ["end"] = { + ["U"] = { 2700 }, + }, + ["lvl"] = 39, + ["min"] = 30, + ["obj"] = { + ["I"] = { 4515 }, + }, + ["start"] = { + ["O"] = { 2713 }, + }, + }, + [685] = { + ["end"] = { + ["U"] = { 2700 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["obj"] = { + ["I"] = { 4516, 4517 }, + }, + ["start"] = { + ["O"] = { 2713 }, + }, + }, + [686] = { + ["end"] = { + ["U"] = { 2790 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["pre"] = { 683 }, + ["start"] = { + ["U"] = { 2784 }, + }, + }, + [687] = { + ["end"] = { + ["U"] = { 2785 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["pre"] = { 653, 688 }, + ["start"] = { + ["U"] = { 2786, 2787 }, + }, + }, + [688] = { + ["end"] = { + ["U"] = { 2787 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["pre"] = { 652 }, + ["race"] = 178, + ["start"] = { + ["O"] = { 2688 }, + }, + }, + [689] = { + ["end"] = { + ["U"] = { 2790 }, + }, + ["lvl"] = 31, + ["min"] = 25, + ["obj"] = { + ["I"] = { 4521 }, + }, + ["pre"] = { 686 }, + ["start"] = { + ["U"] = { 2790 }, + }, + }, + [690] = { + ["end"] = { + ["U"] = { 2789 }, + }, + ["lvl"] = 32, + ["min"] = 30, + ["start"] = { + ["U"] = { 2708 }, + }, + }, + [691] = { + ["end"] = { + ["U"] = { 2788 }, + }, + ["lvl"] = 36, + ["min"] = 30, + ["obj"] = { + ["I"] = { 4503, 4522, 5040 }, + }, + ["start"] = { + ["U"] = { 2788 }, + }, + }, + [692] = { + ["end"] = { + ["U"] = { 2785 }, + }, + ["lvl"] = 41, + ["min"] = 30, + ["obj"] = { + ["I"] = { 4518, 4519, 4520 }, + }, + ["pre"] = { 687 }, + ["start"] = { + ["U"] = { 2785 }, + }, + }, + [693] = { + ["end"] = { + ["U"] = { 2789 }, + }, + ["lvl"] = 39, + ["min"] = 30, + ["obj"] = { + ["I"] = { 4525 }, + }, + ["pre"] = { 691 }, + ["start"] = { + ["U"] = { 2789 }, + }, + }, + [694] = { + ["end"] = { + ["U"] = { 2788 }, + }, + ["lvl"] = 39, + ["min"] = 30, + ["obj"] = { + ["I"] = { 4527 }, + }, + ["pre"] = { 693 }, + ["start"] = { + ["U"] = { 2789 }, + }, + }, + [695] = { + ["end"] = { + ["U"] = { 2789 }, + }, + ["lvl"] = 39, + ["min"] = 30, + ["obj"] = { + ["IR"] = { 4529 }, + }, + ["pre"] = { 694 }, + ["start"] = { + ["U"] = { 2788 }, + }, + }, + [696] = { + ["end"] = { + ["U"] = { 2789 }, + }, + ["lvl"] = 39, + ["min"] = 30, + ["obj"] = { + ["I"] = { 4530, 4531, 4532 }, + }, + ["pre"] = { 695 }, + ["start"] = { + ["U"] = { 2789 }, + }, + }, + [697] = { + ["end"] = { + ["U"] = { 2708 }, + }, + ["lvl"] = 39, + ["min"] = 30, + ["pre"] = { 696 }, + ["start"] = { + ["U"] = { 2789 }, + }, + }, + [698] = { + ["end"] = { + ["U"] = { 5592 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["obj"] = { + ["I"] = { 6169 }, + }, + ["start"] = { + ["U"] = { 5591 }, + }, + }, + [699] = { + ["end"] = { + ["U"] = { 5592 }, + }, + ["lvl"] = 42, + ["min"] = 35, + ["obj"] = { + ["I"] = { 6168 }, + }, + ["pre"] = { 698 }, + ["start"] = { + ["U"] = { 5592 }, + }, + }, + [700] = { + ["end"] = { + ["U"] = { 2784 }, + }, + ["lvl"] = 31, + ["min"] = 25, + ["pre"] = { 689 }, + ["start"] = { + ["U"] = { 2790 }, + }, + }, + [701] = { + ["end"] = { + ["U"] = { 2706 }, + }, + ["lvl"] = 37, + ["min"] = 29, + ["obj"] = { + ["I"] = { 4513 }, + }, + ["pre"] = { 675 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 2706 }, + }, + }, + [702] = { + ["end"] = { + ["U"] = { 2792 }, + }, + ["lvl"] = 37, + ["min"] = 29, + ["pre"] = { 701 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 2706 }, + }, + }, + [703] = { + ["end"] = { + ["U"] = { 2817 }, + }, + ["lvl"] = 40, + ["min"] = 33, + ["obj"] = { + ["I"] = { 3404 }, + }, + ["start"] = { + ["U"] = { 2817 }, + }, + }, + [704] = { + ["end"] = { + ["U"] = { 1344 }, + }, + ["lvl"] = 38, + ["min"] = 30, + ["obj"] = { + ["I"] = { 4610 }, + }, + ["pre"] = { 739 }, + ["start"] = { + ["U"] = { 1344 }, + }, + }, + [705] = { + ["end"] = { + ["U"] = { 2817 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["obj"] = { + ["I"] = { 4611 }, + }, + ["start"] = { + ["U"] = { 2817 }, + }, + }, + [706] = { + ["end"] = { + ["U"] = { 2860 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 4612 }, + }, + ["start"] = { + ["U"] = { 2860 }, + }, + }, + [707] = { + ["end"] = { + ["U"] = { 1344 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["start"] = { + ["U"] = { 1356 }, + }, + }, + [708] = { + ["end"] = { + ["U"] = { 2092 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["race"] = 77, + ["start"] = { + ["I"] = { 4613 }, + }, + }, + [709] = { + ["end"] = { + ["U"] = { 2785 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["obj"] = { + ["I"] = { 4631 }, + }, + ["start"] = { + ["U"] = { 2785 }, + }, + }, + [710] = { + ["end"] = { + ["U"] = { 2921 }, + }, + ["lvl"] = 37, + ["min"] = 35, + ["obj"] = { + ["I"] = { 4626 }, + }, + ["start"] = { + ["U"] = { 2921 }, + }, + }, + [711] = { + ["end"] = { + ["U"] = { 2921 }, + }, + ["lvl"] = 39, + ["min"] = 35, + ["obj"] = { + ["I"] = { 4627 }, + }, + ["pre"] = { 710 }, + ["start"] = { + ["U"] = { 2921 }, + }, + }, + [712] = { + ["end"] = { + ["U"] = { 2921 }, + }, + ["lvl"] = 42, + ["min"] = 35, + ["obj"] = { + ["I"] = { 4628 }, + }, + ["pre"] = { 711 }, + ["start"] = { + ["U"] = { 2921 }, + }, + }, + [713] = { + ["end"] = { + ["U"] = { 2921 }, + }, + ["lvl"] = 37, + ["min"] = 35, + ["obj"] = { + ["I"] = { 3829 }, + }, + ["start"] = { + ["U"] = { 2921 }, + }, + }, + [714] = { + ["end"] = { + ["U"] = { 2921 }, + }, + ["lvl"] = 37, + ["min"] = 35, + ["obj"] = { + ["I"] = { 4389 }, + }, + ["pre"] = { 713 }, + ["start"] = { + ["U"] = { 2921 }, + }, + }, + [715] = { + ["end"] = { + ["U"] = { 2920 }, + }, + ["lvl"] = 37, + ["min"] = 35, + ["obj"] = { + ["I"] = { 929, 3823 }, + }, + ["pre"] = { 714 }, + ["skill"] = 171, + ["start"] = { + ["U"] = { 2920 }, + }, + }, + [716] = { + ["end"] = { + ["U"] = { 2920 }, + }, + ["lvl"] = 42, + ["min"] = 35, + ["obj"] = { + ["I"] = { 2868 }, + }, + ["pre"] = { 712 }, + ["start"] = { + ["U"] = { 2920 }, + }, + }, + [717] = { + ["end"] = { + ["U"] = { 2888 }, + }, + ["lvl"] = 50, + ["min"] = 40, + ["obj"] = { + ["I"] = { 4615, 4645 }, + }, + ["pre"] = { 732 }, + ["start"] = { + ["U"] = { 2888 }, + }, + }, + [718] = { + ["end"] = { + ["U"] = { 2860 }, + }, + ["lvl"] = 38, + ["min"] = 35, + ["obj"] = { + ["I"] = { 4629 }, + }, + ["start"] = { + ["U"] = { 2860 }, + }, + }, + [719] = { + ["end"] = { + ["U"] = { 2910 }, + }, + ["lvl"] = 35, + ["min"] = 35, + ["obj"] = { + ["I"] = { 4616 }, + }, + ["start"] = { + ["U"] = { 2910 }, + }, + }, + [720] = { + ["end"] = { + ["U"] = { 2910 }, + }, + ["lvl"] = 35, + ["min"] = 35, + ["start"] = { + ["O"] = { 2868 }, + }, + }, + [721] = { + ["end"] = { + ["U"] = { 2909 }, + }, + ["lvl"] = 35, + ["min"] = 35, + ["pre"] = { 720 }, + ["start"] = { + ["U"] = { 2910 }, + }, + }, + [722] = { + ["end"] = { + ["U"] = { 2909 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["obj"] = { + ["I"] = { 4635 }, + }, + ["pre"] = { 721 }, + ["start"] = { + ["U"] = { 2909 }, + }, + }, + [723] = { + ["end"] = { + ["U"] = { 2910 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["pre"] = { 722 }, + ["start"] = { + ["U"] = { 2909 }, + }, + }, + [724] = { + ["end"] = { + ["U"] = { 2916 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["pre"] = { 723 }, + ["start"] = { + ["U"] = { 2910 }, + }, + }, + [725] = { + ["end"] = { + ["U"] = { 2918 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["pre"] = { 724 }, + ["start"] = { + ["U"] = { 2916 }, + }, + }, + [726] = { + ["end"] = { + ["U"] = { 2916 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["pre"] = { 725 }, + ["start"] = { + ["U"] = { 2918 }, + }, + }, + [727] = { + ["end"] = { + ["U"] = { 2786 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["pre"] = { 709 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 2785 }, + }, + }, + [728] = { + ["end"] = { + ["U"] = { 2934 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["pre"] = { 709 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 2785 }, + }, + }, + [729] = { + ["end"] = { + ["U"] = { 2917 }, + }, + ["lvl"] = 20, + ["min"] = 15, + ["pre"] = { 730 }, + ["start"] = { + ["U"] = { 2913 }, + }, + }, + [730] = { + ["end"] = { + ["U"] = { 2913 }, + }, + ["lvl"] = 14, + ["min"] = 14, + ["start"] = { + ["U"] = { 2912 }, + }, + }, + [731] = { + ["end"] = { + ["U"] = { 2913 }, + }, + ["lvl"] = 20, + ["min"] = 15, + ["pre"] = { 729 }, + ["start"] = { + ["U"] = { 2917 }, + }, + }, + [732] = { + ["end"] = { + ["U"] = { 2888 }, + }, + ["lvl"] = 43, + ["min"] = 40, + ["obj"] = { + ["I"] = { 4640 }, + }, + ["pre"] = { 718 }, + ["start"] = { + ["U"] = { 2888 }, + }, + }, + [733] = { + ["end"] = { + ["U"] = { 2860 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["obj"] = { + ["I"] = { 4630 }, + }, + ["pre"] = { 718 }, + ["start"] = { + ["U"] = { 2860 }, + }, + }, + [734] = { + ["end"] = { + ["U"] = { 2920 }, + }, + ["lvl"] = 42, + ["min"] = 35, + ["pre"] = { 712, 714 }, + ["start"] = { + ["U"] = { 2921 }, + }, + }, + [735] = { + ["end"] = { + ["U"] = { 2786 }, + }, + ["lvl"] = 44, + ["min"] = 30, + ["obj"] = { + ["I"] = { 4641, 4644, 4646 }, + }, + ["pre"] = { 727 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 2786 }, + }, + }, + [736] = { + ["end"] = { + ["U"] = { 2934 }, + }, + ["lvl"] = 44, + ["min"] = 30, + ["obj"] = { + ["I"] = { 4641, 4644, 4646 }, + }, + ["pre"] = { 728 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 2934 }, + }, + }, + [737] = { + ["end"] = { + ["U"] = { 2785 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["pre"] = { 735, 736 }, + ["start"] = { + ["U"] = { 2786, 2934 }, + }, + }, + [738] = { + ["end"] = { + ["O"] = { 2875 }, + }, + ["lvl"] = 38, + ["min"] = 30, + ["pre"] = { 707 }, + ["start"] = { + ["U"] = { 1344 }, + }, + }, + [739] = { + ["end"] = { + ["U"] = { 1344 }, + }, + ["lvl"] = 42, + ["min"] = 30, + ["obj"] = { + ["U"] = { 2893, 2945 }, + }, + ["pre"] = { 738 }, + ["start"] = { + ["O"] = { 2875 }, + }, + }, + [741] = { + ["end"] = { + ["U"] = { 2912 }, + }, + ["lvl"] = 20, + ["min"] = 15, + ["pre"] = { 731 }, + ["start"] = { + ["U"] = { 2913 }, + }, + }, + [742] = { + ["close"] = { 235, 742, 6382 }, + ["end"] = { + ["U"] = { 12696 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["start"] = { + ["U"] = { 10881 }, + }, + }, + [743] = { + ["end"] = { + ["U"] = { 2985 }, + }, + ["lvl"] = 8, + ["min"] = 5, + ["obj"] = { + ["I"] = { 4751 }, + }, + ["start"] = { + ["U"] = { 2985 }, + }, + }, + [744] = { + ["end"] = { + ["U"] = { 2987 }, + }, + ["lvl"] = 11, + ["min"] = 7, + ["obj"] = { + ["I"] = { 4752, 4753 }, + }, + ["start"] = { + ["U"] = { 2987 }, + }, + }, + [745] = { + ["end"] = { + ["U"] = { 2993 }, + }, + ["lvl"] = 6, + ["min"] = 1, + ["obj"] = { + ["U"] = { 2949, 2950, 2951 }, + }, + ["start"] = { + ["U"] = { 2993 }, + }, + }, + [746] = { + ["end"] = { + ["U"] = { 2993 }, + }, + ["lvl"] = 8, + ["min"] = 6, + ["obj"] = { + ["I"] = { 4702, 4703 }, + ["IR"] = { 4702 }, + }, + ["start"] = { + ["U"] = { 2993 }, + }, + }, + [747] = { + ["end"] = { + ["U"] = { 2980 }, + }, + ["lvl"] = 2, + ["min"] = 1, + ["obj"] = { + ["I"] = { 4739, 4740 }, + }, + ["start"] = { + ["U"] = { 2980 }, + }, + }, + [748] = { + ["end"] = { + ["U"] = { 2948 }, + }, + ["lvl"] = 5, + ["min"] = 4, + ["obj"] = { + ["I"] = { 4758, 4759 }, + }, + ["race"] = 32, + ["start"] = { + ["U"] = { 2948 }, + }, + }, + [749] = { + ["end"] = { + ["O"] = { 2908 }, + }, + ["lvl"] = 8, + ["min"] = 5, + ["start"] = { + ["U"] = { 2988 }, + }, + }, + [750] = { + ["end"] = { + ["U"] = { 2980 }, + }, + ["lvl"] = 3, + ["min"] = 1, + ["obj"] = { + ["I"] = { 4742 }, + }, + ["pre"] = { 747 }, + ["start"] = { + ["U"] = { 2980 }, + }, + }, + [751] = { + ["end"] = { + ["U"] = { 2988 }, + }, + ["lvl"] = 8, + ["min"] = 5, + ["pre"] = { 749 }, + ["start"] = { + ["O"] = { 2908 }, + }, + }, + [752] = { + ["end"] = { + ["U"] = { 2991 }, + }, + ["lvl"] = 2, + ["min"] = 1, + ["start"] = { + ["U"] = { 2981 }, + }, + }, + [753] = { + ["end"] = { + ["U"] = { 2981 }, + }, + ["lvl"] = 3, + ["min"] = 1, + ["obj"] = { + ["I"] = { 4755 }, + }, + ["pre"] = { 752 }, + ["start"] = { + ["U"] = { 2991 }, + }, + }, + [754] = { + ["end"] = { + ["U"] = { 2948 }, + }, + ["lvl"] = 6, + ["min"] = 4, + ["obj"] = { + ["IR"] = { 5411 }, + }, + ["pre"] = { 748 }, + ["start"] = { + ["U"] = { 2948 }, + }, + }, + [755] = { + ["end"] = { + ["U"] = { 2982 }, + }, + ["lvl"] = 3, + ["min"] = 1, + ["pre"] = { 753 }, + ["start"] = { + ["U"] = { 2981 }, + }, + }, + [756] = { + ["end"] = { + ["U"] = { 2948 }, + }, + ["lvl"] = 7, + ["min"] = 4, + ["obj"] = { + ["I"] = { 4801, 4802 }, + }, + ["pre"] = { 754 }, + ["race"] = 32, + ["start"] = { + ["U"] = { 2948 }, + }, + }, + [757] = { + ["end"] = { + ["U"] = { 2981 }, + }, + ["lvl"] = 4, + ["min"] = 1, + ["obj"] = { + ["I"] = { 4770 }, + }, + ["pre"] = { 755 }, + ["start"] = { + ["U"] = { 2982 }, + }, + }, + [758] = { + ["end"] = { + ["U"] = { 2948 }, + }, + ["lvl"] = 8, + ["min"] = 4, + ["obj"] = { + ["IR"] = { 5415 }, + }, + ["pre"] = { 756 }, + ["start"] = { + ["U"] = { 2948 }, + }, + }, + [759] = { + ["end"] = { + ["U"] = { 2948 }, + }, + ["lvl"] = 10, + ["min"] = 4, + ["obj"] = { + ["I"] = { 4803 }, + }, + ["pre"] = { 758 }, + ["race"] = 32, + ["start"] = { + ["U"] = { 2948 }, + }, + }, + [760] = { + ["end"] = { + ["U"] = { 2948 }, + }, + ["lvl"] = 10, + ["min"] = 4, + ["obj"] = { + ["IR"] = { 5416 }, + }, + ["pre"] = { 759 }, + ["start"] = { + ["U"] = { 2948 }, + }, + }, + [761] = { + ["end"] = { + ["U"] = { 2947 }, + }, + ["lvl"] = 6, + ["min"] = 4, + ["obj"] = { + ["I"] = { 4769 }, + }, + ["start"] = { + ["U"] = { 2947 }, + }, + }, + [762] = { + ["end"] = { + ["U"] = { 2918 }, + }, + ["lvl"] = 44, + ["min"] = 35, + ["obj"] = { + ["I"] = { 4621 }, + }, + ["pre"] = { 726 }, + ["start"] = { + ["U"] = { 2916 }, + }, + }, + [763] = { + ["end"] = { + ["U"] = { 2993 }, + }, + ["lvl"] = 5, + ["min"] = 1, + ["pre"] = { 757 }, + ["start"] = { + ["U"] = { 2981 }, + }, + }, + [764] = { + ["end"] = { + ["U"] = { 2988 }, + }, + ["lvl"] = 10, + ["min"] = 5, + ["obj"] = { + ["U"] = { 2978, 2979 }, + }, + ["pre"] = { 751 }, + ["start"] = { + ["U"] = { 2988 }, + }, + }, + [765] = { + ["end"] = { + ["U"] = { 2988 }, + }, + ["lvl"] = 12, + ["min"] = 5, + ["obj"] = { + ["I"] = { 4819 }, + }, + ["pre"] = { 751 }, + ["start"] = { + ["U"] = { 2988 }, + }, + }, + [766] = { + ["end"] = { + ["U"] = { 3055 }, + }, + ["lvl"] = 8, + ["min"] = 5, + ["obj"] = { + ["I"] = { 4804, 4805, 4806, 4807 }, + }, + ["start"] = { + ["U"] = { 3055 }, + }, + }, + [767] = { + ["end"] = { + ["U"] = { 3054 }, + }, + ["lvl"] = 6, + ["min"] = 3, + ["pre"] = { 763 }, + ["start"] = { + ["U"] = { 2993 }, + }, + }, + [768] = { + ["end"] = { + ["U"] = { 3050 }, + }, + ["lvl"] = 8, + ["min"] = 4, + ["obj"] = { + ["I"] = { 2318 }, + }, + ["skill"] = 393, + ["start"] = { + ["U"] = { 3050 }, + }, + }, + [769] = { + ["end"] = { + ["U"] = { 3050 }, + }, + ["lvl"] = 10, + ["min"] = 4, + ["obj"] = { + ["I"] = { 2318, 2320 }, + }, + ["skill"] = 165, + ["start"] = { + ["U"] = { 3050 }, + }, + }, + [770] = { + ["end"] = { + ["U"] = { 3052 }, + }, + ["lvl"] = 12, + ["min"] = 6, + ["race"] = 178, + ["start"] = { + ["I"] = { 4854 }, + }, + }, + [771] = { + ["end"] = { + ["U"] = { 3054 }, + }, + ["lvl"] = 7, + ["min"] = 3, + ["obj"] = { + ["I"] = { 4808, 4809 }, + }, + ["pre"] = { 767 }, + ["start"] = { + ["U"] = { 3054 }, + }, + }, + [772] = { + ["end"] = { + ["U"] = { 2984 }, + }, + ["lvl"] = 7, + ["min"] = 3, + ["obj"] = { + ["IR"] = { 4823 }, + }, + ["pre"] = { 771 }, + ["start"] = { + ["U"] = { 3054 }, + }, + }, + [773] = { + ["end"] = { + ["U"] = { 2994 }, + }, + ["lvl"] = 10, + ["min"] = 3, + ["pre"] = { 772 }, + ["start"] = { + ["U"] = { 2984 }, + }, + }, + [774] = { + ["lvl"] = 4, + ["min"] = 1, + }, + [775] = { + ["end"] = { + ["U"] = { 3057 }, + }, + ["lvl"] = 10, + ["min"] = 3, + ["pre"] = { 773 }, + ["start"] = { + ["U"] = { 2994 }, + }, + }, + [776] = { + ["end"] = { + ["U"] = { 3057 }, + }, + ["lvl"] = 14, + ["min"] = 3, + ["obj"] = { + ["I"] = { 4841 }, + }, + ["pre"] = { 775 }, + ["start"] = { + ["U"] = { 3057 }, + }, + }, + [777] = { + ["end"] = { + ["U"] = { 2921 }, + }, + ["lvl"] = 42, + ["min"] = 35, + ["pre"] = { 734 }, + ["start"] = { + ["U"] = { 2920 }, + }, + }, + [778] = { + ["end"] = { + ["U"] = { 2921 }, + }, + ["lvl"] = 45, + ["min"] = 35, + ["obj"] = { + ["I"] = { 4847 }, + }, + ["pre"] = { 777 }, + ["start"] = { + ["U"] = { 2921 }, + }, + }, + [779] = { + ["end"] = { + ["O"] = { 2933 }, + }, + ["lvl"] = 50, + ["min"] = 40, + ["obj"] = { + ["I"] = { 4843, 4844, 4845 }, + }, + ["pre"] = { 717 }, + ["start"] = { + ["O"] = { 2933 }, + }, + }, + [780] = { + ["end"] = { + ["U"] = { 2980 }, + }, + ["lvl"] = 4, + ["min"] = 1, + ["obj"] = { + ["I"] = { 4848, 4849 }, + }, + ["pre"] = { 750 }, + ["start"] = { + ["U"] = { 2980 }, + }, + }, + [781] = { + ["end"] = { + ["U"] = { 2981 }, + }, + ["lvl"] = 4, + ["min"] = 1, + ["race"] = 178, + ["start"] = { + ["I"] = { 4851 }, + }, + }, + [782] = { + ["end"] = { + ["U"] = { 1068 }, + }, + ["lvl"] = 43, + ["min"] = 40, + ["obj"] = { + ["I"] = { 4640 }, + }, + ["start"] = { + ["U"] = { 1068 }, + }, + }, + [783] = { + ["end"] = { + ["U"] = { 197 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["start"] = { + ["U"] = { 823 }, + }, + }, + [784] = { + ["end"] = { + ["U"] = { 3139 }, + }, + ["lvl"] = 7, + ["min"] = 3, + ["obj"] = { + ["U"] = { 3128, 3129, 3192 }, + }, + ["start"] = { + ["U"] = { 3139 }, + }, + }, + [785] = { + ["lvl"] = 8, + ["min"] = 5, + }, + [786] = { + ["end"] = { + ["U"] = { 3140 }, + }, + ["lvl"] = 8, + ["min"] = 5, + ["obj"] = { + ["O"] = { 3189, 3190, 3192 }, + }, + ["pre"] = { 785 }, + ["start"] = { + ["U"] = { 3140 }, + }, + }, + [787] = { + ["end"] = { + ["U"] = { 3143 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["start"] = { + ["U"] = { 3144 }, + }, + }, + [788] = { + ["end"] = { + ["U"] = { 3143 }, + }, + ["lvl"] = 2, + ["min"] = 1, + ["obj"] = { + ["U"] = { 3098 }, + }, + ["pre"] = { 787, 4641 }, + ["start"] = { + ["U"] = { 3143 }, + }, + }, + [789] = { + ["end"] = { + ["U"] = { 3143 }, + }, + ["lvl"] = 3, + ["min"] = 1, + ["obj"] = { + ["I"] = { 4862 }, + }, + ["pre"] = { 788 }, + ["start"] = { + ["U"] = { 3143 }, + }, + }, + [790] = { + ["end"] = { + ["U"] = { 3287 }, + }, + ["lvl"] = 5, + ["min"] = 1, + ["obj"] = { + ["I"] = { 4905 }, + }, + ["start"] = { + ["U"] = { 3287 }, + }, + }, + [791] = { + ["end"] = { + ["U"] = { 3147 }, + }, + ["lvl"] = 7, + ["min"] = 4, + ["obj"] = { + ["I"] = { 4870 }, + }, + ["start"] = { + ["U"] = { 3147 }, + }, + }, + [792] = { + ["class"] = 1245, + ["end"] = { + ["U"] = { 3145 }, + }, + ["lvl"] = 4, + ["min"] = 2, + ["obj"] = { + ["U"] = { 3101 }, + }, + ["start"] = { + ["U"] = { 3145 }, + }, + }, + [793] = { + ["end"] = { + ["U"] = { 1068 }, + }, + ["lvl"] = 50, + ["min"] = 40, + ["obj"] = { + ["I"] = { 4615, 4645 }, + }, + ["pre"] = { 782 }, + ["start"] = { + ["U"] = { 1068 }, + }, + }, + [794] = { + ["end"] = { + ["U"] = { 3145 }, + }, + ["lvl"] = 5, + ["min"] = 1, + ["obj"] = { + ["I"] = { 4859 }, + }, + ["pre"] = { 792, 1499 }, + ["start"] = { + ["U"] = { 3145 }, + }, + }, + [795] = { + ["end"] = { + ["O"] = { 2933 }, + }, + ["lvl"] = 50, + ["min"] = 40, + ["obj"] = { + ["I"] = { 4843, 4844, 4845 }, + }, + ["pre"] = { 793 }, + ["start"] = { + ["O"] = { 2933 }, + }, + }, + [796] = { + ["lvl"] = 1, + ["min"] = 1, + }, + [797] = { + ["lvl"] = 1, + ["min"] = 1, + }, + [798] = { + ["lvl"] = 1, + ["min"] = 1, + }, + [799] = { + ["lvl"] = 1, + ["min"] = 1, + }, + [800] = { + ["lvl"] = 1, + ["min"] = 1, + }, + [801] = { + ["lvl"] = 1, + ["min"] = 1, + }, + [802] = { + ["lvl"] = 1, + ["min"] = 1, + }, + [803] = { + ["lvl"] = 1, + ["min"] = 1, + }, + [804] = { + ["end"] = { + ["U"] = { 3143 }, + }, + ["lvl"] = 5, + ["min"] = 1, + ["pre"] = { 790 }, + ["start"] = { + ["U"] = { 3287 }, + }, + }, + [805] = { + ["end"] = { + ["U"] = { 3188 }, + }, + ["lvl"] = 5, + ["min"] = 1, + ["pre"] = { 794 }, + ["start"] = { + ["U"] = { 3145 }, + }, + }, + [806] = { + ["end"] = { + ["U"] = { 3142 }, + }, + ["lvl"] = 12, + ["min"] = 4, + ["obj"] = { + ["I"] = { 4869 }, + }, + ["pre"] = { 823 }, + ["start"] = { + ["U"] = { 3142 }, + }, + }, + [808] = { + ["end"] = { + ["U"] = { 3188 }, + }, + ["lvl"] = 9, + ["min"] = 4, + ["obj"] = { + ["I"] = { 4864 }, + }, + ["start"] = { + ["U"] = { 3188 }, + }, + }, + [809] = { + ["end"] = { + ["U"] = { 3521 }, + }, + ["lvl"] = 13, + ["min"] = 4, + ["pre"] = { 829 }, + ["start"] = { + ["U"] = { 3216 }, + }, + }, + [810] = { + ["lvl"] = 5, + ["min"] = 4, + }, + [811] = { + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 810 }, + }, + [812] = { + ["end"] = { + ["U"] = { 3190 }, + }, + ["lvl"] = 9, + ["min"] = 7, + ["obj"] = { + ["I"] = { 4904 }, + }, + ["start"] = { + ["U"] = { 3190 }, + }, + }, + [813] = { + ["end"] = { + ["U"] = { 3189 }, + }, + ["lvl"] = 9, + ["min"] = 7, + ["obj"] = { + ["I"] = { 4886 }, + }, + ["pre"] = { 812 }, + ["start"] = { + ["U"] = { 3189 }, + }, + }, + [814] = { + ["lvl"] = 6, + ["min"] = 4, + }, + [815] = { + ["end"] = { + ["U"] = { 3191 }, + }, + ["lvl"] = 8, + ["min"] = 6, + ["obj"] = { + ["I"] = { 4890 }, + }, + ["start"] = { + ["U"] = { 3191 }, + }, + }, + [816] = { + ["end"] = { + ["U"] = { 3193 }, + }, + ["lvl"] = 11, + ["min"] = 8, + ["obj"] = { + ["I"] = { 4891 }, + }, + ["start"] = { + ["U"] = { 3193 }, + }, + }, + [817] = { + ["end"] = { + ["U"] = { 3194 }, + }, + ["lvl"] = 8, + ["min"] = 5, + ["obj"] = { + ["I"] = { 4892 }, + }, + ["start"] = { + ["U"] = { 3194 }, + }, + }, + [818] = { + ["end"] = { + ["U"] = { 3304 }, + }, + ["lvl"] = 7, + ["min"] = 5, + ["obj"] = { + ["I"] = { 4887, 4888 }, + }, + ["start"] = { + ["U"] = { 3304 }, + }, + }, + [819] = { + ["end"] = { + ["U"] = { 3292 }, + }, + ["lvl"] = 15, + ["min"] = 11, + ["race"] = 178, + ["start"] = { + ["I"] = { 4926 }, + }, + }, + [821] = { + ["end"] = { + ["U"] = { 3292 }, + }, + ["lvl"] = 15, + ["min"] = 11, + ["obj"] = { + ["I"] = { 4893, 4894, 4895 }, + }, + ["pre"] = { 819 }, + ["start"] = { + ["U"] = { 3292 }, + }, + }, + [822] = { + ["end"] = { + ["U"] = { 3292 }, + }, + ["lvl"] = 24, + ["min"] = 11, + ["obj"] = { + ["I"] = { 4896, 4897, 4898 }, + }, + ["pre"] = { 821 }, + ["start"] = { + ["U"] = { 3292 }, + }, + }, + [823] = { + ["end"] = { + ["U"] = { 3142 }, + }, + ["lvl"] = 7, + ["min"] = 4, + ["start"] = { + ["U"] = { 3188 }, + }, + }, + [824] = { + ["end"] = { + ["U"] = { 12736 }, + }, + ["lvl"] = 27, + ["min"] = 23, + ["pre"] = { 1918 }, + ["start"] = { + ["U"] = { 12737 }, + }, + }, + [825] = { + ["end"] = { + ["U"] = { 3139 }, + }, + ["lvl"] = 8, + ["min"] = 3, + ["obj"] = { + ["I"] = { 4863 }, + }, + ["pre"] = { 784 }, + ["start"] = { + ["U"] = { 3139 }, + }, + }, + [826] = { + ["end"] = { + ["U"] = { 3188 }, + }, + ["lvl"] = 10, + ["min"] = 4, + ["obj"] = { + ["I"] = { 4866 }, + ["U"] = { 3206, 3207 }, + }, + ["start"] = { + ["U"] = { 3188 }, + }, + }, + [827] = { + ["end"] = { + ["U"] = { 3208 }, + }, + ["lvl"] = 12, + ["min"] = 4, + ["obj"] = { + ["I"] = { 4871 }, + }, + ["pre"] = { 828 }, + ["start"] = { + ["U"] = { 3208 }, + }, + }, + [828] = { + ["end"] = { + ["U"] = { 3208 }, + }, + ["lvl"] = 12, + ["min"] = 4, + ["pre"] = { 806 }, + ["start"] = { + ["U"] = { 3142 }, + }, + }, + [829] = { + ["end"] = { + ["U"] = { 3216 }, + }, + ["lvl"] = 12, + ["min"] = 4, + ["pre"] = { 827 }, + ["start"] = { + ["U"] = { 3208 }, + }, + }, + [830] = { + ["end"] = { + ["U"] = { 3139 }, + }, + ["lvl"] = 7, + ["min"] = 1, + ["race"] = 178, + ["start"] = { + ["I"] = { 4881 }, + }, + }, + [831] = { + ["end"] = { + ["U"] = { 3230 }, + }, + ["lvl"] = 7, + ["min"] = 1, + ["pre"] = { 830 }, + ["start"] = { + ["U"] = { 3139 }, + }, + }, + [832] = { + ["end"] = { + ["U"] = { 3216 }, + }, + ["lvl"] = 12, + ["min"] = 4, + ["race"] = 178, + ["start"] = { + ["I"] = { 4903 }, + }, + }, + [833] = { + ["end"] = { + ["U"] = { 3233 }, + }, + ["lvl"] = 10, + ["min"] = 7, + ["obj"] = { + ["U"] = { 3232 }, + }, + ["start"] = { + ["U"] = { 3233 }, + }, + }, + [834] = { + ["end"] = { + ["U"] = { 3293 }, + }, + ["lvl"] = 9, + ["min"] = 7, + ["obj"] = { + ["I"] = { 4918 }, + }, + ["start"] = { + ["U"] = { 3293 }, + }, + }, + [835] = { + ["end"] = { + ["U"] = { 3293 }, + }, + ["lvl"] = 11, + ["min"] = 7, + ["obj"] = { + ["U"] = { 3117, 3118 }, + }, + ["pre"] = { 834 }, + ["start"] = { + ["U"] = { 3293 }, + }, + }, + [836] = { + ["end"] = { + ["U"] = { 7406 }, + }, + ["lvl"] = 48, + ["min"] = 43, + ["pre"] = { 485 }, + ["start"] = { + ["U"] = { 7806 }, + }, + }, + [837] = { + ["end"] = { + ["U"] = { 3139 }, + }, + ["lvl"] = 10, + ["min"] = 6, + ["obj"] = { + ["U"] = { 3111, 3112, 3113, 3114 }, + }, + ["start"] = { + ["U"] = { 3139 }, + }, + }, + [838] = { + ["end"] = { + ["U"] = { 11057 }, + }, + ["lvl"] = 55, + ["min"] = 55, + ["pre"] = { 5098 }, + ["start"] = { + ["U"] = { 10837 }, + }, + }, + [839] = { + ["lvl"] = 1, + ["min"] = 1, + }, + [840] = { + ["end"] = { + ["U"] = { 3337 }, + }, + ["lvl"] = 12, + ["min"] = 10, + ["start"] = { + ["U"] = { 3336 }, + }, + }, + [841] = { + ["end"] = { + ["U"] = { 7407 }, + }, + ["lvl"] = 46, + ["min"] = 38, + ["obj"] = { + ["I"] = { 8483 }, + }, + ["pre"] = { 379 }, + ["start"] = { + ["U"] = { 7407 }, + }, + }, + [842] = { + ["end"] = { + ["U"] = { 3338 }, + }, + ["lvl"] = 12, + ["min"] = 10, + ["pre"] = { 840 }, + ["start"] = { + ["U"] = { 3337 }, + }, + }, + [843] = { + ["end"] = { + ["U"] = { 3341 }, + }, + ["lvl"] = 23, + ["min"] = 17, + ["obj"] = { + ["I"] = { 5006 }, + ["U"] = { 3374, 3375 }, + }, + ["start"] = { + ["U"] = { 3341 }, + }, + }, + [844] = { + ["end"] = { + ["U"] = { 3338 }, + }, + ["lvl"] = 12, + ["min"] = 10, + ["obj"] = { + ["I"] = { 5087 }, + }, + ["pre"] = { 860 }, + ["start"] = { + ["U"] = { 3338 }, + }, + }, + [845] = { + ["end"] = { + ["U"] = { 3338 }, + }, + ["lvl"] = 13, + ["min"] = 10, + ["obj"] = { + ["I"] = { 5086 }, + }, + ["pre"] = { 844 }, + ["start"] = { + ["U"] = { 3338 }, + }, + }, + [846] = { + ["end"] = { + ["U"] = { 3341 }, + }, + ["lvl"] = 26, + ["min"] = 17, + ["obj"] = { + ["I"] = { 5017, 5018, 5019 }, + }, + ["pre"] = { 843 }, + ["start"] = { + ["U"] = { 3341 }, + }, + }, + [847] = { + ["end"] = { + ["U"] = { 2706 }, + }, + ["lvl"] = 37, + ["min"] = 29, + ["pre"] = { 702 }, + ["start"] = { + ["U"] = { 2792 }, + }, + }, + [848] = { + ["end"] = { + ["U"] = { 3390 }, + }, + ["lvl"] = 15, + ["min"] = 10, + ["obj"] = { + ["I"] = { 5012 }, + }, + ["start"] = { + ["U"] = { 3390 }, + }, + }, + [849] = { + ["end"] = { + ["U"] = { 3341 }, + }, + ["lvl"] = 26, + ["min"] = 17, + ["obj"] = { + ["IR"] = { 5021 }, + ["O"] = { 3644 }, + }, + ["pre"] = { 846 }, + ["start"] = { + ["U"] = { 3341 }, + }, + }, + [850] = { + ["end"] = { + ["U"] = { 3389 }, + }, + ["lvl"] = 16, + ["min"] = 11, + ["obj"] = { + ["I"] = { 5022 }, + }, + ["start"] = { + ["U"] = { 3389 }, + }, + }, + [851] = { + ["end"] = { + ["U"] = { 3389 }, + }, + ["lvl"] = 18, + ["min"] = 11, + ["obj"] = { + ["I"] = { 5023 }, + }, + ["pre"] = { 850 }, + ["start"] = { + ["U"] = { 3389 }, + }, + }, + [852] = { + ["end"] = { + ["U"] = { 3389 }, + }, + ["lvl"] = 19, + ["min"] = 11, + ["obj"] = { + ["I"] = { 5025 }, + }, + ["pre"] = { 851 }, + ["start"] = { + ["U"] = { 3389 }, + }, + }, + [853] = { + ["end"] = { + ["U"] = { 3419 }, + }, + ["lvl"] = 15, + ["min"] = 10, + ["pre"] = { 848 }, + ["start"] = { + ["U"] = { 3390 }, + }, + }, + [854] = { + ["end"] = { + ["U"] = { 3429 }, + }, + ["lvl"] = 12, + ["min"] = 9, + ["race"] = 32, + ["start"] = { + ["U"] = { 3418 }, + }, + }, + [855] = { + ["end"] = { + ["U"] = { 3389 }, + }, + ["lvl"] = 14, + ["min"] = 9, + ["obj"] = { + ["I"] = { 5030 }, + }, + ["start"] = { + ["U"] = { 3389 }, + }, + }, + [856] = { + ["lvl"] = 12, + ["min"] = 9, + }, + [857] = { + ["end"] = { + ["U"] = { 3421 }, + }, + ["lvl"] = 30, + ["min"] = 22, + ["obj"] = { + ["I"] = { 5038 }, + }, + ["start"] = { + ["U"] = { 3421 }, + }, + }, + [858] = { + ["end"] = { + ["U"] = { 3439 }, + }, + ["lvl"] = 18, + ["min"] = 13, + ["obj"] = { + ["I"] = { 5050 }, + }, + ["start"] = { + ["U"] = { 3439 }, + }, + }, + [860] = { + ["end"] = { + ["U"] = { 3338 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 861 }, + ["start"] = { + ["U"] = { 3441 }, + }, + }, + [861] = { + ["end"] = { + ["U"] = { 3441 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["I"] = { 5203 }, + }, + ["start"] = { + ["U"] = { 3052 }, + }, + }, + [862] = { + ["end"] = { + ["U"] = { 3443 }, + }, + ["lvl"] = 23, + ["min"] = 15, + ["obj"] = { + ["I"] = { 5051 }, + }, + ["skill"] = 185, + ["start"] = { + ["U"] = { 3443 }, + }, + }, + [863] = { + ["end"] = { + ["U"] = { 3442 }, + }, + ["lvl"] = 18, + ["min"] = 13, + ["pre"] = { 858 }, + ["start"] = { + ["U"] = { 3439 }, + }, + }, + [864] = { + ["end"] = { + ["U"] = { 5204 }, + }, + ["lvl"] = 46, + ["min"] = 38, + ["pre"] = { 654 }, + ["start"] = { + ["U"] = { 7407 }, + }, + }, + [865] = { + ["end"] = { + ["U"] = { 3446 }, + }, + ["lvl"] = 18, + ["min"] = 13, + ["obj"] = { + ["I"] = { 5055 }, + }, + ["start"] = { + ["U"] = { 3446 }, + }, + }, + [866] = { + ["end"] = { + ["U"] = { 3446 }, + }, + ["lvl"] = 16, + ["min"] = 9, + ["obj"] = { + ["I"] = { 5056 }, + }, + ["skill"] = 182, + ["start"] = { + ["U"] = { 3446 }, + }, + }, + [867] = { + ["end"] = { + ["U"] = { 3449 }, + }, + ["lvl"] = 15, + ["min"] = 12, + ["obj"] = { + ["I"] = { 5064 }, + }, + ["start"] = { + ["U"] = { 3449 }, + }, + }, + [868] = { + ["end"] = { + ["U"] = { 3428 }, + }, + ["lvl"] = 22, + ["min"] = 17, + ["obj"] = { + ["I"] = { 5058 }, + }, + ["start"] = { + ["U"] = { 3428 }, + }, + }, + [869] = { + ["end"] = { + ["U"] = { 3464 }, + }, + ["lvl"] = 13, + ["min"] = 9, + ["obj"] = { + ["I"] = { 5062 }, + }, + ["start"] = { + ["U"] = { 3464 }, + }, + }, + [870] = { + ["end"] = { + ["U"] = { 3448 }, + }, + ["lvl"] = 13, + ["min"] = 10, + ["obj"] = { + ["A"] = { 216 }, + }, + ["pre"] = { 886 }, + ["start"] = { + ["U"] = { 3448 }, + }, + }, + [871] = { + ["end"] = { + ["U"] = { 3429 }, + }, + ["lvl"] = 12, + ["min"] = 9, + ["obj"] = { + ["U"] = { 3265, 3267, 3268 }, + }, + ["start"] = { + ["U"] = { 3429 }, + }, + }, + [872] = { + ["end"] = { + ["U"] = { 3429 }, + }, + ["lvl"] = 15, + ["min"] = 9, + ["obj"] = { + ["I"] = { 5063 }, + ["U"] = { 3266, 3269 }, + }, + ["pre"] = { 871 }, + ["start"] = { + ["U"] = { 3429 }, + }, + }, + [873] = { + ["end"] = { + ["U"] = { 3388 }, + }, + ["lvl"] = 27, + ["min"] = 10, + ["obj"] = { + ["I"] = { 5104 }, + }, + ["pre"] = { 874 }, + ["start"] = { + ["U"] = { 3388 }, + }, + }, + [874] = { + ["end"] = { + ["U"] = { 3388 }, + }, + ["lvl"] = 27, + ["min"] = 9, + ["pre"] = { 913 }, + ["start"] = { + ["U"] = { 3387 }, + }, + }, + [875] = { + ["end"] = { + ["U"] = { 3449 }, + }, + ["lvl"] = 16, + ["min"] = 12, + ["obj"] = { + ["I"] = { 5065 }, + }, + ["pre"] = { 867 }, + ["start"] = { + ["U"] = { 3449 }, + }, + }, + [876] = { + ["end"] = { + ["U"] = { 3449 }, + }, + ["lvl"] = 20, + ["min"] = 12, + ["obj"] = { + ["I"] = { 5067 }, + }, + ["pre"] = { 875 }, + ["start"] = { + ["U"] = { 3449 }, + }, + }, + [877] = { + ["end"] = { + ["U"] = { 3448 }, + }, + ["lvl"] = 16, + ["min"] = 10, + ["obj"] = { + ["IR"] = { 5068 }, + ["O"] = { 3737 }, + }, + ["pre"] = { 870 }, + ["start"] = { + ["U"] = { 3448 }, + }, + }, + [878] = { + ["end"] = { + ["U"] = { 3430 }, + }, + ["lvl"] = 21, + ["min"] = 14, + ["obj"] = { + ["U"] = { 3260, 3261, 3263 }, + }, + ["start"] = { + ["U"] = { 3430 }, + }, + }, + [879] = { + ["end"] = { + ["U"] = { 3430 }, + }, + ["lvl"] = 25, + ["min"] = 17, + ["obj"] = { + ["I"] = { 5072, 5073, 5074 }, + }, + ["pre"] = { 5052 }, + ["start"] = { + ["U"] = { 3430 }, + }, + }, + [880] = { + ["end"] = { + ["U"] = { 3448 }, + }, + ["lvl"] = 16, + ["min"] = 10, + ["obj"] = { + ["I"] = { 5098 }, + }, + ["pre"] = { 877 }, + ["start"] = { + ["U"] = { 3448 }, + }, + }, + [881] = { + ["end"] = { + ["U"] = { 3338 }, + }, + ["lvl"] = 16, + ["min"] = 10, + ["obj"] = { + ["I"] = { 5100 }, + ["IR"] = { 10327 }, + }, + ["pre"] = { 903 }, + ["start"] = { + ["U"] = { 3338 }, + }, + }, + [882] = { + ["end"] = { + ["U"] = { 3387 }, + }, + ["lvl"] = 19, + ["min"] = 10, + ["obj"] = { + ["I"] = { 5101, 10338 }, + ["IR"] = { 10338 }, + }, + ["pre"] = { 3261 }, + ["start"] = { + ["U"] = { 3387 }, + }, + }, + [883] = { + ["end"] = { + ["U"] = { 3387 }, + }, + ["lvl"] = 22, + ["min"] = 10, + ["race"] = 178, + ["start"] = { + ["I"] = { 5099 }, + }, + }, + [884] = { + ["end"] = { + ["U"] = { 3387 }, + }, + ["lvl"] = 24, + ["min"] = 10, + ["race"] = 178, + ["start"] = { + ["I"] = { 5102 }, + }, + }, + [885] = { + ["end"] = { + ["U"] = { 3387 }, + }, + ["lvl"] = 25, + ["min"] = 10, + ["race"] = 178, + ["start"] = { + ["I"] = { 5103 }, + }, + }, + [886] = { + ["end"] = { + ["U"] = { 3448 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["start"] = { + ["U"] = { 5769 }, + }, + }, + [887] = { + ["end"] = { + ["U"] = { 3391 }, + }, + ["lvl"] = 14, + ["min"] = 9, + ["obj"] = { + ["U"] = { 3381, 3382 }, + }, + ["start"] = { + ["U"] = { 3391 }, + }, + }, + [888] = { + ["end"] = { + ["U"] = { 3391 }, + }, + ["lvl"] = 16, + ["min"] = 9, + ["obj"] = { + ["I"] = { 5076, 5077 }, + }, + ["pre"] = { 892 }, + ["start"] = { + ["U"] = { 3391 }, + }, + }, + [889] = { + ["end"] = { + ["U"] = { 3430 }, + }, + ["lvl"] = 20, + ["min"] = 14, + ["obj"] = { + ["I"] = { 5075 }, + }, + ["pre"] = { 5052 }, + ["start"] = { + ["U"] = { 3430 }, + }, + }, + [890] = { + ["end"] = { + ["U"] = { 3453 }, + }, + ["lvl"] = 14, + ["min"] = 9, + ["pre"] = { 887 }, + ["start"] = { + ["U"] = { 3391 }, + }, + }, + [891] = { + ["end"] = { + ["U"] = { 3339 }, + }, + ["lvl"] = 20, + ["min"] = 13, + ["obj"] = { + ["I"] = { 5078 }, + ["U"] = { 3393, 3454, 3455 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 3339 }, + }, + }, + [892] = { + ["end"] = { + ["U"] = { 3391 }, + }, + ["lvl"] = 14, + ["min"] = 9, + ["pre"] = { 890 }, + ["start"] = { + ["U"] = { 3453 }, + }, + }, + [893] = { + ["end"] = { + ["U"] = { 3433 }, + }, + ["lvl"] = 24, + ["min"] = 17, + ["obj"] = { + ["I"] = { 5092, 5093, 5094 }, + }, + ["start"] = { + ["U"] = { 3433 }, + }, + }, + [894] = { + ["end"] = { + ["O"] = { 4141 }, + }, + ["lvl"] = 14, + ["min"] = 10, + ["start"] = { + ["U"] = { 3442 }, + }, + }, + [895] = { + ["end"] = { + ["U"] = { 3391 }, + }, + ["lvl"] = 16, + ["min"] = 11, + ["obj"] = { + ["I"] = { 5084 }, + }, + ["start"] = { + ["O"] = { 3972 }, + }, + }, + [896] = { + ["end"] = { + ["U"] = { 3453 }, + }, + ["lvl"] = 18, + ["min"] = 13, + ["obj"] = { + ["I"] = { 5097 }, + }, + ["start"] = { + ["U"] = { 3453 }, + }, + }, + [897] = { + ["end"] = { + ["U"] = { 3387 }, + }, + ["lvl"] = 24, + ["min"] = 10, + ["race"] = 178, + ["start"] = { + ["I"] = { 5138 }, + }, + }, + [898] = { + ["end"] = { + ["U"] = { 3339 }, + }, + ["lvl"] = 20, + ["min"] = 13, + ["race"] = 178, + ["start"] = { + ["U"] = { 3465 }, + }, + }, + [899] = { + ["end"] = { + ["U"] = { 3432 }, + }, + ["lvl"] = 20, + ["min"] = 14, + ["obj"] = { + ["I"] = { 5085 }, + }, + ["start"] = { + ["U"] = { 3432 }, + }, + }, + [900] = { + ["end"] = { + ["O"] = { 4141 }, + }, + ["lvl"] = 14, + ["min"] = 10, + ["obj"] = { + ["O"] = { 4072, 61935, 61936 }, + }, + ["pre"] = { 894 }, + ["start"] = { + ["O"] = { 4141 }, + }, + }, + [901] = { + ["end"] = { + ["O"] = { 4141 }, + }, + ["lvl"] = 14, + ["min"] = 10, + ["obj"] = { + ["I"] = { 5089 }, + }, + ["pre"] = { 900 }, + ["start"] = { + ["O"] = { 4141 }, + }, + }, + [902] = { + ["end"] = { + ["U"] = { 3442 }, + }, + ["lvl"] = 16, + ["min"] = 10, + ["pre"] = { 901 }, + ["start"] = { + ["O"] = { 4141 }, + }, + }, + [903] = { + ["end"] = { + ["U"] = { 3338 }, + }, + ["lvl"] = 15, + ["min"] = 10, + ["obj"] = { + ["I"] = { 5096 }, + }, + ["pre"] = { 845 }, + ["start"] = { + ["U"] = { 3338 }, + }, + }, + [904] = { + ["lvl"] = 1, + ["min"] = 1, + }, + [905] = { + ["end"] = { + ["U"] = { 3338 }, + }, + ["lvl"] = 17, + ["min"] = 10, + ["obj"] = { + ["I"] = { 5165 }, + ["IR"] = { 5165 }, + ["O"] = { 6906, 6907, 6908 }, + }, + ["pre"] = { 881 }, + ["start"] = { + ["U"] = { 3338 }, + }, + }, + [906] = { + ["end"] = { + ["U"] = { 3429 }, + }, + ["lvl"] = 25, + ["min"] = 17, + ["pre"] = { 879 }, + ["start"] = { + ["U"] = { 3430 }, + }, + }, + [907] = { + ["end"] = { + ["U"] = { 3387 }, + }, + ["lvl"] = 18, + ["min"] = 10, + ["obj"] = { + ["I"] = { 5143 }, + }, + ["pre"] = { 882 }, + ["start"] = { + ["U"] = { 3387 }, + }, + }, + [908] = { + ["lvl"] = 27, + ["min"] = 25, + ["obj"] = { + ["I"] = { 16762 }, + }, + ["pre"] = { 6563 }, + }, + [909] = { + ["end"] = { + ["U"] = { 12736 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["race"] = 178, + }, + [910] = { + ["end"] = { + ["U"] = { 14444 }, + }, + ["lvl"] = 60, + ["min"] = 10, + ["pre"] = { 172 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 14444 }, + }, + }, + [911] = { + ["end"] = { + ["U"] = { 14444 }, + }, + ["lvl"] = 60, + ["min"] = 10, + ["pre"] = { 172 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 14444 }, + }, + }, + [912] = { + ["lvl"] = 12, + ["min"] = 10, + }, + [913] = { + ["end"] = { + ["U"] = { 3387 }, + }, + ["lvl"] = 20, + ["min"] = 10, + ["obj"] = { + ["I"] = { 5164 }, + }, + ["pre"] = { 907 }, + ["start"] = { + ["U"] = { 3387 }, + }, + }, + [914] = { + ["end"] = { + ["U"] = { 5770 }, + }, + ["lvl"] = 22, + ["min"] = 10, + ["obj"] = { + ["I"] = { 9738, 9739, 9740, 9741 }, + }, + ["pre"] = { 1490 }, + ["start"] = { + ["U"] = { 5770 }, + }, + }, + [915] = { + ["end"] = { + ["U"] = { 14444 }, + }, + ["lvl"] = 60, + ["min"] = 10, + ["obj"] = { + ["I"] = { 7228 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 14444 }, + }, + }, + [916] = { + ["end"] = { + ["U"] = { 2082 }, + }, + ["lvl"] = 4, + ["min"] = 3, + ["obj"] = { + ["I"] = { 5166 }, + }, + ["start"] = { + ["U"] = { 2082 }, + }, + }, + [917] = { + ["end"] = { + ["U"] = { 2082 }, + }, + ["lvl"] = 5, + ["min"] = 1, + ["obj"] = { + ["I"] = { 5167 }, + }, + ["pre"] = { 916 }, + ["start"] = { + ["U"] = { 2082 }, + }, + }, + [918] = { + ["end"] = { + ["U"] = { 2080 }, + }, + ["lvl"] = 7, + ["min"] = 4, + ["obj"] = { + ["I"] = { 5168 }, + }, + ["start"] = { + ["U"] = { 2080 }, + }, + }, + [919] = { + ["end"] = { + ["U"] = { 2080 }, + }, + ["lvl"] = 7, + ["min"] = 4, + ["obj"] = { + ["I"] = { 5169 }, + }, + ["start"] = { + ["U"] = { 2080 }, + }, + }, + [920] = { + ["end"] = { + ["U"] = { 3514 }, + }, + ["lvl"] = 5, + ["min"] = 1, + ["pre"] = { 917 }, + ["start"] = { + ["U"] = { 2082 }, + }, + }, + [921] = { + ["end"] = { + ["U"] = { 3514 }, + }, + ["lvl"] = 5, + ["min"] = 1, + ["obj"] = { + ["I"] = { 5184 }, + ["IR"] = { 5185 }, + }, + ["pre"] = { 920 }, + ["start"] = { + ["U"] = { 3514 }, + }, + }, + [922] = { + ["end"] = { + ["U"] = { 3517 }, + }, + ["lvl"] = 7, + ["min"] = 4, + ["pre"] = { 918 }, + ["start"] = { + ["U"] = { 2080 }, + }, + }, + [923] = { + ["end"] = { + ["U"] = { 3517 }, + }, + ["lvl"] = 9, + ["min"] = 4, + ["obj"] = { + ["I"] = { 5170 }, + }, + ["pre"] = { 922 }, + ["start"] = { + ["U"] = { 3517 }, + }, + }, + [924] = { + ["end"] = { + ["U"] = { 3521 }, + }, + ["lvl"] = 14, + ["min"] = 9, + ["obj"] = { + ["O"] = { 3525 }, + }, + ["pre"] = { 809 }, + ["start"] = { + ["U"] = { 3521 }, + }, + }, + [925] = { + ["end"] = { + ["U"] = { 14444 }, + }, + ["lvl"] = 60, + ["min"] = 10, + ["obj"] = { + ["I"] = { 18643 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 14444 }, + }, + }, + [926] = { + ["end"] = { + ["O"] = { 5619, 5620, 5621 }, + }, + ["lvl"] = 14, + ["min"] = 1, + ["pre"] = { 924 }, + ["start"] = { + ["O"] = { 5619, 5620, 5621 }, + }, + }, + [927] = { + ["end"] = { + ["U"] = { 2080 }, + }, + ["lvl"] = 12, + ["min"] = 5, + ["race"] = 77, + ["start"] = { + ["I"] = { 5179 }, + }, + }, + [928] = { + ["end"] = { + ["U"] = { 3515 }, + }, + ["lvl"] = 5, + ["min"] = 1, + ["pre"] = { 921 }, + ["start"] = { + ["U"] = { 3514 }, + }, + }, + [929] = { + ["end"] = { + ["U"] = { 3515 }, + }, + ["lvl"] = 5, + ["min"] = 1, + ["obj"] = { + ["I"] = { 5639 }, + ["IR"] = { 5619 }, + }, + ["pre"] = { 928 }, + ["start"] = { + ["U"] = { 3515 }, + }, + }, + [930] = { + ["end"] = { + ["U"] = { 2080 }, + }, + ["lvl"] = 10, + ["min"] = 4, + ["start"] = { + ["O"] = { 6751 }, + }, + }, + [931] = { + ["end"] = { + ["U"] = { 2080 }, + }, + ["lvl"] = 10, + ["min"] = 4, + ["start"] = { + ["O"] = { 6752 }, + }, + }, + [932] = { + ["end"] = { + ["U"] = { 3567 }, + }, + ["lvl"] = 7, + ["min"] = 4, + ["obj"] = { + ["I"] = { 5221 }, + }, + ["start"] = { + ["U"] = { 3567 }, + }, + }, + [933] = { + ["end"] = { + ["U"] = { 3515 }, + }, + ["lvl"] = 9, + ["min"] = 1, + ["obj"] = { + ["I"] = { 5645 }, + ["IR"] = { 5621 }, + }, + ["pre"] = { 929 }, + ["start"] = { + ["U"] = { 3515 }, + }, + }, + [934] = { + ["end"] = { + ["U"] = { 3515 }, + }, + ["lvl"] = 11, + ["min"] = 1, + ["obj"] = { + ["I"] = { 5646 }, + ["IR"] = { 5623 }, + }, + ["pre"] = { 933 }, + ["start"] = { + ["U"] = { 3515 }, + }, + }, + [935] = { + ["end"] = { + ["U"] = { 3516 }, + }, + ["lvl"] = 11, + ["min"] = 1, + ["pre"] = { 934, 7383 }, + ["start"] = { + ["U"] = { 3515 }, + }, + }, + [936] = { + ["close"] = { 936, 3762, 3784 }, + ["end"] = { + ["U"] = { 5769 }, + }, + ["lvl"] = 50, + ["min"] = 47, + ["start"] = { + ["U"] = { 6929 }, + }, + }, + [937] = { + ["end"] = { + ["U"] = { 3519 }, + }, + ["lvl"] = 11, + ["min"] = 6, + ["obj"] = { + ["I"] = { 5204 }, + }, + ["start"] = { + ["U"] = { 3519 }, + }, + }, + [938] = { + ["end"] = { + ["U"] = { 3519 }, + }, + ["lvl"] = 12, + ["min"] = 7, + ["start"] = { + ["U"] = { 3568 }, + }, + }, + [939] = { + ["end"] = { + ["U"] = { 9116 }, + }, + ["lvl"] = 54, + ["min"] = 49, + ["obj"] = { + ["I"] = { 11674 }, + }, + ["race"] = 77, + ["start"] = { + ["I"] = { 11668 }, + }, + }, + [940] = { + ["end"] = { + ["U"] = { 3516 }, + }, + ["lvl"] = 11, + ["min"] = 6, + ["pre"] = { 937 }, + ["start"] = { + ["U"] = { 3519 }, + }, + }, + [941] = { + ["end"] = { + ["O"] = { 7923 }, + }, + ["lvl"] = 12, + ["min"] = 9, + ["pre"] = { 927 }, + ["start"] = { + ["U"] = { 2080 }, + }, + }, + [942] = { + ["end"] = { + ["U"] = { 2911 }, + }, + ["lvl"] = 20, + ["min"] = 15, + ["pre"] = { 741 }, + ["start"] = { + ["U"] = { 2912 }, + }, + }, + [943] = { + ["end"] = { + ["U"] = { 2911 }, + }, + ["lvl"] = 24, + ["min"] = 15, + ["obj"] = { + ["I"] = { 5233, 5234 }, + }, + ["pre"] = { 942 }, + ["start"] = { + ["U"] = { 2911 }, + }, + }, + [944] = { + ["end"] = { + ["O"] = { 10076 }, + }, + ["lvl"] = 17, + ["min"] = 12, + ["obj"] = { + ["A"] = { 223, 224, 225 }, + }, + ["pre"] = { 948 }, + ["start"] = { + ["U"] = { 3616 }, + }, + }, + [945] = { + ["end"] = { + ["U"] = { 3585 }, + }, + ["lvl"] = 18, + ["min"] = 10, + ["start"] = { + ["U"] = { 3584 }, + }, + }, + [946] = { + }, + [947] = { + ["end"] = { + ["U"] = { 3583 }, + }, + ["lvl"] = 17, + ["min"] = 12, + ["obj"] = { + ["I"] = { 5270, 5271 }, + }, + ["start"] = { + ["U"] = { 3583 }, + }, + }, + [948] = { + ["end"] = { + ["U"] = { 3616 }, + }, + ["lvl"] = 17, + ["min"] = 12, + ["pre"] = { 947 }, + ["start"] = { + ["U"] = { 3583 }, + }, + }, + [949] = { + ["end"] = { + ["O"] = { 12666 }, + }, + ["lvl"] = 17, + ["min"] = 12, + ["pre"] = { 944 }, + ["start"] = { + ["O"] = { 10076 }, + }, + }, + [950] = { + ["end"] = { + ["U"] = { 3616 }, + }, + ["lvl"] = 17, + ["min"] = 12, + ["pre"] = { 949 }, + ["start"] = { + ["O"] = { 12666 }, + }, + }, + [951] = { + ["end"] = { + ["U"] = { 3616 }, + }, + ["lvl"] = 20, + ["min"] = 12, + ["obj"] = { + ["I"] = { 5273 }, + }, + ["pre"] = { 950 }, + ["start"] = { + ["U"] = { 3616 }, + }, + }, + [952] = { + ["end"] = { + ["U"] = { 3616 }, + }, + ["lvl"] = 11, + ["min"] = 6, + ["pre"] = { 940 }, + ["start"] = { + ["U"] = { 3516 }, + }, + }, + [953] = { + ["end"] = { + ["U"] = { 3639 }, + }, + ["lvl"] = 12, + ["min"] = 9, + ["obj"] = { + ["O"] = { 17188, 17189 }, + }, + ["start"] = { + ["U"] = { 3639 }, + }, + }, + [954] = { + ["end"] = { + ["U"] = { 3650 }, + }, + ["lvl"] = 12, + ["min"] = 7, + ["obj"] = { + ["A"] = { 230 }, + }, + ["start"] = { + ["U"] = { 3649 }, + }, + }, + [955] = { + ["end"] = { + ["U"] = { 3650 }, + }, + ["lvl"] = 12, + ["min"] = 7, + ["obj"] = { + ["I"] = { 5336 }, + }, + ["pre"] = { 954 }, + ["start"] = { + ["U"] = { 3650 }, + }, + }, + [956] = { + ["end"] = { + ["U"] = { 3650 }, + }, + ["lvl"] = 13, + ["min"] = 7, + ["obj"] = { + ["I"] = { 5338 }, + ["IR"] = { 5338 }, + }, + ["pre"] = { 955 }, + ["start"] = { + ["U"] = { 3650 }, + }, + }, + [957] = { + ["end"] = { + ["U"] = { 3650 }, + }, + ["lvl"] = 13, + ["min"] = 7, + ["obj"] = { + ["IR"] = { 5338 }, + ["O"] = { 16393 }, + }, + ["pre"] = { 956 }, + ["start"] = { + ["U"] = { 3650 }, + }, + }, + [958] = { + ["end"] = { + ["U"] = { 3649 }, + }, + ["lvl"] = 12, + ["min"] = 9, + ["obj"] = { + ["I"] = { 5360 }, + }, + ["start"] = { + ["U"] = { 3649 }, + }, + }, + [959] = { + ["end"] = { + ["U"] = { 3665 }, + }, + ["lvl"] = 18, + ["min"] = 14, + ["obj"] = { + ["I"] = { 5334 }, + }, + ["start"] = { + ["U"] = { 3665 }, + }, + }, + [960] = { + ["end"] = { + ["U"] = { 3616 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 944 }, + ["start"] = { + ["U"] = { 3616 }, + }, + }, + [961] = { + ["end"] = { + ["U"] = { 3616 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 944 }, + ["start"] = { + ["U"] = { 3616 }, + }, + }, + [962] = { + ["end"] = { + ["U"] = { 3419 }, + }, + ["lvl"] = 18, + ["min"] = 14, + ["obj"] = { + ["I"] = { 5339 }, + }, + ["start"] = { + ["U"] = { 3419 }, + }, + }, + [963] = { + ["end"] = { + ["U"] = { 3644 }, + }, + ["lvl"] = 16, + ["min"] = 11, + ["obj"] = { + ["I"] = { 5382 }, + }, + ["start"] = { + ["U"] = { 3644 }, + }, + }, + [964] = { + ["end"] = { + ["U"] = { 11057 }, + }, + ["lvl"] = 57, + ["min"] = 55, + ["obj"] = { + ["I"] = { 14619 }, + }, + ["pre"] = { 838 }, + ["start"] = { + ["U"] = { 11057 }, + }, + }, + [965] = { + ["end"] = { + ["U"] = { 3661 }, + }, + ["lvl"] = 18, + ["min"] = 13, + ["start"] = { + ["U"] = { 3657 }, + }, + }, + [966] = { + ["end"] = { + ["U"] = { 3661 }, + }, + ["lvl"] = 18, + ["min"] = 13, + ["obj"] = { + ["I"] = { 5348 }, + }, + ["pre"] = { 965 }, + ["start"] = { + ["U"] = { 3661 }, + }, + }, + [967] = { + ["end"] = { + ["U"] = { 3663 }, + }, + ["lvl"] = 18, + ["min"] = 13, + ["pre"] = { 966 }, + ["start"] = { + ["U"] = { 3661 }, + }, + }, + [968] = { + ["end"] = { + ["U"] = { 2786 }, + }, + ["lvl"] = 20, + ["min"] = 10, + ["race"] = 77, + ["start"] = { + ["I"] = { 5352 }, + }, + }, + [969] = { + ["end"] = { + ["U"] = { 10307 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 12334 }, + }, + ["pre"] = { 6606 }, + ["start"] = { + ["U"] = { 10307 }, + }, + }, + [970] = { + ["end"] = { + ["U"] = { 3663 }, + }, + ["lvl"] = 21, + ["min"] = 13, + ["obj"] = { + ["I"] = { 5366 }, + }, + ["pre"] = { 967 }, + ["start"] = { + ["U"] = { 3663 }, + }, + }, + [971] = { + ["end"] = { + ["U"] = { 2786 }, + }, + ["lvl"] = 23, + ["min"] = 10, + ["obj"] = { + ["I"] = { 5359 }, + }, + ["start"] = { + ["U"] = { 2786 }, + }, + }, + [972] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 5901 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["pre"] = { 63 }, + ["start"] = { + ["U"] = { 5901 }, + }, + }, + [973] = { + ["end"] = { + ["U"] = { 3663 }, + }, + ["lvl"] = 24, + ["min"] = 13, + ["obj"] = { + ["I"] = { 5533 }, + }, + ["pre"] = { 970 }, + ["start"] = { + ["U"] = { 3663 }, + }, + }, + [974] = { + ["end"] = { + ["U"] = { 10302 }, + }, + ["lvl"] = 55, + ["min"] = 51, + ["obj"] = { + ["IR"] = { 12472 }, + ["U"] = { 10541 }, + }, + ["start"] = { + ["U"] = { 10302 }, + }, + }, + [975] = { + ["end"] = { + ["U"] = { 10307 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["pre"] = { 969 }, + ["start"] = { + ["U"] = { 10307 }, + }, + }, + [976] = { + ["end"] = { + ["U"] = { 3663 }, + }, + ["lvl"] = 24, + ["min"] = 19, + ["pre"] = { 973 }, + ["start"] = { + ["U"] = { 4484 }, + }, + }, + [977] = { + ["end"] = { + ["U"] = { 10305 }, + }, + ["lvl"] = 58, + ["min"] = 52, + ["obj"] = { + ["I"] = { 12367 }, + }, + ["pre"] = { 3783 }, + ["start"] = { + ["U"] = { 10305 }, + }, + }, + [978] = { + ["end"] = { + ["U"] = { 7916 }, + }, + ["lvl"] = 55, + ["min"] = 52, + ["obj"] = { + ["I"] = { 12383 }, + }, + ["pre"] = { 3661 }, + ["start"] = { + ["U"] = { 7916 }, + }, + }, + [979] = { + ["end"] = { + ["U"] = { 10300 }, + }, + ["lvl"] = 57, + ["min"] = 52, + ["pre"] = { 978 }, + ["start"] = { + ["U"] = { 7916 }, + }, + }, + [980] = { + ["end"] = { + ["U"] = { 9298 }, + }, + ["lvl"] = 55, + ["min"] = 51, + ["pre"] = { 974 }, + ["start"] = { + ["U"] = { 10302 }, + }, + }, + [981] = { + ["end"] = { + ["U"] = { 3663 }, + }, + ["lvl"] = 31, + ["min"] = 13, + ["pre"] = { 1143 }, + ["start"] = { + ["U"] = { 3661 }, + }, + }, + [982] = { + ["end"] = { + ["U"] = { 6301 }, + }, + ["lvl"] = 17, + ["min"] = 13, + ["obj"] = { + ["I"] = { 12191, 12192 }, + }, + ["start"] = { + ["U"] = { 6301 }, + }, + }, + [983] = { + ["end"] = { + ["O"] = { 17182 }, + }, + ["lvl"] = 10, + ["min"] = 7, + ["obj"] = { + ["I"] = { 5385 }, + }, + ["start"] = { + ["U"] = { 3666 }, + }, + }, + [984] = { + ["end"] = { + ["U"] = { 3693 }, + }, + ["lvl"] = 14, + ["min"] = 10, + ["obj"] = { + ["A"] = { 231, 232, 235 }, + }, + ["start"] = { + ["U"] = { 3693 }, + }, + }, + [985] = { + ["end"] = { + ["U"] = { 3693 }, + }, + ["lvl"] = 14, + ["min"] = 10, + ["obj"] = { + ["U"] = { 2167, 2324 }, + }, + ["pre"] = { 984 }, + ["start"] = { + ["U"] = { 3693 }, + }, + }, + [986] = { + ["end"] = { + ["U"] = { 3693 }, + }, + ["lvl"] = 20, + ["min"] = 10, + ["obj"] = { + ["I"] = { 5386 }, + }, + ["pre"] = { 985 }, + ["start"] = { + ["U"] = { 3693 }, + }, + }, + [987] = { + ["lvl"] = 30, + ["min"] = 30, + }, + [990] = { + ["close"] = { 990 }, + ["end"] = { + ["U"] = { 3691 }, + }, + ["lvl"] = 19, + ["min"] = 15, + ["pre"] = { 994, 995 }, + ["start"] = { + ["U"] = { 3694 }, + }, + }, + [991] = { + ["end"] = { + ["U"] = { 3891 }, + }, + ["lvl"] = 19, + ["min"] = 18, + ["start"] = { + ["U"] = { 3691 }, + }, + }, + [992] = { + ["end"] = { + ["U"] = { 7724 }, + }, + ["lvl"] = 46, + ["min"] = 38, + ["obj"] = { + ["I"] = { 8585 }, + ["IR"] = { 8584 }, + }, + ["start"] = { + ["U"] = { 7724 }, + }, + }, + [993] = { + ["end"] = { + ["U"] = { 3692 }, + }, + ["lvl"] = 20, + ["min"] = 10, + ["pre"] = { 986 }, + ["start"] = { + ["U"] = { 3693 }, + }, + }, + [994] = { + ["close"] = { 994, 995 }, + ["end"] = { + ["U"] = { 3693 }, + }, + ["lvl"] = 22, + ["min"] = 10, + ["pre"] = { 993 }, + ["start"] = { + ["U"] = { 3692 }, + }, + }, + [995] = { + ["close"] = { 994, 995 }, + ["end"] = { + ["U"] = { 3693 }, + }, + ["lvl"] = 20, + ["min"] = 10, + ["pre"] = { 993 }, + ["start"] = { + ["U"] = { 3692 }, + }, + }, + [996] = { + ["end"] = { + ["O"] = { 174600 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11516 }, + }, + ["start"] = { + ["O"] = { 174600 }, + }, + }, + [997] = { + ["end"] = { + ["U"] = { 2080 }, + }, + ["lvl"] = 5, + ["min"] = 4, + ["start"] = { + ["U"] = { 2083 }, + }, + }, + [998] = { + ["end"] = { + ["O"] = { 174599 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11516 }, + }, + ["start"] = { + ["O"] = { 174599 }, + }, + }, + [999] = { + ["lvl"] = 25, + ["min"] = 10, + }, + [1000] = { + ["close"] = { 1000, 1004, 1018 }, + ["end"] = { + ["U"] = { 5769 }, + }, + ["lvl"] = 55, + ["min"] = 54, + ["start"] = { + ["U"] = { 10881 }, + }, + }, + [1001] = { + ["end"] = { + ["O"] = { 17183 }, + }, + ["lvl"] = 12, + ["min"] = 7, + ["obj"] = { + ["I"] = { 5412 }, + }, + ["pre"] = { 983 }, + ["start"] = { + ["O"] = { 17182 }, + }, + }, + [1002] = { + ["end"] = { + ["O"] = { 17184 }, + }, + ["lvl"] = 14, + ["min"] = 7, + ["obj"] = { + ["I"] = { 5413 }, + }, + ["pre"] = { 1001 }, + ["start"] = { + ["O"] = { 17183 }, + }, + }, + [1003] = { + ["end"] = { + ["O"] = { 17185 }, + }, + ["lvl"] = 16, + ["min"] = 7, + ["obj"] = { + ["I"] = { 5414 }, + }, + ["pre"] = { 1002 }, + ["start"] = { + ["O"] = { 17184 }, + }, + }, + [1004] = { + ["close"] = { 1000, 1004, 1018 }, + ["end"] = { + ["U"] = { 5769 }, + }, + ["lvl"] = 55, + ["min"] = 54, + ["start"] = { + ["U"] = { 10879 }, + }, + }, + [1005] = { + ["lvl"] = 20, + ["min"] = 10, + }, + [1006] = { + ["lvl"] = 18, + ["min"] = 10, + }, + [1007] = { + ["end"] = { + ["U"] = { 3846 }, + }, + ["lvl"] = 20, + ["min"] = 19, + ["obj"] = { + ["I"] = { 5424 }, + }, + ["start"] = { + ["U"] = { 3846 }, + }, + }, + [1008] = { + ["end"] = { + ["U"] = { 3845 }, + }, + ["lvl"] = 19, + ["min"] = 14, + ["obj"] = { + ["I"] = { 5490 }, + }, + ["start"] = { + ["U"] = { 3845 }, + }, + }, + [1009] = { + ["end"] = { + ["U"] = { 3846 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["obj"] = { + ["I"] = { 5445 }, + }, + ["pre"] = { 1007 }, + ["start"] = { + ["U"] = { 3846 }, + }, + }, + [1010] = { + ["end"] = { + ["U"] = { 3847 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["obj"] = { + ["I"] = { 5437 }, + }, + ["start"] = { + ["U"] = { 3847 }, + }, + }, + [1011] = { + ["end"] = { + ["U"] = { 3848 }, + }, + ["lvl"] = 29, + ["min"] = 24, + ["obj"] = { + ["I"] = { 5440 }, + }, + ["pre"] = { 4581 }, + ["start"] = { + ["U"] = { 3848 }, + }, + }, + [1012] = { + ["end"] = { + ["U"] = { 3848 }, + }, + ["lvl"] = 32, + ["min"] = 24, + ["obj"] = { + ["U"] = { 3940, 3941, 3942 }, + }, + ["pre"] = { 1011 }, + ["start"] = { + ["U"] = { 3848 }, + }, + }, + [1013] = { + ["end"] = { + ["U"] = { 2934 }, + }, + ["lvl"] = 26, + ["min"] = 16, + ["obj"] = { + ["I"] = { 6283 }, + }, + ["start"] = { + ["U"] = { 2934 }, + }, + }, + [1014] = { + ["end"] = { + ["U"] = { 1938 }, + }, + ["lvl"] = 27, + ["min"] = 18, + ["obj"] = { + ["I"] = { 5442 }, + }, + ["start"] = { + ["U"] = { 1938 }, + }, + }, + [1015] = { + ["close"] = { 1015, 1019, 1047 }, + ["end"] = { + ["U"] = { 3516 }, + }, + ["lvl"] = 55, + ["min"] = 54, + ["start"] = { + ["U"] = { 2198 }, + }, + }, + [1016] = { + ["end"] = { + ["U"] = { 3885 }, + }, + ["lvl"] = 24, + ["min"] = 20, + ["obj"] = { + ["I"] = { 5455, 12220 }, + }, + ["start"] = { + ["U"] = { 3885 }, + }, + }, + [1017] = { + ["end"] = { + ["U"] = { 3885 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["obj"] = { + ["I"] = { 5537 }, + }, + ["pre"] = { 1016 }, + ["start"] = { + ["U"] = { 3885 }, + }, + }, + [1018] = { + ["close"] = { 1000, 1004, 1018 }, + ["end"] = { + ["U"] = { 5769 }, + }, + ["lvl"] = 55, + ["min"] = 54, + ["start"] = { + ["U"] = { 10880 }, + }, + }, + [1019] = { + ["close"] = { 1015, 1019, 1047 }, + ["end"] = { + ["U"] = { 3516 }, + }, + ["lvl"] = 55, + ["min"] = 54, + ["start"] = { + ["U"] = { 10877 }, + }, + }, + [1020] = { + ["end"] = { + ["U"] = { 3894 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["pre"] = { 1010 }, + ["start"] = { + ["U"] = { 3847 }, + }, + }, + [1021] = { + ["end"] = { + ["U"] = { 3920 }, + }, + ["lvl"] = 32, + ["min"] = 26, + ["start"] = { + ["U"] = { 3901 }, + }, + }, + [1022] = { + ["end"] = { + ["U"] = { 3880 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["obj"] = { + ["O"] = { 19027 }, + }, + ["start"] = { + ["U"] = { 3880 }, + }, + }, + [1023] = { + ["end"] = { + ["U"] = { 3691 }, + }, + ["lvl"] = 21, + ["min"] = 18, + ["obj"] = { + ["I"] = { 5463 }, + }, + ["pre"] = { 991 }, + ["start"] = { + ["U"] = { 3891 }, + }, + }, + [1024] = { + ["end"] = { + ["U"] = { 3916 }, + }, + ["lvl"] = 21, + ["min"] = 18, + ["pre"] = { 1023 }, + ["start"] = { + ["U"] = { 3691 }, + }, + }, + [1025] = { + ["end"] = { + ["U"] = { 3691 }, + }, + ["lvl"] = 24, + ["min"] = 18, + ["obj"] = { + ["U"] = { 3743, 3746, 3749, 3750 }, + }, + ["pre"] = { 1023 }, + ["start"] = { + ["U"] = { 3691 }, + }, + }, + [1026] = { + ["end"] = { + ["U"] = { 3916 }, + }, + ["lvl"] = 27, + ["min"] = 18, + ["obj"] = { + ["I"] = { 5464, 5475 }, + }, + ["pre"] = { 1024 }, + ["start"] = { + ["U"] = { 3916 }, + }, + }, + [1027] = { + ["end"] = { + ["U"] = { 3916 }, + }, + ["lvl"] = 28, + ["min"] = 18, + ["obj"] = { + ["I"] = { 5519 }, + }, + ["pre"] = { 1026 }, + ["start"] = { + ["U"] = { 3916 }, + }, + }, + [1028] = { + ["end"] = { + ["O"] = { 19024 }, + }, + ["lvl"] = 28, + ["min"] = 18, + ["pre"] = { 1027 }, + ["start"] = { + ["U"] = { 3916 }, + }, + }, + [1029] = { + ["end"] = { + ["U"] = { 3691 }, + }, + ["lvl"] = 28, + ["min"] = 18, + ["pre"] = { 1055 }, + ["start"] = { + ["U"] = { 3916 }, + }, + }, + [1030] = { + ["end"] = { + ["U"] = { 3897 }, + }, + ["lvl"] = 28, + ["min"] = 18, + ["pre"] = { 1029 }, + ["start"] = { + ["U"] = { 3691 }, + }, + }, + [1031] = { + ["end"] = { + ["U"] = { 3901 }, + }, + ["lvl"] = 32, + ["min"] = 26, + ["obj"] = { + ["I"] = { 5461 }, + }, + ["pre"] = { 1021 }, + ["start"] = { + ["U"] = { 3920 }, + }, + }, + [1032] = { + ["end"] = { + ["U"] = { 3901 }, + }, + ["lvl"] = 32, + ["min"] = 26, + ["obj"] = { + ["I"] = { 5481 }, + }, + ["pre"] = { 1031 }, + ["start"] = { + ["U"] = { 3901 }, + }, + }, + [1033] = { + ["end"] = { + ["U"] = { 3894 }, + }, + ["lvl"] = 22, + ["min"] = 20, + ["obj"] = { + ["I"] = { 5493 }, + }, + ["pre"] = { 1020 }, + ["start"] = { + ["U"] = { 3894 }, + }, + }, + [1034] = { + ["end"] = { + ["U"] = { 3894 }, + }, + ["lvl"] = 23, + ["min"] = 20, + ["obj"] = { + ["I"] = { 5494 }, + }, + ["pre"] = { 1033 }, + ["start"] = { + ["U"] = { 3894 }, + }, + }, + [1035] = { + ["end"] = { + ["U"] = { 3894 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["obj"] = { + ["I"] = { 5508 }, + }, + ["pre"] = { 1034 }, + ["start"] = { + ["U"] = { 3894 }, + }, + }, + [1036] = { + ["end"] = { + ["U"] = { 2546 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["start"] = { + ["U"] = { 2545 }, + }, + }, + [1037] = { + ["end"] = { + ["U"] = { 8026 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["pre"] = { 1022 }, + ["start"] = { + ["U"] = { 3880 }, + }, + }, + [1038] = { + ["end"] = { + ["U"] = { 8026 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["obj"] = { + ["I"] = { 5520 }, + }, + ["pre"] = { 1037 }, + ["start"] = { + ["U"] = { 8026 }, + }, + }, + [1039] = { + ["end"] = { + ["U"] = { 3453 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["pre"] = { 1038 }, + ["start"] = { + ["U"] = { 8026 }, + }, + }, + [1040] = { + ["end"] = { + ["U"] = { 3945 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["pre"] = { 1039 }, + ["start"] = { + ["U"] = { 3453 }, + }, + }, + [1041] = { + ["end"] = { + ["U"] = { 267 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["pre"] = { 1040 }, + ["start"] = { + ["U"] = { 3945 }, + }, + }, + [1042] = { + ["end"] = { + ["U"] = { 661 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["pre"] = { 1041 }, + ["start"] = { + ["U"] = { 267 }, + }, + }, + [1043] = { + ["end"] = { + ["U"] = { 661 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["obj"] = { + ["O"] = { 19030 }, + }, + ["pre"] = { 1042 }, + ["start"] = { + ["U"] = { 661 }, + }, + }, + [1044] = { + ["end"] = { + ["U"] = { 8026 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["pre"] = { 1043 }, + ["start"] = { + ["U"] = { 661 }, + }, + }, + [1045] = { + ["end"] = { + ["U"] = { 3897 }, + }, + ["lvl"] = 30, + ["min"] = 18, + ["obj"] = { + ["I"] = { 5388 }, + ["U"] = { 3696, 3932 }, + }, + ["pre"] = { 1030 }, + ["start"] = { + ["U"] = { 3897 }, + }, + }, + [1046] = { + ["end"] = { + ["U"] = { 3691 }, + }, + ["lvl"] = 30, + ["min"] = 18, + ["obj"] = { + ["I"] = { 5388, 5462 }, + }, + ["pre"] = { 1045 }, + ["start"] = { + ["U"] = { 3897 }, + }, + }, + [1047] = { + ["close"] = { 1015, 1019, 1047 }, + ["end"] = { + ["U"] = { 3516 }, + }, + ["lvl"] = 55, + ["min"] = 54, + ["start"] = { + ["U"] = { 10878 }, + }, + }, + [1048] = { + ["end"] = { + ["U"] = { 2425 }, + }, + ["lvl"] = 42, + ["min"] = 33, + ["obj"] = { + ["U"] = { 3974, 3975, 3976, 3977 }, + }, + ["start"] = { + ["U"] = { 2425 }, + }, + }, + [1049] = { + ["end"] = { + ["U"] = { 3978 }, + }, + ["lvl"] = 38, + ["min"] = 28, + ["obj"] = { + ["I"] = { 5535 }, + }, + ["race"] = 162, + ["start"] = { + ["U"] = { 3978 }, + }, + }, + [1050] = { + ["end"] = { + ["U"] = { 3979 }, + }, + ["lvl"] = 38, + ["min"] = 28, + ["obj"] = { + ["I"] = { 5536 }, + }, + ["start"] = { + ["U"] = { 3979 }, + }, + }, + [1051] = { + ["end"] = { + ["U"] = { 3982 }, + }, + ["lvl"] = 33, + ["min"] = 25, + ["obj"] = { + ["I"] = { 5538 }, + }, + ["start"] = { + ["U"] = { 3981 }, + }, + }, + [1052] = { + ["end"] = { + ["U"] = { 3980 }, + }, + ["lvl"] = 40, + ["min"] = 34, + ["pre"] = { 261 }, + ["start"] = { + ["U"] = { 1182 }, + }, + }, + [1053] = { + ["end"] = { + ["U"] = { 3980 }, + }, + ["lvl"] = 40, + ["min"] = 34, + ["obj"] = { + ["U"] = { 3974, 3975, 3976, 3977 }, + }, + ["pre"] = { 1052 }, + ["start"] = { + ["U"] = { 3980 }, + }, + }, + [1054] = { + ["end"] = { + ["U"] = { 3691 }, + }, + ["lvl"] = 25, + ["min"] = 18, + ["obj"] = { + ["I"] = { 5544 }, + }, + ["start"] = { + ["U"] = { 3691 }, + }, + }, + [1055] = { + ["end"] = { + ["U"] = { 3916 }, + }, + ["lvl"] = 28, + ["min"] = 18, + ["pre"] = { 1028 }, + ["start"] = { + ["O"] = { 19024 }, + }, + }, + [1056] = { + ["end"] = { + ["U"] = { 3994 }, + }, + ["lvl"] = 18, + ["min"] = 18, + ["start"] = { + ["U"] = { 3996 }, + }, + }, + [1057] = { + ["end"] = { + ["U"] = { 3994 }, + }, + ["lvl"] = 27, + ["min"] = 20, + ["obj"] = { + ["U"] = { 4022, 4023, 4024, 4025 }, + }, + ["pre"] = { 1056 }, + ["start"] = { + ["U"] = { 3994 }, + }, + }, + [1058] = { + ["end"] = { + ["U"] = { 3995 }, + }, + ["lvl"] = 26, + ["min"] = 20, + ["obj"] = { + ["I"] = { 5582, 5583, 5584, 5585 }, + }, + ["start"] = { + ["U"] = { 3995 }, + }, + }, + [1059] = { + ["end"] = { + ["U"] = { 4048 }, + }, + ["lvl"] = 27, + ["min"] = 20, + ["pre"] = { 1057 }, + ["start"] = { + ["U"] = { 3994 }, + }, + }, + [1060] = { + ["end"] = { + ["U"] = { 3995 }, + }, + ["lvl"] = 20, + ["min"] = 15, + ["pre"] = { 876 }, + ["start"] = { + ["U"] = { 3449 }, + }, + }, + [1061] = { + ["end"] = { + ["U"] = { 4049 }, + }, + ["lvl"] = 17, + ["min"] = 13, + ["start"] = { + ["U"] = { 4047 }, + }, + }, + [1062] = { + ["end"] = { + ["U"] = { 4049 }, + }, + ["lvl"] = 19, + ["min"] = 13, + ["obj"] = { + ["U"] = { 3989 }, + }, + ["pre"] = { 1061 }, + ["start"] = { + ["U"] = { 4049 }, + }, + }, + [1063] = { + ["end"] = { + ["U"] = { 4046 }, + }, + ["lvl"] = 18, + ["min"] = 13, + ["pre"] = { 1062 }, + ["start"] = { + ["U"] = { 4049 }, + }, + }, + [1064] = { + ["end"] = { + ["U"] = { 3419 }, + }, + ["lvl"] = 18, + ["min"] = 13, + ["pre"] = { 1063 }, + ["start"] = { + ["U"] = { 4046 }, + }, + }, + [1065] = { + ["end"] = { + ["U"] = { 2216 }, + }, + ["lvl"] = 18, + ["min"] = 13, + ["pre"] = { 1064 }, + ["start"] = { + ["U"] = { 3419 }, + }, + }, + [1066] = { + ["end"] = { + ["U"] = { 2216 }, + }, + ["lvl"] = 23, + ["min"] = 13, + ["obj"] = { + ["I"] = { 5620 }, + }, + ["pre"] = { 1065 }, + ["start"] = { + ["U"] = { 2216 }, + }, + }, + [1067] = { + ["end"] = { + ["U"] = { 3419 }, + }, + ["lvl"] = 23, + ["min"] = 13, + ["pre"] = { 1066 }, + ["start"] = { + ["U"] = { 2216 }, + }, + }, + [1068] = { + ["end"] = { + ["U"] = { 4049 }, + }, + ["lvl"] = 23, + ["min"] = 13, + ["obj"] = { + ["U"] = { 4073, 4074 }, + }, + ["pre"] = { 1062 }, + ["start"] = { + ["U"] = { 4049 }, + }, + }, + [1069] = { + ["end"] = { + ["U"] = { 3446 }, + }, + ["lvl"] = 20, + ["min"] = 15, + ["obj"] = { + ["I"] = { 5570 }, + }, + ["start"] = { + ["U"] = { 3446 }, + }, + }, + [1070] = { + ["end"] = { + ["U"] = { 4080 }, + }, + ["lvl"] = 21, + ["min"] = 17, + ["start"] = { + ["U"] = { 4079 }, + }, + }, + [1071] = { + ["end"] = { + ["U"] = { 4077 }, + }, + ["lvl"] = 21, + ["min"] = 17, + ["obj"] = { + ["U"] = { 3989, 3991 }, + }, + ["pre"] = { 1085 }, + ["start"] = { + ["U"] = { 4077 }, + }, + }, + [1072] = { + ["end"] = { + ["U"] = { 4081 }, + }, + ["lvl"] = 21, + ["min"] = 17, + ["pre"] = { 1071 }, + ["start"] = { + ["U"] = { 4077 }, + }, + }, + [1073] = { + ["end"] = { + ["U"] = { 4081 }, + }, + ["lvl"] = 21, + ["min"] = 17, + ["obj"] = { + ["I"] = { 2455, 2458 }, + }, + ["pre"] = { 1072 }, + ["start"] = { + ["U"] = { 4081 }, + }, + }, + [1074] = { + ["end"] = { + ["U"] = { 4077 }, + }, + ["lvl"] = 21, + ["min"] = 17, + ["pre"] = { 1073 }, + ["start"] = { + ["U"] = { 4081 }, + }, + }, + [1075] = { + ["end"] = { + ["U"] = { 4078 }, + }, + ["lvl"] = 21, + ["min"] = 17, + ["pre"] = { 1071 }, + ["start"] = { + ["U"] = { 4077 }, + }, + }, + [1076] = { + ["end"] = { + ["U"] = { 4078 }, + }, + ["lvl"] = 21, + ["min"] = 17, + ["obj"] = { + ["I"] = { 5669 }, + }, + ["pre"] = { 1075 }, + ["start"] = { + ["U"] = { 4078 }, + }, + }, + [1077] = { + ["end"] = { + ["U"] = { 4077 }, + }, + ["lvl"] = 21, + ["min"] = 17, + ["pre"] = { 1076 }, + ["start"] = { + ["U"] = { 4078 }, + }, + }, + [1078] = { + ["end"] = { + ["U"] = { 4078 }, + }, + ["lvl"] = 26, + ["min"] = 17, + ["obj"] = { + ["I"] = { 5675 }, + }, + ["start"] = { + ["U"] = { 4078 }, + }, + }, + [1079] = { + ["end"] = { + ["U"] = { 4077 }, + }, + ["lvl"] = 22, + ["min"] = 17, + ["obj"] = { + ["I"] = { 5692, 5693, 5694, 5695, 5718 }, + ["IR"] = { 5692, 5693, 5694, 5695 }, + }, + ["pre"] = { 1074, 1077 }, + ["start"] = { + ["U"] = { 4077 }, + }, + }, + [1080] = { + ["end"] = { + ["U"] = { 4077 }, + }, + ["lvl"] = 22, + ["min"] = 17, + ["obj"] = { + ["I"] = { 5717 }, + }, + ["start"] = { + ["U"] = { 4077 }, + }, + }, + [1081] = { + ["end"] = { + ["U"] = { 7999 }, + }, + ["lvl"] = 28, + ["min"] = 17, + ["pre"] = { 1082 }, + ["start"] = { + ["U"] = { 4079 }, + }, + }, + [1082] = { + ["end"] = { + ["U"] = { 4079 }, + }, + ["lvl"] = 22, + ["min"] = 17, + ["pre"] = { 1083, 1084 }, + ["start"] = { + ["U"] = { 4080 }, + }, + }, + [1083] = { + ["end"] = { + ["U"] = { 4080 }, + }, + ["lvl"] = 26, + ["min"] = 20, + ["obj"] = { + ["I"] = { 5659 }, + }, + ["pre"] = { 1091 }, + ["start"] = { + ["U"] = { 4080 }, + }, + }, + [1084] = { + ["end"] = { + ["U"] = { 4080 }, + }, + ["lvl"] = 28, + ["min"] = 22, + ["obj"] = { + ["I"] = { 5664 }, + }, + ["pre"] = { 1091 }, + ["start"] = { + ["U"] = { 4080 }, + }, + }, + [1085] = { + ["end"] = { + ["U"] = { 4077 }, + }, + ["lvl"] = 21, + ["min"] = 17, + ["pre"] = { 1070 }, + ["start"] = { + ["U"] = { 4080 }, + }, + }, + [1086] = { + ["end"] = { + ["U"] = { 3419 }, + }, + ["lvl"] = 23, + ["min"] = 13, + ["obj"] = { + ["IR"] = { 5638 }, + }, + ["pre"] = { 1067 }, + ["start"] = { + ["U"] = { 3419 }, + }, + }, + [1087] = { + ["end"] = { + ["U"] = { 4198 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["obj"] = { + ["U"] = { 4051, 4053, 4057 }, + }, + ["start"] = { + ["U"] = { 4198 }, + }, + }, + [1088] = { + ["end"] = { + ["U"] = { 4198 }, + }, + ["lvl"] = 29, + ["min"] = 20, + ["obj"] = { + ["I"] = { 5686 }, + }, + ["pre"] = { 1087 }, + ["start"] = { + ["U"] = { 4198 }, + }, + }, + [1089] = { + ["end"] = { + ["O"] = { 19599 }, + }, + ["lvl"] = 29, + ["min"] = 20, + ["obj"] = { + ["I"] = { 5687, 5689, 5690, 5691 }, + }, + ["pre"] = { 1088 }, + ["start"] = { + ["U"] = { 4198 }, + }, + }, + [1090] = { + ["end"] = { + ["U"] = { 4276 }, + }, + ["lvl"] = 22, + ["min"] = 17, + ["start"] = { + ["U"] = { 4276 }, + }, + }, + [1091] = { + ["end"] = { + ["U"] = { 4080 }, + }, + ["lvl"] = 22, + ["min"] = 17, + ["pre"] = { 1079, 1080 }, + ["start"] = { + ["U"] = { 4077 }, + }, + }, + [1092] = { + ["end"] = { + ["U"] = { 4201 }, + }, + ["lvl"] = 22, + ["min"] = 17, + ["pre"] = { 1090 }, + ["start"] = { + ["U"] = { 4276 }, + }, + }, + [1093] = { + ["end"] = { + ["U"] = { 4201 }, + }, + ["lvl"] = 21, + ["min"] = 16, + ["obj"] = { + ["I"] = { 5734 }, + }, + ["pre"] = { 1483 }, + ["start"] = { + ["U"] = { 4201 }, + }, + }, + [1094] = { + ["end"] = { + ["U"] = { 3442 }, + }, + ["lvl"] = 21, + ["min"] = 16, + ["pre"] = { 1093 }, + ["start"] = { + ["U"] = { 4201 }, + }, + }, + [1095] = { + ["end"] = { + ["U"] = { 4201 }, + }, + ["lvl"] = 27, + ["min"] = 16, + ["pre"] = { 1094 }, + ["start"] = { + ["U"] = { 3442 }, + }, + }, + [1096] = { + ["end"] = { + ["U"] = { 4201 }, + }, + ["lvl"] = 27, + ["min"] = 16, + ["obj"] = { + ["I"] = { 5736 }, + }, + ["pre"] = { 1095 }, + ["start"] = { + ["U"] = { 4201 }, + }, + }, + [1097] = { + ["end"] = { + ["U"] = { 1416 }, + }, + ["lvl"] = 15, + ["min"] = 9, + ["start"] = { + ["U"] = { 514, 415 }, + }, + }, + [1098] = { + ["end"] = { + ["U"] = { 4444 }, + }, + ["lvl"] = 25, + ["min"] = 18, + ["start"] = { + ["U"] = { 1952 }, + }, + }, + [1099] = { + ["lvl"] = 1, + ["min"] = 1, + ["obj"] = { + ["I"] = { 5769 }, + }, + }, + [1100] = { + ["end"] = { + ["U"] = { 4048 }, + }, + ["lvl"] = 34, + ["min"] = 29, + ["race"] = 77, + ["start"] = { + ["I"] = { 5791 }, + }, + }, + [1101] = { + ["end"] = { + ["U"] = { 4048 }, + }, + ["lvl"] = 34, + ["min"] = 29, + ["obj"] = { + ["I"] = { 5792 }, + }, + ["pre"] = { 1100 }, + ["start"] = { + ["U"] = { 4048 }, + }, + }, + [1102] = { + ["end"] = { + ["U"] = { 4451 }, + }, + ["lvl"] = 34, + ["min"] = 29, + ["obj"] = { + ["I"] = { 5793 }, + }, + ["start"] = { + ["U"] = { 4451 }, + }, + }, + [1103] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 7007 }, + }, + ["lvl"] = 23, + ["min"] = 20, + ["obj"] = { + ["I"] = { 6637 }, + ["IR"] = { 6637 }, + }, + ["pre"] = { 100 }, + ["start"] = { + ["U"] = { 7007 }, + }, + }, + [1104] = { + ["end"] = { + ["U"] = { 4454 }, + }, + ["lvl"] = 30, + ["min"] = 28, + ["obj"] = { + ["I"] = { 5794 }, + }, + ["start"] = { + ["U"] = { 4454 }, + }, + }, + [1105] = { + ["end"] = { + ["U"] = { 4453 }, + }, + ["lvl"] = 30, + ["min"] = 28, + ["obj"] = { + ["I"] = { 5795 }, + }, + ["start"] = { + ["U"] = { 4453 }, + }, + }, + [1106] = { + ["end"] = { + ["U"] = { 4618 }, + }, + ["lvl"] = 35, + ["min"] = 26, + ["pre"] = { 1104 }, + ["start"] = { + ["U"] = { 4454 }, + }, + }, + [1107] = { + ["end"] = { + ["U"] = { 4453 }, + }, + ["lvl"] = 35, + ["min"] = 28, + ["obj"] = { + ["I"] = { 5796 }, + }, + ["pre"] = { 1105 }, + ["start"] = { + ["U"] = { 4453 }, + }, + }, + [1108] = { + ["end"] = { + ["U"] = { 4618 }, + }, + ["lvl"] = 39, + ["min"] = 28, + ["obj"] = { + ["I"] = { 5797 }, + }, + ["pre"] = { 1106 }, + ["start"] = { + ["U"] = { 4618 }, + }, + }, + [1109] = { + ["end"] = { + ["U"] = { 2055 }, + }, + ["lvl"] = 33, + ["min"] = 30, + ["obj"] = { + ["I"] = { 5801 }, + }, + ["start"] = { + ["U"] = { 2055 }, + }, + }, + [1110] = { + ["end"] = { + ["U"] = { 4452 }, + }, + ["lvl"] = 31, + ["min"] = 28, + ["obj"] = { + ["I"] = { 5798 }, + }, + ["start"] = { + ["U"] = { 4452 }, + }, + }, + [1111] = { + ["end"] = { + ["U"] = { 3453 }, + }, + ["lvl"] = 36, + ["min"] = 30, + ["start"] = { + ["U"] = { 4452 }, + }, + }, + [1112] = { + ["end"] = { + ["U"] = { 4452 }, + }, + ["lvl"] = 31, + ["min"] = 30, + ["pre"] = { 1111 }, + ["start"] = { + ["U"] = { 3453 }, + }, + }, + [1113] = { + ["end"] = { + ["U"] = { 2055 }, + }, + ["lvl"] = 33, + ["min"] = 30, + ["obj"] = { + ["I"] = { 5805 }, + }, + ["pre"] = { 1109 }, + ["start"] = { + ["U"] = { 2055 }, + }, + }, + [1114] = { + ["end"] = { + ["U"] = { 4454 }, + }, + ["lvl"] = 36, + ["min"] = 30, + ["pre"] = { 1112 }, + ["start"] = { + ["U"] = { 4452 }, + }, + }, + [1115] = { + ["end"] = { + ["U"] = { 773 }, + }, + ["lvl"] = 36, + ["min"] = 30, + ["pre"] = { 1114 }, + ["start"] = { + ["U"] = { 4452 }, + }, + }, + [1116] = { + ["end"] = { + ["U"] = { 773 }, + }, + ["lvl"] = 36, + ["min"] = 30, + ["obj"] = { + ["I"] = { 5803 }, + }, + ["pre"] = { 1115 }, + ["start"] = { + ["U"] = { 773 }, + }, + }, + [1117] = { + ["end"] = { + ["U"] = { 4452 }, + }, + ["lvl"] = 36, + ["min"] = 30, + ["pre"] = { 1116 }, + ["start"] = { + ["U"] = { 773 }, + }, + }, + [1118] = { + ["end"] = { + ["U"] = { 2498 }, + }, + ["lvl"] = 43, + ["min"] = 35, + ["pre"] = { 1117 }, + ["start"] = { + ["U"] = { 4452 }, + }, + }, + [1119] = { + ["end"] = { + ["U"] = { 4452 }, + }, + ["lvl"] = 44, + ["min"] = 35, + ["pre"] = { 621, 1118 }, + ["start"] = { + ["U"] = { 2498 }, + }, + }, + [1120] = { + ["close"] = { 1120, 1121 }, + ["end"] = { + ["U"] = { 4495 }, + }, + ["lvl"] = 44, + ["min"] = 35, + ["pre"] = { 1119 }, + ["start"] = { + ["U"] = { 4452 }, + }, + }, + [1121] = { + ["close"] = { 1120, 1121 }, + ["end"] = { + ["U"] = { 4496 }, + }, + ["lvl"] = 44, + ["min"] = 35, + ["pre"] = { 1119 }, + ["start"] = { + ["U"] = { 4452 }, + }, + }, + [1122] = { + ["end"] = { + ["U"] = { 2498 }, + }, + ["lvl"] = 44, + ["min"] = 35, + ["start"] = { + ["U"] = { 4452 }, + }, + }, + [1123] = { + ["end"] = { + ["U"] = { 11801 }, + }, + ["lvl"] = 55, + ["min"] = 54, + ["pre"] = { 1000, 1004, 1018 }, + ["start"] = { + ["U"] = { 5769 }, + }, + }, + [1124] = { + ["end"] = { + ["U"] = { 13220 }, + }, + ["lvl"] = 55, + ["min"] = 54, + ["pre"] = { 1123, 6762 }, + ["start"] = { + ["U"] = { 11801 }, + }, + }, + [1125] = { + ["end"] = { + ["U"] = { 13220 }, + }, + ["lvl"] = 55, + ["min"] = 54, + ["obj"] = { + ["U"] = { 12178, 12179 }, + }, + ["pre"] = { 1124 }, + ["start"] = { + ["U"] = { 13220 }, + }, + }, + [1126] = { + ["end"] = { + ["U"] = { 13220 }, + }, + ["lvl"] = 57, + ["min"] = 54, + ["obj"] = { + ["I"] = { 17345, 17346 }, + }, + ["pre"] = { 1125 }, + ["start"] = { + ["U"] = { 13220 }, + }, + }, + [1127] = { + ["end"] = { + ["U"] = { 2498 }, + }, + ["lvl"] = 44, + ["min"] = 35, + ["obj"] = { + ["I"] = { 4016 }, + }, + ["pre"] = { 1119 }, + ["start"] = { + ["U"] = { 2498 }, + }, + }, + [1130] = { + ["end"] = { + ["U"] = { 3441 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["pre"] = { 882 }, + ["start"] = { + ["U"] = { 3387 }, + }, + }, + [1131] = { + ["end"] = { + ["U"] = { 3441 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["obj"] = { + ["I"] = { 5837 }, + }, + ["pre"] = { 1130 }, + ["start"] = { + ["U"] = { 3441 }, + }, + }, + [1132] = { + ["end"] = { + ["U"] = { 4456 }, + }, + ["lvl"] = 20, + ["min"] = 18, + ["start"] = { + ["U"] = { 4455 }, + }, + }, + [1133] = { + ["end"] = { + ["U"] = { 3845 }, + }, + ["lvl"] = 20, + ["min"] = 18, + ["pre"] = { 1132 }, + ["start"] = { + ["U"] = { 4456 }, + }, + }, + [1134] = { + ["end"] = { + ["U"] = { 3845 }, + }, + ["lvl"] = 21, + ["min"] = 18, + ["obj"] = { + ["I"] = { 5808 }, + }, + ["pre"] = { 1008 }, + ["start"] = { + ["U"] = { 3845 }, + }, + }, + [1135] = { + ["end"] = { + ["U"] = { 4456 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["obj"] = { + ["I"] = { 5809 }, + }, + ["start"] = { + ["U"] = { 4456 }, + }, + }, + [1136] = { + ["end"] = { + ["U"] = { 3441 }, + }, + ["lvl"] = 37, + ["min"] = 26, + ["obj"] = { + ["I"] = { 5810, 5811 }, + ["IR"] = { 5810 }, + }, + ["pre"] = { 1131 }, + ["start"] = { + ["U"] = { 3441 }, + }, + }, + [1137] = { + ["end"] = { + ["U"] = { 4454 }, + }, + ["lvl"] = 38, + ["min"] = 28, + ["pre"] = { 1108 }, + ["start"] = { + ["U"] = { 4618 }, + }, + }, + [1138] = { + ["end"] = { + ["U"] = { 10216 }, + }, + ["lvl"] = 17, + ["min"] = 15, + ["obj"] = { + ["I"] = { 12237 }, + }, + ["start"] = { + ["U"] = { 10216 }, + }, + }, + [1139] = { + ["end"] = { + ["U"] = { 2918 }, + }, + ["lvl"] = 45, + ["min"] = 35, + ["obj"] = { + ["I"] = { 5824 }, + }, + ["pre"] = { 762 }, + ["start"] = { + ["U"] = { 2918 }, + }, + }, + [1140] = { + ["end"] = { + ["U"] = { 3663 }, + }, + ["lvl"] = 28, + ["min"] = 13, + ["obj"] = { + ["O"] = { 19901, 20352 }, + }, + ["pre"] = { 973 }, + ["start"] = { + ["U"] = { 3663 }, + }, + }, + [1141] = { + ["end"] = { + ["U"] = { 10216 }, + }, + ["lvl"] = 14, + ["min"] = 10, + ["obj"] = { + ["I"] = { 12238 }, + }, + ["start"] = { + ["U"] = { 10216 }, + }, + }, + [1142] = { + ["end"] = { + ["U"] = { 4521 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["obj"] = { + ["I"] = { 5825 }, + }, + ["start"] = { + ["U"] = { 4510 }, + }, + }, + [1143] = { + ["end"] = { + ["U"] = { 3661 }, + }, + ["lvl"] = 31, + ["min"] = 13, + ["obj"] = { + ["I"] = { 5383 }, + }, + ["pre"] = { 1167 }, + ["start"] = { + ["U"] = { 3661 }, + }, + }, + [1144] = { + ["end"] = { + ["U"] = { 4508 }, + }, + ["lvl"] = 30, + ["min"] = 22, + ["start"] = { + ["U"] = { 4508 }, + }, + }, + [1145] = { + ["end"] = { + ["U"] = { 4485 }, + }, + ["lvl"] = 33, + ["min"] = 29, + ["start"] = { + ["U"] = { 3428 }, + }, + }, + [1146] = { + ["end"] = { + ["U"] = { 4483 }, + }, + ["lvl"] = 33, + ["min"] = 29, + ["pre"] = { 1145 }, + ["start"] = { + ["U"] = { 4485 }, + }, + }, + [1147] = { + ["end"] = { + ["U"] = { 4483 }, + }, + ["lvl"] = 35, + ["min"] = 29, + ["obj"] = { + ["U"] = { 4130, 4131, 4133 }, + }, + ["pre"] = { 1146 }, + ["start"] = { + ["U"] = { 4483 }, + }, + }, + [1148] = { + ["end"] = { + ["U"] = { 3428 }, + }, + ["lvl"] = 35, + ["min"] = 28, + ["obj"] = { + ["I"] = { 5853, 5854, 5855 }, + }, + ["race"] = 178, + ["start"] = { + ["I"] = { 5877 }, + }, + }, + [1149] = { + ["end"] = { + ["U"] = { 2986 }, + }, + ["lvl"] = 26, + ["min"] = 25, + ["obj"] = { + ["A"] = { 246 }, + }, + ["start"] = { + ["U"] = { 2986 }, + }, + }, + [1150] = { + ["end"] = { + ["U"] = { 2986 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["obj"] = { + ["I"] = { 5843, 5845 }, + }, + ["pre"] = { 1149 }, + ["start"] = { + ["U"] = { 2986 }, + }, + }, + [1151] = { + ["end"] = { + ["U"] = { 2986 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["obj"] = { + ["I"] = { 5844 }, + }, + ["pre"] = { 1150 }, + ["start"] = { + ["U"] = { 2986 }, + }, + }, + [1152] = { + ["end"] = { + ["U"] = { 4489 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["pre"] = { 1151 }, + ["start"] = { + ["U"] = { 2986 }, + }, + }, + [1153] = { + ["end"] = { + ["U"] = { 3433 }, + }, + ["lvl"] = 29, + ["min"] = 25, + ["obj"] = { + ["I"] = { 5842 }, + }, + ["pre"] = { 893 }, + ["start"] = { + ["U"] = { 3433 }, + }, + }, + [1154] = { + ["end"] = { + ["U"] = { 4489 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["obj"] = { + ["I"] = { 5860 }, + }, + ["pre"] = { 1152 }, + ["start"] = { + ["U"] = { 4489 }, + }, + }, + [1155] = { + ["lvl"] = 55, + ["min"] = 54, + ["start"] = { + ["I"] = { 17409 }, + }, + }, + [1156] = { + ["lvl"] = 58, + ["min"] = 25, + }, + [1157] = { + ["lvl"] = 57, + ["min"] = 54, + }, + [1158] = { + ["lvl"] = 58, + ["min"] = 54, + }, + [1159] = { + ["end"] = { + ["U"] = { 4488 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["pre"] = { 6627 }, + ["start"] = { + ["U"] = { 4489 }, + }, + }, + [1160] = { + ["end"] = { + ["U"] = { 4488 }, + }, + ["lvl"] = 36, + ["min"] = 25, + ["obj"] = { + ["I"] = { 5861 }, + }, + ["pre"] = { 1159 }, + ["start"] = { + ["U"] = { 4488 }, + }, + }, + [1161] = { + ["lvl"] = 58, + ["min"] = 55, + }, + [1162] = { + ["lvl"] = 58, + ["min"] = 55, + }, + [1163] = { + ["lvl"] = 58, + ["min"] = 55, + }, + [1164] = { + ["end"] = { + ["U"] = { 4486 }, + }, + ["lvl"] = 36, + ["min"] = 27, + ["obj"] = { + ["I"] = { 5830, 5831, 5832 }, + }, + ["start"] = { + ["U"] = { 4486 }, + }, + }, + [1166] = { + ["end"] = { + ["U"] = { 4500 }, + }, + ["lvl"] = 43, + ["min"] = 38, + ["obj"] = { + ["I"] = { 5834, 5835, 5836 }, + }, + ["start"] = { + ["U"] = { 4500 }, + }, + }, + [1167] = { + ["end"] = { + ["U"] = { 3661 }, + }, + ["lvl"] = 28, + ["min"] = 13, + ["pre"] = { 1140 }, + ["start"] = { + ["U"] = { 3663 }, + }, + }, + [1168] = { + ["end"] = { + ["U"] = { 4502 }, + }, + ["lvl"] = 43, + ["min"] = 38, + ["obj"] = { + ["U"] = { 4328, 4329, 4331 }, + }, + ["start"] = { + ["U"] = { 4502 }, + }, + }, + [1169] = { + ["end"] = { + ["U"] = { 4501 }, + }, + ["lvl"] = 43, + ["min"] = 38, + ["obj"] = { + ["I"] = { 5840, 5841 }, + }, + ["start"] = { + ["U"] = { 4501 }, + }, + }, + [1170] = { + ["end"] = { + ["U"] = { 4500 }, + }, + ["lvl"] = 43, + ["min"] = 38, + ["pre"] = { 1169 }, + ["start"] = { + ["U"] = { 4501 }, + }, + }, + [1171] = { + ["end"] = { + ["U"] = { 4501 }, + }, + ["lvl"] = 43, + ["min"] = 38, + ["pre"] = { 1170 }, + ["start"] = { + ["U"] = { 4500 }, + }, + }, + [1172] = { + ["end"] = { + ["U"] = { 4501 }, + }, + ["lvl"] = 45, + ["min"] = 38, + ["obj"] = { + ["O"] = { 20359 }, + }, + ["pre"] = { 1171 }, + ["start"] = { + ["U"] = { 4501 }, + }, + }, + [1173] = { + ["end"] = { + ["U"] = { 4501 }, + }, + ["lvl"] = 45, + ["min"] = 38, + ["pre"] = { 1172 }, + ["start"] = { + ["U"] = { 4500 }, + }, + }, + [1174] = { + ["lvl"] = 1, + ["min"] = 1, + ["obj"] = { + ["I"] = { 5768 }, + }, + }, + [1175] = { + ["end"] = { + ["U"] = { 4629 }, + }, + ["lvl"] = 33, + ["min"] = 28, + ["obj"] = { + ["U"] = { 4147, 4150, 4151 }, + }, + ["start"] = { + ["U"] = { 4629 }, + }, + }, + [1176] = { + ["end"] = { + ["U"] = { 4630 }, + }, + ["lvl"] = 30, + ["min"] = 29, + ["obj"] = { + ["I"] = { 5848 }, + }, + ["start"] = { + ["U"] = { 4630 }, + }, + }, + [1177] = { + ["end"] = { + ["U"] = { 4503 }, + }, + ["lvl"] = 36, + ["min"] = 32, + ["obj"] = { + ["I"] = { 5847 }, + }, + ["start"] = { + ["U"] = { 4503 }, + }, + }, + [1178] = { + ["end"] = { + ["U"] = { 3391 }, + }, + ["lvl"] = 37, + ["min"] = 29, + ["pre"] = { 1176 }, + ["start"] = { + ["U"] = { 4630 }, + }, + }, + [1179] = { + ["end"] = { + ["U"] = { 4453 }, + }, + ["lvl"] = 30, + ["min"] = 28, + ["start"] = { + ["U"] = { 2092 }, + }, + }, + [1180] = { + ["end"] = { + ["U"] = { 4631 }, + }, + ["lvl"] = 37, + ["min"] = 29, + ["pre"] = { 1178 }, + ["start"] = { + ["U"] = { 3391 }, + }, + }, + [1181] = { + ["end"] = { + ["U"] = { 2496 }, + }, + ["lvl"] = 37, + ["min"] = 29, + ["pre"] = { 1180 }, + ["start"] = { + ["U"] = { 4631 }, + }, + }, + [1182] = { + ["end"] = { + ["U"] = { 2496 }, + }, + ["lvl"] = 37, + ["min"] = 29, + ["obj"] = { + ["I"] = { 5851, 5852 }, + }, + ["pre"] = { 1181 }, + ["start"] = { + ["U"] = { 2496 }, + }, + }, + [1183] = { + ["end"] = { + ["U"] = { 4630 }, + }, + ["lvl"] = 37, + ["min"] = 29, + ["pre"] = { 1182 }, + ["start"] = { + ["U"] = { 2496 }, + }, + }, + [1184] = { + ["end"] = { + ["U"] = { 4485 }, + }, + ["lvl"] = 35, + ["min"] = 28, + ["pre"] = { 1148 }, + ["start"] = { + ["U"] = { 3428 }, + }, + }, + [1185] = { + ["end"] = { + ["U"] = { 11939 }, + }, + ["lvl"] = 57, + ["min"] = 54, + ["pre"] = { 6845 }, + ["start"] = { + ["U"] = { 11939 }, + }, + }, + [1186] = { + ["end"] = { + ["U"] = { 4706 }, + }, + ["lvl"] = 37, + ["min"] = 29, + ["pre"] = { 1183 }, + ["start"] = { + ["U"] = { 4630 }, + }, + }, + [1187] = { + ["end"] = { + ["U"] = { 4706 }, + }, + ["lvl"] = 41, + ["min"] = 29, + ["obj"] = { + ["I"] = { 5862 }, + }, + ["pre"] = { 1186 }, + ["start"] = { + ["U"] = { 4706 }, + }, + }, + [1188] = { + ["end"] = { + ["U"] = { 4708 }, + }, + ["lvl"] = 41, + ["min"] = 29, + ["pre"] = { 1187 }, + ["start"] = { + ["U"] = { 4706 }, + }, + }, + [1189] = { + ["end"] = { + ["U"] = { 4706 }, + }, + ["lvl"] = 41, + ["min"] = 29, + ["pre"] = { 1188 }, + ["start"] = { + ["U"] = { 4708 }, + }, + }, + [1190] = { + ["end"] = { + ["O"] = { 20805 }, + }, + ["lvl"] = 41, + ["min"] = 29, + ["pre"] = { 1137 }, + ["start"] = { + ["U"] = { 4630 }, + }, + }, + [1191] = { + ["end"] = { + ["U"] = { 4709 }, + }, + ["lvl"] = 41, + ["min"] = 29, + ["start"] = { + ["U"] = { 4709 }, + }, + }, + [1192] = { + ["end"] = { + ["U"] = { 4630 }, + }, + ["lvl"] = 42, + ["min"] = 29, + ["obj"] = { + ["I"] = { 5833 }, + }, + ["pre"] = { 1194 }, + ["start"] = { + ["U"] = { 4630 }, + }, + }, + [1193] = { + ["end"] = { + ["O"] = { 179485 }, + }, + ["lvl"] = 60, + ["min"] = 56, + ["obj"] = { + ["I"] = { 3829, 15994 }, + }, + ["start"] = { + ["O"] = { 179485 }, + }, + }, + [1194] = { + ["end"] = { + ["U"] = { 4630 }, + }, + ["lvl"] = 41, + ["min"] = 29, + ["pre"] = { 1190 }, + ["start"] = { + ["O"] = { 20805 }, + }, + }, + [1195] = { + ["end"] = { + ["U"] = { 4721 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["obj"] = { + ["I"] = { 5867, 5868 }, + ["IR"] = { 5867 }, + }, + ["start"] = { + ["U"] = { 4721 }, + }, + }, + [1196] = { + ["end"] = { + ["U"] = { 4722 }, + }, + ["lvl"] = 29, + ["min"] = 20, + ["pre"] = { 1195 }, + ["start"] = { + ["U"] = { 4721 }, + }, + }, + [1197] = { + ["end"] = { + ["U"] = { 4722 }, + }, + ["lvl"] = 29, + ["min"] = 20, + ["obj"] = { + ["I"] = { 5869 }, + }, + ["pre"] = { 1196 }, + ["start"] = { + ["U"] = { 4722 }, + }, + }, + [1198] = { + ["end"] = { + ["U"] = { 4787 }, + }, + ["lvl"] = 24, + ["min"] = 18, + ["start"] = { + ["U"] = { 4786 }, + }, + }, + [1199] = { + ["end"] = { + ["U"] = { 4784 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["obj"] = { + ["I"] = { 5879 }, + }, + ["race"] = 77, + ["start"] = { + ["U"] = { 4784 }, + }, + }, + [1200] = { + ["end"] = { + ["U"] = { 4783 }, + }, + ["lvl"] = 27, + ["min"] = 18, + ["obj"] = { + ["I"] = { 5881 }, + }, + ["pre"] = { 1198 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 4787 }, + }, + }, + [1201] = { + ["end"] = { + ["U"] = { 4791 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["U"] = { 4834 }, + }, + ["start"] = { + ["U"] = { 4791 }, + }, + }, + [1202] = { + ["end"] = { + ["U"] = { 4791 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["I"] = { 5882 }, + }, + ["pre"] = { 1201 }, + ["start"] = { + ["U"] = { 4791 }, + }, + }, + [1203] = { + ["end"] = { + ["U"] = { 4792 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["I"] = { 3853 }, + }, + ["pre"] = { 1206 }, + ["start"] = { + ["U"] = { 4792 }, + }, + }, + [1204] = { + ["end"] = { + ["U"] = { 4794 }, + }, + ["lvl"] = 38, + ["min"] = 33, + ["obj"] = { + ["I"] = { 5883 }, + }, + ["pre"] = { 1260 }, + ["start"] = { + ["U"] = { 4794 }, + }, + }, + [1205] = { + ["end"] = { + ["U"] = { 3441 }, + }, + ["lvl"] = 45, + ["min"] = 35, + ["obj"] = { + ["I"] = { 5945 }, + }, + ["start"] = { + ["U"] = { 3441 }, + }, + }, + [1206] = { + ["end"] = { + ["U"] = { 4792 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["I"] = { 5884 }, + }, + ["pre"] = { 1218 }, + ["start"] = { + ["U"] = { 4792 }, + }, + }, + [1218] = { + ["end"] = { + ["U"] = { 4792 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["I"] = { 3713 }, + }, + ["start"] = { + ["U"] = { 4792 }, + }, + }, + [1219] = { + ["end"] = { + ["U"] = { 4947 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["race"] = 77, + ["start"] = { + ["O"] = { 20985 }, + }, + }, + [1220] = { + ["end"] = { + ["U"] = { 4944 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["pre"] = { 1219 }, + ["start"] = { + ["U"] = { 4947 }, + }, + }, + [1221] = { + ["end"] = { + ["U"] = { 3446 }, + }, + ["lvl"] = 26, + ["min"] = 20, + ["obj"] = { + ["I"] = { 5876, 5880, 5897, 6684 }, + ["IR"] = { 5880, 6684 }, + }, + ["start"] = { + ["U"] = { 3446 }, + }, + }, + [1222] = { + ["end"] = { + ["U"] = { 4794 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["race"] = 77, + ["start"] = { + ["U"] = { 4880 }, + }, + }, + [1238] = { + ["end"] = { + ["U"] = { 4791 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["race"] = 178, + ["start"] = { + ["O"] = { 20985 }, + }, + }, + [1239] = { + ["end"] = { + ["U"] = { 4791 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["pre"] = { 1238 }, + ["start"] = { + ["O"] = { 20985 }, + }, + }, + [1240] = { + ["end"] = { + ["U"] = { 2519 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["pre"] = { 1239 }, + ["start"] = { + ["U"] = { 4791 }, + }, + }, + [1241] = { + ["end"] = { + ["U"] = { 4959 }, + }, + ["lvl"] = 28, + ["min"] = 28, + ["pre"] = { 1274 }, + ["start"] = { + ["U"] = { 4960 }, + }, + }, + [1242] = { + ["end"] = { + ["U"] = { 482 }, + }, + ["lvl"] = 28, + ["min"] = 28, + ["pre"] = { 1241 }, + ["start"] = { + ["U"] = { 4959 }, + }, + }, + [1243] = { + ["end"] = { + ["U"] = { 840 }, + }, + ["lvl"] = 28, + ["min"] = 28, + ["pre"] = { 1242 }, + ["start"] = { + ["U"] = { 482 }, + }, + }, + [1244] = { + ["end"] = { + ["U"] = { 840 }, + }, + ["lvl"] = 30, + ["min"] = 28, + ["obj"] = { + ["I"] = { 5947 }, + }, + ["pre"] = { 1243 }, + ["start"] = { + ["U"] = { 840 }, + }, + }, + [1245] = { + ["end"] = { + ["U"] = { 482 }, + }, + ["lvl"] = 30, + ["min"] = 28, + ["pre"] = { 1244 }, + ["start"] = { + ["U"] = { 840 }, + }, + }, + [1246] = { + ["end"] = { + ["U"] = { 4961 }, + }, + ["lvl"] = 31, + ["min"] = 28, + ["pre"] = { 1245 }, + ["start"] = { + ["U"] = { 482 }, + }, + }, + [1247] = { + ["end"] = { + ["U"] = { 482 }, + }, + ["lvl"] = 31, + ["min"] = 28, + ["pre"] = { 1447 }, + ["start"] = { + ["U"] = { 4961 }, + }, + }, + [1248] = { + ["end"] = { + ["U"] = { 4963 }, + }, + ["lvl"] = 33, + ["min"] = 28, + ["pre"] = { 1247 }, + ["start"] = { + ["U"] = { 482 }, + }, + }, + [1249] = { + ["end"] = { + ["U"] = { 4963 }, + }, + ["lvl"] = 33, + ["min"] = 28, + ["pre"] = { 1248 }, + ["start"] = { + ["U"] = { 4963 }, + }, + }, + [1250] = { + ["end"] = { + ["U"] = { 4963 }, + }, + ["lvl"] = 33, + ["min"] = 28, + ["pre"] = { 1249 }, + ["start"] = { + ["U"] = { 4962 }, + }, + }, + [1251] = { + ["end"] = { + ["U"] = { 4926 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["race"] = 178, + ["start"] = { + ["O"] = { 20992 }, + }, + }, + [1252] = { + ["end"] = { + ["U"] = { 4944 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["race"] = 77, + ["start"] = { + ["O"] = { 21042 }, + }, + }, + [1253] = { + ["end"] = { + ["U"] = { 4944 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["race"] = 77, + ["start"] = { + ["O"] = { 20992 }, + }, + }, + [1258] = { + ["end"] = { + ["U"] = { 4794 }, + }, + ["lvl"] = 40, + ["min"] = 33, + ["obj"] = { + ["I"] = { 5938 }, + }, + ["pre"] = { 1204 }, + ["start"] = { + ["U"] = { 4794 }, + }, + }, + [1259] = { + ["end"] = { + ["U"] = { 4948 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["pre"] = { 1252 }, + ["start"] = { + ["U"] = { 4944 }, + }, + }, + [1260] = { + ["end"] = { + ["U"] = { 4794 }, + }, + ["lvl"] = 38, + ["min"] = 33, + ["start"] = { + ["U"] = { 1141 }, + }, + }, + [1261] = { + ["end"] = { + ["U"] = { 4791 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["obj"] = { + ["I"] = { 5942 }, + }, + ["pre"] = { 1240 }, + ["start"] = { + ["O"] = { 2076 }, + }, + }, + [1262] = { + ["end"] = { + ["U"] = { 4047 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["pre"] = { 1261 }, + ["start"] = { + ["U"] = { 4791 }, + }, + }, + [1263] = { + ["lvl"] = 35, + ["min"] = 30, + }, + [1264] = { + ["end"] = { + ["U"] = { 4964 }, + }, + ["lvl"] = 33, + ["min"] = 28, + ["pre"] = { 1250 }, + ["start"] = { + ["U"] = { 4963 }, + }, + }, + [1265] = { + ["end"] = { + ["U"] = { 4967 }, + }, + ["lvl"] = 35, + ["min"] = 28, + ["pre"] = { 1264 }, + ["start"] = { + ["U"] = { 4964 }, + }, + }, + [1266] = { + ["end"] = { + ["U"] = { 4966 }, + }, + ["lvl"] = 36, + ["min"] = 28, + ["pre"] = { 1265 }, + ["start"] = { + ["U"] = { 4967 }, + }, + }, + [1267] = { + ["end"] = { + ["U"] = { 4968 }, + }, + ["lvl"] = 38, + ["min"] = 28, + ["pre"] = { 1324 }, + ["start"] = { + ["U"] = { 4968 }, + }, + }, + [1268] = { + ["end"] = { + ["U"] = { 4926 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["race"] = 178, + ["start"] = { + ["O"] = { 21015, 21016 }, + }, + }, + [1269] = { + ["end"] = { + ["U"] = { 4926 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["race"] = 178, + ["start"] = { + ["O"] = { 21042 }, + }, + }, + [1270] = { + ["end"] = { + ["U"] = { 3446 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["race"] = 178, + ["start"] = { + ["U"] = { 4880 }, + }, + }, + [1271] = { + ["end"] = { + ["U"] = { 1141 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["pre"] = { 1222, 1258 }, + ["start"] = { + ["U"] = { 1141 }, + }, + }, + [1273] = { + ["end"] = { + ["U"] = { 4926 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["pre"] = { 1269 }, + ["start"] = { + ["U"] = { 4983 }, + }, + }, + [1274] = { + ["end"] = { + ["U"] = { 4960 }, + }, + ["lvl"] = 28, + ["min"] = 28, + ["start"] = { + ["U"] = { 4982 }, + }, + }, + [1275] = { + ["end"] = { + ["U"] = { 8997 }, + }, + ["lvl"] = 24, + ["min"] = 18, + ["obj"] = { + ["I"] = { 5952 }, + }, + ["pre"] = { 3765 }, + ["start"] = { + ["U"] = { 8997 }, + }, + }, + [1276] = { + ["end"] = { + ["U"] = { 4943 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["pre"] = { 1323 }, + ["start"] = { + ["U"] = { 4926 }, + }, + }, + [1277] = { + ["lvl"] = 40, + ["min"] = 30, + }, + [1278] = { + ["lvl"] = 45, + ["min"] = 30, + }, + [1279] = { + }, + [1280] = { + }, + [1281] = { + ["lvl"] = 35, + ["min"] = 30, + }, + [1282] = { + ["close"] = { 1282, 1302 }, + ["end"] = { + ["U"] = { 4944 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["start"] = { + ["U"] = { 4921 }, + }, + }, + [1283] = { + ["lvl"] = 35, + ["min"] = 30, + }, + [1284] = { + ["end"] = { + ["U"] = { 4944 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["race"] = 77, + ["start"] = { + ["O"] = { 21015, 21016 }, + }, + }, + [1285] = { + ["end"] = { + ["U"] = { 4944 }, + }, + ["lvl"] = 38, + ["min"] = 30, + ["pre"] = { 1259 }, + ["start"] = { + ["U"] = { 4948 }, + }, + }, + [1286] = { + ["end"] = { + ["U"] = { 5089 }, + }, + ["lvl"] = 38, + ["min"] = 30, + ["pre"] = { 1285 }, + ["start"] = { + ["U"] = { 4944 }, + }, + }, + [1287] = { + ["end"] = { + ["U"] = { 4944 }, + }, + ["lvl"] = 38, + ["min"] = 30, + ["pre"] = { 1286 }, + ["start"] = { + ["U"] = { 5089 }, + }, + }, + [1288] = { + ["end"] = { + ["U"] = { 4968 }, + }, + ["lvl"] = 38, + ["min"] = 30, + ["pre"] = { 1287 }, + ["start"] = { + ["I"] = { 6075 }, + ["U"] = { 4944 }, + }, + }, + [1289] = { + ["lvl"] = 38, + ["min"] = 30, + ["pre"] = { 1288 }, + ["race"] = 77, + }, + [1293] = { + }, + [1294] = { + }, + [1295] = { + }, + [1296] = { + }, + [1297] = { + }, + [1299] = { + }, + [1300] = { + }, + [1301] = { + ["end"] = { + ["U"] = { 5082 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["start"] = { + ["U"] = { 5081 }, + }, + }, + [1302] = { + ["close"] = { 1282, 1302 }, + ["end"] = { + ["U"] = { 5083 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["pre"] = { 1301 }, + ["start"] = { + ["U"] = { 5082 }, + }, + }, + [1318] = { + ["lvl"] = 60, + ["min"] = 56, + ["obj"] = { + ["I"] = { 18336 }, + }, + }, + [1319] = { + ["end"] = { + ["U"] = { 4941 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["pre"] = { 1253 }, + ["start"] = { + ["U"] = { 4944 }, + }, + }, + [1320] = { + ["end"] = { + ["U"] = { 4944 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["pre"] = { 1319 }, + ["start"] = { + ["U"] = { 4941 }, + }, + }, + [1321] = { + ["end"] = { + ["U"] = { 5087 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["pre"] = { 1251 }, + ["start"] = { + ["U"] = { 4926 }, + }, + }, + [1322] = { + ["end"] = { + ["U"] = { 5087 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["obj"] = { + ["I"] = { 5959 }, + }, + ["pre"] = { 1321 }, + ["start"] = { + ["U"] = { 5087 }, + }, + }, + [1323] = { + ["end"] = { + ["U"] = { 4926 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["pre"] = { 1322 }, + ["start"] = { + ["U"] = { 5087 }, + }, + }, + [1324] = { + ["end"] = { + ["U"] = { 4967 }, + }, + ["lvl"] = 38, + ["min"] = 28, + ["pre"] = { 1266 }, + ["start"] = { + ["U"] = { 4966 }, + }, + }, + [1338] = { + ["end"] = { + ["U"] = { 5413 }, + }, + ["lvl"] = 14, + ["min"] = 9, + ["pre"] = { 1339 }, + ["start"] = { + ["U"] = { 1343 }, + }, + }, + [1339] = { + ["end"] = { + ["U"] = { 1343 }, + }, + ["lvl"] = 15, + ["min"] = 9, + ["start"] = { + ["U"] = { 1340 }, + }, + }, + [1358] = { + ["end"] = { + ["U"] = { 3390 }, + }, + ["lvl"] = 15, + ["min"] = 10, + ["pre"] = { 1359 }, + ["start"] = { + ["U"] = { 5204 }, + }, + }, + [1359] = { + ["end"] = { + ["U"] = { 5204 }, + }, + ["lvl"] = 15, + ["min"] = 10, + ["pre"] = { 3221 }, + ["start"] = { + ["U"] = { 1937 }, + }, + }, + [1360] = { + ["end"] = { + ["U"] = { 6294 }, + }, + ["lvl"] = 43, + ["min"] = 33, + ["obj"] = { + ["I"] = { 8027 }, + }, + ["start"] = { + ["U"] = { 6294 }, + }, + }, + [1361] = { + ["end"] = { + ["U"] = { 3389 }, + }, + ["lvl"] = 32, + ["min"] = 30, + ["start"] = { + ["U"] = { 2229, 4485 }, + }, + }, + [1362] = { + ["end"] = { + ["U"] = { 5395 }, + }, + ["lvl"] = 32, + ["min"] = 30, + ["pre"] = { 1361 }, + ["start"] = { + ["U"] = { 3389 }, + }, + }, + [1363] = { + ["end"] = { + ["U"] = { 5386 }, + }, + ["lvl"] = 41, + ["min"] = 37, + ["start"] = { + ["U"] = { 338 }, + }, + }, + [1364] = { + ["end"] = { + ["U"] = { 5385 }, + }, + ["lvl"] = 41, + ["min"] = 37, + ["obj"] = { + ["I"] = { 6065 }, + }, + ["pre"] = { 1363 }, + ["start"] = { + ["U"] = { 5386 }, + }, + }, + [1365] = { + ["end"] = { + ["U"] = { 5395 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["I"] = { 6066 }, + }, + ["pre"] = { 1362 }, + ["start"] = { + ["U"] = { 5395 }, + }, + }, + [1366] = { + ["end"] = { + ["U"] = { 5395 }, + }, + ["lvl"] = 31, + ["min"] = 30, + ["obj"] = { + ["I"] = { 6067 }, + }, + ["pre"] = { 1365 }, + ["start"] = { + ["U"] = { 5395 }, + }, + }, + [1367] = { + ["end"] = { + ["U"] = { 5398 }, + }, + ["lvl"] = 33, + ["min"] = 30, + ["start"] = { + ["U"] = { 5412 }, + }, + }, + [1368] = { + ["end"] = { + ["U"] = { 5397 }, + }, + ["lvl"] = 33, + ["min"] = 30, + ["start"] = { + ["U"] = { 5412 }, + }, + }, + [1369] = { + ["end"] = { + ["U"] = { 5398 }, + }, + ["lvl"] = 33, + ["min"] = 30, + ["obj"] = { + ["I"] = { 6083 }, + }, + ["pre"] = { 1367, 1386 }, + ["start"] = { + ["U"] = { 5398 }, + }, + }, + [1370] = { + ["end"] = { + ["U"] = { 5397 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["I"] = { 6069 }, + }, + ["pre"] = { 1368, 1384 }, + ["start"] = { + ["U"] = { 5397 }, + }, + }, + [1371] = { + ["end"] = { + ["U"] = { 5398 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["I"] = { 4392 }, + }, + ["pre"] = { 1369 }, + ["start"] = { + ["U"] = { 5398 }, + }, + }, + [1372] = { + ["end"] = { + ["U"] = { 5414 }, + }, + ["lvl"] = 42, + ["min"] = 37, + ["start"] = { + ["U"] = { 5418 }, + }, + }, + [1373] = { + ["end"] = { + ["U"] = { 5397 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["obj"] = { + ["I"] = { 6190 }, + }, + ["pre"] = { 1370 }, + ["start"] = { + ["U"] = { 5397 }, + }, + }, + [1374] = { + ["end"] = { + ["U"] = { 5397 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["obj"] = { + ["I"] = { 6072 }, + }, + ["pre"] = { 1373 }, + ["start"] = { + ["U"] = { 5397 }, + }, + }, + [1375] = { + ["end"] = { + ["U"] = { 5398 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["obj"] = { + ["I"] = { 6073 }, + }, + ["pre"] = { 1371 }, + ["start"] = { + ["U"] = { 5398 }, + }, + }, + [1380] = { + ["end"] = { + ["U"] = { 5397 }, + }, + ["lvl"] = 42, + ["min"] = 30, + ["obj"] = { + ["I"] = { 6074, 6077 }, + ["IR"] = { 6074 }, + }, + ["pre"] = { 1374 }, + ["start"] = { + ["U"] = { 5397 }, + }, + }, + [1381] = { + ["end"] = { + ["U"] = { 5398 }, + }, + ["lvl"] = 42, + ["min"] = 30, + ["obj"] = { + ["I"] = { 6074, 6077 }, + ["IR"] = { 6074 }, + }, + ["pre"] = { 1375 }, + ["start"] = { + ["U"] = { 5398 }, + }, + }, + [1382] = { + ["end"] = { + ["U"] = { 5397 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["start"] = { + ["U"] = { 5396 }, + }, + }, + [1383] = { + ["end"] = { + ["U"] = { 5414 }, + }, + ["lvl"] = 42, + ["min"] = 37, + ["obj"] = { + ["I"] = { 6080, 6081, 6082 }, + }, + ["pre"] = { 1372 }, + ["start"] = { + ["U"] = { 5414 }, + }, + }, + [1384] = { + ["end"] = { + ["U"] = { 5397 }, + }, + ["lvl"] = 32, + ["min"] = 30, + ["obj"] = { + ["I"] = { 6079 }, + }, + ["pre"] = { 1382 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 5397 }, + }, + }, + [1385] = { + ["end"] = { + ["U"] = { 5398 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["start"] = { + ["U"] = { 5396 }, + }, + }, + [1386] = { + ["end"] = { + ["U"] = { 5398 }, + }, + ["lvl"] = 32, + ["min"] = 30, + ["obj"] = { + ["U"] = { 4632, 4633, 4634 }, + }, + ["pre"] = { 1385 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 5398 }, + }, + }, + [1387] = { + ["end"] = { + ["U"] = { 5752 }, + }, + ["lvl"] = 31, + ["min"] = 30, + ["obj"] = { + ["I"] = { 6067 }, + }, + ["start"] = { + ["U"] = { 5752 }, + }, + }, + [1388] = { + ["end"] = { + ["U"] = { 5418 }, + }, + ["lvl"] = 42, + ["min"] = 37, + ["pre"] = { 1383 }, + ["start"] = { + ["U"] = { 5414 }, + }, + }, + [1389] = { + ["end"] = { + ["U"] = { 1776 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["I"] = { 6071 }, + }, + ["start"] = { + ["U"] = { 1776 }, + }, + }, + [1390] = { + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 1289 }, + }, + [1391] = { + ["end"] = { + ["U"] = { 5416 }, + }, + ["lvl"] = 42, + ["min"] = 37, + ["pre"] = { 1388 }, + ["start"] = { + ["U"] = { 5418 }, + }, + }, + [1392] = { + ["end"] = { + ["U"] = { 1776 }, + }, + ["lvl"] = 39, + ["min"] = 29, + ["start"] = { + ["I"] = { 6196 }, + }, + }, + [1393] = { + ["end"] = { + ["O"] = { 32569 }, + }, + ["lvl"] = 38, + ["min"] = 30, + ["start"] = { + ["U"] = { 5391 }, + }, + }, + [1394] = { + ["end"] = { + ["U"] = { 2986 }, + }, + ["lvl"] = 36, + ["min"] = 25, + ["pre"] = { 6628 }, + ["start"] = { + ["U"] = { 4488 }, + }, + }, + [1395] = { + ["end"] = { + ["U"] = { 5393 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["pre"] = { 1477 }, + ["start"] = { + ["U"] = { 5464 }, + }, + }, + [1396] = { + ["end"] = { + ["U"] = { 5476 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["obj"] = { + ["U"] = { 767, 858, 1084 }, + }, + ["start"] = { + ["U"] = { 5476 }, + }, + }, + [1398] = { + ["end"] = { + ["U"] = { 5476 }, + }, + ["lvl"] = 42, + ["min"] = 30, + ["obj"] = { + ["I"] = { 6146 }, + }, + ["pre"] = { 1421 }, + ["start"] = { + ["U"] = { 5476 }, + }, + }, + [1418] = { + ["end"] = { + ["U"] = { 5394 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["start"] = { + ["U"] = { 1442 }, + }, + }, + [1419] = { + ["end"] = { + ["U"] = { 5394 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["obj"] = { + ["I"] = { 6166 }, + }, + ["start"] = { + ["U"] = { 5394 }, + }, + }, + [1420] = { + ["end"] = { + ["U"] = { 1442 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["pre"] = { 1418 }, + ["start"] = { + ["U"] = { 5394 }, + }, + }, + [1421] = { + ["end"] = { + ["U"] = { 5476 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["I"] = { 6170 }, + }, + ["pre"] = { 1396 }, + ["start"] = { + ["U"] = { 5476 }, + }, + }, + [1422] = { + ["end"] = { + ["U"] = { 5593 }, + }, + ["lvl"] = 45, + ["min"] = 35, + ["pre"] = { 699 }, + ["start"] = { + ["U"] = { 5592 }, + }, + }, + [1423] = { + ["end"] = { + ["U"] = { 5393 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["race"] = 77, + ["start"] = { + ["I"] = { 6172 }, + }, + }, + [1424] = { + ["end"] = { + ["U"] = { 1443 }, + }, + ["lvl"] = 43, + ["min"] = 38, + ["obj"] = { + ["I"] = { 6175 }, + }, + ["start"] = { + ["U"] = { 1443 }, + }, + }, + [1425] = { + ["end"] = { + ["U"] = { 5393 }, + }, + ["lvl"] = 42, + ["min"] = 30, + ["pre"] = { 1398 }, + ["start"] = { + ["U"] = { 5476 }, + }, + }, + [1426] = { + ["end"] = { + ["U"] = { 5593 }, + }, + ["lvl"] = 43, + ["min"] = 35, + ["obj"] = { + ["U"] = { 747, 750, 751 }, + }, + ["pre"] = { 1422 }, + ["start"] = { + ["U"] = { 5593 }, + }, + }, + [1427] = { + ["end"] = { + ["U"] = { 5592 }, + }, + ["lvl"] = 43, + ["min"] = 35, + ["pre"] = { 1426 }, + ["start"] = { + ["U"] = { 5593 }, + }, + }, + [1428] = { + ["end"] = { + ["U"] = { 5593 }, + }, + ["lvl"] = 45, + ["min"] = 35, + ["obj"] = { + ["U"] = { 750, 751, 752 }, + }, + ["pre"] = { 1427 }, + ["start"] = { + ["U"] = { 5593 }, + }, + }, + [1429] = { + ["end"] = { + ["U"] = { 5598 }, + }, + ["lvl"] = 44, + ["min"] = 38, + ["pre"] = { 1424 }, + ["start"] = { + ["U"] = { 1443 }, + }, + }, + [1430] = { + ["end"] = { + ["U"] = { 5591 }, + }, + ["lvl"] = 44, + ["min"] = 35, + ["obj"] = { + ["I"] = { 6184 }, + }, + ["start"] = { + ["U"] = { 5591 }, + }, + }, + [1431] = { + ["end"] = { + ["U"] = { 5640 }, + }, + ["lvl"] = 30, + ["min"] = 30, + ["start"] = { + ["U"] = { 5639 }, + }, + }, + [1432] = { + ["end"] = { + ["U"] = { 5641 }, + }, + ["lvl"] = 30, + ["min"] = 30, + ["pre"] = { 1431 }, + ["start"] = { + ["U"] = { 5640 }, + }, + }, + [1433] = { + ["end"] = { + ["U"] = { 4498 }, + }, + ["lvl"] = 33, + ["min"] = 30, + ["pre"] = { 1432 }, + ["start"] = { + ["U"] = { 5641 }, + }, + }, + [1434] = { + ["end"] = { + ["U"] = { 5641 }, + }, + ["lvl"] = 33, + ["min"] = 25, + ["obj"] = { + ["U"] = { 4670, 4672, 4673, 4675 }, + }, + ["pre"] = { 1432 }, + ["start"] = { + ["U"] = { 5641 }, + }, + }, + [1435] = { + ["end"] = { + ["U"] = { 4498 }, + }, + ["lvl"] = 33, + ["min"] = 25, + ["obj"] = { + ["I"] = { 6435, 6766 }, + ["IR"] = { 6436 }, + }, + ["pre"] = { 1433 }, + ["start"] = { + ["U"] = { 4498 }, + }, + }, + [1436] = { + ["end"] = { + ["U"] = { 5640 }, + }, + ["lvl"] = 33, + ["min"] = 30, + ["pre"] = { 1434, 1435 }, + ["start"] = { + ["U"] = { 5641 }, + }, + }, + [1437] = { + ["end"] = { + ["O"] = { 50961 }, + }, + ["lvl"] = 33, + ["min"] = 30, + ["start"] = { + ["U"] = { 5642 }, + }, + }, + [1438] = { + ["end"] = { + ["U"] = { 5644 }, + }, + ["lvl"] = 33, + ["min"] = 30, + ["pre"] = { 1465 }, + ["start"] = { + ["U"] = { 5642 }, + }, + }, + [1439] = { + ["end"] = { + ["U"] = { 5644 }, + }, + ["lvl"] = 33, + ["min"] = 30, + ["obj"] = { + ["I"] = { 6767 }, + }, + ["pre"] = { 1438 }, + ["start"] = { + ["U"] = { 5644 }, + }, + }, + [1440] = { + ["end"] = { + ["U"] = { 5642 }, + }, + ["lvl"] = 33, + ["min"] = 30, + ["pre"] = { 1439 }, + ["start"] = { + ["U"] = { 5644 }, + }, + }, + [1441] = { + ["lvl"] = 33, + ["min"] = 30, + }, + [1442] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 3649 }, + }, + ["lvl"] = 22, + ["min"] = 20, + ["obj"] = { + ["I"] = { 6995 }, + }, + ["pre"] = { 1654 }, + ["start"] = { + ["U"] = { 3649 }, + }, + }, + [1444] = { + ["end"] = { + ["U"] = { 1443 }, + }, + ["lvl"] = 44, + ["min"] = 38, + ["pre"] = { 1429 }, + ["start"] = { + ["U"] = { 5598 }, + }, + }, + [1445] = { + ["end"] = { + ["U"] = { 1443 }, + }, + ["lvl"] = 50, + ["min"] = 38, + ["obj"] = { + ["I"] = { 6181 }, + }, + ["pre"] = { 1444 }, + ["start"] = { + ["U"] = { 1443 }, + }, + }, + [1446] = { + ["end"] = { + ["U"] = { 5598 }, + }, + ["lvl"] = 53, + ["min"] = 38, + ["obj"] = { + ["I"] = { 6212 }, + }, + ["start"] = { + ["U"] = { 5598 }, + }, + }, + [1447] = { + ["end"] = { + ["U"] = { 4961 }, + }, + ["lvl"] = 31, + ["min"] = 28, + ["pre"] = { 1246 }, + ["start"] = { + ["U"] = { 4961 }, + }, + }, + [1448] = { + ["end"] = { + ["U"] = { 5384 }, + }, + ["lvl"] = 43, + ["min"] = 38, + ["obj"] = { + ["A"] = { 362 }, + }, + ["start"] = { + ["U"] = { 5384 }, + }, + }, + [1449] = { + ["end"] = { + ["U"] = { 5635 }, + }, + ["lvl"] = 43, + ["min"] = 38, + ["pre"] = { 1448 }, + ["start"] = { + ["U"] = { 5384 }, + }, + }, + [1450] = { + ["end"] = { + ["U"] = { 5636 }, + }, + ["lvl"] = 43, + ["min"] = 38, + ["pre"] = { 1449 }, + ["start"] = { + ["U"] = { 5635 }, + }, + }, + [1451] = { + ["end"] = { + ["U"] = { 5634 }, + }, + ["lvl"] = 43, + ["min"] = 38, + ["pre"] = { 1450 }, + ["start"] = { + ["U"] = { 5636 }, + }, + }, + [1452] = { + ["end"] = { + ["U"] = { 5634 }, + }, + ["lvl"] = 43, + ["min"] = 38, + ["obj"] = { + ["I"] = { 6257, 6258, 6259 }, + }, + ["pre"] = { 1451 }, + ["start"] = { + ["U"] = { 5634 }, + }, + }, + [1453] = { + ["end"] = { + ["U"] = { 5638 }, + }, + ["lvl"] = 33, + ["min"] = 30, + ["start"] = { + ["U"] = { 5637 }, + }, + }, + [1454] = { + ["end"] = { + ["O"] = { 35251 }, + }, + ["lvl"] = 39, + ["min"] = 30, + ["pre"] = { 1453 }, + ["start"] = { + ["U"] = { 5638 }, + }, + }, + [1455] = { + ["end"] = { + ["U"] = { 5638 }, + }, + ["lvl"] = 39, + ["min"] = 30, + ["pre"] = { 1454 }, + ["start"] = { + ["O"] = { 35251 }, + }, + }, + [1456] = { + ["end"] = { + ["U"] = { 5638 }, + }, + ["lvl"] = 39, + ["min"] = 30, + ["obj"] = { + ["I"] = { 6245 }, + }, + ["pre"] = { 1455 }, + ["start"] = { + ["U"] = { 5638 }, + }, + }, + [1457] = { + ["end"] = { + ["U"] = { 5637 }, + }, + ["lvl"] = 39, + ["min"] = 30, + ["pre"] = { 1456 }, + ["start"] = { + ["U"] = { 5638 }, + }, + }, + [1458] = { + ["end"] = { + ["U"] = { 5638 }, + }, + ["lvl"] = 33, + ["min"] = 30, + ["obj"] = { + ["I"] = { 6246, 6247 }, + }, + ["pre"] = { 1453 }, + ["start"] = { + ["U"] = { 5638 }, + }, + }, + [1459] = { + ["end"] = { + ["U"] = { 5638 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["I"] = { 6248, 6249 }, + }, + ["pre"] = { 1458 }, + ["start"] = { + ["U"] = { 5638 }, + }, + }, + [1460] = { + ["lvl"] = 37, + ["min"] = 30, + }, + [1461] = { + ["lvl"] = 37, + ["min"] = 30, + }, + [1462] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 5888 }, + }, + ["lvl"] = 4, + ["min"] = 4, + ["pre"] = { 1520 }, + ["start"] = { + ["U"] = { 5888 }, + }, + }, + [1463] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 5887 }, + }, + ["lvl"] = 4, + ["min"] = 4, + ["pre"] = { 1517 }, + ["start"] = { + ["U"] = { 5887 }, + }, + }, + [1464] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 5900 }, + }, + ["lvl"] = 13, + ["min"] = 10, + ["pre"] = { 1526 }, + ["start"] = { + ["U"] = { 5900 }, + }, + }, + [1465] = { + ["end"] = { + ["U"] = { 5642 }, + }, + ["lvl"] = 33, + ["min"] = 30, + ["pre"] = { 1437 }, + ["start"] = { + ["O"] = { 50961 }, + }, + }, + [1466] = { + ["end"] = { + ["U"] = { 5638 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["obj"] = { + ["I"] = { 6250, 6251, 6252 }, + }, + ["pre"] = { 1459 }, + ["start"] = { + ["U"] = { 5638 }, + }, + }, + [1467] = { + ["end"] = { + ["U"] = { 5637 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["pre"] = { 1466 }, + ["start"] = { + ["U"] = { 5638 }, + }, + }, + [1468] = { + ["end"] = { + ["U"] = { 14305 }, + }, + ["event"] = 10, + ["lvl"] = 60, + ["min"] = 10, + ["race"] = 77, + ["start"] = { + ["U"] = { 14450 }, + }, + }, + [1469] = { + ["end"] = { + ["U"] = { 5384 }, + }, + ["lvl"] = 43, + ["min"] = 38, + ["pre"] = { 1452 }, + ["start"] = { + ["U"] = { 5634 }, + }, + }, + [1470] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 5667 }, + }, + ["lvl"] = 3, + ["min"] = 1, + ["obj"] = { + ["I"] = { 6281 }, + }, + ["race"] = 18, + ["start"] = { + ["U"] = { 5667 }, + }, + }, + [1471] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 5675 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["IR"] = { 6284 }, + ["U"] = { 5676 }, + }, + ["pre"] = { 1473 }, + ["start"] = { + ["U"] = { 5675 }, + }, + }, + [1472] = { + ["class"] = 256, + ["close"] = { 1472, 1507 }, + ["end"] = { + ["U"] = { 5693 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["start"] = { + ["U"] = { 5675 }, + }, + }, + [1473] = { + ["class"] = 256, + ["close"] = { 1473, 1501 }, + ["end"] = { + ["U"] = { 5675 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["I"] = { 6285 }, + }, + ["start"] = { + ["U"] = { 5675 }, + }, + }, + [1474] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 5675 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["obj"] = { + ["IR"] = { 6286 }, + ["U"] = { 5677 }, + }, + ["pre"] = { 1476 }, + ["start"] = { + ["U"] = { 5675 }, + }, + }, + [1475] = { + ["end"] = { + ["U"] = { 5384 }, + }, + ["lvl"] = 50, + ["min"] = 38, + ["obj"] = { + ["I"] = { 6288 }, + }, + ["pre"] = { 1469 }, + ["start"] = { + ["U"] = { 5384 }, + }, + }, + [1476] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 5675 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["obj"] = { + ["I"] = { 6312, 6313 }, + }, + ["pre"] = { 1472 }, + ["start"] = { + ["U"] = { 5693 }, + }, + }, + [1477] = { + ["end"] = { + ["U"] = { 5464 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["start"] = { + ["U"] = { 5694 }, + }, + }, + [1478] = { + ["class"] = 256, + ["close"] = { 1478, 1506 }, + ["end"] = { + ["U"] = { 5675 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["start"] = { + ["U"] = { 5724 }, + }, + }, + [1479] = { + ["end"] = { + ["U"] = { 14305 }, + }, + ["lvl"] = 60, + ["min"] = 10, + ["pre"] = { 1468 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 14305 }, + }, + }, + [1480] = { + ["end"] = { + ["U"] = { 4498 }, + }, + ["lvl"] = 33, + ["min"] = 25, + ["race"] = 178, + ["start"] = { + ["I"] = { 6766, 6766, 20310 }, + }, + }, + [1481] = { + ["end"] = { + ["U"] = { 4498 }, + }, + ["lvl"] = 33, + ["min"] = 25, + ["obj"] = { + ["I"] = { 6441 }, + }, + ["pre"] = { 1480 }, + ["start"] = { + ["U"] = { 4498 }, + }, + }, + [1482] = { + ["end"] = { + ["U"] = { 4498 }, + }, + ["lvl"] = 35, + ["min"] = 25, + ["obj"] = { + ["I"] = { 6442 }, + }, + ["pre"] = { 1481, 8458 }, + ["start"] = { + ["U"] = { 4498 }, + }, + }, + [1483] = { + ["end"] = { + ["U"] = { 4201 }, + }, + ["lvl"] = 21, + ["min"] = 16, + ["start"] = { + ["U"] = { 3442 }, + }, + }, + [1484] = { + ["end"] = { + ["U"] = { 5641 }, + }, + ["lvl"] = 33, + ["min"] = 25, + ["pre"] = { 1482 }, + ["start"] = { + ["U"] = { 4498 }, + }, + }, + [1485] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 5765 }, + }, + ["lvl"] = 4, + ["min"] = 1, + ["obj"] = { + ["I"] = { 6487 }, + }, + ["race"] = 18, + ["start"] = { + ["U"] = { 5765 }, + }, + }, + [1486] = { + ["end"] = { + ["U"] = { 5767 }, + }, + ["lvl"] = 17, + ["min"] = 13, + ["obj"] = { + ["I"] = { 6443 }, + }, + ["start"] = { + ["U"] = { 5767 }, + }, + }, + [1487] = { + ["end"] = { + ["U"] = { 5768 }, + }, + ["lvl"] = 21, + ["min"] = 15, + ["obj"] = { + ["U"] = { 3636, 5056, 5755, 5761 }, + }, + ["start"] = { + ["U"] = { 5768 }, + }, + }, + [1488] = { + ["end"] = { + ["U"] = { 5641 }, + }, + ["lvl"] = 40, + ["min"] = 25, + ["obj"] = { + ["U"] = { 5760, 5771 }, + }, + ["pre"] = { 1484 }, + ["start"] = { + ["U"] = { 5641 }, + }, + }, + [1489] = { + ["end"] = { + ["U"] = { 5769 }, + }, + ["lvl"] = 16, + ["min"] = 10, + ["pre"] = { 880 }, + ["start"] = { + ["U"] = { 3448 }, + }, + }, + [1490] = { + ["end"] = { + ["U"] = { 5770 }, + }, + ["lvl"] = 16, + ["min"] = 10, + ["pre"] = { 1489 }, + ["start"] = { + ["U"] = { 5769 }, + }, + }, + [1491] = { + ["end"] = { + ["U"] = { 3446 }, + }, + ["lvl"] = 18, + ["min"] = 13, + ["obj"] = { + ["I"] = { 6464 }, + }, + ["pre"] = { 865 }, + ["start"] = { + ["U"] = { 3446 }, + }, + }, + [1492] = { + ["end"] = { + ["U"] = { 3453 }, + }, + ["lvl"] = 11, + ["min"] = 9, + ["start"] = { + ["U"] = { 3390 }, + }, + }, + [1498] = { + ["class"] = 1, + ["close"] = { 1498, 1819 }, + ["end"] = { + ["U"] = { 5810 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["I"] = { 6486 }, + }, + ["start"] = { + ["U"] = { 5810 }, + }, + }, + [1499] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 3145 }, + }, + ["lvl"] = 4, + ["min"] = 1, + ["pre"] = { 1485 }, + ["race"] = 18, + ["start"] = { + ["U"] = { 5765 }, + }, + }, + [1500] = { + ["lvl"] = 25, + ["min"] = 10, + }, + [1501] = { + ["class"] = 256, + ["close"] = { 1473, 1501 }, + ["end"] = { + ["U"] = { 5875 }, + }, + ["lvl"] = 11, + ["min"] = 10, + ["obj"] = { + ["I"] = { 6535 }, + }, + ["start"] = { + ["U"] = { 5875 }, + }, + }, + [1502] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 5878 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 1498 }, + ["start"] = { + ["U"] = { 5810 }, + }, + }, + [1503] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 5878 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["I"] = { 6534 }, + }, + ["pre"] = { 1502 }, + ["start"] = { + ["U"] = { 5878 }, + }, + }, + [1504] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 5875 }, + }, + ["lvl"] = 11, + ["min"] = 10, + ["obj"] = { + ["IR"] = { 7464 }, + ["U"] = { 5676 }, + }, + ["pre"] = { 1501 }, + ["start"] = { + ["U"] = { 5875 }, + }, + }, + [1505] = { + ["class"] = 1, + ["close"] = { 1505, 1818 }, + ["end"] = { + ["U"] = { 5810 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["start"] = { + ["U"] = { 3063, 3169, 3354 }, + }, + }, + [1506] = { + ["class"] = 256, + ["close"] = { 1478, 1506 }, + ["end"] = { + ["U"] = { 5875 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["start"] = { + ["U"] = { 3294 }, + }, + }, + [1507] = { + ["class"] = 256, + ["close"] = { 1472, 1507 }, + ["end"] = { + ["U"] = { 5909 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["start"] = { + ["U"] = { 5875 }, + }, + }, + [1508] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 5910 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["pre"] = { 1507 }, + ["start"] = { + ["U"] = { 5909 }, + }, + }, + [1509] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 3464 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["pre"] = { 1508 }, + ["start"] = { + ["U"] = { 5910 }, + }, + }, + [1510] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 4197 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["pre"] = { 1509 }, + ["start"] = { + ["U"] = { 3464 }, + }, + }, + [1511] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 5911 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["pre"] = { 1510 }, + ["start"] = { + ["U"] = { 4197 }, + }, + }, + [1512] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 5875 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["pre"] = { 1515 }, + ["start"] = { + ["U"] = { 5908 }, + }, + }, + [1513] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 5875 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["obj"] = { + ["IR"] = { 6626 }, + ["U"] = { 5677 }, + }, + ["pre"] = { 1512 }, + ["start"] = { + ["U"] = { 5875 }, + }, + }, + [1514] = { + ["end"] = { + ["O"] = { 173327 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11516 }, + }, + ["start"] = { + ["O"] = { 173327 }, + }, + }, + [1515] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 5908 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["pre"] = { 1511 }, + ["start"] = { + ["U"] = { 5911 }, + }, + }, + [1516] = { + ["class"] = 64, + ["close"] = { 1516, 1519 }, + ["end"] = { + ["U"] = { 5887 }, + }, + ["lvl"] = 4, + ["min"] = 4, + ["obj"] = { + ["I"] = { 6640 }, + }, + ["start"] = { + ["U"] = { 5887 }, + }, + }, + [1517] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 5891 }, + }, + ["lvl"] = 4, + ["min"] = 4, + ["obj"] = { + ["IR"] = { 6635 }, + }, + ["pre"] = { 1516 }, + ["start"] = { + ["U"] = { 5887 }, + }, + }, + [1518] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 5887 }, + }, + ["lvl"] = 4, + ["min"] = 4, + ["pre"] = { 1517 }, + ["start"] = { + ["U"] = { 5891 }, + }, + }, + [1519] = { + ["class"] = 64, + ["close"] = { 1516, 1519 }, + ["end"] = { + ["U"] = { 5888 }, + }, + ["lvl"] = 4, + ["min"] = 4, + ["obj"] = { + ["I"] = { 6634 }, + }, + ["start"] = { + ["U"] = { 5888 }, + }, + }, + [1520] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 5891 }, + }, + ["lvl"] = 4, + ["min"] = 4, + ["obj"] = { + ["IR"] = { 6635 }, + }, + ["pre"] = { 1519 }, + ["start"] = { + ["U"] = { 5888 }, + }, + }, + [1521] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 5888 }, + }, + ["lvl"] = 4, + ["min"] = 4, + ["pre"] = { 1520 }, + ["start"] = { + ["U"] = { 5891 }, + }, + }, + [1522] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 5907 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["start"] = { + ["U"] = { 5892 }, + }, + }, + [1523] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 5907 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["start"] = { + ["U"] = { 5906 }, + }, + }, + [1524] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 5900 }, + }, + ["lvl"] = 11, + ["min"] = 10, + ["pre"] = { 1522, 1523, 2983, 2984 }, + ["start"] = { + ["U"] = { 5907 }, + }, + }, + [1525] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 5900 }, + }, + ["lvl"] = 12, + ["min"] = 10, + ["obj"] = { + ["I"] = { 5026, 6652 }, + }, + ["pre"] = { 1524 }, + ["start"] = { + ["U"] = { 5900 }, + }, + }, + [1526] = { + ["class"] = 64, + ["end"] = { + ["O"] = { 61934 }, + }, + ["lvl"] = 13, + ["min"] = 10, + ["obj"] = { + ["I"] = { 6655 }, + }, + ["pre"] = { 1525 }, + ["start"] = { + ["U"] = { 5900 }, + }, + }, + [1527] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 5907 }, + }, + ["lvl"] = 13, + ["min"] = 10, + ["pre"] = { 1526 }, + ["start"] = { + ["O"] = { 61934 }, + }, + }, + [1528] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 5901 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["start"] = { + ["U"] = { 5892 }, + }, + }, + [1529] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 5901 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["start"] = { + ["U"] = { 5906 }, + }, + }, + [1530] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 5899 }, + }, + ["lvl"] = 22, + ["min"] = 20, + ["pre"] = { 1528, 1529, 2985, 2986 }, + ["start"] = { + ["U"] = { 5901 }, + }, + }, + [1531] = { + ["class"] = 64, + ["close"] = { 1531, 1532 }, + ["end"] = { + ["U"] = { 5905 }, + }, + ["lvl"] = 30, + ["min"] = 30, + ["start"] = { + ["U"] = { 5892 }, + }, + }, + [1532] = { + ["class"] = 64, + ["close"] = { 1531, 1532 }, + ["end"] = { + ["U"] = { 5905 }, + }, + ["lvl"] = 30, + ["min"] = 30, + ["start"] = { + ["U"] = { 5906 }, + }, + }, + [1534] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 5899 }, + }, + ["lvl"] = 23, + ["min"] = 20, + ["obj"] = { + ["I"] = { 7770 }, + ["IR"] = { 7767 }, + }, + ["pre"] = { 1536 }, + ["start"] = { + ["U"] = { 5899 }, + }, + }, + [1535] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 5899 }, + }, + ["lvl"] = 22, + ["min"] = 20, + ["obj"] = { + ["I"] = { 7769 }, + ["IR"] = { 7766 }, + }, + ["pre"] = { 1530 }, + ["start"] = { + ["U"] = { 5899 }, + }, + }, + [1536] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 5899 }, + }, + ["lvl"] = 22, + ["min"] = 20, + ["obj"] = { + ["I"] = { 7771 }, + ["IR"] = { 7768 }, + }, + ["pre"] = { 1535 }, + ["start"] = { + ["U"] = { 5899 }, + }, + }, + [1558] = { + ["end"] = { + ["U"] = { 14305 }, + }, + ["lvl"] = 60, + ["min"] = 10, + ["pre"] = { 1468 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 14305 }, + }, + }, + [1559] = { + ["end"] = { + ["U"] = { 2817 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["pre"] = { 705 }, + ["skill"] = 202, + ["start"] = { + ["U"] = { 2817 }, + }, + }, + [1560] = { + ["end"] = { + ["U"] = { 6015 }, + }, + ["lvl"] = 50, + ["min"] = 40, + ["start"] = { + ["U"] = { 5955 }, + }, + }, + [1578] = { + ["end"] = { + ["U"] = { 6030 }, + }, + ["lvl"] = 12, + ["min"] = 1, + ["obj"] = { + ["I"] = { 2845, 2851 }, + }, + ["skill"] = 164, + ["start"] = { + ["U"] = { 6031 }, + }, + }, + [1579] = { + ["end"] = { + ["U"] = { 3666 }, + }, + ["lvl"] = 12, + ["min"] = 10, + ["obj"] = { + ["I"] = { 6717 }, + }, + ["skill"] = 356, + ["start"] = { + ["U"] = { 3666 }, + }, + }, + [1580] = { + ["end"] = { + ["U"] = { 3666 }, + }, + ["lvl"] = 12, + ["min"] = 10, + ["obj"] = { + ["I"] = { 6718 }, + }, + ["pre"] = { 1579 }, + ["skill"] = 356, + ["start"] = { + ["U"] = { 3666 }, + }, + }, + [1581] = { + ["end"] = { + ["U"] = { 2083 }, + }, + ["lvl"] = 8, + ["min"] = 4, + ["obj"] = { + ["I"] = { 2454, 5997 }, + }, + ["skill"] = 171, + ["start"] = { + ["U"] = { 2083 }, + }, + }, + [1582] = { + ["end"] = { + ["U"] = { 6034 }, + }, + ["lvl"] = 18, + ["min"] = 8, + ["obj"] = { + ["I"] = { 2309, 2310, 4239 }, + }, + ["skill"] = 165, + ["start"] = { + ["U"] = { 6034 }, + }, + }, + [1598] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 459 }, + }, + ["lvl"] = 4, + ["min"] = 1, + ["obj"] = { + ["I"] = { 6785 }, + }, + ["race"] = 77, + ["start"] = { + ["U"] = { 459 }, + }, + }, + [1599] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 460 }, + }, + ["lvl"] = 4, + ["min"] = 1, + ["obj"] = { + ["I"] = { 6753 }, + }, + ["race"] = 77, + ["start"] = { + ["U"] = { 460 }, + }, + }, + [1618] = { + ["end"] = { + ["U"] = { 415 }, + }, + ["lvl"] = 16, + ["min"] = 1, + ["obj"] = { + ["I"] = { 2857, 6214 }, + }, + ["skill"] = 164, + ["start"] = { + ["U"] = { 6031 }, + }, + }, + [1638] = { + ["class"] = 1, + ["close"] = { 1638, 1679, 1684 }, + ["end"] = { + ["U"] = { 6089 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["start"] = { + ["U"] = { 913, 5480 }, + }, + }, + [1639] = { + ["class"] = 1, + ["close"] = { 1639, 1678, 1683 }, + ["end"] = { + ["U"] = { 6090 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["start"] = { + ["U"] = { 6089 }, + }, + }, + [1640] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6090 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 1639 }, + ["start"] = { + ["U"] = { 6090 }, + }, + }, + [1641] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6171 }, + }, + ["lvl"] = 12, + ["min"] = 12, + ["race"] = 1, + ["start"] = { + ["U"] = { 6171 }, + }, + }, + [1642] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6171 }, + }, + ["lvl"] = 12, + ["min"] = 12, + ["race"] = 1, + ["start"] = { + ["I"] = { 6775 }, + }, + }, + [1643] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6174 }, + }, + ["lvl"] = 12, + ["min"] = 12, + ["pre"] = { 1642 }, + ["race"] = 1, + ["start"] = { + ["U"] = { 6171 }, + }, + }, + [1644] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6174 }, + }, + ["lvl"] = 13, + ["min"] = 12, + ["obj"] = { + ["I"] = { 2589 }, + }, + ["pre"] = { 1643 }, + ["race"] = 1, + ["start"] = { + ["U"] = { 6174 }, + }, + }, + [1645] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6179 }, + }, + ["lvl"] = 12, + ["min"] = 12, + ["race"] = 4, + ["start"] = { + ["U"] = { 6179 }, + }, + }, + [1646] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6179 }, + }, + ["lvl"] = 12, + ["min"] = 12, + ["race"] = 4, + ["start"] = { + ["I"] = { 6916 }, + }, + }, + [1647] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6175 }, + }, + ["lvl"] = 12, + ["min"] = 12, + ["pre"] = { 1646 }, + ["race"] = 4, + ["start"] = { + ["U"] = { 6179 }, + }, + }, + [1648] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6175 }, + }, + ["lvl"] = 13, + ["min"] = 12, + ["obj"] = { + ["I"] = { 2589 }, + }, + ["pre"] = { 1647 }, + ["race"] = 4, + ["start"] = { + ["U"] = { 6175 }, + }, + }, + [1649] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6171 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["start"] = { + ["I"] = { 6776 }, + }, + }, + [1650] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6182 }, + }, + ["lvl"] = 23, + ["min"] = 20, + ["pre"] = { 1649 }, + ["start"] = { + ["U"] = { 6171 }, + }, + }, + [1651] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6182 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["pre"] = { 1650 }, + ["start"] = { + ["U"] = { 6182 }, + }, + }, + [1652] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6171 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["pre"] = { 1651 }, + ["start"] = { + ["U"] = { 6182 }, + }, + }, + [1653] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6181 }, + }, + ["lvl"] = 21, + ["min"] = 20, + ["pre"] = { 1652 }, + ["start"] = { + ["U"] = { 6171 }, + }, + }, + [1654] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6181 }, + }, + ["lvl"] = 22, + ["min"] = 20, + ["obj"] = { + ["I"] = { 6895, 6993, 6994, 7083 }, + }, + ["pre"] = { 1653 }, + ["start"] = { + ["U"] = { 6181 }, + }, + }, + [1655] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6241 }, + }, + ["lvl"] = 22, + ["min"] = 20, + ["obj"] = { + ["I"] = { 6992 }, + }, + ["pre"] = { 1654 }, + ["start"] = { + ["U"] = { 6241 }, + }, + }, + [1656] = { + ["end"] = { + ["U"] = { 6747 }, + }, + ["lvl"] = 5, + ["min"] = 1, + ["start"] = { + ["U"] = { 6775 }, + }, + }, + [1657] = { + ["end"] = { + ["U"] = { 15197 }, + }, + ["event"] = 12, + ["lvl"] = 60, + ["min"] = 25, + ["obj"] = { + ["IR"] = { 20387 }, + ["U"] = { 15415 }, + }, + ["start"] = { + ["U"] = { 15197 }, + }, + }, + [1658] = { + ["end"] = { + ["U"] = { 15199 }, + }, + ["event"] = 12, + ["lvl"] = 60, + ["min"] = 25, + ["obj"] = { + ["A"] = { 3991 }, + }, + ["start"] = { + ["U"] = { 15199 }, + }, + }, + [1659] = { + ["lvl"] = 30, + ["min"] = 30, + }, + [1660] = { + ["lvl"] = 30, + ["min"] = 30, + }, + [1661] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6171 }, + }, + ["lvl"] = 40, + ["min"] = 40, + ["start"] = { + ["U"] = { 6171 }, + }, + }, + [1665] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6089 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 1640 }, + ["start"] = { + ["U"] = { 6090 }, + }, + }, + [1666] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 294 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 1665 }, + ["start"] = { + ["U"] = { 6089 }, + }, + }, + [1667] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 294 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["I"] = { 6782, 6783 }, + }, + ["pre"] = { 1666 }, + ["start"] = { + ["U"] = { 294 }, + }, + }, + [1678] = { + ["class"] = 1, + ["close"] = { 1639, 1678, 1683 }, + ["end"] = { + ["U"] = { 6114 }, + }, + ["lvl"] = 11, + ["min"] = 10, + ["obj"] = { + ["I"] = { 6799 }, + }, + ["start"] = { + ["U"] = { 6114 }, + }, + }, + [1679] = { + ["class"] = 1, + ["close"] = { 1638, 1679, 1684 }, + ["end"] = { + ["U"] = { 6114 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["start"] = { + ["U"] = { 1229 }, + }, + }, + [1680] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6031 }, + }, + ["lvl"] = 11, + ["min"] = 10, + ["pre"] = { 1678 }, + ["start"] = { + ["U"] = { 6114 }, + }, + }, + [1681] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6031 }, + }, + ["lvl"] = 11, + ["min"] = 10, + ["obj"] = { + ["I"] = { 6800 }, + }, + ["pre"] = { 1680 }, + ["start"] = { + ["U"] = { 6031 }, + }, + }, + [1682] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6031 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 1681 }, + ["start"] = { + ["U"] = { 6031 }, + }, + }, + [1683] = { + ["class"] = 1, + ["close"] = { 1639, 1678, 1683 }, + ["end"] = { + ["U"] = { 4088 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["I"] = { 6805 }, + }, + ["start"] = { + ["U"] = { 4088 }, + }, + }, + [1684] = { + ["class"] = 1, + ["close"] = { 1638, 1679, 1684 }, + ["end"] = { + ["U"] = { 4088 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["start"] = { + ["U"] = { 3598, 2151, 3657 }, + }, + }, + [1685] = { + ["class"] = 256, + ["close"] = { 1685, 1715 }, + ["end"] = { + ["U"] = { 6122 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["start"] = { + ["U"] = { 6121 }, + }, + }, + [1686] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 4088 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["I"] = { 6808, 6809 }, + }, + ["pre"] = { 1683 }, + ["start"] = { + ["U"] = { 4088 }, + }, + }, + [1687] = { + ["end"] = { + ["U"] = { 14305 }, + }, + ["lvl"] = 60, + ["min"] = 10, + ["pre"] = { 1468 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 14305 }, + }, + }, + [1688] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 6122 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["I"] = { 6810 }, + }, + ["pre"] = { 1685, 1715 }, + ["start"] = { + ["U"] = { 6122 }, + }, + }, + [1689] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 6122 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["IR"] = { 6928 }, + ["U"] = { 5676 }, + }, + ["pre"] = { 1688 }, + ["start"] = { + ["U"] = { 6122 }, + }, + }, + [1690] = { + ["end"] = { + ["U"] = { 7407 }, + }, + ["lvl"] = 43, + ["min"] = 40, + ["obj"] = { + ["U"] = { 5616, 5618 }, + }, + ["start"] = { + ["U"] = { 7407 }, + }, + }, + [1691] = { + ["end"] = { + ["U"] = { 7407 }, + }, + ["lvl"] = 44, + ["min"] = 40, + ["obj"] = { + ["U"] = { 5615, 5617, 5623 }, + }, + ["pre"] = { 1690 }, + ["start"] = { + ["U"] = { 7407 }, + }, + }, + [1692] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6142 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 1686 }, + ["start"] = { + ["U"] = { 4088 }, + }, + }, + [1693] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6142 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 1692 }, + ["start"] = { + ["U"] = { 6142 }, + }, + }, + [1698] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6166 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["start"] = { + ["U"] = { 7315, 5479 }, + }, + }, + [1699] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6166 }, + }, + ["lvl"] = 22, + ["min"] = 20, + ["obj"] = { + ["A"] = { 482 }, + }, + ["pre"] = { 1698 }, + ["start"] = { + ["U"] = { 6166 }, + }, + }, + [1700] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 1416 }, + }, + ["lvl"] = 28, + ["min"] = 20, + ["pre"] = { 1701 }, + ["race"] = 1, + ["start"] = { + ["U"] = { 5413 }, + }, + }, + [1701] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 5413 }, + }, + ["lvl"] = 28, + ["min"] = 20, + ["obj"] = { + ["I"] = { 6838, 6839, 6840, 6841 }, + }, + ["pre"] = { 1702 }, + ["start"] = { + ["U"] = { 5413 }, + }, + }, + [1702] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 5413 }, + }, + ["lvl"] = 22, + ["min"] = 20, + ["pre"] = { 1699 }, + ["start"] = { + ["U"] = { 6166 }, + }, + }, + [1703] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6142 }, + }, + ["lvl"] = 28, + ["min"] = 20, + ["pre"] = { 1701 }, + ["race"] = 8, + ["start"] = { + ["U"] = { 5413 }, + }, + }, + [1704] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6169 }, + }, + ["lvl"] = 28, + ["min"] = 20, + ["pre"] = { 1701 }, + ["race"] = 68, + ["start"] = { + ["U"] = { 5413 }, + }, + }, + [1705] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 1416 }, + }, + ["lvl"] = 28, + ["min"] = 20, + ["obj"] = { + ["I"] = { 6844, 6845 }, + }, + ["pre"] = { 1700 }, + ["start"] = { + ["U"] = { 1416 }, + }, + }, + [1706] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 1416 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["pre"] = { 1705 }, + ["start"] = { + ["U"] = { 1416 }, + }, + }, + [1707] = { + ["end"] = { + ["U"] = { 7408 }, + }, + ["lvl"] = 44, + ["min"] = 40, + ["obj"] = { + ["I"] = { 8483 }, + }, + ["start"] = { + ["U"] = { 7408 }, + }, + }, + [1708] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6169 }, + }, + ["lvl"] = 29, + ["min"] = 20, + ["obj"] = { + ["I"] = { 6848 }, + }, + ["pre"] = { 1704 }, + ["start"] = { + ["U"] = { 6169 }, + }, + }, + [1709] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6169 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["pre"] = { 1708 }, + ["start"] = { + ["U"] = { 6169 }, + }, + }, + [1710] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6142 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["obj"] = { + ["I"] = { 6849 }, + }, + ["pre"] = { 1703 }, + ["start"] = { + ["U"] = { 6142 }, + }, + }, + [1711] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6142 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["pre"] = { 1710 }, + ["start"] = { + ["U"] = { 6142 }, + }, + }, + [1712] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6176 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["obj"] = { + ["I"] = { 3357, 3901, 6851 }, + }, + ["pre"] = { 1791 }, + ["start"] = { + ["U"] = { 6176 }, + }, + }, + [1713] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6176 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["obj"] = { + ["I"] = { 6894 }, + }, + ["pre"] = { 1712 }, + ["start"] = { + ["U"] = { 6176 }, + }, + }, + [1714] = { + ["class"] = 1, + ["end"] = { + ["O"] = { 89931 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["obj"] = { + ["I"] = { 4479, 4480, 4481 }, + ["IR"] = { 4479, 4480, 4481 }, + }, + ["pre"] = { 1712 }, + ["start"] = { + ["O"] = { 89931 }, + }, + }, + [1715] = { + ["class"] = 256, + ["close"] = { 1685, 1715 }, + ["end"] = { + ["U"] = { 6122 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["start"] = { + ["U"] = { 6120 }, + }, + }, + [1716] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 6244 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["pre"] = { 1717 }, + ["start"] = { + ["U"] = { 6122 }, + }, + }, + [1717] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 6122 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["start"] = { + ["U"] = { 6120 }, + }, + }, + [1718] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6236 }, + }, + ["lvl"] = 30, + ["min"] = 30, + ["start"] = { + ["U"] = { 3041, 3354, 4595, 5113, 5479 }, + }, + }, + [1719] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6236 }, + }, + ["lvl"] = 30, + ["min"] = 30, + ["obj"] = { + ["A"] = { 522 }, + ["U"] = { 6238 }, + }, + ["pre"] = { 1718 }, + ["start"] = { + ["U"] = { 6236 }, + }, + }, + [1738] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 6122 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["obj"] = { + ["I"] = { 6912 }, + }, + ["pre"] = { 1716 }, + ["start"] = { + ["U"] = { 6244 }, + }, + }, + [1739] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 6122 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["obj"] = { + ["IR"] = { 6913 }, + ["U"] = { 5677 }, + }, + ["pre"] = { 1738 }, + ["start"] = { + ["U"] = { 6122 }, + }, + }, + [1740] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 6247 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["obj"] = { + ["I"] = { 6914, 6915 }, + }, + ["start"] = { + ["U"] = { 6247 }, + }, + }, + [1758] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 6294 }, + }, + ["lvl"] = 30, + ["min"] = 30, + ["pre"] = { 1798 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 6251 }, + }, + }, + [1778] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6179 }, + }, + ["lvl"] = 13, + ["min"] = 12, + ["pre"] = { 1648 }, + ["race"] = 4, + ["start"] = { + ["U"] = { 6175 }, + }, + }, + [1779] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6178 }, + }, + ["lvl"] = 13, + ["min"] = 12, + ["obj"] = { + ["IR"] = { 6866 }, + }, + ["pre"] = { 1778 }, + ["race"] = 4, + ["start"] = { + ["U"] = { 6179 }, + }, + }, + [1780] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6171 }, + }, + ["lvl"] = 13, + ["min"] = 12, + ["pre"] = { 1644 }, + ["race"] = 1, + ["start"] = { + ["U"] = { 6174 }, + }, + }, + [1781] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6173 }, + }, + ["lvl"] = 13, + ["min"] = 12, + ["obj"] = { + ["IR"] = { 6866 }, + }, + ["pre"] = { 1780 }, + ["race"] = 1, + ["start"] = { + ["U"] = { 6171 }, + }, + }, + [1782] = { + ["end"] = { + ["U"] = { 5413 }, + }, + ["lvl"] = 28, + ["min"] = 20, + ["pre"] = { 1701 }, + ["start"] = { + ["U"] = { 5413 }, + }, + }, + [1783] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6177 }, + }, + ["lvl"] = 13, + ["min"] = 12, + ["pre"] = { 1779 }, + ["race"] = 4, + ["start"] = { + ["U"] = { 6178 }, + }, + }, + [1784] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6178 }, + }, + ["lvl"] = 13, + ["min"] = 12, + ["obj"] = { + ["I"] = { 6847 }, + }, + ["pre"] = { 1783 }, + ["race"] = 4, + ["start"] = { + ["U"] = { 6177 }, + }, + }, + [1785] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6179 }, + }, + ["lvl"] = 13, + ["min"] = 12, + ["pre"] = { 1784 }, + ["race"] = 4, + ["start"] = { + ["U"] = { 6178 }, + }, + }, + [1786] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6172 }, + }, + ["lvl"] = 13, + ["min"] = 12, + ["pre"] = { 1781 }, + ["race"] = 1, + ["start"] = { + ["U"] = { 6173 }, + }, + }, + [1787] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6173 }, + }, + ["lvl"] = 13, + ["min"] = 12, + ["obj"] = { + ["I"] = { 6846 }, + }, + ["pre"] = { 1786 }, + ["race"] = 1, + ["start"] = { + ["U"] = { 6172 }, + }, + }, + [1788] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6171 }, + }, + ["lvl"] = 13, + ["min"] = 12, + ["pre"] = { 1787 }, + ["race"] = 1, + ["start"] = { + ["U"] = { 6173 }, + }, + }, + [1789] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6179 }, + }, + ["lvl"] = 12, + ["min"] = 12, + ["pre"] = { 1783 }, + ["race"] = 4, + ["start"] = { + ["U"] = { 6179 }, + }, + }, + [1790] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6171 }, + }, + ["lvl"] = 12, + ["min"] = 12, + ["pre"] = { 1786 }, + ["race"] = 1, + ["start"] = { + ["U"] = { 6171 }, + }, + }, + [1791] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6176 }, + }, + ["lvl"] = 30, + ["min"] = 30, + ["pre"] = { 1719 }, + ["start"] = { + ["U"] = { 6236 }, + }, + }, + [1792] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6176 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["pre"] = { 1713 }, + ["start"] = { + ["U"] = { 6176 }, + }, + }, + [1793] = { + ["class"] = 2, + ["close"] = { 1793, 1794 }, + ["end"] = { + ["U"] = { 6171 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["start"] = { + ["U"] = { 6171 }, + }, + }, + [1794] = { + ["class"] = 2, + ["close"] = { 1793, 1794 }, + ["end"] = { + ["U"] = { 6179 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["start"] = { + ["U"] = { 6179 }, + }, + }, + [1795] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 6251 }, + }, + ["lvl"] = 30, + ["min"] = 30, + ["obj"] = { + ["IR"] = { 6999 }, + ["U"] = { 6268 }, + }, + ["pre"] = { 1804, 1805 }, + ["start"] = { + ["U"] = { 6251 }, + }, + }, + [1796] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 6266 }, + }, + ["lvl"] = 31, + ["min"] = 31, + ["obj"] = { + ["I"] = { 5770 }, + }, + ["pre"] = { 4736, 4737, 4738, 4739 }, + ["start"] = { + ["U"] = { 6266 }, + }, + }, + [1798] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 6251 }, + }, + ["lvl"] = 30, + ["min"] = 30, + ["start"] = { + ["U"] = { 6122 }, + }, + }, + [1799] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 6546 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["obj"] = { + ["I"] = { 7291 }, + }, + ["pre"] = { 4965, 4967, 4968, 4969 }, + ["start"] = { + ["U"] = { 6266 }, + }, + }, + [1800] = { + ["end"] = { + ["U"] = { 14444 }, + }, + ["lvl"] = 60, + ["min"] = 10, + ["pre"] = { 172 }, + ["start"] = { + ["U"] = { 14444 }, + }, + }, + [1801] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 6293 }, + }, + ["lvl"] = 30, + ["min"] = 30, + ["pre"] = { 2996, 3001 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 6251 }, + }, + }, + [1802] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 6294 }, + }, + ["lvl"] = 30, + ["min"] = 30, + ["obj"] = { + ["I"] = { 6931, 6997 }, + ["IR"] = { 6931, 6997 }, + }, + ["pre"] = { 1758 }, + ["start"] = { + ["U"] = { 6294 }, + }, + }, + [1803] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 6293 }, + }, + ["lvl"] = 30, + ["min"] = 30, + ["obj"] = { + ["I"] = { 6931, 6997 }, + ["IR"] = { 6931, 6997 }, + }, + ["pre"] = { 1801 }, + ["start"] = { + ["U"] = { 6293 }, + }, + }, + [1804] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 6251 }, + }, + ["lvl"] = 30, + ["min"] = 30, + ["obj"] = { + ["I"] = { 6930 }, + }, + ["pre"] = { 1802 }, + ["start"] = { + ["U"] = { 6294 }, + }, + }, + [1805] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 6251 }, + }, + ["lvl"] = 30, + ["min"] = 30, + ["obj"] = { + ["I"] = { 6930 }, + }, + ["pre"] = { 1803 }, + ["start"] = { + ["U"] = { 6293 }, + }, + }, + [1806] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6181 }, + }, + ["lvl"] = 22, + ["min"] = 20, + ["pre"] = { 1654 }, + ["start"] = { + ["U"] = { 6181 }, + }, + }, + [1818] = { + ["class"] = 1, + ["close"] = { 1505, 1818 }, + ["end"] = { + ["U"] = { 1496 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["start"] = { + ["U"] = { 2131 }, + }, + }, + [1819] = { + ["class"] = 1, + ["close"] = { 1498, 1819 }, + ["end"] = { + ["U"] = { 1496 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["U"] = { 6390 }, + }, + ["start"] = { + ["U"] = { 1496 }, + }, + }, + [1820] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 1500 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 1819 }, + ["start"] = { + ["U"] = { 1496 }, + }, + }, + [1821] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 1500 }, + }, + ["lvl"] = 11, + ["min"] = 10, + ["obj"] = { + ["I"] = { 7566, 7567, 7568, 7569 }, + }, + ["pre"] = { 1820 }, + ["start"] = { + ["U"] = { 1500 }, + }, + }, + [1822] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 1500 }, + }, + ["lvl"] = 11, + ["min"] = 10, + ["pre"] = { 1821 }, + ["start"] = { + ["U"] = { 1500 }, + }, + }, + [1823] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6394 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["start"] = { + ["U"] = { 3354, 3041, 4595 }, + }, + }, + [1824] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6394 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["obj"] = { + ["I"] = { 7119 }, + }, + ["pre"] = { 1823 }, + ["start"] = { + ["U"] = { 6394 }, + }, + }, + [1825] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 5878 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["pre"] = { 1824 }, + ["start"] = { + ["U"] = { 6394 }, + }, + }, + [1838] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 5878 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["obj"] = { + ["I"] = { 3575, 6841, 7126, 7127 }, + }, + ["pre"] = { 1825 }, + ["start"] = { + ["U"] = { 5878 }, + }, + }, + [1839] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6408 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["pre"] = { 1838 }, + ["start"] = { + ["U"] = { 5878 }, + }, + }, + [1840] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6410 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["pre"] = { 1838 }, + ["start"] = { + ["U"] = { 5878 }, + }, + }, + [1841] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6411 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["pre"] = { 1838 }, + ["start"] = { + ["U"] = { 5878 }, + }, + }, + [1842] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6408 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["obj"] = { + ["I"] = { 7128 }, + }, + ["pre"] = { 1839 }, + ["start"] = { + ["U"] = { 6408 }, + }, + }, + [1843] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6408 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["pre"] = { 1842 }, + ["start"] = { + ["U"] = { 6408 }, + }, + }, + [1844] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6410 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["obj"] = { + ["I"] = { 6840 }, + }, + ["pre"] = { 1840 }, + ["start"] = { + ["U"] = { 6410 }, + }, + }, + [1845] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6410 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["pre"] = { 1844 }, + ["start"] = { + ["U"] = { 6410 }, + }, + }, + [1846] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6411 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["obj"] = { + ["I"] = { 7131, 7134 }, + }, + ["pre"] = { 1841 }, + ["start"] = { + ["U"] = { 6411 }, + }, + }, + [1847] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6411 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["pre"] = { 1846 }, + ["start"] = { + ["U"] = { 6411 }, + }, + }, + [1848] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 5878 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["pre"] = { 1838 }, + ["start"] = { + ["U"] = { 5878 }, + }, + }, + [1858] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 6446 }, + }, + ["lvl"] = 13, + ["min"] = 10, + ["obj"] = { + ["I"] = { 7208, 7295 }, + }, + ["pre"] = { 1963 }, + ["race"] = 130, + ["start"] = { + ["U"] = { 6446 }, + }, + }, + [1859] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 6446 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 130, + ["start"] = { + ["U"] = { 3170 }, + }, + }, + [1860] = { + ["class"] = 128, + ["close"] = { 1860, 1879 }, + ["end"] = { + ["U"] = { 5497 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["start"] = { + ["U"] = { 328 }, + }, + }, + [1861] = { + ["class"] = 128, + ["close"] = { 1861, 1880 }, + ["end"] = { + ["U"] = { 5497 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["I"] = { 7206 }, + ["IR"] = { 7207 }, + }, + ["start"] = { + ["U"] = { 5497 }, + }, + }, + [1878] = { + ["end"] = { + ["U"] = { 7408 }, + }, + ["lvl"] = 44, + ["min"] = 40, + ["obj"] = { + ["I"] = { 8483 }, + }, + ["pre"] = { 1707 }, + ["start"] = { + ["U"] = { 7408 }, + }, + }, + [1879] = { + ["class"] = 128, + ["close"] = { 1860, 1879 }, + ["end"] = { + ["U"] = { 5144 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["start"] = { + ["U"] = { 1228 }, + }, + }, + [1880] = { + ["class"] = 128, + ["close"] = { 1861, 1880 }, + ["end"] = { + ["U"] = { 5144 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["I"] = { 7226 }, + }, + ["start"] = { + ["U"] = { 5144 }, + }, + }, + [1881] = { + ["class"] = 128, + ["close"] = { 1881, 1883 }, + ["end"] = { + ["U"] = { 4568 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["start"] = { + ["U"] = { 2128 }, + }, + }, + [1882] = { + ["class"] = 128, + ["close"] = { 1882, 1884 }, + ["end"] = { + ["U"] = { 4568 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["I"] = { 7227 }, + }, + ["start"] = { + ["U"] = { 4568 }, + }, + }, + [1883] = { + ["class"] = 128, + ["close"] = { 1881, 1883 }, + ["end"] = { + ["U"] = { 5880 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["start"] = { + ["U"] = { 3049, 7311 }, + }, + }, + [1884] = { + ["class"] = 128, + ["close"] = { 1882, 1884 }, + ["end"] = { + ["U"] = { 5880 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["O"] = { 102986 }, + }, + ["start"] = { + ["U"] = { 5880 }, + }, + }, + [1885] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 6467 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 16, + ["start"] = { + ["U"] = { 2130 }, + }, + }, + [1886] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 6467 }, + }, + ["lvl"] = 13, + ["min"] = 10, + ["obj"] = { + ["I"] = { 7231 }, + }, + ["race"] = 16, + ["start"] = { + ["U"] = { 6467 }, + }, + }, + [1898] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 6522 }, + }, + ["lvl"] = 13, + ["min"] = 10, + ["pre"] = { 1886 }, + ["race"] = 16, + ["start"] = { + ["U"] = { 6467 }, + }, + }, + [1899] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 6467 }, + }, + ["lvl"] = 13, + ["min"] = 10, + ["obj"] = { + ["I"] = { 7294 }, + }, + ["pre"] = { 1898 }, + ["race"] = 16, + ["start"] = { + ["U"] = { 6522 }, + }, + }, + [1918] = { + ["end"] = { + ["U"] = { 12737 }, + }, + ["lvl"] = 27, + ["min"] = 23, + ["start"] = { + ["I"] = { 16408, 16408 }, + }, + }, + [1919] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 5497 }, + }, + ["lvl"] = 15, + ["min"] = 15, + ["start"] = { + ["U"] = { 7312, 1228, 328 }, + }, + }, + [1920] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 5497 }, + }, + ["lvl"] = 16, + ["min"] = 15, + ["obj"] = { + ["I"] = { 7247, 7292, 7308 }, + ["IR"] = { 7247, 7308 }, + }, + ["pre"] = { 1919 }, + ["start"] = { + ["U"] = { 5497 }, + }, + }, + [1921] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 1309 }, + }, + ["lvl"] = 15, + ["min"] = 15, + ["obj"] = { + ["I"] = { 2589, 7249 }, + }, + ["pre"] = { 1920 }, + ["start"] = { + ["U"] = { 5497 }, + }, + }, + [1938] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 5694 }, + }, + ["lvl"] = 28, + ["min"] = 26, + ["obj"] = { + ["I"] = { 7266 }, + }, + ["pre"] = { 1939 }, + ["start"] = { + ["U"] = { 5694 }, + }, + }, + [1939] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 5694 }, + }, + ["lvl"] = 26, + ["min"] = 26, + ["start"] = { + ["U"] = { 5144, 5497 }, + }, + }, + [1940] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 1309 }, + }, + ["lvl"] = 26, + ["min"] = 26, + ["obj"] = { + ["I"] = { 7267 }, + }, + ["pre"] = { 1938 }, + ["start"] = { + ["U"] = { 5694 }, + }, + }, + [1941] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 1309 }, + }, + ["lvl"] = 15, + ["min"] = 15, + ["pre"] = { 1921 }, + ["start"] = { + ["U"] = { 1309 }, + }, + }, + [1942] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 1309 }, + }, + ["lvl"] = 26, + ["min"] = 26, + ["pre"] = { 1940 }, + ["start"] = { + ["U"] = { 1309 }, + }, + }, + [1943] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 5885 }, + }, + ["lvl"] = 26, + ["min"] = 26, + ["start"] = { + ["U"] = { 4568 }, + }, + }, + [1944] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 5885 }, + }, + ["lvl"] = 26, + ["min"] = 26, + ["obj"] = { + ["I"] = { 7268 }, + ["IR"] = { 7269 }, + }, + ["pre"] = { 1943 }, + ["start"] = { + ["U"] = { 5885 }, + }, + }, + [1945] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 3484 }, + }, + ["lvl"] = 26, + ["min"] = 26, + ["obj"] = { + ["I"] = { 7270 }, + }, + ["pre"] = { 1944 }, + ["start"] = { + ["U"] = { 5885 }, + }, + }, + [1946] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 3484 }, + }, + ["lvl"] = 26, + ["min"] = 26, + ["pre"] = { 1945 }, + ["start"] = { + ["U"] = { 3484 }, + }, + }, + [1947] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 6546 }, + }, + ["lvl"] = 38, + ["min"] = 30, + ["start"] = { + ["U"] = { 3048, 5144, 4568, 5497, 5885 }, + }, + }, + [1948] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 6546 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["obj"] = { + ["I"] = { 1529, 7272, 7273 }, + ["IR"] = { 7273 }, + }, + ["pre"] = { 1947 }, + ["start"] = { + ["U"] = { 6546 }, + }, + }, + [1949] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 6548 }, + }, + ["lvl"] = 38, + ["min"] = 30, + ["pre"] = { 1947 }, + ["start"] = { + ["U"] = { 6546 }, + }, + }, + [1950] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 6548 }, + }, + ["lvl"] = 30, + ["min"] = 30, + ["pre"] = { 1949 }, + ["start"] = { + ["U"] = { 6548 }, + }, + }, + [1951] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 6546 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["obj"] = { + ["I"] = { 7274 }, + }, + ["pre"] = { 1950 }, + ["start"] = { + ["U"] = { 6548 }, + }, + }, + [1952] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 6546 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["pre"] = { 1948, 1951 }, + ["start"] = { + ["U"] = { 6546 }, + }, + }, + [1953] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 6546 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["start"] = { + ["U"] = { 5885, 4568, 5144, 5497, 3048 }, + }, + }, + [1954] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 6546 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["obj"] = { + ["I"] = { 7291 }, + }, + ["pre"] = { 1953 }, + ["start"] = { + ["U"] = { 6546 }, + }, + }, + [1955] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 6546 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["obj"] = { + ["U"] = { 6549 }, + }, + ["pre"] = { 1954 }, + ["start"] = { + ["U"] = { 6546 }, + }, + }, + [1956] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 6546 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["obj"] = { + ["I"] = { 8053 }, + }, + ["pre"] = { 1955 }, + ["start"] = { + ["U"] = { 6546 }, + }, + }, + [1957] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 6546 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["obj"] = { + ["U"] = { 6550 }, + }, + ["pre"] = { 1956 }, + ["start"] = { + ["U"] = { 6546 }, + }, + }, + [1958] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 6546 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["pre"] = { 1957 }, + ["start"] = { + ["U"] = { 6546 }, + }, + }, + [1959] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 4568 }, + }, + ["lvl"] = 15, + ["min"] = 15, + ["start"] = { + ["U"] = { 3049, 7311 }, + }, + }, + [1960] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 4568 }, + }, + ["lvl"] = 16, + ["min"] = 15, + ["obj"] = { + ["I"] = { 7247, 7292, 7308 }, + ["IR"] = { 7247, 7308 }, + }, + ["pre"] = { 1959 }, + ["start"] = { + ["U"] = { 4568 }, + }, + }, + [1961] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 4576 }, + }, + ["lvl"] = 15, + ["min"] = 15, + ["obj"] = { + ["I"] = { 2589, 7293 }, + }, + ["pre"] = { 1960 }, + ["start"] = { + ["U"] = { 4568 }, + }, + }, + [1962] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 4576 }, + }, + ["lvl"] = 15, + ["min"] = 15, + ["pre"] = { 1961 }, + ["start"] = { + ["U"] = { 4576 }, + }, + }, + [1963] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 6446 }, + }, + ["lvl"] = 13, + ["min"] = 10, + ["obj"] = { + ["I"] = { 7209 }, + }, + ["race"] = 130, + ["start"] = { + ["U"] = { 6446 }, + }, + }, + [1978] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 2425 }, + }, + ["lvl"] = 13, + ["min"] = 10, + ["pre"] = { 1899 }, + ["race"] = 16, + ["start"] = { + ["U"] = { 6467 }, + }, + }, + [1998] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 6467 }, + }, + ["lvl"] = 16, + ["min"] = 16, + ["obj"] = { + ["I"] = { 7306 }, + }, + ["race"] = 16, + ["start"] = { + ["U"] = { 6467 }, + }, + }, + [1999] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 6467 }, + }, + ["lvl"] = 20, + ["min"] = 16, + ["obj"] = { + ["I"] = { 7309 }, + }, + ["pre"] = { 1998 }, + ["race"] = 16, + ["start"] = { + ["U"] = { 6467 }, + }, + }, + [2038] = { + ["end"] = { + ["U"] = { 6577 }, + }, + ["lvl"] = 15, + ["min"] = 12, + ["obj"] = { + ["I"] = { 7343, 7345, 7346, 7376 }, + }, + ["pre"] = { 2039 }, + ["start"] = { + ["U"] = { 6577 }, + }, + }, + [2039] = { + ["end"] = { + ["U"] = { 6577 }, + }, + ["lvl"] = 15, + ["min"] = 12, + ["start"] = { + ["U"] = { 6569 }, + }, + }, + [2040] = { + ["end"] = { + ["U"] = { 6579 }, + }, + ["lvl"] = 20, + ["min"] = 15, + ["obj"] = { + ["I"] = { 7365 }, + }, + ["pre"] = { 2041 }, + ["start"] = { + ["U"] = { 6579 }, + }, + }, + [2041] = { + ["end"] = { + ["U"] = { 6579 }, + }, + ["lvl"] = 15, + ["min"] = 15, + ["start"] = { + ["U"] = { 6569 }, + }, + }, + [2078] = { + ["end"] = { + ["U"] = { 6667 }, + }, + ["lvl"] = 20, + ["min"] = 14, + ["obj"] = { + ["U"] = { 6669 }, + }, + ["pre"] = { 2098 }, + ["start"] = { + ["U"] = { 6667 }, + }, + }, + [2098] = { + ["end"] = { + ["U"] = { 6667 }, + }, + ["lvl"] = 20, + ["min"] = 14, + ["obj"] = { + ["I"] = { 7498, 7499, 7500 }, + }, + ["start"] = { + ["U"] = { 6667 }, + }, + }, + [2118] = { + ["end"] = { + ["U"] = { 3701 }, + }, + ["lvl"] = 14, + ["min"] = 10, + ["obj"] = { + ["U"] = { 11836 }, + }, + ["start"] = { + ["U"] = { 3701 }, + }, + }, + [2138] = { + ["end"] = { + ["U"] = { 3701 }, + }, + ["lvl"] = 16, + ["min"] = 10, + ["obj"] = { + ["U"] = { 2164 }, + }, + ["pre"] = { 2118 }, + ["start"] = { + ["U"] = { 3701 }, + }, + }, + [2139] = { + ["end"] = { + ["U"] = { 3701 }, + }, + ["lvl"] = 18, + ["min"] = 10, + ["obj"] = { + ["U"] = { 6788 }, + }, + ["pre"] = { 2138 }, + ["start"] = { + ["U"] = { 3701 }, + }, + }, + [2158] = { + ["end"] = { + ["U"] = { 295 }, + }, + ["lvl"] = 5, + ["min"] = 1, + ["start"] = { + ["U"] = { 6774 }, + }, + }, + [2159] = { + ["end"] = { + ["U"] = { 6736 }, + }, + ["lvl"] = 5, + ["min"] = 1, + ["start"] = { + ["U"] = { 6780 }, + }, + }, + [2160] = { + ["end"] = { + ["U"] = { 6806 }, + }, + ["lvl"] = 5, + ["min"] = 1, + ["start"] = { + ["U"] = { 6782 }, + }, + }, + [2161] = { + ["end"] = { + ["U"] = { 6928 }, + }, + ["lvl"] = 5, + ["min"] = 1, + ["start"] = { + ["U"] = { 6786 }, + }, + }, + [2178] = { + ["end"] = { + ["U"] = { 3702 }, + }, + ["lvl"] = 12, + ["min"] = 9, + ["obj"] = { + ["I"] = { 5469 }, + }, + ["skill"] = 185, + ["start"] = { + ["U"] = { 3702 }, + }, + }, + [2198] = { + ["end"] = { + ["U"] = { 6826 }, + }, + ["lvl"] = 41, + ["min"] = 37, + ["race"] = 77, + ["start"] = { + ["I"] = { 7666, 7666 }, + }, + }, + [2199] = { + ["end"] = { + ["U"] = { 6826 }, + }, + ["lvl"] = 41, + ["min"] = 37, + ["obj"] = { + ["I"] = { 2842 }, + }, + ["pre"] = { 2198 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 6826 }, + }, + }, + [2200] = { + ["end"] = { + ["U"] = { 6912 }, + }, + ["lvl"] = 42, + ["min"] = 37, + ["pre"] = { 2199 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 6826 }, + }, + }, + [2201] = { + ["end"] = { + ["O"] = { 112877 }, + ["U"] = { 6826 }, + }, + ["lvl"] = 43, + ["min"] = 37, + ["obj"] = { + ["I"] = { 7669, 7670, 7671 }, + }, + ["pre"] = { 2200 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 6912 }, + }, + }, + [2202] = { + ["end"] = { + ["U"] = { 6868 }, + }, + ["lvl"] = 42, + ["min"] = 36, + ["obj"] = { + ["I"] = { 8047 }, + }, + ["pre"] = { 2258 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 6868 }, + }, + }, + [2203] = { + ["end"] = { + ["U"] = { 6868 }, + }, + ["lvl"] = 44, + ["min"] = 40, + ["obj"] = { + ["I"] = { 7867 }, + }, + ["pre"] = { 2202 }, + ["race"] = 178, + ["skill"] = 171, + ["start"] = { + ["U"] = { 6868 }, + }, + }, + [2204] = { + ["end"] = { + ["U"] = { 6826 }, + }, + ["lvl"] = 44, + ["min"] = 37, + ["obj"] = { + ["I"] = { 7672 }, + }, + ["pre"] = { 2201 }, + ["race"] = 77, + ["start"] = { + ["O"] = { 112877 }, + ["U"] = { 6826 }, + }, + }, + [2205] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 332 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 77, + ["start"] = { + ["U"] = { 917 }, + }, + }, + [2206] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 332 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["I"] = { 7675 }, + }, + ["race"] = 77, + ["start"] = { + ["U"] = { 332 }, + }, + }, + [2218] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 5165 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 77, + ["start"] = { + ["U"] = { 1234 }, + }, + }, + [2238] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 6886 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["start"] = { + ["U"] = { 5165 }, + }, + }, + [2239] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 5165 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 2238 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 6886 }, + }, + }, + [2240] = { + ["end"] = { + ["U"] = { 1356 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["obj"] = { + ["A"] = { 822 }, + }, + ["pre"] = { 2398 }, + ["start"] = { + ["U"] = { 6906 }, + }, + }, + [2241] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 4163 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 77, + ["start"] = { + ["U"] = { 3599 }, + }, + }, + [2242] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 4163 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["I"] = { 7737 }, + }, + ["race"] = 77, + ["start"] = { + ["U"] = { 4163 }, + }, + }, + [2258] = { + ["end"] = { + ["U"] = { 6868 }, + }, + ["lvl"] = 39, + ["min"] = 36, + ["obj"] = { + ["I"] = { 7846, 7847, 7848 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 6868 }, + }, + }, + [2259] = { + ["class"] = 8, + ["close"] = { 2259, 2299 }, + ["end"] = { + ["U"] = { 4214 }, + }, + ["lvl"] = 16, + ["min"] = 16, + ["start"] = { + ["U"] = { 3599 }, + }, + }, + [2260] = { + ["class"] = 8, + ["close"] = { 2260, 2298, 2300 }, + ["end"] = { + ["U"] = { 6946 }, + }, + ["lvl"] = 16, + ["min"] = 16, + ["pre"] = { 2259 }, + ["start"] = { + ["U"] = { 4214 }, + }, + }, + [2278] = { + ["end"] = { + ["O"] = { 131474 }, + }, + ["lvl"] = 47, + ["min"] = 40, + ["start"] = { + ["O"] = { 131474 }, + }, + }, + [2279] = { + ["end"] = { + ["U"] = { 5387 }, + }, + ["lvl"] = 47, + ["min"] = 40, + ["pre"] = { 2278 }, + ["race"] = 77, + ["start"] = { + ["O"] = { 131474 }, + }, + }, + [2280] = { + ["end"] = { + ["U"] = { 3978 }, + }, + ["lvl"] = 47, + ["min"] = 40, + ["pre"] = { 2278 }, + ["race"] = 178, + ["start"] = { + ["O"] = { 131474 }, + }, + }, + [2281] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 6966 }, + }, + ["lvl"] = 16, + ["min"] = 16, + ["pre"] = { 2260, 2298, 2300 }, + ["start"] = { + ["U"] = { 6946 }, + }, + }, + [2282] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 6966 }, + }, + ["lvl"] = 20, + ["min"] = 16, + ["obj"] = { + ["I"] = { 7871 }, + }, + ["pre"] = { 2281 }, + ["start"] = { + ["U"] = { 6966 }, + }, + }, + [2283] = { + ["end"] = { + ["U"] = { 6986 }, + }, + ["lvl"] = 41, + ["min"] = 37, + ["obj"] = { + ["I"] = { 7666 }, + }, + ["start"] = { + ["U"] = { 6986 }, + }, + }, + [2284] = { + ["end"] = { + ["U"] = { 6912 }, + }, + ["lvl"] = 41, + ["min"] = 37, + ["pre"] = { 2283 }, + ["start"] = { + ["U"] = { 6986 }, + }, + }, + [2298] = { + ["class"] = 8, + ["close"] = { 2260, 2298, 2300 }, + ["end"] = { + ["U"] = { 6946 }, + }, + ["lvl"] = 16, + ["min"] = 16, + ["pre"] = { 2299 }, + ["start"] = { + ["U"] = { 5165 }, + }, + }, + [2299] = { + ["class"] = 8, + ["close"] = { 2259, 2299 }, + ["end"] = { + ["U"] = { 5165 }, + }, + ["lvl"] = 16, + ["min"] = 16, + ["start"] = { + ["U"] = { 1234 }, + }, + }, + [2300] = { + ["class"] = 8, + ["close"] = { 2260, 2298, 2300 }, + ["end"] = { + ["U"] = { 6946 }, + }, + ["lvl"] = 16, + ["min"] = 16, + ["start"] = { + ["U"] = { 917 }, + }, + }, + [2318] = { + ["end"] = { + ["U"] = { 6868 }, + }, + ["lvl"] = 42, + ["min"] = 37, + ["pre"] = { 2284 }, + ["start"] = { + ["U"] = { 6912 }, + }, + }, + [2338] = { + ["end"] = { + ["U"] = { 6868 }, + }, + ["lvl"] = 42, + ["min"] = 37, + ["pre"] = { 2318 }, + ["start"] = { + ["U"] = { 6868 }, + }, + }, + [2339] = { + ["end"] = { + ["U"] = { 6868 }, + }, + ["lvl"] = 44, + ["min"] = 37, + ["obj"] = { + ["I"] = { 7669, 7670, 7671, 7672 }, + }, + ["pre"] = { 2338 }, + ["start"] = { + ["U"] = { 6868 }, + }, + }, + [2340] = { + ["end"] = { + ["U"] = { 6986 }, + }, + ["lvl"] = 44, + ["min"] = 37, + ["pre"] = { 2339 }, + ["start"] = { + ["U"] = { 6868 }, + }, + }, + [2341] = { + ["end"] = { + ["U"] = { 6868 }, + }, + ["lvl"] = 44, + ["min"] = 37, + ["pre"] = { 2340 }, + ["start"] = { + ["U"] = { 6986 }, + }, + }, + [2342] = { + ["end"] = { + ["U"] = { 5651 }, + }, + ["lvl"] = 43, + ["min"] = 33, + ["obj"] = { + ["I"] = { 8026 }, + }, + ["start"] = { + ["U"] = { 5651 }, + }, + }, + [2358] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 7009 }, + }, + ["lvl"] = 22, + ["min"] = 16, + ["obj"] = { + ["I"] = { 7906 }, + }, + ["pre"] = { 2282 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 7009 }, + }, + }, + [2359] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 332 }, + }, + ["lvl"] = 24, + ["min"] = 20, + ["obj"] = { + ["I"] = { 7908, 7923 }, + }, + ["pre"] = { 2360 }, + ["start"] = { + ["U"] = { 7024 }, + }, + }, + [2360] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 7024 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["start"] = { + ["U"] = { 332 }, + }, + }, + [2361] = { + ["end"] = { + ["U"] = { 6826 }, + }, + ["lvl"] = 44, + ["min"] = 37, + ["pre"] = { 2204 }, + ["start"] = { + ["U"] = { 6826 }, + }, + }, + [2378] = { + ["class"] = 8, + ["close"] = { 2378, 2380 }, + ["end"] = { + ["U"] = { 3401 }, + }, + ["lvl"] = 16, + ["min"] = 16, + ["start"] = { + ["U"] = { 6467 }, + }, + }, + [2379] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 3402 }, + }, + ["lvl"] = 16, + ["min"] = 16, + ["pre"] = { 2378, 2380 }, + ["start"] = { + ["U"] = { 3401 }, + }, + }, + [2380] = { + ["class"] = 8, + ["close"] = { 2378, 2380 }, + ["end"] = { + ["U"] = { 3401 }, + }, + ["lvl"] = 16, + ["min"] = 16, + ["start"] = { + ["U"] = { 3170 }, + }, + }, + [2381] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 7161 }, + }, + ["lvl"] = 18, + ["min"] = 16, + ["obj"] = { + ["I"] = { 7968 }, + }, + ["pre"] = { 2382 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 7161 }, + }, + }, + [2382] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 7161 }, + }, + ["lvl"] = 16, + ["min"] = 16, + ["pre"] = { 2379 }, + ["start"] = { + ["U"] = { 3402 }, + }, + }, + [2383] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 3153 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 788 }, + ["race"] = 2, + ["start"] = { + ["U"] = { 3143 }, + }, + }, + [2398] = { + ["end"] = { + ["U"] = { 6906 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["start"] = { + ["U"] = { 1356 }, + }, + }, + [2399] = { + ["end"] = { + ["O"] = { 7510 }, + }, + ["lvl"] = 10, + ["min"] = 4, + ["pre"] = { 931 }, + ["start"] = { + ["O"] = { 7510 }, + }, + }, + [2418] = { + ["end"] = { + ["U"] = { 2817 }, + }, + ["lvl"] = 36, + ["min"] = 30, + ["obj"] = { + ["I"] = { 8009, 8052 }, + }, + ["start"] = { + ["U"] = { 2817 }, + }, + }, + [2438] = { + ["end"] = { + ["U"] = { 3567 }, + }, + ["lvl"] = 6, + ["min"] = 1, + ["obj"] = { + ["I"] = { 8048 }, + }, + ["start"] = { + ["U"] = { 3567 }, + }, + }, + [2439] = { + ["end"] = { + ["U"] = { 7292 }, + }, + ["lvl"] = 47, + ["min"] = 40, + ["pre"] = { 2279 }, + ["start"] = { + ["U"] = { 5387 }, + }, + }, + [2440] = { + ["end"] = { + ["U"] = { 3009 }, + }, + ["lvl"] = 47, + ["min"] = 40, + ["pre"] = { 2280 }, + ["start"] = { + ["U"] = { 3978 }, + }, + }, + [2458] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 7233 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["obj"] = { + ["IR"] = { 8051 }, + }, + ["pre"] = { 2460 }, + ["start"] = { + ["U"] = { 3401 }, + }, + }, + [2459] = { + ["end"] = { + ["U"] = { 3567 }, + }, + ["lvl"] = 8, + ["min"] = 1, + ["obj"] = { + ["I"] = { 8049, 8050 }, + ["U"] = { 7235 }, + }, + ["pre"] = { 2438 }, + ["start"] = { + ["U"] = { 3567 }, + }, + }, + [2460] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 3401 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["start"] = { + ["U"] = { 3401 }, + }, + }, + [2478] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 3401 }, + }, + ["lvl"] = 24, + ["min"] = 20, + ["obj"] = { + ["I"] = { 8072, 8073, 8074 }, + ["U"] = { 7307, 7308, 7310 }, + }, + ["pre"] = { 2458 }, + ["start"] = { + ["U"] = { 7233 }, + }, + }, + [2479] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 2391 }, + }, + ["lvl"] = 26, + ["min"] = 20, + ["pre"] = { 2478 }, + ["start"] = { + ["U"] = { 3401 }, + }, + }, + [2480] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 2391 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["pre"] = { 2479 }, + ["start"] = { + ["U"] = { 2391 }, + }, + }, + [2498] = { + ["end"] = { + ["U"] = { 2080 }, + }, + ["lvl"] = 9, + ["min"] = 4, + ["pre"] = { 923 }, + ["start"] = { + ["U"] = { 3517 }, + }, + }, + [2499] = { + ["end"] = { + ["U"] = { 2080 }, + }, + ["lvl"] = 9, + ["min"] = 4, + ["obj"] = { + ["I"] = { 8136 }, + }, + ["pre"] = { 2498 }, + ["start"] = { + ["U"] = { 2080 }, + }, + }, + [2500] = { + ["end"] = { + ["U"] = { 1470 }, + }, + ["lvl"] = 39, + ["min"] = 36, + ["obj"] = { + ["I"] = { 7846, 7847, 7848 }, + }, + ["start"] = { + ["U"] = { 1470 }, + }, + }, + [2501] = { + ["end"] = { + ["U"] = { 1470 }, + }, + ["lvl"] = 44, + ["min"] = 40, + ["obj"] = { + ["I"] = { 7867 }, + }, + ["pre"] = { 2500 }, + ["skill"] = 171, + ["start"] = { + ["U"] = { 1470 }, + }, + }, + [2518] = { + ["end"] = { + ["U"] = { 7313 }, + }, + ["lvl"] = 12, + ["min"] = 5, + ["obj"] = { + ["I"] = { 8344 }, + }, + ["pre"] = { 2519 }, + ["start"] = { + ["U"] = { 7313 }, + }, + }, + [2519] = { + ["end"] = { + ["U"] = { 7313 }, + }, + ["lvl"] = 10, + ["min"] = 5, + ["start"] = { + ["U"] = { 7316 }, + }, + }, + [2520] = { + ["end"] = { + ["U"] = { 7313 }, + }, + ["lvl"] = 12, + ["min"] = 5, + ["obj"] = { + ["IR"] = { 8155 }, + }, + ["pre"] = { 2518 }, + ["start"] = { + ["U"] = { 7313 }, + }, + }, + [2521] = { + ["end"] = { + ["U"] = { 7363 }, + }, + ["lvl"] = 55, + ["min"] = 45, + ["obj"] = { + ["I"] = { 8244 }, + }, + ["start"] = { + ["U"] = { 7363 }, + }, + }, + [2522] = { + ["end"] = { + ["U"] = { 7363 }, + }, + ["lvl"] = 55, + ["min"] = 45, + ["obj"] = { + ["I"] = { 8244 }, + }, + ["pre"] = { 2521 }, + ["start"] = { + ["U"] = { 7363 }, + }, + }, + [2523] = { + ["end"] = { + ["O"] = { 171942 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11516 }, + }, + ["start"] = { + ["O"] = { 171942 }, + }, + }, + [2541] = { + ["end"] = { + ["U"] = { 7317 }, + }, + ["lvl"] = 8, + ["min"] = 3, + ["obj"] = { + ["I"] = { 8363 }, + }, + ["start"] = { + ["U"] = { 7317 }, + }, + }, + [2561] = { + ["end"] = { + ["U"] = { 7317 }, + }, + ["lvl"] = 10, + ["min"] = 3, + ["obj"] = { + ["IR"] = { 8149 }, + }, + ["pre"] = { 2541 }, + ["start"] = { + ["U"] = { 7317 }, + }, + }, + [2581] = { + ["end"] = { + ["U"] = { 7505 }, + }, + ["lvl"] = 50, + ["min"] = 45, + ["obj"] = { + ["I"] = { 8391, 8392, 8393 }, + }, + ["start"] = { + ["U"] = { 7505 }, + }, + }, + [2582] = { + ["end"] = { + ["U"] = { 7505 }, + }, + ["lvl"] = 50, + ["min"] = 45, + ["obj"] = { + ["I"] = { 8391, 8392, 8393 }, + }, + ["pre"] = { 2581 }, + ["start"] = { + ["U"] = { 7505 }, + }, + }, + [2583] = { + ["end"] = { + ["U"] = { 7505 }, + }, + ["lvl"] = 50, + ["min"] = 45, + ["obj"] = { + ["I"] = { 8392, 8393, 8394 }, + }, + ["start"] = { + ["U"] = { 7505 }, + }, + }, + [2584] = { + ["end"] = { + ["U"] = { 7505 }, + }, + ["lvl"] = 50, + ["min"] = 45, + ["obj"] = { + ["I"] = { 8392, 8393, 8394 }, + }, + ["pre"] = { 2583 }, + ["start"] = { + ["U"] = { 7505 }, + }, + }, + [2585] = { + ["end"] = { + ["U"] = { 7505 }, + }, + ["lvl"] = 50, + ["min"] = 45, + ["obj"] = { + ["I"] = { 8392, 8393, 8396 }, + }, + ["start"] = { + ["U"] = { 7505 }, + }, + }, + [2586] = { + ["end"] = { + ["U"] = { 7505 }, + }, + ["lvl"] = 50, + ["min"] = 45, + ["obj"] = { + ["I"] = { 8392, 8393, 8396 }, + }, + ["pre"] = { 2585 }, + ["start"] = { + ["U"] = { 7505 }, + }, + }, + [2601] = { + ["end"] = { + ["U"] = { 7506 }, + }, + ["lvl"] = 50, + ["min"] = 45, + ["obj"] = { + ["I"] = { 8394, 8396 }, + }, + ["start"] = { + ["U"] = { 7506 }, + }, + }, + [2602] = { + ["end"] = { + ["U"] = { 7506 }, + }, + ["lvl"] = 50, + ["min"] = 45, + ["obj"] = { + ["I"] = { 8394, 8396 }, + }, + ["pre"] = { 2601 }, + ["start"] = { + ["U"] = { 7506 }, + }, + }, + [2603] = { + ["end"] = { + ["U"] = { 7506 }, + }, + ["lvl"] = 50, + ["min"] = 45, + ["obj"] = { + ["I"] = { 8391, 8396 }, + }, + ["start"] = { + ["U"] = { 7506 }, + }, + }, + [2604] = { + ["end"] = { + ["U"] = { 7506 }, + }, + ["lvl"] = 50, + ["min"] = 45, + ["obj"] = { + ["I"] = { 8391, 8396 }, + }, + ["pre"] = { 2603 }, + ["start"] = { + ["U"] = { 7506 }, + }, + }, + [2605] = { + ["end"] = { + ["U"] = { 7564 }, + }, + ["lvl"] = 49, + ["min"] = 44, + ["obj"] = { + ["I"] = { 8428, 8429, 8430 }, + }, + ["start"] = { + ["U"] = { 7564 }, + }, + }, + [2606] = { + ["end"] = { + ["U"] = { 7583 }, + }, + ["lvl"] = 49, + ["min"] = 44, + ["pre"] = { 2605 }, + ["start"] = { + ["U"] = { 7564 }, + }, + }, + [2607] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 7207 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["pre"] = { 2359 }, + ["start"] = { + ["U"] = { 332 }, + }, + }, + [2608] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 7207 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["pre"] = { 2607 }, + ["start"] = { + ["U"] = { 7207 }, + }, + }, + [2609] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 7207 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["obj"] = { + ["I"] = { 3372, 3421, 4371, 8431 }, + }, + ["pre"] = { 2608 }, + ["start"] = { + ["U"] = { 7207 }, + }, + }, + [2621] = { + ["end"] = { + ["U"] = { 7623 }, + }, + ["lvl"] = 50, + ["min"] = 45, + ["pre"] = { 2784 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 7572 }, + }, + }, + [2622] = { + ["end"] = { + ["U"] = { 7643 }, + }, + ["lvl"] = 50, + ["min"] = 45, + ["pre"] = { 2621 }, + ["start"] = { + ["U"] = { 7623 }, + }, + }, + [2623] = { + ["end"] = { + ["U"] = { 7572 }, + }, + ["lvl"] = 55, + ["min"] = 45, + ["obj"] = { + ["I"] = { 8463 }, + }, + ["pre"] = { 2622 }, + ["start"] = { + ["U"] = { 7643 }, + }, + }, + [2641] = { + ["end"] = { + ["U"] = { 7583 }, + }, + ["lvl"] = 49, + ["min"] = 44, + ["obj"] = { + ["I"] = { 8526 }, + }, + ["pre"] = { 2606 }, + ["start"] = { + ["U"] = { 7583 }, + }, + }, + [2661] = { + ["end"] = { + ["U"] = { 7564 }, + }, + ["lvl"] = 49, + ["min"] = 44, + ["pre"] = { 2641 }, + ["start"] = { + ["U"] = { 7583 }, + }, + }, + [2662] = { + ["end"] = { + ["U"] = { 7564 }, + }, + ["lvl"] = 49, + ["min"] = 44, + ["pre"] = { 2661 }, + ["start"] = { + ["U"] = { 7564 }, + }, + }, + [2681] = { + ["end"] = { + ["U"] = { 7572 }, + }, + ["lvl"] = 57, + ["min"] = 45, + ["obj"] = { + ["U"] = { 7668, 7669, 7670, 7671 }, + }, + ["pre"] = { 2801 }, + ["start"] = { + ["U"] = { 7572 }, + }, + }, + [2701] = { + ["end"] = { + ["O"] = { 141980 }, + }, + ["lvl"] = 57, + ["min"] = 45, + ["pre"] = { 2702 }, + ["start"] = { + ["U"] = { 7750 }, + }, + }, + [2702] = { + ["end"] = { + ["U"] = { 7750 }, + }, + ["lvl"] = 57, + ["min"] = 45, + ["pre"] = { 2681 }, + ["start"] = { + ["U"] = { 7572 }, + }, + }, + [2721] = { + ["end"] = { + ["U"] = { 7729 }, + }, + ["lvl"] = 58, + ["min"] = 45, + ["pre"] = { 2701 }, + ["start"] = { + ["U"] = { 7572 }, + }, + }, + [2741] = { + ["end"] = { + ["O"] = { 142071 }, + }, + ["lvl"] = 47, + ["min"] = 42, + ["obj"] = { + ["I"] = { 8564 }, + }, + ["start"] = { + ["O"] = { 142071 }, + }, + }, + [2742] = { + ["end"] = { + ["O"] = { 142127 }, + }, + ["lvl"] = 47, + ["min"] = 42, + ["start"] = { + ["U"] = { 7780 }, + }, + }, + [2743] = { + ["end"] = { + ["U"] = { 7572 }, + }, + ["lvl"] = 60, + ["min"] = 45, + ["pre"] = { 2721 }, + ["start"] = { + ["U"] = { 7729 }, + }, + }, + [2744] = { + ["end"] = { + ["U"] = { 7783 }, + }, + ["lvl"] = 60, + ["min"] = 45, + ["pre"] = { 2743 }, + ["start"] = { + ["U"] = { 7572 }, + }, + }, + [2745] = { + ["end"] = { + ["U"] = { 7766 }, + }, + ["lvl"] = 31, + ["min"] = 16, + ["pre"] = { 350 }, + ["start"] = { + ["U"] = { 482 }, + }, + }, + [2746] = { + ["end"] = { + ["U"] = { 7766 }, + }, + ["lvl"] = 31, + ["min"] = 16, + ["obj"] = { + ["I"] = { 4306, 8683 }, + }, + ["pre"] = { 2745 }, + ["start"] = { + ["U"] = { 7766 }, + }, + }, + [2747] = { + ["end"] = { + ["U"] = { 7763 }, + }, + ["lvl"] = 60, + ["min"] = 42, + ["obj"] = { + ["I"] = { 8643 }, + }, + ["pre"] = { 2741 }, + ["start"] = { + ["U"] = { 7763 }, + }, + }, + [2748] = { + ["end"] = { + ["U"] = { 7763 }, + }, + ["lvl"] = 60, + ["min"] = 42, + ["obj"] = { + ["I"] = { 8644 }, + }, + ["pre"] = { 2741 }, + ["start"] = { + ["U"] = { 7763 }, + }, + }, + [2749] = { + ["end"] = { + ["U"] = { 7763 }, + }, + ["lvl"] = 60, + ["min"] = 42, + ["obj"] = { + ["I"] = { 8645 }, + }, + ["pre"] = { 2741 }, + ["start"] = { + ["U"] = { 7763 }, + }, + }, + [2750] = { + ["end"] = { + ["U"] = { 7763 }, + }, + ["lvl"] = 60, + ["min"] = 42, + ["obj"] = { + ["I"] = { 8646 }, + }, + ["pre"] = { 2741 }, + ["start"] = { + ["U"] = { 7763 }, + }, + }, + [2751] = { + ["end"] = { + ["U"] = { 7790 }, + }, + ["lvl"] = 32, + ["min"] = 32, + ["obj"] = { + ["I"] = { 2868, 5635, 7957 }, + }, + ["skill"] = 164, + ["start"] = { + ["U"] = { 7790 }, + }, + }, + [2752] = { + ["end"] = { + ["U"] = { 7790 }, + }, + ["lvl"] = 32, + ["min"] = 32, + ["obj"] = { + ["I"] = { 7956, 7958 }, + }, + ["pre"] = { 2751 }, + ["skill"] = 164, + ["start"] = { + ["U"] = { 7790 }, + }, + }, + [2753] = { + ["end"] = { + ["U"] = { 7790 }, + }, + ["lvl"] = 36, + ["min"] = 32, + ["obj"] = { + ["I"] = { 3835, 3836, 3842 }, + }, + ["pre"] = { 2752 }, + ["skill"] = 164, + ["start"] = { + ["U"] = { 7790 }, + }, + }, + [2754] = { + ["end"] = { + ["U"] = { 7790 }, + }, + ["lvl"] = 36, + ["min"] = 32, + ["obj"] = { + ["I"] = { 3482, 3483, 3851 }, + }, + ["pre"] = { 2753 }, + ["skill"] = 164, + ["start"] = { + ["U"] = { 7790 }, + }, + }, + [2755] = { + ["end"] = { + ["U"] = { 7790 }, + }, + ["lvl"] = 36, + ["min"] = 32, + ["pre"] = { 2754 }, + ["skill"] = 164, + ["start"] = { + ["U"] = { 7790 }, + }, + }, + [2756] = { + ["end"] = { + ["U"] = { 7792 }, + }, + ["lvl"] = 40, + ["min"] = 40, + ["obj"] = { + ["I"] = { 7922, 7963 }, + }, + ["skill"] = 164, + ["start"] = { + ["U"] = { 7792 }, + }, + }, + [2757] = { + ["end"] = { + ["U"] = { 7794 }, + }, + ["lvl"] = 40, + ["min"] = 40, + ["pre"] = { 2756 }, + ["skill"] = 164, + ["start"] = { + ["U"] = { 7793 }, + }, + }, + [2758] = { + ["end"] = { + ["U"] = { 7798 }, + }, + ["lvl"] = 40, + ["min"] = 40, + ["obj"] = { + ["I"] = { 6040 }, + }, + ["skill"] = 164, + ["start"] = { + ["U"] = { 7798 }, + }, + }, + [2759] = { + ["end"] = { + ["U"] = { 7794 }, + }, + ["lvl"] = 40, + ["min"] = 40, + ["pre"] = { 2758 }, + ["skill"] = 164, + ["start"] = { + ["U"] = { 7798 }, + }, + }, + [2760] = { + ["end"] = { + ["U"] = { 7802 }, + }, + ["lvl"] = 40, + ["min"] = 40, + ["pre"] = { 2757, 2759 }, + ["skill"] = 164, + ["start"] = { + ["U"] = { 7794 }, + }, + }, + [2761] = { + ["end"] = { + ["U"] = { 7802 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 3575, 3860 }, + }, + ["pre"] = { 2760 }, + ["skill"] = 164, + ["start"] = { + ["U"] = { 7802 }, + }, + }, + [2762] = { + ["end"] = { + ["U"] = { 7802 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 3860, 6037 }, + }, + ["pre"] = { 2760 }, + ["skill"] = 164, + ["start"] = { + ["U"] = { 7802 }, + }, + }, + [2763] = { + ["end"] = { + ["U"] = { 7802 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 3860, 3864 }, + }, + ["pre"] = { 2760 }, + ["skill"] = 164, + ["start"] = { + ["U"] = { 7802 }, + }, + }, + [2764] = { + ["end"] = { + ["U"] = { 7804 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["pre"] = { 2761 }, + ["skill"] = 164, + ["start"] = { + ["U"] = { 7802 }, + }, + }, + [2765] = { + ["end"] = { + ["U"] = { 7802 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["pre"] = { 2761, 2762, 2763 }, + ["skill"] = 164, + ["start"] = { + ["U"] = { 7802 }, + }, + }, + [2766] = { + ["end"] = { + ["U"] = { 7807 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["start"] = { + ["I"] = { 8705, 8705, 8705 }, + }, + }, + [2767] = { + ["end"] = { + ["U"] = { 7406 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["pre"] = { 2766 }, + ["start"] = { + ["U"] = { 7807 }, + }, + }, + [2768] = { + ["end"] = { + ["U"] = { 7407 }, + }, + ["lvl"] = 47, + ["min"] = 40, + ["obj"] = { + ["I"] = { 8548 }, + }, + ["start"] = { + ["U"] = { 7407 }, + }, + }, + [2769] = { + ["end"] = { + ["U"] = { 4453 }, + }, + ["lvl"] = 46, + ["min"] = 40, + ["start"] = { + ["U"] = { 6169 }, + }, + }, + [2770] = { + ["end"] = { + ["U"] = { 4453 }, + }, + ["lvl"] = 50, + ["min"] = 40, + ["obj"] = { + ["I"] = { 8707 }, + }, + ["pre"] = { 2769 }, + ["start"] = { + ["U"] = { 4453 }, + }, + }, + [2771] = { + ["end"] = { + ["U"] = { 7804 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 7928, 7931 }, + }, + ["pre"] = { 2760 }, + ["skill"] = 164, + ["start"] = { + ["U"] = { 7804 }, + }, + }, + [2772] = { + ["end"] = { + ["U"] = { 7804 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 7926, 7933 }, + }, + ["pre"] = { 2760 }, + ["skill"] = 164, + ["start"] = { + ["U"] = { 7804 }, + }, + }, + [2773] = { + ["end"] = { + ["U"] = { 7804 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 7927, 7930 }, + }, + ["pre"] = { 2760 }, + ["skill"] = 164, + ["start"] = { + ["U"] = { 7804 }, + }, + }, + [2781] = { + ["end"] = { + ["U"] = { 7407 }, + }, + ["lvl"] = 46, + ["min"] = 39, + ["obj"] = { + ["I"] = { 8723 }, + }, + ["start"] = { + ["O"] = { 150075, 142122 }, + }, + }, + [2782] = { + ["end"] = { + ["U"] = { 7825 }, + }, + ["lvl"] = 47, + ["min"] = 42, + ["pre"] = { 2742 }, + ["start"] = { + ["O"] = { 142127 }, + }, + }, + [2783] = { + ["end"] = { + ["U"] = { 7572 }, + }, + ["lvl"] = 57, + ["min"] = 50, + ["race"] = 77, + ["start"] = { + ["U"] = { 7826 }, + }, + }, + [2784] = { + ["end"] = { + ["U"] = { 7572 }, + }, + ["lvl"] = 50, + ["min"] = 45, + ["race"] = 178, + ["start"] = { + ["U"] = { 7572 }, + }, + }, + [2801] = { + ["end"] = { + ["U"] = { 7572 }, + }, + ["lvl"] = 57, + ["min"] = 45, + ["pre"] = { 2783 }, + ["start"] = { + ["U"] = { 7572 }, + }, + }, + [2821] = { + ["end"] = { + ["U"] = { 7852 }, + }, + ["lvl"] = 46, + ["min"] = 40, + ["obj"] = { + ["I"] = { 8973 }, + }, + ["start"] = { + ["U"] = { 7852 }, + }, + }, + [2822] = { + ["end"] = { + ["U"] = { 7854 }, + }, + ["lvl"] = 46, + ["min"] = 40, + ["obj"] = { + ["I"] = { 8973 }, + }, + ["start"] = { + ["U"] = { 7854 }, + }, + }, + [2841] = { + ["end"] = { + ["U"] = { 3412 }, + }, + ["lvl"] = 35, + ["min"] = 25, + ["obj"] = { + ["I"] = { 9153, 9299 }, + }, + ["start"] = { + ["U"] = { 3412 }, + }, + }, + [2842] = { + ["end"] = { + ["U"] = { 7853 }, + }, + ["lvl"] = 35, + ["min"] = 20, + ["pre"] = { 2841 }, + ["start"] = { + ["U"] = { 3413 }, + }, + }, + [2843] = { + ["end"] = { + ["U"] = { 7853 }, + }, + ["lvl"] = 35, + ["min"] = 20, + ["pre"] = { 2842 }, + ["start"] = { + ["U"] = { 7853 }, + }, + }, + [2844] = { + ["end"] = { + ["U"] = { 7774 }, + }, + ["lvl"] = 49, + ["min"] = 44, + ["start"] = { + ["U"] = { 7765 }, + }, + }, + [2845] = { + ["end"] = { + ["U"] = { 7765 }, + }, + ["lvl"] = 49, + ["min"] = 44, + ["obj"] = { + ["I"] = { 9189 }, + ["IR"] = { 9189 }, + }, + ["pre"] = { 2844 }, + ["start"] = { + ["U"] = { 7774 }, + }, + }, + [2846] = { + ["end"] = { + ["U"] = { 6546 }, + }, + ["lvl"] = 46, + ["min"] = 40, + ["obj"] = { + ["I"] = { 9234 }, + }, + ["pre"] = { 2861 }, + ["start"] = { + ["U"] = { 6546 }, + }, + }, + [2847] = { + ["end"] = { + ["U"] = { 7852 }, + }, + ["lvl"] = 45, + ["min"] = 30, + ["obj"] = { + ["I"] = { 4304 }, + }, + ["skill"] = 165, + ["start"] = { + ["U"] = { 7852 }, + }, + }, + [2848] = { + ["end"] = { + ["U"] = { 7852 }, + }, + ["lvl"] = 45, + ["min"] = 30, + ["obj"] = { + ["I"] = { 8153, 8173 }, + }, + ["pre"] = { 2847 }, + ["skill"] = 165, + ["start"] = { + ["U"] = { 7852 }, + }, + }, + [2849] = { + ["end"] = { + ["U"] = { 7852 }, + }, + ["lvl"] = 45, + ["min"] = 30, + ["obj"] = { + ["I"] = { 8153, 8187, 8189 }, + }, + ["pre"] = { 2847 }, + ["skill"] = 165, + ["start"] = { + ["U"] = { 7852 }, + }, + }, + [2850] = { + ["end"] = { + ["U"] = { 7852 }, + }, + ["lvl"] = 45, + ["min"] = 30, + ["obj"] = { + ["I"] = { 8153, 8175, 8176 }, + }, + ["pre"] = { 2847 }, + ["skill"] = 165, + ["start"] = { + ["U"] = { 7852 }, + }, + }, + [2851] = { + ["end"] = { + ["U"] = { 7852 }, + }, + ["lvl"] = 45, + ["min"] = 30, + ["obj"] = { + ["I"] = { 8153, 8193, 8197 }, + }, + ["skill"] = 165, + ["start"] = { + ["U"] = { 7852 }, + }, + }, + [2852] = { + ["end"] = { + ["U"] = { 7852 }, + }, + ["lvl"] = 45, + ["min"] = 30, + ["obj"] = { + ["I"] = { 8153, 8191, 8198 }, + }, + ["skill"] = 165, + ["start"] = { + ["U"] = { 7852 }, + }, + }, + [2853] = { + ["end"] = { + ["U"] = { 4212 }, + }, + ["lvl"] = 45, + ["min"] = 30, + ["pre"] = { 2848, 2849, 2850, 2851, 2852 }, + ["skill"] = 165, + ["start"] = { + ["U"] = { 7852 }, + }, + }, + [2854] = { + ["end"] = { + ["U"] = { 7854 }, + }, + ["lvl"] = 45, + ["min"] = 30, + ["obj"] = { + ["I"] = { 4304 }, + }, + ["skill"] = 165, + ["start"] = { + ["U"] = { 7854 }, + }, + }, + [2855] = { + ["end"] = { + ["U"] = { 7854 }, + }, + ["lvl"] = 45, + ["min"] = 30, + ["obj"] = { + ["I"] = { 8153, 8173 }, + }, + ["pre"] = { 2854 }, + ["skill"] = 165, + ["start"] = { + ["U"] = { 7854 }, + }, + }, + [2856] = { + ["end"] = { + ["U"] = { 7854 }, + }, + ["lvl"] = 45, + ["min"] = 30, + ["obj"] = { + ["I"] = { 8153, 8187, 8189 }, + }, + ["pre"] = { 2854 }, + ["skill"] = 165, + ["start"] = { + ["U"] = { 7854 }, + }, + }, + [2857] = { + ["end"] = { + ["U"] = { 7854 }, + }, + ["lvl"] = 45, + ["min"] = 30, + ["obj"] = { + ["I"] = { 8153, 8175, 8176 }, + }, + ["pre"] = { 2854 }, + ["skill"] = 165, + ["start"] = { + ["U"] = { 7854 }, + }, + }, + [2858] = { + ["end"] = { + ["U"] = { 7854 }, + }, + ["lvl"] = 45, + ["min"] = 30, + ["obj"] = { + ["I"] = { 8153, 8193, 8197 }, + }, + ["skill"] = 165, + ["start"] = { + ["U"] = { 7854 }, + }, + }, + [2859] = { + ["end"] = { + ["U"] = { 7854 }, + }, + ["lvl"] = 45, + ["min"] = 30, + ["obj"] = { + ["I"] = { 8153, 8191, 8198 }, + }, + ["skill"] = 165, + ["start"] = { + ["U"] = { 7854 }, + }, + }, + [2860] = { + ["end"] = { + ["U"] = { 3007 }, + }, + ["lvl"] = 45, + ["min"] = 30, + ["pre"] = { 2855, 2856, 2857, 2858, 2859 }, + ["skill"] = 165, + ["start"] = { + ["U"] = { 7854 }, + }, + }, + [2861] = { + ["end"] = { + ["U"] = { 6546 }, + }, + ["lvl"] = 46, + ["min"] = 40, + ["start"] = { + ["U"] = { 3048, 4568, 5144, 5497, 5885 }, + }, + }, + [2862] = { + ["end"] = { + ["U"] = { 7875 }, + }, + ["lvl"] = 42, + ["min"] = 39, + ["obj"] = { + ["I"] = { 9237 }, + }, + ["start"] = { + ["U"] = { 7875 }, + }, + }, + [2863] = { + ["end"] = { + ["U"] = { 7875 }, + }, + ["lvl"] = 43, + ["min"] = 39, + ["obj"] = { + ["U"] = { 5258 }, + }, + ["pre"] = { 2862 }, + ["start"] = { + ["U"] = { 7875 }, + }, + }, + [2864] = { + ["end"] = { + ["U"] = { 7876 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["start"] = { + ["U"] = { 773 }, + }, + }, + [2865] = { + ["end"] = { + ["U"] = { 7876 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 9238 }, + }, + ["pre"] = { 2864 }, + ["start"] = { + ["U"] = { 7876 }, + }, + }, + [2866] = { + ["end"] = { + ["O"] = { 142179 }, + }, + ["lvl"] = 43, + ["min"] = 40, + ["start"] = { + ["U"] = { 3936 }, + }, + }, + [2867] = { + ["end"] = { + ["U"] = { 3936 }, + }, + ["lvl"] = 43, + ["min"] = 40, + ["pre"] = { 2866 }, + ["start"] = { + ["O"] = { 142179 }, + }, + }, + [2868] = { + ["lvl"] = 50, + ["min"] = 40, + ["race"] = 255, + }, + [2869] = { + ["end"] = { + ["U"] = { 7877 }, + }, + ["lvl"] = 43, + ["min"] = 40, + ["obj"] = { + ["I"] = { 9247 }, + }, + ["pre"] = { 3130 }, + ["start"] = { + ["U"] = { 7877 }, + }, + }, + [2870] = { + ["end"] = { + ["U"] = { 7877 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 9248 }, + }, + ["pre"] = { 2869 }, + ["start"] = { + ["U"] = { 7877 }, + }, + }, + [2871] = { + ["end"] = { + ["U"] = { 7878 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["pre"] = { 2870 }, + ["start"] = { + ["U"] = { 7877 }, + }, + }, + [2872] = { + ["end"] = { + ["U"] = { 7881 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["start"] = { + ["U"] = { 2501 }, + }, + }, + [2873] = { + ["end"] = { + ["U"] = { 7881 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 9244 }, + }, + ["pre"] = { 2872 }, + ["start"] = { + ["U"] = { 7881 }, + }, + }, + [2874] = { + ["end"] = { + ["U"] = { 2501 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["pre"] = { 2873 }, + ["start"] = { + ["U"] = { 7881 }, + }, + }, + [2875] = { + ["end"] = { + ["U"] = { 7882 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 9246 }, + }, + ["start"] = { + ["O"] = { 150075, 142122 }, + }, + }, + [2876] = { + ["end"] = { + ["U"] = { 7882 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["start"] = { + ["I"] = { 9250 }, + }, + }, + [2877] = { + ["end"] = { + ["U"] = { 7884 }, + }, + ["lvl"] = 48, + ["min"] = 40, + ["obj"] = { + ["U"] = { 2655, 2656 }, + }, + ["start"] = { + ["U"] = { 7884 }, + }, + }, + [2878] = { + ["end"] = { + ["O"] = { 174594 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11516 }, + }, + ["start"] = { + ["O"] = { 174594 }, + }, + }, + [2879] = { + ["end"] = { + ["O"] = { 144063 }, + }, + ["lvl"] = 50, + ["min"] = 42, + ["obj"] = { + ["I"] = { 9306 }, + ["IR"] = { 9263 }, + }, + ["pre"] = { 2943 }, + ["start"] = { + ["U"] = { 7764 }, + }, + }, + [2880] = { + ["end"] = { + ["U"] = { 7884 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 9259 }, + }, + ["start"] = { + ["U"] = { 7884 }, + }, + }, + [2881] = { + ["end"] = { + ["U"] = { 7884 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 9259 }, + }, + ["pre"] = { 2880 }, + ["start"] = { + ["U"] = { 7884 }, + }, + }, + [2882] = { + ["end"] = { + ["O"] = { 142194 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 9275 }, + }, + ["start"] = { + ["I"] = { 9254 }, + }, + }, + [2902] = { + ["end"] = { + ["O"] = { 142195 }, + }, + ["lvl"] = 43, + ["min"] = 39, + ["pre"] = { 2863 }, + ["start"] = { + ["U"] = { 7875 }, + }, + }, + [2903] = { + ["end"] = { + ["U"] = { 7875 }, + }, + ["lvl"] = 43, + ["min"] = 39, + ["pre"] = { 2902 }, + ["start"] = { + ["O"] = { 142195 }, + }, + }, + [2904] = { + ["end"] = { + ["U"] = { 7853 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["start"] = { + ["U"] = { 7850 }, + }, + }, + [2922] = { + ["end"] = { + ["U"] = { 7944 }, + }, + ["lvl"] = 26, + ["min"] = 20, + ["obj"] = { + ["I"] = { 9277 }, + }, + ["pre"] = { 2923 }, + ["start"] = { + ["U"] = { 7944 }, + }, + }, + [2923] = { + ["end"] = { + ["U"] = { 7944 }, + }, + ["lvl"] = 26, + ["min"] = 20, + ["start"] = { + ["U"] = { 7917 }, + }, + }, + [2924] = { + ["end"] = { + ["U"] = { 6169 }, + }, + ["lvl"] = 30, + ["min"] = 24, + ["obj"] = { + ["I"] = { 9278 }, + }, + ["pre"] = { 2925 }, + ["start"] = { + ["U"] = { 6169 }, + }, + }, + [2925] = { + ["end"] = { + ["U"] = { 6169 }, + }, + ["lvl"] = 30, + ["min"] = 24, + ["start"] = { + ["U"] = { 6142 }, + }, + }, + [2926] = { + ["end"] = { + ["U"] = { 1268 }, + }, + ["lvl"] = 27, + ["min"] = 20, + ["obj"] = { + ["I"] = { 9284 }, + ["IR"] = { 9283 }, + }, + ["pre"] = { 2927 }, + ["start"] = { + ["U"] = { 1268 }, + }, + }, + [2927] = { + ["end"] = { + ["U"] = { 1268 }, + }, + ["lvl"] = 27, + ["min"] = 20, + ["start"] = { + ["U"] = { 6569 }, + }, + }, + [2928] = { + ["end"] = { + ["U"] = { 6579 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["obj"] = { + ["I"] = { 9309 }, + }, + ["start"] = { + ["U"] = { 6579 }, + }, + }, + [2929] = { + ["end"] = { + ["U"] = { 7937 }, + }, + ["lvl"] = 35, + ["min"] = 25, + ["obj"] = { + ["U"] = { 7800 }, + }, + ["start"] = { + ["U"] = { 7937 }, + }, + }, + [2930] = { + ["end"] = { + ["U"] = { 7950 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["obj"] = { + ["I"] = { 9316 }, + }, + ["pre"] = { 2931 }, + ["start"] = { + ["U"] = { 7950 }, + }, + }, + [2931] = { + ["end"] = { + ["U"] = { 7950 }, + }, + ["lvl"] = 28, + ["min"] = 25, + ["start"] = { + ["U"] = { 4077 }, + }, + }, + [2932] = { + ["end"] = { + ["U"] = { 2497 }, + }, + ["lvl"] = 42, + ["min"] = 35, + ["obj"] = { + ["I"] = { 9320 }, + ["O"] = { 142698, 142700 }, + }, + ["start"] = { + ["U"] = { 2497 }, + }, + }, + [2933] = { + ["end"] = { + ["U"] = { 2216 }, + }, + ["lvl"] = 43, + ["min"] = 40, + ["start"] = { + ["O"] = { + [1] = 142702, + [2] = 142703, + [3] = 142704, + [4] = 142705, + [5] = 142706, + [6] = 142707, + [7] = 142708, + [8] = 142710, + [9] = 142711, + [10] = 142712, + [11] = 142713, + [12] = 142714, + }, + }, + }, + [2934] = { + ["end"] = { + ["U"] = { 2216 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 9322 }, + }, + ["pre"] = { 2933 }, + ["start"] = { + ["U"] = { 2216 }, + }, + }, + [2935] = { + ["end"] = { + ["U"] = { 3188 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["pre"] = { 2934 }, + ["start"] = { + ["U"] = { 2216 }, + }, + }, + [2936] = { + ["end"] = { + ["O"] = { 142715 }, + ["U"] = { 3188 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["pre"] = { 2935 }, + ["start"] = { + ["U"] = { 3188 }, + }, + }, + [2937] = { + ["end"] = { + ["U"] = { 2216 }, + }, + ["lvl"] = 55, + ["min"] = 40, + ["obj"] = { + ["I"] = { 9324 }, + ["IR"] = { 9323 }, + }, + ["pre"] = { 2936 }, + ["start"] = { + ["U"] = { 3188 }, + }, + }, + [2938] = { + ["end"] = { + ["U"] = { 2055 }, + }, + ["lvl"] = 55, + ["min"] = 40, + ["pre"] = { 2937 }, + ["start"] = { + ["U"] = { 2216 }, + }, + }, + [2939] = { + ["end"] = { + ["U"] = { 7907 }, + }, + ["lvl"] = 47, + ["min"] = 42, + ["start"] = { + ["U"] = { 7764 }, + }, + }, + [2940] = { + ["end"] = { + ["U"] = { 7907 }, + }, + ["lvl"] = 47, + ["min"] = 42, + ["pre"] = { 2939 }, + ["start"] = { + ["O"] = { 142958 }, + }, + }, + [2941] = { + ["end"] = { + ["U"] = { 7763 }, + }, + ["lvl"] = 48, + ["min"] = 42, + ["pre"] = { 2940 }, + ["start"] = { + ["U"] = { 7907 }, + }, + }, + [2942] = { + ["end"] = { + ["U"] = { 7764 }, + }, + ["lvl"] = 50, + ["min"] = 42, + ["obj"] = { + ["I"] = { 9307 }, + }, + ["pre"] = { 2879 }, + ["start"] = { + ["O"] = { 144063 }, + }, + }, + [2943] = { + ["end"] = { + ["U"] = { 7764 }, + }, + ["lvl"] = 48, + ["min"] = 42, + ["pre"] = { 2944 }, + ["start"] = { + ["U"] = { 7907 }, + }, + }, + [2944] = { + ["end"] = { + ["U"] = { 7907 }, + }, + ["lvl"] = 48, + ["min"] = 42, + ["obj"] = { + ["I"] = { 9330 }, + ["IR"] = { 9328 }, + }, + ["pre"] = { 2941 }, + ["start"] = { + ["U"] = { 7763 }, + }, + }, + [2945] = { + ["end"] = { + ["O"] = { 142487 }, + }, + ["lvl"] = 34, + ["min"] = 28, + ["start"] = { + ["I"] = { 9326 }, + }, + }, + [2946] = { + ["end"] = { + ["O"] = { 142343 }, + }, + ["lvl"] = 50, + ["min"] = 45, + ["pre"] = { 2963 }, + ["start"] = { + ["U"] = { 2916 }, + }, + }, + [2947] = { + ["end"] = { + ["U"] = { 6826 }, + }, + ["lvl"] = 34, + ["min"] = 28, + ["pre"] = { 2945 }, + ["race"] = 77, + ["start"] = { + ["O"] = { 142487 }, + }, + }, + [2948] = { + ["end"] = { + ["U"] = { 6826 }, + }, + ["lvl"] = 35, + ["min"] = 28, + ["obj"] = { + ["I"] = { 1206, 2842 }, + }, + ["pre"] = { 2947 }, + ["start"] = { + ["U"] = { 6826 }, + }, + }, + [2949] = { + ["end"] = { + ["U"] = { 3412 }, + }, + ["lvl"] = 34, + ["min"] = 28, + ["pre"] = { 2945 }, + ["race"] = 178, + ["start"] = { + ["O"] = { 142487 }, + }, + }, + [2950] = { + ["end"] = { + ["U"] = { 3412 }, + }, + ["lvl"] = 35, + ["min"] = 28, + ["obj"] = { + ["I"] = { 1206, 2842 }, + }, + ["pre"] = { 2949 }, + ["start"] = { + ["U"] = { 3412 }, + }, + }, + [2951] = { + ["end"] = { + ["O"] = { 142487 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["obj"] = { + ["I"] = { 9308 }, + }, + ["start"] = { + ["O"] = { 142487 }, + }, + }, + [2952] = { + ["end"] = { + ["O"] = { 142487 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["pre"] = { 2951 }, + ["start"] = { + ["O"] = { 142487 }, + }, + }, + [2953] = { + ["end"] = { + ["O"] = { 142487 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["obj"] = { + ["I"] = { 9308 }, + }, + ["pre"] = { 2952 }, + ["start"] = { + ["O"] = { 142487 }, + }, + }, + [2954] = { + ["end"] = { + ["O"] = { 142343 }, + }, + ["lvl"] = 50, + ["min"] = 45, + ["start"] = { + ["U"] = { 7918 }, + }, + }, + [2962] = { + ["end"] = { + ["U"] = { 1268 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["obj"] = { + ["I"] = { 9365 }, + ["IR"] = { 9364 }, + }, + ["pre"] = { 2926 }, + ["start"] = { + ["U"] = { 1268 }, + }, + }, + [2963] = { + ["end"] = { + ["U"] = { 2916 }, + }, + ["lvl"] = 50, + ["min"] = 45, + ["pre"] = { 2439 }, + ["start"] = { + ["U"] = { 5387 }, + }, + }, + [2964] = { + ["end"] = { + ["U"] = { 5387 }, + }, + ["lvl"] = 50, + ["min"] = 45, + ["pre"] = { 2977 }, + ["start"] = { + ["U"] = { 2916 }, + }, + }, + [2965] = { + ["end"] = { + ["U"] = { 5770 }, + }, + ["lvl"] = 50, + ["min"] = 45, + ["pre"] = { 2440 }, + ["start"] = { + ["U"] = { 3978 }, + }, + }, + [2966] = { + ["end"] = { + ["O"] = { 142343 }, + }, + ["lvl"] = 50, + ["min"] = 45, + ["pre"] = { 2965 }, + ["start"] = { + ["U"] = { 5770 }, + }, + }, + [2967] = { + ["end"] = { + ["U"] = { 5770 }, + }, + ["lvl"] = 50, + ["min"] = 45, + ["pre"] = { 2954 }, + ["race"] = 178, + ["start"] = { + ["O"] = { 142343 }, + }, + }, + [2968] = { + ["end"] = { + ["U"] = { 3978 }, + }, + ["lvl"] = 50, + ["min"] = 45, + ["pre"] = { 2967 }, + ["start"] = { + ["U"] = { 5770 }, + }, + }, + [2969] = { + ["end"] = { + ["U"] = { 7956 }, + }, + ["lvl"] = 47, + ["min"] = 38, + ["start"] = { + ["U"] = { 7956 }, + }, + }, + [2970] = { + ["end"] = { + ["U"] = { 7957 }, + }, + ["lvl"] = 47, + ["min"] = 38, + ["obj"] = { + ["U"] = { 7725, 7726, 7727 }, + }, + ["pre"] = { 2969 }, + ["start"] = { + ["U"] = { 7957 }, + }, + }, + [2971] = { + ["lvl"] = 32, + ["min"] = 23, + }, + [2972] = { + ["end"] = { + ["U"] = { 7999 }, + }, + ["lvl"] = 47, + ["min"] = 38, + ["pre"] = { 2970 }, + ["start"] = { + ["U"] = { 7957 }, + }, + }, + [2973] = { + ["end"] = { + ["U"] = { 4544 }, + }, + ["lvl"] = 45, + ["min"] = 38, + ["obj"] = { + ["I"] = { 9369 }, + }, + ["start"] = { + ["U"] = { 4544 }, + }, + }, + [2974] = { + ["end"] = { + ["U"] = { 4544 }, + }, + ["lvl"] = 45, + ["min"] = 38, + ["obj"] = { + ["I"] = { 9460 }, + }, + ["pre"] = { 2973 }, + ["start"] = { + ["U"] = { 4544 }, + }, + }, + [2975] = { + ["end"] = { + ["U"] = { 7777 }, + }, + ["lvl"] = 43, + ["min"] = 38, + ["obj"] = { + ["U"] = { 5229, 5232, 5237 }, + }, + ["pre"] = { 2981 }, + ["start"] = { + ["U"] = { 7777 }, + }, + }, + [2976] = { + ["end"] = { + ["U"] = { 4485 }, + }, + ["lvl"] = 45, + ["min"] = 37, + ["pre"] = { 2974 }, + ["start"] = { + ["U"] = { 4544 }, + }, + }, + [2977] = { + ["end"] = { + ["U"] = { 2916 }, + }, + ["lvl"] = 50, + ["min"] = 45, + ["pre"] = { 2954 }, + ["race"] = 77, + ["start"] = { + ["O"] = { 142343 }, + }, + }, + [2978] = { + ["end"] = { + ["U"] = { 7777 }, + }, + ["lvl"] = 43, + ["min"] = 38, + ["start"] = { + ["I"] = { 9370 }, + }, + }, + [2979] = { + ["end"] = { + ["U"] = { 7777 }, + }, + ["lvl"] = 46, + ["min"] = 38, + ["obj"] = { + ["I"] = { 9371 }, + }, + ["pre"] = { 2978 }, + ["start"] = { + ["U"] = { 7777 }, + }, + }, + [2980] = { + ["end"] = { + ["U"] = { 7777 }, + }, + ["lvl"] = 44, + ["min"] = 38, + ["obj"] = { + ["U"] = { 5234, 5236, 5240 }, + }, + ["pre"] = { 2975 }, + ["start"] = { + ["U"] = { 7777 }, + }, + }, + [2981] = { + ["end"] = { + ["U"] = { 7777 }, + }, + ["lvl"] = 43, + ["min"] = 38, + ["start"] = { + ["U"] = { 4485 }, + }, + }, + [2982] = { + ["end"] = { + ["U"] = { 7900 }, + }, + ["lvl"] = 44, + ["min"] = 39, + ["obj"] = { + ["U"] = { 5232, 5236, 5240 }, + }, + ["start"] = { + ["U"] = { 7900 }, + }, + }, + [2983] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 5907 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["start"] = { + ["U"] = { 3173 }, + }, + }, + [2984] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 5907 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["start"] = { + ["U"] = { 3066 }, + }, + }, + [2985] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 5901 }, + }, + ["lvl"] = 20, + ["min"] = 20, + }, + [2986] = { + ["class"] = 64, + ["lvl"] = 20, + ["min"] = 20, + }, + [2987] = { + ["end"] = { + ["U"] = { 8021 }, + }, + ["lvl"] = 43, + ["min"] = 38, + ["obj"] = { + ["I"] = { 9463 }, + ["IR"] = { 9466 }, + }, + ["start"] = { + ["U"] = { 8021 }, + }, + }, + [2988] = { + ["end"] = { + ["U"] = { 5636 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["O"] = { 144066, 144067, 144068 }, + }, + ["start"] = { + ["U"] = { 5636 }, + }, + }, + [2989] = { + ["end"] = { + ["U"] = { 5636 }, + }, + ["lvl"] = 48, + ["min"] = 40, + ["obj"] = { + ["A"] = { 1205 }, + }, + ["pre"] = { 2988 }, + ["start"] = { + ["U"] = { 5636 }, + }, + }, + [2990] = { + ["end"] = { + ["U"] = { 8022 }, + }, + ["lvl"] = 47, + ["min"] = 40, + ["pre"] = { 2989 }, + ["start"] = { + ["U"] = { 5636 }, + }, + }, + [2991] = { + ["end"] = { + ["U"] = { 8022 }, + }, + ["lvl"] = 47, + ["min"] = 40, + ["obj"] = { + ["I"] = { 9471 }, + }, + ["pre"] = { 2990 }, + ["start"] = { + ["U"] = { 8022 }, + }, + }, + [2992] = { + ["end"] = { + ["U"] = { 8022 }, + }, + ["lvl"] = 47, + ["min"] = 40, + ["pre"] = { 2991 }, + ["start"] = { + ["U"] = { 8022 }, + }, + }, + [2993] = { + ["end"] = { + ["U"] = { 5636 }, + }, + ["lvl"] = 47, + ["min"] = 40, + ["pre"] = { 2992 }, + ["start"] = { + ["U"] = { 8022 }, + }, + }, + [2994] = { + ["end"] = { + ["U"] = { 5636 }, + }, + ["lvl"] = 51, + ["min"] = 40, + ["obj"] = { + ["I"] = { 9472 }, + ["IR"] = { 9472 }, + ["O"] = { 144070 }, + }, + ["pre"] = { 2993 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 5636 }, + }, + }, + [2995] = { + ["end"] = { + ["U"] = { 7825 }, + }, + ["lvl"] = 47, + ["min"] = 42, + ["obj"] = { + ["O"] = { 144071, 144072, 144073 }, + }, + ["start"] = { + ["U"] = { 7825 }, + }, + }, + [2996] = { + ["class"] = 256, + ["close"] = { 2996, 3001 }, + ["end"] = { + ["U"] = { 6251 }, + }, + ["lvl"] = 30, + ["min"] = 30, + ["start"] = { + ["U"] = { 5875 }, + }, + }, + [2997] = { + ["class"] = 2, + ["close"] = { 2997, 2999, 3000 }, + ["end"] = { + ["U"] = { 6179 }, + }, + ["lvl"] = 12, + ["min"] = 12, + ["race"] = 4, + ["start"] = { + ["U"] = { 1232 }, + }, + }, + [2998] = { + ["class"] = 2, + ["close"] = { 2998, 3681 }, + ["end"] = { + ["U"] = { 6171 }, + }, + ["lvl"] = 12, + ["min"] = 12, + ["race"] = 1, + ["start"] = { + ["U"] = { 927 }, + }, + }, + [2999] = { + ["class"] = 2, + ["close"] = { 2997, 2999, 3000 }, + ["end"] = { + ["U"] = { 6179 }, + }, + ["lvl"] = 12, + ["min"] = 12, + ["race"] = 4, + ["start"] = { + ["U"] = { 5149 }, + }, + }, + [3000] = { + ["class"] = 2, + ["close"] = { 2997, 2999, 3000 }, + ["end"] = { + ["U"] = { 6179 }, + }, + ["lvl"] = 12, + ["min"] = 12, + ["race"] = 4, + ["start"] = { + ["U"] = { 928 }, + }, + }, + [3001] = { + ["class"] = 256, + ["close"] = { 2996, 3001 }, + ["end"] = { + ["U"] = { 6251 }, + }, + ["lvl"] = 30, + ["min"] = 30, + ["start"] = { + ["U"] = { 5675 }, + }, + }, + [3002] = { + ["end"] = { + ["U"] = { 7311 }, + }, + ["lvl"] = 47, + ["min"] = 38, + ["pre"] = { 2979 }, + ["start"] = { + ["U"] = { 7777 }, + }, + }, + [3022] = { + ["end"] = { + ["U"] = { 7916 }, + }, + ["lvl"] = 47, + ["min"] = 42, + ["race"] = 77, + ["start"] = { + ["U"] = { 7763 }, + }, + }, + [3042] = { + ["end"] = { + ["U"] = { 7804 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 9523 }, + }, + ["start"] = { + ["U"] = { 7804 }, + }, + }, + [3062] = { + ["end"] = { + ["U"] = { 7776 }, + }, + ["lvl"] = 50, + ["min"] = 45, + ["obj"] = { + ["I"] = { 9528, 9530 }, + ["IR"] = { 9530 }, + }, + ["start"] = { + ["U"] = { 7776 }, + }, + }, + [3063] = { + ["end"] = { + ["U"] = { 7776 }, + }, + ["lvl"] = 50, + ["min"] = 45, + ["obj"] = { + ["U"] = { 5362, 5363, 5364, 5366 }, + }, + ["start"] = { + ["U"] = { 7776 }, + }, + }, + [3064] = { + ["lvl"] = 45, + ["min"] = 40, + }, + [3065] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 3153 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 788 }, + ["race"] = 128, + ["start"] = { + ["U"] = { 3143 }, + }, + }, + [3082] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 3154 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 788 }, + ["race"] = 128, + ["start"] = { + ["U"] = { 3143 }, + }, + }, + [3083] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 3155 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 788 }, + ["race"] = 128, + ["start"] = { + ["U"] = { 3143 }, + }, + }, + [3084] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 3157 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 788 }, + ["race"] = 128, + ["start"] = { + ["U"] = { 3143 }, + }, + }, + [3085] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 3707 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 788 }, + ["race"] = 128, + ["start"] = { + ["U"] = { 3143 }, + }, + }, + [3086] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 5884 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 788 }, + ["race"] = 128, + ["start"] = { + ["U"] = { 3143 }, + }, + }, + [3087] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 3154 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 788 }, + ["race"] = 2, + ["start"] = { + ["U"] = { 3143 }, + }, + }, + [3088] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 3155 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 788 }, + ["race"] = 2, + ["start"] = { + ["U"] = { 3143 }, + }, + }, + [3089] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 3157 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 788 }, + ["race"] = 2, + ["start"] = { + ["U"] = { 3143 }, + }, + }, + [3090] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 3156 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 788 }, + ["race"] = 2, + ["start"] = { + ["U"] = { 3143 }, + }, + }, + [3091] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 3059 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 747 }, + ["race"] = 32, + ["start"] = { + ["U"] = { 2980 }, + }, + }, + [3092] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 3061 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 747 }, + ["race"] = 32, + ["start"] = { + ["U"] = { 2980 }, + }, + }, + [3093] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 3062 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 747 }, + ["race"] = 32, + ["start"] = { + ["U"] = { 2980 }, + }, + }, + [3094] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 3060 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 747 }, + ["race"] = 32, + ["start"] = { + ["U"] = { 2980 }, + }, + }, + [3095] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 2119 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 364 }, + ["race"] = 16, + ["start"] = { + ["U"] = { 1569 }, + }, + }, + [3096] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 2122 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 364 }, + ["race"] = 16, + ["start"] = { + ["U"] = { 1569 }, + }, + }, + [3097] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 2123 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 364 }, + ["race"] = 16, + ["start"] = { + ["U"] = { 1569 }, + }, + }, + [3098] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 2124 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 364 }, + ["race"] = 16, + ["start"] = { + ["U"] = { 1569 }, + }, + }, + [3099] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 2126 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 364 }, + ["race"] = 16, + ["start"] = { + ["U"] = { 1569 }, + }, + }, + [3100] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 911 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 7 }, + ["race"] = 1, + ["start"] = { + ["U"] = { 197 }, + }, + }, + [3101] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 925 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 7 }, + ["race"] = 1, + ["start"] = { + ["U"] = { 197 }, + }, + }, + [3102] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 915 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 7 }, + ["race"] = 1, + ["start"] = { + ["U"] = { 197 }, + }, + }, + [3103] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 375 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 7 }, + ["race"] = 1, + ["start"] = { + ["U"] = { 197 }, + }, + }, + [3104] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 198 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 7 }, + ["race"] = 1, + ["start"] = { + ["U"] = { 197 }, + }, + }, + [3105] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 459 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 7 }, + ["race"] = 1, + ["start"] = { + ["U"] = { 197 }, + }, + }, + [3106] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 912 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 179 }, + ["race"] = 4, + ["start"] = { + ["U"] = { 658 }, + }, + }, + [3107] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 926 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 179 }, + ["race"] = 4, + ["start"] = { + ["U"] = { 658 }, + }, + }, + [3108] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 895 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 179 }, + ["race"] = 4, + ["start"] = { + ["U"] = { 658 }, + }, + }, + [3109] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 916 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 179 }, + ["race"] = 4, + ["start"] = { + ["U"] = { 658 }, + }, + }, + [3110] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 837 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 179 }, + ["race"] = 4, + ["start"] = { + ["U"] = { 658 }, + }, + }, + [3111] = { + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 170 }, + ["race"] = 4, + ["start"] = { + ["I"] = { 9572 }, + }, + }, + [3112] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 912 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 179 }, + ["race"] = 64, + ["start"] = { + ["U"] = { 658 }, + }, + }, + [3113] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 916 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 179 }, + ["race"] = 64, + ["start"] = { + ["U"] = { 658 }, + }, + }, + [3114] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 944 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 179 }, + ["race"] = 64, + ["start"] = { + ["U"] = { 658 }, + }, + }, + [3115] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 460 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 179 }, + ["race"] = 64, + ["start"] = { + ["U"] = { 658 }, + }, + }, + [3116] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 3593 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 456 }, + ["race"] = 8, + ["start"] = { + ["U"] = { 2079 }, + }, + }, + [3117] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 3596 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 456 }, + ["race"] = 8, + ["start"] = { + ["U"] = { 2079 }, + }, + }, + [3118] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 3594 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 456 }, + ["race"] = 8, + ["start"] = { + ["U"] = { 2079 }, + }, + }, + [3119] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 3595 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 456 }, + ["race"] = 8, + ["start"] = { + ["U"] = { 2079 }, + }, + }, + [3120] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 3597 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 456 }, + ["race"] = 8, + ["start"] = { + ["U"] = { 2079 }, + }, + }, + [3121] = { + ["end"] = { + ["U"] = { 3216 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["start"] = { + ["U"] = { 8115 }, + }, + }, + [3122] = { + ["end"] = { + ["U"] = { 8115 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["pre"] = { 3121 }, + ["start"] = { + ["U"] = { 3216 }, + }, + }, + [3123] = { + ["end"] = { + ["U"] = { 8115 }, + }, + ["lvl"] = 47, + ["min"] = 40, + ["obj"] = { + ["I"] = { 9594 }, + ["IR"] = { 9618 }, + }, + ["pre"] = { 3122 }, + ["start"] = { + ["U"] = { 8115 }, + }, + }, + [3124] = { + ["end"] = { + ["U"] = { 8115 }, + }, + ["lvl"] = 47, + ["min"] = 40, + ["obj"] = { + ["I"] = { 9595 }, + ["IR"] = { 9619 }, + }, + ["pre"] = { 3123 }, + ["start"] = { + ["U"] = { 8115 }, + }, + }, + [3125] = { + ["end"] = { + ["U"] = { 8115 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 9596 }, + ["IR"] = { 9620 }, + }, + ["pre"] = { 3124 }, + ["start"] = { + ["U"] = { 8115 }, + }, + }, + [3126] = { + ["end"] = { + ["U"] = { 8115 }, + }, + ["lvl"] = 50, + ["min"] = 40, + ["obj"] = { + ["I"] = { 9593 }, + ["IR"] = { 9606 }, + }, + ["pre"] = { 3125 }, + ["start"] = { + ["U"] = { 8115 }, + }, + }, + [3127] = { + ["end"] = { + ["U"] = { 8115 }, + }, + ["lvl"] = 50, + ["min"] = 40, + ["obj"] = { + ["I"] = { 9597 }, + ["IR"] = { 9621 }, + }, + ["pre"] = { 3126 }, + ["start"] = { + ["U"] = { 8115 }, + }, + }, + [3128] = { + ["end"] = { + ["U"] = { 8115 }, + }, + ["lvl"] = 50, + ["min"] = 40, + ["obj"] = { + ["I"] = { 9589, 9590, 9591, 9592 }, + }, + ["pre"] = { 3122 }, + ["start"] = { + ["U"] = { 8115 }, + }, + }, + [3129] = { + ["end"] = { + ["U"] = { 8115 }, + }, + ["lvl"] = 50, + ["min"] = 40, + ["pre"] = { 3127, 3128 }, + ["start"] = { + ["U"] = { 8115 }, + }, + }, + [3130] = { + ["end"] = { + ["U"] = { 7877 }, + }, + ["lvl"] = 43, + ["min"] = 40, + ["pre"] = { 2867 }, + ["start"] = { + ["U"] = { 3936 }, + }, + }, + [3141] = { + ["end"] = { + ["U"] = { 7783 }, + }, + ["lvl"] = 57, + ["min"] = 45, + ["pre"] = { 2744 }, + ["start"] = { + ["U"] = { 7783 }, + }, + }, + [3161] = { + ["end"] = { + ["U"] = { 7771 }, + }, + ["lvl"] = 48, + ["min"] = 43, + ["obj"] = { + ["I"] = { 8443 }, + }, + ["start"] = { + ["U"] = { 7771 }, + }, + }, + [3181] = { + ["end"] = { + ["U"] = { 3836 }, + }, + ["lvl"] = 48, + ["min"] = 40, + ["race"] = 77, + ["start"] = { + ["I"] = { 10000 }, + }, + }, + [3182] = { + ["end"] = { + ["U"] = { 8256 }, + }, + ["lvl"] = 48, + ["min"] = 40, + ["pre"] = { 3181 }, + ["start"] = { + ["U"] = { 3836 }, + }, + }, + [3201] = { + ["end"] = { + ["U"] = { 3836 }, + }, + ["lvl"] = 48, + ["min"] = 40, + ["pre"] = { 3182 }, + ["start"] = { + ["U"] = { 8256 }, + }, + }, + [3221] = { + ["end"] = { + ["U"] = { 1937 }, + }, + ["lvl"] = 12, + ["min"] = 10, + ["pre"] = { 449 }, + ["start"] = { + ["U"] = { 1952 }, + }, + }, + [3241] = { + ["lvl"] = 11, + ["min"] = 8, + }, + [3261] = { + ["end"] = { + ["U"] = { 3387 }, + }, + ["lvl"] = 18, + ["min"] = 10, + ["pre"] = { 905 }, + ["start"] = { + ["U"] = { 3338 }, + }, + }, + [3281] = { + ["end"] = { + ["U"] = { 3464 }, + }, + ["lvl"] = 18, + ["min"] = 9, + ["obj"] = { + ["I"] = { 5061 }, + }, + ["pre"] = { 869 }, + ["start"] = { + ["U"] = { 3464 }, + }, + }, + [3301] = { + ["end"] = { + ["U"] = { 8385 }, + }, + ["lvl"] = 15, + ["min"] = 10, + ["pre"] = { 880 }, + ["start"] = { + ["U"] = { 3448 }, + }, + }, + [3321] = { + ["end"] = { + ["U"] = { 7804 }, + }, + ["lvl"] = 50, + ["min"] = 40, + ["pre"] = { 2771, 2772, 2773 }, + ["skill"] = 164, + ["start"] = { + ["U"] = { 7804 }, + }, + }, + [3341] = { + ["end"] = { + ["U"] = { 2308 }, + }, + ["lvl"] = 42, + ["min"] = 37, + ["obj"] = { + ["I"] = { 10420 }, + }, + ["start"] = { + ["U"] = { 2308 }, + }, + }, + [3361] = { + ["end"] = { + ["U"] = { 8416 }, + }, + ["lvl"] = 3, + ["min"] = 3, + ["obj"] = { + ["I"] = { 10438, 16313, 16314 }, + }, + ["start"] = { + ["U"] = { 8416 }, + }, + }, + [3362] = { + ["end"] = { + ["U"] = { 7876 }, + }, + ["lvl"] = 50, + ["min"] = 45, + ["obj"] = { + ["U"] = { 5485, 5490 }, + }, + ["start"] = { + ["U"] = { 7876 }, + }, + }, + [3363] = { + ["end"] = { + ["O"] = { 174595 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11516 }, + }, + ["start"] = { + ["O"] = { 174595 }, + }, + }, + [3364] = { + ["end"] = { + ["U"] = { 836 }, + }, + ["lvl"] = 5, + ["min"] = 4, + ["start"] = { + ["U"] = { 12738 }, + }, + }, + [3365] = { + ["end"] = { + ["U"] = { 12738 }, + }, + ["lvl"] = 5, + ["min"] = 4, + ["pre"] = { 3364 }, + ["start"] = { + ["U"] = { 836 }, + }, + }, + [3366] = { + ["end"] = { + ["U"] = { 8418 }, + }, + ["lvl"] = 25, + ["min"] = 15, + }, + [3367] = { + ["end"] = { + ["O"] = { 175704 }, + }, + ["lvl"] = 48, + ["min"] = 40, + ["race"] = 77, + ["start"] = { + ["U"] = { 8284 }, + }, + }, + [3368] = { + ["end"] = { + ["U"] = { 8256 }, + }, + ["lvl"] = 48, + ["min"] = 40, + ["pre"] = { 3367 }, + ["start"] = { + ["O"] = { 175704 }, + }, + }, + [3369] = { + ["end"] = { + ["U"] = { 5769 }, + }, + ["lvl"] = 25, + ["min"] = 10, + ["pre"] = { 6981 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 8418 }, + }, + }, + [3370] = { + ["end"] = { + ["U"] = { 4217 }, + }, + ["lvl"] = 25, + ["min"] = 10, + ["pre"] = { 6981 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 8418 }, + }, + }, + [3371] = { + ["end"] = { + ["U"] = { 8417 }, + }, + ["lvl"] = 55, + ["min"] = 40, + ["pre"] = { 3368 }, + ["start"] = { + ["U"] = { 8256 }, + }, + }, + [3372] = { + ["end"] = { + ["O"] = { 148498 }, + }, + ["lvl"] = 52, + ["min"] = 40, + ["obj"] = { + ["I"] = { 10442 }, + }, + ["pre"] = { 3371 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 8417 }, + }, + }, + [3373] = { + ["end"] = { + ["O"] = { 148512 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["start"] = { + ["I"] = { 10454, 10454 }, + }, + }, + [3374] = { + ["end"] = { + ["U"] = { 5353 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 10455 }, + }, + ["pre"] = { 3373 }, + ["start"] = { + ["I"] = { 10589 }, + }, + }, + [3375] = { + ["end"] = { + ["U"] = { 6826 }, + }, + ["lvl"] = 42, + ["min"] = 37, + ["obj"] = { + ["I"] = { 1708, 3827, 3857 }, + }, + ["pre"] = { 2201 }, + ["start"] = { + ["U"] = { 6826 }, + }, + }, + [3376] = { + ["end"] = { + ["U"] = { 3209 }, + }, + ["lvl"] = 5, + ["min"] = 3, + ["obj"] = { + ["I"] = { 10459 }, + }, + ["start"] = { + ["U"] = { 3209 }, + }, + }, + [3377] = { + ["end"] = { + ["U"] = { 8436 }, + }, + ["lvl"] = 50, + ["min"] = 40, + ["start"] = { + ["U"] = { 8436 }, + }, + }, + [3378] = { + ["end"] = { + ["U"] = { 4090 }, + }, + ["lvl"] = 50, + ["min"] = 40, + ["obj"] = { + ["I"] = { 10458 }, + }, + ["pre"] = { 3377 }, + ["start"] = { + ["U"] = { 8436 }, + }, + }, + [3379] = { + ["end"] = { + ["U"] = { 8439 }, + }, + ["lvl"] = 50, + ["min"] = 40, + ["obj"] = { + ["U"] = { 8442 }, + }, + ["skill"] = 197, + ["start"] = { + ["U"] = { 8439 }, + }, + }, + [3380] = { + ["end"] = { + ["U"] = { 7771 }, + }, + ["lvl"] = 51, + ["min"] = 46, + ["start"] = { + ["U"] = { 8115 }, + }, + }, + [3381] = { + ["end"] = { + ["U"] = { 8395 }, + }, + ["lvl"] = 48, + ["min"] = 45, + ["obj"] = { + ["I"] = { 10450 }, + }, + ["start"] = { + ["U"] = { 8395 }, + }, + }, + [3382] = { + ["end"] = { + ["U"] = { 8380 }, + }, + ["lvl"] = 57, + ["min"] = 48, + ["start"] = { + ["U"] = { 8380 }, + }, + }, + [3383] = { + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["U"] = { 8387, 8388, 8389, 8394 }, + }, + }, + [3384] = { + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 10478 }, + }, + }, + [3385] = { + ["end"] = { + ["U"] = { 8439 }, + }, + ["lvl"] = 50, + ["min"] = 40, + ["obj"] = { + ["I"] = { 10467 }, + ["U"] = { 8444, 8447 }, + }, + ["pre"] = { 3379 }, + ["skill"] = 197, + ["start"] = { + ["U"] = { 8439 }, + }, + }, + [3401] = { + ["lvl"] = 48, + ["min"] = 53, + }, + [3402] = { + ["end"] = { + ["U"] = { 6568 }, + }, + ["lvl"] = 50, + ["min"] = 40, + ["pre"] = { 3385 }, + ["skill"] = 197, + ["start"] = { + ["U"] = { 8439 }, + }, + }, + [3403] = { + ["lvl"] = 48, + ["min"] = 53, + }, + [3404] = { + ["lvl"] = 48, + ["min"] = 53, + }, + [3405] = { + ["lvl"] = 48, + ["min"] = 55, + }, + [3421] = { + ["end"] = { + ["U"] = { 8399 }, + }, + ["lvl"] = 55, + ["min"] = 45, + ["start"] = { + ["U"] = { 8399 }, + }, + }, + [3422] = { + ["lvl"] = 45, + ["min"] = 45, + }, + [3423] = { + ["lvl"] = 45, + ["min"] = 45, + }, + [3424] = { + ["lvl"] = 45, + ["min"] = 45, + }, + [3425] = { + ["lvl"] = 48, + ["min"] = 48, + }, + [3441] = { + ["end"] = { + ["U"] = { 8479 }, + }, + ["lvl"] = 48, + ["min"] = 40, + ["start"] = { + ["U"] = { 8479 }, + }, + }, + [3442] = { + ["end"] = { + ["U"] = { 8479 }, + }, + ["lvl"] = 48, + ["min"] = 40, + ["obj"] = { + ["I"] = { 10509, 10511 }, + }, + ["pre"] = { 3441 }, + ["start"] = { + ["U"] = { 8479 }, + }, + }, + [3443] = { + ["end"] = { + ["U"] = { 8479 }, + }, + ["lvl"] = 48, + ["min"] = 40, + ["obj"] = { + ["I"] = { 10551 }, + }, + ["pre"] = { 3442 }, + ["start"] = { + ["U"] = { 8479 }, + }, + }, + [3444] = { + ["end"] = { + ["U"] = { 7771 }, + }, + ["lvl"] = 51, + ["min"] = 46, + ["obj"] = { + ["I"] = { 10556 }, + }, + ["pre"] = { 3380, 3445 }, + ["start"] = { + ["U"] = { 7771 }, + }, + }, + [3445] = { + ["end"] = { + ["U"] = { 7771 }, + }, + ["lvl"] = 51, + ["min"] = 46, + ["start"] = { + ["U"] = { 7900 }, + }, + }, + [3446] = { + ["end"] = { + ["O"] = { 148836 }, + }, + ["lvl"] = 51, + ["min"] = 46, + ["pre"] = { 3444 }, + ["start"] = { + ["U"] = { 7771 }, + }, + }, + [3447] = { + ["end"] = { + ["O"] = { 148838 }, + }, + ["lvl"] = 51, + ["min"] = 46, + ["pre"] = { 3444 }, + ["start"] = { + ["U"] = { 7771 }, + }, + }, + [3448] = { + ["end"] = { + ["U"] = { 8507 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["start"] = { + ["U"] = { 2916 }, + }, + }, + [3449] = { + ["end"] = { + ["U"] = { 8392 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["obj"] = { + ["I"] = { 10563, 10564, 10565, 10566 }, + }, + ["pre"] = { 3448 }, + ["start"] = { + ["U"] = { 8507 }, + }, + }, + [3450] = { + ["end"] = { + ["U"] = { 8517 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["pre"] = { 3448 }, + ["start"] = { + ["U"] = { 8507 }, + }, + }, + [3451] = { + ["end"] = { + ["U"] = { 8517 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["pre"] = { 3450 }, + ["start"] = { + ["U"] = { 8517 }, + }, + }, + [3452] = { + ["end"] = { + ["U"] = { 8479 }, + }, + ["lvl"] = 50, + ["min"] = 40, + ["obj"] = { + ["I"] = { 10552 }, + }, + ["pre"] = { 3443 }, + ["start"] = { + ["U"] = { 8479 }, + }, + }, + [3453] = { + ["end"] = { + ["U"] = { 8479 }, + }, + ["lvl"] = 50, + ["min"] = 40, + ["pre"] = { 3452 }, + ["start"] = { + ["U"] = { 8479 }, + }, + }, + [3454] = { + ["end"] = { + ["O"] = { 149047 }, + }, + ["lvl"] = 50, + ["min"] = 40, + ["pre"] = { 3453 }, + ["start"] = { + ["U"] = { 8479 }, + }, + }, + [3461] = { + ["end"] = { + ["U"] = { 8507 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["pre"] = { 3449 }, + ["start"] = { + ["U"] = { 8392 }, + }, + }, + [3462] = { + ["end"] = { + ["U"] = { 8509 }, + }, + ["lvl"] = 50, + ["min"] = 40, + ["pre"] = { 3454 }, + ["start"] = { + ["U"] = { 8479 }, + }, + }, + [3463] = { + ["end"] = { + ["U"] = { 8509 }, + }, + ["lvl"] = 52, + ["min"] = 40, + ["obj"] = { + ["IR"] = { 10515 }, + ["O"] = { 149025, 149030, 149031, 149032 }, + }, + ["pre"] = { 3462 }, + ["start"] = { + ["U"] = { 8509 }, + }, + }, + [3481] = { + ["end"] = { + ["O"] = { 149502 }, + }, + ["lvl"] = 50, + ["min"] = 40, + ["pre"] = { 3463 }, + ["start"] = { + ["O"] = { 149502 }, + }, + }, + [3482] = { + ["lvl"] = 35, + ["min"] = 30, + ["start"] = { + ["I"] = { 10590 }, + }, + }, + [3483] = { + ["end"] = { + ["U"] = { 8517 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["pre"] = { 3451 }, + ["start"] = { + ["U"] = { 8517 }, + }, + }, + [3501] = { + ["end"] = { + ["U"] = { 7363 }, + }, + ["lvl"] = 55, + ["min"] = 45, + ["obj"] = { + ["I"] = { 10593 }, + }, + ["start"] = { + ["U"] = { 7363 }, + }, + }, + [3502] = { + ["end"] = { + ["U"] = { 7363 }, + }, + ["lvl"] = 55, + ["min"] = 45, + ["obj"] = { + ["I"] = { 10593 }, + }, + ["pre"] = { 3501 }, + ["start"] = { + ["U"] = { 7363 }, + }, + }, + [3503] = { + ["end"] = { + ["U"] = { 8395 }, + }, + ["lvl"] = 55, + ["min"] = 45, + ["pre"] = { 3381 }, + ["start"] = { + ["U"] = { 8395 }, + }, + }, + [3504] = { + ["end"] = { + ["U"] = { 8576 }, + }, + ["lvl"] = 53, + ["min"] = 44, + ["start"] = { + ["U"] = { 4485 }, + }, + }, + [3505] = { + ["end"] = { + ["O"] = { 151286 }, + }, + ["lvl"] = 53, + ["min"] = 44, + ["obj"] = { + ["A"] = { 1387 }, + ["U"] = { 6198, 6199 }, + }, + ["pre"] = { 3504 }, + ["start"] = { + ["U"] = { 8576 }, + }, + }, + [3506] = { + ["end"] = { + ["U"] = { 8576 }, + }, + ["lvl"] = 56, + ["min"] = 44, + ["obj"] = { + ["I"] = { 10597 }, + }, + ["pre"] = { 3505 }, + ["start"] = { + ["O"] = { 151286 }, + }, + }, + [3507] = { + ["end"] = { + ["U"] = { 4485 }, + }, + ["lvl"] = 56, + ["min"] = 44, + ["pre"] = { 3506 }, + ["start"] = { + ["U"] = { 8576 }, + }, + }, + [3508] = { + ["end"] = { + ["U"] = { 7783 }, + }, + ["lvl"] = 58, + ["min"] = 45, + ["pre"] = { 3141 }, + ["start"] = { + ["U"] = { 7783 }, + }, + }, + [3509] = { + ["end"] = { + ["U"] = { 6134 }, + }, + ["lvl"] = 58, + ["min"] = 45, + ["pre"] = { 3508 }, + ["start"] = { + ["U"] = { 7783 }, + }, + }, + [3510] = { + ["end"] = { + ["U"] = { 6134 }, + }, + ["lvl"] = 58, + ["min"] = 45, + ["obj"] = { + ["I"] = { 10598, 10599, 10600 }, + }, + ["pre"] = { 3509 }, + ["start"] = { + ["U"] = { 6134 }, + }, + }, + [3511] = { + ["end"] = { + ["U"] = { 7783 }, + }, + ["lvl"] = 58, + ["min"] = 45, + ["pre"] = { 3510 }, + ["start"] = { + ["U"] = { 6134 }, + }, + }, + [3512] = { + ["end"] = { + ["U"] = { 8588 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["pre"] = { 3374 }, + ["start"] = { + ["U"] = { 5353 }, + }, + }, + [3513] = { + ["end"] = { + ["U"] = { 8582 }, + }, + ["lvl"] = 25, + ["min"] = 15, + ["start"] = { + ["I"] = { 10621 }, + }, + }, + [3514] = { + ["end"] = { + ["U"] = { 8582 }, + }, + ["lvl"] = 29, + ["min"] = 15, + ["obj"] = { + ["IR"] = { 10622 }, + ["U"] = { 8518 }, + }, + ["pre"] = { 3513 }, + ["start"] = { + ["U"] = { 8582 }, + }, + }, + [3515] = { + ["lvl"] = 42, + ["min"] = 45, + }, + [3516] = { + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 3515 }, + }, + [3517] = { + ["end"] = { + ["U"] = { 8587 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["obj"] = { + ["I"] = { 10538, 10539, 10540, 10541 }, + }, + ["start"] = { + ["U"] = { 8587 }, + }, + }, + [3518] = { + ["end"] = { + ["U"] = { 4046 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["pre"] = { 3517 }, + ["start"] = { + ["U"] = { 8587 }, + }, + }, + [3519] = { + ["end"] = { + ["U"] = { 8583 }, + }, + ["lvl"] = 4, + ["min"] = 2, + ["pre"] = { 4495 }, + ["start"] = { + ["U"] = { 8584 }, + }, + }, + [3520] = { + ["end"] = { + ["U"] = { 8579 }, + }, + ["lvl"] = 44, + ["min"] = 40, + ["obj"] = { + ["IR"] = { 10699 }, + ["U"] = { 8612 }, + }, + ["start"] = { + ["U"] = { 8579 }, + }, + }, + [3521] = { + ["end"] = { + ["U"] = { 8583 }, + }, + ["lvl"] = 4, + ["min"] = 2, + ["obj"] = { + ["I"] = { 10639, 10640, 10641 }, + }, + ["pre"] = { 3519 }, + ["start"] = { + ["U"] = { 8583 }, + }, + }, + [3522] = { + ["end"] = { + ["U"] = { 8584 }, + }, + ["lvl"] = 4, + ["min"] = 2, + ["pre"] = { 3521 }, + ["start"] = { + ["U"] = { 8583 }, + }, + }, + [3523] = { + ["end"] = { + ["U"] = { 8516 }, + }, + ["lvl"] = 37, + ["min"] = 32, + ["start"] = { + ["U"] = { 8516 }, + }, + }, + [3524] = { + ["end"] = { + ["U"] = { 10219 }, + }, + ["lvl"] = 13, + ["min"] = 11, + ["obj"] = { + ["I"] = { 12242 }, + }, + ["start"] = { + ["U"] = { 10219 }, + }, + }, + [3525] = { + ["end"] = { + ["O"] = { 152097 }, + ["U"] = { 8516 }, + }, + ["lvl"] = 37, + ["min"] = 32, + ["pre"] = { 3523 }, + ["start"] = { + ["O"] = { 152097 }, + ["U"] = { 8516 }, + }, + }, + [3526] = { + ["close"] = { 3526, 3629, 3630, 3632, 3633, 3634, 3635, 3637, 4181 }, + ["end"] = { + ["U"] = { 8126 }, + }, + ["lvl"] = 47, + ["min"] = 30, + ["skill"] = 202, + ["start"] = { + ["U"] = { 4586 }, + }, + }, + [3527] = { + ["end"] = { + ["U"] = { 8579 }, + }, + ["lvl"] = 47, + ["min"] = 40, + ["obj"] = { + ["I"] = { 10660, 10661 }, + }, + ["pre"] = { 3520 }, + ["start"] = { + ["U"] = { 8579 }, + }, + }, + [3528] = { + ["end"] = { + ["U"] = { 8579 }, + }, + ["lvl"] = 53, + ["min"] = 40, + ["obj"] = { + ["I"] = { 10662, 10663 }, + ["IR"] = { 10465 }, + }, + ["pre"] = { 4787 }, + ["start"] = { + ["U"] = { 8579 }, + }, + }, + [3529] = { + ["lvl"] = 52, + ["min"] = 45, + }, + [3541] = { + ["end"] = { + ["U"] = { 8659 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["pre"] = { 3517 }, + ["start"] = { + ["U"] = { 8587 }, + }, + }, + [3542] = { + ["end"] = { + ["U"] = { 6522 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["pre"] = { 3517 }, + ["start"] = { + ["U"] = { 8587 }, + }, + }, + [3561] = { + ["end"] = { + ["U"] = { 8379 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["pre"] = { 3517 }, + ["start"] = { + ["U"] = { 8587 }, + }, + }, + [3562] = { + ["end"] = { + ["U"] = { 8587 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["pre"] = { 3518 }, + ["start"] = { + ["U"] = { 4046 }, + }, + }, + [3563] = { + ["end"] = { + ["U"] = { 8587 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["pre"] = { 3541 }, + ["start"] = { + ["U"] = { 8659 }, + }, + }, + [3564] = { + ["end"] = { + ["U"] = { 8587 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["pre"] = { 3542 }, + ["start"] = { + ["U"] = { 6522 }, + }, + }, + [3565] = { + ["end"] = { + ["U"] = { 8587 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["pre"] = { 3561 }, + ["start"] = { + ["U"] = { 8379 }, + }, + }, + [3566] = { + ["end"] = { + ["U"] = { 8256 }, + }, + ["lvl"] = 52, + ["min"] = 40, + ["obj"] = { + ["I"] = { 10446, 10447 }, + }, + ["pre"] = { 3372 }, + ["start"] = { + ["U"] = { 8417 }, + }, + }, + [3567] = { + ["end"] = { + ["U"] = { 7773 }, + }, + ["lvl"] = 25, + ["min"] = 25, + ["start"] = { + ["U"] = { 7773 }, + }, + }, + [3568] = { + ["end"] = { + ["U"] = { 8390 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["obj"] = { + ["I"] = { 10691, 10692, 10693, 10694 }, + }, + ["start"] = { + ["U"] = { 8390 }, + }, + }, + [3569] = { + ["end"] = { + ["U"] = { 8393 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["pre"] = { 3568 }, + ["start"] = { + ["U"] = { 8390 }, + }, + }, + [3570] = { + ["end"] = { + ["U"] = { 8390 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["pre"] = { 3569 }, + ["start"] = { + ["U"] = { 8390 }, + }, + }, + [3581] = { + ["lvl"] = 60, + ["min"] = 45, + ["race"] = 178, + }, + [3601] = { + ["end"] = { + ["U"] = { 8420 }, + }, + ["lvl"] = 53, + ["min"] = 47, + ["obj"] = { + ["I"] = { 10715, 10717, 10718, 10722 }, + }, + ["start"] = { + ["U"] = { 8420 }, + }, + }, + [3602] = { + ["end"] = { + ["U"] = { 7783 }, + }, + ["lvl"] = 58, + ["min"] = 45, + ["obj"] = { + ["I"] = { 10714, 10839, 10840 }, + }, + ["pre"] = { 3511 }, + ["start"] = { + ["U"] = { 7783 }, + }, + }, + [3621] = { + ["end"] = { + ["U"] = { 7802 }, + }, + ["lvl"] = 58, + ["min"] = 45, + ["pre"] = { 3602 }, + ["start"] = { + ["U"] = { 7783 }, + }, + }, + [3622] = { + ["lvl"] = 41, + ["min"] = 41, + }, + [3625] = { + ["end"] = { + ["U"] = { 7802 }, + }, + ["lvl"] = 58, + ["min"] = 45, + ["pre"] = { 3621 }, + ["start"] = { + ["U"] = { 7802 }, + }, + }, + [3626] = { + ["end"] = { + ["U"] = { 7572 }, + }, + ["lvl"] = 58, + ["min"] = 45, + ["pre"] = { 3625 }, + ["start"] = { + ["U"] = { 7802 }, + }, + }, + [3627] = { + ["end"] = { + ["U"] = { 7572 }, + }, + ["lvl"] = 60, + ["min"] = 45, + ["obj"] = { + ["I"] = { 10753, 10754, 10755 }, + }, + ["pre"] = { 3626 }, + ["start"] = { + ["U"] = { 7572 }, + }, + }, + [3628] = { + ["end"] = { + ["U"] = { 7572 }, + }, + ["lvl"] = 60, + ["min"] = 45, + ["obj"] = { + ["I"] = { 10759 }, + ["IR"] = { 10757 }, + }, + ["pre"] = { 3627 }, + ["start"] = { + ["U"] = { 7572 }, + }, + }, + [3629] = { + ["close"] = { 3526, 3629, 3630, 3632, 3633, 3634, 3635, 3637, 4181 }, + ["end"] = { + ["U"] = { 8126 }, + }, + ["lvl"] = 47, + ["min"] = 30, + ["skill"] = 202, + ["start"] = { + ["U"] = { 5174 }, + }, + }, + [3630] = { + ["close"] = { 3526, 3629, 3630, 3632, 3633, 3634, 3635, 3637, 4181 }, + ["end"] = { + ["U"] = { 7944 }, + }, + ["lvl"] = 47, + ["min"] = 30, + ["skill"] = 202, + ["start"] = { + ["U"] = { 5518 }, + }, + }, + [3631] = { + ["class"] = 256, + ["close"] = { 3631, 4487, 4488, 4489 }, + ["end"] = { + ["U"] = { 6251 }, + }, + ["lvl"] = 40, + ["min"] = 40, + ["start"] = { + ["U"] = { 3326 }, + }, + }, + [3632] = { + ["close"] = { 3526, 3629, 3630, 3632, 3633, 3634, 3635, 3637, 4181 }, + ["end"] = { + ["U"] = { 7944 }, + }, + ["lvl"] = 47, + ["min"] = 30, + ["skill"] = 202, + ["start"] = { + ["U"] = { 5174 }, + }, + }, + [3633] = { + ["close"] = { 3526, 3629, 3630, 3632, 3633, 3634, 3635, 3637, 4181 }, + ["end"] = { + ["U"] = { 8126 }, + }, + ["lvl"] = 47, + ["min"] = 30, + ["skill"] = 202, + ["start"] = { + ["U"] = { 3494 }, + }, + }, + [3634] = { + ["close"] = { 3526, 3629, 3630, 3632, 3633, 3634, 3635, 3637, 4181 }, + ["end"] = { + ["U"] = { 7944 }, + }, + ["lvl"] = 47, + ["min"] = 30, + ["race"] = 77, + ["skill"] = 202, + ["start"] = { + ["U"] = { 3494 }, + }, + }, + [3635] = { + ["close"] = { 3526, 3629, 3630, 3632, 3633, 3634, 3635, 3637, 4181 }, + ["end"] = { + ["U"] = { 7406 }, + }, + ["lvl"] = 47, + ["min"] = 30, + ["skill"] = 202, + ["start"] = { + ["U"] = { 4586 }, + }, + }, + [3636] = { + ["end"] = { + ["U"] = { 1284 }, + }, + ["lvl"] = 42, + ["min"] = 39, + ["obj"] = { + ["U"] = { 7358 }, + }, + ["start"] = { + ["U"] = { 1284 }, + }, + }, + [3637] = { + ["close"] = { 3526, 3629, 3630, 3632, 3633, 3634, 3635, 3637, 4181 }, + ["end"] = { + ["U"] = { 7406 }, + }, + ["lvl"] = 47, + ["min"] = 30, + ["race"] = 178, + ["skill"] = 202, + ["start"] = { + ["U"] = { 3494 }, + }, + }, + [3638] = { + ["close"] = { 3638, 3640, 3642 }, + ["end"] = { + ["U"] = { 8126 }, + }, + ["lvl"] = 47, + ["min"] = 30, + ["obj"] = { + ["I"] = { 11270 }, + }, + ["skill"] = 202, + ["start"] = { + ["U"] = { 8126 }, + }, + }, + [3639] = { + ["end"] = { + ["U"] = { 8126 }, + }, + ["lvl"] = 47, + ["min"] = 30, + ["obj"] = { + ["I"] = { 4384, 4394, 10507 }, + }, + ["pre"] = { 3638 }, + ["skill"] = 202, + ["start"] = { + ["U"] = { 8126 }, + }, + }, + [3640] = { + ["close"] = { 3638, 3640, 3642 }, + ["end"] = { + ["U"] = { 7944 }, + }, + ["lvl"] = 47, + ["min"] = 30, + ["obj"] = { + ["I"] = { 11283 }, + }, + ["skill"] = 202, + ["start"] = { + ["U"] = { 7944 }, + }, + }, + [3641] = { + ["end"] = { + ["U"] = { 7944 }, + }, + ["lvl"] = 47, + ["min"] = 30, + ["obj"] = { + ["I"] = { 4392, 4407, 10559 }, + }, + ["pre"] = { 3640 }, + ["skill"] = 202, + ["start"] = { + ["U"] = { 7944 }, + }, + }, + [3642] = { + ["close"] = { 3638, 3640, 3642 }, + ["end"] = { + ["U"] = { 7406 }, + }, + ["lvl"] = 47, + ["min"] = 30, + ["obj"] = { + ["I"] = { 11282 }, + }, + ["skill"] = 202, + ["start"] = { + ["U"] = { 7406 }, + }, + }, + [3643] = { + ["end"] = { + ["U"] = { 7406 }, + }, + ["lvl"] = 47, + ["min"] = 30, + ["obj"] = { + ["I"] = { 4392, 4407, 10559 }, + }, + ["pre"] = { 3642 }, + ["skill"] = 202, + ["start"] = { + ["U"] = { 7406 }, + }, + }, + [3644] = { + ["end"] = { + ["U"] = { 8126 }, + }, + ["lvl"] = 47, + ["min"] = 30, + ["pre"] = { 3639 }, + ["skill"] = 202, + ["start"] = { + ["U"] = { 8126 }, + }, + }, + [3645] = { + ["end"] = { + ["U"] = { 7944 }, + }, + ["lvl"] = 47, + ["min"] = 30, + ["pre"] = { 3641 }, + ["skill"] = 202, + ["start"] = { + ["U"] = { 7944 }, + }, + }, + [3646] = { + ["end"] = { + ["U"] = { 8738 }, + }, + ["lvl"] = 47, + ["min"] = 30, + ["pre"] = { 3639 }, + ["skill"] = 202, + ["start"] = { + ["U"] = { 8738 }, + }, + }, + [3647] = { + ["end"] = { + ["U"] = { 7406 }, + }, + ["lvl"] = 47, + ["min"] = 30, + ["pre"] = { 3643 }, + ["skill"] = 202, + ["start"] = { + ["U"] = { 7406 }, + }, + }, + [3661] = { + ["end"] = { + ["U"] = { 7916 }, + }, + ["lvl"] = 47, + ["min"] = 42, + ["obj"] = { + ["I"] = { 10819 }, + }, + ["start"] = { + ["U"] = { 7916 }, + }, + }, + [3681] = { + ["class"] = 2, + ["close"] = { 2998, 3681 }, + ["end"] = { + ["U"] = { 6171 }, + }, + ["lvl"] = 12, + ["min"] = 12, + ["race"] = 1, + ["start"] = { + ["U"] = { 5149 }, + }, + }, + [3701] = { + ["end"] = { + ["U"] = { 8879 }, + }, + ["lvl"] = 54, + ["min"] = 50, + ["obj"] = { + ["O"] = { 153556 }, + }, + ["pre"] = { 3702 }, + ["start"] = { + ["U"] = { 8879 }, + }, + }, + [3702] = { + ["end"] = { + ["U"] = { 8879 }, + }, + ["lvl"] = 54, + ["min"] = 50, + ["start"] = { + ["U"] = { 8879 }, + }, + }, + [3721] = { + ["end"] = { + ["U"] = { 7406 }, + }, + ["lvl"] = 50, + ["min"] = 40, + ["pre"] = { 648, 836, 2767 }, + ["start"] = { + ["U"] = { 7406 }, + }, + }, + [3741] = { + ["end"] = { + ["U"] = { 8962 }, + }, + ["lvl"] = 15, + ["min"] = 12, + ["obj"] = { + ["I"] = { 10958 }, + }, + ["start"] = { + ["U"] = { 8965 }, + }, + }, + [3761] = { + ["end"] = { + ["U"] = { 9076 }, + }, + ["lvl"] = 50, + ["min"] = 47, + ["obj"] = { + ["I"] = { 11018 }, + }, + ["pre"] = { 936, 3762, 3784 }, + ["start"] = { + ["U"] = { 5769 }, + }, + }, + [3762] = { + ["close"] = { 936, 3762, 3784 }, + ["end"] = { + ["U"] = { 5769 }, + }, + ["lvl"] = 50, + ["min"] = 47, + ["start"] = { + ["U"] = { 6746 }, + }, + }, + [3763] = { + ["close"] = { 3763, 3789, 3790 }, + ["end"] = { + ["U"] = { 3516 }, + }, + ["lvl"] = 50, + ["min"] = 47, + ["start"] = { + ["U"] = { 6735 }, + }, + }, + [3764] = { + ["end"] = { + ["U"] = { 9047 }, + }, + ["lvl"] = 50, + ["min"] = 47, + ["obj"] = { + ["I"] = { 11018 }, + }, + ["pre"] = { 3763, 3789, 3790 }, + ["start"] = { + ["U"] = { 3516 }, + }, + }, + [3765] = { + ["end"] = { + ["U"] = { 8997 }, + }, + ["lvl"] = 24, + ["min"] = 18, + ["start"] = { + ["U"] = { 4984 }, + }, + }, + [3781] = { + ["end"] = { + ["U"] = { 4217 }, + }, + ["lvl"] = 50, + ["min"] = 47, + ["pre"] = { 3764 }, + ["start"] = { + ["U"] = { 3516 }, + }, + }, + [3782] = { + ["end"] = { + ["U"] = { 9087 }, + }, + ["lvl"] = 50, + ["min"] = 47, + ["pre"] = { 3761 }, + ["start"] = { + ["U"] = { 5769 }, + }, + }, + [3783] = { + ["end"] = { + ["U"] = { 10305 }, + }, + ["lvl"] = 56, + ["min"] = 52, + ["obj"] = { + ["I"] = { 12366 }, + }, + ["start"] = { + ["U"] = { 10305 }, + }, + }, + [3784] = { + ["close"] = { 936, 3762, 3784 }, + ["end"] = { + ["U"] = { 5769 }, + }, + ["lvl"] = 50, + ["min"] = 47, + ["start"] = { + ["U"] = { 6741 }, + }, + }, + [3785] = { + ["end"] = { + ["U"] = { 4217 }, + }, + ["lvl"] = 50, + ["min"] = 47, + ["obj"] = { + ["I"] = { 11040 }, + }, + ["pre"] = { 3781 }, + ["start"] = { + ["U"] = { 4217 }, + }, + }, + [3786] = { + ["end"] = { + ["U"] = { 9087 }, + }, + ["lvl"] = 50, + ["min"] = 47, + ["obj"] = { + ["I"] = { 11040 }, + }, + ["pre"] = { 3782 }, + ["start"] = { + ["U"] = { 9087 }, + }, + }, + [3787] = { + ["end"] = { + ["U"] = { 7879 }, + }, + ["lvl"] = 50, + ["min"] = 47, + ["pre"] = { 3781 }, + ["start"] = { + ["U"] = { 5566 }, + }, + }, + [3788] = { + ["end"] = { + ["U"] = { 7879 }, + }, + ["lvl"] = 50, + ["min"] = 47, + ["pre"] = { 3781 }, + ["start"] = { + ["U"] = { 7736 }, + }, + }, + [3789] = { + ["close"] = { 3763, 3789, 3790 }, + ["end"] = { + ["U"] = { 3516 }, + }, + ["lvl"] = 50, + ["min"] = 47, + ["start"] = { + ["U"] = { 6740 }, + }, + }, + [3790] = { + ["close"] = { 3763, 3789, 3790 }, + ["end"] = { + ["U"] = { 3516 }, + }, + ["lvl"] = 50, + ["min"] = 47, + ["start"] = { + ["U"] = { 5111 }, + }, + }, + [3791] = { + ["end"] = { + ["U"] = { 7879 }, + }, + ["lvl"] = 50, + ["min"] = 47, + ["obj"] = { + ["I"] = { 11040 }, + }, + ["start"] = { + ["U"] = { 7879 }, + }, + }, + [3792] = { + ["end"] = { + ["U"] = { 7879 }, + }, + ["lvl"] = 55, + ["min"] = 47, + ["obj"] = { + ["I"] = { 11040 }, + }, + ["pre"] = { 3791 }, + ["start"] = { + ["U"] = { 7879 }, + }, + }, + [3801] = { + ["end"] = { + ["U"] = { 8888 }, + }, + ["lvl"] = 52, + ["min"] = 48, + ["start"] = { + ["U"] = { 8888 }, + }, + }, + [3802] = { + ["end"] = { + ["O"] = { 164689 }, + }, + ["lvl"] = 52, + ["min"] = 48, + ["obj"] = { + ["I"] = { 10999 }, + }, + ["pre"] = { 3801 }, + ["start"] = { + ["U"] = { 8888 }, + }, + }, + [3803] = { + ["end"] = { + ["U"] = { 4217 }, + }, + ["lvl"] = 50, + ["min"] = 47, + ["obj"] = { + ["I"] = { 11040 }, + }, + ["pre"] = { 3785 }, + ["start"] = { + ["U"] = { 4217 }, + }, + }, + [3804] = { + ["end"] = { + ["U"] = { 9087 }, + }, + ["lvl"] = 50, + ["min"] = 47, + ["obj"] = { + ["I"] = { 11040 }, + }, + ["pre"] = { 3786 }, + ["start"] = { + ["U"] = { 9087 }, + }, + }, + [3821] = { + ["end"] = { + ["U"] = { 9136 }, + }, + ["lvl"] = 52, + ["min"] = 48, + ["start"] = { + ["U"] = { 9082 }, + }, + }, + [3822] = { + ["end"] = { + ["U"] = { 9082 }, + }, + ["lvl"] = 53, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11058 }, + }, + ["pre"] = { 3821 }, + ["start"] = { + ["U"] = { 9136 }, + }, + }, + [3823] = { + ["end"] = { + ["U"] = { 9177 }, + }, + ["lvl"] = 52, + ["min"] = 48, + ["obj"] = { + ["U"] = { 7033, 7034, 7035 }, + }, + ["start"] = { + ["U"] = { 9177 }, + }, + }, + [3824] = { + ["end"] = { + ["U"] = { 9177 }, + }, + ["lvl"] = 53, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11080 }, + }, + ["pre"] = { 3823 }, + ["start"] = { + ["U"] = { 9177 }, + }, + }, + [3825] = { + ["end"] = { + ["U"] = { 9177 }, + }, + ["lvl"] = 53, + ["min"] = 48, + ["obj"] = { + ["IR"] = { 11079 }, + ["O"] = { 160840 }, + }, + ["pre"] = { 3824 }, + ["start"] = { + ["U"] = { 9177 }, + }, + }, + [3841] = { + ["end"] = { + ["U"] = { 9238 }, + }, + ["lvl"] = 47, + ["min"] = 38, + ["pre"] = { 2972 }, + ["start"] = { + ["U"] = { 7956 }, + }, + }, + [3842] = { + ["end"] = { + ["U"] = { 9238 }, + }, + ["lvl"] = 47, + ["min"] = 38, + ["obj"] = { + ["I"] = { 3825 }, + }, + ["pre"] = { 3841 }, + ["start"] = { + ["U"] = { 9238 }, + }, + }, + [3843] = { + ["end"] = { + ["U"] = { 9660 }, + }, + ["lvl"] = 47, + ["min"] = 38, + ["pre"] = { 3842 }, + ["start"] = { + ["U"] = { 9238 }, + }, + }, + [3844] = { + ["end"] = { + ["O"] = { 161504 }, + }, + ["lvl"] = 52, + ["min"] = 47, + ["start"] = { + ["O"] = { 161505 }, + }, + }, + [3845] = { + ["end"] = { + ["U"] = { 8737 }, + }, + ["lvl"] = 52, + ["min"] = 47, + ["obj"] = { + ["I"] = { 11104, 11105, 11106 }, + }, + ["pre"] = { 3844 }, + ["start"] = { + ["O"] = { 161504 }, + }, + }, + [3861] = { + ["end"] = { + ["U"] = { 620 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["obj"] = { + ["I"] = { 11109 }, + }, + ["race"] = 77, + ["start"] = { + ["U"] = { 620 }, + }, + }, + [3881] = { + ["end"] = { + ["U"] = { 9270 }, + }, + ["lvl"] = 53, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11112, 11113 }, + }, + ["start"] = { + ["U"] = { 9270 }, + }, + }, + [3882] = { + ["end"] = { + ["U"] = { 9272 }, + }, + ["lvl"] = 51, + ["min"] = 49, + ["obj"] = { + ["I"] = { 11114 }, + }, + ["start"] = { + ["U"] = { 9272 }, + }, + }, + [3883] = { + ["end"] = { + ["U"] = { 9271 }, + }, + ["lvl"] = 52, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11131 }, + ["IR"] = { 11132 }, + }, + ["start"] = { + ["U"] = { 9271 }, + }, + }, + [3884] = { + ["end"] = { + ["U"] = { 9270 }, + }, + ["lvl"] = 50, + ["min"] = 48, + ["start"] = { + ["I"] = { 11116, 11116 }, + }, + }, + [3885] = { + ["lvl"] = 55, + ["min"] = 50, + }, + [3901] = { + ["end"] = { + ["U"] = { 1569 }, + }, + ["lvl"] = 3, + ["min"] = 1, + ["obj"] = { + ["U"] = { 1890 }, + }, + ["pre"] = { 364 }, + ["start"] = { + ["U"] = { 1569 }, + }, + }, + [3902] = { + ["end"] = { + ["U"] = { 1740 }, + }, + ["lvl"] = 3, + ["min"] = 2, + ["obj"] = { + ["I"] = { 11127 }, + }, + ["pre"] = { 376 }, + ["start"] = { + ["U"] = { 1740 }, + }, + }, + [3903] = { + ["end"] = { + ["U"] = { 9296 }, + }, + ["lvl"] = 4, + ["min"] = 2, + ["pre"] = { 18, 33 }, + ["start"] = { + ["U"] = { 823 }, + }, + }, + [3904] = { + ["end"] = { + ["U"] = { 9296 }, + }, + ["lvl"] = 4, + ["min"] = 2, + ["obj"] = { + ["I"] = { 11119 }, + }, + ["pre"] = { 3903 }, + ["start"] = { + ["U"] = { 9296 }, + }, + }, + [3905] = { + ["end"] = { + ["U"] = { 952 }, + }, + ["lvl"] = 4, + ["min"] = 2, + ["pre"] = { 3904 }, + ["start"] = { + ["U"] = { 9296 }, + }, + }, + [3906] = { + ["end"] = { + ["U"] = { 9084 }, + }, + ["lvl"] = 52, + ["min"] = 48, + ["obj"] = { + ["U"] = { 9026 }, + }, + ["start"] = { + ["U"] = { 9084 }, + }, + }, + [3907] = { + ["end"] = { + ["U"] = { 9084 }, + }, + ["lvl"] = 56, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11126 }, + ["U"] = { 9017 }, + }, + ["pre"] = { 3906 }, + ["start"] = { + ["U"] = { 9084 }, + }, + }, + [3908] = { + ["end"] = { + ["U"] = { 9298 }, + }, + ["lvl"] = 52, + ["min"] = 47, + ["pre"] = { 3845 }, + ["start"] = { + ["U"] = { 8737 }, + }, + }, + [3909] = { + ["end"] = { + ["U"] = { 9298 }, + }, + ["lvl"] = 52, + ["min"] = 47, + ["obj"] = { + ["I"] = { 11242, 11243 }, + ["IR"] = { 11243 }, + }, + ["pre"] = { 3908 }, + ["start"] = { + ["U"] = { 9298 }, + }, + }, + [3911] = { + ["lvl"] = 54, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11129 }, + }, + ["race"] = 255, + }, + [3912] = { + ["end"] = { + ["U"] = { 9299 }, + }, + ["lvl"] = 52, + ["min"] = 47, + ["pre"] = { 3909 }, + ["start"] = { + ["U"] = { 9298 }, + }, + }, + [3913] = { + ["end"] = { + ["O"] = { 148504 }, + }, + ["lvl"] = 52, + ["min"] = 47, + ["pre"] = { 3912 }, + ["start"] = { + ["U"] = { 9299 }, + }, + }, + [3914] = { + ["end"] = { + ["U"] = { 8737 }, + }, + ["lvl"] = 52, + ["min"] = 47, + ["pre"] = { 3913 }, + ["start"] = { + ["O"] = { 148504 }, + }, + }, + [3921] = { + ["end"] = { + ["U"] = { 9316 }, + }, + ["lvl"] = 14, + ["min"] = 10, + ["pre"] = { 902 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 3442 }, + }, + }, + [3922] = { + ["end"] = { + ["U"] = { 9316 }, + }, + ["lvl"] = 15, + ["min"] = 10, + ["obj"] = { + ["I"] = { 11143 }, + }, + ["pre"] = { 3921 }, + ["start"] = { + ["U"] = { 9316 }, + }, + }, + [3923] = { + ["end"] = { + ["U"] = { 9317 }, + }, + ["lvl"] = 18, + ["min"] = 10, + ["pre"] = { 3922 }, + ["start"] = { + ["U"] = { 9316 }, + }, + }, + [3924] = { + ["end"] = { + ["U"] = { 9317 }, + }, + ["lvl"] = 19, + ["min"] = 10, + ["obj"] = { + ["I"] = { 11147, 11148, 11149 }, + }, + ["pre"] = { 3923 }, + ["start"] = { + ["U"] = { 9317 }, + }, + }, + [3941] = { + ["end"] = { + ["U"] = { 9117 }, + }, + ["lvl"] = 52, + ["min"] = 47, + ["pre"] = { 3914 }, + ["start"] = { + ["U"] = { 8737 }, + }, + }, + [3942] = { + ["end"] = { + ["U"] = { 9116 }, + }, + ["lvl"] = 54, + ["min"] = 47, + ["pre"] = { 3941 }, + ["start"] = { + ["U"] = { 9117 }, + }, + }, + [3961] = { + ["end"] = { + ["U"] = { 8737 }, + }, + ["lvl"] = 54, + ["min"] = 47, + ["obj"] = { + ["IR"] = { 11522 }, + }, + ["pre"] = { 4005 }, + ["start"] = { + ["U"] = { 9117 }, + }, + }, + [3962] = { + ["end"] = { + ["U"] = { 8737 }, + }, + ["lvl"] = 56, + ["min"] = 47, + ["obj"] = { + ["I"] = { 11179 }, + ["IR"] = { 11522 }, + ["U"] = { 9376 }, + }, + ["pre"] = { 3961 }, + ["start"] = { + ["U"] = { 8737 }, + }, + }, + [3981] = { + ["end"] = { + ["U"] = { 9020 }, + }, + ["lvl"] = 52, + ["min"] = 48, + ["pre"] = { 3906 }, + ["start"] = { + ["U"] = { 9081 }, + }, + }, + [3982] = { + ["end"] = { + ["U"] = { 9020 }, + }, + ["lvl"] = 54, + ["min"] = 48, + ["pre"] = { 3981 }, + ["start"] = { + ["U"] = { 9020 }, + }, + }, + [4001] = { + ["end"] = { + ["U"] = { 4949 }, + }, + ["lvl"] = 54, + ["min"] = 48, + ["pre"] = { 3982 }, + ["start"] = { + ["U"] = { 9020 }, + }, + }, + [4002] = { + ["end"] = { + ["U"] = { 4949 }, + }, + ["lvl"] = 54, + ["min"] = 48, + ["pre"] = { 4001 }, + ["start"] = { + ["U"] = { 4949 }, + }, + }, + [4003] = { + ["end"] = { + ["U"] = { 8929 }, + }, + ["lvl"] = 59, + ["min"] = 48, + ["obj"] = { + ["U"] = { 9019 }, + }, + ["pre"] = { 4002 }, + ["start"] = { + ["U"] = { 4949 }, + }, + }, + [4004] = { + ["end"] = { + ["U"] = { 4949 }, + }, + ["lvl"] = 60, + ["min"] = 48, + ["pre"] = { 4003 }, + ["start"] = { + ["U"] = { 8929 }, + }, + }, + [4005] = { + ["end"] = { + ["U"] = { 9117 }, + }, + ["lvl"] = 54, + ["min"] = 47, + ["obj"] = { + ["I"] = { 11169, 11172, 11173, 11522 }, + ["IR"] = { 11169, 11522 }, + }, + ["pre"] = { 4084 }, + ["start"] = { + ["U"] = { 9116 }, + }, + }, + [4021] = { + ["end"] = { + ["U"] = { 3389 }, + }, + ["lvl"] = 20, + ["min"] = 11, + ["obj"] = { + ["I"] = { 11227 }, + }, + ["pre"] = { 852 }, + ["start"] = { + ["U"] = { 3389 }, + }, + }, + [4022] = { + ["close"] = { 4022, 4023 }, + ["end"] = { + ["U"] = { 9459 }, + }, + ["lvl"] = 54, + ["min"] = 52, + ["obj"] = { + ["I"] = { 10575 }, + }, + ["start"] = { + ["U"] = { 9459 }, + }, + }, + [4023] = { + ["close"] = { 4022, 4023 }, + ["end"] = { + ["U"] = { 9459 }, + }, + ["lvl"] = 54, + ["min"] = 52, + ["obj"] = { + ["I"] = { 10575 }, + }, + ["start"] = { + ["U"] = { 9459 }, + }, + }, + [4024] = { + ["end"] = { + ["U"] = { 9459 }, + }, + ["lvl"] = 58, + ["min"] = 52, + ["obj"] = { + ["I"] = { 11230 }, + ["IR"] = { 11231 }, + }, + ["pre"] = { 4022, 4023 }, + ["start"] = { + ["U"] = { 9459 }, + }, + }, + [4041] = { + ["end"] = { + ["U"] = { 7775 }, + }, + ["lvl"] = 52, + ["min"] = 47, + ["obj"] = { + ["I"] = { 11242 }, + }, + ["pre"] = { 3909 }, + ["start"] = { + ["U"] = { 7775 }, + }, + }, + [4061] = { + ["end"] = { + ["U"] = { 9079 }, + }, + ["lvl"] = 54, + ["min"] = 52, + ["obj"] = { + ["I"] = { 11266 }, + }, + ["start"] = { + ["U"] = { 9079 }, + }, + }, + [4062] = { + ["end"] = { + ["U"] = { 2921 }, + }, + ["lvl"] = 54, + ["min"] = 52, + ["pre"] = { 4061 }, + ["start"] = { + ["U"] = { 9079 }, + }, + }, + [4063] = { + ["end"] = { + ["U"] = { 2921 }, + }, + ["lvl"] = 58, + ["min"] = 52, + ["obj"] = { + ["I"] = { 11268, 11269 }, + }, + ["pre"] = { 4062 }, + ["start"] = { + ["U"] = { 2921 }, + }, + }, + [4081] = { + ["end"] = { + ["U"] = { 9077 }, + }, + ["lvl"] = 52, + ["min"] = 48, + ["obj"] = { + ["U"] = { 8890, 8891, 8892 }, + }, + ["start"] = { + ["O"] = { 164867 }, + }, + }, + [4082] = { + ["end"] = { + ["U"] = { 9077 }, + }, + ["lvl"] = 54, + ["min"] = 50, + ["obj"] = { + ["U"] = { 8893, 8894, 8895 }, + }, + ["pre"] = { 4081 }, + ["start"] = { + ["O"] = { 164868 }, + }, + }, + [4083] = { + ["end"] = { + ["O"] = { 164869 }, + }, + ["lvl"] = 55, + ["min"] = 40, + ["obj"] = { + ["I"] = { 3577, 6037, 7910 }, + }, + ["start"] = { + ["O"] = { 164869 }, + }, + }, + [4084] = { + ["end"] = { + ["U"] = { 9116 }, + }, + ["lvl"] = 54, + ["min"] = 47, + ["obj"] = { + ["I"] = { 11172, 11173 }, + }, + ["pre"] = { 3942 }, + ["start"] = { + ["U"] = { 9116 }, + }, + }, + [4101] = { + ["end"] = { + ["U"] = { 9528 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11503 }, + }, + ["race"] = 77, + ["start"] = { + ["U"] = { 9528 }, + }, + }, + [4102] = { + ["end"] = { + ["U"] = { 9529 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11503 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 9529 }, + }, + }, + [4103] = { + ["end"] = { + ["U"] = { 9528 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11515 }, + }, + ["pre"] = { 5882 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 9528 }, + }, + }, + [4104] = { + ["end"] = { + ["U"] = { 9528 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11513 }, + }, + ["pre"] = { 5883 }, + ["race"] = 77, + ["skill"] = 186, + ["start"] = { + ["U"] = { 9528 }, + }, + }, + [4105] = { + ["end"] = { + ["U"] = { 9528 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11514 }, + }, + ["pre"] = { 5884 }, + ["race"] = 77, + ["skill"] = 182, + ["start"] = { + ["U"] = { 9528 }, + }, + }, + [4106] = { + ["end"] = { + ["U"] = { 9528 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11512 }, + }, + ["pre"] = { 5885 }, + ["race"] = 77, + ["skill"] = 393, + ["start"] = { + ["U"] = { 9528 }, + }, + }, + [4107] = { + ["end"] = { + ["U"] = { 9528 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11174 }, + }, + ["pre"] = { 5886 }, + ["race"] = 77, + ["skill"] = 333, + ["start"] = { + ["U"] = { 9528 }, + }, + }, + [4108] = { + ["end"] = { + ["U"] = { 9529 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11515 }, + }, + ["pre"] = { 5887 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 9529 }, + }, + }, + [4109] = { + ["end"] = { + ["U"] = { 9529 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11513 }, + }, + ["pre"] = { 5888 }, + ["race"] = 178, + ["skill"] = 186, + ["start"] = { + ["U"] = { 9529 }, + }, + }, + [4110] = { + ["end"] = { + ["U"] = { 9529 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11514 }, + }, + ["pre"] = { 5889 }, + ["race"] = 178, + ["skill"] = 182, + ["start"] = { + ["U"] = { 9529 }, + }, + }, + [4111] = { + ["end"] = { + ["U"] = { 9529 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11512 }, + }, + ["pre"] = { 5890 }, + ["race"] = 178, + ["skill"] = 393, + ["start"] = { + ["U"] = { 9529 }, + }, + }, + [4112] = { + ["end"] = { + ["U"] = { 9529 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11174 }, + }, + ["pre"] = { 5891 }, + ["race"] = 178, + ["skill"] = 333, + ["start"] = { + ["U"] = { 9529 }, + }, + }, + [4113] = { + ["end"] = { + ["O"] = { 164886 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11516 }, + }, + ["start"] = { + ["O"] = { 164886 }, + }, + }, + [4114] = { + ["end"] = { + ["O"] = { 174596 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11516 }, + }, + ["start"] = { + ["O"] = { 174596 }, + }, + }, + [4115] = { + ["end"] = { + ["O"] = { 164887 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11516 }, + }, + ["start"] = { + ["O"] = { 164887 }, + }, + }, + [4116] = { + ["end"] = { + ["O"] = { 174597 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11516 }, + }, + ["start"] = { + ["O"] = { 174597 }, + }, + }, + [4117] = { + ["end"] = { + ["O"] = { 164888 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11516 }, + }, + ["start"] = { + ["O"] = { 164888 }, + }, + }, + [4118] = { + ["end"] = { + ["O"] = { 174598 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11516 }, + }, + ["start"] = { + ["O"] = { 174598 }, + }, + }, + [4119] = { + ["end"] = { + ["O"] = { 164885 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11516 }, + }, + ["start"] = { + ["O"] = { 164885 }, + }, + }, + [4120] = { + ["end"] = { + ["U"] = { 7776 }, + }, + ["lvl"] = 52, + ["min"] = 47, + ["obj"] = { + ["U"] = { 8957, 8961 }, + }, + ["start"] = { + ["U"] = { 7776 }, + }, + }, + [4121] = { + ["end"] = { + ["U"] = { 9080 }, + }, + ["lvl"] = 58, + ["min"] = 52, + ["obj"] = { + ["I"] = { 11286 }, + ["IR"] = { 11286 }, + }, + ["pre"] = { 4122 }, + ["start"] = { + ["U"] = { 9520 }, + }, + }, + [4122] = { + ["end"] = { + ["U"] = { 9520 }, + }, + ["lvl"] = 58, + ["min"] = 52, + ["obj"] = { + ["IR"] = { 11286 }, + }, + ["pre"] = { 4082 }, + ["start"] = { + ["U"] = { 9080 }, + }, + }, + [4123] = { + ["end"] = { + ["U"] = { 9536 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["I"] = { 11309 }, + }, + ["start"] = { + ["U"] = { 9536 }, + }, + }, + [4124] = { + ["end"] = { + ["U"] = { 7880 }, + }, + ["lvl"] = 43, + ["min"] = 40, + ["start"] = { + ["U"] = { 7877 }, + }, + }, + [4125] = { + ["end"] = { + ["O"] = { 164909 }, + }, + ["lvl"] = 43, + ["min"] = 40, + ["pre"] = { 4124 }, + ["start"] = { + ["U"] = { 7880 }, + }, + }, + [4126] = { + ["end"] = { + ["U"] = { 1267 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["I"] = { 11312 }, + }, + ["pre"] = { 4128 }, + ["start"] = { + ["U"] = { 1267 }, + }, + }, + [4127] = { + ["end"] = { + ["U"] = { 7880 }, + }, + ["lvl"] = 44, + ["min"] = 40, + ["pre"] = { 4125 }, + ["start"] = { + ["O"] = { 164909 }, + }, + }, + [4128] = { + ["end"] = { + ["U"] = { 1267 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["start"] = { + ["U"] = { 9540 }, + }, + }, + [4129] = { + ["end"] = { + ["U"] = { 7879 }, + }, + ["lvl"] = 44, + ["min"] = 40, + ["pre"] = { 4127 }, + ["start"] = { + ["U"] = { 7880 }, + }, + }, + [4130] = { + ["end"] = { + ["U"] = { 7880 }, + }, + ["lvl"] = 44, + ["min"] = 40, + ["pre"] = { 4129 }, + ["start"] = { + ["U"] = { 7879 }, + }, + }, + [4131] = { + ["end"] = { + ["O"] = { 164953 }, + }, + ["lvl"] = 44, + ["min"] = 40, + ["pre"] = { 4130 }, + ["start"] = { + ["U"] = { 7880 }, + }, + }, + [4132] = { + ["end"] = { + ["U"] = { 9077 }, + }, + ["lvl"] = 58, + ["min"] = 52, + ["obj"] = { + ["U"] = { 9033 }, + }, + ["pre"] = { 4121 }, + ["start"] = { + ["U"] = { 9077 }, + }, + }, + [4133] = { + ["end"] = { + ["U"] = { 9078 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["start"] = { + ["U"] = { 5204 }, + }, + }, + [4134] = { + ["end"] = { + ["U"] = { 9078 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["I"] = { 11312 }, + }, + ["pre"] = { 4133 }, + ["start"] = { + ["U"] = { 9078 }, + }, + }, + [4135] = { + ["end"] = { + ["O"] = { 164954 }, + }, + ["lvl"] = 46, + ["min"] = 40, + ["pre"] = { 4131 }, + ["start"] = { + ["O"] = { 164953 }, + }, + }, + [4136] = { + ["end"] = { + ["U"] = { 9544 }, + }, + ["lvl"] = 53, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11313 }, + }, + ["pre"] = { 4324 }, + ["start"] = { + ["U"] = { 9544 }, + }, + }, + [4141] = { + ["end"] = { + ["U"] = { 9119 }, + }, + ["lvl"] = 52, + ["min"] = 47, + ["obj"] = { + ["I"] = { 11316 }, + }, + ["start"] = { + ["U"] = { 9119 }, + }, + }, + [4142] = { + ["end"] = { + ["U"] = { 7775 }, + }, + ["lvl"] = 52, + ["min"] = 47, + ["pre"] = { 4141 }, + ["start"] = { + ["U"] = { 9119 }, + }, + }, + [4143] = { + ["end"] = { + ["U"] = { 9119 }, + }, + ["lvl"] = 52, + ["min"] = 47, + ["obj"] = { + ["I"] = { 11318 }, + }, + ["pre"] = { 4142 }, + ["start"] = { + ["U"] = { 7775 }, + }, + }, + [4144] = { + ["end"] = { + ["U"] = { 9119 }, + }, + ["lvl"] = 53, + ["min"] = 47, + ["obj"] = { + ["I"] = { 11315 }, + }, + ["pre"] = { 4143 }, + ["start"] = { + ["U"] = { 9119 }, + }, + }, + [4145] = { + ["end"] = { + ["U"] = { 9118 }, + }, + ["lvl"] = 52, + ["min"] = 47, + ["obj"] = { + ["U"] = { 6509, 6510, 6511, 6512 }, + }, + ["start"] = { + ["U"] = { 9118 }, + }, + }, + [4146] = { + ["end"] = { + ["U"] = { 9118 }, + }, + ["lvl"] = 52, + ["min"] = 47, + ["obj"] = { + ["I"] = { 11318 }, + }, + ["pre"] = { 4147 }, + ["start"] = { + ["U"] = { 8496 }, + }, + }, + [4147] = { + ["end"] = { + ["U"] = { 8496 }, + }, + ["lvl"] = 52, + ["min"] = 47, + ["pre"] = { 4145 }, + ["start"] = { + ["U"] = { 9118 }, + }, + }, + [4148] = { + ["end"] = { + ["U"] = { 9118 }, + }, + ["lvl"] = 53, + ["min"] = 47, + ["obj"] = { + ["I"] = { 11315 }, + }, + ["pre"] = { 4146 }, + ["start"] = { + ["U"] = { 9118 }, + }, + }, + [4161] = { + ["end"] = { + ["U"] = { 6286 }, + }, + ["lvl"] = 7, + ["min"] = 1, + ["obj"] = { + ["I"] = { 5465 }, + }, + ["skill"] = 185, + ["start"] = { + ["U"] = { 6286 }, + }, + }, + [4181] = { + ["close"] = { 3526, 3629, 3630, 3632, 3633, 3634, 3635, 3637, 4181 }, + ["end"] = { + ["U"] = { 8126 }, + }, + ["lvl"] = 47, + ["min"] = 30, + ["skill"] = 202, + ["start"] = { + ["U"] = { 5518 }, + }, + }, + [4182] = { + ["end"] = { + ["U"] = { 9562 }, + }, + ["lvl"] = 54, + ["min"] = 48, + ["obj"] = { + ["U"] = { 7040, 7041, 7044, 7047 }, + }, + ["start"] = { + ["U"] = { 9562 }, + }, + }, + [4183] = { + ["end"] = { + ["U"] = { 344 }, + }, + ["lvl"] = 54, + ["min"] = 48, + ["pre"] = { 4182 }, + ["start"] = { + ["U"] = { 9562 }, + }, + }, + [4184] = { + ["end"] = { + ["U"] = { 1748 }, + }, + ["lvl"] = 54, + ["min"] = 48, + ["pre"] = { 4183 }, + ["start"] = { + ["U"] = { 344 }, + }, + }, + [4185] = { + ["end"] = { + ["U"] = { 1748 }, + }, + ["lvl"] = 54, + ["min"] = 48, + ["pre"] = { 4184 }, + ["start"] = { + ["U"] = { 1748 }, + }, + }, + [4186] = { + ["end"] = { + ["U"] = { 344 }, + }, + ["lvl"] = 54, + ["min"] = 48, + ["pre"] = { 4185 }, + ["start"] = { + ["U"] = { 1748 }, + }, + }, + [4201] = { + ["end"] = { + ["U"] = { 9500 }, + }, + ["lvl"] = 54, + ["min"] = 50, + ["obj"] = { + ["I"] = { 8846, 11405, 11413 }, + ["IR"] = { 11412 }, + }, + ["start"] = { + ["U"] = { 9500 }, + }, + }, + [4221] = { + ["end"] = { + ["O"] = { 174604 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11516 }, + }, + ["start"] = { + ["O"] = { 174604 }, + }, + }, + [4222] = { + ["end"] = { + ["O"] = { 174603 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11516 }, + }, + ["start"] = { + ["O"] = { 174603 }, + }, + }, + [4223] = { + ["end"] = { + ["U"] = { 9560 }, + }, + ["lvl"] = 54, + ["min"] = 48, + ["pre"] = { 4186 }, + ["start"] = { + ["U"] = { 344 }, + }, + }, + [4224] = { + ["end"] = { + ["U"] = { 9560 }, + }, + ["lvl"] = 54, + ["min"] = 48, + ["pre"] = { 4223 }, + ["start"] = { + ["U"] = { 9560 }, + }, + }, + [4241] = { + ["end"] = { + ["U"] = { 9023 }, + }, + ["lvl"] = 54, + ["min"] = 48, + ["pre"] = { 4224 }, + ["start"] = { + ["U"] = { 9560 }, + }, + }, + [4242] = { + ["end"] = { + ["U"] = { 9560 }, + }, + ["lvl"] = 54, + ["min"] = 48, + ["pre"] = { 4241 }, + ["start"] = { + ["U"] = { 9023 }, + }, + }, + [4243] = { + ["end"] = { + ["U"] = { 9623 }, + }, + ["lvl"] = 53, + ["min"] = 48, + ["start"] = { + ["U"] = { 9618 }, + }, + }, + [4244] = { + ["end"] = { + ["U"] = { 9623 }, + }, + ["lvl"] = 53, + ["min"] = 48, + ["obj"] = { + ["I"] = { 10561 }, + }, + ["pre"] = { 4243 }, + ["start"] = { + ["U"] = { 9623 }, + }, + }, + [4245] = { + ["end"] = { + ["U"] = { 9618 }, + }, + ["lvl"] = 53, + ["min"] = 48, + ["pre"] = { 4244 }, + ["start"] = { + ["U"] = { 9623 }, + }, + }, + [4261] = { + ["end"] = { + ["U"] = { 3848 }, + }, + ["lvl"] = 56, + ["min"] = 49, + ["pre"] = { 4442 }, + ["start"] = { + ["U"] = { 9598 }, + }, + }, + [4262] = { + ["end"] = { + ["U"] = { 9561 }, + }, + ["lvl"] = 52, + ["min"] = 48, + ["obj"] = { + ["U"] = { 9026 }, + }, + ["start"] = { + ["U"] = { 9561 }, + }, + }, + [4263] = { + ["end"] = { + ["U"] = { 9561 }, + }, + ["lvl"] = 56, + ["min"] = 48, + ["obj"] = { + ["U"] = { 9017 }, + }, + ["pre"] = { 4262 }, + ["start"] = { + ["U"] = { 9561 }, + }, + }, + [4264] = { + ["end"] = { + ["U"] = { 9023 }, + }, + ["lvl"] = 58, + ["min"] = 50, + ["pre"] = { 4242 }, + ["start"] = { + ["I"] = { 11446 }, + }, + }, + [4265] = { + ["end"] = { + ["U"] = { 7880 }, + }, + ["lvl"] = 46, + ["min"] = 40, + ["pre"] = { 4135 }, + ["start"] = { + ["O"] = { 164954 }, + }, + }, + [4266] = { + ["end"] = { + ["U"] = { 3936 }, + }, + ["lvl"] = 46, + ["min"] = 40, + ["pre"] = { 4265 }, + ["start"] = { + ["U"] = { 7880 }, + }, + }, + [4267] = { + ["end"] = { + ["U"] = { 7740 }, + }, + ["lvl"] = 46, + ["min"] = 40, + ["pre"] = { 4266 }, + ["start"] = { + ["U"] = { 3936 }, + }, + }, + [4281] = { + ["end"] = { + ["U"] = { 4048 }, + }, + ["lvl"] = 44, + ["min"] = 40, + ["start"] = { + ["I"] = { 11463, 11463 }, + }, + }, + [4282] = { + ["end"] = { + ["U"] = { 9023 }, + }, + ["lvl"] = 58, + ["min"] = 50, + ["obj"] = { + ["I"] = { 11464, 11465 }, + }, + ["pre"] = { 4264 }, + ["start"] = { + ["U"] = { 9023 }, + }, + }, + [4283] = { + ["end"] = { + ["U"] = { 9177 }, + }, + ["lvl"] = 56, + ["min"] = 50, + ["obj"] = { + ["I"] = { 11467 }, + }, + ["start"] = { + ["U"] = { 9177 }, + }, + }, + [4284] = { + ["end"] = { + ["U"] = { 9117 }, + }, + ["lvl"] = 53, + ["min"] = 47, + ["obj"] = { + ["I"] = { 11184, 11185, 11186, 11188 }, + }, + ["start"] = { + ["U"] = { 9117 }, + }, + }, + [4285] = { + ["end"] = { + ["U"] = { 9117 }, + }, + ["lvl"] = 53, + ["min"] = 47, + ["pre"] = { 4284 }, + ["start"] = { + ["U"] = { 9117 }, + }, + }, + [4286] = { + ["end"] = { + ["U"] = { 9177 }, + }, + ["lvl"] = 56, + ["min"] = 50, + ["obj"] = { + ["I"] = { 11468 }, + }, + ["start"] = { + ["U"] = { 9177 }, + }, + }, + [4287] = { + ["end"] = { + ["U"] = { 9117 }, + }, + ["lvl"] = 53, + ["min"] = 47, + ["pre"] = { 4284 }, + ["start"] = { + ["U"] = { 9117 }, + }, + }, + [4288] = { + ["end"] = { + ["U"] = { 9117 }, + }, + ["lvl"] = 53, + ["min"] = 47, + ["pre"] = { 4284 }, + ["start"] = { + ["U"] = { 9117 }, + }, + }, + [4289] = { + ["end"] = { + ["U"] = { 9619 }, + }, + ["lvl"] = 55, + ["min"] = 47, + ["obj"] = { + ["I"] = { 11478, 11479, 11480 }, + }, + ["start"] = { + ["U"] = { 9619 }, + }, + }, + [4290] = { + ["end"] = { + ["U"] = { 9619 }, + }, + ["lvl"] = 53, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11504 }, + }, + ["start"] = { + ["U"] = { 9619 }, + }, + }, + [4291] = { + ["end"] = { + ["U"] = { 9619 }, + }, + ["lvl"] = 53, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11509 }, + }, + ["pre"] = { 4290 }, + ["start"] = { + ["U"] = { 9619 }, + }, + }, + [4292] = { + ["end"] = { + ["U"] = { 9619 }, + }, + ["lvl"] = 56, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11510 }, + }, + ["pre"] = { 4291 }, + ["start"] = { + ["U"] = { 9619 }, + }, + }, + [4293] = { + ["end"] = { + ["U"] = { 10136 }, + }, + ["lvl"] = 52, + ["min"] = 48, + ["obj"] = { + ["I"] = { 12230, 12234 }, + }, + ["start"] = { + ["U"] = { 10136 }, + }, + }, + [4294] = { + ["end"] = { + ["U"] = { 10136 }, + }, + ["lvl"] = 56, + ["min"] = 48, + ["obj"] = { + ["I"] = { 12235, 12236 }, + }, + ["start"] = { + ["U"] = { 10136 }, + }, + }, + [4295] = { + ["end"] = { + ["U"] = { 9503 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["obj"] = { + ["I"] = { 11325 }, + }, + ["start"] = { + ["U"] = { 9503 }, + }, + }, + [4296] = { + ["end"] = { + ["U"] = { 9536 }, + }, + ["lvl"] = 50, + ["min"] = 50, + ["obj"] = { + ["I"] = { 11470 }, + }, + ["start"] = { + ["U"] = { 9536 }, + }, + }, + [4297] = { + ["end"] = { + ["U"] = { 9660 }, + }, + ["lvl"] = 47, + ["min"] = 38, + ["obj"] = { + ["I"] = { 11472 }, + }, + ["pre"] = { 3843 }, + ["start"] = { + ["U"] = { 9660 }, + }, + }, + [4298] = { + ["end"] = { + ["U"] = { 9660 }, + }, + ["lvl"] = 48, + ["min"] = 37, + ["pre"] = { 4297 }, + ["start"] = { + ["U"] = { 9660 }, + }, + }, + [4299] = { + ["lvl"] = 50, + ["min"] = 50, + ["obj"] = { + ["IR"] = { 11473 }, + }, + ["race"] = 255, + }, + [4300] = { + ["end"] = { + ["U"] = { 8659 }, + }, + ["lvl"] = 52, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11477 }, + }, + ["start"] = { + ["U"] = { 8659 }, + }, + }, + [4301] = { + ["end"] = { + ["U"] = { 9619 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["I"] = { 11476 }, + }, + ["pre"] = { 4289 }, + ["start"] = { + ["U"] = { 9619 }, + }, + }, + [4321] = { + ["end"] = { + ["U"] = { 9117 }, + }, + ["lvl"] = 53, + ["min"] = 47, + ["pre"] = { 4285, 4287, 4288 }, + ["start"] = { + ["U"] = { 9117 }, + }, + }, + [4322] = { + ["end"] = { + ["U"] = { 9560 }, + }, + ["lvl"] = 58, + ["min"] = 50, + ["pre"] = { 4282 }, + ["start"] = { + ["U"] = { 9023 }, + }, + }, + [4323] = { + ["lvl"] = 26, + ["min"] = 24, + ["obj"] = { + ["I"] = { 11507 }, + }, + }, + [4324] = { + ["end"] = { + ["U"] = { 9544 }, + }, + ["lvl"] = 53, + ["min"] = 48, + ["start"] = { + ["U"] = { 9706 }, + }, + }, + [4341] = { + ["end"] = { + ["U"] = { 9021 }, + }, + ["lvl"] = 59, + ["min"] = 50, + ["pre"] = { 3701 }, + ["start"] = { + ["U"] = { 2784 }, + }, + }, + [4342] = { + ["end"] = { + ["U"] = { 9021 }, + }, + ["lvl"] = 59, + ["min"] = 50, + ["pre"] = { 4341 }, + ["start"] = { + ["U"] = { 9021 }, + }, + }, + [4343] = { + ["end"] = { + ["O"] = { 174602 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11516 }, + }, + ["start"] = { + ["O"] = { 174602 }, + }, + }, + [4361] = { + ["end"] = { + ["U"] = { 2784 }, + }, + ["lvl"] = 59, + ["min"] = 50, + ["pre"] = { 4342 }, + ["start"] = { + ["U"] = { 9021 }, + }, + }, + [4362] = { + ["end"] = { + ["U"] = { 8929 }, + }, + ["lvl"] = 59, + ["min"] = 50, + ["obj"] = { + ["U"] = { 9019 }, + }, + ["pre"] = { 4361 }, + ["start"] = { + ["U"] = { 2784 }, + }, + }, + [4363] = { + ["end"] = { + ["U"] = { 2784 }, + }, + ["lvl"] = 59, + ["min"] = 50, + ["pre"] = { 4362 }, + ["start"] = { + ["U"] = { 8929 }, + }, + }, + [4381] = { + ["end"] = { + ["O"] = { 164955 }, + }, + ["lvl"] = 53, + ["min"] = 47, + ["obj"] = { + ["I"] = { 11185, 11188 }, + }, + ["pre"] = { 4321 }, + ["start"] = { + ["O"] = { 164955 }, + }, + }, + [4382] = { + ["end"] = { + ["O"] = { 164957 }, + }, + ["lvl"] = 53, + ["min"] = 47, + ["obj"] = { + ["I"] = { 11184, 11185 }, + }, + ["pre"] = { 4321 }, + ["start"] = { + ["O"] = { 164957 }, + }, + }, + [4383] = { + ["end"] = { + ["O"] = { 164956 }, + }, + ["lvl"] = 53, + ["min"] = 47, + ["obj"] = { + ["I"] = { 11185, 11186 }, + }, + ["pre"] = { 4321 }, + ["start"] = { + ["O"] = { 164956 }, + }, + }, + [4384] = { + ["end"] = { + ["O"] = { 164956 }, + }, + ["lvl"] = 53, + ["min"] = 47, + ["obj"] = { + ["I"] = { 11184, 11186 }, + }, + ["pre"] = { 4321 }, + ["start"] = { + ["O"] = { 164956 }, + }, + }, + [4385] = { + ["end"] = { + ["O"] = { 164955 }, + }, + ["lvl"] = 53, + ["min"] = 47, + ["obj"] = { + ["I"] = { 11186, 11188 }, + }, + ["pre"] = { 4321 }, + ["start"] = { + ["O"] = { 164955 }, + }, + }, + [4386] = { + ["end"] = { + ["O"] = { 164957 }, + }, + ["lvl"] = 53, + ["min"] = 47, + ["obj"] = { + ["I"] = { 11184, 11188 }, + }, + ["pre"] = { 4321 }, + ["start"] = { + ["O"] = { 164957 }, + }, + }, + [4401] = { + ["end"] = { + ["O"] = { 171939 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11516 }, + }, + ["start"] = { + ["O"] = { 171939 }, + }, + }, + [4402] = { + ["end"] = { + ["U"] = { 9796 }, + }, + ["lvl"] = 3, + ["min"] = 1, + ["obj"] = { + ["I"] = { 11583 }, + }, + ["pre"] = { 788 }, + ["start"] = { + ["U"] = { 9796 }, + }, + }, + [4403] = { + ["end"] = { + ["O"] = { 174601 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11516 }, + }, + ["start"] = { + ["O"] = { 174601 }, + }, + }, + [4421] = { + ["end"] = { + ["U"] = { 9116 }, + }, + ["lvl"] = 54, + ["min"] = 49, + ["obj"] = { + ["U"] = { 7106, 7109, 7110, 9454 }, + }, + ["race"] = 77, + ["start"] = { + ["U"] = { 9116 }, + }, + }, + [4441] = { + ["end"] = { + ["U"] = { 9116 }, + }, + ["lvl"] = 54, + ["min"] = 49, + ["obj"] = { + ["I"] = { 5646 }, + ["IR"] = { 11682 }, + }, + ["pre"] = { 939 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 9116 }, + }, + }, + [4442] = { + ["end"] = { + ["U"] = { 9116 }, + }, + ["lvl"] = 54, + ["min"] = 49, + ["pre"] = { 4441 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 9116 }, + }, + }, + [4443] = { + ["end"] = { + ["O"] = { 173284 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11516 }, + }, + ["start"] = { + ["O"] = { 173284 }, + }, + }, + [4444] = { + ["end"] = { + ["O"] = { 174605 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11516 }, + }, + ["start"] = { + ["O"] = { 174605 }, + }, + }, + [4445] = { + ["end"] = { + ["O"] = { 174606 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11516 }, + }, + ["start"] = { + ["O"] = { 174606 }, + }, + }, + [4446] = { + ["end"] = { + ["O"] = { 174607 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11516 }, + }, + ["start"] = { + ["O"] = { 174607 }, + }, + }, + [4447] = { + ["end"] = { + ["O"] = { 173324 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11516 }, + }, + ["start"] = { + ["O"] = { 173324 }, + }, + }, + [4448] = { + ["end"] = { + ["O"] = { 174608 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11516 }, + }, + ["start"] = { + ["O"] = { 174608 }, + }, + }, + [4449] = { + ["end"] = { + ["O"] = { 173265 }, + }, + ["lvl"] = 45, + ["min"] = 43, + ["obj"] = { + ["I"] = { 4306 }, + ["U"] = { 5839 }, + }, + ["start"] = { + ["O"] = { 173265 }, + }, + }, + [4450] = { + ["end"] = { + ["U"] = { 5411 }, + }, + ["lvl"] = 46, + ["min"] = 43, + ["obj"] = { + ["I"] = { 11723, 11724, 11725, 11727 }, + }, + ["pre"] = { 4449 }, + ["start"] = { + ["O"] = { 173265 }, + }, + }, + [4451] = { + ["end"] = { + ["O"] = { 173265 }, + }, + ["lvl"] = 47, + ["min"] = 43, + ["start"] = { + ["I"] = { 11818 }, + }, + }, + [4461] = { + ["end"] = { + ["O"] = { 174686 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11516 }, + }, + ["start"] = { + ["O"] = { 174686 }, + }, + }, + [4462] = { + ["end"] = { + ["O"] = { 174684 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11516 }, + }, + ["start"] = { + ["O"] = { 174684 }, + }, + }, + [4463] = { + ["end"] = { + ["U"] = { 9836 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["I"] = { 8424, 11732, 11752, 11754 }, + }, + ["start"] = { + ["U"] = { 9836 }, + }, + }, + [4464] = { + ["end"] = { + ["O"] = { 174712 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11516 }, + }, + ["start"] = { + ["O"] = { 174712 }, + }, + }, + [4465] = { + ["end"] = { + ["O"] = { 174713 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11516 }, + }, + ["start"] = { + ["O"] = { 174713 }, + }, + }, + [4466] = { + ["end"] = { + ["O"] = { 174708 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11516 }, + }, + ["start"] = { + ["O"] = { 174708 }, + }, + }, + [4467] = { + ["end"] = { + ["O"] = { 174709 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11516 }, + }, + ["start"] = { + ["O"] = { 174709 }, + }, + }, + [4481] = { + ["end"] = { + ["U"] = { 9836 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["I"] = { 8411, 11733, 11754, 11952 }, + }, + ["start"] = { + ["U"] = { 9836 }, + }, + }, + [4482] = { + ["end"] = { + ["U"] = { 9836 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["I"] = { 11564, 11734, 11753, 11754 }, + }, + ["start"] = { + ["U"] = { 9836 }, + }, + }, + [4483] = { + ["end"] = { + ["U"] = { 9836 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["I"] = { 11567, 11736, 11751, 11754 }, + }, + ["start"] = { + ["U"] = { 9836 }, + }, + }, + [4484] = { + ["end"] = { + ["U"] = { 9836 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["I"] = { 11563, 11737, 11754, 11951 }, + }, + ["start"] = { + ["U"] = { 9836 }, + }, + }, + [4485] = { + ["class"] = 2, + ["close"] = { 4485, 4486 }, + ["end"] = { + ["U"] = { 6171 }, + }, + ["lvl"] = 40, + ["min"] = 40, + ["start"] = { + ["U"] = { 5491 }, + }, + }, + [4486] = { + ["class"] = 2, + ["close"] = { 4485, 4486 }, + ["end"] = { + ["U"] = { 6171 }, + }, + ["lvl"] = 40, + ["min"] = 40, + ["start"] = { + ["U"] = { 5149 }, + }, + }, + [4487] = { + ["class"] = 256, + ["close"] = { 3631, 4487, 4488, 4489 }, + ["end"] = { + ["U"] = { 6251 }, + }, + ["lvl"] = 40, + ["min"] = 40, + ["start"] = { + ["U"] = { 5172 }, + }, + }, + [4488] = { + ["class"] = 256, + ["close"] = { 3631, 4487, 4488, 4489 }, + ["end"] = { + ["U"] = { 6251 }, + }, + ["lvl"] = 40, + ["min"] = 40, + ["start"] = { + ["U"] = { 461 }, + }, + }, + [4489] = { + ["class"] = 256, + ["close"] = { 3631, 4487, 4488, 4489 }, + ["end"] = { + ["U"] = { 6251 }, + }, + ["lvl"] = 40, + ["min"] = 40, + ["start"] = { + ["U"] = { 4563 }, + }, + }, + [4490] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 6251 }, + }, + ["lvl"] = 40, + ["min"] = 40, + ["pre"] = { 3631, 4487, 4488, 4489 }, + ["start"] = { + ["U"] = { 6251 }, + }, + }, + [4491] = { + ["end"] = { + ["U"] = { 9997 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["IR"] = { 11804 }, + }, + ["pre"] = { 4492 }, + ["start"] = { + ["U"] = { 9999 }, + }, + }, + [4492] = { + ["end"] = { + ["U"] = { 9999 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["start"] = { + ["U"] = { 9997 }, + }, + }, + [4493] = { + ["end"] = { + ["U"] = { 5594 }, + }, + ["lvl"] = 53, + ["min"] = 50, + ["start"] = { + ["U"] = { 7740 }, + }, + }, + [4494] = { + ["end"] = { + ["U"] = { 5594 }, + }, + ["lvl"] = 53, + ["min"] = 50, + ["start"] = { + ["U"] = { 7010 }, + }, + }, + [4495] = { + ["end"] = { + ["U"] = { 8584 }, + }, + ["lvl"] = 4, + ["min"] = 2, + ["start"] = { + ["U"] = { 8583 }, + }, + }, + [4496] = { + ["end"] = { + ["U"] = { 5594 }, + }, + ["lvl"] = 53, + ["min"] = 50, + ["obj"] = { + ["I"] = { 11018, 11837 }, + }, + ["pre"] = { 4493, 4494 }, + ["start"] = { + ["U"] = { 5594 }, + }, + }, + [4501] = { + ["end"] = { + ["U"] = { 9997 }, + }, + ["lvl"] = 55, + ["min"] = 49, + ["obj"] = { + ["U"] = { 9166, 9167 }, + }, + ["start"] = { + ["O"] = { 174682 }, + }, + }, + [4502] = { + ["end"] = { + ["U"] = { 8496 }, + }, + ["lvl"] = 55, + ["min"] = 49, + ["obj"] = { + ["I"] = { 11829 }, + }, + ["start"] = { + ["U"] = { 8496 }, + }, + }, + [4503] = { + ["end"] = { + ["U"] = { 9998 }, + }, + ["lvl"] = 51, + ["min"] = 49, + ["obj"] = { + ["I"] = { 11830, 11831 }, + }, + ["start"] = { + ["U"] = { 9998 }, + }, + }, + [4504] = { + ["end"] = { + ["U"] = { 7876 }, + }, + ["lvl"] = 54, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11834 }, + }, + ["start"] = { + ["U"] = { 7876 }, + }, + }, + [4505] = { + ["end"] = { + ["U"] = { 9996 }, + }, + ["lvl"] = 54, + ["min"] = 49, + ["obj"] = { + ["I"] = { 12567 }, + ["IR"] = { 12566 }, + }, + ["pre"] = { 6605 }, + ["start"] = { + ["U"] = { 9996 }, + }, + }, + [4506] = { + ["end"] = { + ["U"] = { 9996 }, + }, + ["lvl"] = 54, + ["min"] = 49, + ["obj"] = { + ["IR"] = { 12565 }, + }, + ["pre"] = { 4505 }, + ["start"] = { + ["U"] = { 9996 }, + }, + }, + [4507] = { + ["end"] = { + ["U"] = { 5594 }, + }, + ["lvl"] = 54, + ["min"] = 50, + ["obj"] = { + ["I"] = { 11835 }, + ["IR"] = { 11833 }, + }, + ["pre"] = { 4496 }, + ["start"] = { + ["U"] = { 5594 }, + }, + }, + [4508] = { + ["end"] = { + ["U"] = { 7740 }, + }, + ["lvl"] = 54, + ["min"] = 50, + ["pre"] = { 4507 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 5594 }, + }, + }, + [4509] = { + ["end"] = { + ["U"] = { 7010 }, + }, + ["lvl"] = 54, + ["min"] = 50, + ["pre"] = { 4507 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 5594 }, + }, + }, + [4510] = { + ["end"] = { + ["U"] = { 4155 }, + }, + ["lvl"] = 54, + ["min"] = 50, + ["pre"] = { 4508 }, + ["start"] = { + ["U"] = { 7740 }, + }, + }, + [4511] = { + ["end"] = { + ["U"] = { 3309 }, + }, + ["lvl"] = 54, + ["min"] = 50, + ["pre"] = { 4509 }, + ["start"] = { + ["U"] = { 7010 }, + }, + }, + [4512] = { + ["end"] = { + ["U"] = { 9616 }, + }, + ["lvl"] = 52, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11947, 11949 }, + }, + ["start"] = { + ["U"] = { 9616 }, + }, + }, + [4513] = { + ["end"] = { + ["U"] = { 9616 }, + }, + ["lvl"] = 54, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11954 }, + }, + ["pre"] = { 4512 }, + ["start"] = { + ["U"] = { 9616 }, + }, + }, + [4521] = { + ["end"] = { + ["U"] = { 10306 }, + }, + ["lvl"] = 56, + ["min"] = 52, + ["obj"] = { + ["U"] = { 7450, 7451 }, + }, + ["start"] = { + ["U"] = { 10306 }, + }, + }, + [4542] = { + ["end"] = { + ["U"] = { 10537 }, + }, + ["lvl"] = 25, + ["min"] = 23, + ["start"] = { + ["U"] = { 10079 }, + }, + }, + [4561] = { + ["end"] = { + ["O"] = { 175265 }, + }, + ["lvl"] = 52, + ["min"] = 48, + ["obj"] = { + ["I"] = { 12235 }, + }, + ["start"] = { + ["O"] = { 175265 }, + }, + }, + [4581] = { + ["end"] = { + ["U"] = { 3848 }, + }, + ["lvl"] = 29, + ["min"] = 24, + ["start"] = { + ["U"] = { 3845 }, + }, + }, + [4601] = { + ["end"] = { + ["O"] = { 175084 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["obj"] = { + ["I"] = { 9308 }, + }, + ["start"] = { + ["O"] = { 175084 }, + }, + }, + [4602] = { + ["end"] = { + ["O"] = { 175085 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["obj"] = { + ["I"] = { 9308 }, + }, + ["start"] = { + ["O"] = { 175085 }, + }, + }, + [4603] = { + ["end"] = { + ["O"] = { 175084 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["obj"] = { + ["I"] = { 9308 }, + }, + ["pre"] = { 4605 }, + ["start"] = { + ["O"] = { 175084 }, + }, + }, + [4604] = { + ["end"] = { + ["O"] = { 175085 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["obj"] = { + ["I"] = { 9308 }, + }, + ["pre"] = { 4606 }, + ["start"] = { + ["O"] = { 175085 }, + }, + }, + [4605] = { + ["end"] = { + ["O"] = { 175084 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["pre"] = { 4601 }, + ["start"] = { + ["O"] = { 175084 }, + }, + }, + [4606] = { + ["end"] = { + ["O"] = { 175085 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["pre"] = { 4602 }, + ["start"] = { + ["O"] = { 175085 }, + }, + }, + [4621] = { + ["end"] = { + ["U"] = { 2546 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["U"] = { 2487, 2496 }, + }, + ["pre"] = { 1036 }, + ["start"] = { + ["U"] = { 2546 }, + }, + }, + [4641] = { + ["end"] = { + ["U"] = { 3143 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["start"] = { + ["U"] = { 10176 }, + }, + }, + [4642] = { + ["end"] = { + ["U"] = { 10136 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 12291 }, + }, + ["pre"] = { 4293, 4294 }, + ["start"] = { + ["U"] = { 10136 }, + }, + }, + [4661] = { + ["end"] = { + ["O"] = { 174848 }, + }, + ["lvl"] = 52, + ["min"] = 48, + ["obj"] = { + ["I"] = { 12230 }, + }, + ["start"] = { + ["O"] = { 174848 }, + }, + }, + [4681] = { + ["end"] = { + ["U"] = { 10219 }, + }, + ["lvl"] = 14, + ["min"] = 11, + ["obj"] = { + ["I"] = { 12289 }, + }, + ["pre"] = { 3524 }, + ["start"] = { + ["U"] = { 10219 }, + }, + }, + [4701] = { + ["end"] = { + ["U"] = { 9562 }, + }, + ["lvl"] = 59, + ["min"] = 55, + ["obj"] = { + ["U"] = { 10220 }, + }, + ["start"] = { + ["U"] = { 9562 }, + }, + }, + [4721] = { + ["end"] = { + ["U"] = { 10306 }, + }, + ["lvl"] = 59, + ["min"] = 52, + ["obj"] = { + ["U"] = { 7454 }, + }, + ["pre"] = { 4741 }, + ["start"] = { + ["U"] = { 10306 }, + }, + }, + [4722] = { + ["end"] = { + ["U"] = { 10219 }, + }, + ["lvl"] = 13, + ["min"] = 11, + ["pre"] = { 4681 }, + ["start"] = { + ["O"] = { 176190 }, + }, + }, + [4723] = { + ["end"] = { + ["U"] = { 10219 }, + }, + ["lvl"] = 13, + ["min"] = 11, + ["pre"] = { 4681 }, + ["start"] = { + ["O"] = { 175233 }, + }, + }, + [4724] = { + ["end"] = { + ["U"] = { 9081 }, + }, + ["lvl"] = 59, + ["min"] = 55, + ["obj"] = { + ["U"] = { 10220 }, + }, + ["start"] = { + ["U"] = { 9081 }, + }, + }, + [4725] = { + ["end"] = { + ["U"] = { 10219 }, + }, + ["lvl"] = 15, + ["min"] = 12, + ["pre"] = { 4681 }, + ["start"] = { + ["O"] = { 176197 }, + }, + }, + [4726] = { + ["end"] = { + ["U"] = { 10267 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["obj"] = { + ["I"] = { 12283 }, + ["IR"] = { 12284 }, + }, + ["start"] = { + ["U"] = { 10267 }, + }, + }, + [4727] = { + ["end"] = { + ["U"] = { 10219 }, + }, + ["lvl"] = 15, + ["min"] = 12, + ["pre"] = { 4681 }, + ["start"] = { + ["O"] = { 176196 }, + }, + }, + [4728] = { + ["end"] = { + ["U"] = { 10219 }, + }, + ["lvl"] = 14, + ["min"] = 12, + ["pre"] = { 4681 }, + ["start"] = { + ["O"] = { 175226 }, + }, + }, + [4729] = { + ["end"] = { + ["U"] = { 10260 }, + }, + ["lvl"] = 59, + ["min"] = 55, + ["obj"] = { + ["I"] = { 12263 }, + ["IR"] = { 12262 }, + }, + ["start"] = { + ["U"] = { 10260 }, + }, + }, + [4730] = { + ["end"] = { + ["U"] = { 10219 }, + }, + ["lvl"] = 16, + ["min"] = 12, + ["pre"] = { 4681 }, + ["start"] = { + ["O"] = { 175227 }, + }, + }, + [4731] = { + ["end"] = { + ["U"] = { 10219 }, + }, + ["lvl"] = 19, + ["min"] = 13, + ["pre"] = { 4681 }, + ["start"] = { + ["O"] = { 176198 }, + }, + }, + [4732] = { + ["end"] = { + ["U"] = { 10219 }, + }, + ["lvl"] = 19, + ["min"] = 13, + ["pre"] = { 4681 }, + ["start"] = { + ["O"] = { 176191 }, + }, + }, + [4733] = { + ["end"] = { + ["U"] = { 10219 }, + }, + ["lvl"] = 19, + ["min"] = 13, + ["pre"] = { 4681 }, + ["start"] = { + ["O"] = { 175230 }, + }, + }, + [4734] = { + ["end"] = { + ["U"] = { 10267 }, + }, + ["lvl"] = 60, + ["min"] = 57, + ["pre"] = { 4907 }, + ["start"] = { + ["U"] = { 10267 }, + }, + }, + [4735] = { + ["end"] = { + ["U"] = { 10267 }, + }, + ["lvl"] = 60, + ["min"] = 57, + ["obj"] = { + ["I"] = { 12241 }, + ["IR"] = { 12287 }, + }, + ["pre"] = { 4734 }, + ["start"] = { + ["U"] = { 10267 }, + }, + }, + [4736] = { + ["class"] = 256, + ["close"] = { 4736, 4737, 4738, 4739 }, + ["end"] = { + ["U"] = { 6266 }, + }, + ["lvl"] = 31, + ["min"] = 31, + ["start"] = { + ["U"] = { 5172 }, + }, + }, + [4737] = { + ["class"] = 256, + ["close"] = { 4736, 4737, 4738, 4739 }, + ["end"] = { + ["U"] = { 6266 }, + }, + ["lvl"] = 31, + ["min"] = 31, + ["start"] = { + ["U"] = { 3326 }, + }, + }, + [4738] = { + ["class"] = 256, + ["close"] = { 4736, 4737, 4738, 4739 }, + ["end"] = { + ["U"] = { 6266 }, + }, + ["lvl"] = 31, + ["min"] = 31, + ["start"] = { + ["U"] = { 461 }, + }, + }, + [4739] = { + ["class"] = 256, + ["close"] = { 4736, 4737, 4738, 4739 }, + ["end"] = { + ["U"] = { 6266 }, + }, + ["lvl"] = 31, + ["min"] = 31, + ["start"] = { + ["U"] = { 4563 }, + }, + }, + [4740] = { + ["end"] = { + ["U"] = { 2930 }, + }, + ["lvl"] = 18, + ["min"] = 15, + ["obj"] = { + ["U"] = { 10323 }, + }, + ["start"] = { + ["O"] = { 175320 }, + }, + }, + [4741] = { + ["end"] = { + ["U"] = { 10306 }, + }, + ["lvl"] = 58, + ["min"] = 52, + ["obj"] = { + ["U"] = { 7453 }, + }, + ["pre"] = { 4521 }, + ["start"] = { + ["U"] = { 10306 }, + }, + }, + [4742] = { + ["end"] = { + ["U"] = { 10296 }, + }, + ["lvl"] = 60, + ["min"] = 57, + ["obj"] = { + ["I"] = { 12219, 12335, 12336, 12337 }, + }, + ["start"] = { + ["U"] = { 10296 }, + }, + }, + [4743] = { + ["end"] = { + ["U"] = { 10296 }, + }, + ["lvl"] = 60, + ["min"] = 57, + ["obj"] = { + ["I"] = { 12324 }, + }, + ["pre"] = { 4742 }, + ["start"] = { + ["U"] = { 10296 }, + }, + }, + [4761] = { + ["end"] = { + ["U"] = { 3649 }, + }, + ["lvl"] = 15, + ["min"] = 11, + ["pre"] = { 984 }, + ["start"] = { + ["U"] = { 3693 }, + }, + }, + [4762] = { + ["end"] = { + ["U"] = { 3649 }, + }, + ["lvl"] = 15, + ["min"] = 11, + ["obj"] = { + ["I"] = { 12349 }, + ["IR"] = { 12350 }, + }, + ["pre"] = { 4761 }, + ["start"] = { + ["U"] = { 3649 }, + }, + }, + [4763] = { + ["end"] = { + ["U"] = { 3649 }, + }, + ["lvl"] = 18, + ["min"] = 15, + ["obj"] = { + ["I"] = { 12341, 12342, 12343, 12355 }, + ["IR"] = { 12346 }, + }, + ["pre"] = { 4762 }, + ["start"] = { + ["U"] = { 3649 }, + }, + }, + [4764] = { + ["end"] = { + ["U"] = { 9565 }, + }, + ["lvl"] = 60, + ["min"] = 57, + ["obj"] = { + ["I"] = { 12352 }, + }, + ["pre"] = { 4766 }, + ["start"] = { + ["U"] = { 9565 }, + }, + }, + [4765] = { + ["end"] = { + ["U"] = { 2285 }, + }, + ["lvl"] = 60, + ["min"] = 57, + ["pre"] = { 4764 }, + ["start"] = { + ["U"] = { 9565 }, + }, + }, + [4766] = { + ["end"] = { + ["U"] = { 9565 }, + }, + ["lvl"] = 60, + ["min"] = 57, + ["start"] = { + ["U"] = { 2285 }, + }, + }, + [4767] = { + ["end"] = { + ["U"] = { 10377 }, + }, + ["lvl"] = 29, + ["min"] = 25, + ["obj"] = { + ["I"] = { 12356 }, + }, + ["start"] = { + ["U"] = { 10377 }, + }, + }, + [4768] = { + ["end"] = { + ["U"] = { 9078 }, + }, + ["lvl"] = 60, + ["min"] = 57, + ["obj"] = { + ["I"] = { 12358 }, + }, + ["pre"] = { 4769 }, + ["start"] = { + ["U"] = { 9078 }, + }, + }, + [4769] = { + ["end"] = { + ["U"] = { 9078 }, + }, + ["lvl"] = 60, + ["min"] = 57, + ["start"] = { + ["U"] = { 5204 }, + }, + }, + [4770] = { + ["end"] = { + ["U"] = { 10428 }, + }, + ["lvl"] = 29, + ["min"] = 25, + ["start"] = { + ["U"] = { 10427 }, + }, + }, + [4771] = { + ["end"] = { + ["U"] = { 11035 }, + }, + ["lvl"] = 60, + ["min"] = 57, + ["obj"] = { + ["IR"] = { 12368 }, + ["U"] = { 10432 }, + }, + ["pre"] = { 5531 }, + ["start"] = { + ["U"] = { 11035 }, + }, + }, + [4781] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 2670 }, + }, + ["lvl"] = 34, + ["min"] = 31, + ["obj"] = { + ["I"] = { 3577 }, + }, + ["pre"] = { 1796 }, + ["start"] = { + ["U"] = { 6266 }, + }, + }, + [4782] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 6266 }, + }, + ["lvl"] = 34, + ["min"] = 31, + ["pre"] = { 4781 }, + ["start"] = { + ["U"] = { 2670 }, + }, + }, + [4783] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 6266 }, + }, + ["lvl"] = 37, + ["min"] = 31, + ["obj"] = { + ["I"] = { 6989, 6990 }, + }, + ["pre"] = { 4782 }, + ["start"] = { + ["U"] = { 6266 }, + }, + }, + [4784] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 6266 }, + }, + ["lvl"] = 37, + ["min"] = 31, + ["obj"] = { + ["I"] = { 6265, 6991, 12293 }, + }, + ["pre"] = { 4783 }, + ["start"] = { + ["U"] = { 6266 }, + }, + }, + [4785] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 2670 }, + }, + ["lvl"] = 37, + ["min"] = 31, + ["pre"] = { 4784 }, + ["start"] = { + ["U"] = { 2670 }, + }, + }, + [4786] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 6266 }, + }, + ["lvl"] = 38, + ["min"] = 31, + ["pre"] = { 4784 }, + ["start"] = { + ["U"] = { 6266 }, + }, + }, + [4787] = { + ["end"] = { + ["U"] = { 8579 }, + }, + ["lvl"] = 50, + ["min"] = 40, + ["obj"] = { + ["I"] = { 12402 }, + }, + ["pre"] = { 3527 }, + ["start"] = { + ["U"] = { 8579 }, + }, + }, + [4788] = { + ["end"] = { + ["U"] = { 10460 }, + }, + ["lvl"] = 58, + ["min"] = 40, + ["obj"] = { + ["I"] = { 12740, 12741 }, + }, + ["pre"] = { 5065 }, + ["start"] = { + ["U"] = { 10460 }, + }, + }, + [4801] = { + ["end"] = { + ["U"] = { 10307 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 12430 }, + }, + ["pre"] = { 975 }, + ["start"] = { + ["U"] = { 10307 }, + }, + }, + [4802] = { + ["end"] = { + ["U"] = { 10307 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 12431 }, + }, + ["pre"] = { 975 }, + ["start"] = { + ["U"] = { 10307 }, + }, + }, + [4803] = { + ["end"] = { + ["U"] = { 10307 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 12432 }, + }, + ["pre"] = { 975 }, + ["start"] = { + ["U"] = { 10307 }, + }, + }, + [4804] = { + ["end"] = { + ["U"] = { 10307 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 12434 }, + }, + ["pre"] = { 975 }, + ["start"] = { + ["U"] = { 10307 }, + }, + }, + [4805] = { + ["end"] = { + ["U"] = { 10307 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 12435 }, + }, + ["pre"] = { 975 }, + ["start"] = { + ["U"] = { 10307 }, + }, + }, + [4806] = { + ["end"] = { + ["U"] = { 10307 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 12436 }, + }, + ["pre"] = { 975 }, + ["start"] = { + ["U"] = { 10307 }, + }, + }, + [4807] = { + ["end"] = { + ["U"] = { 10307 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 12433 }, + }, + ["pre"] = { 975 }, + ["start"] = { + ["U"] = { 10307 }, + }, + }, + [4808] = { + ["end"] = { + ["U"] = { 10468 }, + }, + ["lvl"] = 54, + ["min"] = 50, + ["pre"] = { 4726 }, + ["start"] = { + ["U"] = { 10267 }, + }, + }, + [4809] = { + ["end"] = { + ["U"] = { 10468 }, + }, + ["lvl"] = 54, + ["min"] = 50, + ["obj"] = { + ["I"] = { 12444 }, + }, + ["pre"] = { 4808 }, + ["start"] = { + ["U"] = { 10468 }, + }, + }, + [4810] = { + ["end"] = { + ["U"] = { 10267 }, + }, + ["lvl"] = 54, + ["min"] = 50, + ["pre"] = { 4809 }, + ["start"] = { + ["U"] = { 10468 }, + }, + }, + [4811] = { + ["end"] = { + ["U"] = { 2930 }, + }, + ["lvl"] = 14, + ["min"] = 12, + ["obj"] = { + ["A"] = { 2486 }, + }, + ["start"] = { + ["U"] = { 2930 }, + }, + }, + [4812] = { + ["end"] = { + ["O"] = { 175524 }, + }, + ["lvl"] = 14, + ["min"] = 12, + ["obj"] = { + ["I"] = { 14339 }, + ["IR"] = { 14338 }, + }, + ["pre"] = { 4811 }, + ["start"] = { + ["U"] = { 2930 }, + }, + }, + [4813] = { + ["end"] = { + ["U"] = { 2930 }, + }, + ["lvl"] = 14, + ["min"] = 12, + ["pre"] = { 4812 }, + ["start"] = { + ["O"] = { 175524 }, + }, + }, + [4821] = { + ["end"] = { + ["U"] = { 10539 }, + }, + ["lvl"] = 26, + ["min"] = 24, + ["obj"] = { + ["I"] = { 12467 }, + }, + ["start"] = { + ["U"] = { 10539 }, + }, + }, + [4822] = { + ["end"] = { + ["U"] = { 14305 }, + }, + ["lvl"] = 60, + ["min"] = 10, + ["obj"] = { + ["I"] = { 7228 }, + }, + ["race"] = 77, + ["start"] = { + ["U"] = { 14305 }, + }, + }, + [4841] = { + ["end"] = { + ["U"] = { 10537 }, + }, + ["lvl"] = 25, + ["min"] = 23, + ["obj"] = { + ["U"] = { 4093, 4094, 4096 }, + }, + ["pre"] = { 4542 }, + ["start"] = { + ["U"] = { 10537 }, + }, + }, + [4842] = { + ["end"] = { + ["U"] = { 9298 }, + }, + ["lvl"] = 56, + ["min"] = 51, + ["obj"] = { + ["A"] = { 2327 }, + }, + ["pre"] = { 980 }, + ["start"] = { + ["U"] = { 9298 }, + }, + }, + [4861] = { + ["end"] = { + ["O"] = { 175587 }, + }, + ["lvl"] = 59, + ["min"] = 53, + ["pre"] = { 6604 }, + ["start"] = { + ["U"] = { 10301 }, + }, + }, + [4862] = { + ["end"] = { + ["U"] = { 10260 }, + }, + ["lvl"] = 59, + ["min"] = 55, + ["obj"] = { + ["I"] = { 12530 }, + }, + ["start"] = { + ["U"] = { 10260 }, + }, + }, + [4863] = { + ["end"] = { + ["O"] = { 175586 }, + }, + ["lvl"] = 59, + ["min"] = 53, + ["pre"] = { 4861 }, + ["start"] = { + ["O"] = { 175587 }, + }, + }, + [4864] = { + ["end"] = { + ["U"] = { 10301 }, + }, + ["lvl"] = 59, + ["min"] = 53, + ["obj"] = { + ["I"] = { 12524, 12525 }, + }, + ["pre"] = { 4863 }, + ["start"] = { + ["O"] = { 175586 }, + }, + }, + [4865] = { + ["end"] = { + ["U"] = { 10428 }, + }, + ["lvl"] = 26, + ["min"] = 24, + ["pre"] = { 4821 }, + ["start"] = { + ["U"] = { 10539 }, + }, + }, + [4866] = { + ["end"] = { + ["U"] = { 9563 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["start"] = { + ["U"] = { 9563 }, + }, + }, + [4867] = { + ["end"] = { + ["U"] = { 10799 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 12712 }, + }, + ["start"] = { + ["U"] = { 10799 }, + }, + }, + [4881] = { + ["end"] = { + ["U"] = { 10638 }, + }, + ["lvl"] = 28, + ["min"] = 23, + ["start"] = { + ["I"] = { 12564 }, + }, + }, + [4882] = { + ["end"] = { + ["U"] = { 10306 }, + }, + ["lvl"] = 59, + ["min"] = 52, + ["start"] = { + ["I"] = { 12558 }, + }, + }, + [4883] = { + ["end"] = { + ["U"] = { 5770 }, + }, + ["lvl"] = 59, + ["min"] = 52, + ["pre"] = { 4882 }, + ["start"] = { + ["U"] = { 10306 }, + }, + }, + [4901] = { + ["end"] = { + ["U"] = { 7916 }, + }, + ["lvl"] = 59, + ["min"] = 52, + ["pre"] = { 979 }, + ["start"] = { + ["U"] = { 10300 }, + }, + }, + [4902] = { + ["end"] = { + ["U"] = { 3516 }, + }, + ["lvl"] = 57, + ["min"] = 52, + ["pre"] = { 4901 }, + ["start"] = { + ["U"] = { 7916 }, + }, + }, + [4903] = { + ["end"] = { + ["U"] = { 9077 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 12562 }, + ["U"] = { 9196, 9237, 9568 }, + }, + ["start"] = { + ["I"] = { 12563 }, + }, + }, + [4904] = { + ["end"] = { + ["U"] = { 10645 }, + }, + ["lvl"] = 29, + ["min"] = 25, + ["start"] = { + ["U"] = { 10646 }, + }, + }, + [4905] = { + }, + [4906] = { + ["end"] = { + ["U"] = { 9116 }, + }, + ["lvl"] = 54, + ["min"] = 49, + ["obj"] = { + ["U"] = { 7107, 7108, 7111, 10648 }, + }, + ["pre"] = { 4421 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 9116 }, + }, + }, + [4907] = { + ["end"] = { + ["U"] = { 10267 }, + }, + ["lvl"] = 60, + ["min"] = 57, + ["pre"] = { 4810 }, + ["start"] = { + ["U"] = { 10468 }, + }, + }, + [4921] = { + ["end"] = { + ["U"] = { 3432 }, + }, + ["lvl"] = 20, + ["min"] = 14, + ["obj"] = { + ["U"] = { 10668 }, + }, + ["start"] = { + ["U"] = { 3432 }, + }, + }, + [4941] = { + ["end"] = { + ["U"] = { 4949 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["pre"] = { 4903 }, + ["start"] = { + ["U"] = { 9077 }, + }, + }, + [4961] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 6546 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["obj"] = { + ["U"] = { 6549 }, + }, + ["pre"] = { 1799 }, + ["start"] = { + ["U"] = { 6546 }, + }, + }, + [4962] = { + ["class"] = 256, + ["close"] = { 4962, 4963 }, + ["end"] = { + ["U"] = { 6266 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["obj"] = { + ["I"] = { 12648 }, + ["IR"] = { 12647 }, + }, + ["start"] = { + ["U"] = { 6254 }, + }, + }, + [4963] = { + ["class"] = 256, + ["close"] = { 4962, 4963 }, + ["end"] = { + ["U"] = { 6266 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["obj"] = { + ["I"] = { 12649 }, + }, + ["start"] = { + ["U"] = { 6252 }, + }, + }, + [4964] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 6266 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["pre"] = { 4962 }, + ["start"] = { + ["U"] = { 6266 }, + }, + }, + [4965] = { + ["class"] = 256, + ["close"] = { 4965, 4967, 4968, 4969 }, + ["end"] = { + ["U"] = { 6266 }, + }, + ["lvl"] = 35, + ["min"] = 35, + ["start"] = { + ["U"] = { 5172 }, + }, + }, + [4966] = { + ["end"] = { + ["U"] = { 10638 }, + }, + ["lvl"] = 28, + ["min"] = 23, + ["pre"] = { 4881 }, + ["start"] = { + ["U"] = { 10638 }, + }, + }, + [4967] = { + ["class"] = 256, + ["close"] = { 4965, 4967, 4968, 4969 }, + ["end"] = { + ["U"] = { 6266 }, + }, + ["lvl"] = 35, + ["min"] = 35, + ["start"] = { + ["U"] = { 3326 }, + }, + }, + [4968] = { + ["class"] = 256, + ["close"] = { 4965, 4967, 4968, 4969 }, + ["end"] = { + ["U"] = { 6266 }, + }, + ["lvl"] = 35, + ["min"] = 35, + ["start"] = { + ["U"] = { 461 }, + }, + }, + [4969] = { + ["class"] = 256, + ["close"] = { 4965, 4967, 4968, 4969 }, + ["end"] = { + ["U"] = { 6266 }, + }, + ["lvl"] = 35, + ["min"] = 35, + ["start"] = { + ["U"] = { 4563 }, + }, + }, + [4970] = { + ["end"] = { + ["U"] = { 10618 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 12622, 12623 }, + }, + ["start"] = { + ["U"] = { 10618 }, + }, + }, + [4971] = { + ["end"] = { + ["U"] = { 10667 }, + }, + ["lvl"] = 56, + ["min"] = 53, + ["obj"] = { + ["IR"] = { 12627 }, + ["U"] = { 10717 }, + }, + ["start"] = { + ["U"] = { 10667 }, + }, + }, + [4972] = { + ["end"] = { + ["U"] = { 10667 }, + }, + ["lvl"] = 56, + ["min"] = 53, + ["obj"] = { + ["I"] = { 12638 }, + }, + ["pre"] = { 4971 }, + ["start"] = { + ["U"] = { 10667 }, + }, + }, + [4973] = { + ["end"] = { + ["U"] = { 10667 }, + }, + ["lvl"] = 56, + ["min"] = 53, + ["obj"] = { + ["I"] = { 12638 }, + }, + ["pre"] = { 4972 }, + ["start"] = { + ["U"] = { 10667 }, + }, + }, + [4974] = { + ["end"] = { + ["U"] = { 4949 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 12630 }, + }, + ["pre"] = { 4941 }, + ["start"] = { + ["U"] = { 4949 }, + }, + }, + [4975] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 6266 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["pre"] = { 4963 }, + ["start"] = { + ["U"] = { 6266 }, + }, + }, + [4976] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 6266 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["pre"] = { 4961 }, + ["start"] = { + ["U"] = { 6546 }, + }, + }, + [4981] = { + ["end"] = { + ["U"] = { 10257 }, + }, + ["lvl"] = 59, + ["min"] = 55, + ["start"] = { + ["U"] = { 9080 }, + }, + }, + [4982] = { + ["end"] = { + ["U"] = { 10257 }, + }, + ["lvl"] = 59, + ["min"] = 55, + ["obj"] = { + ["I"] = { 12345 }, + }, + ["pre"] = { 4981 }, + ["start"] = { + ["U"] = { 10257 }, + }, + }, + [4983] = { + ["end"] = { + ["U"] = { 9080 }, + }, + ["lvl"] = 59, + ["min"] = 55, + ["pre"] = { 4982 }, + ["start"] = { + ["U"] = { 10257 }, + }, + }, + [4984] = { + ["end"] = { + ["U"] = { 10739 }, + }, + ["lvl"] = 54, + ["min"] = 51, + ["obj"] = { + ["U"] = { 1817 }, + }, + ["start"] = { + ["U"] = { 10739 }, + }, + }, + [4985] = { + ["end"] = { + ["U"] = { 10739 }, + }, + ["lvl"] = 56, + ["min"] = 51, + ["obj"] = { + ["U"] = { 1816 }, + }, + ["pre"] = { 4984 }, + ["start"] = { + ["U"] = { 10739 }, + }, + }, + [4986] = { + ["end"] = { + ["U"] = { 4217 }, + }, + ["lvl"] = 56, + ["min"] = 51, + ["pre"] = { 4985 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 10739 }, + }, + }, + [4987] = { + ["end"] = { + ["U"] = { 5770 }, + }, + ["lvl"] = 56, + ["min"] = 51, + ["pre"] = { 4985 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 10739 }, + }, + }, + [5001] = { + ["end"] = { + ["U"] = { 10257 }, + }, + ["lvl"] = 59, + ["min"] = 55, + ["obj"] = { + ["I"] = { 12345 }, + }, + ["race"] = 1101, + ["start"] = { + ["U"] = { 10257 }, + }, + }, + [5002] = { + ["end"] = { + ["U"] = { 9560 }, + }, + ["lvl"] = 59, + ["min"] = 55, + ["pre"] = { 5001 }, + ["start"] = { + ["U"] = { 10257 }, + }, + }, + [5021] = { + ["end"] = { + ["O"] = { 175894 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["start"] = { + ["U"] = { 10778 }, + }, + }, + [5022] = { + ["end"] = { + ["U"] = { 10782 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["pre"] = { 5021 }, + ["race"] = 77, + ["start"] = { + ["O"] = { 175894 }, + }, + }, + [5023] = { + ["end"] = { + ["U"] = { 10781 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["pre"] = { 5021 }, + ["race"] = 178, + ["start"] = { + ["O"] = { 175894 }, + }, + }, + [5041] = { + ["end"] = { + ["U"] = { 3429 }, + }, + ["lvl"] = 14, + ["min"] = 9, + ["obj"] = { + ["I"] = { 12708 }, + }, + ["start"] = { + ["U"] = { 3429 }, + }, + }, + [5042] = { + ["end"] = { + ["U"] = { 3430 }, + }, + ["lvl"] = 20, + ["min"] = 14, + ["obj"] = { + ["I"] = { 5075 }, + }, + ["pre"] = { 5052 }, + ["start"] = { + ["U"] = { 3430 }, + }, + }, + [5043] = { + ["end"] = { + ["U"] = { 3430 }, + }, + ["lvl"] = 20, + ["min"] = 14, + ["obj"] = { + ["I"] = { 5075 }, + }, + ["pre"] = { 5052 }, + ["start"] = { + ["U"] = { 3430 }, + }, + }, + [5044] = { + ["end"] = { + ["U"] = { 3430 }, + }, + ["lvl"] = 20, + ["min"] = 14, + ["obj"] = { + ["I"] = { 5075 }, + }, + ["pre"] = { 5052 }, + ["start"] = { + ["U"] = { 3430 }, + }, + }, + [5045] = { + ["end"] = { + ["U"] = { 3430 }, + }, + ["lvl"] = 20, + ["min"] = 14, + ["obj"] = { + ["I"] = { 5075 }, + }, + ["pre"] = { 5052 }, + ["start"] = { + ["U"] = { 3430 }, + }, + }, + [5046] = { + ["end"] = { + ["U"] = { 3430 }, + }, + ["lvl"] = 20, + ["min"] = 14, + ["obj"] = { + ["I"] = { 5075 }, + }, + ["pre"] = { 5052 }, + ["start"] = { + ["U"] = { 3430 }, + }, + }, + [5047] = { + ["end"] = { + ["U"] = { 10637 }, + }, + ["lvl"] = 60, + ["min"] = 57, + ["start"] = { + ["U"] = { 10776 }, + }, + }, + [5048] = { + ["end"] = { + ["U"] = { 3520 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["pre"] = { 5022 }, + ["start"] = { + ["U"] = { 10782 }, + }, + }, + [5049] = { + ["end"] = { + ["U"] = { 8403 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["pre"] = { 5023 }, + ["start"] = { + ["U"] = { 10781 }, + }, + }, + [5050] = { + ["end"] = { + ["U"] = { 10778 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["pre"] = { 5048, 5049 }, + ["start"] = { + ["U"] = { 3520, 8403 }, + }, + }, + [5051] = { + ["end"] = { + ["U"] = { 10778 }, + }, + ["lvl"] = 54, + ["min"] = 50, + ["obj"] = { + ["I"] = { 12722, 12723 }, + }, + ["pre"] = { 5050 }, + ["start"] = { + ["U"] = { 10778 }, + }, + }, + [5052] = { + ["end"] = { + ["U"] = { 3430 }, + }, + ["lvl"] = 21, + ["min"] = 14, + ["obj"] = { + ["I"] = { 5075 }, + }, + ["pre"] = { 878 }, + ["start"] = { + ["U"] = { 3430 }, + }, + }, + [5053] = { + ["lvl"] = 1, + ["min"] = 1, + }, + [5054] = { + ["end"] = { + ["U"] = { 10303 }, + }, + ["lvl"] = 56, + ["min"] = 53, + ["obj"] = { + ["U"] = { 10806 }, + }, + ["start"] = { + ["U"] = { 10303 }, + }, + }, + [5055] = { + ["end"] = { + ["U"] = { 10303 }, + }, + ["lvl"] = 58, + ["min"] = 53, + ["obj"] = { + ["U"] = { 10807 }, + }, + ["pre"] = { 5054 }, + ["start"] = { + ["U"] = { 10303 }, + }, + }, + [5056] = { + ["end"] = { + ["U"] = { 10303 }, + }, + ["lvl"] = 60, + ["min"] = 53, + ["obj"] = { + ["I"] = { 12733 }, + ["IR"] = { 12733 }, + ["U"] = { 10737 }, + }, + ["pre"] = { 5055 }, + ["start"] = { + ["U"] = { 10303 }, + }, + }, + [5057] = { + ["end"] = { + ["U"] = { 3441, 10303 }, + }, + ["lvl"] = 60, + ["min"] = 53, + ["pre"] = { 5056 }, + ["start"] = { + ["U"] = { 10303 }, + }, + }, + [5058] = { + ["end"] = { + ["O"] = { 175926 }, + }, + ["lvl"] = 55, + ["min"] = 52, + ["start"] = { + ["O"] = { 175926 }, + }, + }, + [5059] = { + ["end"] = { + ["O"] = { 175925 }, + }, + ["lvl"] = 55, + ["min"] = 52, + ["obj"] = { + ["I"] = { 12738 }, + }, + ["start"] = { + ["O"] = { 175925 }, + }, + }, + [5060] = { + ["end"] = { + ["O"] = { 175924 }, + }, + ["lvl"] = 55, + ["min"] = 52, + ["obj"] = { + ["I"] = { 12739 }, + }, + ["start"] = { + ["O"] = { 175924 }, + }, + }, + [5061] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 4217 }, + }, + ["lvl"] = 16, + ["min"] = 16, + ["pre"] = { 272 }, + ["race"] = 8, + ["start"] = { + ["U"] = { 11802 }, + }, + }, + [5062] = { + ["end"] = { + ["U"] = { 4046 }, + }, + ["lvl"] = 27, + ["min"] = 24, + ["obj"] = { + ["I"] = { 12732 }, + }, + ["pre"] = { 4865 }, + ["start"] = { + ["U"] = { 10428 }, + }, + }, + [5063] = { + ["end"] = { + ["U"] = { 10637 }, + }, + ["lvl"] = 60, + ["min"] = 57, + ["obj"] = { + ["I"] = { 12363, 12731, 12734, 12735 }, + }, + ["pre"] = { 5047 }, + ["start"] = { + ["O"] = { 175927 }, + }, + }, + [5064] = { + ["end"] = { + ["U"] = { 10537 }, + }, + ["lvl"] = 28, + ["min"] = 24, + ["obj"] = { + ["I"] = { 12765, 12766, 12768 }, + }, + ["pre"] = { 4841 }, + ["start"] = { + ["U"] = { 10537 }, + }, + }, + [5065] = { + ["end"] = { + ["U"] = { 10460 }, + }, + ["lvl"] = 58, + ["min"] = 40, + ["obj"] = { + ["I"] = { 12411, 12412 }, + }, + ["pre"] = { 3528 }, + ["start"] = { + ["U"] = { 10460 }, + }, + }, + [5066] = { + ["close"] = { 5066, 5090, 5091 }, + ["end"] = { + ["U"] = { 10838 }, + }, + ["lvl"] = 50, + ["min"] = 50, + ["start"] = { + ["U"] = { 2198 }, + }, + }, + [5067] = { + ["end"] = { + ["U"] = { 10637 }, + }, + ["lvl"] = 60, + ["min"] = 57, + ["obj"] = { + ["I"] = { 12360, 12731, 12735, 12736 }, + }, + ["pre"] = { 5047 }, + ["start"] = { + ["O"] = { 175927 }, + }, + }, + [5068] = { + ["end"] = { + ["U"] = { 10637 }, + }, + ["lvl"] = 60, + ["min"] = 57, + ["obj"] = { + ["I"] = { 12360, 12731, 12735, 12753 }, + }, + ["pre"] = { 5047 }, + ["start"] = { + ["O"] = { 175927 }, + }, + }, + [5081] = { + ["end"] = { + ["U"] = { 9560 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["U"] = { 9196, 9237, 9568 }, + }, + ["pre"] = { 5002 }, + ["start"] = { + ["U"] = { 9560 }, + }, + }, + [5082] = { + ["end"] = { + ["U"] = { 9298 }, + }, + ["lvl"] = 56, + ["min"] = 52, + ["obj"] = { + ["U"] = { 7440, 7441, 7442 }, + }, + ["pre"] = { 6603 }, + ["start"] = { + ["U"] = { 9298 }, + }, + }, + [5083] = { + ["end"] = { + ["U"] = { 9298 }, + }, + ["lvl"] = 56, + ["min"] = 52, + ["start"] = { + ["I"] = { 12771 }, + }, + }, + [5084] = { + ["end"] = { + ["O"] = { 176091 }, + }, + ["lvl"] = 56, + ["min"] = 52, + ["pre"] = { 5083 }, + ["start"] = { + ["U"] = { 9298 }, + }, + }, + [5085] = { + ["end"] = { + ["U"] = { 9298 }, + }, + ["lvl"] = 56, + ["min"] = 52, + ["pre"] = { 5084 }, + ["start"] = { + ["O"] = { 176091 }, + }, + }, + [5086] = { + ["end"] = { + ["U"] = { 9298 }, + }, + ["lvl"] = 56, + ["min"] = 52, + ["obj"] = { + ["I"] = { 12822 }, + }, + ["pre"] = { 5085 }, + ["start"] = { + ["U"] = { 9298 }, + }, + }, + [5087] = { + ["end"] = { + ["U"] = { 9298 }, + }, + ["lvl"] = 57, + ["min"] = 52, + ["obj"] = { + ["I"] = { 12829 }, + }, + ["pre"] = { 5086 }, + ["start"] = { + ["U"] = { 9298 }, + }, + }, + [5088] = { + ["end"] = { + ["U"] = { 10428 }, + }, + ["lvl"] = 28, + ["min"] = 24, + ["obj"] = { + ["I"] = { 12925 }, + ["IR"] = { 12785 }, + }, + ["pre"] = { 5062 }, + ["start"] = { + ["U"] = { 4046 }, + }, + }, + [5089] = { + ["end"] = { + ["U"] = { 9560 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["race"] = 77, + ["start"] = { + ["I"] = { 12780 }, + }, + }, + [5090] = { + ["close"] = { 5066, 5090, 5091 }, + ["end"] = { + ["U"] = { 10838 }, + }, + ["lvl"] = 50, + ["min"] = 50, + ["start"] = { + ["U"] = { 10877 }, + }, + }, + [5091] = { + ["close"] = { 5066, 5090, 5091 }, + ["end"] = { + ["U"] = { 10838 }, + }, + ["lvl"] = 50, + ["min"] = 50, + ["start"] = { + ["U"] = { 10878 }, + }, + }, + [5092] = { + ["end"] = { + ["U"] = { 10838 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["obj"] = { + ["U"] = { 1783, 1791 }, + }, + ["pre"] = { 5066, 5090, 5091 }, + ["start"] = { + ["U"] = { 10838 }, + }, + }, + [5093] = { + ["close"] = { 5093, 5094, 5095 }, + ["end"] = { + ["U"] = { 10837 }, + }, + ["lvl"] = 50, + ["min"] = 50, + ["start"] = { + ["U"] = { 10880 }, + }, + }, + [5094] = { + ["close"] = { 5093, 5094, 5095 }, + ["end"] = { + ["U"] = { 10837 }, + }, + ["lvl"] = 50, + ["min"] = 50, + ["start"] = { + ["U"] = { 10879 }, + }, + }, + [5095] = { + ["close"] = { 5093, 5094, 5095 }, + ["end"] = { + ["U"] = { 10837 }, + }, + ["lvl"] = 50, + ["min"] = 50, + ["start"] = { + ["U"] = { 10881 }, + }, + }, + [5096] = { + ["end"] = { + ["U"] = { 10837 }, + }, + ["lvl"] = 53, + ["min"] = 50, + ["obj"] = { + ["I"] = { 12814 }, + ["IR"] = { 12807 }, + ["O"] = { 176088 }, + }, + ["pre"] = { 5093, 5094, 5095 }, + ["start"] = { + ["U"] = { 10837 }, + }, + }, + [5097] = { + ["end"] = { + ["U"] = { 10838 }, + }, + ["lvl"] = 56, + ["min"] = 50, + ["obj"] = { + ["IR"] = { 12815 }, + ["U"] = { 10902, 10903, 10904, 10905 }, + }, + ["pre"] = { 5092 }, + ["start"] = { + ["U"] = { 10838 }, + }, + }, + [5098] = { + ["end"] = { + ["U"] = { 10837 }, + }, + ["lvl"] = 56, + ["min"] = 50, + ["obj"] = { + ["IR"] = { 12815 }, + ["U"] = { 10902, 10903, 10904, 10905 }, + }, + ["pre"] = { 5096 }, + ["start"] = { + ["U"] = { 10837 }, + }, + }, + [5101] = { + ["lvl"] = 5, + ["min"] = 1, + ["obj"] = { + ["U"] = { 1933 }, + }, + }, + [5102] = { + ["end"] = { + ["U"] = { 9560 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["U"] = { 10363 }, + }, + ["pre"] = { 5089 }, + ["start"] = { + ["U"] = { 9560 }, + }, + }, + [5103] = { + ["end"] = { + ["U"] = { 10637 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["skill"] = 164, + ["start"] = { + ["O"] = { 176090 }, + }, + }, + [5121] = { + ["end"] = { + ["U"] = { 9298 }, + }, + ["lvl"] = 59, + ["min"] = 52, + ["obj"] = { + ["U"] = { 10738 }, + }, + ["pre"] = { 5087 }, + ["start"] = { + ["U"] = { 9298 }, + }, + }, + [5122] = { + ["end"] = { + ["U"] = { 10917 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 12845 }, + }, + ["start"] = { + ["U"] = { 10917 }, + }, + }, + [5123] = { + ["end"] = { + ["U"] = { 9298 }, + }, + ["lvl"] = 59, + ["min"] = 52, + ["pre"] = { 5087 }, + ["start"] = { + ["I"] = { 12842 }, + }, + }, + [5124] = { + ["end"] = { + ["U"] = { 10637 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 7078, 7910, 12655, 12812 }, + }, + ["pre"] = { 5103 }, + ["start"] = { + ["U"] = { 10637 }, + }, + }, + [5125] = { + ["end"] = { + ["U"] = { 10917 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["start"] = { + ["U"] = { 10917 }, + }, + }, + [5126] = { + ["end"] = { + ["U"] = { 10918 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["skill"] = 164, + ["start"] = { + ["U"] = { 10918 }, + }, + }, + [5127] = { + ["end"] = { + ["U"] = { 10918 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 12806, 12847 }, + ["IR"] = { 12848 }, + }, + ["pre"] = { 5126 }, + ["skill"] = 164, + ["start"] = { + ["U"] = { 10918 }, + }, + }, + [5128] = { + ["end"] = { + ["U"] = { 10920 }, + }, + ["lvl"] = 59, + ["min"] = 52, + ["pre"] = { 5123 }, + ["start"] = { + ["U"] = { 9298 }, + }, + }, + [5141] = { + ["close"] = { 5141, 5143, 5144 }, + ["end"] = { + ["U"] = { 7866 }, + }, + ["lvl"] = 55, + ["min"] = 40, + ["obj"] = { + ["I"] = { 8165, 8203, 8204 }, + }, + ["skill"] = 165, + ["start"] = { + ["U"] = { 7866 }, + }, + }, + [5142] = { + ["close"] = { 5142, 5601 }, + ["end"] = { + ["U"] = { 10926 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["start"] = { + ["U"] = { 10927 }, + }, + }, + [5143] = { + ["close"] = { 5141, 5143, 5144 }, + ["end"] = { + ["U"] = { 7870 }, + }, + ["lvl"] = 55, + ["min"] = 40, + ["obj"] = { + ["I"] = { 8211, 8214 }, + }, + ["pre"] = { 2853 }, + ["skill"] = 165, + ["start"] = { + ["U"] = { 7870 }, + }, + }, + [5144] = { + ["close"] = { 5141, 5143, 5144 }, + ["end"] = { + ["U"] = { 7868 }, + }, + ["lvl"] = 55, + ["min"] = 40, + ["obj"] = { + ["I"] = { 7075, 7077, 7079, 7081 }, + }, + ["skill"] = 165, + ["start"] = { + ["U"] = { 7868 }, + }, + }, + [5145] = { + ["close"] = { 5145, 5146, 5148 }, + ["end"] = { + ["U"] = { 7867 }, + }, + ["lvl"] = 55, + ["min"] = 40, + ["obj"] = { + ["I"] = { 8165, 8203, 8204 }, + }, + ["skill"] = 165, + ["start"] = { + ["U"] = { 7867 }, + }, + }, + [5146] = { + ["close"] = { 5145, 5146, 5148 }, + ["end"] = { + ["U"] = { 7869 }, + }, + ["lvl"] = 55, + ["min"] = 40, + ["obj"] = { + ["I"] = { 7075, 7077, 7079, 7081 }, + }, + ["skill"] = 165, + ["start"] = { + ["U"] = { 7869 }, + }, + }, + [5147] = { + ["end"] = { + ["U"] = { 10537 }, + }, + ["lvl"] = 29, + ["min"] = 25, + ["obj"] = { + ["I"] = { 12884 }, + }, + ["race"] = 178, + ["start"] = { + ["O"] = { 176115 }, + }, + }, + [5148] = { + ["close"] = { 5145, 5146, 5148 }, + ["end"] = { + ["U"] = { 7871 }, + }, + ["lvl"] = 55, + ["min"] = 40, + ["obj"] = { + ["I"] = { 8211, 8214 }, + }, + ["pre"] = { 2860 }, + ["skill"] = 165, + ["start"] = { + ["U"] = { 7871 }, + }, + }, + [5149] = { + ["end"] = { + ["U"] = { 10926 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["I"] = { 12885, 12886, 12887, 12888 }, + }, + ["pre"] = { 5142, 5601 }, + ["start"] = { + ["U"] = { 10926 }, + }, + }, + [5150] = { + ["end"] = { + ["U"] = { 9274 }, + }, + ["lvl"] = 55, + ["min"] = 47, + ["obj"] = { + ["I"] = { 11315 }, + }, + ["start"] = { + ["U"] = { 9274 }, + }, + }, + [5151] = { + ["end"] = { + ["U"] = { 10941 }, + }, + ["lvl"] = 30, + ["min"] = 24, + ["obj"] = { + ["I"] = { 12946 }, + }, + ["start"] = { + ["U"] = { 10941 }, + }, + }, + [5152] = { + ["end"] = { + ["U"] = { 10927 }, + }, + ["lvl"] = 56, + ["min"] = 50, + ["pre"] = { 5149 }, + ["start"] = { + ["U"] = { 10926 }, + }, + }, + [5153] = { + ["end"] = { + ["U"] = { 10667 }, + }, + ["lvl"] = 56, + ["min"] = 50, + ["obj"] = { + ["I"] = { 12894 }, + }, + ["pre"] = { 5152 }, + ["start"] = { + ["U"] = { 10927 }, + }, + }, + [5154] = { + ["end"] = { + ["U"] = { 10667 }, + }, + ["lvl"] = 56, + ["min"] = 50, + ["obj"] = { + ["I"] = { 12900 }, + }, + ["pre"] = { 5153 }, + ["start"] = { + ["U"] = { 10667 }, + }, + }, + [5155] = { + ["end"] = { + ["U"] = { 10922 }, + }, + ["lvl"] = 51, + ["min"] = 48, + ["obj"] = { + ["U"] = { 7112, 7113, 7115, 7125 }, + }, + ["start"] = { + ["U"] = { 10922 }, + }, + }, + [5156] = { + ["end"] = { + ["U"] = { 10921 }, + }, + ["lvl"] = 54, + ["min"] = 48, + ["obj"] = { + ["A"] = { 2206, 2207, 2208 }, + ["U"] = { 9878, 9879 }, + }, + ["start"] = { + ["U"] = { 10921 }, + }, + }, + [5157] = { + ["end"] = { + ["U"] = { 10922 }, + }, + ["lvl"] = 52, + ["min"] = 48, + ["obj"] = { + ["I"] = { 12907 }, + ["IR"] = { 12922 }, + }, + ["pre"] = { 5155 }, + ["start"] = { + ["U"] = { 10922 }, + }, + }, + [5158] = { + ["end"] = { + ["U"] = { 5901 }, + }, + ["lvl"] = 52, + ["min"] = 48, + ["pre"] = { 5157 }, + ["start"] = { + ["U"] = { 10922 }, + }, + }, + [5159] = { + ["end"] = { + ["U"] = { 10922 }, + }, + ["lvl"] = 54, + ["min"] = 48, + ["obj"] = { + ["IR"] = { 12906 }, + }, + ["pre"] = { 5158 }, + ["start"] = { + ["U"] = { 5901 }, + }, + }, + [5160] = { + ["end"] = { + ["U"] = { 10929 }, + }, + ["lvl"] = 60, + ["min"] = 57, + ["start"] = { + ["U"] = { 10740 }, + }, + }, + [5161] = { + ["end"] = { + ["U"] = { 10929 }, + }, + ["lvl"] = 60, + ["min"] = 57, + ["pre"] = { 5160 }, + ["start"] = { + ["U"] = { 10929 }, + }, + }, + [5162] = { + ["end"] = { + ["U"] = { 10976 }, + }, + ["lvl"] = 60, + ["min"] = 57, + ["pre"] = { 5161 }, + ["start"] = { + ["U"] = { 10929 }, + }, + }, + [5163] = { + ["end"] = { + ["U"] = { 10305 }, + }, + ["lvl"] = 58, + ["min"] = 52, + ["obj"] = { + ["IR"] = { 12928 }, + ["U"] = { 7583, 10977, 10978 }, + }, + ["pre"] = { 977 }, + ["start"] = { + ["U"] = { 10305 }, + }, + }, + [5164] = { + ["end"] = { + ["O"] = { 176192 }, + }, + ["lvl"] = 60, + ["min"] = 57, + ["pre"] = { 5162 }, + ["start"] = { + ["U"] = { 10976 }, + }, + }, + [5165] = { + ["end"] = { + ["U"] = { 10922 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["IR"] = { 12906 }, + ["O"] = { 176158, 176159, 176160, 176161 }, + }, + ["pre"] = { 5159 }, + ["start"] = { + ["U"] = { 10922 }, + }, + }, + [5166] = { + ["end"] = { + ["U"] = { 10976 }, + }, + ["lvl"] = 60, + ["min"] = 57, + ["obj"] = { + ["I"] = { 12607, 12735, 12871, 12938 }, + }, + ["pre"] = { 5164 }, + ["start"] = { + ["O"] = { 176192 }, + }, + }, + [5167] = { + ["end"] = { + ["U"] = { 10976 }, + }, + ["lvl"] = 60, + ["min"] = 57, + ["obj"] = { + ["I"] = { 12607, 12753, 12871, 12938 }, + }, + ["pre"] = { 5164 }, + ["start"] = { + ["O"] = { 176192 }, + }, + }, + [5168] = { + ["end"] = { + ["U"] = { 11063 }, + }, + ["lvl"] = 56, + ["min"] = 50, + ["obj"] = { + ["I"] = { 12954, 12955 }, + }, + ["pre"] = { 5210 }, + ["start"] = { + ["U"] = { 11063 }, + }, + }, + [5181] = { + ["end"] = { + ["U"] = { 11063 }, + }, + ["lvl"] = 57, + ["min"] = 50, + ["obj"] = { + ["I"] = { 12956, 12957 }, + }, + ["pre"] = { 5210 }, + ["start"] = { + ["U"] = { 11063 }, + }, + }, + [5201] = { + ["end"] = { + ["U"] = { 10618 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["U"] = { 7438, 7439 }, + }, + ["start"] = { + ["U"] = { 10618 }, + }, + }, + [5202] = { + ["end"] = { + ["U"] = { 11016 }, + }, + ["lvl"] = 55, + ["min"] = 49, + ["start"] = { + ["I"] = { 13140 }, + }, + }, + [5203] = { + ["end"] = { + ["U"] = { 11019 }, + }, + ["lvl"] = 55, + ["min"] = 49, + ["pre"] = { 5202 }, + ["start"] = { + ["U"] = { 11016 }, + }, + }, + [5204] = { + ["end"] = { + ["U"] = { 11020 }, + }, + ["lvl"] = 57, + ["min"] = 49, + ["obj"] = { + ["U"] = { 9518 }, + }, + ["pre"] = { 5203 }, + ["start"] = { + ["U"] = { 11019 }, + }, + }, + [5205] = { + ["lvl"] = 49, + ["min"] = 49, + }, + [5206] = { + ["end"] = { + ["U"] = { 11063 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 13155, 13157 }, + }, + ["pre"] = { 5168, 5181 }, + ["start"] = { + ["U"] = { 11063 }, + }, + }, + [5207] = { + ["lvl"] = 49, + ["min"] = 49, + }, + [5208] = { + ["lvl"] = 49, + ["min"] = 49, + }, + [5209] = { + ["lvl"] = 49, + ["min"] = 49, + }, + [5210] = { + ["end"] = { + ["U"] = { 11063 }, + }, + ["lvl"] = 56, + ["min"] = 50, + ["pre"] = { 5154 }, + ["start"] = { + ["U"] = { 10667 }, + }, + }, + [5211] = { + ["end"] = { + ["U"] = { 11063 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["U"] = { 11064 }, + }, + ["pre"] = { 5241 }, + ["start"] = { + ["U"] = { 11063 }, + }, + }, + [5212] = { + ["end"] = { + ["U"] = { 11035 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 13174 }, + }, + ["start"] = { + ["U"] = { 11035 }, + }, + }, + [5213] = { + ["end"] = { + ["U"] = { 11035 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 13176 }, + }, + ["pre"] = { 5212 }, + ["start"] = { + ["U"] = { 11035 }, + }, + }, + [5214] = { + ["end"] = { + ["U"] = { 11033 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 13172 }, + }, + ["start"] = { + ["U"] = { 11033 }, + }, + }, + [5215] = { + ["end"] = { + ["U"] = { 11053 }, + }, + ["lvl"] = 53, + ["min"] = 50, + ["pre"] = { 5092 }, + ["start"] = { + ["U"] = { 10838 }, + }, + }, + [5216] = { + ["end"] = { + ["O"] = { 176361 }, + }, + ["lvl"] = 53, + ["min"] = 50, + ["obj"] = { + ["I"] = { 13194 }, + }, + ["pre"] = { 5215 }, + ["start"] = { + ["U"] = { 11053 }, + }, + }, + [5217] = { + ["end"] = { + ["U"] = { 11053 }, + }, + ["lvl"] = 53, + ["min"] = 50, + ["pre"] = { 5216 }, + ["start"] = { + ["O"] = { 176361 }, + }, + }, + [5218] = { + ["end"] = { + ["O"] = { 176361 }, + }, + ["lvl"] = 53, + ["min"] = 50, + ["obj"] = { + ["I"] = { 13320, 13357, 14047 }, + }, + ["start"] = { + ["O"] = { 176361 }, + }, + }, + [5219] = { + ["end"] = { + ["O"] = { 177289 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["I"] = { 13195 }, + }, + ["pre"] = { 5217 }, + ["start"] = { + ["U"] = { 11053 }, + }, + }, + [5220] = { + ["end"] = { + ["U"] = { 11053 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["pre"] = { 5219 }, + ["start"] = { + ["O"] = { 177289 }, + }, + }, + [5221] = { + ["end"] = { + ["O"] = { 177289 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["I"] = { 13320, 13356, 14047 }, + }, + ["start"] = { + ["O"] = { 177289 }, + }, + }, + [5222] = { + ["end"] = { + ["O"] = { 176393 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["I"] = { 13197 }, + }, + ["pre"] = { 5220 }, + ["start"] = { + ["U"] = { 11053 }, + }, + }, + [5223] = { + ["end"] = { + ["U"] = { 11053 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["pre"] = { 5222 }, + ["start"] = { + ["O"] = { 176393 }, + }, + }, + [5224] = { + ["end"] = { + ["O"] = { 176393 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["I"] = { 13320, 13356, 14047 }, + }, + ["start"] = { + ["O"] = { 176393 }, + }, + }, + [5225] = { + ["end"] = { + ["O"] = { 176392 }, + }, + ["lvl"] = 58, + ["min"] = 50, + ["obj"] = { + ["I"] = { 13196 }, + }, + ["pre"] = { 5223 }, + ["start"] = { + ["U"] = { 11053 }, + }, + }, + [5226] = { + ["end"] = { + ["U"] = { 11053 }, + }, + ["lvl"] = 58, + ["min"] = 50, + ["pre"] = { 5225 }, + ["start"] = { + ["O"] = { 176392 }, + }, + }, + [5227] = { + ["end"] = { + ["O"] = { 176392 }, + }, + ["lvl"] = 58, + ["min"] = 50, + ["obj"] = { + ["I"] = { 13320, 13354, 14047 }, + }, + ["start"] = { + ["O"] = { 176392 }, + }, + }, + [5228] = { + ["end"] = { + ["U"] = { 11055 }, + }, + ["lvl"] = 53, + ["min"] = 50, + ["pre"] = { 5096 }, + ["start"] = { + ["U"] = { 10837 }, + }, + }, + [5229] = { + ["end"] = { + ["O"] = { 176361 }, + }, + ["lvl"] = 53, + ["min"] = 50, + ["obj"] = { + ["I"] = { 13194 }, + }, + ["pre"] = { 5228 }, + ["start"] = { + ["U"] = { 11055 }, + }, + }, + [5230] = { + ["end"] = { + ["U"] = { 11055 }, + }, + ["lvl"] = 53, + ["min"] = 50, + ["pre"] = { 5229 }, + ["start"] = { + ["O"] = { 176361 }, + }, + }, + [5231] = { + ["end"] = { + ["O"] = { 177289 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["I"] = { 13195 }, + }, + ["pre"] = { 5230 }, + ["start"] = { + ["U"] = { 11055 }, + }, + }, + [5232] = { + ["end"] = { + ["U"] = { 11055 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["pre"] = { 5231 }, + ["start"] = { + ["O"] = { 177289 }, + }, + }, + [5233] = { + ["end"] = { + ["O"] = { 176393 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["I"] = { 13197 }, + }, + ["pre"] = { 5232 }, + ["start"] = { + ["U"] = { 11055 }, + }, + }, + [5234] = { + ["end"] = { + ["U"] = { 11055 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["pre"] = { 5233 }, + ["start"] = { + ["O"] = { 176393 }, + }, + }, + [5235] = { + ["end"] = { + ["O"] = { 176392 }, + }, + ["lvl"] = 58, + ["min"] = 50, + ["obj"] = { + ["I"] = { 13196 }, + }, + ["pre"] = { 5234 }, + ["start"] = { + ["U"] = { 11055 }, + }, + }, + [5236] = { + ["end"] = { + ["U"] = { 11055 }, + }, + ["lvl"] = 58, + ["min"] = 50, + ["pre"] = { 5235 }, + ["start"] = { + ["O"] = { 176392 }, + }, + }, + [5237] = { + ["end"] = { + ["U"] = { 10838 }, + }, + ["lvl"] = 58, + ["min"] = 50, + ["pre"] = { 5226 }, + ["start"] = { + ["U"] = { 10838 }, + }, + }, + [5238] = { + ["end"] = { + ["U"] = { 10837 }, + }, + ["lvl"] = 58, + ["min"] = 50, + ["pre"] = { 5236 }, + ["start"] = { + ["U"] = { 10837 }, + }, + }, + [5241] = { + ["end"] = { + ["U"] = { 11063 }, + }, + ["lvl"] = 56, + ["min"] = 50, + ["pre"] = { 5149 }, + ["start"] = { + ["U"] = { 10926 }, + }, + }, + [5242] = { + ["end"] = { + ["U"] = { 10922 }, + }, + ["lvl"] = 58, + ["min"] = 48, + ["obj"] = { + ["I"] = { 13207 }, + ["U"] = { 9860, 9861 }, + }, + ["pre"] = { 5165 }, + ["start"] = { + ["U"] = { 10922 }, + }, + }, + [5243] = { + ["end"] = { + ["U"] = { 11036 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 13180 }, + }, + ["start"] = { + ["U"] = { 11036 }, + }, + }, + [5244] = { + ["end"] = { + ["U"] = { 10301 }, + }, + ["lvl"] = 56, + ["min"] = 53, + ["pre"] = { 5249, 5250 }, + ["start"] = { + ["U"] = { 11079 }, + }, + }, + [5245] = { + ["end"] = { + ["U"] = { 10304 }, + }, + ["lvl"] = 56, + ["min"] = 53, + ["obj"] = { + ["I"] = { 12896, 12897, 12898, 12899 }, + }, + ["pre"] = { 5244 }, + ["start"] = { + ["U"] = { 10301 }, + }, + }, + [5246] = { + ["end"] = { + ["U"] = { 10304 }, + }, + ["lvl"] = 56, + ["min"] = 53, + ["obj"] = { + ["I"] = { 13313 }, + }, + ["pre"] = { 5245 }, + ["start"] = { + ["U"] = { 10304 }, + }, + }, + [5247] = { + ["end"] = { + ["U"] = { 10304 }, + }, + ["lvl"] = 57, + ["min"] = 53, + ["obj"] = { + ["I"] = { 11562, 12655, 16973 }, + ["IR"] = { 16974 }, + }, + ["pre"] = { 5246 }, + ["start"] = { + ["U"] = { 10304 }, + }, + }, + [5248] = { + ["end"] = { + ["U"] = { 10684 }, + }, + ["lvl"] = 58, + ["min"] = 53, + ["pre"] = { 5247 }, + ["start"] = { + ["U"] = { 10304 }, + }, + }, + [5249] = { + ["close"] = { 5249, 5250 }, + ["end"] = { + ["U"] = { 11079 }, + }, + ["lvl"] = 56, + ["min"] = 53, + ["race"] = 77, + ["start"] = { + ["U"] = { 10924 }, + }, + }, + [5250] = { + ["close"] = { 5249, 5250 }, + ["end"] = { + ["U"] = { 11079 }, + }, + ["lvl"] = 56, + ["min"] = 53, + ["start"] = { + ["U"] = { 7907 }, + }, + }, + [5251] = { + ["end"] = { + ["U"] = { 11039 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["O"] = { 176245 }, + ["U"] = { 10811 }, + }, + ["start"] = { + ["U"] = { 11039 }, + }, + }, + [5252] = { + ["end"] = { + ["U"] = { 11079 }, + }, + ["lvl"] = 58, + ["min"] = 53, + ["pre"] = { 5248 }, + ["start"] = { + ["U"] = { 10684 }, + }, + }, + [5253] = { + ["end"] = { + ["U"] = { 3516 }, + }, + ["lvl"] = 58, + ["min"] = 53, + ["pre"] = { 5252 }, + ["start"] = { + ["U"] = { 11079 }, + }, + }, + [5261] = { + ["end"] = { + ["U"] = { 196 }, + }, + ["lvl"] = 2, + ["min"] = 1, + ["pre"] = { 783 }, + ["start"] = { + ["U"] = { 823 }, + }, + }, + [5262] = { + ["end"] = { + ["U"] = { 11039 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["pre"] = { 5251 }, + ["start"] = { + ["I"] = { 13250 }, + }, + }, + [5263] = { + ["end"] = { + ["U"] = { 11039 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 13251 }, + }, + ["pre"] = { 5262 }, + ["start"] = { + ["U"] = { 11039 }, + }, + }, + [5264] = { + ["end"] = { + ["U"] = { 11034 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["pre"] = { 5263 }, + ["start"] = { + ["U"] = { 11039 }, + }, + }, + [5265] = { + ["end"] = { + ["O"] = { 176317 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["pre"] = { 5264 }, + ["start"] = { + ["U"] = { 11034 }, + }, + }, + [5281] = { + ["end"] = { + ["U"] = { 11140 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["start"] = { + ["U"] = { 11038 }, + }, + }, + [5282] = { + ["end"] = { + ["U"] = { 11140 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["IR"] = { 13289 }, + ["U"] = { 11122 }, + }, + ["pre"] = { 5281 }, + ["start"] = { + ["U"] = { 11140 }, + }, + }, + [5283] = { + ["close"] = { 5283, 5284 }, + ["end"] = { + ["U"] = { 5164 }, + }, + ["lvl"] = 40, + ["min"] = 40, + ["obj"] = { + ["I"] = { 7935, 7936, 7937 }, + }, + ["skill"] = 164, + ["start"] = { + ["U"] = { 5164 }, + }, + }, + [5284] = { + ["close"] = { 5283, 5284 }, + ["end"] = { + ["U"] = { 11146 }, + }, + ["lvl"] = 40, + ["min"] = 40, + ["obj"] = { + ["I"] = { 3853, 3855, 7941, 7945 }, + }, + ["skill"] = 164, + ["start"] = { + ["U"] = { 11146 }, + }, + }, + [5301] = { + ["close"] = { 5301, 5302 }, + ["end"] = { + ["U"] = { 11177 }, + }, + ["lvl"] = 40, + ["min"] = 40, + ["obj"] = { + ["I"] = { 7935, 7936, 7937 }, + }, + ["skill"] = 164, + ["start"] = { + ["U"] = { 11177 }, + }, + }, + [5302] = { + ["close"] = { 5301, 5302 }, + ["end"] = { + ["U"] = { 11178 }, + }, + ["lvl"] = 40, + ["min"] = 40, + ["obj"] = { + ["I"] = { 3853, 3855, 7941, 7945 }, + }, + ["skill"] = 164, + ["start"] = { + ["U"] = { 11178 }, + }, + }, + [5305] = { + ["end"] = { + ["U"] = { 11191 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 13351 }, + }, + ["skill"] = 164, + ["start"] = { + ["U"] = { 11191 }, + }, + }, + [5306] = { + ["end"] = { + ["U"] = { 11192 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 13352 }, + }, + ["skill"] = 164, + ["start"] = { + ["U"] = { 11192 }, + }, + }, + [5307] = { + ["end"] = { + ["U"] = { 11193 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 13350 }, + }, + ["skill"] = 164, + ["start"] = { + ["U"] = { 11193 }, + }, + }, + [5321] = { + ["end"] = { + ["U"] = { 11219 }, + }, + ["lvl"] = 20, + ["min"] = 17, + ["obj"] = { + ["I"] = { 13536 }, + ["IR"] = { 13536 }, + }, + ["start"] = { + ["U"] = { 11218 }, + }, + }, + [5341] = { + ["end"] = { + ["U"] = { 11022 }, + }, + ["lvl"] = 60, + ["min"] = 52, + ["obj"] = { + ["I"] = { 13448, 13450, 13451, 13471 }, + }, + ["start"] = { + ["U"] = { 11022 }, + }, + }, + [5342] = { + ["end"] = { + ["U"] = { 11022 }, + }, + ["lvl"] = 60, + ["min"] = 52, + ["obj"] = { + ["I"] = { 13469 }, + }, + ["pre"] = { 5341 }, + ["start"] = { + ["U"] = { 11022 }, + }, + }, + [5343] = { + ["end"] = { + ["U"] = { 11023 }, + }, + ["lvl"] = 60, + ["min"] = 52, + ["obj"] = { + ["I"] = { 13448, 13450, 13451, 13471 }, + }, + ["start"] = { + ["U"] = { 11023 }, + }, + }, + [5344] = { + ["end"] = { + ["U"] = { 11023 }, + }, + ["lvl"] = 60, + ["min"] = 52, + ["obj"] = { + ["I"] = { 13470 }, + }, + ["pre"] = { 5343 }, + ["start"] = { + ["U"] = { 11023 }, + }, + }, + [5361] = { + ["end"] = { + ["U"] = { 11259 }, + }, + ["lvl"] = 35, + ["min"] = 32, + ["start"] = { + ["U"] = { 10537 }, + }, + }, + [5381] = { + ["end"] = { + ["U"] = { 11624 }, + }, + ["lvl"] = 38, + ["min"] = 32, + ["obj"] = { + ["I"] = { 13542 }, + ["IR"] = { 14523 }, + }, + ["start"] = { + ["U"] = { 11624 }, + }, + }, + [5382] = { + ["end"] = { + ["U"] = { 11216 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["O"] = { 176544, 176545 }, + ["U"] = { 11261 }, + }, + ["start"] = { + ["U"] = { 11216 }, + }, + }, + [5383] = { + ["lvl"] = 60, + ["min"] = 55, + ["race"] = 255, + }, + [5384] = { + ["end"] = { + ["U"] = { 11216 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["U"] = { 10506 }, + }, + ["pre"] = { 5383, 5515 }, + ["start"] = { + ["U"] = { 11216 }, + }, + }, + [5385] = { + ["end"] = { + ["U"] = { 11019 }, + }, + ["lvl"] = 57, + ["min"] = 49, + ["pre"] = { 5204 }, + ["start"] = { + ["U"] = { 11020 }, + }, + }, + [5386] = { + ["end"] = { + ["U"] = { 11259 }, + }, + ["lvl"] = 37, + ["min"] = 32, + ["obj"] = { + ["I"] = { 13546 }, + }, + ["start"] = { + ["U"] = { 11259 }, + }, + }, + [5401] = { + ["close"] = { 5401, 5405, 5503 }, + ["end"] = { + ["U"] = { 10840 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["start"] = { + ["U"] = { 10840 }, + }, + }, + [5402] = { + ["end"] = { + ["U"] = { 10840 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["I"] = { 12840 }, + }, + ["start"] = { + ["U"] = { 10840 }, + }, + }, + [5403] = { + ["end"] = { + ["U"] = { 10840 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["I"] = { 12841 }, + }, + ["start"] = { + ["U"] = { 10840 }, + }, + }, + [5404] = { + ["end"] = { + ["U"] = { 10840 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["I"] = { 12843 }, + }, + ["start"] = { + ["U"] = { 10840 }, + }, + }, + [5405] = { + ["close"] = { 5401, 5405, 5503 }, + ["end"] = { + ["U"] = { 10839 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["start"] = { + ["U"] = { 10839 }, + }, + }, + [5406] = { + ["end"] = { + ["U"] = { 10839 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["I"] = { 12843 }, + }, + ["start"] = { + ["U"] = { 10839 }, + }, + }, + [5407] = { + ["end"] = { + ["U"] = { 10839 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["I"] = { 12841 }, + }, + ["start"] = { + ["U"] = { 10839 }, + }, + }, + [5408] = { + ["end"] = { + ["U"] = { 10839 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["I"] = { 12840 }, + }, + ["start"] = { + ["U"] = { 10839 }, + }, + }, + [5421] = { + ["end"] = { + ["U"] = { 11317 }, + }, + ["lvl"] = 25, + ["min"] = 25, + ["obj"] = { + ["I"] = { 13545 }, + }, + ["start"] = { + ["U"] = { 11317 }, + }, + }, + [5441] = { + ["end"] = { + ["U"] = { 11378 }, + }, + ["lvl"] = 4, + ["min"] = 3, + ["obj"] = { + ["U"] = { 10556 }, + }, + ["start"] = { + ["U"] = { 11378 }, + }, + }, + [5461] = { + ["end"] = { + ["U"] = { 11286 }, + }, + ["lvl"] = 60, + ["min"] = 57, + ["obj"] = { + ["I"] = { 13585 }, + }, + ["pre"] = { 5384 }, + ["start"] = { + ["U"] = { 11286 }, + }, + }, + [5462] = { + ["end"] = { + ["U"] = { 11036 }, + }, + ["lvl"] = 60, + ["min"] = 57, + ["pre"] = { 5461 }, + ["start"] = { + ["U"] = { 11286 }, + }, + }, + [5463] = { + ["end"] = { + ["O"] = { 176631 }, + }, + ["lvl"] = 60, + ["min"] = 57, + ["pre"] = { 5462 }, + ["start"] = { + ["U"] = { 11036 }, + }, + }, + [5464] = { + ["end"] = { + ["U"] = { 11036 }, + }, + ["lvl"] = 60, + ["min"] = 57, + ["pre"] = { 5463 }, + ["start"] = { + ["O"] = { 176631 }, + }, + }, + [5465] = { + ["end"] = { + ["U"] = { 11286 }, + }, + ["lvl"] = 60, + ["min"] = 57, + ["pre"] = { 5464 }, + ["start"] = { + ["U"] = { 11036 }, + }, + }, + [5466] = { + ["end"] = { + ["U"] = { 11286 }, + }, + ["lvl"] = 60, + ["min"] = 57, + ["obj"] = { + ["I"] = { 13626 }, + ["IR"] = { 13752 }, + }, + ["pre"] = { 5465 }, + ["start"] = { + ["U"] = { 11286 }, + }, + }, + [5481] = { + ["end"] = { + ["U"] = { 10665 }, + }, + ["lvl"] = 5, + ["min"] = 5, + ["obj"] = { + ["I"] = { 12737 }, + }, + ["start"] = { + ["U"] = { 10666 }, + }, + }, + [5482] = { + ["end"] = { + ["U"] = { 10665 }, + }, + ["lvl"] = 6, + ["min"] = 5, + ["obj"] = { + ["I"] = { 13702 }, + }, + ["pre"] = { 5481 }, + ["start"] = { + ["U"] = { 10665 }, + }, + }, + [5501] = { + ["end"] = { + ["U"] = { 11438 }, + }, + ["lvl"] = 39, + ["min"] = 33, + ["obj"] = { + ["I"] = { 13703 }, + }, + ["start"] = { + ["U"] = { 11438 }, + }, + }, + [5502] = { + ["end"] = { + ["U"] = { 14451 }, + }, + ["lvl"] = 60, + ["min"] = 10, + ["obj"] = { + ["I"] = { 18597 }, + }, + ["pre"] = { 915, 925 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 14444 }, + }, + }, + [5503] = { + ["close"] = { 5401, 5405, 5503 }, + ["end"] = { + ["U"] = { 11039 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["start"] = { + ["U"] = { 11039 }, + }, + }, + [5504] = { + ["close"] = { 5504, 5507, 5513 }, + ["end"] = { + ["U"] = { 10856 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 12844 }, + }, + ["start"] = { + ["U"] = { 10856 }, + }, + }, + [5505] = { + ["end"] = { + ["U"] = { 11056 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["pre"] = { 5803 }, + ["start"] = { + ["U"] = { 11056 }, + }, + }, + [5506] = { + ["lvl"] = 56, + ["min"] = 50, + }, + [5507] = { + ["close"] = { 5504, 5507, 5513 }, + ["end"] = { + ["U"] = { 10857 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 12844 }, + }, + ["start"] = { + ["U"] = { 10857 }, + }, + }, + [5508] = { + ["end"] = { + ["U"] = { 11039 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["I"] = { 12843 }, + }, + ["start"] = { + ["U"] = { 11039 }, + }, + }, + [5509] = { + ["end"] = { + ["U"] = { 11039 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["I"] = { 12841 }, + }, + ["start"] = { + ["U"] = { 11039 }, + }, + }, + [5510] = { + ["end"] = { + ["U"] = { 11039 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["I"] = { 12840 }, + }, + ["start"] = { + ["U"] = { 11039 }, + }, + }, + [5511] = { + ["end"] = { + ["U"] = { 11057 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["pre"] = { 5804 }, + ["start"] = { + ["U"] = { 11057 }, + }, + }, + [5512] = { + ["lvl"] = 56, + ["min"] = 50, + }, + [5513] = { + ["close"] = { 5504, 5507, 5513 }, + ["end"] = { + ["U"] = { 11536 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 12844 }, + }, + ["start"] = { + ["U"] = { 11536 }, + }, + }, + [5514] = { + ["end"] = { + ["U"] = { 5411 }, + }, + ["lvl"] = 57, + ["min"] = 55, + ["pre"] = { 964 }, + ["start"] = { + ["U"] = { 11057 }, + }, + }, + [5515] = { + ["end"] = { + ["U"] = { 11216 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 13725 }, + }, + ["pre"] = { 5382 }, + ["start"] = { + ["U"] = { 11216 }, + }, + }, + [5516] = { + ["lvl"] = 58, + ["min"] = 53, + }, + [5517] = { + ["close"] = { 5517, 5521, 5524 }, + ["end"] = { + ["U"] = { 11536 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 12844 }, + }, + ["start"] = { + ["U"] = { 11536 }, + }, + }, + [5518] = { + ["end"] = { + ["U"] = { 14338 }, + }, + ["lvl"] = 60, + ["min"] = 56, + ["obj"] = { + ["I"] = { 8170, 14048, 14341, 18240 }, + }, + ["start"] = { + ["U"] = { 14338 }, + }, + }, + [5519] = { + ["end"] = { + ["U"] = { 14338 }, + }, + ["lvl"] = 60, + ["min"] = 56, + ["obj"] = { + ["I"] = { 8170, 14048, 14341, 18240 }, + }, + ["pre"] = { 5518 }, + ["start"] = { + ["U"] = { 14338 }, + }, + }, + [5520] = { + ["lvl"] = 58, + ["min"] = 53, + }, + [5521] = { + ["close"] = { 5517, 5521, 5524 }, + ["end"] = { + ["U"] = { 10857 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 12844 }, + }, + ["start"] = { + ["U"] = { 10857 }, + }, + }, + [5522] = { + ["end"] = { + ["U"] = { 11036 }, + }, + ["lvl"] = 60, + ["min"] = 57, + ["pre"] = { 4735 }, + ["start"] = { + ["U"] = { 10267 }, + }, + }, + [5523] = { + ["lvl"] = 58, + ["min"] = 53, + }, + [5524] = { + ["close"] = { 5517, 5521, 5524 }, + ["end"] = { + ["U"] = { 10856 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 12844 }, + }, + ["start"] = { + ["U"] = { 10856 }, + }, + }, + [5525] = { + ["end"] = { + ["U"] = { 14338 }, + }, + ["lvl"] = 60, + ["min"] = 56, + ["obj"] = { + ["I"] = { 18250 }, + }, + ["start"] = { + ["U"] = { 14338 }, + }, + }, + [5526] = { + ["end"] = { + ["U"] = { 11801 }, + }, + ["lvl"] = 60, + ["min"] = 56, + ["obj"] = { + ["I"] = { 18501, 18540 }, + }, + ["pre"] = { 5527 }, + ["start"] = { + ["U"] = { 11801 }, + }, + }, + [5527] = { + ["end"] = { + ["U"] = { 11801 }, + }, + ["lvl"] = 60, + ["min"] = 56, + ["obj"] = { + ["I"] = { 22201 }, + }, + ["start"] = { + ["U"] = { 11801 }, + }, + }, + [5528] = { + ["end"] = { + ["U"] = { 14322 }, + }, + ["lvl"] = 60, + ["min"] = 56, + ["start"] = { + ["U"] = { 14322 }, + }, + }, + [5529] = { + ["end"] = { + ["U"] = { 11035 }, + }, + ["lvl"] = 58, + ["min"] = 55, + ["obj"] = { + ["U"] = { 10678 }, + }, + ["start"] = { + ["U"] = { 11035 }, + }, + }, + [5530] = { + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 12844 }, + }, + }, + [5531] = { + ["end"] = { + ["U"] = { 11035 }, + }, + ["lvl"] = 60, + ["min"] = 57, + ["pre"] = { 5522 }, + ["start"] = { + ["U"] = { 11036 }, + }, + }, + [5532] = { + ["lvl"] = 58, + ["min"] = 53, + ["obj"] = { + ["I"] = { 12844 }, + }, + }, + [5533] = { + ["end"] = { + ["U"] = { 11056 }, + }, + ["lvl"] = 55, + ["min"] = 55, + ["pre"] = { 5097 }, + ["start"] = { + ["U"] = { 10838 }, + }, + }, + [5534] = { + ["end"] = { + ["U"] = { 8420 }, + }, + ["lvl"] = 53, + ["min"] = 47, + ["obj"] = { + ["I"] = { 13815 }, + }, + ["pre"] = { 3601 }, + ["start"] = { + ["U"] = { 8420 }, + }, + }, + [5535] = { + ["end"] = { + ["U"] = { 11548 }, + }, + ["lvl"] = 47, + ["min"] = 45, + ["obj"] = { + ["U"] = { 6116, 6117 }, + }, + ["start"] = { + ["U"] = { 11548 }, + }, + }, + [5536] = { + ["end"] = { + ["U"] = { 11548 }, + }, + ["lvl"] = 47, + ["min"] = 45, + ["obj"] = { + ["U"] = { 6125, 6126, 6127 }, + }, + ["start"] = { + ["U"] = { 11548 }, + }, + }, + [5537] = { + ["end"] = { + ["U"] = { 11056 }, + }, + ["lvl"] = 57, + ["min"] = 55, + ["obj"] = { + ["I"] = { 14619 }, + }, + ["pre"] = { 5533 }, + ["start"] = { + ["U"] = { 11056 }, + }, + }, + [5538] = { + ["end"] = { + ["U"] = { 5411 }, + }, + ["lvl"] = 57, + ["min"] = 55, + ["pre"] = { 5537 }, + ["start"] = { + ["U"] = { 11056 }, + }, + }, + [5541] = { + ["end"] = { + ["U"] = { 1243 }, + }, + ["lvl"] = 6, + ["min"] = 5, + ["obj"] = { + ["I"] = { 13850 }, + }, + ["start"] = { + ["U"] = { 1694 }, + }, + }, + [5542] = { + ["end"] = { + ["U"] = { 1855 }, + }, + ["lvl"] = 56, + ["min"] = 52, + ["obj"] = { + ["U"] = { 8596, 8597, 8598 }, + }, + ["start"] = { + ["U"] = { 1855 }, + }, + }, + [5543] = { + ["end"] = { + ["U"] = { 1855 }, + }, + ["lvl"] = 56, + ["min"] = 52, + ["obj"] = { + ["U"] = { 8600 }, + }, + ["start"] = { + ["U"] = { 1855 }, + }, + }, + [5544] = { + ["end"] = { + ["U"] = { 1855 }, + }, + ["lvl"] = 56, + ["min"] = 52, + ["obj"] = { + ["I"] = { 13853 }, + }, + ["start"] = { + ["U"] = { 1855 }, + }, + }, + [5545] = { + ["end"] = { + ["U"] = { 10616 }, + }, + ["lvl"] = 9, + ["min"] = 5, + ["obj"] = { + ["I"] = { 13872 }, + }, + ["start"] = { + ["U"] = { 10616 }, + }, + }, + [5561] = { + ["end"] = { + ["U"] = { 11596 }, + }, + ["lvl"] = 34, + ["min"] = 30, + ["obj"] = { + ["U"] = { 11627 }, + }, + ["start"] = { + ["U"] = { 11596 }, + }, + }, + [5581] = { + ["end"] = { + ["U"] = { 11624 }, + }, + ["lvl"] = 38, + ["min"] = 32, + ["obj"] = { + ["IR"] = { 14547 }, + ["U"] = { 11937 }, + }, + ["pre"] = { 5381 }, + ["start"] = { + ["U"] = { 11624 }, + }, + }, + [5582] = { + ["end"] = { + ["U"] = { 11035 }, + }, + ["lvl"] = 58, + ["min"] = 55, + ["pre"] = { 5529 }, + ["start"] = { + ["I"] = { 13920 }, + }, + }, + [5601] = { + ["close"] = { 5142, 5601 }, + ["end"] = { + ["U"] = { 10926 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["start"] = { + ["U"] = { 11629 }, + }, + }, + [5621] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 3600 }, + }, + ["lvl"] = 4, + ["min"] = 5, + ["obj"] = { + ["U"] = { 12429 }, + }, + ["pre"] = { 5622 }, + ["race"] = 8, + ["start"] = { + ["U"] = { 3600 }, + }, + }, + [5622] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 3600 }, + }, + ["lvl"] = 4, + ["min"] = 5, + ["race"] = 8, + ["start"] = { + ["U"] = { 3595 }, + }, + }, + [5623] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 377 }, + }, + ["lvl"] = 4, + ["min"] = 5, + ["race"] = 1, + ["start"] = { + ["U"] = { 375 }, + }, + }, + [5624] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 377 }, + }, + ["lvl"] = 4, + ["min"] = 5, + ["obj"] = { + ["U"] = { 12423 }, + }, + ["pre"] = { 5623 }, + ["race"] = 1, + ["start"] = { + ["U"] = { 377 }, + }, + }, + [5625] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 1226 }, + }, + ["lvl"] = 4, + ["min"] = 5, + ["obj"] = { + ["U"] = { 12427 }, + }, + ["pre"] = { 5626 }, + ["race"] = 4, + ["start"] = { + ["U"] = { 1226 }, + }, + }, + [5626] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 1226 }, + }, + ["lvl"] = 4, + ["min"] = 5, + ["race"] = 4, + ["start"] = { + ["U"] = { 837 }, + }, + }, + [5627] = { + ["class"] = 16, + ["close"] = { 5627, 5628, 5629, 5630, 5631, 5632, 5633 }, + ["end"] = { + ["U"] = { 11401 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 8, + ["start"] = { + ["U"] = { 11401 }, + }, + }, + [5628] = { + ["class"] = 16, + ["close"] = { 5627, 5628, 5629, 5630, 5631, 5632, 5633 }, + ["end"] = { + ["U"] = { 11401 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 8, + ["start"] = { + ["U"] = { 377 }, + }, + }, + [5629] = { + ["class"] = 16, + ["close"] = { 5627, 5628, 5629, 5630, 5631, 5632, 5633 }, + ["end"] = { + ["U"] = { 11401 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 8, + ["start"] = { + ["U"] = { 3600 }, + }, + }, + [5630] = { + ["class"] = 16, + ["close"] = { 5627, 5628, 5629, 5630, 5631, 5632, 5633 }, + ["end"] = { + ["U"] = { 11401 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 8, + ["start"] = { + ["U"] = { 1226 }, + }, + }, + [5631] = { + ["class"] = 16, + ["close"] = { 5627, 5628, 5629, 5630, 5631, 5632, 5633 }, + ["end"] = { + ["U"] = { 11401 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 8, + ["start"] = { + ["U"] = { 5489 }, + }, + }, + [5632] = { + ["class"] = 16, + ["close"] = { 5627, 5628, 5629, 5630, 5631, 5632, 5633 }, + ["end"] = { + ["U"] = { 11401 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 8, + ["start"] = { + ["U"] = { 11397 }, + }, + }, + [5633] = { + ["class"] = 16, + ["close"] = { 5627, 5628, 5629, 5630, 5631, 5632, 5633 }, + ["end"] = { + ["U"] = { 11401 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 8, + ["start"] = { + ["U"] = { 5142 }, + }, + }, + [5634] = { + ["class"] = 16, + ["close"] = { 5634, 5635, 5636, 5637, 5638, 5639, 5640 }, + ["end"] = { + ["U"] = { 376 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 5, + ["start"] = { + ["U"] = { 376 }, + }, + }, + [5635] = { + ["class"] = 16, + ["close"] = { 5634, 5635, 5636, 5637, 5638, 5639, 5640 }, + ["end"] = { + ["U"] = { 376 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 5, + ["start"] = { + ["U"] = { 377 }, + }, + }, + [5636] = { + ["class"] = 16, + ["close"] = { 5634, 5635, 5636, 5637, 5638, 5639, 5640 }, + ["end"] = { + ["U"] = { 376 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 5, + ["start"] = { + ["U"] = { 3600 }, + }, + }, + [5637] = { + ["class"] = 16, + ["close"] = { 5634, 5635, 5636, 5637, 5638, 5639, 5640 }, + ["end"] = { + ["U"] = { 376 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 5, + ["start"] = { + ["U"] = { 1226 }, + }, + }, + [5638] = { + ["class"] = 16, + ["close"] = { 5634, 5635, 5636, 5637, 5638, 5639, 5640 }, + ["end"] = { + ["U"] = { 376 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 5, + ["start"] = { + ["U"] = { 11397 }, + }, + }, + [5639] = { + ["class"] = 16, + ["close"] = { 5634, 5635, 5636, 5637, 5638, 5639, 5640 }, + ["end"] = { + ["U"] = { 376 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 5, + ["start"] = { + ["U"] = { 11406 }, + }, + }, + [5640] = { + ["class"] = 16, + ["close"] = { 5634, 5635, 5636, 5637, 5638, 5639, 5640 }, + ["end"] = { + ["U"] = { 376 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 5, + ["start"] = { + ["U"] = { 11401 }, + }, + }, + [5641] = { + ["class"] = 16, + ["close"] = { 5641, 5645, 5647 }, + ["end"] = { + ["U"] = { 11406 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["race"] = 4, + ["start"] = { + ["U"] = { 11406 }, + }, + }, + [5642] = { + ["class"] = 16, + ["close"] = { 5642, 5643, 5680 }, + ["end"] = { + ["U"] = { 6018 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["race"] = 128, + ["start"] = { + ["U"] = { 3044 }, + }, + }, + [5643] = { + ["class"] = 16, + ["close"] = { 5642, 5643, 5680 }, + ["end"] = { + ["U"] = { 6018 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["race"] = 128, + ["start"] = { + ["U"] = { 4606 }, + }, + }, + [5644] = { + ["class"] = 16, + ["close"] = { 5644, 5646, 5679 }, + ["end"] = { + ["U"] = { 4606 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["race"] = 16, + ["start"] = { + ["U"] = { 3044 }, + }, + }, + [5645] = { + ["class"] = 16, + ["close"] = { 5641, 5645, 5647 }, + ["end"] = { + ["U"] = { 11406 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["race"] = 4, + ["start"] = { + ["U"] = { 376 }, + }, + }, + [5646] = { + ["class"] = 16, + ["close"] = { 5644, 5646, 5679 }, + ["end"] = { + ["U"] = { 4606 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["race"] = 16, + ["start"] = { + ["U"] = { 6018 }, + }, + }, + [5647] = { + ["class"] = 16, + ["close"] = { 5641, 5645, 5647 }, + ["end"] = { + ["U"] = { 11406 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["race"] = 4, + ["start"] = { + ["U"] = { 11401 }, + }, + }, + [5648] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 3706 }, + }, + ["lvl"] = 4, + ["min"] = 5, + ["obj"] = { + ["U"] = { 12430 }, + }, + ["pre"] = { 5649 }, + ["race"] = 128, + ["start"] = { + ["U"] = { 3706 }, + }, + }, + [5649] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 3706 }, + }, + ["lvl"] = 4, + ["min"] = 5, + ["race"] = 128, + ["start"] = { + ["U"] = { 3707 }, + }, + }, + [5650] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 2129 }, + }, + ["lvl"] = 4, + ["min"] = 5, + ["obj"] = { + ["U"] = { 12428 }, + }, + ["pre"] = { 5651 }, + ["race"] = 16, + ["start"] = { + ["U"] = { 2129 }, + }, + }, + [5651] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 2129 }, + }, + ["lvl"] = 4, + ["min"] = 5, + ["race"] = 16, + ["start"] = { + ["U"] = { 2123 }, + }, + }, + [5652] = { + ["class"] = 16, + ["close"] = { 5652, 5654, 5655, 5656, 5657 }, + ["end"] = { + ["U"] = { 6018 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 128, + ["start"] = { + ["U"] = { 6018 }, + }, + }, + [5654] = { + ["class"] = 16, + ["close"] = { 5652, 5654, 5655, 5656, 5657 }, + ["end"] = { + ["U"] = { 6018 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 128, + ["start"] = { + ["U"] = { 3706 }, + }, + }, + [5655] = { + ["class"] = 16, + ["close"] = { 5652, 5654, 5655, 5656, 5657 }, + ["end"] = { + ["U"] = { 6018 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 128, + ["start"] = { + ["U"] = { 11407 }, + }, + }, + [5656] = { + ["class"] = 16, + ["close"] = { 5652, 5654, 5655, 5656, 5657 }, + ["end"] = { + ["U"] = { 6018 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 128, + ["start"] = { + ["U"] = { 3044 }, + }, + }, + [5657] = { + ["class"] = 16, + ["close"] = { 5652, 5654, 5655, 5656, 5657 }, + ["end"] = { + ["U"] = { 6018 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 128, + ["start"] = { + ["U"] = { 4606 }, + }, + }, + [5658] = { + ["class"] = 16, + ["close"] = { 5658, 5659, 5660, 5661, 5662, 5663 }, + ["end"] = { + ["U"] = { 4606 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 16, + ["start"] = { + ["U"] = { 4606 }, + }, + }, + [5659] = { + ["class"] = 16, + ["close"] = { 5658, 5659, 5660, 5661, 5662, 5663 }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 144, + }, + [5660] = { + ["class"] = 16, + ["close"] = { 5658, 5659, 5660, 5661, 5662, 5663 }, + ["end"] = { + ["U"] = { 4606 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 16, + ["start"] = { + ["U"] = { 3706 }, + }, + }, + [5661] = { + ["class"] = 16, + ["close"] = { 5658, 5659, 5660, 5661, 5662, 5663 }, + ["end"] = { + ["U"] = { 4606 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 16, + ["start"] = { + ["U"] = { 11407 }, + }, + }, + [5662] = { + ["class"] = 16, + ["close"] = { 5658, 5659, 5660, 5661, 5662, 5663 }, + ["end"] = { + ["U"] = { 4606 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 16, + ["start"] = { + ["U"] = { 6018 }, + }, + }, + [5663] = { + ["class"] = 16, + ["close"] = { 5658, 5659, 5660, 5661, 5662, 5663 }, + ["end"] = { + ["U"] = { 4606 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 16, + ["start"] = { + ["U"] = { 3044 }, + }, + }, + [5672] = { + ["class"] = 16, + ["close"] = { 5672, 5673, 5674, 5675 }, + ["end"] = { + ["U"] = { 11401 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["race"] = 8, + ["start"] = { + ["U"] = { 11401 }, + }, + }, + [5673] = { + ["class"] = 16, + ["close"] = { 5672, 5673, 5674, 5675 }, + ["end"] = { + ["U"] = { 11401 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["race"] = 8, + ["start"] = { + ["U"] = { 376 }, + }, + }, + [5674] = { + ["class"] = 16, + ["close"] = { 5672, 5673, 5674, 5675 }, + ["end"] = { + ["U"] = { 11401 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["race"] = 8, + ["start"] = { + ["U"] = { 3600 }, + }, + }, + [5675] = { + ["class"] = 16, + ["close"] = { 5672, 5673, 5674, 5675 }, + ["end"] = { + ["U"] = { 11401 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["race"] = 8, + ["start"] = { + ["U"] = { 11406 }, + }, + }, + [5676] = { + ["class"] = 16, + ["close"] = { 5676, 5677, 5678 }, + ["end"] = { + ["U"] = { 376 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["race"] = 1, + ["start"] = { + ["U"] = { 376 }, + }, + }, + [5677] = { + ["class"] = 16, + ["close"] = { 5676, 5677, 5678 }, + ["end"] = { + ["U"] = { 376 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["race"] = 1, + ["start"] = { + ["U"] = { 11406 }, + }, + }, + [5678] = { + ["class"] = 16, + ["close"] = { 5676, 5677, 5678 }, + ["end"] = { + ["U"] = { 376 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["race"] = 1, + ["start"] = { + ["U"] = { 11401 }, + }, + }, + [5679] = { + ["class"] = 16, + ["close"] = { 5644, 5646, 5679 }, + ["end"] = { + ["U"] = { 4606 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["race"] = 16, + ["start"] = { + ["U"] = { 4606 }, + }, + }, + [5680] = { + ["class"] = 16, + ["close"] = { 5642, 5643, 5680 }, + ["end"] = { + ["U"] = { 6018 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["race"] = 128, + ["start"] = { + ["U"] = { 6018 }, + }, + }, + [5713] = { + ["end"] = { + ["U"] = { 11806 }, + }, + ["lvl"] = 15, + ["min"] = 10, + ["start"] = { + ["U"] = { 11711 }, + }, + }, + [5721] = { + ["end"] = { + ["U"] = { 10926 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["IR"] = { 15209 }, + ["U"] = { 10936 }, + }, + ["pre"] = { 5941 }, + ["start"] = { + ["U"] = { 10667 }, + }, + }, + [5722] = { + ["end"] = { + ["U"] = { 11834 }, + }, + ["lvl"] = 16, + ["min"] = 9, + ["start"] = { + ["U"] = { 11833 }, + }, + }, + [5723] = { + ["end"] = { + ["U"] = { 11833 }, + }, + ["lvl"] = 15, + ["min"] = 9, + ["obj"] = { + ["U"] = { 11318, 11319 }, + }, + ["start"] = { + ["U"] = { 11833 }, + }, + }, + [5724] = { + ["end"] = { + ["U"] = { 11833 }, + }, + ["lvl"] = 16, + ["min"] = 9, + ["pre"] = { 5722 }, + ["start"] = { + ["U"] = { 11834 }, + }, + }, + [5725] = { + ["end"] = { + ["U"] = { 2425 }, + }, + ["lvl"] = 16, + ["min"] = 9, + ["obj"] = { + ["I"] = { 14395, 14396 }, + }, + ["start"] = { + ["U"] = { 2425 }, + }, + }, + [5726] = { + ["end"] = { + ["U"] = { 4949 }, + }, + ["lvl"] = 12, + ["min"] = 9, + ["obj"] = { + ["I"] = { 14544 }, + }, + ["start"] = { + ["U"] = { 4949 }, + }, + }, + [5727] = { + ["end"] = { + ["U"] = { 4949 }, + }, + ["lvl"] = 12, + ["min"] = 9, + ["pre"] = { 5726 }, + ["start"] = { + ["U"] = { 4949 }, + }, + }, + [5728] = { + ["end"] = { + ["U"] = { 4949 }, + }, + ["lvl"] = 16, + ["min"] = 9, + ["obj"] = { + ["U"] = { 11518, 11519 }, + }, + ["pre"] = { 5727 }, + ["start"] = { + ["U"] = { 4949 }, + }, + }, + [5729] = { + ["end"] = { + ["U"] = { 3216 }, + }, + ["lvl"] = 15, + ["min"] = 9, + ["pre"] = { 5728 }, + ["start"] = { + ["U"] = { 4949 }, + }, + }, + [5730] = { + ["end"] = { + ["U"] = { 4949 }, + }, + ["lvl"] = 16, + ["min"] = 9, + ["pre"] = { 5729 }, + ["start"] = { + ["U"] = { 3216 }, + }, + }, + [5741] = { + ["end"] = { + ["U"] = { 11863 }, + }, + ["lvl"] = 33, + ["min"] = 30, + ["obj"] = { + ["I"] = { 15750 }, + }, + ["start"] = { + ["U"] = { 11863 }, + }, + }, + [5742] = { + ["end"] = { + ["U"] = { 1855 }, + }, + ["lvl"] = 56, + ["min"] = 52, + ["pre"] = { 5542 }, + ["start"] = { + ["U"] = { 1855 }, + }, + }, + [5761] = { + ["end"] = { + ["U"] = { 3216 }, + }, + ["lvl"] = 16, + ["min"] = 9, + ["obj"] = { + ["I"] = { 14540 }, + }, + ["start"] = { + ["U"] = { 3216 }, + }, + }, + [5762] = { + ["end"] = { + ["U"] = { 715 }, + }, + ["lvl"] = 31, + ["min"] = 28, + ["start"] = { + ["U"] = { 4452 }, + }, + }, + [5763] = { + ["end"] = { + ["U"] = { 715 }, + }, + ["lvl"] = 31, + ["min"] = 28, + ["start"] = { + ["U"] = { 11877 }, + }, + }, + [5781] = { + ["end"] = { + ["U"] = { 1855 }, + }, + ["lvl"] = 57, + ["min"] = 52, + ["obj"] = { + ["I"] = { 14613 }, + }, + ["pre"] = { 5742 }, + ["start"] = { + ["U"] = { 1855 }, + }, + }, + [5801] = { + ["end"] = { + ["U"] = { 11056 }, + }, + ["lvl"] = 57, + ["min"] = 55, + ["obj"] = { + ["I"] = { 14645 }, + ["IR"] = { 14644 }, + }, + ["pre"] = { 5538 }, + ["start"] = { + ["U"] = { 5411 }, + }, + }, + [5802] = { + ["end"] = { + ["U"] = { 11057 }, + }, + ["lvl"] = 57, + ["min"] = 55, + ["obj"] = { + ["I"] = { 14645 }, + ["IR"] = { 14644 }, + }, + ["pre"] = { 5514 }, + ["start"] = { + ["U"] = { 5411 }, + }, + }, + [5803] = { + ["end"] = { + ["U"] = { 11056 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 14610 }, + }, + ["pre"] = { 5801 }, + ["start"] = { + ["U"] = { 11056 }, + }, + }, + [5804] = { + ["end"] = { + ["U"] = { 11057 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 14610 }, + }, + ["pre"] = { 5802 }, + ["start"] = { + ["U"] = { 11057 }, + }, + }, + [5805] = { + ["end"] = { + ["U"] = { 11940 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["start"] = { + ["I"] = { 14646 }, + }, + }, + [5821] = { + ["end"] = { + ["U"] = { 11596 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["start"] = { + ["U"] = { 11625 }, + }, + }, + [5841] = { + ["end"] = { + ["U"] = { 11941 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["start"] = { + ["I"] = { 14647 }, + }, + }, + [5842] = { + ["end"] = { + ["U"] = { 11942 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["start"] = { + ["I"] = { 14648 }, + }, + }, + [5843] = { + ["end"] = { + ["U"] = { 11943 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["start"] = { + ["I"] = { 14649 }, + }, + }, + [5844] = { + ["end"] = { + ["U"] = { 11944 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["start"] = { + ["I"] = { 14650 }, + }, + }, + [5845] = { + ["end"] = { + ["U"] = { 1855 }, + }, + ["lvl"] = 58, + ["min"] = 52, + ["obj"] = { + ["I"] = { 14625 }, + }, + ["pre"] = { 5781 }, + ["start"] = { + ["U"] = { 1855 }, + }, + }, + [5846] = { + ["end"] = { + ["U"] = { 11936 }, + }, + ["lvl"] = 58, + ["min"] = 52, + ["pre"] = { 5845 }, + ["start"] = { + ["U"] = { 1855 }, + }, + }, + [5847] = { + ["end"] = { + ["U"] = { 11945 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["start"] = { + ["I"] = { 14651 }, + }, + }, + [5848] = { + ["end"] = { + ["U"] = { 1855 }, + }, + ["lvl"] = 60, + ["min"] = 52, + ["obj"] = { + ["I"] = { 14679 }, + }, + ["pre"] = { 5846 }, + ["start"] = { + ["U"] = { 11936 }, + }, + }, + [5861] = { + ["end"] = { + ["U"] = { 11872 }, + }, + ["lvl"] = 60, + ["min"] = 52, + ["pre"] = { 5848 }, + ["start"] = { + ["U"] = { 1855 }, + }, + }, + [5862] = { + ["end"] = { + ["U"] = { 1842 }, + }, + ["lvl"] = 60, + ["min"] = 52, + ["pre"] = { 5861 }, + ["start"] = { + ["U"] = { 11872 }, + }, + }, + [5863] = { + ["end"] = { + ["U"] = { 11758 }, + }, + ["lvl"] = 49, + ["min"] = 44, + ["obj"] = { + ["U"] = { 5472, 5474, 12046 }, + }, + ["start"] = { + ["U"] = { 11758 }, + }, + }, + [5881] = { + ["end"] = { + ["U"] = { 12576 }, + }, + ["lvl"] = 28, + ["min"] = 23, + ["start"] = { + ["U"] = { 11860 }, + }, + }, + [5882] = { + ["end"] = { + ["U"] = { 9528 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11515 }, + }, + ["pre"] = { 4101 }, + ["start"] = { + ["U"] = { 9528 }, + }, + }, + [5883] = { + ["end"] = { + ["U"] = { 9528 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11513 }, + }, + ["pre"] = { 4101 }, + ["skill"] = 186, + ["start"] = { + ["U"] = { 9528 }, + }, + }, + [5884] = { + ["end"] = { + ["U"] = { 9528 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11514 }, + }, + ["pre"] = { 4101 }, + ["skill"] = 182, + ["start"] = { + ["U"] = { 9528 }, + }, + }, + [5885] = { + ["end"] = { + ["U"] = { 9528 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11512 }, + }, + ["pre"] = { 4101 }, + ["skill"] = 393, + ["start"] = { + ["U"] = { 9528 }, + }, + }, + [5886] = { + ["end"] = { + ["U"] = { 9528 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11174 }, + }, + ["pre"] = { 4101 }, + ["skill"] = 333, + ["start"] = { + ["U"] = { 9528 }, + }, + }, + [5887] = { + ["end"] = { + ["U"] = { 9529 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11515 }, + }, + ["pre"] = { 4102 }, + ["start"] = { + ["U"] = { 9529 }, + }, + }, + [5888] = { + ["end"] = { + ["U"] = { 9529 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11513 }, + }, + ["pre"] = { 4102 }, + ["skill"] = 186, + ["start"] = { + ["U"] = { 9529 }, + }, + }, + [5889] = { + ["end"] = { + ["U"] = { 9529 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11514 }, + }, + ["pre"] = { 4102 }, + ["skill"] = 182, + ["start"] = { + ["U"] = { 9529 }, + }, + }, + [5890] = { + ["end"] = { + ["U"] = { 9529 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11512 }, + }, + ["pre"] = { 4102 }, + ["skill"] = 393, + ["start"] = { + ["U"] = { 9529 }, + }, + }, + [5891] = { + ["end"] = { + ["U"] = { 9529 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11174 }, + }, + ["pre"] = { 4102 }, + ["skill"] = 333, + ["start"] = { + ["U"] = { 9529 }, + }, + }, + [5892] = { + ["end"] = { + ["U"] = { 12096 }, + }, + ["lvl"] = 55, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17522 }, + }, + ["start"] = { + ["U"] = { 12096 }, + }, + }, + [5893] = { + ["end"] = { + ["U"] = { 12097 }, + }, + ["lvl"] = 55, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17542 }, + }, + ["start"] = { + ["U"] = { 12097 }, + }, + }, + [5901] = { + ["end"] = { + ["U"] = { 11615 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 15043 }, + }, + ["start"] = { + ["U"] = { 11615 }, + }, + }, + [5902] = { + ["end"] = { + ["O"] = { 177491 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["pre"] = { 5901 }, + ["start"] = { + ["U"] = { 11615 }, + }, + }, + [5903] = { + ["end"] = { + ["U"] = { 11616 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 15043 }, + }, + ["start"] = { + ["U"] = { 11616 }, + }, + }, + [5904] = { + ["end"] = { + ["O"] = { 177491 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["pre"] = { 5903 }, + ["start"] = { + ["U"] = { 11616 }, + }, + }, + [5921] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 11802 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 5923, 5924, 5925 }, + ["race"] = 8, + ["start"] = { + ["U"] = { 4217 }, + }, + }, + [5922] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 11802 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 5926, 5927, 5928 }, + ["race"] = 32, + ["start"] = { + ["U"] = { 3033 }, + }, + }, + [5923] = { + ["class"] = 1024, + ["close"] = { 5923, 5924, 5925 }, + ["end"] = { + ["U"] = { 4217 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 8, + ["start"] = { + ["U"] = { 4218 }, + }, + }, + [5924] = { + ["class"] = 1024, + ["close"] = { 5923, 5924, 5925 }, + ["end"] = { + ["U"] = { 4217 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 8, + ["start"] = { + ["U"] = { 5505 }, + }, + }, + [5925] = { + ["class"] = 1024, + ["close"] = { 5923, 5924, 5925 }, + ["end"] = { + ["U"] = { 4217 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 8, + ["start"] = { + ["U"] = { 3602 }, + }, + }, + [5926] = { + ["class"] = 1024, + ["close"] = { 5926, 5927, 5928 }, + ["end"] = { + ["U"] = { 3033 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 32, + ["start"] = { + ["U"] = { 6746 }, + }, + }, + [5927] = { + ["class"] = 1024, + ["close"] = { 5926, 5927, 5928 }, + ["end"] = { + ["U"] = { 3033 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 32, + }, + [5928] = { + ["class"] = 1024, + ["close"] = { 5926, 5927, 5928 }, + ["end"] = { + ["U"] = { 3033 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 32, + ["start"] = { + ["U"] = { 3064 }, + }, + }, + [5929] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 11802 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 5921 }, + ["race"] = 8, + ["start"] = { + ["U"] = { 11802 }, + }, + }, + [5930] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 11802 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 5922 }, + ["race"] = 32, + ["start"] = { + ["U"] = { 11802 }, + }, + }, + [5931] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 4217 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 5929 }, + ["race"] = 8, + ["start"] = { + ["U"] = { 11802 }, + }, + }, + [5932] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 3033 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 5930 }, + ["race"] = 32, + ["start"] = { + ["U"] = { 11802 }, + }, + }, + [5941] = { + ["end"] = { + ["U"] = { 10667 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["pre"] = { 5206 }, + ["start"] = { + ["U"] = { 11063 }, + }, + }, + [5942] = { + ["end"] = { + ["O"] = { 177544 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["pre"] = { 5721 }, + ["start"] = { + ["U"] = { 10926 }, + }, + }, + [5943] = { + ["end"] = { + ["U"] = { 11596 }, + }, + ["lvl"] = 38, + ["min"] = 32, + ["start"] = { + ["U"] = { 11626 }, + }, + }, + [5944] = { + ["end"] = { + ["U"] = { 12126 }, + }, + ["lvl"] = 60, + ["min"] = 52, + ["pre"] = { 5862 }, + ["start"] = { + ["U"] = { 1842 }, + }, + }, + [5961] = { + ["end"] = { + ["U"] = { 11878 }, + }, + ["lvl"] = 56, + ["min"] = 54, + ["start"] = { + ["U"] = { 10181 }, + }, + }, + [5981] = { + ["end"] = { + ["U"] = { 10618 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["U"] = { 7428, 7429 }, + }, + ["start"] = { + ["U"] = { 10618 }, + }, + }, + [6000] = { + ["lvl"] = 50, + ["min"] = 40, + }, + [6001] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 4217 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["IR"] = { 15208 }, + }, + ["pre"] = { 5931 }, + ["race"] = 8, + ["start"] = { + ["U"] = { 4217 }, + }, + }, + [6002] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 3033 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["IR"] = { 15710 }, + }, + ["pre"] = { 5932 }, + ["race"] = 32, + ["start"] = { + ["U"] = { 3033 }, + }, + }, + [6004] = { + ["end"] = { + ["U"] = { 11610 }, + }, + ["lvl"] = 56, + ["min"] = 50, + ["obj"] = { + ["U"] = { 1826, 1831, 1833, 10605 }, + }, + ["start"] = { + ["U"] = { 11610 }, + }, + }, + [6021] = { + ["end"] = { + ["U"] = { 11038 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["I"] = { 15785 }, + }, + ["start"] = { + ["U"] = { 11038 }, + }, + }, + [6022] = { + ["end"] = { + ["U"] = { 11878 }, + }, + ["lvl"] = 58, + ["min"] = 54, + ["obj"] = { + ["I"] = { 15447, 15448 }, + }, + ["start"] = { + ["U"] = { 11878 }, + }, + }, + [6023] = { + ["end"] = { + ["U"] = { 11610 }, + }, + ["lvl"] = 57, + ["min"] = 50, + ["obj"] = { + ["U"] = { 11611, 11613 }, + }, + ["pre"] = { 6004 }, + ["start"] = { + ["U"] = { 11610 }, + }, + }, + [6024] = { + ["end"] = { + ["O"] = { 177675 }, + }, + ["lvl"] = 60, + ["min"] = 54, + ["obj"] = { + ["I"] = { 15767 }, + }, + ["start"] = { + ["O"] = { 177667 }, + }, + }, + [6025] = { + ["end"] = { + ["U"] = { 11610 }, + }, + ["lvl"] = 58, + ["min"] = 50, + ["obj"] = { + ["A"] = { 3366 }, + }, + ["pre"] = { 6023 }, + ["start"] = { + ["U"] = { 11610 }, + }, + }, + [6026] = { + ["end"] = { + ["U"] = { 11033 }, + }, + ["lvl"] = 58, + ["min"] = 54, + ["obj"] = { + ["I"] = { 10560, 10562, 11128, 12359 }, + }, + ["start"] = { + ["U"] = { 11033 }, + }, + }, + [6027] = { + ["end"] = { + ["U"] = { 11863 }, + }, + ["lvl"] = 38, + ["min"] = 30, + ["obj"] = { + ["I"] = { 15803 }, + }, + ["pre"] = { 5741 }, + ["start"] = { + ["U"] = { 11863 }, + }, + }, + [6028] = { + ["end"] = { + ["U"] = { 10840 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["race"] = 77, + ["start"] = { + ["U"] = { 10431 }, + }, + }, + [6029] = { + ["end"] = { + ["U"] = { 10839 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["race"] = 178, + ["start"] = { + ["U"] = { 10431 }, + }, + }, + [6030] = { + ["end"] = { + ["U"] = { 11039 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["start"] = { + ["U"] = { 10431 }, + }, + }, + [6031] = { + ["end"] = { + ["U"] = { 11557 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["I"] = { 14047 }, + }, + ["start"] = { + ["U"] = { 11557 }, + }, + }, + [6032] = { + ["end"] = { + ["U"] = { 11557 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["I"] = { 14342 }, + }, + ["skill"] = 197, + ["start"] = { + ["U"] = { 11557 }, + }, + }, + [6041] = { + ["end"] = { + ["U"] = { 11033 }, + }, + ["lvl"] = 58, + ["min"] = 54, + ["obj"] = { + ["IR"] = { 15736 }, + ["U"] = { 12247 }, + }, + ["pre"] = { 6026 }, + ["start"] = { + ["U"] = { 11033 }, + }, + }, + [6042] = { + ["end"] = { + ["U"] = { 11878 }, + }, + ["lvl"] = 58, + ["min"] = 54, + ["obj"] = { + ["U"] = { 8601, 8602 }, + }, + ["start"] = { + ["U"] = { 11878 }, + }, + }, + [6061] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 3065 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["IR"] = { 15914 }, + }, + ["pre"] = { 6065, 6066, 6067 }, + ["race"] = 32, + ["start"] = { + ["U"] = { 3065 }, + }, + }, + [6062] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 3171 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["IR"] = { 15917 }, + }, + ["pre"] = { 6068, 6069, 6070 }, + ["race"] = 130, + ["start"] = { + ["U"] = { 3171 }, + }, + }, + [6063] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 3601 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["IR"] = { 15921 }, + }, + ["pre"] = { 6071, 6072, 6073, 6721, 6722 }, + ["race"] = 8, + ["start"] = { + ["U"] = { 3601 }, + }, + }, + [6064] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 1231 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["IR"] = { 15911 }, + }, + ["pre"] = { 6074, 6075, 6076 }, + ["race"] = 4, + ["start"] = { + ["U"] = { 1231 }, + }, + }, + [6065] = { + ["class"] = 4, + ["close"] = { 6065, 6066, 6067 }, + ["end"] = { + ["U"] = { 3065 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 32, + ["start"] = { + ["U"] = { 3038 }, + }, + }, + [6066] = { + ["class"] = 4, + ["close"] = { 6065, 6066, 6067 }, + ["end"] = { + ["U"] = { 3065 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 32, + ["start"] = { + ["U"] = { 3061 }, + }, + }, + [6067] = { + ["class"] = 4, + ["close"] = { 6065, 6066, 6067 }, + ["end"] = { + ["U"] = { 3065 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 32, + ["start"] = { + ["U"] = { 3171 }, + }, + }, + [6068] = { + ["class"] = 4, + ["close"] = { 6068, 6069, 6070 }, + ["end"] = { + ["U"] = { 3171 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 130, + ["start"] = { + ["U"] = { 3407 }, + }, + }, + [6069] = { + ["class"] = 4, + ["close"] = { 6068, 6069, 6070 }, + ["end"] = { + ["U"] = { 3171 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 130, + ["start"] = { + ["U"] = { 11814 }, + }, + }, + [6070] = { + ["class"] = 4, + ["close"] = { 6068, 6069, 6070 }, + ["end"] = { + ["U"] = { 3171 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 130, + ["start"] = { + ["U"] = { 3038 }, + }, + }, + [6071] = { + ["class"] = 4, + ["close"] = { 6071, 6072, 6073, 6721, 6722 }, + ["end"] = { + ["U"] = { 3601 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 8, + ["start"] = { + ["U"] = { 4146 }, + }, + }, + [6072] = { + ["class"] = 4, + ["close"] = { 6071, 6072, 6073, 6721, 6722 }, + ["end"] = { + ["U"] = { 3601 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 8, + ["start"] = { + ["U"] = { 3596 }, + }, + }, + [6073] = { + ["class"] = 4, + ["close"] = { 6071, 6072, 6073, 6721, 6722 }, + ["end"] = { + ["U"] = { 3601 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 8, + ["start"] = { + ["U"] = { 5515 }, + }, + }, + [6074] = { + ["class"] = 4, + ["close"] = { 6074, 6075, 6076 }, + ["end"] = { + ["U"] = { 1231 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 4, + ["start"] = { + ["U"] = { 5116 }, + }, + }, + [6075] = { + ["class"] = 4, + ["close"] = { 6074, 6075, 6076 }, + ["end"] = { + ["U"] = { 1231 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 4, + ["start"] = { + ["U"] = { 11807 }, + }, + }, + [6076] = { + ["class"] = 4, + ["close"] = { 6074, 6075, 6076 }, + ["end"] = { + ["U"] = { 1231 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 4, + ["start"] = { + ["U"] = { 5515 }, + }, + }, + [6081] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 3352 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 6082 }, + ["race"] = 130, + ["start"] = { + ["U"] = { 3171 }, + }, + }, + [6082] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 3171 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["IR"] = { 15920 }, + }, + ["pre"] = { 6083 }, + ["race"] = 130, + ["start"] = { + ["U"] = { 3171 }, + }, + }, + [6083] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 3171 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["IR"] = { 15919 }, + }, + ["pre"] = { 6062 }, + ["race"] = 130, + ["start"] = { + ["U"] = { 3171 }, + }, + }, + [6084] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 1231 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["IR"] = { 15913 }, + }, + ["pre"] = { 6064 }, + ["race"] = 4, + ["start"] = { + ["U"] = { 1231 }, + }, + }, + [6085] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 1231 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["IR"] = { 15908 }, + }, + ["pre"] = { 6084 }, + ["start"] = { + ["U"] = { 1231 }, + }, + }, + [6086] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 10090 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 6085 }, + ["race"] = 4, + ["start"] = { + ["U"] = { 1231 }, + }, + }, + [6087] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 3065 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["IR"] = { 15915 }, + }, + ["pre"] = { 6061 }, + ["race"] = 32, + ["start"] = { + ["U"] = { 3065 }, + }, + }, + [6088] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 3065 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["IR"] = { 15916 }, + }, + ["pre"] = { 6087 }, + ["race"] = 32, + ["start"] = { + ["U"] = { 3065 }, + }, + }, + [6089] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 3039 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 6088 }, + ["race"] = 32, + ["start"] = { + ["U"] = { 3065 }, + }, + }, + [6101] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 3601 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["IR"] = { 15922 }, + }, + ["pre"] = { 6063 }, + ["race"] = 8, + ["start"] = { + ["U"] = { 3601 }, + }, + }, + [6102] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 3601 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["IR"] = { 15923 }, + }, + ["pre"] = { 6101 }, + ["race"] = 8, + ["start"] = { + ["U"] = { 3601 }, + }, + }, + [6103] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 4146 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 6102 }, + ["race"] = 8, + ["start"] = { + ["U"] = { 3601 }, + }, + }, + [6121] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 11802 }, + }, + ["lvl"] = 14, + ["min"] = 14, + ["race"] = 8, + ["start"] = { + ["U"] = { 4217 }, + }, + }, + [6122] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 3702 }, + }, + ["lvl"] = 14, + ["min"] = 14, + ["obj"] = { + ["I"] = { 15845 }, + ["IR"] = { 15844 }, + }, + ["pre"] = { 6121 }, + ["race"] = 8, + ["start"] = { + ["U"] = { 11802 }, + }, + }, + [6123] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 3702 }, + }, + ["lvl"] = 14, + ["min"] = 14, + ["obj"] = { + ["I"] = { 2449, 15851 }, + }, + ["pre"] = { 6122 }, + ["race"] = 8, + ["start"] = { + ["U"] = { 3702 }, + }, + }, + [6124] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 11802 }, + }, + ["lvl"] = 14, + ["min"] = 14, + ["obj"] = { + ["U"] = { 12299 }, + }, + ["pre"] = { 6123 }, + ["start"] = { + ["U"] = { 3702 }, + }, + }, + [6125] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 4217 }, + }, + ["lvl"] = 14, + ["min"] = 14, + ["pre"] = { 6124 }, + ["race"] = 8, + ["start"] = { + ["U"] = { 11802 }, + }, + }, + [6126] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 11802 }, + }, + ["lvl"] = 14, + ["min"] = 14, + ["race"] = 32, + ["start"] = { + ["U"] = { 3033 }, + }, + }, + [6127] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 3448 }, + }, + ["lvl"] = 14, + ["min"] = 14, + ["obj"] = { + ["I"] = { 15843 }, + ["IR"] = { 15842 }, + }, + ["pre"] = { 6126 }, + ["race"] = 32, + ["start"] = { + ["U"] = { 11802 }, + }, + }, + [6128] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 3448 }, + }, + ["lvl"] = 14, + ["min"] = 14, + ["obj"] = { + ["I"] = { 2449, 15852 }, + }, + ["pre"] = { 6127 }, + ["race"] = 32, + ["start"] = { + ["U"] = { 3448 }, + }, + }, + [6129] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 11802 }, + }, + ["lvl"] = 14, + ["min"] = 14, + ["obj"] = { + ["U"] = { 12297 }, + }, + ["pre"] = { 6128 }, + ["race"] = 32, + ["start"] = { + ["U"] = { 3448 }, + }, + }, + [6130] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 3033 }, + }, + ["lvl"] = 14, + ["min"] = 14, + ["pre"] = { 6129 }, + ["race"] = 32, + ["start"] = { + ["U"] = { 11802 }, + }, + }, + [6131] = { + ["end"] = { + ["U"] = { 11554 }, + }, + ["lvl"] = 48, + ["min"] = 43, + ["obj"] = { + ["U"] = { 7153, 7154, 7155 }, + }, + ["start"] = { + ["U"] = { 11554 }, + }, + }, + [6132] = { + ["end"] = { + ["U"] = { 6019 }, + }, + ["lvl"] = 39, + ["min"] = 34, + ["start"] = { + ["U"] = { 12277 }, + }, + }, + [6133] = { + ["end"] = { + ["U"] = { 11878 }, + }, + ["lvl"] = 60, + ["min"] = 54, + ["obj"] = { + ["I"] = { 15847 }, + ["U"] = { 8563, 8564, 8565 }, + }, + ["start"] = { + ["U"] = { 11878 }, + }, + }, + [6134] = { + ["end"] = { + ["U"] = { 6019 }, + }, + ["lvl"] = 39, + ["min"] = 34, + ["obj"] = { + ["I"] = { 15849 }, + ["IR"] = { 15848 }, + }, + ["start"] = { + ["U"] = { 6019 }, + }, + }, + [6135] = { + ["end"] = { + ["U"] = { 11878 }, + }, + ["lvl"] = 60, + ["min"] = 56, + ["obj"] = { + ["I"] = { 15850 }, + }, + ["start"] = { + ["U"] = { 11878 }, + }, + }, + [6136] = { + ["end"] = { + ["U"] = { 11878 }, + }, + ["lvl"] = 60, + ["min"] = 56, + ["obj"] = { + ["U"] = { 11896 }, + }, + ["start"] = { + ["U"] = { 11878 }, + }, + }, + [6141] = { + ["end"] = { + ["U"] = { 1182 }, + }, + ["lvl"] = 39, + ["min"] = 34, + ["start"] = { + ["U"] = { 12336 }, + }, + }, + [6142] = { + ["end"] = { + ["U"] = { 12031 }, + }, + ["lvl"] = 35, + ["min"] = 31, + ["obj"] = { + ["I"] = { 15874, 15924 }, + }, + ["start"] = { + ["U"] = { 12031 }, + }, + }, + [6143] = { + ["end"] = { + ["U"] = { 12340 }, + }, + ["lvl"] = 36, + ["min"] = 32, + ["obj"] = { + ["U"] = { 4711, 4712, 4714 }, + }, + ["start"] = { + ["U"] = { 12340 }, + }, + }, + [6144] = { + ["end"] = { + ["U"] = { 2425 }, + }, + ["lvl"] = 60, + ["min"] = 56, + ["start"] = { + ["U"] = { 11878 }, + }, + }, + [6145] = { + ["end"] = { + ["U"] = { 11878 }, + }, + ["lvl"] = 60, + ["min"] = 56, + ["obj"] = { + ["I"] = { 15868 }, + }, + ["pre"] = { 6144 }, + ["start"] = { + ["U"] = { 2425 }, + }, + }, + [6146] = { + ["end"] = { + ["U"] = { 11898 }, + }, + ["lvl"] = 60, + ["min"] = 56, + ["obj"] = { + ["I"] = { 13852, 15875 }, + }, + ["pre"] = { 6145 }, + ["start"] = { + ["U"] = { 11878 }, + }, + }, + [6147] = { + ["end"] = { + ["U"] = { 11878 }, + }, + ["lvl"] = 60, + ["min"] = 56, + ["pre"] = { 6146 }, + ["start"] = { + ["U"] = { 11898 }, + }, + }, + [6148] = { + ["end"] = { + ["U"] = { 11878 }, + }, + ["lvl"] = 60, + ["min"] = 56, + ["obj"] = { + ["U"] = { 12339 }, + }, + ["pre"] = { 6147 }, + ["start"] = { + ["U"] = { 11878 }, + }, + }, + [6161] = { + ["end"] = { + ["O"] = { 177786 }, + }, + ["lvl"] = 36, + ["min"] = 30, + ["obj"] = { + ["I"] = { 15878, 15881 }, + }, + ["start"] = { + ["O"] = { 177787 }, + }, + }, + [6162] = { + ["end"] = { + ["U"] = { 9620 }, + }, + ["lvl"] = 51, + ["min"] = 46, + ["obj"] = { + ["I"] = { 15879 }, + }, + ["start"] = { + ["U"] = { 9620 }, + }, + }, + [6163] = { + ["end"] = { + ["U"] = { 11878 }, + }, + ["lvl"] = 60, + ["min"] = 56, + ["obj"] = { + ["I"] = { 15880 }, + }, + ["start"] = { + ["U"] = { 11878 }, + }, + }, + [6164] = { + ["end"] = { + ["U"] = { 12384 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["I"] = { 15884 }, + }, + ["start"] = { + ["U"] = { 12384 }, + }, + }, + [6165] = { + ["lvl"] = 58, + ["min"] = 50, + }, + [6181] = { + ["end"] = { + ["U"] = { 523 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 1, + ["start"] = { + ["U"] = { 491 }, + }, + }, + [6182] = { + ["end"] = { + ["U"] = { 332 }, + }, + ["lvl"] = 60, + ["min"] = 56, + ["start"] = { + ["U"] = { 1748 }, + }, + }, + [6183] = { + ["end"] = { + ["U"] = { 332 }, + }, + ["lvl"] = 60, + ["min"] = 56, + ["pre"] = { 6182 }, + ["start"] = { + ["U"] = { 332 }, + }, + }, + [6184] = { + ["end"] = { + ["U"] = { 12425 }, + }, + ["lvl"] = 60, + ["min"] = 56, + ["pre"] = { 6183 }, + ["start"] = { + ["U"] = { 332 }, + }, + }, + [6185] = { + ["end"] = { + ["U"] = { 12425 }, + }, + ["lvl"] = 60, + ["min"] = 56, + ["obj"] = { + ["A"] = { 2726 }, + ["I"] = { 16001, 16002, 16003 }, + }, + ["pre"] = { 6184 }, + ["start"] = { + ["U"] = { 12425 }, + }, + }, + [6186] = { + ["end"] = { + ["U"] = { 1748 }, + }, + ["lvl"] = 60, + ["min"] = 56, + ["pre"] = { 6185 }, + ["start"] = { + ["U"] = { 12425 }, + }, + }, + [6187] = { + ["end"] = { + ["U"] = { 1748 }, + }, + ["lvl"] = 60, + ["min"] = 56, + ["obj"] = { + ["U"] = { 11878 }, + }, + ["pre"] = { 6186 }, + ["start"] = { + ["U"] = { 1748 }, + }, + }, + [6201] = { + ["lvl"] = 65, + ["min"] = 60, + ["obj"] = { + ["I"] = { 159, 2070 }, + }, + }, + [6221] = { + ["end"] = { + ["U"] = { 11554 }, + }, + ["lvl"] = 55, + ["min"] = 45, + ["obj"] = { + ["U"] = { 7156, 7157, 7158 }, + }, + ["start"] = { + ["U"] = { 11554 }, + }, + }, + [6241] = { + ["end"] = { + ["U"] = { 11556 }, + }, + ["lvl"] = 56, + ["min"] = 52, + ["obj"] = { + ["U"] = { 7440, 7441, 7442 }, + }, + ["start"] = { + ["U"] = { 11556 }, + }, + }, + [6261] = { + ["end"] = { + ["U"] = { 352 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 6281 }, + ["start"] = { + ["U"] = { 1323 }, + }, + }, + [6281] = { + ["end"] = { + ["U"] = { 1323 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 6181 }, + ["start"] = { + ["U"] = { 523 }, + }, + }, + [6282] = { + ["end"] = { + ["U"] = { 11860 }, + }, + ["lvl"] = 26, + ["min"] = 18, + ["obj"] = { + ["U"] = { 4022, 4023, 4024, 4025 }, + }, + ["start"] = { + ["U"] = { 11860 }, + }, + }, + [6283] = { + ["end"] = { + ["U"] = { 11860 }, + }, + ["lvl"] = 26, + ["min"] = 18, + ["obj"] = { + ["I"] = { 16190 }, + }, + ["pre"] = { 6282 }, + ["start"] = { + ["U"] = { 11860 }, + }, + }, + [6284] = { + ["end"] = { + ["U"] = { 11860 }, + }, + ["lvl"] = 21, + ["min"] = 15, + ["obj"] = { + ["I"] = { 16192 }, + }, + ["race"] = 178, + ["start"] = { + ["O"] = { 177904 }, + }, + }, + [6285] = { + ["end"] = { + ["U"] = { 491 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 6261 }, + ["start"] = { + ["U"] = { 352 }, + }, + }, + [6301] = { + ["end"] = { + ["U"] = { 11864 }, + }, + ["lvl"] = 23, + ["min"] = 17, + ["obj"] = { + ["I"] = { 16205 }, + }, + ["start"] = { + ["U"] = { 11864 }, + }, + }, + [6321] = { + ["end"] = { + ["U"] = { 2226 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 16, + ["start"] = { + ["U"] = { 6389 }, + }, + }, + [6322] = { + ["end"] = { + ["U"] = { 4551 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 6323 }, + ["start"] = { + ["U"] = { 4556 }, + }, + }, + [6323] = { + ["end"] = { + ["U"] = { 4556 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 6321 }, + ["start"] = { + ["U"] = { 2226 }, + }, + }, + [6324] = { + ["end"] = { + ["U"] = { 6389 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 6322 }, + ["start"] = { + ["U"] = { 4551 }, + }, + }, + [6341] = { + ["end"] = { + ["U"] = { 3838 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 6344 }, + ["race"] = 8, + ["start"] = { + ["U"] = { 10118 }, + }, + }, + [6342] = { + ["end"] = { + ["U"] = { 4200 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 6341 }, + ["start"] = { + ["U"] = { 3838 }, + }, + }, + [6343] = { + ["end"] = { + ["U"] = { 10118 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 6342 }, + ["start"] = { + ["U"] = { 4200 }, + }, + }, + [6344] = { + ["end"] = { + ["U"] = { 10118 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 8, + ["start"] = { + ["U"] = { 4241 }, + }, + }, + [6361] = { + ["end"] = { + ["U"] = { 3615 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 32, + ["start"] = { + ["U"] = { 3483 }, + }, + }, + [6362] = { + ["end"] = { + ["U"] = { 8359 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 6361 }, + ["start"] = { + ["U"] = { 3615 }, + }, + }, + [6363] = { + ["end"] = { + ["U"] = { 2995 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 6362 }, + ["start"] = { + ["U"] = { 8359 }, + }, + }, + [6364] = { + ["end"] = { + ["U"] = { 3483 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 6363 }, + ["start"] = { + ["U"] = { 2995 }, + }, + }, + [6365] = { + ["end"] = { + ["U"] = { 3615 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 130, + ["start"] = { + ["U"] = { 3489 }, + }, + }, + [6381] = { + ["end"] = { + ["U"] = { 11864 }, + }, + ["lvl"] = 25, + ["min"] = 17, + ["obj"] = { + ["IR"] = { 16208 }, + ["O"] = { 177929 }, + }, + ["pre"] = { 6301 }, + ["start"] = { + ["U"] = { 11864 }, + }, + }, + [6382] = { + ["close"] = { 235, 742, 6382 }, + ["end"] = { + ["U"] = { 12696 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["start"] = { + ["U"] = { 3387 }, + }, + }, + [6383] = { + ["end"] = { + ["U"] = { 12696 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["pre"] = { 235, 742, 6382 }, + ["start"] = { + ["U"] = { 12696 }, + }, + }, + [6384] = { + ["end"] = { + ["U"] = { 6929 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 6365 }, + ["start"] = { + ["U"] = { 3615 }, + }, + }, + [6385] = { + ["end"] = { + ["U"] = { 3310 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 6384 }, + ["start"] = { + ["U"] = { 6929 }, + }, + }, + [6386] = { + ["end"] = { + ["U"] = { 3489 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 6385 }, + ["start"] = { + ["U"] = { 3310 }, + }, + }, + [6387] = { + ["end"] = { + ["U"] = { 1572 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 68, + ["start"] = { + ["U"] = { 1681 }, + }, + }, + [6388] = { + ["end"] = { + ["U"] = { 1573 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 6391 }, + ["start"] = { + ["U"] = { 4256 }, + }, + }, + [6389] = { + ["end"] = { + ["U"] = { 11616 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["pre"] = { 5904 }, + ["start"] = { + ["O"] = { 177491 }, + }, + }, + [6390] = { + ["end"] = { + ["U"] = { 11615 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["pre"] = { 5902 }, + ["start"] = { + ["O"] = { 177491 }, + }, + }, + [6391] = { + ["end"] = { + ["U"] = { 4256 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 6387 }, + ["start"] = { + ["U"] = { 1572 }, + }, + }, + [6392] = { + ["end"] = { + ["U"] = { 1681 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 6388 }, + ["start"] = { + ["U"] = { 1573 }, + }, + }, + [6393] = { + ["end"] = { + ["U"] = { 11862 }, + }, + ["lvl"] = 25, + ["min"] = 19, + ["obj"] = { + ["I"] = { 16312 }, + }, + ["start"] = { + ["U"] = { 11862 }, + }, + }, + [6394] = { + ["end"] = { + ["U"] = { 11378 }, + }, + ["lvl"] = 4, + ["min"] = 3, + ["obj"] = { + ["I"] = { 16332 }, + }, + ["pre"] = { 5441 }, + ["start"] = { + ["U"] = { 11378 }, + }, + }, + [6395] = { + ["end"] = { + ["U"] = { 1661 }, + }, + ["lvl"] = 5, + ["min"] = 3, + ["obj"] = { + ["I"] = { 16333 }, + ["IR"] = { 16333 }, + ["O"] = { 178090 }, + }, + ["pre"] = { 376 }, + ["start"] = { + ["U"] = { 1661 }, + }, + }, + [6401] = { + ["end"] = { + ["U"] = { 11864 }, + }, + ["lvl"] = 18, + ["min"] = 12, + ["pre"] = { 6523 }, + ["start"] = { + ["U"] = { 11857 }, + }, + }, + [6402] = { + ["end"] = { + ["U"] = { 12580 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["pre"] = { 4322 }, + ["start"] = { + ["U"] = { 9560 }, + }, + }, + [6403] = { + ["end"] = { + ["U"] = { 1748 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["pre"] = { 6402 }, + ["start"] = { + ["U"] = { 12580 }, + }, + }, + [6421] = { + ["end"] = { + ["U"] = { 11861 }, + }, + ["lvl"] = 18, + ["min"] = 14, + ["obj"] = { + ["A"] = { 2946 }, + ["I"] = { 16581 }, + }, + ["start"] = { + ["U"] = { 11861 }, + }, + }, + [6441] = { + ["end"] = { + ["U"] = { 12724 }, + }, + ["lvl"] = 26, + ["min"] = 21, + ["obj"] = { + ["I"] = { 5481 }, + }, + ["start"] = { + ["U"] = { 12724 }, + }, + }, + [6442] = { + ["end"] = { + ["U"] = { 12719 }, + }, + ["lvl"] = 19, + ["min"] = 14, + ["obj"] = { + ["I"] = { 5490 }, + }, + ["start"] = { + ["U"] = { 12719 }, + }, + }, + [6461] = { + ["end"] = { + ["U"] = { 12816 }, + }, + ["lvl"] = 19, + ["min"] = 13, + ["obj"] = { + ["U"] = { 4005, 4007 }, + }, + ["start"] = { + ["U"] = { 12816 }, + }, + }, + [6462] = { + ["end"] = { + ["U"] = { 12721 }, + }, + ["lvl"] = 24, + ["min"] = 19, + ["obj"] = { + ["I"] = { 16602 }, + }, + ["start"] = { + ["U"] = { 12721 }, + }, + }, + [6481] = { + ["end"] = { + ["U"] = { 11861 }, + }, + ["lvl"] = 20, + ["min"] = 14, + ["obj"] = { + ["IR"] = { 16603 }, + ["U"] = { 11920 }, + }, + ["pre"] = { 6421 }, + ["start"] = { + ["U"] = { 11861 }, + }, + }, + [6482] = { + ["end"] = { + ["U"] = { 12837 }, + }, + ["lvl"] = 24, + ["min"] = 19, + ["start"] = { + ["U"] = { 12818 }, + }, + }, + [6501] = { + ["end"] = { + ["U"] = { 10929 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["pre"] = { 6403 }, + ["start"] = { + ["U"] = { 1748 }, + }, + }, + [6502] = { + ["end"] = { + ["U"] = { 10929 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 16663 }, + }, + ["pre"] = { 6501 }, + ["start"] = { + ["U"] = { 10929 }, + }, + }, + [6503] = { + ["end"] = { + ["U"] = { 12867 }, + }, + ["lvl"] = 24, + ["min"] = 19, + ["obj"] = { + ["U"] = { 12856 }, + }, + ["start"] = { + ["U"] = { 12867 }, + }, + }, + [6504] = { + ["end"] = { + ["U"] = { 12718 }, + }, + ["lvl"] = 30, + ["min"] = 23, + ["obj"] = { + ["I"] = { 16642, 16643, 16644 }, + }, + ["start"] = { + ["U"] = { 12718 }, + }, + }, + [6521] = { + ["end"] = { + ["U"] = { 2425 }, + }, + ["lvl"] = 36, + ["min"] = 28, + ["obj"] = { + ["I"] = { 17009 }, + }, + ["pre"] = { 6522 }, + ["start"] = { + ["U"] = { 2425 }, + }, + }, + [6522] = { + ["end"] = { + ["U"] = { 2425 }, + }, + ["lvl"] = 36, + ["min"] = 28, + ["start"] = { + ["I"] = { 17008 }, + }, + }, + [6523] = { + ["end"] = { + ["U"] = { 11857 }, + }, + ["lvl"] = 18, + ["min"] = 12, + ["start"] = { + ["U"] = { 11856 }, + }, + }, + [6541] = { + ["close"] = { 6541, 6542 }, + ["end"] = { + ["U"] = { 8582 }, + }, + ["lvl"] = 19, + ["min"] = 17, + ["start"] = { + ["U"] = { 3429 }, + }, + }, + [6542] = { + ["close"] = { 6541, 6542 }, + ["end"] = { + ["U"] = { 8582 }, + }, + ["lvl"] = 19, + ["min"] = 17, + ["start"] = { + ["U"] = { 11821 }, + }, + }, + [6543] = { + ["end"] = { + ["U"] = { 8582 }, + }, + ["lvl"] = 19, + ["min"] = 17, + ["obj"] = { + ["I"] = { 16763, 16764, 16765 }, + }, + ["pre"] = { 6541, 6542 }, + ["start"] = { + ["U"] = { 8582 }, + }, + }, + [6544] = { + ["end"] = { + ["U"] = { 12877 }, + }, + ["lvl"] = 24, + ["min"] = 20, + ["start"] = { + ["U"] = { 12858 }, + }, + }, + [6545] = { + ["end"] = { + ["U"] = { 12863 }, + }, + ["lvl"] = 19, + ["min"] = 17, + ["obj"] = { + ["I"] = { 16746 }, + }, + ["pre"] = { 6543 }, + ["start"] = { + ["U"] = { 12863 }, + }, + }, + [6546] = { + ["end"] = { + ["U"] = { 12864 }, + }, + ["lvl"] = 25, + ["min"] = 17, + ["obj"] = { + ["I"] = { 16746 }, + }, + ["pre"] = { 6543 }, + ["start"] = { + ["U"] = { 12864 }, + }, + }, + [6547] = { + ["end"] = { + ["U"] = { 12862 }, + }, + ["lvl"] = 21, + ["min"] = 17, + ["obj"] = { + ["I"] = { 16746 }, + }, + ["pre"] = { 6543 }, + ["start"] = { + ["U"] = { 12862 }, + }, + }, + [6548] = { + ["end"] = { + ["U"] = { 11857 }, + }, + ["lvl"] = 18, + ["min"] = 12, + ["obj"] = { + ["U"] = { 11910, 11911 }, + }, + ["start"] = { + ["U"] = { 11857 }, + }, + }, + [6561] = { + ["end"] = { + ["U"] = { 9087 }, + }, + ["lvl"] = 27, + ["min"] = 18, + ["obj"] = { + ["I"] = { 5881 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 4787 }, + }, + }, + [6562] = { + ["end"] = { + ["U"] = { 12736 }, + }, + ["lvl"] = 22, + ["min"] = 17, + ["start"] = { + ["U"] = { 11862 }, + }, + }, + [6563] = { + ["end"] = { + ["U"] = { 12736 }, + }, + ["lvl"] = 22, + ["min"] = 17, + ["obj"] = { + ["I"] = { 16784 }, + }, + ["pre"] = { 6562 }, + ["start"] = { + ["U"] = { 12736 }, + }, + }, + [6564] = { + ["end"] = { + ["U"] = { 12736 }, + }, + ["lvl"] = 22, + ["min"] = 17, + ["start"] = { + ["I"] = { 16790 }, + }, + }, + [6565] = { + ["end"] = { + ["U"] = { 12736 }, + }, + ["lvl"] = 26, + ["min"] = 17, + ["obj"] = { + ["U"] = { 12902 }, + }, + ["pre"] = { 6564 }, + ["start"] = { + ["U"] = { 12736 }, + }, + }, + [6566] = { + ["end"] = { + ["U"] = { 4949 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["pre"] = { 4974 }, + ["start"] = { + ["U"] = { 4949 }, + }, + }, + [6567] = { + ["end"] = { + ["U"] = { 10182 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["pre"] = { 6566 }, + ["start"] = { + ["U"] = { 4949 }, + }, + }, + [6568] = { + ["end"] = { + ["U"] = { 11872 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["pre"] = { 6567 }, + ["start"] = { + ["U"] = { 10182 }, + }, + }, + [6569] = { + ["end"] = { + ["U"] = { 11872 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 16786 }, + }, + ["pre"] = { 6568 }, + ["start"] = { + ["U"] = { 11872 }, + }, + }, + [6570] = { + ["end"] = { + ["U"] = { 10321 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["pre"] = { 6569 }, + ["start"] = { + ["U"] = { 11872 }, + }, + }, + [6571] = { + ["end"] = { + ["U"] = { 11820 }, + }, + ["lvl"] = 27, + ["min"] = 22, + ["obj"] = { + ["I"] = { 16742, 16743, 16744, 16745 }, + }, + ["start"] = { + ["U"] = { 11820 }, + }, + }, + [6581] = { + ["end"] = { + ["U"] = { 12724 }, + }, + ["lvl"] = 27, + ["min"] = 22, + ["obj"] = { + ["I"] = { 4369 }, + }, + ["pre"] = { 6571 }, + ["start"] = { + ["U"] = { 12724 }, + }, + }, + [6582] = { + ["end"] = { + ["U"] = { 10321 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 16869 }, + }, + ["pre"] = { 6570 }, + ["start"] = { + ["U"] = { 10321 }, + }, + }, + [6583] = { + ["end"] = { + ["U"] = { 10321 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 16870 }, + }, + ["pre"] = { 6582 }, + ["start"] = { + ["U"] = { 10321 }, + }, + }, + [6584] = { + ["end"] = { + ["U"] = { 10321 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 16871 }, + }, + ["pre"] = { 6583 }, + ["start"] = { + ["U"] = { 10321 }, + }, + }, + [6585] = { + ["end"] = { + ["U"] = { 10321 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 16872 }, + }, + ["pre"] = { 6582, 6583, 6584 }, + ["start"] = { + ["U"] = { 10321 }, + }, + }, + [6601] = { + ["end"] = { + ["U"] = { 10182 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["pre"] = { 6585 }, + ["start"] = { + ["U"] = { 10321 }, + }, + }, + [6602] = { + ["end"] = { + ["U"] = { 10182 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 16663 }, + }, + ["pre"] = { 6601 }, + ["start"] = { + ["U"] = { 10182 }, + }, + }, + [6603] = { + ["end"] = { + ["U"] = { 9298 }, + }, + ["lvl"] = 56, + ["min"] = 52, + ["start"] = { + ["U"] = { 11754 }, + }, + }, + [6604] = { + ["end"] = { + ["U"] = { 10301 }, + }, + ["lvl"] = 59, + ["min"] = 53, + ["race"] = 77, + ["start"] = { + ["U"] = { 11755 }, + }, + }, + [6605] = { + ["end"] = { + ["U"] = { 9996 }, + }, + ["lvl"] = 54, + ["min"] = 49, + ["race"] = 178, + ["start"] = { + ["U"] = { 11755 }, + }, + }, + [6606] = { + ["end"] = { + ["U"] = { 10307 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["race"] = 178, + ["start"] = { + ["U"] = { 11755 }, + }, + }, + [6607] = { + ["end"] = { + ["U"] = { 12919 }, + }, + ["lvl"] = 45, + ["min"] = 35, + ["obj"] = { + ["I"] = { 16967, 16968, 16969, 16970 }, + }, + ["pre"] = { 6608, 6609 }, + ["skill"] = 356, + ["start"] = { + ["U"] = { 12919 }, + }, + }, + [6608] = { + ["end"] = { + ["U"] = { 12919 }, + }, + ["lvl"] = 45, + ["min"] = 35, + ["skill"] = 356, + ["start"] = { + ["U"] = { 3332 }, + }, + }, + [6609] = { + ["end"] = { + ["U"] = { 12919 }, + }, + ["lvl"] = 45, + ["min"] = 35, + ["skill"] = 356, + ["start"] = { + ["U"] = { 5161 }, + }, + }, + [6610] = { + ["end"] = { + ["U"] = { 8125 }, + }, + ["lvl"] = 45, + ["min"] = 35, + ["obj"] = { + ["I"] = { 7974, 8932, 12207 }, + }, + ["pre"] = { 6611, 6612 }, + ["skill"] = 185, + ["start"] = { + ["U"] = { 8125 }, + }, + }, + [6611] = { + ["end"] = { + ["U"] = { 8125 }, + }, + ["lvl"] = 45, + ["min"] = 35, + ["skill"] = 185, + ["start"] = { + ["U"] = { 3399 }, + }, + }, + [6612] = { + ["end"] = { + ["U"] = { 8125 }, + }, + ["lvl"] = 45, + ["min"] = 35, + ["skill"] = 185, + ["start"] = { + ["U"] = { 5159 }, + }, + }, + [6621] = { + ["end"] = { + ["U"] = { 12757 }, + }, + ["lvl"] = 26, + ["min"] = 21, + ["obj"] = { + ["I"] = { 16976 }, + ["IR"] = { 16972 }, + }, + ["pre"] = { 216 }, + ["start"] = { + ["U"] = { 12757 }, + }, + }, + [6622] = { + ["end"] = { + ["U"] = { 12920 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["pre"] = { 6623 }, + ["skill"] = 129, + ["start"] = { + ["U"] = { 12920 }, + }, + }, + [6623] = { + ["end"] = { + ["U"] = { 12920 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["skill"] = 129, + ["start"] = { + ["U"] = { 3373 }, + }, + }, + [6624] = { + ["end"] = { + ["U"] = { 12939 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["pre"] = { 6625 }, + ["skill"] = 129, + ["start"] = { + ["U"] = { 12939 }, + }, + }, + [6625] = { + ["end"] = { + ["U"] = { 12939 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["skill"] = 129, + ["start"] = { + ["U"] = { 5150 }, + }, + }, + [6626] = { + ["end"] = { + ["U"] = { 12866 }, + }, + ["lvl"] = 35, + ["min"] = 28, + ["obj"] = { + ["U"] = { 7872, 7873, 7874 }, + }, + ["start"] = { + ["U"] = { 12866 }, + }, + }, + [6627] = { + ["end"] = { + ["U"] = { 4489 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["pre"] = { 1154 }, + ["start"] = { + ["U"] = { 4489 }, + }, + }, + [6628] = { + ["end"] = { + ["U"] = { 4488 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["pre"] = { 1160 }, + ["start"] = { + ["U"] = { 4488 }, + }, + }, + [6629] = { + ["end"] = { + ["U"] = { 11857 }, + }, + ["lvl"] = 18, + ["min"] = 12, + ["obj"] = { + ["U"] = { 11858, 11912 }, + }, + ["pre"] = { 6548 }, + ["start"] = { + ["U"] = { 11857 }, + }, + }, + [6641] = { + ["end"] = { + ["U"] = { 12863 }, + }, + ["lvl"] = 23, + ["min"] = 20, + ["start"] = { + ["U"] = { 12717 }, + }, + }, + [6642] = { + ["end"] = { + ["U"] = { 12944 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 11370 }, + }, + ["start"] = { + ["U"] = { 12944 }, + }, + }, + [6643] = { + ["end"] = { + ["U"] = { 12944 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 17010 }, + }, + ["start"] = { + ["U"] = { 12944 }, + }, + }, + [6644] = { + ["end"] = { + ["U"] = { 12944 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 17011 }, + }, + ["start"] = { + ["U"] = { 12944 }, + }, + }, + [6645] = { + ["end"] = { + ["U"] = { 12944 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 17012 }, + }, + ["start"] = { + ["U"] = { 12944 }, + }, + }, + [6646] = { + ["end"] = { + ["U"] = { 12944 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 11382 }, + }, + ["start"] = { + ["U"] = { 12944 }, + }, + }, + [6661] = { + ["end"] = { + ["U"] = { 12997 }, + }, + ["lvl"] = 12, + ["min"] = 10, + ["obj"] = { + ["U"] = { 13017 }, + }, + ["start"] = { + ["I"] = { 17115 }, + ["U"] = { 12997 }, + }, + }, + [6662] = { + ["end"] = { + ["U"] = { 13018 }, + }, + ["lvl"] = 12, + ["min"] = 10, + ["pre"] = { 6661 }, + ["start"] = { + ["I"] = { 17116 }, + ["U"] = { 12997 }, + }, + }, + [6681] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 6707 }, + }, + ["lvl"] = 24, + ["min"] = 24, + ["obj"] = { + ["U"] = { 13936 }, + }, + ["start"] = { + ["I"] = { 17126 }, + }, + }, + [6701] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 6766 }, + }, + ["lvl"] = 60, + ["min"] = 24, + ["obj"] = { + ["I"] = { 17124 }, + }, + ["pre"] = { 6681 }, + ["start"] = { + ["U"] = { 6766 }, + }, + }, + [6721] = { + ["class"] = 4, + ["close"] = { 6071, 6072, 6073, 6721, 6722 }, + ["end"] = { + ["U"] = { 3601 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 8, + ["start"] = { + ["U"] = { 5117 }, + }, + }, + [6722] = { + ["class"] = 4, + ["close"] = { 6071, 6072, 6073, 6721, 6722 }, + ["end"] = { + ["U"] = { 3601 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 8, + ["start"] = { + ["U"] = { 1231 }, + }, + }, + [6741] = { + ["end"] = { + ["U"] = { 13176 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17422 }, + }, + ["pre"] = { 7224 }, + ["start"] = { + ["U"] = { 13176 }, + }, + }, + [6761] = { + ["end"] = { + ["U"] = { 4217 }, + }, + ["lvl"] = 55, + ["min"] = 54, + ["pre"] = { 1015, 1019, 1047 }, + ["start"] = { + ["U"] = { 3516 }, + }, + }, + [6762] = { + ["end"] = { + ["U"] = { 11801 }, + }, + ["lvl"] = 55, + ["min"] = 54, + ["pre"] = { 6761 }, + ["start"] = { + ["U"] = { 4217 }, + }, + }, + [6781] = { + ["end"] = { + ["U"] = { 13257 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17422 }, + }, + ["pre"] = { 7223 }, + ["start"] = { + ["U"] = { 13257 }, + }, + }, + [6801] = { + ["end"] = { + ["U"] = { 13236 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17306 }, + }, + ["start"] = { + ["U"] = { 13236 }, + }, + }, + [6804] = { + ["end"] = { + ["U"] = { 13278 }, + }, + ["lvl"] = 56, + ["min"] = 55, + ["obj"] = { + ["I"] = { 17309 }, + }, + ["start"] = { + ["U"] = { 13278 }, + }, + }, + [6805] = { + ["end"] = { + ["U"] = { 13278 }, + }, + ["lvl"] = 57, + ["min"] = 55, + ["obj"] = { + ["U"] = { 11744, 11746 }, + }, + ["start"] = { + ["U"] = { 13278 }, + }, + }, + [6821] = { + ["end"] = { + ["U"] = { 13278 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 17322 }, + }, + ["pre"] = { 6804, 6805 }, + ["start"] = { + ["U"] = { 13278 }, + }, + }, + [6822] = { + ["end"] = { + ["U"] = { 13278 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["U"] = { 11658, 11668, 11673, 12101 }, + }, + ["pre"] = { 6821 }, + ["start"] = { + ["U"] = { 13278 }, + }, + }, + [6823] = { + ["end"] = { + ["U"] = { 13278 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["pre"] = { 6822 }, + ["start"] = { + ["U"] = { 13278 }, + }, + }, + [6824] = { + ["end"] = { + ["U"] = { 13278 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 17329, 17330, 17331, 17332 }, + }, + ["pre"] = { 6823 }, + ["start"] = { + ["U"] = { 13278 }, + }, + }, + [6825] = { + ["end"] = { + ["U"] = { 13179 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17326 }, + }, + ["start"] = { + ["U"] = { 13179 }, + }, + }, + [6826] = { + ["end"] = { + ["U"] = { 13180 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17327 }, + }, + ["start"] = { + ["U"] = { 13180 }, + }, + }, + [6827] = { + ["end"] = { + ["U"] = { 13181 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17328 }, + }, + ["start"] = { + ["U"] = { 13181 }, + }, + }, + [6841] = { + ["lvl"] = 55, + ["min"] = 54, + }, + [6842] = { + ["lvl"] = 58, + ["min"] = 54, + }, + [6844] = { + ["end"] = { + ["U"] = { 11939 }, + }, + ["lvl"] = 57, + ["min"] = 54, + ["pre"] = { 1126 }, + ["start"] = { + ["U"] = { 13220 }, + }, + }, + [6845] = { + ["end"] = { + ["U"] = { 11801 }, + }, + ["lvl"] = 57, + ["min"] = 54, + ["pre"] = { 6844 }, + ["start"] = { + ["U"] = { 11939 }, + }, + }, + [6846] = { + ["end"] = { + ["U"] = { 13446 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 17353 }, + }, + ["start"] = { + ["U"] = { 13446 }, + }, + }, + [6847] = { + ["end"] = { + ["U"] = { 13151 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["race"] = 178, + ["start"] = { + ["U"] = { 13151 }, + }, + }, + [6848] = { + ["end"] = { + ["U"] = { 13151 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["race"] = 77, + ["start"] = { + ["U"] = { 13151 }, + }, + }, + [6861] = { + ["end"] = { + ["U"] = { 13377 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 3575, 3860, 12359, 17411 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 13377 }, + }, + }, + [6862] = { + ["end"] = { + ["U"] = { 13377 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 3575, 3860, 12359, 17411 }, + }, + ["race"] = 77, + ["start"] = { + ["U"] = { 13377 }, + }, + }, + [6881] = { + ["end"] = { + ["U"] = { 13442 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17423 }, + }, + ["start"] = { + ["U"] = { 13442 }, + }, + }, + [6901] = { + ["end"] = { + ["U"] = { 13449 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 17442 }, + }, + ["start"] = { + ["U"] = { 13449 }, + }, + }, + [6921] = { + ["end"] = { + ["U"] = { 12736 }, + }, + ["lvl"] = 27, + ["min"] = 21, + ["obj"] = { + ["I"] = { 16762 }, + }, + ["start"] = { + ["U"] = { 12736 }, + }, + }, + [6922] = { + ["end"] = { + ["U"] = { 12736 }, + }, + ["lvl"] = 30, + ["min"] = 21, + ["race"] = 178, + ["start"] = { + ["I"] = { 16782, 16782 }, + }, + }, + [6941] = { + ["end"] = { + ["U"] = { 13439 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17503 }, + }, + ["start"] = { + ["U"] = { 13439 }, + }, + }, + [6942] = { + ["end"] = { + ["U"] = { 13438 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17502 }, + }, + ["start"] = { + ["U"] = { 13438 }, + }, + }, + [6943] = { + ["end"] = { + ["U"] = { 13437 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17504 }, + }, + ["start"] = { + ["U"] = { 13437 }, + }, + }, + [6961] = { + ["close"] = { 6961, 7021, 7024 }, + ["end"] = { + ["U"] = { 13445 }, + }, + ["event"] = 2, + ["lvl"] = 15, + ["min"] = 10, + ["race"] = 178, + ["start"] = { + ["U"] = { 13418 }, + }, + }, + [6962] = { + ["end"] = { + ["U"] = { 13445 }, + }, + ["event"] = 2, + ["lvl"] = 15, + ["min"] = 10, + ["obj"] = { + ["I"] = { 1179, 17197 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 13445 }, + }, + }, + [6963] = { + ["end"] = { + ["U"] = { 13636 }, + }, + ["event"] = 2, + ["lvl"] = 35, + ["min"] = 30, + ["race"] = 178, + ["start"] = { + ["U"] = { 13418 }, + }, + }, + [6964] = { + ["end"] = { + ["U"] = { 13417 }, + }, + ["event"] = 2, + ["lvl"] = 60, + ["min"] = 55, + ["start"] = { + ["U"] = { 9550 }, + }, + }, + [6981] = { + ["end"] = { + ["U"] = { 8418 }, + }, + ["lvl"] = 26, + ["min"] = 15, + ["start"] = { + ["I"] = { 10441 }, + }, + }, + [6982] = { + ["end"] = { + ["U"] = { 12096 }, + }, + ["lvl"] = 55, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17542 }, + }, + ["start"] = { + ["U"] = { 12096 }, + }, + }, + [6983] = { + ["end"] = { + ["U"] = { 13418 }, + }, + ["event"] = 2, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["I"] = { 17662 }, + }, + ["pre"] = { 6963 }, + ["start"] = { + ["U"] = { 13636 }, + }, + }, + [6984] = { + ["end"] = { + ["U"] = { 13445 }, + }, + ["event"] = 2, + ["lvl"] = 35, + ["min"] = 30, + ["pre"] = { 6983 }, + ["start"] = { + ["U"] = { 13418 }, + }, + }, + [6985] = { + ["end"] = { + ["U"] = { 12097 }, + }, + ["lvl"] = 55, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17522 }, + }, + ["start"] = { + ["U"] = { 12097 }, + }, + }, + [7001] = { + ["end"] = { + ["U"] = { 13616 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["IR"] = { 17626 }, + }, + ["start"] = { + ["U"] = { 13616 }, + }, + }, + [7002] = { + ["end"] = { + ["U"] = { 13441 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17642 }, + }, + ["start"] = { + ["U"] = { 13441 }, + }, + }, + [7003] = { + ["end"] = { + ["U"] = { 14637 }, + }, + ["lvl"] = 48, + ["min"] = 45, + ["obj"] = { + ["I"] = { 18956 }, + ["IR"] = { 18904 }, + }, + ["start"] = { + ["U"] = { 14637 }, + }, + }, + [7021] = { + ["close"] = { 6961, 7021, 7024 }, + ["end"] = { + ["U"] = { 13445 }, + }, + ["event"] = 2, + ["lvl"] = 15, + ["min"] = 10, + ["race"] = 178, + ["start"] = { + ["U"] = { 13431 }, + }, + }, + [7022] = { + ["close"] = { 7022, 7023 }, + ["end"] = { + ["U"] = { 13444 }, + }, + ["event"] = 2, + ["lvl"] = 15, + ["min"] = 10, + ["race"] = 77, + ["start"] = { + ["U"] = { 13433 }, + }, + }, + [7023] = { + ["close"] = { 7022, 7023 }, + ["end"] = { + ["U"] = { 13444 }, + }, + ["event"] = 2, + ["lvl"] = 15, + ["min"] = 10, + ["race"] = 77, + ["start"] = { + ["U"] = { 13435 }, + }, + }, + [7024] = { + ["close"] = { 6961, 7021, 7024 }, + ["end"] = { + ["U"] = { 13445 }, + }, + ["event"] = 2, + ["lvl"] = 15, + ["min"] = 10, + ["race"] = 178, + ["start"] = { + ["U"] = { 13429 }, + }, + }, + [7025] = { + ["end"] = { + ["U"] = { 13444 }, + }, + ["event"] = 2, + ["lvl"] = 15, + ["min"] = 10, + ["obj"] = { + ["I"] = { 1179, 17197 }, + }, + ["race"] = 77, + ["start"] = { + ["U"] = { 13444 }, + }, + }, + [7026] = { + ["end"] = { + ["U"] = { 13577 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17643 }, + }, + ["start"] = { + ["U"] = { 13577 }, + }, + }, + [7027] = { + ["end"] = { + ["U"] = { 13617 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["IR"] = { 17689 }, + }, + ["start"] = { + ["U"] = { 13617 }, + }, + }, + [7028] = { + ["end"] = { + ["U"] = { 13656 }, + }, + ["lvl"] = 47, + ["min"] = 41, + ["obj"] = { + ["I"] = { 17684 }, + }, + ["start"] = { + ["U"] = { 13656 }, + }, + }, + [7029] = { + ["end"] = { + ["U"] = { 11823 }, + }, + ["lvl"] = 47, + ["min"] = 41, + ["obj"] = { + ["I"] = { 17696 }, + ["IR"] = { 17693, 17696 }, + ["U"] = { 13696 }, + }, + ["start"] = { + ["U"] = { 11823 }, + }, + }, + [7041] = { + ["end"] = { + ["U"] = { 11715 }, + }, + ["lvl"] = 47, + ["min"] = 41, + ["obj"] = { + ["I"] = { 17696 }, + ["IR"] = { 17693, 17696 }, + ["U"] = { 13696 }, + }, + ["start"] = { + ["U"] = { 11715 }, + }, + }, + [7042] = { + ["end"] = { + ["U"] = { 13602, 13636 }, + }, + ["event"] = 2, + ["lvl"] = 35, + ["min"] = 30, + ["race"] = 77, + ["start"] = { + ["U"] = { 13433 }, + }, + }, + [7043] = { + ["end"] = { + ["U"] = { 13433 }, + }, + ["event"] = 2, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["I"] = { 17662 }, + }, + ["pre"] = { 7042 }, + ["start"] = { + ["U"] = { 13636 }, + }, + }, + [7044] = { + ["end"] = { + ["U"] = { 13716 }, + }, + ["lvl"] = 49, + ["min"] = 41, + ["obj"] = { + ["I"] = { 17702, 17703 }, + }, + ["start"] = { + ["U"] = { 13697 }, + }, + }, + [7045] = { + ["end"] = { + ["U"] = { 13444 }, + }, + ["event"] = 2, + ["lvl"] = 35, + ["min"] = 30, + ["pre"] = { 7043 }, + ["start"] = { + ["U"] = { 13433 }, + }, + }, + [7046] = { + ["end"] = { + ["U"] = { 13716 }, + }, + ["lvl"] = 49, + ["min"] = 41, + ["pre"] = { 7044 }, + ["start"] = { + ["U"] = { 13716 }, + }, + }, + [7061] = { + ["end"] = { + ["U"] = { 3057 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["pre"] = { 6964 }, + ["start"] = { + ["U"] = { 13417 }, + }, + }, + [7062] = { + ["end"] = { + ["U"] = { 2916 }, + }, + ["event"] = 2, + ["lvl"] = 60, + ["min"] = 55, + ["start"] = { + ["U"] = { 1365 }, + }, + }, + [7063] = { + ["end"] = { + ["U"] = { 2784 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["pre"] = { 7062 }, + ["start"] = { + ["U"] = { 2916 }, + }, + }, + [7064] = { + ["end"] = { + ["U"] = { 13699 }, + }, + ["lvl"] = 51, + ["min"] = 45, + ["obj"] = { + ["U"] = { 12201 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 13699 }, + }, + }, + [7065] = { + ["end"] = { + ["U"] = { 13698 }, + }, + ["lvl"] = 51, + ["min"] = 45, + ["obj"] = { + ["U"] = { 12201 }, + }, + ["race"] = 77, + ["start"] = { + ["U"] = { 13698 }, + }, + }, + [7066] = { + ["end"] = { + ["U"] = { 11832 }, + }, + ["lvl"] = 51, + ["min"] = 39, + ["start"] = { + ["U"] = { 12238 }, + }, + }, + [7067] = { + ["end"] = { + ["U"] = { 13717 }, + }, + ["lvl"] = 48, + ["min"] = 39, + ["obj"] = { + ["I"] = { 17757, 17758 }, + }, + ["start"] = { + ["U"] = { 13717 }, + }, + }, + [7068] = { + ["end"] = { + ["U"] = { 7311 }, + }, + ["lvl"] = 42, + ["min"] = 39, + ["obj"] = { + ["I"] = { 17756 }, + }, + ["start"] = { + ["U"] = { 7311 }, + }, + }, + [7069] = { + }, + [7070] = { + ["end"] = { + ["U"] = { 4967 }, + }, + ["lvl"] = 42, + ["min"] = 39, + ["obj"] = { + ["I"] = { 17756 }, + }, + ["start"] = { + ["U"] = { 4967 }, + }, + }, + [7081] = { + ["end"] = { + ["U"] = { 13777 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["U"] = { 13756 }, + }, + ["start"] = { + ["U"] = { 13777 }, + }, + }, + [7082] = { + ["end"] = { + ["U"] = { 13776 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["U"] = { 13756 }, + }, + ["start"] = { + ["U"] = { 13776 }, + }, + }, + [7101] = { + ["end"] = { + ["U"] = { 13776 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["U"] = { 13778 }, + }, + ["start"] = { + ["U"] = { 13776 }, + }, + }, + [7102] = { + ["end"] = { + ["U"] = { 13777 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["U"] = { 13778 }, + }, + ["start"] = { + ["U"] = { 13777 }, + }, + }, + [7121] = { + ["end"] = { + ["U"] = { 12096 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["start"] = { + ["U"] = { 13797 }, + }, + }, + [7122] = { + ["end"] = { + ["U"] = { 13777 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["U"] = { 13796 }, + }, + ["start"] = { + ["U"] = { 13777 }, + }, + }, + [7123] = { + ["end"] = { + ["U"] = { 12097 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["start"] = { + ["U"] = { 13798 }, + }, + }, + [7124] = { + ["end"] = { + ["U"] = { 13776 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["U"] = { 13796 }, + }, + ["start"] = { + ["U"] = { 13776 }, + }, + }, + [7141] = { + ["end"] = { + ["U"] = { 13816 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["pre"] = { 7221 }, + ["start"] = { + ["U"] = { 13816 }, + }, + }, + [7142] = { + ["end"] = { + ["U"] = { 13817 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["pre"] = { 7222 }, + ["start"] = { + ["U"] = { 13817 }, + }, + }, + [7161] = { + ["end"] = { + ["U"] = { 13840 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17850 }, + }, + ["start"] = { + ["U"] = { 13840 }, + }, + }, + [7162] = { + ["end"] = { + ["U"] = { 13841 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17849 }, + }, + ["start"] = { + ["U"] = { 13841 }, + }, + }, + [7163] = { + ["end"] = { + ["U"] = { 13840 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17690 }, + }, + ["pre"] = { 7161 }, + ["start"] = { + ["U"] = { 13840 }, + }, + }, + [7164] = { + ["end"] = { + ["U"] = { 13840 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17905 }, + }, + ["pre"] = { 7161 }, + ["start"] = { + ["U"] = { 13840 }, + }, + }, + [7165] = { + ["end"] = { + ["U"] = { 13840 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17906 }, + }, + ["pre"] = { 7164 }, + ["start"] = { + ["U"] = { 13840 }, + }, + }, + [7166] = { + ["end"] = { + ["U"] = { 13840 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17907 }, + }, + ["pre"] = { 7165 }, + ["start"] = { + ["U"] = { 13840 }, + }, + }, + [7167] = { + ["end"] = { + ["U"] = { 13840 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17908 }, + }, + ["pre"] = { 7166 }, + ["start"] = { + ["U"] = { 13840 }, + }, + }, + [7168] = { + ["end"] = { + ["U"] = { 13841 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17691 }, + }, + ["pre"] = { 7162 }, + ["start"] = { + ["U"] = { 13841 }, + }, + }, + [7169] = { + ["end"] = { + ["U"] = { 13841 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17900 }, + }, + ["pre"] = { 7168 }, + ["start"] = { + ["U"] = { 13841 }, + }, + }, + [7170] = { + ["end"] = { + ["U"] = { 13841 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17901 }, + }, + ["pre"] = { 7169 }, + ["start"] = { + ["U"] = { 13841 }, + }, + }, + [7171] = { + ["end"] = { + ["U"] = { 13841 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17902 }, + }, + ["pre"] = { 7170 }, + ["start"] = { + ["U"] = { 13841 }, + }, + }, + [7172] = { + ["end"] = { + ["U"] = { 13841 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17903 }, + }, + ["pre"] = { 7171 }, + ["start"] = { + ["U"] = { 13841 }, + }, + }, + [7181] = { + ["end"] = { + ["U"] = { 13840 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["U"] = { 12159 }, + }, + ["start"] = { + ["U"] = { 13840 }, + }, + }, + [7201] = { + ["end"] = { + ["U"] = { 9078 }, + }, + ["lvl"] = 54, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11129 }, + }, + ["pre"] = { 3906 }, + ["start"] = { + ["U"] = { 9078 }, + }, + }, + [7202] = { + ["end"] = { + ["U"] = { 13841 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["U"] = { 12159 }, + }, + ["start"] = { + ["U"] = { 13841 }, + }, + }, + [7221] = { + ["lvl"] = 60, + ["min"] = 51, + }, + [7222] = { + ["lvl"] = 60, + ["min"] = 51, + }, + [7223] = { + ["end"] = { + ["U"] = { 13257 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17422 }, + }, + ["start"] = { + ["U"] = { 13257 }, + }, + }, + [7224] = { + ["end"] = { + ["U"] = { 13176 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17422 }, + }, + ["start"] = { + ["U"] = { 13176 }, + }, + }, + [7241] = { + ["end"] = { + ["U"] = { 13840 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["start"] = { + ["U"] = { 13842 }, + }, + }, + [7261] = { + ["end"] = { + ["U"] = { 13841 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["start"] = { + ["U"] = { 13843 }, + }, + }, + [7281] = { + ["end"] = { + ["U"] = { 13154 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["U"] = { 13320 }, + }, + ["start"] = { + ["U"] = { 13154 }, + }, + }, + [7282] = { + ["end"] = { + ["U"] = { 13320 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["U"] = { 13154 }, + }, + ["start"] = { + ["U"] = { 13320 }, + }, + }, + [7301] = { + ["end"] = { + ["U"] = { 13319 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["U"] = { 14029, 14030, 14031 }, + }, + ["start"] = { + ["U"] = { 13319 }, + }, + }, + [7302] = { + ["end"] = { + ["U"] = { 13153 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["U"] = { 14026, 14027, 14028 }, + }, + ["start"] = { + ["U"] = { 13153 }, + }, + }, + [7321] = { + ["end"] = { + ["U"] = { 2393 }, + }, + ["lvl"] = 31, + ["min"] = 28, + ["obj"] = { + ["I"] = { 3712, 3713 }, + }, + ["skill"] = 185, + ["start"] = { + ["U"] = { 2393 }, + }, + }, + [7341] = { + ["end"] = { + ["U"] = { 14182 }, + }, + ["lvl"] = 60, + ["min"] = 52, + ["obj"] = { + ["I"] = { 15997 }, + }, + ["start"] = { + ["U"] = { 14182 }, + }, + }, + [7342] = { + ["end"] = { + ["U"] = { 14183 }, + }, + ["lvl"] = 60, + ["min"] = 52, + ["obj"] = { + ["I"] = { 15997 }, + }, + ["start"] = { + ["U"] = { 14183 }, + }, + }, + [7361] = { + ["end"] = { + ["U"] = { 14185 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 18142 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 14185 }, + }, + }, + [7362] = { + ["end"] = { + ["U"] = { 14186 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 18143 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 14186 }, + }, + }, + [7363] = { + ["end"] = { + ["U"] = { 13154 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 18144 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 13154 }, + }, + }, + [7364] = { + ["end"] = { + ["U"] = { 14188 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 18145 }, + }, + ["race"] = 77, + ["start"] = { + ["U"] = { 14188 }, + }, + }, + [7365] = { + ["end"] = { + ["U"] = { 14187 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 18146 }, + }, + ["race"] = 77, + ["start"] = { + ["U"] = { 14187 }, + }, + }, + [7366] = { + ["end"] = { + ["U"] = { 13320 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 18147 }, + }, + ["race"] = 77, + ["start"] = { + ["U"] = { 13320 }, + }, + }, + [7367] = { + ["end"] = { + ["U"] = { 13598 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["U"] = { 13597 }, + }, + ["start"] = { + ["U"] = { 13598 }, + }, + }, + [7368] = { + ["end"] = { + ["U"] = { 13597 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["U"] = { 13598 }, + }, + ["start"] = { + ["U"] = { 13597 }, + }, + }, + [7381] = { + ["end"] = { + ["U"] = { 13840 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 18148 }, + }, + ["pre"] = { 7181 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 13840 }, + }, + }, + [7382] = { + ["end"] = { + ["U"] = { 13841 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 18148 }, + }, + ["pre"] = { 7202 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 13841 }, + }, + }, + [7383] = { + ["end"] = { + ["U"] = { 3515 }, + }, + ["lvl"] = 11, + ["min"] = 1, + ["obj"] = { + ["I"] = { 18151 }, + ["IR"] = { 18152 }, + }, + ["pre"] = { 933 }, + ["start"] = { + ["U"] = { 3515 }, + }, + }, + [7385] = { + ["end"] = { + ["U"] = { 13236 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17306 }, + }, + ["start"] = { + ["U"] = { 13236 }, + }, + }, + [7386] = { + ["end"] = { + ["U"] = { 13442 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17423 }, + }, + ["start"] = { + ["U"] = { 13442 }, + }, + }, + [7401] = { + ["end"] = { + ["U"] = { 13448 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 18206 }, + }, + ["race"] = 178, + ["start"] = { + ["O"] = { 179438 }, + }, + }, + [7402] = { + ["end"] = { + ["U"] = { 13447 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 18207 }, + }, + ["race"] = 77, + ["start"] = { + ["O"] = { 179437 }, + }, + }, + [7421] = { + ["end"] = { + ["U"] = { 14185 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 18142 }, + }, + ["pre"] = { 7361 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 14185 }, + }, + }, + [7422] = { + ["end"] = { + ["U"] = { 14186 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 18143 }, + }, + ["pre"] = { 7362 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 14186 }, + }, + }, + [7423] = { + ["end"] = { + ["U"] = { 13154 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 18144 }, + }, + ["pre"] = { 7363 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 13154 }, + }, + }, + [7424] = { + ["end"] = { + ["U"] = { 14188 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 18145 }, + }, + ["pre"] = { 7364 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 14188 }, + }, + }, + [7425] = { + ["end"] = { + ["U"] = { 14187 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 18146 }, + }, + ["pre"] = { 7365 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 14187 }, + }, + }, + [7426] = { + ["end"] = { + ["U"] = { 13320 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 18147 }, + }, + ["pre"] = { 7366 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 13320 }, + }, + }, + [7427] = { + ["end"] = { + ["U"] = { 13448 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 18206 }, + }, + ["pre"] = { 7401 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 13448 }, + }, + }, + [7428] = { + ["end"] = { + ["U"] = { 13447 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 18207 }, + }, + ["pre"] = { 7402 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 13447 }, + }, + }, + [7429] = { + ["end"] = { + ["U"] = { 14338 }, + }, + ["lvl"] = 60, + ["min"] = 56, + ["obj"] = { + ["I"] = { 18250 }, + }, + ["pre"] = { 5525 }, + ["start"] = { + ["U"] = { 14338 }, + }, + }, + [7441] = { + ["end"] = { + ["U"] = { 14355 }, + }, + ["lvl"] = 58, + ["min"] = 54, + ["obj"] = { + ["I"] = { 18261 }, + }, + ["start"] = { + ["U"] = { 14355 }, + }, + }, + [7461] = { + ["end"] = { + ["U"] = { 14358 }, + }, + ["lvl"] = 60, + ["min"] = 56, + ["obj"] = { + ["U"] = { 11486, 11496 }, + }, + ["start"] = { + ["U"] = { 14358 }, + }, + }, + [7462] = { + ["end"] = { + ["O"] = { 179517 }, + }, + ["lvl"] = 60, + ["min"] = 56, + ["pre"] = { 7461 }, + ["race"] = 255, + ["start"] = { + ["U"] = { 14358 }, + }, + }, + [7463] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 14368 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 18299 }, + }, + ["start"] = { + ["U"] = { 14368 }, + }, + }, + [7478] = { + ["end"] = { + ["U"] = { 14368 }, + }, + ["lvl"] = 60, + ["min"] = 57, + ["obj"] = { + ["I"] = { 12938, 14344, 18332, 18335 }, + }, + ["pre"] = { 7481 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 14368 }, + }, + }, + [7479] = { + ["end"] = { + ["U"] = { 14368 }, + }, + ["lvl"] = 60, + ["min"] = 57, + ["obj"] = { + ["I"] = { 12753, 14344, 18333, 18335 }, + }, + ["pre"] = { 7481 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 14368 }, + }, + }, + [7480] = { + ["end"] = { + ["U"] = { 14368 }, + }, + ["lvl"] = 60, + ["min"] = 57, + ["obj"] = { + ["I"] = { 12735, 14344, 18334, 18335 }, + }, + ["pre"] = { 7481 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 14368 }, + }, + }, + [7481] = { + ["end"] = { + ["U"] = { 14373 }, + }, + ["lvl"] = 60, + ["min"] = 54, + ["start"] = { + ["U"] = { 14373 }, + }, + }, + [7482] = { + ["end"] = { + ["U"] = { 14374 }, + }, + ["lvl"] = 60, + ["min"] = 54, + ["start"] = { + ["U"] = { 14374 }, + }, + }, + [7483] = { + ["end"] = { + ["U"] = { 14368 }, + }, + ["lvl"] = 60, + ["min"] = 54, + ["obj"] = { + ["I"] = { 12938, 14344, 18332, 18335 }, + }, + ["pre"] = { 7482 }, + ["start"] = { + ["U"] = { 14368 }, + }, + }, + [7484] = { + ["end"] = { + ["U"] = { 14368 }, + }, + ["lvl"] = 60, + ["min"] = 54, + ["obj"] = { + ["I"] = { 12753, 14344, 18333, 18335 }, + }, + ["pre"] = { 7482 }, + ["start"] = { + ["U"] = { 14368 }, + }, + }, + [7485] = { + ["end"] = { + ["U"] = { 14368 }, + }, + ["lvl"] = 60, + ["min"] = 54, + ["obj"] = { + ["I"] = { 12735, 14344, 18334, 18335 }, + }, + ["pre"] = { 7482 }, + ["start"] = { + ["U"] = { 14368 }, + }, + }, + [7486] = { + ["end"] = { + ["O"] = { 179551 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["start"] = { + ["U"] = { 13278 }, + }, + }, + [7487] = { + ["end"] = { + ["U"] = { 14387 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 18412 }, + }, + ["start"] = { + ["U"] = { 14387 }, + }, + }, + [7488] = { + ["end"] = { + ["U"] = { 7877 }, + }, + ["lvl"] = 57, + ["min"] = 54, + ["obj"] = { + ["I"] = { 18426 }, + }, + ["pre"] = { 7494 }, + ["start"] = { + ["U"] = { 7877 }, + }, + }, + [7489] = { + ["end"] = { + ["U"] = { 7776 }, + }, + ["lvl"] = 57, + ["min"] = 54, + ["obj"] = { + ["I"] = { 18426 }, + }, + ["pre"] = { 7492 }, + ["start"] = { + ["U"] = { 7776 }, + }, + }, + [7490] = { + ["end"] = { + ["U"] = { 4949 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["start"] = { + ["I"] = { 18422 }, + }, + }, + [7491] = { + ["end"] = { + ["U"] = { 14392 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 7490 }, + ["start"] = { + ["U"] = { 4949 }, + }, + }, + [7492] = { + ["end"] = { + ["U"] = { 7776 }, + }, + ["lvl"] = 57, + ["min"] = 54, + ["start"] = { + ["U"] = { 10879, 10880, 10881 }, + }, + }, + [7493] = { + ["end"] = { + ["U"] = { 14392 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 7491 }, + ["skill"] = 165, + ["start"] = { + ["U"] = { 14392 }, + }, + }, + [7494] = { + ["end"] = { + ["U"] = { 7877 }, + }, + ["lvl"] = 57, + ["min"] = 54, + ["start"] = { + ["U"] = { 2198, 10878, 10877 }, + }, + }, + [7495] = { + ["end"] = { + ["U"] = { 1748 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["start"] = { + ["I"] = { 18423 }, + }, + }, + [7496] = { + ["end"] = { + ["U"] = { 14394 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 7495 }, + ["start"] = { + ["U"] = { 1748 }, + }, + }, + [7497] = { + ["end"] = { + ["U"] = { 14394 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 7496 }, + ["skill"] = 165, + ["start"] = { + ["U"] = { 14394 }, + }, + }, + [7498] = { + ["end"] = { + ["U"] = { 14383 }, + }, + ["lvl"] = 60, + ["min"] = 54, + ["start"] = { + ["I"] = { 18356 }, + }, + }, + [7499] = { + ["end"] = { + ["U"] = { 14383 }, + }, + ["lvl"] = 60, + ["min"] = 54, + ["start"] = { + ["I"] = { 18357 }, + }, + }, + [7500] = { + ["end"] = { + ["U"] = { 14383 }, + }, + ["lvl"] = 60, + ["min"] = 54, + ["start"] = { + ["I"] = { 18358 }, + }, + }, + [7501] = { + ["end"] = { + ["U"] = { 14382 }, + }, + ["lvl"] = 60, + ["min"] = 54, + ["start"] = { + ["I"] = { 18359 }, + }, + }, + [7502] = { + ["end"] = { + ["U"] = { 14382 }, + }, + ["lvl"] = 60, + ["min"] = 54, + ["start"] = { + ["I"] = { 18360 }, + }, + }, + [7503] = { + ["end"] = { + ["U"] = { 14382 }, + }, + ["lvl"] = 60, + ["min"] = 54, + ["start"] = { + ["I"] = { 18361 }, + }, + }, + [7504] = { + ["end"] = { + ["U"] = { 14381 }, + }, + ["lvl"] = 60, + ["min"] = 54, + ["start"] = { + ["I"] = { 18362 }, + }, + }, + [7505] = { + ["end"] = { + ["U"] = { 14381 }, + }, + ["lvl"] = 60, + ["min"] = 54, + ["start"] = { + ["I"] = { 18363 }, + }, + }, + [7506] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 14381 }, + }, + ["lvl"] = 60, + ["min"] = 54, + ["start"] = { + ["I"] = { 18364 }, + }, + }, + [7507] = { + ["end"] = { + ["U"] = { 14368 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["start"] = { + ["I"] = { 18401 }, + }, + }, + [7508] = { + ["end"] = { + ["U"] = { 14368 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 7507 }, + ["start"] = { + ["I"] = { 18513 }, + ["U"] = { 14368 }, + }, + }, + [7509] = { + ["end"] = { + ["U"] = { 14368 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 18488, 18492 }, + ["IR"] = { 18488 }, + }, + ["pre"] = { 7508 }, + ["start"] = { + ["U"] = { 14368 }, + }, + }, + [7521] = { + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 17771, 18563, 18564, 18566 }, + }, + }, + [7541] = { + ["end"] = { + ["U"] = { 4047 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["pre"] = { 1262 }, + ["start"] = { + ["U"] = { 4047 }, + }, + }, + [7562] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 14436 }, + }, + ["lvl"] = 58, + ["min"] = 60, + ["start"] = { + ["U"] = { 5520, 5815, 6382, 5753 }, + }, + }, + [7563] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 14436 }, + }, + ["lvl"] = 58, + ["min"] = 60, + ["obj"] = { + ["I"] = { 18590 }, + }, + ["pre"] = { 7562 }, + ["start"] = { + ["U"] = { 14436 }, + }, + }, + [7564] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 14437 }, + }, + ["lvl"] = 58, + ["min"] = 60, + ["pre"] = { 7563 }, + ["start"] = { + ["U"] = { 14436 }, + }, + }, + [7581] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 14463 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 18603 }, + }, + ["start"] = { + ["U"] = { 14463 }, + }, + }, + [7582] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 14463 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 18604 }, + }, + ["start"] = { + ["U"] = { 14463 }, + }, + }, + [7583] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 14463 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 18605 }, + ["IR"] = { 18601 }, + }, + ["pre"] = { 7581, 7582 }, + ["start"] = { + ["U"] = { 14463 }, + }, + }, + [7601] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 14470 }, + }, + ["lvl"] = 50, + ["min"] = 50, + ["start"] = { + ["U"] = { 14469 }, + }, + }, + [7602] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 14470 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["I"] = { 18622, 18623, 18624 }, + }, + ["pre"] = { 7601 }, + ["start"] = { + ["U"] = { 14470 }, + }, + }, + [7603] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 14469 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["I"] = { 18625 }, + ["IR"] = { 18626 }, + }, + ["pre"] = { 7602 }, + ["start"] = { + ["U"] = { 14470 }, + }, + }, + [7604] = { + ["end"] = { + ["U"] = { 12944 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 17203 }, + }, + ["start"] = { + ["I"] = { 18628 }, + }, + }, + [7621] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 14494 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["start"] = { + ["U"] = { 14494 }, + }, + }, + [7622] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 14494 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 7621 }, + ["start"] = { + ["U"] = { 14494 }, + }, + }, + [7623] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 9516 }, + }, + ["lvl"] = 58, + ["min"] = 60, + ["pre"] = { 7564 }, + ["start"] = { + ["U"] = { 14437 }, + }, + }, + [7624] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 9516 }, + }, + ["lvl"] = 58, + ["min"] = 60, + ["obj"] = { + ["I"] = { 18719 }, + }, + ["pre"] = { 7623 }, + ["start"] = { + ["U"] = { 9516 }, + }, + }, + [7625] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 14437 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 18687 }, + }, + ["pre"] = { 7624 }, + ["start"] = { + ["U"] = { 9516 }, + }, + }, + [7626] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 14437 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 9264 }, + }, + ["pre"] = { 7564 }, + ["start"] = { + ["U"] = { 14436 }, + }, + }, + [7627] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 14437 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 11370, 14344 }, + }, + ["pre"] = { 7564 }, + ["start"] = { + ["U"] = { 14436 }, + }, + }, + [7628] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 14437 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 15416 }, + }, + ["pre"] = { 7564 }, + ["start"] = { + ["U"] = { 14436 }, + }, + }, + [7629] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 14437 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["IR"] = { 18688 }, + ["U"] = { 14500 }, + }, + ["pre"] = { 7625, 7630 }, + ["start"] = { + ["U"] = { 14437 }, + }, + }, + [7630] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 14437 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12360 }, + }, + ["pre"] = { 7626, 7627, 7628 }, + ["start"] = { + ["U"] = { 14437 }, + }, + }, + [7631] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 14504 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 7629 }, + ["start"] = { + ["U"] = { 14436 }, + }, + }, + [7632] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 14524 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["start"] = { + ["I"] = { 18703 }, + }, + }, + [7633] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 14524 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 7632 }, + ["start"] = { + ["U"] = { 14524 }, + }, + }, + [7634] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 14526 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 18704 }, + }, + ["pre"] = { 7633 }, + ["start"] = { + ["U"] = { 14526 }, + }, + }, + [7635] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 14525 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 18705 }, + }, + ["pre"] = { 7633 }, + ["start"] = { + ["U"] = { 14525 }, + }, + }, + [7636] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 14524 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 14530, 14533, 14534, 14535 }, + }, + ["pre"] = { 7633 }, + ["start"] = { + ["U"] = { 14524 }, + }, + }, + [7637] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 11406 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["start"] = { + ["U"] = { 928 }, + }, + }, + [7638] = { + ["class"] = 2, + ["close"] = { 7638, 7670 }, + ["end"] = { + ["U"] = { 928 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["start"] = { + ["U"] = { 6171 }, + }, + }, + [7639] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 928 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 7637 }, + ["start"] = { + ["U"] = { 11406 }, + }, + }, + [7640] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 928 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["IR"] = { 18752 }, + ["U"] = { 14564 }, + }, + ["pre"] = { 7639 }, + ["start"] = { + ["U"] = { 928 }, + }, + }, + [7641] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 1416 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["start"] = { + ["U"] = { 928 }, + }, + }, + [7642] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 1416 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 8836, 12360, 13180, 14047 }, + }, + ["pre"] = { 7641 }, + ["start"] = { + ["U"] = { 1416 }, + }, + }, + [7643] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 14566 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 18775 }, + }, + ["start"] = { + ["U"] = { 928 }, + }, + }, + [7644] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 928 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 7643 }, + ["start"] = { + ["U"] = { 14566 }, + }, + }, + [7645] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 2357 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 13724 }, + }, + ["pre"] = { 7643 }, + ["start"] = { + ["U"] = { 2357 }, + }, + }, + [7646] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 928 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12800, 18335 }, + }, + ["pre"] = { 7644 }, + ["start"] = { + ["U"] = { 928 }, + }, + }, + [7647] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 14568 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 18746, 18749, 18792, 18799 }, + ["IR"] = { 18746, 18749 }, + }, + ["pre"] = { 7646 }, + ["start"] = { + ["U"] = { 928 }, + }, + }, + [7648] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 928 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 7642 }, + ["start"] = { + ["U"] = { 1416 }, + }, + }, + [7649] = { + ["end"] = { + ["U"] = { 14368 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["skill"] = 164, + ["start"] = { + ["I"] = { 18769 }, + }, + }, + [7650] = { + ["end"] = { + ["U"] = { 14368 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["skill"] = 164, + ["start"] = { + ["I"] = { 18770 }, + }, + }, + [7651] = { + ["end"] = { + ["U"] = { 14368 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["skill"] = 164, + ["start"] = { + ["I"] = { 18771 }, + }, + }, + [7652] = { + ["end"] = { + ["U"] = { 14567 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["skill"] = 164, + ["start"] = { + ["U"] = { 14567 }, + }, + }, + [7653] = { + ["end"] = { + ["U"] = { 14567 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 12359 }, + }, + ["pre"] = { 7652 }, + ["skill"] = 164, + ["start"] = { + ["U"] = { 14567 }, + }, + }, + [7654] = { + ["end"] = { + ["U"] = { 14567 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 12359 }, + }, + ["pre"] = { 7652 }, + ["skill"] = 164, + ["start"] = { + ["U"] = { 14567 }, + }, + }, + [7655] = { + ["end"] = { + ["U"] = { 14567 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 12359 }, + }, + ["pre"] = { 7652 }, + ["skill"] = 164, + ["start"] = { + ["U"] = { 14567 }, + }, + }, + [7656] = { + ["end"] = { + ["U"] = { 14567 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 12359 }, + }, + ["pre"] = { 7652 }, + ["skill"] = 164, + ["start"] = { + ["U"] = { 14567 }, + }, + }, + [7657] = { + ["end"] = { + ["U"] = { 14567 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 12359 }, + }, + ["pre"] = { 7652 }, + ["skill"] = 164, + ["start"] = { + ["U"] = { 14567 }, + }, + }, + [7658] = { + ["end"] = { + ["U"] = { 14567 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 12359 }, + }, + ["pre"] = { 7652 }, + ["skill"] = 164, + ["start"] = { + ["U"] = { 14567 }, + }, + }, + [7659] = { + ["end"] = { + ["U"] = { 14567 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 12359 }, + }, + ["pre"] = { 7652 }, + ["skill"] = 164, + ["start"] = { + ["U"] = { 14567 }, + }, + }, + [7660] = { + ["end"] = { + ["U"] = { 3362 }, + }, + ["lvl"] = 1, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12351 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 3362 }, + }, + }, + [7661] = { + ["end"] = { + ["U"] = { 3362 }, + }, + ["lvl"] = 1, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12330 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 3362 }, + }, + }, + [7662] = { + ["end"] = { + ["U"] = { 3685 }, + }, + ["lvl"] = 1, + ["min"] = 60, + ["obj"] = { + ["I"] = { 15293 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 3685 }, + }, + }, + [7663] = { + ["end"] = { + ["U"] = { 3685 }, + }, + ["lvl"] = 1, + ["min"] = 60, + ["obj"] = { + ["I"] = { 15292 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 3685 }, + }, + }, + [7664] = { + ["end"] = { + ["U"] = { 7952 }, + }, + ["lvl"] = 1, + ["min"] = 60, + ["obj"] = { + ["I"] = { 13317 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 7952 }, + }, + }, + [7665] = { + ["end"] = { + ["U"] = { 7952 }, + }, + ["lvl"] = 1, + ["min"] = 60, + ["obj"] = { + ["I"] = { 8586 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 7952 }, + }, + }, + [7666] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 928 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 7647 }, + ["start"] = { + ["U"] = { 928 }, + }, + }, + [7667] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 13417 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 12800, 18335 }, + }, + ["start"] = { + ["U"] = { 13417 }, + }, + }, + [7668] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 13417 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 18880 }, + ["IR"] = { 18746 }, + }, + ["pre"] = { 7667 }, + ["start"] = { + ["U"] = { 13417 }, + }, + }, + [7669] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 13417 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["pre"] = { 8258 }, + ["start"] = { + ["U"] = { 13417 }, + }, + }, + [7670] = { + ["class"] = 2, + ["close"] = { 7638, 7670 }, + ["end"] = { + ["U"] = { 928 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["start"] = { + ["U"] = { 5149 }, + }, + }, + [7671] = { + ["end"] = { + ["U"] = { 4730 }, + }, + ["lvl"] = 1, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12302 }, + }, + ["race"] = 77, + ["start"] = { + ["U"] = { 4730 }, + }, + }, + [7672] = { + ["end"] = { + ["U"] = { 4730 }, + }, + ["lvl"] = 1, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12303 }, + }, + ["race"] = 77, + ["start"] = { + ["U"] = { 4730 }, + }, + }, + [7673] = { + ["end"] = { + ["U"] = { 1261 }, + }, + ["lvl"] = 1, + ["min"] = 60, + ["obj"] = { + ["I"] = { 13329 }, + }, + ["race"] = 77, + ["start"] = { + ["U"] = { 1261 }, + }, + }, + [7674] = { + ["end"] = { + ["U"] = { 1261 }, + }, + ["lvl"] = 1, + ["min"] = 60, + ["obj"] = { + ["I"] = { 13328 }, + }, + ["race"] = 77, + ["start"] = { + ["U"] = { 1261 }, + }, + }, + [7675] = { + ["end"] = { + ["U"] = { 7955 }, + }, + ["lvl"] = 1, + ["min"] = 60, + ["obj"] = { + ["I"] = { 13327 }, + }, + ["race"] = 77, + ["start"] = { + ["U"] = { 7955 }, + }, + }, + [7676] = { + ["end"] = { + ["U"] = { 7955 }, + }, + ["lvl"] = 1, + ["min"] = 60, + ["obj"] = { + ["I"] = { 13326 }, + }, + ["race"] = 77, + ["start"] = { + ["U"] = { 7955 }, + }, + }, + [7677] = { + ["end"] = { + ["U"] = { 384 }, + }, + ["lvl"] = 1, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12353 }, + }, + ["race"] = 77, + ["start"] = { + ["U"] = { 384 }, + }, + }, + [7678] = { + ["end"] = { + ["U"] = { 384 }, + }, + ["lvl"] = 1, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12354 }, + }, + ["race"] = 77, + ["start"] = { + ["U"] = { 384 }, + }, + }, + [7681] = { + ["lvl"] = 10, + ["min"] = 10, + }, + [7682] = { + ["lvl"] = 10, + ["min"] = 10, + }, + [7701] = { + ["end"] = { + ["U"] = { 14634 }, + }, + ["lvl"] = 50, + ["min"] = 45, + ["obj"] = { + ["I"] = { 18946 }, + }, + ["start"] = { + ["O"] = { 179827 }, + }, + }, + [7703] = { + ["end"] = { + ["U"] = { 14325 }, + }, + ["lvl"] = 60, + ["min"] = 56, + ["obj"] = { + ["I"] = { 18336 }, + }, + ["start"] = { + ["U"] = { 14325 }, + }, + }, + [7704] = { + ["lvl"] = 50, + ["min"] = 45, + ["start"] = { + ["I"] = { 18950 }, + }, + }, + [7721] = { + ["end"] = { + ["U"] = { 14637 }, + }, + ["lvl"] = 48, + ["min"] = 45, + ["obj"] = { + ["I"] = { 18958 }, + }, + ["start"] = { + ["U"] = { 14637 }, + }, + }, + [7722] = { + ["end"] = { + ["U"] = { 14624 }, + }, + ["lvl"] = 50, + ["min"] = 45, + ["obj"] = { + ["I"] = { 18922 }, + }, + ["start"] = { + ["U"] = { 14624 }, + }, + }, + [7723] = { + ["end"] = { + ["U"] = { 14627 }, + }, + ["lvl"] = 49, + ["min"] = 45, + ["obj"] = { + ["U"] = { 5854 }, + }, + ["start"] = { + ["U"] = { 14627 }, + }, + }, + [7724] = { + ["end"] = { + ["U"] = { 14627 }, + }, + ["lvl"] = 49, + ["min"] = 45, + ["obj"] = { + ["U"] = { 5858 }, + }, + ["start"] = { + ["U"] = { 14627 }, + }, + }, + [7725] = { + ["end"] = { + ["U"] = { 14637 }, + }, + ["lvl"] = 55, + ["min"] = 45, + ["obj"] = { + ["I"] = { 18956 }, + ["IR"] = { 18904 }, + }, + ["pre"] = { 7003 }, + ["start"] = { + ["U"] = { 14637 }, + }, + }, + [7726] = { + ["end"] = { + ["U"] = { 14637 }, + }, + ["lvl"] = 55, + ["min"] = 45, + ["obj"] = { + ["I"] = { 18958 }, + }, + ["pre"] = { 7721 }, + ["start"] = { + ["U"] = { 14637 }, + }, + }, + [7727] = { + ["end"] = { + ["U"] = { 14627 }, + }, + ["lvl"] = 49, + ["min"] = 45, + ["obj"] = { + ["U"] = { 9318 }, + }, + ["start"] = { + ["U"] = { 14627 }, + }, + }, + [7728] = { + ["end"] = { + ["U"] = { 14626 }, + }, + ["lvl"] = 48, + ["min"] = 45, + ["obj"] = { + ["I"] = { 18959, 18960 }, + }, + ["start"] = { + ["O"] = { 179827 }, + }, + }, + [7729] = { + ["end"] = { + ["U"] = { 14626 }, + }, + ["lvl"] = 48, + ["min"] = 45, + ["obj"] = { + ["U"] = { 5844, 5846 }, + }, + ["start"] = { + ["O"] = { 179827 }, + }, + }, + [7730] = { + ["end"] = { + ["U"] = { 7875 }, + }, + ["lvl"] = 45, + ["min"] = 39, + ["obj"] = { + ["I"] = { 18961 }, + }, + ["pre"] = { 2903 }, + ["start"] = { + ["U"] = { 7875 }, + }, + }, + [7731] = { + ["end"] = { + ["U"] = { 7875 }, + }, + ["lvl"] = 47, + ["min"] = 39, + ["obj"] = { + ["I"] = { 18962 }, + }, + ["pre"] = { 2903 }, + ["start"] = { + ["U"] = { 7875 }, + }, + }, + [7732] = { + ["end"] = { + ["U"] = { 7010 }, + }, + ["lvl"] = 48, + ["min"] = 39, + ["pre"] = { 7730, 7731 }, + ["start"] = { + ["U"] = { 7875 }, + }, + }, + [7733] = { + ["end"] = { + ["U"] = { 7852 }, + }, + ["lvl"] = 48, + ["min"] = 40, + ["obj"] = { + ["I"] = { 18947 }, + }, + ["pre"] = { 2821 }, + ["start"] = { + ["U"] = { 7852 }, + }, + }, + [7734] = { + ["end"] = { + ["U"] = { 7854 }, + }, + ["lvl"] = 48, + ["min"] = 40, + ["obj"] = { + ["I"] = { 18947 }, + }, + ["pre"] = { 2822 }, + ["start"] = { + ["U"] = { 7854 }, + }, + }, + [7735] = { + ["end"] = { + ["U"] = { 7852 }, + }, + ["lvl"] = 48, + ["min"] = 40, + ["start"] = { + ["I"] = { 18969 }, + }, + }, + [7736] = { + ["end"] = { + ["U"] = { 14624 }, + }, + ["lvl"] = 60, + ["min"] = 45, + ["obj"] = { + ["I"] = { 3356, 3857, 18944 }, + }, + ["pre"] = { 7722 }, + ["start"] = { + ["U"] = { 14624 }, + }, + }, + [7737] = { + ["end"] = { + ["U"] = { 14624 }, + }, + ["lvl"] = 60, + ["min"] = 45, + ["obj"] = { + ["I"] = { 18945 }, + }, + ["pre"] = { 7722 }, + ["start"] = { + ["U"] = { 14624 }, + }, + }, + [7738] = { + ["end"] = { + ["U"] = { 7854 }, + }, + ["lvl"] = 48, + ["min"] = 40, + ["start"] = { + ["I"] = { 18972 }, + }, + }, + [7761] = { + ["end"] = { + ["O"] = { 179880 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["start"] = { + ["I"] = { 18987 }, + }, + }, + [7781] = { + ["end"] = { + ["U"] = { 1748 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["start"] = { + ["I"] = { 19003 }, + }, + }, + [7782] = { + ["end"] = { + ["U"] = { 14721 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 7781 }, + ["start"] = { + ["U"] = { 1748 }, + }, + }, + [7783] = { + ["end"] = { + ["U"] = { 4949 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["start"] = { + ["I"] = { 19002 }, + }, + }, + [7784] = { + ["end"] = { + ["U"] = { 14720 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 7783 }, + ["start"] = { + ["U"] = { 4949 }, + }, + }, + [7785] = { + ["end"] = { + ["U"] = { 14347 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["start"] = { + ["I"] = { 19016 }, + }, + }, + [7786] = { + ["end"] = { + ["U"] = { 14347 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 17771, 18563, 18564, 19017 }, + }, + ["pre"] = { 7785 }, + ["start"] = { + ["U"] = { 14347 }, + }, + }, + [7787] = { + ["end"] = { + ["U"] = { 14347 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 7786 }, + ["start"] = { + ["I"] = { 19018 }, + }, + }, + [7788] = { + ["close"] = { 7788, 7871, 7872, 7873, 8291 }, + ["end"] = { + ["U"] = { 14733 }, + }, + ["lvl"] = 29, + ["min"] = 20, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["race"] = 77, + ["start"] = { + ["U"] = { 14733 }, + }, + }, + [7789] = { + ["close"] = { 7789, 7874, 7875, 7876, 8294 }, + ["end"] = { + ["U"] = { 14781 }, + }, + ["lvl"] = 29, + ["min"] = 20, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 14781 }, + }, + }, + [7790] = { + ["obj"] = { + ["U"] = { 14732 }, + }, + }, + [7791] = { + ["end"] = { + ["U"] = { 14722 }, + }, + ["lvl"] = 15, + ["min"] = 12, + ["obj"] = { + ["I"] = { 2592 }, + }, + ["start"] = { + ["U"] = { 14722 }, + }, + }, + [7792] = { + ["end"] = { + ["U"] = { 14725 }, + }, + ["lvl"] = 15, + ["min"] = 12, + ["obj"] = { + ["I"] = { 2592 }, + }, + ["start"] = { + ["U"] = { 14725 }, + }, + }, + [7793] = { + ["end"] = { + ["U"] = { 14722 }, + }, + ["lvl"] = 30, + ["min"] = 26, + ["obj"] = { + ["I"] = { 4306 }, + }, + ["start"] = { + ["U"] = { 14722 }, + }, + }, + [7794] = { + ["end"] = { + ["U"] = { 14722 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 4338 }, + }, + ["start"] = { + ["U"] = { 14722 }, + }, + }, + [7795] = { + ["end"] = { + ["U"] = { 14722 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 14047 }, + }, + ["pre"] = { 7791, 7793, 7794 }, + ["start"] = { + ["U"] = { 14722 }, + }, + }, + [7796] = { + ["end"] = { + ["U"] = { 14722 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 14047 }, + }, + ["pre"] = { 7795 }, + ["start"] = { + ["U"] = { 14722 }, + }, + }, + [7797] = { + ["lvl"] = 1, + ["min"] = 60, + }, + [7798] = { + ["end"] = { + ["U"] = { 14725 }, + }, + ["lvl"] = 30, + ["min"] = 26, + ["obj"] = { + ["I"] = { 4306 }, + }, + ["start"] = { + ["U"] = { 14725 }, + }, + }, + [7799] = { + ["end"] = { + ["U"] = { 14725 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 4338 }, + }, + ["start"] = { + ["U"] = { 14725 }, + }, + }, + [7800] = { + ["end"] = { + ["U"] = { 14725 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 14047 }, + }, + ["pre"] = { 7792, 7798, 7799 }, + ["start"] = { + ["U"] = { 14725 }, + }, + }, + [7801] = { + ["end"] = { + ["U"] = { 14725 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 14047 }, + }, + ["pre"] = { 7800 }, + ["start"] = { + ["U"] = { 14725 }, + }, + }, + [7802] = { + ["end"] = { + ["U"] = { 14723 }, + }, + ["lvl"] = 60, + ["min"] = 12, + ["obj"] = { + ["I"] = { 2592 }, + }, + ["start"] = { + ["U"] = { 14723 }, + }, + }, + [7803] = { + ["end"] = { + ["U"] = { 14723 }, + }, + ["lvl"] = 60, + ["min"] = 26, + ["obj"] = { + ["I"] = { 4306 }, + }, + ["start"] = { + ["U"] = { 14723 }, + }, + }, + [7804] = { + ["end"] = { + ["U"] = { 14723 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 4338 }, + }, + ["start"] = { + ["U"] = { 14723 }, + }, + }, + [7805] = { + ["end"] = { + ["U"] = { 14723 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 14047 }, + }, + ["pre"] = { 7802, 7803, 7804 }, + ["start"] = { + ["U"] = { 14723 }, + }, + }, + [7806] = { + ["end"] = { + ["U"] = { 14723 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 14047 }, + }, + ["pre"] = { 7805 }, + ["start"] = { + ["U"] = { 14723 }, + }, + }, + [7807] = { + ["end"] = { + ["U"] = { 14724 }, + }, + ["lvl"] = 15, + ["min"] = 12, + ["obj"] = { + ["I"] = { 2592 }, + }, + ["start"] = { + ["U"] = { 14724 }, + }, + }, + [7808] = { + ["end"] = { + ["U"] = { 14724 }, + }, + ["lvl"] = 30, + ["min"] = 26, + ["obj"] = { + ["I"] = { 4306 }, + }, + ["start"] = { + ["U"] = { 14724 }, + }, + }, + [7809] = { + ["end"] = { + ["U"] = { 14724 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 4338 }, + }, + ["start"] = { + ["U"] = { 14724 }, + }, + }, + [7810] = { + ["end"] = { + ["U"] = { 14508 }, + }, + ["lvl"] = 55, + ["min"] = 1, + ["start"] = { + ["I"] = { 18706 }, + }, + }, + [7811] = { + ["end"] = { + ["U"] = { 14724 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 14047 }, + }, + ["pre"] = { 7807, 7808, 7809 }, + ["start"] = { + ["U"] = { 14724 }, + }, + }, + [7812] = { + ["end"] = { + ["U"] = { 14724 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 14047 }, + }, + ["pre"] = { 7811 }, + ["start"] = { + ["U"] = { 14724 }, + }, + }, + [7813] = { + ["end"] = { + ["U"] = { 14729 }, + }, + ["lvl"] = 15, + ["min"] = 12, + ["obj"] = { + ["I"] = { 2592 }, + }, + ["start"] = { + ["U"] = { 14729 }, + }, + }, + [7814] = { + ["end"] = { + ["U"] = { 14729 }, + }, + ["lvl"] = 30, + ["min"] = 26, + ["obj"] = { + ["I"] = { 4306 }, + }, + ["start"] = { + ["U"] = { 14729 }, + }, + }, + [7815] = { + ["end"] = { + ["U"] = { 14740 }, + }, + ["lvl"] = 50, + ["min"] = 44, + ["obj"] = { + ["U"] = { 2505 }, + }, + ["start"] = { + ["U"] = { 14740 }, + }, + }, + [7816] = { + ["end"] = { + ["U"] = { 14740 }, + }, + ["lvl"] = 48, + ["min"] = 44, + ["obj"] = { + ["I"] = { 19023 }, + }, + ["start"] = { + ["U"] = { 14740 }, + }, + }, + [7817] = { + ["end"] = { + ["U"] = { 14729 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 4338 }, + }, + ["start"] = { + ["U"] = { 14729 }, + }, + }, + [7818] = { + ["end"] = { + ["U"] = { 14729 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 14047 }, + }, + ["pre"] = { 7813, 7814, 7817 }, + ["start"] = { + ["U"] = { 14729 }, + }, + }, + [7819] = { + ["end"] = { + ["U"] = { 14729 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 14047 }, + }, + ["pre"] = { 7818 }, + ["start"] = { + ["U"] = { 14729 }, + }, + }, + [7820] = { + ["end"] = { + ["U"] = { 14728 }, + }, + ["lvl"] = 15, + ["min"] = 12, + ["obj"] = { + ["I"] = { 2592 }, + }, + ["start"] = { + ["U"] = { 14728 }, + }, + }, + [7821] = { + ["end"] = { + ["U"] = { 14728 }, + }, + ["lvl"] = 30, + ["min"] = 26, + ["obj"] = { + ["I"] = { 4306 }, + }, + ["start"] = { + ["U"] = { 14728 }, + }, + }, + [7822] = { + ["end"] = { + ["U"] = { 14728 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 4338 }, + }, + ["start"] = { + ["U"] = { 14728 }, + }, + }, + [7823] = { + ["end"] = { + ["U"] = { 14728 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 14047 }, + }, + ["pre"] = { 7820, 7821, 7822 }, + ["start"] = { + ["U"] = { 14728 }, + }, + }, + [7824] = { + ["end"] = { + ["U"] = { 14726 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 14047 }, + }, + ["pre"] = { 7826, 7827, 7831 }, + ["start"] = { + ["U"] = { 14726 }, + }, + }, + [7825] = { + ["end"] = { + ["U"] = { 14728 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 14047 }, + }, + ["pre"] = { 7823 }, + ["start"] = { + ["U"] = { 14728 }, + }, + }, + [7826] = { + ["end"] = { + ["U"] = { 14726 }, + }, + ["lvl"] = 15, + ["min"] = 12, + ["obj"] = { + ["I"] = { 2592 }, + }, + ["start"] = { + ["U"] = { 14726 }, + }, + }, + [7827] = { + ["end"] = { + ["U"] = { 14726 }, + }, + ["lvl"] = 30, + ["min"] = 26, + ["obj"] = { + ["I"] = { 4306 }, + }, + ["start"] = { + ["U"] = { 14726 }, + }, + }, + [7828] = { + ["end"] = { + ["U"] = { 14741 }, + }, + ["lvl"] = 48, + ["min"] = 44, + ["obj"] = { + ["U"] = { 2925, 2926 }, + }, + ["start"] = { + ["U"] = { 14741 }, + }, + }, + [7829] = { + ["end"] = { + ["U"] = { 14741 }, + }, + ["lvl"] = 48, + ["min"] = 44, + ["obj"] = { + ["U"] = { 2929 }, + }, + ["start"] = { + ["U"] = { 14741 }, + }, + }, + [7830] = { + ["end"] = { + ["U"] = { 14741 }, + }, + ["lvl"] = 48, + ["min"] = 44, + ["obj"] = { + ["I"] = { 19025 }, + }, + ["start"] = { + ["U"] = { 14741 }, + }, + }, + [7831] = { + ["end"] = { + ["U"] = { 14726 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 4338 }, + }, + ["start"] = { + ["U"] = { 14726 }, + }, + }, + [7832] = { + ["end"] = { + ["U"] = { 14726 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 14047 }, + }, + ["pre"] = { 7824 }, + ["start"] = { + ["U"] = { 14726 }, + }, + }, + [7833] = { + ["end"] = { + ["U"] = { 14727 }, + }, + ["lvl"] = 15, + ["min"] = 12, + ["obj"] = { + ["I"] = { 2592 }, + }, + ["start"] = { + ["U"] = { 14727 }, + }, + }, + [7834] = { + ["end"] = { + ["U"] = { 14727 }, + }, + ["lvl"] = 30, + ["min"] = 26, + ["obj"] = { + ["I"] = { 4306 }, + }, + ["start"] = { + ["U"] = { 14727 }, + }, + }, + [7835] = { + ["end"] = { + ["U"] = { 14727 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 4338 }, + }, + ["start"] = { + ["U"] = { 14727 }, + }, + }, + [7836] = { + ["end"] = { + ["U"] = { 14727 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 14047 }, + }, + ["pre"] = { 7833, 7834, 7835 }, + ["start"] = { + ["U"] = { 14727 }, + }, + }, + [7837] = { + ["end"] = { + ["U"] = { 14727 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 14047 }, + }, + ["pre"] = { 7836 }, + ["start"] = { + ["U"] = { 14727 }, + }, + }, + [7838] = { + ["end"] = { + ["U"] = { 14508 }, + }, + ["lvl"] = 55, + ["obj"] = { + ["I"] = { 18706 }, + }, + ["pre"] = { 7810 }, + ["start"] = { + ["U"] = { 14508 }, + }, + }, + [7839] = { + ["end"] = { + ["U"] = { 14737 }, + }, + ["lvl"] = 48, + ["min"] = 44, + ["obj"] = { + ["I"] = { 19033 }, + }, + ["start"] = { + ["U"] = { 14737 }, + }, + }, + [7840] = { + ["end"] = { + ["U"] = { 14731 }, + }, + ["lvl"] = 49, + ["min"] = 44, + ["obj"] = { + ["I"] = { 19034 }, + }, + ["start"] = { + ["U"] = { 14731 }, + }, + }, + [7841] = { + ["end"] = { + ["U"] = { 14738 }, + }, + ["lvl"] = 48, + ["min"] = 44, + ["obj"] = { + ["U"] = { 2691, 2692, 2693, 2694 }, + }, + ["start"] = { + ["U"] = { 14738 }, + }, + }, + [7842] = { + ["end"] = { + ["U"] = { 14738 }, + }, + ["lvl"] = 48, + ["min"] = 44, + ["obj"] = { + ["I"] = { 4589 }, + }, + ["pre"] = { 7841 }, + ["start"] = { + ["U"] = { 14738 }, + }, + }, + [7843] = { + ["end"] = { + ["U"] = { 14738 }, + }, + ["lvl"] = 50, + ["min"] = 44, + ["obj"] = { + ["IR"] = { 19036 }, + }, + ["pre"] = { 7842 }, + ["start"] = { + ["U"] = { 14738 }, + }, + }, + [7844] = { + ["end"] = { + ["U"] = { 14739 }, + }, + ["lvl"] = 48, + ["min"] = 44, + ["obj"] = { + ["U"] = { 4466, 4467 }, + }, + ["start"] = { + ["U"] = { 14739 }, + }, + }, + [7845] = { + ["end"] = { + ["U"] = { 14757 }, + }, + ["lvl"] = 51, + ["min"] = 46, + ["start"] = { + ["U"] = { 14736 }, + }, + }, + [7846] = { + ["end"] = { + ["U"] = { 14757 }, + }, + ["lvl"] = 51, + ["min"] = 46, + ["obj"] = { + ["I"] = { 19064 }, + }, + ["pre"] = { 7845 }, + ["start"] = { + ["U"] = { 14757 }, + }, + }, + [7847] = { + ["end"] = { + ["U"] = { 14736 }, + }, + ["lvl"] = 51, + ["min"] = 46, + ["pre"] = { 7846 }, + ["start"] = { + ["U"] = { 14757 }, + }, + }, + [7848] = { + ["end"] = { + ["U"] = { 14387 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 18412 }, + }, + ["start"] = { + ["U"] = { 14387 }, + }, + }, + [7849] = { + ["end"] = { + ["U"] = { 14741 }, + }, + ["lvl"] = 50, + ["min"] = 46, + ["obj"] = { + ["I"] = { 19069, 19070 }, + }, + ["start"] = { + ["U"] = { 14741 }, + }, + }, + [7850] = { + ["end"] = { + ["U"] = { 14736 }, + }, + ["lvl"] = 50, + ["min"] = 46, + ["obj"] = { + ["I"] = { 19071 }, + }, + ["start"] = { + ["U"] = { 14736 }, + }, + }, + [7861] = { + ["end"] = { + ["U"] = { 14736 }, + }, + ["lvl"] = 51, + ["min"] = 46, + ["obj"] = { + ["U"] = { 2648, 7995 }, + }, + ["start"] = { + ["O"] = { 179913 }, + }, + }, + [7862] = { + ["end"] = { + ["U"] = { 14736 }, + }, + ["lvl"] = 51, + ["min"] = 46, + ["obj"] = { + ["U"] = { 2643, 2645, 2646, 2647 }, + }, + ["start"] = { + ["O"] = { 179913 }, + }, + }, + [7863] = { + ["close"] = { 7863, 7864, 7865 }, + ["end"] = { + ["U"] = { 14753 }, + }, + ["lvl"] = 34, + ["min"] = 25, + ["race"] = 77, + ["start"] = { + ["U"] = { 14753 }, + }, + }, + [7864] = { + ["close"] = { 7863, 7864, 7865 }, + ["end"] = { + ["U"] = { 14753 }, + }, + ["lvl"] = 44, + ["min"] = 35, + ["start"] = { + ["U"] = { 14753 }, + }, + }, + [7865] = { + ["close"] = { 7863, 7864, 7865 }, + ["end"] = { + ["U"] = { 14753 }, + }, + ["lvl"] = 60, + ["min"] = 45, + ["start"] = { + ["U"] = { 14753 }, + }, + }, + [7866] = { + ["close"] = { 7866, 7867, 7868 }, + ["end"] = { + ["U"] = { 14754 }, + }, + ["lvl"] = 34, + ["min"] = 25, + ["start"] = { + ["U"] = { 14754 }, + }, + }, + [7867] = { + ["close"] = { 7866, 7867, 7868 }, + ["end"] = { + ["U"] = { 14754 }, + }, + ["lvl"] = 44, + ["min"] = 35, + ["start"] = { + ["U"] = { 14754 }, + }, + }, + [7868] = { + ["close"] = { 7866, 7867, 7868 }, + ["end"] = { + ["U"] = { 14754 }, + }, + ["lvl"] = 60, + ["min"] = 45, + ["start"] = { + ["U"] = { 14754 }, + }, + }, + [7871] = { + ["close"] = { 7788, 7871, 7872, 7873, 8291 }, + ["end"] = { + ["U"] = { 14733 }, + }, + ["lvl"] = 39, + ["min"] = 30, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["race"] = 77, + ["start"] = { + ["U"] = { 14733 }, + }, + }, + [7872] = { + ["close"] = { 7788, 7871, 7872, 7873, 8291 }, + ["end"] = { + ["U"] = { 14733 }, + }, + ["lvl"] = 49, + ["min"] = 40, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["race"] = 77, + ["start"] = { + ["U"] = { 14733 }, + }, + }, + [7873] = { + ["close"] = { 7788, 7871, 7872, 7873, 8291 }, + ["end"] = { + ["U"] = { 14733 }, + }, + ["lvl"] = 59, + ["min"] = 50, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["race"] = 77, + ["start"] = { + ["U"] = { 14733 }, + }, + }, + [7874] = { + ["close"] = { 7789, 7874, 7875, 7876, 8294 }, + ["end"] = { + ["U"] = { 14781 }, + }, + ["lvl"] = 39, + ["min"] = 30, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 14781 }, + }, + }, + [7875] = { + ["end"] = { + ["U"] = { 14781 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 19322 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 14781 }, + }, + }, + [7876] = { + ["close"] = { 7789, 7874, 7875, 7876, 8294 }, + ["end"] = { + ["U"] = { 14781 }, + }, + ["lvl"] = 59, + ["min"] = 50, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 14781 }, + }, + }, + [7877] = { + ["end"] = { + ["O"] = { 179517 }, + }, + ["lvl"] = 60, + ["min"] = 56, + ["pre"] = { 7461 }, + ["start"] = { + ["U"] = { 14358 }, + }, + }, + [7881] = { + ["end"] = { + ["U"] = { 14833 }, + }, + ["event"] = 4, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 2309 }, + }, + ["start"] = { + ["U"] = { 14833 }, + }, + }, + [7882] = { + ["end"] = { + ["U"] = { 14833 }, + }, + ["event"] = 4, + ["lvl"] = 60, + ["min"] = 10, + ["obj"] = { + ["I"] = { 2314 }, + }, + ["start"] = { + ["U"] = { 14833 }, + }, + }, + [7883] = { + ["end"] = { + ["U"] = { 14833 }, + }, + ["event"] = 4, + ["lvl"] = 60, + ["min"] = 20, + ["obj"] = { + ["I"] = { 5739 }, + }, + ["start"] = { + ["U"] = { 14833 }, + }, + }, + [7884] = { + ["end"] = { + ["U"] = { 14833 }, + }, + ["event"] = 4, + ["lvl"] = 60, + ["min"] = 30, + ["obj"] = { + ["I"] = { 8185 }, + }, + ["start"] = { + ["U"] = { 14833 }, + }, + }, + [7885] = { + ["end"] = { + ["U"] = { 14833 }, + }, + ["event"] = 4, + ["lvl"] = 60, + ["min"] = 40, + ["obj"] = { + ["I"] = { 15564 }, + }, + ["start"] = { + ["U"] = { 14833 }, + }, + }, + [7886] = { + ["close"] = { 7886, 7887, 7888, 7921 }, + ["end"] = { + ["U"] = { 14733 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["I"] = { 19213 }, + }, + ["pre"] = { 7873 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 14733 }, + }, + }, + [7887] = { + ["end"] = { + ["U"] = { 14733 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["I"] = { 19213 }, + }, + ["race"] = 77, + ["start"] = { + ["U"] = { 14733 }, + }, + }, + [7888] = { + ["end"] = { + ["U"] = { 14733 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 19213 }, + }, + ["race"] = 77, + ["start"] = { + ["U"] = { 14733 }, + }, + }, + [7889] = { + ["end"] = { + ["U"] = { 14832 }, + }, + ["event"] = 5, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 3240 }, + }, + ["start"] = { + ["U"] = { 14832 }, + }, + }, + [7890] = { + ["end"] = { + ["U"] = { 14832 }, + }, + ["event"] = 5, + ["lvl"] = 60, + ["min"] = 10, + ["obj"] = { + ["I"] = { 3486 }, + }, + ["start"] = { + ["U"] = { 14832 }, + }, + }, + [7891] = { + ["end"] = { + ["U"] = { 14832 }, + }, + ["event"] = 5, + ["lvl"] = 60, + ["min"] = 20, + ["obj"] = { + ["I"] = { 3835 }, + }, + ["start"] = { + ["U"] = { 14832 }, + }, + }, + [7892] = { + ["end"] = { + ["U"] = { 14832 }, + }, + ["event"] = 5, + ["lvl"] = 60, + ["min"] = 30, + ["obj"] = { + ["I"] = { 7945 }, + }, + ["start"] = { + ["U"] = { 14832 }, + }, + }, + [7893] = { + ["end"] = { + ["U"] = { 14832 }, + }, + ["event"] = 5, + ["lvl"] = 60, + ["min"] = 40, + ["obj"] = { + ["I"] = { 12644 }, + }, + ["start"] = { + ["U"] = { 14832 }, + }, + }, + [7894] = { + ["end"] = { + ["U"] = { 14841 }, + }, + ["event"] = 5, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 4363 }, + }, + ["start"] = { + ["U"] = { 14841 }, + }, + }, + [7895] = { + ["end"] = { + ["U"] = { 14841 }, + }, + ["event"] = 5, + ["lvl"] = 60, + ["min"] = 10, + ["obj"] = { + ["I"] = { 4375 }, + }, + ["start"] = { + ["U"] = { 14841 }, + }, + }, + [7896] = { + ["end"] = { + ["U"] = { 14841 }, + }, + ["event"] = 5, + ["lvl"] = 60, + ["min"] = 20, + ["obj"] = { + ["I"] = { 9313 }, + }, + ["start"] = { + ["U"] = { 14841 }, + }, + }, + [7897] = { + ["end"] = { + ["U"] = { 14841 }, + }, + ["event"] = 5, + ["lvl"] = 60, + ["min"] = 30, + ["obj"] = { + ["I"] = { 11590 }, + }, + ["start"] = { + ["U"] = { 14841 }, + }, + }, + [7898] = { + ["end"] = { + ["U"] = { 14841 }, + }, + ["event"] = 5, + ["lvl"] = 60, + ["min"] = 40, + ["obj"] = { + ["I"] = { 15994 }, + }, + ["start"] = { + ["U"] = { 14841 }, + }, + }, + [7899] = { + ["end"] = { + ["U"] = { 14829 }, + }, + ["event"] = 5, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 5134 }, + }, + ["start"] = { + ["U"] = { 14829 }, + }, + }, + [7900] = { + ["end"] = { + ["U"] = { 14829 }, + }, + ["event"] = 5, + ["lvl"] = 60, + ["min"] = 10, + ["obj"] = { + ["I"] = { 11407 }, + }, + ["start"] = { + ["U"] = { 14829 }, + }, + }, + [7901] = { + ["end"] = { + ["U"] = { 14829 }, + }, + ["event"] = 5, + ["lvl"] = 60, + ["min"] = 20, + ["obj"] = { + ["I"] = { 4582 }, + }, + ["start"] = { + ["U"] = { 14829 }, + }, + }, + [7902] = { + ["end"] = { + ["U"] = { 14829 }, + }, + ["event"] = 5, + ["lvl"] = 60, + ["min"] = 30, + ["obj"] = { + ["I"] = { 5117 }, + }, + ["start"] = { + ["U"] = { 14829 }, + }, + }, + [7903] = { + ["end"] = { + ["U"] = { 14829 }, + }, + ["event"] = 5, + ["lvl"] = 60, + ["min"] = 40, + ["obj"] = { + ["I"] = { 11404 }, + }, + ["start"] = { + ["U"] = { 14829 }, + }, + }, + [7904] = { + ["lvl"] = 60, + ["min"] = 6, + ["obj"] = { + ["I"] = { 19182 }, + }, + }, + [7905] = { + ["end"] = { + ["U"] = { 14828 }, + }, + ["event"] = 4, + ["lvl"] = 60, + ["min"] = 6, + ["start"] = { + ["U"] = { 14842 }, + }, + }, + [7907] = { + ["end"] = { + ["U"] = { 14847 }, + }, + ["lvl"] = 55, + ["min"] = 1, + ["start"] = { + ["I"] = { 19228 }, + }, + }, + [7908] = { + ["lvl"] = 55, + ["min"] = 1, + }, + [7921] = { + ["close"] = { 7886, 7887, 7888, 7921 }, + ["end"] = { + ["U"] = { 14733 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["obj"] = { + ["I"] = { 19213 }, + }, + ["pre"] = { 7788 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 14733 }, + }, + }, + [7922] = { + ["close"] = { 7922, 7923, 7924, 7925 }, + ["end"] = { + ["U"] = { 14781 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["I"] = { 19322 }, + }, + ["pre"] = { 7876 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 14781 }, + }, + }, + [7923] = { + ["end"] = { + ["U"] = { 14781 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 19322 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 14781 }, + }, + }, + [7924] = { + ["end"] = { + ["U"] = { 14781 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["I"] = { 19322 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 14781 }, + }, + }, + [7925] = { + ["end"] = { + ["U"] = { 14781 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["obj"] = { + ["I"] = { 19322 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 14781 }, + }, + }, + [7926] = { + ["end"] = { + ["U"] = { 14828 }, + }, + ["event"] = 4, + ["lvl"] = 60, + ["min"] = 6, + ["start"] = { + ["U"] = { 14843 }, + }, + }, + [7927] = { + ["end"] = { + ["U"] = { 14847 }, + }, + ["lvl"] = 55, + ["min"] = 1, + ["start"] = { + ["I"] = { 19277 }, + }, + }, + [7928] = { + ["end"] = { + ["U"] = { 14847 }, + }, + ["lvl"] = 55, + ["min"] = 1, + ["start"] = { + ["I"] = { 19257 }, + }, + }, + [7929] = { + ["end"] = { + ["U"] = { 14847 }, + }, + ["lvl"] = 55, + ["min"] = 1, + ["start"] = { + ["I"] = { 19267 }, + }, + }, + [7930] = { + ["end"] = { + ["U"] = { 14828 }, + }, + ["event"] = 5, + ["lvl"] = 60, + ["min"] = 6, + ["obj"] = { + ["I"] = { 19182 }, + }, + ["start"] = { + ["U"] = { 14828 }, + }, + }, + [7931] = { + ["end"] = { + ["U"] = { 14828 }, + }, + ["event"] = 5, + ["lvl"] = 60, + ["min"] = 15, + ["obj"] = { + ["I"] = { 19182 }, + }, + ["start"] = { + ["U"] = { 14828 }, + }, + }, + [7932] = { + ["end"] = { + ["U"] = { 14828 }, + }, + ["event"] = 5, + ["lvl"] = 60, + ["min"] = 30, + ["obj"] = { + ["I"] = { 19182 }, + }, + ["start"] = { + ["U"] = { 14828 }, + }, + }, + [7933] = { + ["end"] = { + ["U"] = { 14828 }, + }, + ["event"] = 5, + ["lvl"] = 60, + ["min"] = 45, + ["obj"] = { + ["I"] = { 19182 }, + }, + ["start"] = { + ["U"] = { 14828 }, + }, + }, + [7934] = { + ["end"] = { + ["U"] = { 14828 }, + }, + ["event"] = 5, + ["lvl"] = 60, + ["min"] = 6, + ["obj"] = { + ["I"] = { 19182 }, + }, + ["start"] = { + ["U"] = { 14828 }, + }, + }, + [7935] = { + ["end"] = { + ["U"] = { 14828 }, + }, + ["event"] = 5, + ["lvl"] = 60, + ["min"] = 25, + ["obj"] = { + ["I"] = { 19182 }, + }, + ["start"] = { + ["U"] = { 14828 }, + }, + }, + [7936] = { + ["end"] = { + ["U"] = { 14828 }, + }, + ["event"] = 5, + ["lvl"] = 60, + ["min"] = 45, + ["obj"] = { + ["I"] = { 19182 }, + }, + ["start"] = { + ["U"] = { 14828 }, + }, + }, + [7937] = { + ["end"] = { + ["O"] = { 180025 }, + }, + ["lvl"] = 60, + ["min"] = 10, + ["start"] = { + ["I"] = { 19423 }, + }, + }, + [7938] = { + ["end"] = { + ["O"] = { 180024 }, + }, + ["lvl"] = 60, + ["min"] = 10, + ["start"] = { + ["I"] = { 19424 }, + }, + }, + [7939] = { + ["end"] = { + ["U"] = { 14832 }, + }, + ["event"] = 5, + ["lvl"] = 60, + ["min"] = 40, + ["obj"] = { + ["I"] = { 12644 }, + }, + ["pre"] = { 7893 }, + ["start"] = { + ["U"] = { 14832 }, + }, + }, + [7940] = { + ["end"] = { + ["U"] = { 14828 }, + }, + ["event"] = 5, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 19182 }, + }, + ["start"] = { + ["U"] = { 14828 }, + }, + }, + [7941] = { + ["end"] = { + ["U"] = { 14833 }, + }, + ["event"] = 4, + ["lvl"] = 60, + ["min"] = 40, + ["obj"] = { + ["I"] = { 15564 }, + }, + ["pre"] = { 7885 }, + ["start"] = { + ["U"] = { 14833 }, + }, + }, + [7942] = { + ["end"] = { + ["U"] = { 14841 }, + }, + ["event"] = 5, + ["lvl"] = 60, + ["min"] = 40, + ["obj"] = { + ["I"] = { 15994 }, + }, + ["pre"] = { 7898 }, + ["start"] = { + ["U"] = { 14841 }, + }, + }, + [7943] = { + ["end"] = { + ["U"] = { 14829 }, + }, + ["event"] = 5, + ["lvl"] = 60, + ["min"] = 40, + ["obj"] = { + ["I"] = { 11404 }, + }, + ["pre"] = { 7903 }, + ["start"] = { + ["U"] = { 14829 }, + }, + }, + [7944] = { + ["end"] = { + ["O"] = { 180055 }, + }, + ["lvl"] = 60, + ["min"] = 10, + ["start"] = { + ["I"] = { 19443 }, + }, + }, + [7945] = { + ["end"] = { + ["O"] = { 180056 }, + }, + ["lvl"] = 60, + ["min"] = 10, + ["start"] = { + ["I"] = { 19452 }, + }, + }, + [7946] = { + ["end"] = { + ["U"] = { 14871 }, + }, + ["event"] = 5, + ["lvl"] = 1, + ["min"] = 1, + ["obj"] = { + ["I"] = { 11325 }, + }, + ["start"] = { + ["U"] = { 14871 }, + }, + }, + [7961] = { + ["lvl"] = 1, + ["min"] = 1, + ["obj"] = { + ["U"] = { 14886, 16479 }, + }, + }, + [7962] = { + ["lvl"] = 1, + ["min"] = 1, + ["obj"] = { + ["I"] = { 19482 }, + }, + }, + [7981] = { + ["end"] = { + ["U"] = { 14828 }, + }, + ["event"] = 5, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 19182 }, + }, + ["start"] = { + ["U"] = { 14828 }, + }, + }, + [8001] = { + ["lvl"] = 3, + ["min"] = 1, + ["obj"] = { + ["I"] = { 19213 }, + }, + }, + [8021] = { + ["end"] = { + ["U"] = { 153 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 19642 }, + }, + ["start"] = { + ["U"] = { 153 }, + }, + }, + [8022] = { + ["end"] = { + ["U"] = { 353 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 19642 }, + }, + ["start"] = { + ["U"] = { 353 }, + }, + }, + [8023] = { + ["end"] = { + ["U"] = { 1227 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 19642 }, + }, + ["start"] = { + ["U"] = { 1227 }, + }, + }, + [8024] = { + ["end"] = { + ["U"] = { 2797 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 19642 }, + }, + ["start"] = { + ["U"] = { 2797 }, + }, + }, + [8025] = { + ["end"] = { + ["U"] = { 2801 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 19642 }, + }, + ["start"] = { + ["U"] = { 2801 }, + }, + }, + [8026] = { + ["end"] = { + ["U"] = { 5903 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 19642 }, + }, + ["start"] = { + ["U"] = { 5903 }, + }, + }, + [8041] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 14902 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["start"] = { + ["U"] = { 14902 }, + }, + }, + [8042] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 14902 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19574 }, + }, + ["pre"] = { 8041 }, + ["start"] = { + ["U"] = { 14902 }, + }, + }, + [8043] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 14902 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19575 }, + }, + ["pre"] = { 8042 }, + ["start"] = { + ["U"] = { 14902 }, + }, + }, + [8044] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 14902 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19576 }, + }, + ["pre"] = { 8043 }, + ["start"] = { + ["U"] = { 14902 }, + }, + }, + [8045] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 14902 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["start"] = { + ["U"] = { 14902 }, + }, + }, + [8046] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 14902 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19579 }, + }, + ["pre"] = { 8045 }, + ["start"] = { + ["U"] = { 14902 }, + }, + }, + [8047] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 14902 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19585 }, + }, + ["pre"] = { 8046 }, + ["start"] = { + ["U"] = { 14902 }, + }, + }, + [8048] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 14902 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19586 }, + }, + ["pre"] = { 8047 }, + ["start"] = { + ["U"] = { 14902 }, + }, + }, + [8049] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 14903 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["start"] = { + ["U"] = { 14903 }, + }, + }, + [8050] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 14903 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19591 }, + }, + ["pre"] = { 8049 }, + ["start"] = { + ["U"] = { 14903 }, + }, + }, + [8051] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 14903 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19592 }, + }, + ["pre"] = { 8050 }, + ["start"] = { + ["U"] = { 14903 }, + }, + }, + [8052] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 14903 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19593 }, + }, + ["pre"] = { 8051 }, + ["start"] = { + ["U"] = { 14903 }, + }, + }, + [8053] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 14902 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19716 }, + }, + ["start"] = { + ["U"] = { 14902 }, + }, + }, + [8054] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 14902 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19721 }, + }, + ["start"] = { + ["U"] = { 14902 }, + }, + }, + [8055] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 14902 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19722 }, + }, + ["start"] = { + ["U"] = { 14902 }, + }, + }, + [8056] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 14904 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19717 }, + }, + ["start"] = { + ["U"] = { 14904 }, + }, + }, + [8057] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 14904 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19718 }, + }, + ["start"] = { + ["U"] = { 14904 }, + }, + }, + [8058] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 14902 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19717 }, + }, + ["start"] = { + ["U"] = { 14902 }, + }, + }, + [8059] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 14903 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19718 }, + }, + ["start"] = { + ["U"] = { 14903 }, + }, + }, + [8060] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 14903 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19716 }, + }, + ["start"] = { + ["U"] = { 14903 }, + }, + }, + [8061] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 14903 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19718 }, + }, + ["start"] = { + ["U"] = { 14903 }, + }, + }, + [8062] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 14905 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19716 }, + }, + ["start"] = { + ["U"] = { 14905 }, + }, + }, + [8063] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 14905 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19717 }, + }, + ["start"] = { + ["U"] = { 14905 }, + }, + }, + [8064] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 14904 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19720 }, + }, + ["start"] = { + ["U"] = { 14904 }, + }, + }, + [8065] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 14904 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19722 }, + }, + ["start"] = { + ["U"] = { 14904 }, + }, + }, + [8066] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 14905 }, + }, + ["lvl"] = 61, + ["min"] = 60, + ["obj"] = { + ["I"] = { 19699, 19700, 19711, 19721 }, + ["IR"] = { 19711 }, + }, + ["start"] = { + ["U"] = { 14905 }, + }, + }, + [8067] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 14905 }, + }, + ["lvl"] = 61, + ["min"] = 60, + ["obj"] = { + ["I"] = { 19698, 19701, 19714, 19724 }, + ["IR"] = { 19714 }, + }, + ["start"] = { + ["U"] = { 14905 }, + }, + }, + [8068] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 14903 }, + }, + ["lvl"] = 61, + ["min"] = 60, + ["obj"] = { + ["I"] = { 19699, 19701, 19710, 19721 }, + ["IR"] = { 19710 }, + }, + ["start"] = { + ["U"] = { 14903 }, + }, + }, + [8069] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 14903 }, + }, + ["lvl"] = 61, + ["min"] = 60, + ["obj"] = { + ["I"] = { 19698, 19704, 19714, 19723 }, + ["IR"] = { 19714 }, + }, + ["start"] = { + ["U"] = { 14903 }, + }, + }, + [8070] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 14903 }, + }, + ["lvl"] = 61, + ["min"] = 60, + ["obj"] = { + ["I"] = { 19698, 19700, 19710, 19720 }, + ["IR"] = { 19710 }, + }, + ["start"] = { + ["U"] = { 14903 }, + }, + }, + [8071] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 14903 }, + }, + ["lvl"] = 61, + ["min"] = 60, + ["obj"] = { + ["I"] = { 19699, 19703, 19713, 19724 }, + ["IR"] = { 19713 }, + }, + ["start"] = { + ["U"] = { 14903 }, + }, + }, + [8072] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 14905 }, + }, + ["lvl"] = 61, + ["min"] = 60, + ["obj"] = { + ["I"] = { 19698, 19699, 19712, 19719 }, + ["IR"] = { 19712 }, + }, + ["start"] = { + ["U"] = { 14905 }, + }, + }, + [8073] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 14905 }, + }, + ["lvl"] = 61, + ["min"] = 60, + ["obj"] = { + ["I"] = { 19700, 19705, 19715, 19724 }, + ["IR"] = { 19715 }, + }, + ["start"] = { + ["U"] = { 14905 }, + }, + }, + [8074] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 14904 }, + }, + ["lvl"] = 61, + ["min"] = 60, + ["obj"] = { + ["I"] = { 19701, 19705, 19712, 19719 }, + ["IR"] = { 19712 }, + }, + ["start"] = { + ["U"] = { 14904 }, + }, + }, + [8075] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 14904 }, + }, + ["lvl"] = 61, + ["min"] = 60, + ["obj"] = { + ["I"] = { 19700, 19703, 19715, 19722 }, + ["IR"] = { 19715 }, + }, + ["start"] = { + ["U"] = { 14904 }, + }, + }, + [8076] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 14903 }, + }, + ["lvl"] = 61, + ["min"] = 60, + ["obj"] = { + ["I"] = { 19700, 19703, 19710, 19720 }, + ["IR"] = { 19710 }, + }, + ["start"] = { + ["U"] = { 14903 }, + }, + }, + [8077] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 14903 }, + }, + ["lvl"] = 61, + ["min"] = 60, + ["obj"] = { + ["I"] = { 19705, 19706, 19714, 19723 }, + ["IR"] = { 19714 }, + }, + ["start"] = { + ["U"] = { 14903 }, + }, + }, + [8078] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 14902 }, + }, + ["lvl"] = 61, + ["min"] = 60, + ["obj"] = { + ["I"] = { 19702, 19705, 19711, 19719 }, + ["IR"] = { 19711 }, + }, + ["start"] = { + ["U"] = { 14902 }, + }, + }, + [8079] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 14902 }, + }, + ["lvl"] = 61, + ["min"] = 60, + ["obj"] = { + ["I"] = { 19704, 19706, 19713, 19723 }, + ["IR"] = { 19713 }, + }, + ["start"] = { + ["U"] = { 14902 }, + }, + }, + [8080] = { + ["close"] = { 8080, 8154, 8155, 8156, 8297 }, + ["end"] = { + ["U"] = { 14984 }, + }, + ["lvl"] = 59, + ["min"] = 50, + ["obj"] = { + ["I"] = { 20559 }, + }, + ["race"] = 77, + ["start"] = { + ["U"] = { 14984 }, + }, + }, + [8081] = { + ["end"] = { + ["U"] = { 14984 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["I"] = { 19725 }, + }, + ["race"] = 77, + ["start"] = { + ["U"] = { 14984 }, + }, + }, + [8101] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 14903 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["start"] = { + ["U"] = { 14903 }, + }, + }, + [8102] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 14903 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19598 }, + }, + ["pre"] = { 8101 }, + ["start"] = { + ["U"] = { 14903 }, + }, + }, + [8103] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 14903 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19599 }, + }, + ["pre"] = { 8102 }, + ["start"] = { + ["U"] = { 14903 }, + }, + }, + [8104] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 14903 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19600 }, + }, + ["pre"] = { 8103 }, + ["start"] = { + ["U"] = { 14903 }, + }, + }, + [8105] = { + ["close"] = { 8105, 8166, 8167, 8168 }, + ["end"] = { + ["U"] = { 14983 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["U"] = { 15002, 15003, 15004, 15005 }, + }, + ["start"] = { + ["U"] = { 14983 }, + }, + }, + [8106] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 14903 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["start"] = { + ["U"] = { 14903 }, + }, + }, + [8107] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 14903 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19602 }, + }, + ["pre"] = { 8106 }, + ["start"] = { + ["U"] = { 14903 }, + }, + }, + [8108] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 14903 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19603 }, + }, + ["pre"] = { 8107 }, + ["start"] = { + ["U"] = { 14903 }, + }, + }, + [8109] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 14903 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19604 }, + }, + ["pre"] = { 8108 }, + ["start"] = { + ["U"] = { 14903 }, + }, + }, + [8110] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 14904 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["start"] = { + ["U"] = { 14904 }, + }, + }, + [8111] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 14904 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19610 }, + }, + ["pre"] = { 8110 }, + ["start"] = { + ["U"] = { 14904 }, + }, + }, + [8112] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 14904 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19611 }, + }, + ["pre"] = { 8111 }, + ["start"] = { + ["U"] = { 14904 }, + }, + }, + [8113] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 14904 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19612 }, + }, + ["pre"] = { 8112 }, + ["start"] = { + ["U"] = { 14904 }, + }, + }, + [8114] = { + ["end"] = { + ["U"] = { 14983 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["start"] = { + ["U"] = { 14983 }, + }, + }, + [8115] = { + ["end"] = { + ["U"] = { 14983 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 8114 }, + ["start"] = { + ["U"] = { 14983 }, + }, + }, + [8116] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 14904 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["start"] = { + ["U"] = { 14904 }, + }, + }, + [8117] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 14904 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19606 }, + }, + ["pre"] = { 8116 }, + ["start"] = { + ["U"] = { 14904 }, + }, + }, + [8118] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 14904 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19607 }, + }, + ["pre"] = { 8117 }, + ["start"] = { + ["U"] = { 14904 }, + }, + }, + [8119] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 14904 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19608 }, + }, + ["pre"] = { 8118 }, + ["start"] = { + ["U"] = { 14904 }, + }, + }, + [8120] = { + ["close"] = { 8120, 8169, 8170, 8171 }, + ["end"] = { + ["U"] = { 15021 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["U"] = { 15001, 15002, 15004, 15005 }, + }, + ["start"] = { + ["U"] = { 15021 }, + }, + }, + [8121] = { + ["end"] = { + ["U"] = { 15021 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["start"] = { + ["U"] = { 15021 }, + }, + }, + [8122] = { + ["end"] = { + ["U"] = { 15021 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 8121 }, + ["start"] = { + ["U"] = { 15021 }, + }, + }, + [8123] = { + ["end"] = { + ["U"] = { 15022 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["I"] = { 19725 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 15022 }, + }, + }, + [8124] = { + ["end"] = { + ["U"] = { 15022 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["I"] = { 19725 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 15022 }, + }, + }, + [8141] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 14905 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["start"] = { + ["U"] = { 14905 }, + }, + }, + [8142] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 14905 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19614 }, + }, + ["pre"] = { 8141 }, + ["start"] = { + ["U"] = { 14905 }, + }, + }, + [8143] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 14905 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19615 }, + }, + ["pre"] = { 8142 }, + ["start"] = { + ["U"] = { 14905 }, + }, + }, + [8144] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 14905 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19616 }, + }, + ["pre"] = { 8143 }, + ["start"] = { + ["U"] = { 14905 }, + }, + }, + [8145] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 14905 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["start"] = { + ["U"] = { 14905 }, + }, + }, + [8146] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 14905 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19618 }, + }, + ["pre"] = { 8145 }, + ["start"] = { + ["U"] = { 14905 }, + }, + }, + [8147] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 14905 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19619 }, + }, + ["pre"] = { 8146 }, + ["start"] = { + ["U"] = { 14905 }, + }, + }, + [8148] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 14905 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19620 }, + }, + ["pre"] = { 8147 }, + ["start"] = { + ["U"] = { 14905 }, + }, + }, + [8149] = { + ["end"] = { + ["U"] = { 15011 }, + }, + ["event"] = 11, + ["lvl"] = 60, + ["min"] = 30, + ["obj"] = { + ["IR"] = { 19850 }, + }, + ["start"] = { + ["U"] = { 15011 }, + }, + }, + [8150] = { + ["end"] = { + ["U"] = { 15012 }, + }, + ["event"] = 11, + ["lvl"] = 60, + ["min"] = 30, + ["obj"] = { + ["IR"] = { 19851 }, + }, + ["start"] = { + ["U"] = { 15012 }, + }, + }, + [8151] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 8405 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["start"] = { + ["U"] = { 3352, 3039, 4205, 5116, 5516 }, + }, + }, + [8153] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 8405 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["obj"] = { + ["I"] = { 20017 }, + }, + ["pre"] = { 8151 }, + ["start"] = { + ["U"] = { 8405 }, + }, + }, + [8154] = { + ["end"] = { + ["U"] = { 14984 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 19725 }, + }, + ["race"] = 77, + ["start"] = { + ["U"] = { 14984 }, + }, + }, + [8155] = { + ["end"] = { + ["U"] = { 14984 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["obj"] = { + ["I"] = { 19725 }, + }, + ["race"] = 77, + ["start"] = { + ["U"] = { 14984 }, + }, + }, + [8156] = { + ["end"] = { + ["U"] = { 14984 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["I"] = { 19725 }, + }, + ["race"] = 77, + ["start"] = { + ["U"] = { 14984 }, + }, + }, + [8157] = { + ["end"] = { + ["U"] = { 14984 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 19725 }, + }, + ["race"] = 77, + ["start"] = { + ["U"] = { 14984 }, + }, + }, + [8158] = { + ["end"] = { + ["U"] = { 14984 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["obj"] = { + ["I"] = { 19725 }, + }, + ["race"] = 77, + ["start"] = { + ["U"] = { 14984 }, + }, + }, + [8159] = { + ["end"] = { + ["U"] = { 14984 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["I"] = { 19725 }, + }, + ["race"] = 77, + ["start"] = { + ["U"] = { 14984 }, + }, + }, + [8160] = { + ["end"] = { + ["U"] = { 15022 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 19725 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 15022 }, + }, + }, + [8161] = { + ["end"] = { + ["U"] = { 15022 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["I"] = { 19725 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 15022 }, + }, + }, + [8162] = { + ["end"] = { + ["U"] = { 15022 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["obj"] = { + ["I"] = { 19725 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 15022 }, + }, + }, + [8163] = { + ["end"] = { + ["U"] = { 15022 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 19725 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 15022 }, + }, + }, + [8164] = { + ["end"] = { + ["U"] = { 15022 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["I"] = { 19725 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 15022 }, + }, + }, + [8165] = { + ["end"] = { + ["U"] = { 15022 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["obj"] = { + ["I"] = { 19725 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 15022 }, + }, + }, + [8166] = { + ["close"] = { 8105, 8166, 8167, 8168 }, + ["end"] = { + ["U"] = { 14983 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["U"] = { 15002, 15003, 15004, 15005 }, + }, + ["start"] = { + ["U"] = { 14983 }, + }, + }, + [8167] = { + ["close"] = { 8105, 8166, 8167, 8168 }, + ["end"] = { + ["U"] = { 14983 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["U"] = { 15002, 15003, 15004, 15005 }, + }, + ["start"] = { + ["U"] = { 14983 }, + }, + }, + [8168] = { + ["close"] = { 8105, 8166, 8167, 8168 }, + ["end"] = { + ["U"] = { 14983 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["obj"] = { + ["U"] = { 15002, 15003, 15004, 15005 }, + }, + ["start"] = { + ["U"] = { 14983 }, + }, + }, + [8169] = { + ["close"] = { 8120, 8169, 8170, 8171 }, + ["end"] = { + ["U"] = { 15021 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["U"] = { 15001, 15002, 15004, 15005 }, + }, + ["start"] = { + ["U"] = { 15021 }, + }, + }, + [8170] = { + ["close"] = { 8120, 8169, 8170, 8171 }, + ["end"] = { + ["U"] = { 15021 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["U"] = { 15001, 15002, 15004, 15005 }, + }, + ["start"] = { + ["U"] = { 15021 }, + }, + }, + [8171] = { + ["close"] = { 8120, 8169, 8170, 8171 }, + ["end"] = { + ["U"] = { 15021 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["obj"] = { + ["U"] = { 15001, 15002, 15004, 15005 }, + }, + ["start"] = { + ["U"] = { 15021 }, + }, + }, + [8181] = { + ["end"] = { + ["U"] = { 8579 }, + }, + ["lvl"] = 58, + ["min"] = 40, + ["pre"] = { 4788 }, + ["start"] = { + ["U"] = { 10460 }, + }, + }, + [8182] = { + ["end"] = { + ["U"] = { 14875 }, + }, + ["lvl"] = 58, + ["min"] = 40, + ["pre"] = { 8181 }, + ["start"] = { + ["U"] = { 10460 }, + }, + }, + [8183] = { + ["end"] = { + ["U"] = { 14875 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["start"] = { + ["I"] = { 19802 }, + }, + }, + [8184] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 15042 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 18331, 19724, 19813 }, + }, + ["start"] = { + ["U"] = { 15042 }, + }, + }, + [8185] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 15042 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 18331, 19721, 19815 }, + }, + ["start"] = { + ["U"] = { 15042 }, + }, + }, + [8186] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 15042 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 18329, 19723, 19814 }, + }, + ["start"] = { + ["U"] = { 15042 }, + }, + }, + [8187] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 15042 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 18329, 19718, 19816 }, + }, + ["start"] = { + ["U"] = { 15042 }, + }, + }, + [8188] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 15042 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 18330, 19720, 19817 }, + }, + ["start"] = { + ["U"] = { 15042 }, + }, + }, + [8189] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 15042 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 18330, 19719, 19818 }, + }, + ["start"] = { + ["U"] = { 15042 }, + }, + }, + [8190] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 15042 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 18330, 19717, 19819 }, + }, + ["start"] = { + ["U"] = { 15042 }, + }, + }, + [8191] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 15042 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 18330, 19722, 19820 }, + }, + ["start"] = { + ["U"] = { 15042 }, + }, + }, + [8192] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 15042 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 18331, 19716, 19821 }, + }, + ["start"] = { + ["U"] = { 15042 }, + }, + }, + [8193] = { + ["end"] = { + ["U"] = { 15077 }, + }, + ["event"] = 15, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 19807 }, + }, + ["skill"] = 356, + ["start"] = { + ["U"] = { 15077 }, + }, + }, + [8194] = { + ["end"] = { + ["U"] = { 15078 }, + }, + ["event"] = 40, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 19807 }, + }, + ["skill"] = 356, + ["start"] = { + ["U"] = { 15078 }, + }, + }, + [8195] = { + ["end"] = { + ["U"] = { 15070 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19698, 19699, 19700 }, + }, + ["start"] = { + ["U"] = { 15070 }, + }, + }, + [8196] = { + ["end"] = { + ["U"] = { 14921 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19858 }, + }, + ["start"] = { + ["U"] = { 14921 }, + }, + }, + [8201] = { + ["end"] = { + ["U"] = { 14910 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19880, 19881 }, + }, + ["start"] = { + ["U"] = { 14910 }, + }, + }, + [8221] = { + ["end"] = { + ["U"] = { 15079 }, + }, + ["event"] = 40, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 19805 }, + }, + ["skill"] = 356, + ["start"] = { + ["U"] = { 15079 }, + }, + }, + [8222] = { + ["end"] = { + ["U"] = { 14829 }, + }, + ["event"] = 5, + ["lvl"] = 60, + ["min"] = 40, + ["obj"] = { + ["I"] = { 19933 }, + }, + ["start"] = { + ["U"] = { 14829 }, + }, + }, + [8223] = { + ["end"] = { + ["U"] = { 14829 }, + }, + ["event"] = 5, + ["lvl"] = 60, + ["min"] = 40, + ["obj"] = { + ["I"] = { 19933 }, + }, + ["pre"] = { 8223 }, + ["start"] = { + ["U"] = { 14829 }, + }, + }, + [8224] = { + ["end"] = { + ["U"] = { 15079 }, + }, + ["event"] = 40, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 19806 }, + }, + ["skill"] = 356, + ["start"] = { + ["U"] = { 15079 }, + }, + }, + [8225] = { + ["end"] = { + ["U"] = { 15079 }, + }, + ["event"] = 40, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 19803 }, + }, + ["skill"] = 356, + ["start"] = { + ["U"] = { 15079 }, + }, + }, + [8227] = { + ["end"] = { + ["U"] = { 12919 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["start"] = { + ["I"] = { 19973 }, + ["O"] = { 180366 }, + }, + }, + [8228] = { + ["end"] = { + ["U"] = { 15119 }, + }, + ["event"] = 14, + ["lvl"] = 60, + ["min"] = 35, + ["skill"] = 356, + ["start"] = { + ["U"] = { 15119 }, + }, + }, + [8229] = { + ["end"] = { + ["U"] = { 15116 }, + }, + ["event"] = 14, + ["lvl"] = 60, + ["min"] = 35, + ["skill"] = 356, + ["start"] = { + ["U"] = { 15116 }, + }, + }, + [8231] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 8405 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["obj"] = { + ["I"] = { 20087 }, + }, + ["pre"] = { 8153 }, + ["start"] = { + ["U"] = { 8405 }, + }, + }, + [8232] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 8405 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["obj"] = { + ["I"] = { 20019 }, + }, + ["pre"] = { 8231 }, + ["start"] = { + ["U"] = { 8405 }, + }, + }, + [8233] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 6768 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["start"] = { + ["U"] = { 3328, 5165, 4583, 4163, 918 }, + }, + }, + [8234] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 8379 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["obj"] = { + ["I"] = { 19775 }, + }, + ["pre"] = { 8233 }, + ["start"] = { + ["U"] = { 6768 }, + }, + }, + [8235] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 8379 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["obj"] = { + ["I"] = { 20023 }, + }, + ["pre"] = { 8234 }, + ["start"] = { + ["U"] = { 8379 }, + }, + }, + [8236] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 6768 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["obj"] = { + ["I"] = { 20022 }, + }, + ["pre"] = { 8235 }, + ["start"] = { + ["U"] = { 8379 }, + }, + }, + [8237] = { + ["lvl"] = 50, + ["min"] = 50, + }, + [8238] = { + ["end"] = { + ["U"] = { 15070 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19701, 19702, 19703 }, + }, + ["start"] = { + ["U"] = { 15070 }, + }, + }, + [8239] = { + ["end"] = { + ["U"] = { 15070 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19704, 19705, 19706 }, + }, + ["start"] = { + ["U"] = { 15070 }, + }, + }, + [8240] = { + ["end"] = { + ["U"] = { 15070 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["start"] = { + ["U"] = { 15070 }, + }, + }, + [8241] = { + ["end"] = { + ["U"] = { 14624 }, + }, + ["lvl"] = 60, + ["min"] = 45, + ["obj"] = { + ["I"] = { 3575, 3857, 18944 }, + }, + ["pre"] = { 7722 }, + ["start"] = { + ["U"] = { 14624 }, + }, + }, + [8242] = { + ["end"] = { + ["U"] = { 14624 }, + }, + ["lvl"] = 60, + ["min"] = 45, + ["obj"] = { + ["I"] = { 3857, 4234, 18944 }, + }, + ["pre"] = { 7722 }, + ["start"] = { + ["U"] = { 14624 }, + }, + }, + [8243] = { + ["end"] = { + ["U"] = { 14921 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19858 }, + }, + ["start"] = { + ["U"] = { 14921 }, + }, + }, + [8246] = { + ["end"] = { + ["U"] = { 14921 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19858 }, + }, + ["start"] = { + ["U"] = { 14921 }, + }, + }, + [8249] = { + ["end"] = { + ["U"] = { 6707 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 16885 }, + }, + ["start"] = { + ["U"] = { 6707 }, + }, + }, + [8250] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 8395 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["start"] = { + ["U"] = { 7312, 4567, 7311, 3047, 331 }, + }, + }, + [8251] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 8379 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["obj"] = { + ["I"] = { 20028 }, + }, + ["pre"] = { 8250 }, + ["start"] = { + ["U"] = { 8379 }, + }, + }, + [8252] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 8379 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["obj"] = { + ["I"] = { 20029 }, + }, + ["pre"] = { 8251 }, + ["start"] = { + ["U"] = { 8379 }, + }, + }, + [8253] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 8379 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["obj"] = { + ["I"] = { 20085 }, + }, + ["pre"] = { 8252 }, + ["start"] = { + ["U"] = { 8379 }, + }, + }, + [8254] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 8405 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["start"] = { + ["U"] = { 11406, 6018, 5489 }, + }, + }, + [8255] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 8405 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["obj"] = { + ["I"] = { 20027 }, + }, + ["pre"] = { 8254 }, + ["start"] = { + ["U"] = { 8405 }, + }, + }, + [8256] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 8405 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["obj"] = { + ["I"] = { 7972 }, + }, + ["pre"] = { 8255 }, + ["start"] = { + ["U"] = { 8405 }, + }, + }, + [8257] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 10922 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["obj"] = { + ["I"] = { 20025 }, + }, + ["pre"] = { 8256 }, + ["start"] = { + ["U"] = { 8405 }, + }, + }, + [8258] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 13417 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 18880 }, + ["IR"] = { 18746 }, + }, + ["pre"] = { 7667 }, + ["start"] = { + ["U"] = { 13417 }, + }, + }, + [8259] = { + ["end"] = { + ["U"] = { 13417 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["pre"] = { 7668 }, + ["start"] = { + ["U"] = { 13417 }, + }, + }, + [8260] = { + ["close"] = { 8260, 8261, 8262 }, + ["end"] = { + ["U"] = { 15127 }, + }, + ["lvl"] = 34, + ["min"] = 25, + ["race"] = 77, + ["start"] = { + ["U"] = { 15127 }, + }, + }, + [8261] = { + ["close"] = { 8260, 8261, 8262 }, + ["end"] = { + ["U"] = { 15127 }, + }, + ["lvl"] = 44, + ["min"] = 35, + ["race"] = 77, + ["start"] = { + ["U"] = { 15127 }, + }, + }, + [8262] = { + ["close"] = { 8260, 8261, 8262 }, + ["end"] = { + ["U"] = { 15127 }, + }, + ["lvl"] = 60, + ["min"] = 45, + ["start"] = { + ["U"] = { 15127 }, + }, + }, + [8263] = { + ["close"] = { 8263, 8264, 8265 }, + ["end"] = { + ["U"] = { 15126 }, + }, + ["lvl"] = 34, + ["min"] = 25, + ["start"] = { + ["U"] = { 15126 }, + }, + }, + [8264] = { + ["close"] = { 8263, 8264, 8265 }, + ["end"] = { + ["U"] = { 15126 }, + }, + ["lvl"] = 44, + ["min"] = 35, + ["start"] = { + ["U"] = { 15126 }, + }, + }, + [8265] = { + ["close"] = { 8263, 8264, 8265 }, + ["end"] = { + ["U"] = { 15126 }, + }, + ["lvl"] = 60, + ["min"] = 45, + ["start"] = { + ["U"] = { 15126 }, + }, + }, + [8266] = { + ["close"] = { 8266, 8269 }, + ["end"] = { + ["U"] = { 14733 }, + }, + ["lvl"] = 60, + ["min"] = 10, + ["obj"] = { + ["I"] = { 20256 }, + }, + ["race"] = 77, + ["start"] = { + ["U"] = { 14733 }, + }, + }, + [8267] = { + ["close"] = { 8267, 8268 }, + ["end"] = { + ["U"] = { 14781 }, + }, + ["lvl"] = 60, + ["min"] = 40, + ["obj"] = { + ["I"] = { 20256 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 14781 }, + }, + }, + [8268] = { + ["close"] = { 8267, 8268 }, + ["end"] = { + ["U"] = { 14781 }, + }, + ["lvl"] = 60, + ["min"] = 10, + ["obj"] = { + ["I"] = { 20256 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 14781 }, + }, + }, + [8269] = { + ["close"] = { 8266, 8269 }, + ["end"] = { + ["U"] = { 14733 }, + }, + ["lvl"] = 60, + ["min"] = 40, + ["obj"] = { + ["I"] = { 20256 }, + }, + ["race"] = 77, + ["start"] = { + ["U"] = { 14733 }, + }, + }, + [8271] = { + ["end"] = { + ["U"] = { 13816 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["pre"] = { 7141 }, + ["start"] = { + ["U"] = { 13816 }, + }, + }, + [8272] = { + ["end"] = { + ["U"] = { 13817 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["pre"] = { 7142 }, + ["start"] = { + ["U"] = { 13817 }, + }, + }, + [8273] = { + ["end"] = { + ["U"] = { 7825 }, + }, + ["lvl"] = 47, + ["min"] = 42, + ["pre"] = { 2782 }, + ["start"] = { + ["U"] = { 7825 }, + }, + }, + [8274] = { + ["lvl"] = 5, + ["min"] = 1, + ["obj"] = { + ["U"] = { 126 }, + }, + }, + [8275] = { + ["close"] = { 8275, 8276 }, + ["end"] = { + ["U"] = { 15191 }, + }, + ["lvl"] = 55, + ["min"] = 54, + ["race"] = 77, + ["start"] = { + ["U"] = { 15187 }, + }, + }, + [8276] = { + ["close"] = { 8275, 8276 }, + ["end"] = { + ["U"] = { 15191 }, + }, + ["lvl"] = 55, + ["min"] = 54, + ["race"] = 178, + ["start"] = { + ["U"] = { 15188 }, + }, + }, + [8277] = { + ["end"] = { + ["U"] = { 15189 }, + }, + ["lvl"] = 55, + ["min"] = 54, + ["obj"] = { + ["I"] = { 20373, 20376 }, + }, + ["start"] = { + ["U"] = { 15189 }, + }, + }, + [8278] = { + ["end"] = { + ["U"] = { 15189 }, + }, + ["lvl"] = 57, + ["min"] = 54, + ["obj"] = { + ["I"] = { 20374, 20375, 20377 }, + }, + ["pre"] = { 8277 }, + ["start"] = { + ["U"] = { 15189 }, + }, + }, + [8279] = { + ["end"] = { + ["U"] = { 15194 }, + }, + ["lvl"] = 60, + ["min"] = 54, + ["obj"] = { + ["I"] = { 20394, 20395, 20396 }, + }, + ["pre"] = { 8285 }, + ["start"] = { + ["U"] = { 15194 }, + }, + }, + [8280] = { + ["end"] = { + ["U"] = { 15191 }, + }, + ["lvl"] = 55, + ["min"] = 54, + ["obj"] = { + ["U"] = { 11740 }, + }, + ["pre"] = { 8275, 8276 }, + ["start"] = { + ["U"] = { 15191 }, + }, + }, + [8281] = { + ["end"] = { + ["U"] = { 15191 }, + }, + ["lvl"] = 57, + ["min"] = 54, + ["obj"] = { + ["U"] = { 11741 }, + }, + ["pre"] = { 8280 }, + ["start"] = { + ["U"] = { 15191 }, + }, + }, + [8282] = { + ["end"] = { + ["U"] = { 15190 }, + }, + ["lvl"] = 58, + ["min"] = 54, + ["obj"] = { + ["I"] = { 20379 }, + }, + ["pre"] = { 8278 }, + ["start"] = { + ["U"] = { 15190 }, + }, + }, + [8283] = { + ["end"] = { + ["U"] = { 15182 }, + }, + ["lvl"] = 59, + ["min"] = 54, + ["obj"] = { + ["I"] = { 20385 }, + }, + ["start"] = { + ["O"] = { 180448 }, + }, + }, + [8284] = { + ["end"] = { + ["U"] = { 15183 }, + }, + ["lvl"] = 58, + ["min"] = 54, + ["obj"] = { + ["I"] = { 20378 }, + }, + ["start"] = { + ["U"] = { 15183 }, + }, + }, + [8285] = { + ["end"] = { + ["U"] = { 15194 }, + }, + ["lvl"] = 59, + ["min"] = 54, + ["pre"] = { 8284 }, + ["start"] = { + ["U"] = { 15183 }, + }, + }, + [8286] = { + ["end"] = { + ["U"] = { 15180 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["A"] = { 3986 }, + }, + ["start"] = { + ["U"] = { 15180 }, + }, + }, + [8287] = { + ["end"] = { + ["U"] = { 15181 }, + }, + ["lvl"] = 60, + ["min"] = 54, + ["pre"] = { 8279 }, + ["start"] = { + ["U"] = { 15194 }, + }, + }, + [8288] = { + ["end"] = { + ["U"] = { 15180 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20383 }, + }, + ["pre"] = { 8286 }, + ["start"] = { + ["U"] = { 15180 }, + }, + }, + [8289] = { + ["end"] = { + ["U"] = { 14733 }, + }, + ["lvl"] = 15, + ["min"] = 10, + ["obj"] = { + ["I"] = { 19213 }, + }, + ["start"] = { + ["U"] = { 14733 }, + }, + }, + [8290] = { + ["lvl"] = 15, + ["min"] = 10, + ["obj"] = { + ["I"] = { 20558 }, + }, + }, + [8291] = { + ["end"] = { + ["U"] = { 14733 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 19213 }, + }, + ["race"] = 77, + ["start"] = { + ["U"] = { 14733 }, + }, + }, + [8292] = { + ["end"] = { + ["U"] = { 14733 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 19213 }, + }, + ["race"] = 77, + ["start"] = { + ["U"] = { 14733 }, + }, + }, + [8293] = { + ["end"] = { + ["U"] = { 14781 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 19322 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 14781 }, + }, + }, + [8294] = { + ["end"] = { + ["U"] = { 14781 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 19322 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 14781 }, + }, + }, + [8295] = { + ["lvl"] = 15, + ["min"] = 10, + ["obj"] = { + ["I"] = { 20558 }, + }, + }, + [8296] = { + ["end"] = { + ["U"] = { 14733 }, + }, + ["lvl"] = 15, + ["min"] = 10, + ["obj"] = { + ["I"] = { 19322 }, + }, + ["start"] = { + ["U"] = { 14733 }, + }, + }, + [8297] = { + ["end"] = { + ["U"] = { 14984 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 19725 }, + }, + ["race"] = 77, + ["start"] = { + ["U"] = { 14984 }, + }, + }, + [8298] = { + ["end"] = { + ["U"] = { 14984 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 19725 }, + }, + ["race"] = 77, + ["start"] = { + ["U"] = { 14984 }, + }, + }, + [8299] = { + ["end"] = { + ["U"] = { 15022 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 19725 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 15022 }, + }, + }, + [8300] = { + ["end"] = { + ["U"] = { 15022 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 19725 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 15022 }, + }, + }, + [8301] = { + ["end"] = { + ["U"] = { 15180 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20384 }, + }, + ["pre"] = { 8288 }, + ["start"] = { + ["U"] = { 15180 }, + }, + }, + [8302] = { + ["end"] = { + ["U"] = { 15180 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20384 }, + }, + ["pre"] = { 8301 }, + ["race"] = 255, + ["start"] = { + ["U"] = { 15180 }, + }, + }, + [8303] = { + ["end"] = { + ["U"] = { 15192 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 8301 }, + ["start"] = { + ["U"] = { 15180 }, + }, + }, + [8304] = { + ["end"] = { + ["U"] = { 15181 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["U"] = { 15221, 15222 }, + }, + ["start"] = { + ["U"] = { 15181 }, + }, + }, + [8305] = { + ["end"] = { + ["O"] = { 180633 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 8303 }, + ["start"] = { + ["U"] = { 15192 }, + }, + }, + [8306] = { + ["end"] = { + ["U"] = { 15181 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["U"] = { 15215 }, + }, + ["pre"] = { 8304 }, + ["start"] = { + ["U"] = { 15181 }, + }, + }, + [8307] = { + ["end"] = { + ["O"] = { 180503 }, + }, + ["lvl"] = 57, + ["min"] = 54, + ["skill"] = 185, + ["start"] = { + ["U"] = { 15174 }, + }, + }, + [8308] = { + ["end"] = { + ["U"] = { 15170 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["start"] = { + ["I"] = { 20461 }, + }, + }, + [8309] = { + ["end"] = { + ["U"] = { 15170 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 20454, 20455, 20456 }, + }, + ["pre"] = { 8304 }, + ["start"] = { + ["U"] = { 15170 }, + }, + }, + [8310] = { + ["end"] = { + ["U"] = { 15171 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 20457, 20458, 20459 }, + }, + ["pre"] = { 8304 }, + ["start"] = { + ["U"] = { 15171 }, + }, + }, + [8311] = { + ["end"] = { + ["U"] = { 15310 }, + }, + ["event"] = 12, + ["lvl"] = 60, + ["min"] = 10, + ["obj"] = { + ["I"] = { 20490, 20492, 20494, 20496 }, + }, + ["start"] = { + ["U"] = { 15310 }, + }, + }, + [8312] = { + ["end"] = { + ["U"] = { 15309 }, + }, + ["event"] = 12, + ["lvl"] = 60, + ["min"] = 10, + ["obj"] = { + ["I"] = { 20491, 20493, 20495, 20497 }, + }, + ["start"] = { + ["U"] = { 15309 }, + }, + }, + [8313] = { + ["end"] = { + ["U"] = { 15174 }, + }, + ["lvl"] = 57, + ["min"] = 54, + ["pre"] = { 8307 }, + ["skill"] = 185, + ["start"] = { + ["O"] = { 180503 }, + }, + }, + [8314] = { + ["end"] = { + ["U"] = { 15183 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["pre"] = { 8309, 8310 }, + ["race"] = 255, + ["start"] = { + ["U"] = { 15170 }, + }, + }, + [8315] = { + ["end"] = { + ["U"] = { 15183 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 20465 }, + ["IR"] = { 20464 }, + }, + ["pre"] = { 8314 }, + ["start"] = { + ["U"] = { 15183 }, + }, + }, + [8316] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 15183 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["pre"] = { 8315 }, + ["start"] = { + ["U"] = { 15183 }, + }, + }, + [8317] = { + ["end"] = { + ["U"] = { 15174 }, + }, + ["lvl"] = 57, + ["min"] = 54, + ["obj"] = { + ["I"] = { 20452 }, + }, + ["pre"] = { 8313 }, + ["skill"] = 185, + ["start"] = { + ["U"] = { 15174 }, + }, + }, + [8318] = { + ["end"] = { + ["U"] = { 15306 }, + }, + ["lvl"] = 60, + ["min"] = 57, + ["obj"] = { + ["I"] = { 20404 }, + }, + ["start"] = { + ["U"] = { 15306 }, + }, + }, + [8319] = { + ["end"] = { + ["U"] = { 15306 }, + }, + ["lvl"] = 60, + ["min"] = 57, + ["obj"] = { + ["I"] = { 20404 }, + }, + ["pre"] = { 8318 }, + ["start"] = { + ["U"] = { 15306 }, + }, + }, + [8320] = { + ["end"] = { + ["U"] = { 15270 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 11881 }, + }, + ["start"] = { + ["U"] = { 15270 }, + }, + }, + [8321] = { + ["end"] = { + ["U"] = { 15270 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20466 }, + }, + ["pre"] = { 8320 }, + ["start"] = { + ["U"] = { 15270 }, + }, + }, + [8322] = { + ["end"] = { + ["O"] = { 180570 }, + }, + ["event"] = 12, + ["lvl"] = 60, + ["min"] = 30, + ["start"] = { + ["U"] = { 15197 }, + }, + }, + [8323] = { + ["end"] = { + ["U"] = { 15194 }, + }, + ["lvl"] = 59, + ["min"] = 54, + ["obj"] = { + ["I"] = { 20404 }, + }, + ["pre"] = { 8279 }, + ["start"] = { + ["U"] = { 15194 }, + }, + }, + [8324] = { + ["end"] = { + ["U"] = { 15194 }, + }, + ["lvl"] = 59, + ["min"] = 54, + ["obj"] = { + ["I"] = { 20404 }, + }, + ["pre"] = { 8323 }, + ["start"] = { + ["U"] = { 15194 }, + }, + }, + [8331] = { + ["end"] = { + ["U"] = { 15282 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["start"] = { + ["U"] = { 15270 }, + }, + }, + [8332] = { + ["end"] = { + ["U"] = { 15282 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 14344, 20513 }, + }, + ["pre"] = { 8331 }, + ["start"] = { + ["U"] = { 15282 }, + }, + }, + [8333] = { + ["end"] = { + ["U"] = { 15282 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 14344, 20513 }, + }, + ["pre"] = { 8332 }, + ["start"] = { + ["U"] = { 15282 }, + }, + }, + [8341] = { + ["end"] = { + ["U"] = { 15282 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 14344, 20514 }, + }, + ["pre"] = { 8343 }, + ["start"] = { + ["U"] = { 15282 }, + }, + }, + [8342] = { + ["end"] = { + ["U"] = { 15282 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 14344, 20514 }, + }, + ["pre"] = { 8341 }, + ["start"] = { + ["U"] = { 15282 }, + }, + }, + [8343] = { + ["end"] = { + ["U"] = { 15282 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["start"] = { + ["U"] = { 15270 }, + }, + }, + [8348] = { + ["end"] = { + ["U"] = { 15306 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20514 }, + }, + ["pre"] = { 8349 }, + ["start"] = { + ["U"] = { 15306 }, + }, + }, + [8349] = { + ["end"] = { + ["U"] = { 15306 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 8332 }, + ["start"] = { + ["U"] = { 15282 }, + }, + }, + [8351] = { + ["end"] = { + ["U"] = { 15306 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 8341 }, + ["start"] = { + ["U"] = { 15282 }, + }, + }, + [8352] = { + ["end"] = { + ["U"] = { 15306 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20515 }, + }, + ["pre"] = { 8351 }, + ["start"] = { + ["U"] = { 15306 }, + }, + }, + [8353] = { + ["end"] = { + ["U"] = { 5111 }, + }, + ["event"] = 12, + ["lvl"] = 60, + ["min"] = 10, + ["obj"] = { + ["U"] = { 5111 }, + }, + ["pre"] = { 8311 }, + ["start"] = { + ["U"] = { 5111 }, + }, + }, + [8354] = { + ["end"] = { + ["U"] = { 6741 }, + }, + ["event"] = 12, + ["lvl"] = 60, + ["min"] = 10, + ["obj"] = { + ["U"] = { 6741 }, + }, + ["pre"] = { 8312 }, + ["start"] = { + ["U"] = { 6741 }, + }, + }, + [8355] = { + ["end"] = { + ["U"] = { 6826 }, + }, + ["event"] = 12, + ["lvl"] = 60, + ["min"] = 10, + ["obj"] = { + ["U"] = { 6826 }, + }, + ["pre"] = { 8311 }, + ["start"] = { + ["U"] = { 6826 }, + }, + }, + [8356] = { + ["end"] = { + ["U"] = { 6740 }, + }, + ["event"] = 12, + ["lvl"] = 60, + ["min"] = 10, + ["obj"] = { + ["U"] = { 6740 }, + }, + ["pre"] = { 8311 }, + ["start"] = { + ["U"] = { 6740 }, + }, + }, + [8357] = { + ["end"] = { + ["U"] = { 6735 }, + }, + ["event"] = 12, + ["lvl"] = 60, + ["min"] = 10, + ["obj"] = { + ["U"] = { 6735 }, + }, + ["pre"] = { 8311 }, + ["start"] = { + ["U"] = { 6735 }, + }, + }, + [8358] = { + ["end"] = { + ["U"] = { 11814 }, + }, + ["event"] = 12, + ["lvl"] = 60, + ["min"] = 10, + ["obj"] = { + ["U"] = { 11814 }, + }, + ["pre"] = { 8312 }, + ["start"] = { + ["U"] = { 11814 }, + }, + }, + [8359] = { + ["end"] = { + ["U"] = { 6929 }, + }, + ["event"] = 12, + ["lvl"] = 60, + ["min"] = 10, + ["obj"] = { + ["U"] = { 6929 }, + }, + ["pre"] = { 8312 }, + ["start"] = { + ["U"] = { 6929 }, + }, + }, + [8360] = { + ["end"] = { + ["U"] = { 6746 }, + }, + ["event"] = 12, + ["lvl"] = 60, + ["min"] = 10, + ["obj"] = { + ["U"] = { 6746 }, + }, + ["pre"] = { 8312 }, + ["start"] = { + ["U"] = { 6746 }, + }, + }, + [8361] = { + ["end"] = { + ["U"] = { 15306 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20513 }, + }, + ["start"] = { + ["U"] = { 15306 }, + }, + }, + [8362] = { + ["end"] = { + ["U"] = { 15306 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20513 }, + }, + ["pre"] = { 8361 }, + ["start"] = { + ["U"] = { 15306 }, + }, + }, + [8363] = { + ["end"] = { + ["U"] = { 15306 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20514 }, + }, + ["pre"] = { 8348 }, + ["start"] = { + ["U"] = { 15306 }, + }, + }, + [8364] = { + ["end"] = { + ["U"] = { 15306 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20515 }, + }, + ["pre"] = { 8352 }, + ["start"] = { + ["U"] = { 15306 }, + }, + }, + [8365] = { + ["end"] = { + ["U"] = { 15165 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 20519 }, + }, + ["start"] = { + ["U"] = { 15165 }, + }, + }, + [8366] = { + ["end"] = { + ["U"] = { 7882 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["U"] = { 7855, 7856, 7857, 7858 }, + }, + ["start"] = { + ["U"] = { 7882 }, + }, + }, + [8367] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 20558, 20559, 20560 }, + }, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8368] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 19, + ["min"] = 10, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8369] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 20560 }, + }, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8370] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 29, + ["min"] = 20, + ["obj"] = { + ["I"] = { 20559 }, + }, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8371] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 20558, 20559, 20560 }, + }, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8372] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 19, + ["min"] = 10, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8373] = { + ["end"] = { + ["U"] = { 15199 }, + }, + ["event"] = 12, + ["lvl"] = 60, + ["min"] = 25, + ["obj"] = { + ["IR"] = { 20604 }, + }, + ["start"] = { + ["U"] = { 15199 }, + }, + }, + [8374] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 29, + ["min"] = 20, + ["obj"] = { + ["I"] = { 20559 }, + }, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8375] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 20560 }, + }, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8376] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 15183 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["pre"] = { 8315 }, + ["start"] = { + ["U"] = { 15183 }, + }, + }, + [8377] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 15183 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["pre"] = { 8315 }, + ["start"] = { + ["U"] = { 15183 }, + }, + }, + [8378] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 15183 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["pre"] = { 8315 }, + ["start"] = { + ["U"] = { 15183 }, + }, + }, + [8379] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 15183 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["pre"] = { 8315 }, + ["start"] = { + ["U"] = { 15183 }, + }, + }, + [8380] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 15183 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["pre"] = { 8315 }, + ["start"] = { + ["U"] = { 15183 }, + }, + }, + [8381] = { + ["class"] = 384, + ["end"] = { + ["U"] = { 15183 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["pre"] = { 8315 }, + ["start"] = { + ["U"] = { 15183 }, + }, + }, + [8382] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 15183 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["pre"] = { 8315 }, + ["start"] = { + ["U"] = { 15183 }, + }, + }, + [8383] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 20560 }, + }, + ["pre"] = { 8375 }, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8384] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 29, + ["min"] = 20, + ["obj"] = { + ["I"] = { 20559 }, + }, + ["pre"] = { 8374 }, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8385] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 20558, 20559, 20560 }, + }, + ["pre"] = { 8371 }, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8386] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 19, + ["min"] = 10, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["pre"] = { 8372 }, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8387] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 20560 }, + }, + ["pre"] = { 8369 }, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8388] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 20558, 20559, 20560 }, + }, + ["pre"] = { 8367 }, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8389] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 19, + ["min"] = 10, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["pre"] = { 8368 }, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8390] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 29, + ["min"] = 20, + ["obj"] = { + ["I"] = { 20559 }, + }, + ["pre"] = { 8370 }, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8391] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 39, + ["min"] = 30, + ["obj"] = { + ["I"] = { 20559 }, + }, + ["pre"] = { 8393 }, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8392] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 49, + ["min"] = 40, + ["obj"] = { + ["I"] = { 20559 }, + }, + ["pre"] = { 8394 }, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8393] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 39, + ["min"] = 30, + ["obj"] = { + ["I"] = { 20559 }, + }, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8394] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 49, + ["min"] = 40, + ["obj"] = { + ["I"] = { 20559 }, + }, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8395] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 59, + ["min"] = 50, + ["obj"] = { + ["I"] = { 20559 }, + }, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8396] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20559 }, + }, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8397] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 59, + ["min"] = 50, + ["obj"] = { + ["I"] = { 20559 }, + }, + ["pre"] = { 8395 }, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8398] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20559 }, + }, + ["pre"] = { 8396 }, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8399] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 29, + ["min"] = 20, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8400] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 39, + ["min"] = 30, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8401] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 49, + ["min"] = 40, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8402] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 59, + ["min"] = 50, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8403] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8404] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 29, + ["min"] = 20, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["pre"] = { 8399 }, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8405] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 39, + ["min"] = 30, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["pre"] = { 8400 }, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8406] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 49, + ["min"] = 40, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["pre"] = { 8401 }, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8407] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 59, + ["min"] = 50, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["pre"] = { 8402 }, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8408] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["pre"] = { 8403 }, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8409] = { + ["end"] = { + ["U"] = { 15197 }, + }, + ["event"] = 12, + ["lvl"] = 60, + ["min"] = 25, + ["pre"] = { 8322 }, + ["start"] = { + ["O"] = { 180570 }, + }, + }, + [8410] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 6176 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["obj"] = { + ["I"] = { 7067, 7068, 7069, 7070 }, + }, + ["start"] = { + ["U"] = { 3032, 13417 }, + }, + }, + [8411] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 6176 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["obj"] = { + ["I"] = { 7067, 7068, 7069, 7070 }, + }, + ["start"] = { + ["U"] = { 6176 }, + }, + }, + [8412] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 6176 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["obj"] = { + ["I"] = { 20610, 20611 }, + }, + ["pre"] = { 8410, 8411 }, + ["start"] = { + ["U"] = { 6176 }, + }, + }, + [8413] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 6176 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["obj"] = { + ["I"] = { 20606, 20607, 20608 }, + }, + ["pre"] = { 8412 }, + ["start"] = { + ["U"] = { 6176 }, + }, + }, + [8414] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 1854 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["obj"] = { + ["I"] = { 12840 }, + }, + ["pre"] = { 8415 }, + ["start"] = { + ["U"] = { 10838 }, + }, + }, + [8415] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 10838 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["start"] = { + ["U"] = { 928, 5149 }, + }, + }, + [8416] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 10838 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["pre"] = { 8414 }, + ["start"] = { + ["U"] = { 1854 }, + }, + }, + [8417] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 7572 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["start"] = { + ["U"] = { 3354, 4593, 5113, 5479, 7315 }, + }, + }, + [8418] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 10838 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["obj"] = { + ["I"] = { 20606, 20607, 20608 }, + }, + ["pre"] = { 8416 }, + ["start"] = { + ["U"] = { 10838 }, + }, + }, + [8419] = { + ["class"] = 256, + ["close"] = { 8419, 8420 }, + ["end"] = { + ["U"] = { 14470 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["obj"] = { + ["I"] = { 14256 }, + }, + ["start"] = { + ["U"] = { 461, 3326, 4563, 5172 }, + }, + }, + [8420] = { + ["class"] = 256, + ["close"] = { 8419, 8420 }, + ["end"] = { + ["U"] = { 14470 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["obj"] = { + ["I"] = { 14256 }, + }, + ["start"] = { + ["U"] = { 14470 }, + }, + }, + [8421] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 14470 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["obj"] = { + ["I"] = { 20613, 20614 }, + }, + ["pre"] = { 8419, 8420 }, + ["start"] = { + ["U"] = { 14470 }, + }, + }, + [8422] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 14470 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["obj"] = { + ["I"] = { 20606, 20607, 20608 }, + }, + ["pre"] = { 8421 }, + ["start"] = { + ["U"] = { 14470 }, + }, + }, + [8423] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 7572 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["obj"] = { + ["U"] = { 5993 }, + }, + ["pre"] = { 8417 }, + ["start"] = { + ["U"] = { 7572 }, + }, + }, + [8424] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 7572 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["obj"] = { + ["U"] = { 6004, 6005, 6006 }, + }, + ["pre"] = { 8423 }, + ["start"] = { + ["U"] = { 7572 }, + }, + }, + [8425] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 7572 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["obj"] = { + ["I"] = { 20606, 20607, 20608 }, + }, + ["pre"] = { 8424 }, + ["start"] = { + ["U"] = { 7572 }, + }, + }, + [8426] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 29, + ["min"] = 20, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8427] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 39, + ["min"] = 30, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8428] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 49, + ["min"] = 40, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8429] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 59, + ["min"] = 50, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8430] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8431] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 29, + ["min"] = 20, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["pre"] = { 8426 }, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8432] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 39, + ["min"] = 30, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["pre"] = { 8427 }, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8433] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 49, + ["min"] = 40, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["pre"] = { 8428 }, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8434] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 59, + ["min"] = 50, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["pre"] = { 8429 }, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8435] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["pre"] = { 8430 }, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8436] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 39, + ["min"] = 30, + ["obj"] = { + ["I"] = { 20559 }, + }, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8437] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 49, + ["min"] = 40, + ["obj"] = { + ["I"] = { 20559 }, + }, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8438] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 59, + ["min"] = 50, + ["obj"] = { + ["I"] = { 20559 }, + }, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8439] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20559 }, + }, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8440] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 39, + ["min"] = 30, + ["obj"] = { + ["I"] = { 20559 }, + }, + ["pre"] = { 8436 }, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8441] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 49, + ["min"] = 40, + ["obj"] = { + ["I"] = { 20559 }, + }, + ["pre"] = { 8437 }, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8442] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 59, + ["min"] = 50, + ["obj"] = { + ["I"] = { 20559 }, + }, + ["pre"] = { 8438 }, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8443] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20559 }, + }, + ["pre"] = { 8439 }, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8444] = { + ["lvl"] = 58, + ["min"] = 55, + }, + [8445] = { + ["lvl"] = 58, + ["min"] = 55, + }, + [8446] = { + ["end"] = { + ["U"] = { 11832 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["start"] = { + ["I"] = { 20644 }, + }, + }, + [8447] = { + ["end"] = { + ["U"] = { 11832 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 8446 }, + ["start"] = { + ["U"] = { 11832 }, + }, + }, + [8458] = { + ["lvl"] = 33, + ["min"] = 25, + ["obj"] = { + ["I"] = { 6441 }, + }, + }, + [8459] = { + ["lvl"] = 1, + ["min"] = 1, + }, + [8460] = { + ["end"] = { + ["U"] = { 11554 }, + }, + ["lvl"] = 48, + ["min"] = 45, + ["obj"] = { + ["U"] = { 7153, 7154, 7155 }, + }, + ["start"] = { + ["U"] = { 11554 }, + }, + }, + [8461] = { + ["end"] = { + ["U"] = { 15395 }, + }, + ["lvl"] = 55, + ["min"] = 45, + ["obj"] = { + ["U"] = { 7156, 7157, 7158 }, + }, + ["start"] = { + ["U"] = { 15395 }, + }, + }, + [8462] = { + ["end"] = { + ["U"] = { 15395 }, + }, + ["lvl"] = 55, + ["min"] = 45, + ["pre"] = { 8460 }, + ["start"] = { + ["U"] = { 11554 }, + }, + }, + [8464] = { + ["end"] = { + ["U"] = { 11556 }, + }, + ["lvl"] = 58, + ["min"] = 45, + ["obj"] = { + ["U"] = { 7438, 7439, 7440 }, + }, + ["start"] = { + ["U"] = { 11556 }, + }, + }, + [8465] = { + ["end"] = { + ["U"] = { 11556 }, + }, + ["lvl"] = 55, + ["min"] = 45, + ["pre"] = { 8461 }, + ["start"] = { + ["U"] = { 15395 }, + }, + }, + [8466] = { + ["end"] = { + ["U"] = { 11554 }, + }, + ["lvl"] = 55, + ["min"] = 45, + ["obj"] = { + ["I"] = { 21377 }, + }, + ["pre"] = { 8460 }, + ["start"] = { + ["U"] = { 11554 }, + }, + }, + [8467] = { + ["end"] = { + ["U"] = { 15395 }, + }, + ["lvl"] = 55, + ["min"] = 45, + ["obj"] = { + ["I"] = { 21377 }, + }, + ["pre"] = { 8461 }, + ["start"] = { + ["U"] = { 15395 }, + }, + }, + [8469] = { + ["end"] = { + ["U"] = { 11556 }, + }, + ["lvl"] = 56, + ["min"] = 50, + ["obj"] = { + ["I"] = { 21383 }, + }, + ["pre"] = { 8464 }, + ["start"] = { + ["U"] = { 11556 }, + }, + }, + [8470] = { + ["end"] = { + ["U"] = { 11558 }, + }, + ["lvl"] = 55, + ["min"] = 45, + ["start"] = { + ["I"] = { 20741 }, + }, + }, + [8471] = { + ["end"] = { + ["U"] = { 11558 }, + }, + ["lvl"] = 56, + ["min"] = 50, + ["start"] = { + ["I"] = { 20742 }, + }, + }, + [8481] = { + ["end"] = { + ["U"] = { 11555 }, + }, + ["lvl"] = 60, + ["min"] = 45, + ["obj"] = { + ["I"] = { 21145 }, + ["IR"] = { 21144 }, + }, + ["start"] = { + ["U"] = { 11555 }, + }, + }, + [8484] = { + ["end"] = { + ["U"] = { 2784 }, + }, + ["lvl"] = 60, + ["min"] = 45, + ["pre"] = { 8481 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 11555 }, + }, + }, + [8485] = { + ["end"] = { + ["U"] = { 4949 }, + }, + ["lvl"] = 60, + ["min"] = 45, + ["pre"] = { 8481 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 11555 }, + }, + }, + [8492] = { + ["end"] = { + ["U"] = { 15383 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 2840 }, + }, + ["pre"] = { 8795 }, + ["start"] = { + ["U"] = { 15383 }, + }, + }, + [8493] = { + ["end"] = { + ["U"] = { 15383 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 2840 }, + }, + ["pre"] = { 8492 }, + ["start"] = { + ["U"] = { 15383 }, + }, + }, + [8494] = { + ["end"] = { + ["U"] = { 15431 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 3575 }, + }, + ["pre"] = { 8795 }, + ["start"] = { + ["U"] = { 15431 }, + }, + }, + [8495] = { + ["end"] = { + ["U"] = { 15431 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 3575 }, + }, + ["pre"] = { 8494 }, + ["start"] = { + ["U"] = { 15431 }, + }, + }, + [8496] = { + ["end"] = { + ["U"] = { 15191 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 6451, 8545, 14530 }, + }, + ["start"] = { + ["I"] = { 20806 }, + }, + }, + [8497] = { + ["end"] = { + ["U"] = { 15174 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 7079, 19440, 20452 }, + }, + ["start"] = { + ["I"] = { 20807 }, + }, + }, + [8498] = { + ["end"] = { + ["U"] = { 15181 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20803 }, + }, + ["start"] = { + ["I"] = { 20943 }, + }, + }, + [8499] = { + ["end"] = { + ["U"] = { 15432 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 12359 }, + }, + ["pre"] = { 8795 }, + ["start"] = { + ["U"] = { 15432 }, + }, + }, + [8500] = { + ["end"] = { + ["U"] = { 15432 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 12359 }, + }, + ["pre"] = { 8499 }, + ["start"] = { + ["U"] = { 15432 }, + }, + }, + [8501] = { + ["end"] = { + ["U"] = { 15181 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 11698 }, + }, + ["start"] = { + ["I"] = { 20941 }, + }, + }, + [8502] = { + ["end"] = { + ["U"] = { 15181 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 11721 }, + }, + ["start"] = { + ["I"] = { 20942 }, + }, + }, + [8503] = { + ["end"] = { + ["U"] = { 15434 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 3820 }, + }, + ["pre"] = { 8795 }, + ["start"] = { + ["U"] = { 15434 }, + }, + }, + [8504] = { + ["end"] = { + ["U"] = { 15434 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 3820 }, + }, + ["pre"] = { 8503 }, + ["start"] = { + ["U"] = { 15434 }, + }, + }, + [8505] = { + ["end"] = { + ["U"] = { 15437 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 8831 }, + }, + ["pre"] = { 8795 }, + ["start"] = { + ["U"] = { 15437 }, + }, + }, + [8506] = { + ["end"] = { + ["U"] = { 15437 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 8831 }, + }, + ["pre"] = { 8505 }, + ["start"] = { + ["U"] = { 15437 }, + }, + }, + [8507] = { + ["end"] = { + ["U"] = { 15540 }, + }, + ["event"] = 86, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20810 }, + }, + ["race"] = 77, + ["start"] = { + ["U"] = { 15540 }, + }, + }, + [8508] = { + ["end"] = { + ["U"] = { 15440 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 21143 }, + }, + ["pre"] = { 8507 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 15440 }, + }, + }, + [8509] = { + ["end"] = { + ["U"] = { 15445 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 8836 }, + }, + ["pre"] = { 8795 }, + ["start"] = { + ["U"] = { 15445 }, + }, + }, + [8510] = { + ["end"] = { + ["U"] = { 15445 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 8836 }, + }, + ["pre"] = { 8509 }, + ["start"] = { + ["U"] = { 15445 }, + }, + }, + [8511] = { + ["end"] = { + ["U"] = { 15446 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 2318 }, + }, + ["pre"] = { 8795 }, + ["start"] = { + ["U"] = { 15446 }, + }, + }, + [8512] = { + ["end"] = { + ["U"] = { 15446 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 2318 }, + }, + ["pre"] = { 8511 }, + ["start"] = { + ["U"] = { 15446 }, + }, + }, + [8513] = { + ["end"] = { + ["U"] = { 15448 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 2319 }, + }, + ["pre"] = { 8795 }, + ["start"] = { + ["U"] = { 15448 }, + }, + }, + [8514] = { + ["end"] = { + ["U"] = { 15448 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 2319 }, + }, + ["pre"] = { 8513 }, + ["start"] = { + ["U"] = { 15448 }, + }, + }, + [8515] = { + ["end"] = { + ["U"] = { 15450 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 4304 }, + }, + ["pre"] = { 8795 }, + ["start"] = { + ["U"] = { 15450 }, + }, + }, + [8516] = { + ["end"] = { + ["U"] = { 15450 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 4304 }, + }, + ["pre"] = { 8515 }, + ["start"] = { + ["U"] = { 15450 }, + }, + }, + [8517] = { + ["end"] = { + ["U"] = { 15451 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 1251 }, + }, + ["pre"] = { 8795 }, + ["start"] = { + ["U"] = { 15451 }, + }, + }, + [8518] = { + ["end"] = { + ["U"] = { 15451 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 1251 }, + }, + ["pre"] = { 8517 }, + ["start"] = { + ["U"] = { 15451 }, + }, + }, + [8519] = { + ["end"] = { + ["U"] = { 15192 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 8305 }, + ["start"] = { + ["O"] = { 180633 }, + }, + }, + [8520] = { + ["end"] = { + ["U"] = { 15452 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 6450 }, + }, + ["pre"] = { 8795 }, + ["start"] = { + ["U"] = { 15452 }, + }, + }, + [8521] = { + ["end"] = { + ["U"] = { 15452 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 6450 }, + }, + ["pre"] = { 8520 }, + ["start"] = { + ["U"] = { 15452 }, + }, + }, + [8522] = { + ["end"] = { + ["U"] = { 15453 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 14529 }, + }, + ["pre"] = { 8795 }, + ["start"] = { + ["U"] = { 15453 }, + }, + }, + [8523] = { + ["end"] = { + ["U"] = { 15453 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 14529 }, + }, + ["pre"] = { 8522 }, + ["start"] = { + ["U"] = { 15453 }, + }, + }, + [8524] = { + ["end"] = { + ["U"] = { 15455 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 5095 }, + }, + ["pre"] = { 8795 }, + ["start"] = { + ["U"] = { 15455 }, + }, + }, + [8525] = { + ["end"] = { + ["U"] = { 15455 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 5095 }, + }, + ["pre"] = { 8524 }, + ["start"] = { + ["U"] = { 15455 }, + }, + }, + [8526] = { + ["end"] = { + ["U"] = { 15456 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 12210 }, + }, + ["pre"] = { 8795 }, + ["start"] = { + ["U"] = { 15456 }, + }, + }, + [8527] = { + ["end"] = { + ["U"] = { 15456 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 12210 }, + }, + ["pre"] = { 8526 }, + ["start"] = { + ["U"] = { 15456 }, + }, + }, + [8528] = { + ["end"] = { + ["U"] = { 15457 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 6887 }, + }, + ["pre"] = { 8795 }, + ["start"] = { + ["U"] = { 15457 }, + }, + }, + [8529] = { + ["end"] = { + ["U"] = { 15457 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 6887 }, + }, + ["pre"] = { 8528 }, + ["start"] = { + ["U"] = { 15457 }, + }, + }, + [8530] = { + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 20737 }, + }, + }, + [8532] = { + ["end"] = { + ["U"] = { 15459 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 2840 }, + }, + ["pre"] = { 8792 }, + ["start"] = { + ["U"] = { 15459 }, + }, + }, + [8533] = { + ["end"] = { + ["U"] = { 15459 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 2840 }, + }, + ["pre"] = { 8532 }, + ["start"] = { + ["U"] = { 15459 }, + }, + }, + [8534] = { + ["end"] = { + ["U"] = { 15191 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 21158 }, + }, + ["start"] = { + ["I"] = { 21165 }, + }, + }, + [8535] = { + ["end"] = { + ["U"] = { 15306 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 15212 }, + }, + ["start"] = { + ["I"] = { 20947 }, + }, + }, + [8536] = { + ["end"] = { + ["U"] = { 15306 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 15307 }, + }, + ["start"] = { + ["I"] = { 21751 }, + }, + }, + [8537] = { + ["end"] = { + ["U"] = { 15306 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 15209 }, + }, + ["start"] = { + ["I"] = { 20945 }, + }, + }, + [8538] = { + ["end"] = { + ["U"] = { 15181 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 15206, 15207, 15208, 15220 }, + }, + ["start"] = { + ["I"] = { 20948 }, + }, + }, + [8539] = { + ["end"] = { + ["U"] = { 15181 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 11729 }, + }, + ["start"] = { + ["I"] = { 21249 }, + }, + }, + [8540] = { + ["end"] = { + ["U"] = { 15182 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 7936 }, + }, + ["start"] = { + ["I"] = { 20939 }, + }, + }, + [8541] = { + ["end"] = { + ["U"] = { 15182 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 3486, 7966, 12644 }, + }, + ["start"] = { + ["I"] = { 20940 }, + }, + }, + [8542] = { + ["end"] = { + ["U"] = { 15460 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 3576 }, + }, + ["pre"] = { 8792 }, + ["start"] = { + ["U"] = { 15460 }, + }, + }, + [8543] = { + ["end"] = { + ["U"] = { 15460 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 3576 }, + }, + ["pre"] = { 8542 }, + ["start"] = { + ["U"] = { 15460 }, + }, + }, + [8544] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 15502 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20858, 20863, 20875, 20928 }, + }, + ["start"] = { + ["U"] = { 15502 }, + }, + }, + [8545] = { + ["end"] = { + ["U"] = { 15469 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 3860 }, + }, + ["pre"] = { 8792 }, + ["start"] = { + ["U"] = { 15469 }, + }, + }, + [8546] = { + ["end"] = { + ["U"] = { 15469 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 3860 }, + }, + ["pre"] = { 8545 }, + ["start"] = { + ["U"] = { 15469 }, + }, + }, + [8548] = { + ["end"] = { + ["U"] = { 15176 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20800, 20801, 20802 }, + }, + ["pre"] = { 8800 }, + ["start"] = { + ["U"] = { 15176 }, + }, + }, + [8549] = { + ["end"] = { + ["U"] = { 15477 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 2447 }, + }, + ["pre"] = { 8792 }, + ["start"] = { + ["U"] = { 15477 }, + }, + }, + [8550] = { + ["end"] = { + ["U"] = { 15477 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 2447 }, + }, + ["pre"] = { 8549 }, + ["start"] = { + ["U"] = { 15477 }, + }, + }, + [8551] = { + ["end"] = { + ["U"] = { 2500 }, + }, + ["lvl"] = 47, + ["min"] = 35, + ["obj"] = { + ["I"] = { 3932 }, + }, + ["start"] = { + ["U"] = { 2500 }, + }, + }, + [8552] = { + ["end"] = { + ["U"] = { 2500 }, + }, + ["lvl"] = 50, + ["min"] = 35, + ["start"] = { + ["I"] = { 3985 }, + }, + }, + [8553] = { + ["end"] = { + ["U"] = { 2594 }, + }, + ["lvl"] = 50, + ["min"] = 35, + ["pre"] = { 8552 }, + ["start"] = { + ["U"] = { 2500 }, + }, + }, + [8554] = { + ["end"] = { + ["U"] = { 2500 }, + }, + ["lvl"] = 50, + ["min"] = 35, + ["obj"] = { + ["I"] = { 3935 }, + }, + ["pre"] = { 8553 }, + ["start"] = { + ["U"] = { 2594 }, + }, + }, + [8555] = { + ["end"] = { + ["U"] = { 15192 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 8519 }, + ["start"] = { + ["U"] = { 15192 }, + }, + }, + [8556] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 15498 }, + }, + ["event"] = 86, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20861, 20865, 20868, 20884 }, + }, + ["start"] = { + ["U"] = { 15498 }, + }, + }, + [8557] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 15500 }, + }, + ["event"] = 86, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20860, 20864, 20867, 20885 }, + }, + ["start"] = { + ["U"] = { 15500 }, + }, + }, + [8558] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 15499 }, + }, + ["event"] = 86, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20858, 20862, 20873, 20886 }, + }, + ["start"] = { + ["U"] = { 15499 }, + }, + }, + [8559] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 15503 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20859, 20865, 20882, 20928 }, + }, + ["start"] = { + ["U"] = { 15503 }, + }, + }, + [8560] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 15503 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20861, 20865, 20876, 20927 }, + }, + ["start"] = { + ["U"] = { 15503 }, + }, + }, + [8561] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 15502 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20858, 20862, 20874, 20926 }, + }, + ["start"] = { + ["U"] = { 15502 }, + }, + }, + [8562] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 15504 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20860, 20864, 20882, 20929 }, + }, + ["start"] = { + ["U"] = { 15504 }, + }, + }, + [8565] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["obj"] = { + ["I"] = { 19725 }, + }, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8566] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["obj"] = { + ["I"] = { 19725 }, + }, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8567] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["obj"] = { + ["I"] = { 19213 }, + }, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8568] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["obj"] = { + ["I"] = { 19322 }, + }, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8569] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["obj"] = { + ["I"] = { 20256 }, + }, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8570] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["obj"] = { + ["I"] = { 20256 }, + }, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8572] = { + ["end"] = { + ["U"] = { 15176 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20800, 20801, 20802 }, + }, + ["pre"] = { 8800 }, + ["start"] = { + ["U"] = { 15176 }, + }, + }, + [8573] = { + ["end"] = { + ["U"] = { 15176 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20800, 20801, 20802, 21508 }, + }, + ["pre"] = { 8800 }, + ["start"] = { + ["U"] = { 15176 }, + }, + }, + [8574] = { + ["end"] = { + ["U"] = { 15176 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20800, 20801, 20802, 21515 }, + }, + ["pre"] = { 8800 }, + ["start"] = { + ["U"] = { 15176 }, + }, + }, + [8575] = { + ["end"] = { + ["U"] = { 11811 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["start"] = { + ["I"] = { 20949 }, + }, + }, + [8576] = { + ["end"] = { + ["U"] = { 11811 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 8575 }, + ["start"] = { + ["U"] = { 11811 }, + }, + }, + [8577] = { + ["end"] = { + ["O"] = { 180642 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 8576 }, + ["start"] = { + ["U"] = { 11811 }, + }, + }, + [8578] = { + ["end"] = { + ["U"] = { 11811 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20951 }, + }, + ["pre"] = { 8577 }, + ["start"] = { + ["O"] = { 180642 }, + }, + }, + [8579] = { + ["end"] = { + ["U"] = { 15503 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 21229 }, + }, + ["start"] = { + ["U"] = { 15503 }, + }, + }, + [8580] = { + ["end"] = { + ["U"] = { 15508 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 4625 }, + }, + ["pre"] = { 8792 }, + ["start"] = { + ["U"] = { 15508 }, + }, + }, + [8581] = { + ["end"] = { + ["U"] = { 15508 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 4625 }, + }, + ["pre"] = { 8580 }, + ["start"] = { + ["U"] = { 15508 }, + }, + }, + [8582] = { + ["end"] = { + ["U"] = { 15512 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 8831 }, + }, + ["pre"] = { 8792 }, + ["start"] = { + ["U"] = { 15512 }, + }, + }, + [8583] = { + ["end"] = { + ["U"] = { 15512 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 8831 }, + }, + ["pre"] = { 8582 }, + ["start"] = { + ["U"] = { 15512 }, + }, + }, + [8584] = { + ["end"] = { + ["U"] = { 8125 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 8576 }, + ["start"] = { + ["U"] = { 11811 }, + }, + }, + [8585] = { + ["end"] = { + ["U"] = { 8125 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 21024, 21027 }, + }, + ["pre"] = { 8584 }, + ["start"] = { + ["U"] = { 8125 }, + }, + }, + [8586] = { + ["end"] = { + ["U"] = { 8125 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 8150, 9061 }, + }, + ["pre"] = { 8585 }, + ["start"] = { + ["U"] = { 8125 }, + }, + }, + [8587] = { + ["end"] = { + ["U"] = { 11811 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 8586 }, + ["start"] = { + ["U"] = { 8125 }, + }, + }, + [8588] = { + ["end"] = { + ["U"] = { 15515 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 4234 }, + }, + ["pre"] = { 8792 }, + ["start"] = { + ["U"] = { 15515 }, + }, + }, + [8589] = { + ["end"] = { + ["U"] = { 15515 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 4234 }, + }, + ["pre"] = { 8588 }, + ["start"] = { + ["U"] = { 15515 }, + }, + }, + [8590] = { + ["end"] = { + ["U"] = { 15522 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 4304 }, + }, + ["pre"] = { 8792 }, + ["start"] = { + ["U"] = { 15522 }, + }, + }, + [8591] = { + ["end"] = { + ["U"] = { 15522 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 4304 }, + }, + ["pre"] = { 8590 }, + ["start"] = { + ["U"] = { 15522 }, + }, + }, + [8592] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 15502 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20860, 20864, 20877, 20926 }, + }, + ["start"] = { + ["U"] = { 15502 }, + }, + }, + [8593] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 15503 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20859, 20863, 20879, 20927 }, + }, + ["start"] = { + ["U"] = { 15503 }, + }, + }, + [8594] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 15502 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20860, 20865, 20878, 20928 }, + }, + ["start"] = { + ["U"] = { 15502 }, + }, + }, + [8595] = { + ["end"] = { + ["U"] = { 15503 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 21229 }, + }, + ["pre"] = { 8579 }, + ["start"] = { + ["U"] = { 15503 }, + }, + }, + [8596] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 15503 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20859, 20861, 20876, 20928 }, + }, + ["start"] = { + ["U"] = { 15503 }, + }, + }, + [8597] = { + ["end"] = { + ["O"] = { 180652 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 8576 }, + ["start"] = { + ["U"] = { 11811 }, + }, + }, + [8598] = { + ["end"] = { + ["U"] = { 11811 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 8597 }, + ["start"] = { + ["O"] = { 180652 }, + }, + }, + [8599] = { + ["end"] = { + ["U"] = { 11811 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 8597 }, + ["start"] = { + ["U"] = { 15526 }, + }, + }, + [8600] = { + ["end"] = { + ["U"] = { 15525 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 8170 }, + }, + ["pre"] = { 8792 }, + ["start"] = { + ["U"] = { 15525 }, + }, + }, + [8601] = { + ["end"] = { + ["U"] = { 15525 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 8170 }, + }, + ["pre"] = { 8600 }, + ["start"] = { + ["U"] = { 15525 }, + }, + }, + [8602] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 15502 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20859, 20862, 20879, 20932 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 15502 }, + }, + }, + [8603] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 15504 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20858, 20862, 20876, 20933 }, + }, + ["start"] = { + ["U"] = { 15504 }, + }, + }, + [8604] = { + ["end"] = { + ["U"] = { 15528 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 3530 }, + }, + ["pre"] = { 8792 }, + ["start"] = { + ["U"] = { 15528 }, + }, + }, + [8605] = { + ["end"] = { + ["U"] = { 15528 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 3530 }, + }, + ["pre"] = { 8604 }, + ["start"] = { + ["U"] = { 15528 }, + }, + }, + [8606] = { + ["end"] = { + ["U"] = { 11811 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 15554 }, + }, + ["pre"] = { 8598 }, + ["start"] = { + ["U"] = { 11811 }, + }, + }, + [8607] = { + ["end"] = { + ["U"] = { 15529 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 8544 }, + }, + ["pre"] = { 8792 }, + ["start"] = { + ["U"] = { 15529 }, + }, + }, + [8608] = { + ["end"] = { + ["U"] = { 15529 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 8544 }, + }, + ["pre"] = { 8607 }, + ["start"] = { + ["U"] = { 15529 }, + }, + }, + [8609] = { + ["end"] = { + ["U"] = { 15532 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 14529 }, + }, + ["pre"] = { 8792 }, + ["start"] = { + ["U"] = { 15532 }, + }, + }, + [8610] = { + ["end"] = { + ["U"] = { 15532 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 14529 }, + }, + ["pre"] = { 8609 }, + ["start"] = { + ["U"] = { 15532 }, + }, + }, + [8611] = { + ["end"] = { + ["U"] = { 15533 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 12209 }, + }, + ["pre"] = { 8792 }, + ["start"] = { + ["U"] = { 15533 }, + }, + }, + [8612] = { + ["end"] = { + ["U"] = { 15533 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 12209 }, + }, + ["pre"] = { 8611 }, + ["start"] = { + ["U"] = { 15533 }, + }, + }, + [8613] = { + ["end"] = { + ["U"] = { 15534 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 6887 }, + }, + ["pre"] = { 8792 }, + ["start"] = { + ["U"] = { 15534 }, + }, + }, + [8614] = { + ["end"] = { + ["U"] = { 15534 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 6887 }, + }, + ["pre"] = { 8613 }, + ["start"] = { + ["U"] = { 15534 }, + }, + }, + [8615] = { + ["end"] = { + ["U"] = { 15535 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 13935 }, + }, + ["pre"] = { 8792 }, + ["start"] = { + ["U"] = { 15535 }, + }, + }, + [8616] = { + ["end"] = { + ["U"] = { 15535 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 13935 }, + }, + ["pre"] = { 8615 }, + ["start"] = { + ["U"] = { 15535 }, + }, + }, + [8617] = { + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 20737 }, + }, + }, + [8619] = { + ["end"] = { + ["U"] = { 15549 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["U"] = { 15549 }, + }, + }, + [8620] = { + ["end"] = { + ["U"] = { 11811 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 21111 }, + }, + ["pre"] = { 8606 }, + ["start"] = { + ["U"] = { 11811 }, + }, + }, + [8621] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 15503 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20861, 20863, 20877, 20932 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 15503 }, + }, + }, + [8622] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 15504 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20860, 20864, 20877, 20929 }, + }, + ["start"] = { + ["U"] = { 15504 }, + }, + }, + [8623] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 15502 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20858, 20862, 20878, 20930 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 15502 }, + }, + }, + [8624] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 15503 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20861, 20865, 20881, 20931 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 15503 }, + }, + }, + [8625] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 15502 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20858, 20861, 20876, 20932 }, + }, + ["start"] = { + ["U"] = { 15502 }, + }, + }, + [8626] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 15503 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20858, 20864, 20879, 20928 }, + }, + ["start"] = { + ["U"] = { 15503 }, + }, + }, + [8627] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 15504 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20860, 20864, 20877, 20929 }, + }, + ["start"] = { + ["U"] = { 15504 }, + }, + }, + [8628] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 15502 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20858, 20862, 20878, 20930 }, + }, + ["start"] = { + ["U"] = { 15502 }, + }, + }, + [8629] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 15503 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20861, 20865, 20881, 20931 }, + }, + ["start"] = { + ["U"] = { 15503 }, + }, + }, + [8630] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 15502 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20859, 20862, 20879, 20932 }, + }, + ["start"] = { + ["U"] = { 15502 }, + }, + }, + [8631] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 15503 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20860, 20864, 20877, 20927 }, + }, + ["start"] = { + ["U"] = { 15503 }, + }, + }, + [8632] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 15502 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20861, 20865, 20875, 20926 }, + }, + ["start"] = { + ["U"] = { 15502 }, + }, + }, + [8633] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 15504 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20859, 20863, 20874, 20933 }, + }, + ["start"] = { + ["U"] = { 15504 }, + }, + }, + [8634] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 15503 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20860, 20862, 20874, 20932 }, + }, + ["start"] = { + ["U"] = { 15503 }, + }, + }, + [8635] = { + ["end"] = { + ["U"] = { 15556 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["U"] = { 15556 }, + }, + }, + [8636] = { + ["end"] = { + ["U"] = { 15557 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["U"] = { 15557 }, + }, + }, + [8637] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 15503 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20862, 20864, 20881, 20928 }, + }, + ["start"] = { + ["U"] = { 15503 }, + }, + }, + [8638] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 15504 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20861, 20865, 20881, 20929 }, + }, + ["start"] = { + ["U"] = { 15504 }, + }, + }, + [8639] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 15502 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20859, 20863, 20882, 20930 }, + }, + ["start"] = { + ["U"] = { 15502 }, + }, + }, + [8640] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 15503 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20858, 20862, 20875, 20927 }, + }, + ["start"] = { + ["U"] = { 15503 }, + }, + }, + [8641] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 15502 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20860, 20863, 20874, 20928 }, + }, + ["start"] = { + ["U"] = { 15502 }, + }, + }, + [8642] = { + ["end"] = { + ["U"] = { 15558 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["U"] = { 15558 }, + }, + }, + [8643] = { + ["end"] = { + ["U"] = { 15559 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["U"] = { 15559 }, + }, + }, + [8644] = { + ["end"] = { + ["U"] = { 15560 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["U"] = { 15560 }, + }, + }, + [8645] = { + ["end"] = { + ["U"] = { 15561 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["U"] = { 15561 }, + }, + }, + [8646] = { + ["end"] = { + ["U"] = { 15562 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["U"] = { 15562 }, + }, + }, + [8647] = { + ["end"] = { + ["U"] = { 15563 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["U"] = { 15563 }, + }, + }, + [8648] = { + ["end"] = { + ["U"] = { 15564 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["U"] = { 15564 }, + }, + }, + [8649] = { + ["end"] = { + ["U"] = { 15565 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["U"] = { 15565 }, + }, + }, + [8650] = { + ["end"] = { + ["U"] = { 15566 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["U"] = { 15566 }, + }, + }, + [8651] = { + ["end"] = { + ["U"] = { 15567 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["U"] = { 15567 }, + }, + }, + [8652] = { + ["end"] = { + ["U"] = { 15568 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["U"] = { 15568 }, + }, + }, + [8653] = { + ["end"] = { + ["U"] = { 15569 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["U"] = { 15569 }, + }, + }, + [8654] = { + ["end"] = { + ["U"] = { 15570 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["U"] = { 15570 }, + }, + }, + [8655] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 15503 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20861, 20863, 20877, 20932 }, + }, + ["start"] = { + ["U"] = { 15503 }, + }, + }, + [8656] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 15504 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20859, 20863, 20879, 20929 }, + }, + ["start"] = { + ["U"] = { 15504 }, + }, + }, + [8657] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 15502 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20861, 20865, 20881, 20930 }, + }, + ["start"] = { + ["U"] = { 15502 }, + }, + }, + [8658] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 15503 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20860, 20864, 20874, 20931 }, + }, + ["start"] = { + ["U"] = { 15503 }, + }, + }, + [8659] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 15502 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20862, 20865, 20882, 20928 }, + }, + ["start"] = { + ["U"] = { 15502 }, + }, + }, + [8660] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 15503 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20863, 20865, 20875, 20932 }, + }, + ["start"] = { + ["U"] = { 15503 }, + }, + }, + [8661] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 15504 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20858, 20862, 20875, 20933 }, + }, + ["start"] = { + ["U"] = { 15504 }, + }, + }, + [8662] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 15502 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20860, 20864, 20876, 20926 }, + }, + ["start"] = { + ["U"] = { 15502 }, + }, + }, + [8663] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 15503 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20859, 20863, 20878, 20931 }, + }, + ["start"] = { + ["U"] = { 15503 }, + }, + }, + [8664] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 15502 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20861, 20864, 20877, 20932 }, + }, + ["start"] = { + ["U"] = { 15502 }, + }, + }, + [8665] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 15503 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20858, 20860, 20878, 20932 }, + }, + ["start"] = { + ["U"] = { 15503 }, + }, + }, + [8666] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 15504 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20861, 20865, 20878, 20933 }, + }, + ["start"] = { + ["U"] = { 15504 }, + }, + }, + [8667] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 15502 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20859, 20863, 20879, 20930 }, + }, + ["start"] = { + ["U"] = { 15502 }, + }, + }, + [8668] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 15503 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20858, 20862, 20882, 20931 }, + }, + ["start"] = { + ["U"] = { 15503 }, + }, + }, + [8669] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 15502 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20859, 20864, 20881, 20932 }, + }, + ["start"] = { + ["U"] = { 15502 }, + }, + }, + [8670] = { + ["end"] = { + ["U"] = { 15572 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["U"] = { 15572 }, + }, + }, + [8671] = { + ["end"] = { + ["U"] = { 15573 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["U"] = { 15573 }, + }, + }, + [8672] = { + ["end"] = { + ["U"] = { 15574 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["U"] = { 15574 }, + }, + }, + [8673] = { + ["end"] = { + ["U"] = { 15575 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["U"] = { 15575 }, + }, + }, + [8674] = { + ["end"] = { + ["U"] = { 15576 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["U"] = { 15576 }, + }, + }, + [8675] = { + ["end"] = { + ["U"] = { 15577 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["U"] = { 15577 }, + }, + }, + [8676] = { + ["end"] = { + ["U"] = { 15578 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["U"] = { 15578 }, + }, + }, + [8677] = { + ["end"] = { + ["U"] = { 15579 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["U"] = { 15579 }, + }, + }, + [8678] = { + ["end"] = { + ["U"] = { 15580 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["U"] = { 15580 }, + }, + }, + [8679] = { + ["end"] = { + ["U"] = { 15581 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["U"] = { 15581 }, + }, + }, + [8680] = { + ["end"] = { + ["U"] = { 15582 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["U"] = { 15582 }, + }, + }, + [8681] = { + ["end"] = { + ["U"] = { 15583 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["U"] = { 15583 }, + }, + }, + [8682] = { + ["end"] = { + ["U"] = { 15584 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["U"] = { 15584 }, + }, + }, + [8683] = { + ["end"] = { + ["U"] = { 15585 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["U"] = { 15585 }, + }, + }, + [8684] = { + ["end"] = { + ["U"] = { 15586 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["U"] = { 15586 }, + }, + }, + [8685] = { + ["end"] = { + ["U"] = { 15587 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["U"] = { 15587 }, + }, + }, + [8686] = { + ["end"] = { + ["U"] = { 15588 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["U"] = { 15588 }, + }, + }, + [8687] = { + ["end"] = { + ["U"] = { 15181 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 11726 }, + }, + ["start"] = { + ["I"] = { 21251 }, + }, + }, + [8688] = { + ["end"] = { + ["U"] = { 15592 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["U"] = { 15592 }, + }, + }, + [8689] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 15500 }, + }, + ["event"] = 86, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20859, 20863, 20870, 20885 }, + }, + ["start"] = { + ["U"] = { 15500 }, + }, + }, + [8690] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 15500 }, + }, + ["event"] = 86, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20859, 20863, 20871, 20889 }, + }, + ["start"] = { + ["U"] = { 15500 }, + }, + }, + [8691] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 15500 }, + }, + ["event"] = 86, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20858, 20862, 20873, 20885 }, + }, + ["start"] = { + ["U"] = { 15500 }, + }, + }, + [8692] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 15500 }, + }, + ["event"] = 86, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20860, 20864, 20872, 20889 }, + }, + ["start"] = { + ["U"] = { 15500 }, + }, + }, + [8693] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 15500 }, + }, + ["event"] = 86, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20861, 20865, 20866, 20885 }, + }, + ["start"] = { + ["U"] = { 15500 }, + }, + }, + [8694] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 15500 }, + }, + ["event"] = 86, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20861, 20865, 20869, 20889 }, + }, + ["start"] = { + ["U"] = { 15500 }, + }, + }, + [8695] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 15500 }, + }, + ["event"] = 86, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20859, 20863, 20871, 20889 }, + }, + ["start"] = { + ["U"] = { 15500 }, + }, + }, + [8696] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 15500 }, + }, + ["event"] = 86, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20858, 20862, 20868, 20889 }, + }, + ["start"] = { + ["U"] = { 15500 }, + }, + }, + [8697] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 15498 }, + }, + ["event"] = 86, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20860, 20864, 20871, 20888 }, + }, + ["start"] = { + ["U"] = { 15498 }, + }, + }, + [8698] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 15498 }, + }, + ["event"] = 86, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20860, 20864, 20872, 20884 }, + }, + ["start"] = { + ["U"] = { 15498 }, + }, + }, + [8699] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 15498 }, + }, + ["event"] = 86, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20859, 20863, 20866, 20884 }, + }, + ["start"] = { + ["U"] = { 15498 }, + }, + }, + [8700] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 15498 }, + }, + ["event"] = 86, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20861, 20865, 20873, 20884 }, + }, + ["start"] = { + ["U"] = { 15498 }, + }, + }, + [8701] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 15498 }, + }, + ["event"] = 86, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20858, 20862, 20867, 20888 }, + }, + ["start"] = { + ["U"] = { 15498 }, + }, + }, + [8702] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 15498 }, + }, + ["event"] = 86, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20858, 20862, 20870, 20888 }, + }, + ["start"] = { + ["U"] = { 15498 }, + }, + }, + [8703] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 15498 }, + }, + ["event"] = 86, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20860, 20864, 20872, 20884 }, + }, + ["start"] = { + ["U"] = { 15498 }, + }, + }, + [8704] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 15498 }, + }, + ["event"] = 86, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20859, 20863, 20869, 20888 }, + }, + ["start"] = { + ["U"] = { 15498 }, + }, + }, + [8705] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 15499 }, + }, + ["event"] = 86, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20861, 20865, 20868, 20890 }, + }, + ["start"] = { + ["U"] = { 15499 }, + }, + }, + [8706] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 15499 }, + }, + ["event"] = 86, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20861, 20865, 20869, 20886 }, + }, + ["start"] = { + ["U"] = { 15499 }, + }, + }, + [8707] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 15499 }, + }, + ["event"] = 86, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20860, 20864, 20871, 20890 }, + }, + ["start"] = { + ["U"] = { 15499 }, + }, + }, + [8708] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 15499 }, + }, + ["event"] = 86, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20858, 20862, 20870, 20890 }, + }, + ["start"] = { + ["U"] = { 15499 }, + }, + }, + [8709] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 15499 }, + }, + ["event"] = 86, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20859, 20863, 20872, 20886 }, + }, + ["start"] = { + ["U"] = { 15499 }, + }, + }, + [8710] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 15499 }, + }, + ["event"] = 86, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20859, 20863, 20867, 20890 }, + }, + ["start"] = { + ["U"] = { 15499 }, + }, + }, + [8711] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 15499 }, + }, + ["event"] = 86, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20861, 20865, 20869, 20886 }, + }, + ["start"] = { + ["U"] = { 15499 }, + }, + }, + [8712] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 15499 }, + }, + ["event"] = 86, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20860, 20864, 20866, 20886 }, + }, + ["start"] = { + ["U"] = { 15499 }, + }, + }, + [8713] = { + ["end"] = { + ["U"] = { 15593 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["U"] = { 15593 }, + }, + }, + [8714] = { + ["end"] = { + ["U"] = { 15594 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["U"] = { 15594 }, + }, + }, + [8715] = { + ["end"] = { + ["U"] = { 15595 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["U"] = { 15595 }, + }, + }, + [8716] = { + ["end"] = { + ["U"] = { 15596 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["U"] = { 15596 }, + }, + }, + [8717] = { + ["end"] = { + ["U"] = { 15597 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["U"] = { 15597 }, + }, + }, + [8718] = { + ["end"] = { + ["U"] = { 15598 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["U"] = { 15598 }, + }, + }, + [8719] = { + ["end"] = { + ["U"] = { 15599 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["U"] = { 15599 }, + }, + }, + [8720] = { + ["end"] = { + ["U"] = { 15600 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["U"] = { 15600 }, + }, + }, + [8721] = { + ["end"] = { + ["U"] = { 15601 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["U"] = { 15601 }, + }, + }, + [8722] = { + ["end"] = { + ["U"] = { 15602 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["U"] = { 15602 }, + }, + }, + [8723] = { + ["end"] = { + ["U"] = { 15603 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["U"] = { 15603 }, + }, + }, + [8724] = { + ["end"] = { + ["U"] = { 15604 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["U"] = { 15604 }, + }, + }, + [8725] = { + ["end"] = { + ["U"] = { 15605 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["U"] = { 15605 }, + }, + }, + [8726] = { + ["end"] = { + ["U"] = { 15606 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["U"] = { 15606 }, + }, + }, + [8727] = { + ["end"] = { + ["U"] = { 15607 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["U"] = { 15607 }, + }, + }, + [8728] = { + ["end"] = { + ["U"] = { 11811 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12360, 12361, 12800, 18562 }, + }, + ["pre"] = { 8578, 8587, 8620 }, + ["start"] = { + ["U"] = { 11811 }, + }, + }, + [8729] = { + ["end"] = { + ["U"] = { 15192 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 21137 }, + ["IR"] = { 21136 }, + }, + ["pre"] = { 8728 }, + ["start"] = { + ["U"] = { 11811 }, + }, + }, + [8730] = { + ["end"] = { + ["U"] = { 15192 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 21138, 21142 }, + }, + ["pre"] = { 8555 }, + ["start"] = { + ["U"] = { 13020 }, + }, + }, + [8731] = { + ["end"] = { + ["U"] = { 15540 }, + }, + ["event"] = 86, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20810 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 15540 }, + }, + }, + [8732] = { + ["end"] = { + ["U"] = { 15612 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 21143 }, + }, + ["pre"] = { 8731 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 15612 }, + }, + }, + [8733] = { + ["end"] = { + ["U"] = { 15624 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 8555 }, + ["start"] = { + ["U"] = { 15362 }, + }, + }, + [8734] = { + ["end"] = { + ["U"] = { 11832 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 8733 }, + ["start"] = { + ["U"] = { 15624 }, + }, + }, + [8735] = { + ["end"] = { + ["U"] = { 11832 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 21146, 21147, 21148, 21149 }, + }, + ["pre"] = { 8734 }, + ["start"] = { + ["U"] = { 11832 }, + }, + }, + [8736] = { + ["end"] = { + ["U"] = { 11832 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 8735 }, + ["start"] = { + ["U"] = { 11832 }, + }, + }, + [8737] = { + ["end"] = { + ["U"] = { 15306 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 15211 }, + }, + ["start"] = { + ["I"] = { 21245 }, + }, + }, + [8738] = { + ["end"] = { + ["U"] = { 15191 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 21160 }, + }, + ["start"] = { + ["I"] = { 21166 }, + }, + }, + [8739] = { + ["end"] = { + ["U"] = { 15191 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 21161 }, + }, + ["start"] = { + ["I"] = { 21167 }, + }, + }, + [8740] = { + ["end"] = { + ["U"] = { 15191 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 15541, 15542 }, + }, + ["start"] = { + ["I"] = { 20944 }, + }, + }, + [8741] = { + ["end"] = { + ["U"] = { 15192 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 8736 }, + ["start"] = { + ["U"] = { 11832 }, + }, + }, + [8742] = { + ["end"] = { + ["U"] = { 15192 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 8729, 8730, 8741 }, + ["start"] = { + ["U"] = { 15192 }, + }, + }, + [8743] = { + ["end"] = { + ["O"] = { 180717 }, + }, + ["event"] = 85, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 21175 }, + }, + ["pre"] = { 8742 }, + ["start"] = { + ["O"] = { 180717 }, + }, + }, + [8744] = { + ["end"] = { + ["O"] = { 180743 }, + }, + ["event"] = 21, + ["lvl"] = 1, + ["min"] = 1, + ["start"] = { + ["O"] = { 180743 }, + }, + }, + [8745] = { + ["end"] = { + ["U"] = { 15693 }, + }, + ["event"] = 86, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 8742 }, + ["start"] = { + ["U"] = { 15693 }, + }, + }, + [8746] = { + ["end"] = { + ["U"] = { 13418 }, + }, + ["event"] = 2, + ["lvl"] = 60, + ["min"] = 40, + ["obj"] = { + ["I"] = { 21211 }, + ["U"] = { 15664 }, + }, + ["start"] = { + ["U"] = { 13418 }, + }, + }, + [8747] = { + ["close"] = { 8747, 8752, 8757 }, + ["end"] = { + ["U"] = { 15192 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["start"] = { + ["U"] = { 15192 }, + }, + }, + [8748] = { + ["close"] = { 8748, 8753, 8758 }, + ["end"] = { + ["U"] = { 15192 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 21196 }, + }, + ["pre"] = { 8747 }, + ["start"] = { + ["U"] = { 15192 }, + }, + }, + [8749] = { + ["close"] = { 8749, 8754, 8759 }, + ["end"] = { + ["U"] = { 15192 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 21197 }, + }, + ["pre"] = { 8748 }, + ["start"] = { + ["U"] = { 15192 }, + }, + }, + [8750] = { + ["close"] = { 8750, 8755, 8760 }, + ["end"] = { + ["U"] = { 15192 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 21198 }, + }, + ["pre"] = { 8749 }, + ["start"] = { + ["U"] = { 15192 }, + }, + }, + [8751] = { + ["close"] = { 8751, 8756, 8761 }, + ["end"] = { + ["U"] = { 15192 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 21199 }, + }, + ["pre"] = { 8750 }, + ["start"] = { + ["U"] = { 15192 }, + }, + }, + [8752] = { + ["close"] = { 8747, 8752, 8757 }, + ["end"] = { + ["U"] = { 15192 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["start"] = { + ["U"] = { 15192 }, + }, + }, + [8753] = { + ["close"] = { 8748, 8753, 8758 }, + ["end"] = { + ["U"] = { 15192 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 21201 }, + }, + ["pre"] = { 8752 }, + ["start"] = { + ["U"] = { 15192 }, + }, + }, + [8754] = { + ["close"] = { 8749, 8754, 8759 }, + ["end"] = { + ["U"] = { 15192 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 21202 }, + }, + ["pre"] = { 8753 }, + ["start"] = { + ["U"] = { 15192 }, + }, + }, + [8755] = { + ["close"] = { 8750, 8755, 8760 }, + ["end"] = { + ["U"] = { 15192 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 21203 }, + }, + ["pre"] = { 8754 }, + ["start"] = { + ["U"] = { 15192 }, + }, + }, + [8756] = { + ["close"] = { 8751, 8756, 8761 }, + ["end"] = { + ["U"] = { 15192 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 21204 }, + }, + ["pre"] = { 8755 }, + ["start"] = { + ["U"] = { 15192 }, + }, + }, + [8757] = { + ["close"] = { 8747, 8752, 8757 }, + ["end"] = { + ["U"] = { 15192 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["start"] = { + ["U"] = { 15192 }, + }, + }, + [8758] = { + ["close"] = { 8748, 8753, 8758 }, + ["end"] = { + ["U"] = { 15192 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 21206 }, + }, + ["pre"] = { 8757 }, + ["start"] = { + ["U"] = { 15192 }, + }, + }, + [8759] = { + ["close"] = { 8749, 8754, 8759 }, + ["end"] = { + ["U"] = { 15192 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 21207 }, + }, + ["pre"] = { 8758 }, + ["start"] = { + ["U"] = { 15192 }, + }, + }, + [8760] = { + ["close"] = { 8750, 8755, 8760 }, + ["end"] = { + ["U"] = { 15192 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 21208 }, + }, + ["pre"] = { 8759 }, + ["start"] = { + ["U"] = { 15192 }, + }, + }, + [8761] = { + ["close"] = { 8751, 8756, 8761 }, + ["end"] = { + ["U"] = { 15192 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 21209 }, + }, + ["pre"] = { 8760 }, + ["start"] = { + ["U"] = { 15192 }, + }, + }, + [8762] = { + ["end"] = { + ["U"] = { 13433 }, + }, + ["event"] = 2, + ["lvl"] = 60, + ["min"] = 40, + ["obj"] = { + ["I"] = { 21211 }, + ["U"] = { 15664 }, + }, + ["start"] = { + ["U"] = { 13433 }, + }, + }, + [8763] = { + ["end"] = { + ["O"] = { 180715 }, + }, + ["event"] = 2, + ["lvl"] = 60, + ["min"] = 40, + ["obj"] = { + ["I"] = { 8150 }, + }, + ["pre"] = { 8762 }, + ["skill"] = 185, + ["start"] = { + ["U"] = { 13433 }, + }, + }, + [8764] = { + ["end"] = { + ["U"] = { 15192 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20858, 20859, 20860, 21200 }, + }, + ["pre"] = { 8751 }, + ["start"] = { + ["U"] = { 15192 }, + }, + }, + [8765] = { + ["end"] = { + ["U"] = { 15192 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20861, 20862, 20863, 21210 }, + }, + ["pre"] = { 8761 }, + ["start"] = { + ["U"] = { 15192 }, + }, + }, + [8766] = { + ["end"] = { + ["U"] = { 15192 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20858, 20864, 20865, 21205 }, + }, + ["pre"] = { 8756 }, + ["start"] = { + ["U"] = { 15192 }, + }, + }, + [8767] = { + ["class"] = 9, + ["end"] = { + ["O"] = { 180746 }, + }, + ["event"] = 21, + ["lvl"] = 1, + ["min"] = 1, + ["start"] = { + ["O"] = { 180746 }, + }, + }, + [8768] = { + ["end"] = { + ["O"] = { 180747 }, + }, + ["event"] = 21, + ["lvl"] = 20, + ["min"] = 20, + ["start"] = { + ["O"] = { 180747 }, + }, + }, + [8769] = { + ["end"] = { + ["O"] = { 180748 }, + }, + ["event"] = 21, + ["lvl"] = 40, + ["min"] = 40, + ["start"] = { + ["O"] = { 180748 }, + }, + }, + [8770] = { + ["end"] = { + ["U"] = { 15181 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 11722 }, + }, + ["start"] = { + ["I"] = { 21749 }, + }, + }, + [8771] = { + ["end"] = { + ["U"] = { 15181 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 11723 }, + }, + ["start"] = { + ["I"] = { 21750 }, + }, + }, + [8772] = { + ["end"] = { + ["U"] = { 15181 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 11725 }, + }, + ["start"] = { + ["I"] = { 21250 }, + }, + }, + [8773] = { + ["end"] = { + ["U"] = { 15181 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 11728 }, + }, + ["start"] = { + ["I"] = { 21248 }, + }, + }, + [8774] = { + ["end"] = { + ["U"] = { 15181 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 11730 }, + }, + ["start"] = { + ["I"] = { 21252 }, + }, + }, + [8775] = { + ["end"] = { + ["U"] = { 15181 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 11732 }, + }, + ["start"] = { + ["I"] = { 21253 }, + }, + }, + [8776] = { + ["end"] = { + ["U"] = { 15181 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 11733 }, + }, + ["start"] = { + ["I"] = { 21255 }, + }, + }, + [8777] = { + ["end"] = { + ["U"] = { 15181 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 11731 }, + }, + ["start"] = { + ["I"] = { 21256 }, + }, + }, + [8778] = { + ["end"] = { + ["U"] = { 15444 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 8956, 9061, 15992 }, + }, + ["start"] = { + ["I"] = { 21257 }, + }, + }, + [8779] = { + ["end"] = { + ["U"] = { 15183 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 11178, 12364, 14344 }, + }, + ["start"] = { + ["I"] = { 21259 }, + }, + }, + [8780] = { + ["end"] = { + ["U"] = { 15443 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 4265, 15564 }, + }, + ["start"] = { + ["I"] = { 21263 }, + }, + }, + [8781] = { + ["end"] = { + ["U"] = { 15443 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 3853 }, + }, + ["start"] = { + ["I"] = { 21260 }, + }, + }, + [8782] = { + ["end"] = { + ["U"] = { 15191 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 14048, 14227, 14342 }, + }, + ["start"] = { + ["I"] = { 21262 }, + }, + }, + [8783] = { + ["end"] = { + ["U"] = { 15176 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12655, 12810 }, + }, + ["start"] = { + ["I"] = { 21265 }, + }, + }, + [8784] = { + ["end"] = { + ["U"] = { 15502 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["start"] = { + ["I"] = { 21230 }, + }, + }, + [8785] = { + ["end"] = { + ["U"] = { 15615 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 8152, 8956, 12804 }, + }, + ["start"] = { + ["I"] = { 21258 }, + }, + }, + [8786] = { + ["end"] = { + ["U"] = { 15613 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 3855 }, + }, + ["start"] = { + ["I"] = { 21261 }, + }, + }, + [8787] = { + ["end"] = { + ["U"] = { 15613 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 4265, 15564 }, + }, + ["start"] = { + ["I"] = { 21264 }, + }, + }, + [8788] = { + ["class"] = 1494, + ["end"] = { + ["O"] = { 180746 }, + }, + ["event"] = 21, + ["lvl"] = 1, + ["min"] = 1, + ["start"] = { + ["O"] = { 180746 }, + }, + }, + [8789] = { + ["end"] = { + ["U"] = { 15380 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 18562, 21232 }, + }, + ["start"] = { + ["U"] = { 15380 }, + }, + }, + [8790] = { + ["end"] = { + ["U"] = { 15378 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 18562, 21237 }, + }, + ["start"] = { + ["U"] = { 15378 }, + }, + }, + [8791] = { + ["end"] = { + ["U"] = { 15181 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["start"] = { + ["I"] = { 21220 }, + }, + }, + [8792] = { + ["close"] = { 8792, 8793, 8794 }, + ["end"] = { + ["U"] = { 15700 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["U"] = { 15702, 15703, 15704 }, + }, + }, + [8793] = { + ["close"] = { 8792, 8793, 8794 }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + }, + [8794] = { + ["close"] = { 8792, 8793, 8794 }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + }, + [8795] = { + ["close"] = { 8795, 8796, 8797 }, + ["end"] = { + ["U"] = { 15701 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["U"] = { 15707, 15708, 15709 }, + }, + }, + [8796] = { + ["close"] = { 8795, 8796, 8797 }, + ["end"] = { + ["U"] = { 15701 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + }, + [8797] = { + ["close"] = { 8795, 8796, 8797 }, + ["end"] = { + ["U"] = { 15701 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + }, + [8798] = { + ["end"] = { + ["U"] = { 10305 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["pre"] = { 5163 }, + ["skill"] = 202, + ["start"] = { + ["U"] = { 10305 }, + }, + }, + [8799] = { + ["end"] = { + ["O"] = { 180715 }, + }, + ["event"] = 2, + ["lvl"] = 60, + ["min"] = 40, + ["obj"] = { + ["I"] = { 8150 }, + }, + ["pre"] = { 8746 }, + ["skill"] = 185, + ["start"] = { + ["U"] = { 13418 }, + }, + }, + [8800] = { + ["end"] = { + ["U"] = { 15176 }, + }, + ["event"] = 86, + ["lvl"] = 60, + ["min"] = 60, + ["start"] = { + ["U"] = { 15540 }, + }, + }, + [8801] = { + ["end"] = { + ["U"] = { 15379 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["start"] = { + ["I"] = { 21221 }, + }, + }, + [8802] = { + ["end"] = { + ["U"] = { 15192 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 8801 }, + ["start"] = { + ["U"] = { 15379 }, + }, + }, + [8803] = { + ["end"] = { + ["O"] = { 180793 }, + }, + ["event"] = 21, + ["lvl"] = 10, + ["min"] = 10, + ["start"] = { + ["O"] = { 180793 }, + }, + }, + [8804] = { + ["end"] = { + ["U"] = { 15174 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 7079, 19440, 20452 }, + }, + ["start"] = { + ["I"] = { 21378 }, + }, + }, + [8805] = { + ["end"] = { + ["U"] = { 15182 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 7936 }, + }, + ["start"] = { + ["I"] = { 21379 }, + }, + }, + [8806] = { + ["end"] = { + ["U"] = { 15182 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 3486, 7966, 12644 }, + }, + ["start"] = { + ["I"] = { 21380 }, + }, + }, + [8807] = { + ["end"] = { + ["U"] = { 15183 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 11178, 12364, 14344 }, + }, + ["start"] = { + ["I"] = { 21382 }, + }, + }, + [8808] = { + ["end"] = { + ["U"] = { 15191 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 14048, 14227, 14342 }, + }, + ["start"] = { + ["I"] = { 21384 }, + }, + }, + [8809] = { + ["end"] = { + ["U"] = { 15176 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12655, 12810 }, + }, + ["start"] = { + ["I"] = { 21381 }, + }, + }, + [8810] = { + ["end"] = { + ["U"] = { 15191 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 6451, 8545, 14530 }, + }, + ["start"] = { + ["I"] = { 21385 }, + }, + }, + [8811] = { + ["end"] = { + ["U"] = { 15762 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21436 }, + }, + ["pre"] = { 8795 }, + ["start"] = { + ["U"] = { 15762 }, + }, + }, + [8812] = { + ["end"] = { + ["U"] = { 15763 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21436 }, + }, + ["pre"] = { 8795 }, + ["start"] = { + ["U"] = { 15763 }, + }, + }, + [8813] = { + ["end"] = { + ["U"] = { 15764 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21436 }, + }, + ["pre"] = { 8795 }, + ["start"] = { + ["U"] = { 15764 }, + }, + }, + [8814] = { + ["end"] = { + ["U"] = { 15766 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21436 }, + }, + ["pre"] = { 8795 }, + ["start"] = { + ["U"] = { 15766 }, + }, + }, + [8815] = { + ["end"] = { + ["U"] = { 15765 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21438 }, + }, + ["pre"] = { 8792 }, + ["start"] = { + ["U"] = { 15765 }, + }, + }, + [8816] = { + ["end"] = { + ["U"] = { 15761 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21438 }, + }, + ["pre"] = { 8792 }, + ["start"] = { + ["U"] = { 15761 }, + }, + }, + [8817] = { + ["end"] = { + ["U"] = { 15768 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21438 }, + }, + ["pre"] = { 8792 }, + ["start"] = { + ["U"] = { 15768 }, + }, + }, + [8818] = { + ["end"] = { + ["U"] = { 15767 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21438 }, + }, + ["pre"] = { 8792 }, + ["start"] = { + ["U"] = { 15767 }, + }, + }, + [8819] = { + ["end"] = { + ["U"] = { 15762 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21436 }, + }, + ["pre"] = { 8795 }, + ["start"] = { + ["U"] = { 15762 }, + }, + }, + [8820] = { + ["end"] = { + ["U"] = { 15763 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21436 }, + }, + ["pre"] = { 8795 }, + ["start"] = { + ["U"] = { 15763 }, + }, + }, + [8821] = { + ["end"] = { + ["U"] = { 15764 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21436 }, + }, + ["pre"] = { 8795 }, + ["start"] = { + ["U"] = { 15764 }, + }, + }, + [8822] = { + ["end"] = { + ["U"] = { 15766 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21436 }, + }, + ["pre"] = { 8795 }, + ["start"] = { + ["U"] = { 15766 }, + }, + }, + [8823] = { + ["end"] = { + ["U"] = { 15765 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21438 }, + }, + ["pre"] = { 8792 }, + ["start"] = { + ["U"] = { 15765 }, + }, + }, + [8824] = { + ["end"] = { + ["U"] = { 15761 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21438 }, + }, + ["pre"] = { 8792 }, + ["start"] = { + ["U"] = { 15761 }, + }, + }, + [8825] = { + ["end"] = { + ["U"] = { 15767 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21438 }, + }, + ["pre"] = { 8792 }, + ["start"] = { + ["U"] = { 15767 }, + }, + }, + [8826] = { + ["end"] = { + ["U"] = { 15768 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21438 }, + }, + ["pre"] = { 8792 }, + ["start"] = { + ["U"] = { 15768 }, + }, + }, + [8827] = { + ["end"] = { + ["U"] = { 13444 }, + }, + ["event"] = 21, + ["lvl"] = 1, + ["min"] = 1, + ["race"] = 77, + ["start"] = { + ["U"] = { 15732 }, + }, + }, + [8828] = { + ["end"] = { + ["U"] = { 13445 }, + }, + ["event"] = 21, + ["lvl"] = 1, + ["min"] = 1, + ["race"] = 178, + ["start"] = { + ["U"] = { 15732 }, + }, + }, + [8829] = { + ["end"] = { + ["U"] = { 15282 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12735, 12753, 20407 }, + }, + ["start"] = { + ["I"] = { 21514 }, + }, + }, + [8830] = { + ["end"] = { + ["U"] = { 15731 }, + }, + ["event"] = 52, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21436 }, + }, + ["pre"] = { 8795 }, + ["start"] = { + ["U"] = { 15731 }, + }, + }, + [8831] = { + ["end"] = { + ["U"] = { 15731 }, + }, + ["event"] = 52, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21436 }, + }, + ["pre"] = { 8795 }, + ["start"] = { + ["U"] = { 15731 }, + }, + }, + [8832] = { + ["end"] = { + ["U"] = { 15738 }, + }, + ["event"] = 52, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21438 }, + }, + ["pre"] = { 8792 }, + ["start"] = { + ["U"] = { 15738 }, + }, + }, + [8833] = { + ["end"] = { + ["U"] = { 15738 }, + }, + ["event"] = 52, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21438 }, + }, + ["pre"] = { 8792 }, + ["start"] = { + ["U"] = { 15738 }, + }, + }, + [8834] = { + ["end"] = { + ["U"] = { 15734 }, + }, + ["event"] = 52, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21436 }, + }, + ["pre"] = { 8795 }, + ["start"] = { + ["U"] = { 15734 }, + }, + }, + [8835] = { + ["end"] = { + ["U"] = { 15734 }, + }, + ["event"] = 52, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21436 }, + }, + ["pre"] = { 8795 }, + ["start"] = { + ["U"] = { 15734 }, + }, + }, + [8836] = { + ["end"] = { + ["U"] = { 15735 }, + }, + ["event"] = 52, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21436 }, + }, + ["pre"] = { 8795 }, + ["start"] = { + ["U"] = { 15735 }, + }, + }, + [8837] = { + ["end"] = { + ["U"] = { 15735 }, + }, + ["event"] = 52, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21436 }, + }, + ["pre"] = { 8795 }, + ["start"] = { + ["U"] = { 15735 }, + }, + }, + [8838] = { + ["end"] = { + ["U"] = { 15733 }, + }, + ["event"] = 52, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21436 }, + }, + ["pre"] = { 8795 }, + ["start"] = { + ["U"] = { 15733 }, + }, + }, + [8839] = { + ["end"] = { + ["U"] = { 15733 }, + }, + ["event"] = 52, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21436 }, + }, + ["pre"] = { 8795 }, + ["start"] = { + ["U"] = { 15733 }, + }, + }, + [8840] = { + ["end"] = { + ["U"] = { 15736 }, + }, + ["event"] = 52, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21438 }, + }, + ["pre"] = { 8792 }, + ["start"] = { + ["U"] = { 15736 }, + }, + }, + [8841] = { + ["end"] = { + ["U"] = { 15736 }, + }, + ["event"] = 52, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21438 }, + }, + ["pre"] = { 8792 }, + ["start"] = { + ["U"] = { 15736 }, + }, + }, + [8842] = { + ["end"] = { + ["U"] = { 15739 }, + }, + ["event"] = 52, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21438 }, + }, + ["pre"] = { 8792 }, + ["start"] = { + ["U"] = { 15739 }, + }, + }, + [8843] = { + ["end"] = { + ["U"] = { 15739 }, + }, + ["event"] = 52, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21438 }, + }, + ["pre"] = { 8792 }, + ["start"] = { + ["U"] = { 15739 }, + }, + }, + [8844] = { + ["end"] = { + ["U"] = { 15737 }, + }, + ["event"] = 52, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21438 }, + }, + ["pre"] = { 8792 }, + ["start"] = { + ["U"] = { 15737 }, + }, + }, + [8845] = { + ["end"] = { + ["U"] = { 15737 }, + }, + ["event"] = 52, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21438 }, + }, + ["pre"] = { 8792 }, + ["start"] = { + ["U"] = { 15737 }, + }, + }, + [8846] = { + ["end"] = { + ["U"] = { 15701 }, + }, + ["event"] = 22, + ["lvl"] = 19, + ["min"] = 10, + ["obj"] = { + ["I"] = { 21436 }, + }, + ["pre"] = { 8795 }, + ["start"] = { + ["U"] = { 15701 }, + }, + }, + [8847] = { + ["end"] = { + ["U"] = { 15701 }, + }, + ["event"] = 22, + ["lvl"] = 29, + ["min"] = 20, + ["obj"] = { + ["I"] = { 21436 }, + }, + ["pre"] = { 8795 }, + ["start"] = { + ["U"] = { 15701 }, + }, + }, + [8848] = { + ["end"] = { + ["U"] = { 15701 }, + }, + ["event"] = 22, + ["lvl"] = 39, + ["min"] = 30, + ["obj"] = { + ["I"] = { 21436 }, + }, + ["pre"] = { 8795 }, + ["start"] = { + ["U"] = { 15701 }, + }, + }, + [8849] = { + ["end"] = { + ["U"] = { 15701 }, + }, + ["event"] = 22, + ["lvl"] = 49, + ["min"] = 40, + ["obj"] = { + ["I"] = { 21436 }, + }, + ["pre"] = { 8795 }, + ["start"] = { + ["U"] = { 15701 }, + }, + }, + [8850] = { + ["end"] = { + ["U"] = { 15701 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 21436 }, + }, + ["pre"] = { 8795 }, + ["start"] = { + ["U"] = { 15701 }, + }, + }, + [8851] = { + ["end"] = { + ["U"] = { 15700 }, + }, + ["event"] = 22, + ["lvl"] = 19, + ["min"] = 10, + ["obj"] = { + ["I"] = { 21438 }, + }, + ["pre"] = { 8792 }, + ["start"] = { + ["U"] = { 15700 }, + }, + }, + [8852] = { + ["end"] = { + ["U"] = { 15700 }, + }, + ["event"] = 22, + ["lvl"] = 29, + ["min"] = 20, + ["obj"] = { + ["I"] = { 21438 }, + }, + ["pre"] = { 8792 }, + ["start"] = { + ["U"] = { 15700 }, + }, + }, + [8853] = { + ["end"] = { + ["U"] = { 15700 }, + }, + ["event"] = 22, + ["lvl"] = 39, + ["min"] = 30, + ["obj"] = { + ["I"] = { 21438 }, + }, + ["pre"] = { 8792 }, + ["start"] = { + ["U"] = { 15700 }, + }, + }, + [8854] = { + ["end"] = { + ["U"] = { 15700 }, + }, + ["event"] = 22, + ["lvl"] = 49, + ["min"] = 40, + ["obj"] = { + ["I"] = { 21438 }, + }, + ["pre"] = { 8792 }, + ["start"] = { + ["U"] = { 15700 }, + }, + }, + [8855] = { + ["end"] = { + ["U"] = { 15700 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 21438 }, + }, + ["pre"] = { 8792 }, + ["start"] = { + ["U"] = { 15700 }, + }, + }, + [8856] = { + ["obj"] = { + ["I"] = { 7079, 19440, 20452 }, + }, + }, + [8857] = { + ["end"] = { + ["U"] = { 7406 }, + }, + ["event"] = 62, + ["lvl"] = 60, + ["min"] = 51, + ["start"] = { + ["U"] = { 15798 }, + }, + }, + [8858] = { + ["end"] = { + ["U"] = { 14625 }, + }, + ["event"] = 63, + ["lvl"] = 60, + ["min"] = 51, + ["start"] = { + ["U"] = { 15799 }, + }, + }, + [8859] = { + ["end"] = { + ["U"] = { 11034 }, + }, + ["event"] = 64, + ["lvl"] = 60, + ["min"] = 51, + ["start"] = { + ["U"] = { 15797 }, + }, + }, + [8860] = { + ["end"] = { + ["U"] = { 6740 }, + }, + ["event"] = 34, + ["lvl"] = 60, + ["min"] = 1, + ["race"] = 77, + ["start"] = { + ["U"] = { 15732 }, + }, + }, + [8861] = { + ["end"] = { + ["U"] = { 6746 }, + }, + ["event"] = 34, + ["lvl"] = 60, + ["min"] = 1, + ["race"] = 178, + ["start"] = { + ["U"] = { 15732 }, + }, + }, + [8862] = { + ["end"] = { + ["U"] = { 15864 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 10, + ["obj"] = { + ["I"] = { 21100 }, + }, + ["start"] = { + ["U"] = { 15864 }, + }, + }, + [8863] = { + ["end"] = { + ["U"] = { 15864 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21100 }, + }, + ["start"] = { + ["U"] = { 15864 }, + }, + }, + [8864] = { + ["end"] = { + ["U"] = { 15864 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21100 }, + }, + ["start"] = { + ["U"] = { 15864 }, + }, + }, + [8865] = { + ["end"] = { + ["U"] = { 15864 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21100 }, + }, + ["start"] = { + ["U"] = { 15864 }, + }, + }, + [8866] = { + ["end"] = { + ["U"] = { 15871 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["U"] = { 15871 }, + }, + }, + [8867] = { + ["end"] = { + ["U"] = { 15895 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["U"] = { 15893, 15894 }, + }, + ["pre"] = { 8870, 8871, 8872, 8873, 8874, 8875 }, + ["start"] = { + ["U"] = { 15895 }, + }, + }, + [8868] = { + ["end"] = { + ["U"] = { 15864 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 40, + ["start"] = { + ["U"] = { 15864 }, + }, + }, + [8869] = { + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 13351 }, + }, + ["skill"] = 164, + }, + [8870] = { + ["close"] = { 8870, 8871, 8872, 8873, 8874, 8875 }, + ["end"] = { + ["U"] = { 15895 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["race"] = 77, + ["start"] = { + ["U"] = { 15892 }, + }, + }, + [8871] = { + ["close"] = { 8870, 8871, 8872, 8873, 8874, 8875 }, + ["end"] = { + ["U"] = { 15895 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["race"] = 77, + ["start"] = { + ["U"] = { 15892 }, + }, + }, + [8872] = { + ["close"] = { 8870, 8871, 8872, 8873, 8874, 8875 }, + ["end"] = { + ["U"] = { 15895 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["race"] = 77, + ["start"] = { + ["U"] = { 15892 }, + }, + }, + [8873] = { + ["close"] = { 8870, 8871, 8872, 8873, 8874, 8875 }, + ["end"] = { + ["U"] = { 15895 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["race"] = 178, + ["start"] = { + ["U"] = { 15891 }, + }, + }, + [8874] = { + ["close"] = { 8870, 8871, 8872, 8873, 8874, 8875 }, + ["end"] = { + ["U"] = { 15895 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["race"] = 178, + ["start"] = { + ["U"] = { 15891 }, + }, + }, + [8875] = { + ["close"] = { 8870, 8871, 8872, 8873, 8874, 8875 }, + ["end"] = { + ["U"] = { 15895 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["race"] = 178, + ["start"] = { + ["U"] = { 15891 }, + }, + }, + [8876] = { + ["end"] = { + ["U"] = { 15909 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 25, + ["obj"] = { + ["I"] = { 21100 }, + }, + ["start"] = { + ["U"] = { 15909 }, + }, + }, + [8877] = { + ["end"] = { + ["U"] = { 15909 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 45, + ["obj"] = { + ["I"] = { 21100 }, + }, + ["start"] = { + ["U"] = { 15909 }, + }, + }, + [8878] = { + ["end"] = { + ["U"] = { 15909 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 21100 }, + }, + ["start"] = { + ["U"] = { 15909 }, + }, + }, + [8879] = { + ["end"] = { + ["U"] = { 15909 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 35, + ["obj"] = { + ["I"] = { 21100 }, + }, + ["start"] = { + ["U"] = { 15909 }, + }, + }, + [8880] = { + ["end"] = { + ["U"] = { 15909 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 45, + ["obj"] = { + ["I"] = { 21100 }, + }, + ["start"] = { + ["U"] = { 15909 }, + }, + }, + [8881] = { + ["end"] = { + ["U"] = { 15909 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 21100 }, + }, + ["start"] = { + ["U"] = { 15909 }, + }, + }, + [8882] = { + ["end"] = { + ["U"] = { 15909 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 21100 }, + }, + ["start"] = { + ["U"] = { 15909 }, + }, + }, + [8883] = { + ["end"] = { + ["U"] = { 15864 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["pre"] = { 8867 }, + ["start"] = { + ["U"] = { 15895 }, + }, + }, + [8893] = { + ["end"] = { + ["O"] = { 142071 }, + }, + ["lvl"] = 47, + ["min"] = 42, + ["obj"] = { + ["I"] = { 8564 }, + }, + ["pre"] = { 2741 }, + ["start"] = { + ["O"] = { 142071 }, + }, + }, + [8897] = { + ["close"] = { 8897, 8898, 8899 }, + ["end"] = { + ["U"] = { 16002 }, + }, + ["event"] = 8, + ["lvl"] = 60, + ["min"] = 1, + ["race"] = 77, + ["start"] = { + ["U"] = { 16005 }, + }, + }, + [8898] = { + ["close"] = { 8897, 8898, 8899 }, + ["end"] = { + ["U"] = { 16002 }, + }, + ["event"] = 8, + ["lvl"] = 60, + ["min"] = 1, + ["race"] = 77, + ["start"] = { + ["U"] = { 16009 }, + }, + }, + [8899] = { + ["close"] = { 8897, 8898, 8899 }, + ["end"] = { + ["U"] = { 16002 }, + }, + ["event"] = 8, + ["lvl"] = 60, + ["min"] = 1, + ["race"] = 77, + ["start"] = { + ["U"] = { 16001 }, + }, + }, + [8900] = { + ["close"] = { 8900, 8901, 8902 }, + ["end"] = { + ["U"] = { 16004 }, + }, + ["event"] = 8, + ["lvl"] = 60, + ["min"] = 1, + ["race"] = 255, + ["start"] = { + ["U"] = { 16007 }, + }, + }, + [8901] = { + ["close"] = { 8900, 8901, 8902 }, + ["end"] = { + ["U"] = { 16004 }, + }, + ["event"] = 8, + ["lvl"] = 60, + ["min"] = 1, + ["race"] = 255, + ["start"] = { + ["U"] = { 16008 }, + }, + }, + [8902] = { + ["close"] = { 8900, 8901, 8902 }, + ["end"] = { + ["U"] = { 16004 }, + }, + ["event"] = 8, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["U"] = { 16003 }, + }, + }, + [8903] = { + ["end"] = { + ["U"] = { 16105 }, + }, + ["event"] = 8, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 22143 }, + }, + ["race"] = 77, + ["start"] = { + ["U"] = { 16105 }, + }, + }, + [8904] = { + ["end"] = { + ["U"] = { 16108 }, + }, + ["event"] = 8, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 22145 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 16108 }, + }, + }, + [8905] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 16013 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16714, 21928 }, + }, + ["race"] = 255, + ["start"] = { + ["U"] = { 16013 }, + }, + }, + [8906] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 16013 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16681, 21928 }, + }, + ["race"] = 255, + ["start"] = { + ["U"] = { 16013 }, + }, + }, + [8907] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 16013 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16683, 21928 }, + }, + ["start"] = { + ["U"] = { 16013 }, + }, + }, + [8908] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 16013 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16722, 21928 }, + }, + ["start"] = { + ["U"] = { 16013 }, + }, + }, + [8909] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 16013 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16697, 21928 }, + }, + ["race"] = 255, + ["start"] = { + ["U"] = { 16013 }, + }, + }, + [8910] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 16013 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16710, 21928 }, + }, + ["race"] = 255, + ["start"] = { + ["U"] = { 16013 }, + }, + }, + [8911] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 16013 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16703, 21928 }, + }, + ["race"] = 255, + ["start"] = { + ["U"] = { 16013 }, + }, + }, + [8912] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 16013 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16735, 21928 }, + }, + ["race"] = 255, + ["start"] = { + ["U"] = { 16013 }, + }, + }, + [8913] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 16012 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16714, 22381 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 16012 }, + }, + }, + [8914] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 16012 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16681, 22381 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 16012 }, + }, + }, + [8915] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 16012 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16683, 22381 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 16012 }, + }, + }, + [8916] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 16012 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16697, 22381 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 16012 }, + }, + }, + [8917] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 16012 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16710, 22381 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 16012 }, + }, + }, + [8918] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 16012 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16671, 22381 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 16012 }, + }, + }, + [8919] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 16012 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16703, 22381 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 16012 }, + }, + }, + [8920] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 16012 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16735, 22381 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 16012 }, + }, + }, + [8921] = { + ["end"] = { + ["U"] = { 16014 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 13423, 16006, 16203, 22338 }, + }, + ["pre"] = { 8922, 8923 }, + ["start"] = { + ["U"] = { 16014 }, + }, + }, + [8922] = { + ["end"] = { + ["U"] = { 16014 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["start"] = { + ["U"] = { 16013 }, + }, + }, + [8923] = { + ["end"] = { + ["U"] = { 16014 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["start"] = { + ["U"] = { 16012 }, + }, + }, + [8924] = { + ["end"] = { + ["U"] = { 16014 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 21935, 21936, 21937 }, + }, + ["pre"] = { 8921 }, + ["start"] = { + ["U"] = { 16014 }, + }, + }, + [8925] = { + ["end"] = { + ["U"] = { 16014 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 21938 }, + }, + ["pre"] = { 8924 }, + ["start"] = { + ["U"] = { 16014 }, + }, + }, + [8926] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 16013 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16716, 16717 }, + }, + ["pre"] = { 8977 }, + ["start"] = { + ["U"] = { 16013 }, + }, + }, + [8927] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 16012 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16716, 16717 }, + }, + ["pre"] = { 8978 }, + ["start"] = { + ["U"] = { 16012 }, + }, + }, + [8928] = { + ["end"] = { + ["U"] = { 16014 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 21939 }, + }, + ["pre"] = { 8925 }, + ["start"] = { + ["U"] = { 16014 }, + }, + }, + [8929] = { + ["end"] = { + ["U"] = { 16016 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["pre"] = { 8926, 8931, 8932, 8933, 8934, 8935, 8936, 8937 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 16013 }, + }, + }, + [8930] = { + ["end"] = { + ["U"] = { 16016 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["pre"] = { 8927, 8938, 8939, 8940, 8941, 8942, 8943, 8944 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 16012 }, + }, + }, + [8931] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 16013 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16676, 16680 }, + }, + ["pre"] = { 8977 }, + ["race"] = 255, + ["start"] = { + ["U"] = { 16013 }, + }, + }, + [8932] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 16013 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16684, 16685 }, + }, + ["pre"] = { 8977 }, + ["race"] = 255, + ["start"] = { + ["U"] = { 16013 }, + }, + }, + [8933] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 16013 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16723, 16724 }, + }, + ["pre"] = { 8977 }, + ["race"] = 255, + ["start"] = { + ["U"] = { 16013 }, + }, + }, + [8934] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 16013 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16692, 16696 }, + }, + ["pre"] = { 8977 }, + ["race"] = 255, + ["start"] = { + ["U"] = { 16013 }, + }, + }, + [8935] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 16013 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16712, 16713 }, + }, + ["pre"] = { 8977 }, + ["race"] = 255, + ["start"] = { + ["U"] = { 16013 }, + }, + }, + [8936] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 16013 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16702, 16705 }, + }, + ["pre"] = { 8977 }, + ["start"] = { + ["U"] = { 16013 }, + }, + }, + [8937] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 16013 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16736, 16737 }, + }, + ["pre"] = { 8977 }, + ["race"] = 255, + ["start"] = { + ["U"] = { 16013 }, + }, + }, + [8938] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 16012 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16676, 16680 }, + }, + ["pre"] = { 8978 }, + ["race"] = 255, + ["start"] = { + ["U"] = { 16012 }, + }, + }, + [8939] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 16012 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16684, 16685 }, + }, + ["pre"] = { 8978 }, + ["start"] = { + ["U"] = { 16012 }, + }, + }, + [8940] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 16012 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16692, 16696 }, + }, + ["pre"] = { 8978 }, + ["race"] = 255, + ["start"] = { + ["U"] = { 16012 }, + }, + }, + [8941] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 16012 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16712, 16713 }, + }, + ["pre"] = { 8978 }, + ["race"] = 255, + ["start"] = { + ["U"] = { 16012 }, + }, + }, + [8942] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 16012 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16672, 16673 }, + }, + ["pre"] = { 8978 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 16012 }, + }, + }, + [8943] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 16012 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16702, 16705 }, + }, + ["pre"] = { 8978 }, + ["start"] = { + ["U"] = { 16012 }, + }, + }, + [8944] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 16012 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16736, 16737 }, + }, + ["pre"] = { 8978 }, + ["race"] = 255, + ["start"] = { + ["U"] = { 16012 }, + }, + }, + [8945] = { + ["end"] = { + ["U"] = { 16031 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["U"] = { 16031 }, + }, + ["pre"] = { 8929, 8930 }, + ["start"] = { + ["U"] = { 16016 }, + }, + }, + [8946] = { + ["end"] = { + ["U"] = { 16016 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["pre"] = { 8945 }, + ["start"] = { + ["U"] = { 16031 }, + }, + }, + [8947] = { + ["end"] = { + ["U"] = { 16016 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 11371, 12810, 14342, 15407 }, + }, + ["pre"] = { 8946 }, + ["start"] = { + ["U"] = { 16016 }, + }, + }, + [8948] = { + ["end"] = { + ["U"] = { 16032 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["pre"] = { 8947 }, + ["race"] = 255, + ["start"] = { + ["U"] = { 16016 }, + }, + }, + [8949] = { + ["end"] = { + ["U"] = { 16032 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 21982 }, + }, + ["pre"] = { 8948 }, + ["race"] = 255, + ["start"] = { + ["U"] = { 16032 }, + }, + }, + [8950] = { + ["end"] = { + ["U"] = { 16032 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 14344, 20520, 22224 }, + }, + ["pre"] = { 8949 }, + ["start"] = { + ["U"] = { 16032 }, + }, + }, + [8951] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 16013 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16715, 16718, 16719 }, + }, + ["pre"] = { 9015 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 16016 }, + }, + }, + [8952] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 16013 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16675, 16678, 16679 }, + }, + ["pre"] = { 9015 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 16016 }, + }, + }, + [8953] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 16013 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16682, 16687, 16689 }, + }, + ["pre"] = { 9015 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 16016 }, + }, + }, + [8954] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 16013 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16725, 16728, 16729 }, + }, + ["pre"] = { 9015 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 16016 }, + }, + }, + [8955] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 16013 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16691, 16694, 16695 }, + }, + ["pre"] = { 9015 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 16016 }, + }, + }, + [8956] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 16013 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16708, 16709, 16711 }, + }, + ["pre"] = { 9015 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 16016 }, + }, + }, + [8957] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 16012 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16668, 16669, 16670 }, + }, + ["pre"] = { 9015 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 16016 }, + }, + }, + [8958] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 16013 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16699, 16701, 16704 }, + }, + ["pre"] = { 9015 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 16016 }, + }, + }, + [8959] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 16013 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16732, 16733, 16734 }, + }, + ["pre"] = { 9015 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 16016 }, + }, + }, + [8960] = { + ["end"] = { + ["U"] = { 16033 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["pre"] = { 8951, 8952, 8953, 8954, 8955, 8956, 8958, 8959 }, + ["start"] = { + ["U"] = { 16013 }, + }, + }, + [8961] = { + ["end"] = { + ["U"] = { 16033 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 21987, 21988, 21989, 22014 }, + }, + ["pre"] = { 8960, 9032 }, + ["start"] = { + ["U"] = { 16033 }, + }, + }, + [8962] = { + ["class"] = 129, + ["close"] = { 8962, 8963, 8964, 8965 }, + ["end"] = { + ["U"] = { 16033 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 22226 }, + }, + ["pre"] = { 8961 }, + ["race"] = 255, + ["start"] = { + ["U"] = { 16033 }, + }, + }, + [8963] = { + ["class"] = 1280, + ["close"] = { 8962, 8963, 8964, 8965 }, + ["end"] = { + ["U"] = { 16033 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 22227 }, + }, + ["pre"] = { 8961 }, + ["start"] = { + ["U"] = { 16033 }, + }, + }, + [8964] = { + ["class"] = 12, + ["close"] = { 8962, 8963, 8964, 8965 }, + ["end"] = { + ["U"] = { 16033 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 22228 }, + }, + ["pre"] = { 8961 }, + ["race"] = 255, + ["start"] = { + ["U"] = { 16033 }, + }, + }, + [8965] = { + ["class"] = 82, + ["close"] = { 8962, 8963, 8964, 8965 }, + ["end"] = { + ["U"] = { 16033 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 22229 }, + }, + ["pre"] = { 8961 }, + ["race"] = 255, + ["start"] = { + ["U"] = { 16033 }, + }, + }, + [8966] = { + ["class"] = 129, + ["end"] = { + ["U"] = { 16033 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 21984 }, + ["IR"] = { 22049 }, + ["U"] = { 16080 }, + }, + ["pre"] = { 8962 }, + ["race"] = 255, + ["start"] = { + ["U"] = { 16033 }, + }, + }, + [8967] = { + ["class"] = 1280, + ["end"] = { + ["U"] = { 16033 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 21984 }, + ["IR"] = { 22050 }, + ["U"] = { 16097 }, + }, + ["pre"] = { 8963 }, + ["race"] = 255, + ["start"] = { + ["U"] = { 16033 }, + }, + }, + [8968] = { + ["class"] = 12, + ["end"] = { + ["U"] = { 16033 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 21984 }, + ["IR"] = { 22051 }, + ["U"] = { 16101, 16102 }, + }, + ["pre"] = { 8964 }, + ["race"] = 255, + ["start"] = { + ["U"] = { 16033 }, + }, + }, + [8969] = { + ["class"] = 82, + ["end"] = { + ["U"] = { 16033 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 21984 }, + ["IR"] = { 22052 }, + ["U"] = { 16118 }, + }, + ["pre"] = { 8965 }, + ["race"] = 255, + ["start"] = { + ["U"] = { 16033 }, + }, + }, + [8970] = { + ["end"] = { + ["U"] = { 16033 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 22094 }, + }, + ["pre"] = { 8966, 8967, 8968, 8969 }, + ["start"] = { + ["U"] = { 16033 }, + }, + }, + [8971] = { + ["lvl"] = 10, + ["min"] = 1, + ["obj"] = { + ["I"] = { 22117, 22143, 22176 }, + }, + }, + [8972] = { + ["lvl"] = 10, + ["min"] = 1, + ["obj"] = { + ["I"] = { 22123, 22142, 22175 }, + }, + }, + [8973] = { + ["lvl"] = 10, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21960, 22120, 22140 }, + }, + ["race"] = 255, + }, + [8974] = { + ["lvl"] = 10, + ["min"] = 1, + ["obj"] = { + ["I"] = { 22121, 22145, 22174 }, + }, + }, + [8975] = { + ["lvl"] = 10, + ["min"] = 1, + ["obj"] = { + ["I"] = { 22122, 22144, 22177 }, + }, + }, + [8976] = { + ["lvl"] = 10, + ["min"] = 1, + ["obj"] = { + ["I"] = { 22119, 22141, 22173 }, + }, + }, + [8977] = { + ["end"] = { + ["U"] = { 16013 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["pre"] = { 8928 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 16014 }, + }, + }, + [8978] = { + ["end"] = { + ["U"] = { 16012 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["pre"] = { 8928 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 16014 }, + }, + }, + [8979] = { + ["end"] = { + ["U"] = { 5204 }, + }, + ["event"] = 8, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21829, 21833 }, + }, + ["pre"] = { 8904 }, + ["start"] = { + ["U"] = { 16108 }, + }, + }, + [8980] = { + ["end"] = { + ["U"] = { 16108 }, + }, + ["event"] = 8, + ["lvl"] = 60, + ["min"] = 1, + ["pre"] = { 8979 }, + ["start"] = { + ["U"] = { 5204 }, + }, + }, + [8981] = { + ["end"] = { + ["U"] = { 16075 }, + }, + ["event"] = 110, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 22263 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 16075 }, + }, + }, + [8982] = { + ["end"] = { + ["U"] = { 6741 }, + }, + ["event"] = 8, + ["lvl"] = 60, + ["min"] = 1, + ["pre"] = { 8980 }, + ["start"] = { + ["U"] = { 16108 }, + }, + }, + [8983] = { + ["end"] = { + ["U"] = { 16109 }, + }, + ["event"] = 8, + ["lvl"] = 60, + ["min"] = 1, + ["pre"] = { 8982 }, + ["start"] = { + ["U"] = { 6741 }, + }, + }, + [8984] = { + ["close"] = { 8984, 9028 }, + ["end"] = { + ["U"] = { 16107 }, + }, + ["event"] = 8, + ["lvl"] = 60, + ["min"] = 1, + ["pre"] = { 8983 }, + ["start"] = { + ["U"] = { 16109 }, + }, + }, + [8985] = { + ["class"] = 9, + ["end"] = { + ["U"] = { 16033 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 22227 }, + }, + ["pre"] = { 8970 }, + ["race"] = 255, + ["start"] = { + ["U"] = { 16033 }, + }, + }, + [8986] = { + ["class"] = 1090, + ["end"] = { + ["U"] = { 16033 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 22226 }, + }, + ["pre"] = { 8970 }, + ["start"] = { + ["U"] = { 16033 }, + }, + }, + [8987] = { + ["class"] = 144, + ["end"] = { + ["U"] = { 16033 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 22228 }, + }, + ["pre"] = { 8970 }, + ["start"] = { + ["U"] = { 16033 }, + }, + }, + [8988] = { + ["class"] = 260, + ["end"] = { + ["U"] = { 16033 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 22229 }, + }, + ["pre"] = { 8970 }, + ["race"] = 255, + ["start"] = { + ["U"] = { 16033 }, + }, + }, + [8989] = { + ["class"] = 1090, + ["end"] = { + ["U"] = { 16033 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 22046, 22048 }, + ["IR"] = { 22048, 22049 }, + ["U"] = { 16080 }, + }, + ["pre"] = { 8986 }, + ["race"] = 255, + ["start"] = { + ["U"] = { 16033 }, + }, + }, + [8990] = { + ["class"] = 9, + ["end"] = { + ["U"] = { 16033 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 22046, 22048 }, + ["IR"] = { 22048, 22050 }, + ["U"] = { 16097 }, + }, + ["pre"] = { 8985 }, + ["race"] = 255, + ["start"] = { + ["U"] = { 16033 }, + }, + }, + [8991] = { + ["class"] = 144, + ["end"] = { + ["U"] = { 16033 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 22046, 22048 }, + ["IR"] = { 22048, 22051 }, + ["U"] = { 16101, 16102 }, + }, + ["pre"] = { 8987 }, + ["race"] = 255, + ["start"] = { + ["U"] = { 16033 }, + }, + }, + [8992] = { + ["class"] = 260, + ["end"] = { + ["U"] = { 16033 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 22046, 22048 }, + ["IR"] = { 22048, 22052 }, + ["U"] = { 16118 }, + }, + ["pre"] = { 8988 }, + ["race"] = 255, + ["start"] = { + ["U"] = { 16033 }, + }, + }, + [8993] = { + ["end"] = { + ["U"] = { 16075 }, + }, + ["event"] = 110, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 22262 }, + }, + ["race"] = 77, + ["start"] = { + ["U"] = { 16075 }, + }, + }, + [8994] = { + ["end"] = { + ["U"] = { 16033 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 13512, 22138 }, + ["IR"] = { 22048 }, + }, + ["pre"] = { 8989, 8990, 8991, 8992 }, + ["start"] = { + ["U"] = { 16033 }, + }, + }, + [8995] = { + ["end"] = { + ["U"] = { 16073 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 22048 }, + ["IR"] = { 22048, 22056 }, + ["U"] = { 16042 }, + }, + ["pre"] = { 8994 }, + ["start"] = { + ["U"] = { 16033 }, + }, + }, + [8996] = { + ["end"] = { + ["U"] = { 16033 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 22056 }, + ["IR"] = { 22056 }, + }, + ["pre"] = { 8995 }, + ["start"] = { + ["U"] = { 16073 }, + }, + }, + [8997] = { + ["end"] = { + ["U"] = { 16013 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["pre"] = { 8996 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 16033 }, + }, + }, + [8998] = { + ["end"] = { + ["U"] = { 16012 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["pre"] = { 8996 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 16033 }, + }, + }, + [8999] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 16013 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16706, 16720 }, + }, + ["pre"] = { 8997 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 16013 }, + }, + }, + [9000] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 16013 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16674, 16677 }, + }, + ["pre"] = { 8997 }, + ["race"] = 255, + ["start"] = { + ["U"] = { 16013 }, + }, + }, + [9001] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 16013 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16686, 16688 }, + }, + ["pre"] = { 8997 }, + ["race"] = 255, + ["start"] = { + ["U"] = { 16013 }, + }, + }, + [9002] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 16013 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16726, 16727 }, + }, + ["pre"] = { 8997 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 16013 }, + }, + }, + [9003] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 16013 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16690, 16693 }, + }, + ["pre"] = { 8997 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 16013 }, + }, + }, + [9004] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 16013 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16707, 16721 }, + }, + ["pre"] = { 8997 }, + ["race"] = 255, + ["start"] = { + ["U"] = { 16013 }, + }, + }, + [9005] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 16013 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16698, 16700 }, + }, + ["pre"] = { 8997 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 16013 }, + }, + }, + [9006] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 16013 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16730, 16731 }, + }, + ["pre"] = { 8997 }, + ["race"] = 255, + ["start"] = { + ["U"] = { 16013 }, + }, + }, + [9007] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 16012 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16706, 16720 }, + }, + ["pre"] = { 8998 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 16012 }, + }, + }, + [9008] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 16012 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16674, 16677 }, + }, + ["pre"] = { 8998 }, + ["race"] = 255, + ["start"] = { + ["U"] = { 16012 }, + }, + }, + [9009] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 16012 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16690, 16693 }, + }, + ["pre"] = { 8998 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 16012 }, + }, + }, + [9010] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 16012 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16707, 16721 }, + }, + ["pre"] = { 8998 }, + ["race"] = 255, + ["start"] = { + ["U"] = { 16012 }, + }, + }, + [9011] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 16012 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16666, 16667 }, + }, + ["pre"] = { 8998 }, + ["race"] = 255, + ["start"] = { + ["U"] = { 16012 }, + }, + }, + [9012] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 16012 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16698, 16700 }, + }, + ["pre"] = { 8998 }, + ["race"] = 255, + ["start"] = { + ["U"] = { 16012 }, + }, + }, + [9013] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 16012 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16730, 16731 }, + }, + ["pre"] = { 8998 }, + ["race"] = 255, + ["start"] = { + ["U"] = { 16012 }, + }, + }, + [9014] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 16012 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16686, 16688 }, + }, + ["pre"] = { 8998 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 16012 }, + }, + }, + [9015] = { + ["end"] = { + ["U"] = { 16016 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 22047 }, + ["IR"] = { 21986 }, + ["U"] = { 16166 }, + }, + ["pre"] = { 8950 }, + ["start"] = { + ["U"] = { 16032 }, + }, + }, + [9016] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 16012 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16715, 16718, 16719 }, + }, + ["pre"] = { 9015 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 16016 }, + }, + }, + [9017] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 16012 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16675, 16678, 16679 }, + }, + ["pre"] = { 9015 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 16016 }, + }, + }, + [9018] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 16012 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16682, 16687, 16689 }, + ["IR"] = { 21986 }, + }, + ["pre"] = { 9015 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 16016 }, + }, + }, + [9019] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 16012 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16691, 16694, 16695 }, + }, + ["pre"] = { 9015 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 16016 }, + }, + }, + [9020] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 16012 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16708, 16709, 16711 }, + }, + ["pre"] = { 9015 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 16016 }, + }, + }, + [9021] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 16012 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16699, 16701, 16704 }, + }, + ["pre"] = { 9015 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 16016 }, + }, + }, + [9022] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 16012 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16732, 16733, 16734 }, + }, + ["pre"] = { 9015 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 16016 }, + }, + }, + [9023] = { + ["end"] = { + ["U"] = { 16091 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 22216, 22217 }, + }, + ["start"] = { + ["U"] = { 16091 }, + }, + }, + [9024] = { + ["end"] = { + ["U"] = { 279 }, + }, + ["event"] = 8, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21829, 21833 }, + }, + ["pre"] = { 8903 }, + ["start"] = { + ["U"] = { 16105 }, + }, + }, + [9025] = { + ["end"] = { + ["U"] = { 16105 }, + }, + ["event"] = 8, + ["lvl"] = 60, + ["min"] = 1, + ["pre"] = { 9024 }, + ["start"] = { + ["U"] = { 279 }, + }, + }, + [9026] = { + ["end"] = { + ["U"] = { 6740 }, + }, + ["event"] = 8, + ["lvl"] = 60, + ["min"] = 1, + ["pre"] = { 9025 }, + ["start"] = { + ["U"] = { 16105 }, + }, + }, + [9027] = { + ["end"] = { + ["U"] = { 16106 }, + }, + ["event"] = 8, + ["lvl"] = 60, + ["min"] = 1, + ["pre"] = { 9026 }, + ["start"] = { + ["U"] = { 6740 }, + }, + }, + [9028] = { + ["close"] = { 8984, 9028 }, + ["end"] = { + ["U"] = { 16107 }, + }, + ["event"] = 8, + ["lvl"] = 60, + ["min"] = 1, + ["pre"] = { 9027 }, + ["start"] = { + ["U"] = { 16106 }, + }, + }, + [9029] = { + ["end"] = { + ["O"] = { 181073 }, + }, + ["event"] = 8, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["O"] = { 181073 }, + }, + }, + [9030] = { + ["lvl"] = 60, + ["min"] = 58, + ["race"] = 255, + }, + [9032] = { + ["end"] = { + ["U"] = { 16033 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["pre"] = { 8957, 9016, 9017, 9018, 9019, 9020, 9021, 9022 }, + ["start"] = { + ["U"] = { 16012 }, + }, + }, + [9033] = { + ["end"] = { + ["U"] = { 16115 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 15976, 16021, 16145, 16168 }, + }, + ["pre"] = { 9121 }, + ["start"] = { + ["U"] = { 16115 }, + }, + }, + [9034] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 16112 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12360, 20725, 22349, 22375 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16112 }, + }, + }, + [9036] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 16112 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12360, 15407, 22352, 22375 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16112 }, + }, + }, + [9037] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 16112 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12360, 20725, 22353, 22375 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16112 }, + }, + }, + [9038] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 16112 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12360, 15407, 22354, 22375 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16112 }, + }, + }, + [9039] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 16112 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12360, 15407, 22358, 22375 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16112 }, + }, + }, + [9040] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 16112 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12360, 15407, 22357, 22375 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16112 }, + }, + }, + [9041] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 16112 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12360, 15407, 22356, 22375 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16112 }, + }, + }, + [9042] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 16112 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12360, 20725, 22355, 22375 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16112 }, + }, + }, + [9043] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 16115 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12360, 15407, 22350, 22375 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16115 }, + }, + }, + [9044] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 16115 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12360, 20725, 22359, 22375 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16115 }, + }, + }, + [9045] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 16115 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12360, 15407, 22360, 22375 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16115 }, + }, + }, + [9046] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 16115 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12360, 20725, 22361, 22375 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16115 }, + }, + }, + [9047] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 16115 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12360, 15407, 22365, 22375 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16115 }, + }, + }, + [9048] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 16115 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12360, 15407, 22364, 22375 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16115 }, + }, + }, + [9049] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 16115 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12360, 20725, 22363, 22375 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16115 }, + }, + }, + [9050] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 16115 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12360, 15407, 22362, 22375 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16115 }, + }, + }, + [9051] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 9619 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["obj"] = { + ["IR"] = { 22432 }, + }, + ["pre"] = { 9052 }, + ["start"] = { + ["U"] = { 9619 }, + }, + }, + [9052] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 9619 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["obj"] = { + ["I"] = { 22434, 22435 }, + }, + ["pre"] = { 9063 }, + ["start"] = { + ["U"] = { 9619 }, + }, + }, + [9053] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 9619 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["obj"] = { + ["I"] = { 22444 }, + }, + ["pre"] = { 9051 }, + ["start"] = { + ["U"] = { 9619 }, + }, + }, + [9054] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 16132 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12360, 15407, 22350, 22374 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16132 }, + }, + }, + [9055] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 16132 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12360, 15407, 22359, 22374 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16132 }, + }, + }, + [9056] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 16132 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12360, 20725, 22360, 22374 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16132 }, + }, + }, + [9057] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 16132 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12360, 15407, 22361, 22374 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16132 }, + }, + }, + [9058] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 16132 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12360, 20725, 22365, 22374 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16132 }, + }, + }, + [9059] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 16132 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12360, 15407, 22364, 22374 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16132 }, + }, + }, + [9060] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 16132 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12360, 20725, 22363, 22374 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16132 }, + }, + }, + [9061] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 16132 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12360, 15407, 22362, 22374 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16132 }, + }, + }, + [9063] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 9619 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["start"] = { + ["U"] = { 3033, 4217, 5505, 12042 }, + }, + }, + [9065] = { + ["lvl"] = 4, + ["min"] = 1, + ["race"] = 255, + }, + [9068] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 16134 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12360, 15407, 22350, 22374 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16134 }, + }, + }, + [9069] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 16134 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12360, 15407, 22359, 22374 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16134 }, + }, + }, + [9070] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 16134 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12360, 20725, 22360, 22374 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16134 }, + }, + }, + [9071] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 16134 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12360, 14342, 22361, 22374 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16134 }, + }, + }, + [9072] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 16134 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12360, 20725, 22365, 22374 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16134 }, + }, + }, + [9073] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 16134 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12360, 15407, 22364, 22374 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16134 }, + }, + }, + [9074] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 16134 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12360, 20725, 22363, 22374 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16134 }, + }, + }, + [9075] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 16134 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12360, 15407, 22362, 22374 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16134 }, + }, + }, + [9077] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 16131 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12360, 15407, 22349, 22373 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16131 }, + }, + }, + [9078] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 16131 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12360, 15407, 22352, 22373 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16131 }, + }, + }, + [9079] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 16131 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 15407, 20725, 22353, 22373 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16131 }, + }, + }, + [9080] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 16131 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 15407, 20725, 22354, 22373 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16131 }, + }, + }, + [9081] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 16131 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 15407, 20725, 22358, 22373 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16131 }, + }, + }, + [9082] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 16131 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12360, 15407, 22357, 22373 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16131 }, + }, + }, + [9083] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 16131 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 15407, 20725, 22356, 22373 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16131 }, + }, + }, + [9084] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 16131 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12360, 15407, 22355, 22373 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16131 }, + }, + }, + [9085] = { + ["end"] = { + ["U"] = { 16361 }, + }, + ["event"] = 17, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["U"] = { 16143 }, + }, + ["pre"] = { 9153 }, + ["start"] = { + ["U"] = { 16361 }, + }, + }, + [9086] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 16135 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 15407, 20725, 22350, 22373 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16135 }, + }, + }, + [9087] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 16135 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 15407, 20725, 22359, 22373 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16135 }, + }, + }, + [9088] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 16135 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 15407, 20725, 22360, 22373 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16135 }, + }, + }, + [9089] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 16135 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 15407, 20725, 22361, 22373 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16135 }, + }, + }, + [9090] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 16135 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 14342, 15407, 22365, 22373 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16135 }, + }, + }, + [9091] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 16135 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 15407, 20725, 22364, 22373 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16135 }, + }, + }, + [9092] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 16135 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 14342, 15407, 22363, 22373 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16135 }, + }, + }, + [9093] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 16135 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12363, 15407, 22362, 22373 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16135 }, + }, + }, + [9094] = { + ["end"] = { + ["U"] = { 16786 }, + }, + ["event"] = 99, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 22484 }, + }, + ["pre"] = { 9153 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 16786 }, + }, + }, + [9095] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 16116 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 14342, 20725, 22351, 22376 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16116 }, + }, + }, + [9096] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 16116 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 14342, 20725, 22366, 22376 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16116 }, + }, + }, + [9097] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 16116 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 14342, 20725, 22367, 22376 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16116 }, + }, + }, + [9098] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 16116 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 14342, 15407, 22368, 22376 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16116 }, + }, + }, + [9099] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 16116 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 14342, 15407, 22372, 22376 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16116 }, + }, + }, + [9100] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 16116 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 14342, 22371, 22376 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16116 }, + }, + }, + [9101] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 16116 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12363, 14342, 22370, 22376 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16116 }, + }, + }, + [9102] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 16116 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12363, 20725, 22369, 22376 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16116 }, + }, + }, + [9103] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 16133 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 14342, 20725, 22351, 22376 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16133 }, + }, + }, + [9104] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 16133 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 14342, 20725, 22366, 22376 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16133 }, + }, + }, + [9105] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 16133 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 14342, 20725, 22367, 22376 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16133 }, + }, + }, + [9106] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 16133 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 14342, 15407, 22368, 22376 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16133 }, + }, + }, + [9107] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 16133 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 14342, 15407, 22372, 22376 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16133 }, + }, + }, + [9108] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 16133 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 14342, 22371, 22376 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16133 }, + }, + }, + [9109] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 16133 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12363, 14342, 22370, 22376 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16133 }, + }, + }, + [9110] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 16133 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12363, 20725, 22369, 22376 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16133 }, + }, + }, + [9111] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 16113 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 14342, 20725, 22351, 22376 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16113 }, + }, + }, + [9112] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 16113 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 14342, 20725, 22366, 22376 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16113 }, + }, + }, + [9113] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 16113 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 14342, 20725, 22367, 22376 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16113 }, + }, + }, + [9114] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 16113 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 14342, 15407, 22368, 22376 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16113 }, + }, + }, + [9115] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 16113 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 14342, 15407, 22372, 22376 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16113 }, + }, + }, + [9116] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 16113 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 14342, 22371, 22376 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16113 }, + }, + }, + [9117] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 16113 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12363, 14342, 22370, 22376 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16113 }, + }, + }, + [9118] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 16113 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12363, 20725, 22369, 22376 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16113 }, + }, + }, + [9120] = { + ["end"] = { + ["U"] = { 16113 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["start"] = { + ["I"] = { 22520 }, + }, + }, + [9121] = { + ["close"] = { 9121, 9122, 9123 }, + ["end"] = { + ["U"] = { 16116 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12363, 12811, 20725 }, + }, + ["start"] = { + ["U"] = { 16116 }, + }, + }, + [9122] = { + ["close"] = { 9121, 9122, 9123 }, + ["end"] = { + ["U"] = { 16116 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12363, 20725 }, + }, + ["start"] = { + ["U"] = { 16116 }, + }, + }, + [9123] = { + ["close"] = { 9121, 9122, 9123 }, + ["end"] = { + ["U"] = { 16116 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["start"] = { + ["U"] = { 16116 }, + }, + }, + [9124] = { + ["end"] = { + ["U"] = { 16132 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 22525 }, + }, + ["start"] = { + ["U"] = { 16132 }, + }, + }, + [9125] = { + ["end"] = { + ["U"] = { 16132 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 22525 }, + }, + ["pre"] = { 9124 }, + ["start"] = { + ["U"] = { 16132 }, + }, + }, + [9126] = { + ["end"] = { + ["U"] = { 16131 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 22526 }, + }, + ["start"] = { + ["U"] = { 16131 }, + }, + }, + [9127] = { + ["end"] = { + ["U"] = { 16131 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 22526 }, + }, + ["pre"] = { 9126 }, + ["start"] = { + ["U"] = { 16131 }, + }, + }, + [9128] = { + ["end"] = { + ["U"] = { 16116 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 22527 }, + }, + ["start"] = { + ["U"] = { 16116 }, + }, + }, + [9129] = { + ["end"] = { + ["U"] = { 16116 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 22527 }, + }, + ["pre"] = { 9128 }, + ["start"] = { + ["U"] = { 16116 }, + }, + }, + [9131] = { + ["end"] = { + ["U"] = { 16112 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 22528 }, + }, + ["start"] = { + ["U"] = { 16112 }, + }, + }, + [9132] = { + ["end"] = { + ["U"] = { 16112 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 22528 }, + }, + ["pre"] = { 9131 }, + ["start"] = { + ["U"] = { 16112 }, + }, + }, + [9136] = { + ["end"] = { + ["U"] = { 16135 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 22529 }, + }, + ["start"] = { + ["U"] = { 16135 }, + }, + }, + [9137] = { + ["end"] = { + ["U"] = { 16135 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 22529 }, + }, + ["pre"] = { 9136 }, + ["start"] = { + ["U"] = { 16135 }, + }, + }, + [9141] = { + ["end"] = { + ["U"] = { 16212 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 12844 }, + }, + ["start"] = { + ["U"] = { 16212 }, + }, + }, + [9142] = { + ["end"] = { + ["U"] = { 16212 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 12844 }, + }, + ["pre"] = { 9141 }, + ["start"] = { + ["U"] = { 16212 }, + }, + }, + [9153] = { + ["end"] = { + ["U"] = { 16361 }, + }, + ["event"] = 17, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 22484 }, + }, + ["start"] = { + ["U"] = { 16361 }, + }, + }, + [9154] = { + ["end"] = { + ["U"] = { 16281 }, + }, + ["event"] = 17, + ["lvl"] = 60, + ["min"] = 50, + ["start"] = { + ["U"] = { 16241, 16255 }, + }, + }, + [9165] = { + ["end"] = { + ["U"] = { 16212 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["U"] = { 16254 }, + }, + ["start"] = { + ["U"] = { 16226 }, + }, + }, + [9178] = { + ["end"] = { + ["U"] = { 16283 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 12643 }, + }, + ["start"] = { + ["I"] = { 22600 }, + }, + }, + [9179] = { + ["end"] = { + ["U"] = { 16283 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 12422 }, + }, + ["start"] = { + ["I"] = { 22601 }, + }, + }, + [9181] = { + ["end"] = { + ["U"] = { 16283 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 12792 }, + }, + ["start"] = { + ["I"] = { 22602 }, + }, + }, + [9182] = { + ["end"] = { + ["U"] = { 16283 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 12775 }, + }, + ["start"] = { + ["I"] = { 22603 }, + }, + }, + [9183] = { + ["end"] = { + ["U"] = { 16283 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 12417 }, + }, + ["start"] = { + ["I"] = { 22604 }, + }, + }, + [9184] = { + ["end"] = { + ["U"] = { 16283 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 15086 }, + }, + ["start"] = { + ["I"] = { 22605 }, + }, + }, + [9185] = { + ["end"] = { + ["U"] = { 16283 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 15564 }, + }, + ["start"] = { + ["I"] = { 22606 }, + }, + }, + [9186] = { + ["end"] = { + ["U"] = { 16283 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 15088 }, + }, + ["start"] = { + ["I"] = { 22607 }, + }, + }, + [9187] = { + ["end"] = { + ["U"] = { 16283 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 15095 }, + }, + ["start"] = { + ["I"] = { 22608 }, + }, + }, + [9188] = { + ["end"] = { + ["U"] = { 16283 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 14104 }, + }, + ["start"] = { + ["I"] = { 22609 }, + }, + }, + [9190] = { + ["end"] = { + ["U"] = { 16283 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 13864 }, + }, + ["start"] = { + ["I"] = { 22610 }, + }, + }, + [9191] = { + ["end"] = { + ["U"] = { 16283 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 14046 }, + }, + ["start"] = { + ["I"] = { 22611 }, + }, + }, + [9194] = { + ["end"] = { + ["U"] = { 16283 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 13858 }, + }, + ["start"] = { + ["I"] = { 22612 }, + }, + }, + [9195] = { + ["end"] = { + ["U"] = { 16283 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 10646 }, + }, + ["start"] = { + ["I"] = { 22613 }, + }, + }, + [9196] = { + ["end"] = { + ["U"] = { 16283 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 15993 }, + }, + ["start"] = { + ["I"] = { 22614 }, + }, + }, + [9197] = { + ["end"] = { + ["U"] = { 16283 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 10725 }, + }, + ["start"] = { + ["I"] = { 22615 }, + }, + }, + [9198] = { + ["end"] = { + ["U"] = { 16283 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 16000 }, + }, + ["start"] = { + ["I"] = { 22616 }, + }, + }, + [9200] = { + ["end"] = { + ["U"] = { 16283 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 13444 }, + }, + ["start"] = { + ["I"] = { 22617 }, + }, + }, + [9201] = { + ["end"] = { + ["U"] = { 16283 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 13461 }, + }, + ["start"] = { + ["I"] = { 22620 }, + }, + }, + [9202] = { + ["end"] = { + ["U"] = { 16283 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 13446 }, + }, + ["start"] = { + ["I"] = { 22618 }, + }, + }, + [9203] = { + ["end"] = { + ["U"] = { 16283 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 13506 }, + }, + ["start"] = { + ["I"] = { 22621 }, + }, + }, + [9204] = { + ["end"] = { + ["U"] = { 16283 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 13422 }, + }, + ["start"] = { + ["I"] = { 22622 }, + }, + }, + [9205] = { + ["end"] = { + ["U"] = { 16283 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 13890 }, + }, + ["start"] = { + ["I"] = { 22623 }, + }, + }, + [9206] = { + ["end"] = { + ["U"] = { 16283 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 13757 }, + }, + ["start"] = { + ["I"] = { 22624 }, + }, + }, + [9208] = { + ["end"] = { + ["U"] = { 15042 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 18331 }, + }, + ["start"] = { + ["U"] = { 15042 }, + }, + }, + [9209] = { + ["end"] = { + ["U"] = { 15042 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 18329 }, + }, + ["start"] = { + ["U"] = { 15042 }, + }, + }, + [9210] = { + ["end"] = { + ["U"] = { 15042 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 18330 }, + }, + ["start"] = { + ["U"] = { 15042 }, + }, + }, + [9211] = { + ["end"] = { + ["U"] = { 16133 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 22524 }, + }, + ["start"] = { + ["U"] = { 16133 }, + }, + }, + [9213] = { + ["end"] = { + ["U"] = { 16133 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 22524 }, + }, + ["start"] = { + ["U"] = { 16133 }, + }, + }, + [9221] = { + ["end"] = { + ["U"] = { 11536 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 22523, 22524 }, + }, + ["start"] = { + ["U"] = { 11536 }, + }, + }, + [9222] = { + ["end"] = { + ["U"] = { 11536 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 22523, 22524 }, + }, + ["start"] = { + ["U"] = { 11536 }, + }, + }, + [9223] = { + ["end"] = { + ["U"] = { 11536 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 22523, 22524 }, + }, + ["start"] = { + ["U"] = { 11536 }, + }, + }, + [9224] = { + ["end"] = { + ["U"] = { 11536 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 22523, 22524 }, + }, + ["start"] = { + ["U"] = { 11536 }, + }, + }, + [9225] = { + ["end"] = { + ["U"] = { 11536 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 22523, 22524 }, + }, + ["start"] = { + ["U"] = { 11536 }, + }, + }, + [9226] = { + ["end"] = { + ["U"] = { 11536 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 22523, 22524 }, + }, + ["start"] = { + ["U"] = { 11536 }, + }, + }, + [9227] = { + ["end"] = { + ["U"] = { 11536 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 22523, 22524 }, + }, + ["start"] = { + ["U"] = { 11536 }, + }, + }, + [9228] = { + ["end"] = { + ["U"] = { 11536 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 22523, 22524 }, + }, + ["start"] = { + ["U"] = { 11536 }, + }, + }, + [9229] = { + ["end"] = { + ["U"] = { 16112 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 22708 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16112 }, + }, + }, + [9230] = { + ["end"] = { + ["U"] = { 16112 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12360, 12361, 22682 }, + }, + ["pre"] = { 9229 }, + ["start"] = { + ["U"] = { 16112 }, + }, + }, + [9232] = { + ["end"] = { + ["U"] = { 16376 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 7080, 12361, 22682 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16376 }, + }, + }, + [9233] = { + ["end"] = { + ["U"] = { 16376 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["start"] = { + ["I"] = { 22719 }, + }, + }, + [9234] = { + ["end"] = { + ["U"] = { 16376 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 7080, 12359, 12360, 22682 }, + }, + ["pre"] = { 9233 }, + ["start"] = { + ["U"] = { 16376 }, + }, + }, + [9235] = { + ["end"] = { + ["U"] = { 16376 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 7080, 12359, 12360, 22682 }, + }, + ["pre"] = { 9233 }, + ["start"] = { + ["U"] = { 16376 }, + }, + }, + [9236] = { + ["end"] = { + ["U"] = { 16376 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 7080, 12359, 12360, 22682 }, + }, + ["pre"] = { 9233 }, + ["start"] = { + ["U"] = { 16376 }, + }, + }, + [9237] = { + ["end"] = { + ["U"] = { 16376 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 7080, 14048, 14227, 22682 }, + }, + ["pre"] = { 9233 }, + ["start"] = { + ["U"] = { 16376 }, + }, + }, + [9238] = { + ["end"] = { + ["U"] = { 16376 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 7080, 14048, 14227, 22682 }, + }, + ["pre"] = { 9233 }, + ["start"] = { + ["U"] = { 16376 }, + }, + }, + [9239] = { + ["end"] = { + ["U"] = { 16376 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 7080, 14048, 14227, 22682 }, + }, + ["pre"] = { 9233 }, + ["start"] = { + ["U"] = { 16376 }, + }, + }, + [9240] = { + ["end"] = { + ["U"] = { 16376 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 7080, 14048, 14227, 22682 }, + }, + ["pre"] = { 9233 }, + ["start"] = { + ["U"] = { 16376 }, + }, + }, + [9241] = { + ["end"] = { + ["U"] = { 16376 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 7080, 12810, 15407, 22682 }, + }, + ["pre"] = { 9233 }, + ["start"] = { + ["U"] = { 16376 }, + }, + }, + [9242] = { + ["end"] = { + ["U"] = { 16376 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 7080, 12810, 15407, 22682 }, + }, + ["pre"] = { 9233 }, + ["start"] = { + ["U"] = { 16376 }, + }, + }, + [9243] = { + ["end"] = { + ["U"] = { 16376 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 7080, 12810, 15407, 22682 }, + }, + ["pre"] = { 9233 }, + ["start"] = { + ["U"] = { 16376 }, + }, + }, + [9244] = { + ["end"] = { + ["U"] = { 16376 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 7080, 15407, 15408, 22682 }, + }, + ["pre"] = { 9233 }, + ["start"] = { + ["U"] = { 16376 }, + }, + }, + [9245] = { + ["end"] = { + ["U"] = { 16376 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 7080, 15407, 15408, 22682 }, + }, + ["pre"] = { 9233 }, + ["start"] = { + ["U"] = { 16376 }, + }, + }, + [9246] = { + ["end"] = { + ["U"] = { 16376 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 7080, 15407, 15408, 22682 }, + }, + ["pre"] = { 9233 }, + ["start"] = { + ["U"] = { 16376 }, + }, + }, + [9247] = { + ["end"] = { + ["U"] = { 16281 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["I"] = { 22723 }, + }, + }, + [9248] = { + ["end"] = { + ["U"] = { 15282 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 20515 }, + }, + ["start"] = { + ["U"] = { 15282 }, + }, + }, + [9249] = { + ["lvl"] = 60, + ["min"] = 45, + ["obj"] = { + ["I"] = { 19182 }, + }, + }, + [9250] = { + ["end"] = { + ["U"] = { 15192 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["start"] = { + ["I"] = { 22727 }, + }, + }, + [9251] = { + ["end"] = { + ["U"] = { 15192 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 22733, 22734 }, + }, + ["pre"] = { 9250 }, + ["start"] = { + ["U"] = { 15192 }, + }, + }, + [9257] = { + ["class"] = 16, + ["close"] = { 9257, 9269, 9270, 9271 }, + ["end"] = { + ["U"] = { 15192 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["IR"] = { 22737 }, + ["U"] = { 16387 }, + }, + ["pre"] = { 9251 }, + ["start"] = { + ["U"] = { 15192 }, + }, + }, + [9259] = { + ["end"] = { + ["U"] = { 16399 }, + }, + ["lvl"] = 60, + ["min"] = 30, + ["obj"] = { + ["I"] = { 2604, 4306 }, + }, + ["start"] = { + ["U"] = { 16399 }, + }, + }, + [9260] = { + ["end"] = { + ["U"] = { 16478 }, + }, + ["event"] = 17, + ["lvl"] = 6, + ["min"] = 1, + ["obj"] = { + ["A"] = { 4092, 4094, 4095, 4096 }, + ["I"] = { 22892 }, + }, + ["race"] = 77, + ["start"] = { + ["U"] = { 16478 }, + }, + }, + [9261] = { + ["end"] = { + ["U"] = { 16484 }, + }, + ["event"] = 17, + ["lvl"] = 10, + ["min"] = 1, + ["obj"] = { + ["A"] = { 4098, 4099 }, + ["I"] = { 22892 }, + }, + ["race"] = 77, + ["start"] = { + ["U"] = { 16484 }, + }, + }, + [9262] = { + ["end"] = { + ["U"] = { 16495 }, + }, + ["event"] = 17, + ["lvl"] = 10, + ["min"] = 1, + ["obj"] = { + ["A"] = { 4104, 4105 }, + ["I"] = { 22892 }, + }, + ["race"] = 77, + ["start"] = { + ["U"] = { 16495 }, + }, + }, + [9263] = { + ["end"] = { + ["U"] = { 16493 }, + }, + ["event"] = 17, + ["lvl"] = 10, + ["min"] = 1, + ["obj"] = { + ["A"] = { 4101 }, + ["I"] = { 22892 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 16493 }, + }, + }, + [9264] = { + ["end"] = { + ["U"] = { 16490 }, + }, + ["event"] = 17, + ["lvl"] = 10, + ["min"] = 1, + ["obj"] = { + ["A"] = { 4103 }, + ["I"] = { 22892 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 16490 }, + }, + }, + [9265] = { + ["end"] = { + ["U"] = { 16494 }, + }, + ["event"] = 17, + ["lvl"] = 8, + ["min"] = 1, + ["obj"] = { + ["A"] = { 4100 }, + ["I"] = { 22892 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 16494 }, + }, + }, + [9266] = { + ["end"] = { + ["U"] = { 16416 }, + }, + ["lvl"] = 60, + ["min"] = 40, + ["obj"] = { + ["I"] = { 3857, 14047 }, + }, + ["start"] = { + ["U"] = { 16416 }, + }, + }, + [9267] = { + ["end"] = { + ["U"] = { 16418 }, + }, + ["lvl"] = 60, + ["min"] = 15, + ["obj"] = { + ["I"] = { 2589, 3371 }, + }, + ["start"] = { + ["U"] = { 16418 }, + }, + }, + [9268] = { + ["end"] = { + ["U"] = { 16417 }, + }, + ["lvl"] = 60, + ["min"] = 40, + ["obj"] = { + ["I"] = { 3466, 4338 }, + }, + ["start"] = { + ["U"] = { 16417 }, + }, + }, + [9269] = { + ["class"] = 1024, + ["close"] = { 9257, 9269, 9270, 9271 }, + ["end"] = { + ["U"] = { 15192 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["IR"] = { 22737 }, + ["U"] = { 16387 }, + }, + ["pre"] = { 9251 }, + ["start"] = { + ["U"] = { 15192 }, + }, + }, + [9270] = { + ["class"] = 128, + ["close"] = { 9257, 9269, 9270, 9271 }, + ["end"] = { + ["U"] = { 15192 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["IR"] = { 22737 }, + ["U"] = { 16387 }, + }, + ["pre"] = { 9251 }, + ["start"] = { + ["U"] = { 15192 }, + }, + }, + [9271] = { + ["class"] = 256, + ["close"] = { 9257, 9269, 9270, 9271 }, + ["end"] = { + ["U"] = { 15192 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["IR"] = { 22737 }, + ["U"] = { 16387 }, + }, + ["pre"] = { 9251 }, + ["start"] = { + ["U"] = { 15192 }, + }, + }, + [9272] = { + ["end"] = { + ["U"] = { 2546 }, + }, + ["lvl"] = 55, + ["min"] = 49, + ["start"] = { + ["U"] = { 2546 }, + }, + }, + [9273] = { + ["end"] = { + ["U"] = { 153, 353, 1227, 2797, 2801, 5903 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 22822 }, + }, + ["start"] = { + ["U"] = { 153, 353, 1227, 2797, 2801, 5903 }, + }, + }, + [9292] = { + ["end"] = { + ["U"] = { 16478 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["race"] = 77, + ["start"] = { + ["U"] = { 16431 }, + }, + }, + [9295] = { + ["end"] = { + ["U"] = { 16281 }, + }, + ["lvl"] = 60, + ["min"] = 45, + ["start"] = { + ["I"] = { 22977 }, + }, + }, + [9296] = { + ["lvl"] = 60, + ["min"] = 1, + }, + [9297] = { + ["lvl"] = 60, + ["min"] = 1, + }, + [9298] = { + ["lvl"] = 60, + ["min"] = 1, + }, + [9299] = { + ["end"] = { + ["U"] = { 16281 }, + }, + ["lvl"] = 60, + ["min"] = 45, + ["start"] = { + ["I"] = { 22972 }, + }, + }, + [9300] = { + ["end"] = { + ["U"] = { 16281 }, + }, + ["lvl"] = 60, + ["min"] = 45, + ["start"] = { + ["I"] = { 22974 }, + }, + }, + [9301] = { + ["end"] = { + ["U"] = { 16281 }, + }, + ["lvl"] = 60, + ["min"] = 45, + ["start"] = { + ["I"] = { 22970 }, + }, + }, + [9302] = { + ["end"] = { + ["U"] = { 16281 }, + }, + ["lvl"] = 60, + ["min"] = 45, + ["start"] = { + ["I"] = { 22973 }, + }, + }, + [9304] = { + ["end"] = { + ["U"] = { 16281 }, + }, + ["lvl"] = 60, + ["min"] = 45, + ["start"] = { + ["I"] = { 22975 }, + }, + }, + [9310] = { + ["end"] = { + ["U"] = { 16494 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["race"] = 178, + ["start"] = { + ["U"] = { 16531 }, + }, + }, + [9317] = { + ["end"] = { + ["U"] = { 16786 }, + }, + ["event"] = 99, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 22484 }, + }, + ["pre"] = { 9153 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 16786 }, + }, + }, + [9318] = { + ["end"] = { + ["U"] = { 16786 }, + }, + ["event"] = 99, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 22484 }, + }, + ["pre"] = { 9153 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 16786 }, + }, + }, + [9319] = { + ["end"] = { + ["U"] = { 16788 }, + }, + ["event"] = 1, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["O"] = { 181346, 181347, 181348, 181349 }, + }, + ["start"] = { + ["U"] = { 16788 }, + }, + }, + [9320] = { + ["end"] = { + ["U"] = { 16787 }, + }, + ["event"] = 99, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 22484 }, + }, + ["pre"] = { 9153 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 16787 }, + }, + }, + [9321] = { + ["end"] = { + ["U"] = { 16786 }, + }, + ["event"] = 99, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 22484 }, + }, + ["pre"] = { 9153 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 16786 }, + }, + }, + [9322] = { + ["end"] = { + ["U"] = { 16788 }, + }, + ["event"] = 1, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["O"] = { 181339, 181340, 181342, 181343 }, + }, + ["start"] = { + ["U"] = { 16788 }, + }, + }, + [9323] = { + ["end"] = { + ["U"] = { 16788 }, + }, + ["event"] = 1, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["O"] = { 181338, 181341, 181344, 181345 }, + }, + ["start"] = { + ["U"] = { 16788 }, + }, + }, + [9324] = { + ["end"] = { + ["U"] = { 16817 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["race"] = 77, + ["start"] = { + ["I"] = { 23179 }, + }, + }, + [9325] = { + ["end"] = { + ["U"] = { 16817 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["race"] = 77, + ["start"] = { + ["I"] = { 23180 }, + }, + }, + [9326] = { + ["end"] = { + ["U"] = { 16817 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["race"] = 77, + ["start"] = { + ["I"] = { 23181 }, + }, + }, + [9330] = { + ["end"] = { + ["U"] = { 16818 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["race"] = 178, + ["start"] = { + ["I"] = { 23182 }, + }, + }, + [9331] = { + ["end"] = { + ["U"] = { 16818 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["race"] = 178, + ["start"] = { + ["I"] = { 23183 }, + }, + }, + [9332] = { + ["end"] = { + ["U"] = { 16818 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["race"] = 178, + ["start"] = { + ["I"] = { 23184 }, + }, + }, + [9333] = { + ["end"] = { + ["U"] = { 16787 }, + }, + ["event"] = 99, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 22484 }, + }, + ["pre"] = { 9153 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 16787 }, + }, + }, + [9334] = { + ["end"] = { + ["U"] = { 16787 }, + }, + ["event"] = 99, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 22484 }, + }, + ["pre"] = { 9153 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 16787 }, + }, + }, + [9335] = { + ["end"] = { + ["U"] = { 16787 }, + }, + ["event"] = 99, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 22484 }, + }, + ["pre"] = { 9153 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 16787 }, + }, + }, + [9336] = { + ["end"] = { + ["U"] = { 16787 }, + }, + ["event"] = 99, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 22484 }, + }, + ["pre"] = { 9153 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 16787 }, + }, + }, + [9337] = { + ["end"] = { + ["U"] = { 16786 }, + }, + ["event"] = 99, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 22484 }, + }, + ["pre"] = { 9153 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 16786 }, + }, + }, + [9338] = { + ["end"] = { + ["U"] = { 15540 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20800, 20801, 20802 }, + }, + ["start"] = { + ["U"] = { 15540 }, + }, + }, + [9339] = { + ["end"] = { + ["U"] = { 16817 }, + }, + ["event"] = 1, + ["lvl"] = 60, + ["min"] = 50, + ["pre"] = { 9324, 9325, 9326 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 16817 }, + }, + }, + [9341] = { + ["end"] = { + ["U"] = { 16786 }, + }, + ["event"] = 99, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 22484 }, + }, + ["pre"] = { 9153 }, + ["race"] = 77, + ["start"] = { + ["U"] = { 16786 }, + }, + }, + [9343] = { + ["end"] = { + ["U"] = { 16787 }, + }, + ["event"] = 99, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 22484 }, + }, + ["pre"] = { 9153 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 16787 }, + }, + }, + [9353] = { + ["end"] = { + ["U"] = { 153, 353, 1227, 2797, 2801, 5903 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 23227 }, + }, + ["start"] = { + ["U"] = { 153, 353, 1227, 2797, 2801, 5903 }, + }, + }, + [9362] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 8379 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 23250 }, + }, + ["start"] = { + ["U"] = { 8379 }, + }, + }, + [9364] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 8379 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 16479 }, + }, + ["pre"] = { 9362 }, + ["start"] = { + ["U"] = { 8379 }, + }, + }, + [9365] = { + ["end"] = { + ["U"] = { 16818 }, + }, + ["event"] = 1, + ["lvl"] = 60, + ["min"] = 50, + ["pre"] = { 9330, 9331, 9332 }, + ["race"] = 178, + ["start"] = { + ["U"] = { 16818 }, + }, + }, + [9367] = { + ["end"] = { + ["U"] = { 16817 }, + }, + ["event"] = 1, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["O"] = { 181332, 181333, 181334 }, + }, + ["start"] = { + ["U"] = { 16817 }, + }, + }, + [9368] = { + ["end"] = { + ["U"] = { 16818 }, + }, + ["event"] = 1, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["O"] = { 181335, 181336, 181337 }, + }, + ["start"] = { + ["U"] = { 16818 }, + }, + }, + [9378] = { + ["lvl"] = 60, + ["min"] = 60, + ["race"] = 255, + }, + [9386] = { + ["end"] = { + ["U"] = { 16788 }, + }, + ["event"] = 1, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["O"] = { 181346, 181347, 181348, 181349 }, + }, + ["pre"] = { 9319 }, + ["start"] = { + ["U"] = { 16788 }, + }, + }, + [9388] = { + ["end"] = { + ["U"] = { 16788 }, + }, + ["event"] = 1, + ["lvl"] = 25, + ["min"] = 1, + ["obj"] = { + ["O"] = { 181560, 181561, 181562, 181563 }, + }, + ["start"] = { + ["U"] = { 16817, 16818 }, + }, + }, + [9389] = { + ["end"] = { + ["U"] = { 16788 }, + }, + ["event"] = 1, + ["lvl"] = 25, + ["min"] = 1, + ["obj"] = { + ["O"] = { 181564, 181565, 181566, 181567 }, + }, + ["start"] = { + ["U"] = { 16817, 16818 }, + }, + }, + [9411] = { + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 23567 }, + }, + }, + [9412] = { + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 23567 }, + }, + }, + [9413] = { + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 23567 }, + }, + }, + [9414] = { + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 23567 }, + }, + }, + [9415] = { + ["end"] = { + ["U"] = { 17080 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["race"] = 77, + ["start"] = { + ["U"] = { 17082 }, + }, + }, + [9416] = { + ["end"] = { + ["U"] = { 17079 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["race"] = 178, + ["start"] = { + ["U"] = { 17081 }, + }, + }, + [9419] = { + ["end"] = { + ["U"] = { 17080 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["U"] = { 17090 }, + }, + ["pre"] = { 9415 }, + ["start"] = { + ["U"] = { 17080 }, + }, + }, + [9422] = { + ["end"] = { + ["U"] = { 17079 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["U"] = { 18199 }, + }, + ["pre"] = { 9416 }, + ["start"] = { + ["U"] = { 17079 }, + }, + }, + [9458] = { + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 23567 }, + }, + }, + [9459] = { + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 23567 }, + }, + }, + [9477] = { + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 23567 }, + }, + }, + [9478] = { + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 23567 }, + }, + }, + [9479] = { + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 23567 }, + }, + }, + [9480] = { + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 23567 }, + }, + }, + [9481] = { + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 23567 }, + }, + }, + [9482] = { + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 23567 }, + }, + }, + [9556] = { + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 13180 }, + }, + ["race"] = 255, + }, + [9664] = { + ["end"] = { + ["U"] = { 17069 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["U"] = { 17689, 17690, 17696, 17698 }, + }, + ["race"] = 77, + ["start"] = { + ["U"] = { 17069 }, + }, + }, + [9665] = { + ["end"] = { + ["U"] = { 17072 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["U"] = { 17689, 17690, 17696, 17698 }, + }, + ["race"] = 178, + ["start"] = { + ["U"] = { 17072 }, + }, + }, +} + +-- Source: https://raw.githubusercontent.com/shagu/pfQuest-turtle/master/db/enUS/quests-turtle.lua +RelationshipsQuestAndItemBrowserData["quests"]["enUS-turtle"] = { + [1] = "_", + [73] = "_", + [105] = { + ["D"] = "Alas, the time to attack Andorhal and drive out the lich that controls it is upon us!$B$BInside the ruins of the city is where the lich - Araj the Summoner - holds dominion. He is guarded by numerous Scourge surrounding the remains of city\'s center, and his personal retinue of guardians attached to him directly is formidable. You will need numerous allies to even stand a chance of facing him successfully.$B$BDestroy Araj, $N, and bring me a shard from his phylactery as proof!", + ["O"] = "Bring Araj\'s Phylactery Shard to High Executor Derrington at the Bulwark, Western Plaguelands.", + ["T"] = "Alas, Andorhal", + }, + [108] = "_", + [129] = { + ["D"] = "Can you do me a favor? I\'ve prepared a lunch for Guard Parker, but he\'s out on patrol... he\'s a big, strong Stormwind guard who can defend himself, but it\'s much too dangerous out there for a townsperson like me.$B$BSo if you deliver his lunch for me and come back here, I\'ll give you a free lunch! Parker patrols the stretch of road leading to Duskwood.", + ["O"] = "Bring Parker\'s lunch to Guard Parker. He patrols the road leading to Darkshire.", + ["T"] = "A Free Lunch", + }, + [137] = "_", + [172] = { + ["D"] = "You\'re willing to help us here at the orphanage? Bless you, friend; your aid during Children\'s Week will be invaluable.$B$BTake this whistle. You will only be able to use it for a short amount of time - typically not longer than Children\'s Week itself. When you use it, you will be able to talk with the child you\'ve agreed to look after. Using it again will dismiss the child.$B$BBy all means $N - use the whistle and meet your ward! I\'m sure the child will be most eager to meet you.", + ["O"] = "Use the Orcish Orphan Whistle to talk with the child you will be looking after during Children\'s Week.", + ["T"] = "Children\'s Week", + }, + [211] = { + ["D"] = "Alas, the time to attack Andorhal and drive out the lich that controls it is upon us!$B$BInside the ruins of the city is where the lich - Araj the Summoner - holds dominion. He is guarded by numerous Scourge surrounding the remains of city\'s center, and his personal retinue of guardians attached to him directly is formidable. You will need numerous allies to even stand a chance of facing him successfully.$B$BDestroy Araj, $N, and bring me a shard from his phylactery as proof!", + ["O"] = "Bring Araj\'s Phylactery Shard to Commander Ashlam Valorfist at Chillwind Camp, Western Plaguelands.", + ["T"] = "Alas, Andorhal", + }, + [236] = { + ["D"] = "A few weeks ago, I dispatched Watcher Callahan and a few others to the northern border of Duskwood to deal with the wolf infestation. I haven\'t heard word from him for quite some time. If he followed my instructions, he\'ll be camped out on the road north from Darkshire. $B$BIf it\'s on your way, please check up on him and inform him that I am awaiting a progress report from him.", + ["O"] = "Speak with Watcher Callahan.", + ["T"] = "Watcher Callahan", + }, + [241] = "_", + [242] = "_", + [259] = "_", + [260] = "_", + [279] = { + ["D"] = "Murlocs are crawling out from the deep waters and building their villages on the coastline. They are harassing our fishers and merchants and must be stopped.$B$BOne of these murlocs, Gobbler, skulks with other bluegill murlocs and harries merchants along the road, always then retreating to the safety of the nearby murloc hovels. Our merchants are in jeopardy, and we will pay to secure them.$B$BGobbler prowls the river inlet north of here. Find him, slay his kin, and bring me his head.", + ["O"] = "Kill 12 Bluegill Murlocs.$B$BSlay Gobbler and take his head.$B$BBring Gobbler\'s Head to Karl Boran in Menethil Harbor.", + ["T"] = "Claws from the Deep", + }, + [316] = "_", + [352] = "_", + [390] = "_", + [406] = "_", + [462] = "_", + [490] = "_", + [497] = "_", + [534] = "_", + [539] = { + ["D"] = "The Hillsbrad Town Registry indicates that the Azurelode Mine is under Alliance control. Furthermore, the mine is a prime source of iron ore for the Alliance armories.$b$bEven though we\'ve struck a decisive blow to the town of Hillsbrad, the Alliance still supports and protects the Azurelode Mine fervently.$b$bThe mine lies due south of Hillsbrad. Go there and slay the foreman, a human by the name of Bonds. Kill his miners as well. That should send a clear message to the Alliance.", + ["O"] = "Kill Foreman Bonds and 10 Hillsbrad Miners and report back to Darthalia in Tarren Mill.", + ["T"] = "Battle of Hillsbrad", + }, + [548] = "_", + [551] = { + ["D"] = "This parchment is enchanted with a spell, rendering it indecipherable. But one word at the top of the paper can be read:$B$B$B Nagaz$B$B", + ["O"] = "Take the Ensorcelled Parchment to Loremaster Dibbs in Southshore.", + ["T"] = "The Ensorcelled Parchment", + }, + [620] = "_", + [774] = "_", + [785] = "_", + [790] = { + ["D"] = "$C! I thought I would die out here with none to know of it. While I was hunting the scorpids of the Valley, I came across a particularly vicious-looking one. Hurling myself at it, I managed to inflict a massive blow to its claw before it closed around my leg.$b$bI wasn\'t ready for its stinger though, and it sliced down and into my chest, cutting into my flesh and letting my blood.$b$bPlease, you must kill the scorpid for me! My honor must be upheld! I fought it up on the plateau to the south.", + ["O"] = "Kill Sarkoth and bring his claw back to Hana\'zua.", + ["T"] = "Sarkoth", + }, + [796] = "_", + [797] = "_", + [798] = "_", + [799] = "_", + [800] = "_", + [801] = "_", + [802] = "_", + [803] = "_", + [807] = { + ["D"] = "My scouts report that some of the wildlife has become infected with a demonic taint. They wander among their brethren as normal beasts, but evil power flows through them. Burning inside each is a heart scorched by dark magic. These beasts must be destroyed!$B$BIf you find such an animal while you explore, kill it and collect its scorched heart. Bring me what you find through your travels for study and then I\'ll have them destroyed.", + ["O"] = "Bring 5 Scorched Hearts to Orgnil Soulscar in Razor Hill.", + ["T"] = "[Deprecated] Durotar Scouring", + }, + [810] = { + ["D"] = "You would do well to learn how dangerous this land can be, $c. The wildlife here can teach us incredible things, if we are wise enough to listen to their lessons.$B$BThe scorpids are a perfect example of survival in Durotar. While the land has become harsh and more unforgiving, their hardened carapaces protect them from the brutal sun and the deadly weapons of hunters. We could be wise to take on some of their strength as they now dominate the environment.$B$BBring me 6 Small Scorpid Carapaces from the Clattering Scorpids, $N, and I will see to your reward.", + ["O"] = "Bring 6 Small Scorpid Carapaces to Kor\'ghan in Sen\'jin Village.", + ["T"] = "Study to Survive", + }, + [811] = { + ["D"] = "One of the other traits of the scorpids is their fierce loyalty. They will protect one another at personal risk - you\'ve probably already seen this behavior during your first hunt. You\'d do well to heed that lesson and adapt it to yourself: we are stronger as one; we are weak when divided.$B$BBring me 8 Large Scorpid Carapaces from Armored Scorpids and I\'ll grant you another reward.", + ["O"] = "Bring 8 Large Scorpid Carapaces to Kor\'ghan in Cleft of Shadows.", + ["T"] = "Unity is Strength", + }, + [814] = { + ["D"] = "Cook and clean--that\'s all I do!$B$BYou want to eat, you get me some more meat! I don\'t have all day to hunt and prepare food for all these louses. You got to learn to pull your own weight around here if you wanna be treated equal.$B$BGet me some Chunks of Boar Meat if you want to make yourself useful... or you don\'t want to starve to death.", + ["O"] = "Bring 10 Chunks of Boar Meat to Cook Torka in Razor Hill.", + ["T"] = "Work for Food", + }, + [820] = { + ["D"] = "Truly a spirit of strength resides in your body, willing to help an old man brew his potions.$B$BThe generosity found in our new home and the strength of relying on our allies is what sets us apart from others, $c.$B$BI need one more thing to begin brewing a batch of my potion, eight shimmerweed.$B$BYou can find the herbs northwest of Razor Hill in Thunder Ridge, and be careful, $N.", + ["O"] = "Bring 8 Shimmerweed to Master Vornal in Sen\'jin Village.", + ["T"] = "What Do You Rely On?", + }, + [832] = { + ["D"] = "$B$BGazz\'uz?$B$BGazz\'uz... report!$B$BThere is word of your discovery in Skull Rock. You must prepare for an attack!$B$BGazz\'uz, I order you to speak!$B$BSpeak or I will make sure Neeru Fireblade knows of your presence, and he will descend on you with swift brutality.$B$BDo not test your skills against Neeru...$B$B...Gazz\'uz, are you there...?", + ["O"] = "Take this eye to Neeru Fireblade.", + ["T"] = "Burning Shadows", + }, + [839] = "_", + [856] = "_", + [881] = { + ["D"] = "Whitemist, Echeyakee in the Tauren tongue, is the king of the savannah cats. He hunts with such stealth, they say he\'s like a thin, white mist on the earth. And he kills so fast his prey have no time for fear, or pain.$B$BThe Tauren say he is both mercy and death.$B$BYou will learn if that\'s true, for I now set you on the path to hunt Echeyakee. His lair is northeast of the Crossroads, among the bones of giant Kodo.$B$BGo. Blow this horn when you reach his lair. Blow the horn, and he will come.", + ["O"] = "Bring Echeyakee\'s Hide to Sergra Darkthorn at the Crossroads.", + ["T"] = "Echeyakee", + }, + [904] = "_", + [912] = "_", + [942] = { + ["D"] = "This fossil bears a striking resemblance to one I once saw in Ironforge. An archaeologist by the name of Flagongut brought it to our annual Explorers\' League conference. He believed the fossil had a power which could be unlocked somehow.$b$bLast I heard Flagongut had holed up in the Deepwater Tavern in Menethil Harbor, awaiting escort to the Whelgar Excavation Site. Seek him out and show him Remtravel\'s fossil. Perhaps he can reveal the secrets of the past.$b$bThe ship to Menethil departs from Theramore.", + ["O"] = "Take the mysterious fossil to Archaeologist Flagongut in Menethil Harbor.", + ["T"] = "The Absent Minded Prospector", + }, + [946] = "_", + [969] = { + ["D"] = "Ah, I can tell just by lookin\' at ya -- you be wantin\' to make a lucky charm. Mau\'ari always knows!$B$BTo da south. you\'ll find a canyon, an\' giants made a\' solid ice. The giants sometimes be carryin\' dem, but ya can always gather da shards yerself from da canyon. These shards have a powerful reflective quality.$B$BBring back 10 frostmaul shards, and my lucky charm will be yours.", + ["O"] = "Collect 10 Frostmaul Shards for Witch Doctor Mau\'ari in Everlook.", + ["T"] = "Luck Be With You", + }, + [987] = "_", + [999] = "_", + [1005] = "_", + [1006] = "_", + [1032] = { + ["D"] = "I can\'t believe that Anilia is gone... We used to play together in the forests all the time. I almost feel... sad.$B$BI know something that might make me feel better. Please, slay the satyrs that took Anilia from me! Bring me their horns as proof of your actions and you will forever have my gratitude.$B$B", + ["O"] = "Bring 16 Satyr Horns to Illiyana in the Shrine of Aessina.", + ["T"] = "Satyr Slaying!", + }, + [1072] = { + ["D"] = "The device I\'m thinking about is my most advanced version to date. But we\'ll need a special potion if it\'s to work. I\'m thinking we might as well get the good stuff since this mission could be your last.$B$BAnd for that, we\'re going to need some potent explosives: Nitromirglyceronium.$B$BThe only person who can make NG-5 is an old friend of mine: Lomac Gearstrip. Look for him in the Gnomeregan Reclamation Facility.$B$BYou talk him into making us some NG-5, I\'ll get to work on placement for my devices.", + ["O"] = "Speak to Lomac Gearstrip at the Gnomeregan Reclamation Facility in Dun Morogh.", + ["T"] = "An Old Colleague", + }, + [1073] = { + ["D"] = "Hahaha... you need Nitromirglyceronium to stop goblins from destroying a forest?!$B$BI don\'t care if you know Gaxim or not... I\'ll give you the stuff just to see you or them explode into itty bitty pieces.$B$BThere\'s a problem though: I\'m all out.$B$BBut I\'ll tell you what, you bring me the correct potions, and I\'ll make some up for you right away.$B$BThe least you can do is prove you\'ve got some skill as an alchemist before I just give you a sample of my greatest creation.", + ["O"] = "Bring 4 Minor Mana Potions and 2 Elixirs of Fortitude to Lomac Gearstrip at the Gnomeregan Reclamation Facility in Dun Morogh.", + ["T"] = "Ineptitude + Chemicals = Fun", + }, + [1099] = "_", + [1155] = "_", + [1156] = "_", + [1157] = { + ["D"] = "TODO", + ["O"] = "TODO", + ["T"] = "Alexstrasza", + }, + [1158] = { + ["D"] = "TODO", + ["O"] = "TODO", + ["T"] = "Malygos", + }, + [1161] = "_", + [1162] = "_", + [1163] = "_", + [1174] = "_", + [1251] = { + ["D"] = "An iron shield, blackened by the fire that raged through the inn, is affixed to the crumbling chimney, one of the few remaining parts of the structure that once made up the Shady Rest Inn.$b$bThe shield can be removed from the brick of the chimney.", + ["O"] = "Bring the Blackened Iron Shield to Krog in Brackenwall Village.", + ["T"] = "The Black Shield", + }, + [1263] = "_", + [1277] = "_", + [1278] = "_", + [1279] = "_", + [1280] = "_", + [1281] = "_", + [1283] = "_", + [1293] = "_", + [1294] = "_", + [1295] = "_", + [1296] = "_", + [1297] = "_", + [1299] = "_", + [1300] = "_", + [1383] = { + ["D"] = "I have just the right serum in mind. It will deal with the truth in precisely the way the truth should be dealt with.$B$BFor this concoction I will need several Shadow Panther hearts from the Swamp. I also require the enchanted fungus off of the Mire Lord who resides there. I am sure one as able as you, $N, can persuade him to part with some.$B$BNow the hard part will be locating a Deepstrider tumor from far-off Desolace. Very rarely the giants there become ill and a tumor forms.$B$BNow, off you go!", + ["O"] = "Apothecary Faustin at Beggar\'s Haunt needs 5 Shadow Panther Hearts, Mire Lord Fungus and a Deep Strider Tumor.", + ["T"] = "Nothing But The Truth", + }, + [1385] = { + ["D"] = "Desolace is a land at war. The centaurs wage war with each other, and we believe the victor among them will spill out and threaten our strongholds. That, we cannot allow.$B$BWe must learn how to beat the centaurs, and to do that... we must ally with one of the clans. The Magram centaurs war with the Gelkis. If you fight the Gelkis then the Magram might consider an alliance.$B$BEarn the favor of the Magrams then speak with Warug, in the Magram village in southeastern Desolace.", + ["O"] = "Gain a Friendly reputation with the Magram, then speak with Warug.", + ["T"] = "Brutal Politics", + }, + [1441] = "_", + [1459] = { + ["D"] = "Next on Leftwitch\'s list is... let\'s see... hmm. Oh, here it is.$B$BSimple enough, but pretty explicit in his directions. He needs venom from the scorpashi, and hide from some kodo. The fine print says both are from specific creatures: the venom\'s got to come from any of the scorpashi, and the hide\'s got to come from an aged kodo, not the dying or ancient ones.$B$BMages, I tell ya, some of the stuff they want... it\'s just weird.", + ["O"] = "Bring 7 vials of Scorpashi Venom and 3 Aged Kodo Hides to Kreldig Ungor in Desolace.", + ["T"] = "Reagents for Reclaimers Inc.", + }, + [1460] = "_", + [1461] = "_", + [1462] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Earth Sapta", + }, + [1463] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Earth Sapta", + }, + [1471] = { + ["D"] = "Surely you have seen the circle of summoning below us? Only there will you be able to draw forth an unbound voidwalker.$B$BUsing these runes, you will be able to draw it forth, and then you must dominate it through strength of arms and magic.$B$BWhen it is subdued, it will be indentured to you. Come to me then, and I will elucidate the spell of summoning, so that it may serve you to whatever end you wish.", + ["O"] = "Using the Runes of Summoning, summon and subdue a voidwalker, then return the Runes of Summoning to Carendin Halgar in the Magic Quarter of the Undercity.", + ["T"] = "The Binding", + }, + [1500] = "_", + [1505] = { + ["D"] = "The Horde honors its warriors because their strength is unquestioned. But the truly great warriors are great students as well.$B$BSeek out Uzzek. He is a veteran of many battles and now instructs young warriors in the ways of combat. You will find him south of Far Watch Post, the orc garrison on the border of the Barrens and Durotar.", + ["O"] = "Speak with Uzzek at Far Watch Post.", + ["T"] = "Veteran Uzzek", + }, + [1653] = { + ["D"] = "Actually, I have no doubt that Jordan himself would like to thank you, and seeing as I need a messenger to send word that his wife is safe, I think you\'d be a perfect choice.$B$BJordan was to be a paladin of the Light before his dedication to his father\'s craft took him on another path--he\'s intimately familiar with our way of life and is considered among our most faithful.$B$BHe should still be in Ironforge--he likes to work outside the gates during the day, something about the cool mountain air.", + ["O"] = "Speak to Jordan Stilwell in Ironforge.", + ["T"] = "The Test of Righteousness", + }, + [1659] = "_", + [1660] = "_", + [1704] = { + ["D"] = "I made a copy of my notes on the techniques I learned while making your armor, and need someone to take them to Klockmort Spannerspan. He\'s a gnomish blacksmith in the Gnomeregan Reclamation Facility and when he learns what I\'ve learned... I bet he\'ll pull off his own beard in excitement.", + ["O"] = "Bring Furen\'s Notes to Klockmort Spannerspan.", + ["T"] = "Klockmort Spannerspan", + }, + [1708] = { + ["D"] = "I want to try Furen Longbeard\'s new techniques on my own piece of armor. And because you helped Furen and he helped me, you\'re welcome to the armor after I make it!$B$BTo finish the piece, I need a special coral, searing coral. It grows in only one place--along the coast south of Menethil Harbor in the Wetlands.$B$BBring me enough searing coral and I\'ll get right to work on the armor. And hurry, $N. I\'m so eager to get started it\'s making my toes twist!", + ["O"] = "Bring 20 loads of Searing Coral to Klockmort Spannerspan at the Gnomeregan Reclamation Facility.", + ["T"] = "Iron Coral", + }, + [1795] = { + ["D"] = "If you are sufficiently prepared, then we should begin. Let me explain the process to you.$B$BI will begin by creating the basic summoning circle. When that is finished, my acolytes will use the rods of channeling to create the greater circle.$B$BOnce that is done, read the incantation from the Tome of the Cabal, and the felhunter will be pulled forth. Be careful, $N. A felhunter is a powerful foe, and I\'d like to see you keep your head on your shoulders.", + ["O"] = "Using the Tome of the Cabal, summon and subdue a felhunter, then return the Tome of the Cabal to Strahad Farsan in Ratchet.", + ["T"] = "The Binding", + }, + [2741] = { + ["D"] = "", + ["O"] = " ", + ["T"] = "The Super Egg-O-Matic", + }, + [2865] = { + ["D"] = "The scarabs of Tanaris have very hard shells! Hard enough to use as a building material for lots of things. So many things!$B$BIn fact, those shells are so useful... the scarabs were hunted all to near extinction!$B$BI know where there are more scarabs, and if you promise to bring me their shells then I\'ll tell you where they are. Promise?$B$BOk, the scarabs have a colony in Zul\'Farrak. I guess the trolls don\'t hunt them for their shells.$B$BBut you can! Go to Zul\'Farrak and get me uncracked shells!", + ["O"] = "Bring 5 Uncracked Scarab Shells to Tran\'rek in Gadgetzan.", + ["T"] = "Scarab Shells", + }, + [2868] = "_", + [2922] = { + ["D"] = "When our beloved city Gnomeregan fell, a rogue spark must have jolted my poor creation, Techbot. It once aided me and my associates with its countless gizmos and limitless store of information, but its positronic brain has polarized. Now it\'s negatronic... and Techbot\'s behaviors are reversed. It roams Gnomeregan in a frenzy!$B$BBut perhaps it can be salvaged. Perhaps, if you can retrieve Techbot\'s memory core and bring it to me, I can discover the cause of the polarization and fix my poor Techbot.$B$B", + ["O"] = "Bring Techbot\'s Memory Core to Tinkmaster Overspark at the Gnomeregan Reclamation Facility.", + ["T"] = "Save Techbot\'s Brain!", + }, + [2923] = { + ["D"] = "Tinkmaster Overspark is very upset with the fate of his mechanical creation, Techbot. I remember Techbot as a kind and helpful tool for the gnomes, but Overspark tells me it\'s malfunctioned.$B$BVery sad. But with luck perhaps he can be fixed!$B$BSpeak with Tinkmaster Overspark, in the Gnomeregan Reclamation Facility in Dun Morogh. He would welcome your help.", + ["O"] = "Speak with Tinkmaster Overspark at the Gnomeregan Reclamation Facility in Dun Morogh.", + ["T"] = "Tinkmaster Overspark", + }, + [2924] = { + ["D"] = "A nigh-universal mechanical component--the essential artificial--was of great use to the tinkers and smiths of Gnomeregan. But during the frantic exodus from our city, no one remembered to take any of these devices with them! And I need a large supply of them for work I will soon undertake.$B$BPlease, go into Gnomeregan and get me some essential artificials. You\'ll find them in the deeper areas of our city, held in containers called artificial extrapolators.$B$BThank you, $N, and please hurry!", + ["O"] = "Bring 12 Essential Artificials to Klockmort Spannerspan at the Gnomeregan Reclamation Facility.", + ["T"] = "Essential Artificials", + }, + [2925] = { + ["D"] = "A gnome friend, Klockmort Spannerspan, sent word to me from Ironforge. He tells me he needs help on a dangerous, but essential, mission into Gnomeregan, the once great gnome city now contaminated and filled with mad gnomes and their devices.$B$BI must stay here, but my heart aches to help my friend. If you can go in my stead, then I would be much indebted to you.$B$BYou may find Klockmort at the Gnomeregan Reclamation Facility, in Dun Morogh.", + ["O"] = "Speak with Klockmort Spannerspan at the Gnomeregan Reclamation Facility in Dun Morogh.", + ["T"] = "Klockmort\'s Essentials", + }, + [2930] = { + ["D"] = "When we fled Gnomeregan, we left so much data behind! Vitally important data!$B$BI need the data on a prismatic punch card, from a Matrix Punchograph 3005-D high security terminal, deep in Gnomeregan. You must access the terminal, but to do that you first need clearance... and to get that you must access lower security terminals-- models -A, -B and -C. And to do THAT you need security punch cards, starting with white... and we left all the punch cards in the city.$B$BIt\'s a catastrophe! Can you help?", + ["O"] = "Bring a Prismatic Punch Card to Master Mechanic Castpipe at the Gnomeregan Reclamation Facility in Dun Morogh.", + ["T"] = "Data Rescue", + }, + [2931] = { + ["D"] = "Master Mechanic Castpipe in the Gnomeregan Reclamation Facility has need of adventurers! He\'s organizing bands to reenter Gnomeregan on a data retrieval mission of top security and importance.$B$BCastpipe might not be a member of the Enlightened Assembly of Arcanology, Alchemy and Engineering Sciences like I am, but he\'s still a smart gnome so if he thinks it\'s important, then by my calculations there\'s an eighty-four percent probability that it really is important!$B$BThose are good odds!", + ["O"] = "Speak with Master Mechanic Castpipe at the Gnomeregan Reclamation Facility in Dun Morogh.", + ["T"] = "Castpipe\'s Task", + }, + [2971] = "_", + [3064] = "_", + [3111] = { + ["D"] = "While you were helping me out, this glyph was given to me to pass on to you. Take some time to read it when you have a chance. I\'m thinkin\' it came from the mage trainer Marrek. Take a gander at it and go find him inside Anvilmar when you\'ve a chance.", + ["O"] = "Speak to Marrek Stromnur inside Anvilmar.", + ["T"] = "Glyphic Rune", + }, + [3241] = "_", + [3383] = "_", + [3384] = "_", + [3401] = "_", + [3403] = "_", + [3404] = "_", + [3405] = "_", + [3422] = "_", + [3423] = "_", + [3424] = "_", + [3425] = "_", + [3515] = "_", + [3516] = "_", + [3528] = { + ["D"] = "Now it is time to capture the essence of the avatar of Hakkar.$B$BTake the Egg of Hakkar to the Sanctum of the Fallen God in the Sunken Temple in Azeroth. Invoke the egg\'s power to stir the dead god.$B$BHe will send his minions against you. Defeat his blood drinkers and take their Hakkari blood, then use the blood to dowse the eternal flames that hold Hakkar\'s spirit. When all the flames go out, the avatar of Hakkar will enter our world.$B$BDefeat him, and place his essence within the egg of Hakkar.", + ["O"] = "Bring the Filled Egg of Hakkar to Yeh\'kinya in Tanaris.", + ["T"] = "The God Hakkar", + }, + [3529] = "_", + [3578] = { + ["D"] = "Ah, I\'ve been expecting my Rah\'pawene, Samantha Swifthoof and she\'s yet to come! I\'m confused...$B$BCan you help me and find her? Last time we spoke she was so much excited to see the new places and travel at her leisure from a port to some distant forests and northern regions of the Eastern Kingdoms, alas, the only port I know nearby is the Ratchet.$B$BI\'m most certain Samantha braved to the ferry and swam to the Booty Bay.$B$BWhere could she travel to from there I do not know. Perhaps you could find her for me? Just to be sure she\'s fine...", + ["O"] = "Find Samantha Swifthoof.", + ["T"] = "Swift as a Swifthoof", + }, + [3579] = { + ["D"] = "Yes, I\'ve travelled this far on my own hooves and yes I\'m very tired, alas, my wanderlust is too strong to be ignored, I just can not stop and be idle even for a minute knowing that so many roads are to be discovered and forests traversed and plains to be run over... oh, the world is so vast, I could travel all my life!$B$BHowever, as you can see, I\'m falling down from all the hoofwork I\'ve endured to the moment.$B$BOh, if only I could have our famous Compressing Bandage to aid my muscles to feel well again!", + ["O"] = "Bring 10 Heavy Silk Bandages, 5 Fadeleaf, 10 Earthroots and 10 bottles of Refreshing Spring Water to Samantha Swifthoof.", + ["T"] = "Have Hoof Will Travel", + }, + [3580] = { + ["D"] = "I feel so much better now! So invigorated and excited! Oh, this is wonderful!$B$BThank you, $N, thank you so much.$B$BBesides the strength of the will and very durable hooves you will need a Blessing of the Wind to help you run as fast as all of us Swifthoof do! I know just a tauren who can guide you on this.$B$BHis name is Jorn Skyseer. Last time I spoke to him was at the Camp Taurajo in Southern Barrens. Ahh, the Golden Road, so luring...", + ["O"] = "Speak to Jorn Skyseer at the Camp Taurajo.", + ["T"] = "Plains To Run, Sky To See", + }, + [3581] = { + ["D"] = "Imagine yourself racing across the plains, through forests and over mountains, the wind in your face... Traveling over unseen territory; the wonder of the road ahead, your destiny resting just over the horizon.$B$BAlways remember that on hoof, many things are achievable; as a Tauren, you will be granted the swiftness of Plainsrunning. There is no limit to the distances you might go.", + ["O"] = "Speak to Saern Priderunner to learn the Plainsrunning skill.", + ["T"] = "Plainsrunning", + }, + [3622] = "_", + [3630] = { + ["D"] = "Engineering at the expert level breaks into two disciplines: gnome and goblin. While I think it is a waste, you should be aware of gnome specialization. They make items and gadgets that claim to change the world, but rarely often work.$B$B$N, read this manual. If you wish to learn how to make metal paper weights, then take that manual to Tinkmaster Overspark in the Gnomeregan Reclamation Facility. Remember - membership is permanent and prevents joining the other discipline, so make sure you are sure before finishing his task!", + ["O"] = "If you wish to learn more about Gnome Engineering, take the Manual of Engineering Disciplines to Tinkmaster Overspark at the Gnomeregan Reclamation Facility in Dun Morogh.", + ["T"] = "Gnome Engineering", + }, + [3632] = { + ["D"] = "Engineering at the expert level breaks into two disciplines: gnome and goblin. While I think it is a waste, you should be aware of gnome specialization. They make items and gadgets that claim to change the world, but rarely often work.$B$B$N, read this manual. If you wish to learn how to make metal paper weights, then take that manual to Tinkmaster Overspark in the Gnomeregan Reclamation Facility. Remember - membership is permanent and prevents joining the other discipline, so make sure you are sure before finishing his task!", + ["O"] = "If you wish to learn more about Gnome Engineering, take the Manual of Engineering Disciplines to Tinkmaster Overspark at the Gnomeregan Reclamation Facility in Dun Morogh.", + ["T"] = "Gnome Engineering", + }, + [3634] = { + ["D"] = "Engineering at the expert level breaks into two disciplines: gnome and goblin. While I think it is a waste, you should be aware of gnome specialization. They make items and gadgets that claim to change the world, but rarely often work.$B$B$N, read this manual. If you wish to learn how to make metal paper weights, then take that manual to Tinkmaster Overspark in the Gnomeregan Reclamation Facility. Remember - membership is permanent and prevents joining the other discipline, so make sure you are sure before finishing his task!", + ["O"] = "If you wish to learn more about Gnome Engineering, take the Manual of Engineering Disciplines to Tinkmaster Overspark at the Gnomeregan Reclamation Facility in Dun Morogh.", + ["T"] = "Gnome Engineering", + }, + [3640] = { + ["D"] = "Gnome engineering is about engineering theory shaped to serve our needs! Our schemata allow us to make devices that control the world around us; the manual you read covered this.$B$BThe manual also covered our ages old oath of secrecy on our schemata. Once you become a gnome engineer, that\'s that. There is no access to goblin engineering at all.$B$BIf you still want to become a gnome engineer, sign this document pledging life-long secrecy and speak with me again. Think about it carefully, $N.", + ["O"] = "If you agree to become a Gnome Engineer, then right-click on the Pledge of Secrecy and speak once more with Tinkmaster Overspark at the Gnomeregan Reclamation Facility in Dun Morogh.", + ["T"] = "The Pledge of Secrecy", + }, + [3641] = { + ["D"] = "As your mentor, I want some samples of your work. You\'re a skilled engineer; there is no question of this, $N. What I hope to do though is to analyze your work for ways to emphasize gnome-oriented techniques in your future efforts. I need the following samples: six mithril tubes, an accurate scope, and two advanced target dummies.$B$BSubmit these items to me and I will issue you your own Gnome Engineer Membership Card; it is required for access to all gnome engineering trainers!", + ["O"] = "Bring 6 Mithril Tubes, an Accurate Scope, and 2 Advanced Target Dummies to Tinkmaster Overspark at the Gnomeregan Reclamation Facility in Dun Morogh.", + ["T"] = "Show Your Work", + }, + [3885] = "_", + [3911] = "_", + [4105] = { + ["D"] = "There be something other than demons on my mind, mon. My tribe, my own people. Lost to the madness of bad, very bad voodoo. One day the Loa be seeking our Speaker in his slumber. The Loa asked for strong mojo to be made, the Mojo of Dreams.$B$BA mojo that strong needed blessed water, blessed by the Dragons. So I be finding my way to the big green portal. There I found the demons and dirtied my hands with their blood as the Speaker ran away! When I be returning home, my own people sneered at me in hostility. Sent me away. No part of the Shadeflayers, they said.$B$BBad, bad voodoo took over their mind mon. But to fix bad voodoo, you be needing to pay blood and good mojo. Both price of blood and mojo can be paid in Zul\'Hatha. Where you will find Gan\'hota the Speaker with his Mojo of Dreams. Not far you be finding Warlord Hanzento, whose blood you need to spill. He be the reason for this foolishness and this be the right way to set things right!", + ["O"] = "", + ["T"] = "Salve via Gathering", + }, + [4265] = { + ["D"] = "The pod splits opens some when you touch it, revealing a night elven male who is surprisingly still alive. He seems to be in good health, though deeply stunned. As you help him down from the pod, he stirs to life.$B$B\"Thank Elune - you\'ve saved me, friend! I... I\'m Raschal, and I awoke paralyzed inside this pod after these bugs overwhelmed me. Were you sent by the Stronghold?\"$B$BIt would seem that you\'ve found the missing courier!", + ["O"] = "Free Raschal from the Zukk\'ash hive.$B$BReturn to Ginro Hearthkindle in Feathermoon Stronghold and let him know that Raschal is alive and well.", + ["T"] = "Freed from the Hive", + }, + [4299] = "_", + [4323] = "_", + [4542] = { + ["D"] = "Brave traveler, the centaurs have increased their attacks in this area. Freewind Post must know about this renewed harassment immediately! Seek Cliffwatcher Longhorn at Freewind Post to the southeast and give him this urgent message.$b$bBe warned, avoid the Grimtotem Clan nearby... they have been acting strange toward us lately.$B$B", + ["O"] = "Bring the Urgent Message to Cliffwatcher Longhorn at Freewind Post.", + ["T"] = "Message to Freewind Post", + }, + [4905] = "_", + [5053] = "_", + [5054] = { + ["D"] = "In the snowy mountains of Winterspring, to the northwest, a skilled hunter stalks his prey... I speak of Ursius of the shardtooth bears, an agile and clever beast.$B$BI send you now against him. He roams the sloping hills to the northwest of Everlook. Find and hunt him, before he discovers your intent.$B$BAll that have gone up against Ursius have quickly found themselves to be the prey, and he, the hunter. Stay on your guard.", + ["O"] = "Storm Shadowhoof at Everlook in Winterspring wants you to kill Ursius.", + ["T"] = "Ursius of the Shardtooth", + }, + [5055] = { + ["D"] = "Swift, and clever, Brumeran glides silently across the snowy landscape of southern Winterspring. But do not let her graceful appearance convince you that she is harmless. All that cross her pay considerably, and often with their own lives.$B$BSeek out Brumeran of the chillwind among the chimera. Defeat her, then return again to me.", + ["O"] = "Storm Shadowhoof at Everlook in Winterspring wants you to kill Brumeran.", + ["T"] = "Brumeran of the Chillwind", + }, + [5056] = { + ["D"] = "In northern Winterspring, great cats assemble around a large landmark called Frostsaber Rock. The leader of these cats is known by the name Shy-Rotam. Defeating the matriarch of the frostsabers would grant you much respect in the eyes of your fellow $r.$B$BGo again to the harsh wilds, and once there, gather sacred meat from the frostsabers. Find the stone of Shy-Rotam, and place it there. Placing the meat of her kin before her will summon Shy-Rotam, in anger.$B$BBe ready for her fury, and defeat her.", + ["O"] = "Storm Shadowhoof at Everlook in Winterspring wants you to defeat Shy-Rotam.", + ["T"] = "Shy-Rotam", + }, + [5101] = "_", + [5144] = { + ["D"] = "Elemental leatherworking is what I know, and if you\'re willing to open your mind to the greater powers of substance, I will share with you all there is to learn.$B$BKnow this, $c: by choosing this path you agree never to learn dragonscale or tribal leatherworking; there is only room for practice of one of the three arts. Furthermore, I\'ll need adequate proof that you are in tune with the elements of nature; to that end, bring me the purest essences of fire, water, earth, and wind.", + ["O"] = "Bring 2 Heart of Fire, 2 Globe of Water, 2 Core of Earth, and 2 Breath of Wind to Sarah Tanner in Searing Gorge.$B$BCompleting this quest will give you access to the Elemental Leatherworking arts.$B$BThe completion of this quest will prevent you from learning Dragonscale Leatherworking and Tribal Leatherworking; be sure this is the path you wish to follow before doing so.", + ["T"] = "Elemental Leatherworking", + }, + [5146] = { + ["D"] = "Elemental leatherworking is what I know, and if you\'re willing to open your mind to the greater powers of substance, I will share with you all there is to learn.$B$BKnow this, $c: by choosing this path you agree never to learn dragonscale or tribal leatherworking; there is only room for practice of one of the three arts. Furthermore, I\'ll need adequate proof that you are in tune with the elements of nature; to that end, bring me the purest essences of fire, water, earth, and wind.", + ["O"] = "Bring 2 Heart of Fire, 2 Globe of Water, 2 Core of Earth, and 2 Breath of Wind to Brumn Winterhoof in the Arathi Mountains.$B$BCompleting this quest will give you access to the Elemental Leatherworking arts.$B$BThe completion of this quest will prevent you from learning Dragonscale Leatherworking and Tribal Leatherworking; be sure this is the path you wish to follow before doing so.", + ["T"] = "Elemental Leatherworking", + }, + [5163] = { + ["D"] = "It\'s all ready, $N!$B$BNow, I sent some mail to my friends already, telling them that I have a surprise for them. This is where you come in!$B$BI\'m going to give you my mechanical yeti, and you need to surprise them by paying each of my friends a visit, turning the yeti on and sending it towards them.$B$BOnce you have shown Legacki in Everlook, Sprinkle in Gadgetzan, and Quixxil in Marshal\'s Refuge, come back and tell me what happened!$B$BPlease bring my yeti back to me then, too.", + ["O"] = "Take Umi\'s Mechanical Yeti and scare her friends with it:$B$BLegacki in Everlook (Winterspring)$BSprinkle in Gadgetzan (Tanaris)$BQuixxil in Marshal\'s Refuge (Un\'Goro Crater)$B$BWhen you are done, bring the Mechanical Yeti back to Umi.", + ["T"] = "Are We There, Yeti?", + }, + [5166] = { + ["D"] = "The forging of a powerful breastplate to protect against the unrelenting attacks of the chromatic flight is one built upon irony.$B$BThe scales of the very beasts we battle must be sewn to the pristine carapace of an elder chromatic drake or dragon. None are known to exist at this time and we should hope that none will ever exist.$B$BLastly, perhaps the most difficult of all components: the blood of heroes.$B$BThe Sculptor must ultimately forge this creation.", + ["O"] = "To forge the Breastplate of the Chromatic Flight, you will be required to bring the following items to Jeziba the \'Sculptor\':$B$B1 Chromatic Carapace.$B$B10 Brilliant Chromatic Scales.$B$B10 Blood of Heroes.$B$B10 Frayed Abomination Stitchings.", + ["T"] = "Breastplates of the Chromatic Flight", + }, + [5205] = "_", + [5207] = "_", + [5208] = "_", + [5209] = "_", + [5214] = { + ["D"] = "Terrible thing... what happened to Fras. You see, the town was sacked and Fras didn\'t want to leave his precious goods behind. The last thing I remember him saying was, \'I\'ll burn every last leaf before they get their damned, dirty hands on them!\'$B$BI may love a good stogie but I\'m no fool. I left Fras and his delightful store that day. I assume he went down in flames but if there\'s a chance that even one box of his famous tobacco is still intact...$B$BWhat do you say, $N? Find a box for ol\' Smokey?", + ["O"] = "Find Halric Emberlain\'s smoke shop in Stratholme and recover a box of Emberlain\'s Premium Tobacco. Return to Smokey LaRue when the job is done.", + ["T"] = "Echoes of a Salesman", + }, + [5383] = "_", + [5506] = "_", + [5512] = "_", + [5516] = "_", + [5520] = "_", + [5523] = "_", + [5524] = { + ["D"] = "$G Brother : Sister; $N - your deeds on behalf of the Argent Dawn are far too numerous to be recounted easily. As a fitting tribute, I\'ll part with one of our special Chromatic Mantles of the Dawn - a version that protects the wearer from all forms of resistible magic simultaneously. Chromatic Mantles of the Dawn are reserved for only the mightiest of the Dawn\'s heroes!$B$BBring to me twenty-five valor tokens as a sign of tribute, and I\'ll give you the finest of all our mantles.", + ["O"] = "Bring 25 Argent Dawn Valor Tokens to Quartermaster Hasana at the Bulwark or Quartermaster Lightspark at Chillwind Camp, Western Plaguelands or Quartermaster Breechlock at Light\'s Hope Chapel, Eastern Plaguelands.", + ["T"] = "Chromatic Mantle of the Dawn", + }, + [5530] = "_", + [5532] = "_", + [5640] = { + ["D"] = "Praise be to Elune, and to your Light, $n.$b$bAbout this time, many of our order learn abilities reflecting their faith in Elune. If knowledge serves me, I believe the same holds true for your order also.$b$bWhen your business in Darnassus is complete, I would seek out one of your High Priestesses for further training., and may the Light be with you.", + ["O"] = "Speak to High Priestess Laurena in Stormwind.", + ["T"] = "Desperate Prayer", + }, + [5641] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Resillience of the Mountain", + }, + [5645] = { + ["D"] = "$N, your High Priest Rohan would have an audience with you in Ironforge. Make haste, my strong friend, your next test quickly approaches. Although I wish I could bear witness to your race\'s own special rites, my place is here. But may the Light go with you in your travels. Rohan should still be in the Mystic Ward once you reach the city. He will be waiting.", + ["O"] = "Speak to High Priest Rohan in Ironforge.", + ["T"] = "Resillience of the Mountain", + }, + [5647] = { + ["D"] = "Your race is so very strong, $n. We are proud to call you allies. And as each day\'s sun sets, you and your kin grow closer to not only finding your true origins, but find great confidence that you are on the right path in so many things. That feeling must make you feel so triumphant.$b$bWord came from Ironforge just recently. It asked that you return there and speak to High Priest Rohan in the Mystic Ward. I would not keep him waiting. May Elune guide your travels.", + ["O"] = "Speak to High Priest Rohan in Ironforge.", + ["T"] = "Resillience of the Mountain", + }, + [5674] = { + ["D"] = "A wonderful day has come, $N. You\'ve reached the age in which our priests are trained in abilities only Night elves know. But it is not for me to train you. You must return to the Temple of the Moon and speak to Priestess Alathea as soon as your business here is concluded. She will test you to ensure you\'re prepared, and only then will she teach you the ancient tradition of archery mastered by our order.", + ["O"] = "Speak to Priestess Alathea in Darnassus.", + ["T"] = "Elune\'s Grace", + }, + [5803] = { + ["D"] = "Araj the Summoner lords over Andorhal from the ruined city\'s heart. We know that he was the former leader of Scholomance before claiming the city as his own. To finish the key, we will need his signet - called a scarab - mounted as the head of the key.$B$BMake your way into the heart of Andorhal, and break his hold on the city now that he is drawn into the open. Once destroyed, seize his scarab from his fallen phylactery!$B$BThe Key to Scholomance awaits, $N!", + ["O"] = "Destroy Araj the Summoner and bring Araj\'s Scarab to Alchemist Arbington at Chillwind Point, Western Plaguelands.", + ["T"] = "Araj\'s Scarab", + }, + [5804] = { + ["D"] = "Araj the Summoner lords over Andorhal from the ruined city\'s heart. We know that he was the former leader of Scholomance before claiming the city as his own. To finish the key, we will need his signet - called a scarab - mounted as the head of the key.$B$BMake your way into the heart of Andorhal, and break his hold on the city now that he is drawn into the open. Once destroyed, seize his scarab from his fallen phylactery!$B$BThe Key to Scholomance awaits, $N!", + ["O"] = "Destroy Araj the Summoner and bring Araj\'s Scarab to Apothecary Dithers at the Bulwark, Western Plaguelands.", + ["T"] = "Araj\'s Scarab", + }, + [5805] = "_", + [5841] = "_", + [5842] = "_", + [5843] = "_", + [5844] = "_", + [5847] = "_", + [6086] = { + ["D"] = "$N, ya now have the power to tame a pet, but you must also gain the skills ta train it.$B$BTravel to Ironforge and find the Hall of Arms. There you must speak to one of our most revered animal trainers, Belia Thundergranite. She\'ll give ya the power to train your new pet, so get goin\' $Glad:lass;!$B$BBelia is a friendly sort; you should have no problems gaining her approval. Good luck, $N.", + ["O"] = "Speak with Belia Thundergranite in Ironforge.", + ["T"] = "Training the Beast", + }, + [6131] = { + ["D"] = "The Timbermaw are the only furbolg tribe to escape the corruption. However, many other races kill furbolg blindly now, without bothering to see if they are friend or foe. For this reason, the Timbermaw furbolg trust very few.$B$BAre you interested in proving yourself? Drive back the corrupted Deadwood tribe of Felwood and we may one day consider you an ally. You\'ll find the first Deadwood tribe - warriors, pathfinders and gardeners - to my west.", + ["O"] = "Grazle wants you to prove yourself by killing 5 Deadwood Warriors, 5 Deadwood Pathfinders, and 5 Deadwood Gardeners.", + ["T"] = "Timbermaw Ally", + }, + [6143] = { + ["D"] = "Maybe you heard or maybe you haven\'t... my crew and I was out fishing near Ranazjar Isle, north of the wrecked ship off the coast up north. We used to fish there all the time; now all I do is think of a way to seek revenge for my fallen comrades.$B$BThe naga attacked us one morning, killing everyone except me.$B$BMe conscience can\'t handle the guilt, $c; I need you to go and fry them naga for me. I\'ll make the effort worth your while; you think you can help me with that?", + ["O"] = "Slay 7 Slitherblade Myrmidon, 7 Slitherblade Naga, and 5 Slitherblade Sorceresses, and then talk to Drulzegar at Shadowprey in Desolace.", + ["T"] = "Other Fish to Fry", + }, + [6165] = { + ["D"] = "The details about this quest are missing", + ["O"] = "The description of this quest is missing", + ["T"] = "Archmage Timolain\'s Remains", + }, + [6201] = "_", + [6386] = { + ["D"] = "My wind riders are trained to fly to many different places, as long as you have already been to that place and spoken with the wind rider master there.$B$BYou have been to the Crossroads and spoken to their wind rider master Devrak, so now you can fly directly to him from here. Once you\'re at the Crossroads, you can deliver Gryshka\'s letter to Zargh.$B$BSpeak with me when you are ready to go.", + ["O"] = "Buy a wind rider to the Crossroads from the wind rider master Doras, then bring Gryshka\'s Letter to Zargh at the Crossroads.", + ["T"] = "Return to the Crossroads", + }, + [6401] = { + ["D"] = "Tell Tammra Windfield, Kaya\'s aunt who\'s at Sun Rock Retreat, about the good news! Kaya is alive! We had thought she was lost after the brutal attack on our village. Follow the path to the west to get to Sun Rock Retreat.$B$B", + ["O"] = "Tell Tammra Windfield in Sun Rock Retreat the good news.", + ["T"] = "Kaya\'s Alive", + }, + [6402] = { + ["D"] = "You are to meet with Windsor at the gates of Stormwind.$B$BWhat Windsor is about to unveil will shake the very foundation of the kingdom!$B$BDo not attempt to venture there alone, $N. You must amass an army! Gather your compatriots. To arms! $B$B", + ["O"] = "Travel to Stormwind City and venture to the city gates. Speak with Squire Rowe so that he may let Marshal Windsor know that you have arrived.", + ["T"] = "Stormwind Rendezvous", + }, + [6421] = { + ["D"] = "Something is amiss here in Stonetalon. Can you feel the tension in the air, $N?$B$BSoutheast of here lies a deep cave in Boulderslide Ravine. The kobolds there are frantically mining a rare crystal called Resonite. I need you to bring back some ore samples so that I can understand what\'s happening in that cave. I also need you to investigate the depth of that cave.$B$BGo young $c, it\'s imperative I know what evil lurks under these mountains.", + ["O"] = "Explore deep into the cave at Boulderslide Ravine and bring back 10 Resonite Crystals for Mor\'rogal at Sun Rock Retreat to investigate.", + ["T"] = "Boulderslide Ravine", + }, + [6548] = { + ["D"] = "The Grimtotem Clan raided my village and killed most everyone. I killed all I could, but barely escaped with my life.$b$b$N, all I wish now is that more of them are dead. You will find them just to the west of here.$B$B", + ["O"] = "Kill 8 Grimtotem Ruffians and 6 Grimtotem Mercenaries, and then return to Makaba Flathoof near the southeastern edge of Stonetalon.", + ["T"] = "Avenge My Village", + }, + [6603] = { + ["D"] = "There\'s trouble in Winterspring!$B$BWhy, sure, I spend some time out in the wilds and know about these things... I\'m always mighty proud to say it. I consider the hours I spend out there in the hills to be golden. Help you cultivate quick reflexes, a cool head and a keen eye...$B$BIt takes judgement, brains and maturity to appreciate the wilderness in the way that I do.$B$BNow, what was I talking about?$B$BAh yes, trouble. See Donova Snowden at the hot springs and she can tell you more.$B$B", + ["O"] = "Find Donova Snowden near the hot springs in Winterspring.", + ["T"] = "Trouble in Winterspring!", + }, + [6606] = { + ["D"] = "We can always use a little luck, eh? A small advantage is all it takes to turn things in your favor...$B$BI happened to make the acquaintance of a rather eccentric witch doctor some time back. She made me a lucky charm... for a price. Believe me, though, it was well worth it!$B$BMaybe you\'d be interested in one of your own? Find Witch Doctor Mau\'ari in Everlook. I\'m not giving mine up!", + ["O"] = "Speak with Witch Doctor Mau\'ari in Everlook.", + ["T"] = "A Little Luck", + }, + [6824] = { + ["D"] = "$N, your service is of great value to us, so we are reluctant to send you on this last mission for we do not want to lose such a useful agent.$B$BBut its success would further our war efforts tremendously and... it was deemed worth risking you.$B$BWe want these captains in the Molten Core destroyed: Lucifron, Sulfuron, and Shazzrah. Kill them and bring me their hands!$B$BThis task will take every resource you possess, $N, but if can do it then the Firelords will be dealt a terrible blow.", + ["O"] = "Bring the Hands of Lucifron, Sulfuron, and Shazzrah to Duke Hydraxis.", + ["T"] = "Hands of the Enemy", + }, + [6841] = "_", + [6842] = "_", + [6861] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Zinfizzlex\'s Portable Shredder Unit", + }, + [6862] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Zinfizzlex\'s Portable Shredder Unit", + }, + [6984] = { + ["D"] = "We at Smokywood Pastures appreciate the recovery of the stolen treats, $N. For that, we\'d like to offer you a special gift... presented by none other than Great-father Winter himself!$B$BPlease, speak with Great-father Winter, and he will give you your Feast of Winter Veil gift from us here at Smokywood Pastures. From our farm to your plate, it\'s always Smokywood Pastures wholesome goodness... thanks to you, of course!", + ["O"] = "Speak with Great-father Winter in Orgrimmar.", + ["T"] = "A Smokywood Pastures Thank You!", + }, + [7002] = { + ["D"] = "While some of our soldiers are busy capturing wolves for the stable master, others must provide for the simple necessities that riding requires. I am speaking of riding harnesses, of course.$B$BYou must strike at the indigenous rams of the region. The very same rams that the Stormpike cavalry uses as mounts!$B$BSlay them and return to me with their hides. Once we have gathered enough hides, we will fashion harnesses for the riders. The Frostwolf Wolf Riders will ride once more!", + ["O"] = "null", + ["T"] = "Ram Hide Harnesses", + }, + [7026] = { + ["D"] = "", + ["O"] = "null", + ["T"] = "Ram Riding Harnesses", + }, + [7045] = { + ["D"] = "We at Smokywood Pastures appreciate the recovery of the stolen treats, $N. For that, we\'d like to offer you a special gift... presented by none other than Greatfather Winter himself!$B$BPlease, speak with Greatfather Winter, and he will give you your Feast of Winter Veil gift from us here at Smokywood Pastures. From our farm to your plate, it\'s always Smokywood Pastures wholesome goodness... thanks to you, of course!", + ["O"] = "Speak with Greatfather Winter in Ironforge.", + ["T"] = "A Smokywood Pastures Thank You!", + }, + [7069] = "_", + [7221] = "_", + [7222] = "_", + [7381] = { + ["D"] = "While it is true that Korrak has been slain, one question remains: Will he remain dead? Trolls are notorious for their other-worldly tribal magics. I would not be surprised if the fallen leader was raised from the dead to once more rule over his clan.$B$BYou know what to do should this ever occur.$B$B$B$BAnd this time, I want his skull. Just keep your eyes peeled, soldier.$B$BDismissed!", + ["O"] = "Should Korrak the Bloodrager make a return to the Snowfall Graveyard, seek him out and destroy him.$B$BReturn the Skull of Korrak to Warmaster Laggrond in the Hillsbrad Foothills.", + ["T"] = "The Return of Korrak", + }, + [7382] = { + ["D"] = "There\'s something not quite right about all of this... Did anybody think to burn Korrak\'s corpse? Those trolls will stop at nothing to revive their fallen leader - as blue skinned pagan man-beasts often do.$B$BJust keep your eyes out, $N. Don\'t be alarmed if Korrak makes a surprise appearance; and if he does, I want him executed - his corpse burned to ashes.$B$BFor good measure, lop off his head and bring me his skull before you ignite the lifeless mass.", + ["O"] = "Should Korrak the Bloodrager make a return to the Snowfall Graveyard, seek him out and destroy him.$B$BReturn the Skull of Korrak to Lieutenant Haggerdin in the Hillsbrad Foothills.", + ["T"] = "Korrak the Everliving", + }, + [7383] = { + ["D"] = "All was not well with Teldrassil, however. Staghelm\'s carefully made plans for the new World Tree had borne out as he had hoped, but there was one small problem, a problem to which many of the troubles on Teldrassil may be attributed.$B$BHowever, I will not get into that yet. You must visit the last moonwell, to the northwest in the Oracle Glade. Under the boughs of the Oracle Tree lies the first and most powerful of our wells. Retrieve a phial of its water and return to me.", + ["O"] = "Fill the Amethyst Phial and bring it back to Corithras Moonrage in Dolanaar.", + ["T"] = "Crown of the Earth", + }, + [7385] = { + ["D"] = "You have the option of offering larger quantities of the blood taken from our enemies. I will be glad to accept gallon sized offerings, $N.", + ["O"] = "null", + ["T"] = "A Gallon of Blood", + }, + [7386] = { + ["D"] = "There are times which you may be entrenched in battle for days or weeks on end. During those longer periods of activity you may end up collecting large clusters of the Frostwolf\'s storm crystals.$B$BThe Circle accepts such offerings, $N.", + ["O"] = "null", + ["T"] = "Crystal Cluster", + }, + [7487] = { + ["D"] = "Rifts stir, tear, and collapse all around us, $r. Not two paces from where I stand is a tear leading through the depths of Blackrock Mountain, into the maw of the Firelord.$B$BSurprised? Pity... The mortal races cannot comprehend that which they cannot see, touch, or feel.$B$BI assure you, the portal is there and access is possible.$B$BI\'ve piqued your interest? Attunement is simple. Venture into Blackrock Depths and retrieve a core fragment. Return it to me and I shall attune your essence with the portal.", + ["O"] = "Venture to the Molten Core entry portal in Blackrock Depths and recover a Core Fragment. Return to Lothos Riftwaker in Blackrock Mountain when you have recovered the Core Fragment.", + ["T"] = "Attunement to the Core", + }, + [7653] = { + ["D"] = "", + ["O"] = "For the belt plans, I\'ll be needin\' 20 thorium bars.", + ["T"] = "Imperial Plate Belt", + }, + [7654] = { + ["D"] = "", + ["O"] = "For the boot plans, I\'ll be needin\' 40 thorium bars. Yep, 40. Are you gonna cry? Would you like a hanky?", + ["T"] = "Imperial Plate Boots", + }, + [7655] = { + ["D"] = "", + ["O"] = "For the bracer plans, I\'ll be needin\' 20 thorium bars.", + ["T"] = "Imperial Plate Bracer", + }, + [7656] = { + ["D"] = "", + ["O"] = "For the chest piece plans, I\'ll be needin\' 60 thorium bars.Oh boy, there you go again. Are you gonna be runnin\' to yer blue Gods, askin\' why they have forsaken you?!?Toughen up, Nancy! Nobody ever said life\'s fair.", + ["T"] = "Imperial Plate Chest", + }, + [7657] = { + ["D"] = "", + ["O"] = "Just hand over 50 thorium bars and the helm plans are yers.", + ["T"] = "Imperial Plate Helm", + }, + [7658] = { + ["D"] = "", + ["O"] = "Just hand over 60 thorium bars and the leg plans are yers.I know, I\'m driving you into bankruptcy! I\'ve heard it all before so you can save your sob story, weakling.", + ["T"] = "Imperial Plate Leggings", + }, + [7659] = { + ["D"] = "", + ["O"] = "For the shoulder plans, I\'ll be needin\' 20 thorium bars.", + ["T"] = "Imperial Plate Shoulders", + }, + [7660] = "_", + [7661] = "_", + [7662] = "_", + [7663] = "_", + [7664] = "_", + [7665] = "_", + [7668] = { + ["D"] = "Death Knight Darkreaver lords over the Great Ossuary in the Scholomance. He threatens to twist the spirit realm to do his own bidding, and he must be stopped! This is where the scryer you helped make comes into play.$B$BUse the divination scryer in the heart of the Great Ossuary\'s basement to call forth Darkreaver\'s spirit minions. Defeat the spirits and the death knight himself will appear. $N, bring me his head! Only his demise will reverse the damage done to the spirit realm!", + ["O"] = "Use the Divination Scryer in the heart of the Great Ossuary\'s basement in the Scholomance. Doing so will bring forth spirits you must fight. Defeating these spirits will summon forth Death Knight Darkreaver; defeat him.$B$BBring Darkreaver\'s Head to Sagorne Creststrider in the Valley of Wisdom, Orgrimmar.", + ["T"] = "The Darkreaver Menace", + }, + [7669] = "_", + [7670] = "_", + [7671] = "_", + [7672] = "_", + [7673] = "_", + [7674] = "_", + [7675] = "_", + [7676] = "_", + [7677] = "_", + [7678] = "_", + [7681] = "_", + [7682] = "_", + [7704] = "_", + [7788] = { + ["D"] = "Beyond this tunnel you will find a field of strife and turmoil, young $c. The Horde continue to decimate our sacred forest, cutting down the evergreen foliage to power their machines of war.$B$BEnter Warsong Gulch and defend Silverwing Hold. Push back the invading Horde forces!$B$BDo this, and earn a talisman of merit. Bring me such a talisman, $N, and I shall reward you.", + ["O"] = "Enter Warsong Gulch and defeat the Horde, obtain a Warsong Gulch Mark of Honor, and return to Sentinel Farsong at the Silverwing Grove.", + ["T"] = "Vanquish the Invaders!", + }, + [7789] = { + ["D"] = "The wilds of the Ashenvale forest will succumb to the might of the Horde, $r. Nothing the Silverwing say or do can stop our sovereign imperative. Kalimdor belongs to the Horde. How dare they attempt to prevent us from harvesting what is rightfully ours!$B$BLet the pride swell in your chest as you cut down their weak attempts at slowing our progress. Destroy the Silverwing Sentinels, and earn a Warsong mark of honor. Return to me with such a mark, $N, and you will be rewarded.$B", + ["O"] = "Enter Warsong Gulch and defeat the Alliance, gain a Warsong Gulch Mark of Honor, and bring it to Captain Shatterskull at the Mor\'shan Base Camp.", + ["T"] = "Quell the Silverwing Usurpers", + }, + [7790] = "_", + [7791] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Wool: Stormwind", + }, + [7792] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Wool: Darnassus", + }, + [7793] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Silk: Stormwind", + }, + [7794] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Mageweave: Stormwind", + }, + [7795] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Runecloth: Stormwind", + }, + [7796] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Additional Runecloth: Stormwind", + }, + [7797] = "_", + [7798] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Silk: Darnassus", + }, + [7799] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Mageweave: Darnassus", + }, + [7800] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Runecloth: Darnassus", + }, + [7801] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Additional Runecloth: Darnassus", + }, + [7802] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Wool: Ironforge", + }, + [7803] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Silk: Ironforge", + }, + [7804] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Mageweave: Ironforge", + }, + [7805] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Runecloth: Ironforge", + }, + [7806] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Additional Runecloth: Ironforge", + }, + [7807] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Wool: Gnomeregan", + }, + [7808] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Silk: Gnomeregan", + }, + [7809] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Mageweave: Gnomeregan", + }, + [7811] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Runecloth: Gnomeregan", + }, + [7812] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Additional Runecloth: Gnomeregan", + }, + [7813] = { + ["D"] = "As with most other fabrics, our stocks of wool are at an all-time low. Our stores are such that we\'d only need sixty pieces of wool from you total; we should be able to reach our goal with the support of others.$B$BA benevolent gift such as wool, might I add, would certainly increase your local standing in the community! If you have the sixty pieces of wool cloth on you and are ready to donate them, I\'m able to take them from you now.", + ["O"] = "", + ["T"] = "A Donation of Wool: Undercity", + }, + [7814] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Silk: Undercity", + }, + [7817] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Mageweave: Undercity", + }, + [7818] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Runecloth: Undercity", + }, + [7819] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Additional Runecloth: Undercity", + }, + [7820] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Wool: Thunder Bluff", + }, + [7821] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Silk: Thunder Bluff", + }, + [7822] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Mageweave: Thunder Bluff", + }, + [7823] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Runecloth: Thunder Bluff", + }, + [7824] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Runecloth: Orgrimmar", + }, + [7825] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Additional Runecloth: Thunder Bluff", + }, + [7826] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Wool: Orgrimmar", + }, + [7827] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Silk: Orgrimmar", + }, + [7831] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Mageweave: Orgrimmar", + }, + [7832] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Additional Runecloth: Orgrimmar", + }, + [7833] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Wool: Darkspear Tribe", + }, + [7834] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Silk: Darkspear Tribe", + }, + [7835] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Mageweave: Darkspear Tribe", + }, + [7836] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Runecloth: Darkspear Tribe", + }, + [7837] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Additional Runecloth: Darkspear Tribe", + }, + [7871] = { + ["D"] = "Beyond this tunnel you will find a field of strife and turmoil, young $c. The Horde continue to decimate our sacred forest, cutting down the evergreen foliage to power their machines of war.$B$BEnter Warsong Gulch and defend Silverwing Hold. Push back the invading Horde forces!$B$BDo this, and earn a talisman of merit. Bring me such a talisman, $N, and I shall reward you.", + ["O"] = "Enter Warsong Gulch and defeat the Horde, obtain a Warsong Gulch Mark of Honor, and return to Sentinel Farsong at the Silverwing Grove.", + ["T"] = "Vanquish the Invaders!", + }, + [7872] = { + ["D"] = "Beyond this tunnel you will find a field of strife and turmoil, young $c. The Horde continue to decimate our sacred forest, cutting down the evergreen foliage to power their machines of war.$B$BEnter Warsong Gulch and defend Silverwing Hold. Push back the invading Horde forces!$B$BDo this, and earn a talisman of merit. Bring me such a talisman, $N, and I shall reward you.", + ["O"] = "Enter Warsong Gulch and defeat the Horde, obtain a Warsong Gulch Mark of Honor, and return to Sentinel Farsong at the Silverwing Grove.", + ["T"] = "Vanquish the Invaders!", + }, + [7873] = { + ["D"] = "Beyond this tunnel you will find a field of strife and turmoil, young $c. The Horde continue to decimate our sacred forest, cutting down the evergreen foliage to power their machines of war.$B$BEnter Warsong Gulch and defend Silverwing Hold. Push back the invading Horde forces!$B$BDo this, and earn a talisman of merit. Bring me such a talisman, $N, and I shall reward you.", + ["O"] = "Enter Warsong Gulch and defeat the Horde, obtain a Warsong Gulch Mark of Honor, and return to Sentinel Farsong at the Silverwing Grove.", + ["T"] = "Vanquish the Invaders!", + }, + [7874] = { + ["D"] = "The wilds of the Ashenvale forest will succumb to the might of the Horde, $r. Nothing the Silverwing say or do can stop our sovereign imperative. Kalimdor belongs to the Horde. How dare they attempt to prevent us from harvesting what is rightfully ours!$B$BLet the pride swell in your chest as you cut down their weak attempts at slowing our progress. Destroy the Silverwing Sentinels, and earn a Warsong mark of honor. Return to me with such a mark, $N, and you will be rewarded.$B", + ["O"] = "Enter Warsong Gulch and defeat the Alliance, gain a Warsong Gulch Mark of Honor, and bring it to Captain Shatterskull at the Mor\'shan Base Camp.", + ["T"] = "Quell the Silverwing Usurpers", + }, + [7875] = { + ["D"] = "The wilds of the Ashenvale forest will succumb to the might of the Horde, $r. Nothing the Silverwing say or do can stop our sovereign imperative. Kalimdor belongs to the Horde. How dare they attempt to prevent us from harvesting what is rightfully ours!$B$BLet the pride swell in your chest as you cut down their weak attempts at slowing our progress. Destroy the Silverwing Sentinels, and earn a Mark of Honor. Return to me with such a Mark, $N, and you will be rewarded.", + ["O"] = "Enter Warsong Gulch and defeat the Alliance, gain a Warsong Gulch Mark of Honor, and bring it to Captain Shatterskull at the Mor\'shan Base Camp.", + ["T"] = "Quell the Silverwing Usurpers", + }, + [7876] = { + ["D"] = "The wilds of the Ashenvale forest will succumb to the might of the Horde, $r. Nothing the Silverwing say or do can stop our sovereign imperative. Kalimdor belongs to the Horde. How dare they attempt to prevent us from harvesting what is rightfully ours!$B$BLet the pride swell in your chest as you cut down their weak attempts at slowing our progress. Destroy the Silverwing Sentinels, and earn a Warsong mark of honor. Return to me with such a mark, $N, and you will be rewarded.$B", + ["O"] = "Enter Warsong Gulch and defeat the Alliance, gain a Warsong Gulch Mark of Honor, and bring it to Captain Shatterskull at the Mor\'shan Base Camp.", + ["T"] = "Quell the Silverwing Usurpers", + }, + [7886] = { + ["D"] = "", + ["O"] = "You obtained a Silverwing Talisman of Merit for your last task, talk to me again, and you gain your reward.", + ["T"] = "Talismans of Merit", + }, + [7887] = { + ["D"] = "You have proven your value to our efforts in Warsong Gulch. Continue to aid the cause and bring me more talismans of merit. Do this, and you will earn even more of our trust.", + ["O"] = "You obtained a Silverwing Talisman of Merit for your last task, talk to me again, and you gain your reward.", + ["T"] = "Talismans of Merit", + }, + [7888] = { + ["D"] = "You have proven your value to our efforts in Warsong Gulch. Continue to aid the cause and bring me more talismans of merit. Do this, and you will earn even more of our trust.", + ["O"] = "You obtained a Silverwing Talisman of Merit for your last task, talk to me again, and you gain your reward.", + ["T"] = "Talismans of Merit", + }, + [7904] = "_", + [7908] = "_", + [7921] = { + ["D"] = "", + ["O"] = "You obtained a Silverwing Talisman of Merit for your last task, talk to me again, and you gain your reward.", + ["T"] = "Talismans of Merit", + }, + [7922] = { + ["D"] = "", + ["O"] = "You obtained a Warsong Mark of Honor for your last task, talk to me again, and you gain your reward.", + ["T"] = "Mark of Honor", + }, + [7923] = { + ["D"] = "You have proven your value to our efforts in Warsong Gulch. Continue to rage against the Silverwing Sentinels! Bring me more marks of honor!", + ["O"] = "You obtained a Warsong Mark of Honor for your last task, talk to me again, and you gain your reward.", + ["T"] = "Mark of Honor", + }, + [7924] = { + ["D"] = "You have proven your value to our efforts in Warsong Gulch. Continue to rage against the Silverwing Sentinels! Bring me more marks of honor!", + ["O"] = "You obtained a Warsong Mark of Honor for your last task, talk to me again, and you gain your reward.", + ["T"] = "Mark of Honor", + }, + [7925] = { + ["D"] = "You have proven your value to our efforts in Warsong Gulch. Continue to rage against the Silverwing Sentinels! Bring me more marks of honor!", + ["O"] = "You obtained a Warsong Mark of Honor for your last task, talk to me again, and you gain your reward.", + ["T"] = "Mark of Honor", + }, + [7961] = "_", + [7962] = "_", + [8021] = "_", + [8022] = "_", + [8023] = "_", + [8024] = "_", + [8025] = "_", + [8026] = "_", + [8044] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Rage of Mount Mugamba", + }, + [8066] = { + ["D"] = "A predator knows how to stalk their prey, but a successful one knows how to strike at it once they have closed ranks. You must master both to have any chance of success in Zul\'Gurub... and any chance of being like the Zandalar predators.$B$BBring me choice parts of the Paragons of Power from within Zul\'Gurub. My reward will be the power that the trinkets yield, while yours will be the Zandalar predator\'s belt - equipment well worth the trade.", + ["O"] = "Bring the following Paragons of Power from Zul\'Gurub to Falthir the Sightless: A Primal Hakkari Shawl. You must also have a reputation equal to or greater than Honored with the Zandalar Tribe.$B$BFalthir the Sightless is located on Yojamba Isle, Stranglethorn Vale.", + ["T"] = "Paragons of Power: The Predator\'s Belt", + }, + [8067] = { + ["D"] = "We Zandalar prize what we wear as a symbol of accomplishment. You don\'t need to be able to see what one wears to be able to sense what emanates from it - power transcends sight. The garments of the Zandalar predator are like this, and most cherished by them is the mantle they wear. It helps to obfuscate them from view... and to make their presence known when they wish it.$B$BThe Paragons of Power await your retrieval in Zul\'Gurub. Bring me what I seek, and the predator\'s mantle shall be yours.", + ["O"] = "Bring the following Paragons of Power from Zul\'Gurub to Falthir the Sightless: A Primal Hakkari Aegis. You must also have a reputation equal to or greater than Revered with the Zandalar Tribe.$B$BFalthir the Sightless is located on Yojamba Isle, Stranglethorn Vale.", + ["T"] = "Paragons of Power: The Predator\'s Mantle", + }, + [8068] = { + ["D"] = "Magic is a raw, primal force to be shaped by those strong enough to do it. Mojo is our extension of this power; one such potent manipulation of it is in the form of illusion. How can one truly hope to win against a foe that is not even really there? We Zandalar know the power of this, and as such illusionists hold a honored place within the tribe.$B$BTake the needed Paragons of Power from Zul\'Gurub - for this, honor from the tribe and a powerful mantle used by our best illusionists will be yours!", + ["O"] = "Bring Al\'tabim the All-Seeing a Primal Hakkari Shawl. You must also have a reputation equal to or greater than Honored with the Zandalar Tribe.$B$BAl\'tabim the All-Seeing is located on Yojamba Isle, Stranglethorn Vale.", + ["T"] = "Paragons of Power: The Illusionist\'s Mantle", + }, + [8069] = { + ["D"] = "The tribe acknowledges station and power through what we wear. Our vestments are made from the finest of materials, and interwoven with the mojo we use to make us powerful. Illusionists are no exception; their robes are said to embody the essence of illusion in their look. Legend states that their ancient robes never looked the same twice.$B$BI will give you an illusionist\'s robe, $N... but earn your place of reverence among the tribe first! Bring me the Paragons of Power from Zul\'Gurub!", + ["O"] = "Bring Al\'tabim the All-Seeing a Primal Hakkari Kossack. You must also have a reputation equal to or greater than Revered with the Zandalar Tribe.$B$BAl\'tabim the All-Seeing is located on Yojamba Isle, Stranglethorn Vale.", + ["T"] = "Paragons of Power: The Illusionist\'s Robes", + }, + [8070] = { + ["D"] = "Shortly after the fall of the Gurubashi, we Zandalar almost succumbed to a final defeat from evil within our own tribe. It was then that the confessors amongst us arose, preserving the tribe by banishing out those who would destroy their own kind. They not only keep us in tune with the spirits, but they also preserve the flesh.$B$BGo forth into Zul\'Gurub and witness first hand the depravity of Hakkar and the Gurubashi. Wrest the Paragons of Power that we seek from them; success will be rewarded!", + ["O"] = "Bring Al\'tabim the All-Seeing a Primal Hakkari Sash. You must also have a reputation equal to or greater than Honored with the Zandalar Tribe.$B$BAl\'tabim the All-Seeing is located on Yojamba Isle, Stranglethorn Vale.", + ["T"] = "Paragons of Power: The Confessor\'s Bindings", + }, + [8071] = { + ["D"] = "The confessors of the Zandalar all wear a distinctive mantle, marking them as the preservers of the tribe. These mantles are woven with powerful mojo that aids them in judging those who would threaten our tribe. As a priest, you too must spend your time judging those worthy and not; such a mantle would definitely be a blessing to you.$B$BIn exchange for fighting Hakkar\'s minions in Zul\'Gurub and bringing me the Paragons of Power I seek, I will give you a mantle worthy of our finest confessors.", + ["O"] = "Bring Al\'tabim the All-Seeing a Primal Hakkari Aegis. You must also have a reputation equal to or greater than Revered with the Zandalar Tribe.$B$BAl\'tabim the All-Seeing is located on Yojamba Isle, Stranglethorn Vale.", + ["T"] = "Paragons of Power: The Confessor\'s Mantle", + }, + [8072] = { + ["D"] = "One of Zandalar\'s legendary madcaps was Khar\'vaxal the Cracked. Legend states that when facing the enemies of the tribe for the first time, Kar\'xavan used his mantle specifically woven with \"the weave of madness\". His form was shrouded not only by the mantle, but also with the blinding speed of his twin daggers. Madcaps today cherish their mantle as a sign of their place in the tribe.$B$BBring to me the Paragons of Power I seek, and such a mantle will be yours to weave madness unto your own enemies.", + ["O"] = "Bring Falthir the Sightless a Primal Hakkari Girdle. You must also have a reputation equal to or greater than Honored with the Zandalar Tribe.$B$BFalthir the Sightless is located on Yojamba Isle, Stranglethorn Vale.", + ["T"] = "Paragons of Power: The Madcap\'s Mantle", + }, + [8073] = { + ["D"] = "My eyes failed me long ago, but I do not miss them. Even in a tribe such as ours - where one\'s vestments convey station and purpose - the most potent of garb exudes power that simple eyes cannot see. The prized tunic of the Zandalar madcap is no exception, exuding the raw power of chaos and madness that they are able to channel.$B$BThe Paragons of Power I need lie in Zul\'Gurub; bring me what I seek, and I will reward you with your own legendary tunic... one befitting a weaver of madness.", + ["O"] = "Bring Falthir the Sightless a Primal Hakkari Aegis. You must also have a reputation equal to or greater than Revered with the Zandalar Tribe.$B$BFalthir the Sightless is located on Yojamba Isle, Stranglethorn Vale.", + ["T"] = "Paragons of Power: The Madcap\'s Tunic", + }, + [8074] = { + ["D"] = "Augurs know the mojo of the elements, mon. They use it as a means to guide the tribe to glory. In the dark days after the Gurubashi Empire ripped itself up, our augurs led us to our safe haven in the South Seas. They\'ve also led us back here to the Vale, right back to the heart of evil brewin\' in Zul\'Gurub.$B$BBring me an offerin\' of the Paragons of Power from inside Zul\'Gurub and prove your worth to us. Do it and I\'ll give ya a belt that our augurs use - one with powerful mojo inside it!", + ["O"] = "Bring Maywiki of Zuldazar a Primal Hakkari Girdle. You must also have a reputation equal to or greater than Honored with the Zandalar Tribe.$B$BMaywiki of Zuldazar is located on Yojamba Isle, Stranglethorn Vale.", + ["T"] = "Paragons of Power: The Augur\'s Belt", + }, + [8075] = { + ["D"] = "The augurs of the Zandalar all wear a distinctive chest piece called a hauberk. It\'s fitted with the finest of silks and cloths, interwoven with strong chain. It\'s a symbol of not only their divinity, but also of their authority, mon. It\'s never wise to cross one whose life is devoted to speakin\' with the spirits...$B$BBring me an offerin\' of the Paragons of Power from inside Zul\'Gurub and prove your worth to us. Do it and I\'ll give ya one of the finest hauberks our augurs would ever hope to wear!", + ["O"] = "Bring Maywiki of Zuldazar a Primal Hakkari Tabard. You must also have a reputation equal to or greater than Revered with the Zandalar Tribe.$B$BMaywiki of Zuldazar is located on Yojamba Isle, Stranglethorn Vale.", + ["T"] = "Paragons of Power: The Augur\'s Hauberk", + }, + [8076] = { + ["D"] = "The demoniac seeks to embody power outright, not just possess it. More than one of our demoniacs has lost a fight with a demon; with our enemies threatening us - especially in Zul\'Gurub - the power that a demoniac is able to unleash on our foes is worth the sacrifice. Our survival depends on crushing those who would destroy us; the fall of the Gurubashi Empire taught us this.$B$BTravel to Zul\'Gurub and gain the Paragons of Power we need. Do this, and a valuable demoniac item shall be yours.", + ["O"] = "Bring Al\'tabim the All-Seeing a Primal Hakkari Sash. You must also have a reputation equal to or greater than Honored with the Zandalar Tribe.$B$BAl\'tabim the All-Seeing is located on Yojamba Isle, Stranglethorn Vale.", + ["T"] = "Paragons of Power: The Demoniac\'s Mantle", + }, + [8077] = { + ["D"] = "The ultimate symbol of power amongst the tribe is the garb we wear in battle. A demoniac\'s robes have fused fine runecloth and devastatingly powerful mojo into a single fabric. The visage of the robe is said to instill fear into the minds of all who see it... especially the demons that the demoniac will eventually dominate.$B$BFrom Zul\'Gurub, you must bring me a very specific set of the Paragons of Power. It will be difficult... but your success will assure you of acquiring a robe for yourself.", + ["O"] = "Bring Al\'tabim the All-Seeing a Primal Hakkari Kossack. You must also have a reputation equal to or greater than Revered with the Zandalar Tribe.$B$BAl\'tabim the All-Seeing is located on Yojamba Isle, Stranglethorn Vale.", + ["T"] = "Paragons of Power: The Demoniac\'s Robes", + }, + [8078] = { + ["D"] = "The ultimate vengeance waits within Zul\'Gurub. Hakkar must not rise again. Hakkar destroyed the Gurubashi Empire from within. No sacrifice was enough. The trolls are a shadow of former glories. I know this is because of Hakkar.$B$BBecome the vindicator you were meant to be. Wreak havoc on the minions of evil. Zul\'Gurub must taste Zandalar vengeance. Bring me proof in the Paragons of Power. You will receive the vindicator\'s belt. You will receive real power.$B$BGo.", + ["O"] = "Bring Jin\'rokh the Breaker a Primal Hakkari Girdle. You must also have a reputation equal to or greater than Honored with the Zandalar Tribe.$B$BJin\'rokh the Breaker is located on Yojamba Isle, Stranglethorn Vale.", + ["T"] = "Paragons of Power: The Vindicator\'s Belt", + }, + [8079] = { + ["D"] = "The vindicator\'s symbol of power is the breastplate. It is forged with powerful mojo. It is trusted only to those we revere. It is the Zandalar symbol of vengeance.$B$BTo become a vindicator is to become vengeance. Take the Paragons of Power we need from Zul\'Gurub. Bring them to us. We will take the mojo stolen from us. We will make the minions of Hakkar pay. We will reward you with the vindicator\'s breastplate.$B$BGo. Be our vengeance, $N.", + ["O"] = "Bring Jin\'rokh the Breaker a Primal Hakkari Kossack. You must also have a reputation equal to or greater than Revered with the Zandalar Tribe.$B$BJin\'rokh the Breaker is located on Yojamba Isle, Stranglethorn Vale.", + ["T"] = "Paragons of Power: The Vindicator\'s Breastplate", + }, + [8080] = { + ["D"] = "War must be fought with soldiers, any soldier will tell you. They\'ll also say that a battle fought with poor gear or on an empty stomach is lost before it starts!$B$BThat is why Arathi Basin is important. There are key areas in the basin that hold essential resources. Metals, weapons, food, lumber - all are needed, and all can be gained there.$B$BThat is what I want from you, $N. Enter Arathi Basin, win the battle by holding more bases than the enemy, and return to me with a crate of resources.", + ["O"] = "Win the battle for Arathi Basin, get an Arathi Basin Mark of Honor, and return it to Sergeant Maclear at Refuge Pointe.", + ["T"] = "Arathi Basin Mark of Honor!", + }, + [8115] = { + ["D"] = "$N, battling for the resources of Arathi Basin is a bloody undertaking. Your services to the League of Arathor are as needed as they are appreciated.$B$BAnd we have one more task for you.$B$BThe League wishes to make one strong push against the Defilers\' occupation of Arathi Basin. We want them driven out of every strategic point on the battlefield!$B$BIt will not be easy, but if anyone can get it done, it is you.", + ["O"] = "Control 5 bases in Arathi Basin at the same time, then return to Field Marshal Oslight at Refuge Pointe.", + ["T"] = "Control Five Bases", + }, + [8123] = { + ["D"] = "The League of Arathor is sparing no expense in their move to retake Arathi. They, and all the races of the Alliance, now stream to this distant region, intent on expanding their hold from Refuge Pointe. We must stop them, and the best means to stop them is to take their supplies.$B$BYou can help us, $N. Enter Arathi Basin, known for its rich mines, fertile land and skilled craftsman. Capture and control every base you can, win the battle, and return to me with the Mark of Honor you gain.", + ["O"] = "Win the battle for Arathi Basin, get an Arathi Basin Mark of Honor, and return it to Deathstalker Mortis at Hammerfall.", + ["T"] = "Cut Arathor Supply Lines", + }, + [8141] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Zandalrian Shadow Talisman", + }, + [8142] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Zandalrian Shadow Talisman", + }, + [8143] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Zandalrian Shadow Talisman", + }, + [8144] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Zandalrian Shadow Mastery Talisman", + }, + [8148] = { + ["D"] = "", + ["O"] = "", + ["T"] = "The Maelstrom\'s Wrath", + }, + [8154] = { + ["D"] = "War must be fought with soldiers, any soldier will tell you. They\'ll also say that a battle fought with poor gear or on an empty stomach is lost before it starts!$B$BThat is why Arathi Basin is important. There are key areas in the basin that hold essential resources. Metals, weapons, food, lumber - all are needed, and all can be gained there.$B$BThat is what I want from you, $N. Enter Arathi Basin, win the battle by holding more bases than the enemy, and return to me with a Mark of Honor.", + ["O"] = "Win the battle for Arathi Basin, get an Arathi Basin Mark of Honor, and return it to Sergeant Maclear at Refuge Pointe.", + ["T"] = "Arathi Basin Mark of Honor!", + }, + [8155] = { + ["D"] = "War must be fought with soldiers, any soldier will tell you. They\'ll also say that a battle fought with poor gear or on an empty stomach is lost before it starts!$B$BThat is why Arathi Basin is important. There are key areas in the basin that hold essential resources. Metals, weapons, food, lumber - all are needed, and all can be gained there.$B$BThat is what I want from you, $N. Enter Arathi Basin, win the battle by holding more bases than the enemy, and return to me with a Mark of Honor.", + ["O"] = "Win the battle for Arathi Basin, get an Arathi Basin Mark of Honor, and return it to Sergeant Maclear at Refuge Pointe.", + ["T"] = "Arathi Basin Mark of Honor!", + }, + [8156] = { + ["D"] = "War must be fought with soldiers, any soldier will tell you. They\'ll also say that a battle fought with poor gear or on an empty stomach is lost before it starts!$B$BThat is why Arathi Basin is important. There are key areas in the basin that hold essential resources. Metals, weapons, food, lumber - all are needed, and all can be gained there.$B$BThat is what I want from you, $N. Enter Arathi Basin, win the battle by holding more bases than the enemy, and return to me with a Mark of Honor.", + ["O"] = "Win the battle for Arathi Basin, get an Arathi Basin Mark of Honor, and return it to Sergeant Maclear at Refuge Pointe.", + ["T"] = "Arathi Basin Mark of Honor!", + }, + [8160] = { + ["D"] = "The League of Arathor is sparing no expense in their move to retake Arathi. They, and all the races of the Alliance, now stream to this distant region, intent on expanding their hold from Refuge Pointe. We must stop them, and the best means to stop them is to take their supplies.$B$BYou can help us, $N. Enter Arathi Basin, known for its rich mines, fertile land and skilled craftsman. Capture and control every base you can, win the battle, and return to me with the Mark of Honor you gain.", + ["O"] = "Win the battle for Arathi Basin, get an Arathi Basin Mark of Honor, and return it to Deathstalker Mortis at Hammerfall.", + ["T"] = "Cut Arathor Supply Lines", + }, + [8161] = { + ["D"] = "The League of Arathor is sparing no expense in their move to retake Arathi. They, and all the races of the Alliance, now stream to this distant region, intent on expanding their hold from Refuge Pointe. We must stop them, and the best means to stop them is to take their supplies.$B$BYou can help us, $N. Enter Arathi Basin, known for its rich mines, fertile land and skilled craftsman. Capture and control every base you can, win the battle, and return to me with the Mark of Honor you gain.", + ["O"] = "Win the battle for Arathi Basin, get an Arathi Basin Mark of Honor, and return it to Deathstalker Mortis at Hammerfall.", + ["T"] = "Cut Arathor Supply Lines", + }, + [8162] = { + ["D"] = "The League of Arathor is sparing no expense in their move to retake Arathi. They, and all the races of the Alliance, now stream to this distant region, intent on expanding their hold from Refuge Pointe. We must stop them, and the best means to stop them is to take their supplies.$B$BYou can help us, $N. Enter Arathi Basin, known for its rich mines, fertile land and skilled craftsman. Capture and control every base you can, win the battle, and return to me with the Mark of Honor you gain.", + ["O"] = "Win the battle for Arathi Basin, get an Arathi Basin Mark of Honor, and return it to Deathstalker Mortis at Hammerfall.", + ["T"] = "Cut Arathor Supply Lines", + }, + [8184] = { + ["D"] = "Zanza can create the ancient troll enchantments with the right components. $B$BThe first is a primal Hakkari idol that must be taken from the most powerful of the Hakkari lieutenants: Jin\'do and the Bloodlord.$B$BThe second is a punctured voodoo doll. These can be found in the piles of refuse that litter this foul place. Look inside the jinxed hoodoo piles.", + ["O"] = "Bring me these things and I will create a powerful enchantment for you!", + ["T"] = "Presence of Might", + }, + [8185] = { + ["D"] = "Zanza can create the ancient troll enchantments with the right components. $B$BThe first is a primal Hakkari idol that must be taken from the most powerful of the Hakkari lieutenants: Jin\'do and the Bloodlord.$B$BThe second is a punctured voodoo doll. These can be found in the piles of refuse that litter this foul place. Look inside the jinxed hoodoo piles.", + ["O"] = "Bring me these things and I will create a powerful enchantment for you!", + ["T"] = "Syncretist\'s Sigil", + }, + [8186] = { + ["D"] = "Zanza can create the ancient troll enchantments with the right components. $B$BThe first is a primal Hakkari idol that must be taken from the most powerful of the Hakkari lieutenants: Jin\'do and the Bloodlord.$B$BThe second is a punctured voodoo doll. These can be found in the piles of refuse that litter this foul place. Look inside the jinxed hoodoo piles.", + ["O"] = "Bring me these things and I will create a powerful enchantment for you!", + ["T"] = "Death\'s Embrace", + }, + [8187] = { + ["D"] = "Zanza can create the ancient troll enchantments with the right components. $B$BThe first is a primal Hakkari idol that must be taken from the most powerful of the Hakkari lieutenants: Jin\'do and the Bloodlord.$B$BThe second is a punctured voodoo doll. These can be found in the piles of refuse that litter this foul place. Look inside the jinxed hoodoo piles.", + ["O"] = "Bring me these things and I will create a powerful enchantment for you!", + ["T"] = "Falcon\'s Call", + }, + [8188] = { + ["D"] = "Zanza can create the ancient troll enchantments with the right components. $B$BThe first is a primal Hakkari idol that must be taken from the most powerful of the Hakkari lieutenants: Jin\'do and the Bloodlord.$B$BThe second is a punctured voodoo doll. These can be found in the piles of refuse that litter this foul place. Look inside the jinxed hoodoo piles.", + ["O"] = "Bring me these things and I will create a powerful enchantment for you!", + ["T"] = "Vodouisant\'s Vigilant Embrace", + }, + [8189] = { + ["D"] = "Zanza can create the ancient troll enchantments with the right components. $B$BThe first is a primal Hakkari idol that must be taken from the most powerful of the Hakkari lieutenants: Jin\'do and the Bloodlord.$B$BThe second is a punctured voodoo doll. These can be found in the piles of refuse that litter this foul place. Look inside the jinxed hoodoo piles.", + ["O"] = "Bring me these things and I will create a powerful enchantment for you!", + ["T"] = "Presence of Sight", + }, + [8190] = { + ["D"] = "Zanza can create the ancient troll enchantments with the right components. $B$BThe first is a primal Hakkari idol that must be taken from the most powerful of the Hakkari lieutenants: Jin\'do and the Bloodlord.$B$BThe second is a punctured voodoo doll. These can be found in the piles of refuse that litter this foul place. Look inside the jinxed hoodoo piles.", + ["O"] = "Bring me these things and I will create a powerful enchantment for you!", + ["T"] = "Hoodoo Hex", + }, + [8191] = { + ["D"] = "Zanza can create the ancient troll enchantments with the right components. $B$BThe first is a primal Hakkari idol that must be taken from the most powerful of the Hakkari lieutenants: Jin\'do and the Bloodlord.$B$BThe second is a punctured voodoo doll. These can be found in the piles of refuse that litter this foul place. Look inside the jinxed hoodoo piles.", + ["O"] = "Bring me these things and I will create a powerful enchantment for you!", + ["T"] = "Prophetic Aura", + }, + [8192] = { + ["D"] = "Zanza can create the ancient troll enchantments with the right components. $B$BThe first is a primal Hakkari idol that must be taken from the most powerful of the Hakkari lieutenants: Jin\'do and the Bloodlord.$B$BThe second is a punctured voodoo doll. These can be found in the piles of refuse that litter this foul place. Look inside the jinxed hoodoo piles.", + ["O"] = "Bring me these things and I will create a powerful enchantment for you!", + ["T"] = "Animist\'s Caress", + }, + [8195] = { + ["D"] = "I seek the Paragons of Power known as the Coins of the Tribes. They are the currency used by the various denizens of Zul\'Gurub, and each is imbued with subtle but powerful mojo.$B$BThere are nine distinct kinds to be found. Some are sought after by my compatriots for various armors they offer Zandalar heroes. Should you have any extra, I will trade you one of our Honor Tokens for a set of three. You may use the Tokens with Rin\'wosho the Trader; he offers our heroes special items for them.", + ["O"] = "", + ["T"] = "Zulian, Razzashi, and Hakkari Coins", + }, + [8201] = { + ["D"] = "It is true. Hakkar now dwells in Zul\'Gurub, bathing in the power of our gods. Enthralled high priests now channel the energies of our most sacred divinities into the Soulflayer, who will soon have a strength beyond any being of Azeroth. He must be stopped!$B$BTake this sacred cord, and string through it the heads of the high priests responsible for channeling our gods\' energy.$B$BWhen you have done this, return to me.", + ["O"] = "String 5 Channeler\'s Heads, then return the Collection of Troll Heads to Exzhal on Yojamba Isle.", + ["T"] = "A Collection of Heads", + }, + [8235] = { + ["D"] = "Lord Ravenholdt has asked a favor of us both. He wishes to remove the enchantment from this bag.$b$bUnfortunately, some of my books on the subject of dispelling were taken recently, only to be destroyed by savages. The remains of my books are still valuable to me.$b$bIf you can bring me enough of the encoded fragments, I can piece them back together. Your best chance is to kill the beasts of Azshara, since they have a tendency to pick up just about anything.", + ["O"] = "Bring 10 Encoded Fragments to Archmage Xylem in Azshara.", + ["T"] = "Encoded Fragments", + }, + [8237] = "_", + [8238] = { + ["D"] = "I seek the Paragons of Power known as the Coins of the Tribes. They are the currency used by the various denizens of Zul\'Gurub, and each is imbued with subtle but powerful mojo.$B$BThere are nine distinct kinds to be found. Some are sought after by my compatriots for various armors they offer Zandalar heroes. Should you have any extra, I will trade you one of our Honor Tokens for a set of three. You may use the Tokens with Rin\'wosho the Trader; he offers our heroes special items for them.", + ["O"] = "", + ["T"] = "Gurubashi, Vilebranch, and Witherbark Coins", + }, + [8239] = { + ["D"] = "I seek the Paragons of Power known as the Coins of the Tribes. They are the currency used by the various denizens of Zul\'Gurub, and each is imbued with subtle but powerful mojo.$B$BThere are nine distinct kinds to be found. Some are sought after by my compatriots for various armors they offer Zandalar heroes. Should you have any extra, I will trade you one of our Honor Tokens for a set of three. You may use the Tokens with Rin\'wosho the Trader; he offers our heroes special items for them.", + ["O"] = "", + ["T"] = "Sandfury, Skullsplitter, and Bloodscalp Coins", + }, + [8259] = "_", + [8266] = { + ["D"] = "I understand that it can be difficult at times to come out on top in Warsong Gulch. Still, your effort on our behalf - even when victory is not achieved - is important.$B$BShould you complete one of the trials inside Warsong Gulch and not achieve victory, you will still receive a Ribbons of Sacrifice. Bring it to me so that the Sentinels may reward you for acting on our behalf... even if you weren\'t able to win this time.", + ["O"] = "Bring the Ribbons of Sacrifice to Sentinel Farsong so that the Sentinels may reward you for acting on our behalf.", + ["T"] = "Ribbons of Sacrifice", + }, + [8268] = { + ["D"] = "I understand that it can be difficult at times to come out on top in Warsong Gulch. Still, your effort on our behalf - even when victory is not achieved - is important.$B$BShould you complete one of the trials inside Warsong Gulch and not achieve victory, you will still receive a Ribbons of Sacrifice. Bring it to me so that the Outriders may reward you for acting on our behalf... even if you weren\'t able to win this time.", + ["O"] = "Bring the Ribbons of Sacrifice to Captain Shatterskull so that the Outriders may reward you for acting on our behalf.", + ["T"] = "Ribbons of Sacrifice", + }, + [8271] = { + ["D"] = "The indigenous Winterax trolls of the region are ruthless savages that would love nothing more than to have our bones added to their foul stew.$B$BWe must show them our might!$B$BWe have recovered tomes from their caves that detail their leadership hierarchy. The artifacts indicate that their leader, Korrak the Bloodrager, tends to remain hidden until given a reason to make his presence known.$B$BDeath to Korrak would mean death to Winterax Clan! Slay him and return.", + ["O"] = "According to legend, the leader of the mighty Winterax trolls appears at will to wreak havoc on the denizens of Alterac Valley.$B$BShould Korrak make himself known, destroy him and return to Lieutenant Haggerdin in the Alterac Mountains.", + ["T"] = "Hero of the Stormpike", + }, + [8272] = { + ["D"] = "The invading Stormpike are not the only threat in the region, soldier. The war in the Valley is waged on two fronts. The cannibal Winterax trolls also vie for power.$B$BThey are lead by Korrak the Bloodrager - a cruel and cunning beast.$B$BA strike against Korrak could prove to be a crushing blow to the Winterax clan. Slay the beast and be rewarded!", + ["O"] = "According to legend, the leader of the mighty Winterax trolls appears at will to wreak havoc on the denizens of Alterac Valley.$B$BShould Korrak make himself known, destroy him and return to Warmaster Laggrond.", + ["T"] = "Hero of the Frostwolf", + }, + [8274] = "_", + [8290] = { + ["D"] = "Beyond this tunnel you will find a field of strife and turmoil, young $c. The Horde continue to decimate our sacred forest, cutting down the evergreen foliage to power their machines of war.$B$BEnter Warsong Gulch and defend Silverwing Hold. Push back the invading Horde forces!$B$BDo this, and earn a talisman of merit. Bring me such a talisman, $N, and I shall reward you.", + ["O"] = "Enter Warsong Gulch and defeat the Horde, obtain a Warsong Gulch Mark of Honor, and return to Sentinel Farsong at the Silverwing Grove.", + ["T"] = "Vanquish the Invaders!", + }, + [8291] = { + ["D"] = "Beyond this tunnel you will find a field of strife and turmoil, young $c. The Horde continue to decimate our sacred forest, cutting down the evergreen foliage to power their machines of war.$B$BEnter Warsong Gulch and defend Silverwing Hold. Push back the invading Horde forces!$B$BDo this, and earn a Mark of Honor. Bring it to me, $N, and I shall reward you.", + ["O"] = "Enter Warsong Gulch and defeat the Horde, obtain a Warsong Gulch Mark of Honor, and return to Sentinel Farsong at the Silverwing Grove.", + ["T"] = "Vanquish the Invaders!", + }, + [8292] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Marks of Honor", + }, + [8293] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Marks of Honor", + }, + [8294] = { + ["D"] = "The wilds of the Ashenvale forest will succumb to the might of the Horde, $r. Nothing the Silverwing say or do can stop our sovereign imperative. Kalimdor belongs to the Horde. How dare they attempt to prevent us from harvesting what is rightfully ours!$B$BLet the pride swell in your chest as you cut down their weak attempts at slowing our progress. Destroy the Silverwing Sentinels, and earn a Mark of Honor. Return to me with such a Mark, $N, and you will be rewarded.", + ["O"] = "Enter Warsong Gulch and defeat the Alliance, gain a Warsong Gulch Mark of Honor, and bring it to Captain Shatterskull at the Mor\'shan Base Camp.", + ["T"] = "Quell the Silverwing Usurpers", + }, + [8295] = { + ["D"] = "The wilds of the Ashenvale forest will succumb to the might of the Horde, $r. Nothing the Silverwing say or do can stop our sovereign imperative. Kalimdor belongs to the Horde. How dare they attempt to prevent us from harvesting what is rightfully ours!$B$BLet the pride swell in your chest as you cut down their weak attempts at slowing our progress. Destroy the Silverwing Sentinels, and earn a Warsong mark of honor. Return to me with such a mark, $N, and you will be rewarded.$B", + ["O"] = "Enter Warsong Gulch and defeat the Alliance, gain a Warsong Gulch Mark of Honor, and bring it to Captain Shatterskull at the Mor\'shan Base Camp.", + ["T"] = "Quell the Silverwing Usurpers", + }, + [8297] = { + ["D"] = "War must be fought with soldiers, any soldier will tell you. They\'ll also say that a battle fought with poor gear or on an empty stomach is lost before it starts!$B$BThat is why Arathi Basin is important. There are key areas in the basin that hold essential resources. Metals, weapons, food, lumber - all are needed, and all can be gained there.$B$BThat is what I want from you, $N. Enter Arathi Basin, win the battle by holding more bases than the enemy, and return to me with a Mark of Honor.", + ["O"] = "Win the battle for Arathi Basin, get an Arathi Basin Mark of Honor, and return it to Sergeant Maclear at Refuge Pointe.", + ["T"] = "Arathi Basin Mark of Honor!", + }, + [8298] = { + ["D"] = "", + ["O"] = "", + ["T"] = "More Arathi Basin Marks of Honor", + }, + [8299] = { + ["D"] = "The League of Arathor is sparing no expense in their move to retake Arathi. They, and all the races of the Alliance, now stream to this distant region, intent on expanding their hold from Refuge Pointe. We must stop them, and the best means to stop them is to take their supplies.$B$BYou can help us, $N. Enter Arathi Basin, known for its rich mines, fertile land and skilled craftsman. Capture and control every base you can, win the battle, and return to me with the Mark of Honor you gain.", + ["O"] = "Win the battle for Arathi Basin, get an Arathi Basin Mark of Honor, and return it to Deathstalker Mortis at Hammerfall.", + ["T"] = "Cut Arathor Supply Lines", + }, + [8300] = { + ["D"] = "", + ["O"] = "", + ["T"] = "More Arathi Basin Marks of Honor", + }, + [8306] = { + ["D"] = "I need you to venture into Hive\'Regal and find what became of my dearest Natalia, $N. This will be no easy task for you. Before you dive headlong into the maw of madness, make sure that you go back and speak with those dwarves. They might be able to give you some tips on dealing with the silithid that inhabit that hive.$B$BAnd $N, if she truly is as mad as they say... do what you must.$B$B", + ["O"] = "Commander Mar\'alith at Cenarion Hold in Silithus wants you to find his beloved Natalia. The information that you gathered points to Hive\'Regal in the south as being the area in which you may find Mistress Natalia Mar\'alith.$B$BDo not forget to visit the dwarves at Bronzebeard\'s camp before venturing into the hive. They might have some additional work and advice for you.$B$BAnd $N, remember the Commander\'s words: \"Do what you must...\"", + ["T"] = "Into The Maw of Madness", + }, + [8309] = { + ["D"] = "After our initial foray into the hives and Mistress Mar\'alith\'s subsequent madness the three hives have been spewing out bugs! The increased activity might be tied into the glyphs covering those strange crystals.$B$BWe must get a rubbing from crystals in all three hives. If we can get those rubbings, we might be able to make sense of this madness.$B$BTake this transcription set and hit those hives, $N. Don\'t come back until you\'ve gotten copies from each hive.", + ["O"] = "Rutgar Glyphshaper at Bronzebeard\'s Encampment in Silithus wants you to venture to Hive\'Ashi, Hive\'Zora, and Hive\'Regal and recover Glyphed Rubbings from the Glyphed Crystals of each hive.$B$BUse the Geologist\'s Transcription Kit to make a reasonable facsimile of the ancient glyphs. Return to Rutgar Glyphshaper when you complete this task.", + ["T"] = "Glyph Chasing", + }, + [8367] = { + ["D"] = "Serving the Horde in one of the great battles against the Alliance is a source of great honor! The few however, that have served the Horde in ALL of our active battlefronts are our truly great fighters. We shall vanquish our opponents, not by fighting isolated skirmishes, but by waging a well-coordinated war.$B$BGo forth and crush the Alliance in Arathi Basin, Alterac Valley and Warsong Gulch! For Honor! For the Horde!", + ["O"] = " Bring 3 Alterac Valley Marks of Honor, 3 Arathi Basin Marks of Honor and 3 Warsong Gulch Marks of Honor to a Horde Warbringer outside the battlegrounds. ", + ["T"] = "For Great Honor", + }, + [8383] = { + ["D"] = "The Battle in Alterac Valley rages on, $N! Have you done your part as of late, $N?", + ["O"] = "Bring 3 Alterac Valley Marks of Honor to an Alliance Brigadier General outside the battlegrounds.", + ["T"] = "Remember Alterac Valley!", + }, + [8384] = { + ["D"] = "Winning a war is about more than just outsmarting and outfighting your opponent. Victory often comes down to simply producing more than your enemy.$B$BWhat we have in Arathi Basin is a sizeable supply of resources for whichever side manages to claim it first.$B$BIf the Alliance comes out victorious, it\'ll mean more swords and pikes for our troops. If the Horde were to win, those swords and pikes would still get made, they\'d just be pointed at us! Now is the time to help the Alliance in Arathi Basin, $N.", + ["O"] = "Bring 3 Arathi Basin Marks of Honor to an Alliance Brigadier General outside the battlegrounds.", + ["T"] = "Claiming Arathi Basin", + }, + [8385] = { + ["D"] = "Ah, $N. I hope you continue to lend your experience to the different battlefronts. A lot of our lads and lasses in the field look up to seasoned veterans like you.", + ["O"] = "Bring 3 Alterac Valley Mark of Honor, 3 Arathi Basin Mark of Honor and 3 Warsong Gulch Mark of Honor to an Alliance Brigadier General outside the battlegrounds.", + ["T"] = "Concerted Efforts", + }, + [8386] = { + ["D"] = "The Silverwing Sentinels are at war with the Warsong Outriders due to the destruction the Orcs are causing to the forest. There are, however, more reasons to defend this particular forest than plain love for nature.$B$BThe forest forms a strategic barrier that makes Ashenvale defendable against a large-scale attack. Without it, Astranaar would last a day or two before being annexed to the Barrens.$B$BDo your part in fighting the Warsong Outriders, $N! For the Alliance!", + ["O"] = "Bring 3 Warsong Gulch Marks of Honor to an Alliance Brigadier General outside the battlegrounds.", + ["T"] = "Fight for Warsong Gulch", + }, + [8387] = { + ["D"] = "The battle for Alterac rages on! You must return to Alterac Valley and once more drive the invaders out of Frostwolf territory, $N!", + ["O"] = "Bring 3 Alterac Valley Marks of Honor to a Horde Warbringer outside the battlegrounds.", + ["T"] = "Invaders of Alterac Valley", + }, + [8388] = { + ["D"] = "Many brave fighters look up to you, $N. You continue to be an example for all in the fight against the Alliance. What news do you bring from your journeys?", + ["O"] = "Bring 3 Alterac Valley Marks of Honor, 3 Arathi Basin Marks of Honor and 3 Warsong Gulch Marks of Honor to a Horde Warbringer outside the battlegrounds.", + ["T"] = "For Great Honor", + }, + [8389] = { + ["D"] = "The battle in Warsong Gulch against the Silverwing Sentinels is of great importance. Under the guise of protecting a forest that doesn\'t belong to them, the Alliance seeks to deny the Horde one of our largest sources for lumber.$B$BDo not let this happen, $N! Come back to me with proof of serving the Horde in a worthy manner!", + ["O"] = "Bring 3 Warsong Marks of Honor to a Horde Warbringer outside the battlegrounds.", + ["T"] = "Battle of Warsong Gulch", + }, + [8390] = { + ["D"] = "Our conflict with the Alliance has escalated to a true war. No longer are false pretenses to enter into battle used or expected by either side at this point.$B$BThe battle for the Arathi Basin is one of resources, plain and simple. Either the Alliance gets the resources and uses them against us or we get them and use them to keep our war efforts going. Help the Defilers maintain the flow of resources we need, $N!", + ["O"] = "Bring 3 Arathi Basin Mark of Honor to a Horde Warbringer outside the battlegrounds.", + ["T"] = "Conquering Arathi Basin", + }, + [8391] = { + ["D"] = "Winning a war is about more than just outsmarting and outfighting your opponent. Victory often comes down to simply producing more than your enemy.$B$BWhat we have in Arathi Basin is a sizeable supply of resources for whichever side manages to claim it first.$B$BIf the Alliance comes out victorious, it\'ll mean more swords and pikes for our troops. If the Horde were to win, those swords and pikes would still get made, they\'d just be pointed at us! Now is the time to help the Alliance in Arathi Basin, $N.", + ["O"] = "Bring 3 Arathi Basin Marks of Honor to an Alliance Brigadier General outside the battlegrounds.", + ["T"] = "Claiming Arathi Basin", + }, + [8392] = { + ["D"] = "Winning a war is about more than just outsmarting and outfighting your opponent. Victory often comes down to simply producing more than your enemy.$B$BWhat we have in Arathi Basin is a sizeable supply of resources for whichever side manages to claim it first.$B$BIf the Alliance comes out victorious, it\'ll mean more swords and pikes for our troops. If the Horde were to win, those swords and pikes would still get made, they\'d just be pointed at us! Now is the time to help the Alliance in Arathi Basin, $N.", + ["O"] = "Bring 3 Arathi Basin Marks of Honor to an Alliance Brigadier General outside the battlegrounds.", + ["T"] = "Claiming Arathi Basin", + }, + [8397] = { + ["D"] = "Winning a war is about more than just outsmarting and outfighting your opponent. Victory often comes down to simply producing more than your enemy.$B$BWhat we have in Arathi Basin is a sizeable supply of resources for whichever side manages to claim it first.$B$BIf the Alliance comes out victorious, it\'ll mean more swords and pikes for our troops. If the Horde were to win, those swords and pikes would still get made, they\'d just be pointed at us! Now is the time to help the Alliance in Arathi Basin, $N.", + ["O"] = "Bring 3 Arathi Basin Marks of Honor to an Alliance Brigadier General outside the battlegrounds.", + ["T"] = "Claiming Arathi Basin", + }, + [8398] = { + ["D"] = "Winning a war is about more than just outsmarting and outfighting your opponent. Victory often comes down to simply producing more than your enemy.$B$BWhat we have in Arathi Basin is a sizeable supply of resources for whichever side manages to claim it first.$B$BIf the Alliance comes out victorious, it\'ll mean more swords and pikes for our troops. If the Horde were to win, those swords and pikes would still get made, they\'d just be pointed at us! Now is the time to help the Alliance in Arathi Basin, $N.", + ["O"] = "Bring 3 Arathi Basin Marks of Honor to an Alliance Brigadier General outside the battlegrounds.", + ["T"] = "Claiming Arathi Basin", + }, + [8404] = { + ["D"] = "The Silverwing Sentinels are at war with the Warsong Outriders due to the destruction the Orcs are causing to the forest. There are, however, more reasons to defend this particular forest than plain love for nature.$B$BThe forest forms a strategic barrier that makes Ashenvale defendable against a large-scale attack. Without it, Astranaar would last a day or two before being annexed to the Barrens.$B$BDo your part in fighting the Warsong Outriders, $N! For the Alliance!", + ["O"] = "Bring 3 Warsong Gulch Marks of Honor to an Alliance Brigadier General outside the battlegrounds.", + ["T"] = "Fight for Warsong Gulch", + }, + [8405] = { + ["D"] = "The Silverwing Sentinels are at war with the Warsong Outriders due to the destruction the Orcs are causing to the forest. There are, however, more reasons to defend this particular forest than plain love for nature.$B$BThe forest forms a strategic barrier that makes Ashenvale defendable against a large-scale attack. Without it, Astranaar would last a day or two before being annexed to the Barrens.$B$BDo your part in fighting the Warsong Outriders, $N! For the Alliance!", + ["O"] = "Bring 3 Warsong Gulch Marks of Honor to an Alliance Brigadier General outside the battlegrounds.", + ["T"] = "Fight for Warsong Gulch", + }, + [8406] = { + ["D"] = "The Silverwing Sentinels are at war with the Warsong Outriders due to the destruction the Orcs are causing to the forest. There are, however, more reasons to defend this particular forest than plain love for nature.$B$BThe forest forms a strategic barrier that makes Ashenvale defendable against a large-scale attack. Without it, Astranaar would last a day or two before being annexed to the Barrens.$B$BDo your part in fighting the Warsong Outriders, $N! For the Alliance!", + ["O"] = "Bring 3 Warsong Gulch Marks of Honor to an Alliance Brigadier General outside the battlegrounds.", + ["T"] = "Fight for Warsong Gulch", + }, + [8407] = { + ["D"] = "The Silverwing Sentinels are at war with the Warsong Outriders due to the destruction the Orcs are causing to the forest. There are, however, more reasons to defend this particular forest than plain love for nature.$B$BThe forest forms a strategic barrier that makes Ashenvale defendable against a large-scale attack. Without it, Astranaar would last a day or two before being annexed to the Barrens.$B$BDo your part in fighting the Warsong Outriders, $N! For the Alliance!", + ["O"] = "Bring 3 Warsong Gulch Marks of Honor to an Alliance Brigadier General outside the battlegrounds.", + ["T"] = "Fight for Warsong Gulch", + }, + [8408] = { + ["D"] = "The Silverwing Sentinels are at war with the Warsong Outriders due to the destruction the Orcs are causing to the forest. There are, however, more reasons to defend this particular forest than plain love for nature.$B$BThe forest forms a strategic barrier that makes Ashenvale defendable against a large-scale attack. Without it, Astranaar would last a day or two before being annexed to the Barrens.$B$BDo your part in fighting the Warsong Outriders, $N! For the Alliance!", + ["O"] = "Bring 3 Warsong Gulch Marks of Honor to an Alliance Brigadier General outside the battlegrounds.", + ["T"] = "Fight for Warsong Gulch", + }, + [8411] = { + ["D"] = "Welcome, $c. You bring me the elements and then we do the talkin\'.$b$bThe fire, the air, the water, and the earth I be needin\' before I trust ya, mon. I gots to know you be knowledgeable.", + ["O"] = "Bring the elements earth, air, fire and water to Bath\'rah the Windwatcher.", + ["T"] = "Mastering the Elements", + }, + [8415] = { + ["D"] = "Commander Ashlam Valorfist has sent out a call for a paladin of your purity and valor, $n. You can find him at Chillwind Camp in the southern part of the Western Plaguelands. Seek him and aid in his cause for the Light!", + ["O"] = "Speak to Commander Ashlam Valorfist at Chillwind Camp.", + ["T"] = "Chillwind Point", + }, + [8426] = { + ["D"] = "The battle in Warsong Gulch against the Silverwing Sentinels is of great importance. Under the guise of protecting a forest that doesn\'t belong to them, the Alliance seeks to deny the Horde one of our largest sources for lumber.$B$BDo not let this happen, $N! Come back to me with proof of serving the Horde in a worthy manner!", + ["O"] = "Bring 3 Warsong Marks of Honor to a Horde Warbringer outside the battlegrounds.", + ["T"] = "Battle of Warsong Gulch", + }, + [8427] = { + ["D"] = "The battle in Warsong Gulch against the Silverwing Sentinels is of great importance. Under the guise of protecting a forest that doesn\'t belong to them, the Alliance seeks to deny the Horde one of our largest sources for lumber.$B$BDo not let this happen, $N! Come back to me with proof of serving the Horde in a worthy manner!", + ["O"] = "Bring 3 Warsong Marks of Honor to a Horde Warbringer outside the battlegrounds.", + ["T"] = "Battle of Warsong Gulch", + }, + [8428] = { + ["D"] = "The battle in Warsong Gulch against the Silverwing Sentinels is of great importance. Under the guise of protecting a forest that doesn\'t belong to them, the Alliance seeks to deny the Horde one of our largest sources for lumber.$B$BDo not let this happen, $N! Come back to me with proof of serving the Horde in a worthy manner!", + ["O"] = "Bring 3 Warsong Marks of Honor to a Horde Warbringer outside the battlegrounds.", + ["T"] = "Battle of Warsong Gulch", + }, + [8429] = { + ["D"] = "The battle in Warsong Gulch against the Silverwing Sentinels is of great importance. Under the guise of protecting a forest that doesn\'t belong to them, the Alliance seeks to deny the Horde one of our largest sources for lumber.$B$BDo not let this happen, $N! Come back to me with proof of serving the Horde in a worthy manner!", + ["O"] = "Bring 3 Warsong Marks of Honor to a Horde Warbringer outside the battlegrounds.", + ["T"] = "Battle of Warsong Gulch", + }, + [8430] = { + ["D"] = "The battle in Warsong Gulch against the Silverwing Sentinels is of great importance. Under the guise of protecting a forest that doesn\'t belong to them, the Alliance seeks to deny the Horde one of our largest sources for lumber.$B$BDo not let this happen, $N! Come back to me with proof of serving the Horde in a worthy manner!", + ["O"] = "Bring 3 Warsong Marks of Honor to a Horde Warbringer outside the battlegrounds.", + ["T"] = "Battle of Warsong Gulch", + }, + [8431] = { + ["D"] = "The battle in Warsong Gulch against the Silverwing Sentinels is of great importance. Under the guise of protecting a forest that doesn\'t belong to them, the Alliance seeks to deny the Horde one of our largest sources for lumber.$B$BDo not let this happen, $N! Come back to me with proof of serving the Horde in a worthy manner!", + ["O"] = "Bring 3 Warsong Marks of Honor to a Horde Warbringer outside the battlegrounds.", + ["T"] = "Battle of Warsong Gulch", + }, + [8432] = { + ["D"] = "The battle in Warsong Gulch against the Silverwing Sentinels is of great importance. Under the guise of protecting a forest that doesn\'t belong to them, the Alliance seeks to deny the Horde one of our largest sources for lumber.$B$BDo not let this happen, $N! Come back to me with proof of serving the Horde in a worthy manner!", + ["O"] = "Bring 3 Warsong Marks of Honor to a Horde Warbringer outside the battlegrounds.", + ["T"] = "Battle of Warsong Gulch", + }, + [8433] = { + ["D"] = "The battle in Warsong Gulch against the Silverwing Sentinels is of great importance. Under the guise of protecting a forest that doesn\'t belong to them, the Alliance seeks to deny the Horde one of our largest sources for lumber.$B$BDo not let this happen, $N! Come back to me with proof of serving the Horde in a worthy manner!", + ["O"] = "Bring 3 Warsong Marks of Honor to a Horde Warbringer outside the battlegrounds.", + ["T"] = "Battle of Warsong Gulch", + }, + [8434] = { + ["D"] = "The battle in Warsong Gulch against the Silverwing Sentinels is of great importance. Under the guise of protecting a forest that doesn\'t belong to them, the Alliance seeks to deny the Horde one of our largest sources for lumber.$B$BDo not let this happen, $N! Come back to me with proof of serving the Horde in a worthy manner!", + ["O"] = "Bring 3 Warsong Marks of Honor to a Horde Warbringer outside the battlegrounds.", + ["T"] = "Battle of Warsong Gulch", + }, + [8435] = { + ["D"] = "The battle in Warsong Gulch against the Silverwing Sentinels is of great importance. Under the guise of protecting a forest that doesn\'t belong to them, the Alliance seeks to deny the Horde one of our largest sources for lumber.$B$BDo not let this happen, $N! Come back to me with proof of serving the Horde in a worthy manner!", + ["O"] = "Bring 3 Warsong Marks of Honor to a Horde Warbringer outside the battlegrounds.", + ["T"] = "Battle of Warsong Gulch", + }, + [8440] = { + ["D"] = "Our conflict with the Alliance has escalated to a true war. No longer are false pretenses to enter into battle used or expected by either side at this point.$B$BThe battle for the Arathi Basin is one of resources, plain and simple. Either the Alliance gets the resources and uses them against us or we get them and use them to keep our war efforts going. Help the Defilers maintain the flow of resources we need, $N!", + ["O"] = "Bring 3 Arathi Basin Mark of Honor to a Horde Warbringer outside the battlegrounds.", + ["T"] = "Conquering Arathi Basin", + }, + [8441] = { + ["D"] = "Our conflict with the Alliance has escalated to a true war. No longer are false pretenses to enter into battle used or expected by either side at this point.$B$BThe battle for the Arathi Basin is one of resources, plain and simple. Either the Alliance gets the resources and uses them against us or we get them and use them to keep our war efforts going. Help the Defilers maintain the flow of resources we need, $N!", + ["O"] = "Bring 3 Arathi Basin Mark of Honor to a Horde Warbringer outside the battlegrounds.", + ["T"] = "Conquering Arathi Basin", + }, + [8442] = { + ["D"] = "Our conflict with the Alliance has escalated to a true war. No longer are false pretenses to enter into battle used or expected by either side at this point.$B$BThe battle for the Arathi Basin is one of resources, plain and simple. Either the Alliance gets the resources and uses them against us or we get them and use them to keep our war efforts going. Help the Defilers maintain the flow of resources we need, $N!", + ["O"] = "Bring 3 Arathi Basin Mark of Honor to a Horde Warbringer outside the battlegrounds.", + ["T"] = "Conquering Arathi Basin", + }, + [8443] = { + ["D"] = "Our conflict with the Alliance has escalated to a true war. No longer are false pretenses to enter into battle used or expected by either side at this point.$B$BThe battle for the Arathi Basin is one of resources, plain and simple. Either the Alliance gets the resources and uses them against us or we get them and use them to keep our war efforts going. Help the Defilers maintain the flow of resources we need, $N!", + ["O"] = "Bring 3 Arathi Basin Mark of Honor to a Horde Warbringer outside the battlegrounds.", + ["T"] = "Conquering Arathi Basin", + }, + [8444] = "_", + [8445] = "_", + [8458] = "_", + [8459] = "_", + [8530] = "_", + [8546] = { + ["D"] = "Yup, I be glad you\'re here, mon. You helped me before, and now I need your help again. We still lookin\' ta bring in more mithril bars for the war effort; gonna build lots of armor and weapons and things to go squish them bugs at Ahn\'Qiraj.$B$BSo if you be a true friend, you bring me back more stacks of mithril bars. I take all you got until we hit our quota. You have some for me now?", + ["O"] = "Bring 20 Mithril Bars to Senior Sergeant T\'kelah at the Valley of Spirits in Orgrimmar.", + ["T"] = "The Horde Needs More Mithril Bars!", + }, + [8550] = { + ["D"] = "Hello again, Abyssmal. I am glad that you wish to speak to me once more concerning our neverending need for peacebloom. The war effort continues, and with it our production of potions and elixirs to aid in the battles to come. Will you help us again, $C? I am in need of the same amount of peacebloom as before, so if you can gather it up and return it to me here I would be most grateful. Of course, if you already have it on your person, I will be more than happy to accept it from you now", + ["O"] = "Bring 20 Peacebloom to Herbalist Proudfeather at the Valley of Spirits in Orgrimmar.", + ["T"] = "The Horde Needs More Peacebloom!", + }, + [8565] = "_", + [8566] = "_", + [8567] = "_", + [8568] = "_", + [8569] = "_", + [8570] = "_", + [8581] = { + ["D"] = "Pele\'keiki know you come to help. Bring many firebloom and make him very happy. Pele\'keiki might make big bombs with firebloom. Drop them on insects from his bat over Ahn\'Qiraj when war come. But Pele\'keiki need more firebloom, $C!$B$BYou gonna bring Pele\'keiki that firebloom, real quick now. Come back with at least as much as last time, and Pele\'keiki be pleased.", + ["O"] = "Bring 20 Firebloom to Batrider Pele\'keiki at the Valley of Spirits in Orgrimmar.", + ["T"] = "The Horde Needs More Firebloom!", + }, + [8583] = { + ["D"] = "In fact it does appear that we are in need of even more purple lotus, $C. While my own studies have yet to determine a new useful application for the herb, there are tried and true methodologies yet to be employed.$B$BI need you to once again go out into the field and collect at least twenty purple lotus samples. Return them to me here.", + ["O"] = "Bring 20 Purple Lotus to Apothecary Jezel at the Valley of Spirits in Orgrimmar.", + ["T"] = "The Horde Needs More Purple Lotus!", + }, + [8585] = { + ["D"] = "Legend has it that the chimaerok of the Isle of Dread in Feralas have the most succulent and tender vittles in existence! Now these chimaerok also have a daddy who, with proper preparation, may or may not look like a 500 pound chicken.$B$BHead to the Isle of Dread and kill Lord Lakmaeran and bring me his fresh carcass. That should satisfy the gnome. To satisfy me, you\'ll need to get your hands on some chimaerok tenderloin.$B$BDo this and you\'ll have your 500 pound chicken and a little something extra.", + ["O"] = "Recover Lakmaeran\'s Carcass and 20 Chimaerok Tenderloins for Dirge Quikcleave in Tanaris.", + ["T"] = "The Isle of Dread!", + }, + [8589] = { + ["D"] = "It\'s true, $C, I still need more heavy leather. The requests from the generals and their quartermasters seem endless. And that\'s nothing compared to what the zeppelin masters are asking for!$B$BI need to get my quota collected on the double. Baekun, bring me more stacks of heavy leather as soon as you can!", + ["O"] = "Bring 10 Heavy Leather to Skinner Jamani at the Valley of Spirits in Orgrimmar.", + ["T"] = "The Horde Needs More Heavy Leather!", + }, + [8591] = { + ["D"] = "Druid, as you can see I still need to gather up more thick leather. Once again I ask your help with this task, and promise that if you complete it, you will be recognized for your efforts.$B$BTime is of the essence! Return to me with the thick leather so that we can finish our preparations and go to war, hero!", + ["O"] = "Bring 10 Thick Leather to Sergeant Umala at the Valley of Spirits in Orgrimmar.", + ["T"] = "The Horde Needs More Thick Leather!", + }, + [8595] = { + ["D"] = "I see that you\'re no ordinary mortal, $n. Your chances against the Old God, however infinitely small, are greater than ours at this point. After all, while he expects dragons at his doorstep, he is not prepared for someone like you.$b$bJust as Anachronos and Staghelm defeated the Qiraji a thousand years ago through the alliance of mortal and dragon races, we too shall form a pact. Gain the trust of the Bronze Dragonflight and you\'ll gain our trust. Only then we shall make a true champion out of you.", + ["O"] = "", + ["T"] = "Mortal Champions", + }, + [8601] = { + ["D"] = "Preparations for the impending war at Ahn\'Qiraj are proceeding, $C. However, to ensure that we do not fall behind, or at least that I am not the one that causes us to fall behind, I want for you to bring back another stack of rugged leather. Your prompt attention to this matter will be greatly appreciated, $N.", + ["O"] = "Bring 10 Rugged Leather to Doctor Serratus at the Valley of Spirits in Orgrimmar.", + ["T"] = "The Horde Needs More Rugged Leather!", + }, + [8605] = { + ["D"] = "Good to see you again, $C. We are still working on preparations here for the war effort, and I can still use all of the help that you can give in gathering up wool bandaging. Any assistance at all will be greatly appreciated. I only hope that our efforts will be good enough. I\'ve lost too many noble souls on the battlefields of yesterday to not do everything in my power to see to it that doesn\'t happen again.", + ["O"] = "Bring 20 Wool Bandages to Healer Longrunner at the Valley of Spirits in Orgrimmar.", + ["T"] = "The Horde Needs More Wool Bandages!", + }, + [8608] = { + ["D"] = "You returned? Interesting. As you can see I am still collecting for the Ahn\'Qiraj \'war effort\'. Which means that I need you to once again go out and collect a stack of mageweave bandages for me. I look forward to your return, $C.", + ["O"] = "Bring 20 Mageweave Bandages to Lady Callow at the Valley of Spirits in Orgrimmar.", + ["T"] = "The Horde Needs More Mageweave Bandages!", + }, + [8610] = { + ["D"] = "Ever does the time grow nearer when we shall launch ourselves headlong into the conflagration at Ahn\'Qiraj, priest. But first we must gather our strength and prepare so that we can survive the onslaught of the insects and their masters.$B$BIf you are here again, then surely you wish to make another contribution of runecloth bandages to the war effort? Please do so as soon as you can and return to me once more.", + ["O"] = "Bring 20 Runecloth Bandages to Stoneguard Clayhoof at the Valley of Spirits in Orgrimmar.", + ["T"] = "The Horde Needs More Runecloth Bandages!", + }, + [8612] = { + ["D"] = "As you can see, $C, we still need to pack away more food for the soldiers. I don\'t know if you\'ve ever been in a war before, but once you get past the initial shock of the battlefield, you can get pretty hungry. You did a good job last time, so I expect that you\'ll do as well, if not a little quicker, in getting me another stack of those lean wolf steaks.", + ["O"] = "Bring 20 Lean Wolf Steaks to Bloodguard Rawtar at the Valley of Spirits in Orgrimmar.", + ["T"] = "The Horde Needs More Lean Wolf Steaks!", + }, + [8614] = { + ["D"] = "So as you can see, we still be needin\' a lot of the fishies. The combatants in the upcomin\' Ahn\'Qiraj War gonna be needin\' a lot to eat, so I needin\' to get all the spotted yellowtail that I can. You catch \'em, cook \'em, and bringin\' \'em back to me here, and I be givin\' you thanks, and the thanks of the Horde.", + ["O"] = "Bring 20 Spotted Yellowtail to Fisherman Lin\'do at the Valley of Spirits in Orgrimmar.", + ["T"] = "The Horde Needs More Spotted Yellowtail!", + }, + [8616] = { + ["D"] = "The last batch of baked salmon that you donated to the war effort looked very delicious, $C. I must admit that I was tempted to take a few for myself. As you can tell, we have not yet reached our quota here. I am hoping you have returned because you have another stack of baked salmon with you", + ["O"] = "Bring 20 Baked Salmon to Chief Sharpclaw at the Valley of Spirits in Orgrimmar.", + ["T"] = "The Horde Needs More Baked Salmon!", + }, + [8617] = "_", + [8625] = { + ["D"] = "It is said among us that the ornate shoulder armor worn by the mortal races started as an attempt to emulate the wings of a dragon.$B$BBring me the bindings worn by the highest Qiraji leaders and I shall shape them into a set of pauldrons more dreadful than even the wings of Nefarian himself!", + ["O"] = "Bring the Qiraji Bindings of Dominance, 2 Idols of Death, 5 Stone Scarabs and 5 Bronze Scarabs to Andorgos in Ahn\'Qiraj. You must also attain Neutral reputation with the Brood of Nozdormu to complete this quest.", + ["T"] = "Enigma Shoulderpads", + }, + [8728] = { + ["D"] = "Well that took a little longer than expected. Now let me see what this ledger says.$B$B$B$BThe good news is that I am 99% certain that I am capable of creating an arcanite buoy that will function to your specifications. This is, of course, wholly dependant on the bad news.$B$BThe bad news is that I\'m going to need a lot of arcanite, elementium ore, and rare gemstones.$B$BBring me what I need and I will craft the buoy.", + ["O"] = "Narain Soothfancy in Tanaris wants you to bring him 20 Arcanite Bars, 10 Elementium Ore, 10 Azerothian Diamonds, and 10 Blue Sapphires.", + ["T"] = "The Good News and The Bad News", + }, + [8751] = { + ["D"] = "Never have I seen such tenacity! The Bronze Flight grants you one final enchantment. The Timeless One himself has requested it so!$B$BHand me your signet ring so that I may make the necessary adjustments.", + ["O"] = "", + ["T"] = "The Protector of Kalimdor", + }, + [8756] = { + ["D"] = "Never have I seen such tenacity! The Bronze Flight grants you one final enchantment. The Timeless One himself has requested it so!$B$BHand me your signet ring so that I may make the necessary adjustments.", + ["O"] = "", + ["T"] = "The Qiraji Conqueror", + }, + [8761] = { + ["D"] = "Never have I seen such tenacity! The Bronze Flight grants you one final enchantment. The Timeless One himself has requested it so!$B$BHand me your signet ring so that I may make the necessary adjustments.", + ["O"] = "", + ["T"] = "The Grand Invoker", + }, + [8762] = { + ["D"] = "DISASTER has struck! Metzen the Reindeer has been kidnapped!$B$BMetzen is one of Great-father Winter\'s eight reindeer - and property of Smokywood Pastures. We\'ve received not one but TWO ransom letters from groups claiming to have Metzen. With the holiday season well under way, we\'re strapped to the coin box here! Please - find Metzen and return him to us!$B$BCheck out the ransom letters for clues, and sprinkle this reindeer dust on him - it will free him from any of his bonds!$B$BPlease, hurry!", + ["O"] = "Find Metzen the Reindeer. Use the notes provided to you for clues as to where he is being held.$B$BWhen you find Metzen, have the Pouch of Reindeer Dust in your possession so you can sprinkle some of the dust on him; this should free Metzen from his bonds of captivity.$B$BReturn the Pouch of Reindeer Dust to Wulmort Jinglepocket in Ironforge once Metzen is freed.", + ["T"] = "Metzen the Reindeer", + }, + [8846] = { + ["D"] = "", + ["O"] = "Well then, it\'s settled; here are your supplies, $c. If you wish to do an additional exchange, then I am prepared to authorize it. Just give me the word and I\'ll make it happen.$B$BKeep up the good work, $N. We need all the materiel we can muster if we\'re going to win this thing. If we all do our part, then victory shall be ours for the taking!", + ["T"] = "Five Signets for War Supplies", + }, + [8847] = { + ["D"] = "", + ["O"] = "Well then, it\'s settled; here are your supplies, $c. If you wish to do an additional exchange, then I am prepared to authorize it. Just give me the word and I\'ll make it happen.$B$BKeep up the good work, $N. We need all the materiel we can muster if we\'re going to win this thing. If we all do our part, then victory shall be ours for the taking!", + ["T"] = "Ten Signets for War Supplies", + }, + [8849] = { + ["D"] = "", + ["O"] = "Well then, it\'s settled; here are your supplies, $c. If you wish to do an additional exchange, then I am prepared to authorize it. Just give me the word and I\'ll make it happen.$B$BKeep up the good work, $N. We need all the materiel we can muster if we\'re going to win this thing. If we all do our part, then victory shall be ours for the taking!", + ["T"] = "Twenty Signets for War Supplies", + }, + [8850] = { + ["D"] = "", + ["O"] = "Well then, it\'s settled; here are your supplies, $c. If you wish to do an additional exchange, then I am prepared to authorize it. Just give me the word and I\'ll make it happen.$B$BKeep up the good work, $N. We need all the materiel we can muster if we\'re going to win this thing. If we all do our part, then victory shall be ours for the taking!", + ["T"] = "Thirty Signets for War Supplies", + }, + [8851] = { + ["D"] = "", + ["O"] = "Well then, it\'s settled; here are your supplies, $c. If you wish to do an additional exchange, then I am prepared to authorize it. Just give me the word and I\'ll make it happen.$B$BKeep up the good work, $N. We need all the materiel we can muster if we\'re going to win this thing. If we all do our part, then victory shall be ours for the taking!", + ["T"] = "Five Signets for War Supplies", + }, + [8852] = { + ["D"] = "", + ["O"] = "Well then, it\'s settled; here are your supplies, $c. If you wish to do an additional exchange, then I am prepared to authorize it. Just give me the word and I\'ll make it happen.$B$BKeep up the good work, $N. We need all the materiel we can muster if we\'re going to win this thing. If we all do our part, then victory shall be ours for the taking!", + ["T"] = "Ten Signets for War Supplies", + }, + [8854] = { + ["D"] = "", + ["O"] = "Well then, it\'s settled; here are your supplies, $c. If you wish to do an additional exchange, then I am prepared to authorize it. Just give me the word and I\'ll make it happen.$B$BKeep up the good work, $N. We need all the materiel we can muster if we\'re going to win this thing. If we all do our part, then victory shall be ours for the taking!", + ["T"] = "Twenty Signets for War Supplies", + }, + [8855] = { + ["D"] = "", + ["O"] = "Well then, it\'s settled; here are your supplies, $c. If you wish to do an additional exchange, then I am prepared to authorize it. Just give me the word and I\'ll make it happen.$B$BKeep up the good work, $N. We need all the materiel we can muster if we\'re going to win this thing. If we all do our part, then victory shall be ours for the taking!", + ["T"] = "Thirty Signets for War Supplies", + }, + [8856] = "_", + [8869] = "_", + [8904] = { + ["D"] = "There\'s something unnatural about this epidemic of love. It\'s disgusting, and as it lowers our defenses, it could be a threat to the all of us.$B$BIt\'s bad enough that so many of our people are caught up in this ridiculous behavior. But I think that it has spread even to our guardians, who should be immune to such things.$B$BFind one of our guardians and see if they\'ve been caught up in this foolishness.", + ["O"] = "Get a Guardian\'s Moldy Card and bring it to Fenstad Argyle in the Undercity.", + ["T"] = "Dangerous Love", + }, + [8918] = { + ["D"] = "Hail, $c! I can tell by your demeanor that you\'ve seen and done much in this world. Yet I\'m willing to wager you haven\'t seen a piece of armor like this.$B$BPerform a small favor for me and I\'ll be willing to trade it to you for an ordinary set of bracers.$B$BI\'m in need of a sizeable sample of venom drawn from the spiders and scorpions that inhabit Silithus. Bring this to me along with a few gold coins and I\'ll perform the exchange.", + ["O"] = "Acquire 15 Silithus Venom Samples and 20 gold and bring them along with a set of Bindings of Elements to Mokvar in Orgrimmar.", + ["T"] = "An Earnest Proposition", + }, + [8942] = { + ["D"] = "You\'ve proven to be a very reliable individual, $N. As much as I trust that you\'ll help me through this predicament, it would be wise of me to reward you according to your performance.$B$BFor now I will exchange your belt and gauntlets. If we both see this through I shall make the rest of the pieces available to you.", + ["O"] = "Bring a Cord of Elements and a set of Gauntlets of Elements to Mokvar in Orgrimmar.", + ["T"] = "Just Compensation", + }, + [8968] = { + ["D"] = "The siblings, Jarien and Sothos, decided to join the Scarlet Crusade upon the disbanding of our mercenary company. They took the left piece of Lord Valthalak\'s amulet with them. Good riddance, I say, but we need that piece back.$B$BFrom what we could gather, they were actually slain by Grand Crusader Dathrohan himself for failing the initiation rites inside his chamber in the Scarlet Bastion.$B$BIn any case, we... meaning you, are still going to need to retrieve that piece of the amulet.", + ["O"] = "Use the Brazier of Beckoning to summon forth Jarien and Sothos and slay them. Return to Bodley inside Blackrock Mountain with the Left Piece of Lord Valthalak\'s Amulet and the Brazier of Beckoning.", + ["T"] = "The Left Piece of Lord Valthalak\'s Amulet", + }, + [8971] = "_", + [8972] = "_", + [8973] = "_", + [8974] = "_", + [8975] = "_", + [8976] = "_", + [8991] = { + ["D"] = "The siblings, Jarien and Sothos, decided to join the Scarlet Crusade upon the disbanding of our mercenary company. They took the right piece of Lord Valthalak\'s amulet with them. Good riddance, I say, but we need that piece back.$B$BFrom what we could gather, they were actually slain by Grand Crusader Dathrohan himself for failing the initiation rites inside his chamber in the Scarlet Bastion.$B$BIn any case, we... meaning you, are still going to need to retrieve that piece of the amulet.", + ["O"] = "Use the Brazier of Beckoning to summon forth Jarien and Sothos and slay them. Return to Bodley inside Blackrock Mountain with the recombined Lord Valthalak\'s Amulet and the Brazier of Beckoning.", + ["T"] = "The Right Piece of Lord Valthalak\'s Amulet", + }, + [9028] = { + ["D"] = "What, treason? No, no. I assure you, my intentions are completely harmless. Is it so wrong to help those who wish to ease the painful ritual of courtship? Come now, that is no crime.$B$BAnd to prove that I mean no harm, I will even tell you my source. They were shipped to me by a Staffron Lerent, an apothecary of some sort. I never spoke with him. Our goblin middle man said that he worked in the foothills over Hillsbrad past that mysterious Ravenholdt Manor. I wish you luck in finding him.", + ["O"] = "Find Apothecary Staffron Lerent in the Hillsbrad Foothills behind Ravenholdt Manor.", + ["T"] = "The Source Revealed", + }, + [9030] = "_", + [9032] = { + ["D"] = "The medallion contained Valthalaks soul? Its no surprise it was guarded by such a powerful curse.$B$BLocating Bodley presents a bit of a problem. Last time I heard of him, he was preparing to venture back into Blackrock Spire. He was never heard of again.$B$BSeek him out in Blackrock Mountain, though Im afraid to say hes probably dead by now. I suggest taking the goblins device with you, friend. ", + ["O"] = "Travel to Blackrock Mountain and use the Extra-Dimensional Ghost Revealer to find Bodley near Blackrock Spire.", + ["T"] = "Bodleys Unfortunate Fate", + }, + [9052] = { + ["D"] = "I would ask you to help me create a toxin of sorts, to pacify a great creature living here in the crater. It is not deadly, and only the keen eyes of a $c can hope to collect the ingredients.$b$bYou can find the bloodcap mushrooms growing within the bloodpetal sprouts all across the crater. Gorishi stings are from the insects inside and around the Slithering Scar, located in the southern part of the crater.", + ["O"] = "Collect 8 Bloodcap and 8 Gorishi Stings, and return to Torwa Pathfinder in Un\'Goro Crater.", + ["T"] = "Bloodpetal Poison", + }, + [9065] = "_", + [9111] = { + ["D"] = "$B$BBlessed $Gboy:girl, have you found the vestments of the fallen? The poor souls whose last breaths were taken on the field of battle - stripped of everything including their dignity.$B$BBring me the desecrated remnants of the departed along with reagents of purification and you shall know faith.", + ["O"] = "Father Inigo Montoy at Light\'s Hope Chapel in the Eastern Plaguelands will make a Robe of Faith if you bring him the following: 1 Desecrated Robe, 25 Wartorn Cloth Scraps, 4 Mooncloth and 2 Nexus Crystals.", + ["T"] = "Robe of Faith", + }, + [9112] = { + ["D"] = "$B$BBlessed $Gboy:girl, have you found the vestments of the fallen? The poor souls whose last breaths were taken on the field of battle - stripped of everything including their dignity.$B$BBring me the desecrated remnants of the departed along with reagents of purification and you shall know faith.", + ["O"] = "Father Inigo Montoy at Light\'s Hope Chapel in the Eastern Plaguelands will make Leggings of Faith if you bring him the following: 1 Desecrated Leggings, 20 Wartorn Cloth Scraps, 4 Mooncloth and 2 Nexus Crystals.", + ["T"] = "Leggings of Faith", + }, + [9113] = { + ["D"] = "$B$BBlessed $Gboy:girl, have you found the vestments of the fallen? The poor souls whose last breaths were taken on the field of battle - stripped of everything including their dignity.$B$BBring me the desecrated remnants of the departed along with reagents of purification and you shall know faith.", + ["O"] = "Father Inigo Montoy at Light\'s Hope Chapel in the Eastern Plaguelands will make a Circlet of Faith if you bring him the following: 1 Desecrated Circlet, 15 Wartorn Cloth Scraps, 3 Mooncloth and 3 Nexus Crystals.", + ["T"] = "Circlet of Faith", + }, + [9114] = { + ["D"] = "$B$BBlessed $Gboy:girl, have you found the vestments of the fallen? The poor souls whose last breaths were taken on the field of battle - stripped of everything including their dignity.$B$BBring me the desecrated remnants of the departed along with reagents of purification and you shall know faith.", + ["O"] = "Father Inigo Montoy at Light\'s Hope Chapel in the Eastern Plaguelands will make Shoulderpads of Faith if you bring him the following: 1 Desecrated Shoulderpads, 12 Wartorn Cloth Scraps, 2 Mooncloth and 3 Cured Rugged Hides.", + ["T"] = "Shoulderpads of Faith", + }, + [9115] = { + ["D"] = "$B$BBlessed $Gboy:girl, have you found the vestments of the fallen? The poor souls whose last breaths were taken on the field of battle - stripped of everything including their dignity.$B$BBring me the desecrated remnants of the departed along with reagents of purification and you shall know faith.", + ["O"] = "Father Inigo Montoy at Light\'s Hope Chapel in the Eastern Plaguelands will make Sandals of Faith if you bring him the following: 1 Desecrated Sandals, 12 Wartorn Cloth Scraps, 2 Mooncloth and 3 Cured Rugged Hides.", + ["T"] = "Sandals of Faith", + }, + [9116] = { + ["D"] = "$B$BBlessed $Gboy:girl, have you found the vestments of the fallen? The poor souls whose last breaths were taken on the field of battle - stripped of everything including their dignity.$B$BBring me the desecrated remnants of the departed along with reagents of purification and you shall know faith.", + ["O"] = "Father Inigo Montoy at Light\'s Hope Chapel in the Eastern Plaguelands will make Gloves of Faith if you bring him the following: 1 Desecrated Gloves, 8 Wartorn Cloth Scraps and 4 Mooncloth.", + ["T"] = "Gloves of Faith", + }, + [9117] = { + ["D"] = "$B$BBlessed $Gboy:girl, have you found the vestments of the fallen? The poor souls whose last breaths were taken on the field of battle - stripped of everything including their dignity.$B$BBring me the desecrated remnants of the departed along with reagents of purification and you shall know faith.", + ["O"] = "Father Inigo Montoy at Light\'s Hope Chapel in the Eastern Plaguelands will make a Belt of Faith if you bring him the following: 1 Desecrated Belt, 8 Wartorn Cloth Scraps, 2 Arcane Crystals and 2 Mooncloth.", + ["T"] = "Belt of Faith", + }, + [9142] = { + ["D"] = "You know the drill, kid. One valor token gets you a craftsman\'s writ.", + ["O"] = "", + ["T"] = "Craftsman\'s Writ", + }, + [9154] = { + ["D"] = "The Scourge have returned in greater numbers than we have seen before. The Argent Dawn is recruiting all willing and capable men and women to defend our lands.$B$BIf we share common cause, take this document to the Keeper of the Rolls at Light\'s Hope Chapel in the Eastern Plaguelands.", + ["O"] = "Deliver the Call to Arms Announcement to the Keeper of the Rolls at Light\'s Hope Chapel in the Eastern Plaguelands.", + ["T"] = "Light\'s Hope Chapel", + }, + [9249] = "_", + [9273] = "_", + [9296] = "_", + [9297] = "_", + [9298] = "_", + [9319] = { + ["D"] = "We are not the only ones who celebrate this holiday, $N. All creatures, all cultures, are touched by the flame. Even in the darkest places, the fires are being lit.$B$BIf you wish to see them for yourself, travel into the depths. Seek out the bonfires burning within Stratholme, Scholomance, among the ogres of Dire Maul, and the halls of Blackrock Spire itself; I will await your return.", + ["O"] = "Find and touch the bonfires located within Blackrock Spire, Dire Maul, Scholomance, and Stratholme, then return to the Festival Flamekeeper.", + ["T"] = "A Light in Dark Places", + }, + [9322] = { + ["D"] = "The Midsummer Fire Festival is celebrated everywhere in Azeroth, and the diverse land of Kalimdor is no exception. You look fit to travel -- perhaps a journey is in order.Midsummer cannot be truly appreciated unless you\'ve seen the blistering blue fires abroad. The celebrants have lit fires in chilly western Winterspring, northeast from the Ruins of Eldarath in Azshara, near Valor\'s Rest in the wastes of Silithus, and by the entrance to lush Un\'Goro. Return once your journey is complete.", + ["O"] = "Visit the Midsummer camps located in Azshara, Silithus, Un\'Goro Crater, and Winterspring, then return to the Festival Flamekeeper.", + ["T"] = "Wild Fires in Kalimdor", + }, + [9353] = "_", + [9367] = { + ["D"] = "Midsummer is upon us once again!$B$BEach year, as tradition dictates, Flamekeepers are chosen to tend the bonfires within our capitals. While fires are burning throughout Azeroth, it is imperative that ours be the hottest and brightest, to properly pay homage to the season.$B$BIn fact, I have a task for you, if you don\'t mind. I\'ve not yet heard if the fires in all capitals are properly burning. Travel there yourself and warm yourself by the fires--make sure they\'re hot!", + ["O"] = "Touch the bonfires within Stormwind, Ironforge, and Darnassus, then speak to a Festival Loremaster within the capital cities.", + ["T"] = "The Festival of Fire", + }, + [9368] = { + ["D"] = "Midsummer is upon us once again!$B$BEach year, as tradition dictates, Flamekeepers are chosen to tend the bonfires within our capitals. While fires are burning throughout Azeroth, it is imperative that ours be the hottest and brightest, to properly pay homage to the season.$B$BIn fact, I have a task for you, if you don\'t mind. I\'ve not yet heard if the fires in all capitals are properly burning. Travel there yourself and warm yourself by the fires--make sure they\'re hot!", + ["O"] = "Touch the bonfires within Orgrimmar, Thunder Bluff, and the Undercity, then speak to a Festival Talespinner within the capital cities.", + ["T"] = "The Festival of Fire", + }, + [9386] = { + ["D"] = "An eager one, aren\'t you? If you\'re willing to enter the depths once more, I\'ll gladly reward you.$B$BSeek out the bonfires burning within Stratholme, Scholomance, Dire Maul, and the halls of Blackrock Spire itself; I look forward to your return, $N.", + ["O"] = "Find and touch the bonfires located within Blackrock Spire, Dire Maul, Scholomance, and Stratholme, then speak with the Festival Flamekeeper.", + ["T"] = "A Light in Dark Places", + }, + [9388] = { + ["D"] = "There are many flames burning throughout the world today, $n. The trickiest fires to tend are those that burn green; they do not stay lit long without supervision. Make certain the emerald fires still burn on Kalimdor for our Flamekeeper, eh?$B$BYou will find them near Ratchet in the Barrens, close to the Master\'s Glaive in Darkshore, in the forest of Ashenvale by the bridge near Silverwing Outpost, and near the road to Windshear Crag along the main road in Stonetalon Mountains.", + ["O"] = "Visit the bonfires within Ashenvale, the Barrens, Darkshore, and Stonetalon Mountains, then speak with the Festival Flamekeeper.", + ["T"] = "Flickering Flames in Kalimdor", + }, + [9389] = { + ["D"] = "The Midsummer Fire Festival traditionally lights up the land with a myriad of flames. Some argue that the green fires are the finest, as they are the hardest to maintain and have such a distinctive hue.$B$BMake sure they still burn in the Eastern Kingdoms for our Flamekeeper. They sit near Dun Modr in the Wetlands, close to Pyrewood Village within Silverpine Forest, on the cliffs overlooking the lighthouse in Westfall, and by the ruined tower in Hillsbrad Foothills.", + ["O"] = "Visit the bonfires within Hillsbrad Foothills, Silverpine Forest, Westfall, and the Wetlands, then speak with the Festival Flamekeeper.", + ["T"] = "Flickering Flames in the Eastern Kingdoms", + }, + [9411] = "_", + [9412] = "_", + [9413] = "_", + [9414] = "_", + [9458] = "_", + [9459] = "_", + [9477] = "_", + [9478] = "_", + [9479] = "_", + [9480] = "_", + [9481] = "_", + [9482] = "_", + [9556] = "_", + [20000] = { + ["D"] = "The orb shines as bright as the Sun inside the dread walls of Naxxramas.$BWith the Horsemen defeated, your next challenge is soon to be approached, you decide to take the orb with you and bring it back to Light\'s Hope Chapel if you survive.", + ["O"] = "Take the Orb of Pure Light to Maxwell Tyrosus in Light\'s Hope Chapel, Eastern Plaguelands.", + ["T"] = "[DEPRECATED] Orb of Pure Light", + }, + [20001] = { + ["D"] = "It\'s like nothing I have ever seen before, $N.$BIt\'s like the very essence of the Light comes out of this orb, a strange thing that the Ashbringer left behind as he was freed from the clutches of the Scourge.$BI really cannot spare any time to aid you with this. Even if the Dread Citadel fell we still have a long way to go. While the Arch Lich has been defeated we have yet to find his phylactery.$BThe Argent Dawn is a mess, the casualties were many and the rest of us are beyond tired. While you will not find help here, I know where to send you, and I am sure he will be able to help.$BSeek Tirion Fordring, here, in Eastern Plaguelands to the West.$BI am truly sorry and I wish you luck.", + ["O"] = "Find Tirion Fordring in Eastern Plaguelands.", + ["T"] = "[DEPRECATED] Seek Help Elsewhere", + }, + [20002] = { + ["D"] = "$BBy the Light!$BThis pure essence, this raw energy of the Light, this is definitely Alexandros himself!$BHis dormant soul turned into this orb, but for what purpose?$BI can\'t wrap my head around this, but perhaps we can try to wake him up. Not sure that\'s the right choice of words here. But how can we even do that?$BSomething familiar might do the trick.$BListen $N. Saidan Dathrohan was one of the very first Paladins, a friend of mine and Alexandros, at some point he went insane. Which in these times prove to have been due to a certain demonic influence.$BWhen Renault killed his father, Saidan took the Ashbringer\'s Tabard as a trophy.$BAt the same time, if my information is correct, Baron Rivendare proudly wore Alexandros\' cape as mockery.$BYour task is to venture into the Stratholme and find these items that once belonged to the Ashbringer. Take the orb with you, I am sure you will get a reaction. In the meantime I will try to wrap my head around this situation.", + ["O"] = "Recover Tabard of the Ashbringer and Cape of Alexandros from Stratholme.", + ["T"] = "[DEPRECATED] To Wake the Ashbringer", + }, + [20003] = { + ["D"] = "I can feel it $N.$BThe spirit of Alexandros and its thirst for justice. These lands are too corrupted for us to communicate with him, if we are to ever reach him we need a place strong in the Light.$BBy the Light\'s guidance, I feel that we must travel to Uther\'s tomb.$BCompleted any duties you have left and meet me there. My only wish is that this fragment of his spirit is willing to communicate and cooperate with us.$BOnly time will tell.$BTo Uther\'s tomb!", + ["O"] = "Meet Tirion Fordring at Uther\'s Tomb, Western Plaguelands.", + ["T"] = "[DEPRECATED] Spirit of the Ashbringer", + }, + [20004] = { + ["D"] = "$BSo, the one to free me from eternal undeath is also the one to reach my message. The Light showed me this path.$BListen well, $N. I am Alexandros Mograine, the Ashbringer. Once a member of what is now the despicable Scarlet Crusade.$BA paladin, a husband, a father, and now nothing more than a ghost. My spirit is restless and I cannot and will not move on before my justice have been met. Yes, you\'ve heard me well, this is not the Light\'s justice but the Ashbringer\'s.$BI am willing to give information to you, information that will let you be a part of something grand.$BInformation that once and for all will bring the demise of the Scarlet Crusade. And yes, surprisingly you are yet to end them.$BI ask for humility, from the one that defeated me in battle, from the one that liberated my soul. Bow to the Ashbringer, let me feel that my legend amongst the mortals of our world has yet to perish.", + ["O"] = "Bow to the Ashbringer.", + ["T"] = "An Act of Humility", + }, + [20005] = { + ["D"] = "After leaving behind my mortal shell the Light has shown me many different things.$BMy life, my mission, my future.$BAll I wish now is to end the Scarlet Crusade.$BBridgette Abbendis has retreated to the Scarlet Monastery. She ordered the recruitment of more men and devised a new concoction that\'d instantly put an end to the undead.$BIt seems her plans were not effective since the day she decide to hide in her chambers to meditate. The Light has its own paths you see, mysterious to us. She was to harbor more power for a purpose that is nothing else but foolish. East of Tyr\'s Hand the Scarlet Crusade prepares for a trip North, waiting for their leader to return so they can commence.$BBut against their own odds, a dark power infiltrated the Monastery during her meditation and has forever tormented the already fanatical minds.$BThey can longer see any difference between the living and the undead. Their use of shadow magic comes from a different power, one that could equal the Light itself.$BIt\'s time to decide whether you are ready to prove your own mettle.$BNaxxramas was a threat indeed, but the powers at play here can very well surpass it. Are you ready $N?", + ["O"] = "Speak to the Spirit of Alexandros Mograine.", + ["T"] = "The Foul Stench of the Scarlet Crusade", + }, + [20006] = { + ["D"] = "Tracks whether player has disarmed war mode.", + ["O"] = "", + ["T"] = "Disabled Warmode", + }, + [39000] = { + ["D"] = "Come on up, folks, and behold, Vizlow\'s magical—ahem... MIST machine!$B$B$B$BAh, a potential customer! You must have come from across the world to see the wonders that my machines do.$B$BNo? Oh well, it doesn\'t matter. Then it must be fate! Or whatever deity you believe in has brought you to me. Listen, this machine can do wonders, kid. It can expand your physical and mental capabilities!$B$BAnd all you need to do is insert gold in it to make it work! So, what do you say? Pay ten gold to activate it. Of course, I will need 340, for—ahem... materials, yes materials!", + ["O"] = "Give Vizlow 350 gold coins to buy and activate the mysterious machine.", + ["T"] = "Goblin Brainwashing Device", + }, + [39001] = { + ["D"] = "This modish Senator over there won\'t fool anyone! Part of Explorers\' League, sure thing! Bah! What a bluster!$B$BTell ya what, ye can never call yerself an Explorer unless ya go and check every nook \'n cranny by yerself!$B$BOf course, he never gone any farther than this quarry here. But, I see I won\'t hafta talk ye down fer some poking around and find things out by yerself, eh?$B$BGood. I\'d like ya ta tell me what you\'ll find out in that cave with all those troggs.$B$BThey must\'ve come from somewhere, right?", + ["O"] = "Explore the cave of Gol\'bolar Quarry.", + ["T"] = "Curiosity Leads Us Forward", + }, + [39977] = { + ["D"] = "You have caused quite the commotion around here. I was sleeping in a wonderfully deep slumber, when all your fireworks just became too much and I couldn’t ignore it any longer. Admittedly, what I woke up to was a delightful display. Seeing everyone celebrate in unison brought a comforting warmth to this old spirit. Have you spoken with my good friend the Turtle Spirit, perhaps? He would surely love to see such a spectacle himself.$B$BInfact, I do as well. Such jolly cooperation is rare and needs to be cherished! If you bring me more of those remarkable fireworks and some herbal tea for relaxation, I will share some of my blessings of good fortune with you!", + ["O"] = "Acquire three of each extravagant firework, as well as some herbal tea from Nordanaar for the Great Spirit of Harmony. He awaits in Booty Bay.", + ["T"] = "United in Cooperation", + }, + [39978] = { + ["D"] = "Great traveler! This year has been an adventurous one; full of excitement, surprises, challenges and newfound friendships. You\'ve faced many hardships and braved many more dangers, and emerged from them victorious - stronger and wiser! Let us celebrate that and show our gratitude with a grandiose firework!$B$BAny ordinary firework will not suffice, however. To properly commemorate the achievements of you and your compatriots, we require something truly unique! Deep in the perilous dungeons of Azeroth, the most gruesome foes and monsters keep extravagant fireworks in their possessions. Vanquish them, and light the three different fireworks in front of me to receive my blessings!", + ["O"] = "Light the three extravagant fireworks three times in front of the Great Spirit of the Turtle. You can find them on the strongest creatures within dungeons.", + ["T"] = "Celebrations of a Bountiful Year", + }, + [39979] = { + ["D"] = "Great traveler! This year has been an adventurous one; full of excitement, surprises, challenges and newfound friendships. You\'ve faced many hardships and braved many more dangers, and emerged from them victorious - stronger and wiser! Let us celebrate that and show our gratitude with a grandiose firework!$B$BAny ordinary firework will not suffice, however. To properly commemorate the achievements of you and your compatriots, we require something truly unique! Deep in the perilous dungeons of Azeroth, the most gruesome foes and monsters keep extravagant fireworks in their possessions. Vanquish them, and light the three different fireworks in front of me to receive my blessings!", + ["O"] = "Light the three extravagant fireworks three times in front of the Great Spirit of the Turtle. You can find them on the strongest creatures within dungeons.", + ["T"] = "Celebrations of a Bountiful Year", + }, + [39982] = { + ["D"] = "Can you believe this? They\'ve taken all our assets, kicked us out of our building, and arrested our representitives. K\'ron Tusk is being held in a cell down at the Cleft of Shadow. An innocent orc imprisoned!They\'ve accussed us of being spies, simply because of Mr Tusk\'s unorthodox ancestry, and for having some investors from the other side of the pond among our ranks.Will you help me get our people out of here? The warchief might not care about the economic potential his city is losing, but his grunts still have bills to pay. I\'m sure you could arrange Mr Tusk\'s release!", + ["O"] = "Bribe the grunts guarding K\'ron Tusk in the Cleft of Shadows.", + ["T"] = "Rich and Convicted", + }, + [39983] = { + ["D"] = "You want me to release the prisoner? As much as I appreciate your generous donation, I\'m afraid I can\'t do that! The warchief does not take kindly to grunts who disobey orders.I am bound by honor to carry out my duty. We grunts are loyal and brave. I\'m not afraid of anything. Except maybe big snakes, I hate snakes. Good thing there aren\'t any here.Wait, what were we talking about? Me forgot.", + ["O"] = "Obtain a large snake from Xan\'tish in Orgrimmar.", + ["T"] = "Rich and Convicted", + }, + [39984] = { + ["D"] = "I am free! Thank you my friend.I\'m afraid I don\'t have anything to repay you with currently, as the warchief\'s thugs took all my belongings, but my business associate Marlos Catos will compensate you.Come meet us at our new office in Booty Bay, the free trade port across the ocean. We are safe from the overreaching hands of governments there.", + ["O"] = "Speak to Marlos Catos in Booty Bay to be compensated for your service to Shell Co.", + ["T"] = "Rich and Convicted", + }, + [39986] = { + ["D"] = "Can you believe what the tyrannical bureaucrats in charge of Stormwind have done? They have declared that Shellcoin investments are subject to taxation! It\'s an outrage!We can\'t possibly continue to operate in this city under these rules. Something has to be done! Will you help us change their minds?Go to Stormwind Keep and speak to the legislators there. Help nudge them in the right direction by giving them a taste of the prosperity Shellcoin provides. Five gold ought to be enough.", + ["O"] = "Convince Lord Baurles K. Wishock to oppose new taxation laws.", + ["T"] = "Excessive Regulations", + }, + [39987] = { + ["D"] = "You may have secured the House of Nobles\' support, but we cannot overturn the law by ourselves. To guarantee success at the next legislative council, your motion must have the church\'s support as well.I hear that Bishop DeLavey is great enjoyer of expensive rum. If you were to present him with a few bottles of the stuff, he\'d agree with anything you have to say.", + ["O"] = "Bring 10 bottles of Rumsey Rum Light to Bishop DeLavey.", + ["T"] = "Excessive Regulations", + }, + [39988] = { + ["D"] = "You say you\'re worried about some unholy new law? Fear not, $n, I shall speak out against it at the next legislative session. Everything for a good friend of the holy light like you! Hic!But for the bill to pass, it would still need the royal seal of approval. Tell his highness what you told me, and that you have mine and Lord Wishock\'s support. Maybe throw in five gold for good measure!", + ["O"] = "Convince Highlord Bolvar Fordragon to sign the repeal of the tax bill.", + ["T"] = "Excessive Regulations", + }, + [39989] = { + ["D"] = "This is an outrage! I do not care what that drunkard bishop or some greedy lord promised you. The kingdom of Stormwind is not for sale! I will deal with those corrupt worms later.I shall not let the citizens of Stormwind fall victim to your pyramid scheme. Go and tell your benefactors the law is here to stay. They shall not be allowed to exploit gullible people\'s hopes and desperation any longer.Now get out of my sight.", + ["O"] = "Report back to the Shell Co Lobbyist.", + ["T"] = "Excessive Regulations", + }, + [39991] = { + ["D"] = "I\'m glad you\'ve decided to join us $n. I\'ve heard of the work you\'ve done in the field, and I must say I\'m impressed. You are exactly the kind of highly motivated individual we need in this organization.$B$BIf we are to hold this castle in the long term, we must secure our supply lines. I\'d like you to ambush that prick Valorcall and end his patrols once and for all. He has guards accompanying him, so be careful, perhaps even bring another operative to assist you, but get it done! Do not return to me until he\'s dead.", + ["O"] = "Kill Lieutenant Valorcall and the 2 Stromgarde Cavalrymen who patrol with him.", + ["T"] = "Securing the Roads", + }, + [39992] = { + ["D"] = "Now that the only way in or out of Stromgarde Keep is under our control, it\'s time to secure The Sanctum, the final holdout of the old kingdom.$B$BI\'ve had enough of this so called prince. Can you believe he\'s placed a bounty on my head? Ha! I want you to teach him who\'s the boss around here. Once all that remains of the past is dead and buried, we shall be the true masters of Stromgarde.", + ["O"] = "Kill Prince Galen Trollbane and return to Lord Falconcrest.", + ["T"] = "Securing the Keep", + }, + [39993] = { + ["D"] = "The prince may be dead, but there are still soldiers around my castle. How am I supposed to run a criminal enterprise with all this interference?$B$BI trust you to finish the job. Eliminate the competition, so that I can focus on more important matters.", + ["O"] = "Kill 2 Stromgarde Defenders and 2 Stromgarde Vindicators.", + ["T"] = "Cleaning Job", + }, + [39994] = { + ["D"] = "I was supposed to craft a powerful new weapon for our brave warriors. A weapon that will inspire fear in the enemy upon first sight. Why am I sitting idly instead of working on it, you ask?$B$BUnfortunately, the plans for this weapon were stolen before they reached the Crossroads. The orc carrying the plans did not survive the attack, but perhaps somebody else witnessed it and can identify the perpetrators.$B$BAsk the guards around the Crossroads if they saw who it was. We must recover those plans.", + ["O"] = "Speak with a Horde Guard in The Crossroads", + ["T"] = "Horde Defender\'s Axe", + }, + [39995] = { + ["D"] = "I did not witness the attack itself, but I did see something suspicious while patrolling the road. A group of human soldiers was heading south east. They were mounted, so I could not catch up to them.$B$BI suspect they killed the orc you speak of, and then returned to Northwatch Hold with the loot. Perhaps you should start your search there. I would come with you if I could, but I must remain at my post.", + ["O"] = "Bring the Stolen Weapon Plans to Nargal Deatheye at the Crossroads.", + ["T"] = "Horde Defender\'s Axe", + }, + [39996] = { + ["D"] = "I\'ve gone over the plans for the weapon, and they are quite spectacular. It is not the most practical weapon, but it will strike fear in our enemies. The handle is to be made of bone. And not just any bone, but a huge strong bone.$B$BThe closest suitable source are the Kolkar, with their powerful long legs. Go to their territory, find a big enough Kolkar, and slay him.", + ["O"] = "Bring a Long Kolkar Bone to Nargal Deatheye at the Crossroads.", + ["T"] = "Horde Defender\'s Axe", + }, + [39997] = { + ["D"] = "Now it\'s time to fetch the materials for the blade. This won\'t be a traditional blade made out of metal, as you would expect. It will be made out of stone, but not any ordinary stone. Something that will truly terrify the humans.$B$BGo to Thunder Bluff, and speak with Birgitte Cranston, the portal master. She will help you find the special stone we need.", + ["O"] = "Speak with Birgitte Cranston in Thunder Bluff.", + ["T"] = "Horde Defender\'s Axe", + }, + [39998] = { + ["D"] = "Oh, my! How delightfully brilliant. I love Nargal\'s plan. You are to desecrate a human graveyard, and steal one of their tomb stones.$B$BI envy you. I wish I could accompany you on your mission. Make sure to slay a few extra humans on the way there for me! When you are ready, I shall teleport you to Westfall, near one of their settlements.", + ["O"] = "Bring a Stolen Tombstone to Nargal Deatheye at the Crossroads.", + ["T"] = "Horde Defender\'s Axe", + }, + [39999] = { + ["D"] = "I am thankful for you help in crafting this weapon. However, I cannot simply hand it over to you. This is a weapon made for veterans of the Horde, who have proven themselves in battle against the Alliance.$B$BIf you wish to wield it yourself, you must join the war effort in Warsong Gulch. Help our side to the best of your ability, and then return to me with a mark of honor as proof of your participation in the battle. Only then will you be worthy of this weapon.", + ["O"] = "Bring a Warsong Gulch Mark of Honor to Nargal Deatheye at the Crossroads.", + ["T"] = "Horde Defender\'s Axe", + }, + [40001] = { + ["D"] = "Ah, Earthmother\'s blessings, $R.$B$BIsn\'t it great? Out here in the open, surrounded by nature.$B$B$B$BNot the good stuff, not at all.$B$BSay, think you could do me a favor?$B$BI am expecting a package, but it has yet to arrive. Could you go and check with Mishiki in Sen\'jin Village and find out what happened to my special delivery?$B$B", + ["O"] = "Speak to Mishiki in Sen\'jin Village.", + ["T"] = "Puffing Peace", + }, + [40002] = { + ["D"] = "So, I sent me usual messenger to deliver the good stuff to Mulgore, but, ya see, that grumpy orc riding his wolf around Durotar reported seeing him dead with me herbs missing!$B$BDa quillboars be more aggressive than usual if dey came down from da roads to slay me messenger!$B$BI mean, Durotar be no walk in the park, either. Everything can kill ya here if ya not paying attention.$B$BI bet dey took his satchel after killing him and took it back to dey camp, or maybe dey are even carrying it on dem!$B$BTry killing some of da scouts. If ya do find da satchel, take it back to Shagu and keep da pay fo\' yourself!$B$BSafe travels, mon. Loa guide ya steps.", + ["O"] = "Find Shagu\'s Satchel of Mixed Herbs and return to Shagu in Bloodhoof Village.", + ["T"] = "Grand Herbal Theft", + }, + [40003] = { + ["D"] = "Now that you\'ve brought the herbs, I can set up my hookah and truly enjoy the real good stuff.$B$BIt is by the Earthmother\'s blessings that such a combination exists. I would like you to try this and see for yourself what gifts the Earthmother bestows!$B$BSit down, sit down. Let us enjoy the smoke and bond with one another, and, of course, with the Earthmother.", + ["O"] = "Share a smoke with Shagu.", + ["T"] = "Hookah for Your Troubles", + }, + [40004] = { + ["D"] = "We be in danger, mon. Enemies are encroaching on Winterax territory from all sides. If we are to survive, we must fight back. Alterac belongs to us, not to gnolls, dwarfs or orcs!$B$BProve you are a real warrior by attacking the Wildpaw camp to the east. Slay them, and I be giving you a big reward, worthy of a champion.", + ["O"] = "Kill 10 Wildpaw Mystics and 10 Wildpaw Brutes, then report back to the elder in the Winterax cave.", + ["T"] = "Winterax Champion", + }, + [40005] = { + ["D"] = "I love gnomes. So tender and tasty. I am making a boiled gnome stew for the rest of the tribe, but I don\'t have the main ingredient!Take this rope and go bring me a live gnome. Make sure its bloodied up first, so its juices are flowing and its meat sufficiently tenderized.Chop chop!", + ["O"] = "Use the rope to capture a live gnome and bring it to the Winterax Cook.", + ["T"] = "Gnome Stew", + }, + [40006] = { + ["D"] = "I\'m so hungry, I could eat a whole cow. Sadly there are no cows in Alterac Valley. But some scouts spotted something even bigger recently.Delicious beefy taurens were seen running wild among the orcs in the south. If you catch one of those, we could feed the whole tribe!You must go hunting as soon as possible, before the taurens have migrated away.", + ["O"] = "Use the rope to capture a live tauren and bring it to the Winterax Cook.", + ["T"] = "Roasted Tauren", + }, + [40014] = { + ["D"] = "The trolls were once known far and wide as the greatest hunters on Azeroth and some of those legends have persisted until today. There is time to hunt for sport and time to prepare, and as much as I would love to put you to the challenge there\'s the problem of the Witherbark.$B$BPaying homage to Shadra in their attack, they fell upon us with poisons almost like the days of old. This time we will be prepared. Head into the heart of the Arathi Highlands and hunt Giant Plains Creepers for their venom sacs.$B$BOnce you have enough for several anti-venoms, return to me and we can see if there are more preparations to be made.", + ["O"] = "Slay Giant Plains Creeper for 5 Greater Venom Sacs.", + ["T"] = "Titiki\'s Hunt", + }, + [40015] = { + ["D"] = "You\'ve done well so far, but the biggest of the plains creepers stands before you, $c. The Witherbark trolls have been harvesting venom from the spider after putting it to sleep with mojo in her food!$B$BHeketh is a fearsome foe that many trolls have fallen to, so keep your wits about you! You can find the great spider just west of Go\'Shek Farm.$B$BFind her and put an end to the Witherbark\'s source of powerful venom!", + ["O"] = "Slay Heketh within Arathi Highlands, and then return to Titiki.", + ["T"] = "The Hunt for Heketh", + }, + [40016] = { + ["D"] = "Gortog was once member of Boulderfist Ogres. We smash anyone who stop us! Gortog spoke out against leader about fighting Horde, and was kicked out of Boulderfist. Gortog did stupid, but Gortog still want Ogre Beads given to me for smashing.$B$BOne of Boulderfist Ogres at Outpost still have, I know it. It is just southwest of here. Go smash Boulderfists and get my beads back! They are important!", + ["O"] = "Smash Ogres at the Boulderfist Outpost and retrieve Gortog\'s Beads", + ["T"] = "Gortog\'s Beads", + }, + [40017] = { + ["D"] = "Things might be quiet right now, but the war between us and the Witherbark is not over. While they recuperate from the initial attacks, we must prepare for their eventual descent down the mountain.$B$BYin\'do has given me orders to make as much armor as I can for the upcoming battle, but my supplies are limited. Go down south from the mountains and gather the hides of Arathi Raptors to be used in the creation of especially sturdy armor.$B$BThere is no creature in the region with stronger hide than the raptors. You must be swift.", + ["O"] = "Collect 10 Arathi Raptor Hides from raptors in Arathi Highlands.", + ["T"] = "Preparing for War", + }, + [40018] = { + ["D"] = "The Witherbark are a brutal enemy, one that attacked in the dead of night and had no mercy for my people. Those of us here were lucky to escape, and now it seems as if they are just biding their time for the next attack.$B$BWe must not let it be so. As outnumbered and unprepared as we are, we need to reduce their ranks. Head into the Ruins of Zul\'Rasaz and kill as many of the Witherbark as you can manage. Show those traitors that the spirits remain on our side and that we remain the true masters of these heights.", + ["O"] = "Kill 14 Witherbark Raiders, 8 Witherbark Soothsayers, and 5 Witherbark Rogues.", + ["T"] = "War on the Witherbark", + }, + [40019] = { + ["D"] = "When we fled from our once-hidden city we left everything that we did not need, even the charms we use in many of our magic rituals and in showing respect to the spirits.$B$BI fear we have upset the spirits by abandoning our charms in Zul\'Rasaz and when next the Witherbark attack, our voodoo will abandon us!$B$BThere is no hope to stand against the Witherbark without the aid of the spirits, $c. Go to the Ruins of Zul\'Rasaz, quickly, and retrieve our lost charms before it is too late.", + ["O"] = "Collect 5 Wildtusk Charms from the Ruins of Zul\'Rasaz.", + ["T"] = "The Wildtusk Charms", + }, + [40020] = { + ["D"] = "As we fled the chaos of Zul\'Rasaz, many of my people had to leave behind cherished belongings and other items that had personal value. I am no different. I am ashamed to say that I abandoned an amulet that has been passed down in my family for generations, since the time of the last great empire.$B$BIt plagues my mind, $c. The spirits will never answer my call again should I not make up for this great shame. You must retrieve it for me! The ruins of Zul\'Rasaz can be accessed by the trail outside of town to the northwest. My home is near the top of the ruined city.$B$BI would make the journey, but I cannot risk my life for such a selfish reason. You will be rewarded for your help, I assure you.", + ["O"] = "Find Yin\'dos necklace in the Ruins of Zul\'Rasaz.", + ["T"] = "The Ancestral Amulet", + }, + [40021] = { + ["D"] = "After the empire was broken, my people fled into the mountains where we flourished for generations, maintaining a positive relationship with the local elementals and nurturing their growth.$B$BWe did not know that one of our own had fallen to the corruption of the Witherbark\'s lust for power. Traitors to the memory of the empire, they fell upon Zul\'Rasaz and slaughtered my people in their beds.$B$BSpeaker Gan\'to, someone I once called a friend, is responsible for this tragedy. You will go to the ruins of Zul\'Rasaz and you will kill him for the sake of my people. Bring justice to those who did not get to fight that day, $c.", + ["O"] = "Bring the head of Speaker Gan\'to to Chief Yin\'do.", + ["T"] = "The Speaker\'s Betrayal", + }, + [40022] = { + ["D"] = "Now that the traitor has been brought to justice, we can focus upon the leader of this warband, Kin\'toza. Possessed with dark fury, the warband leader now lays claim to the ruins of our city while preparing to descend the mountain on his return to Witherbark Village.$B$BYou must stop their plunder and break their morale! Bring the head of Kin\'toza to me and it will serve as a symbol for my people to rally behind. With their leadership in shambles, we would truly stand a chance at reclaiming Zul\'Rasaz.", + ["O"] = "Bring the head of Warleader Kin\'toza to Chief Yin\'do.", + ["T"] = "The Witherbark Warband Leader", + }, + [40023] = { + ["D"] = "The Wildtusk have always held good relations with the elemental beings. It is up to us, the speakers, to commune with the spirits and elements alike. Lord Rog be troubled by disturbances that go beyond Wildtusk Village.$B$BWe don\'t have the strength or the means to help him, but perhaps you can, mon? The elements do not reach out often, so we cannot miss this opportunity. Speak with Lord Rog and see if you can help in our stead.", + ["O"] = "Speak with Lord Rog.", + ["T"] = "Assisting Lord Rog", + }, + [40024] = { + ["D"] = "My kind have become disconnected from the Elemental Plane here within the Arathi Highlands. Foreign disturbances and the death of our leaders have left us disillusioned and waning in our powers. I have no control over the elementals that I was charged with, and I believe there is more at play here.$B$BTo the southwest is the Circle of Inner Binding. It is where my followers are scattered. Go there, and take from them the Inner Binding Bracers they possess. They will not give them to you willingly, so you must destroy them.", + ["O"] = "Gather 5 Inner Binding Bracers from Rock Elementals at the Circle of Inner Binding in Arathi Highlands.", + ["T"] = "Lord Rog\'s Exiles", + }, + [40025] = { + ["D"] = "With Ganz\'ih\'s remark, it would appear these bracers have become corrupted. Someone is taking advantage of our weakened status and turning my kind to nefarious means. We must cleanse these bracers of their taint, and to do so, I require natural materials.$B$BYou can find them in this world, and they should do well in purifying the taint. Bring Speaker Ganz\'ih five Life Roots, ten Solid Stones, and three Wild Steelblooms. He will be preparing the materials for me.", + ["O"] = "Gather 5 Life Roots, 10 Solid Stones, and 3 Wild Steelblooms, and bring them to Speaker Ganz\'ih.", + ["T"] = "Inner Binding Purification", + }, + [40026] = { + ["D"] = "It is done. I have gotten all of the materials prepared and given them to Lord Rog. He shall begin the purification of his bracers. We have done well. Let us wait until he is done.", + ["O"] = "Wait for Lord Rog to purify the bracers.", + ["T"] = "Lord Rog\'s Favor", + }, + [40027] = { + ["D"] = "The world we come from is a hellish place. One filled with danger, with demons, and hostile to life in all ways imaginable. Food was scarce, and water even scarcer. I led my people to the safety of this world through our magic by way of the Rift. In the ancient days, my people created a charm that attuned them to the old world, and it held great magic. This allowed for Riftwalking, the ability to travel great distances.$B$BMuch of this skill is lost to us now. From stories told to me by the older generations, it was much more powerful than the primitive means we currently use.$B$BThe Sanv Charm, a powerful item, was lost on one of my trips to the Misty Valley. I have been attempting to communicate with a Riftseeker that was from the Harborage. As I was attempting communication in the valley, swampwalkers approached and attacked me. I was unable to gather the charm, so I left it in a small chest and fled for my life. Get it for me. It is of great importance.", + ["O"] = "Head to the Misty Valley and find the Sanv Charm.", + ["T"] = "The Sanv Charm", + }, + [40028] = { + ["D"] = "I was once the master hunter of the tribe long ago. I stalked the paths of Outland with efficiency and defeated many fearsome foes. Both orc and beast alike were slain by my swift arrows and deadly proficiency.$B$BBut, I am no longer Har Na\'lan the great hunter, I am Har Na\'lan the old. I can feel age slowing me down, and even the local wildlife has been a challenge.$B$BOver six hundred years ago, I slew my most fearsome foe, a mighty Ravager by the name of Garek\'sa. The Ravagers were mostly extinct with the coming demons and through age. But Garek\'sa lived on as a mighty, and fearsome foe, as large as the biggest of our huts. With two quick arrows to its neck and a slash to its abdomen, I slew the creature and took its horn as a trophy.$B$BIt is a shame to say, when we left the Fallow Sanctuary to the east, I had no time to gather my possessions, and my horn was left behind. Get it for me, please and I shall reward you greatly.", + ["O"] = "Find the Horn of Garek\'sa for Har Na\'lan at the Fallow Sanctuary.", + ["T"] = "The Horn of Garek\'sa", + }, + [40029] = { + ["D"] = "The lost ones of Fallow Sanctuary are a menace to the Harborage. Every day, we must live in fear that they attack in their state of madness. We do not have the Draenei to fight them off should they ever gather into a large enough force.$B$BThe Muckdwellers have been scouting the Harborage for days now, and I sense that they may be preparing for something. I ask you to help us slay the maddened ones and give us a chance of survival. You will find them to the east, but be careful. They are extremely hostile.", + ["O"] = "Slay 8 Lost One Muckdwellers and 3 Lost One Hunters.", + ["T"] = "Hunting the Hunters", + }, + [40030] = { + ["D"] = "There is one we fear. His name is Noboru the Cudgel, and he roams with a band of thugs who terrorize us at every opportunity. He is a skilled warrior from our old tribe on Outland. Very few in the village can stand up to him and his goons both. Noboru has enacted great brutality on the Harborage and killed members of our tribe without any sign of remorse.$B$BNoboru must be stopped. You must kill him for the bloodshed to end. He wields a Cudgel, and it is from this brutal weapon he has gained his nickname. Defeat him and bring us his weapon so that we may still survive on this foreign world.", + ["O"] = "Find and slay Noboru the Cudgel, and bring Noboru\'s Cudgel to Magtoor.", + ["T"] = "Noboru the Cudgel", + }, + [40031] = { + ["D"] = "It is good to work with leather again. On our old planet of Outland, we had scarce access to this resource. It was considered a rarity, a luxury there with the lack of beasts and lack of water. Our planet was once as dense and populated as this world until the demons came, and the waters dried. It is like we live in a paradise on Azeroth. I had my doubts about Sanv K\'la and his plan at first, but it seems like this land is much more promising than I had imagined.$B$BI would ask you, outsider, to gather leather for me from the Young Sawtooth Crocolisks. It is thick but still stretchable in its quality and has made good use for our purposes. With the lost ones of Fallow Sanctuary lurking about, it has been more dangerous to get.", + ["O"] = "Gather 10 Sawtooth Leather for Masat T\'andr.", + ["T"] = "Leather, a Draenic Luxury", + }, + [40032] = { + ["D"] = "Akh Z\'ador is a Riftseeker who led us to this world. He was one of the few of our kind that knew the magic of our ancient ancestors. He was skilled enough to bring our entire tribe here, and that of the Fallow Sanctuary, with the help of the other lesser Riftseekers.$B$BA few weeks ago, he attempted to return to the old world in search of more exiles to bring to the Harborage. I suspect something went terribly wrong, for I could not detect his presence upon our old world with the Sanv Charm. You see, the magic he is using is old, and somewhat unstable. We barely understand its usage, and only the bright minds like Akh Z\'ador can manipulate it enough to travel.$B$BI need you to gather materials in order to cast a spell to find his location and see perhaps where it is he has gone. Local materials should work just fine. Gather six Tangled Essence from the Tangled Horrors to the east, and a Marsh-Murloc Eye from Murlocs at the coast.", + ["O"] = "Gather 6 Tangled Essence and a Marsh Murloc Eye for Sanv K\'la.", + ["T"] = "Draenic Communication", + }, + [40033] = { + ["D"] = "My strength is sapped. I feel aged and weak, but I saw a city. A city that was submerged beneath the waves, as if the tides themselves had come and drowned it all. There were tall cliffs, massive in scale, and it seemed as if the spirits there wallowed in misery. Red leaves fell from the trees and a strong magic lingered and pulsated as if it wanted me gone. It weakened me and made it hard to focus.$B$BI am certain that Akh Z\'ador is on this world right now. He must have faced something on Outland and been forced to leave. That, or his rift\'s instability sent him to this foreign landscape.$B$BThis is but all I can remember, outsider. It seemed as if whatever resided there was strong -- much stronger than the wildlife here. Much stronger than even you. I beg of you to try to find Akh Z\'ador wherever he may be, no matter how long it takes you.", + ["O"] = "Find Akh Z\'ador.", + ["T"] = "Finding Akh Z\'ador", + }, + [40034] = { + ["D"] = "What business do you have here at the Rethress Sanctum? You are lucky our strength is not what it used to be. We are on trying times. If anyone wishes to visit with the Tide Mistress, then they first must speak to me. We Rethress come from the very depths of this world in places your kind have never seen, nor will ever see.$B$B... As much as I distrust you, interloper, we require aid from any that can offer it. Speak with Tide Mistress Rashal. You have my blessing in order to see her.", + ["O"] = "Speak with Tide Mistress Rashal.", + ["T"] = "A Meeting With Royalty", + }, + [40035] = { + ["D"] = "Before we left for the great depths, the Rethress spent some time within Stranglethorn. We butted heads with other Naga there, but otherwise kept low and to ourselves. Tide Mistress Rashal had something of a personal mission far in the east, and we made the island of Jaguero into a temporary base.$B$BIt wasn\'t long before we returned to the great depths in order to begin our mission here. In our haste, we left behind a small trunk that contains spoils of great importance to us for our future. Go there and gather our spoils!", + ["O"] = "Obtain the Rethress Spoils for Hashaz.", + ["T"] = "Spoils Left Behind", + }, + [40036] = { + ["D"] = "The Myrmidons of Rethress swore a sacred oath upon the stones of the Temple Rethress beneath the deep waves. Their word was their bond, but they broke the word of their sharp tongues and the oath they promised to keep. We were tasked with protecting Tide Mistress Rashal and carrying out her whims and deeds for the greater depths of all Naga.$B$BWhen the Spitelash were created, and the division began, all of the Myrmidons changed sides. They betrayed those loyal to the Rethress on orders from Naszharr and slew many of my most trusted brothers upon The Shattered Strand.$B$BI want them dead, interloper. I want their corpses to be feasted on by the depths. From their bodies, take their Myrmidon Signet\'s—a ring given to them upon swearing their oath.", + ["O"] = "Gather 20 Myrmidon Signets from Spitelash Myrmidon on the Shattered Strand.", + ["T"] = "A Broken Oath", + }, + [40037] = { + ["D"] = "I was sent to Azshara from the great depths of the world to claim ownership over these lands. I am royalty—royalty of the naga—and with my army, I could have been as strong as Queen Azshara!$B$BYet, here I am, ruling over a small band of my loyal followers with no sway or power in the world. I was betrayed by the naga that followed me, and you will help me get revenge. The Storm Bay Murlocs were that of my family\'s servants. Their betrayal is most foul to me. The creatures think they are above the will of Tide Mistress Rashal?$B$BYou can find these spineless followers all along the coastline of Azshara. Perhaps showing strength may help to get them back in line.", + ["O"] = "Kill 10 Storm Bay Warriors and 10 Storm Bay Oracles for Tide Mistress Rashal.", + ["T"] = "The Storm Bay Mutiny", + }, + [40038] = { + ["D"] = "The leader of the Storm Bay is a murloc with a brain the size of a small oyster. Mmrmglul is his name. He should be punished, and brutally, for rallying the Storm Bay Murlocs into an open revolt.$B$BYou\'ll find that slimy eel to the north through the pathways and along the coastline on the Southridge Beach. Bring his head to me as a showing to the rest of his lackeys that Tide Mistress Rashal commands the Storm Bay Murlocs.", + ["O"] = "Slay Mmrmglul and bring his head to Tide Mistress Rashal.", + ["T"] = "Keeping Command", + }, + [40039] = { + ["D"] = "The Rethress Tide Scepter holds power for me within the great depths of the world, and especially within Nazjatar. It is the birthright of the Rethress, and it gives us dominion over many others. I had suspected they would try to steal it when the Spitelash was formed to get this dominion.$B$BYou may wonder why I am telling you this. It would never concern a land-creature like yourself. Well, I buried the Scepter in a secretive location so that they could never claim power legitimately. Now that the Rethress Sanctum is founded, and we are not in immediate danger, I would like it returned to me.$B$BThere is a place called the Tower of Eldara, held by some Highborne Keeper. It is located at the very far northeastern tip of the peninsula. To the west of it, along the coast, are four rocks. Buried around those rocks is the Rethress Tide Scepter. Get it and bring it to me, interloper, to help me reclaim my birthright.", + ["O"] = "Find the buried Rethress Tide Scepter and bring it to Tide Mistress Rashal.", + ["T"] = "The Rethress Tide Scepter", + }, + [40040] = { + ["D"] = "Howdy! Welcome to Flaxwhisker post. I’m Fendo, in charge of all manner of things around here. I \'m supposed to direct any new arrivals in Flaxwhisker to the boss. That is to say, we haven\'t heard a word from Gnomeregan in months or received any new people! Still, good to have you around, $R. You\'ll find Gigno Flaxwhisker inside, at the top floor.", + ["O"] = "Speak with Gigno Flaxwhisker.", + ["T"] = "The Flaxwhisker Front", + }, + [40041] = { + ["D"] = "If you\'re the real deal, then you gotta do a real task. That makes sense, yeah? I\'ve been dying to get my hands on a Mistwing Horn for some time! Those creatures are quite powerful and supercharged with all sorts of natural energy. I\'ve had my suspicions for some time, now, that a Mistwing Horn could be useful beyond its practical purposes, and I\'d like to put it to the test. That\'s where you come in.$B$BThe Mistwing can be found to the northwest, just beyond Lake Mennar. Be careful, though. There is all manner of big and powerful things up there! Azshara sure is a dangerous place.", + ["O"] = "Obtain a Mistwing Horn for Gigno Flaxwhisker to prove your loyalties.", + ["T"] = "Flaxwhisker Loyalty", + }, + [40042] = { + ["D"] = "A Dalaran wizard stopped by a few weeks ago, believe it or not! I\'ve never met a wizard from Dalaran, and his magic was impeccable. I mean it! He offered us some help with a few projects but asked for some supplies in return. I haven\'t had the means to get them to him yet, given all of the danger between me and the camp he is at up north of here.$B$BDo me a favor, would you? Run my delivery to Magus Bromley. You can find him to the northwest of Lake Mennar. He has a tent overlooking the Ruins of Eldarath, just on the ridges there!", + ["O"] = "Deliver Gigno\'s Shipment to Magus Bromley in Azshara.", + ["T"] = "Delivery for Bromley", + }, + [40043] = { + ["D"] = "Before you return to Flaxwhisker Post, I would ask you to deliver a letter for me. It is about a robot that the Flaxwhisker post has been operating in the region for some time. I helped with its creation in detecting magic within Azshara, and I spotted it on a trip to the Rethress Sanctum a few weeks back. It was hopelessly mired in some state of disrepair, broken and mindless.$B$BGigno would want to know at the least what happened to it. Deliver this letter to him, $N, and thank you again for the supplies.", + ["O"] = "Deliver the Letter for Gigno to Gigno Flaxwhisker.", + ["T"] = "The Missing Robot", + }, + [40044] = { + ["D"] = "If the Analyzor 53G is still out there, then this is great news! We spent so long on its Analyzation Chip that it would be almost impossible to recreate. We had the magic of Bromley the first time, and without it, I could not replicate it entirely.$B$BThe Rethress Sanctum is located just east of here along the coast. Naga inhabit it who are not the friendliest to us. I don\'t want to risk any of my crew to get the Analyzation Chip! You will find it located just beneath the exhaust port of the inhibitor chamber on the main chassis at the posterior side, easy.", + ["O"] = "Retrieve the Analyzation Chip from Analyzor 53G near the Rethress Sanctum.", + ["T"] = "The Analyzation Chip", + }, + [40045] = { + ["D"] = "Now that we have the Analyzation Chip, I can focus on other matters! I\'d like for you to speak with Lorie Gearwatch. She has been in charge of flights from Flaxwhisker Front! Our main flying machine hasn\'t been seen in weeks, and I want to know who took the blasted thing.$B$BYou\'ll find her outside, she should have the Log Book, or at the least know where it is!", + ["O"] = "Speak with Lorie Gearwatch about the Flight Logbook.", + ["T"] = "Lorie\'s Logbook", + }, + [40046] = { + ["D"] = "Dinkle Togpipe—he was out at the landing pad to the far east on a small island.$B$BWe used that landing pad as a refueling area and resting spot for pilots. We used to have them dispersed across the ocean near the end of a Flight-Machine\'s fuel usage. It was previously possible to get from Gnomeregan to Kalimdor with ease, but I feel that the landing pads are in a state of disrepair. We haven\'t heard much in a long time from back home.$B$BIf you want the Flight Logbook, go and get it from Dinkle Togpipe stationed out there.", + ["O"] = "Travel to the Landing Pad in the east and obtain the Flight Logbook from Dinkle Togpipe, then return the Flight Logbook to Gigno Flaxwhisker.", + ["T"] = "The Flight Logbook", + }, + [40047] = { + ["D"] = "Flaxwhisker Front was started by Gnomeregan to advance Gnomish Engineering abroad with the use of Azshara\'s magical potency to try and make breakthroughs! We were given a Tinkerspark Transponder designed to harness magical energy in our contraptions, though this device was lost long ago to the naga. We have been waiting to get another one for months.$B$BWith the loss of my crew members and no supplies from Gnomeregan, I have but no choice to find out what is going on there. Why is everything so delayed?$B$BFind Tinkmaster Overspark. He should be in Gnomeregan unless some horrific disaster ruined the city! He is usually in the Engineering sector on the top floor. Bring this report to him with haste!", + ["O"] = "Find and bring Gigno\'s Report to Tinkmaster Overspark at the Gnomeregan Reclamation Facility.", + ["T"] = "Report for Gnomeregan!", + }, + [40048] = { + ["D"] = "I\'m honestly shocked I heard back from Flaxwhisker Front. I had assumed that they already knew what happened in Gnomeregan! The collapse of Gnomeregan destroyed almost all of our logistics heading that way, and it is impossible to help them out.$B$BI want you to send Gigno this letter. I\'ve included some coins in there to fund the journey back for the gnomes in Azshara. Make sure he gets this; it holds all the information he will need to get him up to date on what happened!", + ["O"] = "Bring Tinkmaster Overspark\'s Response to Gigno Flaxwhisker.", + ["T"] = "Report from Gnomeregan!", + }, + [40051] = { + ["D"] = "Little one, the promised land is far away, and there is much to do. If you wish to go there, you must retrieve clues dotted across the landscape and follow my instructions. Do this with patience and caution. We must act as if all is normal.$B$BThe first clue will be placed within a farm containing elements of the Hallow\'s End Festival.", + ["O"] = "Find the first clue.", + ["T"] = "Mysterious Cow Scroll I", + }, + [40052] = { + ["D"] = "You have found the first clue. There is a future for you yet, little moo. The second clue will be found far to the west, in a mine named after the human\'s most valuable coin.", + ["O"] = "Find the second clue.", + ["T"] = "Mysterious Cow Scroll II", + }, + [40053] = { + ["D"] = "The second clue is yours, but the next will be more perilous. Keep your wits about you. One that I called a friend died a long time ago and was buried in a large graveyard bigger than most. Find this grave, and you will find your clue.", + ["O"] = "Find the third clue.", + ["T"] = "Mysterious Cow Scroll III", + }, + [40054] = { + ["D"] = "With the third clue found, you get closer, little one. There is still searching to do, which will be harder for you. The next clue is in a land that the trolls call home, fighting with one another. A place where the animals lurk in deep woods. You will find this clue there, by water.", + ["O"] = "Find the fourth clue.", + ["T"] = "Mysterious Cow Scroll IV", + }, + [40055] = { + ["D"] = "This is the hunt for the final clue. It will be incredibly dangerous. Handle yourself with care, little moo. It is a place where those with green skin came to our world.", + ["O"] = "Find the final clue.", + ["T"] = "Mysterious Cow Scroll V", + }, + [40056] = { + ["D"] = "You have found the scroll. Excellent work. You must bring the required materials to Bessy within the Circle of Stones. You will be welcomed with open arms.", + ["O"] = "", + ["T"] = "The Scroll of Cow Portal", + }, + [40057] = { + ["D"] = "Now that we know Gnomeregan is destroyed, and there is no way to get a new Tinkerspark Transponder, we must reclaim our old one. The naga stole it months ago, and we must have it to make progress here.$B$BThere\'s no way back to Gnomeregan, so we must make do with what is here in Azshara, and I know those blasted Naga still have it! The one who led the raid was called Laszan, a fearsome foe. If you want to stand a chance, I advise you to bring some friends. It might be your only way of killing him for good!$B$BHe should be east of the Ruins of Eldarath along the shoreline.", + ["O"] = "Reclaim the Tinkerspark Transponder for Gigno Flaxwhisker.", + ["T"] = "Reclaiming the Tinkerspark Transponder", + }, + [40061] = { + ["D"] = "There is one thing left for you to do, outsider, if you truly wish to assist the Rethress. The one who claimed dominion over these lands and betrayed me is Tide Lord Naszharr. He is a vile traitor who must be vanquished from this world.$B$BI want him to suffer—and suffer greatly. He resides near the Ravencrest Monument up to the northeast. Go there and rip the heart from him, then bring it to me. Make sure he regrets everything he has done to us.", + ["O"] = "Bring the Heart of Naszharr to Tide Mistress Rashal.", + ["T"] = "Killing the Tide Lord", + }, + [40062] = { + ["D"] = "When Gnomeregan first sent us here, they tasked us to obtain an Azure Scale from the Blue Dragonflight. Sadly, we have not had the means to do so!$B$BWe\'ve been too busy with other projects, and—well—we didn\'t want to stir the hive. Especially since we don\'t have any actual military capabilities! Now with you around, there is a possibility!$B$BThe Dragonflight has gathered around Lake Mennar to the northwest. Get me an Azure Scale from the Blue Dragonflight, and make sure to bring buddies.$B$BI\'d hate to have you die on my account!", + ["O"] = "Gather an Azure Scale for Blimo Gadgetspring.", + ["T"] = "An Azure Scale for Gnomeregan!", + }, + [40063] = { + ["D"] = "Hey there! Good to have new blood around, especially with everything that has been going on lately. It feels like every project we\'ve had has just been ground into the dirt, either from some outside force messing with us or, well, something breaking down!$B$BI\'m sort of in charge of the supplies around here, and murlocs took a bunch of Sprugbolts a few weeks back. I want you to get them back for me. You can find those crafty murlocs in the waters all around us.$B$BBring me back 5 Sprugbolts. I hope you like swimming!", + ["O"] = "Bring 5 Sprugbolts to Jubie Gadgetspring at the Flaxwhisker Front.", + ["T"] = "In Need of Sprugbolts", + }, + [40064] = { + ["D"] = "A few days back, this human ship was passing by. It didn\'t seem like anything weird, aside from a boat being all the way out here—that was until a fire started upon the deck, and all manner of chaos erupted. Both murlocs and naga attacked the ship!$B$BThey dragged it down, and the crew escaped somewhere along the coast to the east of here. I\'d imagine the boat is still resting along the bottom of the sea, and I want you to go through the wreckage! If the crew knew any gnomes or used any gnomish tools, then there is a very high chance that they had a Gyronautical Compass!$B$BI feel bad for the dead—surely—but it would help us quite a bit if we had such a device! Search the ship and its wreckage. It sank to the southeast.", + ["O"] = "Search the wreckage for a Gyronautical Compass.", + ["T"] = "The Gyronautical Compass", + }, + [40065] = { + ["D"] = "Now that Gigno has vouched for you, I\'d like to get some real work done around here! The Turbocharged Wobble-free Fizz Disk is an invention that I made. It assisted us in reading magic and ley levels within Azshara. We had a good thing going for a while until all of the naga and the murlocs showed up months ago!$B$BThey drove us away from our site, and I had to abandon the Fizz Disk, or I would have most certainly lost my life prying it free from their grasp. I want you to get it back to continue my work and not have to start all over. The Fizz Disk was something I was cooking up back in Gnomeregan, and many of my plans are still left behind there.$B$BTo the east is where the Rethress Naga have taken sanctuary. If you head north of the Sanctum, there is a somewhat maze-like canyon. Within that canyon, there\'s a cave. You\'ll find a control panel inside of that cave. Search the inside of the control panel for the Turbocharged Wobble-free Fizz Disk.", + ["O"] = "Retrieve the Turbocharged Wobble-free Fizz Disk for Fendo Wobblefizz at Flaxwhisker Front.", + ["T"] = "The Turbocharged Wobble-free Fizz Disk", + }, + [40066] = { + ["D"] = "The Turbocharged Wobble-free Fizz Disk must have fallen in a state of disrepair after I left. We did leave the control panel running. While this thing is durable, it\'s not durable enough to be under so much pressure for that long.$B$BI\'m going to need this thing repaired, and with your help, I will surely do it! The list of materials required will be somewhat long, but I promise I will make it worth your time if you can get the items.$B$BI am going to need the following: 10 Thorium Bars, 1 Thorium Widget, 5 Iron Struts, and 1 Unstable Trigger.", + ["O"] = "Gather 10 Thorium Bars, 1 Thorium Widget, 5 Iron Struts, and 1 Unstable Trigger for Fendo Wobblefizz in Flaxwhisker Front.", + ["T"] = "Repair the Fizz Disk", + }, + [40067] = { + ["D"] = "Thanks for getting it all. Now I can get to work. Where is my...$B$B$B$BHuh, I don\'t have my spanner on me. Could you look inside? If anything, it should be on the second floor inside of my toolbox. Once I have it, I\'ll get started.", + ["O"] = "Find Fendo Wobblefizz\'s Spanner.", + ["T"] = "Fendo\'s Spanner", + }, + [40068] = { + ["D"] = "Now that I have everything I needed, I\'m going to get to work! I will utilize the Turbocharged Wobble-free Fizz Disk and incorporate it into a few items. It\'ll take a little bit, so don\'t be too hurried, but when I\'m done, you can choose which one you like most!", + ["O"] = "Wait for Fendo to finish his work.", + ["T"] = "Wobble-free Fizz Gear", + }, + [40071] = { + ["D"] = "Traveler, please!$B$BI need this letter delivered, and quickly! It details everything that happened to the caravan. My commander is within the old Sorrowguard keep to the northwest, tucked within the mountains near Deadwind Pass. Take this to him, and with haste!", + ["O"] = "Deliver Biggs\' Report to Watch Paladin Janathos.", + ["T"] = "Biggs\' Report to Sorrowguard", + }, + [40072] = { + ["D"] = "The Areyntall family has been a noble house within Stormwind for quite some time, and Lordaeron before that. We made our fortunes from naval trade and procured rare materials from far away lands to sell within the Kingdom.$B$BI cannot take full credit. Of course, it was my father\'s doing, but I hoped to live up to the same legacy as he. I did well for a while nonetheless and ran my family\'s ship, the Crownguard, for a few months. It is a tragedy that it sank along with part of my family\'s goods.$B$BYou can find the wreck off the eastern coast, sunken deep into the ground. If you could go there and search the wreckage for my family\'s strongbox, I would make it worth your while.", + ["O"] = "Collect the Areyntall Strongbox for Sir Areyntall.", + ["T"] = "Areyntall Family Value", + }, + [40073] = { + ["D"] = "They promised that we would be well-supplied when we departed from Stormwind, only for us to be left out here with hardly anything to work with. What supplies we did receive, Watch Paladin Janathos paid for—mostly out of his own pocket from shipments on the eastern coast. Ever since those shipments stopped, we have gotten nothing.$B$BYou can\'t imagine how hard it is to maintain equipment with such a small supply of iron that I have. If things keep up like this, I will run out, which means Sorrowguard will fall.$B$BI suppose that is where you come in. If you can procure me 20 iron bars, it will go a long way in keeping us in working order.", + ["O"] = "Gather 20 Iron Bars for Janet Hollowworth in Sorrowguard Keep.", + ["T"] = "Iron for Sorrowguard", + }, + [40074] = { + ["D"] = "Watch Paladin Janathos requisitioned some swords a while ago, and while he paid me to make the swords, I have been having trouble finding a way to deliver them. The nearest blacksmith with the proper materials was Darkshire.$B$BClarise Gnarltree was paid to craft swords for Sorrowguard. You shall find her there. Could you head to Darkshire and gather the swords for me? They will surely help ease the load on my crafting and make the bars that you gave us to go even farther.", + ["O"] = "Collect the Delivery of Swords from Clarise Gnarltree.", + ["T"] = "A Delivery of Swords", + }, + [40075] = { + ["D"] = "It has been so long since I last heard from Sorrowguard. I honestly had assumed the orcs had taken or destroyed the keep—that, or something equally as bad. I am not a cynic, just a realist. It\'s a dangerous place, that swamp!$B$BStill, I held onto the swords, just in case something bad happened to us. It\'s better to have them than have some coin, I figure. Take them to Janet. She should be relieved I didn\'t happen to sell them off.", + ["O"] = "Take the Delivery of Swords to Janet Hollowworth in Sorrowguard Keep.", + ["T"] = "Swords to Sorrowguard", + }, + [40076] = { + ["D"] = "I manage the supplies here in Sorrowguard, and let me tell you, we are getting close to rationing. We keep and manage our supplies, and I make sure that we have a lock on most things, but the one thing we are coming short on is food. It would certainly mean a lot if you could help me improvise for the next coming while.$B$BThe jaguars in the area are probably the closest thing to an actual decent meal. Collect five Heavy Jaguar Flanks for me. They should do me well enough in keeping everyone sufficiently fed.", + ["O"] = "Collect 5 Heavy Jaguar Flanks from Swamp Jaguars in Swamp of Sorrows for Quartermaster Davin.", + ["T"] = "Food Improvision", + }, + [40077] = { + ["D"] = "Howdy, partner! Don\'t see many new faces here, especially in this old, beaten-up castle! Surely you\'ve heard the rumors of brave defenders holding off the orcs for days on end before being destroyed! What a tale. I could also tell you stories about the mushrooms in Swamp of Sorrows, especially Sorrowmoss Mushrooms!$B$BSorrowmoss Mushrooms only grow within this region. They have a certain... \"taste\" to them once you figure out how to cook them properly—because if you don\'t, well, it\'s deadly! I have a few friends from my old hometown who would love to try some. You\'ll be a pal and help me get them, right?$B$BAll I need is ten. That should do just nicely partner!", + ["O"] = "Collect 10 Sorrowmoss Mushrooms for \'Sly\' Duncan.", + ["T"] = "Sorrowmoss Mushrooms!", + }, + [40078] = { + ["D"] = "When we first set up, we relied on supplies from the eastern shoreline that traveled by wagon to get to us. It seemed like a safer journey than going through all of the chaos of Deadwind Pass. Now, with the insanity of Fallow Sanctuary and the sinking of the Crownguard off the coast, we are hard-pressed to get supplies.$B$BThe murlocs who sank the ship have been a menace to us since we landed, and we need to deal with them. You will find them on the eastern shoreline. Exterminate them, and perhaps we will be able to reopen trade.", + ["O"] = "Kill 6 Marsh Inkspewers, 6 Marsh Murlocs, and 6 Marsh Flesheaters for Watch Sergeant Arthur.", + ["T"] = "The Murloc Menace", + }, + [40079] = { + ["D"] = "Sorrowguard has stood since its construction before the First War. While the orcs destroyed it during that war, the walls still stand. This, of course, is thanks to Watch Paladin Janathos. Without his efforts in bringing the workforce here and conducting repairs this place would be nothing more than a smoldering ruin.$B$BIt is with this knowledge of the past that we must protect what we have done here. The orcs of Stonard are our main enemy. We do not seek to cause an all-out open war, but to be scouted by our foe would potentially cause our destruction.$B$BAlready Stonard Scouts have been probing eastward, and we must stop them. Venture out there and kill any you find. Do so in the same manner as the brave footmen who died defending these walls years ago.", + ["O"] = "Kill 8 Stonard Scouts for Watch Sergeant Arthur.", + ["T"] = "Avoiding Detection", + }, + [40080] = { + ["D"] = "Hey there, traveler. I am looking for someone to deliver a parcel which I have needed to ship for some time now. I have not fulfilled my obligations with all of the comings and goings here at the sepulcher.$B$BUp north, past Valgan\'s and The Dead Field, is a passageway that leads into the Tirisfal Uplands. It is pressed against the mountains and somewhat hidden, but the keen eye should spot it.$B$BOnce you make your way into the Uplands, I need this parcel delivered to Apothecary Volgrin. He should be located fairly close to the passage leading through the cliffs.", + ["O"] = "Deliver Volgrin\'s Parcel to Apothecary Volgrin near the entrance to the Tirisfal Uplands.", + ["T"] = "Into the Uplands", + }, + [40081] = { + ["D"] = "The Pesterhide Gnolls have cut off the road between here and Glenshire! They have been foraging at a more growing rate, no doubt due to the lack of food around here.$B$BIf we can\'t even control our roads, then what are we hoping to achieve here in the Uplands?$B$BI need you to handle this pest problem. Travel up the hill and go to the east. You should find the Pesterhide all over the Jagged Hills.$B$BKill them and bring their Ragged Armbands to me.", + ["O"] = "Gather 7 Ragged Armbands from Pesterhide Gnolls for Deathguard Mike in Steepcliff Port.", + ["T"] = "Pesterhide Pests", + }, + [40082] = { + ["D"] = "From atop of The Jagged Hills, Chief Rnarl rules over the conjoined tribes of the Pesterhide. He has been rather tenacious, even when we tried to deal with him in the past. If we truly wish to scatter the Pesterhide Gnolls and send them into chaos, then we will need to strike at the heart of their leadership.$B$BChief Rnarl has been the one to unite the gnolls, and without him, they will crumble. While you are there, be sure to kill Belgar as well. He is a shaman that has strengthened the critters and spurred their actions even more.$B$BWhen these two fall, the packs will scatter. Bring me both of their paws, and you will receive a reward in silver.", + ["O"] = "Bring the paw of Belgar and Chief Rnarl to Deathguard Mike in Steepcliff Port.", + ["T"] = "Pestering the Pesterhide", + }, + [40083] = { + ["D"] = "When Lordaeron was on the brink of collapse, I found myself with a band of wandering wizards and footpads who had a knack for arcane magic. They called themselves the Rogue Wizards, and I met my end with them. Those I considered friends left me for dead without even attempting to help me as I lay trapped beneath a fallen tree.$B$BI desire to punish these people, and you will help me do as much! I have sensed for some time now a growing power lingering on the Rogue Heights.$B$BThey are no doubt plotting something, as I feel this arcane power has grown. We need to deal with them before they grow too strong to murder. You can find them just to the northeast of Glenshire. There is a small pathway through the Rogue Heights.$B$BTravel there and slay them for me.", + ["O"] = "Travel to the Rogue Heights and slay 6 Rogue Enforcers and 6 Rogue Conjurers for Harry Upperson in Glenshire.", + ["T"] = "The Rogue Heights", + }, + [40084] = { + ["D"] = "I\'ve been puzzled for a long time as to why the magic they now wield has been so familiar—it lays just on the tip of my finger. As you were dealing with the rabble of enforcers and conjurers, I studied harder and came up with an answer.$B$BThe magic is that of the Kirin Tor, I am certain. I spent quite a bit of time in my living life around mages of Dalaran, and now that I think back, checking my books, I am certain.$B$BIf Dalaran is here, then that means they must be attempting to check us in our expansion within Tirisfal Uplands.$B$BReturn to the Rogue Heights and scour the hillside. Check for any source of the Kirin Tor\'s presence and put an end to it. We cannot have our enemies doing as they please freely within the countryside.", + ["O"] = "Travel to the Rogue Heights and put an end to the Kirin Tor\'s influence once and for all.", + ["T"] = "Magical Interference", + }, + [40085] = { + ["D"] = "No doubt the Rogue Wizards have stashed all manner of arcane trinkets and items up in the Rogue Heights. If we want to limit their abilities severely, we will need to take these items from them.$B$BAs a side effect, we may bolster our knowledge. Return to the Rogue Heights and steal arcane goods found amongst their camps. Return them to me, and I will make sure you are well compensated.", + ["O"] = "Steal Arcane Goods from the camps within the Rogue Heights for Harry Upperson in Glenshire.", + ["T"] = "Stealing Arcane Goods", + }, + [40086] = { + ["D"] = "You look like you know your way around the world just by walking with such a knowing foot. I need someone like you. I\'ve got a friend located in Glenshire. It\'s far to the west of Tirisfal and into the Uplands. He needs some metal delivered, and you look like just the person.$B$BYou can find the entrance to the west of Solliden\'s Farmstead. Go through the gate and follow the road straight until you reach Glenshire. It may not be the safest road, but you can handle that.$B$BThere might be a fork in the road, I think you take a left... if I remember correctly. Marlow Neggle should be located in town somewhere there. Take this shipment to him.", + ["O"] = "Deliver Marlow\'s Ore Shipment to Marlow Neggle located in Glenshire.", + ["T"] = "A Friend in Glenshire", + }, + [40087] = { + ["D"] = "I have no idea how they managed to slip past our forces in Silverpine. These Worgen have come in great numbers! Without the tower in our control, our ability to monitor activity here is reduced, which is why I could use the help of an adventurer like you. Help us reclaim it.$B$BYou haven\'t run, yet, so consider me impressed. Good. Head over and kill those flea-ridden wretches.", + ["O"] = "Slay 6 Tirisclaw Ravagers and 6 Tirisclaw Shadowcasters at Crumblepoint Tower before returning to Volgrin.", + ["T"] = "Crumblepoint Tower", + }, + [40088] = { + ["D"] = "With their forces at the tower weakened, it is time for us to kill their leader. Yes, when I say us, I mean you. Their leader recently invaded the mine, and he took his bigger worgen down there with him. The Gracestone mine is a top priority. Without its resources, Glenshire doesn\'t stand a chance against the humans, not to mention that the mines provide a perfect ambush point for worgen to attack any travelers between Silverpine and the Uplands.$B$BGo down there and bring me the head of their leader. Oh, and feel free to kill as many of his followers as you can.", + ["O"] = "Bring the head of the Pack Leader Sharn and slay 5 Tirisclaw Ambushers and 4 Tirisclaw Scavengers before returning to Volgrin.", + ["T"] = "Head of the Pack", + }, + [40089] = { + ["D"] = "The Foulweald have long since lost their minds, set into a state of delusion and ferocity. When the tribe began to lose itself, many set out toward the Crescent Grove to the south in hopes of escaping the madness. I placed my hopes in my people, but still, I lost them to insanity.$B$BThe furbolg who traveled to Crescent Grove may have sought refuge and a new place to call home, but they did not escape that which sent the Foulweald into madness. They, too, have become aggressive, irrational, and uncaring for the world around them. Many of those I called friends, those I called family, went to the Groveweald, and they are nothing how I remember them.$B$BThe Groveweald must be stopped. Gather what mercenaries or fellow adventurers you can, and brave to the Crescent Grove. Slay them and gather their Groveweald Badges as proof of the deed. You must do it for the good of the forest, and for the good of my people.", + ["O"] = "Venture into the Crescent Grove and collect 8 Groveweald Badges from the furbolgs inside for Grol the Exile.", + ["T"] = "The Rampant Groveweald", + }, + [40090] = { + ["D"] = "The elders of the Foulweald were smart enough to leave once things had taken a turn for the worse. They helped lead the fleeing tribes of Furbolg into the Crescent Grove to the south. It is there that they slipped into madness and further drove the tribes under their watchful gaze into a deep craze. They are seen as spiritual leaders, the word of truth, and a guide for the furbolgs there.$B$BTheir delusions and madness have only spurred the Groveweald to become an ever-greater threat to those around them and have led to even more misery to nature in Ashenvale. If the Groveweald is to be stopped, the Elders must cease their whisperings into the Grovetenders\' ears. I doubt he will let you stop them, and he will also need to be destroyed. Bring me the paw of Elder \'One Eye\' and Elder Blackmaw as proof of their demise, and you shall be rewarded for ending this cycle of destruction.", + ["O"] = "Bring the paws of Elder \'One Eye\' and Elder Blackmaw from within the Crescent Grove to Grol the Exile.", + ["T"] = "The Unwise Elders", + }, + [40091] = { + ["D"] = "The Crescent Grove was once a retreat for druids of our kind for many years. As of recently, something evil has lurked there. Keeper Ranathos was tasked with holding back the taint that plagued the area, but we have not gotten word from him lately. His last message back was also quite erratic and unlike Ranathos. We druids had suspicions of something much darker taking root within the Crescent Grove.$B$BRecently, we have gotten a report from one of our druids being corrupted and warped. Arch Druid Staghelm has asked the druids to assist with establishing control in Crescent Grove once again, but we are unable to. Perhaps you can assist.$B$BYou can find the entrance to the grove in the south of Ashenvale, at the waterfall to the Mystral Lake. The cave\'s entrance lies above, so venture forth and destroy what evil lurks in that place. Make sure to bring assistance. You will find many hardships inside.", + ["O"] = "Destroy the source of corruption inside Crescent Grove and return to Denatharion in Teldrassil.", + ["T"] = "The Crescent Grove", + }, + [40092] = { + ["D"] = "The Tidemaster was sent off course after a scrap with some pirates. The next thing I knew, pure chaos erupted as sailors were tossed into the ocean and ripped across jagged rocks! Murlocs attacked, and the night erupted into screams and battle. I ran and found shelter upon this small island all the while my crewmates suffered a fate more horrible than you could imagine!$B$BI\'ve been trapped here ever since. The murlocs have been trying to fight me, but they haven\'t had any luck yet, so they mostly stick to the shore. On the last attack, they ended up stealing a crate that had many of my belongings, but most importantly, my compass. If I am ever to get back to Kul Tiras, I will need it to find my way ashore. Find their small camp down the hill on this island. Find my compass among their hovels, and while you\'re there, kill some in revenge for the Tidemaster!", + ["O"] = "Slay 6 Wallowfin Murlocs and find Wally Burnside\'s Compass on Crown Island.", + ["T"] = "Lost and Stranded", + }, + [40093] = { + ["D"] = "Our sister ship, the Tidemaster, was wrecked off the coast, and we suffered horrible casualties after grounding into Shank\'s Reef. The rocks ripped the ship apart, and murlocs attacked the crew. None survived to tell the tale. The ship was wonderful, and now it sits as a disfigured wreck within the Reef as if to disgrace Boralus.$B$BThere is nothing that we can do with the husk of the Tidemaster or its perished crew, but we still need to recover the logbook. I do not have the crew to risk, especially with the murlocs and rather hostile fish that tread the waters there. You will be the one to venture inside the wreckage and take the logbook from its chest. The information there cannot fall into our enemies\' hands, or the pirates\'.$B$BYou shall find what you\'re looking for to the northwest along the coast.", + ["O"] = "Venture within the Tidemaster in Shank\'s Reef and recover the Tidemaster\'s Logbook for Deckmaster Breachcrest in Caelan\'s Rest.", + ["T"] = "The Tidemaster", + }, + [40094] = { + ["D"] = "A group of pirates led by \'Water Rat\' Jorgy ambushed us and left us stranded ashore. Our sister ship fared much worse than we have, but still, we have endured many hardships upon this island. The battle off the shore destroyed all three ships. Jorgy\'s ship was running ashore after taking on water at the western side of the island.$B$BHe and his men have become trapped much like we are, and I know he still is out there. I want you to claim his head for the death of Admiral Caelan. Bring it to me, and I\'ll give you the golden earring he is known for. Check the western side of the island along the Bright Coast. He and his crew remain there.", + ["O"] = "Find \'Water Rat\' Jorgy on Lapidis Isle and return his head to Sergeant Blackwell in Caelan\'s Rest", + ["T"] = "The Water Rat", + }, + [40095] = { + ["D"] = "Sorrowguard Keep once held the Orcish Horde at bay for two weeks. Day after day, orcs attacked these walls and were repelled by brave defenders of the Kingdom of Azeroth. They battled from one end of the swamp all the way back to these very walls.$B$BMy mentor was one such hero who took the call and met the horde within these lands. As much of a hero he was, he gave his life so others had the chance to survive. When I was being trained, he carried a tome of great holy power from the Abbey of Northshire.$B$BI still believe the tome to be present here in the swamp, though in what condition, or where, I cannot be certain. I do know it lies north of Stonard. That should certainly narrow down the area if you wish to search in the name of the Light.", + ["O"] = "Find the Forgotten Tome within the Swamp of Sorrows.", + ["T"] = "Tales of the Past", + }, + [40096] = { + ["D"] = "Ah, you look like someone who can get things done, $C. Listen closely, as I do not like to repeat myself. The humans outnumber us five to one. However, they are not aware of this yet, and I would like to keep it that way. My servants informed me that the Lordaeron scouts are heading towards Glenshire from the north. And you, my friend, are going to make sure that they never return to their masters.", + ["O"] = "Slay 8 Remnants Scouts in the Whispering Forest and return to Duke Nargelas.", + ["T"] = "Outnumbered", + }, + [40097] = { + ["D"] = "With their scouts gone, we can finally go on the offensive. But before we can orchestrate an attack on their main camp, we need to reduce their ability to monitor our movement.$B$BJust north of the Whispering Woods, there is a tower called Shatteridge. The Remnant\'s Sentries have made that tower their center of operation, and they are there to warn their main base of any potential danger. Their numbers at the Shatteridge are great, which is precisely the reason why they won\'t expect a single, yet powerful foe to attack them directly. So are you up to the task?", + ["O"] = "Slay 10 Remnant Sentries at the Shatteridge Tower and return to Duke Nargelas.", + ["T"] = "In the Dark", + }, + [40098] = { + ["D"] = "I\'m glad I was right about you. With the imminent danger out of the way, it is time for you to learn about the House Darlthos. Before the Scourge ravaged these lands, our house was one of the most prominent houses in all of Lordaeron. Yet now, we are divided, for my sister-in-law acts as a ruler to those still living.$B$BAnd therein lies our problem, for my wife is the only true heir to this land. You are certainly capable, which is why you have earned the right to an audience with Duchess Grelda. Follow the road south of Glenshire past the gates of the Tirisfal Uplands, and you will find my wife in manor alongside the road.$B$BOh, and make sure to give this letter to her. It\'s a... let\'s say, a recommendation of sorts.", + ["O"] = "Talk to Duchess Grelda in her manor and give her the letter from Duke Nargelas.", + ["T"] = "Rightful Heir", + }, + [40099] = { + ["D"] = "Are you aware of how the plague designed by the Cult of the Damned works? No? Well, it doesn\'t matter. What you need to know is that I have made something similar, though not as powerful as the original one. This vial contains a plague that will severely reduce the life expectancy of the living who consume it.$B$BNow, that is the part where you, my dear, come in. I need you to head north, past the Whispering Forest, to a farmstead called Garricks Stead. There, you will slip a bit of this liquid onto the human\'s supplies. And make sure that there are no witnesses.", + ["O"] = "Poison 5 Grain Crates, and slay 10 Remnants Farmers and 7 Remnants Militia on Garricks Stead before returning to Duchess Grelda.", + ["T"] = "Attack from the Inside", + }, + [40100] = { + ["D"] = "There you are, $N! I know it took quite a while, but we finally have new information on the missing plates of Uldum.$B$BWell, when I say that we “have” something, I mean we found someone who might be able to get it for us. She is a smuggler named Vess, at least I think that\'s what she calls herself these days. Anyways, I have arranged for you to meet her at the Booty Bay inn.$B$BOnce you get there, make sure to get on her good side, as I doubt we will get another chance like this.", + ["O"] = "High Explorer Magellas wants you to locate his contact Vess in the Booty Bay Inn.", + ["T"] = "Unusual Partnership", + }, + [40101] = { + ["D"] = "Here is the deal, sweetcheeks. Once upon a time, not so long ago, a not-so-smart pirate by the name of Bannor thought he could double-cross me and get away with it.$B$BWell, you see, no one double-crosses me. So in exchange for me finding the location of your precious plates, I need you to end his miserable life and kindly retrieve my locket from his possession.$B$BHe has a camp on an island east of here, so that\'s most likely where you will find him. And don\'t worry, I will have what you seek by the time you return. So, do we have a deal?", + ["O"] = "Search island east of Booty Bay and retrieve Vess\'s locket from the pirate Bannor.", + ["T"] = "Original Owner", + }, + [40102] = { + ["D"] = "Listen, I like you, sweetcheeks, which is why I will give you this information as a bonus. It appears that I was not the only one looking into your damned plates.$B$BA cult of some kind was also after them. And believe me when I tell you that they are the kind of people you do not wish to have as enemies.$B$B$B$BHere is the information your High Explorer seeks. While I enjoy spending time with you, I have other business to attend to, so off with you now.", + ["O"] = "Bring the information from Vess to High Explorer Magellas in the Hall of Explorers.", + ["T"] = "What Lurks in the Dark", + }, + [40103] = { + ["D"] = "So, not only the Horde, but now we have to worry about some damned cult as well? Uh, I must say, I don\'t like this, but this is only one more reason why we must acquire plates before anyone else. Who knows what secrets Uldum hides.$B$B$B$BIf what Vess found out is true, then the first piece of the set should be right at this location. While you are busy with this task, I will prepare a well-armed expedition to search for the second piece at the Swamp of Sorrows.", + ["O"] = "Disable 6 Altar Guardians at the Titan\'s Ruined Altar in the northern region of Un\'goro Crater and bring the Plate of Uldum to High Explorer Magellas at Ironforge.", + ["T"] = "The Race", + }, + [40104] = { + ["D"] = "Something is not right, $N. There is still no word of the expedition that I sent out.$B$BWhile I try to keep my optimism high, I can feel that something\'s wrong. I hate to ask this of you as you have done so much already, but you are the only one I can rely on getting this done.$B$BPlease, go to the Swamp of Sorrows and find out what happened to my people. The location Vess marked for us points towards the southeastern part of the swamps along the mountains.", + ["O"] = "High Explorer Magellas wants you to search for his missing expedition in the eastern part of the Swamp of Sorrows.", + ["T"] = "The Missing Expedition", + }, + [40105] = { + ["D"] = "I\'ve never begged in my life, $R, but I\'ll start now. Please! Avenge us and show those bastards what happens when you make an enemy of the Alliance! They——went north of here.$B$BFor Khaz Mo...", + ["O"] = "Slay 4 Twilight Cultists and retrieve the Second Plate of Uldum north of the \"Temple of Old\". Return to High Explorer Magellas with the plate and news of his expedition.", + ["T"] = "Pride of the Dwarves", + }, + [40106] = { + ["D"] = "So, we finally have the full set. There is only one thing left for us to do. It is time to unlock Uldum and find out what secrets it holds.$B$BAfter all you have done, $N, I think you should have the honor of being the first one to enter. From what we have seen at Uldaman, I doubt that this endeavor will prove to be simple, which is why I think you should find adventures who are willing to accompany you on this journey.$B$BI would be happy to join you myself. However, there is still the matter of telling the grim news to the families of the expedition.", + ["O"] = "Head to the Valley of the Watcher in Tanaris and activate the Pedestal in front of the gate by using the Plates of Uldum.", + ["T"] = "Gates of Uldum", + }, + [40107] = { + ["D"] = "\"$B$BInitiating unlock sequence.$B$BPlates present, scanning for item validation.$B$BPlates authentication complete, unlocking the gates.$B$BActivating Gate Keeper to greet the guests.", + ["O"] = "Defeat Ostarius. Return to the Hall of Explorers and inform High Explorer Magellas about the events that occurred at the gate.", + ["T"] = "Gate Keeper", + }, + [40108] = { + ["D"] = "The time has come, $N. A new path has been shown to me by the Earth Mother. What once was lost must be found again. The shards of this vision still echo in my mind, $C. Travel to the north in the Barrens and seek out a powerful Farseer Logrash amongst the mountains west of Durotar. Only with his help will we be able to locate the missing plates of Uldum. Go now, and may the Earth Mother guide your path.", + ["O"] = "Sage Truth Seeker wants you to search for the Farseer Logrash in the northern part of the Barrens.", + ["T"] = "The Lone Wolf", + }, + [40109] = { + ["D"] = "Four years ago, my own people betrayed me for refusing to do the very same thing that doomed us in the first place—drinking the blood of the demon Mannoroth. If not for my companion Korvir and Truthseeker, my body would have rotted away in the forests of Ashenvale.$B$B$B$BThe spirits whisper of demon scum called Naxiar hiding around the eastern lakes of Ashenvale. If you wish to have my aid, I need you to kill him and retrieve my wolf totem.", + ["O"] = "Kill Naxiar in the Eastern Ashenvale and bring back the wolf totem to Logrash in the Barrens.", + ["T"] = "Scars of the Past", + }, + [40110] = { + ["D"] = "This totem will help me enter a deeper state of trance and allow me to commune with the spirits of old. With their help, we might be able to locate your missing plates.$B$B$B$BBah, I forgot how taxing this ritual is. The plates you seek are immensely powerful, $N. Show this message to the Truthseeker, and he will understand where to send you next. But be warned, it appears that we are not the only ones looking for the plates. Someone—or something—dark is on the trail as well.", + ["O"] = "Logrash wants you to travel to Thunder Bluff and bring the Inscribed Boar Pelt to Sage Truth Seeker.", + ["T"] = "Unseen Enemy", + }, + [40111] = { + ["D"] = "The path ahead is clear now, friend. With both locations revealed, it is time to act. I will gather a war party of Horde\'s finest warriors to secure one of the plates at the Swamp of Sorrows while you make your way to the northern mountains of Un\'goro Crater and recover the other plate.$B$B$B$BBut the grave news Logrash spoke of still troubles my mind. Be careful, friend, and may the Earthmother watch over you.", + ["O"] = "Disable 6 Altar Guardians at Titans Ruined Altar in North Un\'goro Crater and bring the Plate of Uldum to Sage Truthseeker at Thunder Bluff.", + ["T"] = "In a Rush", + }, + [40112] = { + ["D"] = "While I\'m glad to see you return, I feel a disturbance in the air. The war party that I have sent to the Swamp of Sorrows has not returned, nor did they send any message. Logrash\'s warning still circles my mind.$B$B$N, you have done so much already for us, but I would ask you to check on the war party. The location Logrash marked for us points us towards the southeastern part of the swamps along the mountains.$B$BMaybe this is just an old man worrying, but I cannot shake this feeling of unease.", + ["O"] = "Sage Truthseeker wants you to search for his missing war party in the eastern part of the Swamp of Sorrows.", + ["T"] = "Disturbing Silence", + }, + [40113] = { + ["D"] = "Hahaha, this be not the death I thought I would end up with, but Bwonsamdi appears to have other plans for me.$B$B$B$BI lived a life with no regrets, $N—until now. I ask this of you, friend. Go north of here after those bastards and show them that if it be war they seek, then the Horde will stand against them.$B$BLok’tar... Ogar.", + ["O"] = "Slay 4 Twilight Cultists and retrieve the Second Plate of Uldum north of the \"Temple of Old\". Return to Sage Truthseeker with the Second Plate and news of his expedition.", + ["T"] = "Might of the Horde", + }, + [40114] = { + ["D"] = "The time has come. It is as the Earthmother told me. We have no idea what we might find in Uldum, and if dangerous factions seek to enter. Then all the more reason for us to take extreme precautions.$B$BI urge you to avoid the mistake I have made with the war party. Before you go, find trustworthy allies who would accompany you to the gates. There is no telling what awaits you and I there. I will be working on putting our friends to rest. It is the least I can do to atone for my mistake. Go now, and may the winds be ever at your back.", + ["O"] = "Head to the Valley of the Watcher in Tanaris and activate the Pedestal in front of the gate by using the Plates of Uldum.", + ["T"] = "Uldum Awaits", + }, + [40115] = { + ["D"] = "$B$BInitiating unlock sequence.$B$BPlates present, scanning for item validation.$B$BPlates authentication complete, unlocking the gates.$B$BActivating Gate Keeper to greet the guests.", + ["O"] = "Defeat Ostarius. Return to the Thunder Bluff and inform Sage Truthseeker about the events that occurred at the gate.", + ["T"] = "Guardian of the Gate", + }, + [40120] = { + ["D"] = "The encroaching wildlife has become a problem for both myself and my wife. In the past, we lived at peace with the animals of the forest, though it now seems we must always be wary of our moves and watch the forests for the eyes of stalking predators.$B$BThe Ghostpaw have been especially troublesome and have for days now stalked our house for signs of weakness. I have given them none, but I fear that something may be driving the wildlife to act in a much more aggressive manner.$B$BRegardless, gather me five of their pelts. Thin the numbers so that they are not so brazen in their attacks. You can find Ghostpaw Wolves all around the forest.", + ["O"] = "Gather 5 Ghostpaw Pelts from the local Ghostpaw Wolf population and bring them to Ardaen Evermoon in Ashenvale.", + ["T"] = "Aggressive Wildlife", + }, + [40121] = { + ["D"] = "The alpha of the Ghostpaw Wolves in the area is named Ghoststalker. He is a ferocious beast that leads packs of wolves in the region with dangerous intent. If a balance of nature is to be brought, then the beast must be slain.$B$BYou should find him in the hills northwest of Lake Falathim and southeast of the Zoram Strand. I wish you luck in your hunt. Ghoststalker is a clever beast that has eluded me to this day.", + ["O"] = "Kill Ghoststalker and bring his paw to Ardaen Evermoon.", + ["T"] = "Alpha Aggression", + }, + [40122] = { + ["D"] = "I received word from a colleague within Azshara quite some time ago about powerful energy that is dampening magic within the region. If such a threat could pose itself close to Dalaran, then much of our spells, magic, and protections would be nullified.$B$BI would like you to travel there. Assess if this will threaten Dalaran itself and see if action is needed. You can find Magus Bromley located just south of the Ruins of Eldarath camped upon the ridgeline. Seek him out and get answers.", + ["O"] = "Head to Magus Bromley in Azshara.", + ["T"] = "The Azshara Dampening", + }, + [40123] = { + ["D"] = "My studies have been ongoing for the last few months, and from what I can tell, the energy within the region has been slowly fading away. Even my own magic hasn\'t been as potent! If whatever is causing this can harness even more power, this could be quite damaging for magic across the entire continent, and potentially even Dalaran in the future!$B$BI have a few leads that I want to look into. The first is the ley-shards that occupy the once-great city of Eldarath. Just north of us is the ruins of the once-mighty city. Travel there and look for shards of its ley-energy. Gather five, and bring them to me for study, to see if their power has waned.", + ["O"] = "Gather 5 Eldarath Ley-shards and bring them to Magus Bromley.", + ["T"] = "The Dampening Mystery", + }, + [40124] = { + ["D"] = "Even the ley-shards of the city of Eldarath have their energies compromised. This could be the work of the Naga that have encroached and invaded from the ocean depths. I would not put it past the beasts, as savage as they are, for attempting to claim dominion over the landscape.$B$BWe must look into this matter further before claiming we have gotten this solved. I have prepared a scroll of dispelling. Use it upon the Spitelash Shrine they have in their clutches. If they are behind this dampening, this should solve the problem. While you\'re there, slay their sirens as well, they are the ones who wield a crude and foul magic.", + ["O"] = "Slay 15 Spitelash Sirens and dispel the magic at the Spitelash Shrine.", + ["T"] = "Interfering Naga", + }, + [40125] = { + ["D"] = "It would appear that I have run out of ideas about what may be causing this. I hate to admit intellectual defeat, but I must turn to another for an answer. Archmage Ansirem Runeweaver is well-versed in more than I know. I need you to travel to him with a crate of the ley-shards you gathered earlier.$B$BIf there is any clue or magic that lingers upon them, perhaps he will have some answers for them and know their origination to help me here in Azshara. Please, take these coins for the journey. Dalaran is but far away, and I will assist in whatever way I can.", + ["O"] = "Travel to Dalaran and deliver the Crate of Ley-shards to Archmage Ansirem Runeweaver.", + ["T"] = "Out of Options", + }, + [40126] = { + ["D"] = "$B$BHmm, I can hardly believe this, why would they... $B$B$N, what we are dealing with is much more serious than I had originally thought. The magic remnants upon the ley-shards are of draconic origin. What the Dragonflights would want, or need, from dampening magic in Azshara is a great mystery, but at the least we now have a source.$B$BI have prepared this letter for Bromley. Take it to him, and let him know that the Blue Dragonflight is responsible.", + ["O"] = "Take Archmage Ansirem\'s Letter to Magus Bromley in Azshara.", + ["T"] = "Discovering the Source", + }, + [40127] = { + ["D"] = "It seems as though there is only one thing left. I cannot believe the Blue Dragonflight would be responsible for such a thing, if their enemy is magic then that means their enemy is Dalaran. We cannot allow their plans to take fruition and must deal with them now and with due haste in our actions.$B$BJust south of here is Lake Mennar it is where the Blue Dragonflight has gathered, the cause of which was unknown until now. Head there, slay their Magelords, and kill the leader, Lieutenant Azsalus.$B$BI would advise, the Blue Dragonflight is not a foe to be under-estimated, find a band of mercenaries, or like minded heroes. You will need them to battle with the dragonkin, or to stand a chance.", + ["O"] = "Slay 3 Draconic Magelords and kill Lieutenant Azsalus. Return to Magus Bromley in Aszhara.", + ["T"] = "The Dampening Must End", + }, + [40128] = { + ["D"] = "Greetings. Torble Sparksprocket here. Junior Archaeologist of the Explorer\'s League! A few weeks ago, the dig found this strange contraption. It appears to be the torso of an automaton, and it is clearly of Titan make, but we haven\'t seen anything like it before. That\'s why I was called here.$B$BI quickly realized that it is a modular automaton of some kind. Some days later, the other parts were found, but someone tripped some defense mechanism, and now the dig is full of golems. Can you head in there and find the other pieces? You need two arms, two legs, and a head. Look through crates and such.", + ["O"] = "Gather 2 Automaton Legs, 2 Automaton Arms, and an Automaton Head from the Bael\'modan Digsite.", + ["T"] = "An Ancient Acquisition", + }, + [40129] = { + ["D"] = "Hello again, impeccable timing! I have done what I can with the parts you acquired from the dig, but we\'re missing a crucial piece. This automaton\'s power source is some advanced crystalline power core.$B$BUnfortunately, the one in the chest has cracked, and it\'s energy has been depleted. None have been found here, and the dig has slowed down due to the golems. Do not despair though, similar power sources have been found in the Uldaman dig bordering between Loch Modan and the Badlands.$B$BThat dig has also run into issues with the Dark Irons and with awakened defenders. You helped out here, so why not head over there, help them out, and grab me a power core while you\'re at it?", + ["O"] = "Bring an Intact Power Core from Uldaman\'s Ancient Treasures to Torble Sparksprocket in the southern Barrens.", + ["T"] = "Stealing a Core", + }, + [40130] = { + ["D"] = "Yo! You look like a capable sort! The dwarves recently struck rich! They found some juicy technology when they found a way inside the facility across the road. See, I managed to snatch this little thing while they were distracted with the facility defenses activating, but what I got is an incomplete piece of a greater whole!$B$BGet in there and grab me the rest. With your help, we\'ll be partners! I\'ll give you a generous...$B$B40% share? We\'re talkin\' priceless technology, so don\'t worry, it\'s enough! Go in there find me two matching legs, arms, and a head. There\'s some defenses but it\'s nothin\' you can\'t handle!", + ["O"] = "Gather 2 Automaton Legs, 2 Automaton arms, and an Automaton Head from the Bael Modan Digsite.", + ["T"] = "A Profitable Acquisition", + }, + [40131] = { + ["D"] = "Yo! Good to see you, man! I made progress but see, somethin\'s missing, and I doubt it can be found here—not in an intact state anyway. A normal power source won\'t do, not for this baby.$B$BIt requires some major juice, so either hook it up to a massive generator the size of a house, which I cannot currently acquire... Or we collect a compatible power core! There\'s a ruin in the other part of the continent—Uldaman, I believe it\'s called, yeah!$B$BIt\'s made by those Titanics or whatever they\'re called. Go to this ruin and get me a core. The deeper part of the complex is exposed there, so you can do it!", + ["O"] = "Bring an Intact Power Core from Uldaman\'s Ancient Treasures to Kex Blowmaster in the southern Barrens.", + ["T"] = "Requisitioning a Core", + }, + [40132] = { + ["D"] = "Thank you again. I believe the core is installed. So now all that\'s left to do is the final assembly, and then we\'ll have this automaton working! Speak to me again and say the word. Then, we\'ll turn it on.", + ["O"] = "Speak to Torble Sparksprocket and activate Analyzer X-51", + ["T"] = "The Activation", + }, + [40133] = { + ["D"] = "Yo, partner! It\'s all done, I\'m about ready to get this thing turned on, so once you\'re ready to talk to me, and then we will turn it on!", + ["O"] = "Speak to Kex Blowmaster and activate Analyzer X-48", + ["T"] = "The Profitable Activation", + }, + [40136] = { + ["D"] = "You there! Yes, you. New in town, ay? Look, I\'m not sure if you are aware, but we are currently at war with the humans, and as you can imagine, it has taken quite a toll on our dwindling supplies.$B$BThat is why I\'m looking for someone to collect boar meat from the local Cragtusk Boars. So, feeling up for it?", + ["O"] = "Bring 8 Chunks of Meat to Butcher Reeves.", + ["T"] = "Dwindling Supplies", + }, + [40137] = { + ["D"] = "Just the person that I need. Listen. A few months ago, a pack of wolves inhabited the cave just north of here. At first, we thought it was just a small number of them, so we didn\'t pay those beasts much attention, being busy with war and all. But they have become aggressive of late, and they even got bold enough to attack residents of Glenshire.$B$BSo, how about this, you go and cull their numbers. In the meantime, I will try to gather some coins from the residents for you, deal?", + ["O"] = "Kill 10 Graypaw Wolves for Butcher Reeves.", + ["T"] = "Strike Them Down", + }, + [40138] = { + ["D"] = "You look like someone who can get things done. I have a proposition for you. You see, I have been hunting a man by the name of Storn for a while now. However, he was always surrounded by his minions and was untouchable. But it appears that he had a falling out with his men, and he has since been in hiding.$B$BGood thing is that I know he is hiding in a cave close to Rogue Heights in the eastern hills of Tirisfal Uplands. The bad thing is that I need to wait for my client to get here, and she has a habit of leaving early if I do not meet her at her specific time. This is why I need someone to go and hunt Storn for me. So what do you say? You get me Storn\'s head, and I will split the reward for the bounty with you.", + ["O"] = "I need to find and kill Storn in the cave near Rogue Heights.", + ["T"] = "Bandit Lord", + }, + [40139] = { + ["D"] = "Welcome to the Glenshire. I hope that you have come to assist us. The enemies on every side beset us, and we could surely use any help we could get. West of here is a farm where a large battle occurred recently between our troops and humans of Lordaeron. We planned to use the dead there to boost our troops, but the Cult of the Damned appeared before us with the same idea.$B$BIf left unchecked, the Scourge will soon have a large force to attack from the west, and we cannot let that happen. If you are feeling up to it, I got a reward ready for anyone willing to put a stop to the Scourge advances.", + ["O"] = "Father Brightcopf wants to put a stop to Scourge\'s advances on the Corinth Farm.", + ["T"] = "Reappearance of the Damned", + }, + [40140] = { + ["D"] = "With the bulk of the undead gone, it is time to face the one responsible for taking our new troops from us. Go to the Corinth Farm once again and kill the necromancer responsible for this.$B$BAnd be careful. Suppose the necromancer is capable of summoning a small army of undead. In that case, he is certainly not someone who should be underestimated.", + ["O"] = "Kill the necromancer at Corinth Farm.", + ["T"] = "Cleaning The Farm", + }, + [40141] = { + ["D"] = "I come from a large family, one that once occupied the boroughs of Kul Tiras. We weren\'t exactly a rich family, but we were not poor either! I traveled out with two of my brothers when the third war started up in Lordaeron, hoping to earn some fortune and glory. I helped the navy, my brother Karl started work in Menethil Harbor, and Samual went to Southshore to assist the war effort.$B$BEver since I set sail years ago, I have had no communication with them and would like to reach out, if you could deliver a letter to the both of them. They must have thought I perished after so long without a word or peep, and I want to ease their minds.", + ["O"] = "Deliver the letters from Arnold Boran to his two brothers.", + ["T"] = "The Boran Family", + }, + [40142] = { + ["D"] = "From our time at sea, it is us sailors who come up with the fine dining aboard ship. The same meals can get repetitive when you have them over and over again, so it is time to improvise and innovate.$B$BI came up with this recipe some time ago when we spent a few days on Tel\'Abim. All we had were sand crawlers and bananas. Fry it up together and add a pinch of salt, then you have quite a meal! Sadly, we don\'t got bananas, but I do know that Chef Jenkel has some salt. Get the salt from him, and gather some legs from any sort of sand crawler around these islands, then I can finally have a change of meal.", + ["O"] = "Collect 6 Juicy Crawler Legs and a Pinch of Salt for \'Slim\' in Caelan\'s Rest.", + ["T"] = "Sailors Innovation", + }, + [40143] = { + ["D"] = "The Southsea Pirates are a direct threat to our survival on this island. Their operations here are much larger than we had first anticipated when we set out. They still have many powerful vessels, and whilst they haven\'t attempted to sail them in front of our town, the possibility is still real.$B$BKul Tiras has always been at war with piracy. Those that threaten the merchants are a direct threat to our kingdom. I need you to claim the sashes of the Southsea Freebooters, a pirate gang that operates in a vast area. You can find them across both large islands and along the sandbar named after them to the southwest of here, off the coast of Lapidis.$B$BAs proof of your deeds, bring me twenty of the sashes that they wear. Your efforts will not only help us, but all who travel the vast sea.", + ["O"] = "Gather 20 Southsea Sashes from Southsea Pirates for Colonel Hardinus in Caelan\'s Rest.", + ["T"] = "Smashing the Southsea!", + }, + [40144] = { + ["D"] = "With each sash collected, the Southsea are weakened, but not destroyed. Their strength comes from the captains of each ship and crew. A man with great charisma and promises of wealth, fortune, and adventure can easily rile up a group with no future ahead of them.$B$BIt is these individuals that we will need to target—the captains of the Southsea Freebooters. You shall find them to the southwest along a dangerous strip of sand called The Southsea Sandbar. Be cautious, it is the basecamp of the pirates on both Gilijim, and Lapidis.$B$BYou shall find the captains upon the boats there. Enter each and kill the leaders.", + ["O"] = "Slay the Southsea Captains located on the Southsea Sandbar for Colonel Hardinus in Caelan\'s Rest.", + ["T"] = "Southsea Interference", + }, + [40145] = { + ["D"] = "I have heard rumblings from some of the druids in the region of an elvish grove hidden away that has been corrupted. Suppose such darkness can lurk and remain undisturbed. In that case, it could mean horrible things for the forest and nature itself.$B$BI have a scout who has recently checked up on such a disturbance. I would like his report before dedicating resources to eliminating corruption within Ashenvale. You can find him just down the road to the southwest, at a small camp. He goes by the name Feran Strongwind, and he will tell you what he knows.", + ["O"] = "Speak with Feran Strongwind outside of Splintertree Post.", + ["T"] = "Mysteries of the Grove", + }, + [40146] = { + ["D"] = "Loruk may not like the news I am about to deliver to him. It is news of madness and chaos. Upon studying the hidden grove, I found crater marks from infernals and furbolgs enraged by corruption.$B$BIt seems the elven druids could not stop whatever lurks deep inside, and I did not risk my life to learn more. Whatever is inside of there certainly is powerful enough to corrupt the very forest. Take this report to Loruk. It has all of the details of my findings.", + ["O"] = "Bring Feran\'s Report to Loruk Foreststrider.", + ["T"] = "Feran\'s Report", + }, + [40147] = { + ["D"] = "This report is chilling. Something is going on within the Crescent Grove, and it must be stopped. If we do not end the corruption, it could spread as far as Mulgore and beyond. We must do our part for the greater good of nature itself as druids.$B$BI must ask you to delve into the very depths of the Crescent Grove. You can find it to the southwest, near Mystral Lake. The cave entrance is just above the waterfall. There should be a pathway up. I recommend you find a band of those heroic enough to travel with you. There is no telling what lies ahead.", + ["O"] = "Venture into the Crescent Grove and root out the evil inside.", + ["T"] = "Rooting Out Evil", + }, + [40148] = { + ["D"] = "Oh, to be back on the sea... back on the sea and on the way home. It\'s been hell just to be left to roam this small part of the island. The only thing we sailors have is grog and each other\'s company.$B$BRum is fine, but we\'ve been craving more variety. This is where you\'re going to come in. The Southsea Pirates have been rather known for their own Southsea Reserve recipe which only they can make. That is, until you go and steal the recipe.$B$BThey are currently holed up on a strand of sand called the Southsea Sandbar and the small neighboring patch of sand known as Distillery Island. It\'s practically a damn factory of the stuff. They have an entire trained crew working around the clock pumping this stuff reserve out.$B$BIt\'s down in the southwest off the coast of Lapidis Isle. You should see several of their ships docked there. The one who invented the recipe is named \'Moonshine\' Marty. You\'ll get it from him.", + ["O"] = "Claim the Southsea Reserve Recipe from \'Moonshine\' Marty for Sailor Larson in Caelan\'s Rest.", + ["T"] = "Southsea Reserve", + }, + [40149] = { + ["D"] = "", + ["O"] = "Find someone who can find a use for the Logbook of the Rotten Renown.", + ["T"] = "The Rotten Renown", + }, + [40150] = { + ["D"] = "The Naga of the Deeptide have been a problem ever since we first arrived. They attacked our vessels when we first landed upon the island of Gillijim with the High Elves we came with. While we were victorious, it still was reason enough for us to travel to Lapidis instead.$B$BUnfortunately, you know what happened after we got here, but still, the naga remain a threat that must be dealt with. They have a sanctum off the southwestern coast of Gillijim\'s Island located just south of Lapidis.$B$BHead to their sanctum, and kill what naga you find. Take from them their bracelets and bring them to me.", + ["O"] = "Collect 10 Deeptide Bracelets from Deeptide Naga for Eliza Caldwell in Caelan\'s Rest.", + ["T"] = "Drowning Deeptide", + }, + [40151] = { + ["D"] = "Margon the Mighty and his son Hargul the Hardy are two sea giants that roam the island of Lapidis and the surrounding waters. Hargul especially has been something of a nuisance and attacked Caelan\'s Rest many weeks ago. While no one was harmed, he did away with a few items of importance before the marines had assembled and prepared to engage him.$B$BOne such item was the Aqua Stone, a magically potent stone that has been imbued with the energy of powerful Hydromancers. With this stone, we could better channel our abilities with increased potency. I would like you to reclaim this valuable treasure, and to that end, slay Hargul the Hardy. More than for the benefit of the Hydromancers, so that it does not ever fall into the wrong hands.", + ["O"] = "Recover the Aqua Stone from Hargul the Hardy.", + ["T"] = "The Aqua Stone", + }, + [40152] = { + ["D"] = "Our fleet was accompanied by a squadron of high elf vessels. They traveled to the islands with us for a somewhat secretive mission. I had many friends within their crew whom I met from Kul Tiras. The high elves are a good people, but their leader, Faelon, was a rather shady character--one who traded illegal goods and dealt with unsavory individuals.$B$BIt is sad to say that many of those people I once called good friends were slain by the Deeptide Naga. They\'re now haunting the shores of Faelon\'s Folly on the island of Gillijim, left restless by an item Faelon coveted and hoped to trade.$B$BGo there and free the souls of the dead. You will find them on the western coast of Gillijim\'s Island south of Lapidis.", + ["O"] = "Travel to Faelon\'s Folly on Gillijim\'s Island and slay 7 Forgotten Swordsman, 7 Drowned Souls, and 7 Forgotten Crew.", + ["T"] = "Faelon\'s Folly", + }, + [40153] = { + ["D"] = "", + ["O"] = "Find the owner of the book.", + ["T"] = "An Extravagant Book", + }, + [40155] = { + ["D"] = "The Gor\'dosh Ogres are a fearsome foe. They battled us almost constantly when we made landfall, but we drove them back. It is only a matter of time before they are ready to strike again.$B$BNow that they are allied with Lapidis, they have become even bolder upon the island and must be stopped at any and all costs. They have established quite a formidable force to the northwest in an area known as Gor\'dosh Heights. Travel there and kill them to end the bloodshed.", + ["O"] = "Slay 12 Gor\'dosh Brutes, 8 Gor\'dosh Ogres, and 5 Gor\'dosh Shamans for Sergeant Blackwell in Caelan\'s Rest.", + ["T"] = "The Gor\'dosh Ogres", + }, + [40156] = { + ["D"] = "Spurred by their leader, the Gor\'dosh may never leave us alone. The Tyrant King has gotten his name for being a rather intimidating brute who led the first attacks of ogres here. He is stubborn and doesn\'t even listen to the advice of his shamans or his wisest seers.$B$BIf we are to stop the Gor\'dosh truly, this Tyrant King must be eradicated and killed. You will find him within Gor\'dosh Heights, more than likely within their largest camp. Venture forth, and make sure he can no longer cause us issues. Bring me the crooked crown he wears upon his head.", + ["O"] = "Slay the Tyrant King and bring his crown to Sergeant Blackwell in Caelan\'s Rest.", + ["T"] = "The Tyrant King", + }, + [40157] = { + ["D"] = "We come from the great city of Zul\'Hazu to the southwest. It is where our ancestors called home. Though now, we are nothing more than outcasts. Our people have turned away from the roots of our past. They are swayed by great shadowy magic that taints their minds and twists them to madness. We primalists have lost our way in the past. With whispering shadows and great magic to wield, Chieftain Woh\'zo chose the darkness over our heritage.$B$BOur people may have turned their backs on us, but perhaps there may be a chance to save them. All across the city are Hazzuri Dark Vessels. They hide away in small baskets and pouches around the city. These Dark Vessels are used in ceremonies and rituals, and they contain shadowy energies that twist minds.$B$BGo into Zul\'Hazu and get me these Dark Vessels, but be careful, mon. They won\'t let you in, and they won\'t just let you leave.", + ["O"] = "Gather 8 Hazzuri Dark Vessels and bring them to Primalist Jongi in the Hazzuri Glade.", + ["T"] = "Hazzuri Dark Vessels", + }, + [40158] = { + ["D"] = "Welcome to the Hazzuri Glade. We welcome you here as long as you keep the peace. We have found ourselves on our own, and I seek ancient recipes and powers. Far away on the continent of Kalimdor, there is a place called Azshara. This place holds many secrets and great energies that I wish to harness here in Hazu.$B$BIn this place, there are hippogryphs that go by the name \'Thunderhead\'. From them, I desire one Pristine Thunderhead Horn. This horn shall help me and the primalists greatly.", + ["O"] = "Gather 1 Pristine Thunderhead Horn for Head Primalist Manaz\'ago in the Hazzuri Glade.", + ["T"] = "Thunderhead Horn", + }, + [40159] = { + ["D"] = "Long ago, I heard rumors of a deep jungle in a crater of the earth. It was filled with dinosaurs, raptors, and other massive, strange creatures that I had not seen. I long to visit such a paradise one day, but for now, it holds something I seek.$B$BIn this foreign landscape, there be a great volcano at its center. It holds one of the world\'s hottest substances, and elemental beings of flame protect it! I seek a Pure Volcanic Ember from these very flaming elementals, hot enough to burn for many long years. It is with this that my people can regain access to magic that has been lost for a long time.$B$BGo to this place and get me what I seek.", + ["O"] = "Bring a Pure Volcanic Ember to Head Primalist Manaz\'ago in the Hazzuri Glade.", + ["T"] = "Rumors of the Great Fire Plume", + }, + [40160] = { + ["D"] = "The Bengal tigers of the region are a capable predator—one you should not dismiss easily, mon. They stalk for their prey and attack with a vicious speed that cannot be matched. It is from these tigers that I have produced many a potent elixir.$B$BYou see, the Hazzuri use this battle elixir made from Bengal fangs to enhance their battle capabilities. It is we, the Primalists, who came up with this long ago, mon. Go out into the jungle, and gather me five Bengal fangs. Our camp needs some of this elixir.", + ["O"] = "Gather 5 Bengal Fangs for Primalist Palaz in the Hazzuri Glade.", + ["T"] = "Bengal Fangs", + }, + [40161] = { + ["D"] = "On dis island, there be a powerful herb that we use in many of our most ancient recipes, mon. This herb has been harder to get since we left Zul\'Hazu and founded our own destiny. You see, hidin\' up here, we cannot leave the safety of the Glade for long.$B$BI speak of the Hazu leaf that only grows upon this island and can send someone who uses it into a dream-like state. I need you to get us this, mon, to help our ability to see things. You can find it all over the island. Get me ten of them. That should be enough.", + ["O"] = "Gather 10 Hazu Leaves for Primalist Yango in the Hazzuri Glade.", + ["T"] = "Hazu Leaf", + }, + [40162] = { + ["D"] = "Hello! My name is Smallgill. I was once among the murlocs, up until we came here, and they allied with the slithery naga! They go by the name Deeptide now, and attack any who come near. They even stole my necklaces!$B$BThose were mine, that I made, and that I gave to friends, and they stole each and every one of them! I tried to ask nicely but they attacked me, and now I want them back by any means.$B$BCould you please, oh very please get me my necklaces back? I don\'t need all of them, just a few! Maybe six? I know that the other murlocs around here have them, so make sure you ask nicely.", + ["O"] = "Collect 6 Lovely Shell Necklaces for Smallgill in Gillijim\'s Island.", + ["T"] = "The Evil Deeptide", + }, + [40163] = { + ["D"] = "The Tower of Lapidis looms over us like a great evil that could destroy us at any minute. When we first arrived upon this island, the Arch Hydromancer Lapidis set to constructing a tower with the help of some of our workers and his own elementals of water. With his great power, the tower was constructed much before the town of Caelan\'s Rest had gotten its footing.$B$BWith his power, he gained an alliance with both the trolls of Zul\'Hazu and the ogres of the Gordosh Heights. He has been working against us since then. He has not spoken with us since the tower has been erected, hidden away behind powerful water elementals and a sealed magical door.$B$BIf there is ever to be a hope for us, the Arch Hydromancer Lapidis must be slain. Flakereef was a fellow Hydromancer and worked beneath Lapidis. If there is anyone who knows where to begin, it will be him.", + ["O"] = "Speak with Hydromancer Flakereef in Caelan\'s Rest.", + ["T"] = "The Tower of Lapidis", + }, + [40164] = { + ["D"] = "Arch Hydromancer Lapidis held incredible skill in hydromancy and was much stronger than many, even within Boralus. Many had their opinions on how the man was able to achieve such power, though I always gave him the benefit of the doubt. I believe he has had some assistance from either a magical artifact or an outside force, though I cannot prove my suspicions.$B$BRegardless, if there is a way in the tower, I would believe it to be this key. .$B$BThis key was given to me by Lapidis before we had arrived. He entrusted it within my care, and I was to be one of his pupils. However, after he created his imposing tower and began to close himself off, I instead returned here. This key fits the lock to his domain, but cannot open it. Perhaps it requires some magical attuning to grant access.$B$BWe must look to those with a greater knowledge of the Arcana. Archmage Ansirem Runeweaver of Dalaran could help. Seek him out.", + ["O"] = "Bring the Shimmering Brass Key to Archmage Ansirem Runeweaver in Dalaran.", + ["T"] = "The Tower of Lapidis II", + }, + [40165] = { + ["D"] = "Lapidis was always an interesting, if strange, man. At the time, we hadn\'t considered his refusal to our curiosity as something potentially bad, but hearing of what he has done upon Lapidis Isle has certainly shifted my opinion.$B$B. It would appear that this key still has lingering magic within it. It is possible to reconstruct the enchantment, but may take considerable power and reagents to do so. If the key is to work upon the lock as suggested, it will need to be both attuned and enchanted to the magic that once powered it.$B$BIt is within my capability to enchant this key with the same magic that once powered it. A Pure Aqua Orb from a water elemental along the coast of Feralas should be sufficient and powerful enough to mimic the key\'s enchantment.", + ["O"] = "Gather a Pure Aqua Orb from Water Elementals in Feralas, and bring it to Archmage Ansirem Runeweaver.", + ["T"] = "The Tower of Lapidis III", + }, + [40166] = { + ["D"] = "Now, to begin, I will transmute some of the energy from the Pure Aqua Orb and enchant the key with the magic that once was present. This may take a few moments to do, and I require precise concentration. Give me but a moment, and I will be done.", + ["O"] = "Wait for Archmage Ansirem Runeweaver to finish his magic.", + ["T"] = "The Tower of Lapidis IV", + }, + [40167] = { + ["D"] = "With the key enchanted, one piece of the puzzle has been put into place. I however, do not possess the skillset able to give this key an attunement of that who created it. The power that once attuned this key is incredibly potent and complex, and will need someone of greater skill than I to do this. You may return the key to Hydromancer Flakereef, perhaps he may know of another.", + ["O"] = "Return the Enchanted Brass Key to Hydromancer Flakereef.", + ["T"] = "The Tower of Lapidis V", + }, + [40168] = { + ["D"] = "I hadn\'t imagined Lapidis could harness such power, even into such a small object such as this key. Perhaps there is someone else that could be of assistance. The fleet had a Magus with us when we first began to establish Caelan\'s Rest. Shortly after he departed in search of a latent , powerful magic that emanated from the island.$B$BWhen he returned he spoke of a great hermit that was beyond his own power, and that of others he seen in his lifetime. He ventured out once more to learn from this figure, and to study out in the island. If there is something that can be done, perhaps Magus Valgon can help us get the answer. You should be able to find him somewhere on this island, I would imagine he has a camp somewhere.", + ["O"] = "Find Magus Valgon on Lapidis isle, and inquire about the Enchanted Brass Key.", + ["T"] = "The Tower of Lapidis VI", + }, + [40169] = { + ["D"] = ".$B$BI do not think I can assist with this, friend, the complexities of the magic may take many weeks to begin to crack, and I think you do not have such time to wait.$B$BI do know one who knows a great deal of magic, hidden away from the world. There is a hermit that remains somewhat hidden upon the island of Kazon, nestled in between Gillijim and Lapidis Isle.$B$BGo there, and find Insom\'ni, he is a powerful troll, much more powerful than any I have met.$B$BIf there is anyone who could attune this key, it would be him.", + ["O"] = "Travel to Kazon Island and speak with the troll hermit Insom\'ni.", + ["T"] = "The Tower of Lapidis VII", + }, + [40170] = { + ["D"] = ".$B$BI can do this, though I must wonder why I would help you, especially for free.$B$BIf you want me to work the magic of this key, and attune it for you, I will need a favor from you. There is a satyr of whom I knew a long time ago, one who still walks this world today. Let us say that me and him are not on the best of standing and I want you to bring me one of his gnarled horns from his battered corpse.$B$BTravel to Felwood, to the Ruins of Constellas, you will find Pethax Blackhorn there, it is his horn I desire.", + ["O"] = "Obtain Pethax\'s Horn for Insom\'ni on Kazon Island.", + ["T"] = "The Tower of Lapidis VIII", + }, + [40171] = { + ["D"] = "Now, I will do what I can to restore the attunement to this key. It shouldn\'t be that difficult, the magi who left the magic did a poor job with leaving magical traces upon it.$B$BStep back, I will do as you asked, it shouldn\'t take long. When I am done, you may return to the one who sent you.", + ["O"] = "Wait for Insom\'ni to attune the Enchanted Brass Key, once the key is attuned, return it to Hydromancer Flakereef in Caelan\'s Rest.", + ["T"] = "The Tower of Lapidis IX", + }, + [40172] = { + ["D"] = "Ahoy mate, fine day, innit?$B$B$B$BAye, the salty smell of the sea forcefully entering your nostrils, the cotton mouth from last night\'s rum and the ultimate headache and pain you got from the local bar fight. Thar is no better life matey, this I tell ye. But this city be borin\'. I reckon they are no real pirates. If ye truly want to live yer adventures at sea and see how it really be to be a Corsair ye should come join me and me crew!$B$BI be a crew member of the Bloodsail Buccaneers and I be lookin\' for new folk to join us. We are sworn enemies to Booty Bay so keep this small piece to yerself eh? If ye decide to join us I got a mission for ye, if not, we never met, savvy?", + ["O"] = "Speak to Garfield \'The Fox\' Sparkleblast if you wish to aid him.(This will make the Bloodsail Buccaneers not see you as an enemy anymore.)", + ["T"] = "Red Flag over the Sea", + }, + [40173] = { + ["D"] = "So listen here mate, ye see these foul sea tailed imps? These Blackwater Pirates are naught but a joke, hiding in their port. They even have their weapons laying around in crates, truly a disgrace to all pirates around.$B$B$B$BSo that\'s exactly why ye are going to collect them and bring them to a special someone in the city. What, ye thought these sea tailed imps wouldn\'t have a rat? Outrageous, but hilarious, innit? Narkk be the name.", + ["O"] = "Bring five weapon crates to Narkk.", + ["T"] = "Weapons Laying About", + }, + [40174] = { + ["D"] = "All right mate. Ye\'ve done well so far but thar\'s still some stuff we have to do afore leavin\' this rotten port. If we wants these idiots to never have a chance in the face of the Bloodsail Buccaneers, we shall have to also tamper with thar ammo. That bein\' said, I\'m gonna give ye a flask o\' \"special\" water ye will have to pour in any barrel of blast powder ye can find.$B$BSavvy?", + ["O"] = "Sabotage the Blast Powder Kegs.", + ["T"] = "A Cannon\'s Misfortune", + }, + [40175] = { + ["D"] = "I may not have the most gold on me, but I do have a fortune that\'s waiting out there for me. I made a bet with this goblin, named Nagzel, crafty little guy. You see, we were playing cards one day and he was telling me about his plans of joinin\' the Venture Co. and working at the base camp by Lake Nazferiti. For the first time in my life, I was actually winnin\', and he offered this big hunk of a ring.$B$BNow, the ring itself I cared little for, it was nothing more then some cheap old iron lug nut, but it had this BIG jade sticking on top of it. I\'m talking the size of my thumb!$B$BBets are more then just games, they\'re a way of life, and this man took the ring when he lost, and vanished, never to be seen again. Go find this punk and get that green stone, it\'s rightfully mine!", + ["O"] = "Bring back the \"Rightful\" Jade for Dirty Jacob.", + ["T"] = "The Bet", + }, + [40176] = { + ["D"] = "When we first came to this island, we were greeted by hostility from all who were around us. We were seen as pirates still, and had yet to make a mark for ourselves. It was the Seer Jang\'zo from the Razzari tribe who helped bring peace between us and them. For quite a while we kept a rather peaceful bond with one another. We traded and assisted with tasks of both a spiritual nature and physical.$B$BThough all seems to have fallen apart within the last weeks. The Razzari have began to show hostilities toward us, and have even gone so far as to attack. There are rumors of them speaking with the Hazzuri trolls and being influenced by their dark magics. There must be some kind of curse at play.$B$BI fear for Jang\'zo and wish to assist him, as he did us. I require materials from around the island to create a spell that could lift such a curse. Firstly I need 6 Junglepaw Fangs from the local panthers, 3 Creeper Roots from the ruins creepers in the Ruins of Zul\'Razu, and a single Jungle Venom Gland from the jungle serpents.", + ["O"] = "Collect 6 Junglepaw Fangs, 3 Creeper Roots, and a Jungle Venom Gland for Euokia on Gillijim\'s Island.", + ["T"] = "Crumbling Allies", + }, + [40177] = { + ["D"] = "Damn, did we come down like a meteor, all the controls were going haywire, sparks flying everywhere, as the zeppelin hauled ass and smashed into the island! It was a miracle that I survived, though my luck ran out when I had to leave behind the wreck.$B$BAfter we plummeted down, we attracted the attention of a bunch of basilisks. The damn buggers made it impossible for me to go and find my Gobcrank Flazwanger! I made the thing back in Kezan a long time ago to help with stabilization, and let me tell you it\'s revolutionary!$B$BYou think you can manage a quick tilted turn on a zeppelin? Not unless you have a Gobcrank Flazwanger... Look pal, you\'re looking at me like I\'m an alien, all you need to know is the thing is valuable, okay? And I\'m willing to pay for you to go get it, now am I speaking your language?$B$BThe wreck was over by the Maul\'ogg post to the south-west, it shouldn\'t be hard to miss!", + ["O"] = "Find and bring the Gobcrank Flazwanger back to Flaz Fusemix in Maul\'ogg Refuge.", + ["T"] = "The Gobcrank Flazwanger", + }, + [40178] = { + ["D"] = "What we be about to do be a great sin, mate. I hope the Goddess o\' Rum will forgive this foolish scallywag. Aye, we\'ll poison the rum in the inn, wha\' a damn shame, ain\'t it?$B$BBut sometimes ye gotta do wha\' ye gotta do. Here\'s the poison, just toss it into the huge keg of rum they usually keep on the low level of the port, close to the auction house. They fill the rum everyday \'n they\'ve got thar share already, they will only be feelin\' it tomorrow.", + ["O"] = "Poison the Rum.", + ["T"] = "Loss of Good Rum", + }, + [40179] = { + ["D"] = "So it seems these Blackwater fools sent some rat to keep track of our mates. He already asked someone to scuttle one of our new captains, although to be fair that orc was an idiot. Blood fer blood! I wants ye to go meet Morgan the Storm \'n spit in his face. Bring me his head. Ye can find him on the Eastern beach where most of me mates set anchor.", + ["O"] = "Kill Morgan the Storm and bring his head to Garfield Sparkleblast.", + ["T"] = "Exterminate the Rat", + }, + [40180] = { + ["D"] = "Here mate, put Morgan\'s head in this Jolly Roger. Ye ain\'t about to like what ye\'re goin\' to do next, but that shall only prove how insane \'n courageous ye be. Ye\'re goin\' to toss the head at the feet o\' the Baron \'n the First Mate \'n make a damn run fer it! Ye\'re gonna find us on Jaguero Island, I hope ye make it thar alive, ye\'d be a great asset to the crew. If ye do come, I will officially make ye a crewmate.", + ["O"] = "Make a statement.(This action will make the Blackwater Raiders and Booty Bay your enemy, if your life is not expendable do not attempt this mission.)", + ["T"] = "Making a Statement", + }, + [40181] = { + ["D"] = "Now that we\'ve let \'em know who they be dealin\' with it\'s also time to hit \'em when they\'d less expect. I hear thar be some fools that set anchor in to Faldir\'s Cove in Arathi Highlands. I wants ye to scuttle \'em, all of \'em.", + ["O"] = "Invade Faldir\'s Cove and kill everything in your way.", + ["T"] = "Taking over Faldir\'s Cove", + }, + [40182] = { + ["D"] = "Now that we be done with the mongrels from Blackwater, we have time to focus on a different kind of enemy. I hear the South Sea Pirates anchored on the Isle of Lapidis, a mysterious island that be known to hide some sort o\' booty from wha\' me mates tell me. I say it\'s just fairy tales. Go pick a fight with \'em, \'n here, take this. It\'s about time ye represent the Jolly Roger, tie this red bandana over yer wrist, ye\'re a Bloodsail after all.", + ["O"] = "Travel to Lapidis and pick a fight with the local pirates.", + ["T"] = "South Sea Losers", + }, + [40183] = { + ["D"] = "Right, the information. Well ye see, I\'ve been huntin\' this First Mate since me early days of piracy, he took me eye and I want his head. He be a real pain in the gut, I tell ye.$B$BOnce we were at sea through the vast cold areas close to Northrend. The wind blew so harshly that when we was fighting at sea the ships eventually hit one another and we had to fight through the coldest rain I\'ve ever had to witness. We\'ve barely made it alive on rowboats to Eastern Kingdoms, only to meet again on land and swear to claim each other\'s head. With ye here, a long grudge will be fulfilled.", + ["O"] = "Kill First Mate McGillicuddy.", + ["T"] = "First Mate McGillicuddy", + }, + [40184] = { + ["D"] = "It\'s been so long, so long ago that we\'ve decided to let go of our principles. So long ago we stopped to care for anyone but us. We\'ve given up on our lives in favor of the demons, we are nothing but shadows of memories from the past. I can no longer do this, I can no longer wait.$B$BI wish days would return when we, the Highborne, were the ones standing atop the Night Elves. All we are now are shadows of what we used to be, hunted by the ogres and demons that took residence in the lands we used to call Eldre\'thalas.$B$BPlease, kill me, end my suffering. I want to go to my mother moon and join the afterlife that I\'ve courted for so many years. Please, end my torment.", + ["O"] = "\"Free\" Thirael Blistersong.", + ["T"] = "[DEPRECATED] No Hope For Tomorrow", + }, + [40185] = { + ["D"] = "The cap\'n of this fool ye\'re about to scuttle used to have a magical compass, or so they claim. It seems the compass would find whatever ye desire when ye\'d open it up, which sounds like a madman gab.$B$BEnter the lodgin\' of the cap\'n \'n see if ye can find this compass. I hear he keeps it locked in a chest. Some say the chest be black spotted, but that\'s definitely some squiffy excuse.", + ["O"] = "Find the Magical Compass.", + ["T"] = "Magical Compass", + }, + [40186] = { + ["D"] = "Last thing ye\'re gonna do fer me with these fools be to set fire to thar ship. Fun, ain\'t it?$B$BAye, I wants ye to light this torch on fire while ye\'re close to the cannons, \'n set fire to the blast powder. Make sure t\' get out o\' thar as quickly as possible!", + ["O"] = "Light the fuse of a blast powder keg.", + ["T"] = "Land ho? More like land no", + }, + [40187] = { + ["D"] = "Mate, at this point, I can nah even argue wit\' the fact that ye\'re a mighty resourceful individual. That bein\' said, I be givin\' ye yer own wee crew. Ye won\'t have to do much other than live a free damn life \'n go search fer adventure, gold, rum \'n wenches. It\'s been a fun run, \'n it\'s \'cause of ye that we be here. Speak with me when ye\'re ready to claim yer new title \'n yer crew.", + ["O"] = "Talk to Garfield Sparkleblast when you\'re ready.", + ["T"] = "Captain of the Bloodsail Buccaneers", + }, + [40188] = { + ["D"] = "That damn Zeppelin caught fire as we were going over this uncharted island, and lucky for us we didn\'t just hit the open seas! We lost quite a lot of crew members but I do know that Blazno jumped off before the crash. I don\'t know for sure what happened to him, but I\'d like you to find out one way or another.$B$BHe\'s a crafty one that Blazno is, no doubt he was able to figure out something away from the rest of us, if anything my bet is he is somewhere near where the crash site is at, look around there - you\'ll find our wreckage by the Maul\'ogg Post, just south west of here near the Canyon.", + ["O"] = "Search for signs of what happened to Blazno Blastpipe in Gillijim\'s Island.", + ["T"] = "The Lost Crew", + }, + [40189] = { + ["D"] = "That crash was a massive setback! Heh, set me back a whole bunch, I had trade deals all over Azeroth, one of the richest goblins, all in that zeppelin. Theres gotta be atleast a million gold showered around where that zeppelin is, and I can\'t even go and pick it up, damn basilisks!$B$BBut, I\'m smart, the smartest goblin of all goblins in the world, and I got a strategy to make my wealth back, see?! Turtles live such long lives that I\'m gonna harness the power of a turtle, with the wealth of gold to make either alot of gold, or make some serum that extends life!$B$BGenius, you see, genius! Now, go to the Silver Strand, its just to the west of here, and find me an Uncracked Turtle Shell, it NEEDS to be uncracked, if I see a single crack, you aint getting anything!", + ["O"] = "Gather a single Uncracked Turtle Shell for Blazno Blastpipe in Gillijim\'s Isle.", + ["T"] = "To Make A Fortune", + }, + [40190] = { + ["D"] = "You see, to be smart like me requires thinking outside of the box, something that goblins and gnomes have been in forever - a box! But me, I\'m outside of it, and now with this turtle shell I can make great things happen!$B$BThe last step for what I need will require a single golden bar, the sheer properties of the gold will be enough to make pure magic happen, and when I say magic I mean MAGIC. You can find a gold bar anywhere on Azeroth, but I need a real one, not no fake crap!$B$BGet me a golden bar, and I will be able to remake my fortune!", + ["O"] = "Gather a Gold Bar for Blazno Blastpipe on Gillijim\'s Isle.", + ["T"] = "The Blazno Touch", + }, + [40191] = { + ["D"] = "There was a time when we could roam freely around the island... a time when the Kalkor and the Razzari lived at peace and even cooperated. During those times, I would often venture up and down the Silver Strand to admire and explore the beauty of this island.$B$BOn my last trip to the beaches, I had found ships torn apart upon the sand and was shocked at the whispers of humanoid figures. It grasped upon my neck and pulled free the charm I had bound there, taking it from my body as I raced back here.$B$BThat charm is one of the only things I have left of the place we once came from, and I would ask you to get it back. You can find these wrecked ships to the north west, along the Silver Strand. My charm must still be held by one of the ghosts there.", + ["O"] = "Find and recover the Ghostly Charm for Tarokar in Kalkor Point.", + ["T"] = "The Ghostly Charm", + }, + [40192] = { + ["D"] = "There was a time in which the Kaldorei and the Furbolgs lived in harmony. They were our ally against the darkness, and worked with us to keep the balance in nature. We traded, we offered assistance to one another, and we even fought side by side.$B$BThat time has passed, and it seems that with each passing day more and more furbolg abandon their homes to join the larger tribes. These large tribes of furbolg have collected to gather strength, and deem the outside world hostile entirely.$B$BIn the end, they have become nothing more than ruthless stalkers, murderers and agents of madness. This change has only puzzled us druids, and has brought up more questions then answers. Hopefully today we can find some. Across the water to the north are some of their camps, abandoned by their kind. I want you to search them, and try to find some clues as to what might potentially have corrupted them.", + ["O"] = "Search the furbolg camps across the water for clues of their corruption.", + ["T"] = "In Search of Corruption", + }, + [40193] = { + ["D"] = "There is a corruption lingering within the forest of Ashenvale, though I cannot pinpoint exactly where it is, or what is causing it. The signs of the furbolg being reduced to a state of madness boldens my thought, and hearing reports of what lurks within the forest to the east only haunts my mind.$B$BIf there is anything that can be done, it would be by way of Arch Druid Fandral Staghelm in Darnassus. He has led our people to a new beginning, and perhaps it will be him that will solve the corruption present here in Ashenvale.$B$BI have prepared this letter for him. Please, deliver it with urgency, for all the beauty of Ashenvale could be at stake.", + ["O"] = "Deliver Faldan\'s Message to Arch Druid Fandral Staghelm in Darnassus.", + ["T"] = "Ashenvale Corruption", + }, + [40194] = { + ["D"] = "My people have a long and rich history upon this island, we once came from Stranglethorn, as part of the Gurubashi. But we looked for a new destiny when the wars stared, it was here that we called home. This island has been a place of refuge for our kind, and we have lived here in harmony with nature around us.$B$BAs of recently, my people have begun to betray their heritage, and their past. They use a foreign magic from our brothers the Hazzuri, one that is of an evil source, and tainted to the core. Instead of practicing the ways of the voodoo, they now are lost within the ways of shadow, mon.$B$BMy people are not what they used to be, and attack any who dare go close, their very essence be tainted. I ask of you to do me a favor friend, you need to go to Zul\'Razar, it is located to the northwest on the isle. Kill the trolls there, gather me their Tainted Mojo, perhaps I may find a source of how to help them.", + ["O"] = "Gather 15 Tainted Mojo from trolls in Zul\'Razar for Jubo in Maul\'ogg Refuge.", + ["T"] = "Razzari Madness", + }, + [40195] = { + ["D"] = " With the Hazzuri\'s dark words they were able to convince the weak minds of the Razzari to take up their magic. Even now their speaker gives them speeches to warp their minds and change their ideals.$B$BI have discovered from the Mojo you have sent me of a dark taint that lingers within it, it would appear that the power my people have become to accept is that of a great power, and a much greater evil. The Hazzuri know not what they peddle, nor what they preach, and will only bring the end of their kind, and my own.$B$BIf there is to be a future for the Razzari, this must all come to an end, and the only end I can see, is by the death of those that accepted this darkness. They are nothing more then traitors for a promise of power.$B$BGo deep into Zul\'Razar, strike hard at Speaker Ujuwa for spreading his lies, and Chief Imaz\'ul for accepting them. Bring me their skulls as proof of your deeds, let this chaos come to an end.", + ["O"] = "Collect the skulls of Speaker Ujuwa and Chief Imaz\'ul for Jubo in Maul\'ogg Refuge.", + ["T"] = "The Razzari Leaders", + }, + [40196] = { + ["D"] = "It has been a long time since our people last saw the sands of Kalimdor. We left our tribe in pursuit of riches, and now, the man who led us here has betrayed us for his own prosperity. The riches we fought and worked so hard to gain were taken, and we were left to rot.$B$BA centaur named Lykourgos is the one who orchestrated this betrayal with the Southseas Pirates. I had my suspicions about him, but I hadn\'t expected his honor to be so cheap. Everyone within this camp wants revenge, but we have no means to kill him. I hate to speak anything good of such a snake, but he is undoubtedly a ruthless murderer with great skill in arms.$B$BHe is known as \'The Reaver\' due to his brutality, and you should not underestimate him. Find him, kill him, for all of us here and for his betrayal. I do not know where he is, but he is still a pirate through and through, so he should be found around fellow Southsea Freebooters.", + ["O"] = "Slay Lykourgos the Reaver.", + ["T"] = "Lykourgos", + }, + [40197] = { + ["D"] = "For many long years our neighbor was that of a furbolg, he has grown aged over the last few years but was extremely wise. Old Greypaw often kept to himself, and minded his own business, often venturing over for a night time talk if he so needed the company.$B$BAs of lately I fear for his mental health, the other furbolg of the forest have begun to act irrationally, and I fear Greypaw may be succumbing to a similar fate. He has not stopped by in months, and has kept to his home to the north.$B$BHe has been aggresive to either me or Ardaen approaching and wishing to talk, but perhaps you may be able to speak with him, and ask if he is doing okay. It would certainly ease my mind to know an old friend is well.", + ["O"] = "Speak with Old Greypaw within Ashenvale for Daela Evermoon.", + ["T"] = "Old Greypaw", + }, + [40198] = { + ["D"] = "Hey, you! I be needing a bit of work that is off the boat if you think you can be a hand. When we get moving all that people really got to do is either drink, or work to keep the ship clean and orderly. I\'ve found it always good to keep a good reserve of ale on hand, and a good variety of it too!$B$BWhat I\'m gonna ask you to do is bring some ale from various sources, some of which might require you to have some friends, or connections with the opposite faction at that!$B$BFirst, I need a Barrel of Steamwheedle Wine, which can be found at the port, steal it. Secondly I\'ll need common ale, 10 Flasks of Port. Finally get me a Cask of Merlot from Stormwind at the Gallina Winery, and a jug of Orgrimmar Brown from the Tavern in Orgrimmar.", + ["O"] = "Gather a Barrel of Steamwheedle Wine, 10 Flasks of Port, a Cast of Merlot, and a Jug of Orgrimmar Brown for Fazzle \'The Slick\' in Bloodsail Retreat.", + ["T"] = "Smuggling Ale", + }, + [40199] = { + ["D"] = "The Maul\'ogg be in a great war, a war for our very survival! We be pushed back to this refuge as if we are not stronger anymore. This not be the truth, and honestly we will fight back until we are destroyed.$B$BWe once controlled most of this island, and only when the Razzari defeated us, and the wildlife posed a big threat did we come back here! Maul\'ogg destined to rule all of Gillijim, and it shall be rightfully ours.$B$BWe must retake land if we are to hold more power, and The Tangled Wood lies between us and them. Kill the animals there, those panthers that stalk, kill those creepers that lurk within the vines, it should be just north of here, go!", + ["O"] = "Slay 10 Lurking Jungle Creepers and 10 Junglepaw Panthers for Lord Cruk\'Zogg in Maul\'ogg Refuge.", + ["T"] = "The Maul\'ogg War", + }, + [40200] = { + ["D"] = "When we battled with the Razzari we were able to deal quite a lot of damage to Zul\'Razar, and even occupied part of the city. Until a large lot of Creepers came in, led by a massive beast named Tanglemoss, who drove us out.$B$BTanglemoss is a lurking, horrific beast that patrols the ruins of Zul\'Razar and has slain many ogres. We have always thought of him in stories, and rumors as a beast that lingered within the shadows and made those that traveled alone dissapear. I think I speak for many of us when I say that I prefer the story of Tanglemoss to be just that, a story.$B$BTravel to the Ruins of Zul\'Razar to the west, and slay Tanglemoss, bring its foul heart to me.", + ["O"] = "Bring the Heart of Tanglemoss to Blatarg in Maul\'ogg Refuge.", + ["T"] = "Tanglemoss", + }, + [40201] = { + ["D"] = "I spent much time among the keepers on Stonetalon Peak. It was a time of tranquility, to find true balance of self and harmony with nature. In my time there, I learned much of how best to wield the power of the land to conserve and protect nature. It is only when I began my work here within Teldrassil that my efforts began to falter, and there have been... complications.$B$BIt would appear the land itself holds some taint that I cannot grasp. I have struggled in my efforts to bend nature\'s will, straining myself more than ever before, and one of my Protectors has withered away and broken its bond with me.$B$BI would ask you to speak with Tasala Whitefeather, the one who once lead the harpies within the region, and ask her if she has news of the treant. Do not worry; she is free from the evil that grips her kind.$B$BYou should find her just down the hill to the north. Follow the road and you will see her near the cliff\'s edge.", + ["O"] = "Speak with Tasala Whitefeather in Teldrassil.", + ["T"] = "Unforeseen Consequences", + }, + [40202] = { + ["D"] = "There is a shadow that lurks unseen in the forests of Teldrassil, a tainted air that hangs like an acrid pall over the seemingly pristine glades. It has twisted and corrupted my sisters, making them distempered and aggressive. Malos assures me his research may lead to a cure for my sisters.$B$BThe treant Malos speaks of I have seen meandering the forests below here, withered, twisted, and enraged. A haunting visage it possesses, its mind tainted by the very darkness that has touched my sisters. You should be able to find it walking along the eastern edge of the Wellspring Lake.$B$BGo and bring this news to Malos. I hope that I have been of aid to him in return for his kindness.", + ["O"] = "Return to Malos Lunarspear in Teldrassil with Tesala Whitefeather\'s information.", + ["T"] = "Tesala\'s Word", + }, + [40203] = { + ["D"] = "I fear there is no recourse but to destroy the treant lest it cause harm to our people or the creatures of Teldrassil. From the information Tasala provided, we can safely assume that it will be patrolling the eastern banks of the Wellspring Lake.$B$BSeek the Distorted Treant out, give it a merciful end, and bring back a sample of its roots that I may better understand what possessed it. Exercise caution; a Protector is not likely to go without a fight.$B$BGo quickly now. That treant may hold answers to what lies at the heart of nature\'s unrest here in Teldrassil.", + ["O"] = "Destroy the Distorted Treant and bring its Withered Roots to Malos Lunarspear in Teldrassil.", + ["T"] = "Rooting Out Corruption", + }, + [40204] = { + ["D"] = "Greetings, $c. High Sentinel Adaena Oakleaf has tasked me with scouting and recruiting capable adventurers to address some of the more concerning incidents here within Teldrassil. Those who are fit and willing I am to direct to her for further orders.$B$BYou will find the High Sentinel up this path atop the gates of Darnassus, watching over our borders.", + ["O"] = "Speak with Adaena Oakleaf in Darnassus.", + ["T"] = "A Meeting With Adaena", + }, + [40205] = { + ["D"] = "The Gnarlpine tribe in Teldrassil has become a greater threat than I could ever have imagined. To think they were once our allies against all who would bring the forests harm.$B$BMoon Priestess Amara patrols the roads between Darnassus and Dolanaar, keeping travelers safe and enlisting their aid in defending against the Gnarlpine attacking near the village. Alas, it seems these measures have not been sufficient in diminishing the Furbolgs\' offensive capabilities.$B$BWe must strike at the heart of the tribe if we are to curtail any attempts at mobilizing against Dolanaar and Shadowglen, a legitimate concern now with how bold they\'ve become. Travel to Gnarlpine Hold to the south and slay as many Avengers and Pathstalkers as you can.", + ["O"] = "Slay 10 Gnarlpine Avengers and 5 Gnarlpine Pathfinders and then return to Adaena Oakleaf in Darnassus.", + ["T"] = "Securing Darnassus", + }, + [40206] = { + ["D"] = "The Swamps are ridden with insect, fungus, and predator. It is only a few of these that can be enjoyable in meals. Deep within the swamps are a special kind of mushroom, one that I have tinkered with in the past! It can be used as a poison, though in small doses can add quite a lot to meals, or if prepared correctly, the ill-effects of its poison can be negated.$B$BSorrowmoss Mushrooms can be found across the entirety of the swamp, most often beneath the heavy canopy of trees or along the snaking rivers, but not always. Go out into the Swamp of Sorrows and collect me 10 Sorrowmoss Mushroom, I wish to dabble more with the fungus.", + ["O"] = "Collect 10 Sorrowmoss Mushrooms for Thultash in Stonard.", + ["T"] = "Collecting Mushrooms", + }, + [40207] = { + ["D"] = "The deathstrike tarantulas are a formidable foe out within the swamps that lurk just southeast of Stonard. They can be found creeping about the swamps and laying traps for those they hunt.$B$BIt is from these tarantulas that I ask you to gather their poison. I have been attempting to mix the tang of poison, once nullified, into food. In truth, I do have ulterior motives of attempting to make such recipes work. Perhaps one day I may be a renowned cook within Orgrimmar, and not stuck in the Swamp of Sorrows.$B$BTravel into the swamp, and collect me 5 Deathstrike Venom!", + ["O"] = "Collect 5 Deathstrike Venom for Thultash in Stonard.", + ["T"] = "A Pinch of Venom", + }, + [40208] = { + ["D"] = "I have long pondered the presence of the green dragonflight gathered about the temple sunken at the center of the lake. They have prowled and patrolled with adamant defence, and left us curious as to what may lay inside.$B$BAs much as such mysteries make my mind go wild with curiosity, I am not an adventurous soul as to find out why they are guarding it. I have been working with magical goods for most of my life, and have been dying to get my hands on a Glittering Green Scale. One that has been enfused by the power of Ysera and charged by her will. I must admit, it may be hard to come across one.$B$BTravel to the Pool of Tears, and hunt Green Dragonkin, look upon their corpses for a single Glittering Green Scale, entwined with powerful magic, and bring it to me.", + ["O"] = "Bring a Glittering Green Scale to Thultazor in Stonard.", + ["T"] = "The Magic of Dragons", + }, + [40209] = { + ["D"] = "Many long months I have spent in this hellscape hunting for a large jaguar. I have given it the nickname Sorrowclaw, for its ferocity and where it comes from. I have attempted to catch it, fight it, and even stalk Sorrowclaw, but every time I have been outsmarted.$B$BIt is as if the beast is three steps ahead of me at all times and I long to see its terror within the swamp come to an end. Perhaps you are a better hunter then me, and perhaps you can track down Sorrowclaw, and slay the beast once and for all.$B$BI assure you, it will not be an easy task, and I recommend you bring help should you truly wish to take after where I have failed.", + ["O"] = "Bring the Paw of Sorrowclaw to Zun\'dartha in Stonard.", + ["T"] = "The Hunt for Sorrowclaw", + }, + [40210] = { + ["D"] = "I did not always call this place home, infact I come from far away lands, and have only recently settled here. I have many tales to tell and should you wish to truly serve me, you will need to listen to my tale and understand why I do what I do.$B$BSo , mortal, are you ready for what is presented before you, will you step into the abyss?", + ["O"] = "Listen to the tale of Insom\'ni.", + ["T"] = "The Hermit", + }, + [40211] = { + ["D"] = "Felwood.$B$BA place I recall with a bitter hatred that makes my face cowl in disgust. It is within this place I had first decided to travel upon leaving my kin. My reasons for being in such a place was for the betterment of Azeroth, and I only found deceit, malice, and corruption.$B$B.$B$BWe will start here, travel to the twisted forest, and hunt the foul beings known as the \'satyr\' , more specifically, the Jadefire. I will need from them 5 Jadefire Felhorn , as well as 5 Purple Lotus that can be gathered by any skilled herbalist upon this world.", + ["O"] = "Gather 5 Jadefire Felhorns, and 5 Purple Lotus for Insom\'ni on Kazon Island.", + ["T"] = "Jadefire Revenge", + }, + [40212] = { + ["D"] = "My channeling will take some time to uncover the source of what lurks beneath the surface. In the mean time, I would ask of you a favor that means more then these very islands. An old friend of mine, who goes by the name Itharius is currently located within the Swamp of Sorrows. He was originally sent with Eranikus in tasks regarding the sunken temple, and watching over its masters destruction.$B$BUpon my exile, I gave Itharius my necklace, one that holds much of my power, and essence. It is from this very necklace that I will need the energy needed to defeat the evil upon these islands.$B$BI told him a time would come where I would reclaim my birthright, and he may be aprehensive, but he will do as I asked him long ago. Find Itharius, and reclaim my necklace from those swamps.", + ["O"] = "Speak with Itharius to recover Insom\'ni\'s necklace.", + ["T"] = "An Old Friend", + }, + [40213] = { + ["D"] = "This necklace has made me regain much of my former strength. If you were paying attention during your trip then you would have uncovered my true identity. Now you know truely who I am, and we will work toward my final goal.$B$BI was able to channel my energies and locate the source of corruption. While we could very well confront, and summon it to us with the powers of my necklace, I would first take revenge upon those that tossed aside their worship of me.$B$BZul\'Hazu was once a place I called home, it was there the trolls called me a deity. They practiced my magics, and would follow me to the ends of the world.$B$BTravel to Zul\'Hazu in the north-west, slay the leaders Darkmaster Haza\'gi, Champion Raggazi, and Chieftain Woh\'zo. The people should suffer as well, get from them 10 Hazzuri Charms, they will be nice decorations.", + ["O"] = "Slay the Hazzuri Leaders, and gather 10 Hazzuri Charms for Insom\'ni on Kazon Island.", + ["T"] = "The Hermit\'s Wrath", + }, + [40214] = { + ["D"] = "With the Hazzuri slain, my heart burns with glee, retribution is such a fine wine, and one I would eagerly drink down again. It is time for the final task, we must drag free the shadow that has rooted itself upon the islands, and destroy it.$B$BWhen this is done, I can begin to rebuild my throne on these islands. The time is at hand. Follow me to the center of the island, and await my summoning to be complete. When it is, you must do battle with this evil as I keep it bound to the island. Only when it is weak enough, will I be able to join you.$B$BI suggest you bring friends, or others that may assist you. This should not be taken lightly, so do not fail me.", + ["O"] = "Assist Insom\'ni in destroying the dark presence.", + ["T"] = "Uncovering Evil", + }, + [40216] = { + ["D"] = "Howdy there, don\'t suppose you\'re looking to help out a goblin who has a deep need for revenge huh?$B$BYou see, I used to help out the Venture Co. back in my hayday, and honestly, it was a big mistake. They offered me the deal of a lifetime for my friendship, to supply them with some metal under the table for big profit.$B$BNow, I think its in a goblins blood to follow the smell of gold, but I was robbed, and hoodwinked.$B$BI put my butt on the line for those guys, and they up and haven\'t even contacted me since, I want you to give them a message, no one screws with Shizwackle and lives to tell about it.$B$BI do have a reputation to keep if I ever want to survive out here after all. Head up to The Sludge Fen far to the north, kill their Drudgers and Mercenaries, its with my metal they started this refinery there, maybe when they have less workers they will pay attention.", + ["O"] = "Travel to The Sludge Fen and slay 10 Venture Co. Drudgers and 10 Venture Co. Mercenaries for Shizwackle Tangrig.", + ["T"] = "The Venture Co. Shakedown", + }, + [40217] = { + ["D"] = "The Maul\'ogg used to rule over much of the island, but such times have changed, and we now are working to keep ourselves intact. Our other place of operation was called Maul\'ogg Post, it was led by Embergut, a rather powerful magi of an ogre.$B$BDeep down, I still think he\'s alive, and I want you to check on him, he was adamant about staying, even when we were leaving due to the problems with basilisks.$B$BGo and check to see if he\'s there, a trace of him atleast.", + ["O"] = "Search for Embergut at Maul\'ogg Post.", + ["T"] = "Finding Embergut", + }, + [40218] = { + ["D"] = "Beneath Maul\'ogg lies a cavern system filled with basilisk, called Deepneck Cove, its entrance laying at the beach just to the north east. I have been having long nightmares of a great magical power during my sleep, as if something is calling out to me. A basilisk with an eye of glass and a mind of power, I have recognized its horrible appearance before.$B$BIt is this very magic that I search for now, and bid that you obtain. The magical gaze of a beast named Glasseye is the one responsible for my dreams, and the energy seeping beneath Maul\'ogg. Travel into the caverns and slay the beast, collect its eye, and bring it to me, perhaps its magical potency will bring me some gaze into the future.", + ["O"] = "Venture within Deepneck Cove beneath Maul\'ogg Refuge and slay Glasseye to claim The Glass Eye for Seer Borgorr.", + ["T"] = "The Glass Eye", + }, + [40219] = { + ["D"] = "We Maul\'ogg used to hold many great riches, we were in the process of setting up a great mine of jade that is present upon Gillijim! Those dirty pirates came and stole all of our hard work and should be smashed! Those rich jades are ours, and that gold they make should be our gold!$B$BOn some of our first digs we uncovered a very large \'Star Emerald\', of course, in the chaos it wasn\'t taken to me! Now some Foreman named Darkskull has it, and I want it back! He oversee\'s The Jade Mine up to the north west along the coast, go there, kill him, and bring me my prize, maybe they will learn a lesson from this too.", + ["O"] = "Claim the Star Emerald for Lord Cruk\'Zogg in Maul\'ogg Refuge.", + ["T"] = "The Jade Mine", + }, + [40220] = { + ["D"] = "Ah, while you were off dealing with the mindless Scourge, this scroll arrived for you. I would think it\'s some matter of importance as it seems it bears the seal of the hunter trainer Morpheus Ribcage. I would take some time to read it before heading out again.", + ["O"] = "Speak with Morpheus Ribcage.", + ["T"] = "Batskin Letter", + }, + [40221] = { + ["D"] = "Tales of your victories against the scourge raise the spirits of the downtrodden and give hope for a better tomorrow.$B$BBut for all your efforts, our enemies yet shamble in the dark and cast a pall over the land. The long night is yet to be over.$B$BWe mustn\'t relent!$B$BBy the Light, we must keep on, and bring salvation to those the Scourge would seek to harm. Prove that your mettle remains as sharp as steel.$B$BBring me an Argent Dawn Valor Token, and in exchange, I will grant you a boon to aid in your battles against the undead.", + ["O"] = "Bring 1 Argent Dawn Valor Token to Miranda Breechlock in Light\'s Hope Chape.", + ["T"] = "The Long Night Is Not Over", + }, + [40222] = { + ["D"] = "Hey there, we don\'t get many visitors back here, I suppose you\'re looking for work then. I got a shipment I am expecting that should have arrived today, think you can pick it up? Let\'s just say, I\'m not supposed to be seen around the docks to certain people.$B$BIt might not have my name on it, but it should be labeled as \'Refined Gem Shipment\'. Try not to ask any questions while you\'re down there either, just grab the crate and come back. If you look like you know what you\'re looking for, and have confidence, they wont ask any questions.$B$BYou get me the crate, and I\'ll have more work for you.", + ["O"] = "Collect the \'Refined Gem Shipment\' for \'Slip\' in Booty Bay.", + ["T"] = "Intercepted Shipment", + }, + [40223] = { + ["D"] = "In the shady, hidden corners of Azeroth there is always a deal going on, you may not see it, but it\'s there. I got word of a deal going down on Thoradin\'s Wall that I want you to go and steal. The contract itself is that of a dear rival of mine, and if I can do anything to interrupt his business and make a profit, well I\'m just smiling ear to ear.$B$BYou can find Thoradin\'s wall between Hillsbrad and the Arathi Highlands, it is what separates the two. Supposedly some ancient wall built by Stromgarde, or something of that nature.$B$BThe ramp should be on the Hillsbrad side of the wall, near the southern end, I do know they hired some Syndicate goons to watch the ramp, but they should be no problem for you. The main muscle will be an ogre namen Thoregg who guards the packages there, him you should be careful of.$B$BGet the shipment, bring it back to me, easy yeah? Oh, and no matter what, don\'t open the crate.", + ["O"] = "Collect the Mysterious Shipment, and return it to \'Slip\'.", + ["T"] = "Breaking Contracts", + }, + [40224] = { + ["D"] = "Good work as always, I think I can count on you to make a shipment. This is supposed to be under the rug, so I don\'t want anyone knowing that I sent you or that he was even getting anything, got it?!$B$BA buddy of mine Yig Oilfuse recently departed from the Venture Co. after some not so great terms, we met a long time ago, he was quite the smuggler. Anyway - I need this crate delivered to him, it contains some of the spoils you plundered, as a thanks for the info, as well as what he requested.$B$BSo pal, its that simple, go and talk to him, give him this here crate. You\'ll find him in Ratchet, up the road from the town a bit, him and some friend share a place there with metalworking or something. Catch the boat from the dock here in Booty Bay.", + ["O"] = "Deliver the Goods for Oilfuse to Yig Oilfuse in Ratchet.", + ["T"] = "Delivery for Oilfuse", + }, + [40225] = { + ["D"] = "As much as I appreciate this delivery I know what it means. I made a promise long ago to uphold an end of the bargain. I desired him to pillage the areas I gave him in return for some goods and information.$B$BHe is looking for the killer of Jade, the one who broke up our old crew some time ago, and now that he has fulfilled his end, I will do the same, I aint no rat, I keep my bond.$B$BThe person who organized the hit to break us up went by the name Wally Wisecrack, he now hangs out with those Syndicate Boys, though I am sure \'Slip\' knows that. Once you tell \'Slip\' this is the person who was behind it all, he will no doubt want revenge.", + ["O"] = "Bring the information to \'Slip\' in Booty Bay.", + ["T"] = "The Old Bonds", + }, + [40226] = { + ["D"] = "This man continued to deal and swindle with me even after he brought down my crew, we spoke face to face many times. He killed Jade and took her from my life, we could have conquered the world our crew. I may not live in a palace on Tel\'abim, but I will still get the sweet justice that I have been longing for.$B$BWally Wisecrack is a goon of a human, who resides within Strahnbrad and was closely assosciated with those Syndicate fellows. Yeah the traitorous ones that sold their souls to the orcs, it seems its just in their blood, huh?$B$BFind him in Strahnbrad, kill him, and bring me his Large Looped Earring as proof.", + ["O"] = "Slay Wally Wisecrack, and bring his Large Looped Earring to \'Slip\' in Booty Bay.", + ["T"] = "Wally Wisecrack", + }, + [40227] = { + ["D"] = "Welcome to Stonetalon Peak, a place of harmony with nature, Keeper Albagorm has done well in maintaining the region despite setbacks. I have been working tirelessly for sometime in maintaining the wildlife around here, and I have been having some issues.$B$BThe Twilight Runners of the Peak have been growing more hostile with time, and I fear they may out hunt some of the other wildlife present here. I require from them a single Pristine Twilight Fang, which will be used to conduct research to find any sort of genetic problem, disease, or corruption that may be gripping the population.$B$BYou can find them about Stonetalon Peak, be quick.", + ["O"] = "Collect a single Pristine Twilight Fang for Conservationist Yalus in Stonetalon Peak.", + ["T"] = "Conserving Stonetalon Peak", + }, + [40228] = { + ["D"] = "The Dark Iron Dwarves have been a long standing rival of ours, their attacks against our people have been ruthless. I have come to attempt to bolster our strength in the region, and if we want that to be possible, then we must set our sights on Angor Fortress.$B$BThe place is run by Captain Barlgruf, he has been sent from Shadowforge City to oversee actions here within the Badlands, cut him down, and the rest of them will be aimless. He should be inside Angor Fortress, no doubt nestled with the rest of his lackeys.$B$BKill him, and return to me.", + ["O"] = "Slay Captain Barlgruf within Angor Fortress for Senator Broadbelt in Badlands.", + ["T"] = "Captain Barlgruf", + }, + [40229] = { + ["D"] = "Angor Fortress looms like a dark cloud in the Badlands, from there the Dark Iron can muster immense amounts of power. They are one of the key players in the region for that very reason.$B$BI have been sent from Ironforge to attempt to dissolve some of their grip here, and to do so, we will need to strike hard. I desire you to travel to Angor Fortress just to the north west, and slay those that guard it. Take from them their Shadowforge Shackles they wear, 10 of them in total, and bring them to me.", + ["O"] = "Slay Dark Iron Dwarves around Angor Fortress, and collect 10 Shadowforge Shackles for Senator Broadbelt in Badlands.", + ["T"] = "Angor Fortress", + }, + [40230] = { + ["D"] = "Lake Falathim was a place I spent much of my youth, a place of relaxation and fond memories. Now, it is overrun by the Saltspittle murlocs, who attacked with ferocity and without remorse. Some died during the attack, but I was lucky enough to escape.$B$BIn my haste to flee, I left behind an item of extreme value to me: a book left to me by my Uncle who died during the Battle of Hyjal. In it he wrote about his technique in battle and his experiences regarding the war. I\'ve found much knowledge and wisdom from that book, and I desire to know everything that he had jotted down before his passing.$B$BTravel to Lake Falathim to the southwest, and find my belongings. While you are there, I ask that you avenge my kin: Slay the Saltspittle and bring me their fins.", + ["O"] = "Gather 5 Saltspittle Fins and recover the Greenblade Book.", + ["T"] = "Saltspittle Raiders", + }, + [40231] = { + ["D"] = "This tome holds a great history to the nation of Stormwind, and should be stored as such. A holy warrior fell on this battlefield many years ago, and this tome remains intact. The tomes words are holy scripture, and I would ask it be placed amongst the Cathedral\'s great books.$B$BI ask of you to travel to Stormwind, and speak with Archbishop Benedictus, to see if he would take this book within the Cathedral to be preserved. My mentor would ask this of me, I am certain, let us do our duty.", + ["O"] = "Take the Forgotten Tome to Archbishop Benedictus in Stormwind.", + ["T"] = "The Forgotten Tome", + }, + [40232] = { + ["D"] = "With the tome in my charge I would ask of you to bring a scroll to Watch Paladin Janathos in Sorrowguard Keep. From this scroll I hope to bless him and those underneath his command, for the light to watch over them safely, and deliver them from evil.$B$BWhen you see him, be sure to mention I wish him well.", + ["O"] = "Deliver the Scroll of Blessing to Watch Paladin Janathos at Sorrowguard Keep in Swamp of Sorrows.", + ["T"] = "Returning to Janathos", + }, + [40233] = { + ["D"] = "I would ask one last thing from you, my mentor came from Lordaeron, a kingdom far to the north that is now desecrated and torn beyond imagining. It is filled with the undead that roam freely upon the broken landscape.$B$BWithin this land is an order known as the Scarlet Crusade, remnants of an old paladin order. They are fanatical, and heartless to the core, it is from them I require something.$B$BWithin the Scarlet Monastery, in northern Tirisfal Glades is a mighty Cathedral, it was built well before these zealots time, and it is there my mentor studied the light.$B$BI would ask that you bring to me the Orb of Kaladus, a stone enfused with the power of the light. Ever since my mentor departed from Lordaeron, those holy brigands have kept it to themselves.$B$BEnter the Cathedral, and bring it to me, the light should be wielded by the true of heart, not the black of soul.", + ["O"] = "Venture within the Scarlet Monastery and find the Orb of Kaladus, retrieve it, and return to Watch Paladin Janathos at Sorrowguard Keep.", + ["T"] = "The Orb of Kaladus", + }, + [40234] = { + ["D"] = "Omarion left behind plenty of work and research on various topics, one of which I have taken quite an interest within! Runeblades, Rune Armor, such fascinating things, imbued and powered directly by Dreadlords. I heard that Baron Rivendare fellow had one, but I am seeking the knowledge of imbuing a freshly created blade, and tempering it with great power! If we could unlock such secrets then certainly it would be a new frontier of all sorts of magical crafting!$B$BIf you can figure out a way to create your own Untempered Runeblade I would be more then willing to share my knowledge!", + ["O"] = "Craft an Untempered Runeblade, and return to Craftsman Wilhelm.", + ["T"] = "A New Rune-Frontier", + }, + [40235] = { + ["D"] = "I Wilhelm, am a dwarf of my word, and I will keep my word to unveil this new frontier ahead of us. The first place we should begin to look is Corin\'s Crossing, it is a place over-run by the scourge, and not somewhere I would travel!$B$BA book named \'The Secrets of Darkforging\' may be the first step to uncovering what we seek, it is held by a Jacob Malwright. He was a rather famed smith in his days amongst the living and now walks among the dead. No doubt he still has it on him, or keeps it close by, kill him, bring me the book, let us begin to learn their tricks!", + ["O"] = "Travel to Corin\'s Crossing and recover The Secrets of Darkforging, bring it to Craftsman Wilhelm at Light\'s Hope Chapel.", + ["T"] = "The Secrets of Darkforging", + }, + [40236] = { + ["D"] = ".$B$BThis book holds a lot of information, most of it doesn\'t seem to even relate to what we are doing, I mean, why would we even want Dark Binding Shackles in the first place?!$B$BThere are a few sections that may relate though, one of which is tainted, and twisted by a dark magic, making it unintelligable and frankly, unnerving. The other section seems to be written by a Dreadlord named Lorthiras, who could be of some use.$B$BI would first like to uncover the dark magic, and I believe I know someone who may be of help! Strahad Farsan used to be a friend of mine - we\'re not on the best terms, but he is quite deeply involved with shadowy magic, and demons both.$B$BHe is located in Ratchet, go and find him there, bring him the book.", + ["O"] = "Travel to Ratchet and speak with Strahad Farsan.", + ["T"] = "The Secrets of Darkforging", + }, + [40237] = { + ["D"] = "What you are dealing with here is quite interesting, this book seems to mention quite a lot of patterns all pertaining to Darkforging, of which you will gain very little use. The armor, and weapons the undead use are quite deeply entwined with the very magic that keeps their minions standing.$B$BIf you desire my help, then I would also desire yours, I can uncover what this text reads, and point you and Wilhelm in the correct direction, but this would require a favor.$B$BTravel to Scholomance, and venture deep within. Inside I am looking for an old book that was archived there some time ago, titled \'Fire Beckoning and Command\'.$B$BBring me this book, and I shall do as you have asked.", + ["O"] = "Venture into Scholomance and recover the book \'Fire Beckoning and Command\' for Strahad Farsan in Ratchet.", + ["T"] = "A Favor for Farsan", + }, + [40238] = { + ["D"] = "While you were gone collecting what I asked I took the time to decipher the incoherent text. It was written by a Dreadlord named Lorthiras and contained some insights into the secrets of Rune crafting.$B$BNow, in truth, there is not much to be gained from the text, to be able to temper a Runeblade, one would need to possess the powers that Dreadlords would, and such knowledge is very rarely given out.$B$BWithin the text were mentions of a place that Lorthirus spent much of his time studying in his magic and if you wish to have a chance at tempering the Runeblade then you must seek him out.$B$BI feel like I can not be of further assistance, but I have jotted down the text onto a script for your reading, perhaps you can make more sense of it then me.", + ["O"] = "Find Lorthiras on Azeroth, and speak with him.", + ["T"] = "A Meeting With The Dreadlord", + }, + [40239] = { + ["D"] = "My time here within Shadowbreak Ravine has been a period of thought, and research. I desire to gain knowledge within the fields of magic of the various factions on Azeroth, and see just how far they have come.$B$BAs much as I could infiltrate, and spend effort to gain access to each through time, to sow desent, and chaos, I would much rather recruit you, to do as such for me. If you truly desire to gain knowledge to temper this Runeblade, I will grant it to you temporarily.$B$BFirst, travel to the Upper Blackrock Spire, and from the Rage Talon Fire Tongues, gather me a Rage Talon Charm, Secondly, travel to Dire Maul, from the Ogre Mage-Lords bring me a set Gordok Beads. Finally, from the pits of the Blackrock Depths, gather from a Doomforge Arcanasmith their Doomforge Rod.", + ["O"] = "Gather a Rage Talon Charm from Upper Blackrock Spire, Gordok Beads from Dire Maul, and a Doomforge Rod from Blackrock Depths for Lorthiras in Shadowbreak Ravine.", + ["T"] = "The Will of Lorthiras", + }, + [40240] = { + ["D"] = "Now then, mortal, it is time that we bid eachother goodbye. Once you let the magic I have given you flow from your hands, into the hammer that you will temper, it will no longer be of knowledge to you. I suggest you be careful in what you craft.$B$BI have felt a purpose about you ever since you first came, return to the one who sent you on this path. Inform him of your newfound ability, and you will be instructed of what to do next.", + ["O"] = "With your new found knowledge, return to Craftsman Wilhelm at Light\'s Hope Chapel.", + ["T"] = "Knowledge of Lorthiras", + }, + [40241] = { + ["D"] = "I must say, I am almost in shock of what you say! If that is true then, well we are given a very rare opportunity! The very acts of tempering a Runeblade may, in itself reveal prospects of how it is done!$B$BI must say, already I have learned quite a bit, just from the book you found, and the story of this Dreadlord.$B$BWe are closing in on finishing our adventure friend, we will need materials in order to ready you for this process! You will need 20 Dark Runes, 5 Enchanted Leather, 40 Thorium Bars, and 10 Essence of Undeath.$B$BBring me these items, and we can begin the tempering!", + ["O"] = "Collect 20 Dark Runes, 5 Enchanted Leather, 40 Thorium Bars, and 10 Essence of Undeath for Craftsman Wilhelm at Light\'s Hope Chapel.", + ["T"] = "The Materials of Runeforging", + }, + [40242] = { + ["D"] = "Howdy, and welcome to Flaxwhisker Front newcomer! I am Genzil Spannerlight, in charge of starting new projects and archiving the success and failure of old ones.$B$BI have a new idea that may potentially work, a charged shell to act as either a shield, or barrier to be both protective, and resistant to magic! Of course, we will need some shells first, and we don\'t have a bunch of metal to waste, but there are turtles around!$B$BGo out, and gather me 3 Pristine Lurker Shells!", + ["O"] = "Gather 3 Pristine Lurker Shells for Genzil Spannerlight at the Flaxwhisker Front", + ["T"] = "Shell Shields", + }, + [40243] = { + ["D"] = "For thousands of years I have kept my watch over this place. I have seen the world change around me, and most of the old city be swept beneath the waves. The magic that once ran through this place has been dampened and is almost non-existent.$B$BWith the rising waters my studies have been increasingly difficult. To keep watch over this tower is to protect it, and with the growing threat of the invasive ocean species my time has been more toward survival than study.$B$BI ask for assistance in this matter. Slay the murloc, the hydra and the crab beasts around the area to preserve this tower if even for a moment longer.", + ["O"] = "Slay 5 Storm Bay Warrior, 5 Wave Thrasher, and 3 Makrinni Scrabbler", + ["T"] = "The Keeper\'s Charge", + }, + [40244] = { + ["D"] = "Many months ago, an object of great importance was lost to me. I was fishing along the coastline and studying the patterns of magic behind the tower, a storm had begun to set in, and was getting quite intense. As I packed my belongings and prepared to leave I was ambushed by both murloc and thrasher alike, in the chaos a chest was swept out into the sea.$B$BI may have defeated my foes but I could not find the chest, I could only assume it was washed ashore in the heavy storm. Check along the north eastern shore, it was where the current would take it, try and recover this chest.", + ["O"] = "Search the shoreline for the lost Eldara Chest.", + ["T"] = "The Keeper\'s Possession", + }, + [40245] = { + ["D"] = "I have communed with those closest to me once again, and I am thankful they are safe. More work needs to be done, and hopefully you can be of assistance to me. The Eldarath Harmonization Gem was stolen a long time ago, a band of Naga Raiders led by one named Najhaz. He was able to break my seal upon the tower door and take the Harmonization Gem before I could return to stop him.$B$BIf we Keepers of Azshara are ever meant to travel long distances within the area, this Gem will need to be returned. No doubt that Najhaz the Raider will be among his kin along the shore to the west, kill him, and reclaim the Harmonization Gem for me.", + ["O"] = "Search for Najhaz the Raider, kill him, and reclaim the Eldarath Harmonization Gem for Keeper Iselus at the Tower of Eldara in Azshara.", + ["T"] = "The Eldarath Harmonization Gem", + }, + [40246] = { + ["D"] = "The Harmonization Gem is something I had figured I would never retrieve, and now with it, we can begin to make a staff that can transport you to the others. I have lost full communication with them for some time, and even relaying messages, well, is a long process.$B$BThe Satyrs of Legash are a recent arrival, and they hold some magical ability. They have been known to carry Aged Deep-Rods, of which I will need one, being I do not have the materials readily available to enchant or imbue a staff for our purposes.$B$BYou can find those demons to the north west, find from them an Aged Deep-Rod, one of them must carry one.", + ["O"] = "Find an Aged Deep-Rod from Legash Satyrs for Keeper Iselus at the Tower of Eldara in Azshara.", + ["T"] = "Aged Deep-Rod", + }, + [40247] = { + ["D"] = "With the Eldarath Harmonization Gem, and the Aged Deep-Rod I can begin to construct a Staff of Eldara, it will take some channeling of my energy, and the tower to attune it with the region. I simply ask for your patience as I bind the two together.", + ["O"] = "Wait for Keeper Iselus to craft the Staff of Eldara.", + ["T"] = "Staff of Eldara", + }, + [40248] = { + ["D"] = "You and I were once citizens of Lordaeron, $N. We are no strangers to the forests, and likewise, to the wolves that lurked in the shadow of night. Terrified of their wailing howls.$B$BYet now, even they have succumb to the corruption of the Scourge plague, faring no better than we. As you can see, Blackpaw here is my loyal pet that I keep ever by my side, a darkhound I tamed by no special skill. The Forsaken need only sheer force of will to dominate.$B$BYou will find that the creatures of this land vary in how they respond to our... condition. While there are those who think nothing of the smell of death, some may seek to make a meal of a carcass like yours. For this reason, I have made special preparations for our Forsaken kin who seek a beast of their own.$B$BI do not impart this gift lightly, $N. Show me you can dominate wild beasts without it, first. Go, return with a Decrepit Darkhound.", + ["O"] = "Use the Taming Rod to tame a Decrepit Darkhound. Practice your skills, then return the Taming Rod to Liott Maneskin in Brill.", + ["T"] = "Taming the Beast", + }, + [40249] = { + ["D"] = "The darkhound was but the first of your trials, hardly an appropriate test of your will. Nonetheless, you have earned some respect. The next beast you will subdue will not be so easily won over.$B$BThe duskbats of Tirisfal are large, gruesome beasts who were drawn here by the stench of death all around. They are capable of growing large enough to be used for transportation akin to the gryphons of the dwarves of Khaz Modan. Their screech can bring agony even to the undead, making them formidable foes.$B$BThis also makes them ideal allies. Every beast in this world has adapted its own unique means of fighting and defending itself. Fight beside them, learn from them, never hesitate to adapt so long as your mind still reigns over your diseased body. The beasts, too, will learn from you and adapt.$B$BStill, accepting such unnatural abberations as us may prove more difficult. Find a Greater Duskbat, exert your will, and bring it to me.", + ["O"] = "Use the Taming Rod to tame a Greater Duskbat. Practice your skills, then return the Taming Rod to Liott Maneskin in Brill.", + ["T"] = "Taming the Beast", + }, + [40250] = { + ["D"] = "As you can see, hardly a living creature remains in these forsaken lands. Such as it is, your next task is to bring under your sway another victim of the Scourge plague. An undead pet is not so easily conquered, however.$B$BLordaeron once saw brown bears migrate from Silverpine in the summer, hiding in our forests and scavenging the farmer\'s crops. Those that remained during the plague are now here forever. Having broken the cycle of life and death like yourself, they are lost, confused, resentful.$B$BAs your skill grows, so too does that of your beasts. Yet for a creature no longer of the living, it will take great patience and dedication to reach deep into their wayward minds and find that lingering spark of intellect. Only then can you train it.$B$BThe bear is a strong companion who will stand between you and harm, ferociously keeping your foes at bay that you may shoot them where they stand. Find a Plagued Bear, awaken its mind, and bring it to me.", + ["O"] = "Use the Taming Rod to tame a Plagued Bear. Practice your skills, then return the Taming Rod to Liott Maneskin in Brill.", + ["T"] = "Taming the Beast", + }, + [40251] = { + ["D"] = "Insom\'ni? Is that what he goes by now? I sensed a purpose within your mind as you approached me, and I wondered why it seemed so familiar. This necklace belongs to one named Insomnius, and no matter what he goes by he should remember the reasons of why he was exiled.$B$BRegardless, I promised that I would keep my word. Take this necklace to him, and tell him to not contact me again, for any reasoning. I say this with caution traveler, Insomnius was exiled from our kind for having ambitions that were beyond our tasks, and for dabbling in matters that were not his to interfere.", + ["O"] = "Return the necklace of Insomnius to Insom\'ni on Kazon Island.", + ["T"] = "Necklace of Insomnius", + }, + [40252] = { + ["D"] = "The Way-Stones once allowed us Keepers to travel great distances with ease, they were plentiful within the city, and now very few of them remain. To the south west is the Temple of Arkkoran as it is now known, this used to be a place of great magical energy. Within one of the exterior towers lays a Way-Stone, its energy linked to Keeper Laena.$B$BGo and find the Way-Stone, and press the staff against the crystal, you will find yourself transported across Azshara, and before another of my kind.", + ["O"] = "Find the Way-Stone at the Temple of Arkkoran, activate it, and speak with Keeper Laena in Azshara.", + ["T"] = "The Way-Stones of Old", + }, + [40253] = { + ["D"] = "Welcome to my humble abode, I have kept my duty upon this spire and will continue to do so. Now that the Way-Stones are restablished we can begin to make our presence within the region more known.$B$BTo the southwest is the Temple of Zin-Malor, nestled within the Ruins of Eldarath, it is currently inhabited by the twisted Naga. Within the Temple of Zin-Malor lays secrets that they will never figure out, and that I need you to uncover.$B$BDeep inside the Temple, you will find a distinct stone, etched with bright runes of an even more ancient language. This stone, is known as the Ashan Stone, when you see it, speak the following \'Tizah Ashan Dal\'asha\'. This magic will once again invigor the long inactive Ley-Lines that stretch through Azshara.", + ["O"] = "Enter the Temple of Zin-Malor and find the Ashan Stone, and activate the dormant Ley-Lines for Keeper Laena in Azshara.", + ["T"] = "Restoring the Ley Lines", + }, + [40254] = { + ["D"] = "Us Keepers could not fulfill the lengths of our duties, and I imagine we will not last forever, one day the Tower of Eldara will lose its master, and perhaps one day I may fall as well. I know not what has happened to the others, though I still hope they are alive and well.$B$BIf we are to fulfill at least one of our duties, then we shall dispel much of the great magics buried beneath the waves, under the sands. The last thing we intended was for something much more foul to untangle the web of secrets we created.$B$BI must thank you again $N, for everything you have done, you have assisted us in a time of great need, and perhaps now we may last many more years, especially with the energy of the Ley-Lines flowing, and old secrets dispelled. Me and Keeper Iselus have only you to thank, without you, we would have been aimless in our goals.", + ["O"] = "Travel to Dire Maul, and slay the great evil being that the Highborne are leeching energy upon, gather from it Pure Ley Essence, and return to Keeper Laena in Azshara.", + ["T"] = "Keeping Secrets", + }, + [40255] = { + ["D"] = "A while ago a band of soldiers had departed out to the Swamp of Sorrows. They were tasked with the reclamation of an old keep that laid within the mountains near the western edge of the swamp. Paladin Janathos was the leader of this group, and asked me to say for him and his men a blessing.$B$BNo doubt they will need help out there and perhaps a fresh set of hands could be welcomed. Sorrowguard Keep should be just near the entrance to Deadwind Pass, infact it looms over it. It was once used to protect the kingdoms border, believe it or not.$B$BIf you see Janathos, tell him I said hello!", + ["O"] = "Report to Watch Paladin Janathos at Sorrowguard Keep in Swamp of Sorrows.", + ["T"] = "To Sorrowguard Keep", + }, + [40256] = { + ["D"] = "The Blackrock Clan belongs to the Old Horde, a very large and dangerous enemy to Orgrimmar. Do not be fooled by the distance between the Blackrock Mountain and Orgrimmar. Should the Blackrock Clan ever gain a sizeable amount of strength, they will come to destroy us as well. The Old Horde consists of many factions that remained here on the Eastern Kingdoms during their fights in the First and Second Wars and are a grizzled enemy that should not be underestimated.$B$BI have been sent here directly from Orgrimmar to be a damper on the Blackrock Clan, and you shall help. It is the honor of the Horde that is at stake after all.$B$BGather me 20 Blackrock Signets, worn by all members of the Blackrock Clan in the region. Kill them, take their signets, and bring them to me.", + ["O"] = "Gather 20 Blackrock Signets from Blackrock Orcs for Tarsokk in Flame Crest.", + ["T"] = "Blackrock and Roll", + }, + [40257] = { + ["D"] = "The Blackrock slayers are a most fearsome foe. They have been known in the past for cleaving down entire regiments of human footmen during the old war. It is them I fear more than any on the field of battle.$B$BThey must be dealt with, and quickly. You can find them all over the Burning Steppes, mostly concentrated to the west at the Blackrock Stronghold, but you may also see them in the Pillar of Ash as well.$B$BGo with honor, and kill them in the name of Thrall.", + ["O"] = "Kill 10 Blackrock Slayers and return to Tarsokk in Flame Crest.", + ["T"] = "Blackrock Slayers", + }, + [40258] = { + ["D"] = "The Maul Orb was once a powerful artifact to our tribe, but we lost it a long time ago.$B$BIn olden days we were once part of the larger Gor\'dosh tribe and dominated both Gillijim and Lapidis. The Maul Orb was created in those days, and since the tribes split, it has been lost in their hands.$B$BThere is no doubt that the Maul Orb still exists, tucked away within the Gor\'dosh Heights located on the northwestern edge of Lapidis Isle, far to the north. Go there and recover it.", + ["O"] = "Reclaim The Maul Orb from Gor\'dosh Heights on Lapidis Isle and return to Embergut at Maul\'ogg Post.", + ["T"] = "The Maul Orb", + }, + [40259] = { + ["D"] = "I did some digging over the book a bit ago, it would appear that crafting of runic weapons and armor requires a Dark-Rune Anvil. I certainly don\'t have any sort of thing around here, but I do know a place that may.$B$BWithin the depths of Stratholme is a large slaughterhouse, it is where Baron Rivendare has called home for the time being. The Dark-Rune Anvil should be located there, and from it, you shall temper the blade!$B$BI have learned a lot, and I thank you plenty friend! I will continue my studies and perhaps one day we may be able to outright nullify our enemies equipment through my research.$B$BGo, and venture into the depths of that place, and claim what is yours, oh and if anyone asks, we haven\'t spoken!", + ["O"] = "Reach the Dark-Rune Anvil deep within Stratholme, with it, temper the Untempered Runeblade and claim your rightful prize.", + ["T"] = "The Dark-Rune Anvil", + }, + [40260] = { + ["D"] = "Ah, a very promising hunter you are, but I am afraid there\'s nothing left that I could teach you, as you\'ve kept doing your tasks to serve the Forsaken and our queen, I suppose it\'s time for you to advance to Brill.$B$BAfter you\'re done with all your tasks here, seek Dark Ranger Lanissa, she will be in a tent in the town of Brill.$B$BShe will teach you whatever you need to know to continue your mission, these dark rangers were brought with our Lady Sylvanas from Quel\'thalas, as per their name they are very skilled when it comes to marksmanship.$B$BFarewell, and remember to stick to the shadows, for the Forsaken.", + ["O"] = "Speak with Dark Ranger Lanissa in Brill.", + ["T"] = "A Dark Ranger\'s Mastery", + }, + [40261] = { + ["D"] = "Greetings, dark ranger aspirant. You appear more than capable of handling a beast to claim as your own. Though I may train you in the ways of the hunter, it is not I who can teach you mastery over beasts.$B$BYou must speak to Liott Maneskin in Brill. Only he possesses the knowledge you seek to enthrall the creatures of this wretched land.", + ["O"] = "Speak with Liott Maneskin in Brill.", + ["T"] = "The Hunter\'s Path", + }, + [40262] = { + ["D"] = "You have learned how to dominate beasts by your own skill, but you must also learn to train them. Understand that some beasts will not accept you as their master. As an undead being you may seem to them a delicious snack, or repulsive to their instinctive necrophobia.$B$BAided by an incantation devised by the Cult of Forgotten Shadow, we can soothe the mind of a beast, altering its perception of you as vibrant and healthy. Only use it on creatures that your condition repels, that are stricken with terror and distress by what you are.$B$BThe one who can teach you the incantation as well as the means by which to train your beasts is Diane Willowfield. You will find her in the War Quarter of the Undercity. You will gain a variety of potent skills on your journey that will serve you and your companion well, but without her assistance, you cannot hope to make proper use of them.$B$BGo now! Show the living that the Forsaken are no mere walking corpses. Dark Lady watch over you.", + ["O"] = "Talk to Diane Willowfield in the War Quarter of the Undercity to learn the incantation to tame beasts.", + ["T"] = "Taming the Beast", + }, + [40263] = { + ["D"] = "The Dark Ranger, Lanissa, advised me to call on you specifically for a task after you\'d finished your training. She and I agree that this will be a suitable demonstration of your skill and dedication to the Forsaken\'s cause.$B$BEven before the plague struck, our current mayor still presided over Brill. Boltrus was the mayor\'s assistant, a quiet yet competent man. He was sweet on one of the girls from the surrounding farms, and there were rumors about a clandestine rendezvous.$B$BAlas, touched by the plague and beyond the salvation of the Dark Lady, Boltrus haunts Tirisfal as a Scourge fiend. The mayor has asked that his suffering be put to an end. You can find him within the barn of the Balnir Farmstead. Perhaps he clings to memories of nights spent in that barn with her.$B$BFind Boltrus, end his suffering, and bring his remains back to Dark Ranger Lanissa. Perhaps then he can find peace. Your mercy will be rewarded.", + ["O"] = "Hunt Boltrus and bring his head back to Dark Ranger Lanissa in Brill.", + ["T"] = "A Demonstration of Skill", + }, + [40264] = { + ["D"] = "Hello, and welcome to Maul\'ogg Refuge. We are a battered people, stuck in a constant fight for dominance. I am Haz\'gorg, and I am the head of the seers.$B$BLong have I seen the destruction of my people, foretold in long fever dreams and visions within the dark hours of twilight. I fear that the constant state of warfare we are engulfed in will do naught but bring our end.$B$BI ask of you to speak with Lord Cruk\'Zogg on my behalf, tell him that I believe this foolhardy Aggression will bring naught but ruin.", + ["O"] = "Convince Lord Cruk\'Zogg to end his foolhardy aggresion on behalf of Haz\'gorg the Great Seer.", + ["T"] = "The Maul\'ogg Crisis I", + }, + [40265] = { + ["D"] = "If there is to be a chance for my people then I must conjure a great vision, to do as such will require materials from across the island. I ask of you to gather me the following items. 10 Basilisk Eyes from the Basilisks, 6 Crawler Pincers from the Crawlers, and 3 Deepsnap Tails from the crocolisks.$B$BOnce you have gotten these materials for me, I can begin to see what must be done.", + ["O"] = "Gather 10 Basilisk Eyes, 6 Crawler Pincers and 3 Deepsnap Tails for Haz\'gorg the Great Seer in Maul\'ogg Refuge.", + ["T"] = "The Maul\'ogg Crisis II", + }, + [40266] = { + ["D"] = "I have seen, a great many things, a great darkness that has enveloped not just this island, but all around us. My people did the bidding of a greater power, and followed it into the darkness willingly. We were nothing more then pawns until our demise.$B$BI did, however, see more than just misery, I saw the Seer of the Gor\'dosh ogres, a once old friend of mine. Perhaps it is he that can offer some wisdom, or suggestion on how to continue, maybe it is he, who has the answers.$B$BSeer Bol\'ukk resides within the Gor\'dosh Heights amongst the rest of his tribe, you should find him on Lapidis Isle far to the north, the Gor\'dosh Heights rest at its north western side.", + ["O"] = "Speak with Seer Bol\'ukk at the Gor\'dosh Heights, and return to Haz\'gorg the Great Seer with information.", + ["T"] = "The Maul\'ogg Crisis III", + }, + [40267] = { + ["D"] = "So much thinking, and so many dead ends, I do not think that I possess the abilities, or magics strong enough to bring Lord Cruk\'zoggs mind to a state of ease.. Or in such a way that the rest of the tribe wouldn\'t notice.$B$BI do, however know of a powerful being that potentially could be of assistance to me. There is a troll of mystique located on Kazon Island to the north, nestled between Gillijim and Lapidis. He is one of considerable power of which I met long ago, and spoke of in fever dreams of the night.$B$BHis powers were once strong enough to do battle with a great sea beast and destroy it with ease. If there is any that could make such a spell, it would be him.", + ["O"] = "Find Insom\'ni on Kazon Island.", + ["T"] = "The Maul\'ogg Crisis IV", + }, + [40268] = { + ["D"] = ". I could certainly do this, though I ask why to you, why would I? My magic is that of great power, and something I would not freely give to you.$B$BIf you desire my help then I would desire a favor. There is a satyr that I met quite some time ago, one who walks without care even to this day. He is a vile, trecherous snake of a creature who needs to be dealt with in a manner less then savory.$B$BLet us just say, his actions have wronged me greatly.$B$BTravel to Felwood, to the Ruins of Constellas, you will find Pethax Blackhorn there, it is his horn I desire from his battered corpse.", + ["O"] = "Obtain Pethax\'s Horn for Insom\'ni on Kazon Island.", + ["T"] = "The Maul\'ogg Crisis V", + }, + [40269] = { + ["D"] = "To create a spell of such magnitude will require a few items, the first of which shall be relatively easy to obtain. I require a Gorilla Ligment from Un\'goro Crater, its essence of power will be used to conduct the sheer strength of the spell and channel its abilities onto Lord Cruk\'Zogg.$B$BYou can find Un\'goro Crater deep within Kalimdor, it is a place of danger, so I would watch your step mortal. Return to me with a Gorilla Ligment from the apes there.", + ["O"] = "Obtain a Gorilla Ligment from Un\'goro Crater and return to Insom\'ni on Kazon Island.", + ["T"] = "The Maul\'ogg Crisis VI", + }, + [40270] = { + ["D"] = "I have had many encounters within the Temple of Atal\'Hakkar, long ages spent gazing upon its walls. It is a place of darkness and foul energies that have corrupted its once defenders. The Prophet Jammal\'an speaks his foul, misbegotten words into the decaying remains of his people that call this place home. I desire you to venture into the catacombs of this place, to find the Prophet and gather from him the Atal\'ai Rod. It should be kept close to where this troll channels his magic.$B$BThe Atal\'ai Rod holds power in the magic of control, and should assist us in subjugating Lord Cruk\'zogg.", + ["O"] = "Venture into the depths of the Temple of Atal\'Hakkar and gather the Atal\'ai Rod, bring it to Insom\'ni to finish the spell.", + ["T"] = "The Maul\'ogg Crisis VII", + }, + [40271] = { + ["D"] = "With the elements recovered, and the Atal\'ai Rod in posession, I can now begin to manifest my energies into the creation of an elixir. This elixir will bring the mind of Lord Cruk\'Zogg into the hands of Haz\'gorg to do as he pleases.$B$BThis will require some concentration on my part, so I do ask you mortal, to keep your mouth quiet while I work.", + ["O"] = "Wait for Insom\'ni to finish his magic, then return to Haz\'gorg the Great Seer.", + ["T"] = "The Maul\'ogg Crisis VIII", + }, + [40272] = { + ["D"] = "It would appear the time has come, you have done extremely well in everything I have asked, but now I must ask you to do what is required for the good of my people. Long have we suffered, not at the hands of our enemies, but at the hands of our leadership.$B$BIf there is to be a future for the Maul\'ogg then it must be a future of reasoning, we cannot secure ourselves a place within the Horde if we are constantly engaged in self destructive warfare.$B$BBring the Elixir of Insom\'ni to Lord Cruk\'zogg, inform him that it is a potion of great power that I created for him. When all is done, return to me.", + ["O"] = "Give the Elixir of Insom\'ni to Lord Cruk\'zogg to sway his mind, and then return to Haz\'gorg the Great Seer in Maul\'ogg Refuge.", + ["T"] = "The Maul\'ogg Crisis IX", + }, + [40274] = { + ["D"] = "The Southfury River wasn\'t always so bad, not when we first settled here. The floods and rough waters made for a test of will against the natural forces of our new home, but something has changed recently that caused a massive increase in crocolisks!$B$BAll I want to do is fish all day, but now I have to fight off beasts and spend more time with a weapon in hand than enjoying my fishing spot.$B$BBefore you ask, I\'ve done enough fighting for one lifetime from the siege of Durnholde to the battle of Mt. Hyjal. I just want to relax and contribute this way. Go out and secure my fishing spot and I\'ll give you one of my handcrafted fishing rods.", + ["O"] = "Slay 8 Dreadmaw Crocolisks for Grubgar at Southfury River in Durotar.", + ["T"] = "[Deprecated] A Bad Day to Fish!", + }, + [40275] = { + ["D"] = "It is good to meet a fellow explorer upon these lands, one who enjoys the same glory of finding the unknown and uncovering secrets. We share a bond in exploration and adventure and I feel obligated to warn you of a danger off the coast, one that perhaps you may assist with.$B$BThe Deeptide Naga are a menacing force, who came here for an unknown motive and currently hold an island off the coast of Gillijim to the south west. It is there that they have a sanctum they call home, and use it as a base of operations to strike out and attack people like you and me. I was lucky to escape the hands of these slithering marauders and live to tell the tale, but others are not so lucky.$B$BI ask you to travel to the Deep Tide Sanctum, and slay the Naga there, so that one day the horde may establish control on these islands, and so that we may continue our exploration unharmed. Bring me the bracelets they wear as proof.", + ["O"] = "Gather 10 Deeptide Bracelets from Deeptide Naga for Explorer Fangosh in Maul\'ogg Refuge.", + ["T"] = "Deeptide Sanctum", + }, + [40276] = { + ["D"] = "You did well, you have the tenacity and strength of the most well rounded explorers. If we truly want the Deeptide gone, and to free these islands of their presence we must become more bold. Their leadership are nestled within the Deeptide Sanctum, and need to be rooted out.$B$BReturn to the sanctum, and bring retribution upon Princess Shasza, and Tidelord Hakash, they need to be slain for their crimes and hostility. Trust me, there is no reasoning, or diplomacy that can be done, finish this, and perhaps the Naga will disperse.", + ["O"] = "Slay Tidelord Hakash, and Princess Shasza for Explorer Fangosh in Maul\'ogg Refuge.", + ["T"] = "Destroying the Deeptide", + }, + [40277] = { + ["D"] = "With their forces weakened, it is as good as time as any to attack them directly. Before I changed into... this...$B$B$B$BI was one of the commanders here, before... That\'s why I know their camp will prove to be a difficult challenge, even while weakened. I recommend that you call for aid when attacking their base. Beware that your primary goal is to end the lives of both Captain Silas, and my usurper sister Faliona too. Do this for me, and I promise that you will be well rewarded.", + ["O"] = "Slay Duchess Faliona, Captain Silas, 8 Remnants Footmen and 4 Remnants Priests for Duchess Grelda.", + ["T"] = "Fall Of The Usurper", + }, + [40278] = { + ["D"] = "$R, I have a task for you. A rather important one.$B$B.$B$BIn here lies the deed to the Tirisfal Uplands. You see, before the scourge invaded, my wife Grelda was supposed to inherit these lands from her father. On the coronation day, the contents of this box were supposed to pass on into her possession.$B$BMany moons have passed, and yet my courtiers and I had no luck in opening the lock on this thing. But during my research, a name came up. Vathras Millson. He specializes in these kinds of things. Head to Steepcliff Port and find him; I heard he owns an Inn now.$B$BOh, and do be careful. The box is worth more than your life.", + ["O"] = "Bring Darlthos\' Jewelry Box to Vathras Millson in Steepcliff Port.", + ["T"] = "Darlthos Heritage", + }, + [40279] = { + ["D"] = "Do you realize what you are holding in your hands!$B$B$B$BMy, my, I wanted to inspect this beauty for a long time. No one aside from the royal family of House Darlthos has ever seen the contents of this box before. You see this sigil? It is an old yet powerful lock that protects the box from being harmed and opened in any way other than through the original incantation that sealed it.$B$BSkilled as I am, without the incantation I will not be able to assist the Duke with this task. Send the Duke my regards and wish him luck in his endeavors, will you?", + ["O"] = "Return Darlthos\' Jewelry Box to Duke Nargelas in Glenshire and inform him of your findings.", + ["T"] = "A Different Type of Lock", + }, + [40280] = { + ["D"] = "Let me think for a second. Hmm... Why, yes! I have an acquaintance of sorts in the Undercity. The name is Pierce Shackleton. He calls himself a mage, and he owes me a favor, or rather he owes my wife a favor. Take this letter to him along with the box and find out what can be done with it.", + ["O"] = "Take the Box and letter to Pierce Shackleton in the Undercity Magic Quarter.", + ["T"] = "Ways of Magic", + }, + [40281] = { + ["D"] = "I have certainly not seen this kind of lock for quite a while. And now I can see why House Darlthos surrounded this whole ordeal in secrecy. What we have here is a type of blood magic. Although not as dangerous as some, it certainly requires blood of the family member to activate it. Not many know how to wield this magic; the last mage I knew who used this is long dead! $B$B Melenas used to have a section of his own in a library deep in the Shadowfang Keep. Perhaps there you can find something of use. But beware, that place is overrun by the savage Worgen, so it is better if I hold on to this box until your return. We wouldn\'t want to lose both you and the box should you fail, right?", + ["O"] = "Find Melenas\' Belongings in the Shadowfang Keep Library and return them to Pierce Shackleton in the Undercity.", + ["T"] = "Into The Jaws", + }, + [40282] = { + ["D"] = "All this knowledge, just left to rot. You, my friend, have brought me a valuable gift. But I digress. You probably just want to find out how to open that box. Let\'s see.$B$B$B$BThere you are. Hah, it is easier to do than I thought. You will need to take these instructions to Duchess Grelda as her blood is required to open the box. I heard that the Duchess is currently residing in a manor alongside the southern road from Tirisfal Uplands. Be well, and if you ever feel like you want to delve into another dangerous place to recover old magical items, do let me know.", + ["O"] = "Bring the scroll and the box to Duchess Grelda.", + ["T"] = "Darlthos Legacy", + }, + [40283] = { + ["D"] = "It may not look like it, $C, but we are in middle of a warzone. Highborne ghosts that linger in the forests clash with the Naga, for reasons I don\'t understand, and I don\'t want to.One thing I know, is that they are a danger for our outpost. They may be fighting each other for now, but it won\'t last forever. We should strike now, when they are weak.Go to Ruins of Eldranath. Kill the Naga, eliminate the Highborne. Show them, that Bloodfist Point is to be reckoned with.", + ["O"] = "Slay 6 Lingering Highborne, 10 Spitelash Serpent Guards, and 8 Spitelash Sirens for Dag\'grak Bloodfist at Bloodfist Point in Azshara.", + ["T"] = "Azsharan Front", + }, + [40284] = { + ["D"] = "South of Bloodfist Point, Satyrs have created an encampment. It has been a splinter in the eye for Bloodfist Point since the first day we arrived. Go, annihilate them, and bring me their horns.$B$BDo not be merciful, as they wouldn\'t be for you. Kill all of them, leave no vile Satyr standing.", + ["O"] = "Obtain 12 Legashi Horns for Daggrak Bloodfist at Bloodfist Point in Azshara.", + ["T"] = "Blood and Glory!", + }, + [40285] = { + ["D"] = "My name is Katokar. Katokar Bladewind. I was a Blademaster of the Burning Blade. Now, I am a Blademaster of the Horde.$B$BI came to Azshara to avenge the death of a fallen comrade. During the Third War, he was here, fighting the Burning Legion. In the end, we won. Archimonde was defeated. But my friend died in a glorious battle.$B$BI have killed hundreds of demons since I came here, yet I am still restless. I need to find a Blade that belonged to him, he was a Blademaster like myself. A Blademaster has to be buried with his blade. Yet, my progress thus far has been fruitless. I found his broken corpse near the eastern shore, I know of a great tower watched by a keeper on the far eastern coast of Azshara, perhaps he may know more.", + ["O"] = "Speak with the \'keeper\' on the far eastern coast of Azshara, and return to Katokar with news.", + ["T"] = "A Blademaster\'s Request", + }, + [40286] = { + ["D"] = "The Temple of Arrkoran...$B$B.$B$BThis must be the place $N, it must be. I have no other leads, venture deep within the Temple, and seek out his blade, if it is anywhere, then it must be there. You can find this temple far to the south east, it is massive, and cannot be missed. Be careful in your searching, I am sure a terrible evil lurks inside.", + ["O"] = "Search for the sword that could have belonged to a fallen Blademaster inside the Temple of Arrkoran.", + ["T"] = "The Search for the Blade", + }, + [40287] = { + ["D"] = "Our Blades, they do not break easily. It was cut into two pieces on purpose.$B$BFrom all of the possible forces in Azshara, only the Naga have the technology to do so. Maybe, just maybe, they still have the second part$B$BIf it is anywhere, it must be located on the Shattered Strand, no doubt kept as some trophy, or prized possesion. Locate it, and bring back the edge of the sword to me!", + ["O"] = "Search the Shattered Strand in search of the second part of the Blade for Katokar Bladewind at Bloodfist Point.", + ["T"] = "The Search for the Edge", + }, + [40288] = { + ["D"] = "Now, there is one last step, the Blade needs to be reforged.$B$BWe will need a powerful conduit, a source of unimaginable fel energy to make the blade whole again. This is the way of the Blademaster. Venture to the forests of Felwood where demons still lurk. Gather their Fel energies and return to me, so we can reforge the Blade.$B$BThe demonic sanctuary of Jaedenar will be a place that holds such energies, look there.", + ["O"] = "Gather 10 Fel Conduits from demons in Felwood for Katokar Bladewind at Bloodfist Point in Azshara.", + ["T"] = "Refueling the Blade", + }, + [40289] = { + ["D"] = "The last thing I require from you is to honor the dead, you have done much work, work that I could not fulfill, so I ask you to honor the forgotten for me. I will work to reforge the blade, though it will take quite a while until it is perfectly balanced.$B$BSpeak with me, and utter the name of the fallen so that his spirit may walk freely amongst his fellow warriors, so that you may pass on his warrior spirit.$B$BHe was named \'Tak\'gar Deephate\'.", + ["O"] = "Speak with Katokar Bladewind, and utter the name of the dead to honor them.", + ["T"] = "To Honor the Forgotten", + }, + [40290] = { + ["D"] = "Bah! You, yes, you $C! Why are you standing there like a drunk peon? You want to stay here, get to work!$B$BWe need hides, weapons, wood, everything! But don\'t worry, old Nulda won\'t force you to build a second Orgrimmar here. Let\'s start small, bring me some meat from the local stag, let us see what you are made of.", + ["O"] = "Bring 10 Stag Flanks from the Mosshoof stags to Nudla at Bloodfist Point.", + ["T"] = "Food for Bloodfist Point", + }, + [40291] = { + ["D"] = "Anyone could kill a stag, they are but deers with sharp horns! Hippogryph, on the other hand, is a different thing. Do you think you have what it takes? If so then bring me a handful of Thunderhead Claws. Thunderheads are local Hippogryphs, so wild and ferocious, that even the accursed Elves stay away from them, their claws would make great improvised weapons should things get rough.", + ["O"] = "Obtain 16 Thunderhead Claws.", + ["T"] = "Claws for Bloodfist Point", + }, + [40292] = { + ["D"] = "Hail, $C, do you feel it? The magic, crackling around us, ever powerful, even after thousands of years. This place used to be Zin-Azshari, capital of the Night Elf Empire.$B$BNow, its nothing more than a wasteland, occupied by the Naga or even more sinister forces. However, I had a vision, great disturbance comes to this place, and if we do not stop it, the consequences will be... dire.$B$BUnfortunately, my vision was unclear, enveloped in the mists. I need to enter a shamanistic trance to see clearly. Yet, I lack proper ingredients to enter such a state. I would gather them myself, but I cannot leave the outpost for now. I dont need much, only Mosshoof Antlers to pulverize, and a dozen Highborne Essence from the Highborne spirits.", + ["O"] = "Gather 5 Mosshoof Antlers and 12 Highborne Essences for Farseer Yhargosh at Bloodfist Point in Azshara.", + ["T"] = "Disturbance in the Air", + }, + [40293] = { + ["D"] = "I am ready, $C. Let us go outside to commune with the spirits.", + ["O"] = "Wait until Farseer Yharg\'osh finishes the ritual.", + ["T"] = "Ritual of the Farseer", + }, + [40294] = { + ["D"] = "During my vision, I saw a great Dragon, flying over Azshara. I don\'t know much about them, but our Druid friends here in Bloodfist Point should be more knowledgeable. Share my vision with them, they will know what to do next.", + ["O"] = "Tell Talom Stridecloud about the Farseer\'s vision.", + ["T"] = "Dragons of Azshara?", + }, + [40295] = { + ["D"] = "We came to Azshara to heal these lands from remnants of the Legion\'s corruption. What we found here however, was different than expected. You see, young $R, demonic corruption is not the biggest problem here.$B$BThe land cries out for help. Some kind of evil forces have settled near Lake Mennar. They drain the very essence of the Earth, consuming magic and nature alike. Nagas or satyrs are not that powerful, they could not do that. Blue Dragonfilght, on the other hand...Please, go and see what is happening at Lake Mennar, the future of Azshara may be in your hands.", + ["O"] = "Scout Lake Mennar.", + ["T"] = "Mystery of Lake Mennar", + }, + [40296] = { + ["D"] = "Archdruid Runetotem needs to hear about this! He will know what to do and how we should approach them. Go, fly to Thunder Bluff and tell the Archdruid about what you have seen here. Make haste, time is of the essence.", + ["O"] = "Report to Hamuul Runetotem.", + ["T"] = "Report to the Archdruid", + }, + [40297] = { + ["D"] = "The Blue Dragonflight has been in Azshara since time immemorial, but their recent actions seem strange. They had been there to safeguard ancient artifacts, not drain the leylines of life and magic. In better, simpler times, I would advise you to contact them and try to negotiate.$B$BThose times are over, and we need to act. Go back to Azshara and gather a strong party. Venture to Lake Mennar, and slay their kin. This will thin the numbers in their ranks, and we will have time to prepare a better response to their actions.$B$BA sad thing that the Dragonflight has begun to mess with the very ways of Azsharas natural magic. When it is done, return to Yhargosh at Bloodfist Point.", + ["O"] = "Slay 7 Blue Scalebanes, 3 Draconic Magelords, and 7 Draconic Mageweavers.", + ["T"] = "Stop the Dragonflight", + }, + [40298] = { + ["D"] = "The wyvern are native to Kalimdor and can be found throughout much of our land. They have proven to be loyal companions to our wind riders. I remember the days when we first ensured the help of these beautiful creatures.$B$BIn truth, they have been a gift from the Earthmother, strengthening the bond between the orcs and my people; it\'s not an exaggeration to say that without them we wouldn\'t be where we are today.$B$BBristlefur, here, is already tame. She won\'t attack you, rest assured.$B$BThe truth is the poor girl seems to be a bit bored ever since I forgot to bring her favorite toy with us to Durotar. If you have the time, young $c, please find her a new toy and something to snack on. In return, I\'m sure she would be happy to take you to the skies for a short while.", + ["O"] = "Bring 5 Chunks of Boar Meat, 3 Mutton Chops and 1 Bone Chew Toy to Bristlefur in Razor Hill.", + ["T"] = "[Deprecated] Red Skies of Durotar", + }, + [40299] = { + ["D"] = "Old stories depict that these shoulders were once worn by Uther Lightbringer himself, shining brighter than the rising dawn. Even if it was lost in time we can remake them, in the right conditions. $B$BIf you desire to smite your enemies with righteous justice and glorious zeal, then you must find these ingredients: $B$B* The pristine hide of the Beast.$B$B* Crusader orbs.$B$B* Arcanite Bars.$B$B* Medallion of Faith.$B$BBEHOLD!", + ["O"] = "In order to create the Shoulderguards of the Lightbringer, you will be required to bring the following items back to Malyfous Darkhammer: 1 Pristine Hide of the Beast; 10 Arcanite Bars; 8 Righteous Orbs; 5 Medallions of Faith.You will also be required to pay 50 gold pieces for the crafting of the item.", + ["T"] = "Shoulderguards of the Lightbringer", + }, + [40300] = { + ["D"] = "Hail young $c. Are you by chance destined for the human city of Stormwind? If so, I have a favor to ask.$B$BFishing is a rare choice of occupation among my kinsmen, but one I take a great deal of pleasure in. Truly there is no more relaxing way to pass the time, something we Kaldorei are in no short supply of. I often gather clams from the banks I fish along, containing pearls as pure white as Elune herself on the darkest night.$B$BIt is from these pearls I have put together a necklace for Shailiea, the woman I have been pining for and courting for many decades now. Please, deliver to her this necklace and tell her it is from her secret admirer. Let me quickly wrap this in a piece of cloth.$B$BThe quickest way to reach Stormwind would be from the south dock in Auberdine. Once in Stormwind, you should be able to find Shailliea residing in the Park.", + ["O"] = "Deliver Androl\'s Package to Shailiea in Stormwind City.", + ["T"] = "A Secret Admirer", + }, + [40301] = { + ["D"] = "Greetings friend, may I interest you in a loaf of bread?$B$BBut if it\'s not bread you\'re looking for and wish for work, I might have a task for you. My friend, Gryshka, owns the inn of Orgrimmar, in many of her letters she wrote that she is unable to reproduce my special flour and can\'t provide her customers with Mulgore Spice Bread.$B$BIt is by the Earthmother\'s love that adventurers such as you find their path to me or I\'d never be able to communicate with her. If you wish to aid me, I will give you a sack of flour and the recipe for it, all you have to do is bring it to Gryshka.$B$BI hear our newest mischievous allies, the Goblins have raised a zeppelin tower close to Thunder Bluff, the villagers say it takes you straight to Durotar right over the Barrens.$B$BHere, let me get the sack, Gryshka will have a reward for you.", + ["O"] = "Deliver the Sack of Flour to Innkeeper Gryshka in Orgrimmar.", + ["T"] = "Baking Bread", + }, + [40302] = { + ["D"] = "Hello there adventurer! As you may know the Darkmoon Faire moves from Kalimdor to Eastern Kingdoms each week. In fact we are able to move through most cities without the faction barrier.$B$BWith the new boat from Darkshore to Stormwind we have drastically changed our route.$B$BTo quickly be done with the explanation, this week we camped close to Zoram\'s Strand at night before reaching Darkshore, and one of those Nagas stole a very precious gift I once got in Tanaris!$B$BAh yes, it was in my days of searching for wonders and mystery that I found a curious turtle close to the shores, her name was Torta, and she could speak! Imagine, a speaking turtle, how marvelous!$B$BShe asked me to find her husband, Tooga. Apparently he got lost a lot, but he also was able to speak! Never in my life have I seen such a thing. But sadly they didn\'t wish to join the Faire, however Torta offered me one of her eggs and that\'s the precious gift I am talking about, I think it was about to hatch too.$B$BPlease, bring back my egg.", + ["O"] = "Find Torta\'s Egg in Zoram Strand.", + ["T"] = "Torta\'s Egg", + }, + [40303] = { + ["D"] = "The Tower of Lapidis will not be an easy task to conquer, even with this key, this is only the entryway into the gates of hell. You must steel yourself for what is to come, Lapidis has been able to ally himself with the most unlikely friends for a reason. He is a powerful man, and extremely skilled in magic, not to mention surrounded by minions of his own conjuring.$B$BIf you are to conquer The Tower of Lapidis you will need a band of fellow adventurers. Plan for the mission ahead and slay Arch Hydromancer Lapidis for all of his lies, his deceit, and his crimes against Kul Tiras. If you succeed, bring his head to Colonel Hardinus, he would be the most eager to reward such heroic actions.", + ["O"] = "Venture into The Tower of Lapidis, slay Arch Hydromancer Lapidis, and return his head to Colonel Hardinus in Caelan\'s Rest.", + ["T"] = "The Tower of Lapidis X", + }, + [40304] = { + ["D"] = "I have been sent by a council of mages from Orgrimmar to look into the growing power that emits from Karazhan. I have done much research into the tower itself and the artifacts that once belonged in the ruins around it.$B$BI have some hunches, the first of which is that the energy that me, and the other mages have felt is coming from beneath Karazhan. In an old, and decrepid series of catacombs underneath the tower. If I am correct, then we will need an old Pendant which holds power enough to re-energize a key created by Medivh.$B$BThis artifact is known as the Pendant of Ardan, thought lost for some years now. My only hint is that of the ogres of Deadwind Pass, of which, their leader Var\'zhog has begun to exhibit magical prowess.$B$BFind Var\'zhog, and from him, reclaim the Pendant of Ardan.", + ["O"] = "Search for the Pendant of Ardan, rumored to be held by the ogre Var\'zhog, collect it, and return to Kor\'gan in Stonard.", + ["T"] = "The Depths of Karazhan I", + }, + [40305] = { + ["D"] = "With the Pendant of Ardan in our hands we can turn our attention to the tower itself, and what magic has begun to raise more ghosts around it. As of recently, the dead have begun to materialize, spirits and echoes of the past clinging around the tower as if they were still alive.$B$BTravel to the ruins around Karazhan, and from the ghosts and dead bring me 8 Ghostly Substance. It is from this substance I will be able to check what magic lingers upon the ethereal beings.$B$BBe careful, for there are also rumors of a Dark Reaver who guards the entrance to Karazhan.", + ["O"] = "Gather 8 Ghostly Substance from the ghosts around Karazhan, and return to Kor\'gan at Stonard.", + ["T"] = "The Depths of Karazhan II", + }, + [40306] = { + ["D"] = ".$B$BIt would appear that what we are dealing with is beyond my power, it is intense in arcane energy, with something else that is not familiar to me...$B$BThere is one I know who may be of assistance, who was a member of the Kirin Tor in life, his name is Gunther Arcanus. He lives within the center of Brightwater Lake in Tirisfal Glades, just northeast of Brill.$B$BWith his knowledge within Dalaran, perhaps he can be of more assistance, seek him out and give him this crate.", + ["O"] = "Bring Kor\'gan\'s Crate to Gunther Arcanus at Brightwater Lake.", + ["T"] = "The Depths of Karazhan III", + }, + [40307] = { + ["D"] = "My my... Such potent energy, I had always guessed that Karazhan had natural ley energy, in fact it was rumored within Dalaran. Kor\'gan was correct to bring these samples to me, they will make good for future projects. The energy that lingers beneath the arcane is that of necromancy, and quite potent necromancy at that.$B$BLong ago, I spent quite some time at Karazhan. I was under mission from the Kirin Tor to look into the natural energy that lingered there. This is no doubt the work of Alarus, a student of Medivh for a brief period of time. He spent much of his later days attending to the crypts that stretched far beneath the tower.$B$BIf your task is to enter those catacombs, you will need to reforge the key. It requires a Mark of Karazhan, held by few who were given entrance into the tower, as well as the key itself.$B$BBring this information to Kor\'gan, perhaps he will find a solution to this problem.", + ["O"] = "Return to Kor\'gan in Stonard with the information given by Gunther Arcanus.", + ["T"] = "The Depths of Karazhan IV", + }, + [40308] = { + ["D"] = "If we are to reforge the key, then we will need the items that Gunther Arcanus had hinted to. I have no doubts in my mind that both of these items can be found lingering around the tower.$B$BThe first item we shall acquire is the key itself, there are rumors of a sickly, pale human who emerges when not a living soul is about, to tend the grounds around Karazhan. It would be from him, that the Old Crypt Key can be found, find him, and claim it for our purposes, he should be around.$B$BLastly, a Mark of Karazhan will be required, of which there are not many left on this mortal world. I have heard tales of a Captain lingering in the caves of The Master\'s Cellar. Captain Rothynn and his twin brother were both given one long ago, he should still have one.$B$BWhen these items are obtained, return to me, and I can forge the key.", + ["O"] = "Gather the Old Crypt Key, and the Mark of Karazhan from around the ruins of Karazhan for Kor\'gan in Stonard.", + ["T"] = "The Depths of Karazhan V", + }, + [40309] = { + ["D"] = "Now then, you have done your deeds with honor intact, it is my time to uphold my end of the bargain. It will take some time, and great concentration, but I will work to reforge the Karazhan Crypt Key.$B$BWith everything in place, it should allow entry into the Crypts of Karazhan! Now, step back, and behold my power!", + ["O"] = "Wait for Kor\'gan to reforge the Karazhan Crypt Key.", + ["T"] = "The Depths of Karazhan VI", + }, + [40310] = { + ["D"] = "There is only one step left for us, as honorable members of the Horde. We must step forth into the darkness, and vanquish this evil before it grows even stronger. If we were to let the humans deal with this, who knows if they could even stop it?$B$BAs Grom Hellscream slayed Mannoroth, we too must look upon something terrible and destroy it from this world. I ask of you to venture into the Karazhan Crypts, and put an end to this madness, for the good of this world.$B$BThis will not be a task you can handle alone, make sure you bring strong allies to journey with you.", + ["O"] = "Venture forth into the Karazhan Crypts, once inside slay Alarus, the watcher of the Crypts for Kor\'gan in Stonard.", + ["T"] = "The Depths of Karazhan VII", + }, + [40311] = { + ["D"] = "I have ventured to this rather decrepid, and lonely place to investigate the mysteries surrounding Karazhan. It has long since loomed over this land with a great power emitting from it. While the tower is impressive, it does not boast the power it once held under the rule of Medivh.$B$BMy analysis of the tower is that the growing power does not come from above, but below. There have always been tales of a crypt that stretched deep beneath Karazhan, perhaps they may be true.$B$BThe first thing I ask of you is to search for a long lost pendant, rumored to have been taken from the ruins of Karazhan some time ago. It will be needed to magically attune the key for our purposes. My suspicion is that the ogre\'s of the region have taken hold of it. An ogre magi by the name of Var\'zhog has grown to some renown as of recently, no doubt he holds the pendant.", + ["O"] = "Search for the Pendant of Ardan, rumored to be held by the ogre Var\'zhog, collect it, and return to Magus Ariden Dusktower in Deadwind Pass.", + ["T"] = "The Mystery of Karazhan I", + }, + [40312] = { + ["D"] = "With the Pendant of Ardan secured we can begin to look towards other leads, as of recent many more ghosts have begun to sprout up around the tower of Karazhan. It isn\'t every day that the dead begin to walk again within the ethereal form after all.$B$BI ask of you to venture around the ruins of Karazhan and slay the ethereal dead, and from them, collect 8 Ghostly Substance. It is from this substance that I will be able to check to see the magical potency, or what kind of magic has driven these souls to stir from death.$B$BWatch your footing, for the Dark Reaver of Karazhan has been known to watch over the gatehouse of the tower.", + ["O"] = "Slay the ghosts around Karazhan and collect 8 Ghostly Substance for Magus Ariden Dusktower within Deadwind Pass.", + ["T"] = "The Mystery of Karazhan II", + }, + [40313] = { + ["D"] = "The energy of the substance is intense, and would take me considerable time to unweave. My master Archmage Ansirem Runeweaver within Dalaran is well versed within such magic, and would have a much easier time.$B$BI ask of you to bring him the Ghostly Substance and figure out the true potency and origin of the magic contained. Perhaps then, we can figure out how to best deal with the foreign energy lingering beneath Karazhan.", + ["O"] = "Take Ariden\'s Crate to Archmage Ansirem Runeweaver in Dalaran.", + ["T"] = "The Mystery of Karazhan III", + }, + [40314] = { + ["D"] = "I have taken the time to study what has been provided, and based off the sample he has sent there is no doubt about the power that has produced such a energy. The magic that is present within the substance is that of necromancy, with a touch of arcane.$B$BThere is one who could be capable of such magic. One who studied beneath Medivh for a short period of time, and took to keeping watch of the Crypt itself, he went by the name Alarus. If it truly is him, then he has mastered his magic, and is extremely capable, and even more dangerous.$B$BWhatever lingers beneath Karazhan must be stopped , especially with Karazhan itself holding so much potency of magic.$B$BIf this darkness is resting beneath Karazhan, then it must be within the Crypts directly beneath it. Return to Ariden Dusktower, and let him know everything.", + ["O"] = "Return to Ariden Dusktower with the information Ansirem Runeweaver has provided.", + ["T"] = "The Mystery of Karazhan IV", + }, + [40315] = { + ["D"] = "If Ansirem Runeweaver is correct, then Alarus must be stopped at all costs. To reforge the key to enter the crypt we will require a few items from the souls lingering within the ruins around Karazhan.$B$BFirst, we will need a Mark of Karazhan, an object magically enchanted with the ley energy of the tower. It is said that the twins Andreon and Rothynn were both granted one upon being accepted into the tower guard. Whilst Andreon\'s whereabouts are unknown, Rothynn\'s spirit still haunts the caverns of the Master\'s Cellar.$B$BFinally, there is Groundskeeper Jacoby, one who still to this day lives and tends to the grounds. A man who only appears when not a living soul is looking, only to flee and hide when the living linger. It is from him that the key itself will be collected, so hunt him down.$B$BWhen everything is collected, I can begin to infuse the key with the power it once held, to allow access to the Karazhan Crypt.", + ["O"] = "Slay Captain Rothynn to collect the Mark of Karazhan, and retrieve the Old Crypt Key from Groundskeeper Jacoby for Magus Ariden Dusktower in Deadwind Pass.", + ["T"] = "The Mystery of Karazhan V", + }, + [40316] = { + ["D"] = "With the power of the Pendant of Ardan, and the items you have obtained I will begin to channel the energies of Karazhan into the dormant key. With familiar energies it should break the magical seal upon the lock and grant entrance.$B$BI will need some time to concentrate, so please, give me a moment to work the complicated magic.", + ["O"] = "Wait for Magus Ariden Dusktower to enfuse the energies of Karazhan into the key.", + ["T"] = "The Mystery of Karazhan VI", + }, + [40317] = { + ["D"] = "With the key created the door to the Karazhan Crypts is now open. I ask of you a great importance, to venture into the depths beneath Karazhan and slay Alarus in the name of all that is good.$B$BTo do such a task will require aid, for you will not be able to take this charge on your own. Hire a band of mercenaries, or gather folk of a good merit to join you, and rid the world of this evil so that it cannot spread further harm.$B$BThe Kirin Tor is with you in spirit, the fate of many are on your shoulders brave one.", + ["O"] = "Venture forth into the Karazhan Crypts, once inside slay Alarus, the watcher of the Crypts for Magus Ariden Dusktower in Deadwind Pass.", + ["T"] = "The Mystery of Karazhan VII", + }, + [40318] = { + ["D"] = "An outsider! By the Light, you are a sight for sore eyes! Welcome to the Remnants Camp. I am Captain Silas, leader of the Alliance Remnants and commander of the Army of Lordaeron. We here are all that remain that bear the crest of Lordaeron, now tucked away in this far-away corner of Tirisfal.$B$BTo say that our situation here is dire would be an understatement of the highest order. We are beset upon all sides by the undead, both of the Forsaken and the Scourge. I have prepared a letter to be sent to our sister kingdom of Stormwind, one of the last bastions of human power. You must take it to the commander of the armies of Stormwind - Lordaeron needs soldiers and supplies if we are to overcome the undead threat!", + ["O"] = "Deliver Captain Silas\' Letter to General Marcus Jonathan in Stormwind.", + ["T"] = "A Call to Aid", + }, + [40319] = { + ["D"] = "Supplies and soldiers? And where exactly am I supposed to get these, much less how am I supposed to send them so far north? Times must be desperate indeed if a captain of the Army of Lordaeron claims to be the leader of the Alliance.$B$BI have prepared my response. Sadly, there is no way to meet his request, as our own forces are stretched thin as it is. Bring this letter back to him, and may the Light bless those that remain there.", + ["O"] = "Deliver Marcus Jonathan\'s Letter to Captain Silas at the Remnants Camp in Tirisfal Uplands.", + ["T"] = "A Call to Aid", + }, + [40320] = { + ["D"] = "Hey there, I suppose you wouldn\'t mind helping me out, would you? Things are starting to get incredibly rough, we are suffering through a food shortage that won\'t even last more then a week.$B$BThere is a cave, directly to the east that is practically crammed with wolves. If you could get me 10 Graypaw Flanks I could make them last for quite a while, and help alleviate the lack of food.", + ["O"] = "Gather 10 Graypaw Flanks for Barkeep Clemens at The Remnants Camp in Tirisfal Uplands.", + ["T"] = "A Call to Aid", + }, + [40321] = { + ["D"] = "You have been incredibly helpful, and for that I am grateful. This land I have found myself on seems to be full of dangers, those that I am not ready to encounter just yet. I have done some repairs upon the canoe, and should be ready to set off soon, back to where I am from.$B$BThe Northeast Passage is quite trecherous, many jagged icebergs are out there which makes sailing quite difficult! I know a way through though, if you\'d like to come with me, I need to be stopping at Kaneq\'nuun, and I wouldn\'t mind showing you.$B$BWhen you\'re ready to go, let me know.", + ["O"] = "Speak with Inunquaq and travel through the Northeast Passage to Kaneq\'nuun.", + ["T"] = "The Northeast Passage", + }, + [40322] = { + ["D"] = "Kaneq\'nuun is a large rock floating out at sea, some of my people live here. It is a required stop both on the way south, and on the way north. If you wish to truly be welcomed, you must speak with the village elder, for they have much knowledge!$B$BThey can be found just up the road, their name is Panukuki.", + ["O"] = "Speak with Panukuki in Kaneq\'nuun.", + ["T"] = "The Kaneq\'nuun Elder", + }, + [40323] = { + ["D"] = "Inunquaq has always been intrigued by the southlands, such a mysterious place, with many different peoples. In my long life, I have always wondered what lay beneath the shawl of wind and snow, perhaps you can tell me stories some time.$B$BIf you wish to truly be welcomed, you must make an offering to Kaneq\'nuun. Many of our strong hunters have headed north to Tarq\'un to search for larger beasts, and as a consequence, we have been rationing our food.$B$BAll along the coast are Ice Crawlers, they can be quite nasty if angered. Bring me 6 Ice Crawler Claws, they will go well with the food we have.", + ["O"] = "Gather 6 Ice Crawler Claws for Panukuki in Kaneq\'nuun at Icepoint Rock.", + ["T"] = "An Offering for Kaneq\'nuun", + }, + [40324] = { + ["D"] = "When my people first came to this island, we met a being named Tarqsiku. He was made of pure ice, and assisted us in our times of great need. Tarqsiku has long since fallen into a dark place, rumbling deep beneath the the ground, and sending the Whiteclaw into frenzy.$B$BAn evil has clouded his judgement, and his mind, already he has attacked our kind. Tarqsiku was a legend to my ancestors, but to me, Tarqsiku is a threat, and one that has me wondering what to do.$B$BI ask of you to venture deep into the earth, to find Tarqsiku, and to free him for his torment.", + ["O"] = "Find Tarqsiku deep beneath Kaneq\'nuun and slay him for Panukuki.", + ["T"] = "The Legend of Tarqsiku", + }, + [40325] = { + ["D"] = "With our hunters gone away to gather food for the long winter, we have seen a growing amount of Whiteclaw Bears beginning to stalk the outside of their cave. Something has begun to stir them from hibernation, and we have seen them around.$B$BWe have lived in harmony with the Whiteclaw for some time, but now we must act to reduce their numbers. To the north is a deep cave the burrows into the mountain, go there, and gather 5 Whiteclaw Pelts.", + ["O"] = "Gather 5 Whiteclaw Pelt for Aputuq in Kaneq\'nuun at Icepoint Rock.", + ["T"] = "Icepoint Whiteclaws", + }, + [40326] = { + ["D"] = "Long ago I traveled the forests of Ashenvale in search of a place to call home. As the druids tended to The Crescent Grove, I figured such a tranquil location would make the perfect home. For centuries I tended to my garden and assisted the druids with whatever needs they had.$B$BAs of recently, a band of Furbolg calling themselves, the Groveweald, had moved in. They expelled me from my home and even had the audacity to burn it to the ground. In my panic, I left behind many valuable heirlooms and treasures. Without a doubt, most of it burnt to the ground.$B$BPlease travel to my burned down home in the Crescent Grove and gather from behind the house my mallet. It was given to me by my father, and I used it to build my house. Collect it, for it means a lot to me.", + ["O"] = "Travel to the Crescent Grove and find the burned down home of Kalanar Brightshine. Then retrieve Kalanar\'s Mallet and return it to him in Astranaar.", + ["T"] = "Kalanar\'s Mallet", + }, + [40327] = { + ["D"] = "I got word a few weeks back that the Venture Co. had to abandon the Crystalvein Mine because of a basilisk problem. No doubt they left behind all sorts of equipment and tools that are ripe for pilfering. We pirates are usually operating on second hand equipment, and such a score we -cannot- pass up.$B$BThe Crystalvein Mine is located to the east and is just off the road near the Gurubashi Arena. Get there, and get there quick pal, before those Venture goons go and try to get back there stuff. If we act fast, they won\'t even know we went and snatched it all up!", + ["O"] = "Collect Venture Co. Equipment for Falgig Wazzlewrench at the Bloodsail Compound in Stranglethorn Vale.", + ["T"] = "Abandoned Equipment", + }, + [40328] = { + ["D"] = "A few weeks back Naga began to enter the territory just south of the Bloodsail Compound. We don\'t know why they are here, or why they came but they seem quite drawn to the heights. The slithering wretches have done nothing but wander about and bother our ships as they sail about. I\'d like you to do battle with them for all of our slain kin.$B$BGather from the Naga Explorers their tridents and bring me them as proof of your deeds. 14 Should do just nicely, maybe we can use them as harpoons against the beasts.", + ["O"] = "Gather 14 Naga Tridents for Raga Darkeye at the Bloodsail Compound in Stranglethorn Vale.", + ["T"] = "Naga Tridents", + }, + [40329] = { + ["D"] = "We got a contact who has been looking to buy a Pristine Gorilla Pelt for some time now. They\'re paying top dollar for one completely pristine with not a single imperfection. The Bloodsail could certainly use the coin to fund our operations.$B$BHead out into the jungles of Stranglethorn and hunt down some of the gorilla, and find me a pristine pelt. We may as well utilize the jungle while we are here afterall.", + ["O"] = "Slay Gorillas in Stranglethorn Vale and collect a Pristine Gorilla Pelt for \'Wincing\' Willy at the Bloodsail Compound.", + ["T"] = "Pristine Gorilla Pelt", + }, + [40330] = { + ["D"] = "It sure has been a while since we\'ve heard from old \'Wincing\' Willy. He has been appointed to manage the supplies out far to the north west at Bloodsail Compound, it is located just to the southwest of the Gurubashi Arena.$B$BSomething must have gone wrong, or him and his men have gone rogue.$B$BI want you to travel there, and meet up with him and figure out why there has been supply shortages.$B$BIf there\'s anything we Bloodsail need, it\'s to keep our supply lines in check!", + ["O"] = "Travel to Bloodsail Compound and meet with \'Wincing\' Willy.", + ["T"] = "The Bloodsail Compound I", + }, + [40331] = { + ["D"] = "Five nights ago we were harassed by a band of trolls with blue hair, they threw all sorts of javelins at us.$B$BThey made off with crates and bundles of supplies, not to mention killing a few good folk before we fought them off.$B$BThose trolls are Skullsplitter, and came from the Ziata\'jai Ruins to the north east of here. Head there, and recover 5 Bloodsail Supply Crates.$B$BWhile you\'re there, you may as well kill some to get a payback, we need to keep our image after all.", + ["O"] = "\'Wincing\' Willy at the Bloodsail Compound wants you to collect 5 Bloodsail Supply Crates and kill 10 Skullsplitter Warriors.", + ["T"] = "The Bloodsail Compound II", + }, + [40332] = { + ["D"] = "Now that you\'ve recovered the supplies we can turn our attention to other matters entirely. In Kalimdor we have a network of clients and contacts that we keep in touch with for all sorts of purposes.$B$BOne such contact is located within Steamwheedle Port and hasn\'t sent his delivery of goods yet. He goes by the name Jabbey and is a vendor there.$B$BI\'d like you to head there and find out what the hold up is so that we can get it all to McCoy.$B$BYou can find Steamwheedle Port to the east of Gadgetzan in the deserts of Tanaris.$B$BNow, of course, make sure you keep it on the hush-hush that this is related to the Bloodsail.$B$BOh, and make sure to bring water, I hear it\'s quite dry there.", + ["O"] = "Meet with the Bloodsail contact named Jabbey in Steamwheedle Port.", + ["T"] = "The Bloodsail Compound III", + }, + [40333] = { + ["D"] = "Hey I aint lookin\' for no trouble, and keep your voice down!$B$BI\'ve been supplying the Bloodsail with a potent poison for some time now, and my main guy just up and left Tanaris. I know they paid me for the last batch but I just haven\'t had an opportunity to get it, do I look like some sort of scorpid killer to you?$B$BMaybe you can help me out, and deliver it for me, I\'ll throw in some coin to you as well for the trouble. To the west of here are a bunch of Scorpid Hunters, from them gather 8 Potent Scorpid Venom and deliver them to \'Wincing\' Willy back out at the Bloodsail Compound in Stranglethorn Vale.", + ["O"] = "Gather 8 Potent Scorpid Venom and deliver them to \'Wincing\' Willy at the Bloodsail Compound in Stranglethorn Vale.", + ["T"] = "The Bloodsail Compound IV", + }, + [40334] = { + ["D"] = "Nice work on checking up on things for me, there might be more work around the camp, but I\'d like you to deliver a letter up to First Mate McCoy. No doubt he\'s getting a bit anxious wondering what me and you have been up to.$B$BI have prepared a note to be taken to him down at Bloodsail Retreat, so please do so with haste.", + ["O"] = "Bring Willy\'s Letter to First Mate McCoy at Bloodsail Retreat in Stranglethorn Vale.", + ["T"] = "The Bloodsail Compound V", + }, + [40335] = { + ["D"] = "Ahoy Cap\'n! Saw ye have fun last night with the bard lassy in our vessel, fine piece ain\'t she?$B$BBy all means, I mean the boat, of course, non of my business of yer personal affairs. Speaking of which Cap\'n, have ye decided the name of the vessel yet? It\'s bad luck to have an unnamed ship at sea, so think about it!$B$BAnyway, onto more pressing matters. Admiral Garfield told me to supply our settlement with generals goods but we don\'t have the leisurely of just buying them so we\'ll just loot it.$B$BAye, loot it. The Southsea seadogs have settled on a sandbar close to that damned Giljim Isle.$B$BFortune of the waves be with ya.", + ["O"] = "Loot 10 General Good Crates from the Southsea Sandbar and return to Belgrush Daggerfist.", + ["T"] = "Another Day of Labor", + }, + [40336] = { + ["D"] = "Cap\'n, back for more songs?$B$BOr is it sugar only today.$B$B.$B$BOh what is this poor bard to do, no jewelry to match her beauty, surely the Cap\'n would love to change that, aye?$B$BI hear there\'s a group of nagas north of one of our compounds, Vil\'do says they carry elven jewelry that would best suit this gal, don\'t you think so?$B$BI will make sure to make it worth your while.", + ["O"] = "Bring a Highborne Necklace to Jeesie Silver-Tongue.", + ["T"] = "Charming a Charmer", + }, + [40337] = { + ["D"] = "We are running low on rum Cap\'n! I need to test something, while I can brew beer in many ways I have yet to try to make some fine heavy rum.$B$BLuckily for us, we\'re on Jaguero Island, and as you could notice there are several gorillas here, where there\'s a gorilla there\'s also bananas. With the sugar the fruit holds I might be able to brew us some rum.$B$BA bunch of them would be great.", + ["O"] = "Bring 15 bananas to \'Ale Saint\' Grida.", + ["T"] = "We Must Have Rum", + }, + [40338] = { + ["D"] = "Another of our kin, I take it you are coming here to seek your true purpose upon this world, or you have come to pay your tributes to this old group. The Azurestone Order is as old as Ironforge itself, and has its roots upon the building of our mighty city.$B$BIf you wish to join our order, and learn our lessons, you will need to first listen to the tale of the Azurestone.", + ["O"] = "Speak with Tholdan Mountainheart, and listen to the tale of the Azurestone.", + ["T"] = "The Azurestone", + }, + [40339] = { + ["D"] = "The Azurestone Order is as old as this city, it is on the shoulders of brave dwarves that it has managed to survive so long. A test of bravery is in order to prove that you are as strong willed as those who have come before you.$B$BTo the southeast is the Gol\'Bolar Quarry, recently infested with troggs, and led by a vile trogg named Grash who uses primitive magic to lead his minions. Travel there, and from him gather his staff.$B$BIf you manage to slay him, it will no doubt be a showing of both your bravery, and your natural prowess with the arcane gift.", + ["O"] = "Slay Grash and bring his staff to Tholdan Mountainheart in Ironforge.", + ["T"] = "The Azurestone Order", + }, + [40340] = { + ["D"] = "", + ["O"] = "Collect a Corrupted Sand for Dronormu in the Caverns of Time.", + ["T"] = "Corrupted Sand", + }, + [40341] = { + ["D"] = "", + ["O"] = "Collect 10 Corrupted Sand for Dronormu in the Caverns of Time.", + ["T"] = "Sand in Bulk", + }, + [40342] = { + ["D"] = "Long ago I was tasked with the defence of the time ways, me and another took our oaths together. I dare not speak their name, for they are a traitor to the Bronze Dragonflight, and now consort with the Infinite. They work against everything they vowed to upkeep, and are actively destroying all of our work.$B$BThey go by the name Chronar, a twisted husk of what they once used to be. Prided by the values of our kin, and our honor, but no longer.$B$BVenture into the Black Morass, and find Chronar, bring me his vile head as proof, and I shall reward you with a gift most precious to me.", + ["O"] = "Slay Chronar, and bring his head to Tyvadrius in the Caverns of Time.", + ["T"] = "The Bronze Betrayal", + }, + [40343] = { + ["D"] = "Can you feel it, your destiny is calling you young one, the spirits themselves whisper your name. You have been called upon by Beram Skychaser in Thunder Bluff to go on a ritual of our kind.$B$BYou can find him in the Spirit Rise at the northeastern edge of the bluffs, go there, and find him.", + ["O"] = "Travel to Thunder Bluff and speak with Beram Skychaser.", + ["T"] = "Spiritual Guidance", + }, + [40344] = { + ["D"] = "Long has it been that we tauren shaman have upheld our ancient traditions. Spirit Walking is a part of our culture, and has been around longer than you could even imagine, young one. It is how we connect with those of the afterlife in the arms of the Earthmother.$B$BIf you wish to begin on this path, then special ingredients will be required for you to first make your connection with the spirit world. To the southwest is a land called Feralas. At Camp Mojache you will find Sage Palerunner. Speak with him, and tell him I was the one who sent you.", + ["O"] = "Travel to Camp Mojache and speak with Sage Palerunner.", + ["T"] = "The Way of Spiritwalking I", + }, + [40345] = { + ["D"] = "The path of the spiritwalker is one of devotion to the ancestors, to keep in communication with the spirits of old. We are to respect them, and pay our tributes when we can, through this we are able to hone a power of the supernatural world.$B$BFrom the ravenous Centaur, to the vile Quilboar, even they practice elements of shamanism linking to their ancestry. It is almost entwined with Kalimdor itself, in a way.$B$BTo get you aquainted with the powers of the spirit world we will need you to gather an age-old leaf that grows in the area. Believe it or not there was a time when it was common place amongst Stonetalon and the oasis of the Barrens, but no longer.$B$BOut in the forests of Feralas grows a potent plant called Spiritleaf. It is quite rare but can be seen glittering in the air, and is needed for ones spiritual awakening.", + ["O"] = "Find and collect a Spiritleaf for Sage Palerunner in Camp Mojache.", + ["T"] = "The Way of Spiritwalking II", + }, + [40346] = { + ["D"] = "Now that you have collected the Spiritleaf we can begin the ceremony, I have prepared everything that was needed while you were searching.$B$BI will begin to communicate with the spirits in order to send you on your spirit quest. As I channel my energy upon the leaf, it will flow throw your body, and you will gain its magical properties. Inhale deeply, and let it flow through your form uninhibited.$B$BWhen you are ready to begin, I will channel my magic into the Spiritleaf.", + ["O"] = "Wait for Sage Palerunner to finish the ceremony.", + ["T"] = "The Way of Spiritwalking III", + }, + [40347] = { + ["D"] = "It is time to make the journey to meet with your ancestors, they know you more than you may know yourself but do not fear them. They look out for us all in the end, and they desire to see if you are truly ready to take up this mantle.$B$BAt the Spirit Rise in Thunder Bluff, they will be there, speak with the Ancestor of Wisdom, they will bring you through your next step.$B$BAnd lastly, goodluck $N, may the winds be at your back.", + ["O"] = "Travel to Thunder Bluff, and speak with the Ancestor of Wisdom.", + ["T"] = "The Way of Spiritwalking IV", + }, + [40348] = { + ["D"] = "We have been watching you for a long time, from the plains of Mulgore we gazed down upon your vigor and tenacity. You have improved much since those days long ago, and now, here you are, before me.$B$BIf you truly wish to be a Spiritwalker and learn our ways, then you must learn a lesson from the each of us. We can help guide you in the right direction, all you need to do is listen.$B$BSpeak with all three of us, and when you have heard our words, return to me.", + ["O"] = "Speak with the three Ancestors at Spirit Rise.", + ["T"] = "The Way of Spiritwalking V", + }, + [40349] = { + ["D"] = "Ahh, yes, it would appear that you have gained much power, and word of your name has travelled to my ear. Perhaps it is time for your next step, troll, to learn the ways of our kind. We trolls have had a unique way with nature for a long time, one that these orc or tauren cannot understand.$B$BIt be the way of the witch doctor, and to learn, you must speak with one of our kind. Seek out Bom\'bay at the Sen\'jin Village, he\'ll teach you good.", + ["O"] = "Travel to Sen\'jin Village and speak with Bom\'bay.", + ["T"] = "The Way Of The Witch Doctor I", + }, + [40350] = { + ["D"] = "You wish to learn da ways of the Witch Doctor huh? We troll shamans be masters of the voodoo, and perhaps you can learn my ways. First, I need you to get your hands on some Skullsplitter Mojo for me. I will be usin\' it in ma ritual to bestow power upon ye. That, and well, let\'s say I don\'t exactly like them Skullsplitters.$B$BThey can be found deep in the jungles of Stranglethorn, by ruins in the eastern parts of the region. Go there, and get me 20 of them, that should do, just nicely.", + ["O"] = "Travel to Stranglethorn Vale and bring 20 Skullsplitter Mojo to Bom\'bay.", + ["T"] = "The Way Of The Witch Doctor II", + }, + [40351] = { + ["D"] = "With the samples you have provided I will begun to conjure a special serum, this serum will be needed for your next task. So please, give me some time to prepare it, for one mess up, be the end of ya!", + ["O"] = "Wait for Bom\'bay to finish creating the serum.", + ["T"] = "The Way Of The Witch Doctor III", + }, + [40352] = { + ["D"] = "With this serum you may speak with the spirit of the toad, he is a patient, and incredibly wise one. We trolls have been hexin\' our enemies for quite some time, and it is about time for you to pay respects.$B$BN\'ribbi is the one you seek, and he can be found deep in the Dustwallow Marsh.$B$BIn the north west of Dustwallow is a place called \'Bluefen\' you can find him at the very edge.$B$BGo there, and speak with him, bring this serum, and offer it to N\'ribbi as tribute.", + ["O"] = "Travel to Dustwallow Marsh and find N\'ribbi, and offer him Bom\'bay\'s Serum.", + ["T"] = "The Way Of The Witch Doctor IV", + }, + [40353] = { + ["D"] = "The power of the witch doctor is derived from the spirits of azeroth, the loa. It is us who look after the smaller of our kind, and channel our energies into those who follow us. If you so wish to prove yourself to N\'ribbi, you must show me your courage and ability with magic.$B$BLong has it been that a massive crocolisk named Clampjaw has terrorized the toads of Dustwallow. I do not have the power to challenge him directly, but perhaps with your powers, you can.$B$BI want you to find Clampjaw in the Quagmire, and slay him for all of my kin. Do this, and I will bless you with my power young one.", + ["O"] = "Slay the mighty crocolisk Clampjaw for N\'ribbi in Dustwallow Marsh.", + ["T"] = "The Way Of The Witch Doctor V", + }, + [40354] = { + ["D"] = "Seems like the pirate life suits ye, ye scoundrel. Ah, I remember of me own adventures, to be young again. Anyway, since the ship\'s all yours and all, thought it\'d be the time for you to name it, savvy?$B$BI bet ye already got a name in mind, whenever ye feel ready.", + ["O"] = "Decide the name of the ship.", + ["T"] = "Naming the Vessel", + }, + [40355] = { + ["D"] = "The Admiral tells me Fleet Master Firallon picked a Dragonmaw nobody from the Wetlands to train and eventually lead one of our vessels because of his orcish battle experience. Long has it been since I was this insulted! Earn my favor, will you $r?$B$BThis \"Ironpatch\" is right next to Firallon on one of the three ships at the Wild Shore. Challenge him to battle and bring me his head!$B$BBlood and thunder, victory or death.", + ["O"] = "Bring Ironpatch\'s Head back to Sark Blacktooth.", + ["T"] = "Sark\'s Grudge", + }, + [40356] = { + ["D"] = "\'ello there boss mon! Time for Vil\'do to send ya out for dat booty! What, were ya just thinkin\' that ya\'d be only drinkin\' rum for da rest of ya days? No boss mon, ya must be huntin\' treasure so ya can afford da money lust and whatever else ya got. Vil\'do wouldn\'t guess and he shouldn\'t either.$B$BDa loa say Vil\'do would one day die talkin\' since he be talkin\' so much, but Vil\'do don’t listen to them and neither should ya mon.$B$BOne of da boys from da Bloodsail Compound said dey be seein\' some weirdo night elf fightin\' nagas, said somethin’ about him wavin\' his hand in da air and magic goin\' \"woosh\".$B$BNo idea where he be goin\' but Vil\'do sees opportunity here and Vil\'do thinks dis will lead boss mon to booty.", + ["O"] = "Find the Night Elf close to Bloodsail Compound.", + ["T"] = "Elf in the Jungle", + }, + [40357] = { + ["D"] = "While making a note to yourself about the thought you just had you try to put one and two together and see if there\'s something useful in these notes. Lady Luck seems to be smiling to your wicked self once more.$B$BA map and drawings of statues can be somewhat seen in the journal, as far as you can tell this journey will take you to Feralas to hunt for one of the most glorious things you\'d ever see: Gold.$B$BFeralas is a long way, you decide to return to your crew.", + ["O"] = "Return to Vil\'do.", + ["T"] = "Lift the Anchor!", + }, + [40358] = { + ["D"] = "Get ready boss mon, da trip be a long one! Vil\'do will make sure to be makin\' some room for the treasure ya be comin\' back with. Remember what ya got from ya notes, ya be lookin’ for golden elves! Well ya know statues of golden elves but who cares.$B$BYa do dis and dis be da best haul da Bloodsail got in a long time. Make us proud eh, boss mon?", + ["O"] = "Find the Golden Elf.", + ["T"] = "Golden Elves of Feralas", + }, + [40359] = { + ["D"] = "Alright, you\'re here to steal my finds? I\'ve been keeping my eye on these statues for a while. I\'m not gonna let some random $R come in and take my loot, understand? Besides, we can\'t carry all of them anyway. There are four more scattered around these ruins.$B$BSay, how about a truce? You get me some parts and I\'ll come up with a gnomish contraption that can shrink them down. We\'ll split up the statues, three for me, two for you. Remember, I\'m the one who came up with this plan, after all.$B$BSo you got all that, bub? Then, get me those materials and let\'s make these statues more portable.", + ["O"] = "Gather the materials and return to Ruins of Isildien.", + ["T"] = "Mechaflame\'s Bargain", + }, + [40360] = { + ["D"] = "It\'s done! Quite boring little thing but you know gnomes, blah, I hate gnomes. No refinement when it comes to these things, just look at this thing, the perfect way to steal stuff, and not to mention increase your own profit!$B$BThis thing was only supposed to shrink the statues, but guess what, it can now enlarge them too! Anyway let\'s be done with it yeah, no reason to wait any longer.", + ["O"] = "Kill Fazgel Mechaflame.", + ["T"] = "Highly Unexpected Event", + }, + [40361] = { + ["D"] = "Staring at the now little elven statue you remember Fazgel saying something about four others and so you decide to go find them. Placing Lyvdia in your satchel and with the shrink ray in hand you are ready to grab all of it and go home.", + ["O"] = "Take the statues back to Vil\'do One-Tusk in Bloodsail Retreat.", + ["T"] = "Taking the Booty Home", + }, + [40362] = { + ["D"] = "On a cold and rainy night you decide to once more look at the notes as they remind you of your own first haul. As you reminisce about the past you also remember the wish you\'ve had to find a historian or someone knowledgeable enough to aid in the future.$B$BAs thoughts drift through your mind you reach the end of Sovatir\'s journal and you find a rune accompanied by some words that felt very natural for you to say at this exact moment. As you mumble the incantation your head feels rather dizzy as you can now depict a ghostly figure that looks like the former owner of this journal.", + ["O"] = "Speak with Arcanist Sovatir.", + ["T"] = " A Historian Finds You", + }, + [40363] = { + ["D"] = "Do not be alarmed, I am an exile of the Galak that seeks refuge and mean you no harm. I accompanied my brethren here with the intent to raid, but upon seeing the tauren and their peaceful life free from the pains of our clan life - I began to yearn for their freedom.$B$BIf we weaken the Galak\'s attack on the tauren, perhaps I can earn their trust.", + ["O"] = "Kill 5 Galak Centaurs in Mulgore.", + ["T"] = "New Bonds", + }, + [40364] = { + ["D"] = "As the immediate threat of the Galak has been addressed, perhaps you can seek out a member of the nearby village and speak on my behalf.", + ["O"] = "Speak to Gennia Runetotem.", + ["T"] = "Seeking Acceptance", + }, + [40365] = { + ["D"] = "While we have received vague rumors of the centaur that strikes at her own kind, striking at our enemies is not enough to earn our favor - not for a centaur. She must show a respect and understanding toward our traditions and customs in a way that centaur are incapable.$B$BVenture to the northern prairie across the lake and acquire pelts from the prairie stalkers. Bring them to her, she will know what to do if she is true to her word.", + ["O"] = "Collect 8 Prairie Stalker Pelts and return it to Kherra.", + ["T"] = "A Trial of Sincerity", + }, + [40366] = { + ["D"] = "Through a few simple enchantments, I have turned the pelts into blankets that will protect the tauren\'s young from the coming elements. Please take this to Gennia as my offering to her village.", + ["O"] = "Deliver the Bundle of Enchanted Pelts to Gennia Runetotem.", + ["T"] = "An Earnest Offering", + }, + [40367] = { + ["D"] = "Hail adventurer! You look like you can carry yourself in a fight. My colleagues and I ran into a bit of a pickle, you see. This is Bael Modan, a facility built by a powerful race that disappeared eons ago. According to some scholars, these Titans had a hand in the formation of our culture.$B$BWe were trying to open the door in the main chamber when a horrible screech echoed through the digsite. Dozens of statues we dug up came to life and went on a rampage. Those golems have no archaeological value when they try to kill you if you get near them. Get in there and smash them up so we can carry on our work.", + ["O"] = "Kill 16 Bael\'modan Golems in the Bael\'modan digsite.", + ["T"] = "A Pebble to Pick with Them", + }, + [40368] = { + ["D"] = "Pardon me for taking a moment of your time, wanderer, but I would ask you to help me honor someone as it is a special time of the year. Four years ago, my commanding officer and dear friend Jennalla Deemspring perished to the hand of Arthas Menethil. It is time to remember her and others like her. Please collect six sprigs of Auribloom from the village and the surrounding forest.", + ["O"] = "Collect 6 Sprigs of Auribloom and bring them back to Denalah Silverpoint at Hawk\'s Vigil.", + ["T"] = "Honoring the Departed", + }, + [40369] = { + ["D"] = "Fascinating... I wonder if such changes may cause other creatures in the food chain to be affected. I think it is a matter worth studying further! But for that I would need samples of something larger... Ah, crabs! Yes. I believe we could find something new if we study those crustaceans.", + ["O"] = "Gather 10 Crustacean Carcasses from crabs in Darkshore, then return to Nessa Shadowsong in Rut\'theran Village.", + ["T"] = "Further Studies", + }, + [40370] = { + ["D"] = "Hello! You look strong and I need the help of someone like you!$B$BI am Krilana, mama Eliza is taking care of me because my real mom has become a star in the sky. She has told me everything I know about my family. In one of her stories, mama mentioned a necklace that my papa gave to my real mom as a sign of their love, but it was lost in the shipwrecks by the northwestern coast of this isle.$B$BExcept for mama\'s stories I have nothing to remember my parents. Could... could you please look for the necklace? I heard that it was pretty and that it looked like the sun! I wanted to go and look for it myself, but mama won\'t let me: she says that ghosts haunt the place.", + ["O"] = "Find the Tarnished Necklace and put the Mournful Apparition to rest for Krilana in Caelan\'s Rest.", + ["T"] = "Krilana\'s Magnificent Quest", + }, + [40371] = { + ["D"] = "Greetings, $N. While others see our people as only refugees and survivors of a once-great nation, we must show the rest of the Alliance that the Quel\'dorei are here to stay.$B$BWith Alah\'thalas prospering and our people slowly mobilizing into a formidable force, this is the perfect time for us to officially join the Alliance.$B$BOur magisters have prepared a set of missives that need to be delivered directly to the leaders of the Alliance, and I think that the honor of delivering such important messages should be yours.", + ["O"] = "Seek audience with all four Alliance leaders and represent Alah\'thalas\' interests.", + ["T"] = "[DEPRECATED] A Diplomatic Mission", + }, + [40372] = { + ["D"] = "Our magisters have prepared a missive that needs to be delivered directly to the Highlord Bolvar Fordragon, and I think that the honor of delivering such an important message should be yours.$B$BOnce you receive Stormwind\'s response, return to me with the news.", + ["O"] = "Deliver the Sealed Missive to Highlord Bolvar Fordragon.", + ["T"] = "[DEPRECATED] Appealing to the Alliance: Humans", + }, + [40373] = { + ["D"] = "This one needs to be delivered to King Magni Bronzebeard himself, and I do not doubt that having you be the one to do it will only improve the outcome.$B$BOnce you receive Ironforge\'s response, return to me with the news.", + ["O"] = "Deliver the Sealed Missive to King Magni Bronzebeard.", + ["T"] = "[DEPRECATED] Appealing to the Alliance: Dwarves", + }, + [40374] = { + ["D"] = "We haven\'t had the pleasure of working too closely with the Gnomes, but they are an invaluable ally and a valued member of the Alliance. That is why I need you to deliver this message to the High Tinker Mekkatorque.$B$BOnce you complete this task, make sure to report back to me with the news.", + ["O"] = "Deliver the Sealed Missive to High Tinker Mekkatorque at the Gnomeregan Reclamation Facility.", + ["T"] = "[DEPRECATED] Appealing to the Alliance: Gnomes", + }, + [40375] = { + ["D"] = "Lastly, we prepared an unique message just for High Priestess Tyrande Whisperwind. Some say she provided aid to our people in the past; I can only hope she will still see that only by working together can we craft a better future for both our nations.$B$BGood luck, and please return with her reply as soon as you receive it.", + ["O"] = "Deliver the Sealed Missive to High Priestess Tyrande Whisperwind.", + ["T"] = "[DEPRECATED] Appealing to the Alliance: Night Elves", + }, + [40376] = { + ["D"] = "You have done well. I think it is high time for you to meet our leader. She awaits your arrival atop the Citadel.", + ["O"] = "Ascend the summit of the Citadel of the Sun and speak to the leader of the Silvermoon Remnant.", + ["T"] = "[DEPRECATED] The Kaldorei Problem", + }, + [40377] = { + ["D"] = "With the pleasantries out of the way, it is time I let you in on our next move.$B$BTyrande Whisperwind has sent a Sentinel, Ashylah Starcaller, to warn us of a powerful Satyr plotting an invasion near the tainted thickets of Felwood.$B$BI have sent a detachment of my best rangers to find him, hiding with his minions around an artifact of fel power: A Corrupted Felstone.$B$BThis is our opportunity to prove ourselves to any Kaldorei who still doubt us. You will find the artifact north of Raynewood\'s Retreat, around the border with Felwood.$B$BThe Satyr will be drawn by the destruction of his coveted stone: do not fear him, our rangers will come out of hiding to assist you during the battle.$B$BWhen you have won, make sure to bring proof of your victory to Ashylah Starcaller in Darnassus.", + ["O"] = "Interact with the Corrupted Felstone to provoke the Satyr near the border of Felwood. Defeat the Satyr threat and take the Satyr\'s horn to Ashylah Starcaller in Darnassus.", + ["T"] = "[DEPRECATED] Breaking the Felstar", + }, + [40378] = { + ["D"] = "There, it is done. I have prepared a writ for the High Priestess, explaining how instrumental you and the Quel\'dorei were in slaying our ancient enemy Dra\'lox Felstar.$B$BHis deeds were unforgivable, which is why your actions may prove just enough to sway even the stern Archdruid Staghelm and his stringent followers.", + ["O"] = "Present the Sealed Writ to Tyrande Whisperwind in Darnassus.", + ["T"] = "[DEPRECATED] Thalassian Accession", + }, + [40379] = { + ["D"] = "Here at last is the formal endorsement of the Kaldorei. Bring it to the Highlord Bolvar Fordragon, along with my warm regards for the young King Anduin.$B$BTogether with the High Elves, we shall chart a bright course for all the peoples of the Alliance. One day, I hope, we shall stand together side by side as friends, beneath the eaves of a renewed Quel\'thalas.", + ["O"] = "Present the letter of Darnassian Endorsement to Highlord Bolvar Fordragon in Stormwind.", + ["T"] = "[DEPRECATED] Darnassian Endorsement", + }, + [40380] = { + ["D"] = "With the Quel\'dorei\'s accession to the Alliance, I do not doubt that it is only a matter of time before we rise to our former glory. But as my people celebrate, I must keep track of the problems that remain.$B$BFor years my people relied on the magic of the great fount called the Sunwell. Its destruction made us realize how dependent we became on its energies.$B$BWithout it, we are vulnerable to succumbing to magic addiction.$B$BMiraculously, the rangers who were hunting Dra\'lox with you stumbled upon a mystical pool of restorative waters whose effects are reminiscent of the Sunwell.$B$BIf this is true, it could be our salvation. I need you to travel to Darnassus and ask Ashylah Starcaller if such waters can be procured for the Quel\'dorei.", + ["O"] = "Travel to Darnassus and speak to Ashylah Starcaller.", + ["T"] = "[DEPRECATED] The Magical Ailment", + }, + [40381] = { + ["D"] = "I do sympathize with the Quel\'dorei\'s plight. Perhaps there is another way to provide them with what they need.$B$BIf the High Elves are willing to honor the sanctity of our moonwells, then there might be a chance to plead for a small well to be built in Alah\'talas under the guidance and vigilance of a priestess.$B$BAfter all, we agreed once before to do the same for Stormwind.$B$BTravel to Feathermoon Stronghold in Feralas and look for Vestia Moonspear. She is sympathetic to your cause and will be likely to listen.$B$BGive her this missive and pay close attention to what she has to say.", + ["O"] = "Travel to Feralas and deliver the missive to Vestia Moonspear.", + ["T"] = "[DEPRECATED] A Quest for the Moonwell", + }, + [40382] = { + ["D"] = "As you must know, our moonwells are very sacred to us.$B$BHaving such a well corrupted is considered a great offense to Elune. Unfortunately, even with our constant vigil, this can happen.$B$BA twin set of moonwells exists outside Eldre\'thalas, known to many as Dire Maul.$B$BWhile one well remains pure, the other was defiled by Ogres.$B$BHelp me cleanse the moonwell and bring those responsible to justice, and I will present your case to the High Priestess herself.$B$BI will wait in the shadows until you arrive. You shall have to guard me until the ritual is completed, as it will require my full attention.", + ["O"] = "Protect Vestia Moonspear while she\'s cleansing the waters of the Corrupted Moonwell outside Dire Maul.", + ["T"] = "Sacred Waters of Eldre\'thalas", + }, + [40383] = { + ["D"] = "Take this. I have convinced a few of my fellow priestesses to vouch for you and your Quel\'dorei friends, but know that creating a new moonwell for Alah\'thalas to use will not be easy, even with our endorsement.$B$BLet us hope that the High Priestess will be amenable to extending her support once again.", + ["O"] = "Deliver Vestia\'s Missive to Tyrande Whisperwind in Darnassus.", + ["T"] = "[DEPRECATED] Vestia\'s Missive", + }, + [40384] = { + ["D"] = "Our moonwells are pure springs of Elune\'s hallowed light. They are not tainted as the first Well of Eternity once was.$B$BThey will restore the mana of the High Elves, but will never grant them access to the pernicious power that drove others to madness.$B$BI have sent Priestess Alunasha and a few of our masons and wisps to begin construction of a moonwell.$B$BAlunasha shall remain there, to watch over the well and teach the High Elves how its waters should be used in accordance to our ways.$B$BAnde\'thoras-ethil, $N, and thank you again, for your deeds in Feralas.", + ["O"] = "Speak to the Moon Priestess Alunasha and witness the establishment of the Moonwell in Alah\'thalas.", + ["T"] = "[DEPRECATED] A People Restored", + }, + [40385] = { + ["D"] = "The time has come. The Kaldorei fleet has arrived and is making its final preparations, and the Theramore fleet should also be ready. Find a Theramore officer and board the ship as its vanguard.$B$BThere is no doubt that the Scourge will attack as soon as they see us, and having you onboard will undoubtedly improve our chances. Go and do what you must for the Alliance!", + ["O"] = "Speak to the Captain Darrowmont and board the transport ship to Shalandis Isle.", + ["T"] = "[CANCELLED] Shalandis Isle", + }, + [40386] = { + ["D"] = "This is a disaster! No matter how many we slay, they keep coming!$B$BOur Rangers will secure the ship and provide ranged support, but we need your help before they overrun us!", + ["O"] = "Defend Shalandis Isle.", + ["T"] = "[CANCELLED] Scourge!", + }, + [40387] = { + ["D"] = "It is done... With the initial attack repelled, we can properly set up the defenses. With the Rangers, the Magisters, the Druids, and Moon Priestesses, we\'re more than capable of holding this isle until the fleet arrives.$B$BOnce the Rangers and Magisters have disembarked, we will return to Alah\'thalas. I take it you can send word to Speaker Windrunner?", + ["O"] = "Speak to Vereesa Windrunner in Alah\'thalas", + ["T"] = "[CANCELLED] Returning to Alah\'thalas", + }, + [40388] = { + ["D"] = "Opening the envelope reveals the symbol of a large skeletal boar as well as reference to a mighty crone. You recognize some of the names mentioned, but can\'t place the details.$B$BThis information could concern more than just Durotar, perhaps Gar\'Thok would be interested in it.", + ["O"] = "Take the Razormane Orders to Gar\'Thok in Razor Hill.", + ["T"] = "Foreign Threats", + }, + [40389] = { + ["D"] = "If you don\'t require assistance from my assistant, could you please do our tribe a favor? Our chieftain, Vol\'jin, remains in Grommash Hold, providing counsel to the Warchief as he grapples with several losses he has suffered since leaving the Darkspear Isles.$B$BTake Zalazane\'s head to Vol\'jin, assuring him that his people are primed and ready to share in his burdens.", + ["O"] = "Take Zalazane\'s Head to Vol\'jin in Grommash Hold.", + ["T"] = "Zalazane\'s Fall", + }, + [40390] = { + ["D"] = "Through hard fought victory, you stand above the fallen centaur warlord and before the corpse can run cold, you take a trophy as proof of your battle.$B$BSomeone in Sen\'jin Village would be interested in this.", + ["O"] = "Take the head of Warlord Kolkanis to Master Gadrin in Sen\'jin Village.", + ["T"] = "Aggression\'s End", + }, + [40391] = { + ["D"] = "Our new homeland has suffered greatly from threats of all measure since the founding of Orgrimmar and making our home upon Sen\'jin Village, and this major step must be shared with our allies in Thunder Bluff.$B$BWhen we first landed on these shores, we found the Kolkar leading the attack on the tauren and have since learned of their suffering under their raids. With one less threat in Durotar, we can begin to look to our frontiers.$B$BNow go, share proof of your great victory with the High Chieftain of Thunder Bluff.", + ["O"] = "Take the head of Warlord Kolkanis to Cairne Bloodhoof in Thunder Bluff.", + ["T"] = "A Hunt for Honor", + }, + [40392] = { + ["D"] = "Greetings $N, I have received word from Alah\'thalas that the Ranger-General requests your presence, please make your way to her as soon as possible.", + ["O"] = "Travel to Alah\'thalas and speak to Ranger-General Damilara Sunsorrow.", + ["T"] = "[DEPRECATED] Summons by the Ranger-General", + }, + [40393] = { + ["D"] = "Greetings $N, I have received word from Alah\'thalas that Speaker Vereesa Windrunner herself is requesting your presence. I wouldn\'t keep her waiting $N.", + ["O"] = "Travel to Alah\'thalas and speak to Vereesa Windrunner.", + ["T"] = "[DEPRECATED] Summons by Lady Windrunner", + }, + [40394] = { + ["D"] = "Greetings $N, I have received urgent news. Speaker Vereesa Windrunner needs your help as a dangerous situation has begun to escalate and the Alliance leaders are gathering. Please make your way to Alah\'thalas and speak with her.", + ["O"] = "Travel to Alah\'thalas and speak to Vereesa Windrunner.", + ["T"] = "[CANCELLED] Summons by the Alliance", + }, + [40395] = { + ["D"] = "You find this book in an awful condition. After some inspection, you make out the title of the book: \"Guide to a Sailor\'s Stomach\".$B$BIt seems the book had been soaked wet and was left to dry in the sun, one can imagine that after realizing the book can no longer be read it had been abandoned by its owner.$B$BAs you check the end of the book you squint your eyes over the gibberish in front, only for a name to come up in your mind - a familiar name at that: Grayson.", + ["O"] = "Find the owner of the book.", + ["T"] = "Food for Sailing Thoughts?", + }, + [40396] = { + ["D"] = "This is Cookie\'s cookbook, it\'s how I taught him to understand our tongue and how to make a somewhat decent meal.$B$BI tell you, I am not sure if it’s because he\'s a Murloc or not but he barely has a taste for flavor.$B$BI am getting off the sails here.$B$BThe night the ship sank, Cookie fled, leaving all of us to perish. I almost forgot!$B$BI guess my mind gets foggy nowadays, not that I still have a working brain or a consciousness, mind you.$B$BThat motherless Murloc must pay for this bloody mutiny. Bring me proof of his death and I will reward you handsomely$B$BPerhaps I will even be able to move on...", + ["O"] = "End Cookie.", + ["T"] = "Captain Grayson\'s Revenge", + }, + [40397] = { + ["D"] = "This forest used to be bristling with life; it was my home once. Now, it is nothing more than a twisted abomination, a ruin of the beauty that once lay here. Those whom we once called brothers have played a big hand in the corruption of this land.$B$BThe Satyr can be found all across Felwood, lurking amongst the ruins and thinking of ways to further spread their corruption. I hate them with every part of my being, and I have killed many. You will assist me in the slaughter.$B$BBring me 60 horns of these beasts. Once you have retrieved them, I will know that you are capable of what is to come.", + ["O"] = "Slay Satyr and collect 60 horns to fuel the bloodlust of Niremius Darkwind within Felwood.", + ["T"] = "By Any Means Necessary I", + }, + [40398] = { + ["D"] = "You have proven to be a potential ally, and such allies are rare in these parts. If you truly wish to earn my favor, there is something you can do.$B$BThere is an elusive satyr named Pustax, a warped mockery of his previous name no doubt. He has caused much destruction and death in these parts, and has personally slain members of my family. I need his head; he has lived for far too long. He is known to lurk between Shatter Scar Vale and Irontree Woods, so start your search there. Bring me what I desire.", + ["O"] = "Hunt down the Satyr Pustax, and return his head to Niremius Darkwind in Felwood.", + ["T"] = "By Any Means Necessary II", + }, + [40399] = { + ["D"] = "If we truly wish to restore Felwood to its former state, then we must do more than what we have been doing. I have been fighting against corruption endlessly, but with seemingly no progress.$B$BI desire an artifact that was stolen from me many months ago. I came into contact with an orc named Ulathek, who kept his intentions hidden from me. Despite his use of shadow powers, he seemed well-versed and willing to assist me.$B$BHe stole from me a gemstone of great power, which I want back to use for the greater good of this region. This orc now lingers among the cultists and demons of Jaedenar within Shadow Hold, the Barrowden they have corrupted.", + ["O"] = "Venture deep within the Shadowhold in Jaedenar, slay Ulathek, and return the Gemstone of Salthax to Niremius Darkwind in Felwood.", + ["T"] = "By Any Means Necessary III", + }, + [40400] = { + ["D"] = "You have done me a great service in retrieving this artifact from the demonic worshippers. It will be better served in my hands, rather than to serve evil.$B$BWhile I may have used you to further my own goals, I am not a traitor, and I will make it worth your while now that you have achieved what I desired. I will forge a Glaive in my namesake for you, one that can slay all that oppose you, especially those of the Burning Shadow. However, I will not part with such a weapon so easily.$B$BI require one last exchange. Deep within the Sunken Temple are the guardians of the Green Dragonflight, corrupted and twisted from their long slumber in the Emerald Dream. One of their defenders, Hazzas, is one whom I knew long ago. He is a powerful being and should not be tormented any longer.$B$BBring me his heart, and free him from torment. Only then will you earn your reward.", + ["O"] = "Travel to the Sunken Temple, and find the Dragonkin Hazzas, slay him, and return the Heart of Hazzas to Niremius Darkwind.", + ["T"] = "By Any Means Necessary IV", + }, + [40401] = { + ["D"] = "The only thing left is to imbue the blade with my mark to give it the necessary power for its intended purpose. Allow me some time to concentrate and channel my energy, and only then will the blade be ready.", + ["O"] = "Wait for Niremius Darkwind to finish crafting the Glaive.", + ["T"] = "By Any Means Necessary V", + }, + [40402] = { + ["D"] = "You, $r. Tharg sad. Tharg angry!$B$BTharg lost his hitting stick. Hitting stick special, hitting stick made by friend.$B$BTharg\'s friend angry with Tharg, Tharg angry with Tharg. Give friend gift, friend not angry! Bring claws, Bloodfen claws only! Me give reward.", + ["O"] = "Collect 5 Bloodfen Claws for Tharg in Dustwallow Marsh.", + ["T"] = "Need Claws", + }, + [40403] = { + ["D"] = "Tharg made gift.$B$BTharg wants new friend to give gift to old friend. Tharg really sorry he lost favourite hitting stick, it was gift from old friend.$B$BOld friend name Bourok, he left with the little greens, in little green village. Go south, you find Bourok, give this, say Tharg sorry.", + ["O"] = "Bring Tharg\'s Gift to Bourok in Mudsprocket.", + ["T"] = "Tharg\'s Gift to Friend", + }, + [40404] = { + ["D"] = "Me bit happy now, Tharg gave beautiful gift! I send Tharg some big lizard meat, he loves big lizard meat.$B$BMe wishes me had another funny hitting stick for Tharg but me have to ask goblin friend. Me send it later, but no tell! Big surprise!$B$B$B$BGive sack to Tharg, Tharg happy! Goodbye Tharg and me new friend.", + ["O"] = "Bring the Big Sack of Big Lizard Meat to Tharg in Dustwallow Marsh.", + ["T"] = "Return to Tharg", + }, + [40405] = { + ["D"] = "Marsh ugly, stinky!$B$BMe best chef in Kalimdor, but me only cook ugly and smelly things! Me so hungry, me could eat you.$B$B$B$BJoke, joke. But me has idea. Me make ugly spider in good food, give you some too. Hunt for Ogg\'mar, hunt spider, bring white spider meat. Crack them good, hunt them good! Me cook them good, we eat them good together!", + ["O"] = "Collect 10 White Spider Meat from spiders for Ogg\'mar in Dustwallow Marsh.", + ["T"] = "Spider Meat Good", + }, + [40406] = { + ["D"] = "Hello mon!$B$BAnother beautiful day in the marsh, right? Some of the ogres here dislike it, but Balai sees great potential in the marsh.$B$BMany plants and creatures to harvest from for potions and poisons. No better place Balai says.$B$BDo you wish to do Balai a favour? Balai pay nicely. You will need to venture into the marsh and find Withervine Mire Beasts, kill them, bring me the core and you get paid.$B$BThe Mire Beast core can be a strong poison if altered properly, the Warchief said not to touch the humans of Theramore but if they come too far, Balai will know how to deal with them!", + ["O"] = "Collect 5 Withervine Mire Beast Core\'s for Balai Lok\'wein in Brackenwall Village.", + ["T"] = "Balai\'s Experiment", + }, + [40407] = { + ["D"] = "It has been years since the invasion of the Burning Legion during the Third War, and while they have been defeated, they still hold much sway upon Azeroth. Demonic magic is extremely potent, and it is something I have been tasked with studying.$B$BIn the region of Desolace within an area known as Mannoroc Coven there is quite a sizeable demonic presence. It is there that I ask of you to acquire a Mannoroc Demonic Sigil, finding one may be rare, but if we are to have a chance to defeat the Burning Legion, then we must know all that we can.$B$BSlay them, and bring me one of their sigils for study.", + ["O"] = "Acquire a Mannoroc Demonic Sigil for Magus Halister at Theramore Isle in Dustwallow Marsh.", + ["T"] = "Mannoroc Demonic Sigil", + }, + [40408] = { + ["D"] = "Say, since you stopped by how about we have ourselves a nice meal, it\'s been a bit since I\'ve been able to enjoy my special recipe! I damn near hunted all the Darkfang in the area, so you\'ll have to venture further out into the swamp to go and get me some of their juicy legs!$B$BFive should do, the Darkfang spiders are practically everywhere in the swamp, but especially so around the Quagmire down in the south west.$B$BOh, and make sure they\'re extra juicy, I won\'t take no dang-nabbit unjuicy spider legs now, yahear?", + ["O"] = "Gather 5 Extra Juicy Darkfang Legs for \"Swamp Eye\" Jarl at Swamplight Manor in Dustwallow Marsh.", + ["T"] = "Juicy Darkfang Legs!", + }, + [40409] = { + ["D"] = "I\'ve lived at this lighthouse for a long time now, and if there is anything that has bothered me most it\'s those damned Mirefin. They often venture deep out within the ocean and upon the shorelines to the north, but as of recently they have come down here if only to drive me mad and steal my things!$B$BThe Theramore Guard cannot have someone staying here full time, especially with us being seperated by a boat ride.$B$BI ask of you to rid me of their annoyance, and for good. I feel like its only a matter of time before they do something more serious. You can find them all along the coast up to the north and on small little islands. Bring me twenty of their claws and thin out their numbers so they think twice before coming so far south.", + ["O"] = "Collect 20 Mirefin Claws for Old Bryan at the Theramore Lighthouse.", + ["T"] = "The Mirefin Nuisance", + }, + [40410] = { + ["D"] = "It was about a week ago now when the damned Mirefin raided my Lighthouse and got off with all manner of supply I had been building up. A few weeks of food rations and some tools, but most importantly oil for the Lighthouse!$B$BThe Lighthouse in Theramore runs from oil collected in other parts of the world, and of which we only get a shipment in at the start of every month, without it, the Lighthouse will die out. I do not need to tell you how vital this Lighthouse is especially for a port city like Theramore.$B$BI ask of you to gather it back from the Mirefin Murlocs, no doubt they have it stashed among their hovels up to the north west, make sure to check the isles there, they practically infest them.", + ["O"] = "Gather the Lighthouse Oil Barrel for Old Bryan at the Theramore Lighthouse.", + ["T"] = "Stolen Oil", + }, + [40411] = { + ["D"] = "Oh, how it is to be docked and not sailing the vast, and boring sea for months on end. All this time to myself and some dry land to stand upon, I just wish I had one thing.$B$BI have a contact out in Steamwheedle Port that has been my hookup for a while now, and if you wouldn\'t mind picking up a special \'package\' for me, it would be much appreciated!$B$BAt the port there is a goblin named Jabbey, he can almost get you anything you need, that is if you have the coin for his \'premium wares\' he calls it. Head out there, and pick up a package for \'Groy\' he\'ll know what I\'m looking for.", + ["O"] = "Pick up the special package and return it to Privateer Groy at Theramore Isle in Dustwallow Marsh.", + ["T"] = "The Good Snuff", + }, + [40412] = { + ["D"] = "You wouldn\'t mind running a delivery would you? I got one that\'s a bit overdue, and that\'s mostly because my main delivery guy got reassigned back to Stormwind.$B$BIf you don\'t mind a bit of dangerous trekking, I got a crate of goods that needs to be sent to Jarl out at Swamplight Manor. It shouldn\'t be too hard to find, just follow the road northwest out of Theramore, keep going for a while after Sentry Point Tower until you see a small dirt pathway that leads to the right.$B$BOnce you see it, you\'ll see it, Jarl usually leaves a bunch of torches lit, just- don\'t startle him, the guys a bit... Quirky.", + ["O"] = "Deliver Jarl\'s Package to \"Swamp Eye\" Jarl at Swamplight Manor in Dustwallow Marsh.", + ["T"] = "Delivery Overdue", + }, + [40413] = { + ["D"] = "Hey there, I\'m in need of assistance if you don\'t mind giving some. I have a delivery I need run to the Theramore Lighthouse to Old Bryan that resides there. His food delivery has run a little late and I need it to get to him as soon as possible.$B$BYou can find the Theramore Lighthouse just off the coast to the north east, the bright shining light should be enough to guide you.", + ["O"] = "Bring Bryan\'s Food Delivery to Old Bryan at the Theramore Lighthouse in Dustwallow Marsh.", + ["T"] = "Old Bryan\'s Food Delivery", + }, + [40414] = { + ["D"] = "The local murlocs are becoming more, and more of a threat as time continues, they are no longer confined to just the depths or the shore, and are often seen traveling inland, or harassing locals.$B$BThey are led by a large, foul beast named Marglum Blood-eye, a hulking abomination of a murloc that patrols the coastline to the north-east shoreline.$B$BFind him, and bring his head to me, and I will make sure you are rewarded.", + ["O"] = "Find Marglum Blood-eye along the coast northwest of Theramore and bring his head to Sergeant Terresa on Theramore Isle.", + ["T"] = "Marglum Blood-eye", + }, + [40415] = { + ["D"] = "Hey there, you look tough enough to handle yourself, and Theramore is in need of some assistance. My last runner was ambushed on the roadway, and suffered a rather grevious wound. If we want to keep our defence of the roadway through Dustwallow then we need to remain steadfast.$B$BAs such, I haven\'t received the weekly reports from both Sentry Point, and North Point.$B$BI want you to report to Captain Wallace Cross at Sentry Point Tower, and Captain Harker at North Point Tower, and bring their reports back to me.", + ["O"] = "Collect the Sentry Point Report, and the North Point Report for Colonel Breen at Theramore Isle in Dustwallow Marsh.", + ["T"] = "Reports of Dustwallow", + }, + [40416] = { + ["D"] = "I once came from the city of Stormwind, and traveled to Kul Tiras, that was before the fleet ventured here, to Theramore. Ever since me and my brother have been seperated and while I have heard good things about him, and his business I haven\'t had any opportunity to deliver a letter, especially being stuck here at my post.$B$BIf you ever find yourself in Stormwind, would you mind stopping by The Silver Shield in the Old Town of Stormwind? My brother Bryan is the one that runs the place, and it would mean the world to me if you could run him this letter.", + ["O"] = "Deliver Wallace\'s Letter to Bryan Cross in Stormwind City.", + ["T"] = "Delivery to Cross", + }, + [40417] = { + ["D"] = "While you are still here, could I ask of you a favor? I desire to send my brother something that perhaps can assist him. As much as he down plays his work in Theramore, I do know from stories I have heard that the swamp is crawling with all manner of orc and dragon.$B$BI had a fireheated shield made some time ago, and haven\'t had the chance to sell it yet, I would much rather that it gets to him out there, then to sit in my shop and collect dust, aside, there is no finer gift I can give.$B$BTake this shield to him out in Dustwallow Marsh, it would mean quite a lot to me.", + ["O"] = "Deliver Bryan\'s Fireheated Shield to Captain Wallace Cross in Dustwallow Marsh.", + ["T"] = "Delivery to Wallace", + }, + [40418] = { + ["D"] = "With each passing week the roadways get more and more dangerous. Nature here is ever encroaching, always looking to gain more and more ground. If we want to keep our forward sentries supplied then the road to Northpoint must remain secured.$B$BOur biggest threat is currently the Bloodfen Raptor\'s that have been breeding to the north of us.$B$BIf you could find a way to rid Northpoint of this threat, I would see to it that you were paid accordingly, I am sure Theramore could find a way to reimburse your troubles.$B$BHead to the north, and slay the Bloodfen Screechers you find there.", + ["O"] = "Slay 14 Bloodfen Screechers for Captain Harker at Northpoint Tower in Dustwallow Marsh.", + ["T"] = "Securing Northpoint", + }, + [40419] = { + ["D"] = "Soldier, we need you.$B$BA Few weeks ago I sent a small expeditionary force south, to Blasted Lands. I haven\'t gotten a word from them since. Go there, and see what happened. I ordered them to set up a camp in proximity to the Dark Portal, if it helps.", + ["O"] = "Find the missing expedition in Blasted Lands.", + ["T"] = "A Blasted Land", + }, + [40420] = { + ["D"] = "We have no presence in Blasted Lands. The Alliance, on the other hand, occupies a large fort north of our current position. They haven\'t interrupted our operations in the region.$B$BYet.$B$BI need you to check what are they planning. There has been a lot of movement lately in a cave close to Nethergarde. See what is happening there. Try not to kill too many of them. We don\'t want an open war with the Alliance.", + ["O"] = "Scout the cave next to Nethergarde Keep for Sorlugg in the Blasted Lands.", + ["T"] = "Nethergarde Scouting", + }, + [40421] = { + ["D"] = "The Shadowsworn cultists have been giving us a hard time here. In the last two days we faced three attacks from them. They were weak, and we managed to fend them off. I fear that in the future, they will send a bigger force.$B$BWe need to act quicker. Venture into the wasteland, find their strongholds, and thin their ranks. Buy us more time.", + ["O"] = "Slay 12 Shadowsworn Cultists and 8 Shadowsworn Thugs for Jaiymu in the Blasted Lands.", + ["T"] = "The Shadowsworn Enemy", + }, + [40422] = { + ["D"] = "In the northwest corner of Blasted Lands, an old Altar of Storms looms over the wastes. Around it, elite soldiers of the Shadowsworn gather. I was never able to get closer to them, but with your strength, it should be an easy enough task. Kill them, and interrupt whatever they do.", + ["O"] = "Slay 10 Shadowsworn Warlocks, 5 Shadowsworn Enforcers, and 5 Shadowsworn Dreadweavers for Jaiymu in the Blasted Lands.", + ["T"] = "Shadowsworn Altar", + }, + [40423] = { + ["D"] = "Do you know what is the worst here? Not the heat, not the demons. Not even the alliance, sitting comfortably in their castle. It\'s the ogres. Why ogres? Because I hate them. And that’s a reason good enough.$B$BThat, and of course, they are a danger to our mission.$B$BBring me twenty ogre heads. Of any ogre, I don\'t care. I will personally write about your victory in the report.", + ["O"] = "Bring 20 Dreadmaul Heads to Bagaroh in the Blasted Lands.", + ["T"] = "Blasted Ogres!", + }, + [40424] = { + ["D"] = "Thanks to your actions, we have been able to rest for a while. I also wrote the report for Ruag. Deliver it, and remind him to send some booze too next time he thinks we need help.$B$BBlood and honor, friend. You helped us and the horde today.", + ["O"] = "Deliver the Blasted Lands Report to Dispatch Commander Ruag in Stonard.", + ["T"] = "Report from a Blasted Land", + }, + [40425] = { + ["D"] = "Long has it been rumored that the mystical ninth volume of the Arcane Intricacies and Magical Phenomenon has been stashed deep within the Stormwind Vault. So long has it been gone that it has almost become legend, the secret -lost- tome.$B$BWell, it is a secret no longer, and it needs to be recovered before some vile vagrant gets their hands on something so rare.$B$BWithin Stormwind Vault lays this book, it needs to be recovered so that I can complete my records of it.", + ["O"] = "Recover the Tome of Arcane Intricacies and Magical Phenomenon IX for Mazen Mac\'Nadir in Stormwind.", + ["T"] = "The Tome of Arcane Intricacies and Magical Phenomenon IX", + }, + [40426] = { + ["D"] = "Back when the Vault first was opened, it was used to house the most dangerous prisoners, to contain magical entities and the insane alike, we used Runic Constructs to patrol the hallways!$B$BThese Runic Constructs have fallen corrupt from the intense magic within the Vault, and need to be destroyed, their powerful bracers are what keep them intact, and they need to be recovered! I have plans to test what exactly went wrong with these bracers.$B$BYou can find them within the Stormwind Vault, slay them, and bring me a pair of Shackles, I will make sure you are rewarded for the task.", + ["O"] = "Within the Stormwind Vault, slay Runic Constructs for 2 Runic Shackles, return them to Koli Steamheart.", + ["T"] = "Recovering Vault Shackles", + }, + [40427] = { + ["D"] = "Many years ago the wizards of Stormwind discovered a large crystal that held an intense amount of magical energy. This crystal we named Arc\'Tiras, and stashed it deep within the Stormwind Vault after many mishaps with the unstable magic it emitted.$B$BLittle did we know this crystal, Arc\'Tiras had a mind of it\'s own.$B$BIt has driven the guards mad, and turned the Stormwind Vault into nothing more than corridors of madness. Our magic is enough to hold the crystal at bay, for now, but it needs to be destroyed, and for good.$B$BTravel into the Stormwind Vault, put an end to this madness.", + ["O"] = "Venture deep within The Stormwind Vault, find Arc\'tiras, and slay him for the good of Stormwind. When done, return to Pepin Ainsworth.", + ["T"] = "Ending Arc\'Tiras", + }, + [40428] = { + ["D"] = "Hey you, do you think you can help?$B$BThe Garrison Armory is nothing more than a trogg infestation. A trogg infestation that claimed the lives of twelve workers. It was one of the last dangers we ever expected to face, but when they came in, they came in fast.$B$BThe dead need to be avenged, and the mine needs to be cleared out for our own security.$B$BThe miners and I have collected enough coin to pay for someone to do the job right, go in there and clean it out good, don\'t show them mercy.", + ["O"] = "Slay 10 Boulderclaw Tunnelers, 8 Boulderclaw Geomancers, 8 Boulderclaw Bashers, and 6 Boulderclaw Ambushers for Foreman Tanoth at the Garrison Armory in Blasted Lands.", + ["T"] = "The Garrison Armory Disaster", + }, + [40429] = { + ["D"] = "The Garrison Armory is a place Nethergarde has stored extra supplies for some time now, and before long there will not be anything left if the troggs trample, and destroy it all.$B$BI need you to go in there, and recover atleast ten Garrison Armory Supply Caches, that way when this mess is over, and the dead are buried, we can return to work, and still have the tools to do so.$B$BVenture inside, and see if you can recover them for me.", + ["O"] = "Collect 10 Garrison Supply Caches within the Garrison Armory for Foreman Tanoth at the Garrison Armory in Blasted Lands.", + ["T"] = "Recovering Armory Supplies", + }, + [40430] = { + ["D"] = "Ogres, oh how I hate em! If it aint demons then it\'s ogres!$B$BThe Dreadmaul came with the orcs during the First War, and they\'ve been a sore on these lands ever since they arrived. They are responsible for a lot of the dead and they need to be dealt with.$B$BWe currently have a bounty on their skulls, bring me thirty of them, and I\'ll give you something worth your time $c.$B$BYou can find the Dreadmaul to the west, and southwest, goodluck!", + ["O"] = "Collect 30 Dreadmaul Skulls from Dreadmaul Ogres in the Blasted Lands for Harguf at Nethergarde Keep.", + ["T"] = "Dreadmaul Skull Bounty", + }, + [40431] = { + ["D"] = "Lookin\' for some work eh? Well we got a bounty on those Shadowsworn cultist types if you\'re interested. Not sure when they started coming around, but more and more of em been gathering over the last couple months.$B$BNow I don\'t know a thing about dark magic, but it certainly isn\'t good! If you don\'t know where to look, search in the south, and southwest, you\'ll find them quick!$B$BCollect me twenty of their pendants, and come back, I\'ll see to it that you get something worth the effort.", + ["O"] = "Collect 20 Shadowsworn Pendant\'s from Shadowsworn in the Blasted Lands for Harguf at Nethergarde Keep.", + ["T"] = "Shadowsworn Pendant Bounty", + }, + [40432] = { + ["D"] = "The Garrison Armory is a disaster, many of our miners have been slain, and troggs run loose destroying our progress.$B$BIf work is to ever continue there, we must do more than kill some troggs, we must cut the head off the beast, and slay their leaders.$B$BThe troggs that took over the Garrison Armory go by the name \'Boulderclaw\' and are led by two big monsters named Kroshmak and Gorlush.$B$BTravel into the depths of the mine to the west, and slay their leaders, bring me one of their claws as proof.", + ["O"] = "Gather the claw\'s of Gorlush the Trampler, and Kroshmak the Smasher in the Garrison Armory for Commander Baelos at Nethergarde Keep.", + ["T"] = "The Smasher and the Trampler", + }, + [40433] = { + ["D"] = "Nethergarde is an isolated, and rather desolate place. We rely on a large garrison to help stem the tide of a potential demonic invasion, should such an occasion ever occur.$B$BThe soldiers under my command have homes and families, and morale here is paramount. I rely on my sergeants to give me a situation report on the status of those beneath me.$B$BAs of current the only one I am waiting from is from Sergeant Burnside, would you do me a favor, and collect it from him? You can find him somewhere outside the gate, he is probably with his troops.", + ["O"] = "Find Sergeant Burnside and collect his report, deliver the Report from Burnside to Commander Baelos at Nethergarde Keep.", + ["T"] = "Report from Burnside", + }, + [40434] = { + ["D"] = "It has come to my attention that a dark magic has been growing in power within the region. Our Analyser Wigglestip has documented an extensive amount of magic being introduced into the area.$B$BThere is no doubt that the Shadowsworn would be the ones utilizing such forces. Those that gather around the Altar of Storms are to blame, and our reports only confirm that.$B$BI need someone to dispatch of the Dreadweavers that spread the corruption. Who knows what plans they have in motion, but I do not intend to sit around to find out.", + ["O"] = "Slay 8 Shadowsworn Dreadweavers for Commander Baelos at Nethergarde Keep.", + ["T"] = "Suppressing the Dreadweavers ", + }, + [40435] = { + ["D"] = "The energy radiating off of the Dark Portal is sheerly astounding, and it\'s given me so many research opportunities that I do not know where to start! I was employed here as an analyst to watch the ever shifting arcane magic within the region, and its incredibly unstable, so unstable infact that it has warped the boars close to the portal itself, turning them into \'Helboar\'!$B$BI know it sounds like something straight out of fantasy!$B$BI need you to get me a Pristine Helboar Brain, to see just how much the creature has been altered by the intense energy of the Dark Portal.", + ["O"] = "Collect a Pristine Helboar Brain for Engineer Wigglestip at Nethergarde Keep.", + ["T"] = "Genetic Alteration Anomaly!", + }, + [40436] = { + ["D"] = "Hey, you there, I need your help.$B$BAbout a week ago on one of our patrols we ended up being attacked by a group of ogres, these ogres were fierce enough to make us retreat. During the struggle one of my Private\'s was captured by the Dreadmaul.$B$BI don\'t know where they have taken him, but I want you to find him, I can\'t risk any more of my soldiers on such a mission.$B$BIf I was you I would search their camps, both to the west, and southwest, he may be in one of them.", + ["O"] = "Find Private Holson in the Blasted Lands.", + ["T"] = "Finding Private Holson", + }, + [40437] = { + ["D"] = "$B$BBut if you manage to find Vandol, tell him that his old colleague sends his regards. And if you fail, well...let\'s just say that I have a way of dealing with people who waste my time.", + ["O"] = "Ask someone in Brackenwall Village about the whereabouts of Vandol.", + ["T"] = "The Key to Karazhan IV", + }, + [40824] = { + ["D"] = " What do you think, that we are spying on Theramore? Ha! As if we\'d waste our time on those weaklings. No, no, my friend. It\'s just a coincidence that we happened to come into possession of their ledgers. They lost them somewhere in the swamp, it seems. Lucky for us, eh?$B$B$B$BLet\'s see here... Ah, yes. V-A-N-D-O-L. He arrived via boat about four years ago, and then departed on a small ship heading south along the coastline. That\'s all we\'ve got to go on, I\'m afraid.$B$BNow, if you\'re really keen on finding him, I suppose you could try hiring a boat from the smugglers and sailing along the coast. Just be careful, though. There are rumors of a vengeful sailor who\'s been terrorizing the shores lately.", + ["O"] = "Find Vandol. He is living somewhere on the eastern coast of Kalimdor, south of Theramore.", + ["T"] = "The Key to Karazhan V", + }, + [40825] = { + ["D"] = "So, you come seeking my help to repair the key to the Upper Chambers of Karazhan. It seems my past association with Medivh has once again come back to haunt me, but I suppose that\'s the price I must pay.$B$BMedivh himself knew the risks of what he was doing, but his insatiable thirst for knowledge and power blinded him to the consequences of his actions.$B$BWe must proceed with caution. Are you prepared to face the dangers that await, knowing that the powers you seek may be too great for you to handle?$B$BStay awhile and listen.", + ["O"] = "Listen to Vandol\'s story.", + ["T"] = "The Key to Karazhan VI", + }, + [40826] = { + ["D"] = "Regrettably, my knowledge of the whereabouts of Medivh\'s Echoes is limited. To begin your search, I suggest visiting the locations that Medivh frequented during his second life, when he returned to redeem himself and prepare for the impending Third War. These events are relatively recent, so the Echoes should be easier to locate and more potent.$B$BIt is likely that the Echoes of Medivh\'s presence will be accompanied by objects that once belonged to him. Perhaps a stray feather from his cloak, or some other memento that carries his essence.$B$BHowever, time is of the essence, and you must act quickly. Go forth and begin your search for at least four of his Echoes. I believe this should be enough to recharge the key and unlock the chambers of Karazhan.", + ["O"] = "Find four Echoes of Medivh. They might be found in places of great significance for the mage. Then return to Dolvan with the key.", + ["T"] = "The Key to Karazhan VII", + }, + [40827] = { + ["D"] = "$B$BIt appears that there is an interruption in the flow of arcane energy through the key. Upon further inspection, I have discovered that the crystals that hold the key together have been damaged beyond repair. Unfortunately, I do not possess the skills to fix them, and we will need to obtain new crystals to restore the key\'s functionality.$B$BI have heard rumors of a demon named Immol\'thar who resides deep within the dungeons of Dire Maul. According to legend, his skin is adorned with peculiar gems that could potentially be used to repair the key. However, be warned that Immol\'thar is a formidable foe, and the journey to reach him will not be easy.", + ["O"] = "Slay Immol\'thar in Dire Maul, retrieve gems from his skin, and return to Vandol.", + ["T"] = "The Key to Karazhan VIII", + }, + [40828] = { + ["D"] = "$B$BI cannot comprehend. This does not work. I believed I was well-versed in the sorcery of Medivh, but alas, I have been proven wrong. This man possessed great talent, if only...$B$BBut I digress. We must repair the key, and there remains one final possibility that comes to mind.$B$BI require a rare tome, penned in times long past by Aegwynn, entitled \"Treatise on Magical Locks and Keys\". It has been lost since the destruction of Dalaran, but whispers suggest it is now held by none other than Lord Victor Nefarius...$B$BThis is our only chance. Retrieve the tome.", + ["O"] = "Find \"Treatise on Magical Locks and Keys\" and bring it back to Vandol. It is rumored to be kept in Blackwing Lair.", + ["T"] = "The Key to Karazhan IX", + }, + [40829] = { + ["D"] = "$B$BI\'m ready. Let us reforge the key.", + ["O"] = "Witness the reforging of the Key to the Upper Chambers.", + ["T"] = "The Key to Karazhan X", + }, + [40830] = { + ["D"] = "It may seem dreary here in Gilneas, though I must assure you this was not always our reality. In times past, I spent many years studying under my masters\' tutelage, and painting great manuscripts for the Light. I spread the faith and broke bread with many fine folk.$B$BThere are a foolish few who would assume we went unscathed during the perilous times of the Third War. Whilst we may not have suffered directly from the plague as our northern cousins have, we did have conflict with the Scourge.$B$BYou see, two years ago, a powerful lich named Naze the Eternal breached the wall near Oldrock Pass. Ultimately, the undead were defeated by the good soldiers of Gilneas, but our victory was paid at a terrible toll.$B$BI was lucky to escape Greyshire with my life, others were not so fortunate. I ask of you to scour that forsaken place, and recover the manuscripts that I spent my younger years painting. While you are there, bring peace to some of the forlorn souls that still remain.", + ["O"] = "Recover the Greyshire Manuscripts from the Ruins of Greyshire for Father Oblen at Shademore Tavern in Gilneas.", + ["T"] = "Scouring Greyshire", + }, + [40841] = { + ["D"] = "Have you heard of the tidings from the north? The Greymane Wall lies open at last.$B$BI never thought I would see the day after hearing all the horrible things I did, and by the sounds of it, things don\'t bode well. Still, within Gilneas City one of my dearest friends used to work with a rare material called \'Dawnstone\' which could only be found within Gilneas itself.$B$BI have no doubt his patterns are still within his shop in the city, and I ask you to recover them for me. I would advise to bring some comrades in arms along with you; word has it that there is unrest, entailing worgen and civil war, so it certainly is not a safe place to venture alone.", + ["O"] = "Venture into Gilneas City and recover the Dawnstone Plans for Therum Deepforge in Stormwind.", + ["T"] = "Behind The Wall", + }, + [40842] = { + ["D"] = "The foul demons dare to challenge us by occupying a stronghold south of Forest Song, in the wretched Demon Fall Canyon.$B$BSadly, the Sentinels stubbornly refuse to lend me aid, while our true enemy grows stronger and prepares for another invasion.$B$BIt is imperative that we take action: I urge you to journey into their territory and thin their numbers. Eliminating at least ten demons of each kind you come across will send a powerful message.$B$BThese fiends must be banished back into the Twisting Nether, never to desecrate our sacred groves again.", + ["O"] = "Slay 10 Searing Infernals, 10 Felguards and 10 Mannoroc Lashers for Delos Talonheart at Forest Song in Ashenvale.", + ["T"] = "The True Enemy", + }, + [40843] = { + ["D"] = "Have you ever wondered why the Demon Fall Canyon bears its name?$B$BFour years ago, an ancient enemy of our people, the Pit Lord Mannoroth, returned to destroy our world. It was there that one of his most cruel Orcish servants, Grommash Hellscream, the callous murderer of Cenarius, betrayed his own master and sought to slay him.$B$BIn the end, Mannoroth and Grommash killed each other in the struggle, doing us all a great favor.$B$BBut the weapon that Mannoroth brandished still lies shattered in the canyon, and it is said that a powerful satyr by the name of Varaxxius plots to reforge it and use it for his own nefarious purposes.$B$BPut an end to this satyr\'s schemes at once.", + ["O"] = "Slay Varaxxius, who is rumored to reside in Demon Fall Canyon and return to Delos Talonheart in Forest Song.", + ["T"] = "The Fall in Demon Canyon", + }, + [40844] = { + ["D"] = "Luke Agamand was always the outcast among his family. Disowned and banished, he found his way into my notice and joined our crew.$B$BHis old home was one of his first raids. I have entrusted a task to him personally, and you will ensure that he succeeds.", + ["O"] = "Speak with Luke Agamand at Blackthorn\'s Camp in Gilneas.", + ["T"] = "Report to Luke Agamand", + }, + [40845] = { + ["D"] = "There is a mine up in the hills, Dryrock Mine I believe the locals call it, responsible for providing the Gilnean army with Mithril ore. The boss believes this Mithril is far better suited to supply the Horde, wouldn\'t you agree?$B$BTravel up to the mine, kill anyone who tries to stand in your way, and acquire 16 Sacks of Mithril Ore. Return to me when you\'ve finished the job.", + ["O"] = "Gather 16 Sacks of Mithril Ore from Dryrock Mine for Luke Agamand in Blackthorn\'s Camp.", + ["T"] = "Heist in Dryrock Mine", + }, + [40846] = { + ["D"] = "Livia has been part of this outfit since the very beginning. If she judges you worthy, then so will I.$B$BI have given her a task of the utmost importance. Go assist her.", + ["O"] = "Seek out Livia Strongarm at Blackthorn\'s Camp in Gilneas.", + ["T"] = "Report to Livia Strongarm", + }, + [40847] = { + ["D"] = "Our intelligence on this region is poor. We knew Gilneas was an isolationist nation, but we did not expect it to be in such a miserable state.$B$BBeing among the living, we have no trouble blending in to conduct espionage. One of ours has assumed the name \"Greta Longpike\", who in her last missive reported she had infiltrated a settlement named Greyshire.$B$BSeek her out and tell her \"Night Lady, gold in mouth at dawn\". That is the code phrase. She will give you a report, the details of which are of vital importance, that you are to bring back to me.", + ["O"] = "Travel to the Ruins of Greyshire, locate Greta Longpike, and acquire the Sealed Report for Livia Strongarm at Blackthorn\'s Camp in Gilneas.", + ["T"] = "Rendezvous with the Infiltrator", + }, + [40848] = { + ["D"] = "You may wonder why a gaggle of humans are working with the Horde. The answer to that question lies in the Civil War in the Plaguelands, when we Forsaken first gained liberty...$B$BYes, we Forsaken. You see, I am a banshee currently possessing Blackthorn, and I have convinced his band of cutthroats to fight for us. Rest assured, I am not alone in this endeavor.$B$BIf you wish to know more, then you will need to earn my trust. Some of those naga creatures have been encroaching upon the camp from the beach. Slaughter them and we will resume our conversation upon your triumphant return.", + ["O"] = "Slay 8 Spitecrest Netters for Blackthorn at Blackthorn\'s Camp in Gilneas.", + ["T"] = "Quality Time with Blackthorn", + }, + [40849] = { + ["D"] = "Storytime is over. The time to act is at hand. I have read the report you retrieved from Livia, and I have decided how best to proceed.$B$BKing Genn Greymane was ever a force to be reckoned with in the old Alliance of Lordaeron. His strength and shrewdness were only matched by his stubbornness and pride. He cannot be allowed to wrest control over his crumbling kingdom once more.$B$BVenture into his city with as many comrades as you can find and bring me his head.", + ["O"] = "Enter Gilneas City and slay Genn Greymane, then bring his head to Blackthorn at Blackthorn\'s Camp in Gilneas.", + ["T"] = "Genn Greymane Must Die!", + }, + [40850] = { + ["D"] = "The Dark Lady has a task for a capable $c such as yourself that would benefit the interests of the Horde.$B$BOne of the Banshee Queen\'s agents has been sent to Gilneas in order to survey the situation, acquire assets for the Horde, and evaluate whether the area is suitable for exploitation by the Forsaken.$B$BThe Greymane Wall was recently breached and the nation it once protected is in chaos, granting us access and an opportunity. Follow the road south into Gilneas, circle around the city, and you will find a camp by the western shore occupied by Blackthorn.$B$BYou may be surprised by the nature of his followers, but rest assured that he and his minions are devoted in their service to the Horde and the Dark Lady. Report to him and he will make good use of you.", + ["O"] = "Seek out Blackthorn at Blackthorn\'s Camp in Gilneas.", + ["T"] = "To Gilneas", + }, + [40851] = { + ["D"] = "While our scouts were surveying these lands, they encountered a contingent of Forsaken in the northeast. We have not received any information that we would be getting reinforcements, or that any other Forsaken would be here.$B$BPerhaps you would be interested in investigating? These Forsaken were located by a church in the northeast the locals call Stillward Church. If they need assistance, it is our duty to our Forsaken brethren to provide it.", + ["O"] = "Seek out the Forsaken at Stillward Church in Gilneas.", + ["T"] = "Forsaken at the Church", + }, + [40852] = { + ["D"] = "With all the troubles around here, I find myself having to turn to every mercenary with a sword to get things done. It\'s an unenviable position, to say the least.$B$BSay, I\'m not paying you to listen, and you\'re not here to hear me talk. North of here, in their mounds, are significantly more ogres than I am comfortable sharing the area with. Go and relieve them of their heads. Bring me twenty, and I will organise payment.$B$B", + ["O"] = "Bring 20 Brol\'ok Ogre Heads to Sergeant Arbington at Ravenshire in Gilneas.", + ["T"] = "Brol\'ok Ogre Bounty", + }, + [40853] = { + ["D"] = "Truthfully, $N, I don\'t really care how many dumb ogres are killed by gold-a-dozen mercenaries. Whether it\'s you or some other that brings me a bag of heads, it makes no difference.$B$BOh, don\'t look at me like that, you know I\'m right. Anyway, if you want something meaningful to do, listen: our scouts overheard that two ogres are vying for power amongst the Brol\'ok. One of which calls himself Shinban Four-Eyes. A two headed ogre with three actual eyes, claims the fourth is a hidden one that gives him the vision required to lead!$B$BI would be worried about that, $N. Either he is telling the truth and is a caster powerful enough to have magical sight, or he is smart enough to understand metaphors. Both are worrying. Regardless, he is your primary target.", + ["O"] = "Slay Shinban Four-Eyes, and bring his staff to Sergeant Arbington at Ravenshire in Gilneas.", + ["T"] = "The Staff of Shinban", + }, + [40854] = { + ["D"] = "Greetings, $N.$B$BIt is rare that I admit my incorrect assumptions, but I must atone for this one. I previously thought the ogres of Brol\'ok should be allowed to grow and fester, like a pustulant sore, right next to Ravenshire. Let the living there be the ones to suffer with it.$B$BBut alas, whatever still holds vigil over this godforsaken land has a sense of irony. It was just last night that I saw a group of ogres attack, and kill, one of our own Deathstalkers. Out of my own pocket, I now purchase vengeance. Bring me twenty of their heads, and be rewarded.", + ["O"] = "Bring 20 Brol\'ok ogre heads to Deathstalker Vernon at Stillward Church in Gilneas.", + ["T"] = "Vernon\'s Task", + }, + [40855] = { + ["D"] = "Recent events have made me reconsider my outlook on life. Or, lack thereof.$B$BWhat is it that demands the most respect in this world, $N? I would say that is power. Raw and unadulterated. Sheer strength of will, force of arm, power. And what causes any kingdom to fall into ruins, to crumble into ash? The loss of leadership, the lack of power!$B$B Ah, forget my musings and ramblings, I have much too much time and much too much contempt. To speak plainly: the Brol\'ok have a champion vying for power in their little mounds, known as Maulfist. He is called a chief, even amongst the ogres, so he must be exceptionally powerful... bring me his crown, if you can. I will reward you handsomely if so.", + ["O"] = "Bring the Crown of Maulfist to Deathstalker Vernon at Stillward Church in Gilneas.", + ["T"] = "A Chief Among Brutes", + }, + [40856] = { + ["D"] = "Gnomeregan\'s intricate network of ducts, pipes, channels, vents, and airways are essential for maintaining a healthy flow of air. However, they also circulated the toxic gases that had such a devastating impact on our brethren.$B$BAs a precaution, we established a comprehensive backup system that redirects the airflow in case of an emergency. Unfortunately, many of these channels have been closed off and sealed, necessitating the manipulation of levers and valves to reactivate them.$B$BWe require your technical expertise to access two crucial access points within the city. The first is the Alpha Channel, which is responsible for our backup power generation and is located in the Engineering Labs. The second is the Reserve Pump Channel, found near the Launch Bay, which is essential for the operation of our reserve air pumps.$B$BThese channels must be activated! We must return the great city of Gnomeregan to the marvel of technology that it once was!", + ["O"] = "Activate the Alpha Channel Valve and the Reserve Pump Channel Lever deep within Gnomeregan for Master Technician Wirespanner in Dun Morogh.", + ["T"] = "Backup System Activation", + }, + [40857] = { + ["D"] = "Greetings adventurer, I am Teezle Dualflash, once widely known in Gnomeregan, and I have returned with valuable information that could greatly aid our cause. I have discovered the identity of the leader of the leper gnomes who has been causing chaos on the surface, and his name is Neevan Gubblewire. He has been rallying the lepers to his cause, continually causing trouble for the reclamation facility, hindering our efforts, and threatening the future success of our cause.$B$BThat is why I implore you, brave adventurer, to help us bring Neevan Gubblewire to justice. It will not be an easy task, but it must be done. You should be able to find him somewhere on the surface outside of Gnomeregan to the south of here. Will you help me with this matter?", + ["O"] = "Slay Neevan Gubblewire for Teezle Dualflash at the Gnomeregan Reclamation Facility in Dun Morogh.", + ["T"] = "Removing Leper Leadership", + }, + [40858] = { + ["D"] = "You wouldn\'t happen to have seen Technician Stormlight around have you? Small stature, bald, brown goatee?$B$BI\'ve been waiting for an access terminal repair for practically a full day now, and I need his work done before we can continue our procedures. If you could, find him and tell him to hurry it up. He should still be inside the Reclamation Facility.", + ["O"] = "Find Technician Stormlight within the Gnomeregan Reclamation Facility in Dun Morogh.", + ["T"] = "Work Overdue", + }, + [40859] = { + ["D"] = "I have been expecting a shipment from Tinker Town for a few days now. You see, a lot of our rare materials were sent over here once we got things settled. A lot of my work on these access panels needs a Hydrocondensor Modulator, but it was stolen on the trip here by a group of leper gnomes. They ransacked quite a few valuable goods.$B$BNow, getting hold of a new one is not an easy task. We could only construct them in Gnomeregan, so unless you want to go digging through that trogg infested ruin, I suggest you look for the one that got stolen. Try rooting around the old houses to the south of here, no doubt they have it stashed somewhere safe.", + ["O"] = "Find the Hydrocondensor Modulator for Technician Stormlight at the Gnomeregan Reclamation Facility in Dun Morogh.", + ["T"] = "Hydrocondensor Modulator", + }, + [40860] = { + ["D"] = "When Gnomeregan was built many years ago we had access to all sorts of materials from around the world. Dawnstone, one such material that we used, was excellent for being a coupler of energy. It was highly resistant to both magical, and powerful currents of energy. Making it highly versatile in its uses.$B$BWe have been unable to recreate any replicas to fix those that have broken down, having to replace them with subpar stand-ins that break much more often.$B$BThough it would appear we have a surge of luck on our side. You see, Gilneas has opened its gates once again. Rumors of civil problems are abound there.$B$BI need you to head to Gilneas far to the north and gather me a supply of four Dawnstone Ore. It should be found at the Dawnstone Mine near the city.", + ["O"] = "Travel to Gilneas in the north and collect 4 Dawnstone Chunks for Technician Voltgear at the Gnomeregan Reclamation Facility in Dun Morogh.", + ["T"] = "The Dawnstone Coupler", + }, + [40861] = { + ["D"] = "The destruction of Gnomeregan set us back in our technology in quite a few ways. So much of our work was lost in the blink of an eye.$B$BWe are basically working blind. If we are to ever make real progress here in this facility, then we require a very rare item of significant importance.$B$BThe High Energy Regulator is something that was created to manage surges of intense energy. Without it, it is impossible to channel excessive amounts of power to where we need it, which is exactly what we are trying to do here!$B$BCurrently, this facility is operating at low power to prevent an override or oversurge to our systems. But we can work faster, MUCH faster. I need you to find the schematic for the High Energy Regulator that was lost in Gnomeregan. We can truly utilize this facility in the way it was meant to run if we can get ahold of it.", + ["O"] = "Find the Schematic: High Energy Regulator within Gnomeregan and bring it to Weezan Littlegear at the Gnomeregan Reclamation Facility in Dun Morogh.", + ["T"] = "High Energy Regulator", + }, + [40862] = { + ["D"] = "Greetings! I am Cassie Copperlight, a gnomish tinker. I find myself in a bit of a bind, you see: a recent batch of bad data membranes from Tinker Town has caused a catastrophic failure in many of the Servitors in the lower levels of the Reclamation Facility. I may need your help.$B$BYour task is to venture down into those lower levels and destroy the malfunctioning Servitors. Additionally, I need you to retrieve any spare parts lying about so that I can build functioning replacements. Around seven should do. It won\'t be easy, but with your skill and bravery, we can fix this problem and prevent any further damage.", + ["O"] = "Slay 10 Malfunctioning Servitors and gather 7 Spare Parts for Cassie Copperlight at the Gnomeregan Reclamation Facility in Dun Morogh.", + ["T"] = "Malfunction Mayhem", + }, + [40863] = { + ["D"] = "Greetings, adventurer. I am Father Gavin, a humble priest of the Argent Dawn. I come to you with a request that weighs heavily upon my soul. I was recently ambushed in Dun Morogh and my prized possession, \'The Mercy of Humility\', an old religious text, was taken from me by the violent Rockjaw Troggs. I fear for its safety, as these brutish creatures are known to destroy anything they can\'t use.$B$BI implore you to aid me in recovering this valuable relic. I am certain the Troggs near Ironband\'s Compound to the south east are those that possess it. Slay them and recover the text before it is damaged beyond repair.$B$BBring this book back to me, and I will make sure you are justly rewarded for your service to the Light.", + ["O"] = "Recover The Mercy of Humility from the Rockjaw Troggs near Ironband\'s Compound for Father Gavin in Dun Morogh.", + ["T"] = "The Mercy of Humility", + }, + [40864] = { + ["D"] = "As you may have noticed, the lower sections of the Reclamation Facility have been contaminated by a chemical leak, which has resulted in the appearance of corrosive backup. These dangerous substances were created due to an unstable arcane converter, which was leaking magical eminence.$B$BAs a chemist, it is my duty to oversee the cleanup of these hazardous materials. However, the corrosive backup has proven to be particularly challenging to contain, let alone eliminate! Could you offer your assistance in this matter? Thinning the numbers of oozes would make my life a lot easier.", + ["O"] = "Slay 8 Corrosive Backup from the lower levels for Chemist Glowsight at the Gnomeregan Reclamation Facility in Dun Morogh.", + ["T"] = "Chemical Cleanup", + }, + [40865] = { + ["D"] = "The Robot XV-81, a highly sophisticated chemical clean-up Servitor, has turned rogue due to magical interference. It\'s causing chaos in the lower levels of the Reclamation Facility, and poses a threat to anyone in its path.$B$BI must ask of you to venture into the depths below, locate XV-81, and destroy it before it causes any further harm. Most importantly I must ask you to recover it\'s Chemical Processing Membrane, an extremely rare piece of technology locked deep within its brain!", + ["O"] = "Slay XV-81 and return the Chemical Processing Membrane to Chemist Glowsight at the Gnomeregan Reclamation Facility in Dun Morogh.", + ["T"] = "Chemical Betrayal!", + }, + [40866] = { + ["D"] = "Ever since we left Tinker Town, there have been messages of a raid near Ironband\'s Compound to the south east. You would suspect Troggs to be behind such a thing, but no, Dark Irons are here in Dun Morogh.$B$BWhilst this is alarming, it could also prove to be a chance to get ahold of some Dark Iron Technology. I do know that there are some skilled engineers and magic users amongst their ranks, and I want to see first hand what they are capable of.$B$BHead down there, and take what you can find. Bring it back to me so I can do some studying.", + ["O"] = "Gather Dark Iron Technology at Ironband\'s Compound for Tenner Pipegadge at the Gnomeregan Reclamation Facility in Dun Morogh.", + ["T"] = "Dark Iron Technology", + }, + [40867] = { + ["D"] = "Greetings $c, I am the Master Chemist here at the Reclamation Facility, working on a groundbreaking formula to purify the air in our once beloved city of Gnomeregan. However, I am in dire need of materials to test my theories.$B$BI require a Pure Aqua Sample, which can only be obtained from the unbalanced aqua found in Dun Morogh\'s Ice Flow Lake. These elementals are known for their unique and magical properties, making them a perfect specimen for my research.$B$BIf you could gather one Pure Aqua Sample for me, it would be of great assistance. Do approach cautiously, as the elementals can be quite dangerous.", + ["O"] = "Gather a Pure Aqua Sample from the Unbalanced Aqua located at the Ice Flow Lake in Dun Morogh for Master Chemist Volterwhite.", + ["T"] = "Mastering the Formula I", + }, + [40868] = { + ["D"] = "The magical fluctuations of the sample you provided were quite extreme. In order to harness and channel this energy, I require a few materials. Materials that I have been waiting on for some time now.$B$BWith the disturbance of Gol\'Bolar Quarry and the untimely demise of a contractor working there, I have been left empty handed on my supply of Snowvale Root and Gol\'Bolar Ore. Perhaps you can help with acquiring these things for me?$B$BSnowvale Root is often carried by Frostmane Seers who have travelled to their retreat far in the mountains. I will require three samples of it from them. As for the Gol\'Bolar Ore, I am sure Prospector Gehn at the Quarry will provide it on our behalf here.", + ["O"] = "Gather 3 Snowvale Root from Frostmane Seer\'s in Dun Morogh, and the Shipment of Gol\'Bolar Ore from Prospector Gehn at the Gol\'Bolar Quarry for Master Chemist Volterwhite at the Gnomeregan Reclamation Facility in Dun Morogh.", + ["T"] = "Mastering the Formula II", + }, + [40869] = { + ["D"] = "An idea has come to my mind, while you were busy helping! With these elements as a base, I have discovered that I require a more volatile aqua in the formula. With a more potent chemical reaction, it is theoretically possible to disperse the toxins from the air.$B$BNow that is compelling, isn\'t it?$B$BI have done the math, and all I require is a sample of Volatile Aqua.$B$BI have heard rumors of a rather hostile aqua elemental out near the Helm\'s Bed Lake in eastern Dun Morogh.", + ["O"] = "Gather a Volatile Aqua sample for Master Chemist Volterwhite at the Gnomeregan Reclamation Facility in Dun Morogh.", + ["T"] = "Mastering the Formula III", + }, + [40870] = { + ["D"] = "You there! Yes you, mortal! I am in need of assistance. My friend has begun falling ill from the madness of the emerald dream and I require a cure before he is lost forever.$B$BI have heard from the Wardens of Nordrassil of a herb called Hyjalroot that can only be found around this region: it is somewhat scarce, but I require eight bundles of it in order to ease the pain of Paranus. I bid you to be quick and act with haste, or else I will lose my friend forever.$B$B", + ["O"] = "Collect 8 Hyjalroot from around the region of Hyjal for Enthos at Nordanaar in Hyjal.", + ["T"] = "Blooming Hyjalroot", + }, + [40871] = { + ["D"] = "I am eternally thankful for your efforts in saving Paranus, but I have been thinking. When this conflict is all over and the Emerald Dream is restored, there will be many that require Hyjalroot in order to be brought back into the fold.$B$BI believe it is time to begin stockpiling Hyjalroot now in order to save those affected. If you so happen to collect eight Hyjalroot, return to me, and I will bestow upon you a Small Dream Shard for your efforts.", + ["O"] = "Collect 8 Hyjalroot from around the region of Hyjal for Enthos at Nordanaar in Hyjal.", + ["T"] = "Stockpiling Hyjalroot", + }, + [40872] = { + ["D"] = "During one of my visits around Nordrassil I came to find an unusual guest. I was approached by a small fawn, one of the local wildlife in the region. As a reward for your efforts upon Hyjal itself, I could see to it that this creature becomes a loyal companion of yours.", + ["O"] = "Gather 50 Bright Dream Shards for Evandil Nightwind at Nordanaar in Hyjal.", + ["T"] = "Companion : Little Fawn", + }, + [40873] = { + ["D"] = "If you are seeking to gain knowledge of our most vital and rare elixirs then you have come to the right place. For your efforts upon Hyjal, I could bestow upon you the knowledge of my forebearers. The Dreamshard Elixir is a rather potent and powerful alchemical mixture.$B$BIt could be used to turn the tide of a conflict in your favor.", + ["O"] = "Gather 50 Bright Dream Shards for Evandil Nightwind at Nordanaar in Hyjal.", + ["T"] = "The Recipe of Dreamshard Elixir", + }, + [40874] = { + ["D"] = "The druids of Hyjal long ago learned to master a potion of lucidity, able to keep the drinker awake and immune from the pull of the Emerald Dream. I am willing to offer you this formula for your deeds and actions upon Hyjal itself.$B$BGather me Bright Dream Shards, and you too can stay lucid and awake from the pull of nightmare.", + ["O"] = "Gather 50 Bright Dream Shards for Evandil Nightwind at Nordanaar in Hyjal.", + ["T"] = "The Recipe of Lucidity Potion", + }, + [40875] = { + ["D"] = "Long ago the druids of Hyjal devised a potent and powerful leatherworking recipe to enhance their armor.$B$BThis armor kit contains the very power of the druidic magic itself.$B$BIf you desire, I could give you this pattern in exchange for your efforts to assist us in Nordanaar. It could be a powerful boon for you and your allies.", + ["O"] = "Gather 50 Bright Dream Shards for Evandil Nightwind at Nordanaar in Hyjal.", + ["T"] = "Pattern: Enchanted Armor Kit", + }, + [40876] = { + ["D"] = "I was once a trainee with the druids of Hyjal long before the Third War scarred the land. I had the chance to learn much of the more nuanced teachings of druidic magic, and it is there I learned to craft an item called \'The Horn of Binding\'.$B$BI have been working to craft a new horn and bind it to the natural energies here in Winterspring, but I require more materials from across these lands and Hyjal both.$B$BI require: the beaks of Greathorn Owls native to Hyjal, a Vilemusk Horn from the Satyr that also dwell there, a book titled \'Bracing of Nature\' which can be found at Nordanaar, and finally a Moontouched Amulet from the local Owlbeasts here in Winterspring.", + ["O"] = "Gather 6 Greathorn Beaks, 1 Vilemusk Horn, the book \'Bracing of Nature\', and a Moontouched Amulet to Everwyl Moonseeker at Starfall Village in Winterspring.", + ["T"] = "The Horn of Binding", + }, + [40877] = { + ["D"] = "Listen, $r. We face no shortage of troubles here, but I shan\'t waste your time with mindless errands. Dealing with the pests and beasts that torment our camp is a task I can handle myself.$B$BHowever, I do require your aid in a matter of greater importance. One of our own, Orvan Darkeye, came to Gilneas in search of the lost tomes of Archmage Ur. Yet, the irony of it all - he himself became lost. $B$B$B$BYour mission is clear: find him, or what little is left of him. Last we heard, he was headed towards Greyshire.", + ["O"] = "Find Orvan Darkeye for Deathstalker Alynna. He is rumored to be somewhere close to the ruins of Greyshire.", + ["T"] = "Dead Until Dark", + }, + [40878] = { + ["D"] = "I have come to this land in search of a particular book - a tome I have sought for ages: \'On the Powers of Blood\' by Archmage Ur. Oh, how it eluded me! But now, I have reason to believe that it may be hidden within Gilneas. $B$BThe knowledge contained within those pages could be invaluable to furthering both the goals of the Forsaken and the Horde. I am close to discovering its whereabouts, very close, but in the meantime I require your assistance. Take these vials and collect the blood of bats. We will need them for our plans, yes. Do not disappoint me.", + ["O"] = "Bring 10 Vilewing Blood Vials for Orvan Darkeye at the Ruins of Greyshire in Gilneas.", + ["T"] = "All We Need is Blood", + }, + [40879] = { + ["D"] = "Greymane may have thought himself safe behind these walls, but he was foolish to believe he could hide from Death. Now, his incompetence comes back to haunt him, and by extension, me. The Scourge still lurk in these lands, constantly interrupting my research and slowing it down considerably. It is time to take matters into our own hands.$B$BI command you to eliminate the remaining Scourge forces in Greyshire.$B$BDo not fail me, for failure is not an option.$B$B", + ["O"] = "Slay 8 Shambling Dead and 8 Lingering Skeletons for Orvan Darkeye at the Ruins of Greyshire in Gilneas.", + ["T"] = "Last of the Living Dead", + }, + [40880] = { + ["D"] = "I must say, you have proven to be a useful servant, and your mindless loyalty is a rare sight indeed in these times. But I must confess, I wasn\'t exactly truthful with you in the beginning. While my personal pursuit is the search for the works of Ur, I am also here on a mission from the Royal Apothecary Society. We believe that Gilneas is the perfect place to perfect our new weapon against the enemies of the Horde.$B$BBut to do so, I require more blood. Human blood, and worgen blood. It\'s a delicate balance. Take these vials and head south of Stillward Church. There you will find Greymane\'s forces. It shouldn\'t be too difficult to get the blood we need from them. As for the worgen blood... well, they will come to you, one way or another. Just be ready for them when they do.", + ["O"] = "Bring 15 Gilnean Blood Vials and 15 Worgen Blood Vials to Orvan Darkeye in the Ruins of Grayshire.", + ["T"] = "We Take It From The Living", + }, + [40881] = { + ["D"] = "I may have... miscalculated a bit. It seems without the knowledge held in the \'Powers of Blood\', I cannot stabilize the mix. I need that book.$B$BI scoured every corner of this land with no success. It can only mean one thing: The book is hidden in the city of Gilneas itself. It looms like an impenetrable fortress, and the thought of trying to find a single book within its walls is overwhelming.$B$BThe city is heavily fortified, and the human forces stationed there are not to be trifled with. They are determined to hold onto what little they have left, and they will stop at nothing to keep their city safe. It will take all of your cunning and stealth to even attempt getting past their defenses.$B$BIf, however, you do manage to locate the book... I will reward you beyond measure.", + ["O"] = "Find \'On the Powers of Blood\' in Gilneas City, then return to Orvan Darkeye at the Ruins of Greyshire in Gilneas.", + ["T"] = "The Evil Made Me Do It", + }, + [40882] = { + ["D"] = "Behold the new age of the Forsaken! With this tome as my guide, I will unlock the secrets of the Blood Dimension and harness its power for our cause.$B$B$B$BNow, we must find a test subject for my latest creation. I had planned to force it down your throat, but you have been a faithful servant, and I will spare you this time. Instead, I have a better idea. There is a nearby camp of human mercenaries who are loyal to our cause. I wonder if this concoction will make them even more devoted to our mission.$B$BBefore I can proceed, I require one final favor from you. Report to Master Apothecary Faranell in Undercity. Tell him that the mission was a success.", + ["O"] = "Report to Master Apothecary Faranell in Undercity.", + ["T"] = "Blood for Blood", + }, + [40883] = { + ["D"] = "The enchantments known to us here are vast. Though we cannot share all of our secrets, we are willing to pass on certain enchanting formulas as a token of our gratitude for helping us in Hyjal. One such pattern is for a strong boots enchantment if you are interested.", + ["O"] = "Gather 50 Bright Dream Shards for Evandil Nightwind at Nordanaar in Hyjal.", + ["T"] = "Enchant Boots: Greater Spirit", + }, + [40884] = { + ["D"] = "The enchantments known to us here are vast. Though we cannot share all of our secrets, we are willing to pass on certain enchanting formulas as a token of our gratitude for helping us in Hyjal. One such pattern is for a strong bracers enchantment if you are interested.", + ["O"] = "Gather 50 Bright Dream Shards for Evandil Nightwind at Nordanaar in Hyjal.", + ["T"] = "Enchant Bracer: Greater Deflection", + }, + [40885] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Dreamtonic", + }, + [40886] = { + ["D"] = "The ability to smelt Dreamsteel is an art all in itself. Whilst the difficulty to actually create patterns using Dreamsteel Bars is complicated, it does not overshadow the smelting process.$B$BIf you wish to learn how to create your own Dreamsteel Bars and not rely on others, gather for me fifteen Bright Dream Shards as a showing of your loyalty to the World Tree.", + ["O"] = "Gather 15 Bright Dream Shards for Tanthos Everbreeze at Nordanaar in Hyjal.", + ["T"] = "Smelting Dreamsteel", + }, + [40888] = { + ["D"] = "The mastery of Dreamsteel is a complicated art, one that requires extreme amounts of patience in order to perfect.$B$BIf you wish to take this challenge, I can offer you the plans to create the Dreamsteel Leggings. Though, I do require some evidence of your services in the name of Nordrassil. Seventy-five Bright Dream Shards should do. Bring them to me, and you shall be rewarded.", + ["O"] = "Gather 75 Bright Dream Shards for Tanthos Everbreeze at Nordanaar in Hyjal.", + ["T"] = "Dreamsteel Leggings", + }, + [40889] = { + ["D"] = "The mastery of Dreamsteel is a complicated art, one that requires extreme amounts of patience in order to perfect.$B$BIf you wish to take this challenge, I can offer you the plans to create the Dreamsteel Bracers. Though, I do require some evidence of your services in the name of Nordrassil. Seventy-five Bright Dream Shards should do. Bring them to me, and you shall be rewarded.", + ["O"] = "Gather 75 Bright Dream Shards for Tanthos Everbreeze at Nordanaar in Hyjal.", + ["T"] = "Dreamsteel Bracers", + }, + [40890] = { + ["D"] = "The mastery of Dreamsteel is a complicated art, one that requires extreme amounts of patience in order to perfect.$B$BIf you wish to take this challenge, I can offer you the plans to create the Dreamsteel Boots. Though, I do require some evidence of your services in the name of Nordrassil. Seventy-five Bright Dream Shards should do. Bring them to me, and you shall be rewarded.", + ["O"] = "Gather 75 Bright Dream Shards for Tanthos Everbreeze at Nordanaar in Hyjal.", + ["T"] = "Dreamsteel Boots", + }, + [40891] = { + ["D"] = "The Barkskin Tribe was ruled by two elders. Myself, and Elder Growlheart, a rather seasoned and old warrior who rose to prominence from his aggressive nature and impactful speeches.$B$BI do not blame the corruption of the Barkskin Tribe on any of its warriors, gardeners, or ursa. I blame it solely on Elder Growlheart. During his reign, he grew more and more hostile, leading to a culling of many I would have called dearest friends.$B$BElder Growlheart must be killed if there is even a minor chance the Barkskin tribe can be recovered.You will notice him by his discolored fur. He acquired this look from his addiction to a tainted sap him and his most loyal consume.$B$BYou can find Barkskin village to the southwest, near the bottom of the Hyjal itself.", + ["O"] = "Find and slay Elder Growlheart deep within Barkskin Village for Elder Barkmaw at Nordassil Glade in Hyjal.", + ["T"] = "The Corruption of the Barkskin Tribe", + }, + [40892] = { + ["D"] = "The Barkskin Ursa were a group of the most loyal and fearsome warriors within the Tribe. It is they who gravitated to Growlheart and did his bidding.$B$BThe purge led to many deaths, and much suffering. All at the actions of the ursa, who carried out the desires of their master with little care for repercussions.$B$BI bid you to travel to Barkskin Village, and hunt those that dispensed mindless murder. You can find Barkskin Village far to the south, near the foot of Hyjal.$B$BBring me four Ursa Battlehammers as proof of your deed, and you will be rewarded.", + ["O"] = "Gather 4 Ursa Battlehammers from Barkskin Ursa for Elder Barkmaw at Nordassil Glade in Hyjal.", + ["T"] = "Barkskin Ursa", + }, + [40893] = { + ["D"] = "Nargg seeks vengeance upon other Barkskin for evil deeds. Barkskin slay many friends of Nargg, including father.$B$BTribe no longer what it was, it angry, and it evil. Nargg asks you to do what Nargg cannot do. Slay Barkskin and reclaim Barkskin Pendants, they can be found on any Barkskin Furbolg.", + ["O"] = "Gather 10 Barkskin Pendants for Nargg at Nordassil Glade in Hyjal.", + ["T"] = "Barkskin Vengeance", + }, + [40894] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Continued Barkskin Vengeance", + }, + [40895] = { + ["D"] = "Coming to admire my work, are you? I commend your efforts in travelling so far to see such elusive leather, but...$B$BWhat? You\'ve come to learn my secrets? Hmm... Perhaps. I have prepared a book to teach those loyal to our causes how to work with Dreamhide, but I require Bright Dream Shards from you in order to offer it.", + ["O"] = "Gather 15 Bright Dream Shards for Jancel Stardust at Nordanaar in Hyjal.", + ["T"] = "Crafting Dreamhide", + }, + [40897] = { + ["D"] = "I am not looking to give my most precious patterns to the unworthy wretches who call themselves leatherworkers. I require a showing of dedication and willpower to offer apprentices a chance to craft my great work.$B$BIf you desire to learn the Dreamhide Bracers pattern, bring me 75 Bright Dream Shards.", + ["O"] = "Gather 75 Bright Dream Shards for Jancel Stardust at Nordanaar in Hyjal.", + ["T"] = "Dreamhide Bracers", + }, + [40898] = { + ["D"] = "I am not looking to give my most precious patterns to the unworthy wretches who call themselves leatherworkers. I require a showing of dedication and willpower to offer apprentices a chance to craft my great work.$B$BIf you desire to learn the Dreamhide Leggings pattern, bring me 75 Bright Dream Shards.", + ["O"] = "Gather 75 Bright Dream Shards for Jancel Stardust at Nordanaar in Hyjal.", + ["T"] = "Dreamhide Leggings", + }, + [40899] = { + ["D"] = "I am not looking to give my most precious patterns to the unworthy wretches who call themselves leatherworkers. I require a showing of dedication and willpower to offer apprentices a chance to craft my great work.$B$BIf you desire to learn the Dreamhide Belt pattern, bring me 75 Bright Dream Shards.", + ["O"] = "Gather 75 Bright Dream Shards for Jancel Stardust at Nordanaar in Hyjal.", + ["T"] = "Dreamhide Belt", + }, + [40900] = { + ["D"] = "It has been many long years that I have practiced my skills beneath the World Tree. A clear mind guides the fingers and sets the imagination at task.$B$BFor your efforts in helping Hyjal I can offer a book containing all of my knowledge. Bring me fifteen Bright Dream Shards and you can also learn my techniques.", + ["O"] = "Gather 15 Bright Dream Shards for Jancel Stardust at Nordanaar in Hyjal.", + ["T"] = "Crafting Dreamthread", + }, + [40902] = { + ["D"] = "Tranquility. That is what is required to work on Dreamthread. Beneath Nordrassil it is often quite easy to be lost within a dreamlike state. I can offer you a pattern to create the Dreamthread Kilt. Though I do require some proof of your service.$B$BBring me seventy-five Bright Dream Shards and you shall be rewarded.", + ["O"] = "Gather 75 Bright Dream Shards for Jancel Stardust at Nordanaar in Hyjal.", + ["T"] = "Dreamthread Kilt", + }, + [40903] = { + ["D"] = "Tranquility. That is what is required to work on Dreamthread. Beneath Nordrassil it is often quite easy to be lost within a dreamlike state. I can offer you a pattern to create the Dreamthread Bracers. Though I do require some proof of your service.$B$BBring me seventy-five Bright Dream Shards and you shall be rewarded.", + ["O"] = "Gather 75 Bright Dream Shards for Jancel Stardust at Nordanaar in Hyjal.", + ["T"] = "Dreamthread Bracers", + }, + [40904] = { + ["D"] = "Tranquility. That is what is required to work on Dreamthread. Beneath Nordrassil it is often quite easy to be lost within a dreamlike state. I can offer you a pattern to create the Dreamthread Gloves. Though I do require some proof of your service.$B$BBring me seventy-five Bright Dream Shards and you shall be rewarded.", + ["O"] = "Gather 75 Bright Dream Shards for Jancel Stardust at Nordanaar in Hyjal.", + ["T"] = "Dreamthread Gloves", + }, + [40905] = { + ["D"] = "", + ["O"] = "Bring the Smoldering Dream Essence to Arch Druid Dreamwind at Nordanaar in Hyjal.", + ["T"] = "Smoldering Dream Essence", + }, + [40906] = { + ["D"] = "I must admit, I am quite nostalgic about working with Dream Essence once again. It has been many long decades since I have had the delight. To restore this sample, I require the following materials that can be found around azeroth.$B$BFrom here in Hyjal, I require ten Bright Dream Shards. Twenty-five Dream Dust needs to be acquired from anyone who can disenchant. Finally, I will need fifteen Living Essence, which can be somewhat tricky to come across. Bring these to me, and you shall be rewarded with the Emerald Blessing.", + ["O"] = "Collect 10 Bright Dream Shards, 25 Dream Dust, and 15 Living Essence for Arch Druid Dreamwind at Nordanaar in Hyjal.", + ["T"] = "Purified Dream Essence", + }, + [40907] = { + ["D"] = "$B$BYou... help. I need help. She is... everywhere. And yet nowhere! By all that is holy, I... just want her gone! Please...$B$B$B$BI don\'t want to... dance their dance, or join them in their... their... circles. Their dark circles, their deathly shade... Please! To the southwest, near th... the town of Greyshire, where I last camped, that\'s where this all started! I left... I left my journal out there. Please inspect the campsite, get my journal, and bring it to the Pellars of Wolfswood. They... they must have some idea... I need help, I can\'t go on like this...", + ["O"] = "Find Aliattan Anderson\'s journal at the campsite in the woods, and bring it to the Pellars of Wolfswood.", + ["T"] = "The Haunting of Aliattan Anderson", + }, + [40908] = { + ["D"] = "The Widows of the Wood are a fickle lot, $N. They hold a strong attachment to the woods. They are playful, yet spiteful. They rejoice in scaring children, luring young men away to rest beneath the canopies they haunt, appearing in their dreams.$B$BI fear we have not much time to save young Aliattan if his journal is anything to go by. They seek to break his will, and draw him into a maddening dance known as the black waltz. They say the soul itself is wrenched from the body with each twirl and spin, before being devoured by the hungry Widows.$B$BReturn to the campsite, $N. You must light that which caused so much grief to begin with. Draw them out of hiding, and dispose of them. May the Wolf Serpent guard you, for a fate worse than death awaits you if you anger the Widows and fail in your efforts.", + ["O"] = "Banish the Widows that haunt Aliattan Anderson by lighting the campfire in the woods to the southeast, near the town of Greyshire.", + ["T"] = "The Black Waltz", + }, + [40909] = { + ["D"] = "The Winterfall and Deadwood Tribes have already been lost to madness. Their hatred burns deep and already they have sent speakers to discuss an allegiance with the corrupt Barkskin. I have no doubt in my mind it will only be a matter of time before they conspire against us.$B$BThe Timbermaw cannot stand idle whilst corruption ties hostile factions together in unison. I beseech you to travel deep into Barkskin Village to the southwest of here, near the bottom of the summit.$B$BFind and slay the Winterfall and Deadwood envoys both.", + ["O"] = "Slay the Winterfall Envoy and the Deadwood Envoy for Speaker Frulgg at Nordrassil Glade in Hyjal.", + ["T"] = "Hostile Envoys", + }, + [40910] = { + ["D"] = "The Sigil of Quickness is infused with the powers of speed. Upon using its energy, you will find yourself able to strike at a quicker pace.$B$BIf you desire this sigil, I will require five Bright Dream Shards. I will also require a Fading Dream Fragment. I cannot just give it away without proof of your deeds here in Hyjal.", + ["O"] = "Gather 5 Bright Dream Shards and a Fading Dream Fragment for Vaenar Hollowstar at Nordanaar in Hyjal", + ["T"] = "The Sigil of Quickness", + }, + [40911] = { + ["D"] = "The Sigil of Leeching is infused with darker powers. Upon using its energy, you will find yourself able to siphon the essence of your opponent.$B$BIf you desire this sigil, I will require five Bright Dream Shards. I will also require a Fading Dream Fragment. I cannot just give it away without proof of your deeds here in Hyjal.", + ["O"] = "Gather 5 Bright Dream Shards and a Fading Dream Fragment for Vaenar Hollowstar at Nordanaar in Hyjal", + ["T"] = "The Sigil of Leeching", + }, + [40912] = { + ["D"] = "The Sigil of Penetration is infused with powerful magics. Upon using its energy, you will find yourself able to pierce deeper into tough armor.$B$BIf you desire this sigil, I will require five Bright Dream Shards. I will also require a Fading Dream Fragment. I cannot just give it away without proof of your deeds here in Hyjal.", + ["O"] = "Gather 5 Bright Dream Shards and a Fading Dream Fragment for Vaenar Hollowstar at Nordanaar in Hyjal", + ["T"] = "The Sigil of Penetration", + }, + [40913] = { + ["D"] = "My aim is guided by Elune, for every shot I make is true. Do not believe any naysayers, dedication is truly the greatest teacher.$B$BWhilst I cannot teach you everything, I don\'t mind sharing techniques that will aid you in the long run. Bring me fifty Bright Dream Shards, and in exchange, you can have my knowledge.", + ["O"] = "Gather 50 Bright Dream Shards for Huntress Eldasana at Nordanaar in Hyjal.", + ["T"] = "[Deprecated] Mastery of the Bow", + }, + [40914] = { + ["D"] = "The letter appears before you: unsealed, but very much untouched. Inside, the letter has been scribbled in a harsh and crude manner, the words entirely foreign.$B$BSomething feels very wrong about this. A familiar, dreadful voice appears in your head; you are drawn to the Master\'s Cellar near Karazhan.", + ["O"] = "Seek out this mysterious energy at the Master\'s Cellar in the Deadwind Pass.", + ["T"] = "A Mysterious Missive", + }, + [40917] = { + ["D"] = "Inside this mailbox I am safekeeping a crystal of immense magnitude and unparalleled importance, §N. This crystal once housed powers drawn from the Well of Eternity itself. And though its power has long since been depleted, there is ever the chance of it being restored, wouldn\'t you agree? I require its power and you will help me restore it, if you wish for your hunger to be satiated, that is. Should you decide to lend your hand in returning it to its former glory, be assured - your efforts will be compensated more than justly.$B$BFirstly, you must delve deep into Blackrock Mountain and grab the eye of Overlord Wyrmthalak, who stalks the lower halls of Blackrock Spire.", + ["O"] = "Acquire the Eye of Wyrmthalak and bring it to the Mysterious Mailbox.", + ["T"] = "Eye for an Eye", + }, + [40918] = { + ["D"] = "You have done well so far, but you certainly took your time returning, didn’t you? The eye is already decomposing, and its powers are fading. Which adds yet another step to your growing list of tasks, $N.$B$BSome necromancy is now going to be required, and though traveling to Northrend is not an option, Scholomance still exists. I am sure they will have a potion that can preserve the eye.$B$BYou know what to do, do not disappoint me.", + ["O"] = "Acquire a Necromantic Potion and bring it to the Mysterious Mailbox.", + ["T"] = "The Stranger and the Potion", + }, + [40919] = { + ["D"] = "An Arcane Focus is needed to properly channel the powers of the Eye into the crystal. Such foci were common during the height of the Kaldorei civilization, alas, I remember it well… Now what remains of those haughty seats of power, hmm? Ruins. Knowledge lost to time.$B$BYou may, then, think it an impossible task to locate one. Fortunately for you, I will give you a lead. Perhaps one lingers with the Highborne of Dire Maul.", + ["O"] = "Acquire an Arcane Focus and bring it to the Mysterious Mailbox.", + ["T"] = "A Focus of the Ancients", + }, + [40920] = { + ["D"] = "Oh, what a pathetic little impersonation this is. Did you deliberately bring back the most amateur specimen you could find?$B$BSince you enjoy adding to your own list of tasks with your own sheer incompetence, then listen: the crystal needs its imperfections removed. This is no easy task, and very specialist tools will be required. Two hammers: One forged deep within Hateforge Quarry, and the other utilized by the Dark Irons of Blackrock Depths. Bring them to me, and your missteps may be forgiven.", + ["O"] = "Acquire a Hammer of Hate, and a Hammer of the Depths and bring them to the Mysterious Mailbox.", + ["T"] = "Beckoned by the Hateful Depths", + }, + [40921] = { + ["D"] = "The Crystal is almost complete: the eye is ready to be fused, the focus is ready to provide the energy. Now, we need a liquid flux to bind them. The most powerful blood you can acquire. The blood of a powerful Dragonkin mortal.$B$BThere is one known as General Drakkisath, a mighty being even among other mighty beings. If you wish to finish your task, then best him, and bring me his heart. With it, the crystal shall be reborn, you shall receive a reward you have been yearning for so desperately… and for so long.", + ["O"] = "Acquire a Dragonblood Heart and bring it to the Mysterious Mailbox.", + ["T"] = "Drenched in Draconic Blood", + }, + [40922] = { + ["D"] = "I am impressed with your progress so far. You have proven far more... resilient... than most. This tenacity shall be rewarded, with a blessing befitting a brave soul such as yourself - the sweet taste of everlasting mortality. But is that truly what you want? To be like those haughty creatures of old, never fearing the cold grip of death? Never feeling the adrenaline rush of living on the edge? The risk that makes life worth living... gone. War, which I can see in your soul you live for, will become lackluster.$B$BYou will live forever. You will watch your family pass away. Your friends. Your loved ones. And then what? When all you value is gone?$B$BNo, I will spare you this torture, and instead grant you the true blessing: the blessing of mortality. This is the moment you have been waiting for. To face the greatest challenges and know your life may come to an end at any moment. That... that is what truly makes life worth fighting for. Am I not correct, $N?", + ["O"] = "Speak to the Mysterious Mailbox again to be mortal forever, or abandon this quest and reap immortality at your 60th level.", + ["T"] = "Eternal Mortality", + }, + [40923] = { + ["D"] = "You have fulfilled your part of the bargain, $N. Most excellent. Fear not, I\'ll hold true to my word. You have assisted me significantly after all, and all for a sense of thrill and danger.$B$BIt is time for you to receive my final blessing.", + ["O"] = "Speak to the Mysterious Mailbox again to receive a boon.", + ["T"] = "A Mysterious Boon", + }, + [40924] = { + ["D"] = "During the siege of Ravenshire a group of thieves and brigands broke into my chambers and made away with most prized items of my family. One of which was the Signet of Silverlaine, once owned by my father and passed down to me.$B$BI have received news that my family Signet was given as a token of honor to a well respected officer amongst the royalists named Osmark. He should be lording over the Dryrock Pit far to the west. Look for where the grass ceases to grow, and find the massive pit full of industry.$B$BReclaim my birthright, and you shall be rewarded.", + ["O"] = "Reclaim the Signet of Silverlaine from High Officer Osmark at The Dryrock Pit for Baron Caliban Silverlaine at Ravenshire in Gilneas.", + ["T"] = "Signet of Silverlaine", + }, + [40925] = { + ["D"] = "When this conflict is over, no matter who wins, I must be presentable as the nobility that my family is beholden. If I am to retain such a high standing, I require the finest silk that the land can offer.$B$BThe spiders of the Hollow Web Woods create a rare and hard to come by silk. I must have it so that I can commission a fine set of new garments for when this conflict inevitably comes to an end.$B$BYou can find the Hollow Web Woods just to the west of here. Gather me ten Hollow Web Silk and I shall make it worth your time, commoner.", + ["O"] = "Gather 10 Hollow Web Silk from the spiders of Hollow Web Woods for Magistrate Carson at Ravenshire in Gilneas.", + ["T"] = "Hollow Web Silk", + }, + [40926] = { + ["D"] = "The land is tainted with the foul mark of worgen that tread through our lands unopposed. The royalists have seen fit to punish the people by letting their kind spread like a disease.$B$BEven now the worgen reach as far south as the Overgrown Acre just to the northwest of here. If they will not put an end to this threat, then we must. Find the Bloodclaw tribe that stalks within Gilneas, hunt them, and recover ten of their pelts.", + ["O"] = "Gather 10 Bloodclaw Pelts from the Bloodclaw Worgen for Corporal Ranworth at Ravenshire in Gilneas..", + ["T"] = "Securing Gilneas I", + }, + [40927] = { + ["D"] = "To stop the Bloodclaw, we must put an end to the alpha of their packs. The strongest of the worgen themselves are known as \'alpha\' and it is these creatures that command the rest of the smaller worgen.$B$BThe Bloodclaw Alpha can be found within a cave to the northwest. Search for the worgen camp west of Northgate Tower. The cave should be just nearby.$B$BSlay thirteen of them, and return to me when the job is done.", + ["O"] = "Slay 13 Bloodclaw Alpha that linger within the northern caves for Corporal Ranworth at Ravenshire in Gilneas.", + ["T"] = "Securing Gilneas II", + }, + [40928] = { + ["D"] = "The foulhide gnolls are growing to become a large problem for the region. Recently, they attacked and laid claim to Southmire Orchard, where a good friend of mine named Ernest met his end.$B$BWhile I still grieve for his loss, I cannot stand idle. The foulhide will soon move to find another target to enact their rampant desire to fight and the Shademore Tavern could be their next target.$B$BI ask of you to head to my friend\'s orchard to the southeast of here, and slay the gnolls that inhabit it. Bring me fourteen of their armbands as proof.", + ["O"] = "Slay Foulhide Gnolls and recover 14 Foulhide Armbands for Darrow Shademore at Shademore Tavern in Gilneas.", + ["T"] = "Foulhide Pests", + }, + [40929] = { + ["D"] = "I am Elaroth Ranworth, and it is my charge to keep the fire of this lighthouse burning bright. Before the war, we relied on a steady supply of oil from Southshore.$B$BEver since the Greymane Wall was sealed shut, this lighthouse has been burning on what excess I could find. It is only a matter of time before the light will cease burning, and with it, I will vanish from this world.$B$BI am not yet ready to depart, and so I am desperate. Lordaeron has been consumed by the plague, but whispers tell me of a new bastion of human power, far away to the west.$B$BI ask of you to visit the city called Theramore, speak with their dockmaster, and see if there is any oil that can be given to me.", + ["O"] = "Speak with Dockmaster Lorman at Theramore Isle in Dustwallow Marsh to recover any oil meant for Gilneas.", + ["T"] = "The Gilneas Lighthouse", + }, + [40930] = { + ["D"] = "Huh, now that you mention it, we do have a supply of old oil that has been lingering around here for some years. I hate to tell you this, but it was taken when the deserters left the city and went to found their camp in the Quagmire.$B$BI have no doubts their purposes for the highly flammable liquid are nefarious. That or they desire to make some coin off the valuable resource. There ain\'t many active sources working these days.$B$BIf you want the oil, you\'ll have to recover it from those deserters.", + ["O"] = "Gather the Stolen Oil Shipment from the Deserter\'s Hideout for Dockmaster Lorman at Theramore Isle in Dustwallow Marsh.", + ["T"] = "The Gilneas Lighthouse II", + }, + [40931] = { + ["D"] = "Since you went to such lengths to recover this oil, I see no reason not to grant it to you for your return to Gilneas. Assuming you have a means to actually enter the place. I have heard rumors of a civil war brewing behind the great wall, so I suggest you be careful.", + ["O"] = "Return the Stolen Oil Shipment to Elaroth Ranworth at Greymane\'s Watch in Gilneas.", + ["T"] = "The Gilneas Lighthouse III", + }, + [40932] = { + ["D"] = "You there, why I am lucky to have you stumble across me. I\'m having a terrible time. Forced to abandon my family home, now this!$B$BThe wheel on my wagon has broken and needs to be replaced, but I left the spare back at the plantation. You wouldn\'t mind doing me a favor, would you? I cannot return as worgen have taken over, but maybe you can.$B$BHead to the Rosewick Plantation just to the northwest of here, and bring me my spare wheel from my house.", + ["O"] = "Recover the Spare Wagon Wheel for Donald Rosewick near Northgate Tower in Gilneas.", + ["T"] = "Wagon Woes", + }, + [40933] = { + ["D"] = "I have one last thing to ask you. It will take me some time before I can get going again, but in the meantime I want you to make sure the worries of my wife are settled.$B$BI sent her to Shademore Tavern before I departed with some of our most valuable posessions. I want you to let her know that I am on the way, and I am safe. You can find the Shademore Tavern by following this road, and heading west at the crossroad to Ravenshire.", + ["O"] = "Meet with Frell Rosewick at the Shademore Tavern in Gilneas.", + ["T"] = "Rosewick Worries", + }, + [40934] = { + ["D"] = "The foul taint of undeath is a most vile and terrifying thing. The land of Gilneas some years ago was invaded by a lich who scarred the land with his evil magic.$B$BThis is a tale similar to what befell my own lands. You see, the Scarlet Crusade is not an enemy, for we all serve the same purpose.$B$BI ask you to prove yourself as an agent against necromancy. Travel to Greyshire, or what is left of it. Slay the dead things that still walk there.", + ["O"] = "Slay 7 Lingering Skeletons and 7 Shambling Dead for Brother Elias at Shademore Tavern in Gilneas.", + ["T"] = "Allies Against Undeath", + }, + [40935] = { + ["D"] = "Now that I can trust you to not be an agent of undeath, I can reveal the true reason that I have sought neutral lands. The Crusade was once a noble organization of high integrity, but cracks have begun to show in the pillars of our most trusted leaders.$B$BDeep within the Cathedral there are rumors spreading of the true fate of High Inquisitor Fairbanks. I have good sources to believe his death was halted by... Unnatural means. If it is true that necromancy has become common among the elite of the Crusade, I require proof.$B$BFind Inquisitor Fairbanks within the Scarlet Cathedral, and discover the truth.", + ["O"] = "Discover the truth about the fate of High Inquisitor Fairbanks for Brother Elias at Shademore Tavern in Gilneas.", + ["T"] = "Scarlet Corruption", + }, + [40936] = { + ["D"] = "We arrived in Gilneas with the hope of being free from conflict. However, we have only come to find hostility.$B$BThree nights ago a worgen raid attacked our camp and made away with supplies most vital to us. However, these supplies were not taken by the pale Nighthowl, but instead the Bloodclaw. They are another tribe in conflict with the Nighthowl, who have a camp to the south of us. I have no doubt they have our supplies stashed amongst their hovels.$B$BRecover the supplies, and return them to us.", + ["O"] = "Recover the Vagrant Supplies from the Bloodclaw camp to the south and return to Camp Leader Gethenor at the Vagrant Camp in northern Gilneas.", + ["T"] = "Vagrant Supplies", + }, + [40937] = { + ["D"] = "Night in and night out, we have been subjected to raids from the hostile Nighthowl. They are a ferocious and merciless foe that has tested our defences.$B$BWe ask for your aid in dealing with this threat before they overwhelm us. The Nighthowl can be found lingering all over northern Gilneas, from Oldrock Pass to the Northgate Tower.$B$BSlay them, and bring me eleven of the shackles they wear around their wrists.", + ["O"] = "Slay the Nighthowl Worgen and collect 11 Nighthowl Shackles for Camp Leader Gethenor at the Vagrant Encampment in northern Gilneas.", + ["T"] = "Nighthowl Nuisance", + }, + [40938] = { + ["D"] = "To end the Nighthowl threat, we must target their leadership. The tribe of worgen are led by strong alpha who command their packs with extreme efficiency. Without the alpha, the Nighthowl would crumble into disarray.$B$BI am asking you to delve into the wolf\'s lair.$B$BOldrock Pass can be found to the west of here. It is a trail between Silverpine Forest and Gilneas that got breached some time ago. It is infested with the Nighthowl worgen, and it is there you will find their alpha.$B$BSlay them, and rid us of this threat.", + ["O"] = "Slay 3 Nighthowl Alphas for Camp Leader Gethenor at the Vagrant Encampment in northern Gilneas.", + ["T"] = "Nighthowl Neutralizing", + }, + [40939] = { + ["D"] = "Many of the refugees here in the camp and at the Greymane Wall are starving. The threat of the worgen has been enough to deter most from foraging or hunting. I request you to aid in our situation and perhaps I can get a decent meal for everyone.$B$BThe Duskpelt wolves are hostile, but should supplement our current rations well. You can find Duskpelt wolves all around Gilneas. Bring me six chunks of their meat and it should last us for a time.", + ["O"] = "Gather 6 Duskpelt Meat from the Duskpelt wolves for Camp Chef Velden at the Vagrant Encampment in northern Gilneas.", + ["T"] = "Supplementing Rations", + }, + [40940] = { + ["D"] = "A strange and foul magic lingers upon the air of Gilneas. I believe there is more going on behind the scenes than first meets the eye.$B$BThe Lord Prestor was well known for holding the ear of King Greymane and often influenced many of his decisions. When I met this Lord Prestor long ago, I was overwhelmed by the immense magical aura that emanated from him. This same magic I can sense within Gilneas, but from where, I cannot be sure.$B$BTo discover the source, I require an item of some rarity: a Font of Arcana that is often wielded by Blue Dragonkin. The nearest of their brood resides within the Badlands, in a place named the Crystalline Oasis.", + ["O"] = "Travel to the Badlands and slay members of the Blue Dragonflight to recover a Font of Arcana for Magus Orelius at Ravenshire in Gilneas.", + ["T"] = "Font of Arcana", + }, + [40941] = { + ["D"] = "You have done well in acquiring this Font of Arcana. However, before we can proceed, I need materials of a magical nature. The Font of Arcana cannot be wielded naturally without draconic magic, and therefore, I must channel enchanting materials with my own magic to power the Font.$B$BBring me a Large Glowing Shard, which is a common Enchanting material, and we can continue our work.", + ["O"] = "Acquire a Large Glowing Shard for the Font of Arcana for Magus Orelius at Ravenshire in Gilneas.", + ["T"] = "Magical Presence", + }, + [40942] = { + ["D"] = "I have taken time to familiarize myself with the Font. I have come to the realization that the lingering magic is indeed coming from Gilneas City. In order to discover what type of magic, I require one last material in order to make it fully operational. I have my theories and suspicions based off the font itself that this could be draconic magic, and if so, perhaps Lord Prestor was indeed one taking humanoid form.$B$BTo fully know if this is the truth, I require you to travel to Dustwallow Marsh where the Black Dragonflight calls home. From the Firemane that linger at Dragonmurk in southern Dustwallow Marsh, recover a \'Potent Draconic Jewel\'. It is often carried by their kind.", + ["O"] = "Slay Firemane Dragonkin in Dustwallow Marsh, and recover a Potent Draconic Jewel for Magus Orelius at Ravenshire in Gilneas.", + ["T"] = "Draconic Presence?", + }, + [40943] = { + ["D"] = "There is only one course of action to save Gilneas. The Harlow family cannot be allowed to emerge from this civil war unscathed. The Regent-Lady Celia Harlow, and Regent-Lord Mortimer Harlow are Dragonkin of the Black Dragonflight. They have long corrupted Gilneas and turned it into a land of decay and conflict.$B$BWe must put an end to the suffering of the land, slay both of them, and rid this place of their evil machinations.", + ["O"] = "End the Draconic Influence over Gilneas by slaying Regent-Lady Celia Harlow, and Regent-Lord Mortimer Harlow for Magus Orelius at Ravenshire in Gilneas.", + ["T"] = "Undoing Draconic Presence", + }, + [40944] = { + ["D"] = "Hail $c. I am Councilor Ravencrest, a noble in service to the rebellion of Lord Ravenwood.$B$BYou have come to Gilneas in a time of strife and civil conflict. Even now the Greymane royalists are no doubt preparing for the coming conflict within the walls of the city itself.$B$BIf you desire to learn more, or help us break free from the shackles of tyranny, I would guide your attention to Ravenshire to the southeast. Simply follow the road and take a left at the fork. Keep following it southward until you reach the town. When you have arrived, speak with Clerk Ebonmere.", + ["O"] = "Meet with Clerk Ebonmere at Ravenshire in Gilneas.", + ["T"] = "Onward to Ravenshire", + }, + [40945] = { + ["D"] = "I once served as a knight of Gilneas. During my service I saw many things that wavered my loyalties. But it was not until the death of my wife that I forever saw the truth.$B$BThe loyalists allowed the incursion of the worgen to punish the innocents outside the city. My wife met her end to a creature named Snarlclaw, and I was forbidden from carrying out my revenge. Now I remain here, to drink away my sorrows.$B$BSlay the beast Snarlclaw, and do what those royalists could never stomach. You will find this beast to the northeast, hiding amongst the caves with the Bloodclaw worgen.", + ["O"] = "Slay the worgen named Snarlclaw for Maxwell Givings at the Shademore Tavern in Gilneas.", + ["T"] = "Snarlclaw", + }, + [40946] = { + ["D"] = "What, you want to help us?$B$B$B$BIf you want to really do something here at Ravenshire, you can get rid of those naga lot that have been gathering at the southern beaches. Ever since last year, they started showing up in droves. Killed a good many fishermen they have!$B$BBring me sixteen of their scales as proof. You can find them all along the coastlines of southern Gilneas. Do that, and you\'ll bring me some peace in this bastard world.", + ["O"] = "Gather 16 Spitecrest Scales from the Spitecrest Naga along the southern coast of Gilneas for Dockwatcher Vorren at Ravenshire in Gilneas.", + ["T"] = "Spitecrest Incursions", + }, + [40947] = { + ["D"] = "You didn\'t think it was going to be that easy, did you? Those Spitecrest naga are a stubborn and vile kind. They are led by a Lord and Mistress both, each commanding two prongs of a forked trident assaulting Gilneas herself.$B$B Find and slay the Lord and Mistress of the naga and you shall end this tyranny threatening our coasts. I have no doubt you will find them amongst their slithering kin on the southern beaches.", + ["O"] = "Find and Slay Lord Zarsan and Mistress Hesszha along the southern coast of Gilneas for Dockwatcher Vorren at Ravenshire in Gilneas.", + ["T"] = "Spitecrest Decursions", + }, + [40948] = { + ["D"] = "Tell me: what is the essence of a nation, the heart of a country, the will of a people? Is it the lands themselves? The rule of law? The economy? No, undoubtedly, it\'s none of these things. The essence of a nation is found in its tradition, history, legacy, determination, willpower.$B$BWe must steel ourselves for the worst, as the entirety of our people wishes to free our king and place him on the throne once more, But what happens if he is not capable of doing so? After the death of the queen, Genn thought it best to send his children away. We only heard about it months later, but it seems that both Liam and Tess are now prisoners of the Harlows.$B$BWe believe Liam is captive in the Dryrock Mine deep under Gilneas City to the west. He is the heir of this country, and so he must bleed with his people in order to liberate it.", + ["O"] = "Find Liam Greymane.", + ["T"] = "Wolf Amongst Sheep", + }, + [40949] = { + ["D"] = "It\'s ironic. I was about to say that I haven\'t been able to see the sun in so long, yet I grinned realising I have yet to see an actual Sunrise in Gilneas anyway, with all its fog and rain.$B$BI must be free of these chains. That harlot, Celia, convinced Father to send us away to Kul Tiras only to bind Tess and I, hiding us away from the world! I helped Tess escape, but they tossed me into this place.$B$BAid me, so that I may find my way towards my people, and so I may help them against the scum that took over my city and poisoned the mind of my father.$B$BGuard Captain Marson, that\'s the name of the brute that holds the key to my freedom. You should be able to find him around here. Perhaps lingering outside in the fresh air.", + ["O"] = "Slay Guard Captain Marson and gather the Rust-Covered Key to free Liam Greymane.", + ["T"] = "One Chain at a Time", + }, + [40950] = { + ["D"] = "You have my thanks. While it would be best for us to return to Ravenshire and report to Darius, I must have you do something else. You must follow my sister\'s footsteps.$B$BBefore she managed to escape, she spoke of Mother\'s stories, though they were nothing more than fairy tales. Alas, it seems that Tess was strongly convinced of the Wolf-Serpent and its followers named the Pellars. She left for the middle of the land, in search of a legend, which is why you must do the same. Find my sister and deliver her safely to Ravenshire.$B$BWe shall meet there once more, since lingering here is the last thing on my mind.$B$BGo with the Light, friend, may it shine brightest when you most need it.", + ["O"] = "Find Tess Greymane beneath the great tree at the center of Gilneas.", + ["T"] = "On Legend\'s Trail", + }, + [40951] = { + ["D"] = "I will remain here with the Pellars. Demetreus has acknowledged my will to learn, and I am prepared to learn their ways before the final battle. As much as possible, that is. There will be a final battle $N, you know. Mark my words, it has been foreseen. With them at our side, we are sure to hold an advantage, even though Demetreus is sure I will play little part in taking down the evil that has corrupted this land.$B$BIf anything he believes that YOU, $N, will play a deciding role in this. They speak in riddles and are very vague, but they are dependable. Find my brother in the town of Ravenshire to the southeast and let him be worry-free.$B$BTell him this: the mane grows grey with wisdom when the long dark sets. He will know what it means.", + ["O"] = "Report to Liam Greymane at Ravenshire in Gilneas.", + ["T"] = "Back to Ravenshire", + }, + [40952] = { + ["D"] = "While you were searching for Tess, I was trying to make my way back to Ravenshire. I dealt with some traitors that sold our country to the Harlows, first, though. With the Light at my side, I wished to rest among the dead and pay my respects to Mother\'s grave.$B$BAs I reached the crypt, I saw a rugged, unfamiliar face. One that showed only aggression to me. Growling like an animal. To say the least, I was not well received, yet they\'ve offered me shelter. They are a strange bunch, led by a stoic, violent lady. Her name is Moranna, she is leading a group of four, and they claim to be a cult that researches immortality. I figure that she might be of aid to us. Reach her at the Hollow Web Cemetery to the west.", + ["O"] = "Find Moranna Rosenberg at the Hollow Web Cemetery in Gilneas.", + ["T"] = "Dim Light in the Darkness", + }, + [40953] = { + ["D"] = "It\'s clear to me that Prince Greymane seeks aid from my research group. I am afraid he must\'ve misunderstood us, however, as we do not intend to reach immortality. Rather, we seek power and healthiness beyond what the human body is capable of. I assume you\'ve already figured out our little secret. If not, let me put this as bluntly as possible: we have accepted the worgen curse.$B$BWe are more than willing to aid Liam in reclaiming his city and his lands; our alchemical knowledge, our teeth, and our latent power are all at his disposal.$B$BWe have yet to have full control of our abilities, but I think I have discovered a way to aid in that regard. Travel northwest to the Dryrock Valley and kill as many of the traitorous ones as possible. Drain their blood and bring it back to me. It will play an important part in our research.", + ["O"] = "Collect 20 Vials of Blood from the Greymane loyalists around Dryrock Valley for Moranna Rosenberg at the Hollow Web Cemetary in Gilneas.", + ["T"] = "Vilest of Men", + }, + [40954] = { + ["D"] = "Perhaps the Prince will feel he has gained more than he bargained for. I have seen a fire in his eyes, one that you should remind him of.$B$BIn dire times, you must not be half-hearted about your actions. There is no greater evil than that which hurts those you care for.$B$BReport back to your Prince, and assure him that my loyalty is towards the common folk of the land.", + ["O"] = "Return to Liam Greymane at Ravenshire in Gilneas.", + ["T"] = "A Crossroads Deal", + }, + [40955] = { + ["D"] = "The threat of Freyshear Keep is a constant pressure upon us here in Ravenshire. It holds great strategical importance, and can deny all of our incoming shipments into the town.$B$BFor us to take a final stand against the city, we need this place destroyed! To the north, a bridge crosses onto the island where Freyshear Keep is located. Go there, and slay the defenders along with Cannoneer Rileson, the one who commands their large guns.$B$BWhen this task is complete, give the news to Lord Ravenwood. He will oversee our final operation.", + ["O"] = "Slay 8 Greymane Preservers and Cannoneer Rileson at Freyshear Keep and then report to Lord Darius Ravenwood at Ravenshire in Gilneas.", + ["T"] = "Assaulting Freyshear Keep", + }, + [40956] = { + ["D"] = "The entirety of Gilneas stands at our side! The tyranny of the royalists can no longer be allowed to stand! If this nation is to ever recover from the darkness, then we must hold fast, and strike even faster still!$B$BThe Greymane Crown must be recovered if our dream is ever to be realized. Enter Gilneas City. Fight your way through his most loyal soldiers. End the Harlows, and reclaim the Greymane birthright. A new king and a new beginning awaits us, $N.", + ["O"] = "\'Save\' Genn, and recover the Greymane Crown for Lord Darius Ravenwood at Ravenshire in Gilneas.", + ["T"] = "The Fall and Rise of Greymane", + }, + [40957] = { + ["D"] = "I am Ralathius, a servant of the Green Dragonflight. It is unusual to find me outside of the Dream, but there is a pressing reason for my presence here.$B$BOur sacred realm has been tainted by an unknown darkness. This corruption emerged suddenly and without warning, spreading its foul touch throughout the Dream. Druids, dragons, and all denizens of the Dream are engaged in a valiant struggle against this insidious force, but we are facing significant losses.$B$BAmong those lost is Solnius the Awakener, a noble soul and one of Ysera\'s most cherished children. Solnius carried the responsibility of safeguarding our most sacred ritual, known as the Awakening. Yet, he has succumbed to the alluring whispers of the Nightmare, and now this sacred power rests in the hands of darkness.$B$BPlease, listen to my tale. He must be stopped at any cost.", + ["O"] = "Listen to the story of Ralathius.", + ["T"] = "Into the Dream I", + }, + [40958] = { + ["D"] = "The Nightmare could be everywhere. $B$BEven those who appear as noble heroes may harbor a hidden allegiance to this malevolent force. I cannot afford to trust blindly. Thus, I require tangible proof of your loyalty.$B$BIn the depths of these enchanted forests, dwell the wretched satyrs, vile creatures who have embraced the darkness. These fiends possess Nightmare Effigies, artifacts imbued with the corrupting power. While these effigies may lack the strength to unleash the full might of the Nightmare upon our world, they still pose a significant threat when wielded by the enemy.$B$BYet, their significance transcends their immediate danger. These nefarious effigies serve as conduits, linking the realms of the Dream and the mortal world. By bringing these fiendish artifacts to me, we can harness their unique properties to expose any agent of the Nightmare who dares to wield them. Three will be enough.", + ["O"] = "Bring three Nightmare Effigies to Ralathius in Nordanaar.", + ["T"] = "Into the Dream II", + }, + [40959] = { + ["D"] = "We will need more materials to attune you to the Dream. Your physical form could become trapped there, and you would surely fall prey to the Nightmare. To ensure your safe passage through the Dreamway, I require the following items: first, a Binding Fragment of Cliffbreaker Giants. This powerful relic will bind your spirit to Azeroth, offering protection in the event of any failures along the way.$B$BNext, an Overloaded Arcane Prism from Dire Maul shall serve as your shield against the magical tempests that permeate the Dream.$B$BAdditionally, acquire a Slumberer\'s Shard, retrieved from our fallen brethren in the depths of the Sunken Temple. This shard possesses the ability to cloak your presence from the defenders of the Dream.$B$BOnce you have gathered these items, seek out Itharius, brother of Eranikus, in the Swamp of Sorrows. We need his blessing to grant you access to the Dream, as this decision is not mine to make.", + ["O"] = "Gather a Binding Fragment from Cliff Breakers in Azshara, Overloaded Arcane Prism from Arcane Torrents in the Western wing of Dire Maul and a Slumberer\'s Shard from Weaver in the Sunken Temple. Report to Itharius in the Swamp of Sorrows with the collected items.", + ["T"] = "Into the Dream III", + }, + [40960] = { + ["D"] = "$B$BI understand. Though Ralathius may have acted impulsively, his intentions were noble. He lacks full comprehension of the unfolding events and his destined role within them.$B$BAs I have remained vigilant here, witnessing the corruption of my brethren by the insidious Nightmare, my heart aches to learn of Solnius\'s unfortunate fate. Such a tragedy befalls us all.$B$BI am on the precipice of unraveling the enigma that shrouds the Nightmare, seeking the means to vanquish it once and for all. Perhaps, in your valiant quest, you shall unearth a vital piece of knowledge that will empower us to triumph. Take this Command, bearing my blessing, to Ralathius. He shall grant you passage into the Dream, as decreed by my authority.", + ["O"] = "Bring Itharius\' Command to Ralathius at Nordanaar in Hyjal.", + ["T"] = "Into the Dream IV", + }, + [40961] = { + ["D"] = "With the gathered items in my possession and the profound knowledge bestowed upon me, I shall now initiate a sacred ritual that will serve as a conduit to the mystical energies of the Emerald Dream. Through this ancient ceremony, we shall establish a harmonious connection, ensuring your safe passage into our revered realm.$B$BAs I invoke the ancient incantations and channel the essence of the Dream, the veils between our worlds shall part, revealing a pathway of tranquility and wisdom. The ethereal mists of the Dream will embrace you, shielding you from harm and guiding you through its verdant landscapes.$B$BEmbrace the majesty of the Emerald Dream!", + ["O"] = "Wait until the ritual is finished.", + ["T"] = "Into the Dream V", + }, + [40962] = { + ["D"] = "Your safe passage into the Dream is impossible while Latharius attempts to sever the Dreamway. If you were to proceed, you would risk becoming trapped and succumbing to the clutches of the Nightmare.$B$BSeek out Larannikus and put an end to his suffering. As confirmation of this act, retrieve a gemstone bestowed upon him by Ysera. He is likely still in possession of it, a Nightmare’s mockery of our legacy.$B$BYou will find Larannikus somewhere within Hyjal, end him.", + ["O"] = "Slay Larannikus and retrieve the Charge of Ysera for Ralathius at Nordanaar in Hyjal.", + ["T"] = "Into the Dream VI", + }, + [40963] = { + ["D"] = "You hold in your hands the severed head of Solnius, once a noble and revered dragon, now corrupted by the insidious Nightmare. The sight is both awe-inspiring and unsettling, as the twisted patterns and symbols on his scales exude an eerie darkness. It is a testament to the power and malevolence of the Nightmare that even a mighty dragon could be so thoroughly corrupted.$B$BWith Solnius vanquished, the news of his demise will bring both relief and satisfaction to Ralathius in Nordanaar. The green dragonkin will rejoice in knowing that a formidable threat has been eliminated, and the Emerald Dream can rest a little easier.", + ["O"] = "Bring the Head of Solnius to Ralathius at Nordanaar in Hyjal.", + ["T"] = "Head of Solnius", + }, + [40964] = { + ["D"] = "Did you hear the news? The Greymane Wall, once an impenetrable barrier, now stands open. Granting us access to our long-lost homeland!$B$BThe call to action has been sounded, and a ship laden with our brave soldiers has set sail for Gilneas. By now, they should have reached the port town of Ravenshire, the very heart of the rebellion against the oppressive regime. Together, under the banner of the Ravenwood Rebellion, we shall liberate Gilneas from the shackles of unjust rule!$B$BIn this critical juncture, we seek any assistance that can be mustered. Make your way to Ravenshire without delay. Once you arrive, seek out Sergeant Arbington.", + ["O"] = "Venture to Gilneas and find Sergeant Arbington in Ravenshire.", + ["T"] = "The Brigade is Coming Home", + }, + [40965] = { + ["D"] = "I\'ve led a rugged existence in these parts. Life here ain\'t always been gentle, but it\'s been plain and straightforward. My duty has been to provide sustenance for my kinfolk and the folks in town, tracking down the savage creatures that roam these woods.$B$BA lot has changed since the rebellion. Now, it falls upon my weary shoulders to not only keep my own family fed but also help supply an entire army! It\'s a burden fit for no ordinary man like myself. I reckon, stranger, could you lend me a hand in this dire situation?$B$BVenture deep into the heart of the forest and set your sights on the batlike creatures known as Vilewings. Don\'t bother with the young ones, their flesh is all stringy and full of veins. It\'s the greater beasts we\'re after. Hunt them down and bring me back no less than nine hefty chunks of their meat. That\'ll be the key to keepin\' bellies full and spirits high in these troubled times.", + ["O"] = "Bring 9 Chunks of Greater Vilewing Meat to Narwick at Ravenshire in Gilneas.", + ["T"] = "Feeding the Rebellion", + }, + [40966] = { + ["D"] = "Greymane, or rather, Harlow, has persistently launched assaults upon Ravenshire, yet to no avail. Our valiant soldiers have repelled their attacks time and time again, displaying unwavering courage. However, in one of their audacious night assaults, the enemy managed to breach the defenses of our city hall and abscond with the Deed to Ravenshire.$B$BWhile this parchment holds little personal value for me, it carries great significance to the common folk as a symbol of my rightful rule. For order to be restored in Gilneas, I must retrieve it without delay.$B$BUndoubtedly, the enemy forces have brought it back to Gilneas City itself. However, as to its current whereabouts, one can only speculate.", + ["O"] = "Find the Deed to Ravenshire in Gilneas City and bring it back to Caliban Silverlaine.", + ["T"] = "The Deed to Ravenshire", + }, + [40967] = { + ["D"] = "In the wake of the rebellion\'s inception, my home, Ravenwood Keep, became the target of an assault by the forces under the command of the Harlows. Our defenders fought with unwavering valor, but we found ourselves outmatched. It seemed that the Harlows had delved into dark magicks to bolster their armies.$B$BThough some of our forces managed to escape the onslaught, the majority fell victim to the blades of our adversaries. Even my loyal servants were not spared from the carnage. Among the casualties were two of my dearest friends, Gately and Mathias.$B$BNow, as the dust settles, a haunting presence looms within the very walls that once provided solace and protection. The restless spirits of Gately and Mathias wander aimlessly, their once noble hearts consumed by bitterness. No longer able to distinguish friend from foe, they wreak havoc upon any who dare to cross their path.$B$BLay these tormented souls to rest, so that they may find peace in the embrace of the eternal slumber.", + ["O"] = "Bring rest to 8 Ravenwood Apparitions, 8 Ravenwood Spectres, Sergeant Gately and Custodian Matthias for Lord Darius Ravenwood at Ravenshire in Gilneas.", + ["T"] = "Ravenwood Keep", + }, + [40968] = { + ["D"] = "Indeed, it is a momentous occasion. The Greymane Wall has finally been breached.$B$BDuring their long years of isolation, the Gilnean throne has fallen into the hands of a pair of Alteraci nobles - Harlows. They harbor open hostility towards the Alliance, making it crucial for us to support the rebellion that has taken root within Gilneas. They call themselves the Ravenwood Rebellion, and it is through their efforts that the gates of Gilneas have been opened once more. Their leader has reached out to the Alliance, beseeching us for aid.$B$BI have received orders from Lord Fordragon himself to deploy any able-bodied soldiers to lend assistance to the Ravenwood Rebellion in their struggle for the liberation of Gilneas. Travel westward, through Silverpine until you reach the Greymane Wall. Beyond it, nestled along the coastline, you will find the town of Ravenshire.$B$BOnce you arrive, seek out Lord Ravenwood. Assure him that the Alliance stands unwavering in its commitment to its allies.", + ["O"] = "Venture to Gilneas and pledge your support to Lord Darius Ravenwood.", + ["T"] = "The Wall Comes Crashing Down", + }, + [40969] = { + ["D"] = "Working with sturdy Gilnean ore is no small feat, let me tell ya. But there were times when I yearned for something more exotic, especially when the Greymane Walls closed shut. Oh, the longing I felt!$B$BBut now fate has smiled upon me. Finally, I\'ve been given a chance to once again lay my skilled hands on those rare ores. There\'s one ore in particular that holds a special place in my heart, Crystalvein. Back in the days of my apprenticeship, I had the honor of working with it. It was a beauty, I tell ya—strong, durable, and a joy to forge. Having that ore by our side would be a true blessing for the rebellion.$B$BSadly, Crystalvein is a treasure found only in the distant lands of Stranglethorn. If, by some stroke of luck, you happen to set foot in Booty Bay, seek out a goblin by the name of Crank. He used to be my go-to supplier for that precious ore. Tell him I sent ya, and maybe, just maybe, he\'ll be able to hook you up with some Crystalvein once again.", + ["O"] = "Find Crank in Booty Bay.", + ["T"] = "Crystalvein Ore", + }, + [40970] = { + ["D"] = "Ah, Todd, good ol\' blacksmith, that one. He sure had a knack for working with those metals. I\'ll give him that. But here\'s the thing, I can\'t exactly fulfill his request for that ore he\'s after. It\'s a bit of a sticky situation, ya see.$B$BThe mine he\'s talkin\' about, the Crystalvein Mine, got itself overrun by those pesky basilisks. Nasty creatures, they are. Just one gaze from \'em, and poof, you\'re a crystal! So, understandably, we goblins have been keepin\' our distance.$B$BBut hey, if you\'re feelin\' either foolish or brave, and you\'re up for clearin\' out the basilisks from that cave, well, we might just have ourselves a deal. You do the dirty work, and any ore you find there is yours to keep. Fair and square. Mind ya, it\'s gotta fit in your backpack, though. Can\'t have ya luggin\' around mountains of the stuff.$B$BSo, what do ya say, adventurer? You up for the challenge? If so, head northeast from here, and you\'ll find the Crystalvein Mine.", + ["O"] = "Gather 10 Crystalvein Ore and slay 6 Thrashtail Basilisks and 6 Ironjaw Basilisks for Crank Fizzlebub in Booty Bay.", + ["T"] = "Crystalvein Mine Cleanup", + }, + [40971] = { + ["D"] = "Alright, my pal, here\'s the package you\'ve been waiting for. Crystalvein, all neatly packaged and ready for delivery. Take good care of it now, ya hear?$B$BNow, when you see Todd, pass along my message. Tell him to swing by once he\'s done with all this Rebellion business and whatnot. We\'ll have a good ol\' chat and catch up on things. Wish him the best of luck from me, will ya?$B$BAs for me. Well, I have got business to attend to. There\'s money to be made and deals to be struck.", + ["O"] = "Deliver the Crystalvein Shipment to Todd Bolder at Ravenshire in Gilneas.", + ["T"] = "Crystalvein Delivery", + }, + [40972] = { + ["D"] = "Welcome to the remnants of Gilneas. $B$BWhat lies before your eyes may not match the grandeur and splendor you envisioned. This once-mighty bastion of human power now stands as a testament to the relentless march of time and the ravages of war. We, too, have succumbed to the fate that has befallen much of the world.$B$BTake a moment and lend an ear to the tale of an old knight.", + ["O"] = "Listen to the tale of Darius Ravenwood.", + ["T"] = "The Rebellion", + }, + [40973] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Mass Harmonization", + }, + [40974] = { + ["D"] = "In life I was a soldier, loyal to the Greymane cause. I participated in the battle of Greyshire and basked in the great victory over the scourge.$B$BWhilst I considered myself a great warrior, I was ambushed by a great beast with my fellow comrades. The large worgen tore us apart, and though I fought back, I was felled.$B$BNow I am here, to toil in the ceaseless memories of my failures. I want revenge upon that worgen. It goes by the name Snarlclaw. He is known to lurk deep within a cave to the west of here near the Bloodclaw camp.$B$BBring me his paw, and you shall be rewarded.", + ["O"] = "Bring the Paw of Snarlclaw to Dominic Larson at Stillward Church in Gilneas.", + ["T"] = "Revenge After Death", + }, + [40975] = { + ["D"] = "$B$BIn life my name was Karl Glaymore, my family was one of prominence within Gilneas. Now, we are nothing, all of us removed from the world of the living.$B$BWe were tried for conspiracy, all of us, for claims that held no merit. My children were butchered one by one by that cruel Judge Sutherland. His judgements passing with each swing of the gavel.$B$BWe were set to be examples, and now I am here to haunt this existence, to fester in anger...$B$BBring me peace. Find Judge Sutherland in Gilneas City, and end his life. I will know when the deed is done.", + ["O"] = "Slay Judge Sutherland within Gilneas City for the Angered Phantom at the Glaymore Stead in Gilneas.", + ["T"] = "The Judge and the Phantom", + }, + [40976] = { + ["D"] = "The worgen of Gilneas are surprisingly well organized for a bunch of beasts. Their packs have caused us quite a lot of headache in spreading our influence.$B$BI am in need of someone who can sever the chain of command. An aimless group of worgen will serve us much better in the end. Travel west and search for the cavern where the Bloodclaw alpha call home. Slay them so that their packs cannot organize against us.", + ["O"] = "Slay 9 Bloodclaw Alpha for Deathstalker Vernon at Stillward Church in Gilneas.", + ["T"] = "War on Worgen", + }, + [40977] = { + ["D"] = "Hey, you there.$B$BYou know anything about bat extermination? These past few weeks have been hell. All of my efforts to drive away these bats have ended in disappointment. Perhaps you can do me a solid and rid me of their annoyance.$B$BIf I am to restore the Ebonmere farm they need to go, and for good. Thin their population, and kill twelve of them, return to me when the task is done.", + ["O"] = "Slay 12 Vilewing Batlings for Joshua Ebonmere at Ebonmere Farm in Gilneas.", + ["T"] = "Ebonmere Bat Infestation", + }, + [40978] = { + ["D"] = "The worgen in Gilneas entered shortly after the Greymane wall was destroyed in Oldrock Pass. You see, a powerful lich invaded the land and destroyed Greyshire some time ago. Now the forests themselves are packed full of the beasts, threatening to overtake my farm at any minute.$B$BI need you to collect their pelts and prevent any future attacks. Six pelts from the Bloodclaw and Nighthowl worgen should suffice. You can find these packs to the west and southwest.", + ["O"] = "Collect 6 Bloodclaw Pelts, and 6 Nighthowl Pelts for Joshua Ebonmere at Ebonmere Farm in Gilneas.", + ["T"] = "Ebonmere Worgen Infestation", + }, + [40979] = { + ["D"] = "Now that you\'ve proven yourself to me as a valuable ally, I have more pressing matters that I need looked into.$B$BYou see, three weeks ago my farm was robbed. A swindling rogue named Dustivan Blackcowl was employed to take the deed of Ebonmere Farm itself!$B$BHe is a lackey to Greymane and serves like an obedient dog. I want his hand for this treachery, and I want my family deed recovered. Do this for me and I will see you rewarded justly.$B$BI have no doubt you will find this rogue deep within the bowels of Gilneas City itself.", + ["O"] = "Slay Dustivan Blackcowl and recover the Ebonmere Deed for Joshua Ebonmere at Ebonmere Farm in Gilneas.", + ["T"] = "Ebonmere Affairs", + }, + [40980] = { + ["D"] = "My brother Franklin Blackheart may have been living, but he was my brother. He took up the cause to fight with the Ravenwood rebellion. It is here he met his fate, ambushed by the Greymane. Not a single person was spared, and the entire camp was burned to the ground.$B$BSeeing his twisted remains hurt me in a way nothing else has. I can feel it deep within, the sadness of his demise lingers still. I want retribution on those that have done this, slay the Greymane that inhabit Gilneas. They can be found to the east, just north of Ravenshire, or to the west of here, in a place called Dryrock Valley.$B$BBring me forty Greymane Signets from any who would swear allegiance to their cause.", + ["O"] = "Slay those loyal to the Greymane cause, and gather from them 40 Greymane Signets for Harrison Blackheart in Gilneas.", + ["T"] = "Greymane Hatred", + }, + [40981] = { + ["D"] = "I have heard rumors from the Deathstalkers that the ambush was facilitated by Captain Veller stationed at Freyshear Keep. If this information is true, then this man was the murderer of my brother.$B$BA very valuable piece of jewelry was taken from Franklin\'s corpse; the Blackheart Necklace. I have no doubt in my mind that this pompous man has taken the necklace.$B$BFreyshear Keep can be found far to the east, isolated on an island that looms overtop of Ravenshire. Kill him, and recover the necklace.", + ["O"] = "Assault Freyshear Keep and Slay Captain Veller to recover the Blackheart Necklace for Harrison Blackheart in Gilneas.", + ["T"] = "The Blackheart Killer", + }, + [40982] = { + ["D"] = "I have one last request from you. I figure you should do the honors, since you have recovered this necklace after all.$B$BPlace it upon the grave of Franklin, we can honor him in this way at least.", + ["O"] = "Place the Blackheart Necklace on the grave of Franklin.", + ["T"] = "In Memory of Franklin", + }, + [40983] = { + ["D"] = "I am bound to hold the demons at bay, and such duties compel me to remain here. The lack of word from Nordanaar is worrying, but I suspect the growing demonic presence may be what is causing delays.$B$BI must ask you to deliver my report to Nordanaar at the very top of the summit. Follow the road until you reach the town. Find Arch Druid Dreamwind, and give him this letter.", + ["O"] = "Bring the Report from Endaras to Arch Druid Dreamwind at Nordanaar in Hyjal.", + ["T"] = "Report to Nordanaar", + }, + [40984] = { + ["D"] = "We have been charged with the duty to reactivate the Runestone of Cenarius. The magical energies that once ran through this stone were linked with the Runestone of Nordrassil, allowing transporation between here and Nordanaar.$B$BHowever, a foreign magic is interfering with this process. I require materials in order to ascertain what is exactly happening.$B$BFrom the Barkskin Furbolg gather five Barkskin Spirit Beads, from the Misthoof gather three of their antlers, and finally, I require a single Shimmering Ooze from the sludge like creatures that inhabit the region.", + ["O"] = "Gather 5 Barkskin Spirit Beads, 3 Misthoof Antlers, and a Shimmering Ooze for Buthok Cloudhorn near the base of Hyjal.", + ["T"] = "The Runestone of Cenarius", + }, + [40985] = { + ["D"] = "I have prepared the ritual. Using the materials you have collected I should be able to uncover the magic that is lingering upon the Runestone.$B$BGive me some time, and speak to me when I am done.", + ["O"] = "Wait for Buthok Cloudhorn to finish his ritual.", + ["T"] = "The Runestone Ritual", + }, + [40986] = { + ["D"] = "Undoing a powerful satyr curse is not something that can be easily done, especially not with any magic that we here possess. We will need to create a satyr relic named the Clutch of Atherelex. Each satyr tribe holds a specific rod. Should a specific curse need to be undone all of the rods must be attached together in unison in order to channel a specific magic to remove the curse.$B$BTo create the Clutch of Atherelex we require the Rod of \'Ath, from the Vilemusk satyrs in Hyjal. The Rod of \'Ere from the Legashi satyrs in Azshara. Finally, the Rod of \'Lex from the Jadefire satyrs.", + ["O"] = "Gather the Rod of \'Ath, the Rod of \'Ere, and the Rod of \'Lex for Buthok Cloudhorn near the base of Hyjal.", + ["T"] = "The Clutch of Atherelex", + }, + [40987] = { + ["D"] = "The Clutch of Atherelex is reliant on elemental magic, drawing power from potent natural energies. To access the magic that we so desire, we must acquire a Imbued Stone.$B$BPowerful, and enraged elementals of stone are known to hold such items.$B$BOn the island of Tel\'Abim to the east of Tanaris can be found Agitated Rock Elementals. Travel there, and acquire an Imbued Stone from them.", + ["O"] = "Acquire an Imbued Stone from Rock Elementals in Tel\'Abim for Buthok Cloudhorn near the base of Hyjal.", + ["T"] = "Imbued Stone", + }, + [40988] = { + ["D"] = "I have tried my hand at lifting the curse with the required items, but it would appear there is still something wrong.$B$BAfter a careful studying of the Runestone I have come to the conclusion that a chunk of it has been removed. I have my guesses, but I believe a satyr named Xalthix is in control of this chunk. With it, he can keep this curse active indefinitely.$B$BFind Xalthix, and from him, recover the Runestone Chunk.", + ["O"] = "Find and slay the satyr Xalthix within Hyjal, and recover the Runestone Chunk for Buthok Cloudhorn near the base of Hyjal.", + ["T"] = "The Runestone Curse", + }, + [40989] = { + ["D"] = "With everything in place, the power of the Runestone will soon be channeling once again. I require you to speak with Glanthas the Ancient in Nordanaar. It is he that controls the power of the Runestones here in Hyjal. With his magic, you should be allowed teleporation between both stones.", + ["O"] = "Speak with Glanthas the Ancient at Nordanaar in Hyjal.", + ["T"] = "Runestone Reactivation", + }, + [40990] = { + ["D"] = "$B$BIt would appear Buthok has proven successful in re-energizing the Runestone of Cenarius. Though, there is one last problem that still offers trouble.$B$BYou see, I once charged a druid named Enthelar Valebranch with overseeing the Runestones some years ago. The Runestone Scepter, which activates the magic was in his possession when he succumbed to the whim of corruption.$B$BLast I heard, Enthelar Valebranch was seen wandering Winterspring, his mind addled, and lost. Recover the Runestone Scepter, and I will grant you access to the Runestones of Hyjal.", + ["O"] = "Recover the Runestone Scepter from Enthelar Valebranch, last seen wandering Winterspring for Glanthas the Ancient at Nordanaar in Hyjal.", + ["T"] = "The Runestone Scepter", + }, + [40991] = { + ["D"] = "In my previous life as a living man, I was enthralled by the tales of the Azotha, our long-lost human predecessors from a bygone age. Their ancient knowledge and artifacts fascinated me.$B$BAlas, the tumultuous situation in Gilneas hindered my research on the Azotha, trapping me within these confining walls. Now, the gates have finally opened, but as a forsaken, venturing into human lands would be my ultimate demise.$B$BHowever, I have heard whispers of a secluded city known as Corthan, nestled in the treacherous Badlands. Legends speak of a powerful and enigmatic Azotha artifact hidden within its abandoned walls—the Hand of Corthan. Although the true nature of this relic eludes me, I am certain that it holds great significance and would be a valuable addition to my collection.", + ["O"] = "Bring the Hand of Corthan to Dark Bishop Mordren at Stillward Church in Gilneas.", + ["T"] = "For the Collection", + }, + [40992] = { + ["D"] = "The Foulhide gnolls, wretched creatures that they are, have likely crossed your path on your journey here. Like any typical gnoll, they possess little intelligence, resorting to savagery and brute force. Communication or cooperation with them is an exercise in futility.$B$B The Regents turn a blind eye, while the so-called Rebellion remains preoccupied with their own affairs. Thus, it falls upon us to address this predicament.$B$BOur motivations are far from altruistic, mind you. These gnolls have become an insurmountable obstacle, intercepting crucial supplies dispatched from Undercity. Such interference is unacceptable. Venture southward and dispatch as many of these abominations as you can.$B$BReturn to me with sixteen Foulhide paws as undeniable proof of your success.", + ["O"] = "Bring 16 Foulhide Paws to Harlan Ballow in Stillward Church.", + ["T"] = "Foulhide Mongrels", + }, + [40993] = { + ["D"] = "The wretched Greymane forces, perpetrators of my demise and desecrators of my church. Why did they target me?$B$BThe answer remains an enigma, yet I sense it is intertwined with the significance of this place. Centuries ago, a battle unfolded upon this very hill, where the forces of Gilneas, against all odds, triumphed over Arathor. I am convinced that the key to their triumph lay buried within these grounds, and the Regent\'s bloodlust coveted this dormant power for their own malevolent purposes.$B$BWe must delve deep into this mystery. Unearthing such power would bestow upon us a formidable advantage. I shall sift through these weathered tomes, unearthing knowledge that may shed light on our quarry.$B$B In the interim, I ask you to embark on a perilous journey to Desolace. There, amidst the demons, seek out and retrieve the Eye of Xythos—an artifact rumored to possess the ability to uncover the secrets of the past... if one can channel the energies of the Forgotten Shadow, of course.", + ["O"] = "Find the Eye of Xythos in Desolace, then return to Dark Bishop Mordren at Stillward Church in Gilneas.", + ["T"] = "Through Greater Magic", + }, + [40994] = { + ["D"] = "I have beheld the truth, a glimpse into the First Battle of Stillward as if I had been there myself. The ancient tomes, with their accounts of Garalon Greymane\'s tactical prowess, now revealed as a tapestry of deception. He wielded an ominous power, a force derived from entities that even my mind struggles to comprehend. Clutched in his hand was a scepter, a conduit through which he commanded the very essence of darkness. Its sheer potency was nothing short of terror-inducing.$B$BWe cannot allow this power to fall into the clutches of our enemies. If they were to uncover the truth, it could spell doom for our cause. Listen closely. In the depths of my vision, I recognized the scepter\'s likeness. It once resided within the halls of Ravenwood Keep.$B$BAlas, the keep now lies in ruins, razed by the onslaught of Greymane\'s forces. We can only pray that the scepter remains unclaimed by their hands.$B$BVenture forth to the Ravenwood Keep. Seek out a scepter forged from dark obsidian and bring it to me.", + ["O"] = "Retrieve the Ravenwood Scepter from Ravenwood Keep for Dark Bishop Mordren in Stillward Chuch.", + ["T"] = "The Ravenwood Scepter", + }, + [40995] = { + ["D"] = "To harness the true potential of this fractured weapon, we must not shy away from embracing the power it holds. However, caution must prevail, for in its current state of disrepair, wielding it would be a grave folly. To mend the cracks that mar its surface and restore its formidable strength, I require a potent artifact crafted from dark obsidian.$B$BFortuitously, I have knowledge of a likely source for such an object. Venture westward, to the Barrens of Kalimdor, where Razorfen Downs stands as a bastion of darkness. Within its depths, a malevolent lich has established his abode, guarded by undead minions and ensconced in nefarious sorcery.$B$BIt is said that his phylactery, the vessel of his immortal essence, is forged from the very obsidian we seek.", + ["O"] = "Venture into Razorfen Downs, slay Amnennar the Coldbringer and retrieve his phylactery for Dark Bishop Mordren at Stillward Church in Gilneas.", + ["T"] = "The Powers Beyond", + }, + [40996] = { + ["D"] = "Regrettably, the crystal that once adorned the apex of the scepter has been lost to the ravages of time. Its whereabouts remain unknown, and locating it may prove to be an insurmountable challenge. However, despair not, for I have devised an alternative solution.$B$BDuring the Alterac Succession Crisis, a figure known as Lord Prestor frequented Gilneas City and established a close bond with the king himself. As a gift, he bestowed upon Genn a potent artifact known as the Shard of Midnight.$B$B Legends abound regarding its corrupting influence, and it is said that the Shard has been securely sealed within the Greymane Tower.$B$BYour task is clear: locate the Shard of Midnight and restore it to its rightful place within the Scepter. Only then shall its power be fully rekindled.", + ["O"] = "Recover the Shard of Midnight for Dark Bishop Mordren in Stillward Church.", + ["T"] = "The Greymane Stone", + }, + [40997] = { + ["D"] = "Your efforts have proven invaluable. Without you, our triumph would have remained naught but a distant dream. It is only fitting that you undertake the task of delivering this Scepter to Varimathras. He has been duly apprised of its profound importance and eagerly anticipates your arrival.$B$BI would strongly advise against keeping him waiting. Remember, he is a Dreadlord, and their patience is not to be trifled with.", + ["O"] = "Deliver the Scepter of Garalon to Varimathras in the Undercity.", + ["T"] = "Gift of the Dark Bishop", + }, + [40998] = { + ["D"] = "", + ["O"] = "Find someone that may be know something about the Scribbled Cooking Notes.", + ["T"] = "Scribbled Cooking Notes", + }, + [40999] = { + ["D"] = "If you desire to learn more, I will require some favors before I can impart what knowledge I can glean from this parchment. When I first arrived in Karazhan some time ago, I wore an engraved bracelet made of the finest gold. It was a symbol of my status, and has subsequently gone missing ever since I have been roaming and haunting these halls.$B$BI am certain I left my bracelet somewhere within these lower halls. Recover it for me, and I will be quite thankful.", + ["O"] = "Recover the Engraved Golden Bracelet for Duke Rothlen in Karazhan.", + ["T"] = "Lost and Found", + }, + [41000] = { + ["D"] = "I am thankful for your work in recovering my Engraved Golden Bracelet, but I long for something closer to my heart. I left my family behind long ago to come to this place, only to forever become trapped.$B$BI want a memento of the past, something that I can look back on with the fondest of memories. With it, I may find some peace.$B$BI once hailed from the lands of Lordaeron, and the city of Stratholme, my family house is within the trade district, find the Rothlen house, and recover my family brooch.", + ["O"] = "Recover the Rothlen Family Brooch from Stratholme for Duke Rothlen in Karazhan.", + ["T"] = "Rothlen Family Brooch", + }, + [41001] = { + ["D"] = "I have taken the time to study the parchment, and have discovered that it is a half complete copy of \'Le Fishe Au Chocolat\'. One of Medivh\'s more favored dishes, and one that takes considerable skill to complete. If you desire to learn what secrets this recipe holds, I suggest you speak to \'The Cook\' here in Karazhan.", + ["O"] = "Speak with \'The Cook\' in Karazhan.", + ["T"] = "The Secret Recipe", + }, + [41002] = { + ["D"] = "Yes, it was me who devised this recipe. I have taught it to very few of the cooks that we had working within Karazhan. It was not widely appreciated, but adored by Medivh.$B$B I am not freely able to dispense with such information, but if you are able to produce a \'Charge of Karazhan\' from Doorman Montigue, I could easily provide you with the recipe. Speak with him, and see to acquiring one.", + ["O"] = "Speak with Doorman Montigue in Karazhan.", + ["T"] = "The Doorman of Karazhan", + }, + [41003] = { + ["D"] = "You require a Charge of Karazhan? Well, these are not freely given to members of the public and guests of the tower. They are earned from ample donations to Medivh and the magical services that he provides. If you desire a Charge, we can take a donation on your behalf for when our master returns.$B$BAt the current, we are looking for ten Essence of Death, ten Essence of Life, and twenty-five gold. Bring this donation on Medivh\'s behalf, and I will make sure you are rewarded justly.", + ["O"] = "Bring 10 Essence of Undeath, 10 Living Essence, and 25 Gold to Doorman Montique in Karazhan.", + ["T"] = "Charge of Karazhan", + }, + [41004] = { + ["D"] = "As I have promised, here you are, a Charge of Karazhan.$B$BI thank you for your support. Please, make yourself at home here in Karazhan.", + ["O"] = "Bring the Charge of Karazhan to The Cook in Karazhan.", + ["T"] = "Le Fishe Au Chocolat", + }, + [41005] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Nordanaar Herbal Tea", + }, + [41006] = { + ["D"] = "I, Slumbnaz am a master of deceptive magic.$B$BMy draconic powers can be attuned to transform the look of myself and those around me, to bend the very visual reality of Azeroth itself. If you desire a taste of such magic, I can reward you for your efforts in helping my kin.$B$BBring me twenty-five Bright Dream Shards and I will offer you this illusion.", + ["O"] = "Gather 25 Bright Dream Shards for Slumbnaz at Nordanaar in Hyjal.", + ["T"] = "Illusion: Green Dragonkin", + }, + [41007] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Collecting Fading Dream Fragments", + }, + [41008] = { + ["D"] = "The mighty stag of Nordrassil is most revered by the druids here at Nordanaar.$B$BFor the most triumphant of deeds to our cause, I could reward you with such a mount. This reward is only privileged for those that have gone above and beyond. Bring me five hundred Bright Dream Shards and you shall be rewarded with a mount most fitting for your dedication.", + ["O"] = "Gather 500 Bright Dream Shards for Evandil Nightwind at Nordanaar in Hyjal.", + ["T"] = "Nordrassil Stag", + }, + [41009] = { + ["D"] = "It is here on Hyjal that the power of the Emerald Dream can be felt most prominently. As of late, there has been a disturbance in channeling such energies. Not many make the pilgrimage to Hyjal as they once did.$B$BI have been sent as an envoy for the spirits of Moonglade, who have asked for able bodied druids assisting Hyjal. If you wish to prove your efforts, the spirits within Moonglade will certainly reward such noble actions. Seek out the Great Cat Spirit in Moonglade, and bring with you twenty Bright Dream Shards, as well as eight Arcane Essence.", + ["O"] = "Gather 20 Bright Dream Shards, and 8 Arcane Essence for the Great Cat Spirit in Moonglade.", + ["T"] = "Glyph of the Dream Panther", + }, + [41010] = { + ["D"] = "It is here on Hyjal that the power of the Emerald Dream can be felt most prominently. As of late, there has been a disturbance in channeling such energies. Not many make the pilgrimage to Hyjal as they once did.$B$BI have been sent as an envoy for the spirits of Moonglade, who have asked for able bodied druids assisting Hyjal. If you wish to prove your efforts, the spirits within Moonglade will certainly reward such noble actions. Seek out the Great Bear Spirit in Moonglade, and bring with you twenty Bright Dream Shards, as well as eight Arcane Essence.", + ["O"] = "Gather 20 Bright Dream Shards, and 8 Arcane Essence for the Great Bear Spirit in Moonglade.", + ["T"] = "Glyph of the Emerald Bear", + }, + [41011] = { + ["D"] = "Many long years ago, I came in contact with a powerful artifact that drew immense powers from the ley-lines across Azeroth. I intended to study this artifact but its powers slowly drained through the years. What research I was able to conduct was rather disappointing, and now I am left with a rather exquisite paper-weight.$B$BIf you assist me in restoring this old relic to its former power, perhaps you may have more luck with it than I did. The first thing that I require is a Dragonkin Charge, which holds great draconic magic. I have heard that dragonkin from Blackrock Spire are known to possess such items.", + ["O"] = "Gather a Dragonkin Charge from the Black Dragonkin within Blackrock Spire for Parnabus in Gilneas.", + ["T"] = "The Upper Binding I", + }, + [41012] = { + ["D"] = "I have attempted to use the Dragonkin Charge to repower the relic, but I have had no luck in energizing its latent power. I suspect we will require a more active source of ley energy.$B$BI will require some items before I can begin this ritual. First, I need you to collect the following items which should be easier to obtain. Five essence of fire, and a single fragment of earth should be enough to get us started. These materials might be tricky to find, but I do know that fragments of earth can be found from earth elementals seen in Silithus. I suggest that you start there.", + ["O"] = "Gather 5 Essence of Fire, and 1 Fragment of Earth for Parnabus in Gilneas.", + ["T"] = "The Upper Binding II", + }, + [41013] = { + ["D"] = "With the Elemental Fire, and the Fragment of Earth, we can ground the relic to prepare for real energization. This binding requires an extreme charge of ley-energy that could rival the power that it once held. To find such a collection of raw arcane power is rare on Azeroth.$B$BI have sensed an extreme amount of arcane discharge coming from the continent of Kalimdor for some time. With rumors I have heard, I can only deduce that the once elven city now called Dire Maul is discharging extreme energy.$B$BIt is here that I require a Supercharged Arcane Resonation, which should be found from any elements of arcane that have materialized there. Gather me one, and I will provide you with the relic as it once was.", + ["O"] = "Gather a Supercharged Arcane Resonation from the arcane elementals of Dire Maul for Parnabus in Gilneas.", + ["T"] = "The Upper Binding III", + }, + [41014] = { + ["D"] = "You have done well in acquiring these materials $c. As I have promised, I will perform the ritual to recharge this relic as it once was. Speak to me when I am finished.", + ["O"] = "Speak with Parnabus when the ritual is complete.", + ["T"] = "The Upper Binding IV", + }, + [41015] = { + ["D"] = "Some years ago, a rare and powerful item was stored inside of this church. I have been cursed to remain ever since its disappearance years ago. If you could recover this item and return it to Karazhan, I would be more than thankful.$B$BThe Binding was torn apart before it was ever stolen, both halves now rest with separate owners. The first was taken by a hermit mage who held no affiliations, his accent certainly sounded like he came from the north.$B$BThe second half of the binding was taken by a man of faith, of vigilance, wearing red cloth and bearing the symbol of the Light itself. His ravings almost sounded mad!$B$BGather me both the upper and lower half of the binding, and I can make it whole.", + ["O"] = "Gather the Upper Binding of Xanthar and the Lower Binding of Xanthar for Hanvar the Righteous in the small church outside of Karazhan.", + ["T"] = "The Binding of Xanthar", + }, + [41016] = { + ["D"] = "Alzzin he calls himself, The Wildshaper, a title given to him by the druids in Hyjal. A twisted, corrupted mockery of what he once was, standing opposed to all beliefs he once held dear.$B$B\'Alzzin\' was once a friend of mine, yet now seeks nothing but the total corruption of Feralas. I feel it is my duty to put an end to his evil schemes once and for all.$B$BYou can find him lurking deep within Dire Maul with his satyr kin. Slay him, and bring me his head, only then will I find solace.", + ["O"] = "Bring the Head of Alzzin the Wildshaper for Arch Druid Dreamwind at Nordanaar in Hyjal.", + ["T"] = "The Wildshaper", + }, + [41017] = { + ["D"] = "Nordrassil Glade has been a place of tranquility for many ages, but already agents of the legion have begun to spread their taint. Satyrs, traitors of a most disgusting kind have been probing at our borders.$B$BThey call themselves the \'Vilemusk\' a name befitting of their illbegotten kin. I demand their presence removed from Hyjal, hunt them, and bring me their hooves as proof of your deeds. Do so, and you shall be rewarded.", + ["O"] = "Gather thirty Vilemusk Hooves for Arch Druid Dreamwind at Nordanaar in Hyjal.", + ["T"] = "Vilemusk Infiltration", + }, + [41018] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Corrupted Dream Shards", + }, + [41019] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Shadeflayer Tribal Bracelets", + }, + [41020] = { + ["D"] = "During the Third War, the Burning Legion tested their strength against our might, and were defeated by the armies that gathered before Nordrassil. Again they come, gathering in preparation for nefarious deeds.$B$BThis time we have no mighty armies to defend us, or the wisdom of Malfurion to guide us. The defense of Hyjal relies on us, the brave remaining few, to be vigilant against evil.$B$BI ask you to challenge the might of Lord Xanvarak. The leader of the Burning Legion here in Hyjal. He has begun to assemble a mighty host of demonic soldiers in Bleakhollow Crater, just outside of Nordrassil Glade to the west. Bring me his heart, and put an end to our worries.", + ["O"] = "Bring the Heart of Xanvarak to Arch Druid Dreamwind in Nordanaar.", + ["T"] = "Lord Xanvarak", + }, + [41021] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Culling Wildlife", + }, + [41022] = { + ["D"] = "All around Hyjal, manifestations of corruption taking place within the Emerald Dream are appearing. The green sludges taint the land and actively threaten our way of life. We need to combat this hazard as we would demons of the Burning Legion.$B$BCollect forty Enchanted Sludge as proof of your deeds. Do this, and I shall make sure you are rewarded well.", + ["O"] = "Gather 40 Enchanted Sludge from Oozes for Farana Leafblade in Hyjal.", + ["T"] = "Manifestations of Nightmare", + }, + [41023] = { + ["D"] = "I have prepared a sample of the Enchanted Sludge you have gathered for me. I request that you bring it to Glanthas the Ancient at Nordanaar.$B$BLast I heard, Glanthas and a druid were working together to find the root cause of something similar. Perhaps this sample of sludge can offer them both assistance.", + ["O"] = "Bring the Sludge Sample to Glanthas the Ancient in Nordanaar.", + ["T"] = "Sample for Glanthas", + }, + [41024] = { + ["D"] = "A druid named Canos Clearwood tasked himself with the inquiry into such monstrosities within Azshara some years ago. His research, however, has led him on a trip to the once human realm of Eastern Plaguelands.$B$BFrom what I hear, he is currently investigating there to find a link between the sludge-like monsters.$B$BBring him this sample, and perhaps you may both learn what is causing this new phenomenon here in Hyjal.", + ["O"] = "Bring the Sludge Sample to Canos Clearwood in Eastern Plaguelands.", + ["T"] = "Studying Manifestations", + }, + [41025] = { + ["D"] = "My research in Azshara has yielded interesting information, though I still need to conduct research here in the Eastern Plaguelands. I have been attempting to find a link between magic and the Oozes themselves, but so far it would appear I have no luck. I have come to the conclusion that these creatures have been here for quite a while, and thus their magical potency has diminished.$B$BI ask of you to find an Imbued Sludge, one that contains a trace of magical energy. You can find the monstrosities near Light\'s Hope Chapel and Corin\'s Crossing here in the Plaguelands.", + ["O"] = "Gather an Imbued Sludge from the Oozes in Eastern Plaguelands for Canos Clearwood near Lake Mereldar.", + ["T"] = "Manifestation Similarities", + }, + [41026] = { + ["D"] = "It would appear that the Oozes are linked to surges of intense and dark magical powers. Lingering as an after effect to great magical energy itself. Perhaps this is a natural occurance, or something much deeper.$B$BIn truth, I cannot be certain if my evidence is correct, or if I am looking in the right area. Regardless, I have prepared a report for Arch Druid Dreamwind in Hyjal. It should explain everything I have come to find.$B$BI must thank you for your assistance, without you, I would still be digging through oozes.", + ["O"] = "Bring Canos\' Report to Dreamwind at Nordanaar in Hyjal.", + ["T"] = "Report to Dreamwind", + }, + [41027] = { + ["D"] = "$B$BI sense purpose upon you. A strength that lingers from your essence. I have a task for you, one that will test your cunning and resilience.$B$BNestled within Felwood is a place called Shadow Hold. Once a barrow den of the druids, now infested by the Burning Legion. This stronghold contains a relic most important to me, the Fang of Loresh. You see, the corruption that lingers deep within Shadow Hold has turned the spirit of Loresh into madness and I seek to bring an end to the torment that has been inflicted.$B$BShow me your ferocity, and bring me this relic.", + ["O"] = "Recover the Fang of Loresh from deep within Shadow Hold for the Great Cat Spirit in Moonglade.", + ["T"] = "Stolen Ferocity", + }, + [41028] = { + ["D"] = "Corruption has completely dominated all essence that was once held within the Fang of Loresh. To preserve the spirit still contained within, we will need to collect a large amount of materials to begin my ritual.$B$BI ask you to bring me ten Bright Dream Shards, found in Hyjal. Ten Living Essence, and a single Large Brilliant Shard. These last materials may require some searching to acquire.$B$BReturn to me once these items are gathered.", + ["O"] = "Gather 10 Bright Dream Shards, 10 Living Essence, and 1 Large Brilliant Shard for the Great Cat Spirit in Moonglade.", + ["T"] = "The Fang of Loresh", + }, + [41029] = { + ["D"] = "The dark and twisted shadow of Loresh has been made manifest by the powerful magic lingering upon his fang. If we desire to purify his spirit, this dark entity must be destroyed. Prove yourself to me, and dispatch this shade.$B$BUse your tracking on the island of Tel\'Abim, it is there you will find your prey.", + ["O"] = "Slay the Spirit of Loresh and return to the Great Cat Spirit in Moonglade.", + ["T"] = "The Spirit of Loresh", + }, + [41030] = { + ["D"] = "Your efforts in helping me will not go unrewarded, but first, I must tend to a matter most important to me. I must purify the spirit of Loresh, and free him from the suffering of dark magic.$B$BStand back, and speak to me when I am finished.", + ["O"] = "Wait for the Great Cat Spirit to free Loresh from his suffering.", + ["T"] = "Saving Loresh", + }, + [41031] = { + ["D"] = "I have been freed from eternal torment, and my spirit may now rest within Moonglade peacefully.$B$BAs thanks, I can offer you an enchantment most powerful. This gift is a sacred item amongst our kin, only given to those we trust most. Bring me three Bright Dream Shards, and I can make sure you receive this blessing as well.", + ["O"] = "Gather 3 Bright Dream Shards for the Spirit of Loresh at Moonglade.", + ["T"] = "The Gift of Ferocity", + }, + [41032] = { + ["D"] = "Enter, my child. You are welcome here amongst the restless dead. You likely know of the gifts we bestow upon our followers, so I shan\'t speak of it further.$B$BI chose to be a worgen, and have found much more power and knowledge in the curse than I ever did the life I left behind. Now I assist Lady Moranna with her research, which has sadly come to a stalemate. The venom I require comes from the Hollow Web spiders just to the east of this cemetery. It will be crucial for our new recruits to overcome the pain of their transition. Gather me ten vials. That should be enough.", + ["O"] = "Gather 10 Hollow Web Venom for Mother Tanya at Hollow Web Cemetery in Gilneas.", + ["T"] = "To Numb the Pain", + }, + [41033] = { + ["D"] = "Well met my friend. You\'ve come to join us? You have caught the spark of curiosity, and must surely satiate it. I will admit, those in Ravenshire look upon us as a cult. How foolish they are to see our strength as sin, eh?$B$BI have been tasked to study blood itself, and I am curious to see if the blood of other races shares similar properties to our own. To the east lay the Hinterlands, a place once called home by the Witherbark Trolls. From them, gather 5 vials of Witherbark Blood and return them to me.", + ["O"] = "Bring 5 vials of Witherbark Blood from the Witherbark Trolls in The Hinterlands to Ethan Ravencroft in Hollow Web Cemetery.", + ["T"] = "A Bloody Solution", + }, + [41034] = { + ["D"] = "I don\'t know your face, $r, I don\'t like new faces. There\'s enough trouble in these forests without outlanders dragging theirs along.$B$BBut you\'re here now, curse it all. The Master says it is all part of the Wolf Serpent\'s will and who is foolish wee me to disagree? Thus, I say you should help with your part.$B$BIt gets pretty cold up here in Gilneas and we pellars need clothes as much as anyone. Track down the Vilewing Bats and the Duskpelt Wolves, then bring me their furs. You\'ll find them almost anywhere in this country, but the closest are to the southwest.", + ["O"] = "Gather 5 Vilewing Pelts and 5 Duskpelt Furs for Bearbane at the cave above Mossgrove Farm in Gilneas.", + ["T"] = "A Vile Mantle", + }, + [41035] = { + ["D"] = "Adrift you have strayed, misplaced and mislaid. Unto the Wolf Serpent\'s coils have you wandered, chasing meaning, seeking wonder.$B$BAm I right? For once like you I were, an affrighted hen, beaten, bitten, driven from her pen. Bled and felled!$B$BIn the north, near Ebonmere Farm a woodsman stalks among trees, he who my life would end. Be you his last fare and the Wolf Serpent\'s blessings with you I\'ll share.", + ["O"] = "Find and slay Matthew Beckett, then return to Levandra at the cave above Mossgrove Farm in Gilneas.", + ["T"] = "The Hound and the Hunter", + }, + [41036] = { + ["D"] = "My father, Demetreus, has seen your likeness in a dream, $N. He knew you would come to us one day.$B$BThe Wolf Serpent, our eternal guardian, will soon return to this world. We must make ready for his rebirth, for the cleansing of these lands.$B$BIn the west lie the Ruins of Greyshire. There are items there, mementos of significance, that hold a spiritual bond with the dead that possessed them in life.$B$BGather them for me, that I may summon the souls of the departed and relieve them of their suffering.", + ["O"] = "Gather 10 Haunted Mementos for Lurn Five-Pelts in the Wolfswood.", + ["T"] = "Deathly Fetters", + }, + [41037] = { + ["D"] = "For what do you linger there, $c? Idle of hand, idle of spirit?$B$BIf you are looking for good work, then I have a task for you. From the soot on me you can see the markings of a blacksmith, and indeed, I have forged many a fine thing for us here.$B$BCopper and silver we do need, to craft the rods we wield to bridle lightning and shackle thunder. Find the talismans worn by the invading Foulhide gnolls south of here and bring them to me. They contain the metals that I need.", + ["O"] = "Gather 15 Foulhide Talismans for Mustang at the cave above Mossgrove Farm in Gilneas.", + ["T"] = "Rods for the Pellars", + }, + [41038] = { + ["D"] = "", + ["O"] = "Bring the Claw of Erennius to one that may find it useful.", + ["T"] = "The Claw of Erennius", + }, + [41039] = { + ["D"] = "The people of Thalanaar have labored diligently to sustain our forces, but alas, their efforts alone prove insufficient to satiate the needs of our squad. We Sentinels must not burden them with the weight of our demands, for they have already sacrificed much for our cause.$B$BThough our skilled huntresses have ventured forth to secure provisions, the magnitude of the task requires the contribution of every willing hand. I have witnessed the presence of prowling wolves in the vicinity, their hunger mirroring our own. Embark upon this hunt, and procure ten succulent chunks of their meat, that our strength may be fortified.", + ["O"] = "Bring 10 Chunks of Wolf Meat to Sentinel Glensha at Thalanaar in Feralas.", + ["T"] = "Provisions for Thalanaar", + }, + [41040] = { + ["D"] = "The Woodpaw Gnolls threaten our sacred lands, preying upon our caravans and scouts. We cannot allow them to grow in strength and orchestrate an assault on Thalanaar. The time to strike is now.$B$BYour mission is clear: eradicate the Woodpaw threat before it escalates further. Seek out their camp in the treacherous Woodpaw Hills, easily traced by their noxious odor.$B$BSlay ten trappers and mongrels, vanquish eight reavers, and bring down six alphas. This decisive blow will plunge them into disarray, buying us valuable respite.", + ["O"] = "Slay 10 Woodpaw Trappers, 10 Woodpaw Mongrels, 8 Woodpaw Reavers and 6 Woodpaw Alphas for Commander Anashya Starfall at Thalanaar in Feralas.", + ["T"] = "Woodpaw Disarray", + }, + [41041] = { + ["D"] = "Not all tauren tribes were so eager to align themselves with the Horde. Among them, the Grimtotems stand as outliers. While most tribes strive to subdue and tame their primal instincts, the Grimtotems embrace their savage nature. One would assume they would find kinship with those responsible for the murder of Cenarius, but they too have their own sense of pride.$B$BThe Grimtotems walk a precarious path, treading the line between loyalty and independence. Recently, our scouts have reported skirmishes between their forces and the tauren of Camp Mojache to the northwest. It piques my curiosity as to the cause of this disagreement.$B$BVenture forth to the Grimtotem Compound and uncover any clues that shed light on the situation. I am intrigued to understand the motives behind this conflict.", + ["O"] = "Discover any clues that could shed a light on the situation of Grimtotem Tauren and return to Commander Anashya Starfall at Thalanaar in Feralas.", + ["T"] = "The Grimtotem Plot", + }, + [41042] = { + ["D"] = "There is only one individual who comes to mind when it comes to deciphering the significance of this artifact: Archdruid Fandral. While many among the Kaldorei harbor resentment towards him for his disagreement with the High Priestess, I believe he sees the bigger picture.$B$B Tyrande no longer acts in the best interest of our people.$B$BRegardless, it is imperative that you bring this mallet directly to him. He possesses the wisdom and knowledge to determine the appropriate course of action.", + ["O"] = "Report to Fandral Staghelm in Darnassus with your findings.", + ["T"] = "The Word of the Archdruid", + }, + [41043] = { + ["D"] = "Long ago, during the reign of Queen Azshara, this place thrived as a center of Kaldorei civilization. Now, all that remains are ruins, either occupied by ogres or tainted by undeath.$B$BThe downfall of this place was brought about by arcane magic, and it\'s hard to feel pity for those who met their end here. Yet, amidst all this arcane corruption, there once stood a place of purity and light—the old Temple of Elune, its name lost to the annals of time.$B$BWithin the temple, the priestesses safeguarded a sacred artifact deeply connected to the roots of our people and the world we inhabit. I require this artifact, but my duties prevent me from leaving the camp at this moment. If fate ever guides you to the Ruins of Isildien, seek out the Tear of Zalmos—a precious blue gem of unimaginable importance. Your aid in retrieving it would be invaluable.", + ["O"] = "Find the Tear of Zalmos in the Temple of Elune in the Ruins of Isildien and bring it back to Larodar at Thalanaar in Feralas.", + ["T"] = "The Ruins of Isildien", + }, + [41044] = { + ["D"] = "The Kaldorei Empire\'s vast influence once spanned across the entire world, before the cataclysmic event of the Sundering shattered our dominion. As a consequence, our sacred relics have found their way to the farthest reaches of the globe.$B$BRecently, there have been murmurs and whispers about the shattering of the Greymane Wall, which once separated the land of Gilneas from the outside world. While I hold little regard for the internal struggles of human kingdoms, it is noteworthy that Gilneas was once home to the ancient Wild God known as Zalmos. Sadly, Zalmos perished there during the devastating War of the Ancients.$B$BYour task is to journey to Gilneas and recover Fang of Zalmos, which is said to be held by an enigmatic order known as the Pellars of Witchwood. Unfortunately, further details are scarce, but your resourcefulness will undoubtedly guide you in uncovering the truth.", + ["O"] = "Venture to Gilneas and find the Witchwood Pellars.", + ["T"] = "The Fallen Ancient", + }, + [41045] = { + ["D"] = "I require your assistance in a matter close to my heart.$B$BIn these troubled times of the Gilnean civil war, the demand for our healing skills has reached unprecedented heights. Alas, we find ourselves confined within the safety of this cave, unable to venture into the treacherous wilds in search of vital supplies. The dangers lurking in the wilderness have grown fiercer with each passing day.$B$BWhat I require from you, brave soul, is a rare healing herb known as Serpentroot. It can be found only in the lands of Gilneas, thriving amidst its turmoil. Procure ten samples of this precious herb for me, and I shall reward your efforts with one of the revered Fangs of Zalmos.", + ["O"] = "Gather 10 Serpentroot for Lurn Five-Pelts.", + ["T"] = "The Serpentroot", + }, + [41046] = { + ["D"] = "Here, brave adventurer.$B$B$B$BTake hold of this sacred relic, for it holds the essence of our ancient Wild God, Zalmos. It is a power that must not be taken lightly, for in the wrong hands, it could bring untold destruction. The Regents may not have been foolish enough to challenge us directly, but the enemy lurks in the shadows, waiting for their opportunity.$B$BGuard this Fang with utmost vigilance, for it is now your responsibility to ensure its safety. Should the enemy ever lay eyes upon it, their thirst for power and control will be unquenchable. May the blessings of the Wolf-Serpent guide and protect you on your journey, and may we meet again in a restored and prosperous Gilneas. And do not forget to convey my regards to the druid who sent you on this quest.", + ["O"] = "Bring Fang of Zalmos to Larodar in Thalanaar.", + ["T"] = "Back to Thalanaar", + }, + [41047] = { + ["D"] = "You have proven yourself to be a valuable ally and for that, I shall reveal the truth to you. The artifacts we have gathered are but a fragment of the greater plan to restore balance to the world.$B$BZalmos possessed a unique ability to regenerate with unparalleled potency. By harnessing his essence, we can bring forth a healing force that can mend the corrupted lands of Felwood and revitalize the dying World Tree.$B$BHowever, the artifacts alone are not enough to accomplish this task. We require the guidance of Cenerron. He was a druid who once studied under Zalmos. Though the passage of time has taken its toll on Cenerron, we believe he still roams the ancient forests of Feralas. His connection to the Wild God makes him the key to unlocking the potential of these artifacts.$B$BSearch for Cenerron amidst the wilderness of Feralas. Be cautious, for he is now a feralkin, lost to his primal instincts. If you can earn his trust, he will possess the knowledge to amplify the power of these artifacts.", + ["O"] = "Find the feralkin in Feralas.", + ["T"] = "Feralkin of Feralas", + }, + [41048] = { + ["D"] = "You seek answers that are veiled in shadows, obscured by deception. The ones who sent you may have their own agenda, but it matters little now. You have found me, and the time for idle talk has passed.$B$BIn the distant lands where Seradane flourishes, the owlkins were entrusted with the solemn duty of safeguarding what remained of Zalmos\' essence. Ages have passed since those days, and the memories of their ancient charge may have faded. However, there is a chance that they still possess the soulgem that holds a fragment of Zalmos\' being.$B$BThat is all the information I will provide. Now, be gone from this place, for I desire solitude and the company of my kin. May the spirits guide your path, and may our paths never cross again.$B$B", + ["O"] = "Venture to the Hinterlands and discover where the local owlkin might be keeping the Soulgem of Zalmos.", + ["T"] = "Essence of Zalmos", + }, + [41049] = { + ["D"] = "Chimaeras, majestic creatures of untamed beauty, once served as our loyal allies and formidable warbeasts in ages past. However, the devastating onslaught of the Burning Legion during the Third War brought ruin upon their roosts, leaving us bereft of their companionship and power.$B$BBut hope stirs anew. Velos Sharpstrike, a seasoned chimaera trainer, has made a remarkable discovery—a long-forgotten roost that lies to the southwest of our current position. It is said that he seeks aid in reviving and restoring this sacred haven.$B$BVenture forth and lend your aid to Velos.", + ["O"] = "Report to Velos Sharpstrike at Chimaera Roost Vale in Feralas.", + ["T"] = "Chimaeran Task", + }, + [41050] = { + ["D"] = "If we are to embark on the path of training new chimaeras, we must first clear this roost of its current inhabitants. As magnificent as those soaring creatures may be, they are beyond the point of training and cannot serve our purpose.$B$BTo truly mold an obedient and loyal companion, we must start from their earliest days. Therefore, I ask of you to take up your arms and eliminate eight of the Dunebound chimaeras and eight of the Venomlash chimaeras that roam these skies. Once we\'ve cleared the way, our true work can commence.", + ["O"] = "Slay 8 Dunebound Chimaera and 8 Venomlash Chimaera for Velos Sharpstrike at Chimaera Roost Vale in Feralas.", + ["T"] = "Cleansing the Roost", + }, + [41051] = { + ["D"] = "Ah, the voracious appetite of young chimaeras! There\'s nothing quite like it. These little ones can devour twice their weight in a single day, but they are quite particular about their meals. While impudent trainers may have been a tempting choice in the past, we must focus on satisfying their hunger with more suitable fare.$B$BIn this case, their favorite delicacy happens to be hippogryphs. Deep within the High Wilderness, a sizable flock of hippogryphs has been spotted. I task you with hunting them down and bringing me twenty chunks of their meat. This will provide a hearty feast to nourish the soon-to-hatch chimaeras and satisfy their growing appetites.", + ["O"] = "Bring 20 Chunks of Hippogryph Meat to Velos Sharpstrike at Chimaera Roost Vale in Feralas.", + ["T"] = "Feeding the Younglings", + }, + [41052] = { + ["D"] = "Allow me to share a tale from antiquity. Millennia ago, a momentous pact was forged between the Kaldorei and the chimaeras. In those ancient times, there existed a remarkable figure known as Chimaeran. He possessed the rare ability to not only train these noble creatures but also ride upon their backs with unparalleled grace.$B$BHowever, tragedy struck during a brutal war with the Maraudine Centaur, for they plundered Chimaeran\'s legendary harness. Though the centaurs may no longer hold it, reports suggest that it still resides deep within the labyrinthine depths of Maraudon. Yet, beware, for other sinister forces, such as the malevolent satyrs, may now be the custodians of this precious artifact.$B$BI implore you, venture forth into Maraudon and reclaim the lost harness. Its recovery would hold profound significance for the legacy of chimaera trainers and honor the ancient bond that once united our kind.", + ["O"] = "Retrieve the Harness of Chimaeran from Maraudon and bring it back to Velos Sharpstrike at Chimaera Roost Vale in Feralas.", + ["T"] = "Harness of Chimaeran", + }, + [41053] = { + ["D"] = "Our vigil does not end. $B$BThe Centaur tribes infesting Thousand Needles have been steadily growing more brazen with each passing day, their scouts boldly encroaching on our sacred lands. For now, they content themselves with harassing others, but it is only a matter of time before these abominations set their sights on our town.$B$BMy scouts have reported the presence of a Centaur messenger, bearing news between the warlords of these lands. We cannot allow them to continue to scheme and plot against us unchecked. We must discover their plans, and we must do so quickly.$B$BI trust that you possess the necessary skills to eliminate this messenger and seize any messages that they bear. I have no patience for failure.", + ["O"] = "Find and retrieve the Centaur Missive from Galak Messenger for Commander Anashya Starfall in Thalanaar.", + ["T"] = "The Galak Messenger", + }, + [41054] = { + ["D"] = "I bear no love for the traitorous tauren, who allied with the demon-tainted defilers of our sacred lands. Despite this, duty beckons, and we must aid them still. The politics of the Horde and Alliance matter not in this moment. The honor of the Kaldorei shall not be tarnished again, and we shall not stand idly while innocent blood is shed.$B$BI shall dispatch a diplomat to the tauren to inform them of their precarious situation. Meanwhile, I beseech you to venture forth and thin the centaur numbers, granting the taurens of Freewind more time to prepare their defenses. Return to me with twenty of their bracers as proof of your deed. May Elune\'s light guide your path.", + ["O"] = "Bring 20 Galak Bracers to Commander Anashya Starfall in Thalanaar.", + ["T"] = "Shame Never Again", + }, + [41055] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Dreamscale Collection", + }, + [41056] = { + ["D"] = "Stored within the armory are many weapons, armor and great relics of old. These items are extremely powerful, and laden with intense enchantments. I have been authorized to offer such items to those who have proved themselves as worthy allies here in Hyjal.$B$BIf you desire the Drape of Nordrassil, bring me one hundred and fifty Bright Dream Shards, and it shall be yours.", + ["O"] = "Gather 150 Bright Dream Shards for Elvanor Heartsong at Nordanaar in Hyjal.", + ["T"] = "Drape of Nordrassil", + }, + [41057] = { + ["D"] = "Stored within the armory are many weapons, armor and great relics of old. These items are extremely powerful, and laden with intense enchantments. I have been authorized to offer such items to those who have proved themselves as worthy allies here in Hyjal.$B$BIf you desire the Deepwood Pipe, bring me one hundred and fifty Bright Dream Shards, and it shall be yours.", + ["O"] = "Gather 150 Bright Dream Shards for Elvanor Heartsong at Nordanaar in Hyjal.", + ["T"] = "Deepwood Pipe", + }, + [41058] = { + ["D"] = "Stored within the armory are many weapons, armor and great relics of old. These items are extremely powerful, and laden with intense enchantments. I have been authorized to offer such items to those who have proved themselves as worthy allies here in Hyjal.$B$BIf you desire the Stagwood Grasp, bring me one hundred and fifty Bright Dream Shards, and it shall be yours.", + ["O"] = "Gather 150 Bright Dream Shards for Elvanor Heartsong at Nordanaar in Hyjal.", + ["T"] = "Stagwood Grasp", + }, + [41059] = { + ["D"] = "Stored within the armory are many weapons, armor and great relics of old. These items are extremely powerful, and laden with intense enchantments. I have been authorized to offer such items to those who have proved themselves as worthy allies here in Hyjal.$B$BIf you desire the Nordanaar Guardian Spaulders, bring me one hundred and fifty Bright Dream Shards, and it shall be yours.", + ["O"] = "Gather 150 Bright Dream Shards for Elvanor Heartsong at Nordanaar in Hyjal.", + ["T"] = "Nordanaar Guardian Spaulders", + }, + [41060] = { + ["D"] = "Stored within the armory are many weapons, armor and great relics of old. These items are extremely powerful, and laden with intense enchantments. I have been authorized to offer such items to those who have proved themselves as worthy allies here in Hyjal.$B$BIf you desire the Dreambreeze Cowl, bring me one hundred and fifty Bright Dream Shards, and it shall be yours.", + ["O"] = "Gather 150 Bright Dream Shards for Elvanor Heartsong at Nordanaar in Hyjal.", + ["T"] = "Dreambreeze Cowl", + }, + [41061] = { + ["D"] = "Stored within the armory are many weapons, armor and great relics of old. These items are extremely powerful, and laden with intense enchantments. I have been authorized to offer such items to those who have proved themselves as worthy allies here in Hyjal.$B$BIf you desire the Cloverlink Belt, bring me one hundred and fifty Bright Dream Shards, and it shall be yours.", + ["O"] = "Gather 150 Bright Dream Shards for Elvanor Heartsong at Nordanaar in Hyjal.", + ["T"] = "Cloverlink Belt", + }, + [41062] = { + ["D"] = "In your grasp rests the elusive Scythe of Elune, an ancient artifact veiled in mystery and pulsating with unimaginable power. Its journey to this very moment remains an enigma—how it arrived here and why, questions that demand answers. Yet, for now, the imminent priority is to quell the devastation wrought by this extraordinary relic.$B$BSlay Clawlord Howlfang, leader of the worgen in Karazhan. Only by severing his tyrannical grasp over the worgen can you hope to restore order amidst the chaos.$B$BOnce accomplished, seek answers from Lord Ebonlocke about the enigmatic Scythe.", + ["O"] = "Slay Clawlord Howlfang and report to Lord Ebonlocke.", + ["T"] = "Scythe of the Goddess", + }, + [41063] = { + ["D"] = "I wish I could tell you more about it, but alas, in my state, I was unable to procure any meaningful information. Lord Blackwald used it to summon the worgen to Karazhan, and they more or less obeyed his command. $B$BAs for the Dark Riders, they are cursed to be artifact hunters, crafted in the twisted image of the righteous knights by Medivh himself. Though his presence has long faded, these relentless hunters continue their pursuit, tirelessly acquiring treasures for an unknown master.$B$BOh, how I long for the ability to unmask the hidden purpose behind this mysterious relic. However, I offer you a glimmer of hope in your quest. Seek those who, perhaps unwittingly, aided the Dark Riders in their pursuit. Turn your gaze towards my former realm, once known as Great Hamlet, where secrets and whispers intertwine. It is there that your search may bear fruit, as rumors tell of worgen now roaming the kingdom, their presence a testament to a connection with the Scythe.", + ["O"] = "Find someone in Duskwood who might know more about the Scythe of Elune.", + ["T"] = "Scythe of the Goddess", + }, + [41064] = { + ["D"] = "You have it in your possession? No, no, no! It\'s awful, IT should\'ve never been found! The return of the dreaded Dark Riders looms on the horizon, their vengeance seeking to claim my life and unleash ruin upon the entirety of Duskwood!$B$BYet, twisted as it may be, it is still preferable that the Scythe rests in your hands rather than theirs. However, I must confess that my knowledge of this relic is scarce. Although I held it in my grasp for a fleeting moment, I swear upon my fragile existence that I am oblivious to its true nature. I know nothing!$B$BIt was in the desolate depths of the old mine, known as Roland\'s Doom, that fate thrust the Scythe into my trembling hands. Go there, if you must. But be wary- it\'s overrun by worgen, or even darker beings.", + ["O"] = "Travel to Roland\'s Doom and find any clues about the Scythe of Elune.", + ["T"] = "Scythe of the Goddess", + }, + [41065] = { + ["D"] = "Dark Riders... Their relentless pursuit was swift, sensing my presence the moment I stepped into Duskwood. Fleeing was futile, they hungered for the power of the Scythe, their insatiable desire driving them forward without respite. I fortified my position, calling upon my loyal worgen companions to stand by my side, yet their might proved overwhelming, and I fell beneath their dark influence. In my final act of defiance, I pierced their heart with my spear, knowing my sacrifice would not be in vain.$B$BAlas, it appears that the Scythe was ultimately retrieved by those malevolent beings. I shudder to contemplate the vile purposes they intended to unleash upon the world with its power. It is a relief to know that the artifact now rests within your hands, for I believe there is still hope that you may wield it with its original purpose.$B$BWait. Do you hear that?", + ["O"] = "Defeat the Dark Rider.", + ["T"] = "Scythe of the Goddess", + }, + [41066] = { + ["D"] = "I was gifted the Scythe at the Shrine of Mel\'Thandris. Its ability to summon worgen helped me to turn the tide in the fight against corruption of Felwood. Yet, I was losing control of them. I needed help.$B$BI departed from the forests of Ashenvale with a purpose in mind—to seek counsel from the wizard Arugal, who too had called upon the worgen.I yearned to understand the connection between these creatures and the favor bestowed upon them by Elune.$B$BBut... Arugal... dead? Elune\'s tears, the news strikes me with sorrow. In this moment, there is only one person we can turn to, one who possesses the wisdom and knowledge to guide us further. Arch Druid Dreamwind, a scholar of the otherworldly, may hold the key to unraveling the mysteries of our realms and beyond. Seek him out, and recount to him the tale that has befallen me. When I departed Kalimdor, he stood at the forefront of the efforts to heal Nordrassil.", + ["O"] = "Find Arch Druid Dreamwind in Nordanaar.", + ["T"] = "Scythe of the Goddess", + }, + [41067] = { + ["D"] = "The name worgen resonates through the echoes of history, evoking memories of ancient times. Eons ago, during the reign of Queen Azshara, her mages delved into forbidden arts, opening portals to realms beyond mortal comprehension.$B$BWorlds of Buring Legion, engulfed by the Emerald Flame, worlds of absolute cold, worlds of inimaginable darkness.$B$BAmong these realms was one known as Vorgendor, world of Blood. The knowledge surrounding it has long faded, concealed in the annals of forgotten lore for good reason.$B$BHowever, in the depths of my ancient wisdom, I can guide you towards a beacon of knowledge. A human mage by the name of Ur dedicated himself to the study of this enigmatic realm. It is said that he penned a tome, a testament to his understanding and exploration of Vorgendor. If the mages of Dalaran are no longer in possession of this invaluable book, I believe it may be found within the expansive library of Lord Nefarius.", + ["O"] = "Retrieve a copy of \"Vorgendor: Myths from the Blood Dimension\" from Lord Victor Nefarius.", + ["T"] = "Scythe of the Goddess", + }, + [41068] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Purple Lotus Collection", + }, + [41069] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Black Lotus Collection", + }, + [41070] = { + ["D"] = "I have seen the devastation that the corruption of nature can bring. Felwood is a stark reminder of this truth. However, this glade here remains pure, and it is all thanks to Ethwyr.$B$B$B$BHis sacrifice, however, touched only those closest to him. We must honor his legacy by continuing to cleanse Felwood of corruption.$B$BTo the west lies the ancient glade known as Irontree Woods, a place steeped in both beauty and darkness. It is there that you shall face the heart-wrenching sight of crazed treants.$B$BFrom the fallen bodies of these treants, claim six branches tainted by their suffering. Though tainted they may be, these branches possess a latent power. Bring them to me and we shall breathe new life into their corrupted essence.", + ["O"] = "Bring 6 Unhallowed Branches to Taloras at Talonbranch Glade in Felwood.", + ["T"] = "Unhallowed Branches", + }, + [41071] = { + ["D"] = "A bear! What creature in the wilds could match its magnificence and dominance? It is no mere coincidence that our druids have long revered this form, receiving blessings from Ursoc and Ursol themselves.$B$BHowever, it greatly pains me to witness these noble creatures succumbing to the fel corruption that plagues these woods. Despite Ethwyr\'s selfless sacrifice, it appears that our attempts to heal them have only brought more suffering to these unfortunate beasts.$B$BTherefore, I beseech you: venture into the woods and bring an end to the suffering of the twenty bears who call these lands their home. It will not be an easy task, but do it for the sake of nature.", + ["O"] = "Slay 20 Angerclaw Grizzly Bears for Golhine the Hooded in Felwood.", + ["T"] = "Bearing the Corruption", + }, + [41072] = { + ["D"] = "Ishnu-alah, $c. What a favorable event meeting you here. I was sent to Felwood to guard the Talonbranch Glade. However, druid Wildwalker sent me away. I suspect he believes me to be a spy. Ironically, he has now made me into one.$B$BI would like to know why he would object to being guarded, and sending another sentinel would give my concealed intentions away. Would you speak to Wildwalker and find out what is going on? Return to me once you have identified the intentions of his superiors.", + ["O"] = "Offer your services to the druid Yohan Wildwalker at Talonbranch Glade in Felwood.", + ["T"] = "A Sentinel\'s Sudden Suspicion", + }, + [41073] = { + ["D"] = "It is my duty to investigate the mysteries of nature and protect the balance of the forest. However, our current mission has been a failure thus far, and it fills me with anger and frustration.$B$BThe Grove of the Ancients to the southwest, once alive and vibrant, now lays dead and lifeless. Their sacrifice was in vain, unlike that of Ethwyr, who was able to cleanse this settlement of corruption. I need to know why.$B$BOne of our own, Marlonias Shademoon, has been sent to investigate the grove. However, he has yet to return, and knowing his lazy demeanor, he is likely preoccupied with finding new ways to avoid fulfilling his duties.$B$BLocate him and remind him of his responsibilities. He has a mission to fulfill, and I will not tolerate any negligence on his part.", + ["O"] = "Find Marlonias Shademoon. He has been sent to investigate a Grove of the Ancients in Irontree Woods.", + ["T"] = "A Special Task", + }, + [41074] = { + ["D"] = "Allow me a moment to collect myself.$B$B$B$BPay no heed to my wounds, they will heal in time. Listen closely. The furbolgs who attacked me not only caused me harm, but also stole my precious notes. I must retrieve them, but my condition prevents me from doing so at the moment. It is imperative that Yohan remains unaware of what has transpired here. Do you understand? Do not reveal to him that I have lost my notes.$B$BSearch for the furbolgs who carried out this attack. I have seen them fleeing towards the east, and may still be encamped in the area. Once you recover my notes, deliver them to Yohan without delay. I must insist that you do not read them, as they contain knowledge that is reserved only for our order.$B$BIf Yohan inquires about me, inform him that I will return soon, but I still have some research to finish. I trust in your discretion.", + ["O"] = "Return Marlonias\' Notes to Yohan Wildwalker.", + ["T"] = "The Stolen Notes", + }, + [41075] = { + ["D"] = "You start to carefully scrutinize the pages, scanning each line for any peculiarities or indications of malicious intent.$B$BUpon initial inspection, most of the notes appear to be a detailed and extensive research on the treants\' magical properties. It describes how the old grove of the ancients was desecrated by Skull of Gul\'dan, its corrupting power unmatched by the Ancient\'s desperate attempts to save the woods.$B$BHowever, as you approach the last few pages of the notes, their contents become particularly alarming. They describe how Ethwyr\'s sacrifice, rather than being a tragedy, could be leveraged for their own gains.$B$BThe author of the notes claims that the treant\'s death has caused an unprecedented growth in the surrounding flora, and that this growth could be used to obtain an extraordinary amount of Morrowgrain without raising any suspicion. $B$BSentinel Briariel will want to hear about it. You tear out the page carefully.", + ["O"] = "Bring the torn out page to Sentinel Briariel.", + ["T"] = "The Felwood Conspiracy", + }, + [41076] = { + ["D"] = "Confronting Wildwalker with the notes would be pointless, as they do not provide any concrete evidence of Morrowgrain actually being used in Felwood. It\'s all mere speculation at this point.$B$BIf the druids have indeed brought Morrowgrain seeds to Felwood, they would have surely hidden them well. However, I believe that the local birds might hold the key to this mystery.$B$BThe owls in these lands have had to become resourceful in order to survive. If the druids brought Morrowgrain seeds to Felwood, the owls may have stolen some of them for food. $B$BIt\'s not a pleasant thought, but it may be our only hope. We need to search the intestines of local birds for any signs of Morrowgrain seeds. According to the notes, the seeds have a distinct, reddish color. If you find any, bring them to me immediately. It won\'t be easy, but it\'s a risk we have to take if we want to uncover the truth behind this mysterious plant and Archdruid Staghelm\'s obsession with it.", + ["O"] = "Find a Morrowgrain Seed in the intestines of Felwood owls.", + ["T"] = "Morrow in Felwood", + }, + [41077] = { + ["D"] = "Please, bring the notes and the seeds to Shandris Feathermoon. She is the General of the Sentinel Army, and she will know what the next course of action should be. Oh, remember to mention that it was me who helped you.", + ["O"] = "Bring the seed and the notes to Shandris in the Feathermoon Stronghold.", + ["T"] = "A Sentinel\'s Rightful Suspicion", + }, + [41078] = { + ["D"] = "What is it that you want; sanctity, great knowledge? You will not find these things here, for the great arcane power of the wizard Medivh has doomed me and my flock to a life of eternal, drifting torment.$B$BWe are trapped, to forever wander where we remained in life. Though there is a possibility to transition to the great beyond, and such a task requires a great excess of arcane energy.$B$BIf you can gather me arcane materials, I can offer you the invocations I was famous for years ago. Sound like a good proposition?", + ["O"] = "Gather 15 Arcane Essence, 20 Illusion Dust, and 10 Greater Eternal Essence for Heirophant Nerseus at the church outside Karazhan.", + ["T"] = "Contribution to the Church", + }, + [41079] = { + ["D"] = "Many great powerful priests have earned the title \'Heirophant\' in the past, for their ability to conjure and imbue the Light within great enchantments. This skill is extremely difficult, and only passed on from one master to a student of great standing. Over time, the number of Heirophants have fallen and with it, the invocations of our past have faded to obscurity, lost to the pages of history.$B$BFor your selflessness I can offer you such an invocation, but I require a rare material. My powers have wained, and I require a single Overcharged Ley Energy. This energy can be found within the tower of Karazhan. Bring me one, and I can offer you the invocation of your choice.", + ["O"] = "Gather an Overcharged Ley Energy and 6 Arcane Essence for Heirophant Nerseus at the church outside Karazhan.", + ["T"] = "Invocation of Shattering", + }, + [41080] = { + ["D"] = "Many great powerful priests have earned the title \'Heirophant\' in the past, for their ability to conjure and imbue the Light within great enchantments. This skill is extremely difficult, and only passed on from one master to a student of great standing. Over time, the number of Heirophants have fallen and with it, the invocations of our past have faded to obscurity, lost to the pages of history.$B$BFor your selflessness I can offer you such an invocation, but I require a rare material. My powers have wained, and I require a single Overcharged Ley Energy. This energy can be found within the tower of Karazhan. Bring me one, and I can offer you the invocation of your choice.", + ["O"] = "Gather an Overcharged Ley Energy and 6 Arcane Essence for Heirophant Nerseus at the church outside Karazhan.", + ["T"] = "Invocation of Greater Protection", + }, + [41081] = { + ["D"] = "Many great powerful priests have earned the title \'Heirophant\' in the past, for their ability to conjure and imbue the Light within great enchantments. This skill is extremely difficult, and only passed on from one master to a student of great standing. Over time, the number of Heirophants have fallen and with it, the invocations of our past have faded to obscurity, lost to the pages of history.$B$BFor your selflessness I can offer you such an invocation, but I require a rare material. My powers have wained, and I require a single Overcharged Ley Energy. This energy can be found within the tower of Karazhan. Bring me one, and I can offer you the invocation of your choice.", + ["O"] = "Gather an Overcharged Ley Energy and 6 Arcane Essence for Heirophant Nerseus at the church outside Karazhan.", + ["T"] = "Invocation of Expansive Mind", + }, + [41082] = { + ["D"] = "Many great powerful priests have earned the title \'Hierophant\' in the past, for their ability to conjure and imbue the Light within great enchantments. This skill is extremely difficult, and only passed on from one master to a student of great standing. Over time, the number of Hierophants have fallen and with it, the invocations of our past have faded to obscurity, lost to the pages of history.$B$BFor your selflessness I can offer you such an invocation, but I require a rare material. My powers have waned, and I require a single Overcharged Ley Energy. This energy can be found within the tower of Karazhan. Bring me one, and I can offer you the invocation of your choice.", + ["O"] = "Gather an Overcharged Ley Energy and 6 Arcane Essence for Heirophant Nerseus at the church outside Karazhan.", + ["T"] = "Invocation of Greater Arcane Fortitude", + }, + [41083] = { + ["D"] = "You there, servant!$B$BI must say, the room service you have here is utterly dreadful. I feel like I have been waiting years for someone to come along and help me with my problem.$B$BThe chambers I have been assigned are not suitable, and I cannot get a wink of sleep. I need a more comfortable pillow, or something of that regard. Find one for me so that I may actually get a good night\'s rest in this place.", + ["O"] = "Find a Comfortable Pillow for Councilman Kyleson in Karazhan.", + ["T"] = "Suitable Accomodations", + }, + [41084] = { + ["D"] = "You\'ve been a wonderful help in acquiring this, but I need one last thing before I can get some rest. Fetch for me a glass of wine, the best that you have. I am certain that you know exactly what I am talking about. Go on now, and find what I\'m looking for so I can get some sleep.", + ["O"] = "Speak with someone who may know how to acquire wine for Councilman Kyleson.", + ["T"] = "A Drink to Sleep", + }, + [41085] = { + ["D"] = "Believe it or not, I do have a recipe for Spectral Wine. Wine that can be consumed by spirits was a concept that I did practice and refine. It is a somewhat complicated process and requires materials that are foreign here in Karazhan.$B$BIf you can acquire for me three Essences of Death, five Flasks of Port, and a single Ghost Mushroom, I can make Spectral Wine for Councilman Kyleson. Though, I must question your sanity in going to this trouble.", + ["O"] = "Gather 3 Essence of Death, 5 Flask of Port, and a Ghost Mushroom for The Cook in Karazhan.", + ["T"] = "Spectral Wine", + }, + [41086] = { + ["D"] = "I have prepared the Spectral Wine for you. Here you are. I do hope that Councilman Kyleson is offering you something in exchange for all your work. Bring it to him promptly, and do not waste any time. After a few years, the Spectral Wine will lose its magical potency, and may just become normal wine.", + ["O"] = "Deliver the Spectral Wine to Councilman Kyleson in Karazhan.", + ["T"] = "Wine for Kyleson", + }, + [41087] = { + ["D"] = "In the whispers of ancient legends, tales unfurl about the upper reaches of Medivh\'s Tower—a sacred haven where the profound wisdom of the Guardians was once safeguarded. Alas, the passage to this sanctum has succumbed to the passage of time, and the tower now stands in disrepair. The library nestled within the upper parts has been sealed away from mortal reach.$B$BYet, in the tides of destiny, hope gleams amidst the darkness. If you can find a means to breach the barriers that guard Upper Karazhan, there exists a chance—an opportunity—that an untouched copy of the precious book lies within its depths. The secrets you seek may be held within the hallowed halls, hidden from the ravages of time, awaiting discovery by a determined seeker like you.", + ["O"] = "Retrieve a copy of \"Vorgendor: Myths from the Blood Dimension\" from Upper Karazhan.", + ["T"] = "Scythe of the Goddess", + }, + [41088] = { + ["D"] = "Oh hello traveller! Are you ascending to the summit? You must have been very brave to sneak past the demons. I am sorry, but is it okay if I ask you to help me a bit? Please? $B$BI have felt the plants cry out in distress, something is wrong with them. Can you pick me a few samples in the area for me to look at while I try to speak to the trees?$B$BGrab them delicately from the ground, roots and all. I will return them to their home later!", + ["O"] = "Gather 8 samples of Hyjal Flora and bring them back to Faelindella.", + ["T"] = "Suspicious Flora", + }, + [41090] = { + ["D"] = "The foul demons are mustering their strength, performing obscene rituals for some dark purpose I shudder to imagine. I am certain these Succubi are receiving some form of direction from their commanders, so it stands to reason that documented orders must be among them.$B$BIt is imperative that we acquire whatever plans we can find, and so I rely upon you, $N. Slay those vile temptresses until you find their orders, then return them to me promptly!", + ["O"] = "Gather the Demonic Missive and return to Melanastrasza in Hyjal.", + ["T"] = "A Demonic Missive", + }, + [41091] = { + ["D"] = "Translating this missive is not only important to discover what the enemy is up to, but it is also necessary to figure out how they are receiving this missive. $B$BI believe one most qualified to assist us is a Demon Hunter. They are Night elves that have taken up fel and sworn an oath to fight demons. They are not welcome here, but nonetheless, they are committed to the cause in spite of the scorn they may receive.$B$B I have heard one called Niremius Darkwind has been spotted in northern Felwood recently. Find him and show this missive to him.", + ["O"] = "Seek out Niremius Darkwind and show him the Demonic Missive.", + ["T"] = "Finding a Demon Hunter", + }, + [41092] = { + ["D"] = "There is only one type of demon that is agile enough to scale the mountain and stealthy enough to hide from patrols, and that\'s an Imp.$B$BThis imp goes by the name of Zafan, the one who holds their cipher. This elusive creature has escaped my grasp on many occasions. Perhaps you have the wits about you to find this creature here in Felwood.$B$BI have often seen this imp near the waterfalls of Felwood. I would check there first.$B$BRecover the Cipher from Zafan, and bring it to me.", + ["O"] = "Recover the Cipher Rune from the Imp Zafan in Felwood.", + ["T"] = "The Elusive Zafan", + }, + [41093] = { + ["D"] = "The demons in the crater are a diversion. They are preparing to stage an attack that will distract Hyjal\'s forces. They are only the vanguard, the bulk of the demons are the ones in Darkwhisper Gorge, Archimonde\'s staging site.$B$BAlthough we do not get along, I know someone who is culling the demons there. Find the Warden Kiri Starstalker, inform her of what happened and work with her to stop this. I will investigate what the true aims of the demons are. Take a copy of the missive to her.$B$BAlso know this, you will probably need help against the demons there. They are not to be trifled with.", + ["O"] = "Find Kiri Starstalker in Darkwhisper Gorge.", + ["T"] = "The Warden", + }, + [41094] = { + ["D"] = "$B$BI see.$B$BYour story casts some light on the situation. It is time to wipe out these demons. They have far outlived their execution date.$B$BI need you to thin out their main infantry. Bring friends if the task is too much for you to handle. Make sure to talk to Trak\'nal too. He may have something for you to do as well.$B$BOur ancestry and beliefs may be different, but our commitment to defend Hyjal is the same.", + ["O"] = "Slay 12 Hederine Slayers in Darkwhisper Gorge for Kiri Starstalker.", + ["T"] = "Darkwhisper Culling", + }, + [41095] = { + ["D"] = "Mon, I be having an issue unrelated to demons. It be my tribe… Most of them have gone mad. It happened when our Speaker was contacted by a Loa in a dream and told to fashion a Mojo of the Dreams using water near the Emerald Sanctum portal. I was fighting the demons at the time, but when I returned, my own tribe attacked me and referred to themselves as the Shadeflayers. Madness has overtaken them, but I believe my people can be saved if the source of the corruption is expunged. Slay Warlord Hanzento, the one who started this evil, and Find Speaker Gan\'hota, it is him who has this Mojo of Dreams. You can find them both in Zul\'Hatha in western Hyjal.", + ["O"] = "Slay Warlord Hanzento in Zul\'hatha and bring the Mojo of Dreams to Shadowhunter Trak\'nal in Darkwhisper Gorge.", + ["T"] = "Saving the Shadowtooth", + }, + [41096] = { + ["D"] = "This should have slowed them down for now. Trak\'nal and I will continue to mete justice upon these curs.$B$B I need you to travel up the mountain and warn the dragon who sent you. The missive mentioned another force, and I suspect this force is underground.$B$B A cave had recently collapsed from the inside, but a demon army could easily remove the rubble and swarm out into the wild.", + ["O"] = "Find Melanastrasza and relay the news to her.", + ["T"] = "Inform the Reds", + }, + [41097] = { + ["D"] = "Travel to the summit of Mount Hyjal and find my superior, Annesastrasza. She needs to know every pertinent detail about what happened.$B$BLeaving those demons lurking in the Barrow Deeps would have endangered us all. I will make sure to seal the cave while you deliver the news.$B$BYou have done us a great service, $N.", + ["O"] = "Deliver the news to Annesastrasza at Nordanaar in Hyjal.", + ["T"] = "Delaying the Invasion", + }, + [41098] = { + ["D"] = "Greetings $c, it has come to my attention that I have received a letter asking specifically for you. It is from a Gnome in Gadgetzan.$B$BThey are called Reas. Seek her out and find out what she wants.", + ["O"] = "Seek out Reas in Gadgetzan.", + ["T"] = "A Missive From Gadgetzan", + }, + [41099] = { + ["D"] = "Hail $c, I have news for you.$B$BWe got a letter from someone asking specifically for you. It is from a Gnome in Gadgetzan.$B$BThey are known as Reas. We have been asked to inform you that if you are available, you should go there.", + ["O"] = "Seek out Reas in Gadgetzan.", + ["T"] = "A Letter From Gadgetzan", + }, + [41100] = { + ["D"] = "Greetings $c, here we are again. We received a notice asking us to send you down to the Eastern Plaguelands. The letter comes from one of the druids stationed there at Light\'s Hope Chapel.", + ["O"] = "Seek out Rayne at the Light\'s Hope Chapel in the Eastern Plaguelands.", + ["T"] = "A Letter From Rayne", + }, + [41101] = { + ["D"] = "Hello $c. We received a letter asking us to send you down to the Eastern Plaguelands. The letter comes from one of the druids stationed there. They go by the name \'Rayne\', find them at Light\'s Hope Chapel.", + ["O"] = "Seek out Rayne at the Light\'s Hope Chapel in the Eastern Plaguelands.", + ["T"] = "A Missive From Rayne", + }, + [41102] = { + ["D"] = "Greetings $c. It looks like it is time for you to get into business again.$B$BA certain Kex Blowmaster in the Barrens, around Bael\'modan, I believe is looking for ‘his trusted partner\'. He promises there will be an opportunity to make quite a fortune.", + ["O"] = "Seek out Kex Blowmaster near Bael\'modan in the Barrens.", + ["T"] = "A Call From Blowmaster", + }, + [41103] = { + ["D"] = "Hello $c, I hope you\'re having a fine day. I have news for you. A certain Torble Sparksprocket is asking for your assistance. He mentioned that your invaluable aid in his scientific endeavor is needed once more. Seek him out in Bael\'modan.", + ["O"] = "Seek out Torble Sparksprocket near Bael\'modan in the Barrens.", + ["T"] = "A Call From Torble", + }, + [41104] = { + ["D"] = "Hello $c, it looks like your partner Kex Blowmaster is calling for you again. He said all the pieces are prepared and he wants you to be there for his great moment. Find him in the Barrens in Bael\'modan. You are the guest of honor after all.", + ["O"] = "Seek out Kex Blowmaster near Bael\'modan.", + ["T"] = "Blowmaster\'s Guest of Honor", + }, + [41105] = { + ["D"] = "Ah, yes hello $c. We have got another letter for you. Apparently, you have been instrumental in the conclusion of some research in the Barrens. Your pal Torble Sparksprocket is requesting your presence as the guest of honor in the culmination of his research! Better not keep him waiting, eh? You will find him near Bael\'modan.", + ["O"] = "Seek out Torble Sparksprocket near Bael\'modan in the Barrens.", + ["T"] = "Sparksprocket\'s Guest of Honor", + }, + [41106] = { + ["D"] = "If Fel is in the soil, then it means the demons are up to something. Travel up the road until you arrive near a scorched land. It was one of the sites of the battle of Mount Hyjal.$B$B The evil ugly demonlord Archimonde himself arrived and destroyed everything that was once there! Demons still remain in Hyjal to this day.$B$B When I made my way here I ran into a young pretty red Dragon that was investigating the demons. Seek her out!", + ["O"] = "Find Melanastrasza and report the situation to her.", + ["T"] = "Find Melanastrasza", + }, + [41107] = { + ["D"] = "There is glory to be found within the Blood Ring. To challenge the champions of the Alliance will bring honor to the Horde in victory. It is there where the real heroes of Azeroth can be found.$B$BDo your part and bring glory to yourself, and to the Horde.", + ["O"] = "Bring 15 Arena Marks of Honor to a Horde Warbringer outside the battlegrounds.", + ["T"] = "Honor in Blood Ring", + }, + [41108] = { + ["D"] = "You there, do you feel the cheering crowds call your name? The glory of honor found inside of Blood Ring is second to none. Champions of the Alliance face off against those of the Horde, and it is there we may prove ourselves superior.$B$BDo your part in the name of the Alliance.", + ["O"] = "Bring 15 Arena Marks of Honor to a Alliance Brigadier General outside the battlegrounds.", + ["T"] = "Honor in Blood Ring", + }, + [41109] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Honor in Blood Ring", + }, + [41110] = { + ["D"] = "Do you have what it takes to conquer your foe, to see them crushed before the onslaught of your might? If you think that is true, seek glory within Blood Ring and secure victory. Only then will you begin to make a name for yourself.", + ["O"] = "Win a battle in Blood Ring and report to Grenthor at the Gurubashi Arena in Stranglethorn Vale.", + ["T"] = "Victory in Blood Ring", + }, + [41111] = { + ["D"] = "It was during the last great battle for Hyjal that the recipe for the Dreamsteel Buckle was devised. It was used to empower the druids and sentinels both with the magical properties of the Emerald Dream.$B$BIf such a pattern is to your liking, I could exchange it in return for Dream Shards. We are always looking to reward those who have helped here in Hyjal.", + ["O"] = "Gather 50 Bright Dream Shards for Evandil Nightwind at Nordanaar in Hyjal.", + ["T"] = "Plans: Dreamsteel Belt Buckle", + }, + [41112] = { + ["D"] = "I\'ve been so consumed by this wretched research for far too long. Moranna isn\'t making it any easier on me either. I know that we must somehow uncover the secrets of Ur without his book, but how - how in the blazes can we even go about doing that?$B$BLast I heard, the Forsaken of the Horde claimed the book from the Silverlaine Keep - I fear it may be lost to us forevermore. However, I still have hopes. There was a girl in Shademore Inn who claimed to have escaped Gilneas City by leaping over its walls. My doubts aside, she actually sold me some useful information. It might well be that the library in Gilneas City holds a copy of the Book of Ur.$B$BI would greatly appreciate it if you could retrieve it for me.", + ["O"] = "Recover the Book of Ur : Volume Two from the library in Gilneas City and return to Ethan Ravencroft.", + ["T"] = "Ravencroft\'s Ambition", + }, + [41113] = { + ["D"] = "I don\'t like questioning the boss, but I think he\'s beginning to lose his mind. We\'re meant to be thieves, yet where\'s the money, the treasure, the joy and rush of stealing, looting, and pillaging?$B$BI can\'t persuade Blackthorn to let me and some other brigands raid the city, but you have a bit more leeway. All I need you to do is head to Gilneas City\'s library and steal the portrait of Mia Greymane. We\'ll divide up the spoils.", + ["O"] = "Steal the painting from the library in Gilneas City and return to Luke Agamand at Blackthorn\'s Camp in Gilneas.", + ["T"] = "A Royal Heist", + }, + [41114] = { + ["D"] = "You there, mage. You have proven yourself to Theramore, and there is something dire I must ask.$B$BLong ago, a Kul Tiran Hydromancer spent considerable time in Gilneas, leaving behind the second manuscript on Hydromancy within the city. Ever since it has been logged into their library, sitting dormant. There have been stories of revolt and rebellion there. I must ask you to brave this city and recover the manuscript before our enemies learn the secrets of our most powerful magic.", + ["O"] = "Recover the Manuscript on Hydromancy II for Magus Hallister at Theramore Isle in Dustwallow Marsh.", + ["T"] = "Manuscript on Hydromancy II", + }, + [41115] = { + ["D"] = "Listen, Kid. I don\'t care who you are, or however many fantastic, magical journeys you\'ve been on. Go tell all those lads and lasses in the tavern if you\'re lookin\' for praise. I care about the oil that lubricates the system around here. You get what I\'m sayin\'?$B$BThe Cartel, we need gold to organise and run our daily activities. And there are always things that need doin\', it\'s like a fact of life, you know? So... you fund us, and we take notice. Maybe even let you break a kneecap every now and then, and we can look the other way. Maybe.", + ["O"] = "Bring 10 Gold to Clemence the Counter in Booty Bay.", + ["T"] = "Cartel Gold Donations", + }, + [41117] = { + ["D"] = "You there, mage!$B$BYou did well for me, and us magi must look out for one another. I must ask you another favor. This time it is something more personal. I have been studying the Temple of Atal\'hakkar for some time now, and have heard a mystery about the Tablet of Zef\'ek. According to legend, it tells the tale of the great troll warlord who created the temple that rests here in the swamp.$B$BOr something like that anyway. What is more important is the magic imbued within the stone. I want you to recover this tablet for me. It is held near the Chamber of Blood, by the chanting Kazkaz the Unholy within the temple. Find it, and bring it to me.", + ["O"] = "Gather the Tablet of Zef\'ek for Thultazor in Stonard.", + ["T"] = "The Tablet of Zef\'ek", + }, + [41118] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Tokens of Blood", + }, + [41119] = { + ["D"] = "You there, looking to create a weapon of prestige to match the glory found in the Arena? I have just the weapon for you.$B$BThe Ornate Bloodstone Dagger is said to have origins back to the Gurubashi, an ancient dagger that sacrificed blood. If this is of interest to you, let me know.", + ["O"] = "Bring 50 Tokens of Blood to Bradley Steel at the Gurubashi Arena in Stranglethorn Vale.", + ["T"] = "Plans: Ornate Bloodstone Dagger", + }, + [41120] = { + ["D"] = "Aye, laddie! Have ye heard of the legendary Dawnstone Ore? It\'s a tale of epic proportions, that is! Used to forge armor for our brave paladins durin\' the Second War. Those were glorious days indeed!$B$BBut let me tell ya, it\'s a scarce find, that it is! Only one place in this whole wide world where it can be dug up – a mine hidden beneath Gilneas City. Aye, there is a curse or somethin\' down there, somethin\' mysterious that brought this precious ore to the surface. And by the beard of my father, I don\'t reckon I\'d be wantin\' to know the true nature of it.$B$BYou see, the Greymane Gate\'s been opened once more, and the political mess in Gilneas has left that mine likely abandoned. So, I\'m thinking of gatherin\' it for my clients in Undermine. If you can get your hands on twelve hefty chunks of Dawnstone Ore for me, I\'ll be more than willin\' to share some percent of the profits with you. Now, what say ye? Do we have a deal?", + ["O"] = "Bring 12 chunks of Dawnstone Ore to Kurnen Oathbrace in Booty Bay. The ore can be found only in Dawnstone Mine in Gilneas.", + ["T"] = "Legend of Dawnstone", + }, + [41121] = { + ["D"] = "I am Lord Pyrewood of Gilneas. As you may have already heard, a Rebellion has taken command of the Greymane Wall, and it now stands open, beckoning forth a new chapter in our realm. I have been sent here by this very Rebellion to implore Stormwind\'s aid in supporting our cause.$B$BYet, amidst these pressing matters, there is a favor I must humbly seek your assistance with. During the time Greymane court played host to many guests, a man named Isiden Perenolde graced our halls. This man, esteemed by many as the rightful heir to the throne of Alterac, could be of immeasurable value to the Alliance, should he lend his support.$B$BWhispers have reached my ears that the Harlows might be holding him captive within the confines of the dreaded Dryrock Pit. I entreat you to commence your search there and, should you discover any information pertaining to this esteemed guest, do not hesitate to return it to me.", + ["O"] = "Find any information about Isiden Perenolde. He is rumored to be kept captive at the Dryrock Pit in Gilneas.", + ["T"] = "Legacy of Perenolde", + }, + [41122] = { + ["D"] = "Listen here, $c! I got a real urgent and serious matter that needs your help, right now!$B$BThose Gilneans have gone and opened up their gates once again, causing a load of trouble for us. Blast it! Now their coastal batteries are taking potshots at our transport ships, making trade with the Undercity a real pain in the gut!$B$BI need ya to take care of Cannoneer Rileson. He\'s the scoundrel calling the shots at Freyshear Keep, and he\'s the one commanding those blasted cannons. And don\'t you dare forget about his henchmen too – deal with them all!$B$BGet back to me once you\'ve sent him to the great beyond. We ain\'t got time to waste.", + ["O"] = "Slay Cannoneer Rileson in the Freyshear Keep in eastern Gilneas.", + ["T"] = "Guns of Gilneas", + }, + [41123] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Donations to Vizlow", + }, + [41126] = { + ["D"] = "", + ["O"] = "Bring a Dark Iron Bar to Lokhtos Darkbargainer in the Grim Guzzler.", + ["T"] = "Favor Amongst the Brotherhood, Dark Iron Bar", + }, + [41127] = { + ["D"] = "Our steadfast dwarven allies have recently settled an old Third War outpost in the Stonetalon Mountains. Their leader is my old friend, Whitepeak. I’m sure he would appreciate your help in resettling Stonetalon for the Alliance.$B$BThe outpost is called Bael Hardul, if my memory serves. To find it, you must go through the Talondeep Pass, then go south into the mountains. There is a secret path that leads to the outpost.$B$BPlease send my best regards to Whitepeak if you find him.", + ["O"] = "Report to Lead Explorer Whitepeak in the mountain base of Bael Hardul. It is located in the southern Windshear Crag, near the Bramblethorn Pass.", + ["T"] = "Dwarves of Bael Hardul", + }, + [41128] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Shard De-Harmonization", + }, + [41129] = { + ["D"] = "If you desire to stand out from the competition, I may have just the thing for you. Some time ago, I designed a pattern for a rather ornate buckle that is infused with great power.$B$BSuch an item may be useful for those doing battle in the arena.", + ["O"] = "Bring 25 Tokens of Blood to Bradley Steel at the Gurubashi Arena in Stranglethorn Vale.", + ["T"] = "Plans: Bloody Belt Buckle", + }, + [41130] = { + ["D"] = "I just received a letter that was addressed to you. One of the locals knows you well and requested that you meet with them. Congratulations once more on your sharp aim and bravery; you are certainly destined to serve the Alliance well. Old Jonah has grown impatient due to his advanced age, but please do not let him catch you mentioning it.", + ["O"] = "Read the Leather Letter and speak to Old Jonah behind Northshire Abbey.", + ["T"] = "Leather Letter", + }, + [41131] = { + ["D"] = "My grandfather used to tell me stories about what it means to be a Hunter. Somehow, for the various other races of our lands, it seems to be very different. For us, as Humans, it\'s to adapt to nature itself - to use it as a tool, one that we respect. Our ancestors tamed the wild horses, cattle, and even the fiercest prowlers, turning them into our trusted companions. These human hands can mold the land into many different shapes, and it is our ability to adapt that forges our survivability.$B$BI need you to visit Stonefield farm and tame one of the boars. A boar is strong and durable and can be both a fearsome adversary and a great companion.", + ["O"] = "Use the Taming Rod to tame a Stonetusk Boar. Practice your skills, then return the Taming Rod to Daisy Windhelm in Goldshire.", + ["T"] = "Taming the Beast", + }, + [41132] = { + ["D"] = "I often miss taking a dip in Stone Cairn Lake, but nowadays it\'s fully ridden with the wildlife, the gruesome gnolls, the slimy murlocs, or the foolish rogues of the Defias. Oh well, there\'s no reason to lament peaceful times, for peaceful times will surely return soon enough.$B$BTravel east towards the Logging Camp, and near its outskirts, you should be able to find Prowlers. Compared to the domesticated boar, you may have more difficulty taming this feral creature of the forests. Though scary as it may be, once you\'ve conquered your own fear, you will have no better companion. For the lupine race is very likely to create a bond with its master that will last for perhaps the rest of its life.", + ["O"] = "Use the Taming Rod to tame a Prowler. Practice your skills, then return the Taming Rod to Daisy Windhelm in Goldshire.", + ["T"] = "Taming the Beast", + }, + [41133] = { + ["D"] = "When faced with a Young Forest Bear, one cannot simply remain indifferent towards its innocence and cuteness. They are formidable creatures, despite their youth, and will likely turn aggressive if they sense any threats. To tame one of these beasts is not an easy task. However, by doing so, you will acquire an unwavering companion who will be by your side forever. These bears will scare easily, but they can also be very cuddly once they get used to you.$B$BTo find them, head to the vicinity of the Logging Camp one more time. Oh, and beware of the Tower of Azora—its occupant seems to be a little off his rocker, with a soft spot for Gnomish assistants. Steer clear if you value your sanity.", + ["O"] = "Use the Taming Rod to tame a Young Forest Bear. Practice your skills, then return the Taming Rod to Daisy Windhelm in Goldshire.", + ["T"] = "Taming the Beast", + }, + [41134] = { + ["D"] = "You can now tame every kind of beast you wish, but that\'s only the beginning of forming a bond with one. To do that, you have to learn how to train your new ally. Don\'t worry, I know just the guy who can help you: Marven. He resides in Stormwind, in the Park, but he will likely charge you an arm and a leg to teach you the ropes.$B$BThis Marven fellow is apparently an accomplished beast tamer, who\'s even impressed Nesingwary. Although I have no idea who that is either.", + ["O"] = "Speak with Marven the Tamer in the Park in Stormwind City.", + ["T"] = "Training the Beast", + }, + [41135] = { + ["D"] = "I was tasked with delivering this tablet to you. As if Nartok, the troublesome warlock, weren\'t enough, another troll has made its way down to the Valley of Trials. He says he is here to teach aspiring warlocks from the local tribes, claiming that his methods are authentic. $B$BHowever, I\'ve never been one for curiosity or taking unnecessary risks. I simply want to stay out of trouble and avoid any conflicts, especially when it comes to something as dangerous as fel. Just remain vigilant and stay safe.", + ["O"] = "Read the Tainted Tablet and speak to Zin\'jashi inside the Den in the Valley of Trials.", + ["T"] = "Tainted Tablet", + }, + [41136] = { + ["D"] = "Yes, yes, Archmage Vandol was truly one of the greatest minds of the Kirin Tor. He was a dear friend of Medivh, if you can believe such a thing. Although, some might argue that Medivh had no true friends.$B$BAlas, I fear I cannot be of much assistance to you. After the devastation of Dalaran at the hands of Archimonde, Vandol suffered injuries that took a great toll on him. He spent many moons in recovery and eventually retired as one of the most accomplished mages of our time.$B$BI seem to recall him expressing a desire to settle in or around Theramore. If he still lives, I suggest asking for him in the city itself. One of our apprentices, Magus Halister, might know of his whereabouts.", + ["O"] = "Ask Magus Hallister in Theramore for the whereabouts of Vandol.", + ["T"] = "The Key to Karazhan IV", + }, + [41137] = { + ["D"] = "$B$BAh, yes. Vandol. He was here, in Theramore, some four years ago. Paid a visit to Lady Jaina, in fact. But he did not stay in the city for long. Found it too bustling for an old man like him, I suppose.$B$BAccording to our records, Vandol purchased a small boat not long after his visit. Loaded it up with vital supplies, food, and even seeds, if you can believe it. He set sail for the south, seeking a quieter life, I imagine. The coastline would be your best bet if you seek to find him.", + ["O"] = "Find Vandol. He is living somewhere on the eastern coast of Kalimdor, south of Theramore.", + ["T"] = "The Key to Karazhan V", + }, + [41138] = { + ["D"] = "Back when the Vault first was opened, it was used to house the most dangerous prisoners, to contain magical entities and the insane alike, we used Runic Constructs to patrol the hallways!$B$BThese Runic Constructs have fallen corrupt from the intense magic within the Vault, and need to be destroyed, their powerful bracers are what keep them intact, and they need to be recovered! I have plans to test what exactly went wrong with these bracers.$B$BYou can find them within the Stormwind Vault, slay them, and bring me a pair of Shackles, I will make sure you are rewarded for the task.", + ["O"] = "Within the Stormwind Vault, slay Runic Constructs for 2 Runic Shackles, return them to Koli Steamheart.", + ["T"] = "Recovering Vault Shackles", + }, + [41139] = { + ["D"] = "Many years ago the wizards of Stormwind discovered a large crystal that held an intense amount of magical energy. This crystal we named Arc\'Tiras, and stashed it deep within the Stormwind Vault after many mishaps with the unstable magic it emitted.$B$BLittle did we know this crystal, Arc\'Tiras had a mind of it\'s own.$B$BIt has driven the guards mad, and turned the Stormwind Vault into nothing more than corridors of madness. Our magic is enough to hold the crystal at bay, for now, but it needs to be destroyed, and for good.$B$BTravel into the Stormwind Vault, put an end to this madness.", + ["O"] = "Venture deep within The Stormwind Vault, find Arc\'tiras, and slay him. When done, return to Pepin Ainsworth.", + ["T"] = "Ending Arc\'Tiras", + }, + [41140] = { + ["D"] = "Me good-for-nothing brother Sindri over there thinks he can one up me by makin\' empty promises to mother - just te stick it up te the ole kvinn! He damn well know\'s it is ME who\'s the better smith \'ere. Just ye wait, brother, I\'ll smith yer a weapon ye can stick up yer gryphon roost! Ye will help me with that, stranger.$B$BYe know the cave at Skulk Rock? The mine still has lots o\' mithril in it, but I don\'t need any ole stinkin\' mithril - no, I need etched mithril! Those sludge buggers roamin\' there absorb all ore shards lyin\' around, but their acid ain\'t strong enough to destroy it completely. If ye melt it, it becomes incredibly sturdy!$B$BSindri might tell ye he read in some ole dusty, crusty book that it won\'t work, but do ye think me ancestors were readin\' books before swinging their hammer? Ye can bet your arse on it, they didn\'t!", + ["O"] = "Gather 15 Etched Mithril Shards for Brok Thunderforge in Aerie Peak for his new creation.", + ["T"] = "Proving A Point", + }, + [41141] = { + ["D"] = "I heard what you were talking about with Brok. Almost impossible with his yapping, you can\'t even hear your own creative thoughts! He might\'ve told you that I\'m an amateur blacksmith, but that couldn\'t be further from the truth! You\'ll find no one better among us Wildhammer dwarves - besides our dear mother, of course.$B$BIt is true, however. I do intend to present Mother with a weapon to prove her once and for all to stop wasting time on that buffoon, who crafts his weapons on emotional whims and disregards tradition, technique and - most of all - class! He\'d be better off in some backwater Bronzebeard village, if you ask me.$B$BSince you helped him, it is only fair that you help me, too. The books I\'ve bought from the recent traveling merchants describe giants of stone created by nature magic. Their bodies are full of energized minerals, ideal for my weapon! The lush forests of northern Feralas are the place they call home. Get me some sizable samples from their bodies, please.", + ["O"] = "Sindri Thunderforge needs samples of mountain giants for his creation. He specifically mentioned the ones living in Feralas.", + ["T"] = "I\'ve Read It In A Book Once", + }, + [41142] = { + ["D"] = "Although I love me boys, I wish I could whack \'em over their heads with me hammer when I see \'em like this. If they\'d stop their bickerin\', they\'d be able te achieve so much more.$B$BI\'m not the lass to sugarcoat \'em, maybe their father would\'ve, but that disappointment of a man is long gone. We will make our own weapon te remind both of \'em, what real dwarven smithin\' looks like. They were on the right track, but they sadly lack vision. We will combine both of their ideas.$B$BYour adventurer friends tell the wildest stories about the most mind-bogglin\' creatures. In the white ravines of Maraudon in Desolace lives the giant Landslide, made of pure marbled stone. Rumors say deep within the Hateforge Quarry of the Burning Steppes, the acid pools are so potent, a bein\' manifested itself from them!$B$BTe smith a truly powerful weapon, bring me pieces of both of their bodies.", + ["O"] = "Obtain the Heart of Landslide from the depths of Maraudon, and the Essence of Corrosis from Hateforge Quarry for Frig Thunderforge at Aerie Peak", + ["T"] = "Why Not Both?", + }, + [41143] = { + ["D"] = "Alright, the weapons are ready. Just look at \'em with that smirk on their faces, pah! A smith can be proud, sure, but stayin\' humble is equally important. That\'s a lesson they will now get taught.$B$BJust stay and watch the lecture, it\'s gonna be a blast.", + ["O"] = "Witness the Thunderforge lecture.", + ["T"] = "Thunderforge Mastery", + }, + [41144] = { + ["D"] = "Ye kno\', we Wildhammers weren\'t always \'ere in these wild lands. We used to live underground, just like our fair brothers, the Bronzebeards. I have never seen our great city of Grim Batol, but me grandfather Bemoth told me stories about it in front of the hearth.$B$BYe can\'t say that the Wildhammers from the past are the same than the current ones, they\'re just differen\'. Sure, some traditions took over, but we also made new customs, more fittin\' fer us gryphon riders.$B$B$B$BInterested in learnin\' about \'em, eh? \'ere, lemme show ye.$B$BYoung Wildhammer are s\'pposed to make their own headdress out of feathers before turning of age - as a rite of passage, if ye will. If ye wanna make ye own, get some feathers from the owlbeasts roaming the Hinterlands. Don\'t forget to get different colours, me friend.", + ["O"] = "Gather 10 Red Owlbeast Feathers, 10 Black Owlbeast Feathers, and 10 Brown Owlbeast Feathers from the owlbeasts in the Hinterlands for Doran Steelwing in Aerie Peak.", + ["T"] = "Rite Of Passage", + }, + [41145] = { + ["D"] = "Usually the wee lads would hunt for their own leather, but I am not sure if yer knowledgeable in the art of skinnin\'.$B$BSpeak with me good friend Drakk Stonehand just down the stairs, he\'s our master leatherworker, ye won\'t find any better work than from his crafty hands.$B$BTell him Doran sent you, the ole chum still owes me one, he\'ll help an adventurer like ye out anytime.", + ["O"] = "Speak with Drakk Stonehand in Aerie Peak about the headdress framing.", + ["T"] = "A Proper Framing", + }, + [41146] = { + ["D"] = "Doran sent ye, eh? Well, he is a close friend, that\'s fer sure. And he wants me to help ye with a feathered headdress, like our fledglings do?$B$B$B$BIf ye wanna do it the Wildhammer way, ye have to get the leather yerself, wouldn\'t be authentic otherwise, would it? Here\'s the deal - get me fifteen silvermane hides for me stock and I will make you a framin\' from one of the finest leathers I have.$B$BWhat? Doran told ye, I owe him one? Don\'t worry, I\'m doin\' this for Doran, but ye still have to have the entire experience, ye kno\'? We don\'t\' wanna sugarcoat you or anythin\', eh?$B$BHere, take this skinnin\' knife, it isn\'t as hard as many would say, ye just have to carefully sever the skin from the meat and tissue. With all the slashin\' ye adventurers do, I\'m sure ye will get the hang of it in no time. Just try not to cut yerself, chum!$B$B", + ["O"] = "Bring 15 Silvermane Hides back to Drakk Stonehand in Aerie Peak.", + ["T"] = "Every Step Of The Way", + }, + [41147] = { + ["D"] = "Here, this framin\' is one of me finer works, ye can bet yer bum on that.$B$BI\'ve known Doran fer almost a decade now, he\'s a good fellow. His heart is in the right place, but ever since his lass passed away, he ain\'t the same anymore. Now he seems distant and lost reminiscin\' of past stories, he surely told you about it. It\'s heartbreakin\' seein\' him like that, I can assure ye.$B$BTake the framin\' with ye, Doran will show ye how to finish the headdress.$B$B", + ["O"] = "Take the headdress framing to Doran Steelwing upstairs.", + ["T"] = "Clipped Wings", + }, + [41148] = { + ["D"] = "Here, take a closer look, us Wildhammer have a certain technique on how to sew the feathers to the headdress. Ye can\'t learn this anywhere else. They\'re passed down from generation to generation...$B$B$B$BAight, this is how a real Wildhammer headdress is crafted, if yer were a fledgling ye\'d take this to yer first gryphon ridin\' lesson. Wearin\' it while yer bondin\' to yer gryphon is a magical moment in the life of any adolescent Wildhammer. I still remember mine like it was yesterday. Ya, like yesterday...$B$B$B$BI\'m sorry, friend. I told ye this is fer ye, but would ye be kind enough to put the headdress on a grave on Aerie Peak\'s graveyard? It is the tombstone between the rune-marked trees, to yer right as ye enter. $B$BIf ye could do this fer me, this ole dwarf would be forever in yer debt.", + ["O"] = "Place the Wildhammer Feather Headdress on the tombstone Doran described in Aerie Peak\'s graveyard.", + ["T"] = "For Her", + }, + [41149] = { + ["D"] = "", + ["O"] = "Speak with Doran Steelwing about the headdress and the gravestone.", + ["T"] = "Fly High, Little Dulin", + }, + [41150] = { + ["D"] = "I have quite a problem on my hands here. A bad batch of mainframes has sent a lot of the Whirling Whizzbots into disarray!$B$BAll they do now is aimlessly wander instead of doing their work. What\'s worse is that they are constantly getting in the way of production, and I have Kizzcrack up my rear to fix the issue.$B$BDo you think you could do me a solid and collect the Defunct Mainframes from the Whirling Whizzbots? If I can take a look at them, perhaps I can think of a solution that wouldn\'t require me to destroy each and every one I have made. Six should do just fine.", + ["O"] = "Recover 6 Defunct Mainframes from the Whirling Whizzbots around the Black Ash Coalpits for Balnack Copperlight.", + ["T"] = "Defunct Mainframes", + }, + [41151] = { + ["D"] = "It would seem all of my creations have gone rogue. First it was the Whirling Whizzbots wandering aimlessly, and now it\'s my Battlechickens. They started running amok just a few nights ago. First ignoring commands, and now being a large nuisance to the working environment. I first created them to shoo away wildlife, and now they are causing more problems than they are worth.$B$BThink you can do me a favor and clear out some of the Battlechickens? Once there are fewer of them running around, I should be able to actually think about a new replacement.", + ["O"] = "Slay 8 Haywire Battlechickens around the Black Ash Coalpits for Balnack Copperlight.", + ["T"] = "Haywire Havoc", + }, + [41152] = { + ["D"] = "Now that you\'ve been able to recover those defunct mainframes, I have a more important task to ask of you. My greatest creation, DV-500 has gone mad. It seems no matter what I have built, it is now turned against me.$B$BAs much as I love DV-500, there is something I love more. Gold.$B$BThe advanced processing unit cost me a fortune, and to see it wandering aimless for any sorry sap to go and repurpose is driving me mad! I need you to gather the processing unit from DV-500 and bring it to me immediately. I last saw him striding around to the north of here.", + ["O"] = "Recover the Advanced Processing Unit from DV-500 and return it to Balnack Copperlight at the Black Ash Coalpits on Blackstone Island.", + ["T"] = "DV-500", + }, + [41153] = { + ["D"] = "You there, kid! I got work orders and timeframes that I need completed around here, and those blasted Ashfeathers keep getting in the way. I need results, and I need them quick. Clear out the buzzard population around here so that my guys can work properly, and without interruption. The quicker you do some enforcing, the quicker I can get to finishing these overblown timetables.", + ["O"] = "Slay 10 Ashfeather Scavengers for Foreman Pipelatch at the Black Ash Coalpits on Blackstone Island.", + ["T"] = "Foreman Pipelatch", + }, + [41154] = { + ["D"] = "You! What are you just wandering around like a headless murloc? We are behind the quota and lazy goblins like you aren\'t gonna make it any better by slacking all our precious potential gold away! The Durotar Labor Union will drive itself to ruin if they don\'t go back to their profitable roots.$B$BQuick, go out and be a good example for your goblins by collecting coal around the pits. Don\'t you dare tarry around too long or I will send a bruiser to check up on you!", + ["O"] = "Gather ten pieces of Coal from the coalpiles around the Black Ash Coalpits and bring them to Overseer Kizzcrack.", + ["T"] = "Pit-Iful Work", + }, + [41155] = { + ["D"] = "Us goblins are known to use all kinds of machines and gadgets to make our labor as easy and comfortable as possible. Just think of the ingenious invention of the shredder! No other man-operated vehicle can chop down trees in record time.$B$BBalnack Copperlight is the man for maintenance on our work machinery. While I was busy remedying this mess of a workplace, I got a headache from his incessant swearing and yelling outside. Talk to him and help him with whatever problem he has. I don\'t care how you do it, just make him shut up and do it quickly!", + ["O"] = "Talk to Balnack Copperlight outside.", + ["T"] = "The Robotics Expert", + }, + [41156] = { + ["D"] = "Don\'t get ahead of yourself. The only thing separating you from a hobgoblin is your work speed and even that has a whole lot of room for improvement. What better way to do that than to finish more jobs, am I right?$B$BThe local vultures are pestering us and disrupting our work schedule. Foreman Pipelatch down in the pits has been tasked to handle this, but it seems even the goblins with a little bit of control over others panic at the first problem they encounter. Go there and see if you can do something about it.", + ["O"] = "Talk to Foreman Pipelatch in the pit just outside.", + ["T"] = "Foreman\'s Blues", + }, + [41157] = { + ["D"] = "Supplies are beginning to run low. We were waiting on a shipment from Sparkwater Port in Durotar, but the ship got wrecked by an unknown source on the southern coast. Most of the crew ended up as fish fodder, but the captain and his first mate survived and are currently observing the wreckage.$B$BI want to know when I can expect the supplies to be here. I am here for results and financial growth, not semantics or empathy. Ask Dazlon Brassdigger on the cliff overlooking the coast just south of here what you can do about retrieving the sunken goods.", + ["O"] = "Dazlon Brassdigger south of the Black Ash Coalpits can tell you more about his ship\'s wreckage.", + ["T"] = "Delayed Shipments", + }, + [41158] = { + ["D"] = "We\'ve encountered many ghastly creatures on our voyages. From murlocs to naga, sharks to hydras. But personally, nothing from the depths gives me more shivers than these shelled horrors with their giant, snappy claws! Just look at them: the long, beady eyes, the razorsharp legs and their barnacle covered shell - UGH!$B$B$n, go down there and show them what they get for sinking my ship and making a feast out of my crew!", + ["O"] = "Take revenge on the makrura on the southerwestern coast of Blackstone Island and report back to Dazlon Brassdigger.", + ["T"] = "Revenge of the Deep", + }, + [41159] = { + ["D"] = "Do you even have the slightest idea what kind of disaster this is? First, my ship got wrecked on this backwater island. Secondly, my entire crew besides Ranala either drowned or got devoured by these lobster things down there. And thirdly - most importantly! - I lost my log book when we jumped ship!$B$BYou may think a soggy, old log book might not be worth it, but there are things inside this book that CANNOT make it to any of the higher ups here on this island. And I mean it! I swear it on the life of my rich grandmother back in Undermine!$B$B$n, while you\'re down there, look for any signs of the Hangmans Plunder\'s log book. Should you find it, I will pay you with good and honest coin!", + ["O"] = "Recover the Hangmans Plunder\'s Logbook from its wreckage south of the Black Ash Coalpits and bring it to Dazlon Brassdigger.", + ["T"] = "Dirty Deeds Drowned Deep Below", + }, + [41160] = { + ["D"] = "Just look at it. A broken shell, nothing more. Do you even know how many years Dazlon and I worked to be able to afford our own ship, let alone this lucrative lifestyle? Probably not. Most definitely not.$B$BYou know, I had quite the fortune on that ship. Saved it from several trades and other more... unconventional practices. Nothing out of the ordinary for a gal of the sea, after all. I worked months, almost a year for this and now - all gone, sunken to the depths.$B$BI heard you are going to the wreckage for Dazlon. I don\'t have any hope you\'ll find it, but should you come across a green stash full of gold coins anywhere down there - I beg of you, bring it to me, please.", + ["O"] = "Find Ranala\'s Sunken Stash. If it is not on the wreckage, maybe the makrura have taken it. Bring it to her south of Black Ash Coalpits afterwards.", + ["T"] = "Under The Sea", + }, + [41161] = { + ["D"] = "When you came here all the way from the Black Ash Coalpits, then you\'ve probably seen the big, hulking machine. Gazzik considers it his masterpiece - the Supercutter 1500! With it we harvested this island faster than any shredder could. Truly marvelous, I have to admit. Too bad some idiot decided it would be a great idea to drive the thing into the mud. Really, groundbreaking stuff, I wish I could\'ve caught that guy and strangled him for messing with our efficiancy that much.$B$B$B$BIt\'s not been that long, but I don\'t remember who controlled it that day. Furthermore, we weren\'t able to assess the damage yet because of this overblown work schedule. I want you to go to the crash site and look at how badly damaged it is. While you\'re there, recover the Supercutter\'s remote, so we can check it for any malfunctions.", + ["O"] = "Retrieve the Supercutter 1500\'s remote from the Supercutter 1500 north of the Black Ash Coalpits for Fanzo Edgeline at Gazzik\'s Workshop.", + ["T"] = "The Supercutter 1500", + }, + [41162] = { + ["D"] = "You\'d think as an assistant I\'d be doing only half the work of the guy I\'m assisting, but no! While everyone is drowning in work - including myself! - Gazzik is tinkering day in day out without a care in the world. I don\'t know what kind of backhanded deal he has struck with Rustgate, but it seems to be paying off!$B$BOn top of that, our supply routes are constantly interrupted by either slobbering gnolls or the local wildlife, delaying any work progress even further.$B$BYou seem capable enough, I guess. Go back over the bridge and get rid of anything that isn\'t a goblin!", + ["O"] = "Kill Ashfeather Scavengers and Blackvenom Scorpids for Fanzo Edgeline at Gazzik\'s Workshop.", + ["T"] = "Clearing Nuisances", + }, + [41163] = { + ["D"] = "I was comissioned to make several combat robots for Taxxlo in order to fight the Venture Co. which began appearing on the island. Little did I know the very materials I was crafting these battletrons were themselves made by those we are fighting. Suffice to say that each and every one of our new combatants have fallen into a state of annoyance.$B$BTaxxlo tried to save some gold and put the entire island at risk, we were lucky they didn\'t outright turn on us. Regardless, we have to clean up this mess, and the aimless robots could still cause issues.$B$BYou can find most of them wandering just south of Rustgate Ridge to the west of here, destroy them so that they don\'t fall into the hands of our enemy.", + ["O"] = "Destroy 10 Faulty Battletron 1000\'s for Gazzik at Gazzik\'s Worshop on Blackstone Island.", + ["T"] = "Battletron Calamity", + }, + [41164] = { + ["D"] = "Are you the promising worker that\'s been cleaning up all the messes down in the coalpits? You must have something to your name, my brother usually kicks out anyone from the pits sneaking their way into his tower.$B$BI could use your abilities, frankly. In the last weeks we suffered more and more ambushes by the renegade gnolls. Their small dog brains seek violence and chaos, something I cannot understand as a logistics guy. They raided our supply convoys and stole mostly food and weapons, but left most of the tools lying around. Too advanced for them, I\'m sure.$B$BWe need those tools back as soon as possible. Vultures and hyenas have been roaming the wrecked carts, feasting on whoever couldn\'t make it back here. You can find them scattered all over the island, you can\'t miss \'em.", + ["O"] = "Retrieve Rustgate Tools from the broken convoys all over Blackstone Island. Bring them to Supplymaster Maxlo at Rustgate Ridge.", + ["T"] = "Salvaging Convoys", + }, + [41165] = { + ["D"] = "What do you think the most important thing on this island is? Water, of course! Taxxlo was a good answer, buddy, but even he has to admit that we cannot keep the workers going if they\'re shriveled up like a deep-fried plantain.$B$BTo the north, past the mines, you will find Blackstone\'s waterhole. Pumpmaster Galvax was ordered to send a shipment of water here to Rustgate Ridge, but this has taken longer than I\'d like it to have. Ask him what is taking so long!", + ["O"] = "Pumpmaster Galvax at The Water Hole can tell you more about the missing water delivery.", + ["T"] = "Dry As A Desert", + }, + [41166] = { + ["D"] = "By any chance, did you help Copperlight down in the coalpits with his machine mayhem? He\'s been requesting some parts for additional modifications on his creations.$B$BWhat he wants is sadly not here in my storage, but Gazzik in his workshop is due to send a new shipment up to Rustgate Ridge. He can be a bit on the slacking side of things, but there is no one else like him on this island, so Taxxlo turns a blind eye to his shenanigans.$B$BHis workshop is to the southeast, across the makeshift bridge. Gazzik can tell you where the shipment is; once you have it, bring it to me.", + ["O"] = "Bring Supplymaster Maxlo at Rustgate Ridge the Crate of Rebalanced Frameworks from Gazzik\'s Workshop.", + ["T"] = "Redistribution", + }, + [41167] = { + ["D"] = "Okay, listen up, buddy. You hate murlocs, right? Perfect. Everyone hates murlocs, those who don\'t end up as their meal real fast. And I for one don\'t want to be held responsible if any of our workers become some murloc\'s midnight snack.$B$BI want you to go down to the coast and kill as many fishy fiends as you can. I\'d rather be busy beating slobs back into working shape than to deal with those slimy creatures. And don\'t think of just pretending to kill them or I\'ll drag you to the Supreme Overseer myself. Prove to me you\'re reliable by bringing me their scales.", + ["O"] = "Hunt murlocs on the shores of Blackstone Island and present twenty of their scales to Bruiser Rakklan.", + ["T"] = "The Murloc Threat", + }, + [41168] = { + ["D"] = "Howdy, partner! Rustgate has us living lavishly up here. Unlike those poor dirtbags down in the pits. But that\'s how things roll around here. That\'s what they call winning the lottery in life!$B$B$B$BHey, if you\'re already here, I could use some help, actually. You know, Rustgate has quite the... eccentric taste when it comes to his cuisine. He wants me to remake this maritime gumbo his grandmother used to make him back on Kezan. Usually not a problem, but the ingredients are not something we really have in stock up here. Oh, don\'t give me that look. I mean it, really!$B$BIf you bring me some crawler meat and makrura legs, I will teach you how to make it yourself. Could be useful if you ever need to appease the boss.", + ["O"] = "Gather the needed ingredients and bring them to Shazzlan at Rustgate Ridge.", + ["T"] = "Maritime Gumbo", + }, + [41169] = { + ["D"] = "Take a look at this island. What do you see? Exactly. You see us losing money! If I told you what the reasons for us losing money are, then we\'d be staying here all night. And I for one can\'t afford that and neither can you. When Blastentom suggested the monetization of this island I was all ears, but this is one-hundred percent NOT what I signed up for!$B$BBlastentom expects a report from me about the status quo around here. I definitely don\'t want to be at the receiving end of his anger, luckily you unfortunate bugger are here to go in my stead.$B$BTake this, and bring it to Nert Blastentom at Sparkwater Port in Durotar. You surely don\'t want to swim all the way back, so catch a ride at Gazzik\'s Workshop. Prepare to pay up, this ain\'t a charity around here. If you\'re not back by tomorrow, I will file an arrest and have you executed for desertion!", + ["O"] = "Pay for a ride at Gazzik\'s Workshop and bring Rustgate\'s Business Report to Nert Blastentom at Sparkwater Port.", + ["T"] = "Bearer Of Bad News", + }, + [41170] = { + ["D"] = "This is a complete disaster! How could this happen in such a short span of time? Not only is this a monetary failure, but also a potential threat to our alliance with the Horde! I promised our benefactors in Orgrimmar new resources at a steady rate, but with what\'s happening on Blackstone Island, this will just be wishful thinking.$B$B$n, take the next trip back to Blackstone Island and assist Rustgate in salvaging this mess of an operation. Now go, I want to see results!", + ["O"] = "Return to Taxxlo Rustgate on Blackstone Island.", + ["T"] = "Solutions On Their Way", + }, + [41171] = { + ["D"] = "You\'re familiar with diving wreckages, I heard? Oh, you\'re surprised? Nothing escapes my ears, bugger, so don\'t think of doing something fishy around here. I\'ll have a bruiser on your back sooner than you can say ‘gold coin\'.$B$BAnother ship wrecked on the east coast, no pirate vessel, but one from Sparkwater Port itself. Numerous crates and new workers on it. We already salvaged most of the useful supplies, but weren\'t lucky to find its logbook. What? Yes, some of the goblins on ship were also lost, but if you ask me, if they can\'t survive a simple wreckage, then Blackstone ain\'t the place for them.$B$BGet me that logbook, and beware of the murlocs around there. I don\'t want to lose any more workforce in retrieving this damn thing.", + ["O"] = "Recover the Venture Co. Logbook and bring it to Taxxlo Rustgate.", + ["T"] = "Searching Wreckage", + }, + [41172] = { + ["D"] = "Potential is what I see in you, $n. Not many here show it. But you might be the goblin I\'m looking for.$B$BMaybe you\'ve witnessed it already or you\'re just ignorant to the issue, but we\'re having problems with the... willingness of some workers out here. Call it a strike, sabotage, revolt - I don\'t care. They\'re costing me money instead of making it and I\'m not having it. If that wasn\'t enough, their overly aggressive behaviour is a threat to the obedient workers we still have.$B$BOur bruisers got their hands full with keeping order around here, so you will be my instrument of justice. Go out and quell their uprising, immediately. Their medallions will do nicely as proof. According to reports, most of the hostile activity originates from the slum up north.", + ["O"] = "Slay Venture Co. traitors and bring their medallions to Taxxlo Rustgate.", + ["T"] = "War on Venture Co.", + }, + [41173] = { + ["D"] = "From what we could gather, this resistance is too organized to just be a simple rouse of dissatisfaction among workers. Someone must\'ve instigated this. Thorough as we are, we already have a suspicion on who\'s behind it.$B$BGelwex Goldfingers and Dex Lodespark. Ungrateful bunch. Both of them were known to be troublemakers, nothing the bruisers couldn\'t handle, yet it seems they had more nefarious plans than slacking on the job. Whatever they\'re planning, you will stop them right in their tracks. Set an example and show everyone on this island that the only acceptable punishment for their actions is execution.$B$BThey\'re most likely among their conspirators in the slums. Do not come back until you\'ve dealt with this.", + ["O"] = "Dispose of the resistance\'s leadership and bring their heads to Taxxlo Rustgate.", + ["T"] = "Destroying Venture Co. Leadership", + }, + [41174] = { + ["D"] = "The state of Blackstone is much worse than I had anticipated. When I first was asked to come to this island and produce some mining robots to help with the workload, I was more than happy to see the progress here.$B$BWhat I found instead was a hostile work environment and not even enough materials to do a good enough job for my contract. Now I\'m stuck here, held hostage until I get the problem sorted out. You see, I was given terrible materials to work with and as the copper wires decayed, so too did my Mine-Bots. Now they just wander aimlessly around the island.$B$BDo you think you could do me a massive favor? Find those malfunctioning Mine-Bots and destroy them for me. Apparently, they are causing a workplace hazard. You should be able to find them around the island, but most were sent to work at the Black Ash Mine to the north of here.", + ["O"] = "Slay 8 Malfunctioning Mine-Bots for Technician Reyvo at Rustgate Ridge on Blackstone Island.", + ["T"] = "Workplace Hazard", + }, + [41175] = { + ["D"] = "We got a real catastrophe on our hands, and when Taxxlo finds out, he\'s going to have my head. A few nights ago, we were attacked at the Black Ash Mine to the north of here. The Mudpaw gnolls came and drove us out, killing many of my workers in the process. Now they\'re even mining themselves! Those cretins.$B$BWhat\'s worse is that I lost all of the supplies near the mine, and now those blasted gnolls are using them. Head to the Black Ash Mine, and recover eight crates of supplies for me, at least then I can save my own hide from this disaster.", + ["O"] = "Recover 8 Mining Supplies from the Mudpaw Miners at the Black Ash Mine for Mining Foreman Bizzlo at Rustgate Ridge on Blackstone Island.", + ["T"] = "Mudpaw Mining Mishap", + }, + [41176] = { + ["D"] = "Hey, pal, ever heard of Shellcoin? It\'s an absolute craze among those wanting to shoot high in their monetary endeavors. There is no other way for a quick and reliable head start to becoming your own trade prince! The only catch on the matter is: you need a budget to even start with Shellcoin trading! And no one except the ones in Rustgate\'s tower have enough gold for that.$B$BHowever, me being the genius mastermind that I am, I already came up with a brilliant solution! The shells that drift ashore on this island look almost identical to Shellcoin!$B$BOkay, here\'s the pitch: bring me enough of those shells and we split them fifty-fifty. You can find them along the beach just north of here, or from those gnolls that seem to wander the coast and collect them. Once you got twenty, return to me and we can strike rich!", + ["O"] = "Gather 20 Blackstone Sea Shells along the eastern beach for Schera Framesnap at Gazzik\'s Workshop on Blackstone Island.", + ["T"] = "She Sells Sea Shells", + }, + [41177] = { + ["D"] = "The hour has arrived for you to delve into the art of taming nature itself. Among us Rangers, an unwavering bond with nature has always prevailed, with many forging connections with animal companions on our journeys.$B$BTo comprehend this connection, this synergy with the wild, you must first demonstrate your readiness. Take this taming rod – a tool that will grant you the power to tame an Elder Crimson Lynx. Subdue this majestic creature, showcasing your prowess as a ranger. Your initiation into the ways of the wild begins with this task.", + ["O"] = "Use the Taming Rod to tame an Elder Crimson Lynx. Practice your skills, then return the Taming Rod to Damilara Sunsorrow in Alah\'Thalas.", + ["T"] = "Taming the Beast", + }, + [41178] = { + ["D"] = "Not every beast mirrors the ferocity of the lynxes that roam these lands. It\'s crucial to recognize the regal and majestic facets of the wild. The Ivory Hawkstriders, once graced the company of royalty, serving as mounts for the Sunstriders.$B$BTake this taming rod, and endeavor to tame an Ivory Hawkstrider. This task demands a distinct approach, affording you insights into the multifaceted nature of these creatures. It is through this encounter that you shall come to comprehend the true essence of the beasts that share our world.", + ["O"] = "Use the Taming Rod to tame an Ivory Hawkstrider. Practice your skills, then return the Taming Rod to Damilara Sunsorrow in Alah\'Thalas.", + ["T"] = "Taming the Beast", + }, + [41179] = { + ["D"] = "As Quel\'dorei, our intrinsic connection to magic sets us apart. Yet, in the realm of beasts, there exists a creature born of the pure mana of the Sunwell – the mana wyrms. Your ultimate challenge lies in taming a Lavender Mana Wyrm, dwelling amidst the southern hills.$B$BIf you can successfully tame this creature, you\'ll not only assert mastery over the beast but also showcase your prowess in the arcane arts. The Lavender Mana Wyrm represents a fusion of our elven heritage and the magical energies that course through Azeroth. May your endeavors prove you a true master of both.", + ["O"] = "Use the Taming Rod to tame an Lavender Mana Wyrm. Practice your skills, then return the Taming Rod to Damilara Sunsorrow in Alah\'Thalas.", + ["T"] = "Taming the Beast", + }, + [41180] = { + ["D"] = "You\'ve gained the power to tame a companion, yet the journey has just begun. To truly harness the potential of your new ally, seek the guidance of the foremost hunter among our people – Ranger-General Halduron Brightwing.$B$BHe stands as a paragon of our craft, and you\'ll find him in the southern reaches, stationed beside the Last Runestone. There, he leads our forces in an unyielding battle against the Scourge.$B$BApproach him, and under his tutelage, refine the skills needed to train and command your newfound companion.", + ["O"] = "Speak to Halduron Brightwing in the fortified area next to the Last Runestone.", + ["T"] = "Taming the Beast", + }, + [41181] = { + ["D"] = "Hello, if it isn\'t the superhero themselves coming in to greet their old friend Wizette! I gotta say, you got a lot of goblins turning their heads wherever you\'re showing up. Our own personal celebrity, how charming.$B$BBut enough of that, we got work to do and I might need your assistance with something.$B$BGalvax up at the Water Hole ran into some renegade elementals that threaten our vital water supply and he can\'t handle it with the bruisers alone. Seems like these watery blobs don\'t fancy us taking all the water.$B$BI got a good hunch on how to deal with this from what he reported, I simply need a conduit of some sort. The Mudpaw Mystics to the northeast appear to carry magical orbs with them, bring me three, and we will continue with the plan.", + ["O"] = "Acquire three Mudpaw Oracle Orbs for Wizette Icewhistle at Rustgate Ridge.", + ["T"] = "Magical Maladies", + }, + [41182] = { + ["D"] = "It is actually quite simple, really. I will channel my magic through these orbs, weakening the elemental safely from a distance. This should give you an even playing field.$B$BBelieve it or not, but powerful mages and sorcerers are able to conjure and dominate their own water elemental. Our knowledge and control over the elements may not be as deep and spiritual as one of a shaman, but that doesn’t mean we can’t do wonders with them too. So, who knows? Maybe one day you’re waltzing into this place hitching a ride on one of them!$B$BNow go north to the water hole. Once there, brace yourself and whack the elemental out of Durotar Labor Union property!", + ["O"] = "Quench the water elemental threatening the water pump and bring its shackles to Wizette Icewhistle at Rustgate Ridge.", + ["T"] = "Bubbling Baddies", + }, + [41183] = { + ["D"] = "I am keeping an eye on the pump here day in and day out. All around the clock I stand here and watch this cranky old thing hold on to dear life and try to make it keep doing so for the foreseeable future. Should this baby ever stop, I\'m in for a whole new world of trouble - trouble I would like to avoid.$B$BThe nights are getting colder by the day and I am not allowed to make a campfire in case it burns down the pump. Luckily I\'m a proficient leatherworker and can make myself a fine coat against the cold.$B$BIf you bring me pelts from the hyenas around here, I\'ll make you something too. Deal?", + ["O"] = "Bring 6 Ashpaw Pelts to Pumpworker Fizzlo at The Water Hole.", + ["T"] = "Ashen Pelts", + }, + [41184] = { + ["D"] = "I know, I know. His Excellency in his tower is thirsty and now his brother sends a poor, gullible ant up here to get the shipment he was promised. Heard that atleast three times today. You see, I would love to send Rustgate his water, the issue is just that his way of leading doesn\'t sit well with some of the more… idealistic and naive idiots on this island.$B$BThe caravan that was supposed to bring Rustgate his refreshing liquid was ambushed and looted by the denizens of the slums up there. Guess they not only want their own water, but also make sure that the Supreme Overseer stays as dry as a murloc in Tanaris.$B$BIf you want to help - and I hope to all that is golden you want to - then go up there and bring the shipment of water to Supplymaster Maxlo. If you succeed, tell him what\'s going on here.", + ["O"] = "Recover Rustgate\'s Water Shipment and bring it to Supplymaster Maxlo in Rustgate Ridge.", + ["T"] = "Right From Under My Green Nose", + }, + [41185] = { + ["D"] = "If these Venture Co. folk up there weren\'t enough, just beyond this measly pond are the grubby paws of the gnolls, cackling and growling at us. All. The. Time. If I weren\'t busy guarding these dunderheads here, I\'d get my bludgeon and teach them a lesson or two myself. But I can\'t. And it makes me mad.$B$BEager to earn some coin? Bash some of their heads in and I\'ll make it worth your while. Bring me their armbands as proof, I don\'t trust anyone\'s word here - and you\'d do the same if you know what\'s best for you.", + ["O"] = "Collect Mudpaw Armbands from Mudpaw Gnolls for Bruiser Yevo at The Water Hole.", + ["T"] = "War On Mudpaw", + }, + [41186] = { + ["D"] = "As long as there is someone leading the heckling dogs over there, my problems won\'t stop anytime soon. From what I could gather, gnoll groups usually operate under the leadership of atleast one alpha that commands his subordinates rather violently. Heh, ironic, isn\'t it?$B$BI want you to get rid of their leading brute. Saw him a couple of times, taunting us. Blasted beast, Grabb Mudhide\'s his name. He usually frequents the cave just past this pond. Cut off his paw, I need a trophy to show my wife in Sparkwater that I\'m not just slacking off on this bleak island.", + ["O"] = "Bring Bruiser Yevo at The Water Hole the paw of Grabb Mudhide.", + ["T"] = "Grabb Mudhide", + }, + [41187] = { + ["D"] = "Oh, by the Sunwell, another caravan? It feels like the very ground beneath us is groaning from the weight of weary travelers. There\'s scarcely enough space to catch one\'s breath, let alone find a place to rest.$B$BPlease, find a small patch of ground, any corner will do, and try to make it yours, at least for now. Unpack your belongings, as meager as they may be. It seems as if we\'re all carrying the weight of shattered lives in our hands.$B$BTake a moment to collect yourself amidst the chaos. And look, there\'s Commander Anarileth, over there, orchestrating what little order we have left. She seems to be in need of capable souls, and by the look of you, resilience marks your spirit.$B$BApproach her when you can, offer your aid. May the Light guide us through these dark times.", + ["O"] = "Report to Commander Anarileth in Brinthilien.", + ["T"] = "Refugees no More", + }, + [41188] = { + ["D"] = "The Regency Council has bestowed upon me the responsibility of providing sustenance and shelter for all those who seek refuge in this land. A task, noble in intent, but one burdened by a stark lack of resources.$B$BThe local boar population is abundant, a potential source of nourishment for our people. However, the reality is harsh—many here lack the necessary equipment or skills to hunt them down. It falls upon shoulders willing and able to bridge this gap.$B$BIf you have the means and the skill, could you gather at least ten young boar flanks for our cause? It would be a tremendous help in easing the hunger that gnaws at the spirits of those who have sought safety here.", + ["O"] = "Bring 10 Young Thalassian Boar Flanks to Commander Anarileth in Brinthillien.", + ["T"] = "Provisions for Refugees", + }, + [41189] = { + ["D"] = "During your foray into the wilderness, I\'m sure you observed the growing threat posed by the lynxes that plague these forests. While they may be a mere nuisance at present, we cannot afford to let their population spiral out of control.$B$BI must task you with a somber duty: venture once more into the woods and cull the young of these lynxes. We cannot permit their numbers to swell, for the safety and well-being of our people depend on maintaining a balance in this newfound home.", + ["O"] = "Slay 12 Young Crimson Lynxes for Commander Anarileth.", + ["T"] = "Safety for Refugees", + }, + [41190] = { + ["D"] = "Hey there! New face, right? Pleasure\'s mine – I\'m Dalicia, but you can just call me Dal! Been part of Alah\'Thalas since its very beginnings, and let me tell you, I\'ve been putting my culinary skills to work around here. I\'m the resident cook, and if I do say so myself, the rations these refugees are getting are downright laughable. Dry meat, and Elwynn\'s rotting grain? Not exactly fit for the Quel\'dorei palate.$B$BNow, here\'s the thing: I\'m itching to whip up my famous goulash, but they\'re not letting me get my hands on the right ingredients. If you could do me a solid and gather some Forest Hawkstrider legs and Lynx steaks, we\'ll have a feast fit for our people in no time! Let\'s turn this drab menu into something worth savoring!", + ["O"] = "Gather 6 Forest Hawkstrider Legs and 8 Lynx Steaks for Dalicia Sweetsilver in Brinthillien.", + ["T"] = "Thalassian Goulash", + }, + [41191] = { + ["D"] = "Hey, you there!$B$B$B$BFor a while now, I\'ve had my eye on that lady over yonder. No need to turn and stare, mind you; subtlety is key. The catch is, she\'s not exactly warming up to my advances. Now, here\'s where you come in—I\'m thinking a beautiful flower crown could work wonders, don\'t you agree?$B$B$B$BEmbarrassingly enough, I\'m not exactly the bravest soul when it comes to venturing into the forest alone. Lynxes, spiders, you name it—I\'ve seen them all, and it gives me the shivers. So, here\'s the deal: If you could gather some flowers for me, I might just stand a chance at winning the heart of that lovely lady. What do you say?", + ["O"] = "Bring ten flowers to Avenant so he can make a crown of flowers for Jolie.", + ["T"] = "A Crown of Flowers", + }, + [41192] = { + ["D"] = "Do you see these... withered husks?$B$B$B$BWe may very well end up like this if the Silver Sun Mine remains unreclaimed. The arcane golems, once loyal laborers, have been struck by some sort of arcane discharge – no doubt the handiwork of those so-called Blood Elves. It\'s driven them mad! The mine is now inaccessible, and we\'ve been severed from the source of those sweet, sweet arcane crystals.$B$B$B$BBut alas, the Regency Council seems more interested in courtly backstabbing than offering any meaningful assistance. So, if you\'ve got the mettle for it, maybe you could clear out the mine of these deranged arcane golems? Payment, of course, will be in clear silver. A fair compensation for a dangerous task.", + ["O"] = "Clear out the Silver Sun Mine by disposing of 8 Malfunctioning Arcane Golems, 6 Defective Arcane Golems and 4 Arcane Pounders.", + ["T"] = "Arcane Golem Revolt", + }, + [41193] = { + ["D"] = "$N, may I borrow a moment of your time? Your past assistance has not gone unnoticed, and there\'s a delicate matter that requires your attention.$B$BIt appears we are not alone in this new refuge. Our scouts have reported the presence of a significant force atop a nearby hill—our former brethren, the so-called blood elves. They are loyal to the traitorous prince, Kael\'thas, and their dependence on dark magic clouds their judgment. They pose a threat to our cause, and their proximity to Brinthilien raises concerns.$B$BI must task you with a challenging mission: seek out and eliminate this group of blood elves. They are led by a man named Veloren Brightstar, a figure whose removal will sow chaos among their ranks. The safety of our community hinges on the success of this mission.", + ["O"] = "Find the blood elf camp and eliminate the threat to Brinthilien. Return to Commander Anarileth once the task is done.", + ["T"] = "A Troubling Presence", + }, + [41194] = { + ["D"] = "I trust this letter finds you in good health. It is with a heavy heart that I bring to your attention a matter of utmost importance. Intelligence has been gathered, suggesting that the dissidents from Alah\'Thalas are in the preparatory stages of a movement against us.$B$BWhile our agents are vigilant within the city, it is imperative that you maintain a watchful eye over the refugees situated in Brinthilien. Exercise utmost caution and restraint, refraining from any provocation or direct confrontation with the individuals in question. $B$BI urge you to remain unseen in your observations, acting with discretion and prudence. Your commitment to this task is crucial in safeguarding the welfare of our people and the integrity of our cause.$B$BWith unwavering trust in your capabilities,$B$BViceroy Eldin Sunstrider.", + ["O"] = "Bring the Feltouched Letter to Commander Anarileth.", + ["T"] = "A Letter from the Royalty", + }, + [41195] = { + ["D"] = "Quickly now, time is of the essence. This missive must find its way to the Regency Council with the swiftness of the wind before circumstances turn dire.$B$B$B$BYet, a caution weighs upon these words. Not every member within the Council is to be held in unquestionable trust. Ensure, with the utmost discretion, that this message reaches Vereesa Windrunner\'s hands exclusively. She alone is to be entrusted with the contents therein.", + ["O"] = "Bring the Feltouched Letter to Lady Vereesa Windrunner in Alah\'Thalas.", + ["T"] = "Message for the Windrunner", + }, + [41196] = { + ["D"] = "I can\'t take it- I can\'t take it anymore! You! YOU! Come here you little-$B$B$B$BNo, no that\'s not me. I\'m sorry. I\'m sorry, please don\'t- you must forgive me, that wasn\'t me, I didn\'t mean it. But I...you see...I haven\'t had my dose of mana in...in...$B$B...how long has it been? I feel like lately time has been standing still and laughing at me. Please, I need you to bring me an arcane crystal from the mines. The golems make it so hard to get them, and there are never enough. It\'s never enough...$B$BPlease. Please hurry. I can\'t...stand it.", + ["O"] = "Fetch a charged arcane crystal from the mines and bring it back to Ranathir.", + ["T"] = "Maddening Hunger", + }, + [41197] = { + ["D"] = "Heading to the city of Alah\'Thalas, are you? If so, I\'ve a task that requires your aid. My companion, Tiriel, has established an inn for the influx of refugees making their way to the city, and, as you can imagine, it\'s teeming with occupants. We\'ve just received a fresh supply package from the Wildhammers, and it would be of immense help if you could deliver it to her. You\'ll find Tiriel\'s inn adjacent to the city entrance, the first building on your left as you pass Anasterian Park.", + ["O"] = "Deliver the Wildhammer Supply Package to Tiriel Brightwater in Alah\'Thalas.", + ["T"] = "Delivery to Alah\'Thalas", + }, + [41198] = { + ["D"] = "Who is there? Hello?! I cannot see you - but I know you\'re there. Please, whoever you are, help me! There is so much pain, I cannot bear it, it feels like I am being torn asunder every moment of my existence. Countless dark shadows scurry around the houses, pulling and tearing at me. It is like I am at multiple places at once, and my very being wanes at the pressure.$B$BStranger, I beg of you, find the pieces missing from me! They are moving... at different places! End my torture by all that is holy!", + ["O"] = "Find the pieces of Miriam Lenheim\'s body. Bring them to her on the Forlorn Summit.", + ["T"] = "Torn Soul", + }, + [41199] = { + ["D"] = "Before we part ways, there is one thing still gnawing at my consciousness. With my body mine once more, memories of my last moments rush back to me. Darkness had hidden among us and showed itself once the protectors of the Light left.$B$BWhile most of Uther Lightbringer\'s men followed him to fight against the Scourge elsewhere, one valiant paladin remained to defend the innocent. As we were forced to retreat into the mine, he stood his ground as long as he could, but alas, his unwavering devotion to the light was not enough against the hordes of undead thrown at him.$B$BI cannot remember his name, yet I feel indebted to his sacrifice, even if it may have been fruitless in the end. Should you find traces of him inside the mine, take them out of this accursed place. That is all I wish for.", + ["O"] = "Search The Widow\'s Nest on the Forlorn Summit for anything related to Miriam\'s defender. Perhaps you can find clues on his identity.", + ["T"] = "Vigilant Last Defender", + }, + [41200] = { + ["D"] = "One would hope the scum of Azeroth would keep to themselves in their lightforsaken depths. Yet their disregard for morality and lust for power drives them to spread chaos. The Cult of the Damned is no different. Founded by the Lich King\'s majordomo, the Archlich Kel\'Thuzad, it is the reason these lands are the way they are now. By spreading the Plague of Undeath at the dawn of the Third War, they made clear that their souls are pitchblack and devoid of light. Making a mockery out of the sanctity of life is a crime deserving of the swiftest and most severe punishment.$B$BAre you the one to meet out justice? If so, lend me your strength against them.$B$BHigh atop the mountains, past the Plaguewood to the west, lies the Forlorn Summit. Seek comrades and vanquish their leaders. Purge them from the face of Azeroth.", + ["O"] = "Defeat the leaders of the Forlorn Summit near Terrordale. Report to Lord Maxwell Tyrosus once justice has been dealt.", + ["T"] = "The Wrath Of The Light Fall Upon Thee", + }, + [41201] = { + ["D"] = "Oh, oho! $n, perfect timing, I was just thinking about you, my all-so beloved warlock partner! I heard you\'ve been turning Blackstone upside down with all the issues you solved for the hothead up on his tower. Not that I mind, keeps my back free to pursue more interesting… ventures. $B$BSpeaking of interesting - I believe you are more than ready for your second summoning spell. A dangerous invocation, one that many young warlocks fell victim too. The required materials I\'d need to teach it to you are sadly not here on Blackstone, but Gan\'rul Bloodeye in Orgrimmar can provide the necessary components for your training.$B$BSend my regards to him, he still owes me a sack of reagents. He usually spends his time in the Cleft of Shadow in the center of the capital.", + ["O"] = "Talk to Gan\'rul Bloodeye in Orgrimmar.", + ["T"] = "Dabbling In Darkness", + }, + [41202] = { + ["D"] = "Hey there kid, I\'ve been hearin\' good things about you. Word around the streets of Rustgate is that you\'ve learned to handle yourself. By handle yourself, I mean dish out a mean beating to anything that gets in your way. I like that, it\'s called moxy, and you seem -full- of it. I got a job for you, one to teach you all about our job as the real bruisers of the goblin workforce, you dig?$B$BTo the northeast the Mudpaw Gnolls have put up a real fight against our work here, and have even kicked us out of our worksites. Now this seems like a chance to test you against the meanest and most rabid of their kind. The Mudpaw Brutes are the strongest of their kin, and are often known for wielding those mighty hammers that they\'ve been killing goblins with. Turn the tables on them, and give them a real beatin\'. Bring me six Mudpaw Hammers, and I shall give you a reward. Not bad, huh?", + ["O"] = "Gather 6 Mudpaw Hammers from the Mudpaw Brutes to the northeast and return to Grizzie the Enforcer at Rustgate Ridge on Blackstone Island.", + ["T"] = "A Lesson In Bruisin\'", + }, + [41203] = { + ["D"] = "While you were getting your hands dirty, I got this letter from Rustgate Ridge. It\'s from Mayten Boomrifle, he\'s instructing the especially triggerhappy around here. You can get to Rustgate Ridge just to the east of here, up the hill. Follow the road and you\'ll find it. Take the letter and talk to him once you have the time. Hah, what am I saying - as if you\'d ever have time. Now get back to work!", + ["O"] = "Bring the Ashcovered Letter to Grizzie the Enforcer at Rustgate Ridge just up the hill to the east.", + ["T"] = "Ashcovered Letter", + }, + [41204] = { + ["D"] = "While you were getting your hands dirty, I got this letter from Rustgate Ridge. It\'s from Wizette, she\'s instructing our more mentally talented workers around here. Take the letter and talk to her once you have the time. Hah, what am I saying - as if you\'d ever have time. Now get back to work!", + ["O"] = "Bring the Glyphcovered Letter to Wizette Icewhistle at Rustgate Ridge just up to the hill to the east.", + ["T"] = "Glyphcovered Letter", + }, + [41205] = { + ["D"] = "While you were getting your hands dirty, I got this letter from Rustgate Ridge. It\'s from Mayten Boomrifle, he\'s instructing the especially triggerhappy around here. You can get to Rustgate Ridge just to the east of here, up the hill. Follow the road and you\'ll find it. Take the letter and talk to him once you have the time. Hah, what am I saying - as if you\'d ever have time. Now get back to work!", + ["O"] = "Bring the Mudcovered Letter to Mayten Boomrifle at Rustgate Ridge.", + ["T"] = "Mudcovered Letter", + }, + [41206] = { + ["D"] = "While you were getting your hands dirty, I got this letter from Rustgate Ridge. It’s from Leyli, she’s - I’m not even sure what this woman does, but she is probably interested in your abilites. Take the letter and talk to her once you have the time. Hah, what am I saying - as if you’d ever have time. Now get back to work!", + ["O"] = "Bring the Black Letter to Leyli Quicktongue at Rustgate Ridge.", + ["T"] = "Black Letter", + }, + [41207] = { + ["D"] = "While you were getting your hands dirty, I got this letter from Rustgate Ridge. It\'s from Amri, she\'s dabbling in more dubious arts, just like you. Take the letter and talk to her once you have the time. Hah, what am I saying - as if you\'d ever have time. Now get back to work!", + ["O"] = "Bring the Singed Letter to Amri Demondeal at Rustgate Ridge.", + ["T"] = "Singed Letter", + }, + [41208] = { + ["D"] = "Oh hey, coming back I see? Ready to learn more? Your progress is astounding, and I\'d reckon you might be capable of your first summoning spell. However, before I teach you, care to do me a favor? You help me, I help you. Easy concept, really.$B$BDown south along the bay are makrura, some more hostile than the others. Not many know, but their hearts possess great strengths for how simple they are. The more aggressive they are, the more potency their hearts offer.$B$BBring me six of their beating hearts and you will soon be able to summon your own personal minion.", + ["O"] = "Return with 6 Beating Makrura Hearts to Amri Demondeal at Rustgate Ridge.", + ["T"] = "A Lesson To Take To Heart", + }, + [41209] = { + ["D"] = "The Venture Company has been very active in Stonetalon. Eroding the natural beauty, and spreading the marks of industry wherever it is that they go. One such location of their exploitation was that of Broken Cliff Mine just to the southeast of here, nestled just west of the pathway up to Stonetalon Peak.$B$BMy sources have told me that it has been overrun by the Deepmoss spiders who have run off and consumed most of the workers there. Nature itself is not to be underestimated, and yet those greedy goblins continue to do so.$B$BI need you to travel to Broken Cliff Mine, and scour the campsites there to find any documents of their plans. Perhaps we can be one step ahead of them next time.", + ["O"] = "Scour the Broken Cliff Mine and locate any documents for Dalanas Swiftfeather at Stonetalon Peak in Stonetalon Mountains.", + ["T"] = "Broken Cliff Inspection", + }, + [41210] = { + ["D"] = "Why hello there kid, did you know that the Durotar Labor Union started out here in Stonetalon Mountains? Nert Blastentom himself used to work for the Venture Company, only to up and leave.$B$BWhile that makes for a good story it doesn\'t help the fact that Stonetalon itself has become a large hotbed of Venture Co. activity. They\'ve even begun to investigate what exactly happened in that little valley where it all kicked off. The Durotar Labor Union needs to cover our tracks as best as we can and that requires some mercenary work to ensure they don\'t figure anything out. Travel to the Venture Camp just northeast of Powder Town. Leave Powder Town eastward, and then continue north until you find the pathway that heads through the mountains there. Once you\'re there, slay them, and recover Venture Company Evidence, then return to me, simple.", + ["O"] = "Recover the Venture Company Evidence from the Venture Camp to the northeast of Powder Town and return to Galmo Tazzwrench in Stonetalon Mountains.", + ["T"] = "Durotar Labor Beginnings", + }, + [41211] = { + ["D"] = "We have received notice from Orgrimmar. The Warchief wishes to use the abandoned mine just before Stonetalon Peak for additional resources that the Horde is in dire need of. Ever since its desolation after the Third War it was used by the Venture Company to mine from, but now the aggressive Deepmoss spiders have taken residence in the mine\'s old tunnels. The Horde cannot reliably gather resources with the mine suffering from infestation.$B$B$n, do your part for the Horde\'s prosperity and cleanse the Broken Cliff Mine of the eight-legged pests. You can find the mine by turning west on the ascension to Stonetalon Peak.", + ["O"] = "Cull the Deepmoss population within and around the Broken Cliff Mine and return to Maggran Earthbinder in Sun Rock Retreat.", + ["T"] = "Pest Control", + }, + [41212] = { + ["D"] = "If what Faldan said is true - and I trust his words - then this whole ordeal goes further than my initial assumption. While I am sure the Venture Co.\'s violations against nature might not have been the catalyst for the spider\'s change in behaviour, they surely played a vital role in accelerating it. However, to verify this presumption, we need to gather more samples and ultimately, more evidence.$B$BMy brethren on top of Stonetalon Peak report of increasing hostility by the local spiders calling the Broken Cliff Mine their home. From what I can deduct, this is all too similar to what can be observed in the Windshear Crag.$B$B$n, please aid me again by bringing me the spiders\' brains, more this time, eight samples shall be enough. I dare not think of the true reason behind it all - and frankly, I wish to be proven wrong. You can find the mine by turning westwards just before you reach Stonetalon Peak.", + ["O"] = "Collect 8 Deepmoss Lurker Brains for Maloran Oakbranch at Bael Hardul in Stonetalon Mountains", + ["T"] = "Digging Deeper", + }, + [41213] = { + ["D"] = "Hey, you there, lookin for some coin?$B$BI got a big important job that I need done and need done quick. The Venture Company has continued its expansion in Stonetalon, adding even more of its goons and lackeys to the war on resources. With every pair of boots that they put on the ground we lose influence!$B$BJust to the northeast of here is a little place called the Venture Camp, and its now the hub of some new operation for cutting wood. Led by a well reknowned and cruel overseer named Fazwick Longfuse, and if you come from Kezan his name should resonate well.$B$BIf Powder Town is to survive we must push them out of the Stonetalon Mountains for good, and send a message to not come back! Find that Venture Camp, and kill that Fazwick Longfuse, along with any goons that stand in your way, got it?", + ["O"] = "Gather 15 Venture Company Armbands and slay Overseer Fazwick Longfuse near the Venture Camp for Security Officer Mort Tozzlefume at Powder Town in Stonetalon Mountains.", + ["T"] = "Venture Co. Expansion", + }, + [41214] = { + ["D"] = "These lands echo the beauty of Quel\'Thalas, yet within the similarities lies an intriguing divergence. Presently, I find myself engrossed in the study of the treants that grace this realm. Though they possess a semblance of familiarity, there\'s a peculiar quality about them that eludes my understanding.$B$BIf, by any chance, you could procure a primal heart from one of these beings, it would significantly propel my research. I\'m not particularly skilled in combat, and the guards have thwarted my attempts to get too close. However, I believe they won\'t pose the same hindrance to you. What say you?", + ["O"] = "Acquire a Thalasian Primal Heart from Thalassian Treants for Calhir Dawnchaser in Anasterian Park.", + ["T"] = "Peculiar Treants", + }, + [41215] = { + ["D"] = "To the west, there lies the Island of Eternal Autumn—a nearly forgotten legend among our people. Millennia ago, in the earliest days of our arrival on these shores, there were those among us who endeavored to plant a new World Tree. Alas, the endeavor failed, and the cursed tree wrought a transformative spell upon the entire land, condemning it to an eternal autumn. Neither able to perish nor truly flourish, the island became a testament to a past ambition gone awry.$B$BI ask you to embark upon a journey to this mystic isle and procure a primal heart from the treants that now inhabit it. Your efforts will not go unrewarded.", + ["O"] = "Acquire a Thalasian Primal Heart from Autumnal Treants for Calhir Dawnchaser in Anasterian Park.", + ["T"] = "Whispers of Autumn", + }, + [41216] = { + ["D"] = "Welcome to Thaumarium. Within these walls, my enchanting wife crafts the finest wines to grace the Thalassian Highlands. We\'ve bestowed upon this haven the same name as our erstwhile winery in Quel\'Thalas, harboring eager anticipation for the prosperity of our venture.$B$BHowever, a quandary befalls us. Our aspirations lead us to cultivate a vineyard in the hills southeast of this sanctuary. The microclimate there is exceptionally conducive to grape cultivation. Alas, these very hills are plagued by a savage breed of lynx, making it impossible for our workers to toil the soil in peace. I implore you to eliminate as many of these creatures as you can and return with their furs as tangible proof of their demise. Your assistance shall not go unrewarded.", + ["O"] = "Bring 10 Bright Lynx Furs to Maelor Steelguard in the Thaumarium.", + ["T"] = "The Highland Menace", + }, + [41217] = { + ["D"] = "I must burden you with one more request, $N. A few weeks past, as I scoured the hills in search of ideal spots for grape cultivation, I fell victim to a lynx of unparalleled ferocity. In the ensuing struggle, the creature overpowered me, leaving me grievously wounded, my eye forever lost.$B$BA personal vendetta now brews within me against this formidable adversary. Vanquish the beast and retrieve its fang as evidence. I will easily recognize it; the fangs were larger than any I have ever seen.", + ["O"] = "Bring 1 Fang of Shar\'Lan to Maelor Steelguard as a proof of your deed.", + ["T"] = "A Score To Settle", + }, + [41218] = { + ["D"] = "Greetings, friend. Have you come to savor our renowned wines? Regrettably, due to the incessant lynx attacks, grape cultivation in the hills had to be halted, leaving us with naught.$B$BYet, I harbor optimism that amidst the chaos, our workers may have left behind buckets still brimming with grapes in the hills southeast of this abode. They might be a tad fermented by now, but isn\'t the essence of winemaking in embracing such nuances? If you could retrieve even ten buckets, I could conjure up some wine for prospective patrons! Your assistance would be invaluable.", + ["O"] = "Bring 10 Buckets of Grapes to Fainriel Silverharp in the Thaumarium.", + ["T"] = "Grapes in the Hills", + }, + [41219] = { + ["D"] = "As members of The Silver Covenant, our mission is clear – to cleanse these lands of any perils that endanger the refugees seeking sanctuary. Among these threats, the burgeoning population of Mana Wyrms poses a significant concern. Their numbers surge as they feed off the mana employed in their vicinity, unsettling the balance we seek.$B$BI task you with culling their numbers and bringing me ten Mana Wyrm eyes as evidence of their demise. Not only will this act bring peace to these lands, but the collected eyes will also serve as catalysts to charge more mana crystals, addressing two issues in a singular endeavor.", + ["O"] = "Bring 10 Mana Wyrm Eyes to Commander Braedin in Silver Covenant Camp.", + ["T"] = "Wyrms of the Highlands", + }, + [41220] = { + ["D"] = "Welcome to Ballador\'s Chapel, a haven for those who seek solace in the Light during these challenging times. Even in the absence of the Sunwell, its radiance continues to grace us from the heavens.$B$BMight I impose upon you for a small favor, dear friend? In our efforts to host a feast for the impoverished of Quel\'Thalas, we find ourselves in need of additional sustenance. While the noble families have generously contributed, there remains a shortage of food.$B$BI\'ve been informed by the rangers that Stallhorn Stag meat is particularly delectable, and personally, I have a penchant for the taste of Crimson Hawkstrider wings. If you could procure a dozen of each, we shall orchestrate a feast that will be remembered for ages.", + ["O"] = "Bring 12 Chunks of Stallhorn Meat and 12 Crimson Hawkstrider Wings to Taliren in Ballador\'s Chapel.", + ["T"] = "A Feast for the Poor", + }, + [41221] = { + ["D"] = "No! I cannot allow such injustice to persist!$B$B$C, we must not silently endure this affront to our people. The nobles indulge in opulent feasts, savoring lavish meats and exotic fruits, while the common folk languish, starving and withering away on the streets.$B$BI am confined within the chapel, unable to confront Lord Astalor myself, but I implore you. Take this letter to that despot Astalor. I harbor doubts that it will sway his heart, but he must be made aware of the sentiments burning within me.", + ["O"] = "Bring Liadrin\'s letter to Astalor Sunsworn. You can find him in the mansion in northern Alah\'Thalas.", + ["T"] = "Liadrin\'s Plea", + }, + [41222] = { + ["D"] = "Reiterate to her every word you\'ve heard from me.$B$BMy resources are mine to wield as I see fit, and in this moment, they serve to influence those whose opinions truly matter. The throne shall be mine, and under my rule, our people will flourish.$B$BCertainly, I could distribute these resources to the poor. But to what end? The very next day, they would find themselves in need once again. We must establish a solid infrastructure to sustain them—farms, vineyards, proper hunting grounds. Simply providing daily sustenance accomplishes nothing. Rest assured, with the crown in my possession, ensuring the welfare of the Quel\'dorei will be my foremost priority. However, if some must perish before that vision is realized... well, that\'s regrettable.$B$BNow, be on your way, and ensure Liadrin hears every bit of it.", + ["O"] = "Repeat the words of Astalor Sunsworn to Liadrin in Ballador\'s Chapel.", + ["T"] = "Sunsworn Response", + }, + [41223] = { + ["D"] = "Oh, what a calamity! I was organizing a splendid gathering in Anasterian Park, complete with wine, snacks, and all the trimmings. Suddenly, a horde of dreadful creatures materialized, and I had to flee for my life!$B$BI managed to survive, but alas, all my party supplies were lost in the chaos. Now, I\'m too frightened to venture deep into the park again. Would you be so kind as to recover them for me? I yearn to host my party right here.", + ["O"] = "Recover party supplies for Relaina Whiteshore.", + ["T"] = "Party Like There\'s No Tomorrow", + }, + [41224] = { + ["D"] = "I lost everything when Arthas came—my wealth, my influence, my home. However, amidst the ruins, I discovered something new: love. If not for Lin and her unwavering support, I\'m uncertain how I would have coped with this disaster.$B$BI wish to express my gratitude to her, but I\'m at a loss on how to do so. I\'ve never excelled in matters of sentiment. It might sound peculiar, but perhaps a fox fur would complement her beautiful hair. I\'ve heard that foxes inhabit the Autumn Isle to the west. If you could obtain their fur and bring it to Vanudal Goldweaver, he could craft a stunning stole...", + ["O"] = "Bring a Fox Fur to Vanudal Goldwever in Alah\'Thalas.", + ["T"] = "Love, No Matter What", + }, + [41225] = { + ["D"] = "I never thought he\'d become so sentimental! Back in Silvermoon, he was the toughest guy on the streets. But it\'s a pleasant surprise. I\'m genuinely happy he found her.$B$B$B$BHere you go. It\'s as good as I could make it with the materials on hand. Perhaps with some golden threads, it could be even more exquisite, but I assume you\'re not ready for a journey to the Ruins of Silvermoon, are you? Please convey to Kaelin that he owes me a bottle of Dalaran Red!", + ["O"] = "Present the stole to Kaelin Bladesong.", + ["T"] = "Kaelin\'s Gift", + }, + [41226] = { + ["D"] = "Your eagerness and talent are both admirable, mage. However, I must caution you. With the Sunwell lost, the use of your arcane arts may turn against you.$B$BLuckily, there is someone who can help you with this. Ala\'shor, a powerful arcanist, has sent a letter offering his aid. He is someone you should definitely pay a visit to.", + ["O"] = "Speak to Ala\'shor Frostfire in Brinthillien.", + ["T"] = "Magically Sealed Letter", + }, + [41227] = { + ["D"] = "It appears that you have joined our allies in taking up arms. You\'ve become quite the devoted soldier of the Light, have you not?$B$BIt is my hope that in your newfound faith, you will be able to manage the restraints that have so easily hindered many of our kin. Even in the face of the Eternal Sun, we were guided by the Light. A soldier of your ilk has requested your attention. Lor\'thas has asked me to present to you this letter.", + ["O"] = "Speak to Lor\'thas in Brinthillien.", + ["T"] = "Elegant Letter", + }, + [41228] = { + ["D"] = "You have the brightest Light of grace and mercy radiating around your head. You are not unlike others who have ventured down the path of healing and nurturing our people.$B$BYou have earned my deepest respect and admiration, priest. Regardless of your youthful beginning, I feel honored in your presence, much like I would around our other more experienced priest, Lady Silversun. She has entrusted me with the task of delivering this letter to you. Her grace and wisdom would undoubtedly be an aid in the trying times we face.", + ["O"] = "Speak to Maelah Sunsworn in Brinthillien.", + ["T"] = "Blessed Elegant Letter", + }, + [41229] = { + ["D"] = "Your agility and skill are impressive. I\'m unsure whether to admire or be cautious of you. No offense intended.$B$BYour line of work is irrelevant to our goal of reclaiming our homeland. What matters is your ability to make the most of any situation. But enough of my words, someone seeks you. This letter, delivered by a child, bears no sender\'s name. As I respect privacy and never snoop around in mail, I shall deliver it to you.", + ["O"] = "Speak to Leela the Shadow in Brinthillien.", + ["T"] = "Shady Letter", + }, + [41230] = { + ["D"] = "I sense anger burning inside you. Your arms tremble and shake, but not in fear, rather at the rage you are attempting to restrain. Such moments are when we should place our hope in warriors such as yourself, ones undaunted despite adversity.$B$BYou who have not benefitted from the arcane, never even dreamed of wielding a weapon before the fall of Quel\'Thalas. You who had nothing and still lost everything. That fire in your eyes reminds me of Valanos\', the one who instructed me to provide you with this letter.", + ["O"] = "Speak to Valanos Dawnfire in Brinthillien.", + ["T"] = "Plain Letter", + }, + [41231] = { + ["D"] = "Are you seeking to become an esteemed and honorable ranger? Your bearing with the bow is remarkable, quite frankly almost rivaling the honor of becoming an acclaimed and renowned arcanist.$B$BIt is unfortunate that many of our rangers have perished alongside our homeland. Yet, similar to yourself, there exists another here who wants to emulate their footsteps. Take wisdom from her experience, and perhaps both you and her shall become the stepping stones for future generations.", + ["O"] = "Speak to Rubinah Longstrider in Brinthillien.", + ["T"] = "Feathered Letter", + }, + [41232] = { + ["D"] = "We have allowed this poor soul to rest at the roots of the Sleeping Tree. While it will not heal them, it will stop the effects of withering, at least for now. As guardians of these lands, all life here is valuable and must be nurtured by us.$B$BHowever, you were not sent here to learn of our values. I know what the Highborne wants, and while I am not sure it will work, my sisters and I will do our best to aid. Gather a few leaves from the bushes and the heart of a hawkstrider. It pains me to have you send and do this, but sometimes, to receive something, you must offer something in return.", + ["O"] = "Gather the necessary ingredients for Rine.", + ["T"] = "To Find the Heart", + }, + [41233] = { + ["D"] = "You will find what you seek underwater, in the ruins not so far from here; it is there that the heart lays dormant. I hope you will find it, and I hope it will help you achieve your goal.$B$B$B$BLong have you struggled, I see it in your eyes. Remember also to find rest, child. If you seek a glimpse of comfort, return to us. You will find none better than at the roots of the Sleeping Tree.$B$BAfter your task is done, return to Viz\'neya; she will know what is to be done.", + ["O"] = "Retrieve the Mana Core.", + ["T"] = "Where Is Your Heart?", + }, + [41234] = { + ["D"] = "Now that you have the core all that you need to do is return to Ordenal and he will know exactly what needs to be done. This is the core of an Ancient, one that has not been seen in a long time. I bet even Ordenal will be awed as you give him the core.$B$BWith the Ancient being brought back to life and being around the city of Alah\'Thalas it will help the Quel\'dorei with their meditation. This is once again, not a permanent solution. Regardless, it is the best we have.", + ["O"] = "Awaken the Ancient of Arcane.", + ["T"] = "To Raise An Ancient", + }, + [41235] = { + ["D"] = "This is truly marvelous, beyond any expectation. I had no idea what that Highborne had up her sleeve, but by Elune, to stand before an Ancient that hasn\'t been seen in millennia...$B$BWord of this must reach the Archdruid! Please, understand. The Ancients are highly revered in the Kaldorei culture, and this will certainly aid me in helping the Quel\'dorei. May you reach Darnassus well; I know the Archdruid will see fit to reward you.", + ["O"] = "Seek Fandral Staghelm in Darnassus.", + ["T"] = "To Staghelm", + }, + [41236] = { + ["D"] = "I would spare you the intricacies of Quel\'dorei politics. Nevertheless, it is imperative that you are informed. Our once-united nation has fractured into smaller factions, engaged in a regrettable bickering over influence and power. Witnessing this discord within our own ranks pains my heart, but it is a tempest we must weather.$B$B$B$BHowever, amidst this turmoil, there are those loyal to the broader vision. They have rallied beneath the banner of the Silver Covenant, their camp positioned beyond the city to the west. I implore you to venture there and seek out Commander Braedin, my esteemed right hand. He has been diligently investigating the matter, and your assistance will be met with gratitude.", + ["O"] = "Find Commander Braedin in the Silver Covenant Camp.", + ["T"] = "The Silver Covenant", + }, + [41237] = { + ["D"] = "Our... former brethren have fortified themselves in the mountain fortress of Felstrider Retreat. They\'ve been here even before we arrived to settle these lands, and I suspect they may be remnants of Kael\'s forces that did not sail to Northrend. Up until now, they haven\'t caused much trouble, and quite embarrassingly, we\'ve been overlooking their presence. However, if what you say is true, they must be plotting something.$B$BI need you to find evidence of their plot. Perhaps one of their soldiers carries orders that could shed more light on the matter. May the Light guide you, friend.", + ["O"] = "Find proof of the Blood Elf plot in Felstrider Retreat.", + ["T"] = "Felstrider Retreat", + }, + [41238] = { + ["D"] = "Make haste, hunter! You may still have time to stop Rommath\'s scheme. Go with the wind, and let no one know about this, but Lady Vereesa! The fate of our kin is in your hands.", + ["O"] = "Report your findings to Vereesa Windrunner.", + ["T"] = "Back to Lady Windrunner", + }, + [41239] = { + ["D"] = "With the current situation in the Regency Council, my hands are bound. No one but Lor\'themar would believe me, even with the letter in our possession. They would undoubtedly perceive my actions as an attempt to usurp the title.$B$BHowever, all is not lost. If you can convince Rommath that you are, indeed, a delegation from Felstrider Retreat, he may inadvertently reveal more about his plans. The letter is exceedingly vague, and this approach may unveil additional details. Go, but exercise caution to avoid exposing your true identity. Rommath is unpredictable, and he could dispose of you in the blink of an eye.$B$BHe is on the top of the tower.", + ["O"] = "Report to Grand Magister Rommath. He can be found on the top of the Regency Tower.", + ["T"] = "Rommath, the Traitor", + }, + [41240] = { + ["D"] = "I will now open a portal to Outland. Brace yourself. You might feel a slight pull, try not to fall down.", + ["O"] = "Listen to the conversation between Grand Magister Rommath and Kael\'thas.", + ["T"] = "An Audience with the Prince", + }, + [41241] = { + ["D"] = "Are you here to perhaps lay eyes upon the undeniable future, or is it mere innocent curiosity? Maybe you\'re here to spit in our face as those who cast us aside in the muck and the rubble. Blessed be the sun, you wouldn\'t be here to take pity on our wretched souls, would you?$B$BYour pity we\'ll do without. However, you might prove useful. We require a task, one for such an eager ally as yourself. You wouldn\'t mind repurposing a few misplaced arcane crystals, would you? Our noble kin in the city, with their arrogance, leave them all around Alah\'Thalas. I doubt they\'d realize a handful went missing.", + ["O"] = "Retrieve 7 Arcane Crystals from around Alah\'Thalas and return them to Ka\'zmir Somberwind in the Wretched Ghetto.", + ["T"] = "All Around Alah\'Thalas", + }, + [41242] = { + ["D"] = "Our people sought refuge in the South. While the Dwarves sheltered our caravans, the Humans welcomed us into their newly conceived Alliance. Along with it, we attained the allegiance of the so-called Kaldorei. Despite our differences, it seems that our people share some commonalities.$B$BThough not all welcomed our utilization of magic, the addiction it induces, and the casualties it begets — of which you already see in our afflicted — some were willing to assist. Among them is a Druid residing beyond our ghetto, a person named Ordenal Owlmane. He dwells underneath a tree resembling the outlines of two mighty beasts. He speaks of our redemption through the power of the Dream and the Moon. If you truly believe our race holds any chance of survival, pay him a visit.", + ["O"] = "Speak to Ordenal Owlmane just outside of the Wretched Ghetto.", + ["T"] = "They Came From the West", + }, + [41243] = { + ["D"] = "Greetings, child of the Sun. I am Ordenal, a druid sworn to the Dream. A terrible fate has befallen the Quel\'dorei, reminding me of the ancient kingdom of the Kaldorei and the Highborne who relied upon the Well of Eternity. When it was lost, my people retreated to the World Tree.$B$BThe Highborne yet survive, though in scant number, and most have fallen to other corruptions to sate their hunger. Such a fate I do not desire for the people here. I would be most grateful for your assistance in testing a theory of mine. I have a few vials of Moonwell water. Would you be so kind as to offer them to the Wretched, and see if, by any chance, it could alleviate their suffering, if only briefly?", + ["O"] = "Offer Moonwell Water to the residents of the Wretched Ghetto.", + ["T"] = "A Thirst of Hope", + }, + [41244] = { + ["D"] = "Fear not, friend. Though my hopes were dashed, I have another task for you.$B$BPreviously, I made mention of the Highborne. To my amazement, it appears that one of them resides in a small tower on the Isle of Eternal Autumn, located northwest of here. It may be wise to seek her counsel, for she may possess knowledge vital to the salvation of all Quel\'dorei.", + ["O"] = "Find Viz\'neya Firefly on the Isle of Eternal Autumn.", + ["T"] = "A Highborne Among the High Elves", + }, + [41245] = { + ["D"] = "Must every land and shore be infested by these ridiculous abominations? There has not been one task, not one task without having to stare upon their filth. These dreaded murlocs are never a good sign. For where there are murlocs, soon the naga will follow.$B$BRid the Farstride of their filth and return to me, for I have better-suited tasks for you. Elune be praised. I can no longer endure the sight of them.", + ["O"] = "Slay the Farstride Murlocs all along the Farstride.", + ["T"] = "All Along the Farstride", + }, + [41246] = { + ["D"] = "There is something that does not allow the spirits of the fallen to rest in these forests. I have my concerns and I truly do not wish for them to be true. Before that, as I am not to leave my station here, I will ask you to bring peace to these restless souls.$B$BBe not afraid, for they can be slain, and if by any chance they resemble someone you know, look away. It is wrong for them to be here and they must return to the cradle of the world beyond.", + ["O"] = "Slay the restless spirits of the Isle of Eternal Autumn.", + ["T"] = "Restless Autumn", + }, + [41247] = { + ["D"] = "You found a signet with initials on it amongst the ashes of one of the spirits? How interesting. Theron, Theron, I seem to remember this name from somewhere but I am not quite sure.$B$B$B$BIt was one of the council members, I believe his name was Lor\'themar Theron. Perhaps this holds some emotional value or a family history. Not for us to judge, but you could seek him and return it. You might get a reward.", + ["O"] = "Bring your report to Lor\'themar Theron.", + ["T"] = "The House of Theron", + }, + [41248] = { + ["D"] = "While you were away, my suspicions have been validated. There is a sundered ruin nearby where the naga seem to be conducting a ritual. This not only disrupts the peace of these lands but may lead to far graver consequences.$B$BBefore you journey into the ruins to confront their leaders, you must be prepared. The naga are formidable underwater foes, and you\'ll need a means to survive beneath the surface. I carry water-breathing potions, but their efficacy has been compromised due to the peculiar aura of this isle.$B$BI possess some knowledge of alchemy and can rectify the issue, but I require naga scales to do so. Bring them to me, and I shall provide you with these potions. However, exercise caution and avoid delving too deeply into the waters.", + ["O"] = "Bring 9 Reefscale Naga Scales to Sira Moonwarden.", + ["T"] = "Naga All Along", + }, + [41249] = { + ["D"] = "Some of the Naga have the ability to call upon the tides, submerging entire regions. If they\'re performing such a ritual, our fate may be sealed. I implore you to steel your resolve and ready your sea legs, for you are the one destined to thwart their plans.$B$BThe Naga function under a strict hierarchy. If you can eliminate their leaders, their forces will scatter and retreat to the depths of Nazjatar. Ensure the demise of their commanders, but it wouldn\'t hurt to dispatch a few of their sunderers as well. Just for the thrill of it.$B$B", + ["O"] = "Slay the leaders of the Reefscale and 8 Reefscale Sunderers for Sira Moonwarden.", + ["T"] = "Leaders of the Reefscale", + }, + [41250] = { + ["D"] = "I am quite pleased to be offered aid. Truthfully, I am here to help the Quel\'dorei find ways to quell their torment. While I have been teaching many of them to meditate and try to limit their use of the Arcane, it is not a permanent solution. Some become Withered faster than others.$B$BSince I am not allowed to leave my abode, as my guardian—or jailer—would not let me go, I would ask you to go to the Sleeping Tree right in the middle of the island. It is there that you will find Rine, a Sister of Autumn, one I encountered while meddling about. The last time I was there, we had left one who was slowly turning into a withered to rest inside.", + ["O"] = "Seek Rine at the Sleeping Tree.", + ["T"] = "Seek the Dryads", + }, + [41251] = { + ["D"] = "Go now, to Felstrider Retreat. Ensure that Eldin is informed, and him alone.$B$BDo not divulge the details of our conversation to anyone.$B$BBest of luck to you, traveler. May the Eternal Sun shine on us once again.", + ["O"] = "Tell Vereesa Windrunner what you have seen.", + ["T"] = "Rommath, the Saviour", + }, + [41252] = { + ["D"] = "Ah, an adventurer...$B$B$B$BThere is a delicate matter at hand, and I require assistance in a manner that leaves no trace leading back to me. I\'ve recently discovered that one of the distant cousins to the traitorous Prince Kael\'thas still lives and commands the forces of Felstrider Retreat.$B$BAs you can undoubtedly surmise, having a Sunstrider alive poses a considerable issue, as many may perceive his claim to the throne as legitimate. I require him eliminated. Assemble a formidable party, dispatch him, and dispose of his body in a lake.$B$BOnce the grim task is accomplished, present his signet as proof to Melathe Shadesong. Ensure that no one discovers it was I who... suggested this undertaking.", + ["O"] = "Slay Eldin Sunstrider and bring his signet to Melanthe Shadesong. She can usually be found by the auction house.", + ["T"] = "Kingsbane", + }, + [41253] = { + ["D"] = "Greetings. I am Leshandra Fintri, and my research delves into the more... unconventional methods of satiating our arcane addiction.$B$BTo the southwest lies a Blood Elf fortress. Blood Elves, notorious for handling their addiction differently than us, employ a distinct type of magic to quench their thirst. My endeavor is to glean more insights, but regrettably, the Regency Council opposes my research. If you could venture there and retrieve some Fel Crystals, I would compensate you generously for your efforts.", + ["O"] = "Retrieve 10 Fel Crystals from Felstrider Retreat for Leshandra Fintri in Alah\'Thalas.", + ["T"] = "The Way of Fel", + }, + [41254] = { + ["D"] = "Have you ventured to the Farstride recently?$B$BIt\'s a stunning beach, marred only by the presence of murlocs and other nefarious creatures. Among them, none are as troublesome as the Deepmurk. These murlocs, hailing from the darkest depths of the sea, inexplicably decided to leave their aquatic abode and take residence in a cave on the Farstride. Their relentless attacks on our rangers and fishermen have rendered this magnificent stretch of land entirely uninhabitable.$B$BIf you could cull their population, you shall be duly rewarded.", + ["O"] = "Cull the population of Deepmurk murlocs for Nirenia Swiftsun.", + ["T"] = "Deepmurk Darkness", + }, + [41255] = { + ["D"] = "A moment of your time?$B$BI\'m the dockmaster here, for the lack of a better word. As you can probably imagine, there\'s a lot of movement to our newfound home, and we receive a lot of supplies from our steadfast allies.$B$BHowever, one of the ships that was due to arrive a few days ago has been lost. I fear the worst, especially with the talk of naga along the shore.$B$BThe shipment was very important, so I would pay you handsomely if you could go to the Farstride and search for it. There is a possibility that what was left of it was stolen by the Deepmurk murlocs, if so, they probably took the supplies to their lair.", + ["O"] = "Retrieve the shipment for Saelyn Seastrider. Deepmurk Cave might be a good place to start your search.", + ["T"] = "Deepmurk Shipment", + }, + [41256] = { + ["D"] = "Some time ago, my sisters and I felt a disturbance from across the sea, and so some of us left our starlit home to investigate. Our search led us here, to what we call the Sleeping Tree. While it\'s not quite what the Quel\'dorei had hoped for, it\'s still quite lovely, isn\'t it?$B$BTo help guard the tree we used its seeds to grow Ancient Protectors. Alas! As the tree\'s creation was flawed, so too was its offspring. The Ancients are steadfast, true companions that walk the ages with us...but it was not to be so with these Autumn Ancients. They only lived a mere few thousand years before withering and returning to the earth.$B$BHowever, recently I\'ve noticed some new saplings have sprouted from the resting places of these Ancients. This gives me hope! Would you be good enough to search for these saplings and retrieve a few acorns for me? Perhaps then...$B$B", + ["O"] = "Collect 3 Autumn Ancient Acorns from the saplings growing from the Ancients\' bodies for Marrondra.", + ["T"] = "New Growth", + }, + [41257] = { + ["D"] = "Any of our people who decide to take up a mage\'s robes should be well-prepared for the pitfalls of that path. If you intend to continue down this road, I should prefer that you be well-educated for your journey.$B$BThe magical addiction and loss of the Sunwell that plagues our people goes doubly for us! Your calling will be a constant kindling for the fires of your hunger- you must learn to master it before it masters you.$B$B In Silvermoon, there was a man that was...a friend of mine. Tragically, not only did he defect to the prince\'s blood elves in an attempt to slake his thirst, but he also led many of our young mages with him to their ruin. I would not see another student fall prey to his ways. I have word that he has been sighted at Felstrider Retreat- find Gilaras Sunfury, see what becomes of someone who forsakes reason and morals for their cravings, and put him out of our misery.$B$B And do remember to tell him that Merisa hasn\'t forgotten what he did.", + ["O"] = "Kill Gilaras Sunfury at at Felstrider Retreat.", + ["T"] = "Legacy of Blood", + }, + [41258] = { + ["D"] = "Greetings, paladin.$B$BWhile you have acquired considerable knowledge, there remains much more for you to discover. Seek out Duthorian Rall, a revered paladin of our order. He resides in Stormwind City, situated far to the south. Under his guidance, you will receive teachings that extend beyond my capacity.", + ["O"] = "Find Duthorian Rall in Stormwind City.", + ["T"] = "Paragon of Light", + }, + [41259] = { + ["D"] = "Our new allies have requested your presence in the distant lands of Kalimdor. Vereesa speaks very highly of you, and I hear you have proven to be a valuable ally for many denizens of our new homeland.$B$BThere is an established ship route that travels between our city and the night elf town of Auberdine. Go there with haste and report to Sentinel Glynda Nal\'Shea. She is an ally of our people, and surely she will find more work for you.", + ["O"] = "Travel to Auberdine and report to Sentinel Glynda Nal\'Shea.", + ["T"] = "Journey to Auberdine", + }, + [41260] = { + ["D"] = "We warriors pledge our oath to safeguard the vulnerable. A formidable foe, Murkblood, lurks within a cave in the Farstride. He has claimed the lives of many, and unless we intervene, more will succumb to his menace. Dispose of him, and I will honor you with one of our finest blades.", + ["O"] = "Kill Murkblood.", + ["T"] = "Bane of the Deepmurk", + }, + [41261] = { + ["D"] = "Greetings, warrior.$B$BYour journey of learning has been commendable, yet there is still ample knowledge to acquire. The Sentinels of Darnassus are renowned for their prowess, particularly in mastering impervious defense.$B$BVenture to Darnassus and find Elenaria. She will instruct you further.", + ["O"] = "Speak with Elanaria in Darnassus.", + ["T"] = "Lesson in Protection", + }, + [41262] = { + ["D"] = "Our intelligence indicates the presence of a new arrival at Felstrider Retreat—an undead elf, a mindless minion obedient to Sylvanas Windrunner and her Forsaken. We cannot afford any collaboration between the Blood Elves and the Horde. It is imperative that this threat be swiftly and discreetly neutralized. Given your capabilities, I believe you are well-suited for this mission. What is your response?", + ["O"] = "Slay Ithirilen Shadewind.", + ["T"] = "Diplomacy\'s End", + }, + [41263] = { + ["D"] = "As devoted servants of the Holy Light, it is both our duty and privilege to extend our care to those less fortunate. The weight of the suffering borne by the children of Quel\'Thalas in the aftermath of our fallen kingdom often eludes our consciousness.$B$BMany young ones have become orphans, and it is incumbent upon us to provide solace and support for them. Even if your destiny leads you down different paths, your assistance can still make a significant impact. Retrieve for me an Ivory Hawkstrider bone, and with it, we shall fashion a toy—a delicate figurine. This small creation will serve as a source of comfort for the children, aiding them in overcoming the traumatic memories they have endured.", + ["O"] = "Bring an Ivory Hawkstider Bone to Taliren Lightborn in Ballador\'s Chapel.", + ["T"] = "A Holy Duty", + }, + [41264] = { + ["D"] = "Our working operations at the Black Ash Mine have come to a complete halt. Not only are we having to look over our back for those Mudpaw Gnolls, now the Venture Co. are lurking around.$B$BI\'ve been receiving some reports from some of the miners that they have seen a goblin command the gnolls on their attack at the Black Ash Mine. Head just to the north of here, and delve into the mine itself. If you find anyone related to the Venture Co. slay them, and then return to me.", + ["O"] = "Explore the depths of the Black Ash Mine to the north of Rustgate Ridge and seek out any affiliation between the Mudpaw Gnolls and the Venture Co.", + ["T"] = "Disruption at Black Ash Mine", + }, + [41265] = { + ["D"] = "When we first arrived on this island, it was a lush and green oasis, full of trees and wildlife. We turned a great profit with the Rustgate Lumber Yard just to the northeast of here and all of that profit has come to a crashing halt.$B$BBelieve it or not, there are still quite a few trees that we could harvest, yet the Venture Co. has taken claim to one of our most lucrative sources of revenue! I\'ve even heard they are working out of it themselves, such nerve!$B$BI require you to head to the Rustgate Lumber Yard and start cracking some heads, make the Venture Co. think twice before messing with the Durotar Labor Union again.", + ["O"] = "Slay Venture Co. around the Rustgate Lumber Yard for Supervisor Ozzick at Rustgate Ridge on Blackstone Island.", + ["T"] = "Disruption at Rustgate Lumber Yard", + }, + [41266] = { + ["D"] = "Look, I\'m gonna keep this blunt with you, things are -not- looking good, and the big man is going to need to hear about it. He\'s already got an idea that we are not doing the best right now, but once he hears this he\'s gonna blow a gasket.$B$BSo I\'m gonna need a little old favor. Why don\'t you run this report up to Taxxlo Rustgate at the top of the tower here in town, and bring him this report. Make sure you\'re snappy with it, he doesn\'t like waiting.", + ["O"] = "Bring Ozzick\'s Report to Taxxlo Rustgate at Rustgate Ridge on Blackstone Island.", + ["T"] = "The Big Man", + }, + [41267] = { + ["D"] = "Admist the captivating beauty of this lush foliage and verdant landscape, a subtle undercurrent of darkness threatens our very existence here in the Thalassian Highlands. We study tirelessly in pursuit of the knowledge required to curb our growing mana addiction, while our adversaries seduce with a perverse salvation in the fel.$B$BAlready some of our kin have succumbed to fear of the withdrawal and been ensnared in their sinister grasp. Recently, we discovered a source of fel magic nearby, located on the Isle of Eternal Autumn to the west. No doubt the Blood Elves have their hand in this, determined to seduce even more of our terror-stricken kin to the promises of dark magic.$B$BSeek out the source of this tainted energy and bring it to me that it may be destroyed once and for all!", + ["O"] = "Discover the source of the fel magic lingering on the Isle of Eternal Autumn and bring it to Sinodas Azuresky at the Citadel of the Sun in Alah\'Thalas so that it may be destroyed.", + ["T"] = "No Shortcuts To Salvation", + }, + [41268] = { + ["D"] = "Oh no, you\'ve come looking for the Maison Serendipity Winter Veil clothing too? Well, it\'s embarrassing, but...I\'m completely sold out at the moment! You see, Rouge magazine just did an article about us and, well... we didn\'t expect such a rush! $B$BI need to get word back to the shop that I need a new shipment, but I really shouldn\'t leave my post. You know, judging by your clothing, you seem a well-traveled sort. Could you just run back to Stormwind and ask them to send me more product? The atelier is in the Park, near the entrance. Just ask for Madame Gres and let her know the situation. She\'ll get it handled!", + ["O"] = "Travel to the Atelier Serendipity shop in Stormwind Park and ask Alix Gres to send Vera Lauren a new shipment of clothes.", + ["T"] = "Restocking the Stockings", + }, + [41269] = { + ["D"] = "I\'d be just delighted to send Vera more, except...well, darling, do you know how much fur we go through for the trimming? And not just any fur- genuine 100% free-range Alterac Yeti fur! It\'s the warmest. Unfortunately, we are all out and our suppliers are being difficult- something about a shortage and a snowman? Anyway, I- oh don\'t take this the wrong way, darling, but your outfit certainly makes a statement. And that statement is, oh, shall we say...\'experienced in the art of combat.\'$B$BI don\'t suppose you\'d be a dear and just go to Alterac and fetch me some fresh yeti hides? The yetis may be a bit reluctant to part with their hides, but I\'m sure you can manage. I\'ll need about ten of the finest, fluffiest, preferably cleanest furry hides.", + ["O"] = "Gather 10 Fine Free-Range Alterac Yeti Hides for Alix Gres.", + ["T"] = "\'Fair Trade\' Is Not Legally Defined in Azeroth", + }, + [41270] = { + ["D"] = "You did well getting everything that I needed darling. While you were away I sent a fresh batch of some of our best thread to Winterveil. It would be a shame if everyone were not dressed as fashionable as possible. Head to Vera, she should be very thankful.", + ["O"] = "Return to Winterveil Vale and speak with Vera Lauren", + ["T"] = "Fresh Clothes For Winterveil!", + }, + [41271] = { + ["D"] = "Gah, you\'ve come looking for the Maison Serendipity Winter Veil clothing too? Well, I\'m sorry to say but you\'re a bit late. I\'m completely sold out at the moment. That Rouge magazine just did an article about us and, well... I didn\'t expect such a rush.$B$BI need to get word back to the shop that I need a new shipment, but I\'m not supposed to leave my post. Hey, judging by your clothing, you seem a well-traveled sort. If you could just run back to Undercity and ask them to send me more product? The atelier is in the Apothecarium, near the Enchanting shop. Just ask for Coco and let her know the situation. She\'ll fix this mess!", + ["O"] = "Travel to the Atelier Serendipity shop in the Undercity Apothecarium shopping area and ask Coco to send Ralph Jacobs a new shipment of clothes.", + ["T"] = "Restocking the Stockings", + }, + [41272] = { + ["D"] = "I\'d be just delighted to send Ralph more, except...well, darling, do you know how much fur we go through for the trimming? And not just any fur- genuine 100% free-range Alterac Yeti fur! It\'s the warmest. Unfortunately, we are all out and our suppliers are being difficult- something about a shortage and a snowman? Anyway, I- oh don\'t take this the wrong way, darling, but your outfit certainly makes a statement. That statement is, oh, shall we say...\'experienced in the art of combat.\'$B$BI don\'t suppose you\'d be a dear and just go to Alterac and fetch me some fresh yeti hides? The yetis may be a bit reluctant to part with their hides, but I\'m sure you can manage. I\'ll need about ten of the finest, fluffiest, preferably cleanest furry hides.", + ["O"] = "Gather 10 Fine Free-Range Alterac Yeti Hides for Coco Gucci.", + ["T"] = "\'Fair Trade\' Is Not Legally Defined in Azeroth", + }, + [41273] = { + ["D"] = "You did well getting everything that I needed darling. While you were away I sent a fresh batch of some of our best thread to Winterveil. It would be a shame if everyone were not dressed as fashionable as possible. Head to Vera, she should be very thankful.", + ["O"] = "Return to Winterveil Vale and speak with Vera Lauren", + ["T"] = "Fresh Clothes For Winterveil!", + }, + [41274] = { + ["D"] = "Can you feel it, $C? The sweet fragrance of love and admiration that permeates the air? The joy and fascination those eager lovebirds share with one another? There\'s nothing that makes my heart beat faster than witnessing the miracle of love spread throughout Azeroth!$B$BYour eyes betray your heart, and I can read you like an open book. I can see your eagerness to learn more, perhaps even to experience this sentiment yourself. Love takes many forms, and is not always as clear cut as one might think. Even I, love\'s herald, am often surprised at those chosen by my arrows to receive the blessings of love! Truly an enigma, love is!$B$BNo further proof of this needs be seen than those whom my arrows have pierced in the past. Bring me a token of their unique form of love and admiration, and return these keepsakes to me in any capital city.", + ["O"] = "Retrieve mementos of love from all around Azeroth and bring them to Kwee Q. Peddlefeet.", + ["T"] = "Testaments Of True Love", + }, + [41275] = { + ["D"] = "$N! Do you have a moment? Your skills in jewelcrafting are exceptional, rarely any of my pupils achieved such levels of craftsmanship by my teachings alone. It doesn\'t take a master to see - you are born to hone this craft to its fullest potential.$B$BWhile you\'ve exceeded my expectations immensely, I sadly cannot teach you more than I already have. This doesn\'t mean the end of your journey, however. There are mentors more capable of teaching you, one of them being a good friend of mine. Perhaps you\'ve become acquainted with him already, he may be a bit paranoid and disgruntled, but he will share what he knows with a bit of assistance.$B$BShould you wish to specialize your craft and become a master jewelcrafter, talk to Talvash del Kissel in the Mystic Ward. His instructions will pave the way for your future in this trade.", + ["O"] = "Speak with Talvash del Kissel in the Mystic Ward of Ironforge.", + ["T"] = "Mastering Goldsmithing", + }, + [41276] = { + ["D"] = "$N, what a splendid sight to have you here with me once more. I have noticed - and you surely too - that your progress in the craft has grown astronomically! Really, it has been too long since I\'ve witnessed such prodigal skills at hand. This sadly means that my means of teaching are at an end. Your eagerness to learn more is apparent however; good thing I can assist you one last time.$B$BShould you wish to strengthen your understanding in the field of jewelcrafting, seek my good friend Jarkal in Kargath. The perilous Badlands are no place for a corpse like myself, but a sturdy troll like himself can withstand such harsh environments with ease. Take care on your journey to him, for I wish you the safest of travels.$B$B", + ["O"] = "Speak with Jarkal Mossmeld in Kargath in the Badlands.", + ["T"] = "Mastering Goldsmithing", + }, + [41277] = { + ["D"] = "$N! Do you have a moment? Your skills in jewelcrafting are exceptional, rarely any of my pupils achieved such levels of craftsmanship by my teachings alone. It doesn\'t take a master to see this - you are born to hone this craft to its fullest potential.$B$BWhile you\'ve exceeded my expectations immensely, I sadly cannot teach you more than I already have. Don\'t fret, however, as my own master, Thegren, may aid where I fail to.$B$BShould you wish to specialize your craft and become a master in gemcutting, the art of manipulating gems to augment your abilities, search for Thegren. As a member of an ancient order, preceding any of our current civilizations, he chose a hermit\'s life, living secluded in the barren wastes of the Badlands. Seek him out near the ruins of the ancient city of Corthan. He does not speak to anyone, but should you show him this crystal, I assure you - he will listen to your cause. Be careful out there, it is a perilous journey to that dreary place!", + ["O"] = "Travel to the Ruins of Corthan in the Badlands and search for Thegren.", + ["T"] = "Mastering Gemology", + }, + [41278] = { + ["D"] = "$N, what a splendid sight to have you here with me once more. I have noticed - and you surely, too - that your progress in the craft has grown astronomically! Really, it has been too long since I\'ve witnessed such prodigal skills at hand. This sadly means that my means of teaching are at an end. Your eagerness to learn more is apparent however; good thing I can assist you one last time.$B$BShould you wish to strengthen your understanding in the field of gemology, there is someone - a secretive man, that can aid you in your ambitions. Older than anything I know, he is part of an ancient order, one that mastered the knowledge over Azeroth\'s minerals. As such, he values his privacy; meaning he will most likely not speak with you. Here, take this crystal with you. It is proof of my tutelage under him, and it will show him you can be trusted. Please, take care on your journey to him, for I wish you the safest of travels.$B$B", + ["O"] = "Travel to the Ruins of Corthan in the Badlands and search for Thegren.", + ["T"] = "Mastering Gemology", + }, + [41279] = { + ["D"] = "", + ["O"] = "Search for the auburn giant east of the Ruins of Corthan and return to Thegren with your findings.", + ["T"] = "The Lifeblood", + }, + [41280] = { + ["D"] = "", + ["O"] = "Complete Thegren\'s test of craftsmanship and present him with your work afterwards.", + ["T"] = "Demonstration", + }, + [41281] = { + ["D"] = "", + ["O"] = "Recover a slab of Landslide\'s body from Maraudon and bring it to Thegren near the Ruins of Corthan in the Badlands.", + ["T"] = "Preparation", + }, + [41282] = { + ["D"] = "", + ["O"] = "Solve the final exam.", + ["T"] = "The Final Cut", + }, + [41283] = { + ["D"] = "Alright, listen, let me be honest with you. I will not teach you my secret crafting techniques out of my desire to be charitable. I can assure you, I am definitely not going to do that. Instead, you will assist me in… restocking my supplies and in turn, you\'ll receive a sizeable nugget of knowledge about my goldsmithing. Perfect? Perfect.$B$BPlease bring me the following things as soon as possible, I\'m not the type to wait around for too long.", + ["O"] = "Bring Talvash the required materials.", + ["T"] = "Trinkets Make The Heart Grow Fonder", + }, + [41284] = { + ["D"] = "Believe it or not, but living under a mountain does not guarantee you a steady flow of gems in your storage. It surely doesn\'t help if some FALSE rumours prevent you from engaging in good and honest trade around here. If I was still in Gnomeregan, all of this would be easier, trust me on that. Still, gems are the bread and butter of jewelcrafting - no gems, no jewels, no trade, no money, no paid rent. You get the idea. And seeing as I desperately need to appease my landlord, I need quite a handful of those sparkling beauties to cover my losses, so to speak.$B$BAre we on the same page? Ofcourse we are. Bring me enough of the following gems and I\'ll pass you a lil\' something.", + ["O"] = "Bring Talvash the required materials.", + ["T"] = "You Should Put A Ring On It", + }, + [41285] = { + ["D"] = "Whatever you\'ve been told about me - it\'s all lies! I one hundred percent NEVER made any sort of cursed item for anyone. I have integrity for my craft and an oath to keep! Please don\'t ask who I made an oath with. Strictly confidential. And definitely NOT shady.$B$BRegardless, it seems the misfortune of some ill adventurer now befalls me instead, slandering my good name once again. A daring mage sought me out for a spell-enhancing necklace on his ventures to the recently re-discovered Gilneas City to the north. Ofcourse I obliged and crafted one for him, rent was due anyway, yet his spelunking in that accursed place did not end… let\'s say favorably for him. Too bad his group of fellow adventurers now blame me for his demise, lying to everyone in Ironforge that I enchanted the necklace with a foul spell!$B$B$N, I want you to delve into Gilneas City yourself and bring me back that necklace! The last thing I want is people using it as false evidence against me.", + ["O"] = "Return with the adventurer\'s necklace to Talvash del Kissel in Ironforge.", + ["T"] = "Left In Bad Faith", + }, + [41286] = { + ["D"] = "This is it, good traveler. There isn\'t much more I could teach that you couldn\'t learn elsewhere. Still, if your hunger for knowledge won\'t let you stop here, then I\'ll share with you where I got all my nifty tricks.$B$BTechnically I shouldn\'t be telling you this, yet with your urgent help I cannot let you leave unrewarded. Far to the west, in the hostile plains of Desolace, you will find my own mentor, isolated from civilization. Although he wished to be left undisturbed, I know he wouldn\'t mind some company. Don\'t be discouraged should he not talk with you at first, persistence is what he values most in those wishing to seek knowledge!$B$BLook for a great tower overlooking the ocean, it is where I last saw him. Now that we got this out of the way, you better leave quickly, before my landlord thinks I\'m engaging in black market activities!", + ["O"] = "Meet the mysterious tutor in Desolace.", + ["T"] = "The Artificer", + }, + [41287] = { + ["D"] = "I will be honest with you, out here in the wilderness, our supplies are not as plentiful as to teach you properly. It is not like I have the infinite resources our short green friends in Orgrimmar have. Nothing we cannot work with, however. Fortunately for us, these lands are rich in natural resources, which you can turn into the material for your lecture.$B$BTake it as a sort of test to see just how much you\'re capable of.", + ["O"] = "Bring Jarkal the required materials in Kargath in the Badlands.", + ["T"] = "Sand In The Cracks", + }, + [41288] = { + ["D"] = "Like you\'ll surely know, gems, valuable stones and minerals are essential to jewelcrafting. Without them, creating fashionable pieces may surely be possible - but honestly, what would be the point? In my humble opinion, a delicate gem or even an ornate one is the element giving your jewelry purpose and meaning.$B$BBring me enough of Azeroth\'s gems so that we may analyze their properties together.", + ["O"] = "Provide Jarkal the required materials in Kargath in the Badlands.", + ["T"] = "Stones Of Radiance", + }, + [41289] = { + ["D"] = "My people have an extensive history about goldsmithing and bedazzlements, be it removable or permanent. While I will share my insight in the old Zandalari goldsmithing customs, it is important to expand your horizon to other sources of knowledge as well.$B$BWhat I want you to delve into is the human way of fashioning regalias. Up north, not far from the lands of our forsaken allies, you will find the nation of Gilneas. A relic of old times, so I have heard, now newly opened to those eager enough to best its dangers and perils. High atop its mountain ridged towers Gilneas City, a place of commerce, trade and festivities, according to the stories of traveling adventurers.$B$BIt is where you will find a suitable digest for us to analyze.", + ["O"] = "Search for a fitting book in Gilneas City and bring it to Jarkal Mossmeld in Kargath in the Badlands.", + ["T"] = "Foreign Knowledge", + }, + [41290] = { + ["D"] = "Good traveler, thank you for letting me practice this craft I had long been unable to. I had promised to continue honing my skills, yet my service to the Horde in the last years did not allow me to pursue this oath any longer. Yet, perhaps if more adventurers like you turn up, I may be able to do so after all.$B$BFor your urgent help, let me reward you properly - by sharing where I strengthened my mastery of goldsmithing. Far to the west, in the hostile plains of Desolace, you will find my own mentor, isolated from civilization. Although he wished to be left undisturbed, I know he wouldn\'t mind some company. Don\'t be discouraged should he not talk with you at first, persistence is what he values most in those wishing to seek knowledge!$B$BLook for a great tower overlooking the ocean, it is where I last saw him.", + ["O"] = "Meet the mysterious tutor in Desolace.", + ["T"] = "The Artificer", + }, + [41291] = { + ["D"] = "So you are adamant to learn the art of Goldsmithing? Usually I pick my pupils, yet… If one of my former students recommended you and even sent you on an uncertain search for me, I cannot possibly deny your request. We could start immediately, however there is a tiny predicament we are facing. I unfortunately lost my prized jeweler\'s kit when I was collecting minerals that were washed ashore down at the strand. Startled by a sea giant, I had to abandon it and couldn\'t find a secure moment to retrieve it. My fighting days are over, so if you wish to be taught my skills, then you have to reclaim it in my stead.", + ["O"] = "Bring The Artificer at Ethel\'rethor in Desolace his Jeweler\'s Kit.", + ["T"] = "Unfortunate Circumstances", + }, + [41292] = { + ["D"] = "You may address me as The Artificer, young one. I abandoned my previous name when the great city of Eldre\'thalas fell millennia ago. Wandering the wilds of Kalimdor ever since, I share my wisdom with individuals of the mortal races I deem worthy of receiving it. This friend that sent you here - he is among the chosen I have tutored, as incredible as it may sound. It seems his love for the craft didn\'t wane over time, however. Assuring to hear.$B$BYou wish to be taught the secrets of century-old goldsmithing techniques, passed on between races, civilizations, and generations? Prove your skills to me. Show me how well you can hear the blood of the earth sing.", + ["O"] = "Craft the following jewelries. The Artificer will teach you how to after proving your skills to him.", + ["T"] = "The Art Of Goldsmithing", + }, + [41293] = { + ["D"] = "So he taught you some of his skills, you say. Well, rest assured, most of the knowledge he possesses has been passed on to him by me. He may be a proficient jewelcrafter, yet the more elusive secrets of the art are not found with him. If one wishes to dive into the depth of a craft, one must have a profound understanding of the surface.$B$BWhich is exactly what I want from you: show me what basic knowledge you possess about goldsmithing, so I may know where to begin with you.", + ["O"] = "Present The Artificer with jewelry from your own and someone else\'s design.", + ["T"] = "Elaborate Golden Bracelets", + }, + [41294] = { + ["D"] = "A true artisan encompasses all aspects of life into his work. Life, death. Heaven and earth. The elements at play in our world. You may know already, but the gems of Azeroth possess latent magic and elemental attributes, making them extremely powerful in the hands of the right - or wrong - person. $B$BDemonstrate to me that you can properly handle the energies of Azeroth\'s gemstones in the creation of your jewelry.", + ["O"] = "Show The Artificer your skills.", + ["T"] = "Observations", + }, + [41295] = { + ["D"] = "I\'ve had multiple pupils in the past centuries, and frankly I\'ve lost count on how many there were. One, however, will always remain vividly in my mind and heart. A young elf, one of fair skin like I haven\'t seen before. Her curiosity and eagerness for goldsmithing was unparalleled, attributes I admired about her juvenile spirit.$B$BShe approached the art without bias and took it for what it was - the expression of heart and soul. When she finished her final project, a staff of significant quality, the winds of adventure swept her away - away from me. While I had hoped she would return to me one day, for even as much as a visit, reuniting with her sadly never occurred.$B$BHer presence - and lack thereof - left a mark on me, for I insist any of my future pupils share her clear sight on the craft. Show you that you can follow her example.", + ["O"] = "Convince The Artificer of your understanding of his lessons.", + ["T"] = "Dearest Gallitrea", + }, + [41296] = { + ["D"] = "My people have been divided. We\'ve endured much on the escape from our home, in search of security and a place to survive. While my brethren in the Harborage remained resilient and clung to hope, I cannot say the same about the lost ones. Their madness has taken a deep hold in their minds, and its roots cannot be cut anymore. In a fruitless endeveour to return to the hellscape that is Draenor, they gather the Draenethyst crystals, potent gems from said world, without knowing they won\'t be able to utilize them properly. This was, however, not always the case.$B$BAmong them was a powerful rift walker, under the name of Kum\'isha, who parted ways with the maddened draenei of Fallow Sanctuary. He now roams the hostile plains of the lands to the south, in search of myths and legends. What I seek is his knowledge about our sacred crystals - but should you be able to convince him to join us; please, do not hesitate.", + ["O"] = "Locate Kum\'isha in the Blasted Lands.", + ["T"] = "The Collector", + }, + [41297] = { + ["D"] = "I left the lost ones behind, their leaders have become bumbling fools drooling over the sacred Draenethyst, forgetting their true potential. Sanv K\'la is no different, hope poisoned him and his acolytes\' heart, neglecting the fact he is trapped in a world of avarice. That goes for you too. For what other reason are you standing before me, Kum\'isha the Collector, if not to tear from me what you desire? But I know you and your kind, and your greed is what will further my ambitions.$B$BRoaming these cursed lands are mindless draenei, wielders of rift walking magic without the means to do so. In their endless search for Draenethyst, they have lost their mind, scouring the sand like the vermin that they are. Rabid beasts, all of them! They have raided my camp, stealing a valuable cache of crystals. Slaughter them, retrieve my belongings and I may reward your usefulness.", + ["O"] = "Recover the Rummaged Chest from the Draenei of the Blasted Lands and return it to Kum\'isha in the Blasted Lands.", + ["T"] = "Seeking Seekers", + }, + [41298] = { + ["D"] = "$B$BKarak-tokal! What are they thinking? This is heresy to all draenei, heresy! Them roaming these lands of death like drones was concerning, albeit not dangerous. What they are aiming for, however, is very much so. According to this scripture, the seekers you\'ve encountered are gathering Draenethyst for a vile creature, a rift walker named Mato\'gar. That alone is an affront to my ambitions, his true goal however is revolting and must be stopped. Should he be able to take the crystals with him to Draenor, the only way for us to return will be gone - condemning us to rot and decay, jailed to never see our home ever again.$B$BYou will not let that happen, for Kum\'isha will bestow upon you what you wish; in exchange for his head. He awaits his seekers to the northwest of my camp.", + ["O"] = "Bring the Head of Mato\'gar to Kum\'isha the Collector in the Blasted Lands.", + ["T"] = "Envoy Of Draenor", + }, + [41299] = { + ["D"] = "Here, take this scroll. On it you and the naive Sanv K\'la will find my knowledge of Draenethyst and its uses. May he do whatever he intends to do with it, as long as it does not interfere with my plans. It is in his best interest to heed my warning, lest he ends like Mato\'gar.$B$BTo you, I say the following: unless you wish to aid me further, I do not want to lay my eyes upon you again. Begone if it is so.", + ["O"] = "Return to Sanv K\'la in the Swamp of Sorrows with Kum\'isha\'s scroll.", + ["T"] = "Gratitude Of Kum\'isha", + }, + [41300] = { + ["D"] = "Oh, this is bad! Just how unfortunate can one single gnome be? I made a horrible mistake and now it\'s gonna cost me my head or worse - my home!$B$BSimply put, my finances are dry, severely dry! Desperate as I was, I accepted the offer of a dubious merchant with the promise of heaps of gold. Yet, on his second visit, he was accompanied by two frightening thugs and demanded more wares from me than originally agreed! My pleas explaining that my supplies don\'t cover his demands fell on deaf ears - and now they\'re threatening me. Me, the magnanimous and unmatched Talvash del Kissel!$B$BPlease, assist me with my dilemma! I promise, you\'ll get justly rewarded. The scoundrels left towards The Commons, I am sure these thieves are hiding somewhere in the countless houses along the outer ring!", + ["O"] = "Talk to the suspicious folk threatening Talvash del Kissel in Ironforge.", + ["T"] = "Just Ask Them Nicely", + }, + [41301] = { + ["D"] = "So what are you here for? To ask me nicely to stop harassing your friend who doesn\'t want to uphold his end of the bargain? Or are you here to take the more... direct approach of solving problems? Either way, I regret to inform you that neither is going to work. Deadlines are something my organization values and those who are not able to meet them...$B$B$B$BI am however a welcoming merchant and will not forsake an opportunity for the sake of animosity towards disappointing trade partners. Instead, I will make you an offer. Deliver double the amount of goods that Talvash is still owing us, and me and my compatriots will consider leaving him be. A sound proposition, no? If I were in your stead, I\'d do my best accepting it...", + ["O"] = "Return to Talvash del Kissel in the Mystic Ward of Ironforge and give him his payment.", + ["T"] = "Undermarket Offer", + }, + [41302] = { + ["D"] = "$B$BIt was a pleasure doing business with you. I\'d suggest running along to your friend now and not showing either of your faces here ever again. Begone.", + ["O"] = "Return to Talvash del Kissel.Kissel in the Mystic Ward of Ironforge and give him his payment.", + ["T"] = "Negotiated Truce", + }, + [41303] = { + ["D"] = "A disaster, that\'s what it is! A monetary apocalypse is upon me; my name sullied and my fame gone. My priced jewelry was on its way to an auction in Booty Bay, among it an especially valuable and hefty ring. Believing it to have made it safely to the port city, I continued with my work without much thought, without knowing it never even left Ratchet! Now I\'m the laughing stock of the esteemed merchants and auctioneers, cackling away at my incompetence.$B$BPal, can you assist me in solving this debacle? My contractor of trust, Grizzby, is nowhere to be seen and I can\'t afford to lose my priceless creations. As we don\'t have any leads, perhaps it\'d be best to ask around Ratchet for information.", + ["O"] = "Travel to Ratchet in the Barrens and ask around for Grizzby\'s and his cargo\'s whereabouts.", + ["T"] = "Lost In Ratchet", + }, + [41304] = { + ["D"] = "I\'ve known Grizzby for a long time, a sociable bloke, y\'know, lots of friends. Comes with the job, naturally. I was busy with logistics when he came here to the docks, we chatted a bit since the next ship wasn\'t going to show up for a long time.$B$BWhile we were just passing the time, this other goblin approached him like he just met his long lost brother again. Must\'ve been close, since Grizzby acted like he knew him well, too. I didn\'t catch much of what they were talking about, but I overheard that they were gonna go south, for whatever reason.$B$BIt\'s been some time now and I fear the worst for Grizzby, please make sure he\'s safe.", + ["O"] = "Look for Grizzby and return to Tacknazz Copperfire in Sparkwater Port afterwards.", + ["T"] = "A Friend Of A Friend?", + }, + [41305] = { + ["D"] = "I will bring this contract personally to Nert, he should know what our former employers are plotting back on Kezan. If I could, I\'d just waltz into Undermine and throw their Trade Prince into the deepest slums there are. But I cannot, so I have to make the best of what I can do now.$B$BWith my jewelry stolen and supplies running dry, I can barely prepare anything for the next auction - and I must present something with a BANG at that auction or my reputation is officially toast. I see you\'re crafty and talented, care to help me once more?$B$BWhat I need is a gem of enormous proportions, the travelers passing by here in Sparkwater spread the rumor of a fist-sized ruby in the possession of the Scarlet Crusade, I\'ll assume their leader has it on them. Furthermore, a simple golden necklace for me to place the ruby in; nothing you shouldn\'t be able to tinker yourself.", + ["O"] = "Tacknazz needs a golden necklace and a giant ruby from the Scarlet Monastery.", + ["T"] = "Gold Is The Goblin\'s Heart", + }, + [41306] = { + ["D"] = "I am cursed with bad luck, I\'m telling you. You see, with all the pirates roaming around the trade routes nowadays, sending your cargo via ship is the same as directly handing it to those swashbucklers neatly tied with a bow on top. So clearly not an option. The other alternative I have is having it delivered by foot, equally risky, you\'ll surely know what I am talking about.$B$BEither way, I chose the latter option and because I really, REALLY, needed to deliver this cargo I looked for the most intimidating ogre here in Ratchet and paid him to accompany me on my way down to Steamwheedle Port. Too bad we were ambushed by undead zombie quilboar who took both the ogre and my precious cargo with them.$B$BI am getting desperate here. Can you retrieve my wares from the Razorfen Downs? I doubt they will be on my ogre guard anymore, but should he still be alive, he will know where they are.", + ["O"] = "Search for Traxis\' lost bodyguard in the Razorfen Downs.", + ["T"] = "It\'s All Ogre Now", + }, + [41307] = { + ["D"] = "Sah\'rhee is so sorry he failed. Sah\'rhee was not strong enough to protect little green friend and mean quilboar took me here. They want to eat me, but mother always said Sah\'rhee is too chubby, probably don\'t taste that good.$B$BIf you are looking for Traxis\' box, it is here, but all the stones fell out when they hit poor Sah\'rhee to walk faster. Now scary zombies and ghosts have all the sparkly gems! Sah\'rhee wants to go home, can you collect Traxis\' jewels and bring them to small gnome in Tanaris? Traxis\' said she is at the beach town waiting for the box!", + ["O"] = "Collect the missing cargo of Traxis and deliver it to his contractor in Steamwheedle Port in Tanaris.", + ["T"] = "They\'re Eating It!", + }, + [41308] = { + ["D"] = "Okay, scrap what I just said. I will definitely not order from him again. All these gemstones have brittle surfaces! How could this have happened? What did he do with them?$B$B$B$BUgh, you didn\'t have to explain it in such detail. Gross. Well, this is just perfect. Now I have extra work on my hands, and that\'s the last thing I can afford right now. But luckily you are here to help out. Oh, don\'t give me that look, I\'ll pay you instead of Traxis, it\'s in his best interest to not show his grimy mug here anytime soon.$B$BTo fix the gems we need something with a bit more oomph, your regular gemstone oil won\'t cut it here. Not far south of here is a small cove near the beach, you will find... let\'s say a business partner of mine there. Bring him the oily glands of the Steeljaw Snappers from the coast, a greater mystic essence and a crystal vial. Tell him I sent you.", + ["O"] = "Bring eight Steeljaw Glands, a Greater Mystic Essence and a Crystal Vial to Fanzy\'s mysterious partner south of Steamwheedle Port.", + ["T"] = "Fishy Practices", + }, + [41309] = { + ["D"] = "$B$BTake it, stranger. This oil should seal the cracks in the gems\' surfaces, while still allowing for accurate cuts. Now go, while I permit her to frequent me, I cannot say the same about you. I may be more hospitable than my brethren, but that does not mean my patience is endless.", + ["O"] = "Return with Zalashji\'s Gemstone Oil to Fanzy Sparkspring in Steamwheedle Port.", + ["T"] = "Brittle Gnome More", + }, + [41310] = { + ["D"] = "", + ["O"] = "Read Khadgar\'s Journal and uncover the enigma behind it.", + ["T"] = "Clutch of Thanlar", + }, + [41311] = { + ["D"] = "I was there when Arthas besieged Dalaran under the order of his demonic overlords. While Menethil committed heinous acts in his mission of stealing the Book of Medivh, his army sacked the city of the other dangerous relics we were securing in our vaults. Defending the magical city from tooth to nail, I stood before a powerful doomguard seeking destruction and mayhem. $B$BIf it is the Clutch of Thanlar you seek, then finding that doomguard is what you must do. During my recovery after Dalaran\'s fall, the other surviving mages discussed Archimonde and his army\'s next goal - which turned out to be them going westwards, to these very lands, in pursuit of the World Tree Nordrassil. Should the doomguard still be on Azeroth, then I\'d reckon he is plotting his revenge in a demon infested abyss, close to Mount Hyjal.", + ["O"] = "Slay the doomguard Dolvan was informing you about and return with the Clutch of Thanlar. He awaits you at his home south of Theramore.", + ["T"] = "Bovar\'kez", + }, + [41312] = { + ["D"] = "When the clutch was in the Kirin Tor\'s safekeeping in Dalaran, I studied its form, function and purpose extensively. While Medivh was a secretive type, his magical implements and trinkets all bear a similar magical marking. Even mages not familiar with the Guardian can feel that. During my research I came to the conclusion that the clutch was part of something grand, and that in turn being part of something even greater. Judging from its form, an enormous gemstone must\'ve had its place on the top of its holdings.$B$BShould you ever come across such a gemstone in your ventures to the haunted tower, I am confident in my abilities of restoring the artifact to its original state. To do so, however, I\'d need a strong arcane focus to channel my energy with. The blue dragonflight, protector of Azeroth\'s magic, holds custody over such objects, yet only their most powerful members actually carry these with them.", + ["O"] = "If you wish to repair the relic, bring Dolvan the necessary parts and an arcane focus from a high-ranking blue dragon. The mage can be found along the shoreline south of Theramore.", + ["T"] = "Restoration", + }, + [41313] = { + ["D"] = "This land is rich in magic. Numerous reasons brought me here for my research, and the many ley lines coursing through the earth are one of them. Potent arcane energies pour out of their flowing streams, luring countless mana hungry denizens of this and other worlds to them. I wish to understand more clearly why exactly this forgotten and cursed landscape is home to such a phenomenon. Curiosity escapes your eyes - do you intend to aid me in my endeavors?$B$BOther matters keep me busy in my tower, so if you\'d go out and acquire some reagents for me, you\'d be rewarded for your efforts. What I need are crystallized formations of ley line energy. My students were able to locate two, to the east and south of here. I suspect the resident blue drakes and the depraved blood elves are our best leads. Begin your search there.", + ["O"] = "Collect the ley line crystals for Archmage Xylem at his tower in Azshara.", + ["T"] = "Leyline Investigation", + }, + [41314] = { + ["D"] = "Both of these crystals have the identical integral structure, except the vermillion one - when resonating with a little bit of my own magic...$B$B$B$BListen, here are the facts we are working with: The Blue Dragonflight, for some reason we have yet to discover, collects ley line crystals from Lake Mennar whose growth is somehow artificially accelerated. The resident blood elves also possess these crystals, although in a different, more volatile state. Whether these two circumstances are connected is for us to uncover.$B$BI will continue gauging the stability of these crystals, while you retrieve a valuable relic for me, one we will need to complete our research. A former student of mine foolishly thought taking it out of my tower would go unnoticed. Sanath informed me about her hasty departure to the east near Timbermaw Hold, no doubt using her friendly relations with them to hide herself.", + ["O"] = "Retrieve Xylem\'s Focus Orb from his suspicious student.", + ["T"] = "A Cause Of Concern", + }, + [41315] = { + ["D"] = "With the focus orb returned, there is but one last thing we must assure ourselves of. Here, take the crystals and the orb and place them on the pedestal in front of my tower. A spell I put on the orb will then react with the ley line crystals and - hopefully - confirm my theory about their nature.$B$BDon\'t be afraid, for I will observe you from within this tower and intervene if necessary. Capable as you are, we shouldn\'t be too worried, but don\'t forget: Caution is a wise man\'s lifeblood.", + ["O"] = "Conduct the final test and return to Archmage Xylem in Azshara.", + ["T"] = "Unveiling The Mystery", + }, + [41316] = { + ["D"] = "", + ["O"] = "Bring the book to someone proficient in jewelcrafting.", + ["T"] = "Advanced Jewelcrafting XI: Hard as Diamonds", + }, + [41317] = { + ["D"] = "I\'ve been researching this legendary encyclopedia of jewelcrafting most of my life. It is rumored they are remnants of an ancient society, the progenitors of the human race we know today. Archeologists are finding more and more of their ruins - they are called the Azotha. So far only five of their tomes have been found, with eleven rumored to exist. An acquaintance of mine, equally as ancient, actually opened one - and told me of it. He said the books are sealed using elemental runes, the ancient words uttered by the elementals of Azeroth. I\'ve been looking into them ever since and the fiery rune on this lock here appears to be the Rune of Blaz.$B$BWe need a fragment of an elemental that has attuned itself to that rune. I hear the deepest caverns of the Blackrock Mountain, the Molten Core, are filled with blazing elementals. I believe we have the highest chance to find what we need there.", + ["O"] = "Obtain a fragment on an elemental attuned to the Rune of Blaz from the Molten Core for Fanzy Sparkspring in Steamwheedle Port.", + ["T"] = "The Rune of Blaz", + }, + [41318] = { + ["D"] = "Okay, we got to roll with the punches. Let\'s work with this page first and see what\'s written here... ‘To illuminate the scripture, present to me the hearts of earth and fire. Extracted heat will unveil the knowledge that you seek.” These Azotha sure love their riddles. I can only guess, but I believe this is a similar situation to what we had before. We can only unlock this grimoire\'s secret if we have the appropriate materials present.$B$BHearts of earth and fire... this must surely mean the fiery and lava cores of powerful elememals. Extracted heat... perhaps the essence of fire? Yes, this must be it!$B$B$N, you know what to do. I\'ll be waiting here for you to bring the needed materials and try to wrap my head around this ‘extraordinary\' book.", + ["O"] = "Deliver the materials to Fanzy Sparkspring in Steamwheedle Port.", + ["T"] = "Mastercrafted Diamond Crown", + }, + [41319] = { + ["D"] = "The more I read - or rather DON\'T read - the more I believe all the mystery about these tomes was just a ploy by some sniveling goblin trying to make a quick buck. Two measly pages have something written on it, and on this one is even just one sentence! ‘Channel the sun through crystallized blood.\' What is that even supposed to... Wait! I got an epiphany!$B$B$B$BThese are the plans for a jewelry lens I never came to create. It\'s designed to bundle light into a highly potent ray used to carve into metal. It requires very specific ingredients - which is where you come into play. The \'crystallized blood\' must mean the highly elusive Blood of the Mountain, found deep within the Blackrock. I also need a framing for the lenses, Fineous Darkvire in the Blackrock Depths is known to possess a lens durable to even the strongest heat of the mountain. Bring me both and I can tinker a tool to decipher the page with!", + ["O"] = "Fanzy Sparkspring at Steamwheedle Port requires Blood of the Mountain and the Dark Iron Prospecting Lens from Fineous Darkvire for creation.", + ["T"] = "Mastercrafted Diamond Bangles", + }, + [41320] = { + ["D"] = "I have a perilous journey behind me, stranger. One that transcends worlds; yes, worlds. Riftwalkers possess ancient magic, sorcery foreign to Azeroth. Large amounts of energy are necessary to perform this art, and less experienced riftwalkers often utilize the draenethyst crystals, the manifested lifeblood of our home world, for this. It was wise of Sanv K\'la to have you seek me out, as I am both shocked and exhausted from what I endured on my excursion to my home world… to Draenor.$B$BSit, and listen to what I have to say.", + ["O"] = "Listen to Akh Z\'ador\'s story.", + ["T"] = "Learn Of My Past", + }, + [41321] = { + ["D"] = "Before we can tackle the saving of my tribe, we need to prepare, both myself and my belongings. Riftwalking is very taxing on the user\'s mind, an interrupted riftwalk even more so. Without my mental strength returned, a rescue will not be possible. $B$BMy people have discovered that a creature\'s brain can accelerate one\'s mental recovery immensely, if devoured. The more intelligent the beast, the quicker you feel renewed. Down at the shore I saw serpent people slither around, some of them casting spells on their own. Bring me a few undamaged brains from these spellcasters.$B$BLet us hope your world\'s species are as smart as I envision them to be.", + ["O"] = "Bring Akh Z\'ador in Azshara three Siren Brains for his ‘mental recovery\'.", + ["T"] = "Rift Fatigue: Mind", + }, + [41322] = { + ["D"] = "Being exposed to the currents of the Twisting Nether is a dangerous act, its ramifications are still felt on my body. The draenei have ancient recipes, passed on between generations, to combat the side effects of prolonged riftwalking. While I do not have access to the traditional ingredients, I am sure the native wildlife here are fit enough to create a substitute cure.$B$BWhen I ventured east to scout the area, I encountered intimidating creatures with big, meaty claws - their flesh should bring enough sustenance. To the west, not far actually, furry beings gather herbs of intense smell. Judging from their scent, I am certain they harbor medicinal properties. Bring me enough of both and I can cook a remedy for my tired body.", + ["O"] = "Akh Z\'ador in Azshara requires herbs from the furbolgs to the west and flesh of the makrura to the east.", + ["T"] = "Rift Fatigue: Body", + }, + [41323] = { + ["D"] = "Now that I feel rejuvenated, our next step is retrieving my most prized possession: my riftwalker staff. When I was stranded on the auburn grass of these cliffs, I was surrounded by rabid creatures left and right. One of them, horned fiends wielding sinister hexes and curses, their features reminding me of the terrors of the Burning Legion. While I lay defenseless on the ground, they approached me like predators descending on a wounded animal. Barely able to escape, I had left my riftwalker staff behind - a mishap hurting me deeply.$B$BRegardless, even if we recover it, my failed riftwalk rendered it drained and useless. I need to infuse it with an echo of power - from an expert of forbidden arts. Back in the Swamp of Sorrows, a submerged temple towers over the canopies. Within, a masterly witcher resides exerting authority over dead trolls and dragons. End his influence over the temple and swamp; and bring a figment of his power to me.", + ["O"] = "Return with Akh Z\'ador\'s Riftwalker Cane and the Mojo of Jammal\'an to Akh Z\'ador in Azshara.", + ["T"] = "The Riftwalker\'s Cane", + }, + [41324] = { + ["D"] = "For now, this is all you can do here. Attuning my riftwalker staff to this new power will take longer than we have time, so I need you to continue onwards. While I energize the cane, you will go to the Blasted Lands, the desolate wastes south of the Swamp of Sorrows. Overlooking the red deserts, on top of a hill, my apprentice Kas\'tal awaits. I ordered him to survey suspicious fluctuations near the Dark Portal, before all of this transpired. He is surely troubled and worried about me, assure him that there is no reason to fear for my safety anymore.$B$BOnce you find him, tell him I will meet him and you in the Harborage, so we can prepare ourselves for any eventualities that hopefully will not come to pass.", + ["O"] = "Search for Akh Z\'ador\'s apprentice in the Blasted Lands.", + ["T"] = "Novice In A Barren Land", + }, + [41325] = { + ["D"] = "Master did great by sending you to me. I am sure we can thank his clairvoyance for that, as I witnessed something truly frightening mere moments ago. You see to your right the abominable Dark Portal, legacy of the orcish invasion of your world? Master\'s suspicions regarding the portal\'s energy were true. Just before your arrival, a huge surge in power and a terrible, crushing force washed over the red sands of this desert. $B$BMy intuition tells me whatever lingers in front of it must be terrifyingly powerful. $N, please do not face it alone. Although the master has put your trust in you, what we are dealing with might very well be too much for you alone.", + ["O"] = "Face whatever is meddling at the Dark Portal and return to Kas\'tal overlooking the Blasted Lands.", + ["T"] = "An Echo From Beyond", + }, + [41326] = { + ["D"] = "Quickly, rush to the Harborage and warn Sanv K\'la! If we do not evacuate all in time, who knows what horrible tragedy will befall us! I will attempt to contact Master Akh Z\'ador in the meantime, hopefully he can aid us sooner than anticipated. $R, I place all my hopes on you. Perhaps there is still time.", + ["O"] = "Alert Sanv K\'la of the imminent danger.", + ["T"] = "Fate Of The Harborage", + }, + [41327] = { + ["D"] = "Much needs to be done, the Harborage is in disarray and many have been injured. You have to excuse me, as I need to tend to my brethren. While any help would be appreciated, I must insist on leaving this to us for now. You have done enough already and it\'d be rude to ask for more.$B$BBefore you depart however, Akh Z\'ador wishes to speak with you again about something urgent. You can find him outside. Enkil Toralar, friend, and good tidings to you.", + ["O"] = "Speak with Akh Z\'ador in the Harborage.", + ["T"] = "Manifested Oddities", + }, + [41328] = { + ["D"] = "$N! A pleasure seeing you again. How have you been faring? We are still in the process of restoration, but the morale of most stays high. Some are still anxious of the uncertain future we might face.$B$BI have been looking into the pure draenethyst gemstone I gave you and I am certain I can reproduce one with the knowledge I gained from its creation. It will require an incredible amount of energy to replicate the process, but it will definitely be worth your efforts. Should you wish to have another gemstone, please bring me the following and I am more than happy to deliver it to you.", + ["O"] = "For Akh Z\'ador to create a Pure Draenethyst Gemstone, bring him the following. He awaits in the Harborage in the Swamp of Sorrows.", + ["T"] = "A Favor Asked", + }, + [41329] = { + ["D"] = "", + ["O"] = "Bring 10 Rumsey Rum Light to \'Ale Saint\' Grida", + ["T"] = "To Rum it All - Light", + }, + [41330] = { + ["D"] = "", + ["O"] = "", + ["T"] = "To Rum it All - Dark", + }, + [41331] = { + ["D"] = "", + ["O"] = "", + ["T"] = "To Rum it All - Black Label", + }, + [41332] = { + ["D"] = "", + ["O"] = "", + ["T"] = "To Rum it All - Volatile", + }, + [41333] = { + ["D"] = "", + ["O"] = "Bring the book about gemology to an ancient master of that specialization.", + ["T"] = "Advanced Gemology I", + }, + [41334] = { + ["D"] = "", + ["O"] = "Bring the book about gemology to an ancient master of that specialization.", + ["T"] = "Advanced Gemology II", + }, + [41335] = { + ["D"] = "", + ["O"] = "Bring the book about gemology to an ancient master of that specialization.", + ["T"] = "Advanced Goldsmithing I", + }, + [41336] = { + ["D"] = "Hm, how strange. This sentence here... It is missing a rune, and without it, I cannot decipher this passage. It seems we\'ve come to a halt. Don\'t think I am giving up now, however. Something as simple as a missing rune is nothing I am intimidated by.$B$B$B$BI know where to acquire the lost rune. As this grimoire is magical in nature, so is its scripture. The rune we seek can be replaced with a substitute of similar effect, one we can find in the shadowed hall of Scholomance. A harrowing place, so I heard, but their vile studies offer a solution to our problem. Retrieve a rune with this form from one of their necromantic tutors and return with it to me.", + ["O"] = "Collect a substitute rune from the Scholomance for The Artificer in Desolace.", + ["T"] = "An Unseen Obstacle", + }, + [41337] = { + ["D"] = "", + ["O"] = "Bring the book about gemology to an ancient master of that specialization.", + ["T"] = "Advanced Goldsmithing II", + }, + [41338] = { + ["D"] = "$C, news spread from atop the sacred Mount Hyjal. Our greatest fear, the Nightmare, has taken root and seeps once more into our realm. Many brave souls venture to the great World Tree to offer assistance to our brethren\'s cause to quell the Nightmare\'s influence.$B$B$N, I implore you to ascend Mount Hyjal and aid the Wardens of Nordanaar in their endeavors.", + ["O"] = "Seek the druids at the foot of the World Tree Nordrassil in Hyjal.", + ["T"] = "Mount Hyjal In Turmoil", + }, + [41339] = { + ["D"] = "$N, while our kind fights in the waking world, Ysera and her allies, the Wild Gods of Old, keep the Nightmare - an unfathomable evil rooting itself in the Emerald Dream - at bay with all their strength and might. $B$BYears ago, during the Third War, Shan\'do Stormrage and High Priestess Whisperwind convened with a powerful being at a sacred hill in the lower mountains of Hyjal. While usually radiating with the remnant energies of their encounter, we have noticed ripples of discord emanating from it throughout the mountain. Given the current situation, we best uncover what hides behind it posthaste.$B$B$N, seek that site near the Darkhollow Pass to the south and return to me with your findings.", + ["O"] = "Investigate the disturbances near Darkhollow Pass and report to Arch Druid Dreamwind at Nordanaar.", + ["T"] = "Shadowed Spectre", + }, + [41340] = { + ["D"] = "There is only one being in the history of Azeroth that fits the description of what you experienced - the Wild God Malorne, the Waywatcher. He was ancient when this world was young, one of the primal guardians roaming the untamed wilds years before the Sundering. His immense power and prideful presence strikes fear into his enemies and comrades alike, yet his loving way of fostering nature made him revered with the latter.$B$BWhat you experienced is horrid. To think the Nightmare might have taken a hold on even a fragment of the great Malorne is terrifying. We must act immediately. $N, while I send notice to Moonglade, I need you to gather twenty bright dream shards. They are imperative to shield you against the Nightmare\'s grasp. Assist us in our cause, scour the hills of Hyjal. However you acquire them, do it quickly!$B$BOnce you have them all, bring them to Keeper Remulos in Moonglade. He will give you further instructions.", + ["O"] = "Bring twenty Bright Dream Shards to Keeper Remulos in Moonglade.", + ["T"] = "The Son Of Cenarius", + }, + [41341] = { + ["D"] = "Malorne cannot fall to the Nightmare. Luckily for us, it appears only a fragment of himself split from his spirit in the Emerald Dream, which is what the Nightmare took control of. Yet even a fraction of the Waywatcher is enough for it to gain an insurmountable advantage in this war already stacked against us. To cleanse grandfather of this taint, we require relics reminding him of his kin.$B$BThe Bough of Cenarius is a piece of my father\'s antlers. After his fall in Ashenvale, we brought his body to Bough Shadow, before returning him to the Moonglade for burial. Perhaps you can find it amongst the dragonkin there.$B$BYsera is a dear friend of Malorne and foster mother to our father. A scale of her jade skin would certainly help our cause. Her most favored children all possess one. Unfortunately, most if not all of them dwell in the Emerald Dream.$B$BLastly, a remembrance of Elune. Her chosen guardians, the Moonkin, hold many of her artifacts in Winterspring, search for them there.", + ["O"] = "Gather the needed relics for Keeper Remulos in Moonglade.", + ["T"] = "Tethered Memories", + }, + [41342] = { + ["D"] = "Here, young one, take this Scepter of Remembrance, conjured from the relics and dream shards you have brought to me. With it, you will be able to withstand the Nightmare long enough to pry Malorne\'s fragment from its grasp.$B$BNevertheless, be cautious. It is doubtful the Nightmare will let go of its prey so easily. Gather allies and like minded individuals and save my grandfather\'s spirit.$B$BMake haste, lest he manages to manifest himself in our world.", + ["O"] = "Cleanse the Dissipating Spectre at the Prophet\'s Hill in Hyjal and return to Keeper Remulos.", + ["T"] = "The White Stag", + }, + [41343] = { + ["D"] = "$R, here? Please, no kill. No kill Big Whiskers! Big Whiskers here by mistake. Big Whiskers called by weird see through human. Big Whiskers just want leave. But Big Whiskers can’t leave. No. Big Whiskers first needs BIG CANDLE!$B$BBig candle very important to Big Whiserks and his friends. Yes, yes. Big Whiskers give reward, reward, yes! Bring Big Whiskers big candle. Please?$B$BAsk Doorman, Doorman must know!", + ["O"] = "Speak to Doorman Montigue in Lower Karazhan Halls.", + ["T"] = "I Am No Rat", + }, + [41344] = { + ["D"] = "As I ponder your request, I\'m left in uncertainty, not knowing whether to respond with laughter or concern for the state of your sanity. Your requirements for this sizable, I mean colossal, candlestick hint at some kind of experimentation within the Master\'s Library.$B$BWith you describing the magnitude of the candle necessary for whatever you intend to accomplish, along with your questionable means of access to that venue, I admit that I feel conflicted. Nonetheless, I do sense a palpable aura of strength emanating from you, which leads me to believe that you have the power to navigate those mysterious halls.$B$BHaving said all that, I seem to recall a candle of considerable size positioned at the end of the guest hall.", + ["O"] = "Recover the Comically Large Candle from Grizikil and return to Big Whiskers in Upper Karazhan.", + ["T"] = "Comically Large Candle", + }, + [41345] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Altar of an Ancient Evil", + }, + [41346] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Mossy Mystery", + }, + [41347] = { + ["D"] = "I am bored beyond measure. This eternal purgatory I am chained to is not as painful as you might think, but moreso excruciatingly dull. I can experience earthly delights no more, and my love for jewelry is diminished by my inability to wear it. Even so, it is not like my most favoured trinket is in my possession anymore.$B$BWhen I received Medivh\'s invitation, a heap of jewelry and gemstones were among my belongings. Most precious of all, a necklace of immeasurable value, pure azerothian diamonds, adorned on a delicate arcanite chain. Worth more than any of the guests in these haunted halls ever possessed in their lifetime. Oh, if I only had it on me at the moment of my death, I would still be able to cherish its beauty. Alas, it has been stolen, many years prior to your current time. The last time I saw it was before my departure from my estate in Stormwind.$B$BLiving one, help me find my treasure, and I will reward you with a piece of jewelry bestowed upon me by Medivh himself.", + ["O"] = "Countess Tillia Earlwake seeks her stolen necklace. The last time she saw it was in her estate in Stormwind City.", + ["T"] = "Lost In Time", + }, + [41348] = { + ["D"] = "Yer looking for the Earlwake Estate? Don\'t make me laugh, that wretched place is nothing but a memory, burned to the ground years ago, and all my dreams and hopes with it. What ya see before ya is all that\'s left of the Earlwake name - this pathetic, worthless pile of failures. $B$B$B$BWe lost everything, everything! They looted our treasury and murdered anyone inside the house. Even... even my beloved Georgina... Seeing her lie there, lifeless... the diamond necklace I stole for her, still shining... That beast, that orc ripped it from her - I may be blind but I can still see it... in my head! How he laughed and worshipped his warchief, that Doomhammer! I will never forget that monster, ever! Had it been me, I would\'ve slaughtered them all, not put them into camps!$B$BWhatever ya want from me, I don\'t have it, stop asking me questions! Piss off and leave me be!", + ["O"] = "The lead runs dry, Archibald is of no help. But perhaps the description of the orc he provided can aid in the search for Tillia\'s necklace. ", + ["T"] = "Earlwake No More", + }, + [41349] = { + ["D"] = "", + ["O"] = "Analyze the journal and continue your search.", + ["T"] = "The Loss At Lordaeron", + }, + [41350] = { + ["D"] = "Inspecting the sword, you see nothing out of the ordinary, besides its apparent dilapidated condition. The blade is brittle and rusted, while the hilt\'s leather is crumbling under your touch. Its pommel is surprisingly intact, with delicate engravings along the rim. It says: H. C. On top of it, the Lordaeron emblem inside a crescent moon can be seen. Maybe this is the owner of the sword. If fortune is on your side, he also has the necklace.", + ["O"] = "Seek H.C. somewhere in Lordaeron.", + ["T"] = "The Sword Master", + }, + [41351] = { + ["D"] = "The broken blade you bring before me belonged to Razuv Ivaldi, one of Lordaeron\'s strongest knights. His sword alone fell more orcs than any other soldier on the fateful day of Lordaeron\'s siege, as he cut them down in one fell strike. $B$BFollowing the days after the invaders were repelled, he was heralded as a champion, as it was him who stopped that absolutely vicious orc woman who cut her way through our troops like butter. As a trophy of her death, he took a beautiful diamond necklace from her - one that the zealously held on to, proclaiming it to be the testament of his greatest achievement.$B$BHe was a good man and friend, but his obsession with that pendant and its meaning consumed him. The last I saw of him was at his return with the traitor Menethil, when he as one of his fellow death knights thrust his tainted runeblade into me. $N, I beg of you, find him and put his troubled spirit to rest. Please, do it in his master\'s stead.", + ["O"] = "Find Razuv Ivaldi and take Tillia\'s necklace from him. Return it to her in the opera of the Lower Karazhan Halls.", + ["T"] = "Death In One Strike", + }, + [41352] = { + ["D"] = "", + ["O"] = "Bring the golden ring to Archibald Earlwake in Stormwind Harbor.", + ["T"] = "Auntie Tillia", + }, + [41353] = { + ["D"] = "With a single touch, the Amethyst begins to shine in a dim light that could easily enthrall your eyes forevermore. Yet it was not its beauty that captivated your mind. A voice rings into your head. One that does not belong to you. It echoes in stern yet soothing tone:$B$B“You must give this more thought Incantagos. Return to Kel\'Theril and find comfort in my presence. That Tower is unpredictable and the Ley-Line on which it prays is purely chaotic. Fool yourself no longer, friend. There is another way!”$B$BThe Amethyst shines no longer. And whenever touched would simply speak the same message. What an odd item you have stumbled upon. Perhaps exploring the Lake of Kel\'Theril will offer you some sort of answer.", + ["O"] = "Investigate the mysteries of the Enchanted Amethyst.", + ["T"] = "Cold is the Night", + }, + [41354] = { + ["D"] = "It appears the Amethyst is losing its enchantment. I would ask you not to question the way it works. It is a secret that perhaps ought to die with what was this home of mine.$B$BAlas, I bid you welcome to Kel\'Theril. Once a city to behold, now, home to me and the troubled spirits of my kin. I know not why you sought me. I very much doubt it is the guilt for slaying Incantagos.$B$B$B$BA foolish son seeking to please his Father. Yet who am I, or you, to judge his path? If it\'s answers you seek you may only find them through aiding me. For a favor must be met by another favor. The highborne that linger nearby must be put to rest. All across the lake they can be seen drifting with no purpose. Free them, and you will have my thanks.", + ["O"] = "Free the spirits of Suffering and Anguished Highborne within Kel\'Theril for Al\'Dorel.", + ["T"] = "Embraced by the Moon", + }, + [41355] = { + ["D"] = "Incantagos sought the Tower for its unstable ley-lines, and the intense power that lingered there. Incantagos sought to make a name for himself in the Blue Dragonflight, to advance their cause of the great dampening on azeroth. He sought to meet Malygos himself, but Haleh denied him this right, as she believed it was not yet time for them to meet.$B$BI am uncertain of her reasons. In truth, I begin to question the actions of the Blue day by day as they began to be rather aggressive even to those they once called allies. There were times I\'d host the wyrmkin in my ruined home. It is sad to say that such times have passed, and now they have stolen something sacred to me.$B$BBefore you learn more of Incantagos\' choices, return this an item for me. A pristine moon-forged telescope that can see beyond the sky with its enchanted crystals.$B$BThey ought to have taken it inside Mazthoril to the southeast.", + ["O"] = "Bring the Magical Telescope back to Al\'Dorel.", + ["T"] = "And Lost to the Stars", + }, + [41356] = { + ["D"] = "Before Incantagos left for the Eastern Kingdoms I sought to give him counsel. For I truly was a friend of the Blue. I told him that the Ley-Line he sought was nothing but unstable and not even he, a Blue, could truly harness it. Alas, not even I- nor even the great Guardian could truly.$B$BBefore he departed, he chose to rest in the Frostwhisper Gorge. He found solace amongst the Giants, for no reason I can think of. Dragons shed when they fall in deep slumber. Seek the demise of the roaming Giants, while it may upset the elements that roam these lands. We are in need of these scales, for they can tell us more.$B$BDo not falter, friend. Perhaps you see these tasks of mine as meaningless. But I assure you, this is not something we may leave unchecked.", + ["O"] = "Brings 6 Pristine Azure Scales to Al\'Dorel.", + ["T"] = "Asleep Under Snow", + }, + [41357] = { + ["D"] = "Have a look friend. These pristine scales once shined embraced by an Azure tone. Yet now, in their lifeless form they further resembles a raw piece of lapis instead. I harbor no ill intent towards you, fret not. I simply regret Incantagos met his demise. Were I any faster, perhaps he would lived.$B$BRegardless, it seems we are yet to be closer to the truth. I was afraid of this. With Incantagos gone, the magic of these scales has long dissipated. We could briefly return life to them. But to do that we would have to either siphon the life of another Blue Dragon to it, or something akin. $B$BI am afraid you are to travel East once more, friend. In the dungeons of what is now the largest Human Kingdom to remain you will find it. That despicable creation. For what reason had he done that, I will never understand. Seek the living shard of Arc\'Tiras. Within its core you will find the very magic of the Blue, the essence of Malygos.", + ["O"] = "Bring the Core of Arc\'Tiras back to Al\'Dorel", + ["T"] = "The Enemy Lays", + }, + [41358] = { + ["D"] = "With these objects gathered I can finally find the answers we both seek. Allow me mere moments to cast my spells.$B$B$B$BThis is rather hard to accept. I am unsure how to react. I - I suppose it is not worth avoiding. Arygos sought the Ley-Line of the Tower because the Blue considers the mortal races of Azeroth unworthy of the Arcane. It seems that Malygos himself is preparing for… I wouldn\'t call it a war nor a battle. $B$BWould the ants see your foot as a declaration of war or battle? Or just pure extermination. I must know if all believe this to be the right path. I cannot leave this place, so please. Please on my behalf speak to Haleh. She is the Broodmother of Kalimdor. She rests atop Mazthoril and there is a rune inside you can use to reach her.", + ["O"] = "Speak to Haleh at the top of Mazthoril about the truth revealed by Al\'Dorel in Winterspring.", + ["T"] = "Awoke at Sun Rise", + }, + [41359] = { + ["D"] = "So Incantaos is dead. Were you not sent by Al\'Dorel I would have used my teeth rather than my words. Alas, I suppose the unexpected had once more taken a child of the Blue.$B$BIt is all true mortal. We stand ready to deprive you mortal races of the Arcane. I hope you dare not question it. Not only has your foolishness brought the Great Sundering, the damned Burning Legion and all that came with it. A portal to a different world? A great feat, one that was paid in blood a million times over.$B$BAs protectors of this world we are meant to limit the access to the Arcane. Yet all of you grew so confident and rather powerful. Lord Malygos, the very one who taught the first mages, has decided that you are no longer worthy of this responsibility. Azeroth can heal, and new races can be born.$B$BSometimes a blank canvas is the best way to fix an issue. Treat this as a warning, and leave as I still have some pity left for one that played part in both the saving and ending of Arygos. Tell him, he alone, shall be safe.", + ["O"] = "Return to Al\'Dorel", + ["T"] = "Through a Glimmering Light", + }, + [41360] = { + ["D"] = "Incantagos was not alone in his quest it seems. How could they be so blind, so ruthless? They must understand that this is not the path they must, walk. They must!$B$B$B$BSo there we have it, friend. The truth, one that even if you are to share, nobody will believe. All we can do is – live. Feel the warmth of the Sun even in these cold lands. Promises of end and death should never stop us from living today. Do not worry. For as much as I was a friend of the Blue. I will be ready, and so will you.$B$BA day will come when we shall see each other\'s faces once more. I pray it will be as long as possible. Until then. Come, I have a token from our long lost life that I wish to grant you.", + ["O"] = "Accept your gift.", + ["T"] = "Warm is the Day", + }, + [41361] = { + ["D"] = "", + ["O"] = "Find someone to teach you about the scalding gemstone.", + ["T"] = "Gleaming Blood", + }, + [41362] = { + ["D"] = "You are correct in your assumption; I indeed can teach you how to cut a Blood of the Mountain yourself. To do so however requires a set of reagents I do not have access to. This warehouse may be plentiful, but with all the machinations Thaurissan is planning, the good stuff runs dry.$B$BHere, bring me these materials and I will gladly show you the old Dark Iron art of cutting a Blood of the Mountain.", + ["O"] = "Bring Lokthos Darkbargainer the needed materials. He waits in the Grim Guzzler in the Blackrock Depths.", + ["T"] = "To Cut A Heart", + }, + [41363] = { + ["D"] = "You might\'ve convened with my disciple Alanndrian already, she has taken it up herself to investigate the dangers crawling out of the Wailing Caverns, a cursed maze of caves in the Barrens south of Ashenvale.$B$BWhile noble - and certainly naive - Naralex\' foolishness caused irreparable damage to the balance of Kalimdor, most prominently discernible at the rampant growths sprouting from the stone labyrinth. Some of these plants began to move by themselves, a testament to the potential of Naralex\' involuntary powers. I wish to study these plants, so that I may devise a countermeasure with the Cenarion Circle.$B$BBring me enough samples of the most violent plants you can find within the Wailing Caverns and you will be just rewarded.", + ["O"] = "Thundris Windweaver in Auberdine needs samples of the Unnatural Overgrowths in the Wailing Caverns.", + ["T"] = "Rampant Weeds", + }, + [41364] = { + ["D"] = "Hail $N. Still looking for more work? I have a report that needs to reach Duke Nargelas in Glenshire.$B$BFret not, you won\'t be delivering it to his hands personally. All you must do is give this scroll to Deathguard Markus, he should be stationed right outside the church Duke Nargelas haunts.$B$BIt\'s simply to let them know we\'ve decided to send adventurers into the Shadowfang Keep. Arugal mustn\'t be left alive. Getting to Glenshire shouldn\'t be that hard. You can either follow the path north or you can go back to Tirisfal Glades and reach it by traversing the Solliden Farmstead. Up to you.", + ["O"] = "Bring your report to Deathguard Markus in Glenshire.", + ["T"] = "To Guard the Undead", + }, + [41365] = { + ["D"] = "Glenshire did not have many Light worshipers, although it\'s clear that at the time we all believed that we were born into the Light. We were more focused on keeping our lands safe. Even now, as we are able to walk once more thanks to our so-called dark rebirth, my allegiance is with the people of this place. I have failed to protect the Duke in life, but I will not fail to do so in death.$B$BMy ambition aside, it was imperative that I express the justification for my request. Father Brightcopf guided us through the blinding Light in the past, and he is now helping us crawl into the shadow. He places the needs of the Forsaken before his own, displaying the same selflessness in death that he displayed in life.$B$BNorth of here stands the last camp of the Lordaeron remnants. Private William, our altar boy, walks among them. We can\'t muster ourselves to kill him. So I am asking you to carry out this deed. William is known to patrol from the Shatterridge Tower to the entrance of the camp.", + ["O"] = "Slay Private William and report to Father Brightcopf in Glenshire.", + ["T"] = "To Aid Brightcopf", + }, + [41366] = { + ["D"] = "Duke Nargelas and the Baron of Silverlaine were good friends in life. Because of the respect and friendship they held for one another I too decided to keep close communication with the Prelate of Silverlaine Keep. Prelate Ironmane soon became my closest friend. He was a man like no other.$B$BAt times I\'d leave Glenshire simply to hear his sermons. The way he spoke of the Light and the peace it brought him made me feel inferior as a holy man, even jealous perhaps. He would be ashamed were he to see me in this state.$B$B$B$BI know how this sounds $N, but I hear the call of his spirit from the now corrupted keep. Ghosts face a different type of undeath, unlike ours. While I managed to regain myself after the Lich King\'s grasp weakened, he will forever be stuck in a certain place in time. Not even aware of his own death.$BPlease, allow my friend to rest.", + ["O"] = "Slay Prelate Ironmane and return to Father Brightcopf in Glenshire.", + ["T"] = "Too Late to Prelate", + }, + [41367] = { + ["D"] = "While waking Naralex should be your main goal, other things are required of you.$B$BThrough the cracks, as slippery as they could be the Kolkar found their way hidden in a branch of the Winding Chasm. As we attempted to slay those that we set eyes upon during this invasion, one of them claimed the Wailing Caverns as their birthright.$B$BFar from it, of course. The Kolkar trample on the love of the Earthmother and bring nothing but destruction wherever they see fit! The name of this zealous Kolkar is Zandara Windhoof.$BAs radical as this may sound, I want you to bring me her head.", + ["O"] = "Slay Zandara Windhoof within Wailing Caverns, and bring her head back to Nalpak in the Barrens.", + ["T"] = "Against the Kolkar Dream", + }, + [41368] = { + ["D"] = "We do what the living cann- bah! I am piss tired of acting like nothing happened!$BCongratulations $N, you get to hear exactly -HOW- tired. It must be a thrill, right? Right?!$B$B$B$BI apologise, it seems something just clicked in my noggin just now. Feeling just a tad melancholic you see.$BI used to be a top-notch blacksmith at what\'s now known as the dreaded Scarlet Monastery. I remember the days I used to forge armor within the blessings of the Light.$B$BAnd nowadays, nowdays these maggots stare at me for even the mention of our former faith. Fools, all of them.$BAs luck has it, I was away from the Monastery the day that evil spawn Arthas scourged this entire city -- and now I am bound to forge my work around in the muck. Outrageous, I tell you, outrageous!$BMy apprentice Daghelm should be alive somewhere in the armory. The fool probably holds the journal I had on lightforge ingots - I want it back, even if you have to pry it from his dead cold fingers.", + ["O"] = "Slay Armory Quartermaster Daghelm and return Basil\'s journal to him in Undercity.", + ["T"] = "Reminiscent of Steel", + }, + [41369] = { + ["D"] = "Vestiges of great power emanate from you, stranger. Vestiges akin to those circulating within the accursed tower, looming over this dead ravine. What feels like eons ago, us denizens of this church have been tasked to safekeep a relic, one that Hanvar restored for you not long ago. It is part of a powerful artifact, a conduit of unbound magic. Formerly used by the Guardian himself, it is now broken - a safety measure to ensure no evil abuses it to harm Azeroth like he once did.$B$BIts parts are not only scattered throughout the tower, but the world too. Should you be able to acquire them on your journey, bring them to me and I may return them to their original form. However, to achieve this, an ample amount of arcane energy is necessary. I cannot leave this place, so it is up to you to bring me such a thing. The guardian\'s tower would be a suitable place to find it.", + ["O"] = "To restore the Scepter Rod of Medivh, Anelace the Clairvoyant at Morgan\'s Plot in Deadwind Pass needs a high amount of arcane energy.", + ["T"] = "The Scepter Rod of Medivh", + }, + [41370] = { + ["D"] = "What I sense from you - this paralyzing heat, so much pressure, I can barely take it! You have returned with the scepter head and it yearns to be reunited with its counterpart. Let us not waste time, lest the immense force of these items will be too much to bear.$B$BIt is within my abilities to restore the Scepter of Medivh to its full glory, with the help of the remaining cosmic residue. However, it would only be a superficial restoration. The scepter is but a useless bauble if not infused with the essence of the guardian, as it was his touch that awakened it. Unless we find a way to attune it to Medivh, utilizing it will be impossible.$B$BSeeing as the guardian does not dwell here any longer, finding such glimmers of him appears impossible. Please, it is imperative for you and me to locate it, or the scepter will forever remain inactive.", + ["O"] = "A figment of Medivh is necessary to imbue the Scepter of Medivh with. Bring it to Anelace the Clairvoyant at Morgan\'s Plot outside Karazhan.", + ["T"] = "Tirisfal\'s Vestige", + }, + [41371] = { + ["D"] = "The scepter is complete, yet... different to how I remembered it. It looks identical, but the presence it has feels dull, almost empty. While the guardian\'s power is very much noticeable, there is an unmistakeable residue of foreign energy within the scepter itself. This energy lies dormant, asleep and longs to be awakened. $N, I fear we are not done yet, before we have released this magic from the relic.$B$BWhen I focus my mind on the artifact, I recognize floating stone, a land tormented and fire being spewed from the ground. A race of traveling mystics, subdued by an emerald flame.$B$B$N, please forgive me for not being helpful enough. In order to harness the foreign magic of the scepter, I would need to harmonize it with an energized item from that plane I described to you. Where you would find such a thing, eludes my eyes, however.", + ["O"] = "Attune the raging, alien magics within the Scepter of Medivh by bringing a source of similar magic to Anelace the Clairvoyant at Morgan\'s Plot outside Karazhan.", + ["T"] = "The Otherwordly Scepter of Medivh", + }, + [41372] = { + ["D"] = "The attunement will take some of my time and energy. Please tell me once you wish me to start the process.", + ["O"] = "Bear witness to the creation of the Scepter of Medivh.", + ["T"] = "A Pathway Opened", + }, + [41373] = { + ["D"] = "The text is written in a very sluggish Goblin slang. As you circle through the pages familiar recipes meet the eye, but nothing too interesting. With a sigh, you turn to the next page to notice a missing page. You would pay no mind to it were the book not to end there, but now that it did you were weighing in the possibilities.$B$BA dozen what-ifs come to mind as you decide to close the book. On its back, you can make out the name “The Great Gastino” – what was so great about this common book? Who is this Gastino, and who could tell you more? As curiosity roots deeply at the back of your mind, you remember a ghostly cook in the lower halls of Karazhan.", + ["O"] = "Find The Cook in Lower Karazhan Halls.", + ["T"] = "A Chef\'s Majesty", + }, + [41374] = { + ["D"] = "Gastino\'s recipe book was quite common as you may have already noticed. But it did contain a certain recipe that rejuvenated the focus of any healer. Oddly enough, while the priests acknowledged the goblin\'s greedy ambitions, they couldn\'t help but feel grateful for this recipe he left behind.$B$BIn a way, I think they appreciated the simplicity of it. Since it was nothing but an assorted salad. I am afraid I don\'t know the recipe by heart but I think this missing page should be somewhere in the crypts. This book belonged to someone buried there. Be wary, I feel time hasn\'t been kind to that place.", + ["O"] = "Slay the Ravenous Strigoi in Karazhan Crypts and return to The Cook in Lower Karazhan Halls.", + ["T"] = "No Honor Among Chefs", + }, + [41375] = { + ["D"] = "Upon first glance, the book seemed to be a perfectly normal tome. Yet as you began to study its contents, you quickly gathered that its appearance was more akin to that of a rough journal than an expertly written work. By the title, it claimed to be a study - yet the tattered pages and sloppily drawn text seemed as though they had passed through the hands of a child.$B$B\"While I welcomed the idea of Ancients and Treants within Eldre\'thalas with open arms many of my brethren saw it rather unnecessary. We were more accustomed to the Arcane, and in their mind working with these magical creatures was the domain of the Druids that wielded magic akin to theirs. Yet as if to spite them over time it seems that both manifestations of these magical trees adapted rather well, with some of the treants even growing leaves with a hue of blue.”$B$BAs you squint your eyes you can make out a name under the text you just read: Lydros.", + ["O"] = "Travel to Dire Maul and seek Lorekeeper Lydros.", + ["T"] = "A Study of Magical Trees", + }, + [41376] = { + ["D"] = "I do recognize this journal. It is something I used to keep for Prince Tortheldrin. We used to meet and discuss various things, not just he and I but most of the Lorekeepers. Eldre\'thalas was a place of knowledge. Sadly it is nothing but a shadow of what it used to be. I appreciate you bringing this back.$B$BIf you have the time, I have a request. Upon examining this tome, I have discovered an incomplete glyph carved upon the final page. As we never concluded our research, I must ask of you to travel to the Warpwood Quarter and defeat the tainted Treants that roam the area. With any luck, they may still carry upon their foliage the blue color that once adorned them. If you bring to me these leaves, I will reward you with the results of our investigation.", + ["O"] = "Bring 5 Blue Leaves to Lorekeeper Lydros", + ["T"] = "Wrapping Warpwood", + }, + [41377] = { + ["D"] = "Now, it will take me some time to delve into Ur\'s teachings. I must ensure that no vital detail escapes my attention. The tome is expansive, and Ur is known to embed secret messages for those who are keen of mind.$B$BIn the meantime, I have a task for you. Among the wise sages of this world, few possess the wisdom and insight of Fandral Staghelm, the leader of our order. He resides in Darnassus.$B$BJourney to Darnassus and inform him of your findings. Surely, he will offer valuable counsel regarding this potent artifact.", + ["O"] = "Find Arch Druid Staghelm in Darnassus and seek his counsel.", + ["T"] = "Scythe of the Goddess", + }, + [41378] = { + ["D"] = "Elune\'s mysteries are profound, and even I, with all my knowledge, can find them inscrutable at times. I do not fully grasp why She would entrust Velinde—yes, that was her name—with such an artifact as the Scythe of Elune. Yet, its power to summon worgen may indeed be the very key to unlocking its deeper truths.$B$BI have long been engaged in research into a peculiar herb known as morrowgrain. Interestingly, my studies suggest it might be instrumental in purging the dark energies that cling to the Scythe from its time in Karazhan. But to activate the morrowgrain, a potent catalyst is required. Therefore, bring me blood—the blood of the worgen, collected from various tribes lurking in the darkest recesses of Karazhan, prowling the abandoned streets of Gilneas City, and hiding within the shadows of Shadowfang Keep.$B$BDo this, and bring them to me. Do not delay. The power of the Scythe must be harnessed and understood by one as capable as I.", + ["O"] = "Gather worgen blood for Fandral Staghelm. He requires blood samples from Karazhan, Gilneas City and Shadowfang Keep.", + ["T"] = "Blood of Vorgendor", + }, + [41379] = { + ["D"] = "I was right, as always. Thanks to the morrowgrain, I have successfully purged the darkness from the worgen blood you gathered. Now, witness!$B$B$B$BThis may not seem like much to you, but what you see before you is a testament not only to the strength of their bloodline but also to their connection to Elune. Look closer. Do you notice it in their blood?$B$BIndeed. As pure as the waters of our moonwells. That\'s what they were before blood magic tainted their species. Bring this to Dreamwind at once. He will know what to do next.$B$BAnd, should you ever find the burden of wielding the Scythe too much for your weary shoulders... you know where to find me.", + ["O"] = "Bring Pure Worgen Blood to Arch Druid Dreamwind at Nordanaar in Hyjal.", + ["T"] = "Wolfblood", + }, + [41380] = { + ["D"] = "Now, it will take me some time to delve into Ur\'s teachings. I must ensure that no vital detail escapes my attention. The tome is expansive, and Ur is known to embed secret messages for those who are keen of mind.$B$BIn the meantime, I have a task for you. Among the wise sages of this world, few possess the wisdom and insight of Fandral Staghelm, the leader of our order. However, I fear that he may not be as receptive to your presence as I am.$B$BYet, not all hope is lost. Among your tauren allies, there is one who is nearly as wise as Fandral. I speak of Magatha Grimtotem. Despite the occasional unruliness of her clan, they have always revered Elune, whom they call Mu\'sha.$B$BTo my knowledge, she now resides in the great city of Thunder Bluff. Go there and seek her counsel. Perhaps she holds knowledge about the Scythe that eludes even me. Your journey is far from over, and the wisdom of the Grimtotem may prove invaluable.", + ["O"] = "Find Magatha Grimtotem and seek her counsel.", + ["T"] = "Scythe of the Goddess", + }, + [41381] = { + ["D"] = "I have heard many tales of this weapon and the vile fate that befell it. Yet, not all is lost, for we may be able to cleanse it from the darkness of Karazhan.$B$BRecently, some members of the Cenarion Circle, especially those closest to Fandral Staghelm, have begun amassing significant amounts of a certain herb called morrowgrain. From what Archdruid Hamuul has shared with me, I believe that this herb might be the key to purifying the Scythe.$B$BHowever, for it to work, a powerful catalyst is required. We need the blood of the worgen—blood from various tribes lurking in the darkest corners of Karazhan, prowling the forsaken streets of Gilneas City, and hiding within the shadows of Shadowfang Keep.$B$BGather their blood and bring it to me. Together, we may yet be able to cleanse the Scythe and restore it to its true purpose.", + ["O"] = "Gather worgen blood for Magatha Grimtotem. She requires blood samples from Karazhan, Gilneas City and Shadowfang Keep.", + ["T"] = "The Wolf, the Crone and the Scythe", + }, + [41382] = { + ["D"] = "Whatever Fandral\'s lackeys are planning with morrowgrain must be truly extraordinary... But I digress. The blood has indeed been cleansed. Here, take a look, child.$B$B$B$BPure as the waters of the moonwell, shining like the stars themselves. Before whatever horrible fate befell these worgen, they were the favorite children of Mu\'sha, no doubt.$B$BBring this back to Dreamwind at once. He will want to know.$B$BAnd keep the Scythe close. Some members of the Cenarion Circle may not be so pleased that it is in your hands.", + ["O"] = "Bring Pure Worgen Blood to Arch Druid Dreamwind in Nordanaar.", + ["T"] = "Wolfblood", + }, + [41383] = { + ["D"] = "During your absence, I delved deep into the teachings of Ur, scrutinizing every passage, every word, and every hidden meaning within the tome. The knowledge I uncovered is both enlightening and deeply unsettling.$B$BStay awhile and listen, young $r. The wisdom contained in Ur\'s writings is profound, but it also reveals a grim truth about the Scythe of Elune and the nature of its power.", + ["O"] = "Listen to what Arch Druid Dreamwind learned during your absence.", + ["T"] = "Wisdom of Ur", + }, + [41384] = { + ["D"] = "It is time to bring down Keeper Gnarlmoon. The fate of our world depends on it. His presence in Karazhan is a blight that cannot be tolerated, and his schemes must be thwarted before they come to fruition. The balance of nature itself is at stake.$B$BYou have already ventured into the Upper Chambers of Karazhan in your quest for the tome, so you are familiar with the labyrinthine corridors and shadowed halls. The journey ahead will not be easy, but your previous experience will serve you well. Gnarlmoon has entrenched himself in the very heart of Karazhan\'s dark magic, drawing power from the cursed place to fuel his malevolent plans.$B$BBut beware, for Gnarlmoon is no ordinary adversary. He is a bloodmage of legendary power, one who has dabbled in the darkest arts for centuries. His command over blood magic is unparalleled. To face him alone would be folly. You will need allies, strong and brave companions who can stand with you against the tide of darkness.", + ["O"] = "Slay Keeper Gnarlmoon. He can be found in the Upper Chambers of Karazhan.", + ["T"] = "Pricolich Gnarlmoon", + }, + [41385] = { + ["D"] = "My ravens have whispered of a dark presence that once shadowed the streets of Gilneas City. Far across the sea, amidst the gloom and mist, a worgen bloodmage was seen weaving his vile magic. This creature has left an indelible mark on the already troubled land. The details are scarce, but one thing is certain: he often conspired with the infamous regents of Gilneas, the Harlows.$B$BThe Harlows are a cunning and ruthless family.It is said that they would align themselves with anyone who could further their ambitions, no matter the cost. The bloodmage found in them willing accomplices, ones who would turn a blind eye to his dark practices as long as it suited their needs. It is within their shadowy dealings that the key to the bloodmage\'s plans may lie.$B$BIf I could leave the sacred groves of Hyjal, I would journey to Gilneas myself. But you, young one, have the freedom to venture forth where I cannot. Your path is clear, and it leads to the mist-shrouded streets of Gilneas City.", + ["O"] = "Venture to Gilneas City and search for the whereabouts of the second Pricolich.", + ["T"] = "Gilnean Pricolich", + }, + [41386] = { + ["D"] = "In the annals of ancient lore penned by Ur, it is whispered that the mere utterance of the pricolich\'s name could serve as a beacon, drawing forth his dark presence into our realm. But heed me closely, for there exists a stratagem, a cunning plan to entice him forth under our control. $B$BTake this arcane orb, a relic of ages past, infused with the essence of primal magic. With it in hand, venture westward to the site of an ancient Circle of Power, a nexus of energies both primordial and potent. There, amidst the whispering winds and the rustling leaves, speak the name of the pricolich.$B$BBut do so with caution, for his arrival must be orchestrated with precision. Once summoned, we shall wield the Circle\'s might to ensnare him, stripping away his dark powers and rendering him vulnerable. It is then, in that moment of weakness, that we shall strike, banishing him back to the shadows from whence he came, and securing our realm from his malevolent grasp for eternity.", + ["O"] = "Slay Father Lycan in the Circle of Power.", + ["T"] = "Pricolich Lycan", + }, + [41387] = { + ["D"] = "So you step before me. Surely to seek tutelage in the art of war - why else would you search for the master of arms. You are one among many who wish to reach expertise in the martial arts, but will you be one of the few to actually achieve it? I\'ve lost count on how many gullible and naive warriors think they are worthy of my teachings, only to fail at the slightest challenge. Unless your worth is proven to me, I cannot be sure you are suitable for what\'s to come.$B$BHigh up the mountains to the north lies a defiled forest called Felwood. Even further north you will find the Irontree Cavern; from within this cave a root, cold as iron and equally heavy, is what I require of you. Pick the root and bring it safely to me.", + ["O"] = "Return with an Ironvine Root to Mathias Brightheart on Fray Island.", + ["T"] = "Iron Determination", + }, + [41388] = { + ["D"] = "Apologies for my brash demeanour, but I have to make sure you are cut out for the path of war. You may be experienced in the martial arts, but following my path takes more than what you’ve accomplished so far.$B$BAs previously mentioned, many ambitious people stood where you are now, but only a few succeeded. It is important to learn from mistakes, our own and those of others. Speak with my former pupils, and they will share stories of failure. Only if you really understand their faults will you proceed. Speak with Sakgoth and Klannoc on this island and Ka’fai in Tanaris. I heard the thrill of the desert lured him to the city of Gadgetzan. Once you’ve done so, return and answer my questions about their tellings.", + ["O"] = "Pass Mathias Brightheart\'s test.", + ["T"] = "Wisdom From Failure", + }, + [41389] = { + ["D"] = "Here, take the glass marble and bring it to Sakgoth. It is proof of your deeds and signals you as his equal. Be ever vigilant and remember what you learned. I am excited to witness your further growth!", + ["O"] = "Hand the Glass Marble to Sakgoth in the next room.", + ["T"] = "Proof", + }, + [41390] = { + ["D"] = "Hey, you. Headed to Westfall, by chance? The SI:7 is on a big lead about the Defias\' machinations involving individuals outside of Westfall. We suspect they\'re dealing with some sort of highly volatile chemical that could pose a threat to not only Stormwind, but the rest of the Eastern Kingdoms as well. We could use some... \'additional muscle\', per say, as this job may very well not be the stealthy type of deal.$B$BOne of our agents is situated down in Westfall at the bridge leading to Duskwood, near the abandoned mage tower. I want you to go and meet her, and be quick about it. There has been a sudden turn of events worth investigating. Kearnen is her name; and once you find her, do as she says.", + ["O"] = "Meet with Agent Kearnen in southern Westfall.", + ["T"] = "Drones In Westfall", + }, + [41391] = { + ["D"] = "I\'ve been spying on this tower for quite some time and anything happening around it is unfathomably strange. The Defias are sparse here, but certainly well equipped. That alone is concerning enough, yet what puzzles me the most are those zombies patrolling the parameter. Every now and again, some of the Defias enter the tower; but instead of them leaving again, a completely new specimen of these zombies shows its ugly face.$B$BI\'d like to investigate further of the internal machinations of this tower, but I am waiting on reinforcements from the SI:7. What you are here for is fairly simple, but all the more crucial. At the dock near the tower, I noticed a shady goblin mooring her rowboat full of crates. Surely a delivery of some sorts, what we need however are documents, preferably with names of the people involved in these operations. Deal with her how you like, but bring any valuable info directly back to Renzik in the SI:7 headquarters.", + ["O"] = "Recover valuable documents from the goblin and bring them to Renzik the \'Shiv\' in Stormwind.", + ["T"] = "Venture Delivery", + }, + [41392] = { + ["D"] = "Jared Voss is the son of William Voss, a highly skilled and educated alchemist. His father had an alchemy shop here in the Old Town, beloved by many. When Stormwind was burnt down a second time, his family\'s home was among those burned to ashes. During its rebuild by the Stonemason\'s Guild, Voss naturally assumed his house to be restored, given his importance as Stormwind\'s most renowned alchemist. Ironically, it would not come to pass.$B$BStormwind\'s nobility had different plans of reconstructing the city and in the end, Voss and his family became homeless. With a growing hatred in his heart, he condemned those responsible for their fate. We\'re assuming Voss sent his son to the Stonemason\'s before his death, who shared his disdain. It seems Jared succeeded his father in both hate and abilities.$B$B$N, Voss cannot be allowed to operate any longer. According to the list you brought, he dwells in the Deadmines. Liquidate him and bring me samples of his newest brew.", + ["O"] = "Infiltrate the Deadmines in Westfall and acquire Voss\' Sizzling Brew.", + ["T"] = "Turning Off The Tap", + }, + [41393] = { + ["D"] = "You possess an iron will. You draw wisdom out of past mistakes. Now demonstrate to me the strength you carry. I will keep it short, so listen up.$B$BTo the far east, in the Burning Steppes north of the Redridge Mountains, a simmering giant slumbers, his power unparalleled. Search the northern mountains, slay the fiery beast and bring me his burning eye.", + ["O"] = "Bring the Searing Eye of Rholgast to Mathias Brightheart on Fray Island.", + ["T"] = "The Strength To Move Mountains", + }, + [41394] = { + ["D"] = "With the lingering shadows of the pricoliches dead and their influence waning, the time has come for us to clenase the Scythe of Elune. Yet, such a feat is no simple task, for the tendrils of dark magicks woven within its very essence are deeply entrenched.$B$BGather close, young one, and heed my words. To commence the purification process, we shall require six Eternal Dreamstones and twenty Mooncloths. These shards shall form the cornerstone of our endeavor, serving as conduits for the purifying energies that shall flow through them.$B$BBut the path to purity is fraught with peril, for the dark magicks that infest the Scythe yearn to be unleashed once more upon the world. To contain such potent forces, we must fashion a vessel of unparalleled strength – the soul of a powerful demon. Among the ranks of the nether, whispers abound of a dreadlord named Mephistroth.$B$BVenture forth into the depths of the nether, and seek out the essence of Mephistroth\'s soul.", + ["O"] = "Bring 6 Eternal Dreamstone Shards, 20 Mooncloth and Soul of a Dreadlord to Arch Druid Dreamwind.", + ["T"] = "Scythe of the Goddess", + }, + [41395] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Hidden Compartment", + }, + [41396] = { + ["D"] = "$N, please halt for a moment. Just now, I felt a surge of energy from my grandfather\'s spirit fragment. A welcoming warmth, one I missed for many millennia. That is not all, though. It is difficult to understand, but I feel the great Malorne is trying to communicate with us - with you. I can feel the urgency in his presence. It can\'t be any other way: Malorne wishes to put his blessing on you, I am certain of it.$B$BTo receive grandfather\'s blessing, it is imperative you are in tune with the Emerald Dream, just as I am. However, aligning yourself with Ysera\'s realm is a task only veteran druids succeed in after years of meditation. Yet still, there is another way. For that, preparation is required. Aid me, $N, and I shall pave the way for you to gain Dreamsight.$B$BFirst, we need a dreamveil, woven from dreamhide and dreamthread. Furthermore, viridian mushrooms, drenched in Dream energy. Find these at Jademir Lake in Feralas. Lastly, bring me plentiful potions of dreamless rest.", + ["O"] = "Assist Keeper Remulos in Moonglade by bringing him the needed materials to craft a slumbering dreamveil.", + ["T"] = "Woven Dreams", + }, + [41397] = { + ["D"] = "With the gift of Dreamsight, an ancient ability of the green dragons, you may be able to see through the Dream\'s curtain and commune with grandfather directly. Among the Green Dragonflight was once a kind paragon, Vithekus, who was particularly fond of the mortal races. Known as the Eternal Sleeper, he entered an endless meditation and eventually left his physical body behind before anchoring his spirit to the Dream. He is the one you need to speak with. Find his remains and light this incense I created with the leftover mushrooms, it should allow you to summon his spirit.$B$BThe last time I saw Vithekus was well before the Sundering, so I do not know where his remains lie in the current age. Yet the woods whisper a name - Seradane. Seek this place and I am certain you shall find Vithekus. Do not forget to wear the Dreamveil! Its protection might not be strong, but it should suffice for your conversation with Vithekus.", + ["O"] = "Locate the remains of the green dragon Vithekus, commune with him and return to Keeper Remulos in Moonglade.", + ["T"] = "The Eternal Sleeper", + }, + [41398] = { + ["D"] = "It is time, friend. Now that you are able to gaze into the Dream itself, you may pay reverence to my grandfather - and receive the boon he intends to place upon you. While you were gone, I returned Malorne\'s spirit fragment back to him. He is complete once more, albeit still weak. Under much strain he informed me about the place he plans to meet you. I implore you, do not let him wait. We may have weakened the Nightmare\'s influence, but it would be unlikely for such a force to give up its prey that easily.$B$B$N, stand proud, as your deeds and commitment to this world\'s balance are exceptional. Being a chosen recipient of the Waywatcher\'s blessing is an honor like no other. Now venture into the Twilight Grove yonder the Great Sea. Peer into the Dreamsight Gem atop the stone ramp and bask in the White Stag\'s radiant grace.", + ["O"] = "Meet Malorne in the Twilight Grove and receive his blessing.", + ["T"] = "Under The Vibrant Moonlight", + }, + [41399] = { + ["D"] = "Many heroes fell in the last war and many continue to perish at the hands of the Scourge to this day. From the corpses of the fallen, the armor is stripped and taken back to Naxxramas to be used for unknown purposes.$B$BAmong these objects somehow a desecrated signet can be found. You must return it to me and I\'ll purify it into something you can use.", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Ring of the Dreamwalker", + }, + [41400] = { + ["D"] = "You have claimed the garments of Stormrage, $C. I can sense Nature itself in you, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, are you true to your nature?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Stormrage Head", + }, + [41401] = { + ["D"] = "You have claimed the garments of Stormrage, $C. I can sense Nature itself in you, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, are you true to your nature?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Stormrage Shoulders", + }, + [41402] = { + ["D"] = "You have claimed the garments of Stormrage, $C. I can sense Nature itself in you, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, are you true to your nature?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Stormrage Chest", + }, + [41403] = { + ["D"] = "You have claimed the garments of Stormrage, $C. I can sense Nature itself in you, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, are you true to your nature?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Stormrage Wrists", + }, + [41404] = { + ["D"] = "You have claimed the garments of Stormrage, $C. I can sense Nature itself in you, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, are you true to your nature?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Stormrage Hands", + }, + [41405] = { + ["D"] = "You have claimed the garments of Stormrage, $C. I can sense Nature itself in you, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, are you true to your nature?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Stormrage Waist", + }, + [41406] = { + ["D"] = "You have claimed the garments of Stormrage, $C. I can sense Nature itself in you, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, are you true to your nature?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Stormrage Legs", + }, + [41407] = { + ["D"] = "You have claimed the garments of Stormrage, $C. I can sense Nature itself in you, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, are you true to your nature?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Stormrage Boots", + }, + [41408] = { + ["D"] = "You have claimed the garments of Cenarion, $C. I can sense Nature itself in you, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, are you true to your nature?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Cenarion Head", + }, + [41409] = { + ["D"] = "You have claimed the garments of Cenarion, $C. I can sense Nature itself in you, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, are you true to your nature?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Cenarion Shoulders", + }, + [41410] = { + ["D"] = "You have claimed the garments of Cenarion, $C. I can sense Nature itself in you, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, are you true to your nature?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Cenarion Chest", + }, + [41411] = { + ["D"] = "You have claimed the garments of Cenarion, $C. I can sense Nature itself in you, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, are you true to your nature?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Cenarion Wrists", + }, + [41412] = { + ["D"] = "You have claimed the garments of Cenarion, $C. I can sense Nature itself in you, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, are you true to your nature?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Cenarion Hands", + }, + [41413] = { + ["D"] = "You have claimed the garments of Cenarion, $C. I can sense Nature itself in you, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, are you true to your nature?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Cenarion Waist", + }, + [41414] = { + ["D"] = "You have claimed the garments of Cenarion, $C. I can sense Nature itself in you, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, are you true to your nature?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Cenarion Legs", + }, + [41415] = { + ["D"] = "You have claimed the garments of Cenarion, $C. I can sense Nature itself in you, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, are you true to your nature?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Cenarion Boots", + }, + [41416] = { + ["D"] = "I make no pretenses, maggot. The darkness Plagueheart items hold could very well destroy the both of us. That is why the price is so high. If I\'m going to die, it\'s going to be as a rich man.$B$BAnd I don\'t give an ounce of gnoll spit how you die, only that you do as I ask. Bring me the ring we will both benefit - or die; but I\'ve already explained this...", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Plagueheart Ring", + }, + [41417] = { + ["D"] = "You don the Nemesis garments, $C. I can feel the darkness loom around you, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, are demons chatty?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Nemesis Head", + }, + [41418] = { + ["D"] = "You don the Nemesis garments, $C. I can feel the darkness loom around you, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, are demons chatty?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Nemesis Shoulders", + }, + [41419] = { + ["D"] = "You don the Nemesis garments, $C. I can feel the darkness loom around you, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, are demons chatty?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Nemesis Chest", + }, + [41420] = { + ["D"] = "You don the Nemesis garments, $C. I can feel the darkness loom around you, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, are demons chatty?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Nemesis Wrists", + }, + [41421] = { + ["D"] = "You don the Nemesis garments, $C. I can feel the darkness loom around you, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, are demons chatty?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Nemesis Gloves", + }, + [41422] = { + ["D"] = "You don the Nemesis garments, $C. I can feel the darkness loom around you, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, are demons chatty?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Nemesis Belt", + }, + [41423] = { + ["D"] = "You don the Nemesis garments, $C. I can feel the darkness loom around you, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, are demons chatty?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Nemesis Legs", + }, + [41424] = { + ["D"] = "You don the Nemesis garments, $C. I can feel the darkness loom around you, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, are demons chatty?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Nemesis Boots", + }, + [41425] = { + ["D"] = "You don the Felheart garments, $C. I can feel the darkness loom around you, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, are demons chatty?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Felheart Head", + }, + [41426] = { + ["D"] = "You don the Felheart garments, $C. I can feel the darkness loom around you, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, are demons chatty?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Felheart Shoulders", + }, + [41427] = { + ["D"] = "You don the Felheart garments, $C. I can feel the darkness loom around you, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, are demons chatty?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Felheart Chest", + }, + [41428] = { + ["D"] = "You don the Felheart garments, $C. I can feel the darkness loom around you, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, are demons chatty?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Felheart Wrists", + }, + [41429] = { + ["D"] = "You don the Felheart garments, $C. I can feel the darkness loom around you, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, are demons chatty?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Felheart Hands", + }, + [41430] = { + ["D"] = "You don the Felheart garments, $C. I can feel the darkness loom around you, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, are demons chatty?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Felheart Belt", + }, + [41431] = { + ["D"] = "You don the Felheart garments, $C. I can feel the darkness loom around you, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, are demons chatty?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Felheart Legs", + }, + [41432] = { + ["D"] = "You don the Felheart garments, $C. I can feel the darkness loom around you, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, are demons chatty?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Felheart Boots", + }, + [41433] = { + ["D"] = "During your battles with the Scourge in Naxxramas, should you come across a desecrated ring, return it to me and I shall forge it into something better suited for you.", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Ring of the Dreadnaught", + }, + [41434] = { + ["D"] = "You wear the guise of Wrath, $C. I can see the rage in your eyes, yet it seems rather dim. Perhaps the one you carry is not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, are you truly guided by Wrath?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Head of Wrath", + }, + [41435] = { + ["D"] = "You wear the guise of Wrath, $C. I can see the rage in your eyes, yet it seems rather dim. Perhaps the one you carry is not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, are you truly guided by Wrath?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Shoulders of Wrath", + }, + [41436] = { + ["D"] = "You wear the guise of Wrath, $C. I can see the rage in your eyes, yet it seems rather dim. Perhaps the one you carry is not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, are you truly guided by Wrath?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Chest of Wrath", + }, + [41437] = { + ["D"] = "You wear the guise of Wrath, $C. I can see the rage in your eyes, yet it seems rather dim. Perhaps the one you carry is not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, are you truly guided by Wrath?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Wrists of Wrath", + }, + [41438] = { + ["D"] = "You wear the guise of Wrath, $C. I can see the rage in your eyes, yet it seems rather dim. Perhaps the one you carry is not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, are you truly guided by Wrath?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Hands of Wrath", + }, + [41439] = { + ["D"] = "You wear the guise of Wrath, $C. I can see the rage in your eyes, yet it seems rather dim. Perhaps the one you carry is not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, are you truly guided by Wrath?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Waist of Wrath", + }, + [41440] = { + ["D"] = "You wear the guise of Wrath, $C. I can see the rage in your eyes, yet it seems rather dim. Perhaps the one you carry is not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, are you truly guided by Wrath?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Legs of Wrath", + }, + [41441] = { + ["D"] = "You wear the guise of Wrath, $C. I can see the rage in your eyes, yet it seems rather dim. Perhaps the one you carry is not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, are you truly guided by Wrath?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Boots of Wrath", + }, + [41442] = { + ["D"] = "You wear the guise of Might, $C. I can see the rage in your eyes, yet it seems rather dim. Perhaps the one you carry is not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, which mighty weapon do you wield?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Head of Might", + }, + [41443] = { + ["D"] = "You wear the guise of Might, $C. I can see the rage in your eyes, yet it seems rather dim. Perhaps the one you carry is not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, which mighty weapon do you wield?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Shoulders of Might", + }, + [41444] = { + ["D"] = "You wear the guise of Might, $C. I can see the rage in your eyes, yet it seems rather dim. Perhaps the one you carry is not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, which mighty weapon do you wield?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Chest of Might", + }, + [41445] = { + ["D"] = "You wear the guise of Might, $C. I can see the rage in your eyes, yet it seems rather dim. Perhaps the one you carry is not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, which mighty weapon do you wield?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Wrists of Might", + }, + [41446] = { + ["D"] = "You wear the guise of Might, $C. I can see the rage in your eyes, yet it seems rather dim. Perhaps the one you carry is not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, which mighty weapon do you wield?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Hands of Might", + }, + [41447] = { + ["D"] = "You wear the guise of Might, $C. I can see the rage in your eyes, yet it seems rather dim. Perhaps the one you carry is not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, which mighty weapon do you wield?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Waist of Might", + }, + [41448] = { + ["D"] = "You wear the guise of Might, $C. I can see the rage in your eyes, yet it seems rather dim. Perhaps the one you carry is not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, which mighty weapon do you wield?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Legs of Might", + }, + [41449] = { + ["D"] = "You wear the guise of Might, $C. I can see the rage in your eyes, yet it seems rather dim. Perhaps the one you carry is not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, which mighty weapon do you wield?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Boots of Might", + }, + [41450] = { + ["D"] = "$B$BBlessed child, while seeking the vestments of the fallen you may also encounter a desecrated loop. Yet I feel it might not be of much use to you in the way that it is.$B$BWere you to find it, return it to me and I will make sure it will be of use to you.", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Ring of Faith", + }, + [41451] = { + ["D"] = "You don the garments of Transcendence, $C. I can feel its light, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, is it the shadows you seek?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Head of Transcendence", + }, + [41452] = { + ["D"] = "You don the garments of Transcendence, $C. I can feel its light, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, is it the shadows you seek?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Shoulders of Transcendence", + }, + [41453] = { + ["D"] = "You don the garments of Transcendence, $C. I can feel its light, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, is it the shadows you seek?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Chest of Transcendence", + }, + [41454] = { + ["D"] = "You don the garments of Transcendence, $C. I can feel its light, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, is it the shadows you seek?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Wrists of Transcendence", + }, + [41455] = { + ["D"] = "You don the garments of Transcendence, $C. I can feel its light, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, is it the shadows you seek?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Hands of Transcendence", + }, + [41456] = { + ["D"] = "You don the garments of Transcendence, $C. I can feel its light, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, is it the shadows you seek?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Waist of Transcendence", + }, + [41457] = { + ["D"] = "You don the garments of Transcendence, $C. I can feel its light, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, is it the shadows you seek?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Legs of Transcendence", + }, + [41458] = { + ["D"] = "You don the garments of Transcendence, $C. I can feel its light, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, is it the shadows you seek?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Boots of Transcendence", + }, + [41459] = { + ["D"] = "You don the garments of Prophecy, $C. I can feel its light, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, is it the shadows you seek?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Head of Prophecy", + }, + [41460] = { + ["D"] = "You don the garments of Prophecy, $C. I can feel its light, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, is it the shadows you seek?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Shoulder of Prophecy", + }, + [41461] = { + ["D"] = "You don the garments of Prophecy, $C. I can feel its light, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, is it the shadows you seek?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Chest of Prophecy", + }, + [41462] = { + ["D"] = "You don the garments of Prophecy, $C. I can feel its light, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, is it the shadows you seek?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Wrists of Prophecy", + }, + [41463] = { + ["D"] = "You don the garments of Prophecy, $C. I can feel its light, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, is it the shadows you seek?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Hands of Prophecy", + }, + [41464] = { + ["D"] = "You don the garments of Prophecy, $C. I can feel its light, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, is it the shadows you seek?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Waist of Prophecy", + }, + [41465] = { + ["D"] = "You don the garments of Prophecy, $C. I can feel its light, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, is it the shadows you seek?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Legs of Prophecy", + }, + [41466] = { + ["D"] = "You don the garments of Prophecy, $C. I can feel its light, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, is it the shadows you seek?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Boots of Prophecy", + }, + [41467] = { + ["D"] = "As a Watcher, I was allowed access to many of Medivh\'s personal effects. Among those items, I found the tomes most enlightening. While the majority of the books were filled with - to put it bluntly - tripe, there were some gems. One of those tomes documented the creation of a set of armor fit for an archmage: Frostfire.$B$B$B$BYou might be able to find a ring bearing that name, were it not to suit your abilities–with the knowledge I hold we can mold it for you.", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Frostfire Ring", + }, + [41468] = { + ["D"] = "You don the garments of the Netherwind, $C. I can feel its arcane power, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, do you seek order or chaos?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Netherwind Shoulders", + }, + [41469] = { + ["D"] = "You don the garments of the Netherwind, $C. I can feel its arcane power, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, do you seek order or chaos?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Netherwind Chest", + }, + [41470] = { + ["D"] = "You don the garments of the Netherwind, $C. I can feel its arcane power, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, do you seek order or chaos?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Netherwind Wrists", + }, + [41471] = { + ["D"] = "You don the garments of the Netherwind, $C. I can feel its arcane power, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, do you seek order or chaos?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Netherwind Hands", + }, + [41472] = { + ["D"] = "You don the garments of the Netherwind, $C. I can feel its arcane power, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, do you seek order or chaos?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Netherwind Waist", + }, + [41473] = { + ["D"] = "You don the garments of the Netherwind, $C. I can feel its arcane power, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, do you seek order or chaos?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Netherwind Legs", + }, + [41474] = { + ["D"] = "You don the garments of the Netherwind, $C. I can feel its arcane power, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, do you seek order or chaos??", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Netherwind Feet", + }, + [41475] = { + ["D"] = "You don the garments of the Netherwind, $C. I can feel its arcane power, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, do you seek order or chaos?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Netherwind Head", + }, + [41476] = { + ["D"] = "You don the garments of an Arcanist, $C. I can feel its arcane power, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, do you seek order or chaos?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Arcanist\'s Head", + }, + [41477] = { + ["D"] = "You don the garments of an Arcanist, $C. I can feel its arcane power, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, do you seek order or chaos?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Arcanist\'s Shoulders", + }, + [41478] = { + ["D"] = "You don the garments of an Arcanist, $C. I can feel its arcane power, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, do you seek order or chaos?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Arcanist\'s Chest", + }, + [41479] = { + ["D"] = "You don the garments of an Arcanist, $C. I can feel its arcane power, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, do you seek order or chaos?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Arcanist\'s Wrists", + }, + [41480] = { + ["D"] = "You don the garments of an Arcanist, $C. I can feel its arcane power, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, do you seek order or chaos?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Arcanist\'s Hands", + }, + [41481] = { + ["D"] = "You don the garments of an Arcanist, $C. I can feel its arcane power, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, do you seek order or chaos?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Arcanist\'s Waist", + }, + [41482] = { + ["D"] = "You don the garments of an Arcanist, $C. I can feel its arcane power, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, do you seek order or chaos?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Arcanist\'s Legs", + }, + [41483] = { + ["D"] = "You don the garments of an Arcanist, $C. I can feel its arcane power, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, do you seek order or chaos??", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Arcanist\'s Feet", + }, + [41484] = { + ["D"] = "You will find the remnants of our fallen heroes on the corpses of the Lords of Naxxramas. Bring those desecrated keepsakes to me were they not to suit your needs and I will provide an alternative.", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Ring of Redemption", + }, + [41485] = { + ["D"] = "You wear the guise of Judgment, $C. I see it shine under the light of your faith, yet it seems rather dim. Perhaps the one you carry is not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, what sins do you seek to judge?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Judgement\'s Head", + }, + [41486] = { + ["D"] = "You wear the guise of Judgment, $C. I see it shine under the light of your faith, yet it seems rather dim. Perhaps the one you carry is not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, what sins do you seek to judge?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Judgement\'s Shoulders", + }, + [41487] = { + ["D"] = "You wear the guise of Judgment, $C. I see it shine under the light of your faith, yet it seems rather dim. Perhaps the one you carry is not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, what sins do you seek to judge?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Judgement\'s Chest", + }, + [41488] = { + ["D"] = "You wear the guise of Judgment, $C. I see it shine under the light of your faith, yet it seems rather dim. Perhaps the one you carry is not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, what sins do you seek to judge?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Judgement\'s Wrists", + }, + [41489] = { + ["D"] = "You wear the guise of Judgment, $C. I see it shine under the light of your faith, yet it seems rather dim. Perhaps the one you carry is not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, what sins do you seek to judge?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Judgement\'s Hands", + }, + [41490] = { + ["D"] = "You wear the guise of Judgment, $C. I see it shine under the light of your faith, yet it seems rather dim. Perhaps the one you carry is not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, what sins do you seek to judge?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Judgement\'s Waist", + }, + [41491] = { + ["D"] = "You wear the guise of Judgment, $C. I see it shine under the light of your faith, yet it seems rather dim. Perhaps the one you carry is not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, what sins do you seek to judge?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Judgement\'s Legs", + }, + [41492] = { + ["D"] = "You wear the guise of Judgment, $C. I see it shine under the light of your faith, yet it seems rather dim. Perhaps the one you carry is not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, what sins do you seek to judge?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Judgement\'s Feet", + }, + [41493] = { + ["D"] = "You wear the guise of the Lawbringer, $C. I see it shine under the light of your faith, yet it seems rather dim. Perhaps the one you carry is not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, by which law shall your hand be guided?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Lawbringer\'s Head", + }, + [41494] = { + ["D"] = "You wear the guise of the Lawbringer, $C. I see it shine under the light of your faith, yet it seems rather dim. Perhaps the one you carry is not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, by which law shall your hand be guided?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Lawbringer\'s Shoulders", + }, + [41495] = { + ["D"] = "You wear the guise of the Lawbringer, $C. I see it shine under the light of your faith, yet it seems rather dim. Perhaps the one you carry is not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, by which law shall your hand be guided?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Lawbringer\'s Chest", + }, + [41496] = { + ["D"] = "You wear the guise of the Lawbringer, $C. I see it shine under the light of your faith, yet it seems rather dim. Perhaps the one you carry is not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, by which law shall your hand be guided?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Lawbringer\'s Wrists", + }, + [41497] = { + ["D"] = "You wear the guise of the Lawbringer, $C. I see it shine under the light of your faith, yet it seems rather dim. Perhaps the one you carry is not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, by which law shall your hand be guided?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Lawbringer\'s Hands", + }, + [41498] = { + ["D"] = "You wear the guise of the Lawbringer, $C. I see it shine under the light of your faith, yet it seems rather dim. Perhaps the one you carry is not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, by which law shall your hand be guided?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Lawbringer\'s Waist", + }, + [41499] = { + ["D"] = "You wear the guise of the Lawbringer, $C. I see it shine under the light of your faith, yet it seems rather dim. Perhaps the one you carry is not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, by which law shall your hand be guided?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Lawbringer\'s Legs", + }, + [41500] = { + ["D"] = "You wear the guise of the Lawbringer, $C. I see it shine under the light of your faith, yet it seems rather dim. Perhaps the one you carry is not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, by which law shall your hand be guided?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Lawbringer\'s Feet", + }, + [41501] = { + ["D"] = "You have claimed the garments of the Ten Storms, $C. I can sense the will of the elements and your might, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, how should the elements aid you?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Head of Ten Storms", + }, + [41502] = { + ["D"] = "You have claimed the garments of the Ten Storms, $C. I can sense the will of the elements and your might, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, how should the elements aid you?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Shoulders of Ten Storms", + }, + [41503] = { + ["D"] = "You have claimed the garments of the Ten Storms, $C. I can sense the will of the elements and your might, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, how should the elements aid you?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Chest of Ten Storms", + }, + [41504] = { + ["D"] = "You have claimed the garments of the Ten Storms, $C. I can sense the will of the elements and your might, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, how should the elements aid you?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Wrists of Ten Storms", + }, + [41505] = { + ["D"] = "You have claimed the garments of the Ten Storms, $C. I can sense the will of the elements and your might, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, how should the elements aid you?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Hands of Ten Storms", + }, + [41506] = { + ["D"] = "You have claimed the garments of the Ten Storms, $C. I can sense the will of the elements and your might, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, how should the elements aid you?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Waist of Ten Storms", + }, + [41507] = { + ["D"] = "You have claimed the garments of the Ten Storms, $C. I can sense the will of the elements and your might, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, how should the elements aid you?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Legs of Ten Storms", + }, + [41508] = { + ["D"] = "You have claimed the garments of the Ten Storms, $C. I can sense the will of the elements and your might, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, how should the elements aid you?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Boots of Ten Storms", + }, + [41509] = { + ["D"] = "You have claimed the garments of Earthfury, $C. I can sense the will of the elements and your might, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, how should the elements aid you?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Earthfury Head", + }, + [41510] = { + ["D"] = "You have claimed the garments of Earthfury, $C. I can sense the will of the elements and your might, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, how should the elements aid you?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Earthfury Shoulder", + }, + [41511] = { + ["D"] = "You have claimed the garments of Earthfury, $C. I can sense the will of the elements and your might, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, how should the elements aid you?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Earthfury Chest", + }, + [41512] = { + ["D"] = "You have claimed the garments of Earthfury, $C. I can sense the will of the elements and your might, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, how should the elements aid you?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Earthfury Wrists", + }, + [41513] = { + ["D"] = "You have claimed the garments of Earthfury, $C. I can sense the will of the elements and your might, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, how should the elements aid you?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Earthfury Hands", + }, + [41514] = { + ["D"] = "You have claimed the garments of Earthfury, $C. I can sense the will of the elements and your might, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, how should the elements aid you?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Earthfury Waist", + }, + [41515] = { + ["D"] = "You have claimed the garments of Earthfury, $C. I can sense the will of the elements and your might, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, how should the elements aid you?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Earthfury Legs", + }, + [41516] = { + ["D"] = "You have claimed the garments of Earthfury, $C. I can sense the will of the elements and your might, yet it seems rather dim. Perhaps the ones you carry are not suited for the tasks you are willing to perform.$B$B$B$BHand it here and tell me, how should the elements aid you?", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Earthfury Boots", + }, + [41517] = { + ["D"] = "Would you honor me by returning the armor of those that fell in the defense of these lands?$B$BIn your many hardships you will also find a desecrated signet. With it, your armor will be complete.$B$BIt may have not been forged to mold around the use of your skills, fret not. Return it to me and I will change it for you.", + ["O"] = "Trade in your current item for the item that best suits your needs.", + ["T"] = "Ring of the Earthshatterer", + }, + [41518] = { + ["D"] = "Now tell me: How does it feel to be proven worthy by the master? When he chose me as his apprentice, it was the greatest honor I ever felt, you surely feel the same.$B$BIf the master wishes to share his knowledge with you, I can assist you with that - for a price, ofcourse. He may be benevolent, but not foolish enough to act in charity, you have to contribute your share of work as well. Hidden within the most dangerous places of Azeroth you will find texts, those from ancient times, containing long forgotten teachings. Find them and with a bit of gold from your end, I can get you on the right track to unlock new battle strategies for you.", + ["O"] = "Present Sakgoth with an Ancient Warfare Text and 250 Gold to gain access to knowledge of the martial arts. He awaits on Fray Island in the Barrens.", + ["T"] = "Mastery of Staves", + }, + [41519] = { + ["D"] = "", + ["O"] = "Bring the Mastery of Staves book to Nora Steamsight on Fray Island.", + ["T"] = "Staff Meeting", + }, + [41520] = { + ["D"] = "We are often visited by the Theramore soldiers, and they always tell this story.$B$BPicture this: during the siege, those who stood by Jaina and Thrall\'s New Horde had an extraordinary ally—a pandaren Brewmaster named Chen Stormstout. I\'m talking about someone who fought with such passion and skill, it was like watching a whirlwind of power and precision! Chen\'s mastery with his staff was nothing short of legendary.$B$BBut get this—after the battle, the guy just planted his Brewmaster staff right into the ground and walked off into the horizon. Can you believe it? They say the fight was so brutal and intense that he just couldn\'t bear to be reminded of it ever again.$B$BNow, I\'m not saying this story is gospel, but if there\'s any truth to it, Master Brightheart would be over the moon if we could recover that Pandaren staff! Just imagine what we could learn from its design and construction. It could totally revolutionize our understanding of weapon craftsmanship!", + ["O"] = "Recover the Staff of Chen for Mathias Brightheart on Fray Island in the Barrens.", + ["T"] = "Stormstout Legacy", + }, + [41521] = { + ["D"] = "Now tell me: How does it feel to be proven worthy by the master? When he chose me as his apprentice, it was the greatest honor I ever felt, you surely feel the same.$B$BIf the master wishes to share his knowledge with you, I can assist you with that - for a price, ofcourse. He may be benevolent, but not foolish enough to act in charity, you have to contribute your share of work as well. Hidden within the most dangerous places of Azeroth you will find texts, those from ancient times, containing long forgotten teachings. Find them and with a bit of gold from your end, I can get you on the right track to unlock new battle strategies for you.", + ["O"] = "Present Sakgoth with an Ancient Warfare Text and 250 Gold to gain access to knowledge of the martial arts. He awaits on Fray Island in the Barrens.", + ["T"] = "Mastery of Thrown", + }, + [41522] = { + ["D"] = "", + ["O"] = "Bring the Mastery of Thrown book to Nora Steamsight on Fray Island.", + ["T"] = "Throwing Hands", + }, + [41523] = { + ["D"] = "Master Brightheart has expressed a keen interest in obtaining a set of peculiar throwing axes crafted by the Amani trolls. Regrettably, ever since Arthas ravaged Quel\'Thalas, news from Zul\'Aman has been scarce, and no merchant in their right mind ventures there to trade with the Amani. These axes were rare even before the war; now, they are almost unattainable.$B$BHowever, there is a glimmer of hope. These axes are typically wielded by high-ranking Amani Chieftains. One such chieftain, War Master Voone, is loyal to the Old Horde rather than Zul\'Jin. It is rumored that he possesses these coveted weapons, though he is unlikely to part with them willingly.$B$BShould you succeed in acquiring them, deliver them to Master Brightheart. He will provide you with further instructions for sure!", + ["O"] = "Acquire the Throwing Axes of the Amani and offer it to Mathias Brightheart on Fray Island in the Barrens.", + ["T"] = "Throwing Axes of the Amani", + }, + [41524] = { + ["D"] = "Now tell me: How does it feel to be proven worthy by the master? When he chose me as his apprentice, it was the greatest honor I ever felt, you surely feel the same.$B$BIf the master wishes to share his knowledge with you, I can assist you with that - for a price, ofcourse. He may be benevolent, but not foolish enough to act in charity, you have to contribute your share of work as well. Hidden within the most dangerous places of Azeroth you will find texts, those from ancient times, containing long forgotten teachings. Find them and with a bit of gold from your end, I can get you on the right track to unlock new battle strategies for you.", + ["O"] = "Present Sakgoth with an Ancient Warfare Text and 250 Gold to gain access to knowledge of the martial arts. He awaits on Fray Island in the Barrens.", + ["T"] = "Mastery of Guns", + }, + [41525] = { + ["D"] = "", + ["O"] = "Bring the Mastery of Guns book to Nora Steamsight on Fray Island.", + ["T"] = "One Bullet at a Time", + }, + [41526] = { + ["D"] = "I am rather confused, truth be told. It is true guns are loud yet still effective, but how does one accept that and willingly use them? We must see someone using this in action, perhaps it will inspire you to use them as well.$B$BInformation I hold speaks plainly about the most logical place to find a gun user–Blackrock Depths, it holds the capital of the Dark Irons dwarves. Bound to have at least one gun user, but just so that I don\'t send you blindly inside I know the name of the man that you must hunt. Journey to the Blackrock Depths, find and slay Houndmaster Grebmar and return some blackrock powder to the master if you happen to find some.", + ["O"] = "Return the Blackrock Powder to Mathias Brightheart, on Fray Island.", + ["T"] = "Blackrock Powder", + }, + [41527] = { + ["D"] = "Now tell me: How does it feel to be proven worthy by the master? When he chose me as his apprentice, it was the greatest honor I ever felt, you surely feel the same.$B$BIf the master wishes to share his knowledge with you, I can assist you with that - for a price, ofcourse. He may be benevolent, but not foolish enough to act in charity, you have to contribute your share of work as well. Hidden within the most dangerous places of Azeroth you will find texts, those from ancient times, containing long forgotten teachings. Find them and with a bit of gold from your end, I can get you on the right track to unlock new battle strategies for you.", + ["O"] = "Present Sakgoth with an Ancient Warfare Text and 250 Gold to gain access to knowledge of the martial arts. He awaits on Fray Island in the Barrens.", + ["T"] = "Mastery of Crossbows", + }, + [41528] = { + ["D"] = "", + ["O"] = "Bring the Mastery of Crossbows book to Nora Steamsight on Fray Island.", + ["T"] = "Crossing The Line", + }, + [41529] = { + ["D"] = "You might\'ve read about them already in the book before, but there are a whole of three chapters dedicated to the achievements of the Willey family and their breakthroughs in crossbow development. None other manufacturers in recent history perfected the creation of crossbows like they did. Formerly in service to King Tereneas II of Lordaeron, they fell victim to his son\'s crusade and were soon forgotten about. A legacy of generations, wiped out in an instant. Atleast we assumed so - with the rise of the Scarlet Crusade, the name Willey rose up again. Now a general within said zealous organisation, he commands their artillery; utilizing the knowledge of countless generations before him.$B$BMaster Mathias showed interest in one of his family\'s crossbows, but never came to find a way to find one - until now. Willey is holding the Scarlet Bastion against the undead hordes of Stratholme. Seek his armory and find a Willey family crossbow; once you have it, bring it directly to Mathias!", + ["O"] = "Present Mathias Brightheart on Fray Island with a Willey family crossbow.", + ["T"] = "A Crimson Stake Through Their Heart", + }, + [41530] = { + ["D"] = "Now tell me: How does it feel to be proven worthy by the master? When he chose me as his apprentice, it was the greatest honor I ever felt, you surely feel the same.$B$BIf the master wishes to share his knowledge with you, I can assist you with that - for a price, ofcourse. He may be benevolent, but not foolish enough to act in charity, you have to contribute your share of work as well. Hidden within the most dangerous places of Azeroth you will find texts, those from ancient times, containing long forgotten teachings. Find them and with a bit of gold from your end, I can get you on the right track to unlock new battle strategies for you.", + ["O"] = "Present Sakgoth with an Ancient Warfare Text and 250 Gold to gain access to knowledge of the martial arts. He awaits on Fray Island in the Barrens.", + ["T"] = "Mastery of Bows", + }, + [41531] = { + ["D"] = "", + ["O"] = "Bring the Mastery of Bows book to Nora Steamsight on Fray Island.", + ["T"] = "Let The Arrow Fly", + }, + [41532] = { + ["D"] = "I have read about an ancient bow, a weapon from times long forgotten. It dates way back to the time before the Sundering! A certain type of Highborne bow that forces the wielder to adapt to a specific technique, otherwise it would not properly shoot its arrows! It seems the archers of that time used this method to achieve incredible speed and accuracy - exactly what the master\'s looking for.$B$BWhile I arrange a lesson with the master, it\'s up to you to actually get your hands on one of those bows. But a Highborne weapon… There are many of their ruins strewn about Kalimdor, the largest being the Ruins of Dire Maul. I\'d say those are your best bet. Best of luck to you, zealous student. Should you succeed, please bring the bow directly to Master Mathias!", + ["O"] = "Acquire the Highborne bow and offer it to Mathias Brightheart on Fray Island in the Barrens.", + ["T"] = "The Bow of Oaks", + }, + [41533] = { + ["D"] = "Now tell me: How does it feel to be proven worthy by the master? When he chose me as his apprentice, it was the greatest honor I ever felt, you surely feel the same.$B$BIf the master wishes to share his knowledge with you, I can assist you with that - for a price, ofcourse. He may be benevolent, but not foolish enough to act in charity, you have to contribute your share of work as well. Hidden within the most dangerous places of Azeroth you will find texts, those from ancient times, containing long forgotten teachings. Find them and with a bit of gold from your end, I can get you on the right track to unlock new battle strategies for you.", + ["O"] = "Present Sakgoth with an Ancient Warfare Text and 250 Gold to gain access to knowledge of the martial arts. He awaits on Fray Island in the Barrens.", + ["T"] = "Mastery of Polearms", + }, + [41534] = { + ["D"] = "", + ["O"] = "Bring the Mastery of Polearms book to Nora Steamsight on Fray Island.", + ["T"] = "Polearm, Polearm...", + }, + [41535] = { + ["D"] = "I believe I can understand the way you feel. Perhaps in truth the polearms aren\'t given the respect they deserve since other warriors would claim it as a last choice. But it is a matter of preference and skill. You see, Mathias says every type of weapon serves a purpose and its strength comes from its wielder.$B$BFriend of mine from Tanaris sent me a word. It seems the local dragon population has opened its caverns to adventurers, seeking to send them beyond the reason of time and space. This friend of mine is a great gossiper you see. Whispers speak of a tall dragonkin holding a spear, one that appears like a toothpick in its hands.$B$BIt appears this creature called Chronar claimed the weapon after he was stabbed with it by a human in one of his personal time shenanigan adventures. Forgive my nonchalance when it comes to it but I hold no dear interest in time travel magic and whatever includes it. Journey there and see how Chronar wields it.", + ["O"] = "Return the Time-Worn Spear to Mathias Brightheart, on Fray Island.", + ["T"] = "Appreciated in Time", + }, + [41536] = { + ["D"] = "Now tell me: How does it feel to be proven worthy by the master? When he chose me as his apprentice, it was the greatest honor I ever felt, you surely feel the same.$B$BIf the master wishes to share his knowledge with you, I can assist you with that - for a price, ofcourse. He may be benevolent, but not foolish enough to act in charity, you have to contribute your share of work as well. Hidden within the most dangerous places of Azeroth you will find texts, those from ancient times, containing long forgotten teachings. Find them and with a bit of gold from your end, I can get you on the right track to unlock new battle strategies for you.", + ["O"] = "Present Sakgoth with an Ancient Warfare Text and 250 Gold to gain access to knowledge of the martial arts. He awaits on Fray Island in the Barrens.", + ["T"] = "Mastery of Swords", + }, + [41537] = { + ["D"] = "", + ["O"] = "Bring the Mastery of Swords book to Nora Steamsight on Fray Island.", + ["T"] = "Scourge of Darrowshire", + }, + [41538] = { + ["D"] = "There is little we know about the Battle of Darrowshire. After all, none but few survived it. Whispers claim the Scourge Warlord corrupted a human soul which had in turn ended all the efforts of the protectors. The story is told differently everywhere you go. Which is why it is not our focus.$B$BMarduk holds what any other death knight would, a runeblade. One twisted and darkened by the depravity of the Scourge, one named Mournblade. How do we know? Well, you may see he boldly exclaims its name in battle. Your task will be to find him and return the blade for research. Last we know he has drawn back to Scholomance–as a trainer, nonetheless.", + ["O"] = "Return Mournblade to Mathias Brightheart, on Fray Island.", + ["T"] = "Mourning Blade", + }, + [41539] = { + ["D"] = "Now tell me: How does it feel to be proven worthy by the master? When he chose me as his apprentice, it was the greatest honor I ever felt, you surely feel the same.$B$BIf the master wishes to share his knowledge with you, I can assist you with that - for a price, ofcourse. He may be benevolent, but not foolish enough to act in charity, you have to contribute your share of work as well. Hidden within the most dangerous places of Azeroth you will find texts, those from ancient times, containing long forgotten teachings. Find them and with a bit of gold from your end, I can get you on the right track to unlock new battle strategies for you.", + ["O"] = "Present Sakgoth with an Ancient Warfare Text and 250 Gold to gain access to knowledge of the martial arts. He awaits on Fray Island in the Barrens.", + ["T"] = "Mastery of Hammers", + }, + [41540] = { + ["D"] = "", + ["O"] = "Bring the Mastery of Hammers book to Nora Steamsight on Fray Island.", + ["T"] = "Hammer, Fall!", + }, + [41541] = { + ["D"] = "Not all dwarves deserve to be admirable, hence some are devoid of honour and morality. Although it pains me to speak so of others, the Dark Irons have earned a reputation that would make most see as unsalvageable.$B$BOnly the future may tell if this is to be true or not–a concern for tomorrow, then. In a frail attempt to serve the will of their master the dwarves of the Blackrock Mountain have called upon their twilight allies and dug a quarry to the east of their land. A despicable man known as Bargul oversees the work there. Rumours claim he bears a hammer called Fingerbreaker–since he uses it to break the fingers of those that do not meet their quota.$B$BYou are to break his bones and retrieve that hammer. While I do not usually wish for others to meet their end, that one deserves what is coming to him.", + ["O"] = "Return Fingerbreaker to Mathias Brighthear, on Fray Island.", + ["T"] = "Fingerbreaker", + }, + [41542] = { + ["D"] = "Now tell me: How does it feel to be proven worthy by the master? When he chose me as his apprentice, it was the greatest honor I ever felt, you surely feel the same.$B$BIf the master wishes to share his knowledge with you, I can assist you with that - for a price, ofcourse. He may be benevolent, but not foolish enough to act in charity, you have to contribute your share of work as well. Hidden within the most dangerous places of Azeroth you will find texts, those from ancient times, containing long forgotten teachings. Find them and with a bit of gold from your end, I can get you on the right track to unlock new battle strategies for you.", + ["O"] = "Present Sakgoth with an Ancient Warfare Text and 250 Gold to gain access to knowledge of the martial arts. He awaits on Fray Island in the Barrens.", + ["T"] = "Mastery of Axes", + }, + [41543] = { + ["D"] = "", + ["O"] = "Bring the Mastery of Axes book to Nora Steamsight on Fray Island.", + ["T"] = "The Warsong Echoes", + }, + [41544] = { + ["D"] = "To many a villainous enemy, to some a chieftain and for few a brother in arms. That is merely the beginning of a description of the man that Grommash Hellscream was. As Mathias travelled here and there, through towns that allowed both Alliance and Horde, he would sometimes be met with the story of Grom, both plague and hero to his people.$B$BLooking beyond the past and actions of this one orc, only one truth stands atop all others–he was a natural born warrior. Even those that\'d spit at the hearing of his name would not shy away from recognizing his skill in battle. Set your feet straight, $N, and ready yourself to pay homage–return with speck of dirt as proof of your travels. Bearing such a gift would reward you the master\'s attention for a while.", + ["O"] = "Acquire the Jar of Dirt and offer it to Mathias Brightheart on Fray Island in the Barrens.", + ["T"] = "Honoring the Warrior", + }, + [41545] = { + ["D"] = "Now tell me: How does it feel to be proven worthy by the master? When he chose me as his apprentice, it was the greatest honor I ever felt, you surely feel the same.$B$BIf the master wishes to share his knowledge with you, I can assist you with that - for a price, ofcourse. He may be benevolent, but not foolish enough to act in charity, you have to contribute your share of work as well. Hidden within the most dangerous places of Azeroth you will find texts, those from ancient times, containing long forgotten teachings. Find them and with a bit of gold from your end, I can get you on the right track to unlock new battle strategies for you.", + ["O"] = "Present Sakgoth with an Ancient Warfare Text and 250 Gold to gain access to knowledge of the martial arts. He awaits on Fray Island in the Barrens.", + ["T"] = "Mastery of Fist Weapons", + }, + [41546] = { + ["D"] = "", + ["O"] = "Bring the Mastery of Fist Weapons book to Nora Steamsight on Fray Island.", + ["T"] = "Fists Against the World", + }, + [41547] = { + ["D"] = "Let me tell you a story. The story of a nightsaber called Eskhandar, one that hunted in the lands of Feralas. It was such a prestigious beast that it would claw down all of its enemies within seconds. But as with all living things, death follows. And when this beast met its end it was torn apart to use as items. It is believed you can find its mittens somewhere in this vast world and perhaps borrow the power of its former owner.$B$BI believe finding its grave and paying respect to it might earn you its boon from the world beyond our own–if you believe in that sort of thing of course. It fell near the left twin colossal in Feralas. The night elves say that when it died, its blood wet and nourished a dying sapling, a tree growing there now. Seek it and perhaps you will gain something. Return to Mathias afterwards.", + ["O"] = "Return the Branch of Eskhandar to Mathias Brightheart, on Fray Island.", + ["T"] = "Legend of Eskhandar", + }, + [41548] = { + ["D"] = "Now tell me: How does it feel to be proven worthy by the master? When he chose me as his apprentice, it was the greatest honor I ever felt, you surely feel the same.$B$BIf the master wishes to share his knowledge with you, I can assist you with that - for a price, ofcourse. He may be benevolent, but not foolish enough to act in charity, you have to contribute your share of work as well. Hidden within the most dangerous places of Azeroth you will find texts, those from ancient times, containing long forgotten teachings. Find them and with a bit of gold from your end, I can get you on the right track to unlock new battle strategies for you.", + ["O"] = "Present Sakgoth with an Ancient Warfare Text and 250 Gold to gain access to knowledge of the martial arts. He awaits on Fray Island in the Barrens.", + ["T"] = "Mastery of Daggers", + }, + [41549] = { + ["D"] = "", + ["O"] = "Bring the Mastery of Daggers book to Nora Steamsight on Fray Island.", + ["T"] = "Vital Anatomy", + }, + [41550] = { + ["D"] = "We\'ve set our eyes on a peculiar set of daggers for a while now. Most would view them as knives, but to a schooled eye like our master\'s, they are deadly weapons of silent murder. They belong to a man named Damian, although he is most commonly known as The Ripper. His past is draped in a bloody curtain, a monster without morals. Yet, even a monster like him can have its purpose.$B$BDamian is held within the Stormwind Vaults, a high facility prison inside the city of the same name. We\'ve heard its occupants broke free due to some supernatural intervention; leaving him to pursue his desires upon anyone left alive. $N, venture inside, relinquish Damian of this set of daggers and bring them to Mathias. Do so and I will make sure he tutors you.", + ["O"] = "Deliver the Pouch of Surgical Daggers to Mathias Brightheart on Fray Island in the Barrens.", + ["T"] = "The Ripper", + }, + [41551] = { + ["D"] = "A pleasure to see you return, my pupil. Rarely do my old students come back to their master for relearning things they already internalized. But I cannot fault you. One\'s mind has only so much expanse and it is only natural for someone as young as yourself to experience other venues as well. Now then, shall we proceed?", + ["O"] = "Should you wish to relearn Goldsmithing, speak with The Artificer in Desolace once more.", + ["T"] = "Pupil Once More", + }, + [41552] = { + ["D"] = "", + ["O"] = "Should you wish to relearn Gemology, speak with Thegren in the Badlands once more.", + ["T"] = "Renewed Teachings", + }, + [41553] = { + ["D"] = "Hear ye, hear ye! A one of a kind competition unfolds in the bustling port of Ratchet! Any connoisseur of fine ale, grog and stouts should not miss out on this unparalleled occasion. Grab you drinking buddies and help out in making the perfect alcohol in all of Azeroth!", + ["O"] = "Travel to Ratchet and join the Brewing Festival activities!", + ["T"] = "Welcome to the Brewing Festival!", + }, + [41554] = { + ["D"] = "Hear ye, hear ye! A one of a kind competition unfolds in the bustling port of Ratchet! Any connoisseur of fine ale, grog and stouts should not miss out on this unparalleled occasion. Grab you drinking buddies and help out in making the perfect alcohol in all of Azeroth!", + ["O"] = "Travel to Ratchet and join the Brewing Festival activities!", + ["T"] = "Welcome to the Brewing Festival!", + }, + [41555] = { + ["D"] = "It is my life-long goal to create the most potent, delicious and savoring beverage known to Azeroth: the Hornfang Reserve! Its rich flavour and unique texture will enchant anyone indulging in its foamy top and bitter taste. That is when I am done getting the formula right. I hate to admit it, but my previous attempts at it were falling flat in one way or another. There is always something missing that really brings all of the ingredients together. I just need to find out what it is! That is why I came here to Ratchet, so I can gather all sorts of rumors and stories about potential components that might be missing for my brew.$B$BApparently the local quillboar of the Razorfen Kraul are brewing their own alcohol. Who would\'ve thought that these primitive pig people are able to produce grog on their own? I need to find out what this grog is all about, how it is made and whether it has the secret ingredient I am looking for!", + ["O"] = "Bring a sample of Razorfen Grog to Hal\'togg Hornfang in Ratchet.", + ["T"] = "Razorfen Grog", + }, + [41556] = { + ["D"] = "I think I have a good understanding of how this grog was made. It\'s not unlike what I used to brew before with briarthorn, however they must be utilizing a different method. Maybe they used a higher temperature...? Yes, that must be it! A higher temperature when brewing the briarthorn could reduce the bitterness to an enjoyable amount. How they achieved such a potent flame I still don\'t understand, however. They surely must\'ve used magic. As I have no magical means on my end, we have to find something else. The elements of this world sometimes leave a flicker of their essence behind. One such thing could potentially heat the flame to the required level. $N, go out and bring me elemental fire from any fire elemental out there - we need it to fan the fire!", + ["O"] = "Return with six Elemental Fire to Hal\'togg Hornfang in Ratchet.", + ["T"] = "The Hottest Hot!", + }, + [41557] = { + ["D"] = "Thaldon over there just blabbered about discovering something groundbreaking about the Lordaeron Ale from the Eastern Kingdoms. I cannot let this little man get an advantage over me, which is why we will go even higher! While he is content with his lousy and boring Lordaeron Ale, our goal is the enigmatic Scarlet Schnapps, a brew that so few had the chance to drink, it is said to be a legend.$B$BA culinary peculiarity of the Scarlet Crusade, I have heard they are brewing it in their monastery in the Tirisfal Glades as some sort of light-inducing drink. If this brew really has these magical properties, then I need to get my hands on it!", + ["O"] = "Retrieve a bottle of Scarlet Schnapps and bring it to Hal\'togg Hornfang in Ratchet.", + ["T"] = "Scarlet Schnapps", + }, + [41558] = { + ["D"] = "The Silverpine Forests have a unique vegetation that thrives in the mountainous and harsh reaches of the area. Their flavour is deceptively bitter, so it is rarely used by inexperienced breweries. We, however, can make ample use of this plant. It might not have the properties needed to replicate the fiery feeling of the Scarlet Schnapps, but with the brewing technique of the quillboar, we might be able to distill it enough to acquire a distinct flavour for our own brew.", + ["O"] = "Hal\'togg Hornfang in Ratchet needs ten bundles of Silver Hops.", + ["T"] = "Silver Hops", + }, + [41559] = { + ["D"] = "Finding a plant with a pungent fiery taste can be difficult. Many I\'ve come across in my brewing adventure had a certain spice to them, but nothing to the level of the Scarlet Schnapps. Luckily I picked up some rumours from the goblins at the docks; you\'d be surprised how many stories they pick up with all the trade happening here.$B$BOver in the Eastern Kingdom, the Badlands are home to a vibrant red type of hops. Apparently the resident ogres pick up these clumps of hops and chew on them - raw! These bulky meatheads surprise me anew every time I have to deal with them. Relieve them of their hops and bring it to me, we\'ll make better use of it.", + ["O"] = "Hal\'togg Hornfang in Ratchet needs fifteen bundles of Red Hops.", + ["T"] = "Red Hops", + }, + [41560] = { + ["D"] = "Let us try something unorthodox. Recreating the heat of the Scarlet Schnapps will prove to be a challenge without the same exact recipe, yet I am certain we can try something different instead. The Searing Gorge is a scalding hot desert with little to no vegetation. Nevertheless, some plants seem to grow splendidly on the vulcanic soil - one of them being the black hops. My assumption is that hops absorb the nutrients from the heated ground, naturally imbuing them with a natural smoky spice. The best way to find it out is to grab some and test it out ourselves!", + ["O"] = "Collect twelve clumps of Black Hops for Hal\'togg Hornfang in Ratchet.", + ["T"] = "Black Hops", + }, + [41561] = { + ["D"] = "Okay, $N. We\'re very close to perfecting the formular, I can feel it! We have the silver hops with its heavy earthen bitter flavour, the spice and smoky texture of the red and black hops, as well as the heat and technique needed to distill it into a clear but pungent brew! All we need is that sweet aftertaste to complete the package; and I know the perfect source for it!$B$BDown in the verdant wilds of Feralas lies the dreaded ruins of Dire Maul. Within its cursed gardens grows a root, I believe they call it the Runn Tum Tuber. This root is said to possess a powerful sweet taste, that even survives the highest of temperatures when cooked. We need this root to complete the Hornfang Reserve! We stand at the precipice of greatness, $N. Don\'t waste time!", + ["O"] = "To complete the Hornfang Reserve, deliver twenty Runn Tum Tubers to Hal\'togg Hornfang in Ratchet.", + ["T"] = "Runn Tum Rum And The Perfect Brew", + }, + [41562] = { + ["D"] = "It is my life-long goal to create the most potent, delicious and savoring beverage known to Azeroth: the Thunderbrew Golden Lager! Its rich flavour and unique texture will enchant anyone indulging in its foamy top and bitter taste. Atleast I wish that was the case, but my previous attempts at it were falling flat in one way or another. There is always something missing that really brings all of the ingredients together. I just need to find out what it is! That is why I came here to Ratchet, those dunderheads in Ironforge are all blabbering nonsense out of their unwashed beards. They can\'t see greatness if it bites them in the arse!$B$BTo brew a truly delicious lager, many different types of hops are needed. Since the more common variants of it did not have the potent kick I desire for my brew, I need to look for something unusual. The Quillboar from the deep south of these lands seem to be versed in the art of brewing, or so I heard. They must have their own hops to brew from!", + ["O"] = "Thaldon Thunderbrew in Ratchet needs fifteen bundles of Yellow Hops.", + ["T"] = "Yellow Hops", + }, + [41563] = { + ["D"] = "A sour flavour is something needed in every ale, some have more, some have less of it. The Lordaeron Ale is of the former kind, you won\'t find any alcohol as sour as this beauty. Personally it\'s not my type of drink, but I can appreciate the variety created by different cultures... Even if the way humans are brewing their alcohol is just child\'s play. Ha!$B$BStill, we can use their resources just the same. In the southeastern hills of Hillsbrad grows the Hillsbrad Hops, a truly unique hops with the most pungent sour flavour in all of the Eastern Kingdom. I will need these for my new brewing attempt!", + ["O"] = "Thaldon Thunderbrew in Ratchet needs twelve bundles of Hillsbrad Hops.", + ["T"] = "Hillsbrad Hops", + }, + [41564] = { + ["D"] = "I may be a proud Ironforge dwarf, but even I have to acknowledge the fine ales and grogs our Wildhammer brethren are producing. Rarely have I had the pleasure of enjoying such an extremely bitter stout. Just one sip blew me off my boots, it was an experience like no other! This kind of bitterness needs to be in my perfect ale, it has to! A good friend of mine told me that the most bitter hops grow in the Hinterlands, just short of Aerie Peak. My brew cannot be complete without the powerful bitter flavour of this hops.", + ["O"] = "Thaldon Thunderbrew in Ratchet needs ten bundles of Stout Hops.", + ["T"] = "Stout Hops", + }, + [41565] = { + ["D"] = "You may have caught on to it already, but this amateur of an orc over there thinks he can create a brew better than what us dwarves can produce. If you ask me, a fool\'s errand. But I am no fool myself, so we have to make sure his ambitions fall flat on its face.$B$BI overheard him eagerly announce using elemental fire to stoke his distillery fire, so we will make use of the elements ourselves. Seems only fair, no? I already began brewing the hops you gave me, but they are not properly blending together. Elemental water may just be the thing to circumvent this problem - and on top of it, it may even add an extra kick to the concoction!", + ["O"] = "Return with six Elemental Water to Thaldon Thunderbrew in Ratchet.", + ["T"] = "With A Twist Of Magic!", + }, + [41566] = { + ["D"] = "I\'ve stumbled on a... let\'s say ‘small\' issue with my current brew. Mixing the three types of hops together was a brilliant idea, yet the bitterness of the stout hops is overpowering every other flavour! If we keep the distillate as is, I might as well just brew with stout hops. Good thing for us, I picked up a rumour down at the port that might be exactly the solution to our problem. Goldthorn Grog is a brew that should taste incredibly bitter as all grogs are, yet its flavour is surprisingly smooth and mild, a perfect afternoon drink! I suspect the secret ingredient for that is the Goldthorn itself. With a few roots, I could test if my theory has any merit.", + ["O"] = "Bring ten Goldthorn to Thaldon Thunderbrew in Ratchet.", + ["T"] = "Goldthorn Grog", + }, + [41567] = { + ["D"] = "$N! It\'s a disaster! I was just checking my tent for more ingredients when I noticed my plans for the Thunderbrew Golden Lager weren\'t there! It must have been those damned Hurley Blackbreath, he and his kin have been rivals to our family since countless years. They can\'t live with the fact that our beer is the superior one, not like their lukewarm sludge soup. We need to get it back. The recipe contains the last few crucial steps required to finalize my perfect brew. Blackbreath surely scuttled back into the Blackrock Depths, find him and bring me back my plans!", + ["O"] = "Retrieve the Thunderbrew Golden Lager Plans for Thandol Thunderbrew in Ratchet.", + ["T"] = "Our Dark Iron Rivals", + }, + [41568] = { + ["D"] = "We have the hops, our magical component and the Goldthorn to reduce the bitterness of it all. With my plans back with me, there is just one thing left to finalize the Thunderbrew Golden Lager: The Golden Hops.$B$B An ingredient of mythological status, many dwarves believe it to be a mere fairy tale told by the drunken mountaineers of Ironforge\'s taverns. But I know better - I have seen it! It appeared to me in a dream, after emptying ten ale kegs on my own. A golden rabbit, shimmering like the finest beer you\'ve ever seen. There it stood, ominously between these great bones in a vast desert, like an omen. Yet I knew what it really meant. It beckoned me to seek it out; to create the Golden Lager with the Golden Hops! Find this rabbit, wherever it may be. The Golden Hops will be ours!", + ["O"] = "Find the mythical Hoppity Hops Rabbit and acquire the Golden Hops for Thandol Thunderbrew in Ratchet.", + ["T"] = "Great Golden Hops", + }, + [41569] = { + ["D"] = "Oy, I\'m telling ya, there\'s nothing more invigorating than pouring beer after beer after beer down your threat and getting into the rhythm of the festival. Come, grab your pint and start shaking those hips! I wanna see you get completely smashed, dancing with everybody here. Cheers!", + ["O"] = "Dance with members of the Horde and Alliance while completely drunk!", + ["T"] = "Shut Up And Dance With Me", + }, + [41570] = { + ["D"] = "Oy, I\'m telling ya, there\'s nothing more invigorating than pouring beer after beer after beer down your threat and getting into the rhythm of the festival. Come, grab your pint and start shaking those hips! I wanna see you get completely smashed, dancing with everybody here. Cheers!", + ["O"] = "Dance with members of the Horde and Alliance while completely drunk!", + ["T"] = "Murder On The Dancefloor", + }, + [41571] = { + ["D"] = "Oy, I\'m telling ya, there\'s nothing more invigorating than pouring beer after beer after beer down your threat and getting into the rhythm of the festival. Come, grab your pint and start shaking those hips! I wanna see you get completely smashed, dancing with everybody here. Cheers!", + ["O"] = "Dance with members of the Horde and Alliance while completely drunk!", + ["T"] = "Dance The Night Away", + }, + [41572] = { + ["D"] = "Oh my, good gracious! Is this how you want to go see the Guardian? Bold, I must say, but perhaps a tad too bold. I cannot for the love of all that encompasses fashion allow you to ascend the tower in those rags. Harsh as it may sound, it is the truth!$B$BJust looking at that headdress you’re wearing gives me the creeps and shivers. Whoever designed this atrocity deserves to be put to trial. I can help you out and get you the designs of a new, more fashionable one - if you help me out with some of my own supplies. We have a deal?", + ["O"] = "Bring Pietro Paraveno the needed supplies, he awaits in the Tower of Karazhan.", + ["T"] = "A Hat For The Occasion", + }, + [41573] = { + ["D"] = "Oh my, good gracious! Is this how you want to go see the Guardian? Bold, I must say, but perhaps a tad too bold. I cannot for the love of all that encompasses fashion allow you to ascend the tower in those rags. Harsh as it may sound, it is the truth!$B$BJust looking at that legwear you’ve put on your body gives me the creeps and shivers. Whoever designed this atrocity deserves to be put to trial. I can help you out and get you the designs of a new, more fashionable one - if you help me out with some of my own supplies. We have a deal?", + ["O"] = "Bring Pietro Paraveno the needed supplies, he awaits in the Tower of Karazhan.", + ["T"] = "Legs For Days", + }, + [41574] = { + ["D"] = "Oh my, good gracious! Is this how you want to go see the Guardian? Bold, I must say, but perhaps a tad too bold. I cannot for the love of all that encompasses fashion allow you to ascend the tower in those rags. Harsh as it may sound, it is the truth!$B$BJust looking at these pauldrons you’re wearing gives me the creeps and shivers. Whoever designed this atrocity deserves to be put to trial. I can help you out and get you the designs of a new, more fashionable one - if you help me out with some of my own supplies. We have a deal?", + ["O"] = "Bring Pietro Paraveno the needed supplies, he awaits in the Tower of Karazhan.", + ["T"] = "The Weight Of Fashion On Their Shoulder", + }, + [41575] = { + ["D"] = "Oh my, good gracious! Is this how you want to go see the Guardian? Bold, I must say, but perhaps a tad too bold. I cannot for the love of all that encompasses fashion allow you to ascend the tower in those rags. Harsh as it may sound, it is the truth!$B$BJust looking at that chestpiece you’re wearing gives me the creeps and shivers. Whoever designed this atrocity deserves to be put to trial. I can help you out and get you the designs of a new, more fashionable one - if you help me out with some of my own supplies. We have a deal?", + ["O"] = "Bring Pietro Paraveno the needed supplies, he awaits in the Tower of Karazhan.", + ["T"] = "The Embrace Of Good Taste", + }, + [41576] = { + ["D"] = "Oh my, good gracious! Is this how you want to go see the Guardian? Bold, I must say, but perhaps a tad too bold. I cannot for the love of all that encompasses fashion allow you to ascend the tower in those rags. Harsh as it may sound, it is the truth!$B$BThat cloak you’ve draped around you gives me the creeps and shivers. Whoever designed this atrocity deserves to be put to trial. I can help you out and get you the designs of a new, more fashionable one - if you help me out with some of my own supplies. We have a deal?", + ["O"] = "Bring Pietro Paraveno the needed supplies, he awaits in the Tower of Karazhan.", + ["T"] = "A Cloak Of Immaculate Quality", + }, + [41577] = { + ["D"] = "In your hands lies the still-beating heart of the Dreadlord Mephistroth, ruler of the Rock of Desolation. You and your expedition foiled his plans of using Karazhan as an entry point to invade Azeroth yet again. Expelled into the Great Dark Beyond forever, this is all that remains of the nefarious schemer.$B$BYou should bring it to someone able to expunge its life, just to be sure.", + ["O"] = "Deliver the Heart of Mephistroth to a sorcerer powerful enough to destroy it.", + ["T"] = "Sovereign of Desolation", + }, + [41578] = { + ["D"] = "This crown bears the symbol of the Kingdom of Azeroth, and it closely resembles the one King Llane used to wear. Perhaps even in his madness, Medivh still kept his friend close to his heart.$B$BFractured, almost crumbled—just like the Tower of Karazhan, a lost vigil of history. It is upon this history that we may reforge something anew. Bring me the materials I require, and I will ensure that this crown becomes of use to its new bearer.", + ["O"] = "Gather the required materials for Hierophant Nerseus near the church outside Karazhan.", + ["T"] = "Helm of the Talon", + }, + [41579] = { + ["D"] = "I imagine your journey through a brief glimpse of both the Twisting Nether and Outland was not without its share of trouble. Yet, I sense an item in your possession that carries an otherworldly aura.$B$BAllow me to lay eyes upon this mantle. Hm, as far as I can tell, the enemy you faced was indeed formidable—perhaps powerful enough to shift between planes. No matter; while its previous owner lies dead, some of its magic endures. Were you to bring me the materials I require, I could perhaps mold this item to suit your needs.", + ["O"] = "Gather the required materials for Anelace the Clairvoyant near the church outside Karazhan.", + ["T"] = "Shoulderguards of the Talon", + }, + [41580] = { + ["D"] = "Defeating a Nathrezim of such power is no easy feat. Even beyond the veil of life and death, many cursed the existence of the accursed Mephistroth. You could hear the echoes of the tormented souls in the Twisting Nether rejoice the moment the demon lay dead.$B$BAlas, that is neither more nor less important—for not only did you manage to slay such a formidable foe, but you also retrieved its armor. This armor shall serve as the foundation for your next piece of the puzzle; in truth, it may even be considered the final piece. As before, bring me the materials I require, and claim a prize that will make even the mighty Eredar tremble in their boots.", + ["O"] = "Gather the required materials for Anelace the Clairvoyant near the church outside Karazhan.", + ["T"] = "Robes of the Talon", + }, + [41581] = { + ["D"] = "Doomguards were the elite bodyguards of their master—none could face a fiercer enemy, and yet you confronted one of their best. Surviving the wrath of the Highlord would have been a worthy feat in itself, and yet you managed to defeat him.$B$BI sense that you possess something of his—a memento from a worthy battle, one that we could use as the basis for a piece of your armor. What say you? Bring me the materials I require, and we will ensure that you wear this fight both in spirit and upon your body.", + ["O"] = "Gather the required materials for Hanvar the Righteous near the church outside Karazhan.", + ["T"] = "Pants of the Talon", + }, + [41582] = { + ["D"] = "Your journey through a fleeting glimpse of both the Twisting Nether and Outland was not without its hardships. Still, I can sense an item in your possession—a relic that emanates an otherworldly essence.$B$BAllow me to examine these boots. It seems the adversary you faced was indeed formidable, perhaps even capable of traversing the planes. Yet, while its previous owner now lies dead, remnants of its magic persist. What say you? Bring me the materials I require, and I shall forge this item to suit your needs, ensuring you carry the essence of this battle with you.", + ["O"] = "Gather the required materials for Hanvar the Righteous near the church outside Karazhan.", + ["T"] = "Boots of the Talon", + }, + [41583] = { + ["D"] = "This amulet bears the emblem of House Wrynn, a treasured gift bestowed upon Medivh by his friend, King Llane, for the many noble deeds he performed for the people of Stormwind. Even in his madness, Medivh clung to it.$B$BBroken and battered—much like the Tower itself, a once-mighty sentinel of history. Yet perhaps this fragment of the past still holds value. Bring me the materials I require, and I shall see to it that this amulet serves its new bearer well.", + ["O"] = "Gather the required materials for Hierophant Nerseus near the church outside Karazhan.", + ["T"] = "Amulet of the Talon", + }, + [41584] = { + ["D"] = "This crown bears the symbol of the Kingdom of Azeroth, and it closely resembles the one King Llane used to wear. Perhaps even in his madness, Medivh still kept his friend close to his heart.$B$BFractured, almost crumbled—just like the Tower of Karazhan, a lost vigil of history. It is upon this history that we may reforge something anew. Bring me the materials I require, and I will ensure that this crown becomes of use to its new bearer.", + ["O"] = "Gather the required materials for Hierophant Nerseus near the church outside Karazhan.", + ["T"] = "Nathrezim Helm", + }, + [41585] = { + ["D"] = "I imagine your journey through a brief glimpse of both the Twisting Nether and Outland was not without its share of trouble. Yet, I sense an item in your possession that carries an otherworldly aura.$B$BAllow me to lay eyes upon this mantle. Hm, as far as I can tell, the enemy you faced was indeed formidable—perhaps powerful enough to shift between planes. No matter; while its previous owner lies dead, some of its magic endures. Were you to bring me the materials I require, I could perhaps mold this item to suit your needs.", + ["O"] = "Gather the required materials for Anelace the Clairvoyant near the church outside Karazhan.", + ["T"] = "Nathrezim Shoulderguards", + }, + [41586] = { + ["D"] = "Defeating a Nathrezim of such power is no easy feat. Even beyond the veil of life and death, many cursed the existence of the accursed Mephistroth. You could hear the echoes of the tormented souls in the Twisting Nether rejoice the moment the demon lay dead.$B$BAlas, that is neither more nor less important—for not only did you manage to slay such a formidable foe, but you also retrieved its armor. This armor shall serve as the foundation for your next piece of the puzzle; in truth, it may even be considered the final piece. As before, bring me the materials I require, and claim a prize that will make even the mighty Eredar tremble in their boots.", + ["O"] = "Gather the required materials for Anelace the Clairvoyant near the church outside Karazhan.", + ["T"] = "Nathrezim Robes", + }, + [41587] = { + ["D"] = "Doomguards were the elite bodyguards of their master—none could face a fiercer enemy, and yet you confronted one of their best. Surviving the wrath of the Highlord would have been a worthy feat in itself, and yet you managed to defeat him.$B$BI sense that you possess something of his—a memento from a worthy battle, one that we could use as the basis for a piece of your armor. What say you? Bring me the materials I require, and we will ensure that you wear this fight both in spirit and upon your body.", + ["O"] = "Gather the required materials for Hanvar the Righteous near the church outside Karazhan.", + ["T"] = "Nathrezim Pants", + }, + [41588] = { + ["D"] = "Your journey through a fleeting glimpse of both the Twisting Nether and Outland was not without its hardships. Still, I can sense an item in your possession—a relic that emanates an otherworldly essence.$B$BAllow me to examine these boots. It seems the adversary you faced was indeed formidable, perhaps even capable of traversing the planes. Yet, while its previous owner now lies dead, remnants of its magic persist. What say you? Bring me the materials I require, and I shall forge this item to suit your needs, ensuring you carry the essence of this battle with you.", + ["O"] = "Gather the required materials for Hanvar the Righteous near the church outside Karazhan.", + ["T"] = "Nathrezim Boots", + }, + [41589] = { + ["D"] = "This amulet bears the emblem of House Wrynn, a treasured gift bestowed upon Medivh by his friend, King Llane, for the many noble deeds he performed for the people of Stormwind. Even in his madness, Medivh clung to it.$B$BBroken and battered—much like the Tower itself, a once-mighty sentinel of history. Yet perhaps this fragment of the past still holds value. Bring me the materials I require, and I shall see to it that this amulet serves its new bearer well.", + ["O"] = "Gather the required materials for Hierophant Nerseus near the church outside Karazhan.", + ["T"] = "Nathrezim Amulet", + }, + [41590] = { + ["D"] = "This crown bears the symbol of the Kingdom of Azeroth, and it closely resembles the one King Llane used to wear. Perhaps even in his madness, Medivh still kept his friend close to his heart.$B$BFractured, almost crumbled—just like the Tower of Karazhan, a lost vigil of history. It is upon this history that we may reforge something anew. Bring me the materials I require, and I will ensure that this crown becomes of use to its new bearer.", + ["O"] = "Gather the required materials for Hierophant Nerseus near the church outside Karazhan.", + ["T"] = "Helm of the Brotherhood", + }, + [41591] = { + ["D"] = "I imagine your journey through a brief glimpse of both the Twisting Nether and Outland was not without its share of trouble. Yet, I sense an item in your possession that carries an otherworldly aura.$B$BAllow me to lay eyes upon this mantle. Hm, as far as I can tell, the enemy you faced was indeed formidable—perhaps powerful enough to shift between planes. No matter; while its previous owner lies dead, some of its magic endures. Were you to bring me the materials I require, I could perhaps mold this item to suit your needs.", + ["O"] = "Gather the required materials for Anelace the Clairvoyant near the church outside Karazhan.", + ["T"] = "Shoulderguards of the Brotherhood", + }, + [41592] = { + ["D"] = "Defeating a Nathrezim of such power is no easy feat. Even beyond the veil of life and death, many cursed the existence of the accursed Mephistroth. You could hear the echoes of the tormented souls in the Twisting Nether rejoice the moment the demon lay dead.$B$BAlas, that is neither more nor less important—for not only did you manage to slay such a formidable foe, but you also retrieved its armor. This armor shall serve as the foundation for your next piece of the puzzle; in truth, it may even be considered the final piece. As before, bring me the materials I require, and claim a prize that will make even the mighty Eredar tremble in their boots.", + ["O"] = "Gather the required materials for Anelace the Clairvoyant near the church outside Karazhan.", + ["T"] = "Chest of the Brotherhood", + }, + [41593] = { + ["D"] = "Doomguards were the elite bodyguards of their master—none could face a fiercer enemy, and yet you confronted one of their best. Surviving the wrath of the Highlord would have been a worthy feat in itself, and yet you managed to defeat him.$B$BI sense that you possess something of his—a memento from a worthy battle, one that we could use as the basis for a piece of your armor. What say you? Bring me the materials I require, and we will ensure that you wear this fight both in spirit and upon your body.", + ["O"] = "Gather the required materials for Hanvar the Righteous near the church outside Karazhan.", + ["T"] = "Pants of the Brotherhood", + }, + [41594] = { + ["D"] = "Your journey through a fleeting glimpse of both the Twisting Nether and Outland was not without its hardships. Still, I can sense an item in your possession—a relic that emanates an otherworldly essence.$B$BAllow me to examine these boots. It seems the adversary you faced was indeed formidable, perhaps even capable of traversing the planes. Yet, while its previous owner now lies dead, remnants of its magic persist. What say you? Bring me the materials I require, and I shall forge this item to suit your needs, ensuring you carry the essence of this battle with you.", + ["O"] = "Gather the required materials for Hanvar the Righteous near the church outside Karazhan.", + ["T"] = "Boots of the Brotherhood", + }, + [41595] = { + ["D"] = "This amulet bears the emblem of House Wrynn, a treasured gift bestowed upon Medivh by his friend, King Llane, for the many noble deeds he performed for the people of Stormwind. Even in his madness, Medivh clung to it.$B$BBroken and battered—much like the Tower itself, a once-mighty sentinel of history. Yet perhaps this fragment of the past still holds value. Bring me the materials I require, and I shall see to it that this amulet serves its new bearer well.", + ["O"] = "Gather the required materials for Hierophant Nerseus near the church outside Karazhan.", + ["T"] = "Amulet of the Brotherhood", + }, + [41596] = { + ["D"] = "This crown bears the symbol of the Kingdom of Azeroth, and it closely resembles the one King Llane used to wear. Perhaps even in his madness, Medivh still kept his friend close to his heart.$B$BFractured, almost crumbled—just like the Tower of Karazhan, a lost vigil of history. It is upon this history that we may reforge something anew. Bring me the materials I require, and I will ensure that this crown becomes of use to its new bearer.", + ["O"] = "Gather the required materials for Hierophant Nerseus near the church outside Karazhan.", + ["T"] = "Helm of Pestilence", + }, + [41597] = { + ["D"] = "I imagine your journey through a brief glimpse of both the Twisting Nether and Outland was not without its share of trouble. Yet, I sense an item in your possession that carries an otherworldly aura.$B$BAllow me to lay eyes upon this mantle. Hm, as far as I can tell, the enemy you faced was indeed formidable—perhaps powerful enough to shift between planes. No matter; while its previous owner lies dead, some of its magic endures. Were you to bring me the materials I require, I could perhaps mold this item to suit your needs.", + ["O"] = "Gather the required materials for Anelace the Clairvoyant near the church outside Karazhan.", + ["T"] = "Shoulderguards of Pestilence", + }, + [41598] = { + ["D"] = "Defeating a Nathrezim of such power is no easy feat. Even beyond the veil of life and death, many cursed the existence of the accursed Mephistroth. You could hear the echoes of the tormented souls in the Twisting Nether rejoice the moment the demon lay dead.$B$BAlas, that is neither more nor less important—for not only did you manage to slay such a formidable foe, but you also retrieved its armor. This armor shall serve as the foundation for your next piece of the puzzle; in truth, it may even be considered the final piece. As before, bring me the materials I require, and claim a prize that will make even the mighty Eredar tremble in their boots.", + ["O"] = "Gather the required materials for Anelace the Clairvoyant near the church outside Karazhan.", + ["T"] = "Robes of Pestilence", + }, + [41599] = { + ["D"] = "Doomguards were the elite bodyguards of their master—none could face a fiercer enemy, and yet you confronted one of their best. Surviving the wrath of the Highlord would have been a worthy feat in itself, and yet you managed to defeat him.$B$BI sense that you possess something of his—a memento from a worthy battle, one that we could use as the basis for a piece of your armor. What say you? Bring me the materials I require, and we will ensure that you wear this fight both in spirit and upon your body.", + ["O"] = "Gather the required materials for Hanvar the Righteous near the church outside Karazhan.", + ["T"] = "Pants of Pestilence", + }, + [41600] = { + ["D"] = "Your journey through a fleeting glimpse of both the Twisting Nether and Outland was not without its hardships. Still, I can sense an item in your possession—a relic that emanates an otherworldly essence.$B$BAllow me to examine these boots. It seems the adversary you faced was indeed formidable, perhaps even capable of traversing the planes. Yet, while its previous owner now lies dead, remnants of its magic persist. What say you? Bring me the materials I require, and I shall forge this item to suit your needs, ensuring you carry the essence of this battle with you.", + ["O"] = "Gather the required materials for Hanvar the Righteous near the church outside Karazhan.", + ["T"] = "Boots of Pestilence", + }, + [41601] = { + ["D"] = "This amulet bears the emblem of House Wrynn, a treasured gift bestowed upon Medivh by his friend, King Llane, for the many noble deeds he performed for the people of Stormwind. Even in his madness, Medivh clung to it.$B$BBroken and battered—much like the Tower itself, a once-mighty sentinel of history. Yet perhaps this fragment of the past still holds value. Bring me the materials I require, and I shall see to it that this amulet serves its new bearer well.", + ["O"] = "Gather the required materials for Hierophant Nerseus near the church outside Karazhan.", + ["T"] = "Amulet of Pestilence", + }, + [41602] = { + ["D"] = "This crown bears the symbol of the Kingdom of Azeroth, and it closely resembles the one King Llane used to wear. Perhaps even in his madness, Medivh still kept his friend close to his heart.$B$BFractured, almost crumbled—just like the Tower of Karazhan, a lost vigil of history. It is upon this history that we may reforge something anew. Bring me the materials I require, and I will ensure that this crown becomes of use to its new bearer.", + ["O"] = "Gather the required materials for Hierophant Nerseus near the church outside Karazhan.", + ["T"] = "Trickster Helm", + }, + [41603] = { + ["D"] = "I imagine your journey through a brief glimpse of both the Twisting Nether and Outland was not without its share of trouble. Yet, I sense an item in your possession that carries an otherworldly aura.$B$BAllow me to lay eyes upon this mantle. Hm, as far as I can tell, the enemy you faced was indeed formidable—perhaps powerful enough to shift between planes. No matter; while its previous owner lies dead, some of its magic endures. Were you to bring me the materials I require, I could perhaps mold this item to suit your needs.", + ["O"] = "Gather the required materials for Anelace the Clairvoyant near the church outside Karazhan.", + ["T"] = "Trickster Shoulderguards", + }, + [41604] = { + ["D"] = "Defeating a Nathrezim of such power is no easy feat. Even beyond the veil of life and death, many cursed the existence of the accursed Mephistroth. You could hear the echoes of the tormented souls in the Twisting Nether rejoice the moment the demon lay dead.$B$BAlas, that is neither more nor less important—for not only did you manage to slay such a formidable foe, but you also retrieved its armor. This armor shall serve as the foundation for your next piece of the puzzle; in truth, it may even be considered the final piece. As before, bring me the materials I require, and claim a prize that will make even the mighty Eredar tremble in their boots.", + ["O"] = "Gather the required materials for Anelace the Clairvoyant near the church outside Karazhan.", + ["T"] = "Trickster Chest", + }, + [41605] = { + ["D"] = "Doomguards were the elite bodyguards of their master—none could face a fiercer enemy, and yet you confronted one of their best. Surviving the wrath of the Highlord would have been a worthy feat in itself, and yet you managed to defeat him.$B$BI sense that you possess something of his—a memento from a worthy battle, one that we could use as the basis for a piece of your armor. What say you? Bring me the materials I require, and we will ensure that you wear this fight both in spirit and upon your body.", + ["O"] = "Gather the required materials for Hanvar the Righteous near the church outside Karazhan.", + ["T"] = "Trickster Pants", + }, + [41606] = { + ["D"] = "Your journey through a fleeting glimpse of both the Twisting Nether and Outland was not without its hardships. Still, I can sense an item in your possession—a relic that emanates an otherworldly essence.$B$BAllow me to examine these boots. It seems the adversary you faced was indeed formidable, perhaps even capable of traversing the planes. Yet, while its previous owner now lies dead, remnants of its magic persist. What say you? Bring me the materials I require, and I shall forge this item to suit your needs, ensuring you carry the essence of this battle with you.", + ["O"] = "Gather the required materials for Hanvar the Righteous near the church outside Karazhan.", + ["T"] = "Trickster Boots", + }, + [41607] = { + ["D"] = "This amulet bears the emblem of House Wrynn, a treasured gift bestowed upon Medivh by his friend, King Llane, for the many noble deeds he performed for the people of Stormwind. Even in his madness, Medivh clung to it.$B$BBroken and battered—much like the Tower itself, a once-mighty sentinel of history. Yet perhaps this fragment of the past still holds value. Bring me the materials I require, and I shall see to it that this amulet serves its new bearer well.", + ["O"] = "Gather the required materials for Hierophant Nerseus near the church outside Karazhan.", + ["T"] = "Trickster Amulet", + }, + [41608] = { + ["D"] = "This crown bears the symbol of the Kingdom of Azeroth, and it closely resembles the one King Llane used to wear. Perhaps even in his madness, Medivh still kept his friend close to his heart.$B$BFractured, almost crumbled—just like the Tower of Karazhan, a lost vigil of history. It is upon this history that we may reforge something anew. Bring me the materials I require, and I will ensure that this crown becomes of use to its new bearer.", + ["O"] = "Gather the required materials for Hierophant Nerseus near the church outside Karazhan.", + ["T"] = "Ravenstalker Helm", + }, + [41609] = { + ["D"] = "I imagine your journey through a brief glimpse of both the Twisting Nether and Outland was not without its share of trouble. Yet, I sense an item in your possession that carries an otherworldly aura.$B$BAllow me to lay eyes upon this mantle. Hm, as far as I can tell, the enemy you faced was indeed formidable—perhaps powerful enough to shift between planes. No matter; while its previous owner lies dead, some of its magic endures. Were you to bring me the materials I require, I could perhaps mold this item to suit your needs.", + ["O"] = "Gather the required materials for Anelace the Clairvoyant near the church outside Karazhan.", + ["T"] = "Ravenstalker Shoulderguards", + }, + [41610] = { + ["D"] = "Defeating a Nathrezim of such power is no easy feat. Even beyond the veil of life and death, many cursed the existence of the accursed Mephistroth. You could hear the echoes of the tormented souls in the Twisting Nether rejoice the moment the demon lay dead.$B$BAlas, that is neither more nor less important—for not only did you manage to slay such a formidable foe, but you also retrieved its armor. This armor shall serve as the foundation for your next piece of the puzzle; in truth, it may even be considered the final piece. As before, bring me the materials I require, and claim a prize that will make even the mighty Eredar tremble in their boots.", + ["O"] = "Gather the required materials for Anelace the Clairvoyant near the church outside Karazhan.", + ["T"] = "Ravenstalker Chest", + }, + [41611] = { + ["D"] = "Doomguards were the elite bodyguards of their master—none could face a fiercer enemy, and yet you confronted one of their best. Surviving the wrath of the Highlord would have been a worthy feat in itself, and yet you managed to defeat him.$B$BI sense that you possess something of his—a memento from a worthy battle, one that we could use as the basis for a piece of your armor. What say you? Bring me the materials I require, and we will ensure that you wear this fight both in spirit and upon your body.", + ["O"] = "Gather the required materials for Hanvar the Righteous near the church outside Karazhan.", + ["T"] = "Ravenstalker Legs", + }, + [41612] = { + ["D"] = "Your journey through a fleeting glimpse of both the Twisting Nether and Outland was not without its hardships. Still, I can sense an item in your possession—a relic that emanates an otherworldly essence.$B$BAllow me to examine these boots. It seems the adversary you faced was indeed formidable, perhaps even capable of traversing the planes. Yet, while its previous owner now lies dead, remnants of its magic persist. What say you? Bring me the materials I require, and I shall forge this item to suit your needs, ensuring you carry the essence of this battle with you.", + ["O"] = "Gather the required materials for Hanvar the Righteous near the church outside Karazhan.", + ["T"] = "Ravenstalker Boots", + }, + [41613] = { + ["D"] = "This amulet bears the emblem of House Wrynn, a treasured gift bestowed upon Medivh by his friend, King Llane, for the many noble deeds he performed for the people of Stormwind. Even in his madness, Medivh clung to it.$B$BBroken and battered—much like the Tower itself, a once-mighty sentinel of history. Yet perhaps this fragment of the past still holds value. Bring me the materials I require, and I shall see to it that this amulet serves its new bearer well.", + ["O"] = "Gather the required materials for Hierophant Nerseus near the church outside Karazhan.", + ["T"] = "Ravenstalker Amulet", + }, + [41614] = { + ["D"] = "This crown bears the symbol of the Kingdom of Azeroth, and it closely resembles the one King Llane used to wear. Perhaps even in his madness, Medivh still kept his friend close to his heart.$B$BFractured, almost crumbled—just like the Tower of Karazhan, a lost vigil of history. It is upon this history that we may reforge something anew. Bring me the materials I require, and I will ensure that this crown becomes of use to its new bearer.", + ["O"] = "Gather the required materials for Hierophant Nerseus near the church outside Karazhan.", + ["T"] = "Stormhowl Helm", + }, + [41615] = { + ["D"] = "I imagine your journey through a brief glimpse of both the Twisting Nether and Outland was not without its share of trouble. Yet, I sense an item in your possession that carries an otherworldly aura.$B$BAllow me to lay eyes upon this mantle. Hm, as far as I can tell, the enemy you faced was indeed formidable—perhaps powerful enough to shift between planes. No matter; while its previous owner lies dead, some of its magic endures. Were you to bring me the materials I require, I could perhaps mold this item to suit your needs.", + ["O"] = "Gather the required materials for Anelace the Clairvoyant near the church outside Karazhan.", + ["T"] = "Stormhowl Shoulderguards", + }, + [41616] = { + ["D"] = "Defeating a Nathrezim of such power is no easy feat. Even beyond the veil of life and death, many cursed the existence of the accursed Mephistroth. You could hear the echoes of the tormented souls in the Twisting Nether rejoice the moment the demon lay dead.$B$BAlas, that is neither more nor less important—for not only did you manage to slay such a formidable foe, but you also retrieved its armor. This armor shall serve as the foundation for your next piece of the puzzle; in truth, it may even be considered the final piece. As before, bring me the materials I require, and claim a prize that will make even the mighty Eredar tremble in their boots.", + ["O"] = "Gather the required materials for Anelace the Clairvoyant near the church outside Karazhan.", + ["T"] = "Stormhowl Chest", + }, + [41617] = { + ["D"] = "Doomguards were the elite bodyguards of their master—none could face a fiercer enemy, and yet you confronted one of their best. Surviving the wrath of the Highlord would have been a worthy feat in itself, and yet you managed to defeat him.$B$BI sense that you possess something of his—a memento from a worthy battle, one that we could use as the basis for a piece of your armor. What say you? Bring me the materials I require, and we will ensure that you wear this fight both in spirit and upon your body.", + ["O"] = "Gather the required materials for Hanvar the Righteous near the church outside Karazhan.", + ["T"] = "Stormhowl Kilt", + }, + [41618] = { + ["D"] = "Your journey through a fleeting glimpse of both the Twisting Nether and Outland was not without its hardships. Still, I can sense an item in your possession—a relic that emanates an otherworldly essence.$B$BAllow me to examine these boots. It seems the adversary you faced was indeed formidable, perhaps even capable of traversing the planes. Yet, while its previous owner now lies dead, remnants of its magic persist. What say you? Bring me the materials I require, and I shall forge this item to suit your needs, ensuring you carry the essence of this battle with you.", + ["O"] = "Gather the required materials for Hanvar the Righteous near the church outside Karazhan.", + ["T"] = "Stormhowl Boots", + }, + [41619] = { + ["D"] = "This amulet bears the emblem of House Wrynn, a treasured gift bestowed upon Medivh by his friend, King Llane, for the many noble deeds he performed for the people of Stormwind. Even in his madness, Medivh clung to it.$B$BBroken and battered—much like the Tower itself, a once-mighty sentinel of history. Yet perhaps this fragment of the past still holds value. Bring me the materials I require, and I shall see to it that this amulet serves its new bearer well.", + ["O"] = "Gather the required materials for Hierophant Nerseus near the church outside Karazhan.", + ["T"] = "Stormhowl Amulet", + }, + [41620] = { + ["D"] = "This crown bears the symbol of the Kingdom of Azeroth, and it closely resembles the one King Llane used to wear. Perhaps even in his madness, Medivh still kept his friend close to his heart.$B$BFractured, almost crumbled—just like the Tower of Karazhan, a lost vigil of history. It is upon this history that we may reforge something anew. Bring me the materials I require, and I will ensure that this crown becomes of use to its new bearer.", + ["O"] = "Gather the required materials for Hierophant Nerseus near the church outside Karazhan.", + ["T"] = "Helm of the Guardian", + }, + [41621] = { + ["D"] = "I imagine your journey through a brief glimpse of both the Twisting Nether and Outland was not without its share of trouble. Yet, I sense an item in your possession that carries an otherworldly aura.$B$BAllow me to lay eyes upon this mantle. Hm, as far as I can tell, the enemy you faced was indeed formidable—perhaps powerful enough to shift between planes. No matter; while its previous owner lies dead, some of its magic endures. Were you to bring me the materials I require, I could perhaps mold this item to suit your needs.", + ["O"] = "Gather the required materials for Anelace the Clairvoyant near the church outside Karazhan.", + ["T"] = "Shoulders of the Guardian", + }, + [41622] = { + ["D"] = "Defeating a Nathrezim of such power is no easy feat. Even beyond the veil of life and death, many cursed the existence of the accursed Mephistroth. You could hear the echoes of the tormented souls in the Twisting Nether rejoice the moment the demon lay dead.$B$BAlas, that is neither more nor less important—for not only did you manage to slay such a formidable foe, but you also retrieved its armor. This armor shall serve as the foundation for your next piece of the puzzle; in truth, it may even be considered the final piece. As before, bring me the materials I require, and claim a prize that will make even the mighty Eredar tremble in their boots.", + ["O"] = "Gather the required materials for Anelace the Clairvoyant near the church outside Karazhan.", + ["T"] = "Robes of the Guardian", + }, + [41623] = { + ["D"] = "Doomguards were the elite bodyguards of their master—none could face a fiercer enemy, and yet you confronted one of their best. Surviving the wrath of the Highlord would have been a worthy feat in itself, and yet you managed to defeat him.$B$BI sense that you possess something of his—a memento from a worthy battle, one that we could use as the basis for a piece of your armor. What say you? Bring me the materials I require, and we will ensure that you wear this fight both in spirit and upon your body.", + ["O"] = "Gather the required materials for Hanvar the Righteous near the church outside Karazhan.", + ["T"] = "Legs of the Guardian", + }, + [41624] = { + ["D"] = "Your journey through a fleeting glimpse of both the Twisting Nether and Outland was not without its hardships. Still, I can sense an item in your possession—a relic that emanates an otherworldly essence.$B$BAllow me to examine these boots. It seems the adversary you faced was indeed formidable, perhaps even capable of traversing the planes. Yet, while its previous owner now lies dead, remnants of its magic persist. What say you? Bring me the materials I require, and I shall forge this item to suit your needs, ensuring you carry the essence of this battle with you.", + ["O"] = "Gather the required materials for Hanvar the Righteous near the church outside Karazhan.", + ["T"] = "Boots of the Guardian", + }, + [41625] = { + ["D"] = "This amulet bears the emblem of House Wrynn, a treasured gift bestowed upon Medivh by his friend, King Llane, for the many noble deeds he performed for the people of Stormwind. Even in his madness, Medivh clung to it.$B$BBroken and battered—much like the Tower itself, a once-mighty sentinel of history. Yet perhaps this fragment of the past still holds value. Bring me the materials I require, and I shall see to it that this amulet serves its new bearer well.", + ["O"] = "Gather the required materials for Hierophant Nerseus near the church outside Karazhan.", + ["T"] = "Amulet of the Guardian", + }, + [41626] = { + ["D"] = "This crown bears the symbol of the Kingdom of Azeroth, and it closely resembles the one King Llane used to wear. Perhaps even in his madness, Medivh still kept his friend close to his heart.$B$BFractured, almost crumbled—just like the Tower of Karazhan, a lost vigil of history. It is upon this history that we may reforge something anew. Bring me the materials I require, and I will ensure that this crown becomes of use to its new bearer.", + ["O"] = "Gather the required materials for Hierophant Nerseus near the church outside Karazhan.", + ["T"] = "Lionheart Helm", + }, + [41627] = { + ["D"] = "I imagine your journey through a brief glimpse of both the Twisting Nether and Outland was not without its share of trouble. Yet, I sense an item in your possession that carries an otherworldly aura.$B$BAllow me to lay eyes upon this mantle. Hm, as far as I can tell, the enemy you faced was indeed formidable—perhaps powerful enough to shift between planes. No matter; while its previous owner lies dead, some of its magic endures. Were you to bring me the materials I require, I could perhaps mold this item to suit your needs.", + ["O"] = "Gather the required materials for Anelace the Clairvoyant near the church outside Karazhan.", + ["T"] = "Lionheart Shoulders", + }, + [41628] = { + ["D"] = "Defeating a Nathrezim of such power is no easy feat. Even beyond the veil of life and death, many cursed the existence of the accursed Mephistroth. You could hear the echoes of the tormented souls in the Twisting Nether rejoice the moment the demon lay dead.$B$BAlas, that is neither more nor less important—for not only did you manage to slay such a formidable foe, but you also retrieved its armor. This armor shall serve as the foundation for your next piece of the puzzle; in truth, it may even be considered the final piece. As before, bring me the materials I require, and claim a prize that will make even the mighty Eredar tremble in their boots", + ["O"] = "Gather the required materials for Anelace the Clairvoyant near the church outside Karazhan.", + ["T"] = "Lionheart Chest", + }, + [41629] = { + ["D"] = "Doomguards were the elite bodyguards of their master—none could face a fiercer enemy, and yet you confronted one of their best. Surviving the wrath of the Highlord would have been a worthy feat in itself, and yet you managed to defeat him.$B$BI sense that you possess something of his—a memento from a worthy battle, one that we could use as the basis for a piece of your armor. What say you? Bring me the materials I require, and we will ensure that you wear this fight both in spirit and upon your body.", + ["O"] = "Gather the required materials for Hanvar the Righteous near the church outside Karazhan.", + ["T"] = "Lionheart Legs", + }, + [41630] = { + ["D"] = "Your journey through a fleeting glimpse of both the Twisting Nether and Outland was not without its hardships. Still, I can sense an item in your possession—a relic that emanates an otherworldly essence.$B$BAllow me to examine these boots. It seems the adversary you faced was indeed formidable, perhaps even capable of traversing the planes. Yet, while its previous owner now lies dead, remnants of its magic persist. What say you? Bring me the materials I require, and I shall forge this item to suit your needs, ensuring you carry the essence of this battle with you.", + ["O"] = "Gather the required materials for Hanvar the Righteous near the church outside Karazhan.", + ["T"] = "Lionheart Boots", + }, + [41631] = { + ["D"] = "This amulet bears the emblem of House Wrynn, a treasured gift bestowed upon Medivh by his friend, King Llane, for the many noble deeds he performed for the people of Stormwind. Even in his madness, Medivh clung to it.$B$BBroken and battered—much like the Tower itself, a once-mighty sentinel of history. Yet perhaps this fragment of the past still holds value. Bring me the materials I require, and I shall see to it that this amulet serves its new bearer well.", + ["O"] = "Gather the required materials for Hierophant Nerseus near the church outside Karazhan.", + ["T"] = "Lionheart Amulet", + }, + [41632] = { + ["D"] = "I imagine a floating citadel filled to the brim with undead proved itself quite the hunting ground. Though unlike any other you have faced so far, I am confident in believing you are capable enough to continue what may well be the greatest hunt of your entire life.$B$BAs we have discussed before, the Cryptstalker armor could be within your grasp—yet, unlike any set of armor before it, this one is only considered complete with a powerful ring. Should you find something resembling such a thing, return it to me, and together we shall unlock its true potential.", + ["O"] = "", + ["T"] = "Ring of the Cryptstalker", + }, + [41633] = { + ["D"] = "It seems I am in possession of many finger bones. I will spare you their \'proper\' anatomical names, as educating you in the structure of the hand is neither my purpose nor my job. However, as a Rogue yourself, perhaps you should study... yet—never mind. We are veering off-topic.$B$BAs I told you before, Don Julio managed to teach me his craft of the Bonescythe Armor, which I will provide to you—for a price. Should you come across anything resembling a ring while fighting, not only for your survival but for the rest of us, bring it to me. I will ensure it is adorned with these finger bones, which, in turn, will complete your set of armor.", + ["O"] = "", + ["T"] = "Bonescythe Ring", + }, + [41634] = { + ["D"] = "What an impudent child! I\'ve lost count on how many times I have instructed her about the dangers of arcane magic. That reckless curiosity of hers will one day be the doom for all of us.$B$BYou\'ve surely noticed the tower uphill from this humble abode? Usually I would reside there with all the other magically interested from around Northwind and elsewhere, but my ‘dearest\' apprentice Thronda thought it would be a brilliant idea to summon her own assembly of arcane elementals to help with her chores. Too bad that they grew out of control and are now terrorizing my tower!$B$B$N, ascend it, and retrieve my almanach as well as residue from their demise. Once I am attuned to their energy, I can cast a spell to stop them from rematerializing.", + ["O"] = "Enchantress Magilou requires her almanach and eight pieces of residue from the invading elementals in her tower in western Northwind.", + ["T"] = "Magilou\'s Magical Mishap", + }, + [41635] = { + ["D"] = "I\'ve spent my entire life here in Northwind and it had never been in such disarray since the First War. Gnolls, Orcs and Dark Iron all roam our peaceful hillsides and sow chaos wherever they go. Even the roguish Defias seek to benefit from it all. These brash brigands dared to assault our logging camp not far from here, northeast of Ambershire. All of the workers fled of course, but the town doesn\'t have enough space to shelter them, so for now they are resting here in my warehouse. If only Amberwood\'s guard would be ambitious enough about helping the good citizens of Northwind!$B$BIt seems to fall into the hands of the people again. Adventurer, you appear of good health and mind, will you aid us? Drive out the Defias from the logging camp; help us restore even a sliver of peace to our beautiful home!", + ["O"] = "Clear the Northwind Logging Camp of invading Defias.", + ["T"] = "Chopping Defias", + }, + [41636] = { + ["D"] = "$C, could you spare a moment? I am in a bit of a crisis right now, and you seem the right person for my problem. I am a traveling merchant selling books for all ages and interests. Once a month I come here to Ambershire with a delivery from the Church in Stormwind; donations from the citizens for all the orphaned children attending the lectures and school held at the Ambershire church just across the river. However, on my way here, I\'ve been robbed by thieves, and among their loot was said donation crate!$B$BI tried following them, but my old age is catching up to me. All I saw was them fleeing into the mountains to the north, one of them wearing a raven black scarf. Please help me fulfill my duty to the innocent children of this kingdom. Should you find the crate, bring it to Sister Argent to the church north of Ambershire.", + ["O"] = "Retrieve the crate from the thieves in the northern mountains and bring it to Sister Argent at the Ambershire Church.", + ["T"] = "Who Will Think Of The Children?", + }, + [41637] = { + ["D"] = "Again, thank you very much for bringing these books back to us. The children will be overjoyed to hear that we don\'t have to cancel today\'s school. You would expect them to be annoyed having to attend school, but they actually enjoy coming here and learning more about the world together. It\'s a heartwarming sight and gives me hope they\'ll be set on the path to a promising future.$B$BDue to the robbery, we\'re a bit behind on time, and I need some time to prepare today\'s lecture. Would you be willing to lend us a hand? The children will certainly be eager to speak to the one who valianty saved their books from that brigand! Last week we taught them the history of Balor, an island to the west of here. Perhaps you can help them strengthen their knowledge by reminding them. You can find the book we used here in the church.", + ["O"] = "Talk with the children at Ambershire Church and revise their knowledge about Balor.", + ["T"] = "School Assistance", + }, + [41638] = { + ["D"] = "It is mortifying to see what\'s happening to Northwind. When I returned here under recommendation of Archbishop Benedictus to assist Sister Argent, I could have never imagined this is what I would find. The people are terrified of the invasions from the eastern lands and criminals have set foot in our hills. Even the old abbey is...$B$BExcuse me, I spoke out of turn, forgive me. You see, Northwind is my place of birth, I remember its mellow nature and the carefree days one could spend here. But I guess those days are gone. If I had known, I would\'ve taken Mother with me. Her resting place being overrun by horrors of the past; it breaks my heart. She died when I was still young, her urn being placed in the crypt of Saint Mara Abbey.$B$B$C, what I ask is by chance too much, but would you be willing to gather my mother\'s urn? It would mean the world to me and not be to your disadvantage, I vow it by my oath to the Light.", + ["O"] = "Find the urn of Brother Graham\'s mother and return it to him at the Ambershire Church in Northwind.", + ["T"] = "The Grateful Dead", + }, + [41639] = { + ["D"] = "What an unusual sight, rarely do folk wander into my coven; let alone enter my home so brazenly. Do you think these to be appropriate manners for a $r such as you? Certainly not. But I would rather not waste any of my precious time critisizing your lack of etiquette, if I instead can make good use of your presence.$B$BI am in need of a selection of ingredients. Normally gathering them poses no issue to me, but the woods of Northwind have changed in recent times. There are unsavory individuals skulking about, which I would welcome to not lay eyes upon me. Rather you will go out and bring me what I desire. A simple task to make me forget your unruly transgression into my home. I am sure you will be capable of fulfilling it splendidly, darling. You can gather them from the local wildlife all around Northwind.", + ["O"] = "Bring the Witch of Northwind her ingredients to her house in northern Northwind.", + ["T"] = "The Woods Have Changed", + }, + [41640] = { + ["D"] = "How could this happen? Just this morning I was preparing beer and food for the mountaineers, when the next thing I saw was Dark Iron storming my beloved tavern! The Titan\'s must be watching over me, as I managed to escape with only minor injuries. The mountaineers of this garrison helped me recover a bit of my strength, yet I am still shaken from all that happened. Be that as it may, I cannot let this injustice stand any longer! As the good men here cannot aid me on such short notice, perhaps you are willing to lend this old man your sword and spell? You look robust and hardened enough for the task.$B$BSouth of Helm\'s Bed Lake is a passageway to my mountain rest. I am certain it has already been overrun by those fiendish Dark Iron. If you and perhaps a friend of yours could retrieve my personal belongings from my tavern, it would soothe my worried heart immensely.", + ["O"] = "Return Durmir\'s Belongings to him at the South Gate Garrison in Dun Morogh.", + ["T"] = "Restless", + }, + [41641] = { + ["D"] = "Aka\'magosh, $C. Chaos ensues before us. Our spiritual site of communion, the Earthen Ring, has been taken over by a large group of air elementals, wreaking havoc without bounds. Normally we would be able to banish them with ease, yet only us three were present during their sudden appearance. Many of our members are on pilgrimage to mend the ailing world and its disrupted balance; proof of it unfolding before our very eyes. We must reign these elementals in and remove them from the Earthen Ring - your aid would be much appreciated. Thin out their numbers and dispatch their leader, then we should be able to bring the situation under control.", + ["O"] = "Banish the invading elementals at the Earthen Ring in the Stonetalon Mountains. Return to Farseer Greka afterwards.", + ["T"] = "Gone With The Wind", + }, + [41642] = { + ["D"] = "When the logging camp northwest of here was raided by the foul Defias, the lumberjacks were quick enough to escape mostly unharmed. My father and I tend to those injured here in his warehouse, since there is no other place for them to stay for now. Still, while there are many familiar faces among them, one of his good friends Christoph working at the camp hasn\'t shown up yet, neither here nor in Ambershire.$B$BChristoph has a young son, and I\'m afraid the worst has come to pass. Please, do me this favor, and search for him. Maybe he has hidden himself somewhere near the camp...", + ["O"] = "Search for Christoph near the Northwind Logging Camp.", + ["T"] = "Lonesome Arnold", + }, + [41643] = { + ["D"] = "King\'s Honor, $c. ‘Tis not an opportune time visiting Northwind, I must admit. Normally this vale is a tranquil place, untouched by the troubles of the world. But recently, many crises came crashing down on these hills. If you journeyed here from Stormwind, you\'ve seen what I am talking about. There are, however, more harrowing events transpiring in the shadows of the night.$B$BFor several weeks now, we\'ve received reports of disappearances occuring in the kingdom. They were seldom at first, nothing out of the ordinary, but the number has risen to an alarming amount. This is technically confidential, but I\'ve been assigned to this as the solitary investigator, and cannot by no stretch of the imagination accomplish this alone. The SI:7 has its hands full with the Defias in Westfall, so I will deputize you to assist me. Don\'t fret, I\'ll arrange just compensation for you.$B$BStart by questioning the remaining townsfolk; the groundskeeper, bailiff and one of the victim\'s relatives.", + ["O"] = "Interrogate the townsfolk of Ambershire.", + ["T"] = "Empty Houses", + }, + [41644] = { + ["D"] = "Ignatz\' and Judith\'s testimonies match with our reports of increased Defias activity in the region. With a more than high probability, these ‘skulking characters\' mentioned have to be Defias scoundrels, scouting the area for thieving opportunities. We haven\'t located their base of operations yet, so we may kill two birds with one stone here. $B$BSearch the area around Ambershire for Defias activity and potential intel on where they delegate their minions from. Once you do, infiltrate it and bring me any clues that may help us find the missing people.", + ["O"] = "Locate the Defias headquarters in Northwind and search for clues about the abductions.", + ["T"] = "Defying Odds", + }, + [41645] = { + ["D"] = "In the lands of Khaz Modan, just past the icy mountain range, the dwarves of Ironforge are in constant strife with their estranged brethren, the Dark Iron. These dwarves call the volcanic Blackrock Mountain their home and are known for their rigorous mining operations inside its blackened caves. Much to the Alliance\'s dismay, they do not achieve this by themselves, but through ruthless and unforgiving slavery. Major Birkton informed me of their recent insurgence into Northwind - a foreboding turn of events.$B$BShould the possibility of them abducting Northwind citizens for slave labor exist, then we have to investigate it. Travel to Sherwood Quarry to the northwest and gather intel about our current investigation.", + ["O"] = "Search Sherwood Quarry. Return to Operative Hawthorne in Ambershire with anything useful you find.", + ["T"] = "The Slavemakers", + }, + [41646] = { + ["D"] = "Our last option are the Blackrock Orcs, who you\'ve undoubtedly met already. According to our reconnaissance, they started advancing into Northwind a few weeks ago, with no apparent motive or reason. It occurred very shortly after the Dark Irons made their move of aggression, so there may be a connection present. Sacking Birkhaven was just the beginning, I\'m afraid.$B$BFor now we will shift our focus on the orc unit that secured the watchtower to the north. They are far ahead of the mainforce, a different aim must be at play here. You know what to do at this point; I\'ll wait for your results here in Ambershire.", + ["O"] = "Uncover the intent of the Blackrock Orc expansion to the northern watchtower. Report back to Operative Hawthorne in Ambershire.", + ["T"] = "Covering All Possibilities", + }, + [41647] = { + ["D"] = "$C, can I speak with you for a moment? I overheard your discussion with Operative Hawthorne. A commendable effort of the both of you to solve our most prominent issues, but Stormwind only assigning him to do so is concerning, to say the least. Northwind was struck at the worst time imaginable, with Lord Amberwood sending most of his military to Stormwind itself. Strange course of action, if you ask me, given how the Kingdom\'s other regions are faring. Regarding your investigation - I believe I can show you the way to resume what you had to abandon.$B$BFar to the northwest, you will find a grove nestled in the mountains. An old woman lives there under the dark red trees - she will be able to help you, I am sure of it.", + ["O"] = "Meet with the enigmatic woman of the woods.", + ["T"] = "Unconventional Means", + }, + [41648] = { + ["D"] = "So you are lost. Darling, I can see it in your face as clear as day. You need someone to guide your way, and you\'ve been told that someone could be me. Must have been that foolish girl Lydia, ever since she left my coven she did not care to visit me again. Her ambitions and duties as Mayor tie her down, locking her true potential, would she just accept it. Regardless of all that rambling, she is right. I can and will assist you in your needs, but not out of the goodness of my heart. All these ruffians marching into my woods have no business here!$B$BWhat I need from you is fairly simple: Deathcap and Widow\'s Frill, mushrooms native to these hills. Deathcap grows in caverns and has an orange cap, Widow\'s Frill grows in groups of three near wet soil; search the woods at the Great Birch near Grimmen Lake. Bring me these and something personal from a recently abducted person. I am sure you will find what I desire in town.", + ["O"] = "Acquire the needed material for the Witch of Northwind in her coven in northwestern Northwind.", + ["T"] = "Deathcap And Widow\'s Frill", + }, + [41649] = { + ["D"] = "If there is one thing Zappo Zapblast can\'t stand, it\'s grouches going out of their way to ruin the fun for others. During yesterday\'s broadcast, my team and I lost the connection to our tower, only to hear a mysterious message sent through our output channel seconds after! The cheeky fella stole the spotlight during my advertisements and started slandering us more than an intoxicated zombie! Turning off the broadcasting tower wasn\'t an option either, we worked all day to keep it up and running following the recent snowstorms! All we\'re broadcasting now is endless static! A catastrophe!$B$BYou look lively... more or less. I could use some help in exposing this phony. Nobody simply interferes with Zappo Zapblast and gets away with it!$B$BYou can find our recording box next to me. Just press the green button, then pull the slider down and turn the knob left all the way to the maximum output! Listening to the interference again will help us get to the bottom of it all.", + ["O"] = "Listen to Zappo Zapblast\'s recording. The recording box stands next to him in Everlook.", + ["T"] = "The Everlook Broadcast Hijacking", + }, + [41650] = { + ["D"] = "As you were listening to the recording, I noticed a distinct sound–no, TWO distinct sounds even I hadn\'t realized before. It seems the modulator only altered the goon\'s voice and not the entire input channel. What an amateur; more clueless than a forsaken seeking life insurance.$B$BYou see, I can remember any sound I hear. And what I recognized wasn\'t just any ordinary noise: The others and I went on a journey to gather some impressions for our diverse broadcasting just a few days ago. One of the places we ventured to were the amber hills of Azshara. It was precisely the northern cliffs where the hijacker chose to intercept our radio. Impressive, you say? I know, but that\'s Zappo Zapblast for you.$B$BAn adventurer like you could earn some fine coin if you would venture there and confront the fella. Search the northeastern cliffs. That\'s where the sounds of crashing waves and screeching hippogryphs are most prominent.", + ["O"] = "Find the Everlook Broadcast hijacker. Zappo suggests searching northeastern Azshara.", + ["T"] = "Crashing Waves, Screeching Thunder", + }, + [41651] = { + ["D"] = "", + ["O"] = "Bring Zappo Zapblast the journal and device you found. He waits for you in Everlook in Winterspring.", + ["T"] = "Pieces Falling Into Place", + }, + [41652] = { + ["D"] = "", + ["O"] = "Travel to the Everlook Broadcasting in Everlook in Winterspring.", + ["T"] = "An Unusual Interference", + }, + [41653] = { + ["D"] = "Greetings, traveler, and a welcoming Lunar New Year! This time of year beckons for new aspirations, dreams and ambitions we strive to achieve in the coming year. As such, it is important to reflect and listen to those that bear wisdom in their words and actions. My ancestors traveled throughout Kalimdor and met many mythical creatures and spirits. One of them, an unremarkable one for most, possessed the most profound insights there were. To this day, my tribe seeks this spirit for guidance in times of need.$B$BI want you to pay it a visit, to learn from its words and take them to heart. Nature whispers of its den; in the northwestern swamps of Dustwallow Marsh you will find it.", + ["O"] = "Seek the Spirit of Wisdom in Dustwallow Marsh.", + ["T"] = "The Great Spirit Of Wisdom", + }, + [41654] = { + ["D"] = "The Lunar New Year is a feast for the many tauren tribes and families. While we share customs here and there, the majority of them are unique to their tribe. I still remember the stories my father used to tell me, about the first hunt he participated in during the new year\'s celebrations. Back then, it was common to find boars roaming the savannah of the barrens. Their herds could be seen far and wide, and our huntsmen would gather every year to prepare a feast for the whole tribe.$B$BNowadays, the boars have long been perished or corralled by the quilboar. $N, I wish to pay respects to my ancestors by preparing a feast myself, so please help me achieve that goal. Slay boars of any kind and bring me ten of their carcasses, that should be enough for all the joyful travelers here in Moonglade.", + ["O"] = "Deliver ten Boar Carcasses to Hufan Earthbow in Moonglade. Any boar of Azeroth is suitable for this task.", + ["T"] = "Forefathers\' Honor", + }, + [41655] = { + ["D"] = "Ishnu-dal-dieb, traveler. The festivities are in full swing, and visitors from across Azeroth come steadily into Moonglade, eager to celebrate with their compatriots, no matter their origin. I see that you are still young, full of spirit and ambition; admirable qualities for those living the adventurous life. If it is a challenge you seek, then the Lunar New Year is the perfect time for that. It is a time of struggle, of overcoming burdens that still cling to your soul, so that you may enter the new age with an unbound spirit.$B$BVenture into the world, dive into the dens of evil and confront your inner doubts. Present to me a token of your victory, proving to me how you conquered yourself and I will reward you for your efforts.", + ["O"] = "Recover a Lunar Token from the most powerful foes of Azeroth\'s dungeon to Lissandra Skysoar.", + ["T"] = "Reverence To The Ancestors", + }, + [41656] = { + ["D"] = "A bounty is being offered to any brave and willing enough to combat the Dragonmaw Clan. Many of our brave brothers and sisters have died from this conflict. If something is not done to quell this aggression more of our own shall fall.$B$BShatterblade\'s safety is at risk and those able are urged to fight in the name of the Horde.$B$BThey are currently known to be amassing to the west in many locations across Grim Reaches.$B$BBring proof of your task to Commander Aggnash for reward.", + ["O"] = "Gather 30 Dragonmaw Medallions from Dragonmaw Orcs within the Grim Reaches for Commander Aggnash at Shatterblade Point in Grim Reaches.", + ["T"] = "Bounty on Dragonmaw", + }, + [41657] = { + ["D"] = "A worn letter is discovered upon Zuluhed\'s Corpse. It appears to be addressed to him, and written in a coarse handwriting which reads:$B$B", + ["O"] = "Bring the letter to someone of high authority in Grim Reaches.", + ["T"] = "Letter from Korlag Doomsong", + }, + [41658] = { + ["D"] = "This letter confirms some of the rumors that have been circulating, the Dragonmaw Clan was not fully united.$B$BNow that Zuluhed has been slain there is only one that stands in contention for chieftain, Commander Korlag Doomsong. If we are to ever claim victory over the Dragonmaw we must first slay Korlag himself.$B$BI must warn you, he is a dangerous foe, and should be treated with the utmost respect for his skill at arms. I would suggest bringing a band of warriors to assist with the battle to come.$B$BYou will find Korlag deep within Zarm\'geth Stronghold to the northwest of here. Bring his head, and return in glory.", + ["O"] = "Slay Korlag Doomsong within Zarm\'geth Stronghold and bring his head to Commander Aggnash at Shatterblade Point within Grim Reaches.", + ["T"] = "Destruction of the Dragonmaw", + }, + [41659] = { + ["D"] = "Far to the south lies the Sal\'Galaz Mines, once occupied by the dwarves of Dun Kithas, now overrun by filthy, Bonesplitter Troggs. If the Horde is to ever lay claim to Grim Reaches, the infestation must be dealt with, and firmly. Your task is to slay the Bonesplitters, and clear their foul presence.", + ["O"] = "Slay 6 Bonesplitter Troggs, 6 Bonesplitter Seers, 6 Bonesplitter Bonesnappers, and 6 Bonesplitter Skullthumpers for Grunt Morkan at Shatterblade Point in Grim Reaches.", + ["T"] = "The Sal\'Galaz Mines", + }, + [41660] = { + ["D"] = "Some weeks ago a large group of Dark Iron made their way through the Grim Reaches, settling just north of Shatterblade at Groldan\'s Excavation. Already they probe our defenses, spies have been seen by our sentries on more than one occasion. They are planning something, and I am sure of it.$B$BIf we are to keep our safety we must strike the first blow, and thin the ranks of their kind to deter them from making any assaults. Head to Groldan\'s Excavation, and make them bleed for their trespass.", + ["O"] = "Slay Dark Iron Dwarves around Groldan\'s Excavation, and gather 15 Shadowforge Signets for Grunt Morkan at Shatterblade Point in Grim Reaches.", + ["T"] = "Shadowforge Incursions", + }, + [41661] = { + ["D"] = "I often find myself staring—a bad habit for a guard, is it not? Yet I can\'t help it; my eyes drift to the trees. As the leaves fall, the breeze carries them into a whirlwind of battle, of dance—just as if the leaves themselves would duel.$B$B$B$BMh, I used to be a painter before I picked up arms. A necessary sacrifice in the days we live. My remote home, now abandoned, while I guard this tower day and night. And though my eyes behold beauty, my ears are tormented by that maniacal laughter.$B$BI cannot leave my tower. Even with Stormwind so close, the Merchant\'s Highroad is still plagued by those dreadful gnolls. I ask you, please, dispatch some of their numbers for the peace of my mind.", + ["O"] = "Slay 9 Amberpaw Gnolls and return the Stormwind Supplies to Lion\'s Watch.", + ["T"] = "Amberpaw Bounty", + }, + [41662] = { + ["D"] = "One might assume that traveling from Stormwind to Northwind would be a blissful endeavor, a mere walk in the park—anything but fleeing from a pack of bloodthirsty, drooling gnolls.$B$BSince the King embarked on his diplomatic mission, conditions have only worsened. It is inconceivable that we cannot rely upon our own guards! We were compelled to raise a militia from among the common folk. It is truly tragic$B$BBah, yet those blasted, greedy swine from the House of Nobles still extend their hands to demand taxes. I—pardon my outburst. On my way here, my prized ring slipped from my finger as I fled from imminent peril!$B$BMy merchandise is lost, so be it. But I cannot, in good conscience, part with that ring; it is a treasured family heirloom. It must have fallen into one of the leaf piles on the Merchant\'s Highroad. Would you be so kind as to retrieve it for me?", + ["O"] = "Find Leon\'s lost ring among the leaf piles.", + ["T"] = "Leaf\'s Bounty", + }, + [41663] = { + ["D"] = "Words, rumors—a wingless flight they hold. And with them, the seeds of doubt and curiosity bloom in the minds of mere men. Who would even blame them? After all, the words of the many are always louder than the words of the few. Our community has been in disarray for months.$B$BIt has been long since the people of Northwind had to fear for tomorrow. Yet our betters ignore the imminent danger and play the role of their own fools. Imagine your home assaulted, and instead of seeking aid from other nobles or providing the people with means of defense, you call for a jousting tournament.$B$BA jester, a fool—only one of these two would do such a thing. Unless we consider a third possibility. Some take to chaos as a means of reaching power, and I believe that might be the case this time as well. Report my concerns to Duke Sherwood at the Jousting Grounds. That man alone will rise to the occasion when others would not.", + ["O"] = "Report to Duke Sherwood at the Jousting Grounds.", + ["T"] = "Among the Jousters", + }, + [41664] = { + ["D"] = "Somehow, the crafty old fox has guessed right once again. It is one of the most infuriating things I can think of today. Were it not already ridiculous enough that we must stoop so low as to portray this uncanny turn of events—namely, painting our entire region as \"safe\" for the whole of the human kingdoms to see, what remains of them anyway—while contending with gnolls, orcs, Defias, and Light knows what else, we are also burdened with this \"Dark Knight.\"$B$B$B$BThis must be some cunning scheme, one to which I am stretched too thin to address. Aid me; the people of Northwind depend upon both you and me. I know you have little to gain from this, but I beseech you to act from the heart. I simply need you to sneak into the Dark Knight\'s tent and seek out anything... damning.", + ["O"] = "Search the Dark Knight\'s tent and return to Duke Sherwood with your findings.", + ["T"] = "A Dark Knight Rises", + }, + [41665] = { + ["D"] = "Poor Lord Amberwood, cursed to bear this burden —it is not the burden of leadership, but the burden of having such a brother. Alas, we do not have the luxury of choosing our family. Lord Amberwood is a forgiving man; too many times has he overlooked his brother\'s actions—yet, I doubt he will stand for this one.$B$BI fear the outcome. Northwind is already broken—if our Lord\'s heart should also shatter, we may never recover. I pray to the Light that this information will strengthen his resolve rather than dull his mind. Yet, how can one\'s heart not ache when his own brother seeks his death?$B$BThe older brother seeks to rule, with the support of the House of Nobles to end his own brother—at the hands of this Dark Knight. To think they would continue their schemes even now.$B$BThe common folk are mere playthings to these “nobles”. Deliver this letter to Lord Amberwood, but mention nothing of what you know. I will gather what remains of the true nobility and tell him the truth myself.", + ["O"] = "Deliver Duke Sherwood\'s invitation to Lord Amberwood.", + ["T"] = "In Amber Disgust", + }, + [41666] = { + ["D"] = "Are you here to try our vastly celebrated and highly sought-after Amberglaze Donuts? I couldn\'t be more pleased, but—sadly—we\'ve run out. It seems they are a real hit! If only I had anticipated this. People want more, and here I am without any ingredients.$B$BIf you could assist me in procuring some of the ingredients, I would be proud to fry up some of my famous donuts for you. I will even provide some payment, to be honest. I am in need of flour, salt, sugar, and honey. The rest I can gather myself. I mention these ingredients specifically because they require a bit of travel to obtain.$B$BI will provide you with a list, you should find them all here in Ambershire. I truly appreciate your help.", + ["O"] = "Gather the required ingredients for Amberglaze Donuts and return to Mitchell.", + ["T"] = "Amberglaze Donuts", + }, + [41667] = { + ["D"] = "This tournament is a farce. How can we even hope to win? I bet they\'ve enchanted their horseshoes. I know it, I just know it! I cannot allow Stromgarde to be defeated by a bookworm kingdom and a newly formed—eh, I wouldn\'t even call it a kingdom.$B$BTheramore and Kul Tiras will be too preoccupied with each other, but the real threat is Dalaran. I don\'t like the sidelong glance that Modera woman is giving me; they have a trick up their sleeves—I know they do!$B$BListen, $R, I\'ll pay you handsomely. Return to Stormwind, take the boat to Darkshore, and then travel to Alah\'thalas. I\'ve heard rumors of a man named Chaddus Suncarrier who can provide a pair of enchanted horseshoes. Retrieve them for me, and your service to Stromgarde will not be forgotten—and your pocket will be a bit heavier.", + ["O"] = "Seek Chaddus Suncarrier in Alah\'Thalas about a pair of enchanted horse shoes and return to Commander Leder.", + ["T"] = "In Need of Shoes", + }, + [41668] = { + ["D"] = "Are you perhaps willing to do a task for an old woman, adventurer? It has been so long since I last saw my grandchild, and I am unable to reach him. I was advised against leaving Northwind due to my old age, and he is not allowed to leave the Keep for safety reasons—or so I have been told.$B$BI would like to send him a bag of goods. The poor child may not be eating well and may be overstressed by the foolish adults who follow him everywhere. Could you visit the Jousting Grounds to purchase an Amberglaze Donut Pack, then go to Marisa by the inn for a Bundle of Apples, and finally come by my house—next to the Town Hall—to retrieve the pie I baked this morning?$B$BPlease return them all to me while I prepare the rest of the pack. There are a few other things I need to add.", + ["O"] = "Gather a pack of Amberglaze Donuts, Bundle of Apples and Ingvild\'s Pie and return to her by the statue.", + ["T"] = "Goody Bag", + }, + [41669] = { + ["D"] = "With everything gathered, all you need to do is travel to Stormwind Keep and deliver this bag to Prince Anduin—but only to him, do you understand? Otherwise, those pesky noble flies will surround him and inspect it. Be as stubborn as a mule if you must. You need to present this bag to Anduin yourself, got it?$B$BHere is a bit of coin for your trouble, along with the bag you must deliver and this stuffed toy. Keep it close; it might cost you your life. I am jesting, of course, but it belonged to my Tiffin. I know the child will be pleased to have something of hers. Go now, and tell him I love him as long as the leaves fall.", + ["O"] = "Deliver the packed good to Anduin Wrynn, in Stormwind Keep.", + ["T"] = "Fit for a Prince!", + }, + [41670] = { + ["D"] = "It is my duty to care for the final resting place of our loved ones. As grey a duty as it may be, tending the graveyard with these two hands brings pride to my heart and soul. For what better duty is there than caring for those who are no longer with us? Most citizens of Ambershire come here daily, flowers in hand. Remembering the dead has become a routine.$B$BYet, times have grown dim—dark even. It is customary to light a candle alongside the flowers placed at a loved one\'s tombstone. In this way, the flicker of the candle may guide the soul back to our world so it may receive the offerings. Few merchants still walk the road named after their profession, and thus the church has run out of candles.$B$BSniveling kobolds stole what few we had left one night, cowering away in their cave. To reach this cave, you must follow the road. Return to Lion\'s Watch, walk toward the Plump Pumpkin Inn, and after crossing Grimmen Lake, you will find the cave nearby. Return the candles to me.", + ["O"] = "Retrieve 20 candles from the Bristlewhisker Cavern and return them to Groundskeeper Clive.", + ["T"] = "To Light the Afterlife", + }, + [41671] = { + ["D"] = "The Light has tested the lands of our kingdom many times. For a handful of people, that was enough to dim their belief. A yearly gospel was held in our abbey, where we would remember all the dead of these lands, no matter how many hours it took. The abbot made it his duty to speak each name.$B$BThe somber, mournful music of the abbey was interrupted by the wailing of a flaming woman. \"Fire—fire!\" she screamed, her voice echoing through the abbey walls. Aflame, she collapsed to the floor, her tears dried by the heat, her skin scorched by the flames. Her wailing saved the lives of many, though the lives of a few were lost.$B$BSome whispers say it was the gnolls who set the abbey ablaze; others believe it was the wrath of the Light. A few even think the poor nun accidentally started the fire herself. Who speaks the truth? Go east, to the ruins of the abbey. The stone walls still stand, and perhaps with them, our necrology as well. See it returned to me, so that we may honor the dead this year once more.", + ["O"] = "Kill The Wailing Nun in the old Abbey and retrieve the Northwind Necrology, return it to Groundskeeper Clive.", + ["T"] = "Remember the Dead", + }, + [41672] = { + ["D"] = "Murlocs are exactly like roaches. The minute you kill one, two more hatch from their filthy spawning grounds. It\'s incredible how many of these disgusting creatures roam the world. It\'s as if wherever the world takes a breath of water, they are destined to appear. Hmph, a world to live in—while the world itself seems to be after your life.$B$BIt falls to adventurers like you to cull these depraved creatures. You may see arrogance behind my anger, but it\'s really self-pity. If I could deal with these creatures myself, I\'d raise arms without hesitation. Yet I can\'t. No matter how many days I try, I will never be able to wield a sword. My skills are better used elsewhere.$B$BDo this favor for me, and I will repay you as best I can. Cull their numbers—no matter how many, just do it. The fewer, the better.", + ["O"] = "Slay 10 Amberfin Murlocs, 8 Amberfin Lakestalker and 4 Amberfin Tidecaller. Return to Jarold Thorpe at the Plump Pumpkin in Northwind afterwards.", + ["T"] = "Amberfin Bounty", + }, + [41673] = { + ["D"] = "Out to slay some murlocs, adventurer? Theresa and I were just enjoying a chat until a few seconds ago, when we heard noises coming from across Grimmen Lake. It was a giant murloc barking at the others at the lake shore! I say \"bark\" because we didn\'t really understand what it was saying. I think it\'s supposed to be their alpha or something—I don\'t know much about murlocs.$B$BAnyway, Theresa noticed that it was carrying a huge amber pearl—the size of her head, she claims! If you venture into that cave and defeat it, could you bring the pearl back to me? I would like to offer it as a gift to her. She has been a great friend... and more to me, and I would like to show her that properly.", + ["O"] = "Enter the cave by the shore and slay Grrblga, return her pearl to Henry by the dock.", + ["T"] = "The Amber Pearl", + }, + [41674] = { + ["D"] = "My winery is lost to those savage grey oafs. Bah! Damn it all! To think we must face the orcs again and again and again. I am absolutely sick and tired of their pig-like faces. If only I were not this damn old, I would grab my pitchfork and leave none standing!$B$BI wish my sons would share this feeling. There they are, moping like children still. I was too soft on them; they know no war, and this is what it has led to. All that our family has is in the hands of the blasted orcs. I tried to spy on them, and what I saw angered me so, so much. Not only were they feasting on my grapes and drinking all my wine, but they also defiled my home!$B$BThey must be brought to an end. Aid me, adventurer, and the heirloom of my family is yours. Please, I beg of you, do what I—and my sheepish sons—cannot!", + ["O"] = "Slay 20 Blackrock Invaders in the outer fields of Northwind Winery. Return to Old Man Crawford when done.", + ["T"] = "Wine Avenger", + }, + [41675] = { + ["D"] = "That rambling old man I call a father has lost it entirely. Be it old age or his so-called disappointment that we are not willing to die a meaningless death against a horde of orcs, he has yet to stop huffing and puffing. It\'s not that I don\'t understand his frustration, but I am no soldier; I am a damn winemaker. How am I supposed to fight something ten times stronger than I?$B$BWere I not already balding, I would tear out a handful of hair. I am barely in my late twenties, and this old man has stressed me so much that my hair is falling out. “We need a new recipe, Jerry—do this, Jerry, do that, Jerry.” He never stops rambling. Yet I love the old man; he is my father, after all. Truth be told, if I had to pick any man from a crowd to be my father, I would still choose him.$B$BWhich is why, before his veins give out from frustration, I want him to see the new recipe I made. You will find it on the upper floor of the winery; I hid it in my wardrobe before running away.", + ["O"] = "Retrieve the recipe for Northwind Amber from the upper floor of the Crawford Winery. Return it to Old Man Crawford in the Plump Pumpkin Inn.", + ["T"] = "Northwind Amber", + }, + [41676] = { + ["D"] = "As mindless as these ashen orcs may seem, the reality is entirely different. I managed to have some people—hm, how do I put this? Some VERY skilled, sneaky people—gather intel for me. The information proved fruitful, yet there is not much we can do. While the people I mentioned before are very skilled at gathering intel, they will not do much in a fight.$B$BThis is why I believe a group of adventurers, led by none other than a seasoned one such as you, may be capable of putting an end to this orcish threat. There are three of them. You will find Overlord Throkk in a cave we have called the Blackrock Breach, Ozuk Doomspike outside barking orders from a ruined house, and Shuni Steeltooth has infiltrated our territory so deeply that she has taken over one of our watchtowers. You will find the tower resting on the hill that used to keep watch over our Altar of Heroes.$B$BPut an end to them.", + ["O"] = "Kill Overlord Throkk, Ozuk Doomspike and Shuni Steeltooth for Colonel Driscol and return to him.", + ["T"] = "Orcs by Our Borders", + }, + [41677] = { + ["D"] = "Were the orcs not enough of a threat themselves, we also have to deal with the Dark Irons, who have left their scorched lands to dig a quarry in ours. By the Light, I swear, for every Dark Iron in this world, there exists a quarry. It\'s as if some divine intervention wishes for dwarves and quarries to thrive all over the land.$B$BAlas, comedy aside, I need someone capable and brave enough to sabotage them. We do not have the numbers, and frankly, we lack the patience to deal with dwarves right now; the orcs pose a greater threat. Thankfully, the Dark Irons brought powder kegs with them—an easy target for sabotage. Sneak in, or don\'t—I don\'t really care—just blow those kegs up!", + ["O"] = "Sabotage fifteen Dark Iron Gunpowder Kegs and return to Colonel Driscol at the Plump Pumpkin in Northwind.", + ["T"] = "Darker than Iron", + }, + [41678] = { + ["D"] = "I came here to spread the good word of the Light and have people join us on our crusade against the Scourge. Yet, as I look around me, I see nothing but plight and mistrust toward the Light. These people can barely help themselves; they think they are abandoned by it.$B$BThey are no true believers—that is all there is to it. Lordaeron fell to the Scourge entirely, yet our Scarlet Monastery still shines with the gloss of the Light. I almost pity these fools. Hmph. Truth be told, I have a task for you. The moment you retrieve the item I require, I will be going back to the monastery; I can\'t stand the sight of these wretches any longer.$B$BDrowning in guilt and alcohol, they are. Regardless, the item I seek should still be in the burnt abbey—it is a chalice that the former abbot used to bless the waters. It still holds this power, and my people need it more than these scoundrels do. Return it to me, and I will pay you well.", + ["O"] = "Retrieve the Chalice of Light from the old Abbey for Inquisitor Abbadon.", + ["T"] = "An Amber Light", + }, + [41679] = { + ["D"] = "Wiggles, you good-for-nothing, twice-born idi—oh, that is not you, Wiggles, huh? Quite the predicament.$B$B$B$BWhat are you standing there for? Shoo, be gone. I am busy here—conducting an experime—hm, want to be my lab rat? No? The nerve of some people. You should be proud I even asked, hmph. So, you are... what, an adventurer? Is that why you foolishly came all the way to the outskirts of a human kingdom, for adventure? Bah, fool.$B$BGo beat up some of those bones near the burnt abbey—I am in need of charred bones. Don\'t ask why! It\'s for an adventure.$B$B$BPoor idiot.", + ["O"] = "Collect Charred Bones for Triston Lancaster at the abbey crypt in Northwind.", + ["T"] = "Charred Bones", + }, + [41680] = { + ["D"] = "My good-for-nothing assistant has yet to return, which angers me greatly. So, you will go find him. Quite the adventure, don\'t you think? Fine, fine, I\'ll stop pulling your leg. I really could use the help. I\'ve sent Wiggles to Birkhaven—or what\'s left of it, or whatever you wish to call it.$B$BHe was supposed to kill an orcish spellcaster from these invading Blackrock orcs. I assume you\'ve heard of a Pyremaster before? No? Long story short, it\'s some sort of orc—uh... with necromantic talents, but it also works with fire? I\'m unsure, that\'s why I need it dead—so I can bring it back and learn its secrets.$B$BBe on your way then. Find Wiggles. Oh, right, Wiggles has white—balding hair. You should be able to find him easily, don\'t worry about it.", + ["O"] = "Find Wiggles!", + ["T"] = "Where is Wiggles?", + }, + [41681] = { + ["D"] = "Wiggles smells master on fleshy–fleshy help Wiggles?$BWiggles find smelly orc, uerk! UERGH!$BVery smelly orc.$B$BSmelly orc hide under tent next to catapult. WOOSH–DONK–BONK!$BBig stone crash, destroy Wiggles. Wiggles sad.$BNo more Wiggles if big stone crash! BONK BONK WIGGLES GONE!$B$BFleshy go, Wiggles stay?", + ["O"] = "Kill the Blackrock Pyremaster and return to Wiggles.", + ["T"] = "Wiggles Knows the Way", + }, + [41682] = { + ["D"] = "Lok-tar, pup of the New Horde. I am Dul Wolfsnarl and I hail from Karfang Hold. While we have not been allies for long I judge you are trustworthy enough to become my company. There is no need for me to know what brought you to these lands, yet I hope you are here to cause a little chaos.$B$BOur chieftain sent me to keep an eye on some of our kin that still bows to the Blackrock Mountain. Were those wretches not enough, the dark irons also infiltrated these lands to do what they do best–build a quarry. I do not understand this love for digging, alas, they are digging their own graves.$B$BCarry this pouch to the Sherwood Quarry and blow up their powder kegs. None shall be left by morning.", + ["O"] = "Sabotage fifteen Dark Iron Gunpowder Kegs and return to Dul Wolfsnarl in northern Northwind.", + ["T"] = "Vile Dwarven Pigs", + }, + [41683] = { + ["D"] = "Whenever our warleader decided to take a stand against the spawn of Blackhand, it left a wide, gaping hole in the ranks of Blackrock Mountain. Many of our people were honored warriors or respected elders—truth be told, we were the ones meant to attack this land. For better or worse, however, we have not.$B$BYet scum were appointed in our stead. A travesty, an insult to the might of Karfang. While I dispatch their numbers by other means, I urge you to find strength in numbers and slay those ingrates.$B$BYou will find Overlord Throkk in a cave called the Blackrock Breach, Ozuk Doomspike barking orders from a ruined house, and Shuni Steeltooth has infiltrated deep into human territory, so deep that she has taken over one of their watchtowers. You will find the tower resting on the hill that used to keep watch over the Altar of Heroes. Sever their heads and bring them back to me.", + ["O"] = "Kill Overlord Throkk, Ozuk Doomspike and Shuni Steeltooth for Dul Wolfsnarl and return to him.", + ["T"] = "Scum Should Stay Scum", + }, + [41684] = { + ["D"] = "$B$BYou are most fortunate, young one. I have seen who you seek - and they still remain here in Northwind. If you intend to capture them, make haste. My vision showed me the location of the young woman whose comb you brought. Ascend the hills past Amberwood Keep and follow its trails. Evil will await you there.", + ["O"] = "Find the location described by the Witch of Northwind and report to Operative Hawthorne in Ambershire afterwards.", + ["T"] = "Shadow\'s Vision", + }, + [41685] = { + ["D"] = "I will be occupied here in Northwind for a while, which is why I need you to deliver this report in my stead. It contains all evidence we have collected, as well as the letter you have found on the orcs. I myself cannot decipher it, but my superior is versed in many languages, Orcish included. Bring this to Master Mathias Shaw in Stormwind\'s Old Town as soon as possible. Tell him in person what you have seen and experienced.$B$BI wish you the best of luck. King\'s Honor, friend.", + ["O"] = "Deliver Hawthorne\'s Journal to Master Mathias Shaw in Stormwind\'s Old Town.", + ["T"] = "A Veiled Threat", + }, + [41686] = { + ["D"] = "You have surely wondered to yourself where they might have taken the kidnapped people. Fortunately for us, this document tells us where they are operating from. As much as it plays into our hands, reading the name of the island sent shivers down my spine. The cursed, dread island of Balor, off the western coast of Stormwind Harbor. The kingdom has not set foot onto it for decades, for its legacy is one of demise and harrowing disaster.$B$BWe cannot wait much longer. If Balor truly is their base of operation, then the fate of the captured citizens is grim. I will send a task force posthaste, and I want you to accompany them. Prepare whatever you need for this forsaken island, do not take this lightly. Operative Simmons in Stormwind Harbor will make sure to set you on the right path to Balor. Once there, report to Verona Gillian, she will lead the operations.$B$BDo your best, $C.", + ["O"] = "Travel to Balor to continue your investigation.", + ["T"] = "Into The Tortured Past", + }, + [41687] = { + ["D"] = "These lightforsaken Dark Iron! How dare they fall into our beautiful vale?! As if their home turf of a mountain is not good enough, no! They just couldn\'t help themselves and seize control of my wonderful quarry I had governed so diligently. Oh, it makes me so furious just thinking about it! You! Grab your weapon, spells or whatever you use to kill things and go to Sherwood Quarry far to the northeast. I want you to remove every single pest you can find there and rain down the same agony they inflicted on my subordinates. They will not go unpunished!", + ["O"] = "Repel the Dark Iron siege on Sherwood Quarry and return to Duke Sherwood at the Jousting Ground in Northwind.", + ["T"] = "Misery At Sherwood Quarry", + }, + [41688] = { + ["D"] = "Greetings, $C. Do you enjoy your stay at Amberwood Keep? My noble compatriots and I have more than enough issues to resolve, so I am afraid the minimum amount of hospitality is all we can afford at the moment. Still, you look like the lively type; interested in lending a hand? I promise, it will be worth your while.$B$BMy name is Josephine Mildenhall and I oversee the agricultural facilities of Northwind, mainly the Mildenhall Horse Farm and the Crawford Winery. The former has its hand tied by two things: the jousting tournament and a missing delivery of horse feed. They take care of all the contestants\' steeds and need high quality horse feed directly ordered from Westfall to ensure optimal conditions can be met on the day of the competitions. To much of my dismay, this delivery was stolen by the delinquent gnolls roaming the Auburn Forest south of here, putting immense pressure on my subordinates. Please, reclaim the sacks and bring them to Horsekeeper Geringt at the horse farm.", + ["O"] = "Return the stolen horse feed to Horsekeeper Geringt at Mildenhall Horse Farm in Northwind.", + ["T"] = "To Look A Gift Horse In The Mouth", + }, + [41689] = { + ["D"] = "", + ["O"] = "Collect ten Grimmen Greens for the injured duck at Grimmen Lake in Northwind. Don\'t forget to bring a bandage for its wound!", + ["T"] = "A Good Samaritan", + }, + [41690] = { + ["D"] = "", + ["O"] = "Search Northwind for someone able to assist you with the injured duck.", + ["T"] = "Still Not Enough", + }, + [41691] = { + ["D"] = "Northwind is home to many herbs and plants of various uses. The people of Stormwind learned to harness their properties long ago and have used them ever since. Watching them gain their knowledge through trial and error was amusing, truly. To help your quacking little friend here, I need you to pick a few strands of Winter\'s Kiss for me, a flower with a vibrant white bloom. A distant cousin of the Winter\'s Bite herb, it can quickly stop bleeding and infections if processed properly. The flower grows to the east of here, along the snowy ridges to the north. To create a potent salve, Ambersap is also needed. The resident bears delight in the sap of the auburn trees, some of it sticking to their fur. Gather this for me and the little one should be safe and sound.", + ["O"] = "Gather the needed ingredients for the Witch of Northwind at her house in the Witch Coven.", + ["T"] = "Some May Call It Quackery", + }, + [41692] = { + ["D"] = "Good to have more hands on deck. Shaw didn\'t exactly send a whole regiment on this accursed island, which means we have to deal with what we got. Our current main objective is scouting the area and finding out what the Stormreaver are doing and for what reason. We have yet to encounter any orcs in the area, meaning we\'re a bit dry on leads. Good thing we have you with us now.$B$BShortly after arriving here, we sent out a reconnaissance unit onto the main island to survey the port ruins for any suspicious activity. As suspicious as it can get, really. We have not heard from them for a few hours, which does not bode well. I need you to check on them on the plateau overlooking the Ruins of Breezehaven. Should they still live, assist them. If not... Find out what happened.", + ["O"] = "Convene with the SI:7 corps on the plateau near the Ruins of Breezehaven on Balor.", + ["T"] = "Assessing The Situation", + }, + [41693] = { + ["D"] = "", + ["O"] = "Search for more clues at Sorrowmore Lake on Balor.", + ["T"] = "The Last Lines", + }, + [41694] = { + ["D"] = "My corps consisted of ten operatives, surveying the perimeter around the Croaking Plateau. From the few ones that survived I was the only one locked up in this inn. For what reason I don\'t know. What I could see, however, was three of my comrades - Flynn, Elroy and Cherys - being dragged past the battlefield to the south of here. Luckily I understood a few of the orcish words they spoke. ‘Cave\', ‘hill\' and ‘master\' are what I could decipher from their speech. It may not be much, but it is better than nothing, I guess. Apologies, but I won\'t be of much help to you with these injuries; I will report back to Operative Gillian and tell her what happened, that much I should manage. I pray you can uncover more and return safely back to the outpost.", + ["O"] = "Find Agent Deryl\'s comrades and potential information about your enemies using the clues he gave you. Return to Verona Gillian at the SI:7 Outpost on Balor afterwards.", + ["T"] = "To The Darkest Places", + }, + [41695] = { + ["D"] = "The SI:7 has many specialized forces within its organization: scouting agents, spies, explosives experts, field medics, archivists... Noppsy Spickerspan is one such archivist, his goal is to document everything that occurs during large-scale operations. As such he is versed in many talents, translating being one of them. You can imagine how useful it is to have someone at your disposal who can decipher enemy intel for you. Hand him the scroll and let us find out what those occult bastards are up to.", + ["O"] = "Bring Noppsy Spickerspan on Balor the Stormreaver Scroll.", + ["T"] = "Noppsy Spickerspan", + }, + [41696] = { + ["D"] = "$B$BThis one is quite the conundrum, it\'s not only in orcish, but also coded in a way that is atypical for orcish missives. It will take some time for me to crack the code and translate. Luckily you don\'t have to sit here, waiting for me to finish. I am certain this scroll isn\'t the only of its kind. There must be others, handed around between the Stormreaver orcs here on Balor. If I can get my hands on more of their correspondences, it would accelerate the translation process immensely!", + ["O"] = "Acquire Stormreaver Writings for Noppsy Spickerspan at the SI:7 Outpost on Balor.", + ["T"] = "You May Call This Cheating...", + }, + [41697] = { + ["D"] = "My brother Noppsy is a bit of an oddball, even among us gnomes. His fanatical admiration with all things scholarly made him famous - or rather infamous - even back in Gnomeregan. I am not quite sure if I should endorse you fostering his obsession, but even I can\'t deny his skillset has helped us solve more operations than I\'d like to admit.$B$BI have a job for you, whilst you are out there scouring the island for the orcish writings. Our agents have located a cave on the opposite site of Balor, filled with a troubling variety of demons. As if the orcs weren\'t enough, they continue their habit of communion with demonic forces. I want you to infiltrate the cave, dispatch any possible figurehead and thin out their numbers. The less of them we have to deal with, the better.", + ["O"] = "Clear out the demons in the cave on the western side of Balor for Nippsy Spickerspan at the SI:7 Outpost.", + ["T"] = "Demons Galore", + }, + [41698] = { + ["D"] = "$B$BDon\'t let Gillian know I keep this stashed, otherwise I\'ll be on latrine duty again. What a mess, I\'m telling you! I heard good ole Noppsy asked for your help? You don\'t mind me asking you for a favor as well? Believe it or not, but the SI:7 doesn\'t do only jobs of the silent kind. No, no. Infiltration and sabotage go hand in hand, and I\'m the man if you want to see things go BOOM. The old fortifications of Balor are mostly decrepit and wipe open, but they still offer a significant advantage to our enemies. Place these near the broken watchtower and their camps at the old battlefield. They\'ll be ready once the time is right!", + ["O"] = "Return to Rufus Hammerstrike at the SI:7 Outpost after placing the explosives on Balor.", + ["T"] = "Explosives Make My Heart Go BOOM!", + }, + [41699] = { + ["D"] = "$B$BOh, $N! Apologies, my rampant thoughts made me not realize you returned. I just finished decrypting both the scroll and the tablet you found in that demon cave. What I discovered is... well, horrifying, to put it lightly.$B$BThe scroll you found on that Stormreaver necrolyte speaks of aberrant experiments conducted on their captives. Many of them being ‘not suitable\', resulting in - if I translated correctly - liquefaction. Equally alarming is the contents of the stone table my sister Nippsy handed me. The demon\'s plan is to aid the Stormreaver orcs in summoning a demon of insurmountable power - one they call Mergothid. I reckon they will need a vast amount of energy for that to be accomplished...$B$B$N, please hand this report to Operative Gillian. If my understanding of the situation is correct, and I am certain that it is, then we cannot wait much longer.", + ["O"] = "Give Verona Gillian on Balor the report by Noppsy Spickerspan.", + ["T"] = "Harrowing News", + }, + [41700] = { + ["D"] = "Our helmsman Verix steered us over this island, not realizing we\'d be flying directly into a hornet\'s nest of thunderstorms. I would be cursing him to the slums of Undermine, but if there is anyone to blame it would be me for allowing him to sway the course. That\'s exactly why it is my duty to get us all off this wretched island. Without my compass however, we have little chance of escaping this harsh weather and returning to Booty Bay!$B$BThe slimy snake Verix took it with him, practically holding us hostage. It seems he knows this island, as he blabbered about endless treasure sleeping in its ruins. Frankly, if our situation were not so dire, I would accompany him, but the survival of my crew is top priority. His journal says something about a crypt full of gold, go find him and bring me back my compass!", + ["O"] = "Find Helmsman Verix and return Yunie\'s Compass to her on the island north of Balor.", + ["T"] = "The Gold Experience", + }, + [41701] = { + ["D"] = "Let me ask you something: Have you ever seen a lobster twice your size devour a goblin alive? Or seen a land walking fish man gnaw on a poor fellow\'s head? If yes, then you\'ll surely share my seething hatred for these abyssal monsters. Murlocs, Makrura, Naga, you name it; I even lost a good business partner to a clam once in the reefs of Stranglethorn! As if fate is playing dirty tricks on our unfortunate crew, we\'ve been stranded right between some turf war between the gurgling fish heads and their clackering neighbours. I\'d say let them bash their noggins in if they got nothing better to do, but they are beginning to encroach on our camp and we are too tired from fixing the zeppelin to fend them off for much longer.$B$BI see that fire in your eyes, friend. Go out and start cleaning up the place; there should be enough of them out in the ocean southeast of here.", + ["O"] = "Penny Plainsteel on the northern island of Balor wants you to eradicate the local makrura and murlocs.", + ["T"] = "The Goblin Way Of Fishing", + }, + [41702] = { + ["D"] = "While you were busy dealing with this minor inconvenience, Rikki returned from her routine scouting round. She noticed suspicious activities coming from just north of our tiny island. Ripples of water and rising waves, as well as turbulent vortices building themselves upon the ocean\'s surface. My best bet is that it must be a powerful magic-wielding makrura, perhaps even their leader. Coincidentally, something similar could be seen just coming from beyond the island east of here. Call me paranoid, but these are tell-tale signs of the murlocs and makrura playing it big in this turf war.$B$BWhatever it may be, both of them pose a hazard to our escape. $N, without someone stopping them, our chances of ever escaping this island are slim. You already proven yourself capable of dealing with the small fry; do you think you\'re up for more challenging foes?", + ["O"] = "Dispose of the makrura and murloc leaders to pave the way for the Gullwing\'s escape. Return to Penny Plainsteel at the Gullwing Wreckage on Balor afterwards.", + ["T"] = "Tide-ying Up", + }, + [41703] = { + ["D"] = "Repairs for our zeppelin are in full swing, as much as they can be with the makeshift materials we have at hand. I doubt we will come far with what we have right now, however. Call it bad luck or fortune, but there is a pirate ship just east of our small island. What they\'re here for, I don\'t know, but given that they are pirates, I can only assume it to be booty. Let\'s make the best of their presence. A ship like theirs looks chock full of supplies and necessities we could use to make our lives a lot better. While I\'m certain they won\'t part with their belongings willingly, your demeanour is convincing enough for them to change their mind, don\'t you think?$B$B$B$BWhile you\'re out and about, could you stop by Booty Bay and ask our contractor for a spare zeppelin motor? I\'m certain it\'s in his best interest if we make it out of here and deliver his goods. Markel Smythe\'s the name, he should be around the city\'s town hall at the docks.", + ["O"] = "Alleviate the pirates on the northeastern island of Balor of their supplies and bring them to Mechanic Kixqal at the Gullwing Wreckage. Also bring a new Zeppelin Motor from Markel Smythe in Booty Bay.", + ["T"] = "Favor For Spare Parts", + }, + [41704] = { + ["D"] = "Unlike myself, my servants are not aware of their ghastly condition. Even my sister\'s mind is slowly escaping her grasp. The peasants and workers begin to aimlessly wander the island, clinging to whatever they did when still alive. An endless purgatory, incapable of passing on into the afterlife. As their lord, it is my obligation to relinquish them from that limbo, yet I am unable to.$B$BA most humble request, kind traveler: Break their spectral bodies and allow their souls to join the Light. It pains me to see them suffer still.", + ["O"] = "Cleanse Lord Grahan\'s servants and return to him in his estate on western Balor.", + ["T"] = "Put Them To Rest", + }, + [41705] = { + ["D"] = "", + ["O"] = "Search the cave atop the battlefield on Balor and return with a memento to the woman inside the Balor church.", + ["T"] = "Poor Porcelain Doll", + }, + [41706] = { + ["D"] = "Nature be with you, traveler. How peculiar to find another like-minded soul here on this island. I premused only Olmir and I were anchored at these cliffs. Let me introduce myself: My name is Methendra Owltalon, I am a Druid of the Cenarion Circle on a mission for my Shan\'do Staghelm. In his endless wisdom, he sensed a terrible darkness permeating from this isle, one he felt last during the Third War on Kalimdor. In our short time here I noticed suspicious behavior in the local wildlife. Regardless of the harsh living conditions, they portray an unusual amount of aggression and frequent clawing at their environment. Something is plaguing them, and it is up to us to find out why.$B$BPut the aching animals out of their pain and retrieve the essences of their agony. Hopefully they will shine a light on what is happening to them.", + ["O"] = "Collect Foul Essences from Balor\'s wildlife for Methendra Owltalon on the western cliff of the island.", + ["T"] = "Foul Essences", + }, + [41707] = { + ["D"] = "Disease and maladies run rampant on this island. A melting pot of sicknesses, coupled with an unnatural mist of darkness emerging from the sickly ground. Our operatives begin to be affected by an ailment caused by these phenomena. High fever, irritated rashes and excruciating cramps in both organs and muscle alike. In my duty as the expedition\'s medic, I will eradicate their symptoms; and I wish you to assist me.$B$BI have theorized that the progenitor stems from the tiny mushroom spores that permeate the island\'s atmosphere. I assume that over the years, a large cultivation of toxic mushrooms developed underneath the earth that now send their buds out for propagation. Some of them even came to life in the form of horrifying spore beasts, as our scouts report; in an abandoned mine, past the desolate battlefield. To counteract the symptoms, I need the most potent spores, which I believe can be found on them.", + ["O"] = "Kinrial requires potent spores for her serum. She waits in the SI:7 Outpost on Balor.", + ["T"] = "Fungal Fever", + }, + [41708] = { + ["D"] = "I respect Agent Gillian as our leader, just like anyone in this outpost. Her procedures are methodical and strike a fair balance between the security of her task force and the success of the mission. She is not afraid to take actions in her own hands, a fear reminiscent of my people on Kalimdor. She advised us to take advantage of Balor\'s unique environment and circumstances, an order I am more than happy to oblige with. When I scoured the island earlier, I bore witness to a fascinating scene. One of the fiendish orcs sought skirmish with the local arachnid population to the north. She fell victim to a bite, rapidly followed by sudden lethargy until she became easy prey. These spiders must possess a very potent venom with narcotic and paralyzing properties. Should we extract it, it could provide ample uses for our campaign on Balor. Bring me their venom sacs and thin out their numbers while you do so. They may be useful to us, but remain a hazard nonetheless.", + ["O"] = "To bolster their poison supplies, Kinrial in the SI:7 Outpost on Balor needs venom sacs of the Mistbark spiders.", + ["T"] = "Stinging Lullaby", + }, + [41709] = { + ["D"] = "The storms of Balor fascinate me. During my stay in Davenburg I was occasionally able to peer into the distance and see the heavy clouds loom over the island like a coat of misery and gloom. I convened with my fellow hydromancers and conjured a few theories on what the cause of this unnatural phenomenon could be. There never really was a chance for us to explore this island safely before, however with the expedition of the SI:7 venturing here, such an opportunity arose and I naturally volunteered to assist them.$B$BFeeling the tempest up close made me realize that it was assuredly different from the gales we encountered out on the open sea in Kul Tiras. Furthermore I began observing the local murlocs, as they appear to wield some sort of tidal magic not unsimilar to us hydromancers. $N, seek out the murloc tidecaller and see if they possess anything unusual. Our last reports say they congregated in the northwestern islands.", + ["O"] = "Follow the magically inclined murlocs on Balor and search them for anything suspicious. Return to Hydromancer Finnigan on Balor afterwards.", + ["T"] = "Ceaseless Storms", + }, + [41710] = { + ["D"] = "The pearl you found possesses tidal energy, meaning its mere presence controls the flow of the ocean and the temper of the sky. Seeing as it is damaged to a great amount, it would explain how the tempest is so unbound around here. How truly fascinating to see such a relic on this desolate island. Has it always been here? We can worry about this later, however. First and foremost we need to level the rampant energy within the pearl. $B$BI can subside the pearl\'s unbridled power with a spell, but I require a few ingredients for that. A reflecting crystal, facetted and sharp. The Stone Maw basilisks near the northern river in the Stranglethorn Vale create these stones as they age. Bring me the biggest you can find. I also need my old spellbook, which I gifted to my good friend Loremaster Dibbs in Southshore of the Hillsbrad Foothills. Tell him I sent you, and he will gladly return it to me. To complete everything, bring me also three greater astral essences.", + ["O"] = "Return with the needed reagents to Hydromancer Finnigan in the SI:7 Outpost on Balor.", + ["T"] = "Piece Of A Bigger Picture", + }, + [41711] = { + ["D"] = "$B$BIt is done. Quickly, take the crystal and hold it near the shattered pearl, on the northwestern islands. The crystal\'s own harmonious energy should be enough to soothe the pearl\'s raging energy. Beware of what might happen; tidal magic is unpredictable and untamed.", + ["O"] = "Calm the pearl and return to Hydromancer Finnigan in the SI:7 Outpost on Balor afterwards.", + ["T"] = "Calming The Tempest", + }, + [41712] = { + ["D"] = "", + ["O"] = "Find someone who may be familiar with the relic you hold.", + ["T"] = "Damaged Relic Mechanism", + }, + [41733] = { + ["D"] = "This relic that you have brought to me may possibly be related to technology that stems from Uldaman, and those that once built it. The fact that this comes from the Grim Reaches is astounding, and only leaves more questions.$B$BIf we want to rebuild this relic to function, we will require some of the magic that once powered this device. To my knowledge, the only place where such a power exists is in Uldaman itself.$B$BI would suggest gathering a party, and delving deep. Bring me an Ancient Power Module from within Uldaman, and a Gold Power Core from an engineer. Once the items are acquired, I will restore this relic as best I can.", + ["O"] = "Gather a Gold Power Core, and an Ancient Power Module for Tarwegg Dustshoulder in Ironforge.", + ["T"] = "Rebuilding the Relic", + }, + [41734] = { + ["D"] = "", + ["O"] = "Find someone who may be familiar with the relic you hold.", + ["T"] = "Damaged Relic Mechanism", + }, + [41735] = { + ["D"] = "You there, are you looking to head to Shatterblade Post? If so I have a good friend who resides there, and I am certain he could use a favor. Bargolnakk is in charge of the cooking as the outposts butcher, and he is always looking for a fresh supply of meat.$B$BIf you could do me a solid, and bring him eight Stonehide Flanks from the local Stonehide boars, I am sure it would mean a lot.$B$BYou can find Shatterblade Post to the east, gather the flanks, and bring them to Bargolnakk.", + ["O"] = "Gather 8 Stonehide Flanks for Bargolnakk at Shatterblade Post in Grim Reaches.", + ["T"] = "Stonehide Rations", + }, + [41736] = { + ["D"] = "A few months ago I arrived with Mothang to study the elements here in Grim Reaches. As you can see I am now left alone in this task, for Mothang has lost himself in the pursuit of power...$B$B$B$BThe land itself cries for aid. I can sense the anguish of the elements here, and seek to answer them. If you wish to help, I require Reachroot, a local herb that grows across the region, gather eight bushels, and return to me.", + ["O"] = "Gather 8 Reachroot for Yor\'thegg the Wise in Grim Reaches.", + ["T"] = "A Land in Peril", + }, + [41737] = { + ["D"] = "If we are to truly understand the magnitude of corruption within Grim Reaches, we must gather a sample of it. Manifestations of this foul energy has taken root in the shape of ooze\'s that plague the land. I ask of you to bring me six Lingering Corruption from the Repugnant Ooze of Grim Reaches. You can find a concentration of them at Brangar\'s Folly to the northeast of here.", + ["O"] = "Gather 6 Lingering Corruption from Repugnant Ooze nearby for Yor\'thegg the Wise in Grim Reaches.", + ["T"] = "Signs of Corruption", + }, + [41738] = { + ["D"] = "The situation is as I feared, the land is corrupt, and in a state of turmoil. I will need to commune with the elements at haste.$B$BThis ritual will require local, natural materials to conduct. First, I require five Ornate Feathers from the nearby thrashers. Three Binding Flame from the Dragonmaw Flamebinders to the northwest. And finally, I require a single pristine Stonehide Heart from the Elder Stonehide Boars. Gather all of these materials, and return to me.", + ["O"] = "Gather 5 Ornate Feathers, 3 Binding Flame, and a Pristine Stonehide Heart for Yor\'thegg the Wise in Grim Reaches.", + ["T"] = "Yor\'thegg\'s Ritual", + }, + [41739] = { + ["D"] = "The Flame of Dagnoth? The elements have given us a very key piece of information, yet it is something that I do not know. There is only one name that comes to mind that may know about this mysterious fire. Dorthas Read$B$BHe is a human, traveling across Grim Reaches. Last I spoke with him, he seemed to know quite a bit about the region, I would suspect he knows a thing or two about this flame. Find him to the southwest, near the entrance to Grim Reaches, and inquire about the Flame of Dagnoth.", + ["O"] = "Speak with Dorthas Read near the entrance of Grim Reaches, and inquire about the Flame of Dagnoth.", + ["T"] = "The Flame of Dagnoth", + }, + [41740] = { + ["D"] = "If there is one thing I have learned here on Azeroth, it is that everything comes at a cost. If you want information on the Flame of Dagnoth, I require some showing that you are on my side, and not some enemy agent in disguise.$B$BThat seems like a fair compromise, yes?$B$BI require you to head to the Badlands to the southwest, and locate the presence of Black Dragonkin at Lethlor Ravine. I have heard rumors that their scales are enchanted with latent draconic energy. Bring me one such Ensorcelled Whelp Scale from the Scalding Whelps, and you shall have the information you request.", + ["O"] = "Gather a Ensorcelled Whelp Scale from Scalding Whelps in the Badlands for Dorthas Read in Grim Reaches.", + ["T"] = "The Deed for Dorthas", + }, + [41741] = { + ["D"] = "The Flame of Dagnoth is an old, and almost ancient well of dwarven magic. This flame was started long ago, as a tradition to honor the spirits of the dead.$B$BHowever, this once honorable flame has been twisted and corrupted.$B$BThe Flame of Dagnoth still burns today, deep within the heart of Grim Hollow, stirring the ancient spirits to wake once again.$B$BTake this information back to Yor\'thegg, perhaps he can think of a way to cleanse this evil.", + ["O"] = "Take the information gathered to Yor\'thegg the Wise in Grim Reaches.", + ["T"] = "Return to Yor\'thegg", + }, + [41742] = { + ["D"] = "Ready yourself, for the real challenge has come at last. If we are to bring peace to the elements than we must expel the evil bound to the Flame of Dagnoth. Its poison has lingered for far too long, and caused great havoc to all.$B$BFind the Flame of Dagnoth, and throw this magic dust upon the fire. It should manifest the evil energy, allowing it to be destroyed once and for all, do this, for the good of the elements, and for the good of the land itself.", + ["O"] = "Destroy the evil energy lingering in the Flame of Dagnoth for Yor\'thegg the wise in Grim Reaches.", + ["T"] = "Expelling Evil", + }, + [41743] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Gamemaster\'s Boons", + }, + [41744] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Gamemaster\'s Treasures", + }, + [41745] = { + ["D"] = "Listen well, young $c, for the wisdom I impart comes from the heart of the forests and the whispers of the wind. Take heed, for the Scythe of Elune is a potent artifact, its power intertwined with the fate of our world. Hold it with reverence and wield it with wisdom, for its influence transcends the realms of mortals. Guard it against the grasp of those who seek power for selfish ends, for in their hands, it could unleash untold calamity upon our lands.$B$BLet us begin.", + ["O"] = "Witness the cleansing of the Scythe of Elune.", + ["T"] = "The Power of the Goddess", + }, + [41746] = { + ["D"] = "Some weeks ago the Tower of Azora was conducting research into arcane properties on behalf of mages from the Kirin Tor. Sadly, this experiment ended with an overload of arcane energies which have now manifested into the nearby woods.$B$BHave you noticed the wandering elementals that are now populating parts of the forest around this tower? If you can be of assistance, we require them to be destroyed. Bring their residue to us before this situation gets wildly out of control.", + ["O"] = "Gather 8 Lesser Arcane Residue from the nearby arcane elementals for Antonas Riftgaze at the Tower of Azora in Elwynn Forest.", + ["T"] = "Arcane Emanations", + }, + [41747] = { + ["D"] = "I was once a pupil to the mages of the Tower of Azora. It is there I learned much of my skills, and practiced my expertise in the arcane. I have maintained my relation with them over the years, and have often ran shipments of parchment to the tower. They seem to go through quite a lot of it with all of the spells, and incantations that they practice!$B$B$B$BI need someone to run the delivery of scrolls on my behalf, as my studies currently have me bound here in Goldshire. You can find the Tower of Azora to the east, just past Crystal Lake. The large tower should not be hard to miss.", + ["O"] = "Deliver the Shipment of Scrolls to Antonas Riftgaze at the Tower of Azora in Elwynn Forest.", + ["T"] = "The Tower of Azora", + }, + [41748] = { + ["D"] = "Many years ago I took a student beneath my wing. To teach them the secrets of the arcane, and to harness their mind for greater things. Ralthas was a brilliant student, destined for a bright future. He could have mastered the arcane-arts, and potentially, one day ran the Tower of Azora.$B$BIt pains me to think that their mind has been poisoned by the useless folly of politics and rage. Now they run amok, teaching any thug and trickster our secrets to prey upon the weak and disturb the peace of Elwynn.$B$BRalthas must be stopped, and it would break my heart if I had to face him myself. I ask of you to defeat him. I have heard that he often lurks around the Stone Cairn Lake to the northeast of here. Bring me the necklace he wears so that I know his terror on Elwynn Forest has been put to rest, once and for all.", + ["O"] = "Find the rogue mage Ralthas and put an end to his terror. Bring the Necklace of Azora to Theocritus at the Tower of Azora in Elwynn Forest.", + ["T"] = "The Master and the Student", + }, + [41749] = { + ["D"] = "Could I spare a moment with you? You look like the tough type ready to burst into action, seeking the thrill of adventure and the smell of gold and riches. As it stands, you are exactly the type of person I\'m looking for. You see, any self-respecting goblin has many contacts when it comes to possible revenue; some more legal than others. Many of my contractors are of the latter and one particular group is interested in something you don\'t get your hands on everyday.$B$BTo the souththeast, just shy of the great falls coming from Loch Modan is an old mining facility, they call it the Dragonmaw Retreat nowadays. Inside, are equally ancient golems said to roam the unstable halls, still stuck in old protocols. If you\'re able to bring me a runestone they are powered by, I\'ll fetch you a fair price for it!", + ["O"] = "Acquire the runestone of a Crumbling Stone Golem inside Dragomaw Retreat and bring it to Kixxle on the mainroad in the Wetlands.", + ["T"] = "Stone Golem Salvage", + }, + [41750] = { + ["D"] = "$B$BBetrayer! Gowlfang big betrayer! Left with shaman Bogpaw. Is now leading the Mosshides, without us! Helped Gowlfang, were loyal. Now we here to die, all alone! Betrayer went with powerful green-skinned warriors. To the southeast, entered the mountains into a cave, a big cave! Grimbite wants the head of Betrayer! Follow them, into the home of green warriors who command fire-breathing lizards!", + ["O"] = "Avenge the Mosshide gnolls by slaying their former leader Gowlfang in Dragonmaw Retreat. Return to Grimbite at their camp in The Green Belt in the Wetlands afterwards.", + ["T"] = "Gowlfang\'s Defeat", + }, + [41751] = { + ["D"] = "Mortal, the plight of submission is once more cast upon my flight. Once again, the horrors of the past shroud the Dragon Queen\'s noble flight. The orcish Dragonmaw Clan continues to exert their heinous acts of subjugation upon my kind, forcing them to follow their bidding. While the Red Dragonflight is occupied with the everlasting vigil of safekeeping Grim Batol, it falls upon me to release my fallen brother Searistrasz and his brood.$B$BI can hear his painful cries echoeing from within the ancient dwarven mines to the south, those which the Dragonmaw now have laid claim upon. Mortal, venture into the Dragonmaw Retreat and absolve my brother and his children from this sin which was cast upon them.", + ["O"] = "Nydiszanz at the Dragonmaw Gates in the Wetlands wishes to release his brother Searistrasz from his capture by the Dragonmaw orcs in the Dragonmaw Retreat.", + ["T"] = "The Dragonmaw Brood", + }, + [41752] = { + ["D"] = "I\'ve been a weakling all my life, not born the warrior my mother had wished me to be. The great defenders of Hammerfall stand tall and unrelenting against our enemies, yet I chose a different path to tread. Hacking and slashing at your enemy may be glorious and fulfilling, but to see your enemy writhe in agonizing pain over just a small drop of poison is even more enthralling. Not many of my kind share the sentiment, and I cannot blame them, but I am not here to be useless. If I can be of use to the Horde in any way, no one will be able to dissuade me from serving my warchief.$B$BIn my pursuit of new and rich venoms, I\'ve come across a piece of information most intriguing. The vile orcs of old, the Dragonmaw, have enslaved a brood of spiders in the mining shafts beneath Grim Batol. Using their dark arts, they\'ve enhanced the spiders to unfathomable levels of power. These arachnids must possess an unparalleled poison within them, so bring me their broodmother\'s venom sac.", + ["O"] = "Slay the Cavernweb Broodmother in the Dragonmaw Retreat and deliver her venom sac to Okal in Hammerfall.", + ["T"] = "Cavernweb Extract", + }, + [41753] = { + ["D"] = "The Dark Lady\'s ambitions are numerous and intricate. On her path to revenge, she will use any tool available at her disposal, no matter the cost. As such, a number of powerful relics have drawn her attention; relics that will be instrumental for her machinations.$B$BThe orcs hold the secrets of their ancient magics well hidden, sheltering them from the eyes of those who can find better use in their primitive sorcery. One of them is the Eternal Flame, a source of potent energy, protected and nurtured by their pyremasters. The Dark Lady desires this artifact, and it will be you who will fulfill her request.$B$BFar to the south, in the dwarven Wetlands of Khaz Modan, you will find the rat\'s nest called Dragonmaw Retreat. An abandoned mining facility of the cursed mountain of Grim Batol, it houses the maniacal remnants of the Dragonmaw Clan of old. Infiltrate their pitiful hiding place and deliver me the Eternal Flame, protected by their flamekeeper.", + ["O"] = "Retrieve the Eternal Flame from within the Dragonmaw Retreat and bring it to Shara Blazen in Tarren Mill.", + ["T"] = "A Blaze Unending", + }, + [41754] = { + ["D"] = "", + ["O"] = "Bring the Redbrand Tablet to one of the historians at The Library in Ironforge.", + ["T"] = "The Redbrand Lie", + }, + [41755] = { + ["D"] = "$N, it is only just for the Redbrands to handle this matter internally, as much as my curiosity drives me to share it with my colleagues. Here, take the tablet back into your possession and deliver it to the Redbrand Estate in the Mystic Ward just yonder. He made it his life\'s goal to complete his family\'s lineage, it is in his best interest to know about this part of dwarven history.", + ["O"] = "Bring the Redbrand Tablet to Torwyn Redbrand in the Mystic Ward of Ironforge.", + ["T"] = "The Redbrand Lie", + }, + [41756] = { + ["D"] = "The scattered Dragonmaw Clan proves to be a menace to our lands even years after their humiliating defeat at Grim Batol. While one group of their despicable warriors terrorizes the southern mountains, their main force is hiding in an old mining facility in the far east. Our reports tell of vicious orcs gathering in the decrepit halls, gaining in strength with each passing day. Most notably are their veterans, seasoned survivors of the Second War who stop at nothing to fulfill their maddened masters demands. They are the backbone of their army and must be eradicated if we want to have even a sliver of a chance against them.$B$BVenture into the mining facility that we now call Dragonmaw Retreat and thin out their ranks. The sooner, the better.", + ["O"] = "Slay Dragonmaw Veterans in Dragonmaw Retreat and return to Captain Stoutfist in Menethil Harbor.", + ["T"] = "To Crush The Dragonmaw", + }, + [41757] = { + ["D"] = "$N, now that we\'ve dealt with Nek\'rosh and his division, we can focus our attention on the bigger threat. Nek\'rosh was merely a chess piece in this game; a powerful piece, but a chess piece nonetheless. Our good men and women of the militia out there have been talking about a terrifying Dragonmaw orc, the leader of the vicious raiding parties that increased more and more in frequency in the last weeks. A true monster through and through, responsible for abducting and killing the poor citizens of Menethil Harbor. I want him dead, as quickly as possible. With the small time we\'ve gained by removing Nek\'rosh we can prepare a counter strike against their base of operation.$B$BInfiltrate the Dragonmaw Retreat far off to the east, beneath the mountain of Grim Batol, and lop off the head of that despicable creature.", + ["O"] = "Bring Captain Stoutfist in Menethil Harbor the head of Overlord Blackheart.", + ["T"] = "Blackheart\'s Demise", + }, + [41758] = { + ["D"] = "The quilboar are a primitive and hostile race, their kind has been at odds with us for longer than I can remember. Wherever the quilboar go they are often weaving large and heavy brushes of thorn. It is this very magic itself that is twisting the natural order, and in turn bringing it closer to corruption. For some months I have been able to sense something strange, and foreign.$B$BI seek proof of this natural corruption, and I am certain it lays within the heart of Razorfen Kraul. Find the living embodiment of this gnarled natural magic, and destroy it. When this task is complete, return to me.", + ["O"] = "Destroy the living embodiment of natural corruption within the depths of Razorfen Kraul, and bring the Tainted Brambleheart to Kym Wildmane in Thunderbluff.", + ["T"] = "Tainted Brambleheart", + }, + [41759] = { + ["D"] = "Greetings traveler, I am Calaran Windseeker, a druid from Darnassus. I have been studying the recent unrest deep within the home of the quilboar. I have heard stories of gnarled abominations of twisted thorns and natural energy. I am certain these creatures have manifested in anger to their quilboar masters and I seek to restore order to the natural world. These beings of nature must be put to rest, and I wish to gather their roots for study.$B$BVenture deep within the Razorfen Kraul, find these monsters, and destroy them. You can find this accursed lair above the great lift to the east, once you ascend to the top, head west, and look for the quilboar. Gather me three of the twisted roots, and I shall reward you well.", + ["O"] = "Gather 3 Gnarled Brambleroots from the Bramblehide elementals within Razorfen Kraul for Calaran Windseeker at Thalanaar in Feralas.", + ["T"] = "The Gnarled Bramblehide", + }, + [41760] = { + ["D"] = "The Balor family held sovereignty over this island for many years. Even after becoming a vessel state, Stormwind\'s king allowed the first Duke to govern the state he built under many hardships and tribulations. His scions continued his legacy, each one of them reigning over the merchant paradise with a watchful eye and merciful soul. Us Grahans acted as their advisors and protectors, and we held that position with pride. As such, the immense shame that still fills my very being for failing my lord all those years ago is all the more unbearable. I may not be able to rewrite the past, but I can yet honor the Balor family\'s legacy.$B$BMy ghost is tethered to this estate, so I implore you to accomplish this feat in my stead. Enter Stormwrought Castle and seek the remnants of my old friend. His bones may long have turned to ash within the cursed halls of his home, but his sigil ring may yet remain. Seek it, return the band to me, so that you may be within my ever-lasting debt.", + ["O"] = "Enter Stormwrought Castle and retrieve the Balor Sigil Ring for Lord Olivert Grahan in his estate on western Balor.", + ["T"] = "Skull And Bones", + }, + [41761] = { + ["D"] = "From what I gathered from Spickerspan\'s findings, I don\'t believe we are simply dealing with the Stormreaver orcs and their demon friends alone at this point. An operation of this magnitude is too grand for a scattered clan from the Second War. There has to be more at play here. Who else has their grimy little fingers involved in this is our next step. Ascend the island, enter the yard of Stormwrought Castle and thin out their numbers. Search the area for crucial intel we might be missing. Dispatch any high ranking officer you come across, we must be swift and deadly. I myself will send notice to Master Shaw to rally as many agents as we can. Personally I do not expect the King to aid us in this tragedy. $B$BStay sharp, $C, I expect sufficient results.", + ["O"] = "Infiltrate Stormwrought Castle on Balor and find out who is conspiring with the Stormreaver orcs. Report to Verona Gillian in the SI:7 Outpost on Balor when done.", + ["T"] = "Into The Hornet\'s Nest", + }, + [41762] = { + ["D"] = "Hey, psst, pal. Running dry on gold? Of course you are, I know that look. I got a job for you that\'ll be easier than changing the diaper on an ogre! Listen, really, no need to ask questions, I promise it\'ll be to your benefit. Down in the southwestern mountains, the Durotar Labor Union is operating large-scale oil pumping schemes. Kind of risky if you ask me; anyway, my clients are not entirely happy about them doing what they\'re doing, and you\'ll be the one to stop them. Here, take these overchargers and plant them on their pump stations. Watch out for their workers, they will surely be trying to stop you. Once you are done, return to me for your hard-earned reward!", + ["O"] = "Sabotage the pump stations of the Slickwick Oil Rig and return to the Shady Individual in Gadgetzan.", + ["T"] = "A Deal Worth Taking", + }, + [41763] = { + ["D"] = "These Venture Co. rats are everywhere! Wherever they go, their filthy hands grab anything they can get. Be it in the Stonetalon Mountains, the Stranglethorn Vale or here, no one is safe from their thievery. Honest and morally grey exploitery work is just not possible with them having so much widespread influence. If you ask me, it\'s time they start getting the memo who\'s the new and upcoming star in the world of goblin economics. $B$BBut let\'s talk about the real tragedy; when I was working on the oil rig down at the beach, I had my cozy little... uhm, collection of invaluable paintings stashed in the warehouse nearby, it was very dear to my heart! It is a one of a kind series and cannot make it all the way to Undermine and be sold on a miserable black market auction. Get it back for me, I am certain one of those thugs picked up the key to my chest when I was running for my life!", + ["O"] = "Recover Kwabit\'s Salacious Pictorial from the warehouse near the Slickwick Oil Rig in Tanaris.", + ["T"] = "Intricate Artwork", + }, + [41764] = { + ["D"] = "Problem upon problem upon problem! I can\'t believe I was so naive to believe nothing bad would happen to the Labor Union for once, but you know how it goes: you jinx it into existence the moment the words leave your mouth. Now I\'m up to my chin in unresolved work; work that I have to fix on my own! The boss is a one of a kind genius, we owe her our exceptional quota big time, so it really irks me to be in such a pickle! We\'ve lost control over our pump stations; whatever these Venture Co. devils did, the pumps went completely haywire and we had little chance to deactivate them to properly fix them with all the oil blobs ruining our day. But now that you\'re here, luck\'s back in our favor!$B$BDown by the beach is our big oil rig, in the control room up top you will find my energy regulator. I had to leave it behind during their raid. With it, you will be able to shut off the four pump stations just outside of town! Once you are done, return to me.", + ["O"] = "Deactivate the Slickwick pump stations using the Energy Regulator and return to Chief Engineer Kalke at the Slickwick Oil Rig afterwards.", + ["T"] = "Oil-Based Grievances", + }, + [41765] = { + ["D"] = "Things are heating up in Undermine, kiddo. Not that it had ever been quiet there, but the Venture Co. has started to gain noticeable traction in all sorts of trades all around Azeroth. They\'ve always been more... let\'s say, ‘unorthodox\', in their business practices, but whatever they\'re planning doesn\'t look too rosey. All ya gotta do is go down the beach and see for yourself.$B$BYa see, I joined the Durotar Labor Union not long ago; Nert was quick to assign me a project on my own, considering what happened on Blackstone Island and my flawless track record regarding profit optimization back on Kezan. Once we got the ball rolling, it did not take long for the Venture Co. to creep up and do their thing. If ya ask me, it\'s time for some well-earned payback. Let us give them a taste of their own medicine, whaddya think?", + ["O"] = "Clean up the Venture Co. intruders at the Slickwick Oil Rig and return to Boss Slickwick afterwards.", + ["T"] = "Venture Co. Hatred", + }, + [41766] = { + ["D"] = "Goblins don\'t really work that well without someone calling the shots, it\'s been tried time and time again. Without someone to put the blame on, all they do is tear eachother apart. So naturally, all these goons must have someone to commandeer them around. Must\'ve been a hot shot from higher up in the Venture Co., considering the size of this sabotage. Not dissimilar to what happened on Blackstone Island, just much less subtle. $B$BReturn to the beach, find that weasel and bring them to justice. Nobody interferes with my business and gets away with it.", + ["O"] = "Find the leader of the Venture Co. intrusion and dispose of them. Bring Boss Slickwick at the Slickwick Oil Rig anything useful you find on them.", + ["T"] = "Shrillfluke\'s Early Retirement", + }, + [41767] = { + ["D"] = "Since ya helped us out big time, I guess I can share a little secret with ya. Many goblins have joined the Durotar Labor Union in the past, and many still do. Created a big stir in Undermine. A young and upcoming worker\'s union holding their own against the authoritarian Venture Co.? It was all over the newspapers! Rumours started spreading, one crazier than the next, so eventually my boss gave me a new job: join the Durotar Labor Union and see what\'s really happening. Didn\'t anticipate getting thrown into action THAT quickly.$B$BAnd now we\'re here. I gotta say, both the Labor Union and the Horde exceeded my expectations. You\'re a strange bunch, but a strong bunch. Your handling of funds and general economics is disastrous, but you\'ll get there - eventually. Nert is a great asset, trust me. Speaking of, could you pass him this report? Poor guy must be pretty anxious waiting for it back in Sparkwater Port. Give him a good nudge from me when ya see him, gotcha?", + ["O"] = "Deliver Boss Slickwick\'s Report to Nert Blastentom in Sparkwater Port in Durotar.", + ["T"] = "Rise of the Venture Co.", + }, + [41768] = { + ["D"] = "I have to admit, $C, Northwind is in a miserable state. Birkhaven has been raided, we\'ve lost control over Sherwood Quarry and I do not have enough men to protect my citizens. As much as it pains my pride as a noble and leader, I have my hands tied. Judging from your looks, I reckon you are of the traveling type? If so, perhaps you\'d be interested in some important errand work for me? I cannot spare any more of my subjects, their numbers are cut slim.$B$BLady Katrana Prestor, advisor to his Highness, has ordered most of my men to Stormwind\'s protection months ago. I am desperate myself, however, and will request some of them to return home, to protect Northwind. The mission I entrust you with is imperative to me and my people. Here, bring this scroll to Lady Prestor in Stormwind Keep. On your way, pick up the reports of Sir Amberwood, my brother and Bailiff Lancaster. You will find them overseeing the jousting tournament and in Ambershire\'s town hall.", + ["O"] = "Deliver the reports of Northwind to Lady Katrana Prestor in Stormwind Keep.", + ["T"] = "The Messenger Of Northwind", + }, + [41769] = { + ["D"] = "To tame and ride the Ravasaur unprepared is a fool\'s errand. Their hide oozes venomous liquid, coating their skin with a lethal coat; just a mere touch could very well be your death sentence. It is however not impossible to bend the mighty Ravasaur to your will, if you wish to tread the arduous path of such a commitment. I can show you my people\'s ancient ways of subduing these poison-filled beasts.$B$BGo out into the jungle and seek their nesting grounds. Search for an egg that is just about to hatch, any other will not be sufficient enough for our task. Return to me once you\'ve been successful.", + ["O"] = "Bring an almost ready to hatch Ravasaur Egg to Jama\'nali at the eastern entrance of the Un\'goro Crater.", + ["T"] = "The Venomous Hatchling", + }, + [41770] = { + ["D"] = "As frail as it is now, the young one is harmless. Neither his bite nor his hide can harm you, since his venomhide has not developed yet. By spending time and raising the hatchling, your body will naturally attune itself to the growing venom inside it. Once it reaches adulthood, you will be resilient enough to ride it without consequences.$B$BScour the jungle for food, and feed the beastly meat to it. With each meal, his jaw, body and mind will grow and change. Show me your commitment to your fosterling by presenting me with its teeth, the teeth it will lose while maturing. Only then will I teach you the rites of Ravasaur riding.", + ["O"] = "Collect enough Ravasaur Teeth for Jama\'nali at the southeastern entrance of the Un\'goro crater.", + ["T"] = "Ride of the Ravasaur", + }, + [41771] = { + ["D"] = "The ancient beasts of Un\'goro possess flesh of peculiar taste. The smell alone is enough for some to succumb to uncomfortable convulsions. Your hatchling, however, can\'t get enough of it. Ravasaur offspring develop quickly and as such require immense amounts of nourishment. Normally they\'d follow their mother on the hunt, but this task now falls upon you.$B$BHunt the creatures of the crater and allow your fosterling to prosper.", + ["O"] = "Collect meat from the lesser beasts of Un\'goro and bring it to Jama\'nali at the southeastern entrance of the crater.", + ["T"] = "Primordial Meat", + }, + [41772] = { + ["D"] = "Far to the west is a vale of stone pillars called Terror Run. Among these pillars, the powerful stegodon reside, demolishing anything in their vicinity. Towering over most of the crater\'s inhabitants, their massive size is thanks to the thick glands, increasing their muscle growth and strengths. To ensure the young Ravasaur is properly raised, we need these glands.$B$BTravel to Terror Run and slay the stegodons. Beware, they are stronger than your average beast.", + ["O"] = "Collect Stegodon Glands and bring them to Jama\'nali at the southeastern entrance of the Un\'goro crater.", + ["T"] = "Stegodon Glands", + }, + [41773] = { + ["D"] = "Wandering the jungle of Un\'goro, you\'ve surely felt the earth rumble from time to time. Distant roars of terror and the breaking of trees and branches. The mighty devilsaur are the apex predators of Un\'goro, no other beast can rival their unparalleled strength. Hunting one of them is a great feat in itself, but felling one shows exceptional capabilities. The powerful muscle that is their heart will be a fantastic source of nutrition for the hatchling.", + ["O"] = "Deliver Devilsaur Hearts to Jama\'nali at the southeastern entrance of the Un\'goro crater.", + ["T"] = "The Might of the Devilsaur", + }, + [41774] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Pedestal of Unity", + }, + [41775] = { + ["D"] = "$C, come closer. Your contributions to the Athenaeum have been plentiful and many forlorn tomes have found their way back into our fold. The Shen\'dralar are grateful for your actions so far, which is why I am beholden to ask a reliable $R such as yourself for yet another favor.$B$BWhile our treasury of knowledge grows evermore, we are still lacking one ancient and crucial grimoire that is infamous among our scholars. Written by the disgraced sorcerer princess Aszune, the book details the meticulous process of shattering and converging magical shards and crystals. It is paramount that it returns to the Athenaeum!$B$BThe magical energies radiating from the book are one of a kind, and I remember them well. Fortunately for us, they have not left Eldre\'thalas. I detect its presence high above us, near the seat of the despicable ogre king. Certainly, his corpulent advisor is defiling it with his filthy hands. Retrieve it from him, but be careful! The book is ancient and gets damaged easily!", + ["O"] = "Recover ‘Studies on Cosmic Materialization\' from Cho\'rush the Observer in Dire Maul and return to Lorekeeper Javon in the Athenaeum.", + ["T"] = "The Forgotten Practices", + }, + [41776] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Nexus Shattering", + }, + [41777] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Nexus Convergence", + }, + [41778] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Libram of Voracity", + }, + [41779] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Libram of Constitution", + }, + [41780] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Libram of Resilience", + }, + [41781] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Libram of Rumination", + }, + [41782] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Libram of Tenacity", + }, + [41783] = { + ["D"] = "You may think an archivist doesn\'t have much to do on an expedition like this, but you couldn\'t be further from the truth with that assumption! Not accounting for many of my other talents like translation or my analytical prowess, many of the places the SI:7 gets stationed are filled to the brim with enriching history. This is especially true for a place as steeped in history as Balor. Infamous among the citizens of the kingdom, many stories and rumours around the long buried vessel state are told among the generations. While I have to perform my tasks here in an objective manner, there are still particular documents I wish to chronicle out of personal interest.$B$BThe logbook of the lighthouse keeper. The lighthouse can be seen north of here, just beyond the bay of Breezehaven.$B$BThe records of the Grahan family, the ruins of their estate are nestled in the western mountains.$B$BThe sermons of the church past the broken city gates.$B$BLook for them on your ventures to the island.", + ["O"] = "Acquire the documents for Noppsy Spickerspan in the SI:7 Outpost on Balor.", + ["T"] = "Forgotten Stories", + }, + [41784] = { + ["D"] = "Hey, you there! You look like the brave adventurin\' type! I bet you could use a treat that\'ll restore your appetite in record timing... Yeah yeah, I can see it on your face, you want it right now! Well, sorry bub, my Kezan Fruitcakes are a rarity, and one that needs a buy in. If you want to have the opportunity to buy my goods, you\'ll have to pay me for the luxury first.$B$BHow about, one hundred gold coins. My fruitcakes are only for well off clients after all, I\'m not willing to give such a rare import to some lowly begger. You get the coins, and you come back to me, sound good kid?", + ["O"] = "Pay Nizzle 100 Gold for the luxury to buy his fruitcakes.", + ["T"] = "Kezan Fruitcake Imports", + }, + [41785] = { + ["D"] = "", + ["O"] = "Search the Wetlands for a red dragon willing to hear you out.", + ["T"] = "Yoke of the Dragon Queen", + }, + [41786] = { + ["D"] = "This island is playing tricks on me. Shrouded in thick fog all day long and if it isn\'t that for a few minutes, I\'m seeing smoke clouds coming from out in the ocean. Yes, from the ocean! No land in sight, but smoke is rising up into the sky like it\'s the most logical thing. You\'re helping us in our operation, right? If you have the time, could you check the open sea northwest from here and give me the peace of mind I desperately need?", + ["O"] = "Look into the suspicious smoke coming from the open sea near Balor.", + ["T"] = "Suspicions From Sea", + }, + [41787] = { + ["D"] = "The Shadow Council. It seems Doomhammer\'s lap dogs were sloppy. If you are unfamiliar with them, the Shadow Council are - or rather were - Gul\'dan\'s fanatical followers. A cabal of heretics and sinners, devoting their very being to their demon overlords. They were said to have been eradicated following their master\'s death during the Second War, yet their depravity still prevails. If this missive can be trusted, then the Stormreaver are led by a high ranking and powerful warlock of the Shadow Council, operating from within Stormwrought Castle.$B$B$N, there is little time for respite. Gather an elite force and storm the fallen castle. We need to put a stop to their leader from summoning that demon from beyond the Nether and rescue the remaining citizens still in their clutches. Do not take this lightly, prepare for any eventuality!", + ["O"] = "Stop the Shadow Council in the Stormwrought Ruins.", + ["T"] = "Heart of Darkness", + }, + [41788] = { + ["D"] = "The Gnarlpine are not the only furbolg tribe dwelling upon Teldrassil’s boughs.$B$BFar to the southwest, nestled among the mist-veiled heights, lies an elusive tribe — the Ursan. They have long shunned the paths of others, hiding from both our eyes and our voices.$B$BYet... I sense the same darkness stirring among them — the fel moss spreads, corrupting all it touches. We dispatched a druid, Drethanis, to seek the truth within their domain. But... the winds have carried no word of him since.$B$BI fear for his fate.$B$BWill you aid me? Seek him amidst the shadows of Ursan Heights — the path lies west of the Pools of Arlithrien.$B$BShould he yet draw breath, it is there you shall find him.", + ["O"] = "Find Drethanis in the Ursan Heights west of Pools of Arlithrien.", + ["T"] = "Ursan Heights", + }, + [41789] = { + ["D"] = "Look around you. The Ursan tribe — once noble, for a lesser race — now raves with fel-induced madness. Their hearts are shattered, their minds lost.$B$BThey have defiled one of our sacred moonwells... and slain its guardian. Such transgression cannot go unanswered.$B$BWere the times less dire, I would seek to mend their spirits. But you’ve seen it — what the fel moss does to these woods. Once it takes root, there is no redemption for their kind.$B$BCull them. As many as you can. Bring me their charms — pitiful relics, once crafted by their shamans to ward off evil spirits. A quaint belief.$B$B$B$BClearly... they failed.", + ["O"] = "Bring 20 Ursan Charms for Drethanis in the Ursan Heights.", + ["T"] = "Ursan Tribe", + }, + [41790] = { + ["D"] = "The tribe is broken, their strength scattered to the winds. Now is the time to reclaim what is ours—the moonwell must not remain steeped in their stench.$B$BTheir so-called leader, Arkod the White, likely struts around the sacred waters even now, desecrating what remains of its guardians. Once, he was a devout servant of Ursol... one of the bear god’s most revered clerics.$B$BCurious, isn’t it? To fall so far. One must wonder what blasphemy earned him Ursol’s silence.$B$BEnd him. Sever the head of their corruption and bring it to me. Without him, the tribe will crumble—and I will cleanse the moonwell of their filth once and for all.", + ["O"] = "Bring the head of Arkod the White to Drethanis.", + ["T"] = "Reclaiming the Moonwell", + }, + [41791] = { + ["D"] = "Our expansion into the Eastern Kingdoms is everso successful. The founding of Kargath was a vital moment in cementing our presence on the outskirts of Khaz Modan. But that was merely one step in the Warchief\'s plan for the lands beyond the Great Sea.$B$BTo the northeast of the great pond of Loch Modan, a passageway leads into the Grim Reaches, unbound lands of the hill dwarves, riddled with the vile Dragonmaw orcs. Commander Aggnash established the Shatterblade Outpost on the northeastern outskirts, a stronghold built to neutralize the Dragonmaw aggression within these parts of the Eastern Kingdom. Venture there and aid him in fulfilling the Warchief\'s cause.", + ["O"] = "Belgrom Rockmaul wants you to speak to Commander Aggnash in the Shatterblade Post in the Grim Reaches.", + ["T"] = "The Shatterblade Outpost", + }, + [41792] = { + ["D"] = "My brother Morkan is stationed at Shatterblade Post in the Grim Reaches. A rugged land, east of Loch Modan and the Wetlands. The dwarves and Dragonmaw orcs have been fighting over control for a long time there, and our Warchief Thrall wishes to assess the situation for himself. The wild is treacherous and unrelenting, and my brother, while ambitious and disciplined, is still young and inexperienced. To bolster his spirit, I want him to have this cooked hog I prepared, it is his favourite. If you could bring this to him, I\'d be very much in your debt, $c.", + ["O"] = "Bring the Steamed Hog to Grunt Morkan in Shatterblade Post in the Grim Reaches. You can reach it by heading east from the wetlands, or by passing through a tunnel in the southeast of Loch Modan.", + ["T"] = "Hog For Morkan", + }, + [41793] = { + ["D"] = "The Horde\'s past is riddled with guilt and mistakes. Our bygone alliances with various orc clans of old put a stain on our honor, a stain we need to scrape off if we wish to step into a new future. The Dragonmaw Clan, fanatical veterans responsible for the enslavement of the Red Dragonflight, rallied itself in the Grim Reaches, a cragged place to the east of Loch Modan. Their delusions make them cling like madmen to their olden ways, unable to see the foolishness of it all.$B$BWe dispatched a unit to the Grim Reaches on Warchief Thrall\'s behest through Loch Modan, past the tunnel at Farstrider Lodge southeast of the lake. I want you to follow and join them at Shatterblade Post. Make sure to aid them wherever you can. Bring honor to the horde, whelp!", + ["O"] = "Travel to Shatterblade Post in the Grim Reaches and speak to their commander.", + ["T"] = "Scars of the Past", + }, + [41794] = { + ["D"] = "Mok\'rah, young one. Yonder the Great Sea\'s bays to the north lies the forlorn island of Balor. Unnatural storms ravage its shores, and the sinister magic of Gul\'dan\'s taint still lingers in its earth even decades after his destruction. My clan, the Bleeding Hollow, is stationed on one of eastern islands surrounding Balor, on behalf of our Warchief Thrall. Chieftain Kilrogg himself volunteered in leading this offensive against the resurfaced Stormreaver clan of old.$B$BCould I ask you a favor? My clan mate Far Seer Sarno requires this potion for his divinations. If you could bring it to him, you\'d do a great service to the Horde. Speak with Thysta the Wind Rider Master just over there and she will bring you to Balor posthaste.", + ["O"] = "Deliver Mok\'thardin\'s Potion to Far Seer Sarno at Stormbreaker Point.", + ["T"] = "The Storms of Balor", + }, + [41795] = { + ["D"] = "A terrible darkness emerged from our past, young one. A darkness threatening not only the Horde, but all life on Azeroth. Not long ago, we received a mysterious letter from an unknown sender, written in pitch black ink. It warned us of a relic from the Second War, reborn to spread its seed of chaos throughout the world. The Stormreaver Clan, Gul\'dan\'s puppet clan, returned and joined forces with its old allies, the Shadow Council. Their warlocks have committed innumerable atrocities in the past, and if we do not stop them, I fear we may be facing a new age of terror. I ordered one of my advisors and chieftain of the Bleeding Hollow Clan, Kilrogg Deadeye, to quell their uprising. He departed to the island of Balor, their former base of operation countless years ago.$B$B$N, I want you to follow suit and assist the Bleeding Hollow Clan. Take the zeppelin to Grom\'gol Base Camp and speak to the local Wind Rider Master. She can bring you to the island west of Stormwind.", + ["O"] = "Speak with Kilrogg Deadeye on Balor.", + ["T"] = "A Unknown Letter", + }, + [41796] = { + ["D"] = "Greetings, good $c. Have you heard about the grand tournament in Northwind? The local nobles are holding a jousting tournament and invited various human nations to participate, Theramore included! Lady Proudmoore chose a handful of our guards as contestants, and my beautiful children were among them! I had barely time to say goodbye to them, they had to depart so quickly. Say, are you by chance traveling to Northwind? Would you be so kind and hand my boy Boris these scarves? See it as my way as their father to support them even here in Theramore.$B$BI heard you can reach Northwind by traversing Stormwind Harbor. Good luck!", + ["O"] = "Deliver the Farwind Scarves to Boris Farwind at the Jousting Grounds in Northwind.", + ["T"] = "Far From Home", + }, + [41797] = { + ["D"] = "Duskwood grows more dangerous with each passing day. Either its the rabid worgen, wandering dead or thieving cutthroats - there is always something out for your life out here. In the end, one may wonder why we\'re all still here. The answer is simple: these woods are our home, and we\'re not letting these monstrosities take them from us.$B$BStill, me being here weighs heavy on the hearts of my friends, on Barbara\'s more than others\'. She is the fletcher of Lord Amberwood, the ruling noble of Northwind north of Stormwind. I haven\'t seen her in a long time, let alone written to her about my well-being. She must be worried sick about me, and it shames me deeply. If you have a moment to spare, could you deliver this letter to her? In it are things written I should\'ve said to her a long time ago, so I\'m entrusting you with a very important task. If you could do that for me, I\'d be eternally grateful to you.$B$BThe quickest way to Northwind is by passing through the Stormwind Harbor.", + ["O"] = "Bring Avette Fellwood\'s Letter to Barbara Lee at Amberwood Keep in Northwind.", + ["T"] = "A Good Friend", + }, + [41798] = { + ["D"] = "Good day to you, $c. You look like the adventurous type to me. Have you braved many of the dangers that are omnipresent nowadays? No matter where you go, it seems crises are not far off. Certainly not a world we wish our children to grow up in. My wife does her best to make Azeroth a better place, but even in the organization she is in, it is a nigh impossible task for her to accomplish. Say, would you be interested in assisting her, as a mercenary? The operation she is assigned to this time is... particularly delicate, or so she told me. To be frank with you, I am worried about her well-being, this might be just too much even for her. I\'d be forever in your debt if you could aid her.$B$BIf yes, then head to the harbor, just west of here. On one of the southern docks, you should find a colleague of hers - Simmons is his name, I think. Tell him Operative Gillian requested more external assistance, and he should bring you to her, to the island of Balor.", + ["O"] = "Ronald Gillian asked you to join his wife on Balor to assist in her work.", + ["T"] = "My Darling Wife", + }, + [41799] = { + ["D"] = "That good-for-nothing Finnigan! I swear, someday one of his escapades will be the end of him. You see, not long ago a group of SI:7 agents gathered at the docks. Apparently, from what we could overhear, they were on their way to complete a dangerous mission on the island just off the coast of Westfall. Balor is its name. That island has been drenched in a never-ending thunderstorm even well before we settled here in Davenburg. Kul Tiras has been in contact with Balor and its people in the past, so the place is not unknown to us.$B$BBe that as it may, Finnigan, our local hydromancer, actually volunteered in helping the SI:7 with their assignment on Balor and is now with them in their outpost. We need him back here in Davenburg as soon as possible, so as to not jeopardize our diplomatic mission. $C, would you be willing to helpp him finish whatever he started, so that he can return to us? One of the agents stayed back at the southern docks, I am sure he can take you to the island.", + ["O"] = "Speak with Hydromancer Finnigan in the SI:7 Outpost on Balor.", + ["T"] = "A Hydromancer\'s Curiosity", + }, + [41800] = { + ["D"] = "This place has seen a lot—heroes rising and falling, battles that turned into legends, and losses folks would rather forget. Out here, where the wind hums through the rocks and the ground\'s soaked in the blood of old wars, you can feel the past hanging in the air.$B$BTucked away in the Grim Hollow to the south is the Tomb of Ancestors. It\'s an ancient resting place, old as Grim Batol itself. Dwarves laid their dead to rest there ages ago, carved their names in runestone and memory. We thought they were at peace.$B$BTurns out, we were wrong.$B$BSomething\'s stirring in the dark. The dead aren\'t resting like they should. Spirits are drifting through the fog, restless. There\'s something foul buried beneath the marsh—something that doesn\'t belong.$B$BSo here\'s the deal: head into those misty bogs. Figure out what\'s messing with the tomb, and put an end to it. Let the dead sleep in peace again… and make sure whatever\'s causing this doesn\'t get any further.", + ["O"] = "Lay 10 Wandering Souls, and 10 Displaced Ancestors to rest for Dorthas Read near the northern entrance of Grim Reaches.", + ["T"] = "The Grim Hollow", + }, + [41801] = { + ["D"] = "There\'s someone who might know what\'s behind all this mess. Way deep in Grim Hollow, there\'s an old tree—a massive oak that\'s been standing since long before any dwarf laid eyes on these lands. No one really knows how old it is, but it\'s always been respected. Quiet. Steady. Part of the land, you know?$B$BBut now... we\'ve had word from Wildhammer scouts that a blue dragonkin\'s made camp under its branches. No idea what he\'s doing there, but I\'ve got a feeling it ain\'t random. With the way the land\'s been twisting lately, his arrival can\'t be a coincidence. Dragons don\'t usually stick their snouts into mortal troubles unless something big\'s going on.$B$BIf you\'re thinking of talking to him, tread carefully. Dragons aren\'t exactly known for their sunny tempers, and one wrong word could get you roasted. Still… if you can get him to talk, he might just have answers we\'re not gonna find anywhere else.", + ["O"] = "Find a Blue Dragonkin in the vicinity of a great oak in the Grim Hollow.", + ["T"] = "The Blue Dragonkin", + }, + [41802] = { + ["D"] = "Only the blind could fail to see the corruption that has taken hold of these swamps, its foul tendrils seeping into every root and shadow. I was sent here to uncover the truth of what plagues the Grim Hollow, yet my task has been far from easy. The swamps are patrolled by red dragonkin, their minds ensnared by the same corruption that poisons this land. $B$BWe dragons share a bond, a sense of our kin, and they sense me as surely as I sense them. Each time I\'ve sought to approach the Tomb of Ancestors, they have intercepted me, driven not by reason but by the darkness that clouds their minds. And so, I remain here, sheltered beneath this ancient oak, but unable to fulfill the purpose that brought me to this cursed place. $B$BYou, however, are unbound by the ties of dragonkind. You must venture into the depths of the Tomb of Ancestors and uncover the source of this corruption. I am certain it lies within, festering and spreading its taint. The fate of these lands may rest upon your mortal courage.", + ["O"] = "Reach the depths of Tomb of Ancestors.", + ["T"] = "Tomb of Ancestors", + }, + [41803] = { + ["D"] = "Now, mortal, listen well. If you are to grasp the gravity of what we face, you must first understand the skardyn and the vile origin that birthed them. Their story is one of betrayal, corruption, and a darkness that should have remained buried. Pay heed, for this knowledge is as dangerous as it is necessary.", + ["O"] = "Listen to the tale of Sarthyss Scaleheart.", + ["T"] = "The Skardyn", + }, + [41804] = { + ["D"] = "Skardyn... beings of terrible might and shadowed fury. Far stronger than you, mortal—and stronger still than any common band of adventurers. To face them directly would be folly. Their flesh is shielded by scales steeped in foul sorcery, their forms protected by curses woven deep into their essence. $B$BIf we are to stand a chance, we\'ll need to forge a weapon—one imbued with the power to pierce their dark enchantments. -- But I must confess, mortal... even with all my knowledge, I know not what such a weapon would be. The secrets of their unmaking lie beyond my grasp. $B$BYet there may be another path. The skardyn were once Dark Iron dwarves—twisted by shadow, yes, but once kin to those who still walk the surface. Perhaps their descendants have kept records of what befell their cursed kin. $B$BYou must go to Angor Fortress in the Badlands. There, the Dark Irons still linger—reclusive, secretive, and dangerous. But if any among them remember the truth of what transpired beneath Grim Batol... it is there you\'ll find it.", + ["O"] = "Venture to Angor Fortress in the Badlands and find any clues that could shed light on to how to defeat the Skardyn.", + ["T"] = "Memories of Dark Iron", + }, + [41805] = { + ["D"] = "Now, listen mortal. $B$BThe Red kin who stalk these festering marshes... their minds are no longer their own. The Skardyn\'s filthy sorcery has wormed into their thoughts, twisting proud drakes into snarling puppets. A disgrace... but not without use. $B$BTheir fire glands—untouched by corruption—still burn hot. Harvest them. Let their last embers serve a purpose greater than madness. With these, we will scorch the Skardyn\'s defenses to ash. $B$BDo not mistake this for mercy. It is necessity. Their suffering ends... and so will the Skardyn. $B$BNow go. And do not waste their fire.", + ["O"] = "Extract 3 Intact Fire Glands from Red Dragonkins in Grim Hollow.", + ["T"] = "Bathed in Dragonfire", + }, + [41806] = { + ["D"] = "Fire glands alone will not suffice to breach the skardyn\'s defenses—no, not by far. Their twisted flesh has been hardened by shadow, warded against mere flame. What we require is a catalyst... a focused conduit through which the fury of dragonfire may be properly channeled. $B$BThere is a gnome, curious and cunning—Oblethorpe Obloticus by name—residing in that chaotic cesspit the mortals call Booty Bay. In his younger years, he toiled with volatile flame in an attempt to cleanse the blight of Gnomeregan. His methods were... unorthodox, and not without controversy. The Tinkmaster himself opposed them. $B$BYet, if there exists a mind capable of forging a dragonfire device potent enough to break through the skardyn\'s shadow-wrought hide, it is his. $B$BSeek him. Time is not on our side.", + ["O"] = "Find Dragonfire Explosives expert in Booty Bay.", + ["T"] = "Dragonfire Bombs!", + }, + [41807] = { + ["D"] = "Aha! Hmm... well now, this isn\'t entirely a disaster. I\'ve got—let\'s see—coil springs, flux regulators, containment gel... Yes! I\'ve got most of what I need! $B$BHowever! I am running a bit low on a few key components—namely, Solid Blasting Powder, Bronze Frameworks, and Whirring Bronze Gizmos. Nothing too exotic! Any halfway-competent engineer could whip those up with the right materials. No offense if you\'re only quarter-competent, of course! $B$BNow, one thing might prove a bit trickier... the heat-resistant trigger. Not just any old trigger, mind you—this one\'s a specialty piece from Undermine. Built to withstand extreme temperatures. Last I heard, the latest shipment from Undermine got intercepted by those scoundrelly Bloodsail pirates. $B$BIf you\'re lucky—and still have all your limbs by the end—you might find one of those precious triggers stashed in the pirate camps to the southeast. $B$BOff you go then! Bring me the goods, and I\'ll bring the boom!", + ["O"] = "Bring the required materials to Oblethorpe Obloticus in Booty Bay.", + ["T"] = "I Am Become Death...", + }, + [41808] = { + ["D"] = " $B$BWell... upon some reflection—and maybe a teensy bit of hindsight—I\'m not entirely convinced crafting that for you was the best idea I\'ve ever had... $B$BM-maybe I should hold onto it... just to, you know, keep the world intact for another day or two... $B$BOkay, okay! No need for the death glare—yikes! Just... take the blasted thing! But do us all a favor and carry it as far away as possible! Avoid fire, goblins, sudden movements, loud noises, and especially me when you\'re holding it! $B$B $B$BNow go, go! Shoo! Be gone before I have second thoughts! $B$BOoooh—but wait! All this tinkering just gave me the most brilliant idea—EXPLOSIVE DUCKS!No one expects an explosive duck! Heehee! The waddling! The detonating! THE POSSIBILITIES!", + ["O"] = "Return to Sarthyss Scaleheart with the bomb.", + ["T"] = "The Destroyer of Skardyn", + }, + [41809] = { + ["D"] = "Enough waiting, mortal.$B$BThat Skardyn filth cowers below, his claws sunk deep into the earth\'s veins, poisoning all he touches. His wards may be strong—but not against the fire you now carry. Let my fallen kin\'s fury be the spark that burns his defenses to cinders. $B$BThen take his head. Cleanly. Let his blood be the last corruption he spills. $B$BBut do not be a fool. Walk in alone, and you will be just another corpse in his collection. Bring warriors. Bring steel. Bring enough rage to match his treachery. $B$BNow go. And do not disappoint me.", + ["O"] = "Use the Dragonfire Bomb to weaken Skardyn\'s shield, then defeat the Skardyn sorcerer.", + ["T"] = "Smell of Dragonfire", + }, + [41810] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Verdant Rune", + }, + [41811] = { + ["D"] = "$B$BI sense you are here for a purpose, can you hear it, trailing upon the sands, and rising from the dunes? Yes... Something evil has arisen, something foul. I have sensed it from deep within Zul\'Farrak, and it has tainted the very dunes of Tanaris itself! The spirits be angered by the presence of an ancient evil, and I have no doubt it is the return of Zel\'jeb.$B$BHe who was old when the world was young, one of the most venerable warlords of the Farraki, empowered by dark embalming, and foul magic. If there is to be peace in these lands, his soul must be brought to an end. Find him, deep within Zul\'Farrak, and bring your most trusted allies, you will need them to defeat Zel\'jeb.", + ["O"] = "Venture in Zul\'Farrak, and slay Zel\'jeb the Ancient, then return to Zalsu the Wanderer, who can be found south of Zul\'Farrak.", + ["T"] = "The Farraki Ancient", + }, + [41812] = { + ["D"] = "Deep beneath our feet lays an ancient temple once dedicated to Elune, it is there that druids planted a magical tree of great power to reinvigorate nature itself.The beauty of this tree has only been seen by few, though I now fear it lays in the hands of evil.$B$BI have heard rumors that satyrs now skulk these once sacred halls in the depths of Blackfathom Deeps. I task you to recover a seed from this tree, and bring it to me so my fellow druids may perhaps discover the power of the druids of old.", + ["O"] = "Traverse into the depths of Blackfathom Deeps and recover a \'Seed of Bloom\' from within the Moonshrine Ruins. Once acquired, return to Aelennia Starbloom east of The Zoram Strand in Ashenvale.", + ["T"] = "The Moonshrine Ruins", + }, + [41813] = { + ["D"] = "The Explorers\' League is not what it used to be, I tell you! I told them I would come here to discover history, heirlooms, something so grand that it would be placed in Ironforge\'s Hall of Explorers! But they mocked me and gave me no funds. How is this dwarf expected to afford his ale with no funding?$B$BSons of goats and rams, that\'s what they are. Pfft. Eh, speaking of which, I doubt you carry much coin with you, so I\'ll skip the funding part. I heard some humans talking a great deal about Balor having its own moonshine back in the day. Some lad named Vander used to own a farmstead, and he was said to brew a mean drink. I doubt the man lives, but perhaps you\'ll find some of his brew by his old home?", + ["O"] = "Find the crate of moonshine at Vander Farmstead and return it to Olmir Halfhorn.", + ["T"] = "Balor\'s Own Moonshine", + }, + [41814] = { + ["D"] = "I promised the Explorers\' League a prize whenever I left Ironforge, mostly because they wounded my pride! I dug here and there, but there wasn\'t much to find on this side of the island, and I\'m not strong enough to take on an entire army of orcs just to fulfill my ambition. As much as it pains me, I might have to return empty-handed.$B$BUnless... How about we make a trade? An heirloom for an heirloom. You scratch my back, I\'ll scratch yours, that sort of thing. I have this artifact I dug up on another expedition that I\'m willing to trade, if you return with something from the Duke\'s castle. I\'m man enough to admit my knowledge of Balor is quite limited, but the late Duke must have had something valuable. A sword, a shield, a crown—whatever you may find, bring it back to me, and we\'ll make the trade.", + ["O"] = "Return the Crown of Balor to Olmir Halfhorn.", + ["T"] = "The Late Duke Balor", + }, + [41815] = { + ["D"] = "There\'s a pirate compound to the northwest—bilgerats, in the purest sense. My guess is they\'ve come here to loot the castle. Too bad it\'s haunted by ghosts and stalked by demons and their masters, huh?$B$BAnyway, this simply means a job opportunity for both of us. I am a craftsman, a merchant—but above all else, I am a Goblin of Kezan! I could never pass up free merchandise.$B$BWell, \"free\"... You know—you\'ll have to loot it from their cold hands. But it\'s still free, right? Get a move on, then.", + ["O"] = "Collect 20 Bilgerat Weapon from the pirates in Bilgewater Compound and return to Grexx in Stormbreaker Point.", + ["T"] = "Free Merchandise", + }, + [41816] = { + ["D"] = "Thunder. Roaring thunder. The clouds tremble each time the sky cracks, and so does my body. How I wish I were atop a mighty beast above the clouds, roaring for all to hear! Living up to the name of my clan—Thunderlord—a name soon forgotten by this world. Few share my melancholic heart; it is why I follow him, that grumpy old orc.$B$BMourning the past serves nothing. The Horde is who we are now. I wish only to pass on the spirit of the hunt, the heart and mind of those who came before, so that they—and I—may live forever.$B$BAnd you, you are the candle I lit with my fire. One day, from your flame, another will be born.$B$BFind your way to the main island, through the ruined port of Breezhaven. Past the mine and orchard, turn right to find Sorrowmere Lake. Paint yourself with crocolisk blood and return with five of their tails. It has been long since I tasted their meat.$B$BBe bold, be careful—and by all means, be thrilled by the hunt.", + ["O"] = "Slay 10 Sorrowmore Crocolisk and return 5 of their tails to Gre\'shka Wolfsbite at Stormbreaker Point in Balor.", + ["T"] = "The First of Many", + }, + [41817] = { + ["D"] = "A warm feeling, is it not? A successful attempt, one whose bounty you shared with another, bound to you by mutual respect for the hunt.$B$BThis moment we share now, I have shared countless times with my people back home. No day would pass without us returning with prey, feasting on our spoils, and telling stories of our hunts.$B$BIt is a good life we had—we have. Though even then, many were lost; a simple negligence can cost you your life.$B$BFear is your rival, my friend. You must control it, or it will gain reign over you. Do not concern yourself with competing against others—compete against your fear. One second is enough for you to perish.$B$BWith that in mind, you must return to Sorrowmere Lake and follow the long bridges to the Scurrying Thicket. Your next hunt awaits. Slay the Mistbark Spiders, and see how you fare against an enemy of many legs and a poisonous bite.$B$BAs you walk there, remember what I told you: it is not truly them you are fighting, but your fear.", + ["O"] = "Slay 5 Mistbark Spider and 6 Mistbark Webweaver return to Gre\'shka Wolfbite in Stormbreaker Point.", + ["T"] = "Fear is Your Rival", + }, + [41818] = { + ["D"] = "A far more challenging hunt, but many more await. A lesson you must learn is that no creature is born equal. Those who say otherwise lack vision or common sense.$B$BOn your journeys, you will face many trials. Azeroth is vast and cruel; you must be ready for anything.$B$BInequality also marks our uniqueness. Do not see the word \"unequal\" and sink into dark thoughts. Look beyond, understand that while the world may not bow to you, being yourself is enough. You will find a way, your way, and you will be unique.$B$BYou have faced your fear, and that was the first step to finding your own path.$B$BNow, return to the main island. Where the road splits at the orchard, take a left and pass through the ruined castle walls. Beyond the church and crypt, find the other entrance. Go past it, and past the cave. In the loose hills beyond, you will find buzzards and vultures. Face them, and learn to battle a flying enemy.", + ["O"] = "Slay 6 Stormwing Buzzard and 9 Stormwing Vulture and return to Gre\'shka Wolfbite in Stormbreaker Point.", + ["T"] = "We are not Born Equal", + }, + [41819] = { + ["D"] = "I have never taken a liking to the taste of fish—mostly because it was such a frequent meal on the Darkspear Isles. Yet, ever since we were forced to leave our home, it is not the taste but the memories it brings that trouble me. The foul Sea Witch, her naga, and their mindless murloc minions cost our people dearly. Though I cling not to the past, I cannot help but feel a burning desire to see these filthy creatures slain.$B$BI foresee a great future for our tribe within the Horde, much like my father and grandfather before me. I proudly bear its flag, yet my thoughts betray me on this day. So, I task you, one who will help shape the future of the Horde alongside me, to slay the Muckgills on your path to eliminate the shadowy leader who hides among them.$B$BClimb down the hill and in that cave you will find them guarding the entrance for whatever plot the Sea Herald may have.", + ["O"] = "Slay 5 Muckgill Hunter, 7 Muckgill Murloc and the Sea Herald and return to O\'jin in Stormbreaker Point.", + ["T"] = "A Dark Tide Will Rise", + }, + [41820] = { + ["D"] = "My duty is to remain here and see the Shadow Council brought to an end. Yet, I cannot help but reflect on what this truly means. For the Sea Witch to resurface after such a long time... it is haunting. You must understand, my people have lost a great deal because of her. Though I may be repeating myself, it is because I seek your empathy.$B$BI am unable to leave this place. Though my feet ache to move, I cannot bear the thought of leaving Kilrogg and our allies to face this alone. I am but a single troll, true, but I have grown fond of the old chieftain, to be fair. He is gruesome, yet wise. Passionate and explosive, there is much I can learn from him. One day, I will take the mantle of Darkspear chieftain, and with it comes great responsibility.$B$BThis orc has endured many hardships, and his shoulders are heavy still. I will give him the chance to nurture the next generation of the Horde through me. And so, I ask you to travel back to Orgrimmar and deliver this scroll to my father, Vol\'jin. You will find him in Grommash Hold, at the side of the Warchief.", + ["O"] = "Deliver the missive to Vol\'jin in Grommash Hold, Orgrimmar.", + ["T"] = "To My Father, Vol\'jin", + }, + [41821] = { + ["D"] = "Whispers come and go; the spirits are ever restless here. But even with all this chatter, there are a few voices I cannot silence.$B$BThe enemy is foul, vile, and beyond any salvation for what they have done. I hear it—so loud and clear—I can hear it.$B$BAn abomination, born of cruel intent, of a soulless wretch. I cannot stand it anymore.$B$BYou must find your way into that castle and put it down. I cannot describe it in words—you must see it for yourself. It\'s haunting.$B$BYou must slay it, slay it to set them free—those poor, young souls.$B$BLeave no Stormreaver alive; they must suffer the wrath of the living world so the ones beyond may rest.$B$BGo now. Just go. You will know it when you see it...", + ["O"] = "Slay Remains of the Innocent and return to O\'jin in Stormbreaker Point.", + ["T"] = "Innocence Lost", + }, + [41822] = { + ["D"] = "Made by the hands of men, the only light still visible across Balor is kept prisoner just under our noses. A lighthouse—a strange form of artificial light. The world is vast beyond the villages of my tribe, and the Earthmother holds many children—but some, she was forced to adopt.$B$BThe Horde is no stranger to them either, and as much as I would like to say otherwise, I do not think I will ever look upon them with true empathy. A specter of respect? Pity, perhaps. Nevertheless, I am straying from the purpose of our conversation.$B$BUnder the gaze of that lighthouse, you will find many so-called Mystics, though you may seek them elsewhere if you wish.$B$BI task you with slaying as many as you can. The empty shells of fel corruption, and their rotting flesh will serve as nourishment in time, allowing nature to take its course once more.", + ["O"] = "Kill 12 Stormreaver Mystic, return to Stormbreaker Point once your task is complete.", + ["T"] = "Grim Sunlight", + }, + [41823] = { + ["D"] = "Among the ruined battlefield, a cave can be found—an old mine, perhaps. It is there that I have sensed an unnatural disturbance.$B$BSomething once immobile has risen on its own feet to live. Much like the undead scattered across this ruined land, these creatures are mindless and will attack any on sight.$B$BI task you to go there, find them, and slay some. I will need samples, so be sure to bring something sharp. With those samples, I can study what made them rise.$B$BI should tell you beforehand—this will not aid our efforts to remove the Stormreaver—but I will have a reward ready for you.$B$BDo not make me wait.", + ["O"] = "Collect 7 Vegetative Sample from the Poisonous and Living Mushroom Beasts and return to Uda\'pe Sungrass in Stormbreaker Point in Balor.", + ["T"] = "Living Fungus", + }, + [41824] = { + ["D"] = "These samples have a dark feeling to them. I don\'t know if you can tell, but it seems they have been infused with some sort of magic—magic that brought them into a state of life.$B$BFrom what I can tell, they resemble the boggling creatures of Kalimdor, yet are far more twisted. I have yet to attempt cleansing them, though truth be told, this is just dead tissue at this point.$B$BI believe these living fungi originate from a common source. To speak plainly, there should be a larger one that infected the rest. I say this not simply on a whim, but because I feel something from the isle—around the area of the ruined castle—rather, under it.$B$BI believe the source of contamination comes from there. If you can find your way beneath the castle, you might uncover the answers we seek.$B$BReturn anything you deem important to me.", + ["O"] = "Slay Mycellakos and bring back Core of Mycellakos back to Uda\'pe Sungrass in Stormbreaker Point.", + ["T"] = "Mycellakos", + }, + [41825] = { + ["D"] = "Purifying this core is well beyond my abilities. As much as I hate to admit it, there is no way I can do this alone.$B$BIt is with a heavy heart that I part with this core; I wished for nothing more than to research it and uncover what caused it to become alive. Nevertheless, this is knowledge that must be passed on.$B$BThere is someone who will surely know how to handle the core—our Matron. You will find her in Thunder Bluff, at the Elder Rise.$B$BPay no mind to Cor and Grom; I will give you my mark, and you will be able to walk freely past them.$B$BDo not speak too much before the Matron. She has a short fuse, and—believe it or not—I have grown fond of you.", + ["O"] = "Bring the Core of Mycellakos to Magatha Grimtotem in The Elder Rise, Thunder Bluff.", + ["T"] = "The Matron Will Know", + }, + [41826] = { + ["D"] = "A fistful of ash. That is what I always believed my fate to be. Yet fate had other plans. Instead of falling to the fire I once commanded, I succumbed to the cold embrace of the Twisting Nether. A fitting end for one who abandoned his ancestors and embraced the Burning Legion.$B$BStill, I curse my fate. I followed my chieftain—my elder, Ner\'zhul. Where the elements once spoke, I listened. But I betrayed them. Demonic whispers filled the void, and I welcomed them. I was stronger than ever. I do not fully regret my path; I still wield the power granted by our former masters.$B$BWhat I seek now is vengeance, upon all who claim to follow Gul\'dan. My soul, trapped in a shard, was denied death. And now I stand in the rotting flesh of a woman foolish enough to challenge the Horde. There is no rest for the wicked, but not all retain their sense of self. Travel to the Ruins of Breezehaven, and lay to rest those that remain.", + ["O"] = "Slay 3 Lingering Peasant, 5 Spectral Worker, 7 Vengeful Memory, 9 Rotting Resident and return to Mok\'gun Frostfingers in Stormbreaker Point.", + ["T"] = "Those That Remain", + }, + [41827] = { + ["D"] = "I was never one for irony. Yet I cannot help but see it in this scenario. In the end, only fools seem to be smiled upon by luck—so I suppose. When Gul\'dan never returned from the Tomb of Sargeras, everyone agreed that he, and those who followed him on that fool\'s errand, had lost their lives.$B$BYet one survived, and he is here. Stranded on a turtle\'s back, returned from the Broken Isles. I don\'t yet know if he\'s here to aid the scum hiding on this isle, or if his purpose mirrors ours. What I do know is this: having him on our side—or at the very least, getting some information out of him—will be worth our time.$B$BBeyond the small island of the lighthouse, swim ahead and you\'ll find his hut. Just get out of this cave and go straight. But beware the murlocs haunting the waters. And when you see him... spit in his face for me. Or don\'t. Your call.", + ["O"] = "Find Drak\'thul in his hut, floating above the waters of Balor.", + ["T"] = "Old Friend", + }, + [41828] = { + ["D"] = "Years ago, when our people first set foot in this world, we believed ourselves invincible. Before the First War truly began, joined by that filthy two-headed mongrel Cho\'gall, we brought ruin to the human lands. Our armies marched to the gates of Stormwind City, and victory was within reach. We were clearly the superior warriors.$B$BArrogance, young one. The greatest enemy of those who deem themselves strong. From the gates, mounted warriors struck like lightning. Backed by magic, these knights forced this proud chieftain to retreat with his tail between his legs. Humility—a trait every warrior ready to die in battle must carry. Always assume your enemy is stronger. Always believe that, if you survive, you will be stronger than before.$B$BDo not underestimate humanity. Leave this camp without caution, and you may find a dagger in your back. They skulk in the shadows, closer than is comfortable. They may not be our main focus but find and slay them.", + ["O"] = "Slay 7 SI:7 Scouts and return to Kilrogg Deadeye in Stormbreaker Point.", + ["T"] = "Bugs on My Island", + }, + [41829] = { + ["D"] = "In their eternal mockery, these foolish warlocks have named one of their abilities after my missing eye. There is no way I can accept this insult with a straight face. It is a disgrace—to my name, to all that I am!$B$BWere I not stuck here under this wretched tent by whatever mischievous power compels me to trust you instead of exacting my own justice, I would march out myself and collect the eyes of those blasted, fel-hungry oafs.$B$BBut as I am denied that right, you will do it in my stead. Venture back to the island of Balor and slay the Stormreaver Warlocks. Bring me no fewer than thirty of their eyes! They say if you believe in “an eye for an eye,” the world will one day go blind. The Stormreavers won\'t need their sight any longer—not once you\'re done with them.", + ["O"] = "Collect 30 Stormreaver Warlock Eye and return to Kilrogg Deadeye in Stormbreaker Point.", + ["T"] = "Eyes of Stormreaver", + }, + [41830] = { + ["D"] = "I bid you welcome to the legacy of crime of that which you call home—shelter, family. Witness the havoc brought by the hands of the slaving Horde. This is what would have remained of all Azeroth, were we not rid of our demonic masters. Take it in. And then focus—we are not here to conquer, nor to save. We are here to assume responsibility.$B$BAs always, the cursed mongrels of the Shadow Council do not fail to make their sort as detestable as one could be. Were it not enough that their numbers plague this war-scarred land, they have gone above and beyond to raise both flesh and soul beyond the veil of death.$B$BIn what was Breezehaven, you will find a mine. Dispatch the numbers of bones and rotting flesh that stand between you and their pitiful masters. Find these so-called necromancers and stain your blade with their fel-ridden blood. I owe a personal debt to the scum that dared call themselves Stormreaver. What even is a storm in the face of a hollow that will swallow all there is?", + ["O"] = "Slay 5 Stormreaver Necromancer, 8 Foul Overseer and 8 Spikebone Miner and return to Kilrogg Deadeye in Stormbreaker Point.", + ["T"] = "Deep in the Mines", + }, + [41831] = { + ["D"] = "Since I have regained my freedom, I have come to think about many things. Many questions have riddled my mind into labyrinths I have struggled to overcome. It was for that reason alone I chose to step aside for some time. However, I did not expect to be so easily forgotten. Mere thoughts.$B$BIn my short-lived hermit life, I was once or twice challenged to duel the notion of evilness. Are we born evil—or do we become so later on, due to circumstances? The conclusion I came to was quite simple: we all bear a seed of evil at the root of our own being, but it is by choice whether it grows or not.$B$BWhich brings us to your next task. If you believe my words earlier to be nothing but a bore, hear me now. Havoc is what they know, so havoc is what you will give. Go beyond Breezehaven, push closer to the castle—your targets await. You are not a killer—you are the consequence of their actions, coming to take its due.", + ["O"] = "Slay 5 Stormreaver Outrunner, 10 Stormreaver Ravager, 5 Stormreaver Drone, 5 Stormreaver Raider and return to Kilrogg Deadeye in Stormbreaker Point.", + ["T"] = "Mere Thoughts", + }, + [41832] = { + ["D"] = "Are you one to care for insects, soldier? I have taken a keen interest in ants. You see, while they differ in species, hierarchy, and even customs, were you to open your mind to see them so—there is only one truth. The moment the queen dies, three things can happen: the colony falls apart, slowly dying without new workers; it has more than one queen, so they still survive; or it raises a new queen to ensure the colony endures.$B$BJust like ants, the Stormreaver Clan numbers many. Your efforts, while not in vain, have barely dealt any damage to their true strength. So, to ensure the goal of our mission, you must go once again and clear us a path—this time, closer to their nest. Travel to the Ruins of Stromwrought Castle. Do not hold back. Go as far as you can. In that everlasting battlefield, you will be the boot that stomps over the colony.$B$BAdventure not alone—seek aid from your brothers and sisters.", + ["O"] = "Slay 6 Stormreaver Brute, 6 Stormreaver Torturer, 4 Stormreaver Shadowcaller, 2 Stormreaver Stormblade and return to Kilrogg Deadeye in Stormbreaker Point.", + ["T"] = "Colony of Ants", + }, + [41833] = { + ["D"] = "If you have yet to seek Drak\'thul, now is the time. Drak\'thul holds the key to storm the castle, and your next task is to put it all to rest. An old acquaintance has paid me a visit. Though we do not see eye to eye on many things, there is one hatred we share—the hatred for a despicable being who stood beside Gul\'dan during the forming of this clan.$B$BThough the coward is not here himself, he has sent his most treasured pupil to oversee the new uprising. While he is your main target, do not shy away from slaying all you lay eyes upon—Dagar and Oronok especially. Steel yourself; I have no clue what they have in store for you.$B$BWhile my hatred for them burns like the lowest pits of Blackrock Mountain, I know better—I know they are capable, though despicable. But I believe you are even more capable. Reach out to your allies once more, and see it done. I do wonder... will the sun return to this island once I see you return? After all, it can\'t rain all the time.", + ["O"] = "Slay Dagar the Glutton, Oronok Torn-Heart, Ighal\'for and return to Kilrogg Deadeye in Stormbreaker Point.", + ["T"] = "It Can\'t Rain All the Time", + }, + [41834] = { + ["D"] = "When I was sent to this island, I believed the Warchief—like most—saw only an old orc, ready to die. He ordered me to serve as a commander, not a warrior. Were it not for Eitrigg\'s counsel and Saurfang\'s mocking words, I doubt I would have played my part. But I trusted my friends, and they trusted the Warchief.$B$BA Frostwolf heart beats in his chest. He is wise beyond his years, much like Drek\'thar and Orgrim. It seems he was right about me. Though I longed to fight at your side, to stain this island red with my axe, I have learned something else.$B$BI am the last chieftain of the Bleeding Hollow, elder of the Horde, and with these hands, I will guide the next generation. Go now, with victory in your heart, to Grommash Hold. Present our triumph to the Warchief, and tell him I will soon return. Perhaps I will visit Hellscream\'s memorial when I do.", + ["O"] = "Report to Thrall in Grommash Hold, the Valley of Wisdom, Orgrimmar.", + ["T"] = "Storm\'s End", + }, + [41835] = { + ["D"] = "While they already occupy most of the island, it seems they have not truly bathed in their own arrogance. As if expecting both Alliance and Horde to come, a great number of demons have been summoned. I can feel their echoing presence from this far. Whether it is for protection or invasion, I know not.$B$BNor does it truly matter, since you will thwart their plans. You can find these demons in a cave near the south west end of the island. Just past the ruined battlefields west of Stormwrought castle. While the imps may not prove a real challenge, you will have to deal with felhunters and succubi.$B$BI do wonder—will you succumb to the fire of an imp, the gluttony of the felhunter, or perhaps the lust of the succubi? I truly hope not, for your role here has yet to end. I will offer you a healthstone—not that I don’t trust you, but it is best to have the means to heal when the unexpected strikes, is it not?", + ["O"] = "Slay 10 Untamed Imp, 10 Thirsting Felhunter, 5 Mistress of Pain and return to Drak\'thul in his hut.", + ["T"] = "Legion or Not, Here I Come", + }, + [41836] = { + ["D"] = "I am sure you are eager to take the battle to the castle at any cost as soon as possible. But for you to do so we must first find the key to open it. Inside the same cave I have sent you to hunt the demons summoned by the Stormreaver Clan you will also find one that has claimed leadership over the rest. She calls herself Lady Harelyss.$B$BThis demon holds a great importance, simply because–if my own minions speak the truth, she holds an item that will secure us the key to the castle. While I cannot have you return her here, since you would have to drag her through a battlefield, I will give you a soulshard–the minute you deal the final blow, you will capture her soul in it, simply by having it on you.$B$BMake sure to retrieve the item we are indeed looking for, her demise is inevitable and capturing her soul is simply our insurance in case we need to gather more information.", + ["O"] = "Slay Lady Harelyss, return her soul and the item she carries to Drak\'thul in his hut.", + ["T"] = "Lady Who?", + }, + [41837] = { + ["D"] = "The Stormreaver Clan was not composed solely of orcs from the Shadow Council, but also included the ogre magi who served under Cho\'Gall. While a questionable ally, Gul\'dan kept that two-headed buffoon as close as he could. I do wonder if the reason was that he knew they would one day betray each other in their lust for power.$B$BAlas, one failed while the other lives—hiding beneath the sands, behind the cloak of a cult that worships myths and legends as old as this world. I have taken the liberty of making the succubi share their plans with me. To the west, past the cave where you defeated her, you will find the Windrock Cliffs. It is there that a member of the Twilight\'s Hammer holds a fragment of the key. Slay him and return with whatever you find.", + ["O"] = "Return the second fragment of the key back to Drak\'thul in his hut.", + ["T"] = "Storm, Twilight and Hammer", + }, + [41838] = { + ["D"] = "Hey, you! You seem like a tough fella, and a tough fella is just what we need. Down south near the mountains of Thistleshrub Valley, we started with our newest big money making plan, the Slickwick Oil Rig. Everything went smooth for a while, until the pump stations went crazy and the oil started to move on its own! I’ve trotted throughout the entire desert back to Gadgetzan to get some help for our problem, and you look like just the $c we need! Don’t worry, we’ll pay you a fat sum of glorious gold! Once you reach the southern mountains, near the big cacti you’ll find a slope up the mountain range. The oil rig is not far from there. Talk to Assistant Steamflare, she’ll know I sent you.$B$BOh, and could you clean up some of the oil on your way there? Will be worth the effort, trust me!", + ["O"] = "Travel to Slickwick Oil Rig and talk to Assistant Steamflare, dispose of some oil creatures on your way there.", + ["T"] = "Trouble at Slickwick Oil Rig", + }, + [41840] = { + ["D"] = "", + ["O"] = "Bring the wooden toy sword to someone that knew its owner. You may have luck in Northwind, where all of this started.", + ["T"] = "All That Is Left", + }, + [41841] = { + ["D"] = "", + ["O"] = "Deliver the Bloodstone Pendant to Lady Sylvanas Windrunner in Undercity.", + ["T"] = "Artifact of the Dark Lady", + }, + [41842] = { + ["D"] = "If you’re entering Stormwrought Castle, I have one humble request for you. The Balor family amassed countless books and tomes over the many years they held authority over the island. Following decades of trade, they collected a sheer unimaginable amount of knowledge in their library. One of them, the personal teachings and lectures on the hidden practices of trade by Sir Walton Balor, younger brother of the second Duke of Balor, is a book both I and Stormwind are very much interested in.$B$BShould you come across the vast library of Stormwrought Castle, search it for said book. And $N: Beware of the dangers inside. I dare not think about the terrors that await you within those vile halls.", + ["O"] = "Recover ‘Compendium of Successful Trade’ within Stormwrought Castle for Noppsy Spickerspan at the SI:7 Outpost on Balor.", + ["T"] = "Antiquities", + }, + [41843] = { + ["D"] = "So the time to infiltrate Stormwrought Castle has finally come. This den of devils will demand every last bit of your focus and skill for you to come back in one piece. I won’t mince my words, but you’re surely aware of it yourself already, no? The others and I will secure the perimeter on the castle courtyard to prevent reinforcements halting your operations.$B$BOperative Gillian has ordered you to dispatch the head of the hydra, which is undoubtedly the most crucial task of all. Still, to ensure no resurgence occurs by surviving figureheads, we need to make sure to snuff them out as well. Liquidate any tough guy you come across. We don’t want to deal with that scum again.", + ["O"] = "Thin out the chain of command within Stormwrought Ruins and return to Nippsy Spickerspan in the SI:7 Outpost on Balor.", + ["T"] = "Assassin In Training", + }, + [41844] = { + ["D"] = "When we crashlanded here on this island, we noticed that most of our cargo had dropped into the wide expanses of the ocean. While we still have a good chunk of it secured, it’s not nearly enough to satisfy our recipients in Booty Bay. Yunie and the others have their hands full repairing the zeppelin and making sure we don’t actually get eaten by monstrous crustaceans. I on the other hand had the golden opportunity to scout the island when we were looking for Verix a while back. And wouldn’t you know it: there is a giant castle atop the cliffs. You can probably guess what I am hinting at. While I am not as crazy and suicidal as Verix, I would be remiss to pass up this opportunity to grab some valuables no goblin has ever seen before.$B$BWhich is where you come in. Grab some friends or pay someone if you don’t have any and grab as many valuables as you can get from within that castle on the other side of Balor. It will pay off, trust me!", + ["O"] = "Rikki Fizmask wants you to pillage the Stormwrought Ruins on Balor and return to her at the Gullwing Wreckage.", + ["T"] = "The Dead Can’t Complain", + }, + [41845] = { + ["D"] = "Aberrations skulk these halls. Monsters born from malice and demons from the depth of depravity call this once resplendent place their home. I still remember it vividly, Balor - how it used to be. Bustling with life and commerce. None of it remains, except the spirits of those still clinging on. The cruelty inflicted upon us decades ago tethers us to our former home, preventing us from moving on. Good $C, will you be the one to break our shackles?$B$BDeep within the castle, beyond the stockades, the orc’s demonic allies conduct vile experiments. One of their overseers, a vile demoness with wings and hooves, holds a fragment of my soul, keeping me frozen in time. Slay her and retrieve it. Then perhaps…", + ["O"] = "Slay the succubus keeping hold over Arthur’s soul and return it to him in the throne room of Stormwrough Castle.", + ["T"] = "The Will of Balor", + }, + [41846] = { + ["D"] = "The Wildhammer kin of Dun Kithas are in dire need of aid. The Dragonmaw Clan grows bolder by the day, and Magistrate Hurdam Toughhand fears they\'ll strike at any moment!$B$BWhile we ready our forces for a proper defense, it falls upon us to call upon adventurers such as yourself to lend a hand. Ye\'ve been chosen to assist Magistrate Hurdam and the folk of Dun Kithas in this critical hour.$B$BTo reach Grim Reaches, travel through the High Pass—a mountain tunnel near the Farstrider Lodge in Loch Modan. Stay sharp, for the Dragonmaw are no trifling threat. Once you reach Dun Kithas, report to Magistrate Hurdam without delay. May the mountain\'s strength guide ye!", + ["O"] = "Report to Magistrate Hurdam Toughhand in Dun Kithas in Grim Reaches.", + ["T"] = "The Grim Reaches", + }, + [41847] = { + ["D"] = "There was a time, long ago, when we stood united with the noble Wildhammer Dwarves—an alliance forged in mutual respect and necessity. In our time of greatest need, they did not falter. Aerie Peak opened its gates to hundreds of refugees, and their stalwart mountaineers shielded countless caravans from the dangers of the wilds. Their actions, noble and selfless, are a debt we will carry for eternity, though no amount of gratitude could ever repay them.$B$BSo it is with a heavy heart that I hear of the plight facing the settlement of Dun Kithas, nestled within the distant and perilous Grim Reaches. In their time of danger, we cannot remain idle. I have already dispatched a detachment of our finest rangers to aid them, but I trust they will accept any additional hands with the warmth of their legendary hospitality.$B$BWhen you arrive in Dun Kithas, seek out Ranger Swiftstride. She has been entrusted with a most delicate task—one that your skills may be called upon to assist. Go with haste, for every moment counts.", + ["O"] = "Report to Ranger Faellina Swiftstride in Dun Kithas.", + ["T"] = "Honoring Old Alliances", + }, + [41848] = { + ["D"] = "You must have seen them — the Withered — when you walked the paths of Alah\'thalas. Wretched beings... their thirst for the arcane has consumed their minds, leaving only husks behind.$B$BA tragedy, truly. And what wounds the spirit most is knowing their numbers grow with each passing dawn. The Withering, once begun, cannot be undone — only delayed. But even that demands a torrent of mana, a price many deem too high for those already lost to the hunger...$B$BYet, Lord Theron holds hope. He believes that these very lands may hold the key to a cure. A slender hope, but hope nonetheless.$B$BStill, all in due course. For now, I have a task for you. Word travels of an ancient, destroyed passage to Grim Batol, somewhere westward, buried among the hills. Should the tales speak true and you uncover this forgotten way... return to me with haste.", + ["O"] = "Find a forgotten passage to Grim Batol in the hills of Grim Reaches.", + ["T"] = "To Cure the Withered", + }, + [41849] = { + ["D"] = "Now then... There is an old legend that speaks of a dwarven jewelcrafter who once dwelled in this very part of Grim Batol. His craft was unmatched — the gems he forged, said to shimmer with the brilliance of starlight itself.$B$BBut more than mere beauty... it is said he could shape crystals capable of storing mana — not only that, but crystals that could be replenished, again and again, without fracturing. A rare and wondrous feat, if ever there was one.$B$BYou see where this leads, I trust? Should we recover even a single such gem, our arcanists might unravel the secret of its making. The burden of crafting mana crystals could be lifted... and with that, perhaps, we could better tend to the Withered.$B$BIf you would brave the ruins and seek any trace of these enchanted stones — a fragment, a clue, or best of all, a crystal still whole — it would be a boon to our people beyond measure.", + ["O"] = "Find a Replenishable Mana Crystal inside the Grim Passage, northwest of Dun Kithas.", + ["T"] = "To Cure the Withered", + }, + [41850] = { + ["D"] = "Just beyond these hills to the east lie the Sal\'Galaz Mines. Aye, they\'ve been worked by the stout folk of Dun Kithas for decades – that is, until the troggs came. The miners, curse their greed, likely broke into some old, dark tunnels where those filthy creatures were lurking.$B$BNow, I\'d not fret much over it usually – plenty of wealth beneath the ground in these parts – but there\'s something about those mines. Something rare. Just before the troggs turned up, the miners uncovered a gemstone in the southernmost shaft. And not just any gemstone, mind you. If the tales are true, this could be the Gemstone of Naraz, forged by the very Makers themselves.$B$BI must have it. But I\'m no fighter, and those troggs are too much for me. Bring me that gemstone, and you\'ll have your reward, I swear it.", + ["O"] = "Recover the Gemstone of Naraz from Sal\'Galaz Mines for Prospector Dustshoulder.", + ["T"] = "The Gemstone of Naraz", + }, + [41851] = { + ["D"] = "Prospector Hammertoe was sent off to the Badlands to dig up relics of the Makers. Fool\'s always had an eye for old treasures, and he was convinced the Gemstone of Naraz might be there. We didn\'t see eye to eye on it, so we went our separate ways—I took my search to the Grim Reaches instead. Turns out, we were both right in a way. The gemstone\'s split in two.$B$BBut that doesn\'t matter now. What does matter is I need you to head to the Badlands, to his excavation site, and find the gemstone. If they\'ve uncovered it, well... I doubt Hammertoe will notice if it goes missing.$B$BYou bring it to me, understood? The Gemstone of Naraz must be mine—to restore it to its true form.", + ["O"] = "Recover the Second Gemstone of Naraz for Prospector Dustshoulder.", + ["T"] = "The Gemstone of Naraz", + }, + [41852] = { + ["D"] = "$C! The Explorers\' League is in dire need of your aid!$B$BWord must\'ve reached your ears by now—our dig site, just north of here, has been savagely attacked by those blasted Shadowforge dwarves! The brutes ambushed us, cut down our brethren, and started digging like rabid beasts, with no respect for the archaeological process or the sacred ruins of the Earthen!$B$BI need you to head there, and recover any Earthen relics that might\'ve survived their reckless plundering. Please, time is against us—the very legacy of our kin hangs in the balance!", + ["O"] = "Recover 10 Earthen Relics from Groldan\'s Excavation.", + ["T"] = "Earthen Relics", + }, + [41853] = { + ["D"] = "This will not stand! By my beard, I swear vengeance upon the Shadowforge and their vile lot!$B$BI led the Explorers\' League excavation here in the Grim Reaches, a peaceful endeavor, mind you. Then, out of nowhere, those treacherous Dark Irons attacked us under cover of night! Only a handful of us escaped with our lives—most of my comrades were slaughtered where they stood!$B$BWe must strike back! Head northeast to my old excavation site and slay as many of those Dark Iron scum as you can. Bring me their heads as proof. Show them no mercy—they deserve none.$B$BAnd listen—if by any chance you come across my personal stash there, bring it back to me. It holds valuable notes from the excavation, notes I cannot afford to lose!", + ["O"] = "Bring 20 Shadowforge Dwarf Heads to Groldan Blackforge.", + ["T"] = "Groldan\'s Grudge", + }, + [41854] = { + ["D"] = "You find a stash filled with notes, artifacts, and various pieces of junk. The name \'Groldan Blackforge\' is written on the lock.", + ["O"] = "Bring the stash back to Groldan Blackforge.", + ["T"] = "Groldan\'s Stash", + }, + [41855] = { + ["D"] = "My name\'s Kegg Boulderboots, and I\'ve been foreman of the Sal\'Galaz mines for a good thirty years... Everything was going fine—better than fine, really. The mines are rich, bursting with iron and coal.$B$BBut then... then we uncovered that cursed gemstone. From the moment we unearthed it, troggs started swarming out of crevices and tunnels like a plague. They overran us in no time.$B$BBy the grace of the Makers, most of the miners managed to escape, but the mine itself—it\'s lost! And with the Dragonmaw threat looming, the city council can\'t spare a single soldier to help us take it back.$B$BPlease, $r, I\'m begging you—help me. Slay 10 Bonesplitter Troggs and 10 Bonesplitter Bonesnappers in the quarry. It\'s the only chance we have to reclaim what\'s ours!", + ["O"] = "Slay 10 Bonesplitter Troggs and 10 Bonesplitter Bonesnappers in Sal\'Galaz Mines for Foreman Kegg Boulderboots.", + ["T"] = "Reclaiming Sal\'Galaz", + }, + [41856] = { + ["D"] = "I\'ve one more favor to ask of you, $r.$B$BThe quarry may be clear of troggs for now, but the true source of the infestation lies deeper—in the mines themselves. If we\'re to retake the place for good, you\'ll need to venture into the mines and deal with the threat at its heart.$B$BKill at least 10 Bonesplitter Skullthumpers and 10 Bonesplitter Geomancers. Hopefully, that\'ll be enough to stem the tide... for now.", + ["O"] = "Slay 10 Bonesplitter Skullthumpers and 10 Bonesplitter Geomancers in Sal\'Galaz Mines for Foreman Kegg Boulderboots", + ["T"] = "Reclaiming Sal\'Galaz", + }, + [41857] = { + ["D"] = "Bah! Troggs to the east, Dragonmaw to the north, ghosts to the south, and now murlocs?! At this rate, I wouldn\'t be surprised if a Dark Portal opened right in my own backyard!$B$BRegardless, those blasted murlocs gathering near Grimwater River are becoming a real problem. Their numbers are growing, and if we don\'t cull them soon, they\'ll be a danger to our fishermen.$B$BBring me twelve murloc scales as proof of your deed, $r. Let\'s remind those fish-folk whose waters they\'re trespassing in!", + ["O"] = "Bring 12 Miregill Scales to Marshal Rorin Palepike in Dun Kithas.", + ["T"] = "Miregill Distraction", + }, + [41858] = { + ["D"] = "By now, you\'ve no doubt noticed that sizeable cave on the south bank of Grimwater. Some time ago, the Mirefin murlocs took it over, and now we can\'t exploit its resources because of them.$B$BWe need to strike and drive them out of that cave once and for all. It\'s been proven that the best way to rid a place of murlocs is to cut off the head—kill their leader.$B$BA murloc named Gargill commands this miserable lot, but our fishermen know him by another name: the Butcher. He\'s slain many of our own and will slay many more if he\'s not stopped.$B$BYour task is simple, $r—kill Gargill and 8 Miregill Murlocs and Muckdwellers. That should be enough to drive them out of the cave for good!", + ["O"] = "Slay 8 Miregill Murlocs, 8 Miregill Muckdwellers and their leader - Gargill the Butcher.", + ["T"] = "Gargill the Butcher", + }, + [41859] = { + ["D"] = "", + ["O"] = "Search for clues about the enigmatic Edrin in Northwind and fulfill his final wish.", + ["T"] = "After All This Time", + }, + [41860] = { + ["D"] = "$N, it is good to see you. Not long ago, a stranger was looking for your presence. I had told them I could relay a message, after which they told me the following:$B$B“Meet us at the archdruid\'s barrow den. We will await your arrival.”$B$BMysterious, but there was no malice coming from them. I am sure you have nothing to fear.", + ["O"] = "Meet with the stranger in Moonglade.", + ["T"] = "Emerald Summon", + }, + [41861] = { + ["D"] = "We see our message has reached you, $N. Word of your deeds has travelled far, even to the verdant stretches of the Emerald Dream. Your heroic service to Malorne has not gone unnoticed. His brethren, the Wild Gods, and his dear friend Ysera owe you much for saving him from the clutches of the Nightmare. Once he regains his form, we will gain another powerful ally against the dark entity within the Nightmare\'s miasma.$B$BOur mother Ysera sent us to the sacred Moonglade in search of the one druid who opposed the Nightmare headfirst. To reward him for their actions in Hyjal and the Twilight Grove. That we will do. However, a test first. We know what you are capable of - your wit, strength and perseverance are unparalleled. Prove to us once more the extent of your abilities and we shall grant you more power to the blessing the Waywatcher bestowed upon you.$B$BWe will not hold back; be prepared to face the power of the Green Dragonflight!", + ["O"] = "Master the challenge Rethevus lays upon you!", + ["T"] = "The Dreamer\'s Challenge", + }, + [41862] = { + ["D"] = "Welcome to Dun Kithas, friend. I\'d gladly speak of our town\'s history and pride, but now isn\'t the time for stories.$B$BAs you\'ve likely noticed, we\'re in a grim situation. The Dragonmaw clan has risen again, and we\'re knee-deep in a conflict we\'re steadily losing.$B$BYour arrival, along with what few Alliance forces made it this far, gives me a sliver of hope. Perhaps there\'s still a chance we\'ll see the sun rise over these mountains again.$B$BMy most trusted commander, Mountaineer Steelwind, is holding position at East Ridge Outpost, north of Baggoth\'s Wall. He\'s leading the effort against the Dragonmaw and could use every capable hand we can spare. Head there at once and report in.", + ["O"] = "Report to Mountaineer Steelwind in East Ridge Outpost.", + ["T"] = "The Dragonmaw War", + }, + [41863] = { + ["D"] = "They\'re everywhere.$B$BOn the roads, in our old fortresses, in the caves, and scattered throughout the hills. Every caravan needs a dozen mountaineers just to reach its destination—and even then, the Dragonmaw strike more often than not.$B$BThis is a disgrace to Baggoth\'s memory... and a stain on my own honor.$B$BWe\'ve endured enough. It\'s time the Dragonmaw learned that the dwarves of the Grim Reaches will not tolerate this humiliation any longer.$B$BWe strike back. We ambush them. We show them who truly rules these mountains.$B$BSlay as many as you can, and bring me twenty of their sigils as proof. Let them know what it means to cross a Wildhammer.", + ["O"] = "Slay Dragonmaw Orcs in the Grim Reaches and bring Mountaineer Steelwind 20 Dragonmaw Sigils as proof of your victories.", + ["T"] = "The Dragonmaw War", + }, + [41864] = { + ["D"] = "There\'s one thing I can\'t abide — leaving behind the banner of a true dwarven hero.$B$BWhen the Dragonmaw overran Baggoth Rampart, we were forced to retreat faster than I\'d care to admit. In the chaos, our standard — the personal banner of Commander Baggoth himself — was left behind atop the central tower.$B$BIt\'s more than just a piece of cloth. That banner stood through a dozen battles and carries the pride of every dwarf who served beneath it. Letting it remain in orcish hands is an insult we can\'t stomach.$B$BClimb the rampart, fight your way through the Dragonmaw scum, and retrieve that banner. Bring it back in one piece. For Baggoth. For the Reaches.", + ["O"] = "Recover the Banner of Baggoth from the top of Baggoth Rampart and return it to Mountaineer Steelwind.", + ["T"] = "The Dragonmaw War", + }, + [41865] = { + ["D"] = "You\'ve proven yourself more than capable, and now it\'s time we strike a real blow.$B$BTo the north lies Stolgaz Keep — or what\'s left of it. It was once a proud outpost, built stone by stone by the hands of dwarves who knew the meaning of endurance.$B$BNow it\'s nothing but a shattered ruin, crawling with Dragonmaw filth. But don\'t let its current state fool you — the keep still holds strategic value. We take it back, and we\'ve got a foothold to push further into the hills.$B$BI need you to lead the charge. Get in there and cut them down. Slay twelve Dragonmaw Invaders, ten Renegades, and ten of those blasted Flamebinders. $B$BAnd one more thing — their leader, a brute called Grathok Flamehand, commands the warband from the keep\'s inner sanctum. That orc\'s responsible for the destruction of the barracks and the burning of our supply stores.$B$BEnd him. For the fallen. For Stolgaz.", + ["O"] = "Slay 12 Dragonmaw Invaders, 10 Dragonmaw Renegades, 10 Dragonmaw Flamebinders, and the warband leader, Grathok Flamehand.", + ["T"] = "The Dragonmaw War", + }, + [41866] = { + ["D"] = "The Redbrand family holds sway across much of Khaz Modan—my father, Nazgrim, intends to make sure people are reminded of that.$B$BHe wants us to help out the folk here in Dun Kithas, lend a hand to the war effort and all that. Only trouble is... I\'m not exactly the fighting type.$B$BStill, it wouldn\'t hurt if word got around that I, Garlin Redbrand, made a real contribution to the cause.$B$BNorth of here lies Geth\'kar, a Dragonmaw fortress that\'s become a serious thorn in the Wildhammer\'s side. More importantly, it\'s their main supply depot. If you could sneak in and steal some of their supply crates—say, eight of them—it\'d do real damage to their war effort.$B$BAnd, well... let\'s just say it\'d look good for the Redbrand name, too.", + ["O"] = "Steal 8 Dragonmaw Supply Crates from Geth\'kar and return them to Garlin Redbrand.", + ["T"] = "Assault on Geth\'kar", + }, + [41867] = { + ["D"] = "Ever since my team and I set foot in the Grim Reaches, I\'ve had this nagging feeling in the pit of my stomach. There\'s something wrong with this place—something unnatural. The land itself feels... sick. The trees, the beasts, even the wind—it\'s all touched by a strange corruption.$B$BWorse yet, I\'ve seen it take shape. These oozes—shadowy, vile things—are crawling out of the hills like infection from a wound. Wherever they go, they spread that same rot to the land around them.$B$BI need to understand what we\'re dealing with here. If you come across any of those oozes, would you mind… collecting some samples for me? Just, uh, try not to get any on yourself. I\'ll make it worth your while.", + ["O"] = "Collect 5 Shadow-Cursed Samples from corrupted oozes and bring them to Dorthas Read.", + ["T"] = "Blemishes on the Land", + }, + [41868] = { + ["D"] = "We didn\'t just throw our tents down wherever the wind took us. There\'s a reason we\'re here.$B$BRight behind us is an old cave—more like a tunnel, really. And where does it lead? Grim Batol. Or what\'s left of it. Don\'t panic, though—the main city is blocked off. The deeper halls collapsed ages ago. What we can reach is just some forgotten outpost, part of the outer ruins.$B$BWe tried poking around, but didn\'t get far. Wraiths drove us back—Wildhammer spirits, probably fallen during the Battle for Grim Batol. Only… something\'s off about them. They\'re not just restless. They\'re tainted, like those oozes you found.$B$BI need more proof. If you\'re willing to head down there, put those spirits to rest and bring me back anything you find—samples, cursed residue, anything—I think we\'ll finally be able to piece together what\'s going on here.", + ["O"] = "Collect 10 Shadow-Cursed Residuum from corrupted wraiths in the outpost tunnels near Grim Batol.", + ["T"] = "Shadow Curse", + }, + [41869] = { + ["D"] = "Bah! May the Twisting Nether take the magistrate and their damn excuses!$B$BAll they care about are the bloody Dragonmaw orcs, while those Grimscale beasts run wild and tear through travelers like straw dolls.$B$BThey stood by while my only boy was torn apart out there. My son. Dead—because they sat on their hands.$B$BI can\'t bring him back... but I sure as stone can stop this from happenin\' to another dwarf\'s kin.$B$BGo out into those hills. Hunt down eight of those Grimscale Raptors and their screechin\' cousins. Cut \'em down, every last one. Then come back to me, and we\'ll see if there\'s still some justice left in this world.", + ["O"] = "Slay 8 Grimscale Raptors and 8 Grimscale Screechers for Harfig Irombrow in Dun Kithas.", + ["T"] = "Death to Grimscale", + }, + [41870] = { + ["D"] = "So... you cut down the little ones. Good. But that was just the start. Just the bloody surface.$B$BThe real nest—where they get big, strong, and deadly—is up north of Lake Kithas. A blasted plateau up there, crawling with the worst of \'em. Grimscale Thrashers. Vicious, clever, fast as lightning. That\'s where they breed. That\'s where the heart of this filth festers.$B$BThe magistrate calls it a natural cycle. Bah! There\'s nothing natural about watching your boy scream as beasts tear him to pieces while you\'re too far to do a damn thing!$B$BIf you wipe enough of them out, maybe—just maybe—the mountain patrol will get their heads out of their arses and finish the job.$B$BSlaughter them. Do it for me. Do it for my lad. Do it so no other dwarf has to bury their own flesh and blood.$B$BI\'d ride with you if I could, but these old bones can barely swing a tankard, let alone a blade.", + ["O"] = "Slay 14 Grimscale Trashers for Harfig Irombrow in Dun Kithas.", + ["T"] = "Grimscale Revenge", + }, + [41871] = { + ["D"] = "Aye, a new face in Dun Kithas!$B$BWelcome to our mountainhome. It may not be as grand as Grim Batol, but don\'t let the modest stone fool you—we dwarves here are as sturdy and proud as the mountains themselves.$B$BStill... things haven\'t been easy of late. The Dragonmaw orcs have returned in full force, and while our warriors are as strong as any to swing a hammer, we\'re sorely outnumbered.$B$BMagistrate Hurdam Toughhand is leading our efforts. He\'s ordered any able-bodied adventurer—such as yourself—to report directly to him. You\'ll find him in the Magistrate\'s Hall, just up the path behind me. Big stone building, hard to miss. He\'s usually on the bottom floor, in the Council Hall.$B$BGo on then, lad. Dun Kithas could use another strong arm.", + ["O"] = "Report to Magistrate Hurdam Toughhand in the Magistrate building in Dun Kithas.", + ["T"] = "Preparations for War", + }, + [41872] = { + ["D"] = "Baggoth\'s Wall stands! But let me tell ye, it ain\'t standin\' on full bellies…$B$BThis war with the Dragonmaw dogs has been hard on our folk. The countryside\'s crawling with threats, and our farmers—gods bless \'em—are holed up in Dun Kithas, their fields left fallow.$B$BWe\'ve been gnawin\' on roots, berries, and tough old legumes for months! And let me tell ye—this is no diet for a proper dwarf. I need a solid boar flank, roasted slow in beer, with thick-cut bread and butter to soak up the drippin\'s…$B$BAhem! But more than cravings, it\'s morale. My lads on this wall fight day and night, and they haven\'t seen meat in weeks. We can\'t leave our posts, but you… you look like you\'ve got strong legs and a good aim.$B$BGo into the hills and bring back fresh Stonehide Boar Flanks. The wall and Dun Kithas both will thank ye for it.", + ["O"] = "Bring 15 Stonehide Boar Flanks to Mountaineer Lightboots. He is stationed at the Baggoth\'s Wall.", + ["T"] = "Provisions for War", + }, + [41873] = { + ["D"] = "$B$BShe tells me to stay here, yes. She tells me to stay.$B$BMagistrate... they want to take her from me.$B$BI won\'t leave, no. I will keep her safe. Yes.$B$BI hear voices. Oh, I hear them.$B$BThey tell me to stay.$B$BI must.$B$BI will.", + ["O"] = "Find anyone in Dun Kithas who would be interested in this journal.", + ["T"] = "Brangar\'s Journal", + }, + [41874] = { + ["D"] = "Stolgaz Keep… now there\'s a name that stirs the embers of old pride and fresh grief.$B$BOnce a proud bastion of the Wildhammer, the Keep held a critical position in the defense of the Grim Reaches. But that was before the Dragonmaw Orcs overran it. It has stood in enemy hands for years now—bastardized, defiled, but still standing.$B$BWhat truly pains me isn\'t just the loss of the fortress… it\'s what was inside. The Keep housed some of our most precious historical records. Lineages, royal decrees, journals of heroes long gone—entire volumes chronicling the rise of our people.$B$BNow, I doubt the Dragonmaw have the wit or care to destroy books. They likely don\'t even realize what they\'ve taken. If you manage to reach the inner halls of Stolgaz, keep your eyes open. Any volume you retrieve could restore a piece of our history.$B$BYou do that, and I\'ll make sure you\'re well compensated.", + ["O"] = "Recover 6 Wildhammer Archive Books from Stolgaz Keep and return them to Sorgan Trustgrip in Dun Kithas.", + ["T"] = "The Lost Archives", + }, + [41875] = { + ["D"] = "Baggoth\'s Wall has stood through more Dragonmaw assaults than I care to count. But stone doesn\'t mend itself, and after years of siege and neglect… she\'s beginning to give.$B$BCracks run along the battlements, mortar has crumbled, and I\'ve seen a goblin cannonball punch straight through one of the parapets. And to make things worse, stone shipments from the south are delayed—as always.$B$BBut the Reaches have always been built on bones of the past. Ruins of old dwarven strongholds and watchposts lie scattered across the region, their bricks still strong beneath moss and mud. With some work, they\'ll serve just fine to patch the wall.$B$BFind any sturdy bricks or carved stones you can. Old ruins, abandoned outposts, even collapsed keeps—gather whatever can be repurposed. Every stone you bring helps keep Dragonmaw blades out of Dun Kithas.", + ["O"] = "Collect 20 Stone Bricks from ruins across Grim Reaches and return them to Mountaineer Lightboots at Baggoth\'s Wall.", + ["T"] = "Repairing Baggoth\'s Wall", + }, + [41876] = { + ["D"] = "Welcome to Slatebeard\'s Forge—where the sparks fly, the hammers sing, and the steel holds the line.$B$BWe\'ve been outfitting mountaineers here for generations. Armor, axes, crossbow bolts—every piece forged with pride. But lately… pride won\'t keep the forge hot. The war effort demands more than we can handle, and we\'re nearly out of iron.$B$BNormally I\'d send my son down to Dun Kithas to fetch an update on the next ore shipment. But I\'ve barely had time to breathe, and he\'s hammering like a madman as it is.$B$BWould you do us a kindness? Head to Dun Kithas and ask Magistrate Toughhand when we can expect more ore from the Sal\'Galaz mines. If it doesn\'t come soon, we\'ll be pounding steel with spoons…", + ["O"] = "Speak with Magistrate Hurdam Toughhand in Dun Kithas regarding the iron ore shipment for Slatebeard\'s Forge.", + ["T"] = "Ore Must Flow", + }, + [41877] = { + ["D"] = "Even if we manage to reclaim the Sal\'Galaz mines—which, mind you, I am working on—it\'ll take weeks for our miners to clear the tunnels, restore the scaffolds, and resume regular ore shipments.$B$BAnd we don\'t have weeks. Every moment lost is another sword unsharpened and another shield left unrepaired.$B$BIt\'s time I called in an old favor.$B$BThere\'s a dwarf back in Ironforge—Lord Nazgrim Redbrand. A powerful name, I know. But he owes me, and more importantly, he commands the ear of the Miners\' Guild.$B$BTravel to Ironforge and speak with Nazgrim. Tell him I sent you, and explain our situation. If he helps us, the forge might burn bright again before the week is out.", + ["O"] = "Speak with Lord Nazgrim Redbrand in Ironforge regarding emergency ore supplies for Dun Kithas.", + ["T"] = "Ore Must Flow", + }, + [41878] = { + ["D"] = "The ore will come.$B$BI\'ll have my men in the Ironforge Miners\' Guild reroute a few shipments starting today. Might slow down some other projects, but Dun Kithas needs it more. Hurdam was right to act quickly.$B$BNow go—return to him and tell him that Ironforge stands with Dun Kithas. And let him know this makes us even.", + ["O"] = "Return to Magistrate Hurdam Toughhand in Dun Kithas and inform him of Lord Redbrand\'s support.", + ["T"] = "Ore Must Flow", + }, + [41879] = { + ["D"] = "My father is one of the finest smiths in all of Grim Reaches, and everyone knows it. I\'ve been trying to earn his respect for years, but no matter what I do, it never seems to measure up to what Margella makes. She\'s just… better.$B$BBut I\'ve been working on something special—something that might finally change that. A mace, a true masterwork of mine. It\'s not finished yet, though. It needs something rare, something powerful that will set it apart from every other weapon on the wall.$B$BI\'ve heard that deep below the Stormwrought Ruins on Balor, there are glowing red crystals—Stormwrought Crystals. They\'re said to carry incredible power, and if I could set one into the mace\'s head, it might finally prove that I\'m a worthy smith too.$B$BIf you\'re headed to Balor, could you bring one back for me?", + ["O"] = "Find a Stormwrought Crystal for Grukson Slatebeard at Slatebeard\'s Forge.", + ["T"] = "Crystal Clear Impression", + }, + [41880] = { + ["D"] = "The time has come for us to strike at the heart of the Dragonmaw presence in the Grim Reaches.$B$BZarm\'geth Stronghold lies in the northern wilds — a fortress carved from stone and iron, bristling with traps, walls, and orcs of the deadliest kind. Elite warriors, battle-hardened champions, and no doubt their cruel leader command from there.$B$BThis will not be a fight for one man alone. You\'ll need comrades at your side if you hope to break their lines and claim victory.$B$BYour target is clear: kill ten Dragonmaw Elite and ten Dragonmaw Champions. Slaying so many of their elite warriors will no doubt break their spirit.$B$BBring them down, and you strike a blow that will echo through the mountains.", + ["O"] = "Slay 10 Dragonmaw Elite and 10 Dragonmaw Champions in Zarm\'geth Stronghold.", + ["T"] = "The Dragonmaw War", + }, + [41881] = { + ["D"] = "Now, we\'ve got meat in our bellies… but meat alone doesn\'t hold a line. What we really need is bread—long-lasting, filling, proper dwarven food.$B$BThere might be a solution, but it\'s a risky one…$B$BFar to the northeast lies Brangar\'s Farmstead. Well—what\'s left of it. Folks call it Brangar\'s Folly now. Brangar was once the richest farmer in all the Grim Reaches, owner of endless golden fields.$B$BWhen the Dragonmaw came, he refused to leave. Said he\'d die before giving up his land. And so he did.$B$BSome say he went mad in those final days… others whisper he was hiding something darker. I don\'t put much stock in tales—but one thing\'s for sure: no one\'s claimed the grain in his granaries. And if any of it\'s still good, we\'ll put it to use before the rot or worse takes it.$B$BHead out there and see what you can find. Ten crates of grain should be enough to get a proper stockpile going.", + ["O"] = "Recover 10 Brangar\'s Grain Crates from Brangar\'s Folly and return them to Mountaineer Lightboots at Baggoth\'s Wall.", + ["T"] = "Brangar\'s Folly", + }, + [41882] = { + ["D"] = "After all the blood spilled and steel swung, there\'s but one thing left to do—bring word of our hard-won victories to the Magistrate in Dun Kithas.$B$BI can think of no finer $r to carry this honor than you, friend. It\'s by your hand and the strength of your kin that we struck the Dragonmaw down and protected the Grim Reaches—for now, at least.", + ["O"] = "Report to Magistrate Hurdam Toughhand in Dun Kithas.", + ["T"] = "The Dragonmaw War", + }, + [41883] = { + ["D"] = "A worn letter is discovered upon Zuluhed\'s Corpse. It appears to be addressed to him, and written in a coarse handwriting which reads:$B$B", + ["O"] = "Bring the letter to someone of high authority in Grim Reaches.", + ["T"] = "Letter from Korlag Doomsong", + }, + [41884] = { + ["D"] = "This letter confirms some of the rumors that have been circulating, the Dragonmaw Clan was not fully united.$B$BNow that Zuluhed has been slain there is only one that stands in contention for chieftain, Commander Korlag Doomsong. We dwarves have been at odds with the Dragonmaw for longer than we can remember, and now it is time to strike the final blow. Gather what allies you can, and travel northward into the depths of Zarm\'geth Stronghold, it is there you will find Korlag Doomsong, and the last leader of the Dragonmaw. Kill him, and free us from this perpetual war!", + ["O"] = "Slay Korlag Doomsong within Zarm\'geth Stronghold and bring his head to Magistrate Hurdam Toughhand at Dun\'Kithas within Grim Reaches.", + ["T"] = "Destruction of the Dragonmaw", + }, + [41885] = { + ["D"] = "$B$BThey\'re out there… waiting. Teeth like daggers, eyes like cursed pearls! You think it\'s safe to fish in Lake Kithas? You\'d be wrong! Dead wrong!$B$BThose blasted razortooth crocolisks keep snapping at me lines—nearly took me hand off last week! They ain\'t just fishing hazards, they\'re monsters, I tell ye!$B$BYou\'ve got a weapon, haven\'t ye? Go into that cursed lake and take down a few of them. Eight should make the rest think twice before messing with Nudrew again.$B$BI\'ll make it worth your while, promise! And if I don\'t—well, the crocs will get me before the guilt does!", + ["O"] = "Slay 8 Razortooth Crocolisks in Lake Kithas and return to Fisherman Nudrew.", + ["T"] = "Chompers in the Water", + }, + [41886] = { + ["D"] = "Listen, I don\'t scare easy… but there\'s something wrong with Grim Hollow. The air\'s thick, the trees creak even when there\'s no wind, and I swear the shadows move when you\'re not looking.$B$BAnd the spiders—by the Stone, the spiders. Not your usual cave-crawlers, mind you. These are big, and they\'ve got a hunger in their eyes. Greater Brown Recluses, they\'re called, and they\'re swarming the swamp trails like they own the place.$B$BIf we don\'t thin their numbers, we\'ll be webbed up in our sleep. You look like you\'ve got some steel in you—go out there and take care of at least twelve of the beasts. I\'ll be here… keeping an eye on the perimeter.", + ["O"] = "Slay 12 Greater Brown Recluses in the swamps of Grim Hollow.", + ["T"] = "Creeping Trouble", + }, + [41887] = { + ["D"] = "If you are seeking to gain knowledge of our most vital and rare elixirs then you have come to the right place. For your efforts upon Hyjal, I could bestow upon you the knowledge of my forebearers. Concoction of the Emerald Mongoose is a rather potent and powerful alchemical mixture.$B$BIt could be used to turn the tide of a conflict in your favor.", + ["O"] = "Gather 25 Bright Dream Shards for Evandil Nightwind at Nordanaar in Hyjal.", + ["T"] = "The Recipe of Concoction of the Emerald Mongoose", + }, + [41888] = { + ["D"] = "Our scouts have reported increased movement within enemy strongholds - Lower Karazhan Halls, Zul\'Gurub, and Ahn\'Qiraj.$B$BWe need proven champions to cut through these nests of corruption and return with proof of their deeds. Bring me Crests of Heroism, earned only through triumph over these formidable enemies.", + ["O"] = "Collect 10 Crests of Heroism from raid bosses in Lower Karazhan Halls, Ruins of Ahn\'Qiraj and Zul\'Gurub.", + ["T"] = "Call to Arms: Cleansing the Corruption", + }, + [41889] = { + ["D"] = "The very earth below us trembles with rage. Deep within the Molten Core, ancient enemies stir once more. New lieutenants of flame rise in Ragnaros\'s name, threatening to ignite another age of fire.$B$BWe cannot allow them to strengthen his forces. Hunt them down. Bring me the proof of their destruction: a molten scale from Incindis, and the signet ring torn from the hand of the Sorcerer-Thane himself. Let all who serve the Firelord know: the Alliance does not burn.", + ["O"] = "Collect Molten Scale from Incindis and Signet of Thaurissan from Sorcerer-Thane Thaurissan in the Molten Core.", + ["T"] = "Call to Arms: Molten Assault", + }, + [41890] = { + ["D"] = "The threat beyond the gates only grows bolder. Our scouts report increased aggression and coordination among enemy commanders within their most fortified dungeons.$B$BWe strike now, while they remain overconfident. Bring me the Crests of Valor taken from their fallen leaders. Show them that the Horde does not hesitate — we crush those who stand against us.", + ["O"] = "Collect 25 Crests of Valor from dungeon bosses.", + ["T"] = "Call to Arms: Dungeon Delving", + }, + [41891] = { + ["D"] = "Our scouts have reported increased movement within enemy strongholds - Lower Karazhan Halls, Zul\'Gurub, and Ahn\'Qiraj.$B$BThese places seethe with dark magic and ancient threats. We need proven champions to strike deep, cleanse the corruption, and return with trophies of conquest. Bring me Crests of Heroism, earned only through triumph over these formidable enemies.", + ["O"] = "Collect 10 Crests of Heroism from raid bosses in Lower Karazhan Halls, Ruins of Ahn\'Qiraj and Zul\'Gurub.", + ["T"] = "Call to Arms: Cleansing the Corruption", + }, + [41892] = { + ["D"] = "The very earth below us trembles with rage. Deep within the Molten Core, ancient enemies stir once more. New lieutenants of flame rise in Ragnaros\'s name, threatening to ignite another age of fire.$B$BWe cannot allow them to strengthen his forces. Hunt them down. Bring me the proof of their destruction: a molten scale from Incindis, and the signet ring torn from the hand of the Sorcerer-Thane himself. Let all who serve the Firelord know: the Horde does not burn.", + ["O"] = "Collect Molten Scale from Incindis and Signet of Thaurissan from Sorcerer-Thane Thaurissan in the Molten Core.", + ["T"] = "Call to Arms: Molten Assault", + }, + [41893] = { + ["D"] = "", + ["O"] = "Bring the Ancient Wildhammer Tome to someone who may find use of it.", + ["T"] = "The Ancient Wildhammer Tome", + }, + [41894] = { + ["D"] = "You there, looking to help an aspiring exiled downtrodden goblin regain some of his lost riches and make his way back properly into the DLU?$B$BWell, it looks like you may have stumbled into the right place. I\'ve been assigned to this backwater as a punishment for mucking up some of the operations on Blackstone Island...$B$BThat\'s the last thing I want to get into- look, I need you to pull a heist for me. Down to the southwest and across the river is the main Wildhammer town of Dun Kithas. Overlooking its eastern cliff-face is a small workshop dedicated to repairing broken steamtanks. I need you to get in, recover a \'Chromatic Servo-Motor\' and bring it to me. My source says there should be one lying around somewhere.", + ["O"] = "Recover a Chromatic Servo-Motor from the repair yard of Dun Kithas for Razzo Copperfume at his camp just south of Shatterblade Post in the Grim Reaches.", + ["T"] = "The Chromatic Servo-Motor", + }, + [41895] = { + ["D"] = "The local Forest Spiders have been seen creeping around Elwynn for what seems like an eternity. Their ichor has always fetched a pretty penny and I know someone who is looking for some. You can find them all around Goldshire itself, lurking both to the south, and to the west.$B$BBring me 3 Forest Ichor, and I shall reward you with a handsome price!...a handsome price.", + ["O"] = "Gather 3 Forest Ichor from the local Forest Spiders around Elwynn Forest for Remy \"Two Times\" in Goldshire.", + ["T"] = "Forest Ichor Exchange", + }, + [41896] = { + ["D"] = "I be hearing of a dark and magical corruption gripping the far away lands of the Grim Reaches on the far edges of the Eastern Kingdoms. A murloc tribe going by the name \'Miregill\' has been corrupted by the intense dark magic that has been rotting the land itself...$B$BI be seeking to harness this magic, and use it as a ward to protect myself from the shadow. Travel there, and gather from the murlocs of the corrupted swamps their fins, once they are collected, bring them to me.", + ["O"] = "Gather 6 Corrupted Miregill Fins from the murlocs in the Grim Hollow for Selja at Shadowprey Village in Desolace.", + ["T"] = "The Shadowed Hollow", + }, + [41897] = { + ["D"] = "The threat beyond the gates only grows bolder. Our scouts report intensified activity among the commanders of the enemy forces. We must take the fight to them.$B$BStrike down their leaders, recover their crests, and bring them back to me. Show them that we do not falter. Show them the might of the Alliance.", + ["O"] = "Collect 25 Crests of Valor from dungeon bosses.", + ["T"] = "Call to Arms: Dungeon Delving", + }, + [50000] = { + ["D"] = "Professor Malkovich is an old friend of mine. He told me to send him someone interested in anatomy.$B$BFind him at the bottom of the Apothecarium in Undercity.", + ["O"] = "Talk to Professor Malkovich at the bottom of the Apothecarium in Undercity.", + ["T"] = "Professor Malkovich", + }, + [50002] = { + ["D"] = "Being an undead for so long has made me forget some things about human anatomy. Since we have an annoying specimen in the room next to us, how about you get rid of him and bring me his head? That way I can study it without him screaming. Don\'t worry, he\'s already out of the cage.$B$BBy the way, I will show you how to disguise as a human if you bring me his head in good conditions.", + ["O"] = "Get rid of the Annoying Peasant and bring his head to Professor Malkovich.", + ["T"] = "The Human Anatomy", + }, + [50003] = { + ["D"] = "Professor Papucho is an old friend of mine. He told me to send him someone interested in anatomy.$B$BFind him somewhere inside The Forlorn Cavern in Ironforge.", + ["O"] = "Talk to Professor Papucho somewhere inside The Forlorn Cavern in Ironforge.", + ["T"] = "Professor Papucho", + }, + [50004] = { + ["D"] = "Pssst… I\'ve got a task for you, $C. Look behind me. I found this drunk orc spyin\' around Ironforge and captured him, see? But I want to get a little “creative” with my payback. Bring me his head in good condition and I\'ll show you somethin\' very worth your while.", + ["O"] = "Kill the Stupefied Orcish Peon and bring his head to Professor Papucho.", + ["T"] = "The Orcish Anatomy", + }, + [50005] = { + ["D"] = "This magic is potent, but without the proper mechanical understanding of locks, you won\'t be able to open the most difficult locks in this world...$B$BPerhaps a talented rogue or master thief could help you with your dilemma. Rumors tell of a haven for rogues, assassins, and black operatives holed away between the mountains in northern Hillsbrad Foothills. No doubt such a service will not come cheap, however.", + ["O"] = "Find Ol\' Biggins in the Ravenholdt Manor and pay him 3 gold coins for his tutelage.", + ["T"] = "In Need of Ol\' Biggins", + }, + [50006] = { + ["D"] = "Do you remember Ol\' Biggins? My friend who lives in the Ravenholdt Manor, hidden between the mountains in the northern part of Hillsbrad Foothills? He will help you again with your learnings in exchange of more gold.", + ["O"] = "Find Ol\' Biggins in the Ravenholdt Manor and pay him again to help you with your learnings.", + ["T"] = "In need of Ol\' Biggins. Again.", + }, + [50227] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Strangely Giant Egg", + }, + [50230] = { + ["D"] = "Come here, adventurer!$B$BI see that you are a capable person so I\'ll teach you something useful since fate brought us together.$B$BYou could benefit from out here in the jungle!$B$BIf you bring me a tight rope from Jaquilina there, some oil from the goblins of Booty Bay and a thick club you will find around the camp, then I will let you in on a unique way on how to construct a proper torch in no time that you could use in your travels for either a night\'s exploration or to safeguard yourself against wild animals.$B$BSee the ones near our camp? They never go out!", + ["O"] = "Bring a rope from Jaquilina, oil from Booty Bay and a club from around the camp to Nesingwary\'s Expedition for S. J. Erlgadin.", + ["T"] = "[Deprecated] Night\'s Exploration", + }, + [50305] = { + ["D"] = "What now? Ah, it\'s you again. What eggs?$B$BOh, right. Tail lashers. So you want to cook something else besides eggs? I guess I can teach you something.$B$BDo you know where the Southfury River ends its course? This is where you\'ll have to go. Why? I\'m intending to heighten the stakes here, whelp! Get me those crocolisks\' meat and I\'ll teach you how to cook it properly! You\'ll find them all over the river so you better get movin\' right away!", + ["O"] = "Bring 8 Crocolisk Meat to Cook Torka in Razor Hill.", + ["T"] = "Higher Stakes", + }, + [50310] = { + ["D"] = "Ey, kid! Yes, you! I see you\'re an adventuring type and ready to jump into any fray if only there\'s one to jump into, right? Just as I thought. What? Of course there\'s a reward involved, how else could it be around here? It\'s a Mirage Raceway after all!$B$BWhat to do? Oh, that\'s so simple, I\'m sure that even a gnome would manage to test our jolly vehicle on the sustain for … errh, durability conditions! Yes! So, if you\'re ready to earn some coins and crack some scorpids flat then you\'re at the right spot, kid! What helmet? Instruction? Bah! Who needs\'em anyway?!$B$BYes, you might want to talk to our charming Dolores to register for the test race, $N.$B$BLet\'s blast it!", + ["O"] = "Find Dolores and ride a goblin race car to see if it survives the start at all.", + ["T"] = "Goblin Engineering At Its Finest!", + }, + [50311] = { + ["D"] = "Oh, so nice you\'re alive and back in one piece! I had no doubts in you, of course.$B$BSo you\'re ready for another run on our goblin engineering masterpiece, eh? Well then if you know the drill you better get ready and take the first place yet again!", + ["O"] = "Find Daisy and complete the lap with best time.", + ["T"] = "Mirage Raceway: Goblin\'s Team", + }, + [50312] = { + ["D"] = "I am sure that you\'re very well aware of the fact about us, gnomes, we\'re the best inventors. Assuming you\'re striving to improve your skills and knowledge you will eventually be considered to study from us. Obviously, no gnome is that stupid to decline this intriguing and exciting partnership, alas it might be costly sometimes.$B$BSpeaking shorter; we need someone to compliment our natural resourcefulness of brain activity with their muscle and durability!$B$BIf you successfully ride this awesome masterpiece of gnomish engineering any other dimwit goblin would simply call a race car then you will be granted an opportunity to represent our bright society of inventors even further in Mirage Races!$B$BCool, right?$B$BWell, here\'s the instructions we\'ve specifically designed for other races for better understanding and comprehension.$B$BYes, you might want to talk to our charming Dolores to register for the test race, $N.$B$BGood luck, sentient one!", + ["O"] = "Find Dolores and ride a gnome race car to see if it survives the start at all.", + ["T"] = "Gnomes Are Genuine Inventors", + }, + [50313] = { + ["D"] = "Salutations, sentient one! We\'re very much satisfied with the results you have achieved with the test drive for our mechanical engineering device and proved to be very useful for providing us so much needed data for analysis. We\'re ready to allow you continuous partial involvement with our research team and have agreed on supplying you for your efforts.$B$BWhen you\'re ready to proceed with data gathering be sure to remember the instructions provided and safety measures recommended.$B$BHave a great day!", + ["O"] = "Find Daisy and complete the lap with best time.", + ["T"] = "Mirage Raceway: Gnome\'s Team", + }, + [50315] = { + ["D"] = "Come, come, get your copy of the latest issue of Gadgetzan Times! Here you\'ll find out really breaking news!$B$BWhat? Oh, the news are … breaking!$B$BVery soon on the Shimmering Flats, which is in the Thousand Needles as you know, two most adventurous and most intelligent teams will compete in a captivating race, best known throughout the universe as THE MIRAGE RACES!", + ["O"] = "Grab the Gadgetzan Times Issue #1!", + ["T"] = "Gadgetzan Times: BREAKING NEWS!", + }, + [50316] = { + ["D"] = "Hahahah! Did you see their faces?! Simply outstanding job, my friend!$B$BNow now, no need to be shy, you did explicitly well and I\'m sure you\'ll be able to do even better with race against time!$B$BPretty simple task. You hop in, press the accelerator and fly away to beat the best lap!$B$BGiven you don\'t hit any sheep, lost your track or stopped whatsoever you\'ll be able to win!$B$BPrize? Of course, there are some prizes, of course. Worry not.", + ["O"] = "Finish the Race with best time and come back to Daisy at Shimmering Flats to collect your reward.", + ["T"] = "Race Against Time!", + }, + [50318] = { + ["D"] = "While it\'s great we all gather around finely decorated pine here there is a serious trouble coming up for all the wild creatures out there. As you know, the whole ecosystem we live within might be easily corrupted with some species out of the scene to do their part of work everyone is trying to uphold.$B$BI\'m talking about moonkins. If you\'re still uninformed then it\'s crucial we have them saved. What do you mean \"how\"?!? Young moonkins will be freezing to death this winter if we don\'t do someth... I know!$B$BBring them our festive Egg Nog to make\'em warm. Hugs will also do but you bring them Egg Nog in the first place! Where you get it? Well, I\'m sure there\'s a recipe we had somewhere nearby…", + ["O"] = "Bring festive Egg Nog to 15 moonkins to make them warm.", + ["T"] = "Bracing The Inevitable", + }, + [50319] = { + ["D"] = "Throw a snowball at player of every listed class during the Feast of Winter Veil.", + ["O"] = "The peace was never an option!", + ["T"] = "Snowball Wars: Episode I", + }, + [50320] = { + ["D"] = "Throw a snowball at player of every listed class during the Feast of Winter Veil.", + ["O"] = "The peace was never an option!", + ["T"] = "Snowball Wars: Episode II", + }, + [50321] = { + ["D"] = "Tinsel Lost-Gloves am I, my favorite gloves were stolen, oh why can I not cry?! Of the thieves, I have a list of names long, punish them with frozen fury, for they have done wrong! Is this legal, you may ask? I shall make it so, and quite fast! Do this for me, and for you I shall prepare a friendly little tree!", + ["O"] = "Help Tinsel Lost-Gloves take revenge upon the thieves who have stolen his favorite gloves!", + ["T"] = "The Icy Menace", + }, + [50322] = { + ["D"] = "Kill Vipel.", + ["O"] = "Recently a vile criminal was sighted with actions uspeakably evil and such actions must be punished! On behalf of Military forces and royalty combined we issue an order for this person elimination.There is a just reward for those brave enough to slay the criminal in question.Name is: Vipel.Reward: 250 Reputation points.", + ["T"] = "WANTED: Vipel!", + }, + [50323] = { + ["D"] = "Kill Illusory.", + ["O"] = "Recently a vile criminal was sighted with actions uspeakably evil and such actions must be punished! On behalf of Military forces and royalty combined we issue an order for this person elimination.There is a just reward for those brave enough to slay the criminal in question.Name is: Illusory.Reward: 250 Reputation points.", + ["T"] = "WANTED: Illusory!", + }, + [50326] = { + ["D"] = "Grizzlore - me! I want more booze! $B$BThunder… …brew! Lager… $B$BGrimbooze brews it well. You go there. Westfall! ", + ["O"] = "Acquire Thunderbrew Lager from Grimbooze Thunderbrew in Westfall or Innkeeper Karakul in Swamp of Sorrows for Grizzlore.", + ["T"] = "Grizzlore Wants Thunder", + }, + [50328] = { + ["D"] = "Hey there, pretty sweet cheeks! Wouldn\'t you like to have some real fun with jolly Holly right here, my dear? $B$BOf course you would, I can see that in your eyes right there. But … you do know that there\'s an ultimate intimate fun is about to follow, don\'t you? Good sweet brews and drinks!$B$BBest way to have some jolly fun with Holly!$B$BNow, drink up and do me … a good long sweety dance, my li\'l marmelade! Haha!", + ["O"] = "Get smashed with Holly and after that /dance with her.", + ["T"] = "Jolly Holly Dances Prolly", + }, + [50330] = { + ["D"] = "Gremm is a warrior. Me task is protect. Winter Veil Vale is in danger.$B$BBig bad wolf is danger to the village. He attacks every few days. $B$BYou look like a hero! You can help! Find more gud warriors! Attack Snowball while he sleep! He\'s down there.", + ["O"] = "Defeat the Great Direwolf Snowball to the south from Winter Veil Vale.", + ["T"] = "Peace Comes at a Price", + }, + [50331] = { + ["D"] = "Kill Aristoxenus.", + ["O"] = "Recently a vile criminal was sighted with actions uspeakably evil and such actions must be punished! On behalf of Military forces and royalty combined we issue an order for this person elimination.There is a just reward for those brave enough to slay the criminal in question.Name is: Aristoxenus, Human, Level 60.Reward: 250 Reputation points.", + ["T"] = "WANTED: Aristoxenus!", + }, + [50332] = { + ["D"] = "Kill Azteq.", + ["O"] = "Recently a vile criminal was sighted with actions uspeakably evil and such actions must be punished! On behalf of Military forces and royalty combined we issue an order for this person elimination.There is a just reward for those brave enough to slay the criminal in question.Name is: Azteq, Undead, Level 60.Reward: 250 Reputation points.", + ["T"] = "WANTED: Azteq!", + }, + [55000] = { + ["D"] = "Hey, you! Yeah, you!$B$BI got a problem that I need fixing and I\'ll tell ya, it\'s not sitting around waiting to work again by itself, that\'s for sure!$B$BWe\'re living paradise right now, but, you know how goblins work, eventually we\'ll be back on that oil platform, one way or another.$B$BThing is, I got a set of tools up there, from way back in the Venture Co. days. I\'m used to em, see, and the last thing I want is some sea sucker knocking em off into the water to be lost forever.$B$BGo up there, find my tools, and get a few silver, whaddya say, kid?", + ["O"] = "Find Razlik\'s lost tools on the Oil Platform east of the Port.", + ["T"] = "Razlik\'s Tools", + }, + [55001] = { + ["D"] = "Damned, blasted, stupid, good for NOTHING. Isn\'t this just great? It\'s one thing after another with that oil platform, and I\'m a week behind schedule!$B$BIf you don\'t call havin\' two workers get sucked into the ocean and your oil platform over-run by lobsters a nightmare, then I don\'t know where you\'re from pal!$B$BThe oil needs to keep flowing, and if the boss finds out that this has gone on, he\'ll have my head!$B$BMaybe I could blame this on someone, but first things first, get on over there and clear some of those blasted creatures so we can kick that baby into overdrive and start catching up on all the lost work!", + ["O"] = "Kill 5 Makrura Oilclaws and 5 Makrura Threshers at the oil platform east of the Port.", + ["T"] = "[Deprecated] The Oil Stops Flowing", + }, + [55002] = { + ["D"] = "I need you to do me a favor. This crate of trade goods needs to reach Tradesman Laz in Sparkwater Port. I\'d deliver it myself but my good are needed here. I won\'t leave Razor Hill unsupplied. Sparkwater is to the north east, after you exit the canyon just take a right and reach for the shore. You can\'t miss it.", + ["O"] = "Deliver the Sealed Trade Goods to the nearby Port Town of Sparkwater to the north-east of Razor Hill.", + ["T"] = "Supplies to the Port!", + }, + [55003] = { + ["D"] = "As a technician, it\'s our job to keep everythin\' runnin\' ya see? Well, we\'ve run into a small problem, and by a small problem, I mean a big problem!$B$BThe Oil from the platform isn\'t coming in and we\'re barely making due with what we got! That and we\'re gonna run outta barrels of the juice soon.$B$BBut, I got an idea anyway. There\'s a place not far from here to the west called Thunder Ridge, and it\'s got that name for a reason.$B$BThe beasts there pack one HELL of a punch! Get me six of their energized scales, so I can tinker with them as a power source. Now, they\'re not gonna be givin\' you their scales, so use some force!", + ["O"] = "Gather six Energized Scales from Lightning Hides and Thunder Lizards at Thunder Ridge to the west and bring them to Technician Spuzzle in Sparkwater Port.", + ["T"] = "A New Power Source", + }, + [55004] = { + ["D"] = "Hail, it is in times of peace that the body is set to engage within past-times of enjoyment. One such enjoyment for these goblins is that of eating, and eat they do, $R.$B$BAs much as they eat, I am still competing with the others around me, and I\'m hoping to set myself apart.$B$BI have been wanting to experiment with new recipes from around the Barrens, and while I may never get tired of roasted boar meat, there is more I can do to make my food even more alluring.$B$BAll around Sparkwater Port there are Scorpids and Boars. Gather Chunks of Boar Meat and Scorpid Stingers from around the area and I will reward you for the effort.", + ["O"] = "Collect 5 Chunk of Boar Meat and 5 Scorpid Stinger.", + ["T"] = "[Deprecated] Adding a Little Sting", + }, + [55005] = { + ["D"] = "Sneed and I used to be close friends and colleagues back in Kezan, he was a great assistant. But it seems he wasn\'t satisfied with the silver I paid him, and he snatched MY prototype shredder schematic and ran off one night!$B$BNow that we\'re finally settling up here I had time to call in a few favors on where he ended up. He apparently got contracted by some \"Edwin\" guy and that\'s where the trail ran cold.$B$BTime is money, and his time ran out, find him and get back my plans, make him pay for doublecrossing me.", + ["O"] = "Bring the Prototype Shredder X0-1 Schematic to Wrix Ozzlenut.", + ["T"] = "Prototype Thievery", + }, + [55006] = { + ["D"] = "That was almost a disaster. We ran out of oil and almost used all of the power from the thunder lizard scales. What do you mean just work without power?$B$BPal, most things here don\'t have a failsafe when the tap runs dry. Some things don\'t even have an off button!$B$BThis town is a ticking timebomb. It\'ll blow up sky high if the oil platform is destroyed or overrun again, and I plan to have a backup plan.$B$BYou see, I\'ve heard some whispers that the gnomes invented some sort of capacitor that can power entire rigs for hours without end in an emergency, though I also heard Gnomeregan blew up and got radiated, and the capacitor went missing after that. That explains why nobody got their grubby hands on it yet.$B$BVenture there and see if you have any luck finding it, maybe bring your friends too, who knows what lurks down there.", + ["O"] = "Bring the Megaflux Capacitor to Technician Grimzlow.", + ["T"] = "Backup Capacitor", + }, + [55007] = { + ["D"] = "The technicians of Sparkwater are always looking for more methods to optimize and make use of energy sources across Azeroth. We have quite a few people out on the field doing just that!$B$BI got a guy that\'s located in Azshara that I\'d like you to check on. He last was located within Valormok.$B$BJust make sure he\'s doing what I paid him to do. The last thing a goblin likes is wasted gold and wasted potential!", + ["O"] = "Find Gazztoggle Krewpipe in the camp of Valormok in Azshara.", + ["T"] = "Searching for New Methods", + }, + [55008] = { + ["D"] = "Oh, that\'s why you\'re here, yeah...$B$BI\'ve been knee deep in research and tinkering to try and find new methods of power and energy for Sparkwater.$B$BI\'ve ran into a few hiccups, mostly with Frix. He\'s been gone for a few days now and I haven\'t heard anything from him. Worst of all, I sent the guy with the only working Surveying Gear that we had!$B$BLast thing I knew was that he went south-west to the nearby elvish ruins to go take some surveys and readings around the Satyrs in the area. He\'s probably gotten himself killed, or worse, captured!$B$BPlease go find him. If you indeed find his corpse, keep an eye out for the Surveying Gear I sent with him!", + ["O"] = "Find Frix to the south-west by the elvish ruins.", + ["T"] = "Frix\'s Folly", + }, + [55009] = { + ["D"] = "Upon searching the corpse of Frix Tallycog and the surrounding area, you find no sign of the Surveying Gear that you were meant to retrieve. You should report your findings to Gazztoggle Krewpipe.", + ["O"] = "Return to Gazztoggle Krewpipe in Valormok with the bad news.", + ["T"] = "Empty Handed", + }, + [55010] = { + ["D"] = "...Gah! We can\'t waste our time cursing the dumb lout... we have to get this fixed before the higher-ups in Sparkwater find out that I\'ve put the important equipment in his hands.$B$BI\'m willing to bet the Survey Equipment is still around where he died. The Satyrs probably pried it from his hands and are still trying to figure out what the complex goblin machinery is, and I doubt they ever will.$B$BGo back there and dispatch them until you find my Goblin Surveying Gear!", + ["O"] = "Travel to Haldarr Encampment and retrieve the Goblin Surveying Gear.", + ["T"] = "Grabbing the Gear", + }, + [55011] = { + ["D"] = "Not good, not good at all pal! Here I thought we’d be safe and sound under the Horde\'s banner but there\'s rumors coming from Undermine that an old enemy of mine has gotten wind of our location and plans to come knocking!$B$BI don\'t like it, but there\'s this crazy old goblin named Onearm hiding out in Durotar, and if I had to bet money - which I wouldn\'t, I don\'t play with my money - I\'d say he\'s out at Sparkwater.$B$BGive him this piece of paper and sack of coins. I hate to pay someone before they do a job, but this is a special case!", + ["O"] = "Find Grimm Onearm in Durotar.", + ["T"] = "[Deprecated] Employing the Cabal", + }, + [55012] = { + ["D"] = "As you can see, my stupid shredder broke and I miss the parts to fix it! I also lost my wal... means of communication with my people back home!$B$BSo, I gotta ask you to do a quick errand for me, yea?$B$BShould be easy enough. This new place, where Nert said him and the others settled in, should have everything you need.$B$BOh come on, don\'t stare at me like that, YOU need my help more than I need yours, so travelling back there shouldn\'t be too much to ask.$B$BDon\'t worry, I can wait. Just get me some oil flasks, copper tubes and arcane dust, and I will work the rest of the magic.", + ["O"] = "Gather the required items from Sparkwater Port.", + ["T"] = "[Deprecated] Short Five Minute Adventure", + }, + [55013] = { + ["D"] = "With my Shredder fixed I can get back home and grab one of my dearest assistants to come aid the cause back in Sparkwater. Let Blastentom know I am coming, he better get a place for me to sleep ready and some good looking goblin babes.$B$BIt\'s gonna be fun to work on some new projects, yeah, especially if it\'s all against that ugly toad Razdunk, bleh.$B$BOh and do remind him, while I will be helping him, I don\'t owe anything to those Horde bastards!", + ["O"] = " Report back to Nert Blastentom in Sparkwater Port.", + ["T"] = "[Deprecated] Shaking a Cold Arm", + }, + [55014] = { + ["D"] = "Me and Frix had spent quite a bit of our time researching power sources out here in Azshara. and there is some stuff that seemed to pose quite lucrative ventures.$B$BTo the south-west is more ruins, haunted and seemingly guarded by the passed ghosts of Highborne.$B$BI believe these spirits could very well be used as a source of power. You see, their essence is extremely potent. The only problem is, well, to get it from them.$B$BHead there and gather me the ghosts\' essences, and don\'t worry about being moral, they\'ll pass on to whatever fate awaits them!$B$B", + ["O"] = "Head Southwest and gather 8 Intense Ethereal Essences from Highborne Apparitions and Highborne Lichlings.", + ["T"] = "The Ethereal Project", + }, + [55015] = { + ["D"] = "There\'s always new projects popping up, and subsequently turning up worthless!$B$BIt seems this region is cursed, or I am, anyway, with my horrid luck.$B$BFrix is haunting me from the grave, but still, there are a few of our projects that I\'d like to see through.$B$BTo the east lays the ancient Highborne city of Eldarath. Now you won\'t find any friendly elves, but instead twisted versions of them...$B$BNaga occupy almost the entirety of the ruins, it\'s mostly why me and Frix never bothered with pushing this project forward.$B$BNow with you around though, we can finally test it out! Go to the Ruins of Eldarath to the east. Once there, look for small shards of energy known as Eldarath Ley-Shards.", + ["O"] = "Venture to the Ruins of Eldarath and find 5 Eldarath Ley-Shards.", + ["T"] = "The Eldarath Project", + }, + [55016] = { + ["D"] = "Azshara seems hopeless, but for all that\'s failed and everything I\'ve tried out here I still have a few more things left to try.$B$BWithin the region there is a species of hippogryph known as Thunderheads. They can be found all over the area but I\'m looking for the ones with the real power to get the best results!$B$BFar to the north-east near the very edges of the Azshara plateau are Thunderhead Skystormers. Now they\'re really the kingpins of the Thunderheads. Grab me 3 Skystormer Antlers, that\'s where they gotta hold their power.$B$BBring em to me so we can test if they hold any ability for energy.", + ["O"] = "Slay Thunderhead Skystormers for Skystormer Antlers far to the north-east of Azshara.", + ["T"] = "The Skystormer Project", + }, + [55017] = { + ["D"] = "Ahh... It feels good finally having something to report. No doubt Grimzlow is pretty angry, given how long it took me to get back to him!$B$BThe higher-ups in Sparkwater are going to need a report, run it up to them while I continue my work here!$B$BYou\'re going to buy me some time to keep my work up, and keep getting paid!$B$BMaybe I\'ll even get a new assistant that isn\'t as bad as Frix, bless his soul.", + ["O"] = "Take Gazztoggle\'s Report to Grimzlow.", + ["T"] = "Report to Sparkwater!", + }, + [55018] = { + ["D"] = "I have one final project that I am calling The Big Energy Project, it has to do with the gathering of the Blue Dragonflight that has cropped up a while ago around the Lake Mennar to the south-east.$B$BIt\'s not often that dragons get involved with much, but from what I\'ve learned, these blue dragons love their magic!$B$BIf I can get my hand on some dragonkin\'s staff, just think of the possibilities!$B$BThe orcs in Valormok have been talking a little about their presence and a new Lieutenant posted there. It\'s a good thing my long ears were able to hear the little details! Go find this Lieutenant and take his staff, he has to have one! Now, gather up a group of friends, or fellow adventurers, this is gonna be a big operation, not just something you can do alone.", + ["O"] = "Go to Lake Mennar to the south-east and retrieve the Staff of Azsalus from the Lieutenant there.", + ["T"] = "The Big Energy Project", + }, + [55019] = { + ["D"] = "My brother has recently been dispatched out to the far reaches of our strength and posted within the encampment of Stonard.$B$BIt\'s not for me to question the Warchief\'s desires but I still do worry for my bother\'s safety out there, even if he is strong and good of health.$B$BIt has been months since we have last seen one another with all of the deployments, from one to the next, and now the Swamp of Sorrows of all places?$B$BThe only thing that has me at peace is that he had been promoted to a position of some power within the garrison there.$B$BIt\'s good knowing that maybe he is not on the very frontlines and is instead commanding his men.$B$BIt\'s an odd thing to watch a younger brother become more important then you but, well, duty calls and we must all do our part.$B$BPlease find Zuul within Stonard in the Swamp of Sorrows and deliver him this letter.", + ["O"] = "Deliver Rugnar\'s Letter to Zuul in Stonard.", + ["T"] = "Missing Blood", + }, + [55020] = { + ["D"] = "Well, this is a little embarrassing, it seems my embellishments might have gotten to the wrong hands and led before me.$B$BI\'ve always wanted to be more of a success in my brother\'s eyes, and whilst he has made a good living as a trader, I\'ve served Orgrimmar for years only to remain a Grunt.$B$B$B$BI suppose I should come clean, it is honor that dictates I be honest, especially with those of my own kin.$B$BLying to try and make appearances is what Alliance diplomats would do, not the sons of Durotar.$B$BAs much as I desire to go and apologize in person, I cannot. I have too many tasks to do in such a short time.$B$BSpeak to my commander and let him know I desire leave to Durotar for a short time.", + ["O"] = "Speak to Dispatch Commander Ruag in the Stonard Keep.", + ["T"] = "Misgotten Honor", + }, + [55021] = { + ["D"] = "So, Zuul sent you? He wants to leave Stonard, that\'s it?$B$BHeh, well I\'ll make you a deal $R. Zuul has been an obedient grunt, one that listens well and does well when called upon, it\'s the only reason I\'m offering this. You do a task for me, and I\'ll give him leave for a few days.$B$BThe local wildlife has been a continuous thorn in our side. There is no other presence than the large beasts that dwell within the shadows beyond the light of our torches.$B$BI\'ve had orcs go missing and not turn up late at night, and there is no doubt in my mind that the beasts outside our walls are responsible.$B$BClear out the area outside our walls of what you find: jaguars, spiders and crocolisks. Make sure to thin their numbers.", + ["O"] = "Kill 6 Young Sawtooth Crocolisks, 8 Sorrow Spinners, and 8 Swamp Jaguars, then return to Dispatch Commander Ruag.", + ["T"] = "Beyond the Walls", + }, + [55022] = { + ["D"] = "Ahh... Fine, I\'ll put in the work to have Zuul dispatched, I cannot hold the title of Commander without honoring my word.$B$BTell Zuul that he will have three days leave to Orgrimmar, on the fourth day I will make arrangements for him to return to Stonard.$B$BAdvise him to make good use of these three days.", + ["O"] = "Speak with Grunt Zuul.", + ["T"] = "Taking Leave", + }, + [55023] = { + ["D"] = "There is one last thing I require from you, friend, if you could but be of help a moment longer.$B$BI still may be here for a while longer waiting for my leave. If you could take this letter from me and deliver it to my brother letting him know I will be arriving soon, it would mean quite a lot to me.$B$BThanks again, friend, Blood and Honor.", + ["O"] = "Travel to Sparkwater port and deliver Zuul\'s Note to Rugnar.", + ["T"] = "Relief and Reprise", + }, + [55025] = { + ["D"] = "I\'m losing my mind down here. We\'ve been told to stay a bit under the roof for a while after the old Brightwater took a few cannonballs to the side.$B$BBeen forced to stay in refuge for a few days now and I\'m going loopy! Aaah, if only there was a way to get some booze... Wait a second, you can get booze.$B$BSince we can\'t, make a trip up to The Salty Sailor and get me the following... Ahem...$B$B5 Jugs of Bourbon3 Flagons of Mead10 Flasks of Port...and 10 Cherry Grogs!", + ["O"] = "Collect 5 Jugs of Bourbon, 3 Flags of Mead, 10 Flasks of Port, and 10 Cherry Grogs for Shalgrig Pipeshack and the other Brightwater Crew.", + ["T"] = "Dry Hiding", + }, + [55026] = { + ["D"] = "Hey watch it, pal! You\'re looking at the Captain of the Brightwater, one of the finest, and most powerful vessels ever to sail the seas... at least by the Horde\'s standard!$B$BAhh... She was a beauty, all before those damn Bloodsail Buccaneers gave us a volley on the starboard side and sank us. It wasn\'t even fair, really, a two-on-one engagement.$B$BMy crew is still stuck out in Booty Bay hiding and I\'m not sure exactly where they\'re at.$B$BI have a favor I can call in from an old pal Revilgaz, who is the baron there. Tell him I sent you, and locate my crew.", + ["O"] = "Travel to the port of Booty Bay and speak with Baron Revilgaz.", + ["T"] = "It All Comes Sinking Down", + }, + [55027] = { + ["D"] = "Before I give you the information I have, I want something in return. I\'ll honor that \"favor\" that he is calling it, but I need something done.$B$BThe Venture Co. has been causing some issues around here, mostly in taking up my trade and getting some of it for themselves. That\'s where I need you to come in and be discreet.$B$BThey\'ve been messing with some of my operations, and I want to mess with some of their own, in secrecy of course.$B$BTravel far to the north-east by Lake Nazferiti. I\'ve got it from reliable sources that they are setting up an oil platform there, kill some of the Mechanics they contracted to work on it. That should cost them a lot of time and money.", + ["O"] = "Kill 5 Venture Co. Mechanics at the Oil Platform near Lake Nazferiti.", + ["T"] = "Employed Help", + }, + [55028] = { + ["D"] = "Fine, let\'s fulfill this favor and move along. There are many more profitable and useful things we can both spend our time on.$B$BThe crew of the Brightwater has been here the entire time, and I\'ve known about it since the first night they showed up after that fireworks show of a battle.$B$BThey haven\'t exactly done the best job of disguising who or what they are. That, and my contacts are very reliable.$B$BYou\'ll find them on the lower levels of Booty Bay, where Wigcik stays.$B$BWhen you next see \"Captain\" Pazzle, tell him I\'ve honored his silly favor.", + ["O"] = "Find the crew of the Brightwater on the lower levels of Booty Bay.", + ["T"] = "The \"Hidden\" Crew", + }, + [55029] = { + ["D"] = "Oh the Captain sent you? Well isn\'t that a relief, it\'s been almost a week that we\'ve been sitting around here with no word.$B$BI was about to start figuring out a way to get out of Booty Bay, but it seems like the only thing keeping us safe are the Bruisers.$B$BThe Bloodsail Buccaneers have been wanting us dead ever since we sunk one of their ships in a battle. Lets just say they got lucky and ambushed us near Grom\'gol!$B$BThey want us all gone and won\'t stop until we are, it seems.$B$BThe Bloodsails are a disorganized bunch, and not centrally commanded. Each encampment or ship has their own crew and their own leader, and this group hunting us is only doing so because we killed the man\'s brother.$B$BIf anyone knows anything, it\'s Revilgaz.", + ["O"] = "Speak to Baron Revilgaz.", + ["T"] = "In Need of Information", + }, + [55030] = { + ["D"] = "Pazzle and his crew really have gotten themselves into a jam, but if it means you\'re going to be bothering those goons known as the Bloodsail Buccaneers then I\'m all for helping!$B$BI got many leads on them, but I wouldn\'t entirely know who\'s heading up a hunt for the remains of the Brightwater crew.$B$BThat being said, I know someone who might know. Outside of Booty Bay is an informant I\'ve known for quite a while, I kicked them out of the city for being affiliated with the buccaneers.$B$BI saved their head, they owe me, if they know whats good for em. Find that Bloodsail Traitor, tell them Revilgaz is asking.$B$BOnce you got that information, tell the Brightwater crew, they can do what they want with it.", + ["O"] = "Obtain information from the Bloodsail Traitor outside of Booty Bay and return to Shalgrig Pipeshack in lower Booty Bay.", + ["T"] = "Acquiring Information", + }, + [55031] = { + ["D"] = "There\'s only one camp near that location and it\'s gotta be where this Captain Salt Tooth is at, then!$B$BIf we\'re ever gonna have a shot at getting out of this town, well then he\'s gotta go! So, you\'re going to help then, right?$B$BHead up north near the Gurubashi Arena, there is a camp of Bloodsail just south of it, off the road to the west. Find and kill Captain Salt Tooth there, bring me his head so I know this is done. Oh, and bring some friends, he\'s sure to have quite the crew!", + ["O"] = "Kill Captain Salt Tooth and bring his head as proof to Shalgrig Pipeshack.", + ["T"] = "Smash Salt Tooth!", + }, + [55032] = { + ["D"] = "My people have been reduced to madness, insanity and a bloodlust for riddled fever dreams of nothingness.$B$BIt is like a shadow clouds their minds, and blocks all clarity from being perceived.$B$BDo you know the pain of not knowing those you once knew? To look upon the face of a friend and recognize nothing from them but utter savagery as if they were speaking a foreign language?$B$BMy kin are lost, and it hurts me greatly to admit that I no longer have a home within these forests. Something must be done to stop the madness, and to end it all.$B$BTravel to the Greenpaw Village just south of here, and rid my once home of the Foulweald Shamans that lurk there. They are nothing of what they once were, and perpetuate the horrors.", + ["O"] = "Travel to Greenpaw Village and slay 3 Foulweald Shamans.", + ["T"] = "Reduced to Madness", + }, + [55035] = { + ["D"] = "You did Gowlfang good-good, no other gnoll ever do for me like that before! I give you gift show that Mosshide good gnoll, strong gnolls!$B$BI bury-bury chest in hollowed out tree at bottom of dam, should be still there unless someone steal, you find, treasure for you, Gowlfang no need what inside, all for you.", + ["O"] = "Find the Hidden Mosshide Chest and claim its reward.", + ["T"] = "Hidden-Hidden Reward", + }, + [55036] = { + ["D"] = "Hey bub, I got a late shipment that I need DEALT with, and by \"dealt with\" I mean fixed as soon as possible.$B$BTarlo Farcrack is gonna be out of a job once I get my damned Yeti Fur. I sent him out there almost a week ago, and he promised it would be here by now.$B$BIf there\'s one thing you should learn about Sparkwater, it\'s that you don\'t make promises to Laz that you can\'t keep.$B$BHead on down to Tarren Mill in the Hillsbrad Foothills and solve this Yeti issue.$B$BThen, when it\'s done, tell Tarlo HE\'S done.", + ["O"] = "Speak with Tarlo Farcrack in Tarren Mill.", + ["T"] = "Where\'s My Yeti Fur?!", + }, + [55037] = { + ["D"] = "I\'m in need of some help here. A whole damn lot of help! I was supposed to receive an order of Yeti Fur from a trusted source, but they up and went AWOL on me!$B$BLook pal, if you can help me keep my knees or from ending up on Azeroth Missing Persons, I\'d be in your debt!$B$BTo the southwest is a cave full of yeti, damn near packed with them. If you get me ten Yeti Fur, that would be a huge help. That should be more than enough to bring back to Laz. And please be quick! We don\'t got all day here!", + ["O"] = "Gather 10 Yeti Fur and return to Tarlo Farcrack.", + ["T"] = "Filling Back-Orders", + }, + [55038] = { + ["D"] = "There, it\'s all packaged up and good to go. Please, take this crate to Tradesman Laz in Sparkwater Port, and give him my apologies for the lateness. I included a small cut of money there for him as well for being late!$B$BThanks again for all the help, I would have been much worse off without you.", + ["O"] = "Bring Tarlo\'s Crate to Tradesman Laz.", + ["T"] = "A Late Delivery", + }, + [55039] = { + ["D"] = "The Kingdom of Alterac fell to ruin after their betrayal of the Alliance. I find it fitting that a nation of traitors soon after became a roving band of brigands, pilferers and cut-throats.$B$BIt is those who lay ruin to the lands and take which is not truly theirs in the first place.$B$BThe Syndicate have stolen from Dalaran a tome of great importance that the Kirin Tor require back. It is the third part of the rock elemental compendiums.$B$BThere are many building projects being done in and around Dalaran, and such a book is needed to keep our control over the Elementals around us.$B$BSyndicate Wizards have taken the book to the small town of Strahnbrad in the Alterac Mountains.$B$BTake back that which was taken from us, and dispense justice to the uncivil curs.", + ["O"] = "Retrieve the Rock Elemental Mastery: Compendium III from Syndicate Wizards in Strahnbrad.", + ["T"] = "Seeking Lost Answers", + }, + [55040] = { + ["D"] = "Many a great tome, book, and archive has been lost during the third war from the libraries of Dalaran.$B$BOur places of knowledge were destroyed and scattered across the world, and are now in the hands of rogue wizards and necromancers alike.$B$BOne such book of power is located not too far from here, up the shoreline. The Vishas family had taken a book from our library before the third war for their son who was an upstart in magic.$B$BI do believe they are now entangled within the depravity of the Scarlet Crusade in the ruins of Lordaeron.$B$BI have tried a few times to retrieve it, but things have only gotten violent. Do your best to reason with these people, and if reasoning cannot be achieved, retrieve it for us by other means.", + ["O"] = "Gather the book Water-Weaving and Command for Ansirem Runeweaver in Dalaran.", + ["T"] = "Returning Property", + }, + [55041] = { + ["D"] = "You ever heard the saying \"knowledge is power\"? Well, a lot of my goblin kin have not. It is knowledge that I seek, and sell, to those who are interested in gaining some new skills.$B$BI\'ve been after this old book for quite a while now, titled \"Wisdom of the Sages\". An archivist by the name of Landas is holding it.$B$BProblem is, this isn\'t just some guy with a book, he\'s one of them mages from Dalaran, and getting my hands on it isn\'t gonna be easy.$B$BThey\'re pretty protective over their stuff, so that\'s where you come in.$B$BI got some info recently that he was in the heights overlooking the Hillsbrad Fields and the internment camp fairly close to Dalaran. Find him, and get me that book.", + ["O"] = "Find the book \"Wisdom of the Sages\" and bring it to Krez the Wise.", + ["T"] = "Wisdom of the Sages", + }, + [55042] = { + ["D"] = "Long before I came to this place, I was quite a valuable member of the Venture Co.$B$BThat was a long time ago though, and a different me, but if anything stuck, it\'s the stupid nickname I got.$B$BWhen I was one of the engineers, I was commissioned to make a design for a mega shredder to deforest Stonetalon.$B$BTurns out, another design was better than mine, and by quite a bit. I don\'t have a problem with that, but what I got a problem with is being fired from Foreman Klix for \"letting him down\".$B$BHe called me a \"hack\", and now the nickname has stuck. Bastard\'s got what\'s coming to him. You\'ll find him out at the Windshear crag where I used to work at the old lumber mill. He\'s an old coot and I doubt he\'s moved on.$B$BBring me his ring, it\'s this oversized studded thing he wears over his middle finger.", + ["O"] = "Kill Foreman Klix and bring his Studded Ring to Shak.", + ["T"] = "Satisfaction for Shak", + }, + [55043] = { + ["D"] = "The Brightwater was a mighty vessel, such a shame it was sunk in a tragic manner, ambushed at sea by dastardly Bloodsail.$B$BI had to come to Sparkwater in a bit of a hurry and I need my Logbook from the wreckage.$B$BYou see, it holds some private information that I wouldn\'t want to get in certain people\'s hands, understood?$B$BHead to Grom\'gol in the jungles of Stranglethorn, and head just a bit south, at the bottom of the sea you\'ll find its wreckage and that of another pirate ship. Shouldn\'t be hard to find.", + ["O"] = "Get the Brightwater Logbook from the sunken ship in Stranglethorn.", + ["T"] = "The Brightwater Logs", + }, + [55044] = { + ["D"] = "This mining operation is tough work, and we don\'t always get the toughest workers, you catch my drift?$B$BI got a worker named Axel who has been slacking on delivering his ore. That, and he often dissapears during the day.$B$BI don\'t take well to lazy goons eating up my coin for doing nothing, so go and find him and get the copper I needed him to mine.", + ["O"] = "Find Miner Axel.", + ["T"] = "Missing Worker!", + }, + [55045] = { + ["D"] = "Look, I meant to get the ore to him, I promise. It\'s just been rather stressful day after day to smash a pick against rock, I feel like I can do better things, you know?$B$BYou mind doing me a favor and finding me 10 copper ore? Theres tons of it around the region here if you can mine, or if you know someone who can. It would get me all caught up on my shipments and dues and even have me a little ahead!$B$BI could really use the help. There\'s always the auction house if you don\'t know anyone and can\'t mine yourself.", + ["O"] = "Bring 10 Copper Ore to Big Fraggle for Miner Axel.", + ["T"] = "Ore on Time", + }, + [55046] = { + ["D"] = "Out in the Badlands by Agmond\'s End is a special type of ore that has been pressured by the elementals there for some time. It\'s unique and rather hard to find.$B$BIt can be used for a lot of things, but I\'d like to hope it can be tested for use in a drill perhaps.$B$BIn Agmond\'s End, a small camp of dwarves were over-run some time ago by troggs.$B$BI don\'t think the dwarves were even close enough to getting all of the ore and some trogg must have some of it. Head there and kill them until you find a piece of it, then bring it back.", + ["O"] = "Find Agon Ore from the Troggs in Agmond\'s End.", + ["T"] = "Agon Ore", + }, + [55047] = { + ["D"] = "Believe it or not, I wasn\'t always a miner. Used to do a lot of piracy back in my day.$B$BI worked with the Southsea Pirates in taking over boats and just stealing what we wanted to.$B$BIt was one hell of a life, but it came to an abrupt end when a friend of mine got killed in a dispute that another member caused.$B$BLet\'s just say I took off after that, and didn\'t look back.$B$BI had a pair of lucky boots during my days in the Southsea Pirates, had \'em most of my life actually from when I left Kezan. They should still be at the Hidden Cove in eastern Tanaris, in my sealed trunk in one of the bunkhouses.$B$BIf you can find \'em, I\'ll pay you well.", + ["O"] = "Find Big Fraggle\'s Lucky Boots.", + ["T"] = "The Lucky Boots", + }, + [55048] = { + ["D"] = "To those reading this message, a local prisoner named Baxxil has recently escaped from the hole after something of a tunneling incident, and escaped off the coast.$B$BHe has been reported and sighted at Far Watch Post, to the west in the Barrens. Justice must be dealt. Bring this prisoner back dead or alive, and return to Hizzle!", + ["O"] = "Find the prisoner Baxxil at Farwatch Post in the Barrens.", + ["T"] = "WANTED: Hole Escapee", + }, + [55049] = { + ["D"] = "Shazknock is wanted for crimes against Sparkwater Port, sharing vital information and leaking trade secrets of the union to the Venture Co.$B$BHe has secured himself a position as Manager with the information he has leaked. Find the man at his new position at Boulderlode Mine within the Great Hall there and slay him. Head to Tradesman Laz to receive your reward.", + ["O"] = "Find and slay Shazknock at Boulderlode Mine.", + ["T"] = "WANTED: Shazknock!", + }, + [55050] = { + ["D"] = "$B$BLok\'tar, $R! I\'m Grizlik, son of the Horde and future warrior of Orgrimmar!$B$B$B$BHey, don\'t laugh at me! Come on, I\'ve got a long way to go but the matron says if I put my mind to it, I too will have a big axe like the High Overlord, or who knows maybe shoot lightning like the Warchief!$B$B$B$BPew, pew!$B$BAnyway, you seem like a boring elder, you won\'t play with me, right? Can I ask you for a favour? Please take this to Torm Ragetotem in Thunder Bluff. When he was here last time, he brought us toys and taught me how to use a wooden axe!$B$BTake Squeaks with you too, he wants to see Thunder Bluff. You can keep him, he\'s more the adventuring type anyway. I\'d be sad to keep him around forever if he wants to see the world!", + ["O"] = "Take Grizlik\'s letter to Torm Ragetotem in Thunder Bluff.", + ["T"] = "Grizlik\'s Wish", + }, + [55051] = { + ["D"] = "I can\'t believe it\'s finally over, heh. No more sitting around in the this basement and getting drunk off cheap liquor, now I can sit around on a beach with the expensive stuff as celebration!$B$BIt\'s been a real pleasure $N and we couldn\'t have done it without you.$B$BHead to Sparkwater Port, let the Captain know that we\'re going to be on our way back when we can organize a ship to get us there. He should be sure to give you some sort of a reward for helping us out, surely.", + ["O"] = "Report the good news to Pazzle Brightwrench in Sparkwater Port.", + ["T"] = "Return to Port!", + }, + [55055] = { + ["D"] = "", + ["O"] = "", + ["T"] = "[DEPRECATED] War Mode Cancelled", + }, + [55056] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Winterveil Magic", + }, + [55100] = { + ["D"] = "The Explorer\'s league is always looking for new members. Are you looking to see the world, and travel the seas of Azeroth in search of forgotten artifacts and buried treasures?!$B$BWell then, you should seek out my friend Merrin Rockweaver, one of the many excavators and explorers from the league uncovering old artifacts and bones!$B$BHead east from here and find Whelgar\'s Excavation site. It should be tucked against the southern mountains, so keep your eyes peeled explorer!", + ["O"] = "Report to Merrin Rockweaver to become a great explorer!", + ["T"] = "Join The League!", + }, + [55101] = { + ["D"] = "Report after report of raptors slowly moving against our digsite were ignored by that fool Grovug up in the mountains.$B$BHe\'s had a comfy posting up in Dun Agrath and hasn\'t moved an inch, even though he\'s supposed to be here.$B$BI need some solid proof to give to him, right to his face for some action to get done. Raptor Eggs should do finely.$B$BSlay the beasts down there, and collect eggs from them. Bring those eggs to Grovug in the mountains of Dun Agrath to the south west along the mountains.", + ["O"] = "Collect 10 Raptor Eggs and bring them to Grovug Mithrilmane stationed in Dun Agrath.", + ["T"] = "Help The League?", + }, + [55200] = { + ["D"] = "Hello there friend! Have you seen the world? Have you explored all of the nooks and crannies of Azeroth and truly taken in its beauty?$B$BI don\'t think any soul has, but the very prospect of it is enticing, no?$B$BI am preparing for a trip to see the world and I still need supplies, one of which, is torches.$B$BThe oozes to the north around Ironbeard\'s Tomb have been something I\'ve used in the past as a sort of tar to light my torches with. Get me 5 Sticky Ooze-Tar from those oozes, and 5 Simple Wood from any trade vendor.", + ["O"] = "Gather 5 Sticky Ooze-Tar and 5 Simple Wood for Samuel Vickers.", + ["T"] = "Preparations for Adventure!", + }, + [55201] = { + ["D"] = "The ground connection to Menethil harbor has been severed ever since raptors have moved in and claimed it as their territory.$B$BWe haven\'t had the man power to press them back and as a result we are now stuck up here.$B$BHead down to the base of the mountain and kill the raptors there. Collect for me 5 of their talons as proof.", + ["O"] = "Collect 5 Mottled Talons for Captain Snowbeard.", + ["T"] = "Retaking The Roadways", + }, + [55202] = { + ["D"] = "Well met, $R! Say, you wouldn\'t happen to be headin\' near Dun Agrath, would ya? It\'s down south east in the mountains near Hawk\'s Vigil.$B$BLet\'s just say I lost a bet to me cousin Barltok, and it ain\'t in a dwarf\'s nature to leave a debt unpaid. Deliver this keg of my newest homebrew, and, if he\'s feelin\' generous, he might make it worth your while.", + ["O"] = "Deliver Hargin\'s Keg to Barltok in Dun Agrath.", + ["T"] = "The Lost Bet", + }, + [55203] = { + ["D"] = "Hey there! I\'m in a bit of a pinch, you see? The path between here and Menethil Harbor has remained fairly blocked up for quite a while now, and I gotta get this shipment to there soon.$B$BMenethil\'s Harbor has requested more lumber for repairs of their dockyard and we happen to be the closest lumber mill.$B$BI have no doubt if they don\'t get their lumber soon they will turn to someone else for wood.$B$BIf you could do me a favor, and take this shipment down toward Menethil Harbor and deliver it to James Halloran, it would mean the world to me, and keep us in good business!", + ["O"] = "Deliver the Lumber Shipment to James Halloran in Menethil Harbor.", + ["T"] = "The Wood Arrives on Time!", + }, + [55204] = { + ["D"] = "You there, I need a report ran to my fellow Captain up in Dun Agrath up in the mountains to the south. You look capable of delivering a message.$B$BThis is of utmost importance, it is urgent and about the matters of trade, commerce and travel through the region of the Wetlands. Take this to him, and with urgency, $C.", + ["O"] = "Take Stoutfist\'s Report to Captain Snowbeard in Dun Agrath.", + ["T"] = "Report From Stoutfist", + }, + [55205] = { + ["D"] = "What he is asking would leave us defenseless in the mountains...$B$BYou will have to take this report to him, and let him know of our situation. It grieves me to leave him empty handed, but I must do so to ensure the people\'s safety up here.", + ["O"] = "Take Snowbeard\'s Report to Captain Stoutfist in Menethil Harbor.", + ["T"] = "Report From Snowbeard", + }, + [55206] = { + ["D"] = "It seems that I cannot rely on the help of Ironforge or even our close allies. I must ask you, adventurer, to assist in cleaning out the Dragonmaw menace that stalks the highlands and raids our caravans.$B$BThey have been an annoyance for as long as we have been here and they must be halted lest they gain a larger foothold.$B$BHead to Angerfang Encampment to the east, and slay them.", + ["O"] = "Kill 10 Dragonmaw Raiders, 6 Dragonmaw Bonewarders and 6 Dragonmaw Swamprunners, then return to Captain Stoutfist.", + ["T"] = "Hunting Dragonmaw", + }, + [55207] = { + ["D"] = "Oh, that pie! It waters in my mouth, and it is so good! I recently took a trip down to Hawk\'s Vigil, and had some of Heidi\'s wonderous pie!$B$BI demand more, and you\'re going to be the one to get it for me!$B$BHead to Hawk\'s Vigil and talk to Innkeeper Heidi. She\'s a good person with a talent for baked goods.", + ["O"] = "Get Heidi\'s Homecooked Pie for Rann.", + ["T"] = "The Quest For Pie", + }, + [55208] = { + ["D"] = "That Rann was obsessed with my pie. He ate more then I could even imagine when he made his trip up here. I am beyond flattered to think my cooking is that wonderful to someone.$B$BIf you could bring this to him, and fulfill his wish, it would be appreciated.$B$BIt might even mean he will come back some day to try more!", + ["O"] = "Deliver Heidi\'s Homecooked Pie to Rann.", + ["T"] = "The Pie Delivery", + }, + [55209] = { + ["D"] = "Howdy! We don\'t get many visitors around these parts, especially with all of the mean and lurky things that are all around us!$B$BStill, it\'s good to see a friendly faced stranger. I got a friend out in Hawk\'s Vigil who I worked with in the past during the Third War.$B$BWe used to trade all manner of our new findings with one another, and I think I just figured out all sorts of crazy gizmos!$B$BDo me a favor and take my new schematics over to him, if you can. ", + ["O"] = "Take Swiftgear\'s Engineering Schematics to Barthos Thundercrank in Hawk\'s Vigil.", + ["T"] = "The Schematic Run!", + }, + [55210] = { + ["D"] = "This stuff is off the charts, especially this Tilting Oscilation Inhibitor!$B$BThe requirements for it are incredibly peculiar, but I must have it!$B$BIf you could get me the required materials in order to engineer this bad boy, then I would be willing to incorporate one into an item for you.$B$BHere, I wrote the materials down for you. Gather what I need and bring them back. They should be enough quanity to craft two of them!", + ["O"] = "With Barthos\' Engineering Notes, collect Iron Bars, Strong Flux, Bronze Whirring Gizmo\'s, and Fused Wiring. ", + ["T"] = "Tilting Oscilation Inhibitor?!", + }, + [55211] = { + ["D"] = "Now, then. I\'ll get started on my next, greatest creation! It shouldn\'t take too long, just stand back, and keep a good distance so you don\'t get hurt!$B$BGood engineering does require a bit of danger, after all.", + ["O"] = "Wait for Barthos Thundercrack to create his great invention.", + ["T"] = "Oscilation Inhibited Disk!", + }, + [55212] = { + ["D"] = "Back during the third war I was renowned engineer. I did field repairs on flying machines, and all other contraptions. Some say that these inventions are simply gnomish in design, but blast \'em!$B$BI always put my own twists on them for extra sturdiness and to be able to handle a dwarf!$B$BI\'m one of the big engineers here in Hawk\'s Vigil, but I\'m sort of running low on supplies to tinker with. I know those fellows up the cliff from here at the Ironforge Airport have tons just laying around.$B$BHead up there, and find my friend Orion Coalborn. He should have some extra supplies he\'d be willing to give me!", + ["O"] = "Head to the Ironforge Airfields and gather Barthos Thundercrank\'s supplies.", + ["T"] = "Tinkering Away", + }, + [55213] = { + ["D"] = "The senate is going to be breathing down my neck if they look into all these missing supplies. But, I cannot just leave Barthos hanging...$B$BHere, this is what I can spare. This crate should have enough to last him for a while.$B$BWhen you see him again, tell him that he can always come work up here. We need the engineers.", + ["O"] = "Deliver the Engineering supplies to Barthos.", + ["T"] = "Supplies for Barthos", + }, + [55215] = { + ["D"] = "Upon first glance Hawk\'s Vigil may look as if it is the perfect haven to settle, the hills are lush, and the grass is a bright green.$B$BThough, do not let this visage fool you, there are foul deeds going on beneath our very eyes, a taint of magic that has been sensed by some of our most adept.$B$BWe have had murder within our Vigil, and still this growing darkness lingers. Marge Blackwood has taken it upon herself to study and look into these findings of a magical taint and I would like to get to the bottom of this.$B$BReport to her, and see if you can assist in getting to the bottom of this mystery.$B$BMarge can be found within the manor to the north east.", + ["O"] = "Report to Marge Blackwood.", + ["T"] = "Uncovering Mystery", + }, + [55216] = { + ["D"] = "My research is ever continuing, though the mystery still remains at foot, my friend and associate Poppy Zabini is also a mage within the region.$B$BHe too has been researching into this matter, though I do believe his time is much more occupied than mine.$B$BWould you please head to meet with him? He is currently located just a small walk north to the manor with the blue roof.", + ["O"] = "Speak with Poppy Zabini.", + ["T"] = "The Mystery Continues", + }, + [55217] = { + ["D"] = "The dark magic within Hawk\'s Vigil has seemingly appeared out of nowhere, its presence went undetected by myself and my kin for quite a while.$B$BOr at the least has only cropped up at the last few weeks at a level where many, like myself and Marge, would have come to notice it.$B$BI am under the belief that either a dormant force has been slowly gaining power for some time, or that perhaps something, or some one, has recently come to Hawk\'s Vigil with such potency.$B$BI wish you luck in finding what is causing the tainting darkness, I sensed something similar before the third war and do not wish to re-live the experience. Tell Marge what little I know, it may be of assistance.", + ["O"] = "Bring Zabini\'s information to Marge Blackwood.", + ["T"] = "Zabini\'s Information", + }, + [55218] = { + ["D"] = "So, Zabini may be on to something actually, in all my research I have been unable to locate the source of this magic, whoever has been using it seems to know their craft.$B$BBut, there may be a clue in the information he has provided.$B$BLord Commander Ryke knows all the coming\'s and going\'s of Hawk\'s Vigil, and more precisely who is new to the town.$B$BIf someone has come in the last few weeks, then perhaps we can look to them as a potential source of this darkness, or at the least, investigate it.", + ["O"] = "Speak with Lord Commander Ryke.", + ["T"] = "A Potential Clue", + }, + [55219] = { + ["D"] = "$B$BSo, it seems that we have had someone recently move into the town, though he hails from the city of Stormwind, Harlus Ashbuckle.$B$BIt would be out of my jurisdiction to press, being that this individual has... Complications.$B$BHe is currently being investigated by the SI:7, I only tell you this because of our investigation, but we have an operative in the town keeping tabs upon him.$B$BMeet up with him, he goes by the name of Robb Dursley, he can usually be found near the town center.$B$BSee if you can get any information on this Harlus character.", + ["O"] = "Speak with the undercover operative Robb Dursley.", + ["T"] = "Overlapping Investigations", + }, + [55220] = { + ["D"] = "The operations of the SI:7 are secretive in nature, and this must remain as such.$B$BIf Lord Commander Ryke\'s suspicions be true, then it means Harlus Ashbuckle would be breaking vow he has sworn to nobility within Stormwind.$B$BOf course, that same nobility having gotten him out of the Stormwind Stockade when the man was wanted for crimes of practicing forbidden magic, and murder both.$B$BAs much as I have my dislike for the House of Nobles I do what I am told.$B$BTake my report with my findings to Master Mathias Shaw, leader of the SI:7 within Stormwind in Old Town.$B$BKeep them sealed, should the seal be broken, don\'t show yourself to him, or myself again.", + ["O"] = "Deliver Robb Dursley\'s Sealed Report to Master Mathias Shaw.", + ["T"] = "Robb\'s Report", + }, + [55221] = { + ["D"] = "Ahh yes... I had only figured a report from Robb would eventually lead back to this man. You may know him as Harlus Ashbuckle, but in truth that is nothing more than a false identity. The man you\'re gathering information on is actually Martin Corinth, who hails from Lordaeron. He escaped south to Stormwind during the Third War and was recently let free from imprisonment.$B$BA noble recently delayed Corinth\'s execution through a deal; he was to swear off his magics and be sent to exile. I kept a close eye on him, knowing just how much potential power he had within the dark arts.$B$BI would like to tie up some loose ends before simply having the man killed for his practices. I wish to figure out who else may be behind all of this forbidden magic and what noble set him free.$B$BThe Stockades has recently been overrun, but it is the last location that holds information valuable to this Martin Corinth. Go there, and find it.", + ["O"] = "Delve into the Stockades and find information on Martin Corinth. Report your findings to Mathias Shaw.", + ["T"] = "The Stockade Search", + }, + [55222] = { + ["D"] = "It would seem the Corinth family once held quite a few connections with both Lordaeron and the Stormwind Nobles.$B$BAll of them have died but Martin still remained, and fled to Stormwind after the war. According to some of these documents as part of his exile he was intending on heading to Menethil Harbor to settle there, we know this is not the case, but perhaps he had left something for us to find.$B$BSpeak with the innkeeper in Menethil Harbor, ask if they had seen Martin Corinth or Harlus Ashbuckle.", + ["O"] = "Visit the Deepwater Tavern in Menethil Harbor and ask for information.", + ["T"] = "Investigating Corinth", + }, + [55223] = { + ["D"] = "Yes, he stayed here for a few days infact, had a room the entire time!$B$BThe man was quite nice from what I recall, kept to his lonesome, drank a bit of ale, seemed a bit down though.$B$BHe did have a lot of mail back and forth that I delivered to him with his daily supper.$B$BIf you\'re looking for some of his personal affects then I can\'t be of that much help, I only recently cleared out what little he had.$B$BMan said he was taking a small trip and hasn\'t showed up in weeks, I figured he wasn\'t coming back, so I tossed his stuff out to the side of the Tavern.$B$BIf you\'re looking for something, check there, if it\'s not gone already.", + ["O"] = "Find Martin\'s belonging\'s and bring them to Mathias Shaw in Stormwind.", + ["T"] = "Uncovering Evidence", + }, + [55224] = { + ["D"] = "Duke Ramon, well that certainly connects a lot of loose ends that we had here, at the least many of our agents can be pulled off other investigations thanks to this bit of detective work.$B$BI prepared this letter to be taken to Lord Commander Ryke back at Hawk\'s Vigil, it should contain all of the information he should need to bring justice to this man.$B$BAs for the House of Nobles, we shall continue our investigations, as of now it seems like this may just have been a Nobleman helping out a family friend and keeping them above the law, let us hope it is just that.", + ["O"] = "Bring Lord Commander Ryke in Hawk\'s Vigil Mathias\' Letter.", + ["T"] = "Mathias\' Letter", + }, + [55225] = { + ["D"] = "The town of Hawk\'s Vigil came here to retreat from the looming darkness of Lordaeron, and we will not be forced to retreat from here as well.$B$BMany of the citizens have come to make a good life for themselves and one man will not stop us now.$B$BMathias Shaw has told me stories of corruption, of villainy, of pure evil, it is up to you to bring justice to the man Harlus Ashbuckle, or so he goes by.$B$BKill him, and rid our lands of his taint once and for all before untold evil can be done in these lands.", + ["O"] = "Kill Harlus Ashbuckle.", + ["T"] = "The Hawk\'s Vigil", + }, + [55300] = { + ["D"] = "", + ["O"] = "For the gauntlets plans, I\'ll be needin\' 20 thorium bars.", + ["T"] = "Imperial Plate Gauntlets", + }, + [60005] = { + ["D"] = "My sheep! They\'re missing! I can\'t run a farm without sheep to shear. These varmint wolves have been scaring my sheep away for too long. I\'m sick and tired of it! Now they\'re scattered around Elwynn, scared and shaking in their expensive fleece.$B$BWithout sheep, I\'ve got no way to support this farm or my daughter, Julie. I use their wool to make everything from handbags to hoods, but times have been tough lately. Say, you\'re a strong-lookin\' feller. Why don\'t you wrangle \'em back for me? You\'ll be doing me a mighty fine favor. I\'ll give you a fair shake in return.$B$BJulie made a batch of their favorite treats. Give them these Elwynn Truffles and they’ll be runnin\' back home in no time.", + ["O"] = "Find 8 Lost Farm Sheep in Elwynn Forest and feed them Elwynn Truffles to bring them back to farm.", + ["T"] = "[DEPRECATED] Once Upon a Sheep", + }, + [60007] = { + ["D"] = "Lulu is staring at the wolves surrounding the farm warily. You think you can hear her poor little heart thudding in dread. The wolves are licking their chops, biding their time until they get a chance to strike.$B$BAn innocent, adorable thing like her shouldn\'t look so terrified in her own home. It\'s up to you to ease Lulu\'s distress.", + ["O"] = "Slay 15 Mangy Wolves around Elwynn Forest, then return to Lulu in Goldshire.", + ["T"] = "Lulu Looks Luscious to Lupines", + }, + [60008] = { + ["D"] = "My ma used to make a mean set of mittens that warmed us up in the chillier months. Each day gets a little colder without her, but she taught me everything she knew about making woolen garments.$B$BAs you can see, the farm\'s been losing sheep left and right. There\'s plenty out in the forest though, but it\'s too dangerous for me. Papa can\'t lose me and Ma both—then he\'d be stuck with poor ol\' Lulu.$B$BGather a few bundles of wool so that I can make Papa warm clothes for the season, and I\'ll craft up a lil\' something for you, too.", + ["O"] = "Gather 20 bundles of wool off the sheep in Elwynn Forest and bring them back to Julie Osworth.", + ["T"] = "[DEPRECATED] Wool Would Work", + }, + [60009] = { + ["D"] = "We want players to hand out Egg Nogs for\'em to feel them warmer in the cold winter nights, because Elune wills it.", + ["O"] = "Collect their feathers for reward.", + ["T"] = "Winterveil Dummy Quest", + }, + [60010] = { + ["D"] = "Hey, $r, down here! If you have some spare time, I could really use your help.$B$BYou see, there\'s this kodo in Un\'Goro Crater, their name is Dadanga. I\'ve heard that they give you a gift if you feed them bloodpetals. It sounds like this gift could have a nice surprise in it, and I love surprises!$B$BAnyways, these bloodpetal sprouts are found all over the crater, and I\'d love to get my hands on some. Bring me 30 Bloodpetal Sprouts and I\'ll pay you. I\'ll even give you something I cooked from one of my original recipes!", + ["O"] = "You\'re pretty sure Reas wants you to bring 30 Bloodpetal Sprouts to her in Gadgetzan.", + ["T"] = "Help A Gnome Out", + }, + [60011] = { + ["D"] = "Paladin! As protectors of the weak, we have a responsibility to cast justice upon the wicked. Countless times you will experience insurmountable foes, some ferocious and brutal while others act with cunning.$B$BOne such enemy resides deep inside Elwynn Forest, at the very end of the Forest\'s Edge. The foul creature\'s name is Hogger. He surrounds himself with his gnoll underlings, acting as the alpha among them. Be careful not to get caught outnumbered.$B$BTo bring justice to your adversaries, you must believe in the light to guide you. Bring along your trusted allies, venture forth and quench this evil before it does any more harm.$B$BMay the light be with you!", + ["O"] = "Defeat Hogger in Elwynn Forest\'s Edge.", + ["T"] = "[CANCELLED] Piercing Light", + }, + [60012] = { + ["D"] = "Paladin! It is a great responsibility protecting the weak and cast Justice upon the wicked. There\'s a special case when you will face very powerful and too fierce enemies who rage, anger and determination might bring a downfall to either you or your company, and there is such a foe.$B$BHe\'s known as Old Icebeard.$B$BTo know the weaknesses of the enemies and bringing Justice you will need all prowess you can muster. Above all else you will need your faith in the Light more than ever and the Light shall grant you the strength.", + ["O"] = "Defeat Old Icebeard west from Kharanos.", + ["T"] = "[CANCELLED] Piercing Light", + }, + [60013] = { + ["D"] = "We would like to wish you all a wonderful holiday season. Thanks to all our turtles for your choosing this server and your continuous support.$B$BMay the new year be one merry and bright!$B$BHappy New Year!", + ["O"] = "Stay awesome in 2021!", + ["T"] = "Happy New Year!", + }, + [60020] = { + ["D"] = "Ishnu\'alah, $C.$BNot long ago, a group of Sentinels was finally driving the Naga away from Solarsal. Unfortunately, that caught the attention of one of their champions and once she joined the fray they were quickly pushed back by her magic. Please, find and kill this Sea Witch. She can not be allowed to scour Solarsal of its arcane secrets and become stronger.$B$BThe last we saw of her, she was heading towards the ruined temple located in the hill near the tallest tower.", + ["O"] = "Kill Lady Janira, located in the Ruins of Solarsal.", + ["T"] = "Lady Janira", + }, + [60030] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Fashion Demands Sacrifices", + }, + [60031] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Fashion Demands Sacrifices", + }, + [60032] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Fashion Demands Sacrifices", + }, + [60033] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Fashion Demands Sacrifices", + }, + [60034] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Fashion Demands Sacrifices", + }, + [60035] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Fashion Demands Sacrifices", + }, + [60036] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Make the Right Choice", + }, + [60040] = { + ["D"] = "I swear I could eat an ogre right now!$B$BAre you going to the Stonefield farm by any chance? If so, could you ask for one of those famous Elwynn Pumpkin Pies from Gramma Stonefield for me? The farm is due south-west from here. If you go by the road then you can\'t miss it.$B$BCome back when you have that pie, please!", + ["O"] = "Bring 1 Delicious Pumpkin Pie to Gina Weller in Goldshire.", + ["T"] = "[DEPRECATED] Delicious Pumpkin Pie", + }, + [60041] = { + ["D"] = "This is outrageous! The nerve! First, they sneak around and scare our livestock. Then, they sneak in and pillage our barn. What\'s next? Rob our house? Kill us all in our sleep?! What do you think the guards are doing about this situation, hm? NOTHING!$B$BThese gnolls are getting bolder with every passing day, and I\'ve had enough! The guards are of no help, but I see you\'ve got some fire in your eye. Perhaps you can help keep me and my family safe?$B$BWhat? Pie? Listen here, those gnolls made off with all my pumpkins! Little barbarians have no idea how to cook anything besides crudely charring it! What in the blazes are they going to do with pumpkins?! If you want a pie so badly, go and get my pumpkins back.$B$BI\'ve seen those mongrels scurry north across the road far beyond Goldshire. Perhaps someone at the Eastvale Logging Camp has seen where the little bandits are holed up. Ask the folks over there where my pumpkins have gone! While you\'re at it, put down as many of those filthy brigands as you can!", + ["O"] = "Bring back 7 Elwynn Pumpkins to Gramma Stonefield.", + ["T"] = "[DEPRECATED] The Pumpkin Thieves", + }, + [60042] = { + ["D"] = "At last, they sent aid!$B$BThere\'s a large camp full of gnolls led by a mighty gnoll known all over Elwynn as Fedfennel. Rumor has it he\'s been eaten by his own rivals... I digress. The camp is further up to the north, past Stone Cairn Lake.$B$BIt\'s tucked away in a distant corner that the guards don\'t patrol, so the gnolls run rampant out there. Do us all a favor and wipe out a full brigade of them and we\'ll have at least a week of sound sleep.", + ["O"] = "Kill 10 Riverpaw Runts and 10 Riverpaw Outrunners and return to Supervisor Raelen in Eastvale Logging Camp.", + ["T"] = "Culling the Riverpaw", + }, + [60050] = { + ["D"] = "Hey... uhm, excuse me! I have a request for you!$B$BHah, I said it! It makes me so nervous to approach people leaving the abbey, but it\'s the only way I can possibly get my wish fulfilled.$B$BOh! The request, of course! You see, I love to visit Stormwind City and see my friend Suzetta at the Gallina Winery, and I always walk past the fountain in the Trade District. You know, the one next to the bank!$B$BIf you\'re heading towards the city, could you toss this coin into the fountain... For good luck? I\'ve heard that if you toss a coin in, your wish will come true. My wish is to visit Stormwind again as soon as possible!$B$BOh! And if you could, please send my greetings to Suzetta Gallina!", + ["O"] = "Toss a coin in the Trade District Fountain in Stormwind City for Teresa, then speak to Suzetta Gallina in the Gallina Winery.", + ["T"] = "Lucky Coin", + }, + [60060] = { + ["D"] = "Survival itself is not that hard if you know what to do. It is harder to survive when you have no food. Hunting? Yes, you could try that, alas, not always you have something to sustain you longer than just some primitive herbs before you catch something.$B$BI see you\'re pondering on the situation a bit harder than your normal hunters and trappers, so why don\'t you learn something for your own good and best chances to survive out in the wilds?$B$BBring me what I need and I\'ll teach you what to do. Here\'s the list. Please do not lose it.", + ["O"] = "Find Country Pumpkin Seeds, Mountain Berries Seeds, Striped Melon Seeds and Magic Mushrooms Samples!", + ["T"] = "You Reap What You Sow", + }, + [60061] = { + ["D"] = "Ish-ne-alo por-ah, young one! Sole reason you\'re here can only be the desire to learn how to foster your own garden and procure food where otherwise it wouldn\'t grow I believe? By the squint in your eyes I can see it is true. Very well.$B$BThere\'s a particular type of seeds you will have to find first. Once you have\'em all with you I shall teach you something not even hunters or trappers would know how to survive with less violence and killing. This is the Blessing that our tribes bear with pride and foster with care, a Blessing of the Earth-Mother herself. Come back to me when you have all the seeds I\'ve mentioned in this parchment here. I have and will be expecting you … again.$B$BWinds be at your back.", + ["O"] = "Find Country Pumpkin Seeds, Mountain Berries Seeds, Striped Melon Seeds and Magic Mushrooms Samples!", + ["T"] = "You Reap What You Sow", + }, + [60065] = { + ["D"] = "$B$BBrave adventurer... The horrors of these lands are relentless, they show no mercy towards the living; mindless creatures that spit on the sanctity of life! In these last fleeting moments of mine, the desire for vengeance and retribution festers within me. $C, fulfill my last wish and purge the arachnid monstrosities in the tunnel to the north. We cannot allow their foul venom to harm any more defenders of the light...!$B$B", + ["O"] = "Cleanse the Terrorweb tunnel and report back to Mal\'adris at the bridge connecting the Western and Eastern Plaguelands.", + ["T"] = "Terror of the Webweavers", + }, + [60070] = { + ["D"] = "Trust is something you can\'t buy, $R. Here\'s the deal, lad. You earn the trust of this gryphon over here and you\'ll get your ride to the camp. Fail and he\'ll have you as his breakfast.$B$BHah! Of course I\'m pulling your leg here, lad. The winged beast won\'t even budge unless it trusts you completely. How, you ask? Food, of course. And a toy. Go figure. He likes to gnaw on them discarded bones the Lion\'s Pride Inn\'s cook throws out with the trash. He\'s gone and snapped all his, judging by the refuse at his talons.", + ["O"] = "Bring 5 Chunks of Boar Meat, 3 Dwarven Mild Cheese and 1 Chew Toy to Kelton\'s Riding Gryphon in the Goldshire.", + ["T"] = "[DEPRECATED] Matter of Trust", + }, + [60071] = { + ["D"] = "Well met, $C. Like frogs after rain, the forest trolls have returned to claim what was once their land. Yet, they lost the right to own it through battle, and so once more, by hammer and claw, they will face the fury of our clan. As proud as we are of our own battle force, we still lack the numbers to take them all on—so I am here to recruit any adventurer who makes their way here to gaze upon the Stone Hawk.$B$BJust east of Aerie Peak, you will find the Witherbark trolls brewing their foul concoctions, seeking to corrupt the wild habitats of the Hinterlands. End them all, for they are nothing more than pawns of the Vilebranch.", + ["O"] = "Slay 10 Witherbark Scalpers, 10 Witherbark Zealots and 5 Witherbark Venombloods. Return to Drakin in Aerie Peak when done.", + ["T"] = "Cracking the Witherbark", + }, + [60072] = { + ["D"] = "With the Witherbark out of the fight, we can now focus on the Vilebranch. They are greater in number, so they have claimed more land. The Witherbark were their first line of defense—or rather, they were mere cannon fodder, meant to keep us occupied while the Vilebranch reclaimed the Altar of Zul.$B$BIf you listen well, you can hear the echo of their chants even from here. That ritual must not be completed. Find your way there however you see fit, and put an end to their miserable faith.", + ["O"] = "Slay 15 Witherbark Soothsayers and 30 Vilebranch Scalpers. Return to Drakin in Aerie Peak, when done.", + ["T"] = "Trimming the Vilebranch", + }, + [60073] = { + ["D"] = "Chased rats to a closed den—that\'s all they are now. This will not be an easy task, $C. You must bond with other adventurers over this quest—others who, just like you, seek their glory. For the city of Jintha\'Alor is brimming with dread and the filth of the forest trolls.$B$BWhatever ritual you stopped at the Altar of Zul pales in comparison to what happens in that foul place. Steel yourself—this will be your hardest task yet. Decimate their ranks as you make your way through the city.", + ["O"] = "Slay 20 Vilebranch Berserkers, Vilebranch Shadow Hunters, Vilebranch Blood Drinkers and Vilebranch Soul Eaters. Return to Drakir in Aerie Peak when done.", + ["T"] = "Decimate Their Ranks", + }, + [60074] = { + ["D"] = "Led by the Vile Priestess Hexx, the Vilebranch came to the Hinterlands to reclaim their lost legacy. I repeat myself—I am aware of that. Yet, I cannot help but find irony in it. You would think their blind faith in whatever they call upon in prayer at night would at least grant them a glimpse of the bloodshed to come.$B$BI stand steadfast in my decision, $C, yet I cannot help but pity them—for as long as we, or our elven allies to the north, have fought them, they have suffered crushing defeat after crushing defeat. Today will be no different. Stain the land with the blood of their priestess and those who seek to guard her.", + ["O"] = "Slay 20 Vilebranch Aman\'zasi Guard and the Vile Priestess Hexx. Return to Drakir in Aerie Peak when done.", + ["T"] = "Bring Down the Priestess!", + }, + [60104] = { + ["D"] = "Greetings! You look like a brave soul. What if I told you I am on the brink of revolutionizing travel as we know it?$B$BThrough some clever recombobulating of magic Runes that mages use I was able to make a device that can open a wormhole which can be used to teleport someone to a place on the other side of the world.$B$BBehold the invention that will change travel as we know it! I call it the Portable Wormhole Generator.$B$BNow the only thing left to do is to test it... That\'s where you come in.$B$BIf you are willing to step into the portal created by the Generator you should end up in the other side where my partner will be waiting for you. Do this and you will be given one of the devices as a show of our gratidude.$B$BGood luck!", + ["O"] = "Test Portable Wormhole Generator.", + ["T"] = "Into the Unknown [Deprecated]", + }, + [60107] = { + ["D"] = "The damned cold won\'t leave me. I thank you for the pelts, $N but I wonder if I may trouble you again?$B$BI paid a helpful soul, Calvin, to go to Solliden Farmstead to retrieve my slippers before you happened along. He hasn\'t returned and I\'ve heard that he may be less than honest. Undeath doesn\'t change an opportunist it seems. My slippers are in a footlocker at the farmstead.$B$BThe reports I overheard about Scarlets in the area are the least concerning. The murlocs like anything shiny I\'ve heard and I did keep that footlocker polished up...", + ["O"] = "Retrieve Gretchen\'s slippers from the shiny footlocker north of Solliden Farmstead.", + ["T"] = "Cold Feet", + }, + [60108] = { + ["D"] = "Greetings, $C!$B$BWe\'ve been on the tail of Archmage Arugal for some time, since the end of the Third War actually. What did he do? When the Scourge came to Dalaran, we were devastated.$B$BSeeing our friends and family being turned undead really messed with his mind. He thought the solution was a summoning ritual, to summon something that could aid us and stop the Scourge\'s advance. Even though as his mentor I advised against his idea, my warnings fell on deaf ears.$B$BThe resulting monstrosities are the Worgen. Even though they killed the Scourge, they quickly turned on us, worsening the situation. After going mad with his failure, he adopted the worgen as his children and retreated to Shadowfang Keep.$B$BAfter what had transpired I moved to Stormwind to try to forget what happened. Although it pains my heart to say this, you must travel to Shadowfang Keep in southern Silverpine Forest and end his life.", + ["O"] = "High Sorcerer Andromath has tasked you with the death of Archmage Arugal. Return to him when you\'re done.", + ["T"] = "Arugal\'s Folly", + }, + [60109] = { + ["D"] = "One of my esteemed colleagues set off to gather vital information about the plots that the nefarious archmage Arugal is hatching inside of Shadowfang Keep, but I have not gotten word from him since. I am concerned about the corrupting influence that place has on even the most powerful and capable mages, and I need to know the fate of Sorcerer Ashcrombe.$B$BTravel to Silverpine Forest and seek him out for me at the Keep. If the Light wills it, find out what he has learned.", + ["O"] = "High Sorcerer Andromath wants you to travel to Shadowfang Keep in Silverpine Forest and find out what happened to Sorcerer Ashcrombe.", + ["T"] = "The Missing Sorcerer", + }, + [60110] = { + ["D"] = "Iverron was attacked, you say? And by Githyiss herself, outside the Shadowthread Cave? This is grave news... To think that the broodmother of the webwood spiders has become this hostile.$B$BI had already heard rumors of her mercilessly overhunting the local wildlife. If she has gone so far as to attack our people, however... It pains me to say this, but I fear that she must be put down. Her violent nature now threatens the very balance of Shadowglen.$B$BTake great caution if you are to hunt her, $N; her poison is much stronger than any of her brood\'s. If you could, please bring back her venom sac so that I may further my research. I only hope it may yield answers to what is happening across Teldrassil.", + ["O"] = "Kill Githyiss the Vile and collect her Venom Sac, then return to Gilshalan Windwalker.", + ["T"] = "Githyiss the Vile", + }, + [60111] = { + ["D"] = "You have proven yourself a capable defender of our roads and our people, $c. I believe you will be a great asset in putting an end to those responsible for these attacks once and for all. Our scouts have pinpointed the locations of two of the leaders of the Gnarlpine, Agal and Greenpaw.$B$BAgal, who orchestrates ambushes upon those traveling the road to Darnassus, resides in a cave just below the road. Greenpaw is a powerful shaman who has entrenched himself and his kin deep in the Ban\'ethil Barrow Den, desecrating our sacred grounds and terrorizing those within and in the lands surrounding the den.$B$BExercise caution, for they are well protected by their tribesmen. I suggest you enlist the aid of a dependable ally if you intend to strike at these two. May Elune protect you and guide you on your path.", + ["O"] = "Moon Priestess Amara has asked you to kill Agal in the cave below the road to Darnassus and Greenpaw inside Ban\'ethil Barrow Den.", + ["T"] = "A Decisive Blow", + }, + [60112] = { + ["D"] = "While I\'m bound to fulfill Marla\'s wish, I cannot help but think about Samuel\'s friends. They are damned into eternal service for the Scourge with their bodies and minds beyond recovery. Please, if you see them... lay them to rest.", + ["O"] = "Novice Elreth has asked you to kill Karrel Grayves, Daniel Ulfman and Stephen Bhartec. They were last seen at a camp near Deathknell\'s gate.", + ["T"] = "Fallen Adventurers", + }, + [60113] = { + ["D"] = "If my theories are correct, then human blood should react to the plague I\'m concocting. While you\'re out gathering the Murloc scales, go to the Solliden Farmstead and bring blood from the Farmhands and Farmers.", + ["O"] = "Apothecary Johaan has asked you to gather 5 Vials of Human Blood from the Tirisfal Farmers located in the Solliden Farmstead.", + ["T"] = "Virulence", + }, + [60114] = { + ["D"] = "I enjoy camping in this cave, but as long as Old Icebeard makes his home near this area then I\'ll never be safe from him raiding my food. It would make for a great trophy if you could bring me his beard... not to mention making this place safer.", + ["O"] = "Tundra MacGrann has asked you to kill Old Icebeard and collect its beard.", + ["T"] = "The Terror of Chill Breeze", + }, + [60115] = { + ["D"] = "Aside from Sharptusk, there is another threat among the Bristleback that cannot go unaddressed. Our scouts have reported a strategist among the quilboars, hidden away in a cave in Brambleblade Ravine and devising attacks against our people.$B$BThe quilboars are a vicious foe enough without having carefully-laid plans against Mulgore. All the more reason this tactician cannot be allowed to live. Go, find this cunning Bristleback, put him down, and bring back proof of his demise.$B$BIf possible, be vigilant of any documents that may give us insight on the sort of tactics and knowledge the quilboars have been developing.", + ["O"] = "Brave Windfeather in Red Cloud Mesa has asked you to find the strategist of the Bristleback hidden somewhere in Brambleblade Ravine. Slay this quilboar and bring back proof of the kill.", + ["T"] = "Preventive Strike", + }, + [60116] = { + ["D"] = "It\'s about time someone with some skills showed up around here! It\'s one thing to send fresh bodies after the lower Scarlet ranks, but I need an experienced $C if we\'re going to bring down the zealots on their own grounds.$B$BHmm. I seem to recall you being quite the efficient killer. Let me see that you\'ve still got what it takes to serve. Thin the ranks outside the Monastery!", + ["O"] = "Eliminate the Scarlet forces outside the Scarlet Monastery, then return to Deathguard Burgess in Brill.", + ["T"] = "Paint the Roses Red", + }, + [60117] = { + ["D"] = "You! $R! I wonder if you could do me a favor. Deathguard Burgess in Brill has been ranting about his station, and only having access to the inexperienced members of the horde. He has something that requires a more learned hand and he\'s prepared to pay.", + ["O"] = "Speak to Deathguard Burgess in Brill.", + ["T"] = "Scarlet with Rage", + }, + [60119] = { + ["D"] = "Excuse me, $R. I hope I\'m not bothering you but I\'d ask you a courtesy if you\'ve the time.$B$BI lived in Strahnbrad a lifetime ago and my manor fell to ruin before the third war when the orcs came. There were a few items left behind that would serve me in this unlife so I sent someone for them.$B$BThe troll I sent has since returned with my heirlooms but I overheard her warning Melisara of the ogres in the area. Melisara has arranged for the maulers within the ruins of Alterac to be destroyed but has no interest in the weaker ogres in the surrounding caves.$B$BI have access to ample means to reward you if you would thin their numbers.", + ["O"] = "Kill 15 Crushridge Ogres and 15 Crushridge Brutes.", + ["T"] = "Wayne Manners", + }, + [60120] = { + ["D"] = "Now that introductions are out of the way, you and I are kinda like partners, yeah? Here\'s the thing, more than the general supplies sent from Ratchet we had a special order those harpies took. Those feathery fiends got their claws on at least two crates of weapons and ammo meant for Orgrimmar.$B$BWorse than the harpies is the tauren merchant expecting the goods. She might use me for target practice if she finds out her order got lost in delivery a second time.$B$B$N, I gotta get those crates back!", + ["O"] = "Find Kaja\'s Ammunition from Ammo Crates in Razorwind Canyon and return to Rezlak near Orgrimmar.", + ["T"] = "[Deprecated] Triggered!", + }, + [60121] = { + ["D"] = "You know, since there\'s another shipment coming, I might as well just wait for them here. I got a few more coins here to spare, and so far my eye for talent hasn\'t lead me wrong with you.$B$BNow I know I want to hire more $cs for later jobs, but we still have to get these weapon crates to Orgrimmar. A goblin\'s reputation is ninety percent of his business! How about it? Mind hauling this stuff the rest of the way for me?$B$BMy no good cousin Kozish should have made it there hours ago. He had more cargo to deliver and is probably drinking away his paycheck at the first pub he saw by now. Check there for him in the Valley of Strength.", + ["O"] = "Deliver Rezlak\'s Shipment to Rezlak\'s cousin Kozish in Orgrimmar.", + ["T"] = "[Deprecated] The Mail Must Go Through", + }, + [60122] = { + ["D"] = "I am not going anywhere near that Tauren!$B$BI\'m unemployed, remember? You want to see the deliver through, you take it to Kaja yourself.", + ["O"] = "Deliver the rest of Rezlak\'s Shipment to Kaja in Orgrimmar.", + ["T"] = "[Deprecated] Out For Delivery", + }, + [60124] = { + ["D"] = "Ishnuallah, $C.$B$BThere is trouble brewing in the Barrens. No, its not the Horde or the centaurs, this is about the Wailing Caverns.$B$BIt was an attempt to turn the Barrens into a lush green oasis but it backfired. Naralex tried to tap into the power of the Emerald Dream but the Nightmare got to him first, putting him in eternal sleep and corrupting every beast and even his acolytes!$B$BYou can find the Wailing Caverns in Northern Barrens.$B$BFind his Disciple in the caverns, he will tell you how you can free him.", + ["O"] = "Alanndarian Nightsong wants you to venture into the Wailing Caverns in the Northern Barrens and free Naralex from the Nightmare. Find his Disciple in the caverns to learn how. Return to her when you free Naralex.", + ["T"] = "Trapped in the Nightmare", + }, + [60125] = { + ["D"] = "Although your main quest is saving Naralex from the Nightmare, we might learn more about the corruption that befouls the caverns.$B$BIts told that a plant named Serpentbloom sprouted inside the caverns after Naralex\'s fall into eternal slumber, and that they hold the venom of a serpent.$B$BI want you to venture into the caverns and bring me 10 of these plants.", + ["O"] = "Alanndarian Nightsong in Auberdine has tasked you with the collection on 10 Serpentblooms.", + ["T"] = "Serpentbloom", + }, + [60130] = { + ["D"] = "You found this scuffed ring between the webbing of a murloc\'s fingers. Something about it calls out to you, compelling you to place it in your pocket as though its appearance belies its true value. You try to shine it on your armor, but the muck and dirt only spreads with every wipe.$B$BYou are certain this ring has more to it than meets the eye, that it is possessed of magic. You decide to take the ring to someone with knowledge of the arcane for examination.", + ["O"] = "Ask around Goldshire for an expert in magic to examine the Dirty Old Ring.", + ["T"] = "That Dirty Old Ring", + }, + [60131] = { + ["D"] = "Greetings, $C!$B$BMuch of Orgrimmar\'s food supply comes from the sea to the east. Grunts can assist with escorting the fishermen and crabbers through the scorpids and raptors but there\'s the issue of sharks that\'s getting the better of them.$B$BFishermen have reported aggressive sharks rising in number off the coast and attacking their boats. Go thin their number and be sure to take friends. Rid us of this menace before our food stores dwindle!", + ["O"] = "Kill the Sand Shark off Durotar\'s eastern coast.", + ["T"] = "Deep Blue Sea", + }, + [60132] = { + ["D"] = "$B$BA spider, $C. A spider caused this wound. Not inflicted it, mind you, but caused it.$B$B$B$BI was hunting raptors. I need their feathers, the butcher needs the meat, the claws can be used as weapons, they\'re good creatures. A worthy opponent. If you misstep, into a web in my case, they\'ll leave their mark.$B$B$B$BSpiders, on the other hand, are useless. Their web is too sticky to use for armor or fletching, their carapace too brittle to make decent armor. They\'re in the way, $C. Kill them.", + ["O"] = "Kill 20 Plains Creepers in Arathi Highlands.", + ["T"] = "They\'re In The Way!", + }, + [60133] = { + ["D"] = "Even as I send you to discover the wondrous source of life here, there is foulness tainting the land. The gentle herds of gazelle are falling ill. We are stymied in our efforts to heal the sick and bring balance to the circle of life.$B$BI have sent word home to Thunder Bluff, and through my brethren there, Moonglade. We will have assistance from the Cenarion Circle soon. If you are eager to help, however, I will certainly use you!$B$BGo and track the poor beasts that lag behind their herds. You must hunt them before the lionesses bring down the sickly gazelles to feed their prides. Return to me with samples so that I may study what ails our animal friends.", + ["O"] = "Collect 10 samples from the Sickly Gazelles wandering the Barrens.", + ["T"] = "Down With the Sickness", + }, + [60134] = { + ["D"] = "We\'ve done it, $N! With the help of the druids, we have found a cure to the Dreadmist Poison affecting the Barrens. It will take time for the earth to heal from the poison\'s damaging effects, however. $b$bDruids are curing the remaining sickened beasts, but we can also act to protect the herds from the lingering poison until the land has recovered completely.$B$BTake this salve. Feed it to gazelles to strengthen them against the poisoned grasses.", + ["O"] = "Vaccinate 10 Gazelle of the Barrens to protect them from harm.", + ["T"] = "Preventing Poison", + }, + [60135] = { + ["D"] = "While my mission here is focused on the centaur, it is my duty as a Keeper to heal the world wherever it may suffer.$B$BSouthwest of here, there is a spirit in this land that cries out in pain. She had no name in life, but the Tauren know her spirit as Palkeote - “grey mother”, in their tongue.$B$BPalkeote lost one of her sons in this land long ago, before the sundering of the world. Yet she would not leave his side. She remained here for many long years, as the trees grew and the world changed around her, until at last she too passed at the side of her beloved child.$B$BShe remains here as a restless spirit. The long years of her life and her dedication to her single task make her mighty, but she has long passed from the warmth of love for kin. You will need many allies to lay her to rest, hero, but that is what I ask you to do.", + ["O"] = "Find and defeat the spirit of Palkeote.", + ["T"] = "The Lingering Mother", + }, + [60137] = { + ["D"] = "Do you know the legend of Palkeote, the grey mother?$B$BShe is the spirit of an ancient kodo who walked this land in the distant past, in the days even before the sundering. This land was green then, and she roamed it for many years with her mate and her children.$B$BOne day, one of her sons fell ill with a sickness that would not leave him. He fell further behind the pack with each passing day, until he finally collapsed northwest of here, near a river that has now gone dry.$B$BPalkeote stayed with her son, but she could do nothing to stop his passing. She would not leave even then. Her herd moved on and the seasons passed around her, but still she remained, until she herself passed away beside him. Her watch did not end even then, and she remains as a mighty spirit.$B$BThe Earthmother pities the suffering of all life, and she pities the suffering of mothers most of all. Palkeote\'s vigil has made her strong, but it is time for her to rest. Muster your allies and end her long watch, $C.", + ["O"] = "Find and defeat the spirit of Palkeote.", + ["T"] = "Palkeote", + }, + [60138] = { + ["D"] = "The kodo is the mightiest of the beasts of Mulgore, and therefore the greatest of its hunts. You are ready, young $C, to hunt them yourself.$B$BYou have probably already seen the kodo herds wandering Mulgore during your earlier travels. Find one of the herds, and challenge its matriarch and bull.$B$BKodos are not aggressive creatures, but they are fearsome when provoked – you will need all the skills you have learned to overcome their elders, $R.$B$BReturn to me when you have conquered them.", + ["O"] = "Find a herd of kodo in the fields of Mulgore and defeat its Matriarch and Bull.", + ["T"] = "Kodo Hunt", + }, + [60139] = { + ["D"] = "Why in the name of Doomhammer has this plague spread the land? Scorpids!$B$BIt didn\'t used to be this way, but now every time I leave Razor Hill, scorpids! In my tent, my shoes, my armor, always more scorpids! They\'re more of a nuisance to me than a real danger, but each time I get stung I have to drink a healing potion or head back to town for help. I’m sick of it!$B$BI\'m nursing my latest sting right now, but you look like you’re up to the task of a hunt. Head out and kill every scorpid you find! It\'s not like you\'ll have any issue finding them...", + ["O"] = "Kill 10 Armored Scorpid. Stomping on their tails is not required, but may make you feel better. Return to Yelnagi Blackarm in Razor Hill.", + ["T"] = "No More-pid!", + }, + [60140] = { + ["D"] = "Some people get all the luck!$B$B$B$B\"Oh, I lost my family, the plague took my home from me.\" On and on and on he goes! We get it! The plague took all of our homes and all of our families. But some of us at least came out of it with a jaw intact!$B$B$B$BIf you want to make yourself useful, bring me some bandages so I can hold what\'s left of me together!", + ["O"] = "Bring 10 Linen Bandages to Austil de Mon, in the Gallows\' End Tavern in Brill. You can make the bandages with the First Aid skill or buy them from someone with the skill.", + ["T"] = "Don\'t Lose (Part Of) Your Head", + }, + [60141] = { + ["D"] = "To the Nobles of Stormwind, a Paladin is an elite soldier recognized for acts of great valor on the battlefield and for smiting enemies of the kingdom with righteous fury.$B$BThese are not the qualities which define us as servants of the Light, however. It is for our kindness and compassion for the weak and the poor we owe the people\'s faith.$B$BEven the most simple act of kindness is the cornerstone of a Paladin\'s duty and legacy, what separates us from a fool with a cudgel.$B$BThere is a struggling family in the Eastvale Logging Camp in need of assistance stocking their food stores for the year. I take it upon myself to aid them when possible, but with the mounting threats across the land of late, I am bound by duty to Goldshire.$B$BPlease, aid them in my stead. Hunt the Rockhide Boars found to the south near the forest\'s edge along the riverbank, and bring their meat to the Eastvale Logging Camp.", + ["O"] = "Bring 8 pieces of Rockhide Boar Meat to Eldrin in the Eastvale Logging Camp.", + ["T"] = "Duty to the Light", + }, + [60142] = { + ["D"] = "Pardon me $c, might I ask a favor of you? I\'m sure my association with Grimrizz and his dark rituals does little to put you at ease, but I assure you I\'m no power-thirsty demon-dabbler! This doesn\'t suit me...$B$BTruth be told, I always wanted to be a blacksmith. No, not an engineer. Not all gnomes are engineers, you know! From the moment I laid eyes on the Great Forge, I\'ve dreamed of working beside the great Tormus Deepforge.$B$BThe suffocating heat of the forge\'s flames, the shrill cry of hammers striking hot iron, the glint of a finely crafted blade. Yes, nothing would make me happier!$B$BIf you\'re headed to Ironforge, won\'t you please take this letter to Tormus Deepforge for me? It\'s an application to join the Blacksmith Guild in Ironforge. Tormus should be near the Great Forge.", + ["O"] = "Bring Tog\'s Letter to Tormus Deepforge at the Great Forge in Ironforge.", + ["T"] = "A Change Of Heart", + }, + [60143] = { + ["D"] = "Have you ever stood at the edge of Teldrassil and looked out over the Veiled Sea? It\'s a magnificent sight, $N. I cannot recommend enough that you experience it at least once.$B$BI often travel with my sewing kit to the waterfalls near Wellspring Lake, right as they pour over the side of the trunk. It is a wonderfully serene spot where I may work in peace. The last time I was there, however, I was attacked by maddened timberlings and fled without my kit!$B$BThose tools have been with me for as long as I can remember, and I can\'t bear the thought of them tumbling over into the sea, lost forever. Would you kindly recover my kit for me, $N?", + ["O"] = "Recover Brannol\'s Sewing Kit and return it to him in Dolanaar.", + ["T"] = "Brannol\'s Sewing Kit", + }, + [60145] = { + ["D"] = "Hold, $N. I\'ve one more piece of intel for you if you\'re heading into the Echo Ridge Mine. One of my scouts spoke of a kobold much larger than the rest hiding deep within the heart of the mine.$B$BIts size suggests it may be coordinating the other kobolds, which makes its mere existence a great threat to Northshire. Slay it, and we may very well deal a decisive blow to the kobold infestation.$B$BI want you to go down into the Echo Ridge Mine and kill the foul creature. Your efforts will be rewarded appropriately.", + ["O"] = "Kill Snufflesnout, then report back to Marshal McBride in Northshire Abbey.", + ["T"] = "Down in the Ridge", + }, + [60147] = { + ["D"] = "You\'ve fought the vile familiars outside the coven, but the taint in the valley trails deeper.$B$BYou must go inside the coven and slay the felstalkers. Return and you\'ll be rewarded.", + ["O"] = "Kill 10 Felstalkers. Return to Zureetha Fargaze outside the Den.", + ["T"] = "Stalking the Felstalkers", + }, + [60148] = { + ["D"] = "We keep killing the spiders but we find that the number hasn\'t changed the next day. I think there\'s something off.$B$BGo down into the hollow and investigate. Come back in one piece and be rewarded.$B$BWe suspect that they have a broodmother.", + ["O"] = "Executor Arren wants you to investigate the Night Web Hollow and kill their broodmother.", + ["T"] = "Mother of the Hollow", + }, + [60150] = { + ["D"] = "The quilboar activity in the Brambleblade Ravine has been increasing lately, we suspect that they\'re preparing for an attack on Camp Narache.$B$BGo to the ravine and thin their numbers, they fight without honor and deserve none.", + ["O"] = "Grull Hawkwind in Camp Narache wants you to kill 6 Bristleback Quilboars and 4 Bristleback Shamans.", + ["T"] = "Bristleback Aggression", + }, + [60152] = { + ["D"] = "$N, I hear you are on your way to slay the scoundrels they call leaders of the worst crew of pirates, the Bloodsail Buccaneers.$B$BYou see these fools took a new member and they in their deluded mind think he will aid them greatly.$B$B$B$BI have a man on the inside, his name is Morgan Storm, look for a fellow that won\'t shank you on sight.", + ["O"] = "Find Morgan the Storm", + ["T"] = "They Call Him Morgan the Storm", + }, + [60153] = { + ["D"] = "As a double agent, I\'ve been on their ships when they took that orc on the ship, not much of a bright idea since I saw he has no real skill in combat, but if anything he\'s the perfect pirate, liar, gambler, drunk, you name it.$B$BThey named him Captain of a small fleet and they hope his combat experience would rub off the new recruits, bunch of nonsense.$B$B$B$BYou\'ll find him on one of the ships, kill him, and bring his head to the Baron, I will lay low, now go before anyone sees us!", + ["O"] = "Kill Ironpatch and bring his head to Baron Revilgaz.", + ["T"] = "The Iron Patch", + }, + [60154] = { + ["D"] = "Shortly after you returned from scouting the Jasperlode Mine, I received reports that a brood of spiders have been seen moving from Duskwood into the depths of the mine. Worse still, they\'re preying on the kobolds in the mine, giving them an abundant source of food with which to increase their population.$B$BKobolds, the Defias, and now spiders? We cannot afford to spread our forces any thinner to deal with yet another threat. Return to the Jasperlode Mine and clear out the infestation before they encroach upon the whole of Elwynn Forest!", + ["O"] = "Kill 8 Mine Spiders in Jasperlode Mine northeast of Goldshire, then return to Marshal Dughan in Goldshire.", + ["T"] = "Jasperlode Infestation", + }, + [60155] = { + ["D"] = "Crab legs - they are such a delicious thing. They go well with everything! Undermine Claw Chowder, Goldthorn Tea, and even other crab legs! Maybe you\'re strong enough to catch them and get the crab legs I need?$B$BYou can find them at the Wild Shore which is directly south of Booty Bay. Be careful, though. I heard the shore got invaded by Bloodsail Buccaneers. That would explain why my supplier stopped coming.", + ["O"] = "Bring 10 Southern Sand Crawler Legs to Innkeeper Skindle in Booty Bay.", + ["T"] = "South Seas Delicacy", + }, + [60160] = { + ["D"] = "Hey, buddy! You’re coming along pretty well. I’d even say you’re the talk of the town. Seems like you\'re ready for the next big step in your career. Here, let me show you how to tame your very own pet.$B$BExerting authority over another creature is a difficult task. I wouldn’t be surprised if it takes you multiple times, so don’t get discouraged, pal.$B$BTry your luck on one of the Blackvenom Scorpids to the east. They should be challenging enough for you.", + ["O"] = "Tame a Blackvenom Scorpid using the Taming Rod and return to Mayten Boomrifle at Rustgate Ridge.", + ["T"] = "Taming the Beast", + }, + [60161] = { + ["D"] = "Good, good. Just taming one beast is not enough to understand the concept of master and servant however. Your pet can be much more than just a tool for your ambitions. You will quickly learn that you attach yourself to them quicker than you’d like to admit.$B$BFar to the northeast are Muckreef Crawlers. Taming an aquatic beast is different from a land animal. Test your luck with these crabs and come back with your crustaceous companion.", + ["O"] = "Tame a Muckreef Crawler using the Taming Rod and return to Mayten Boomrifle at Rustgate Ridge.", + ["T"] = "Taming the Beast", + }, + [60162] = { + ["D"] = "Alright, on to the last one. Personally for me, taming any flying animal is the most difficult. They’re just too evasive. But perhaps you are more skilled than I am in that regard. From experience, however, I can tell you this: the most elusive beasts make for the greatest compatriots.$B$BNorth of here near the Water Hole and to the east you’ll find Ashfeather Swoopers, tame one and return to me. This is your final lesson. Give it everything you have!", + ["O"] = "Tame a Ashfeather Swooper using the Taming Rod and return to Mayten Boomrifle at Rustgate Ridge.", + ["T"] = "Taming the Beast", + }, + [60163] = { + ["D"] = "Unfortunately, this is where my knowledge ends, training these beasts isn’t really my forte. However, I know who can teach you these things. Ormak Grimshot in Orgrimmar’s Valley of Honor is much more qualified for that. You can catch a ride from Gazzik’s Workshop to Sparkwater Port, from there it\'s just a small walk up to the capital. I heard he spends most of his time near the Hall of the Brave.$B$BBest of luck to you, my friend! I’ll miss you and your glorious BOOMS dearly.", + ["O"] = "Speak with Ormak Grimshot in Orgrimmar.", + ["T"] = "Training the Beast", + }, + [70000] = { + ["D"] = "The Mage District is always so quiet, isn\'t it $N? Well if you are to ignore that heavily insistent calling to visit the Blue Recluse of course. You have grown into a very capable mage, many whisper your name and some have spread rumors about you.$B$BAnd so it reached a very unlikely fellow, one I would tell you not to approach but after all it is your call to make.$B$BSitting atop his tower in Azshara, there\'s an Archmage that has heard of your growth and name and wishes to meet you personally. Xylem is known to take in apprentices if they are found worthy enough of his teachings, maybe this has something to do with it.$B$BI advise you to be careful, the man is very dangerous. To reach his tower you must find his apprentice, Sanath Lim-yo, he\'s known to be a very joyful and pleasant elf.", + ["O"] = "Visit Archmage Xylem in Azshara.", + ["T"] = "A Special Kind of Summons", + }, + [70001] = { + ["D"] = "You are the first I have personally summoned in years, $N, my expectations are quite big. You\'ve probably figured it out by now, I would like you to become my apprentice. But you must prove yourself worthy of my knowledge.$B$BGather your friends and your enemies and venture into the sands! In the Ruined Temple of Ahn\'Qiraj a creature that devours magic may be found, its name is Moam, slay it and carve out the piece of obsidian on its forehead.$B$BSucceed and I will help you break out from your shell.", + ["O"] = "Bring a Perfect Obsidian Shard to Archmage Xylem.", + ["T"] = "Lost to the Sands", + }, + [70002] = { + ["D"] = "We have kept a close eye on your growth $N.$BYou have outwitted several demons under your command, conquered many foes, and kept a lot of allies at your side. There is very little any of us may teach you at the moment, you have gone above and beyond any of our expectations.$B$BHowever, there is someone that may yet have something to teach you about the ways of the warlock.$BVenture to the Blasted Lands and seek the one called Daio, there is a slight chance you might\'ve already met.", + ["O"] = "Venture to the Tainted Scar and find Daio the Decrepit.", + ["T"] = "The Guidance of a Mad Man", + }, + [70003] = { + ["D"] = "Your task will not be an easy one but the reward will be worth the trouble.$B$BThe Jungle trolls of Stranglethorn Vale are attempting to bring back their God to life, Hakkar the Soulflayer, I assume someone already had tasked you to put a stop to them.$B$BWhat I ask is a bit different, bring me back his essence, you will know what I am talking about as you will see it. You will need this Essence for what I am gonna teach you, know that it will be of great use to you and your allies.$B$BNow go, gather your allies, summon your demons and conquer that old pathetic God.", + ["O"] = "Slay Hakkar the Soulflayer and bring the Well Essence back to Daio the Decrepit.", + ["T"] = "Draining the Soulflayer", + }, + [70010] = { + ["D"] = "Free Specialization Switch for 500g once", + ["O"] = "", + ["T"] = "Dual Spec", + }, + [70020] = { + ["D"] = "My little brother, Taupo, is a gifted druid and more accomplished than I would ever hope to be but he is still my little brother.$B$BHe was on his way to the Warsong Lumber Camp to help with the demonic corruption among other things. I fear he might find trouble as he has to pass through Felfire Hill.$B$BPlease, find my little brother, I would do it myself but I do not wish him to think I find him incapable, yet I still worry. He left not so long ago, following the main road east, that is the path to the Lumber Camp.", + ["O"] = "Find Taupo Foreststrider, Loruk\'s brother at the beginning of Felfire Hill.", + ["T"] = "A Brother\'s Worried Mind", + }, + [70021] = { + ["D"] = "It was Earthmother\'s blessing to be born with such a worried elder brother, and as fate has it there you are, just the help that I needed.$B$BWhile I was making my way to the Lumber Camp I saw this Tauren bravely fight those demons and I have stopped to tend to his wounds. My skills helped stop his bleeding, but we need a salve to fully mend him.$B$BIn the river you will find Boglings, slay them and bring me the cores, they will help bring our newest friend back on his feet, and do not worry $N, this is all in the name of balance.", + ["O"] = "Bring Taupo 10 Bog Creatures\' Cores.", + ["T"] = "Taupo\'s Duty", + }, + [70022] = { + ["D"] = "I was on my way to the Warsong Lumber Camp when I had my encounter with the demons, were it not for this druid I wouldn\'t have made it.$B$BI have a very important report addressed to the stationary Commander in charge, Commander Grushak, I would hurry right away but the wounds have yet to release me of my pain and my spear was lost in the battle.$B$BI ask you to find it while Taupo heals me. While you search for it - spare no demon.", + ["O"] = "Kill 10 Searing Infernals and 10 Felguards.", + ["T"] = "Norvok of the Spear", + }, + [70023] = { + ["D"] = "I am aware I am not going anywhere anytime soon $N, there is no need for you to stare at me that way.$B$BYou will have to give my report to Commander Grushak, tell him I sent you, he will be glad to have you by his side, he\'s a bit strict but that\'s what will keep you alive out there. Seek him in the first tower as you reach the Lumber Camp.$B$BAs a personal request however, do keep an eye out for my spear, it carries years worth of history, been passed through my lineage from the first Hawkspear to the last and I do not wish it to be lost at the hands of demons.$B$BTravel safe my friend and may the Earthmother guide you.", + ["O"] = "Report to Commander Grushak at the Lumber Camp.", + ["T"] = "Report to Commander Grushak", + }, + [70024] = { + ["D"] = "The camp is as productive as the day it was built from the ground, which frankly doesn\'t mean much at all.$B$BThe Wildthorn Lurkers have ascended upon our camp and are giving the peons and laborers a hard time, while my scouts are giving their all to slay them it is not enough.$B$BGo help the cause, $N, after all I take you bringing this report as volunteering your aid, clean the camp of the wildthorn menace and I will see you rewarded.", + ["O"] = "Kill 10 Wildthorn Lurkers in Warsong Lumber Camp.", + ["T"] = "Wildthorn Menace", + }, + [70025] = { + ["D"] = "Those knife eared bastards are trying to force us out of the woods, they\'ve sent a squadron of stalkers that hide around our fields and murder our peons, they must be stopped!$B$BGo get your hands dirty, leave none alive, and if anything make sure more of the peons don\'t die.", + ["O"] = "Kill 20 Ashenvale Stalkers.", + ["T"] = "Knife Eared Stalkers", + }, + [70026] = { + ["D"] = "With most of the tasks done, I only have but a favor to ask of you, our poor peons have been wearing the same tattered clothing since we\'ve come to this damned forest, they can\'t take another day in those rags and I most certainly won\'t be the one blamed for naked peons chopping wood!$B$BI need you to hunt and skin some bears for me, North of Splintertree Post and in its immediate vicinity to the left you will be able to find bears, grab enough for our leatherworker to craft new cloths for those poor miserable souls, but remember $N, only hunt the eldest of the bears.", + ["O"] = "Collect 10 Elder Ashenvale Bear Pelts.", + ["T"] = "Peon\'s Wardrobe Makeover", + }, + [70027] = { + ["D"] = "The fields are clear, the peons seem happy and the productivity is already going way better than they used to.$B$BThat\'s exactly why I am sending you to another mission. You seem eager to aid and frankly the Farseer needs all the help he can get.$B$BHe\'s a cranky old orc, don\'t even for a second consider his frustration as weakness. He will task you with a harsh job but I do not doubt you will do well. Go now and give him this parchment.$B$BYou\'ll find him in the keep, north-east of here.", + ["O"] = "Deliver Commander Grushak\'s report to Farseer Grimeye.", + ["T"] = "Farseer Grimeye", + }, + [70028] = { + ["D"] = "What do you see here $N? I will tell you what I see; a roaming pack without its Alpha. Simple minded buffoons who lost their commander.$B$BSometimes I ask myself what would have happened if Hellscream… doesn\'t matter now.$B$BFalling down into the Demon Fall Canyon you will see numerous spawns of the Burning Legion. As you should know, a great demon fell there, hence the namesake, I suppose.$B$BYour mission is clear, yet, not so simple. Wreak havoc and cull their numbers. I expect you do whatever you see fit to leave none alive.", + ["O"] = "Slay 10 Mannoroc Lashers, 10 Searing Infernals and 10 Felguards. Report to Farseer Grimeye.", + ["T"] = "Demon Fall Canyon", + }, + [70029] = { + ["D"] = "Our grunts found one of these Night Elves stalking about. The deformed creature had a letter on its corpse. I will spare you the disgust I had while trying to decipher that abomination of a language.$B$BAbove the canyon you should be able to find a Barrow Den, one of the holes these knife-eared mongrels like to dig. Be mindful not to go to the Dor\'Danil Barrow Den: The one you seek is found in the ridge. From what I could gather of this piece of paper, a great menace can be found at its lowest level.$B$BFind out what\'s hiding there and return to me as swift as the wind.", + ["O"] = "Discover the real menace.", + ["T"] = "What We Know", + }, + [70030] = { + ["D"] = "We need to...$B$B$B$BWe will need the help of an old \"friend\" of mine. Nothing beats a Witch Doctor\'s mojo so I am sending you to Stonetalon.$B$BFind Jin\'Zil and give him this letter, his mojo is potent enough to shrink the Dreadlord and weaken it enough for you to slay it.$B$BHowever! He will have a task for you, probably something easy and meaningless so don\'t waste too much time over there, we have a dreadlord to slay.", + ["O"] = "Find Jin\'Zil and give him the letter from Grimeye.", + ["T"] = "A Very Unpleasant Troll", + }, + [70031] = { + ["D"] = "Grimeye wants my mojo to kill a Dreadlord eh?$B$BSure mon, Jin\'Zil will help you if you help Jin\'Zil, this stew needs more stuff!$B$BYou bring the stuff and I give you the mojo.$B$BI will need some melon juice, dwarven mild, wild hog shank and some soothing spices!$B$BGo, Jin\'Zil will stir the cauldron and wait for you!", + ["O"] = "Collect all ingredients for Jin\'Zil\'s stew.", + ["T"] = "Jin\'Zil\'s Stew", + }, + [70032] = { + ["D"] = "Here mon take this package and deliver it to Grimeye, Jin\'Zil took the liberty of adding more than the mojo you needed for the old cranky orc.$B$BJust give him my regards and tell me he still owes me coin from when we rolled in the bones!$B$BI am never gonna forget it!", + ["O"] = "Deliver the package to Farseer Grimeye.", + ["T"] = "The Good Mojo", + }, + [70033] = { + ["D"] = "This is it $N, your most dangerous task yet, but I am more than sure you will succeed.$B$BYou showed courage I have not seen in so long, may the ancestors guide your steps and may you return unharmed.$B$BYou have my blessings and the ancestors at your side.$B$BRemember that where you stand a great warrior once stood and you too shall walk in his steps, slay them with pride in your heart!", + ["O"] = "Kill Diathorus the Seeker and take his head back to Farseer Grimeye.", + ["T"] = "The Seeker\'s Demise", + }, + [70034] = { + ["D"] = "Norvok is in no condition to be out looking for a family heirloom, but I worry that perhaps he may attempt to venture out before he is fully healed.$B$BIf you could search for any trace of the spear that he left behind, it would be greatly appreciated, by both Norvok and myself.$B$BThe demons to the east would be your best bet in finding it, so go swiftly!", + ["O"] = "Recover any trace of Norvok\'s Weapon for Norvok Hawkspear in Ashenvale.", + ["T"] = "Hawk\'s Beak", + }, + [70040] = { + ["D"] = "I never gave up on my dream, $N, my mission still stands even in death, I lived to forge and help our proud soldiers protect themselves, alas, you too will help me to do that.$B$BOur men face peril down to Silverpine Forest, the last of the Scourge, the magi of Dalaran and the foul beasts Arugal summoned upon our lands.$B$BI\'d imagine the Sepulcher it\'s short supplied, bring them these items. You will be expected.$B$BUpon delivery you will be rewarded with plans for a new set of armor, so you too will be ready to face our enemy.", + ["O"] = "Basil Frye wants you to bring 4 Runed Copper belts and 4 Heavy Copper Mauls to Edwin Harly in Silverpine Forest.", + ["T"] = "Reinforcing The Sepulcher", + }, + [70049] = { + ["D"] = "It seems that drunkard is getting quite the laugh from me paying you out of pocket, $N. This dwarf wants me to repair some tents! Do I look like I know how to repair a tent?! And he\'s cracking jokes about how even an ogre knows how to pitch a tent!$B$BLook, $N, help me out here so I don\'t make a complete fool of myself.$B$BWe\'re going to need some cloth to repair these tents and apparently those ogres to the west may have what we\'re looking for. But, believe me, I have no idea what that dwarf is talking about!", + ["O"] = "Gather 10 pieces of Sturdy Tent Cloth to Noli in Badlands.", + ["T"] = "Pitch a Tent", + }, + [70050] = { + ["D"] = "That drunken fool! He\'s absolutely outrageous! I am here for serious matters, not mundane, meaningless tasks. I will not stand for this, no, no!$B$BPlease, help me out. I\'d rather pay you than give that man the satisfaction that he convinced someone of my intellect to do this laborsome chore.$B$BThere should be some old lumber around. This desolate place has no trees, it\'s just a barren wasteland as far as I can see! Try and find any lumber you can and bring it back to me so we can prepare a fire.", + ["O"] = "Gather some dry fire wood and return to Noli in the Badlands.", + ["T"] = "Ms. Fix-it!", + }, + [70051] = { + ["D"] = "Psst, buddy. Come here for a second, will you?$B$BHey, how\'s it going today? I got myself some lucrative information to share with you, so listen up. You see, there\'s these sunken ships, old Alliance boats that supposedly still got fuel left in them and ya know fuel is a valuable commodity for us goblins. They\'re just sitting there right off the coast waiting for you!$B$BBring me whatever you manage to salvage from the shipwrecks and I\'ll be sure to make it worth your while.", + ["O"] = "Bring 5 Barrels of Oil to Pezzik Villamar in Razor Hill.", + ["T"] = "[Deprecated] Oil-Stained Gold", + }, + [70052] = { + ["D"] = "These pirates are an infestation to our port, even worse than the rats we have to exterminate each month.$B$BIt\'s absolutely ridiculous, $N.$B$BWhat\'s even worse is the fact that some foolish trader decided to do business with them. Whatever idea crossed his small brain to do that I will never know.$B$BWhile you\'re out there hunting for pirates, be on the lookout for Tazan and take care of him as well.$B$BCome see me after and I\'ll be sure to reward you.", + ["O"] = "Kill Tazan and return to Wharfmaster Dizzywig in Ratchet.", + ["T"] = "Trader\'s Misfortune", + }, + [70053] = { + ["D"] = "Something\'s wrong with the threshadons, $N. They\'re out from hiding and are eating all the fish of the lake! They\'ve been harming our business for a while now, and soon there may be nothing left.$B$BThey are beautiful creatures... We\'ve shared the lake for generations, so it pains me that we must take such extreme actions against them. I\'ve come to accept that we must cull their numbers so we can keep our livelihoods.$B$BIt\'s only expected of me to ask an outsider to do what we cannot and are not willing to do.", + ["O"] = "Slay Threshadons in Loch Modan and return to Warg Deepwater in Loch Modan.", + ["T"] = "The Loch Menace", + }, + [70054] = { + ["D"] = "These lands aren\'t what they used to be, $C. Monsters have taken what\'s left of it, both the living and the dead.$B$BThere have been reports of grave robbers in the cemetery at Raven Hill. A crime this vile and depraved cannot go unpunished.$B$BPlease, head west to the cemetery and investigate this matter. If you find any grave robbers, get rid of them.$B$BThe place was already desecrated by the Scourge. The living shouldn\'t disturb the dead even further.", + ["O"] = "Investigate the grave robbers\' activity at the cemetery.", + ["T"] = "Grave Injustice", + }, + [70055] = { + ["D"] = "I can only think of one person with those initials and that would be Sven Yorgen. He used to own the Yorgen Farmstead. In all of the chaos the farmstead was lost to the Defias Brotherhood who slowly made their way from Westfall.$B$BI assume Sven has nothing to do with the grave robbers, but the Defias might. Seems to me it\'s only a coincidence. In any case, the Defias must be brought to an end. We have enough on our plate when it comes to enemies and culling some of their numbers will bring peace to those who have yet to given up on their home.$B$BTherefore I ask that you slay any Defias in your way. The Night Watch has seen their activity in Addle\'s Stead prior to your investigations, so perhaps it\'d be best to start there, $N.", + ["O"] = "Slay members of the Defias Brotherhood in Duskwood and return to Watcher Paige.", + ["T"] = "Defias of Duskwood", + }, + [70056] = { + ["D"] = "You have done me and the people of Duskwood a great favour, one I would like you to report to my commander.$B$BI am more than sure she will like to hear of your success against the Defias, and she will probably have another job for you.$B$BTake this parchment to Commander Althea Ebonlocke. She is stationed in front of the town hall so she\'ll be hard to miss.$B$BOh, and, $N, thank you.", + ["O"] = "Bring Watcher Paige\'s report to Commander Althea Ebonlocke in Darkshire.", + ["T"] = "Report to Darkshire", + }, + [70057] = { + ["D"] = "I hear Sven has taken shelter in a camp northwest of the Raven Hill Cemetery. I fear he\'s filled with regrets and anger, both at himself and those who took everything from him.$B$BConsidering we\'ve found this shovel of his among the ruins of his lost home, I think it would be appropriate to see it returned to him.$B$BPlease, be careful when you return this to Sven. He may be relieved to see it, or he might just break it in half in anguish. Who knows.$B$BThank you again, for all you\'ve done.", + ["O"] = "Bring the shovel to Sven Yorgen.", + ["T"] = "A Simple Memory", + }, + [70058] = { + ["D"] = "You have proven your worth to Paige, and frankly we can always use more hands in the Night Watch.$B$BWhile our forces focus on the worgen and the Scourge we would like you to take a trip to the south to Vul\'Gol Ogre Mound and reduce the ogre population.$B$BThere are only a few details that we know about the mound, but what we do know is that we need to be rid of the ogres. They are a threat to our scouts and to the roads leading to Westfall and Stranglethorn.$B$BThere\'s a reward waiting for you when you return, of course.", + ["O"] = "Kill Splinter Fist Ogres in the Vul\'Gol Ogre Mound.", + ["T"] = "Law & Ogre", + }, + [80100] = { + ["D"] = "Alright, pal, listen up! I know this is your first job for the Venture Company, so I\'ll speak real slow for ya.$B$BWe\'re up here to find a valuable treasure, y\'hear? Supposed to be worth more than half the jewels in Undermine, and Boss can\'t wait to get his hands on it. The last crew he sent up here never sent anything back.$B$BThievin\' jerks think they\'re gonna cut and run from the boss? You better believe he\'ll track them down and have their hides. Boss says don\'t come back empty-handed, so let\'s get to work.$B$BWe busted up a few gizmos on our flyer gettin\' down here, but luckily for us, the last crew seems to have left their bots behind. Run around and grab some whizmagigs from them, would ya?", + ["O"] = "Gather 8 Whirling Whizmagigs from Whirling Whizz-Bots, then return to Nert Blastentom.", + ["T"] = "A New Ad-Venture", + }, + [80101] = { + ["D"] = "This is the wooooorst!$B$BThe Venture Co. was supposed to be about fun, adventure, and sweet, sweet profits, but all we\'ve done so far is fly up to the middle of nowhere and sit around without any food.$B$BListen, I don\'t care what Nert says. I\'m not workin\' any more without dinner. You\'re going out into the forest, aren\'t\'cha? Then, you\'re gonna bring me back some meat from those buzzards. It\'s no Booty Bay steak, but you let ol\' Sprat show ya how it\'s cooked!", + ["O"] = "Bring Sprat Nozzleton 6 pieces of Plateau Vulture Meat.", + ["T"] = "Venture Vultures", + }, + [80102] = { + ["D"] = "You\'ve gotta be kidding me. Here we are, a mile above every mountain pass, and there\'s elves up here?$B$BListen, kid, elves are the most irrational creatures in the world. A good goblin, he looks at a forest and he sees profit! But what does an elf see? Bears? Owls? Little baby squirrels with the big eyes? It makes me sick.$B$BCongratulations, you get to be the muscle today. Go out and cut down a few tree-huggers, would ya? And some of their weird living plants while you\'re at it. I don\'t trust anything that walks around on vines.", + ["O"] = "Kill 7 Stonetalon Environmentalists and 5 Highpeak Lashers, then return to Nert Blastentom.", + ["T"] = "Green Versus Green", + }, + [80103] = { + ["D"] = "Well, I guess we figured out why the elves are up here: The whole dang forest up ahead is on fire! And it\'s gotta be goblin-made, too.$B$BNo one else uses the kind of oil that burns that long! That\'s Undermine stuff, kid. There ain\'t no way a gnome could get their hands on it. I don\'t know what\'s goin\' on in this site, but I don\'t like it.$B$BGo out there and bring back some of that oil. Maybe you\'ll find some clues about what happened before we got here. If not, at least we\'ll have topped off our own oil supplies!", + ["O"] = "Collect 8 Living Petroleums from Risen Oilblazes in the Scorched Stand, then return to Nert Blastentom.", + ["T"] = "Risen Oilblazes", + }, + [80104] = { + ["D"] = "If there\'s one thing I like better than crackin\' skulls for profit, it\'s cookin\' up brand-new mechanical marvels. There\'s a whole butcher\'s shop of parts out there in those burnt woods, and buddy, my mouth is waterin\' for a big old mechanical feast!$B$BI don\'t know why the other expedition would leave so much behind and I don\'t care - bring me some of those parts!", + ["O"] = "Collect 5 Mechanical Drumsticks from the mechanical chickens and return to Sprat Nozzleton.", + ["T"] = "The Other White Mech", + }, + [80105] = { + ["D"] = "$B$B... stupid boss didn\'t tell us anythin\' about this place. Not a norm ... tomb. Somethin\' bad buried ... center of the forest ...$B$B", + ["O"] = "Bring the Oil-scorched Note to Nert Blastentom back at the landing site.", + ["T"] = "Ventured Too Far", + }, + [80106] = { + ["D"] = "Okay, look. A treasure hunter is gonna find some haunted forests from time to time, see? And we can\'t go back to the boss empty-handed. I mean CAN\'T. Like he\'ll have us shipped off to the mines, can\'t.$B$BSo here\'s what we\'re gonna do, yeah? We\'re gonna try and grab the loot and get outta here quick-like. You\'ve done good work so far, kid, so I\'m counting on you for this job.$B$BThere looks to be more of the last crew\'s mechs further in this valley and, uh... some vultures that don\'t look real natural. Clear \'em out, and we\'ll see what\'s in there.", + ["O"] = "Kill 5 Animated Shredders and 5 Muttering Vultures in the Grumbling Grove.", + ["T"] = "The Grumbling Grove", + }, + [80107] = { + ["D"] = "I don\'t envy you right now, kid. See, those weird vultures aren\'t the worst thing in the woods. Some of the other bruisers were havin\' a look around, and they found a tomb that looks like it\'s from Uldaman for how old it is.$B$BTried to get close, but they heard some kind of unholy sound coming from inside. These guys have been around for some of the boss\'s \"persuasive\" interviews before, and they\'ve never heard sounds like that. Said it echoed around the hills all unnatural-like, as if it was bouncin\' off trees that weren\'t there.$B$BI\'ll fight elves. I\'ll fight plant monsters. I\'ll fight our own blasted tanks! But I am not messing with some ancient cursed tomb. I want you to go down there, find out what\'s behind those doors, and deal with it. Do that for me, and you and me are chums for life. There may even be a promotion in your future.", + ["O"] = "Investigate the tomb in the Grumbling Grove, then return to Nert Blastentom.", + ["T"] = "Shadow On The Plateau", + }, + [80108] = { + ["D"] = "We\'re in a tough spot. The boss is scary, but he ain\'t worth fighting hordes of ghosts or some ancient curse. When he finds out we bailed on this gig, he\'ll have us hunted to the ends of Azeroth.$B$BAs much as it pains me to say, we\'re gonna have to cower and hide behind some real muscle if we don\'t all want to end up six feet under.$B$BThere\'s only one force in Azeroth that even the boss wouldn\'t cross: The Horde. Sure, they don\'t like us, but we\'ve got better odds with the Horde than with the boss!$B$BWe ain\'t got many choices. No one else would take a bunch of deadbeat Venture Co. refugees. If there\'s even a chance we can win them over, we\'ve at least gotta try.$B$BIt\'s that or spend the rest of our lives on the run. Time for us to go straight, $N.", + ["O"] = "Join Nert Blastentom and travel to Durotar to join the Horde.", + ["T"] = "Me Not Any Kind Of Orc", + }, + [80109] = { + ["D"] = "Our situation ain\'t good. If the Horde won\'t help us, I don\'t know where else we could go. But I\'ve got a plan, see?$B$BAn old friend of mine is the cook at Razor Hill, the orc town just below that guard tower. Torka and I write now and then, and he ain\'t above bragging about his cooking.$B$BHe went so far as to say his boar ribs could bring the commander there to his knees. We\'re counting on that.$B$BHunt some of these boars and bring their meat to Torka. We\'ll have him cook \'em up and put in a good word for us, yeah? Any goblin will tell you one good word can take you all the way to the top!", + ["O"] = "Collect 5 Chunks of Boar Meat and bring them to Cook Torka in Razor Hill.", + ["T"] = "Zug-zug Or Somethin\'", + }, + [80110] = { + ["D"] = "Nert is a good friend, and despite his choice of employment, I don\'t think he\'s a bad person. Convincing Gar\'Thok of the same, though... And getting you all into the Horde? That\'s a tall order!$B$BGar\'Thok may love my boar ribs, but I\'d like to think he\'s got a better head on his shoulders than to recruit former Venture Co. crew in exchange for a meal.$B$BI\'ll cook these up for you at least. If you\'re set on this plan, take my advice: Tell Gar\'Thok your lot are refugees willing to serve. Do not mention the Venture Co. at all.$B$BGive Nert my regards.", + ["O"] = "Bring Torka\'s Boarbecue Ribs to Gar\'thok in Razor Hill and ask him to help you join the Horde.", + ["T"] = "Green Goes Red", + }, + [80115] = { + ["D"] = "Hey, $N! Employee of the day! How\'s about an unpaid break?$B$BWhile you were busy doing my... I mean YOUR job, Grizzie the Enforcer came around looking for you. Said something about him owing you a favor?$B$BHere, he mentions it in this letter... which I may or may not have dropped into my buzzard wings.$B$BDon\'t take too long, though. Your break is already half over!", + ["O"] = "Read the Grease-stained Letter and speak to Grizzie the Enforcer.", + ["T"] = "Grease-stained Letter", + }, + [80116] = { + ["D"] = "Glad you\'re back, $N. You know I love me some gossip, and I bet you do, too. Maybe you\'d care to shed a little light on why your name is on the lips of such bad news?$B$BI hear you owe Leyti Quicktongue some money. Did you gamble all of your savings back home or what?$B$BIs she your loan shark? Do I have to pay for your health insurance? That\'s not gonna happen, pal.$B$BLook, just take this letter she left for you. I don\'t want to hold this thing anymore, especially with that nasty looking green stuff dripping off the corner. Probably acid or poison or something.$B$BShort break, and I mean short!", + ["O"] = "Read the Ooze-covered Letter and speak to Leyti Quicktongue.", + ["T"] = "Ooze-covered Letter", + }, + [80117] = { + ["D"] = "Back for more work, $N? I appreciate your dedication to all this scut work, but Mayten Boomrifle is looking for you. Gave me this letter for you and everything, said something about teaching you some proper shootin\'!$B$BHeh, like you need some so-called expert to teach you how to launch metal projectiles or harness explosions. We\'re goblins!$B$BWhatever... Here, take this letter and go pay him a visit. Hurry it up. No stalling, or no meals for you today!", + ["O"] = "Read the Leather-covered Letter and speak to Mayten Boomrifle.", + ["T"] = "Leather-covered Letter", + }, + [80118] = { + ["D"] = "Great work so far, $N. I knew having a mage in our labor force would come in handy. Speaking of handy, how\'s about conjuring up some water for your poor parched foreman?$B$BWhat? You don\'t know how to conjure water yet? You kidding me?$B$BLucky for you, ol\' Nert\'s got a letter for you from someone who can help. Wizette Icewhistle\'s looking for you, so maybe she can teach you some spells.$B$BGet moving, and don\'t come back without some sparkling water!", + ["O"] = "Read the Fancy Letter and speak to Wizette Icewhistle.", + ["T"] = "Fancy Letter", + }, + [80119] = { + ["D"] = "$N, pal! Back so soon? W-we\'re pals, right? Heh heh...$B$BBeing honest, you kinda give me the creeps, not unlike Amri Demondeal. She came looking for you, and boy I hope I never have to speak to her again.$B$BYou, uh, do all that freaky demon stuff, too? With the green fire and blood circles and such?$B$BLook, I didn\'t see nothin\'! J-just take this letter Amri left and go do your business. Take as long as you want!", + ["O"] = "Read the Awful-looking Letter and speak to Amri Demondeal.", + ["T"] = "Awful-looking Letter", + }, + [80120] = { + ["D"] = "Hey, you! Yeah, I\'m talkin\' to you, pal!$B$BI\'ve been picking up our crew\'s trash all day long and I could really use a break.$B$BSay, hows about you clean up for a while?$B$BI\'ll be over here in the shade takin\' a quick snooze. When I wake up, I expect this place to be spotless.$B$BNow get to work!", + ["O"] = "Kazznik has asked you to collect the Trash littered throughout the worksite.", + ["T"] = "Garbage Man", + }, + [80121] = { + ["D"] = "Nert might be afraid of a little shadow magic, but you and I know what we\'re doing, yeah?$B$BIt\'s time for you to learn how to summon your first demon! Yeah, I know we\'re in the middle of a crisis, but what better time to have a demon\'s aid?$B$BBesides, we\'re warlocks. Crises are what we\'re about! That and I\'m contractually obligated to arm you to \"enforce\".$B$BWhile you\'re out on Nert\'s task, I want you to look for something that radiates darkness. That energy condenses into these purple crystals, see? Try to pinch one of those without getting yourself killed.$B$BBring me back one of those crystals, and I\'ll teach ya how to summon an imp. Fair trade, yeah?", + ["O"] = "Collect a Howling Crystal from one of the creatures of the Grumbling Grove.", + ["T"] = "[DEPRECATED] This Is In My Contract", + }, + [80200] = { + ["D"] = "At last, $N, you are awake. It would seem that we survived the perilous journey south from the remnants of Lordaeron. We will have to make the best of our situation and work to make this our new home.$B$BThere is much to be done if we are to make this more than a temporary settlement for our people, $N. This lodge has only had to accommodate a handful of hunters and hasn\'t seen much traffic since the Second War, thus why its maintenance is questionable at best.$B$BVyrin Swiftwind resides in the lodge and has held station here much longer than any of us. If we are to make a home for ourselves here, then we should seek her counsel and ask where to focus our efforts.", + ["O"] = "Talk to Vyrin Swiftwind in the Farstrider Lodge.", + ["T"] = "[DEPRECATED] Farstrider Lodge", + }, + [80201] = { + ["D"] = "Wagons full of refugees have arrived from the north, and more are surely on the way.$B$BBecause this was used as a dwarven hunting lodge, the larders are fully stocked with meat. Unfortunately, most of the meat was in the process of being salted and the lodge does not have ample firewood. Some of the refugees have already begun chopping wood for the lumber supply.$B$BGo out and collect some of the bundles of wood they\'ve prepared. You\'ll find them near the trees growing around the lodge, but be careful not to venture too far out into the valley: The creatures of Loch Modan are too dangerous for a young $c such as yourself.", + ["O"] = "Collect 8 Bundles of Wood outside of the Farstrider Lodge.", + ["T"] = "Stocking Up on Wood", + }, + [80203] = { + ["D"] = "Excuse me, $R, can I have your attention for a moment?$B$BI am Kathy Wake. I am a part of a branch of the Alliance military responsible for ensuring the safety and prosperity of Alliance lands. We\'ve recently been sent here with a large contingent of men. Although I personally believe we are needed more back home, it is not my place to question orders.$B$BOur mission has been to ensure your people arrived safely to the lodge, and also to get you settled in. However, it is not easy to keep everyone safe from the dangers out here. While my men have been dealing with the larger problematic elements in the region, smaller ones have been left unattended for too long, and now they have been allowed to run rampant.$B$BThe refugee caravans could be in danger if something is not done quickly. I take it you can fight? If so, please go out there and take care of the troggs that have been infesting the area around the lodge!", + ["O"] = "Kill 8 Trogg Vermin.", + ["T"] = "Clearing Out Vermin", + }, + [80204] = { + ["D"] = "You\'re less wet behind the ears, now, which is good.$B$BThe vermin you\'ve defeated are only a nuisance compared to other things that lurk in this valley. Some of the recent refugees who arrived last night reported seeing a short-statured figure with glowing red eyes in the woods as it stalked the area.$B$BSome brushed it off as fatigue from the long travel, but I believe it may be the forward scout of a Shadowforge raiding party.$B$BThe Shadowforge are one of the Dark Iron clans. They are corrupted red-eyed dwarves who are at odds with the kingdom of Ironforge. Investigate the area to the west where the sighting happened, but do not stray too close to the digsite. It is infested with troggs far stronger than those vermin that you fought earlier.$B$BRemember: do not engage. If you find something, confirm your sighting and immediately return here.", + ["O"] = "Investigate the area to the southwest of the Farstrider Lodge.", + ["T"] = "[DEPRECATED] Gathering Intel", + }, + [80205] = { + ["D"] = "Hello again, $N.$B$BThe wood you gathered helped feed many refugees. However, the situation is far from resolved.$B$BThe drinking water stores are running low. Soon, we will not be able to care for the refugees, but luckily there is a well to the north near the border of this valley. Go there, and fill this barrel with water.$B$BThere are volunteers trying to dig a new well here, but that will take time.$B$BPlease, $N, I know I can count on you!", + ["O"] = "Fill the Empty Barrel with water from the well.", + ["T"] = "Slaking Their Thirst", + }, + [80206] = { + ["D"] = "$B$BWe found a wagon burned down with the corpses of the accompanying escorts nearby and no sign of the refugees. It\'s... terrible, $N, it\'s absolutely terrible!$B$BPlease speak to your companion, Malvinah, was it? I am trying to keep people calm as we figure this out, but she is very disturbed. She\'s spreading panic and confusion among the refugees.", + ["O"] = "Speak to Malvinah Sunblade, then report back to Kathy Wake.", + ["T"] = "Burnt Wheels", + }, + [80207] = { + ["D"] = "Alright, $N, here is the plan. We have established a perimeter around the Dark Iron camp, but we believe that if we move in force, then they will execute the refugees. We have been ordered to stand down.$B$BHowever, if we do not act now, the refugees will be killed. We need an outsider to sneak into their camp, kill the fire cleric, acquire the key to the cells, and free the refugees.$B$BI can think of no one more worthy of this task than you. You have proven yourself to be strong and resourceful in the short time we\'ve known each other.$B$BI believe in you, $N! Now go and save those people!", + ["O"] = "Kill the Shadowforge Fire Priest, acquire the Dark Key and free the High Elf Refugees.", + ["T"] = "Dark Iron Scrapping", + }, + [80208] = { + ["D"] = "You\'re the hero of the hour, $N! All the refugees are speaking your name!$B$BI believe there is a friend of yours who is particularly grateful. Why not go and speak with Malvinah Sunblade?", + ["O"] = "Speak to Malvinah Sunblade.", + ["T"] = "Sunblade Reunion", + }, + [80209] = { + ["D"] = "You\'ve decided to assist, then? I am grateful, $N!$B$BThe situation back home is dire and we cannot return to help at the moment. I do not know what kind of affliction ails the Stormwind nobles, but ever since King Varian disappeared, the Kingdom has been run into the ground!$B$BAlas, while we can\'t control the nobles, we can deal with the problems in the kingdom\'s provinces! Elwynn Forest is a good place to start. The capital is located in this region, and it has been surrounded by issues. Kobolds rule the mines, gnolls raid the towns, and bandits seize the roads.$B$BMy friend Marshal Dugan is stationed in Goldshire, and he can put you to good use. I believe the Magistrix here can teleport you to Goldshire.", + ["O"] = "Speak to Magistrix Ishalah to be teleported to Goldshire, and then report to Marshal Dugan.", + ["T"] = "Porting to Goldshire", + }, + [80210] = { + ["D"] = "Greetings, $N! You\'ve made amazing progress so far, but there is still so much to do.$B$BWhile the lodge is stocked with an abundance of grain and meat, we\'re lacking other types of nourishment like fruits and vegetables.$B$BLuckily, the area around the lodge has an abundance of pumpkins and berries this time of the year. Can I count on you to search the area for berries and pumpkins?$B$BOur peoples\' welfare depends on it!", + ["O"] = "Collect 4 Loch Modan Pumpkins and 8 Loch Modan Berries from the area surrounding the Farstrider Lodge.", + ["T"] = "Providing a Balanced Diet", + }, + [80211] = { + ["D"] = "$N, the fall of our homeland has affected us all. But, even if our education down this path was cut short, there are still ways to learn.$B$BRecently, someone left a letter on the desk and it was addressed to you.$B$BPerhaps you should read it and see what it says?", + ["O"] = "Read the Ranger\'s Letter and speak to Rubinah Sunsworn.", + ["T"] = "Ranger\'s Letter", + }, + [80212] = { + ["D"] = "$N, the fall of our homeland has affected us all. But, even if our education down this path was cut short, there are still ways to learn.$B$BRecently, someone left a letter on the desk and it was addressed to you.$B$BPerhaps you should read it and see what it says?", + ["O"] = "Read the Paladin\'s Letter and speak to Lor\'thas the Holy.", + ["T"] = "Paladin\'s Letter", + }, + [80213] = { + ["D"] = "$N, the fall of our homeland has affected us all. But, even if our education down this path was cut short, there are still ways to learn.$B$BRecently, someone left a letter on the desk and it was addressed to you.$B$BPerhaps you should read it and see what it says?", + ["O"] = "Read the Priest\'s Letter and speak to Maelah Sunsworn.", + ["T"] = "Priest\'s Letter", + }, + [80214] = { + ["D"] = "$N, the fall of our homeland has affected us all. But, even if our education down this path was cut short, there are still ways to learn.$B$BRecently, someone left a letter on the desk and it was addressed to you.$B$BPerhaps you should read it and see what it says?", + ["O"] = "Read the Magister\'s Letter and speak to Magister Ala\'shor.", + ["T"] = "Magister\'s Letter", + }, + [80215] = { + ["D"] = "$N, the fall of our homeland has affected us all. But, even if our education down this path was cut short, there are still ways to learn.$B$BRecently, someone left a letter on the desk and it was addressed to you.$B$BPerhaps you should read it and see what it says?", + ["O"] = "Read the Shady Letter and speak to Leela the Shadow.", + ["T"] = "Shady Letter", + }, + [80216] = { + ["D"] = "$N, the fall of our homeland has affected us all. But, even if our education down this path was cut short, there are still ways to learn.$B$BRecently, someone left a letter on the desk and it was addressed to you.$B$BPerhaps you should read it and see what it says?", + ["O"] = "Read the Swordsman\'s Letter and speak to Valanos Dawnfire.", + ["T"] = "Swordsman\'s Letter", + }, + [80217] = { + ["D"] = "To prove yourself to me, $N, I will have you go around the lodge and search for the many piglets and cubs that made their home close to here.$B$BYour kin will also need clothes and armor made from their hides. While I am not the best leatherworker, I could still make a few pieces of gear.$B$BFive pelts of the bear cubs and five chunks of meat from the piglets will be enough to prove your worth.$B$BCome back when you have everything.", + ["O"] = "Bring 5 Young Bear Pelts and 5 pieces of Young Boar Meat to Marek Ironheart in the Farstrider Lodge.", + ["T"] = "[DEPRECATED] Pelts and Tusks", + }, + [80219] = { + ["D"] = "", + ["O"] = "", + ["T"] = "KABOOM!", + }, + [80220] = { + ["D"] = "You\'re a $R right?$B$BYou aren\'t the first I\'ve seen around here recently. A lot of your people have arrived and have settled up in Stormwind.$B$BIn the outer section of the Dwarven district bordering the canal, there is an entrance with the banner of your people, go there and you can meet them should you wish to greet your own folk.", + ["O"] = "Seek out this High Elven district in Stormwind, look for a blue banner in the outer section of the Dwarven district. Speak to their representative.", + ["T"] = "A New Place in Stormwind", + }, + [80250] = { + ["D"] = "Bal\'a dash, malanore, $R! I represent a group of my people who seek to restore our former glory.$B$BWe seek to settle a new home for us and your assistance would be more than welcome.$B$BWhen you have the time, journey to Stormwind and speak to Caledra Dawnbreeze in the Stormwind Keep.$B$BTrust that you will be well compensated for your aid!", + ["O"] = "Speak to Caledra Dawnbreeze in Stormwind Keep.", + ["T"] = "[DEPRECATED] Assisting the Children of the Sun", + }, + [80251] = { + ["D"] = "Now that you know what we\'re dealing with and our history...$B$BThe time has come to act. If you\'re truly interested in helping us, then this is the way.$B$BOne of our most talented mages has established a leyline connection to Alah\'thalas.$B$BGo to the Mage Tower in the Mage District, and speak to Elsharin. She will be able to take you there, once you arrive I am sure someone will tend to you.", + ["O"] = "Speak to Elsharin, she can be found beyond the portal in the Mage Tower in Stormwind.", + ["T"] = "[DEPRECATED] To Alah\'Thalas!", + }, + [80252] = { + ["D"] = "Greetings, $R. Since you\'re here this means you\'ve come to help so listen up. We have a situation here... You might be aware that our buildings use arcane magic to operate.$B$BWhile our central crystal is the main power source, we use smaller crystals to effectively channel the arcane energy from the nexus to the outlying ley points of the structure.$B$BThe downside is that these crystals break down overtime, if we had found this outpost a decade later the entire Academy could have collapsed.$B$BFortunately, our predecessors built this site on a location with arcane crystal deposits. While the automated constructs have long since stopped working or malfunctioned, the mine remains full of intact crystals.$B$BI need you to head down there and bring me some crystals. Eight should do for now.$B$BAre you still here? Get moving.", + ["O"] = "Gather 8 Arcane Crystals from the Silver Sun Mine in Alah\'Thalas.", + ["T"] = "[DEPRECATED] A Crystal Clear Task", + }, + [80253] = { + ["D"] = "Well well... So far you\'ve proven useful so perhaps I can give you a more important task than fetching crystals.$B$BMy people descend from the Highborne, we were once the pinnacle of Kaldorei society, ruling a great empire… While few traces remain of that here in the Eastern Kingdoms, Kalimdor is filled to the brim with ruins, ruins that have not been looted!$B$BI need you to travel to the jungle of Feralas, once home to the city state of Eldre\'thalas. In the area just south of Eldre\'thalas there should be some ruins...$B$BI believe the locals call it the High Wilderness. Our scouts have reported that the Ogres holding the ruins have inadvertently dug up some valuable Arcane artifacts. I want you to go down there and get me those artifacts...$B$BBefore those big oafs crush them with their feet! Now get going, quickly!", + ["O"] = "Gather 4 Arcane Artifacts from the High Wilderness in Feralas.", + ["T"] = "[DEPRECATED] Relics in Feralas", + }, + [80254] = { + ["D"] = "Greetings, $N! I see that you have done quite a lot of work for Anu\'delen, but now the time has come for something more serious than fetching artifacts.$B$BAlah\'thalas is not far from the Scourge or the Amani, after the fall of Quel\'thalas our people can no longer keep the rampaging Forest Trolls in check.$B$BOur scouts have reported that the Troll population of Zul\'mashar in the Eastern Plaguelands is being converted to the Undead at a rapid pace.$B$BWe cannot have this, Forest Trolls are bad enough, we don\'t need to deal with an Undead version.$B$BGo there, exterminate both the living and the dead, we can\'t allow those beasts to go out of control.", + ["O"] = "Venture to Zul\'mashar in the Eastern Plaguelands and kill Mossflayer Scouts, Mossflayer Shadowhunter, Infected Mossflayer, Mossflayer Canniva, five each.", + ["T"] = "[DEPRECATED] Smashing Zul\'Mashar", + }, + [80256] = { + ["D"] = "I am Tanilaeh Sunkiss, Ley-technician and operator of the Portal connecting Alah\'thalas to the Stormwind Mage tower, when you need to return to Stormwind, I am the one you should speak to.$B$BThis place is the Golden Dawn Institute, here we house lodgings and welcome new travelers. In front of me is the Orb of Translocation, you can use that to go down to Alah\'thalas proper.$B$BArcanist Anu\'delen in the tower below us has requested help with a problem in the mine. There is also innkeeper Joalar in the institute should you wish for a meal or to attune your hearthstone here.$B$BThe large floating structure is known as the Citadel of the Sun. It houses the new Magistry, the headquarters of the Rangers, and the seat of the Council.$B$BAnyway I shouldn\'t keep you anymore, go speak to the Arcanist!", + ["O"] = "Speak to Arcanist Anu\'delen in the tower below the Golden Dawn Institute, use the Orb of Translocation to teleport to the land below.", + ["T"] = "[DEPRECATED] Welcome to Alah\'Thalas", + }, + [80258] = { + ["D"] = "Sinu a\'manore, $C.$B$BYou have answered our call for aid, for which we are truly grateful.$B$BWith the fall of Quel\'Thalas we, the Quel\'dorei, have been left without a home. It is here where we shall focus our wits and strengthen our will. This is the beginning of our quest for vengeance, and you shall be part of it, among others.$B$BYou see, as we prepare for a war against death itself we need to have as less casualties as possible but we can only prevent so many.$B$BWhere there is a battle there shall be dead and wounded. I ask of you on this day and many to come to aid us in our effort to supply our numbers with a means to mend and heal. There is a small and not so elegant flower growing in Redrige Mountains. We call it poppy. I shall not bore you with the alchemical details, you only need to know that the concoction will ease the pain of the wounded. I know it\'s a simple task but it is not meaningless.$B$BReturn to me when you have a handful of them.", + ["O"] = "Gather ten poppies in Redridge Mountains.", + ["T"] = "[DEPRECATED] Tears of the Poppy", + }, + [80260] = { + ["D"] = "I have a... troubling matter to discuss with you.$B$BA child was sent from Stormwind, and she won\'t stop babbling.$B$BQuite frankly, she is interfering with my work. I was APPARENTLY the most qualified to take care of her, but I\'d appreciate it if you helped her out with her pleading because of your proclivity for being a “hero”.$B$BYes, yes! I will pay you, too, if those are part of your terms.$B$B", + ["O"] = "Talk to Anu\'delen again if you\'re willing to alleviate his frustrations.", + ["T"] = "[DEPRECATED] Help With a Compassionate Matter", + }, + [80261] = { + ["D"] = "Oh, great adventurer! My name is Teslinah. Please, I need your help!$B$BMy mommy and I were in the Farstrider Lodge after fleeing from all the bad stuff up north, but when we were in Stormwind, we got separated! Miss Elsharin found me and took me here because she thought my mommy would be here, too, but she\'s not! The grumpy man over there only told me to sit in a corner and be silent. You\'ll help me, right?", + ["O"] = "Search for Teslinah\'s mom in Stormwind.", + ["T"] = "[DEPRECATED] Teslinah\'s Search I", + }, + [80262] = { + ["D"] = "Let\'s try the dwarven area, then the park, and then my peoples\' district!", + ["O"] = "Search for Teslinah\'s mom in Stormwind.", + ["T"] = "[DEPRECATED] Teslinah\'s Search II", + }, + [80263] = { + ["D"] = "Let\'s try the big castle next! I hear the king\'s son is really nice. We can also try the old part of town. I think it has a tavern too. Oh, and let\'s look at that Gnomish tram I\'ve heard about! Maybe she\'s waiting there.", + ["O"] = "Search for Teslinah\'s mom in Stormwind.", + ["T"] = "[DEPRECATED] Teslinah\'s Search III", + }, + [80264] = { + ["D"] = "We could try the barracks in the Old Town. Oh, and that giant Cathedral place! Maybe she went to look for me there. I heard there\'s a place for lost children nearby in a pretty big building!", + ["O"] = "Search for Teslinah\'s mom in Stormwind.", + ["T"] = "[DEPRECATED] Teslinah\'s Search IV", + }, + [80265] = { + ["D"] = "I don\'t think there\'s many other places left. Let\'s look everywhere we\'ve missed. There\'s more to the Cathedral, and we can look in the Trade place!", + ["O"] = "Find someone who can help find Teslinah\'s mom in Stormwind.", + ["T"] = "[DEPRECATED] Teslinah\'s Search V", + }, + [80289] = { + ["D"] = "Ah, there you are, $N. You have proven to be of some use in the past. I have observed that you have an uncanny knack for running errands. My ancestors were exiled from Kalimdor seven thousand years ago, but you\'re mistaken if you think they created Quel\'thalas right away.$B$BThey landed in what is today known as the Tirisfal Glades. According to records left behind in Alah\'thalas, the first settlement was known as Ishnu\'danil. Naturally, this is something we consider worthy of exploring further, which is why I have sent my subordinate Thas\'alah to investigate this ancient location.$B$BHowever, I have not heard a word from him since, and to make matters worse, the records we found mention a curse of some kind that affected the minds of our ancestors who lived there. I need you to go there and find out what became of Thas\'alah.", + ["O"] = "Locate Scryer Lor\'dal Thas\'alah in the western Tirisfal Glades.", + ["T"] = "The First Settlement", + }, + [80290] = { + ["D"] = "With all that has been going around here, I could use help from an adventurer like you. You see, our people used magic to shape the land and create buildings like this, but this one appears to have been only partially complete and abandoned.$B$BI tried venturing inside myself but was immediately filled with dread and horror. It felt like it was consuming me, so I fled outside. But you, on the other hand, seem like someone who is not easily frightened. Before I... left. I noticed a Stone Tablet etched into the cliff.$B$BPerhaps it can provide some clue as to what might\'ve happened here. Could you be so kind as to retrieve it for me?", + ["O"] = "Obtain the tablet within the unfinished building.", + ["T"] = "The Lost Tablets", + }, + [80291] = { + ["D"] = "I have already sent my serv... assistant Thalo down there, but he has yet to return. It could prove valuable to know more about it if this Shadow Well is as powerful and dangerous as this text claims.", + ["O"] = "Investigate the Shadow Well.", + ["T"] = "The Shadow Well", + }, + [80292] = { + ["D"] = "Don\'t worry about me. I will not be alone here. I have my... guards with me. And you must agree that this place is too important to leave unattended.$B$BOh, and if you could avoid mentioning the stuff about hearing voices, that would be wonderful. I don\'t want to scare the potential helpers, which Anu\'delen might send my way.", + ["O"] = "Return to Anu\'delen in Alah\'Thalas.", + ["T"] = "A Lone Homecoming", + }, + [80300] = { + ["D"] = "Hello mon! I be representing a clutch of the Revantusk Trolls that have left the shores of our home in order to forge a bond and more promising relations with the Horde.$B$BWe be setting up camp in the Stonetalon Mountains, close to the ruined Zandalari temple from before the Great Sundering, and we be needing all the help we can find.$B$BWhen ya can spare the time, speak to Volz’draza in the Warchief\'s hut. She can give ya guidance and will make sure ya get paid for your help.", + ["O"] = "Speak to Volz\'draza in Grommash Hold.", + ["T"] = "A Tusken Affair", + }, + [80301] = { + ["D"] = "When we first got here, it was important for us to raise structures to make a home for ourselves. While tidying the place up, we breached the entrance of the temple, clearing away all the collapsed rubble.$B$BMany loa used to be worshipped there, especially the Loa of Death. We must have disturbed the spirits inside the tomb, because the trolls of the past have arisen to haunt the temple. These vengeful undead attack anyone who tries to walk their halls, even peaceful worshippers.$B$BYa duty is to set fire to the pyres in the tomb, to soothe the troubled spirits and purify the temple. If the undead be in ya way, send them back to the afterlife.", + ["O"] = "Light 8 Spirit Pyres inside the tomb.", + ["T"] = "Lighting the Pyres", + }, + [80302] = { + ["D"] = "I be toiling with diplomacy here, so me hands are tied on proper greetings. If ya truly wanna help the Revantusk Tribe, we be appreciating it.$B$BThe time has come for the Revantusk to pull their weight in the Horde for all the aid they been giving us in the Hinterlands, and set a course for the future. Deino of the Darkspear Tribe has been kind enough to open portals for us to and from Amani\'Alor.$B$BYa can find her in the Valley of Spirits. As soon as ya get to Amani\'Alor, seek out Mystic Guya\'jin and ask how ya can help the Revantusk cause.", + ["O"] = "Speak to Deino in the Valley of Spirits for transport to Amani\'Alor.", + ["T"] = "To Amani\'Alor!", + }, + [80303] = { + ["D"] = "It\'s good to see you again, $c. Our scouts have reported increased activity from our ancient enemy in the Eastern Plaguelands.$B$BThey are preparing to outfit an expedition with trinkets stolen from our people to protect them against corruption.$B$BTravel to the lodge and put an end to their expedition before they can benefit from our stolen relics.", + ["O"] = "Venture to the Quel\'Lithien Lodge in the Eastern Plaguelands and slay 6 Quel\'Lithien Pathstriders, 6 Quel\'Lithien Woodsmen, and 6 Quel\'Lithien Rangers.", + ["T"] = "Raiding Quel\'Lithien Lodge", + }, + [80304] = { + ["D"] = "The trolls be blessed by the loa with great regeneration, mon. Be it just a scratch or an entire limb, we be able to heal. Still, there be times when the regeneration takes much too long, and there be no shame in being prepared for those times.$B$BOur allies at Splintertree Post in Ashenvale recently discovered a little voodoo solution without even realizing. There be toads roaming the Mystral Lake at the edge of the forest, near Talondeep Path. They be covered with a slippery oil that can be brewed into a powerful salve.$B$BWon\'tcha be a friend and go squeeze them toads for me, mon? Bring me their oil, and I\'ll see ya be rewarded for your time.", + ["O"] = "Bring 10 Toad Oil to Warleader Zol\'majin in Amani\'Alor.", + ["T"] = "The Means To Heal", + }, + [80305] = { + ["D"] = "Hey kid, enjoying yourself?$B$BNah, you\'re really not. I can see it on your face. This place is pretty run-down and boring with no real stuff to do, eh?$B$BWell, if you\'re looking for some action, coin-action, mind you, then I got something for ya! But, you know, info doesn\'t come cheap, now does it?$B$BHow about a silver coin to loosen up my tongue?$B$B$B$BWell, now that we are friends, I suppose I can let you in on this little something. Something that I\'ve heard around town. See, there\'s this bar that just opened up in the Valley of Honor. Quite ironic, don\'t you think?$B$BI heard a goblin named Quark opened up a shop, but it\'s supposed to be a membership-only enterprise.$B$BI wouldn\'t bother going there myself, but I heard there\'s good money to be made!$B$BNow, that\'ll be fifty copper for the intel. Have a nice day, pal.", + ["O"] = "Go to the Valley of Honor and search for Quark\'s Shack.", + ["T"] = "Quark\'s Shack", + }, + [80306] = { + ["D"] = "Hey pal, watch it!$B$BOh, what\'s this? A proper customer, eh?$B$BWelcome to Quark\'s Shack. You here for business or pleasure?$B$BYou see, this here is a bar of mine made for coin connoisseurs, so if you\'re here, then it\'s time to grab some quick coin and also have some fun you\'re at it.$B$BIf you\'re looking to gamble, then speak to Agne. She handles the bones. What, you never rolled the dice before? Nah, no need to worry about your coins, pal. You\'ll make back your losses in no time! Now, if you need anything to widen your eyes and numb your thoughts, come back and see me.", + ["O"] = "Speak to Agne to roll the dice.", + ["T"] = "What\'s Yours is Ours", + }, + [80307] = { + ["D"] = "Enjoying yourself, boss?$B$BGood, good. Now, you see, that was a free trial. Doesn\'t really matter to me if you won or not, but I did say ‘coin connoisseurs\', so you really gotta pay a membership fee.$B$BHey, hey, where\'re you goin\' man? Come on, don\'t be like that. I might be willing to give you a membership card if you repay me with some favors.$B$BSee, I ordered some new goods from the Undermine for our hookahs. This cargo is very important and valuable. I will throw in some coins, too, which you are more than welcome to keep spending in my bar, if you go and fetch my goods for me. Now, the cargo should arrive at Ratchet right around today, so if you\'d get a move on, I\'d really appreciate it.", + ["O"] = "Speak to Innkeeper Wiley about Quark\'s cargo.", + ["T"] = "Yet Another Smoke Cloud Above Orgrimmar", + }, + [80308] = { + ["D"] = "So... we may have a slight pirate “infestation” problem. While cargo was being delivered from the Undermine, these damn pirates raided the boat and looted it. The crew escaped safely, but more importantly, the cargo was all gone!$B$BIt\'s a lot of wasted coin. Quark is expecting a big shipment, but a lot of it has either been smoked or lost to the sea. Just try to get whatever you can back and I might be able to fudge some numbers.$B$BYou\'ll find the pirates to the south, down the coastline.$B$BQuark\'s waiting for that cargo, so you\'d better hurry. Something\'s better than nothing.", + ["O"] = "Retrieve 20 Tobacco Crates.", + ["T"] = "Tobacco Thieves", + }, + [80309] = { + ["D"] = "\'Ey, mon, come \'ere real quick, Odo\'s got sum words fo\' ya. I see ya be crawlin\' \'round Quark\'s gamblin\' bar and I be havin\' this feelin\' in me gut that be tellin\' me somethin\' be at work \'ere.I be thinkin\', he be doin\' sumthin\' under tha\' table, mon. A goblin ya can trust be as rare as a beautiful troll woman, and let me tell ya, they do be pretty ugly.So, would ya keep an eye open for ol\' Odo?This be official business, and I be payin\' ya. Jus\' go check tha\' cargo and maybe sum paperwork, and keep an eye on tha\' mon called Sturk. He be an associate of Quark. If anythin\', I think he be the one smugglin\' stuff.", + ["O"] = "Inspect the cargo and the bar to find incriminating documents.", + ["T"] = "Odo\'s Gut Feeling", + }, + [80310] = { + ["D"] = "That damn rat. He stole from me, did he now? I\'m handing him over, but before that, I want you to stare that mongrel in the eyes and tell him that he got caught. Beat him to a pulp, and then hand him over to Odo.$B$BAfter you\'re done, speak to The Rov. I want you to tell him to keep watch and tighten up the security around here. Can\'t just go around having thieves in my own shack, ya know? When you\'re all done, come back to me and there\'ll be a reward in it for ya.", + ["O"] = "Arrest the rat. Speak to The Rov about security details.", + ["T"] = "Quark\'s Justice", + }, + [80311] = { + ["D"] = "$B$BYour skills still require some honing, and your posture betrays your arrogance. Typical of any new apprentice who bears overconfidence before his own wits. Not that it matters to me. It\'s your own problem.$B$BAny aspiring mage should have his spells ready at all times and think two steps ahead. That\'s why your lack of awareness should be compensated with at least something you could procure by yourself.$B$BThere is a… “mage” who resides on the bank of Southfury River, not far from Thunder Ridge. The task you will receive from this mage might be arduous at first glance, yet it most likely will bear fruit if you put your brain into it.", + ["O"] = "Speak to Chok\'Garok on a bank of Southfury River in the Barrens.", + ["T"] = "Mastering the Arcane", + }, + [80312] = { + ["D"] = "Ureda sends only worthy mages! Ureda is the worst!$B$B$B$BWe know what you really need as a mage, and we know where to get parts. You bring us parts, and essence too, and we will make you a weapon, yes!$B$BWhere you get parts? It\'s in the cave. Barrens! Yes, yes. Wailing Caverns, they call it. Caverns with druids and snakes! Yes. You find us Moontouched Wood, a Crystal of the Serpent, and Everchanging Essence. Yes, the essence!$B$BYou bring it all to us, and we make it a worthy weapon! Yes, you\'ll be thankful!", + ["O"] = "Bring Chok\'Garok 5 pieces of Moontouched Wood, a Crystal of the Serpent, and an Everchanging Essence from Wailing Caverns.", + ["T"] = "Arcane Arms", + }, + [80313] = { + ["D"] = "Oho, Deino send more help? Guya\'jin be pleased.$B$BI be Guya\'jin, Witch Doctor of the Revantusk Tribe and the spiritual leader of our people. I keep this portal to Orgrimmar stable, so if ya want to return to the Valley of Spirits at any time, ya come see Guya\'jin.$B$BAmani\'Alor be a blessing for our tribe, an ancient Zandalari temple with a deep connection to the loa. We be far away from our temples mon, but here, we can appeal to the local loa and maintain a connection with our loa back home.$B$BYa look a little green still, mon. Why don\'tcha look around and get your bearings? Speak to me when ya be ready for ya first task. There be a lot of work to do round here.", + ["O"] = "Speak to Guya\'jin again to begin volunteering aid to the Revantusk.", + ["T"] = "Welcome to Amani\'Alor", + }, + [80314] = { + ["D"] = "The aid of the Darkspear has been a welcome surprise. In a time when a troll would rather take ya eyes than see eye to eye with another tribe, this unity be a true miracle.$B$BAs a show of good will, Zol\'majin will be sending ya to Master Gadrin in Sen\'jin Village. Offer this doll to him. It be an old troll custom, one he will understand.", + ["O"] = "Take Zol\'majin\'s Voodoo Doll to Master Gadrin in Sen\'jin Village.", + ["T"] = "Scratching Each Other\'s Back", + }, + [80315] = { + ["D"] = "I\'ve only experienced a few blooms in my time, but this season, things are different. At the ends of my leaves, there are usually pink petals sprouting by now, but instead, my branches are barren! I don\'t think this is normal. Maybe a druid might know what\'s wrong with me? They\'re much older and wiser anyhow.", + ["O"] = "Inspect Applebough and help him grow back his fruit. Speak with a nearby druid to find out Applebough\'s ailment.", + ["T"] = "Apple a Day", + }, + [80320] = { + ["D"] = "Hey $c! I\'ve got a business proposition for you. My boss sent me to track down defectors from the cartel that joined up with the Burning Blade and I\'ve found out that Fizzle isn\'t the only goblin playing with demon fire around here.$B$BKnobby Tinfault\'s hiding in Dustwind Cave on top of the Drygulch Canyon. Find him and bring me anything he\'s carrying that has so much as a strange mark on it. We need to get any info back to Gazlowe so we can find out if there\'s more to their schemes.", + ["O"] = "Kill Knobby Tinfault and bring anything he drops back to Miley.", + ["T"] = "[Deprecated] Burning Bridges", + }, + [80321] = { + ["D"] = "You\'re the one that helped Miley find this, yeah?$B$B$B$BI\'ve had a bit of diggin\' done and I know who made it. Name\'s Kiro in Orgrimmar. Nice enough gal, even if she\'s a tad aggressive.$B$BI\'m sure it\'s a long shot, but I need you to check with her and find out if she knows anything about this inscription. I\'ve already had it deciphered, but Kiro might know more.", + ["O"] = "Give Knobby\'s Belt to Kiro in the Valley of Honor.", + ["T"] = "[Deprecated] The Lies that Bind Us", + }, + [80322] = { + ["D"] = "Hah! No leatherworker made these marks.$B$BThis is fel magic. There\'s an outcast located in the Barrens. It\'s a blacksmith from our world. He has a gift when it comes to fel magic; he can sense the origin.$B$BYou\'ll need payment if you seek him out, and you\'ll need luck on your side.$B$BSome of us don\'t like reliving our past. The taint that was in our blood haunts him still, as it does for many of us. Leave me be, now.$B$BSeek Vrang west of the road along the Barrens\' northern foothills.", + ["O"] = "Take Knobby\'s Belt and 20 silver to Vrang Wildgore in the Barrens.", + ["T"] = "[Deprecated] The Lies That Bind Us", + }, + [80323] = { + ["D"] = "The magic that etched this belt came from Neeru Fireblade. I still cannot read the inscription, but with Neeru\'s hand in this, I can assure you that it is powerful. Go on your way now, $C. I don\'t need the wrath of Neeru or his minions targeting me.", + ["O"] = "Return to Gazlowe with Knobby\'s Belt.", + ["T"] = "[Deprecated] The Lies That Bind Us", + }, + [80330] = { + ["D"] = "Hello, young hunter. You look to me like you are skilled enough to handle a beast and train it as your companion.$B$BWe hunters tend to have a pet by our side, though I hear your kind have some... unorthodox methods. Nonetheless, you should speak to Mayten Boomrifle at Rustgate Ridge over on Blackstone Island if you wish to learn how to tame a pet of your own.", + ["O"] = "Speak to Mayten Boomrifle at Rustgate Ridge on Blackstone Island.", + ["T"] = "The Hunter\'s Path", + }, + [80331] = { + ["D"] = "Whoa, whoa, easy there, champ! I can see you\'re chomping at the bit to tame a wild beast, but there\'s a catch. Us goblins don\'t exactly get along with nature, know what I mean?$B$B$B$BLet me show you how it\'s done, the goblin way. See this rod? It comes with a special collar that I call the \"Friend Request\". You put this around any wild animal\'s neck and that beastie becomes your bestie, get me?$B$BProbably oughta start you on something easy. A Dire Mottled Boar should be simple. You\'ll find them wandering around just outside of Razor Hill.$B$BEven a kid like you should be able to do that much. So don\'t waste my time by coming back here without one!", + ["O"] = "Use the Taming Rod to tame a Dire Mottled Boar. Practice your skills, then return the Taming Rod to Viz Fizbeast in Razor Hill.", + ["T"] = "[DEPRECATED] Taming the Beast", + }, + [80332] = { + ["D"] = "You see kid, every time you add a pet to your collection you become stronger. Your pet is like an extension of you. We goblins may not be the strongest, but we got the biggest brains. Let the animal be your strength while you make with the plans!$B$BThat goes double for showing \'em who\'s boss, feel me? Why wrestle a beast into submission when you can outsmart \'em?$B$BLet\'s turn things up a notch. You\'re gonna have to get your boots wet for this next critter. This one really likes the sea, particularly past that Troll village down south.$B$BYou know the one... Sen\'jin Village? Down near the Echo Isles. Keep your eyes peeled for a Surf Crawler, slap the ol\' \"Friend Request\" on \'em, and bring it back to me.", + ["O"] = "Use the Taming Rod to tame a Surf Crawler. Practice your skills, then return the Taming Rod to Viz Fizbeast in Razor Hill.", + ["T"] = "[DEPRECATED] Taming the Beast", + }, + [80333] = { + ["D"] = "Time for your final exam, champ. You better be ready, \'cause otherwise you ain\'t coming back breathing. Our Orc friends call these babies Armored Scorpids.$B$BThey\'re quick on their tiny legs, and their carapace is light yet durable. Kinda goes with the whole \"armored\" thing. They got a deadly sting to boot, so if you get your hands on one, ain\'t no one gonna push you around no more, ever.$B$BWhen you get back, I\'m gonna show you something real nice. Let me tell you, pal, these skills are beyond mad! You\'ll be able to tame whatever beast you want, and call \'em and dismiss \'em at your leisure.", + ["O"] = "Use the Taming Rod to tame an Armored Scorpid. Practice your skills, then return the Taming Rod to Viz Fizbeast in Razor Hill.", + ["T"] = "[DEPRECATED] Taming the Beast", + }, + [80334] = { + ["D"] = "One last tip, kid! For a small addition to your tab, of course. There\'s an orc in Orgrimmar who goes by the name Ormak Grimshot. He can teach you how to train the beasts you tame.$B$BWhat? You thought you were gonna become a big-shot hunter with a pet who can\'t learn some fancy tricks? I like you, kid: you\'re a laugh!$B$BYou can find Ormak in the Valley of Honor, as the orcs call it. Now hit the road! Next time we meet, it\'ll be when I\'m on your doorstep to collect my payment.", + ["O"] = "Speak with Ormak Grimshot in Orgrimmar.", + ["T"] = "[DEPRECATED] Taming the Beast", + }, + [80339] = { + ["D"] = "Hello, young hunter. You look to me like you are skilled enough to handle a beast and train it as your companion.$B$BNormally, I\'d send you to Grif Wildheart, but I believe you need the help of one of your own kin. Clover Spinpistol in Kharanos should be able to help you.", + ["O"] = "Speak with Clover Spinpistol in Kharanos.", + ["T"] = "The Hunter\'s Path", + }, + [80340] = { + ["D"] = "I am Clover Spinpistol, Mountaineer and Sniper. We may be good shots, but unfortunately us little folk aren\'t too suited for close combat. No worries, though! You just need to have a beast take the hits for you!$B$BTinker Town\'s best and brightest recently made an amazing scientific breakthrough to address our less than stellar record with large animals who find us appetizing and bite-sized.$B$BYou seem like a promising marksman. Just the talent we need in our efforts to retake Gnomeregan! To that end, I\'ll teach you how to use the patented G.N.O.E.M.R. Taming Rod.$B$BTake this and try to use it on a Large Crag Boar. Make sure it\'s large!", + ["O"] = "Use the Taming Rod to tame a Large Crag Boar. Practice your skills, then return the Taming Rod to Clover Spinpistol in Kharanos.", + ["T"] = "Taming the Beast", + }, + [80341] = { + ["D"] = "Haha! My, that boar sure is a BIG one, isn\'t it? I bet you\'d like something more suited to a gnome, though. How about a quick-thinking, majestic Snow Leopard?$B$BYou can find them to both the south and east of here. I\'ve recharged your G.N.O.E.M.R. Taming Rod, so you\'re ready to go out there and catch a cat!$B$BWatch out, though. They\'re far more feisty than that boar! Don\'t underestimate them or you might end up as kitty kibble!", + ["O"] = "Use the Taming Rod to tame a Snow Leopard. Practice your skills, then return the Taming Rod to Clover Spinpistol in Kharanos. ", + ["T"] = "Taming the Beast", + }, + [80342] = { + ["D"] = "One thing I should mention is both the boar and the leopard are fierce offensive pets, but they leave a bit to be desired in defensive capabilities. Since our ranged weapons can pop ANY enemy with ease, what we need is something to keep them busy.$B$BHmm... I\'ve got it! The Ice Claw Bear is sturdy and tenacious. When facing an angry bear, who would choose to go after a tiny gnome?$B$BIce Claw Bears can be found east of Kharanos. You have enough experience and skill under your belt now, so you should be able to handle one.$B$BOnce you\'re done, I\'ll give you access to the finalized Taming Rod so you can tame your own pet at will!", + ["O"] = "Use the Taming Rod to tame an Ice Claw Bear. Practice your skills, then return the Taming Rod to Clover Spinpistol in Kharanos.", + ["T"] = "Taming the Beast", + }, + [80343] = { + ["D"] = "Now that you\'ve got your rod and all, $N, you can tame companions of your own to help advance the cause of all gnomekind!$B$BHowever, taming them isn\'t enough on its own. They also need training, and sadly, I don\'t have that knowledge to share. Even though you\'ve done well under my tutelage, I can\'t mentor your pet! For that, you\'ll need to find someone else.$B$BI know just the person for the job, too! If you\'re ever in Ironforge, there\'s a dwarf named Belia Thundergranite in the Hall of Arms. She should be able to help you out. Be sure to tell her I sent you!$B$BGood luck!", + ["O"] = "Speak with Belia Thundergranite in Ironforge.", + ["T"] = "Training the Beast", + }, + [80350] = { + ["D"] = "While you were helping me out, this rune was given to me to pass on to you. Take some time to read it when you have a chance. I\'m thinkin\' it came from the hunter trainer Thorgas. Take a gander at it and go find him inside Anvilmar when you\'ve a chance.", + ["O"] = "Read the Etched Rune and speak to Thorgas Grimson in Coldridge Valley.", + ["T"] = "Etched Rune", + }, + [80352] = { + ["D"] = "They had one job, $N, one!$B$BI asked those fools to be careful while transporting the oil and look at what they did. They probably had the mindless ogre on the ship\'s wheel.$B$BPlease sweety, do me a favour will you?$B$BGet as much oil as you can from the barrels, we need it for our machinery to work. This swamp isn\'t at all forgiving, we need to defend ourselves, you know.$B$BAnyway good luck comes with good coin so as soon as you have it come back.", + ["O"] = "Bring 5 Barrels of Oil to Vixie Dampknob in Mudsprocket.", + ["T"] = "Money Down The Drain", + }, + [80353] = { + ["D"] = "Who would have imagined that asking an ogre to chop some wood, would have ultimately ended up with him forgetting to pick it up?$B$BNumbskull brute started cutting and cutting but when he came back he didn\'t bring any of it back with him!$B$BI would go pick it up myself but I am busy with uh... stuff. So why don\'t you do it?$B$BPeople around here respect working folk and you will get paid what the action is worth, bub.$B$BGo pickup a few bundles.", + ["O"] = "Gather 10 bundles of freshly cut wood to Qik Peddlechin in Mudsprocket.", + ["T"] = "Unclear Instructions", + }, + [80360] = { + ["D"] = "The journey from our forests in the old world to our new home here in Kalimdor was not only hard on us, but also the loa that protected us on the journey. So far from the forests they have roamed for millennia, they are weakened in their presence here.$B$BFar to the south, the Sandfury trolls of Zul\'Farrak have maintained a connection with Kimbul despite their distance from the Gurubashi\'s jungles. Seek Kimbul\'s power and return it to me. I will use the power granted by the Sandfury to increase our own loa\'s presence and strength in these foreign lands.", + ["O"] = "Obtain 5 Jujus of Kimbul and bring them to Mystic Guay\'jin.", + ["T"] = "Power Taken, Power Given", + }, + [80366] = { + ["D"] = "Hello, young ranger, you appear to be doing well!$B$BOur people struggles but we must endure, we must become more able than we were before.$B$BThere is a ranger in Alah\'Thalas called Damilara Sunsorrow, she is said to be able to bend beasts to her will, such a technique would be useful to you, see if you can learn it from her.", + ["O"] = "Speak with Damilara Sunsorrow in Alah\'Thalas. ", + ["T"] = "The Hunter\'s Path", + }, + [80369] = { + ["D"] = "Ah, you have made your way back once more, $N. That is simply splendid, for I may have another task for you.$B$BNestled far in the south lies a coven of supremely ferocious creatures known as Owlbeasts. The place of their dwelling, known as Owl Wing Thicket, is renowned for being the home of a particularly bizarre herb.$B$BMight I trouble you to kindly gather me around twenty of these precious plants? The Owlbeasts should have them on their person as a light snack.", + ["O"] = "Collect 20 Winterspring Tea Leaves.", + ["T"] = "A Warm Feeling", + }, + [80370] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Wool: Silvermoon Remnants", + }, + [80371] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Silk: Silvermoon Remnants", + }, + [80372] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Mageweave: Silvermoon Remnants", + }, + [80373] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Runecloth: Silvermoon Remnants", + }, + [80374] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Additional Runecloth: Silvermoon Remnants", + }, + [80375] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Wool: Revantusk Tribe", + }, + [80376] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Silk: Revantusk Tribe", + }, + [80377] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Mageweave: Revantusk Tribe", + }, + [80378] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Donation of Runecloth: Revantusk Tribe", + }, + [80379] = { + ["D"] = "", + ["O"] = "", + ["T"] = "Additional Runecloth: Revantusk Tribe", + }, + [80380] = { + ["D"] = "I\'ve got a whole party of people to feed, but one of my rivals cut me off from all of my meat suppliers!$B$BWhoever it is must be jealous of my deccadent, fall-off-the-bone ribs and beer-battered seafood supreme. With a name like mine, I have big boots to fill.$B$BI\'ll make sure they regret crossing me by making the best barbeque anyone\'s ever tasted! What\'s in it for you? Well, I have a Saltcrabs family secret that I can impart to you. It\'ll help you turn any venue into a great place for a picnic.$B$BRound up all of the little crab and crocolisk families and tell them to say their goodbyes, then bring me their insides$B$BThe stag meat that I need comes from a few vendors that you\'ll find on your adventures, and I need some beer for basting.$B$BHurry up, I gotta cook all of this before the party starts!", + ["O"] = "Help Lizzi to prepare the best barbeque anyone\'s ever tasted.", + ["T"] = "Lizzi\'s Competitor", + }, + [80381] = { + ["D"] = "Everyone thinks I\'m crazy, but I promise in like, 5 years, you\'ll all be regretting it! I know for a fact that these shells will be a huge part of the new economy even if the so-called “economists” don\'t believe me.$B$BThe shimmering shells along the ocean floor, I call them “Shellcoins”, are going to be the next big thing.$B$BThey all call me a fool for investing, but I\'ll be filthy rich when the market blows up while they\'ll be mining for my scraps.", + ["O"] = "Collect 20 Shimmering Shells to jumpstart the Shellcoin economy and return to Elodia.", + ["T"] = "Shellcoins", + }, + [80382] = { + ["D"] = "What would a beach party be without a couple of trade princes, huh? I need big names at this event or else it\'ll be a flop!$B$BPut on your fanciest clothes and deliver these special invitations out to Trade Prince Gazlowe in Ratchet and Baron Revilgaz in Booty Bay.$B$BIf they come, then more will be sure to follow. More bodies at the beach equals more gold lining my pockets, see? I\'ll give you something real nice in return.", + ["O"] = "Deliver Risa\'s beach party invitations to Gazlowe in Ratchet and Baron Revilgaz in Booty Bay.", + ["T"] = "VIP Invites", + }, + [80383] = { + ["D"] = "Do you see that dorsal fin rising out of the water? That\'s a shark.$B$BIt appears to have come too close to the shoreline which is an anomaly for this species. I\'m a marine biologist by trade and I\'ve been watching that poor creature for a while now.$B$BThere could be a number of reasons that it\'s trapped here, but the goblins want to kill it like a stuck pig!$B$BThey think it\'s a threat to people in the water, but it\'s probably just scared and confused.$B$BI can\'t let that happen. I need you to go into the water and shoo the shark away.", + ["O"] = "Shoo the shark in the water away from the shore, then return to Toci Flipper.", + ["T"] = "Sharks Are Friends, Not Food", + }, + [80384] = { + ["D"] = "Dese crabs, troublemakers dey are!$B$BCutting my nets with the claws, scaring all the fish away! Every time I chase them dey bury themselves to the sand, Lau\'Tiki isn\'t as nimble as his younger years.$B$BAbout time for some revenge, pesky shell-walkers will get what dey deserve for messin\' with Lau\'Tiki!$B$BHunt them, bring me their shells and I might let you in a little secret.", + ["O"] = "Lau\'Tiki wants you to bring him 8 Crab Shells.", + ["T"] = "Pinch of Salt", + }, + [80386] = { + ["D"] = "", + ["O"] = "", + ["T"] = "A Gizmo a Day...", + }, + [80388] = { + ["D"] = "Hmm, another one? Very well.$B$BYou seek to prove yourself to your people, no? To rise above all others as the strongest, no? To leave behind a legacy of courage and heroism, rather than to fade from history as yet another wanderer of no consequence, no?$B$BI have your attention, do I? I have just the offer for you, then. I will grant you the opportunity to become Immortal, should you prevail over death in your journey for glory.$B$BHowever... If you die, you shall not return. Your soul shall be forever severed from your body.$B$BThis offer I extend to you only here and now. There will be no second chance should you refuse my deal.", + ["O"] = "Complete this quest to become mortal. In this mode you only have one life and can only trade and group up with other mortal players. If you should die, you shall not return again. Customer service will not revive a fallen hero for any reason.", + ["T"] = "[DEPRECATED] Stay Awhile and Listen...", + }, + [80390] = { + ["D"] = "A group of former Venture Co. Goblins have joined the Horde.$B$BSome of them chose to settle in Dustwallow Marsh in a town they now call Mudsprocket, while not yet forgiven for their past sins, the boss wants me to send whoever is willing to get some coin to deliver this letter to whoever is in charge.$B$BNo idea how the Undermine is gonna take this and frankly not my business to think of, anyway, you will find them in South Dustwallow Marsh, careful not to mistake the place for the Dragon\'s lair instead though.$B$BTake care, kid.", + ["O"] = "Deliver the letter to the leader of Mudsprocket.", + ["T"] = "Letter to Mudsprocket", + }, + [80391] = { + ["D"] = "Greetings! Your company is welcome. I am Inunquaq of Moa\'ki Harbor. I find myself in this strange land after weeks of sailing.$B$BMy tale began when a Winter Tauren friend of mine known as Buniq visited my settlement in her canoe, she invited me to accompany her to the village of Taunka\'le. But as I entered the canoe, a strong icy gust blew the rope out of Buniq\'s hands. Within moments a strong current had taken me out to the open sea!$B$BBuniq had the oars so all I could do was to desperately cling to the canoe and hope for the best.$B$BEventually the current took me here to this warm land that looks nothing like my home. Listen friend, the canoe had some provisions but I have finished them days ago. Would you please collect some meat from these shelled creatures nearby?$B$BWe have similar creatures in the far north, but I am without the tools and the knowledge I need to try and approach them, as far as I can guess they are edible. If you do so, I will be forever in your debt.", + ["O"] = "Collect 8 bunches of Crawler Meat.", + ["T"] = "Crawling for Meat", + }, + [80392] = { + ["D"] = "Excuse me, may I have your attention for a second?$B$BMy name is Lieren and you look like a seasoned traveler. I have a task for you if you do not mind helping me, I am quite busy with my own, I need a package taken to Quel\'Danil east of here.$B$BJust look for an Elf lodge there and take it to my sister. My sister has similar features to mine, but she is all of elvish ancestry.$B$BI\'ve attached your payment to the package, now what do you say pipsqueak, will you help me out?", + ["O"] = "Take Lieren\'s Package to Quel\'Danil and deliver it to Loania.", + ["T"] = "Package to Quel\'Danil", + }, + [80393] = { + ["D"] = "I hope it is not too much to ask for, but you look like the strong type.$B$BThe people of Quel\'Danil are my family and they\'ve been at odds with the terrible Witherbark Trolls for a long time! I am asking you to reduce their numbers, I don\'t want to see any more suffering, we have all lost so much already.$B$BShandra\'lor hosts sadistic trolls and their pet spiders, I would like you to focus on those.$B$BOnce the job is done please report to my adoptive mother Voldana. She is deeper inside the lodge!", + ["O"] = "Kill 10 Witherbark Sadist and 8 Witherbark Broodguards in Shadra\'alor.", + ["T"] = "Errand for Quel\'Danil", + }, + [80395] = { + ["D"] = "Hey, $R! In addition to the usual weapons in my stock, I have an opportunity for you.$B$BWhile I was doing my run from Ratchet to the Crossroads, I saw a weird light on the mountain just south of Ratchet. There seems to be a ramp up just outside Ratchet. Some raptors call the thing home though, so be careful.$B$BNow I don\'t know what it is, but you adventurin\' types like to dive right in when it comes to dangerous situations, right? It could be some HUGE deal like a demon cult or whatever for all I know, and them doing nasty stuff to Ratchet would be very bad for MY business. Consider whatever spoils you find as payment.", + ["O"] = "Investigate the mountain south of Ratchet.", + ["T"] = "A Glittering Opportunity", + }, + [80396] = { + ["D"] = "I am Kheyna Spinpistol. Mechanist, medic and killer of bad things.$B$BI am currently tracking a dangerous foe who threatens the lives of countless innocents. I might ask for your help in dealing with this later, but for now, I have another task for you and a generous reward if you do it well!$B$BThe nearby Kolkar tribe is preparing for a raid on the Crossroads. I know this because I\'ve used one of my tools, and you could say I \"sneaked\" into their tent and heard their Khan ordering it. This can be avoided, however. You\'ll save many lives if you go down there and put an end to them all.$B$BThey can be found around the Oasis to the west. Once you\'re done, come back to me. If I am not here, simply touch the crystal again and I will know someone is waiting for me. Now get out there and KILL them all!", + ["O"] = "Kill 6 Kolkar Bloodchargers, 4 Kolkar Pack Runners and 4 Kolkar Marauders. Use the crystal to summon Kheyna Spinpistol again.", + ["T"] = "A Bloody Good Deed", + }, + [80397] = { + ["D"] = "Welcome, $C. We don\'t see many adventurers up this way — and not without reason.$B$BThe greed of the Venture Company has tainted the land itself. Every ancient tree that they fell only adds to my troubles.$B$BThe powerful sap that once nourished the trees of this forest now congeals into those awful sap beasts. Their corrosive nature harms the delicate balance we\'ve fought to maintain here.$B$BWorse still, many have recently made their way to Stonetalon Peak itself! Their corrosive sap kills the herbs I need for cooking and simple potions.$B$B$C, venture forth and rid the Peak of these things. You\'ll find many just south of here, over the ridge that holds the old ruins. We\'ve little enough use for coin up here, but perhaps a few potions might serve as payment?", + ["O"] = "Slay 10 Sap Beasts and 6 Corrosive Sap Beasts, then return to Innkeeper Faralia.", + ["T"] = "Sap Their Strength", + }, + [80398] = { + ["D"] = "You find out that the Pounder\'s Mainframe is surprisingly intact. This could be valuable!$B$BTake it to an expert of Gnomish Engineering who might be able to do something with it.", + ["O"] = "Find Someone who can figure out what to do with the Mainframe.", + ["T"] = "A Pounding Brain", + }, + [80399] = { + ["D"] = "Makasgar, my once faithful apprentice, has become arrogant and deserted me. He has fled north along the coast with a vast amount of dark mojo I had reserved for my future plans.$B$BPerhaps we can make a deal if you and your minions retrieve this artifact along with his head. Bring me what rightfully belongs to me, and you shall receive what you seek in return.", + ["O"] = "After reading the letter you decide to find Zalazane\'s former apprentice by yourself and spare him of his head.Taking his head and Zalazane\'s mojo back to Master Gadrin in Sen\'jin Village will earn you a reward.", + ["T"] = "Zalazane\'s Apprentice", + }, + [80400] = { + ["D"] = "$B$BBlast \'em buggers all to pieces...$B$BOh, hallo there. Perfect timing, my friend. Why, I\'d sure as hell like yer helping hand!$B$BSo, listen up, I\'ve had me book finished recently and was about tae get some components I needed fer ma new invention. I left me camp fer a wee spell and whaddayaknow?! Bloody troggs came over and had a carousin\' with me stuff!$B$BAlas, me book got ripped to pieces and judging by what\'s left of it, all 25 pages of perfectly drawn patterns and schematics were lost.$B$BAll I care about now is me book pages returned and them mauchit troggs sufferin\' in the process. They\'re numpties, same as kobolds, but just like kobolds they tend to run in packs — so be careful when ye find them!", + ["O"] = "Find 10 Dwarven Writings and return them to Prospector Brotalus in the Badlands.", + ["T"] = "Re-assembler!", + }, + [80401] = { + ["D"] = "Unfortunately, building a Pounder isn\'t easy. I will supply most of the components, but I will need you to get me some special things. It is up to you how you go about acquiring them.$B$BI need the following:$B$BA thorium tuned servo for the chassis. I only know of one, and it\'s been locked up by those Scarlet fanatics. I think the armory is where they store objects they consider heretical. Go get it for me!$B$BIn addition to that, I also need a perfect core for the Pounder. The Dark Iron golems in the Blackrock Depths make a good source. Golem Lord Argelmach probably has one.$B$BThe last component I need is a high quality adamantite rod used for the endoskeleton. I believe Stratholme\'s forges used to make such rods in the past. I do not know the state of the city, but I believe the rods may still survive there.", + ["O"] = "Acquire Thorium Tuned Servo from the Scarlet Monastery\'s Armory, obtain the Perfect Golem Core in the Blackrocks Depths from Golem Lord Argelmach, find the Adamantite Rod in Stratholme. Return to Oglethorpe Obnoticus.", + ["T"] = "To Build a Pounder", + }, + [80403] = { + ["D"] = "Not long ago, a goblin zeppelin crashed to the east. A representative of the Steamwheedle Cartel passed through here a few days ago.$B$BShe was looking for information about the zeppelin\'s cargo and its pilot, Beezil, but none of us really got a good look at the crash. I doubt she\'ll be able to clean up after the wreck by herself, much less recover whatever cargo the vessel might have carried.$B$BIf you have time, you may want to check up on her out at Beezil\'s Wreck, due east of here, near the mountains.", + ["O"] = "Speak with Moxie Steelgrille at Beezil\'s Wreck.", + ["T"] = "The Zeppelin Crash", + }, + [80404] = { + ["D"] = "Drazzit will expect to hear something from me soon, but I don\'t think the site is secure enough for me to leave.$B$BIf you have time, would you be willing to take some of the salvaged cargo down to him at Mudsprocket?", + ["O"] = "Take the Zeppelin Cargo to Drazzit Dripvalve at Mudsprocket.", + ["T"] = "Delivery for Drazzit", + }, + [80405] = { + ["D"] = "This zeppelin was carrying six months\' worth of supplies to us at Mudsprocket! Sure, they\'ve been able to barter for some of what they need, but they won\'t hold out forever.$B$BI\'ve been sent out here to recover what I can of the cargo, but the wreckage is scattered all over the marsh in this area. I\'m sure a lot of the cargo didn\'t survive the crash, but are you willing to help me recover what we can?", + ["O"] = "Moxie Steelgrille at Beezil\'s Wreck wants you to recover 8 pieces of Zeppelin Cargo.", + ["T"] = "Secure the Cargo!", + }, + [80407] = { + ["D"] = "Hey!$B$BYou\'re $N, right? I received a letter from a certain Kheyna Spinpistol. She paid me handsomely to direct you to a crashed gnomish rocket car north west of town.$B$BShe said you\'ll know what to do when you find \'it\' .", + ["O"] = "Investigate the crashed Gnomish rocket car northwest of Gadgetzan.", + ["T"] = "A Letter From a Friend", + }, + [80408] = { + ["D"] = "My search for my nemesis continues, but as that search continues, so too does the work that needs to be done. I have needs of brains! I am currently researching an amazingly innovative technology, but it needs to be perfected for all races.$B$BI need more samples and I know exactly where to get them! Far south and slightly east of Gadgetzan you will find a set of Troll ruins known as the Eastmoon Ruins! There are Ogres there. Tear them apart violently! They\'re going to attack the water reserves of Tanaris and cause a lot of people to die from thirst.$B$BWater is already expensive, but if the reserves are destroyed by those brutes, the price will skyrocket and most people won\'t be able to afford water. Let\'s avoid that. Kill them all. Once you have them, take the brains to Reas and then come back to the crystal.", + ["O"] = "Violently retrieve 12 Smooth Ogre Brains from the Dunemaul Ogres at the Eastmoon Ruins and then deliver them to Reas.", + ["T"] = "A Slaughter for Brains", + }, + [80409] = { + ["D"] = "I will deal with these as instructed. You better go back to whoever sent you.", + ["O"] = "Return to the crystal and speak to Kheyna Spinpistol.", + ["T"] = "Return to Kheyna", + }, + [80410] = { + ["D"] = "Excuse me, $N. I received a peculiar message from the Cenarion Circle recently, but it wasn\'t addressed to me, it was addressed to you.$B$B", + ["O"] = "Go to the Andorhal Inn and seek out whoever sent the letter.", + ["T"] = "A Timely Situation", + }, + [80411] = { + ["D"] = "I have been hunting her for a while now, but she is extremely elusive! Every time we get close, she escapes. However, she intends to contact you again. This time we\'ll set a trap. Go to Seradane, avoid the Emerald Portal and proceed to the largest temple. You\'ll find another of her corrupted time crystals. Use it and summon her. Then I will appear and we will defeat her together!", + ["O"] = "Go to Seradane\'s Temple and defeat Antnormi, return to Chromie in Andorhal.", + ["T"] = "An Infinite Hunt", + }, + [80604] = { + ["D"] = "Our enemy is no longer in this time, but I have reason to believe they are in the past. I will tell you more but not here, you never know who might be listening.$B$BTravel to the Caverns of Time in Tanaris.$B$BI have given you authorization to enter since you are involved in this matter.$B$BOnce you arrive talk to me again.", + ["O"] = "Travel to the Caverns of Time and speak to Chromie.", + ["T"] = "A Journey Into The Caverns", + }, + [80605] = { + ["D"] = "Roughly seventeen years ago, Medivh the last guardian under the control of Sargeras opened the Dark Portal, and let the Orcish Horde into this world. We have detected a temporal anomaly in the area consistent with the same energy that Kheyna and Antnormi had.$B$BKheyna is all but certain that Antnormi is behind this, please enter the southern timeway and stop Antnormi before she damages history, I will oversee the situation from here. Before you doubt whether this is a bad thing, the Orcs were instrumental in defeating the Legion, I assure you, the outcome if they didn\'t arrive is catastrophic!", + ["O"] = "Enter the Timeways into Black Morass\'s past and slay Antnormi. Bring her head to Kheyna.", + ["T"] = "The First Opening of The Dark Portal", + }, + [80606] = { + ["D"] = "Have you ever seen one of those mysterious individuals that garb themselves in blue with hoods and robes, and travel through the land punishing those who make things unmerry for others?$B$BNot many people have seen one, or know about them at all. For once they should be the ones to be punished!$B$BIt must be them who took my gloves, for who else could be responsible to make it disappear from my hands?!$B$BI am not sure where you can find one, but should they appear, snowball them in the face for me and let them know it shall not be tolerated!", + ["O"] = "Hit a Game Master with a Snowball!", + ["T"] = "Revenge on Game Masters!", + }, + [80700] = { + ["D"] = "I\'ve been looking for you all around the city! Although I am more of an announcer than a mailman I was instructed to give this letter to you by well… I am not sure who he was.$B$BThe figure\'s face was covered and his voice didn\'t seem familiar at all. He said you will understand when you read it.$B$BI am not one to pry, $N, but be more careful, I wouldn\'t let the guards know I associate myself with those kinds of people.", + ["O"] = "Accept suspicious letter to ease Goodman\'s mind.", + ["T"] = "A Particular Letter", + }, + [80701] = { + ["D"] = "Burn this after you\'ve read it.$B$B$N,$B$BI dearly hope this letter finds you in good health, I wish I could\'ve delivered the message in person but you must understand that we like to keep secrecy at hand.$B$BI am not sure if you\'re aware of what our organisation does, or who we entirely are, but we have discovered valuable information and we might need your help.$B$BIn the envelope you will find a ring, keep it at hand while you come visit us, it will be the sign you\'ve accepted our mission and that the letter was burnt.$B$BUntil we meet,Mathias Shaw.", + ["O"] = "Report to the SI:7 and present the ring to Mathias Shaw.", + ["T"] = "The Elusive SI:7", + }, + [80702] = { + ["D"] = "My agents have reported that a Scarlet caravan has started moving through various towns.$B$BFrom what we know they have already gone to Lakeshire, Darkshire, Menethil and Southshore.$B$BMy only assumption is that whoever took over the Crusade after the events that transpired the Scarlet Monastery, Hearthglen and Stratholme has realised they\'ve been running short on men.$B$BI want you to go and speak to the people of Lakeshire. The locals should have at least seen something.", + ["O"] = "Interrogate the people of Lakeshire and find out the truth. Report back to Mathias Shaw.", + ["T"] = "Young and Foolish", + }, + [80703] = { + ["D"] = "Yeah bub that\'s all I know, now I don\'t say I deserve any kind of compensation for the information but it will highly be appreciated.$B$B$B$BFine then, go on and follow the road to that bridge, Thandol Span or whatever, I hope those Scarlets get you for being such a prick!", + ["O"] = "Bring Vladeus Springriver back to Menethil Harbor and report back to Captain Stoutfist.", + ["T"] = "Thandol Span", + }, + [80704] = { + ["D"] = "We\'ve been trying to no avail to interrogate the young lad you brought back, $N. He simply wouldn\'t talk, me and the other guards tried to persuade him as best as we could.$B$BConsidering you were there to put an end to their masquerade, I\'d assume you\'d have a better chance to draw some information out of him.$B$BCredits given where credits are due, you did a great job putting piece to piece together and finding them.$B$BTake whatever approach you\'d like, just see it done.", + ["O"] = "Decide what to do with Vladeus.", + ["T"] = "Are You True to Your Nature?", + }, + [80705] = { + ["D"] = "During your many adventures through Azeroth you have faced several perils and foes, unlike the man present before you.$B$BYou are more than sure he\'s not a wicked sort and chose to approach this lightly, staying true to your nature.$B$BWith a table full of choices you pick the best means of persuasion and are ready to begin.", + ["O"] = "Use your persuasion skills to interrogate Vladeus.", + ["T"] = "The Means of Persuading", + }, + [80706] = { + ["D"] = "You\'ve met many foes on your several adventures through Azeroth, for the first time something in you clicked.$B$BHow many more scum do you have to beat, maim and kill so that this twisted world gets its damnable peace?$B$BThe Scarlet Crusade has been a personal thorn in your sides as well, maybe it\'s time to deliver some sort of justice or is it vengeance?$B$BWith a table full of tools that will aid you to obtain what you need, you are ready to embrace your demons.", + ["O"] = "Find out everything by any means necessary.", + ["T"] = "Seeking Justice or Vengeance?", + }, + [80707] = { + ["D"] = "You\'ve extracted all the information you could get from Vladeus. Deciding you\'re done with him you let him rest and think about your next actions.$B$BIt seems news of Whitemane\'s death and the demonic influence over Stratholme reached the ears of Lady Abbendis, the last true leader of the Scarlet Crusade.$B$BWith one of her henchmen tricking young men and women to join their cause and force them into staying she\'s trying to regain some numbers.$B$BYou decide to report this to Stoutfist and ask for his opinion.", + ["O"] = "Report to Captain Stoutfist.", + ["T"] = "The Price Of Information", + }, + [80708] = { + ["D"] = "My boys made preparation for the prisoner to reach Stormwind. His fate will be decided there since he’s part of their jurisdiction.$B$BYou were of great help and I am sure you want to poke around this thing even further. I might have a lead for you, not sure how much it will help though.$B$BUnder the Cathedral District’s Chapel there’s a priest in red robes. The intel I got from Shaw’s men says that his name is Brother Crowley and was sent by the Scarlet Crusade inside the city as an ambassador of sorts.$B$BHis mission was to recruit the willing to fight in the name of the Light or whatever stupid lie these Scarlets are telling to themselves.$B$BIn any case, Crowley hasn’t been that active. We are not sure if he’s the one to recruit these blokes but it’s worth a try.", + ["O"] = "Travel to the Cathedral’s District of Stormwind and speak with Brother Crowley.", + ["T"] = "Scarlet Aid", + }, + [80709] = { + ["D"] = "Abbendis must be stopped and you will be one of the thorns in her side and how better should you do it if not from the inside?$B$BWhile I hold no skill in the arts of the Arcane, a dear friend of mine who, just like me, would love to see her fall has provided me in the past with a few scrolls that could change one’s appearance.$B$BI am more than happy to offer you one if you were to tell nobody of it. Let’s just say the scrolls were for something more meaningful, yet desperate times call for desperate measures.$B$BUse this when close to Tyr’s Hand, claim to be one of the disciples of the caravan you destroyed and claim your team was slain by the ogres of Arathi.", + ["O"] = "Travel to Tyr’s Hand and report to Mavel Brightwood.", + ["T"] = "Donning the Red Flag", + }, + [80710] = { + ["D"] = "Ready for your first assignment?$B$BYour armor looks shabby and your blade dull but if you’re not able to pull up your own weight you’re not worth the trouble of the Light.$B$BTravel the Plaguelands, slay any undead in your path and bring me their brains. Their brains are essential for something the High General has planned, simply do your job and ask no questions.$B$BGo you fool, the Light waits for nobody, go on and claim your glorious purpose.", + ["O"] = "Hunt undead all over the Plaguelands and gather their brains.", + ["T"] = "It’s All in Their Brains", + }, + [80711] = { + ["D"] = "Your next errand is to simply collect a few things here and there, nothing special.$B$BYou will find these while fighting Elementals and plants in some of the actual dangerous zones of the world, but I am more than sure you will succeed if you truly are chosen by the Light.$B$BBring me Savage Fronds and Core of the Elements, fifty of each, it will be a great help in what we wish to achieve.$B$BWhen and if you return you will officially be a member and I will give you a map as to where to find the entrance for the secret training spot.$B$BMay the Light bless your poor soul. If you return we will embrace you as a sibling, if you do not we will not mourn for you even for a second.", + ["O"] = "Travel the world and bring back the supplies you were asked to.", + ["T"] = "Supplies We Need", + }, + [80720] = { + ["D"] = "$N, is it?$B$BLord Varimathras tasked me to seek you out at once.$B$BI believe you know where to find him — he stands by the Dark Lady, forever bound to linger in her shadow.$B$BAnd now it is his shadow that looms over you; I would not try his patience.", + ["O"] = "Report to Varimathras in Undercity.", + ["T"] = "A Dreadful Summon", + }, + [80721] = { + ["D"] = "Word has come to me of strange occurrences on the frontlines.$B$BSome of our Queen\'s finest servants have gone missing. Too many, too swiftly and with conspicuous precision to be mere ill luck in warfare.$B$BMy Deathstalkers are preoccupied with far direr tasks, hence I would have you travel to Brill, the Sepulcher and Tarren Mill to collect the accounts of the local executors in their stead.$B$BReturn to me, and if I am pleased, I might just reward you.", + ["O"] = "Travel to Brill, the Sepulcher and Tarren Mill. Speak to High Executor Darthalia, Executor Zygand and High Executor Hadrec. Report back to Varimathras.", + ["T"] = "Grim News", + }, + [80722] = { + ["D"] = "If we truly want to unravel the truth of this ploy, we will have to spur the Scarlets to play their cards into our hands.$B$BFor this purpose, I have pressed a Deathguard into your service. His name is Maverin, or Moverish — human names are a blight to my tongue.$B$BYou will find him in the graveyard near the path to the Monastery in the north. Have him play the bait, he is not a valuable asset, then slay the Scarlets and seize whatever you can find of this curious new weapon in their arsenal.$B$BDo not disappoint me.", + ["O"] = "Find Deathguard Maverick and set a trap for the Scarlet Crusade. Report back to Varimathras.", + ["T"] = "To Catch a Rat...", + }, + [80723] = { + ["D"] = "So this potion is the crux of the Scarlet schemes. Dull, crude and yet irritatingly potent.$B$BI myself do not dabble in the low craft of alchemy. Fortunately, our Queen\'s Royal Apothecaries favor the art of pondering alembics and grinding grass.$B$BVenture to the Apothecarium, find Apothecary Zwinker and show her what you have found. She is a creature of mine.$B$BGo, be quick and be discreet.", + ["O"] = "Take the vial to the Apothecarium and speak to Varimathras’ trusted apothecary.", + ["T"] = "Trusted Apothecary", + }, + [80724] = { + ["D"] = "I did perform a few precursory tests on the substance you have with you. All I have been able to discern is that the potion contains Peacebloom and Ghost Hair.$B$BBut that cannot answer for the catatonic state it forces upon undead.$B$BIt is my hypothesis that this concoction has been tampered with some manner of higher spellcraft, and that is beyond my abilities to solve.$B$BThere is only one who can give us the answers we need. He dwells at the centre of Brightwater Lake, east of Brill.$B$BApproach him with great reverence and measure your words accordingly.", + ["O"] = "Find Gunther Arcanus in Tirisfal Glades.", + ["T"] = "Consulting an Expert", + }, + [80725] = { + ["D"] = "I sometimes long for Dalaran and of the days I once lived as no more than a mere student of the arcane arts.$B$BWhen the Scourge shackled me to their dominion, my old memories were the only tether that kept me from losing myself utterly.$B$BI do not intend to burden you with my life\'s story, $N, but I already know what this vial is and how it was made, yet I need you to do me a favor before I tell you. Think of it as an equivalent exchange.$B$BGo to the decadent town of Ambermill: Behind its town hall I buried a locket and sealed it with magic.$B$BI will give you a scroll that will erase its warding spell, retrieve the locket, and return it to me. Then we shall talk.", + ["O"] = "Travel behind Ambermill and dig for Gunther’s locket.", + ["T"] = "In Gunther’s Favor", + }, + [80726] = { + ["D"] = "The potion brewed by the Scarlets that you retrieved is known as the Draught of Dormant Death, or Mortudiant as we scholars prefer.$B$BIt was first conceived during the Second War, in Dalaran, to aid in countering the unhallowed might of Gul\'dan\'s death knights.$B$BIt can only be concocted with a specific alchemical implement commonly used in transmutation known as the Philosopher\'s Stone. Which, unfortunately, I neither possess nor know how to emulate.$B$BFor now, you should return to your masters in the Undercity with what you\'ve learned. I will keep the potion and see whether I can learn anything else.", + ["O"] = "Return to Varimathras in Undercity.", + ["T"] = "Soul and Alchemy", + }, + [80727] = { + ["D"] = "I have prepared a report of our findings to be delivered to the Dark Lady.$B$BShe will little like what she shall read, and it would be a shame if her wrath were to be your end.$B$BSo kneel before her, appease her, serve her as loyally as you served me...but do not forget to whom you belong.", + ["O"] = "Report to Sylvanas.", + ["T"] = "Dark Temper for a Dark Lady", + }, + [80728] = { + ["D"] = "I know all of the draught that clouds the minds of my warriors, your collusion with my dreadlord and the deathguard you\'ve squandered at his behest.$B$BBut perhaps you have grown fond of Varimathras. Would you like to be one of his playthings? One word and I will make sure you are his. Forever.$B$BNo? You yet value your soul? Pity.$B$BThen you will do as I say and go to Tyr\'s Hand, in the Eastern Plaguelands. Fetch a Scarlet uniform from those zealous fools and bring it to Gunther. He will know the rest.$B$BGo now, begone from my sight.", + ["O"] = "Travel to Tyr\'s Hand in the Eastern Plaguelands, obtain a Scarlet Initiate Uniform, then return to Gunther Arcanus on the isle of Brightwater Lake.", + ["T"] = "The Future Looks Grim", + }, + [80729] = { + ["D"] = "As you may have divined, we contrive to infiltrate you into the ranks of the Scarlet Crusade.$B$BUpon the uniform you\'ve brought me I placed an illusion charm, as well as a few greater cloaking wards to keep the enchantment from easy detection.$B$BAll that is left is for you to introduce yourself as a novice to the recruiters in Tyr\'s Hand.$B$BOne such recruiter should be Mavel Brightwood.$B$BI wish you luck, $N. Have your wits about you and find out what you can of their meddlesome alchemists.", + ["O"] = "Travel to Tyr’s Hand and report to Mavel Brightwood.", + ["T"] = "A Different Shade of Red", + }, + [80730] = { + ["D"] = "The SI:7 have means of communication that reach us quite fast and believe it or not they are very reliable.$B$BSparing you any further details you should know that a dwarven caravan that was meant to reach Aerie Peak never made it out of the Wetlands.$B$BThe caravan lays in ruins and you can only find the mutilated husks of what used to be dwarves.$B$BOur agents already poked around the zone but failed to find anything, they are currently trying to localize these newly recruited Scarlet zealots.$B$BI\'m not very sure how much of a detective you believe yourself to be, but I ask you to take a second look, maybe they missed something.$B$BIf you find the recruits, keep in mind that we aren\'t sure what manner of persuasion the Scarlets used to brainwash them, spare as many as you can and take them to Menethil.", + ["O"] = "Follow the Caravan\'s route and look for clues.", + ["T"] = "Caravan Meets Caravan", + }, + [80735] = { + ["D"] = "Fulfill my request and I will teach you ancient, powerful knowledge.", + ["O"] = "Bring 3 Scales of Onyxia to Aurelius and he will teach you how to transmute them into Refined Scales of Onyxia.", + ["T"] = "An Uncommon Request", + }, + [80736] = { + ["D"] = "You are not the only one who came here seeking forgotten knowledge. However, just like everyone else, it will not simply be given to you. Fulfill my request and I will teach you what I know.$B$BYou will need the help of a good alchemist, one whom I have taught my secrets.", + ["O"] = "Bring 3 Refined Scales of Onyxia to Aurelius and he will teach you how to turn them into Charged Scales of Onyxia.", + ["T"] = "A Rare Request", + }, + [80738] = { + ["D"] = "The Gurubashi trolls have a unique recipe for gumbo that can boost the willpower of those that consume it. It is often eaten by their fiercest warriors before combat.$B$BI have obtained such a recipe and am willing to trade it to those who prove themselves in the arena.$B$BBring me Tokens of Blood and you too may learn this recipe.", + ["O"] = "Bring 25 Tokens of Blood to Bradley Steel at the Gurubashi Arena in Stranglethorn Vale.", + ["T"] = "Recipe: Gurubashi Gumbo", + }, + [80739] = { + ["D"] = "A fierce and quick bout of combat in the arena is often decided by the strength to overcome.$B$BSuch power can overcome those that are unprepared, or give you the last bit of desire to win in the heat of battle.$B$BSuch strength can be found in this enchantment once held by the Gurubashi trolls. For a price, it can also be yours.", + ["O"] = "Bring 25 Tokens of Blood to Bradley Steel at the Gurubashi Arena in Stranglethorn Vale.", + ["T"] = "Formula: Enchant Gloves - Major Strength", + }, + [80740] = { + ["D"] = "$N, the Lunar Festival needs you! During the celebration a sneaky satyr snuck in and stole our most special firework. It was a special kind of firework I managed to get from the Goblins of Booty Bay. He claims he managed to buy this off some traveling merchant that claimed he was from all the way to Pandaria.Its beauty would cover the entire sky of Moonglade in the form of a dragon serpent. You must retrieve it! It was supposed to be our greatest surprise for this year\'s Lunar Event.If the revelers are to be believed this satyr came at the behest of Lorgus Jett. A thievling cultist that hides in the Blackfathom Deeps. Retrieve my prize and I will offer you, yours!", + ["O"] = "Retrive the Dragon Firework from Lorgus Jett in Blackfathom Deeps and return to the Lunar Festival Vendor, in Mooglade.", + ["T"] = "They Took Our Dragon!", + }, + [80745] = { + ["D"] = "The Mid-Autumn Festival is upon us, a time to celebrate unity and joy under the moonlit sky. You’ve been chosen to take part in the ancient lantern-lighting ceremony, a tradition that fills the night with glowing blessings.Head to the riverbank, place your lantern on the waters, and watch as it drifts, carrying your wishes for peace and prosperity. The spirits of the water will guide your light, spreading warmth and hope through the night.Return once the lantern has set sail, and you\'ll be rewarded for your participation in this sacred event.", + ["O"] = "Travel to the riverbank and release the lantern into the water.", + ["T"] = "Illuminate the Moonlit Night", + }, + [80755] = { + ["D"] = "Yes, yes, I understand why Liott sent you to me. Without that incantation, you would have had quite the struggle taming all but the most indiscriminate of beasts. Now you may tame living creatures the world over!$B$BBut you must know that is not enough. You must realize that the true power of the creatures you turn to your whims lies in bestowing them the talents you observe in the wild. It is not enough to simply sic a wild animal upon your foes.$B$BIf you wish to tap into the true potential of your pets, then speak to me once again. I will spare no detail in enlightening you in the ways of the beast master.", + ["O"] = "Speak with Diane Willowfield in the War Quarter of the Undercity.", + ["T"] = "Training the Beast", + }, + [140821] = { + ["D"] = "Listen up, soldiers! Our scouts have identified one of the orcs\' battlefield leaders. He is an extraordinarily bloodthirsty and cunning blademaster by the name of Axun. Take a company of men, and search for him. The sooner we eliminate this menace, the better our chances of holding the line. We must not let these savages advance further into human lands.", + ["O"] = "Search the battlefield for Blademaster Axun and slay him.", + ["T"] = "Strategic Strike", + }, + [1140820] = { + ["D"] = "As much as I enjoy watching you grunts throw yourself into the meat grinder, this won\'t win us the battle. If we are to conquer these lands, we must decapitate their leadership. Gather the other grunts, and find Lady Katrin, the humans\' battlefield strategist. Once their command structure crumbles, their footmen will be easy pickings for our warriors.", + ["O"] = "Search the battlefield for Lady Katrin and slay her.", + ["T"] = "Strategic Strike", + }, +} + +-- Source: https://raw.githubusercontent.com/shagu/pfQuest-turtle/master/db/quests-turtle.lua +RelationshipsQuestAndItemBrowserData["quests"]["data-turtle"] = { + [1] = "_", + [2] = { + ["end"] = { + ["U"] = { 12696 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["pre"] = { 6383 }, + ["race"] = 434, + ["start"] = { + ["I"] = { 16305 }, + }, + }, + [5] = { + ["end"] = { + ["U"] = { 272 }, + }, + ["lvl"] = 20, + ["min"] = 17, + ["pre"] = { 163 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 288 }, + }, + }, + [6] = { + ["end"] = { + ["U"] = { 823 }, + }, + ["lvl"] = 5, + ["min"] = 2, + ["obj"] = { + ["I"] = { 182 }, + }, + ["pre"] = { 18 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 823 }, + }, + }, + [7] = { + ["end"] = { + ["U"] = { 197 }, + }, + ["lvl"] = 2, + ["min"] = 1, + ["obj"] = { + ["U"] = { 6 }, + }, + ["pre"] = { 783 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 197 }, + }, + }, + [8] = { + ["end"] = { + ["U"] = { 5688 }, + }, + ["lvl"] = 5, + ["min"] = 1, + ["race"] = 434, + ["start"] = { + ["U"] = { 6784 }, + }, + }, + [9] = { + ["end"] = { + ["U"] = { 233 }, + }, + ["lvl"] = 15, + ["min"] = 8, + ["obj"] = { + ["U"] = { 114 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 233 }, + }, + }, + [11] = { + ["end"] = { + ["U"] = { 963 }, + }, + ["lvl"] = 10, + ["min"] = 6, + ["obj"] = { + ["I"] = { 782 }, + }, + ["pre"] = { 239 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 963 }, + }, + }, + [12] = { + ["end"] = { + ["U"] = { 234 }, + }, + ["lvl"] = 12, + ["min"] = 9, + ["obj"] = { + ["U"] = { 95, 504 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 234 }, + }, + }, + [13] = { + ["end"] = { + ["U"] = { 234 }, + }, + ["lvl"] = 14, + ["min"] = 9, + ["obj"] = { + ["U"] = { 589, 590 }, + }, + ["pre"] = { 12 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 234 }, + }, + }, + [14] = { + ["end"] = { + ["U"] = { 234 }, + }, + ["lvl"] = 17, + ["min"] = 9, + ["obj"] = { + ["U"] = { 121, 122, 449 }, + }, + ["pre"] = { 13 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 234 }, + }, + }, + [15] = { + ["end"] = { + ["U"] = { 197 }, + }, + ["lvl"] = 3, + ["min"] = 1, + ["obj"] = { + ["U"] = { 257 }, + }, + ["pre"] = { 7 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 197 }, + }, + }, + [16] = { + ["end"] = { + ["U"] = { 255 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["obj"] = { + ["I"] = { 159 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 255 }, + }, + }, + [17] = { + ["end"] = { + ["U"] = { 1470 }, + }, + ["lvl"] = 42, + ["min"] = 38, + ["obj"] = { + ["I"] = { 8047 }, + }, + ["pre"] = { 2500 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1470 }, + }, + }, + [18] = { + ["end"] = { + ["U"] = { 823 }, + }, + ["lvl"] = 4, + ["min"] = 2, + ["obj"] = { + ["I"] = { 752 }, + }, + ["pre"] = { 783 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 823 }, + }, + }, + [19] = { + ["end"] = { + ["U"] = { 382 }, + }, + ["lvl"] = 25, + ["min"] = 18, + ["obj"] = { + ["I"] = { 1260 }, + }, + ["pre"] = { 20 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 382 }, + }, + }, + [20] = { + ["end"] = { + ["U"] = { 382 }, + }, + ["lvl"] = 21, + ["min"] = 18, + ["obj"] = { + ["I"] = { 3014 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 382 }, + }, + }, + [21] = { + ["end"] = { + ["U"] = { 197 }, + }, + ["lvl"] = 5, + ["min"] = 1, + ["obj"] = { + ["U"] = { 80 }, + }, + ["pre"] = { 15 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 197 }, + }, + }, + [22] = { + ["end"] = { + ["U"] = { 235 }, + }, + ["lvl"] = 12, + ["min"] = 9, + ["obj"] = { + ["I"] = { 723 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 235 }, + }, + }, + [23] = { + ["end"] = { + ["U"] = { 12696 }, + }, + ["lvl"] = 24, + ["min"] = 20, + ["pre"] = { 6383 }, + ["race"] = 434, + ["start"] = { + ["I"] = { 16303 }, + }, + }, + [24] = { + ["end"] = { + ["U"] = { 12696 }, + }, + ["lvl"] = 27, + ["min"] = 20, + ["pre"] = { 6383 }, + ["race"] = 434, + ["start"] = { + ["I"] = { 16304 }, + }, + }, + [25] = { + ["end"] = { + ["U"] = { 12737 }, + }, + ["lvl"] = 25, + ["min"] = 23, + ["obj"] = { + ["A"] = { 2926 }, + ["U"] = { 3917 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 12737 }, + }, + }, + [30] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 11802 }, + }, + ["lvl"] = 16, + ["min"] = 16, + ["obj"] = { + ["I"] = { 15882, 15883, 15885 }, + ["IR"] = { 15883 }, + }, + ["pre"] = { 28 }, + ["race"] = 32, + ["start"] = { + ["U"] = { 11799 }, + }, + }, + [32] = { + ["end"] = { + ["U"] = { 7010 }, + }, + ["lvl"] = 48, + ["min"] = 39, + ["pre"] = { 113 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 7724 }, + }, + }, + [33] = { + ["end"] = { + ["U"] = { 196 }, + }, + ["lvl"] = 2, + ["min"] = 1, + ["obj"] = { + ["I"] = { 750 }, + }, + ["pre"] = { 5261 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 196 }, + }, + }, + [34] = { + ["end"] = { + ["U"] = { 342 }, + }, + ["lvl"] = 24, + ["min"] = 18, + ["obj"] = { + ["I"] = { 3631 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 342 }, + }, + }, + [35] = { + ["end"] = { + ["U"] = { 261 }, + }, + ["lvl"] = 10, + ["min"] = 7, + ["pre"] = { 40 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 240 }, + }, + }, + [36] = { + ["end"] = { + ["U"] = { 235 }, + }, + ["lvl"] = 10, + ["min"] = 9, + ["race"] = 589, + ["start"] = { + ["U"] = { 238 }, + }, + }, + [37] = { + ["end"] = { + ["O"] = { 55 }, + }, + ["lvl"] = 10, + ["min"] = 7, + ["pre"] = { 35 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 261 }, + }, + }, + [38] = { + ["end"] = { + ["U"] = { 235 }, + }, + ["lvl"] = 13, + ["min"] = 9, + ["obj"] = { + ["I"] = { 729, 730, 731, 732 }, + }, + ["pre"] = { 36 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 235 }, + }, + }, + [39] = { + ["end"] = { + ["U"] = { 240 }, + }, + ["lvl"] = 10, + ["min"] = 7, + ["pre"] = { 71 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 261 }, + }, + }, + [40] = { + ["end"] = { + ["U"] = { 240 }, + }, + ["lvl"] = 10, + ["min"] = 7, + ["race"] = 589, + ["start"] = { + ["U"] = { 241 }, + }, + }, + [45] = { + ["end"] = { + ["O"] = { 56 }, + }, + ["lvl"] = 10, + ["min"] = 7, + ["pre"] = { 37 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 55 }, + }, + }, + [46] = { + ["end"] = { + ["U"] = { 261 }, + }, + ["lvl"] = 10, + ["min"] = 7, + ["obj"] = { + ["I"] = { 780 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 261 }, + }, + }, + [47] = { + ["end"] = { + ["U"] = { 241 }, + }, + ["lvl"] = 7, + ["min"] = 4, + ["obj"] = { + ["I"] = { 773 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 241 }, + }, + }, + [48] = { + ["end"] = { + ["U"] = { 239 }, + }, + ["lvl"] = 44, + ["min"] = 40, + ["obj"] = { + ["I"] = { 737 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 239 }, + }, + }, + [49] = { + ["end"] = { + ["U"] = { 239 }, + }, + ["lvl"] = 44, + ["min"] = 40, + ["obj"] = { + ["I"] = { 738, 739, 740 }, + }, + ["pre"] = { 48 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 239 }, + }, + }, + [50] = { + ["end"] = { + ["U"] = { 239 }, + }, + ["lvl"] = 44, + ["min"] = 40, + ["obj"] = { + ["I"] = { 6037 }, + }, + ["pre"] = { 49 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 239 }, + }, + }, + [51] = { + ["end"] = { + ["U"] = { 239 }, + }, + ["lvl"] = 44, + ["min"] = 40, + ["obj"] = { + ["I"] = { 742 }, + }, + ["pre"] = { 50 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 239 }, + }, + }, + [52] = { + ["end"] = { + ["U"] = { 261 }, + }, + ["lvl"] = 10, + ["min"] = 7, + ["obj"] = { + ["U"] = { 118, 822 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 261 }, + }, + }, + [53] = { + ["end"] = { + ["U"] = { 239 }, + }, + ["lvl"] = 44, + ["min"] = 40, + ["obj"] = { + ["I"] = { 743 }, + }, + ["pre"] = { 51 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 239 }, + }, + }, + [54] = { + ["end"] = { + ["U"] = { 240 }, + }, + ["lvl"] = 5, + ["min"] = 1, + ["pre"] = { 21 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 197 }, + }, + }, + [55] = { + ["end"] = { + ["U"] = { 311 }, + }, + ["lvl"] = 32, + ["min"] = 20, + ["obj"] = { + ["IR"] = { 7297 }, + ["U"] = { 1200 }, + }, + ["pre"] = { 325 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 311 }, + }, + }, + [56] = { + ["end"] = { + ["U"] = { 264 }, + }, + ["lvl"] = 24, + ["min"] = 18, + ["obj"] = { + ["U"] = { 48, 203 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 264 }, + }, + }, + [57] = { + ["end"] = { + ["U"] = { 264 }, + }, + ["lvl"] = 26, + ["min"] = 18, + ["obj"] = { + ["U"] = { 202, 531 }, + }, + ["pre"] = { 56 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 264 }, + }, + }, + [58] = { + ["end"] = { + ["U"] = { 264 }, + }, + ["lvl"] = 30, + ["min"] = 18, + ["obj"] = { + ["U"] = { 604 }, + }, + ["pre"] = { 57 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 264 }, + }, + }, + [59] = { + ["end"] = { + ["U"] = { 278 }, + }, + ["lvl"] = 10, + ["min"] = 7, + ["pre"] = { 39 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 240 }, + }, + }, + [60] = { + ["end"] = { + ["U"] = { 253 }, + }, + ["lvl"] = 7, + ["min"] = 3, + ["obj"] = { + ["I"] = { 772 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 253 }, + }, + }, + [61] = { + ["end"] = { + ["U"] = { 279 }, + }, + ["lvl"] = 7, + ["min"] = 3, + ["pre"] = { 60 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 253 }, + }, + }, + [62] = { + ["end"] = { + ["U"] = { 240 }, + }, + ["lvl"] = 7, + ["min"] = 4, + ["obj"] = { + ["A"] = { 88, 197 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 240 }, + }, + }, + [63] = { + ["class"] = 64, + ["end"] = { + ["O"] = { 113791 }, + }, + ["lvl"] = 23, + ["min"] = 20, + ["obj"] = { + ["I"] = { 7812 }, + }, + ["pre"] = { 220 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5901 }, + }, + }, + [64] = { + ["end"] = { + ["U"] = { 237 }, + }, + ["lvl"] = 12, + ["min"] = 9, + ["obj"] = { + ["I"] = { 841 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 237 }, + }, + }, + [65] = { + ["end"] = { + ["U"] = { 266 }, + }, + ["lvl"] = 18, + ["min"] = 14, + ["race"] = 589, + ["start"] = { + ["U"] = { 234 }, + }, + }, + [66] = { + ["end"] = { + ["U"] = { 267 }, + }, + ["lvl"] = 28, + ["min"] = 22, + ["race"] = 589, + ["start"] = { + ["U"] = { 265 }, + }, + }, + [67] = { + ["end"] = { + ["O"] = { 3643 }, + }, + ["lvl"] = 28, + ["min"] = 22, + ["pre"] = { 66 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 267 }, + }, + }, + [68] = { + ["end"] = { + ["U"] = { 267 }, + }, + ["lvl"] = 28, + ["min"] = 22, + ["pre"] = { 67 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 3643 }, + }, + }, + [69] = { + ["end"] = { + ["U"] = { 295 }, + }, + ["lvl"] = 28, + ["min"] = 22, + ["pre"] = { 68 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 267 }, + }, + }, + [70] = { + ["end"] = { + ["U"] = { 297 }, + }, + ["lvl"] = 28, + ["min"] = 22, + ["obj"] = { + ["I"] = { 910 }, + }, + ["pre"] = { 69 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 295 }, + }, + }, + [71] = { + ["end"] = { + ["U"] = { 261 }, + }, + ["lvl"] = 10, + ["min"] = 7, + ["pre"] = { 45 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 56 }, + }, + }, + [72] = { + ["end"] = { + ["O"] = { 1561 }, + }, + ["lvl"] = 28, + ["min"] = 22, + ["pre"] = { 70 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 297 }, + }, + }, + [73] = "_", + [74] = { + ["end"] = { + ["U"] = { 294 }, + }, + ["lvl"] = 28, + ["min"] = 22, + ["pre"] = { 72 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 1561 }, + }, + }, + [75] = { + ["end"] = { + ["U"] = { 294 }, + }, + ["lvl"] = 28, + ["min"] = 22, + ["obj"] = { + ["I"] = { 921 }, + }, + ["pre"] = { 74 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 294 }, + }, + }, + [76] = { + ["end"] = { + ["U"] = { 240 }, + }, + ["lvl"] = 10, + ["min"] = 4, + ["obj"] = { + ["A"] = { 87, 342 }, + }, + ["pre"] = { 62 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 240 }, + }, + }, + [77] = { + ["end"] = { + ["U"] = { 7801 }, + }, + ["lvl"] = 48, + ["min"] = 42, + ["obj"] = { + ["I"] = { 8684 }, + }, + ["pre"] = { 650 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 7801 }, + }, + }, + [78] = { + ["end"] = { + ["U"] = { 273 }, + }, + ["lvl"] = 28, + ["min"] = 22, + ["pre"] = { 75 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 294 }, + }, + }, + [79] = { + ["end"] = { + ["U"] = { 264 }, + }, + ["lvl"] = 28, + ["min"] = 22, + ["pre"] = { 78 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 273 }, + }, + }, + [80] = { + ["end"] = { + ["U"] = { 267 }, + }, + ["lvl"] = 28, + ["min"] = 22, + ["pre"] = { 79 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 264 }, + }, + }, + [81] = { + ["end"] = { + ["U"] = { 6986 }, + }, + ["lvl"] = 48, + ["min"] = 42, + ["pre"] = { 77 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 7801 }, + }, + }, + [83] = { + ["end"] = { + ["U"] = { 278 }, + }, + ["lvl"] = 9, + ["min"] = 4, + ["obj"] = { + ["I"] = { 1019 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 278 }, + }, + }, + [84] = { + ["end"] = { + ["U"] = { 247 }, + }, + ["lvl"] = 6, + ["min"] = 5, + ["pre"] = { 86 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 246 }, + }, + }, + [85] = { + ["end"] = { + ["U"] = { 247 }, + }, + ["lvl"] = 6, + ["min"] = 5, + ["race"] = 589, + ["start"] = { + ["U"] = { 246 }, + }, + }, + [86] = { + ["end"] = { + ["U"] = { 246 }, + }, + ["lvl"] = 6, + ["min"] = 5, + ["obj"] = { + ["I"] = { 769 }, + }, + ["pre"] = { 85 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 247 }, + }, + }, + [87] = { + ["end"] = { + ["U"] = { 246 }, + }, + ["lvl"] = 8, + ["min"] = 5, + ["obj"] = { + ["I"] = { 981 }, + }, + ["pre"] = { 84 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 247 }, + }, + }, + [88] = { + ["end"] = { + ["U"] = { 244 }, + }, + ["lvl"] = 9, + ["min"] = 6, + ["obj"] = { + ["I"] = { 1006 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 244 }, + }, + }, + [89] = { + ["end"] = { + ["U"] = { 341 }, + }, + ["lvl"] = 20, + ["min"] = 15, + ["obj"] = { + ["I"] = { 1013, 2856 }, + }, + ["pre"] = { 125 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 341 }, + }, + }, + [90] = { + ["end"] = { + ["U"] = { 272 }, + }, + ["lvl"] = 25, + ["min"] = 18, + ["obj"] = { + ["I"] = { 1015, 2665 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 272 }, + }, + }, + [91] = { + ["end"] = { + ["U"] = { 900 }, + }, + ["lvl"] = 23, + ["min"] = 17, + ["obj"] = { + ["I"] = { 1075 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 900 }, + }, + }, + [92] = { + ["end"] = { + ["U"] = { 343 }, + }, + ["lvl"] = 18, + ["min"] = 15, + ["obj"] = { + ["I"] = { 1080, 1081, 2296 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 343 }, + }, + }, + [93] = { + ["end"] = { + ["U"] = { 272 }, + }, + ["lvl"] = 20, + ["min"] = 17, + ["obj"] = { + ["I"] = { 2251 }, + }, + ["pre"] = { 5 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 272 }, + }, + }, + [94] = { + ["end"] = { + ["O"] = { 31 }, + }, + ["lvl"] = 21, + ["min"] = 20, + ["race"] = 589, + ["start"] = { + ["U"] = { 313 }, + }, + }, + [95] = { + ["end"] = { + ["O"] = { 59 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["race"] = 589, + ["start"] = { + ["U"] = { 311 }, + }, + }, + [96] = { + ["class"] = 64, + ["close"] = { 96 }, + ["end"] = { + ["U"] = { 5901 }, + }, + ["lvl"] = 23, + ["min"] = 20, + ["pre"] = { 100 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5895 }, + }, + }, + [97] = { + ["end"] = { + ["U"] = { 264 }, + }, + ["lvl"] = 28, + ["min"] = 22, + ["pre"] = { 80 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 267 }, + }, + }, + [98] = { + ["end"] = { + ["U"] = { 265 }, + }, + ["lvl"] = 35, + ["min"] = 22, + ["obj"] = { + ["I"] = { 3629 }, + }, + ["pre"] = { 97 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 264 }, + }, + }, + [99] = { + ["end"] = { + ["U"] = { 1938 }, + }, + ["lvl"] = 15, + ["min"] = 9, + ["obj"] = { + ["I"] = { 3218 }, + }, + ["pre"] = { 424 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1938 }, + }, + }, + [100] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 5895 }, + }, + ["lvl"] = 23, + ["min"] = 20, + ["pre"] = { 63 }, + ["race"] = 434, + ["start"] = { + ["O"] = { 113791 }, + }, + }, + [101] = { + ["end"] = { + ["U"] = { 265 }, + }, + ["lvl"] = 25, + ["min"] = 18, + ["obj"] = { + ["I"] = { 1129, 1130, 2378 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 265 }, + }, + }, + [102] = { + ["end"] = { + ["U"] = { 821 }, + }, + ["lvl"] = 14, + ["min"] = 8, + ["obj"] = { + ["I"] = { 725 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 821 }, + }, + }, + [105] = { + ["end"] = { + ["U"] = { 10837 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 17114 }, + }, + ["pre"] = { 5098 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 10837 }, + }, + }, + [106] = { + ["end"] = { + ["U"] = { 252 }, + }, + ["lvl"] = 6, + ["min"] = 5, + ["race"] = 589, + ["start"] = { + ["U"] = { 251 }, + }, + }, + [107] = { + ["end"] = { + ["U"] = { 253 }, + }, + ["lvl"] = 6, + ["min"] = 5, + ["pre"] = { 111 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 248 }, + }, + }, + [108] = "_", + [109] = { + ["end"] = { + ["U"] = { 234 }, + }, + ["lvl"] = 10, + ["min"] = 9, + ["race"] = 589, + ["start"] = { + ["U"] = { 261 }, + }, + }, + [111] = { + ["end"] = { + ["U"] = { 248 }, + }, + ["lvl"] = 6, + ["min"] = 5, + ["pre"] = { 106 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 252 }, + }, + }, + [112] = { + ["end"] = { + ["U"] = { 253 }, + }, + ["lvl"] = 7, + ["min"] = 5, + ["obj"] = { + ["I"] = { 1256 }, + }, + ["pre"] = { 107 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 253 }, + }, + }, + [114] = { + ["end"] = { + ["U"] = { 251 }, + }, + ["lvl"] = 7, + ["min"] = 5, + ["pre"] = { 112 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 253 }, + }, + }, + [115] = { + ["end"] = { + ["U"] = { 382 }, + }, + ["lvl"] = 23, + ["min"] = 18, + ["obj"] = { + ["I"] = { 1261 }, + }, + ["pre"] = { 20 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 382 }, + }, + }, + [116] = { + ["end"] = { + ["U"] = { 346 }, + }, + ["lvl"] = 15, + ["min"] = 12, + ["obj"] = { + ["I"] = { 1262, 1939, 1941, 1942 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 346 }, + }, + }, + [117] = { + ["end"] = { + ["U"] = { 239 }, + }, + ["lvl"] = 15, + ["obj"] = { + ["I"] = { 1274 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 239 }, + }, + }, + [118] = { + ["end"] = { + ["U"] = { 514 }, + }, + ["lvl"] = 18, + ["min"] = 14, + ["race"] = 589, + ["start"] = { + ["U"] = { 415 }, + }, + }, + [119] = { + ["end"] = { + ["U"] = { 415 }, + }, + ["lvl"] = 18, + ["min"] = 13, + ["pre"] = { 118 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 514 }, + }, + }, + [120] = { + ["end"] = { + ["U"] = { 466 }, + }, + ["lvl"] = 14, + ["min"] = 14, + ["race"] = 589, + ["start"] = { + ["U"] = { 344 }, + }, + }, + [121] = { + ["end"] = { + ["U"] = { 344 }, + }, + ["lvl"] = 14, + ["min"] = 14, + ["pre"] = { 120 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 466 }, + }, + }, + [122] = { + ["end"] = { + ["U"] = { 415 }, + }, + ["lvl"] = 18, + ["min"] = 14, + ["obj"] = { + ["I"] = { 1221 }, + }, + ["pre"] = { 118 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 415 }, + }, + }, + [123] = { + ["end"] = { + ["U"] = { 240 }, + }, + ["lvl"] = 10, + ["min"] = 7, + ["race"] = 589, + ["start"] = { + ["I"] = { 1307 }, + }, + }, + [124] = { + ["end"] = { + ["U"] = { 415 }, + }, + ["lvl"] = 20, + ["min"] = 15, + ["obj"] = { + ["U"] = { 426, 430 }, + }, + ["pre"] = { 118 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 415 }, + }, + }, + [125] = { + ["end"] = { + ["U"] = { 341 }, + }, + ["lvl"] = 16, + ["min"] = 15, + ["obj"] = { + ["I"] = { 1309 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 341 }, + }, + }, + [126] = { + ["end"] = { + ["U"] = { 415 }, + }, + ["lvl"] = 25, + ["min"] = 15, + ["obj"] = { + ["I"] = { 3614 }, + }, + ["pre"] = { 124 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 415 }, + }, + }, + [127] = { + ["end"] = { + ["U"] = { 381 }, + }, + ["lvl"] = 21, + ["min"] = 16, + ["obj"] = { + ["I"] = { 1467 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 381 }, + }, + }, + [128] = { + ["end"] = { + ["U"] = { 903 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["obj"] = { + ["U"] = { 435 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 903 }, + }, + }, + [129] = { + ["end"] = { + ["U"] = { 464 }, + }, + ["lvl"] = 15, + ["min"] = 12, + ["race"] = 589, + ["start"] = { + ["U"] = { 379 }, + }, + }, + [130] = { + ["end"] = { + ["U"] = { 342 }, + }, + ["lvl"] = 15, + ["min"] = 12, + ["pre"] = { 129 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 464 }, + }, + }, + [131] = { + ["end"] = { + ["U"] = { 379 }, + }, + ["lvl"] = 15, + ["min"] = 12, + ["pre"] = { 130 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 342 }, + }, + }, + [132] = { + ["end"] = { + ["U"] = { 234 }, + }, + ["lvl"] = 18, + ["min"] = 14, + ["pre"] = { 65 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 266 }, + }, + }, + [133] = { + ["end"] = { + ["U"] = { 289 }, + }, + ["lvl"] = 27, + ["min"] = 20, + ["obj"] = { + ["I"] = { 884 }, + }, + ["pre"] = { 159 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 289 }, + }, + }, + [134] = { + ["end"] = { + ["U"] = { 289 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["obj"] = { + ["I"] = { 1349 }, + }, + ["pre"] = { 133 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 289 }, + }, + }, + [135] = { + ["end"] = { + ["U"] = { 332 }, + }, + ["lvl"] = 18, + ["min"] = 14, + ["pre"] = { 132 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 234 }, + }, + }, + [137] = "_", + [141] = { + ["end"] = { + ["U"] = { 234 }, + }, + ["lvl"] = 18, + ["min"] = 14, + ["pre"] = { 135 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 332 }, + }, + }, + [142] = { + ["end"] = { + ["U"] = { 234 }, + }, + ["lvl"] = 18, + ["min"] = 14, + ["obj"] = { + ["I"] = { 1381 }, + }, + ["pre"] = { 141 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 234 }, + }, + }, + [143] = { + ["end"] = { + ["U"] = { 234 }, + }, + ["lvl"] = 14, + ["min"] = 14, + ["pre"] = { 121 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 344 }, + }, + }, + [144] = { + ["end"] = { + ["U"] = { 344 }, + }, + ["lvl"] = 14, + ["min"] = 14, + ["pre"] = { 143 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 234 }, + }, + }, + [145] = { + ["end"] = { + ["U"] = { 263 }, + }, + ["lvl"] = 18, + ["min"] = 18, + ["pre"] = { 144 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 344 }, + }, + }, + [146] = { + ["end"] = { + ["U"] = { 344 }, + }, + ["lvl"] = 18, + ["min"] = 18, + ["pre"] = { 145 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 263 }, + }, + }, + [147] = { + ["end"] = { + ["U"] = { 240 }, + }, + ["lvl"] = 10, + ["min"] = 7, + ["obj"] = { + ["I"] = { 2239 }, + }, + ["pre"] = { 123 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 240 }, + }, + }, + [148] = { + ["end"] = { + ["U"] = { 265 }, + }, + ["lvl"] = 24, + ["min"] = 20, + ["pre"] = { 165 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 289 }, + }, + }, + [149] = { + ["end"] = { + ["U"] = { 302 }, + }, + ["lvl"] = 24, + ["min"] = 20, + ["pre"] = { 148 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 265 }, + }, + }, + [150] = { + ["end"] = { + ["U"] = { 381 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["obj"] = { + ["I"] = { 1468 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 381 }, + }, + }, + [151] = { + ["end"] = { + ["U"] = { 238 }, + }, + ["lvl"] = 14, + ["min"] = 9, + ["obj"] = { + ["I"] = { 1528 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 238 }, + }, + }, + [153] = { + ["end"] = { + ["U"] = { 878 }, + }, + ["lvl"] = 15, + ["min"] = 10, + ["obj"] = { + ["I"] = { 829 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 878 }, + }, + }, + [154] = { + ["end"] = { + ["U"] = { 265 }, + }, + ["lvl"] = 24, + ["min"] = 20, + ["pre"] = { 149 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 302 }, + }, + }, + [155] = { + ["end"] = { + ["U"] = { 234 }, + }, + ["lvl"] = 18, + ["min"] = 14, + ["obj"] = { + ["A"] = { 78 }, + }, + ["pre"] = { 142 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 467 }, + }, + }, + [156] = { + ["end"] = { + ["U"] = { 273 }, + }, + ["lvl"] = 24, + ["min"] = 20, + ["obj"] = { + ["I"] = { 1598 }, + }, + ["pre"] = { 158 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 273 }, + }, + }, + [157] = { + ["end"] = { + ["U"] = { 289 }, + }, + ["lvl"] = 24, + ["min"] = 20, + ["pre"] = { 154 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 265 }, + }, + }, + [158] = { + ["end"] = { + ["U"] = { 273 }, + }, + ["lvl"] = 24, + ["min"] = 20, + ["pre"] = { 157 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 289 }, + }, + }, + [159] = { + ["end"] = { + ["U"] = { 289 }, + }, + ["lvl"] = 24, + ["min"] = 20, + ["pre"] = { 156 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 273 }, + }, + }, + [160] = { + ["end"] = { + ["U"] = { 263 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["pre"] = { 134 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 289 }, + }, + }, + [161] = { + ["end"] = { + ["U"] = { 1073 }, + }, + ["lvl"] = 18, + ["min"] = 16, + ["pre"] = { 199 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1093 }, + }, + }, + [162] = { + ["end"] = { + ["U"] = { 7740 }, + }, + ["lvl"] = 49, + ["min"] = 39, + ["pre"] = { 113 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 7724 }, + }, + }, + [163] = { + ["end"] = { + ["U"] = { 288 }, + }, + ["lvl"] = 20, + ["min"] = 17, + ["race"] = 589, + ["start"] = { + ["U"] = { 633 }, + }, + }, + [164] = { + ["end"] = { + ["U"] = { 311 }, + }, + ["lvl"] = 23, + ["min"] = 17, + ["race"] = 589, + ["start"] = { + ["U"] = { 633 }, + }, + }, + [165] = { + ["end"] = { + ["U"] = { 289 }, + }, + ["lvl"] = 25, + ["min"] = 17, + ["race"] = 589, + ["start"] = { + ["U"] = { 633 }, + }, + }, + [166] = { + ["end"] = { + ["U"] = { 234 }, + }, + ["lvl"] = 22, + ["min"] = 14, + ["obj"] = { + ["I"] = { 3637 }, + }, + ["pre"] = { 155 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 234 }, + }, + }, + [167] = { + ["end"] = { + ["U"] = { 656 }, + }, + ["lvl"] = 20, + ["min"] = 15, + ["obj"] = { + ["I"] = { 1875 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 656 }, + }, + }, + [168] = { + ["end"] = { + ["U"] = { 656 }, + }, + ["lvl"] = 18, + ["min"] = 14, + ["obj"] = { + ["I"] = { 1894 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 656 }, + }, + }, + [169] = { + ["end"] = { + ["U"] = { 344 }, + }, + ["lvl"] = 26, + ["min"] = 15, + ["obj"] = { + ["I"] = { 3633 }, + }, + ["race"] = 589, + ["start"] = { + ["O"] = { 60 }, + }, + }, + [170] = { + ["end"] = { + ["U"] = { 713 }, + }, + ["lvl"] = 2, + ["min"] = 1, + ["obj"] = { + ["U"] = { 707, 724 }, + }, + ["pre"] = { 179 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 713 }, + }, + }, + [171] = { + ["end"] = { + ["U"] = { 14450 }, + }, + ["lvl"] = 60, + ["min"] = 10, + ["obj"] = { + ["I"] = { 18598 }, + }, + ["pre"] = { 558 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14305 }, + }, + }, + [172] = { + ["end"] = { + ["U"] = { 14444 }, + }, + ["event"] = 10, + ["lvl"] = 60, + ["min"] = 10, + ["race"] = 434, + ["start"] = { + ["U"] = { 14451 }, + }, + }, + [173] = { + ["end"] = { + ["U"] = { 663 }, + }, + ["lvl"] = 28, + ["min"] = 23, + ["obj"] = { + ["U"] = { 533 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 663 }, + }, + }, + [174] = { + ["end"] = { + ["U"] = { 276 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["obj"] = { + ["I"] = { 4371 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 276 }, + }, + }, + [175] = { + ["end"] = { + ["U"] = { 302 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["pre"] = { 174 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 276 }, + }, + }, + [176] = { + ["end"] = { + ["U"] = { 240 }, + }, + ["lvl"] = 11, + ["min"] = 5, + ["obj"] = { + ["I"] = { 1931 }, + }, + ["race"] = 589, + ["start"] = { + ["O"] = { 68 }, + }, + }, + [177] = { + ["end"] = { + ["U"] = { 276 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["obj"] = { + ["I"] = { 1946 }, + }, + ["pre"] = { 175 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 302 }, + }, + }, + [178] = { + ["end"] = { + ["U"] = { 313 }, + }, + ["lvl"] = 23, + ["min"] = 15, + ["race"] = 589, + ["start"] = { + ["I"] = { 1962 }, + }, + }, + [179] = { + ["end"] = { + ["U"] = { 658 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["obj"] = { + ["I"] = { 750 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 658 }, + }, + }, + [180] = { + ["end"] = { + ["U"] = { 344 }, + }, + ["lvl"] = 26, + ["min"] = 15, + ["obj"] = { + ["I"] = { 3632 }, + }, + ["race"] = 589, + ["start"] = { + ["O"] = { 47 }, + }, + }, + [181] = { + ["end"] = { + ["U"] = { 276 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["obj"] = { + ["I"] = { 1968 }, + }, + ["pre"] = { 177 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 276 }, + }, + }, + [182] = { + ["end"] = { + ["U"] = { 786 }, + }, + ["lvl"] = 4, + ["min"] = 1, + ["obj"] = { + ["U"] = { 706 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 786 }, + }, + }, + [183] = { + ["end"] = { + ["U"] = { 714 }, + }, + ["lvl"] = 3, + ["min"] = 1, + ["obj"] = { + ["U"] = { 708 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 714 }, + }, + }, + [184] = { + ["end"] = { + ["U"] = { 237 }, + }, + ["lvl"] = 9, + ["min"] = 8, + ["race"] = 589, + ["start"] = { + ["I"] = { 1972 }, + }, + }, + [198] = { + ["end"] = { + ["U"] = { 738 }, + }, + ["lvl"] = 32, + ["min"] = 30, + ["race"] = 589, + ["start"] = { + ["U"] = { 773 }, + }, + }, + [199] = { + ["end"] = { + ["U"] = { 1093 }, + }, + ["lvl"] = 18, + ["min"] = 16, + ["pre"] = { 250 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 257 }, + }, + }, + [200] = { + ["end"] = { + ["O"] = { 287 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["pre"] = { 215 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 469 }, + }, + }, + [202] = { + ["end"] = { + ["U"] = { 469 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["obj"] = { + ["I"] = { 3615 }, + ["U"] = { 939, 978 }, + }, + ["pre"] = { 574 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 469 }, + }, + }, + [203] = { + ["end"] = { + ["U"] = { 733 }, + }, + ["lvl"] = 33, + ["min"] = 30, + ["obj"] = { + ["U"] = { 937 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 733 }, + }, + }, + [204] = { + ["end"] = { + ["U"] = { 733 }, + }, + ["lvl"] = 34, + ["min"] = 30, + ["obj"] = { + ["I"] = { 2633, 2634 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 733 }, + }, + }, + [205] = { + ["end"] = { + ["U"] = { 739 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["obj"] = { + ["I"] = { 2466 }, + }, + ["pre"] = { 207 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 739 }, + }, + }, + [206] = { + ["end"] = { + ["U"] = { 739 }, + }, + ["lvl"] = 46, + ["min"] = 30, + ["obj"] = { + ["I"] = { 3616 }, + }, + ["pre"] = { 205 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 739 }, + }, + }, + [207] = { + ["end"] = { + ["U"] = { 739 }, + }, + ["lvl"] = 38, + ["min"] = 30, + ["obj"] = { + ["I"] = { 2005, 2006, 2007, 2008 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 739 }, + }, + }, + [210] = { + ["end"] = { + ["U"] = { 773 }, + }, + ["lvl"] = 37, + ["min"] = 32, + ["race"] = 589, + ["start"] = { + ["U"] = { 770 }, + }, + }, + [211] = { + ["end"] = { + ["U"] = { 10838 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 17114 }, + }, + ["pre"] = { 5097 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 10838 }, + }, + }, + [212] = { + ["end"] = { + ["U"] = { 1141 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["obj"] = { + ["I"] = { 2476 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1141 }, + }, + }, + [214] = { + ["end"] = { + ["U"] = { 820 }, + }, + ["lvl"] = 17, + ["min"] = 14, + ["obj"] = { + ["I"] = { 915 }, + }, + ["pre"] = { 155 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 820 }, + }, + }, + [215] = { + ["end"] = { + ["U"] = { 469 }, + }, + ["lvl"] = 33, + ["min"] = 30, + ["race"] = 589, + ["start"] = { + ["U"] = { 738 }, + }, + }, + [216] = { + ["end"] = { + ["U"] = { 12757 }, + }, + ["lvl"] = 24, + ["min"] = 21, + ["obj"] = { + ["U"] = { 3924, 3925 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 12757 }, + }, + }, + [217] = { + ["end"] = { + ["U"] = { 1092 }, + }, + ["lvl"] = 17, + ["min"] = 10, + ["obj"] = { + ["U"] = { 1205, 1206, 1207 }, + }, + ["pre"] = { 263 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1092 }, + }, + }, + [218] = { + ["end"] = { + ["U"] = { 786 }, + }, + ["lvl"] = 5, + ["min"] = 1, + ["obj"] = { + ["I"] = { 2004 }, + }, + ["pre"] = { 182 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 786 }, + }, + }, + [219] = { + ["end"] = { + ["U"] = { 382 }, + }, + ["lvl"] = 25, + ["min"] = 19, + ["race"] = 589, + ["start"] = { + ["U"] = { 349 }, + }, + }, + [220] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 5901 }, + }, + ["lvl"] = 23, + ["min"] = 20, + ["pre"] = { 1534 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5899 }, + }, + }, + [221] = { + ["end"] = { + ["U"] = { 663 }, + }, + ["lvl"] = 29, + ["min"] = 23, + ["obj"] = { + ["U"] = { 205 }, + }, + ["pre"] = { 173 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 663 }, + }, + }, + [222] = { + ["end"] = { + ["U"] = { 663 }, + }, + ["lvl"] = 31, + ["min"] = 23, + ["obj"] = { + ["U"] = { 206, 920 }, + }, + ["pre"] = { 221 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 663 }, + }, + }, + [223] = { + ["end"] = { + ["U"] = { 661 }, + }, + ["lvl"] = 31, + ["min"] = 23, + ["pre"] = { 222 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 663 }, + }, + }, + [224] = { + ["end"] = { + ["U"] = { 1089 }, + }, + ["lvl"] = 12, + ["min"] = 10, + ["obj"] = { + ["U"] = { 1161, 1162 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1089 }, + }, + }, + [225] = { + ["end"] = { + ["U"] = { 268 }, + }, + ["lvl"] = 35, + ["min"] = 28, + ["race"] = 589, + ["start"] = { + ["O"] = { 61 }, + }, + }, + [226] = { + ["end"] = { + ["U"] = { 893 }, + }, + ["lvl"] = 21, + ["min"] = 19, + ["obj"] = { + ["U"] = { 213, 565 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 893 }, + }, + }, + [227] = { + ["end"] = { + ["U"] = { 264 }, + }, + ["lvl"] = 35, + ["min"] = 28, + ["pre"] = { 225 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 268 }, + }, + }, + [228] = { + ["end"] = { + ["U"] = { 264 }, + }, + ["lvl"] = 35, + ["min"] = 28, + ["obj"] = { + ["I"] = { 3514 }, + }, + ["pre"] = { 227 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 264 }, + }, + }, + [229] = { + ["end"] = { + ["U"] = { 576 }, + }, + ["lvl"] = 35, + ["min"] = 28, + ["pre"] = { 228 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 264 }, + }, + }, + [230] = { + ["end"] = { + ["U"] = { 311 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["pre"] = { 95 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 59 }, + }, + }, + [231] = { + ["end"] = { + ["O"] = { 61 }, + }, + ["lvl"] = 35, + ["min"] = 28, + ["pre"] = { 229 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 576 }, + }, + }, + [232] = { + ["end"] = { + ["U"] = { 7683 }, + }, + ["lvl"] = 45, + ["min"] = 38, + ["race"] = 434, + ["start"] = { + ["U"] = { 5204 }, + }, + }, + [233] = { + ["end"] = { + ["U"] = { 714 }, + }, + ["lvl"] = 3, + ["min"] = 1, + ["race"] = 589, + ["start"] = { + ["U"] = { 658 }, + }, + }, + [234] = { + ["end"] = { + ["U"] = { 786 }, + }, + ["lvl"] = 4, + ["min"] = 1, + ["pre"] = { 233 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 714 }, + }, + }, + [235] = { + ["close"] = { 235, 742, 6382 }, + ["end"] = { + ["U"] = { 12696 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["race"] = 434, + ["start"] = { + ["U"] = { 10880 }, + }, + }, + [236] = { + ["lvl"] = 21, + ["min"] = 17, + ["race"] = 589, + }, + [237] = { + ["end"] = { + ["U"] = { 1091 }, + }, + ["lvl"] = 15, + ["min"] = 10, + ["obj"] = { + ["U"] = { 1163, 1166 }, + }, + ["pre"] = { 224 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1091 }, + }, + }, + [238] = { + ["end"] = { + ["U"] = { 5204 }, + }, + ["lvl"] = 45, + ["min"] = 38, + ["pre"] = { 232 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 7683 }, + }, + }, + [239] = { + ["end"] = { + ["U"] = { 963 }, + }, + ["lvl"] = 10, + ["min"] = 6, + ["pre"] = { 76 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 240 }, + }, + }, + [240] = { + ["end"] = { + ["U"] = { 288 }, + }, + ["lvl"] = 20, + ["min"] = 17, + ["pre"] = { 93 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 272 }, + }, + }, + [241] = "_", + [242] = "_", + [243] = { + ["end"] = { + ["U"] = { 7407 }, + }, + ["lvl"] = 46, + ["min"] = 38, + ["pre"] = { 238 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5204 }, + }, + }, + [244] = { + ["end"] = { + ["U"] = { 1070 }, + }, + ["lvl"] = 16, + ["min"] = 11, + ["race"] = 589, + ["start"] = { + ["U"] = { 464 }, + }, + }, + [245] = { + ["end"] = { + ["U"] = { 888 }, + }, + ["lvl"] = 21, + ["min"] = 17, + ["obj"] = { + ["U"] = { 539 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 888 }, + }, + }, + [246] = { + ["end"] = { + ["U"] = { 1070 }, + }, + ["lvl"] = 17, + ["min"] = 11, + ["obj"] = { + ["U"] = { 423, 424 }, + }, + ["pre"] = { 244 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1070 }, + }, + }, + [247] = { + ["end"] = { + ["U"] = { 12696 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["pre"] = { 2, 23, 24 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 12696 }, + }, + }, + [248] = { + ["end"] = { + ["O"] = { 76 }, + }, + ["lvl"] = 22, + ["min"] = 20, + ["pre"] = { 94 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 31 }, + }, + }, + [249] = { + ["end"] = { + ["U"] = { 313 }, + }, + ["lvl"] = 27, + ["min"] = 20, + ["obj"] = { + ["I"] = { 3617 }, + }, + ["pre"] = { 248 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 31 }, + }, + }, + [250] = { + ["end"] = { + ["O"] = { 257 }, + }, + ["lvl"] = 18, + ["min"] = 16, + ["race"] = 589, + ["start"] = { + ["U"] = { 1093 }, + }, + }, + [251] = { + ["end"] = { + ["U"] = { 268 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["pre"] = { 160 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 263 }, + }, + }, + [252] = { + ["end"] = { + ["U"] = { 263 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["pre"] = { 401 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 268 }, + }, + }, + [253] = { + ["end"] = { + ["U"] = { 263 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["obj"] = { + ["I"] = { 2382 }, + }, + ["pre"] = { 252 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 263 }, + }, + }, + [254] = { + ["end"] = { + ["O"] = { 51708 }, + }, + ["lvl"] = 35, + ["min"] = 20, + ["pre"] = { 253 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 51708 }, + }, + }, + [255] = { + ["end"] = { + ["U"] = { 1139 }, + }, + ["lvl"] = 19, + ["min"] = 15, + ["obj"] = { + ["U"] = { 1178, 1179, 1180 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1139 }, + }, + }, + [256] = { + ["end"] = { + ["U"] = { 1139 }, + }, + ["lvl"] = 22, + ["min"] = 17, + ["obj"] = { + ["I"] = { 2561 }, + }, + ["race"] = 589, + ["start"] = { + ["O"] = { 256 }, + }, + }, + [257] = { + ["end"] = { + ["U"] = { 1187 }, + }, + ["lvl"] = 16, + ["min"] = 11, + ["obj"] = { + ["U"] = { 1194 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1187 }, + }, + }, + [258] = { + ["end"] = { + ["U"] = { 1187 }, + }, + ["lvl"] = 17, + ["min"] = 11, + ["obj"] = { + ["U"] = { 1192 }, + }, + ["pre"] = { 257 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1187 }, + }, + }, + [259] = "_", + [260] = "_", + [261] = { + ["end"] = { + ["U"] = { 1182 }, + }, + ["lvl"] = 39, + ["min"] = 34, + ["obj"] = { + ["U"] = { 11561 }, + }, + ["pre"] = { 6141 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1182 }, + }, + }, + [262] = { + ["end"] = { + ["U"] = { 265 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["pre"] = { 230 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 311 }, + }, + }, + [263] = { + ["end"] = { + ["U"] = { 1090 }, + }, + ["lvl"] = 15, + ["min"] = 10, + ["obj"] = { + ["U"] = { 1164, 1197 }, + }, + ["pre"] = { 237 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1090 }, + }, + }, + [264] = { + ["end"] = { + ["O"] = { 24776 }, + }, + ["lvl"] = 15, + ["min"] = 12, + ["race"] = 434, + ["start"] = { + ["U"] = { 5543 }, + }, + }, + [265] = { + ["end"] = { + ["U"] = { 267 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["pre"] = { 262 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 265 }, + }, + }, + [266] = { + ["end"] = { + ["U"] = { 273 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["pre"] = { 265 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 267 }, + }, + }, + [267] = { + ["end"] = { + ["U"] = { 1092 }, + }, + ["lvl"] = 12, + ["min"] = 10, + ["obj"] = { + ["I"] = { 2536 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1092 }, + }, + }, + [268] = { + ["end"] = { + ["U"] = { 311 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["pre"] = { 453 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 288 }, + }, + }, + [269] = { + ["end"] = { + ["U"] = { 1212 }, + }, + ["lvl"] = 29, + ["min"] = 20, + ["pre"] = { 323 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 311 }, + }, + }, + [270] = { + ["end"] = { + ["U"] = { 1217 }, + }, + ["lvl"] = 29, + ["min"] = 20, + ["pre"] = { 269 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1212 }, + }, + }, + [271] = { + ["end"] = { + ["U"] = { 1187 }, + }, + ["lvl"] = 20, + ["min"] = 15, + ["obj"] = { + ["I"] = { 2713 }, + }, + ["pre"] = { 258 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1156 }, + }, + }, + [273] = { + ["end"] = { + ["U"] = { 2057 }, + }, + ["lvl"] = 15, + ["min"] = 10, + ["pre"] = { 302 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1105 }, + }, + }, + [274] = { + ["end"] = { + ["U"] = { 1093 }, + }, + ["lvl"] = 18, + ["min"] = 16, + ["pre"] = { 161 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1073 }, + }, + }, + [275] = { + ["end"] = { + ["U"] = { 1244 }, + }, + ["lvl"] = 26, + ["min"] = 20, + ["obj"] = { + ["U"] = { 1040 }, + }, + ["pre"] = { 277 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1244 }, + }, + }, + [276] = { + ["end"] = { + ["U"] = { 1244 }, + }, + ["lvl"] = 21, + ["min"] = 20, + ["obj"] = { + ["U"] = { 1007, 1008 }, + }, + ["pre"] = { 463 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1244 }, + }, + }, + [277] = { + ["end"] = { + ["U"] = { 1244 }, + }, + ["lvl"] = 23, + ["min"] = 20, + ["obj"] = { + ["I"] = { 2611 }, + }, + ["pre"] = { 276 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1244 }, + }, + }, + [278] = { + ["end"] = { + ["U"] = { 1093 }, + }, + ["lvl"] = 18, + ["min"] = 16, + ["obj"] = { + ["I"] = { 2606, 2607, 2939 }, + }, + ["pre"] = { 274 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1093 }, + }, + }, + [279] = { + ["end"] = { + ["U"] = { 1242 }, + }, + ["lvl"] = 22, + ["min"] = 20, + ["obj"] = { + ["I"] = { 3618 }, + ["U"] = { 1024 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1242 }, + }, + }, + [280] = { + ["end"] = { + ["O"] = { 1585 }, + }, + ["lvl"] = 18, + ["min"] = 16, + ["pre"] = { 278 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1093 }, + }, + }, + [281] = { + ["end"] = { + ["O"] = { 261 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["pre"] = { 279 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1242 }, + }, + }, + [282] = { + ["end"] = { + ["U"] = { 1965 }, + }, + ["lvl"] = 5, + ["min"] = 1, + ["pre"] = { 218 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 786 }, + }, + }, + [283] = { + ["end"] = { + ["U"] = { 1093 }, + }, + ["lvl"] = 20, + ["min"] = 16, + ["pre"] = { 280 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 1585 }, + }, + }, + [284] = { + ["end"] = { + ["O"] = { 142151 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["pre"] = { 281 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 261 }, + }, + }, + [285] = { + ["end"] = { + ["O"] = { 259 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["pre"] = { 284 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 142151 }, + }, + }, + [286] = { + ["end"] = { + ["U"] = { 1242 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["pre"] = { 285 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 259 }, + }, + }, + [287] = { + ["end"] = { + ["U"] = { 1252 }, + }, + ["lvl"] = 9, + ["min"] = 7, + ["obj"] = { + ["A"] = { 97 }, + ["U"] = { 1123 }, + }, + ["pre"] = { 420 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1252 }, + }, + }, + [288] = { + ["end"] = { + ["U"] = { 1239 }, + }, + ["lvl"] = 27, + ["min"] = 22, + ["obj"] = { + ["I"] = { 2594 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1239 }, + }, + }, + [289] = { + ["end"] = { + ["U"] = { 1239 }, + }, + ["lvl"] = 29, + ["min"] = 22, + ["obj"] = { + ["I"] = { 3619 }, + ["U"] = { 1157, 1158 }, + }, + ["pre"] = { 288 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1239 }, + }, + }, + [290] = { + ["end"] = { + ["O"] = { 112948 }, + }, + ["lvl"] = 30, + ["min"] = 22, + ["obj"] = { + ["I"] = { 2629 }, + }, + ["pre"] = { 289 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1239 }, + }, + }, + [291] = { + ["end"] = { + ["U"] = { 1274 }, + }, + ["lvl"] = 10, + ["min"] = 1, + ["pre"] = { 287 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1252 }, + }, + }, + [292] = { + ["end"] = { + ["U"] = { 1217 }, + }, + ["lvl"] = 30, + ["min"] = 22, + ["pre"] = { 290 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 112948 }, + }, + }, + [293] = { + ["end"] = { + ["U"] = { 1284 }, + }, + ["lvl"] = 30, + ["min"] = 22, + ["pre"] = { 292 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1217 }, + }, + }, + [294] = { + ["end"] = { + ["U"] = { 1078 }, + }, + ["lvl"] = 24, + ["min"] = 22, + ["obj"] = { + ["U"] = { 1020, 1021 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1078 }, + }, + }, + [295] = { + ["end"] = { + ["U"] = { 1078 }, + }, + ["lvl"] = 27, + ["min"] = 22, + ["obj"] = { + ["U"] = { 1022, 1023 }, + }, + ["pre"] = { 294 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1078 }, + }, + }, + [296] = { + ["end"] = { + ["U"] = { 1078 }, + }, + ["lvl"] = 29, + ["min"] = 22, + ["obj"] = { + ["I"] = { 3638 }, + }, + ["pre"] = { 295 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1078 }, + }, + }, + [297] = { + ["end"] = { + ["U"] = { 1345 }, + }, + ["lvl"] = 18, + ["min"] = 13, + ["obj"] = { + ["I"] = { 2636 }, + }, + ["pre"] = { 436 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1345 }, + }, + }, + [298] = { + ["end"] = { + ["U"] = { 1105 }, + }, + ["lvl"] = 15, + ["min"] = 10, + ["race"] = 589, + ["start"] = { + ["U"] = { 1344 }, + }, + }, + [299] = { + ["end"] = { + ["U"] = { 1077 }, + }, + ["lvl"] = 28, + ["min"] = 25, + ["obj"] = { + ["I"] = { 2658, 2659, 2660, 2661 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1077 }, + }, + }, + [301] = { + ["end"] = { + ["U"] = { 1356 }, + }, + ["lvl"] = 15, + ["min"] = 10, + ["pre"] = { 298 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1105 }, + }, + }, + [302] = { + ["end"] = { + ["U"] = { 1105 }, + }, + ["lvl"] = 15, + ["min"] = 10, + ["pre"] = { 301 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1356 }, + }, + }, + [303] = { + ["end"] = { + ["U"] = { 1074 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["obj"] = { + ["U"] = { 1051, 1052, 1053, 1054 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1074 }, + }, + }, + [304] = { + ["end"] = { + ["U"] = { 1071 }, + }, + ["lvl"] = 34, + ["min"] = 26, + ["obj"] = { + ["I"] = { 3639 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1071 }, + }, + }, + [305] = { + ["end"] = { + ["U"] = { 1076 }, + }, + ["lvl"] = 24, + ["min"] = 21, + ["race"] = 589, + ["start"] = { + ["U"] = { 2096 }, + }, + }, + [306] = { + ["end"] = { + ["U"] = { 2096 }, + }, + ["lvl"] = 24, + ["min"] = 21, + ["pre"] = { 305 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1076 }, + }, + }, + [307] = { + ["end"] = { + ["U"] = { 1343 }, + }, + ["lvl"] = 15, + ["min"] = 9, + ["obj"] = { + ["I"] = { 2640 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1343 }, + }, + }, + [308] = { + ["end"] = { + ["U"] = { 1373 }, + }, + ["lvl"] = 7, + ["min"] = 1, + ["obj"] = { + ["I"] = { 2686 }, + }, + ["pre"] = { 403 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1373 }, + }, + }, + [309] = { + ["end"] = { + ["U"] = { 1344 }, + }, + ["lvl"] = 15, + ["min"] = 10, + ["pre"] = { 454 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1379 }, + }, + }, + [310] = { + ["end"] = { + ["O"] = { 270 }, + }, + ["lvl"] = 6, + ["min"] = 2, + ["race"] = 589, + ["start"] = { + ["U"] = { 1375 }, + }, + }, + [311] = { + ["end"] = { + ["U"] = { 1375 }, + }, + ["lvl"] = 7, + ["min"] = 2, + ["pre"] = { 310 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 270 }, + }, + }, + [312] = { + ["end"] = { + ["U"] = { 1266 }, + }, + ["lvl"] = 12, + ["min"] = 7, + ["obj"] = { + ["I"] = { 2667 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1266 }, + }, + }, + [313] = { + ["end"] = { + ["U"] = { 1377 }, + }, + ["lvl"] = 7, + ["min"] = 4, + ["obj"] = { + ["I"] = { 2671 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1377 }, + }, + }, + [314] = { + ["end"] = { + ["U"] = { 1265 }, + }, + ["lvl"] = 12, + ["min"] = 6, + ["obj"] = { + ["I"] = { 3627 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1265 }, + }, + }, + [315] = { + ["end"] = { + ["U"] = { 1374 }, + }, + ["lvl"] = 9, + ["min"] = 5, + ["obj"] = { + ["I"] = { 2676 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1374 }, + }, + }, + [316] = "_", + [317] = { + ["end"] = { + ["U"] = { 1378 }, + }, + ["lvl"] = 6, + ["min"] = 2, + ["obj"] = { + ["I"] = { 769, 6952 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1378 }, + }, + }, + [318] = { + ["end"] = { + ["U"] = { 1374 }, + }, + ["lvl"] = 7, + ["min"] = 2, + ["pre"] = { 317 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1378 }, + }, + }, + [319] = { + ["end"] = { + ["U"] = { 1374 }, + }, + ["lvl"] = 8, + ["min"] = 2, + ["obj"] = { + ["U"] = { 1127, 1196, 1201 }, + }, + ["pre"] = { 318 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1374 }, + }, + }, + [320] = { + ["end"] = { + ["U"] = { 1378 }, + }, + ["lvl"] = 8, + ["min"] = 2, + ["pre"] = { 319 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1374 }, + }, + }, + [321] = { + ["end"] = { + ["O"] = { 2734 }, + }, + ["lvl"] = 29, + ["min"] = 20, + ["pre"] = { 270 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1217 }, + }, + }, + [322] = { + ["end"] = { + ["U"] = { 1416 }, + }, + ["lvl"] = 29, + ["min"] = 20, + ["pre"] = { 324, 526 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1217 }, + }, + }, + [323] = { + ["end"] = { + ["U"] = { 311 }, + }, + ["lvl"] = 28, + ["min"] = 20, + ["obj"] = { + ["U"] = { 785, 787, 1110 }, + }, + ["pre"] = { 268 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 311 }, + }, + }, + [324] = { + ["end"] = { + ["U"] = { 1217 }, + }, + ["lvl"] = 29, + ["min"] = 20, + ["obj"] = { + ["I"] = { 2702 }, + }, + ["pre"] = { 321 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 2734 }, + }, + }, + [325] = { + ["end"] = { + ["U"] = { 311 }, + }, + ["lvl"] = 29, + ["min"] = 20, + ["obj"] = { + ["IR"] = { 7297 }, + }, + ["pre"] = { 322 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1416 }, + }, + }, + [328] = { + ["end"] = { + ["O"] = { 288 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["pre"] = { 200 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 287 }, + }, + }, + [329] = { + ["end"] = { + ["U"] = { 469 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["pre"] = { 328 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 288 }, + }, + }, + [330] = { + ["end"] = { + ["U"] = { 1422 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["pre"] = { 329 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 469 }, + }, + }, + [331] = { + ["end"] = { + ["U"] = { 469 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["pre"] = { 330 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1422 }, + }, + }, + [332] = { + ["end"] = { + ["U"] = { 1431 }, + }, + ["lvl"] = 2, + ["min"] = 1, + ["race"] = 589, + ["start"] = { + ["U"] = { 1432 }, + }, + }, + [333] = { + ["end"] = { + ["U"] = { 1428 }, + }, + ["lvl"] = 2, + ["min"] = 1, + ["race"] = 589, + ["start"] = { + ["U"] = { 1427 }, + }, + }, + [334] = { + ["end"] = { + ["U"] = { 1429 }, + }, + ["lvl"] = 2, + ["min"] = 1, + ["race"] = 589, + ["start"] = { + ["U"] = { 1428 }, + }, + }, + [335] = { + ["end"] = { + ["U"] = { 1435 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["obj"] = { + ["I"] = { 2779, 2784 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1435 }, + }, + }, + [336] = { + ["end"] = { + ["U"] = { 1439 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["pre"] = { 335 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1435 }, + }, + }, + [337] = { + ["end"] = { + ["U"] = { 1440 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["race"] = 589, + ["start"] = { + ["I"] = { 2794 }, + }, + }, + [343] = { + ["end"] = { + ["U"] = { 1440 }, + }, + ["lvl"] = 24, + ["min"] = 20, + ["race"] = 589, + ["start"] = { + ["U"] = { 1444 }, + }, + }, + [344] = { + ["end"] = { + ["U"] = { 951 }, + }, + ["lvl"] = 24, + ["min"] = 20, + ["pre"] = { 343 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1440 }, + }, + }, + [345] = { + ["end"] = { + ["U"] = { 341 }, + }, + ["lvl"] = 24, + ["min"] = 20, + ["pre"] = { 344 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 951 }, + }, + }, + [346] = { + ["end"] = { + ["U"] = { 1444 }, + }, + ["lvl"] = 24, + ["min"] = 20, + ["pre"] = { 347 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 951 }, + }, + }, + [347] = { + ["end"] = { + ["U"] = { 951 }, + }, + ["lvl"] = 24, + ["min"] = 20, + ["obj"] = { + ["I"] = { 2798 }, + }, + ["pre"] = { 345 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 341 }, + }, + }, + [350] = { + ["end"] = { + ["U"] = { 482 }, + }, + ["lvl"] = 31, + ["min"] = 16, + ["pre"] = { 393 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 332 }, + }, + }, + [352] = "_", + [353] = { + ["end"] = { + ["U"] = { 1343 }, + }, + ["lvl"] = 15, + ["min"] = 9, + ["pre"] = { 1097 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1416 }, + }, + }, + [354] = { + ["end"] = { + ["U"] = { 1500 }, + }, + ["lvl"] = 11, + ["min"] = 7, + ["obj"] = { + ["I"] = { 2828, 2829, 2830 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1500 }, + }, + }, + [355] = { + ["end"] = { + ["U"] = { 1499 }, + }, + ["lvl"] = 10, + ["min"] = 7, + ["pre"] = { 354 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1500 }, + }, + }, + [356] = { + ["end"] = { + ["U"] = { 1495 }, + }, + ["lvl"] = 11, + ["min"] = 6, + ["obj"] = { + ["U"] = { 1529, 1532 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1495 }, + }, + }, + [357] = { + ["end"] = { + ["U"] = { 1498 }, + }, + ["lvl"] = 8, + ["min"] = 5, + ["obj"] = { + ["I"] = { 2833 }, + }, + ["pre"] = { 405 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1498 }, + }, + }, + [358] = { + ["end"] = { + ["U"] = { 1499 }, + }, + ["lvl"] = 8, + ["min"] = 4, + ["obj"] = { + ["I"] = { 2834 }, + ["U"] = { 1675, 1941 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1499 }, + }, + }, + [359] = { + ["end"] = { + ["U"] = { 1495 }, + }, + ["lvl"] = 9, + ["min"] = 6, + ["pre"] = { 358 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1499 }, + }, + }, + [360] = { + ["end"] = { + ["U"] = { 1499 }, + }, + ["lvl"] = 9, + ["min"] = 6, + ["pre"] = { 359 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1495 }, + }, + }, + [361] = { + ["end"] = { + ["U"] = { 1560 }, + }, + ["lvl"] = 7, + ["min"] = 4, + ["race"] = 434, + ["start"] = { + ["I"] = { 2839 }, + }, + }, + [362] = { + ["end"] = { + ["U"] = { 1500 }, + }, + ["lvl"] = 10, + ["min"] = 7, + ["obj"] = { + ["I"] = { 2831 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1500 }, + }, + }, + [364] = { + ["end"] = { + ["U"] = { 1569 }, + }, + ["lvl"] = 2, + ["min"] = 1, + ["obj"] = { + ["U"] = { 1501, 1502 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1569 }, + }, + }, + [365] = { + ["end"] = { + ["U"] = { 1518 }, + }, + ["lvl"] = 7, + ["min"] = 4, + ["obj"] = { + ["I"] = { 2846 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1519 }, + }, + }, + [366] = { + ["end"] = { + ["U"] = { 1497 }, + }, + ["lvl"] = 8, + ["min"] = 5, + ["pre"] = { 357 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1498 }, + }, + }, + [367] = { + ["end"] = { + ["U"] = { 1518 }, + }, + ["lvl"] = 6, + ["min"] = 6, + ["obj"] = { + ["I"] = { 2858 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1518 }, + }, + }, + [368] = { + ["end"] = { + ["U"] = { 1518 }, + }, + ["lvl"] = 9, + ["min"] = 6, + ["obj"] = { + ["I"] = { 2859 }, + }, + ["pre"] = { 367 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1518 }, + }, + }, + [369] = { + ["end"] = { + ["U"] = { 1518 }, + }, + ["lvl"] = 11, + ["min"] = 6, + ["obj"] = { + ["I"] = { 2872 }, + }, + ["pre"] = { 368 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1518 }, + }, + }, + [370] = { + ["end"] = { + ["U"] = { 1515 }, + }, + ["lvl"] = 9, + ["min"] = 5, + ["obj"] = { + ["U"] = { 1536, 1537, 1662 }, + }, + ["pre"] = { 427 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1515 }, + }, + }, + [371] = { + ["end"] = { + ["U"] = { 1515 }, + }, + ["lvl"] = 10, + ["min"] = 5, + ["obj"] = { + ["U"] = { 1538, 1664 }, + }, + ["pre"] = { 370 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1515 }, + }, + }, + [372] = { + ["end"] = { + ["U"] = { 1515 }, + }, + ["lvl"] = 12, + ["min"] = 5, + ["obj"] = { + ["U"] = { 1660, 1665 }, + }, + ["pre"] = { 371 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1515 }, + }, + }, + [373] = { + ["end"] = { + ["U"] = { 1646 }, + }, + ["lvl"] = 22, + ["min"] = 16, + ["race"] = 589, + ["start"] = { + ["I"] = { 2874 }, + }, + }, + [374] = { + ["end"] = { + ["U"] = { 1652 }, + }, + ["lvl"] = 7, + ["min"] = 5, + ["obj"] = { + ["I"] = { 2875 }, + }, + ["pre"] = { 427 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1652 }, + }, + }, + [375] = { + ["end"] = { + ["U"] = { 1521 }, + }, + ["lvl"] = 8, + ["min"] = 7, + ["obj"] = { + ["I"] = { 2320, 2876 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1521 }, + }, + }, + [376] = { + ["end"] = { + ["U"] = { 1661 }, + }, + ["lvl"] = 2, + ["min"] = 2, + ["obj"] = { + ["I"] = { 3264, 3265 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1661 }, + }, + }, + [377] = { + ["end"] = { + ["U"] = { 270 }, + }, + ["lvl"] = 26, + ["min"] = 22, + ["obj"] = { + ["I"] = { 3628 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 270 }, + }, + }, + [378] = { + ["end"] = { + ["U"] = { 1074 }, + }, + ["lvl"] = 27, + ["min"] = 22, + ["obj"] = { + ["I"] = { 3640 }, + }, + ["pre"] = { 303 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1074 }, + }, + }, + [379] = { + ["end"] = { + ["U"] = { 7407 }, + }, + ["lvl"] = 46, + ["min"] = 38, + ["obj"] = { + ["I"] = { 8483 }, + }, + ["pre"] = { 243 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 7407 }, + }, + }, + [380] = { + ["end"] = { + ["U"] = { 1570 }, + }, + ["lvl"] = 4, + ["min"] = 2, + ["obj"] = { + ["U"] = { 1504, 1505 }, + }, + ["pre"] = { 376 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1570 }, + }, + }, + [381] = { + ["end"] = { + ["U"] = { 1570 }, + }, + ["lvl"] = 4, + ["min"] = 2, + ["obj"] = { + ["I"] = { 3266 }, + }, + ["pre"] = { 380 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1570 }, + }, + }, + [382] = { + ["end"] = { + ["U"] = { 1570 }, + }, + ["lvl"] = 5, + ["min"] = 2, + ["obj"] = { + ["I"] = { 2885 }, + }, + ["pre"] = { 381 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1570 }, + }, + }, + [383] = { + ["end"] = { + ["U"] = { 1515 }, + }, + ["lvl"] = 5, + ["min"] = 2, + ["pre"] = { 382 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1570 }, + }, + }, + [384] = { + ["end"] = { + ["U"] = { 1267 }, + }, + ["lvl"] = 7, + ["min"] = 5, + ["obj"] = { + ["I"] = { 2886, 2894 }, + }, + ["race"] = 589, + ["skill"] = 185, + ["start"] = { + ["U"] = { 1267 }, + }, + }, + [385] = { + ["end"] = { + ["U"] = { 1154 }, + }, + ["lvl"] = 15, + ["min"] = 10, + ["obj"] = { + ["I"] = { 2924, 2925 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1154 }, + }, + }, + [386] = { + ["end"] = { + ["U"] = { 859 }, + }, + ["lvl"] = 25, + ["min"] = 22, + ["obj"] = { + ["I"] = { 3630 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 859 }, + }, + }, + [387] = { + ["end"] = { + ["U"] = { 1719 }, + }, + ["lvl"] = 26, + ["min"] = 22, + ["obj"] = { + ["U"] = { 1706, 1711, 1715 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1719 }, + }, + }, + [388] = { + ["end"] = { + ["U"] = { 1721 }, + }, + ["lvl"] = 26, + ["min"] = 22, + ["obj"] = { + ["I"] = { 2909 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1721 }, + }, + }, + [389] = { + ["end"] = { + ["U"] = { 1719 }, + }, + ["lvl"] = 22, + ["min"] = 16, + ["pre"] = { 373 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1646 }, + }, + }, + [390] = "_", + [391] = { + ["end"] = { + ["U"] = { 1719 }, + }, + ["lvl"] = 29, + ["min"] = 16, + ["obj"] = { + ["I"] = { 2926 }, + }, + ["pre"] = { 389 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1719 }, + }, + }, + [392] = { + ["end"] = { + ["U"] = { 1646 }, + }, + ["lvl"] = 29, + ["min"] = 16, + ["pre"] = { 391 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1719 }, + }, + }, + [393] = { + ["end"] = { + ["U"] = { 332 }, + }, + ["lvl"] = 29, + ["min"] = 16, + ["pre"] = { 392 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1646 }, + }, + }, + [394] = { + ["end"] = { + ["U"] = { 332 }, + }, + ["lvl"] = 31, + ["min"] = 16, + ["pre"] = { 434 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 482 }, + }, + }, + [395] = { + ["end"] = { + ["U"] = { 1646 }, + }, + ["lvl"] = 31, + ["min"] = 16, + ["pre"] = { 394 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 332 }, + }, + }, + [396] = { + ["end"] = { + ["U"] = { 1749 }, + }, + ["lvl"] = 31, + ["min"] = 16, + ["pre"] = { 395 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1646 }, + }, + }, + [397] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 1733 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["pre"] = { 336 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1435 }, + }, + }, + [398] = { + ["end"] = { + ["U"] = { 1515 }, + }, + ["lvl"] = 10, + ["min"] = 6, + ["obj"] = { + ["I"] = { 3635 }, + }, + ["race"] = 434, + ["start"] = { + ["O"] = { 711 }, + }, + }, + [399] = { + ["end"] = { + ["U"] = { 1646 }, + }, + ["lvl"] = 15, + ["min"] = 10, + ["obj"] = { + ["I"] = { 2998 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1646 }, + }, + }, + [400] = { + ["end"] = { + ["U"] = { 1376 }, + }, + ["lvl"] = 5, + ["min"] = 2, + ["race"] = 589, + ["start"] = { + ["U"] = { 1872 }, + }, + }, + [401] = { + ["end"] = { + ["U"] = { 268 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["pre"] = { 251 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 268 }, + }, + }, + [403] = { + ["end"] = { + ["O"] = { 269 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 310 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 269 }, + }, + }, + [404] = { + ["end"] = { + ["U"] = { 1496 }, + }, + ["lvl"] = 6, + ["min"] = 4, + ["obj"] = { + ["I"] = { 2855 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1496 }, + }, + }, + [405] = { + ["end"] = { + ["U"] = { 1498 }, + }, + ["lvl"] = 8, + ["min"] = 5, + ["pre"] = { 358 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1499 }, + }, + }, + [406] = "_", + [407] = { + ["end"] = { + ["U"] = { 1931 }, + }, + ["lvl"] = 7, + ["min"] = 4, + ["pre"] = { 365 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1518 }, + }, + }, + [408] = { + ["end"] = { + ["U"] = { 1499 }, + }, + ["lvl"] = 13, + ["min"] = 7, + ["obj"] = { + ["I"] = { 3082 }, + ["U"] = { 1530, 1534 }, + }, + ["pre"] = { 355 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1499 }, + }, + }, + [409] = { + ["end"] = { + ["U"] = { 1497 }, + }, + ["lvl"] = 12, + ["min"] = 5, + ["obj"] = { + ["U"] = { 1946 }, + }, + ["pre"] = { 366 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1497 }, + }, + }, + [410] = { + ["end"] = { + ["O"] = { 1557 }, + }, + ["lvl"] = 10, + ["min"] = 5, + ["obj"] = { + ["I"] = { 3080 }, + }, + ["pre"] = { 409 }, + ["race"] = 434, + ["start"] = { + ["O"] = { 1557 }, + }, + }, + [411] = { + ["end"] = { + ["U"] = { 1498 }, + }, + ["lvl"] = 12, + ["min"] = 5, + ["pre"] = { 409 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1497 }, + }, + }, + [412] = { + ["end"] = { + ["U"] = { 1269 }, + }, + ["lvl"] = 10, + ["min"] = 7, + ["obj"] = { + ["I"] = { 3083, 3084 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1269 }, + }, + }, + [413] = { + ["end"] = { + ["U"] = { 1959 }, + }, + ["lvl"] = 10, + ["min"] = 8, + ["pre"] = { 415 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1374 }, + }, + }, + [414] = { + ["end"] = { + ["U"] = { 1340 }, + }, + ["lvl"] = 10, + ["min"] = 8, + ["pre"] = { 413 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1959 }, + }, + }, + [415] = { + ["end"] = { + ["U"] = { 1374 }, + }, + ["lvl"] = 10, + ["min"] = 8, + ["pre"] = { 315 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1872 }, + }, + }, + [416] = { + ["end"] = { + ["U"] = { 1340 }, + }, + ["lvl"] = 11, + ["min"] = 10, + ["obj"] = { + ["I"] = { 3110 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1340 }, + }, + }, + [417] = { + ["end"] = { + ["U"] = { 1960 }, + }, + ["lvl"] = 11, + ["min"] = 8, + ["obj"] = { + ["I"] = { 3183 }, + }, + ["pre"] = { 419 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 2059 }, + }, + }, + [418] = { + ["end"] = { + ["U"] = { 1963 }, + }, + ["lvl"] = 11, + ["min"] = 7, + ["obj"] = { + ["I"] = { 3172, 3173, 3174 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1963 }, + }, + }, + [419] = { + ["end"] = { + ["O"] = { 2059 }, + }, + ["lvl"] = 10, + ["min"] = 8, + ["race"] = 589, + ["start"] = { + ["U"] = { 1960 }, + }, + }, + [420] = { + ["end"] = { + ["U"] = { 1252 }, + }, + ["lvl"] = 5, + ["min"] = 1, + ["pre"] = { 282 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1965 }, + }, + }, + [421] = { + ["end"] = { + ["U"] = { 1938 }, + }, + ["lvl"] = 10, + ["min"] = 9, + ["obj"] = { + ["U"] = { 1769 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1938 }, + }, + }, + [422] = { + ["end"] = { + ["U"] = { 1938 }, + }, + ["lvl"] = 11, + ["min"] = 9, + ["obj"] = { + ["I"] = { 3155 }, + }, + ["pre"] = { 421 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1938 }, + }, + }, + [423] = { + ["end"] = { + ["U"] = { 1938 }, + }, + ["lvl"] = 14, + ["min"] = 9, + ["obj"] = { + ["I"] = { 3156, 3157 }, + }, + ["pre"] = { 422 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1938 }, + }, + }, + [424] = { + ["end"] = { + ["U"] = { 1938 }, + }, + ["lvl"] = 15, + ["min"] = 9, + ["obj"] = { + ["I"] = { 3634 }, + }, + ["pre"] = { 423 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1938 }, + }, + }, + [425] = { + ["end"] = { + ["U"] = { 1950 }, + }, + ["lvl"] = 12, + ["min"] = 10, + ["obj"] = { + ["I"] = { 3621 }, + }, + ["pre"] = { 430 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1950 }, + }, + }, + [426] = { + ["end"] = { + ["U"] = { 1496 }, + }, + ["lvl"] = 8, + ["min"] = 6, + ["obj"] = { + ["I"] = { 3162, 3163 }, + }, + ["pre"] = { 404 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1496 }, + }, + }, + [427] = { + ["end"] = { + ["U"] = { 1515 }, + }, + ["lvl"] = 8, + ["min"] = 5, + ["obj"] = { + ["U"] = { 1535 }, + }, + ["pre"] = { 383 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1515 }, + }, + }, + [428] = { + ["end"] = { + ["U"] = { 1950 }, + }, + ["lvl"] = 12, + ["min"] = 10, + ["race"] = 434, + ["start"] = { + ["U"] = { 1952 }, + }, + }, + [429] = { + ["end"] = { + ["U"] = { 1937 }, + }, + ["lvl"] = 11, + ["min"] = 10, + ["obj"] = { + ["I"] = { 3164 }, + }, + ["pre"] = { 428 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1950 }, + }, + }, + [430] = { + ["end"] = { + ["U"] = { 1951 }, + }, + ["lvl"] = 11, + ["min"] = 10, + ["pre"] = { 429 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1937 }, + }, + }, + [431] = { + ["end"] = { + ["O"] = { 1586 }, + }, + ["lvl"] = 10, + ["min"] = 5, + ["pre"] = { 409 }, + ["race"] = 434, + ["start"] = { + ["O"] = { 1586 }, + }, + }, + [432] = { + ["end"] = { + ["U"] = { 1254 }, + }, + ["lvl"] = 9, + ["min"] = 5, + ["obj"] = { + ["U"] = { 1115 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1254 }, + }, + }, + [433] = { + ["end"] = { + ["U"] = { 1977 }, + }, + ["lvl"] = 11, + ["min"] = 6, + ["obj"] = { + ["U"] = { 1117 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1977 }, + }, + }, + [434] = { + ["end"] = { + ["U"] = { 482 }, + }, + ["lvl"] = 31, + ["min"] = 16, + ["obj"] = { + ["U"] = { 1754, 1755 }, + }, + ["pre"] = { 2746 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 7766 }, + }, + }, + [435] = { + ["end"] = { + ["U"] = { 1950 }, + }, + ["lvl"] = 11, + ["min"] = 10, + ["race"] = 434, + ["start"] = { + ["U"] = { 1978 }, + }, + }, + [436] = { + ["end"] = { + ["U"] = { 1345 }, + }, + ["lvl"] = 18, + ["min"] = 13, + ["race"] = 589, + ["start"] = { + ["U"] = { 1105 }, + }, + }, + [437] = { + ["end"] = { + ["U"] = { 1952 }, + }, + ["lvl"] = 14, + ["min"] = 10, + ["obj"] = { + ["A"] = { 173 }, + ["I"] = { 3622 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1952 }, + }, + }, + [438] = { + ["end"] = { + ["O"] = { 1593 }, + }, + ["lvl"] = 16, + ["min"] = 10, + ["pre"] = { 437 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1952 }, + }, + }, + [439] = { + ["end"] = { + ["U"] = { 1952 }, + }, + ["lvl"] = 16, + ["min"] = 10, + ["pre"] = { 438 }, + ["race"] = 434, + ["start"] = { + ["O"] = { 1593 }, + }, + }, + [440] = { + ["end"] = { + ["U"] = { 1499 }, + }, + ["lvl"] = 16, + ["min"] = 10, + ["pre"] = { 439 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1952 }, + }, + }, + [441] = { + ["end"] = { + ["U"] = { 2050 }, + }, + ["lvl"] = 16, + ["min"] = 10, + ["pre"] = { 440 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1499 }, + }, + }, + [442] = { + ["end"] = { + ["U"] = { 1952 }, + }, + ["lvl"] = 24, + ["min"] = 10, + ["obj"] = { + ["I"] = { 3623 }, + }, + ["pre"] = { 448 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1952 }, + }, + }, + [443] = { + ["end"] = { + ["U"] = { 1937 }, + }, + ["lvl"] = 17, + ["min"] = 10, + ["obj"] = { + ["I"] = { 3236 }, + }, + ["pre"] = { 439 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1952 }, + }, + }, + [444] = { + ["end"] = { + ["U"] = { 1498 }, + }, + ["lvl"] = 17, + ["min"] = 10, + ["pre"] = { 443 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1937 }, + }, + }, + [445] = { + ["end"] = { + ["U"] = { 1937 }, + }, + ["lvl"] = 10, + ["min"] = 9, + ["race"] = 434, + ["start"] = { + ["U"] = { 1518 }, + }, + }, + [446] = { + ["end"] = { + ["U"] = { 1937 }, + }, + ["lvl"] = 16, + ["min"] = 10, + ["pre"] = { 444 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1498 }, + }, + }, + [447] = { + ["end"] = { + ["U"] = { 2055 }, + }, + ["lvl"] = 12, + ["min"] = 9, + ["obj"] = { + ["I"] = { 3253, 3254 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1937 }, + }, + }, + [448] = { + ["end"] = { + ["U"] = { 1952 }, + }, + ["lvl"] = 16, + ["min"] = 10, + ["pre"] = { 446 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1937 }, + }, + }, + [449] = { + ["end"] = { + ["U"] = { 1952 }, + }, + ["lvl"] = 11, + ["min"] = 10, + ["pre"] = { 435 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1950 }, + }, + }, + [450] = { + ["end"] = { + ["U"] = { 1937 }, + }, + ["lvl"] = 15, + ["min"] = 9, + ["obj"] = { + ["I"] = { 3255 }, + }, + ["pre"] = { 447 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2055 }, + }, + }, + [451] = { + ["end"] = { + ["U"] = { 2055 }, + }, + ["lvl"] = 18, + ["min"] = 9, + ["obj"] = { + ["I"] = { 3256, 3257, 3258 }, + }, + ["pre"] = { 450 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1937 }, + }, + }, + [452] = { + ["end"] = { + ["U"] = { 2058 }, + }, + ["lvl"] = 15, + ["min"] = 12, + ["obj"] = { + ["U"] = { 2068 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2058 }, + }, + }, + [453] = { + ["end"] = { + ["U"] = { 288 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["pre"] = { 266 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 273 }, + }, + }, + [454] = { + ["end"] = { + ["U"] = { 1379 }, + }, + ["lvl"] = 15, + ["min"] = 10, + ["pre"] = { 273 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2057 }, + }, + }, + [455] = { + ["end"] = { + ["U"] = { 2086 }, + }, + ["lvl"] = 21, + ["min"] = 19, + ["obj"] = { + ["A"] = { 175 }, + ["U"] = { 2102, 2103 }, + }, + ["pre"] = { 468 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1342 }, + }, + }, + [456] = { + ["end"] = { + ["U"] = { 2079 }, + }, + ["lvl"] = 2, + ["min"] = 1, + ["obj"] = { + ["U"] = { 1984, 2031 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2079 }, + }, + }, + [457] = { + ["end"] = { + ["U"] = { 2079 }, + }, + ["lvl"] = 3, + ["min"] = 1, + ["obj"] = { + ["U"] = { 1985, 2032 }, + }, + ["pre"] = { 456 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2079 }, + }, + }, + [458] = { + ["end"] = { + ["U"] = { 1992 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["race"] = 589, + ["start"] = { + ["U"] = { 2077 }, + }, + }, + [459] = { + ["end"] = { + ["U"] = { 1992 }, + }, + ["lvl"] = 3, + ["min"] = 1, + ["obj"] = { + ["I"] = { 3297 }, + }, + ["pre"] = { 458 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1992 }, + }, + }, + [460] = { + ["end"] = { + ["O"] = { 1599 }, + }, + ["lvl"] = 17, + ["min"] = 12, + ["race"] = 434, + ["start"] = { + ["I"] = { 3317 }, + }, + }, + [461] = { + ["end"] = { + ["O"] = { 112888 }, + }, + ["lvl"] = 18, + ["min"] = 12, + ["pre"] = { 460 }, + ["race"] = 434, + ["start"] = { + ["O"] = { 1599 }, + }, + }, + [462] = "_", + [463] = { + ["end"] = { + ["U"] = { 1244 }, + }, + ["lvl"] = 21, + ["min"] = 20, + ["race"] = 589, + ["start"] = { + ["U"] = { 1239 }, + }, + }, + [464] = { + ["end"] = { + ["U"] = { 2104 }, + }, + ["lvl"] = 28, + ["min"] = 23, + ["obj"] = { + ["I"] = { 3337 }, + }, + ["pre"] = { 473 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2104 }, + }, + }, + [465] = { + ["end"] = { + ["O"] = { 1609 }, + }, + ["lvl"] = 31, + ["min"] = 23, + ["pre"] = { 464 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2104 }, + }, + }, + [466] = { + ["end"] = { + ["U"] = { 1377 }, + }, + ["lvl"] = 22, + ["min"] = 20, + ["obj"] = { + ["I"] = { 3340 }, + }, + ["pre"] = { 467 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1377 }, + }, + }, + [467] = { + ["end"] = { + ["U"] = { 1377 }, + }, + ["lvl"] = 23, + ["min"] = 20, + ["race"] = 589, + ["start"] = { + ["U"] = { 1340 }, + }, + }, + [468] = { + ["end"] = { + ["U"] = { 1342 }, + }, + ["lvl"] = 21, + ["min"] = 19, + ["race"] = 589, + ["start"] = { + ["U"] = { 1340 }, + }, + }, + [469] = { + ["end"] = { + ["U"] = { 2094 }, + }, + ["lvl"] = 21, + ["min"] = 18, + ["race"] = 589, + ["start"] = { + ["U"] = { 2093 }, + }, + }, + [470] = { + ["end"] = { + ["U"] = { 2111 }, + }, + ["lvl"] = 24, + ["min"] = 19, + ["obj"] = { + ["I"] = { 3349 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2111 }, + }, + }, + [471] = { + ["end"] = { + ["U"] = { 2094 }, + }, + ["lvl"] = 26, + ["min"] = 18, + ["obj"] = { + ["I"] = { 3348 }, + }, + ["pre"] = { 484 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2094 }, + }, + }, + [472] = { + ["end"] = { + ["U"] = { 1071 }, + }, + ["lvl"] = 25, + ["min"] = 25, + ["race"] = 589, + ["start"] = { + ["U"] = { 2097 }, + }, + }, + [473] = { + ["end"] = { + ["U"] = { 2104 }, + }, + ["lvl"] = 28, + ["min"] = 23, + ["race"] = 589, + ["start"] = { + ["U"] = { 2086 }, + }, + }, + [474] = { + ["end"] = { + ["U"] = { 2104 }, + }, + ["lvl"] = 32, + ["min"] = 23, + ["obj"] = { + ["I"] = { 3625 }, + }, + ["pre"] = { 465 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 1609 }, + }, + }, + [475] = { + ["end"] = { + ["U"] = { 2107 }, + }, + ["lvl"] = 6, + ["min"] = 4, + ["race"] = 589, + ["start"] = { + ["U"] = { 2078 }, + }, + }, + [476] = { + ["end"] = { + ["U"] = { 2078 }, + }, + ["lvl"] = 6, + ["min"] = 4, + ["pre"] = { 475 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2107 }, + }, + }, + [477] = { + ["end"] = { + ["O"] = { 1627 }, + }, + ["lvl"] = 14, + ["min"] = 10, + ["race"] = 434, + ["start"] = { + ["U"] = { 2121 }, + }, + }, + [478] = { + ["end"] = { + ["U"] = { 2121 }, + }, + ["lvl"] = 14, + ["min"] = 10, + ["pre"] = { 477 }, + ["race"] = 434, + ["start"] = { + ["O"] = { 1627 }, + }, + }, + [479] = { + ["end"] = { + ["U"] = { 2121 }, + }, + ["lvl"] = 16, + ["min"] = 10, + ["obj"] = { + ["I"] = { 3354 }, + }, + ["pre"] = { 482 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2121 }, + }, + }, + [480] = { + ["end"] = { + ["U"] = { 2121 }, + }, + ["lvl"] = 22, + ["min"] = 10, + ["obj"] = { + ["I"] = { 3515 }, + }, + ["pre"] = { 479 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2121 }, + }, + }, + [481] = { + ["end"] = { + ["U"] = { 1938 }, + }, + ["lvl"] = 14, + ["min"] = 10, + ["pre"] = { 478 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2121 }, + }, + }, + [482] = { + ["end"] = { + ["U"] = { 2121 }, + }, + ["lvl"] = 14, + ["min"] = 10, + ["pre"] = { 481 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1938 }, + }, + }, + [483] = { + ["end"] = { + ["U"] = { 2078 }, + }, + ["lvl"] = 9, + ["min"] = 4, + ["obj"] = { + ["I"] = { 3405, 3406, 3407, 3408 }, + }, + ["pre"] = { 476 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2078 }, + }, + }, + [484] = { + ["end"] = { + ["U"] = { 2094 }, + }, + ["lvl"] = 22, + ["min"] = 18, + ["obj"] = { + ["I"] = { 3397 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2094 }, + }, + }, + [486] = { + ["end"] = { + ["U"] = { 2078 }, + }, + ["lvl"] = 12, + ["min"] = 4, + ["obj"] = { + ["U"] = { 2039 }, + }, + ["pre"] = { 483 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2078 }, + }, + }, + [487] = { + ["end"] = { + ["U"] = { 2151 }, + }, + ["lvl"] = 8, + ["min"] = 5, + ["obj"] = { + ["U"] = { 2152 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2151 }, + }, + }, + [488] = { + ["end"] = { + ["U"] = { 2150 }, + }, + ["lvl"] = 5, + ["min"] = 4, + ["obj"] = { + ["I"] = { 3409, 3411, 3412 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2150 }, + }, + }, + [489] = { + ["end"] = { + ["U"] = { 2150 }, + }, + ["lvl"] = 7, + ["min"] = 4, + ["obj"] = { + ["I"] = { 3418 }, + }, + ["pre"] = { 488 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2083 }, + }, + }, + [490] = "_", + [491] = { + ["end"] = { + ["U"] = { 1498 }, + }, + ["lvl"] = 18, + ["min"] = 12, + ["pre"] = { 461 }, + ["race"] = 434, + ["start"] = { + ["O"] = { 112888 }, + }, + }, + [492] = { + ["end"] = { + ["U"] = { 2211 }, + }, + ["lvl"] = 11, + ["min"] = 6, + ["pre"] = { 369 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1518 }, + }, + }, + [493] = { + ["end"] = { + ["U"] = { 2216 }, + }, + ["lvl"] = 20, + ["min"] = 19, + ["race"] = 434, + ["start"] = { + ["U"] = { 1937 }, + }, + }, + [494] = { + ["end"] = { + ["U"] = { 2215 }, + }, + ["lvl"] = 20, + ["min"] = 19, + ["race"] = 434, + ["start"] = { + ["U"] = { 2214 }, + }, + }, + [495] = { + ["end"] = { + ["U"] = { 2278 }, + }, + ["lvl"] = 39, + ["min"] = 34, + ["race"] = 434, + ["start"] = { + ["U"] = { 2227 }, + }, + }, + [496] = { + ["end"] = { + ["U"] = { 2216 }, + }, + ["lvl"] = 22, + ["min"] = 19, + ["obj"] = { + ["I"] = { 3476, 3477 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2216 }, + }, + }, + [497] = "_", + [498] = { + ["end"] = { + ["U"] = { 2229 }, + }, + ["lvl"] = 22, + ["min"] = 17, + ["obj"] = { + ["I"] = { 3467, 3499 }, + ["IR"] = { 3467, 3499 }, + ["O"] = { 1721, 1722 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2229 }, + }, + }, + [499] = { + ["end"] = { + ["U"] = { 2230 }, + }, + ["lvl"] = 22, + ["min"] = 19, + ["pre"] = { 496 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2216 }, + }, + }, + [500] = { + ["end"] = { + ["U"] = { 2263 }, + }, + ["lvl"] = 36, + ["min"] = 30, + ["obj"] = { + ["I"] = { 2843 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2263 }, + }, + }, + [501] = { + ["end"] = { + ["U"] = { 2216 }, + }, + ["lvl"] = 24, + ["min"] = 21, + ["obj"] = { + ["I"] = { 3496 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2216 }, + }, + }, + [502] = { + ["end"] = { + ["U"] = { 2274 }, + }, + ["lvl"] = 24, + ["min"] = 21, + ["pre"] = { 501 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2216 }, + }, + }, + [503] = { + ["end"] = { + ["U"] = { 2316 }, + }, + ["lvl"] = 36, + ["min"] = 29, + ["obj"] = { + ["A"] = { 178 }, + ["I"] = { 3704 }, + }, + ["pre"] = { 533 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2229 }, + }, + }, + [504] = { + ["end"] = { + ["U"] = { 2263 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["obj"] = { + ["U"] = { 2287 }, + }, + ["pre"] = { 500 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2263 }, + }, + }, + [505] = { + ["end"] = { + ["U"] = { 2276 }, + }, + ["lvl"] = 33, + ["min"] = 26, + ["obj"] = { + ["U"] = { 2240, 2241 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2276 }, + }, + }, + [506] = { + ["end"] = { + ["U"] = { 2229 }, + }, + ["lvl"] = 36, + ["min"] = 29, + ["pre"] = { 503 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2316 }, + }, + }, + [507] = { + ["end"] = { + ["U"] = { 2317 }, + }, + ["lvl"] = 42, + ["min"] = 29, + ["obj"] = { + ["U"] = { 2423 }, + }, + ["pre"] = { 506 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2229 }, + }, + }, + [508] = { + ["end"] = { + ["U"] = { 2229 }, + }, + ["lvl"] = 40, + ["min"] = 29, + ["pre"] = { 507 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2317 }, + }, + }, + [509] = { + ["end"] = { + ["U"] = { 2216 }, + }, + ["lvl"] = 28, + ["min"] = 24, + ["obj"] = { + ["I"] = { 3502 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2216 }, + }, + }, + [510] = { + ["end"] = { + ["U"] = { 2276 }, + }, + ["lvl"] = 34, + ["min"] = 26, + ["race"] = 589, + ["start"] = { + ["O"] = { 1740, 186420 }, + }, + }, + [511] = { + ["end"] = { + ["U"] = { 2277 }, + }, + ["lvl"] = 34, + ["min"] = 30, + ["race"] = 589, + ["start"] = { + ["O"] = { 1740, 186420 }, + }, + }, + [512] = { + ["end"] = { + ["U"] = { 2276 }, + }, + ["lvl"] = 36, + ["min"] = 26, + ["obj"] = { + ["I"] = { 3505 }, + }, + ["pre"] = { 510 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2276 }, + }, + }, + [513] = { + ["end"] = { + ["U"] = { 2055 }, + }, + ["lvl"] = 28, + ["min"] = 24, + ["pre"] = { 509 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2216 }, + }, + }, + [514] = { + ["end"] = { + ["U"] = { 1356 }, + }, + ["lvl"] = 34, + ["min"] = 30, + ["pre"] = { 511 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2277 }, + }, + }, + [515] = { + ["end"] = { + ["U"] = { 2216 }, + }, + ["lvl"] = 30, + ["min"] = 24, + ["obj"] = { + ["I"] = { 3388, 3509, 3510 }, + }, + ["pre"] = { 513 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2055 }, + }, + }, + [516] = { + ["end"] = { + ["U"] = { 2121 }, + }, + ["lvl"] = 21, + ["min"] = 16, + ["obj"] = { + ["U"] = { 1973, 1974 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2121 }, + }, + }, + [517] = { + ["end"] = { + ["U"] = { 2216 }, + }, + ["lvl"] = 30, + ["min"] = 24, + ["obj"] = { + ["I"] = { 3517 }, + }, + ["pre"] = { 515 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2216 }, + }, + }, + [518] = { + ["end"] = { + ["U"] = { 2278 }, + }, + ["lvl"] = 39, + ["min"] = 34, + ["obj"] = { + ["U"] = { 2254 }, + }, + ["pre"] = { 495 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2278 }, + }, + }, + [519] = { + ["end"] = { + ["U"] = { 2278 }, + }, + ["lvl"] = 41, + ["min"] = 34, + ["obj"] = { + ["I"] = { 3550, 3551, 3552 }, + }, + ["pre"] = { 518 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2278 }, + }, + }, + [520] = { + ["end"] = { + ["U"] = { 2278 }, + }, + ["lvl"] = 43, + ["min"] = 34, + ["obj"] = { + ["I"] = { 3553, 3554 }, + }, + ["pre"] = { 519 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2278 }, + }, + }, + [521] = { + ["end"] = { + ["U"] = { 2227 }, + }, + ["lvl"] = 43, + ["min"] = 34, + ["pre"] = { 520 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2278 }, + }, + }, + [522] = { + ["end"] = { + ["U"] = { 2276 }, + }, + ["lvl"] = 38, + ["min"] = 30, + ["race"] = 589, + ["start"] = { + ["I"] = { 3668 }, + }, + }, + [523] = { + ["end"] = { + ["U"] = { 2276 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["obj"] = { + ["I"] = { 3626 }, + }, + ["pre"] = { 522 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2276 }, + }, + }, + [524] = { + ["end"] = { + ["O"] = { 1728 }, + }, + ["lvl"] = 30, + ["min"] = 24, + ["pre"] = { 517 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2216 }, + }, + }, + [525] = { + ["end"] = { + ["U"] = { 2276 }, + }, + ["lvl"] = 34, + ["min"] = 30, + ["pre"] = { 514 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1356 }, + }, + }, + [526] = { + ["end"] = { + ["U"] = { 1217 }, + }, + ["lvl"] = 29, + ["min"] = 20, + ["obj"] = { + ["I"] = { 2702 }, + }, + ["pre"] = { 324 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1217 }, + }, + }, + [527] = { + ["end"] = { + ["U"] = { 2215 }, + }, + ["lvl"] = 24, + ["min"] = 19, + ["obj"] = { + ["U"] = { 232, 2266, 2360, 2403 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2215 }, + }, + }, + [528] = { + ["end"] = { + ["U"] = { 2215 }, + }, + ["lvl"] = 25, + ["min"] = 19, + ["obj"] = { + ["U"] = { 2267 }, + }, + ["pre"] = { 527 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2215 }, + }, + }, + [529] = { + ["end"] = { + ["U"] = { 2215 }, + }, + ["lvl"] = 26, + ["min"] = 19, + ["obj"] = { + ["I"] = { 3564 }, + ["U"] = { 2265, 2404 }, + }, + ["pre"] = { 528 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2215 }, + }, + }, + [530] = { + ["end"] = { + ["U"] = { 2050 }, + }, + ["lvl"] = 20, + ["min"] = 10, + ["obj"] = { + ["I"] = { 3613 }, + }, + ["pre"] = { 441 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2050 }, + }, + }, + [531] = { + ["end"] = { + ["U"] = { 1156 }, + }, + ["lvl"] = 20, + ["min"] = 15, + ["pre"] = { 271 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1187 }, + }, + }, + [532] = { + ["end"] = { + ["U"] = { 2215 }, + }, + ["lvl"] = 26, + ["min"] = 19, + ["obj"] = { + ["I"] = { 3657 }, + ["O"] = { 1761 }, + ["U"] = { 2335, 2387 }, + }, + ["pre"] = { 529 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2215 }, + }, + }, + [533] = { + ["end"] = { + ["U"] = { 2229 }, + }, + ["lvl"] = 34, + ["min"] = 29, + ["obj"] = { + ["I"] = { 3601 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2229 }, + }, + }, + [534] = "_", + [535] = { + ["end"] = { + ["U"] = { 2333 }, + }, + ["lvl"] = 34, + ["min"] = 29, + ["obj"] = { + ["I"] = { 3703 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2333 }, + }, + }, + [536] = { + ["end"] = { + ["U"] = { 2228 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["obj"] = { + ["U"] = { 2376, 2377 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2228 }, + }, + }, + [537] = { + ["end"] = { + ["U"] = { 2276 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["obj"] = { + ["I"] = { 3672 }, + ["U"] = { 2318 }, + }, + ["pre"] = { 525 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2276 }, + }, + }, + [538] = { + ["end"] = { + ["U"] = { 2277 }, + }, + ["lvl"] = 38, + ["min"] = 20, + ["pre"] = { 337 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1440 }, + }, + }, + [539] = { + ["end"] = { + ["U"] = { 2215 }, + }, + ["lvl"] = 28, + ["min"] = 19, + ["obj"] = { + ["U"] = { 2269, 2305 }, + }, + ["pre"] = { 532 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2215 }, + }, + }, + [540] = { + ["end"] = { + ["U"] = { 2277 }, + }, + ["lvl"] = 38, + ["min"] = 20, + ["obj"] = { + ["I"] = { 3658, 3659 }, + }, + ["pre"] = { 538 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2277 }, + }, + }, + [541] = { + ["end"] = { + ["U"] = { 2215 }, + }, + ["lvl"] = 30, + ["min"] = 19, + ["obj"] = { + ["U"] = { 2304, 2344, 2345, 2346 }, + }, + ["pre"] = { 539 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2215 }, + }, + }, + [542] = { + ["end"] = { + ["U"] = { 1440 }, + }, + ["lvl"] = 38, + ["min"] = 20, + ["pre"] = { 540 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2277 }, + }, + }, + [543] = { + ["end"] = { + ["U"] = { 2285 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["obj"] = { + ["I"] = { 3684 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2285 }, + }, + }, + [544] = { + ["end"] = { + ["U"] = { 2410 }, + }, + ["lvl"] = 34, + ["min"] = 30, + ["obj"] = { + ["I"] = { 3688, 3689, 3690, 3691 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2410 }, + }, + }, + [545] = { + ["end"] = { + ["U"] = { 2410 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["U"] = { 2358, 2359 }, + }, + ["pre"] = { 544 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2410 }, + }, + }, + [546] = { + ["end"] = { + ["U"] = { 2418 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["obj"] = { + ["I"] = { 3692 }, + }, + ["pre"] = { 527 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2418 }, + }, + }, + [547] = { + ["end"] = { + ["U"] = { 2419 }, + }, + ["lvl"] = 30, + ["min"] = 26, + ["obj"] = { + ["I"] = { 3693 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2419 }, + }, + }, + [548] = "_", + [549] = { + ["end"] = { + ["U"] = { 2215 }, + }, + ["lvl"] = 22, + ["min"] = 17, + ["obj"] = { + ["U"] = { 2260, 2261 }, + }, + ["race"] = 434, + ["start"] = { + ["O"] = { 1763 }, + }, + }, + [550] = { + ["end"] = { + ["U"] = { 2425 }, + }, + ["lvl"] = 32, + ["min"] = 19, + ["pre"] = { 541 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2215 }, + }, + }, + [551] = { + ["end"] = { + ["U"] = { 2277 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["race"] = 589, + ["start"] = { + ["I"] = { 3706 }, + }, + }, + [552] = { + ["end"] = { + ["U"] = { 2429 }, + }, + ["lvl"] = 33, + ["min"] = 29, + ["obj"] = { + ["I"] = { 3708 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2429 }, + }, + }, + [553] = { + ["end"] = { + ["O"] = { 1767 }, + }, + ["lvl"] = 33, + ["min"] = 29, + ["obj"] = { + ["IR"] = { 3710 }, + ["O"] = { 1768, 1769, 1770 }, + }, + ["pre"] = { 552 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2429 }, + }, + }, + [554] = { + ["end"] = { + ["U"] = { 1356 }, + }, + ["lvl"] = 40, + ["min"] = 28, + ["pre"] = { 551 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2277 }, + }, + }, + [555] = { + ["end"] = { + ["U"] = { 2430 }, + }, + ["lvl"] = 31, + ["min"] = 28, + ["obj"] = { + ["I"] = { 3712, 3713 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2430 }, + }, + }, + [556] = { + ["end"] = { + ["U"] = { 2437 }, + }, + ["lvl"] = 32, + ["min"] = 30, + ["obj"] = { + ["I"] = { 3714 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2437 }, + }, + }, + [557] = { + ["end"] = { + ["U"] = { 2437 }, + }, + ["lvl"] = 34, + ["min"] = 30, + ["obj"] = { + ["I"] = { 3715 }, + }, + ["pre"] = { 556 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2437 }, + }, + }, + [558] = { + ["end"] = { + ["U"] = { 14305 }, + }, + ["lvl"] = 60, + ["min"] = 10, + ["obj"] = { + ["I"] = { 18642 }, + }, + ["pre"] = { 4822 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14305 }, + }, + }, + [559] = { + ["end"] = { + ["U"] = { 2228 }, + }, + ["lvl"] = 32, + ["min"] = 25, + ["obj"] = { + ["I"] = { 3716 }, + }, + ["pre"] = { 536 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2228 }, + }, + }, + [560] = { + ["end"] = { + ["U"] = { 2263 }, + }, + ["lvl"] = 32, + ["min"] = 25, + ["pre"] = { 559 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2228 }, + }, + }, + [561] = { + ["end"] = { + ["U"] = { 2228 }, + }, + ["lvl"] = 32, + ["min"] = 25, + ["pre"] = { 560 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2263 }, + }, + }, + [562] = { + ["end"] = { + ["U"] = { 2228 }, + }, + ["lvl"] = 32, + ["min"] = 25, + ["obj"] = { + ["U"] = { 2369, 2371 }, + }, + ["pre"] = { 561 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2228 }, + }, + }, + [563] = { + ["end"] = { + ["U"] = { 2439 }, + }, + ["lvl"] = 32, + ["min"] = 25, + ["pre"] = { 562 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2228 }, + }, + }, + [564] = { + ["end"] = { + ["U"] = { 2382 }, + }, + ["lvl"] = 34, + ["min"] = 30, + ["obj"] = { + ["U"] = { 2406, 2407 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2382 }, + }, + }, + [565] = { + ["end"] = { + ["U"] = { 2438 }, + }, + ["lvl"] = 34, + ["min"] = 29, + ["obj"] = { + ["I"] = { 2321, 2997, 3719, 3720 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2438 }, + }, + }, + [566] = { + ["end"] = { + ["U"] = { 2215 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["obj"] = { + ["I"] = { 3626 }, + }, + ["race"] = 434, + ["start"] = { + ["O"] = { 1763 }, + }, + }, + [567] = { + ["end"] = { + ["U"] = { 2215 }, + }, + ["lvl"] = 28, + ["min"] = 19, + ["obj"] = { + ["U"] = { 2448, 2449, 2450, 2451 }, + }, + ["race"] = 434, + ["start"] = { + ["O"] = { 2008 }, + }, + }, + [568] = { + ["end"] = { + ["U"] = { 2464 }, + }, + ["lvl"] = 36, + ["min"] = 33, + ["obj"] = { + ["U"] = { 686 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2464 }, + }, + }, + [569] = { + ["end"] = { + ["U"] = { 2464 }, + }, + ["lvl"] = 37, + ["min"] = 33, + ["obj"] = { + ["U"] = { 1142, 1144 }, + }, + ["pre"] = { 568 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2464 }, + }, + }, + [570] = { + ["end"] = { + ["U"] = { 2465 }, + }, + ["lvl"] = 38, + ["min"] = 33, + ["obj"] = { + ["I"] = { 3838, 3839 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2465 }, + }, + }, + [571] = { + ["end"] = { + ["U"] = { 2465 }, + }, + ["lvl"] = 41, + ["min"] = 33, + ["obj"] = { + ["I"] = { 3862 }, + }, + ["pre"] = { 572 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2465 }, + }, + }, + [572] = { + ["end"] = { + ["U"] = { 2465 }, + }, + ["lvl"] = 41, + ["min"] = 33, + ["obj"] = { + ["I"] = { 3863 }, + }, + ["pre"] = { 570 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2465 }, + }, + }, + [573] = { + ["end"] = { + ["U"] = { 2465 }, + }, + ["lvl"] = 44, + ["min"] = 33, + ["obj"] = { + ["I"] = { 737 }, + ["U"] = { 1907 }, + }, + ["pre"] = { 571 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2465 }, + }, + }, + [574] = { + ["end"] = { + ["U"] = { 469 }, + }, + ["lvl"] = 38, + ["min"] = 30, + ["obj"] = { + ["U"] = { 938, 941 }, + }, + ["pre"] = { 203, 204 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 733 }, + }, + }, + [578] = { + ["end"] = { + ["U"] = { 2496 }, + }, + ["lvl"] = 37, + ["min"] = 32, + ["obj"] = { + ["A"] = { 196 }, + }, + ["pre"] = { 616 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2496 }, + }, + }, + [579] = { + ["end"] = { + ["U"] = { 2504 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["obj"] = { + ["I"] = { 3898 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2504 }, + }, + }, + [581] = { + ["end"] = { + ["U"] = { 2497 }, + }, + ["lvl"] = 34, + ["min"] = 30, + ["obj"] = { + ["I"] = { 3901 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2497 }, + }, + }, + [582] = { + ["end"] = { + ["U"] = { 2497 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["obj"] = { + ["I"] = { 1532 }, + }, + ["pre"] = { 581 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2497 }, + }, + }, + [584] = { + ["end"] = { + ["O"] = { 2076 }, + }, + ["lvl"] = 41, + ["min"] = 30, + ["obj"] = { + ["I"] = { 3904, 3905 }, + }, + ["pre"] = { 582 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2497 }, + }, + }, + [585] = { + ["end"] = { + ["O"] = { 2076 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["obj"] = { + ["I"] = { 3906, 3907, 3908 }, + }, + ["pre"] = { 584 }, + ["race"] = 434, + ["start"] = { + ["O"] = { 2076 }, + }, + }, + [586] = { + ["end"] = { + ["O"] = { 2076 }, + }, + ["lvl"] = 46, + ["min"] = 30, + ["obj"] = { + ["I"] = { 3909 }, + ["U"] = { 669, 781, 783 }, + }, + ["pre"] = { 584 }, + ["race"] = 434, + ["start"] = { + ["O"] = { 2076 }, + }, + }, + [588] = { + ["end"] = { + ["U"] = { 2519 }, + }, + ["lvl"] = 45, + ["min"] = 30, + ["pre"] = { 585, 586 }, + ["race"] = 434, + ["start"] = { + ["O"] = { 2076 }, + }, + }, + [589] = { + ["end"] = { + ["U"] = { 2519 }, + }, + ["lvl"] = 45, + ["min"] = 30, + ["obj"] = { + ["I"] = { 3911 }, + }, + ["pre"] = { 588 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2519 }, + }, + }, + [590] = { + ["end"] = { + ["U"] = { 6784 }, + }, + ["lvl"] = 5, + ["min"] = 1, + ["pre"] = { 8 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 6784 }, + }, + }, + [591] = { + ["end"] = { + ["U"] = { 2519 }, + }, + ["lvl"] = 46, + ["min"] = 30, + ["obj"] = { + ["I"] = { 3616 }, + }, + ["pre"] = { 589 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2519 }, + }, + }, + [592] = { + ["end"] = { + ["U"] = { 2497 }, + }, + ["lvl"] = 46, + ["min"] = 30, + ["obj"] = { + ["I"] = { 3913 }, + ["IR"] = { 3912 }, + }, + ["pre"] = { 591 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2519 }, + }, + }, + [593] = { + ["end"] = { + ["U"] = { 2530 }, + }, + ["lvl"] = 46, + ["min"] = 1, + ["obj"] = { + ["I"] = { 3912 }, + ["IR"] = { 3912 }, + }, + ["pre"] = { 592 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2530 }, + }, + }, + [596] = { + ["end"] = { + ["U"] = { 2519 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["obj"] = { + ["I"] = { 3915 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2519 }, + }, + }, + [598] = { + ["end"] = { + ["U"] = { 2519 }, + }, + ["lvl"] = 42, + ["min"] = 30, + ["obj"] = { + ["I"] = { 3916 }, + }, + ["pre"] = { 596 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2519 }, + }, + }, + [601] = { + ["end"] = { + ["U"] = { 2496 }, + }, + ["lvl"] = 37, + ["min"] = 32, + ["obj"] = { + ["I"] = { 3923 }, + }, + ["pre"] = { 578 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2496 }, + }, + }, + [602] = { + ["end"] = { + ["U"] = { 2543 }, + }, + ["lvl"] = 37, + ["min"] = 32, + ["pre"] = { 601 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2496 }, + }, + }, + [603] = { + ["end"] = { + ["U"] = { 2542 }, + }, + ["lvl"] = 37, + ["min"] = 32, + ["pre"] = { 602 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2543 }, + }, + }, + [610] = { + ["end"] = { + ["U"] = { 2542 }, + }, + ["lvl"] = 39, + ["min"] = 32, + ["obj"] = { + ["I"] = { 4027 }, + ["IR"] = { 4027 }, + }, + ["pre"] = { 603 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2542 }, + }, + }, + [611] = { + ["end"] = { + ["U"] = { 2496 }, + }, + ["lvl"] = 40, + ["min"] = 32, + ["obj"] = { + ["I"] = { 4034 }, + ["IR"] = { 4027 }, + }, + ["pre"] = { 610 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2542 }, + }, + }, + [614] = { + ["end"] = { + ["U"] = { 2500 }, + }, + ["lvl"] = 47, + ["min"] = 35, + ["obj"] = { + ["I"] = { 3932 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2500 }, + }, + }, + [615] = { + ["end"] = { + ["U"] = { 2594 }, + }, + ["lvl"] = 50, + ["min"] = 35, + ["pre"] = { 8552 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2500 }, + }, + }, + [616] = { + ["end"] = { + ["U"] = { 2496 }, + }, + ["lvl"] = 37, + ["min"] = 32, + ["race"] = 589, + ["start"] = { + ["U"] = { 773 }, + }, + }, + [618] = { + ["end"] = { + ["U"] = { 2500 }, + }, + ["lvl"] = 50, + ["min"] = 35, + ["obj"] = { + ["I"] = { 3935 }, + }, + ["pre"] = { 615 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2594 }, + }, + }, + [620] = "_", + [622] = { + ["end"] = { + ["U"] = { 770 }, + }, + ["lvl"] = 37, + ["min"] = 32, + ["pre"] = { 627 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 773 }, + }, + }, + [623] = { + ["end"] = { + ["U"] = { 2616 }, + }, + ["lvl"] = 43, + ["min"] = 38, + ["pre"] = { 617 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2494 }, + }, + }, + [627] = { + ["end"] = { + ["U"] = { 773 }, + }, + ["lvl"] = 37, + ["min"] = 32, + ["obj"] = { + ["I"] = { 4278 }, + }, + ["pre"] = { 210 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 773 }, + }, + }, + [629] = { + ["end"] = { + ["U"] = { 2519 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["obj"] = { + ["I"] = { 4094 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2519 }, + }, + }, + [631] = { + ["end"] = { + ["O"] = { 2652 }, + }, + ["lvl"] = 31, + ["min"] = 28, + ["race"] = 589, + ["start"] = { + ["U"] = { 1075 }, + }, + }, + [632] = { + ["end"] = { + ["U"] = { 1075 }, + }, + ["lvl"] = 31, + ["min"] = 28, + ["pre"] = { 631 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 2652 }, + }, + }, + [633] = { + ["end"] = { + ["U"] = { 1075 }, + }, + ["lvl"] = 31, + ["min"] = 28, + ["obj"] = { + ["O"] = { 2704 }, + }, + ["pre"] = { 632 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1075 }, + }, + }, + [634] = { + ["end"] = { + ["U"] = { 2700 }, + }, + ["lvl"] = 31, + ["min"] = 28, + ["pre"] = { 633 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1075 }, + }, + }, + [637] = { + ["end"] = { + ["U"] = { 2695 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["race"] = 589, + ["start"] = { + ["I"] = { 4433 }, + }, + }, + [638] = { + ["end"] = { + ["U"] = { 2703 }, + }, + ["lvl"] = 37, + ["min"] = 32, + ["race"] = 434, + ["start"] = { + ["U"] = { 2497 }, + }, + }, + [639] = { + ["end"] = { + ["U"] = { 2703 }, + }, + ["lvl"] = 37, + ["min"] = 32, + ["obj"] = { + ["I"] = { 4440 }, + }, + ["pre"] = { 638 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2703 }, + }, + }, + [640] = { + ["end"] = { + ["U"] = { 2706 }, + }, + ["lvl"] = 40, + ["min"] = 32, + ["obj"] = { + ["I"] = { 4450 }, + }, + ["pre"] = { 639 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2703 }, + }, + }, + [641] = { + ["end"] = { + ["U"] = { 2703 }, + }, + ["lvl"] = 40, + ["min"] = 32, + ["pre"] = { 640 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2706 }, + }, + }, + [643] = { + ["end"] = { + ["U"] = { 2703 }, + }, + ["lvl"] = 41, + ["min"] = 32, + ["obj"] = { + ["I"] = { 4458 }, + }, + ["pre"] = { 641 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2703 }, + }, + }, + [644] = { + ["end"] = { + ["U"] = { 2703 }, + }, + ["lvl"] = 42, + ["min"] = 32, + ["obj"] = { + ["I"] = { 4466 }, + }, + ["pre"] = { 643 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2703 }, + }, + }, + [645] = { + ["end"] = { + ["O"] = { 2703 }, + }, + ["lvl"] = 42, + ["min"] = 32, + ["pre"] = { 644 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2703 }, + }, + }, + [646] = { + ["end"] = { + ["U"] = { 2703 }, + }, + ["lvl"] = 42, + ["min"] = 32, + ["pre"] = { 645 }, + ["race"] = 434, + ["start"] = { + ["O"] = { 2703 }, + }, + }, + [647] = { + ["end"] = { + ["U"] = { 2705 }, + }, + ["lvl"] = 30, + ["min"] = 28, + ["race"] = 589, + ["start"] = { + ["U"] = { 2696 }, + }, + }, + [649] = { + ["end"] = { + ["U"] = { 6987 }, + }, + ["lvl"] = 48, + ["min"] = 42, + ["race"] = 434, + ["start"] = { + ["U"] = { 6986 }, + }, + }, + [650] = { + ["end"] = { + ["U"] = { 7801 }, + }, + ["lvl"] = 48, + ["min"] = 42, + ["pre"] = { 649 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 6987 }, + }, + }, + [653] = { + ["end"] = { + ["U"] = { 2786 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["pre"] = { 652 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 2688 }, + }, + }, + [654] = { + ["end"] = { + ["U"] = { 7407 }, + }, + ["lvl"] = 46, + ["min"] = 38, + ["obj"] = { + ["I"] = { 8523, 9437, 9438, 9439, 9440, 9441, 9442 }, + }, + ["pre"] = { 379 }, + ["race"] = 434, + ["start"] = { + ["I"] = { 8524 }, + }, + }, + [655] = { + ["end"] = { + ["U"] = { 2706 }, + }, + ["lvl"] = 34, + ["min"] = 29, + ["race"] = 434, + ["start"] = { + ["U"] = { 2792 }, + }, + }, + [657] = { + ["end"] = { + ["U"] = { 2713 }, + }, + ["lvl"] = 36, + ["min"] = 30, + ["pre"] = { 658 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2712 }, + }, + }, + [658] = { + ["end"] = { + ["U"] = { 2712 }, + }, + ["lvl"] = 36, + ["min"] = 30, + ["obj"] = { + ["I"] = { 4482 }, + }, + ["pre"] = { 659 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2712 }, + }, + }, + [659] = { + ["end"] = { + ["U"] = { 2712 }, + }, + ["lvl"] = 33, + ["min"] = 30, + ["race"] = 589, + ["start"] = { + ["U"] = { 2711 }, + }, + }, + [660] = { + ["end"] = { + ["U"] = { 2712 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["pre"] = { 657 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2713 }, + }, + }, + [661] = { + ["end"] = { + ["U"] = { 2711 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["pre"] = { 660 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2712 }, + }, + }, + [671] = { + ["end"] = { + ["U"] = { 2706 }, + }, + ["lvl"] = 33, + ["min"] = 30, + ["obj"] = { + ["I"] = { 4495 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2706 }, + }, + }, + [672] = { + ["end"] = { + ["U"] = { 2706 }, + }, + ["lvl"] = 34, + ["min"] = 29, + ["obj"] = { + ["I"] = { 4512 }, + }, + ["pre"] = { 655 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2706 }, + }, + }, + [673] = { + ["end"] = { + ["U"] = { 2706 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["obj"] = { + ["I"] = { 4510 }, + }, + ["pre"] = { 671 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2706 }, + }, + }, + [674] = { + ["end"] = { + ["U"] = { 2792 }, + }, + ["lvl"] = 34, + ["min"] = 29, + ["pre"] = { 672 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2706 }, + }, + }, + [675] = { + ["end"] = { + ["U"] = { 2706 }, + }, + ["lvl"] = 34, + ["min"] = 29, + ["pre"] = { 674 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2792 }, + }, + }, + [676] = { + ["end"] = { + ["U"] = { 2771 }, + }, + ["lvl"] = 32, + ["min"] = 30, + ["obj"] = { + ["U"] = { 2562, 2564 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2770 }, + }, + }, + [677] = { + ["end"] = { + ["U"] = { 2771 }, + }, + ["lvl"] = 32, + ["min"] = 30, + ["obj"] = { + ["U"] = { 2554, 2555, 2556 }, + }, + ["pre"] = { 676 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2771 }, + }, + }, + [678] = { + ["end"] = { + ["U"] = { 2771 }, + }, + ["lvl"] = 38, + ["min"] = 30, + ["obj"] = { + ["U"] = { 2566, 2567 }, + }, + ["pre"] = { 677 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2771 }, + }, + }, + [679] = { + ["end"] = { + ["U"] = { 2771 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["obj"] = { + ["U"] = { 2570, 2571 }, + }, + ["pre"] = { 678 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2771 }, + }, + }, + [680] = { + ["end"] = { + ["U"] = { 2772 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["obj"] = { + ["I"] = { 4551 }, + }, + ["pre"] = { 678 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2772 }, + }, + }, + [681] = { + ["end"] = { + ["U"] = { 2700 }, + }, + ["lvl"] = 31, + ["min"] = 30, + ["obj"] = { + ["U"] = { 2586, 2589 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2700 }, + }, + }, + [682] = { + ["end"] = { + ["U"] = { 2700 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["obj"] = { + ["I"] = { 4506 }, + }, + ["pre"] = { 681 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2700 }, + }, + }, + [683] = { + ["end"] = { + ["U"] = { 2784 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["pre"] = { 637 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2695 }, + }, + }, + [684] = { + ["end"] = { + ["U"] = { 2700 }, + }, + ["lvl"] = 39, + ["min"] = 30, + ["obj"] = { + ["I"] = { 4515 }, + }, + ["race"] = 589, + ["start"] = { + ["O"] = { 2713 }, + }, + }, + [685] = { + ["end"] = { + ["U"] = { 2700 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["obj"] = { + ["I"] = { 4516, 4517 }, + }, + ["race"] = 589, + ["start"] = { + ["O"] = { 2713 }, + }, + }, + [686] = { + ["end"] = { + ["U"] = { 2790 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["pre"] = { 683 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2784 }, + }, + }, + [688] = { + ["end"] = { + ["U"] = { 2787 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["pre"] = { 652 }, + ["race"] = 434, + ["start"] = { + ["O"] = { 2688 }, + }, + }, + [689] = { + ["end"] = { + ["U"] = { 2790 }, + }, + ["lvl"] = 31, + ["min"] = 25, + ["obj"] = { + ["I"] = { 4521 }, + }, + ["pre"] = { 686 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2790 }, + }, + }, + [690] = { + ["end"] = { + ["U"] = { 2789 }, + }, + ["lvl"] = 32, + ["min"] = 30, + ["race"] = 589, + ["start"] = { + ["U"] = { 2708 }, + }, + }, + [691] = { + ["end"] = { + ["U"] = { 2788 }, + }, + ["lvl"] = 36, + ["min"] = 30, + ["obj"] = { + ["I"] = { 4503, 4522, 5040 }, + }, + ["pre"] = { 690 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2788 }, + }, + }, + [693] = { + ["end"] = { + ["U"] = { 2789 }, + }, + ["lvl"] = 39, + ["min"] = 30, + ["obj"] = { + ["I"] = { 4525 }, + }, + ["pre"] = { 691 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2789 }, + }, + }, + [694] = { + ["end"] = { + ["U"] = { 2788 }, + }, + ["lvl"] = 39, + ["min"] = 30, + ["obj"] = { + ["I"] = { 4527 }, + }, + ["pre"] = { 693 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2789 }, + }, + }, + [695] = { + ["end"] = { + ["U"] = { 2789 }, + }, + ["lvl"] = 39, + ["min"] = 30, + ["obj"] = { + ["IR"] = { 4529 }, + }, + ["pre"] = { 694 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2788 }, + }, + }, + [696] = { + ["end"] = { + ["U"] = { 2789 }, + }, + ["lvl"] = 39, + ["min"] = 30, + ["obj"] = { + ["I"] = { 4530, 4531, 4532 }, + }, + ["pre"] = { 695 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2789 }, + }, + }, + [697] = { + ["end"] = { + ["U"] = { 2708 }, + }, + ["lvl"] = 39, + ["min"] = 30, + ["pre"] = { 696 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2789 }, + }, + }, + [698] = { + ["end"] = { + ["U"] = { 5592 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["obj"] = { + ["I"] = { 6169 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5591 }, + }, + }, + [699] = { + ["end"] = { + ["U"] = { 5592 }, + }, + ["lvl"] = 42, + ["min"] = 35, + ["obj"] = { + ["I"] = { 6168 }, + }, + ["pre"] = { 698 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5592 }, + }, + }, + [700] = { + ["end"] = { + ["U"] = { 2784 }, + }, + ["lvl"] = 31, + ["min"] = 25, + ["pre"] = { 689 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2790 }, + }, + }, + [701] = { + ["end"] = { + ["U"] = { 2706 }, + }, + ["lvl"] = 37, + ["min"] = 29, + ["obj"] = { + ["I"] = { 4513 }, + }, + ["pre"] = { 675 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2706 }, + }, + }, + [702] = { + ["end"] = { + ["U"] = { 2792 }, + }, + ["lvl"] = 37, + ["min"] = 29, + ["pre"] = { 701 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2706 }, + }, + }, + [704] = { + ["end"] = { + ["U"] = { 1344 }, + }, + ["lvl"] = 38, + ["min"] = 30, + ["obj"] = { + ["I"] = { 4610 }, + }, + ["pre"] = { 739 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1344 }, + }, + }, + [706] = { + ["end"] = { + ["U"] = { 2860 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 4612 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2860 }, + }, + }, + [707] = { + ["end"] = { + ["U"] = { 1344 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["race"] = 589, + ["start"] = { + ["U"] = { 1356 }, + }, + }, + [708] = { + ["end"] = { + ["U"] = { 2092 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["race"] = 589, + ["start"] = { + ["I"] = { 4613 }, + }, + }, + [717] = { + ["end"] = { + ["U"] = { 2888 }, + }, + ["lvl"] = 50, + ["min"] = 40, + ["obj"] = { + ["I"] = { 4615, 4645 }, + }, + ["pre"] = { 732 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2888 }, + }, + }, + [718] = { + ["end"] = { + ["U"] = { 2860 }, + }, + ["lvl"] = 38, + ["min"] = 35, + ["obj"] = { + ["I"] = { 4629 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2860 }, + }, + }, + [719] = { + ["end"] = { + ["U"] = { 2910 }, + }, + ["lvl"] = 35, + ["min"] = 35, + ["obj"] = { + ["I"] = { 4616 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2910 }, + }, + }, + [720] = { + ["end"] = { + ["U"] = { 2910 }, + }, + ["lvl"] = 35, + ["min"] = 35, + ["race"] = 589, + ["start"] = { + ["O"] = { 2868 }, + }, + }, + [721] = { + ["end"] = { + ["U"] = { 2909 }, + }, + ["lvl"] = 35, + ["min"] = 35, + ["pre"] = { 720 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2910 }, + }, + }, + [722] = { + ["end"] = { + ["U"] = { 2909 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["obj"] = { + ["I"] = { 4635 }, + }, + ["pre"] = { 721 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2909 }, + }, + }, + [723] = { + ["end"] = { + ["U"] = { 2910 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["pre"] = { 722 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2909 }, + }, + }, + [724] = { + ["end"] = { + ["U"] = { 2916 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["pre"] = { 723 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2910 }, + }, + }, + [725] = { + ["end"] = { + ["U"] = { 2918 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["pre"] = { 724 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2916 }, + }, + }, + [726] = { + ["end"] = { + ["U"] = { 2916 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["pre"] = { 725 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2918 }, + }, + }, + [727] = { + ["end"] = { + ["U"] = { 2786 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["pre"] = { 709 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2785 }, + }, + }, + [728] = { + ["end"] = { + ["U"] = { 2934 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["pre"] = { 709 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2785 }, + }, + }, + [729] = { + ["end"] = { + ["U"] = { 2917 }, + }, + ["lvl"] = 20, + ["min"] = 15, + ["pre"] = { 730 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2913 }, + }, + }, + [730] = { + ["end"] = { + ["U"] = { 2913 }, + }, + ["lvl"] = 14, + ["min"] = 14, + ["race"] = 589, + ["start"] = { + ["U"] = { 2912 }, + }, + }, + [731] = { + ["end"] = { + ["U"] = { 2913 }, + }, + ["lvl"] = 20, + ["min"] = 15, + ["pre"] = { 729 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2917 }, + }, + }, + [732] = { + ["end"] = { + ["U"] = { 2888 }, + }, + ["lvl"] = 43, + ["min"] = 40, + ["obj"] = { + ["I"] = { 4640 }, + }, + ["pre"] = { 718 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2888 }, + }, + }, + [733] = { + ["end"] = { + ["U"] = { 2860 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["obj"] = { + ["I"] = { 4630 }, + }, + ["pre"] = { 718 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2860 }, + }, + }, + [735] = { + ["end"] = { + ["U"] = { 2786 }, + }, + ["lvl"] = 44, + ["min"] = 30, + ["obj"] = { + ["I"] = { 4641, 4644, 4646 }, + }, + ["pre"] = { 727 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2786 }, + }, + }, + [736] = { + ["end"] = { + ["U"] = { 2934 }, + }, + ["lvl"] = 44, + ["min"] = 30, + ["obj"] = { + ["I"] = { 4641, 4644, 4646 }, + }, + ["pre"] = { 728 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2934 }, + }, + }, + [738] = { + ["end"] = { + ["O"] = { 2875 }, + }, + ["lvl"] = 38, + ["min"] = 30, + ["pre"] = { 707 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1344 }, + }, + }, + [739] = { + ["end"] = { + ["U"] = { 1344 }, + }, + ["lvl"] = 42, + ["min"] = 30, + ["obj"] = { + ["U"] = { 2893, 2945 }, + }, + ["pre"] = { 738 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 2875 }, + }, + }, + [741] = { + ["end"] = { + ["U"] = { 2912 }, + }, + ["lvl"] = 20, + ["min"] = 15, + ["pre"] = { 731 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2913 }, + }, + }, + [742] = { + ["close"] = { 235, 742, 6382 }, + ["end"] = { + ["U"] = { 12696 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["race"] = 434, + ["start"] = { + ["U"] = { 10881 }, + }, + }, + [743] = { + ["end"] = { + ["U"] = { 2985 }, + }, + ["lvl"] = 8, + ["min"] = 5, + ["obj"] = { + ["I"] = { 4751 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2985 }, + }, + }, + [744] = { + ["end"] = { + ["U"] = { 2987 }, + }, + ["lvl"] = 11, + ["min"] = 7, + ["obj"] = { + ["I"] = { 4752, 4753 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2987 }, + }, + }, + [745] = { + ["end"] = { + ["U"] = { 2993 }, + }, + ["lvl"] = 6, + ["min"] = 1, + ["obj"] = { + ["U"] = { 2949, 2950, 2951 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2993 }, + }, + }, + [746] = { + ["end"] = { + ["U"] = { 2993 }, + }, + ["lvl"] = 8, + ["min"] = 6, + ["obj"] = { + ["I"] = { 4702, 4703 }, + ["IR"] = { 4702 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2993 }, + }, + }, + [747] = { + ["end"] = { + ["U"] = { 2980 }, + }, + ["lvl"] = 2, + ["min"] = 1, + ["obj"] = { + ["I"] = { 4739, 4740 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2980 }, + }, + }, + [748] = { + ["end"] = { + ["U"] = { 2948 }, + }, + ["lvl"] = 5, + ["min"] = 4, + ["obj"] = { + ["I"] = { 4758, 4759 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2948 }, + }, + }, + [749] = { + ["end"] = { + ["O"] = { 2908 }, + }, + ["lvl"] = 8, + ["min"] = 5, + ["race"] = 434, + ["start"] = { + ["U"] = { 2988 }, + }, + }, + [750] = { + ["end"] = { + ["U"] = { 2980 }, + }, + ["lvl"] = 3, + ["min"] = 1, + ["obj"] = { + ["I"] = { 4742 }, + }, + ["pre"] = { 747 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2980 }, + }, + }, + [751] = { + ["end"] = { + ["U"] = { 2988 }, + }, + ["lvl"] = 8, + ["min"] = 5, + ["pre"] = { 749 }, + ["race"] = 434, + ["start"] = { + ["O"] = { 2908 }, + }, + }, + [752] = { + ["end"] = { + ["U"] = { 2991 }, + }, + ["lvl"] = 2, + ["min"] = 1, + ["race"] = 434, + ["start"] = { + ["U"] = { 2981 }, + }, + }, + [753] = { + ["end"] = { + ["U"] = { 2981 }, + }, + ["lvl"] = 3, + ["min"] = 1, + ["obj"] = { + ["I"] = { 4755 }, + }, + ["pre"] = { 752 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2991 }, + }, + }, + [754] = { + ["end"] = { + ["U"] = { 2948 }, + }, + ["lvl"] = 6, + ["min"] = 4, + ["obj"] = { + ["IR"] = { 5411 }, + }, + ["pre"] = { 748 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2948 }, + }, + }, + [755] = { + ["end"] = { + ["U"] = { 2982 }, + }, + ["lvl"] = 3, + ["min"] = 1, + ["pre"] = { 753 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2981 }, + }, + }, + [756] = { + ["end"] = { + ["U"] = { 2948 }, + }, + ["lvl"] = 7, + ["min"] = 4, + ["obj"] = { + ["I"] = { 4801, 4802 }, + }, + ["pre"] = { 754 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2948 }, + }, + }, + [757] = { + ["end"] = { + ["U"] = { 2981 }, + }, + ["lvl"] = 4, + ["min"] = 1, + ["obj"] = { + ["I"] = { 4770 }, + }, + ["pre"] = { 755 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2982 }, + }, + }, + [758] = { + ["end"] = { + ["U"] = { 2948 }, + }, + ["lvl"] = 8, + ["min"] = 4, + ["obj"] = { + ["IR"] = { 5415 }, + }, + ["pre"] = { 756 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2948 }, + }, + }, + [759] = { + ["end"] = { + ["U"] = { 2948 }, + }, + ["lvl"] = 10, + ["min"] = 4, + ["obj"] = { + ["I"] = { 4803 }, + }, + ["pre"] = { 758 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2948 }, + }, + }, + [760] = { + ["end"] = { + ["U"] = { 2948 }, + }, + ["lvl"] = 10, + ["min"] = 4, + ["obj"] = { + ["IR"] = { 5416 }, + }, + ["pre"] = { 759 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2948 }, + }, + }, + [761] = { + ["end"] = { + ["U"] = { 2947 }, + }, + ["lvl"] = 6, + ["min"] = 4, + ["obj"] = { + ["I"] = { 4769 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2947 }, + }, + }, + [762] = { + ["end"] = { + ["U"] = { 2918 }, + }, + ["lvl"] = 44, + ["min"] = 35, + ["obj"] = { + ["I"] = { 4621 }, + }, + ["pre"] = { 726 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2916 }, + }, + }, + [763] = { + ["end"] = { + ["U"] = { 2993 }, + }, + ["lvl"] = 5, + ["min"] = 1, + ["pre"] = { 757 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2981 }, + }, + }, + [764] = { + ["end"] = { + ["U"] = { 2988 }, + }, + ["lvl"] = 10, + ["min"] = 5, + ["obj"] = { + ["U"] = { 2978, 2979 }, + }, + ["pre"] = { 751 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2988 }, + }, + }, + [765] = { + ["end"] = { + ["U"] = { 2988 }, + }, + ["lvl"] = 12, + ["min"] = 5, + ["obj"] = { + ["I"] = { 4819 }, + }, + ["pre"] = { 751 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2988 }, + }, + }, + [766] = { + ["end"] = { + ["U"] = { 3055 }, + }, + ["lvl"] = 8, + ["min"] = 5, + ["obj"] = { + ["I"] = { 4804, 4805, 4806, 4807 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3055 }, + }, + }, + [767] = { + ["end"] = { + ["U"] = { 3054 }, + }, + ["lvl"] = 6, + ["min"] = 3, + ["pre"] = { 763 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2993 }, + }, + }, + [768] = { + ["end"] = { + ["U"] = { 3050 }, + }, + ["lvl"] = 8, + ["min"] = 4, + ["obj"] = { + ["I"] = { 2318 }, + }, + ["race"] = 434, + ["skill"] = 393, + ["start"] = { + ["U"] = { 3050 }, + }, + }, + [769] = { + ["end"] = { + ["U"] = { 3050 }, + }, + ["lvl"] = 10, + ["min"] = 4, + ["obj"] = { + ["I"] = { 2318, 2320 }, + }, + ["pre"] = { 768 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3050 }, + }, + }, + [770] = { + ["end"] = { + ["U"] = { 3052 }, + }, + ["lvl"] = 12, + ["min"] = 6, + ["race"] = 434, + ["start"] = { + ["I"] = { 4854 }, + }, + }, + [771] = { + ["end"] = { + ["U"] = { 3054 }, + }, + ["lvl"] = 7, + ["min"] = 3, + ["obj"] = { + ["I"] = { 4808, 4809 }, + }, + ["pre"] = { 767 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3054 }, + }, + }, + [772] = { + ["end"] = { + ["U"] = { 2984 }, + }, + ["lvl"] = 7, + ["min"] = 3, + ["obj"] = { + ["IR"] = { 4823 }, + }, + ["pre"] = { 771 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3054 }, + }, + }, + [773] = { + ["end"] = { + ["U"] = { 2994 }, + }, + ["lvl"] = 10, + ["min"] = 3, + ["pre"] = { 772 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2984 }, + }, + }, + [774] = "_", + [775] = { + ["end"] = { + ["U"] = { 3057 }, + }, + ["lvl"] = 10, + ["min"] = 3, + ["pre"] = { 773 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2994 }, + }, + }, + [776] = { + ["end"] = { + ["U"] = { 3057 }, + }, + ["lvl"] = 14, + ["min"] = 3, + ["obj"] = { + ["I"] = { 4841 }, + }, + ["pre"] = { 775 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3057 }, + }, + }, + [779] = { + ["end"] = { + ["O"] = { 2933 }, + }, + ["lvl"] = 50, + ["min"] = 40, + ["obj"] = { + ["I"] = { 4843, 4844, 4845 }, + }, + ["pre"] = { 717 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 2933 }, + }, + }, + [780] = { + ["end"] = { + ["U"] = { 2980 }, + }, + ["lvl"] = 4, + ["min"] = 1, + ["obj"] = { + ["I"] = { 4848, 4849 }, + }, + ["pre"] = { 750 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2980 }, + }, + }, + [781] = { + ["end"] = { + ["U"] = { 2981 }, + }, + ["lvl"] = 4, + ["min"] = 1, + ["race"] = 434, + ["start"] = { + ["I"] = { 4851 }, + }, + }, + [782] = { + ["end"] = { + ["U"] = { 1068 }, + }, + ["lvl"] = 43, + ["min"] = 40, + ["obj"] = { + ["I"] = { 4640 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1068 }, + }, + }, + [783] = { + ["end"] = { + ["U"] = { 197 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["race"] = 589, + ["start"] = { + ["U"] = { 823 }, + }, + }, + [784] = { + ["end"] = { + ["U"] = { 3139 }, + }, + ["lvl"] = 7, + ["min"] = 3, + ["obj"] = { + ["U"] = { 3128, 3129, 3192 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3139 }, + }, + }, + [785] = "_", + [786] = { + ["end"] = { + ["U"] = { 3140 }, + }, + ["lvl"] = 8, + ["min"] = 5, + ["obj"] = { + ["O"] = { 3189, 3190, 3192 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3140 }, + }, + }, + [787] = { + ["lvl"] = 1, + ["min"] = 1, + ["race"] = 434, + }, + [788] = { + ["end"] = { + ["U"] = { 3143 }, + }, + ["lvl"] = 2, + ["min"] = 1, + ["obj"] = { + ["U"] = { 3098 }, + }, + ["pre"] = { 787, 4641 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3143 }, + }, + }, + [789] = { + ["end"] = { + ["U"] = { 3143 }, + }, + ["lvl"] = 3, + ["min"] = 1, + ["obj"] = { + ["I"] = { 4862 }, + }, + ["pre"] = { 788 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3143 }, + }, + }, + [790] = { + ["end"] = { + ["U"] = { 3287 }, + }, + ["lvl"] = 5, + ["min"] = 1, + ["obj"] = { + ["I"] = { 4905 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3287 }, + }, + }, + [791] = { + ["end"] = { + ["U"] = { 3147 }, + }, + ["lvl"] = 7, + ["min"] = 4, + ["obj"] = { + ["I"] = { 4870 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3147 }, + }, + }, + [792] = { + ["end"] = { + ["U"] = { 3145 }, + }, + ["lvl"] = 4, + ["min"] = 2, + ["obj"] = { + ["U"] = { 3101 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3145 }, + }, + }, + [793] = { + ["end"] = { + ["U"] = { 1068 }, + }, + ["lvl"] = 50, + ["min"] = 40, + ["obj"] = { + ["I"] = { 4615, 4645 }, + }, + ["pre"] = { 782 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1068 }, + }, + }, + [794] = { + ["end"] = { + ["U"] = { 3145 }, + }, + ["lvl"] = 5, + ["min"] = 1, + ["obj"] = { + ["I"] = { 4859 }, + }, + ["pre"] = { 792, 1499 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3145 }, + }, + }, + [795] = { + ["end"] = { + ["O"] = { 2933 }, + }, + ["lvl"] = 50, + ["min"] = 40, + ["obj"] = { + ["I"] = { 4843, 4844, 4845 }, + }, + ["pre"] = { 793 }, + ["race"] = 434, + ["start"] = { + ["O"] = { 2933 }, + }, + }, + [796] = "_", + [797] = "_", + [798] = "_", + [799] = "_", + [800] = "_", + [801] = "_", + [802] = "_", + [803] = "_", + [804] = { + ["end"] = { + ["U"] = { 3143 }, + }, + ["lvl"] = 5, + ["min"] = 1, + ["pre"] = { 790 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3287 }, + }, + }, + [805] = { + ["end"] = { + ["U"] = { 3188 }, + }, + ["lvl"] = 5, + ["min"] = 1, + ["pre"] = { 794 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3145 }, + }, + }, + [806] = { + ["end"] = { + ["U"] = { 3142 }, + }, + ["lvl"] = 12, + ["min"] = 4, + ["obj"] = { + ["I"] = { 4869 }, + }, + ["pre"] = { 823 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3142 }, + }, + }, + [807] = { + ["lvl"] = 10, + ["min"] = 4, + ["obj"] = { + ["I"] = { 4868 }, + }, + ["race"] = 434, + }, + [808] = { + ["end"] = { + ["U"] = { 3188 }, + }, + ["lvl"] = 9, + ["min"] = 4, + ["obj"] = { + ["I"] = { 4864 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3188 }, + }, + }, + [809] = { + ["end"] = { + ["U"] = { 3521 }, + }, + ["lvl"] = 13, + ["min"] = 4, + ["pre"] = { 829 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3216 }, + }, + }, + [810] = { + ["lvl"] = 5, + ["min"] = 4, + ["obj"] = { + ["I"] = { 51000 }, + }, + ["race"] = 434, + }, + [811] = { + ["lvl"] = 8, + ["min"] = 5, + ["obj"] = { + ["I"] = { 51001 }, + }, + ["pre"] = { 810 }, + ["race"] = 434, + }, + [812] = { + ["end"] = { + ["U"] = { 3190 }, + }, + ["lvl"] = 9, + ["min"] = 7, + ["obj"] = { + ["I"] = { 4904 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3190 }, + }, + }, + [813] = { + ["end"] = { + ["U"] = { 3189 }, + }, + ["lvl"] = 9, + ["min"] = 7, + ["obj"] = { + ["I"] = { 4886 }, + }, + ["pre"] = { 812 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3189 }, + }, + }, + [814] = { + ["end"] = { + ["U"] = { 3191 }, + }, + ["lvl"] = 6, + ["min"] = 4, + ["obj"] = { + ["I"] = { 769 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3191 }, + }, + }, + [815] = { + ["end"] = { + ["U"] = { 3191 }, + }, + ["lvl"] = 8, + ["min"] = 6, + ["obj"] = { + ["I"] = { 4890 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3191 }, + }, + }, + [816] = { + ["end"] = { + ["U"] = { 3193 }, + }, + ["lvl"] = 11, + ["min"] = 8, + ["obj"] = { + ["I"] = { 4891 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3193 }, + }, + }, + [817] = { + ["end"] = { + ["U"] = { 3194 }, + }, + ["lvl"] = 8, + ["min"] = 5, + ["obj"] = { + ["I"] = { 4892 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3194 }, + }, + }, + [818] = { + ["end"] = { + ["U"] = { 3304 }, + }, + ["lvl"] = 7, + ["min"] = 5, + ["obj"] = { + ["I"] = { 4887, 4888 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3304 }, + }, + }, + [819] = { + ["end"] = { + ["U"] = { 3292 }, + }, + ["lvl"] = 15, + ["min"] = 11, + ["race"] = 434, + ["start"] = { + ["I"] = { 4926 }, + }, + }, + [820] = { + ["end"] = { + ["U"] = { 3304 }, + }, + ["lvl"] = 10, + ["min"] = 5, + ["obj"] = { + ["I"] = { 2676 }, + }, + ["pre"] = { 818 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3304 }, + }, + }, + [821] = { + ["end"] = { + ["U"] = { 3292 }, + }, + ["lvl"] = 15, + ["min"] = 11, + ["obj"] = { + ["I"] = { 4893, 4894, 4895 }, + }, + ["pre"] = { 819 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3292 }, + }, + }, + [822] = { + ["end"] = { + ["U"] = { 3292 }, + }, + ["lvl"] = 24, + ["min"] = 11, + ["obj"] = { + ["I"] = { 4896, 4897, 4898 }, + }, + ["pre"] = { 821 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3292 }, + }, + }, + [823] = { + ["end"] = { + ["U"] = { 3142 }, + }, + ["lvl"] = 7, + ["min"] = 4, + ["race"] = 434, + ["start"] = { + ["U"] = { 3188 }, + }, + }, + [824] = { + ["end"] = { + ["U"] = { 12736 }, + }, + ["lvl"] = 27, + ["min"] = 23, + ["pre"] = { 1918 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 12737 }, + }, + }, + [825] = { + ["end"] = { + ["U"] = { 3139 }, + }, + ["lvl"] = 8, + ["min"] = 3, + ["obj"] = { + ["I"] = { 4863 }, + }, + ["pre"] = { 784 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3139 }, + }, + }, + [826] = { + ["end"] = { + ["U"] = { 3188 }, + }, + ["lvl"] = 10, + ["min"] = 4, + ["obj"] = { + ["I"] = { 4866 }, + ["U"] = { 3206, 3207 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3188 }, + }, + }, + [827] = { + ["end"] = { + ["U"] = { 3208 }, + }, + ["lvl"] = 12, + ["min"] = 4, + ["obj"] = { + ["I"] = { 4871 }, + }, + ["pre"] = { 828 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3208 }, + }, + }, + [828] = { + ["end"] = { + ["U"] = { 3208 }, + }, + ["lvl"] = 12, + ["min"] = 4, + ["pre"] = { 806 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3142 }, + }, + }, + [829] = { + ["end"] = { + ["U"] = { 3216 }, + }, + ["lvl"] = 12, + ["min"] = 4, + ["pre"] = { 827 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3208 }, + }, + }, + [830] = { + ["end"] = { + ["U"] = { 3139 }, + }, + ["lvl"] = 7, + ["min"] = 1, + ["race"] = 434, + ["start"] = { + ["I"] = { 4881 }, + }, + }, + [831] = { + ["end"] = { + ["U"] = { 3230 }, + }, + ["lvl"] = 7, + ["min"] = 1, + ["pre"] = { 830 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3139 }, + }, + }, + [832] = { + ["end"] = { + ["U"] = { 3216 }, + }, + ["lvl"] = 12, + ["min"] = 4, + ["race"] = 434, + ["start"] = { + ["I"] = { 4903 }, + }, + }, + [833] = { + ["end"] = { + ["U"] = { 3233 }, + }, + ["lvl"] = 10, + ["min"] = 7, + ["obj"] = { + ["U"] = { 3232 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3233 }, + }, + }, + [834] = { + ["end"] = { + ["U"] = { 3293 }, + }, + ["lvl"] = 9, + ["min"] = 7, + ["obj"] = { + ["I"] = { 4918 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3293 }, + }, + }, + [835] = { + ["end"] = { + ["U"] = { 3293 }, + }, + ["lvl"] = 11, + ["min"] = 7, + ["obj"] = { + ["U"] = { 3117, 3118 }, + }, + ["pre"] = { 834 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3293 }, + }, + }, + [837] = { + ["end"] = { + ["U"] = { 3139 }, + }, + ["lvl"] = 10, + ["min"] = 6, + ["obj"] = { + ["U"] = { 3111, 3112, 3113, 3114 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3139 }, + }, + }, + [838] = { + ["end"] = { + ["U"] = { 11057 }, + }, + ["lvl"] = 55, + ["min"] = 55, + ["pre"] = { 5098 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 10837 }, + }, + }, + [839] = "_", + [840] = { + ["end"] = { + ["U"] = { 3337 }, + }, + ["lvl"] = 12, + ["min"] = 10, + ["race"] = 434, + ["start"] = { + ["U"] = { 3336 }, + }, + }, + [841] = { + ["end"] = { + ["U"] = { 7407 }, + }, + ["lvl"] = 46, + ["min"] = 38, + ["obj"] = { + ["I"] = { 8483 }, + }, + ["pre"] = { 379 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 7407 }, + }, + }, + [842] = { + ["end"] = { + ["U"] = { 3338 }, + }, + ["lvl"] = 12, + ["min"] = 10, + ["pre"] = { 840 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3337 }, + }, + }, + [843] = { + ["end"] = { + ["U"] = { 3341 }, + }, + ["lvl"] = 23, + ["min"] = 17, + ["obj"] = { + ["I"] = { 5006 }, + ["U"] = { 3374, 3375 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3341 }, + }, + }, + [844] = { + ["end"] = { + ["U"] = { 3338 }, + }, + ["lvl"] = 12, + ["min"] = 10, + ["obj"] = { + ["I"] = { 5087 }, + }, + ["pre"] = { 860 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3338 }, + }, + }, + [845] = { + ["end"] = { + ["U"] = { 3338 }, + }, + ["lvl"] = 13, + ["min"] = 10, + ["obj"] = { + ["I"] = { 5086 }, + }, + ["pre"] = { 844 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3338 }, + }, + }, + [846] = { + ["end"] = { + ["U"] = { 3341 }, + }, + ["lvl"] = 26, + ["min"] = 17, + ["obj"] = { + ["I"] = { 5017, 5018, 5019 }, + }, + ["pre"] = { 843 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3341 }, + }, + }, + [847] = { + ["end"] = { + ["U"] = { 2706 }, + }, + ["lvl"] = 37, + ["min"] = 29, + ["pre"] = { 702 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2792 }, + }, + }, + [848] = { + ["end"] = { + ["U"] = { 3390 }, + }, + ["lvl"] = 15, + ["min"] = 10, + ["obj"] = { + ["I"] = { 5012 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3390 }, + }, + }, + [849] = { + ["end"] = { + ["U"] = { 3341 }, + }, + ["lvl"] = 26, + ["min"] = 17, + ["obj"] = { + ["IR"] = { 5021 }, + ["O"] = { 3644 }, + }, + ["pre"] = { 846 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3341 }, + }, + }, + [850] = { + ["end"] = { + ["U"] = { 3389 }, + }, + ["lvl"] = 16, + ["min"] = 11, + ["obj"] = { + ["I"] = { 5022 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3389 }, + }, + }, + [851] = { + ["end"] = { + ["U"] = { 3389 }, + }, + ["lvl"] = 18, + ["min"] = 11, + ["obj"] = { + ["I"] = { 5023 }, + }, + ["pre"] = { 850 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3389 }, + }, + }, + [852] = { + ["end"] = { + ["U"] = { 3389 }, + }, + ["lvl"] = 19, + ["min"] = 11, + ["obj"] = { + ["I"] = { 5025 }, + }, + ["pre"] = { 851 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3389 }, + }, + }, + [853] = { + ["end"] = { + ["U"] = { 3419 }, + }, + ["lvl"] = 15, + ["min"] = 10, + ["pre"] = { 848 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3390 }, + }, + }, + [855] = { + ["end"] = { + ["U"] = { 3389 }, + }, + ["lvl"] = 14, + ["min"] = 9, + ["obj"] = { + ["I"] = { 5030 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3389 }, + }, + }, + [856] = "_", + [857] = { + ["end"] = { + ["U"] = { 3421 }, + }, + ["lvl"] = 30, + ["min"] = 22, + ["obj"] = { + ["I"] = { 5038 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3421 }, + }, + }, + [860] = { + ["end"] = { + ["U"] = { 3338 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 861 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3441 }, + }, + }, + [861] = { + ["end"] = { + ["U"] = { 3441 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["I"] = { 5203 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3052 }, + }, + }, + [862] = { + ["end"] = { + ["U"] = { 3443 }, + }, + ["lvl"] = 23, + ["min"] = 15, + ["obj"] = { + ["I"] = { 5051 }, + }, + ["race"] = 434, + ["skill"] = 185, + ["start"] = { + ["U"] = { 3443 }, + }, + }, + [864] = { + ["end"] = { + ["U"] = { 5204 }, + }, + ["lvl"] = 46, + ["min"] = 38, + ["pre"] = { 654 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 7407 }, + }, + }, + [867] = { + ["end"] = { + ["U"] = { 3449 }, + }, + ["lvl"] = 15, + ["min"] = 12, + ["obj"] = { + ["I"] = { 5064 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3449 }, + }, + }, + [868] = { + ["end"] = { + ["U"] = { 3428 }, + }, + ["lvl"] = 22, + ["min"] = 17, + ["obj"] = { + ["I"] = { 5058 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3428 }, + }, + }, + [869] = { + ["end"] = { + ["U"] = { 3464 }, + }, + ["lvl"] = 13, + ["min"] = 9, + ["obj"] = { + ["I"] = { 5062 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3464 }, + }, + }, + [870] = { + ["end"] = { + ["U"] = { 3448 }, + }, + ["lvl"] = 13, + ["min"] = 10, + ["obj"] = { + ["A"] = { 216 }, + }, + ["pre"] = { 886 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3448 }, + }, + }, + [871] = { + ["end"] = { + ["U"] = { 3429 }, + }, + ["lvl"] = 12, + ["min"] = 9, + ["obj"] = { + ["U"] = { 3265, 3267, 3268 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3429 }, + }, + }, + [872] = { + ["end"] = { + ["U"] = { 3429 }, + }, + ["lvl"] = 15, + ["min"] = 9, + ["obj"] = { + ["I"] = { 5063 }, + ["U"] = { 3266, 3269 }, + }, + ["pre"] = { 871 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3429 }, + }, + }, + [873] = { + ["end"] = { + ["U"] = { 3388 }, + }, + ["lvl"] = 27, + ["min"] = 10, + ["obj"] = { + ["I"] = { 5104 }, + }, + ["pre"] = { 874 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3388 }, + }, + }, + [874] = { + ["end"] = { + ["U"] = { 3388 }, + }, + ["lvl"] = 27, + ["min"] = 9, + ["pre"] = { 913 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3387 }, + }, + }, + [875] = { + ["end"] = { + ["U"] = { 3449 }, + }, + ["lvl"] = 16, + ["min"] = 12, + ["obj"] = { + ["I"] = { 5065 }, + }, + ["pre"] = { 867 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3449 }, + }, + }, + [876] = { + ["end"] = { + ["U"] = { 3449 }, + }, + ["lvl"] = 20, + ["min"] = 12, + ["obj"] = { + ["I"] = { 5067 }, + }, + ["pre"] = { 875 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3449 }, + }, + }, + [877] = { + ["end"] = { + ["U"] = { 3448 }, + }, + ["lvl"] = 16, + ["min"] = 10, + ["obj"] = { + ["IR"] = { 5068 }, + ["O"] = { 3737 }, + }, + ["pre"] = { 870 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3448 }, + }, + }, + [878] = { + ["end"] = { + ["U"] = { 3430 }, + }, + ["lvl"] = 21, + ["min"] = 14, + ["obj"] = { + ["U"] = { 3260, 3261, 3263 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3430 }, + }, + }, + [879] = { + ["end"] = { + ["U"] = { 3430 }, + }, + ["lvl"] = 25, + ["min"] = 17, + ["obj"] = { + ["I"] = { 5072, 5073, 5074 }, + }, + ["pre"] = { 5052 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3430 }, + }, + }, + [880] = { + ["end"] = { + ["U"] = { 3448 }, + }, + ["lvl"] = 16, + ["min"] = 10, + ["obj"] = { + ["I"] = { 5098 }, + }, + ["pre"] = { 877 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3448 }, + }, + }, + [881] = { + ["end"] = { + ["U"] = { 3338 }, + }, + ["lvl"] = 16, + ["min"] = 10, + ["obj"] = { + ["I"] = { 5100 }, + ["IR"] = { 10327 }, + }, + ["pre"] = { 903 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3338 }, + }, + }, + [882] = { + ["end"] = { + ["U"] = { 3387 }, + }, + ["lvl"] = 19, + ["min"] = 10, + ["obj"] = { + ["I"] = { 5101, 10338 }, + ["IR"] = { 10338 }, + }, + ["pre"] = { 3261 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3387 }, + }, + }, + [883] = { + ["end"] = { + ["U"] = { 3387 }, + }, + ["lvl"] = 22, + ["min"] = 10, + ["race"] = 434, + ["start"] = { + ["I"] = { 5099 }, + }, + }, + [884] = { + ["end"] = { + ["U"] = { 3387 }, + }, + ["lvl"] = 24, + ["min"] = 10, + ["race"] = 434, + ["start"] = { + ["I"] = { 5102 }, + }, + }, + [885] = { + ["end"] = { + ["U"] = { 3387 }, + }, + ["lvl"] = 25, + ["min"] = 10, + ["race"] = 434, + ["start"] = { + ["I"] = { 5103 }, + }, + }, + [886] = { + ["end"] = { + ["U"] = { 3448 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 434, + ["start"] = { + ["U"] = { 5769 }, + }, + }, + [889] = { + ["end"] = { + ["U"] = { 3430 }, + }, + ["lvl"] = 20, + ["min"] = 14, + ["obj"] = { + ["I"] = { 5075 }, + }, + ["pre"] = { 5052 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3430 }, + }, + }, + [891] = { + ["end"] = { + ["U"] = { 3339 }, + }, + ["lvl"] = 20, + ["min"] = 13, + ["obj"] = { + ["I"] = { 5078 }, + ["U"] = { 3393, 3454, 3455 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3339 }, + }, + }, + [893] = { + ["end"] = { + ["U"] = { 3433 }, + }, + ["lvl"] = 24, + ["min"] = 17, + ["obj"] = { + ["I"] = { 5092, 5093, 5094 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3433 }, + }, + }, + [897] = { + ["end"] = { + ["U"] = { 3387 }, + }, + ["lvl"] = 24, + ["min"] = 10, + ["race"] = 434, + ["start"] = { + ["I"] = { 5138 }, + }, + }, + [898] = { + ["end"] = { + ["U"] = { 3339 }, + }, + ["lvl"] = 20, + ["min"] = 13, + ["race"] = 434, + ["start"] = { + ["U"] = { 3465 }, + }, + }, + [899] = { + ["end"] = { + ["U"] = { 3432 }, + }, + ["lvl"] = 20, + ["min"] = 14, + ["obj"] = { + ["I"] = { 5085 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3432 }, + }, + }, + [903] = { + ["end"] = { + ["U"] = { 3338 }, + }, + ["lvl"] = 15, + ["min"] = 10, + ["obj"] = { + ["I"] = { 5096 }, + }, + ["pre"] = { 845 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3338 }, + }, + }, + [904] = "_", + [905] = { + ["end"] = { + ["U"] = { 3338 }, + }, + ["lvl"] = 17, + ["min"] = 10, + ["obj"] = { + ["I"] = { 5165 }, + ["IR"] = { 5165 }, + ["O"] = { 6906, 6907, 6908 }, + }, + ["pre"] = { 881 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3338 }, + }, + }, + [906] = { + ["end"] = { + ["U"] = { 3429 }, + }, + ["lvl"] = 25, + ["min"] = 17, + ["pre"] = { 879 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3430 }, + }, + }, + [907] = { + ["end"] = { + ["U"] = { 3387 }, + }, + ["lvl"] = 18, + ["min"] = 10, + ["obj"] = { + ["I"] = { 5143 }, + }, + ["pre"] = { 882 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3387 }, + }, + }, + [908] = { + ["lvl"] = 27, + ["min"] = 25, + ["obj"] = { + ["I"] = { 16762 }, + }, + ["pre"] = { 6563 }, + ["race"] = 434, + }, + [909] = { + ["end"] = { + ["U"] = { 12736 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["race"] = 434, + }, + [910] = { + ["end"] = { + ["U"] = { 14444 }, + }, + ["lvl"] = 60, + ["min"] = 10, + ["pre"] = { 172 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14444 }, + }, + }, + [911] = { + ["end"] = { + ["U"] = { 14444 }, + }, + ["lvl"] = 60, + ["min"] = 10, + ["pre"] = { 172 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14444 }, + }, + }, + [912] = "_", + [913] = { + ["end"] = { + ["U"] = { 3387 }, + }, + ["lvl"] = 20, + ["min"] = 10, + ["obj"] = { + ["I"] = { 5164 }, + }, + ["pre"] = { 907 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3387 }, + }, + }, + [914] = { + ["end"] = { + ["U"] = { 5770 }, + }, + ["lvl"] = 22, + ["min"] = 10, + ["obj"] = { + ["I"] = { 9738, 9739, 9740, 9741 }, + }, + ["pre"] = { 1490 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5770 }, + }, + }, + [915] = { + ["end"] = { + ["U"] = { 14444 }, + }, + ["lvl"] = 60, + ["min"] = 10, + ["obj"] = { + ["I"] = { 7228 }, + }, + ["pre"] = { 910, 911, 1800 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14444 }, + }, + }, + [916] = { + ["end"] = { + ["U"] = { 2082 }, + }, + ["lvl"] = 4, + ["min"] = 3, + ["obj"] = { + ["I"] = { 5166 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2082 }, + }, + }, + [917] = { + ["end"] = { + ["U"] = { 2082 }, + }, + ["lvl"] = 5, + ["min"] = 1, + ["obj"] = { + ["I"] = { 5167 }, + }, + ["pre"] = { 916 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2082 }, + }, + }, + [918] = { + ["end"] = { + ["U"] = { 2080 }, + }, + ["lvl"] = 7, + ["min"] = 4, + ["obj"] = { + ["I"] = { 5168 }, + }, + ["pre"] = { 997 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2080 }, + }, + }, + [919] = { + ["end"] = { + ["U"] = { 2080 }, + }, + ["lvl"] = 7, + ["min"] = 4, + ["obj"] = { + ["I"] = { 5169 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2080 }, + }, + }, + [920] = { + ["end"] = { + ["U"] = { 3514 }, + }, + ["lvl"] = 5, + ["min"] = 1, + ["pre"] = { 917 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2082 }, + }, + }, + [921] = { + ["end"] = { + ["U"] = { 3514 }, + }, + ["lvl"] = 5, + ["min"] = 1, + ["obj"] = { + ["I"] = { 5184 }, + ["IR"] = { 5185 }, + }, + ["pre"] = { 920 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3514 }, + }, + }, + [922] = { + ["end"] = { + ["U"] = { 3517 }, + }, + ["lvl"] = 7, + ["min"] = 4, + ["pre"] = { 918 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2080 }, + }, + }, + [923] = { + ["end"] = { + ["U"] = { 3517 }, + }, + ["lvl"] = 9, + ["min"] = 4, + ["obj"] = { + ["I"] = { 5170 }, + }, + ["pre"] = { 922 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3517 }, + }, + }, + [924] = { + ["end"] = { + ["U"] = { 3521 }, + }, + ["lvl"] = 14, + ["min"] = 9, + ["obj"] = { + ["O"] = { 3525 }, + }, + ["pre"] = { 809 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3521 }, + }, + }, + [925] = { + ["end"] = { + ["U"] = { 14444 }, + }, + ["lvl"] = 60, + ["min"] = 10, + ["obj"] = { + ["I"] = { 18643 }, + }, + ["pre"] = { 915 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14444 }, + }, + }, + [926] = { + ["end"] = { + ["O"] = { 5619, 5620, 5621 }, + }, + ["lvl"] = 14, + ["min"] = 1, + ["pre"] = { 924 }, + ["race"] = 434, + ["start"] = { + ["O"] = { 5619, 5620, 5621 }, + }, + }, + [927] = { + ["end"] = { + ["U"] = { 2080 }, + }, + ["lvl"] = 12, + ["min"] = 5, + ["race"] = 589, + ["start"] = { + ["I"] = { 5179 }, + }, + }, + [928] = { + ["end"] = { + ["U"] = { 3515 }, + }, + ["lvl"] = 5, + ["min"] = 1, + ["pre"] = { 921 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3514 }, + }, + }, + [929] = { + ["end"] = { + ["U"] = { 3515 }, + }, + ["lvl"] = 5, + ["min"] = 1, + ["obj"] = { + ["I"] = { 5639 }, + ["IR"] = { 5619 }, + }, + ["pre"] = { 928 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3515 }, + }, + }, + [930] = { + ["end"] = { + ["U"] = { 2080 }, + }, + ["lvl"] = 10, + ["min"] = 4, + ["race"] = 589, + ["start"] = { + ["O"] = { 6751 }, + }, + }, + [931] = { + ["end"] = { + ["U"] = { 2080 }, + }, + ["lvl"] = 10, + ["min"] = 4, + ["race"] = 589, + ["start"] = { + ["O"] = { 6752 }, + }, + }, + [932] = { + ["end"] = { + ["U"] = { 3567 }, + }, + ["lvl"] = 7, + ["min"] = 4, + ["obj"] = { + ["I"] = { 5221 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3567 }, + }, + }, + [933] = { + ["end"] = { + ["U"] = { 3515 }, + }, + ["lvl"] = 9, + ["min"] = 1, + ["obj"] = { + ["I"] = { 5645 }, + ["IR"] = { 5621 }, + }, + ["pre"] = { 929 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3515 }, + }, + }, + [934] = { + ["end"] = { + ["U"] = { 3515 }, + }, + ["lvl"] = 11, + ["min"] = 1, + ["race"] = 589, + ["start"] = { + ["U"] = { 3515 }, + }, + }, + [935] = { + ["end"] = { + ["U"] = { 3516 }, + }, + ["lvl"] = 11, + ["min"] = 1, + ["pre"] = { 7383 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3515 }, + }, + }, + [936] = { + ["close"] = { 936, 3762, 3784 }, + ["end"] = { + ["U"] = { 5769 }, + }, + ["lvl"] = 50, + ["min"] = 47, + ["race"] = 434, + ["start"] = { + ["U"] = { 6929 }, + }, + }, + [937] = { + ["end"] = { + ["U"] = { 3519 }, + }, + ["lvl"] = 11, + ["min"] = 6, + ["obj"] = { + ["I"] = { 5204 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3519 }, + }, + }, + [938] = { + ["end"] = { + ["U"] = { 3519 }, + }, + ["lvl"] = 12, + ["min"] = 7, + ["race"] = 589, + ["start"] = { + ["U"] = { 3568 }, + }, + }, + [939] = { + ["end"] = { + ["U"] = { 9116 }, + }, + ["lvl"] = 54, + ["min"] = 49, + ["obj"] = { + ["I"] = { 11674 }, + }, + ["race"] = 589, + ["start"] = { + ["I"] = { 11668 }, + }, + }, + [940] = { + ["end"] = { + ["U"] = { 3516 }, + }, + ["lvl"] = 11, + ["min"] = 6, + ["pre"] = { 937 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3519 }, + }, + }, + [941] = { + ["end"] = { + ["O"] = { 7923 }, + }, + ["lvl"] = 12, + ["min"] = 9, + ["pre"] = { 927 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2080 }, + }, + }, + [942] = { + ["end"] = { + ["U"] = { 2911 }, + }, + ["lvl"] = 20, + ["min"] = 15, + ["pre"] = { 741 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2912 }, + }, + }, + [943] = { + ["end"] = { + ["U"] = { 2911 }, + }, + ["lvl"] = 24, + ["min"] = 15, + ["obj"] = { + ["I"] = { 5233, 5234 }, + }, + ["pre"] = { 942 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2911 }, + }, + }, + [944] = { + ["end"] = { + ["O"] = { 10076 }, + }, + ["lvl"] = 17, + ["min"] = 12, + ["obj"] = { + ["A"] = { 223 }, + }, + ["pre"] = { 948 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3616 }, + }, + }, + [945] = { + ["end"] = { + ["U"] = { 3585 }, + }, + ["lvl"] = 18, + ["min"] = 10, + ["race"] = 589, + ["start"] = { + ["U"] = { 3584 }, + }, + }, + [946] = "_", + [947] = { + ["end"] = { + ["U"] = { 3583 }, + }, + ["lvl"] = 17, + ["min"] = 12, + ["obj"] = { + ["I"] = { 5270, 5271 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3583 }, + }, + }, + [948] = { + ["end"] = { + ["U"] = { 3616 }, + }, + ["lvl"] = 17, + ["min"] = 12, + ["pre"] = { 947 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3583 }, + }, + }, + [949] = { + ["end"] = { + ["O"] = { 12666 }, + }, + ["lvl"] = 17, + ["min"] = 12, + ["pre"] = { 944 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 10076 }, + }, + }, + [950] = { + ["end"] = { + ["U"] = { 3616 }, + }, + ["lvl"] = 17, + ["min"] = 12, + ["pre"] = { 949 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 12666 }, + }, + }, + [951] = { + ["end"] = { + ["U"] = { 3616 }, + }, + ["lvl"] = 20, + ["min"] = 12, + ["obj"] = { + ["I"] = { 5273 }, + }, + ["pre"] = { 950 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3616 }, + }, + }, + [952] = { + ["end"] = { + ["U"] = { 3616 }, + }, + ["lvl"] = 11, + ["min"] = 6, + ["pre"] = { 940 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3516 }, + }, + }, + [953] = { + ["end"] = { + ["U"] = { 3639 }, + }, + ["lvl"] = 12, + ["min"] = 9, + ["obj"] = { + ["O"] = { 17188, 17189 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3639 }, + }, + }, + [954] = { + ["end"] = { + ["U"] = { 3650 }, + }, + ["lvl"] = 12, + ["min"] = 7, + ["obj"] = { + ["A"] = { 230 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3649 }, + }, + }, + [955] = { + ["end"] = { + ["U"] = { 3650 }, + }, + ["lvl"] = 12, + ["min"] = 7, + ["obj"] = { + ["I"] = { 5336 }, + }, + ["pre"] = { 954 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3650 }, + }, + }, + [956] = { + ["end"] = { + ["U"] = { 3650 }, + }, + ["lvl"] = 13, + ["min"] = 7, + ["obj"] = { + ["I"] = { 5338 }, + ["IR"] = { 5338 }, + }, + ["pre"] = { 955 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3650 }, + }, + }, + [957] = { + ["end"] = { + ["U"] = { 3650 }, + }, + ["lvl"] = 13, + ["min"] = 7, + ["obj"] = { + ["IR"] = { 5338 }, + ["O"] = { 16393 }, + }, + ["pre"] = { 956 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3650 }, + }, + }, + [958] = { + ["end"] = { + ["U"] = { 3649 }, + }, + ["lvl"] = 12, + ["min"] = 9, + ["obj"] = { + ["I"] = { 5360 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3649 }, + }, + }, + [960] = { + ["lvl"] = 1, + ["min"] = 1, + ["race"] = 589, + }, + [961] = { + ["end"] = { + ["U"] = { 3616 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 944 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3616 }, + }, + }, + [962] = { + ["end"] = { + ["U"] = { 3419 }, + }, + ["lvl"] = 18, + ["min"] = 14, + ["obj"] = { + ["I"] = { 5339 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3419 }, + }, + }, + [963] = { + ["end"] = { + ["U"] = { 3644 }, + }, + ["lvl"] = 16, + ["min"] = 11, + ["obj"] = { + ["I"] = { 5382 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3644 }, + }, + }, + [964] = { + ["end"] = { + ["U"] = { 11057 }, + }, + ["lvl"] = 57, + ["min"] = 55, + ["obj"] = { + ["I"] = { 14619 }, + }, + ["pre"] = { 838 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 11057 }, + }, + }, + [965] = { + ["end"] = { + ["U"] = { 3661 }, + }, + ["lvl"] = 18, + ["min"] = 13, + ["race"] = 589, + ["start"] = { + ["U"] = { 3657 }, + }, + }, + [966] = { + ["end"] = { + ["U"] = { 3661 }, + }, + ["lvl"] = 18, + ["min"] = 13, + ["obj"] = { + ["I"] = { 5348 }, + }, + ["pre"] = { 965 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3661 }, + }, + }, + [967] = { + ["end"] = { + ["U"] = { 3663 }, + }, + ["lvl"] = 18, + ["min"] = 13, + ["pre"] = { 966 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3661 }, + }, + }, + [968] = { + ["end"] = { + ["U"] = { 2786 }, + }, + ["lvl"] = 20, + ["min"] = 10, + ["race"] = 589, + ["start"] = { + ["I"] = { 5352 }, + }, + }, + [970] = { + ["end"] = { + ["U"] = { 3663 }, + }, + ["lvl"] = 21, + ["min"] = 13, + ["obj"] = { + ["I"] = { 5366 }, + }, + ["pre"] = { 967 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3663 }, + }, + }, + [971] = { + ["end"] = { + ["U"] = { 2786 }, + }, + ["lvl"] = 23, + ["min"] = 10, + ["obj"] = { + ["I"] = { 5359 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2786 }, + }, + }, + [972] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 5901 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["pre"] = { 220 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5901 }, + }, + }, + [973] = { + ["end"] = { + ["U"] = { 3663 }, + }, + ["lvl"] = 24, + ["min"] = 13, + ["obj"] = { + ["I"] = { 5533 }, + }, + ["pre"] = { 970 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3663 }, + }, + }, + [976] = { + ["end"] = { + ["U"] = { 3663 }, + }, + ["lvl"] = 24, + ["min"] = 19, + ["pre"] = { 973 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4484 }, + }, + }, + [978] = { + ["end"] = { + ["U"] = { 7916 }, + }, + ["lvl"] = 55, + ["min"] = 52, + ["obj"] = { + ["I"] = { 12383 }, + }, + ["pre"] = { 3661 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 7916 }, + }, + }, + [979] = { + ["end"] = { + ["U"] = { 10300 }, + }, + ["lvl"] = 57, + ["min"] = 52, + ["pre"] = { 978 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 7916 }, + }, + }, + [981] = { + ["end"] = { + ["U"] = { 3663 }, + }, + ["lvl"] = 31, + ["min"] = 13, + ["pre"] = { 1143 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3661 }, + }, + }, + [982] = { + ["end"] = { + ["U"] = { 6301 }, + }, + ["lvl"] = 17, + ["min"] = 13, + ["obj"] = { + ["I"] = { 12191, 12192 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6301 }, + }, + }, + [983] = { + ["end"] = { + ["O"] = { 17182 }, + }, + ["lvl"] = 10, + ["min"] = 7, + ["obj"] = { + ["I"] = { 5385 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3666 }, + }, + }, + [984] = { + ["end"] = { + ["U"] = { 3693 }, + }, + ["lvl"] = 14, + ["min"] = 10, + ["obj"] = { + ["A"] = { 231, 232, 235 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3693 }, + }, + }, + [985] = { + ["end"] = { + ["U"] = { 3693 }, + }, + ["lvl"] = 14, + ["min"] = 10, + ["obj"] = { + ["U"] = { 2167, 2324 }, + }, + ["pre"] = { 984 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3693 }, + }, + }, + [986] = { + ["end"] = { + ["U"] = { 3693 }, + }, + ["lvl"] = 20, + ["min"] = 10, + ["obj"] = { + ["I"] = { 5386 }, + }, + ["pre"] = { 985 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3693 }, + }, + }, + [987] = "_", + [990] = { + ["close"] = { 990 }, + ["end"] = { + ["U"] = { 3691 }, + }, + ["lvl"] = 19, + ["min"] = 15, + ["pre"] = { 994, 995 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3694 }, + }, + }, + [991] = { + ["end"] = { + ["U"] = { 3891 }, + }, + ["lvl"] = 19, + ["min"] = 18, + ["race"] = 589, + ["start"] = { + ["U"] = { 3691 }, + }, + }, + [993] = { + ["end"] = { + ["U"] = { 3692 }, + }, + ["lvl"] = 20, + ["min"] = 10, + ["pre"] = { 986 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3693 }, + }, + }, + [994] = { + ["close"] = { 994, 995 }, + ["end"] = { + ["U"] = { 3693 }, + }, + ["lvl"] = 22, + ["min"] = 10, + ["pre"] = { 993 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3692 }, + }, + }, + [995] = { + ["close"] = { 994, 995 }, + ["end"] = { + ["U"] = { 3693 }, + }, + ["lvl"] = 20, + ["min"] = 10, + ["pre"] = { 993 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3692 }, + }, + }, + [997] = { + ["end"] = { + ["U"] = { 2080 }, + }, + ["lvl"] = 5, + ["min"] = 4, + ["race"] = 589, + ["start"] = { + ["U"] = { 2083 }, + }, + }, + [999] = "_", + [1000] = { + ["close"] = { 1000, 1004, 1018 }, + ["end"] = { + ["U"] = { 5769 }, + }, + ["lvl"] = 55, + ["min"] = 54, + ["race"] = 434, + ["start"] = { + ["U"] = { 10881 }, + }, + }, + [1001] = { + ["end"] = { + ["O"] = { 17183 }, + }, + ["lvl"] = 12, + ["min"] = 7, + ["obj"] = { + ["I"] = { 5412 }, + }, + ["pre"] = { 983 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 17182 }, + }, + }, + [1002] = { + ["end"] = { + ["O"] = { 17184 }, + }, + ["lvl"] = 14, + ["min"] = 7, + ["obj"] = { + ["I"] = { 5413 }, + }, + ["pre"] = { 1001 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 17183 }, + }, + }, + [1003] = { + ["end"] = { + ["O"] = { 17185 }, + }, + ["lvl"] = 16, + ["min"] = 7, + ["obj"] = { + ["I"] = { 5414 }, + }, + ["pre"] = { 1002 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 17184 }, + }, + }, + [1004] = { + ["close"] = { 1000, 1004, 1018 }, + ["end"] = { + ["U"] = { 5769 }, + }, + ["lvl"] = 55, + ["min"] = 54, + ["race"] = 434, + ["start"] = { + ["U"] = { 10879 }, + }, + }, + [1005] = "_", + [1006] = "_", + [1007] = { + ["end"] = { + ["U"] = { 3846 }, + }, + ["lvl"] = 20, + ["min"] = 19, + ["obj"] = { + ["I"] = { 5424 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3846 }, + }, + }, + [1008] = { + ["end"] = { + ["U"] = { 3845 }, + }, + ["lvl"] = 19, + ["min"] = 14, + ["obj"] = { + ["I"] = { 5490 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3845 }, + }, + }, + [1009] = { + ["end"] = { + ["U"] = { 3846 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["obj"] = { + ["I"] = { 5445 }, + }, + ["pre"] = { 1007 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3846 }, + }, + }, + [1010] = { + ["end"] = { + ["U"] = { 3847 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["obj"] = { + ["I"] = { 5437 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3847 }, + }, + }, + [1011] = { + ["end"] = { + ["U"] = { 3848 }, + }, + ["lvl"] = 29, + ["min"] = 24, + ["obj"] = { + ["I"] = { 5440 }, + }, + ["pre"] = { 4581 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3848 }, + }, + }, + [1012] = { + ["end"] = { + ["U"] = { 3848 }, + }, + ["lvl"] = 32, + ["min"] = 24, + ["obj"] = { + ["U"] = { 3940, 3941, 3942 }, + }, + ["pre"] = { 1011 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3848 }, + }, + }, + [1013] = { + ["end"] = { + ["U"] = { 2934 }, + }, + ["lvl"] = 26, + ["min"] = 16, + ["obj"] = { + ["I"] = { 6283 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2934 }, + }, + }, + [1014] = { + ["end"] = { + ["U"] = { 1938 }, + }, + ["lvl"] = 27, + ["min"] = 18, + ["obj"] = { + ["I"] = { 5442 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1938 }, + }, + }, + [1015] = { + ["close"] = { 1015, 1019, 1047 }, + ["end"] = { + ["U"] = { 3516 }, + }, + ["lvl"] = 55, + ["min"] = 54, + ["race"] = 589, + ["start"] = { + ["U"] = { 2198 }, + }, + }, + [1016] = { + ["end"] = { + ["U"] = { 3885 }, + }, + ["lvl"] = 24, + ["min"] = 20, + ["obj"] = { + ["I"] = { 5455, 12220 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3885 }, + }, + }, + [1017] = { + ["end"] = { + ["U"] = { 3885 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["obj"] = { + ["I"] = { 5537 }, + }, + ["pre"] = { 1016 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3885 }, + }, + }, + [1018] = { + ["close"] = { 1000, 1004, 1018 }, + ["end"] = { + ["U"] = { 5769 }, + }, + ["lvl"] = 55, + ["min"] = 54, + ["race"] = 434, + ["start"] = { + ["U"] = { 10880 }, + }, + }, + [1019] = { + ["close"] = { 1015, 1019, 1047 }, + ["end"] = { + ["U"] = { 3516 }, + }, + ["lvl"] = 55, + ["min"] = 54, + ["race"] = 589, + ["start"] = { + ["U"] = { 10877 }, + }, + }, + [1020] = { + ["end"] = { + ["U"] = { 3894 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["pre"] = { 1010 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3847 }, + }, + }, + [1021] = { + ["end"] = { + ["U"] = { 3920 }, + }, + ["lvl"] = 32, + ["min"] = 26, + ["race"] = 589, + ["start"] = { + ["U"] = { 3901 }, + }, + }, + [1022] = { + ["end"] = { + ["U"] = { 3880 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["obj"] = { + ["O"] = { 19027 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3880 }, + }, + }, + [1023] = { + ["end"] = { + ["U"] = { 3691 }, + }, + ["lvl"] = 21, + ["min"] = 18, + ["obj"] = { + ["I"] = { 5463 }, + }, + ["pre"] = { 991 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3891 }, + }, + }, + [1024] = { + ["end"] = { + ["U"] = { 3916 }, + }, + ["lvl"] = 21, + ["min"] = 18, + ["pre"] = { 1023 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3691 }, + }, + }, + [1025] = { + ["end"] = { + ["U"] = { 3691 }, + }, + ["lvl"] = 24, + ["min"] = 18, + ["obj"] = { + ["U"] = { 3743, 3746, 3749, 3750 }, + }, + ["pre"] = { 1023 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3691 }, + }, + }, + [1026] = { + ["end"] = { + ["U"] = { 3916 }, + }, + ["lvl"] = 27, + ["min"] = 18, + ["obj"] = { + ["I"] = { 5464, 5475 }, + }, + ["pre"] = { 1024 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3916 }, + }, + }, + [1027] = { + ["end"] = { + ["U"] = { 3916 }, + }, + ["lvl"] = 28, + ["min"] = 18, + ["obj"] = { + ["I"] = { 5519 }, + }, + ["pre"] = { 1026 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3916 }, + }, + }, + [1028] = { + ["end"] = { + ["O"] = { 19024 }, + }, + ["lvl"] = 28, + ["min"] = 18, + ["pre"] = { 1027 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3916 }, + }, + }, + [1029] = { + ["end"] = { + ["U"] = { 3691 }, + }, + ["lvl"] = 28, + ["min"] = 18, + ["pre"] = { 1055 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3916 }, + }, + }, + [1030] = { + ["end"] = { + ["U"] = { 3897 }, + }, + ["lvl"] = 28, + ["min"] = 18, + ["pre"] = { 1029 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3691 }, + }, + }, + [1031] = { + ["end"] = { + ["U"] = { 3901 }, + }, + ["lvl"] = 32, + ["min"] = 26, + ["obj"] = { + ["I"] = { 5461 }, + }, + ["pre"] = { 1021 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3920 }, + }, + }, + [1032] = { + ["end"] = { + ["U"] = { 3901 }, + }, + ["lvl"] = 32, + ["min"] = 26, + ["obj"] = { + ["I"] = { 5481 }, + }, + ["pre"] = { 1031 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3901 }, + }, + }, + [1033] = { + ["end"] = { + ["U"] = { 3894 }, + }, + ["lvl"] = 22, + ["min"] = 20, + ["obj"] = { + ["I"] = { 5493 }, + }, + ["pre"] = { 1020 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3894 }, + }, + }, + [1034] = { + ["end"] = { + ["U"] = { 3894 }, + }, + ["lvl"] = 23, + ["min"] = 20, + ["obj"] = { + ["I"] = { 5494 }, + }, + ["pre"] = { 1033 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3894 }, + }, + }, + [1035] = { + ["end"] = { + ["U"] = { 3894 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["obj"] = { + ["I"] = { 5508 }, + }, + ["pre"] = { 1034 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3894 }, + }, + }, + [1037] = { + ["end"] = { + ["U"] = { 8026 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["pre"] = { 1022 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3880 }, + }, + }, + [1038] = { + ["end"] = { + ["U"] = { 8026 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["obj"] = { + ["I"] = { 5520 }, + }, + ["pre"] = { 1037 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 8026 }, + }, + }, + [1039] = { + ["end"] = { + ["U"] = { 3453 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["pre"] = { 1038 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 8026 }, + }, + }, + [1040] = { + ["end"] = { + ["U"] = { 3945 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["pre"] = { 1039 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3453 }, + }, + }, + [1041] = { + ["end"] = { + ["U"] = { 267 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["pre"] = { 1040 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3945 }, + }, + }, + [1042] = { + ["end"] = { + ["U"] = { 661 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["pre"] = { 1041 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 267 }, + }, + }, + [1043] = { + ["end"] = { + ["U"] = { 661 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["obj"] = { + ["O"] = { 19030 }, + }, + ["pre"] = { 1042 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 661 }, + }, + }, + [1044] = { + ["end"] = { + ["U"] = { 8026 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["pre"] = { 1043 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 661 }, + }, + }, + [1045] = { + ["end"] = { + ["U"] = { 3897 }, + }, + ["lvl"] = 30, + ["min"] = 18, + ["obj"] = { + ["I"] = { 5388 }, + ["U"] = { 3696, 3932 }, + }, + ["pre"] = { 1030 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3897 }, + }, + }, + [1046] = { + ["end"] = { + ["U"] = { 3691 }, + }, + ["lvl"] = 30, + ["min"] = 18, + ["obj"] = { + ["I"] = { 5462 }, + }, + ["pre"] = { 1045 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3897 }, + }, + }, + [1047] = { + ["close"] = { 1015, 1019, 1047 }, + ["end"] = { + ["U"] = { 3516 }, + }, + ["lvl"] = 55, + ["min"] = 54, + ["race"] = 589, + ["start"] = { + ["U"] = { 10878 }, + }, + }, + [1048] = { + ["end"] = { + ["U"] = { 2425 }, + }, + ["lvl"] = 42, + ["min"] = 33, + ["obj"] = { + ["U"] = { 3974, 3975, 3976, 3977 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2425 }, + }, + }, + [1049] = { + ["end"] = { + ["U"] = { 3978 }, + }, + ["lvl"] = 38, + ["min"] = 28, + ["obj"] = { + ["I"] = { 5535 }, + }, + ["race"] = 418, + ["start"] = { + ["U"] = { 3978 }, + }, + }, + [1050] = { + ["end"] = { + ["U"] = { 3979 }, + }, + ["lvl"] = 38, + ["min"] = 28, + ["obj"] = { + ["I"] = { 5536 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3979 }, + }, + }, + [1051] = { + ["end"] = { + ["U"] = { 3982 }, + }, + ["lvl"] = 33, + ["min"] = 25, + ["obj"] = { + ["I"] = { 5538 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3981 }, + }, + }, + [1052] = { + ["end"] = { + ["U"] = { 3980 }, + }, + ["lvl"] = 40, + ["min"] = 34, + ["pre"] = { 261 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1182 }, + }, + }, + [1053] = { + ["end"] = { + ["U"] = { 3980 }, + }, + ["lvl"] = 40, + ["min"] = 34, + ["obj"] = { + ["U"] = { 3974, 3975, 3976, 3977 }, + }, + ["pre"] = { 1052 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3980 }, + }, + }, + [1054] = { + ["end"] = { + ["U"] = { 3691 }, + }, + ["lvl"] = 25, + ["min"] = 18, + ["obj"] = { + ["I"] = { 5544 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3691 }, + }, + }, + [1055] = { + ["end"] = { + ["U"] = { 3916 }, + }, + ["lvl"] = 28, + ["min"] = 18, + ["pre"] = { 1028 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 19024 }, + }, + }, + [1056] = { + ["end"] = { + ["U"] = { 3994 }, + }, + ["lvl"] = 18, + ["min"] = 18, + ["race"] = 589, + ["start"] = { + ["U"] = { 3996 }, + }, + }, + [1057] = { + ["end"] = { + ["U"] = { 3994 }, + }, + ["lvl"] = 27, + ["min"] = 20, + ["obj"] = { + ["U"] = { 4022, 4023, 4024, 4025 }, + }, + ["pre"] = { 1056 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3994 }, + }, + }, + [1058] = { + ["end"] = { + ["U"] = { 3995 }, + }, + ["lvl"] = 26, + ["min"] = 20, + ["obj"] = { + ["I"] = { 5582, 5583, 5584, 5585 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3995 }, + }, + }, + [1059] = { + ["end"] = { + ["U"] = { 4048 }, + }, + ["lvl"] = 27, + ["min"] = 20, + ["pre"] = { 1057 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3994 }, + }, + }, + [1060] = { + ["end"] = { + ["U"] = { 3995 }, + }, + ["lvl"] = 20, + ["min"] = 15, + ["pre"] = { 876 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3449 }, + }, + }, + [1061] = { + ["end"] = { + ["U"] = { 4049 }, + }, + ["lvl"] = 17, + ["min"] = 13, + ["race"] = 434, + ["start"] = { + ["U"] = { 4047 }, + }, + }, + [1062] = { + ["end"] = { + ["U"] = { 4049 }, + }, + ["lvl"] = 19, + ["min"] = 13, + ["obj"] = { + ["U"] = { 3989 }, + }, + ["pre"] = { 1061 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4049 }, + }, + }, + [1063] = { + ["end"] = { + ["U"] = { 4046 }, + }, + ["lvl"] = 18, + ["min"] = 13, + ["pre"] = { 1062 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4049 }, + }, + }, + [1064] = { + ["end"] = { + ["U"] = { 3419 }, + }, + ["lvl"] = 18, + ["min"] = 13, + ["pre"] = { 1063 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4046 }, + }, + }, + [1065] = { + ["end"] = { + ["U"] = { 2216 }, + }, + ["lvl"] = 18, + ["min"] = 13, + ["pre"] = { 1064 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3419 }, + }, + }, + [1066] = { + ["end"] = { + ["U"] = { 2216 }, + }, + ["lvl"] = 23, + ["min"] = 13, + ["obj"] = { + ["I"] = { 5620 }, + }, + ["pre"] = { 1065 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2216 }, + }, + }, + [1067] = { + ["end"] = { + ["U"] = { 3419 }, + }, + ["lvl"] = 23, + ["min"] = 13, + ["pre"] = { 1066 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2216 }, + }, + }, + [1068] = { + ["end"] = { + ["U"] = { 4049 }, + }, + ["lvl"] = 23, + ["min"] = 13, + ["obj"] = { + ["U"] = { 4073, 4074 }, + }, + ["pre"] = { 1062 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4049 }, + }, + }, + [1070] = { + ["end"] = { + ["U"] = { 4080 }, + }, + ["lvl"] = 21, + ["min"] = 17, + ["race"] = 589, + ["start"] = { + ["U"] = { 4079 }, + }, + }, + [1071] = { + ["end"] = { + ["U"] = { 4077 }, + }, + ["lvl"] = 21, + ["min"] = 17, + ["obj"] = { + ["U"] = { 3989, 3991 }, + }, + ["pre"] = { 1085 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4077 }, + }, + }, + [1072] = { + ["end"] = { + ["U"] = { 4081 }, + }, + ["lvl"] = 21, + ["min"] = 17, + ["pre"] = { 1071 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4077 }, + }, + }, + [1073] = { + ["end"] = { + ["U"] = { 4081 }, + }, + ["lvl"] = 21, + ["min"] = 17, + ["obj"] = { + ["I"] = { 2455, 2458 }, + }, + ["pre"] = { 1072 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4081 }, + }, + }, + [1074] = { + ["end"] = { + ["U"] = { 4077 }, + }, + ["lvl"] = 21, + ["min"] = 17, + ["pre"] = { 1073 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4081 }, + }, + }, + [1075] = { + ["end"] = { + ["U"] = { 4078 }, + }, + ["lvl"] = 21, + ["min"] = 17, + ["pre"] = { 1071 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4077 }, + }, + }, + [1076] = { + ["end"] = { + ["U"] = { 4078 }, + }, + ["lvl"] = 21, + ["min"] = 17, + ["obj"] = { + ["I"] = { 5669 }, + }, + ["pre"] = { 1075 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4078 }, + }, + }, + [1077] = { + ["end"] = { + ["U"] = { 4077 }, + }, + ["lvl"] = 21, + ["min"] = 17, + ["pre"] = { 1076 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4078 }, + }, + }, + [1078] = { + ["end"] = { + ["U"] = { 4078 }, + }, + ["lvl"] = 26, + ["min"] = 17, + ["obj"] = { + ["I"] = { 5675 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4078 }, + }, + }, + [1079] = { + ["end"] = { + ["U"] = { 4077 }, + }, + ["lvl"] = 22, + ["min"] = 17, + ["obj"] = { + ["I"] = { 5692, 5693, 5694, 5695, 5718 }, + ["IR"] = { 5692, 5693, 5694, 5695 }, + }, + ["pre"] = { 1074, 1077 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4077 }, + }, + }, + [1080] = { + ["end"] = { + ["U"] = { 4077 }, + }, + ["lvl"] = 22, + ["min"] = 17, + ["obj"] = { + ["I"] = { 5717 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4077 }, + }, + }, + [1081] = { + ["end"] = { + ["U"] = { 7999 }, + }, + ["lvl"] = 28, + ["min"] = 17, + ["pre"] = { 1082 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4079 }, + }, + }, + [1082] = { + ["end"] = { + ["U"] = { 4079 }, + }, + ["lvl"] = 22, + ["min"] = 17, + ["pre"] = { 1083, 1084 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4080 }, + }, + }, + [1083] = { + ["end"] = { + ["U"] = { 4080 }, + }, + ["lvl"] = 26, + ["min"] = 20, + ["obj"] = { + ["I"] = { 5659 }, + }, + ["pre"] = { 1091 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4080 }, + }, + }, + [1084] = { + ["end"] = { + ["U"] = { 4080 }, + }, + ["lvl"] = 28, + ["min"] = 22, + ["obj"] = { + ["I"] = { 5664 }, + }, + ["pre"] = { 1091 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4080 }, + }, + }, + [1085] = { + ["end"] = { + ["U"] = { 4077 }, + }, + ["lvl"] = 21, + ["min"] = 17, + ["pre"] = { 1070 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4080 }, + }, + }, + [1086] = { + ["end"] = { + ["U"] = { 3419 }, + }, + ["lvl"] = 23, + ["min"] = 13, + ["obj"] = { + ["IR"] = { 5638 }, + }, + ["pre"] = { 1067 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3419 }, + }, + }, + [1087] = { + ["end"] = { + ["U"] = { 4198 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["obj"] = { + ["U"] = { 4051, 4053, 4057 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4198 }, + }, + }, + [1088] = { + ["end"] = { + ["U"] = { 4198 }, + }, + ["lvl"] = 29, + ["min"] = 20, + ["obj"] = { + ["I"] = { 5686 }, + }, + ["pre"] = { 1087 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4198 }, + }, + }, + [1089] = { + ["end"] = { + ["O"] = { 19599 }, + }, + ["lvl"] = 29, + ["min"] = 20, + ["obj"] = { + ["I"] = { 5687, 5689, 5690, 5691 }, + }, + ["pre"] = { 1088 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4198 }, + }, + }, + [1091] = { + ["end"] = { + ["U"] = { 4080 }, + }, + ["lvl"] = 22, + ["min"] = 17, + ["pre"] = { 1079, 1080 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4077 }, + }, + }, + [1097] = { + ["end"] = { + ["U"] = { 1416 }, + }, + ["lvl"] = 15, + ["min"] = 9, + ["race"] = 589, + ["start"] = { + ["U"] = { 514 }, + }, + }, + [1098] = { + ["end"] = { + ["U"] = { 4444 }, + }, + ["lvl"] = 25, + ["min"] = 18, + ["race"] = 434, + ["start"] = { + ["U"] = { 1952 }, + }, + }, + [1099] = "_", + [1100] = { + ["end"] = { + ["U"] = { 4048 }, + }, + ["lvl"] = 34, + ["min"] = 29, + ["race"] = 589, + ["start"] = { + ["I"] = { 5791 }, + }, + }, + [1101] = { + ["end"] = { + ["U"] = { 4048 }, + }, + ["lvl"] = 34, + ["min"] = 29, + ["obj"] = { + ["I"] = { 5792 }, + }, + ["pre"] = { 1100 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4048 }, + }, + }, + [1102] = { + ["end"] = { + ["U"] = { 4451 }, + }, + ["lvl"] = 34, + ["min"] = 29, + ["obj"] = { + ["I"] = { 5793 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4451 }, + }, + }, + [1103] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 7007 }, + }, + ["lvl"] = 23, + ["min"] = 20, + ["obj"] = { + ["I"] = { 6637 }, + ["IR"] = { 6637 }, + }, + ["pre"] = { 100 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 7007 }, + }, + }, + [1109] = { + ["end"] = { + ["U"] = { 2055 }, + }, + ["lvl"] = 33, + ["min"] = 30, + ["obj"] = { + ["I"] = { 5801 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2055 }, + }, + }, + [1112] = { + ["end"] = { + ["U"] = { 4452 }, + }, + ["lvl"] = 36, + ["min"] = 30, + ["pre"] = { 1111 }, + ["start"] = { + ["U"] = { 3453 }, + }, + }, + [1113] = { + ["end"] = { + ["U"] = { 2055 }, + }, + ["lvl"] = 33, + ["min"] = 30, + ["obj"] = { + ["I"] = { 5805 }, + }, + ["pre"] = { 1109 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2055 }, + }, + }, + [1123] = { + ["end"] = { + ["U"] = { 11801 }, + }, + ["lvl"] = 55, + ["min"] = 54, + ["pre"] = { 1000, 1004, 1018 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5769 }, + }, + }, + [1130] = { + ["end"] = { + ["U"] = { 3441 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["race"] = 434, + ["start"] = { + ["U"] = { 3387 }, + }, + }, + [1131] = { + ["end"] = { + ["U"] = { 3441 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["obj"] = { + ["I"] = { 5837 }, + }, + ["pre"] = { 1130 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3441 }, + }, + }, + [1132] = { + ["end"] = { + ["U"] = { 4456 }, + }, + ["lvl"] = 20, + ["min"] = 18, + ["race"] = 589, + ["start"] = { + ["U"] = { 4455 }, + }, + }, + [1133] = { + ["end"] = { + ["U"] = { 3845 }, + }, + ["lvl"] = 20, + ["min"] = 18, + ["pre"] = { 1132 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4456 }, + }, + }, + [1134] = { + ["end"] = { + ["U"] = { 3845 }, + }, + ["lvl"] = 21, + ["min"] = 18, + ["obj"] = { + ["I"] = { 5808 }, + }, + ["pre"] = { 1008 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3845 }, + }, + }, + [1135] = { + ["end"] = { + ["U"] = { 4456 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["obj"] = { + ["I"] = { 5809 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4456 }, + }, + }, + [1136] = { + ["end"] = { + ["U"] = { 3441 }, + }, + ["lvl"] = 37, + ["min"] = 26, + ["obj"] = { + ["I"] = { 5810, 5811 }, + ["IR"] = { 5810 }, + }, + ["pre"] = { 1131 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3441 }, + }, + }, + [1138] = { + ["end"] = { + ["U"] = { 10216 }, + }, + ["lvl"] = 17, + ["min"] = 15, + ["obj"] = { + ["I"] = { 12237 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 10216 }, + }, + }, + [1139] = { + ["end"] = { + ["U"] = { 2918 }, + }, + ["lvl"] = 45, + ["min"] = 35, + ["obj"] = { + ["I"] = { 5824 }, + }, + ["pre"] = { 762 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2918 }, + }, + }, + [1140] = { + ["end"] = { + ["U"] = { 3663 }, + }, + ["lvl"] = 28, + ["min"] = 13, + ["obj"] = { + ["O"] = { 19901, 20352 }, + }, + ["pre"] = { 973 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3663 }, + }, + }, + [1141] = { + ["end"] = { + ["U"] = { 10216 }, + }, + ["lvl"] = 14, + ["min"] = 10, + ["obj"] = { + ["I"] = { 12238 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 10216 }, + }, + }, + [1142] = { + ["end"] = { + ["U"] = { 4521 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["obj"] = { + ["I"] = { 5825 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4510 }, + }, + }, + [1143] = { + ["end"] = { + ["U"] = { 3661 }, + }, + ["lvl"] = 31, + ["min"] = 13, + ["obj"] = { + ["I"] = { 5383 }, + }, + ["pre"] = { 1167 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3661 }, + }, + }, + [1145] = { + ["end"] = { + ["U"] = { 4485 }, + }, + ["lvl"] = 33, + ["min"] = 29, + ["race"] = 434, + ["start"] = { + ["U"] = { 3428 }, + }, + }, + [1146] = { + ["end"] = { + ["U"] = { 4483 }, + }, + ["lvl"] = 33, + ["min"] = 29, + ["pre"] = { 1145 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4485 }, + }, + }, + [1147] = { + ["end"] = { + ["U"] = { 4483 }, + }, + ["lvl"] = 35, + ["min"] = 29, + ["obj"] = { + ["U"] = { 4130, 4131, 4133 }, + }, + ["pre"] = { 1146 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4483 }, + }, + }, + [1148] = { + ["end"] = { + ["U"] = { 3428 }, + }, + ["lvl"] = 35, + ["min"] = 28, + ["obj"] = { + ["I"] = { 5853, 5854, 5855 }, + }, + ["race"] = 434, + ["start"] = { + ["I"] = { 5877 }, + }, + }, + [1149] = { + ["end"] = { + ["U"] = { 2986 }, + }, + ["lvl"] = 26, + ["min"] = 25, + ["obj"] = { + ["A"] = { 246 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2986 }, + }, + }, + [1150] = { + ["end"] = { + ["U"] = { 2986 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["obj"] = { + ["I"] = { 5843, 5845 }, + }, + ["pre"] = { 1149 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2986 }, + }, + }, + [1151] = { + ["end"] = { + ["U"] = { 2986 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["obj"] = { + ["I"] = { 5844 }, + }, + ["pre"] = { 1150 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2986 }, + }, + }, + [1152] = { + ["end"] = { + ["U"] = { 4489 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["pre"] = { 1151 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2986 }, + }, + }, + [1153] = { + ["end"] = { + ["U"] = { 3433 }, + }, + ["lvl"] = 29, + ["min"] = 25, + ["obj"] = { + ["I"] = { 5842 }, + }, + ["pre"] = { 893 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3433 }, + }, + }, + [1154] = { + ["end"] = { + ["U"] = { 4489 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["obj"] = { + ["I"] = { 5860 }, + }, + ["pre"] = { 1152 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4489 }, + }, + }, + [1155] = "_", + [1156] = "_", + [1157] = { + ["lvl"] = 60, + ["min"] = 30, + }, + [1158] = { + ["lvl"] = 60, + ["min"] = 30, + }, + [1159] = { + ["end"] = { + ["U"] = { 4488 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["pre"] = { 6627 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4489 }, + }, + }, + [1160] = { + ["end"] = { + ["U"] = { 4488 }, + }, + ["lvl"] = 36, + ["min"] = 25, + ["obj"] = { + ["I"] = { 5861 }, + }, + ["pre"] = { 1159 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4488 }, + }, + }, + [1161] = "_", + [1162] = "_", + [1163] = "_", + [1164] = { + ["end"] = { + ["U"] = { 4486 }, + }, + ["lvl"] = 36, + ["min"] = 27, + ["obj"] = { + ["I"] = { 5830, 5831, 5832 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4486 }, + }, + }, + [1166] = { + ["end"] = { + ["U"] = { 4500 }, + }, + ["lvl"] = 43, + ["min"] = 38, + ["obj"] = { + ["I"] = { 5834, 5835, 5836 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4500 }, + }, + }, + [1167] = { + ["end"] = { + ["U"] = { 3661 }, + }, + ["lvl"] = 28, + ["min"] = 13, + ["pre"] = { 1140 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3663 }, + }, + }, + [1168] = { + ["end"] = { + ["U"] = { 4502 }, + }, + ["lvl"] = 43, + ["min"] = 38, + ["obj"] = { + ["U"] = { 4328, 4329, 4331 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4502 }, + }, + }, + [1169] = { + ["end"] = { + ["U"] = { 4501 }, + }, + ["lvl"] = 43, + ["min"] = 38, + ["obj"] = { + ["I"] = { 5840, 5841 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4501 }, + }, + }, + [1170] = { + ["end"] = { + ["U"] = { 4500 }, + }, + ["lvl"] = 43, + ["min"] = 38, + ["pre"] = { 1169 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4501 }, + }, + }, + [1171] = { + ["end"] = { + ["U"] = { 4501 }, + }, + ["lvl"] = 43, + ["min"] = 38, + ["pre"] = { 1170 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4500 }, + }, + }, + [1172] = { + ["end"] = { + ["U"] = { 4501 }, + }, + ["lvl"] = 45, + ["min"] = 38, + ["obj"] = { + ["O"] = { 20359 }, + }, + ["pre"] = { 1171 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4501 }, + }, + }, + [1173] = { + ["end"] = { + ["U"] = { 4501 }, + }, + ["lvl"] = 45, + ["min"] = 38, + ["pre"] = { 1172 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4500 }, + }, + }, + [1174] = "_", + [1179] = { + ["end"] = { + ["U"] = { 4453 }, + }, + ["lvl"] = 30, + ["min"] = 28, + ["race"] = 589, + ["start"] = { + ["U"] = { 2092 }, + }, + }, + [1184] = { + ["end"] = { + ["U"] = { 4485 }, + }, + ["lvl"] = 35, + ["min"] = 28, + ["pre"] = { 1148 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3428 }, + }, + }, + [1191] = { + ["end"] = { + ["U"] = { 4709 }, + }, + ["lvl"] = 41, + ["min"] = 29, + ["pre"] = { 1190 }, + ["start"] = { + ["U"] = { 4709 }, + }, + }, + [1195] = { + ["end"] = { + ["U"] = { 4721 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["obj"] = { + ["I"] = { 5867, 5868 }, + ["IR"] = { 5867 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4721 }, + }, + }, + [1196] = { + ["end"] = { + ["U"] = { 4722 }, + }, + ["lvl"] = 29, + ["min"] = 20, + ["pre"] = { 1195 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4721 }, + }, + }, + [1197] = { + ["end"] = { + ["U"] = { 4722 }, + }, + ["lvl"] = 29, + ["min"] = 20, + ["obj"] = { + ["I"] = { 5869 }, + }, + ["pre"] = { 1196 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4722 }, + }, + }, + [1198] = { + ["end"] = { + ["U"] = { 4787 }, + }, + ["lvl"] = 24, + ["min"] = 18, + ["race"] = 589, + ["start"] = { + ["U"] = { 4786 }, + }, + }, + [1199] = { + ["end"] = { + ["U"] = { 4784 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["obj"] = { + ["I"] = { 5879 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4784 }, + }, + }, + [1200] = { + ["end"] = { + ["U"] = { 4783 }, + }, + ["lvl"] = 27, + ["min"] = 18, + ["obj"] = { + ["I"] = { 5881 }, + }, + ["pre"] = { 1198 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4787 }, + }, + }, + [1201] = { + ["end"] = { + ["U"] = { 4791 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["U"] = { 4834 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4791 }, + }, + }, + [1202] = { + ["end"] = { + ["U"] = { 4791 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["I"] = { 5882 }, + }, + ["pre"] = { 1201 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4791 }, + }, + }, + [1204] = { + ["end"] = { + ["U"] = { 4794 }, + }, + ["lvl"] = 38, + ["min"] = 33, + ["obj"] = { + ["I"] = { 5883 }, + }, + ["pre"] = { 1260 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4794 }, + }, + }, + [1205] = { + ["end"] = { + ["U"] = { 3441 }, + }, + ["lvl"] = 45, + ["min"] = 35, + ["obj"] = { + ["I"] = { 5945 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3441 }, + }, + }, + [1219] = { + ["end"] = { + ["U"] = { 4947 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["race"] = 589, + ["start"] = { + ["O"] = { 20985 }, + }, + }, + [1220] = { + ["end"] = { + ["U"] = { 4944 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["pre"] = { 1219 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4947 }, + }, + }, + [1222] = { + ["end"] = { + ["U"] = { 4794 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["race"] = 589, + ["start"] = { + ["U"] = { 4880 }, + }, + }, + [1238] = { + ["end"] = { + ["U"] = { 4791 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["race"] = 434, + ["start"] = { + ["O"] = { 20985 }, + }, + }, + [1239] = { + ["end"] = { + ["U"] = { 4791 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["pre"] = { 1238 }, + ["race"] = 434, + ["start"] = { + ["O"] = { 20985 }, + }, + }, + [1240] = { + ["end"] = { + ["U"] = { 2519 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["pre"] = { 1239 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4791 }, + }, + }, + [1241] = { + ["end"] = { + ["U"] = { 4959 }, + }, + ["lvl"] = 28, + ["min"] = 28, + ["pre"] = { 1274 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4960 }, + }, + }, + [1242] = { + ["end"] = { + ["U"] = { 482 }, + }, + ["lvl"] = 28, + ["min"] = 28, + ["pre"] = { 1241 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4959 }, + }, + }, + [1243] = { + ["end"] = { + ["U"] = { 840 }, + }, + ["lvl"] = 28, + ["min"] = 28, + ["pre"] = { 1242 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 482 }, + }, + }, + [1244] = { + ["end"] = { + ["U"] = { 840 }, + }, + ["lvl"] = 30, + ["min"] = 28, + ["obj"] = { + ["I"] = { 5947 }, + }, + ["pre"] = { 1243 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 840 }, + }, + }, + [1245] = { + ["end"] = { + ["U"] = { 482 }, + }, + ["lvl"] = 30, + ["min"] = 28, + ["pre"] = { 1244 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 840 }, + }, + }, + [1246] = { + ["end"] = { + ["U"] = { 4961 }, + }, + ["lvl"] = 31, + ["min"] = 28, + ["pre"] = { 1245 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 482 }, + }, + }, + [1247] = { + ["end"] = { + ["U"] = { 482 }, + }, + ["lvl"] = 31, + ["min"] = 28, + ["pre"] = { 1447 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4961 }, + }, + }, + [1248] = { + ["end"] = { + ["U"] = { 4963 }, + }, + ["lvl"] = 33, + ["min"] = 28, + ["pre"] = { 1247 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 482 }, + }, + }, + [1249] = { + ["end"] = { + ["U"] = { 4963 }, + }, + ["lvl"] = 33, + ["min"] = 28, + ["pre"] = { 1248 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4963 }, + }, + }, + [1250] = { + ["end"] = { + ["U"] = { 4963 }, + }, + ["lvl"] = 33, + ["min"] = 28, + ["pre"] = { 1249 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4962 }, + }, + }, + [1251] = { + ["end"] = { + ["U"] = { 4926 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["race"] = 434, + ["start"] = { + ["O"] = { 20992 }, + }, + }, + [1252] = { + ["end"] = { + ["U"] = { 4944 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["race"] = 589, + ["start"] = { + ["O"] = { 21042 }, + }, + }, + [1253] = { + ["end"] = { + ["U"] = { 4944 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["race"] = 589, + ["start"] = { + ["O"] = { 20992 }, + }, + }, + [1258] = { + ["end"] = { + ["U"] = { 4794 }, + }, + ["lvl"] = 40, + ["min"] = 33, + ["obj"] = { + ["I"] = { 5938 }, + }, + ["pre"] = { 1204 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4794 }, + }, + }, + [1259] = { + ["end"] = { + ["U"] = { 4948 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["pre"] = { 1252 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4944 }, + }, + }, + [1260] = { + ["end"] = { + ["U"] = { 4794 }, + }, + ["lvl"] = 38, + ["min"] = 33, + ["race"] = 589, + ["start"] = { + ["U"] = { 1141 }, + }, + }, + [1261] = { + ["end"] = { + ["U"] = { 4791 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["obj"] = { + ["I"] = { 5942 }, + }, + ["pre"] = { 1240 }, + ["race"] = 434, + ["start"] = { + ["O"] = { 2076 }, + }, + }, + [1262] = { + ["end"] = { + ["U"] = { 4047 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["pre"] = { 1261 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4791 }, + }, + }, + [1263] = "_", + [1264] = { + ["end"] = { + ["U"] = { 4964 }, + }, + ["lvl"] = 33, + ["min"] = 28, + ["pre"] = { 1250 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4963 }, + }, + }, + [1265] = { + ["end"] = { + ["U"] = { 4967 }, + }, + ["lvl"] = 35, + ["min"] = 28, + ["pre"] = { 1264 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4964 }, + }, + }, + [1266] = { + ["end"] = { + ["U"] = { 4966 }, + }, + ["lvl"] = 36, + ["min"] = 28, + ["pre"] = { 1265 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4967 }, + }, + }, + [1267] = { + ["end"] = { + ["U"] = { 4968 }, + }, + ["lvl"] = 38, + ["min"] = 28, + ["pre"] = { 1324 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4968 }, + }, + }, + [1268] = { + ["end"] = { + ["U"] = { 4926 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["race"] = 434, + ["start"] = { + ["O"] = { 21015, 21016 }, + }, + }, + [1269] = { + ["end"] = { + ["U"] = { 4926 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["race"] = 434, + ["start"] = { + ["O"] = { 21042 }, + }, + }, + [1270] = { + ["end"] = { + ["U"] = { 3446 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["race"] = 434, + ["start"] = { + ["U"] = { 4880 }, + }, + }, + [1271] = { + ["end"] = { + ["U"] = { 1141 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["pre"] = { 1222, 1258 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1141 }, + }, + }, + [1273] = { + ["end"] = { + ["U"] = { 4926 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["pre"] = { 1269 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4983 }, + }, + }, + [1274] = { + ["end"] = { + ["U"] = { 4960 }, + }, + ["lvl"] = 28, + ["min"] = 28, + ["race"] = 589, + ["start"] = { + ["U"] = { 4982 }, + }, + }, + [1275] = { + ["end"] = { + ["U"] = { 8997 }, + }, + ["lvl"] = 24, + ["min"] = 18, + ["obj"] = { + ["I"] = { 5952 }, + }, + ["pre"] = { 3765 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 8997 }, + }, + }, + [1276] = { + ["end"] = { + ["U"] = { 4943 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["pre"] = { 1323 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4926 }, + }, + }, + [1277] = "_", + [1278] = "_", + [1279] = "_", + [1280] = "_", + [1281] = "_", + [1282] = { + ["close"] = { 1282, 1302 }, + ["end"] = { + ["U"] = { 4944 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["race"] = 589, + ["start"] = { + ["U"] = { 4921 }, + }, + }, + [1283] = "_", + [1284] = { + ["end"] = { + ["U"] = { 4944 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["race"] = 589, + ["start"] = { + ["O"] = { 21015, 21016 }, + }, + }, + [1285] = { + ["end"] = { + ["U"] = { 4944 }, + }, + ["lvl"] = 38, + ["min"] = 30, + ["pre"] = { 1259 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4948 }, + }, + }, + [1286] = { + ["end"] = { + ["U"] = { 5089 }, + }, + ["lvl"] = 38, + ["min"] = 30, + ["pre"] = { 1285 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4944 }, + }, + }, + [1287] = { + ["end"] = { + ["U"] = { 4944 }, + }, + ["lvl"] = 38, + ["min"] = 30, + ["pre"] = { 1286 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5089 }, + }, + }, + [1288] = { + ["end"] = { + ["U"] = { 4968 }, + }, + ["lvl"] = 38, + ["min"] = 30, + ["race"] = 589, + ["start"] = { + ["I"] = { 6075 }, + ["U"] = { 4944 }, + }, + }, + [1289] = { + ["lvl"] = 38, + ["min"] = 30, + ["pre"] = { 1288 }, + ["race"] = 589, + }, + [1293] = "_", + [1294] = "_", + [1295] = "_", + [1296] = "_", + [1297] = "_", + [1299] = "_", + [1300] = "_", + [1301] = { + ["end"] = { + ["U"] = { 5082 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["race"] = 589, + ["start"] = { + ["U"] = { 5081 }, + }, + }, + [1302] = { + ["close"] = { 1282, 1302 }, + ["end"] = { + ["U"] = { 5083 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["pre"] = { 1301 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5082 }, + }, + }, + [1318] = { + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 18336 }, + }, + }, + [1319] = { + ["end"] = { + ["U"] = { 4941 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["pre"] = { 1253 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4944 }, + }, + }, + [1320] = { + ["end"] = { + ["U"] = { 4944 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["pre"] = { 1319 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4941 }, + }, + }, + [1321] = { + ["end"] = { + ["U"] = { 5087 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["pre"] = { 1251 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4926 }, + }, + }, + [1322] = { + ["end"] = { + ["U"] = { 5087 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["obj"] = { + ["I"] = { 5959 }, + }, + ["pre"] = { 1321 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5087 }, + }, + }, + [1323] = { + ["end"] = { + ["U"] = { 4926 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["pre"] = { 1322 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5087 }, + }, + }, + [1324] = { + ["end"] = { + ["U"] = { 4967 }, + }, + ["lvl"] = 38, + ["min"] = 28, + ["pre"] = { 1266 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4966 }, + }, + }, + [1338] = { + ["end"] = { + ["U"] = { 5413 }, + }, + ["lvl"] = 14, + ["min"] = 9, + ["pre"] = { 1339 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1343 }, + }, + }, + [1339] = { + ["end"] = { + ["U"] = { 1343 }, + }, + ["lvl"] = 15, + ["min"] = 9, + ["race"] = 589, + ["start"] = { + ["U"] = { 1340 }, + }, + }, + [1358] = { + ["end"] = { + ["U"] = { 3390 }, + }, + ["lvl"] = 15, + ["min"] = 10, + ["pre"] = { 1359 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5204 }, + }, + }, + [1359] = { + ["end"] = { + ["U"] = { 5204 }, + }, + ["lvl"] = 15, + ["min"] = 10, + ["pre"] = { 3221 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1937 }, + }, + }, + [1360] = { + ["end"] = { + ["U"] = { 6294 }, + }, + ["lvl"] = 43, + ["min"] = 33, + ["obj"] = { + ["I"] = { 8027 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6294 }, + }, + }, + [1361] = { + ["end"] = { + ["U"] = { 3389 }, + }, + ["lvl"] = 32, + ["min"] = 30, + ["race"] = 434, + ["start"] = { + ["U"] = { 2229 }, + }, + }, + [1362] = { + ["end"] = { + ["U"] = { 5395 }, + }, + ["lvl"] = 32, + ["min"] = 30, + ["pre"] = { 1361 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3389 }, + }, + }, + [1363] = { + ["end"] = { + ["U"] = { 5386 }, + }, + ["lvl"] = 41, + ["min"] = 37, + ["race"] = 589, + ["start"] = { + ["U"] = { 338 }, + }, + }, + [1364] = { + ["end"] = { + ["U"] = { 5385 }, + }, + ["lvl"] = 41, + ["min"] = 37, + ["obj"] = { + ["I"] = { 6065 }, + }, + ["pre"] = { 1363 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5386 }, + }, + }, + [1365] = { + ["end"] = { + ["U"] = { 5395 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["I"] = { 6066 }, + }, + ["pre"] = { 1362 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5395 }, + }, + }, + [1366] = { + ["end"] = { + ["U"] = { 5395 }, + }, + ["lvl"] = 31, + ["min"] = 30, + ["obj"] = { + ["I"] = { 6067 }, + }, + ["pre"] = { 1365 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5395 }, + }, + }, + [1367] = { + ["end"] = { + ["U"] = { 5398 }, + }, + ["lvl"] = 33, + ["min"] = 30, + ["race"] = 434, + ["start"] = { + ["U"] = { 5412 }, + }, + }, + [1368] = { + ["end"] = { + ["U"] = { 5397 }, + }, + ["lvl"] = 33, + ["min"] = 30, + ["race"] = 434, + ["start"] = { + ["U"] = { 5412 }, + }, + }, + [1372] = { + ["end"] = { + ["U"] = { 5414 }, + }, + ["lvl"] = 42, + ["min"] = 37, + ["race"] = 434, + ["start"] = { + ["U"] = { 5418 }, + }, + }, + [1382] = { + ["end"] = { + ["U"] = { 5397 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["race"] = 589, + ["start"] = { + ["U"] = { 5396 }, + }, + }, + [1383] = { + ["end"] = { + ["U"] = { 5414 }, + }, + ["lvl"] = 42, + ["min"] = 37, + ["obj"] = { + ["I"] = { 6080, 6081, 6082 }, + }, + ["pre"] = { 1372 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5414 }, + }, + }, + [1384] = { + ["end"] = { + ["U"] = { 5397 }, + }, + ["lvl"] = 32, + ["min"] = 30, + ["obj"] = { + ["I"] = { 6079 }, + }, + ["pre"] = { 1382 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5397 }, + }, + }, + [1385] = { + ["end"] = { + ["U"] = { 5398 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["race"] = 589, + ["start"] = { + ["U"] = { 5396 }, + }, + }, + [1386] = { + ["end"] = { + ["U"] = { 5398 }, + }, + ["lvl"] = 32, + ["min"] = 30, + ["obj"] = { + ["U"] = { 4632, 4633, 4634 }, + }, + ["pre"] = { 1385 }, + ["start"] = { + ["U"] = { 5398 }, + }, + }, + [1387] = { + ["end"] = { + ["U"] = { 5752 }, + }, + ["lvl"] = 31, + ["min"] = 30, + ["obj"] = { + ["I"] = { 6067 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5752 }, + }, + }, + [1388] = { + ["end"] = { + ["U"] = { 5418 }, + }, + ["lvl"] = 42, + ["min"] = 37, + ["pre"] = { 1383 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5414 }, + }, + }, + [1390] = { + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 1289 }, + ["race"] = 589, + }, + [1391] = { + ["end"] = { + ["U"] = { 5416 }, + }, + ["lvl"] = 42, + ["min"] = 37, + ["pre"] = { 1388 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5418 }, + }, + }, + [1394] = { + ["end"] = { + ["U"] = { 2986 }, + }, + ["lvl"] = 36, + ["min"] = 25, + ["pre"] = { 6628 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4488 }, + }, + }, + [1395] = { + ["end"] = { + ["U"] = { 5393 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["pre"] = { 1477 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5464 }, + }, + }, + [1396] = { + ["end"] = { + ["U"] = { 5476 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["obj"] = { + ["U"] = { 767, 858, 1084 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5476 }, + }, + }, + [1398] = { + ["end"] = { + ["U"] = { 5476 }, + }, + ["lvl"] = 42, + ["min"] = 30, + ["obj"] = { + ["I"] = { 6146 }, + }, + ["pre"] = { 1421 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5476 }, + }, + }, + [1418] = { + ["end"] = { + ["U"] = { 5394 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["race"] = 434, + ["start"] = { + ["U"] = { 1442 }, + }, + }, + [1419] = { + ["end"] = { + ["U"] = { 5394 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["obj"] = { + ["I"] = { 6166 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5394 }, + }, + }, + [1420] = { + ["end"] = { + ["U"] = { 1442 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["pre"] = { 1418 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5394 }, + }, + }, + [1421] = { + ["end"] = { + ["U"] = { 5476 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["I"] = { 6170 }, + }, + ["pre"] = { 1396 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5476 }, + }, + }, + [1422] = { + ["end"] = { + ["U"] = { 5593 }, + }, + ["lvl"] = 45, + ["min"] = 35, + ["pre"] = { 699 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5592 }, + }, + }, + [1423] = { + ["end"] = { + ["U"] = { 5393 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["race"] = 589, + ["start"] = { + ["I"] = { 6172 }, + }, + }, + [1424] = { + ["end"] = { + ["U"] = { 1443 }, + }, + ["lvl"] = 43, + ["min"] = 38, + ["obj"] = { + ["I"] = { 6175 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1443 }, + }, + }, + [1425] = { + ["end"] = { + ["U"] = { 5393 }, + }, + ["lvl"] = 42, + ["min"] = 30, + ["pre"] = { 1398 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5476 }, + }, + }, + [1426] = { + ["end"] = { + ["U"] = { 5593 }, + }, + ["lvl"] = 43, + ["min"] = 35, + ["obj"] = { + ["U"] = { 747, 750, 751 }, + }, + ["pre"] = { 1422 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5593 }, + }, + }, + [1427] = { + ["end"] = { + ["U"] = { 5592 }, + }, + ["lvl"] = 43, + ["min"] = 35, + ["pre"] = { 1426 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5593 }, + }, + }, + [1428] = { + ["end"] = { + ["U"] = { 5593 }, + }, + ["lvl"] = 45, + ["min"] = 35, + ["obj"] = { + ["U"] = { 750, 751, 752 }, + }, + ["pre"] = { 1427 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5593 }, + }, + }, + [1429] = { + ["end"] = { + ["U"] = { 5598 }, + }, + ["lvl"] = 44, + ["min"] = 38, + ["pre"] = { 1424 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1443 }, + }, + }, + [1430] = { + ["end"] = { + ["U"] = { 5591 }, + }, + ["lvl"] = 44, + ["min"] = 35, + ["obj"] = { + ["I"] = { 6184 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5591 }, + }, + }, + [1431] = { + ["end"] = { + ["U"] = { 5640 }, + }, + ["lvl"] = 30, + ["min"] = 30, + ["race"] = 434, + ["start"] = { + ["U"] = { 5639 }, + }, + }, + [1432] = { + ["end"] = { + ["U"] = { 5641 }, + }, + ["lvl"] = 30, + ["min"] = 30, + ["pre"] = { 1431 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5640 }, + }, + }, + [1433] = { + ["end"] = { + ["U"] = { 4498 }, + }, + ["lvl"] = 33, + ["min"] = 30, + ["pre"] = { 1432 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5641 }, + }, + }, + [1434] = { + ["end"] = { + ["U"] = { 5641 }, + }, + ["lvl"] = 33, + ["min"] = 25, + ["obj"] = { + ["U"] = { 4670, 4672, 4673, 4675 }, + }, + ["pre"] = { 1432 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5641 }, + }, + }, + [1435] = { + ["end"] = { + ["U"] = { 4498 }, + }, + ["lvl"] = 33, + ["min"] = 25, + ["obj"] = { + ["I"] = { 6435, 6766 }, + ["IR"] = { 6436 }, + }, + ["pre"] = { 1433 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4498 }, + }, + }, + [1436] = { + ["end"] = { + ["U"] = { 5640 }, + }, + ["lvl"] = 33, + ["min"] = 30, + ["pre"] = { 1434, 1435 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5641 }, + }, + }, + [1437] = { + ["end"] = { + ["O"] = { 50961 }, + }, + ["lvl"] = 33, + ["min"] = 30, + ["race"] = 589, + ["start"] = { + ["U"] = { 5642 }, + }, + }, + [1438] = { + ["end"] = { + ["U"] = { 5644 }, + }, + ["lvl"] = 33, + ["min"] = 30, + ["pre"] = { 1465 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5642 }, + }, + }, + [1439] = { + ["end"] = { + ["U"] = { 5644 }, + }, + ["lvl"] = 33, + ["min"] = 30, + ["obj"] = { + ["I"] = { 6767 }, + }, + ["pre"] = { 1438 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5644 }, + }, + }, + [1440] = { + ["end"] = { + ["U"] = { 5642 }, + }, + ["lvl"] = 33, + ["min"] = 30, + ["pre"] = { 1439 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5644 }, + }, + }, + [1441] = "_", + [1442] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 3649 }, + }, + ["lvl"] = 22, + ["min"] = 20, + ["obj"] = { + ["I"] = { 6995 }, + }, + ["pre"] = { 1653 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3649 }, + }, + }, + [1444] = { + ["end"] = { + ["U"] = { 1443 }, + }, + ["lvl"] = 44, + ["min"] = 38, + ["pre"] = { 1429 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5598 }, + }, + }, + [1445] = { + ["end"] = { + ["U"] = { 1443 }, + }, + ["lvl"] = 50, + ["min"] = 38, + ["obj"] = { + ["I"] = { 6181 }, + }, + ["pre"] = { 1444 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1443 }, + }, + }, + [1447] = { + ["end"] = { + ["U"] = { 4961 }, + }, + ["lvl"] = 31, + ["min"] = 28, + ["pre"] = { 1246 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4961 }, + }, + }, + [1448] = { + ["end"] = { + ["U"] = { 5384 }, + }, + ["lvl"] = 43, + ["min"] = 38, + ["obj"] = { + ["A"] = { 362 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5384 }, + }, + }, + [1449] = { + ["end"] = { + ["U"] = { 5635 }, + }, + ["lvl"] = 43, + ["min"] = 38, + ["pre"] = { 1448 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5384 }, + }, + }, + [1450] = { + ["end"] = { + ["U"] = { 5636 }, + }, + ["lvl"] = 43, + ["min"] = 38, + ["pre"] = { 1449 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5635 }, + }, + }, + [1451] = { + ["end"] = { + ["U"] = { 5634 }, + }, + ["lvl"] = 43, + ["min"] = 38, + ["pre"] = { 1450 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5636 }, + }, + }, + [1452] = { + ["end"] = { + ["U"] = { 5634 }, + }, + ["lvl"] = 43, + ["min"] = 38, + ["obj"] = { + ["I"] = { 6257, 6258, 6259 }, + }, + ["pre"] = { 1451 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5634 }, + }, + }, + [1453] = { + ["end"] = { + ["U"] = { 5638 }, + }, + ["lvl"] = 33, + ["min"] = 30, + ["race"] = 589, + ["start"] = { + ["U"] = { 5637 }, + }, + }, + [1454] = { + ["end"] = { + ["O"] = { 35251 }, + }, + ["lvl"] = 39, + ["min"] = 30, + ["pre"] = { 1453 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5638 }, + }, + }, + [1455] = { + ["end"] = { + ["U"] = { 5638 }, + }, + ["lvl"] = 39, + ["min"] = 30, + ["pre"] = { 1454 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 35251 }, + }, + }, + [1456] = { + ["end"] = { + ["U"] = { 5638 }, + }, + ["lvl"] = 39, + ["min"] = 30, + ["obj"] = { + ["I"] = { 6245 }, + }, + ["pre"] = { 1455 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5638 }, + }, + }, + [1457] = { + ["end"] = { + ["U"] = { 5637 }, + }, + ["lvl"] = 39, + ["min"] = 30, + ["pre"] = { 1456 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5638 }, + }, + }, + [1458] = { + ["end"] = { + ["U"] = { 5638 }, + }, + ["lvl"] = 33, + ["min"] = 30, + ["obj"] = { + ["I"] = { 6246, 6247 }, + }, + ["pre"] = { 1453 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5638 }, + }, + }, + [1459] = { + ["end"] = { + ["U"] = { 5638 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["I"] = { 6248, 6249 }, + }, + ["pre"] = { 1458 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5638 }, + }, + }, + [1460] = "_", + [1461] = "_", + [1462] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 5888 }, + }, + ["lvl"] = 4, + ["min"] = 4, + ["pre"] = { 1520 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5888 }, + }, + }, + [1463] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 5887 }, + }, + ["lvl"] = 4, + ["min"] = 4, + ["pre"] = { 1517 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5887 }, + }, + }, + [1464] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 5900 }, + }, + ["lvl"] = 13, + ["min"] = 10, + ["pre"] = { 1526 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5900 }, + }, + }, + [1465] = { + ["end"] = { + ["U"] = { 5642 }, + }, + ["lvl"] = 33, + ["min"] = 30, + ["pre"] = { 1437 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 50961 }, + }, + }, + [1466] = { + ["end"] = { + ["U"] = { 5638 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["obj"] = { + ["I"] = { 6250, 6251, 6252 }, + }, + ["pre"] = { 1459 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5638 }, + }, + }, + [1467] = { + ["end"] = { + ["U"] = { 5637 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["pre"] = { 1466 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5638 }, + }, + }, + [1468] = { + ["end"] = { + ["U"] = { 14305 }, + }, + ["event"] = 10, + ["lvl"] = 60, + ["min"] = 10, + ["race"] = 589, + ["start"] = { + ["U"] = { 14450 }, + }, + }, + [1469] = { + ["end"] = { + ["U"] = { 5384 }, + }, + ["lvl"] = 43, + ["min"] = 38, + ["pre"] = { 1452 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5634 }, + }, + }, + [1470] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 5667 }, + }, + ["lvl"] = 3, + ["min"] = 1, + ["obj"] = { + ["I"] = { 6281 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5667 }, + }, + }, + [1471] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 5675 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["IR"] = { 6284 }, + ["U"] = { 5676 }, + }, + ["pre"] = { 1473 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5675 }, + }, + }, + [1472] = { + ["class"] = 256, + ["close"] = { 1472, 1507 }, + ["end"] = { + ["U"] = { 5693 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["race"] = 434, + ["start"] = { + ["U"] = { 5675 }, + }, + }, + [1473] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 5675 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["I"] = { 6285 }, + }, + ["pre"] = { 1478 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5675 }, + }, + }, + [1474] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 5675 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["obj"] = { + ["IR"] = { 6286 }, + ["U"] = { 5677 }, + }, + ["pre"] = { 1476 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5675 }, + }, + }, + [1475] = { + ["end"] = { + ["U"] = { 5384 }, + }, + ["lvl"] = 50, + ["min"] = 38, + ["obj"] = { + ["I"] = { 6288 }, + }, + ["pre"] = { 1469 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5384 }, + }, + }, + [1476] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 5675 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["obj"] = { + ["I"] = { 6312, 6313 }, + }, + ["pre"] = { 1472 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5693 }, + }, + }, + [1477] = { + ["end"] = { + ["U"] = { 5464 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["race"] = 589, + ["start"] = { + ["U"] = { 5694 }, + }, + }, + [1478] = { + ["class"] = 256, + ["close"] = { 1478 }, + ["end"] = { + ["U"] = { 5675 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 434, + ["start"] = { + ["U"] = { 5724 }, + }, + }, + [1479] = { + ["end"] = { + ["U"] = { 14305 }, + }, + ["lvl"] = 60, + ["min"] = 10, + ["pre"] = { 1468 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14305 }, + }, + }, + [1480] = { + ["end"] = { + ["U"] = { 4498 }, + }, + ["lvl"] = 33, + ["min"] = 25, + ["race"] = 434, + ["start"] = { + ["I"] = { 20310 }, + }, + }, + [1481] = { + ["end"] = { + ["U"] = { 4498 }, + }, + ["lvl"] = 33, + ["min"] = 25, + ["obj"] = { + ["I"] = { 6441 }, + }, + ["pre"] = { 1480 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4498 }, + }, + }, + [1482] = { + ["end"] = { + ["U"] = { 4498 }, + }, + ["lvl"] = 35, + ["min"] = 25, + ["obj"] = { + ["I"] = { 6442 }, + }, + ["pre"] = { 1481 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4498 }, + }, + }, + [1484] = { + ["end"] = { + ["U"] = { 5641 }, + }, + ["lvl"] = 33, + ["min"] = 25, + ["pre"] = { 1482 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4498 }, + }, + }, + [1485] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 5765 }, + }, + ["lvl"] = 4, + ["min"] = 1, + ["obj"] = { + ["I"] = { 6487 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5765 }, + }, + }, + [1488] = { + ["end"] = { + ["U"] = { 5641 }, + }, + ["lvl"] = 40, + ["min"] = 25, + ["obj"] = { + ["U"] = { 5760, 5771 }, + }, + ["pre"] = { 1484 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5641 }, + }, + }, + [1489] = { + ["end"] = { + ["U"] = { 5769 }, + }, + ["lvl"] = 16, + ["min"] = 10, + ["pre"] = { 880 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3448 }, + }, + }, + [1490] = { + ["end"] = { + ["U"] = { 5770 }, + }, + ["lvl"] = 16, + ["min"] = 10, + ["pre"] = { 1489 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5769 }, + }, + }, + [1492] = { + ["end"] = { + ["U"] = { 3453 }, + }, + ["lvl"] = 11, + ["min"] = 9, + ["race"] = 434, + ["start"] = { + ["U"] = { 3390 }, + }, + }, + [1498] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 5810 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["I"] = { 6486 }, + }, + ["pre"] = { 1505 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5810 }, + }, + }, + [1499] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 3145 }, + }, + ["lvl"] = 4, + ["min"] = 1, + ["pre"] = { 1485 }, + ["race"] = 130, + ["start"] = { + ["U"] = { 5765 }, + }, + }, + [1500] = "_", + [1501] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 5875 }, + }, + ["lvl"] = 11, + ["min"] = 10, + ["obj"] = { + ["I"] = { 6535 }, + }, + ["pre"] = { 1506 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5875 }, + }, + }, + [1502] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 5878 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 1498 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5810 }, + }, + }, + [1503] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 5878 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["I"] = { 6534 }, + }, + ["pre"] = { 1502 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5878 }, + }, + }, + [1504] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 5875 }, + }, + ["lvl"] = 11, + ["min"] = 10, + ["obj"] = { + ["IR"] = { 7464 }, + ["U"] = { 5676 }, + }, + ["pre"] = { 1501 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5875 }, + }, + }, + [1505] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 5810 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 434, + ["start"] = { + ["U"] = { 3063, 3169, 3354 }, + }, + }, + [1506] = { + ["class"] = 256, + ["close"] = { 1506 }, + ["end"] = { + ["U"] = { 5875 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 434, + ["start"] = { + ["U"] = { 3294 }, + }, + }, + [1507] = { + ["class"] = 256, + ["close"] = { 1472, 1507 }, + ["end"] = { + ["U"] = { 5909 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["race"] = 434, + ["start"] = { + ["U"] = { 5875 }, + }, + }, + [1508] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 5910 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["pre"] = { 1507 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5909 }, + }, + }, + [1509] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 3464 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["pre"] = { 1508 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5910 }, + }, + }, + [1510] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 4197 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["pre"] = { 1509 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3464 }, + }, + }, + [1511] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 5911 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["pre"] = { 1510 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4197 }, + }, + }, + [1512] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 5875 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["pre"] = { 1515 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5908 }, + }, + }, + [1513] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 5875 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["obj"] = { + ["IR"] = { 6626 }, + ["U"] = { 5677 }, + }, + ["pre"] = { 1512 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5875 }, + }, + }, + [1515] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 5908 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["pre"] = { 1511 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5911 }, + }, + }, + [1516] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 5887 }, + }, + ["lvl"] = 4, + ["min"] = 4, + ["obj"] = { + ["I"] = { 6640 }, + }, + ["race"] = 130, + ["start"] = { + ["U"] = { 5887 }, + }, + }, + [1517] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 5891 }, + }, + ["lvl"] = 4, + ["min"] = 4, + ["obj"] = { + ["IR"] = { 6635 }, + }, + ["pre"] = { 1516 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5887 }, + }, + }, + [1518] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 5887 }, + }, + ["lvl"] = 4, + ["min"] = 4, + ["pre"] = { 1517 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5891 }, + }, + }, + [1519] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 5888 }, + }, + ["lvl"] = 4, + ["min"] = 4, + ["obj"] = { + ["I"] = { 6634 }, + }, + ["race"] = 32, + ["start"] = { + ["U"] = { 5888 }, + }, + }, + [1520] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 5891 }, + }, + ["lvl"] = 4, + ["min"] = 4, + ["obj"] = { + ["IR"] = { 6635 }, + }, + ["pre"] = { 1519 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5888 }, + }, + }, + [1521] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 5888 }, + }, + ["lvl"] = 4, + ["min"] = 4, + ["pre"] = { 1520 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5891 }, + }, + }, + [1522] = { + ["class"] = 64, + ["close"] = { 1522, 1523, 2983, 2984 }, + ["end"] = { + ["U"] = { 5907 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 434, + ["start"] = { + ["U"] = { 5892 }, + }, + }, + [1523] = { + ["class"] = 64, + ["close"] = { 1522, 1523, 2983, 2984 }, + ["end"] = { + ["U"] = { 5907 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 434, + ["start"] = { + ["U"] = { 5906 }, + }, + }, + [1524] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 5900 }, + }, + ["lvl"] = 11, + ["min"] = 10, + ["pre"] = { 1522, 1523, 2983, 2984 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5907 }, + }, + }, + [1525] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 5900 }, + }, + ["lvl"] = 12, + ["min"] = 10, + ["obj"] = { + ["I"] = { 5026, 6652 }, + }, + ["pre"] = { 1524 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5900 }, + }, + }, + [1526] = { + ["class"] = 64, + ["end"] = { + ["O"] = { 61934 }, + }, + ["lvl"] = 13, + ["min"] = 10, + ["obj"] = { + ["I"] = { 6655 }, + }, + ["pre"] = { 1525 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5900 }, + }, + }, + [1527] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 5907 }, + }, + ["lvl"] = 13, + ["min"] = 10, + ["pre"] = { 1526 }, + ["race"] = 434, + ["start"] = { + ["O"] = { 61934 }, + }, + }, + [1528] = { + ["class"] = 64, + ["close"] = { 1528, 1529, 2985 }, + ["end"] = { + ["U"] = { 5901 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["race"] = 434, + ["start"] = { + ["U"] = { 5892 }, + }, + }, + [1529] = { + ["class"] = 64, + ["close"] = { 1528, 1529, 2985 }, + ["end"] = { + ["U"] = { 5901 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["race"] = 434, + ["start"] = { + ["U"] = { 5906 }, + }, + }, + [1530] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 5899 }, + }, + ["lvl"] = 22, + ["min"] = 20, + ["pre"] = { 1528, 1529, 2985, 2986 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5901 }, + }, + }, + [1531] = { + ["class"] = 64, + ["close"] = { 1531, 1532 }, + ["end"] = { + ["U"] = { 5905 }, + }, + ["lvl"] = 30, + ["min"] = 30, + ["race"] = 434, + ["start"] = { + ["U"] = { 5892 }, + }, + }, + [1532] = { + ["class"] = 64, + ["close"] = { 1531, 1532 }, + ["end"] = { + ["U"] = { 5905 }, + }, + ["lvl"] = 30, + ["min"] = 30, + ["race"] = 434, + ["start"] = { + ["U"] = { 5906 }, + }, + }, + [1534] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 5899 }, + }, + ["lvl"] = 23, + ["min"] = 20, + ["obj"] = { + ["I"] = { 7770 }, + ["IR"] = { 7767 }, + }, + ["pre"] = { 1536 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5899 }, + }, + }, + [1535] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 5899 }, + }, + ["lvl"] = 22, + ["min"] = 20, + ["obj"] = { + ["I"] = { 7769 }, + ["IR"] = { 7766 }, + }, + ["pre"] = { 1530 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5899 }, + }, + }, + [1536] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 5899 }, + }, + ["lvl"] = 22, + ["min"] = 20, + ["obj"] = { + ["I"] = { 7771 }, + ["IR"] = { 7768 }, + }, + ["pre"] = { 1535 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5899 }, + }, + }, + [1558] = { + ["end"] = { + ["U"] = { 14305 }, + }, + ["lvl"] = 60, + ["min"] = 10, + ["pre"] = { 1468 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14305 }, + }, + }, + [1578] = { + ["end"] = { + ["U"] = { 6030 }, + }, + ["lvl"] = 12, + ["min"] = 1, + ["obj"] = { + ["I"] = { 2845, 2851 }, + }, + ["race"] = 589, + ["skill"] = 164, + ["start"] = { + ["U"] = { 6031 }, + }, + }, + [1579] = { + ["end"] = { + ["U"] = { 3666 }, + }, + ["lvl"] = 12, + ["min"] = 10, + ["obj"] = { + ["I"] = { 6717 }, + }, + ["race"] = 589, + ["skill"] = 356, + ["start"] = { + ["U"] = { 3666 }, + }, + }, + [1580] = { + ["end"] = { + ["U"] = { 3666 }, + }, + ["lvl"] = 12, + ["min"] = 10, + ["obj"] = { + ["I"] = { 6718 }, + }, + ["pre"] = { 1579 }, + ["race"] = 589, + ["skill"] = 356, + ["start"] = { + ["U"] = { 3666 }, + }, + }, + [1581] = { + ["end"] = { + ["U"] = { 2083 }, + }, + ["lvl"] = 8, + ["min"] = 4, + ["obj"] = { + ["I"] = { 2454, 5997 }, + }, + ["race"] = 589, + ["skill"] = 171, + ["start"] = { + ["U"] = { 2083 }, + }, + }, + [1582] = { + ["end"] = { + ["U"] = { 6034 }, + }, + ["lvl"] = 18, + ["min"] = 8, + ["obj"] = { + ["I"] = { 2309, 2310, 4239 }, + }, + ["race"] = 589, + ["skill"] = 165, + ["start"] = { + ["U"] = { 6034 }, + }, + }, + [1598] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 459 }, + }, + ["lvl"] = 4, + ["min"] = 1, + ["obj"] = { + ["I"] = { 6785 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 459 }, + }, + }, + [1599] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 460 }, + }, + ["lvl"] = 4, + ["min"] = 1, + ["obj"] = { + ["I"] = { 6753 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 460 }, + }, + }, + [1618] = { + ["end"] = { + ["U"] = { 415 }, + }, + ["lvl"] = 16, + ["min"] = 1, + ["obj"] = { + ["I"] = { 2857, 6214 }, + }, + ["race"] = 589, + ["skill"] = 164, + ["start"] = { + ["U"] = { 6031 }, + }, + }, + [1638] = { + ["class"] = 1, + ["close"] = { 1638, 1679, 1684 }, + ["end"] = { + ["U"] = { 6089 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 589, + ["start"] = { + ["U"] = { 913, 5480 }, + }, + }, + [1639] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6090 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 1638 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6089 }, + }, + }, + [1640] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6090 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 1639 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6090 }, + }, + }, + [1641] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6171 }, + }, + ["lvl"] = 12, + ["min"] = 12, + ["pre"] = { 2998, 3681 }, + ["race"] = 513, + ["start"] = { + ["U"] = { 6171 }, + }, + }, + [1642] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6171 }, + }, + ["lvl"] = 12, + ["min"] = 12, + ["pre"] = { 1641 }, + ["race"] = 589, + ["start"] = { + ["I"] = { 6775 }, + }, + }, + [1643] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6174 }, + }, + ["lvl"] = 12, + ["min"] = 12, + ["pre"] = { 1642 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6171 }, + }, + }, + [1644] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6174 }, + }, + ["lvl"] = 13, + ["min"] = 12, + ["obj"] = { + ["I"] = { 2589 }, + }, + ["pre"] = { 1643 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6174 }, + }, + }, + [1645] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6179 }, + }, + ["lvl"] = 12, + ["min"] = 12, + ["pre"] = { 2997, 2999, 3000 }, + ["race"] = 4, + ["start"] = { + ["U"] = { 6179 }, + }, + }, + [1646] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6179 }, + }, + ["lvl"] = 12, + ["min"] = 12, + ["pre"] = { 1645 }, + ["race"] = 589, + ["start"] = { + ["I"] = { 6916 }, + }, + }, + [1647] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6175 }, + }, + ["lvl"] = 12, + ["min"] = 12, + ["pre"] = { 1646 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6179 }, + }, + }, + [1648] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6175 }, + }, + ["lvl"] = 13, + ["min"] = 12, + ["obj"] = { + ["I"] = { 2589 }, + }, + ["pre"] = { 1647 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6175 }, + }, + }, + [1649] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6171 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["race"] = 589, + ["start"] = { + ["I"] = { 6776 }, + }, + }, + [1650] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6182 }, + }, + ["lvl"] = 23, + ["min"] = 20, + ["pre"] = { 1649 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6171 }, + }, + }, + [1651] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6182 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["pre"] = { 1650 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6182 }, + }, + }, + [1652] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6171 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["pre"] = { 1651 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6182 }, + }, + }, + [1653] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6181 }, + }, + ["lvl"] = 21, + ["min"] = 20, + ["pre"] = { 1652 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6171 }, + }, + }, + [1654] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6181 }, + }, + ["lvl"] = 22, + ["min"] = 20, + ["obj"] = { + ["I"] = { 6895, 6993, 6994, 7083 }, + }, + ["pre"] = { 1653 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6181 }, + }, + }, + [1655] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6241 }, + }, + ["lvl"] = 22, + ["min"] = 20, + ["obj"] = { + ["I"] = { 6992 }, + }, + ["pre"] = { 1653 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6241 }, + }, + }, + [1656] = { + ["end"] = { + ["U"] = { 6747 }, + }, + ["lvl"] = 5, + ["min"] = 1, + ["race"] = 434, + ["start"] = { + ["U"] = { 6775 }, + }, + }, + [1657] = { + ["end"] = { + ["U"] = { 15197 }, + }, + ["event"] = 12, + ["lvl"] = 60, + ["min"] = 25, + ["obj"] = { + ["IR"] = { 20387 }, + ["U"] = { 15415 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15197 }, + }, + }, + [1658] = { + ["end"] = { + ["U"] = { 15199 }, + }, + ["event"] = 12, + ["lvl"] = 60, + ["min"] = 25, + ["obj"] = { + ["A"] = { 3991 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15199 }, + }, + }, + [1659] = "_", + [1660] = "_", + [1661] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6171 }, + }, + ["lvl"] = 40, + ["min"] = 40, + ["race"] = 589, + ["start"] = { + ["U"] = { 6171 }, + }, + }, + [1665] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6089 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 1640 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6090 }, + }, + }, + [1666] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 294 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 1665 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6089 }, + }, + }, + [1667] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 294 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["I"] = { 6782, 6783 }, + }, + ["pre"] = { 1666 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 294 }, + }, + }, + [1678] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6114 }, + }, + ["lvl"] = 11, + ["min"] = 10, + ["obj"] = { + ["I"] = { 6799 }, + }, + ["pre"] = { 1679 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6114 }, + }, + }, + [1679] = { + ["class"] = 1, + ["close"] = { 1638, 1679, 1684 }, + ["end"] = { + ["U"] = { 6114 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 589, + ["start"] = { + ["U"] = { 1229 }, + }, + }, + [1680] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6031 }, + }, + ["lvl"] = 11, + ["min"] = 10, + ["pre"] = { 1678 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6114 }, + }, + }, + [1681] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6031 }, + }, + ["lvl"] = 11, + ["min"] = 10, + ["obj"] = { + ["I"] = { 6800 }, + }, + ["pre"] = { 1680 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6031 }, + }, + }, + [1682] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6031 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 1681 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6031 }, + }, + }, + [1683] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 4088 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["I"] = { 6805 }, + }, + ["pre"] = { 1684 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4088 }, + }, + }, + [1684] = { + ["class"] = 1, + ["close"] = { 1638, 1679, 1684 }, + ["end"] = { + ["U"] = { 4088 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 589, + ["start"] = { + ["U"] = { 3598, 80247 }, + }, + }, + [1685] = { + ["class"] = 256, + ["close"] = { 1685, 1715 }, + ["end"] = { + ["U"] = { 6122 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 589, + ["start"] = { + ["U"] = { 6121 }, + }, + }, + [1686] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 4088 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["I"] = { 6808, 6809 }, + }, + ["pre"] = { 1683 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4088 }, + }, + }, + [1687] = { + ["end"] = { + ["U"] = { 14305 }, + }, + ["lvl"] = 60, + ["min"] = 10, + ["pre"] = { 1468 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14305 }, + }, + }, + [1688] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 6122 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["I"] = { 6810 }, + }, + ["pre"] = { 1685 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6122 }, + }, + }, + [1689] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 6122 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["IR"] = { 6928 }, + ["U"] = { 5676 }, + }, + ["pre"] = { 1688 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6122 }, + }, + }, + [1692] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6142 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 1686 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4088 }, + }, + }, + [1693] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6142 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 1692 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6142 }, + }, + }, + [1698] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6166 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["race"] = 589, + ["start"] = { + ["U"] = { 5479 }, + }, + }, + [1699] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6166 }, + }, + ["lvl"] = 22, + ["min"] = 20, + ["obj"] = { + ["A"] = { 482 }, + }, + ["pre"] = { 1698 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6166 }, + }, + }, + [1700] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 1416 }, + }, + ["lvl"] = 28, + ["min"] = 20, + ["pre"] = { 1701 }, + ["race"] = 513, + ["start"] = { + ["U"] = { 5413 }, + }, + }, + [1701] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 5413 }, + }, + ["lvl"] = 28, + ["min"] = 20, + ["obj"] = { + ["I"] = { 6838, 6839, 6840, 6841 }, + }, + ["pre"] = { 1702 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5413 }, + }, + }, + [1702] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 5413 }, + }, + ["lvl"] = 22, + ["min"] = 20, + ["pre"] = { 1699 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6166 }, + }, + }, + [1705] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 1416 }, + }, + ["lvl"] = 28, + ["min"] = 20, + ["obj"] = { + ["I"] = { 6844, 6845 }, + }, + ["pre"] = { 1700 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1416 }, + }, + }, + [1706] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 1416 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["pre"] = { 1705 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1416 }, + }, + }, + [1708] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6169 }, + }, + ["lvl"] = 29, + ["min"] = 20, + ["obj"] = { + ["I"] = { 6848 }, + }, + ["pre"] = { 1704 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6169 }, + }, + }, + [1709] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6169 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["pre"] = { 1708 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6169 }, + }, + }, + [1710] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6142 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["obj"] = { + ["I"] = { 6849 }, + }, + ["pre"] = { 1703 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6142 }, + }, + }, + [1711] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6142 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["pre"] = { 1710 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6142 }, + }, + }, + [1715] = { + ["class"] = 256, + ["close"] = { 1685, 1715 }, + ["end"] = { + ["U"] = { 6122 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 589, + ["start"] = { + ["U"] = { 6120 }, + }, + }, + [1716] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 6244 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["pre"] = { 1717 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6122 }, + }, + }, + [1717] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 6122 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["race"] = 589, + ["start"] = { + ["U"] = { 6120 }, + }, + }, + [1738] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 6122 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["obj"] = { + ["I"] = { 6912 }, + }, + ["pre"] = { 1716 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6244 }, + }, + }, + [1739] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 6122 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["obj"] = { + ["IR"] = { 6913 }, + ["U"] = { 5677 }, + }, + ["pre"] = { 1738 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6122 }, + }, + }, + [1758] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 6294 }, + }, + ["lvl"] = 30, + ["min"] = 30, + ["pre"] = { 1798 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6251 }, + }, + }, + [1778] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6179 }, + }, + ["lvl"] = 13, + ["min"] = 12, + ["pre"] = { 1648 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6175 }, + }, + }, + [1779] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6178 }, + }, + ["lvl"] = 13, + ["min"] = 12, + ["obj"] = { + ["IR"] = { 6866 }, + }, + ["pre"] = { 1778 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6179 }, + }, + }, + [1780] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6171 }, + }, + ["lvl"] = 13, + ["min"] = 12, + ["pre"] = { 1644 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6174 }, + }, + }, + [1781] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6173 }, + }, + ["lvl"] = 13, + ["min"] = 12, + ["obj"] = { + ["IR"] = { 6866 }, + }, + ["pre"] = { 1780 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6171 }, + }, + }, + [1782] = { + ["end"] = { + ["U"] = { 5413 }, + }, + ["lvl"] = 28, + ["min"] = 20, + ["pre"] = { 1701 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5413 }, + }, + }, + [1783] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6177 }, + }, + ["lvl"] = 13, + ["min"] = 12, + ["pre"] = { 1779 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6178 }, + }, + }, + [1784] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6178 }, + }, + ["lvl"] = 13, + ["min"] = 12, + ["obj"] = { + ["I"] = { 6847 }, + }, + ["pre"] = { 1783 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6177 }, + }, + }, + [1785] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6179 }, + }, + ["lvl"] = 13, + ["min"] = 12, + ["pre"] = { 1784 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6178 }, + }, + }, + [1786] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6172 }, + }, + ["lvl"] = 13, + ["min"] = 12, + ["pre"] = { 1781 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6173 }, + }, + }, + [1787] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6173 }, + }, + ["lvl"] = 13, + ["min"] = 12, + ["obj"] = { + ["I"] = { 6846 }, + }, + ["pre"] = { 1786 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6172 }, + }, + }, + [1788] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6171 }, + }, + ["lvl"] = 13, + ["min"] = 12, + ["pre"] = { 1787 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6173 }, + }, + }, + [1789] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6179 }, + }, + ["lvl"] = 12, + ["min"] = 12, + ["pre"] = { 1783 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6179 }, + }, + }, + [1790] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6171 }, + }, + ["lvl"] = 12, + ["min"] = 12, + ["pre"] = { 1786 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6171 }, + }, + }, + [1793] = { + ["class"] = 2, + ["close"] = { 1793, 1794 }, + ["end"] = { + ["U"] = { 6171 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["race"] = 589, + ["start"] = { + ["U"] = { 6171 }, + }, + }, + [1794] = { + ["class"] = 2, + ["close"] = { 1793, 1794 }, + ["end"] = { + ["U"] = { 6179 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["race"] = 589, + ["start"] = { + ["U"] = { 6179 }, + }, + }, + [1798] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 6251 }, + }, + ["lvl"] = 30, + ["min"] = 30, + ["race"] = 589, + ["start"] = { + ["U"] = { 6122 }, + }, + }, + [1800] = { + ["end"] = { + ["U"] = { 14444 }, + }, + ["lvl"] = 60, + ["min"] = 10, + ["pre"] = { 172 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14444 }, + }, + }, + [1801] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 6293 }, + }, + ["lvl"] = 30, + ["min"] = 30, + ["race"] = 434, + ["start"] = { + ["U"] = { 6251 }, + }, + }, + [1802] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 6294 }, + }, + ["lvl"] = 30, + ["min"] = 30, + ["obj"] = { + ["I"] = { 6931, 6997 }, + ["IR"] = { 6931, 6997 }, + }, + ["pre"] = { 1758 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6294 }, + }, + }, + [1803] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 6293 }, + }, + ["lvl"] = 30, + ["min"] = 30, + ["obj"] = { + ["I"] = { 6931, 6997 }, + ["IR"] = { 6931, 6997 }, + }, + ["pre"] = { 1801 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 6293 }, + }, + }, + [1804] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 6251 }, + }, + ["lvl"] = 30, + ["min"] = 30, + ["obj"] = { + ["I"] = { 6930 }, + }, + ["pre"] = { 1802 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6294 }, + }, + }, + [1805] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 6251 }, + }, + ["lvl"] = 30, + ["min"] = 30, + ["obj"] = { + ["I"] = { 6930 }, + }, + ["pre"] = { 1803 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 6293 }, + }, + }, + [1806] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6181 }, + }, + ["lvl"] = 22, + ["min"] = 20, + ["pre"] = { 1654 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6181 }, + }, + }, + [1818] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 1496 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 434, + ["start"] = { + ["U"] = { 2131 }, + }, + }, + [1819] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 1496 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["U"] = { 6390 }, + }, + ["pre"] = { 1818 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1496 }, + }, + }, + [1820] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 1500 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 1819 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1496 }, + }, + }, + [1821] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 1500 }, + }, + ["lvl"] = 11, + ["min"] = 10, + ["obj"] = { + ["I"] = { 7566, 7567, 7568, 7569 }, + }, + ["pre"] = { 1820 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1500 }, + }, + }, + [1822] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 1500 }, + }, + ["lvl"] = 11, + ["min"] = 10, + ["pre"] = { 1821 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1500 }, + }, + }, + [1823] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6394 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["race"] = 434, + ["start"] = { + ["U"] = { 3041, 3354, 4595 }, + }, + }, + [1824] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6394 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["obj"] = { + ["I"] = { 7119 }, + }, + ["pre"] = { 1823 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 6394 }, + }, + }, + [1825] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 5878 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["pre"] = { 1824 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 6394 }, + }, + }, + [1838] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 5878 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["obj"] = { + ["I"] = { 3575, 6841, 7126, 7127 }, + }, + ["pre"] = { 1825 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5878 }, + }, + }, + [1839] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6408 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["pre"] = { 1838 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5878 }, + }, + }, + [1840] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6410 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["pre"] = { 1838 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5878 }, + }, + }, + [1841] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6411 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["pre"] = { 1838 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5878 }, + }, + }, + [1842] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6408 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["obj"] = { + ["I"] = { 7128 }, + }, + ["pre"] = { 1839 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 6408 }, + }, + }, + [1843] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6408 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["pre"] = { 1842 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 6408 }, + }, + }, + [1844] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6410 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["obj"] = { + ["I"] = { 6840 }, + }, + ["pre"] = { 1840 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 6410 }, + }, + }, + [1845] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6410 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["pre"] = { 1844 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 6410 }, + }, + }, + [1846] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6411 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["obj"] = { + ["I"] = { 7131, 7134 }, + }, + ["pre"] = { 1841 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 6411 }, + }, + }, + [1847] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 6411 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["pre"] = { 1846 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 6411 }, + }, + }, + [1848] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 5878 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["pre"] = { 1838 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5878 }, + }, + }, + [1858] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 6446 }, + }, + ["lvl"] = 13, + ["min"] = 10, + ["obj"] = { + ["I"] = { 7208, 7295 }, + }, + ["pre"] = { 1963 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 6446 }, + }, + }, + [1859] = { + ["class"] = 8, + ["close"] = { 1859, 1885 }, + ["end"] = { + ["U"] = { 6446 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 434, + ["start"] = { + ["U"] = { 3170 }, + }, + }, + [1860] = { + ["class"] = 128, + ["close"] = { 1860, 1879 }, + ["end"] = { + ["U"] = { 5497 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 589, + ["start"] = { + ["U"] = { 328 }, + }, + }, + [1861] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 5497 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["I"] = { 7206 }, + ["IR"] = { 7207 }, + }, + ["pre"] = { 1860 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5497 }, + }, + }, + [1879] = { + ["class"] = 128, + ["close"] = { 1860, 1879 }, + ["end"] = { + ["U"] = { 5144 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 589, + ["start"] = { + ["U"] = { 1228 }, + }, + }, + [1880] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 5144 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["I"] = { 7226 }, + }, + ["pre"] = { 1879 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5144 }, + }, + }, + [1881] = { + ["class"] = 128, + ["close"] = { 1881, 1883 }, + ["end"] = { + ["U"] = { 4568 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 434, + ["start"] = { + ["U"] = { 2128 }, + }, + }, + [1882] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 4568 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["I"] = { 7227 }, + }, + ["pre"] = { 1881 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4568 }, + }, + }, + [1883] = { + ["class"] = 128, + ["close"] = { 1881, 1883 }, + ["end"] = { + ["U"] = { 5880 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 434, + ["start"] = { + ["U"] = { 3049, 7311 }, + }, + }, + [1884] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 5880 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["O"] = { 102986 }, + }, + ["pre"] = { 1883 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5880 }, + }, + }, + [1885] = { + ["class"] = 8, + ["close"] = { 1859, 1885 }, + ["end"] = { + ["U"] = { 6467 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 434, + ["start"] = { + ["U"] = { 2130 }, + }, + }, + [1886] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 6467 }, + }, + ["lvl"] = 13, + ["min"] = 10, + ["obj"] = { + ["I"] = { 7231 }, + }, + ["pre"] = { 1885 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 6467 }, + }, + }, + [1898] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 6522 }, + }, + ["lvl"] = 13, + ["min"] = 10, + ["pre"] = { 1886 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 6467 }, + }, + }, + [1899] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 6467 }, + }, + ["lvl"] = 13, + ["min"] = 10, + ["obj"] = { + ["I"] = { 7294 }, + }, + ["pre"] = { 1898 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 6522 }, + }, + }, + [1918] = { + ["end"] = { + ["U"] = { 12737 }, + }, + ["lvl"] = 27, + ["min"] = 23, + ["race"] = 434, + ["start"] = { + ["I"] = { 16408 }, + }, + }, + [1919] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 5497 }, + }, + ["lvl"] = 15, + ["min"] = 15, + ["race"] = 589, + ["start"] = { + ["U"] = { 328, 7312 }, + }, + }, + [1920] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 5497 }, + }, + ["lvl"] = 16, + ["min"] = 15, + ["obj"] = { + ["I"] = { 7247, 7292, 7308 }, + ["IR"] = { 7247, 7308 }, + }, + ["pre"] = { 1919 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5497 }, + }, + }, + [1921] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 1309 }, + }, + ["lvl"] = 15, + ["min"] = 15, + ["obj"] = { + ["I"] = { 2589, 7249 }, + }, + ["pre"] = { 1920 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5497 }, + }, + }, + [1938] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 5694 }, + }, + ["lvl"] = 28, + ["min"] = 26, + ["obj"] = { + ["I"] = { 7266 }, + }, + ["pre"] = { 1939 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5694 }, + }, + }, + [1939] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 5694 }, + }, + ["lvl"] = 26, + ["min"] = 26, + ["race"] = 589, + ["start"] = { + ["U"] = { 5144, 5497 }, + }, + }, + [1940] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 1309 }, + }, + ["lvl"] = 26, + ["min"] = 26, + ["obj"] = { + ["I"] = { 7267 }, + }, + ["pre"] = { 1938 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5694 }, + }, + }, + [1941] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 1309 }, + }, + ["lvl"] = 15, + ["min"] = 15, + ["pre"] = { 1921 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1309 }, + }, + }, + [1942] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 1309 }, + }, + ["lvl"] = 26, + ["min"] = 26, + ["pre"] = { 1940 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1309 }, + }, + }, + [1943] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 5885 }, + }, + ["lvl"] = 26, + ["min"] = 26, + ["race"] = 434, + ["start"] = { + ["U"] = { 4568 }, + }, + }, + [1944] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 5885 }, + }, + ["lvl"] = 26, + ["min"] = 26, + ["obj"] = { + ["I"] = { 7268 }, + ["IR"] = { 7269 }, + }, + ["pre"] = { 1943 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5885 }, + }, + }, + [1945] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 3484 }, + }, + ["lvl"] = 26, + ["min"] = 26, + ["obj"] = { + ["I"] = { 7270 }, + }, + ["pre"] = { 1944 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5885 }, + }, + }, + [1946] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 3484 }, + }, + ["lvl"] = 26, + ["min"] = 26, + ["pre"] = { 1945 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3484 }, + }, + }, + [1947] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 6546 }, + }, + ["lvl"] = 38, + ["min"] = 30, + ["start"] = { + ["U"] = { 3048, 4568, 5144, 5497, 5885 }, + }, + }, + [1948] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 6546 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["obj"] = { + ["I"] = { 1529, 7272, 7273 }, + ["IR"] = { 7273 }, + }, + ["pre"] = { 1951 }, + ["start"] = { + ["U"] = { 6546 }, + }, + }, + [1953] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 6546 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["start"] = { + ["U"] = { 3048, 4568, 5144, 5497, 5885 }, + }, + }, + [1959] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 4568 }, + }, + ["lvl"] = 15, + ["min"] = 15, + ["race"] = 434, + ["start"] = { + ["U"] = { 3049, 7311 }, + }, + }, + [1960] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 4568 }, + }, + ["lvl"] = 16, + ["min"] = 15, + ["obj"] = { + ["I"] = { 7247, 7292, 7308 }, + ["IR"] = { 7247, 7308 }, + }, + ["pre"] = { 1959 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4568 }, + }, + }, + [1961] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 4576 }, + }, + ["lvl"] = 15, + ["min"] = 15, + ["obj"] = { + ["I"] = { 2589, 7293 }, + }, + ["pre"] = { 1960 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4568 }, + }, + }, + [1962] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 4576 }, + }, + ["lvl"] = 15, + ["min"] = 15, + ["pre"] = { 1961 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4576 }, + }, + }, + [1963] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 6446 }, + }, + ["lvl"] = 13, + ["min"] = 10, + ["obj"] = { + ["I"] = { 7209 }, + }, + ["pre"] = { 1859 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 6446 }, + }, + }, + [1978] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 2425 }, + }, + ["lvl"] = 13, + ["min"] = 10, + ["pre"] = { 1899 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 6467 }, + }, + }, + [1998] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 6467 }, + }, + ["lvl"] = 16, + ["min"] = 16, + ["obj"] = { + ["I"] = { 7306 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 6467 }, + }, + }, + [1999] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 6467 }, + }, + ["lvl"] = 20, + ["min"] = 16, + ["obj"] = { + ["I"] = { 7309 }, + }, + ["pre"] = { 1998 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 6467 }, + }, + }, + [2038] = { + ["end"] = { + ["U"] = { 6577 }, + }, + ["lvl"] = 15, + ["min"] = 12, + ["obj"] = { + ["I"] = { 7343, 7345, 7346, 7376 }, + }, + ["pre"] = { 2039 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6577 }, + }, + }, + [2039] = { + ["end"] = { + ["U"] = { 6577 }, + }, + ["lvl"] = 15, + ["min"] = 12, + ["race"] = 589, + ["start"] = { + ["U"] = { 6569 }, + }, + }, + [2040] = { + ["end"] = { + ["U"] = { 6579 }, + }, + ["lvl"] = 20, + ["min"] = 15, + ["obj"] = { + ["I"] = { 7365 }, + }, + ["pre"] = { 2041 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6579 }, + }, + }, + [2041] = { + ["end"] = { + ["U"] = { 6579 }, + }, + ["lvl"] = 15, + ["min"] = 15, + ["race"] = 589, + ["start"] = { + ["U"] = { 6569 }, + }, + }, + [2078] = { + ["end"] = { + ["U"] = { 6667 }, + }, + ["lvl"] = 20, + ["min"] = 14, + ["obj"] = { + ["U"] = { 6669 }, + }, + ["pre"] = { 2098 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6667 }, + }, + }, + [2098] = { + ["end"] = { + ["U"] = { 6667 }, + }, + ["lvl"] = 20, + ["min"] = 14, + ["obj"] = { + ["I"] = { 7498, 7499, 7500 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6667 }, + }, + }, + [2118] = { + ["end"] = { + ["U"] = { 3701 }, + }, + ["lvl"] = 14, + ["min"] = 10, + ["obj"] = { + ["U"] = { 11836 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3701 }, + }, + }, + [2138] = { + ["end"] = { + ["U"] = { 3701 }, + }, + ["lvl"] = 16, + ["min"] = 10, + ["obj"] = { + ["U"] = { 2164 }, + }, + ["pre"] = { 2118 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3701 }, + }, + }, + [2139] = { + ["end"] = { + ["U"] = { 3701 }, + }, + ["lvl"] = 18, + ["min"] = 10, + ["obj"] = { + ["U"] = { 6788 }, + }, + ["pre"] = { 2138 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3701 }, + }, + }, + [2158] = { + ["end"] = { + ["U"] = { 295 }, + }, + ["lvl"] = 5, + ["min"] = 1, + ["race"] = 589, + ["start"] = { + ["U"] = { 6774 }, + }, + }, + [2159] = { + ["end"] = { + ["U"] = { 6736 }, + }, + ["lvl"] = 5, + ["min"] = 1, + ["race"] = 589, + ["start"] = { + ["U"] = { 6780 }, + }, + }, + [2160] = { + ["end"] = { + ["U"] = { 6806 }, + }, + ["lvl"] = 5, + ["min"] = 1, + ["race"] = 589, + ["start"] = { + ["U"] = { 6782 }, + }, + }, + [2161] = { + ["end"] = { + ["U"] = { 6928 }, + }, + ["lvl"] = 5, + ["min"] = 1, + ["race"] = 434, + ["start"] = { + ["U"] = { 6786 }, + }, + }, + [2178] = { + ["end"] = { + ["U"] = { 3702 }, + }, + ["lvl"] = 12, + ["min"] = 9, + ["obj"] = { + ["I"] = { 5469 }, + }, + ["race"] = 589, + ["skill"] = 185, + ["start"] = { + ["U"] = { 3702 }, + }, + }, + [2198] = { + ["end"] = { + ["U"] = { 6826 }, + }, + ["lvl"] = 41, + ["min"] = 37, + ["race"] = 589, + ["start"] = { + ["I"] = { 7666 }, + }, + }, + [2199] = { + ["end"] = { + ["U"] = { 6826 }, + }, + ["lvl"] = 41, + ["min"] = 37, + ["obj"] = { + ["I"] = { 2842 }, + }, + ["pre"] = { 2198 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6826 }, + }, + }, + [2200] = { + ["end"] = { + ["U"] = { 6912 }, + }, + ["lvl"] = 42, + ["min"] = 37, + ["pre"] = { 2199 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6826 }, + }, + }, + [2201] = { + ["end"] = { + ["O"] = { 112877 }, + ["U"] = { 6826 }, + }, + ["lvl"] = 43, + ["min"] = 37, + ["obj"] = { + ["I"] = { 7669, 7670, 7671 }, + }, + ["pre"] = { 2200 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6912 }, + }, + }, + [2202] = { + ["end"] = { + ["U"] = { 6868 }, + }, + ["lvl"] = 42, + ["min"] = 36, + ["obj"] = { + ["I"] = { 8047 }, + }, + ["pre"] = { 2258 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 6868 }, + }, + }, + [2203] = { + ["end"] = { + ["U"] = { 6868 }, + }, + ["lvl"] = 44, + ["min"] = 40, + ["obj"] = { + ["I"] = { 7867 }, + }, + ["pre"] = { 2202 }, + ["race"] = 434, + ["skill"] = 171, + ["start"] = { + ["U"] = { 6868 }, + }, + }, + [2204] = { + ["end"] = { + ["U"] = { 6826 }, + }, + ["lvl"] = 44, + ["min"] = 37, + ["obj"] = { + ["I"] = { 7672 }, + }, + ["pre"] = { 2201 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 112877 }, + ["U"] = { 6826 }, + }, + }, + [2205] = { + ["class"] = 8, + ["close"] = { 2205, 2218, 2241 }, + ["end"] = { + ["U"] = { 332 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 589, + ["start"] = { + ["U"] = { 917 }, + }, + }, + [2206] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 332 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["I"] = { 7675 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 332 }, + }, + }, + [2218] = { + ["class"] = 8, + ["close"] = { 2205, 2218, 2241 }, + ["end"] = { + ["U"] = { 5165 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 589, + ["start"] = { + ["U"] = { 1234 }, + }, + }, + [2238] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 6886 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 2218 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5165 }, + }, + }, + [2239] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 5165 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 2238 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6886 }, + }, + }, + [2240] = { + ["end"] = { + ["U"] = { 1356 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["obj"] = { + ["A"] = { 822 }, + }, + ["pre"] = { 2398 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6906 }, + }, + }, + [2241] = { + ["class"] = 8, + ["close"] = { 2205, 2218, 2241 }, + ["end"] = { + ["U"] = { 4163 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 589, + ["start"] = { + ["U"] = { 3599 }, + }, + }, + [2242] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 4163 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["I"] = { 7737 }, + }, + ["pre"] = { 2241 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4163 }, + }, + }, + [2258] = { + ["end"] = { + ["U"] = { 6868 }, + }, + ["lvl"] = 39, + ["min"] = 36, + ["obj"] = { + ["I"] = { 7846, 7847, 7848 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 6868 }, + }, + }, + [2259] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 4214 }, + }, + ["lvl"] = 16, + ["min"] = 16, + ["pre"] = { 2241 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3599 }, + }, + }, + [2260] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 6946 }, + }, + ["lvl"] = 16, + ["min"] = 16, + ["pre"] = { 2259 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4214 }, + }, + }, + [2279] = { + ["end"] = { + ["U"] = { 5387 }, + }, + ["lvl"] = 47, + ["min"] = 40, + ["pre"] = { 2278 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 131474 }, + }, + }, + [2280] = { + ["end"] = { + ["U"] = { 3978 }, + }, + ["lvl"] = 47, + ["min"] = 40, + ["pre"] = { 2278 }, + ["race"] = 434, + ["start"] = { + ["O"] = { 131474 }, + }, + }, + [2281] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 6966 }, + }, + ["lvl"] = 16, + ["min"] = 16, + ["pre"] = { 2300 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6946 }, + }, + }, + [2282] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 6966 }, + }, + ["lvl"] = 20, + ["min"] = 16, + ["obj"] = { + ["I"] = { 7871 }, + }, + ["pre"] = { 2281 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6966 }, + }, + }, + [2283] = { + ["end"] = { + ["U"] = { 6986 }, + }, + ["lvl"] = 41, + ["min"] = 37, + ["obj"] = { + ["I"] = { 7666 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 6986 }, + }, + }, + [2284] = { + ["end"] = { + ["U"] = { 6912 }, + }, + ["lvl"] = 41, + ["min"] = 37, + ["pre"] = { 2283 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 6986 }, + }, + }, + [2298] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 6946 }, + }, + ["lvl"] = 16, + ["min"] = 16, + ["pre"] = { 2299 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5165 }, + }, + }, + [2299] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 5165 }, + }, + ["lvl"] = 16, + ["min"] = 16, + ["pre"] = { 2218 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1234 }, + }, + }, + [2300] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 6946 }, + }, + ["lvl"] = 16, + ["min"] = 16, + ["pre"] = { 2205 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 917 }, + }, + }, + [2318] = { + ["end"] = { + ["U"] = { 6868 }, + }, + ["lvl"] = 42, + ["min"] = 37, + ["pre"] = { 2284 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 6912 }, + }, + }, + [2338] = { + ["end"] = { + ["U"] = { 6868 }, + }, + ["lvl"] = 42, + ["min"] = 37, + ["pre"] = { 2318 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 6868 }, + }, + }, + [2339] = { + ["end"] = { + ["U"] = { 6868 }, + }, + ["lvl"] = 44, + ["min"] = 37, + ["obj"] = { + ["I"] = { 7669, 7670, 7671, 7672 }, + }, + ["pre"] = { 2338 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 6868 }, + }, + }, + [2340] = { + ["end"] = { + ["U"] = { 6986 }, + }, + ["lvl"] = 44, + ["min"] = 37, + ["pre"] = { 2339 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 6868 }, + }, + }, + [2341] = { + ["end"] = { + ["U"] = { 6868 }, + }, + ["lvl"] = 44, + ["min"] = 37, + ["pre"] = { 2340 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 6986 }, + }, + }, + [2342] = { + ["end"] = { + ["U"] = { 5651 }, + }, + ["lvl"] = 43, + ["min"] = 33, + ["obj"] = { + ["I"] = { 8026 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5651 }, + }, + }, + [2358] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 7009 }, + }, + ["lvl"] = 22, + ["min"] = 16, + ["obj"] = { + ["I"] = { 7906 }, + }, + ["pre"] = { 2282 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 7009 }, + }, + }, + [2359] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 332 }, + }, + ["lvl"] = 24, + ["min"] = 20, + ["obj"] = { + ["I"] = { 7908, 7923 }, + }, + ["pre"] = { 2360 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 7024 }, + }, + }, + [2360] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 7024 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["race"] = 589, + ["start"] = { + ["U"] = { 332 }, + }, + }, + [2361] = { + ["end"] = { + ["U"] = { 6826 }, + }, + ["lvl"] = 44, + ["min"] = 37, + ["pre"] = { 2204 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6826 }, + }, + }, + [2378] = { + ["class"] = 8, + ["close"] = { 2378, 2380 }, + ["end"] = { + ["U"] = { 3401 }, + }, + ["lvl"] = 16, + ["min"] = 16, + ["race"] = 434, + ["start"] = { + ["U"] = { 6467 }, + }, + }, + [2379] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 3402 }, + }, + ["lvl"] = 16, + ["min"] = 16, + ["pre"] = { 2378, 2380 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3401 }, + }, + }, + [2380] = { + ["class"] = 8, + ["close"] = { 2378, 2380 }, + ["end"] = { + ["U"] = { 3401 }, + }, + ["lvl"] = 16, + ["min"] = 16, + ["race"] = 434, + ["start"] = { + ["U"] = { 3170 }, + }, + }, + [2381] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 7161 }, + }, + ["lvl"] = 18, + ["min"] = 16, + ["obj"] = { + ["I"] = { 7968 }, + }, + ["pre"] = { 2382 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 7161 }, + }, + }, + [2382] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 7161 }, + }, + ["lvl"] = 16, + ["min"] = 16, + ["pre"] = { 2379 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3402 }, + }, + }, + [2383] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 3153 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 788 }, + ["race"] = 50, + ["start"] = { + ["U"] = { 3143 }, + }, + }, + [2398] = { + ["end"] = { + ["U"] = { 6906 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["race"] = 589, + ["start"] = { + ["U"] = { 1356 }, + }, + }, + [2399] = { + ["end"] = { + ["O"] = { 7510 }, + }, + ["lvl"] = 10, + ["min"] = 4, + ["pre"] = { 931 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 7510 }, + }, + }, + [2438] = { + ["end"] = { + ["U"] = { 3567 }, + }, + ["lvl"] = 6, + ["min"] = 1, + ["obj"] = { + ["I"] = { 8048 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3567 }, + }, + }, + [2439] = { + ["end"] = { + ["U"] = { 7292 }, + }, + ["lvl"] = 47, + ["min"] = 40, + ["pre"] = { 2279 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5387 }, + }, + }, + [2440] = { + ["end"] = { + ["U"] = { 3009 }, + }, + ["lvl"] = 47, + ["min"] = 40, + ["pre"] = { 2280 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3978 }, + }, + }, + [2458] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 7233 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["obj"] = { + ["IR"] = { 8051 }, + }, + ["pre"] = { 2460 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3401 }, + }, + }, + [2459] = { + ["end"] = { + ["U"] = { 3567 }, + }, + ["lvl"] = 8, + ["min"] = 1, + ["obj"] = { + ["I"] = { 8049, 8050 }, + ["U"] = { 7235 }, + }, + ["pre"] = { 2438 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3567 }, + }, + }, + [2460] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 3401 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["race"] = 434, + ["start"] = { + ["U"] = { 3401 }, + }, + }, + [2478] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 3401 }, + }, + ["lvl"] = 24, + ["min"] = 20, + ["obj"] = { + ["I"] = { 8072, 8073, 8074 }, + ["U"] = { 7307, 7308, 7310 }, + }, + ["pre"] = { 2458 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 7233 }, + }, + }, + [2479] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 2391 }, + }, + ["lvl"] = 26, + ["min"] = 20, + ["pre"] = { 2478 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3401 }, + }, + }, + [2480] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 2391 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["pre"] = { 2479 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2391 }, + }, + }, + [2498] = { + ["end"] = { + ["U"] = { 2080 }, + }, + ["lvl"] = 9, + ["min"] = 4, + ["pre"] = { 923 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3517 }, + }, + }, + [2499] = { + ["end"] = { + ["U"] = { 2080 }, + }, + ["lvl"] = 9, + ["min"] = 4, + ["obj"] = { + ["I"] = { 8136 }, + }, + ["pre"] = { 2498 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2080 }, + }, + }, + [2500] = { + ["end"] = { + ["U"] = { 1470 }, + }, + ["lvl"] = 39, + ["min"] = 36, + ["obj"] = { + ["I"] = { 7846, 7847, 7848 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1470 }, + }, + }, + [2501] = { + ["end"] = { + ["U"] = { 1470 }, + }, + ["lvl"] = 44, + ["min"] = 40, + ["obj"] = { + ["I"] = { 7867 }, + }, + ["pre"] = { 2500 }, + ["race"] = 589, + ["skill"] = 171, + ["start"] = { + ["U"] = { 1470 }, + }, + }, + [2518] = { + ["end"] = { + ["U"] = { 7313 }, + }, + ["lvl"] = 12, + ["min"] = 5, + ["obj"] = { + ["I"] = { 8344 }, + }, + ["pre"] = { 2519 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 7313 }, + }, + }, + [2519] = { + ["end"] = { + ["U"] = { 7313 }, + }, + ["lvl"] = 10, + ["min"] = 5, + ["race"] = 589, + ["start"] = { + ["U"] = { 7316 }, + }, + }, + [2520] = { + ["end"] = { + ["U"] = { 7313 }, + }, + ["lvl"] = 12, + ["min"] = 5, + ["obj"] = { + ["IR"] = { 8155 }, + }, + ["pre"] = { 2518 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 7313 }, + }, + }, + [2541] = { + ["end"] = { + ["U"] = { 7317 }, + }, + ["lvl"] = 8, + ["min"] = 3, + ["obj"] = { + ["I"] = { 8363 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 7317 }, + }, + }, + [2561] = { + ["end"] = { + ["U"] = { 7317 }, + }, + ["lvl"] = 10, + ["min"] = 3, + ["obj"] = { + ["IR"] = { 8149 }, + }, + ["pre"] = { 2541 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 7317 }, + }, + }, + [2607] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 7207 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["pre"] = { 2359 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 332 }, + }, + }, + [2608] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 7207 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["pre"] = { 2607 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 7207 }, + }, + }, + [2609] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 7207 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["obj"] = { + ["I"] = { 3372, 3421, 4371, 8431 }, + }, + ["pre"] = { 2608 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 7207 }, + }, + }, + [2621] = { + ["end"] = { + ["U"] = { 7623 }, + }, + ["lvl"] = 50, + ["min"] = 45, + ["pre"] = { 2784 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 7572 }, + }, + }, + [2622] = { + ["end"] = { + ["U"] = { 7643 }, + }, + ["lvl"] = 50, + ["min"] = 45, + ["pre"] = { 2621 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 7623 }, + }, + }, + [2623] = { + ["end"] = { + ["U"] = { 7572 }, + }, + ["lvl"] = 55, + ["min"] = 45, + ["obj"] = { + ["I"] = { 8463 }, + }, + ["pre"] = { 2622 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 7643 }, + }, + }, + [2742] = { + ["end"] = { + ["O"] = { 142127 }, + }, + ["lvl"] = 47, + ["min"] = 42, + ["race"] = 434, + ["start"] = { + ["U"] = { 7780 }, + }, + }, + [2745] = { + ["end"] = { + ["U"] = { 7766 }, + }, + ["lvl"] = 31, + ["min"] = 16, + ["pre"] = { 350 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 482 }, + }, + }, + [2746] = { + ["end"] = { + ["U"] = { 7766 }, + }, + ["lvl"] = 31, + ["min"] = 16, + ["obj"] = { + ["I"] = { 4306, 8683 }, + }, + ["pre"] = { 2745 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 7766 }, + }, + }, + [2751] = { + ["end"] = { + ["U"] = { 7790 }, + }, + ["lvl"] = 32, + ["min"] = 32, + ["obj"] = { + ["I"] = { 2868, 5635, 7957 }, + }, + ["race"] = 434, + ["skill"] = 164, + ["start"] = { + ["U"] = { 7790 }, + }, + }, + [2752] = { + ["end"] = { + ["U"] = { 7790 }, + }, + ["lvl"] = 32, + ["min"] = 32, + ["obj"] = { + ["I"] = { 7956, 7958 }, + }, + ["pre"] = { 2751 }, + ["race"] = 434, + ["skill"] = 164, + ["start"] = { + ["U"] = { 7790 }, + }, + }, + [2753] = { + ["end"] = { + ["U"] = { 7790 }, + }, + ["lvl"] = 36, + ["min"] = 32, + ["obj"] = { + ["I"] = { 3835, 3836, 3842 }, + }, + ["pre"] = { 2752 }, + ["race"] = 434, + ["skill"] = 164, + ["start"] = { + ["U"] = { 7790 }, + }, + }, + [2754] = { + ["end"] = { + ["U"] = { 7790 }, + }, + ["lvl"] = 36, + ["min"] = 32, + ["obj"] = { + ["I"] = { 3482, 3483, 3851 }, + }, + ["pre"] = { 2753 }, + ["race"] = 434, + ["skill"] = 164, + ["start"] = { + ["U"] = { 7790 }, + }, + }, + [2755] = { + ["end"] = { + ["U"] = { 7790 }, + }, + ["lvl"] = 36, + ["min"] = 32, + ["pre"] = { 2754 }, + ["race"] = 434, + ["skill"] = 164, + ["start"] = { + ["U"] = { 7790 }, + }, + }, + [2756] = { + ["end"] = { + ["U"] = { 7792 }, + }, + ["lvl"] = 40, + ["min"] = 40, + ["obj"] = { + ["I"] = { 7922, 7963 }, + }, + ["race"] = 434, + ["skill"] = 164, + ["start"] = { + ["U"] = { 7792 }, + }, + }, + [2757] = { + ["end"] = { + ["U"] = { 7794 }, + }, + ["lvl"] = 40, + ["min"] = 40, + ["pre"] = { 2756 }, + ["race"] = 434, + ["skill"] = 164, + ["start"] = { + ["U"] = { 7793 }, + }, + }, + [2758] = { + ["end"] = { + ["U"] = { 7798 }, + }, + ["lvl"] = 40, + ["min"] = 40, + ["obj"] = { + ["I"] = { 6040 }, + }, + ["race"] = 589, + ["skill"] = 164, + ["start"] = { + ["U"] = { 7798 }, + }, + }, + [2759] = { + ["end"] = { + ["U"] = { 7794 }, + }, + ["lvl"] = 40, + ["min"] = 40, + ["pre"] = { 2758 }, + ["race"] = 589, + ["skill"] = 164, + ["start"] = { + ["U"] = { 7798 }, + }, + }, + [2769] = { + ["end"] = { + ["U"] = { 4453 }, + }, + ["lvl"] = 46, + ["min"] = 40, + ["race"] = 589, + ["start"] = { + ["U"] = { 6169 }, + }, + }, + [2782] = { + ["end"] = { + ["U"] = { 7825 }, + }, + ["lvl"] = 47, + ["min"] = 42, + ["pre"] = { 2742 }, + ["race"] = 434, + ["start"] = { + ["O"] = { 142127 }, + }, + }, + [2783] = { + ["end"] = { + ["U"] = { 7572 }, + }, + ["lvl"] = 57, + ["min"] = 50, + ["race"] = 589, + ["start"] = { + ["U"] = { 7826 }, + }, + }, + [2784] = { + ["end"] = { + ["U"] = { 7572 }, + }, + ["lvl"] = 50, + ["min"] = 45, + ["race"] = 434, + ["start"] = { + ["U"] = { 7572 }, + }, + }, + [2821] = { + ["end"] = { + ["U"] = { 7852 }, + }, + ["lvl"] = 46, + ["min"] = 40, + ["obj"] = { + ["I"] = { 8973 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 7852 }, + }, + }, + [2822] = { + ["end"] = { + ["U"] = { 7854 }, + }, + ["lvl"] = 46, + ["min"] = 40, + ["obj"] = { + ["I"] = { 8973 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 7854 }, + }, + }, + [2841] = { + ["end"] = { + ["U"] = { 3412 }, + }, + ["lvl"] = 35, + ["min"] = 25, + ["obj"] = { + ["I"] = { 9153, 9299 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3412 }, + }, + }, + [2842] = { + ["end"] = { + ["U"] = { 7853 }, + }, + ["lvl"] = 35, + ["min"] = 20, + ["pre"] = { 2841 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3413 }, + }, + }, + [2843] = { + ["end"] = { + ["U"] = { 7853 }, + }, + ["lvl"] = 35, + ["min"] = 20, + ["pre"] = { 2842 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 7853 }, + }, + }, + [2844] = { + ["end"] = { + ["U"] = { 7774 }, + }, + ["lvl"] = 49, + ["min"] = 44, + ["race"] = 589, + ["start"] = { + ["U"] = { 7765 }, + }, + }, + [2845] = { + ["end"] = { + ["U"] = { 7765 }, + }, + ["lvl"] = 49, + ["min"] = 44, + ["obj"] = { + ["I"] = { 9189 }, + ["IR"] = { 9189 }, + }, + ["pre"] = { 2844 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 7774 }, + }, + }, + [2847] = { + ["end"] = { + ["U"] = { 7852 }, + }, + ["lvl"] = 45, + ["min"] = 30, + ["obj"] = { + ["I"] = { 4304 }, + }, + ["race"] = 589, + ["skill"] = 165, + ["start"] = { + ["U"] = { 7852 }, + }, + }, + [2848] = { + ["end"] = { + ["U"] = { 7852 }, + }, + ["lvl"] = 45, + ["min"] = 30, + ["obj"] = { + ["I"] = { 8153, 8173 }, + }, + ["pre"] = { 2847 }, + ["race"] = 589, + ["skill"] = 165, + ["start"] = { + ["U"] = { 7852 }, + }, + }, + [2849] = { + ["end"] = { + ["U"] = { 7852 }, + }, + ["lvl"] = 45, + ["min"] = 30, + ["obj"] = { + ["I"] = { 8153, 8187, 8189 }, + }, + ["pre"] = { 2847 }, + ["race"] = 589, + ["skill"] = 165, + ["start"] = { + ["U"] = { 7852 }, + }, + }, + [2850] = { + ["end"] = { + ["U"] = { 7852 }, + }, + ["lvl"] = 45, + ["min"] = 30, + ["obj"] = { + ["I"] = { 8153, 8175, 8176 }, + }, + ["pre"] = { 2847 }, + ["race"] = 589, + ["skill"] = 165, + ["start"] = { + ["U"] = { 7852 }, + }, + }, + [2851] = { + ["end"] = { + ["U"] = { 7852 }, + }, + ["lvl"] = 45, + ["min"] = 30, + ["obj"] = { + ["I"] = { 8153, 8193, 8197 }, + }, + ["pre"] = { 2847 }, + ["race"] = 589, + ["skill"] = 165, + ["start"] = { + ["U"] = { 7852 }, + }, + }, + [2852] = { + ["end"] = { + ["U"] = { 7852 }, + }, + ["lvl"] = 45, + ["min"] = 30, + ["obj"] = { + ["I"] = { 8153, 8191, 8198 }, + }, + ["pre"] = { 2847 }, + ["race"] = 589, + ["skill"] = 165, + ["start"] = { + ["U"] = { 7852 }, + }, + }, + [2853] = { + ["end"] = { + ["U"] = { 4212 }, + }, + ["lvl"] = 45, + ["min"] = 30, + ["pre"] = { 2848, 2849, 2850, 2851, 2852 }, + ["race"] = 589, + ["skill"] = 165, + ["start"] = { + ["U"] = { 7852 }, + }, + }, + [2854] = { + ["end"] = { + ["U"] = { 7854 }, + }, + ["lvl"] = 45, + ["min"] = 30, + ["obj"] = { + ["I"] = { 4304 }, + }, + ["race"] = 434, + ["skill"] = 165, + ["start"] = { + ["U"] = { 7854 }, + }, + }, + [2855] = { + ["end"] = { + ["U"] = { 7854 }, + }, + ["lvl"] = 45, + ["min"] = 30, + ["obj"] = { + ["I"] = { 8153, 8173 }, + }, + ["pre"] = { 2854 }, + ["race"] = 434, + ["skill"] = 165, + ["start"] = { + ["U"] = { 7854 }, + }, + }, + [2856] = { + ["end"] = { + ["U"] = { 7854 }, + }, + ["lvl"] = 45, + ["min"] = 30, + ["obj"] = { + ["I"] = { 8153, 8187, 8189 }, + }, + ["pre"] = { 2854 }, + ["race"] = 434, + ["skill"] = 165, + ["start"] = { + ["U"] = { 7854 }, + }, + }, + [2857] = { + ["end"] = { + ["U"] = { 7854 }, + }, + ["lvl"] = 45, + ["min"] = 30, + ["obj"] = { + ["I"] = { 8153, 8175, 8176 }, + }, + ["pre"] = { 2854 }, + ["race"] = 434, + ["skill"] = 165, + ["start"] = { + ["U"] = { 7854 }, + }, + }, + [2858] = { + ["end"] = { + ["U"] = { 7854 }, + }, + ["lvl"] = 45, + ["min"] = 30, + ["obj"] = { + ["I"] = { 8153, 8193, 8197 }, + }, + ["pre"] = { 2854 }, + ["race"] = 434, + ["skill"] = 165, + ["start"] = { + ["U"] = { 7854 }, + }, + }, + [2859] = { + ["end"] = { + ["U"] = { 7854 }, + }, + ["lvl"] = 45, + ["min"] = 30, + ["obj"] = { + ["I"] = { 8153, 8191, 8198 }, + }, + ["pre"] = { 2854 }, + ["race"] = 434, + ["skill"] = 165, + ["start"] = { + ["U"] = { 7854 }, + }, + }, + [2860] = { + ["end"] = { + ["U"] = { 3007 }, + }, + ["lvl"] = 45, + ["min"] = 30, + ["pre"] = { 2855, 2856, 2857, 2858, 2859 }, + ["race"] = 434, + ["skill"] = 165, + ["start"] = { + ["U"] = { 7854 }, + }, + }, + [2862] = { + ["end"] = { + ["U"] = { 7875 }, + }, + ["lvl"] = 42, + ["min"] = 39, + ["obj"] = { + ["I"] = { 9237 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 7875 }, + }, + }, + [2863] = { + ["end"] = { + ["U"] = { 7875 }, + }, + ["lvl"] = 43, + ["min"] = 39, + ["obj"] = { + ["U"] = { 5258 }, + }, + ["pre"] = { 2862 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 7875 }, + }, + }, + [2866] = { + ["end"] = { + ["O"] = { 142179 }, + }, + ["lvl"] = 43, + ["min"] = 40, + ["race"] = 589, + ["start"] = { + ["U"] = { 3936 }, + }, + }, + [2867] = { + ["end"] = { + ["U"] = { 3936 }, + }, + ["lvl"] = 43, + ["min"] = 40, + ["pre"] = { 2866 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 142179 }, + }, + }, + [2868] = "_", + [2869] = { + ["end"] = { + ["U"] = { 7877 }, + }, + ["lvl"] = 43, + ["min"] = 40, + ["obj"] = { + ["I"] = { 9247 }, + }, + ["pre"] = { 3130 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 7877 }, + }, + }, + [2870] = { + ["end"] = { + ["U"] = { 7877 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 9248 }, + }, + ["pre"] = { 2869 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 7877 }, + }, + }, + [2871] = { + ["end"] = { + ["U"] = { 7878 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["pre"] = { 2870 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 7877 }, + }, + }, + [2877] = { + ["end"] = { + ["U"] = { 7884 }, + }, + ["lvl"] = 48, + ["min"] = 40, + ["obj"] = { + ["U"] = { 2655, 2656 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 7884 }, + }, + }, + [2879] = { + ["end"] = { + ["O"] = { 144063 }, + }, + ["lvl"] = 50, + ["min"] = 42, + ["obj"] = { + ["I"] = { 9306 }, + ["IR"] = { 9263 }, + }, + ["pre"] = { 2943 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 7764 }, + }, + }, + [2880] = { + ["end"] = { + ["U"] = { 7884 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 9259 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 7884 }, + }, + }, + [2881] = { + ["end"] = { + ["U"] = { 7884 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 9259 }, + }, + ["pre"] = { 2880 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 7884 }, + }, + }, + [2902] = { + ["end"] = { + ["O"] = { 142195 }, + }, + ["lvl"] = 43, + ["min"] = 39, + ["pre"] = { 2863 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 7875 }, + }, + }, + [2903] = { + ["end"] = { + ["U"] = { 7875 }, + }, + ["lvl"] = 43, + ["min"] = 39, + ["pre"] = { 2902 }, + ["race"] = 434, + ["start"] = { + ["O"] = { 142195 }, + }, + }, + [2922] = { + ["end"] = { + ["U"] = { 7944 }, + }, + ["lvl"] = 26, + ["min"] = 20, + ["obj"] = { + ["I"] = { 9277 }, + }, + ["pre"] = { 2923 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 7944 }, + }, + }, + [2923] = { + ["end"] = { + ["U"] = { 7944 }, + }, + ["lvl"] = 26, + ["min"] = 20, + ["race"] = 589, + ["start"] = { + ["U"] = { 7917 }, + }, + }, + [2924] = { + ["end"] = { + ["U"] = { 6169 }, + }, + ["lvl"] = 30, + ["min"] = 24, + ["obj"] = { + ["I"] = { 9278 }, + }, + ["pre"] = { 2925 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6169 }, + }, + }, + [2925] = { + ["end"] = { + ["U"] = { 6169 }, + }, + ["lvl"] = 30, + ["min"] = 24, + ["race"] = 589, + ["start"] = { + ["U"] = { 6142 }, + }, + }, + [2926] = { + ["end"] = { + ["U"] = { 1268 }, + }, + ["lvl"] = 27, + ["min"] = 20, + ["obj"] = { + ["I"] = { 9284 }, + ["IR"] = { 9283 }, + }, + ["pre"] = { 2927 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1268 }, + }, + }, + [2927] = { + ["end"] = { + ["U"] = { 1268 }, + }, + ["lvl"] = 27, + ["min"] = 20, + ["race"] = 589, + ["start"] = { + ["U"] = { 6569 }, + }, + }, + [2928] = { + ["end"] = { + ["U"] = { 6579 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["obj"] = { + ["I"] = { 9309 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6579 }, + }, + }, + [2929] = { + ["end"] = { + ["U"] = { 7937 }, + }, + ["lvl"] = 35, + ["min"] = 25, + ["obj"] = { + ["U"] = { 7800 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 7937 }, + }, + }, + [2930] = { + ["end"] = { + ["U"] = { 7950 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["obj"] = { + ["I"] = { 9316 }, + }, + ["pre"] = { 2931 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 7950 }, + }, + }, + [2931] = { + ["end"] = { + ["U"] = { 7950 }, + }, + ["lvl"] = 28, + ["min"] = 25, + ["race"] = 589, + ["start"] = { + ["U"] = { 4077 }, + }, + }, + [2932] = { + ["end"] = { + ["U"] = { 2497 }, + }, + ["lvl"] = 42, + ["min"] = 35, + ["obj"] = { + ["I"] = { 9320 }, + ["O"] = { 142698, 142700 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2497 }, + }, + }, + [2933] = { + ["end"] = { + ["U"] = { 2216 }, + }, + ["lvl"] = 43, + ["min"] = 40, + ["race"] = 434, + ["start"] = { + ["O"] = { 142702 }, + }, + }, + [2934] = { + ["end"] = { + ["U"] = { 2216 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 9322 }, + }, + ["pre"] = { 2933 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2216 }, + }, + }, + [2935] = { + ["end"] = { + ["U"] = { 3188 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["pre"] = { 2934 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2216 }, + }, + }, + [2936] = { + ["end"] = { + ["O"] = { 142715 }, + ["U"] = { 3188 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["pre"] = { 2935 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3188 }, + }, + }, + [2937] = { + ["end"] = { + ["U"] = { 2216 }, + }, + ["lvl"] = 55, + ["min"] = 40, + ["obj"] = { + ["I"] = { 9324 }, + ["IR"] = { 9323 }, + }, + ["pre"] = { 2936 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3188 }, + }, + }, + [2938] = { + ["end"] = { + ["U"] = { 2055 }, + }, + ["lvl"] = 55, + ["min"] = 40, + ["pre"] = { 2937 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2216 }, + }, + }, + [2939] = { + ["end"] = { + ["U"] = { 7907 }, + }, + ["lvl"] = 47, + ["min"] = 42, + ["race"] = 589, + ["start"] = { + ["U"] = { 7764 }, + }, + }, + [2940] = { + ["end"] = { + ["U"] = { 7907 }, + }, + ["lvl"] = 47, + ["min"] = 42, + ["pre"] = { 2939 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 142958 }, + }, + }, + [2941] = { + ["end"] = { + ["U"] = { 7763 }, + }, + ["lvl"] = 48, + ["min"] = 42, + ["pre"] = { 2940 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 7907 }, + }, + }, + [2942] = { + ["end"] = { + ["U"] = { 7764 }, + }, + ["lvl"] = 50, + ["min"] = 42, + ["obj"] = { + ["I"] = { 9307 }, + }, + ["pre"] = { 2879 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 144063 }, + }, + }, + [2943] = { + ["end"] = { + ["U"] = { 7764 }, + }, + ["lvl"] = 48, + ["min"] = 42, + ["pre"] = { 2944 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 7907 }, + }, + }, + [2944] = { + ["end"] = { + ["U"] = { 7907 }, + }, + ["lvl"] = 48, + ["min"] = 42, + ["obj"] = { + ["I"] = { 9330 }, + ["IR"] = { 9328 }, + }, + ["pre"] = { 2941 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 7763 }, + }, + }, + [2946] = { + ["end"] = { + ["O"] = { 142343 }, + }, + ["lvl"] = 50, + ["min"] = 45, + ["pre"] = { 2963 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2916 }, + }, + }, + [2947] = { + ["end"] = { + ["U"] = { 6826 }, + }, + ["lvl"] = 34, + ["min"] = 28, + ["pre"] = { 2945 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 142487 }, + }, + }, + [2948] = { + ["end"] = { + ["U"] = { 6826 }, + }, + ["lvl"] = 35, + ["min"] = 28, + ["obj"] = { + ["I"] = { 1206, 2842 }, + }, + ["pre"] = { 2947 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6826 }, + }, + }, + [2949] = { + ["end"] = { + ["U"] = { 3412 }, + }, + ["lvl"] = 34, + ["min"] = 28, + ["pre"] = { 2945 }, + ["race"] = 434, + ["start"] = { + ["O"] = { 142487 }, + }, + }, + [2950] = { + ["end"] = { + ["U"] = { 3412 }, + }, + ["lvl"] = 35, + ["min"] = 28, + ["obj"] = { + ["I"] = { 1206, 2842 }, + }, + ["pre"] = { 2949 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3412 }, + }, + }, + [2954] = { + ["end"] = { + ["O"] = { 142343 }, + ["U"] = { 7918 }, + }, + ["lvl"] = 50, + ["min"] = 45, + ["start"] = { + ["U"] = { 7918 }, + }, + }, + [2962] = { + ["end"] = { + ["U"] = { 1268 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["obj"] = { + ["I"] = { 9365 }, + ["IR"] = { 9364 }, + }, + ["pre"] = { 2926 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1268 }, + }, + }, + [2963] = { + ["end"] = { + ["U"] = { 2916 }, + }, + ["lvl"] = 50, + ["min"] = 45, + ["pre"] = { 2439 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5387 }, + }, + }, + [2964] = { + ["end"] = { + ["U"] = { 5387 }, + }, + ["lvl"] = 50, + ["min"] = 45, + ["pre"] = { 2977 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2916 }, + }, + }, + [2965] = { + ["end"] = { + ["U"] = { 5770 }, + }, + ["lvl"] = 50, + ["min"] = 45, + ["pre"] = { 2440 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3978 }, + }, + }, + [2966] = { + ["end"] = { + ["O"] = { 142343 }, + }, + ["lvl"] = 50, + ["min"] = 45, + ["pre"] = { 2965 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5770 }, + }, + }, + [2967] = { + ["end"] = { + ["U"] = { 5770 }, + }, + ["lvl"] = 50, + ["min"] = 45, + ["pre"] = { 2954 }, + ["race"] = 434, + ["start"] = { + ["O"] = { 142343 }, + ["U"] = { 7918 }, + }, + }, + [2968] = { + ["end"] = { + ["U"] = { 3978 }, + }, + ["lvl"] = 50, + ["min"] = 45, + ["pre"] = { 2967 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5770 }, + }, + }, + [2969] = { + ["end"] = { + ["U"] = { 7956 }, + }, + ["lvl"] = 47, + ["min"] = 38, + ["race"] = 589, + ["start"] = { + ["U"] = { 7956 }, + }, + }, + [2970] = { + ["end"] = { + ["U"] = { 7957 }, + }, + ["lvl"] = 47, + ["min"] = 38, + ["obj"] = { + ["U"] = { 7725, 7726, 7727 }, + }, + ["pre"] = { 2969 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 7957 }, + }, + }, + [2971] = "_", + [2972] = { + ["end"] = { + ["U"] = { 7999 }, + }, + ["lvl"] = 47, + ["min"] = 38, + ["pre"] = { 2970 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 7957 }, + }, + }, + [2973] = { + ["end"] = { + ["U"] = { 4544 }, + }, + ["lvl"] = 45, + ["min"] = 38, + ["obj"] = { + ["I"] = { 9369 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4544 }, + }, + }, + [2974] = { + ["end"] = { + ["U"] = { 4544 }, + }, + ["lvl"] = 45, + ["min"] = 38, + ["obj"] = { + ["I"] = { 9460 }, + }, + ["pre"] = { 2973 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4544 }, + }, + }, + [2975] = { + ["end"] = { + ["U"] = { 7777 }, + }, + ["lvl"] = 43, + ["min"] = 38, + ["obj"] = { + ["U"] = { 5229, 5232, 5237 }, + }, + ["pre"] = { 2981 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 7777 }, + }, + }, + [2976] = { + ["end"] = { + ["U"] = { 4485 }, + }, + ["lvl"] = 45, + ["min"] = 37, + ["pre"] = { 2974 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4544 }, + }, + }, + [2977] = { + ["end"] = { + ["U"] = { 2916 }, + }, + ["lvl"] = 50, + ["min"] = 45, + ["pre"] = { 2954 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 142343 }, + ["U"] = { 7918 }, + }, + }, + [2978] = { + ["end"] = { + ["U"] = { 7777 }, + }, + ["lvl"] = 43, + ["min"] = 38, + ["race"] = 434, + ["start"] = { + ["I"] = { 9370 }, + }, + }, + [2979] = { + ["end"] = { + ["U"] = { 7777 }, + }, + ["lvl"] = 46, + ["min"] = 38, + ["obj"] = { + ["I"] = { 9371 }, + }, + ["pre"] = { 2978 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 7777 }, + }, + }, + [2980] = { + ["end"] = { + ["U"] = { 7777 }, + }, + ["lvl"] = 44, + ["min"] = 38, + ["obj"] = { + ["U"] = { 5234, 5236, 5240 }, + }, + ["pre"] = { 2975 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 7777 }, + }, + }, + [2981] = { + ["end"] = { + ["U"] = { 7777 }, + }, + ["lvl"] = 43, + ["min"] = 38, + ["race"] = 434, + ["start"] = { + ["U"] = { 4485 }, + }, + }, + [2982] = { + ["end"] = { + ["U"] = { 7900 }, + }, + ["lvl"] = 44, + ["min"] = 39, + ["obj"] = { + ["U"] = { 5232, 5236, 5240 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 7900 }, + }, + }, + [2983] = { + ["class"] = 64, + ["close"] = { 1522, 1523, 2983, 2984 }, + ["end"] = { + ["U"] = { 5907 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 434, + ["start"] = { + ["U"] = { 3173 }, + }, + }, + [2984] = { + ["class"] = 64, + ["close"] = { 1522, 1523, 2983, 2984 }, + ["end"] = { + ["U"] = { 5907 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 434, + ["start"] = { + ["U"] = { 3066 }, + }, + }, + [2985] = { + ["class"] = 64, + ["close"] = { 1528, 1529, 2985 }, + ["end"] = { + ["U"] = { 5901 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["race"] = 130, + }, + [2986] = { + ["class"] = 64, + ["lvl"] = 20, + ["min"] = 20, + ["race"] = 434, + }, + [2987] = { + ["end"] = { + ["U"] = { 8021 }, + }, + ["lvl"] = 43, + ["min"] = 38, + ["obj"] = { + ["I"] = { 9463 }, + ["IR"] = { 9466 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 8021 }, + }, + }, + [2988] = { + ["end"] = { + ["U"] = { 5636 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["O"] = { 144066, 144067, 144068 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5636 }, + }, + }, + [2989] = { + ["end"] = { + ["U"] = { 5636 }, + }, + ["lvl"] = 48, + ["min"] = 40, + ["obj"] = { + ["A"] = { 1205 }, + }, + ["pre"] = { 2988 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5636 }, + }, + }, + [2990] = { + ["end"] = { + ["U"] = { 8022 }, + }, + ["lvl"] = 47, + ["min"] = 40, + ["pre"] = { 2989 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5636 }, + }, + }, + [2991] = { + ["end"] = { + ["U"] = { 8022 }, + }, + ["lvl"] = 47, + ["min"] = 40, + ["obj"] = { + ["I"] = { 9471 }, + }, + ["pre"] = { 2990 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 8022 }, + }, + }, + [2992] = { + ["end"] = { + ["U"] = { 8022 }, + }, + ["lvl"] = 47, + ["min"] = 40, + ["pre"] = { 2991 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 8022 }, + }, + }, + [2993] = { + ["end"] = { + ["U"] = { 5636 }, + }, + ["lvl"] = 47, + ["min"] = 40, + ["pre"] = { 2992 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 8022 }, + }, + }, + [2994] = { + ["end"] = { + ["U"] = { 5636 }, + }, + ["lvl"] = 51, + ["min"] = 40, + ["obj"] = { + ["I"] = { 9472 }, + ["IR"] = { 9472 }, + ["O"] = { 144070 }, + }, + ["pre"] = { 2993 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5636 }, + }, + }, + [2995] = { + ["end"] = { + ["U"] = { 7825 }, + }, + ["lvl"] = 47, + ["min"] = 42, + ["obj"] = { + ["O"] = { 144071, 144072, 144073 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 7825 }, + }, + }, + [2996] = { + ["class"] = 256, + ["close"] = { 2996, 3001 }, + ["end"] = { + ["U"] = { 6251 }, + }, + ["lvl"] = 30, + ["min"] = 30, + ["race"] = 434, + ["start"] = { + ["U"] = { 5875 }, + }, + }, + [2998] = { + ["class"] = 2, + ["close"] = { 2998, 3681 }, + ["end"] = { + ["U"] = { 6171 }, + }, + ["lvl"] = 12, + ["min"] = 12, + ["race"] = 515, + ["start"] = { + ["U"] = { 927 }, + }, + }, + [3001] = { + ["class"] = 256, + ["close"] = { 2996, 3001 }, + ["end"] = { + ["U"] = { 6251 }, + }, + ["lvl"] = 30, + ["min"] = 30, + ["race"] = 434, + ["start"] = { + ["U"] = { 5675 }, + }, + }, + [3002] = { + ["end"] = { + ["U"] = { 7311 }, + }, + ["lvl"] = 47, + ["min"] = 38, + ["pre"] = { 2979 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 7777 }, + }, + }, + [3022] = { + ["end"] = { + ["U"] = { 7916 }, + }, + ["lvl"] = 47, + ["min"] = 42, + ["race"] = 589, + ["start"] = { + ["U"] = { 7763 }, + }, + }, + [3062] = { + ["end"] = { + ["U"] = { 7776 }, + }, + ["lvl"] = 50, + ["min"] = 45, + ["obj"] = { + ["I"] = { 9528, 9530 }, + ["IR"] = { 9530 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 7776 }, + }, + }, + [3063] = { + ["end"] = { + ["U"] = { 7776 }, + }, + ["lvl"] = 50, + ["min"] = 45, + ["obj"] = { + ["U"] = { 5362, 5363, 5364, 5366 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 7776 }, + }, + }, + [3064] = "_", + [3085] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 3707 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 788 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3143 }, + }, + }, + [3086] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 5884 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 788 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3143 }, + }, + }, + [3087] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 3154 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 788 }, + ["race"] = 50, + ["start"] = { + ["U"] = { 3143 }, + }, + }, + [3088] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 3155 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 788 }, + ["race"] = 50, + ["start"] = { + ["U"] = { 3143 }, + }, + }, + [3089] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 3157 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 788 }, + ["race"] = 50, + ["start"] = { + ["U"] = { 3143 }, + }, + }, + [3090] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 3156 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 788 }, + ["race"] = 306, + ["start"] = { + ["U"] = { 3143 }, + }, + }, + [3091] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 3059 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 747 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2980 }, + }, + }, + [3092] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 3061 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 747 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2980 }, + }, + }, + [3093] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 3062 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 747 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2980 }, + }, + }, + [3094] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 3060 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 747 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2980 }, + }, + }, + [3095] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 2119 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 364 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1569 }, + }, + }, + [3096] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 2122 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 364 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1569 }, + }, + }, + [3097] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 2123 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 364 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1569 }, + }, + }, + [3098] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 2124 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 364 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1569 }, + }, + }, + [3099] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 2126 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 364 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1569 }, + }, + }, + [3100] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 911 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 7 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 197 }, + }, + }, + [3101] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 925 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 7 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 197 }, + }, + }, + [3102] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 915 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 7 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 197 }, + }, + }, + [3103] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 375 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 7 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 197 }, + }, + }, + [3104] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 198 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 7 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 197 }, + }, + }, + [3105] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 459 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 7 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 197 }, + }, + }, + [3111] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 60516 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 179 }, + ["race"] = 4, + ["start"] = { + ["U"] = { 658 }, + }, + }, + [3116] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 3593 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 456 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2079 }, + }, + }, + [3117] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 3596 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 456 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2079 }, + }, + }, + [3118] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 3594 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 456 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2079 }, + }, + }, + [3119] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 3595 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 456 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2079 }, + }, + }, + [3120] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 3597 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 456 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2079 }, + }, + }, + [3121] = { + ["end"] = { + ["U"] = { 3216 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["race"] = 434, + ["start"] = { + ["U"] = { 8115 }, + }, + }, + [3122] = { + ["end"] = { + ["U"] = { 8115 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["pre"] = { 3121 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3216 }, + }, + }, + [3123] = { + ["end"] = { + ["U"] = { 8115 }, + }, + ["lvl"] = 47, + ["min"] = 40, + ["obj"] = { + ["I"] = { 9594 }, + ["IR"] = { 9618 }, + }, + ["pre"] = { 3122 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 8115 }, + }, + }, + [3124] = { + ["end"] = { + ["U"] = { 8115 }, + }, + ["lvl"] = 47, + ["min"] = 40, + ["obj"] = { + ["I"] = { 9595 }, + ["IR"] = { 9619 }, + }, + ["pre"] = { 3123 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 8115 }, + }, + }, + [3125] = { + ["end"] = { + ["U"] = { 8115 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 9596 }, + ["IR"] = { 9620 }, + }, + ["pre"] = { 3124 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 8115 }, + }, + }, + [3126] = { + ["end"] = { + ["U"] = { 8115 }, + }, + ["lvl"] = 50, + ["min"] = 40, + ["obj"] = { + ["I"] = { 9593 }, + ["IR"] = { 9606 }, + }, + ["pre"] = { 3125 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 8115 }, + }, + }, + [3127] = { + ["end"] = { + ["U"] = { 8115 }, + }, + ["lvl"] = 50, + ["min"] = 40, + ["obj"] = { + ["I"] = { 9597 }, + ["IR"] = { 9621 }, + }, + ["pre"] = { 3126 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 8115 }, + }, + }, + [3128] = { + ["end"] = { + ["U"] = { 8115 }, + }, + ["lvl"] = 50, + ["min"] = 40, + ["obj"] = { + ["I"] = { 9589, 9590, 9591, 9592 }, + }, + ["pre"] = { 3122 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 8115 }, + }, + }, + [3129] = { + ["end"] = { + ["U"] = { 8115 }, + }, + ["lvl"] = 50, + ["min"] = 40, + ["pre"] = { 3127, 3128 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 8115 }, + }, + }, + [3130] = { + ["end"] = { + ["U"] = { 7877 }, + }, + ["lvl"] = 43, + ["min"] = 40, + ["pre"] = { 2867 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3936 }, + }, + }, + [3181] = { + ["end"] = { + ["U"] = { 3836 }, + }, + ["lvl"] = 48, + ["min"] = 40, + ["race"] = 589, + ["start"] = { + ["I"] = { 10000 }, + }, + }, + [3182] = { + ["end"] = { + ["U"] = { 8256 }, + }, + ["lvl"] = 48, + ["min"] = 40, + ["pre"] = { 3181 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3836 }, + }, + }, + [3201] = { + ["end"] = { + ["U"] = { 3836 }, + }, + ["lvl"] = 48, + ["min"] = 40, + ["pre"] = { 3182 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 8256 }, + }, + }, + [3221] = { + ["end"] = { + ["U"] = { 1937 }, + }, + ["lvl"] = 12, + ["min"] = 10, + ["pre"] = { 449 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1952 }, + }, + }, + [3241] = "_", + [3261] = { + ["end"] = { + ["U"] = { 3387 }, + }, + ["lvl"] = 18, + ["min"] = 10, + ["pre"] = { 905 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3338 }, + }, + }, + [3281] = { + ["end"] = { + ["U"] = { 3464 }, + }, + ["lvl"] = 18, + ["min"] = 9, + ["obj"] = { + ["I"] = { 5061 }, + }, + ["pre"] = { 869 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3464 }, + }, + }, + [3301] = { + ["end"] = { + ["U"] = { 8385 }, + }, + ["lvl"] = 15, + ["min"] = 10, + ["pre"] = { 880 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3448 }, + }, + }, + [3341] = { + ["end"] = { + ["U"] = { 2308 }, + }, + ["lvl"] = 42, + ["min"] = 37, + ["obj"] = { + ["I"] = { 10420 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2308 }, + }, + }, + [3361] = { + ["end"] = { + ["U"] = { 8416 }, + }, + ["lvl"] = 3, + ["min"] = 3, + ["obj"] = { + ["I"] = { 10438, 16313, 16314 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 8416 }, + }, + }, + [3364] = { + ["end"] = { + ["U"] = { 836 }, + }, + ["lvl"] = 5, + ["min"] = 4, + ["race"] = 589, + ["start"] = { + ["U"] = { 12738 }, + }, + }, + [3365] = { + ["end"] = { + ["U"] = { 12738 }, + }, + ["lvl"] = 5, + ["min"] = 4, + ["pre"] = { 3364 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 836 }, + }, + }, + [3367] = { + ["end"] = { + ["O"] = { 175704 }, + }, + ["lvl"] = 48, + ["min"] = 40, + ["race"] = 589, + ["start"] = { + ["U"] = { 8284 }, + }, + }, + [3368] = { + ["end"] = { + ["U"] = { 8256 }, + }, + ["lvl"] = 48, + ["min"] = 40, + ["pre"] = { 3367 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 175704 }, + }, + }, + [3369] = { + ["end"] = { + ["U"] = { 5769 }, + }, + ["lvl"] = 25, + ["min"] = 10, + ["pre"] = { 6981 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 8418 }, + }, + }, + [3370] = { + ["end"] = { + ["U"] = { 4217 }, + }, + ["lvl"] = 25, + ["min"] = 10, + ["pre"] = { 6981 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 8418 }, + }, + }, + [3371] = { + ["end"] = { + ["U"] = { 8417 }, + }, + ["lvl"] = 55, + ["min"] = 40, + ["pre"] = { 3368 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 8256 }, + }, + }, + [3372] = { + ["end"] = { + ["O"] = { 148498 }, + }, + ["lvl"] = 52, + ["min"] = 40, + ["obj"] = { + ["I"] = { 10442 }, + }, + ["pre"] = { 3371 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 8417 }, + }, + }, + [3375] = { + ["end"] = { + ["U"] = { 6826 }, + }, + ["lvl"] = 42, + ["min"] = 37, + ["obj"] = { + ["I"] = { 1708, 3827, 3857 }, + }, + ["pre"] = { 2201 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6826 }, + }, + }, + [3376] = { + ["end"] = { + ["U"] = { 3209 }, + }, + ["lvl"] = 5, + ["min"] = 3, + ["obj"] = { + ["I"] = { 10459 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3209 }, + }, + }, + [3377] = { + ["end"] = { + ["U"] = { 8436 }, + }, + ["lvl"] = 50, + ["min"] = 40, + ["race"] = 589, + ["start"] = { + ["U"] = { 8436 }, + }, + }, + [3378] = { + ["end"] = { + ["U"] = { 4090 }, + }, + ["lvl"] = 50, + ["min"] = 40, + ["obj"] = { + ["I"] = { 10458 }, + }, + ["pre"] = { 3377 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 8436 }, + }, + }, + [3380] = { + ["end"] = { + ["U"] = { 7771 }, + }, + ["lvl"] = 51, + ["min"] = 46, + ["race"] = 434, + ["start"] = { + ["U"] = { 8115 }, + }, + }, + [3383] = "_", + [3384] = "_", + [3401] = "_", + [3403] = "_", + [3404] = "_", + [3405] = "_", + [3422] = "_", + [3423] = "_", + [3424] = "_", + [3425] = "_", + [3445] = { + ["end"] = { + ["U"] = { 7771 }, + }, + ["lvl"] = 51, + ["min"] = 46, + ["race"] = 589, + ["start"] = { + ["U"] = { 7900 }, + }, + }, + [3447] = { + ["end"] = { + ["O"] = { 148838 }, + }, + ["lvl"] = 51, + ["min"] = 46, + ["pre"] = { 3446 }, + ["start"] = { + ["O"] = { 148836 }, + }, + }, + [3448] = { + ["end"] = { + ["U"] = { 8507 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["race"] = 589, + ["start"] = { + ["U"] = { 2916 }, + }, + }, + [3449] = { + ["end"] = { + ["U"] = { 8392 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["obj"] = { + ["I"] = { 10563, 10564, 10565, 10566 }, + }, + ["pre"] = { 3448 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 8507 }, + }, + }, + [3450] = { + ["end"] = { + ["U"] = { 8517 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["pre"] = { 3448 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 8507 }, + }, + }, + [3451] = { + ["end"] = { + ["U"] = { 8517 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["pre"] = { 3450 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 8517 }, + }, + }, + [3461] = { + ["end"] = { + ["U"] = { 8507 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["pre"] = { 3449 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 8392 }, + }, + }, + [3482] = { + ["lvl"] = 35, + ["min"] = 30, + ["race"] = 434, + ["start"] = { + ["I"] = { 10590 }, + }, + }, + [3483] = { + ["end"] = { + ["U"] = { 8517 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["pre"] = { 3451 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 8517 }, + }, + }, + [3504] = { + ["end"] = { + ["U"] = { 8576 }, + }, + ["lvl"] = 53, + ["min"] = 44, + ["race"] = 434, + ["start"] = { + ["U"] = { 4485 }, + }, + }, + [3505] = { + ["end"] = { + ["O"] = { 151286 }, + }, + ["lvl"] = 53, + ["min"] = 44, + ["obj"] = { + ["A"] = { 1387 }, + ["U"] = { 6198, 6199 }, + }, + ["pre"] = { 3504 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 8576 }, + }, + }, + [3506] = { + ["end"] = { + ["U"] = { 8576 }, + }, + ["lvl"] = 56, + ["min"] = 44, + ["obj"] = { + ["I"] = { 10597 }, + }, + ["pre"] = { 3505 }, + ["race"] = 434, + ["start"] = { + ["O"] = { 151286 }, + }, + }, + [3507] = { + ["end"] = { + ["U"] = { 4485 }, + }, + ["lvl"] = 56, + ["min"] = 44, + ["pre"] = { 3506 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 8576 }, + }, + }, + [3513] = { + ["end"] = { + ["U"] = { 8582 }, + }, + ["lvl"] = 25, + ["min"] = 15, + ["race"] = 434, + ["start"] = { + ["I"] = { 10621 }, + }, + }, + [3514] = { + ["end"] = { + ["U"] = { 8582 }, + }, + ["lvl"] = 29, + ["min"] = 15, + ["obj"] = { + ["IR"] = { 10622 }, + ["U"] = { 8518 }, + }, + ["pre"] = { 3513 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 8582 }, + }, + }, + [3515] = "_", + [3516] = "_", + [3517] = { + ["end"] = { + ["U"] = { 8587 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["obj"] = { + ["I"] = { 10538, 10539, 10540, 10541 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 8587 }, + }, + }, + [3518] = { + ["end"] = { + ["U"] = { 4046 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["pre"] = { 3517 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 8587 }, + }, + }, + [3519] = { + ["end"] = { + ["U"] = { 8583 }, + }, + ["lvl"] = 4, + ["min"] = 2, + ["pre"] = { 4495 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 8584 }, + }, + }, + [3521] = { + ["end"] = { + ["U"] = { 8583 }, + }, + ["lvl"] = 4, + ["min"] = 2, + ["obj"] = { + ["I"] = { 10639, 10640, 10641 }, + }, + ["pre"] = { 3519 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 8583 }, + }, + }, + [3522] = { + ["end"] = { + ["U"] = { 8584 }, + }, + ["lvl"] = 4, + ["min"] = 2, + ["pre"] = { 3521 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 8583 }, + }, + }, + [3524] = { + ["end"] = { + ["U"] = { 10219 }, + }, + ["lvl"] = 13, + ["min"] = 11, + ["obj"] = { + ["I"] = { 12242 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 10219 }, + }, + }, + [3526] = { + ["close"] = { 3526, 3629, 3630, 3632, 3633, 3634, 3635, 3637, 4181 }, + ["end"] = { + ["U"] = { 8126 }, + }, + ["lvl"] = 47, + ["min"] = 30, + ["race"] = 434, + ["skill"] = 202, + ["start"] = { + ["U"] = { 4586 }, + }, + }, + [3529] = "_", + [3541] = { + ["end"] = { + ["U"] = { 8659 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["pre"] = { 3517 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 8587 }, + }, + }, + [3542] = { + ["end"] = { + ["U"] = { 6522 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["pre"] = { 3517 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 8587 }, + }, + }, + [3561] = { + ["end"] = { + ["U"] = { 8379 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["pre"] = { 3517 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 8587 }, + }, + }, + [3562] = { + ["end"] = { + ["U"] = { 8587 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["pre"] = { 3518 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4046 }, + }, + }, + [3563] = { + ["end"] = { + ["U"] = { 8587 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["pre"] = { 3541 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 8659 }, + }, + }, + [3564] = { + ["end"] = { + ["U"] = { 8587 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["pre"] = { 3542 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 6522 }, + }, + }, + [3565] = { + ["end"] = { + ["U"] = { 8587 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["pre"] = { 3561 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 8379 }, + }, + }, + [3566] = { + ["end"] = { + ["U"] = { 8256 }, + }, + ["lvl"] = 52, + ["min"] = 40, + ["obj"] = { + ["I"] = { 10446, 10447 }, + }, + ["pre"] = { 3372 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 8417 }, + }, + }, + [3568] = { + ["end"] = { + ["U"] = { 8390 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["obj"] = { + ["I"] = { 10691, 10692, 10693, 10694 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 8390 }, + }, + }, + [3569] = { + ["end"] = { + ["U"] = { 8393 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["pre"] = { 3568 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 8390 }, + }, + }, + [3570] = { + ["end"] = { + ["U"] = { 8390 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["pre"] = { 3569 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 8390 }, + }, + }, + [3578] = { + ["end"] = { + ["U"] = { 11748 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["race"] = 32, + ["start"] = { + ["U"] = { 3685 }, + }, + }, + [3579] = { + ["end"] = { + ["U"] = { 11748 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 159, 2449, 3818, 6451 }, + }, + ["pre"] = { 3578 }, + ["race"] = 32, + ["start"] = { + ["U"] = { 11748 }, + }, + }, + [3580] = { + ["end"] = { + ["U"] = { 3387 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["pre"] = { 3579 }, + ["race"] = 32, + ["start"] = { + ["U"] = { 11748 }, + }, + }, + [3581] = { + ["end"] = { + ["U"] = { 8664 }, + }, + ["lvl"] = 60, + ["min"] = 40, + ["pre"] = { 3580 }, + ["race"] = 32, + ["start"] = { + ["U"] = { 3387 }, + }, + }, + [3622] = "_", + [3629] = { + ["close"] = { 3526, 3629, 3630, 3632, 3633, 3634, 3635, 3637, 4181 }, + ["end"] = { + ["U"] = { 8126 }, + }, + ["lvl"] = 47, + ["min"] = 30, + ["race"] = 589, + ["skill"] = 202, + ["start"] = { + ["U"] = { 5174 }, + }, + }, + [3630] = { + ["close"] = { 3526, 3629, 3630, 3632, 3633, 3634, 3635, 3637, 4181 }, + ["end"] = { + ["U"] = { 7944 }, + }, + ["lvl"] = 47, + ["min"] = 30, + ["race"] = 589, + ["skill"] = 202, + ["start"] = { + ["U"] = { 5518 }, + }, + }, + [3631] = { + ["class"] = 256, + ["close"] = { 3631, 4487, 4488, 4489 }, + ["end"] = { + ["U"] = { 6251 }, + }, + ["lvl"] = 40, + ["min"] = 40, + ["race"] = 434, + ["start"] = { + ["U"] = { 3326 }, + }, + }, + [3632] = { + ["close"] = { 3526, 3629, 3630, 3632, 3633, 3634, 3635, 3637, 4181 }, + ["end"] = { + ["U"] = { 7944 }, + }, + ["lvl"] = 47, + ["min"] = 30, + ["race"] = 589, + ["skill"] = 202, + ["start"] = { + ["U"] = { 5174 }, + }, + }, + [3634] = { + ["close"] = { 3526, 3629, 3630, 3632, 3633, 3634, 3635, 3637, 4181 }, + ["end"] = { + ["U"] = { 7944 }, + }, + ["lvl"] = 47, + ["min"] = 30, + ["race"] = 589, + ["skill"] = 202, + ["start"] = { + ["U"] = { 3494 }, + }, + }, + [3635] = { + ["close"] = { 3526, 3629, 3630, 3632, 3633, 3634, 3635, 3637, 4181 }, + ["end"] = { + ["U"] = { 7406 }, + }, + ["lvl"] = 47, + ["min"] = 30, + ["race"] = 434, + ["skill"] = 202, + ["start"] = { + ["U"] = { 4586 }, + }, + }, + [3636] = { + ["end"] = { + ["U"] = { 1284 }, + }, + ["lvl"] = 42, + ["min"] = 39, + ["obj"] = { + ["U"] = { 7358 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1284 }, + }, + }, + [3637] = { + ["close"] = { 3526, 3629, 3630, 3632, 3633, 3634, 3635, 3637, 4181 }, + ["end"] = { + ["U"] = { 7406 }, + }, + ["lvl"] = 47, + ["min"] = 30, + ["race"] = 434, + ["skill"] = 202, + ["start"] = { + ["U"] = { 3494 }, + }, + }, + [3640] = { + ["close"] = { 3638, 3640, 3642 }, + ["end"] = { + ["U"] = { 7944 }, + }, + ["lvl"] = 47, + ["min"] = 30, + ["obj"] = { + ["I"] = { 11283 }, + }, + ["race"] = 589, + ["skill"] = 202, + ["start"] = { + ["U"] = { 7944 }, + }, + }, + [3641] = { + ["end"] = { + ["U"] = { 7944 }, + }, + ["lvl"] = 47, + ["min"] = 30, + ["obj"] = { + ["I"] = { 4392, 4407, 10559 }, + }, + ["pre"] = { 3640 }, + ["race"] = 589, + ["skill"] = 202, + ["start"] = { + ["U"] = { 7944 }, + }, + }, + [3642] = { + ["close"] = { 3638, 3640, 3642 }, + ["end"] = { + ["U"] = { 7406 }, + }, + ["lvl"] = 47, + ["min"] = 30, + ["obj"] = { + ["I"] = { 11282 }, + }, + ["race"] = 434, + ["skill"] = 202, + ["start"] = { + ["U"] = { 7406 }, + }, + }, + [3643] = { + ["end"] = { + ["U"] = { 7406 }, + }, + ["lvl"] = 47, + ["min"] = 30, + ["obj"] = { + ["I"] = { 4392, 4407, 10559 }, + }, + ["pre"] = { 3642 }, + ["race"] = 434, + ["skill"] = 202, + ["start"] = { + ["U"] = { 7406 }, + }, + }, + [3645] = { + ["end"] = { + ["U"] = { 7944 }, + }, + ["lvl"] = 47, + ["min"] = 30, + ["pre"] = { 3641 }, + ["race"] = 589, + ["skill"] = 202, + ["start"] = { + ["U"] = { 7944 }, + }, + }, + [3661] = { + ["end"] = { + ["U"] = { 7916 }, + }, + ["lvl"] = 47, + ["min"] = 42, + ["obj"] = { + ["I"] = { 10819 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 7916 }, + }, + }, + [3681] = { + ["class"] = 2, + ["close"] = { 2998, 3681 }, + ["end"] = { + ["U"] = { 6171 }, + }, + ["lvl"] = 12, + ["min"] = 12, + ["race"] = 515, + ["start"] = { + ["U"] = { 5149 }, + }, + }, + [3701] = { + ["end"] = { + ["U"] = { 8879 }, + }, + ["lvl"] = 54, + ["min"] = 50, + ["obj"] = { + ["O"] = { 153556 }, + }, + ["pre"] = { 3702 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 8879 }, + }, + }, + [3702] = { + ["end"] = { + ["U"] = { 8879 }, + }, + ["lvl"] = 54, + ["min"] = 50, + ["race"] = 589, + ["start"] = { + ["U"] = { 8879 }, + }, + }, + [3741] = { + ["end"] = { + ["U"] = { 8962 }, + }, + ["lvl"] = 15, + ["min"] = 12, + ["obj"] = { + ["I"] = { 10958 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 8965 }, + }, + }, + [3761] = { + ["end"] = { + ["U"] = { 9076 }, + }, + ["lvl"] = 50, + ["min"] = 47, + ["obj"] = { + ["I"] = { 11018 }, + }, + ["pre"] = { 936, 3762, 3784 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5769 }, + }, + }, + [3762] = { + ["close"] = { 936, 3762, 3784 }, + ["end"] = { + ["U"] = { 5769 }, + }, + ["lvl"] = 50, + ["min"] = 47, + ["race"] = 434, + ["start"] = { + ["U"] = { 6746 }, + }, + }, + [3763] = { + ["close"] = { 3763, 3789, 3790 }, + ["end"] = { + ["U"] = { 3516 }, + }, + ["lvl"] = 50, + ["min"] = 47, + ["race"] = 589, + ["start"] = { + ["U"] = { 6735 }, + }, + }, + [3764] = { + ["end"] = { + ["U"] = { 9047 }, + }, + ["lvl"] = 50, + ["min"] = 47, + ["obj"] = { + ["I"] = { 11018 }, + }, + ["pre"] = { 3763, 3789, 3790 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3516 }, + }, + }, + [3765] = { + ["end"] = { + ["U"] = { 8997 }, + }, + ["lvl"] = 24, + ["min"] = 18, + ["race"] = 589, + ["start"] = { + ["U"] = { 4984 }, + }, + }, + [3781] = { + ["end"] = { + ["U"] = { 4217 }, + }, + ["lvl"] = 50, + ["min"] = 47, + ["pre"] = { 3764 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3516 }, + }, + }, + [3782] = { + ["end"] = { + ["U"] = { 9087 }, + }, + ["lvl"] = 50, + ["min"] = 47, + ["pre"] = { 3761 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5769 }, + }, + }, + [3784] = { + ["close"] = { 936, 3762, 3784 }, + ["end"] = { + ["U"] = { 5769 }, + }, + ["lvl"] = 50, + ["min"] = 47, + ["race"] = 434, + ["start"] = { + ["U"] = { 6741 }, + }, + }, + [3785] = { + ["end"] = { + ["U"] = { 4217 }, + }, + ["lvl"] = 50, + ["min"] = 47, + ["obj"] = { + ["I"] = { 11040 }, + }, + ["pre"] = { 3781 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4217 }, + }, + }, + [3786] = { + ["end"] = { + ["U"] = { 9087 }, + }, + ["lvl"] = 50, + ["min"] = 47, + ["obj"] = { + ["I"] = { 11040 }, + }, + ["pre"] = { 3782 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 9087 }, + }, + }, + [3787] = { + ["close"] = { 3787, 3788 }, + ["end"] = { + ["U"] = { 7879 }, + }, + ["lvl"] = 50, + ["min"] = 47, + ["pre"] = { 3785 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5566 }, + }, + }, + [3788] = { + ["close"] = { 3787, 3788 }, + ["end"] = { + ["U"] = { 7879 }, + }, + ["lvl"] = 50, + ["min"] = 47, + ["pre"] = { 3785 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 7736 }, + }, + }, + [3789] = { + ["close"] = { 3763, 3789, 3790 }, + ["end"] = { + ["U"] = { 3516 }, + }, + ["lvl"] = 50, + ["min"] = 47, + ["race"] = 589, + ["start"] = { + ["U"] = { 6740 }, + }, + }, + [3790] = { + ["close"] = { 3763, 3789, 3790 }, + ["end"] = { + ["U"] = { 3516 }, + }, + ["lvl"] = 50, + ["min"] = 47, + ["race"] = 589, + ["start"] = { + ["U"] = { 5111 }, + }, + }, + [3791] = { + ["end"] = { + ["U"] = { 7879 }, + }, + ["lvl"] = 50, + ["min"] = 47, + ["obj"] = { + ["I"] = { 11040 }, + }, + ["pre"] = { 3787, 3788 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 7879 }, + }, + }, + [3792] = { + ["end"] = { + ["U"] = { 7879 }, + }, + ["lvl"] = 55, + ["min"] = 47, + ["obj"] = { + ["I"] = { 11040 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 7879 }, + }, + }, + [3803] = { + ["end"] = { + ["U"] = { 4217 }, + }, + ["lvl"] = 55, + ["min"] = 47, + ["obj"] = { + ["I"] = { 11040 }, + }, + ["pre"] = { 3785 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4217 }, + }, + }, + [3804] = { + ["end"] = { + ["U"] = { 9087 }, + }, + ["lvl"] = 55, + ["min"] = 47, + ["obj"] = { + ["I"] = { 11040 }, + }, + ["pre"] = { 3786 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 9087 }, + }, + }, + [3821] = { + ["end"] = { + ["U"] = { 9136 }, + }, + ["lvl"] = 52, + ["min"] = 48, + ["race"] = 434, + ["start"] = { + ["U"] = { 9082 }, + }, + }, + [3822] = { + ["end"] = { + ["U"] = { 9082 }, + }, + ["lvl"] = 53, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11058 }, + }, + ["pre"] = { 3821 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 9136 }, + }, + }, + [3823] = { + ["end"] = { + ["U"] = { 9177 }, + }, + ["lvl"] = 52, + ["min"] = 48, + ["obj"] = { + ["U"] = { 7033, 7034, 7035 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 9177 }, + }, + }, + [3824] = { + ["end"] = { + ["U"] = { 9177 }, + }, + ["lvl"] = 53, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11080 }, + }, + ["pre"] = { 3823 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 9177 }, + }, + }, + [3825] = { + ["end"] = { + ["U"] = { 9177 }, + }, + ["lvl"] = 53, + ["min"] = 48, + ["obj"] = { + ["IR"] = { 11079 }, + ["O"] = { 160840 }, + }, + ["pre"] = { 3824 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 9177 }, + }, + }, + [3841] = { + ["end"] = { + ["U"] = { 9238 }, + }, + ["lvl"] = 47, + ["min"] = 38, + ["pre"] = { 2972 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 7956 }, + }, + }, + [3842] = { + ["end"] = { + ["U"] = { 9238 }, + }, + ["lvl"] = 47, + ["min"] = 38, + ["obj"] = { + ["I"] = { 3825 }, + }, + ["pre"] = { 3841 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 9238 }, + }, + }, + [3843] = { + ["end"] = { + ["U"] = { 9660 }, + }, + ["lvl"] = 47, + ["min"] = 38, + ["pre"] = { 3842 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 9238 }, + }, + }, + [3861] = { + ["end"] = { + ["U"] = { 620 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["obj"] = { + ["I"] = { 11109 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 620 }, + }, + }, + [3885] = "_", + [3901] = { + ["end"] = { + ["U"] = { 1569 }, + }, + ["lvl"] = 3, + ["min"] = 1, + ["obj"] = { + ["U"] = { 1890 }, + }, + ["pre"] = { 364 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1569 }, + }, + }, + [3902] = { + ["end"] = { + ["U"] = { 1740 }, + }, + ["lvl"] = 3, + ["min"] = 2, + ["obj"] = { + ["I"] = { 11127 }, + }, + ["pre"] = { 376 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1740 }, + }, + }, + [3903] = { + ["end"] = { + ["U"] = { 9296 }, + }, + ["lvl"] = 4, + ["min"] = 2, + ["pre"] = { 18, 33 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 823 }, + }, + }, + [3904] = { + ["end"] = { + ["U"] = { 9296 }, + }, + ["lvl"] = 4, + ["min"] = 2, + ["obj"] = { + ["I"] = { 11119 }, + }, + ["pre"] = { 3903 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 9296 }, + }, + }, + [3905] = { + ["end"] = { + ["U"] = { 952 }, + }, + ["lvl"] = 4, + ["min"] = 2, + ["pre"] = { 3904 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 9296 }, + }, + }, + [3906] = { + ["end"] = { + ["U"] = { 9084 }, + }, + ["lvl"] = 52, + ["min"] = 48, + ["obj"] = { + ["U"] = { 9026 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 9084 }, + }, + }, + [3907] = { + ["end"] = { + ["U"] = { 9084 }, + }, + ["lvl"] = 56, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11126 }, + ["U"] = { 9017 }, + }, + ["pre"] = { 3906 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 9084 }, + }, + }, + [3911] = "_", + [3921] = { + ["end"] = { + ["U"] = { 9316 }, + }, + ["lvl"] = 14, + ["min"] = 10, + ["pre"] = { 902 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3442 }, + }, + }, + [3922] = { + ["end"] = { + ["U"] = { 9316 }, + }, + ["lvl"] = 15, + ["min"] = 10, + ["obj"] = { + ["I"] = { 11143 }, + }, + ["pre"] = { 3921 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 9316 }, + }, + }, + [3923] = { + ["end"] = { + ["U"] = { 9317 }, + }, + ["lvl"] = 18, + ["min"] = 10, + ["pre"] = { 3922 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 9316 }, + }, + }, + [3924] = { + ["end"] = { + ["U"] = { 9317 }, + }, + ["lvl"] = 19, + ["min"] = 10, + ["obj"] = { + ["I"] = { 11147, 11148, 11149 }, + }, + ["pre"] = { 3923 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 9317 }, + }, + }, + [3981] = { + ["end"] = { + ["U"] = { 9020 }, + }, + ["lvl"] = 52, + ["min"] = 48, + ["pre"] = { 3906 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 9081 }, + }, + }, + [3982] = { + ["end"] = { + ["U"] = { 9020 }, + }, + ["lvl"] = 54, + ["min"] = 48, + ["pre"] = { 3981 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 9020 }, + }, + }, + [4001] = { + ["end"] = { + ["U"] = { 4949 }, + }, + ["lvl"] = 54, + ["min"] = 48, + ["pre"] = { 3982 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 9020 }, + }, + }, + [4002] = { + ["end"] = { + ["U"] = { 4949 }, + }, + ["lvl"] = 54, + ["min"] = 48, + ["pre"] = { 4001 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4949 }, + }, + }, + [4003] = { + ["end"] = { + ["U"] = { 8929 }, + }, + ["lvl"] = 59, + ["min"] = 48, + ["obj"] = { + ["U"] = { 9019 }, + }, + ["pre"] = { 4002 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4949 }, + }, + }, + [4004] = { + ["end"] = { + ["U"] = { 4949 }, + }, + ["lvl"] = 60, + ["min"] = 48, + ["pre"] = { 4003 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 8929 }, + }, + }, + [4021] = { + ["end"] = { + ["U"] = { 3389 }, + }, + ["lvl"] = 20, + ["min"] = 11, + ["obj"] = { + ["I"] = { 11227 }, + }, + ["pre"] = { 852 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3389 }, + }, + }, + [4022] = { + ["close"] = { 4022, 4023 }, + ["end"] = { + ["U"] = { 9459 }, + }, + ["lvl"] = 54, + ["min"] = 52, + ["obj"] = { + ["I"] = { 10575 }, + }, + ["pre"] = { 3481 }, + ["start"] = { + ["U"] = { 9459 }, + }, + }, + [4061] = { + ["end"] = { + ["U"] = { 9079 }, + }, + ["lvl"] = 54, + ["min"] = 52, + ["obj"] = { + ["I"] = { 11266 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 9079 }, + }, + }, + [4062] = { + ["end"] = { + ["U"] = { 2921 }, + }, + ["lvl"] = 54, + ["min"] = 52, + ["pre"] = { 4061 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 9079 }, + }, + }, + [4063] = { + ["end"] = { + ["U"] = { 2921 }, + }, + ["lvl"] = 58, + ["min"] = 52, + ["obj"] = { + ["I"] = { 11268, 11269 }, + }, + ["pre"] = { 4062 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2921 }, + }, + }, + [4081] = { + ["end"] = { + ["U"] = { 9077 }, + }, + ["lvl"] = 52, + ["min"] = 48, + ["obj"] = { + ["U"] = { 8890, 8891, 8892 }, + }, + ["race"] = 434, + ["start"] = { + ["O"] = { 164867 }, + }, + }, + [4082] = { + ["end"] = { + ["U"] = { 9077 }, + }, + ["lvl"] = 54, + ["min"] = 50, + ["obj"] = { + ["U"] = { 8893, 8894, 8895 }, + }, + ["pre"] = { 4081 }, + ["race"] = 434, + ["start"] = { + ["O"] = { 164868 }, + }, + }, + [4101] = { + ["close"] = { 4101, 4102 }, + ["end"] = { + ["U"] = { 9528 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11503 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 9528 }, + }, + }, + [4102] = { + ["close"] = { 4101, 4102 }, + ["end"] = { + ["U"] = { 9529 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11503 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 9529 }, + }, + }, + [4103] = { + ["end"] = { + ["U"] = { 9528 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11515 }, + }, + ["pre"] = { 5882 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 9528 }, + }, + }, + [4104] = { + ["end"] = { + ["U"] = { 9528 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11513 }, + }, + ["pre"] = { 5883 }, + ["race"] = 589, + ["skill"] = 186, + ["start"] = { + ["U"] = { 9528 }, + }, + }, + [4105] = { + ["end"] = { + ["U"] = { 9528 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11514 }, + }, + ["pre"] = { 5884 }, + ["race"] = 589, + ["skill"] = 182, + ["start"] = { + ["U"] = { 9528 }, + }, + }, + [4106] = { + ["end"] = { + ["U"] = { 9528 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11512 }, + }, + ["pre"] = { 5885 }, + ["race"] = 589, + ["skill"] = 393, + ["start"] = { + ["U"] = { 9528 }, + }, + }, + [4107] = { + ["end"] = { + ["U"] = { 9528 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11174 }, + }, + ["pre"] = { 5886 }, + ["race"] = 589, + ["skill"] = 333, + ["start"] = { + ["U"] = { 9528 }, + }, + }, + [4108] = { + ["end"] = { + ["U"] = { 9529 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11515 }, + }, + ["pre"] = { 5887 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 9529 }, + }, + }, + [4109] = { + ["end"] = { + ["U"] = { 9529 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11513 }, + }, + ["pre"] = { 5888 }, + ["race"] = 434, + ["skill"] = 186, + ["start"] = { + ["U"] = { 9529 }, + }, + }, + [4110] = { + ["end"] = { + ["U"] = { 9529 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11514 }, + }, + ["pre"] = { 5889 }, + ["race"] = 434, + ["skill"] = 182, + ["start"] = { + ["U"] = { 9529 }, + }, + }, + [4111] = { + ["end"] = { + ["U"] = { 9529 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11512 }, + }, + ["pre"] = { 5890 }, + ["race"] = 434, + ["skill"] = 393, + ["start"] = { + ["U"] = { 9529 }, + }, + }, + [4112] = { + ["end"] = { + ["U"] = { 9529 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11174 }, + }, + ["pre"] = { 5891 }, + ["race"] = 434, + ["skill"] = 333, + ["start"] = { + ["U"] = { 9529 }, + }, + }, + [4120] = { + ["end"] = { + ["U"] = { 7776 }, + }, + ["lvl"] = 52, + ["min"] = 47, + ["obj"] = { + ["U"] = { 8957, 8961 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 7776 }, + }, + }, + [4121] = { + ["end"] = { + ["U"] = { 9080 }, + }, + ["lvl"] = 58, + ["min"] = 52, + ["obj"] = { + ["I"] = { 11286 }, + ["IR"] = { 11286 }, + }, + ["pre"] = { 4122 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 9520 }, + }, + }, + [4122] = { + ["end"] = { + ["U"] = { 9520 }, + }, + ["lvl"] = 58, + ["min"] = 52, + ["obj"] = { + ["IR"] = { 11286 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 9080 }, + }, + }, + [4124] = { + ["end"] = { + ["U"] = { 7880 }, + }, + ["lvl"] = 43, + ["min"] = 40, + ["race"] = 589, + ["start"] = { + ["U"] = { 7877 }, + }, + }, + [4125] = { + ["end"] = { + ["O"] = { 164909 }, + }, + ["lvl"] = 43, + ["min"] = 40, + ["pre"] = { 4124 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 7880 }, + }, + }, + [4126] = { + ["end"] = { + ["U"] = { 1267 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["I"] = { 11312 }, + }, + ["pre"] = { 4128 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1267 }, + }, + }, + [4127] = { + ["end"] = { + ["U"] = { 7880 }, + }, + ["lvl"] = 44, + ["min"] = 40, + ["pre"] = { 4125 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 164909 }, + }, + }, + [4128] = { + ["end"] = { + ["U"] = { 1267 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["race"] = 589, + ["start"] = { + ["U"] = { 9540 }, + }, + }, + [4129] = { + ["end"] = { + ["U"] = { 7879 }, + }, + ["lvl"] = 44, + ["min"] = 40, + ["pre"] = { 4127 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 7880 }, + }, + }, + [4130] = { + ["end"] = { + ["U"] = { 7880 }, + }, + ["lvl"] = 44, + ["min"] = 40, + ["pre"] = { 4129 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 7879 }, + }, + }, + [4131] = { + ["end"] = { + ["O"] = { 164953 }, + }, + ["lvl"] = 44, + ["min"] = 40, + ["pre"] = { 4130 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 7880 }, + }, + }, + [4132] = { + ["end"] = { + ["U"] = { 9077 }, + }, + ["lvl"] = 58, + ["min"] = 52, + ["obj"] = { + ["U"] = { 9033 }, + }, + ["pre"] = { 4121 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 9077 }, + }, + }, + [4133] = { + ["end"] = { + ["U"] = { 9078 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["race"] = 434, + ["start"] = { + ["U"] = { 5204 }, + }, + }, + [4134] = { + ["end"] = { + ["U"] = { 9078 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["I"] = { 11312 }, + }, + ["pre"] = { 4133 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 9078 }, + }, + }, + [4135] = { + ["end"] = { + ["O"] = { 164954 }, + }, + ["lvl"] = 46, + ["min"] = 40, + ["pre"] = { 4131 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 164953 }, + }, + }, + [4141] = { + ["end"] = { + ["U"] = { 9119 }, + }, + ["lvl"] = 52, + ["min"] = 47, + ["obj"] = { + ["I"] = { 11316 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 9119 }, + }, + }, + [4142] = { + ["end"] = { + ["U"] = { 7775 }, + }, + ["lvl"] = 52, + ["min"] = 47, + ["pre"] = { 4141 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 9119 }, + }, + }, + [4143] = { + ["end"] = { + ["U"] = { 9119 }, + }, + ["lvl"] = 52, + ["min"] = 47, + ["obj"] = { + ["I"] = { 11318 }, + }, + ["pre"] = { 4142 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 7775 }, + }, + }, + [4144] = { + ["end"] = { + ["U"] = { 9119 }, + }, + ["lvl"] = 53, + ["min"] = 47, + ["obj"] = { + ["I"] = { 11315 }, + }, + ["pre"] = { 4143 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 9119 }, + }, + }, + [4145] = { + ["end"] = { + ["U"] = { 9118 }, + }, + ["lvl"] = 52, + ["min"] = 47, + ["obj"] = { + ["U"] = { 6509, 6510, 6511, 6512 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 9118 }, + }, + }, + [4146] = { + ["end"] = { + ["U"] = { 9118 }, + }, + ["lvl"] = 52, + ["min"] = 47, + ["obj"] = { + ["I"] = { 11318 }, + }, + ["pre"] = { 4147 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 8496 }, + }, + }, + [4147] = { + ["end"] = { + ["U"] = { 8496 }, + }, + ["lvl"] = 52, + ["min"] = 47, + ["pre"] = { 4145 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 9118 }, + }, + }, + [4148] = { + ["end"] = { + ["U"] = { 9118 }, + }, + ["lvl"] = 53, + ["min"] = 47, + ["obj"] = { + ["I"] = { 11315 }, + }, + ["pre"] = { 4146 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 9118 }, + }, + }, + [4161] = { + ["end"] = { + ["U"] = { 6286 }, + }, + ["lvl"] = 7, + ["min"] = 1, + ["obj"] = { + ["I"] = { 5465 }, + }, + ["race"] = 589, + ["skill"] = 185, + ["start"] = { + ["U"] = { 6286 }, + }, + }, + [4181] = { + ["close"] = { 3526, 3629, 3630, 3632, 3633, 3634, 3635, 3637, 4181 }, + ["end"] = { + ["U"] = { 8126 }, + }, + ["lvl"] = 47, + ["min"] = 30, + ["race"] = 589, + ["skill"] = 202, + ["start"] = { + ["U"] = { 5518 }, + }, + }, + [4182] = { + ["end"] = { + ["U"] = { 9562 }, + }, + ["lvl"] = 54, + ["min"] = 48, + ["obj"] = { + ["U"] = { 7040, 7041, 7044, 7047 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 9562 }, + }, + }, + [4183] = { + ["end"] = { + ["U"] = { 344 }, + }, + ["lvl"] = 54, + ["min"] = 48, + ["pre"] = { 4182 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 9562 }, + }, + }, + [4184] = { + ["end"] = { + ["U"] = { 1748 }, + }, + ["lvl"] = 54, + ["min"] = 48, + ["pre"] = { 4183 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 344 }, + }, + }, + [4185] = { + ["end"] = { + ["U"] = { 1748 }, + }, + ["lvl"] = 54, + ["min"] = 48, + ["pre"] = { 4184 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1748 }, + }, + }, + [4186] = { + ["end"] = { + ["U"] = { 344 }, + }, + ["lvl"] = 54, + ["min"] = 48, + ["pre"] = { 4185 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1748 }, + }, + }, + [4223] = { + ["end"] = { + ["U"] = { 9560 }, + }, + ["lvl"] = 54, + ["min"] = 48, + ["pre"] = { 4186 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 344 }, + }, + }, + [4224] = { + ["end"] = { + ["U"] = { 9560 }, + }, + ["lvl"] = 54, + ["min"] = 48, + ["pre"] = { 4223 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 9560 }, + }, + }, + [4241] = { + ["end"] = { + ["U"] = { 9023 }, + }, + ["lvl"] = 54, + ["min"] = 48, + ["pre"] = { 4224 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 9560 }, + }, + }, + [4242] = { + ["end"] = { + ["U"] = { 9560 }, + }, + ["lvl"] = 54, + ["min"] = 48, + ["pre"] = { 4241 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 9023 }, + }, + }, + [4261] = { + ["end"] = { + ["U"] = { 3848 }, + }, + ["lvl"] = 56, + ["min"] = 49, + ["pre"] = { 4442 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 9598 }, + }, + }, + [4262] = { + ["end"] = { + ["U"] = { 9561 }, + }, + ["lvl"] = 52, + ["min"] = 48, + ["obj"] = { + ["U"] = { 9026 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 9561 }, + }, + }, + [4263] = { + ["end"] = { + ["U"] = { 9561 }, + }, + ["lvl"] = 56, + ["min"] = 48, + ["obj"] = { + ["U"] = { 9017 }, + }, + ["pre"] = { 4262 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 9561 }, + }, + }, + [4264] = { + ["end"] = { + ["U"] = { 9023 }, + }, + ["lvl"] = 58, + ["min"] = 50, + ["pre"] = { 4242 }, + ["race"] = 589, + ["start"] = { + ["I"] = { 11446 }, + }, + }, + [4265] = { + ["end"] = { + ["U"] = { 7880 }, + }, + ["lvl"] = 46, + ["min"] = 40, + ["pre"] = { 4135 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 164954 }, + }, + }, + [4266] = { + ["end"] = { + ["U"] = { 3936 }, + }, + ["lvl"] = 46, + ["min"] = 40, + ["pre"] = { 4265 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 7880 }, + }, + }, + [4267] = { + ["end"] = { + ["U"] = { 7740 }, + }, + ["lvl"] = 46, + ["min"] = 40, + ["pre"] = { 4266 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3936 }, + }, + }, + [4281] = { + ["end"] = { + ["U"] = { 4048 }, + }, + ["lvl"] = 44, + ["min"] = 40, + ["race"] = 589, + ["start"] = { + ["I"] = { 11463 }, + }, + }, + [4282] = { + ["end"] = { + ["U"] = { 9023 }, + }, + ["lvl"] = 58, + ["min"] = 50, + ["obj"] = { + ["I"] = { 11464, 11465 }, + }, + ["pre"] = { 4264 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 9023 }, + }, + }, + [4283] = { + ["end"] = { + ["U"] = { 9177 }, + }, + ["lvl"] = 56, + ["min"] = 50, + ["obj"] = { + ["I"] = { 11467 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 9177 }, + }, + }, + [4286] = { + ["end"] = { + ["U"] = { 9177 }, + }, + ["lvl"] = 56, + ["min"] = 50, + ["obj"] = { + ["I"] = { 11468 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 9177 }, + }, + }, + [4293] = { + ["end"] = { + ["U"] = { 10136 }, + }, + ["lvl"] = 52, + ["min"] = 48, + ["obj"] = { + ["I"] = { 12230, 12234 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 10136 }, + }, + }, + [4294] = { + ["end"] = { + ["U"] = { 10136 }, + }, + ["lvl"] = 56, + ["min"] = 48, + ["obj"] = { + ["I"] = { 12235, 12236 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 10136 }, + }, + }, + [4297] = { + ["end"] = { + ["U"] = { 9660 }, + }, + ["lvl"] = 47, + ["min"] = 38, + ["obj"] = { + ["I"] = { 11472 }, + }, + ["pre"] = { 3843 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 9660 }, + }, + }, + [4298] = { + ["end"] = { + ["U"] = { 9660 }, + }, + ["lvl"] = 48, + ["min"] = 37, + ["pre"] = { 4297 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 9660 }, + }, + }, + [4299] = "_", + [4300] = { + ["end"] = { + ["U"] = { 8659 }, + }, + ["lvl"] = 52, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11477 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 8659 }, + }, + }, + [4322] = { + ["end"] = { + ["U"] = { 9560 }, + }, + ["lvl"] = 58, + ["min"] = 50, + ["pre"] = { 4282 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 9023 }, + }, + }, + [4323] = "_", + [4341] = { + ["end"] = { + ["U"] = { 9021 }, + }, + ["lvl"] = 59, + ["min"] = 50, + ["pre"] = { 3701 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2784 }, + }, + }, + [4342] = { + ["end"] = { + ["U"] = { 9021 }, + }, + ["lvl"] = 59, + ["min"] = 50, + ["pre"] = { 4341 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 9021 }, + }, + }, + [4361] = { + ["end"] = { + ["U"] = { 2784 }, + }, + ["lvl"] = 59, + ["min"] = 50, + ["pre"] = { 4342 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 9021 }, + }, + }, + [4362] = { + ["end"] = { + ["U"] = { 8929 }, + }, + ["lvl"] = 59, + ["min"] = 50, + ["obj"] = { + ["U"] = { 9019 }, + }, + ["pre"] = { 4361 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2784 }, + }, + }, + [4363] = { + ["end"] = { + ["U"] = { 2784 }, + }, + ["lvl"] = 59, + ["min"] = 50, + ["pre"] = { 4362 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 8929 }, + }, + }, + [4402] = { + ["end"] = { + ["U"] = { 9796 }, + }, + ["lvl"] = 3, + ["min"] = 1, + ["obj"] = { + ["I"] = { 11583 }, + }, + ["pre"] = { 788 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 9796 }, + }, + }, + [4421] = { + ["end"] = { + ["U"] = { 9116 }, + }, + ["lvl"] = 54, + ["min"] = 49, + ["obj"] = { + ["U"] = { 7106, 7109, 7110, 9454 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 9116 }, + }, + }, + [4441] = { + ["end"] = { + ["U"] = { 9116 }, + }, + ["lvl"] = 54, + ["min"] = 49, + ["obj"] = { + ["I"] = { 5646 }, + ["IR"] = { 11682 }, + }, + ["pre"] = { 939 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 9116 }, + }, + }, + [4442] = { + ["end"] = { + ["U"] = { 9116 }, + }, + ["lvl"] = 54, + ["min"] = 49, + ["pre"] = { 4441 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 9116 }, + }, + }, + [4485] = { + ["class"] = 2, + ["close"] = { 4485, 4486 }, + ["end"] = { + ["U"] = { 6171 }, + }, + ["lvl"] = 40, + ["min"] = 40, + ["race"] = 589, + ["start"] = { + ["U"] = { 5491 }, + }, + }, + [4486] = { + ["class"] = 2, + ["close"] = { 4485, 4486 }, + ["end"] = { + ["U"] = { 6171 }, + }, + ["lvl"] = 40, + ["min"] = 40, + ["race"] = 589, + ["start"] = { + ["U"] = { 5149 }, + }, + }, + [4487] = { + ["class"] = 256, + ["close"] = { 3631, 4487, 4488, 4489 }, + ["end"] = { + ["U"] = { 6251 }, + }, + ["lvl"] = 40, + ["min"] = 40, + ["race"] = 589, + ["start"] = { + ["U"] = { 5172 }, + }, + }, + [4488] = { + ["class"] = 256, + ["close"] = { 3631, 4487, 4488, 4489 }, + ["end"] = { + ["U"] = { 6251 }, + }, + ["lvl"] = 40, + ["min"] = 40, + ["race"] = 589, + ["start"] = { + ["U"] = { 461 }, + }, + }, + [4489] = { + ["class"] = 256, + ["close"] = { 3631, 4487, 4488, 4489 }, + ["end"] = { + ["U"] = { 6251 }, + }, + ["lvl"] = 40, + ["min"] = 40, + ["race"] = 434, + ["start"] = { + ["U"] = { 4563 }, + }, + }, + [4493] = { + ["close"] = { 4493, 4494 }, + ["end"] = { + ["U"] = { 5594 }, + }, + ["lvl"] = 53, + ["min"] = 50, + ["race"] = 589, + ["start"] = { + ["U"] = { 7740 }, + }, + }, + [4494] = { + ["close"] = { 4493, 4494 }, + ["end"] = { + ["U"] = { 5594 }, + }, + ["lvl"] = 53, + ["min"] = 50, + ["race"] = 434, + ["start"] = { + ["U"] = { 7010 }, + }, + }, + [4495] = { + ["end"] = { + ["U"] = { 8584 }, + }, + ["lvl"] = 4, + ["min"] = 2, + ["race"] = 589, + ["start"] = { + ["U"] = { 8583 }, + }, + }, + [4505] = { + ["end"] = { + ["U"] = { 9996 }, + }, + ["lvl"] = 54, + ["min"] = 49, + ["obj"] = { + ["I"] = { 12567 }, + ["IR"] = { 12566 }, + }, + ["pre"] = { 6605 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 9996 }, + }, + }, + [4506] = { + ["end"] = { + ["U"] = { 9996 }, + }, + ["lvl"] = 54, + ["min"] = 49, + ["obj"] = { + ["IR"] = { 12565 }, + }, + ["pre"] = { 4505 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 9996 }, + }, + }, + [4508] = { + ["end"] = { + ["U"] = { 7740 }, + }, + ["lvl"] = 54, + ["min"] = 50, + ["pre"] = { 4507 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5594 }, + }, + }, + [4509] = { + ["end"] = { + ["U"] = { 7010 }, + }, + ["lvl"] = 54, + ["min"] = 50, + ["pre"] = { 4507 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5594 }, + }, + }, + [4510] = { + ["end"] = { + ["U"] = { 4155 }, + }, + ["lvl"] = 54, + ["min"] = 50, + ["pre"] = { 4508 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 7740 }, + }, + }, + [4511] = { + ["end"] = { + ["U"] = { 3309 }, + }, + ["lvl"] = 54, + ["min"] = 50, + ["pre"] = { 4509 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 7010 }, + }, + }, + [4512] = { + ["end"] = { + ["U"] = { 9616 }, + }, + ["lvl"] = 52, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11947, 11949 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 9616 }, + }, + }, + [4513] = { + ["end"] = { + ["U"] = { 9616 }, + }, + ["lvl"] = 54, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11954 }, + }, + ["pre"] = { 4512 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 9616 }, + }, + }, + [4521] = { + ["end"] = { + ["U"] = { 10306 }, + }, + ["lvl"] = 56, + ["min"] = 52, + ["obj"] = { + ["U"] = { 7450, 7451 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 10306 }, + }, + }, + [4542] = { + ["end"] = { + ["U"] = { 10537 }, + }, + ["lvl"] = 25, + ["min"] = 23, + ["race"] = 434, + ["start"] = { + ["U"] = { 10079 }, + }, + }, + [4561] = { + ["end"] = { + ["O"] = { 175265 }, + }, + ["lvl"] = 52, + ["min"] = 48, + ["obj"] = { + ["I"] = { 12235 }, + }, + ["race"] = 434, + ["start"] = { + ["O"] = { 175265 }, + }, + }, + [4581] = { + ["end"] = { + ["U"] = { 3848 }, + }, + ["lvl"] = 29, + ["min"] = 24, + ["race"] = 589, + ["start"] = { + ["U"] = { 3845 }, + }, + }, + [4641] = { + ["end"] = { + ["U"] = { 3143 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["race"] = 434, + ["start"] = { + ["U"] = { 10176 }, + }, + }, + [4642] = { + ["end"] = { + ["U"] = { 10136 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 12291 }, + }, + ["pre"] = { 4293, 4294 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 10136 }, + }, + }, + [4661] = { + ["end"] = { + ["O"] = { 174848 }, + }, + ["lvl"] = 52, + ["min"] = 48, + ["obj"] = { + ["I"] = { 12230 }, + }, + ["race"] = 434, + ["start"] = { + ["O"] = { 174848 }, + }, + }, + [4681] = { + ["end"] = { + ["U"] = { 10219 }, + }, + ["lvl"] = 14, + ["min"] = 11, + ["obj"] = { + ["I"] = { 12289 }, + }, + ["pre"] = { 3524 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 10219 }, + }, + }, + [4701] = { + ["end"] = { + ["U"] = { 9562 }, + }, + ["lvl"] = 59, + ["min"] = 55, + ["obj"] = { + ["U"] = { 10220 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 9562 }, + }, + }, + [4721] = { + ["end"] = { + ["U"] = { 10306 }, + }, + ["lvl"] = 59, + ["min"] = 52, + ["obj"] = { + ["U"] = { 7454 }, + }, + ["pre"] = { 4741 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 10306 }, + }, + }, + [4722] = { + ["end"] = { + ["U"] = { 10219 }, + }, + ["lvl"] = 13, + ["min"] = 11, + ["pre"] = { 4681 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 176190 }, + }, + }, + [4723] = { + ["end"] = { + ["U"] = { 10219 }, + }, + ["lvl"] = 13, + ["min"] = 11, + ["pre"] = { 4681 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 175233 }, + }, + }, + [4724] = { + ["end"] = { + ["U"] = { 9081 }, + }, + ["lvl"] = 59, + ["min"] = 55, + ["obj"] = { + ["U"] = { 10220 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 9081 }, + }, + }, + [4725] = { + ["end"] = { + ["U"] = { 10219 }, + }, + ["lvl"] = 15, + ["min"] = 12, + ["pre"] = { 4681 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 176197 }, + }, + }, + [4727] = { + ["end"] = { + ["U"] = { 10219 }, + }, + ["lvl"] = 15, + ["min"] = 12, + ["pre"] = { 4681 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 176196 }, + }, + }, + [4728] = { + ["end"] = { + ["U"] = { 10219 }, + }, + ["lvl"] = 14, + ["min"] = 12, + ["pre"] = { 4681 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 175226 }, + }, + }, + [4730] = { + ["end"] = { + ["U"] = { 10219 }, + }, + ["lvl"] = 16, + ["min"] = 12, + ["pre"] = { 4681 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 175227 }, + }, + }, + [4731] = { + ["end"] = { + ["U"] = { 10219 }, + }, + ["lvl"] = 19, + ["min"] = 13, + ["pre"] = { 4681 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 176198 }, + }, + }, + [4732] = { + ["end"] = { + ["U"] = { 10219 }, + }, + ["lvl"] = 19, + ["min"] = 13, + ["pre"] = { 4681 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 176191 }, + }, + }, + [4733] = { + ["end"] = { + ["U"] = { 10219 }, + }, + ["lvl"] = 19, + ["min"] = 13, + ["pre"] = { 4681 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 175230 }, + }, + }, + [4736] = { + ["class"] = 256, + ["close"] = { 4736, 4737, 4738, 4739 }, + ["end"] = { + ["U"] = { 6266 }, + }, + ["lvl"] = 31, + ["min"] = 31, + ["race"] = 2, + ["start"] = { + ["U"] = { 5172 }, + }, + }, + [4737] = { + ["class"] = 256, + ["close"] = { 4736, 4737, 4738, 4739 }, + ["end"] = { + ["U"] = { 6266 }, + }, + ["lvl"] = 31, + ["min"] = 31, + ["race"] = 16, + ["start"] = { + ["U"] = { 3326 }, + }, + }, + [4738] = { + ["class"] = 256, + ["close"] = { 4736, 4737, 4738, 4739 }, + ["end"] = { + ["U"] = { 6266 }, + }, + ["lvl"] = 31, + ["min"] = 31, + ["race"] = 589, + ["start"] = { + ["U"] = { 461 }, + }, + }, + [4739] = { + ["class"] = 256, + ["close"] = { 4736, 4737, 4738, 4739 }, + ["end"] = { + ["U"] = { 6266 }, + }, + ["lvl"] = 31, + ["min"] = 31, + ["race"] = 434, + ["start"] = { + ["U"] = { 4563 }, + }, + }, + [4740] = { + ["end"] = { + ["U"] = { 2930 }, + }, + ["lvl"] = 18, + ["min"] = 15, + ["obj"] = { + ["U"] = { 10323 }, + }, + ["race"] = 589, + ["start"] = { + ["O"] = { 175320 }, + }, + }, + [4741] = { + ["end"] = { + ["U"] = { 10306 }, + }, + ["lvl"] = 58, + ["min"] = 52, + ["obj"] = { + ["U"] = { 7453 }, + }, + ["pre"] = { 4521 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 10306 }, + }, + }, + [4761] = { + ["end"] = { + ["U"] = { 3649 }, + }, + ["lvl"] = 15, + ["min"] = 11, + ["pre"] = { 984 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3693 }, + }, + }, + [4762] = { + ["end"] = { + ["U"] = { 3649 }, + }, + ["lvl"] = 15, + ["min"] = 11, + ["obj"] = { + ["I"] = { 12349 }, + ["IR"] = { 12350 }, + }, + ["pre"] = { 4761 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3649 }, + }, + }, + [4763] = { + ["end"] = { + ["U"] = { 3649 }, + }, + ["lvl"] = 18, + ["min"] = 15, + ["obj"] = { + ["I"] = { 12341, 12342, 12343, 12355 }, + ["IR"] = { 12346 }, + }, + ["pre"] = { 4762 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3649 }, + }, + }, + [4764] = { + ["end"] = { + ["U"] = { 9565 }, + }, + ["lvl"] = 60, + ["min"] = 57, + ["obj"] = { + ["I"] = { 12352 }, + }, + ["pre"] = { 4766 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 9565 }, + }, + }, + [4765] = { + ["end"] = { + ["U"] = { 2285 }, + }, + ["lvl"] = 60, + ["min"] = 57, + ["pre"] = { 4764 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 9565 }, + }, + }, + [4766] = { + ["end"] = { + ["U"] = { 9565 }, + }, + ["lvl"] = 60, + ["min"] = 57, + ["race"] = 589, + ["start"] = { + ["U"] = { 2285 }, + }, + }, + [4767] = { + ["end"] = { + ["U"] = { 10377 }, + }, + ["lvl"] = 29, + ["min"] = 25, + ["obj"] = { + ["I"] = { 12356 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 10377 }, + }, + }, + [4768] = { + ["end"] = { + ["U"] = { 9078 }, + }, + ["lvl"] = 60, + ["min"] = 57, + ["obj"] = { + ["I"] = { 12358 }, + }, + ["pre"] = { 4769 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 9078 }, + }, + }, + [4769] = { + ["end"] = { + ["U"] = { 9078 }, + }, + ["lvl"] = 60, + ["min"] = 57, + ["race"] = 434, + ["start"] = { + ["U"] = { 5204 }, + }, + }, + [4770] = { + ["end"] = { + ["U"] = { 10428 }, + }, + ["lvl"] = 29, + ["min"] = 25, + ["race"] = 434, + ["start"] = { + ["U"] = { 10427 }, + }, + }, + [4785] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 2670 }, + }, + ["lvl"] = 37, + ["min"] = 31, + ["pre"] = { 4783 }, + ["start"] = { + ["U"] = { 2670 }, + }, + }, + [4811] = { + ["end"] = { + ["U"] = { 2930 }, + }, + ["lvl"] = 14, + ["min"] = 12, + ["obj"] = { + ["A"] = { 2486 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2930 }, + }, + }, + [4812] = { + ["end"] = { + ["O"] = { 175524 }, + }, + ["lvl"] = 14, + ["min"] = 12, + ["obj"] = { + ["I"] = { 14339 }, + ["IR"] = { 14338 }, + }, + ["pre"] = { 4811 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2930 }, + }, + }, + [4813] = { + ["end"] = { + ["U"] = { 2930 }, + }, + ["lvl"] = 14, + ["min"] = 12, + ["pre"] = { 4812 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 175524 }, + }, + }, + [4821] = { + ["end"] = { + ["U"] = { 10539 }, + }, + ["lvl"] = 26, + ["min"] = 24, + ["obj"] = { + ["I"] = { 12467 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 10539 }, + }, + }, + [4822] = { + ["end"] = { + ["U"] = { 14305 }, + }, + ["lvl"] = 60, + ["min"] = 10, + ["obj"] = { + ["I"] = { 7228 }, + }, + ["pre"] = { 1479, 1558, 1687 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14305 }, + }, + }, + [4841] = { + ["end"] = { + ["U"] = { 10537 }, + }, + ["lvl"] = 25, + ["min"] = 23, + ["obj"] = { + ["U"] = { 4093, 4094, 4096 }, + }, + ["pre"] = { 4542 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 10537 }, + }, + }, + [4861] = { + ["end"] = { + ["O"] = { 175587 }, + }, + ["lvl"] = 59, + ["min"] = 53, + ["pre"] = { 6604 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 10301 }, + }, + }, + [4863] = { + ["end"] = { + ["O"] = { 175586 }, + }, + ["lvl"] = 59, + ["min"] = 53, + ["pre"] = { 4861 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 175587 }, + }, + }, + [4864] = { + ["end"] = { + ["U"] = { 10301 }, + }, + ["lvl"] = 59, + ["min"] = 53, + ["obj"] = { + ["I"] = { 12524, 12525 }, + }, + ["pre"] = { 4863 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 175586 }, + }, + }, + [4865] = { + ["end"] = { + ["U"] = { 10428 }, + }, + ["lvl"] = 26, + ["min"] = 24, + ["pre"] = { 4821 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 10539 }, + }, + }, + [4881] = { + ["end"] = { + ["U"] = { 10638 }, + }, + ["lvl"] = 28, + ["min"] = 23, + ["race"] = 434, + ["start"] = { + ["I"] = { 12564 }, + }, + }, + [4882] = { + ["end"] = { + ["U"] = { 10306 }, + }, + ["lvl"] = 59, + ["min"] = 52, + ["race"] = 434, + ["start"] = { + ["I"] = { 12558 }, + }, + }, + [4883] = { + ["end"] = { + ["U"] = { 5770 }, + }, + ["lvl"] = 59, + ["min"] = 52, + ["pre"] = { 4882 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 10306 }, + }, + }, + [4901] = { + ["end"] = { + ["U"] = { 7916 }, + }, + ["lvl"] = 59, + ["min"] = 52, + ["pre"] = { 979 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 10300 }, + }, + }, + [4902] = { + ["end"] = { + ["U"] = { 3516 }, + }, + ["lvl"] = 57, + ["min"] = 52, + ["pre"] = { 4901 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 7916 }, + }, + }, + [4903] = { + ["end"] = { + ["U"] = { 9077 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 12562 }, + ["U"] = { 9196, 9237, 9568 }, + }, + ["race"] = 434, + ["start"] = { + ["I"] = { 12563 }, + ["U"] = { 9077 }, + }, + }, + [4904] = { + ["end"] = { + ["U"] = { 10645 }, + }, + ["lvl"] = 29, + ["min"] = 25, + ["race"] = 434, + ["start"] = { + ["U"] = { 10646 }, + }, + }, + [4905] = "_", + [4906] = { + ["end"] = { + ["U"] = { 9116 }, + }, + ["lvl"] = 54, + ["min"] = 49, + ["obj"] = { + ["U"] = { 7107, 7108, 7111, 10648 }, + }, + ["pre"] = { 4421 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 9116 }, + }, + }, + [4921] = { + ["end"] = { + ["U"] = { 3432 }, + }, + ["lvl"] = 20, + ["min"] = 14, + ["obj"] = { + ["U"] = { 10668 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3432 }, + }, + }, + [4941] = { + ["end"] = { + ["U"] = { 4949 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["pre"] = { 4903 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 9077 }, + }, + }, + [4962] = { + ["class"] = 256, + ["close"] = { 4962, 4963 }, + ["end"] = { + ["U"] = { 6266 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["obj"] = { + ["I"] = { 12648 }, + ["IR"] = { 12647 }, + }, + ["pre"] = { 1799 }, + ["start"] = { + ["U"] = { 6254 }, + }, + }, + [4963] = { + ["class"] = 256, + ["close"] = { 4962, 4963 }, + ["end"] = { + ["U"] = { 6266 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["obj"] = { + ["I"] = { 12649 }, + }, + ["pre"] = { 1799 }, + ["start"] = { + ["U"] = { 6252 }, + }, + }, + [4964] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 6266 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["pre"] = { 4976 }, + ["start"] = { + ["U"] = { 6266 }, + }, + }, + [4965] = { + ["class"] = 256, + ["close"] = { 4965, 4967, 4968, 4969 }, + ["end"] = { + ["U"] = { 6266 }, + }, + ["lvl"] = 35, + ["min"] = 35, + ["race"] = 589, + ["start"] = { + ["U"] = { 5172 }, + }, + }, + [4966] = { + ["end"] = { + ["U"] = { 10638 }, + }, + ["lvl"] = 28, + ["min"] = 23, + ["pre"] = { 4881 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 10638 }, + }, + }, + [4967] = { + ["class"] = 256, + ["close"] = { 4965, 4967, 4968, 4969 }, + ["end"] = { + ["U"] = { 6266 }, + }, + ["lvl"] = 35, + ["min"] = 35, + ["race"] = 434, + ["start"] = { + ["U"] = { 3326 }, + }, + }, + [4968] = { + ["class"] = 256, + ["close"] = { 4965, 4967, 4968, 4969 }, + ["end"] = { + ["U"] = { 6266 }, + }, + ["lvl"] = 35, + ["min"] = 35, + ["race"] = 589, + ["start"] = { + ["U"] = { 461 }, + }, + }, + [4969] = { + ["class"] = 256, + ["close"] = { 4965, 4967, 4968, 4969 }, + ["end"] = { + ["U"] = { 6266 }, + }, + ["lvl"] = 35, + ["min"] = 35, + ["race"] = 434, + ["start"] = { + ["U"] = { 4563 }, + }, + }, + [4970] = { + ["end"] = { + ["U"] = { 10618 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 12622, 12623 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 10618 }, + }, + }, + [4974] = { + ["end"] = { + ["U"] = { 4949 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 12630 }, + }, + ["pre"] = { 4941 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4949 }, + }, + }, + [4981] = { + ["end"] = { + ["U"] = { 10257 }, + }, + ["lvl"] = 59, + ["min"] = 55, + ["race"] = 434, + ["start"] = { + ["U"] = { 9080 }, + }, + }, + [4982] = { + ["end"] = { + ["U"] = { 10257 }, + }, + ["lvl"] = 59, + ["min"] = 55, + ["obj"] = { + ["I"] = { 12345 }, + }, + ["pre"] = { 4981 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 10257 }, + }, + }, + [4983] = { + ["end"] = { + ["U"] = { 9080 }, + }, + ["lvl"] = 59, + ["min"] = 55, + ["pre"] = { 4982 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 10257 }, + }, + }, + [4986] = { + ["end"] = { + ["U"] = { 4217 }, + }, + ["lvl"] = 56, + ["min"] = 51, + ["pre"] = { 4985 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 10739 }, + }, + }, + [4987] = { + ["end"] = { + ["U"] = { 5770 }, + }, + ["lvl"] = 56, + ["min"] = 51, + ["pre"] = { 4985 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 10739 }, + }, + }, + [5001] = { + ["end"] = { + ["U"] = { 10257 }, + }, + ["lvl"] = 59, + ["min"] = 55, + ["obj"] = { + ["I"] = { 12345 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 10257 }, + }, + }, + [5002] = { + ["end"] = { + ["U"] = { 9560 }, + }, + ["lvl"] = 59, + ["min"] = 55, + ["pre"] = { 5001 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 10257 }, + }, + }, + [5022] = { + ["end"] = { + ["U"] = { 10782 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["pre"] = { 5021 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 175894 }, + }, + }, + [5023] = { + ["end"] = { + ["U"] = { 10781 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["pre"] = { 5021 }, + ["race"] = 434, + ["start"] = { + ["O"] = { 175894 }, + }, + }, + [5041] = { + ["end"] = { + ["U"] = { 3429 }, + }, + ["lvl"] = 14, + ["min"] = 9, + ["obj"] = { + ["I"] = { 12708 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3429 }, + }, + }, + [5042] = { + ["end"] = { + ["U"] = { 3430 }, + }, + ["lvl"] = 20, + ["min"] = 14, + ["obj"] = { + ["I"] = { 5075 }, + }, + ["pre"] = { 5052 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3430 }, + }, + }, + [5043] = { + ["end"] = { + ["U"] = { 3430 }, + }, + ["lvl"] = 20, + ["min"] = 14, + ["obj"] = { + ["I"] = { 5075 }, + }, + ["pre"] = { 5052 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3430 }, + }, + }, + [5044] = { + ["end"] = { + ["U"] = { 3430 }, + }, + ["lvl"] = 20, + ["min"] = 14, + ["obj"] = { + ["I"] = { 5075 }, + }, + ["pre"] = { 5052 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3430 }, + }, + }, + [5045] = { + ["end"] = { + ["U"] = { 3430 }, + }, + ["lvl"] = 20, + ["min"] = 14, + ["obj"] = { + ["I"] = { 5075 }, + }, + ["pre"] = { 5052 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3430 }, + }, + }, + [5046] = { + ["end"] = { + ["U"] = { 3430 }, + }, + ["lvl"] = 20, + ["min"] = 14, + ["obj"] = { + ["I"] = { 5075 }, + }, + ["pre"] = { 5052 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3430 }, + }, + }, + [5048] = { + ["end"] = { + ["U"] = { 3520 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["pre"] = { 5022 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 10782 }, + }, + }, + [5049] = { + ["end"] = { + ["U"] = { 8403 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["pre"] = { 5023 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 10781 }, + }, + }, + [5052] = { + ["end"] = { + ["U"] = { 3430 }, + }, + ["lvl"] = 21, + ["min"] = 14, + ["obj"] = { + ["I"] = { 5075 }, + }, + ["pre"] = { 878 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3430 }, + }, + }, + [5053] = "_", + [5054] = { + ["end"] = { + ["U"] = { 10303 }, + }, + ["lvl"] = 56, + ["min"] = 53, + ["obj"] = { + ["U"] = { 10806 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 10303 }, + }, + }, + [5055] = { + ["end"] = { + ["U"] = { 10303 }, + }, + ["lvl"] = 58, + ["min"] = 53, + ["obj"] = { + ["U"] = { 10807 }, + }, + ["pre"] = { 5054 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 10303 }, + }, + }, + [5056] = { + ["end"] = { + ["U"] = { 10303 }, + }, + ["lvl"] = 60, + ["min"] = 53, + ["obj"] = { + ["I"] = { 12733 }, + ["IR"] = { 12733 }, + ["U"] = { 10737 }, + }, + ["pre"] = { 5055 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 10303 }, + }, + }, + [5057] = { + ["end"] = { + ["U"] = { 10303 }, + }, + ["lvl"] = 60, + ["min"] = 53, + ["pre"] = { 5056 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 10303 }, + }, + }, + [5062] = { + ["end"] = { + ["U"] = { 4046 }, + }, + ["lvl"] = 27, + ["min"] = 24, + ["obj"] = { + ["I"] = { 12732 }, + }, + ["pre"] = { 4865 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 10428 }, + }, + }, + [5064] = { + ["end"] = { + ["U"] = { 10537 }, + }, + ["lvl"] = 28, + ["min"] = 24, + ["obj"] = { + ["I"] = { 12765, 12766, 12768 }, + }, + ["pre"] = { 4841 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 10537 }, + }, + }, + [5066] = { + ["close"] = { 5066, 5090, 5091 }, + ["end"] = { + ["U"] = { 10838 }, + }, + ["lvl"] = 50, + ["min"] = 50, + ["race"] = 589, + ["start"] = { + ["U"] = { 2198 }, + }, + }, + [5081] = { + ["end"] = { + ["U"] = { 9560 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["U"] = { 9196, 9237, 9568 }, + }, + ["pre"] = { 5002 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 9560 }, + }, + }, + [5088] = { + ["end"] = { + ["U"] = { 10428 }, + }, + ["lvl"] = 28, + ["min"] = 24, + ["obj"] = { + ["I"] = { 12925 }, + ["IR"] = { 12785 }, + }, + ["pre"] = { 5062 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4046 }, + }, + }, + [5089] = { + ["end"] = { + ["U"] = { 9560 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["race"] = 589, + ["start"] = { + ["I"] = { 12780 }, + }, + }, + [5090] = { + ["close"] = { 5066, 5090, 5091 }, + ["end"] = { + ["U"] = { 10838 }, + }, + ["lvl"] = 50, + ["min"] = 50, + ["race"] = 589, + ["start"] = { + ["U"] = { 10877 }, + }, + }, + [5091] = { + ["close"] = { 5066, 5090, 5091 }, + ["end"] = { + ["U"] = { 10838 }, + }, + ["lvl"] = 50, + ["min"] = 50, + ["race"] = 589, + ["start"] = { + ["U"] = { 10878 }, + }, + }, + [5092] = { + ["end"] = { + ["U"] = { 10838 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["obj"] = { + ["U"] = { 1783, 1791 }, + }, + ["pre"] = { 5066, 5090, 5091 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 10838 }, + }, + }, + [5093] = { + ["close"] = { 5093, 5094, 5095 }, + ["end"] = { + ["U"] = { 10837 }, + }, + ["lvl"] = 50, + ["min"] = 50, + ["race"] = 434, + ["start"] = { + ["U"] = { 10880 }, + }, + }, + [5094] = { + ["close"] = { 5093, 5094, 5095 }, + ["end"] = { + ["U"] = { 10837 }, + }, + ["lvl"] = 50, + ["min"] = 50, + ["race"] = 434, + ["start"] = { + ["U"] = { 10879 }, + }, + }, + [5095] = { + ["close"] = { 5093, 5094, 5095 }, + ["end"] = { + ["U"] = { 10837 }, + }, + ["lvl"] = 50, + ["min"] = 50, + ["race"] = 434, + ["start"] = { + ["U"] = { 10881 }, + }, + }, + [5096] = { + ["end"] = { + ["U"] = { 10837 }, + }, + ["lvl"] = 53, + ["min"] = 50, + ["obj"] = { + ["I"] = { 12814 }, + ["IR"] = { 12807 }, + ["O"] = { 176088 }, + }, + ["pre"] = { 5093, 5094, 5095 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 10837 }, + }, + }, + [5097] = { + ["end"] = { + ["U"] = { 10838 }, + }, + ["lvl"] = 56, + ["min"] = 50, + ["obj"] = { + ["IR"] = { 12815 }, + ["U"] = { 10902, 10903, 10904, 10905 }, + }, + ["pre"] = { 5092 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 10838 }, + }, + }, + [5098] = { + ["end"] = { + ["U"] = { 10837 }, + }, + ["lvl"] = 56, + ["min"] = 50, + ["obj"] = { + ["IR"] = { 12815 }, + ["U"] = { 10902, 10903, 10904, 10905 }, + }, + ["pre"] = { 5096 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 10837 }, + }, + }, + [5101] = "_", + [5102] = { + ["end"] = { + ["U"] = { 9560 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["U"] = { 10363 }, + }, + ["pre"] = { 5089 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 9560 }, + }, + }, + [5125] = { + ["end"] = { + ["U"] = { 10931 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["pre"] = { 5122 }, + ["start"] = { + ["U"] = { 10931 }, + }, + }, + [5141] = { + ["close"] = { 5141, 5143, 5144 }, + ["end"] = { + ["U"] = { 7866 }, + }, + ["lvl"] = 55, + ["min"] = 40, + ["obj"] = { + ["I"] = { 8165, 8203, 8204 }, + }, + ["race"] = 589, + ["skill"] = 165, + ["start"] = { + ["U"] = { 7866 }, + }, + }, + [5143] = { + ["close"] = { 5141, 5143, 5144 }, + ["end"] = { + ["U"] = { 7870 }, + }, + ["lvl"] = 55, + ["min"] = 40, + ["obj"] = { + ["I"] = { 8211, 8214 }, + }, + ["race"] = 589, + ["skill"] = 165, + ["start"] = { + ["U"] = { 7870 }, + }, + }, + [5144] = { + ["close"] = { 5141, 5143, 5144 }, + ["end"] = { + ["U"] = { 7868 }, + }, + ["lvl"] = 55, + ["min"] = 40, + ["obj"] = { + ["I"] = { 7075, 7077, 7079, 7081 }, + }, + ["race"] = 589, + ["skill"] = 165, + ["start"] = { + ["U"] = { 7868 }, + }, + }, + [5145] = { + ["close"] = { 5145, 5146, 5148 }, + ["end"] = { + ["U"] = { 7867 }, + }, + ["lvl"] = 55, + ["min"] = 40, + ["obj"] = { + ["I"] = { 8165, 8203, 8204 }, + }, + ["race"] = 434, + ["skill"] = 165, + ["start"] = { + ["U"] = { 7867 }, + }, + }, + [5146] = { + ["close"] = { 5145, 5146, 5148 }, + ["end"] = { + ["U"] = { 7869 }, + }, + ["lvl"] = 55, + ["min"] = 40, + ["obj"] = { + ["I"] = { 7075, 7077, 7079, 7081 }, + }, + ["race"] = 434, + ["skill"] = 165, + ["start"] = { + ["U"] = { 7869 }, + }, + }, + [5147] = { + ["end"] = { + ["U"] = { 10537 }, + }, + ["lvl"] = 29, + ["min"] = 25, + ["obj"] = { + ["I"] = { 12884 }, + }, + ["race"] = 434, + ["start"] = { + ["O"] = { 176115 }, + }, + }, + [5148] = { + ["close"] = { 5145, 5146, 5148 }, + ["end"] = { + ["U"] = { 7871 }, + }, + ["lvl"] = 55, + ["min"] = 40, + ["obj"] = { + ["I"] = { 8211, 8214 }, + }, + ["race"] = 434, + ["skill"] = 165, + ["start"] = { + ["U"] = { 7871 }, + }, + }, + [5151] = { + ["end"] = { + ["U"] = { 10941 }, + }, + ["lvl"] = 30, + ["min"] = 24, + ["obj"] = { + ["I"] = { 12946 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 10941 }, + }, + }, + [5201] = { + ["end"] = { + ["U"] = { 10618 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["U"] = { 7438, 7439 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 10618 }, + }, + }, + [5205] = "_", + [5207] = "_", + [5208] = "_", + [5209] = "_", + [5215] = { + ["end"] = { + ["U"] = { 11053 }, + }, + ["lvl"] = 53, + ["min"] = 50, + ["pre"] = { 5092 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 10838 }, + }, + }, + [5216] = { + ["end"] = { + ["O"] = { 176361 }, + }, + ["lvl"] = 53, + ["min"] = 50, + ["obj"] = { + ["I"] = { 13194 }, + }, + ["pre"] = { 5215 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 11053 }, + }, + }, + [5217] = { + ["end"] = { + ["U"] = { 11053 }, + }, + ["lvl"] = 53, + ["min"] = 50, + ["pre"] = { 5216 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 176361 }, + }, + }, + [5219] = { + ["end"] = { + ["O"] = { 177289 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["I"] = { 13195 }, + }, + ["pre"] = { 5217 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 11053 }, + }, + }, + [5220] = { + ["end"] = { + ["U"] = { 11053 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["pre"] = { 5219 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 177289 }, + }, + }, + [5222] = { + ["end"] = { + ["O"] = { 176393 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["I"] = { 13197 }, + }, + ["pre"] = { 5220 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 11053 }, + }, + }, + [5223] = { + ["end"] = { + ["U"] = { 11053 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["pre"] = { 5222 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 176393 }, + }, + }, + [5225] = { + ["end"] = { + ["O"] = { 176392 }, + }, + ["lvl"] = 58, + ["min"] = 50, + ["obj"] = { + ["I"] = { 13196 }, + }, + ["pre"] = { 5223 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 11053 }, + }, + }, + [5226] = { + ["end"] = { + ["U"] = { 11053 }, + }, + ["lvl"] = 58, + ["min"] = 50, + ["pre"] = { 5225 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 176392 }, + }, + }, + [5228] = { + ["end"] = { + ["U"] = { 11055 }, + }, + ["lvl"] = 53, + ["min"] = 50, + ["pre"] = { 5096 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 10837 }, + }, + }, + [5229] = { + ["end"] = { + ["O"] = { 176361 }, + }, + ["lvl"] = 53, + ["min"] = 50, + ["obj"] = { + ["I"] = { 13194 }, + }, + ["pre"] = { 5228 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 11055 }, + }, + }, + [5230] = { + ["end"] = { + ["U"] = { 11055 }, + }, + ["lvl"] = 53, + ["min"] = 50, + ["pre"] = { 5229 }, + ["race"] = 434, + ["start"] = { + ["O"] = { 176361 }, + }, + }, + [5231] = { + ["end"] = { + ["O"] = { 177289 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["I"] = { 13195 }, + }, + ["pre"] = { 5230 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 11055 }, + }, + }, + [5232] = { + ["end"] = { + ["U"] = { 11055 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["pre"] = { 5231 }, + ["race"] = 434, + ["start"] = { + ["O"] = { 177289 }, + }, + }, + [5233] = { + ["end"] = { + ["O"] = { 176393 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["I"] = { 13197 }, + }, + ["pre"] = { 5232 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 11055 }, + }, + }, + [5234] = { + ["end"] = { + ["U"] = { 11055 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["pre"] = { 5233 }, + ["race"] = 434, + ["start"] = { + ["O"] = { 176393 }, + }, + }, + [5235] = { + ["end"] = { + ["O"] = { 176392 }, + }, + ["lvl"] = 58, + ["min"] = 50, + ["obj"] = { + ["I"] = { 13196 }, + }, + ["pre"] = { 5234 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 11055 }, + }, + }, + [5236] = { + ["end"] = { + ["U"] = { 11055 }, + }, + ["lvl"] = 58, + ["min"] = 50, + ["pre"] = { 5235 }, + ["race"] = 434, + ["start"] = { + ["O"] = { 176392 }, + }, + }, + [5237] = { + ["end"] = { + ["U"] = { 10838 }, + }, + ["lvl"] = 58, + ["min"] = 50, + ["pre"] = { 5226 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 10838 }, + }, + }, + [5238] = { + ["end"] = { + ["U"] = { 10837 }, + }, + ["lvl"] = 58, + ["min"] = 50, + ["pre"] = { 5236 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 10837 }, + }, + }, + [5244] = { + ["end"] = { + ["U"] = { 10301 }, + }, + ["lvl"] = 56, + ["min"] = 53, + ["pre"] = { 5249, 5250 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 11079 }, + }, + }, + [5245] = { + ["end"] = { + ["U"] = { 10304 }, + }, + ["lvl"] = 56, + ["min"] = 53, + ["obj"] = { + ["I"] = { 12896, 12897, 12898, 12899 }, + }, + ["pre"] = { 5244 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 10301 }, + }, + }, + [5246] = { + ["end"] = { + ["U"] = { 10304 }, + }, + ["lvl"] = 56, + ["min"] = 53, + ["obj"] = { + ["I"] = { 13313 }, + }, + ["pre"] = { 5245 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 10304 }, + }, + }, + [5247] = { + ["end"] = { + ["U"] = { 10304 }, + }, + ["lvl"] = 57, + ["min"] = 53, + ["obj"] = { + ["I"] = { 11562, 12655, 16973 }, + ["IR"] = { 16974 }, + }, + ["pre"] = { 5246 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 10304 }, + }, + }, + [5248] = { + ["end"] = { + ["U"] = { 10684 }, + }, + ["lvl"] = 58, + ["min"] = 53, + ["pre"] = { 5247 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 10304 }, + }, + }, + [5249] = { + ["close"] = { 5249, 5250 }, + ["end"] = { + ["U"] = { 11079 }, + }, + ["lvl"] = 56, + ["min"] = 53, + ["race"] = 589, + ["start"] = { + ["U"] = { 10924 }, + }, + }, + [5250] = { + ["close"] = { 5249, 5250 }, + ["end"] = { + ["U"] = { 11079 }, + }, + ["lvl"] = 56, + ["min"] = 53, + ["race"] = 589, + ["start"] = { + ["U"] = { 7907 }, + }, + }, + [5252] = { + ["end"] = { + ["U"] = { 11079 }, + }, + ["lvl"] = 58, + ["min"] = 53, + ["pre"] = { 5248 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 10684 }, + }, + }, + [5253] = { + ["end"] = { + ["U"] = { 3516 }, + }, + ["lvl"] = 58, + ["min"] = 53, + ["pre"] = { 5252 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 11079 }, + }, + }, + [5261] = { + ["end"] = { + ["U"] = { 196 }, + }, + ["lvl"] = 2, + ["min"] = 1, + ["pre"] = { 783 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 823 }, + }, + }, + [5283] = { + ["close"] = { 5283, 5284 }, + ["end"] = { + ["U"] = { 5164 }, + }, + ["lvl"] = 40, + ["min"] = 40, + ["obj"] = { + ["I"] = { 7935, 7936, 7937 }, + }, + ["race"] = 589, + ["skill"] = 164, + ["start"] = { + ["U"] = { 5164 }, + }, + }, + [5284] = { + ["close"] = { 5283, 5284 }, + ["end"] = { + ["U"] = { 11146 }, + }, + ["lvl"] = 40, + ["min"] = 40, + ["obj"] = { + ["I"] = { 3853, 3855, 7941, 7945 }, + }, + ["race"] = 589, + ["skill"] = 164, + ["start"] = { + ["U"] = { 11146 }, + }, + }, + [5301] = { + ["close"] = { 5301, 5302 }, + ["end"] = { + ["U"] = { 11177 }, + }, + ["lvl"] = 40, + ["min"] = 40, + ["obj"] = { + ["I"] = { 7935, 7936, 7937 }, + }, + ["race"] = 434, + ["skill"] = 164, + ["start"] = { + ["U"] = { 11177 }, + }, + }, + [5302] = { + ["close"] = { 5301, 5302 }, + ["end"] = { + ["U"] = { 11178 }, + }, + ["lvl"] = 40, + ["min"] = 40, + ["obj"] = { + ["I"] = { 3853, 3855, 7941, 7945 }, + }, + ["race"] = 434, + ["skill"] = 164, + ["start"] = { + ["U"] = { 11178 }, + }, + }, + [5321] = { + ["end"] = { + ["U"] = { 11219 }, + }, + ["lvl"] = 20, + ["min"] = 17, + ["obj"] = { + ["I"] = { 13536 }, + ["IR"] = { 13536 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 11218 }, + }, + }, + [5341] = { + ["end"] = { + ["U"] = { 11022 }, + }, + ["lvl"] = 60, + ["min"] = 52, + ["obj"] = { + ["I"] = { 13448, 13450, 13451, 13471 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 11022 }, + }, + }, + [5342] = { + ["end"] = { + ["U"] = { 11022 }, + }, + ["lvl"] = 60, + ["min"] = 52, + ["obj"] = { + ["I"] = { 13469 }, + }, + ["pre"] = { 5341 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 11022 }, + }, + }, + [5343] = { + ["end"] = { + ["U"] = { 11023 }, + }, + ["lvl"] = 60, + ["min"] = 52, + ["obj"] = { + ["I"] = { 13448, 13450, 13451, 13471 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 11023 }, + }, + }, + [5344] = { + ["end"] = { + ["U"] = { 11023 }, + }, + ["lvl"] = 60, + ["min"] = 52, + ["obj"] = { + ["I"] = { 13470 }, + }, + ["pre"] = { 5343 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 11023 }, + }, + }, + [5361] = { + ["end"] = { + ["U"] = { 11259 }, + }, + ["lvl"] = 35, + ["min"] = 32, + ["race"] = 434, + ["start"] = { + ["U"] = { 10537 }, + }, + }, + [5381] = { + ["end"] = { + ["U"] = { 11624 }, + }, + ["lvl"] = 38, + ["min"] = 32, + ["obj"] = { + ["I"] = { 13542 }, + ["IR"] = { 14523 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 11624 }, + }, + }, + [5383] = "_", + [5384] = { + ["end"] = { + ["U"] = { 11216 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["U"] = { 10506 }, + }, + ["pre"] = { 5515 }, + ["start"] = { + ["U"] = { 11216 }, + }, + }, + [5386] = { + ["end"] = { + ["U"] = { 11259 }, + }, + ["lvl"] = 37, + ["min"] = 32, + ["obj"] = { + ["I"] = { 13546 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 11259 }, + }, + }, + [5401] = { + ["close"] = { 5401, 5405, 5503 }, + ["end"] = { + ["U"] = { 10840 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["race"] = 589, + ["start"] = { + ["U"] = { 10840 }, + }, + }, + [5402] = { + ["end"] = { + ["U"] = { 10839 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["I"] = { 12840 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 10839 }, + }, + }, + [5403] = { + ["end"] = { + ["U"] = { 10839 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["I"] = { 12841 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 10839 }, + }, + }, + [5404] = { + ["end"] = { + ["U"] = { 10840 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["I"] = { 12843 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 10840 }, + }, + }, + [5405] = { + ["close"] = { 5401, 5405, 5503 }, + ["end"] = { + ["U"] = { 10839 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["race"] = 434, + ["start"] = { + ["U"] = { 10839 }, + }, + }, + [5406] = { + ["end"] = { + ["U"] = { 10839 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["I"] = { 12843 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 10839 }, + }, + }, + [5407] = { + ["end"] = { + ["U"] = { 10840 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["I"] = { 12841 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 10840 }, + }, + }, + [5408] = { + ["end"] = { + ["U"] = { 10840 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["I"] = { 12840 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 10840 }, + }, + }, + [5421] = { + ["end"] = { + ["U"] = { 11317 }, + }, + ["lvl"] = 25, + ["min"] = 25, + ["obj"] = { + ["I"] = { 13545 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 11317 }, + }, + }, + [5441] = { + ["end"] = { + ["U"] = { 11378 }, + }, + ["lvl"] = 4, + ["min"] = 3, + ["obj"] = { + ["U"] = { 10556 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 11378 }, + }, + }, + [5481] = { + ["end"] = { + ["U"] = { 10665 }, + }, + ["lvl"] = 5, + ["min"] = 5, + ["obj"] = { + ["I"] = { 12737 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 10666 }, + }, + }, + [5482] = { + ["end"] = { + ["U"] = { 10665 }, + }, + ["lvl"] = 6, + ["min"] = 5, + ["obj"] = { + ["I"] = { 13702 }, + }, + ["pre"] = { 5481 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 10665 }, + }, + }, + [5502] = { + ["end"] = { + ["U"] = { 14451 }, + }, + ["lvl"] = 60, + ["min"] = 10, + ["obj"] = { + ["I"] = { 18597 }, + }, + ["pre"] = { 925 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14444 }, + }, + }, + [5505] = { + ["end"] = { + ["U"] = { 11056 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["pre"] = { 5803 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 11056 }, + }, + }, + [5506] = "_", + [5511] = { + ["end"] = { + ["U"] = { 11057 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["pre"] = { 5804 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 11057 }, + }, + }, + [5512] = "_", + [5514] = { + ["end"] = { + ["U"] = { 5411 }, + }, + ["lvl"] = 57, + ["min"] = 55, + ["pre"] = { 964 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 11057 }, + }, + }, + [5516] = "_", + [5520] = "_", + [5523] = "_", + [5524] = { + ["close"] = { 5517, 5521, 5524 }, + ["end"] = { + ["U"] = { 10856, 10857 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 12844 }, + }, + ["start"] = { + ["U"] = { 10856, 10857 }, + }, + }, + [5530] = "_", + [5532] = "_", + [5541] = { + ["end"] = { + ["U"] = { 1243 }, + }, + ["lvl"] = 6, + ["min"] = 5, + ["obj"] = { + ["I"] = { 13850 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1694 }, + }, + }, + [5545] = { + ["end"] = { + ["U"] = { 10616 }, + }, + ["lvl"] = 9, + ["min"] = 5, + ["obj"] = { + ["I"] = { 13872 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 10616 }, + }, + }, + [5581] = { + ["end"] = { + ["U"] = { 11624 }, + }, + ["lvl"] = 38, + ["min"] = 32, + ["obj"] = { + ["IR"] = { 14547 }, + ["U"] = { 11937 }, + }, + ["pre"] = { 5381 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 11624 }, + }, + }, + [5623] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 377 }, + }, + ["lvl"] = 4, + ["min"] = 5, + ["race"] = 513, + ["start"] = { + ["U"] = { 375 }, + }, + }, + [5624] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 377 }, + }, + ["lvl"] = 4, + ["min"] = 5, + ["obj"] = { + ["U"] = { 12423 }, + }, + ["pre"] = { 5623 }, + ["race"] = 513, + ["start"] = { + ["U"] = { 377 }, + }, + }, + [5648] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 3706 }, + }, + ["lvl"] = 4, + ["min"] = 5, + ["obj"] = { + ["U"] = { 12430 }, + }, + ["pre"] = { 5649 }, + ["race"] = 130, + ["start"] = { + ["U"] = { 3706 }, + }, + }, + [5649] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 3706 }, + }, + ["lvl"] = 4, + ["min"] = 5, + ["race"] = 130, + ["start"] = { + ["U"] = { 3707 }, + }, + }, + [5713] = { + ["end"] = { + ["U"] = { 11806 }, + }, + ["lvl"] = 15, + ["min"] = 10, + ["race"] = 589, + ["start"] = { + ["U"] = { 11711 }, + }, + }, + [5722] = { + ["end"] = { + ["U"] = { 11834 }, + }, + ["lvl"] = 16, + ["min"] = 9, + ["race"] = 434, + ["start"] = { + ["U"] = { 11833 }, + }, + }, + [5723] = { + ["end"] = { + ["U"] = { 11833 }, + }, + ["lvl"] = 15, + ["min"] = 9, + ["obj"] = { + ["U"] = { 11318, 11319 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 11833 }, + }, + }, + [5724] = { + ["end"] = { + ["U"] = { 11833 }, + }, + ["lvl"] = 16, + ["min"] = 9, + ["pre"] = { 5722 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 11834 }, + }, + }, + [5725] = { + ["end"] = { + ["U"] = { 2425 }, + }, + ["lvl"] = 16, + ["min"] = 9, + ["obj"] = { + ["I"] = { 14395, 14396 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2425 }, + }, + }, + [5726] = { + ["end"] = { + ["U"] = { 4949 }, + }, + ["lvl"] = 12, + ["min"] = 9, + ["obj"] = { + ["I"] = { 14544 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4949 }, + }, + }, + [5727] = { + ["end"] = { + ["U"] = { 4949 }, + }, + ["lvl"] = 12, + ["min"] = 9, + ["pre"] = { 5726 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4949 }, + }, + }, + [5728] = { + ["end"] = { + ["U"] = { 4949 }, + }, + ["lvl"] = 16, + ["min"] = 9, + ["obj"] = { + ["U"] = { 11518, 11519 }, + }, + ["pre"] = { 5727 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4949 }, + }, + }, + [5729] = { + ["end"] = { + ["U"] = { 3216 }, + }, + ["lvl"] = 15, + ["min"] = 9, + ["pre"] = { 5728 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4949 }, + }, + }, + [5730] = { + ["end"] = { + ["U"] = { 4949 }, + }, + ["lvl"] = 16, + ["min"] = 9, + ["pre"] = { 5729 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3216 }, + }, + }, + [5742] = { + ["end"] = { + ["U"] = { 1855 }, + }, + ["lvl"] = 56, + ["min"] = 52, + ["pre"] = { 5542, 5543, 5544 }, + ["start"] = { + ["U"] = { 1855 }, + }, + }, + [5761] = { + ["end"] = { + ["U"] = { 3216 }, + }, + ["lvl"] = 16, + ["min"] = 9, + ["obj"] = { + ["I"] = { 14540 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3216 }, + }, + }, + [5763] = { + ["end"] = { + ["U"] = { 715 }, + }, + ["lvl"] = 31, + ["min"] = 28, + ["race"] = 434, + ["start"] = { + ["U"] = { 11877 }, + }, + }, + [5802] = { + ["end"] = { + ["U"] = { 11057 }, + }, + ["lvl"] = 57, + ["min"] = 55, + ["obj"] = { + ["I"] = { 14645 }, + ["IR"] = { 14644 }, + }, + ["pre"] = { 5514 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5411 }, + }, + }, + [5804] = { + ["end"] = { + ["U"] = { 11057 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 14610 }, + }, + ["pre"] = { 5802 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 11057 }, + }, + }, + [5805] = "_", + [5841] = "_", + [5842] = "_", + [5843] = "_", + [5844] = "_", + [5847] = "_", + [5881] = { + ["end"] = { + ["U"] = { 12576 }, + }, + ["lvl"] = 28, + ["min"] = 23, + ["race"] = 434, + ["start"] = { + ["U"] = { 11860 }, + }, + }, + [5882] = { + ["end"] = { + ["U"] = { 9528 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11515 }, + }, + ["pre"] = { 4101 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 9528 }, + }, + }, + [5883] = { + ["end"] = { + ["U"] = { 9528 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11513 }, + }, + ["pre"] = { 4101 }, + ["race"] = 589, + ["skill"] = 186, + ["start"] = { + ["U"] = { 9528 }, + }, + }, + [5884] = { + ["end"] = { + ["U"] = { 9528 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11514 }, + }, + ["pre"] = { 4101 }, + ["race"] = 589, + ["skill"] = 182, + ["start"] = { + ["U"] = { 9528 }, + }, + }, + [5885] = { + ["end"] = { + ["U"] = { 9528 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11512 }, + }, + ["pre"] = { 4101 }, + ["race"] = 589, + ["skill"] = 393, + ["start"] = { + ["U"] = { 9528 }, + }, + }, + [5886] = { + ["end"] = { + ["U"] = { 9528 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11174 }, + }, + ["pre"] = { 4101 }, + ["race"] = 589, + ["skill"] = 333, + ["start"] = { + ["U"] = { 9528 }, + }, + }, + [5887] = { + ["end"] = { + ["U"] = { 9529 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11515 }, + }, + ["pre"] = { 4102 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 9529 }, + }, + }, + [5888] = { + ["end"] = { + ["U"] = { 9529 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11513 }, + }, + ["pre"] = { 4102 }, + ["race"] = 434, + ["skill"] = 186, + ["start"] = { + ["U"] = { 9529 }, + }, + }, + [5889] = { + ["end"] = { + ["U"] = { 9529 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11514 }, + }, + ["pre"] = { 4102 }, + ["race"] = 434, + ["skill"] = 182, + ["start"] = { + ["U"] = { 9529 }, + }, + }, + [5890] = { + ["end"] = { + ["U"] = { 9529 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11512 }, + }, + ["pre"] = { 4102 }, + ["race"] = 434, + ["skill"] = 393, + ["start"] = { + ["U"] = { 9529 }, + }, + }, + [5891] = { + ["end"] = { + ["U"] = { 9529 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11174 }, + }, + ["pre"] = { 4102 }, + ["race"] = 434, + ["skill"] = 333, + ["start"] = { + ["U"] = { 9529 }, + }, + }, + [5892] = { + ["end"] = { + ["U"] = { 12096 }, + }, + ["lvl"] = 55, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17522 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 12096 }, + }, + }, + [5893] = { + ["end"] = { + ["U"] = { 12097 }, + }, + ["lvl"] = 55, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17542 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 12097 }, + }, + }, + [5901] = { + ["end"] = { + ["U"] = { 11615 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 15043 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 11615 }, + }, + }, + [5902] = { + ["end"] = { + ["O"] = { 177491 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["pre"] = { 5901 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 11615 }, + }, + }, + [5903] = { + ["end"] = { + ["U"] = { 11616 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 15043 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 11616 }, + }, + }, + [5904] = { + ["end"] = { + ["O"] = { 177491 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["pre"] = { 5903 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 11616 }, + }, + }, + [5921] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 11802 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 5923, 5924, 5925 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4217 }, + }, + }, + [5922] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 11802 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 5926, 5927, 5928 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3033 }, + }, + }, + [5923] = { + ["class"] = 1024, + ["close"] = { 5923, 5924, 5925 }, + ["end"] = { + ["U"] = { 4217 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 589, + ["start"] = { + ["U"] = { 4218 }, + }, + }, + [5924] = { + ["class"] = 1024, + ["close"] = { 5923, 5924, 5925 }, + ["end"] = { + ["U"] = { 4217 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 589, + ["start"] = { + ["U"] = { 5505 }, + }, + }, + [5925] = { + ["class"] = 1024, + ["close"] = { 5923, 5924, 5925 }, + ["end"] = { + ["U"] = { 4217 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 589, + ["start"] = { + ["U"] = { 3602 }, + }, + }, + [5926] = { + ["class"] = 1024, + ["close"] = { 5926, 5927, 5928 }, + ["end"] = { + ["U"] = { 3033 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 434, + ["start"] = { + ["U"] = { 6746 }, + }, + }, + [5927] = { + ["class"] = 1024, + ["close"] = { 5926, 5927, 5928 }, + ["end"] = { + ["U"] = { 3033 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 434, + }, + [5928] = { + ["class"] = 1024, + ["close"] = { 5926, 5927, 5928 }, + ["end"] = { + ["U"] = { 3033 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 434, + ["start"] = { + ["U"] = { 3064 }, + }, + }, + [5929] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 11802 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 5921 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 11802 }, + }, + }, + [5930] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 11802 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 5922 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 11802 }, + }, + }, + [5931] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 4217 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 5929 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 11802 }, + }, + }, + [5932] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 3033 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 5930 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 11802 }, + }, + }, + [5961] = { + ["end"] = { + ["U"] = { 11878 }, + }, + ["lvl"] = 56, + ["min"] = 54, + ["race"] = 434, + ["start"] = { + ["U"] = { 10181 }, + }, + }, + [5981] = { + ["end"] = { + ["U"] = { 10618 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["U"] = { 7428, 7429 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 10618 }, + }, + }, + [6000] = { + ["lvl"] = 50, + ["min"] = 40, + ["race"] = 589, + }, + [6001] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 4217 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["IR"] = { 15208 }, + }, + ["pre"] = { 5931 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4217 }, + }, + }, + [6002] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 3033 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["IR"] = { 15710 }, + }, + ["pre"] = { 5932 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3033 }, + }, + }, + [6022] = { + ["end"] = { + ["U"] = { 11878 }, + }, + ["lvl"] = 58, + ["min"] = 54, + ["obj"] = { + ["I"] = { 15447, 15448 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 11878 }, + }, + }, + [6028] = { + ["end"] = { + ["U"] = { 10840 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["race"] = 589, + ["start"] = { + ["U"] = { 10431 }, + }, + }, + [6029] = { + ["end"] = { + ["U"] = { 10839 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["race"] = 434, + ["start"] = { + ["U"] = { 10431 }, + }, + }, + [6042] = { + ["end"] = { + ["U"] = { 11878 }, + }, + ["lvl"] = 58, + ["min"] = 54, + ["obj"] = { + ["U"] = { 8601, 8602 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 11878 }, + }, + }, + [6068] = { + ["class"] = 4, + ["close"] = { 6068, 6069, 6070 }, + ["end"] = { + ["U"] = { 3171 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 130, + ["start"] = { + ["U"] = { 3154 }, + }, + }, + [6069] = { + ["class"] = 4, + ["close"] = { 6068, 6069, 6070 }, + ["end"] = { + ["U"] = { 3171 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 130, + ["start"] = { + ["U"] = { 3407 }, + }, + }, + [6073] = { + ["class"] = 4, + ["close"] = { 6071, 6072, 6073, 6721, 6722 }, + ["end"] = { + ["U"] = { 3601 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 8, + ["start"] = { + ["U"] = { 4205 }, + }, + }, + [6074] = { + ["class"] = 4, + ["close"] = { 6074, 6075, 6076 }, + ["end"] = { + ["U"] = { 1231 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 4, + ["start"] = { + ["U"] = { 895 }, + }, + }, + [6075] = { + ["class"] = 4, + ["close"] = { 6074, 6075, 6076 }, + ["end"] = { + ["U"] = { 1231 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 4, + ["start"] = { + ["U"] = { 5117 }, + }, + }, + [6085] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 1231 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["IR"] = { 15908 }, + }, + ["pre"] = { 6084 }, + ["race"] = 4, + ["start"] = { + ["U"] = { 1231 }, + }, + }, + [6121] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 11802 }, + }, + ["lvl"] = 14, + ["min"] = 14, + ["race"] = 589, + ["start"] = { + ["U"] = { 4217 }, + }, + }, + [6122] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 3702 }, + }, + ["lvl"] = 14, + ["min"] = 14, + ["obj"] = { + ["I"] = { 15845 }, + ["IR"] = { 15844 }, + }, + ["pre"] = { 6121 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 11802 }, + }, + }, + [6123] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 3702 }, + }, + ["lvl"] = 14, + ["min"] = 14, + ["obj"] = { + ["I"] = { 2449, 15851 }, + }, + ["pre"] = { 6122 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3702 }, + }, + }, + [6124] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 11802 }, + }, + ["lvl"] = 14, + ["min"] = 14, + ["obj"] = { + ["IR"] = { 15826 }, + ["U"] = { 12298 }, + }, + ["pre"] = { 6123 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3702 }, + }, + }, + [6125] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 4217 }, + }, + ["lvl"] = 14, + ["min"] = 14, + ["pre"] = { 6124 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 11802 }, + }, + }, + [6126] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 11802 }, + }, + ["lvl"] = 14, + ["min"] = 14, + ["race"] = 434, + ["start"] = { + ["U"] = { 3033 }, + }, + }, + [6127] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 3448 }, + }, + ["lvl"] = 14, + ["min"] = 14, + ["obj"] = { + ["I"] = { 15843 }, + ["IR"] = { 15842 }, + }, + ["pre"] = { 6126 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 11802 }, + }, + }, + [6128] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 3448 }, + }, + ["lvl"] = 14, + ["min"] = 14, + ["obj"] = { + ["I"] = { 2449, 15852 }, + }, + ["pre"] = { 6127 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3448 }, + }, + }, + [6129] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 11802 }, + }, + ["lvl"] = 14, + ["min"] = 14, + ["obj"] = { + ["IR"] = { 15826 }, + ["U"] = { 12296 }, + }, + ["pre"] = { 6128 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3448 }, + }, + }, + [6130] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 3033 }, + }, + ["lvl"] = 14, + ["min"] = 14, + ["pre"] = { 6129 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 11802 }, + }, + }, + [6131] = { + ["lvl"] = 48, + ["min"] = 45, + ["obj"] = { + ["U"] = { 7153, 7154, 7155 }, + }, + }, + [6133] = { + ["end"] = { + ["U"] = { 11878 }, + }, + ["lvl"] = 60, + ["min"] = 54, + ["obj"] = { + ["I"] = { 15847 }, + ["U"] = { 8563, 8564, 8565 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 11878 }, + }, + }, + [6135] = { + ["end"] = { + ["U"] = { 11878 }, + }, + ["lvl"] = 60, + ["min"] = 56, + ["obj"] = { + ["I"] = { 15850 }, + }, + ["pre"] = { 6133 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 11878 }, + }, + }, + [6136] = { + ["end"] = { + ["U"] = { 11878 }, + }, + ["lvl"] = 60, + ["min"] = 56, + ["obj"] = { + ["U"] = { 11896 }, + }, + ["pre"] = { 6022 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 11878 }, + }, + }, + [6141] = { + ["end"] = { + ["U"] = { 1182 }, + }, + ["lvl"] = 39, + ["min"] = 34, + ["race"] = 589, + ["start"] = { + ["U"] = { 12336 }, + }, + }, + [6142] = { + ["end"] = { + ["U"] = { 12031 }, + }, + ["lvl"] = 35, + ["min"] = 31, + ["obj"] = { + ["I"] = { 15874, 15924 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 12031 }, + }, + }, + [6143] = { + ["end"] = { + ["U"] = { 12340 }, + }, + ["lvl"] = 36, + ["min"] = 32, + ["obj"] = { + ["U"] = { 4711, 4712, 4714 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 12340 }, + }, + }, + [6144] = { + ["end"] = { + ["U"] = { 2425 }, + }, + ["lvl"] = 60, + ["min"] = 56, + ["pre"] = { 6135 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 11878 }, + }, + }, + [6145] = { + ["end"] = { + ["U"] = { 11878 }, + }, + ["lvl"] = 60, + ["min"] = 56, + ["obj"] = { + ["I"] = { 15868 }, + }, + ["pre"] = { 6144 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2425 }, + }, + }, + [6146] = { + ["end"] = { + ["U"] = { 11898 }, + }, + ["lvl"] = 60, + ["min"] = 56, + ["obj"] = { + ["I"] = { 13852, 15875 }, + }, + ["pre"] = { 6145 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 11878 }, + }, + }, + [6147] = { + ["end"] = { + ["U"] = { 11878 }, + }, + ["lvl"] = 60, + ["min"] = 56, + ["pre"] = { 6146 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 11898 }, + }, + }, + [6148] = { + ["end"] = { + ["U"] = { 11878 }, + }, + ["lvl"] = 60, + ["min"] = 56, + ["obj"] = { + ["U"] = { 12339 }, + }, + ["pre"] = { 6147 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 11878 }, + }, + }, + [6162] = { + ["end"] = { + ["U"] = { 9620 }, + }, + ["lvl"] = 51, + ["min"] = 46, + ["obj"] = { + ["I"] = { 15879 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 9620 }, + }, + }, + [6163] = { + ["end"] = { + ["U"] = { 11878 }, + }, + ["lvl"] = 60, + ["min"] = 56, + ["obj"] = { + ["I"] = { 15880 }, + }, + ["pre"] = { 6135 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 11878 }, + }, + }, + [6165] = { + ["lvl"] = 58, + ["min"] = 56, + }, + [6181] = { + ["end"] = { + ["U"] = { 523 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 589, + ["start"] = { + ["U"] = { 491 }, + }, + }, + [6182] = { + ["end"] = { + ["U"] = { 332 }, + }, + ["lvl"] = 60, + ["min"] = 56, + ["race"] = 589, + ["start"] = { + ["U"] = { 1748 }, + }, + }, + [6183] = { + ["end"] = { + ["U"] = { 332 }, + }, + ["lvl"] = 60, + ["min"] = 56, + ["pre"] = { 6182 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 332 }, + }, + }, + [6184] = { + ["end"] = { + ["U"] = { 12425 }, + }, + ["lvl"] = 60, + ["min"] = 56, + ["pre"] = { 6183 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 332 }, + }, + }, + [6185] = { + ["end"] = { + ["U"] = { 12425 }, + }, + ["lvl"] = 60, + ["min"] = 56, + ["obj"] = { + ["A"] = { 2726 }, + ["I"] = { 16001, 16002, 16003 }, + }, + ["pre"] = { 6184 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 12425 }, + }, + }, + [6186] = { + ["end"] = { + ["U"] = { 1748 }, + }, + ["lvl"] = 60, + ["min"] = 56, + ["pre"] = { 6185 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 12425 }, + }, + }, + [6187] = { + ["end"] = { + ["U"] = { 1748 }, + }, + ["lvl"] = 60, + ["min"] = 56, + ["obj"] = { + ["U"] = { 11878 }, + }, + ["pre"] = { 6186 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1748 }, + }, + }, + [6201] = "_", + [6261] = { + ["end"] = { + ["U"] = { 352 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 6281 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1323 }, + }, + }, + [6281] = { + ["end"] = { + ["U"] = { 1323 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 6181 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 523 }, + }, + }, + [6282] = { + ["end"] = { + ["U"] = { 11860 }, + }, + ["lvl"] = 26, + ["min"] = 18, + ["obj"] = { + ["U"] = { 4022, 4023, 4024, 4025 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 11860 }, + }, + }, + [6283] = { + ["end"] = { + ["U"] = { 11860 }, + }, + ["lvl"] = 26, + ["min"] = 18, + ["obj"] = { + ["I"] = { 16190 }, + }, + ["pre"] = { 6282 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 11860 }, + }, + }, + [6284] = { + ["end"] = { + ["U"] = { 11860 }, + }, + ["lvl"] = 21, + ["min"] = 15, + ["obj"] = { + ["I"] = { 16192 }, + }, + ["race"] = 434, + ["start"] = { + ["O"] = { 177904 }, + }, + }, + [6285] = { + ["end"] = { + ["U"] = { 491 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 6261 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 352 }, + }, + }, + [6301] = { + ["end"] = { + ["U"] = { 11864 }, + }, + ["lvl"] = 23, + ["min"] = 17, + ["obj"] = { + ["I"] = { 16205 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 11864 }, + }, + }, + [6321] = { + ["end"] = { + ["U"] = { 2226 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 434, + ["start"] = { + ["U"] = { 6389 }, + }, + }, + [6322] = { + ["end"] = { + ["U"] = { 4551 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 6323 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4556 }, + }, + }, + [6323] = { + ["end"] = { + ["U"] = { 4556 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 6321 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2226 }, + }, + }, + [6324] = { + ["end"] = { + ["U"] = { 6389 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 6322 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4551 }, + }, + }, + [6341] = { + ["end"] = { + ["U"] = { 3838 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 6344 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 10118 }, + }, + }, + [6342] = { + ["end"] = { + ["U"] = { 4200 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 6341 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3838 }, + }, + }, + [6343] = { + ["end"] = { + ["U"] = { 10118 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 6342 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4200 }, + }, + }, + [6344] = { + ["end"] = { + ["U"] = { 10118 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 589, + ["start"] = { + ["U"] = { 4241 }, + }, + }, + [6362] = { + ["end"] = { + ["U"] = { 8359 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 6361 }, + ["race"] = 32, + ["start"] = { + ["U"] = { 3615 }, + }, + }, + [6363] = { + ["end"] = { + ["U"] = { 2995 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 6362 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 8359 }, + }, + }, + [6364] = { + ["end"] = { + ["U"] = { 3483 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 6363 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2995 }, + }, + }, + [6381] = { + ["end"] = { + ["U"] = { 11864 }, + }, + ["lvl"] = 25, + ["min"] = 17, + ["obj"] = { + ["IR"] = { 16208 }, + ["O"] = { 177929 }, + }, + ["pre"] = { 6301 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 11864 }, + }, + }, + [6382] = { + ["close"] = { 235, 742, 6382 }, + ["end"] = { + ["U"] = { 12696 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["pre"] = { 882 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3387 }, + }, + }, + [6383] = { + ["end"] = { + ["U"] = { 12696 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["race"] = 434, + ["start"] = { + ["U"] = { 12696 }, + }, + }, + [6384] = { + ["end"] = { + ["U"] = { 6929 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 6365 }, + ["race"] = 130, + ["start"] = { + ["U"] = { 3615 }, + }, + }, + [6385] = { + ["end"] = { + ["U"] = { 3310 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 6384 }, + ["race"] = 130, + ["start"] = { + ["U"] = { 6929 }, + }, + }, + [6386] = { + ["end"] = { + ["U"] = { 3489 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 6385 }, + ["race"] = 130, + ["start"] = { + ["U"] = { 3310 }, + }, + }, + [6387] = { + ["end"] = { + ["U"] = { 1572 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 589, + ["start"] = { + ["U"] = { 1681 }, + }, + }, + [6388] = { + ["end"] = { + ["U"] = { 1573 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 6391 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4256 }, + }, + }, + [6389] = { + ["end"] = { + ["U"] = { 11616 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["pre"] = { 5904 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 177491 }, + }, + }, + [6390] = { + ["end"] = { + ["U"] = { 11615 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["pre"] = { 5902 }, + ["race"] = 434, + ["start"] = { + ["O"] = { 177491 }, + }, + }, + [6391] = { + ["end"] = { + ["U"] = { 4256 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 6387 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1572 }, + }, + }, + [6392] = { + ["end"] = { + ["U"] = { 1681 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 6388 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1573 }, + }, + }, + [6393] = { + ["end"] = { + ["U"] = { 11862 }, + }, + ["lvl"] = 25, + ["min"] = 19, + ["obj"] = { + ["I"] = { 16312 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 11862 }, + }, + }, + [6394] = { + ["end"] = { + ["U"] = { 11378 }, + }, + ["lvl"] = 4, + ["min"] = 3, + ["obj"] = { + ["I"] = { 16332 }, + }, + ["pre"] = { 5441 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 11378 }, + }, + }, + [6395] = { + ["end"] = { + ["U"] = { 1661 }, + }, + ["lvl"] = 5, + ["min"] = 3, + ["obj"] = { + ["I"] = { 16333 }, + ["IR"] = { 16333 }, + ["O"] = { 178090 }, + }, + ["pre"] = { 376 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1661 }, + }, + }, + [6401] = { + ["end"] = { + ["U"] = { 11864 }, + }, + ["lvl"] = 18, + ["min"] = 12, + ["pre"] = { 6523 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 11857 }, + }, + }, + [6402] = { + ["end"] = { + ["U"] = { 12580 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["pre"] = { 4322 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 9560 }, + }, + }, + [6403] = { + ["end"] = { + ["U"] = { 1748 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["pre"] = { 6402 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 12580 }, + }, + }, + [6421] = { + ["end"] = { + ["U"] = { 11861 }, + }, + ["lvl"] = 18, + ["min"] = 14, + ["obj"] = { + ["A"] = { 2946 }, + ["I"] = { 16581 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 11861 }, + }, + }, + [6441] = { + ["end"] = { + ["U"] = { 12724 }, + }, + ["lvl"] = 26, + ["min"] = 21, + ["obj"] = { + ["I"] = { 5481 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 12724 }, + }, + }, + [6442] = { + ["end"] = { + ["U"] = { 12719 }, + }, + ["lvl"] = 19, + ["min"] = 14, + ["obj"] = { + ["I"] = { 5490 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 12719 }, + }, + }, + [6461] = { + ["end"] = { + ["U"] = { 12816 }, + }, + ["lvl"] = 19, + ["min"] = 13, + ["obj"] = { + ["U"] = { 4005, 4007 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 12816 }, + }, + }, + [6462] = { + ["end"] = { + ["U"] = { 12721 }, + }, + ["lvl"] = 24, + ["min"] = 19, + ["obj"] = { + ["I"] = { 16602 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 12721 }, + }, + }, + [6481] = { + ["end"] = { + ["U"] = { 11861 }, + }, + ["lvl"] = 20, + ["min"] = 14, + ["obj"] = { + ["IR"] = { 16603 }, + ["U"] = { 11920 }, + }, + ["pre"] = { 6421 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 11861 }, + }, + }, + [6482] = { + ["end"] = { + ["U"] = { 12837 }, + }, + ["lvl"] = 24, + ["min"] = 19, + ["race"] = 434, + ["start"] = { + ["U"] = { 12818 }, + }, + }, + [6501] = { + ["end"] = { + ["U"] = { 10929 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["pre"] = { 6403 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1748 }, + }, + }, + [6502] = { + ["end"] = { + ["U"] = { 10929 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 16663 }, + }, + ["pre"] = { 6501 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 10929 }, + }, + }, + [6503] = { + ["end"] = { + ["U"] = { 12867 }, + }, + ["lvl"] = 24, + ["min"] = 19, + ["obj"] = { + ["U"] = { 12856 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 12867 }, + }, + }, + [6504] = { + ["end"] = { + ["U"] = { 12718 }, + }, + ["lvl"] = 30, + ["min"] = 23, + ["obj"] = { + ["I"] = { 16642, 16643, 16644 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 12718 }, + }, + }, + [6521] = { + ["end"] = { + ["U"] = { 2425 }, + }, + ["lvl"] = 36, + ["min"] = 28, + ["obj"] = { + ["I"] = { 17009 }, + }, + ["pre"] = { 6522 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2425 }, + }, + }, + [6522] = { + ["end"] = { + ["U"] = { 2425 }, + }, + ["lvl"] = 36, + ["min"] = 28, + ["race"] = 434, + ["start"] = { + ["I"] = { 17008 }, + }, + }, + [6523] = { + ["end"] = { + ["U"] = { 11857 }, + }, + ["lvl"] = 18, + ["min"] = 12, + ["race"] = 434, + ["start"] = { + ["U"] = { 11856 }, + }, + }, + [6541] = { + ["close"] = { 6541, 6542 }, + ["end"] = { + ["U"] = { 8582 }, + }, + ["lvl"] = 19, + ["min"] = 17, + ["race"] = 434, + ["start"] = { + ["U"] = { 3429 }, + }, + }, + [6542] = { + ["close"] = { 6541, 6542 }, + ["end"] = { + ["U"] = { 8582 }, + }, + ["lvl"] = 19, + ["min"] = 17, + ["race"] = 434, + ["start"] = { + ["U"] = { 11821 }, + }, + }, + [6543] = { + ["end"] = { + ["U"] = { 8582 }, + }, + ["lvl"] = 19, + ["min"] = 17, + ["obj"] = { + ["I"] = { 16763, 16764, 16765 }, + }, + ["pre"] = { 6541, 6542 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 8582 }, + }, + }, + [6544] = { + ["end"] = { + ["U"] = { 12877 }, + }, + ["lvl"] = 24, + ["min"] = 20, + ["race"] = 434, + ["start"] = { + ["U"] = { 12858 }, + }, + }, + [6545] = { + ["end"] = { + ["U"] = { 12863 }, + }, + ["lvl"] = 19, + ["min"] = 17, + ["obj"] = { + ["I"] = { 16746 }, + }, + ["pre"] = { 6543 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 12863 }, + }, + }, + [6546] = { + ["end"] = { + ["U"] = { 12864 }, + }, + ["lvl"] = 25, + ["min"] = 17, + ["obj"] = { + ["I"] = { 16746 }, + }, + ["pre"] = { 6543 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 12864 }, + }, + }, + [6547] = { + ["end"] = { + ["U"] = { 12862 }, + }, + ["lvl"] = 21, + ["min"] = 17, + ["obj"] = { + ["I"] = { 16746 }, + }, + ["pre"] = { 6543 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 12862 }, + }, + }, + [6548] = { + ["end"] = { + ["U"] = { 11857 }, + }, + ["lvl"] = 18, + ["min"] = 12, + ["obj"] = { + ["U"] = { 11910, 11911 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 11857 }, + }, + }, + [6561] = { + ["end"] = { + ["U"] = { 9087 }, + }, + ["lvl"] = 27, + ["min"] = 18, + ["obj"] = { + ["I"] = { 5881 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4787 }, + }, + }, + [6562] = { + ["end"] = { + ["U"] = { 12736 }, + }, + ["lvl"] = 22, + ["min"] = 17, + ["race"] = 434, + ["start"] = { + ["U"] = { 11862 }, + }, + }, + [6563] = { + ["end"] = { + ["U"] = { 12736 }, + }, + ["lvl"] = 22, + ["min"] = 17, + ["obj"] = { + ["I"] = { 16784 }, + }, + ["pre"] = { 6562 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 12736 }, + }, + }, + [6564] = { + ["end"] = { + ["U"] = { 12736 }, + }, + ["lvl"] = 22, + ["min"] = 17, + ["race"] = 434, + ["start"] = { + ["I"] = { 16790 }, + }, + }, + [6565] = { + ["end"] = { + ["U"] = { 12736 }, + }, + ["lvl"] = 26, + ["min"] = 17, + ["obj"] = { + ["U"] = { 12902 }, + }, + ["pre"] = { 6564 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 12736 }, + }, + }, + [6566] = { + ["end"] = { + ["U"] = { 4949 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["pre"] = { 4974 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4949 }, + }, + }, + [6567] = { + ["end"] = { + ["U"] = { 10182 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["pre"] = { 6566 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4949 }, + }, + }, + [6568] = { + ["end"] = { + ["U"] = { 11872 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["pre"] = { 6567 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 10182 }, + }, + }, + [6569] = { + ["end"] = { + ["U"] = { 11872 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 16786 }, + }, + ["pre"] = { 6568 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 11872 }, + }, + }, + [6570] = { + ["end"] = { + ["U"] = { 10321 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["pre"] = { 6569 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 11872 }, + }, + }, + [6571] = { + ["end"] = { + ["U"] = { 11820 }, + }, + ["lvl"] = 27, + ["min"] = 22, + ["obj"] = { + ["I"] = { 16742, 16743, 16744, 16745 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 11820 }, + }, + }, + [6581] = { + ["end"] = { + ["U"] = { 12724 }, + }, + ["lvl"] = 27, + ["min"] = 22, + ["obj"] = { + ["I"] = { 4369 }, + }, + ["pre"] = { 6571 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 12724 }, + }, + }, + [6582] = { + ["end"] = { + ["U"] = { 10321 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 16869 }, + }, + ["pre"] = { 6570 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 10321 }, + }, + }, + [6583] = { + ["end"] = { + ["U"] = { 10321 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 16870 }, + }, + ["pre"] = { 6570 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 10321 }, + }, + }, + [6584] = { + ["end"] = { + ["U"] = { 10321 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 16871 }, + }, + ["pre"] = { 6570 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 10321 }, + }, + }, + [6585] = { + ["end"] = { + ["U"] = { 10321 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 16872 }, + }, + ["pre"] = { 6582, 6583, 6584 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 10321 }, + }, + }, + [6601] = { + ["end"] = { + ["U"] = { 10182 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["pre"] = { 6585 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 10321 }, + }, + }, + [6602] = { + ["end"] = { + ["U"] = { 10182 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 16663 }, + }, + ["pre"] = { 6601 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 10182 }, + }, + }, + [6604] = { + ["end"] = { + ["U"] = { 10301 }, + }, + ["lvl"] = 59, + ["min"] = 53, + ["race"] = 589, + ["start"] = { + ["U"] = { 11755 }, + }, + }, + [6605] = { + ["end"] = { + ["U"] = { 9996 }, + }, + ["lvl"] = 54, + ["min"] = 49, + ["race"] = 434, + ["start"] = { + ["U"] = { 11755 }, + }, + }, + [6606] = { + ["end"] = { + ["U"] = { 10307 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["race"] = 434, + ["start"] = { + ["U"] = { 11755 }, + }, + }, + [6608] = { + ["end"] = { + ["U"] = { 12919 }, + }, + ["lvl"] = 45, + ["min"] = 35, + ["race"] = 434, + ["skill"] = 356, + ["start"] = { + ["U"] = { 3332 }, + }, + }, + [6609] = { + ["end"] = { + ["U"] = { 12919 }, + }, + ["lvl"] = 45, + ["min"] = 35, + ["race"] = 589, + ["skill"] = 356, + ["start"] = { + ["U"] = { 5161 }, + }, + }, + [6611] = { + ["end"] = { + ["U"] = { 8125 }, + }, + ["lvl"] = 45, + ["min"] = 35, + ["race"] = 434, + ["skill"] = 185, + ["start"] = { + ["U"] = { 3399 }, + }, + }, + [6612] = { + ["end"] = { + ["U"] = { 8125 }, + }, + ["lvl"] = 45, + ["min"] = 35, + ["race"] = 589, + ["skill"] = 185, + ["start"] = { + ["U"] = { 5159 }, + }, + }, + [6621] = { + ["end"] = { + ["U"] = { 12757 }, + }, + ["lvl"] = 26, + ["min"] = 21, + ["obj"] = { + ["I"] = { 16976 }, + ["IR"] = { 16972 }, + }, + ["pre"] = { 216 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 12757 }, + }, + }, + [6622] = { + ["end"] = { + ["U"] = { 12920 }, + }, + ["lvl"] = 45, + ["min"] = 35, + ["pre"] = { 6623 }, + ["race"] = 434, + ["skill"] = 129, + ["start"] = { + ["U"] = { 12920 }, + }, + }, + [6623] = { + ["end"] = { + ["U"] = { 12920 }, + }, + ["lvl"] = 45, + ["min"] = 35, + ["race"] = 434, + ["skill"] = 129, + ["start"] = { + ["U"] = { 3373 }, + }, + }, + [6624] = { + ["end"] = { + ["U"] = { 12939 }, + }, + ["lvl"] = 45, + ["min"] = 35, + ["pre"] = { 6625 }, + ["race"] = 589, + ["skill"] = 129, + ["start"] = { + ["U"] = { 12939 }, + }, + }, + [6625] = { + ["end"] = { + ["U"] = { 12939 }, + }, + ["lvl"] = 45, + ["min"] = 35, + ["race"] = 589, + ["skill"] = 129, + ["start"] = { + ["U"] = { 5150 }, + }, + }, + [6627] = { + ["end"] = { + ["U"] = { 4489 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["pre"] = { 1154 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4489 }, + }, + }, + [6628] = { + ["end"] = { + ["U"] = { 4488 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["pre"] = { 1160 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4488 }, + }, + }, + [6629] = { + ["end"] = { + ["U"] = { 11857 }, + }, + ["lvl"] = 18, + ["min"] = 12, + ["obj"] = { + ["U"] = { 11858, 11912 }, + }, + ["pre"] = { 6548 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 11857 }, + }, + }, + [6641] = { + ["end"] = { + ["U"] = { 12863 }, + }, + ["lvl"] = 23, + ["min"] = 20, + ["race"] = 434, + ["start"] = { + ["U"] = { 12717 }, + }, + }, + [6661] = { + ["end"] = { + ["U"] = { 12997 }, + }, + ["lvl"] = 12, + ["min"] = 10, + ["obj"] = { + ["U"] = { 13017 }, + }, + ["race"] = 589, + ["start"] = { + ["I"] = { 17115 }, + ["U"] = { 12997 }, + }, + }, + [6662] = { + ["end"] = { + ["U"] = { 13018 }, + }, + ["lvl"] = 12, + ["min"] = 10, + ["pre"] = { 6661 }, + ["race"] = 589, + ["start"] = { + ["I"] = { 17116 }, + ["U"] = { 12997 }, + }, + }, + [6722] = { + ["class"] = 4, + ["close"] = { 6071, 6072, 6073, 6721, 6722 }, + ["end"] = { + ["U"] = { 3601 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 8, + ["start"] = { + ["U"] = { 5515 }, + }, + }, + [6741] = { + ["end"] = { + ["U"] = { 13176 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17422 }, + }, + ["pre"] = { 7224 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 13176 }, + }, + }, + [6761] = { + ["end"] = { + ["U"] = { 4217 }, + }, + ["lvl"] = 55, + ["min"] = 54, + ["pre"] = { 1015, 1019, 1047 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3516 }, + }, + }, + [6762] = { + ["end"] = { + ["U"] = { 11801 }, + }, + ["lvl"] = 55, + ["min"] = 54, + ["pre"] = { 6761 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4217 }, + }, + }, + [6781] = { + ["end"] = { + ["U"] = { 13257 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17422 }, + }, + ["pre"] = { 7223 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 13257 }, + }, + }, + [6801] = { + ["end"] = { + ["U"] = { 13236 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17306 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 13236 }, + }, + }, + [6824] = { + ["end"] = { + ["U"] = { 13278 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 17329, 17330, 17332 }, + }, + ["pre"] = { 6823 }, + ["start"] = { + ["U"] = { 13278 }, + }, + }, + [6825] = { + ["end"] = { + ["U"] = { 13179 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17326 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 13179 }, + }, + }, + [6826] = { + ["end"] = { + ["U"] = { 13180 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17327 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 13180 }, + }, + }, + [6827] = { + ["end"] = { + ["U"] = { 13181 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17328 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 13181 }, + }, + }, + [6841] = "_", + [6842] = "_", + [6846] = { + ["end"] = { + ["U"] = { 13446 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 17353 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 13446 }, + }, + }, + [6847] = { + ["end"] = { + ["U"] = { 13151 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["race"] = 434, + ["start"] = { + ["U"] = { 13151 }, + }, + }, + [6848] = { + ["end"] = { + ["U"] = { 13151 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["race"] = 589, + ["start"] = { + ["U"] = { 13151 }, + }, + }, + [6861] = { + ["end"] = { + ["U"] = { 13377 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 3575, 3860, 12359, 17411 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 13377 }, + }, + }, + [6862] = { + ["end"] = { + ["U"] = { 13377 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 3575, 3860, 12359, 17411 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 13377 }, + }, + }, + [6881] = { + ["end"] = { + ["U"] = { 13442 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17423 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 13442 }, + }, + }, + [6901] = { + ["end"] = { + ["U"] = { 13449 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 17442 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 13449 }, + }, + }, + [6921] = { + ["end"] = { + ["U"] = { 12736 }, + }, + ["lvl"] = 27, + ["min"] = 21, + ["obj"] = { + ["I"] = { 16762 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 12736 }, + }, + }, + [6922] = { + ["end"] = { + ["U"] = { 12736 }, + }, + ["lvl"] = 30, + ["min"] = 21, + ["race"] = 434, + ["start"] = { + ["I"] = { 16782 }, + }, + }, + [6941] = { + ["end"] = { + ["U"] = { 13439 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17503 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 13439 }, + }, + }, + [6942] = { + ["end"] = { + ["U"] = { 13438 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17502 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 13438 }, + }, + }, + [6943] = { + ["end"] = { + ["U"] = { 13437 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17504 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 13437 }, + }, + }, + [6961] = { + ["close"] = { 6961, 7021, 7024 }, + ["end"] = { + ["U"] = { 13445 }, + }, + ["event"] = 2, + ["lvl"] = 60, + ["min"] = 10, + ["race"] = 434, + ["start"] = { + ["U"] = { 13418 }, + }, + }, + [6962] = { + ["end"] = { + ["U"] = { 13445 }, + }, + ["event"] = 2, + ["lvl"] = 60, + ["min"] = 10, + ["obj"] = { + ["I"] = { 1179, 17197 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 13445 }, + }, + }, + [6963] = { + ["end"] = { + ["U"] = { 13636 }, + }, + ["event"] = 2, + ["lvl"] = 60, + ["min"] = 30, + ["start"] = { + ["U"] = { 13418 }, + }, + }, + [6964] = { + ["end"] = { + ["U"] = { 13417 }, + }, + ["event"] = 2, + ["lvl"] = 60, + ["min"] = 10, + ["race"] = 434, + ["start"] = { + ["U"] = { 9550 }, + }, + }, + [6982] = { + ["end"] = { + ["U"] = { 12096 }, + }, + ["lvl"] = 55, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17542 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 12096 }, + }, + }, + [6983] = { + ["end"] = { + ["U"] = { 13418 }, + }, + ["event"] = 2, + ["lvl"] = 60, + ["min"] = 30, + ["obj"] = { + ["I"] = { 17662 }, + }, + ["pre"] = { 6963 }, + ["start"] = { + ["U"] = { 13636 }, + }, + }, + [6984] = { + ["end"] = { + ["U"] = { 13445 }, + }, + ["event"] = 2, + ["lvl"] = 60, + ["min"] = 30, + ["pre"] = { 6983 }, + ["start"] = { + ["U"] = { 13418 }, + }, + }, + [6985] = { + ["end"] = { + ["U"] = { 12097 }, + }, + ["lvl"] = 55, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17522 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 12097 }, + }, + }, + [7001] = { + ["end"] = { + ["U"] = { 13616 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["IR"] = { 17626 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 13616 }, + }, + }, + [7002] = { + ["end"] = { + ["U"] = { 13441 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17642 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 13441 }, + }, + }, + [7021] = { + ["close"] = { 6961, 7021, 7024 }, + ["end"] = { + ["U"] = { 13445 }, + }, + ["event"] = 2, + ["lvl"] = 60, + ["min"] = 10, + ["race"] = 434, + ["start"] = { + ["U"] = { 13431 }, + }, + }, + [7022] = { + ["close"] = { 7022, 7023 }, + ["end"] = { + ["U"] = { 13444 }, + }, + ["event"] = 2, + ["lvl"] = 60, + ["min"] = 10, + ["race"] = 589, + ["start"] = { + ["U"] = { 13433 }, + }, + }, + [7023] = { + ["close"] = { 7022, 7023 }, + ["end"] = { + ["U"] = { 13444 }, + }, + ["event"] = 2, + ["lvl"] = 60, + ["min"] = 10, + ["race"] = 589, + ["start"] = { + ["U"] = { 13435 }, + }, + }, + [7024] = { + ["close"] = { 6961, 7021, 7024 }, + ["end"] = { + ["U"] = { 13445 }, + }, + ["event"] = 2, + ["lvl"] = 60, + ["min"] = 10, + ["race"] = 434, + ["start"] = { + ["U"] = { 13429 }, + }, + }, + [7025] = { + ["end"] = { + ["U"] = { 13444 }, + }, + ["event"] = 2, + ["lvl"] = 60, + ["min"] = 10, + ["obj"] = { + ["I"] = { 1179, 17197 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 13444 }, + }, + }, + [7026] = { + ["end"] = { + ["U"] = { 13577 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17643 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 13577 }, + }, + }, + [7027] = { + ["end"] = { + ["U"] = { 13617 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["IR"] = { 17689 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 13617 }, + }, + }, + [7029] = { + ["end"] = { + ["U"] = { 11823 }, + }, + ["lvl"] = 47, + ["min"] = 41, + ["obj"] = { + ["I"] = { 17696 }, + ["IR"] = { 17693, 17696 }, + ["U"] = { 13696 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 11823 }, + }, + }, + [7041] = { + ["end"] = { + ["U"] = { 11715 }, + }, + ["lvl"] = 47, + ["min"] = 41, + ["obj"] = { + ["I"] = { 17696 }, + ["IR"] = { 17693, 17696 }, + ["U"] = { 13696 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 11715 }, + }, + }, + [7042] = { + ["end"] = { + ["U"] = { 13602, 13636 }, + }, + ["event"] = 2, + ["lvl"] = 60, + ["min"] = 30, + ["race"] = 589, + ["start"] = { + ["U"] = { 13433 }, + }, + }, + [7043] = { + ["end"] = { + ["U"] = { 13433 }, + }, + ["event"] = 2, + ["lvl"] = 60, + ["min"] = 30, + ["obj"] = { + ["I"] = { 17662 }, + }, + ["pre"] = { 7042 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 13636 }, + }, + }, + [7045] = { + ["end"] = { + ["U"] = { 13444 }, + }, + ["event"] = 2, + ["lvl"] = 60, + ["min"] = 30, + ["pre"] = { 7043 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 13433 }, + }, + }, + [7061] = { + ["end"] = { + ["U"] = { 3057 }, + }, + ["lvl"] = 60, + ["min"] = 10, + ["pre"] = { 6964 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 13417 }, + }, + }, + [7062] = { + ["end"] = { + ["U"] = { 2916 }, + }, + ["event"] = 2, + ["lvl"] = 60, + ["min"] = 10, + ["race"] = 589, + ["start"] = { + ["U"] = { 1365 }, + }, + }, + [7063] = { + ["end"] = { + ["U"] = { 2784 }, + }, + ["lvl"] = 60, + ["min"] = 10, + ["pre"] = { 7062 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2916 }, + }, + }, + [7064] = { + ["end"] = { + ["U"] = { 13699 }, + }, + ["lvl"] = 51, + ["min"] = 45, + ["obj"] = { + ["U"] = { 12201 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 13699 }, + }, + }, + [7065] = { + ["end"] = { + ["U"] = { 13698 }, + }, + ["lvl"] = 51, + ["min"] = 45, + ["obj"] = { + ["U"] = { 12201 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 13698 }, + }, + }, + [7068] = { + ["end"] = { + ["U"] = { 7311 }, + }, + ["lvl"] = 42, + ["min"] = 39, + ["obj"] = { + ["I"] = { 17756 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 7311 }, + }, + }, + [7069] = "_", + [7070] = { + ["end"] = { + ["U"] = { 4967 }, + }, + ["lvl"] = 42, + ["min"] = 39, + ["obj"] = { + ["I"] = { 17756 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4967 }, + }, + }, + [7081] = { + ["end"] = { + ["U"] = { 13777 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["U"] = { 13756 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 13777 }, + }, + }, + [7082] = { + ["end"] = { + ["U"] = { 13776 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["U"] = { 13756 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 13776 }, + }, + }, + [7101] = { + ["end"] = { + ["U"] = { 13776 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["U"] = { 13778 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 13776 }, + }, + }, + [7102] = { + ["end"] = { + ["U"] = { 13777 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["U"] = { 13778 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 13777 }, + }, + }, + [7121] = { + ["end"] = { + ["U"] = { 12096 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["race"] = 589, + ["start"] = { + ["U"] = { 13797 }, + }, + }, + [7122] = { + ["end"] = { + ["U"] = { 13777 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["U"] = { 13796 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 13777 }, + }, + }, + [7123] = { + ["end"] = { + ["U"] = { 12097 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["race"] = 434, + ["start"] = { + ["U"] = { 13798 }, + }, + }, + [7124] = { + ["end"] = { + ["U"] = { 13776 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["U"] = { 13796 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 13776 }, + }, + }, + [7141] = { + ["end"] = { + ["U"] = { 13816 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["race"] = 589, + ["start"] = { + ["U"] = { 13816 }, + }, + }, + [7142] = { + ["end"] = { + ["U"] = { 13817 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["race"] = 434, + ["start"] = { + ["U"] = { 13817 }, + }, + }, + [7161] = { + ["end"] = { + ["U"] = { 13840 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17850 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 13840 }, + }, + }, + [7162] = { + ["end"] = { + ["U"] = { 13841 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17849 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 13841 }, + }, + }, + [7163] = { + ["end"] = { + ["U"] = { 13840 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17690 }, + }, + ["pre"] = { 7161 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 13840 }, + }, + }, + [7164] = { + ["end"] = { + ["U"] = { 13840 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17905 }, + }, + ["pre"] = { 7161 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 13840 }, + }, + }, + [7165] = { + ["end"] = { + ["U"] = { 13840 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17906 }, + }, + ["pre"] = { 7164 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 13840 }, + }, + }, + [7166] = { + ["end"] = { + ["U"] = { 13840 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17907 }, + }, + ["pre"] = { 7165 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 13840 }, + }, + }, + [7167] = { + ["end"] = { + ["U"] = { 13840 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17908 }, + }, + ["pre"] = { 7166 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 13840 }, + }, + }, + [7168] = { + ["end"] = { + ["U"] = { 13841 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17691 }, + }, + ["pre"] = { 7162 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 13841 }, + }, + }, + [7169] = { + ["end"] = { + ["U"] = { 13841 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17900 }, + }, + ["pre"] = { 7168 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 13841 }, + }, + }, + [7170] = { + ["end"] = { + ["U"] = { 13841 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17901 }, + }, + ["pre"] = { 7169 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 13841 }, + }, + }, + [7171] = { + ["end"] = { + ["U"] = { 13841 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17902 }, + }, + ["pre"] = { 7170 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 13841 }, + }, + }, + [7172] = { + ["end"] = { + ["U"] = { 13841 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17903 }, + }, + ["pre"] = { 7171 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 13841 }, + }, + }, + [7181] = { + ["close"] = { 7181, 8272 }, + ["end"] = { + ["U"] = { 13840 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["U"] = { 12159 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 13840 }, + }, + }, + [7201] = { + ["end"] = { + ["U"] = { 9078 }, + }, + ["lvl"] = 54, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11129 }, + }, + ["pre"] = { 3906 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 9078 }, + }, + }, + [7202] = { + ["close"] = { 7202, 8271 }, + ["end"] = { + ["U"] = { 13841 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["U"] = { 12159 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 13841 }, + }, + }, + [7221] = "_", + [7222] = "_", + [7223] = { + ["end"] = { + ["U"] = { 13257 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17422 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 13257 }, + }, + }, + [7224] = { + ["end"] = { + ["U"] = { 13176 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17422 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 13176 }, + }, + }, + [7241] = { + ["end"] = { + ["U"] = { 13840 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["race"] = 434, + ["start"] = { + ["U"] = { 13842 }, + }, + }, + [7261] = { + ["end"] = { + ["U"] = { 13841 }, + }, + ["event"] = 18, + ["lvl"] = 60, + ["min"] = 51, + ["race"] = 589, + ["start"] = { + ["U"] = { 13843 }, + }, + }, + [7281] = { + ["end"] = { + ["U"] = { 13154 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["U"] = { 13320 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 13154 }, + }, + }, + [7282] = { + ["end"] = { + ["U"] = { 13320 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["U"] = { 13154 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 13320 }, + }, + }, + [7301] = { + ["end"] = { + ["U"] = { 13319 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["U"] = { 14029, 14030, 14031 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 13319 }, + }, + }, + [7302] = { + ["end"] = { + ["U"] = { 13153 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["U"] = { 14026, 14027, 14028 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 13153 }, + }, + }, + [7321] = { + ["end"] = { + ["U"] = { 2393 }, + }, + ["lvl"] = 31, + ["min"] = 28, + ["obj"] = { + ["I"] = { 3712, 3713 }, + }, + ["race"] = 434, + ["skill"] = 185, + ["start"] = { + ["U"] = { 2393 }, + }, + }, + [7341] = { + ["end"] = { + ["U"] = { 14182 }, + }, + ["lvl"] = 60, + ["min"] = 52, + ["obj"] = { + ["I"] = { 15997 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14182 }, + }, + }, + [7342] = { + ["end"] = { + ["U"] = { 14183 }, + }, + ["lvl"] = 60, + ["min"] = 52, + ["obj"] = { + ["I"] = { 15997 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14183 }, + }, + }, + [7361] = { + ["end"] = { + ["U"] = { 14185 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 18142 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14185 }, + }, + }, + [7362] = { + ["end"] = { + ["U"] = { 14186 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 18143 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14186 }, + }, + }, + [7363] = { + ["end"] = { + ["U"] = { 13154 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 18144 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 13154 }, + }, + }, + [7364] = { + ["end"] = { + ["U"] = { 14188 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 18145 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14188 }, + }, + }, + [7365] = { + ["end"] = { + ["U"] = { 14187 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 18146 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14187 }, + }, + }, + [7366] = { + ["end"] = { + ["U"] = { 13320 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 18147 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 13320 }, + }, + }, + [7367] = { + ["end"] = { + ["U"] = { 13598 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["U"] = { 13597 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 13598 }, + }, + }, + [7368] = { + ["end"] = { + ["U"] = { 13597 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["U"] = { 13598 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 13597 }, + }, + }, + [7381] = { + ["end"] = { + ["U"] = { 13840 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 18148 }, + }, + ["pre"] = { 7181 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 13840 }, + }, + }, + [7382] = { + ["end"] = { + ["U"] = { 13841 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 18148 }, + }, + ["pre"] = { 7202 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 13841 }, + }, + }, + [7383] = { + ["end"] = { + ["U"] = { 3515 }, + }, + ["lvl"] = 11, + ["min"] = 1, + ["obj"] = { + ["I"] = { 18151 }, + ["IR"] = { 18152 }, + }, + ["pre"] = { 933 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3515 }, + }, + }, + [7385] = { + ["end"] = { + ["U"] = { 13236 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17306 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 13236 }, + }, + }, + [7386] = { + ["end"] = { + ["U"] = { 13442 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 17423 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 13442 }, + }, + }, + [7401] = { + ["end"] = { + ["U"] = { 13448 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 18206 }, + }, + ["race"] = 434, + ["start"] = { + ["O"] = { 179438 }, + }, + }, + [7402] = { + ["end"] = { + ["U"] = { 13447 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 18207 }, + }, + ["race"] = 589, + ["start"] = { + ["O"] = { 179437 }, + }, + }, + [7421] = { + ["end"] = { + ["U"] = { 14185 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 18142 }, + }, + ["pre"] = { 7361 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14185 }, + }, + }, + [7422] = { + ["end"] = { + ["U"] = { 14186 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 18143 }, + }, + ["pre"] = { 7362 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14186 }, + }, + }, + [7423] = { + ["end"] = { + ["U"] = { 13154 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 18144 }, + }, + ["pre"] = { 7363 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 13154 }, + }, + }, + [7424] = { + ["end"] = { + ["U"] = { 14188 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 18145 }, + }, + ["pre"] = { 7364 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14188 }, + }, + }, + [7425] = { + ["end"] = { + ["U"] = { 14187 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 18146 }, + }, + ["pre"] = { 7365 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14187 }, + }, + }, + [7426] = { + ["end"] = { + ["U"] = { 13320 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 18147 }, + }, + ["pre"] = { 7366 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 13320 }, + }, + }, + [7427] = { + ["end"] = { + ["U"] = { 13448 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 18206 }, + }, + ["pre"] = { 7401 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 13448 }, + }, + }, + [7428] = { + ["end"] = { + ["U"] = { 13447 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 18207 }, + }, + ["pre"] = { 7402 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 13447 }, + }, + }, + [7462] = { + ["end"] = { + ["O"] = { 179517 }, + }, + ["lvl"] = 60, + ["min"] = 57, + ["pre"] = { 7461 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14358 }, + }, + }, + [7478] = { + ["end"] = { + ["U"] = { 14368 }, + }, + ["lvl"] = 60, + ["min"] = 57, + ["obj"] = { + ["I"] = { 12938, 14344, 18332, 18335 }, + }, + ["pre"] = { 7481 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14368 }, + }, + }, + [7479] = { + ["end"] = { + ["U"] = { 14368 }, + }, + ["lvl"] = 60, + ["min"] = 57, + ["obj"] = { + ["I"] = { 12753, 14344, 18333, 18335 }, + }, + ["pre"] = { 7481 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14368 }, + }, + }, + [7480] = { + ["end"] = { + ["U"] = { 14368 }, + }, + ["lvl"] = 60, + ["min"] = 57, + ["obj"] = { + ["I"] = { 12735, 14344, 18334, 18335 }, + }, + ["pre"] = { 7481 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14368 }, + }, + }, + [7481] = { + ["end"] = { + ["U"] = { 14373 }, + }, + ["lvl"] = 60, + ["min"] = 54, + ["race"] = 434, + ["start"] = { + ["U"] = { 14373 }, + }, + }, + [7482] = { + ["end"] = { + ["U"] = { 14374 }, + }, + ["lvl"] = 60, + ["min"] = 54, + ["race"] = 589, + ["start"] = { + ["U"] = { 14374 }, + }, + }, + [7483] = { + ["end"] = { + ["U"] = { 14368 }, + }, + ["lvl"] = 60, + ["min"] = 57, + ["obj"] = { + ["I"] = { 12938, 14344, 18332, 18335 }, + }, + ["pre"] = { 7482 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14368 }, + }, + }, + [7484] = { + ["end"] = { + ["U"] = { 14368 }, + }, + ["lvl"] = 60, + ["min"] = 57, + ["obj"] = { + ["I"] = { 12753, 14344, 18333, 18335 }, + }, + ["pre"] = { 7482 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14368 }, + }, + }, + [7485] = { + ["end"] = { + ["U"] = { 14368 }, + }, + ["lvl"] = 60, + ["min"] = 57, + ["obj"] = { + ["I"] = { 12735, 14344, 18334, 18335 }, + }, + ["pre"] = { 7482 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14368 }, + }, + }, + [7487] = { + ["end"] = { + ["U"] = { 14387 }, + }, + ["event"] = 172, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 18412 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14387 }, + }, + }, + [7488] = { + ["end"] = { + ["U"] = { 7877 }, + }, + ["lvl"] = 57, + ["min"] = 54, + ["obj"] = { + ["I"] = { 18426 }, + }, + ["pre"] = { 7494 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 7877 }, + }, + }, + [7489] = { + ["end"] = { + ["U"] = { 7776 }, + }, + ["lvl"] = 57, + ["min"] = 54, + ["obj"] = { + ["I"] = { 18426 }, + }, + ["pre"] = { 7492 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 7776 }, + }, + }, + [7490] = { + ["end"] = { + ["U"] = { 4949 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["race"] = 434, + ["start"] = { + ["I"] = { 18422 }, + }, + }, + [7491] = { + ["close"] = { 7491, 7496 }, + ["end"] = { + ["U"] = { 14392 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 7490 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4949 }, + }, + }, + [7492] = { + ["end"] = { + ["U"] = { 7776 }, + }, + ["lvl"] = 57, + ["min"] = 54, + ["race"] = 434, + ["start"] = { + ["U"] = { 10879, 10880, 10881 }, + }, + }, + [7493] = { + ["end"] = { + ["U"] = { 14392 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 7491 }, + ["race"] = 434, + ["skill"] = 165, + ["start"] = { + ["U"] = { 14392 }, + }, + }, + [7494] = { + ["end"] = { + ["U"] = { 7877 }, + }, + ["lvl"] = 57, + ["min"] = 54, + ["race"] = 589, + ["start"] = { + ["U"] = { 2198, 10877, 10878 }, + }, + }, + [7495] = { + ["end"] = { + ["U"] = { 1748 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["race"] = 589, + ["start"] = { + ["I"] = { 18423 }, + }, + }, + [7496] = { + ["close"] = { 7491, 7496 }, + ["end"] = { + ["U"] = { 14394 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 7495 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1748 }, + }, + }, + [7497] = { + ["end"] = { + ["U"] = { 14394 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 7496 }, + ["race"] = 589, + ["skill"] = 165, + ["start"] = { + ["U"] = { 14394 }, + }, + }, + [7509] = { + ["end"] = { + ["U"] = { 14368 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 18492 }, + }, + ["pre"] = { 7508 }, + ["start"] = { + ["U"] = { 14368 }, + }, + }, + [7541] = { + ["end"] = { + ["U"] = { 4047 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["pre"] = { 1262 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4047 }, + }, + }, + [7562] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 14436 }, + }, + ["lvl"] = 58, + ["min"] = 60, + ["start"] = { + ["U"] = { 5520, 5753, 5815, 6382 }, + }, + }, + [7631] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 14504 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 14502 }, + }, + ["pre"] = { 7629 }, + ["start"] = { + ["U"] = { 14436 }, + }, + }, + [7636] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 14524 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 18952, 18953, 18954, 18955 }, + }, + ["pre"] = { 7633 }, + ["start"] = { + ["U"] = { 14524 }, + }, + }, + [7637] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 11406 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["race"] = 589, + ["start"] = { + ["U"] = { 928 }, + }, + }, + [7638] = { + ["class"] = 2, + ["close"] = { 7638 }, + ["end"] = { + ["U"] = { 928 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["race"] = 589, + ["start"] = { + ["U"] = { 6171 }, + }, + }, + [7639] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 928 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 7637 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 11406 }, + }, + }, + [7640] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 928 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["IR"] = { 18752 }, + ["U"] = { 14564 }, + }, + ["pre"] = { 7639 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 928 }, + }, + }, + [7641] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 1416 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 7640 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 928 }, + }, + }, + [7642] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 1416 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 8836, 12360, 13180, 14047 }, + }, + ["pre"] = { 7641 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1416 }, + }, + }, + [7643] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 14566 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 18775 }, + }, + ["pre"] = { 7642 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 928 }, + }, + }, + [7644] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 928 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 7643 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14566 }, + }, + }, + [7645] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 2357 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 13724 }, + }, + ["pre"] = { 7643 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2357 }, + }, + }, + [7646] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 928 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12800, 18335 }, + }, + ["pre"] = { 7644 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 928 }, + }, + }, + [7647] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 14568 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 18749, 18792, 18799 }, + ["IR"] = { 18749 }, + }, + ["pre"] = { 7646 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 928 }, + }, + }, + [7648] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 928 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 7642 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1416 }, + }, + }, + [7660] = "_", + [7661] = "_", + [7662] = "_", + [7663] = "_", + [7664] = "_", + [7665] = "_", + [7666] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 928 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 7647 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 928 }, + }, + }, + [7667] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 13417 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 12800, 18335 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 13417 }, + }, + }, + [7668] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 13417 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 18880 }, + ["IR"] = { 18746 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 13417 }, + }, + }, + [7669] = "_", + [7670] = "_", + [7671] = "_", + [7672] = "_", + [7673] = "_", + [7674] = "_", + [7675] = "_", + [7676] = "_", + [7677] = "_", + [7678] = "_", + [7681] = "_", + [7682] = "_", + [7703] = { + ["end"] = { + ["U"] = { 14325 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 18336 }, + }, + ["start"] = { + ["U"] = { 14325 }, + }, + }, + [7704] = "_", + [7730] = { + ["end"] = { + ["U"] = { 7875 }, + }, + ["lvl"] = 45, + ["min"] = 39, + ["obj"] = { + ["I"] = { 18961 }, + }, + ["pre"] = { 2903 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 7875 }, + }, + }, + [7731] = { + ["end"] = { + ["U"] = { 7875 }, + }, + ["lvl"] = 47, + ["min"] = 39, + ["obj"] = { + ["I"] = { 18962 }, + }, + ["pre"] = { 2903 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 7875 }, + }, + }, + [7732] = { + ["end"] = { + ["U"] = { 7010 }, + }, + ["lvl"] = 48, + ["min"] = 39, + ["pre"] = { 7730, 7731 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 7875 }, + }, + }, + [7733] = { + ["end"] = { + ["U"] = { 7852 }, + }, + ["lvl"] = 48, + ["min"] = 40, + ["obj"] = { + ["I"] = { 18947 }, + }, + ["pre"] = { 2821 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 7852 }, + }, + }, + [7734] = { + ["end"] = { + ["U"] = { 7854 }, + }, + ["lvl"] = 48, + ["min"] = 40, + ["obj"] = { + ["I"] = { 18947 }, + }, + ["pre"] = { 2822 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 7854 }, + }, + }, + [7735] = { + ["end"] = { + ["U"] = { 7852 }, + }, + ["lvl"] = 48, + ["min"] = 40, + ["race"] = 589, + ["start"] = { + ["I"] = { 18969 }, + }, + }, + [7738] = { + ["end"] = { + ["U"] = { 7854 }, + }, + ["lvl"] = 48, + ["min"] = 40, + ["race"] = 434, + ["start"] = { + ["I"] = { 18972 }, + }, + }, + [7781] = { + ["end"] = { + ["U"] = { 1748 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["race"] = 589, + ["start"] = { + ["I"] = { 19003 }, + }, + }, + [7782] = { + ["close"] = { 7782, 7784 }, + ["end"] = { + ["U"] = { 14721 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 7781 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1748 }, + }, + }, + [7783] = { + ["end"] = { + ["U"] = { 4949 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["race"] = 434, + ["start"] = { + ["I"] = { 19002 }, + }, + }, + [7784] = { + ["close"] = { 7782, 7784 }, + ["end"] = { + ["U"] = { 14720 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 7783 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4949 }, + }, + }, + [7788] = { + ["close"] = { 7788, 7871, 7872, 7873, 8290, 8291 }, + ["end"] = { + ["U"] = { 14733 }, + }, + ["lvl"] = 29, + ["min"] = 20, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14733 }, + }, + }, + [7789] = { + ["close"] = { 7789, 7874, 7875, 7876, 8294, 8295 }, + ["end"] = { + ["U"] = { 14781 }, + }, + ["lvl"] = 29, + ["min"] = 20, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14781 }, + }, + }, + [7790] = "_", + [7791] = { + ["end"] = { + ["U"] = { 14722 }, + }, + ["event"] = 159, + ["lvl"] = 60, + ["min"] = 12, + ["obj"] = { + ["I"] = { 2592 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14722 }, + }, + }, + [7792] = { + ["end"] = { + ["U"] = { 14725 }, + }, + ["event"] = 159, + ["lvl"] = 60, + ["min"] = 12, + ["obj"] = { + ["I"] = { 2592 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14725 }, + }, + }, + [7793] = { + ["end"] = { + ["U"] = { 14722 }, + }, + ["event"] = 159, + ["lvl"] = 60, + ["min"] = 26, + ["obj"] = { + ["I"] = { 4306 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14722 }, + }, + }, + [7794] = { + ["end"] = { + ["U"] = { 14722 }, + }, + ["event"] = 159, + ["lvl"] = 60, + ["min"] = 40, + ["obj"] = { + ["I"] = { 4338 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14722 }, + }, + }, + [7795] = { + ["end"] = { + ["U"] = { 14722 }, + }, + ["event"] = 159, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 14047 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14722 }, + }, + }, + [7796] = { + ["end"] = { + ["U"] = { 14722 }, + }, + ["event"] = 159, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 14047 }, + }, + ["pre"] = { 7795 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14722 }, + }, + }, + [7797] = "_", + [7798] = { + ["end"] = { + ["U"] = { 14725 }, + }, + ["event"] = 159, + ["lvl"] = 60, + ["min"] = 26, + ["obj"] = { + ["I"] = { 4306 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14725 }, + }, + }, + [7799] = { + ["end"] = { + ["U"] = { 14725 }, + }, + ["event"] = 159, + ["lvl"] = 60, + ["min"] = 40, + ["obj"] = { + ["I"] = { 4338 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14725 }, + }, + }, + [7800] = { + ["end"] = { + ["U"] = { 14725 }, + }, + ["event"] = 159, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 14047 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14725 }, + }, + }, + [7801] = { + ["end"] = { + ["U"] = { 14725 }, + }, + ["event"] = 159, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 14047 }, + }, + ["pre"] = { 7800 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14725 }, + }, + }, + [7802] = { + ["end"] = { + ["U"] = { 14723 }, + }, + ["event"] = 159, + ["lvl"] = 60, + ["min"] = 12, + ["obj"] = { + ["I"] = { 2592 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14723 }, + }, + }, + [7803] = { + ["end"] = { + ["U"] = { 14723 }, + }, + ["event"] = 159, + ["lvl"] = 60, + ["min"] = 26, + ["obj"] = { + ["I"] = { 4306 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14723 }, + }, + }, + [7804] = { + ["end"] = { + ["U"] = { 14723 }, + }, + ["event"] = 159, + ["lvl"] = 60, + ["min"] = 40, + ["obj"] = { + ["I"] = { 4338 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14723 }, + }, + }, + [7805] = { + ["end"] = { + ["U"] = { 14723 }, + }, + ["event"] = 159, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 14047 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14723 }, + }, + }, + [7806] = { + ["end"] = { + ["U"] = { 14723 }, + }, + ["event"] = 159, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 14047 }, + }, + ["pre"] = { 7805 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14723 }, + }, + }, + [7807] = { + ["end"] = { + ["U"] = { 14724 }, + }, + ["event"] = 159, + ["lvl"] = 60, + ["min"] = 12, + ["obj"] = { + ["I"] = { 2592 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14724 }, + }, + }, + [7808] = { + ["end"] = { + ["U"] = { 14724 }, + }, + ["event"] = 159, + ["lvl"] = 60, + ["min"] = 26, + ["obj"] = { + ["I"] = { 4306 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14724 }, + }, + }, + [7809] = { + ["end"] = { + ["U"] = { 14724 }, + }, + ["event"] = 159, + ["lvl"] = 60, + ["min"] = 40, + ["obj"] = { + ["I"] = { 4338 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14724 }, + }, + }, + [7811] = { + ["end"] = { + ["U"] = { 14724 }, + }, + ["event"] = 159, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 14047 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14724 }, + }, + }, + [7812] = { + ["end"] = { + ["U"] = { 14724 }, + }, + ["event"] = 159, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 14047 }, + }, + ["pre"] = { 7811 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14724 }, + }, + }, + [7813] = { + ["end"] = { + ["U"] = { 14729 }, + }, + ["event"] = 159, + ["lvl"] = 60, + ["min"] = 12, + ["obj"] = { + ["I"] = { 2592 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14729 }, + }, + }, + [7814] = { + ["end"] = { + ["U"] = { 14729 }, + }, + ["event"] = 159, + ["lvl"] = 60, + ["min"] = 26, + ["obj"] = { + ["I"] = { 4306 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14729 }, + }, + }, + [7815] = { + ["end"] = { + ["U"] = { 14740 }, + }, + ["lvl"] = 50, + ["min"] = 44, + ["obj"] = { + ["U"] = { 2505 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14740 }, + }, + }, + [7816] = { + ["end"] = { + ["U"] = { 14740 }, + }, + ["lvl"] = 48, + ["min"] = 44, + ["obj"] = { + ["I"] = { 19023 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14740 }, + }, + }, + [7817] = { + ["end"] = { + ["U"] = { 14729 }, + }, + ["event"] = 159, + ["lvl"] = 60, + ["min"] = 40, + ["obj"] = { + ["I"] = { 4338 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14729 }, + }, + }, + [7818] = { + ["end"] = { + ["U"] = { 14729 }, + }, + ["event"] = 159, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 14047 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14729 }, + }, + }, + [7819] = { + ["end"] = { + ["U"] = { 14729 }, + }, + ["event"] = 159, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 14047 }, + }, + ["pre"] = { 7818 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14729 }, + }, + }, + [7820] = { + ["end"] = { + ["U"] = { 14728 }, + }, + ["event"] = 159, + ["lvl"] = 60, + ["min"] = 12, + ["obj"] = { + ["I"] = { 2592 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14728 }, + }, + }, + [7821] = { + ["end"] = { + ["U"] = { 14728 }, + }, + ["event"] = 159, + ["lvl"] = 60, + ["min"] = 26, + ["obj"] = { + ["I"] = { 4306 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14728 }, + }, + }, + [7822] = { + ["end"] = { + ["U"] = { 14728 }, + }, + ["event"] = 159, + ["lvl"] = 60, + ["min"] = 40, + ["obj"] = { + ["I"] = { 4338 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14728 }, + }, + }, + [7823] = { + ["end"] = { + ["U"] = { 14728 }, + }, + ["event"] = 159, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 14047 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14728 }, + }, + }, + [7824] = { + ["end"] = { + ["U"] = { 14726 }, + }, + ["event"] = 159, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 14047 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14726 }, + }, + }, + [7825] = { + ["end"] = { + ["U"] = { 14728 }, + }, + ["event"] = 159, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 14047 }, + }, + ["pre"] = { 7823 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14728 }, + }, + }, + [7826] = { + ["end"] = { + ["U"] = { 14726 }, + }, + ["event"] = 159, + ["lvl"] = 60, + ["min"] = 12, + ["obj"] = { + ["I"] = { 2592 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14726 }, + }, + }, + [7827] = { + ["end"] = { + ["U"] = { 14726 }, + }, + ["event"] = 159, + ["lvl"] = 60, + ["min"] = 26, + ["obj"] = { + ["I"] = { 4306 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14726 }, + }, + }, + [7828] = { + ["end"] = { + ["U"] = { 14741 }, + }, + ["lvl"] = 48, + ["min"] = 44, + ["obj"] = { + ["U"] = { 2925, 2926 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14741 }, + }, + }, + [7829] = { + ["end"] = { + ["U"] = { 14741 }, + }, + ["lvl"] = 48, + ["min"] = 44, + ["obj"] = { + ["U"] = { 2929 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14741 }, + }, + }, + [7830] = { + ["end"] = { + ["U"] = { 14741 }, + }, + ["lvl"] = 48, + ["min"] = 44, + ["obj"] = { + ["I"] = { 19025 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14741 }, + }, + }, + [7831] = { + ["end"] = { + ["U"] = { 14726 }, + }, + ["event"] = 159, + ["lvl"] = 60, + ["min"] = 40, + ["obj"] = { + ["I"] = { 4338 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14726 }, + }, + }, + [7832] = { + ["end"] = { + ["U"] = { 14726 }, + }, + ["event"] = 159, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 14047 }, + }, + ["pre"] = { 7824 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14726 }, + }, + }, + [7833] = { + ["end"] = { + ["U"] = { 14727 }, + }, + ["event"] = 159, + ["lvl"] = 60, + ["min"] = 12, + ["obj"] = { + ["I"] = { 2592 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14727 }, + }, + }, + [7834] = { + ["end"] = { + ["U"] = { 14727 }, + }, + ["event"] = 159, + ["lvl"] = 60, + ["min"] = 26, + ["obj"] = { + ["I"] = { 4306 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14727 }, + }, + }, + [7835] = { + ["end"] = { + ["U"] = { 14727 }, + }, + ["event"] = 159, + ["lvl"] = 60, + ["min"] = 40, + ["obj"] = { + ["I"] = { 4338 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14727 }, + }, + }, + [7836] = { + ["end"] = { + ["U"] = { 14727 }, + }, + ["event"] = 159, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 14047 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14727 }, + }, + }, + [7837] = { + ["end"] = { + ["U"] = { 14727 }, + }, + ["event"] = 159, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 14047 }, + }, + ["pre"] = { 7836 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14727 }, + }, + }, + [7839] = { + ["end"] = { + ["U"] = { 14737 }, + }, + ["lvl"] = 48, + ["min"] = 44, + ["obj"] = { + ["I"] = { 19033 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14737 }, + }, + }, + [7840] = { + ["end"] = { + ["U"] = { 14731 }, + }, + ["lvl"] = 49, + ["min"] = 44, + ["obj"] = { + ["I"] = { 19034 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14731 }, + }, + }, + [7841] = { + ["end"] = { + ["U"] = { 14738 }, + }, + ["lvl"] = 48, + ["min"] = 44, + ["obj"] = { + ["U"] = { 2691, 2692, 2693, 2694 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14738 }, + }, + }, + [7842] = { + ["end"] = { + ["U"] = { 14738 }, + }, + ["lvl"] = 48, + ["min"] = 44, + ["obj"] = { + ["I"] = { 4589 }, + }, + ["pre"] = { 7841 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14738 }, + }, + }, + [7843] = { + ["end"] = { + ["U"] = { 14738 }, + }, + ["lvl"] = 50, + ["min"] = 44, + ["obj"] = { + ["IR"] = { 19036 }, + }, + ["pre"] = { 7842 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14738 }, + }, + }, + [7844] = { + ["end"] = { + ["U"] = { 14739 }, + }, + ["lvl"] = 48, + ["min"] = 44, + ["obj"] = { + ["U"] = { 4466, 4467 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14739 }, + }, + }, + [7845] = { + ["end"] = { + ["U"] = { 14757 }, + }, + ["lvl"] = 51, + ["min"] = 46, + ["race"] = 434, + ["start"] = { + ["U"] = { 14736 }, + }, + }, + [7846] = { + ["end"] = { + ["U"] = { 14757 }, + }, + ["lvl"] = 51, + ["min"] = 46, + ["obj"] = { + ["I"] = { 19064 }, + }, + ["pre"] = { 7845 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14757 }, + }, + }, + [7847] = { + ["end"] = { + ["U"] = { 14736 }, + }, + ["lvl"] = 51, + ["min"] = 46, + ["pre"] = { 7846 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14757 }, + }, + }, + [7848] = { + ["end"] = { + ["U"] = { 14387 }, + }, + ["event"] = 172, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 18412 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14387 }, + }, + }, + [7849] = { + ["end"] = { + ["U"] = { 14741 }, + }, + ["lvl"] = 50, + ["min"] = 46, + ["obj"] = { + ["I"] = { 19069, 19070 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14741 }, + }, + }, + [7850] = { + ["end"] = { + ["U"] = { 14736 }, + }, + ["lvl"] = 50, + ["min"] = 46, + ["obj"] = { + ["I"] = { 19071 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14736 }, + }, + }, + [7861] = { + ["end"] = { + ["U"] = { 14736 }, + }, + ["lvl"] = 51, + ["min"] = 46, + ["obj"] = { + ["U"] = { 2648, 7995 }, + }, + ["race"] = 434, + ["start"] = { + ["O"] = { 179913 }, + }, + }, + [7862] = { + ["end"] = { + ["U"] = { 14736 }, + }, + ["lvl"] = 51, + ["min"] = 46, + ["obj"] = { + ["U"] = { 2643, 2645, 2646, 2647 }, + }, + ["race"] = 434, + ["start"] = { + ["O"] = { 179913 }, + }, + }, + [7863] = { + ["end"] = { + ["U"] = { 14753 }, + }, + ["lvl"] = 34, + ["min"] = 25, + ["race"] = 589, + ["start"] = { + ["U"] = { 14753 }, + }, + }, + [7864] = { + ["end"] = { + ["U"] = { 14753 }, + }, + ["lvl"] = 44, + ["min"] = 35, + ["race"] = 589, + ["start"] = { + ["U"] = { 14753 }, + }, + }, + [7865] = { + ["end"] = { + ["U"] = { 14753 }, + }, + ["lvl"] = 60, + ["min"] = 45, + ["race"] = 589, + ["start"] = { + ["U"] = { 14753 }, + }, + }, + [7866] = { + ["end"] = { + ["U"] = { 14754 }, + }, + ["lvl"] = 34, + ["min"] = 25, + ["race"] = 434, + ["start"] = { + ["U"] = { 14754 }, + }, + }, + [7867] = { + ["end"] = { + ["U"] = { 14754 }, + }, + ["lvl"] = 44, + ["min"] = 35, + ["race"] = 434, + ["start"] = { + ["U"] = { 14754 }, + }, + }, + [7868] = { + ["end"] = { + ["U"] = { 14754 }, + }, + ["lvl"] = 60, + ["min"] = 45, + ["race"] = 434, + ["start"] = { + ["U"] = { 14754 }, + }, + }, + [7871] = { + ["close"] = { 7788, 7871, 7872, 7873, 8290, 8291 }, + ["end"] = { + ["U"] = { 14733 }, + }, + ["lvl"] = 39, + ["min"] = 30, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14733 }, + }, + }, + [7872] = { + ["close"] = { 7788, 7871, 7872, 7873, 8290, 8291 }, + ["end"] = { + ["U"] = { 14733 }, + }, + ["lvl"] = 49, + ["min"] = 40, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14733 }, + }, + }, + [7873] = { + ["close"] = { 7788, 7871, 7872, 7873, 8290, 8291 }, + ["end"] = { + ["U"] = { 14733 }, + }, + ["lvl"] = 59, + ["min"] = 50, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14733 }, + }, + }, + [7874] = { + ["close"] = { 7789, 7874, 7875, 7876, 8294, 8295 }, + ["end"] = { + ["U"] = { 14781 }, + }, + ["lvl"] = 39, + ["min"] = 30, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14781 }, + }, + }, + [7875] = { + ["close"] = { 7789, 7874, 7875, 7876, 8294, 8295 }, + ["end"] = { + ["U"] = { 14781 }, + }, + ["lvl"] = 49, + ["min"] = 40, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14781 }, + }, + }, + [7876] = { + ["close"] = { 7789, 7874, 7875, 7876, 8294, 8295 }, + ["end"] = { + ["U"] = { 14781 }, + }, + ["lvl"] = 59, + ["min"] = 50, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14781 }, + }, + }, + [7877] = { + ["end"] = { + ["O"] = { 179517 }, + }, + ["lvl"] = 60, + ["min"] = 57, + ["pre"] = { 7461 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14358 }, + }, + }, + [7886] = { + ["close"] = { 7886, 7887, 7888, 7921 }, + ["end"] = { + ["U"] = { 14733 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["I"] = { 19213 }, + }, + ["pre"] = { 7873 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14733 }, + }, + }, + [7887] = { + ["close"] = { 7886, 7887, 7888, 7921 }, + ["end"] = { + ["U"] = { 14733 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["I"] = { 19213 }, + }, + ["pre"] = { 7871 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14733 }, + }, + }, + [7888] = { + ["close"] = { 7886, 7887, 7888, 7921 }, + ["end"] = { + ["U"] = { 14733 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 19213 }, + }, + ["pre"] = { 7872 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14733 }, + }, + }, + [7904] = "_", + [7905] = { + ["end"] = { + ["U"] = { 14828 }, + }, + ["event"] = 4, + ["lvl"] = 60, + ["min"] = 6, + ["race"] = 589, + ["start"] = { + ["U"] = { 14842 }, + }, + }, + [7908] = "_", + [7921] = { + ["close"] = { 7886, 7887, 7888, 7921 }, + ["end"] = { + ["U"] = { 14733 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["obj"] = { + ["I"] = { 19213 }, + }, + ["pre"] = { 7788 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14733 }, + }, + }, + [7922] = { + ["close"] = { 7922, 7923, 7924, 7925 }, + ["end"] = { + ["U"] = { 14781 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["I"] = { 19322 }, + }, + ["pre"] = { 7876 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14781 }, + }, + }, + [7923] = { + ["close"] = { 7922, 7923, 7924, 7925 }, + ["end"] = { + ["U"] = { 14781 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 19322 }, + }, + ["pre"] = { 7875 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14781 }, + }, + }, + [7924] = { + ["close"] = { 7922, 7923, 7924, 7925 }, + ["end"] = { + ["U"] = { 14781 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["I"] = { 19322 }, + }, + ["pre"] = { 7874 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14781 }, + }, + }, + [7925] = { + ["close"] = { 7922, 7923, 7924, 7925 }, + ["end"] = { + ["U"] = { 14781 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["obj"] = { + ["I"] = { 19322 }, + }, + ["pre"] = { 7789 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14781 }, + }, + }, + [7926] = { + ["end"] = { + ["U"] = { 14828 }, + }, + ["event"] = 5, + ["lvl"] = 60, + ["min"] = 6, + ["race"] = 434, + ["start"] = { + ["U"] = { 14843 }, + }, + }, + [7961] = "_", + [7962] = "_", + [8021] = "_", + [8022] = "_", + [8023] = "_", + [8024] = "_", + [8025] = "_", + [8026] = "_", + [8041] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 14902 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["start"] = { + ["U"] = { 14902 }, + }, + }, + [8042] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 14902 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 19574 }, + }, + ["pre"] = { 8041 }, + ["start"] = { + ["U"] = { 14902 }, + }, + }, + [8043] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 14902 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 19575 }, + }, + ["pre"] = { 8042 }, + ["start"] = { + ["U"] = { 14902 }, + }, + }, + [8044] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 14902 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 19576 }, + }, + ["pre"] = { 8043 }, + ["start"] = { + ["U"] = { 14902 }, + }, + }, + [8045] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 14902 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["start"] = { + ["U"] = { 14902 }, + }, + }, + [8046] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 14902 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 19579 }, + }, + ["pre"] = { 8045 }, + ["start"] = { + ["U"] = { 14902 }, + }, + }, + [8047] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 14902 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 19585 }, + }, + ["pre"] = { 8046 }, + ["start"] = { + ["U"] = { 14902 }, + }, + }, + [8049] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 14903 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["start"] = { + ["U"] = { 14903 }, + }, + }, + [8050] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 14903 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 19591 }, + }, + ["pre"] = { 8049 }, + ["start"] = { + ["U"] = { 14903 }, + }, + }, + [8051] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 14903 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 19592 }, + }, + ["pre"] = { 8050 }, + ["start"] = { + ["U"] = { 14903 }, + }, + }, + [8052] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 14903 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 19593 }, + }, + ["pre"] = { 8051 }, + ["start"] = { + ["U"] = { 14903 }, + }, + }, + [8053] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 14902 }, + }, + ["lvl"] = 61, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19716 }, + }, + ["start"] = { + ["U"] = { 14902 }, + }, + }, + [8054] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 14902 }, + }, + ["lvl"] = 61, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19721 }, + }, + ["start"] = { + ["U"] = { 14902 }, + }, + }, + [8055] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 14902 }, + }, + ["lvl"] = 61, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19722 }, + }, + ["start"] = { + ["U"] = { 14902 }, + }, + }, + [8066] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 14905 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19721 }, + }, + ["start"] = { + ["U"] = { 14905 }, + }, + }, + [8067] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 14905 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19724 }, + }, + ["start"] = { + ["U"] = { 14905 }, + }, + }, + [8068] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 14903 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19721 }, + }, + ["start"] = { + ["U"] = { 14903 }, + }, + }, + [8069] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 14903 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19723 }, + }, + ["start"] = { + ["U"] = { 14903 }, + }, + }, + [8070] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 14903 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19720 }, + }, + ["start"] = { + ["U"] = { 14903 }, + }, + }, + [8071] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 14903 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19724 }, + }, + ["start"] = { + ["U"] = { 14903 }, + }, + }, + [8072] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 14905 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19719 }, + }, + ["start"] = { + ["U"] = { 14905 }, + }, + }, + [8073] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 14905 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19724 }, + }, + ["start"] = { + ["U"] = { 14905 }, + }, + }, + [8074] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 14904 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19719 }, + }, + ["start"] = { + ["U"] = { 14904 }, + }, + }, + [8075] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 14904 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19722 }, + }, + ["start"] = { + ["U"] = { 14904 }, + }, + }, + [8076] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 14903 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19720 }, + }, + ["start"] = { + ["U"] = { 14903 }, + }, + }, + [8077] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 14903 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19723 }, + }, + ["start"] = { + ["U"] = { 14903 }, + }, + }, + [8078] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 14902 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19719 }, + }, + ["start"] = { + ["U"] = { 14902 }, + }, + }, + [8079] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 14902 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19723 }, + }, + ["start"] = { + ["U"] = { 14902 }, + }, + }, + [8080] = { + ["close"] = { 8080, 8154, 8155, 8156, 8297 }, + ["end"] = { + ["U"] = { 14984 }, + }, + ["lvl"] = 59, + ["min"] = 50, + ["obj"] = { + ["I"] = { 20559 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14984 }, + }, + }, + [8081] = { + ["close"] = { 8081, 8157, 8158, 8159 }, + ["end"] = { + ["U"] = { 14984 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["I"] = { 19725 }, + }, + ["pre"] = { 8080 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14984 }, + }, + }, + [8101] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 14903 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["start"] = { + ["U"] = { 14903 }, + }, + }, + [8102] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 14903 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 19598 }, + }, + ["pre"] = { 8101 }, + ["start"] = { + ["U"] = { 14903 }, + }, + }, + [8103] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 14903 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 19599 }, + }, + ["pre"] = { 8102 }, + ["start"] = { + ["U"] = { 14903 }, + }, + }, + [8104] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 14903 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 19600 }, + }, + ["pre"] = { 8103 }, + ["start"] = { + ["U"] = { 14903 }, + }, + }, + [8105] = { + ["close"] = { 8105, 8166, 8167, 8168 }, + ["end"] = { + ["U"] = { 14983 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["U"] = { 15002, 15003, 15004, 15005 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14983 }, + }, + }, + [8106] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 14903 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["start"] = { + ["U"] = { 14903 }, + }, + }, + [8107] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 14903 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 19602 }, + }, + ["pre"] = { 8106 }, + ["start"] = { + ["U"] = { 14903 }, + }, + }, + [8108] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 14903 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 19603 }, + }, + ["pre"] = { 8107 }, + ["start"] = { + ["U"] = { 14903 }, + }, + }, + [8109] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 14903 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 19604 }, + }, + ["pre"] = { 8108 }, + ["start"] = { + ["U"] = { 14903 }, + }, + }, + [8110] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 14904 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["start"] = { + ["U"] = { 14904 }, + }, + }, + [8111] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 14904 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 19610 }, + }, + ["pre"] = { 8110 }, + ["start"] = { + ["U"] = { 14904 }, + }, + }, + [8112] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 14904 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 19611 }, + }, + ["pre"] = { 8111 }, + ["start"] = { + ["U"] = { 14904 }, + }, + }, + [8113] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 14904 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 19612 }, + }, + ["pre"] = { 8112 }, + ["start"] = { + ["U"] = { 14904 }, + }, + }, + [8114] = { + ["end"] = { + ["U"] = { 14983 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["race"] = 589, + ["start"] = { + ["U"] = { 14983 }, + }, + }, + [8115] = { + ["end"] = { + ["U"] = { 14983 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["race"] = 589, + ["start"] = { + ["U"] = { 14983 }, + }, + }, + [8116] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 14904 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["start"] = { + ["U"] = { 14904 }, + }, + }, + [8117] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 14904 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 19606 }, + }, + ["pre"] = { 8116 }, + ["start"] = { + ["U"] = { 14904 }, + }, + }, + [8118] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 14904 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 19607 }, + }, + ["pre"] = { 8117 }, + ["start"] = { + ["U"] = { 14904 }, + }, + }, + [8119] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 14904 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 19608 }, + }, + ["pre"] = { 8118 }, + ["start"] = { + ["U"] = { 14904 }, + }, + }, + [8120] = { + ["close"] = { 8120, 8169, 8170, 8171 }, + ["end"] = { + ["U"] = { 15021 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["U"] = { 15001, 15002, 15004, 15005 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15021 }, + }, + }, + [8121] = { + ["end"] = { + ["U"] = { 15021 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["race"] = 434, + ["start"] = { + ["U"] = { 15021 }, + }, + }, + [8122] = { + ["end"] = { + ["U"] = { 15021 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["race"] = 434, + ["start"] = { + ["U"] = { 15021 }, + }, + }, + [8123] = { + ["close"] = { 8123, 8160, 8161, 8162, 8299 }, + ["end"] = { + ["U"] = { 15022 }, + }, + ["lvl"] = 59, + ["min"] = 50, + ["obj"] = { + ["I"] = { 20559 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15022 }, + }, + }, + [8124] = { + ["close"] = { 8124, 8163, 8164, 8165 }, + ["end"] = { + ["U"] = { 15022 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["I"] = { 19725 }, + }, + ["pre"] = { 8123 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15022 }, + }, + }, + [8141] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 14905 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["start"] = { + ["U"] = { 14905 }, + }, + }, + [8142] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 14905 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 19614 }, + }, + ["pre"] = { 8141 }, + ["start"] = { + ["U"] = { 14905 }, + }, + }, + [8143] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 14905 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 19615 }, + }, + ["pre"] = { 8142 }, + ["start"] = { + ["U"] = { 14905 }, + }, + }, + [8144] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 14905 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 19616 }, + }, + ["pre"] = { 8143 }, + ["start"] = { + ["U"] = { 14905 }, + }, + }, + [8145] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 14905 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["start"] = { + ["U"] = { 14905 }, + }, + }, + [8146] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 14905 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 19618 }, + }, + ["pre"] = { 8145 }, + ["start"] = { + ["U"] = { 14905 }, + }, + }, + [8147] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 14905 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 19619 }, + }, + ["pre"] = { 8146 }, + ["start"] = { + ["U"] = { 14905 }, + }, + }, + [8148] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 14905 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 19620 }, + }, + ["pre"] = { 8147 }, + ["start"] = { + ["U"] = { 14905 }, + }, + }, + [8149] = { + ["end"] = { + ["U"] = { 15011 }, + }, + ["event"] = 11, + ["lvl"] = 60, + ["min"] = 30, + ["obj"] = { + ["IR"] = { 19850 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15011 }, + }, + }, + [8150] = { + ["end"] = { + ["U"] = { 15012 }, + }, + ["event"] = 11, + ["lvl"] = 60, + ["min"] = 30, + ["obj"] = { + ["IR"] = { 19851 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15012 }, + }, + }, + [8151] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 8405 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["start"] = { + ["U"] = { 3038, 3352, 3406, 4205, 5116, 5516 }, + }, + }, + [8154] = { + ["close"] = { 8080, 8154, 8155, 8156, 8297 }, + ["end"] = { + ["U"] = { 14984 }, + }, + ["lvl"] = 49, + ["min"] = 40, + ["obj"] = { + ["I"] = { 20559 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14984 }, + }, + }, + [8155] = { + ["close"] = { 8080, 8154, 8155, 8156, 8297 }, + ["end"] = { + ["U"] = { 14984 }, + }, + ["lvl"] = 29, + ["min"] = 20, + ["obj"] = { + ["I"] = { 20559 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14984 }, + }, + }, + [8156] = { + ["close"] = { 8080, 8154, 8155, 8156, 8297 }, + ["end"] = { + ["U"] = { 14984 }, + }, + ["lvl"] = 39, + ["min"] = 30, + ["obj"] = { + ["I"] = { 20559 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14984 }, + }, + }, + [8157] = { + ["close"] = { 8081, 8157, 8158, 8159 }, + ["end"] = { + ["U"] = { 14984 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 19725 }, + }, + ["pre"] = { 8154 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14984 }, + }, + }, + [8158] = { + ["close"] = { 8081, 8157, 8158, 8159 }, + ["end"] = { + ["U"] = { 14984 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["obj"] = { + ["I"] = { 19725 }, + }, + ["pre"] = { 8155 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14984 }, + }, + }, + [8159] = { + ["close"] = { 8081, 8157, 8158, 8159 }, + ["end"] = { + ["U"] = { 14984 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["I"] = { 19725 }, + }, + ["pre"] = { 8156 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14984 }, + }, + }, + [8160] = { + ["close"] = { 8123, 8160, 8161, 8162, 8299 }, + ["end"] = { + ["U"] = { 15022 }, + }, + ["lvl"] = 49, + ["min"] = 40, + ["obj"] = { + ["I"] = { 20559 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15022 }, + }, + }, + [8161] = { + ["close"] = { 8123, 8160, 8161, 8162, 8299 }, + ["end"] = { + ["U"] = { 15022 }, + }, + ["lvl"] = 39, + ["min"] = 30, + ["obj"] = { + ["I"] = { 20559 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15022 }, + }, + }, + [8162] = { + ["close"] = { 8123, 8160, 8161, 8162, 8299 }, + ["end"] = { + ["U"] = { 15022 }, + }, + ["lvl"] = 29, + ["min"] = 20, + ["obj"] = { + ["I"] = { 20559 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15022 }, + }, + }, + [8163] = { + ["close"] = { 8124, 8163, 8164, 8165 }, + ["end"] = { + ["U"] = { 15022 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 19725 }, + }, + ["pre"] = { 8160 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15022 }, + }, + }, + [8164] = { + ["close"] = { 8124, 8163, 8164, 8165 }, + ["end"] = { + ["U"] = { 15022 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["I"] = { 19725 }, + }, + ["pre"] = { 8161 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15022 }, + }, + }, + [8165] = { + ["close"] = { 8124, 8163, 8164, 8165 }, + ["end"] = { + ["U"] = { 15022 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["obj"] = { + ["I"] = { 19725 }, + }, + ["pre"] = { 8162 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15022 }, + }, + }, + [8166] = { + ["close"] = { 8105, 8166, 8167, 8168 }, + ["end"] = { + ["U"] = { 14983 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["U"] = { 15002, 15003, 15004, 15005 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14983 }, + }, + }, + [8167] = { + ["close"] = { 8105, 8166, 8167, 8168 }, + ["end"] = { + ["U"] = { 14983 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["U"] = { 15002, 15003, 15004, 15005 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14983 }, + }, + }, + [8168] = { + ["close"] = { 8105, 8166, 8167, 8168 }, + ["end"] = { + ["U"] = { 14983 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["obj"] = { + ["U"] = { 15002, 15003, 15004, 15005 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14983 }, + }, + }, + [8169] = { + ["close"] = { 8120, 8169, 8170, 8171 }, + ["end"] = { + ["U"] = { 15021 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["U"] = { 15001, 15002, 15004, 15005 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15021 }, + }, + }, + [8170] = { + ["close"] = { 8120, 8169, 8170, 8171 }, + ["end"] = { + ["U"] = { 15021 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["U"] = { 15001, 15002, 15004, 15005 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15021 }, + }, + }, + [8171] = { + ["close"] = { 8120, 8169, 8170, 8171 }, + ["end"] = { + ["U"] = { 15021 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["obj"] = { + ["U"] = { 15001, 15002, 15004, 15005 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15021 }, + }, + }, + [8184] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 15042 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19813, 22637 }, + }, + ["start"] = { + ["U"] = { 15042 }, + }, + }, + [8185] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 15042 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19815, 22637 }, + }, + ["start"] = { + ["U"] = { 15042 }, + }, + }, + [8186] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 15042 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19814, 22637 }, + }, + ["start"] = { + ["U"] = { 15042 }, + }, + }, + [8187] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 15042 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19816, 22637 }, + }, + ["start"] = { + ["U"] = { 15042 }, + }, + }, + [8188] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 15042 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19817, 22637 }, + }, + ["start"] = { + ["U"] = { 15042 }, + }, + }, + [8189] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 15042 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19818, 22637 }, + }, + ["start"] = { + ["U"] = { 15042 }, + }, + }, + [8190] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 15042 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19819, 22637 }, + }, + ["start"] = { + ["U"] = { 15042 }, + }, + }, + [8191] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 15042 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19820, 22637 }, + }, + ["start"] = { + ["U"] = { 15042 }, + }, + }, + [8192] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 15042 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 19821, 22637 }, + }, + ["start"] = { + ["U"] = { 15042 }, + }, + }, + [8228] = { + ["end"] = { + ["U"] = { 15119 }, + }, + ["event"] = 14, + ["lvl"] = 60, + ["min"] = 35, + ["race"] = 589, + ["skill"] = 356, + ["start"] = { + ["U"] = { 15119 }, + }, + }, + [8229] = { + ["end"] = { + ["U"] = { 15116 }, + }, + ["event"] = 14, + ["lvl"] = 60, + ["min"] = 35, + ["race"] = 434, + ["skill"] = 356, + ["start"] = { + ["U"] = { 15116 }, + }, + }, + [8233] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 6768 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["start"] = { + ["U"] = { 3328, 4215, 4583, 5166, 13283 }, + }, + }, + [8237] = "_", + [8250] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 8395 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["start"] = { + ["U"] = { 331, 3047, 4567, 7311, 7312 }, + }, + }, + [8254] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 8405 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["start"] = { + ["U"] = { 5489, 6018, 11406 }, + }, + }, + [8258] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 13417 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 18880 }, + ["IR"] = { 18746 }, + }, + ["pre"] = { 7667 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 13417 }, + }, + }, + [8259] = "_", + [8260] = { + ["end"] = { + ["U"] = { 15127 }, + }, + ["lvl"] = 34, + ["min"] = 25, + ["race"] = 589, + ["start"] = { + ["U"] = { 15127 }, + }, + }, + [8261] = { + ["end"] = { + ["U"] = { 15127 }, + }, + ["lvl"] = 44, + ["min"] = 35, + ["race"] = 589, + ["start"] = { + ["U"] = { 15127 }, + }, + }, + [8262] = { + ["end"] = { + ["U"] = { 15127 }, + }, + ["lvl"] = 60, + ["min"] = 45, + ["race"] = 589, + ["start"] = { + ["U"] = { 15127 }, + }, + }, + [8263] = { + ["end"] = { + ["U"] = { 15126 }, + }, + ["lvl"] = 34, + ["min"] = 25, + ["race"] = 434, + ["start"] = { + ["U"] = { 15126 }, + }, + }, + [8264] = { + ["end"] = { + ["U"] = { 15126 }, + }, + ["lvl"] = 44, + ["min"] = 35, + ["race"] = 434, + ["start"] = { + ["U"] = { 15126 }, + }, + }, + [8265] = { + ["end"] = { + ["U"] = { 15126 }, + }, + ["lvl"] = 60, + ["min"] = 45, + ["race"] = 434, + ["start"] = { + ["U"] = { 15126 }, + }, + }, + [8266] = { + ["close"] = { 8266, 8269 }, + ["end"] = { + ["U"] = { 14733 }, + }, + ["lvl"] = 39, + ["min"] = 10, + ["obj"] = { + ["I"] = { 20256 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14733 }, + }, + }, + [8267] = { + ["close"] = { 8267, 8268 }, + ["end"] = { + ["U"] = { 14781 }, + }, + ["lvl"] = 60, + ["min"] = 40, + ["obj"] = { + ["I"] = { 20256 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14781 }, + }, + }, + [8268] = { + ["close"] = { 8267, 8268 }, + ["end"] = { + ["U"] = { 14781 }, + }, + ["lvl"] = 39, + ["min"] = 10, + ["obj"] = { + ["I"] = { 20256 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14781 }, + }, + }, + [8269] = { + ["close"] = { 8266, 8269 }, + ["end"] = { + ["U"] = { 14733 }, + }, + ["lvl"] = 60, + ["min"] = 40, + ["obj"] = { + ["I"] = { 20256 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14733 }, + }, + }, + [8271] = { + ["close"] = { 7202, 8271 }, + ["end"] = { + ["U"] = { 13816 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["U"] = { 12159 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 13816 }, + }, + }, + [8272] = { + ["close"] = { 7181, 8272 }, + ["end"] = { + ["U"] = { 13817 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["U"] = { 12159 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 13817 }, + }, + }, + [8273] = { + ["end"] = { + ["U"] = { 7825 }, + }, + ["lvl"] = 47, + ["min"] = 42, + ["pre"] = { 2782 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 7825 }, + }, + }, + [8274] = "_", + [8275] = { + ["close"] = { 8275, 8276 }, + ["end"] = { + ["U"] = { 15191 }, + }, + ["lvl"] = 55, + ["min"] = 54, + ["race"] = 589, + ["start"] = { + ["U"] = { 15187 }, + }, + }, + [8276] = { + ["close"] = { 8275, 8276 }, + ["end"] = { + ["U"] = { 15191 }, + }, + ["lvl"] = 55, + ["min"] = 54, + ["race"] = 434, + ["start"] = { + ["U"] = { 15188 }, + }, + }, + [8286] = { + ["end"] = { + ["U"] = { 15180 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["A"] = { 3986 }, + }, + ["start"] = { + ["U"] = { 15180 }, + }, + }, + [8288] = { + ["end"] = { + ["U"] = { 15180 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20383 }, + }, + ["pre"] = { 8286 }, + ["start"] = { + ["U"] = { 15180 }, + }, + }, + [8289] = { + ["end"] = { + ["U"] = { 14733 }, + }, + ["lvl"] = 15, + ["min"] = 10, + ["obj"] = { + ["I"] = { 19213 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14733 }, + }, + }, + [8290] = { + ["close"] = { 7788, 7871, 7872, 7873, 8290, 8291 }, + ["end"] = { + ["U"] = { 14733 }, + }, + ["lvl"] = 19, + ["min"] = 1, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14733 }, + }, + }, + [8291] = { + ["close"] = { 7788, 7871, 7872, 7873, 8290, 8291 }, + ["end"] = { + ["U"] = { 14733 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14733 }, + }, + }, + [8292] = { + ["end"] = { + ["U"] = { 14733 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14733 }, + }, + }, + [8293] = { + ["end"] = { + ["U"] = { 14781 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14781 }, + }, + }, + [8294] = { + ["close"] = { 7789, 7874, 7875, 7876, 8294, 8295 }, + ["end"] = { + ["U"] = { 14781 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14781 }, + }, + }, + [8295] = { + ["close"] = { 7789, 7874, 7875, 7876, 8294, 8295 }, + ["end"] = { + ["U"] = { 14781 }, + }, + ["lvl"] = 19, + ["min"] = 1, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14781 }, + }, + }, + [8296] = { + ["end"] = { + ["U"] = { 14733 }, + }, + ["lvl"] = 15, + ["min"] = 10, + ["obj"] = { + ["I"] = { 19322 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14733 }, + }, + }, + [8297] = { + ["close"] = { 8080, 8154, 8155, 8156, 8297 }, + ["end"] = { + ["U"] = { 14984 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20559 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14984 }, + }, + }, + [8298] = { + ["end"] = { + ["U"] = { 14984 }, + }, + ["lvl"] = 60, + ["min"] = 20, + ["obj"] = { + ["I"] = { 20559 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14984 }, + }, + }, + [8299] = { + ["close"] = { 8123, 8160, 8161, 8162, 8299 }, + ["end"] = { + ["U"] = { 15022 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20559 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15022 }, + }, + }, + [8300] = { + ["end"] = { + ["U"] = { 15022 }, + }, + ["lvl"] = 60, + ["min"] = 20, + ["obj"] = { + ["I"] = { 20559 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15022 }, + }, + }, + [8301] = { + ["end"] = { + ["U"] = { 15180 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20384 }, + }, + ["pre"] = { 8288 }, + ["start"] = { + ["U"] = { 15180 }, + }, + }, + [8302] = { + ["end"] = { + ["U"] = { 15180 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20384 }, + }, + ["pre"] = { 8301 }, + ["start"] = { + ["U"] = { 15180 }, + }, + }, + [8303] = { + ["end"] = { + ["U"] = { 15192 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 8301 }, + ["start"] = { + ["U"] = { 15180 }, + }, + }, + [8305] = { + ["end"] = { + ["O"] = { 180633 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 8303 }, + ["start"] = { + ["U"] = { 15192 }, + }, + }, + [8311] = { + ["end"] = { + ["U"] = { 15310 }, + }, + ["event"] = 12, + ["lvl"] = 60, + ["min"] = 10, + ["obj"] = { + ["I"] = { 20490, 20492, 20494, 20496 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15310 }, + }, + }, + [8312] = { + ["end"] = { + ["U"] = { 15309 }, + }, + ["event"] = 12, + ["lvl"] = 60, + ["min"] = 10, + ["obj"] = { + ["I"] = { 20491, 20493, 20495, 20497 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15309 }, + }, + }, + [8314] = { + ["end"] = { + ["U"] = { 15183 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["pre"] = { 8309, 8310 }, + ["start"] = { + ["U"] = { 15170 }, + }, + }, + [8322] = { + ["end"] = { + ["O"] = { 180570 }, + }, + ["event"] = 12, + ["lvl"] = 60, + ["min"] = 30, + ["race"] = 434, + ["start"] = { + ["U"] = { 15197 }, + }, + }, + [8353] = { + ["end"] = { + ["U"] = { 5111 }, + }, + ["event"] = 12, + ["lvl"] = 60, + ["min"] = 10, + ["pre"] = { 8311 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5111 }, + }, + }, + [8354] = { + ["end"] = { + ["U"] = { 6741 }, + }, + ["event"] = 12, + ["lvl"] = 60, + ["min"] = 10, + ["pre"] = { 8312 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 6741 }, + }, + }, + [8355] = { + ["end"] = { + ["U"] = { 6826 }, + }, + ["event"] = 12, + ["lvl"] = 60, + ["min"] = 10, + ["pre"] = { 8311 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6826 }, + }, + }, + [8356] = { + ["end"] = { + ["U"] = { 6740 }, + }, + ["event"] = 12, + ["lvl"] = 60, + ["min"] = 10, + ["pre"] = { 8311 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6740 }, + }, + }, + [8357] = { + ["end"] = { + ["U"] = { 6735 }, + }, + ["event"] = 12, + ["lvl"] = 60, + ["min"] = 10, + ["pre"] = { 8311 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6735 }, + }, + }, + [8358] = { + ["end"] = { + ["U"] = { 11814 }, + }, + ["event"] = 12, + ["lvl"] = 60, + ["min"] = 10, + ["pre"] = { 8312 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 11814 }, + }, + }, + [8359] = { + ["end"] = { + ["U"] = { 6929 }, + }, + ["event"] = 12, + ["lvl"] = 60, + ["min"] = 10, + ["pre"] = { 8312 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 6929 }, + }, + }, + [8360] = { + ["end"] = { + ["U"] = { 6746 }, + }, + ["event"] = 12, + ["lvl"] = 60, + ["min"] = 10, + ["pre"] = { 8312 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 6746 }, + }, + }, + [8367] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 20558, 20559, 20560 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8368] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 19, + ["min"] = 1, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8369] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 20560 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8370] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 29, + ["min"] = 20, + ["obj"] = { + ["I"] = { 20559 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8371] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 20558, 20559, 20560 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8372] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 19, + ["min"] = 1, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8373] = { + ["end"] = { + ["U"] = { 15199 }, + }, + ["event"] = 12, + ["lvl"] = 60, + ["min"] = 25, + ["obj"] = { + ["IR"] = { 20604 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15199 }, + }, + }, + [8374] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 29, + ["min"] = 20, + ["obj"] = { + ["I"] = { 20559 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8375] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 20560 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8383] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 20560 }, + }, + ["pre"] = { 8375 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8384] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 29, + ["min"] = 20, + ["obj"] = { + ["I"] = { 20559 }, + }, + ["pre"] = { 8374 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8385] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 20558, 20559, 20560 }, + }, + ["pre"] = { 8371 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8386] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 19, + ["min"] = 1, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["pre"] = { 8372 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8387] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 20560 }, + }, + ["pre"] = { 8369 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8388] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 20558, 20559, 20560 }, + }, + ["pre"] = { 8367 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8389] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 19, + ["min"] = 1, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["pre"] = { 8368 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8390] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 29, + ["min"] = 20, + ["obj"] = { + ["I"] = { 20559 }, + }, + ["pre"] = { 8370 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8391] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 39, + ["min"] = 30, + ["obj"] = { + ["I"] = { 20559 }, + }, + ["pre"] = { 8393 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8392] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 49, + ["min"] = 40, + ["obj"] = { + ["I"] = { 20559 }, + }, + ["pre"] = { 8394 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8393] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 39, + ["min"] = 30, + ["obj"] = { + ["I"] = { 20559 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8394] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 49, + ["min"] = 40, + ["obj"] = { + ["I"] = { 20559 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8395] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 59, + ["min"] = 50, + ["obj"] = { + ["I"] = { 20559 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8396] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20559 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8397] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 59, + ["min"] = 50, + ["obj"] = { + ["I"] = { 20559 }, + }, + ["pre"] = { 8395 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8398] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20559 }, + }, + ["pre"] = { 8396 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8399] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 29, + ["min"] = 20, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8400] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 39, + ["min"] = 30, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8401] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 49, + ["min"] = 40, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8402] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 59, + ["min"] = 50, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8403] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8404] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 29, + ["min"] = 20, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["pre"] = { 8399 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8405] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 39, + ["min"] = 30, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["pre"] = { 8400 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8406] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 49, + ["min"] = 40, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["pre"] = { 8401 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8407] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 59, + ["min"] = 50, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["pre"] = { 8402 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8408] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["pre"] = { 8403 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [8409] = { + ["end"] = { + ["U"] = { 15197 }, + }, + ["event"] = 12, + ["lvl"] = 60, + ["min"] = 25, + ["pre"] = { 8322 }, + ["race"] = 434, + ["start"] = { + ["O"] = { 180570 }, + }, + }, + [8410] = { + ["class"] = 64, + ["close"] = { 8410, 8411 }, + ["end"] = { + ["U"] = { 6176 }, + }, + ["lvl"] = 50, + ["min"] = 50, + ["obj"] = { + ["I"] = { 7067, 7068, 7069, 7070 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3032, 13417 }, + }, + }, + [8411] = { + ["class"] = 64, + ["close"] = { 8410, 8411 }, + ["end"] = { + ["U"] = { 6176 }, + }, + ["lvl"] = 50, + ["min"] = 50, + ["obj"] = { + ["I"] = { 7067, 7068, 7069, 7070 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 6176 }, + }, + }, + [8412] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 6176 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["obj"] = { + ["I"] = { 20610, 20611 }, + }, + ["pre"] = { 8410, 8411 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 6176 }, + }, + }, + [8413] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 6176 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["obj"] = { + ["I"] = { 20606, 20607, 20608 }, + }, + ["pre"] = { 8412 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 6176 }, + }, + }, + [8414] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 1854 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["obj"] = { + ["I"] = { 12840 }, + }, + ["pre"] = { 8415 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 10838 }, + }, + }, + [8415] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 10838 }, + }, + ["lvl"] = 50, + ["min"] = 50, + ["race"] = 589, + ["start"] = { + ["U"] = { 928, 5149 }, + }, + }, + [8416] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 10838 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["pre"] = { 8414 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1854 }, + }, + }, + [8417] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 7572 }, + }, + ["lvl"] = 50, + ["min"] = 50, + ["start"] = { + ["U"] = { 3354, 4593, 5113, 5479, 7315 }, + }, + }, + [8418] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 10838 }, + }, + ["lvl"] = 52, + ["min"] = 50, + ["obj"] = { + ["I"] = { 20606, 20607, 20608 }, + }, + ["pre"] = { 8416 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 10838 }, + }, + }, + [8424] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 7572 }, + }, + ["lvl"] = 53, + ["min"] = 50, + ["obj"] = { + ["U"] = { 6004, 6005, 6006 }, + }, + ["pre"] = { 8423 }, + ["start"] = { + ["U"] = { 7572 }, + }, + }, + [8426] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 29, + ["min"] = 20, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8427] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 39, + ["min"] = 30, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8428] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 49, + ["min"] = 40, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8429] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 59, + ["min"] = 50, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8430] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8431] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 29, + ["min"] = 20, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["pre"] = { 8426 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8432] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 39, + ["min"] = 30, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["pre"] = { 8427 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8433] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 49, + ["min"] = 40, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["pre"] = { 8428 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8434] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 59, + ["min"] = 50, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["pre"] = { 8429 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8435] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["pre"] = { 8430 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8436] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 39, + ["min"] = 30, + ["obj"] = { + ["I"] = { 20559 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8437] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 49, + ["min"] = 40, + ["obj"] = { + ["I"] = { 20559 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8438] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 59, + ["min"] = 50, + ["obj"] = { + ["I"] = { 20559 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8439] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20559 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8440] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 39, + ["min"] = 30, + ["obj"] = { + ["I"] = { 20559 }, + }, + ["pre"] = { 8436 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8441] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 49, + ["min"] = 40, + ["obj"] = { + ["I"] = { 20559 }, + }, + ["pre"] = { 8437 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8442] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 59, + ["min"] = 50, + ["obj"] = { + ["I"] = { 20559 }, + }, + ["pre"] = { 8438 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8443] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20559 }, + }, + ["pre"] = { 8439 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [8444] = "_", + [8445] = "_", + [8458] = "_", + [8459] = "_", + [8484] = { + ["end"] = { + ["U"] = { 2784 }, + }, + ["lvl"] = 60, + ["min"] = 45, + ["race"] = 589, + ["start"] = { + ["U"] = { 11555 }, + }, + }, + [8485] = { + ["end"] = { + ["U"] = { 4949 }, + }, + ["lvl"] = 60, + ["min"] = 45, + ["race"] = 434, + ["start"] = { + ["U"] = { 11555 }, + }, + }, + [8492] = { + ["end"] = { + ["U"] = { 15383 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 2840 }, + }, + ["pre"] = { 8795 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15383 }, + }, + }, + [8493] = { + ["end"] = { + ["U"] = { 15383 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 2840 }, + }, + ["pre"] = { 8492 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15383 }, + }, + }, + [8494] = { + ["end"] = { + ["U"] = { 15431 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 3575 }, + }, + ["pre"] = { 8795 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15431 }, + }, + }, + [8495] = { + ["end"] = { + ["U"] = { 15431 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 3575 }, + }, + ["pre"] = { 8494 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15431 }, + }, + }, + [8496] = { + ["end"] = { + ["U"] = { 15191 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 6451, 8545, 14530 }, + }, + ["start"] = { + ["I"] = { 20806 }, + }, + }, + [8497] = { + ["end"] = { + ["U"] = { 15174 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 7079, 19440, 20452 }, + }, + ["start"] = { + ["I"] = { 20807 }, + }, + }, + [8498] = { + ["end"] = { + ["U"] = { 15181 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20803 }, + }, + ["start"] = { + ["I"] = { 20943 }, + }, + }, + [8499] = { + ["end"] = { + ["U"] = { 15432 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 12359 }, + }, + ["pre"] = { 8795 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15432 }, + }, + }, + [8500] = { + ["end"] = { + ["U"] = { 15432 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 12359 }, + }, + ["pre"] = { 8499 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15432 }, + }, + }, + [8501] = { + ["end"] = { + ["U"] = { 15181 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 11698 }, + }, + ["start"] = { + ["I"] = { 20941 }, + }, + }, + [8502] = { + ["end"] = { + ["U"] = { 15181 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 11721 }, + }, + ["start"] = { + ["I"] = { 20942 }, + }, + }, + [8503] = { + ["end"] = { + ["U"] = { 15434 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 3820 }, + }, + ["pre"] = { 8795 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15434 }, + }, + }, + [8504] = { + ["end"] = { + ["U"] = { 15434 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 3820 }, + }, + ["pre"] = { 8503 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15434 }, + }, + }, + [8505] = { + ["end"] = { + ["U"] = { 15437 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 8831 }, + }, + ["pre"] = { 8795 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15437 }, + }, + }, + [8506] = { + ["end"] = { + ["U"] = { 15437 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 8831 }, + }, + ["pre"] = { 8505 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15437 }, + }, + }, + [8507] = { + ["end"] = { + ["U"] = { 15540 }, + }, + ["event"] = 86, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20810 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15540 }, + }, + }, + [8508] = { + ["end"] = { + ["U"] = { 15440 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 23024 }, + }, + ["pre"] = { 8507 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15440 }, + }, + }, + [8509] = { + ["end"] = { + ["U"] = { 15445 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 8836 }, + }, + ["pre"] = { 8795 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15445 }, + }, + }, + [8510] = { + ["end"] = { + ["U"] = { 15445 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 8836 }, + }, + ["pre"] = { 8509 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15445 }, + }, + }, + [8511] = { + ["end"] = { + ["U"] = { 15446 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 2318 }, + }, + ["pre"] = { 8795 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15446 }, + }, + }, + [8512] = { + ["end"] = { + ["U"] = { 15446 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 2318 }, + }, + ["pre"] = { 8511 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15446 }, + }, + }, + [8513] = { + ["end"] = { + ["U"] = { 15448 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 2319 }, + }, + ["pre"] = { 8795 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15448 }, + }, + }, + [8514] = { + ["end"] = { + ["U"] = { 15448 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 2319 }, + }, + ["pre"] = { 8513 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15448 }, + }, + }, + [8515] = { + ["end"] = { + ["U"] = { 15450 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 4304 }, + }, + ["pre"] = { 8795 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15450 }, + }, + }, + [8516] = { + ["end"] = { + ["U"] = { 15450 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 4304 }, + }, + ["pre"] = { 8515 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15450 }, + }, + }, + [8517] = { + ["end"] = { + ["U"] = { 15451 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 1251 }, + }, + ["pre"] = { 8795 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15451 }, + }, + }, + [8518] = { + ["end"] = { + ["U"] = { 15451 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 1251 }, + }, + ["pre"] = { 8517 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15451 }, + }, + }, + [8519] = { + ["end"] = { + ["U"] = { 15192 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 8305 }, + ["start"] = { + ["O"] = { 180633 }, + }, + }, + [8520] = { + ["end"] = { + ["U"] = { 15452 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 6450 }, + }, + ["pre"] = { 8795 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15452 }, + }, + }, + [8521] = { + ["end"] = { + ["U"] = { 15452 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 6450 }, + }, + ["pre"] = { 8520 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15452 }, + }, + }, + [8522] = { + ["end"] = { + ["U"] = { 15453 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 14529 }, + }, + ["pre"] = { 8795 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15453 }, + }, + }, + [8523] = { + ["end"] = { + ["U"] = { 15453 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 14529 }, + }, + ["pre"] = { 8522 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15453 }, + }, + }, + [8524] = { + ["end"] = { + ["U"] = { 15455 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 5095 }, + }, + ["pre"] = { 8795 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15455 }, + }, + }, + [8525] = { + ["end"] = { + ["U"] = { 15455 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 5095 }, + }, + ["pre"] = { 8524 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15455 }, + }, + }, + [8526] = { + ["end"] = { + ["U"] = { 15456 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 12210 }, + }, + ["pre"] = { 8795 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15456 }, + }, + }, + [8527] = { + ["end"] = { + ["U"] = { 15456 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 12210 }, + }, + ["pre"] = { 8526 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15456 }, + }, + }, + [8528] = { + ["end"] = { + ["U"] = { 15457 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 6887 }, + }, + ["pre"] = { 8795 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15457 }, + }, + }, + [8529] = { + ["end"] = { + ["U"] = { 15457 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 6887 }, + }, + ["pre"] = { 8528 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15457 }, + }, + }, + [8530] = "_", + [8532] = { + ["end"] = { + ["U"] = { 15459 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 2840 }, + }, + ["pre"] = { 8792 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15459 }, + }, + }, + [8533] = { + ["end"] = { + ["U"] = { 15459 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 2840 }, + }, + ["pre"] = { 8532 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15459 }, + }, + }, + [8534] = { + ["end"] = { + ["U"] = { 15191 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 21158 }, + }, + ["start"] = { + ["I"] = { 21165 }, + }, + }, + [8535] = { + ["end"] = { + ["U"] = { 15306 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 15212 }, + }, + ["start"] = { + ["I"] = { 20947 }, + }, + }, + [8536] = { + ["end"] = { + ["U"] = { 15306 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 15307 }, + }, + ["start"] = { + ["I"] = { 21751 }, + }, + }, + [8537] = { + ["end"] = { + ["U"] = { 15306 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 15209 }, + }, + ["start"] = { + ["I"] = { 20945 }, + }, + }, + [8538] = { + ["end"] = { + ["U"] = { 15181 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 15206, 15207, 15208, 15220 }, + }, + ["start"] = { + ["I"] = { 20948 }, + }, + }, + [8539] = { + ["end"] = { + ["U"] = { 15181 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 11729 }, + }, + ["start"] = { + ["I"] = { 21249 }, + }, + }, + [8540] = { + ["end"] = { + ["U"] = { 15182 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 7936 }, + }, + ["start"] = { + ["I"] = { 20939 }, + }, + }, + [8541] = { + ["end"] = { + ["U"] = { 15182 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 3486, 7966, 12644 }, + }, + ["start"] = { + ["I"] = { 20940 }, + }, + }, + [8542] = { + ["end"] = { + ["U"] = { 15460 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 3576 }, + }, + ["pre"] = { 8792 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15460 }, + }, + }, + [8543] = { + ["end"] = { + ["U"] = { 15460 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 3576 }, + }, + ["pre"] = { 8542 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15460 }, + }, + }, + [8544] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 15502 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20858, 20863, 20875, 20928 }, + }, + ["start"] = { + ["U"] = { 15502 }, + }, + }, + [8545] = { + ["end"] = { + ["U"] = { 15469 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 3860 }, + }, + ["pre"] = { 8792 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15469 }, + }, + }, + [8546] = { + ["end"] = { + ["U"] = { 15469 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 3860 }, + }, + ["pre"] = { 8545 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15469 }, + }, + }, + [8548] = { + ["end"] = { + ["U"] = { 15176 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20800, 20801, 20802 }, + }, + ["pre"] = { 8800 }, + ["start"] = { + ["U"] = { 15176 }, + }, + }, + [8549] = { + ["end"] = { + ["U"] = { 15477 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 2447 }, + }, + ["pre"] = { 8792 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15477 }, + }, + }, + [8550] = { + ["end"] = { + ["U"] = { 15477 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 2447 }, + }, + ["pre"] = { 8549 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15477 }, + }, + }, + [8551] = { + ["end"] = { + ["U"] = { 2500 }, + }, + ["lvl"] = 47, + ["min"] = 35, + ["obj"] = { + ["I"] = { 3932 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2500 }, + }, + }, + [8553] = { + ["end"] = { + ["U"] = { 2594 }, + }, + ["lvl"] = 50, + ["min"] = 35, + ["pre"] = { 8552 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2500 }, + }, + }, + [8554] = { + ["end"] = { + ["U"] = { 2500 }, + }, + ["lvl"] = 50, + ["min"] = 35, + ["obj"] = { + ["I"] = { 3935 }, + }, + ["pre"] = { 8553 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2594 }, + }, + }, + [8555] = { + ["end"] = { + ["U"] = { 15192 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 8519 }, + ["start"] = { + ["U"] = { 15192 }, + }, + }, + [8559] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 15503 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20859, 20865, 20882, 20928 }, + }, + ["start"] = { + ["U"] = { 15503 }, + }, + }, + [8560] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 15503 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20861, 20865, 20876, 20927 }, + }, + ["start"] = { + ["U"] = { 15503 }, + }, + }, + [8561] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 15502 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20858, 20862, 20874, 20926 }, + }, + ["start"] = { + ["U"] = { 15502 }, + }, + }, + [8562] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 15504 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20860, 20864, 20882, 20929 }, + }, + ["start"] = { + ["U"] = { 15504 }, + }, + }, + [8565] = "_", + [8566] = "_", + [8567] = "_", + [8568] = "_", + [8569] = "_", + [8570] = "_", + [8572] = { + ["end"] = { + ["U"] = { 15176 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20800, 20801, 20802 }, + }, + ["pre"] = { 8800 }, + ["start"] = { + ["U"] = { 15176 }, + }, + }, + [8573] = { + ["end"] = { + ["U"] = { 15176 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20800, 20801, 20802, 21508 }, + }, + ["pre"] = { 8800 }, + ["start"] = { + ["U"] = { 15176 }, + }, + }, + [8574] = { + ["end"] = { + ["U"] = { 15176 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20800, 20801, 20802, 21515 }, + }, + ["pre"] = { 8800 }, + ["start"] = { + ["U"] = { 15176 }, + }, + }, + [8575] = { + ["end"] = { + ["U"] = { 11811 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 8555 }, + ["start"] = { + ["I"] = { 20949 }, + }, + }, + [8576] = { + ["end"] = { + ["U"] = { 11811 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 8575 }, + ["start"] = { + ["U"] = { 11811 }, + }, + }, + [8577] = { + ["end"] = { + ["O"] = { 180642 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 8576 }, + ["start"] = { + ["U"] = { 11811 }, + }, + }, + [8578] = { + ["end"] = { + ["U"] = { 11811 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20951 }, + }, + ["pre"] = { 8577 }, + ["start"] = { + ["O"] = { 180642 }, + ["U"] = { 11811 }, + }, + }, + [8579] = { + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 21229 }, + }, + ["pre"] = { 8595 }, + ["race"] = 589, + }, + [8580] = { + ["end"] = { + ["U"] = { 15508 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 4625 }, + }, + ["pre"] = { 8792 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15508 }, + }, + }, + [8581] = { + ["end"] = { + ["U"] = { 15508 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 4625 }, + }, + ["pre"] = { 8580 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15508 }, + }, + }, + [8582] = { + ["end"] = { + ["U"] = { 15512 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 8831 }, + }, + ["pre"] = { 8792 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15512 }, + }, + }, + [8583] = { + ["end"] = { + ["U"] = { 15512 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 8831 }, + }, + ["pre"] = { 8582 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15512 }, + }, + }, + [8584] = { + ["end"] = { + ["U"] = { 8125 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 8576 }, + ["start"] = { + ["U"] = { 11811 }, + }, + }, + [8585] = { + ["end"] = { + ["U"] = { 8125 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 21024, 21027 }, + }, + ["pre"] = { 8584 }, + ["start"] = { + ["U"] = { 8125 }, + }, + }, + [8586] = { + ["end"] = { + ["U"] = { 8125 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 8150, 9061 }, + }, + ["pre"] = { 8585 }, + ["start"] = { + ["U"] = { 8125 }, + }, + }, + [8587] = { + ["end"] = { + ["U"] = { 11811 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 8586 }, + ["start"] = { + ["U"] = { 8125 }, + }, + }, + [8588] = { + ["end"] = { + ["U"] = { 15515 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 4234 }, + }, + ["pre"] = { 8792 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15515 }, + }, + }, + [8589] = { + ["end"] = { + ["U"] = { 15515 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 4234 }, + }, + ["pre"] = { 8588 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15515 }, + }, + }, + [8590] = { + ["end"] = { + ["U"] = { 15522 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 4304 }, + }, + ["pre"] = { 8792 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15522 }, + }, + }, + [8591] = { + ["end"] = { + ["U"] = { 15522 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 4304 }, + }, + ["pre"] = { 8590 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15522 }, + }, + }, + [8592] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 15502 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20860, 20864, 20877, 20926 }, + }, + ["start"] = { + ["U"] = { 15502 }, + }, + }, + [8593] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 15503 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20859, 20863, 20879, 20927 }, + }, + ["start"] = { + ["U"] = { 15503 }, + }, + }, + [8594] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 15502 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20860, 20865, 20878, 20928 }, + }, + ["start"] = { + ["U"] = { 15502 }, + }, + }, + [8595] = { + ["end"] = { + ["U"] = { 15503 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 21229 }, + }, + ["start"] = { + ["U"] = { 15503 }, + }, + }, + [8596] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 15503 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20859, 20861, 20876, 20928 }, + }, + ["start"] = { + ["U"] = { 15503 }, + }, + }, + [8597] = { + ["end"] = { + ["O"] = { 180652 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 8576 }, + ["start"] = { + ["U"] = { 11811 }, + }, + }, + [8598] = { + ["end"] = { + ["U"] = { 11811 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 8597 }, + ["start"] = { + ["O"] = { 180652 }, + }, + }, + [8599] = { + ["end"] = { + ["U"] = { 11811 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 8597 }, + ["start"] = { + ["U"] = { 15526 }, + }, + }, + [8600] = { + ["end"] = { + ["U"] = { 15525 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 8170 }, + }, + ["pre"] = { 8792 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15525 }, + }, + }, + [8601] = { + ["end"] = { + ["U"] = { 15525 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 8170 }, + }, + ["pre"] = { 8600 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15525 }, + }, + }, + [8602] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 15502 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20859, 20862, 20879, 20932 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15502 }, + }, + }, + [8603] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 15504 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20858, 20862, 20876, 20933 }, + }, + ["start"] = { + ["U"] = { 15504 }, + }, + }, + [8604] = { + ["end"] = { + ["U"] = { 15528 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 3530 }, + }, + ["pre"] = { 8792 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15528 }, + }, + }, + [8605] = { + ["end"] = { + ["U"] = { 15528 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 3530 }, + }, + ["pre"] = { 8604 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15528 }, + }, + }, + [8606] = { + ["end"] = { + ["U"] = { 11811 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 15554 }, + }, + ["pre"] = { 8598 }, + ["start"] = { + ["U"] = { 11811 }, + }, + }, + [8607] = { + ["end"] = { + ["U"] = { 15529 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 8544 }, + }, + ["pre"] = { 8792 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15529 }, + }, + }, + [8608] = { + ["end"] = { + ["U"] = { 15529 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 8544 }, + }, + ["pre"] = { 8607 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15529 }, + }, + }, + [8609] = { + ["end"] = { + ["U"] = { 15532 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 14529 }, + }, + ["pre"] = { 8792 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15532 }, + }, + }, + [8610] = { + ["end"] = { + ["U"] = { 15532 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 14529 }, + }, + ["pre"] = { 8609 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15532 }, + }, + }, + [8611] = { + ["end"] = { + ["U"] = { 15533 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 12209 }, + }, + ["pre"] = { 8792 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15533 }, + }, + }, + [8612] = { + ["end"] = { + ["U"] = { 15533 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 12209 }, + }, + ["pre"] = { 8611 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15533 }, + }, + }, + [8613] = { + ["end"] = { + ["U"] = { 15534 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 6887 }, + }, + ["pre"] = { 8792 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15534 }, + }, + }, + [8614] = { + ["end"] = { + ["U"] = { 15534 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 6887 }, + }, + ["pre"] = { 8613 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15534 }, + }, + }, + [8615] = { + ["end"] = { + ["U"] = { 15535 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 13935 }, + }, + ["pre"] = { 8792 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15535 }, + }, + }, + [8616] = { + ["end"] = { + ["U"] = { 15535 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 13935 }, + }, + ["pre"] = { 8615 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15535 }, + }, + }, + [8617] = "_", + [8620] = { + ["end"] = { + ["U"] = { 11811 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 21111 }, + }, + ["pre"] = { 8606 }, + ["start"] = { + ["U"] = { 11811 }, + }, + }, + [8621] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 15503 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20861, 20863, 20877, 20932 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15503 }, + }, + }, + [8622] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 15504 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20860, 20864, 20877, 20929 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15504 }, + }, + }, + [8623] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 15502 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20858, 20862, 20878, 20930 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15502 }, + }, + }, + [8624] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 15503 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20861, 20865, 20881, 20931 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15503 }, + }, + }, + [8625] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 15502 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20858, 20861, 20876, 20932 }, + }, + ["start"] = { + ["U"] = { 15502 }, + }, + }, + [8626] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 15503 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20858, 20864, 20879, 20928 }, + }, + ["start"] = { + ["U"] = { 15503 }, + }, + }, + [8627] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 15504 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20860, 20864, 20877, 20929 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15504 }, + }, + }, + [8628] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 15502 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20858, 20862, 20878, 20930 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15502 }, + }, + }, + [8629] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 15503 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20861, 20865, 20881, 20931 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15503 }, + }, + }, + [8630] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 15502 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20859, 20862, 20879, 20932 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15502 }, + }, + }, + [8631] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 15503 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20860, 20864, 20877, 20927 }, + }, + ["start"] = { + ["U"] = { 15503 }, + }, + }, + [8632] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 15502 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20861, 20865, 20875, 20926 }, + }, + ["start"] = { + ["U"] = { 15502 }, + }, + }, + [8633] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 15504 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20859, 20863, 20874, 20933 }, + }, + ["start"] = { + ["U"] = { 15504 }, + }, + }, + [8634] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 15503 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20860, 20862, 20874, 20932 }, + }, + ["start"] = { + ["U"] = { 15503 }, + }, + }, + [8637] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 15503 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20862, 20864, 20881, 20928 }, + }, + ["start"] = { + ["U"] = { 15503 }, + }, + }, + [8638] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 15504 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20861, 20865, 20881, 20929 }, + }, + ["start"] = { + ["U"] = { 15504 }, + }, + }, + [8639] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 15502 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20859, 20863, 20882, 20930 }, + }, + ["start"] = { + ["U"] = { 15502 }, + }, + }, + [8640] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 15503 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20858, 20862, 20875, 20927 }, + }, + ["start"] = { + ["U"] = { 15503 }, + }, + }, + [8641] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 15502 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20860, 20863, 20874, 20928 }, + }, + ["start"] = { + ["U"] = { 15502 }, + }, + }, + [8655] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 15503 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20861, 20863, 20877, 20932 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15503 }, + }, + }, + [8656] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 15504 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20859, 20863, 20879, 20929 }, + }, + ["start"] = { + ["U"] = { 15504 }, + }, + }, + [8657] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 15502 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20861, 20865, 20881, 20930 }, + }, + ["start"] = { + ["U"] = { 15502 }, + }, + }, + [8658] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 15503 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20860, 20864, 20874, 20931 }, + }, + ["start"] = { + ["U"] = { 15503 }, + }, + }, + [8659] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 15502 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20862, 20865, 20882, 20928 }, + }, + ["start"] = { + ["U"] = { 15502 }, + }, + }, + [8660] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 15503 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20863, 20865, 20875, 20932 }, + }, + ["start"] = { + ["U"] = { 15503 }, + }, + }, + [8661] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 15504 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20858, 20862, 20875, 20933 }, + }, + ["start"] = { + ["U"] = { 15504 }, + }, + }, + [8662] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 15502 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20860, 20864, 20876, 20926 }, + }, + ["start"] = { + ["U"] = { 15502 }, + }, + }, + [8663] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 15503 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20859, 20863, 20878, 20931 }, + }, + ["start"] = { + ["U"] = { 15503 }, + }, + }, + [8664] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 15502 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20861, 20864, 20877, 20932 }, + }, + ["start"] = { + ["U"] = { 15502 }, + }, + }, + [8665] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 15503 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20858, 20860, 20878, 20932 }, + }, + ["start"] = { + ["U"] = { 15503 }, + }, + }, + [8666] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 15504 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20861, 20865, 20878, 20933 }, + }, + ["start"] = { + ["U"] = { 15504 }, + }, + }, + [8667] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 15502 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20859, 20863, 20879, 20930 }, + }, + ["start"] = { + ["U"] = { 15502 }, + }, + }, + [8668] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 15503 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20858, 20862, 20882, 20931 }, + }, + ["start"] = { + ["U"] = { 15503 }, + }, + }, + [8669] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 15502 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20859, 20864, 20881, 20932 }, + }, + ["start"] = { + ["U"] = { 15502 }, + }, + }, + [8687] = { + ["end"] = { + ["U"] = { 15181 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 11726 }, + }, + ["start"] = { + ["I"] = { 21251 }, + }, + }, + [8690] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 15500 }, + }, + ["event"] = 86, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20859, 20863, 20871, 20889 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15500 }, + }, + }, + [8695] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 15500 }, + }, + ["event"] = 86, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20859, 20863, 20871, 20889 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15500 }, + }, + }, + [8698] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 15498 }, + }, + ["event"] = 86, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20860, 20864, 20872, 20884 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15498 }, + }, + }, + [8703] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 15498 }, + }, + ["event"] = 86, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20860, 20864, 20872, 20884 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15498 }, + }, + }, + [8706] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 15499 }, + }, + ["event"] = 86, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20861, 20865, 20869, 20886 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15499 }, + }, + }, + [8711] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 15499 }, + }, + ["event"] = 86, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20861, 20865, 20869, 20886 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15499 }, + }, + }, + [8728] = { + ["end"] = { + ["U"] = { 11811 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12360, 12361, 12800, 18562 }, + }, + ["pre"] = { 8578, 8587, 8620 }, + ["start"] = { + ["U"] = { 11811 }, + }, + }, + [8729] = { + ["end"] = { + ["U"] = { 15192 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 21137 }, + ["IR"] = { 21136 }, + }, + ["pre"] = { 8728 }, + ["start"] = { + ["U"] = { 11811 }, + }, + }, + [8730] = { + ["end"] = { + ["U"] = { 15192 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 21138 }, + }, + ["pre"] = { 8555 }, + ["start"] = { + ["U"] = { 13020 }, + }, + }, + [8731] = { + ["end"] = { + ["U"] = { 15540 }, + }, + ["event"] = 86, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20810 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15540 }, + }, + }, + [8732] = { + ["end"] = { + ["U"] = { 15612 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 23024 }, + }, + ["pre"] = { 8731 }, + ["start"] = { + ["U"] = { 15612 }, + }, + }, + [8733] = { + ["end"] = { + ["U"] = { 15624 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 8555 }, + ["start"] = { + ["U"] = { 15362 }, + }, + }, + [8734] = { + ["end"] = { + ["U"] = { 11832 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 8733 }, + ["start"] = { + ["U"] = { 15624 }, + }, + }, + [8735] = { + ["end"] = { + ["U"] = { 11832 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 21146, 21147, 21148, 21149 }, + }, + ["pre"] = { 8734 }, + ["start"] = { + ["U"] = { 11832 }, + }, + }, + [8736] = { + ["end"] = { + ["U"] = { 11832 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 8735 }, + ["start"] = { + ["U"] = { 11832 }, + }, + }, + [8737] = { + ["end"] = { + ["U"] = { 15306 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 15211 }, + }, + ["start"] = { + ["I"] = { 21245 }, + }, + }, + [8738] = { + ["end"] = { + ["U"] = { 15191 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 21160 }, + }, + ["start"] = { + ["I"] = { 21166 }, + }, + }, + [8739] = { + ["end"] = { + ["U"] = { 15191 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 21161 }, + }, + ["start"] = { + ["I"] = { 21167 }, + }, + }, + [8740] = { + ["end"] = { + ["U"] = { 15191 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 15541, 15542 }, + }, + ["start"] = { + ["I"] = { 20944 }, + }, + }, + [8741] = { + ["end"] = { + ["U"] = { 15192 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 8736 }, + ["start"] = { + ["U"] = { 11832 }, + }, + }, + [8742] = { + ["end"] = { + ["U"] = { 15192 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 8729, 8730, 8741 }, + ["start"] = { + ["U"] = { 15192 }, + }, + }, + [8745] = { + ["end"] = { + ["U"] = { 15693 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 8742 }, + ["start"] = { + ["U"] = { 15693 }, + }, + }, + [8747] = { + ["close"] = { 8747, 8752, 8757 }, + ["end"] = { + ["U"] = { 15192 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["start"] = { + ["U"] = { 15192 }, + }, + }, + [8748] = { + ["end"] = { + ["U"] = { 15192 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 21196 }, + }, + ["pre"] = { 8747 }, + ["start"] = { + ["U"] = { 15192 }, + }, + }, + [8749] = { + ["end"] = { + ["U"] = { 15192 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 21197 }, + }, + ["pre"] = { 8748 }, + ["start"] = { + ["U"] = { 15192 }, + }, + }, + [8750] = { + ["end"] = { + ["U"] = { 15192 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 21198 }, + }, + ["pre"] = { 8749 }, + ["start"] = { + ["U"] = { 15192 }, + }, + }, + [8751] = { + ["end"] = { + ["U"] = { 15192 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 21199 }, + }, + ["pre"] = { 8750 }, + ["start"] = { + ["U"] = { 15192 }, + }, + }, + [8752] = { + ["close"] = { 8747, 8752, 8757 }, + ["end"] = { + ["U"] = { 15192 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["start"] = { + ["U"] = { 15192 }, + }, + }, + [8753] = { + ["end"] = { + ["U"] = { 15192 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 21201 }, + }, + ["pre"] = { 8752 }, + ["start"] = { + ["U"] = { 15192 }, + }, + }, + [8754] = { + ["end"] = { + ["U"] = { 15192 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 21202 }, + }, + ["pre"] = { 8753 }, + ["start"] = { + ["U"] = { 15192 }, + }, + }, + [8755] = { + ["end"] = { + ["U"] = { 15192 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 21203 }, + }, + ["pre"] = { 8754 }, + ["start"] = { + ["U"] = { 15192 }, + }, + }, + [8756] = { + ["end"] = { + ["U"] = { 15192 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 21204 }, + }, + ["pre"] = { 8755 }, + ["start"] = { + ["U"] = { 15192 }, + }, + }, + [8757] = { + ["close"] = { 8747, 8752, 8757 }, + ["end"] = { + ["U"] = { 15192 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["start"] = { + ["U"] = { 15192 }, + }, + }, + [8758] = { + ["end"] = { + ["U"] = { 15192 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 21206 }, + }, + ["pre"] = { 8757 }, + ["start"] = { + ["U"] = { 15192 }, + }, + }, + [8759] = { + ["end"] = { + ["U"] = { 15192 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 21207 }, + }, + ["pre"] = { 8758 }, + ["start"] = { + ["U"] = { 15192 }, + }, + }, + [8760] = { + ["end"] = { + ["U"] = { 15192 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 21208 }, + }, + ["pre"] = { 8759 }, + ["start"] = { + ["U"] = { 15192 }, + }, + }, + [8761] = { + ["end"] = { + ["U"] = { 15192 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 21209 }, + }, + ["pre"] = { 8760 }, + ["start"] = { + ["U"] = { 15192 }, + }, + }, + [8763] = { + ["end"] = { + ["O"] = { 180715 }, + }, + ["event"] = 2, + ["lvl"] = 60, + ["min"] = 40, + ["obj"] = { + ["I"] = { 8150 }, + }, + ["pre"] = { 8762 }, + ["race"] = 589, + ["skill"] = 185, + ["start"] = { + ["U"] = { 13433 }, + }, + }, + [8764] = { + ["end"] = { + ["U"] = { 15192 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20858, 20859, 20860, 21200 }, + }, + ["start"] = { + ["U"] = { 15192 }, + }, + }, + [8765] = { + ["end"] = { + ["U"] = { 15192 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20861, 20862, 20863, 21210 }, + }, + ["start"] = { + ["U"] = { 15192 }, + }, + }, + [8766] = { + ["end"] = { + ["U"] = { 15192 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20858, 20864, 20865, 21205 }, + }, + ["start"] = { + ["U"] = { 15192 }, + }, + }, + [8770] = { + ["end"] = { + ["U"] = { 15181 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 11722 }, + }, + ["start"] = { + ["I"] = { 21749 }, + }, + }, + [8771] = { + ["end"] = { + ["U"] = { 15181 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 11723 }, + }, + ["start"] = { + ["I"] = { 21750 }, + }, + }, + [8772] = { + ["end"] = { + ["U"] = { 15181 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 11725 }, + }, + ["start"] = { + ["I"] = { 21250 }, + }, + }, + [8773] = { + ["end"] = { + ["U"] = { 15181 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 11728 }, + }, + ["start"] = { + ["I"] = { 21248 }, + }, + }, + [8774] = { + ["end"] = { + ["U"] = { 15181 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 11730 }, + }, + ["start"] = { + ["I"] = { 21252 }, + }, + }, + [8775] = { + ["end"] = { + ["U"] = { 15181 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 11732 }, + }, + ["start"] = { + ["I"] = { 21253 }, + }, + }, + [8776] = { + ["end"] = { + ["U"] = { 15181 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 11733 }, + }, + ["start"] = { + ["I"] = { 21255 }, + }, + }, + [8777] = { + ["end"] = { + ["U"] = { 15181 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 11731 }, + }, + ["start"] = { + ["I"] = { 21256 }, + }, + }, + [8778] = { + ["end"] = { + ["U"] = { 15444 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 8956, 9061, 15992 }, + }, + ["race"] = 589, + ["start"] = { + ["I"] = { 21257 }, + }, + }, + [8779] = { + ["end"] = { + ["U"] = { 15183 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 11178, 12364, 14344 }, + }, + ["start"] = { + ["I"] = { 21259 }, + }, + }, + [8780] = { + ["end"] = { + ["U"] = { 15443 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 4265, 15564 }, + }, + ["race"] = 589, + ["start"] = { + ["I"] = { 21263 }, + }, + }, + [8781] = { + ["end"] = { + ["U"] = { 15443 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 3853 }, + }, + ["race"] = 589, + ["start"] = { + ["I"] = { 21260 }, + }, + }, + [8782] = { + ["end"] = { + ["U"] = { 15191 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 14048, 14227, 14342 }, + }, + ["start"] = { + ["I"] = { 21262 }, + }, + }, + [8783] = { + ["end"] = { + ["U"] = { 15176 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12655, 12810 }, + }, + ["start"] = { + ["I"] = { 21265 }, + }, + }, + [8784] = { + ["end"] = { + ["U"] = { 15502 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["start"] = { + ["I"] = { 21230 }, + }, + }, + [8785] = { + ["end"] = { + ["U"] = { 15615 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 8152, 8956, 12804 }, + }, + ["race"] = 434, + ["start"] = { + ["I"] = { 21258 }, + }, + }, + [8786] = { + ["end"] = { + ["U"] = { 15613 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 3855 }, + }, + ["race"] = 434, + ["start"] = { + ["I"] = { 21261 }, + }, + }, + [8787] = { + ["end"] = { + ["U"] = { 15613 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 4265, 15564 }, + }, + ["race"] = 434, + ["start"] = { + ["I"] = { 21264 }, + }, + }, + [8789] = { + ["end"] = { + ["U"] = { 15380 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 18562, 21232 }, + }, + ["start"] = { + ["U"] = { 15380 }, + }, + }, + [8790] = { + ["end"] = { + ["U"] = { 15378 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 18562, 21237 }, + }, + ["start"] = { + ["U"] = { 15378 }, + }, + }, + [8791] = { + ["end"] = { + ["U"] = { 15181 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["start"] = { + ["I"] = { 21220 }, + }, + }, + [8792] = { + ["close"] = { 8792, 8793, 8794 }, + ["end"] = { + ["U"] = { 15700 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["race"] = 434, + ["start"] = { + ["U"] = { 15702, 15703, 15704 }, + }, + }, + [8793] = { + ["close"] = { 8792, 8793, 8794 }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["race"] = 434, + }, + [8794] = { + ["close"] = { 8792, 8793, 8794 }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["race"] = 434, + }, + [8795] = { + ["close"] = { 8795, 8796, 8797 }, + ["end"] = { + ["U"] = { 15701 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["race"] = 589, + ["start"] = { + ["U"] = { 15707, 15708, 15709 }, + }, + }, + [8796] = { + ["close"] = { 8795, 8796, 8797 }, + ["end"] = { + ["U"] = { 15701 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["race"] = 589, + }, + [8797] = { + ["close"] = { 8795, 8796, 8797 }, + ["end"] = { + ["U"] = { 15701 }, + }, + ["event"] = 22, + ["lvl"] = 60, + ["min"] = 1, + ["race"] = 589, + }, + [8799] = { + ["end"] = { + ["O"] = { 180715 }, + }, + ["event"] = 2, + ["lvl"] = 60, + ["min"] = 40, + ["obj"] = { + ["I"] = { 8150 }, + }, + ["pre"] = { 8746 }, + ["race"] = 434, + ["skill"] = 185, + ["start"] = { + ["U"] = { 13418 }, + }, + }, + [8801] = { + ["end"] = { + ["U"] = { 15379 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["start"] = { + ["I"] = { 21221 }, + }, + }, + [8802] = { + ["end"] = { + ["U"] = { 15192 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 8801 }, + ["start"] = { + ["U"] = { 15379 }, + }, + }, + [8804] = { + ["end"] = { + ["U"] = { 15174 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 7079, 19440, 20452 }, + }, + ["start"] = { + ["I"] = { 21378 }, + }, + }, + [8805] = { + ["end"] = { + ["U"] = { 15182 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 7936 }, + }, + ["start"] = { + ["I"] = { 21379 }, + }, + }, + [8806] = { + ["end"] = { + ["U"] = { 15182 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 3486, 7966, 12644 }, + }, + ["start"] = { + ["I"] = { 21380 }, + }, + }, + [8807] = { + ["end"] = { + ["U"] = { 15183 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 11178, 12364, 14344 }, + }, + ["start"] = { + ["I"] = { 21382 }, + }, + }, + [8808] = { + ["end"] = { + ["U"] = { 15191 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 14048, 14227, 14342 }, + }, + ["start"] = { + ["I"] = { 21384 }, + }, + }, + [8809] = { + ["end"] = { + ["U"] = { 15176 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12655, 12810 }, + }, + ["start"] = { + ["I"] = { 21381 }, + }, + }, + [8810] = { + ["end"] = { + ["U"] = { 15191 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 6451, 8545, 14530 }, + }, + ["start"] = { + ["I"] = { 21385 }, + }, + }, + [8811] = { + ["end"] = { + ["U"] = { 15762 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21436 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15762 }, + }, + }, + [8812] = { + ["end"] = { + ["U"] = { 15763 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21436 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15763 }, + }, + }, + [8813] = { + ["end"] = { + ["U"] = { 15764 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21436 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15764 }, + }, + }, + [8814] = { + ["end"] = { + ["U"] = { 15766 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21436 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15766 }, + }, + }, + [8815] = { + ["end"] = { + ["U"] = { 15765 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21438 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15765 }, + }, + }, + [8816] = { + ["end"] = { + ["U"] = { 15761 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21438 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15761 }, + }, + }, + [8817] = { + ["end"] = { + ["U"] = { 15768 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21438 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15768 }, + }, + }, + [8818] = { + ["end"] = { + ["U"] = { 15767 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21438 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15767 }, + }, + }, + [8819] = { + ["end"] = { + ["U"] = { 15762 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21436 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15762 }, + }, + }, + [8820] = { + ["end"] = { + ["U"] = { 15763 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21436 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15763 }, + }, + }, + [8821] = { + ["end"] = { + ["U"] = { 15764 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21436 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15764 }, + }, + }, + [8822] = { + ["end"] = { + ["U"] = { 15766 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21436 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15766 }, + }, + }, + [8823] = { + ["end"] = { + ["U"] = { 15765 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21438 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15765 }, + }, + }, + [8824] = { + ["end"] = { + ["U"] = { 15761 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21438 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15761 }, + }, + }, + [8825] = { + ["end"] = { + ["U"] = { 15767 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21438 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15767 }, + }, + }, + [8826] = { + ["end"] = { + ["U"] = { 15768 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21438 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15768 }, + }, + }, + [8827] = { + ["end"] = { + ["U"] = { 13444 }, + }, + ["event"] = 21, + ["lvl"] = 1, + ["min"] = 1, + ["race"] = 589, + ["start"] = { + ["U"] = { 15732 }, + }, + }, + [8828] = { + ["end"] = { + ["U"] = { 13445 }, + }, + ["event"] = 21, + ["lvl"] = 1, + ["min"] = 1, + ["race"] = 434, + ["start"] = { + ["U"] = { 15732 }, + }, + }, + [8829] = { + ["end"] = { + ["U"] = { 15282 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 12735, 12753, 20407 }, + }, + ["start"] = { + ["I"] = { 21514 }, + }, + }, + [8830] = { + ["end"] = { + ["U"] = { 15731 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21436 }, + }, + ["pre"] = { 8795 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15731 }, + }, + }, + [8831] = { + ["end"] = { + ["U"] = { 15731 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21436 }, + }, + ["pre"] = { 8795 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15731 }, + }, + }, + [8832] = { + ["end"] = { + ["U"] = { 15738 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21438 }, + }, + ["pre"] = { 8792 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15738 }, + }, + }, + [8833] = { + ["end"] = { + ["U"] = { 15738 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21438 }, + }, + ["pre"] = { 8792 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15738 }, + }, + }, + [8834] = { + ["end"] = { + ["U"] = { 15734 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21436 }, + }, + ["pre"] = { 8795 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15734 }, + }, + }, + [8835] = { + ["end"] = { + ["U"] = { 15734 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21436 }, + }, + ["pre"] = { 8795 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15734 }, + }, + }, + [8836] = { + ["end"] = { + ["U"] = { 15735 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21436 }, + }, + ["pre"] = { 8795 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15735 }, + }, + }, + [8837] = { + ["end"] = { + ["U"] = { 15735 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21436 }, + }, + ["pre"] = { 8795 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15735 }, + }, + }, + [8838] = { + ["end"] = { + ["U"] = { 15733 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21436 }, + }, + ["pre"] = { 8795 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15733 }, + }, + }, + [8839] = { + ["end"] = { + ["U"] = { 15733 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21436 }, + }, + ["pre"] = { 8795 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15733 }, + }, + }, + [8840] = { + ["end"] = { + ["U"] = { 15736 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21438 }, + }, + ["pre"] = { 8792 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15736 }, + }, + }, + [8841] = { + ["end"] = { + ["U"] = { 15736 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21438 }, + }, + ["pre"] = { 8792 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15736 }, + }, + }, + [8842] = { + ["end"] = { + ["U"] = { 15739 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21438 }, + }, + ["pre"] = { 8792 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15739 }, + }, + }, + [8843] = { + ["end"] = { + ["U"] = { 15739 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21438 }, + }, + ["pre"] = { 8792 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15739 }, + }, + }, + [8844] = { + ["end"] = { + ["U"] = { 15737 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21438 }, + }, + ["pre"] = { 8792 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15737 }, + }, + }, + [8845] = { + ["end"] = { + ["U"] = { 15737 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21438 }, + }, + ["pre"] = { 8792 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15737 }, + }, + }, + [8846] = { + ["end"] = { + ["U"] = { 15701 }, + }, + ["event"] = 164, + ["lvl"] = 19, + ["min"] = 10, + ["obj"] = { + ["I"] = { 21436 }, + }, + ["pre"] = { 8795 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15701 }, + }, + }, + [8847] = { + ["end"] = { + ["U"] = { 15701 }, + }, + ["event"] = 164, + ["lvl"] = 29, + ["min"] = 20, + ["obj"] = { + ["I"] = { 21436 }, + }, + ["pre"] = { 8795 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15701 }, + }, + }, + [8848] = { + ["end"] = { + ["U"] = { 15701 }, + }, + ["event"] = 164, + ["lvl"] = 39, + ["min"] = 30, + ["obj"] = { + ["I"] = { 21436 }, + }, + ["pre"] = { 8795 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15701 }, + }, + }, + [8849] = { + ["end"] = { + ["U"] = { 15701 }, + }, + ["event"] = 164, + ["lvl"] = 49, + ["min"] = 40, + ["obj"] = { + ["I"] = { 21436 }, + }, + ["pre"] = { 8795 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15701 }, + }, + }, + [8850] = { + ["end"] = { + ["U"] = { 15701 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 21436 }, + }, + ["pre"] = { 8795 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15701 }, + }, + }, + [8851] = { + ["end"] = { + ["U"] = { 15700 }, + }, + ["event"] = 164, + ["lvl"] = 19, + ["min"] = 10, + ["obj"] = { + ["I"] = { 21438 }, + }, + ["pre"] = { 8792 }, + ["start"] = { + ["U"] = { 15700 }, + }, + }, + [8852] = { + ["end"] = { + ["U"] = { 15700 }, + }, + ["event"] = 164, + ["lvl"] = 29, + ["min"] = 20, + ["obj"] = { + ["I"] = { 21438 }, + }, + ["pre"] = { 8792 }, + ["start"] = { + ["U"] = { 15700 }, + }, + }, + [8853] = { + ["end"] = { + ["U"] = { 15700 }, + }, + ["event"] = 164, + ["lvl"] = 39, + ["min"] = 30, + ["obj"] = { + ["I"] = { 21438 }, + }, + ["pre"] = { 8792 }, + ["start"] = { + ["U"] = { 15700 }, + }, + }, + [8854] = { + ["end"] = { + ["U"] = { 15700 }, + }, + ["event"] = 164, + ["lvl"] = 49, + ["min"] = 40, + ["obj"] = { + ["I"] = { 21438 }, + }, + ["pre"] = { 8792 }, + ["start"] = { + ["U"] = { 15700 }, + }, + }, + [8855] = { + ["end"] = { + ["U"] = { 15700 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 21438 }, + }, + ["pre"] = { 8792 }, + ["start"] = { + ["U"] = { 15700 }, + }, + }, + [8856] = "_", + [8857] = { + ["end"] = { + ["U"] = { 7406 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 51, + ["start"] = { + ["U"] = { 15798 }, + }, + }, + [8858] = { + ["end"] = { + ["U"] = { 14625 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 51, + ["start"] = { + ["U"] = { 15799 }, + }, + }, + [8859] = { + ["end"] = { + ["U"] = { 11034 }, + }, + ["event"] = 164, + ["lvl"] = 60, + ["min"] = 51, + ["start"] = { + ["U"] = { 15797 }, + }, + }, + [8860] = { + ["end"] = { + ["U"] = { 6740 }, + }, + ["event"] = 34, + ["lvl"] = 60, + ["min"] = 1, + ["race"] = 589, + ["start"] = { + ["U"] = { 15732 }, + }, + }, + [8861] = { + ["end"] = { + ["U"] = { 6746 }, + }, + ["event"] = 34, + ["lvl"] = 60, + ["min"] = 1, + ["race"] = 434, + ["start"] = { + ["U"] = { 15732 }, + }, + }, + [8869] = "_", + [8870] = { + ["close"] = { 8870, 8871, 8872, 8873, 8874, 8875 }, + ["end"] = { + ["U"] = { 15895 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["race"] = 589, + ["start"] = { + ["U"] = { 15892 }, + }, + }, + [8871] = { + ["close"] = { 8870, 8871, 8872, 8873, 8874, 8875 }, + ["end"] = { + ["U"] = { 15895 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["race"] = 589, + ["start"] = { + ["U"] = { 15892 }, + }, + }, + [8872] = { + ["close"] = { 8870, 8871, 8872, 8873, 8874, 8875 }, + ["end"] = { + ["U"] = { 15895 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["race"] = 589, + ["start"] = { + ["U"] = { 15892 }, + }, + }, + [8873] = { + ["close"] = { 8870, 8871, 8872, 8873, 8874, 8875 }, + ["end"] = { + ["U"] = { 15895 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["race"] = 434, + ["start"] = { + ["U"] = { 15891 }, + }, + }, + [8874] = { + ["close"] = { 8870, 8871, 8872, 8873, 8874, 8875 }, + ["end"] = { + ["U"] = { 15895 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["race"] = 434, + ["start"] = { + ["U"] = { 15891 }, + }, + }, + [8875] = { + ["close"] = { 8870, 8871, 8872, 8873, 8874, 8875 }, + ["end"] = { + ["U"] = { 15895 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 1, + ["race"] = 434, + ["start"] = { + ["U"] = { 15891 }, + }, + }, + [8897] = { + ["end"] = { + ["U"] = { 16002 }, + }, + ["event"] = 8, + ["lvl"] = 60, + ["min"] = 1, + ["race"] = 589, + ["start"] = { + ["U"] = { 16005 }, + }, + }, + [8898] = { + ["end"] = { + ["U"] = { 16002 }, + }, + ["event"] = 8, + ["lvl"] = 60, + ["min"] = 1, + ["race"] = 589, + ["start"] = { + ["U"] = { 16009 }, + }, + }, + [8899] = { + ["end"] = { + ["U"] = { 16002 }, + }, + ["event"] = 8, + ["lvl"] = 60, + ["min"] = 1, + ["race"] = 589, + ["start"] = { + ["U"] = { 16001 }, + }, + }, + [8900] = { + ["end"] = { + ["U"] = { 16004 }, + }, + ["event"] = 8, + ["lvl"] = 60, + ["min"] = 1, + ["race"] = 434, + ["start"] = { + ["U"] = { 16007 }, + }, + }, + [8901] = { + ["end"] = { + ["U"] = { 16004 }, + }, + ["event"] = 8, + ["lvl"] = 60, + ["min"] = 1, + ["race"] = 434, + ["start"] = { + ["U"] = { 16008 }, + }, + }, + [8902] = { + ["end"] = { + ["U"] = { 16004 }, + }, + ["event"] = 8, + ["lvl"] = 60, + ["min"] = 1, + ["race"] = 434, + ["start"] = { + ["U"] = { 16003 }, + }, + }, + [8903] = { + ["end"] = { + ["U"] = { 16105 }, + }, + ["event"] = 8, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 22143 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 16105 }, + }, + }, + [8904] = { + ["end"] = { + ["U"] = { 16108 }, + }, + ["event"] = 8, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 22145 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 16108 }, + }, + }, + [8905] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 16013 }, + }, + ["event"] = 160, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16714, 21928 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 16013 }, + }, + }, + [8906] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 16013 }, + }, + ["event"] = 160, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16681, 21928 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 16013 }, + }, + }, + [8907] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 16013 }, + }, + ["event"] = 160, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16683, 21928 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 16013 }, + }, + }, + [8908] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 16013 }, + }, + ["event"] = 160, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16722, 21928 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 16013 }, + }, + }, + [8909] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 16013 }, + }, + ["event"] = 160, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16697, 21928 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 16013 }, + }, + }, + [8910] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 16013 }, + }, + ["event"] = 160, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16710, 21928 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 16013 }, + }, + }, + [8911] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 16013 }, + }, + ["event"] = 160, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16703, 21928 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 16013 }, + }, + }, + [8912] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 16013 }, + }, + ["event"] = 160, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16735, 21928 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 16013 }, + }, + }, + [8913] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 16012 }, + }, + ["event"] = 160, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16714, 22381 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 16012 }, + }, + }, + [8914] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 16012 }, + }, + ["event"] = 160, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16681, 22381 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 16012 }, + }, + }, + [8915] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 16012 }, + }, + ["event"] = 160, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16683, 22381 }, + }, + ["start"] = { + ["U"] = { 16012 }, + }, + }, + [8916] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 16012 }, + }, + ["event"] = 160, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16697, 22381 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 16012 }, + }, + }, + [8917] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 16012 }, + }, + ["event"] = 160, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16710, 22381 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 16012 }, + }, + }, + [8918] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 16012 }, + }, + ["event"] = 160, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16671, 22381 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 16012 }, + }, + }, + [8919] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 16012 }, + }, + ["event"] = 160, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16703, 22381 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 16012 }, + }, + }, + [8920] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 16012 }, + }, + ["event"] = 160, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16735, 22381 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 16012 }, + }, + }, + [8922] = { + ["end"] = { + ["U"] = { 16014 }, + }, + ["event"] = 160, + ["lvl"] = 60, + ["min"] = 58, + ["race"] = 589, + ["start"] = { + ["U"] = { 16013 }, + }, + }, + [8923] = { + ["end"] = { + ["U"] = { 16014 }, + }, + ["event"] = 160, + ["lvl"] = 60, + ["min"] = 58, + ["race"] = 434, + ["start"] = { + ["U"] = { 16012 }, + }, + }, + [8926] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 16013 }, + }, + ["event"] = 160, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16716, 16717 }, + }, + ["pre"] = { 8977 }, + ["start"] = { + ["U"] = { 16013 }, + }, + }, + [8927] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 16012 }, + }, + ["event"] = 160, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16716, 16717 }, + }, + ["pre"] = { 8978 }, + ["start"] = { + ["U"] = { 16012 }, + }, + }, + [8929] = { + ["end"] = { + ["U"] = { 16016 }, + }, + ["event"] = 160, + ["lvl"] = 60, + ["min"] = 58, + ["pre"] = { 8926, 8931, 8932, 8933, 8934, 8935, 8936, 8937 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 16013 }, + }, + }, + [8930] = { + ["end"] = { + ["U"] = { 16016 }, + }, + ["event"] = 160, + ["lvl"] = 60, + ["min"] = 58, + ["pre"] = { 8927, 8938, 8939, 8940, 8941, 8942, 8943, 8944 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 16012 }, + }, + }, + [8931] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 16013 }, + }, + ["event"] = 160, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16676, 16680 }, + }, + ["pre"] = { 8977 }, + ["start"] = { + ["U"] = { 16013 }, + }, + }, + [8932] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 16013 }, + }, + ["event"] = 160, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16684, 16685 }, + }, + ["pre"] = { 8977 }, + ["start"] = { + ["U"] = { 16013 }, + }, + }, + [8933] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 16013 }, + }, + ["event"] = 160, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16723, 16724 }, + }, + ["pre"] = { 8977 }, + ["start"] = { + ["U"] = { 16013 }, + }, + }, + [8934] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 16013 }, + }, + ["event"] = 160, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16692, 16696 }, + }, + ["pre"] = { 8977 }, + ["start"] = { + ["U"] = { 16013 }, + }, + }, + [8935] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 16013 }, + }, + ["event"] = 160, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16712, 16713 }, + }, + ["pre"] = { 8977 }, + ["start"] = { + ["U"] = { 16013 }, + }, + }, + [8936] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 16013 }, + }, + ["event"] = 160, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16702, 16705 }, + }, + ["pre"] = { 8977 }, + ["start"] = { + ["U"] = { 16013 }, + }, + }, + [8937] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 16013 }, + }, + ["event"] = 160, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16736, 16737 }, + }, + ["pre"] = { 8977 }, + ["start"] = { + ["U"] = { 16013 }, + }, + }, + [8938] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 16012 }, + }, + ["event"] = 160, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16676, 16680 }, + }, + ["pre"] = { 8978 }, + ["start"] = { + ["U"] = { 16012 }, + }, + }, + [8939] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 16012 }, + }, + ["event"] = 160, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16684, 16685 }, + }, + ["pre"] = { 8978 }, + ["start"] = { + ["U"] = { 16012 }, + }, + }, + [8940] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 16012 }, + }, + ["event"] = 160, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16692, 16696 }, + }, + ["pre"] = { 8978 }, + ["start"] = { + ["U"] = { 16012 }, + }, + }, + [8941] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 16012 }, + }, + ["event"] = 160, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16712, 16713 }, + }, + ["pre"] = { 8978 }, + ["start"] = { + ["U"] = { 16012 }, + }, + }, + [8942] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 16012 }, + }, + ["event"] = 160, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16672, 16673 }, + }, + ["pre"] = { 8978 }, + ["start"] = { + ["U"] = { 16012 }, + }, + }, + [8943] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 16012 }, + }, + ["event"] = 160, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16702, 16705 }, + }, + ["pre"] = { 8978 }, + ["start"] = { + ["U"] = { 16012 }, + }, + }, + [8944] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 16012 }, + }, + ["event"] = 160, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16736, 16737 }, + }, + ["pre"] = { 8978 }, + ["start"] = { + ["U"] = { 16012 }, + }, + }, + [8948] = { + ["end"] = { + ["U"] = { 16032 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["pre"] = { 8947 }, + ["start"] = { + ["U"] = { 16016 }, + }, + }, + [8949] = { + ["end"] = { + ["U"] = { 16032 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 21982 }, + }, + ["pre"] = { 8948 }, + ["start"] = { + ["U"] = { 16032 }, + }, + }, + [8951] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 16013 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16715, 16718, 16719 }, + }, + ["pre"] = { 9015 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 16016 }, + }, + }, + [8952] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 16013 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16675, 16678, 16679 }, + }, + ["pre"] = { 9015 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 16016 }, + }, + }, + [8953] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 16013 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16682, 16687, 16689 }, + }, + ["pre"] = { 9015 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 16016 }, + }, + }, + [8954] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 16013 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16725, 16728, 16729 }, + }, + ["pre"] = { 9015 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 16016 }, + }, + }, + [8955] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 16013 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16691, 16694, 16695 }, + }, + ["pre"] = { 9015 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 16016 }, + }, + }, + [8956] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 16013 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16708, 16709, 16711 }, + }, + ["pre"] = { 9015 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 16016 }, + }, + }, + [8957] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 16012 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16668, 16669, 16670 }, + }, + ["pre"] = { 9015 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 16016 }, + }, + }, + [8958] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 16013 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16699, 16701, 16704 }, + }, + ["pre"] = { 9015 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 16016 }, + }, + }, + [8959] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 16013 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16732, 16733, 16734 }, + }, + ["pre"] = { 9015 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 16016 }, + }, + }, + [8960] = { + ["end"] = { + ["U"] = { 16033 }, + }, + ["event"] = 160, + ["lvl"] = 60, + ["min"] = 58, + ["pre"] = { 8951, 8952, 8953, 8954, 8955, 8956, 8958, 8959 }, + ["start"] = { + ["U"] = { 16013 }, + }, + }, + [8962] = { + ["class"] = 129, + ["close"] = { 8962, 8963, 8964, 8965 }, + ["end"] = { + ["U"] = { 16033 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 22226 }, + }, + ["pre"] = { 8961 }, + ["start"] = { + ["U"] = { 16033 }, + }, + }, + [8964] = { + ["class"] = 12, + ["close"] = { 8962, 8963, 8964, 8965 }, + ["end"] = { + ["U"] = { 16033 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 22228 }, + }, + ["pre"] = { 8961 }, + ["start"] = { + ["U"] = { 16033 }, + }, + }, + [8965] = { + ["class"] = 82, + ["close"] = { 8962, 8963, 8964, 8965 }, + ["end"] = { + ["U"] = { 16033 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 22229 }, + }, + ["pre"] = { 8961 }, + ["start"] = { + ["U"] = { 16033 }, + }, + }, + [8966] = { + ["class"] = 129, + ["end"] = { + ["U"] = { 16033 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 21984 }, + ["IR"] = { 22049 }, + ["U"] = { 16080 }, + }, + ["pre"] = { 8962 }, + ["start"] = { + ["U"] = { 16033 }, + }, + }, + [8967] = { + ["class"] = 1280, + ["end"] = { + ["U"] = { 16033 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 21984 }, + ["IR"] = { 22050 }, + ["U"] = { 16097 }, + }, + ["pre"] = { 8963 }, + ["start"] = { + ["U"] = { 16033 }, + }, + }, + [8968] = { + ["class"] = 12, + ["end"] = { + ["U"] = { 16033 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 21984 }, + ["IR"] = { 22051 }, + ["U"] = { 16101, 16102 }, + }, + ["pre"] = { 8964 }, + ["start"] = { + ["U"] = { 16033 }, + }, + }, + [8969] = { + ["class"] = 82, + ["end"] = { + ["U"] = { 16033 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 21984 }, + ["IR"] = { 22052 }, + ["U"] = { 16118 }, + }, + ["pre"] = { 8965 }, + ["start"] = { + ["U"] = { 16033 }, + }, + }, + [8971] = "_", + [8972] = "_", + [8973] = "_", + [8974] = "_", + [8975] = "_", + [8976] = "_", + [8977] = { + ["end"] = { + ["U"] = { 16013 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["pre"] = { 8928 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 16014 }, + }, + }, + [8978] = { + ["end"] = { + ["U"] = { 16012 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["pre"] = { 8928 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 16014 }, + }, + }, + [8979] = { + ["end"] = { + ["U"] = { 5204 }, + }, + ["event"] = 8, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21829, 21833 }, + }, + ["pre"] = { 8904 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 16108 }, + }, + }, + [8980] = { + ["end"] = { + ["U"] = { 16108 }, + }, + ["event"] = 8, + ["lvl"] = 60, + ["min"] = 1, + ["pre"] = { 8979 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5204 }, + }, + }, + [8981] = { + ["end"] = { + ["U"] = { 16075 }, + }, + ["event"] = 110, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 22263 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 16075 }, + }, + }, + [8982] = { + ["end"] = { + ["U"] = { 6741 }, + }, + ["event"] = 8, + ["lvl"] = 60, + ["min"] = 1, + ["pre"] = { 8980 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 16108 }, + }, + }, + [8983] = { + ["end"] = { + ["U"] = { 16109 }, + }, + ["event"] = 8, + ["lvl"] = 60, + ["min"] = 1, + ["pre"] = { 8982 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 6741 }, + }, + }, + [8984] = { + ["close"] = { 8984, 9028 }, + ["end"] = { + ["U"] = { 16107 }, + }, + ["event"] = 8, + ["lvl"] = 60, + ["min"] = 1, + ["pre"] = { 8983 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 16109 }, + }, + }, + [8985] = { + ["class"] = 9, + ["end"] = { + ["U"] = { 16033 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 22227 }, + }, + ["pre"] = { 8970 }, + ["start"] = { + ["U"] = { 16033 }, + }, + }, + [8988] = { + ["class"] = 260, + ["end"] = { + ["U"] = { 16033 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 22229 }, + }, + ["pre"] = { 8970 }, + ["start"] = { + ["U"] = { 16033 }, + }, + }, + [8989] = { + ["class"] = 1090, + ["end"] = { + ["U"] = { 16033 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 22046, 22048 }, + ["IR"] = { 22048, 22049 }, + ["U"] = { 16080 }, + }, + ["pre"] = { 8986 }, + ["start"] = { + ["U"] = { 16033 }, + }, + }, + [8990] = { + ["class"] = 9, + ["end"] = { + ["U"] = { 16033 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 22046, 22048 }, + ["IR"] = { 22048, 22050 }, + ["U"] = { 16097 }, + }, + ["pre"] = { 8985 }, + ["start"] = { + ["U"] = { 16033 }, + }, + }, + [8991] = { + ["class"] = 144, + ["end"] = { + ["U"] = { 16033 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 22046, 22048 }, + ["IR"] = { 22048, 22051 }, + ["U"] = { 16101, 16102 }, + }, + ["pre"] = { 8987 }, + ["start"] = { + ["U"] = { 16033 }, + }, + }, + [8992] = { + ["class"] = 260, + ["end"] = { + ["U"] = { 16033 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 22046, 22048 }, + ["IR"] = { 22048, 22052 }, + ["U"] = { 16118 }, + }, + ["pre"] = { 8988 }, + ["start"] = { + ["U"] = { 16033 }, + }, + }, + [8993] = { + ["end"] = { + ["U"] = { 16075 }, + }, + ["event"] = 110, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 22262 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 16075 }, + }, + }, + [8997] = { + ["end"] = { + ["U"] = { 16013 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["pre"] = { 8996 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 16033 }, + }, + }, + [8998] = { + ["end"] = { + ["U"] = { 16012 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["pre"] = { 8996 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 16033 }, + }, + }, + [8999] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 16013 }, + }, + ["event"] = 160, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16706, 16720 }, + }, + ["pre"] = { 8997 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 16013 }, + }, + }, + [9000] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 16013 }, + }, + ["event"] = 160, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16674, 16677 }, + }, + ["pre"] = { 8997 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 16013 }, + }, + }, + [9001] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 16013 }, + }, + ["event"] = 160, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16686, 16688 }, + }, + ["pre"] = { 8997 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 16013 }, + }, + }, + [9002] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 16013 }, + }, + ["event"] = 160, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16726, 16727 }, + }, + ["pre"] = { 8997 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 16013 }, + }, + }, + [9003] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 16013 }, + }, + ["event"] = 160, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16690, 16693 }, + }, + ["pre"] = { 8997 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 16013 }, + }, + }, + [9004] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 16013 }, + }, + ["event"] = 160, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16707, 16721 }, + }, + ["pre"] = { 8997 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 16013 }, + }, + }, + [9005] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 16013 }, + }, + ["event"] = 160, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16698, 16700 }, + }, + ["pre"] = { 8997 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 16013 }, + }, + }, + [9006] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 16013 }, + }, + ["event"] = 160, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16730, 16731 }, + }, + ["pre"] = { 8997 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 16013 }, + }, + }, + [9007] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 16012 }, + }, + ["event"] = 160, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16706, 16720 }, + }, + ["pre"] = { 8998 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 16012 }, + }, + }, + [9008] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 16012 }, + }, + ["event"] = 160, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16674, 16677 }, + }, + ["pre"] = { 8998 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 16012 }, + }, + }, + [9009] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 16012 }, + }, + ["event"] = 160, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16690, 16693 }, + }, + ["pre"] = { 8998 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 16012 }, + }, + }, + [9010] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 16012 }, + }, + ["event"] = 160, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16707, 16721 }, + }, + ["pre"] = { 8998 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 16012 }, + }, + }, + [9011] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 16012 }, + }, + ["event"] = 160, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16666, 16667 }, + }, + ["pre"] = { 8998 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 16012 }, + }, + }, + [9012] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 16012 }, + }, + ["event"] = 160, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16698, 16700 }, + }, + ["pre"] = { 8998 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 16012 }, + }, + }, + [9013] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 16012 }, + }, + ["event"] = 160, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16730, 16731 }, + }, + ["pre"] = { 8998 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 16012 }, + }, + }, + [9014] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 16012 }, + }, + ["event"] = 160, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16686, 16688 }, + }, + ["pre"] = { 8998 }, + ["start"] = { + ["U"] = { 16012 }, + }, + }, + [9016] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 16012 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16715, 16718, 16719 }, + }, + ["pre"] = { 9015 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 16016 }, + }, + }, + [9017] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 16012 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16675, 16678, 16679 }, + }, + ["pre"] = { 9015 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 16016 }, + }, + }, + [9018] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 16012 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16682, 16687, 16689 }, + }, + ["pre"] = { 9015 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 16016 }, + }, + }, + [9019] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 16012 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16691, 16694, 16695 }, + }, + ["pre"] = { 9015 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 16016 }, + }, + }, + [9020] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 16012 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16708, 16709, 16711 }, + }, + ["pre"] = { 9015 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 16016 }, + }, + }, + [9021] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 16012 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16699, 16701, 16704 }, + }, + ["pre"] = { 9015 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 16016 }, + }, + }, + [9022] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 16012 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 16732, 16733, 16734 }, + }, + ["pre"] = { 9015 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 16016 }, + }, + }, + [9024] = { + ["end"] = { + ["U"] = { 279 }, + }, + ["event"] = 8, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 21829, 21833 }, + }, + ["pre"] = { 8903 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 16105 }, + }, + }, + [9025] = { + ["end"] = { + ["U"] = { 16105 }, + }, + ["event"] = 8, + ["lvl"] = 60, + ["min"] = 1, + ["pre"] = { 9024 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 279 }, + }, + }, + [9026] = { + ["end"] = { + ["U"] = { 6740 }, + }, + ["event"] = 8, + ["lvl"] = 60, + ["min"] = 1, + ["pre"] = { 9025 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 16105 }, + }, + }, + [9027] = { + ["end"] = { + ["U"] = { 16106 }, + }, + ["event"] = 8, + ["lvl"] = 60, + ["min"] = 1, + ["pre"] = { 9026 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6740 }, + }, + }, + [9028] = { + ["close"] = { 8984, 9028 }, + ["end"] = { + ["U"] = { 16107 }, + }, + ["event"] = 8, + ["lvl"] = 60, + ["min"] = 1, + ["pre"] = { 9027 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 16106 }, + }, + }, + [9030] = "_", + [9032] = { + ["end"] = { + ["U"] = { 16033 }, + }, + ["event"] = 160, + ["lvl"] = 60, + ["min"] = 58, + ["pre"] = { 8957, 9016, 9017, 9018, 9019, 9020, 9021, 9022 }, + ["start"] = { + ["U"] = { 16012 }, + }, + }, + [9065] = "_", + [9094] = { + ["end"] = { + ["U"] = { 16786 }, + }, + ["event"] = 99, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 22484 }, + }, + ["pre"] = { 9153 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 16786 }, + }, + }, + [9208] = { + ["end"] = { + ["U"] = { 15042 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 18331 }, + }, + ["start"] = { + ["U"] = { 15042 }, + }, + }, + [9209] = { + ["end"] = { + ["U"] = { 15042 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 18329 }, + }, + ["start"] = { + ["U"] = { 15042 }, + }, + }, + [9210] = { + ["end"] = { + ["U"] = { 15042 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 18330 }, + }, + ["start"] = { + ["U"] = { 15042 }, + }, + }, + [9249] = "_", + [9260] = { + ["end"] = { + ["U"] = { 16478 }, + }, + ["event"] = 17, + ["lvl"] = 6, + ["min"] = 1, + ["obj"] = { + ["A"] = { 4092, 4094, 4095, 4096 }, + ["I"] = { 22892 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 16478 }, + }, + }, + [9261] = { + ["end"] = { + ["U"] = { 16484 }, + }, + ["event"] = 17, + ["lvl"] = 10, + ["min"] = 1, + ["obj"] = { + ["A"] = { 4098, 4099 }, + ["I"] = { 22892 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 16484 }, + }, + }, + [9262] = { + ["end"] = { + ["U"] = { 16495 }, + }, + ["event"] = 17, + ["lvl"] = 10, + ["min"] = 1, + ["obj"] = { + ["A"] = { 4104, 4105 }, + ["I"] = { 22892 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 16495 }, + }, + }, + [9263] = { + ["end"] = { + ["U"] = { 16493 }, + }, + ["event"] = 17, + ["lvl"] = 10, + ["min"] = 1, + ["obj"] = { + ["A"] = { 4101 }, + ["I"] = { 22892 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 16493 }, + }, + }, + [9264] = { + ["end"] = { + ["U"] = { 16490 }, + }, + ["event"] = 17, + ["lvl"] = 10, + ["min"] = 1, + ["obj"] = { + ["A"] = { 4103 }, + ["I"] = { 22892 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 16490 }, + }, + }, + [9265] = { + ["end"] = { + ["U"] = { 16494 }, + }, + ["event"] = 17, + ["lvl"] = 8, + ["min"] = 1, + ["obj"] = { + ["A"] = { 4100 }, + ["I"] = { 22892 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 16494 }, + }, + }, + [9273] = "_", + [9292] = { + ["end"] = { + ["U"] = { 16478 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["race"] = 589, + ["start"] = { + ["U"] = { 16431 }, + }, + }, + [9296] = "_", + [9297] = "_", + [9298] = "_", + [9310] = { + ["end"] = { + ["U"] = { 16494 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["race"] = 434, + ["start"] = { + ["U"] = { 16531 }, + }, + }, + [9317] = { + ["end"] = { + ["U"] = { 16786 }, + }, + ["event"] = 99, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 22484 }, + }, + ["pre"] = { 9153 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 16786 }, + }, + }, + [9318] = { + ["end"] = { + ["U"] = { 16786 }, + }, + ["event"] = 99, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 22484 }, + }, + ["pre"] = { 9153 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 16786 }, + }, + }, + [9320] = { + ["end"] = { + ["U"] = { 16787 }, + }, + ["event"] = 99, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 22484 }, + }, + ["pre"] = { 9153 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 16787 }, + }, + }, + [9321] = { + ["end"] = { + ["U"] = { 16786 }, + }, + ["event"] = 99, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 22484 }, + }, + ["pre"] = { 9153 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 16786 }, + }, + }, + [9324] = { + ["end"] = { + ["U"] = { 16817 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["race"] = 589, + ["start"] = { + ["I"] = { 23179 }, + }, + }, + [9325] = { + ["end"] = { + ["U"] = { 16817 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["race"] = 589, + ["start"] = { + ["I"] = { 23180 }, + }, + }, + [9326] = { + ["end"] = { + ["U"] = { 16817 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["race"] = 589, + ["start"] = { + ["I"] = { 23181 }, + }, + }, + [9330] = { + ["end"] = { + ["U"] = { 16818 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["race"] = 434, + ["start"] = { + ["I"] = { 23182 }, + }, + }, + [9331] = { + ["end"] = { + ["U"] = { 16818 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["race"] = 434, + ["start"] = { + ["I"] = { 23183 }, + }, + }, + [9332] = { + ["end"] = { + ["U"] = { 16818 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["race"] = 434, + ["start"] = { + ["I"] = { 23184 }, + }, + }, + [9333] = { + ["end"] = { + ["U"] = { 16787 }, + }, + ["event"] = 99, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 22484 }, + }, + ["pre"] = { 9153 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 16787 }, + }, + }, + [9334] = { + ["end"] = { + ["U"] = { 16787 }, + }, + ["event"] = 99, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 22484 }, + }, + ["pre"] = { 9153 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 16787 }, + }, + }, + [9335] = { + ["end"] = { + ["U"] = { 16787 }, + }, + ["event"] = 99, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 22484 }, + }, + ["pre"] = { 9153 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 16787 }, + }, + }, + [9336] = { + ["end"] = { + ["U"] = { 16787 }, + }, + ["event"] = 99, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 22484 }, + }, + ["pre"] = { 9153 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 16787 }, + }, + }, + [9337] = { + ["end"] = { + ["U"] = { 16786 }, + }, + ["event"] = 99, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 22484 }, + }, + ["pre"] = { 9153 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 16786 }, + }, + }, + [9339] = { + ["end"] = { + ["U"] = { 16817, 16818 }, + }, + ["event"] = 1, + ["lvl"] = 60, + ["min"] = 50, + ["pre"] = { 9324, 9325, 9326 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 16817, 16818 }, + }, + }, + [9341] = { + ["end"] = { + ["U"] = { 16786 }, + }, + ["event"] = 99, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 22484 }, + }, + ["pre"] = { 9153 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 16786 }, + }, + }, + [9343] = { + ["end"] = { + ["U"] = { 16787 }, + }, + ["event"] = 99, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 22484 }, + }, + ["pre"] = { 9153 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 16787 }, + }, + }, + [9353] = "_", + [9365] = { + ["end"] = { + ["U"] = { 16817, 16818 }, + }, + ["event"] = 1, + ["lvl"] = 60, + ["min"] = 50, + ["pre"] = { 9330, 9331, 9332 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 16817, 16818 }, + }, + }, + [9367] = { + ["end"] = { + ["U"] = { 16817 }, + }, + ["event"] = 1, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["O"] = { 181332, 181333, 181334 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 16817 }, + }, + }, + [9368] = { + ["end"] = { + ["U"] = { 16818 }, + }, + ["event"] = 1, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["O"] = { 181335, 181336, 181337 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 16818 }, + }, + }, + [9378] = { + ["lvl"] = 60, + ["min"] = 60, + }, + [9411] = "_", + [9412] = "_", + [9413] = "_", + [9414] = "_", + [9415] = { + ["end"] = { + ["U"] = { 17080 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["race"] = 589, + ["start"] = { + ["U"] = { 17082 }, + }, + }, + [9416] = { + ["end"] = { + ["U"] = { 17079 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["race"] = 434, + ["start"] = { + ["U"] = { 17081 }, + }, + }, + [9419] = { + ["end"] = { + ["U"] = { 17080 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["U"] = { 17090 }, + }, + ["pre"] = { 9415 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 17080 }, + }, + }, + [9458] = "_", + [9459] = "_", + [9477] = "_", + [9478] = "_", + [9479] = "_", + [9480] = "_", + [9481] = "_", + [9482] = "_", + [9556] = "_", + [9664] = { + ["end"] = { + ["U"] = { 17069 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["U"] = { 17689, 17690, 17696, 17698 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 17069 }, + }, + }, + [9665] = { + ["end"] = { + ["U"] = { 17072 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["U"] = { 17689, 17690, 17696, 17698 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 17072 }, + }, + }, + [20000] = { + ["end"] = { + ["U"] = { 11034 }, + }, + ["lvl"] = 60, + ["min"] = 60, + }, + [20001] = { + ["end"] = { + ["U"] = { 1855 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 20000 }, + ["start"] = { + ["U"] = { 11034 }, + }, + }, + [20002] = { + ["end"] = { + ["U"] = { 1855 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 82001 }, + ["U"] = { 2000092 }, + }, + ["pre"] = { 20001 }, + ["start"] = { + ["U"] = { 1855 }, + }, + }, + [20003] = { + ["end"] = { + ["U"] = { 2000090 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 20002 }, + ["start"] = { + ["U"] = { 1855 }, + }, + }, + [20004] = { + ["end"] = { + ["U"] = { 2000091 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 20003 }, + ["start"] = { + ["U"] = { 2000091 }, + }, + }, + [20005] = { + ["end"] = { + ["U"] = { 2000091 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 20004 }, + ["start"] = { + ["U"] = { 2000091 }, + }, + }, + [20006] = { + }, + [39000] = { + ["end"] = { + ["U"] = { 40049 }, + }, + ["lvl"] = 60, + ["min"] = 30, + ["start"] = { + ["U"] = { 40049 }, + }, + }, + [39001] = { + ["end"] = { + ["U"] = { 1255 }, + }, + ["lvl"] = 11, + ["min"] = 6, + ["obj"] = { + ["U"] = { 20120 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1255 }, + }, + }, + [39977] = { + ["end"] = { + ["U"] = { 60683 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 61107, 61108, 61109, 61675 }, + }, + ["start"] = { + ["U"] = { 60683 }, + }, + }, + [39978] = { + ["end"] = { + ["U"] = { 60679 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["U"] = { 60680, 60681, 60682 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60679 }, + }, + }, + [39979] = { + ["end"] = { + ["U"] = { 60679 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["U"] = { 60680, 60681, 60682 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60679 }, + }, + }, + [39982] = { + ["end"] = { + ["U"] = { 52129 }, + }, + ["lvl"] = 30, + ["min"] = 30, + ["race"] = 434, + ["start"] = { + ["U"] = { 51237 }, + }, + }, + [39983] = { + ["end"] = { + ["U"] = { 52129 }, + }, + ["lvl"] = 30, + ["min"] = 30, + ["obj"] = { + ["I"] = { 40002 }, + }, + ["pre"] = { 39982 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 52129 }, + }, + }, + [39984] = { + ["end"] = { + ["U"] = { 51252 }, + }, + ["lvl"] = 30, + ["min"] = 30, + ["pre"] = { 39983 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 51243 }, + }, + }, + [39986] = { + ["end"] = { + ["U"] = { 1439 }, + }, + ["lvl"] = 30, + ["min"] = 30, + ["race"] = 589, + ["start"] = { + ["U"] = { 52122 }, + }, + }, + [39987] = { + ["end"] = { + ["U"] = { 4960 }, + }, + ["lvl"] = 30, + ["min"] = 30, + ["obj"] = { + ["I"] = { 20709 }, + }, + ["pre"] = { 39986 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1439 }, + }, + }, + [39988] = { + ["end"] = { + ["U"] = { 1748 }, + }, + ["lvl"] = 30, + ["min"] = 30, + ["pre"] = { 39987 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4960 }, + }, + }, + [39989] = { + ["end"] = { + ["U"] = { 52122 }, + }, + ["lvl"] = 30, + ["min"] = 30, + ["pre"] = { 39988 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1748 }, + }, + }, + [39991] = { + ["end"] = { + ["U"] = { 2597 }, + }, + ["lvl"] = 40, + ["min"] = 36, + ["obj"] = { + ["U"] = { 2612, 2738 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2597 }, + }, + }, + [39992] = { + ["end"] = { + ["U"] = { 2597 }, + }, + ["lvl"] = 40, + ["min"] = 36, + ["obj"] = { + ["U"] = { 2607 }, + }, + ["pre"] = { 39991 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2597 }, + }, + }, + [39993] = { + ["end"] = { + ["U"] = { 2597 }, + }, + ["lvl"] = 40, + ["min"] = 36, + ["obj"] = { + ["U"] = { 2584, 2585 }, + }, + ["pre"] = { 39992 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2597 }, + }, + }, + [39994] = { + ["end"] = { + ["U"] = { 3501 }, + }, + ["lvl"] = 18, + ["min"] = 15, + ["race"] = 434, + ["start"] = { + ["U"] = { 3479 }, + }, + }, + [39995] = { + ["end"] = { + ["U"] = { 3479 }, + }, + ["lvl"] = 18, + ["min"] = 15, + ["obj"] = { + ["I"] = { 40062 }, + }, + ["pre"] = { 39994 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3501 }, + }, + }, + [39996] = { + ["end"] = { + ["U"] = { 3479 }, + }, + ["lvl"] = 18, + ["min"] = 15, + ["obj"] = { + ["I"] = { 40063 }, + }, + ["pre"] = { 39995 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3479 }, + }, + }, + [39997] = { + ["end"] = { + ["U"] = { 5957 }, + }, + ["lvl"] = 18, + ["min"] = 15, + ["pre"] = { 39996 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3479 }, + }, + }, + [39998] = { + ["end"] = { + ["U"] = { 3479 }, + }, + ["lvl"] = 18, + ["min"] = 15, + ["obj"] = { + ["I"] = { 40064 }, + }, + ["pre"] = { 39997 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5957 }, + }, + }, + [39999] = { + ["end"] = { + ["U"] = { 3479 }, + }, + ["lvl"] = 18, + ["min"] = 15, + ["obj"] = { + ["I"] = { 20558 }, + }, + ["pre"] = { 39998 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3479 }, + }, + }, + [40001] = { + ["end"] = { + ["U"] = { 3185 }, + }, + ["lvl"] = 10, + ["min"] = 8, + ["race"] = 434, + ["start"] = { + ["U"] = { 60300 }, + }, + }, + [40002] = { + ["end"] = { + ["U"] = { 60300 }, + }, + ["lvl"] = 10, + ["min"] = 8, + ["obj"] = { + ["I"] = { 60000 }, + }, + ["pre"] = { 40001 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3185 }, + }, + }, + [40003] = { + ["end"] = { + ["U"] = { 60300 }, + }, + ["lvl"] = 10, + ["min"] = 8, + ["obj"] = { + ["U"] = { 60301 }, + }, + ["pre"] = { 40002 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60300 }, + }, + }, + [40004] = { + ["end"] = { + ["U"] = { 39999 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["U"] = { 11838, 11839 }, + }, + ["start"] = { + ["U"] = { 39999 }, + }, + }, + [40005] = { + ["end"] = { + ["U"] = { 39998 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["race"] = 434, + ["start"] = { + ["U"] = { 39998 }, + }, + }, + [40006] = { + ["end"] = { + ["U"] = { 39998 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["race"] = 589, + ["start"] = { + ["U"] = { 39998 }, + }, + }, + [40014] = { + ["end"] = { + ["U"] = { 91415 }, + }, + ["lvl"] = 36, + ["min"] = 28, + ["obj"] = { + ["I"] = { 60109 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91415 }, + }, + }, + [40015] = { + ["end"] = { + ["U"] = { 91415 }, + }, + ["lvl"] = 39, + ["min"] = 28, + ["obj"] = { + ["U"] = { 91791 }, + }, + ["pre"] = { 40014 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91415 }, + }, + }, + [40016] = { + ["end"] = { + ["U"] = { 91412 }, + }, + ["lvl"] = 34, + ["min"] = 25, + ["obj"] = { + ["I"] = { 60108 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91412 }, + }, + }, + [40017] = { + ["end"] = { + ["U"] = { 91400 }, + }, + ["lvl"] = 35, + ["min"] = 25, + ["obj"] = { + ["I"] = { 60119 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91400 }, + }, + }, + [40018] = { + ["end"] = { + ["U"] = { 91401 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["obj"] = { + ["U"] = { 91784, 91785, 91786 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91401 }, + }, + }, + [40019] = { + ["end"] = { + ["U"] = { 91402 }, + }, + ["lvl"] = 36, + ["min"] = 25, + ["obj"] = { + ["I"] = { 60120 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91402 }, + }, + }, + [40020] = { + ["end"] = { + ["U"] = { 91290 }, + }, + ["lvl"] = 36, + ["min"] = 25, + ["obj"] = { + ["I"] = { 60121 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91290 }, + }, + }, + [40021] = { + ["end"] = { + ["U"] = { 91290 }, + }, + ["lvl"] = 36, + ["min"] = 30, + ["obj"] = { + ["I"] = { 60122 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91290 }, + }, + }, + [40022] = { + ["end"] = { + ["U"] = { 91290 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["obj"] = { + ["I"] = { 60123 }, + }, + ["pre"] = { 40021 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91290 }, + }, + }, + [40023] = { + ["end"] = { + ["U"] = { 91289 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["race"] = 434, + ["start"] = { + ["U"] = { 91411 }, + }, + }, + [40024] = { + ["end"] = { + ["U"] = { 91289 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["obj"] = { + ["I"] = { 60125 }, + }, + ["pre"] = { 40023 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91289 }, + }, + }, + [40025] = { + ["end"] = { + ["U"] = { 91411 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["obj"] = { + ["I"] = { 3355, 3357, 7912 }, + }, + ["pre"] = { 40024 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91289 }, + }, + }, + [40026] = { + ["end"] = { + ["U"] = { 91289 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["obj"] = { + ["U"] = { 60313 }, + }, + ["pre"] = { 40025 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91411 }, + }, + }, + [40027] = { + ["end"] = { + ["U"] = { 91781 }, + }, + ["lvl"] = 39, + ["min"] = 30, + ["obj"] = { + ["I"] = { 60127 }, + }, + ["start"] = { + ["U"] = { 91781 }, + }, + }, + [40028] = { + ["end"] = { + ["U"] = { 91796 }, + }, + ["lvl"] = 36, + ["min"] = 30, + ["obj"] = { + ["I"] = { 60128 }, + }, + ["start"] = { + ["U"] = { 91796 }, + }, + }, + [40029] = { + ["end"] = { + ["U"] = { 1776 }, + }, + ["lvl"] = 36, + ["min"] = 30, + ["obj"] = { + ["U"] = { 759, 760 }, + }, + ["start"] = { + ["U"] = { 1776 }, + }, + }, + [40030] = { + ["end"] = { + ["U"] = { 1776 }, + }, + ["lvl"] = 36, + ["min"] = 30, + ["obj"] = { + ["I"] = { 60130 }, + }, + ["pre"] = { 40029 }, + ["start"] = { + ["U"] = { 1776 }, + }, + }, + [40031] = { + ["end"] = { + ["U"] = { 11874 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["I"] = { 60133 }, + }, + ["start"] = { + ["U"] = { 11874 }, + }, + }, + [40032] = { + ["end"] = { + ["U"] = { 91781 }, + }, + ["lvl"] = 39, + ["min"] = 30, + ["obj"] = { + ["I"] = { 60134, 60135 }, + }, + ["pre"] = { 40027 }, + ["start"] = { + ["U"] = { 91781 }, + }, + }, + [40033] = { + ["end"] = { + ["U"] = { 91782 }, + }, + ["lvl"] = 52, + ["min"] = 30, + ["pre"] = { 40032 }, + ["start"] = { + ["U"] = { 91781 }, + }, + }, + [40034] = { + ["end"] = { + ["U"] = { 91776 }, + }, + ["lvl"] = 54, + ["min"] = 45, + ["start"] = { + ["U"] = { 91779 }, + }, + }, + [40035] = { + ["end"] = { + ["U"] = { 91779 }, + }, + ["lvl"] = 54, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60136 }, + }, + ["pre"] = { 40034 }, + ["start"] = { + ["U"] = { 91779 }, + }, + }, + [40036] = { + ["end"] = { + ["U"] = { 91777 }, + }, + ["lvl"] = 54, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60137 }, + }, + ["pre"] = { 40034 }, + ["start"] = { + ["U"] = { 91777 }, + }, + }, + [40037] = { + ["end"] = { + ["U"] = { 91776 }, + }, + ["lvl"] = 56, + ["min"] = 45, + ["obj"] = { + ["U"] = { 6351, 6371 }, + }, + ["pre"] = { 40034 }, + ["start"] = { + ["U"] = { 91776 }, + }, + }, + [40038] = { + ["end"] = { + ["U"] = { 91776 }, + }, + ["lvl"] = 56, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60139 }, + }, + ["pre"] = { 40037 }, + ["start"] = { + ["U"] = { 91776 }, + }, + }, + [40039] = { + ["end"] = { + ["U"] = { 91776 }, + }, + ["lvl"] = 56, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60140 }, + }, + ["pre"] = { 40038 }, + ["start"] = { + ["U"] = { 91776 }, + }, + }, + [40040] = { + ["end"] = { + ["U"] = { 91768 }, + }, + ["lvl"] = 50, + ["min"] = 40, + ["race"] = 589, + ["start"] = { + ["U"] = { 91770 }, + }, + }, + [40041] = { + ["end"] = { + ["U"] = { 91768 }, + }, + ["lvl"] = 50, + ["min"] = 40, + ["obj"] = { + ["I"] = { 60141 }, + }, + ["pre"] = { 40040 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 91768 }, + }, + }, + [40042] = { + ["end"] = { + ["U"] = { 91350 }, + }, + ["lvl"] = 50, + ["min"] = 40, + ["pre"] = { 40041 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 91768 }, + }, + }, + [40043] = { + ["end"] = { + ["U"] = { 91768 }, + }, + ["lvl"] = 50, + ["min"] = 40, + ["pre"] = { 40042 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 91350 }, + }, + }, + [40044] = { + ["end"] = { + ["U"] = { 91768 }, + }, + ["lvl"] = 50, + ["min"] = 40, + ["obj"] = { + ["I"] = { 60144 }, + }, + ["pre"] = { 40043 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 91768 }, + }, + }, + [40045] = { + ["end"] = { + ["U"] = { 91769 }, + }, + ["lvl"] = 50, + ["min"] = 40, + ["pre"] = { 40044 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 91768 }, + }, + }, + [40046] = { + ["end"] = { + ["U"] = { 91768 }, + }, + ["lvl"] = 50, + ["min"] = 40, + ["obj"] = { + ["I"] = { 60145 }, + }, + ["pre"] = { 40045 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 91769 }, + }, + }, + [40047] = { + ["end"] = { + ["U"] = { 7944 }, + }, + ["lvl"] = 50, + ["min"] = 40, + ["pre"] = { 40046 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 91768 }, + }, + }, + [40048] = { + ["end"] = { + ["U"] = { 91768 }, + }, + ["lvl"] = 50, + ["min"] = 40, + ["pre"] = { 40047 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 7944 }, + }, + }, + [40051] = { + ["end"] = { + ["O"] = { 2010810 }, + }, + ["lvl"] = 60, + ["min"] = 5, + ["start"] = { + ["I"] = { 60149 }, + }, + }, + [40052] = { + ["end"] = { + ["O"] = { 2010811 }, + }, + ["lvl"] = 60, + ["min"] = 5, + ["pre"] = { 40051 }, + ["start"] = { + ["O"] = { 2010810 }, + }, + }, + [40053] = { + ["end"] = { + ["O"] = { 2010812 }, + }, + ["lvl"] = 60, + ["min"] = 5, + ["pre"] = { 40052 }, + ["start"] = { + ["O"] = { 2010811 }, + }, + }, + [40054] = { + ["end"] = { + ["O"] = { 2010813 }, + }, + ["lvl"] = 60, + ["min"] = 5, + ["pre"] = { 40053 }, + ["start"] = { + ["O"] = { 2010812 }, + }, + }, + [40055] = { + ["end"] = { + ["O"] = { 2010814 }, + }, + ["lvl"] = 60, + ["min"] = 5, + ["pre"] = { 40054 }, + ["start"] = { + ["O"] = { 2010813 }, + }, + }, + [40056] = { + ["end"] = { + ["U"] = { 91798 }, + }, + ["lvl"] = 60, + ["min"] = 5, + ["obj"] = { + ["I"] = { 9359, 13009 }, + }, + ["pre"] = { 40055 }, + ["start"] = { + ["O"] = { 2010814 }, + }, + }, + [40057] = { + ["end"] = { + ["U"] = { 91768 }, + }, + ["lvl"] = 54, + ["min"] = 40, + ["obj"] = { + ["I"] = { 60151 }, + }, + ["pre"] = { 40048 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 91768 }, + }, + }, + [40061] = { + ["end"] = { + ["U"] = { 91776 }, + }, + ["lvl"] = 56, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60157 }, + }, + ["pre"] = { 40039 }, + ["start"] = { + ["U"] = { 91776 }, + }, + }, + [40062] = { + ["end"] = { + ["U"] = { 12957 }, + }, + ["lvl"] = 55, + ["min"] = 40, + ["obj"] = { + ["I"] = { 60158 }, + }, + ["pre"] = { 40041 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 12957 }, + }, + }, + [40063] = { + ["end"] = { + ["U"] = { 8678 }, + }, + ["lvl"] = 53, + ["min"] = 40, + ["obj"] = { + ["I"] = { 60159 }, + }, + ["pre"] = { 40041 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 8678 }, + }, + }, + [40064] = { + ["end"] = { + ["U"] = { 8678 }, + }, + ["lvl"] = 53, + ["min"] = 40, + ["obj"] = { + ["I"] = { 60160 }, + }, + ["pre"] = { 40063 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 8678 }, + }, + }, + [40065] = { + ["end"] = { + ["U"] = { 91770 }, + }, + ["lvl"] = 54, + ["min"] = 40, + ["obj"] = { + ["I"] = { 60162 }, + }, + ["pre"] = { 40041 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 91770 }, + }, + }, + [40066] = { + ["end"] = { + ["U"] = { 91770 }, + }, + ["lvl"] = 54, + ["min"] = 40, + ["obj"] = { + ["I"] = { 4387, 10560, 12359, 15994 }, + }, + ["pre"] = { 40065 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 91770 }, + }, + }, + [40067] = { + ["end"] = { + ["U"] = { 91770 }, + }, + ["lvl"] = 54, + ["min"] = 40, + ["obj"] = { + ["I"] = { 60163 }, + }, + ["pre"] = { 40066 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 91770 }, + }, + }, + [40068] = { + ["end"] = { + ["U"] = { 91770 }, + }, + ["lvl"] = 54, + ["min"] = 40, + ["obj"] = { + ["U"] = { 60319 }, + }, + ["pre"] = { 40067 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 91770 }, + }, + }, + [40071] = { + ["end"] = { + ["U"] = { 92017 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["race"] = 589, + ["start"] = { + ["U"] = { 5476 }, + }, + }, + [40072] = { + ["end"] = { + ["U"] = { 92018 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["obj"] = { + ["I"] = { 60167 }, + }, + ["pre"] = { 40071 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 92018 }, + }, + }, + [40073] = { + ["end"] = { + ["U"] = { 92019 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["obj"] = { + ["I"] = { 3575 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 92019 }, + }, + }, + [40074] = { + ["end"] = { + ["U"] = { 3136 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["pre"] = { 40073 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 92019 }, + }, + }, + [40075] = { + ["end"] = { + ["U"] = { 92019 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["pre"] = { 40074 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3136 }, + }, + }, + [40076] = { + ["end"] = { + ["U"] = { 92023 }, + }, + ["lvl"] = 38, + ["min"] = 30, + ["obj"] = { + ["I"] = { 60170 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 92023 }, + }, + }, + [40077] = { + ["end"] = { + ["U"] = { 92022 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["obj"] = { + ["I"] = { 60171 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 92022 }, + }, + }, + [40078] = { + ["end"] = { + ["U"] = { 92012 }, + }, + ["lvl"] = 44, + ["min"] = 35, + ["obj"] = { + ["U"] = { 747, 750, 751 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 92012 }, + }, + }, + [40079] = { + ["end"] = { + ["U"] = { 92012 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["obj"] = { + ["U"] = { 861 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 92012 }, + }, + }, + [40080] = { + ["end"] = { + ["U"] = { 91713 }, + }, + ["lvl"] = 15, + ["min"] = 10, + ["race"] = 434, + ["start"] = { + ["U"] = { 6739 }, + }, + }, + [40081] = { + ["end"] = { + ["U"] = { 91752 }, + }, + ["lvl"] = 17, + ["min"] = 11, + ["obj"] = { + ["I"] = { 60375 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91752 }, + }, + }, + [40082] = { + ["end"] = { + ["U"] = { 91752 }, + }, + ["lvl"] = 20, + ["min"] = 11, + ["obj"] = { + ["I"] = { 60376, 60377 }, + }, + ["pre"] = { 40081 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91752 }, + }, + }, + [40083] = { + ["end"] = { + ["U"] = { 91729 }, + }, + ["lvl"] = 17, + ["min"] = 11, + ["obj"] = { + ["U"] = { 91761, 91762 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91729 }, + }, + }, + [40084] = { + ["end"] = { + ["U"] = { 91729 }, + }, + ["lvl"] = 20, + ["min"] = 11, + ["obj"] = { + ["I"] = { 60378 }, + }, + ["pre"] = { 40083 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91729 }, + }, + }, + [40085] = { + ["end"] = { + ["U"] = { 91729 }, + }, + ["lvl"] = 18, + ["min"] = 11, + ["obj"] = { + ["I"] = { 60381 }, + }, + ["pre"] = { 40083 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91729 }, + }, + }, + [40086] = { + ["end"] = { + ["U"] = { 91728 }, + }, + ["lvl"] = 15, + ["min"] = 10, + ["race"] = 434, + ["start"] = { + ["U"] = { 4556 }, + }, + }, + [40087] = { + ["end"] = { + ["U"] = { 91713 }, + }, + ["lvl"] = 15, + ["min"] = 14, + ["obj"] = { + ["U"] = { 91740, 91741 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91713 }, + }, + }, + [40088] = { + ["end"] = { + ["U"] = { 91713 }, + }, + ["lvl"] = 16, + ["min"] = 14, + ["obj"] = { + ["I"] = { 60172 }, + ["U"] = { 91739, 91760 }, + }, + ["pre"] = { 40087 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91713 }, + }, + }, + [40089] = { + ["end"] = { + ["U"] = { 91285 }, + }, + ["lvl"] = 33, + ["min"] = 32, + ["obj"] = { + ["I"] = { 60176 }, + }, + ["start"] = { + ["U"] = { 91285 }, + }, + }, + [40090] = { + ["end"] = { + ["U"] = { 91285 }, + }, + ["lvl"] = 34, + ["min"] = 32, + ["obj"] = { + ["I"] = { 60177, 60178 }, + }, + ["start"] = { + ["U"] = { 91285 }, + }, + }, + [40091] = { + ["end"] = { + ["U"] = { 4218 }, + }, + ["lvl"] = 37, + ["min"] = 32, + ["obj"] = { + ["U"] = { 92110 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4218 }, + }, + }, + [40092] = { + ["end"] = { + ["U"] = { 90987 }, + }, + ["lvl"] = 51, + ["min"] = 40, + ["obj"] = { + ["I"] = { 60184 }, + ["U"] = { 91857 }, + }, + ["start"] = { + ["U"] = { 90987 }, + }, + }, + [40093] = { + ["end"] = { + ["U"] = { 92003 }, + }, + ["lvl"] = 51, + ["min"] = 40, + ["obj"] = { + ["I"] = { 60185 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 92003 }, + }, + }, + [40094] = { + ["end"] = { + ["U"] = { 92005 }, + }, + ["lvl"] = 54, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60186 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 92005 }, + }, + }, + [40095] = { + ["end"] = { + ["U"] = { 92017 }, + }, + ["lvl"] = 38, + ["min"] = 30, + ["obj"] = { + ["I"] = { 60188 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 92017 }, + }, + }, + [40096] = { + ["end"] = { + ["U"] = { 91712 }, + }, + ["lvl"] = 16, + ["min"] = 15, + ["obj"] = { + ["U"] = { 91773 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91712 }, + }, + }, + [40097] = { + ["end"] = { + ["U"] = { 91712 }, + }, + ["lvl"] = 16, + ["min"] = 15, + ["obj"] = { + ["U"] = { 91772 }, + }, + ["pre"] = { 40096 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91712 }, + }, + }, + [40098] = { + ["end"] = { + ["U"] = { 91711 }, + }, + ["lvl"] = 17, + ["min"] = 15, + ["pre"] = { 40097 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91712 }, + }, + }, + [40099] = { + ["end"] = { + ["U"] = { 91711 }, + }, + ["lvl"] = 17, + ["min"] = 15, + ["obj"] = { + ["U"] = { 60323, 91980, 91981 }, + }, + ["pre"] = { 40098 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91711 }, + }, + }, + [40100] = { + ["end"] = { + ["U"] = { 60400 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["race"] = 589, + ["start"] = { + ["U"] = { 5387 }, + }, + }, + [40101] = { + ["end"] = { + ["U"] = { 60400 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 60100 }, + ["U"] = { 60401 }, + }, + ["pre"] = { 40100 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60400 }, + }, + }, + [40102] = { + ["end"] = { + ["U"] = { 5387 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["pre"] = { 40101 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60400 }, + }, + }, + [40103] = { + ["end"] = { + ["U"] = { 5387 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 60102 }, + ["U"] = { 6560 }, + }, + ["pre"] = { 40102 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5387 }, + }, + }, + [40104] = { + ["end"] = { + ["U"] = { 60403 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["pre"] = { 40103 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5387 }, + }, + }, + [40105] = { + ["end"] = { + ["U"] = { 5387 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 60103 }, + ["U"] = { 60404, 60405, 60406, 60407 }, + }, + ["pre"] = { 40104 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60403 }, + }, + }, + [40106] = { + ["end"] = { + ["O"] = { 142343 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 60102, 60103 }, + }, + ["pre"] = { 40105 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5387 }, + }, + }, + [40107] = { + ["end"] = { + ["U"] = { 5387 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 60102, 60103 }, + ["U"] = { 80935 }, + }, + ["pre"] = { 40106 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 142343 }, + }, + }, + [40108] = { + ["end"] = { + ["U"] = { 60408 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["race"] = 434, + ["start"] = { + ["U"] = { 3978 }, + }, + }, + [40109] = { + ["end"] = { + ["U"] = { 60408 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 60104 }, + ["U"] = { 60409 }, + }, + ["pre"] = { 40108 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60408 }, + }, + }, + [40110] = { + ["end"] = { + ["U"] = { 3978 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["pre"] = { 40109 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60408 }, + }, + }, + [40111] = { + ["end"] = { + ["U"] = { 3978 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 60102 }, + ["U"] = { 6560 }, + }, + ["pre"] = { 40110 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3978 }, + }, + }, + [40112] = { + ["end"] = { + ["U"] = { 60410 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["pre"] = { 40111 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3978 }, + }, + }, + [40113] = { + ["end"] = { + ["U"] = { 3978 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 60103 }, + ["U"] = { 60404, 60405, 60406, 60407 }, + }, + ["pre"] = { 40112 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60410 }, + }, + }, + [40114] = { + ["end"] = { + ["O"] = { 142343 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 60102, 60103 }, + }, + ["pre"] = { 40113 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3978 }, + }, + }, + [40115] = { + ["end"] = { + ["U"] = { 3978 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 60102, 60103 }, + ["U"] = { 80935 }, + }, + ["pre"] = { 40114 }, + ["race"] = 434, + ["start"] = { + ["O"] = { 142343 }, + }, + }, + [40120] = { + ["end"] = { + ["U"] = { 91288 }, + }, + ["lvl"] = 20, + ["min"] = 18, + ["obj"] = { + ["I"] = { 60110 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 91288 }, + }, + }, + [40121] = { + ["end"] = { + ["U"] = { 91288 }, + }, + ["lvl"] = 22, + ["min"] = 21, + ["obj"] = { + ["I"] = { 60111 }, + }, + ["pre"] = { 40120 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 91288 }, + }, + }, + [40122] = { + ["end"] = { + ["U"] = { 91350 }, + }, + ["lvl"] = 52, + ["min"] = 40, + ["race"] = 589, + ["start"] = { + ["U"] = { 2543 }, + }, + }, + [40123] = { + ["end"] = { + ["U"] = { 91350 }, + }, + ["lvl"] = 52, + ["min"] = 40, + ["obj"] = { + ["I"] = { 81324 }, + }, + ["pre"] = { 40122 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 91350 }, + }, + }, + [40124] = { + ["end"] = { + ["U"] = { 91350 }, + }, + ["lvl"] = 52, + ["min"] = 40, + ["obj"] = { + ["U"] = { 6195, 60312 }, + }, + ["pre"] = { 40123 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 91350 }, + }, + }, + [40125] = { + ["end"] = { + ["U"] = { 2543 }, + }, + ["lvl"] = 52, + ["min"] = 40, + ["pre"] = { 40124 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 91350 }, + }, + }, + [40126] = { + ["end"] = { + ["U"] = { 91350 }, + }, + ["lvl"] = 52, + ["min"] = 40, + ["pre"] = { 40125 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2543 }, + }, + }, + [40127] = { + ["end"] = { + ["U"] = { 91350 }, + }, + ["lvl"] = 52, + ["min"] = 40, + ["obj"] = { + ["U"] = { 6129, 91283 }, + }, + ["pre"] = { 40126 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 91350 }, + }, + }, + [40128] = { + ["end"] = { + ["U"] = { 60441 }, + }, + ["lvl"] = 18, + ["min"] = 18, + ["obj"] = { + ["I"] = { 60192, 60193, 60194 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60441 }, + }, + }, + [40129] = { + ["end"] = { + ["U"] = { 60441 }, + }, + ["lvl"] = 45, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60195 }, + }, + ["pre"] = { 40128 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60441 }, + }, + }, + [40130] = { + ["end"] = { + ["U"] = { 60443 }, + }, + ["lvl"] = 18, + ["min"] = 18, + ["obj"] = { + ["I"] = { 60192, 60193, 60194 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60443 }, + }, + }, + [40131] = { + ["end"] = { + ["U"] = { 60443 }, + }, + ["lvl"] = 45, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60195 }, + }, + ["pre"] = { 40130 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60443 }, + }, + }, + [40132] = { + ["end"] = { + ["U"] = { 60441 }, + }, + ["lvl"] = 55, + ["min"] = 53, + ["obj"] = { + ["U"] = { 60324 }, + }, + ["pre"] = { 40129 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60441 }, + }, + }, + [40133] = { + ["end"] = { + ["U"] = { 60443 }, + }, + ["lvl"] = 55, + ["min"] = 53, + ["obj"] = { + ["U"] = { 60324 }, + }, + ["pre"] = { 40131 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60443 }, + }, + }, + [40136] = { + ["end"] = { + ["U"] = { 91727 }, + }, + ["lvl"] = 16, + ["min"] = 15, + ["obj"] = { + ["I"] = { 60196 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91727 }, + }, + }, + [40137] = { + ["end"] = { + ["U"] = { 91727 }, + }, + ["lvl"] = 17, + ["min"] = 15, + ["obj"] = { + ["U"] = { 91989 }, + }, + ["pre"] = { 40136 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91727 }, + }, + }, + [40138] = { + ["end"] = { + ["U"] = { 91749 }, + }, + ["lvl"] = 19, + ["min"] = 15, + ["obj"] = { + ["I"] = { 60197 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91749 }, + }, + }, + [40139] = { + ["end"] = { + ["U"] = { 91726 }, + }, + ["lvl"] = 17, + ["min"] = 15, + ["obj"] = { + ["U"] = { 91756, 91757 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91726 }, + }, + }, + [40140] = { + ["end"] = { + ["U"] = { 91726 }, + }, + ["lvl"] = 19, + ["min"] = 15, + ["obj"] = { + ["U"] = { 91759 }, + }, + ["pre"] = { 40139 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91726 }, + }, + }, + [40141] = { + ["end"] = { + ["U"] = { 91883 }, + }, + ["lvl"] = 51, + ["min"] = 40, + ["obj"] = { + ["I"] = { 60202, 60203 }, + ["U"] = { 60325, 60326 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 91883 }, + }, + }, + [40142] = { + ["end"] = { + ["U"] = { 91872 }, + }, + ["lvl"] = 51, + ["min"] = 40, + ["obj"] = { + ["I"] = { 60206, 60207 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 91872 }, + }, + }, + [40143] = { + ["end"] = { + ["U"] = { 92002 }, + }, + ["lvl"] = 53, + ["min"] = 40, + ["obj"] = { + ["I"] = { 60208 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 92002 }, + }, + }, + [40144] = { + ["end"] = { + ["U"] = { 92002 }, + }, + ["lvl"] = 54, + ["min"] = 44, + ["obj"] = { + ["U"] = { 92142, 92143, 92144 }, + }, + ["pre"] = { 40143 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 92002 }, + }, + }, + [40145] = { + ["end"] = { + ["U"] = { 11749 }, + }, + ["lvl"] = 37, + ["min"] = 26, + ["race"] = 434, + ["start"] = { + ["U"] = { 11720 }, + }, + }, + [40146] = { + ["end"] = { + ["U"] = { 11720 }, + }, + ["lvl"] = 37, + ["min"] = 26, + ["pre"] = { 40145 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 11749 }, + }, + }, + [40147] = { + ["end"] = { + ["U"] = { 11720 }, + }, + ["lvl"] = 37, + ["min"] = 26, + ["obj"] = { + ["U"] = { 92110 }, + }, + ["pre"] = { 40146 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 11720 }, + }, + }, + [40148] = { + ["end"] = { + ["U"] = { 92010 }, + }, + ["lvl"] = 51, + ["min"] = 40, + ["obj"] = { + ["I"] = { 60217 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 92010 }, + }, + }, + [40149] = { + ["end"] = { + ["U"] = { 92002 }, + }, + ["lvl"] = 51, + ["min"] = 40, + ["race"] = 589, + ["start"] = { + ["O"] = { 2010829 }, + }, + }, + [40150] = { + ["end"] = { + ["U"] = { 91890 }, + }, + ["lvl"] = 53, + ["min"] = 44, + ["obj"] = { + ["I"] = { 60219 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 91890 }, + }, + }, + [40151] = { + ["end"] = { + ["U"] = { 92000 }, + }, + ["lvl"] = 51, + ["min"] = 44, + ["obj"] = { + ["I"] = { 60222 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 92000 }, + }, + }, + [40152] = { + ["end"] = { + ["U"] = { 91952 }, + }, + ["lvl"] = 51, + ["min"] = 45, + ["obj"] = { + ["U"] = { 92164, 92165, 92166 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 91952 }, + }, + }, + [40153] = { + ["end"] = { + ["U"] = { 91953 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["race"] = 589, + ["start"] = { + ["O"] = { 2010830 }, + }, + }, + [40155] = { + ["end"] = { + ["U"] = { 92005 }, + }, + ["lvl"] = 51, + ["min"] = 45, + ["obj"] = { + ["U"] = { 91848, 91849, 91851 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 92005 }, + }, + }, + [40156] = { + ["end"] = { + ["U"] = { 92005 }, + }, + ["lvl"] = 53, + ["min"] = 46, + ["obj"] = { + ["I"] = { 60227 }, + }, + ["pre"] = { 40155 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 92005 }, + }, + }, + [40157] = { + ["end"] = { + ["U"] = { 91867 }, + }, + ["lvl"] = 54, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60230 }, + }, + ["start"] = { + ["U"] = { 91867 }, + }, + }, + [40158] = { + ["end"] = { + ["U"] = { 91871 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60231 }, + }, + ["start"] = { + ["U"] = { 91871 }, + }, + }, + [40159] = { + ["end"] = { + ["U"] = { 91871 }, + }, + ["lvl"] = 55, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60232 }, + }, + ["pre"] = { 40158 }, + ["start"] = { + ["U"] = { 91871 }, + }, + }, + [40160] = { + ["end"] = { + ["U"] = { 91869 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60235 }, + }, + ["start"] = { + ["U"] = { 91869 }, + }, + }, + [40161] = { + ["end"] = { + ["U"] = { 91870 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60236 }, + }, + ["start"] = { + ["U"] = { 91870 }, + }, + }, + [40162] = { + ["end"] = { + ["U"] = { 92145 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60238 }, + }, + ["start"] = { + ["U"] = { 92145 }, + }, + }, + [40163] = { + ["end"] = { + ["U"] = { 92001 }, + }, + ["lvl"] = 55, + ["min"] = 45, + ["race"] = 589, + ["start"] = { + ["U"] = { 92002 }, + }, + }, + [40164] = { + ["end"] = { + ["U"] = { 2543 }, + }, + ["lvl"] = 55, + ["min"] = 45, + ["pre"] = { 40163 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 92001 }, + }, + }, + [40165] = { + ["end"] = { + ["U"] = { 2543 }, + }, + ["lvl"] = 55, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60241 }, + }, + ["pre"] = { 40164 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2543 }, + }, + }, + [40166] = { + ["end"] = { + ["U"] = { 2543 }, + }, + ["lvl"] = 55, + ["min"] = 45, + ["obj"] = { + ["U"] = { 60327 }, + }, + ["pre"] = { 40165 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2543 }, + }, + }, + [40167] = { + ["end"] = { + ["U"] = { 92001 }, + }, + ["lvl"] = 55, + ["min"] = 45, + ["pre"] = { 40166 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2543 }, + }, + }, + [40168] = { + ["end"] = { + ["U"] = { 92938 }, + }, + ["lvl"] = 55, + ["min"] = 45, + ["pre"] = { 40167 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 92001 }, + }, + }, + [40169] = { + ["end"] = { + ["U"] = { 60446 }, + }, + ["lvl"] = 55, + ["min"] = 45, + ["pre"] = { 40168 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 92938 }, + }, + }, + [40170] = { + ["end"] = { + ["U"] = { 60446 }, + }, + ["lvl"] = 55, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60243 }, + }, + ["pre"] = { 40169 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60446 }, + }, + }, + [40171] = { + ["end"] = { + ["U"] = { 92001 }, + }, + ["lvl"] = 55, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60244 }, + }, + ["pre"] = { 40170 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60446 }, + }, + }, + [40172] = { + ["end"] = { + ["U"] = { 60453 }, + }, + ["lvl"] = 48, + ["min"] = 45, + ["obj"] = { + ["U"] = { 60332 }, + }, + ["start"] = { + ["U"] = { 60453 }, + }, + }, + [40173] = { + ["end"] = { + ["U"] = { 2663 }, + }, + ["lvl"] = 48, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60245 }, + }, + ["pre"] = { 40172 }, + ["start"] = { + ["U"] = { 60453 }, + }, + }, + [40174] = { + ["end"] = { + ["U"] = { 60453 }, + }, + ["lvl"] = 48, + ["min"] = 45, + ["obj"] = { + ["U"] = { 60328 }, + }, + ["pre"] = { 40173 }, + ["start"] = { + ["U"] = { 60453 }, + }, + }, + [40175] = { + ["end"] = { + ["U"] = { 60448 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["obj"] = { + ["I"] = { 60246, 60247 }, + }, + ["start"] = { + ["U"] = { 60448 }, + }, + }, + [40176] = { + ["end"] = { + ["U"] = { 92171 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60248, 60249, 60250 }, + }, + ["start"] = { + ["U"] = { 92171 }, + }, + }, + [40177] = { + ["end"] = { + ["U"] = { 92187 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60251 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 92187 }, + }, + }, + [40178] = { + ["end"] = { + ["U"] = { 60453 }, + }, + ["lvl"] = 48, + ["min"] = 45, + ["obj"] = { + ["O"] = { 2010836 }, + }, + ["pre"] = { 40174 }, + ["start"] = { + ["U"] = { 60453 }, + }, + }, + [40179] = { + ["end"] = { + ["U"] = { 60453 }, + }, + ["lvl"] = 48, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60253 }, + ["U"] = { 51607 }, + }, + ["pre"] = { 40178 }, + ["start"] = { + ["U"] = { 60453 }, + }, + }, + [40180] = { + ["end"] = { + ["U"] = { 60496 }, + }, + ["lvl"] = 48, + ["min"] = 45, + ["obj"] = { + ["U"] = { 60333 }, + }, + ["pre"] = { 40179 }, + ["start"] = { + ["U"] = { 60453 }, + }, + }, + [40181] = { + ["end"] = { + ["U"] = { 60496 }, + }, + ["lvl"] = 48, + ["min"] = 45, + ["obj"] = { + ["U"] = { 2610, 2769 }, + }, + ["pre"] = { 40180 }, + ["start"] = { + ["U"] = { 60496 }, + }, + }, + [40182] = { + ["end"] = { + ["U"] = { 60496 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["obj"] = { + ["U"] = { 91847, 92139 }, + }, + ["pre"] = { 40181 }, + ["start"] = { + ["U"] = { 60496 }, + }, + }, + [40183] = { + ["end"] = { + ["U"] = { 60496 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60255 }, + }, + ["pre"] = { 40182 }, + ["start"] = { + ["U"] = { 60496 }, + }, + }, + [40184] = { + ["end"] = { + ["U"] = { 60464 }, + }, + ["lvl"] = 50, + ["min"] = 45, + ["obj"] = { + ["U"] = { 60463 }, + }, + ["start"] = { + ["U"] = { 60463 }, + }, + }, + [40185] = { + ["end"] = { + ["U"] = { 60496 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60256 }, + }, + ["pre"] = { 40182 }, + ["start"] = { + ["U"] = { 60496 }, + }, + }, + [40186] = { + ["end"] = { + ["U"] = { 60496 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["obj"] = { + ["U"] = { 60330 }, + }, + ["pre"] = { 40182 }, + ["start"] = { + ["U"] = { 60496 }, + }, + }, + [40187] = { + ["end"] = { + ["U"] = { 60496 }, + }, + ["lvl"] = 50, + ["min"] = 48, + ["obj"] = { + ["U"] = { 60331 }, + }, + ["pre"] = { 40186 }, + ["start"] = { + ["U"] = { 60496 }, + }, + }, + [40188] = { + ["end"] = { + ["U"] = { 92191 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["race"] = 434, + ["start"] = { + ["U"] = { 92188 }, + }, + }, + [40189] = { + ["end"] = { + ["U"] = { 92191 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60259 }, + }, + ["pre"] = { 40188 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 92191 }, + }, + }, + [40190] = { + ["end"] = { + ["U"] = { 92191 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["obj"] = { + ["I"] = { 3577 }, + }, + ["pre"] = { 40189 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 92191 }, + }, + }, + [40191] = { + ["end"] = { + ["U"] = { 92174 }, + }, + ["lvl"] = 53, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60260 }, + }, + ["start"] = { + ["U"] = { 92174 }, + }, + }, + [40192] = { + ["end"] = { + ["U"] = { 60471 }, + }, + ["lvl"] = 20, + ["min"] = 10, + ["obj"] = { + ["I"] = { 60261, 60262, 60263 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60471 }, + }, + }, + [40193] = { + ["end"] = { + ["U"] = { 3516 }, + }, + ["lvl"] = 20, + ["min"] = 10, + ["pre"] = { 40192 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60471 }, + }, + }, + [40194] = { + ["end"] = { + ["U"] = { 92190 }, + }, + ["lvl"] = 53, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60265 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 92190 }, + }, + }, + [40195] = { + ["end"] = { + ["U"] = { 92190 }, + }, + ["lvl"] = 54, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60266, 60267 }, + }, + ["pre"] = { 40194 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 92190 }, + }, + }, + [40196] = { + ["end"] = { + ["U"] = { 92168 }, + }, + ["lvl"] = 53, + ["min"] = 45, + ["obj"] = { + ["U"] = { 91968 }, + }, + ["start"] = { + ["U"] = { 92168 }, + }, + }, + [40197] = { + ["end"] = { + ["U"] = { 91287 }, + }, + ["lvl"] = 20, + ["min"] = 18, + ["obj"] = { + ["U"] = { 60470 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 91287 }, + }, + }, + [40198] = { + ["end"] = { + ["U"] = { 60455 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["obj"] = { + ["I"] = { 1941, 2593, 60270, 60271 }, + }, + ["start"] = { + ["U"] = { 60455 }, + }, + }, + [40199] = { + ["end"] = { + ["U"] = { 92180 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["obj"] = { + ["U"] = { 91960, 91965 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 92180 }, + }, + }, + [40200] = { + ["end"] = { + ["U"] = { 92176 }, + }, + ["lvl"] = 53, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60273 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 92176 }, + }, + }, + [40201] = { + ["end"] = { + ["U"] = { 60482 }, + }, + ["lvl"] = 11, + ["min"] = 5, + ["race"] = 589, + ["start"] = { + ["U"] = { 60465 }, + }, + }, + [40202] = { + ["end"] = { + ["U"] = { 60465 }, + }, + ["lvl"] = 11, + ["min"] = 5, + ["pre"] = { 40201 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60482 }, + }, + }, + [40203] = { + ["end"] = { + ["U"] = { 60465 }, + }, + ["lvl"] = 11, + ["min"] = 5, + ["obj"] = { + ["I"] = { 60276 }, + }, + ["pre"] = { 40202 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60465 }, + }, + }, + [40204] = { + ["end"] = { + ["U"] = { 60473 }, + }, + ["lvl"] = 11, + ["min"] = 5, + ["race"] = 589, + ["start"] = { + ["U"] = { 60474 }, + }, + }, + [40205] = { + ["end"] = { + ["U"] = { 60473 }, + }, + ["lvl"] = 11, + ["min"] = 5, + ["obj"] = { + ["U"] = { 2012, 2013 }, + }, + ["pre"] = { 40204 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60473 }, + }, + }, + [40206] = { + ["end"] = { + ["U"] = { 982 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["obj"] = { + ["I"] = { 60171 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 982 }, + }, + }, + [40207] = { + ["end"] = { + ["U"] = { 982 }, + }, + ["lvl"] = 41, + ["min"] = 34, + ["obj"] = { + ["I"] = { 60280 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 982 }, + }, + }, + [40208] = { + ["end"] = { + ["U"] = { 983 }, + }, + ["lvl"] = 45, + ["min"] = 34, + ["obj"] = { + ["I"] = { 60281 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 983 }, + }, + }, + [40209] = { + ["end"] = { + ["U"] = { 1775 }, + }, + ["lvl"] = 41, + ["min"] = 34, + ["obj"] = { + ["I"] = { 60282 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1775 }, + }, + }, + [40210] = { + ["end"] = { + ["U"] = { 60446 }, + }, + ["lvl"] = 51, + ["min"] = 40, + ["obj"] = { + ["U"] = { 60334 }, + }, + ["start"] = { + ["U"] = { 60446 }, + }, + }, + [40211] = { + ["end"] = { + ["U"] = { 60446 }, + }, + ["lvl"] = 51, + ["min"] = 40, + ["obj"] = { + ["I"] = { 8831, 60295 }, + }, + ["pre"] = { 40210 }, + ["start"] = { + ["U"] = { 60446 }, + }, + }, + [40212] = { + ["end"] = { + ["U"] = { 5353 }, + }, + ["lvl"] = 54, + ["min"] = 40, + ["pre"] = { 40211 }, + ["start"] = { + ["U"] = { 60446 }, + }, + }, + [40213] = { + ["end"] = { + ["U"] = { 60446 }, + }, + ["lvl"] = 55, + ["min"] = 40, + ["obj"] = { + ["I"] = { 60297 }, + ["U"] = { 91813, 91817, 91818 }, + }, + ["pre"] = { 40251 }, + ["start"] = { + ["U"] = { 60446 }, + }, + }, + [40214] = { + ["end"] = { + ["U"] = { 60446 }, + }, + ["lvl"] = 55, + ["min"] = 40, + ["obj"] = { + ["U"] = { 60499 }, + }, + ["pre"] = { 40213 }, + ["start"] = { + ["U"] = { 60446 }, + }, + }, + [40216] = { + ["end"] = { + ["U"] = { 60500 }, + }, + ["lvl"] = 16, + ["min"] = 11, + ["obj"] = { + ["U"] = { 3282, 3284 }, + }, + ["start"] = { + ["U"] = { 60500 }, + }, + }, + [40217] = { + ["end"] = { + ["U"] = { 60476 }, + }, + ["lvl"] = 53, + ["min"] = 45, + ["race"] = 434, + ["start"] = { + ["U"] = { 92176 }, + }, + }, + [40218] = { + ["end"] = { + ["U"] = { 92186 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60298 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 92186 }, + }, + }, + [40219] = { + ["end"] = { + ["U"] = { 92180 }, + }, + ["lvl"] = 53, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60299 }, + }, + ["pre"] = { 40199 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 92180 }, + }, + }, + [40220] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 60483 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 364 }, + ["race"] = 16, + ["start"] = { + ["U"] = { 1569 }, + }, + }, + [40221] = { + ["end"] = { + ["U"] = { 11536 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 12844 }, + }, + ["start"] = { + ["U"] = { 11536 }, + }, + }, + [40222] = { + ["end"] = { + ["U"] = { 60502 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["obj"] = { + ["I"] = { 60303 }, + }, + ["start"] = { + ["U"] = { 60502 }, + }, + }, + [40223] = { + ["end"] = { + ["U"] = { 60502 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["obj"] = { + ["I"] = { 60304 }, + }, + ["pre"] = { 40222 }, + ["start"] = { + ["U"] = { 60502 }, + }, + }, + [40224] = { + ["end"] = { + ["U"] = { 60504 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["pre"] = { 40223 }, + ["start"] = { + ["U"] = { 60502 }, + }, + }, + [40225] = { + ["end"] = { + ["U"] = { 60502 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["pre"] = { 40224 }, + ["start"] = { + ["U"] = { 60504 }, + }, + }, + [40226] = { + ["end"] = { + ["U"] = { 60502 }, + }, + ["lvl"] = 35, + ["min"] = 25, + ["obj"] = { + ["I"] = { 60306 }, + }, + ["pre"] = { 40225 }, + ["start"] = { + ["U"] = { 60502 }, + }, + }, + [40227] = { + ["end"] = { + ["U"] = { 60507 }, + }, + ["lvl"] = 24, + ["min"] = 17, + ["obj"] = { + ["I"] = { 60310 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60507 }, + }, + }, + [40228] = { + ["end"] = { + ["U"] = { 91767 }, + }, + ["lvl"] = 40, + ["min"] = 34, + ["obj"] = { + ["U"] = { 91766 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 91767 }, + }, + }, + [40229] = { + ["end"] = { + ["U"] = { 91767 }, + }, + ["lvl"] = 39, + ["min"] = 33, + ["obj"] = { + ["I"] = { 60311 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 91767 }, + }, + }, + [40230] = { + ["end"] = { + ["U"] = { 60472 }, + }, + ["lvl"] = 21, + ["min"] = 10, + ["obj"] = { + ["I"] = { 60312, 60313 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60472 }, + }, + }, + [40231] = { + ["end"] = { + ["U"] = { 1284 }, + }, + ["lvl"] = 38, + ["min"] = 30, + ["pre"] = { 40095 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 92017 }, + }, + }, + [40232] = { + ["end"] = { + ["U"] = { 92017 }, + }, + ["lvl"] = 38, + ["min"] = 30, + ["pre"] = { 40231 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1284 }, + }, + }, + [40233] = { + ["end"] = { + ["U"] = { 92017 }, + }, + ["lvl"] = 38, + ["min"] = 30, + ["obj"] = { + ["I"] = { 60315 }, + }, + ["pre"] = { 40232 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 92017 }, + }, + }, + [40234] = { + ["end"] = { + ["U"] = { 16376 }, + }, + ["lvl"] = 58, + ["min"] = 55, + ["obj"] = { + ["I"] = { 60293 }, + }, + ["skill"] = 164, + ["start"] = { + ["U"] = { 16376 }, + }, + }, + [40235] = { + ["end"] = { + ["U"] = { 16376 }, + }, + ["lvl"] = 58, + ["min"] = 55, + ["obj"] = { + ["I"] = { 60319 }, + }, + ["pre"] = { 40234 }, + ["skill"] = 164, + ["start"] = { + ["U"] = { 16376 }, + }, + }, + [40236] = { + ["end"] = { + ["U"] = { 6251 }, + }, + ["lvl"] = 58, + ["min"] = 55, + ["pre"] = { 40235 }, + ["skill"] = 164, + ["start"] = { + ["U"] = { 16376 }, + }, + }, + [40237] = { + ["end"] = { + ["U"] = { 6251 }, + }, + ["lvl"] = 58, + ["min"] = 55, + ["obj"] = { + ["I"] = { 60320 }, + }, + ["pre"] = { 40236 }, + ["skill"] = 164, + ["start"] = { + ["U"] = { 6251 }, + }, + }, + [40238] = { + ["end"] = { + ["U"] = { 60503 }, + }, + ["lvl"] = 58, + ["min"] = 55, + ["pre"] = { 40237 }, + ["skill"] = 164, + ["start"] = { + ["U"] = { 6251 }, + }, + }, + [40239] = { + ["end"] = { + ["U"] = { 60503 }, + }, + ["lvl"] = 58, + ["min"] = 55, + ["obj"] = { + ["I"] = { 60322, 60323, 60324 }, + }, + ["pre"] = { 40238 }, + ["skill"] = 164, + ["start"] = { + ["U"] = { 60503 }, + }, + }, + [40240] = { + ["end"] = { + ["U"] = { 16376 }, + }, + ["lvl"] = 58, + ["min"] = 55, + ["pre"] = { 40239 }, + ["skill"] = 164, + ["start"] = { + ["U"] = { 60503 }, + }, + }, + [40241] = { + ["end"] = { + ["U"] = { 16376 }, + }, + ["lvl"] = 58, + ["min"] = 55, + ["obj"] = { + ["I"] = { 12359, 12808, 12810, 20520 }, + }, + ["pre"] = { 40240 }, + ["skill"] = 164, + ["start"] = { + ["U"] = { 16376 }, + }, + }, + [40242] = { + ["end"] = { + ["U"] = { 92219 }, + }, + ["lvl"] = 53, + ["min"] = 46, + ["obj"] = { + ["I"] = { 60325 }, + }, + ["pre"] = { 40041 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 92219 }, + }, + }, + [40243] = { + ["end"] = { + ["U"] = { 91722 }, + }, + ["lvl"] = 53, + ["min"] = 45, + ["obj"] = { + ["U"] = { 6348, 6370, 6371 }, + }, + ["start"] = { + ["U"] = { 91722 }, + }, + }, + [40244] = { + ["end"] = { + ["U"] = { 91722 }, + }, + ["lvl"] = 53, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60326 }, + }, + ["pre"] = { 40243 }, + ["start"] = { + ["U"] = { 91722 }, + }, + }, + [40245] = { + ["end"] = { + ["U"] = { 91722 }, + }, + ["lvl"] = 53, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60327 }, + }, + ["pre"] = { 40244 }, + ["start"] = { + ["U"] = { 91722 }, + }, + }, + [40246] = { + ["end"] = { + ["U"] = { 91722 }, + }, + ["lvl"] = 53, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60328 }, + }, + ["pre"] = { 40245 }, + ["start"] = { + ["U"] = { 91722 }, + }, + }, + [40247] = { + ["end"] = { + ["U"] = { 91722 }, + }, + ["lvl"] = 53, + ["min"] = 45, + ["obj"] = { + ["U"] = { 60335 }, + }, + ["pre"] = { 40246 }, + ["start"] = { + ["U"] = { 91722 }, + }, + }, + [40248] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 60484 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["IR"] = { 60329 }, + }, + ["race"] = 16, + ["start"] = { + ["U"] = { 60484 }, + }, + }, + [40249] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 60484 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["IR"] = { 60330 }, + }, + ["pre"] = { 40248 }, + ["race"] = 16, + ["start"] = { + ["U"] = { 60484 }, + }, + }, + [40250] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 60484 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["IR"] = { 60331 }, + }, + ["pre"] = { 40249 }, + ["race"] = 16, + ["start"] = { + ["U"] = { 60484 }, + }, + }, + [40251] = { + ["end"] = { + ["U"] = { 60446 }, + }, + ["lvl"] = 54, + ["min"] = 40, + ["pre"] = { 40212 }, + ["start"] = { + ["U"] = { 5353 }, + }, + }, + [40252] = { + ["end"] = { + ["U"] = { 60512 }, + }, + ["lvl"] = 55, + ["min"] = 45, + ["pre"] = { 40247 }, + ["start"] = { + ["U"] = { 91722 }, + }, + }, + [40253] = { + ["end"] = { + ["U"] = { 60512 }, + }, + ["lvl"] = 55, + ["min"] = 45, + ["obj"] = { + ["U"] = { 60336 }, + }, + ["pre"] = { 40252 }, + ["start"] = { + ["U"] = { 60512 }, + }, + }, + [40254] = { + ["end"] = { + ["U"] = { 60512 }, + }, + ["lvl"] = 58, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60332 }, + }, + ["pre"] = { 40253 }, + ["start"] = { + ["U"] = { 60512 }, + }, + }, + [40255] = { + ["end"] = { + ["U"] = { 92017 }, + }, + ["lvl"] = 35, + ["min"] = 28, + ["race"] = 589, + ["start"] = { + ["U"] = { 1444 }, + }, + }, + [40256] = { + ["end"] = { + ["U"] = { 91891 }, + }, + ["lvl"] = 57, + ["min"] = 48, + ["obj"] = { + ["I"] = { 60335 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91891 }, + }, + }, + [40257] = { + ["end"] = { + ["U"] = { 91891 }, + }, + ["lvl"] = 57, + ["min"] = 48, + ["obj"] = { + ["U"] = { 7027 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91891 }, + }, + }, + [40258] = { + ["end"] = { + ["U"] = { 60476 }, + }, + ["lvl"] = 53, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60336 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60476 }, + }, + }, + [40259] = { + ["end"] = { + ["O"] = { 2010877 }, + }, + ["lvl"] = 58, + ["min"] = 55, + ["pre"] = { 40241 }, + ["skill"] = 164, + ["start"] = { + ["U"] = { 16376 }, + }, + }, + [40260] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 81050 }, + }, + ["lvl"] = 5, + ["min"] = 5, + ["race"] = 16, + ["start"] = { + ["U"] = { 60483 }, + }, + }, + [40261] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 60484, 60485 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 16, + ["start"] = { + ["U"] = { 60485, 81050 }, + }, + }, + [40262] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 60488 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 40250 }, + ["race"] = 16, + ["start"] = { + ["U"] = { 60484 }, + }, + }, + [40263] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 81050 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["I"] = { 60337 }, + }, + ["pre"] = { 40262 }, + ["race"] = 16, + ["start"] = { + ["U"] = { 60484 }, + }, + }, + [40264] = { + ["end"] = { + ["U"] = { 92184 }, + }, + ["lvl"] = 53, + ["min"] = 45, + ["obj"] = { + ["U"] = { 60337 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 92184 }, + }, + }, + [40265] = { + ["end"] = { + ["U"] = { 92184 }, + }, + ["lvl"] = 53, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60340, 60341, 60342 }, + }, + ["pre"] = { 40264 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 92184 }, + }, + }, + [40266] = { + ["end"] = { + ["U"] = { 92184 }, + }, + ["lvl"] = 53, + ["min"] = 45, + ["obj"] = { + ["U"] = { 60338 }, + }, + ["pre"] = { 40265 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 92184 }, + }, + }, + [40267] = { + ["end"] = { + ["U"] = { 60446 }, + }, + ["lvl"] = 53, + ["min"] = 45, + ["pre"] = { 40266 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 92184 }, + }, + }, + [40268] = { + ["end"] = { + ["U"] = { 60446 }, + }, + ["lvl"] = 53, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60243 }, + }, + ["pre"] = { 40267 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60446 }, + }, + }, + [40269] = { + ["end"] = { + ["U"] = { 60446 }, + }, + ["lvl"] = 53, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60343 }, + }, + ["pre"] = { 40268 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60446 }, + }, + }, + [40270] = { + ["end"] = { + ["U"] = { 60446 }, + }, + ["lvl"] = 54, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60344 }, + }, + ["pre"] = { 40269 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60446 }, + }, + }, + [40271] = { + ["end"] = { + ["U"] = { 92184 }, + }, + ["lvl"] = 54, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60345 }, + }, + ["pre"] = { 40270 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60446 }, + }, + }, + [40272] = { + ["end"] = { + ["U"] = { 92184 }, + }, + ["lvl"] = 54, + ["min"] = 45, + ["obj"] = { + ["U"] = { 60339 }, + }, + ["pre"] = { 40271 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 92184 }, + }, + }, + [40274] = { + ["lvl"] = 11, + ["min"] = 6, + ["obj"] = { + ["U"] = { 3110 }, + }, + ["race"] = 434, + }, + [40275] = { + ["end"] = { + ["U"] = { 92182 }, + }, + ["lvl"] = 53, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60219 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 92182 }, + }, + }, + [40276] = { + ["end"] = { + ["U"] = { 92182 }, + }, + ["lvl"] = 55, + ["min"] = 45, + ["obj"] = { + ["U"] = { 92161, 92162 }, + }, + ["pre"] = { 40275 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 92182 }, + }, + }, + [40277] = { + ["end"] = { + ["U"] = { 91711 }, + }, + ["lvl"] = 20, + ["min"] = 15, + ["obj"] = { + ["U"] = { 91352, 91721, 91974, 91975 }, + }, + ["pre"] = { 40099 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91711 }, + }, + }, + [40278] = { + ["end"] = { + ["U"] = { 91753 }, + }, + ["lvl"] = 19, + ["min"] = 15, + ["race"] = 434, + ["start"] = { + ["U"] = { 91712 }, + }, + }, + [40279] = { + ["end"] = { + ["U"] = { 91712 }, + }, + ["lvl"] = 19, + ["min"] = 15, + ["pre"] = { 40278 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91753 }, + }, + }, + [40280] = { + ["end"] = { + ["U"] = { 4567 }, + }, + ["lvl"] = 19, + ["min"] = 15, + ["obj"] = { + ["I"] = { 60189, 60190 }, + }, + ["pre"] = { 40279 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91712 }, + }, + }, + [40281] = { + ["end"] = { + ["U"] = { 4567 }, + }, + ["lvl"] = 25, + ["min"] = 15, + ["obj"] = { + ["I"] = { 60191 }, + }, + ["pre"] = { 40280 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4567 }, + }, + }, + [40282] = { + ["end"] = { + ["U"] = { 91711 }, + }, + ["lvl"] = 25, + ["min"] = 15, + ["obj"] = { + ["I"] = { 60189, 60391 }, + }, + ["pre"] = { 40281 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4567 }, + }, + }, + [40283] = { + ["end"] = { + ["U"] = { 92024 }, + }, + ["lvl"] = 52, + ["min"] = 40, + ["obj"] = { + ["U"] = { 6194, 6195, 7864 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 92024 }, + }, + }, + [40284] = { + ["end"] = { + ["U"] = { 92024 }, + }, + ["lvl"] = 52, + ["min"] = 42, + ["obj"] = { + ["I"] = { 60396 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 92024 }, + }, + }, + [40285] = { + ["end"] = { + ["U"] = { 92196 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["obj"] = { + ["U"] = { 60340 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 92196 }, + }, + }, + [40286] = { + ["end"] = { + ["U"] = { 92196 }, + }, + ["lvl"] = 56, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60397 }, + }, + ["pre"] = { 40285 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 92196 }, + }, + }, + [40287] = { + ["end"] = { + ["U"] = { 92196 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60398 }, + }, + ["pre"] = { 40286 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 92196 }, + }, + }, + [40288] = { + ["end"] = { + ["U"] = { 92196 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60399 }, + }, + ["pre"] = { 40287 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 92196 }, + }, + }, + [40289] = { + ["end"] = { + ["U"] = { 92196 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["obj"] = { + ["U"] = { 60341 }, + }, + ["pre"] = { 40288 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 92196 }, + }, + }, + [40290] = { + ["end"] = { + ["U"] = { 92202 }, + }, + ["lvl"] = 50, + ["min"] = 40, + ["obj"] = { + ["I"] = { 60401 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 92202 }, + }, + }, + [40291] = { + ["end"] = { + ["U"] = { 92202 }, + }, + ["lvl"] = 50, + ["min"] = 40, + ["obj"] = { + ["I"] = { 60402 }, + }, + ["pre"] = { 40290 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 92202 }, + }, + }, + [40292] = { + ["end"] = { + ["U"] = { 92197 }, + }, + ["lvl"] = 50, + ["min"] = 40, + ["obj"] = { + ["I"] = { 60403, 60404 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 92197 }, + }, + }, + [40293] = { + ["end"] = { + ["U"] = { 92197 }, + }, + ["lvl"] = 50, + ["min"] = 45, + ["obj"] = { + ["U"] = { 60342 }, + }, + ["pre"] = { 40292 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 92197 }, + }, + }, + [40294] = { + ["end"] = { + ["U"] = { 92199 }, + }, + ["lvl"] = 50, + ["min"] = 45, + ["pre"] = { 40293 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 92197 }, + }, + }, + [40295] = { + ["end"] = { + ["U"] = { 92199 }, + }, + ["lvl"] = 50, + ["min"] = 45, + ["obj"] = { + ["U"] = { 60343 }, + }, + ["pre"] = { 40294 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 92199 }, + }, + }, + [40296] = { + ["end"] = { + ["U"] = { 5769 }, + }, + ["lvl"] = 50, + ["min"] = 45, + ["pre"] = { 40295 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 92199 }, + }, + }, + [40297] = { + ["end"] = { + ["U"] = { 92197 }, + }, + ["lvl"] = 56, + ["min"] = 46, + ["obj"] = { + ["U"] = { 6129, 6130, 6131 }, + }, + ["pre"] = { 40296 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5769 }, + }, + }, + [40298] = { + ["lvl"] = 10, + ["min"] = 5, + ["obj"] = { + ["I"] = { 769, 3770, 51751 }, + }, + ["race"] = 434, + }, + [40299] = { + ["end"] = { + ["U"] = { 10637 }, + }, + ["lvl"] = 60, + ["min"] = 57, + ["obj"] = { + ["I"] = { 12360, 12731, 12811, 12845 }, + }, + ["pre"] = { 5047 }, + ["start"] = { + ["U"] = { 10637 }, + }, + }, + [40300] = { + ["end"] = { + ["U"] = { 7295 }, + }, + ["lvl"] = 12, + ["min"] = 10, + ["race"] = 589, + ["start"] = { + ["U"] = { 3607 }, + }, + }, + [40301] = { + ["end"] = { + ["U"] = { 6929 }, + }, + ["lvl"] = 11, + ["min"] = 10, + ["race"] = 434, + ["start"] = { + ["U"] = { 3884 }, + }, + }, + [40302] = { + ["end"] = { + ["U"] = { 14823 }, + }, + ["event"] = 5, + ["lvl"] = 20, + ["min"] = 18, + ["obj"] = { + ["I"] = { 60445 }, + }, + ["start"] = { + ["U"] = { 14823 }, + }, + }, + [40303] = { + ["end"] = { + ["U"] = { 92002 }, + }, + ["lvl"] = 55, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60450 }, + }, + ["pre"] = { 40171 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 92001 }, + }, + }, + [40304] = { + ["end"] = { + ["U"] = { 60607 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 60454 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60607 }, + }, + }, + [40305] = { + ["end"] = { + ["U"] = { 60607 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 60455 }, + }, + ["pre"] = { 40304 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60607 }, + }, + }, + [40306] = { + ["end"] = { + ["U"] = { 1497 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["pre"] = { 40305 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60607 }, + }, + }, + [40307] = { + ["end"] = { + ["U"] = { 60607 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["pre"] = { 40306 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1497 }, + }, + }, + [40308] = { + ["end"] = { + ["U"] = { 60607 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 60457, 60458 }, + }, + ["pre"] = { 40307 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60607 }, + }, + }, + [40309] = { + ["end"] = { + ["U"] = { 60607 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["U"] = { 60344 }, + }, + ["pre"] = { 40308 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60607 }, + }, + }, + [40310] = { + ["end"] = { + ["U"] = { 60607 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["U"] = { 91928 }, + }, + ["pre"] = { 40309 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60607 }, + }, + }, + [40311] = { + ["end"] = { + ["U"] = { 60606 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 60454 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60606 }, + }, + }, + [40312] = { + ["end"] = { + ["U"] = { 60606 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 60455 }, + }, + ["pre"] = { 40311 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60606 }, + }, + }, + [40313] = { + ["end"] = { + ["U"] = { 2543 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["pre"] = { 40312 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60606 }, + }, + }, + [40314] = { + ["end"] = { + ["U"] = { 60606 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["pre"] = { 40313 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2543 }, + }, + }, + [40315] = { + ["end"] = { + ["U"] = { 60606 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 60457, 60458 }, + }, + ["pre"] = { 40314 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60606 }, + }, + }, + [40316] = { + ["end"] = { + ["U"] = { 60606 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["U"] = { 60345 }, + }, + ["pre"] = { 40315 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60606 }, + }, + }, + [40317] = { + ["end"] = { + ["U"] = { 60606 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["U"] = { 91928 }, + }, + ["pre"] = { 40316 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60606 }, + }, + }, + [40318] = { + ["end"] = { + ["U"] = { 466 }, + }, + ["lvl"] = 17, + ["min"] = 11, + ["race"] = 589, + ["start"] = { + ["U"] = { 91974 }, + }, + }, + [40319] = { + ["end"] = { + ["U"] = { 91974 }, + }, + ["lvl"] = 17, + ["min"] = 11, + ["pre"] = { 40318 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 466 }, + }, + }, + [40320] = { + ["end"] = { + ["U"] = { 91976 }, + }, + ["lvl"] = 17, + ["min"] = 11, + ["obj"] = { + ["I"] = { 60468 }, + }, + ["pre"] = { 40319 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 91976 }, + }, + }, + [40321] = { + ["end"] = { + ["U"] = { 60611 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["U"] = { 91195 }, + }, + ["pre"] = { 80391 }, + ["start"] = { + ["U"] = { 81046 }, + }, + }, + [40322] = { + ["end"] = { + ["U"] = { 60542 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["pre"] = { 40321 }, + ["start"] = { + ["U"] = { 60611 }, + }, + }, + [40323] = { + ["end"] = { + ["U"] = { 60542 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 60469 }, + }, + ["pre"] = { 40322 }, + ["start"] = { + ["U"] = { 60542 }, + }, + }, + [40324] = { + ["end"] = { + ["U"] = { 60542 }, + }, + ["lvl"] = 48, + ["min"] = 40, + ["obj"] = { + ["U"] = { 60544 }, + }, + ["pre"] = { 40323 }, + ["start"] = { + ["U"] = { 60542 }, + }, + }, + [40325] = { + ["end"] = { + ["U"] = { 60540 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 60471 }, + }, + ["pre"] = { 40323 }, + ["start"] = { + ["U"] = { 60540 }, + }, + }, + [40326] = { + ["end"] = { + ["U"] = { 92223 }, + }, + ["lvl"] = 33, + ["min"] = 32, + ["obj"] = { + ["I"] = { 60472 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 92223 }, + }, + }, + [40327] = { + ["end"] = { + ["U"] = { 60480 }, + }, + ["lvl"] = 42, + ["min"] = 35, + ["obj"] = { + ["I"] = { 60473 }, + }, + ["start"] = { + ["U"] = { 60480 }, + }, + }, + [40328] = { + ["end"] = { + ["U"] = { 60481 }, + }, + ["lvl"] = 44, + ["min"] = 38, + ["obj"] = { + ["I"] = { 60474 }, + }, + ["start"] = { + ["U"] = { 60481 }, + }, + }, + [40329] = { + ["end"] = { + ["U"] = { 60479 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["obj"] = { + ["I"] = { 60476 }, + }, + ["start"] = { + ["U"] = { 60479 }, + }, + }, + [40330] = { + ["end"] = { + ["U"] = { 60479 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["start"] = { + ["U"] = { 60452 }, + }, + }, + [40331] = { + ["end"] = { + ["U"] = { 60479 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["obj"] = { + ["I"] = { 60477 }, + ["U"] = { 667 }, + }, + ["pre"] = { 40330 }, + ["start"] = { + ["U"] = { 60479 }, + }, + }, + [40332] = { + ["end"] = { + ["U"] = { 8139 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["pre"] = { 40331 }, + ["start"] = { + ["U"] = { 60479 }, + }, + }, + [40333] = { + ["end"] = { + ["U"] = { 60479 }, + }, + ["lvl"] = 41, + ["min"] = 30, + ["obj"] = { + ["I"] = { 60478 }, + }, + ["pre"] = { 40332 }, + ["start"] = { + ["U"] = { 8139 }, + }, + }, + [40334] = { + ["end"] = { + ["U"] = { 60452 }, + }, + ["lvl"] = 41, + ["min"] = 30, + ["pre"] = { 40333 }, + ["start"] = { + ["U"] = { 60479 }, + }, + }, + [40335] = { + ["end"] = { + ["U"] = { 60456 }, + }, + ["lvl"] = 48, + ["min"] = 44, + ["obj"] = { + ["I"] = { 60482 }, + }, + ["start"] = { + ["U"] = { 60456 }, + }, + }, + [40336] = { + ["end"] = { + ["U"] = { 60451 }, + }, + ["lvl"] = 48, + ["min"] = 44, + ["obj"] = { + ["I"] = { 60483 }, + }, + ["start"] = { + ["U"] = { 60451 }, + }, + }, + [40337] = { + ["end"] = { + ["U"] = { 60460 }, + }, + ["lvl"] = 48, + ["min"] = 42, + ["obj"] = { + ["I"] = { 60484 }, + }, + ["start"] = { + ["U"] = { 60460 }, + }, + }, + [40338] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 60629 }, + }, + ["lvl"] = 12, + ["min"] = 10, + ["obj"] = { + ["U"] = { 60347 }, + }, + ["race"] = 4, + ["start"] = { + ["U"] = { 60629 }, + }, + }, + [40339] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 60629 }, + }, + ["lvl"] = 12, + ["min"] = 10, + ["obj"] = { + ["I"] = { 60494 }, + }, + ["pre"] = { 40338 }, + ["race"] = 4, + ["start"] = { + ["U"] = { 60629 }, + }, + }, + [40340] = { + ["end"] = { + ["U"] = { 80943 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 50203 }, + }, + ["start"] = { + ["U"] = { 80943 }, + }, + }, + [40341] = { + ["end"] = { + ["U"] = { 80943 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 50203 }, + }, + ["start"] = { + ["U"] = { 80943 }, + }, + }, + [40342] = { + ["end"] = { + ["U"] = { 60622 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 60496 }, + }, + ["start"] = { + ["U"] = { 60622 }, + }, + }, + [40343] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 3032 }, + }, + ["lvl"] = 40, + ["min"] = 40, + ["race"] = 32, + ["start"] = { + ["U"] = { 13417 }, + }, + }, + [40344] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 5390 }, + }, + ["lvl"] = 40, + ["min"] = 40, + ["race"] = 32, + ["start"] = { + ["U"] = { 3032 }, + }, + }, + [40345] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 5390 }, + }, + ["lvl"] = 40, + ["min"] = 40, + ["obj"] = { + ["I"] = { 60507 }, + }, + ["pre"] = { 40344 }, + ["race"] = 32, + ["start"] = { + ["U"] = { 5390 }, + }, + }, + [40346] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 5390 }, + }, + ["lvl"] = 40, + ["min"] = 40, + ["obj"] = { + ["U"] = { 60348 }, + }, + ["pre"] = { 40345 }, + ["race"] = 32, + ["start"] = { + ["U"] = { 5390 }, + }, + }, + [40347] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 60863 }, + }, + ["lvl"] = 40, + ["min"] = 40, + ["pre"] = { 40346 }, + ["race"] = 32, + ["start"] = { + ["U"] = { 5390 }, + }, + }, + [40348] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 60863 }, + }, + ["lvl"] = 40, + ["min"] = 40, + ["obj"] = { + ["U"] = { 60349, 60350, 60351 }, + }, + ["pre"] = { 40347 }, + ["race"] = 32, + ["start"] = { + ["U"] = { 60863 }, + }, + }, + [40349] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 10578 }, + }, + ["lvl"] = 40, + ["min"] = 40, + ["race"] = 128, + ["start"] = { + ["U"] = { 3403 }, + }, + }, + [40350] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 10578 }, + }, + ["lvl"] = 40, + ["min"] = 40, + ["obj"] = { + ["I"] = { 60508 }, + }, + ["pre"] = { 40349 }, + ["race"] = 128, + ["start"] = { + ["U"] = { 10578 }, + }, + }, + [40351] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 10578 }, + }, + ["lvl"] = 40, + ["min"] = 40, + ["obj"] = { + ["U"] = { 60352 }, + }, + ["pre"] = { 40350 }, + ["race"] = 128, + ["start"] = { + ["U"] = { 10578 }, + }, + }, + [40352] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 60631 }, + }, + ["lvl"] = 40, + ["min"] = 40, + ["obj"] = { + ["U"] = { 60353 }, + }, + ["pre"] = { 40351 }, + ["race"] = 128, + ["start"] = { + ["U"] = { 10578 }, + }, + }, + [40353] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 60631 }, + }, + ["lvl"] = 40, + ["min"] = 40, + ["obj"] = { + ["U"] = { 60632 }, + }, + ["pre"] = { 40352 }, + ["race"] = 128, + ["start"] = { + ["U"] = { 60631 }, + }, + }, + [40354] = { + ["end"] = { + ["U"] = { 60496 }, + }, + ["lvl"] = 48, + ["min"] = 42, + ["obj"] = { + ["U"] = { 60354 }, + }, + ["start"] = { + ["U"] = { 60496 }, + }, + }, + [40355] = { + ["end"] = { + ["U"] = { 60449 }, + }, + ["lvl"] = 48, + ["min"] = 42, + ["obj"] = { + ["I"] = { 51895 }, + }, + ["start"] = { + ["U"] = { 60449 }, + }, + }, + [40356] = { + ["end"] = { + ["O"] = { 2010870 }, + }, + ["lvl"] = 48, + ["min"] = 42, + ["start"] = { + ["U"] = { 60459 }, + }, + }, + [40357] = { + ["end"] = { + ["U"] = { 60459 }, + }, + ["lvl"] = 48, + ["min"] = 42, + ["pre"] = { 40356 }, + ["start"] = { + ["O"] = { 2010870 }, + }, + }, + [40358] = { + ["end"] = { + ["O"] = { 2010871 }, + }, + ["lvl"] = 48, + ["min"] = 42, + ["pre"] = { 40357 }, + ["start"] = { + ["U"] = { 60459 }, + }, + }, + [40359] = { + ["end"] = { + ["U"] = { 60643 }, + }, + ["lvl"] = 48, + ["min"] = 42, + ["obj"] = { + ["I"] = { 1529, 3860, 10559 }, + }, + ["pre"] = { 40358 }, + ["start"] = { + ["U"] = { 60643 }, + }, + }, + [40360] = { + ["end"] = { + ["O"] = { 2010871 }, + }, + ["lvl"] = 48, + ["min"] = 42, + ["obj"] = { + ["I"] = { 60511 }, + }, + ["pre"] = { 40359 }, + ["start"] = { + ["U"] = { 60643 }, + }, + }, + [40361] = { + ["end"] = { + ["U"] = { 60459 }, + }, + ["lvl"] = 48, + ["min"] = 42, + ["obj"] = { + ["I"] = { 60510, 60512 }, + }, + ["pre"] = { 40360 }, + ["start"] = { + ["O"] = { 2010871 }, + }, + }, + [40362] = { + ["end"] = { + ["U"] = { 60644 }, + }, + ["lvl"] = 48, + ["min"] = 42, + ["obj"] = { + ["U"] = { 60355 }, + }, + ["pre"] = { 40361 }, + ["start"] = { + ["O"] = { 2010873 }, + }, + }, + [40363] = { + ["end"] = { + ["U"] = { 66002 }, + }, + ["lvl"] = 10, + ["min"] = 7, + ["obj"] = { + ["U"] = { 2967 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 66002 }, + }, + }, + [40364] = { + ["end"] = { + ["U"] = { 3064 }, + }, + ["lvl"] = 11, + ["min"] = 8, + ["pre"] = { 40363 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 66002 }, + }, + }, + [40365] = { + ["end"] = { + ["U"] = { 66002 }, + }, + ["lvl"] = 11, + ["min"] = 8, + ["obj"] = { + ["I"] = { 60513 }, + }, + ["pre"] = { 40364 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3064 }, + }, + }, + [40366] = { + ["end"] = { + ["U"] = { 3064 }, + }, + ["lvl"] = 11, + ["min"] = 8, + ["pre"] = { 40365 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 66002 }, + }, + }, + [40367] = { + ["end"] = { + ["U"] = { 66000 }, + }, + ["lvl"] = 20, + ["min"] = 18, + ["obj"] = { + ["U"] = { 60442 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 66000 }, + }, + }, + [40368] = { + ["end"] = { + ["U"] = { 66001 }, + }, + ["lvl"] = 22, + ["min"] = 20, + ["obj"] = { + ["I"] = { 60515 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 66001 }, + }, + }, + [40369] = { + ["end"] = { + ["U"] = { 10118 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["I"] = { 60516 }, + }, + ["pre"] = { 6343 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 10118 }, + }, + }, + [40370] = { + ["end"] = { + ["U"] = { 60657 }, + }, + ["lvl"] = 53, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60517 }, + ["U"] = { 60658 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60657 }, + }, + }, + [40371] = { + ["lvl"] = 15, + ["min"] = 15, + ["obj"] = { + ["I"] = { 83016, 83017, 83018, 83019 }, + }, + ["pre"] = { 80256 }, + ["race"] = 589, + }, + [40372] = { + ["lvl"] = 15, + ["min"] = 15, + ["pre"] = { 40371 }, + ["race"] = 589, + }, + [40373] = { + ["lvl"] = 15, + ["min"] = 15, + ["pre"] = { 40371 }, + ["race"] = 589, + }, + [40374] = { + ["lvl"] = 15, + ["min"] = 15, + ["pre"] = { 40371 }, + ["race"] = 589, + }, + [40375] = { + ["lvl"] = 15, + ["min"] = 15, + ["pre"] = { 40371 }, + ["race"] = 589, + }, + [40376] = { + ["lvl"] = 26, + ["min"] = 24, + ["pre"] = { 40371 }, + ["race"] = 589, + }, + [40377] = { + ["lvl"] = 26, + ["min"] = 24, + ["obj"] = { + ["I"] = { 60148 }, + }, + ["pre"] = { 40376 }, + ["race"] = 589, + }, + [40378] = { + ["lvl"] = 26, + ["min"] = 24, + ["pre"] = { 40377 }, + ["race"] = 589, + }, + [40379] = { + ["lvl"] = 26, + ["min"] = 24, + ["pre"] = { 40378 }, + ["race"] = 589, + }, + [40380] = { + ["lvl"] = 46, + ["min"] = 44, + ["pre"] = { 40379 }, + ["race"] = 589, + }, + [40381] = { + ["lvl"] = 46, + ["min"] = 44, + ["pre"] = { 40380 }, + ["race"] = 589, + }, + [40382] = { + ["end"] = { + ["U"] = { 7878 }, + }, + ["lvl"] = 46, + ["min"] = 44, + ["obj"] = { + ["U"] = { 60318 }, + }, + ["pre"] = { 40381 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 7878 }, + }, + }, + [40383] = { + ["lvl"] = 46, + ["min"] = 44, + ["pre"] = { 40382 }, + ["race"] = 589, + }, + [40384] = { + ["lvl"] = 46, + ["min"] = 44, + ["pre"] = { 40383 }, + ["race"] = 589, + }, + [40385] = { + ["end"] = { + ["U"] = { 60670 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["race"] = 589, + }, + [40386] = { + ["end"] = { + ["U"] = { 60677 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 60673, 60674 }, + }, + ["pre"] = { 40385 }, + ["race"] = 589, + }, + [40387] = { + ["end"] = { + ["U"] = { 80877 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 40386 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60677 }, + }, + }, + [40388] = { + ["end"] = { + ["U"] = { 3139 }, + }, + ["lvl"] = 10, + ["min"] = 3, + ["obj"] = { + ["I"] = {}, + }, + ["race"] = 434, + ["start"] = { + ["I"] = { 60520 }, + }, + }, + [40389] = { + ["end"] = { + ["U"] = { 10540 }, + }, + ["lvl"] = 10, + ["min"] = 7, + ["pre"] = { 826 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3188 }, + }, + }, + [40390] = { + ["end"] = { + ["U"] = { 3188 }, + }, + ["lvl"] = 10, + ["min"] = 5, + ["obj"] = { + ["I"] = {}, + }, + ["race"] = 434, + ["start"] = { + ["I"] = { 60521 }, + }, + }, + [40391] = { + ["end"] = { + ["U"] = { 3057 }, + }, + ["lvl"] = 10, + ["min"] = 7, + ["pre"] = { 40390 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3188 }, + }, + }, + [40392] = { + ["lvl"] = 24, + ["min"] = 24, + ["pre"] = { 40371 }, + ["race"] = 589, + }, + [40393] = { + ["lvl"] = 44, + ["min"] = 44, + ["pre"] = { 40379 }, + ["race"] = 589, + }, + [40394] = { + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 40384 }, + ["race"] = 589, + }, + [40395] = { + ["end"] = { + ["U"] = { 392 }, + }, + ["lvl"] = 20, + ["min"] = 15, + ["start"] = { + ["O"] = { 2010884 }, + }, + }, + [40396] = { + ["end"] = { + ["U"] = { 392 }, + }, + ["lvl"] = 22, + ["min"] = 15, + ["obj"] = { + ["I"] = { 60526 }, + }, + ["pre"] = { 40395 }, + ["start"] = { + ["U"] = { 392 }, + }, + }, + [40397] = { + ["end"] = { + ["U"] = { 60710 }, + }, + ["lvl"] = 52, + ["min"] = 47, + ["obj"] = { + ["I"] = { 60532 }, + }, + ["start"] = { + ["U"] = { 60710 }, + }, + }, + [40398] = { + ["end"] = { + ["U"] = { 60710 }, + }, + ["lvl"] = 53, + ["min"] = 47, + ["obj"] = { + ["I"] = { 60533 }, + }, + ["pre"] = { 40397 }, + ["start"] = { + ["U"] = { 60710 }, + }, + }, + [40399] = { + ["end"] = { + ["U"] = { 60710 }, + }, + ["lvl"] = 53, + ["min"] = 47, + ["obj"] = { + ["I"] = { 60534 }, + ["U"] = { 14523 }, + }, + ["pre"] = { 40398 }, + ["start"] = { + ["U"] = { 60710 }, + }, + }, + [40400] = { + ["end"] = { + ["U"] = { 60710 }, + }, + ["lvl"] = 53, + ["min"] = 47, + ["obj"] = { + ["I"] = { 60535 }, + }, + ["pre"] = { 40399 }, + ["start"] = { + ["U"] = { 60710 }, + }, + }, + [40401] = { + ["end"] = { + ["U"] = { 60710 }, + }, + ["lvl"] = 54, + ["min"] = 47, + ["obj"] = { + ["U"] = { 60370 }, + }, + ["pre"] = { 40400 }, + ["start"] = { + ["U"] = { 60710 }, + }, + }, + [40402] = { + ["end"] = { + ["U"] = { 4502 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["I"] = { 60583 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4502 }, + }, + }, + [40403] = { + ["end"] = { + ["U"] = { 80960 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["pre"] = { 40402 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4502 }, + }, + }, + [40404] = { + ["end"] = { + ["U"] = { 4502 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["pre"] = { 40403 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 80960 }, + }, + }, + [40405] = { + ["end"] = { + ["U"] = { 4879 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["I"] = { 12205 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4879 }, + }, + }, + [40406] = { + ["end"] = { + ["U"] = { 13476 }, + }, + ["lvl"] = 38, + ["min"] = 33, + ["obj"] = { + ["I"] = { 60588 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 13476 }, + }, + }, + [40407] = { + ["end"] = { + ["U"] = { 60731 }, + }, + ["lvl"] = 39, + ["min"] = 32, + ["obj"] = { + ["I"] = { 60589 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60731 }, + }, + }, + [40408] = { + ["end"] = { + ["U"] = { 4792 }, + }, + ["lvl"] = 38, + ["min"] = 33, + ["obj"] = { + ["I"] = { 60592 }, + }, + ["start"] = { + ["U"] = { 4792 }, + }, + }, + [40409] = { + ["end"] = { + ["U"] = { 60728 }, + }, + ["lvl"] = 38, + ["min"] = 33, + ["obj"] = { + ["I"] = { 60594 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60728 }, + }, + }, + [40410] = { + ["end"] = { + ["U"] = { 60728 }, + }, + ["lvl"] = 38, + ["min"] = 33, + ["obj"] = { + ["I"] = { 60595 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60728 }, + }, + }, + [40411] = { + ["end"] = { + ["U"] = { 2616 }, + }, + ["lvl"] = 38, + ["min"] = 33, + ["obj"] = { + ["I"] = { 60597 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2616 }, + }, + }, + [40412] = { + ["end"] = { + ["U"] = { 4792 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["race"] = 589, + ["start"] = { + ["U"] = { 60733 }, + }, + }, + [40413] = { + ["end"] = { + ["U"] = { 60728 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["race"] = 589, + ["start"] = { + ["U"] = { 60733 }, + }, + }, + [40414] = { + ["end"] = { + ["U"] = { 60732 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["obj"] = { + ["I"] = { 60600 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60732 }, + }, + }, + [40415] = { + ["end"] = { + ["U"] = { 60727 }, + }, + ["lvl"] = 37, + ["min"] = 32, + ["obj"] = { + ["I"] = { 60602, 60603 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60727 }, + }, + }, + [40416] = { + ["end"] = { + ["U"] = { 1319 }, + }, + ["lvl"] = 37, + ["min"] = 32, + ["race"] = 589, + ["start"] = { + ["U"] = { 60729 }, + }, + }, + [40417] = { + ["end"] = { + ["U"] = { 60729 }, + }, + ["lvl"] = 37, + ["min"] = 32, + ["pre"] = { 40416 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1319 }, + }, + }, + [40418] = { + ["end"] = { + ["U"] = { 60730 }, + }, + ["lvl"] = 37, + ["min"] = 32, + ["obj"] = { + ["U"] = { 4352 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60730 }, + }, + }, + [40419] = { + ["end"] = { + ["U"] = { 60759 }, + }, + ["lvl"] = 47, + ["min"] = 45, + ["race"] = 434, + ["start"] = { + ["U"] = { 7623 }, + }, + }, + [40420] = { + ["end"] = { + ["U"] = { 60759 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["obj"] = { + ["U"] = { 60374 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60759 }, + }, + }, + [40421] = { + ["end"] = { + ["U"] = { 60761 }, + }, + ["lvl"] = 53, + ["min"] = 45, + ["obj"] = { + ["U"] = { 6004, 6005 }, + }, + ["pre"] = { 40420 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60761 }, + }, + }, + [40422] = { + ["end"] = { + ["U"] = { 60761 }, + }, + ["lvl"] = 55, + ["min"] = 45, + ["obj"] = { + ["U"] = { 6007, 6008, 6009 }, + }, + ["pre"] = { 40421 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60761 }, + }, + }, + [40423] = { + ["end"] = { + ["U"] = { 60760 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60606 }, + }, + ["pre"] = { 40420 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60760 }, + }, + }, + [40424] = { + ["end"] = { + ["U"] = { 7623 }, + }, + ["lvl"] = 55, + ["min"] = 45, + ["pre"] = { 40422, 40423 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60759 }, + }, + }, + [40425] = { + ["end"] = { + ["U"] = { 338 }, + }, + ["lvl"] = 63, + ["min"] = 58, + ["obj"] = { + ["I"] = { 60621 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 338 }, + }, + }, + [40426] = { + ["end"] = { + ["U"] = { 80451 }, + }, + ["lvl"] = 63, + ["min"] = 58, + ["obj"] = { + ["I"] = { 60623 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 80451 }, + }, + }, + [40427] = { + ["end"] = { + ["U"] = { 80450 }, + }, + ["lvl"] = 63, + ["min"] = 58, + ["obj"] = { + ["U"] = { 93107 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 80450 }, + }, + }, + [40428] = { + ["end"] = { + ["U"] = { 60855 }, + }, + ["lvl"] = 48, + ["min"] = 45, + ["obj"] = { + ["U"] = { 60838, 60839, 60840, 60842 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60855 }, + }, + }, + [40429] = { + ["end"] = { + ["U"] = { 60855 }, + }, + ["lvl"] = 48, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60627 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60855 }, + }, + }, + [40430] = { + ["end"] = { + ["U"] = { 60795 }, + }, + ["lvl"] = 54, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60628 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60795 }, + }, + }, + [40431] = { + ["end"] = { + ["U"] = { 60795 }, + }, + ["lvl"] = 54, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60630 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60795 }, + }, + }, + [40432] = { + ["end"] = { + ["U"] = { 60793 }, + }, + ["lvl"] = 53, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60633, 60634 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60793 }, + }, + }, + [40433] = { + ["end"] = { + ["U"] = { 60793 }, + }, + ["lvl"] = 45, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60635 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60793 }, + }, + }, + [40434] = { + ["end"] = { + ["U"] = { 60793 }, + }, + ["lvl"] = 54, + ["min"] = 45, + ["obj"] = { + ["U"] = { 6009 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60793 }, + }, + }, + [40435] = { + ["end"] = { + ["U"] = { 60794 }, + }, + ["lvl"] = 53, + ["min"] = 47, + ["obj"] = { + ["I"] = { 60637 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60794 }, + }, + }, + [40436] = { + ["end"] = { + ["U"] = { 60862 }, + }, + ["lvl"] = 54, + ["min"] = 45, + ["race"] = 589, + ["start"] = { + ["U"] = { 60792 }, + }, + }, + [40437] = { + ["end"] = { + ["U"] = { 60792 }, + }, + ["lvl"] = 54, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60638 }, + }, + ["pre"] = { 40436 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60862 }, + }, + }, + [40438] = { + ["end"] = { + ["U"] = { 5385 }, + }, + ["lvl"] = 54, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60640 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60791 }, + }, + }, + [40439] = { + ["end"] = { + ["U"] = { 2543 }, + }, + ["lvl"] = 54, + ["min"] = 45, + ["pre"] = { 40438 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5385 }, + }, + }, + [40440] = { + ["end"] = { + ["U"] = { 5385 }, + }, + ["lvl"] = 54, + ["min"] = 45, + ["pre"] = { 40439 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2543 }, + }, + }, + [40441] = { + ["end"] = { + ["U"] = { 5385 }, + }, + ["lvl"] = 54, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60643, 60644 }, + }, + ["pre"] = { 40440 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5385 }, + }, + }, + [40442] = { + ["end"] = { + ["U"] = { 14463 }, + }, + ["lvl"] = 60, + ["min"] = 45, + ["pre"] = { 40441 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5385 }, + }, + }, + [40443] = { + ["end"] = { + ["U"] = { 14463 }, + }, + ["lvl"] = 60, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60645 }, + }, + ["pre"] = { 40442 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14463 }, + }, + }, + [40444] = { + ["end"] = { + ["U"] = { 5385 }, + }, + ["lvl"] = 60, + ["min"] = 45, + ["pre"] = { 40443 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 14463 }, + }, + }, + [40445] = { + ["end"] = { + ["U"] = { 60816 }, + }, + ["lvl"] = 10, + ["min"] = 5, + ["obj"] = { + ["U"] = { 2964, 2965 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60816 }, + }, + }, + [40446] = { + ["end"] = { + ["U"] = { 60822 }, + }, + ["lvl"] = 12, + ["min"] = 7, + ["obj"] = { + ["U"] = { 60847, 60848, 60849 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60822 }, + }, + }, + [40447] = { + ["end"] = { + ["U"] = { 60823 }, + }, + ["lvl"] = 12, + ["min"] = 7, + ["obj"] = { + ["I"] = { 60651, 60652, 60653 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60823 }, + }, + }, + [40448] = { + ["end"] = { + ["U"] = { 60782 }, + }, + ["lvl"] = 34, + ["min"] = 27, + ["race"] = 589, + ["start"] = { + ["U"] = { 60780 }, + }, + }, + [40449] = { + ["end"] = { + ["U"] = { 60781 }, + }, + ["lvl"] = 34, + ["min"] = 27, + ["obj"] = { + ["U"] = { 2560, 2563 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60781 }, + }, + }, + [40450] = { + ["end"] = { + ["U"] = { 60779 }, + }, + ["lvl"] = 34, + ["min"] = 27, + ["obj"] = { + ["I"] = { 10558 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60781 }, + }, + }, + [40451] = { + ["end"] = { + ["U"] = { 60827 }, + }, + ["lvl"] = 36, + ["min"] = 28, + ["obj"] = { + ["U"] = { 2557 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60827 }, + }, + }, + [40452] = { + ["end"] = { + ["U"] = { 60827 }, + }, + ["lvl"] = 37, + ["min"] = 28, + ["obj"] = { + ["U"] = { 91784, 91785, 91786 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60827 }, + }, + }, + [40453] = { + ["end"] = { + ["U"] = { 60788 }, + }, + ["lvl"] = 34, + ["min"] = 27, + ["obj"] = { + ["I"] = { 60658 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60788 }, + }, + }, + [40454] = { + ["end"] = { + ["U"] = { 91710 }, + }, + ["lvl"] = 34, + ["min"] = 27, + ["race"] = 589, + ["start"] = { + ["U"] = { 60788 }, + }, + }, + [40455] = { + ["end"] = { + ["U"] = { 60788 }, + }, + ["lvl"] = 34, + ["min"] = 27, + ["pre"] = { 40454 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 91710 }, + }, + }, + [40456] = { + ["end"] = { + ["U"] = { 50760 }, + }, + ["lvl"] = 6, + ["min"] = 1, + ["race"] = 589, + ["start"] = { + ["U"] = { 50760 }, + }, + }, + [40457] = { + ["end"] = { + ["U"] = { 50530 }, + }, + ["lvl"] = 6, + ["min"] = 1, + ["race"] = 434, + ["start"] = { + ["U"] = { 50530 }, + }, + }, + [40458] = { + ["end"] = { + ["U"] = { 14625 }, + }, + ["lvl"] = 54, + ["min"] = 47, + ["obj"] = { + ["I"] = { 60662 }, + }, + ["start"] = { + ["U"] = { 14625 }, + }, + }, + [40459] = { + ["end"] = { + ["U"] = { 60833 }, + }, + ["lvl"] = 54, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60711 }, + }, + ["start"] = { + ["U"] = { 60834 }, + }, + }, + [40460] = { + ["end"] = { + ["U"] = { 60833 }, + }, + ["lvl"] = 54, + ["min"] = 45, + ["obj"] = { + ["U"] = { 60375 }, + }, + ["pre"] = { 40459 }, + ["start"] = { + ["U"] = { 60833 }, + }, + }, + [40461] = { + ["end"] = { + ["U"] = { 60833 }, + }, + ["lvl"] = 54, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60663 }, + }, + ["pre"] = { 40460 }, + ["start"] = { + ["U"] = { 60833 }, + }, + }, + [40462] = { + ["end"] = { + ["U"] = { 60832 }, + }, + ["lvl"] = 50, + ["min"] = 45, + ["obj"] = { + ["U"] = { 60830 }, + }, + ["pre"] = { 40461 }, + ["start"] = { + ["U"] = { 60832 }, + }, + }, + [40463] = { + ["end"] = { + ["U"] = { 60833 }, + }, + ["lvl"] = 51, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60664 }, + ["U"] = { 60735 }, + }, + ["pre"] = { 40461 }, + ["start"] = { + ["U"] = { 60833 }, + }, + }, + [40464] = { + ["end"] = { + ["U"] = { 60833 }, + }, + ["lvl"] = 56, + ["min"] = 45, + ["obj"] = { + ["U"] = { 8904 }, + }, + ["pre"] = { 40461 }, + ["start"] = { + ["U"] = { 60833 }, + }, + }, + [40465] = { + ["end"] = { + ["U"] = { 60834 }, + }, + ["lvl"] = 55, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60669 }, + }, + ["pre"] = { 40461 }, + ["start"] = { + ["U"] = { 60834 }, + }, + }, + [40466] = { + ["end"] = { + ["U"] = { 60834 }, + }, + ["lvl"] = 55, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60670 }, + }, + ["pre"] = { 40465 }, + ["start"] = { + ["U"] = { 60834 }, + }, + }, + [40467] = { + ["end"] = { + ["U"] = { 60834 }, + }, + ["lvl"] = 55, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60671 }, + }, + ["pre"] = { 40466 }, + ["start"] = { + ["U"] = { 60834 }, + }, + }, + [40468] = { + ["end"] = { + ["U"] = { 60832 }, + }, + ["lvl"] = 50, + ["min"] = 45, + ["obj"] = { + ["U"] = { 60721 }, + }, + ["pre"] = { 40462 }, + ["start"] = { + ["U"] = { 60832 }, + }, + }, + [40469] = { + ["end"] = { + ["U"] = { 60832 }, + }, + ["lvl"] = 51, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60674 }, + }, + ["pre"] = { 40461 }, + ["start"] = { + ["U"] = { 60832 }, + }, + }, + [40470] = { + ["end"] = { + ["U"] = { 8934 }, + }, + ["lvl"] = 10, + ["min"] = 8, + ["obj"] = { + ["I"] = { 60676 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 8934 }, + }, + }, + [40471] = { + ["end"] = { + ["U"] = { 8934 }, + }, + ["lvl"] = 14, + ["min"] = 10, + ["obj"] = { + ["I"] = { 60677 }, + }, + ["pre"] = { 40470 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 8934 }, + }, + }, + [40472] = { + ["end"] = { + ["U"] = { 5518 }, + }, + ["lvl"] = 14, + ["min"] = 8, + ["pre"] = { 40471 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 8934 }, + }, + }, + [40473] = { + ["end"] = { + ["U"] = { 8934 }, + }, + ["lvl"] = 14, + ["min"] = 8, + ["pre"] = { 40472 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5518 }, + }, + }, + [40474] = { + ["end"] = { + ["U"] = { 60858 }, + }, + ["lvl"] = 15, + ["min"] = 8, + ["pre"] = { 40473 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 8934 }, + }, + }, + [40475] = { + ["end"] = { + ["U"] = { 60858 }, + }, + ["lvl"] = 15, + ["min"] = 10, + ["obj"] = { + ["I"] = { 60681 }, + }, + ["pre"] = { 40474 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60858 }, + }, + }, + [40476] = { + ["end"] = { + ["U"] = { 60858 }, + }, + ["lvl"] = 17, + ["min"] = 10, + ["obj"] = { + ["U"] = { 60375 }, + }, + ["pre"] = { 40475 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60858 }, + }, + }, + [40477] = { + ["end"] = { + ["U"] = { 60858 }, + }, + ["lvl"] = 17, + ["min"] = 15, + ["obj"] = { + ["I"] = { 60682, 60683 }, + }, + ["pre"] = { 40476 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60858 }, + }, + }, + [40478] = { + ["end"] = { + ["U"] = { 60858 }, + }, + ["lvl"] = 19, + ["min"] = 15, + ["obj"] = { + ["U"] = { 61963 }, + }, + ["pre"] = { 40477 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60858 }, + }, + }, + [40479] = { + ["end"] = { + ["U"] = { 8934 }, + }, + ["lvl"] = 20, + ["min"] = 15, + ["pre"] = { 40478 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60858 }, + }, + }, + [40480] = { + ["end"] = { + ["U"] = { 3091 }, + }, + ["lvl"] = 20, + ["min"] = 15, + ["pre"] = { 40479 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 8934 }, + }, + }, + [40481] = { + ["end"] = { + ["U"] = { 3091 }, + }, + ["lvl"] = 22, + ["min"] = 15, + ["obj"] = { + ["I"] = { 60688 }, + }, + ["pre"] = { 40480 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3091 }, + }, + }, + [40482] = { + ["end"] = { + ["U"] = { 3091 }, + }, + ["lvl"] = 22, + ["min"] = 15, + ["obj"] = { + ["I"] = { 60689 }, + }, + ["pre"] = { 40481 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3091 }, + }, + }, + [40483] = { + ["end"] = { + ["U"] = { 60858 }, + }, + ["lvl"] = 25, + ["min"] = 15, + ["pre"] = { 40482 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3091 }, + }, + }, + [40484] = { + ["end"] = { + ["U"] = { 264 }, + }, + ["lvl"] = 25, + ["min"] = 15, + ["pre"] = { 40483 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60858 }, + }, + }, + [40485] = { + ["end"] = { + ["U"] = { 60858 }, + }, + ["lvl"] = 25, + ["min"] = 15, + ["obj"] = { + ["U"] = { 60854, 60859 }, + }, + ["pre"] = { 40484 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 264 }, + }, + }, + [40486] = { + ["end"] = { + ["U"] = { 60869 }, + }, + ["lvl"] = 50, + ["min"] = 45, + ["obj"] = { + ["U"] = { 60376 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60869 }, + }, + }, + [40487] = { + ["end"] = { + ["U"] = { 2784 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["pre"] = { 40486 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60869 }, + }, + }, + [40488] = { + ["end"] = { + ["U"] = { 60869 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["pre"] = { 40487 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2784 }, + }, + }, + [40489] = { + ["end"] = { + ["U"] = { 2784 }, + }, + ["lvl"] = 57, + ["min"] = 45, + ["obj"] = { + ["U"] = { 60737 }, + }, + ["pre"] = { 40488 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60869 }, + }, + }, + [40490] = { + ["end"] = { + ["U"] = { 60870 }, + }, + ["lvl"] = 54, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60697, 60698 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60870 }, + }, + }, + [40491] = { + ["end"] = { + ["U"] = { 60762 }, + }, + ["lvl"] = 54, + ["min"] = 47, + ["obj"] = { + ["I"] = { 22528 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60762 }, + }, + }, + [40492] = { + ["end"] = { + ["U"] = { 60763 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60712 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60763 }, + }, + }, + [40493] = { + ["end"] = { + ["U"] = { 60763 }, + }, + ["lvl"] = 54, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60713 }, + }, + ["pre"] = { 40492 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60763 }, + }, + }, + [40494] = { + ["end"] = { + ["U"] = { 60774 }, + }, + ["lvl"] = 53, + ["min"] = 45, + ["obj"] = { + ["U"] = { 7033, 7034, 7035 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60774 }, + }, + }, + [40495] = { + ["end"] = { + ["U"] = { 60774 }, + }, + ["lvl"] = 60, + ["min"] = 48, + ["obj"] = { + ["I"] = { 60714 }, + }, + ["pre"] = { 40494 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60774 }, + }, + }, + [40496] = { + ["end"] = { + ["U"] = { 60765 }, + }, + ["lvl"] = 56, + ["min"] = 54, + ["obj"] = { + ["I"] = { 60716 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60765 }, + }, + }, + [40497] = { + ["end"] = { + ["U"] = { 60765 }, + }, + ["lvl"] = 56, + ["min"] = 47, + ["obj"] = { + ["I"] = { 60731 }, + }, + ["pre"] = { 40496 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60765 }, + }, + }, + [40498] = { + ["end"] = { + ["U"] = { 60765 }, + }, + ["lvl"] = 58, + ["min"] = 50, + ["obj"] = { + ["U"] = { 10268 }, + }, + ["pre"] = { 40497 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60765 }, + }, + }, + [40499] = { + ["end"] = { + ["U"] = { 60773 }, + }, + ["lvl"] = 54, + ["min"] = 47, + ["obj"] = { + ["I"] = { 60721, 60722 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60773 }, + }, + }, + [40500] = { + ["end"] = { + ["U"] = { 60769 }, + }, + ["lvl"] = 58, + ["min"] = 50, + ["obj"] = { + ["I"] = { 60723 }, + ["U"] = { 7029 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60769 }, + }, + }, + [40501] = { + ["end"] = { + ["U"] = { 4949 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["race"] = 434, + ["start"] = { + ["U"] = { 60772 }, + }, + }, + [40502] = { + ["end"] = { + ["U"] = { 3144 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["pre"] = { 40501 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4949 }, + }, + }, + [40503] = { + ["end"] = { + ["U"] = { 60770 }, + }, + ["lvl"] = 52, + ["min"] = 45, + ["pre"] = { 40502 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3144 }, + }, + }, + [40504] = { + ["end"] = { + ["U"] = { 60770 }, + }, + ["lvl"] = 57, + ["min"] = 45, + ["obj"] = { + ["U"] = { 60737 }, + }, + ["pre"] = { 40503 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60770 }, + }, + }, + [40505] = { + ["end"] = { + ["U"] = { 60770 }, + }, + ["lvl"] = 56, + ["min"] = 48, + ["obj"] = { + ["O"] = { 2010905, 2010906, 2010907 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60770 }, + }, + }, + [40506] = { + ["end"] = { + ["U"] = { 60769 }, + }, + ["lvl"] = 56, + ["min"] = 48, + ["pre"] = { 40505 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60770 }, + }, + }, + [40507] = { + ["end"] = { + ["U"] = { 60770 }, + }, + ["lvl"] = 56, + ["min"] = 48, + ["obj"] = { + ["I"] = { 60737 }, + }, + ["pre"] = { 40506 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60769 }, + }, + }, + [40508] = { + ["end"] = { + ["U"] = { 60770 }, + }, + ["lvl"] = 57, + ["min"] = 50, + ["obj"] = { + ["I"] = { 60738 }, + }, + ["pre"] = { 40507 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60770 }, + }, + }, + [40509] = { + ["end"] = { + ["U"] = { 60770 }, + }, + ["lvl"] = 59, + ["min"] = 50, + ["obj"] = { + ["U"] = { 9736 }, + }, + ["pre"] = { 40508 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60770 }, + }, + }, + [40510] = { + ["end"] = { + ["U"] = { 60872 }, + }, + ["lvl"] = 54, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60740 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60872 }, + }, + }, + [40511] = { + ["end"] = { + ["U"] = { 2788 }, + }, + ["lvl"] = 35, + ["min"] = 28, + ["race"] = 589, + ["start"] = { + ["U"] = { 60786 }, + }, + }, + [40512] = { + ["end"] = { + ["U"] = { 60786 }, + }, + ["lvl"] = 35, + ["min"] = 28, + ["obj"] = { + ["I"] = { 60741 }, + }, + ["pre"] = { 40511 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2788 }, + }, + }, + [40513] = { + ["end"] = { + ["U"] = { 60846 }, + }, + ["lvl"] = 11, + ["min"] = 5, + ["obj"] = { + ["I"] = { 60744 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60846 }, + }, + }, + [40514] = { + ["end"] = { + ["U"] = { 80405 }, + }, + ["lvl"] = 10, + ["min"] = 4, + ["race"] = 589, + ["start"] = { + ["U"] = { 60874 }, + }, + }, + [40515] = { + ["end"] = { + ["U"] = { 60872 }, + }, + ["lvl"] = 10, + ["min"] = 6, + ["race"] = 589, + ["start"] = { + ["U"] = { 60875 }, + }, + }, + [40516] = { + ["end"] = { + ["U"] = { 60872 }, + }, + ["lvl"] = 10, + ["min"] = 6, + ["obj"] = { + ["I"] = { 60754 }, + }, + ["pre"] = { 40515 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60872 }, + }, + }, + [40517] = { + ["end"] = { + ["U"] = { 60875 }, + }, + ["lvl"] = 10, + ["min"] = 6, + ["pre"] = { 40516 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60872 }, + }, + }, + [40518] = { + ["end"] = { + ["U"] = { 60877 }, + }, + ["lvl"] = 12, + ["min"] = 7, + ["obj"] = { + ["I"] = { 60756 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60877 }, + }, + }, + [40519] = { + ["end"] = { + ["U"] = { 60856 }, + }, + ["lvl"] = 46, + ["min"] = 40, + ["obj"] = { + ["I"] = { 60758 }, + }, + ["start"] = { + ["U"] = { 60856 }, + }, + }, + [40520] = { + ["end"] = { + ["U"] = { 60751 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 60760, 60761 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60751 }, + }, + }, + [40521] = { + ["end"] = { + ["U"] = { 60752 }, + }, + ["lvl"] = 47, + ["min"] = 40, + ["obj"] = { + ["I"] = { 60763 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60752 }, + }, + }, + [40522] = { + ["end"] = { + ["U"] = { 7724 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["race"] = 434, + ["start"] = { + ["U"] = { 60752 }, + }, + }, + [40523] = { + ["end"] = { + ["U"] = { 60752 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["pre"] = { 40522 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 7724 }, + }, + }, + [40524] = { + ["end"] = { + ["U"] = { 10540 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["U"] = { 60377 }, + }, + ["pre"] = { 40523 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60752 }, + }, + }, + [40525] = { + ["end"] = { + ["U"] = { 60749 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["pre"] = { 40524 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 10540 }, + }, + }, + [40526] = { + ["end"] = { + ["U"] = { 60749 }, + }, + ["lvl"] = 48, + ["min"] = 40, + ["obj"] = { + ["U"] = { 5645, 5646, 5647 }, + }, + ["pre"] = { 40525 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60749 }, + }, + }, + [40527] = { + ["end"] = { + ["U"] = { 60749 }, + }, + ["lvl"] = 48, + ["min"] = 40, + ["obj"] = { + ["U"] = { 7267, 7797 }, + }, + ["pre"] = { 40526 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60749 }, + }, + }, + [40528] = { + ["end"] = { + ["U"] = { 60750 }, + }, + ["lvl"] = 43, + ["min"] = 37, + ["obj"] = { + ["I"] = { 3712 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60750 }, + }, + }, + [40529] = { + ["end"] = { + ["U"] = { 60858 }, + }, + ["lvl"] = 25, + ["min"] = 15, + ["obj"] = { + ["U"] = { 60381 }, + }, + ["pre"] = { 40484 }, + ["race"] = 589, + ["start"] = { + ["I"] = { 60767 }, + }, + }, + [40530] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 66005 }, + }, + ["lvl"] = 40, + ["min"] = 40, + ["race"] = 2, + ["start"] = { + ["U"] = { 3344 }, + }, + }, + [40531] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 66005 }, + }, + ["lvl"] = 40, + ["min"] = 40, + ["obj"] = { + ["I"] = { 60768 }, + }, + ["pre"] = { 40530 }, + ["race"] = 2, + ["start"] = { + ["U"] = { 66005 }, + }, + }, + [40532] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 66004 }, + }, + ["lvl"] = 40, + ["min"] = 40, + ["obj"] = { + ["U"] = { 60378 }, + }, + ["pre"] = { 40531 }, + ["race"] = 2, + ["start"] = { + ["U"] = { 66005 }, + }, + }, + [40533] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 66004 }, + }, + ["lvl"] = 40, + ["min"] = 40, + ["obj"] = { + ["U"] = { 60379 }, + }, + ["pre"] = { 40532 }, + ["race"] = 2, + ["start"] = { + ["U"] = { 66004 }, + }, + }, + [40534] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 66004 }, + }, + ["lvl"] = 40, + ["min"] = 40, + ["obj"] = { + ["U"] = { 60380 }, + }, + ["pre"] = { 40533 }, + ["race"] = 2, + ["start"] = { + ["U"] = { 66004 }, + }, + }, + [40535] = { + ["end"] = { + ["U"] = { 60818 }, + }, + ["lvl"] = 7, + ["min"] = 5, + ["obj"] = { + ["I"] = { 7097 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60818 }, + }, + }, + [40536] = { + ["end"] = { + ["U"] = { 60818 }, + }, + ["lvl"] = 7, + ["min"] = 5, + ["obj"] = { + ["U"] = { 60382 }, + }, + ["pre"] = { 40535 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60818 }, + }, + }, + [40537] = { + ["end"] = { + ["U"] = { 60818 }, + }, + ["lvl"] = 8, + ["min"] = 5, + ["obj"] = { + ["I"] = { 60769 }, + }, + ["pre"] = { 40536 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60818 }, + }, + }, + [40538] = { + ["end"] = { + ["U"] = { 60775 }, + }, + ["lvl"] = 52, + ["min"] = 47, + ["obj"] = { + ["U"] = { 60713 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60775 }, + }, + }, + [40539] = { + ["end"] = { + ["U"] = { 60775 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["U"] = { 60736 }, + }, + ["pre"] = { 40538 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60775 }, + }, + }, + [40540] = { + ["end"] = { + ["U"] = { 60946 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 3712 }, + }, + ["start"] = { + ["U"] = { 60946 }, + }, + }, + [40541] = { + ["end"] = { + ["U"] = { 60946 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["U"] = { 60383, 60384 }, + }, + ["pre"] = { 40540 }, + ["start"] = { + ["U"] = { 60946 }, + }, + }, + [40542] = { + ["end"] = { + ["U"] = { 9660 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["pre"] = { 40541 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60946 }, + }, + }, + [40543] = { + ["end"] = { + ["U"] = { 14740 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["pre"] = { 40541 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60946 }, + }, + }, + [40544] = { + ["end"] = { + ["U"] = { 12919 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["pre"] = { 40543 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 14740 }, + }, + }, + [40545] = { + ["end"] = { + ["U"] = { 12919 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["pre"] = { 40542 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5635 }, + }, + }, + [40546] = { + ["end"] = { + ["U"] = { 60946 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["pre"] = { 40545 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 12919 }, + }, + }, + [40547] = { + ["end"] = { + ["U"] = { 60946 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["pre"] = { 40544 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 12919 }, + }, + }, + [40548] = { + ["end"] = { + ["U"] = { 5088 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["pre"] = { 1284 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4944 }, + }, + }, + [40549] = { + ["end"] = { + ["U"] = { 5088 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["I"] = { 60810 }, + }, + ["pre"] = { 40548 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5088 }, + }, + }, + [40550] = { + ["end"] = { + ["U"] = { 3442 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["pre"] = { 40549 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5088 }, + }, + }, + [40551] = { + ["end"] = { + ["U"] = { 3442 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["I"] = { 60811 }, + }, + ["pre"] = { 40550 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3442 }, + }, + }, + [40552] = { + ["end"] = { + ["U"] = { 5088 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["pre"] = { 40551 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3442 }, + }, + }, + [40553] = { + ["end"] = { + ["U"] = { 4944 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["pre"] = { 40552 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5088 }, + }, + }, + [40554] = { + ["end"] = { + ["U"] = { 4944 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["U"] = { 60385, 60386, 60387 }, + }, + ["pre"] = { 40553 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4944 }, + }, + }, + [40555] = { + ["end"] = { + ["O"] = { 2010920 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["pre"] = { 40554 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4944 }, + }, + }, + [40556] = { + ["end"] = { + ["U"] = { 4944 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["pre"] = { 40555 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 2010920 }, + }, + }, + [40557] = { + ["end"] = { + ["U"] = { 5088 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["pre"] = { 40556 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4944 }, + }, + }, + [40558] = { + ["end"] = { + ["U"] = { 4944 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["U"] = { 60388 }, + }, + ["pre"] = { 40557 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5088 }, + }, + }, + [40559] = { + ["end"] = { + ["U"] = { 4944 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["I"] = { 60812, 60813, 60814 }, + }, + ["pre"] = { 40558 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4944 }, + }, + }, + [40560] = { + ["end"] = { + ["U"] = { 60731 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["pre"] = { 40559 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4944 }, + }, + }, + [40561] = { + ["end"] = { + ["U"] = { 60731 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["I"] = { 1705, 60815, 60816 }, + }, + ["pre"] = { 40560 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60731 }, + }, + }, + [40562] = { + ["end"] = { + ["U"] = { 4944 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["U"] = { 60389 }, + }, + ["pre"] = { 40561 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60731 }, + }, + }, + [40563] = { + ["end"] = { + ["U"] = { 5088 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["pre"] = { 40562 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4944 }, + }, + }, + [40564] = { + ["end"] = { + ["U"] = { 4944 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["U"] = { 60390 }, + }, + ["pre"] = { 40563 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5088 }, + }, + }, + [40565] = { + ["end"] = { + ["U"] = { 4944 }, + }, + ["lvl"] = 43, + ["min"] = 30, + ["obj"] = { + ["I"] = { 60817 }, + ["U"] = { 60941 }, + }, + ["pre"] = { 40564 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 4944 }, + }, + }, + [40566] = { + ["end"] = { + ["U"] = { 52045 }, + }, + ["lvl"] = 21, + ["min"] = 17, + ["obj"] = { + ["I"] = { 60822 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 52045 }, + }, + }, + [40567] = { + ["end"] = { + ["U"] = { 52039 }, + }, + ["lvl"] = 21, + ["min"] = 18, + ["obj"] = { + ["U"] = { 60391 }, + }, + ["pre"] = { 40566 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 52045 }, + }, + }, + [40568] = { + ["end"] = { + ["U"] = { 6122 }, + }, + ["lvl"] = 22, + ["min"] = 18, + ["pre"] = { 40567 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 52039 }, + }, + }, + [40569] = { + ["end"] = { + ["U"] = { 6122 }, + }, + ["lvl"] = 24, + ["min"] = 18, + ["obj"] = { + ["I"] = { 60823 }, + }, + ["pre"] = { 40568 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6122 }, + }, + }, + [40570] = { + ["end"] = { + ["U"] = { 52039 }, + }, + ["lvl"] = 24, + ["min"] = 18, + ["pre"] = { 40569 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6122 }, + }, + }, + [40571] = { + ["end"] = { + ["U"] = { 52017 }, + }, + ["lvl"] = 25, + ["min"] = 18, + ["obj"] = { + ["I"] = { 60825 }, + }, + ["pre"] = { 40570 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 52039 }, + }, + }, + [40572] = { + ["end"] = { + ["U"] = { 61056 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["pre"] = { 1268 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4926 }, + }, + }, + [40573] = { + ["end"] = { + ["U"] = { 61056 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["I"] = { 60810 }, + }, + ["pre"] = { 40572 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61056 }, + }, + }, + [40574] = { + ["end"] = { + ["U"] = { 3430 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["pre"] = { 40573 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61056 }, + }, + }, + [40575] = { + ["end"] = { + ["U"] = { 3430 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["I"] = { 60829 }, + }, + ["pre"] = { 40574 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3430 }, + }, + }, + [40576] = { + ["end"] = { + ["U"] = { 61056 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["pre"] = { 40575 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3430 }, + }, + }, + [40577] = { + ["end"] = { + ["U"] = { 4926 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["pre"] = { 40576 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61056 }, + }, + }, + [40578] = { + ["end"] = { + ["U"] = { 4926 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["pre"] = { 1276 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4943 }, + }, + }, + [40579] = { + ["end"] = { + ["U"] = { 5087 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["pre"] = { 40578 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4926 }, + }, + }, + [40580] = { + ["end"] = { + ["O"] = { 2010923 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["pre"] = { 40579 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5087 }, + }, + }, + [40581] = { + ["end"] = { + ["U"] = { 4926 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["pre"] = { 40580 }, + ["race"] = 434, + ["start"] = { + ["O"] = { 2010923 }, + }, + }, + [40582] = { + ["end"] = { + ["U"] = { 61056 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["pre"] = { 40581 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4926 }, + }, + }, + [40583] = { + ["end"] = { + ["U"] = { 3064 }, + }, + ["lvl"] = 5, + ["min"] = 1, + ["race"] = 434, + ["start"] = { + ["O"] = { 2010924 }, + }, + }, + [40584] = { + ["end"] = { + ["U"] = { 60977 }, + }, + ["lvl"] = 5, + ["min"] = 1, + ["pre"] = { 40583 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3064 }, + }, + }, + [40585] = { + ["end"] = { + ["U"] = { 5939 }, + }, + ["lvl"] = 5, + ["min"] = 1, + ["pre"] = { 40584 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60977 }, + }, + }, + [40586] = { + ["end"] = { + ["U"] = { 5939 }, + }, + ["lvl"] = 8, + ["min"] = 1, + ["obj"] = { + ["I"] = { 60831 }, + }, + ["pre"] = { 40585 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5939 }, + }, + }, + [40587] = { + ["end"] = { + ["U"] = { 60977 }, + }, + ["lvl"] = 8, + ["min"] = 1, + ["pre"] = { 40586 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5939 }, + }, + }, + [40588] = { + ["end"] = { + ["U"] = { 3064 }, + }, + ["lvl"] = 5, + ["min"] = 1, + ["pre"] = { 40587 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60977 }, + }, + }, + [40589] = { + ["end"] = { + ["U"] = { 60957 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 60832 }, + }, + ["start"] = { + ["U"] = { 60957 }, + }, + }, + [40590] = { + ["end"] = { + ["U"] = { 60955 }, + }, + ["lvl"] = 46, + ["min"] = 40, + ["obj"] = { + ["I"] = { 60833 }, + }, + ["start"] = { + ["U"] = { 60955 }, + }, + }, + [40591] = { + ["end"] = { + ["U"] = { 60955 }, + }, + ["lvl"] = 48, + ["min"] = 40, + ["obj"] = { + ["I"] = { 60834 }, + }, + ["pre"] = { 40590 }, + ["start"] = { + ["U"] = { 60955 }, + }, + }, + [40592] = { + ["end"] = { + ["U"] = { 60958 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 60836 }, + }, + ["start"] = { + ["U"] = { 60958 }, + }, + }, + [40593] = { + ["end"] = { + ["U"] = { 234 }, + }, + ["lvl"] = 13, + ["min"] = 8, + ["race"] = 589, + ["start"] = { + ["O"] = { 2010927 }, + }, + }, + [40594] = { + ["end"] = { + ["U"] = { 1646 }, + }, + ["lvl"] = 14, + ["min"] = 8, + ["pre"] = { 40593 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 234 }, + }, + }, + [40595] = { + ["end"] = { + ["U"] = { 1212 }, + }, + ["lvl"] = 14, + ["min"] = 8, + ["pre"] = { 40594 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1646 }, + }, + }, + [40596] = { + ["end"] = { + ["U"] = { 952 }, + }, + ["lvl"] = 14, + ["min"] = 8, + ["pre"] = { 40595 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1212 }, + }, + }, + [40597] = { + ["end"] = { + ["U"] = { 952 }, + }, + ["lvl"] = 14, + ["min"] = 8, + ["obj"] = { + ["U"] = { 60392 }, + }, + ["pre"] = { 40596 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 952 }, + }, + }, + [40598] = { + ["end"] = { + ["U"] = { 234 }, + }, + ["lvl"] = 16, + ["min"] = 8, + ["pre"] = { 40597 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 952 }, + }, + }, + [40599] = { + ["end"] = { + ["U"] = { 60879 }, + }, + ["lvl"] = 16, + ["min"] = 8, + ["pre"] = { 40598 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 234 }, + }, + }, + [40600] = { + ["end"] = { + ["U"] = { 60879 }, + }, + ["lvl"] = 16, + ["min"] = 8, + ["obj"] = { + ["I"] = { 60839 }, + }, + ["pre"] = { 40599 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60879 }, + }, + }, + [40601] = { + ["end"] = { + ["U"] = { 234 }, + }, + ["lvl"] = 16, + ["min"] = 8, + ["pre"] = { 40600 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60879 }, + }, + }, + [40602] = { + ["end"] = { + ["U"] = { 234 }, + }, + ["lvl"] = 22, + ["min"] = 15, + ["obj"] = { + ["I"] = { 60840, 60841, 60842 }, + ["U"] = { 60878 }, + }, + ["pre"] = { 40601 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 234 }, + }, + }, + [40603] = { + ["end"] = { + ["U"] = { 952 }, + }, + ["lvl"] = 22, + ["min"] = 15, + ["obj"] = { + ["I"] = { 60842, 60846 }, + }, + ["pre"] = { 40602 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 234 }, + }, + }, + [40604] = { + ["end"] = { + ["U"] = { 60923 }, + }, + ["lvl"] = 42, + ["min"] = 36, + ["obj"] = { + ["U"] = { 60918, 60919 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60923 }, + }, + }, + [40605] = { + ["end"] = { + ["U"] = { 61010 }, + }, + ["lvl"] = 43, + ["min"] = 36, + ["obj"] = { + ["I"] = { 60848 }, + }, + ["pre"] = { 40604 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60923 }, + }, + }, + [40606] = { + ["end"] = { + ["U"] = { 81042 }, + }, + ["lvl"] = 41, + ["min"] = 40, + ["race"] = 589, + ["start"] = { + ["U"] = { 4782 }, + }, + }, + [40607] = { + ["end"] = { + ["U"] = { 4782 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 60849 }, + }, + ["pre"] = { 40606 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 81042 }, + }, + }, + [40608] = { + ["end"] = { + ["U"] = { 61001 }, + }, + ["lvl"] = 18, + ["min"] = 13, + ["obj"] = { + ["I"] = { 60850 }, + ["U"] = { 61018 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61001 }, + }, + }, + [40609] = { + ["end"] = { + ["U"] = { 5398 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["U"] = { 4646, 4647, 4648, 4649 }, + }, + ["start"] = { + ["U"] = { 5398 }, + }, + }, + [40610] = { + ["end"] = { + ["U"] = { 61040 }, + }, + ["lvl"] = 32, + ["min"] = 30, + ["obj"] = { + ["U"] = { 4689 }, + }, + ["pre"] = { 40633 }, + ["start"] = { + ["U"] = { 61040 }, + }, + }, + [40611] = { + ["end"] = { + ["U"] = { 61040 }, + }, + ["lvl"] = 34, + ["min"] = 30, + ["obj"] = { + ["U"] = { 4726 }, + }, + ["pre"] = { 40633 }, + ["start"] = { + ["U"] = { 61040 }, + }, + }, + [40612] = { + ["end"] = { + ["U"] = { 61040 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["start"] = { + ["U"] = { 61040 }, + }, + }, + [40613] = { + ["end"] = { + ["U"] = { 61040 }, + }, + ["lvl"] = 39, + ["min"] = 30, + ["obj"] = { + ["U"] = { 11559 }, + }, + ["pre"] = { 40612 }, + ["start"] = { + ["U"] = { 61040 }, + }, + }, + [40614] = { + ["end"] = { + ["U"] = { 61040 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["obj"] = { + ["I"] = { 60851 }, + }, + ["pre"] = { 40613 }, + ["start"] = { + ["U"] = { 61040 }, + }, + }, + [40615] = { + ["end"] = { + ["U"] = { 61040 }, + }, + ["lvl"] = 41, + ["min"] = 30, + ["obj"] = { + ["I"] = { 60852 }, + }, + ["pre"] = { 40614 }, + ["start"] = { + ["U"] = { 61040 }, + }, + }, + [40616] = { + ["end"] = { + ["U"] = { 5601 }, + }, + ["lvl"] = 41, + ["min"] = 30, + ["obj"] = { + ["U"] = { 60393 }, + }, + ["pre"] = { 40615 }, + ["start"] = { + ["U"] = { 61040 }, + }, + }, + [40617] = { + ["end"] = { + ["U"] = { 61041 }, + }, + ["lvl"] = 38, + ["min"] = 30, + ["obj"] = { + ["I"] = { 60856 }, + }, + ["pre"] = { 40633 }, + ["start"] = { + ["U"] = { 61041 }, + }, + }, + [40618] = { + ["end"] = { + ["U"] = { 61041 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["U"] = { 4636, 4648, 4649, 4651 }, + }, + ["pre"] = { 40633 }, + ["start"] = { + ["U"] = { 61041 }, + }, + }, + [40619] = { + ["end"] = { + ["U"] = { 61041 }, + }, + ["lvl"] = 38, + ["min"] = 30, + ["obj"] = { + ["I"] = { 12204 }, + }, + ["pre"] = { 40633 }, + ["start"] = { + ["U"] = { 61041 }, + }, + }, + [40620] = { + ["end"] = { + ["U"] = { 5397 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["U"] = { 4638, 4639, 4640, 4641 }, + }, + ["start"] = { + ["U"] = { 5397 }, + }, + }, + [40621] = { + ["end"] = { + ["U"] = { 61044 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["pre"] = { 40620 }, + ["start"] = { + ["U"] = { 5397 }, + }, + }, + [40622] = { + ["end"] = { + ["U"] = { 61044 }, + }, + ["lvl"] = 32, + ["min"] = 30, + ["obj"] = { + ["U"] = { 4692, 4696 }, + }, + ["pre"] = { 40621 }, + ["start"] = { + ["U"] = { 61044 }, + }, + }, + [40623] = { + ["end"] = { + ["U"] = { 61044 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["I"] = { 60857 }, + }, + ["pre"] = { 40621 }, + ["start"] = { + ["U"] = { 61044 }, + }, + }, + [40624] = { + ["end"] = { + ["U"] = { 61044 }, + }, + ["lvl"] = 36, + ["min"] = 30, + ["obj"] = { + ["U"] = { 4693, 4697 }, + }, + ["pre"] = { 40622 }, + ["start"] = { + ["U"] = { 61044 }, + }, + }, + [40625] = { + ["end"] = { + ["U"] = { 61044 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["start"] = { + ["U"] = { 61044 }, + }, + }, + [40626] = { + ["end"] = { + ["U"] = { 61044 }, + }, + ["lvl"] = 39, + ["min"] = 30, + ["obj"] = { + ["U"] = { 11559 }, + }, + ["pre"] = { 40625 }, + ["start"] = { + ["U"] = { 61044 }, + }, + }, + [40627] = { + ["end"] = { + ["U"] = { 61044 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["obj"] = { + ["I"] = { 60851 }, + }, + ["pre"] = { 40626 }, + ["start"] = { + ["U"] = { 61044 }, + }, + }, + [40628] = { + ["end"] = { + ["U"] = { 61044 }, + }, + ["lvl"] = 41, + ["min"] = 30, + ["obj"] = { + ["I"] = { 60858 }, + }, + ["pre"] = { 40627 }, + ["start"] = { + ["U"] = { 61044 }, + }, + }, + [40629] = { + ["end"] = { + ["U"] = { 5602 }, + }, + ["lvl"] = 41, + ["min"] = 30, + ["obj"] = { + ["U"] = { 60394 }, + }, + ["pre"] = { 40628 }, + ["start"] = { + ["U"] = { 61044 }, + }, + }, + [40630] = { + ["end"] = { + ["U"] = { 61045 }, + }, + ["lvl"] = 38, + ["min"] = 30, + ["obj"] = { + ["I"] = { 60856 }, + }, + ["pre"] = { 40621 }, + ["start"] = { + ["U"] = { 61045 }, + }, + }, + [40631] = { + ["end"] = { + ["U"] = { 61045 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["I"] = { 7069 }, + }, + ["pre"] = { 40621 }, + ["start"] = { + ["U"] = { 61045 }, + }, + }, + [40632] = { + ["end"] = { + ["U"] = { 61045 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["U"] = { 4638, 4639, 4641, 4642 }, + }, + ["pre"] = { 40621 }, + ["start"] = { + ["U"] = { 61045 }, + }, + }, + [40633] = { + ["end"] = { + ["U"] = { 61040 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["pre"] = { 40609 }, + ["start"] = { + ["U"] = { 5398 }, + }, + }, + [40634] = { + ["end"] = { + ["U"] = { 60960 }, + }, + ["lvl"] = 25, + ["min"] = 19, + ["obj"] = { + ["I"] = { 60861 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60960 }, + }, + }, + [40635] = { + ["end"] = { + ["U"] = { 60961 }, + }, + ["lvl"] = 28, + ["min"] = 24, + ["obj"] = { + ["I"] = { 60862 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60961 }, + }, + }, + [40636] = { + ["end"] = { + ["U"] = { 60970 }, + }, + ["lvl"] = 24, + ["min"] = 20, + ["obj"] = { + ["U"] = { 4044 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60970 }, + }, + }, + [40637] = { + ["end"] = { + ["U"] = { 60970 }, + }, + ["lvl"] = 23, + ["min"] = 20, + ["obj"] = { + ["U"] = { 61038 }, + }, + ["pre"] = { 40636 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60970 }, + }, + }, + [40638] = { + ["end"] = { + ["U"] = { 61024 }, + }, + ["lvl"] = 23, + ["min"] = 20, + ["race"] = 434, + ["start"] = { + ["U"] = { 80178 }, + }, + }, + [40639] = { + ["end"] = { + ["U"] = { 61024 }, + }, + ["lvl"] = 23, + ["min"] = 20, + ["obj"] = { + ["I"] = { 60867, 60868, 60869 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61024 }, + }, + }, + [40640] = { + ["end"] = { + ["U"] = { 61024 }, + }, + ["lvl"] = 23, + ["min"] = 20, + ["obj"] = { + ["I"] = { 60870 }, + }, + ["pre"] = { 40639 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61024 }, + }, + }, + [40641] = { + ["end"] = { + ["U"] = { 61024 }, + }, + ["lvl"] = 23, + ["min"] = 20, + ["obj"] = { + ["I"] = { 60871 }, + }, + ["pre"] = { 40640 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61024 }, + }, + }, + [40642] = { + ["end"] = { + ["U"] = { 61024 }, + }, + ["lvl"] = 28, + ["min"] = 20, + ["obj"] = { + ["I"] = { 60874 }, + }, + ["pre"] = { 40641 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61024 }, + }, + }, + [40643] = { + ["end"] = { + ["U"] = { 60962 }, + }, + ["lvl"] = 26, + ["min"] = 20, + ["obj"] = { + ["I"] = { 60875 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60962 }, + }, + }, + [40644] = { + ["end"] = { + ["U"] = { 60961 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["obj"] = { + ["I"] = { 60877 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60961 }, + }, + }, + [40645] = { + ["end"] = { + ["U"] = { 60967 }, + }, + ["lvl"] = 20, + ["min"] = 15, + ["obj"] = { + ["I"] = { 19222 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60967 }, + }, + }, + [40646] = { + ["end"] = { + ["U"] = { 60970 }, + }, + ["lvl"] = 23, + ["min"] = 20, + ["pre"] = { 40645 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60967 }, + }, + }, + [40647] = { + ["end"] = { + ["U"] = { 60964 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["obj"] = { + ["I"] = { 60878 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60964 }, + }, + }, + [40648] = { + ["end"] = { + ["U"] = { 60945 }, + }, + ["lvl"] = 44, + ["min"] = 37, + ["obj"] = { + ["I"] = { 60886 }, + }, + ["start"] = { + ["U"] = { 60945 }, + }, + }, + [40649] = { + ["end"] = { + ["U"] = { 9077 }, + }, + ["lvl"] = 39, + ["min"] = 35, + ["obj"] = { + ["U"] = { 2742, 2743 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 9077 }, + }, + }, + [40650] = { + ["end"] = { + ["U"] = { 9077 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["obj"] = { + ["U"] = { 91766 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 9077 }, + }, + }, + [40651] = { + ["end"] = { + ["U"] = { 2920 }, + }, + ["lvl"] = 39, + ["min"] = 33, + ["obj"] = { + ["I"] = { 60890, 60891 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2920 }, + }, + }, + [40652] = { + ["end"] = { + ["U"] = { 61051 }, + }, + ["lvl"] = 37, + ["min"] = 28, + ["obj"] = { + ["I"] = { 60892 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61051 }, + }, + }, + [40653] = { + ["end"] = { + ["U"] = { 61051 }, + }, + ["lvl"] = 41, + ["min"] = 32, + ["obj"] = { + ["I"] = { 60893 }, + }, + ["pre"] = { 40652 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61051 }, + }, + }, + [40654] = { + ["end"] = { + ["U"] = { 61051 }, + }, + ["lvl"] = 41, + ["min"] = 32, + ["obj"] = { + ["I"] = {}, + }, + ["race"] = 589, + ["start"] = { + ["I"] = { 60894 }, + }, + }, + [40655] = { + ["end"] = { + ["U"] = { 9080 }, + }, + ["lvl"] = 43, + ["min"] = 36, + ["obj"] = { + ["U"] = { 60903, 60904, 60905 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 9080 }, + }, + }, + [40656] = { + ["end"] = { + ["U"] = { 9080 }, + }, + ["lvl"] = 44, + ["min"] = 38, + ["obj"] = { + ["U"] = { 60906 }, + }, + ["pre"] = { 40655 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 9080 }, + }, + }, + [40657] = { + ["end"] = { + ["U"] = { 1274 }, + }, + ["lvl"] = 43, + ["min"] = 38, + ["obj"] = { + ["U"] = { 60903, 60904, 60905 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1274 }, + }, + }, + [40658] = { + ["end"] = { + ["U"] = { 1274 }, + }, + ["lvl"] = 44, + ["min"] = 38, + ["obj"] = { + ["U"] = { 60906 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1274 }, + }, + }, + [40659] = { + ["end"] = { + ["U"] = { 718 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["obj"] = { + ["I"] = {}, + }, + ["start"] = { + ["I"] = { 60895 }, + }, + }, + [40660] = { + ["end"] = { + ["U"] = { 60929 }, + }, + ["lvl"] = 14, + ["min"] = 8, + ["obj"] = { + ["U"] = { 60395, 60396, 60397 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60929 }, + }, + }, + [40661] = { + ["end"] = { + ["U"] = { 1307 }, + }, + ["lvl"] = 10, + ["min"] = 5, + ["obj"] = { + ["I"] = { 3419 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60931 }, + }, + }, + [40662] = { + ["end"] = { + ["U"] = { 60931 }, + }, + ["lvl"] = 10, + ["min"] = 5, + ["pre"] = { 40661 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1307 }, + }, + }, + [40663] = { + ["end"] = { + ["U"] = { 60933 }, + }, + ["lvl"] = 10, + ["min"] = 5, + ["obj"] = { + ["I"] = { 2593 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60933 }, + }, + }, + [40664] = { + ["end"] = { + ["U"] = { 11812 }, + }, + ["lvl"] = 46, + ["min"] = 40, + ["obj"] = { + ["I"] = { 60898 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 11812 }, + }, + }, + [40665] = { + ["end"] = { + ["U"] = { 61026 }, + }, + ["lvl"] = 10, + ["min"] = 5, + ["obj"] = { + ["U"] = { 60893, 60898 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61026 }, + }, + }, + [40666] = { + ["end"] = { + ["U"] = { 61026 }, + }, + ["lvl"] = 12, + ["min"] = 5, + ["obj"] = { + ["I"] = { 60911 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61026 }, + }, + }, + [40667] = { + ["end"] = { + ["U"] = { 4949 }, + }, + ["lvl"] = 10, + ["min"] = 5, + ["pre"] = { 40665 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61026 }, + }, + }, + [40668] = { + ["end"] = { + ["U"] = { 61052 }, + }, + ["lvl"] = 14, + ["min"] = 5, + ["pre"] = { 40667 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4949 }, + }, + }, + [40669] = { + ["end"] = { + ["U"] = { 61052 }, + }, + ["lvl"] = 14, + ["min"] = 5, + ["obj"] = { + ["I"] = { 60913 }, + }, + ["pre"] = { 40668 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61052 }, + }, + }, + [40670] = { + ["end"] = { + ["U"] = { 4949 }, + }, + ["lvl"] = 14, + ["min"] = 5, + ["obj"] = { + ["U"] = { 60398 }, + }, + ["pre"] = { 40669 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61052 }, + }, + }, + [40671] = { + ["end"] = { + ["U"] = { 61026 }, + }, + ["lvl"] = 15, + ["min"] = 5, + ["pre"] = { 40670 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4949 }, + }, + }, + [40672] = { + ["end"] = { + ["U"] = { 61026 }, + }, + ["lvl"] = 17, + ["min"] = 10, + ["obj"] = { + ["U"] = { 60894, 60895, 60897 }, + }, + ["pre"] = { 40671 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61026 }, + }, + }, + [40673] = { + ["end"] = { + ["U"] = { 61026 }, + }, + ["lvl"] = 19, + ["min"] = 10, + ["obj"] = { + ["U"] = { 60896, 60899, 60900 }, + }, + ["pre"] = { 40671 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61026 }, + }, + }, + [40674] = { + ["end"] = { + ["U"] = { 61026 }, + }, + ["lvl"] = 20, + ["min"] = 10, + ["obj"] = { + ["I"] = { 60914 }, + ["U"] = { 60902 }, + }, + ["pre"] = { 40672, 40673 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61026 }, + }, + }, + [40675] = { + ["end"] = { + ["U"] = { 4949 }, + }, + ["lvl"] = 20, + ["min"] = 10, + ["pre"] = { 40674 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61026 }, + }, + }, + [40676] = { + ["end"] = { + ["U"] = { 13699 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["I"] = { 60918 }, + }, + ["start"] = { + ["U"] = { 13699 }, + }, + }, + [40677] = { + ["end"] = { + ["U"] = { 13699 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["I"] = { 60919 }, + }, + ["pre"] = { 40676 }, + ["start"] = { + ["U"] = { 13699 }, + }, + }, + [40678] = { + ["end"] = { + ["U"] = { 11317 }, + }, + ["lvl"] = 34, + ["min"] = 30, + ["obj"] = { + ["U"] = { 11562, 11563 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 11317 }, + }, + }, + [40679] = { + ["end"] = { + ["U"] = { 91243 }, + }, + ["lvl"] = 23, + ["min"] = 15, + ["obj"] = { + ["I"] = { 81335 }, + }, + ["start"] = { + ["U"] = { 91243 }, + }, + }, + [40680] = { + ["end"] = { + ["U"] = { 91243 }, + }, + ["lvl"] = 27, + ["min"] = 15, + ["obj"] = { + ["U"] = { 1014 }, + }, + ["pre"] = { 40679 }, + ["start"] = { + ["U"] = { 91243 }, + }, + }, + [40681] = { + ["end"] = { + ["U"] = { 91243 }, + }, + ["lvl"] = 24, + ["min"] = 15, + ["obj"] = { + ["I"] = { 60923 }, + }, + ["pre"] = { 40680 }, + ["start"] = { + ["U"] = { 91243 }, + }, + }, + [40682] = { + ["end"] = { + ["U"] = { 60973 }, + }, + ["lvl"] = 25, + ["min"] = 17, + ["obj"] = { + ["I"] = { 60924 }, + }, + ["start"] = { + ["U"] = { 60973 }, + }, + }, + [40683] = { + ["end"] = { + ["U"] = { 60972 }, + }, + ["lvl"] = 25, + ["min"] = 17, + ["obj"] = { + ["U"] = { 1043, 1069 }, + }, + ["start"] = { + ["U"] = { 60972 }, + }, + }, + [40684] = { + ["end"] = { + ["U"] = { 61053 }, + }, + ["lvl"] = 60, + ["min"] = 15, + ["race"] = 589, + ["start"] = { + ["U"] = { 61054 }, + }, + }, + [40685] = { + ["end"] = { + ["U"] = { 61053 }, + }, + ["lvl"] = 60, + ["min"] = 15, + ["race"] = 434, + ["start"] = { + ["U"] = { 61055 }, + }, + }, + [40686] = { + ["end"] = { + ["U"] = { 61053 }, + }, + ["lvl"] = 60, + ["min"] = 15, + ["obj"] = { + ["I"] = { 1274, 2091, 10841 }, + }, + ["start"] = { + ["U"] = { 61053 }, + }, + }, + [40687] = { + ["end"] = { + ["U"] = { 60727 }, + }, + ["lvl"] = 42, + ["min"] = 34, + ["obj"] = { + ["U"] = { 60939, 60940 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60727 }, + }, + }, + [40688] = { + ["end"] = { + ["U"] = { 60727 }, + }, + ["lvl"] = 42, + ["min"] = 34, + ["obj"] = { + ["I"] = { 60926 }, + ["U"] = { 60942, 60943 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60727 }, + }, + }, + [40689] = { + ["end"] = { + ["U"] = { 4791 }, + }, + ["lvl"] = 42, + ["min"] = 34, + ["obj"] = { + ["U"] = { 60939, 60940 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4791 }, + }, + }, + [40690] = { + ["end"] = { + ["U"] = { 4791 }, + }, + ["lvl"] = 41, + ["min"] = 34, + ["obj"] = { + ["U"] = { 60943, 60944 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4791 }, + }, + }, + [40691] = { + ["end"] = { + ["U"] = { 60993 }, + }, + ["lvl"] = 20, + ["min"] = 14, + ["obj"] = { + ["U"] = { 60399 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60993 }, + }, + }, + [40692] = { + ["end"] = { + ["U"] = { 60993 }, + }, + ["lvl"] = 20, + ["min"] = 14, + ["obj"] = { + ["I"] = { 60930 }, + }, + ["pre"] = { 40691 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60993 }, + }, + }, + [40693] = { + ["end"] = { + ["U"] = { 60996 }, + }, + ["lvl"] = 20, + ["min"] = 12, + ["obj"] = { + ["I"] = { 60932 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60996 }, + }, + }, + [40694] = { + ["end"] = { + ["U"] = { 61006 }, + }, + ["lvl"] = 18, + ["min"] = 13, + ["obj"] = { + ["I"] = { 60935 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61006 }, + }, + }, + [40695] = { + ["end"] = { + ["U"] = { 61000 }, + }, + ["lvl"] = 18, + ["min"] = 13, + ["pre"] = { 40694 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61006 }, + }, + }, + [40696] = { + ["end"] = { + ["U"] = { 61006 }, + }, + ["lvl"] = 18, + ["min"] = 13, + ["pre"] = { 40695 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61000 }, + }, + }, + [40697] = { + ["end"] = { + ["U"] = { 60998 }, + }, + ["lvl"] = 20, + ["min"] = 12, + ["obj"] = { + ["I"] = { 60936 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60998 }, + }, + }, + [40698] = { + ["end"] = { + ["U"] = { 60998 }, + }, + ["lvl"] = 20, + ["min"] = 12, + ["obj"] = { + ["U"] = { 60008 }, + }, + ["pre"] = { 40697 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60998 }, + }, + }, + [40699] = { + ["end"] = { + ["U"] = { 60999 }, + }, + ["lvl"] = 24, + ["min"] = 17, + ["obj"] = { + ["I"] = { 60937 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60999 }, + }, + }, + [40700] = { + ["end"] = { + ["U"] = { 60994 }, + }, + ["lvl"] = 17, + ["min"] = 12, + ["obj"] = { + ["U"] = { 60984, 60985 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60994 }, + }, + }, + [40701] = { + ["end"] = { + ["U"] = { 60994 }, + }, + ["lvl"] = 20, + ["min"] = 12, + ["obj"] = { + ["U"] = { 60986 }, + }, + ["pre"] = { 40700 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60994 }, + }, + }, + [40702] = { + ["end"] = { + ["U"] = { 60997 }, + }, + ["lvl"] = 20, + ["min"] = 14, + ["obj"] = { + ["U"] = { 3988, 3989, 3991 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60997 }, + }, + }, + [40703] = { + ["end"] = { + ["U"] = { 61019 }, + }, + ["lvl"] = 42, + ["min"] = 34, + ["obj"] = { + ["U"] = { 61020, 61021, 61022, 61023 }, + }, + ["start"] = { + ["U"] = { 61019 }, + }, + }, + [40704] = { + ["end"] = { + ["U"] = { 61060 }, + }, + ["lvl"] = 15, + ["min"] = 10, + ["obj"] = { + ["I"] = { 60940 }, + }, + ["start"] = { + ["U"] = { 61060 }, + }, + }, + [40705] = { + ["end"] = { + ["U"] = { 61057 }, + }, + ["lvl"] = 17, + ["min"] = 12, + ["obj"] = { + ["I"] = { 60941 }, + }, + ["start"] = { + ["U"] = { 61057 }, + }, + }, + [40706] = { + ["end"] = { + ["U"] = { 61063 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["obj"] = { + ["U"] = { 61036 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61063 }, + }, + }, + [40707] = { + ["end"] = { + ["U"] = { 61063 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["obj"] = { + ["I"] = { 60942 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61063 }, + }, + }, + [40708] = { + ["end"] = { + ["U"] = { 61064 }, + }, + ["lvl"] = 55, + ["min"] = 50, + ["obj"] = { + ["I"] = { 20725 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61064 }, + }, + }, + [40709] = { + ["end"] = { + ["U"] = { 61065 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["obj"] = { + ["I"] = { 11135 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61065 }, + }, + }, + [40710] = { + ["end"] = { + ["U"] = { 61065 }, + }, + ["lvl"] = 50, + ["min"] = 40, + ["obj"] = { + ["I"] = { 11177 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61065 }, + }, + }, + [40711] = { + ["end"] = { + ["U"] = { 61065 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 14344 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61065 }, + }, + }, + [40712] = { + ["end"] = { + ["U"] = { 60916 }, + }, + ["lvl"] = 37, + ["min"] = 34, + ["obj"] = { + ["I"] = { 60943 }, + }, + ["start"] = { + ["U"] = { 60916 }, + }, + }, + [40713] = { + ["end"] = { + ["U"] = { 60916 }, + }, + ["lvl"] = 37, + ["min"] = 34, + ["obj"] = { + ["U"] = { 60009 }, + }, + ["pre"] = { 40712 }, + ["start"] = { + ["U"] = { 60916 }, + }, + }, + [40714] = { + ["end"] = { + ["U"] = { 60916 }, + }, + ["lvl"] = 37, + ["min"] = 34, + ["obj"] = { + ["U"] = { 60010 }, + }, + ["pre"] = { 40713 }, + ["start"] = { + ["U"] = { 60916 }, + }, + }, + [40715] = { + ["end"] = { + ["U"] = { 60917 }, + }, + ["lvl"] = 37, + ["min"] = 34, + ["pre"] = { 40714 }, + ["start"] = { + ["U"] = { 60916 }, + }, + }, + [40716] = { + ["end"] = { + ["U"] = { 60917 }, + }, + ["lvl"] = 37, + ["min"] = 34, + ["obj"] = { + ["I"] = { 60945 }, + }, + ["pre"] = { 40715 }, + ["start"] = { + ["U"] = { 60917 }, + }, + }, + [40717] = { + ["end"] = { + ["U"] = { 60917 }, + }, + ["lvl"] = 44, + ["min"] = 34, + ["obj"] = { + ["U"] = { 61069 }, + }, + ["pre"] = { 40716 }, + ["start"] = { + ["U"] = { 60917 }, + }, + }, + [40718] = { + ["end"] = { + ["U"] = { 80933 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["U"] = { 60011 }, + }, + ["pre"] = { 40582 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61056 }, + }, + }, + [40719] = { + ["end"] = { + ["U"] = { 80933 }, + }, + ["lvl"] = 42, + ["min"] = 30, + ["obj"] = { + ["I"] = { 4375, 4406, 60949 }, + }, + ["pre"] = { 40718 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 80933 }, + }, + }, + [40720] = { + ["end"] = { + ["U"] = { 61056 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["pre"] = { 40719 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 80933 }, + }, + }, + [40721] = { + ["end"] = { + ["U"] = { 61056 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["U"] = { 60012 }, + }, + ["pre"] = { 40720 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61056 }, + }, + }, + [40722] = { + ["end"] = { + ["U"] = { 4926 }, + }, + ["lvl"] = 43, + ["min"] = 30, + ["obj"] = { + ["I"] = { 60817 }, + ["U"] = { 60941 }, + }, + ["pre"] = { 40721 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61056 }, + }, + }, + [40723] = { + ["end"] = { + ["U"] = { 5088 }, + }, + ["lvl"] = 42, + ["min"] = 30, + ["pre"] = { 40722 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4926 }, + }, + }, + [40724] = { + ["end"] = { + ["U"] = { 61113 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 60956 }, + }, + ["start"] = { + ["U"] = { 61113 }, + }, + }, + [40725] = { + ["end"] = { + ["U"] = { 61113 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 60957 }, + }, + ["start"] = { + ["U"] = { 61113 }, + }, + }, + [40726] = { + ["end"] = { + ["U"] = { 61111 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 60958 }, + }, + ["start"] = { + ["U"] = { 61111 }, + }, + }, + [40727] = { + ["end"] = { + ["U"] = { 61108 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 60959 }, + }, + ["start"] = { + ["U"] = { 61108 }, + }, + }, + [40728] = { + ["end"] = { + ["U"] = { 61113 }, + }, + ["lvl"] = 58, + ["min"] = 48, + ["obj"] = { + ["U"] = { 61080 }, + }, + ["pre"] = { 40724 }, + ["start"] = { + ["U"] = { 61113 }, + }, + }, + [40729] = { + ["end"] = { + ["U"] = { 61100 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 60961 }, + }, + ["start"] = { + ["U"] = { 61100 }, + }, + }, + [40730] = { + ["end"] = { + ["U"] = { 61100 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 6662 }, + }, + ["pre"] = { 40729 }, + ["start"] = { + ["U"] = { 61100 }, + }, + }, + [40731] = { + ["end"] = { + ["U"] = { 61116 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["pre"] = { 40730 }, + ["start"] = { + ["U"] = { 61100 }, + }, + }, + [40732] = { + ["end"] = { + ["U"] = { 61116 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 60962 }, + }, + ["pre"] = { 40731 }, + ["start"] = { + ["U"] = { 61116 }, + }, + }, + [40733] = { + ["end"] = { + ["U"] = { 61100 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["U"] = { 60013 }, + }, + ["pre"] = { 40732 }, + ["start"] = { + ["U"] = { 61116 }, + }, + }, + [40734] = { + ["end"] = { + ["U"] = { 61100 }, + }, + ["lvl"] = 58, + ["min"] = 48, + ["obj"] = { + ["I"] = { 60963 }, + }, + ["pre"] = { 40733 }, + ["start"] = { + ["U"] = { 61100 }, + }, + }, + [40735] = { + ["end"] = { + ["U"] = { 61100 }, + }, + ["lvl"] = 58, + ["min"] = 48, + ["obj"] = { + ["I"] = { 4407, 7910, 12361 }, + }, + ["pre"] = { 40734 }, + ["start"] = { + ["U"] = { 61100 }, + }, + }, + [40736] = { + ["end"] = { + ["U"] = { 61100 }, + }, + ["lvl"] = 58, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11176, 11177, 16203, 60954 }, + }, + ["pre"] = { 40735 }, + ["start"] = { + ["U"] = { 61100 }, + }, + }, + [40737] = { + ["end"] = { + ["U"] = { 61100 }, + }, + ["lvl"] = 58, + ["min"] = 48, + ["pre"] = { 40736 }, + ["start"] = { + ["U"] = { 61100 }, + }, + }, + [40738] = { + ["end"] = { + ["U"] = { 61112 }, + }, + ["lvl"] = 58, + ["min"] = 48, + ["obj"] = { + ["I"] = { 60955 }, + }, + ["pre"] = { 40737 }, + ["start"] = { + ["U"] = { 61100 }, + }, + }, + [40739] = { + ["end"] = { + ["U"] = { 61100 }, + }, + ["lvl"] = 58, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11176, 60954 }, + }, + ["pre"] = { 40737 }, + ["start"] = { + ["U"] = { 61100 }, + }, + }, + [40740] = { + ["end"] = { + ["U"] = { 61100 }, + }, + ["lvl"] = 58, + ["min"] = 48, + ["obj"] = { + ["I"] = { 11176, 60954 }, + }, + ["pre"] = { 40737 }, + ["start"] = { + ["U"] = { 61100 }, + }, + }, + [40741] = { + ["end"] = { + ["U"] = { 61102 }, + }, + ["lvl"] = 56, + ["min"] = 48, + ["obj"] = { + ["I"] = { 60954 }, + }, + ["start"] = { + ["U"] = { 61102 }, + }, + }, + [40742] = { + ["end"] = { + ["U"] = { 61102 }, + }, + ["lvl"] = 56, + ["min"] = 48, + ["obj"] = { + ["U"] = { 61090, 61091 }, + }, + ["pre"] = { 40741 }, + ["start"] = { + ["U"] = { 61102 }, + }, + }, + [40743] = { + ["end"] = { + ["U"] = { 61121 }, + }, + ["event"] = 2, + ["lvl"] = 15, + ["min"] = 5, + ["obj"] = { + ["I"] = { 4599, 4601, 4602 }, + }, + ["start"] = { + ["U"] = { 61121 }, + }, + }, + [40744] = { + ["end"] = { + ["U"] = { 61122 }, + }, + ["event"] = 2, + ["lvl"] = 10, + ["min"] = 5, + ["obj"] = { + ["I"] = { 5042, 5048 }, + }, + ["start"] = { + ["U"] = { 61122 }, + }, + }, + [40745] = { + ["end"] = { + ["U"] = { 50652 }, + }, + ["event"] = 2, + ["lvl"] = 10, + ["min"] = 5, + ["obj"] = { + ["I"] = { 60986 }, + }, + ["start"] = { + ["U"] = { 50652 }, + }, + }, + [40746] = { + ["end"] = { + ["U"] = { 50652 }, + }, + ["event"] = 2, + ["lvl"] = 10, + ["min"] = 5, + ["obj"] = { + ["U"] = { 61127, 61128 }, + }, + ["start"] = { + ["U"] = { 50652 }, + }, + }, + [40747] = { + ["end"] = { + ["U"] = { 61138 }, + }, + ["lvl"] = 10, + ["min"] = 1, + ["start"] = { + ["U"] = { 61138 }, + }, + }, + [40748] = { + ["end"] = { + ["U"] = { 50647 }, + }, + ["event"] = 2, + ["lvl"] = 55, + ["min"] = 45, + ["obj"] = { + ["I"] = { 60987 }, + }, + ["start"] = { + ["U"] = { 50647 }, + }, + }, + [40749] = { + ["lvl"] = 52, + ["min"] = 48, + ["start"] = { + ["I"] = { 60989 }, + }, + }, + [40752] = { + ["end"] = { + ["U"] = { 61112 }, + }, + ["lvl"] = 58, + ["min"] = 48, + ["obj"] = { + ["I"] = { 3713, 10286, 60955 }, + }, + ["pre"] = { 40738 }, + ["start"] = { + ["U"] = { 61112 }, + }, + }, + [40753] = { + ["end"] = { + ["U"] = { 61112 }, + }, + ["lvl"] = 58, + ["min"] = 48, + ["obj"] = { + ["I"] = { 3713, 13467, 60955 }, + }, + ["pre"] = { 40738 }, + ["start"] = { + ["U"] = { 61112 }, + }, + }, + [40754] = { + ["end"] = { + ["U"] = { 61112 }, + }, + ["lvl"] = 58, + ["min"] = 48, + ["obj"] = { + ["I"] = { 3713, 13464, 60955 }, + }, + ["pre"] = { 40738 }, + ["start"] = { + ["U"] = { 61112 }, + }, + }, + [40755] = { + ["end"] = { + ["U"] = { 61101 }, + }, + ["lvl"] = 58, + ["min"] = 50, + ["obj"] = { + ["I"] = { 60991 }, + }, + ["start"] = { + ["U"] = { 61101 }, + }, + }, + [40756] = { + ["end"] = { + ["U"] = { 8139 }, + }, + ["lvl"] = 58, + ["min"] = 50, + ["pre"] = { 40755 }, + ["start"] = { + ["U"] = { 61101 }, + }, + }, + [40757] = { + ["end"] = { + ["U"] = { 8139 }, + }, + ["lvl"] = 58, + ["min"] = 50, + ["obj"] = { + ["I"] = { 60993 }, + }, + ["pre"] = { 40756 }, + ["start"] = { + ["U"] = { 8139 }, + }, + }, + [40758] = { + ["end"] = { + ["U"] = { 8139 }, + }, + ["lvl"] = 58, + ["min"] = 50, + ["obj"] = { + ["I"] = { 60994 }, + }, + ["pre"] = { 40757 }, + ["start"] = { + ["U"] = { 8139 }, + }, + }, + [40759] = { + ["end"] = { + ["U"] = { 61101 }, + }, + ["lvl"] = 58, + ["min"] = 50, + ["pre"] = { 40758 }, + ["start"] = { + ["U"] = { 8139 }, + }, + }, + [40760] = { + ["end"] = { + ["U"] = { 61101 }, + }, + ["lvl"] = 58, + ["min"] = 50, + ["obj"] = { + ["I"] = { 7191, 10558, 12359, 15994 }, + }, + ["pre"] = { 40759 }, + ["start"] = { + ["U"] = { 61101 }, + }, + }, + [40761] = { + ["end"] = { + ["U"] = { 61101 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 60998 }, + }, + ["pre"] = { 40760 }, + ["start"] = { + ["U"] = { 61101 }, + }, + }, + [40762] = { + ["end"] = { + ["U"] = { 61101 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 16004, 60999, 61066, 61067 }, + }, + ["pre"] = { 40761 }, + ["start"] = { + ["U"] = { 61101 }, + }, + }, + [40763] = { + ["end"] = { + ["U"] = { 61117 }, + }, + ["lvl"] = 57, + ["min"] = 54, + ["obj"] = { + ["I"] = { 61071 }, + ["U"] = { 61094 }, + }, + ["start"] = { + ["U"] = { 61117 }, + }, + }, + [40764] = { + ["end"] = { + ["U"] = { 61117 }, + }, + ["lvl"] = 57, + ["min"] = 54, + ["obj"] = { + ["I"] = { 61072 }, + }, + ["pre"] = { 40763 }, + ["start"] = { + ["U"] = { 61117 }, + }, + }, + [40765] = { + ["end"] = { + ["U"] = { 61101 }, + }, + ["lvl"] = 56, + ["min"] = 48, + ["start"] = { + ["U"] = { 61102 }, + }, + }, + [40766] = { + ["end"] = { + ["U"] = { 61102 }, + }, + ["lvl"] = 56, + ["min"] = 48, + ["pre"] = { 40765 }, + ["start"] = { + ["U"] = { 61101 }, + }, + }, + [40767] = { + ["end"] = { + ["U"] = { 61105 }, + }, + ["lvl"] = 58, + ["min"] = 50, + ["obj"] = { + ["U"] = { 61096 }, + }, + ["start"] = { + ["U"] = { 61105 }, + }, + }, + [40768] = { + ["end"] = { + ["U"] = { 61105 }, + }, + ["lvl"] = 58, + ["min"] = 50, + ["obj"] = { + ["I"] = { 91762 }, + }, + ["start"] = { + ["U"] = { 61105 }, + }, + }, + [40769] = { + ["end"] = { + ["U"] = { 61106 }, + }, + ["lvl"] = 56, + ["min"] = 48, + ["obj"] = { + ["I"] = { 61078 }, + }, + ["start"] = { + ["U"] = { 61106 }, + }, + }, + [40770] = { + ["end"] = { + ["U"] = { 61126 }, + }, + ["lvl"] = 58, + ["min"] = 50, + ["obj"] = { + ["U"] = { 61086, 61087, 61088, 61089 }, + }, + ["start"] = { + ["U"] = { 61126 }, + }, + }, + [40771] = { + ["end"] = { + ["U"] = { 61126 }, + }, + ["lvl"] = 58, + ["min"] = 50, + ["obj"] = { + ["U"] = { 60014 }, + }, + ["start"] = { + ["U"] = { 61126 }, + }, + }, + [40772] = { + ["end"] = { + ["U"] = { 61136 }, + }, + ["event"] = 2, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["U"] = { 61135 }, + }, + ["start"] = { + ["U"] = { 61136 }, + }, + }, + [40773] = { + ["end"] = { + ["U"] = { 61166 }, + }, + ["lvl"] = 53, + ["min"] = 50, + ["obj"] = { + ["I"] = { 61083 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61166 }, + }, + }, + [40774] = { + ["end"] = { + ["U"] = { 61167 }, + }, + ["lvl"] = 53, + ["min"] = 50, + ["obj"] = { + ["I"] = { 61084 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61167 }, + }, + }, + [40775] = { + ["end"] = { + ["U"] = { 61156 }, + }, + ["lvl"] = 53, + ["min"] = 50, + ["obj"] = { + ["I"] = { 61084 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61156 }, + }, + }, + [40776] = { + ["end"] = { + ["U"] = { 61152 }, + }, + ["lvl"] = 53, + ["min"] = 50, + ["obj"] = { + ["U"] = { 61162 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61152 }, + }, + }, + [40777] = { + ["end"] = { + ["U"] = { 61161 }, + }, + ["event"] = 2, + ["lvl"] = 60, + ["min"] = 55, + ["start"] = { + ["U"] = { 61158 }, + }, + }, + [40778] = { + ["end"] = { + ["U"] = { 50654 }, + }, + ["event"] = 2, + ["lvl"] = 60, + ["min"] = 55, + ["pre"] = { 40777 }, + ["start"] = { + ["U"] = { 61161 }, + }, + }, + [40779] = { + ["end"] = { + ["U"] = { 50654 }, + }, + ["event"] = 2, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61085 }, + ["U"] = { 61163 }, + }, + ["pre"] = { 40778 }, + ["start"] = { + ["U"] = { 50654 }, + }, + }, + [40780] = { + ["end"] = { + ["U"] = { 61189 }, + }, + ["event"] = 2, + ["lvl"] = 60, + ["min"] = 10, + ["obj"] = { + ["U"] = { 60015, 60016, 60017 }, + }, + ["start"] = { + ["U"] = { 61189 }, + }, + }, + [40781] = { + ["end"] = { + ["U"] = { 61189 }, + }, + ["event"] = 2, + ["lvl"] = 60, + ["min"] = 10, + ["obj"] = { + ["U"] = { 60018, 60019, 60020 }, + }, + ["pre"] = { 40780 }, + ["start"] = { + ["U"] = { 61189 }, + }, + }, + [40782] = { + ["end"] = { + ["U"] = { 61189 }, + }, + ["event"] = 2, + ["lvl"] = 60, + ["min"] = 10, + ["obj"] = { + ["U"] = { 60021, 60022, 60023 }, + }, + ["pre"] = { 40781 }, + ["start"] = { + ["U"] = { 61189 }, + }, + }, + [40783] = { + ["end"] = { + ["U"] = { 61189 }, + }, + ["event"] = 2, + ["lvl"] = 60, + ["min"] = 10, + ["obj"] = { + ["U"] = { 60024, 60025, 60026 }, + }, + ["pre"] = { 40781 }, + ["start"] = { + ["U"] = { 61189 }, + }, + }, + [40784] = { + ["end"] = { + ["U"] = { 50653 }, + }, + ["event"] = 2, + ["lvl"] = 60, + ["min"] = 10, + ["pre"] = { 40782, 40783 }, + ["start"] = { + ["U"] = { 61189 }, + }, + }, + [40785] = { + ["end"] = { + ["U"] = { 61113 }, + }, + ["lvl"] = 60, + ["min"] = 53, + ["obj"] = { + ["I"] = { 61090 }, + }, + ["start"] = { + ["O"] = { 2010972 }, + }, + }, + [40786] = { + ["end"] = { + ["U"] = { 9465 }, + }, + ["lvl"] = 54, + ["min"] = 49, + ["obj"] = { + ["I"] = { 61093 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 9465 }, + }, + }, + [40787] = { + ["end"] = { + ["U"] = { 60710 }, + }, + ["lvl"] = 57, + ["min"] = 53, + ["obj"] = { + ["I"] = { 61094 }, + }, + ["start"] = { + ["U"] = { 60710 }, + }, + }, + [40788] = { + ["end"] = { + ["U"] = { 11118 }, + }, + ["lvl"] = 57, + ["min"] = 53, + ["obj"] = { + ["I"] = { 61096 }, + }, + ["start"] = { + ["U"] = { 11118 }, + }, + }, + [40789] = { + ["end"] = { + ["U"] = { 1212 }, + }, + ["lvl"] = 15, + ["min"] = 5, + ["race"] = 589, + ["start"] = { + ["U"] = { 60902 }, + }, + }, + [40790] = { + ["end"] = { + ["U"] = { 60900 }, + }, + ["lvl"] = 16, + ["min"] = 10, + ["obj"] = { + ["I"] = { 5467 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60900 }, + }, + }, + [40791] = { + ["end"] = { + ["U"] = { 60900 }, + }, + ["lvl"] = 16, + ["min"] = 10, + ["obj"] = { + ["I"] = { 61098, 61099 }, + }, + ["pre"] = { 40790 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60900 }, + }, + }, + [40792] = { + ["end"] = { + ["U"] = { 60899 }, + }, + ["lvl"] = 25, + ["min"] = 16, + ["obj"] = { + ["I"] = { 61101 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60899 }, + }, + }, + [40793] = { + ["end"] = { + ["U"] = { 60901 }, + }, + ["lvl"] = 28, + ["min"] = 15, + ["obj"] = { + ["I"] = { 61102 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60901 }, + }, + }, + [40794] = { + ["end"] = { + ["U"] = { 60934 }, + }, + ["lvl"] = 30, + ["min"] = 15, + ["race"] = 589, + ["start"] = { + ["U"] = { 60901 }, + }, + }, + [40795] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 80243 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 589, + ["start"] = { + ["U"] = { 80213 }, + }, + }, + [40796] = { + ["end"] = { + ["U"] = { 61145 }, + }, + ["lvl"] = 28, + ["min"] = 24, + ["obj"] = { + ["I"] = { 61150, 61151, 61152 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61145 }, + }, + }, + [40797] = { + ["end"] = { + ["U"] = { 61146 }, + }, + ["lvl"] = 28, + ["min"] = 20, + ["race"] = 589, + ["start"] = { + ["I"] = { 61153 }, + }, + }, + [40798] = { + ["end"] = { + ["U"] = { 61292 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["obj"] = { + ["I"] = { 16168, 61157, 61159, 61160 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61292 }, + }, + }, + [40799] = { + ["end"] = { + ["U"] = { 61292 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["obj"] = { + ["U"] = { 60028, 60029, 60030, 60031 }, + }, + ["pre"] = { 40798 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61292 }, + }, + }, + [40800] = { + ["end"] = { + ["U"] = { 61292 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["obj"] = { + ["U"] = { 60031 }, + }, + ["pre"] = { 40799 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61292 }, + }, + }, + [40801] = { + ["close"] = { 40801, 40807 }, + ["end"] = { + ["U"] = { 61147 }, + }, + ["lvl"] = 26, + ["min"] = 25, + ["obj"] = { + ["U"] = { 60032, 60033 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61147 }, + }, + }, + [40802] = { + ["end"] = { + ["U"] = { 61147 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["obj"] = { + ["U"] = { 12864 }, + }, + ["pre"] = { 40801 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61147 }, + }, + }, + [40803] = { + ["end"] = { + ["U"] = { 61147 }, + }, + ["lvl"] = 31, + ["min"] = 25, + ["obj"] = { + ["U"] = { 70023, 70027 }, + }, + ["pre"] = { 40802 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61147 }, + }, + }, + [40804] = { + ["end"] = { + ["U"] = { 3516 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["pre"] = { 40803 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61147 }, + }, + }, + [40805] = { + ["end"] = { + ["U"] = { 61143 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["pre"] = { 40804 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3516 }, + }, + }, + [40806] = { + ["end"] = { + ["U"] = { 61147 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["pre"] = { 40805 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61143 }, + }, + }, + [40807] = { + ["close"] = { 40801, 40807 }, + ["end"] = { + ["U"] = { 61143 }, + }, + ["lvl"] = 26, + ["min"] = 25, + ["obj"] = { + ["U"] = { 60032, 60033 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61143 }, + }, + }, + [40808] = { + ["end"] = { + ["U"] = { 61143 }, + }, + ["lvl"] = 29, + ["min"] = 25, + ["obj"] = { + ["U"] = { 11656, 11680, 11681, 11682 }, + }, + ["pre"] = { 40807 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61143 }, + }, + }, + [40809] = { + ["end"] = { + ["U"] = { 61143 }, + }, + ["lvl"] = 31, + ["min"] = 25, + ["obj"] = { + ["U"] = { 70023, 70027 }, + }, + ["pre"] = { 40808 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61143 }, + }, + }, + [40810] = { + ["end"] = { + ["U"] = { 7999 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["pre"] = { 40809 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61143 }, + }, + }, + [40811] = { + ["end"] = { + ["U"] = { 61147 }, + }, + ["lvl"] = 31, + ["min"] = 25, + ["pre"] = { 40810 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 7999 }, + }, + }, + [40812] = { + ["end"] = { + ["U"] = { 61143 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["pre"] = { 40811 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61147 }, + }, + }, + [40813] = { + ["end"] = { + ["U"] = { 61325 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61198 }, + }, + ["start"] = { + ["U"] = { 61325 }, + }, + }, + [40814] = { + ["end"] = { + ["U"] = { 61327 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 12810 }, + }, + ["start"] = { + ["U"] = { 61327 }, + }, + }, + [40815] = { + ["end"] = { + ["U"] = { 61327 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 12655 }, + }, + ["start"] = { + ["U"] = { 61327 }, + }, + }, + [40816] = { + ["end"] = { + ["U"] = { 61327 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 14342 }, + }, + ["start"] = { + ["U"] = { 61327 }, + }, + }, + [40817] = { + ["end"] = { + ["U"] = { 61255 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["U"] = { 60034 }, + }, + ["start"] = { + ["U"] = { 61255 }, + }, + }, + [40818] = { + ["end"] = { + ["U"] = { 61255 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 61231 }, + }, + ["pre"] = { 40817 }, + ["start"] = { + ["U"] = { 61255 }, + }, + }, + [40819] = { + ["end"] = { + ["U"] = { 2543 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["pre"] = { 40818 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61328 }, + }, + }, + [40820] = { + ["lvl"] = 60, + ["min"] = 58, + ["pre"] = { 40819 }, + }, + [40821] = { + ["lvl"] = 60, + ["min"] = 58, + ["pre"] = { 40820 }, + }, + [40822] = { + ["end"] = { + ["U"] = { 1498 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["pre"] = { 40818 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61328 }, + }, + }, + [40823] = { + ["end"] = { + ["U"] = { 4926 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["pre"] = { 40822 }, + ["start"] = { + ["U"] = { 1498 }, + }, + }, + [40824] = { + ["close"] = { 40824, 41137 }, + ["end"] = { + ["U"] = { 61137 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["pre"] = { 40823 }, + ["start"] = { + ["U"] = { 4926 }, + }, + }, + [40825] = { + ["end"] = { + ["U"] = { 61137 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["U"] = { 60035 }, + }, + ["pre"] = { 40821, 40824, 41137 }, + ["start"] = { + ["U"] = { 61137 }, + }, + }, + [40826] = { + ["end"] = { + ["U"] = { 61137 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["U"] = { 60036, 60037, 60038, 60039 }, + }, + ["pre"] = { 40825 }, + ["start"] = { + ["U"] = { 61137 }, + }, + }, + [40827] = { + ["end"] = { + ["U"] = { 61137 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 61232 }, + }, + ["pre"] = { 40826 }, + ["start"] = { + ["U"] = { 61137 }, + }, + }, + [40828] = { + ["end"] = { + ["U"] = { 61137 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 61233 }, + }, + ["pre"] = { 40827 }, + ["start"] = { + ["U"] = { 61137 }, + }, + }, + [40829] = { + ["end"] = { + ["U"] = { 61137 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["U"] = { 60040 }, + }, + ["pre"] = { 40828 }, + ["start"] = { + ["U"] = { 61137 }, + }, + }, + [40830] = { + ["end"] = { + ["U"] = { 61386 }, + }, + ["lvl"] = 42, + ["min"] = 36, + ["obj"] = { + ["I"] = { 61258 }, + }, + ["start"] = { + ["U"] = { 61386 }, + }, + }, + [40841] = { + ["end"] = { + ["U"] = { 5511 }, + }, + ["lvl"] = 41, + ["min"] = 36, + ["obj"] = { + ["I"] = { 61347 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5511 }, + }, + }, + [40842] = { + ["end"] = { + ["U"] = { 61145 }, + }, + ["lvl"] = 30, + ["min"] = 27, + ["obj"] = { + ["U"] = { 6073, 6115, 11697 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61145 }, + }, + }, + [40843] = { + ["end"] = { + ["U"] = { 61145 }, + }, + ["lvl"] = 31, + ["min"] = 25, + ["obj"] = { + ["U"] = { 61427 }, + }, + ["pre"] = { 40842 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61145 }, + }, + }, + [40844] = { + ["end"] = { + ["U"] = { 61377 }, + }, + ["lvl"] = 45, + ["min"] = 38, + ["race"] = 434, + ["start"] = { + ["U"] = { 61375 }, + }, + }, + [40845] = { + ["end"] = { + ["U"] = { 61377 }, + }, + ["lvl"] = 45, + ["min"] = 38, + ["obj"] = { + ["I"] = { 61350 }, + }, + ["pre"] = { 40844 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61377 }, + }, + }, + [40846] = { + ["end"] = { + ["U"] = { 61376 }, + }, + ["lvl"] = 45, + ["min"] = 38, + ["race"] = 434, + ["start"] = { + ["U"] = { 61375 }, + }, + }, + [40847] = { + ["end"] = { + ["U"] = { 61376 }, + }, + ["lvl"] = 45, + ["min"] = 38, + ["obj"] = { + ["I"] = { 61351 }, + }, + ["pre"] = { 40846 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61376 }, + }, + }, + [40848] = { + ["end"] = { + ["U"] = { 61375 }, + }, + ["lvl"] = 46, + ["min"] = 40, + ["obj"] = { + ["U"] = { 61408 }, + }, + ["pre"] = { 40845 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61375 }, + }, + }, + [40849] = { + ["end"] = { + ["U"] = { 61375 }, + }, + ["lvl"] = 49, + ["min"] = 40, + ["obj"] = { + ["I"] = { 61352 }, + }, + ["pre"] = { 40848 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61375 }, + }, + }, + [40850] = { + ["end"] = { + ["U"] = { 61375 }, + }, + ["lvl"] = 41, + ["min"] = 35, + ["race"] = 434, + ["start"] = { + ["U"] = { 61374 }, + }, + }, + [40851] = { + ["end"] = { + ["U"] = { 61281 }, + }, + ["lvl"] = 41, + ["min"] = 35, + ["race"] = 434, + ["start"] = { + ["U"] = { 61377 }, + }, + }, + [40852] = { + ["end"] = { + ["U"] = { 61265 }, + }, + ["lvl"] = 44, + ["min"] = 40, + ["obj"] = { + ["I"] = { 61380 }, + }, + ["start"] = { + ["U"] = { 61265 }, + }, + }, + [40853] = { + ["end"] = { + ["U"] = { 61265 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 61381 }, + }, + ["start"] = { + ["U"] = { 61265 }, + }, + }, + [40854] = { + ["end"] = { + ["U"] = { 61283 }, + }, + ["lvl"] = 44, + ["min"] = 40, + ["obj"] = { + ["I"] = { 61380 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61283 }, + }, + }, + [40855] = { + ["end"] = { + ["U"] = { 61283 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 61382 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61283 }, + }, + }, + [40856] = { + ["end"] = { + ["U"] = { 61437 }, + }, + ["lvl"] = 33, + ["min"] = 25, + ["obj"] = { + ["U"] = { 60042, 60043 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61437 }, + }, + }, + [40857] = { + ["end"] = { + ["U"] = { 61435 }, + }, + ["lvl"] = 13, + ["min"] = 6, + ["obj"] = { + ["U"] = { 61482 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61435 }, + }, + }, + [40858] = { + ["end"] = { + ["U"] = { 61429 }, + }, + ["lvl"] = 10, + ["min"] = 6, + ["race"] = 589, + ["start"] = { + ["U"] = { 61437 }, + }, + }, + [40859] = { + ["end"] = { + ["U"] = { 61429 }, + }, + ["lvl"] = 10, + ["min"] = 6, + ["obj"] = { + ["I"] = { 61388 }, + }, + ["pre"] = { 40858 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61429 }, + }, + }, + [40860] = { + ["end"] = { + ["U"] = { 61430 }, + }, + ["lvl"] = 43, + ["min"] = 35, + ["obj"] = { + ["I"] = { 61817 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61430 }, + }, + }, + [40861] = { + ["end"] = { + ["U"] = { 61441 }, + }, + ["lvl"] = 33, + ["min"] = 25, + ["obj"] = { + ["I"] = { 61392 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61441 }, + }, + }, + [40862] = { + ["end"] = { + ["U"] = { 61438 }, + }, + ["lvl"] = 10, + ["min"] = 6, + ["obj"] = { + ["I"] = { 61394 }, + ["U"] = { 61464 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61438 }, + }, + }, + [40863] = { + ["end"] = { + ["U"] = { 1253 }, + }, + ["lvl"] = 12, + ["min"] = 7, + ["obj"] = { + ["I"] = { 61395 }, + }, + ["start"] = { + ["U"] = { 1253 }, + }, + }, + [40864] = { + ["end"] = { + ["U"] = { 61433 }, + }, + ["lvl"] = 12, + ["min"] = 8, + ["obj"] = { + ["U"] = { 61465 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61433 }, + }, + }, + [40865] = { + ["end"] = { + ["U"] = { 61433 }, + }, + ["lvl"] = 14, + ["min"] = 8, + ["obj"] = { + ["I"] = { 61397 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61433 }, + }, + }, + [40866] = { + ["end"] = { + ["U"] = { 61446 }, + }, + ["lvl"] = 10, + ["min"] = 6, + ["obj"] = { + ["I"] = { 61400 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61446 }, + }, + }, + [40867] = { + ["end"] = { + ["U"] = { 61436 }, + }, + ["lvl"] = 10, + ["min"] = 6, + ["obj"] = { + ["I"] = { 61401 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61436 }, + }, + }, + [40868] = { + ["end"] = { + ["U"] = { 61436 }, + }, + ["lvl"] = 10, + ["min"] = 6, + ["obj"] = { + ["I"] = { 61402, 61403 }, + }, + ["pre"] = { 40867 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61436 }, + }, + }, + [40869] = { + ["end"] = { + ["U"] = { 61436 }, + }, + ["lvl"] = 14, + ["min"] = 6, + ["obj"] = { + ["I"] = { 61408 }, + }, + ["pre"] = { 40868 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61436 }, + }, + }, + [40870] = { + ["end"] = { + ["U"] = { 61494 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61409 }, + }, + ["start"] = { + ["U"] = { 61494 }, + }, + }, + [40871] = { + ["end"] = { + ["U"] = { 61494 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61409 }, + }, + ["pre"] = { 40870 }, + ["start"] = { + ["U"] = { 61494 }, + }, + }, + [40872] = { + ["end"] = { + ["U"] = { 61485 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61199 }, + }, + ["start"] = { + ["U"] = { 61485 }, + }, + }, + [40873] = { + ["end"] = { + ["U"] = { 61485 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61199 }, + }, + ["skill"] = 171, + ["start"] = { + ["U"] = { 61485 }, + }, + }, + [40874] = { + ["end"] = { + ["U"] = { 61485 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61199 }, + }, + ["skill"] = 171, + ["start"] = { + ["U"] = { 61485 }, + }, + }, + [40875] = { + ["end"] = { + ["U"] = { 61485 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61199 }, + }, + ["skill"] = 165, + ["start"] = { + ["U"] = { 61485 }, + }, + }, + [40876] = { + ["end"] = { + ["U"] = { 61496 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61412, 61413, 61414, 61415 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61496 }, + }, + }, + [40877] = { + ["end"] = { + ["U"] = { 61286 }, + }, + ["lvl"] = 42, + ["min"] = 35, + ["race"] = 434, + ["start"] = { + ["U"] = { 61282 }, + }, + }, + [40878] = { + ["end"] = { + ["U"] = { 61286 }, + }, + ["lvl"] = 42, + ["min"] = 35, + ["obj"] = { + ["I"] = { 61416 }, + }, + ["pre"] = { 40877 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61286 }, + }, + }, + [40879] = { + ["end"] = { + ["U"] = { 61286 }, + }, + ["lvl"] = 42, + ["min"] = 35, + ["obj"] = { + ["U"] = { 61234, 61235 }, + }, + ["pre"] = { 40878 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61286 }, + }, + }, + [40880] = { + ["end"] = { + ["U"] = { 61286 }, + }, + ["lvl"] = 43, + ["min"] = 35, + ["obj"] = { + ["I"] = { 61417, 61418 }, + }, + ["pre"] = { 40879 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61286 }, + }, + }, + [40881] = { + ["end"] = { + ["U"] = { 61286 }, + }, + ["lvl"] = 46, + ["min"] = 35, + ["obj"] = { + ["I"] = { 61421 }, + }, + ["pre"] = { 40880 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61286 }, + }, + }, + [40882] = { + ["end"] = { + ["U"] = { 2055 }, + }, + ["lvl"] = 46, + ["min"] = 35, + ["pre"] = { 40881 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61286 }, + }, + }, + [40883] = { + ["end"] = { + ["U"] = { 61485 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61199 }, + }, + ["skill"] = 333, + ["start"] = { + ["U"] = { 61485 }, + }, + }, + [40884] = { + ["end"] = { + ["U"] = { 61485 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61199 }, + }, + ["skill"] = 333, + ["start"] = { + ["U"] = { 61485 }, + }, + }, + [40885] = { + ["end"] = { + ["U"] = { 61505 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61198 }, + }, + ["start"] = { + ["U"] = { 61505 }, + }, + }, + [40886] = { + ["end"] = { + ["U"] = { 61491 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61199 }, + }, + ["skill"] = 186, + ["start"] = { + ["U"] = { 61491 }, + }, + }, + [40888] = { + ["end"] = { + ["U"] = { 61491 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61199 }, + }, + ["skill"] = 164, + ["start"] = { + ["U"] = { 61491 }, + }, + }, + [40889] = { + ["end"] = { + ["U"] = { 61491 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61199 }, + }, + ["skill"] = 164, + ["start"] = { + ["U"] = { 61491 }, + }, + }, + [40890] = { + ["end"] = { + ["U"] = { 61491 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61199 }, + }, + ["skill"] = 164, + ["start"] = { + ["U"] = { 61491 }, + }, + }, + [40891] = { + ["end"] = { + ["U"] = { 61506 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["U"] = { 61348 }, + }, + ["start"] = { + ["U"] = { 61506 }, + }, + }, + [40892] = { + ["end"] = { + ["U"] = { 61506 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61441 }, + }, + ["start"] = { + ["U"] = { 61506 }, + }, + }, + [40893] = { + ["end"] = { + ["U"] = { 61507 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61442 }, + }, + ["start"] = { + ["U"] = { 61507 }, + }, + }, + [40894] = { + ["end"] = { + ["U"] = { 61507 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61442 }, + }, + ["pre"] = { 40893 }, + ["start"] = { + ["U"] = { 61507 }, + }, + }, + [40895] = { + ["end"] = { + ["U"] = { 61493 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61199 }, + }, + ["skill"] = 165, + ["start"] = { + ["U"] = { 61493 }, + }, + }, + [40897] = { + ["end"] = { + ["U"] = { 61493 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61199 }, + }, + ["skill"] = 165, + ["start"] = { + ["U"] = { 61493 }, + }, + }, + [40898] = { + ["end"] = { + ["U"] = { 61493 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61199 }, + }, + ["skill"] = 165, + ["start"] = { + ["U"] = { 61493 }, + }, + }, + [40899] = { + ["end"] = { + ["U"] = { 61493 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61199 }, + }, + ["skill"] = 165, + ["start"] = { + ["U"] = { 61493 }, + }, + }, + [40900] = { + ["end"] = { + ["U"] = { 61492 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61199 }, + }, + ["skill"] = 197, + ["start"] = { + ["U"] = { 61492 }, + }, + }, + [40902] = { + ["end"] = { + ["U"] = { 61492 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61199 }, + }, + ["skill"] = 197, + ["start"] = { + ["U"] = { 61492 }, + }, + }, + [40903] = { + ["end"] = { + ["U"] = { 61492 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61199 }, + }, + ["skill"] = 197, + ["start"] = { + ["U"] = { 61492 }, + }, + }, + [40904] = { + ["end"] = { + ["U"] = { 61492 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61199 }, + }, + ["skill"] = 197, + ["start"] = { + ["U"] = { 61492 }, + }, + }, + [40905] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 61512 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = {}, + }, + ["start"] = { + ["I"] = { 61444 }, + }, + }, + [40906] = { + ["end"] = { + ["U"] = { 61512 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 11176, 12803, 61199 }, + }, + ["pre"] = { 40905 }, + ["start"] = { + ["U"] = { 61512 }, + }, + }, + [40907] = { + ["end"] = { + ["U"] = { 61452 }, + }, + ["lvl"] = 44, + ["min"] = 40, + ["obj"] = { + ["I"] = { 61446 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61513 }, + }, + }, + [40908] = { + ["end"] = { + ["U"] = { 61513 }, + }, + ["lvl"] = 44, + ["min"] = 40, + ["obj"] = { + ["U"] = { 61514 }, + }, + ["pre"] = { 40907 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61452 }, + }, + }, + [40909] = { + ["end"] = { + ["U"] = { 61509 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["U"] = { 61510, 61511 }, + }, + ["start"] = { + ["U"] = { 61509 }, + }, + }, + [40910] = { + ["end"] = { + ["U"] = { 61519 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61197, 61199 }, + }, + ["start"] = { + ["U"] = { 61519 }, + }, + }, + [40911] = { + ["end"] = { + ["U"] = { 61519 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61197, 61199 }, + }, + ["start"] = { + ["U"] = { 61519 }, + }, + }, + [40912] = { + ["end"] = { + ["U"] = { 61519 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61197, 61199 }, + }, + ["start"] = { + ["U"] = { 61519 }, + }, + }, + [40913] = { + ["class"] = 13, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61199 }, + }, + }, + [40914] = { + ["end"] = { + ["O"] = { 2020028 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = {}, + }, + ["start"] = { + ["I"] = { 61457 }, + }, + }, + [40917] = { + ["end"] = { + ["O"] = { 2020028 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61459 }, + }, + ["pre"] = { 40922 }, + ["start"] = { + ["O"] = { 2020028 }, + }, + }, + [40918] = { + ["end"] = { + ["O"] = { 2020028 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61460 }, + }, + ["pre"] = { 40917 }, + ["start"] = { + ["O"] = { 2020028 }, + }, + }, + [40919] = { + ["end"] = { + ["O"] = { 2020028 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61461 }, + }, + ["pre"] = { 40918 }, + ["start"] = { + ["O"] = { 2020028 }, + }, + }, + [40920] = { + ["end"] = { + ["O"] = { 2020028 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61462, 61463 }, + }, + ["pre"] = { 40919 }, + ["start"] = { + ["O"] = { 2020028 }, + }, + }, + [40921] = { + ["end"] = { + ["O"] = { 2020028 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61464 }, + }, + ["pre"] = { 40920 }, + ["start"] = { + ["O"] = { 2020028 }, + }, + }, + [40922] = { + ["end"] = { + ["O"] = { 2020028 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["pre"] = { 40914 }, + ["start"] = { + ["O"] = { 2020028 }, + }, + }, + [40923] = { + ["end"] = { + ["O"] = { 2020028 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["pre"] = { 40921 }, + ["start"] = { + ["O"] = { 2020028 }, + }, + }, + [40924] = { + ["end"] = { + ["U"] = { 61257 }, + }, + ["lvl"] = 45, + ["min"] = 38, + ["obj"] = { + ["I"] = { 61466 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61257 }, + }, + }, + [40925] = { + ["end"] = { + ["U"] = { 61270 }, + }, + ["lvl"] = 44, + ["min"] = 35, + ["obj"] = { + ["I"] = { 61469 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61270 }, + }, + }, + [40926] = { + ["end"] = { + ["U"] = { 61540 }, + }, + ["lvl"] = 44, + ["min"] = 35, + ["obj"] = { + ["I"] = { 61470 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61540 }, + }, + }, + [40927] = { + ["end"] = { + ["U"] = { 61540 }, + }, + ["lvl"] = 44, + ["min"] = 35, + ["obj"] = { + ["U"] = { 61252 }, + }, + ["pre"] = { 40926 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61540 }, + }, + }, + [40928] = { + ["end"] = { + ["U"] = { 61385 }, + }, + ["lvl"] = 44, + ["min"] = 35, + ["obj"] = { + ["I"] = { 61473 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61385 }, + }, + }, + [40929] = { + ["end"] = { + ["U"] = { 60733 }, + }, + ["lvl"] = 42, + ["min"] = 35, + ["race"] = 589, + ["start"] = { + ["U"] = { 61258 }, + }, + }, + [40930] = { + ["end"] = { + ["U"] = { 60733 }, + }, + ["lvl"] = 42, + ["min"] = 35, + ["obj"] = { + ["I"] = { 61474 }, + }, + ["pre"] = { 40929 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60733 }, + }, + }, + [40931] = { + ["end"] = { + ["U"] = { 61258 }, + }, + ["lvl"] = 42, + ["min"] = 35, + ["pre"] = { 40930 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60733 }, + }, + }, + [40932] = { + ["end"] = { + ["U"] = { 61384 }, + }, + ["lvl"] = 41, + ["min"] = 35, + ["obj"] = { + ["I"] = { 61477 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61384 }, + }, + }, + [40933] = { + ["end"] = { + ["U"] = { 61381 }, + }, + ["lvl"] = 42, + ["min"] = 35, + ["pre"] = { 40932 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61384 }, + }, + }, + [40934] = { + ["end"] = { + ["U"] = { 61387 }, + }, + ["lvl"] = 44, + ["min"] = 35, + ["obj"] = { + ["U"] = { 61234, 61235 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61387 }, + }, + }, + [40935] = { + ["end"] = { + ["U"] = { 61387 }, + }, + ["lvl"] = 44, + ["min"] = 35, + ["obj"] = { + ["U"] = { 4542 }, + }, + ["pre"] = { 40934 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61387 }, + }, + }, + [40936] = { + ["end"] = { + ["U"] = { 61535 }, + }, + ["lvl"] = 43, + ["min"] = 35, + ["obj"] = { + ["I"] = { 61479 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61535 }, + }, + }, + [40937] = { + ["end"] = { + ["U"] = { 61535 }, + }, + ["lvl"] = 43, + ["min"] = 35, + ["obj"] = { + ["I"] = { 61480 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61535 }, + }, + }, + [40938] = { + ["end"] = { + ["U"] = { 61535 }, + }, + ["lvl"] = 43, + ["min"] = 35, + ["obj"] = { + ["U"] = { 61237 }, + }, + ["pre"] = { 40937 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61535 }, + }, + }, + [40939] = { + ["end"] = { + ["U"] = { 61536 }, + }, + ["lvl"] = 41, + ["min"] = 35, + ["obj"] = { + ["I"] = { 61482 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61536 }, + }, + }, + [40940] = { + ["end"] = { + ["U"] = { 61271 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["obj"] = { + ["I"] = { 61484 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61271 }, + }, + }, + [40941] = { + ["end"] = { + ["U"] = { 61271 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["obj"] = { + ["I"] = { 11139 }, + }, + ["pre"] = { 40940 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61271 }, + }, + }, + [40942] = { + ["end"] = { + ["U"] = { 61271 }, + }, + ["lvl"] = 43, + ["min"] = 35, + ["obj"] = { + ["I"] = { 61485 }, + }, + ["pre"] = { 40941 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61271 }, + }, + }, + [40943] = { + ["end"] = { + ["U"] = { 61271 }, + }, + ["lvl"] = 47, + ["min"] = 35, + ["obj"] = { + ["U"] = { 61263, 61264 }, + }, + ["pre"] = { 40942 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61271 }, + }, + }, + [40944] = { + ["end"] = { + ["U"] = { 61539 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["race"] = 589, + ["start"] = { + ["U"] = { 61534 }, + }, + }, + [40945] = { + ["end"] = { + ["U"] = { 61383 }, + }, + ["lvl"] = 44, + ["min"] = 35, + ["obj"] = { + ["I"] = { 61488 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61383 }, + }, + }, + [40946] = { + ["end"] = { + ["U"] = { 61275 }, + }, + ["lvl"] = 42, + ["min"] = 35, + ["obj"] = { + ["I"] = { 61491 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61275 }, + }, + }, + [40947] = { + ["end"] = { + ["U"] = { 61275 }, + }, + ["lvl"] = 42, + ["min"] = 35, + ["obj"] = { + ["U"] = { 61404, 61406 }, + }, + ["pre"] = { 40946 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61275 }, + }, + }, + [40948] = { + ["end"] = { + ["U"] = { 61457 }, + }, + ["lvl"] = 42, + ["min"] = 35, + ["start"] = { + ["U"] = { 61257 }, + }, + }, + [40949] = { + ["end"] = { + ["U"] = { 61457 }, + }, + ["lvl"] = 42, + ["min"] = 35, + ["obj"] = { + ["I"] = { 61494 }, + }, + ["pre"] = { 40948 }, + ["start"] = { + ["U"] = { 61457 }, + }, + }, + [40950] = { + ["end"] = { + ["U"] = { 61448 }, + }, + ["lvl"] = 42, + ["min"] = 35, + ["pre"] = { 40949 }, + ["start"] = { + ["U"] = { 61457 }, + }, + }, + [40951] = { + ["end"] = { + ["U"] = { 61458 }, + }, + ["lvl"] = 42, + ["min"] = 35, + ["pre"] = { 40950 }, + ["start"] = { + ["U"] = { 61448 }, + }, + }, + [40952] = { + ["end"] = { + ["U"] = { 61260 }, + }, + ["lvl"] = 42, + ["min"] = 35, + ["pre"] = { 40951 }, + ["start"] = { + ["U"] = { 61458 }, + }, + }, + [40953] = { + ["end"] = { + ["U"] = { 61260 }, + }, + ["lvl"] = 42, + ["min"] = 35, + ["obj"] = { + ["I"] = { 61495 }, + }, + ["pre"] = { 40952 }, + ["start"] = { + ["U"] = { 61260 }, + }, + }, + [40954] = { + ["end"] = { + ["U"] = { 61458 }, + }, + ["lvl"] = 42, + ["min"] = 35, + ["pre"] = { 40953 }, + ["start"] = { + ["U"] = { 61260 }, + }, + }, + [40955] = { + ["end"] = { + ["U"] = { 61259 }, + }, + ["lvl"] = 42, + ["min"] = 35, + ["obj"] = { + ["U"] = { 61363, 61398 }, + }, + ["pre"] = { 40954 }, + ["start"] = { + ["U"] = { 61458 }, + }, + }, + [40956] = { + ["end"] = { + ["U"] = { 61259 }, + }, + ["lvl"] = 46, + ["min"] = 35, + ["obj"] = { + ["I"] = { 61496 }, + }, + ["pre"] = { 40955 }, + ["start"] = { + ["U"] = { 61259 }, + }, + }, + [40957] = { + ["end"] = { + ["U"] = { 61326 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["U"] = { 60044 }, + }, + ["start"] = { + ["U"] = { 61326 }, + }, + }, + [40958] = { + ["end"] = { + ["U"] = { 61326 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 61556 }, + }, + ["pre"] = { 40957 }, + ["start"] = { + ["U"] = { 61326 }, + }, + }, + [40959] = { + ["end"] = { + ["U"] = { 5353 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 61557, 61558, 61559 }, + }, + ["pre"] = { 40958 }, + ["start"] = { + ["U"] = { 61326 }, + }, + }, + [40960] = { + ["end"] = { + ["U"] = { 61326 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 61557, 61558, 61559, 61560 }, + }, + ["pre"] = { 40959 }, + ["start"] = { + ["U"] = { 5353 }, + }, + }, + [40961] = { + ["end"] = { + ["U"] = { 61326 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["U"] = { 60045 }, + }, + ["pre"] = { 40960 }, + ["start"] = { + ["U"] = { 61326 }, + }, + }, + [40962] = { + ["end"] = { + ["U"] = { 61326 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 61561 }, + }, + ["pre"] = { 40961 }, + ["start"] = { + ["U"] = { 61326 }, + }, + }, + [40963] = { + ["end"] = { + ["U"] = { 61326 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = {}, + }, + ["start"] = { + ["I"] = { 61215 }, + }, + }, + [40964] = { + ["end"] = { + ["U"] = { 61265 }, + }, + ["lvl"] = 38, + ["min"] = 35, + ["race"] = 589, + ["start"] = { + ["U"] = { 61557 }, + }, + }, + [40965] = { + ["end"] = { + ["U"] = { 61278 }, + }, + ["lvl"] = 42, + ["min"] = 35, + ["obj"] = { + ["I"] = { 61599 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61278 }, + }, + }, + [40966] = { + ["end"] = { + ["U"] = { 61257 }, + }, + ["lvl"] = 45, + ["min"] = 38, + ["obj"] = { + ["I"] = { 61600 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61257 }, + }, + }, + [40967] = { + ["end"] = { + ["U"] = { 61259 }, + }, + ["lvl"] = 44, + ["min"] = 35, + ["obj"] = { + ["U"] = { 61239, 61240, 61241, 61242 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61259 }, + }, + }, + [40968] = { + ["end"] = { + ["U"] = { 61259 }, + }, + ["lvl"] = 38, + ["min"] = 33, + ["race"] = 589, + ["start"] = { + ["U"] = { 2263 }, + }, + }, + [40969] = { + ["end"] = { + ["U"] = { 2498 }, + }, + ["lvl"] = 42, + ["min"] = 35, + ["race"] = 589, + ["start"] = { + ["U"] = { 61277 }, + }, + }, + [40970] = { + ["end"] = { + ["U"] = { 2498 }, + }, + ["lvl"] = 42, + ["min"] = 35, + ["obj"] = { + ["I"] = { 61606 }, + ["U"] = { 1550, 1551 }, + }, + ["pre"] = { 40969 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2498 }, + }, + }, + [40971] = { + ["end"] = { + ["U"] = { 61277 }, + }, + ["lvl"] = 42, + ["min"] = 35, + ["pre"] = { 40970 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2498 }, + }, + }, + [40972] = { + ["end"] = { + ["U"] = { 61259 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["obj"] = { + ["U"] = { 60046 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61259 }, + }, + }, + [40973] = { + ["end"] = { + ["U"] = { 61325 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61198 }, + }, + ["start"] = { + ["U"] = { 61325 }, + }, + }, + [40974] = { + ["end"] = { + ["U"] = { 61284 }, + }, + ["lvl"] = 47, + ["min"] = 39, + ["obj"] = { + ["I"] = { 61618 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61284 }, + }, + }, + [40975] = { + ["end"] = { + ["U"] = { 61559 }, + }, + ["lvl"] = 46, + ["min"] = 35, + ["obj"] = { + ["U"] = { 61421 }, + }, + ["start"] = { + ["U"] = { 61559 }, + }, + }, + [40976] = { + ["end"] = { + ["U"] = { 61283 }, + }, + ["lvl"] = 45, + ["min"] = 38, + ["obj"] = { + ["U"] = { 61252 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61283 }, + }, + }, + [40977] = { + ["end"] = { + ["U"] = { 61290 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["obj"] = { + ["U"] = { 61230 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61290 }, + }, + }, + [40978] = { + ["end"] = { + ["U"] = { 61290 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["obj"] = { + ["I"] = { 61624, 61625 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61290 }, + }, + }, + [40979] = { + ["end"] = { + ["U"] = { 61290 }, + }, + ["lvl"] = 45, + ["min"] = 35, + ["obj"] = { + ["I"] = { 61626 }, + ["U"] = { 61422 }, + }, + ["pre"] = { 40977 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61290 }, + }, + }, + [40980] = { + ["end"] = { + ["U"] = { 61287 }, + }, + ["lvl"] = 45, + ["min"] = 35, + ["obj"] = { + ["I"] = { 61631 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61287 }, + }, + }, + [40981] = { + ["end"] = { + ["U"] = { 61287 }, + }, + ["lvl"] = 45, + ["min"] = 35, + ["obj"] = { + ["I"] = { 61632 }, + }, + ["pre"] = { 40980 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61287 }, + }, + }, + [40982] = { + ["end"] = { + ["U"] = { 61287 }, + }, + ["lvl"] = 45, + ["min"] = 35, + ["obj"] = { + ["U"] = { 60047 }, + }, + ["pre"] = { 40981 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61287 }, + }, + }, + [40983] = { + ["end"] = { + ["U"] = { 61512 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["start"] = { + ["U"] = { 61560 }, + }, + }, + [40984] = { + ["end"] = { + ["U"] = { 61561 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61636, 61637, 61638 }, + }, + ["start"] = { + ["U"] = { 61561 }, + }, + }, + [40985] = { + ["end"] = { + ["U"] = { 61561 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["U"] = { 60048 }, + }, + ["pre"] = { 40984 }, + ["start"] = { + ["U"] = { 61561 }, + }, + }, + [40986] = { + ["end"] = { + ["U"] = { 61561 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61639, 61640, 61641 }, + }, + ["pre"] = { 40985 }, + ["start"] = { + ["U"] = { 61561 }, + }, + }, + [40987] = { + ["end"] = { + ["U"] = { 61561 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61642 }, + }, + ["pre"] = { 40986 }, + ["start"] = { + ["U"] = { 61561 }, + }, + }, + [40988] = { + ["end"] = { + ["U"] = { 61561 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61643 }, + }, + ["pre"] = { 40987 }, + ["start"] = { + ["U"] = { 61561 }, + }, + }, + [40989] = { + ["end"] = { + ["U"] = { 61528 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["pre"] = { 40988 }, + ["start"] = { + ["U"] = { 61561 }, + }, + }, + [40990] = { + ["end"] = { + ["U"] = { 61528 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61644 }, + }, + ["pre"] = { 40989 }, + ["start"] = { + ["U"] = { 61528 }, + }, + }, + [40991] = { + ["end"] = { + ["U"] = { 61281 }, + }, + ["lvl"] = 40, + ["min"] = 35, + ["obj"] = { + ["I"] = { 61653 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61281 }, + }, + }, + [40992] = { + ["end"] = { + ["U"] = { 61285 }, + }, + ["lvl"] = 43, + ["min"] = 35, + ["obj"] = { + ["I"] = { 61654 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61285 }, + }, + }, + [40993] = { + ["end"] = { + ["U"] = { 61281 }, + }, + ["lvl"] = 42, + ["min"] = 38, + ["obj"] = { + ["I"] = { 61655 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61281 }, + }, + }, + [40994] = { + ["end"] = { + ["U"] = { 61281 }, + }, + ["lvl"] = 46, + ["min"] = 38, + ["obj"] = { + ["I"] = { 61656 }, + }, + ["pre"] = { 40993 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61281 }, + }, + }, + [40995] = { + ["end"] = { + ["U"] = { 61281 }, + }, + ["lvl"] = 44, + ["min"] = 38, + ["obj"] = { + ["I"] = { 61657 }, + }, + ["pre"] = { 40994 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61281 }, + }, + }, + [40996] = { + ["end"] = { + ["U"] = { 61281 }, + }, + ["lvl"] = 47, + ["min"] = 38, + ["obj"] = { + ["I"] = { 61658 }, + }, + ["pre"] = { 40995 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61281 }, + }, + }, + [40997] = { + ["end"] = { + ["U"] = { 2425 }, + }, + ["lvl"] = 47, + ["min"] = 38, + ["pre"] = { 40996 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61281 }, + }, + }, + [40998] = { + ["end"] = { + ["U"] = { 61320 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = {}, + }, + ["start"] = { + ["I"] = { 51326 }, + }, + }, + [40999] = { + ["end"] = { + ["U"] = { 61320 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61663 }, + }, + ["pre"] = { 40998 }, + ["start"] = { + ["U"] = { 61320 }, + }, + }, + [41000] = { + ["end"] = { + ["U"] = { 61320 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61664 }, + }, + ["pre"] = { 40999 }, + ["start"] = { + ["U"] = { 61320 }, + }, + }, + [41001] = { + ["end"] = { + ["U"] = { 61328 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["pre"] = { 41000 }, + ["start"] = { + ["U"] = { 61320 }, + }, + }, + [41002] = { + ["end"] = { + ["U"] = { 61571 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["pre"] = { 41001 }, + ["start"] = { + ["U"] = { 61328 }, + }, + }, + [41003] = { + ["end"] = { + ["U"] = { 61571 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 12803, 12808 }, + }, + ["pre"] = { 41002 }, + ["start"] = { + ["U"] = { 61571 }, + }, + }, + [41004] = { + ["end"] = { + ["U"] = { 61328 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["pre"] = { 41003 }, + ["start"] = { + ["U"] = { 61571 }, + }, + }, + [41005] = { + ["end"] = { + ["U"] = { 61505 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61198 }, + }, + ["start"] = { + ["U"] = { 61505 }, + }, + }, + [41006] = { + ["end"] = { + ["U"] = { 61531 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61199 }, + }, + ["start"] = { + ["U"] = { 61531 }, + }, + }, + [41007] = { + ["end"] = { + ["U"] = { 61522 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61197 }, + }, + ["start"] = { + ["U"] = { 61522 }, + }, + }, + [41008] = { + ["end"] = { + ["U"] = { 61485 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61199 }, + }, + ["start"] = { + ["U"] = { 61485 }, + }, + }, + [41009] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 11957 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61199, 61673 }, + }, + ["start"] = { + ["U"] = { 61521 }, + }, + }, + [41010] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 11956 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61199, 61673 }, + }, + ["start"] = { + ["U"] = { 61521 }, + }, + }, + [41011] = { + ["end"] = { + ["U"] = { 61570 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61693 }, + }, + ["start"] = { + ["U"] = { 61570 }, + }, + }, + [41012] = { + ["end"] = { + ["U"] = { 61570 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 7078, 61694 }, + }, + ["pre"] = { 41011 }, + ["start"] = { + ["U"] = { 61570 }, + }, + }, + [41013] = { + ["end"] = { + ["U"] = { 61570 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61695 }, + }, + ["pre"] = { 41012 }, + ["start"] = { + ["U"] = { 61570 }, + }, + }, + [41014] = { + ["end"] = { + ["U"] = { 61570 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["U"] = { 60049 }, + }, + ["pre"] = { 41013 }, + ["start"] = { + ["U"] = { 61570 }, + }, + }, + [41015] = { + ["end"] = { + ["U"] = { 61568 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61696, 61697 }, + }, + ["start"] = { + ["U"] = { 61568 }, + }, + }, + [41016] = { + ["end"] = { + ["U"] = { 61512 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61702 }, + }, + ["start"] = { + ["U"] = { 61512 }, + }, + }, + [41017] = { + ["end"] = { + ["U"] = { 61512 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61704 }, + }, + ["start"] = { + ["U"] = { 61512 }, + }, + }, + [41018] = { + ["end"] = { + ["U"] = { 61512 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61706 }, + }, + ["start"] = { + ["U"] = { 61512 }, + }, + }, + [41019] = { + ["end"] = { + ["U"] = { 61520 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61707 }, + }, + ["start"] = { + ["U"] = { 61520 }, + }, + }, + [41020] = { + ["end"] = { + ["U"] = { 61512 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61768 }, + }, + ["pre"] = { 41016 }, + ["start"] = { + ["U"] = { 61512 }, + }, + }, + [41021] = { + ["end"] = { + ["U"] = { 61355 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61711, 61712 }, + }, + ["start"] = { + ["U"] = { 61355 }, + }, + }, + [41022] = { + ["end"] = { + ["U"] = { 61562 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61713 }, + }, + ["start"] = { + ["U"] = { 61562 }, + }, + }, + [41023] = { + ["end"] = { + ["U"] = { 61528 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["pre"] = { 41022 }, + ["start"] = { + ["U"] = { 61562 }, + }, + }, + [41024] = { + ["end"] = { + ["U"] = { 61576 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["pre"] = { 41023 }, + ["start"] = { + ["U"] = { 61528 }, + }, + }, + [41025] = { + ["end"] = { + ["U"] = { 61576 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61715 }, + }, + ["pre"] = { 41024 }, + ["start"] = { + ["U"] = { 61576 }, + }, + }, + [41026] = { + ["end"] = { + ["U"] = { 61512 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["pre"] = { 41025 }, + ["start"] = { + ["U"] = { 61576 }, + }, + }, + [41027] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 11957 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61718 }, + }, + ["start"] = { + ["U"] = { 11957 }, + }, + }, + [41028] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 11957 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 12803, 14344, 61199 }, + }, + ["pre"] = { 41027 }, + ["start"] = { + ["U"] = { 11957 }, + }, + }, + [41029] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 11957 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["U"] = { 61594 }, + }, + ["pre"] = { 41028 }, + ["start"] = { + ["U"] = { 11957 }, + }, + }, + [41030] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 11957 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["U"] = { 60050 }, + }, + ["pre"] = { 41029 }, + ["start"] = { + ["U"] = { 11957 }, + }, + }, + [41031] = { + ["end"] = { + ["U"] = { 61595 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61199 }, + }, + ["pre"] = { 41030 }, + ["start"] = { + ["U"] = { 61595 }, + }, + }, + [41032] = { + ["end"] = { + ["U"] = { 61447 }, + }, + ["lvl"] = 42, + ["min"] = 39, + ["obj"] = { + ["I"] = { 61719 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61447 }, + }, + }, + [41033] = { + ["end"] = { + ["U"] = { 61460 }, + }, + ["lvl"] = 42, + ["min"] = 38, + ["obj"] = { + ["I"] = { 61720 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61460 }, + }, + }, + [41034] = { + ["end"] = { + ["U"] = { 61459 }, + }, + ["lvl"] = 43, + ["min"] = 38, + ["obj"] = { + ["I"] = { 61721, 61722 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61459 }, + }, + }, + [41035] = { + ["end"] = { + ["U"] = { 61454 }, + }, + ["lvl"] = 43, + ["min"] = 38, + ["obj"] = { + ["U"] = { 61602 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61454 }, + }, + }, + [41036] = { + ["end"] = { + ["U"] = { 61452 }, + }, + ["lvl"] = 44, + ["min"] = 37, + ["obj"] = { + ["I"] = { 61724 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61452 }, + }, + }, + [41037] = { + ["end"] = { + ["U"] = { 61449 }, + }, + ["lvl"] = 44, + ["min"] = 38, + ["obj"] = { + ["I"] = { 61728 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61449 }, + }, + }, + [41038] = { + ["end"] = { + ["U"] = { 61326 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = {}, + }, + ["start"] = { + ["I"] = { 61652 }, + }, + }, + [41039] = { + ["end"] = { + ["U"] = { 61585 }, + }, + ["lvl"] = 42, + ["min"] = 35, + ["obj"] = { + ["I"] = { 61741 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61585 }, + }, + }, + [41040] = { + ["end"] = { + ["U"] = { 61583 }, + }, + ["lvl"] = 42, + ["min"] = 35, + ["obj"] = { + ["U"] = { 5249, 5251, 5255, 5258 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61583 }, + }, + }, + [41041] = { + ["end"] = { + ["U"] = { 61583 }, + }, + ["lvl"] = 42, + ["min"] = 38, + ["obj"] = { + ["I"] = { 61742 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61583 }, + }, + }, + [41042] = { + ["end"] = { + ["U"] = { 3516 }, + }, + ["lvl"] = 42, + ["min"] = 38, + ["pre"] = { 41041 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61583 }, + }, + }, + [41043] = { + ["end"] = { + ["U"] = { 61584 }, + }, + ["lvl"] = 45, + ["min"] = 38, + ["obj"] = { + ["I"] = { 61743 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61584 }, + }, + }, + [41044] = { + ["end"] = { + ["U"] = { 61452 }, + }, + ["lvl"] = 45, + ["min"] = 38, + ["pre"] = { 41043 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61584 }, + }, + }, + [41045] = { + ["end"] = { + ["U"] = { 61452 }, + }, + ["lvl"] = 45, + ["min"] = 38, + ["obj"] = { + ["I"] = { 61744 }, + }, + ["pre"] = { 41044 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61452 }, + }, + }, + [41046] = { + ["end"] = { + ["U"] = { 61584 }, + }, + ["lvl"] = 45, + ["min"] = 38, + ["pre"] = { 41045 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61452 }, + }, + }, + [41047] = { + ["end"] = { + ["U"] = { 61586 }, + }, + ["lvl"] = 45, + ["min"] = 38, + ["pre"] = { 41046 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61584 }, + }, + }, + [41048] = { + ["end"] = { + ["U"] = { 61584 }, + }, + ["lvl"] = 47, + ["min"] = 38, + ["obj"] = { + ["I"] = { 61746 }, + }, + ["pre"] = { 41047 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61586 }, + }, + }, + [41049] = { + ["end"] = { + ["U"] = { 61588 }, + }, + ["lvl"] = 44, + ["min"] = 38, + ["race"] = 589, + ["start"] = { + ["U"] = { 61587 }, + }, + }, + [41050] = { + ["end"] = { + ["U"] = { 61588 }, + }, + ["lvl"] = 44, + ["min"] = 38, + ["obj"] = { + ["U"] = { 61596, 61597 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61588 }, + }, + }, + [41051] = { + ["end"] = { + ["U"] = { 61588 }, + }, + ["lvl"] = 44, + ["min"] = 38, + ["obj"] = { + ["I"] = { 61747 }, + }, + ["pre"] = { 41050 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61588 }, + }, + }, + [41052] = { + ["end"] = { + ["U"] = { 61588 }, + }, + ["lvl"] = 48, + ["min"] = 38, + ["obj"] = { + ["I"] = { 61748 }, + }, + ["pre"] = { 41051 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61588 }, + }, + }, + [41053] = { + ["end"] = { + ["U"] = { 61583 }, + }, + ["lvl"] = 28, + ["min"] = 25, + ["obj"] = { + ["I"] = { 61749 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61583 }, + }, + }, + [41054] = { + ["end"] = { + ["U"] = { 61583 }, + }, + ["lvl"] = 28, + ["min"] = 25, + ["obj"] = { + ["I"] = { 61750 }, + }, + ["pre"] = { 41053 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61583 }, + }, + }, + [41055] = { + ["end"] = { + ["U"] = { 61327 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 20381 }, + }, + ["start"] = { + ["U"] = { 61327 }, + }, + }, + [41056] = { + ["end"] = { + ["U"] = { 61607 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61199 }, + }, + ["start"] = { + ["U"] = { 61607 }, + }, + }, + [41057] = { + ["end"] = { + ["U"] = { 61607 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61199 }, + }, + ["start"] = { + ["U"] = { 61607 }, + }, + }, + [41058] = { + ["end"] = { + ["U"] = { 61607 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61199 }, + }, + ["start"] = { + ["U"] = { 61607 }, + }, + }, + [41059] = { + ["end"] = { + ["U"] = { 61607 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61199 }, + }, + ["start"] = { + ["U"] = { 61607 }, + }, + }, + [41060] = { + ["end"] = { + ["U"] = { 61607 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61199 }, + }, + ["start"] = { + ["U"] = { 61607 }, + }, + }, + [41061] = { + ["end"] = { + ["U"] = { 61607 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61199 }, + }, + ["start"] = { + ["U"] = { 61607 }, + }, + }, + [41062] = { + ["class"] = 1424, + ["end"] = { + ["U"] = { 61255 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = {}, + ["U"] = { 61223 }, + }, + ["start"] = { + ["I"] = { 61184 }, + }, + }, + [41063] = { + ["end"] = { + ["U"] = { 288 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 41062 }, + ["start"] = { + ["U"] = { 61255 }, + }, + }, + [41064] = { + ["end"] = { + ["U"] = { 3946 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 41063 }, + ["start"] = { + ["U"] = { 288 }, + }, + }, + [41065] = { + ["end"] = { + ["U"] = { 3946 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 61608 }, + }, + ["pre"] = { 41064 }, + ["start"] = { + ["U"] = { 3946 }, + }, + }, + [41066] = { + ["end"] = { + ["U"] = { 61512 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 41065 }, + ["start"] = { + ["U"] = { 3946 }, + }, + }, + [41067] = { + ["end"] = { + ["U"] = { 61512 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 61760 }, + }, + ["pre"] = { 41066 }, + ["start"] = { + ["U"] = { 61512 }, + }, + }, + [41068] = { + ["end"] = { + ["U"] = { 61327 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 8831 }, + }, + ["start"] = { + ["U"] = { 61327 }, + }, + }, + [41069] = { + ["end"] = { + ["U"] = { 61327 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 13468 }, + }, + ["start"] = { + ["U"] = { 61327 }, + }, + }, + [41070] = { + ["end"] = { + ["U"] = { 61149 }, + }, + ["lvl"] = 50, + ["min"] = 46, + ["obj"] = { + ["I"] = { 61761 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61149 }, + }, + }, + [41071] = { + ["end"] = { + ["U"] = { 9465 }, + }, + ["lvl"] = 52, + ["min"] = 46, + ["obj"] = { + ["U"] = { 8957 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 9465 }, + }, + }, + [41072] = { + ["end"] = { + ["U"] = { 61592 }, + }, + ["lvl"] = 52, + ["min"] = 46, + ["race"] = 589, + ["start"] = { + ["U"] = { 61591 }, + }, + }, + [41073] = { + ["end"] = { + ["U"] = { 61593 }, + }, + ["lvl"] = 52, + ["min"] = 46, + ["pre"] = { 41072 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61592 }, + }, + }, + [41074] = { + ["end"] = { + ["U"] = { 61592 }, + }, + ["lvl"] = 52, + ["min"] = 46, + ["obj"] = { + ["I"] = { 61763 }, + }, + ["pre"] = { 41073 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61593 }, + }, + }, + [41075] = { + ["end"] = { + ["U"] = { 61591 }, + }, + ["lvl"] = 54, + ["min"] = 46, + ["obj"] = { + ["I"] = {}, + }, + ["pre"] = { 41073 }, + ["race"] = 589, + ["start"] = { + ["I"] = { 61764 }, + }, + }, + [41076] = { + ["end"] = { + ["U"] = { 61591 }, + }, + ["lvl"] = 54, + ["min"] = 46, + ["obj"] = { + ["I"] = { 61766 }, + }, + ["pre"] = { 41075 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61591 }, + }, + }, + [41077] = { + ["end"] = { + ["U"] = { 3936 }, + }, + ["lvl"] = 54, + ["min"] = 46, + ["pre"] = { 41076 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61591 }, + }, + }, + [41078] = { + ["end"] = { + ["U"] = { 61610 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 16203, 16204, 61673 }, + }, + ["start"] = { + ["U"] = { 61610 }, + }, + }, + [41079] = { + ["end"] = { + ["U"] = { 61610 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61673, 61674 }, + }, + ["pre"] = { 41078 }, + ["start"] = { + ["U"] = { 61610 }, + }, + }, + [41080] = { + ["end"] = { + ["U"] = { 61610 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61673, 61674 }, + }, + ["pre"] = { 41078 }, + ["start"] = { + ["U"] = { 61610 }, + }, + }, + [41081] = { + ["end"] = { + ["U"] = { 61610 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61673, 61674 }, + }, + ["pre"] = { 41078 }, + ["start"] = { + ["U"] = { 61610 }, + }, + }, + [41082] = { + ["end"] = { + ["U"] = { 61610 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61673, 61674 }, + }, + ["pre"] = { 41078 }, + ["start"] = { + ["U"] = { 61610 }, + }, + }, + [41083] = { + ["end"] = { + ["U"] = { 61322 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61769 }, + }, + ["start"] = { + ["U"] = { 61322 }, + }, + }, + [41084] = { + ["end"] = { + ["U"] = { 61328 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["pre"] = { 41083 }, + ["start"] = { + ["U"] = { 61322 }, + }, + }, + [41085] = { + ["end"] = { + ["U"] = { 61328 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 2593, 8845, 12808 }, + }, + ["pre"] = { 41084 }, + ["start"] = { + ["U"] = { 61328 }, + }, + }, + [41086] = { + ["end"] = { + ["U"] = { 61322 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["pre"] = { 41085 }, + ["start"] = { + ["U"] = { 61328 }, + }, + }, + [41087] = { + ["end"] = { + ["U"] = { 61512 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 61772 }, + }, + ["pre"] = { 41067 }, + ["start"] = { + ["U"] = { 61512 }, + }, + }, + [41088] = { + ["end"] = { + ["U"] = { 61580 }, + }, + ["lvl"] = 60, + ["min"] = 59, + ["obj"] = { + ["I"] = { 61774 }, + }, + ["start"] = { + ["U"] = { 61580 }, + }, + }, + [41090] = { + ["end"] = { + ["U"] = { 61579 }, + }, + ["lvl"] = 60, + ["min"] = 59, + ["obj"] = { + ["I"] = { 61775 }, + }, + ["pre"] = { 41106 }, + ["start"] = { + ["U"] = { 61579 }, + }, + }, + [41091] = { + ["end"] = { + ["U"] = { 60710 }, + }, + ["lvl"] = 60, + ["min"] = 59, + ["pre"] = { 41090 }, + ["start"] = { + ["U"] = { 61579 }, + }, + }, + [41092] = { + ["end"] = { + ["U"] = { 60710 }, + }, + ["lvl"] = 60, + ["min"] = 59, + ["obj"] = { + ["I"] = { 61776 }, + }, + ["pre"] = { 41091 }, + ["start"] = { + ["U"] = { 60710 }, + }, + }, + [41093] = { + ["end"] = { + ["U"] = { 61581 }, + }, + ["lvl"] = 60, + ["min"] = 59, + ["pre"] = { 41092 }, + ["start"] = { + ["U"] = { 60710 }, + }, + }, + [41094] = { + ["end"] = { + ["U"] = { 61581 }, + }, + ["lvl"] = 60, + ["min"] = 59, + ["obj"] = { + ["U"] = { 7463 }, + }, + ["pre"] = { 41093 }, + ["start"] = { + ["U"] = { 61581 }, + }, + }, + [41095] = { + ["end"] = { + ["U"] = { 61578 }, + }, + ["lvl"] = 55, + ["min"] = 60, + ["obj"] = { + ["I"] = { 61778 }, + ["U"] = { 61360 }, + }, + ["start"] = { + ["U"] = { 61578 }, + }, + }, + [41096] = { + ["end"] = { + ["U"] = { 61579 }, + }, + ["lvl"] = 60, + ["min"] = 59, + ["pre"] = { 41094 }, + ["start"] = { + ["U"] = { 61581 }, + }, + }, + [41097] = { + ["end"] = { + ["U"] = { 61577 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 41096 }, + ["start"] = { + ["U"] = { 61579 }, + }, + }, + [41098] = { + ["end"] = { + ["U"] = { 51266 }, + }, + ["lvl"] = 46, + ["min"] = 40, + ["pre"] = { 80396 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61611 }, + }, + }, + [41099] = { + ["end"] = { + ["U"] = { 51266 }, + }, + ["lvl"] = 46, + ["min"] = 40, + ["pre"] = { 80396 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61612 }, + }, + }, + [41100] = { + ["end"] = { + ["U"] = { 16135 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 80409 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61611 }, + }, + }, + [41101] = { + ["end"] = { + ["U"] = { 16135 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 80409 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61612 }, + }, + }, + [41102] = { + ["end"] = { + ["U"] = { 60443 }, + }, + ["lvl"] = 45, + ["min"] = 45, + ["pre"] = { 40130 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61612 }, + }, + }, + [41103] = { + ["end"] = { + ["U"] = { 60441 }, + }, + ["lvl"] = 45, + ["min"] = 45, + ["pre"] = { 40128 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61611 }, + }, + }, + [41104] = { + ["end"] = { + ["U"] = { 60443 }, + }, + ["lvl"] = 55, + ["min"] = 53, + ["pre"] = { 40131 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61612 }, + }, + }, + [41105] = { + ["end"] = { + ["U"] = { 60441 }, + }, + ["lvl"] = 53, + ["min"] = 53, + ["pre"] = { 40129 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61611 }, + }, + }, + [41106] = { + ["end"] = { + ["U"] = { 61579 }, + }, + ["lvl"] = 60, + ["min"] = 59, + ["pre"] = { 41088 }, + ["start"] = { + ["U"] = { 61580 }, + }, + }, + [41107] = { + ["end"] = { + ["U"] = { 15350 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 61793 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 15350 }, + }, + }, + [41108] = { + ["end"] = { + ["U"] = { 15351 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 61793 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 15351 }, + }, + }, + [41109] = { + ["end"] = { + ["U"] = { 61638 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 61793 }, + }, + ["start"] = { + ["U"] = { 61638 }, + }, + }, + [41110] = { + ["end"] = { + ["U"] = { 61638 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["start"] = { + ["U"] = { 61638 }, + }, + }, + [41111] = { + ["end"] = { + ["U"] = { 61485 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61199 }, + }, + ["skill"] = 164, + ["start"] = { + ["U"] = { 61485 }, + }, + }, + [41112] = { + ["end"] = { + ["U"] = { 61460 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 61795 }, + }, + ["start"] = { + ["U"] = { 61460 }, + }, + }, + [41113] = { + ["end"] = { + ["U"] = { 61377 }, + }, + ["lvl"] = 45, + ["min"] = 40, + ["obj"] = { + ["I"] = { 61796 }, + }, + ["start"] = { + ["U"] = { 61377 }, + }, + }, + [41114] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 60731 }, + }, + ["lvl"] = 45, + ["min"] = 38, + ["obj"] = { + ["I"] = { 61797 }, + }, + ["pre"] = { 40407 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60731 }, + }, + }, + [41115] = { + ["end"] = { + ["U"] = { 61486 }, + }, + ["lvl"] = 60, + ["min"] = 30, + ["start"] = { + ["U"] = { 61486 }, + }, + }, + [41117] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 983 }, + }, + ["lvl"] = 48, + ["min"] = 40, + ["obj"] = { + ["I"] = { 61798 }, + }, + ["pre"] = { 40208 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 983 }, + }, + }, + [41118] = { + ["end"] = { + ["U"] = { 61639 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 61793 }, + }, + ["start"] = { + ["U"] = { 61639 }, + }, + }, + [41119] = { + ["end"] = { + ["U"] = { 61616 }, + }, + ["event"] = 171, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 61794 }, + }, + ["start"] = { + ["U"] = { 61616 }, + }, + }, + [41120] = { + ["end"] = { + ["U"] = { 61416 }, + }, + ["lvl"] = 39, + ["min"] = 35, + ["obj"] = { + ["I"] = { 61390 }, + }, + ["start"] = { + ["U"] = { 61416 }, + }, + }, + [41121] = { + ["end"] = { + ["U"] = { 61614 }, + }, + ["lvl"] = 44, + ["min"] = 38, + ["obj"] = { + ["I"] = { 61800 }, + }, + ["start"] = { + ["U"] = { 61614 }, + }, + }, + [41122] = { + ["end"] = { + ["U"] = { 6446 }, + }, + ["lvl"] = 42, + ["min"] = 38, + ["obj"] = { + ["U"] = { 61398 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 6446 }, + }, + }, + [41123] = { + ["end"] = { + ["U"] = { 40049 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 61794 }, + }, + ["start"] = { + ["U"] = { 40049 }, + }, + }, + [41126] = { + ["end"] = { + ["U"] = { 12944 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 11371 }, + }, + ["start"] = { + ["U"] = { 12944 }, + }, + }, + [41127] = { + ["end"] = { + ["U"] = { 60997 }, + }, + ["lvl"] = 19, + ["min"] = 16, + ["race"] = 589, + ["start"] = { + ["U"] = { 3663 }, + }, + }, + [41128] = { + ["end"] = { + ["U"] = { 61325 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61199 }, + }, + ["start"] = { + ["U"] = { 61325 }, + }, + }, + [41129] = { + ["end"] = { + ["U"] = { 61616 }, + }, + ["event"] = 171, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 61794 }, + }, + ["start"] = { + ["U"] = { 61616 }, + }, + }, + [41130] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 61627 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 7 }, + ["race"] = 1, + ["start"] = { + ["U"] = { 197 }, + }, + }, + [41131] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 61625 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["IR"] = { 61812 }, + }, + ["race"] = 1, + ["start"] = { + ["U"] = { 61625 }, + }, + }, + [41132] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 61625 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["IR"] = { 61813 }, + }, + ["pre"] = { 41131 }, + ["race"] = 1, + ["start"] = { + ["U"] = { 61625 }, + }, + }, + [41133] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 61625 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["IR"] = { 61814 }, + }, + ["pre"] = { 41132 }, + ["race"] = 1, + ["start"] = { + ["U"] = { 61625 }, + }, + }, + [41134] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 61629 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 41133 }, + ["race"] = 1, + ["start"] = { + ["U"] = { 61625 }, + }, + }, + [41135] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 61634 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 788 }, + ["race"] = 128, + ["start"] = { + ["U"] = { 3143 }, + }, + }, + [41136] = { + ["end"] = { + ["U"] = { 60731 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["pre"] = { 40819 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2543 }, + }, + }, + [41137] = { + ["close"] = { 40824, 41137 }, + ["end"] = { + ["U"] = { 61137 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["pre"] = { 41136 }, + ["start"] = { + ["U"] = { 60731 }, + }, + }, + [41138] = { + ["end"] = { + ["U"] = { 80450 }, + }, + ["lvl"] = 63, + ["min"] = 58, + ["obj"] = { + ["I"] = { 60623 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 80450 }, + }, + }, + [41139] = { + ["end"] = { + ["U"] = { 80451 }, + }, + ["lvl"] = 63, + ["min"] = 58, + ["obj"] = { + ["U"] = { 93107 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 80451 }, + }, + }, + [41140] = { + ["end"] = { + ["U"] = { 61756 }, + }, + ["lvl"] = 46, + ["min"] = 40, + ["obj"] = { + ["I"] = { 41000 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61756 }, + }, + }, + [41141] = { + ["end"] = { + ["U"] = { 61757 }, + }, + ["lvl"] = 49, + ["min"] = 40, + ["obj"] = { + ["I"] = { 41001 }, + }, + ["pre"] = { 41140 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61757 }, + }, + }, + [41142] = { + ["end"] = { + ["U"] = { 61758 }, + }, + ["lvl"] = 50, + ["min"] = 40, + ["obj"] = { + ["I"] = { 41002, 41003 }, + }, + ["pre"] = { 41141 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61758 }, + }, + }, + [41143] = { + ["end"] = { + ["U"] = { 61758 }, + }, + ["lvl"] = 50, + ["min"] = 40, + ["obj"] = { + ["U"] = { 60052 }, + }, + ["pre"] = { 41142 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61758 }, + }, + }, + [41144] = { + ["end"] = { + ["U"] = { 7778 }, + }, + ["lvl"] = 44, + ["min"] = 38, + ["obj"] = { + ["I"] = { 41004, 41005, 41006 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 7778 }, + }, + }, + [41145] = { + ["end"] = { + ["U"] = { 11097 }, + }, + ["lvl"] = 44, + ["min"] = 38, + ["pre"] = { 41144 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 7778 }, + }, + }, + [41146] = { + ["end"] = { + ["U"] = { 11097 }, + }, + ["lvl"] = 44, + ["min"] = 38, + ["obj"] = { + ["I"] = { 41008 }, + }, + ["pre"] = { 41145 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 11097 }, + }, + }, + [41147] = { + ["end"] = { + ["U"] = { 7778 }, + }, + ["lvl"] = 44, + ["min"] = 38, + ["pre"] = { 41146 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 11097 }, + }, + }, + [41148] = { + ["end"] = { + ["O"] = { 2020062 }, + }, + ["lvl"] = 44, + ["min"] = 38, + ["pre"] = { 41147 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 7778 }, + }, + }, + [41149] = { + ["end"] = { + ["U"] = { 7778 }, + }, + ["lvl"] = 44, + ["min"] = 38, + ["pre"] = { 41148 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 2020062 }, + }, + }, + [41150] = { + ["end"] = { + ["U"] = { 61741 }, + }, + ["lvl"] = 2, + ["min"] = 1, + ["obj"] = { + ["I"] = { 41012 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61741 }, + }, + }, + [41151] = { + ["end"] = { + ["U"] = { 61741 }, + }, + ["lvl"] = 2, + ["min"] = 1, + ["obj"] = { + ["U"] = { 80117 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61741 }, + }, + }, + [41152] = { + ["end"] = { + ["U"] = { 61741 }, + }, + ["lvl"] = 5, + ["min"] = 2, + ["obj"] = { + ["I"] = { 41015 }, + }, + ["pre"] = { 41150 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61741 }, + }, + }, + [41153] = { + ["end"] = { + ["U"] = { 61725 }, + }, + ["lvl"] = 3, + ["min"] = 1, + ["obj"] = { + ["U"] = { 61686 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61725 }, + }, + }, + [41154] = { + ["end"] = { + ["U"] = { 61737 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["obj"] = { + ["I"] = { 41022 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61737 }, + }, + }, + [41155] = { + ["end"] = { + ["U"] = { 61741 }, + }, + ["lvl"] = 2, + ["min"] = 1, + ["pre"] = { 41154 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61737 }, + }, + }, + [41156] = { + ["end"] = { + ["U"] = { 61725 }, + }, + ["lvl"] = 2, + ["min"] = 1, + ["pre"] = { 41154 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61737 }, + }, + }, + [41157] = { + ["end"] = { + ["U"] = { 61754 }, + }, + ["lvl"] = 3, + ["min"] = 1, + ["pre"] = { 41154 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61737 }, + }, + }, + [41158] = { + ["end"] = { + ["U"] = { 61754 }, + }, + ["lvl"] = 4, + ["min"] = 1, + ["obj"] = { + ["U"] = { 61678, 61679 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61754 }, + }, + }, + [41159] = { + ["end"] = { + ["U"] = { 61754 }, + }, + ["lvl"] = 4, + ["min"] = 1, + ["obj"] = { + ["I"] = { 41027 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61754 }, + }, + }, + [41160] = { + ["end"] = { + ["U"] = { 61755 }, + }, + ["lvl"] = 4, + ["min"] = 1, + ["obj"] = { + ["I"] = { 41028 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61755 }, + }, + }, + [41161] = { + ["end"] = { + ["U"] = { 61749 }, + }, + ["lvl"] = 6, + ["min"] = 3, + ["obj"] = { + ["I"] = { 41030 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61749 }, + }, + }, + [41162] = { + ["end"] = { + ["U"] = { 61749 }, + }, + ["lvl"] = 6, + ["min"] = 3, + ["obj"] = { + ["U"] = { 61657, 61662 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61749 }, + }, + }, + [41163] = { + ["end"] = { + ["U"] = { 61748 }, + }, + ["lvl"] = 6, + ["min"] = 3, + ["obj"] = { + ["U"] = { 61688 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61748 }, + }, + }, + [41164] = { + ["end"] = { + ["U"] = { 61730 }, + }, + ["lvl"] = 7, + ["min"] = 3, + ["obj"] = { + ["I"] = { 41031 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61730 }, + }, + }, + [41165] = { + ["end"] = { + ["U"] = { 61746 }, + }, + ["lvl"] = 8, + ["min"] = 3, + ["race"] = 434, + ["start"] = { + ["U"] = { 61730 }, + }, + }, + [41166] = { + ["end"] = { + ["U"] = { 61730 }, + }, + ["lvl"] = 7, + ["min"] = 3, + ["obj"] = { + ["I"] = { 41032 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61730 }, + }, + }, + [41167] = { + ["end"] = { + ["U"] = { 61752 }, + }, + ["lvl"] = 6, + ["min"] = 3, + ["obj"] = { + ["I"] = { 41033 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61752 }, + }, + }, + [41168] = { + ["end"] = { + ["U"] = { 61728 }, + }, + ["lvl"] = 6, + ["min"] = 3, + ["obj"] = { + ["I"] = { 2674, 41036 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61728 }, + }, + }, + [41169] = { + ["end"] = { + ["U"] = { 80178 }, + }, + ["lvl"] = 5, + ["min"] = 3, + ["race"] = 434, + ["start"] = { + ["U"] = { 61729 }, + }, + }, + [41170] = { + ["end"] = { + ["U"] = { 61729 }, + }, + ["lvl"] = 5, + ["min"] = 3, + ["pre"] = { 41169 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 80178 }, + }, + }, + [41171] = { + ["end"] = { + ["U"] = { 61729 }, + }, + ["lvl"] = 6, + ["min"] = 3, + ["obj"] = { + ["I"] = { 41038 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61729 }, + }, + }, + [41172] = { + ["end"] = { + ["U"] = { 61729 }, + }, + ["lvl"] = 8, + ["min"] = 3, + ["obj"] = { + ["I"] = { 41039 }, + }, + ["pre"] = { 41171 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61729 }, + }, + }, + [41173] = { + ["end"] = { + ["U"] = { 61729 }, + }, + ["lvl"] = 9, + ["min"] = 3, + ["obj"] = { + ["I"] = { 41052, 41053 }, + }, + ["pre"] = { 41172 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61729 }, + }, + }, + [41174] = { + ["end"] = { + ["U"] = { 61760 }, + }, + ["lvl"] = 5, + ["min"] = 2, + ["obj"] = { + ["U"] = { 61687 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61760 }, + }, + }, + [41175] = { + ["end"] = { + ["U"] = { 61761 }, + }, + ["lvl"] = 6, + ["min"] = 2, + ["obj"] = { + ["I"] = { 41057 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61761 }, + }, + }, + [41176] = { + ["end"] = { + ["U"] = { 61762 }, + }, + ["lvl"] = 7, + ["min"] = 3, + ["obj"] = { + ["I"] = { 41058 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61762 }, + }, + }, + [41177] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 80245 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["IR"] = { 41064 }, + }, + ["race"] = 512, + ["start"] = { + ["U"] = { 80245 }, + }, + }, + [41178] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 80245 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["IR"] = { 41065 }, + }, + ["pre"] = { 41177 }, + ["race"] = 512, + ["start"] = { + ["U"] = { 80245 }, + }, + }, + [41179] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 80245 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["IR"] = { 41066 }, + }, + ["pre"] = { 41178 }, + ["race"] = 512, + ["start"] = { + ["U"] = { 80245 }, + }, + }, + [41180] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 61801 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 41179 }, + ["race"] = 512, + ["start"] = { + ["U"] = { 80245 }, + }, + }, + [41181] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 80108 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["I"] = { 41067 }, + }, + ["race"] = 256, + ["start"] = { + ["U"] = { 80108 }, + }, + }, + [41182] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 80108 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["I"] = { 41068 }, + }, + ["pre"] = { 41181 }, + ["race"] = 256, + ["start"] = { + ["U"] = { 80108 }, + }, + }, + [41183] = { + ["end"] = { + ["U"] = { 61744 }, + }, + ["lvl"] = 6, + ["min"] = 3, + ["obj"] = { + ["I"] = { 41069 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61744 }, + }, + }, + [41184] = { + ["end"] = { + ["U"] = { 61730 }, + }, + ["lvl"] = 8, + ["min"] = 3, + ["obj"] = { + ["I"] = { 41071 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61746 }, + }, + }, + [41185] = { + ["end"] = { + ["U"] = { 61747 }, + }, + ["lvl"] = 8, + ["min"] = 3, + ["obj"] = { + ["I"] = { 41072 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61747 }, + }, + }, + [41186] = { + ["end"] = { + ["U"] = { 61747 }, + }, + ["lvl"] = 8, + ["min"] = 3, + ["obj"] = { + ["I"] = { 41073 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61747 }, + }, + }, + [41187] = { + ["end"] = { + ["U"] = { 61851 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["race"] = 589, + ["start"] = { + ["U"] = { 61807 }, + }, + }, + [41188] = { + ["end"] = { + ["U"] = { 61851 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["obj"] = { + ["I"] = { 41118 }, + }, + ["pre"] = { 41187 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61851 }, + }, + }, + [41189] = { + ["end"] = { + ["U"] = { 61851 }, + }, + ["lvl"] = 2, + ["min"] = 1, + ["obj"] = { + ["U"] = { 61690 }, + }, + ["pre"] = { 41188 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61851 }, + }, + }, + [41190] = { + ["end"] = { + ["U"] = { 61881 }, + }, + ["lvl"] = 3, + ["min"] = 2, + ["obj"] = { + ["I"] = { 41119, 41120 }, + }, + ["pre"] = { 41187 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61881 }, + }, + }, + [41191] = { + ["end"] = { + ["U"] = { 61809 }, + }, + ["lvl"] = 4, + ["min"] = 2, + ["obj"] = { + ["I"] = { 41121 }, + }, + ["pre"] = { 41187 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61809 }, + }, + }, + [41192] = { + ["end"] = { + ["U"] = { 61829 }, + }, + ["lvl"] = 5, + ["min"] = 3, + ["obj"] = { + ["U"] = { 61777, 61778, 61779 }, + }, + ["pre"] = { 41187 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61829 }, + }, + }, + [41193] = { + ["end"] = { + ["U"] = { 61851 }, + }, + ["lvl"] = 5, + ["min"] = 3, + ["obj"] = { + ["U"] = { 61786, 61787 }, + }, + ["pre"] = { 41189 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61851 }, + }, + }, + [41194] = { + ["end"] = { + ["U"] = { 61851 }, + }, + ["lvl"] = 5, + ["min"] = 3, + ["obj"] = { + ["I"] = {}, + }, + ["pre"] = { 41189 }, + ["race"] = 589, + ["start"] = { + ["I"] = { 41122 }, + }, + }, + [41195] = { + ["end"] = { + ["U"] = { 80877 }, + }, + ["lvl"] = 5, + ["min"] = 3, + ["pre"] = { 41194 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61851 }, + }, + }, + [41196] = { + ["end"] = { + ["U"] = { 61850 }, + }, + ["lvl"] = 4, + ["min"] = 3, + ["obj"] = { + ["I"] = { 41123 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61850 }, + }, + }, + [41197] = { + ["end"] = { + ["U"] = { 61831 }, + }, + ["lvl"] = 5, + ["min"] = 4, + ["race"] = 589, + ["start"] = { + ["U"] = { 61878 }, + }, + }, + [41198] = { + ["end"] = { + ["U"] = { 61886 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 41129, 41130, 41131 }, + }, + ["start"] = { + ["U"] = { 61886 }, + }, + }, + [41199] = { + ["end"] = { + ["U"] = { 11036 }, + }, + ["lvl"] = 55, + ["min"] = 48, + ["obj"] = { + ["I"] = { 41132 }, + }, + ["pre"] = { 41198 }, + ["start"] = { + ["U"] = { 61886 }, + }, + }, + [41200] = { + ["end"] = { + ["U"] = { 11034 }, + }, + ["lvl"] = 56, + ["min"] = 50, + ["obj"] = { + ["U"] = { 61763, 61764, 61765 }, + }, + ["start"] = { + ["U"] = { 11034 }, + }, + }, + [41201] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 5875 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 256, + ["start"] = { + ["U"] = { 80107 }, + }, + }, + [41202] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 80104 }, + }, + ["lvl"] = 11, + ["min"] = 10, + ["obj"] = { + ["I"] = { 41133 }, + }, + ["race"] = 256, + ["start"] = { + ["U"] = { 80104 }, + }, + }, + [41203] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 80104 }, + }, + ["lvl"] = 2, + ["min"] = 2, + ["race"] = 256, + ["start"] = { + ["U"] = { 61737 }, + }, + }, + [41204] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 80108 }, + }, + ["lvl"] = 2, + ["min"] = 2, + ["race"] = 256, + ["start"] = { + ["U"] = { 61737 }, + }, + }, + [41205] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 80105 }, + }, + ["lvl"] = 2, + ["min"] = 2, + ["race"] = 256, + ["start"] = { + ["U"] = { 61737 }, + }, + }, + [41206] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 80106 }, + }, + ["lvl"] = 2, + ["min"] = 2, + ["race"] = 256, + ["start"] = { + ["U"] = { 61737 }, + }, + }, + [41207] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 80107 }, + }, + ["lvl"] = 2, + ["min"] = 2, + ["race"] = 256, + ["start"] = { + ["U"] = { 61737 }, + }, + }, + [41208] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 80107 }, + }, + ["lvl"] = 2, + ["min"] = 2, + ["obj"] = { + ["I"] = { 41142 }, + }, + ["race"] = 256, + ["start"] = { + ["U"] = { 80107 }, + }, + }, + [41209] = { + ["end"] = { + ["U"] = { 61887 }, + }, + ["lvl"] = 23, + ["min"] = 16, + ["obj"] = { + ["I"] = { 41143 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61887 }, + }, + }, + [41210] = { + ["end"] = { + ["U"] = { 61861 }, + }, + ["lvl"] = 20, + ["min"] = 17, + ["obj"] = { + ["I"] = { 41145 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61861 }, + }, + }, + [41211] = { + ["end"] = { + ["U"] = { 11860 }, + }, + ["lvl"] = 20, + ["min"] = 17, + ["obj"] = { + ["U"] = { 61859 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 11860 }, + }, + }, + [41212] = { + ["end"] = { + ["U"] = { 60998 }, + }, + ["lvl"] = 20, + ["min"] = 12, + ["obj"] = { + ["I"] = { 41146 }, + }, + ["pre"] = { 40698 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 60998 }, + }, + }, + [41213] = { + ["end"] = { + ["U"] = { 60970 }, + }, + ["lvl"] = 28, + ["min"] = 20, + ["obj"] = { + ["I"] = { 41147 }, + ["U"] = { 61860 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 60970 }, + }, + }, + [41214] = { + ["end"] = { + ["U"] = { 61811 }, + }, + ["lvl"] = 6, + ["min"] = 4, + ["obj"] = { + ["I"] = { 41160 }, + }, + ["start"] = { + ["U"] = { 61811 }, + }, + }, + [41215] = { + ["end"] = { + ["U"] = { 61811 }, + }, + ["lvl"] = 8, + ["min"] = 5, + ["obj"] = { + ["I"] = { 41161 }, + }, + ["pre"] = { 41214 }, + ["start"] = { + ["U"] = { 61811 }, + }, + }, + [41216] = { + ["end"] = { + ["U"] = { 61821 }, + }, + ["lvl"] = 6, + ["min"] = 4, + ["obj"] = { + ["I"] = { 41162 }, + }, + ["start"] = { + ["U"] = { 61821 }, + }, + }, + [41217] = { + ["end"] = { + ["U"] = { 61821 }, + }, + ["lvl"] = 7, + ["min"] = 4, + ["obj"] = { + ["I"] = { 41163 }, + }, + ["pre"] = { 41216 }, + ["start"] = { + ["U"] = { 61821 }, + }, + }, + [41218] = { + ["end"] = { + ["U"] = { 61815 }, + }, + ["lvl"] = 7, + ["min"] = 4, + ["obj"] = { + ["I"] = { 41164 }, + }, + ["start"] = { + ["U"] = { 61815 }, + }, + }, + [41219] = { + ["end"] = { + ["U"] = { 61849 }, + }, + ["lvl"] = 7, + ["min"] = 5, + ["obj"] = { + ["I"] = { 41165 }, + }, + ["start"] = { + ["U"] = { 61849 }, + }, + }, + [41220] = { + ["end"] = { + ["U"] = { 61816 }, + }, + ["lvl"] = 8, + ["min"] = 5, + ["obj"] = { + ["I"] = { 41166, 41167 }, + }, + ["start"] = { + ["U"] = { 61816 }, + }, + }, + [41221] = { + ["end"] = { + ["U"] = { 61803 }, + }, + ["lvl"] = 8, + ["min"] = 5, + ["pre"] = { 41220 }, + ["start"] = { + ["U"] = { 61806 }, + }, + }, + [41222] = { + ["end"] = { + ["U"] = { 61806 }, + }, + ["lvl"] = 8, + ["min"] = 5, + ["pre"] = { 41221 }, + ["start"] = { + ["U"] = { 61803 }, + }, + }, + [41223] = { + ["end"] = { + ["U"] = { 61879 }, + }, + ["lvl"] = 6, + ["min"] = 4, + ["obj"] = { + ["I"] = { 41169 }, + }, + ["start"] = { + ["U"] = { 61879 }, + }, + }, + [41224] = { + ["end"] = { + ["U"] = { 61832 }, + }, + ["lvl"] = 8, + ["min"] = 5, + ["obj"] = { + ["I"] = { 41170 }, + }, + ["start"] = { + ["U"] = { 61818 }, + }, + }, + [41225] = { + ["end"] = { + ["U"] = { 61818 }, + }, + ["lvl"] = 8, + ["min"] = 5, + ["pre"] = { 41224 }, + ["start"] = { + ["U"] = { 61832 }, + }, + }, + [41226] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 80218 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 41188 }, + ["race"] = 512, + ["start"] = { + ["U"] = { 61851 }, + }, + }, + [41227] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 80220 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 41188 }, + ["race"] = 512, + ["start"] = { + ["U"] = { 61851 }, + }, + }, + [41228] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 80221 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 41188 }, + ["race"] = 512, + ["start"] = { + ["U"] = { 61851 }, + }, + }, + [41229] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 80223 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 41188 }, + ["race"] = 512, + ["start"] = { + ["U"] = { 61851 }, + }, + }, + [41230] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 80217 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 41188 }, + ["race"] = 512, + ["start"] = { + ["U"] = { 61851 }, + }, + }, + [41231] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 80219 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 41188 }, + ["race"] = 512, + ["start"] = { + ["U"] = { 61851 }, + }, + }, + [41232] = { + ["end"] = { + ["U"] = { 61845 }, + }, + ["lvl"] = 7, + ["min"] = 5, + ["obj"] = { + ["I"] = { 41179, 41180 }, + }, + ["pre"] = { 41250 }, + ["start"] = { + ["U"] = { 61845 }, + }, + }, + [41233] = { + ["end"] = { + ["U"] = { 61798 }, + }, + ["lvl"] = 9, + ["min"] = 5, + ["obj"] = { + ["I"] = { 41181 }, + }, + ["pre"] = { 41232 }, + ["start"] = { + ["U"] = { 61845 }, + }, + }, + [41234] = { + ["end"] = { + ["U"] = { 61796 }, + }, + ["lvl"] = 9, + ["min"] = 5, + ["pre"] = { 41233 }, + ["start"] = { + ["U"] = { 61798 }, + }, + }, + [41235] = { + ["end"] = { + ["U"] = { 3516 }, + }, + ["lvl"] = 10, + ["min"] = 5, + ["pre"] = { 41234 }, + ["start"] = { + ["U"] = { 61796 }, + }, + }, + [41236] = { + ["end"] = { + ["U"] = { 61849 }, + }, + ["lvl"] = 5, + ["min"] = 3, + ["pre"] = { 41195 }, + ["start"] = { + ["U"] = { 80877 }, + }, + }, + [41237] = { + ["end"] = { + ["U"] = { 61849 }, + }, + ["lvl"] = 9, + ["min"] = 5, + ["obj"] = { + ["I"] = { 41196 }, + }, + ["pre"] = { 41236 }, + ["start"] = { + ["U"] = { 61849 }, + }, + }, + [41238] = { + ["end"] = { + ["U"] = { 80877 }, + }, + ["lvl"] = 9, + ["min"] = 5, + ["pre"] = { 41237 }, + ["start"] = { + ["U"] = { 61849 }, + }, + }, + [41239] = { + ["end"] = { + ["U"] = { 61800 }, + }, + ["lvl"] = 9, + ["min"] = 5, + ["pre"] = { 41238 }, + ["start"] = { + ["U"] = { 80877 }, + }, + }, + [41240] = { + ["end"] = { + ["U"] = { 61800 }, + }, + ["lvl"] = 9, + ["min"] = 5, + ["obj"] = { + ["U"] = { 60053 }, + }, + ["pre"] = { 41239 }, + ["start"] = { + ["U"] = { 61800 }, + }, + }, + [41241] = { + ["end"] = { + ["U"] = { 61852 }, + }, + ["lvl"] = 6, + ["min"] = 5, + ["obj"] = { + ["I"] = { 80240 }, + }, + ["start"] = { + ["U"] = { 61852 }, + }, + }, + [41242] = { + ["end"] = { + ["U"] = { 61796 }, + }, + ["lvl"] = 6, + ["min"] = 5, + ["start"] = { + ["U"] = { 61852 }, + }, + }, + [41243] = { + ["end"] = { + ["U"] = { 61796 }, + }, + ["lvl"] = 6, + ["min"] = 5, + ["obj"] = { + ["U"] = { 61773 }, + }, + ["pre"] = { 41242 }, + ["start"] = { + ["U"] = { 61796 }, + }, + }, + [41244] = { + ["end"] = { + ["U"] = { 61798 }, + }, + ["lvl"] = 7, + ["min"] = 5, + ["pre"] = { 41243 }, + ["start"] = { + ["U"] = { 61796 }, + }, + }, + [41245] = { + ["end"] = { + ["U"] = { 61797 }, + }, + ["lvl"] = 7, + ["min"] = 5, + ["obj"] = { + ["U"] = { 61702, 61703 }, + }, + ["start"] = { + ["U"] = { 61797 }, + }, + }, + [41246] = { + ["end"] = { + ["U"] = { 61797 }, + }, + ["lvl"] = 8, + ["min"] = 5, + ["obj"] = { + ["U"] = { 61718, 61719 }, + }, + ["start"] = { + ["U"] = { 61797 }, + }, + }, + [41247] = { + ["end"] = { + ["U"] = { 61799 }, + }, + ["lvl"] = 8, + ["min"] = 5, + ["pre"] = { 41246 }, + ["start"] = { + ["U"] = { 61797 }, + }, + }, + [41248] = { + ["end"] = { + ["U"] = { 61797 }, + }, + ["lvl"] = 9, + ["min"] = 5, + ["obj"] = { + ["I"] = { 41198 }, + }, + ["pre"] = { 41245 }, + ["start"] = { + ["U"] = { 61797 }, + }, + }, + [41249] = { + ["end"] = { + ["U"] = { 61797 }, + }, + ["lvl"] = 10, + ["min"] = 5, + ["obj"] = { + ["U"] = { 61711, 61712, 61713 }, + }, + ["pre"] = { 41248 }, + ["start"] = { + ["U"] = { 61797 }, + }, + }, + [41250] = { + ["end"] = { + ["U"] = { 61845 }, + }, + ["lvl"] = 7, + ["min"] = 5, + ["pre"] = { 41244 }, + ["start"] = { + ["U"] = { 61798 }, + }, + }, + [41251] = { + ["end"] = { + ["U"] = { 80877 }, + }, + ["lvl"] = 9, + ["min"] = 5, + ["pre"] = { 41240 }, + ["start"] = { + ["U"] = { 61800 }, + }, + }, + [41252] = { + ["end"] = { + ["U"] = { 61823 }, + }, + ["lvl"] = 10, + ["min"] = 5, + ["obj"] = { + ["I"] = { 41199 }, + }, + ["start"] = { + ["U"] = { 61803 }, + }, + }, + [41253] = { + ["end"] = { + ["U"] = { 61841 }, + }, + ["lvl"] = 9, + ["min"] = 5, + ["obj"] = { + ["I"] = { 41200 }, + }, + ["start"] = { + ["U"] = { 61841 }, + }, + }, + [41254] = { + ["end"] = { + ["U"] = { 61824 }, + }, + ["lvl"] = 8, + ["min"] = 5, + ["obj"] = { + ["U"] = { 61705, 61706, 61707 }, + }, + ["start"] = { + ["U"] = { 61824 }, + }, + }, + [41255] = { + ["end"] = { + ["U"] = { 61827 }, + }, + ["lvl"] = 8, + ["min"] = 5, + ["obj"] = { + ["I"] = { 41201 }, + }, + ["start"] = { + ["U"] = { 61827 }, + }, + }, + [41256] = { + ["end"] = { + ["U"] = { 61888 }, + }, + ["lvl"] = 8, + ["min"] = 5, + ["obj"] = { + ["I"] = { 41202 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61888 }, + }, + }, + [41257] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 80246 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["U"] = { 61784 }, + }, + ["race"] = 512, + ["start"] = { + ["U"] = { 80246 }, + }, + }, + [41258] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 6171 }, + }, + ["lvl"] = 12, + ["min"] = 10, + ["race"] = 512, + ["start"] = { + ["U"] = { 80244 }, + }, + }, + [41259] = { + ["end"] = { + ["U"] = { 2930 }, + }, + ["lvl"] = 11, + ["min"] = 8, + ["pre"] = { 41251 }, + ["start"] = { + ["U"] = { 61799 }, + }, + }, + [41260] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 80247 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["U"] = { 61708 }, + }, + ["race"] = 512, + ["start"] = { + ["U"] = { 80247 }, + }, + }, + [41261] = { + ["class"] = 1, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 512, + }, + [41262] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 80248 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["U"] = { 61785 }, + }, + ["race"] = 512, + ["start"] = { + ["U"] = { 80248 }, + }, + }, + [41263] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 61816 }, + }, + ["lvl"] = 5, + ["min"] = 5, + ["obj"] = { + ["I"] = { 41203 }, + }, + ["race"] = 512, + ["start"] = { + ["U"] = { 61816 }, + }, + }, + [41264] = { + ["end"] = { + ["U"] = { 61733 }, + }, + ["lvl"] = 8, + ["min"] = 4, + ["obj"] = { + ["U"] = { 61671 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61733 }, + }, + }, + [41265] = { + ["end"] = { + ["U"] = { 61733 }, + }, + ["lvl"] = 7, + ["min"] = 3, + ["obj"] = { + ["U"] = { 61675, 61677 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61733 }, + }, + }, + [41266] = { + ["end"] = { + ["U"] = { 61729 }, + }, + ["lvl"] = 7, + ["min"] = 3, + ["pre"] = { 41264 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61733 }, + }, + }, + [41267] = { + ["end"] = { + ["U"] = { 61894 }, + }, + ["lvl"] = 12, + ["min"] = 8, + ["obj"] = { + ["I"] = { 41209 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61894 }, + }, + }, + [41268] = { + ["end"] = { + ["U"] = { 61896 }, + }, + ["event"] = 2, + ["lvl"] = 35, + ["min"] = 20, + ["race"] = 589, + ["start"] = { + ["U"] = { 61903 }, + }, + }, + [41269] = { + ["end"] = { + ["U"] = { 61896 }, + }, + ["lvl"] = 35, + ["min"] = 20, + ["obj"] = { + ["I"] = { 41294 }, + }, + ["pre"] = { 41268 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61896 }, + }, + }, + [41270] = { + ["end"] = { + ["U"] = { 61903 }, + }, + ["lvl"] = 35, + ["min"] = 20, + ["pre"] = { 41269 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61896 }, + }, + }, + [41271] = { + ["end"] = { + ["U"] = { 61902 }, + }, + ["event"] = 2, + ["lvl"] = 35, + ["min"] = 20, + ["race"] = 434, + ["start"] = { + ["U"] = { 61904 }, + }, + }, + [41272] = { + ["end"] = { + ["U"] = { 61902 }, + }, + ["lvl"] = 35, + ["min"] = 20, + ["obj"] = { + ["I"] = { 41294 }, + }, + ["pre"] = { 41271 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61902 }, + }, + }, + [41273] = { + ["end"] = { + ["U"] = { 61904 }, + }, + ["lvl"] = 35, + ["min"] = 20, + ["pre"] = { 41272 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61902 }, + }, + }, + [41274] = { + ["end"] = { + ["U"] = { 16075 }, + }, + ["event"] = 8, + ["lvl"] = 36, + ["min"] = 30, + ["obj"] = { + ["I"] = { 41299, 41300, 41301, 41302 }, + }, + ["start"] = { + ["U"] = { 16075 }, + }, + }, + [41275] = { + ["close"] = { 41275, 41276, 41277, 41278 }, + ["end"] = { + ["U"] = { 6826 }, + }, + ["lvl"] = 40, + ["min"] = 34, + ["skill"] = 755, + ["start"] = { + ["U"] = { 61912 }, + }, + }, + [41276] = { + ["close"] = { 41275, 41276, 41277, 41278 }, + ["end"] = { + ["U"] = { 6868 }, + }, + ["lvl"] = 40, + ["min"] = 34, + ["skill"] = 755, + ["start"] = { + ["U"] = { 61924 }, + }, + }, + [41277] = { + ["close"] = { 41275, 41276, 41277, 41278 }, + ["end"] = { + ["U"] = { 73102 }, + }, + ["lvl"] = 40, + ["min"] = 34, + ["skill"] = 755, + ["start"] = { + ["U"] = { 61912 }, + }, + }, + [41278] = { + ["close"] = { 41275, 41276, 41277, 41278 }, + ["end"] = { + ["U"] = { 73102 }, + }, + ["lvl"] = 40, + ["min"] = 34, + ["skill"] = 755, + ["start"] = { + ["U"] = { 61924 }, + }, + }, + [41279] = { + ["end"] = { + ["U"] = { 73102 }, + }, + ["lvl"] = 42, + ["min"] = 34, + ["obj"] = { + ["I"] = { 41355 }, + }, + ["start"] = { + ["U"] = { 73102 }, + }, + }, + [41280] = { + ["end"] = { + ["U"] = { 73102 }, + }, + ["lvl"] = 42, + ["min"] = 34, + ["obj"] = { + ["I"] = { 56002, 56004, 56006 }, + }, + ["pre"] = { 41279 }, + ["start"] = { + ["U"] = { 73102 }, + }, + }, + [41281] = { + ["end"] = { + ["U"] = { 73102 }, + }, + ["lvl"] = 48, + ["min"] = 34, + ["obj"] = { + ["I"] = { 41356 }, + }, + ["pre"] = { 41280 }, + ["start"] = { + ["U"] = { 73102 }, + }, + }, + [41282] = { + ["end"] = { + ["U"] = { 73102 }, + }, + ["lvl"] = 48, + ["min"] = 34, + ["obj"] = { + ["I"] = { 56082 }, + }, + ["pre"] = { 41281 }, + ["start"] = { + ["U"] = { 73102 }, + }, + }, + [41283] = { + ["end"] = { + ["U"] = { 6826 }, + }, + ["lvl"] = 40, + ["min"] = 34, + ["obj"] = { + ["I"] = { 41331, 55153 }, + }, + ["pre"] = { 41275 }, + ["start"] = { + ["U"] = { 6826 }, + }, + }, + [41284] = { + ["end"] = { + ["U"] = { 6826 }, + }, + ["lvl"] = 40, + ["min"] = 34, + ["obj"] = { + ["I"] = { 3864, 7909, 55250 }, + }, + ["pre"] = { 41275 }, + ["start"] = { + ["U"] = { 6826 }, + }, + }, + [41285] = { + ["end"] = { + ["U"] = { 6826 }, + }, + ["lvl"] = 44, + ["min"] = 34, + ["obj"] = { + ["I"] = { 41357 }, + }, + ["pre"] = { 41275 }, + ["start"] = { + ["U"] = { 6826 }, + }, + }, + [41286] = { + ["end"] = { + ["U"] = { 73101 }, + }, + ["lvl"] = 44, + ["min"] = 34, + ["pre"] = { 41283 }, + ["start"] = { + ["U"] = { 6826 }, + }, + }, + [41287] = { + ["end"] = { + ["U"] = { 6868 }, + }, + ["lvl"] = 40, + ["min"] = 34, + ["obj"] = { + ["I"] = { 41331, 55153 }, + }, + ["pre"] = { 41276 }, + ["start"] = { + ["U"] = { 6868 }, + }, + }, + [41288] = { + ["end"] = { + ["U"] = { 6868 }, + }, + ["lvl"] = 40, + ["min"] = 34, + ["obj"] = { + ["I"] = { 3864, 7909, 55250 }, + }, + ["pre"] = { 41276 }, + ["start"] = { + ["U"] = { 6868 }, + }, + }, + [41289] = { + ["end"] = { + ["U"] = { 6868 }, + }, + ["lvl"] = 44, + ["min"] = 34, + ["obj"] = { + ["I"] = { 41359 }, + }, + ["pre"] = { 41276 }, + ["start"] = { + ["U"] = { 6868 }, + }, + }, + [41290] = { + ["end"] = { + ["U"] = { 73101 }, + }, + ["lvl"] = 44, + ["min"] = 34, + ["pre"] = { 41287 }, + ["start"] = { + ["U"] = { 6868 }, + }, + }, + [41291] = { + ["end"] = { + ["U"] = { 73101 }, + }, + ["lvl"] = 44, + ["min"] = 34, + ["obj"] = { + ["I"] = { 41360 }, + }, + ["start"] = { + ["U"] = { 73101 }, + }, + }, + [41292] = { + ["end"] = { + ["U"] = { 73101 }, + }, + ["lvl"] = 44, + ["min"] = 34, + ["obj"] = { + ["I"] = { 56050, 56051, 56052 }, + }, + ["pre"] = { 41291 }, + ["start"] = { + ["U"] = { 73101 }, + }, + }, + [41293] = { + ["end"] = { + ["U"] = { 73101 }, + }, + ["lvl"] = 44, + ["min"] = 34, + ["obj"] = { + ["I"] = { 41340, 56047 }, + }, + ["pre"] = { 41291 }, + ["start"] = { + ["U"] = { 73101 }, + }, + }, + [41294] = { + ["end"] = { + ["U"] = { 73101 }, + }, + ["lvl"] = 44, + ["min"] = 34, + ["obj"] = { + ["I"] = { 55143, 56048 }, + }, + ["pre"] = { 41291 }, + ["start"] = { + ["U"] = { 73101 }, + }, + }, + [41295] = { + ["end"] = { + ["U"] = { 73101 }, + }, + ["lvl"] = 44, + ["min"] = 34, + ["obj"] = { + ["I"] = { 41343, 56049 }, + }, + ["pre"] = { 41291 }, + ["start"] = { + ["U"] = { 73101 }, + }, + }, + [41296] = { + ["end"] = { + ["U"] = { 7363 }, + }, + ["lvl"] = 48, + ["min"] = 42, + ["skill"] = 755, + ["start"] = { + ["U"] = { 91781 }, + }, + }, + [41297] = { + ["end"] = { + ["U"] = { 7363 }, + }, + ["lvl"] = 48, + ["min"] = 42, + ["obj"] = { + ["I"] = { 41361 }, + }, + ["pre"] = { 41296 }, + ["start"] = { + ["U"] = { 7363 }, + }, + }, + [41298] = { + ["end"] = { + ["U"] = { 7363 }, + }, + ["lvl"] = 52, + ["min"] = 42, + ["obj"] = { + ["I"] = { 41362 }, + }, + ["pre"] = { 41297 }, + ["start"] = { + ["U"] = { 7363 }, + }, + }, + [41299] = { + ["end"] = { + ["U"] = { 91781 }, + }, + ["lvl"] = 52, + ["min"] = 42, + ["pre"] = { 41298 }, + ["start"] = { + ["U"] = { 7363 }, + }, + }, + [41300] = { + ["end"] = { + ["U"] = { 61930 }, + }, + ["lvl"] = 38, + ["min"] = 32, + ["skill"] = 755, + ["start"] = { + ["U"] = { 6826 }, + }, + }, + [41301] = { + ["end"] = { + ["U"] = { 61930 }, + }, + ["lvl"] = 38, + ["min"] = 32, + ["obj"] = { + ["I"] = { 41340, 41342, 41343 }, + }, + ["pre"] = { 41300 }, + ["start"] = { + ["U"] = { 61930 }, + }, + }, + [41302] = { + ["end"] = { + ["U"] = { 6826 }, + }, + ["lvl"] = 38, + ["min"] = 32, + ["pre"] = { 41301 }, + ["start"] = { + ["U"] = { 61930 }, + }, + }, + [41303] = { + ["end"] = { + ["U"] = { 3453 }, + }, + ["lvl"] = 38, + ["min"] = 32, + ["skill"] = 755, + ["start"] = { + ["U"] = { 61927 }, + }, + }, + [41304] = { + ["end"] = { + ["U"] = { 61927 }, + }, + ["lvl"] = 38, + ["min"] = 32, + ["obj"] = { + ["I"] = { 41365 }, + }, + ["pre"] = { 41303 }, + ["skill"] = 755, + ["start"] = { + ["U"] = { 3453 }, + }, + }, + [41305] = { + ["end"] = { + ["U"] = { 61927 }, + }, + ["lvl"] = 40, + ["min"] = 32, + ["obj"] = { + ["I"] = { 41340, 41366 }, + }, + ["pre"] = { 41304 }, + ["start"] = { + ["U"] = { 61927 }, + }, + }, + [41306] = { + ["end"] = { + ["U"] = { 8767 }, + }, + ["lvl"] = 40, + ["min"] = 36, + ["skill"] = 755, + ["start"] = { + ["U"] = { 61977 }, + }, + }, + [41307] = { + ["end"] = { + ["U"] = { 61913 }, + }, + ["lvl"] = 40, + ["min"] = 36, + ["obj"] = { + ["I"] = { 41367 }, + }, + ["pre"] = { 41306 }, + ["start"] = { + ["U"] = { 8767 }, + }, + }, + [41308] = { + ["end"] = { + ["U"] = { 8617 }, + }, + ["lvl"] = 42, + ["min"] = 36, + ["obj"] = { + ["I"] = { 8925, 11135, 41368 }, + }, + ["pre"] = { 41307 }, + ["start"] = { + ["U"] = { 61913 }, + }, + }, + [41309] = { + ["end"] = { + ["U"] = { 61913 }, + }, + ["lvl"] = 42, + ["min"] = 36, + ["pre"] = { 41308 }, + ["start"] = { + ["U"] = { 8617 }, + }, + }, + [41310] = { + ["end"] = { + ["U"] = { 61137 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["start"] = { + ["O"] = { 2020098 }, + }, + }, + [41311] = { + ["end"] = { + ["U"] = { 61137 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 41371 }, + }, + ["pre"] = { 41310 }, + ["start"] = { + ["U"] = { 61137 }, + }, + }, + [41312] = { + ["end"] = { + ["U"] = { 61137 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 41373, 41397, 41445 }, + }, + ["pre"] = { 41311 }, + ["start"] = { + ["U"] = { 61137 }, + }, + }, + [41313] = { + ["end"] = { + ["U"] = { 8379 }, + }, + ["lvl"] = 50, + ["min"] = 44, + ["obj"] = { + ["I"] = { 41374, 41375 }, + }, + ["skill"] = 755, + ["start"] = { + ["U"] = { 8379 }, + }, + }, + [41314] = { + ["end"] = { + ["U"] = { 8379 }, + }, + ["lvl"] = 50, + ["min"] = 44, + ["obj"] = { + ["I"] = { 41376 }, + }, + ["pre"] = { 41313 }, + ["start"] = { + ["U"] = { 8379 }, + }, + }, + [41315] = { + ["end"] = { + ["U"] = { 8379 }, + }, + ["lvl"] = 50, + ["min"] = 44, + ["obj"] = { + ["I"] = { 41377 }, + }, + ["pre"] = { 41314 }, + ["start"] = { + ["U"] = { 8379 }, + }, + }, + [41316] = { + ["end"] = { + ["U"] = { 61913 }, + }, + ["lvl"] = 50, + ["min"] = 50, + ["skill"] = 755, + ["start"] = { + ["I"] = { 56099 }, + }, + }, + [41317] = { + ["end"] = { + ["U"] = { 61913 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 41378 }, + }, + ["pre"] = { 41316 }, + ["skill"] = 755, + ["start"] = { + ["U"] = { 61913 }, + }, + }, + [41318] = { + ["end"] = { + ["U"] = { 61913 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 7078, 17010, 17011 }, + }, + ["pre"] = { 41317 }, + ["skill"] = 755, + ["start"] = { + ["U"] = { 61913 }, + }, + }, + [41319] = { + ["end"] = { + ["U"] = { 61913 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 11382, 41379 }, + }, + ["pre"] = { 41317 }, + ["skill"] = 755, + ["start"] = { + ["U"] = { 61913 }, + }, + }, + [41320] = { + ["end"] = { + ["U"] = { 91782 }, + }, + ["lvl"] = 52, + ["min"] = 30, + ["pre"] = { 40033 }, + ["start"] = { + ["U"] = { 91782 }, + }, + }, + [41321] = { + ["end"] = { + ["U"] = { 91782 }, + }, + ["lvl"] = 52, + ["min"] = 30, + ["obj"] = { + ["I"] = { 41380 }, + }, + ["pre"] = { 41320 }, + ["start"] = { + ["U"] = { 91782 }, + }, + }, + [41322] = { + ["end"] = { + ["U"] = { 91782 }, + }, + ["lvl"] = 52, + ["min"] = 30, + ["obj"] = { + ["I"] = { 41381, 41382 }, + }, + ["pre"] = { 41320 }, + ["start"] = { + ["U"] = { 91782 }, + }, + }, + [41323] = { + ["end"] = { + ["U"] = { 91782 }, + }, + ["lvl"] = 54, + ["min"] = 30, + ["obj"] = { + ["I"] = { 41383, 41384 }, + }, + ["pre"] = { 41321, 41322 }, + ["start"] = { + ["U"] = { 91782 }, + }, + }, + [41324] = { + ["end"] = { + ["U"] = { 60850 }, + }, + ["lvl"] = 54, + ["min"] = 30, + ["pre"] = { 41323 }, + ["start"] = { + ["U"] = { 91782 }, + }, + }, + [41325] = { + ["end"] = { + ["U"] = { 60850 }, + }, + ["lvl"] = 56, + ["min"] = 30, + ["obj"] = { + ["U"] = { 61984 }, + }, + ["pre"] = { 41324 }, + ["start"] = { + ["U"] = { 60850 }, + }, + }, + [41326] = { + ["end"] = { + ["U"] = { 91781 }, + }, + ["lvl"] = 60, + ["min"] = 30, + ["obj"] = { + ["U"] = { 61985 }, + }, + ["pre"] = { 41325 }, + ["start"] = { + ["U"] = { 60850 }, + }, + }, + [41327] = { + ["end"] = { + ["U"] = { 61987 }, + }, + ["lvl"] = 60, + ["min"] = 30, + ["pre"] = { 41326 }, + ["start"] = { + ["U"] = { 91781 }, + }, + }, + [41328] = { + ["end"] = { + ["U"] = { 61987 }, + }, + ["lvl"] = 60, + ["min"] = 30, + ["obj"] = { + ["I"] = { 8244, 61673 }, + }, + ["pre"] = { 41327 }, + ["start"] = { + ["U"] = { 61987 }, + }, + }, + [41329] = { + ["end"] = { + ["U"] = { 60460 }, + }, + ["lvl"] = 60, + ["min"] = 10, + ["obj"] = { + ["I"] = { 20709 }, + }, + ["start"] = { + ["U"] = { 60460 }, + }, + }, + [41330] = { + ["end"] = { + ["U"] = { 60460 }, + }, + ["lvl"] = 60, + ["min"] = 10, + ["obj"] = { + ["I"] = { 21114 }, + }, + ["start"] = { + ["U"] = { 60460 }, + }, + }, + [41331] = { + ["end"] = { + ["U"] = { 60460 }, + }, + ["lvl"] = 60, + ["min"] = 10, + ["obj"] = { + ["I"] = { 21151 }, + }, + ["start"] = { + ["U"] = { 60460 }, + }, + }, + [41332] = { + ["end"] = { + ["U"] = { 60460 }, + }, + ["lvl"] = 60, + ["min"] = 10, + ["obj"] = { + ["I"] = { 9260 }, + }, + ["start"] = { + ["U"] = { 60460 }, + }, + }, + [41333] = { + ["end"] = { + ["U"] = { 73102 }, + }, + ["lvl"] = 50, + ["min"] = 50, + ["obj"] = { + ["I"] = {}, + }, + ["skill"] = 755, + ["start"] = { + ["I"] = { 56109 }, + }, + }, + [41334] = { + ["end"] = { + ["U"] = { 73102 }, + }, + ["lvl"] = 50, + ["min"] = 50, + ["obj"] = { + ["I"] = {}, + }, + ["skill"] = 755, + ["start"] = { + ["I"] = { 56108 }, + }, + }, + [41335] = { + ["end"] = { + ["U"] = { 73101 }, + }, + ["lvl"] = 50, + ["min"] = 50, + ["obj"] = { + ["I"] = {}, + }, + ["skill"] = 755, + ["start"] = { + ["I"] = { 56110 }, + }, + }, + [41336] = { + ["end"] = { + ["U"] = { 73101 }, + }, + ["lvl"] = 58, + ["min"] = 50, + ["obj"] = { + ["I"] = { 41386 }, + }, + ["pre"] = { 41335 }, + ["skill"] = 755, + ["start"] = { + ["U"] = { 73101 }, + }, + }, + [41337] = { + ["end"] = { + ["U"] = { 73101 }, + }, + ["lvl"] = 50, + ["min"] = 50, + ["obj"] = { + ["I"] = {}, + }, + ["skill"] = 755, + ["start"] = { + ["I"] = { 56111 }, + }, + }, + [41338] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 61512 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["start"] = { + ["U"] = { 12042 }, + }, + }, + [41339] = { + ["end"] = { + ["U"] = { 61512 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 60054 }, + }, + ["pre"] = { 41338 }, + ["start"] = { + ["U"] = { 61512 }, + }, + }, + [41340] = { + ["end"] = { + ["U"] = { 11832 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 61199 }, + }, + ["pre"] = { 41339 }, + ["start"] = { + ["U"] = { 61512 }, + }, + }, + [41341] = { + ["end"] = { + ["U"] = { 11832 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 41387, 41388, 41389 }, + }, + ["pre"] = { 41340 }, + ["start"] = { + ["U"] = { 11832 }, + }, + }, + [41342] = { + ["end"] = { + ["U"] = { 11832 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 41391 }, + }, + ["pre"] = { 41341 }, + ["start"] = { + ["U"] = { 11832 }, + }, + }, + [41343] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 61571 }, + }, + ["lvl"] = 61, + ["min"] = 60, + ["start"] = { + ["U"] = { 61990 }, + }, + }, + [41344] = { + ["end"] = { + ["U"] = { 61990 }, + }, + ["lvl"] = 61, + ["min"] = 60, + ["obj"] = { + ["I"] = { 41392 }, + }, + ["pre"] = { 41343 }, + ["start"] = { + ["U"] = { 61571 }, + }, + }, + [41345] = { + ["end"] = { + ["O"] = { 2020105 }, + }, + ["lvl"] = 58, + ["min"] = 58, + ["obj"] = { + ["I"] = { 7070, 13757, 56088 }, + }, + ["skill"] = 356, + ["start"] = { + ["O"] = { 2020105 }, + }, + }, + [41346] = { + ["end"] = { + ["O"] = { 2020106 }, + }, + ["lvl"] = 58, + ["min"] = 58, + ["obj"] = { + ["I"] = { 56087 }, + }, + ["skill"] = 356, + ["start"] = { + ["O"] = { 2020106 }, + }, + }, + [41347] = { + ["end"] = { + ["U"] = { 61991 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["start"] = { + ["U"] = { 61323 }, + }, + }, + [41348] = { + ["end"] = { + ["O"] = { 2020107 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 41347 }, + ["start"] = { + ["U"] = { 61991 }, + }, + }, + [41349] = { + ["end"] = { + ["O"] = { 2020108 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 41348 }, + ["start"] = { + ["O"] = { 2020107 }, + }, + }, + [41350] = { + ["end"] = { + ["U"] = { 61992 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 41349 }, + ["start"] = { + ["O"] = { 2020108 }, + }, + }, + [41351] = { + ["end"] = { + ["U"] = { 61323 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 41395 }, + }, + ["pre"] = { 41350 }, + ["start"] = { + ["U"] = { 61992 }, + }, + }, + [41352] = { + ["end"] = { + ["U"] = { 61991 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["start"] = { + ["I"] = { 41398 }, + }, + }, + [41353] = { + ["end"] = { + ["U"] = { 62007 }, + }, + ["lvl"] = 62, + ["min"] = 60, + ["obj"] = { + ["I"] = {}, + }, + ["start"] = { + ["I"] = { 41403 }, + }, + }, + [41354] = { + ["end"] = { + ["U"] = { 62007 }, + }, + ["lvl"] = 62, + ["min"] = 60, + ["obj"] = { + ["U"] = { 7523, 7524 }, + }, + ["pre"] = { 41353 }, + ["start"] = { + ["U"] = { 62007 }, + }, + }, + [41355] = { + ["end"] = { + ["U"] = { 62007 }, + }, + ["lvl"] = 62, + ["min"] = 60, + ["obj"] = { + ["I"] = { 41404 }, + }, + ["pre"] = { 41354 }, + ["start"] = { + ["U"] = { 62007 }, + }, + }, + [41356] = { + ["end"] = { + ["U"] = { 62007 }, + }, + ["lvl"] = 62, + ["min"] = 60, + ["obj"] = { + ["I"] = { 41405 }, + }, + ["pre"] = { 41355 }, + ["start"] = { + ["U"] = { 62007 }, + }, + }, + [41357] = { + ["end"] = { + ["U"] = { 62007 }, + }, + ["lvl"] = 62, + ["min"] = 60, + ["obj"] = { + ["I"] = { 41406 }, + }, + ["pre"] = { 41356 }, + ["start"] = { + ["U"] = { 62007 }, + }, + }, + [41358] = { + ["end"] = { + ["U"] = { 10929 }, + }, + ["lvl"] = 62, + ["min"] = 60, + ["pre"] = { 41357 }, + ["start"] = { + ["U"] = { 62007 }, + }, + }, + [41359] = { + ["end"] = { + ["U"] = { 62007 }, + }, + ["lvl"] = 62, + ["min"] = 60, + ["pre"] = { 41358 }, + ["start"] = { + ["U"] = { 10929 }, + }, + }, + [41360] = { + ["end"] = { + ["U"] = { 62007 }, + }, + ["lvl"] = 62, + ["min"] = 60, + ["pre"] = { 41359 }, + ["start"] = { + ["U"] = { 62007 }, + }, + }, + [41361] = { + ["end"] = { + ["U"] = { 12944 }, + }, + ["lvl"] = 50, + ["min"] = 50, + ["skill"] = 755, + ["start"] = { + ["O"] = { 2020110 }, + }, + }, + [41362] = { + ["end"] = { + ["U"] = { 12944 }, + }, + ["lvl"] = 50, + ["min"] = 50, + ["obj"] = { + ["I"] = { 7077, 55154, 55248 }, + }, + ["pre"] = { 41361 }, + ["skill"] = 755, + ["start"] = { + ["U"] = { 12944 }, + }, + }, + [41363] = { + ["end"] = { + ["U"] = { 3649 }, + }, + ["lvl"] = 20, + ["min"] = 16, + ["obj"] = { + ["I"] = { 41408 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3649 }, + }, + }, + [41364] = { + ["end"] = { + ["U"] = { 91730 }, + }, + ["lvl"] = 19, + ["min"] = 13, + ["race"] = 434, + ["start"] = { + ["U"] = { 6389 }, + }, + }, + [41365] = { + ["end"] = { + ["U"] = { 91726 }, + }, + ["lvl"] = 20, + ["min"] = 14, + ["obj"] = { + ["U"] = { 62014 }, + }, + ["pre"] = { 41364 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91730 }, + }, + }, + [41366] = { + ["end"] = { + ["U"] = { 91726 }, + }, + ["lvl"] = 22, + ["min"] = 16, + ["obj"] = { + ["U"] = { 61969 }, + }, + ["pre"] = { 41365 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91726 }, + }, + }, + [41367] = { + ["end"] = { + ["U"] = { 5767 }, + }, + ["lvl"] = 23, + ["min"] = 17, + ["obj"] = { + ["I"] = { 41410 }, + ["U"] = { 61968 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5767 }, + }, + }, + [41368] = { + ["end"] = { + ["U"] = { 4605 }, + }, + ["lvl"] = 39, + ["min"] = 33, + ["obj"] = { + ["I"] = { 41411 }, + ["U"] = { 61982 }, + }, + ["pre"] = { 41397 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4605 }, + }, + }, + [41369] = { + ["end"] = { + ["U"] = { 61996 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 41412, 61731, 61771 }, + }, + ["pre"] = { 41015, 41086 }, + ["start"] = { + ["U"] = { 61996 }, + }, + }, + [41370] = { + ["end"] = { + ["U"] = { 61996 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 41372, 41413, 41414 }, + }, + ["pre"] = { 41312, 41369 }, + ["start"] = { + ["U"] = { 61996 }, + }, + }, + [41371] = { + ["end"] = { + ["U"] = { 61996 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 41385 }, + }, + ["pre"] = { 41370 }, + ["start"] = { + ["U"] = { 61996 }, + }, + }, + [41372] = { + ["end"] = { + ["U"] = { 61996 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 60055 }, + }, + ["pre"] = { 41371 }, + ["start"] = { + ["U"] = { 61996 }, + }, + }, + [41373] = { + ["end"] = { + ["U"] = { 61328 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["start"] = { + ["O"] = { 2020111 }, + }, + }, + [41374] = { + ["end"] = { + ["U"] = { 61328 }, + }, + ["lvl"] = 61, + ["min"] = 60, + ["obj"] = { + ["I"] = { 41416 }, + }, + ["pre"] = { 41373 }, + ["start"] = { + ["U"] = { 61328 }, + }, + }, + [41375] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 14368 }, + }, + ["lvl"] = 61, + ["min"] = 60, + ["start"] = { + ["O"] = { 2020112 }, + }, + }, + [41376] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 14368 }, + }, + ["lvl"] = 61, + ["min"] = 60, + ["obj"] = { + ["I"] = { 41418 }, + }, + ["pre"] = { 41375 }, + ["start"] = { + ["U"] = { 14368 }, + }, + }, + [41377] = { + ["end"] = { + ["U"] = { 3516 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 41087 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61512 }, + }, + }, + [41378] = { + ["end"] = { + ["U"] = { 3516 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 41419, 41420, 41421 }, + }, + ["pre"] = { 41377 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3516 }, + }, + }, + [41379] = { + ["close"] = { 41379, 41382 }, + ["end"] = { + ["U"] = { 61512 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 41422, 61759 }, + }, + ["pre"] = { 41378 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3516 }, + }, + }, + [41380] = { + ["end"] = { + ["U"] = { 4046 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 41087 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 61512 }, + }, + }, + [41381] = { + ["end"] = { + ["U"] = { 4046 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 41419, 41420, 41421 }, + }, + ["pre"] = { 41380 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4046 }, + }, + }, + [41382] = { + ["close"] = { 41379, 41382 }, + ["end"] = { + ["U"] = { 61512 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 41422, 61759 }, + }, + ["pre"] = { 41381 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4046 }, + }, + }, + [41383] = { + ["end"] = { + ["U"] = { 61512 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 60056 }, + }, + ["pre"] = { 41379, 41382 }, + ["start"] = { + ["U"] = { 61512 }, + }, + }, + [41384] = { + ["end"] = { + ["U"] = { 61512 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 61939 }, + }, + ["pre"] = { 41383 }, + ["start"] = { + ["U"] = { 61512 }, + }, + }, + [41385] = { + ["end"] = { + ["U"] = { 61512 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 61802 }, + }, + ["pre"] = { 41384 }, + ["start"] = { + ["U"] = { 61512 }, + }, + }, + [41386] = { + ["end"] = { + ["U"] = { 61512 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 41424 }, + ["U"] = { 62059 }, + }, + ["pre"] = { 41385 }, + ["start"] = { + ["U"] = { 61512 }, + }, + }, + [41387] = { + ["end"] = { + ["U"] = { 62031 }, + }, + ["lvl"] = 55, + ["min"] = 55, + ["obj"] = { + ["I"] = { 41425 }, + }, + ["start"] = { + ["U"] = { 62031 }, + }, + }, + [41388] = { + ["end"] = { + ["U"] = { 62031 }, + }, + ["lvl"] = 55, + ["min"] = 55, + ["obj"] = { + ["U"] = { 60057, 60058, 60059, 60060 }, + }, + ["pre"] = { 41387 }, + ["start"] = { + ["U"] = { 62031 }, + }, + }, + [41389] = { + ["end"] = { + ["U"] = { 62032 }, + }, + ["lvl"] = 58, + ["min"] = 55, + ["pre"] = { 41393 }, + ["start"] = { + ["U"] = { 62031 }, + }, + }, + [41390] = { + ["end"] = { + ["U"] = { 7024 }, + }, + ["lvl"] = 20, + ["min"] = 14, + ["race"] = 589, + ["start"] = { + ["U"] = { 6946 }, + }, + }, + [41391] = { + ["end"] = { + ["U"] = { 6946 }, + }, + ["lvl"] = 20, + ["min"] = 14, + ["obj"] = { + ["I"] = { 41428 }, + }, + ["pre"] = { 41390 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 7024 }, + }, + }, + [41392] = { + ["end"] = { + ["U"] = { 6946 }, + }, + ["lvl"] = 20, + ["min"] = 14, + ["obj"] = { + ["I"] = { 41429 }, + }, + ["pre"] = { 41391 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 6946 }, + }, + }, + [41393] = { + ["end"] = { + ["U"] = { 62031 }, + }, + ["lvl"] = 58, + ["min"] = 55, + ["obj"] = { + ["I"] = { 41430 }, + }, + ["pre"] = { 41388 }, + ["start"] = { + ["U"] = { 62031 }, + }, + }, + [41394] = { + ["end"] = { + ["U"] = { 61512 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 14342, 41447, 61732 }, + }, + ["pre"] = { 41386 }, + ["start"] = { + ["U"] = { 61512 }, + }, + }, + [41395] = { + ["end"] = { + ["O"] = { 2020125 }, + }, + ["lvl"] = 58, + ["min"] = 58, + ["obj"] = { + ["I"] = { 41433, 41439, 41444 }, + }, + ["start"] = { + ["O"] = { 2020125 }, + }, + }, + [41396] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 11832 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 20002, 41448, 61229, 61230 }, + }, + ["pre"] = { 41342 }, + ["start"] = { + ["U"] = { 11832 }, + }, + }, + [41397] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 11832 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 41449 }, + }, + ["pre"] = { 41396 }, + ["start"] = { + ["U"] = { 11832 }, + }, + }, + [41398] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 62105 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 62106 }, + }, + ["pre"] = { 41397 }, + ["start"] = { + ["U"] = { 11832 }, + }, + }, + [41399] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 16135 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 55583 }, + }, + ["start"] = { + ["U"] = { 16135 }, + }, + }, + [41400] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 62107 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16900 }, + }, + ["start"] = { + ["U"] = { 62107 }, + }, + }, + [41401] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 62107 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16902 }, + }, + ["start"] = { + ["U"] = { 62107 }, + }, + }, + [41402] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 62107 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16897 }, + }, + ["start"] = { + ["U"] = { 62107 }, + }, + }, + [41403] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 62107 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16904 }, + }, + ["start"] = { + ["U"] = { 62107 }, + }, + }, + [41404] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 62107 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16899 }, + }, + ["start"] = { + ["U"] = { 62107 }, + }, + }, + [41405] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 62107 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16903 }, + }, + ["start"] = { + ["U"] = { 62107 }, + }, + }, + [41406] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 62107 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16901 }, + }, + ["start"] = { + ["U"] = { 62107 }, + }, + }, + [41407] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 62107 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16898 }, + }, + ["start"] = { + ["U"] = { 62107 }, + }, + }, + [41408] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 62107 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16834 }, + }, + ["start"] = { + ["U"] = { 62107 }, + }, + }, + [41409] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 62107 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16836 }, + }, + ["start"] = { + ["U"] = { 62107 }, + }, + }, + [41410] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 62107 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16833 }, + }, + ["start"] = { + ["U"] = { 62107 }, + }, + }, + [41411] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 62107 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16830 }, + }, + ["start"] = { + ["U"] = { 62107 }, + }, + }, + [41412] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 62107 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16831 }, + }, + ["start"] = { + ["U"] = { 62107 }, + }, + }, + [41413] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 62107 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16828 }, + }, + ["start"] = { + ["U"] = { 62107 }, + }, + }, + [41414] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 62107 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16835 }, + }, + ["start"] = { + ["U"] = { 62107 }, + }, + }, + [41415] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 62107 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16829 }, + }, + ["start"] = { + ["U"] = { 62107 }, + }, + }, + [41416] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 16133 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 55582 }, + }, + ["start"] = { + ["U"] = { 16133 }, + }, + }, + [41417] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 62109 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16929 }, + }, + ["start"] = { + ["U"] = { 62109 }, + }, + }, + [41418] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 62109 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16932 }, + }, + ["start"] = { + ["U"] = { 62109 }, + }, + }, + [41419] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 62109 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16931 }, + }, + ["start"] = { + ["U"] = { 62109 }, + }, + }, + [41420] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 62109 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16934 }, + }, + ["start"] = { + ["U"] = { 62109 }, + }, + }, + [41421] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 62109 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16928 }, + }, + ["start"] = { + ["U"] = { 62109 }, + }, + }, + [41422] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 62109 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16933 }, + }, + ["start"] = { + ["U"] = { 62109 }, + }, + }, + [41423] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 62109 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16930 }, + }, + ["start"] = { + ["U"] = { 62109 }, + }, + }, + [41424] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 62109 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16927 }, + }, + ["start"] = { + ["U"] = { 62109 }, + }, + }, + [41425] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 62109 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16808 }, + }, + ["start"] = { + ["U"] = { 62109 }, + }, + }, + [41426] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 62109 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16807 }, + }, + ["start"] = { + ["U"] = { 62109 }, + }, + }, + [41427] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 62109 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16809 }, + }, + ["start"] = { + ["U"] = { 62109 }, + }, + }, + [41428] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 62109 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16804 }, + }, + ["start"] = { + ["U"] = { 62109 }, + }, + }, + [41429] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 62109 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16805 }, + }, + ["start"] = { + ["U"] = { 62109 }, + }, + }, + [41430] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 62109 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16806 }, + }, + ["start"] = { + ["U"] = { 62109 }, + }, + }, + [41431] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 62109 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16810 }, + }, + ["start"] = { + ["U"] = { 62109 }, + }, + }, + [41432] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 62109 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16803 }, + }, + ["start"] = { + ["U"] = { 62109 }, + }, + }, + [41433] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 16112 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 55581 }, + }, + ["start"] = { + ["U"] = { 16112 }, + }, + }, + [41434] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 62108 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16963 }, + }, + ["start"] = { + ["U"] = { 62108 }, + }, + }, + [41435] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 62108 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16961 }, + }, + ["start"] = { + ["U"] = { 62108 }, + }, + }, + [41436] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 62108 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16966 }, + }, + ["start"] = { + ["U"] = { 62108 }, + }, + }, + [41437] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 62108 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16959 }, + }, + ["start"] = { + ["U"] = { 62108 }, + }, + }, + [41438] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 62108 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16964 }, + }, + ["start"] = { + ["U"] = { 62108 }, + }, + }, + [41439] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 62108 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16960 }, + }, + ["start"] = { + ["U"] = { 62108 }, + }, + }, + [41440] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 62108 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16962 }, + }, + ["start"] = { + ["U"] = { 62108 }, + }, + }, + [41441] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 62108 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16965 }, + }, + ["start"] = { + ["U"] = { 62108 }, + }, + }, + [41442] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 62108 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16866 }, + }, + ["start"] = { + ["U"] = { 62108 }, + }, + }, + [41443] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 62108 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16868 }, + }, + ["start"] = { + ["U"] = { 62108 }, + }, + }, + [41444] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 62108 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16865 }, + }, + ["start"] = { + ["U"] = { 62108 }, + }, + }, + [41445] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 62108 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16861 }, + }, + ["start"] = { + ["U"] = { 62108 }, + }, + }, + [41446] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 62108 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16863 }, + }, + ["start"] = { + ["U"] = { 62108 }, + }, + }, + [41447] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 62108 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16864 }, + }, + ["start"] = { + ["U"] = { 62108 }, + }, + }, + [41448] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 62108 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16867 }, + }, + ["start"] = { + ["U"] = { 62108 }, + }, + }, + [41449] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 62108 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16862 }, + }, + ["start"] = { + ["U"] = { 62108 }, + }, + }, + [41450] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 16113 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 55582 }, + }, + ["start"] = { + ["U"] = { 16113 }, + }, + }, + [41451] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 62109 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16921 }, + }, + ["start"] = { + ["U"] = { 62109 }, + }, + }, + [41452] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 62109 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16924 }, + }, + ["start"] = { + ["U"] = { 62109 }, + }, + }, + [41453] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 62109 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16923 }, + }, + ["start"] = { + ["U"] = { 62109 }, + }, + }, + [41454] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 62109 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16926 }, + }, + ["start"] = { + ["U"] = { 62109 }, + }, + }, + [41455] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 62109 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16920 }, + }, + ["start"] = { + ["U"] = { 62109 }, + }, + }, + [41456] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 62109 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16925 }, + }, + ["start"] = { + ["U"] = { 62109 }, + }, + }, + [41457] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 62109 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16922 }, + }, + ["start"] = { + ["U"] = { 62109 }, + }, + }, + [41458] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 62109 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16919 }, + }, + ["start"] = { + ["U"] = { 62109 }, + }, + }, + [41459] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 62109 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16813 }, + }, + ["start"] = { + ["U"] = { 62109 }, + }, + }, + [41460] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 62109 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16816 }, + }, + ["start"] = { + ["U"] = { 62109 }, + }, + }, + [41461] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 62109 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16815 }, + }, + ["start"] = { + ["U"] = { 62109 }, + }, + }, + [41462] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 62109 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16819 }, + }, + ["start"] = { + ["U"] = { 62109 }, + }, + }, + [41463] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 62109 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16812 }, + }, + ["start"] = { + ["U"] = { 62109 }, + }, + }, + [41464] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 62109 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16817 }, + }, + ["start"] = { + ["U"] = { 62109 }, + }, + }, + [41465] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 62109 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16814 }, + }, + ["start"] = { + ["U"] = { 62109 }, + }, + }, + [41466] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 62109 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16811 }, + }, + ["start"] = { + ["U"] = { 62109 }, + }, + }, + [41467] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 16116 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 55582 }, + }, + ["start"] = { + ["U"] = { 16116 }, + }, + }, + [41468] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 62109 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16917 }, + }, + ["start"] = { + ["U"] = { 62109 }, + }, + }, + [41469] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 62109 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16916 }, + }, + ["start"] = { + ["U"] = { 62109 }, + }, + }, + [41470] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 62109 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16918 }, + }, + ["start"] = { + ["U"] = { 62109 }, + }, + }, + [41471] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 62109 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16913 }, + }, + ["start"] = { + ["U"] = { 62109 }, + }, + }, + [41472] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 62109 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16818 }, + }, + ["start"] = { + ["U"] = { 62109 }, + }, + }, + [41473] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 62109 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16915 }, + }, + ["start"] = { + ["U"] = { 62109 }, + }, + }, + [41474] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 62109 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16912 }, + }, + ["start"] = { + ["U"] = { 62109 }, + }, + }, + [41475] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 62109 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16914 }, + }, + ["start"] = { + ["U"] = { 62109 }, + }, + }, + [41476] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 62109 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16795 }, + }, + ["start"] = { + ["U"] = { 62109 }, + }, + }, + [41477] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 62109 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16797 }, + }, + ["start"] = { + ["U"] = { 62109 }, + }, + }, + [41478] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 62109 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16798 }, + }, + ["start"] = { + ["U"] = { 62109 }, + }, + }, + [41479] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 62109 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16799 }, + }, + ["start"] = { + ["U"] = { 62109 }, + }, + }, + [41480] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 62109 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16801 }, + }, + ["start"] = { + ["U"] = { 62109 }, + }, + }, + [41481] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 62109 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16802 }, + }, + ["start"] = { + ["U"] = { 62109 }, + }, + }, + [41482] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 62109 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16796 }, + }, + ["start"] = { + ["U"] = { 62109 }, + }, + }, + [41483] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 62109 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16800 }, + }, + ["start"] = { + ["U"] = { 62109 }, + }, + }, + [41484] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 16115 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 55583 }, + }, + ["start"] = { + ["U"] = { 16115 }, + }, + }, + [41485] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 62108 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16955 }, + }, + ["start"] = { + ["U"] = { 62108 }, + }, + }, + [41486] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 62108 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16953 }, + }, + ["start"] = { + ["U"] = { 62108 }, + }, + }, + [41487] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 62108 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16958 }, + }, + ["start"] = { + ["U"] = { 62108 }, + }, + }, + [41488] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 62108 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16951 }, + }, + ["start"] = { + ["U"] = { 62108 }, + }, + }, + [41489] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 62108 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16956 }, + }, + ["start"] = { + ["U"] = { 62108 }, + }, + }, + [41490] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 62108 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16952 }, + }, + ["start"] = { + ["U"] = { 62108 }, + }, + }, + [41491] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 62108 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16954 }, + }, + ["start"] = { + ["U"] = { 62108 }, + }, + }, + [41492] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 62108 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16957 }, + }, + ["start"] = { + ["U"] = { 62108 }, + }, + }, + [41493] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 62108 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16854 }, + }, + ["start"] = { + ["U"] = { 62108 }, + }, + }, + [41494] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 62108 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16856 }, + }, + ["start"] = { + ["U"] = { 62108 }, + }, + }, + [41495] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 62108 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16853 }, + }, + ["start"] = { + ["U"] = { 62108 }, + }, + }, + [41496] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 62108 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16857 }, + }, + ["start"] = { + ["U"] = { 62108 }, + }, + }, + [41497] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 62108 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16860 }, + }, + ["start"] = { + ["U"] = { 62108 }, + }, + }, + [41498] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 62108 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16858 }, + }, + ["start"] = { + ["U"] = { 62108 }, + }, + }, + [41499] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 62108 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16855 }, + }, + ["start"] = { + ["U"] = { 62108 }, + }, + }, + [41500] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 62108 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16859 }, + }, + ["start"] = { + ["U"] = { 62108 }, + }, + }, + [41501] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 62107 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16947 }, + }, + ["start"] = { + ["U"] = { 62107 }, + }, + }, + [41502] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 62107 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16945 }, + }, + ["start"] = { + ["U"] = { 62107 }, + }, + }, + [41503] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 62107 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16950 }, + }, + ["start"] = { + ["U"] = { 62107 }, + }, + }, + [41504] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 62107 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16943 }, + }, + ["start"] = { + ["U"] = { 62107 }, + }, + }, + [41505] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 62107 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16948 }, + }, + ["start"] = { + ["U"] = { 62107 }, + }, + }, + [41506] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 62107 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16944 }, + }, + ["start"] = { + ["U"] = { 62107 }, + }, + }, + [41507] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 62107 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16946 }, + }, + ["start"] = { + ["U"] = { 62107 }, + }, + }, + [41508] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 62107 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16949 }, + }, + ["start"] = { + ["U"] = { 62107 }, + }, + }, + [41509] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 62107 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16842 }, + }, + ["start"] = { + ["U"] = { 62107 }, + }, + }, + [41510] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 62107 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16844 }, + }, + ["start"] = { + ["U"] = { 62107 }, + }, + }, + [41511] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 62107 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16841 }, + }, + ["start"] = { + ["U"] = { 62107 }, + }, + }, + [41512] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 62107 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16840 }, + }, + ["start"] = { + ["U"] = { 62107 }, + }, + }, + [41513] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 62107 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16839 }, + }, + ["start"] = { + ["U"] = { 62107 }, + }, + }, + [41514] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 62107 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16838 }, + }, + ["start"] = { + ["U"] = { 62107 }, + }, + }, + [41515] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 62107 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16843 }, + }, + ["start"] = { + ["U"] = { 62107 }, + }, + }, + [41516] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 62107 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16837 }, + }, + ["start"] = { + ["U"] = { 62107 }, + }, + }, + [41517] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 16134 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 55583 }, + }, + ["start"] = { + ["U"] = { 16134 }, + }, + }, + [41518] = { + ["end"] = { + ["U"] = { 62032 }, + }, + ["lvl"] = 58, + ["min"] = 55, + ["obj"] = { + ["I"] = { 70226 }, + }, + ["pre"] = { 41389 }, + ["start"] = { + ["U"] = { 62032 }, + }, + }, + [41519] = { + ["end"] = { + ["U"] = { 62034 }, + }, + ["lvl"] = 58, + ["min"] = 55, + ["obj"] = { + ["I"] = {}, + }, + ["pre"] = { 41518 }, + ["start"] = { + ["I"] = { 70232 }, + }, + }, + [41520] = { + ["end"] = { + ["U"] = { 62031 }, + }, + ["lvl"] = 58, + ["min"] = 55, + ["obj"] = { + ["I"] = { 41453 }, + }, + ["pre"] = { 41519 }, + ["start"] = { + ["U"] = { 62034 }, + }, + }, + [41521] = { + ["end"] = { + ["U"] = { 62032 }, + }, + ["lvl"] = 58, + ["min"] = 55, + ["obj"] = { + ["I"] = { 70226 }, + }, + ["pre"] = { 41389 }, + ["start"] = { + ["U"] = { 62032 }, + }, + }, + [41522] = { + ["end"] = { + ["U"] = { 62034 }, + }, + ["lvl"] = 58, + ["min"] = 55, + ["obj"] = { + ["I"] = {}, + }, + ["pre"] = { 41521 }, + ["start"] = { + ["I"] = { 70233 }, + }, + }, + [41523] = { + ["end"] = { + ["U"] = { 62031 }, + }, + ["lvl"] = 58, + ["min"] = 55, + ["obj"] = { + ["I"] = { 41454 }, + }, + ["pre"] = { 41522 }, + ["start"] = { + ["U"] = { 62034 }, + }, + }, + [41524] = { + ["end"] = { + ["U"] = { 62032 }, + }, + ["lvl"] = 58, + ["min"] = 55, + ["obj"] = { + ["I"] = { 70226 }, + }, + ["pre"] = { 41389 }, + ["start"] = { + ["U"] = { 62032 }, + }, + }, + [41525] = { + ["end"] = { + ["U"] = { 62034 }, + }, + ["lvl"] = 58, + ["min"] = 55, + ["obj"] = { + ["I"] = {}, + }, + ["pre"] = { 41524 }, + ["start"] = { + ["I"] = { 70238 }, + }, + }, + [41526] = { + ["end"] = { + ["U"] = { 62031 }, + }, + ["lvl"] = 58, + ["min"] = 55, + ["obj"] = { + ["I"] = { 41455 }, + }, + ["pre"] = { 41525 }, + ["start"] = { + ["U"] = { 62034 }, + }, + }, + [41527] = { + ["end"] = { + ["U"] = { 62032 }, + }, + ["lvl"] = 58, + ["min"] = 55, + ["obj"] = { + ["I"] = { 70226 }, + }, + ["pre"] = { 41389 }, + ["start"] = { + ["U"] = { 62032 }, + }, + }, + [41528] = { + ["end"] = { + ["U"] = { 62034 }, + }, + ["lvl"] = 58, + ["min"] = 55, + ["obj"] = { + ["I"] = {}, + }, + ["pre"] = { 41527 }, + ["start"] = { + ["I"] = { 70235 }, + }, + }, + [41529] = { + ["end"] = { + ["U"] = { 62031 }, + }, + ["lvl"] = 58, + ["min"] = 55, + ["obj"] = { + ["I"] = { 41456 }, + }, + ["pre"] = { 41528 }, + ["start"] = { + ["U"] = { 62034 }, + }, + }, + [41530] = { + ["end"] = { + ["U"] = { 62032 }, + }, + ["lvl"] = 58, + ["min"] = 55, + ["obj"] = { + ["I"] = { 70226 }, + }, + ["pre"] = { 41389 }, + ["start"] = { + ["U"] = { 62032 }, + }, + }, + [41531] = { + ["end"] = { + ["U"] = { 62034 }, + }, + ["lvl"] = 58, + ["min"] = 55, + ["obj"] = { + ["I"] = {}, + }, + ["pre"] = { 41530 }, + ["start"] = { + ["I"] = { 70234 }, + }, + }, + [41532] = { + ["end"] = { + ["U"] = { 62031 }, + }, + ["lvl"] = 58, + ["min"] = 55, + ["obj"] = { + ["I"] = { 41457 }, + }, + ["pre"] = { 41531 }, + ["start"] = { + ["U"] = { 62034 }, + }, + }, + [41533] = { + ["end"] = { + ["U"] = { 62032 }, + }, + ["lvl"] = 58, + ["min"] = 55, + ["obj"] = { + ["I"] = { 70226 }, + }, + ["pre"] = { 41389 }, + ["start"] = { + ["U"] = { 62032 }, + }, + }, + [41534] = { + ["end"] = { + ["U"] = { 62034 }, + }, + ["lvl"] = 58, + ["min"] = 55, + ["obj"] = { + ["I"] = {}, + }, + ["pre"] = { 41533 }, + ["start"] = { + ["I"] = { 70231 }, + }, + }, + [41535] = { + ["end"] = { + ["U"] = { 62031 }, + }, + ["lvl"] = 58, + ["min"] = 55, + ["obj"] = { + ["I"] = { 41458 }, + }, + ["pre"] = { 41534 }, + ["start"] = { + ["U"] = { 62034 }, + }, + }, + [41536] = { + ["end"] = { + ["U"] = { 62032 }, + }, + ["lvl"] = 58, + ["min"] = 55, + ["obj"] = { + ["I"] = { 70226 }, + }, + ["pre"] = { 41389 }, + ["start"] = { + ["U"] = { 62032 }, + }, + }, + [41537] = { + ["end"] = { + ["U"] = { 62034 }, + }, + ["lvl"] = 58, + ["min"] = 55, + ["obj"] = { + ["I"] = {}, + }, + ["pre"] = { 41536 }, + ["start"] = { + ["I"] = { 70228 }, + }, + }, + [41538] = { + ["end"] = { + ["U"] = { 62031 }, + }, + ["lvl"] = 58, + ["min"] = 55, + ["obj"] = { + ["I"] = { 41459 }, + }, + ["pre"] = { 41537 }, + ["start"] = { + ["U"] = { 62034 }, + }, + }, + [41539] = { + ["end"] = { + ["U"] = { 62032 }, + }, + ["lvl"] = 58, + ["min"] = 55, + ["obj"] = { + ["I"] = { 70226 }, + }, + ["pre"] = { 41389 }, + ["start"] = { + ["U"] = { 62032 }, + }, + }, + [41540] = { + ["end"] = { + ["U"] = { 62034 }, + }, + ["lvl"] = 58, + ["min"] = 55, + ["obj"] = { + ["I"] = {}, + }, + ["pre"] = { 41539 }, + ["start"] = { + ["I"] = { 70229 }, + }, + }, + [41541] = { + ["end"] = { + ["U"] = { 62031 }, + }, + ["lvl"] = 58, + ["min"] = 55, + ["obj"] = { + ["I"] = { 41460 }, + }, + ["pre"] = { 41540 }, + ["start"] = { + ["U"] = { 62034 }, + }, + }, + [41542] = { + ["end"] = { + ["U"] = { 62032 }, + }, + ["lvl"] = 58, + ["min"] = 55, + ["obj"] = { + ["I"] = { 70226 }, + }, + ["pre"] = { 41389 }, + ["start"] = { + ["U"] = { 62032 }, + }, + }, + [41543] = { + ["end"] = { + ["U"] = { 62034 }, + }, + ["lvl"] = 58, + ["min"] = 55, + ["obj"] = { + ["I"] = {}, + }, + ["pre"] = { 41542 }, + ["start"] = { + ["I"] = { 70227 }, + }, + }, + [41544] = { + ["end"] = { + ["U"] = { 62031 }, + }, + ["lvl"] = 58, + ["min"] = 55, + ["obj"] = { + ["I"] = { 41461 }, + }, + ["pre"] = { 41543 }, + ["start"] = { + ["U"] = { 62034 }, + }, + }, + [41545] = { + ["end"] = { + ["U"] = { 62032 }, + }, + ["lvl"] = 58, + ["min"] = 55, + ["obj"] = { + ["I"] = { 70226 }, + }, + ["pre"] = { 41389 }, + ["start"] = { + ["U"] = { 62032 }, + }, + }, + [41546] = { + ["end"] = { + ["U"] = { 62034 }, + }, + ["lvl"] = 58, + ["min"] = 55, + ["obj"] = { + ["I"] = {}, + }, + ["pre"] = { 41545 }, + ["start"] = { + ["I"] = { 70230 }, + }, + }, + [41547] = { + ["end"] = { + ["U"] = { 62031 }, + }, + ["lvl"] = 58, + ["min"] = 55, + ["obj"] = { + ["I"] = { 41462 }, + }, + ["pre"] = { 41546 }, + ["start"] = { + ["U"] = { 62034 }, + }, + }, + [41548] = { + ["end"] = { + ["U"] = { 62032 }, + }, + ["lvl"] = 58, + ["min"] = 55, + ["obj"] = { + ["I"] = { 70226 }, + }, + ["pre"] = { 41389 }, + ["start"] = { + ["U"] = { 62032 }, + }, + }, + [41549] = { + ["end"] = { + ["U"] = { 62034 }, + }, + ["lvl"] = 58, + ["min"] = 55, + ["obj"] = { + ["I"] = {}, + }, + ["pre"] = { 41548 }, + ["start"] = { + ["I"] = { 70236 }, + }, + }, + [41550] = { + ["end"] = { + ["U"] = { 62031 }, + }, + ["lvl"] = 58, + ["min"] = 55, + ["obj"] = { + ["I"] = { 41463 }, + }, + ["pre"] = { 41549 }, + ["start"] = { + ["U"] = { 62034 }, + }, + }, + [41551] = { + ["end"] = { + ["U"] = { 73101 }, + }, + ["lvl"] = 44, + ["min"] = 34, + ["pre"] = { 41292 }, + ["skill"] = 755, + ["start"] = { + ["U"] = { 73101 }, + }, + }, + [41552] = { + ["end"] = { + ["U"] = { 73101 }, + }, + ["lvl"] = 48, + ["min"] = 34, + ["pre"] = { 41282 }, + ["skill"] = 755, + ["start"] = { + ["U"] = { 73101 }, + }, + }, + [41553] = { + ["end"] = { + ["U"] = { 62202 }, + }, + ["event"] = 26, + ["lvl"] = 1, + ["min"] = 1, + ["race"] = 434, + ["start"] = { + ["U"] = { 62205 }, + }, + }, + [41554] = { + ["end"] = { + ["U"] = { 62201 }, + }, + ["event"] = 26, + ["lvl"] = 1, + ["min"] = 1, + ["race"] = 589, + ["start"] = { + ["U"] = { 62205 }, + }, + }, + [41555] = { + ["end"] = { + ["U"] = { 62202 }, + }, + ["event"] = 26, + ["lvl"] = 30, + ["min"] = 1, + ["obj"] = { + ["I"] = { 41484 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62202 }, + }, + }, + [41556] = { + ["end"] = { + ["U"] = { 62202 }, + }, + ["event"] = 26, + ["lvl"] = 36, + ["min"] = 1, + ["obj"] = { + ["I"] = { 7068 }, + }, + ["pre"] = { 41555 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62202 }, + }, + }, + [41557] = { + ["end"] = { + ["U"] = { 62202 }, + }, + ["event"] = 26, + ["lvl"] = 40, + ["min"] = 1, + ["obj"] = { + ["I"] = { 41470 }, + }, + ["pre"] = { 41556 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62202 }, + }, + }, + [41558] = { + ["end"] = { + ["U"] = { 62202 }, + }, + ["event"] = 26, + ["lvl"] = 40, + ["min"] = 1, + ["obj"] = { + ["I"] = { 41471 }, + }, + ["pre"] = { 41557 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62202 }, + }, + }, + [41559] = { + ["end"] = { + ["U"] = { 62202 }, + }, + ["event"] = 26, + ["lvl"] = 40, + ["min"] = 1, + ["obj"] = { + ["I"] = { 41472 }, + }, + ["pre"] = { 41557 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62202 }, + }, + }, + [41560] = { + ["end"] = { + ["U"] = { 62202 }, + }, + ["event"] = 26, + ["lvl"] = 46, + ["min"] = 1, + ["obj"] = { + ["I"] = { 41473 }, + }, + ["pre"] = { 41557 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62202 }, + }, + }, + [41561] = { + ["end"] = { + ["U"] = { 62202 }, + }, + ["event"] = 26, + ["lvl"] = 56, + ["min"] = 1, + ["obj"] = { + ["I"] = { 18255 }, + }, + ["pre"] = { 41558, 41559, 41560 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62202 }, + }, + }, + [41562] = { + ["end"] = { + ["U"] = { 62201 }, + }, + ["event"] = 26, + ["lvl"] = 23, + ["min"] = 1, + ["obj"] = { + ["I"] = { 41474 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62201 }, + }, + }, + [41563] = { + ["end"] = { + ["U"] = { 62201 }, + }, + ["event"] = 26, + ["lvl"] = 26, + ["min"] = 1, + ["obj"] = { + ["I"] = { 41475 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62201 }, + }, + }, + [41564] = { + ["end"] = { + ["U"] = { 62201 }, + }, + ["event"] = 26, + ["lvl"] = 40, + ["min"] = 1, + ["obj"] = { + ["I"] = { 41476 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62201 }, + }, + }, + [41565] = { + ["end"] = { + ["U"] = { 62201 }, + }, + ["event"] = 26, + ["lvl"] = 36, + ["min"] = 1, + ["obj"] = { + ["I"] = { 7070 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62201 }, + }, + }, + [41566] = { + ["end"] = { + ["U"] = { 62201 }, + }, + ["event"] = 26, + ["lvl"] = 36, + ["min"] = 1, + ["obj"] = { + ["I"] = { 3821 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62201 }, + }, + }, + [41567] = { + ["end"] = { + ["U"] = { 62201 }, + }, + ["event"] = 26, + ["lvl"] = 52, + ["min"] = 1, + ["obj"] = { + ["I"] = { 41477, 41478 }, + }, + ["pre"] = { 41565, 41566 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62201 }, + }, + }, + [41568] = { + ["end"] = { + ["U"] = { 62201 }, + }, + ["event"] = 26, + ["lvl"] = 52, + ["min"] = 1, + ["obj"] = { + ["I"] = { 41479 }, + }, + ["pre"] = { 41567 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62201 }, + }, + }, + [41569] = { + ["end"] = { + ["U"] = { 62208 }, + }, + ["event"] = 26, + ["lvl"] = 1, + ["min"] = 1, + ["start"] = { + ["U"] = { 62208 }, + }, + }, + [41570] = { + ["end"] = { + ["U"] = { 62208 }, + }, + ["event"] = 26, + ["lvl"] = 1, + ["min"] = 1, + ["start"] = { + ["U"] = { 62208 }, + }, + }, + [41571] = { + ["end"] = { + ["U"] = { 62208 }, + }, + ["event"] = 26, + ["lvl"] = 1, + ["min"] = 1, + ["start"] = { + ["U"] = { 62208 }, + }, + }, + [41572] = { + ["end"] = { + ["U"] = { 62209, 62210 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 14048, 20725, 61674 }, + }, + ["start"] = { + ["U"] = { 62209, 62210 }, + }, + }, + [41573] = { + ["end"] = { + ["U"] = { 62209, 62210 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 14048, 20725, 61674 }, + }, + ["start"] = { + ["U"] = { 62209, 62210 }, + }, + }, + [41574] = { + ["end"] = { + ["U"] = { 62209, 62210 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 14048, 20725, 61674 }, + }, + ["start"] = { + ["U"] = { 62209, 62210 }, + }, + }, + [41575] = { + ["end"] = { + ["U"] = { 62209, 62210 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 14048, 20725, 61674 }, + }, + ["start"] = { + ["U"] = { 62209, 62210 }, + }, + }, + [41576] = { + ["end"] = { + ["U"] = { 62209, 62210 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 14048, 20725, 61674 }, + }, + ["start"] = { + ["U"] = { 62209, 62210 }, + }, + }, + [41577] = { + ["end"] = { + ["U"] = { 61137 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = {}, + }, + ["start"] = { + ["I"] = { 55579 }, + }, + }, + [41578] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 61610 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 15407, 41485, 55487, 61674 }, + }, + ["start"] = { + ["U"] = { 61610 }, + }, + }, + [41579] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 61996 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 15407, 41485, 55485, 61674 }, + }, + ["start"] = { + ["U"] = { 61996 }, + }, + }, + [41580] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 61996 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 15407, 41485, 55491, 61674 }, + }, + ["start"] = { + ["U"] = { 61996 }, + }, + }, + [41581] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 61568 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 15407, 41485, 55489, 61674 }, + }, + ["start"] = { + ["U"] = { 61568 }, + }, + }, + [41582] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 61568 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 15407, 41485, 55483, 61674 }, + }, + ["start"] = { + ["U"] = { 61568 }, + }, + }, + [41583] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 61610 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 15407, 41485, 55482, 61674 }, + }, + ["start"] = { + ["U"] = { 61610 }, + }, + }, + [41584] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 61610 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 14342, 41485, 55487, 61674 }, + }, + ["start"] = { + ["U"] = { 61610 }, + }, + }, + [41585] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 61996 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 14342, 41485, 55485, 61674 }, + }, + ["start"] = { + ["U"] = { 61996 }, + }, + }, + [41586] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 61996 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 14342, 41485, 55491, 61674 }, + }, + ["start"] = { + ["U"] = { 61996 }, + }, + }, + [41587] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 61568 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 14342, 41485, 55489, 61674 }, + }, + ["start"] = { + ["U"] = { 61568 }, + }, + }, + [41588] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 61568 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 14342, 41485, 55483, 61674 }, + }, + ["start"] = { + ["U"] = { 61568 }, + }, + }, + [41589] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 61610 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 14342, 41485, 55482, 61674 }, + }, + ["start"] = { + ["U"] = { 61610 }, + }, + }, + [41590] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 61610 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 12360, 41485, 55487, 61674 }, + }, + ["start"] = { + ["U"] = { 61610 }, + }, + }, + [41591] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 61996 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 12360, 41485, 55485, 61674 }, + }, + ["start"] = { + ["U"] = { 61996 }, + }, + }, + [41592] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 61996 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 12360, 41485, 55491, 61674 }, + }, + ["start"] = { + ["U"] = { 61996 }, + }, + }, + [41593] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 61568 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 12360, 41485, 55489, 61674 }, + }, + ["start"] = { + ["U"] = { 61568 }, + }, + }, + [41594] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 61568 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 12360, 41485, 55483, 61674 }, + }, + ["start"] = { + ["U"] = { 61568 }, + }, + }, + [41595] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 61610 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 12360, 41485, 55482, 61674 }, + }, + ["start"] = { + ["U"] = { 61610 }, + }, + }, + [41596] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 61610 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 14342, 41485, 55487, 61674 }, + }, + ["start"] = { + ["U"] = { 61610 }, + }, + }, + [41597] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 61996 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 14342, 41485, 55485, 61674 }, + }, + ["start"] = { + ["U"] = { 61996 }, + }, + }, + [41598] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 61996 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 14342, 41485, 55491, 61674 }, + }, + ["start"] = { + ["U"] = { 61996 }, + }, + }, + [41599] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 61568 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 14342, 41485, 55489, 61674 }, + }, + ["start"] = { + ["U"] = { 61568 }, + }, + }, + [41600] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 61568 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 14342, 41485, 55483, 61674 }, + }, + ["start"] = { + ["U"] = { 61568 }, + }, + }, + [41601] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 61610 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 14342, 41485, 55482, 61674 }, + }, + ["start"] = { + ["U"] = { 61610 }, + }, + }, + [41602] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 61610 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 15407, 41485, 55488, 61674 }, + }, + ["start"] = { + ["U"] = { 61610 }, + }, + }, + [41603] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 61996 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 15407, 41485, 55486, 61674 }, + }, + ["start"] = { + ["U"] = { 61996 }, + }, + }, + [41604] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 61996 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 15407, 41485, 55492, 61674 }, + }, + ["start"] = { + ["U"] = { 61996 }, + }, + }, + [41605] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 61568 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 15407, 41485, 55490, 61674 }, + }, + ["start"] = { + ["U"] = { 61568 }, + }, + }, + [41606] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 61568 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 15407, 41485, 55484, 61674 }, + }, + ["start"] = { + ["U"] = { 61568 }, + }, + }, + [41607] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 61610 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 15407, 41485, 55482, 61674 }, + }, + ["start"] = { + ["U"] = { 61610 }, + }, + }, + [41608] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 61610 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 15407, 41485, 55488, 61674 }, + }, + ["start"] = { + ["U"] = { 61610 }, + }, + }, + [41609] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 61996 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 15407, 41485, 55486, 61674 }, + }, + ["start"] = { + ["U"] = { 61996 }, + }, + }, + [41610] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 61996 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 15407, 41485, 55492, 61674 }, + }, + ["start"] = { + ["U"] = { 61996 }, + }, + }, + [41611] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 61568 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 15407, 41485, 55490, 61674 }, + }, + ["start"] = { + ["U"] = { 61568 }, + }, + }, + [41612] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 61568 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 15407, 41485, 55484, 61674 }, + }, + ["start"] = { + ["U"] = { 61568 }, + }, + }, + [41613] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 61610 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 15407, 41485, 55482, 61674 }, + }, + ["start"] = { + ["U"] = { 61610 }, + }, + }, + [41614] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 61610 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 15407, 41485, 55488, 61674 }, + }, + ["start"] = { + ["U"] = { 61610 }, + }, + }, + [41615] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 61996 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 15407, 41485, 55486, 61674 }, + }, + ["start"] = { + ["U"] = { 61996 }, + }, + }, + [41616] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 61996 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 15407, 41485, 55492, 61674 }, + }, + ["start"] = { + ["U"] = { 61996 }, + }, + }, + [41617] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 61568 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 15407, 41485, 55490, 61674 }, + }, + ["start"] = { + ["U"] = { 61568 }, + }, + }, + [41618] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 61568 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 15407, 41485, 55484, 61674 }, + }, + ["start"] = { + ["U"] = { 61568 }, + }, + }, + [41619] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 61610 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 15407, 41485, 55482, 61674 }, + }, + ["start"] = { + ["U"] = { 61610 }, + }, + }, + [41620] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 61610 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 14342, 41485, 55488, 61674 }, + }, + ["start"] = { + ["U"] = { 61610 }, + }, + }, + [41621] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 61996 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 14342, 41485, 55486, 61674 }, + }, + ["start"] = { + ["U"] = { 61996 }, + }, + }, + [41622] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 61996 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 14342, 41485, 55492, 61674 }, + }, + ["start"] = { + ["U"] = { 61996 }, + }, + }, + [41623] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 61568 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 14342, 41485, 55490, 61674 }, + }, + ["start"] = { + ["U"] = { 61568 }, + }, + }, + [41624] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 61568 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 14342, 41485, 55484, 61674 }, + }, + ["start"] = { + ["U"] = { 61568 }, + }, + }, + [41625] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 61610 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 14342, 41485, 55482, 61674 }, + }, + ["start"] = { + ["U"] = { 61610 }, + }, + }, + [41626] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 61610 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 12360, 41485, 55488, 61674 }, + }, + ["start"] = { + ["U"] = { 61610 }, + }, + }, + [41627] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 61996 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 12360, 41485, 55486, 61674 }, + }, + ["start"] = { + ["U"] = { 61996 }, + }, + }, + [41628] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 61996 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 12360, 41485, 55492, 61674 }, + }, + ["start"] = { + ["U"] = { 61996 }, + }, + }, + [41629] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 61568 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 12360, 41485, 55490, 61674 }, + }, + ["start"] = { + ["U"] = { 61568 }, + }, + }, + [41630] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 61568 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 12360, 41485, 55484, 61674 }, + }, + ["start"] = { + ["U"] = { 61568 }, + }, + }, + [41631] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 61610 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 12360, 41485, 55482, 61674 }, + }, + ["start"] = { + ["U"] = { 61610 }, + }, + }, + [41632] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 16132 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 55583 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16132 }, + }, + }, + [41633] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 16131 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 55581 }, + }, + ["pre"] = { 9033 }, + ["start"] = { + ["U"] = { 16131 }, + }, + }, + [41634] = { + ["end"] = { + ["U"] = { 62290 }, + }, + ["lvl"] = 30, + ["min"] = 24, + ["obj"] = { + ["I"] = { 41603, 41604 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62290 }, + }, + }, + [41635] = { + ["end"] = { + ["U"] = { 62292 }, + }, + ["lvl"] = 31, + ["min"] = 25, + ["obj"] = { + ["I"] = { 41605 }, + ["U"] = { 62114, 62115, 62116 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62292 }, + }, + }, + [41636] = { + ["end"] = { + ["U"] = { 62296 }, + }, + ["lvl"] = 31, + ["min"] = 25, + ["obj"] = { + ["I"] = { 41606 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62295 }, + }, + }, + [41637] = { + ["end"] = { + ["U"] = { 62296 }, + }, + ["lvl"] = 32, + ["min"] = 24, + ["obj"] = { + ["U"] = { 60063, 60064, 60065, 60078 }, + }, + ["pre"] = { 41636 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62296 }, + }, + }, + [41638] = { + ["end"] = { + ["U"] = { 62297 }, + }, + ["lvl"] = 32, + ["min"] = 26, + ["obj"] = { + ["I"] = { 41607 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62297 }, + }, + }, + [41639] = { + ["end"] = { + ["U"] = { 62299 }, + }, + ["lvl"] = 30, + ["min"] = 24, + ["obj"] = { + ["I"] = { 41608, 41609, 41610 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62299 }, + }, + }, + [41640] = { + ["end"] = { + ["U"] = { 62199 }, + }, + ["lvl"] = 9, + ["min"] = 6, + ["obj"] = { + ["I"] = { 41686 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62199 }, + }, + }, + [41641] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 62197 }, + }, + ["lvl"] = 24, + ["min"] = 18, + ["obj"] = { + ["U"] = { 62194, 62195 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62197 }, + }, + }, + [41642] = { + ["end"] = { + ["U"] = { 62293 }, + }, + ["lvl"] = 29, + ["min"] = 23, + ["obj"] = { + ["I"] = { 41687 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62293 }, + }, + }, + [41643] = { + ["end"] = { + ["U"] = { 62488 }, + }, + ["lvl"] = 28, + ["min"] = 22, + ["obj"] = { + ["U"] = { 60066, 60067, 60068 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62488 }, + }, + }, + [41644] = { + ["end"] = { + ["U"] = { 62488 }, + }, + ["lvl"] = 32, + ["min"] = 32, + ["obj"] = { + ["I"] = { 41688, 41689 }, + }, + ["pre"] = { 41643 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62488 }, + }, + }, + [41645] = { + ["end"] = { + ["U"] = { 62488 }, + }, + ["lvl"] = 33, + ["min"] = 33, + ["obj"] = { + ["I"] = { 41690 }, + }, + ["pre"] = { 41644 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62488 }, + }, + }, + [41646] = { + ["end"] = { + ["U"] = { 62488 }, + }, + ["lvl"] = 34, + ["min"] = 34, + ["obj"] = { + ["I"] = { 41691 }, + }, + ["pre"] = { 41645 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62488 }, + }, + }, + [41647] = { + ["end"] = { + ["U"] = { 62299 }, + }, + ["lvl"] = 34, + ["min"] = 34, + ["pre"] = { 41646 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62155 }, + }, + }, + [41648] = { + ["end"] = { + ["U"] = { 62299 }, + }, + ["lvl"] = 34, + ["min"] = 34, + ["obj"] = { + ["I"] = { 41693, 41694, 41695 }, + }, + ["pre"] = { 41647 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62299 }, + }, + }, + [41649] = { + ["end"] = { + ["U"] = { 61641 }, + }, + ["lvl"] = 50, + ["min"] = 48, + ["obj"] = { + ["U"] = { 60069 }, + }, + ["pre"] = { 41652 }, + ["start"] = { + ["U"] = { 61641 }, + }, + }, + [41650] = { + ["end"] = { + ["O"] = { 2020167 }, + }, + ["lvl"] = 51, + ["min"] = 48, + ["obj"] = { + ["I"] = { 62511 }, + }, + ["pre"] = { 41649 }, + ["start"] = { + ["U"] = { 61641 }, + }, + }, + [41651] = { + ["end"] = { + ["U"] = { 61641 }, + }, + ["lvl"] = 51, + ["min"] = 48, + ["pre"] = { 41650 }, + ["start"] = { + ["O"] = { 2020167 }, + }, + }, + [41652] = { + ["end"] = { + ["U"] = { 61641 }, + }, + ["lvl"] = 50, + ["min"] = 48, + }, + [41653] = { + ["end"] = { + ["U"] = { 60631 }, + }, + ["event"] = 7, + ["lvl"] = 40, + ["min"] = 1, + ["start"] = { + ["U"] = { 62511 }, + }, + }, + [41654] = { + ["end"] = { + ["U"] = { 62511 }, + }, + ["event"] = 7, + ["lvl"] = 1, + ["min"] = 1, + ["obj"] = { + ["I"] = { 41699 }, + }, + ["start"] = { + ["U"] = { 62511 }, + }, + }, + [41655] = { + ["end"] = { + ["U"] = { 62512 }, + }, + ["event"] = 7, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 41700 }, + }, + ["start"] = { + ["U"] = { 62512 }, + }, + }, + [41656] = { + ["end"] = { + ["U"] = { 62433 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["obj"] = { + ["I"] = { 41708 }, + }, + ["race"] = 434, + ["start"] = { + ["O"] = { 2020168 }, + }, + }, + [41657] = { + ["end"] = { + ["U"] = { 62433 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["I"] = {}, + }, + ["race"] = 434, + ["start"] = { + ["I"] = { 41711 }, + }, + }, + [41658] = { + ["end"] = { + ["U"] = { 62433 }, + }, + ["lvl"] = 39, + ["min"] = 30, + ["obj"] = { + ["I"] = { 41712 }, + }, + ["pre"] = { 41657 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62433 }, + }, + }, + [41659] = { + ["end"] = { + ["U"] = { 62425 }, + }, + ["lvl"] = 36, + ["min"] = 30, + ["obj"] = { + ["U"] = { 62229, 62230, 62231, 62232 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62425 }, + }, + }, + [41660] = { + ["end"] = { + ["U"] = { 62425 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["obj"] = { + ["I"] = { 41716 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62425 }, + }, + }, + [41661] = { + ["end"] = { + ["U"] = { 62275 }, + }, + ["lvl"] = 28, + ["min"] = 25, + ["obj"] = { + ["U"] = { 62131 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62275 }, + }, + }, + [41662] = { + ["end"] = { + ["U"] = { 62278 }, + }, + ["lvl"] = 28, + ["min"] = 25, + ["obj"] = { + ["I"] = { 41728 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62278 }, + }, + }, + [41663] = { + ["end"] = { + ["U"] = { 62162 }, + }, + ["lvl"] = 28, + ["min"] = 25, + ["race"] = 589, + ["start"] = { + ["U"] = { 62276 }, + }, + }, + [41664] = { + ["end"] = { + ["U"] = { 62162 }, + }, + ["lvl"] = 28, + ["min"] = 25, + ["obj"] = { + ["I"] = { 41730 }, + }, + ["pre"] = { 41663 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62162 }, + }, + }, + [41665] = { + ["end"] = { + ["U"] = { 62165 }, + }, + ["lvl"] = 28, + ["min"] = 25, + ["pre"] = { 41664 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62162 }, + }, + }, + [41666] = { + ["end"] = { + ["U"] = { 62186 }, + }, + ["lvl"] = 28, + ["min"] = 25, + ["obj"] = { + ["I"] = { 30817, 41732, 41733, 41734 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62186 }, + }, + }, + [41667] = { + ["end"] = { + ["U"] = { 62477 }, + }, + ["lvl"] = 28, + ["min"] = 25, + ["obj"] = { + ["I"] = { 41735 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62477 }, + }, + }, + [41668] = { + ["end"] = { + ["U"] = { 62279 }, + }, + ["lvl"] = 28, + ["min"] = 25, + ["obj"] = { + ["I"] = { 41736, 41737, 41738 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62279 }, + }, + }, + [41669] = { + ["end"] = { + ["U"] = { 1747 }, + }, + ["lvl"] = 28, + ["min"] = 25, + ["pre"] = { 41668 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62279 }, + }, + }, + [41670] = { + ["end"] = { + ["U"] = { 62280 }, + }, + ["lvl"] = 29, + ["min"] = 26, + ["obj"] = { + ["I"] = { 41740 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62280 }, + }, + }, + [41671] = { + ["end"] = { + ["U"] = { 62280 }, + }, + ["lvl"] = 29, + ["min"] = 26, + ["obj"] = { + ["I"] = { 41741 }, + ["U"] = { 62268 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62280 }, + }, + }, + [41672] = { + ["end"] = { + ["U"] = { 62158 }, + }, + ["lvl"] = 30, + ["min"] = 27, + ["obj"] = { + ["U"] = { 62135, 62136, 62137 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62158 }, + }, + }, + [41673] = { + ["end"] = { + ["U"] = { 62156 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["obj"] = { + ["I"] = { 41742 }, + ["U"] = { 62553 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62156 }, + }, + }, + [41674] = { + ["end"] = { + ["U"] = { 62309 }, + }, + ["lvl"] = 31, + ["min"] = 26, + ["obj"] = { + ["U"] = { 62176 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62309 }, + }, + }, + [41675] = { + ["end"] = { + ["U"] = { 62309 }, + }, + ["lvl"] = 31, + ["min"] = 26, + ["obj"] = { + ["I"] = { 41743 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62310 }, + }, + }, + [41676] = { + ["end"] = { + ["U"] = { 62484 }, + }, + ["lvl"] = 33, + ["min"] = 30, + ["obj"] = { + ["U"] = { 62180, 62181, 62182 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62484 }, + }, + }, + [41677] = { + ["end"] = { + ["U"] = { 62484 }, + }, + ["lvl"] = 32, + ["min"] = 29, + ["obj"] = { + ["U"] = { 60070 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62484 }, + }, + }, + [41678] = { + ["end"] = { + ["U"] = { 62308 }, + }, + ["lvl"] = 31, + ["min"] = 28, + ["obj"] = { + ["I"] = { 41744 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62308 }, + }, + }, + [41679] = { + ["end"] = { + ["U"] = { 62273 }, + }, + ["lvl"] = 31, + ["min"] = 28, + ["obj"] = { + ["I"] = { 41745 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62273 }, + }, + }, + [41680] = { + ["end"] = { + ["U"] = { 62554 }, + }, + ["lvl"] = 31, + ["min"] = 29, + ["pre"] = { 41679 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62273 }, + }, + }, + [41681] = { + ["end"] = { + ["U"] = { 62554 }, + }, + ["lvl"] = 32, + ["min"] = 29, + ["obj"] = { + ["U"] = { 62555 }, + }, + ["pre"] = { 41680 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62554 }, + }, + }, + [41682] = { + ["end"] = { + ["U"] = { 62274 }, + }, + ["lvl"] = 32, + ["min"] = 29, + ["obj"] = { + ["U"] = { 60070 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62274 }, + }, + }, + [41683] = { + ["end"] = { + ["U"] = { 62274 }, + }, + ["lvl"] = 33, + ["min"] = 29, + ["obj"] = { + ["U"] = { 62180, 62181, 62182 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62274 }, + }, + }, + [41684] = { + ["end"] = { + ["U"] = { 62488 }, + }, + ["lvl"] = 34, + ["min"] = 22, + ["obj"] = { + ["I"] = { 41747 }, + ["U"] = { 60071 }, + }, + ["pre"] = { 41648 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62299 }, + }, + }, + [41685] = { + ["end"] = { + ["U"] = { 332 }, + }, + ["lvl"] = 34, + ["min"] = 22, + ["pre"] = { 41684 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62488 }, + }, + }, + [41686] = { + ["end"] = { + ["U"] = { 62455 }, + }, + ["lvl"] = 34, + ["min"] = 22, + ["pre"] = { 41685 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 332 }, + }, + }, + [41687] = { + ["end"] = { + ["U"] = { 62162 }, + }, + ["lvl"] = 34, + ["min"] = 28, + ["obj"] = { + ["U"] = { 62169, 62170, 62171, 62172 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62162 }, + }, + }, + [41688] = { + ["end"] = { + ["U"] = { 62183 }, + }, + ["lvl"] = 30, + ["min"] = 24, + ["obj"] = { + ["I"] = { 41749 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62163 }, + }, + }, + [41689] = { + ["end"] = { + ["U"] = { 62493 }, + }, + ["lvl"] = 28, + ["min"] = 22, + ["obj"] = { + ["I"] = { 6451, 41750 }, + }, + ["start"] = { + ["U"] = { 62493 }, + }, + }, + [41690] = { + ["end"] = { + ["U"] = { 62299 }, + }, + ["lvl"] = 28, + ["min"] = 22, + ["pre"] = { 41689 }, + ["start"] = { + ["U"] = { 62493 }, + }, + }, + [41691] = { + ["end"] = { + ["U"] = { 62299 }, + }, + ["lvl"] = 34, + ["min"] = 21, + ["obj"] = { + ["I"] = { 41675, 41752 }, + }, + ["pre"] = { 41690 }, + ["start"] = { + ["U"] = { 62299 }, + }, + }, + [41692] = { + ["end"] = { + ["O"] = { 2020177 }, + }, + ["lvl"] = 27, + ["min"] = 21, + ["race"] = 589, + ["start"] = { + ["O"] = { 2020177 }, + ["U"] = { 62455 }, + }, + }, + [41693] = { + ["end"] = { + ["U"] = { 62556 }, + }, + ["lvl"] = 27, + ["min"] = 21, + ["obj"] = { + ["I"] = { 41753 }, + }, + ["pre"] = { 41692 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 2020177 }, + }, + }, + [41694] = { + ["end"] = { + ["U"] = { 62455 }, + }, + ["lvl"] = 30, + ["min"] = 21, + ["obj"] = { + ["I"] = { 41754 }, + ["U"] = { 60072, 60073, 60074 }, + }, + ["pre"] = { 41693 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62556 }, + }, + }, + [41695] = { + ["end"] = { + ["U"] = { 62458 }, + }, + ["lvl"] = 30, + ["min"] = 21, + ["pre"] = { 41694 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62455 }, + }, + }, + [41696] = { + ["end"] = { + ["U"] = { 62458 }, + }, + ["lvl"] = 31, + ["min"] = 21, + ["obj"] = { + ["I"] = { 41756 }, + }, + ["pre"] = { 41695 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62458 }, + }, + }, + [41697] = { + ["end"] = { + ["U"] = { 62457 }, + }, + ["lvl"] = 31, + ["min"] = 21, + ["obj"] = { + ["I"] = { 41757 }, + ["U"] = { 62314, 62315, 62316 }, + }, + ["pre"] = { 41695 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62457 }, + }, + }, + [41698] = { + ["end"] = { + ["U"] = { 62459 }, + }, + ["lvl"] = 31, + ["min"] = 21, + ["obj"] = { + ["U"] = { 60075, 60076, 60077 }, + }, + ["pre"] = { 41695 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62459 }, + }, + }, + [41699] = { + ["end"] = { + ["U"] = { 62455 }, + }, + ["lvl"] = 32, + ["min"] = 21, + ["pre"] = { 41696, 41697, 41698 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62458 }, + }, + }, + [41700] = { + ["end"] = { + ["U"] = { 62521 }, + }, + ["lvl"] = 30, + ["min"] = 24, + ["obj"] = { + ["I"] = { 41758 }, + }, + ["start"] = { + ["U"] = { 62521 }, + }, + }, + [41701] = { + ["end"] = { + ["U"] = { 62519 }, + }, + ["lvl"] = 31, + ["min"] = 25, + ["obj"] = { + ["I"] = { 41759, 41760 }, + }, + ["start"] = { + ["U"] = { 62519 }, + }, + }, + [41702] = { + ["end"] = { + ["U"] = { 62519 }, + }, + ["lvl"] = 32, + ["min"] = 25, + ["obj"] = { + ["I"] = { 41761, 41762 }, + }, + ["pre"] = { 41701 }, + ["start"] = { + ["U"] = { 62519 }, + }, + }, + [41703] = { + ["end"] = { + ["U"] = { 62468 }, + }, + ["lvl"] = 30, + ["min"] = 24, + ["obj"] = { + ["I"] = { 41763, 41764, 41765, 41766 }, + }, + ["start"] = { + ["U"] = { 62468 }, + }, + }, + [41704] = { + ["end"] = { + ["U"] = { 62467 }, + }, + ["lvl"] = 29, + ["min"] = 23, + ["obj"] = { + ["U"] = { 62324, 62325, 62454 }, + }, + ["start"] = { + ["U"] = { 62467 }, + }, + }, + [41705] = { + ["end"] = { + ["U"] = { 62561 }, + }, + ["lvl"] = 31, + ["min"] = 25, + ["obj"] = { + ["I"] = { 41767 }, + }, + ["start"] = { + ["U"] = { 62561 }, + }, + }, + [41706] = { + ["end"] = { + ["U"] = { 62471 }, + }, + ["lvl"] = 30, + ["min"] = 24, + ["obj"] = { + ["I"] = { 41768 }, + }, + ["start"] = { + ["U"] = { 62471 }, + }, + }, + [41707] = { + ["end"] = { + ["U"] = { 62456 }, + }, + ["lvl"] = 31, + ["min"] = 25, + ["obj"] = { + ["I"] = { 41769, 41770 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62456 }, + }, + }, + [41708] = { + ["end"] = { + ["U"] = { 62456 }, + }, + ["lvl"] = 32, + ["min"] = 26, + ["obj"] = { + ["I"] = { 41771, 41772 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62456 }, + }, + }, + [41709] = { + ["end"] = { + ["U"] = { 62460 }, + }, + ["lvl"] = 29, + ["min"] = 23, + ["obj"] = { + ["I"] = { 41773 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62460 }, + }, + }, + [41710] = { + ["end"] = { + ["U"] = { 62460 }, + }, + ["lvl"] = 30, + ["min"] = 23, + ["obj"] = { + ["I"] = { 11082, 41774, 41775 }, + }, + ["pre"] = { 41709 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62460 }, + }, + }, + [41711] = { + ["end"] = { + ["U"] = { 62460 }, + }, + ["lvl"] = 30, + ["min"] = 23, + ["obj"] = { + ["U"] = { 62355 }, + }, + ["pre"] = { 41710 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62460 }, + }, + }, + [41712] = { + ["end"] = { + ["U"] = { 62144 }, + }, + ["lvl"] = 28, + ["min"] = 22, + ["race"] = 589, + ["start"] = { + ["O"] = { 2020183 }, + }, + }, + [41713] = { + ["end"] = { + ["U"] = { 62582 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 41781 }, + }, + ["start"] = { + ["U"] = { 62582 }, + }, + }, + [41714] = { + ["end"] = { + ["U"] = { 62582 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 16203, 20725, 61673, 61674 }, + }, + ["pre"] = { 41713 }, + ["start"] = { + ["U"] = { 62582 }, + }, + }, + [41715] = { + ["class"] = 64, + ["end"] = { + ["U"] = { 13417 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 8258 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 13417 }, + }, + }, + [41716] = { + ["end"] = { + ["U"] = { 62434 }, + }, + ["lvl"] = 33, + ["min"] = 28, + ["race"] = 434, + ["start"] = { + ["U"] = { 62433 }, + }, + }, + [41717] = { + ["end"] = { + ["U"] = { 62434 }, + }, + ["lvl"] = 33, + ["min"] = 28, + ["obj"] = { + ["I"] = { 41782 }, + }, + ["pre"] = { 41716 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62434 }, + }, + }, + [41718] = { + ["end"] = { + ["U"] = { 62433 }, + }, + ["lvl"] = 33, + ["min"] = 30, + ["pre"] = { 41717 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62434 }, + }, + }, + [41719] = { + ["end"] = { + ["U"] = { 62433 }, + }, + ["lvl"] = 36, + ["min"] = 30, + ["obj"] = { + ["I"] = { 41783 }, + }, + ["pre"] = { 41718 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62433 }, + }, + }, + [41720] = { + ["end"] = { + ["U"] = { 62434 }, + }, + ["lvl"] = 36, + ["min"] = 30, + ["obj"] = { + ["I"] = { 41784 }, + }, + ["pre"] = { 41718 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62434 }, + }, + }, + [41721] = { + ["end"] = { + ["U"] = { 62433 }, + }, + ["lvl"] = 38, + ["min"] = 30, + ["obj"] = { + ["U"] = { 62220, 62221, 62222 }, + }, + ["pre"] = { 41719 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62433 }, + }, + }, + [41722] = { + ["end"] = { + ["U"] = { 62429 }, + }, + ["lvl"] = 34, + ["min"] = 30, + ["obj"] = { + ["I"] = { 41788 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62429 }, + }, + }, + [41723] = { + ["end"] = { + ["U"] = { 62425 }, + }, + ["lvl"] = 36, + ["min"] = 30, + ["obj"] = { + ["U"] = { 62250, 62251 }, + }, + ["race"] = 434, + ["start"] = { + ["O"] = { 2020168 }, + }, + }, + [41724] = { + ["end"] = { + ["U"] = { 62426 }, + }, + ["lvl"] = 36, + ["min"] = 30, + ["obj"] = { + ["U"] = { 62218 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62426 }, + }, + }, + [41725] = { + ["end"] = { + ["U"] = { 62431 }, + }, + ["lvl"] = 36, + ["min"] = 30, + ["obj"] = { + ["I"] = { 41791 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62431 }, + }, + }, + [41726] = { + ["end"] = { + ["U"] = { 62431 }, + }, + ["lvl"] = 36, + ["min"] = 30, + ["obj"] = { + ["I"] = { 41792 }, + }, + ["pre"] = { 41725 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62431 }, + }, + }, + [41727] = { + ["end"] = { + ["U"] = { 62432 }, + }, + ["lvl"] = 33, + ["min"] = 30, + ["obj"] = { + ["I"] = { 41795 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62432 }, + }, + }, + [41728] = { + ["end"] = { + ["U"] = { 62432 }, + }, + ["lvl"] = 38, + ["min"] = 30, + ["obj"] = { + ["I"] = { 41813, 41814 }, + }, + ["pre"] = { 41727 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62432 }, + }, + }, + [41729] = { + ["end"] = { + ["U"] = { 62432 }, + }, + ["lvl"] = 38, + ["min"] = 30, + ["obj"] = { + ["I"] = { 41796 }, + }, + ["pre"] = { 41728 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62432 }, + }, + }, + [41730] = { + ["end"] = { + ["U"] = { 62432 }, + }, + ["lvl"] = 38, + ["min"] = 30, + ["obj"] = { + ["I"] = { 41797 }, + }, + ["pre"] = { 41729 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62432 }, + }, + }, + [41731] = { + ["end"] = { + ["U"] = { 62432 }, + }, + ["lvl"] = 38, + ["min"] = 30, + ["obj"] = { + ["U"] = { 60079 }, + }, + ["pre"] = { 41730 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62432 }, + }, + }, + [41732] = { + ["end"] = { + ["U"] = { 62416 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["I"] = {}, + }, + ["race"] = 589, + ["start"] = { + ["I"] = { 41799 }, + }, + }, + [41733] = { + ["end"] = { + ["U"] = { 62416 }, + }, + ["lvl"] = 44, + ["min"] = 30, + ["obj"] = { + ["I"] = { 10558, 41800 }, + }, + ["pre"] = { 41732 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62416 }, + }, + }, + [41734] = { + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["I"] = {}, + }, + ["race"] = 434, + ["start"] = { + ["I"] = { 41802 }, + }, + }, + [41735] = { + ["end"] = { + ["U"] = { 62429 }, + }, + ["lvl"] = 33, + ["min"] = 28, + ["obj"] = { + ["I"] = { 41805 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62568 }, + }, + }, + [41736] = { + ["end"] = { + ["U"] = { 62442 }, + }, + ["lvl"] = 36, + ["min"] = 30, + ["obj"] = { + ["I"] = { 41806 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62442 }, + }, + }, + [41737] = { + ["end"] = { + ["U"] = { 62442 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["obj"] = { + ["I"] = { 41807 }, + }, + ["pre"] = { 41736 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62442 }, + }, + }, + [41738] = { + ["end"] = { + ["U"] = { 62442 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["obj"] = { + ["I"] = { 41808, 41809, 41810 }, + }, + ["pre"] = { 41737 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62442 }, + }, + }, + [41739] = { + ["end"] = { + ["U"] = { 62422 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["pre"] = { 41738 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62442 }, + }, + }, + [41740] = { + ["end"] = { + ["U"] = { 62422 }, + }, + ["lvl"] = 38, + ["min"] = 30, + ["obj"] = { + ["I"] = { 41811 }, + }, + ["pre"] = { 41739 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62422 }, + }, + }, + [41741] = { + ["end"] = { + ["U"] = { 62442 }, + }, + ["lvl"] = 38, + ["min"] = 30, + ["pre"] = { 41740 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62422 }, + }, + }, + [41742] = { + ["end"] = { + ["U"] = { 62442 }, + }, + ["lvl"] = 38, + ["min"] = 30, + ["obj"] = { + ["U"] = { 62585 }, + }, + ["pre"] = { 41741 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62442 }, + }, + }, + [41743] = { + ["end"] = { + ["U"] = { 62611 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 41820 }, + }, + ["start"] = { + ["U"] = { 62611 }, + }, + }, + [41744] = { + ["end"] = { + ["U"] = { 62611 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 41820 }, + }, + ["start"] = { + ["U"] = { 62611 }, + }, + }, + [41745] = { + ["end"] = { + ["U"] = { 61512 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 60080 }, + }, + ["pre"] = { 41394 }, + ["start"] = { + ["U"] = { 61512 }, + }, + }, + [41746] = { + ["end"] = { + ["U"] = { 62634 }, + }, + ["lvl"] = 9, + ["min"] = 4, + ["obj"] = { + ["I"] = { 41821 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62634 }, + }, + }, + [41747] = { + ["end"] = { + ["U"] = { 62634 }, + }, + ["lvl"] = 6, + ["min"] = 4, + ["race"] = 589, + ["start"] = { + ["U"] = { 328 }, + }, + }, + [41748] = { + ["end"] = { + ["U"] = { 313 }, + }, + ["lvl"] = 13, + ["min"] = 5, + ["obj"] = { + ["I"] = { 41823 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 313 }, + }, + }, + [41749] = { + ["end"] = { + ["U"] = { 8305 }, + }, + ["lvl"] = 28, + ["min"] = 22, + ["obj"] = { + ["I"] = { 41825 }, + }, + ["start"] = { + ["U"] = { 8305 }, + }, + }, + [41750] = { + ["end"] = { + ["U"] = { 62636 }, + }, + ["lvl"] = 28, + ["min"] = 20, + ["obj"] = { + ["I"] = { 41829 }, + }, + ["start"] = { + ["U"] = { 62636 }, + }, + }, + [41751] = { + ["end"] = { + ["U"] = { 62637 }, + }, + ["lvl"] = 34, + ["min"] = 24, + ["obj"] = { + ["U"] = { 62041, 62072 }, + }, + ["start"] = { + ["U"] = { 62637 }, + }, + }, + [41752] = { + ["end"] = { + ["U"] = { 62638 }, + }, + ["lvl"] = 27, + ["min"] = 21, + ["obj"] = { + ["I"] = { 41834 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62638 }, + }, + }, + [41753] = { + ["end"] = { + ["U"] = { 2402 }, + }, + ["lvl"] = 30, + ["min"] = 24, + ["obj"] = { + ["I"] = { 41835 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2402 }, + }, + }, + [41754] = { + ["end"] = { + ["U"] = { 8256 }, + }, + ["lvl"] = 28, + ["min"] = 22, + ["race"] = 589, + ["start"] = { + ["O"] = { 2020198 }, + }, + }, + [41755] = { + ["end"] = { + ["U"] = { 61010 }, + }, + ["lvl"] = 28, + ["min"] = 22, + ["pre"] = { 41754 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 8256 }, + }, + }, + [41756] = { + ["end"] = { + ["U"] = { 2104 }, + }, + ["lvl"] = 29, + ["min"] = 21, + ["obj"] = { + ["U"] = { 62051 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2104 }, + }, + }, + [41757] = { + ["end"] = { + ["U"] = { 2104 }, + }, + ["lvl"] = 31, + ["min"] = 23, + ["obj"] = { + ["I"] = { 41841 }, + }, + ["pre"] = { 474 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2104 }, + }, + }, + [41758] = { + ["end"] = { + ["U"] = { 3036 }, + }, + ["lvl"] = 32, + ["min"] = 25, + ["obj"] = { + ["I"] = { 41853 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3036 }, + }, + }, + [41759] = { + ["end"] = { + ["U"] = { 61151 }, + }, + ["lvl"] = 31, + ["min"] = 25, + ["obj"] = { + ["I"] = { 41856 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 61151 }, + }, + }, + [41760] = { + ["end"] = { + ["U"] = { 62467 }, + }, + ["lvl"] = 34, + ["min"] = 28, + ["obj"] = { + ["I"] = { 41857 }, + }, + ["start"] = { + ["U"] = { 62467 }, + }, + }, + [41761] = { + ["end"] = { + ["U"] = { 62455 }, + }, + ["lvl"] = 33, + ["min"] = 21, + ["obj"] = { + ["I"] = { 41858 }, + ["U"] = { 62565, 62566 }, + }, + ["pre"] = { 41699 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62455 }, + }, + }, + [41762] = { + ["end"] = { + ["U"] = { 62684 }, + }, + ["lvl"] = 50, + ["min"] = 44, + ["obj"] = { + ["O"] = { 2020225, 2020226, 2020227, 2020228 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62684 }, + }, + }, + [41763] = { + ["end"] = { + ["U"] = { 62623 }, + }, + ["lvl"] = 51, + ["min"] = 45, + ["obj"] = { + ["I"] = { 41860 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62623 }, + }, + }, + [41764] = { + ["end"] = { + ["U"] = { 62627 }, + }, + ["lvl"] = 51, + ["min"] = 45, + ["obj"] = { + ["O"] = { 2020225, 2020226, 2020227, 2020228 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62627 }, + }, + }, + [41765] = { + ["end"] = { + ["U"] = { 62681 }, + }, + ["lvl"] = 51, + ["min"] = 45, + ["obj"] = { + ["U"] = { 62613, 62614, 62617 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62681 }, + }, + }, + [41766] = { + ["end"] = { + ["U"] = { 62681 }, + }, + ["lvl"] = 53, + ["min"] = 45, + ["obj"] = { + ["I"] = { 41861 }, + }, + ["pre"] = { 41765 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62681 }, + }, + }, + [41767] = { + ["end"] = { + ["U"] = { 80178 }, + }, + ["lvl"] = 53, + ["min"] = 45, + ["pre"] = { 41766 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62681 }, + }, + }, + [41768] = { + ["end"] = { + ["U"] = { 1749, 62682 }, + }, + ["lvl"] = 32, + ["min"] = 26, + ["obj"] = { + ["I"] = { 41864, 41865, 41866 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62165 }, + }, + }, + [41769] = { + ["end"] = { + ["U"] = { 62700 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 41867 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62700 }, + }, + }, + [41770] = { + ["end"] = { + ["U"] = { 62700 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 41870 }, + }, + ["pre"] = { 41769 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62700 }, + }, + }, + [41771] = { + ["end"] = { + ["U"] = { 62700 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 41871 }, + }, + ["pre"] = { 41770 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62700 }, + }, + }, + [41772] = { + ["end"] = { + ["U"] = { 62700 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 41872 }, + }, + ["pre"] = { 41770 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62700 }, + }, + }, + [41773] = { + ["end"] = { + ["U"] = { 62700 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["I"] = { 41873 }, + }, + ["pre"] = { 41770 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62700 }, + }, + }, + [41774] = { + ["end"] = { + ["O"] = { 2020220 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["obj"] = { + ["I"] = { 41874, 41875 }, + }, + ["start"] = { + ["O"] = { 2020220 }, + }, + }, + [41775] = { + ["end"] = { + ["U"] = { 14381 }, + }, + ["lvl"] = 60, + ["min"] = 54, + ["obj"] = { + ["I"] = { 41877 }, + }, + ["start"] = { + ["U"] = { 14381 }, + }, + }, + [41776] = { + ["end"] = { + ["U"] = { 14381 }, + }, + ["lvl"] = 60, + ["min"] = 54, + ["obj"] = { + ["I"] = { 20725 }, + }, + ["pre"] = { 41775 }, + ["start"] = { + ["U"] = { 14381 }, + }, + }, + [41777] = { + ["end"] = { + ["U"] = { 14381 }, + }, + ["lvl"] = 60, + ["min"] = 54, + ["obj"] = { + ["I"] = { 14344 }, + }, + ["pre"] = { 41775 }, + ["start"] = { + ["U"] = { 14381 }, + }, + }, + [41778] = { + ["end"] = { + ["U"] = { 14383 }, + }, + ["lvl"] = 60, + ["min"] = 54, + ["obj"] = { + ["I"] = { 11737 }, + }, + ["start"] = { + ["U"] = { 14383 }, + }, + }, + [41779] = { + ["end"] = { + ["U"] = { 14383 }, + }, + ["lvl"] = 60, + ["min"] = 54, + ["obj"] = { + ["I"] = { 11733 }, + }, + ["start"] = { + ["U"] = { 14383 }, + }, + }, + [41780] = { + ["end"] = { + ["U"] = { 14383 }, + }, + ["lvl"] = 60, + ["min"] = 54, + ["obj"] = { + ["I"] = { 11736 }, + }, + ["start"] = { + ["U"] = { 14383 }, + }, + }, + [41781] = { + ["end"] = { + ["U"] = { 14383 }, + }, + ["lvl"] = 60, + ["min"] = 54, + ["obj"] = { + ["I"] = { 11732 }, + }, + ["start"] = { + ["U"] = { 14383 }, + }, + }, + [41782] = { + ["end"] = { + ["U"] = { 14383 }, + }, + ["lvl"] = 60, + ["min"] = 54, + ["obj"] = { + ["I"] = { 11734 }, + }, + ["start"] = { + ["U"] = { 14383 }, + }, + }, + [41783] = { + ["end"] = { + ["U"] = { 62458 }, + }, + ["lvl"] = 30, + ["min"] = 24, + ["obj"] = { + ["I"] = { 41883, 41884, 41885 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62458 }, + }, + }, + [41784] = { + ["end"] = { + ["U"] = { 62708 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["start"] = { + ["U"] = { 62708 }, + }, + }, + [41785] = { + ["end"] = { + ["U"] = { 62637 }, + }, + ["lvl"] = 30, + ["min"] = 24, + ["obj"] = { + ["I"] = {}, + }, + ["start"] = { + ["I"] = { 41895 }, + }, + }, + [41786] = { + ["end"] = { + ["U"] = { 62710 }, + }, + ["lvl"] = 30, + ["min"] = 24, + ["race"] = 589, + ["start"] = { + ["U"] = { 62462 }, + }, + }, + [41787] = { + ["end"] = { + ["U"] = { 62455 }, + }, + ["lvl"] = 38, + ["min"] = 21, + ["obj"] = { + ["U"] = { 62671, 62673 }, + }, + ["pre"] = { 41761 }, + ["start"] = { + ["U"] = { 62455 }, + }, + }, + [41788] = { + ["end"] = { + ["U"] = { 62718 }, + }, + ["lvl"] = 11, + ["min"] = 8, + ["start"] = { + ["U"] = { 2081 }, + }, + }, + [41789] = { + ["end"] = { + ["U"] = { 62718 }, + }, + ["lvl"] = 11, + ["min"] = 8, + ["obj"] = { + ["I"] = { 41896 }, + }, + ["pre"] = { 41788 }, + ["start"] = { + ["U"] = { 62718 }, + }, + }, + [41790] = { + ["end"] = { + ["U"] = { 62718 }, + }, + ["lvl"] = 11, + ["min"] = 8, + ["obj"] = { + ["I"] = { 41897 }, + }, + ["pre"] = { 41789 }, + ["start"] = { + ["U"] = { 62718 }, + }, + }, + [41791] = { + ["end"] = { + ["U"] = { 62433 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["race"] = 434, + ["start"] = { + ["U"] = { 4485 }, + }, + }, + [41792] = { + ["end"] = { + ["U"] = { 62425 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["race"] = 434, + ["start"] = { + ["U"] = { 2818 }, + }, + }, + [41793] = { + ["end"] = { + ["U"] = { 62433 }, + }, + ["lvl"] = 30, + ["min"] = 25, + ["race"] = 434, + ["start"] = { + ["U"] = { 1068 }, + }, + }, + [41794] = { + ["end"] = { + ["U"] = { 62570 }, + }, + ["lvl"] = 28, + ["min"] = 22, + ["race"] = 434, + ["start"] = { + ["U"] = { 2465 }, + }, + }, + [41795] = { + ["end"] = { + ["U"] = { 62590 }, + }, + ["lvl"] = 28, + ["min"] = 22, + ["race"] = 434, + ["start"] = { + ["U"] = { 4949 }, + }, + }, + [41796] = { + ["end"] = { + ["U"] = { 62473 }, + }, + ["lvl"] = 28, + ["min"] = 22, + ["race"] = 589, + ["start"] = { + ["U"] = { 62719 }, + }, + }, + [41797] = { + ["end"] = { + ["U"] = { 62307 }, + }, + ["lvl"] = 28, + ["min"] = 22, + ["race"] = 589, + ["start"] = { + ["U"] = { 228 }, + }, + }, + [41798] = { + ["end"] = { + ["U"] = { 62455 }, + }, + ["lvl"] = 28, + ["min"] = 22, + ["race"] = 589, + ["start"] = { + ["U"] = { 62720 }, + }, + }, + [41799] = { + ["end"] = { + ["U"] = { 62460 }, + }, + ["lvl"] = 28, + ["min"] = 22, + ["race"] = 589, + ["start"] = { + ["U"] = { 60936 }, + }, + }, + [41800] = { + ["end"] = { + ["U"] = { 62422 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["obj"] = { + ["U"] = { 62235, 62236 }, + }, + ["start"] = { + ["U"] = { 62422 }, + }, + }, + [41801] = { + ["end"] = { + ["U"] = { 62421 }, + }, + ["lvl"] = 38, + ["min"] = 30, + ["pre"] = { 41800 }, + ["start"] = { + ["U"] = { 62422 }, + }, + }, + [41802] = { + ["end"] = { + ["U"] = { 62421 }, + }, + ["lvl"] = 39, + ["min"] = 30, + ["obj"] = { + ["A"] = { 700, 5602 }, + }, + ["pre"] = { 41801 }, + ["start"] = { + ["U"] = { 62421 }, + }, + }, + [41803] = { + ["end"] = { + ["U"] = { 62421 }, + }, + ["lvl"] = 39, + ["min"] = 30, + ["obj"] = { + ["U"] = { 60081 }, + }, + ["pre"] = { 41802 }, + ["start"] = { + ["U"] = { 62421 }, + }, + }, + [41804] = { + ["end"] = { + ["U"] = { 62421 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["obj"] = { + ["I"] = { 41906 }, + }, + ["pre"] = { 41803 }, + ["start"] = { + ["U"] = { 62421 }, + }, + }, + [41805] = { + ["end"] = { + ["U"] = { 62421 }, + }, + ["lvl"] = 40, + ["min"] = 30, + ["obj"] = { + ["I"] = { 41907 }, + }, + ["pre"] = { 41804 }, + ["start"] = { + ["U"] = { 62421 }, + }, + }, + [41806] = { + ["end"] = { + ["U"] = { 7406 }, + }, + ["lvl"] = 42, + ["min"] = 30, + ["pre"] = { 41805 }, + ["start"] = { + ["U"] = { 62421 }, + }, + }, + [41807] = { + ["end"] = { + ["U"] = { 7406 }, + }, + ["lvl"] = 42, + ["min"] = 30, + ["obj"] = { + ["I"] = { 4375, 4382, 10505, 41908 }, + }, + ["pre"] = { 41806 }, + ["start"] = { + ["U"] = { 7406 }, + }, + }, + [41808] = { + ["end"] = { + ["U"] = { 62421 }, + }, + ["lvl"] = 43, + ["min"] = 30, + ["pre"] = { 41807 }, + ["start"] = { + ["U"] = { 7406 }, + }, + }, + [41809] = { + ["end"] = { + ["U"] = { 62421 }, + }, + ["lvl"] = 44, + ["min"] = 30, + ["obj"] = { + ["U"] = { 62725 }, + }, + ["pre"] = { 41808 }, + ["start"] = { + ["U"] = { 62421 }, + }, + }, + [41810] = { + ["end"] = { + ["U"] = { 61528 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61198 }, + }, + ["pre"] = { 40990 }, + ["start"] = { + ["U"] = { 61528 }, + }, + }, + [41811] = { + ["end"] = { + ["U"] = { 62726 }, + }, + ["lvl"] = 46, + ["min"] = 40, + ["obj"] = { + ["U"] = { 62495 }, + }, + ["start"] = { + ["U"] = { 62726 }, + }, + }, + [41812] = { + ["end"] = { + ["U"] = { 62727 }, + }, + ["lvl"] = 26, + ["min"] = 18, + ["obj"] = { + ["I"] = { 41918 }, + }, + ["start"] = { + ["U"] = { 62727 }, + }, + }, + [41813] = { + ["end"] = { + ["U"] = { 62470 }, + }, + ["lvl"] = 30, + ["min"] = 24, + ["obj"] = { + ["I"] = { 41920 }, + }, + ["start"] = { + ["U"] = { 62470 }, + }, + }, + [41814] = { + ["end"] = { + ["U"] = { 62470 }, + }, + ["lvl"] = 34, + ["min"] = 28, + ["obj"] = { + ["I"] = { 41921 }, + }, + ["start"] = { + ["U"] = { 62470 }, + }, + }, + [41815] = { + ["end"] = { + ["U"] = { 62571 }, + }, + ["lvl"] = 31, + ["min"] = 25, + ["obj"] = { + ["I"] = { 41922 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62571 }, + }, + }, + [41816] = { + ["end"] = { + ["U"] = { 62589 }, + }, + ["lvl"] = 31, + ["min"] = 25, + ["obj"] = { + ["I"] = { 41923 }, + ["U"] = { 62345 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62589 }, + }, + }, + [41817] = { + ["end"] = { + ["U"] = { 62589 }, + }, + ["lvl"] = 32, + ["min"] = 26, + ["obj"] = { + ["U"] = { 62342, 62343 }, + }, + ["pre"] = { 41816 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62589 }, + }, + }, + [41818] = { + ["end"] = { + ["U"] = { 62589 }, + }, + ["lvl"] = 31, + ["min"] = 25, + ["obj"] = { + ["U"] = { 62338, 62339 }, + }, + ["pre"] = { 41817 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62589 }, + }, + }, + [41819] = { + ["end"] = { + ["U"] = { 62586 }, + }, + ["lvl"] = 31, + ["min"] = 25, + ["obj"] = { + ["I"] = { 41924 }, + ["U"] = { 62346, 62347, 62728 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62586 }, + }, + }, + [41820] = { + ["end"] = { + ["U"] = { 10540 }, + }, + ["lvl"] = 31, + ["min"] = 25, + ["pre"] = { 41819 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62586 }, + }, + }, + [41821] = { + ["end"] = { + ["U"] = { 62586 }, + }, + ["lvl"] = 34, + ["min"] = 28, + ["obj"] = { + ["U"] = { 62670 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62586 }, + }, + }, + [41822] = { + ["end"] = { + ["U"] = { 62588 }, + }, + ["lvl"] = 31, + ["min"] = 25, + ["obj"] = { + ["U"] = { 62356 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62588 }, + }, + }, + [41823] = { + ["end"] = { + ["U"] = { 62588 }, + }, + ["lvl"] = 33, + ["min"] = 27, + ["obj"] = { + ["I"] = { 41925 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62588 }, + }, + }, + [41824] = { + ["end"] = { + ["U"] = { 62588 }, + }, + ["lvl"] = 33, + ["min"] = 27, + ["obj"] = { + ["I"] = { 41926 }, + ["U"] = { 62664 }, + }, + ["pre"] = { 41823 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62588 }, + }, + }, + [41825] = { + ["end"] = { + ["U"] = { 4046 }, + }, + ["lvl"] = 35, + ["min"] = 29, + ["pre"] = { 41824 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62588 }, + }, + }, + [41826] = { + ["end"] = { + ["U"] = { 62587 }, + }, + ["lvl"] = 31, + ["min"] = 25, + ["obj"] = { + ["U"] = { 62321, 62324, 62325, 62326 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62587 }, + }, + }, + [41827] = { + ["end"] = { + ["U"] = { 62710 }, + }, + ["lvl"] = 31, + ["min"] = 25, + ["race"] = 434, + ["start"] = { + ["U"] = { 62587 }, + }, + }, + [41828] = { + ["end"] = { + ["U"] = { 62590 }, + }, + ["lvl"] = 30, + ["min"] = 24, + ["obj"] = { + ["U"] = { 62525 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62590 }, + }, + }, + [41829] = { + ["end"] = { + ["U"] = { 62590 }, + }, + ["lvl"] = 32, + ["min"] = 26, + ["obj"] = { + ["I"] = { 41927 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62590 }, + }, + }, + [41830] = { + ["end"] = { + ["U"] = { 62590 }, + }, + ["lvl"] = 31, + ["min"] = 25, + ["obj"] = { + ["U"] = { 62322, 62323, 62357 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62590 }, + }, + }, + [41831] = { + ["end"] = { + ["U"] = { 62590 }, + }, + ["lvl"] = 33, + ["min"] = 27, + ["obj"] = { + ["U"] = { 62358, 62359, 62361, 62362 }, + }, + ["pre"] = { 41830 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62590 }, + }, + }, + [41832] = { + ["end"] = { + ["U"] = { 62590 }, + }, + ["lvl"] = 35, + ["min"] = 29, + ["obj"] = { + ["U"] = { 62365, 62366, 62522, 62564 }, + }, + ["pre"] = { 41831 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62590 }, + }, + }, + [41833] = { + ["end"] = { + ["U"] = { 62590 }, + }, + ["lvl"] = 38, + ["min"] = 32, + ["obj"] = { + ["U"] = { 62547, 62548, 62671 }, + }, + ["pre"] = { 41832 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62590 }, + }, + }, + [41834] = { + ["end"] = { + ["U"] = { 4949 }, + }, + ["lvl"] = 38, + ["min"] = 32, + ["pre"] = { 41833 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62590 }, + }, + }, + [41835] = { + ["end"] = { + ["U"] = { 62710 }, + }, + ["lvl"] = 32, + ["min"] = 26, + ["obj"] = { + ["U"] = { 62314, 62315, 62316 }, + }, + ["start"] = { + ["U"] = { 62710 }, + }, + }, + [41836] = { + ["end"] = { + ["U"] = { 62710 }, + }, + ["lvl"] = 33, + ["min"] = 27, + ["obj"] = { + ["I"] = { 41928, 41929 }, + ["U"] = { 62317 }, + }, + ["start"] = { + ["U"] = { 62710 }, + }, + }, + [41837] = { + ["end"] = { + ["U"] = { 62466, 62710 }, + }, + ["lvl"] = 33, + ["min"] = 27, + ["obj"] = { + ["I"] = { 41983 }, + ["U"] = { 62751 }, + }, + ["pre"] = { 41836 }, + ["start"] = { + ["U"] = { 62710 }, + }, + }, + [41838] = { + ["end"] = { + ["U"] = { 62682 }, + }, + ["lvl"] = 51, + ["min"] = 45, + ["obj"] = { + ["U"] = { 62612 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62683 }, + }, + }, + [41840] = { + ["end"] = { + ["U"] = { 62489 }, + }, + ["lvl"] = 38, + ["min"] = 32, + ["obj"] = { + ["I"] = {}, + }, + ["race"] = 589, + ["start"] = { + ["I"] = { 41938 }, + }, + }, + [41841] = { + ["end"] = { + ["U"] = { 10181 }, + }, + ["lvl"] = 38, + ["min"] = 32, + ["obj"] = { + ["I"] = {}, + }, + ["pre"] = { 544 }, + ["race"] = 434, + ["start"] = { + ["I"] = { 41939 }, + }, + }, + [41842] = { + ["end"] = { + ["U"] = { 62458 }, + }, + ["lvl"] = 35, + ["min"] = 29, + ["obj"] = { + ["I"] = { 41940 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62458 }, + }, + }, + [41843] = { + ["end"] = { + ["U"] = { 62457 }, + }, + ["lvl"] = 35, + ["min"] = 29, + ["obj"] = { + ["U"] = { 62537, 62548, 62551 }, + }, + ["pre"] = { 41761 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62457 }, + }, + }, + [41844] = { + ["end"] = { + ["U"] = { 62520 }, + }, + ["lvl"] = 34, + ["min"] = 28, + ["obj"] = { + ["I"] = { 41941 }, + }, + ["start"] = { + ["U"] = { 62520 }, + }, + }, + [41845] = { + ["end"] = { + ["U"] = { 62730 }, + }, + ["lvl"] = 38, + ["min"] = 32, + ["obj"] = { + ["I"] = { 41942 }, + }, + ["start"] = { + ["U"] = { 62730 }, + }, + }, + [41846] = { + ["end"] = { + ["U"] = { 62395 }, + }, + ["lvl"] = 32, + ["min"] = 28, + ["start"] = { + ["U"] = { 1274 }, + }, + }, + [41847] = { + ["end"] = { + ["U"] = { 62734 }, + }, + ["lvl"] = 34, + ["min"] = 28, + ["start"] = { + ["U"] = { 61799 }, + }, + }, + [41848] = { + ["end"] = { + ["U"] = { 62734 }, + }, + ["lvl"] = 36, + ["min"] = 28, + ["obj"] = { + ["A"] = { 701, 5601 }, + }, + ["pre"] = { 41847 }, + ["start"] = { + ["U"] = { 62734 }, + }, + }, + [41849] = { + ["end"] = { + ["U"] = { 62734 }, + }, + ["lvl"] = 36, + ["min"] = 28, + ["obj"] = { + ["I"] = { 41945 }, + }, + ["pre"] = { 41848 }, + ["start"] = { + ["U"] = { 62734 }, + }, + }, + [41850] = { + ["end"] = { + ["U"] = { 62414 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["I"] = { 41948 }, + }, + ["start"] = { + ["U"] = { 62414 }, + }, + }, + [41851] = { + ["end"] = { + ["U"] = { 62414 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["I"] = { 41949 }, + }, + ["pre"] = { 41850 }, + ["start"] = { + ["U"] = { 62414 }, + }, + }, + [41852] = { + ["end"] = { + ["U"] = { 62406 }, + }, + ["lvl"] = 38, + ["min"] = 30, + ["obj"] = { + ["I"] = { 41950 }, + }, + ["start"] = { + ["U"] = { 62406 }, + }, + }, + [41853] = { + ["end"] = { + ["U"] = { 62405 }, + }, + ["lvl"] = 38, + ["min"] = 30, + ["obj"] = { + ["I"] = { 41951 }, + }, + ["start"] = { + ["U"] = { 62405 }, + }, + }, + [41854] = { + ["end"] = { + ["U"] = { 62405 }, + }, + ["lvl"] = 36, + ["min"] = 30, + ["obj"] = { + ["I"] = {}, + }, + ["race"] = 589, + ["start"] = { + ["I"] = { 41954 }, + }, + }, + [41855] = { + ["end"] = { + ["U"] = { 62411 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["U"] = { 62228, 62232 }, + }, + ["start"] = { + ["U"] = { 62411 }, + }, + }, + [41856] = { + ["end"] = { + ["U"] = { 62411 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["obj"] = { + ["U"] = { 62231, 62233 }, + }, + ["pre"] = { 41855 }, + ["start"] = { + ["U"] = { 62411 }, + }, + }, + [41857] = { + ["end"] = { + ["U"] = { 62397 }, + }, + ["lvl"] = 33, + ["min"] = 28, + ["obj"] = { + ["I"] = { 41957 }, + }, + ["start"] = { + ["U"] = { 62397 }, + }, + }, + [41858] = { + ["end"] = { + ["U"] = { 62397 }, + }, + ["lvl"] = 35, + ["min"] = 28, + ["obj"] = { + ["U"] = { 62241, 62242, 62244 }, + }, + ["pre"] = { 41857 }, + ["start"] = { + ["U"] = { 62397 }, + }, + }, + [41859] = { + ["end"] = { + ["O"] = { 2020241 }, + }, + ["lvl"] = 28, + ["min"] = 22, + ["race"] = 589, + ["start"] = { + ["O"] = { 2020240 }, + }, + }, + [41860] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 62741 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 41398 }, + ["start"] = { + ["U"] = { 12042 }, + }, + }, + [41861] = { + ["class"] = 1024, + ["end"] = { + ["U"] = { 62741 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 41860 }, + ["start"] = { + ["U"] = { 62741 }, + }, + }, + [41862] = { + ["end"] = { + ["U"] = { 62386 }, + }, + ["lvl"] = 32, + ["min"] = 28, + ["start"] = { + ["U"] = { 62395 }, + }, + }, + [41863] = { + ["end"] = { + ["U"] = { 62386 }, + }, + ["lvl"] = 33, + ["min"] = 28, + ["obj"] = { + ["I"] = { 41962 }, + }, + ["pre"] = { 41862 }, + ["start"] = { + ["U"] = { 62386 }, + }, + }, + [41864] = { + ["end"] = { + ["U"] = { 62386 }, + }, + ["lvl"] = 33, + ["min"] = 28, + ["obj"] = { + ["I"] = { 41963 }, + }, + ["pre"] = { 41863 }, + ["start"] = { + ["U"] = { 62386 }, + }, + }, + [41865] = { + ["end"] = { + ["U"] = { 62386 }, + }, + ["lvl"] = 35, + ["min"] = 28, + ["obj"] = { + ["U"] = { 62213, 62214, 62215, 62743 }, + }, + ["pre"] = { 41864 }, + ["start"] = { + ["U"] = { 62386 }, + }, + }, + [41866] = { + ["end"] = { + ["U"] = { 62412 }, + }, + ["lvl"] = 36, + ["min"] = 28, + ["obj"] = { + ["I"] = { 41965 }, + }, + ["start"] = { + ["U"] = { 62412 }, + }, + }, + [41867] = { + ["end"] = { + ["U"] = { 62422 }, + }, + ["lvl"] = 33, + ["min"] = 28, + ["obj"] = { + ["I"] = { 41969 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62422 }, + }, + }, + [41868] = { + ["end"] = { + ["U"] = { 62395, 62422 }, + }, + ["lvl"] = 34, + ["min"] = 28, + ["obj"] = { + ["I"] = { 41970 }, + }, + ["pre"] = { 41867 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62422 }, + }, + }, + [41869] = { + ["end"] = { + ["U"] = { 62399 }, + }, + ["lvl"] = 34, + ["min"] = 28, + ["obj"] = { + ["U"] = { 62223, 62224 }, + }, + ["start"] = { + ["U"] = { 62399 }, + }, + }, + [41870] = { + ["end"] = { + ["U"] = { 62399 }, + }, + ["lvl"] = 36, + ["min"] = 28, + ["obj"] = { + ["U"] = { 62225 }, + }, + ["pre"] = { 41869 }, + ["start"] = { + ["U"] = { 62399 }, + }, + }, + [41871] = { + ["end"] = { + ["U"] = { 62395 }, + }, + ["lvl"] = 32, + ["min"] = 28, + ["start"] = { + ["U"] = { 62400 }, + }, + }, + [41872] = { + ["end"] = { + ["U"] = { 62388 }, + }, + ["lvl"] = 32, + ["min"] = 28, + ["obj"] = { + ["I"] = { 41972 }, + }, + ["start"] = { + ["U"] = { 62388 }, + }, + }, + [41873] = { + ["end"] = { + ["U"] = { 62391 }, + }, + ["lvl"] = 36, + ["min"] = 28, + ["obj"] = { + ["I"] = {}, + }, + ["start"] = { + ["I"] = { 41974 }, + }, + }, + [41874] = { + ["end"] = { + ["U"] = { 62390 }, + }, + ["lvl"] = 36, + ["min"] = 28, + ["obj"] = { + ["I"] = { 41976 }, + }, + ["start"] = { + ["U"] = { 62390 }, + }, + }, + [41875] = { + ["end"] = { + ["U"] = { 62388 }, + }, + ["lvl"] = 32, + ["min"] = 28, + ["obj"] = { + ["I"] = { 41978 }, + }, + ["start"] = { + ["U"] = { 62388 }, + }, + }, + [41876] = { + ["end"] = { + ["U"] = { 62395 }, + }, + ["lvl"] = 32, + ["min"] = 28, + ["start"] = { + ["U"] = { 62417 }, + }, + }, + [41877] = { + ["end"] = { + ["U"] = { 60925 }, + }, + ["lvl"] = 32, + ["min"] = 28, + ["pre"] = { 41876 }, + ["start"] = { + ["U"] = { 62395 }, + }, + }, + [41878] = { + ["end"] = { + ["U"] = { 62395 }, + }, + ["lvl"] = 32, + ["min"] = 28, + ["pre"] = { 41877 }, + ["start"] = { + ["U"] = { 60925 }, + }, + }, + [41879] = { + ["end"] = { + ["U"] = { 62419 }, + }, + ["lvl"] = 38, + ["min"] = 34, + ["obj"] = { + ["I"] = { 41979 }, + }, + ["start"] = { + ["U"] = { 62419 }, + }, + }, + [41880] = { + ["end"] = { + ["U"] = { 62386 }, + }, + ["lvl"] = 38, + ["min"] = 28, + ["obj"] = { + ["U"] = { 62221, 62222 }, + }, + ["pre"] = { 41865 }, + ["start"] = { + ["U"] = { 62386 }, + }, + }, + [41881] = { + ["end"] = { + ["U"] = { 62388 }, + }, + ["lvl"] = 36, + ["min"] = 28, + ["obj"] = { + ["I"] = { 41973 }, + }, + ["pre"] = { 41872 }, + ["start"] = { + ["U"] = { 62388 }, + }, + }, + [41882] = { + ["end"] = { + ["U"] = { 62395 }, + }, + ["lvl"] = 38, + ["min"] = 28, + ["pre"] = { 41880 }, + ["start"] = { + ["U"] = { 62386 }, + }, + }, + [41883] = { + ["end"] = { + ["U"] = { 62395 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["I"] = {}, + }, + ["race"] = 589, + ["start"] = { + ["I"] = { 41981 }, + }, + }, + [41884] = { + ["end"] = { + ["U"] = { 62395 }, + }, + ["lvl"] = 39, + ["min"] = 30, + ["obj"] = { + ["I"] = { 41712 }, + }, + ["pre"] = { 41883 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62395 }, + }, + }, + [41885] = { + ["end"] = { + ["U"] = { 62698 }, + }, + ["lvl"] = 34, + ["min"] = 28, + ["obj"] = { + ["U"] = { 62258 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62698 }, + }, + }, + [41886] = { + ["end"] = { + ["U"] = { 62752 }, + }, + ["lvl"] = 34, + ["min"] = 28, + ["obj"] = { + ["U"] = { 62248 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 62752 }, + }, + }, + [41887] = { + ["end"] = { + ["U"] = { 61485 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["I"] = { 61199 }, + }, + ["pre"] = { 40873 }, + ["start"] = { + ["U"] = { 61485 }, + }, + }, + [41888] = { + ["end"] = { + ["U"] = { 12481 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 41987 }, + }, + ["start"] = { + ["U"] = { 12481 }, + }, + }, + [41889] = { + ["end"] = { + ["U"] = { 12481 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 41988, 41989 }, + }, + ["start"] = { + ["U"] = { 12481 }, + }, + }, + [41890] = { + ["end"] = { + ["U"] = { 14392 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 41985 }, + }, + ["start"] = { + ["U"] = { 14392 }, + }, + }, + [41891] = { + ["end"] = { + ["U"] = { 14392 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 41987 }, + }, + ["start"] = { + ["U"] = { 14392 }, + }, + }, + [41892] = { + ["end"] = { + ["U"] = { 14392 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 41988, 41989 }, + }, + ["start"] = { + ["U"] = { 14392 }, + }, + }, + [41893] = { + ["end"] = { + ["U"] = { 62390 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["race"] = 589, + ["start"] = { + ["O"] = { 2020252 }, + }, + }, + [41894] = { + ["end"] = { + ["U"] = { 62569 }, + }, + ["lvl"] = 36, + ["min"] = 30, + ["obj"] = { + ["I"] = { 41992 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62569 }, + }, + }, + [41895] = { + ["end"] = { + ["U"] = { 241 }, + }, + ["lvl"] = 6, + ["min"] = 3, + ["obj"] = { + ["I"] = { 41993 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 241 }, + }, + }, + [41896] = { + ["end"] = { + ["U"] = { 62755 }, + }, + ["lvl"] = 38, + ["min"] = 30, + ["obj"] = { + ["I"] = { 41994 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 62755 }, + }, + }, + [41897] = { + ["end"] = { + ["U"] = { 12481 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 41985 }, + }, + ["start"] = { + ["U"] = { 12481 }, + }, + }, + [50000] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 50002 }, + }, + ["lvl"] = 6, + ["min"] = 2, + ["race"] = 434, + ["start"] = { + ["U"] = { 2122, 3155 }, + }, + }, + [50002] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 50002 }, + }, + ["lvl"] = 6, + ["min"] = 2, + ["obj"] = { + ["I"] = { 50063 }, + }, + ["pre"] = { 50000 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 50002 }, + }, + }, + [50003] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 50004 }, + }, + ["lvl"] = 6, + ["min"] = 2, + ["race"] = 589, + ["start"] = { + ["U"] = { 915, 916, 3594 }, + }, + }, + [50004] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 50004 }, + }, + ["lvl"] = 6, + ["min"] = 2, + ["obj"] = { + ["I"] = { 50064 }, + }, + ["pre"] = { 50003 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 50004 }, + }, + }, + [50005] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 50012 }, + }, + ["lvl"] = 42, + ["min"] = 42, + ["start"] = { + ["I"] = { 4158 }, + }, + }, + [50006] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 50012 }, + }, + ["lvl"] = 54, + ["min"] = 54, + ["pre"] = { 50005 }, + ["start"] = { + ["I"] = { 8881 }, + }, + }, + [50227] = { + ["end"] = { + ["O"] = { 7000030 }, + }, + ["start"] = { + ["O"] = { 7000030 }, + }, + }, + [50230] = { + ["lvl"] = 15, + ["min"] = 5, + ["obj"] = { + ["I"] = { 50231, 50232, 50233 }, + }, + }, + [50305] = { + ["end"] = { + ["U"] = { 3191 }, + }, + ["lvl"] = 10, + ["min"] = 8, + ["obj"] = { + ["I"] = { 2924 }, + }, + ["pre"] = { 815 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3191 }, + }, + }, + [50310] = { + ["end"] = { + ["U"] = { 50521 }, + }, + ["lvl"] = 60, + ["min"] = 28, + ["start"] = { + ["U"] = { 50521 }, + }, + }, + [50311] = { + ["end"] = { + ["U"] = { 50521 }, + }, + ["lvl"] = 60, + ["min"] = 28, + ["pre"] = { 50310 }, + ["start"] = { + ["U"] = { 50521 }, + }, + }, + [50312] = { + ["end"] = { + ["U"] = { 50522 }, + }, + ["lvl"] = 60, + ["min"] = 28, + ["start"] = { + ["U"] = { 50522 }, + }, + }, + [50313] = { + ["end"] = { + ["U"] = { 50522 }, + }, + ["lvl"] = 60, + ["min"] = 28, + ["pre"] = { 50312 }, + ["start"] = { + ["U"] = { 50522 }, + }, + }, + [50315] = { + ["end"] = { + ["U"] = { 50530, 50760 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["start"] = { + ["U"] = { 50530, 50760 }, + }, + }, + [50316] = { + ["end"] = { + ["U"] = { 4507 }, + }, + ["lvl"] = 60, + ["min"] = 28, + ["start"] = { + ["U"] = { 4507 }, + }, + }, + [50318] = { + ["end"] = { + ["U"] = { 50660 }, + }, + ["event"] = 2, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 51248 }, + }, + ["start"] = { + ["U"] = { 50660 }, + }, + }, + [50319] = { + ["end"] = { + ["U"] = { 50654 }, + }, + ["event"] = 2, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["U"] = { 60000, 60001, 60002, 60003 }, + }, + ["start"] = { + ["U"] = { 50654 }, + }, + }, + [50320] = { + ["end"] = { + ["U"] = { 50654 }, + }, + ["event"] = 2, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["U"] = { 60004, 60005, 60006, 60007 }, + }, + ["start"] = { + ["U"] = { 50654 }, + }, + }, + [50321] = { + ["end"] = { + ["U"] = { 50662 }, + }, + ["event"] = 2, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["U"] = { 70000, 70001, 70002, 70003 }, + }, + ["start"] = { + ["U"] = { 50662 }, + }, + }, + [50322] = { + ["end"] = { + ["U"] = { 12480 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["U"] = { 70004 }, + }, + ["race"] = 589, + }, + [50323] = { + ["end"] = { + ["U"] = { 14392 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["U"] = { 70005 }, + }, + ["race"] = 434, + }, + [50326] = { + ["end"] = { + ["U"] = { 51254 }, + }, + ["event"] = 2, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 1262 }, + }, + ["start"] = { + ["U"] = { 51254 }, + }, + }, + [50328] = { + ["end"] = { + ["U"] = { 50645 }, + }, + ["event"] = 2, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["U"] = { 70010, 70011 }, + }, + ["start"] = { + ["U"] = { 50645 }, + }, + }, + [50330] = { + ["end"] = { + ["U"] = { 50649 }, + }, + ["event"] = 2, + ["lvl"] = 60, + ["min"] = 40, + ["obj"] = { + ["U"] = { 50112 }, + }, + ["start"] = { + ["U"] = { 50649 }, + }, + }, + [50331] = { + ["end"] = { + ["U"] = { 14392 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["U"] = { 70005 }, + }, + ["race"] = 434, + }, + [50332] = { + ["end"] = { + ["U"] = { 12480 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["U"] = { 70005 }, + }, + ["race"] = 589, + }, + [55000] = { + ["end"] = { + ["U"] = { 91208 }, + }, + ["lvl"] = 9, + ["min"] = 7, + ["obj"] = { + ["I"] = { 81291 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91208 }, + }, + }, + [55001] = { + ["lvl"] = 9, + ["min"] = 7, + ["obj"] = { + ["U"] = { 91193, 91194 }, + }, + ["race"] = 434, + }, + [55002] = { + ["end"] = { + ["U"] = { 91237 }, + }, + ["lvl"] = 6, + ["min"] = 5, + ["race"] = 434, + ["start"] = { + ["U"] = { 3168 }, + }, + }, + [55003] = { + ["end"] = { + ["U"] = { 91214 }, + }, + ["lvl"] = 10, + ["min"] = 7, + ["obj"] = { + ["I"] = { 81292 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91214 }, + }, + }, + [55004] = { + ["lvl"] = 7, + ["min"] = 5, + ["obj"] = { + ["I"] = { 769, 5466 }, + }, + ["race"] = 434, + }, + [55005] = { + ["end"] = { + ["U"] = { 91200 }, + }, + ["lvl"] = 18, + ["min"] = 16, + ["obj"] = { + ["I"] = { 81315 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91200 }, + }, + }, + [55006] = { + ["end"] = { + ["U"] = { 91234 }, + }, + ["lvl"] = 34, + ["min"] = 29, + ["obj"] = { + ["I"] = { 81318 }, + }, + ["pre"] = { 55003 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91234 }, + }, + }, + [55007] = { + ["end"] = { + ["U"] = { 91254 }, + }, + ["lvl"] = 47, + ["min"] = 45, + ["race"] = 434, + ["start"] = { + ["U"] = { 91234 }, + }, + }, + [55008] = { + ["end"] = { + ["U"] = { 91255 }, + }, + ["lvl"] = 47, + ["min"] = 45, + ["pre"] = { 55007 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91254 }, + }, + }, + [55009] = { + ["end"] = { + ["U"] = { 91254 }, + }, + ["lvl"] = 47, + ["min"] = 45, + ["pre"] = { 55008 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91255 }, + }, + }, + [55010] = { + ["end"] = { + ["U"] = { 91254 }, + }, + ["lvl"] = 47, + ["min"] = 45, + ["obj"] = { + ["I"] = { 81312 }, + }, + ["pre"] = { 55009 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91254 }, + }, + }, + [55011] = { + ["lvl"] = 13, + ["min"] = 10, + ["race"] = 434, + }, + [55012] = { + ["lvl"] = 13, + ["min"] = 10, + ["obj"] = { + ["I"] = { 814, 4361, 17019 }, + }, + ["pre"] = { 55011 }, + ["race"] = 434, + }, + [55013] = { + ["lvl"] = 13, + ["min"] = 10, + ["pre"] = { 55012 }, + ["race"] = 434, + }, + [55014] = { + ["end"] = { + ["U"] = { 91254 }, + }, + ["lvl"] = 49, + ["min"] = 45, + ["obj"] = { + ["I"] = { 81323 }, + }, + ["pre"] = { 55010 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91254 }, + }, + }, + [55015] = { + ["end"] = { + ["U"] = { 91254 }, + }, + ["lvl"] = 49, + ["min"] = 45, + ["obj"] = { + ["I"] = { 81324 }, + }, + ["pre"] = { 55010 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91254 }, + }, + }, + [55016] = { + ["end"] = { + ["U"] = { 91254 }, + }, + ["lvl"] = 51, + ["min"] = 46, + ["obj"] = { + ["I"] = { 81314 }, + }, + ["pre"] = { 55015 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91254 }, + }, + }, + [55017] = { + ["end"] = { + ["U"] = { 91234 }, + }, + ["lvl"] = 48, + ["min"] = 46, + ["pre"] = { 55016 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91254 }, + }, + }, + [55018] = { + ["end"] = { + ["U"] = { 91254 }, + }, + ["lvl"] = 54, + ["min"] = 46, + ["obj"] = { + ["I"] = { 81327 }, + }, + ["pre"] = { 55016 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91254 }, + }, + }, + [55019] = { + ["end"] = { + ["U"] = { 5546 }, + }, + ["lvl"] = 39, + ["min"] = 35, + ["race"] = 434, + ["start"] = { + ["U"] = { 91203 }, + }, + }, + [55020] = { + ["end"] = { + ["U"] = { 7623 }, + }, + ["lvl"] = 39, + ["min"] = 35, + ["pre"] = { 55019 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5546 }, + }, + }, + [55021] = { + ["end"] = { + ["U"] = { 7623 }, + }, + ["lvl"] = 39, + ["min"] = 35, + ["obj"] = { + ["U"] = { 767, 858, 1084 }, + }, + ["pre"] = { 55020 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 7623 }, + }, + }, + [55022] = { + ["end"] = { + ["U"] = { 5546 }, + }, + ["lvl"] = 39, + ["min"] = 35, + ["pre"] = { 55021 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 7623 }, + }, + }, + [55023] = { + ["end"] = { + ["U"] = { 91203 }, + }, + ["lvl"] = 39, + ["min"] = 35, + ["pre"] = { 55022 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5546 }, + }, + }, + [55025] = { + ["end"] = { + ["U"] = { 91282 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["I"] = { 2593, 2594, 2595, 4600 }, + }, + ["start"] = { + ["U"] = { 91282 }, + }, + }, + [55026] = { + ["end"] = { + ["U"] = { 2496 }, + }, + ["lvl"] = 36, + ["min"] = 30, + ["race"] = 434, + ["start"] = { + ["U"] = { 91259 }, + }, + }, + [55027] = { + ["end"] = { + ["U"] = { 2496 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["obj"] = { + ["U"] = { 1097 }, + }, + ["pre"] = { 55026 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2496 }, + }, + }, + [55028] = { + ["end"] = { + ["U"] = { 91280 }, + }, + ["lvl"] = 37, + ["min"] = 30, + ["pre"] = { 55027 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2496 }, + }, + }, + [55029] = { + ["end"] = { + ["U"] = { 2496 }, + }, + ["lvl"] = 36, + ["min"] = 30, + ["pre"] = { 55028 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91280 }, + }, + }, + [55030] = { + ["end"] = { + ["U"] = { 91282 }, + }, + ["lvl"] = 36, + ["min"] = 30, + ["obj"] = { + ["U"] = { 91294 }, + }, + ["pre"] = { 55029 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2496 }, + }, + }, + [55031] = { + ["end"] = { + ["U"] = { 91282 }, + }, + ["lvl"] = 45, + ["min"] = 30, + ["obj"] = { + ["I"] = { 81334 }, + }, + ["pre"] = { 55030 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91282 }, + }, + }, + [55032] = { + ["end"] = { + ["U"] = { 91285 }, + }, + ["lvl"] = 24, + ["min"] = 16, + ["obj"] = { + ["U"] = { 3748 }, + }, + ["start"] = { + ["U"] = { 91285 }, + }, + }, + [55035] = { + ["end"] = { + ["O"] = { 1000500 }, + }, + ["lvl"] = 24, + ["min"] = 15, + ["pre"] = { 40681 }, + ["start"] = { + ["U"] = { 91243 }, + }, + }, + [55036] = { + ["end"] = { + ["U"] = { 91292 }, + }, + ["lvl"] = 32, + ["min"] = 25, + ["race"] = 434, + ["start"] = { + ["U"] = { 91237 }, + }, + }, + [55037] = { + ["end"] = { + ["U"] = { 91292 }, + }, + ["lvl"] = 32, + ["min"] = 25, + ["obj"] = { + ["I"] = { 3720 }, + }, + ["pre"] = { 55036 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91292 }, + }, + }, + [55038] = { + ["end"] = { + ["U"] = { 91237 }, + }, + ["lvl"] = 32, + ["min"] = 25, + ["pre"] = { 55037 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91292 }, + }, + }, + [55039] = { + ["end"] = { + ["U"] = { 2543 }, + }, + ["lvl"] = 35, + ["min"] = 25, + ["obj"] = { + ["I"] = { 81337 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2543 }, + }, + }, + [55040] = { + ["end"] = { + ["U"] = { 2543 }, + }, + ["lvl"] = 35, + ["min"] = 25, + ["obj"] = { + ["I"] = { 81338 }, + }, + ["pre"] = { 55039 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2543 }, + }, + }, + [55041] = { + ["end"] = { + ["U"] = { 91232 }, + }, + ["lvl"] = 30, + ["min"] = 20, + ["obj"] = { + ["I"] = { 81343 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91232 }, + }, + }, + [55042] = { + ["end"] = { + ["U"] = { 91260 }, + }, + ["lvl"] = 20, + ["min"] = 12, + ["obj"] = { + ["I"] = { 81344 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91260 }, + }, + }, + [55043] = { + ["end"] = { + ["U"] = { 91259 }, + }, + ["lvl"] = 32, + ["min"] = 20, + ["obj"] = { + ["I"] = { 81345 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91259 }, + }, + }, + [55044] = { + ["end"] = { + ["U"] = { 91272 }, + }, + ["lvl"] = 10, + ["min"] = 6, + ["race"] = 434, + ["start"] = { + ["U"] = { 91274 }, + }, + }, + [55045] = { + ["end"] = { + ["U"] = { 91274 }, + }, + ["lvl"] = 10, + ["min"] = 6, + ["obj"] = { + ["I"] = { 2770 }, + }, + ["pre"] = { 55044 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91272 }, + }, + }, + [55046] = { + ["end"] = { + ["U"] = { 91274 }, + }, + ["lvl"] = 42, + ["min"] = 34, + ["obj"] = { + ["I"] = { 81346 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91274 }, + }, + }, + [55047] = { + ["end"] = { + ["U"] = { 91274 }, + }, + ["lvl"] = 45, + ["min"] = 34, + ["obj"] = { + ["I"] = { 81347 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91274 }, + }, + }, + [55048] = { + ["end"] = { + ["U"] = { 91249 }, + }, + ["lvl"] = 14, + ["min"] = 8, + ["obj"] = { + ["U"] = { 91296 }, + }, + ["race"] = 434, + ["start"] = { + ["O"] = { 1000504 }, + }, + }, + [55049] = { + ["end"] = { + ["U"] = { 91237 }, + }, + ["lvl"] = 18, + ["min"] = 10, + ["obj"] = { + ["U"] = { 91298 }, + }, + ["race"] = 434, + ["start"] = { + ["O"] = { 1000504 }, + }, + }, + [55050] = { + ["end"] = { + ["U"] = { 3041 }, + }, + ["lvl"] = 5, + ["min"] = 8, + ["race"] = 434, + ["start"] = { + ["U"] = { 91299 }, + }, + }, + [55051] = { + ["end"] = { + ["U"] = { 91259 }, + }, + ["lvl"] = 45, + ["min"] = 30, + ["pre"] = { 55031 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 91282 }, + }, + }, + [55055] = { + }, + [55056] = { + ["end"] = { + ["U"] = { 65147 }, + }, + ["event"] = 2, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 17202 }, + }, + ["start"] = { + ["U"] = { 65147 }, + }, + }, + [55100] = { + ["end"] = { + ["U"] = { 1076 }, + }, + ["lvl"] = 27, + ["min"] = 20, + ["race"] = 589, + ["start"] = { + ["U"] = { 3182 }, + }, + }, + [55101] = { + ["end"] = { + ["U"] = { 52069 }, + }, + ["lvl"] = 27, + ["min"] = 20, + ["obj"] = { + ["I"] = { 3685 }, + }, + ["pre"] = { 55100 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1076 }, + }, + }, + [55200] = { + ["end"] = { + ["U"] = { 52015 }, + }, + ["lvl"] = 26, + ["min"] = 20, + ["obj"] = { + ["I"] = { 4470, 81400 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 52015 }, + }, + }, + [55201] = { + ["end"] = { + ["U"] = { 52095 }, + }, + ["lvl"] = 26, + ["min"] = 20, + ["obj"] = { + ["I"] = { 81401 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 52095 }, + }, + }, + [55202] = { + ["end"] = { + ["U"] = { 52068 }, + }, + ["lvl"] = 24, + ["min"] = 20, + ["race"] = 589, + ["start"] = { + ["U"] = { 1476 }, + }, + }, + [55203] = { + ["end"] = { + ["U"] = { 2094 }, + }, + ["lvl"] = 24, + ["min"] = 20, + ["race"] = 589, + ["start"] = { + ["U"] = { 52030 }, + }, + }, + [55204] = { + ["end"] = { + ["U"] = { 52095 }, + }, + ["lvl"] = 28, + ["min"] = 20, + ["race"] = 589, + ["start"] = { + ["U"] = { 2104 }, + }, + }, + [55205] = { + ["end"] = { + ["U"] = { 2104 }, + }, + ["lvl"] = 28, + ["min"] = 20, + ["pre"] = { 55204 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 52095 }, + }, + }, + [55206] = { + ["end"] = { + ["U"] = { 2104 }, + }, + ["lvl"] = 28, + ["min"] = 20, + ["obj"] = { + ["U"] = { 1034, 1035, 1057 }, + }, + ["pre"] = { 55205 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2104 }, + }, + }, + [55207] = { + ["end"] = { + ["U"] = { 52118 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["race"] = 589, + ["start"] = { + ["U"] = { 52080 }, + }, + }, + [55208] = { + ["end"] = { + ["U"] = { 52080 }, + }, + ["lvl"] = 25, + ["min"] = 20, + ["pre"] = { 55207 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 52118 }, + }, + }, + [55209] = { + ["end"] = { + ["U"] = { 52066 }, + }, + ["lvl"] = 24, + ["min"] = 20, + ["race"] = 589, + ["start"] = { + ["U"] = { 2682 }, + }, + }, + [55210] = { + ["end"] = { + ["U"] = { 52066 }, + }, + ["lvl"] = 24, + ["min"] = 20, + ["obj"] = { + ["I"] = { 3466, 3575, 4375, 7191 }, + }, + ["pre"] = { 55209 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 52066 }, + }, + }, + [55211] = { + ["end"] = { + ["U"] = { 52066 }, + }, + ["lvl"] = 24, + ["min"] = 20, + ["obj"] = { + ["U"] = { 91301 }, + }, + ["pre"] = { 55210 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 52066 }, + }, + }, + [55212] = { + ["end"] = { + ["U"] = { 52102 }, + }, + ["lvl"] = 22, + ["min"] = 18, + ["race"] = 589, + ["start"] = { + ["U"] = { 52066 }, + }, + }, + [55213] = { + ["end"] = { + ["U"] = { 52066 }, + }, + ["lvl"] = 22, + ["min"] = 18, + ["pre"] = { 55212 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 52102 }, + }, + }, + [55215] = { + ["end"] = { + ["U"] = { 52039 }, + }, + ["lvl"] = 24, + ["min"] = 18, + ["race"] = 589, + ["start"] = { + ["U"] = { 52024 }, + }, + }, + [55216] = { + ["end"] = { + ["U"] = { 52021 }, + }, + ["lvl"] = 24, + ["min"] = 18, + ["pre"] = { 55215 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 52024, 52039 }, + }, + }, + [55217] = { + ["end"] = { + ["U"] = { 52039 }, + }, + ["lvl"] = 24, + ["min"] = 18, + ["pre"] = { 55216 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 52021 }, + }, + }, + [55218] = { + ["end"] = { + ["U"] = { 52024 }, + }, + ["lvl"] = 24, + ["min"] = 18, + ["pre"] = { 55217 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 52039 }, + }, + }, + [55219] = { + ["end"] = { + ["U"] = { 52006 }, + }, + ["lvl"] = 24, + ["min"] = 18, + ["pre"] = { 55218 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 52024 }, + }, + }, + [55220] = { + ["end"] = { + ["U"] = { 332 }, + }, + ["lvl"] = 24, + ["min"] = 18, + ["pre"] = { 55219 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 52006 }, + }, + }, + [55221] = { + ["end"] = { + ["U"] = { 332 }, + }, + ["lvl"] = 24, + ["min"] = 18, + ["obj"] = { + ["I"] = { 81413 }, + }, + ["pre"] = { 55220 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 332 }, + }, + }, + [55222] = { + ["end"] = { + ["U"] = { 1464 }, + }, + ["lvl"] = 24, + ["min"] = 18, + ["pre"] = { 55221 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 332 }, + }, + }, + [55223] = { + ["end"] = { + ["U"] = { 332 }, + }, + ["lvl"] = 24, + ["min"] = 18, + ["obj"] = { + ["I"] = { 81414 }, + }, + ["pre"] = { 55222 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1464 }, + }, + }, + [55224] = { + ["end"] = { + ["U"] = { 52024 }, + }, + ["lvl"] = 24, + ["min"] = 18, + ["pre"] = { 55223 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 332 }, + }, + }, + [55225] = { + ["end"] = { + ["U"] = { 52024 }, + }, + ["lvl"] = 24, + ["min"] = 18, + ["obj"] = { + ["U"] = { 52119 }, + }, + ["pre"] = { 55224 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 52024 }, + }, + }, + [55300] = { + ["end"] = { + ["U"] = { 14567 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 12359 }, + }, + ["pre"] = { 7652 }, + ["skill"] = 164, + ["start"] = { + ["U"] = { 14567 }, + }, + }, + [60005] = { + ["lvl"] = 8, + ["min"] = 6, + ["obj"] = { + ["I"] = { 51220 }, + }, + ["race"] = 589, + }, + [60007] = { + ["end"] = { + ["U"] = { 50608 }, + }, + ["lvl"] = 8, + ["min"] = 6, + ["obj"] = { + ["U"] = { 525 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 50608 }, + }, + }, + [60008] = { + ["lvl"] = 8, + ["min"] = 6, + ["obj"] = { + ["I"] = { 51223 }, + }, + ["pre"] = { 60005 }, + ["race"] = 589, + }, + [60009] = { + ["class"] = 2, + ["obj"] = { + ["I"] = { 51248 }, + ["U"] = { 448 }, + }, + ["race"] = 1, + }, + [60010] = { + ["end"] = { + ["U"] = { 51266 }, + }, + ["lvl"] = 50, + ["min"] = 40, + ["obj"] = { + ["I"] = { 11315 }, + }, + ["start"] = { + ["U"] = { 51266 }, + }, + }, + [60011] = { + ["class"] = 2, + ["close"] = { 60011, 60012 }, + ["lvl"] = 15, + ["min"] = 4, + ["obj"] = { + ["U"] = { 448 }, + }, + ["race"] = 589, + }, + [60012] = { + ["class"] = 2, + ["close"] = { 60011, 60012 }, + ["lvl"] = 15, + ["min"] = 4, + ["obj"] = { + ["U"] = { 1271 }, + }, + ["race"] = 589, + }, + [60013] = { + ["lvl"] = 60, + ["min"] = 1, + }, + [60020] = { + ["end"] = { + ["U"] = { 7877 }, + }, + ["lvl"] = 50, + ["min"] = 40, + ["obj"] = { + ["U"] = { 51280 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 7877 }, + }, + }, + [60030] = { + ["end"] = { + ["U"] = { 51292, 51293 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["I"] = { 774, 2318, 2589, 4813 }, + }, + ["start"] = { + ["U"] = { 51292, 51293 }, + }, + }, + [60031] = { + ["end"] = { + ["U"] = { 51292, 51293 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["obj"] = { + ["I"] = { 1210, 2319, 2592, 5134 }, + }, + ["start"] = { + ["U"] = { 51292, 51293 }, + }, + }, + [60032] = { + ["end"] = { + ["U"] = { 51292, 51293 }, + }, + ["lvl"] = 30, + ["min"] = 30, + ["obj"] = { + ["I"] = { 4234, 4306, 6385, 11407 }, + }, + ["start"] = { + ["U"] = { 51292, 51293 }, + }, + }, + [60033] = { + ["end"] = { + ["U"] = { 51292, 51293 }, + }, + ["lvl"] = 40, + ["min"] = 40, + ["obj"] = { + ["I"] = { 3845, 4236, 4338, 5783 }, + }, + ["start"] = { + ["U"] = { 51292, 51293 }, + }, + }, + [60034] = { + ["end"] = { + ["U"] = { 51292, 51293 }, + }, + ["lvl"] = 50, + ["min"] = 50, + ["obj"] = { + ["I"] = { 3490, 4339, 7910, 10040 }, + }, + ["start"] = { + ["U"] = { 51292, 51293 }, + }, + }, + [60035] = { + ["end"] = { + ["U"] = { 51292, 51293 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 1688, 5636, 13926, 14048 }, + }, + ["start"] = { + ["U"] = { 51292, 51293 }, + }, + }, + [60036] = { + ["end"] = { + ["U"] = { 51292, 51293 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["I"] = { 8244, 12811 }, + }, + ["start"] = { + ["U"] = { 51292, 51293 }, + }, + }, + [60040] = { + ["lvl"] = 8, + ["min"] = 6, + ["obj"] = { + ["I"] = { 51330 }, + }, + ["race"] = 589, + }, + [60041] = { + ["lvl"] = 8, + ["min"] = 6, + ["obj"] = { + ["I"] = { 51325 }, + }, + ["pre"] = { 60040 }, + ["race"] = 589, + }, + [60042] = { + ["end"] = { + ["U"] = { 10616 }, + }, + ["lvl"] = 8, + ["min"] = 6, + ["obj"] = { + ["U"] = { 97, 478 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1650 }, + }, + }, + [60050] = { + ["end"] = { + ["U"] = { 1431 }, + }, + ["lvl"] = 5, + ["min"] = 4, + ["obj"] = { + ["U"] = { 51301 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 51302 }, + }, + }, + [60060] = { + ["end"] = { + ["U"] = { 51530 }, + }, + ["lvl"] = 60, + ["min"] = 20, + ["obj"] = { + ["I"] = { 51706, 51707, 51708, 51716 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 51530 }, + }, + }, + [60061] = { + ["end"] = { + ["U"] = { 51532 }, + }, + ["lvl"] = 60, + ["min"] = 20, + ["obj"] = { + ["I"] = { 51706, 51707, 51708, 51716 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 51532 }, + }, + }, + [60065] = { + ["end"] = { + ["U"] = { 11034, 51538 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["obj"] = { + ["U"] = { 8555, 8556, 8557, 8558 }, + }, + ["start"] = { + ["U"] = { 51536 }, + }, + }, + [60070] = { + ["lvl"] = 7, + ["min"] = 6, + ["obj"] = { + ["I"] = { 422, 769, 51751 }, + }, + ["race"] = 589, + }, + [60071] = { + ["end"] = { + ["U"] = { 51566 }, + }, + ["lvl"] = 42, + ["min"] = 42, + ["obj"] = { + ["U"] = { 2649, 2650, 2652 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 51566 }, + }, + }, + [60072] = { + ["end"] = { + ["U"] = { 51566 }, + }, + ["lvl"] = 46, + ["min"] = 42, + ["obj"] = { + ["U"] = { 4466, 4467 }, + }, + ["pre"] = { 60071 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 51566 }, + }, + }, + [60073] = { + ["end"] = { + ["U"] = { 51566 }, + }, + ["lvl"] = 50, + ["min"] = 42, + ["obj"] = { + ["U"] = { 2643, 2645, 2646, 2647 }, + }, + ["pre"] = { 60072 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 51566 }, + }, + }, + [60074] = { + ["end"] = { + ["U"] = { 51566 }, + }, + ["lvl"] = 50, + ["min"] = 42, + ["obj"] = { + ["U"] = { 2648, 7995 }, + }, + ["pre"] = { 60072 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 51566 }, + }, + }, + [60104] = { + ["lvl"] = 5, + ["min"] = 1, + ["obj"] = { + ["U"] = { 51573 }, + }, + }, + [60107] = { + ["end"] = { + ["U"] = { 1521 }, + }, + ["lvl"] = 10, + ["min"] = 8, + ["obj"] = { + ["I"] = { 51807 }, + }, + ["pre"] = { 375 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1521 }, + }, + }, + [60108] = { + ["end"] = { + ["U"] = { 5694 }, + }, + ["lvl"] = 27, + ["min"] = 22, + ["obj"] = { + ["U"] = { 4275 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 5694 }, + }, + }, + [60109] = { + ["end"] = { + ["U"] = { 3850 }, + }, + ["lvl"] = 24, + ["min"] = 22, + ["race"] = 589, + ["start"] = { + ["U"] = { 5694 }, + }, + }, + [60110] = { + ["end"] = { + ["U"] = { 2082 }, + }, + ["lvl"] = 5, + ["min"] = 3, + ["obj"] = { + ["I"] = { 51815 }, + }, + ["pre"] = { 3522 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2082 }, + }, + }, + [60111] = { + ["end"] = { + ["U"] = { 2151 }, + }, + ["lvl"] = 10, + ["min"] = 7, + ["obj"] = { + ["U"] = { 1993, 2162 }, + }, + ["pre"] = { 487 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2151 }, + }, + }, + [60112] = { + ["end"] = { + ["U"] = { 1661 }, + }, + ["lvl"] = 4, + ["min"] = 3, + ["obj"] = { + ["U"] = { 1916, 1917, 1918 }, + }, + ["pre"] = { 376 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1661 }, + }, + }, + [60113] = { + ["end"] = { + ["U"] = { 1518 }, + }, + ["lvl"] = 8, + ["min"] = 6, + ["obj"] = { + ["I"] = { 51822 }, + }, + ["pre"] = { 367 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1518 }, + }, + }, + [60114] = { + ["end"] = { + ["U"] = { 1266 }, + }, + ["lvl"] = 11, + ["min"] = 7, + ["obj"] = { + ["I"] = { 51823 }, + ["U"] = { 1271 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1266 }, + }, + }, + [60115] = { + ["end"] = { + ["U"] = { 3209 }, + }, + ["lvl"] = 5, + ["min"] = 3, + ["obj"] = { + ["I"] = { 51826 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3209 }, + }, + }, + [60116] = { + ["end"] = { + ["U"] = { 1652 }, + }, + ["lvl"] = 29, + ["min"] = 27, + ["obj"] = { + ["U"] = { 4280, 4281, 4283 }, + }, + ["pre"] = { 60117 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1652 }, + }, + }, + [60117] = { + ["end"] = { + ["U"] = { 1652 }, + }, + ["lvl"] = 29, + ["min"] = 27, + ["race"] = 434, + ["start"] = { + ["U"] = { 6741 }, + }, + }, + [60119] = { + ["end"] = { + ["U"] = { 2395 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["obj"] = { + ["U"] = { 2252, 2253 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2395 }, + }, + }, + [60120] = { + ["lvl"] = 9, + ["min"] = 7, + ["obj"] = { + ["I"] = { 51845 }, + }, + ["pre"] = { 835 }, + ["race"] = 434, + }, + [60121] = { + ["lvl"] = 10, + ["min"] = 7, + ["pre"] = { 60120 }, + ["race"] = 434, + }, + [60122] = { + ["lvl"] = 10, + ["min"] = 7, + ["pre"] = { 60121 }, + ["race"] = 434, + }, + [60124] = { + ["end"] = { + ["U"] = { 3702 }, + }, + ["lvl"] = 19, + ["min"] = 16, + ["obj"] = { + ["U"] = { 3654 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3702 }, + }, + }, + [60125] = { + ["end"] = { + ["U"] = { 3702 }, + }, + ["lvl"] = 18, + ["min"] = 16, + ["obj"] = { + ["I"] = { 5339 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3702 }, + }, + }, + [60130] = { + ["end"] = { + ["U"] = { 328 }, + }, + ["lvl"] = 6, + ["min"] = 6, + ["obj"] = { + ["I"] = {}, + }, + ["race"] = 589, + ["start"] = { + ["I"] = { 51855 }, + }, + }, + [60131] = { + ["end"] = { + ["U"] = { 4311 }, + }, + ["lvl"] = 13, + ["min"] = 10, + ["obj"] = { + ["U"] = { 5435 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 4311 }, + }, + }, + [60132] = { + ["end"] = { + ["U"] = { 9555 }, + }, + ["lvl"] = 32, + ["min"] = 30, + ["obj"] = { + ["U"] = { 2563 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 9555 }, + }, + }, + [60133] = { + ["end"] = { + ["U"] = { 3448 }, + }, + ["lvl"] = 14, + ["min"] = 14, + ["obj"] = { + ["I"] = { 51860 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3448 }, + }, + }, + [60134] = { + ["end"] = { + ["U"] = { 3448 }, + }, + ["lvl"] = 15, + ["min"] = 15, + ["obj"] = { + ["IR"] = { 41557 }, + ["U"] = { 12296 }, + }, + ["pre"] = { 60133 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3448 }, + }, + }, + [60135] = { + ["end"] = { + ["U"] = { 13698 }, + }, + ["lvl"] = 39, + ["min"] = 37, + ["obj"] = { + ["U"] = { 51598 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 13698 }, + }, + }, + [60137] = { + ["end"] = { + ["U"] = { 8152 }, + }, + ["lvl"] = 39, + ["min"] = 37, + ["obj"] = { + ["U"] = { 51598 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 8152 }, + }, + }, + [60138] = { + ["end"] = { + ["U"] = { 2993 }, + }, + ["lvl"] = 11, + ["min"] = 10, + ["obj"] = { + ["U"] = { 2973, 2974 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2993 }, + }, + }, + [60139] = { + ["end"] = { + ["U"] = { 6787 }, + }, + ["lvl"] = 7, + ["min"] = 6, + ["obj"] = { + ["U"] = { 3126 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 6787 }, + }, + }, + [60140] = { + ["end"] = { + ["U"] = { 2131 }, + }, + ["lvl"] = 6, + ["min"] = 5, + ["obj"] = { + ["I"] = { 1251 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2131 }, + }, + }, + [60141] = { + ["end"] = { + ["U"] = { 1103 }, + }, + ["lvl"] = 9, + ["min"] = 8, + ["obj"] = { + ["I"] = { 51868 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 927 }, + }, + }, + [60142] = { + ["end"] = { + ["U"] = { 6031 }, + }, + ["lvl"] = 6, + ["min"] = 5, + ["race"] = 589, + ["start"] = { + ["U"] = { 6119 }, + }, + }, + [60143] = { + ["end"] = { + ["U"] = { 3611 }, + }, + ["lvl"] = 10, + ["min"] = 9, + ["obj"] = { + ["I"] = { 51870 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 3611 }, + }, + }, + [60145] = { + ["end"] = { + ["U"] = { 197 }, + }, + ["lvl"] = 5, + ["min"] = 1, + ["obj"] = { + ["U"] = { 51600 }, + }, + ["pre"] = { 15 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 197 }, + }, + }, + [60147] = { + ["end"] = { + ["U"] = { 3145 }, + }, + ["lvl"] = 4, + ["min"] = 4, + ["obj"] = { + ["U"] = { 3102 }, + }, + ["pre"] = { 792 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3145 }, + }, + }, + [60148] = { + ["end"] = { + ["U"] = { 1570 }, + }, + ["lvl"] = 5, + ["min"] = 4, + ["obj"] = { + ["U"] = { 1688 }, + }, + ["pre"] = { 380 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1570 }, + }, + }, + [60150] = { + ["end"] = { + ["U"] = { 2980 }, + }, + ["lvl"] = 4, + ["min"] = 3, + ["obj"] = { + ["U"] = { 2952, 2953 }, + }, + ["pre"] = { 750 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2980 }, + }, + }, + [60152] = { + ["end"] = { + ["U"] = { 51607 }, + }, + ["lvl"] = 43, + ["min"] = 41, + ["pre"] = { 604 }, + ["start"] = { + ["U"] = { 2496 }, + }, + }, + [60153] = { + ["end"] = { + ["U"] = { 2496 }, + }, + ["lvl"] = 43, + ["min"] = 41, + ["obj"] = { + ["I"] = { 51895 }, + }, + ["pre"] = { 60152 }, + ["start"] = { + ["U"] = { 51607 }, + }, + }, + [60154] = { + ["end"] = { + ["U"] = { 240 }, + }, + ["lvl"] = 10, + ["min"] = 4, + ["obj"] = { + ["U"] = { 43 }, + }, + ["pre"] = { 76 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 240 }, + }, + }, + [60155] = { + ["end"] = { + ["U"] = { 6807 }, + }, + ["lvl"] = 39, + ["min"] = 39, + ["obj"] = { + ["I"] = { 81013 }, + }, + ["start"] = { + ["U"] = { 6807 }, + }, + }, + [60160] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 80105 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["IR"] = { 50445 }, + }, + ["race"] = 256, + ["start"] = { + ["U"] = { 80105 }, + }, + }, + [60161] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 80105 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["IR"] = { 50446 }, + }, + ["pre"] = { 60160 }, + ["race"] = 256, + ["start"] = { + ["U"] = { 80105 }, + }, + }, + [60162] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 80105 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["IR"] = { 50447 }, + }, + ["pre"] = { 60161 }, + ["race"] = 256, + ["start"] = { + ["U"] = { 80105 }, + }, + }, + [60163] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 3352 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 60162 }, + ["race"] = 256, + ["start"] = { + ["U"] = { 80105 }, + }, + }, + [70000] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 8379 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 7463 }, + ["start"] = { + ["U"] = { 1498, 2708 }, + }, + }, + [70001] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 8379 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 83005 }, + }, + ["pre"] = { 70000 }, + ["start"] = { + ["U"] = { 8379 }, + }, + }, + [70002] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 14463 }, + }, + ["min"] = 60, + ["pre"] = { 7583 }, + ["start"] = { + ["U"] = { 5675, 6122 }, + }, + }, + [70003] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 14463 }, + }, + ["min"] = 60, + ["obj"] = { + ["I"] = { 83006 }, + }, + ["pre"] = { 70002 }, + ["start"] = { + ["U"] = { 14463 }, + }, + }, + [70010] = { + }, + [70020] = { + ["end"] = { + ["U"] = { 70020 }, + }, + ["lvl"] = 29, + ["min"] = 28, + ["race"] = 434, + ["start"] = { + ["U"] = { 11720 }, + }, + }, + [70021] = { + ["end"] = { + ["U"] = { 70020 }, + }, + ["lvl"] = 29, + ["min"] = 28, + ["obj"] = { + ["I"] = { 70021 }, + }, + ["pre"] = { 70020 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 70020 }, + }, + }, + [70022] = { + ["end"] = { + ["U"] = { 70022 }, + }, + ["lvl"] = 29, + ["min"] = 28, + ["obj"] = { + ["U"] = { 6073, 6115 }, + }, + ["pre"] = { 70021 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 70022 }, + }, + }, + [70023] = { + ["end"] = { + ["U"] = { 70023 }, + }, + ["lvl"] = 30, + ["min"] = 28, + ["pre"] = { 70022 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 70022 }, + }, + }, + [70024] = { + ["end"] = { + ["U"] = { 70023 }, + }, + ["lvl"] = 30, + ["min"] = 28, + ["obj"] = { + ["U"] = { 3821 }, + }, + ["pre"] = { 70023 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 70023 }, + }, + }, + [70025] = { + ["end"] = { + ["U"] = { 70023 }, + }, + ["lvl"] = 29, + ["min"] = 28, + ["obj"] = { + ["U"] = { 70025 }, + }, + ["pre"] = { 70024 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 70023 }, + }, + }, + [70026] = { + ["end"] = { + ["U"] = { 70023 }, + }, + ["lvl"] = 30, + ["min"] = 28, + ["obj"] = { + ["I"] = { 70022 }, + }, + ["pre"] = { 70025 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 70023 }, + }, + }, + [70027] = { + ["end"] = { + ["U"] = { 70027 }, + }, + ["lvl"] = 28, + ["min"] = 25, + ["pre"] = { 70026 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 70023 }, + }, + }, + [70028] = { + ["end"] = { + ["U"] = { 70027 }, + }, + ["lvl"] = 28, + ["min"] = 25, + ["obj"] = { + ["U"] = { 6073, 6115, 11697 }, + }, + ["pre"] = { 70027 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 70027 }, + }, + }, + [70029] = { + ["end"] = { + ["U"] = { 70027 }, + }, + ["lvl"] = 28, + ["min"] = 25, + ["obj"] = { + ["U"] = { 70028 }, + }, + ["pre"] = { 70028 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 70027 }, + }, + }, + [70030] = { + ["end"] = { + ["U"] = { 3995 }, + }, + ["lvl"] = 28, + ["min"] = 25, + ["pre"] = { 70029 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 70027 }, + }, + }, + [70031] = { + ["end"] = { + ["U"] = { 3995 }, + }, + ["lvl"] = 28, + ["min"] = 25, + ["obj"] = { + ["I"] = { 422, 1205, 3713, 3771 }, + }, + ["pre"] = { 70030 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3995 }, + }, + }, + [70032] = { + ["end"] = { + ["U"] = { 70027 }, + }, + ["lvl"] = 29, + ["min"] = 26, + ["pre"] = { 70031 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3995 }, + }, + }, + [70033] = { + ["end"] = { + ["U"] = { 70027 }, + }, + ["lvl"] = 30, + ["min"] = 27, + ["obj"] = { + ["I"] = { 70026 }, + ["U"] = { 6072 }, + }, + ["pre"] = { 70032 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 70027 }, + }, + }, + [70034] = { + ["end"] = { + ["U"] = { 70022 }, + }, + ["lvl"] = 27, + ["min"] = 24, + ["obj"] = { + ["I"] = { 70027 }, + }, + ["pre"] = { 70022 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 70020 }, + }, + }, + [70040] = { + ["end"] = { + ["U"] = { 2140 }, + }, + ["lvl"] = 16, + ["min"] = 14, + ["obj"] = { + ["I"] = { 2857, 6214 }, + }, + ["race"] = 434, + ["skill"] = 164, + ["start"] = { + ["U"] = { 4605 }, + }, + }, + [70049] = { + ["end"] = { + ["U"] = { 81061 }, + }, + ["lvl"] = 40, + ["min"] = 36, + ["obj"] = { + ["I"] = { 70038 }, + }, + ["pre"] = { 70050 }, + ["start"] = { + ["U"] = { 81061 }, + }, + }, + [70050] = { + ["end"] = { + ["U"] = { 81061 }, + }, + ["lvl"] = 40, + ["min"] = 36, + ["obj"] = { + ["I"] = { 70030 }, + }, + ["start"] = { + ["U"] = { 81061 }, + }, + }, + [70051] = { + ["lvl"] = 9, + ["min"] = 7, + ["obj"] = { + ["I"] = { 70031 }, + }, + ["race"] = 434, + }, + [70052] = { + ["end"] = { + ["U"] = { 3453 }, + }, + ["lvl"] = 13, + ["min"] = 12, + ["obj"] = { + ["U"] = { 6494 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 3453 }, + }, + }, + [70053] = { + ["end"] = { + ["U"] = { 1683 }, + }, + ["lvl"] = 20, + ["min"] = 18, + ["obj"] = { + ["U"] = { 1224 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 1683 }, + }, + }, + [70054] = { + ["end"] = { + ["U"] = { 499 }, + }, + ["lvl"] = 25, + ["min"] = 22, + ["obj"] = { + ["I"] = { 70035 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 499 }, + }, + }, + [70055] = { + ["end"] = { + ["U"] = { 499 }, + }, + ["lvl"] = 27, + ["min"] = 24, + ["obj"] = { + ["U"] = { 215, 909, 910 }, + }, + ["pre"] = { 70054 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 499 }, + }, + }, + [70056] = { + ["end"] = { + ["U"] = { 264 }, + }, + ["lvl"] = 27, + ["min"] = 26, + ["pre"] = { 70055 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 499 }, + }, + }, + [70057] = { + ["end"] = { + ["U"] = { 311 }, + }, + ["lvl"] = 27, + ["min"] = 26, + ["pre"] = { 70055 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 499 }, + }, + }, + [70058] = { + ["end"] = { + ["U"] = { 264 }, + }, + ["lvl"] = 28, + ["min"] = 26, + ["obj"] = { + ["U"] = { 212, 891, 892, 1251 }, + }, + ["pre"] = { 70056 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 264 }, + }, + }, + [80100] = { + ["end"] = { + ["U"] = { 80100 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["obj"] = { + ["I"] = { 80100 }, + }, + ["race"] = 256, + ["start"] = { + ["U"] = { 80100 }, + }, + }, + [80101] = { + ["end"] = { + ["U"] = { 80101 }, + }, + ["lvl"] = 2, + ["min"] = 2, + ["obj"] = { + ["I"] = { 80103 }, + }, + ["pre"] = { 80104 }, + ["race"] = 256, + ["start"] = { + ["U"] = { 80101 }, + }, + }, + [80102] = { + ["end"] = { + ["U"] = { 80100 }, + }, + ["lvl"] = 3, + ["min"] = 2, + ["obj"] = { + ["U"] = { 80114, 80115 }, + }, + ["pre"] = { 80100 }, + ["race"] = 256, + ["start"] = { + ["U"] = { 80100 }, + }, + }, + [80103] = { + ["end"] = { + ["U"] = { 80100 }, + }, + ["lvl"] = 4, + ["min"] = 3, + ["obj"] = { + ["I"] = { 80112 }, + }, + ["pre"] = { 80102 }, + ["race"] = 256, + ["start"] = { + ["U"] = { 80100 }, + }, + }, + [80104] = { + ["end"] = { + ["U"] = { 80101 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["obj"] = { + ["I"] = { 80119 }, + }, + ["race"] = 256, + ["start"] = { + ["U"] = { 80101 }, + }, + }, + [80105] = { + ["end"] = { + ["U"] = { 80100 }, + }, + ["lvl"] = 5, + ["min"] = 4, + ["obj"] = { + ["I"] = {}, + }, + ["race"] = 256, + ["start"] = { + ["I"] = { 80114 }, + }, + }, + [80106] = { + ["end"] = { + ["U"] = { 80100 }, + }, + ["lvl"] = 6, + ["min"] = 4, + ["obj"] = { + ["U"] = { 80118, 80119 }, + }, + ["pre"] = { 80105 }, + ["race"] = 256, + ["start"] = { + ["U"] = { 80100 }, + }, + }, + [80107] = { + ["end"] = { + ["U"] = { 80100 }, + }, + ["lvl"] = 6, + ["min"] = 4, + ["obj"] = { + ["U"] = { 80120 }, + }, + ["pre"] = { 80106 }, + ["race"] = 256, + ["start"] = { + ["U"] = { 80100 }, + }, + }, + [80108] = { + ["end"] = { + ["U"] = { 80121 }, + }, + ["lvl"] = 6, + ["min"] = 4, + ["pre"] = { 80107 }, + ["race"] = 256, + ["start"] = { + ["U"] = { 80100 }, + }, + }, + [80109] = { + ["end"] = { + ["U"] = { 3191 }, + }, + ["lvl"] = 6, + ["min"] = 4, + ["obj"] = { + ["I"] = { 769 }, + }, + ["pre"] = { 80108 }, + ["race"] = 256, + ["start"] = { + ["U"] = { 80121 }, + }, + }, + [80110] = { + ["end"] = { + ["U"] = { 3139 }, + }, + ["lvl"] = 6, + ["min"] = 4, + ["pre"] = { 80109 }, + ["race"] = 256, + ["start"] = { + ["U"] = { 3191 }, + }, + }, + [80115] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 80104 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 80100 }, + ["race"] = 256, + ["start"] = { + ["U"] = { 80100 }, + }, + }, + [80116] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 80106 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 80100 }, + ["race"] = 256, + ["start"] = { + ["U"] = { 80100 }, + }, + }, + [80117] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 80105 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 80100 }, + ["race"] = 256, + ["start"] = { + ["U"] = { 80100 }, + }, + }, + [80118] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 80108, 80129 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 80100 }, + ["race"] = 256, + ["start"] = { + ["U"] = { 80100 }, + }, + }, + [80119] = { + ["class"] = 256, + ["end"] = { + ["U"] = { 80107 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 80100 }, + ["race"] = 256, + ["start"] = { + ["U"] = { 80100 }, + }, + }, + [80120] = { + ["end"] = { + ["U"] = { 80131 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["obj"] = { + ["I"] = { 80155 }, + }, + ["race"] = 256, + ["start"] = { + ["U"] = { 80131 }, + }, + }, + [80121] = { + ["class"] = 256, + ["lvl"] = 4, + ["min"] = 1, + ["obj"] = { + ["I"] = { 80170 }, + }, + ["race"] = 256, + }, + [80200] = { + ["lvl"] = 1, + ["min"] = 1, + ["race"] = 512, + }, + [80201] = { + ["end"] = { + ["U"] = { 1156 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["obj"] = { + ["I"] = { 80200 }, + }, + ["pre"] = { 80200 }, + ["race"] = 512, + ["start"] = { + ["U"] = { 1156 }, + }, + }, + [80203] = { + ["end"] = { + ["U"] = { 80202 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["obj"] = { + ["U"] = { 80201 }, + }, + ["pre"] = { 80200 }, + ["race"] = 512, + ["start"] = { + ["U"] = { 80202 }, + }, + }, + [80204] = { + ["end"] = { + ["U"] = { 80202 }, + }, + ["lvl"] = 3, + ["min"] = 2, + ["obj"] = { + ["U"] = { 80203 }, + }, + ["pre"] = { 80203 }, + ["race"] = 512, + ["start"] = { + ["U"] = { 80202 }, + }, + }, + [80205] = { + ["end"] = { + ["U"] = { 1156 }, + }, + ["lvl"] = 3, + ["min"] = 2, + ["obj"] = { + ["I"] = { 80210 }, + }, + ["pre"] = { 80201 }, + ["race"] = 512, + ["start"] = { + ["U"] = { 1156 }, + }, + }, + [80206] = { + ["end"] = { + ["U"] = { 80202 }, + }, + ["lvl"] = 4, + ["min"] = 3, + ["obj"] = { + ["U"] = { 80204 }, + }, + ["pre"] = { 80205 }, + ["race"] = 512, + ["start"] = { + ["U"] = { 1156 }, + }, + }, + [80207] = { + ["end"] = { + ["U"] = { 80202 }, + }, + ["lvl"] = 4, + ["min"] = 4, + ["obj"] = { + ["I"] = { 80216 }, + ["U"] = { 80205, 80206 }, + }, + ["pre"] = { 80206 }, + ["race"] = 512, + ["start"] = { + ["U"] = { 80202 }, + }, + }, + [80208] = { + ["end"] = { + ["U"] = { 80202 }, + }, + ["lvl"] = 5, + ["min"] = 4, + ["obj"] = { + ["U"] = { 80211 }, + }, + ["pre"] = { 80207 }, + ["race"] = 512, + ["start"] = { + ["U"] = { 1156 }, + }, + }, + [80209] = { + ["end"] = { + ["U"] = { 240 }, + }, + ["lvl"] = 5, + ["min"] = 4, + ["obj"] = { + ["U"] = { 80212 }, + }, + ["pre"] = { 80208 }, + ["race"] = 512, + ["start"] = { + ["U"] = { 80202 }, + }, + }, + [80210] = { + ["end"] = { + ["U"] = { 1156 }, + }, + ["lvl"] = 4, + ["min"] = 3, + ["obj"] = { + ["I"] = { 80224, 80225 }, + }, + ["pre"] = { 80201 }, + ["race"] = 512, + ["start"] = { + ["U"] = { 1156 }, + }, + }, + [80211] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 80219 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 80201 }, + ["race"] = 512, + ["start"] = { + ["U"] = { 1156 }, + }, + }, + [80212] = { + ["class"] = 2, + ["end"] = { + ["U"] = { 80220 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 80201 }, + ["race"] = 512, + ["start"] = { + ["U"] = { 1156 }, + }, + }, + [80213] = { + ["class"] = 16, + ["end"] = { + ["U"] = { 80221 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 80201 }, + ["race"] = 512, + ["start"] = { + ["U"] = { 1156 }, + }, + }, + [80214] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 80218 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 80201 }, + ["race"] = 512, + ["start"] = { + ["U"] = { 1156 }, + }, + }, + [80215] = { + ["class"] = 8, + ["end"] = { + ["U"] = { 80223 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 80201 }, + ["race"] = 512, + ["start"] = { + ["U"] = { 1156 }, + }, + }, + [80216] = { + ["class"] = 1, + ["end"] = { + ["U"] = { 80217 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 80201 }, + ["race"] = 512, + ["start"] = { + ["U"] = { 1156 }, + }, + }, + [80217] = { + ["lvl"] = 2, + ["min"] = 2, + ["obj"] = { + ["I"] = { 80232, 80233 }, + }, + ["race"] = 512, + }, + [80219] = { + ["end"] = { + ["U"] = { 80961 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 4378 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 80961 }, + }, + }, + [80220] = { + ["end"] = { + ["U"] = { 80405 }, + }, + ["lvl"] = 5, + ["min"] = 5, + ["race"] = 512, + ["start"] = { + ["U"] = { 240 }, + }, + }, + [80250] = { + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["U"] = { 80229 }, + }, + ["race"] = 589, + }, + [80251] = { + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 80250 }, + ["race"] = 589, + }, + [80252] = { + ["lvl"] = 60, + ["min"] = 10, + ["obj"] = { + ["I"] = { 80240 }, + }, + ["pre"] = { 80256 }, + ["race"] = 589, + }, + [80253] = { + ["lvl"] = 60, + ["min"] = 40, + ["obj"] = { + ["I"] = { 80241 }, + }, + ["pre"] = { 80256 }, + ["race"] = 589, + }, + [80254] = { + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["U"] = { 8560, 8561, 8562, 12261 }, + }, + ["pre"] = { 80256 }, + ["race"] = 589, + }, + [80256] = { + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 80251 }, + ["race"] = 589, + }, + [80258] = { + ["lvl"] = 60, + ["min"] = 20, + ["obj"] = { + ["I"] = { 80245 }, + }, + ["pre"] = { 80256 }, + ["race"] = 589, + }, + [80260] = { + ["lvl"] = 20, + ["min"] = 20, + ["pre"] = { 80256 }, + ["race"] = 589, + }, + [80261] = { + ["lvl"] = 20, + ["min"] = 20, + ["obj"] = { + ["U"] = { 80270, 80271, 80272, 80273 }, + }, + ["pre"] = { 80260 }, + ["race"] = 589, + }, + [80262] = { + ["lvl"] = 20, + ["min"] = 20, + ["obj"] = { + ["U"] = { 80274, 80275, 80276, 80277 }, + }, + ["pre"] = { 80261 }, + ["race"] = 589, + }, + [80263] = { + ["lvl"] = 20, + ["min"] = 20, + ["obj"] = { + ["U"] = { 80278, 80279, 80280, 80281 }, + }, + ["pre"] = { 80262 }, + ["race"] = 589, + }, + [80264] = { + ["lvl"] = 20, + ["min"] = 20, + ["obj"] = { + ["U"] = { 80282, 80283, 80284, 80285 }, + }, + ["pre"] = { 80263 }, + ["race"] = 589, + }, + [80265] = { + ["lvl"] = 20, + ["min"] = 20, + ["obj"] = { + ["U"] = { 80286, 80287, 80288, 80289 }, + }, + ["pre"] = { 80264 }, + ["race"] = 589, + }, + [80289] = { + ["end"] = { + ["U"] = { 91806 }, + }, + ["lvl"] = 30, + ["min"] = 26, + ["race"] = 589, + ["start"] = { + ["U"] = { 80231 }, + }, + }, + [80290] = { + ["end"] = { + ["U"] = { 91806 }, + }, + ["lvl"] = 30, + ["min"] = 26, + ["obj"] = { + ["I"] = { 81358 }, + }, + ["pre"] = { 80289 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 91806 }, + }, + }, + [80291] = { + ["end"] = { + ["U"] = { 91806 }, + }, + ["lvl"] = 30, + ["min"] = 26, + ["obj"] = { + ["U"] = { 70891 }, + }, + ["pre"] = { 80290 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 91806 }, + }, + }, + [80292] = { + ["end"] = { + ["U"] = { 80231 }, + }, + ["lvl"] = 30, + ["min"] = 26, + ["pre"] = { 80291 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 91806 }, + }, + }, + [80300] = { + ["end"] = { + ["U"] = { 80799 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 434, + ["start"] = { + ["U"] = { 80799, 80800 }, + }, + }, + [80301] = { + ["end"] = { + ["U"] = { 80801 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["O"] = { 3000242 }, + }, + ["pre"] = { 80313 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 80801 }, + }, + }, + [80302] = { + ["end"] = { + ["U"] = { 5885 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 80300 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 80799 }, + }, + }, + [80303] = { + ["end"] = { + ["U"] = { 80605, 80802 }, + }, + ["lvl"] = 60, + ["min"] = 55, + ["obj"] = { + ["U"] = { 8563, 8564, 8565 }, + }, + ["pre"] = { 80313 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 80802 }, + }, + }, + [80304] = { + ["end"] = { + ["U"] = { 80802 }, + }, + ["lvl"] = 60, + ["min"] = 20, + ["obj"] = { + ["I"] = { 80421 }, + }, + ["pre"] = { 80313 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 80802 }, + }, + }, + [80305] = { + ["end"] = { + ["U"] = { 80601 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 434, + ["start"] = { + ["U"] = { 5610 }, + }, + }, + [80306] = { + ["end"] = { + ["U"] = { 80601 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["U"] = { 80600 }, + }, + ["pre"] = { 80305 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 80601 }, + }, + }, + [80307] = { + ["end"] = { + ["U"] = { 6791 }, + }, + ["lvl"] = 13, + ["min"] = 10, + ["pre"] = { 80306 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 80601 }, + }, + }, + [80308] = { + ["end"] = { + ["U"] = { 80601 }, + }, + ["lvl"] = 13, + ["min"] = 10, + ["obj"] = { + ["I"] = { 80401 }, + }, + ["pre"] = { 80307 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 6791 }, + }, + }, + [80309] = { + ["end"] = { + ["U"] = { 80605 }, + }, + ["lvl"] = 14, + ["min"] = 13, + ["obj"] = { + ["I"] = { 80402, 80403 }, + }, + ["pre"] = { 80308 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 80605 }, + }, + }, + [80310] = { + ["end"] = { + ["U"] = { 80601 }, + }, + ["lvl"] = 14, + ["min"] = 13, + ["obj"] = { + ["U"] = { 80606 }, + }, + ["pre"] = { 80309 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 80601 }, + }, + }, + [80311] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 80831 }, + }, + ["lvl"] = 16, + ["min"] = 14, + ["race"] = 434, + ["start"] = { + ["U"] = { 80857 }, + }, + }, + [80312] = { + ["class"] = 128, + ["end"] = { + ["U"] = { 80831 }, + }, + ["lvl"] = 18, + ["min"] = 14, + ["obj"] = { + ["I"] = { 80862, 80863, 80864 }, + }, + ["pre"] = { 80311 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 80831 }, + }, + }, + [80313] = { + ["end"] = { + ["U"] = { 80801 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 80302 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 80801 }, + }, + }, + [80314] = { + ["end"] = { + ["U"] = { 3188 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 434, + ["start"] = { + ["U"] = { 80802 }, + }, + }, + [80315] = { + ["end"] = { + ["U"] = { 80460 }, + }, + ["lvl"] = 8, + ["min"] = 8, + ["obj"] = { + ["I"] = { 80865 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 80460 }, + }, + }, + [80320] = { + ["lvl"] = 12, + ["min"] = 7, + ["obj"] = { + ["I"] = { 80868 }, + }, + ["race"] = 434, + }, + [80321] = { + ["lvl"] = 14, + ["min"] = 13, + ["pre"] = { 80320 }, + ["race"] = 434, + }, + [80322] = { + ["lvl"] = 15, + ["min"] = 13, + ["pre"] = { 80321 }, + ["race"] = 434, + }, + [80323] = { + ["lvl"] = 15, + ["min"] = 13, + ["pre"] = { 80322 }, + ["race"] = 434, + }, + [80330] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 80105 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 256, + ["start"] = { + ["U"] = { 3038, 3171, 3407 }, + }, + }, + [80331] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 80903 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["IR"] = { 91770 }, + }, + ["pre"] = { 80330 }, + ["race"] = 256, + ["start"] = { + ["U"] = { 80903 }, + }, + }, + [80332] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 80903 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 80331 }, + ["race"] = 256, + ["start"] = { + ["U"] = { 80903 }, + }, + }, + [80333] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 80903 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["IR"] = { 91772 }, + }, + ["pre"] = { 80332 }, + ["race"] = 256, + ["start"] = { + ["U"] = { 80903 }, + }, + }, + [80334] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 3352 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 80333 }, + ["race"] = 256, + ["start"] = { + ["U"] = { 80903 }, + }, + }, + [80339] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 80855 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 64, + ["start"] = { + ["U"] = { 895, 5116, 5117, 5515 }, + }, + }, + [80340] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 80855 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["IR"] = { 91773 }, + }, + ["race"] = 64, + ["start"] = { + ["U"] = { 80855 }, + }, + }, + [80341] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 80855 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 80340 }, + ["race"] = 64, + ["start"] = { + ["U"] = { 80855 }, + }, + }, + [80342] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 80855 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["obj"] = { + ["IR"] = { 91775 }, + }, + ["pre"] = { 80341 }, + ["race"] = 64, + ["start"] = { + ["U"] = { 80855 }, + }, + }, + [80343] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 10090 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 80342 }, + ["race"] = 64, + ["start"] = { + ["U"] = { 80855 }, + }, + }, + [80350] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 895 }, + }, + ["lvl"] = 1, + ["min"] = 1, + ["pre"] = { 179 }, + ["race"] = 64, + ["start"] = { + ["U"] = { 658 }, + }, + }, + [80352] = { + ["end"] = { + ["U"] = { 81258 }, + }, + ["lvl"] = 41, + ["min"] = 30, + ["obj"] = { + ["I"] = { 81285 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 81258 }, + }, + }, + [80353] = { + ["end"] = { + ["U"] = { 81259 }, + }, + ["lvl"] = 60, + ["min"] = 30, + ["obj"] = { + ["I"] = { 81286 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 81259 }, + }, + }, + [80360] = { + ["end"] = { + ["U"] = { 80801 }, + }, + ["lvl"] = 60, + ["min"] = 40, + ["obj"] = { + ["I"] = { 80422 }, + }, + ["pre"] = { 80313 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 80801 }, + }, + }, + [80366] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 80245 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["race"] = 512, + ["start"] = { + ["U"] = { 80458 }, + }, + }, + [80369] = { + ["end"] = { + ["U"] = { 11556 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 80880 }, + }, + ["pre"] = { 8469 }, + ["start"] = { + ["U"] = { 11556 }, + }, + }, + [80370] = { + ["end"] = { + ["U"] = { 80459 }, + }, + ["lvl"] = 60, + ["min"] = 12, + ["obj"] = { + ["I"] = { 2592 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 80459 }, + }, + }, + [80371] = { + ["end"] = { + ["U"] = { 80459 }, + }, + ["lvl"] = 60, + ["min"] = 26, + ["obj"] = { + ["I"] = { 4306 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 80459 }, + }, + }, + [80372] = { + ["end"] = { + ["U"] = { 80459 }, + }, + ["lvl"] = 60, + ["min"] = 40, + ["obj"] = { + ["I"] = { 4338 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 80459 }, + }, + }, + [80373] = { + ["end"] = { + ["U"] = { 80459 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 14047 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 80459 }, + }, + }, + [80374] = { + ["end"] = { + ["U"] = { 80459 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 14047 }, + }, + ["pre"] = { 80373 }, + ["race"] = 1613, + ["start"] = { + ["U"] = { 80459 }, + }, + }, + [80375] = { + ["end"] = { + ["U"] = { 80807 }, + }, + ["lvl"] = 60, + ["min"] = 12, + ["obj"] = { + ["I"] = { 2592 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 80807 }, + }, + }, + [80376] = { + ["end"] = { + ["U"] = { 80807 }, + }, + ["lvl"] = 60, + ["min"] = 26, + ["obj"] = { + ["I"] = { 4306 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 80807 }, + }, + }, + [80377] = { + ["end"] = { + ["U"] = { 80807 }, + }, + ["lvl"] = 60, + ["min"] = 40, + ["obj"] = { + ["I"] = { 4338 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 80807 }, + }, + }, + [80378] = { + ["end"] = { + ["U"] = { 80807 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 14047 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 80807 }, + }, + }, + [80379] = { + ["end"] = { + ["U"] = { 80807 }, + }, + ["lvl"] = 60, + ["min"] = 50, + ["obj"] = { + ["I"] = { 14047 }, + }, + ["pre"] = { 80378 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 80807 }, + }, + }, + [80380] = { + ["end"] = { + ["U"] = { 80991 }, + }, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 2924, 5471, 12206, 19222 }, + }, + ["start"] = { + ["U"] = { 80991 }, + }, + }, + [80381] = { + ["lvl"] = 35, + ["min"] = 1, + ["obj"] = { + ["I"] = { 81117 }, + }, + }, + [80382] = { + ["end"] = { + ["U"] = { 80990 }, + }, + ["lvl"] = 35, + ["min"] = 1, + ["obj"] = { + ["U"] = { 81000, 81001 }, + }, + ["start"] = { + ["U"] = { 80990 }, + }, + }, + [80383] = { + ["end"] = { + ["U"] = { 80997 }, + }, + ["lvl"] = 35, + ["min"] = 35, + ["obj"] = { + ["U"] = { 81002 }, + }, + ["start"] = { + ["U"] = { 80997 }, + }, + }, + [80384] = { + ["end"] = { + ["U"] = { 5941 }, + }, + ["lvl"] = 6, + ["min"] = 6, + ["obj"] = { + ["I"] = { 81181 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5941 }, + }, + }, + [80386] = { + ["end"] = { + ["U"] = { 80961 }, + }, + ["lvl"] = 60, + ["min"] = 10, + ["obj"] = { + ["I"] = { 4375 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 80961 }, + }, + }, + [80388] = { + ["lvl"] = 1, + ["min"] = 1, + }, + [80390] = { + ["end"] = { + ["U"] = { 80932 }, + }, + ["lvl"] = 30, + ["min"] = 28, + ["race"] = 434, + ["start"] = { + ["U"] = { 3391 }, + }, + }, + [80391] = { + ["end"] = { + ["U"] = { 81046 }, + }, + ["lvl"] = 18, + ["min"] = 17, + ["obj"] = { + ["I"] = { 2674 }, + }, + ["start"] = { + ["U"] = { 81046 }, + }, + }, + [80392] = { + ["end"] = { + ["U"] = { 81042 }, + }, + ["lvl"] = 41, + ["min"] = 40, + ["race"] = 589, + ["start"] = { + ["U"] = { 81043 }, + }, + }, + [80393] = { + ["end"] = { + ["U"] = { 81044 }, + }, + ["lvl"] = 41, + ["min"] = 40, + ["obj"] = { + ["U"] = { 2653, 2686 }, + }, + ["pre"] = { 80392 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 81042 }, + }, + }, + [80395] = { + ["end"] = { + ["U"] = { 81041 }, + }, + ["lvl"] = 13, + ["min"] = 13, + ["obj"] = { + ["U"] = { 80007 }, + }, + ["start"] = { + ["U"] = { 3658 }, + }, + }, + [80396] = { + ["end"] = { + ["U"] = { 81041 }, + }, + ["lvl"] = 13, + ["min"] = 13, + ["obj"] = { + ["U"] = { 3274, 3275, 3397 }, + }, + ["pre"] = { 80395 }, + ["start"] = { + ["U"] = { 81041 }, + }, + }, + [80397] = { + ["end"] = { + ["U"] = { 16458 }, + }, + ["lvl"] = 24, + ["min"] = 20, + ["obj"] = { + ["U"] = { 4020, 4021 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 16458 }, + }, + }, + [80398] = { + ["end"] = { + ["U"] = { 7406 }, + }, + ["lvl"] = 30, + ["min"] = 30, + ["obj"] = { + ["I"] = {}, + }, + ["start"] = { + ["I"] = { 81275 }, + }, + }, + [80399] = { + ["end"] = { + ["U"] = { 3188 }, + }, + ["lvl"] = 8, + ["min"] = 6, + ["obj"] = { + ["I"] = { 59995, 59996 }, + }, + ["race"] = 434, + ["start"] = { + ["I"] = { 59990 }, + }, + }, + [80400] = { + ["end"] = { + ["U"] = { 81060 }, + }, + ["lvl"] = 40, + ["min"] = 36, + ["obj"] = { + ["I"] = { 59997 }, + }, + ["start"] = { + ["U"] = { 81060 }, + }, + }, + [80401] = { + ["end"] = { + ["U"] = { 7406 }, + }, + ["lvl"] = 60, + ["min"] = 30, + ["obj"] = { + ["I"] = { 81280, 81281, 81282 }, + }, + ["pre"] = { 80398 }, + ["start"] = { + ["U"] = { 7406 }, + }, + }, + [80403] = { + ["end"] = { + ["U"] = { 81250 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["race"] = 434, + ["start"] = { + ["U"] = { 80932 }, + }, + }, + [80404] = { + ["end"] = { + ["U"] = { 80932 }, + }, + ["lvl"] = 35, + ["min"] = 30, + ["pre"] = { 80405 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 81250 }, + }, + }, + [80405] = { + ["end"] = { + ["U"] = { 81250 }, + }, + ["lvl"] = 41, + ["min"] = 30, + ["obj"] = { + ["I"] = { 81284 }, + }, + ["pre"] = { 80403 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 81250 }, + }, + }, + [80407] = { + ["end"] = { + ["U"] = { 81041 }, + }, + ["lvl"] = 46, + ["min"] = 40, + ["obj"] = { + ["U"] = { 81252 }, + }, + ["pre"] = { 80396 }, + ["start"] = { + ["U"] = { 51266 }, + }, + }, + [80408] = { + ["end"] = { + ["U"] = { 51266 }, + }, + ["lvl"] = 46, + ["min"] = 40, + ["obj"] = { + ["I"] = { 81287 }, + }, + ["pre"] = { 80407 }, + ["start"] = { + ["U"] = { 81041 }, + }, + }, + [80409] = { + ["end"] = { + ["U"] = { 65019 }, + }, + ["lvl"] = 46, + ["min"] = 40, + ["pre"] = { 80408 }, + ["start"] = { + ["U"] = { 51266 }, + }, + }, + [80410] = { + ["end"] = { + ["U"] = { 10667 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 80409 }, + ["start"] = { + ["U"] = { 16135 }, + }, + }, + [80411] = { + ["end"] = { + ["U"] = { 10667 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 60373 }, + }, + ["pre"] = { 80410 }, + ["start"] = { + ["U"] = { 10667 }, + }, + }, + [80604] = { + ["end"] = { + ["U"] = { 65005 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 80411 }, + ["start"] = { + ["U"] = { 10667 }, + }, + }, + [80605] = { + ["end"] = { + ["U"] = { 65004 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 51044 }, + }, + ["pre"] = { 80604 }, + ["start"] = { + ["U"] = { 65005 }, + }, + }, + [80606] = { + ["end"] = { + ["U"] = { 50662 }, + }, + ["event"] = 2, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["U"] = { 128 }, + }, + ["start"] = { + ["U"] = { 50662 }, + }, + }, + [80700] = { + ["end"] = { + ["U"] = { 2198 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["race"] = 589, + ["start"] = { + ["U"] = { 2198 }, + }, + }, + [80701] = { + ["end"] = { + ["U"] = { 332 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["pre"] = { 80700 }, + ["race"] = 589, + ["start"] = { + ["I"] = { 53000 }, + }, + }, + [80702] = { + ["end"] = { + ["U"] = { 332 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 50665, 50666, 50667 }, + }, + ["pre"] = { 80701 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 332 }, + }, + }, + [80703] = { + ["end"] = { + ["U"] = { 2104 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 53002 }, + ["U"] = { 50670, 50671 }, + }, + ["pre"] = { 80730 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 8305 }, + }, + }, + [80704] = { + ["end"] = { + ["O"] = { 1000171 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 80703 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2104 }, + }, + }, + [80705] = { + ["close"] = { 80705, 80706 }, + ["end"] = { + ["O"] = { 1000171 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 50675 }, + }, + ["pre"] = { 80704 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 1000172 }, + }, + }, + [80706] = { + ["close"] = { 80705, 80706 }, + ["end"] = { + ["O"] = { 1000171 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 50675 }, + }, + ["pre"] = { 80704 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 1000173 }, + }, + }, + [80707] = { + ["end"] = { + ["U"] = { 2104 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 80705 }, + ["race"] = 589, + ["start"] = { + ["O"] = { 1000171 }, + }, + }, + [80708] = { + ["end"] = { + ["U"] = { 12336 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 80707 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 2104 }, + }, + }, + [80709] = { + ["close"] = { 80709, 80729 }, + ["end"] = { + ["U"] = { 50677 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 80708 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 12336 }, + }, + }, + [80710] = { + ["end"] = { + ["U"] = { 50677 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 53004 }, + }, + ["pre"] = { 80709, 80729 }, + ["start"] = { + ["U"] = { 50677 }, + }, + }, + [80711] = { + ["end"] = { + ["U"] = { 50677 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 22527, 22529 }, + }, + ["pre"] = { 80710 }, + ["start"] = { + ["U"] = { 50677 }, + }, + }, + [80720] = { + ["end"] = { + ["U"] = { 2425 }, + }, + ["lvl"] = 60, + ["min"] = 58, + ["race"] = 434, + ["start"] = { + ["U"] = { 14402, 14403, 14404 }, + }, + }, + [80721] = { + ["end"] = { + ["U"] = { 2425 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 50665, 50666, 50667 }, + }, + ["pre"] = { 80720 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2425 }, + }, + }, + [80722] = { + ["end"] = { + ["U"] = { 2425 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 53010 }, + ["U"] = { 50668, 50670, 50681 }, + }, + ["pre"] = { 80721 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2425 }, + }, + }, + [80723] = { + ["end"] = { + ["U"] = { 5204 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 80722 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2425 }, + }, + }, + [80724] = { + ["end"] = { + ["U"] = { 1497 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 80723 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 5204 }, + }, + }, + [80725] = { + ["end"] = { + ["U"] = { 1497 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 53012 }, + }, + ["pre"] = { 80724 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1497 }, + }, + }, + [80726] = { + ["end"] = { + ["U"] = { 2425 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 80725 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1497 }, + }, + }, + [80727] = { + ["end"] = { + ["U"] = { 10181 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 80726 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 2425 }, + }, + }, + [80728] = { + ["end"] = { + ["U"] = { 1497 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["I"] = { 53014 }, + }, + ["pre"] = { 80727 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 10181 }, + }, + }, + [80729] = { + ["close"] = { 80709, 80729 }, + ["end"] = { + ["U"] = { 50677 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["pre"] = { 80728 }, + ["race"] = 434, + ["start"] = { + ["U"] = { 1497 }, + }, + }, + [80730] = { + ["end"] = { + ["U"] = { 8305 }, + }, + ["lvl"] = 60, + ["min"] = 60, + ["obj"] = { + ["U"] = { 50669, 50684, 50685, 50686 }, + }, + ["pre"] = { 80702 }, + ["race"] = 589, + ["start"] = { + ["U"] = { 332 }, + }, + }, + [80735] = { + ["lvl"] = 63, + ["min"] = 55, + ["obj"] = { + ["I"] = { 15410 }, + }, + ["skill"] = 171, + }, + [80736] = { + ["lvl"] = 63, + ["min"] = 55, + ["obj"] = { + ["I"] = { 17967 }, + }, + ["skill"] = 333, + }, + [80738] = { + ["end"] = { + ["U"] = { 61616 }, + }, + ["event"] = 171, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 61794 }, + }, + ["start"] = { + ["U"] = { 61616 }, + }, + }, + [80739] = { + ["end"] = { + ["U"] = { 61616 }, + }, + ["event"] = 171, + ["lvl"] = 60, + ["min"] = 1, + ["obj"] = { + ["I"] = { 61794 }, + }, + ["start"] = { + ["U"] = { 61616 }, + }, + }, + [80740] = { + ["end"] = { + ["U"] = { 15898 }, + }, + ["lvl"] = 20, + ["min"] = 20, + ["obj"] = { + ["I"] = { 91795 }, + }, + ["start"] = { + ["I"] = { 91793 }, + }, + }, + [80745] = { + ["end"] = { + ["U"] = { 19000 }, + }, + ["event"] = 166, + ["lvl"] = 60, + ["min"] = 5, + ["start"] = { + ["U"] = { 19000 }, + }, + }, + [80755] = { + ["class"] = 4, + ["end"] = { + ["U"] = { 60488 }, + }, + ["lvl"] = 10, + ["min"] = 10, + ["pre"] = { 40262 }, + ["race"] = 16, + ["start"] = { + ["U"] = { 60488 }, + }, + }, + [140821] = { + ["end"] = { + ["U"] = { 161211 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["U"] = { 161210 }, + }, + ["race"] = 589, + ["start"] = { + ["U"] = { 161211 }, + }, + }, + [1140820] = { + ["end"] = { + ["U"] = { 161210 }, + }, + ["lvl"] = 60, + ["min"] = 51, + ["obj"] = { + ["U"] = { 161211 }, + }, + ["race"] = 434, + ["start"] = { + ["U"] = { 161210 }, + }, + }, +} + diff --git a/RelationshipsQuestAndItemBrowserData_Units.lua b/RelationshipsQuestAndItemBrowserData_Units.lua new file mode 100644 index 0000000..69c7ea6 --- /dev/null +++ b/RelationshipsQuestAndItemBrowserData_Units.lua @@ -0,0 +1,298369 @@ +-- Relationships Quest And Item Browser bundled quest database. +-- Source data: pfQuest and pfQuest-turtle (MIT). + +-- Source: https://raw.githubusercontent.com/shagu/pfQuest/master/db/enUS/units.lua +RelationshipsQuestAndItemBrowserData["units"]["enUS"] = { + [1] = "Waypoint (Only GM can see it)", + [2] = "Spawn Point (Only GM can see it)", + [3] = "Flesh Eater", + [6] = "Kobold Vermin", + [19] = "Benny Questgiver", + [29] = "Dragon Spawn", + [30] = "Forest Spider", + [31] = "Furbolg", + [36] = "Harvest Golem", + [38] = "Defias Thug", + [40] = "Kobold Miner", + [43] = "Mine Spider", + [46] = "Murloc Forager", + [48] = "Skeletal Warrior", + [49] = "Lesser Succubus", + [54] = "Corina Steele", + [55] = "Mean Ed the Blacksmith", + [60] = "Ruklar the Trapper", + [61] = "Thuros Lightfingers", + [62] = "Gug Fatcandle", + [65] = "Peasant Woman", + [66] = "Tharynn Bouden", + [67] = "[UNUSED] Marlon Darnik", + [68] = "Stormwind City Guard", + [69] = "Timber Wolf", + [70] = "[UNUSED] Lower Class Citizen", + [71] = "Rankist", + [72] = "[UNUSED] Antaris the Trader", + [73] = "Veraina the Apothecary", + [74] = "Kurran Steele", + [75] = "[UNUSED] Vashaum Nightwither", + [78] = "Janos Hammerknuckle", + [79] = "Narg the Taskmaster", + [80] = "Kobold Laborer", + [81] = "[UNUSED] Luglar the Clogger", + [82] = "Crazy Leonetti", + [87] = "Forest Troll Berserker", + [89] = "Infernal", + [90] = "Sea Giant", + [92] = "Rock Elemental", + [93] = "Centaur", + [94] = "Defias Cutpurse", + [95] = "Defias Smuggler", + [97] = "Riverpaw Runt", + [98] = "Riverpaw Taskmaster", + [99] = "Morgaine the Sly", + [100] = "Gruff Swiftbite", + [102] = "Bronze Dragonspawn", + [103] = "Garrick Padfoot", + [105] = "Tall Strider", + [106] = "Kodo Beast", + [107] = "Raptor", + [108] = "Green Dragonspawn", + [109] = "White Dragonspawn", + [111] = "Priest", + [112] = "Priestess", + [113] = "Stonetusk Boar", + [114] = "Harvest Watcher", + [115] = "Harvest Reaper", + [116] = "Defias Bandit", + [117] = "Riverpaw Gnoll", + [118] = "Prowler", + [119] = "Longsnout", + [120] = "Forest Stalker", + [121] = "Defias Pathstalker", + [122] = "Defias Highwayman", + [123] = "Riverpaw Mongrel", + [124] = "Riverpaw Brute", + [125] = "Riverpaw Overseer", + [126] = "Murloc Coastrunner", + [127] = "Murloc Tidehunter", + [128] = "Angry Programmer Tweedle Dee", + [129] = "Angry Programmer Tweedle Dum", + [130] = "Programmer Vendor", + [149] = "[UNUSED] Small Black Dragon Whelp", + [150] = "[UNUSED] Brother Milius", + [151] = "Brog Hamfist", + [152] = "Brother Danil", + [153] = "Bethina", + [154] = "Greater Fleshripper", + [157] = "Goretusk", + [161] = "[UNUSED] Ander the Monk", + [163] = "[UNUSED] Destitute Farmer", + [165] = "[UNUSED] Small Child", + [167] = "Morhan Coppertongue", + [171] = "Murloc Warrior", + [190] = "Dermot Johns", + [192] = "Ice Troll", + [193] = "Blue Dragonspawn", + [196] = "Eagan Peltskinner", + [197] = "Marshal McBride", + [198] = "Khelden Bremen", + [199] = "Young Fleshripper", + [200] = "Shambling Skeleton UNUSED", + [201] = "Brittlebones Skeleton UNUSED", + [202] = "Skeletal Horror", + [203] = "Skeletal Mage", + [204] = "[UNUSED] Cackle Flamebone", + [205] = "Nightbane Dark Runner", + [206] = "Nightbane Vile Fang", + [207] = "[UNUSED] Riverpaw Hideflayer", + [208] = "[UNUSED] Riverpaw Pack Warder", + [209] = "[UNUSED] Riverpaw Bone Chanter", + [210] = "Bone Chewer", + [211] = "Ogre", + [212] = "Splinter Fist Warrior", + [213] = "Starving Dire Wolf", + [215] = "Defias Night Runner", + [217] = "Venom Web Spider", + [218] = "Grave Robber", + [219] = "[UNUSED] Logan Mar", + [220] = "[UNUSED] Khebil Steelsmith", + [221] = "Dannus", + [222] = "Nillen Andemar", + [223] = "Dan Golthas", + [224] = "Zek Marston", + [225] = "Gavin Gnarltree", + [226] = "Morg Gnarltree", + [227] = "Mabel Solaj", + [228] = "Avette Fellwood", + [229] = "Vaious", + [230] = "Thornton Fellwood", + [232] = "Farmer Ray", + [233] = "Farmer Saldean", + [234] = "Gryan Stoutmantle", + [235] = "Salma Saldean", + [237] = "Farmer Furlbrow", + [238] = "Verna Furlbrow", + [239] = "Grimbooze Thunderbrew", + [240] = "Marshal Dughan", + [241] = "Remy \"Two Times\"", + [242] = "Horras Brackwell", + [243] = "[UNUSED] Greeby Mudwhisker TEST", + [244] = "Ma Stonefield", + [246] = "\"Auntie\" Bernice Stonefield", + [247] = "Billy Maclure", + [248] = "Gramma Stonefield", + [250] = "Pa Maclure", + [251] = "Maybell Maclure", + [252] = "Tommy Joe Stonefield", + [253] = "William Pestle", + [255] = "Gerard Tiller", + [257] = "Kobold Worker", + [258] = "Joshua Maclure", + [260] = "[UNUSED] Elwynn Tower Guard", + [261] = "Guard Thomas", + [262] = "Half-eaten body", + [263] = "Lord Ello Ebonlocke", + [264] = "Commander Althea Ebonlocke", + [265] = "Madame Eva", + [266] = "Wiley the Black", + [267] = "Clerk Daltry", + [268] = "Sirra Von\'Indi", + [269] = "Role Dreuger", + [270] = "Councilman Millstipe", + [271] = "Ambassador Berrybuck", + [272] = "Chef Grual", + [273] = "Tavernkeep Smitts", + [274] = "Barkeep Hann", + [275] = "Whit Wantmal", + [276] = "Viktori Prism\'Antras", + [277] = "Roberto Pupellyverbos", + [278] = "Sara Timberlain", + [279] = "Morgan Pestle", + [280] = "Placeholder - Jasperlode Mine", + [281] = "Kobold Tank", + [282] = "Kobold Spellcaster", + [283] = "Kobold Healer", + [284] = "Riding Horse (Brown)", + [285] = "Murloc", + [286] = "Old Rotten Gill", + [287] = "Placeholder - Darkhollow Mine", + [288] = "Jitters", + [289] = "Abercrombie", + [290] = "Placeholder - Fargodeep Mine", + [291] = "Placeholder Chest of Drawers", + [294] = "Marshal Haggard", + [295] = "Innkeeper Farley", + [296] = "[UNUSED] Goodmother Jans", + [297] = "Caretaker Folsom", + [298] = "[UNUSED] Aunt Bethda", + [299] = "Young Wolf", + [300] = "Zzarc\' Vul", + [301] = "[UNUSED] Brog\'Mud", + [302] = "Blind Mary", + [303] = "Placeholder Interactive Doodad - jk", + [304] = "Riding Horse (Felsteed)", + [305] = "Riding Horse (White Stallion)", + [306] = "Riding Horse (Palomino)", + [307] = "Riding Horse (Pinto)", + [308] = "Riding Horse (Black Stallion)", + [309] = "Rolf\'s corpse", + [311] = "Sven Yorgen", + [313] = "Theocritus", + [314] = "Eliza", + [315] = "Stalvan Mistmantle", + [318] = "[UNUSED] Brother Akil", + [319] = "[UNUSED] Brother Benthas", + [320] = "[UNUSED] Brother Cryus", + [321] = "[UNUSED] Brother Deros", + [322] = "[UNUSED] Brother Enoch", + [323] = "[UNUSED] Brother Farthing", + [324] = "[UNUSED] Brother Greishan", + [325] = "Hogan Ference", + [326] = "[UNUSED] Brother Ictharin", + [327] = "Goldtooth", + [328] = "Zaldimar Wefhellt", + [329] = "Earth Elemental", + [330] = "Princess", + [331] = "Maginor Dumas", + [332] = "Master Mathias Shaw", + [333] = "[UNUSED] Edwardo the Jester", + [334] = "Gath\'Ilzogg", + [335] = "Singe", + [336] = "[UNUSED] Rin Tal\'Vara", + [338] = "Mazen Mac\'Nadir", + [339] = "[UNUSED] Helgor the Pugilist", + [340] = "Kendor Kabonka", + [341] = "Foreman Oslow", + [342] = "Martie Jainrose", + [343] = "Chef Breanna", + [344] = "Magistrate Solomon", + [345] = "Bellygrub", + [346] = "Barkeep Daniels", + [347] = "Grizzle Halfmane", + [348] = "Zem Leeward", + [349] = "Corporal Keeshan", + [351] = "Peasant", + [352] = "Dungar Longdrink", + [353] = "Antonia Dart", + [354] = "[UNUSED] Grall Twomoons", + [356] = "Riding Wolf (Black)", + [358] = "Riding Wolf (Brown)", + [359] = "Riding Wolf (Winter)", + [361] = "Saytr", + [364] = "Slime", + [365] = "Scott\'s Flying Mount", + [370] = "Boy", + [371] = "Girl", + [372] = "Karm Ironquill", + [373] = "Murak Winterborn", + [374] = "Cog Glitzspinner", + [375] = "Priestess Anetta", + [376] = "High Priestess Laurena", + [377] = "Priestess Josetta", + [379] = "Darcy", + [380] = "[UNUSED] Waldin Thorbatt", + [381] = "Dockmaster Baren", + [382] = "Marshal Marris", + [383] = "Jason Mathers", + [384] = "Katie Hunter", + [385] = "Horse", + [386] = "[UNUSED] Ulric the Grim", + [387] = "Lord Sammuel", + [388] = "Bromos Murphy", + [389] = "Lord Lantinga", + [390] = "Porcine Entourage", + [391] = "Old Murk-Eye", + [392] = "Captain Grayson", + [393] = "Tame Wolf", + [395] = "Markus", + [397] = "Morganth", + [399] = "Boy - placeholder 05", + [400] = "Boy - placeholder 06", + [401] = "Boy - placeholder 07", + [402] = "Boy - placeholder 08", + [403] = "Boy - placeholder 09", + [404] = "Girl - placeholder 01", + [405] = "Girl - placeholder 02", + [406] = "Girl - placeholder 03", + [407] = "Girl - placeholder 04", + [408] = "Girl - placeholder 05", + [409] = "Girl - placeholder 06", + [410] = "Girl - placeholder 07", + [411] = "Girl - placeholder 08", + [412] = "Stitches", + [415] = "Verner Osgood", + [416] = "Imp", + [417] = "Felhunter", + [418] = "Lesser Voidwalker", + [420] = "Shagu", + [421] = "Murphestos", + [422] = "Murloc Flesheater", + [423] = "Redridge Mongrel", + [424] = "Redridge Poacher", + [426] = "Redridge Brute", + [428] = "Dire Condor", + [429] = "Shadowhide Darkweaver", + [430] = "Redridge Mystic", + [431] = "Shadowhide Slayer", + [432] = "Shadowhide Brute", + [433] = "Shadowhide Gnoll", + [434] = "Rabid Shadowhide Gnoll", + [435] = "Blackrock Champion", + [436] = "Blackrock Shadowcaster", + [437] = "Blackrock Renegade", + [440] = "Blackrock Grunt", + [441] = "Black Dragon Whelp", + [442] = "Tarantula", + [444] = "[UNUSED] Goreripper", + [445] = "Redridge Alpha", + [446] = "Redridge Basher", + [448] = "Hogger", + [449] = "Defias Knuckleduster", + [450] = "Defias Renegade Mage", + [452] = "Riverpaw Bandit", + [453] = "Riverpaw Mystic", + [454] = "Young Goretusk", + [456] = "Murloc Minor Oracle", + [458] = "Murloc Hunter", + [459] = "Drusilla La Salle", + [460] = "Alamar Grimm", + [461] = "Demisette Cloyce", + [462] = "Vultros", + [464] = "Guard Parker", + [465] = "Barkeep Dobbins", + [466] = "General Marcus Jonathan", + [467] = "The Defias Traitor", + [468] = "Town Crier", + [469] = "Lieutenant Doren", + [470] = "[UNUSED] Scribe Colburg", + [471] = "Mother Fang", + [472] = "Fedfennel", + [473] = "Morgan the Collector", + [474] = "Defias Rogue Wizard", + [475] = "Kobold Tunneler", + [476] = "Kobold Geomancer", + [478] = "Riverpaw Outrunner", + [480] = "Rusty Harvest Golem", + [481] = "Defias Footpad", + [482] = "Elling Trias", + [483] = "Elaine Trias", + [485] = "Blackrock Outrunner", + [486] = "Tharil\'zun", + [487] = "Protector Bialon", + [488] = "Protector Weaver", + [489] = "Protector Dutfield", + [490] = "Protector Gariel", + [491] = "Quartermaster Lewis", + [494] = "Watcher Bukouris", + [495] = "Watcher Keefer", + [496] = "[UNUSED] Watcher Kleeman", + [497] = "[UNUSED] Watcher Benjamin", + [498] = "[UNUSED] Watcher Larsen", + [499] = "Watcher Paige", + [500] = "Riverpaw Scout", + [501] = "Riverpaw Herbalist", + [502] = "Benny Blaanco", + [503] = "Lord Malathrom", + [504] = "Defias Trapper", + [505] = "Greater Tarantula", + [506] = "Sergeant Brashclaw", + [507] = "Fenros", + [509] = "[UNUSED] Long Fang", + [510] = "Water Elemental", + [511] = "Insane Ghoul", + [513] = "Murloc Netter", + [514] = "Smith Argus", + [515] = "Murloc Raider", + [516] = "[UNUSED] Riverpaw Hunter", + [517] = "Murloc Oracle", + [518] = "Yowler", + [519] = "Slark", + [520] = "Brack", + [521] = "Lupos", + [522] = "Mor\'Ladim", + [523] = "Thor", + [524] = "Rockhide Boar", + [525] = "Mangy Wolf", + [531] = "Skeletal Fiend", + [533] = "Nightbane Shadow Weaver", + [534] = "Nefaru", + [535] = "[UNUSED] Savar", + [536] = "[UNUSED] Rhal\'Del", + [538] = "[UNUSED] Buk\'Cha", + [539] = "Pygmy Venom Web Spider", + [541] = "Riding Gryphon", + [542] = "Califex of the Deep Wood", + [543] = "Nalesette Wildbringer", + [544] = "Murloc Nightcrawler", + [545] = "Murloc Tidecaller", + [547] = "Great Goretusk", + [548] = "Murloc Minor Tidecaller", + [550] = "Defias Messenger", + [564] = "Kobold Slave", + [565] = "Rabid Dire Wolf", + [566] = "V\'rex", + [567] = "Blacknails", + [568] = "Shadowhide Warrior", + [569] = "Green Recluse", + [570] = "Brain Eater", + [572] = "Leprithus", + [573] = "Foe Reaper 4000", + [574] = "Naraxis", + [575] = "Fire Elemental", + [576] = "Watcher Ladimore", + [578] = "Murloc Scout", + [579] = "Shadowhide Assassin", + [580] = "Redridge Drudger", + [582] = "Old Blanchy", + [583] = "Defias Ambusher", + [584] = "Kazon", + [586] = "[UNUSED] Watcher Kern", + [587] = "Bloodscalp Warrior", + [588] = "Bloodscalp Scout", + [589] = "Defias Pillager", + [590] = "Defias Looter", + [592] = "[UNUSED] Defias Arsonist", + [594] = "Defias Henchman", + [595] = "Bloodscalp Hunter", + [596] = "Brainwashed Noble", + [597] = "Bloodscalp Berserker", + [598] = "Defias Miner", + [599] = "Marisa du\'Paige", + [601] = "Capo the Mean", + [603] = "Grimtooth", + [604] = "Plague Spreader", + [605] = "[UNUSED] Mr. Whipple", + [606] = "[UNUSED] Mrs. Whipple", + [607] = "[UNUSED] Johnny Whipple", + [609] = "[UNUSED] Grandpa Whipple", + [610] = "[UNUSED] Rabid Gina Whipple", + [611] = "[UNUSED] Rabid Mr. Whipple", + [612] = "[UNUSED] Rabid Mrs. Whipple", + [613] = "[UNUSED] Rabid Johnny Whipple", + [614] = "[UNUSED] Rabid Grandpa Whipple", + [615] = "Blackrock Tracker", + [616] = "Chatter", + [619] = "Defias Conjurer", + [620] = "Chicken", + [622] = "Goblin Engineer", + [623] = "Skeletal Miner", + [624] = "Undead Excavator", + [625] = "Undead Dynamiter", + [626] = "Foreman Thistlenettle", + [628] = "Black Ravager", + [631] = "pnagle\'s test dude", + [633] = "Elaine Carevin", + [634] = "Defias Overseer", + [636] = "Defias Blackguard", + [638] = "Goblin Mercenary", + [639] = "Edwin VanCleef", + [641] = "Goblin Woodcarver", + [642] = "Sneed\'s Shredder", + [643] = "Sneed", + [644] = "Rhahk\'Zor", + [645] = "Cookie", + [646] = "Mr. Smite", + [647] = "Captain Greenskin", + [648] = "Bridge Worker Trent", + [649] = "Bridge Worker Dmitri", + [650] = "Bridge Worker Jess", + [651] = "Bridge Worker Daniel", + [652] = "Bridge Worker Matthew", + [653] = "Bridge Worker Alex", + [656] = "Wilder Thistlenettle", + [657] = "Defias Pirate", + [658] = "Sten Stoutarm", + [659] = "El Pollo Grande", + [660] = "Bloodscalp Witch Doctor", + [661] = "Jonathan Carevin", + [663] = "Calor", + [664] = "Benjamin Carevin", + [667] = "Skullsplitter Warrior", + [669] = "Skullsplitter Hunter", + [670] = "Skullsplitter Witch Doctor", + [671] = "Bloodscalp Headhunter", + [672] = "Skullsplitter Spiritchaser", + [674] = "Venture Co. Strip Miner", + [675] = "Venture Co. Foreman", + [676] = "Venture Co. Surveyor", + [677] = "Venture Co. Tinkerer", + [678] = "Mosh\'Ogg Mauler", + [679] = "Mosh\'Ogg Shaman", + [680] = "Mosh\'Ogg Lord", + [681] = "Young Stranglethorn Tiger", + [682] = "Stranglethorn Tiger", + [683] = "Young Panther", + [684] = "Shadowmaw Panther", + [685] = "Stranglethorn Raptor", + [686] = "Lashtail Raptor", + [687] = "Jungle Stalker", + [688] = "Stone Maw Basilisk", + [689] = "Crystal Spine Basilisk", + [690] = "Cold Eye Basilisk", + [691] = "Lesser Water Elemental", + [693] = "Secondary Skill Trainer", + [694] = "Bloodscalp Axe Thrower", + [696] = "Skullsplitter Axe Thrower", + [697] = "Bloodscalp Shaman", + [698] = "Bloodscalp Tiger", + [699] = "Bloodscalp Beastmaster", + [700] = "Bloodscalp Panther", + [701] = "Bloodscalp Mystic", + [702] = "Bloodscalp Scavenger", + [703] = "Lieutenant Fangore", + [704] = "Ragged Timber Wolf", + [705] = "Ragged Young Wolf", + [706] = "Frostmane Troll Whelp", + [707] = "Rockjaw Trogg", + [708] = "Small Crag Boar", + [709] = "Mosh\'Ogg Warmonger", + [710] = "Mosh\'Ogg Spellcrafter", + [711] = "Ardo Dirtpaw", + [712] = "Redridge Thrasher", + [713] = "Balir Frosthammer", + [714] = "Talin Keeneye", + [715] = "Hemet Nesingwary", + [716] = "Barnil Stonepot", + [717] = "Ajeck Rouack", + [718] = "Sir S. J. Erlgadin", + [721] = "Rabbit", + [723] = "Mosh\'Ogg Butcher", + [724] = "Burly Rockjaw Trogg", + [725] = "[UNUSED] Skeletal Enforcer", + [727] = "Ironforge Mountaineer", + [728] = "Bhag\'thera", + [729] = "Sin\'Dall", + [730] = "Tethis", + [731] = "King Bangalash", + [732] = "Murloc Lurker", + [733] = "Sergeant Yohwa", + [734] = "Corporal Bluth", + [735] = "Murloc Streamrunner", + [736] = "Panther", + [737] = "Kebok", + [738] = "Private Thorsen", + [739] = "Brother Nimetz", + [740] = "Adolescent Whelp", + [741] = "Dreaming Whelp", + [742] = "Green Wyrmkin", + [743] = "Wyrmkin Dreamwalker", + [744] = "Green Scalebane", + [745] = "Scalebane Captain", + [746] = "Elder Dragonkin", + [747] = "Marsh Murloc", + [749] = "Marsh Murkdweller", + [750] = "Marsh Inkspewer", + [751] = "Marsh Flesheater", + [752] = "Marsh Oracle", + [753] = "[UNUSED] Rebel Soldier", + [754] = "Rebel Watchman", + [755] = "Lost One Mudlurker", + [756] = "Skullsplitter Panther", + [757] = "Lost One Fisherman", + [758] = "Skullsplitter Tiger", + [759] = "Lost One Hunter", + [760] = "Lost One Muckdweller", + [761] = "Lost One Seer", + [762] = "Lost One Riftseeker", + [763] = "Lost One Chieftain", + [764] = "Swampwalker", + [765] = "Swampwalker Elder", + [766] = "Tangled Horror", + [767] = "Swamp Jaguar", + [768] = "Shadow Panther", + [769] = "Deathstrike Tarantula", + [770] = "Corporal Kaleb", + [771] = "Commander Felstrom", + [772] = "Stranglethorn Tigress", + [773] = "Krazek", + [775] = "Kurzen\'s Agent", + [777] = "Amy Davenport", + [780] = "Skullsplitter Mystic", + [781] = "Skullsplitter Headhunter", + [782] = "Skullsplitter Scout", + [783] = "Skullsplitter Berserker", + [784] = "Skullsplitter Beastmaster", + [785] = "Skeletal Warder", + [786] = "Grelin Whitebeard", + [787] = "Skeletal Healer", + [789] = "Kimberly Hiett", + [790] = "Karen Taylor", + [791] = "Lindsay Ashlock", + [793] = "Kara Adams", + [794] = "Matt", + [795] = "Mark", + [796] = "Joshua", + [797] = "Bo", + [798] = "Solomon", + [799] = "Kevin", + [800] = "Kyle", + [801] = "Eric", + [802] = "Jay", + [804] = "Dana", + [805] = "Cameron", + [806] = "John", + [807] = "Lisa", + [808] = "Grik\'nir the Cold", + [809] = "[UNUSED] Smith Theo", + [810] = "Aaron", + [811] = "Jose", + [812] = "Alma Jainrose", + [813] = "Colonel Kurzen", + [814] = "Sergeant Malthus", + [815] = "Bookie Herod", + [818] = "Mai\'Zoth", + [819] = "Servant of Ilgalar", + [820] = "Scout Riell", + [821] = "Captain Danuvin", + [822] = "Young Forest Bear", + [823] = "Deputy Willem", + [824] = "Defias Digger", + [826] = "Watcher Jan", + [827] = "Watcher Mocarski", + [828] = "Watcher Petras", + [829] = "Adlin Pridedrift", + [830] = "Sand Crawler", + [831] = "Sea Crawler", + [832] = "Dust Devil", + [833] = "Coyote Packleader", + [834] = "Coyote", + [836] = "Durnan Furcutter", + [837] = "Branstock Khalder", + [840] = "Watcher Backus", + [841] = "Harl Cutter", + [842] = "Lumberjack", + [843] = "Gina MacGregor", + [844] = "Antonio Perelli", + [846] = "Ghoul", + [847] = "Nathan", + [848] = "Madison", + [849] = "Rachel", + [850] = "Erin", + [851] = "Hannah", + [852] = "Feral Spirit", + [853] = "Coldridge Mountaineer", + [854] = "Young Jungle Stalker", + [855] = "Young Stranglethorn Raptor", + [856] = "Young Lashtail Raptor", + [857] = "Donal Osgood", + [858] = "Sorrow Spinner", + [859] = "Guard Berton", + [860] = "Pet Wolf", + [861] = "Stonard Scout", + [862] = "Stonard Explorer", + [863] = "Stonard Hunter", + [864] = "Stonard Orc", + [865] = "Stonard Wayfinder", + [866] = "Stonard Grunt", + [867] = "Stonard Cartographer", + [868] = "Stonard Shaman", + [869] = "Protector Dorana", + [870] = "Protector Deni", + [871] = "Saltscale Warrior", + [873] = "Saltscale Oracle", + [874] = "Protector Korelor", + [875] = "Saltscale Tide Lord", + [876] = "Protector Leick", + [877] = "Saltscale Forager", + [878] = "Scout Galiaan", + [879] = "Saltscale Hunter", + [880] = "Erlan Drudgemoor", + [881] = "Surena Caledon", + [882] = "Bone Caster", + [883] = "Deer", + [885] = "Watcher Keller", + [886] = "Watcher Hartin", + [887] = "Watcher Jordan", + [888] = "Watcher Dodds", + [889] = "Splinter Fist Ogre", + [890] = "Fawn", + [891] = "Splinter Fist Fire Weaver", + [892] = "Splinter Fist Taskmaster", + [893] = "Lars", + [894] = "Homer Stonefield", + [895] = "Thorgas Grimson", + [896] = "Veldan Lightfoot", + [897] = "[UNUSED] Brannon Aybara (TEMP)", + [898] = "Nightbane Worgen", + [900] = "Bailiff Conacher", + [903] = "Guard Howe", + [904] = "[UNUSED] Regna Khurn", + [905] = "Sharptooth Frenzy", + [906] = "Maximillian Crowe", + [907] = "Keras Wolfheart", + [908] = "Flora Silverwind", + [909] = "Defias Night Blade", + [910] = "Defias Enchanter", + [911] = "Llane Beshere", + [912] = "Thran Khorman", + [913] = "Lyria Du Lac", + [914] = "Ander Germaine", + [915] = "Jorik Kerridan", + [916] = "Solm Hargrin", + [917] = "Keryn Sylvius", + [918] = "Osborne the Night Man", + [919] = "[UNUSED] [PH] Berail Spiritwhisper", + [920] = "Nightbane Tainted One", + [921] = "Venture Co. Lumberjack", + [922] = "Silt Crawler", + [923] = "Young Black Ravager", + [924] = "[UNUSED] Lesser Arachnid", + [925] = "Brother Sammuel", + [926] = "Bromos Grummner", + [927] = "Brother Wilhelm", + [928] = "Lord Grayson Shadowbreaker", + [929] = "Dreadlord Malganis", + [930] = "Black Widow Hatchling", + [931] = "Ariena Stormfeather", + [932] = "Guard Ashlock", + [933] = "Guard Hiett", + [934] = "Guard Clarke", + [935] = "Guard Pearce", + [936] = "Guard Adams", + [937] = "Kurzen Jungle Fighter", + [938] = "Kurzen Commando", + [939] = "Kurzen Elite", + [940] = "Kurzen Medicine Man", + [941] = "Kurzen Headshrinker", + [942] = "Kurzen Witch Doctor", + [943] = "Kurzen Wrangler", + [944] = "Marryk Nurribit", + [945] = "Rybrad Coldbank", + [946] = "Frostmane Novice", + [947] = "Rohh the Silent", + [948] = "Rotted One", + [949] = "Carrion Recluse", + [950] = "Swamp Talker", + [951] = "Brother Paxton", + [952] = "Brother Neals", + [953] = "Spawn Test One", + [954] = "Kat Sampson", + [955] = "Sergeant De Vries", + [956] = "Dorin Songblade", + [957] = "Dane Lindgren", + [958] = "Dawn Brightstar", + [959] = "Morley Eberlein", + [960] = "Gunder Thornbush", + [963] = "Deputy Rainer", + [976] = "Kurzen War Tiger", + [977] = "Kurzen War Panther", + [978] = "Kurzen Subchief", + [979] = "Kurzen Shadow Hunter", + [980] = "Grimnal", + [981] = "Hartash", + [982] = "Thultash", + [983] = "Thultazor", + [984] = "Thralosh", + [985] = "Malosh", + [986] = "Haromm", + [987] = "Ogromm", + [988] = "Kartosh", + [989] = "Banalash", + [994] = "Nahr\'ek da Howler", + [995] = "Nahr\'ek\'s Pack", + [996] = "Master Tailor", + [999] = "Watcher Royce", + [1000] = "Watcher Blomberg", + [1001] = "Watcher Hutchins", + [1007] = "Mosshide Gnoll", + [1008] = "Mosshide Mongrel", + [1009] = "Mosshide Mistweaver", + [1010] = "Mosshide Fenrunner", + [1011] = "Mosshide Trapper", + [1012] = "Mosshide Brute", + [1013] = "Mosshide Mystic", + [1014] = "Mosshide Alpha", + [1015] = "Highland Raptor", + [1016] = "Highland Lashtail", + [1017] = "Highland Scytheclaw", + [1018] = "Highland Razormaw", + [1019] = "Elder Razormaw", + [1020] = "Mottled Raptor", + [1021] = "Mottled Screecher", + [1022] = "Mottled Scytheclaw", + [1023] = "Mottled Razormaw", + [1024] = "Bluegill Murloc", + [1025] = "Bluegill Puddlejumper", + [1026] = "Bluegill Forager", + [1027] = "Bluegill Warrior", + [1028] = "Bluegill Muckdweller", + [1029] = "Bluegill Oracle", + [1030] = "Black Slime", + [1031] = "Crimson Ooze", + [1032] = "Black Ooze", + [1033] = "Monstrous Ooze", + [1034] = "Dragonmaw Raider", + [1035] = "Dragonmaw Swamprunner", + [1036] = "Dragonmaw Centurion", + [1037] = "Dragonmaw Battlemaster", + [1038] = "Dragonmaw Shadowwarder", + [1039] = "Fen Dweller", + [1040] = "Fen Creeper", + [1041] = "Fen Lord", + [1042] = "Red Whelp", + [1043] = "Lost Whelp", + [1044] = "Flamesnorting Whelp", + [1045] = "Red Dragonspawn", + [1046] = "Red Wyrmkin", + [1047] = "Red Scalebane", + [1048] = "Scalebane Lieutenant", + [1049] = "Wyrmkin Firebrand", + [1050] = "Scalebane Royal Guard", + [1051] = "Dark Iron Dwarf", + [1052] = "Dark Iron Saboteur", + [1053] = "Dark Iron Tunneler", + [1054] = "Dark Iron Demolitionist", + [1055] = "Dreamhunter", + [1056] = "Emerald Sentinel", + [1057] = "Dragonmaw Bonewarder", + [1058] = "[UNUSED] Truek", + [1059] = "Ana\'thek the Cruel", + [1060] = "Mogh the Undying", + [1061] = "Gan\'zulah", + [1062] = "Nezzliok the Dire", + [1063] = "Jade", + [1064] = "Grom\'gol Grunt", + [1065] = "Riverpaw Shaman", + [1066] = "Mottled Riptooth", + [1067] = "Riverpaw Scavenger", + [1068] = "Gorn", + [1069] = "Crimson Whelp", + [1070] = "Deputy Feldon", + [1071] = "Longbraid the Grim", + [1072] = "Roggo Harlbarrow", + [1073] = "Ashlan Stonesmirk", + [1074] = "Motley Garmason", + [1075] = "Rhag Garmason", + [1076] = "Merrin Rockweaver", + [1077] = "Prospector Whelgar", + [1078] = "Ormer Ironbraid", + [1081] = "Mire Lord", + [1082] = "Sawtooth Crocolisk", + [1083] = "Murloc Shorestriker", + [1084] = "Young Sawtooth Crocolisk", + [1085] = "Elder Stranglethorn Tiger", + [1087] = "Sawtooth Snapper", + [1088] = "Monstrous Crawler", + [1089] = "Mountaineer Cobbleflint", + [1090] = "Mountaineer Wallbang", + [1091] = "Mountaineer Gravelgaw", + [1092] = "Captain Rugelfuss", + [1093] = "Chief Engineer Hinderweir VII", + [1094] = "Venture Co. Miner", + [1095] = "Venture Co. Workboss", + [1096] = "Venture Co. Geologist", + [1097] = "Venture Co. Mechanic", + [1098] = "Watcher Merant", + [1099] = "Watcher Gelwin", + [1100] = "Watcher Selkin", + [1101] = "Watcher Thayer", + [1103] = "Eldrin", + [1104] = "Grundel Harkin", + [1105] = "Jern Hornhelm", + [1106] = "Lost One Cook", + [1108] = "Mistvale Gorilla", + [1109] = "Fleshripper", + [1110] = "Skeletal Raider", + [1111] = "Leech Stalker", + [1112] = "Leech Widow", + [1114] = "Jungle Thunderer", + [1115] = "Rockjaw Skullthumper", + [1116] = "Rockjaw Ambusher", + [1117] = "Rockjaw Bonesnapper", + [1118] = "Rockjaw Backbreaker", + [1119] = "Hammerspine", + [1120] = "Frostmane Troll", + [1121] = "Frostmane Snowstrider", + [1122] = "Frostmane Hideskinner", + [1123] = "Frostmane Headhunter", + [1124] = "Frostmane Shadowcaster", + [1125] = "Crag Boar", + [1126] = "Large Crag Boar", + [1127] = "Elder Crag Boar", + [1128] = "Young Black Bear", + [1129] = "Black Bear", + [1130] = "Bjarn", + [1131] = "Winter Wolf", + [1132] = "Timber", + [1133] = "Starving Winter Wolf", + [1134] = "Young Wendigo", + [1135] = "Wendigo", + [1137] = "Edan the Howler", + [1138] = "Snow Tracker Wolf", + [1139] = "Magistrate Bluntnose", + [1140] = "Razormaw Matriarch", + [1141] = "Angus Stern", + [1142] = "Mosh\'Ogg Brute", + [1144] = "Mosh\'Ogg Witch Doctor", + [1146] = "Vharr", + [1147] = "Hragran", + [1148] = "Nerrist", + [1149] = "Uthok", + [1150] = "River Crocolisk", + [1151] = "Saltwater Crocolisk", + [1152] = "Snapjaw Crocolisk", + [1153] = "Torren Squarejaw", + [1154] = "Marek Ironheart", + [1155] = "Kelt Thomasin", + [1156] = "Vyrin Swiftwind", + [1157] = "Cursed Sailor", + [1158] = "Cursed Marine", + [1159] = "First Mate Snellig", + [1160] = "Captain Halyndor", + [1161] = "Stonesplinter Trogg", + [1162] = "Stonesplinter Scout", + [1163] = "Stonesplinter Skullthumper", + [1164] = "Stonesplinter Bonesnapper", + [1165] = "Stonesplinter Geomancer", + [1166] = "Stonesplinter Seer", + [1167] = "Stonesplinter Digger", + [1169] = "Dark Iron Insurgent", + [1171] = "Dark Iron Guerrilla", + [1172] = "Tunnel Rat Vermin", + [1173] = "Tunnel Rat Scout", + [1174] = "Tunnel Rat Geomancer", + [1175] = "Tunnel Rat Digger", + [1176] = "Tunnel Rat Forager", + [1177] = "Tunnel Rat Surveyor", + [1178] = "Mo\'grosh Ogre", + [1179] = "Mo\'grosh Enforcer", + [1180] = "Mo\'grosh Brute", + [1181] = "Mo\'grosh Shaman", + [1182] = "Brother Anton", + [1183] = "Mo\'grosh Mystic", + [1184] = "Cliff Lurker", + [1185] = "Wood Lurker", + [1186] = "Elder Black Bear", + [1187] = "Daryl the Youngling", + [1188] = "Grizzled Black Bear", + [1189] = "Black Bear Patriarch", + [1190] = "Mountain Boar", + [1191] = "Mangy Mountain Boar", + [1192] = "Elder Mountain Boar", + [1193] = "Loch Frenzy", + [1194] = "Mountain Buzzard", + [1195] = "Forest Lurker", + [1196] = "Ice Claw Bear", + [1197] = "Stonesplinter Shaman", + [1198] = "Rallic Finn", + [1199] = "Juvenile Snow Leopard", + [1200] = "Morbent Fel", + [1201] = "Snow Leopard", + [1202] = "Tunnel Rat Kobold", + [1203] = "Watcher Sarys", + [1204] = "Watcher Corwin", + [1205] = "Grawmug", + [1206] = "Gnasher", + [1207] = "Brawler", + [1210] = "Chok\'sul", + [1211] = "Leper Gnome", + [1212] = "Bishop Farthing", + [1213] = "Godric Rothgar", + [1214] = "Aldren Cordon", + [1215] = "Alchemist Mallory", + [1216] = "Shore Crawler", + [1217] = "Glorin Steelbrow", + [1218] = "Herbalist Pomeroy", + [1222] = "Dark Iron Sapper", + [1224] = "Young Threshadon", + [1225] = "Ol\' Sooty", + [1226] = "Maxan Anvol", + [1227] = "Rygal Rocknell", + [1228] = "Magis Sparkmantle", + [1229] = "Granis Swiftaxe", + [1230] = "[UNUSED] Lexin Haze", + [1231] = "Grif Wildheart", + [1232] = "Azar Stronghammer", + [1233] = "Shaethis Darkoak", + [1234] = "Hogral Bakkan", + [1235] = "[UNUSED] Maryann Grapefoot", + [1236] = "Kobold Digger", + [1237] = "Kazan Mogosh", + [1238] = "Gamili Frosthide", + [1239] = "First Mate Fitzsimmons", + [1240] = "Boran Ironclink", + [1241] = "Tognus Flintfire", + [1242] = "Karl Boran", + [1243] = "Hegnar Rumbleshot", + [1244] = "Rethiel the Greenwarden", + [1245] = "Kogan Forgestone", + [1246] = "Vosur Brakthel", + [1247] = "Innkeeper Belm", + [1249] = "Quartermaster Hudson", + [1250] = "Drake Lindgren", + [1251] = "Splinter Fist Firemonger", + [1252] = "Senir Whitebeard", + [1253] = "Father Gavin", + [1254] = "Foreman Stonebrow", + [1255] = "Prospector Gehn", + [1256] = "Quarrymaster Thesten", + [1257] = "Keldric Boucher", + [1258] = "Black Ravager Mastiff", + [1259] = "Gobbler", + [1260] = "Great Father Arctikus", + [1261] = "Veron Amberstill", + [1262] = "White Ram", + [1263] = "Yarlyn Amberstill", + [1265] = "Rudra Amberstill", + [1266] = "Tundra MacGrann", + [1267] = "Ragnar Thunderbrew", + [1268] = "Ozzie Togglevolt", + [1269] = "Razzle Sprysprocket", + [1270] = "Fetid Corpse", + [1271] = "Old Icebeard", + [1273] = "Grawn Thromwyn", + [1274] = "Senator Barin Redstone", + [1275] = "Kyra Boucher", + [1276] = "Mountaineer Brokk", + [1277] = "Mountaineer Ganin", + [1278] = "Mountaineer Stenn", + [1279] = "Mountaineer Flint", + [1280] = "Mountaineer Droken", + [1281] = "Mountaineer Zaren", + [1282] = "Mountaineer Veek", + [1283] = "Mountaineer Kalmir", + [1284] = "Archbishop Benedictus", + [1285] = "Thurman Mullby", + [1286] = "Edna Mullby", + [1287] = "Marda Weller", + [1288] = "[UNUSED] Hevram Bristol", + [1289] = "Gunther Weller", + [1290] = "[UNUSED] Winston Bagley", + [1291] = "Carla Granger", + [1292] = "Maris Granger", + [1293] = "[UNUSED] Gerard Granger", + [1294] = "Aldric Moore", + [1295] = "Lara Moore", + [1296] = "Felder Stover", + [1297] = "Lina Stover", + [1298] = "Frederick Stover", + [1299] = "Lisbeth Schneider", + [1300] = "Lawrence Schneider", + [1301] = "Julia Gallina", + [1302] = "Bernard Gump", + [1303] = "Felicia Gump", + [1304] = "Darian Singh", + [1305] = "Jarel Moor", + [1306] = "[UNUSED] Melechan Damodred", + [1307] = "Charys Yserian", + [1308] = "Owen Vaughn", + [1309] = "Wynne Larson", + [1310] = "Evan Larson", + [1311] = "Joachim Brenlow", + [1312] = "Ardwyn Cailen", + [1313] = "Maria Lumere", + [1314] = "Duncan Cullen", + [1315] = "Allan Hafgan", + [1316] = "Adair Gilroy", + [1317] = "Lucan Cordell", + [1318] = "Jessara Cordell", + [1319] = "Bryan Cross", + [1320] = "Seoman Griffith", + [1321] = "Alyssa Griffith", + [1322] = "Maxton Strang", + [1323] = "Osric Strang", + [1324] = "Heinrich Stone", + [1325] = "Jasper Fel", + [1326] = "Sloan McCoy", + [1327] = "Reese Langston", + [1328] = "Elly Langston", + [1329] = "Mountaineer Naarh", + [1330] = "Mountaineer Tyraw", + [1331] = "Mountaineer Luxst", + [1332] = "Mountaineer Morran", + [1333] = "Gerik Koen", + [1334] = "Mountaineer Hammerfall", + [1335] = "Mountaineer Yuttha", + [1336] = "Mountaineer Zwarn", + [1337] = "Mountaineer Gwarth", + [1338] = "Mountaineer Dalk", + [1339] = "Mayda Thane", + [1340] = "Mountaineer Kadrell", + [1341] = "Wilhelm Strang", + [1342] = "Mountaineer Rockgar", + [1343] = "Mountaineer Stormpike", + [1344] = "Prospector Ironband", + [1345] = "Magmar Fellhew", + [1346] = "Georgio Bolero", + [1347] = "Alexandra Bolero", + [1348] = "Gregory Ardus", + [1349] = "Agustus Moulaine", + [1350] = "Theresa Moulaine", + [1351] = "Brother Cassius", + [1352] = "Fluffy", + [1353] = "Sarltooth", + [1354] = "Apprentice Soren", + [1355] = "Cook Ghilm", + [1356] = "Prospector Stormpike", + [1358] = "Miner Grothor", + [1360] = "Miner Grumnal", + [1361] = "[UNUSED] Kern the Enforcer", + [1362] = "Gothor Brumn", + [1364] = "Balgaras the Foul", + [1365] = "Goli Krumn", + [1366] = "Adam", + [1367] = "Billy", + [1368] = "Justin", + [1370] = "Brandon", + [1371] = "Roman", + [1373] = "Jarven Thunderbrew", + [1374] = "Rejold Barleybrew", + [1375] = "Marleth Barleybrew", + [1376] = "Beldin Steelgrill", + [1377] = "Pilot Stonegear", + [1378] = "Pilot Bellowfiz", + [1379] = "Miran", + [1380] = "Saean", + [1381] = "Krakk", + [1382] = "Mudduk", + [1383] = "Snarl", + [1384] = "Z\'tark", + [1385] = "Brawn", + [1386] = "Rogvar", + [1387] = "Thysta", + [1388] = "Vagash", + [1392] = "Xon", + [1393] = "Berserk Trogg", + [1395] = "Ol\' Beasley", + [1397] = "Frostmane Seer", + [1398] = "Boss Galgosh", + [1399] = "Magosh", + [1400] = "Wetlands Crocolisk", + [1401] = "Test Squirrel", + [1402] = "Topper McNabb", + [1403] = "Mogwah", + [1404] = "Kragg", + [1405] = "Morris Lawry", + [1406] = "Ghok", + [1407] = "Sranda", + [1408] = "Thragg", + [1409] = "Moorah Stormhoof", + [1410] = "Loranna Dawnfyre UNUSED (Reuse me)", + [1411] = "Ian Strom", + [1412] = "Squirrel", + [1413] = "Janey Anship", + [1414] = "Lisan Pierce", + [1415] = "Suzanne", + [1416] = "Grimand Elmore", + [1417] = "Young Wetlands Crocolisk", + [1418] = "Bluegill Raider", + [1419] = "Fizzles", + [1420] = "Toad", + [1421] = "Private Merle", + [1422] = "Corporal Sethman", + [1423] = "Stormwind Guard", + [1424] = "Master Digger", + [1425] = "Grizlak", + [1426] = "Riverpaw Miner", + [1427] = "Harlan Bagley", + [1428] = "Rema Schneider", + [1429] = "Thurman Schneider", + [1430] = "Tomas", + [1431] = "Suzetta Gallina", + [1432] = "Renato Gallina", + [1433] = "Corbett Schneider", + [1434] = "Menethil Sentry", + [1435] = "Zardeth of the Black Claw", + [1436] = "Watcher Cutford", + [1437] = "Thomas Booker", + [1439] = "Lord Baurles K. Wishock", + [1440] = "Milton Sheaf", + [1441] = "Brak Durnad", + [1442] = "Helgrum the Swift", + [1443] = "Fel\'zerul", + [1444] = "Brother Kristoff", + [1445] = "Jesse Halloran", + [1446] = "Regina Halloran", + [1447] = "Gimlok Rumdnul", + [1448] = "Neal Allen", + [1449] = "Witch Doctor Unbagwa", + [1450] = "Brahnmar", + [1451] = "Camerick Jongleur", + [1452] = "Gruham Rumdnul", + [1453] = "Dewin Shimmerdawn", + [1454] = "Jennabink Powerseam", + [1455] = "[UNUSED] Grummar Thunk", + [1456] = "Kersok Prond", + [1457] = "Samor Festivus", + [1458] = "Telurinon Moonshadow", + [1459] = "Naela Trance", + [1460] = "Unger Statforth", + [1461] = "Murndan Derth", + [1462] = "Edwina Monzor", + [1463] = "Falkan Armonis", + [1464] = "Innkeeper Helbrek", + [1465] = "Drac Roughcut", + [1466] = "Gretta Finespindle", + [1467] = "[UNUSED] [PH] Brawl Thunderpunch", + [1468] = "Kargh Steelspine", + [1469] = "Vrok Blunderblast", + [1470] = "Ghak Healtouch", + [1471] = "Jannos Ironwill", + [1472] = "Morgg Stormshot", + [1473] = "Kali Healtouch", + [1474] = "Rann Flamespinner", + [1475] = "Menethil Guard", + [1476] = "Hargin Mundar", + [1477] = "Christoph Faral", + [1478] = "Aedis Brom", + [1479] = "Timothy Clark", + [1480] = "Caitlin Grassman", + [1481] = "Bart Tidewater", + [1482] = "Andrea Halloran", + [1483] = "Murphy West", + [1484] = "Derina Rumdnul", + [1485] = "[UNUSED] Bazaar Merchant TEST", + [1487] = "Splinter Fist Enslaver", + [1488] = "Zanzil Zombie", + [1489] = "Zanzil Hunter", + [1490] = "Zanzil Witch Doctor", + [1491] = "Zanzil Naga", + [1492] = "Gorlash", + [1493] = "Mok\'rash", + [1494] = "Negolash", + [1495] = "Deathguard Linnea", + [1496] = "Deathguard Dillinger", + [1497] = "Gunther Arcanus", + [1498] = "Bethor Iceshard", + [1499] = "Magistrate Sevren", + [1500] = "Coleman Farthing", + [1501] = "Mindless Zombie", + [1502] = "Wretched Zombie", + [1504] = "Young Night Web Spider", + [1505] = "Night Web Spider", + [1506] = "Scarlet Convert", + [1507] = "Scarlet Initiate", + [1508] = "Young Scavenger", + [1509] = "Ragged Scavenger", + [1511] = "Enraged Silverback Gorilla", + [1512] = "Duskbat", + [1513] = "Mangy Duskbat", + [1514] = "Mokk the Savage", + [1515] = "Executor Zygand", + [1516] = "Konda", + [1518] = "Apothecary Johaan", + [1519] = "Deathguard Simmer", + [1520] = "Rattlecage Soldier", + [1521] = "Gretchen Dedmar", + [1522] = "Darkeye Bonecaster", + [1523] = "Cracked Skull Soldier", + [1525] = "Rotting Dead", + [1526] = "Ravaged Corpse", + [1527] = "Hungering Dead", + [1528] = "Shambling Horror", + [1529] = "Bleeding Horror", + [1530] = "Rotting Ancestor", + [1531] = "Lost Soul", + [1532] = "Wandering Spirit", + [1533] = "Tormented Spirit", + [1534] = "Wailing Ancestor", + [1535] = "Scarlet Warrior", + [1536] = "Scarlet Missionary", + [1537] = "Scarlet Zealot", + [1538] = "Scarlet Friar", + [1539] = "Scarlet Neophyte", + [1540] = "Scarlet Vanguard", + [1541] = "Vile Fin Murloc", + [1543] = "Vile Fin Puddlejumper", + [1544] = "Vile Fin Minor Oracle", + [1545] = "Vile Fin Muckdweller", + [1546] = "[UNUSED] Kegnar Thraln", + [1547] = "Decrepit Darkhound", + [1548] = "Cursed Darkhound", + [1549] = "Ravenous Darkhound", + [1550] = "Thrashtail Basilisk", + [1551] = "Ironjaw Basilisk", + [1552] = "Scale Belly", + [1553] = "Greater Duskbat", + [1554] = "Vampiric Duskbat", + [1555] = "Vicious Night Web Spider", + [1557] = "Elder Mistvale Gorilla", + [1558] = "Silverback Patriarch", + [1559] = "King Mukla", + [1560] = "Yvette Farthing", + [1561] = "Bloodsail Raider", + [1562] = "Bloodsail Mage", + [1563] = "Bloodsail Swashbuckler", + [1564] = "Bloodsail Warlock", + [1565] = "Bloodsail Sea Dog", + [1567] = "[UNUSED] Anson Phelps", + [1568] = "Undertaker Mordo", + [1569] = "Shadow Priest Sarvis", + [1570] = "Executor Arren", + [1571] = "Shellei Brondir", + [1572] = "Thorgrum Borrelson", + [1573] = "Gryth Thurden", + [1574] = "Mage 1", + [1575] = "Mage 5", + [1576] = "Mage 10", + [1577] = "Mage 15", + [1578] = "Mage 20", + [1579] = "Mage 30", + [1580] = "Mage 40", + [1581] = "Warlock 1", + [1582] = "Warlock 5", + [1583] = "Warlock 10", + [1584] = "Warlock 15", + [1585] = "Warlock 20", + [1586] = "Warlock 30", + [1587] = "Warlock 40", + [1588] = "Shaman 1", + [1589] = "Shaman 5", + [1590] = "Shaman 10", + [1591] = "Shaman 15", + [1592] = "Shaman 20", + [1593] = "Shaman 30", + [1594] = "Shaman 40", + [1595] = "Rogue 1", + [1596] = "Rogue 5", + [1597] = "Rogue 10", + [1598] = "Rogue 15", + [1599] = "Rogue 20", + [1600] = "Rogue 30", + [1601] = "Rogue 40", + [1602] = "Paladin 1", + [1603] = "Paladin 5", + [1604] = "Druid 1", + [1605] = "Paladin 10", + [1606] = "Paladin 15", + [1607] = "Druid 5", + [1608] = "Druid 10", + [1609] = "Druid 15", + [1613] = "Paladin 20", + [1614] = "Paladin 30", + [1615] = "Paladin 40", + [1616] = "Druid 20", + [1617] = "Druid 30", + [1618] = "Hunter 1", + [1619] = "Druid 40", + [1620] = "Hunter 5", + [1621] = "Hunter 10", + [1622] = "Priest 1", + [1623] = "Hunter 15", + [1624] = "Priest 5", + [1625] = "Hunter 20", + [1626] = "Priest 10", + [1627] = "Priest 15", + [1628] = "Hunter 30", + [1629] = "Priest 20", + [1631] = "Hunter 40", + [1632] = "Adele Fielder", + [1633] = "Priest 30", + [1634] = "Priest 40", + [1635] = "Warrior 1", + [1636] = "Warrior 5", + [1637] = "Warrior 10", + [1638] = "Warrior 15", + [1639] = "Warrior 20", + [1640] = "Warrior 30", + [1641] = "Warrior 40", + [1642] = "Northshire Guard", + [1643] = "[UNUSED] Elwynn Guard", + [1644] = "[UNUSED] Redridge Guard", + [1645] = "Quartermaster Hicks", + [1646] = "Baros Alexston", + [1649] = "UNUSED Jordan Croft", + [1650] = "Terry Palin", + [1651] = "Lee Brown", + [1652] = "Deathguard Burgess", + [1653] = "Bloodsail Elder Magus", + [1654] = "Gregor Agamand", + [1655] = "Nissa Agamand", + [1656] = "Thurman Agamand", + [1657] = "Devlin Agamand", + [1658] = "Captain Dargol", + [1659] = "[UNUSED] Coleman Mills", + [1660] = "Scarlet Bodyguard", + [1661] = "Novice Elreth", + [1662] = "Captain Perrine", + [1663] = "Dextren Ward", + [1664] = "Captain Vachon", + [1665] = "Captain Melrache", + [1666] = "Kam Deepfury", + [1667] = "Meven Korgal", + [1668] = "William MacGregor", + [1669] = "Defias Profiteer", + [1670] = "Mike Miller", + [1671] = "Lamar Veisilli", + [1672] = "Lohgan Eva", + [1673] = "Alyssa Eva", + [1674] = "Rot Hide Gnoll", + [1675] = "Rot Hide Mongrel", + [1676] = "Finbus Geargrind", + [1677] = "[UNUSED] Curtis Ashlock", + [1678] = "Vernon Hale", + [1679] = "Avarus Kharag", + [1680] = "Matthew Hooper", + [1681] = "Brock Stoneseeker", + [1682] = "Yanni Stoutheart", + [1683] = "Warg Deepwater", + [1684] = "Khara Deepwater", + [1685] = "Xandar Goodbeard", + [1686] = "Irene Sureshot", + [1687] = "Cliff Hadin", + [1688] = "Night Web Matriarch", + [1689] = "Scarred Crag Boar", + [1690] = "Thrawn Boltar", + [1691] = "Kreg Bilmn", + [1692] = "Golorn Frostbeard", + [1693] = "Loch Crocolisk", + [1694] = "Loslor Rudge", + [1695] = "Rendow", + [1696] = "Targorr the Dread", + [1697] = "Keeg Gibn", + [1698] = "Frast Dokner", + [1699] = "Gremlock Pilsnor", + [1700] = "Paxton Ganter", + [1701] = "Dank Drizzlecut", + [1702] = "Bronk Guzzlegear", + [1703] = "Uthrar Threx", + [1706] = "Defias Prisoner", + [1707] = "Defias Captive", + [1708] = "Defias Inmate", + [1711] = "Defias Convict", + [1713] = "Elder Shadowmaw Panther", + [1714] = "SAVE Defias Lifer", + [1715] = "Defias Insurgent", + [1716] = "Bazil Thredd", + [1717] = "Hamhock", + [1718] = "Rockjaw Raider", + [1719] = "Warden Thelwater", + [1720] = "Bruegal Ironknuckle", + [1721] = "Nikova Raskol", + [1723] = "Stormwind Citizen", + [1724] = "Stormwind Citizen Masculine", + [1725] = "Defias Watchman", + [1726] = "Defias Magician", + [1727] = "Defias Worker", + [1729] = "Defias Evoker", + [1730] = "Goblin Buzzcutter", + [1731] = "Goblin Craftsman", + [1732] = "Defias Squallshaper", + [1733] = "Zggi", + [1735] = "Deathguard Abraham", + [1736] = "Deathguard Randolph", + [1737] = "Deathguard Oliver", + [1738] = "Deathguard Terrence", + [1739] = "Deathguard Phillip", + [1740] = "Deathguard Saltain", + [1741] = "Deathguard Bartrand", + [1742] = "Deathguard Bartholomew", + [1743] = "Deathguard Lawrence", + [1744] = "Deathguard Mort", + [1745] = "Deathguard Morris", + [1746] = "Deathguard Cyrus", + [1747] = "Anduin Wrynn", + [1748] = "Highlord Bolvar Fordragon", + [1749] = "Lady Katrana Prestor", + [1750] = "Grand Admiral Jes-Tereth", + [1751] = "Mithras Ironhill", + [1752] = "Caledra Dawnbreeze", + [1753] = "Maggot Eye", + [1754] = "Lord Gregor Lescovar", + [1755] = "Marzon the Silent Blade", + [1756] = "Stormwind Royal Guard", + [1757] = "Mega Rabbit", + [1758] = "Warlock (TEST)", + [1759] = "Mage (TEST)", + [1760] = "Warrior (TEST)", + [1761] = "Priest (TEST)", + [1762] = "Rogue (TEST)", + [1763] = "Gilnid", + [1764] = "Greater Feral Spirit", + [1765] = "Worg", + [1766] = "Mottled Worg", + [1767] = "Vile Fin Shredder", + [1768] = "Vile Fin Tidehunter", + [1769] = "Moonrage Whitescalp", + [1770] = "Moonrage Darkrunner", + [1772] = "Rot Hide Gladerunner", + [1773] = "Rot Hide Mystic", + [1775] = "Zun\'dartha", + [1776] = "Magtoor", + [1777] = "Dakk Blunderblast", + [1778] = "Ferocious Grizzled Bear", + [1779] = "Moonrage Glutton", + [1780] = "Moss Stalker", + [1781] = "Mist Creeper", + [1782] = "Moonrage Darksoul", + [1783] = "Skeletal Flayer", + [1784] = "Skeletal Sorcerer", + [1785] = "Skeletal Terror", + [1787] = "Skeletal Executioner", + [1788] = "Skeletal Warlord", + [1789] = "Skeletal Acolyte", + [1791] = "Slavering Ghoul", + [1793] = "Rotting Ghoul", + [1794] = "Soulless Ghoul", + [1795] = "Searing Ghoul", + [1796] = "Freezing Ghoul", + [1797] = "Giant Grizzled Bear", + [1798] = "Tortured Soul", + [1800] = "Cold Wraith", + [1801] = "Blood Wraith", + [1802] = "Hungering Wraith", + [1804] = "Wailing Death", + [1805] = "Flesh Golem", + [1806] = "Vile Slime", + [1808] = "Devouring Ooze", + [1809] = "Carrion Vulture", + [1810] = "Rotting Condor", + [1811] = "Plaguewing Vulture", + [1812] = "Rotting Behemoth", + [1813] = "Decaying Horror", + [1815] = "Diseased Black Bear", + [1816] = "Diseased Grizzly", + [1817] = "Diseased Wolf", + [1819] = "Foulmaw Hydra", + [1820] = "Elder Foulmaw Hydra", + [1821] = "Carrion Lurker", + [1822] = "Venom Mist Lurker", + [1824] = "Plague Lurker", + [1826] = "Scarlet Mage", + [1827] = "Scarlet Sentinel", + [1831] = "Scarlet Hunter", + [1832] = "Scarlet Magus", + [1833] = "Scarlet Knight", + [1834] = "Scarlet Paladin", + [1835] = "Scarlet Invoker", + [1836] = "Scarlet Cavalier", + [1837] = "Scarlet Judge", + [1838] = "Scarlet Interrogator", + [1839] = "Scarlet High Clerist", + [1840] = "Grand Inquisitor Isillien", + [1841] = "Scarlet Executioner", + [1842] = "Highlord Taelan Fordring", + [1843] = "Foreman Jerris", + [1844] = "Foreman Marcrid", + [1845] = "High Protector Tarsen", + [1846] = "High Protector Lorik", + [1847] = "Foulmane", + [1848] = "Lord Maldazzar", + [1849] = "Dreadwhisper", + [1850] = "Putridius", + [1851] = "The Husk", + [1852] = "Araj the Summoner", + [1853] = "Darkmaster Gandling", + [1854] = "High Priest Thel\'danis", + [1855] = "Tirion Fordring", + [1857] = "Pissed Vendor", + [1858] = "Pissed not a Vendor", + [1859] = "[UNUSED] Nyein Longwind", + [1860] = "Voidwalker", + [1861] = "Greater Voidwalker", + [1862] = "Lesser Netherwalker", + [1863] = "Succubus", + [1864] = "Greater Succubus", + [1865] = "Ravenclaw Raider", + [1866] = "Ravenclaw Slave", + [1867] = "Dalaran Apprentice", + [1868] = "Ravenclaw Servant", + [1869] = "Ravenclaw Champion", + [1870] = "Hand of Ravenclaw", + [1871] = "Eliza\'s Guard", + [1872] = "Tharek Blackstone", + [1879] = "Noma Bluntnose", + [1880] = "Berte", + [1881] = "Evalyn", + [1883] = "Scarlet Worker", + [1884] = "Scarlet Lumberjack", + [1885] = "Scarlet Smith", + [1888] = "Dalaran Watcher", + [1889] = "Dalaran Wizard", + [1890] = "Rattlecage Skeleton", + [1891] = "Pyrewood Watcher", + [1892] = "Moonrage Watcher", + [1893] = "Moonrage Sentry", + [1894] = "Pyrewood Sentry", + [1895] = "Pyrewood Elder", + [1896] = "Moonrage Elder", + [1901] = "Kelstrum Stonebreaker", + [1907] = "Naga Explorer", + [1908] = "Vile Fin Oracle", + [1909] = "Vile Fin Lakestalker", + [1910] = "Muad", + [1911] = "Deeb", + [1912] = "Dalaran Protector", + [1913] = "Dalaran Warder", + [1914] = "Dalaran Mage", + [1915] = "Dalaran Conjuror", + [1916] = "Stephen Bhartec", + [1917] = "Daniel Ulfman", + [1918] = "Karrel Grayves", + [1919] = "Samuel Fipps", + [1920] = "Dalaran Spellscribe", + [1921] = "Combat Dummy", + [1922] = "Gray Forest Wolf", + [1923] = "Bloodsnout Worg", + [1924] = "Moonrage Bloodhowler", + [1925] = "Heat Miser", + [1926] = "Snow Miser", + [1927] = "Good Miser", + [1928] = "Bad Miser", + [1929] = "Earth Miser", + [1930] = "Steel Miser", + [1931] = "Captured Scarlet Zealot", + [1932] = "Black Sheep", + [1933] = "Sheep", + [1934] = "Tirisfal Farmer", + [1935] = "Tirisfal Farmhand", + [1936] = "Farmer Solliden", + [1937] = "Apothecary Renferrel", + [1938] = "Dalar Dawnweaver", + [1939] = "Rot Hide Brute", + [1940] = "Rot Hide Plague Weaver", + [1941] = "Rot Hide Graverobber", + [1942] = "Rot Hide Savage", + [1943] = "Raging Rot Hide", + [1944] = "Rot Hide Bruiser", + [1945] = "Tree Form 0.33", + [1946] = "Lillith Nefara", + [1947] = "Thule Ravenclaw", + [1948] = "Snarlmane", + [1949] = "Servant of Azora", + [1950] = "Rane Yorick", + [1951] = "Quinn Yorick", + [1952] = "High Executor Hadrec", + [1953] = "Lake Skulker", + [1954] = "Elder Lake Skulker", + [1955] = "Lake Creeper", + [1956] = "Elder Lake Creeper", + [1957] = "Vile Fin Shorecreeper", + [1958] = "Vile Fin Tidecaller", + [1959] = "Mountaineer Barleybrew", + [1960] = "Pilot Hammerfoot", + [1961] = "Mangeclaw", + [1963] = "Vidra Hearthstove", + [1964] = "Treant", + [1965] = "Mountaineer Thalos", + [1971] = "Ivar the Foul", + [1972] = "Grimson the Pale", + [1973] = "Ravenclaw Guardian", + [1974] = "Ravenclaw Drudger", + [1975] = "Eastvale Lumberjack", + [1976] = "Stormwind City Patroller", + [1977] = "Senator Mehr Stonehallow", + [1978] = "Deathstalker Erland", + [1979] = "TEST WOLF (ALPHA FIRST)", + [1980] = "TEST WOLF (ALPHA SECOND)", + [1981] = "Dark Iron Ambusher", + [1983] = "Nightlash", + [1984] = "Young Thistle Boar", + [1985] = "Thistle Boar", + [1986] = "Webwood Spider", + [1987] = "Webwood Creeper UNUSED", + [1988] = "Grell", + [1989] = "Grellkin", + [1990] = "Gremlin", + [1991] = "Jaxil Rye", + [1992] = "Tarindrella", + [1993] = "Greenpaw", + [1994] = "Githyiss the Vile", + [1995] = "Strigid Owl", + [1996] = "Strigid Screecher", + [1997] = "Strigid Hunter", + [1998] = "Webwood Lurker", + [1999] = "Webwood Venomfang", + [2000] = "Webwood Silkspinner", + [2001] = "Giant Webwood Spider", + [2002] = "Rascal Sprite", + [2003] = "Shadow Sprite", + [2004] = "Dark Sprite", + [2005] = "Vicious Grell", + [2006] = "Gnarlpine Ursa", + [2007] = "Gnarlpine Gardener", + [2008] = "Gnarlpine Warrior", + [2009] = "Gnarlpine Shaman", + [2010] = "Gnarlpine Defender", + [2011] = "Gnarlpine Augur", + [2012] = "Gnarlpine Pathfinder", + [2013] = "Gnarlpine Avenger", + [2014] = "Gnarlpine Totemic", + [2015] = "Bloodfeather Harpy", + [2017] = "Bloodfeather Rogue", + [2018] = "Bloodfeather Sorceress", + [2019] = "Bloodfeather Fury", + [2020] = "Bloodfeather Wind Witch", + [2021] = "Bloodfeather Matriarch", + [2022] = "Timberling", + [2025] = "Timberling Bark Ripper", + [2027] = "Timberling Trampler", + [2029] = "Timberling Mire Beast", + [2030] = "Elder Timberling", + [2031] = "Young Nightsaber", + [2032] = "Mangy Nightsaber", + [2033] = "Elder Nightsaber", + [2034] = "Feral Nightsaber", + [2038] = "Lord Melenas", + [2039] = "Ursal the Mauler", + [2040] = "Haggatha the Crone", + [2041] = "Ancient Protector", + [2042] = "Nightsaber", + [2043] = "Nightsaber Stalker", + [2044] = "Forlorn Spirit", + [2045] = "Gunther\'s Minion", + [2046] = "Andrew Krighton", + [2050] = "Raleigh Andrean", + [2051] = "Twain The Tester FOO", + [2052] = "Nag", + [2053] = "Haggard Refugee", + [2054] = "Sickly Refugee", + [2055] = "Master Apothecary Faranell", + [2056] = "Ravenclaw Apparition", + [2057] = "Huldar", + [2058] = "Deathstalker Faerleia", + [2060] = "Councilman Smithers", + [2061] = "Councilman Thatcher", + [2062] = "Councilman Hendricks", + [2063] = "Councilman Wilhelm", + [2064] = "Councilman Hartin", + [2065] = "Councilman Cooper", + [2066] = "Councilman Higarth", + [2067] = "Councilman Brunswick", + [2068] = "Lord Mayor Morrison", + [2069] = "Moonstalker", + [2070] = "Moonstalker Runt", + [2071] = "Moonstalker Matriarch", + [2077] = "Melithar Staghelm", + [2078] = "Athridas Bearmantle", + [2079] = "Conservator Ilthalaine", + [2080] = "Denalan", + [2081] = "Sentinel Kyra Starsong", + [2082] = "Gilshalan Windwalker", + [2083] = "Syral Bladeleaf", + [2084] = "Natheril Raincaller", + [2086] = "Valstag Ironjaw", + [2087] = "[UNUSED] Ambermill Citizen", + [2089] = "Giant Wetlands Crocolisk", + [2090] = "Ma\'ruk Wyrmscale", + [2091] = "Chieftain Nek\'rosh", + [2092] = "Pilot Longbeard", + [2093] = "Einar Stonegrip", + [2094] = "James Halloran", + [2095] = "Billy the Street Urchin", + [2096] = "Tarrel Rockweaver", + [2097] = "Harlo Barnaby", + [2098] = "Ram", + [2099] = "Maiden\'s Virtue Crewman", + [2102] = "Dragonmaw Grunt", + [2103] = "Dragonmaw Scout", + [2104] = "Captain Stoutfist", + [2105] = "Mountaineer Dokkin", + [2106] = "Apothecary Berard", + [2107] = "Gaerolas Talvethren", + [2108] = "Garneg Charskull", + [2109] = "Steam Tank", + [2110] = "Black Rat", + [2111] = "Sida", + [2112] = "Farrin Daris", + [2113] = "Archibald Kava", + [2114] = "Faruza", + [2115] = "Joshua Kien", + [2116] = "Blacksmith Rand", + [2117] = "Harold Raims", + [2118] = "Abigail Shiel", + [2119] = "Dannal Stern", + [2120] = "Archmage Ataeric", + [2121] = "Shadow Priest Allister", + [2122] = "David Trias", + [2123] = "Dark Cleric Duesten", + [2124] = "Isabella", + [2126] = "Maximillion", + [2127] = "Rupert Boch", + [2128] = "Cain Firesong", + [2129] = "Dark Cleric Beryl", + [2130] = "Marion Call", + [2131] = "Austil de Mon", + [2132] = "Carolai Anise", + [2133] = "[UNUSED] Theo Reshan", + [2134] = "Mrs. Winters", + [2135] = "Abe Winters", + [2136] = "Oliver Dwor", + [2137] = "Eliza Callen", + [2138] = "Warrior 25", + [2140] = "Edwin Harly", + [2142] = "Watcher Callahan", + [2149] = "Dark Iron Raider", + [2150] = "Zenn Foulhoof", + [2151] = "Moon Priestess Amara", + [2152] = "Gnarlpine Ambusher", + [2153] = "Terl Arakor", + [2154] = "Jesse The Tester", + [2155] = "Sentinel Shayla Nightbreeze", + [2156] = "Cracked Golem", + [2157] = "Stone Behemoth", + [2158] = "Gravelflint Scout", + [2159] = "Gravelflint Bonesnapper", + [2160] = "Gravelflint Geomancer", + [2162] = "Agal", + [2163] = "Thistle Bear", + [2164] = "Rabid Thistle Bear", + [2165] = "Grizzled Thistle Bear", + [2166] = "Oakenscowl", + [2167] = "Blackwood Pathfinder", + [2168] = "Blackwood Warrior", + [2169] = "Blackwood Totemic", + [2170] = "Blackwood Ursa", + [2171] = "Blackwood Shaman", + [2172] = "Strider Clutchmother", + [2173] = "Reef Frenzy", + [2174] = "Coastal Frenzy", + [2175] = "Shadowclaw", + [2176] = "Cursed Highborne", + [2177] = "Writhing Highborne", + [2178] = "Wailing Highborne", + [2179] = "Stormscale Wave Rider", + [2180] = "Stormscale Siren", + [2181] = "Stormscale Myrmidon", + [2182] = "Stormscale Sorceress", + [2183] = "Stormscale Warrior", + [2184] = "Lady Moongazer", + [2185] = "Darkshore Thresher", + [2186] = "Carnivous the Breaker", + [2187] = "Elder Darkshore Thresher", + [2188] = "Deep Sea Threshadon", + [2189] = "Vile Sprite", + [2190] = "Wild Grell", + [2191] = "Licillin", + [2192] = "Firecaller Radison", + [2197] = "[UNUSED] Crier Kirton", + [2198] = "Crier Goodman", + [2199] = "[UNUSED] Crier Backus", + [2200] = "[UNUSED] Crier Pierce", + [2201] = "Greymist Raider", + [2202] = "Greymist Coastrunner", + [2203] = "Greymist Seer", + [2204] = "Greymist Netter", + [2205] = "Greymist Warrior", + [2206] = "Greymist Hunter", + [2207] = "Greymist Oracle", + [2208] = "Greymist Tidehunter", + [2209] = "Deathguard Gavin", + [2210] = "Deathguard Royann", + [2211] = "Captured Mountaineer", + [2212] = "Deth\'ryll Satyr", + [2213] = "Deth\'ryll Shadowstalker", + [2214] = "Deathstalker Lesh", + [2215] = "High Executor Darthalia", + [2216] = "Apothecary Lydon", + [2217] = "Undead Druid Trainer", + [2218] = "Undead Hunter Trainer", + [2219] = "Undead Shaman Trainer", + [2220] = "[UNUSED] Undead Blacksmith Trainer", + [2221] = "Undead Tailor Trainer", + [2222] = "Undead Mining Trainer", + [2223] = "[UNUSED] Undead Cooking Trainer", + [2224] = "Wind Rider", + [2225] = "Zora Guthrek", + [2226] = "Karos Razok", + [2227] = "Sharlindra", + [2228] = "Lieutenant Farren Orinelle", + [2229] = "Krusk", + [2230] = "Umpi", + [2231] = "Pygmy Tide Crawler", + [2232] = "Tide Crawler", + [2233] = "Encrusted Tide Crawler", + [2234] = "Young Reef Crawler", + [2235] = "Reef Crawler", + [2236] = "Raging Reef Crawler", + [2237] = "Moonstalker Sire", + [2238] = "Tog\'thar", + [2239] = "Drull", + [2240] = "Syndicate Footpad", + [2241] = "Syndicate Thief", + [2242] = "Syndicate Spy", + [2243] = "Syndicate Sentry", + [2244] = "Syndicate Shadow Mage", + [2245] = "Syndicate Saboteur", + [2246] = "Syndicate Assassin", + [2247] = "Syndicate Enforcer", + [2248] = "Cave Yeti", + [2249] = "Ferocious Yeti", + [2250] = "Mountain Yeti", + [2251] = "Giant Yeti", + [2252] = "Crushridge Ogre", + [2253] = "Crushridge Brute", + [2254] = "Crushridge Mauler", + [2255] = "Crushridge Mage", + [2256] = "Crushridge Enforcer", + [2257] = "Mug\'thol", + [2258] = "Stone Fury", + [2260] = "Syndicate Rogue", + [2261] = "Syndicate Watchman", + [2263] = "Marshal Redpath", + [2264] = "Hillsbrad Tailor", + [2265] = "Hillsbrad Apprentice Blacksmith", + [2266] = "Hillsbrad Farmer", + [2267] = "Hillsbrad Peasant", + [2268] = "Hillsbrad Footman", + [2269] = "Hillsbrad Miner", + [2270] = "Hillsbrad Sentry", + [2271] = "Dalaran Shield Guard", + [2272] = "Dalaran Theurgist", + [2274] = "Stanley", + [2275] = "Enraged Stanley", + [2276] = "Magistrate Henry Maleb", + [2277] = "Loremaster Dibbs", + [2278] = "Melisara", + [2279] = "Alliance Battleguard", + [2280] = "Horde Battleguard", + [2281] = "Baelish Frostbane", + [2282] = "[PH] Orgrun Iceflow", + [2283] = "Ravenclaw Regent", + [2284] = "Captured Farmer", + [2285] = "Count Remington Ridgewell", + [2286] = "Bow Guy", + [2287] = "Crushridge Warmonger", + [2288] = "Skracher Mudmuzzle", + [2289] = "Connor McCoy", + [2290] = "Bertran Keldrake", + [2291] = "Corbin Halman", + [2292] = "Reginald Berry", + [2293] = "[UNUSED] Sherra Vayne", + [2294] = "Jaynice Sillestan", + [2295] = "[UNUSED] Bartok Steelgrip", + [2296] = "[UNUSED] Fulgar Iceforge", + [2297] = "[UNUSED] Kerrik Firebeard", + [2298] = "Dolthar Stonefoot", + [2299] = "Borgus Stoutarm", + [2300] = "[UNUSED] Seoman Verilas", + [2301] = "[UNUSED] Nerrik Shoyul", + [2302] = "Aethalas", + [2303] = "Lyranne Feathersong", + [2304] = "Captain Ironhill", + [2305] = "Foreman Bonds", + [2306] = "Baron Vardus", + [2307] = "Caretaker Caice", + [2308] = "Andrew Brownell", + [2309] = "Thomas Arlento", + [2310] = "Jamie Nore", + [2311] = "Doreen Beltis", + [2312] = "[UNUSED] Thesule Klaven", + [2313] = "[UNUSED] Kir\'Nazz", + [2314] = "Sahvan Bloodshadow", + [2315] = "Maquell Ebonwood", + [2316] = "Gol\'dir", + [2317] = "Elysa", + [2318] = "Argus Shadow Mage", + [2319] = "Syndicate Wizard", + [2320] = "Nagaz", + [2321] = "Foreststrider Fledgling", + [2322] = "Foreststrider", + [2323] = "Giant Foreststrider", + [2324] = "Blackwood Windtalker", + [2325] = "Undead First Aid Trainer", + [2326] = "Thamner Pol", + [2327] = "Shaina Fuller", + [2329] = "Michelle Belle", + [2330] = "Karlee Chaddis", + [2331] = "Paige Chaddis", + [2332] = "Valdred Moray", + [2333] = "Henchman Valik", + [2334] = "Event Generator 001", + [2335] = "Magistrate Burnside", + [2336] = "Dark Strand Fanatic", + [2337] = "Dark Strand Voidcaller", + [2338] = "Twilight Disciple", + [2339] = "Twilight Thug", + [2344] = "Dun Garok Mountaineer", + [2345] = "Dun Garok Rifleman", + [2346] = "Dun Garok Priest", + [2347] = "Wild Gryphon", + [2348] = "Elder Moss Creeper", + [2349] = "Giant Moss Creeper", + [2350] = "Forest Moss Creeper", + [2351] = "Gray Bear", + [2352] = "Innkeeper Anderson", + [2354] = "Vicious Gray Bear", + [2356] = "Elder Gray Bear", + [2357] = "Merideth Carlson", + [2358] = "Dalaran Summoner", + [2359] = "Elemental Slave", + [2360] = "Hillsbrad Farmhand", + [2361] = "Tamara Armstrong", + [2362] = "Hemmit Armstrong", + [2363] = "Apprentice Honeywell", + [2364] = "Neema", + [2365] = "Bront Coldcleave", + [2366] = "Barkeep Kelly", + [2367] = "Donald Rabonne", + [2368] = "Daggerspine Shorestalker", + [2369] = "Daggerspine Shorehunter", + [2370] = "Daggerspine Screamer", + [2371] = "Daggerspine Siren", + [2372] = "Mudsnout Gnoll", + [2373] = "Mudsnout Shaman", + [2374] = "Torn Fin Muckdweller", + [2375] = "Torn Fin Coastrunner", + [2376] = "Torn Fin Oracle", + [2377] = "Torn Fin Tidehunter", + [2378] = "Kundric Zanden", + [2379] = "Caretaker Smithers", + [2380] = "Nandar Branson", + [2381] = "Micha Yance", + [2382] = "Darren Malvew", + [2383] = "Lindea Rabonne", + [2384] = "Starving Mountain Lion", + [2385] = "Feral Mountain Lion", + [2386] = "Southshore Guard", + [2387] = "Hillsbrad Councilman", + [2388] = "Innkeeper Shay", + [2389] = "Zarise", + [2390] = "Aranae Venomblood", + [2391] = "Serge Hinott", + [2392] = "Delia Verana", + [2393] = "Christoph Jeffcoat", + [2394] = "Mallen Swain", + [2395] = "Vinna Wayne", + [2396] = "Hans Zandin", + [2397] = "Derak Nightfall", + [2398] = "Tara Coldgaze", + [2399] = "Daryl Stack", + [2400] = "Craig Hewitt", + [2401] = "Kayren Soothallow", + [2402] = "Shara Blazen", + [2403] = "Farmer Getz", + [2404] = "Blacksmith Verringtan", + [2405] = "Tarren Mill Deathguard", + [2406] = "Mountain Lion", + [2407] = "Hulking Mountain Lion", + [2408] = "Snapjaw", + [2409] = "Felicia Maline", + [2410] = "Magus Wordeen Voidglare", + [2411] = "Ricter", + [2412] = "Alina", + [2413] = "Dermot", + [2414] = "Kegan Darkmar", + [2415] = "Warden Belamoore", + [2416] = "Crushridge Plunderer", + [2417] = "Grel\'borg the Miser", + [2418] = "Deathguard Samsa", + [2419] = "Deathguard Humbert", + [2420] = "Targ", + [2421] = "Muckrake", + [2422] = "Glommus", + [2423] = "Lord Aliden Perenolde", + [2424] = "Test Banker", + [2425] = "Varimathras", + [2427] = "Jailor Eston", + [2428] = "Jailor Marlgen", + [2429] = "Novice Thaivand", + [2430] = "Chef Jessen", + [2431] = "Jailor Borhuin", + [2432] = "Darla Harris", + [2433] = "Helcular\'s Remains", + [2434] = "Shadowy Assassin", + [2435] = "Southshore Crier", + [2436] = "Farmer Kent", + [2437] = "Keeper Bel\'varil", + [2438] = "Bartolo Ginsetti", + [2439] = "Major Samuelson", + [2440] = "Drunken Footpad", + [2441] = "[UNUSED] Southshore Citizen", + [2442] = "Cow", + [2447] = "Narillasanz", + [2448] = "Clerk Horrace Whitesteed", + [2449] = "Citizen Wilkes", + [2450] = "Miner Hackett", + [2451] = "Farmer Kalaba", + [2452] = "Skhowl", + [2453] = "Lo\'Grosh", + [2454] = "Skeletal Fiend (Enraged Form)", + [2455] = "Olivia Burnside", + [2456] = "Newton Burnside", + [2457] = "John Burnside", + [2458] = "Randolph Montague", + [2459] = "Mortimer Montague", + [2460] = "Barnum Stonemantle", + [2461] = "Bailey Stonemantle", + [2462] = "Flesh Eating Worm", + [2464] = "Commander Aggro\'gosh", + [2465] = "Far Seer Mok\'thardin", + [2466] = "Mountaineer Grugelm", + [2468] = "Mountaineer Thar", + [2469] = "Mountaineer Rharen", + [2470] = "Watcher Fraizer", + [2472] = "Flamescale Drake", + [2473] = "Granistad", + [2474] = "Kurdros", + [2475] = "Sloth", + [2476] = "Large Loch Crocolisk", + [2477] = "Gradok", + [2478] = "Haren Swifthoof", + [2479] = "Sludge", + [2480] = "Bro\'kin", + [2481] = "Bliztik", + [2482] = "Zarena Cromwind", + [2483] = "Jaquilina Dramet", + [2485] = "Larimaine Purdue", + [2486] = "Fin Fizracket", + [2487] = "Fleet Master Seahorn", + [2488] = "Deeg", + [2489] = "Milstaff Stormeye", + [2490] = "First Mate Crazz", + [2491] = "Whiskey Slim", + [2492] = "Lexington Mortaim", + [2493] = "Dizzy One-Eye", + [2494] = "Privateer Bloads", + [2495] = "Drizzlik", + [2496] = "Baron Revilgaz", + [2497] = "Nimboya", + [2498] = "Crank Fizzlebub", + [2499] = "Markel Smythe", + [2500] = "Captain Hecklebury Smotts", + [2501] = "\"Sea Wolf\" MacKinley", + [2502] = "\"Shaky\" Phillipe", + [2503] = "Hillsbrad Foreman", + [2504] = "Donyal Tovald", + [2505] = "Saltwater Snapjaw", + [2506] = "Mountaineer Harn", + [2507] = "Mountaineer Uthan", + [2508] = "Mountaineer Wuar", + [2509] = "Mountaineer Cragg", + [2510] = "Mountaineer Ozmok", + [2511] = "Mountaineer Bludd", + [2512] = "Mountaineer Roghan", + [2513] = "Mountaineer Janha", + [2514] = "Mountaineer Modax", + [2515] = "Mountaineer Fazgard", + [2516] = "Mountaineer Kamdar", + [2517] = "Mountaineer Langarr", + [2518] = "Mountaineer Swarth", + [2519] = "Kin\'weelay", + [2520] = "Remote-Controlled Golem", + [2521] = "Skymane Gorilla", + [2522] = "Jaguero Stalker", + [2523] = "Searing Totem", + [2524] = "Mountaineer Haggis", + [2525] = "Mountaineer Barn", + [2526] = "Mountaineer Morlic", + [2527] = "Mountaineer Angst", + [2528] = "Mountaineer Haggil", + [2529] = "Son of Arugal", + [2530] = "Yenniku", + [2531] = "Minion of Morganth", + [2532] = "Donna", + [2533] = "William", + [2534] = "Zanzil the Outcast", + [2535] = "Maury \"Club Foot\" Wilkins", + [2536] = "Jon-Jon the Crow", + [2537] = "Chucky \"Ten Thumbs\"", + [2540] = "Dalaran Serpent", + [2541] = "Lord Sakrasis", + [2542] = "Catelyn the Blade", + [2543] = "Archmage Ansirem Runeweaver", + [2544] = "Southern Sand Crawler", + [2545] = "\"Pretty Boy\" Duncan", + [2546] = "Fleet Master Firallon", + [2547] = "Ironpatch", + [2548] = "Captain Keelhaul", + [2549] = "Garr Salthoof", + [2550] = "Captain Stillwater", + [2551] = "Brutus", + [2552] = "Witherbark Troll", + [2553] = "Witherbark Shadowcaster", + [2554] = "Witherbark Axe Thrower", + [2555] = "Witherbark Witch Doctor", + [2556] = "Witherbark Headhunter", + [2557] = "Witherbark Shadow Hunter", + [2558] = "Witherbark Berserker", + [2559] = "Highland Strider", + [2560] = "Highland Thrasher", + [2561] = "Highland Fleshstalker", + [2562] = "Boulderfist Ogre", + [2563] = "Plains Creeper", + [2564] = "Boulderfist Enforcer", + [2565] = "Giant Plains Creeper", + [2566] = "Boulderfist Brute", + [2567] = "Boulderfist Magus", + [2569] = "Boulderfist Mauler", + [2570] = "Boulderfist Shaman", + [2571] = "Boulderfist Lord", + [2572] = "Drywhisker Kobold", + [2573] = "Drywhisker Surveyor", + [2574] = "Drywhisker Digger", + [2575] = "Dark Iron Supplier", + [2577] = "Dark Iron Shadowcaster", + [2578] = "Young Mesa Buzzard", + [2579] = "Mesa Buzzard", + [2580] = "Elder Mesa Buzzard", + [2581] = "Dabyrie Militia", + [2582] = "Dabyrie Laborer", + [2583] = "Stromgarde Troll Hunter", + [2584] = "Stromgarde Defender", + [2585] = "Stromgarde Vindicator", + [2586] = "Syndicate Highwayman", + [2587] = "Syndicate Pathstalker", + [2588] = "Syndicate Prowler", + [2589] = "Syndicate Mercenary", + [2590] = "Syndicate Conjuror", + [2591] = "Syndicate Magus", + [2592] = "Rumbling Exile", + [2593] = "Rough Stone Elemental", + [2594] = "Sprogger", + [2595] = "Daggerspine Raider", + [2596] = "Daggerspine Sorceress", + [2597] = "Lord Falconcrest", + [2598] = "Darbel Montrose", + [2599] = "Otto", + [2600] = "Singer", + [2601] = "Foulbelly", + [2602] = "Ruul Onestone", + [2603] = "Kovork", + [2604] = "Molok the Crusher", + [2605] = "Zalas Witherbark", + [2606] = "Nimar the Slayer", + [2607] = "Prince Galen Trollbane", + [2608] = "Commander Amaren", + [2609] = "Geomancer Flintdagger", + [2610] = "Shakes O\'Breen", + [2611] = "Fozruk", + [2612] = "Lieutenant Valorcall", + [2614] = "[UNUSED] Stromgarde Horseman", + [2615] = "[UNUSED] Stromgarde Roughrider", + [2616] = "Privateer Groy", + [2617] = "[UNUSED] Archmage Detrae", + [2618] = "Hammerfall Peon", + [2619] = "Hammerfall Grunt", + [2620] = "Prairie Dog", + [2621] = "Hammerfall Guardian", + [2622] = "Sly Garrett", + [2623] = "Spirit of Old", + [2624] = "Gazban", + [2625] = "Viznik Goldgrubber", + [2626] = "Old Man Heming", + [2627] = "Grarnik Goodstitch", + [2628] = "Dalaran Worker", + [2630] = "Earthbind Totem", + [2634] = "Princess Poobah", + [2635] = "Elder Saltwater Crocolisk", + [2636] = "Blackwater Deckhand", + [2637] = "Syndicate Bomb", + [2638] = "Syndicate Spectre", + [2639] = "Vilebranch Axe Thrower", + [2640] = "Vilebranch Witch Doctor", + [2641] = "Vilebranch Headhunter", + [2642] = "Vilebranch Shadowcaster", + [2643] = "Vilebranch Berserker", + [2644] = "Vilebranch Hideskinner", + [2645] = "Vilebranch Shadow Hunter", + [2646] = "Vilebranch Blood Drinker", + [2647] = "Vilebranch Soul Eater", + [2648] = "Vilebranch Aman\'zasi Guard", + [2649] = "Witherbark Scalper", + [2650] = "Witherbark Zealot", + [2651] = "Witherbark Hideskinner", + [2652] = "Witherbark Venomblood", + [2653] = "Witherbark Sadist", + [2654] = "Witherbark Caller", + [2655] = "Green Sludge", + [2656] = "Jade Ooze", + [2657] = "Trained Razorbeak", + [2658] = "Razorbeak Gryphon", + [2659] = "Razorbeak Skylord", + [2662] = "Port Master Szik", + [2663] = "Narkk", + [2664] = "Kelsey Yance", + [2665] = "Proximity Bomb", + [2667] = "Ward of Laze", + [2668] = "Danielle Zipstitch", + [2669] = "Sheri Zipstitch", + [2670] = "Xizk Goodstitch", + [2671] = "Mechanical Squirrel", + [2672] = "Cowardly Crosby", + [2673] = "Target Dummy", + [2674] = "Advanced Target Dummy", + [2675] = "Explosive Sheep", + [2676] = "Compact Harvest Reaper", + [2678] = "Mechanical Dragonling", + [2679] = "Wenna Silkbeard", + [2680] = "Vilebranch Wolf Pup", + [2681] = "Vilebranch Raiding Wolf", + [2682] = "Fradd Swiftgear", + [2683] = "Namdo Bizzfizzle", + [2684] = "Rizz Loosebolt", + [2685] = "Mazk Snipeshot", + [2686] = "Witherbark Broodguard", + [2687] = "Gnaz Blunderflame", + [2688] = "Ruppo Zipcoil", + [2689] = "Hill Giant", + [2690] = "Hill Giant Warden", + [2691] = "Highvale Outrunner", + [2692] = "Highvale Scout", + [2693] = "Highvale Marksman", + [2694] = "Highvale Ranger", + [2695] = "Sara Balloo", + [2696] = "Foggy MacKreel", + [2697] = "Clyde Ranthal", + [2698] = "George Candarte", + [2699] = "Rikqiz", + [2700] = "Captain Nials", + [2701] = "Dustbelcher Ogre", + [2702] = "Felhunter Trainer", + [2703] = "Zengu", + [2704] = "Hanashi", + [2705] = "Brewmeister Bilger", + [2706] = "Tor\'gan", + [2707] = "Shadra", + [2708] = "Archmage Malin", + [2709] = "Imp Trainer", + [2710] = "Voidwalker Trainer", + [2711] = "Phin Odelic", + [2712] = "Quae", + [2713] = "Kinelory", + [2714] = "Forsaken Courier", + [2715] = "Dustbelcher Brute", + [2716] = "Dustbelcher Wyrmhunter", + [2717] = "Dustbelcher Mauler", + [2718] = "Dustbelcher Shaman", + [2719] = "Dustbelcher Lord", + [2720] = "Dustbelcher Ogre Mage", + [2721] = "Forsaken Bodyguard", + [2723] = "Stone Golem", + [2725] = "Scalding Whelp", + [2726] = "Scorched Guardian", + [2727] = "Crag Coyote", + [2728] = "Feral Crag Coyote", + [2729] = "Elder Crag Coyote", + [2730] = "Rabid Crag Coyote", + [2731] = "Ridge Stalker", + [2732] = "Ridge Huntress", + [2733] = "Apothecary Jorell", + [2734] = "Ridge Stalker Patriarch", + [2735] = "Lesser Rock Elemental", + [2736] = "Greater Rock Elemental", + [2737] = "Durtham Greldon", + [2738] = "Stromgarde Cavalryman", + [2739] = "Shadowforge Tunneler", + [2740] = "Shadowforge Darkweaver", + [2741] = "Shadowforge Excavator", + [2742] = "Shadowforge Chanter", + [2743] = "Shadowforge Warrior", + [2744] = "Shadowforge Commander", + [2745] = "Ambassador Infernus", + [2746] = "Stonevault Warden", + [2748] = "Archaedas", + [2749] = "Siege Golem", + [2751] = "War Golem", + [2752] = "Rumbler", + [2753] = "Barnabus", + [2754] = "Anathemus", + [2755] = "Myzrael", + [2756] = "UNUSED Grund Drokda", + [2757] = "Blacklash", + [2759] = "Hematus", + [2760] = "Burning Exile", + [2761] = "Cresting Exile", + [2762] = "Thundering Exile", + [2763] = "Thenan", + [2764] = "Sleeby", + [2765] = "Znort", + [2766] = "Lolo the Lookout", + [2767] = "First Mate Nilzlix", + [2768] = "Professor Phizzlethorpe", + [2769] = "Captain Steelgut", + [2770] = "Tallow", + [2771] = "Drum Fel", + [2772] = "Korin Fel", + [2773] = "Or\'Kalar", + [2774] = "Doctor Draxlegauge", + [2775] = "Daggerspine Marauder", + [2776] = "Vengeful Surge", + [2778] = "Deckhand Moishe", + [2779] = "Prince Nazjak", + [2780] = "Caretaker Nevlin", + [2781] = "Caretaker Weston", + [2782] = "Caretaker Alaric", + [2783] = "Marez Cowl", + [2784] = "King Magni Bronzebeard", + [2785] = "Theldurin the Lost", + [2786] = "Gerrig Bonegrip", + [2787] = "Zaruk", + [2788] = "Apprentice Kryten", + [2789] = "Skuerto", + [2790] = "Grand Mason Marblesten", + [2791] = "Enraged Rock Elemental", + [2792] = "Gor\'mul", + [2793] = "Kor\'gresh Coldrage", + [2794] = "Summoned Guardian", + [2795] = "Lenny \"Fingers\" McCoy", + [2796] = "Faelyssa", + [2797] = "Hovrak Gutrender", + [2798] = "Pand Stonebinder", + [2799] = "Lucian Fenner", + [2801] = "Tresa MacGregor", + [2802] = "Susan Tillinghast", + [2803] = "Malygen", + [2804] = "Kurden Bloodclaw", + [2805] = "Deneb Walker", + [2806] = "Bale", + [2807] = "Daggerspine Wavecaller", + [2808] = "Vikki Lonsav", + [2809] = "Boar", + [2810] = "Hammon Karwn", + [2812] = "Drovnar Strongbrew", + [2813] = "[UNUSED] Thurgas", + [2814] = "Narj Deepslice", + [2815] = "[UNUSED] Teresa Shore", + [2816] = "Androd Fadran", + [2817] = "Rigglefuzz", + [2818] = "Slagg", + [2819] = "Tunkk", + [2820] = "Graud", + [2821] = "Keena", + [2829] = "Starving Buzzard", + [2830] = "Buzzard", + [2831] = "Giant Buzzard", + [2832] = "Nixxrax Fillamug", + [2833] = "DEBUG - Gossip Gryphon Master", + [2834] = "Myizz Luckycatch", + [2835] = "Cedrik Prose", + [2836] = "Brikk Keencraft", + [2837] = "Jaxin Chong", + [2838] = "Crazk Sparks", + [2839] = "Haren Kanmae", + [2840] = "Kizz Bluntstrike", + [2842] = "Wigcik", + [2843] = "Jutak", + [2844] = "Hurklor", + [2845] = "Fargon Mortalak", + [2846] = "Blixrez Goodstitch", + [2847] = "Jansen Underwood", + [2848] = "Glyx Brewright", + [2849] = "Qixdi Goodstitch", + [2850] = "Broken Tooth", + [2851] = "Urda", + [2852] = "Enslaved Druid of the Talon", + [2853] = "Freed Druid of the Talon", + [2855] = "Snang", + [2856] = "Angrun", + [2857] = "Thund", + [2858] = "Gringer", + [2859] = "Gyll", + [2860] = "Sigrun Ironhew", + [2861] = "Gorrik", + [2862] = "Warrior 21", + [2863] = "Warrior 22", + [2864] = "Warrior 23", + [2865] = "Warrior 24", + [2866] = "Warrior 26", + [2867] = "Warrior 27", + [2868] = "Warrior 28", + [2869] = "Warrior 29", + [2870] = "[UNUSED] Henria Derth", + [2871] = "[PH] Tallstrider Trainer", + [2872] = "[UNUSED] Whaldak Darbenk", + [2873] = "[PH] Raptor Trainer", + [2874] = "[PH] Horse Trainer", + [2875] = "[PH] Gorilla Trainer", + [2876] = "Grunenstur Balindom", + [2877] = "[PH] Crawler Trainer", + [2878] = "Peria Lamenur", + [2879] = "Karrina Mekenda", + [2880] = "[UNUSED] Hurom Juggendolf", + [2881] = "[UNUSED] Durdek Karrin", + [2883] = "[UNUSED] [PH] Monster Slayer Trainer", + [2885] = "[UNUSED] [PH] Magic Skills Trainer", + [2886] = "Ranged Skills Trainer", + [2887] = "Prismatic Exile", + [2888] = "Garek", + [2889] = "Stonevault Trogg", + [2890] = "Stonevault Scout", + [2891] = "Stonevault Skullthumper", + [2892] = "Stonevault Seer", + [2893] = "Stonevault Bonesnapper", + [2894] = "Stonevault Shaman", + [2896] = "[PH] Alliance Magic Skills Trainer", + [2899] = "[PH] Alliance Toughness/Resist Trainer", + [2906] = "Dustbelcher Warrior", + [2907] = "Dustbelcher Mystic", + [2908] = "Grawl", + [2909] = "Hammertoe Grez", + [2910] = "Prospector Ryedol", + [2911] = "Archaeologist Flagongut", + [2912] = "Chief Archaeologist Greywhisker", + [2913] = "Archaeologist Hollee", + [2914] = "Snake", + [2915] = "Hammertoe\'s Spirit", + [2916] = "Historian Karnik", + [2917] = "Prospector Remtravel", + [2918] = "Advisor Belgrum", + [2919] = "Fam\'retor Guardian", + [2920] = "Lucien Tosselwrench", + [2921] = "Lotwil Veriatus", + [2922] = "Servo", + [2923] = "Mangy Silvermane", + [2924] = "Silvermane Wolf", + [2925] = "Silvermane Howler", + [2926] = "Silvermane Stalker", + [2927] = "Vicious Owlbeast", + [2928] = "Primitive Owlbeast", + [2929] = "Savage Owlbeast", + [2930] = "Sentinel Glynda Nal\'Shea", + [2931] = "Zaricotl", + [2932] = "Magregan Deepshadow", + [2934] = "Keeper Bel\'dugur", + [2935] = "[PH] Demon Master", + [2937] = "Dagun the Ravenous", + [2938] = "Aldric Hunter", + [2939] = "Jackson Bayne", + [2940] = "[UNUSED] Frank Ward", + [2941] = "Lanie Reed", + [2942] = "Dylan Bissel", + [2943] = "Ransin Donner", + [2944] = "Boss Tho\'grun", + [2945] = "Murdaloc", + [2946] = "Puppet of Helcular", + [2947] = "Harken Windtotem", + [2948] = "Mull Thunderhorn", + [2949] = "Palemane Tanner", + [2950] = "Palemane Skinner", + [2951] = "Palemane Poacher", + [2952] = "Bristleback Quilboar", + [2953] = "Bristleback Shaman", + [2954] = "Bristleback Battleboar", + [2955] = "Plainstrider", + [2956] = "Adult Plainstrider", + [2957] = "Elder Plainstrider", + [2958] = "Prairie Wolf", + [2959] = "Prairie Stalker", + [2960] = "Prairie Wolf Alpha", + [2961] = "Mountain Cougar", + [2962] = "Windfury Harpy", + [2963] = "Windfury Wind Witch", + [2964] = "Windfury Sorceress", + [2965] = "Windfury Matriarch", + [2966] = "Battleboar", + [2967] = "Galak Centaur", + [2968] = "Galak Outrunner", + [2969] = "Wiry Swoop", + [2970] = "Swoop", + [2971] = "Taloned Swoop", + [2972] = "Kodo Calf", + [2973] = "Kodo Bull", + [2974] = "Kodo Matriarch", + [2975] = "Venture Co. Hireling", + [2976] = "Venture Co. Laborer", + [2977] = "Venture Co. Taskmaster", + [2978] = "Venture Co. Worker", + [2979] = "Venture Co. Supervisor", + [2980] = "Grull Hawkwind", + [2981] = "Chief Hawkwind", + [2982] = "Seer Graytongue", + [2983] = "The Plains Vision", + [2984] = "Seer Wiserunner", + [2985] = "Ruul Eagletalon", + [2986] = "Dorn Plainstalker", + [2987] = "Eyahn Eagletalon", + [2988] = "Morin Cloudstalker", + [2989] = "Bael\'dun Digger", + [2990] = "Bael\'dun Appraiser", + [2991] = "Greatmother Hawkwind", + [2992] = "Healing Ward V", + [2993] = "Baine Bloodhoof", + [2994] = "Ancestral Spirit", + [2995] = "Tal", + [2996] = "Torn", + [2997] = "Jyn Stonehoof", + [2998] = "Karn Stonehoof", + [2999] = "Taur Stonehoof", + [3000] = "Gibbert", + [3001] = "Brek Stonehoof", + [3002] = "Kurm Stonehoof", + [3003] = "Fyr Mistrunner", + [3004] = "Tepa", + [3005] = "Mahu", + [3007] = "Una", + [3008] = "Mak", + [3009] = "Bena Winterhoof", + [3010] = "Mani Winterhoof", + [3011] = "Teg Dawnstrider", + [3012] = "Nata Dawnstrider", + [3013] = "Komin Winterhoof", + [3014] = "Nida Winterhoof", + [3015] = "Kuna Thunderhorn", + [3016] = "Tand", + [3017] = "Nan Mistrunner", + [3018] = "Hogor Thunderhoof", + [3019] = "Delgo Ragetotem", + [3020] = "Etu Ragetotem", + [3021] = "Kard Ragetotem", + [3022] = "Sunn Ragetotem", + [3023] = "Sura Wildmane", + [3024] = "Tah Winterhoof", + [3025] = "Kaga Mistrunner", + [3026] = "Aska Mistrunner", + [3027] = "Naal Mistrunner", + [3028] = "Kah Mistrunner", + [3029] = "Sewa Mistrunner", + [3030] = "Siln Skychaser", + [3031] = "Tigor Skychaser", + [3032] = "Beram Skychaser", + [3033] = "Turak Runetotem", + [3034] = "Sheal Runetotem", + [3035] = "Flatland Cougar", + [3036] = "Kym Wildmane", + [3037] = "Sheza Wildmane", + [3038] = "Kary Thunderhorn", + [3039] = "Holt Thunderhorn", + [3040] = "Urek Thunderhorn", + [3041] = "Torm Ragetotem", + [3042] = "Sark Ragetotem", + [3043] = "Ker Ragetotem", + [3044] = "Miles Welsh", + [3045] = "Malakai Cross", + [3046] = "Father Cobb", + [3047] = "Archmage Shymm", + [3048] = "Ursyn Ghull", + [3049] = "Thurston Xane", + [3050] = "Veren Tallstrider", + [3051] = "Supervisor Fizsprocket", + [3052] = "Skorn Whitecloud", + [3053] = "Synge", + [3054] = "Zarlman Two-Moons", + [3055] = "Maur Raincaller", + [3056] = "Ghost Howl", + [3057] = "Cairne Bloodhoof", + [3058] = "Arra\'chea", + [3059] = "Harutt Thunderhorn", + [3060] = "Gart Mistrunner", + [3061] = "Lanka Farshot", + [3062] = "Meela Dawnstrider", + [3063] = "Krang Stonehoof", + [3064] = "Gennia Runetotem", + [3065] = "Yaw Sharpmane", + [3066] = "Narm Skychaser", + [3067] = "Pyall Silentstride", + [3068] = "Mazzranache", + [3069] = "Chaw Stronghide", + [3070] = "[UNUSED] [PH] Mulgore Alchemy Trainer", + [3071] = "[UNUSED] [PH] Mulgore Herbalism Trainer", + [3072] = "Kawnie Softbreeze", + [3073] = "Marjak Keenblade", + [3074] = "Varia Hardhide", + [3075] = "Bronk Steelrage", + [3076] = "Moorat Longstride", + [3077] = "Mahnott Roughwound", + [3078] = "Kennah Hawkseye", + [3079] = "Varg Windwhisper", + [3080] = "Harant Ironbrace", + [3081] = "Wunna Darkmane", + [3082] = "[UNUSED] Narache Guard", + [3083] = "Honor Guard", + [3084] = "Bluffwatcher", + [3085] = "Gloria Femmel", + [3086] = "Gretchen Vogel", + [3087] = "Crystal Boughman", + [3088] = "Henry Chapal", + [3089] = "Sherman Femmel", + [3090] = "Gerald Crawley", + [3091] = "Franklin Hamar", + [3092] = "Tagain", + [3093] = "Grod", + [3094] = "Unseen", + [3095] = "Fela", + [3096] = "Captured Servant of Azora", + [3097] = "Bernard Brubaker", + [3098] = "Mottled Boar", + [3099] = "Dire Mottled Boar", + [3100] = "Elder Mottled Boar", + [3101] = "Vile Familiar", + [3102] = "Felstalker", + [3103] = "Makrura Clacker", + [3104] = "Makrura Shellhide", + [3105] = "Makrura Snapclaw", + [3106] = "Pygmy Surf Crawler", + [3107] = "Surf Crawler", + [3108] = "Encrusted Surf Crawler", + [3110] = "Dreadmaw Crocolisk", + [3111] = "Razormane Quilboar", + [3112] = "Razormane Scout", + [3113] = "Razormane Dustrunner", + [3114] = "Razormane Battleguard", + [3115] = "Dustwind Harpy", + [3116] = "Dustwind Pillager", + [3117] = "Dustwind Savage", + [3118] = "Dustwind Storm Witch", + [3119] = "Kolkar Drudge", + [3120] = "Kolkar Outrunner", + [3121] = "Durotar Tiger", + [3122] = "Bloodtalon Taillasher", + [3123] = "Bloodtalon Scythemaw", + [3124] = "Scorpid Worker", + [3125] = "Clattering Scorpid", + [3126] = "Armored Scorpid", + [3127] = "Venomtail Scorpid", + [3128] = "Kul Tiras Sailor", + [3129] = "Kul Tiras Marine", + [3130] = "Thunder Lizard", + [3131] = "Lightning Hide", + [3133] = "Herble Baubbletump", + [3134] = "Kzixx", + [3135] = "Malissa", + [3136] = "Clarise Gnarltree", + [3137] = "Matt Johnson", + [3138] = "Scott Carevin", + [3139] = "Gar\'Thok", + [3140] = "Lar Prowltusk", + [3141] = "Makrura Elder", + [3142] = "Orgnil Soulscar", + [3143] = "Gornek", + [3144] = "Eitrigg", + [3145] = "Zureetha Fargaze", + [3146] = "Gurek", + [3147] = "Furl Scornbrow", + [3148] = "[UNUSED] Torc the Orc", + [3149] = "Nez\'raz", + [3150] = "Hin Denburg", + [3151] = "Captain Obvious", + [3152] = "Cap\'n Copyright", + [3153] = "Frang", + [3154] = "Jen\'shan", + [3155] = "Rwag", + [3156] = "Nartok", + [3157] = "Shikrik", + [3158] = "Duokna", + [3159] = "Kzan Thornslash", + [3160] = "Huklah", + [3161] = "Rarc", + [3162] = "Burdrak Harglhelm", + [3163] = "Uhgar", + [3164] = "Jark", + [3165] = "Ghrawt", + [3166] = "Cutac", + [3167] = "Wuark", + [3168] = "Flakk", + [3169] = "Tarshaw Jaggedscar", + [3170] = "Kaplak", + [3171] = "Thotar", + [3172] = "Dhugru Gorelust", + [3173] = "Swart", + [3174] = "Dwukk", + [3175] = "Krunn", + [3176] = "[UNUSED] [PH] Durotar Engineering Trainer", + [3177] = "Turuk Amberstill", + [3178] = "Stuart Fleming", + [3179] = "Harold Riggs", + [3180] = "Dark Iron Entrepreneur", + [3181] = "Fremal Doohickey", + [3182] = "Junder Brokk", + [3183] = "Yarrog Baneshadow", + [3184] = "Miao\'zan", + [3185] = "Mishiki", + [3186] = "K\'waii", + [3187] = "Tai\'tasi", + [3188] = "Master Gadrin", + [3189] = "Kor\'ghan", + [3190] = "Rhinag", + [3191] = "Cook Torka", + [3192] = "Lieutenant Benedict", + [3193] = "Misha Tor\'kren", + [3194] = "Vel\'rin Fang", + [3195] = "Burning Blade Thug", + [3196] = "Burning Blade Neophyte", + [3197] = "Burning Blade Fanatic", + [3198] = "Burning Blade Apprentice", + [3199] = "Burning Blade Cultist", + [3200] = "Eric\'s AAA Special Vendor", + [3201] = "SM Test Mob", + [3202] = "[UNUSED] Josh Test", + [3203] = "Fizzle Darkstorm", + [3204] = "Gazz\'uz", + [3205] = "Zalazane", + [3206] = "Voodoo Troll", + [3207] = "Hexed Troll", + [3208] = "Margoz", + [3209] = "Brave Windfeather", + [3210] = "Brave Proudsnout", + [3211] = "Brave Lightninghorn", + [3212] = "Brave Ironhorn", + [3213] = "Brave Running Wolf", + [3214] = "Brave Greathoof", + [3215] = "Brave Strongbash", + [3216] = "Neeru Fireblade", + [3217] = "Brave Dawneagle", + [3218] = "Brave Swiftwind", + [3219] = "Brave Leaping Deer", + [3220] = "Brave Darksky", + [3221] = "Brave Rockhorn", + [3222] = "Brave Wildrunner", + [3223] = "Brave Rainchaser", + [3224] = "Brave Cloudmane", + [3225] = "Corrupted Mottled Boar", + [3226] = "Corrupted Scorpid", + [3227] = "Corrupted Bloodtalon Scythemaw", + [3228] = "Corrupted Surf Crawler", + [3229] = "\"Squealer\" Thornmantle", + [3230] = "Nazgrel", + [3231] = "Corrupted Dreadmaw Crocolisk", + [3232] = "Bristleback Interloper", + [3233] = "Lorekeeper Raintotem", + [3234] = "Lost Barrens Kodo", + [3235] = "Greater Barrens Kodo", + [3236] = "Barrens Kodo", + [3237] = "Wooly Kodo", + [3238] = "Stormhide", + [3239] = "Thunderhead", + [3240] = "Stormsnout", + [3241] = "Savannah Patriarch", + [3242] = "Zhevra Runner", + [3243] = "Savannah Highmane", + [3244] = "Greater Plainstrider", + [3245] = "Ornery Plainstrider", + [3246] = "Fleeting Plainstrider", + [3247] = "Thunderhawk Hatchling", + [3248] = "Barrens Giraffe", + [3249] = "Greater Thunderhawk", + [3250] = "Silithid Creeper", + [3251] = "Silithid Grub", + [3252] = "Silithid Swarmer", + [3253] = "Silithid Harvester", + [3254] = "Sunscale Lashtail", + [3255] = "Sunscale Screecher", + [3256] = "Sunscale Scytheclaw", + [3257] = "Ishamuhale", + [3258] = "Bristleback Hunter", + [3259] = "Bristleback Defender", + [3260] = "Bristleback Water Seeker", + [3261] = "Bristleback Thornweaver", + [3262] = "Bristleback Mystic", + [3263] = "Bristleback Geomancer", + [3265] = "Razormane Hunter", + [3266] = "Razormane Defender", + [3267] = "Razormane Water Seeker", + [3268] = "Razormane Thornweaver", + [3269] = "Razormane Geomancer", + [3270] = "Elder Mystic Razorsnout", + [3271] = "Razormane Mystic", + [3272] = "Kolkar Wrangler", + [3273] = "Kolkar Stormer", + [3274] = "Kolkar Pack Runner", + [3275] = "Kolkar Marauder", + [3276] = "Witchwing Harpy", + [3277] = "Witchwing Roguefeather", + [3278] = "Witchwing Slayer", + [3279] = "Witchwing Ambusher", + [3280] = "Witchwing Windcaller", + [3281] = "Sarkoth", + [3282] = "Venture Co. Mercenary", + [3283] = "Venture Co. Enforcer", + [3284] = "Venture Co. Drudger", + [3285] = "Venture Co. Peon", + [3286] = "Venture Co. Overseer", + [3287] = "Hana\'zua", + [3289] = "Spirit of Minshina", + [3290] = "Deek Fizzlebizz", + [3291] = "Greishan Ironstove", + [3292] = "Brewmaster Drohn", + [3293] = "Rezlak", + [3294] = "Ophek", + [3295] = "Sludge Beast", + [3296] = "Orgrimmar Grunt", + [3297] = "Sen\'jin Watcher", + [3298] = "Gabrielle Chase", + [3299] = "[UNUSED] Antione LeMarca", + [3300] = "Adder", + [3301] = "Morgan Ladimore", + [3302] = "[UNUSED] Korl", + [3303] = "[UNUSED] Marna", + [3304] = "Master Vornal", + [3305] = "Grisha", + [3306] = "Keldas", + [3307] = "[UNUSED] Orgrun Blacktusk", + [3309] = "Karus", + [3310] = "Doras", + [3312] = "Olvia", + [3313] = "Trak\'gen", + [3314] = "Urtharo", + [3315] = "Tor\'phan", + [3316] = "Handor", + [3317] = "Ollanus", + [3318] = "Koma", + [3319] = "Sana", + [3320] = "Soran", + [3321] = "Morgum", + [3322] = "Kaja", + [3323] = "Horthus", + [3324] = "Grol\'dar", + [3325] = "Mirket", + [3326] = "Zevrost", + [3327] = "Gest", + [3328] = "Ormok", + [3329] = "Kor\'jus", + [3330] = "Muragus", + [3331] = "Kareth", + [3332] = "Lumak", + [3333] = "Shankys", + [3334] = "Rekkul", + [3335] = "Hagrus", + [3336] = "Takrin Pathseeker", + [3337] = "Kargal Battlescar", + [3338] = "Sergra Darkthorn", + [3339] = "Captain Thalo\'thas Brightsun", + [3341] = "Gann Stonespire", + [3342] = "Shan\'ti", + [3343] = "Grelkor", + [3344] = "Kardris Dreamseeker", + [3345] = "Godan", + [3346] = "Kithas", + [3347] = "Yelmak", + [3348] = "Kor\'geld", + [3349] = "Ukra\'nor", + [3350] = "Asoran", + [3351] = "Magenius", + [3352] = "Ormak Grimshot", + [3353] = "Grezz Ragefist", + [3354] = "Sorek", + [3355] = "Saru Steelfury", + [3356] = "Sumi", + [3357] = "Makaru", + [3358] = "Gorina", + [3359] = "Kiro", + [3360] = "Koru", + [3361] = "Shoma", + [3362] = "Ogunaro Wolfrunner", + [3363] = "Magar", + [3364] = "Borya", + [3365] = "Karolek", + [3366] = "Tamar", + [3367] = "Felika", + [3368] = "Borstan", + [3369] = "Gotri", + [3370] = "Urtrun Clanbringer", + [3371] = "Tamaro", + [3372] = "Sarlek", + [3373] = "Arnok", + [3374] = "Bael\'dun Excavator", + [3375] = "Bael\'dun Foreman", + [3376] = "Bael\'dun Soldier", + [3377] = "Bael\'dun Rifleman", + [3378] = "Bael\'dun Officer", + [3379] = "Burning Blade Bruiser", + [3380] = "Burning Blade Acolyte", + [3381] = "Southsea Brigand", + [3382] = "Southsea Cannoneer", + [3383] = "Southsea Cutthroat", + [3384] = "Southsea Privateer", + [3385] = "Theramore Marine", + [3386] = "Theramore Preserver", + [3387] = "Jorn Skyseer", + [3388] = "Mahren Skyseer", + [3389] = "Regthar Deathgate", + [3390] = "Apothecary Helbrim", + [3391] = "Gazlowe", + [3392] = "Prospector Khazgorm", + [3393] = "Captain Fairmount", + [3394] = "Barak Kodobane", + [3395] = "Verog the Dervish", + [3396] = "Hezrul Bloodmark", + [3397] = "Kolkar Bloodcharger", + [3398] = "Gesharahan", + [3399] = "Zamja", + [3400] = "Xen\'to", + [3401] = "Shenthul", + [3402] = "Zando\'zan", + [3403] = "Sian\'tsu", + [3404] = "Jandi", + [3405] = "Zeal\'aya", + [3406] = "Xor\'juul", + [3407] = "Sian\'dur", + [3408] = "Zel\'mak", + [3409] = "Zendo\'jian", + [3410] = "Jin\'sora", + [3411] = "Denni\'ka", + [3412] = "Nogg", + [3413] = "Sovik", + [3414] = "General Twinbraid", + [3415] = "Savannah Huntress", + [3416] = "Savannah Matriarch", + [3417] = "Living Flame", + [3418] = "Kirge Sternhorn", + [3419] = "Apothecary Zamah", + [3420] = "[UNUSED] Ancestral Watcher", + [3421] = "Feegly the Exiled", + [3424] = "Thunderhawk Cloudscraper", + [3425] = "Savannah Prowler", + [3426] = "Zhevra Charger", + [3427] = "[UNUSED] Kendur", + [3428] = "Korran", + [3429] = "Thork", + [3430] = "Mangletooth", + [3431] = "Grenthar", + [3432] = "Mankrik", + [3433] = "Tatternack Steelforge", + [3434] = "Nak", + [3435] = "Lok Orcbane", + [3436] = "Kuz", + [3437] = "Crekori Mudwater", + [3438] = "Kreenig Snarlsnout", + [3439] = "Wizzlecrank\'s Shredder", + [3440] = "[UNUSED] Ancestral Sage", + [3441] = "Melor Stonehoof", + [3442] = "Sputtervalve", + [3443] = "Grub", + [3444] = "Dig Rat", + [3445] = "Supervisor Lugwizzle", + [3446] = "Mebok Mizzyrix", + [3447] = "Pawe Mistrunner", + [3448] = "Tonga Runetotem", + [3449] = "Darsok Swiftdagger", + [3450] = "Defias Companion", + [3451] = "Pilot Wizzlecrank", + [3452] = "Serena Bloodfeather", + [3453] = "Wharfmaster Dizzywig", + [3454] = "Cannoneer Smythe", + [3455] = "Cannoneer Whessan", + [3456] = "Razormane Pathfinder", + [3457] = "Razormane Stalker", + [3458] = "Razormane Seer", + [3459] = "Razormane Warfrenzy", + [3460] = "Mud Crawler", + [3461] = "Oasis Snapjaw", + [3462] = "Elder Barrens Giraffe", + [3463] = "Wandering Barrens Giraffe", + [3464] = "Gazrog", + [3465] = "Gilthares Firebough", + [3466] = "Zhevra Courser", + [3467] = "Baron Longshore", + [3468] = "Ancient of Lore", + [3469] = "Ancient of War", + [3470] = "Rathorian", + [3471] = "Tinkerer Sniggles", + [3472] = "Washte Pawne", + [3473] = "Owatanka", + [3474] = "Lakota\'mani", + [3475] = "Echeyakee", + [3476] = "Isha Awak", + [3477] = "Hraq", + [3478] = "Traugh", + [3479] = "Nargal Deatheye", + [3480] = "Moorane Hearthgrain", + [3481] = "Barg", + [3482] = "Tari\'qa", + [3483] = "Jahan Hawkwing", + [3484] = "Kil\'hala", + [3485] = "Wrahk", + [3486] = "Halija Whitestrider", + [3487] = "Kalyimah Stormcloud", + [3488] = "Uthrok", + [3489] = "Zargh", + [3490] = "Hula\'mahi", + [3491] = "Ironzar", + [3492] = "Vexspindle", + [3493] = "Grazlix", + [3494] = "Tinkerwiz", + [3495] = "Gagsprocket", + [3496] = "Fuzruckle", + [3497] = "Kilxx", + [3498] = "Jazzik", + [3499] = "Ranik", + [3500] = "Tarhus", + [3501] = "Horde Guard", + [3502] = "Ratchet Bruiser", + [3503] = "Silithid Protector", + [3504] = "Gil", + [3505] = "Pat", + [3507] = "Andi", + [3508] = "Mikey", + [3509] = "Geoff", + [3510] = "Twain", + [3511] = "Steven", + [3512] = "Jimmy", + [3513] = "Miss Danna", + [3514] = "Tenaron Stormgrip", + [3515] = "Corithras Moonrage", + [3516] = "Arch Druid Fandral Staghelm", + [3517] = "Rellian Greenspyre", + [3518] = "Thomas Miller", + [3519] = "Sentinel Arynia Cloudsbreak", + [3520] = "Ol\' Emma", + [3521] = "Ak\'Zeloth", + [3522] = "Constance Brisboise", + [3523] = "Bowen Brisboise", + [3524] = "Spirit Wolf", + [3525] = "[UNUSED] Turtle Trainer", + [3527] = "Healing Stream Totem", + [3528] = "Pyrewood Armorer", + [3529] = "Moonrage Armorer", + [3530] = "Pyrewood Tailor", + [3531] = "Moonrage Tailor", + [3532] = "Pyrewood Leatherworker", + [3533] = "Moonrage Leatherworker", + [3534] = "Wallace the Blind", + [3535] = "Blackmoss the Fetid", + [3536] = "Kris Legace", + [3537] = "Zixil", + [3538] = "Overwatch Mark I", + [3539] = "Ott", + [3540] = "Hal McAllister", + [3541] = "Sarah Raycroft", + [3542] = "Jaysin Lanyda", + [3543] = "Robert Aebischer", + [3544] = "Jason Lemieux", + [3545] = "Claude Erksine", + [3546] = "Bernie Heisten", + [3547] = "Hamlin Atkins", + [3548] = "Selina Weston", + [3549] = "Shelene Rhobart", + [3550] = "Martine Tramblay", + [3551] = "Patrice Dwyer", + [3552] = "Alexandre Lefevre", + [3553] = "Sebastian Meloche", + [3554] = "Andrea Boynton", + [3555] = "Johan Focht", + [3556] = "Andrew Hilbert", + [3557] = "Guillaume Sorouy", + [3558] = "[UNUSED] Temp Poisoning Vendor Undead", + [3559] = "Temp Poisoning Vendor Dwarf", + [3560] = "Healing Ward", + [3561] = "Kyrai", + [3562] = "Alaindia", + [3564] = "Temp Reagent Vendor Dwarf", + [3565] = "[UNUSED] Temp Reagent Vendor Undead", + [3566] = "Flatland Prowler", + [3567] = "Tallonkai Swiftroot", + [3568] = "Mist", + [3569] = "Bogling", + [3570] = "Cleansed Timberling", + [3571] = "Teldrassil Sentinel", + [3572] = "Zizzek", + [3573] = "Mana Spring Totem", + [3574] = "Riding Bat", + [3575] = "Praenus Raxxeus", + [3577] = "Dalaran Brewmaster", + [3578] = "Dalaran Miner", + [3579] = "Stoneclaw Totem", + [3580] = "Invisibility Totem", + [3581] = "Sewer Beast", + [3582] = "Aman", + [3583] = "Barithras Moonshade", + [3584] = "Therylune", + [3585] = "Therysil", + [3586] = "Miner Johnson", + [3587] = "Lyrai", + [3588] = "Khardan Proudblade", + [3589] = "Keina", + [3590] = "Janna Brightmoon", + [3591] = "Freja Nightwing", + [3592] = "Andiss", + [3593] = "Alyissia", + [3594] = "Frahun Shadewhisper", + [3595] = "Shanda", + [3596] = "Ayanna Everstride", + [3597] = "Mardant Strongoak", + [3598] = "Kyra Windblade", + [3599] = "Jannok Breezesong", + [3600] = "Laurna Morninglight", + [3601] = "Dazalar", + [3602] = "Kal", + [3603] = "Cyndra Kindwhisper", + [3604] = "Malorne Bladeleaf", + [3605] = "Nadyia Maneweaver", + [3606] = "Alanna Raveneye", + [3607] = "Androl Oakhand", + [3608] = "Aldia", + [3609] = "Shalomon", + [3610] = "Jeena Featherbow", + [3611] = "Brannol Eaglemoon", + [3612] = "Sinda", + [3613] = "Meri Ironweave", + [3614] = "Narret Shadowgrove", + [3615] = "Devrak", + [3616] = "Onu", + [3617] = "Lordaeron Citizen", + [3619] = "Ghost Saber", + [3620] = "Harruk", + [3621] = "Kurll", + [3622] = "Grokor", + [3623] = "[UNUSED] Tursk", + [3624] = "Zudd", + [3625] = "Rarck", + [3626] = "Jenn Langston", + [3627] = "Erich Lohan", + [3628] = "Steven Lohan", + [3629] = "David Langston", + [3630] = "Deviate Coiler", + [3631] = "Deviate Stinglash", + [3632] = "Deviate Creeper", + [3633] = "Deviate Slayer", + [3634] = "Deviate Stalker", + [3636] = "Deviate Ravager", + [3637] = "Deviate Guardian", + [3638] = "Devouring Ectoplasm", + [3639] = "Sentinel Tysha Moonblade", + [3640] = "Evolving Ectoplasm", + [3641] = "Deviate Lurker", + [3642] = "Deviate Horror", + [3644] = "Cerellean Whiteclaw", + [3649] = "Thundris Windweaver", + [3650] = "Asterion", + [3651] = "[UNUSED] Kolkar Observer", + [3652] = "Trigore the Lasher", + [3653] = "Kresh", + [3654] = "Mutanus the Devourer", + [3655] = "Mad Magglish", + [3657] = "Sentinel Elissa Starbreeze", + [3658] = "Lizzarik", + [3659] = "Jorb", + [3660] = "Athrikus Narassin", + [3661] = "Balthule Shadowstrike", + [3662] = "Delmanis the Hated", + [3663] = "Delgren the Purifier", + [3664] = "Ilkrud Magthrull", + [3665] = "Crane Operator Bigglefuzz", + [3666] = "Wizbang Cranktoggle", + [3667] = "Anaya Dawnrunner", + [3668] = "Tortured Highborne Soul", + [3669] = "Lord Cobrahn", + [3670] = "Lord Pythas", + [3671] = "Lady Anacondra", + [3672] = "Boahn", + [3673] = "Lord Serpentis", + [3674] = "Skum", + [3678] = "Disciple of Naralex", + [3679] = "Naralex", + [3680] = "Serpentbloom Snake", + [3681] = "Wisp", + [3682] = "Vrang Wildgore", + [3683] = "Kiknikle", + [3684] = "Pizznukle", + [3685] = "Harb Clawhoof", + [3688] = "Reban Freerunner", + [3689] = "Laer Stepperunner", + [3690] = "Kar Stormsinger", + [3691] = "Raene Wolfrunner", + [3692] = "Volcor", + [3693] = "Terenthis", + [3694] = "Sentinel Selarin", + [3695] = "Grimclaw", + [3696] = "Ran Bloodtooth", + [3697] = "Kyln Longclaw", + [3698] = "Bolyun", + [3699] = "Nerra", + [3700] = "Jadenvis Seawatcher", + [3701] = "Tharnariun Treetender", + [3702] = "Alanndarian Nightsong", + [3703] = "Krulmoo Fullmoon", + [3704] = "Mahani", + [3705] = "Gahroot", + [3706] = "Tai\'jin", + [3707] = "Ken\'jai", + [3708] = "Gruna", + [3711] = "Wrathtail Myrmidon", + [3712] = "Wrathtail Razortail", + [3713] = "Wrathtail Wave Rider", + [3715] = "Wrathtail Sea Witch", + [3717] = "Wrathtail Sorceress", + [3718] = "[UNUSED] Wrathtail Tide Princess", + [3721] = "Mystlash Hydra", + [3722] = "Mystlash Flayer", + [3725] = "Dark Strand Cultist", + [3727] = "Dark Strand Enforcer", + [3728] = "Dark Strand Adept", + [3730] = "Dark Strand Excavator", + [3732] = "Forsaken Seeker", + [3733] = "Forsaken Herbalist", + [3734] = "Forsaken Thug", + [3735] = "Apothecary Falthis", + [3736] = "Darkslayer Mordenthal", + [3737] = "Saltspittle Puddlejumper", + [3739] = "Saltspittle Warrior", + [3740] = "Saltspittle Muckdweller", + [3742] = "Saltspittle Oracle", + [3743] = "Foulweald Warrior", + [3745] = "Foulweald Pathfinder", + [3746] = "Foulweald Den Watcher", + [3748] = "Foulweald Shaman", + [3749] = "Foulweald Ursa", + [3750] = "Foulweald Totemic", + [3752] = "Xavian Rogue", + [3754] = "Xavian Betrayer", + [3755] = "Xavian Felsworn", + [3757] = "Xavian Hellcaller", + [3758] = "Felmusk Satyr", + [3759] = "Felmusk Rogue", + [3762] = "Felmusk Felsworn", + [3763] = "Felmusk Shadowstalker", + [3765] = "Bleakheart Satyr", + [3767] = "Bleakheart Trickster", + [3770] = "Bleakheart Shadowstalker", + [3771] = "Bleakheart Hellcaller", + [3772] = "Lesser Felguard", + [3773] = "Akkrilus", + [3774] = "Felslayer", + [3777] = "Aelyssa", + [3778] = "Myielea Starwhisper", + [3779] = "Syurana", + [3780] = "Shadethicket Moss Eater", + [3781] = "Shadethicket Wood Shaper", + [3782] = "Shadethicket Stone Mover", + [3783] = "Shadethicket Raincaller", + [3784] = "Shadethicket Bark Ripper", + [3789] = "Terrowulf Fleshripper", + [3791] = "Terrowulf Shadow Weaver", + [3792] = "Terrowulf Packlord", + [3793] = "Initiate Druid", + [3794] = "Druid of the Talon", + [3795] = "Druid of the Claw", + [3796] = "Druid of the Wild", + [3797] = "Cenarion Protector", + [3799] = "Severed Druid", + [3801] = "Severed Sleeper", + [3802] = "Severed Dreamer", + [3803] = "Severed Keeper", + [3804] = "Forsaken Intruder", + [3806] = "Forsaken Infiltrator", + [3807] = "Forsaken Assassin", + [3808] = "Forsaken Dark Stalker", + [3809] = "Ashenvale Bear", + [3810] = "Elder Ashenvale Bear", + [3811] = "Giant Ashenvale Bear", + [3812] = "Clattering Crawler", + [3814] = "Spined Crawler", + [3815] = "Blink Dragon", + [3816] = "Wild Buck", + [3817] = "Shadowhorn Stag", + [3818] = "Elder Shadowhorn Stag", + [3819] = "Wildthorn Stalker", + [3820] = "Wildthorn Venomspitter", + [3821] = "Wildthorn Lurker", + [3823] = "Ghostpaw Runner", + [3824] = "Ghostpaw Howler", + [3825] = "Ghostpaw Alpha", + [3826] = "Rabid Ghostpaw", + [3831] = "[UNUSED] Ancient Guardian", + [3832] = "Cenarion Steward", + [3833] = "Cenarion Vindicator", + [3834] = "Crazed Ancient", + [3835] = "Biletoad", + [3836] = "Mountaineer Pebblebitty", + [3837] = "Riding Hippogryph", + [3838] = "Vesprystus", + [3839] = "Voidlasher", + [3840] = "Druid of the Fang", + [3841] = "Caylais Moonfeather", + [3842] = "Brombar Higgleby", + [3843] = "Anaya", + [3844] = "Healing Ward IV", + [3845] = "Shindrell Swiftfire", + [3846] = "Talen", + [3847] = "Orendil Broadleaf", + [3848] = "Kayneth Stillwind", + [3849] = "Deathstalker Adamant", + [3850] = "Sorcerer Ashcrombe", + [3851] = "Shadowfang Whitescalp", + [3852] = "Shadowfang Bloodhowler", + [3853] = "Shadowfang Moonwalker", + [3854] = "Shadowfang Wolfguard", + [3855] = "Shadowfang Darksoul", + [3857] = "Shadowfang Glutton", + [3859] = "Shadowfang Ragetooth", + [3860] = "Shadowfang Tainted One", + [3861] = "Bleak Worg", + [3862] = "Slavering Worg", + [3863] = "Lupine Horror", + [3864] = "Fel Steed", + [3865] = "Shadow Charger", + [3866] = "Vile Bat", + [3868] = "Blood Seeker", + [3869] = "Lesser Gargoyle", + [3870] = "Stone Sleeper", + [3872] = "Deathsworn Captain", + [3873] = "Tormented Officer", + [3875] = "Haunted Servitor", + [3876] = "Traumatized Spirit", + [3877] = "Wailing Guardsman", + [3878] = "Magthrull\'s Doomguard", + [3879] = "Dark Strand Assassin", + [3880] = "Sentinel Melyria Frostshadow", + [3881] = "Grimtak", + [3882] = "Zlagk", + [3883] = "Moodan Sungrain", + [3884] = "Jhawna Oatwind", + [3885] = "Sentinel Velene Starstrike", + [3886] = "Razorclaw the Butcher", + [3887] = "Baron Silverlaine", + [3888] = "Korra", + [3890] = "Brakgul Deathbringer", + [3891] = "Teronis\' Corpse", + [3892] = "Relara Whitemoon", + [3893] = "Forsaken Scout", + [3894] = "Pelturas Whitemoon", + [3895] = "Captain Noteo", + [3896] = "Captain Hart", + [3897] = "Krolg", + [3898] = "Aligar the Tormentor", + [3899] = "Balizar the Umbrage", + [3900] = "Caedakar the Vicious", + [3901] = "Illiyana", + [3902] = "Searing Totem II", + [3903] = "Searing Totem III", + [3904] = "Searing Totem IV", + [3906] = "Healing Stream Totem II", + [3907] = "Healing Stream Totem III", + [3908] = "Healing Stream Totem IV", + [3909] = "Healing Stream Totem V", + [3911] = "Stoneclaw Totem II", + [3912] = "Stoneclaw Totem III", + [3913] = "Stoneclaw Totem IV", + [3914] = "Rethilgore", + [3915] = "Dagri", + [3916] = "Shael\'dryn", + [3917] = "Befouled Water Elemental", + [3919] = "Withered Ancient", + [3920] = "Anilia", + [3921] = "Thistlefur Ursa", + [3922] = "Thistlefur Totemic", + [3923] = "Thistlefur Den Watcher", + [3924] = "Thistlefur Shaman", + [3925] = "Thistlefur Avenger", + [3926] = "Thistlefur Pathfinder", + [3927] = "Wolf Master Nandos", + [3928] = "Rotting Slime", + [3931] = "Shadethicket Oracle", + [3932] = "Bloodtooth Guard", + [3933] = "Hai\'zan", + [3934] = "Innkeeper Boorand Plainswind", + [3935] = "Toddrick", + [3936] = "Shandris Feathermoon", + [3937] = "Kira Songshine", + [3938] = "Roth Bluntblade", + [3939] = "Razormane Wolf", + [3940] = "Taneel Darkwood", + [3941] = "Uthil Mooncall", + [3942] = "Mavoris Cloudsbreak", + [3943] = "Ruuzel", + [3944] = "Wrathtail Priestess", + [3945] = "Caravaneer Ruzzgot", + [3946] = "Velinde Starsong", + [3947] = "Goblin Shipbuilder", + [3948] = "Honni Goldenoat", + [3950] = "Minor Water Guardian", + [3951] = "Bhaldaran Ravenshade", + [3952] = "Aeolynn", + [3953] = "Tandaan Lightmane", + [3954] = "Dalria", + [3955] = "Shandrina", + [3956] = "Harklan Moongrove", + [3957] = "Jainay Featherbreeze", + [3958] = "Lardan", + [3959] = "Nantar", + [3960] = "Ulthaan", + [3961] = "Maliynn", + [3962] = "Haljan Oakheart", + [3963] = "Danlaar Nightstride", + [3964] = "Kylanna", + [3965] = "Cylania Rootstalker", + [3966] = "Kaleem", + [3967] = "Aayndia Floralwind", + [3968] = "Sentry Totem", + [3969] = "Fahran Silentblade", + [3970] = "Llana", + [3971] = "Agro 5", + [3972] = "Agro 7", + [3973] = "Agro 10", + [3974] = "Houndmaster Loksey", + [3975] = "Herod", + [3976] = "Scarlet Commander Mograine", + [3977] = "High Inquisitor Whitemane", + [3978] = "Sage Truthseeker", + [3979] = "Librarian Mae Paledust", + [3980] = "Raleigh the Devout", + [3981] = "Vorrel Sengutz", + [3982] = "Monika Sengutz", + [3983] = "Interrogator Vishas", + [3984] = "Nancy Vishas", + [3985] = "Grandpa Vishas", + [3986] = "Sarilus Foulborne", + [3987] = "Dal Bloodclaw", + [3988] = "Venture Co. Operator", + [3989] = "Venture Co. Logger", + [3990] = "Venture Co. Cutter", + [3991] = "Venture Co. Deforester", + [3992] = "Venture Co. Engineer", + [3993] = "Venture Co. Machine Smith", + [3994] = "Keeper Albagorm", + [3995] = "Witch Doctor Jin\'Zil", + [3996] = "Faldreas Goeth\'Shael", + [3997] = "Venture Co. Overboss", + [3998] = "Windshear Vermin", + [3999] = "Windshear Digger", + [4001] = "Windshear Tunnel Rat", + [4002] = "Windshear Stonecutter", + [4003] = "Windshear Geomancer", + [4004] = "Windshear Overlord", + [4005] = "Deepmoss Creeper", + [4006] = "Deepmoss Webspinner", + [4007] = "Deepmoss Venomspitter", + [4008] = "Cliff Stormer", + [4009] = "Raging Cliff Stormer", + [4011] = "Young Pridewing", + [4012] = "Pridewing Wyvern", + [4013] = "Pridewing Skyhunter", + [4014] = "Pridewing Consort", + [4015] = "Pridewing Patriarch", + [4016] = "Fey Dragon", + [4017] = "Wily Fey Dragon", + [4018] = "Antlered Courser", + [4019] = "Great Courser", + [4020] = "Sap Beast", + [4021] = "Corrosive Sap Beast", + [4022] = "Bloodfury Harpy", + [4023] = "Bloodfury Roguefeather", + [4024] = "Bloodfury Slayer", + [4025] = "Bloodfury Ambusher", + [4026] = "Bloodfury Windcaller", + [4027] = "Bloodfury Storm Witch", + [4028] = "Charred Ancient", + [4029] = "Blackened Ancient", + [4030] = "Vengeful Ancient", + [4031] = "Fledgling Chimaera", + [4032] = "Young Chimaera", + [4033] = "Charred Stone Spirit", + [4034] = "Enraged Stone Spirit", + [4035] = "Furious Stone Spirit", + [4036] = "Rogue Flame Spirit", + [4037] = "Burning Ravager", + [4038] = "Burning Destroyer", + [4039] = "Dinnis", + [4040] = "Cave Stalker", + [4041] = "Scorched Basilisk", + [4042] = "Singed Basilisk", + [4043] = "Galthuk", + [4044] = "Blackened Basilisk", + [4045] = "[UNUSED] JEFF CHOW TEST", + [4046] = "Magatha Grimtotem", + [4047] = "Zor Lonetree", + [4048] = "Falfindel Waywarder", + [4049] = "Seereth Stonebreak", + [4050] = "Cenarion Caretaker", + [4051] = "Cenarion Botanist", + [4052] = "Cenarion Druid", + [4053] = "Daughter of Cenarius", + [4054] = "Laughing Sister", + [4055] = "Mirkfallon Glade Strider", + [4056] = "Mirkfallon Keeper", + [4057] = "Son of Cenarius", + [4059] = "Forest Spirit", + [4061] = "Mirkfallon Dryad", + [4062] = "Dark Iron Bombardier", + [4063] = "Feeboz", + [4064] = "Blackrock Scout", + [4065] = "Blackrock Sentry", + [4066] = "Nal\'taszar", + [4067] = "Twilight Runner", + [4068] = "Serpent Messenger", + [4069] = "Venture Co. Planner", + [4070] = "Venture Co. Builder", + [4071] = "Venture Co. Grinder", + [4072] = "Prisoner of Jin\'Zil", + [4073] = "XT:4", + [4074] = "XT:9", + [4075] = "Rat", + [4076] = "Roach", + [4077] = "Gaxim Rustfizzle", + [4078] = "Collin Mauren", + [4079] = "Sentinel Thenysil", + [4080] = "Kaela Shadowspear", + [4081] = "Lomac Gearstrip", + [4082] = "Grawnal", + [4083] = "Jeeda", + [4084] = "Chylina", + [4085] = "Nizzik", + [4086] = "Veenix", + [4087] = "Arias\'ta Bladesinger", + [4088] = "Elanaria", + [4089] = "Sildanair", + [4090] = "Astarii Starseeker", + [4091] = "Jandria", + [4092] = "Lariia", + [4093] = "Galak Wrangler", + [4094] = "Galak Scout", + [4095] = "Galak Mauler", + [4096] = "Galak Windchaser", + [4097] = "Galak Stormer", + [4098] = "Galak Pack Runner", + [4099] = "Galak Marauder", + [4100] = "Screeching Harpy", + [4101] = "Screeching Roguefeather", + [4104] = "Screeching Windcaller", + [4107] = "Highperch Wyvern", + [4109] = "Highperch Consort", + [4110] = "Highperch Patriarch", + [4111] = "Gravelsnout Kobold", + [4112] = "Gravelsnout Vermin", + [4113] = "Gravelsnout Digger", + [4114] = "Gravelsnout Forager", + [4115] = "[UNUSED] Gravelsnout Ambusher", + [4116] = "Gravelsnout Surveyor", + [4117] = "Cloud Serpent", + [4118] = "Venomous Cloud Serpent", + [4119] = "Elder Cloud Serpent", + [4120] = "Thundering Boulderkin", + [4121] = "Wandering Boulderkin", + [4124] = "Needles Cougar", + [4126] = "Crag Stalker", + [4127] = "Hecklefang Hyena", + [4128] = "Hecklefang Stalker", + [4129] = "Hecklefang Snarler", + [4130] = "Silithid Searcher", + [4131] = "Silithid Invader", + [4132] = "Silithid Ravager", + [4133] = "Silithid Hive Drone", + [4138] = "Jeen\'ra Nightrunner", + [4139] = "Scorpid Terror", + [4140] = "Scorpid Reaver", + [4142] = "Sparkleshell Tortoise", + [4143] = "Sparkleshell Snapper", + [4144] = "Sparkleshell Borer", + [4146] = "Jocaste", + [4147] = "Saltstone Basilisk", + [4149] = "Kesteryth", + [4150] = "Saltstone Gazer", + [4151] = "Saltstone Crystalhide", + [4153] = "Kysandia", + [4154] = "Salt Flats Scavenger", + [4155] = "Idriana", + [4156] = "Astaia", + [4157] = "Kitari Farseeker", + [4158] = "Salt Flats Vulture", + [4159] = "Me\'lynn", + [4160] = "Ainethil", + [4161] = "Lysheana", + [4163] = "Syurna", + [4164] = "Cylania", + [4165] = "Elissa Dumas", + [4166] = "Gazelle", + [4167] = "Dendrythis", + [4168] = "Elynna", + [4169] = "Jaeana", + [4170] = "Ellandrieth", + [4171] = "Merelyssa", + [4172] = "Anadyia", + [4173] = "Landria", + [4174] = "Siannai", + [4175] = "Vinasia", + [4176] = "Ki\'rasia", + [4177] = "Melea", + [4178] = "Shaia", + [4179] = "Freillania", + [4180] = "Ealyshia Dewwhisper", + [4181] = "Fyrenna", + [4182] = "Dalmond", + [4183] = "Naram Longclaw", + [4184] = "Geenia Sunshadow", + [4185] = "Shaldyn", + [4186] = "Mavralyn", + [4187] = "Harlon Thornguard", + [4188] = "Illyanie", + [4189] = "Valdaron", + [4190] = "Kyndri", + [4191] = "Allyndia", + [4192] = "Taldan", + [4193] = "Grondal Moonbreeze", + [4194] = "Ullanna", + [4195] = "Tiyani", + [4196] = "Silithid Swarm", + [4197] = "Ken\'zigla", + [4198] = "Braelyn Firehand", + [4200] = "Laird", + [4201] = "Ziz Fizziks", + [4202] = "Gerenzo Wrenchwhistle", + [4203] = "Ariyell Skyshadow", + [4204] = "Firodren Mooncaller", + [4205] = "Dorion", + [4206] = "Talar", + [4207] = "Valyen Wolfsong", + [4208] = "Lairn", + [4209] = "Garryeth", + [4210] = "Alegorn", + [4211] = "Dannelor", + [4212] = "Telonis", + [4213] = "Taladan", + [4214] = "Erion Shadewhisper", + [4215] = "Anishar", + [4216] = "Chardryn", + [4217] = "Mathrengyl Bearwalker", + [4218] = "Denatharion", + [4219] = "Fylerian Nightwing", + [4220] = "Cyroen", + [4221] = "Talaelar", + [4222] = "Voloren", + [4223] = "Fyldan", + [4224] = "Talegon", + [4225] = "Saenorion", + [4226] = "Ulthir", + [4228] = "Vaean", + [4229] = "Mythrin\'dir", + [4230] = "Yldan", + [4231] = "Kieran", + [4232] = "Glorandiir", + [4233] = "Mythidan", + [4234] = "Andrus", + [4235] = "Turian", + [4236] = "Cyridan", + [4237] = "Urthoniir", + [4239] = "Lewin Starfeather", + [4240] = "Caynrus", + [4241] = "Mydrannul", + [4242] = "Frostsaber Companion", + [4243] = "Nightshade", + [4244] = "Shadow", + [4245] = "Mistrunner", + [4246] = "Moonprowler", + [4247] = "Stonepaw", + [4248] = "Pesterhide Hyena", + [4249] = "Pesterhide Snarler", + [4250] = "Galak Packhound", + [4251] = "Goblin Racer", + [4252] = "Gnome Racer", + [4253] = "Bear Form (Night Elf Druid)", + [4254] = "Geofram Bouldertoe", + [4255] = "Brogus Thunderbrew", + [4256] = "Golnir Bouldertoe", + [4257] = "Lana Thunderbrew", + [4258] = "Bengus Deepforge", + [4259] = "Thurgrum Deepforge", + [4260] = "Venture Co. Shredder", + [4261] = "Bear Form (Tauren Druid)", + [4262] = "Darnassus Sentinel", + [4263] = "Deepmoss Hatchling", + [4264] = "Deepmoss Matriarch", + [4265] = "Nyoma", + [4266] = "Danlyia", + [4267] = "Daelyshia", + [4268] = "Riding Wolf (Gray)", + [4269] = "Riding Horse (Chestnut)", + [4270] = "Riding Wolf (Red)", + [4271] = "Riding Wolf (DarkGray)", + [4272] = "Riding Wolf (DarkBrown)", + [4273] = "Keeper Ordanus", + [4274] = "Fenrus the Devourer", + [4275] = "Archmage Arugal", + [4276] = "Piznik", + [4277] = "Eye of Kilrogg", + [4278] = "Commander Springvale", + [4279] = "Odo the Blindwatcher", + [4280] = "Scarlet Preserver", + [4281] = "Scarlet Scout", + [4282] = "Scarlet Magician", + [4283] = "Scarlet Sentry", + [4284] = "Scarlet Augur", + [4285] = "Scarlet Disciple", + [4286] = "Scarlet Soldier", + [4287] = "Scarlet Gallant", + [4288] = "Scarlet Beastmaster", + [4289] = "Scarlet Evoker", + [4290] = "Scarlet Guardsman", + [4291] = "Scarlet Diviner", + [4292] = "Scarlet Protector", + [4293] = "Scarlet Scryer", + [4294] = "Scarlet Sorcerer", + [4295] = "Scarlet Myrmidon", + [4296] = "Scarlet Adept", + [4297] = "Scarlet Conjuror", + [4298] = "Scarlet Defender", + [4299] = "Scarlet Chaplain", + [4300] = "Scarlet Wizard", + [4301] = "Scarlet Centurion", + [4302] = "Scarlet Champion", + [4303] = "Scarlet Abbot", + [4304] = "Scarlet Tracking Hound", + [4305] = "Kriggon Talsone", + [4306] = "Scarlet Torturer", + [4307] = "Heldan Galesong", + [4308] = "Unfettered Spirit", + [4309] = "Gorm Grimtotem", + [4310] = "Cor Grimtotem", + [4311] = "Holgar Stormaxe", + [4312] = "Tharm", + [4313] = "[UNUSED] [PH] Ambassador Saylaton Gravehoof", + [4314] = "Gorkas", + [4315] = "[UNUSED] Guthrin Gravehoof", + [4316] = "Kolkar Packhound", + [4317] = "Nyse", + [4318] = "[UNUSED] Delyka", + [4319] = "Thyssiana", + [4320] = "Caelyb", + [4321] = "Baldruc", + [4322] = "Corthryn", + [4323] = "Searing Hatchling", + [4324] = "Searing Whelp", + [4328] = "Firemane Scalebane", + [4329] = "Firemane Scout", + [4331] = "Firemane Ash Tail", + [4333] = "Firemane Devourer", + [4334] = "Firemane Flamecaller", + [4339] = "Brimgore", + [4340] = "Mirallia", + [4341] = "Drywallow Crocolisk", + [4342] = "Drywallow Vicejaw", + [4343] = "Drywallow Snapper", + [4344] = "Mottled Drywallow Crocolisk", + [4345] = "Drywallow Daggermaw", + [4346] = "Noxious Flayer", + [4347] = "Noxious Reaver", + [4348] = "Noxious Shredder", + [4351] = "Bloodfen Raptor", + [4352] = "Bloodfen Screecher", + [4355] = "Bloodfen Scytheclaw", + [4356] = "Bloodfen Razormaw", + [4357] = "Bloodfen Lashtail", + [4358] = "Mirefin Puddlejumper", + [4359] = "Mirefin Murloc", + [4360] = "Mirefin Warrior", + [4361] = "Mirefin Muckdweller", + [4362] = "Mirefin Coastrunner", + [4363] = "Mirefin Oracle", + [4364] = "Strashaz Warrior", + [4366] = "Strashaz Serpent Guard", + [4368] = "Strashaz Myrmidon", + [4370] = "Strashaz Sorceress", + [4371] = "Strashaz Siren", + [4374] = "Strashaz Hydra", + [4376] = "Darkmist Spider", + [4377] = "Darkmist Lurker", + [4378] = "Darkmist Recluse", + [4379] = "Darkmist Silkspinner", + [4380] = "Darkmist Widow", + [4382] = "Withervine Creeper", + [4385] = "Withervine Rager", + [4386] = "Withervine Bark Ripper", + [4387] = "Withervine Mire Beast", + [4388] = "Young Murk Thresher", + [4389] = "Murk Thresher", + [4390] = "Elder Murk Thresher", + [4391] = "Swamp Ooze", + [4392] = "Corrosive Swamp Ooze", + [4393] = "Acidic Swamp Ooze", + [4394] = "Bubbling Swamp Ooze", + [4395] = "Blistering Swamp Ooze", + [4396] = "Mudrock Tortoise", + [4397] = "Mudrock Spikeshell", + [4398] = "Mudrock Burrower", + [4399] = "Mudrock Borer", + [4400] = "Mudrock Snapjaw", + [4401] = "Muckshell Clacker", + [4402] = "Muckshell Snapclaw", + [4403] = "Muckshell Pincer", + [4404] = "Muckshell Scrabbler", + [4405] = "Muckshell Razorclaw", + [4407] = "Teloren", + [4408] = "Aquatic Form (Night Elf Druid)", + [4409] = "Gatekeeper Kordurus", + [4410] = "Aquatic Form (Tauren Druid)", + [4411] = "Darkfang Lurker", + [4412] = "Darkfang Creeper", + [4413] = "Darkfang Spider", + [4414] = "Darkfang Venomspitter", + [4415] = "Giant Darkfang Spider", + [4416] = "Defias Strip Miner", + [4417] = "Defias Taskmaster", + [4418] = "Defias Wizard", + [4419] = "Race Master Kronkrider", + [4420] = "Overlord Ramtusk", + [4421] = "Charlga Razorflank", + [4422] = "Agathelos the Raging", + [4423] = "Darnassian Protector", + [4424] = "Aggem Thorncurse", + [4425] = "Blind Hunter", + [4427] = "Ward Guardian", + [4428] = "Death Speaker Jargba", + [4429] = "Goblin Pit Crewman", + [4430] = "Gnome Pit Crewman", + [4435] = "Razorfen Warrior", + [4436] = "Razorfen Quilguard", + [4437] = "Razorfen Warden", + [4438] = "Razorfen Spearhide", + [4439] = "[UNUSED] Charlga\'s Bodyguard", + [4440] = "Razorfen Totemic", + [4442] = "Razorfen Defender", + [4443] = "Wazza", + [4444] = "Deathstalker Vincent", + [4445] = "Griznak", + [4446] = "Mazzer Stripscrew", + [4449] = "Crazzle Sprysprocket", + [4450] = "Rugfizzle", + [4451] = "Auld Stonespire", + [4452] = "Kravel Koalbeard", + [4453] = "Wizzle Brassbolts", + [4454] = "Fizzle Brassbolts", + [4455] = "Red Jack Flint", + [4456] = "Fiora Longears", + [4457] = "Murkgill Forager", + [4458] = "Murkgill Hunter", + [4459] = "Murkgill Oracle", + [4460] = "Murkgill Lord", + [4461] = "Murkgill Warrior", + [4462] = "Blackrock Hunter", + [4463] = "Blackrock Summoner", + [4464] = "Blackrock Gladiator", + [4465] = "Vilebranch Warrior", + [4466] = "Vilebranch Scalper", + [4467] = "Vilebranch Soothsayer", + [4468] = "Jade Sludge", + [4469] = "Emerald Ooze", + [4472] = "Haunting Vision", + [4474] = "Rotting Cadaver", + [4475] = "Blighted Zombie", + [4476] = "Screaming Haunt", + [4479] = "Fardel Dabyrie", + [4480] = "Kenata Dabyrie", + [4481] = "Marcel Dabyrie", + [4482] = "Vilebranch Wolf", + [4483] = "Moktar Krin", + [4484] = "Feero Ironhand", + [4485] = "Belgrom Rockmaul", + [4486] = "Genavie Callow", + [4487] = "Kodiak", + [4488] = "Parqual Fintallas", + [4489] = "Braug Dimspirit", + [4490] = "Grenka Bloodscreech", + [4491] = "Woof", + [4493] = "Scarlet Avenger", + [4494] = "Scarlet Spellbinder", + [4495] = "Gnome Pit Boss", + [4496] = "Goblin Pit Boss", + [4497] = "Captain Quirk", + [4498] = "Maurin Bonesplitter", + [4499] = "Rok\'Alim the Pounder", + [4500] = "Overlord Mok\'Morokk", + [4501] = "Draz\'Zilb", + [4502] = "Tharg", + [4503] = "Mudcrush Durtfeet", + [4504] = "Frostmaw", + [4505] = "Bloodsail Deckhand", + [4506] = "Bloodsail Swabby", + [4507] = "Daisy", + [4508] = "Willix the Importer", + [4509] = "Sargath", + [4510] = "Heralath Fallowbrook", + [4511] = "Agam\'ar", + [4512] = "Rotting Agam\'ar", + [4514] = "Raging Agam\'ar", + [4515] = "Death\'s Head Acolyte", + [4516] = "Death\'s Head Adept", + [4517] = "Death\'s Head Priest", + [4518] = "Death\'s Head Sage", + [4519] = "Death\'s Head Seer", + [4520] = "Razorfen Geomancer", + [4521] = "Treshala Fallowbrook", + [4522] = "Razorfen Dustweaver", + [4523] = "Razorfen Groundshaker", + [4525] = "Razorfen Earthbreaker", + [4526] = "Wind Howler", + [4528] = "Stone Rumbler", + [4530] = "Razorfen Handler", + [4531] = "Razorfen Beast Trainer", + [4532] = "Razorfen Beastmaster", + [4534] = "Tamed Hyena", + [4535] = "Tamed Battleboar", + [4538] = "Kraul Bat", + [4539] = "Greater Kraul Bat", + [4540] = "Scarlet Monk", + [4541] = "Blood of Agamaggan", + [4542] = "High Inquisitor Fairbanks", + [4543] = "Bloodmage Thalnos", + [4544] = "Krueg Skullsplitter", + [4545] = "Nag\'zehn", + [4546] = "Bor\'zehn", + [4547] = "Tarkreu Shadowstalker", + [4548] = "Steelsnap", + [4549] = "William Montague", + [4550] = "Ophelia Montague", + [4551] = "Michael Garrett", + [4552] = "Eunice Burch", + [4553] = "Ronald Burch", + [4554] = "Tawny Grisette", + [4555] = "Eleanor Rusk", + [4556] = "Gordon Wendham", + [4557] = "Louis Warren", + [4558] = "Lauren Newcomb", + [4559] = "Timothy Weldon", + [4560] = "Walter Ellingson", + [4561] = "Daniel Bartlett", + [4562] = "Thomas Mordan", + [4563] = "Kaal Soulreaper", + [4564] = "Luther Pickman", + [4565] = "Richard Kerwin", + [4566] = "Kaelystia Hatebringer", + [4567] = "Pierce Shackleton", + [4568] = "Anastasia Hartwell", + [4569] = "Charles Seaton", + [4570] = "Sydney Upton", + [4571] = "Morley Bates", + [4572] = "Silas Zimmer", + [4573] = "Armand Cromwell", + [4574] = "Lizbeth Cromwell", + [4575] = "Hannah Akeley", + [4576] = "Josef Gregorian", + [4577] = "Millie Gregorian", + [4578] = "Josephine Lister", + [4579] = "[UNUSED] Alexander Lister", + [4580] = "Lucille Castleton", + [4581] = "Salazar Bloch", + [4582] = "Carolyn Ward", + [4583] = "Miles Dexter", + [4584] = "Gregory Charles", + [4585] = "Ezekiel Graves", + [4586] = "Graham Van Talen", + [4587] = "Elizabeth Van Talen", + [4588] = "Arthur Moore", + [4589] = "Joseph Moore", + [4590] = "Jonathan Chambers", + [4591] = "Mary Edras", + [4592] = "Nathaniel Steenwick", + [4593] = "Christoph Walker", + [4594] = "Angela Curthas", + [4595] = "Baltus Fowler", + [4596] = "James Van Brunt", + [4597] = "Samuel Van Brunt", + [4598] = "Brom Killian", + [4599] = "Sarah Killian", + [4600] = "Geoffrey Hartwell", + [4601] = "Francis Eliot", + [4602] = "Benijah Fenner", + [4603] = "Nicholas Atwood", + [4604] = "Abigail Sawyer", + [4605] = "Basil Frye", + [4606] = "Aelthalyste", + [4607] = "Father Lankester", + [4608] = "Father Lazarus", + [4609] = "Doctor Marsh", + [4610] = "Algernon", + [4611] = "Doctor Herbert Halsey", + [4612] = "Boyle", + [4613] = "Christopher Drakul", + [4614] = "Martha Alliestar", + [4615] = "Katrina Alliestar", + [4616] = "Lavinia Crowe", + [4617] = "Thaddeus Webb", + [4618] = "Martek the Exiled", + [4619] = "Geltharis", + [4620] = "Fobeed", + [4621] = "Rebald Yorglun", + [4623] = "Quilguard Champion", + [4624] = "Booty Bay Bruiser", + [4625] = "Death\'s Head Ward Keeper", + [4626] = "CHOW Guard", + [4627] = "Arugal\'s Voidwalker", + [4629] = "Trackmaster Zherin", + [4630] = "Pozzik", + [4631] = "Wharfmaster Lozgil", + [4632] = "Kolkar Centaur", + [4633] = "Kolkar Scout", + [4634] = "Kolkar Mauler", + [4635] = "Kolkar Windchaser", + [4636] = "Kolkar Battle Lord", + [4637] = "Kolkar Destroyer", + [4638] = "Magram Scout", + [4639] = "Magram Outrunner", + [4640] = "Magram Wrangler", + [4641] = "Magram Windchaser", + [4642] = "Magram Stormer", + [4643] = "Magram Pack Runner", + [4644] = "Magram Marauder", + [4645] = "Magram Mauler", + [4646] = "Gelkis Outrunner", + [4647] = "Gelkis Scout", + [4648] = "Gelkis Stamper", + [4649] = "Gelkis Windchaser", + [4651] = "Gelkis Earthcaller", + [4652] = "Gelkis Mauler", + [4653] = "Gelkis Marauder", + [4654] = "Maraudine Scout", + [4655] = "Maraudine Wrangler", + [4656] = "Maraudine Mauler", + [4657] = "Maraudine Windchaser", + [4658] = "Maraudine Stormer", + [4659] = "Maraudine Marauder", + [4660] = "Maraudine Bonepaw", + [4661] = "Gelkis Rumbler", + [4662] = "Magram Bonepaw", + [4663] = "Burning Blade Augur", + [4664] = "Burning Blade Reaver", + [4665] = "Burning Blade Adept", + [4666] = "Burning Blade Felsworn", + [4667] = "Burning Blade Shadowmage", + [4668] = "Burning Blade Summoner", + [4669] = "Burning Blade Conjuror", + [4670] = "Hatefury Rogue", + [4671] = "Hatefury Trickster", + [4672] = "Hatefury Felsworn", + [4673] = "Hatefury Betrayer", + [4674] = "Hatefury Shadowstalker", + [4675] = "Hatefury Hellcaller", + [4676] = "Lesser Infernal", + [4677] = "Doomwarder", + [4678] = "Mana Eater", + [4679] = "Nether Maiden", + [4680] = "Doomwarder Captain", + [4681] = "Mage Hunter", + [4682] = "Nether Sister", + [4683] = "Doomwarder Lord", + [4684] = "Nether Sorceress", + [4685] = "Ley Hunter", + [4686] = "Deepstrider Giant", + [4687] = "Deepstrider Searcher", + [4688] = "Bonepaw Hyena", + [4689] = "Starving Bonepaw", + [4690] = "Rabid Bonepaw", + [4691] = "Murderous Bonepaw", + [4692] = "Dread Swoop", + [4693] = "Dread Flyer", + [4694] = "Dread Ripper", + [4695] = "Carrion Horror", + [4696] = "Scorpashi Snapper", + [4697] = "Scorpashi Lasher", + [4699] = "Scorpashi Venomlash", + [4700] = "Aged Kodo", + [4701] = "Dying Kodo", + [4702] = "Ancient Kodo", + [4703] = "Raging Kodo", + [4704] = "Maraudine Pack Runner", + [4705] = "Burning Blade Invoker", + [4706] = "Razzeric", + [4707] = "Zuzubee", + [4708] = "Shreev", + [4709] = "Zamek", + [4710] = "Riding Ram (Gray)", + [4711] = "Slitherblade Naga", + [4712] = "Slitherblade Sorceress", + [4713] = "Slitherblade Warrior", + [4714] = "Slitherblade Myrmidon", + [4715] = "Slitherblade Razortail", + [4716] = "Slitherblade Tidehunter", + [4717] = "Slitherblade Tide Priestess", + [4718] = "Slitherblade Oracle", + [4719] = "Slitherblade Sea Witch", + [4720] = "Rizzle Brassbolts", + [4721] = "Zangen Stonehoof", + [4722] = "Rau Cliffrunner", + [4723] = "Foreman Cozzle", + [4724] = "Sandstrider", + [4725] = "Crazed Sandstrider", + [4726] = "Raging Thunder Lizard", + [4727] = "Elder Thunder Lizard", + [4728] = "Gritjaw Basilisk", + [4729] = "Hulking Gritjaw Basilisk", + [4730] = "Lelanai", + [4731] = "Zachariah Post", + [4732] = "Randal Hunter", + [4752] = "Kildar", + [4753] = "Jartsam", + [4772] = "Ultham Ironhorn", + [4773] = "Velma Warnam", + [4775] = "Felicia Doan", + [4777] = "Riding Ram (White)", + [4778] = "Riding Ram (Blue)", + [4779] = "Riding Ram (Brown)", + [4780] = "Riding Ram (Black)", + [4781] = "Snufflenose Gopher", + [4782] = "Truk Wildbeard", + [4783] = "Dawnwatcher Selgorm", + [4784] = "Argent Guard Manados", + [4785] = "Illusionary Nightmare", + [4786] = "Dawnwatcher Shaedlass", + [4787] = "Argent Guard Thaelrid", + [4788] = "Fallenroot Satyr", + [4789] = "Fallenroot Rogue", + [4791] = "Nazeer Bloodpike", + [4792] = "\"Swamp Eye\" Jarl", + [4794] = "Morgan Stern", + [4795] = "Force of Nature", + [4798] = "Fallenroot Shadowstalker", + [4799] = "Fallenroot Hellcaller", + [4802] = "Blackfathom Tide Priestess", + [4803] = "Blackfathom Oracle", + [4805] = "Blackfathom Sea Witch", + [4807] = "Blackfathom Myrmidon", + [4809] = "Twilight Acolyte", + [4810] = "Twilight Reaver", + [4811] = "Twilight Aquamancer", + [4812] = "Twilight Loreseeker", + [4813] = "Twilight Shadowmage", + [4814] = "Twilight Elementalist", + [4815] = "Murkshallow Snapclaw", + [4816] = "Murkshallow Shellhide", + [4818] = "Blindlight Murloc", + [4819] = "Blindlight Muckdweller", + [4820] = "Blindlight Oracle", + [4821] = "Skittering Crustacean", + [4822] = "Snapping Crustacean", + [4823] = "Barbed Crustacean", + [4824] = "Aku\'mai Fisher", + [4825] = "Aku\'mai Snapjaw", + [4827] = "Deep Pool Threshfin", + [4829] = "Aku\'mai", + [4830] = "Old Serra\'kis", + [4831] = "Lady Sarevess", + [4832] = "Twilight Lord Kelris", + [4834] = "Theramore Infiltrator", + [4841] = "Deadmire", + [4842] = "Earthcaller Halmgar", + [4844] = "Shadowforge Surveyor", + [4845] = "Shadowforge Ruffian", + [4846] = "Shadowforge Digger", + [4847] = "Shadowforge Relic Hunter", + [4848] = "Shadowforge Darkcaster", + [4849] = "Shadowforge Archaeologist", + [4850] = "Stonevault Cave Lurker", + [4851] = "Stonevault Rockchewer", + [4852] = "Stonevault Oracle", + [4853] = "Stonevault Geomancer", + [4854] = "Grimlok", + [4855] = "Stonevault Brawler", + [4856] = "Stonevault Cave Hunter", + [4857] = "Stone Keeper", + [4860] = "Stone Steward", + [4861] = "Shrike Bat", + [4862] = "Rabid Shrike Bat", + [4863] = "Jadespine Basilisk", + [4872] = "Obsidian Golem", + [4875] = "Turhaw", + [4876] = "Jawn Highmesa", + [4877] = "Jandia", + [4878] = "Montarr", + [4879] = "Ogg\'marr", + [4880] = "\"Stinky\" Ignatz", + [4881] = "Varng", + [4882] = "[UNUSED] Om\'kan", + [4883] = "Krak", + [4884] = "Zulrg", + [4885] = "Gregor MacVince", + [4886] = "Hans Weston", + [4887] = "Ghamoo-ra", + [4888] = "Marie Holdston", + [4889] = "Torq Ironblast", + [4890] = "Piter Verance", + [4891] = "Dwane Wertle", + [4892] = "Jensen Farran", + [4893] = "Bartender Lillian", + [4894] = "Craig Nollward", + [4895] = "Smiling Jim", + [4896] = "Charity Mipsy", + [4897] = "Helenia Olden", + [4898] = "Brant Jasperbloom", + [4899] = "Uma Bartulm", + [4900] = "Alchemist Narett", + [4901] = "Sara Pierce", + [4902] = "Mikal Pierce", + [4921] = "Guard Byron", + [4922] = "Guard Edward", + [4923] = "Guard Jarad", + [4924] = "Combat Master Criton", + [4926] = "Krog", + [4941] = "Caz Twosprocket", + [4942] = "Test Petition Giver", + [4943] = "Mosarn", + [4944] = "Captain Garran Vimes", + [4945] = "Goblin Drag Car", + [4946] = "Gnome Drag Car", + [4947] = "Theramore Lieutenant", + [4948] = "Adjutant Tesoran", + [4949] = "Thrall", + [4950] = "Spot", + [4951] = "Theramore Practicing Guard", + [4952] = "Theramore Combat Dummy", + [4953] = "Moccasin", + [4954] = "Uttnar", + [4955] = "Theramore Archery Target 1", + [4957] = "Theramore Combat Dummy 4", + [4958] = "Haunting Spirit", + [4959] = "Jorgen", + [4960] = "Bishop DeLavey", + [4961] = "Dashel Stonefist", + [4962] = "Tapoke \"Slim\" Jahn", + [4963] = "Mikhail", + [4964] = "Commander Samaul", + [4965] = "Pained", + [4966] = "Private Hendel", + [4967] = "Archmage Tervosh", + [4968] = "Lady Jaina Proudmoore", + [4969] = "Old Town Thug", + [4970] = "Defias Agent", + [4971] = "Slim\'s Friend", + [4972] = "Kagoro", + [4973] = "Guard Lasiter", + [4974] = "Aldwin Laughlin", + [4975] = "Theramore Archery Target 2", + [4976] = "Elise Laughlin", + [4977] = "Murkshallow Softshell", + [4978] = "Aku\'mai Servant", + [4979] = "Theramore Guard", + [4980] = "Paval Reethe", + [4981] = "Ben Trias", + [4982] = "Thomas", + [4983] = "Ogron", + [4984] = "Argos Nightwhisper", + [4985] = "World Druid Trainer", + [4986] = "World Hunter Trainer", + [4987] = "World Mage Trainer", + [4988] = "World Paladin Trainer", + [4989] = "World Priest Trainer", + [4990] = "World Rogue Trainer", + [4991] = "World Shaman Trainer", + [4992] = "World Warrior Trainer", + [4993] = "World Warlock Trainer", + [4994] = "World Wolf Trainer", + [4995] = "Stockade Guard", + [4996] = "Injured Stockade Guard", + [4997] = "World Fishing Trainer", + [4998] = "World Herbalism Trainer", + [4999] = "World Mining Trainer", + [5000] = "World Hunter Beast Trainer", + [5001] = "World Bird Trainer", + [5002] = "World Boar Trainer", + [5003] = "World Cat Trainer", + [5004] = "World Crawler Trainer", + [5005] = "World Crocodile Trainer", + [5006] = "World Demon Trainer", + [5007] = "World Felhunter Trainer", + [5008] = "World Gorilla Trainer", + [5009] = "World Horse Trainer", + [5010] = "World Imp Trainer", + [5011] = "World Raptor Trainer", + [5012] = "World Scorpid Trainer", + [5013] = "World Spider Trainer", + [5014] = "World Succubus Trainer", + [5015] = "World Tallstrider Trainer", + [5016] = "World Voidwalker Trainer", + [5017] = "World Turtle Trainer", + [5018] = "World Portal: Darnassus Trainer", + [5019] = "World Portal: Ironforge Trainer", + [5020] = "World Portal: Orgrimmar Trainer", + [5021] = "World Portal: Stormwind Trainer", + [5022] = "World Portal: Thunder Bluff Trainer", + [5023] = "World Portal: Undercity Trainer", + [5024] = "World First Aid Trainer", + [5026] = "World Horse Riding Trainer", + [5027] = "World Lockpicking Trainer", + [5028] = "World Ram Riding Trainer", + [5029] = "World Survival Trainer", + [5030] = "World Tiger Riding Trainer", + [5031] = "World Wolf Riding Trainer", + [5032] = "World Alchemy Trainer", + [5033] = "World Blacksmith Trainer", + [5034] = "World Brewing Trainer", + [5035] = "World Cartography Trainer", + [5036] = "World Cooking Trainer", + [5037] = "World Engineering Trainer", + [5038] = "World Enchanting Trainer", + [5039] = "World Tracking Trainer", + [5040] = "World Leatherworking Trainer", + [5041] = "World Tailoring Trainer", + [5042] = "Nurse Lillian", + [5043] = "Defias Rioter", + [5044] = "Theramore Skirmisher", + [5045] = "Private Hallan", + [5046] = "Lieutenant Caldwell", + [5047] = "Ellaercia", + [5048] = "Deviate Adder", + [5049] = "Lyesa Steelbrow", + [5050] = "[UNUSED] Rallus", + [5051] = "[UNUSED] Frewa", + [5052] = "Edward Remington", + [5053] = "Deviate Crocolisk", + [5054] = "Krumn", + [5055] = "Deviate Lasher", + [5056] = "Deviate Dreadfang", + [5057] = "Theramore Deserter", + [5058] = "Wolfguard Worg", + [5059] = "Galthogran the Callous", + [5060] = "World Banker", + [5061] = "World Guild Tabbard Vendor", + [5062] = "World Reagent Vendor", + [5063] = "Pat\'s Test Kobold", + [5064] = "World Trade Supplies", + [5081] = "Connor Rivers", + [5082] = "Vincent Hyal", + [5083] = "Clerk Lendry", + [5084] = "Ironforge Zinn", + [5085] = "Sentry Point Guard", + [5086] = "Sentry Point Captain", + [5087] = "Do\'gol", + [5088] = "Falgran Hastil", + [5089] = "Balos Jacken", + [5090] = "Combat Master Szigeti", + [5091] = "Guard Kahil", + [5092] = "Guard Lana", + [5093] = "Guard Narrisha", + [5094] = "Guard Tark", + [5095] = "Captain Andrews", + [5096] = "Captain Thomas", + [5097] = "Lupine Delusion", + [5098] = "[UNUSED] Guffren Boulderbeard", + [5099] = "Soleil Stonemantle", + [5100] = "Fillius Fizzlespinner", + [5101] = "Bryllia Ironbrand", + [5102] = "Dolman Steelfury", + [5103] = "Grenil Steelfury", + [5104] = "Laene Thundershot", + [5105] = "Gilbin", + [5106] = "Bromiir Ormsen", + [5107] = "Mangorn Flinthammer", + [5108] = "Raena Flinthammer", + [5109] = "Myra Tyrngaarde", + [5110] = "Barim Jurgenstaad", + [5111] = "Innkeeper Firebrew", + [5112] = "Gwenna Firebrew", + [5113] = "Kelv Sternhammer", + [5114] = "Bilban Tosslespanner", + [5115] = "Daera Brightspear", + [5116] = "Olmin Burningbeard", + [5117] = "Regnus Thundergranite", + [5118] = "Brogun Stoneshield", + [5119] = "Hegnar Swiftaxe", + [5120] = "Brenwyn Wintersteel", + [5121] = "Kelomir Ironhand", + [5122] = "Skolmin Goldfury", + [5123] = "Bretta Goldfury", + [5124] = "Sognar Cliffbeard", + [5125] = "Dolkin Craghelm", + [5126] = "Olthran Craghelm", + [5127] = "Fimble Finespindle", + [5128] = "Bombus Finespindle", + [5129] = "Lissyphus Finespindle", + [5130] = "Jondor Steelbrow", + [5131] = "[UNUSED] Kiren Tyrngaarde", + [5132] = "Pithwick", + [5133] = "Harick Boulderdrum", + [5134] = "Jonivera Farmountain", + [5135] = "Svalbrad Farmountain", + [5137] = "Reyna Stonebranch", + [5138] = "Gwina Stonebranch", + [5139] = "Kurdrum Barleybeard", + [5140] = "Edris Barleybeard", + [5141] = "Theodrus Frostbeard", + [5142] = "Braenna Flintcrag", + [5143] = "Toldren Deepiron", + [5144] = "Bink", + [5145] = "Juli Stormkettle", + [5146] = "Nittlebur Sparkfizzle", + [5147] = "Valgar Highforge", + [5148] = "Beldruk Doombrow", + [5149] = "Brandur Ironhammer", + [5150] = "Nissa Firestone", + [5151] = "Ginny Longberry", + [5152] = "Bingus", + [5153] = "Jormund Stonebrow", + [5154] = "Poranna Snowbraid", + [5155] = "Ingrys Stonebrow", + [5156] = "Maeva Snowbraid", + [5157] = "Gimble Thistlefuzz", + [5158] = "Tilli Thistlefuzz", + [5159] = "Daryl Riknussun", + [5160] = "Emrul Riknussun", + [5161] = "Grimnur Stonebrand", + [5162] = "Tansy Puddlefizz", + [5163] = "Burbik Gearspanner", + [5164] = "Grumnus Steelshaper", + [5165] = "Hulfdan Blackbeard", + [5166] = "Ormyr Flinteye", + [5167] = "Fenthwick", + [5169] = "Tynnus Venomsprout", + [5170] = "Hjoldir Stoneblade", + [5171] = "Thistleheart", + [5172] = "Briarthorn", + [5173] = "Alexander Calder", + [5174] = "Springspindle Fizzlegear", + [5175] = "Gearcutter Cogspinner", + [5177] = "Tally Berryfizz", + [5178] = "Soolie Berryfizz", + [5184] = "Theramore Sentry", + [5185] = "Hammerhead Shark", + [5186] = "Basking Shark", + [5187] = "Southsea Cannon", + [5188] = "Garyl", + [5189] = "Thrumn", + [5190] = "Merill Pleasance", + [5191] = "Shalumon", + [5192] = "[UNUSED] Nils Stonebrow", + [5193] = "Rebecca Laughlin", + [5194] = "Black Riding Wolf", + [5195] = "Brown Riding Wolf", + [5196] = "Gray Riding Wolf", + [5197] = "Red Riding Wolf", + [5198] = "Arctic Riding Wolf", + [5199] = "Medic Tamberlyn", + [5200] = "Medic Helaina", + [5201] = "Pat\'s Test Human", + [5202] = "Archery Target", + [5204] = "Apothecary Zinge", + [5224] = "Murk Slitherer", + [5225] = "Murk Spitter", + [5226] = "Murk Worm", + [5228] = "Saturated Ooze", + [5229] = "Gordunni Ogre", + [5231] = "Gordunni Enforcer", + [5232] = "Gordunni Brute", + [5234] = "Gordunni Mauler", + [5235] = "Fungal Ooze", + [5236] = "Gordunni Shaman", + [5237] = "Gordunni Ogre Mage", + [5238] = "Gordunni Battlemaster", + [5239] = "Gordunni Mage-Lord", + [5240] = "Gordunni Warlock", + [5241] = "Gordunni Warlord", + [5243] = "Cursed Atal\'ai", + [5244] = "Zukk\'ash Stinger", + [5245] = "Zukk\'ash Wasp", + [5246] = "Zukk\'ash Worker", + [5247] = "Zukk\'ash Tunneler", + [5249] = "Woodpaw Mongrel", + [5251] = "Woodpaw Trapper", + [5253] = "Woodpaw Brute", + [5254] = "Woodpaw Mystic", + [5255] = "Woodpaw Reaver", + [5256] = "Atal\'ai Warrior", + [5258] = "Woodpaw Alpha", + [5259] = "Atal\'ai Witch Doctor", + [5260] = "Groddoc Ape", + [5261] = "Enthralled Atal\'ai", + [5262] = "Groddoc Thunderer", + [5263] = "Mummified Atal\'ai", + [5264] = "Groddoc Chestpounder", + [5267] = "Unliving Atal\'ai", + [5268] = "Ironfur Bear", + [5269] = "Atal\'ai Priest", + [5270] = "Atal\'ai Corpse Eater", + [5271] = "Atal\'ai Deathwalker", + [5272] = "Grizzled Ironfur Bear", + [5273] = "Atal\'ai High Priest", + [5274] = "Ironfur Patriarch", + [5276] = "Sprite Dragon", + [5277] = "Nightmare Scalebane", + [5278] = "Sprite Darter", + [5280] = "Nightmare Wyrmkin", + [5283] = "Nightmare Wanderer", + [5286] = "Longtooth Runner", + [5287] = "Longtooth Howler", + [5288] = "Rabid Longtooth", + [5291] = "Hakkari Frostwing", + [5292] = "Feral Scar Yeti", + [5293] = "Hulking Feral Scar", + [5295] = "Enraged Feral Scar", + [5296] = "Rage Scar Yeti", + [5297] = "Elder Rage Scar", + [5299] = "Ferocious Rage Scar", + [5300] = "Frayfeather Hippogryph", + [5304] = "Frayfeather Stagwing", + [5305] = "Frayfeather Skystormer", + [5306] = "Frayfeather Patriarch", + [5307] = "Vale Screecher", + [5308] = "Rogue Vale Screecher", + [5312] = "Lethlas", + [5314] = "Phantim", + [5315] = "Jademir Dragonspawn", + [5317] = "Jademir Oracle", + [5319] = "Jademir Tree Warder", + [5320] = "Jademir Boughguard", + [5326] = "Coast Crawl Clacker", + [5327] = "Coast Crawl Snapclaw", + [5328] = "Coast Crawl Deepseer", + [5331] = "Hatecrest Warrior", + [5332] = "Hatecrest Wave Rider", + [5333] = "Hatecrest Serpent Guard", + [5334] = "Hatecrest Myrmidon", + [5335] = "Hatecrest Screamer", + [5336] = "Hatecrest Sorceress", + [5337] = "Hatecrest Siren", + [5343] = "Lady Szallah", + [5345] = "Diamond Head", + [5346] = "Bloodroar the Stalker", + [5347] = "Antilus the Soarer", + [5348] = "Dreamwatcher Forktongue", + [5349] = "Arash-ethis", + [5350] = "Qirot", + [5352] = "Old Grizzlegut", + [5353] = "Itharius", + [5354] = "Gnarl Leafbrother", + [5355] = "Blink (Reuse)", + [5356] = "Snarler", + [5357] = "Land Walker", + [5358] = "Cliff Giant", + [5359] = "Shore Strider", + [5360] = "Deep Strider", + [5361] = "Wave Strider", + [5362] = "Northspring Harpy", + [5363] = "Northspring Roguefeather", + [5364] = "Northspring Slayer", + [5366] = "Northspring Windcaller", + [5367] = "Scillia Daggerquil", + [5384] = "Brohann Caskbelly", + [5385] = "Watcher Mahar Ba", + [5386] = "Acolyte Dellis", + [5387] = "High Explorer Magellas", + [5388] = "Ingo Woolybush", + [5389] = "Prospector Gunstan", + [5390] = "Sage Palerunner", + [5391] = "Galen Goodward", + [5392] = "Yarr Hammerstone", + [5393] = "Quartermaster Lungertz", + [5394] = "Neeka Bloodscar", + [5395] = "Felgur Twocuts", + [5396] = "Captain Pentigast", + [5397] = "Uthek the Wise", + [5398] = "Warug", + [5399] = "Veyzhak the Cannibal", + [5400] = "Zekkis", + [5401] = "Kazkaz the Unholy", + [5402] = "Khan Hratha", + [5403] = "White Stallion", + [5404] = "Black Stallion", + [5405] = "Pinto", + [5406] = "Palomino", + [5407] = "Nightmare", + [5409] = "Harvester Swarm", + [5411] = "Krinkle Goodsteel", + [5412] = "Gurda Wildmane", + [5413] = "Furen Longbeard", + [5414] = "Apothecary Faustin", + [5415] = "Centaur Outrunner", + [5416] = "Infiltrator Marksen", + [5418] = "Deathstalker Zraedus", + [5419] = "Glasshide Basilisk", + [5420] = "Glasshide Gazer", + [5421] = "Glasshide Petrifier", + [5422] = "Scorpid Hunter", + [5423] = "Scorpid Tail Lasher", + [5424] = "Scorpid Dunestalker", + [5425] = "Starving Blisterpaw", + [5426] = "Blisterpaw Hyena", + [5427] = "Rabid Blisterpaw", + [5428] = "Roc", + [5429] = "Fire Roc", + [5430] = "Searing Roc", + [5431] = "Surf Glider", + [5432] = "Giant Surf Glider", + [5433] = "Tamed Bear", + [5434] = "Coral Shark", + [5435] = "Sand Shark", + [5436] = "Tamed Bird", + [5437] = "Tamed Boar", + [5438] = "Tamed Cat", + [5439] = "Tamed Crawler", + [5440] = "Tamed Crocolisk", + [5441] = "Hazzali Wasp", + [5442] = "Tamed Gorilla", + [5443] = "Tamed Zhevra", + [5444] = "Tamed Raptor", + [5445] = "Tamed Scorpid", + [5446] = "Tamed Spider", + [5447] = "Tamed Tallstrider", + [5448] = "Tamed Turtle", + [5449] = "Tamed Wolf", + [5450] = "Hazzali Stinger", + [5451] = "Hazzali Swarmer", + [5452] = "Hazzali Worker", + [5453] = "Hazzali Tunneler", + [5454] = "Hazzali Sandreaver", + [5455] = "Centipaar Wasp", + [5456] = "Centipaar Stinger", + [5457] = "Centipaar Swarmer", + [5458] = "Centipaar Worker", + [5459] = "Centipaar Tunneler", + [5460] = "Centipaar Sandreaver", + [5461] = "Sea Elemental", + [5462] = "Sea Spray", + [5464] = "Watchmaster Sorigal", + [5465] = "Land Rager", + [5466] = "Coast Strider", + [5467] = "Deep Dweller", + [5468] = "Wandering Dune Smasher", + [5469] = "Dune Smasher", + [5470] = "Raging Dune Smasher", + [5471] = "Dunemaul Ogre", + [5472] = "Dunemaul Enforcer", + [5473] = "Dunemaul Ogre Mage", + [5474] = "Dunemaul Brute", + [5475] = "Dunemaul Warlock", + [5476] = "Watcher Biggs", + [5477] = "Noboru the Cudgel", + [5479] = "Wu Shen", + [5480] = "Ilsa Corbin", + [5481] = "Thistleshrub Dew Collector", + [5482] = "Stephen Ryback", + [5483] = "Erika Tate", + [5484] = "Brother Benjamin", + [5485] = "Thistleshrub Rootshaper", + [5489] = "Brother Joshua", + [5490] = "Gnarled Thistleshrub", + [5491] = "Arthur the Faithful", + [5492] = "Katherine the Pure", + [5493] = "Arnold Leland", + [5494] = "Catherine Leland", + [5495] = "Ursula Deline", + [5496] = "Sandahl", + [5497] = "Jennea Cannon", + [5498] = "Elsharin", + [5499] = "Lilyssia Nightbreeze", + [5500] = "Tel\'Athir", + [5501] = "Kaerbrus", + [5502] = "Shylamiir", + [5503] = "Eldraeith", + [5504] = "Sheldras Moontree", + [5505] = "Theridran", + [5506] = "Maldryn", + [5507] = "Celmoridan", + [5508] = "Strumner Flintheel", + [5509] = "Kathrum Axehand", + [5510] = "Thulman Flintcrag", + [5511] = "Therum Deepforge", + [5512] = "Kaita Deepforge", + [5513] = "Gelman Stonehand", + [5514] = "Brooke Stonebraid", + [5515] = "Einris Brightspear", + [5516] = "Ulfir Ironbeard", + [5517] = "Thorfin Stoneshield", + [5518] = "Lilliam Sparkspindle", + [5519] = "Billibub Cogspinner", + [5520] = "Spackle Thornberry", + [5521] = "Glenrunner", + [5522] = "Ironclaw", + [5523] = "War Party Kodo", + [5524] = "Caravan Watcher", + [5525] = "Caravan Packhorse", + [5526] = "Caravan Merchant", + [5542] = "Stormwind Traveling Merchant", + [5543] = "Clarice Foster", + [5544] = "[UNUSED] Yuriv Adhem", + [5546] = "Grunt Zuul", + [5547] = "Grunt Tharlak", + [5548] = "[PH] Mine Boss", + [5549] = "[PH] Mine Guard", + [5550] = "[PH] PVP Peasent", + [5551] = "[PH] Caravan Guard", + [5552] = "[PH] PVP Peon", + [5553] = "[PH] Caravan Scout", + [5554] = "[PH] PVP Wildlife", + [5555] = "[PH] Ogre Caravan Packhorse", + [5556] = "[PH] Alliance Commander", + [5557] = "[PH] Horde Commander", + [5558] = "[PH] Alliance Guard", + [5559] = "[PH] Horde Guard", + [5560] = "[PH] Alliance Raider", + [5561] = "[PH] Horde Raider", + [5562] = "[PH] Alliance Archer", + [5563] = "[PH] Horde Archer", + [5564] = "Simon Tanner", + [5565] = "Jillian Tanner", + [5566] = "Tannysa", + [5567] = "Sellandus", + [5568] = "Captured Leper Gnome", + [5569] = "Fizzlebang Booms", + [5570] = "Bruuk Barleybeard", + [5587] = "[PH] Alliance Mine Boss", + [5588] = "[PH] Alliance Mine Guard", + [5589] = "[PH] Horde Mine Boss", + [5590] = "[PH] Horde Mine Guard", + [5591] = "Dar", + [5592] = "Tok\'Kar", + [5593] = "Katar", + [5594] = "Alchemist Pestlezugg", + [5595] = "Ironforge Guard", + [5596] = "Twain Test Prop", + [5597] = "Grunt Komak", + [5598] = "Atal\'ai Exile", + [5599] = "Kon Yelloweyes", + [5600] = "Khan Dez\'hepah", + [5601] = "Khan Jehn", + [5602] = "Khan Shaka", + [5603] = "Grunt Mojka", + [5604] = "[UNUSED] [PH] Orcish Barfly", + [5605] = "Tisa Martine", + [5606] = "Goma", + [5607] = "Roger", + [5608] = "Jamin", + [5609] = "Zazo", + [5610] = "Kozish", + [5611] = "Barkeep Morag", + [5612] = "Gimrizz Shadowcog", + [5613] = "Doyo\'da", + [5614] = "Sarok", + [5615] = "Wastewander Rogue", + [5616] = "Wastewander Thief", + [5617] = "Wastewander Shadow Mage", + [5618] = "Wastewander Bandit", + [5620] = "Bartender Wental", + [5621] = "Timmy", + [5622] = "Ongeku", + [5623] = "Wastewander Assassin", + [5624] = "Undercity Guardian", + [5625] = "Theramore Transport", + [5626] = "Joey", + [5627] = "Johnny", + [5628] = "Lieutenant Beech", + [5629] = "Theramore Commando", + [5630] = "Theramore Mage", + [5631] = "Theramore Medic", + [5632] = "Theramore Incursion Master Control Program", + [5633] = "Lieutenant Baxter", + [5634] = "Rhapsody Shindigger", + [5635] = "Falstad Wildhammer", + [5636] = "Gryphon Master Talonaxe", + [5637] = "Roetten Stonehammer", + [5638] = "Kreldig Ungor", + [5639] = "Craven Drok", + [5640] = "Keldran", + [5641] = "Takata Steelblade", + [5642] = "Vahlarriel Demonslayer", + [5643] = "Tyranis Malem", + [5644] = "Dalinda Malem", + [5645] = "Sandfury Hideskinner", + [5646] = "Sandfury Axe Thrower", + [5647] = "Sandfury Firecaller", + [5648] = "Sandfury Shadowcaster", + [5649] = "Sandfury Blood Drinker", + [5650] = "Sandfury Witch Doctor", + [5651] = "Patrick Garrett", + [5652] = "Practice Dummy", + [5653] = "Tyler", + [5654] = "Edward", + [5655] = "Robert Gossom", + [5656] = "Richard Van Brunt", + [5657] = "Marla Fowler", + [5658] = "Chloe Curthas", + [5659] = "Andrew Hartwell", + [5660] = "Riley Walker", + [5661] = "Brother Malach", + [5662] = "Sergeant Houser", + [5663] = "Travist Bosk", + [5664] = "Eldin Partridge", + [5665] = "Alyssa Blaye", + [5666] = "Gunther\'s Visage", + [5667] = "Venya Marthand", + [5668] = "Mattie Alred", + [5669] = "Helena Atwood", + [5670] = "Edrick Killian", + [5671] = "[UNUSED] Lawrence Sawyer", + [5672] = "[UNUSED] Charles Brewton", + [5674] = "Practice Target", + [5675] = "Carendin Halgar", + [5676] = "Summoned Voidwalker", + [5677] = "Summoned Succubus", + [5678] = "[UNUSED] Deathstalker Vincent DEBUG", + [5679] = "Lysta Bancroft", + [5680] = "Male Human Captive", + [5681] = "Female Human Captive", + [5682] = "Dalin Forgewright", + [5683] = "Comar Villard", + [5685] = "Captive Ghoul", + [5686] = "Captive Zombie", + [5687] = "Captive Abomination", + [5688] = "Innkeeper Renee", + [5689] = "Steed", + [5690] = "Clyde Kellen", + [5691] = "Dalin Forgewright Projection", + [5692] = "Comar Villard Projection", + [5693] = "Godrick Farsan", + [5694] = "High Sorcerer Andromath", + [5695] = "Vance Undergloom", + [5696] = "Gerard Abernathy", + [5697] = "Theresa", + [5698] = "Joanna Whitehall", + [5699] = "Leona Tharpe", + [5700] = "Samantha Shackleton", + [5701] = "Selina Pickman", + [5702] = "Jezelle Pruitt", + [5703] = "Winifred Kerwin", + [5704] = "Adrian Bartlett", + [5705] = "Victor Bartholomew", + [5706] = "Davitt Hickson", + [5707] = "Reginald Grimsford", + [5708] = "Spawn of Hakkar", + [5709] = "Shade of Eranikus", + [5710] = "Jammal\'an the Prophet", + [5711] = "Ogom the Wretched", + [5712] = "Zolo", + [5713] = "Gasher", + [5714] = "Loro", + [5715] = "Hukku", + [5716] = "Zul\'Lor", + [5717] = "Mijan", + [5718] = "Rothos", + [5719] = "Morphaz", + [5720] = "Weaver", + [5721] = "Dreamscythe", + [5722] = "Hazzas", + [5723] = "Warug\'s Target Dummy", + [5724] = "Ageron Kargal", + [5725] = "Deathguard Lundmark", + [5726] = "Jezelle\'s Felhunter", + [5727] = "Jezelle\'s Felsteed", + [5728] = "Jezelle\'s Succubus", + [5729] = "Jezelle\'s Voidwalker", + [5730] = "Jezelle\'s Imp", + [5731] = "Apothecary Vallia", + [5732] = "Apothecary Katrina", + [5733] = "Apothecary Lycanus", + [5734] = "Apothecary Keever", + [5735] = "Caged Human Female", + [5736] = "Caged Human Male", + [5737] = "Caged Dwarf Female", + [5738] = "Caged Dwarf Male", + [5739] = "Caged Squirrel", + [5740] = "Caged Chicken", + [5741] = "Caged Rabbit", + [5742] = "Caged Toad", + [5743] = "Caged Sheep", + [5744] = "Cedric Stumpel", + [5745] = "Lazlow Ashby", + [5746] = "Appolonia Kimble", + [5747] = "Hepzibah Sedgewick", + [5748] = "Killian Sanatha", + [5749] = "Kayla Smithe", + [5750] = "Gina Lang", + [5752] = "Corporal Melkins", + [5753] = "Martha Strain", + [5754] = "Zane Bradford", + [5755] = "Deviate Viper", + [5756] = "Deviate Venomwing", + [5757] = "Lilly", + [5758] = "Leo Sarn", + [5759] = "Nurse Neela", + [5760] = "Lord Azrethoc", + [5761] = "Deviate Shambler", + [5762] = "Deviate Moccasin", + [5763] = "Nightmare Ectoplasm", + [5764] = "Guardian of Blizzard", + [5765] = "Ruzan", + [5766] = "Savannah Cub", + [5767] = "Nalpak", + [5768] = "Ebru", + [5769] = "Arch Druid Hamuul Runetotem", + [5770] = "Nara Wildmane", + [5771] = "Jugkar Grim\'rod", + [5772] = "Lord Azrethoc\'s Image", + [5773] = "Jugkar Grim\'rod\'s Image", + [5774] = "Riding Wolf", + [5775] = "Verdan the Everliving", + [5776] = "Evolving Ectoplasm (Red)", + [5777] = "Evolving Ectoplasm (Green)", + [5778] = "Evolving Ectoplasm (Black)", + [5779] = "Summoned Viper", + [5780] = "Cloned Ectoplasm", + [5781] = "Silithid Creeper Egg", + [5782] = "Crildor", + [5783] = "Kalldan Felmoon", + [5784] = "Waldor", + [5785] = "Sister Hatelash", + [5786] = "Snagglespear", + [5787] = "Enforcer Emilgund", + [5788] = "Gelgann Direforge", + [5789] = "Serra Mountainhome", + [5790] = "Lizzle Sprysprocket", + [5791] = "Cobrahn Snake Form", + [5792] = "Drag Master Miglen", + [5793] = "Captain Armistice", + [5794] = "Thurmonde the Devout", + [5795] = "Grash Thunderbrew", + [5796] = "Ben", + [5797] = "Aean Swiftriver", + [5798] = "Thora Feathermoon", + [5799] = "Hannah Bladeleaf", + [5800] = "Marcus Bel", + [5801] = "[PH] Party Bot", + [5806] = "Treant Ally", + [5807] = "The Rake", + [5808] = "Warlord Kolkanis", + [5809] = "Watch Commander Zalaphil", + [5810] = "Uzzek", + [5811] = "Kamari", + [5812] = "Tumi", + [5813] = "[UNUSED] Shikar", + [5814] = "Innkeeper Thulbek", + [5815] = "Kurgul", + [5816] = "Katis", + [5817] = "Shimra", + [5818] = "[UNUSED] Tren\'Shan", + [5819] = "Mirelle Tremayne", + [5820] = "Gillian Moore", + [5821] = "Sheldon Von Croy", + [5822] = "Felweaver Scornn", + [5823] = "Death Flayer", + [5824] = "Captain Flat Tusk", + [5825] = "Corrupt Tyranis Malem", + [5826] = "Geolord Mottle", + [5827] = "Brontus", + [5828] = "Humar the Pridelord", + [5829] = "Snort the Heckler", + [5830] = "Sister Rathtalon", + [5831] = "Swiftmane", + [5832] = "Thunderstomp", + [5833] = "Margol the Rager", + [5834] = "Azzere the Skyblade", + [5835] = "Foreman Grills", + [5836] = "Engineer Whirleygig", + [5837] = "Stonearm", + [5838] = "Brokespear", + [5839] = "Dark Iron Geologist", + [5840] = "Dark Iron Steamsmith", + [5841] = "Rocklance", + [5842] = "Takk the Leaper", + [5843] = "Slave Worker", + [5844] = "Dark Iron Slaver", + [5846] = "Dark Iron Taskmaster", + [5847] = "Heggin Stonewhisker", + [5848] = "Malgin Barleybrew", + [5849] = "Digger Flameforge", + [5850] = "Blazing Elemental", + [5851] = "Captain Gerogg Hammertoe", + [5852] = "Inferno Elemental", + [5853] = "Tempered War Golem", + [5854] = "Heavy War Golem", + [5855] = "Magma Elemental", + [5856] = "Glassweb Spider", + [5857] = "Searing Lava Spider", + [5858] = "Greater Lava Spider", + [5859] = "Hagg Taurenbane", + [5860] = "Twilight Dark Shaman", + [5861] = "Twilight Fire Guard", + [5862] = "Twilight Geomancer", + [5863] = "Geopriest Gukk\'rok", + [5864] = "Swinegart Spearhide", + [5865] = "Dishu", + [5866] = "Equipment Squirrel", + [5867] = "Maximum Squirrel", + [5868] = "Evil Squirrel", + [5870] = "Krond", + [5871] = "Larhka", + [5872] = "Serpent Form", + [5873] = "Stoneskin Totem", + [5874] = "Strength of Earth Totem", + [5875] = "Gan\'rul Bloodeye", + [5876] = "[UNUSED] Grumol", + [5877] = "[UNUSED] Yar\'luk", + [5878] = "Thun\'grim Firegaze", + [5879] = "Fire Nova Totem", + [5880] = "Un\'Thuwa", + [5881] = "Cursed Sycamore", + [5882] = "Pephredo", + [5883] = "Enyo", + [5884] = "Mai\'ah", + [5885] = "Deino", + [5886] = "Gwyn Farrow", + [5887] = "Canaga Earthcaller", + [5888] = "Seer Ravenfeather", + [5889] = "Mesa Earth Spirit", + [5890] = "Redrock Earth Spirit", + [5891] = "Minor Manifestation of Earth", + [5892] = "Searn Firewarder", + [5893] = "Minor Manifestation of Fire", + [5894] = "Corrupt Minor Manifestation of Water", + [5895] = "Minor Manifestation of Water", + [5896] = "Fire Spirit", + [5897] = "Corrupt Water Spirit", + [5898] = "Air Spirit", + [5899] = "Brine", + [5900] = "Telf Joolam", + [5901] = "Islen Waterseer", + [5902] = "Minor Manifestation of Air", + [5903] = "Nyx Bloodrage", + [5904] = "[UNUSED] Hurll Kans", + [5905] = "Prate Cloudseer", + [5906] = "Xanis Flameweaver", + [5907] = "Kranal Fiss", + [5908] = "Grunt Dogran", + [5909] = "Cazul", + [5910] = "Zankaja", + [5911] = "Grunt Logmar", + [5912] = "Deviate Faerie Dragon", + [5913] = "Tremor Totem", + [5914] = "Deviate Nightmare", + [5915] = "Brother Ravenoak", + [5916] = "Sentinel Amarassan", + [5917] = "Clara Charles", + [5918] = "Owl Form", + [5919] = "Stoneskin Totem II", + [5920] = "Stoneskin Totem III", + [5921] = "Strength of Earth Totem II", + [5922] = "Strength of Earth Totem III", + [5923] = "Poison Cleansing Totem", + [5924] = "Disease Cleansing Totem", + [5925] = "Grounding Totem", + [5926] = "Frost Resistance Totem", + [5927] = "Fire Resistance Totem", + [5928] = "Sorrow Wing", + [5929] = "Magma Totem", + [5930] = "Sister Riven", + [5931] = "Foreman Rigger", + [5932] = "Taskmaster Whipfang", + [5933] = "Achellios the Banished", + [5934] = "Heartrazor", + [5935] = "Ironeye the Invincible", + [5936] = "Orca", + [5937] = "Vile Sting", + [5938] = "Uthan Stillwater", + [5939] = "Vira Younghoof", + [5940] = "Harn Longcast", + [5941] = "Lau\'Tiki", + [5942] = "Zansoa", + [5943] = "Rawrk", + [5944] = "Yonada", + [5945] = "Owl Companion", + [5946] = "Male Dark Assassin", + [5947] = "Female Dark Assassin", + [5948] = "Female Pirate", + [5949] = "Male Pirate", + [5950] = "Flametongue Totem", + [5951] = "Hare", + [5952] = "Den Grunt", + [5953] = "Razor Hill Grunt", + [5954] = "Shade", + [5955] = "Tooga", + [5956] = "Graznab", + [5957] = "Birgitte Cranston", + [5958] = "Thuul", + [5959] = "World Dwarf Male Warrior Trainer", + [5960] = "World Human Male Rogue Trainer", + [5961] = "World Gnome Male Mage Trainer", + [5962] = "World Orc Male Warlock Trainer", + [5963] = "World Tauren Male Druid Trainer", + [5964] = "World Undead Male Priest Trainer", + [5965] = "World Troll Male Shaman Trainer", + [5966] = "World Night Elf Male Warrior Trainer", + [5967] = "World Dwarf Female Warrior Trainer", + [5968] = "World Human Female Rogue Trainer", + [5969] = "World Gnome Female Mage Trainer", + [5970] = "World Orc Female Warlock Trainer", + [5971] = "World Troll Female Shaman Trainer", + [5972] = "World Tauren Female Druid Trainer", + [5973] = "World Undead Female Priest Trainer", + [5974] = "Dreadmaul Ogre", + [5975] = "Dreadmaul Ogre Mage", + [5976] = "Dreadmaul Brute", + [5977] = "Dreadmaul Mauler", + [5978] = "Dreadmaul Warlock", + [5979] = "Wretched Lost One", + [5980] = "Broken One", + [5981] = "Portal Seeker", + [5982] = "Black Slayer", + [5983] = "Bonepicker", + [5984] = "Starving Snickerfang", + [5985] = "Snickerfang Hyena", + [5986] = "Rabid Snickerfang", + [5987] = "Scorpok Snapper", + [5988] = "Scorpok Stinger", + [5989] = "Scorpok Lasher", + [5990] = "Redstone Basilisk", + [5991] = "Redstone Crystalhide", + [5992] = "Ashmane Boar", + [5993] = "Helboar", + [5994] = "Zayus", + [5995] = "Nethergarde Worker", + [5996] = "Nethergarde Miner", + [5997] = "Nethergarde Engineer", + [5998] = "Nethergarde Foreman", + [5999] = "Nethergarde Soldier", + [6000] = "Nethergarde Cleric", + [6001] = "Nethergarde Analyst", + [6002] = "Nethergarde Riftwatcher", + [6003] = "Nethergarde Officer", + [6004] = "Shadowsworn Cultist", + [6005] = "Shadowsworn Thug", + [6006] = "Shadowsworn Adept", + [6007] = "Shadowsworn Enforcer", + [6008] = "Shadowsworn Warlock", + [6009] = "Shadowsworn Dreadweaver", + [6010] = "Felhound", + [6011] = "Felguard Sentry", + [6012] = "Flametongue Totem II", + [6013] = "Wayward Buzzard", + [6014] = "X\'yera", + [6015] = "Torta", + [6016] = "Elemental Protection Totem", + [6017] = "Lava Spout Totem", + [6018] = "Ur\'kyo", + [6019] = "Hornizz Brimbuzzle", + [6020] = "Slimeshell Makrura", + [6021] = "Boar Spirit", + [6022] = "Captain Drakoar", + [6023] = "Kernon Shadowclaw", + [6026] = "Breyk", + [6027] = "Kitha", + [6028] = "Burkrum", + [6030] = "Thorvald Deepforge", + [6031] = "Tormus Deepforge", + [6032] = "[UNUSED] Sharn", + [6033] = "Lake Frenzy", + [6034] = "Lotherias", + [6035] = "Razorfen Stalker", + [6036] = "Guardian of Backus", + [6046] = "[UNUSED] Gozwin Vilesprocket", + [6047] = "Aqua Guardian", + [6066] = "Earthgrab Totem", + [6067] = "[UNUSED] Meritt Herrion", + [6068] = "Warug\'s Bodyguard", + [6069] = "Maraudine Khan Guard", + [6070] = "Maraudine Khan Advisor", + [6071] = "Legion Hound", + [6072] = "Diathorus the Seeker", + [6073] = "Searing Infernal", + [6074] = "Riding Tiger (White Striped)", + [6075] = "Riding Raptor (Emerald)", + [6076] = "Riding Tallstrider (Ivory)", + [6086] = "Auberdine Sentinel", + [6087] = "Astranaar Sentinel", + [6089] = "Harry Burlguard", + [6090] = "Bartleby", + [6091] = "Dellylah", + [6092] = "Minor Phantasm", + [6093] = "Dead-Tooth Jack", + [6094] = "Byancie", + [6106] = "Lesser Phantasm", + [6107] = "Phantasm", + [6108] = "Greater Phantasm", + [6109] = "Azuregos", + [6110] = "Fire Nova Totem II", + [6111] = "Fire Nova Totem III", + [6112] = "Windfury Totem", + [6113] = "Vejrek", + [6114] = "Muren Stormpike", + [6115] = "Felguard", + [6116] = "Highborne Apparition", + [6117] = "Highborne Lichling", + [6118] = "Varo\'then\'s Ghost", + [6119] = "Tog Rustsprocket", + [6120] = "Lago Blackwrench", + [6121] = "Remen Marcot", + [6122] = "Gakin the Darkbinder", + [6123] = "Dark Iron Spy", + [6124] = "Captain Beld", + [6125] = "Haldarr Satyr", + [6126] = "Haldarr Trickster", + [6127] = "Haldarr Felsworn", + [6128] = "Vorlus Vilehoof", + [6129] = "Draconic Magelord", + [6130] = "Blue Scalebane", + [6131] = "Draconic Mageweaver", + [6132] = "Razorfen Servitor", + [6133] = "Shade of Elura", + [6134] = "Lord Arkkoroc", + [6135] = "Arkkoran Clacker", + [6136] = "Arkkoran Muckdweller", + [6137] = "Arkkoran Pincer", + [6138] = "Arkkoran Oracle", + [6139] = "Highperch Soarer", + [6140] = "Hetaera", + [6141] = "Pridewing Soarer", + [6142] = "Mathiel", + [6143] = "Servant of Arkkoroc", + [6144] = "Son of Arkkoroc", + [6145] = "School of Fish", + [6146] = "Cliff Breaker", + [6147] = "Cliff Thunderer", + [6148] = "Cliff Walker", + [6166] = "Yorus Barleybrew", + [6167] = "Chimaera Matriarch", + [6168] = "Roogug", + [6169] = "Klockmort Spannerspan", + [6170] = "Gutspill", + [6171] = "Duthorian Rall", + [6172] = "Henze Faulk", + [6173] = "Gazin Tenorm", + [6174] = "Stephanie Turner", + [6175] = "John Turner", + [6176] = "Bath\'rah the Windwatcher", + [6177] = "Narm Faulk", + [6178] = "Muiredon Battleforge", + [6179] = "Tiza Battleforge", + [6180] = "Defias Raider", + [6181] = "Jordan Stilwell", + [6182] = "Daphne Stilwell", + [6183] = "[UNUSED] Briton Kilras", + [6184] = "Timbermaw Pathfinder", + [6185] = "Timbermaw Warrior", + [6186] = "Timbermaw Totemic", + [6187] = "Timbermaw Den Watcher", + [6188] = "Timbermaw Shaman", + [6189] = "Timbermaw Ursa", + [6190] = "Spitelash Warrior", + [6193] = "Spitelash Screamer", + [6194] = "Spitelash Serpent Guard", + [6195] = "Spitelash Siren", + [6196] = "Spitelash Myrmidon", + [6197] = "Spitelash Sorceress", + [6198] = "Blood Elf Surveyor", + [6199] = "Blood Elf Reclaimer", + [6200] = "Legashi Satyr", + [6201] = "Legashi Rogue", + [6202] = "Legashi Hellcaller", + [6206] = "Caverndeep Burrower", + [6207] = "Caverndeep Ambusher", + [6208] = "Caverndeep Invader", + [6209] = "Caverndeep Looter", + [6210] = "Caverndeep Pillager", + [6211] = "Caverndeep Reaver", + [6212] = "Dark Iron Agent", + [6213] = "Irradiated Invader", + [6214] = "Irradiated Burrower", + [6215] = "Chomper", + [6218] = "Irradiated Slime", + [6219] = "Corrosive Lurker", + [6220] = "Irradiated Horror", + [6221] = "Addled Leper", + [6222] = "Leprous Technician", + [6223] = "Leprous Defender", + [6224] = "Leprous Machinesmith", + [6225] = "Mechano-Tank", + [6226] = "Mechano-Flamewalker", + [6227] = "Mechano-Frostwalker", + [6228] = "Dark Iron Ambassador", + [6229] = "Crowd Pummeler 9-60", + [6230] = "Peacekeeper Security Suit", + [6231] = "Techbot", + [6232] = "Arcane Nullifier X-21", + [6233] = "Mechanized Sentry", + [6234] = "Mechanized Guardian", + [6235] = "Electrocutioner 6000", + [6236] = "Klannoc Macleod", + [6237] = "Stockade Archer", + [6238] = "Big Will", + [6239] = "Cyclonian", + [6240] = "Affray Challenger", + [6241] = "Bailor Stonehand", + [6242] = "World Skinning Trainer", + [6243] = "Gelihast", + [6244] = "Takar the Seer", + [6245] = "Anathera", + [6246] = "Latherion", + [6247] = "Doan Karhan", + [6248] = "Twiggy Flathead", + [6249] = "Affray Spectator", + [6250] = "Crawler", + [6251] = "Strahad Farsan", + [6252] = "Acolyte Magaz", + [6253] = "Acolyte Fenrick", + [6254] = "Acolyte Wytula", + [6266] = "Menara Voidrender", + [6267] = "Acolyte Porena", + [6268] = "Summoned Felhunter", + [6269] = "Azgalaril", + [6270] = "Asjorah", + [6271] = "Mouse", + [6272] = "Innkeeper Janene", + [6286] = "Zarrin", + [6287] = "Radnaal Maneweaver", + [6288] = "Jayla", + [6289] = "Rand Rhobart", + [6290] = "Yonn Deepcut", + [6291] = "Balthus Stoneflayer", + [6292] = "Eladriel", + [6293] = "Jorah Annison", + [6294] = "Krom Stoutarm", + [6295] = "Wilma Ranthal", + [6296] = "Flame Elemental", + [6297] = "Kurdram Stonehammer", + [6298] = "Thelgrum Stonehammer", + [6299] = "Delfrum Flintbeard", + [6300] = "Elisa Steelhand", + [6301] = "Gorbold Steelhand", + [6306] = "Helene Peltskinner", + [6326] = "Horde Wargryphoner", + [6327] = "Alliance Wargryphoner", + [6328] = "Dannie Fizzwizzle", + [6329] = "Irradiated Pillager", + [6346] = "Skeletal Horse", + [6347] = "Young Wavethrasher", + [6348] = "Wavethrasher", + [6349] = "Great Wavethrasher", + [6350] = "Makrinni Razorclaw", + [6351] = "Storm Bay Oracle", + [6352] = "Coralshell Lurker", + [6366] = "Kurzen Mindslave", + [6367] = "Donni Anthania", + [6368] = "Cat", + [6369] = "Coralshell Tortoise", + [6370] = "Makrinni Scrabbler", + [6371] = "Storm Bay Warrior", + [6372] = "Makrinni Snapclaw", + [6373] = "Dane Winslow", + [6374] = "Cylina Darkheart", + [6375] = "Thunderhead Hippogryph", + [6376] = "Wren Darkspring", + [6377] = "Thunderhead Stagwing", + [6378] = "Thunderhead Skystormer", + [6379] = "Thunderhead Patriarch", + [6380] = "Thunderhead Consort", + [6382] = "Jubahl Corpseseeker", + [6386] = "Ward of Zanzil", + [6387] = "Dranh", + [6388] = "Zanzil Skeleton", + [6389] = "Deathguard Podrig", + [6390] = "Ulag the Cleaver", + [6391] = "Holdout Warrior", + [6392] = "Holdout Medic", + [6393] = "Henen Ragetotem", + [6394] = "Ruga Ragetotem", + [6395] = "Sergeant Rutger", + [6407] = "Holdout Technician", + [6408] = "Ula\'elek", + [6410] = "Orm Stonehoof", + [6411] = "Velora Nitely", + [6412] = "Skeleton", + [6426] = "Anguished Dead", + [6427] = "Haunting Phantasm", + [6446] = "Therzok", + [6466] = "Gamon", + [6467] = "Mennet Carkad", + [6486] = "Riding Skeletal Horse (Black)", + [6487] = "Arcanist Doan", + [6488] = "Fallen Champion", + [6489] = "Ironspine", + [6490] = "Azshir the Sleepless", + [6491] = "Spirit Healer", + [6492] = "Rift Spawn", + [6493] = "Illusionary Phantasm", + [6494] = "Tazan", + [6495] = "Riznek", + [6496] = "Brivelthwerp", + [6497] = "Astor Hadren", + [6498] = "Devilsaur", + [6499] = "Ironhide Devilsaur", + [6500] = "Tyrant Devilsaur", + [6501] = "Stegodon", + [6502] = "Plated Stegodon", + [6503] = "Spiked Stegodon", + [6504] = "Thunderstomp Stegodon", + [6505] = "Ravasaur", + [6506] = "Ravasaur Runner", + [6507] = "Ravasaur Hunter", + [6508] = "Venomhide Ravasaur", + [6509] = "Bloodpetal Lasher", + [6510] = "Bloodpetal Flayer", + [6511] = "Bloodpetal Thresher", + [6512] = "Bloodpetal Trapper", + [6513] = "Un\'Goro Stomper", + [6514] = "Un\'Goro Gorilla", + [6516] = "Un\'Goro Thunderer", + [6517] = "Tar Beast", + [6518] = "Tar Lurker", + [6519] = "Tar Lord", + [6520] = "Scorching Elemental", + [6521] = "Living Blaze", + [6522] = "Andron Gant", + [6523] = "Dark Iron Rifleman", + [6526] = "GOSSIP TEST DUDE", + [6527] = "Tar Creeper", + [6546] = "Tabetha", + [6547] = "Suffering Victim", + [6548] = "Magus Tirth", + [6549] = "Demon of the Orb", + [6550] = "Mana Surge", + [6551] = "Gorishi Wasp", + [6552] = "Gorishi Worker", + [6553] = "Gorishi Reaver", + [6554] = "Gorishi Stinger", + [6555] = "Gorishi Tunneler", + [6556] = "Muculent Ooze", + [6557] = "Primal Ooze", + [6559] = "Glutinous Ooze", + [6560] = "Stone Guardian", + [6561] = "Stone Warden", + [6566] = "Estelle Gendry", + [6567] = "Ghok\'kah", + [6568] = "Vizzklick", + [6569] = "Gnoarn", + [6570] = "Fenwick Thatros", + [6571] = "Cat Form (Night Elf Druid)", + [6572] = "Cat Form (Tauren Druid)", + [6573] = "Travel Form (Druid)", + [6574] = "Jun\'ha", + [6575] = "Scarlet Trainee", + [6576] = "Brienna Starglow", + [6577] = "Bingles Blastenheimer", + [6578] = "Peasant (Wood)", + [6579] = "Shoni the Shilent", + [6581] = "Ravasaur Matriarch", + [6582] = "Clutchmother Zavas", + [6583] = "Gruff", + [6584] = "King Mosh", + [6585] = "Uhk\'loc", + [6586] = "Rokar Bladeshadow", + [6606] = "Overseer Glibby", + [6607] = "Harroc", + [6626] = "\"Plucky\" Johnson", + [6646] = "Monnos the Elder", + [6647] = "Magister Hawkhelm", + [6648] = "Antilos", + [6649] = "Lady Sesspira", + [6650] = "General Fangferror", + [6651] = "Gatekeeper Rageroar", + [6652] = "Master Feardred", + [6653] = "Huge Toad", + [6666] = "\"Plucky\" Johnson\'s Human Form", + [6667] = "Gelkak Gyromast", + [6668] = "Lord Cyrik Blackforge", + [6669] = "The Threshwackonator 4100", + [6670] = "Westfall Woodworker", + [6687] = "Druid 40 (faster)!", + [6688] = "Druid 40 (fastest!)", + [6706] = "Baritanas Skyriver", + [6707] = "Fahrad", + [6726] = "Thalon", + [6727] = "Innkeeper Brianna", + [6728] = "Narnie", + [6729] = "Morridune", + [6730] = "Jinky Twizzlefixxit", + [6731] = "Harlown Darkweave", + [6732] = "Amie Pierce", + [6733] = "Stonevault Basher", + [6734] = "Innkeeper Hearthstove", + [6735] = "Innkeeper Saelienne", + [6736] = "Innkeeper Keldamyr", + [6737] = "Innkeeper Shaussiy", + [6738] = "Innkeeper Kimlya", + [6739] = "Innkeeper Bates", + [6740] = "Innkeeper Allison", + [6741] = "Innkeeper Norman", + [6746] = "Innkeeper Pala", + [6747] = "Innkeeper Kauth", + [6748] = "Water Spirit", + [6749] = "Erma", + [6766] = "Ravenholdt Guard", + [6767] = "Garona", + [6768] = "Lord Jorach Ravenholdt", + [6769] = "[UNUSED] Ravenholdt Falconer", + [6770] = "[UNUSED] Ravenholdt Houndmaster", + [6771] = "Ravenholdt Assassin", + [6772] = "Attack Hound", + [6773] = "Shadowhawk", + [6774] = "Falkhaan Isenstrider", + [6775] = "Antur Fallow", + [6776] = "Magrin Rivermane", + [6777] = "Zan Shivsproket", + [6778] = "Melika Isenstrider", + [6779] = "Smudge Thunderwood", + [6780] = "Porthannius", + [6781] = "Melarith", + [6782] = "Hands Springsprocket", + [6783] = "[UNUSED] Lorek Belm", + [6784] = "Calvin Montague", + [6785] = "Ratslin Maime", + [6786] = "Ukor", + [6787] = "Yelnagi Blackarm", + [6788] = "Den Mother", + [6789] = "Thistle Cub", + [6790] = "Innkeeper Trelayne", + [6791] = "Innkeeper Wiley", + [6806] = "Tannok Frosthammer", + [6807] = "Innkeeper Skindle", + [6826] = "Talvash del Kissel", + [6827] = "Crab", + [6846] = "Defias Dockmaster", + [6866] = "Defias Bodyguard", + [6867] = "Tracking Hound", + [6868] = "Jarkal Mossmeld", + [6886] = "Onin MacHammar", + [6887] = "Yalda", + [6906] = "Baelog", + [6907] = "Eric \"The Swift\"", + [6908] = "Olaf", + [6909] = "Sethir the Ancient", + [6910] = "Revelosh", + [6911] = "Minion of Sethir", + [6912] = "Remains of a Paladin", + [6913] = "Lost One Rift Traveler", + [6926] = "Test Satyr", + [6927] = "Defias Dockworker", + [6928] = "Innkeeper Grosk", + [6929] = "Innkeeper Gryshka", + [6930] = "Innkeeper Karakul", + [6931] = "Respawn Test Mob", + [6932] = "Swamp Spirit", + [6946] = "Renzik \"The Shiv\"", + [6966] = "Lucius", + [6986] = "Dran Droffers", + [6987] = "Malton Droffers", + [7006] = "Blackrock Assassin", + [7007] = "Tiev Mordune", + [7008] = "Blackrock Reaver", + [7009] = "Arantir", + [7010] = "Zilzibin Drumlore", + [7011] = "Earthen Rocksmasher", + [7012] = "Earthen Sculptor", + [7013] = "Blackrock Rampager", + [7014] = "Commander Kartak Dwarfdefiler", + [7015] = "Flagglemurk the Cruel", + [7016] = "Lady Vespira", + [7017] = "Lord Sinslayer", + [7022] = "Venomlash Scorpid", + [7023] = "Obsidian Sentinel", + [7024] = "Agent Kearnen", + [7025] = "Blackrock Soldier", + [7026] = "Blackrock Sorcerer", + [7027] = "Blackrock Slayer", + [7028] = "Blackrock Warlock", + [7029] = "Blackrock Battlemaster", + [7030] = "Shadowforge Geologist", + [7031] = "Obsidian Elemental", + [7032] = "Greater Obsidian Elemental", + [7033] = "Firegut Ogre", + [7034] = "Firegut Ogre Mage", + [7035] = "Firegut Brute", + [7036] = "Thaurissan Spy", + [7037] = "Thaurissan Firewalker", + [7038] = "Thaurissan Agent", + [7039] = "War Reaver", + [7040] = "Black Dragonspawn", + [7041] = "Black Wyrmkin", + [7042] = "Flamescale Dragonspawn", + [7043] = "Flamescale Wyrmkin", + [7044] = "Black Drake", + [7045] = "Scalding Drake", + [7046] = "Searscale Drake", + [7047] = "Black Broodling", + [7048] = "Scalding Broodling", + [7049] = "Flamescale Broodling", + [7050] = "Defias Drone", + [7051] = "Malformed Defias Drone", + [7052] = "Defias Tower Patroller", + [7053] = "Klaven Mortwake", + [7055] = "Blackrock Worg", + [7056] = "Defias Tower Sentry", + [7057] = "Digmaster Shovelphlange", + [7067] = "Venture Co. Drone", + [7068] = "Condemned Acolyte", + [7069] = "Condemned Monk", + [7070] = "Condemned Cleric", + [7071] = "Cursed Paladin", + [7072] = "Cursed Justicar", + [7073] = "Arados the Damned", + [7074] = "Judge Thelgram", + [7075] = "Writhing Mage", + [7076] = "Earthen Guardian", + [7077] = "Earthen Hallshaper", + [7078] = "Cleft Scorpid", + [7079] = "Viscous Fallout", + [7086] = "Cursed Ooze", + [7087] = "Killian Hagey", + [7088] = "Thuwd", + [7089] = "Mooranta", + [7091] = "Shadowforge Ambusher", + [7092] = "Tainted Ooze", + [7093] = "Vile Ooze", + [7094] = "Crazed Stag", + [7095] = "Maddened Stag", + [7096] = "Corrupt Courser", + [7097] = "Ironbeak Owl", + [7098] = "Ironbeak Screecher", + [7099] = "Ironbeak Hunter", + [7100] = "Warpwood Moss Flayer", + [7101] = "Warpwood Shredder", + [7104] = "Dessecus", + [7105] = "Jadefire Satyr", + [7106] = "Jadefire Rogue", + [7107] = "Jadefire Trickster", + [7108] = "Jadefire Betrayer", + [7109] = "Jadefire Felsworn", + [7110] = "Jadefire Shadowstalker", + [7111] = "Jadefire Hellcaller", + [7112] = "Jaedenar Cultist", + [7113] = "Jaedenar Guardian", + [7114] = "Jaedenar Enforcer", + [7115] = "Jaedenar Adept", + [7116] = "Jaedenar Dreadweaver", + [7117] = "Jaedenar Instigator", + [7118] = "Jaedenar Darkweaver", + [7119] = "Jaedenar Summoner", + [7120] = "Jaedenar Warlock", + [7121] = "Jaedenar Arch Warlock", + [7122] = "Shadow Council Champion", + [7123] = "Shadow Council Master", + [7124] = "Shadow Council Highlord", + [7125] = "Jaedenar Hound", + [7126] = "Jaedenar Hunter", + [7127] = "Jaedenar Stalker", + [7128] = "Jaedenar Mana Leech", + [7129] = "Enslaved Voidwalker", + [7130] = "Voidwalker Servant", + [7131] = "Voidwalker Guardian", + [7132] = "Toxic Horror", + [7133] = "Noxious Horror", + [7134] = "Poison Flayer", + [7135] = "Infernal Bodyguard", + [7136] = "Infernal Sentry", + [7137] = "Immolatus", + [7138] = "Irontree Wanderer", + [7139] = "Irontree Stomper", + [7143] = "Decaying Treant", + [7144] = "Withered Treant", + [7146] = "Treant Protector", + [7149] = "Withered Protector", + [7150] = "Withered Guardian", + [7151] = "Withered Watcher", + [7152] = "Withered Forest Walker", + [7153] = "Deadwood Warrior", + [7154] = "Deadwood Gardener", + [7155] = "Deadwood Pathfinder", + [7156] = "Deadwood Den Watcher", + [7157] = "Deadwood Avenger", + [7158] = "Deadwood Shaman", + [7161] = "Wrenix the Wretched", + [7166] = "Wrenix\'s Gizmotronic Apparatus", + [7167] = "Polly", + [7168] = " Polly", + [7170] = "Thragomm", + [7172] = "Lore Keeper of Norgannon", + [7173] = "World Weaponsmithing Trainer", + [7174] = "World Armorsmithing Trainer", + [7175] = "Stonevault Ambusher", + [7186] = "A", + [7206] = "Ancient Stone Keeper", + [7207] = "Doc Mixilpixil", + [7208] = "Noarm", + [7209] = "Obsidian Shard", + [7226] = "Sand Storm", + [7227] = "Cobaltine Dragonspawn", + [7228] = "Ironaya", + [7229] = "Arantir\'s Shadow", + [7230] = "Shayis Steelfury", + [7231] = "Kelgruk Bloodaxe", + [7232] = "Borgus Steelhand", + [7233] = "Taskmaster Fizzule", + [7234] = "Ferocitas the Dream Eater", + [7235] = "Gnarlpine Mystic", + [7236] = "Test Anubisath", + [7246] = "Sandfury Shadowhunter", + [7247] = "Sandfury Soul Eater", + [7266] = "Ember", + [7267] = "Chief Ukorz Sandscalp", + [7268] = "Sandfury Guardian", + [7269] = "Scarab", + [7270] = "Sandfury Zombie", + [7271] = "Witch Doctor Zum\'rah", + [7272] = "Theka the Martyr", + [7273] = "Gahz\'rilla", + [7274] = "Sandfury Executioner", + [7275] = "Shadowpriest Sezz\'ziz", + [7276] = "Zul\'Farrak Dead Hero", + [7286] = "Zul\'Farrak Zombie", + [7287] = "Foreman Silixiz", + [7288] = "Grand Foreman Puzik Gallywix", + [7290] = "Shadowforge Sharpshooter", + [7291] = "Galgann Firehammer", + [7292] = "Dinita Stonemantle", + [7293] = "[UNUSED] Drayl", + [7294] = "Shim\'la", + [7295] = "Shailiea", + [7296] = "Corand", + [7297] = "Gothard Winslow", + [7298] = "Demnul Farmountain", + [7307] = "Venture Co. Lookout", + [7308] = "Venture Co. Patroller", + [7309] = "Earthen Custodian", + [7310] = "Mutated Venture Co. Drone", + [7311] = "Uthel\'nay", + [7312] = "Dink", + [7313] = "Priestess A\'moora", + [7314] = "Test BattleMaster", + [7315] = "Darnath Bladesinger", + [7316] = "Sister Aquinne", + [7317] = "Oben Rageclaw", + [7318] = "Rageclaw", + [7319] = "Lady Sathrah", + [7320] = "Stonevault Mauler", + [7321] = "Stonevault Flameweaver", + [7322] = "Riding Tiger (Black)", + [7323] = "Winstone Wolfe", + [7324] = "Simone Cantrell", + [7325] = "Master Kang", + [7327] = "Withered Warrior", + [7328] = "Withered Reaver", + [7329] = "Withered Quilguard", + [7332] = "Withered Spearhide", + [7333] = "Withered Battle Boar", + [7334] = "Battle Boar Horror", + [7335] = "Death\'s Head Geomancer", + [7337] = "Death\'s Head Necromancer", + [7340] = "Skeletal Shadowcaster", + [7341] = "Skeletal Frostweaver", + [7342] = "Skeletal Summoner", + [7343] = "Splinterbone Skeleton", + [7344] = "Splinterbone Warrior", + [7345] = "Splinterbone Captain", + [7346] = "Splinterbone Centurion", + [7347] = "Boneflayer Ghoul", + [7348] = "Thorn Eater Ghoul", + [7349] = "Tomb Fiend", + [7351] = "Tomb Reaver", + [7352] = "Frozen Soul", + [7353] = "Freezing Spirit", + [7354] = "Ragglesnout", + [7355] = "Tuten\'kash", + [7356] = "Plaguemaw the Rotting", + [7357] = "Mordresh Fire Eye", + [7358] = "Amnennar the Coldbringer", + [7360] = "Dun Garok Soldier", + [7361] = "Grubbis", + [7363] = "Kum\'isha the Collector", + [7364] = "Flawless Draenethyst Sphere", + [7365] = "Flawless Draenethyst Fragment", + [7366] = "Stoneskin Totem IV", + [7367] = "Stoneskin Totem V", + [7368] = "Stoneskin Totem VI", + [7369] = "Deadwind Brute", + [7370] = "Restless Shade", + [7371] = "Deadwind Mauler", + [7372] = "Deadwind Warlock", + [7373] = "Deadwind Enforcer", + [7374] = "Vengeful Wraith", + [7375] = "Spirit of Wrath", + [7376] = "Sky Shadow", + [7377] = "Doomhound Ravager", + [7378] = "Doomhound Mastiff", + [7379] = "Deadwind Ogre Mage", + [7380] = "Siamese", + [7381] = "Silver Tabby", + [7382] = "Orange Tabby", + [7383] = "Maine Coon", + [7384] = "Cornish Rex", + [7385] = "Bombay", + [7386] = "White Kitten", + [7387] = "Green Wing Macaw", + [7388] = "Cockatoo", + [7389] = "Senegal", + [7390] = "Cockatiel", + [7391] = "Hyacinth Macaw", + [7392] = "Prairie Chicken", + [7393] = "White Plymouth Rock", + [7394] = "Ancona Chicken", + [7395] = "Cockroach", + [7396] = "Earthen Stonebreaker", + [7397] = "Earthen Stonecarver", + [7398] = "Stoneclaw Totem V", + [7399] = "Stoneclaw Totem VI", + [7400] = "Searing Totem V", + [7401] = "Draenei Refugee", + [7402] = "Searing Totem VI", + [7403] = "Strength of Earth Totem IV", + [7404] = "Galak Flame Guard", + [7405] = "Deadly Cleft Scorpid", + [7406] = "Oglethorpe Obnoticus", + [7407] = "Chief Engineer Bilgewhizzle", + [7408] = "Spigot Operator Luglunket", + [7409] = "Faltering Draenethyst Sphere", + [7410] = "Thelman Slatefist", + [7411] = "Spirit of Sathrah", + [7412] = "Frost Resistance Totem II", + [7413] = "Frost Resistance Totem III", + [7414] = "Mana Spring Totem II", + [7415] = "Mana Spring Totem III", + [7416] = "Mana Spring Totem IV", + [7423] = "Flametongue Totem III", + [7424] = "Fire Resistance Totem II", + [7425] = "Fire Resistance Totem III", + [7427] = "Taim Ragetotem", + [7428] = "Frostmaul Giant", + [7429] = "Frostmaul Preserver", + [7430] = "Frostsaber Cub", + [7431] = "Frostsaber", + [7432] = "Frostsaber Stalker", + [7433] = "Frostsaber Huntress", + [7434] = "Frostsaber Pride Watcher", + [7435] = "Cobalt Wyrmkin", + [7436] = "Cobalt Scalebane", + [7437] = "Cobalt Mageweaver", + [7438] = "Winterfall Ursa", + [7439] = "Winterfall Shaman", + [7440] = "Winterfall Den Watcher", + [7441] = "Winterfall Totemic", + [7442] = "Winterfall Pathfinder", + [7443] = "Shardtooth Mauler", + [7444] = "Shardtooth Bear", + [7445] = "Elder Shardtooth", + [7446] = "Rabid Shardtooth", + [7447] = "Fledgling Chillwind", + [7448] = "Chillwind Chimaera", + [7449] = "Chillwind Ravager", + [7450] = "Ragged Owlbeast", + [7451] = "Raging Owlbeast", + [7452] = "Crazed Owlbeast", + [7453] = "Moontouched Owlbeast", + [7454] = "Berserk Owlbeast", + [7455] = "Winterspring Owl", + [7456] = "Winterspring Screecher", + [7457] = "Rogue Ice Thistle", + [7458] = "Ice Thistle Yeti", + [7459] = "Ice Thistle Matriarch", + [7460] = "Ice Thistle Patriarch", + [7461] = "Hederine Initiate", + [7462] = "Hederine Manastalker", + [7463] = "Hederine Slayer", + [7464] = "Magma Totem II", + [7465] = "Magma Totem III", + [7466] = "Magma Totem IV", + [7467] = "Nature Resistance Totem", + [7468] = "Nature Resistance Totem II", + [7469] = "Nature Resistance Totem III", + [7483] = "Windfury Totem II", + [7484] = "Windfury Totem III", + [7485] = "Nargatt", + [7486] = "Grace of Air Totem", + [7487] = "Grace of Air Totem II", + [7488] = "Haka\'wani", + [7489] = "Silverpine Deathguard", + [7503] = "Curse of the Eye (Male)", + [7504] = "Curse of the Eye (Female)", + [7505] = "Bloodmage Drazial", + [7506] = "Bloodmage Lynnore", + [7523] = "Suffering Highborne", + [7524] = "Anguished Highborne", + [7525] = "World Leatherworking Dragonscale Trainer", + [7526] = "World Leatherworking Elemental Trainer", + [7527] = "Goblin Land Mine", + [7528] = "World Leatherworking Tribal Trainer", + [7543] = "Dark Whelpling", + [7544] = "Crimson Whelpling", + [7545] = "Emerald Whelpling", + [7546] = "Bronze Whelpling", + [7547] = "Azure Whelpling", + [7548] = "Faeling", + [7549] = "Tree Frog", + [7550] = "Wood Frog", + [7551] = "Dart Frog", + [7552] = "Island Frog", + [7553] = "Great Horned Owl", + [7554] = "Snowy Owl", + [7555] = "Hawk Owl", + [7556] = "Eagle Owl", + [7558] = "Cottontail Rabbit", + [7559] = "Spotted Rabbit", + [7560] = "Snowshoe Rabbit", + [7561] = "Albino Snake", + [7562] = "Brown Snake", + [7563] = "Blue Racer", + [7564] = "Marin Noggenfogger", + [7565] = "Black Kingsnake", + [7566] = "Scarlet Snake", + [7567] = "Crimson Snake", + [7568] = "Ribbon Snake", + [7569] = "Green Water Snake", + [7570] = "Elven Wisp", + [7572] = "Fallen Hero of the Horde", + [7583] = "Sprinkle", + [7584] = "Wandering Forest Walker", + [7603] = "Leprous Assistant", + [7604] = "Sergeant Bly", + [7605] = "Raven", + [7606] = "Oro Eyegouge", + [7607] = "Weegli Blastfuse", + [7608] = "Murta Grimgut", + [7623] = "Dispatch Commander Ruag", + [7624] = "Test Death Knight", + [7643] = "Bengor", + [7663] = "Ashenvale Warrior", + [7664] = "Razelikh the Defiler", + [7665] = "Grol the Destroyer", + [7666] = "Archmage Allistarj", + [7667] = "Lady Sevine", + [7668] = "Servant of Razelikh", + [7669] = "Servant of Grol", + [7670] = "Servant of Allistarj", + [7671] = "Servant of Sevine", + [7683] = "Alessandro Luca", + [7684] = "Riding Tiger (Yellow)", + [7686] = "Riding Tiger (Red)", + [7687] = "Riding Tiger (White Spotted)", + [7689] = "Riding Tiger (BlackSpotted)", + [7690] = "Riding Tiger (BlackStriped)", + [7703] = "Riding Raptor (Obsidian)", + [7704] = "Riding Raptor (Crimson)", + [7706] = "Riding Raptor (Ivory)", + [7707] = "Riding Raptor (Turquoise)", + [7708] = "Riding Raptor (Violet)", + [7709] = "Riding Tallstrider (Brown)", + [7710] = "Riding Tallstrider (Gray)", + [7711] = "Riding Tallstrider (Pink)", + [7712] = "Riding Tallstrider (Purple)", + [7713] = "Riding Tallstrider (Turquoise)", + [7714] = "Innkeeper Byula", + [7724] = "Senior Surveyor Fizzledowser", + [7725] = "Grimtotem Raider", + [7726] = "Grimtotem Naturalist", + [7727] = "Grimtotem Shaman", + [7728] = "Kirith the Damned", + [7729] = "Spirit of Kirith", + [7730] = "Stonetalon Grunt", + [7731] = "Innkeeper Jayka", + [7732] = "Dupe Bug", + [7733] = "Innkeeper Fizzgrimble", + [7734] = "Ilifar", + [7735] = "Felcular", + [7736] = "Innkeeper Shyria", + [7737] = "Innkeeper Greul", + [7738] = "Burning Servant", + [7739] = "Riding MechaStrider (Red)", + [7740] = "Gracina Spiritmight", + [7743] = "World Undead Horse Riding Trainer", + [7744] = "Innkeeper Thulfram", + [7745] = "World Raptor Riding Trainer", + [7746] = "World Mechastrider Riding Trainer", + [7747] = "World Mount Vendor", + [7748] = "World Horse Vendor", + [7749] = "Riding MechaStrider (Blue)", + [7750] = "Corporal Thund Splithoof", + [7763] = "Curgle Cranklehop", + [7764] = "Troyas Moonbreeze", + [7765] = "Rockbiter", + [7766] = "Tyrion", + [7767] = "Witherbark Felhunter", + [7768] = "Witherbark Bloodling", + [7769] = "Hazzali Parasite", + [7770] = "Winkey", + [7771] = "Marvon Rivetseeker", + [7772] = "Kalin Windflight", + [7773] = "Marli Wishrunner", + [7774] = "Shay Leafrunner", + [7775] = "Gregan Brewspewer", + [7776] = "Talo Thornhoof", + [7777] = "Rok Orhan", + [7778] = "Doran Steelwing", + [7779] = "Priestess Tyriona", + [7780] = "Rin\'ji", + [7783] = "Loramus Thalipedes", + [7784] = "Homing Robot OOX-17/TN", + [7785] = "Ward of Zum\'rah", + [7786] = "Skeleton of Zum\'rah", + [7787] = "Sandfury Slave", + [7788] = "Sandfury Drudge", + [7789] = "Sandfury Cretin", + [7790] = "Orokk Omosh", + [7791] = "Theka the Martyr Shapeshift", + [7792] = "Aturk the Anvil", + [7793] = "Ox", + [7794] = "McGavan", + [7795] = "Hydromancer Velratha", + [7796] = "Nekrum Gutchewer", + [7797] = "Ruuzlu", + [7798] = "Hank the Hammer", + [7799] = "Gimblethorn", + [7800] = "Mekgineer Thermaplugg", + [7801] = "Gilveradin Sunchaser", + [7802] = "Galvan the Ancient", + [7803] = "Scorpid Duneburrower", + [7804] = "Trenton Lighthammer", + [7805] = "Wastewander Scofflaw", + [7806] = "Homing Robot OOX-09/HL", + [7807] = "Homing Robot OOX-22/FE", + [7808] = "Marauding Owlbeast", + [7809] = "Vilebranch Ambusher", + [7823] = "Bera Stonehammer", + [7824] = "Bulkrek Ragefist", + [7825] = "Oran Snakewrithe", + [7826] = "Ambassador Ardalan", + [7843] = "Gnomeregan Evacuee", + [7844] = "Fire Nova Totem IV", + [7845] = "Fire Nova Totem V", + [7846] = "Teremus the Devourer", + [7847] = "Caliph Scorpidsting", + [7848] = "Lurking Feral Scar", + [7849] = "Mobile Alert System", + [7850] = "Kernobee", + [7851] = "Nethergarde Elite", + [7852] = "Pratt McGrubben", + [7853] = "Scooty", + [7854] = "Jangdor Swiftstrider", + [7855] = "Southsea Pirate", + [7856] = "Southsea Freebooter", + [7857] = "Southsea Dock Worker", + [7858] = "Southsea Swashbuckler", + [7863] = "Dream Vision", + [7864] = "Lingering Highborne", + [7865] = "Wildhammer Sentry", + [7866] = "Peter Galen", + [7867] = "Thorkaf Dragoneye", + [7868] = "Sarah Tanner", + [7869] = "Brumn Winterhoof", + [7870] = "Caryssia Moonhunter", + [7871] = "Se\'Jib", + [7872] = "Death\'s Head Cultist", + [7873] = "Razorfen Battleguard", + [7874] = "Razorfen Thornweaver", + [7875] = "Hadoken Swiftstrider", + [7876] = "Tran\'rek", + [7877] = "Latronicus Moonspear", + [7878] = "Vestia Moonspear", + [7879] = "Quintis Jonespyre", + [7880] = "Ginro Hearthkindle", + [7881] = "Stoley", + [7882] = "Security Chief Bilgewhizzle", + [7883] = "Andre Firebeard", + [7884] = "Fraggar Thundermantle", + [7885] = "Spitelash Battlemaster", + [7886] = "Spitelash Enchantress", + [7895] = "Ambassador Bloodrage", + [7896] = "Southsea Buccaneer", + [7897] = "Alarm-a-bomb 2600", + [7898] = "Pirate treasure trigger mob", + [7899] = "Treasure Hunting Pirate", + [7900] = "Angelas Moonbreeze", + [7901] = "Treasure Hunting Swashbuckler", + [7902] = "Treasure Hunting Buccaneer", + [7903] = "Jewel", + [7904] = "Jacob", + [7906] = "Goldshire Guard", + [7907] = "Daryn Lightwind", + [7915] = "Walking Bomb", + [7916] = "Erelas Ambersky", + [7917] = "Brother Sarno", + [7918] = "Stone Watcher of Norgannon", + [7919] = "Gnomeregan - Matrix Punchograph 3005-A", + [7935] = "Irradiated Ozzie", + [7936] = "Lyon Mountainheart", + [7937] = "High Tinker Mekkatorque", + [7938] = "Test Auctioneer", + [7939] = "Feathermoon Sentinel", + [7940] = "Darnall", + [7941] = "Mardrack Greenwell", + [7942] = "Faralorn", + [7943] = "Harklane", + [7944] = "Tinkmaster Overspark", + [7945] = "Savanne", + [7946] = "Brannock", + [7947] = "Vivianna", + [7948] = "Kylanna Windwhisper", + [7949] = "Xylinnia Starshine", + [7950] = "Master Mechanic Castpipe", + [7951] = "Zas\'Tysh", + [7952] = "Zjolnir", + [7953] = "Xar\'Ti", + [7954] = "Binjy Featherwhistle", + [7955] = "Milli Featherwhistle", + [7956] = "Kindal Moonweaver", + [7957] = "Jer\'kai Moonweaver", + [7975] = "Mulgore Protector", + [7976] = "Thalgus Thunderfist", + [7977] = "Gammerita", + [7978] = "Bimble Longberry", + [7980] = "Deathguard Elite", + [7995] = "Vile Priestess Hexx", + [7996] = "Qiaga the Keeper", + [7997] = "Captured Sprite Darter", + [7998] = "Blastmaster Emi Shortfuse", + [7999] = "Tyrande Whisperwind", + [8015] = "Ashenvale Sentinel", + [8016] = "Barrens Guard", + [8017] = "Sen\'jin Guardian", + [8018] = "Guthrum Thunderfist", + [8019] = "Fyldren Moonfeather", + [8020] = "Shyn", + [8021] = "Orwin Gizzmick", + [8022] = "Thadius Grimshade", + [8023] = "Sharpbeak", + [8024] = "Sharpbeak\'s Father", + [8025] = "Sharpbeak\'s Mother", + [8026] = "Thyn\'tel Bladeweaver", + [8035] = "Dark Iron Land Mine", + [8055] = "Thelsamar Mountaineer", + [8075] = "Edana Hatetalon", + [8095] = "Sul\'lithuz Sandcrawler", + [8096] = "Protector of the People", + [8115] = "Witch Doctor Uzer\'i", + [8116] = "Ziggle Sparks", + [8117] = "Wizbang Booms", + [8118] = "Lillian Singh", + [8119] = "Zikkel", + [8120] = "Sul\'lithuz Abomination", + [8121] = "Jaxxil Sparks", + [8122] = "Kizzak Sparks", + [8123] = "Rickle Goldgrubber", + [8124] = "Qizzik", + [8125] = "Dirge Quikcleave", + [8126] = "Nixx Sprocketspring", + [8127] = "Antu\'sul", + [8128] = "Pikkle", + [8129] = "Wrinkle Goodsteel", + [8130] = "Sul\'lithuz Hatchling", + [8131] = "Blizrik Buckshot", + [8136] = "Lord Shalzaru", + [8137] = "Gikkix", + [8138] = "Sul\'lithuz Broodling", + [8139] = "Jabbey", + [8140] = "Brother Karman", + [8141] = "Captain Evencane", + [8142] = "Jannos Lighthoof", + [8143] = "Loorana", + [8144] = "Kulleg Stonehorn", + [8145] = "Sheendra Tallgrass", + [8146] = "Ruw", + [8147] = "Camp Mojache Brave", + [8148] = "Waurg", + [8149] = "Sul\'lithuz Warder", + [8150] = "Janet Hommers", + [8151] = "Nijel\'s Point Guard", + [8152] = "Harnor", + [8153] = "Narv Hidecrafter", + [8154] = "Ghost Walker Brave", + [8155] = "Kargath Grunt", + [8156] = "Servant of Antu\'sul", + [8157] = "Logannas", + [8158] = "Bronk", + [8159] = "Worb Strongstitch", + [8160] = "Nioma", + [8161] = "Harggan", + [8176] = "Gharash", + [8177] = "Rartar", + [8178] = "Nina Lightbrew", + [8179] = "Greater Healing Ward", + [8196] = "Occulus", + [8197] = "Chronalis", + [8198] = "Tick", + [8199] = "Warleader Krazzilak", + [8200] = "Jin\'Zallah the Sandbringer", + [8201] = "Omgorn the Lost", + [8202] = "Cyclok the Mad", + [8203] = "Kregg Keelhaul", + [8204] = "Soriid the Devourer", + [8205] = "Haarka the Ravenous", + [8206] = "Soul of Tanaris", + [8207] = "Greater Firebird", + [8208] = "Murderous Blisterpaw", + [8210] = "Razortalon", + [8211] = "Old Cliff Jumper", + [8212] = "The Reak", + [8213] = "Ironback", + [8214] = "Jalinde Summerdrake", + [8215] = "Grimungous", + [8216] = "Retherokk the Berserker", + [8217] = "Mith\'rethis the Enchanter", + [8218] = "Witherheart the Stalker", + [8219] = "Zul\'arek Hatefowler", + [8236] = "Muck Frenzy", + [8256] = "Curator Thorius", + [8257] = "Oozeling", + [8276] = "Soaring Razorbeak", + [8277] = "Rekk\'tilac", + [8278] = "Smoldar", + [8279] = "Faulty War Golem", + [8280] = "Shleipnarr", + [8281] = "Scald", + [8282] = "Highlord Mastrogonde", + [8283] = "Slave Master Blackheart", + [8284] = "Dorius Stonetender", + [8296] = "Mojo the Twisted", + [8297] = "Magronos the Unyielding", + [8298] = "Akubar the Seer", + [8299] = "Spiteflayer", + [8300] = "Ravage", + [8301] = "Clack the Reaver", + [8302] = "Deatheye", + [8303] = "Grunter", + [8304] = "Dreadscorn", + [8305] = "Kixxle", + [8306] = "Duhng", + [8307] = "Tarban Hearthgrain", + [8308] = "Alenndaar Lapidaar", + [8309] = "Carlo Aurelius", + [8310] = "Watcher Wollpert", + [8311] = "Slime Maggot", + [8316] = "Paladin 10 Alternate", + [8317] = "Atal\'ai Deathwalker\'s Spirit", + [8318] = "Atal\'ai Slave", + [8319] = "Nightmare Whelp", + [8320] = "Sprok", + [8321] = "Paladin 20 Alternate", + [8322] = "Paladin 30 Alternate", + [8323] = "Paladin 40 Alternate", + [8324] = "Atal\'ai Skeleton", + [8336] = "Hakkari Sapper", + [8337] = "Dark Iron Steelshifter", + [8338] = "Dark Iron Marksman", + [8356] = "Chesmu", + [8357] = "Atepa", + [8358] = "Hewa", + [8359] = "Ahanu", + [8360] = "Elki", + [8361] = "Chepi", + [8362] = "Kuruk", + [8363] = "Shadi Mistrunner", + [8364] = "Pakwa", + [8376] = "Mechanical Chicken", + [8377] = "Ahdi of Shadow Hall", + [8378] = "Alexandra Blazen", + [8379] = "Archmage Xylem", + [8380] = "Captain Vanessa Beltis", + [8381] = "Lindros", + [8382] = "Patrick Mills", + [8383] = "Master Wood", + [8384] = "Deep Lurker", + [8385] = "Mura Runetotem", + [8386] = "Horizon Scout Crewman", + [8387] = "Horizon Scout First Mate", + [8388] = "Horizon Scout Cook", + [8389] = "Horizon Scout Engineer", + [8390] = "Chemist Cuely", + [8391] = "Lathoric the Black", + [8392] = "Pilot Xiggs Fuselighter", + [8393] = "Thersa Windsong", + [8394] = "Roland Geardabbler", + [8395] = "Sanath Lim-yo", + [8396] = "Sentinel Dalia Sunblade", + [8397] = "Sentinel Keldara Sunblade", + [8398] = "Ohanko", + [8399] = "Nyrill", + [8400] = "Obsidion", + [8401] = "Halpa", + [8402] = "Enslaved Archaeologist", + [8403] = "Jeremiah Payson", + [8404] = "Xan\'tish", + [8405] = "Ogtinc", + [8406] = "Or\'lin Oakenfist", + [8407] = "Makron the Corrupt", + [8408] = "Warlord Krellian", + [8409] = "Caravan Master Tset", + [8416] = "Felix Whindlebolt", + [8417] = "Dying Archaeologist", + [8418] = "Falla Sagewind", + [8419] = "Twilight Idolater", + [8420] = "Kim\'jael", + [8421] = "Dorius", + [8436] = "Zamael Lunthistle", + [8437] = "Hakkari Minion", + [8438] = "Hakkari Bloodkeeper", + [8439] = "Nilith Lokrav", + [8440] = "Shade of Hakkar", + [8441] = "Raze", + [8442] = "Shadowsilk Poacher", + [8443] = "Avatar of Hakkar", + [8444] = "Trade Master Kovic", + [8446] = "Xiggs Fuselighter\'s Flyingmachine", + [8447] = "Clunk", + [8477] = "Skeletal Servant", + [8478] = "Second Mate Shandril", + [8479] = "Kalaran Windblade", + [8480] = "Kalaran the Deceiver", + [8496] = "Liv Rizzlefix", + [8497] = "Nightmare Suppressor", + [8498] = "TEST Uber Night Elf", + [8499] = "TEST Uber Succubus", + [8500] = "TEST Uber Abomination", + [8501] = "TEST Uber Crypt Fiend", + [8502] = "TEST Uber Human", + [8503] = "Gibblewilt", + [8504] = "Dark Iron Sentry", + [8505] = "Hex of Jammal\'an", + [8506] = "Eranikus the Chained", + [8507] = "Tymor", + [8508] = "Gretta Ganter", + [8509] = "Squire Maltrake", + [8510] = "Atal\'ai Totem", + [8516] = "Belnistrasz", + [8517] = "Xiggs Fuselighter", + [8518] = "Rynthariel the Keymaster", + [8519] = "Blighted Surge", + [8520] = "Plague Ravager", + [8521] = "Blighted Horror", + [8522] = "Plague Monstrosity", + [8523] = "Scourge Soldier", + [8524] = "Cursed Mage", + [8525] = "Scourge Warder", + [8526] = "Dark Caster", + [8527] = "Scourge Guard", + [8528] = "Dread Weaver", + [8529] = "Scourge Champion", + [8530] = "Cannibal Ghoul", + [8531] = "Gibbering Ghoul", + [8532] = "Diseased Flayer", + [8534] = "Putrid Gargoyle", + [8535] = "Putrid Shrieker", + [8536] = "Putrid Slayer", + [8537] = "Interloper", + [8538] = "Unseen Servant", + [8539] = "Eyeless Watcher", + [8540] = "Torn Screamer", + [8541] = "Hate Shrieker", + [8542] = "Death Singer", + [8543] = "Stitched Horror", + [8544] = "Gangled Golem", + [8545] = "Abomination", + [8546] = "Dark Adept", + [8547] = "Death Cultist", + [8548] = "Vile Tutor", + [8549] = "[UNUSED] Acolyte", + [8550] = "Shadowmage", + [8551] = "Dark Summoner", + [8552] = "Necrolyte", + [8553] = "Necromancer", + [8554] = "Chief Sharptusk Thornmantle", + [8555] = "Crypt Fiend", + [8556] = "Crypt Walker", + [8557] = "Crypt Horror", + [8558] = "Crypt Slayer", + [8559] = "Undead Nerubian", + [8560] = "Mossflayer Scout", + [8561] = "Mossflayer Shadowhunter", + [8562] = "Mossflayer Cannibal", + [8563] = "Woodsman", + [8564] = "Ranger", + [8565] = "Pathstrider", + [8566] = "Dark Iron Lookout", + [8567] = "Glutton", + [8576] = "Ag\'tor Bloodfist", + [8578] = "Magus Rimtori", + [8579] = "Yeh\'kinya", + [8580] = "Atal\'alarion", + [8581] = "Blood Elf Defender", + [8582] = "Kadrak", + [8583] = "Dirania Silvershine", + [8584] = "Iverron", + [8585] = "Frost Spectre", + [8586] = "Haggrum Bloodfist", + [8587] = "Jediga", + [8588] = "Umbranse the Spiritspeaker", + [8596] = "Plaguehound Runt", + [8597] = "Plaguehound", + [8598] = "Frenzied Plaguehound", + [8599] = "Plaguehound Mastiff", + [8600] = "Plaguebat", + [8601] = "Noxious Plaguebat", + [8602] = "Monstrous Plaguebat", + [8603] = "Carrion Grub", + [8605] = "Carrion Devourer", + [8606] = "Living Decay", + [8607] = "Rotting Sludge", + [8608] = "Angered Infernal", + [8609] = "Alexandra Constantine", + [8610] = "Kroum", + [8611] = "Idol Room Spawner", + [8612] = "Screecher Spirit", + [8613] = "Ozzie", + [8615] = "Mithril Dragonling", + [8616] = "Infernal Servant", + [8617] = "Zalashji", + [8636] = "Morta\'gya the Keeper", + [8637] = "Dark Iron Watchman", + [8656] = "Hukku\'s Voidwalker", + [8657] = "Hukku\'s Succubus", + [8658] = "Hukku\'s Imp", + [8659] = "Jes\'rimon", + [8660] = "The Evalcharr", + [8661] = "Auctioneer Beardo", + [8662] = "Idol Oven Fire Target", + [8663] = "Splinterbone Elite", + [8664] = "Saern Priderunner", + [8665] = "Shylenai", + [8666] = "Lil Timmy", + [8667] = "Gusting Vortex", + [8668] = "Felhound Tracker", + [8669] = "Auctioneer Tolon", + [8670] = "Auctioneer Chilton", + [8671] = "Auctioneer Buckler", + [8672] = "Auctioneer Leeka", + [8673] = "Auctioneer Thathung", + [8674] = "Auctioneer Stampi", + [8675] = "Felbeast", + [8676] = "World Gnome Engineering Trainer", + [8677] = "World Goblin Engineering Trainer", + [8678] = "Jubie Gadgetspring", + [8679] = "Knaz Blunderflame", + [8680] = "Massive Infernal", + [8681] = "Outfitter Eric", + [8696] = "Henry Stern", + [8716] = "Dreadlord", + [8717] = "Felguard Elite", + [8718] = "Manahound", + [8719] = "Auctioneer Fitch", + [8720] = "Auctioneer Redmuse", + [8721] = "Auctioneer Epitwee", + [8722] = "Auctioneer Gullem", + [8723] = "Auctioneer Golothas", + [8724] = "Auctioneer Wabang", + [8736] = "Buzzek Bracketswing", + [8737] = "Linken", + [8738] = "Vazario Linkgrease", + [8756] = "Raytaf", + [8757] = "Shahiar", + [8758] = "Zaman", + [8759] = "Mosshoof Runner", + [8760] = "Mosshoof Stag", + [8761] = "Mosshoof Courser", + [8762] = "Timberweb Recluse", + [8763] = "Mistwing Rogue", + [8764] = "Mistwing Ravager", + [8765] = "Forest Creeper", + [8766] = "Forest Ooze", + [8767] = "Sah\'rhee", + [8776] = "Emerald Dragon Whelp", + [8777] = "Seinrick Coulthane", + [8796] = "Swimming Murloc Test", + [8816] = "Deathly Usher", + [8836] = "Battle Chicken", + [8837] = "Muck Splash", + [8856] = "Tyrion\'s Spybot", + [8876] = "Sandfury Acolyte", + [8877] = "Sandfury Zealot", + [8878] = "Muuran", + [8879] = "Royal Historian Archesonus", + [8880] = "Mechastrider", + [8881] = "Riding Ram", + [8882] = "Riding Tiger", + [8883] = "Riding Horse", + [8884] = "Skeletal Mount", + [8885] = "Riding Raptor", + [8886] = "Deviate Python", + [8887] = "A tormented voice", + [8888] = "Franclorn Forgewright", + [8889] = "Anvilrage Overseer", + [8890] = "Anvilrage Warden", + [8891] = "Anvilrage Guardsman", + [8892] = "Anvilrage Footman", + [8893] = "Anvilrage Soldier", + [8894] = "Anvilrage Medic", + [8895] = "Anvilrage Officer", + [8896] = "Shadowforge Peasant", + [8897] = "Doomforge Craftsman", + [8898] = "Anvilrage Marshal", + [8899] = "Doomforge Dragoon", + [8900] = "Doomforge Arcanasmith", + [8901] = "Anvilrage Reservist", + [8902] = "Shadowforge Citizen", + [8903] = "Anvilrage Captain", + [8904] = "Shadowforge Senator", + [8905] = "Warbringer Construct", + [8906] = "Ragereaver Golem", + [8907] = "Wrath Hammer Construct", + [8908] = "Molten War Golem", + [8909] = "Fireguard", + [8910] = "Blazing Fireguard", + [8911] = "Fireguard Destroyer", + [8912] = "Twilight\'s Hammer Torturer", + [8913] = "Twilight Emissary", + [8914] = "Twilight Bodyguard", + [8915] = "Twilight\'s Hammer Ambassador", + [8916] = "Arena Spectator", + [8917] = "Quarry Slave", + [8920] = "Weapon Technician", + [8921] = "Bloodhound", + [8922] = "Bloodhound Mastiff", + [8923] = "Panzor the Invincible", + [8924] = "The Behemoth", + [8925] = "Dredge Worm", + [8926] = "Deep Stinger", + [8927] = "Dark Screecher", + [8928] = "Burrowing Thundersnout", + [8929] = "Princess Moira Bronzebeard", + [8931] = "Innkeeper Heather", + [8932] = "Borer Beetle", + [8933] = "Cave Creeper", + [8934] = "Christopher Hewen", + [8935] = "Paladin 20 AlternateHighDamage", + [8937] = "Pet Bomb", + [8956] = "Angerclaw Bear", + [8957] = "Angerclaw Grizzly", + [8958] = "Angerclaw Mauler", + [8959] = "Felpaw Wolf", + [8960] = "Felpaw Scavenger", + [8961] = "Felpaw Ravager", + [8962] = "Hilary", + [8963] = "Effsee", + [8964] = "Blackrock Drake", + [8965] = "Shawn", + [8976] = "Hematos", + [8977] = "Krom\'Grul", + [8978] = "Thauris Balgarr", + [8979] = "Gruklash", + [8980] = "Firegut Captain", + [8981] = "Malfunctioning Reaver", + [8982] = "Ironhand Guardian", + [8983] = "Golem Lord Argelmach", + [8996] = "Voidwalker Minion", + [8997] = "Gershala Nightwhisper", + [9016] = "Bael\'Gar", + [9017] = "Lord Incendius", + [9018] = "High Interrogator Gerstahn", + [9019] = "Emperor Dagran Thaurissan", + [9020] = "Commander Gor\'shak", + [9021] = "Kharan Mighthammer", + [9022] = "Dughal Stormwing", + [9023] = "Marshal Windsor", + [9024] = "Pyromancer Loregrain", + [9025] = "Lord Roccor", + [9026] = "Overmaster Pyron", + [9027] = "Gorosh the Dervish", + [9028] = "Grizzle", + [9029] = "Eviscerator", + [9030] = "Ok\'thor the Breaker", + [9031] = "Anub\'shiah", + [9032] = "Hedrum the Creeper", + [9033] = "General Angerforge", + [9034] = "Hate\'rel", + [9035] = "Anger\'rel", + [9036] = "Vile\'rel", + [9037] = "Gloom\'rel", + [9038] = "Seeth\'rel", + [9039] = "Doom\'rel", + [9040] = "Dope\'rel", + [9041] = "Warder Stilgiss", + [9042] = "Verek", + [9043] = "Scarshield Grunt", + [9044] = "Scarshield Sentry", + [9045] = "Scarshield Acolyte", + [9046] = "Scarshield Quartermaster", + [9047] = "Jenal", + [9056] = "Fineous Darkvire", + [9076] = "Ghede", + [9077] = "Warlord Goretooth", + [9078] = "Shadowmage Vivian Lagrave", + [9079] = "Hierophant Theodora Mulvadania", + [9080] = "Lexlort", + [9081] = "Galamav the Marksman", + [9082] = "Thal\'trak Proudtusk", + [9083] = "Razal\'blade", + [9084] = "Thunderheart", + [9085] = "Initiate Amakkar", + [9086] = "Grunt Gargal", + [9087] = "Bashana Runetotem", + [9096] = "Rage Talon Dragonspawn", + [9097] = "Scarshield Legionnaire", + [9098] = "Scarshield Spellbinder", + [9099] = "Sraaz", + [9116] = "Eridan Bluewind", + [9117] = "J.D. Collie", + [9118] = "Larion", + [9119] = "Muigin", + [9136] = "Sha\'ni Proudtusk", + [9156] = "Ambassador Flamelash", + [9157] = "Bloodpetal Pest", + [9158] = "Riding Horse (Warhorse)", + [9162] = "Young Diemetradon", + [9163] = "Diemetradon", + [9164] = "Elder Diemetradon", + [9165] = "Fledgling Pterrordax", + [9166] = "Pterrordax", + [9167] = "Frenzied Pterrordax", + [9176] = "Gor\'tesh", + [9177] = "Oralius", + [9178] = "Burning Spirit", + [9179] = "Jazzrik", + [9180] = "World Event Generator", + [9196] = "Highlord Omokk", + [9197] = "Spirestone Battle Mage", + [9198] = "Spirestone Mystic", + [9199] = "Spirestone Enforcer", + [9200] = "Spirestone Reaver", + [9201] = "Spirestone Ogre Magus", + [9216] = "Spirestone Warlord", + [9217] = "Spirestone Lord Magus", + [9218] = "Spirestone Battle Lord", + [9219] = "Spirestone Butcher", + [9236] = "Shadow Hunter Vosh\'gajin", + [9237] = "War Master Voone", + [9238] = "Quentin", + [9239] = "Smolderthorn Mystic", + [9240] = "Smolderthorn Shadow Priest", + [9241] = "Smolderthorn Headhunter", + [9256] = "Farm Chicken", + [9257] = "Scarshield Warlock", + [9258] = "Scarshield Raider", + [9259] = "Firebrand Grunt", + [9260] = "Firebrand Legionnaire", + [9261] = "Firebrand Darkweaver", + [9262] = "Firebrand Invoker", + [9263] = "Firebrand Dreadweaver", + [9264] = "Firebrand Pyromancer", + [9265] = "Smolderthorn Shadow Hunter", + [9266] = "Smolderthorn Witch Doctor", + [9267] = "Smolderthorn Axe Thrower", + [9268] = "Smolderthorn Berserker", + [9269] = "Smolderthorn Seer", + [9270] = "Williden Marshal", + [9271] = "Hol\'anyee Marshal", + [9272] = "Spark Nilminer", + [9273] = "Petra Grossen", + [9274] = "Dadanga", + [9275] = "Launcher", + [9276] = "Launcher2", + [9296] = "Milly Osworth", + [9297] = "Enraged Wyvern", + [9298] = "Donova Snowden", + [9299] = "Gaeriyan", + [9316] = "Wenikee Boltbucket", + [9317] = "Rilli Greasygob", + [9318] = "Incendosaur", + [9319] = "Houndmaster Grebmar", + [9336] = "Boss Copperplug", + [9356] = "Innkeeper Shul\'kar", + [9376] = "Blazerunner", + [9377] = "Swirling Vortex", + [9396] = "Ground Pounder", + [9397] = "Living Storm", + [9398] = "Twilight\'s Hammer Executioner", + [9416] = "Scarshield Worg", + [9417] = "Sleeping Dragon", + [9436] = "Spawn of Bael\'Gar", + [9437] = "Dark Keeper Vorfalk", + [9438] = "Dark Keeper Bethek", + [9439] = "Dark Keeper Uggel", + [9441] = "Dark Keeper Zimrel", + [9442] = "Dark Keeper Ofgut", + [9443] = "Dark Keeper Pelver", + [9445] = "Dark Guard", + [9447] = "Scarlet Warder", + [9448] = "Scarlet Praetorian", + [9449] = "Scarlet Cleric", + [9450] = "Scarlet Curate", + [9451] = "Scarlet Archmage", + [9452] = "Scarlet Enchanter", + [9453] = "Aquementas", + [9454] = "Xavathras", + [9456] = "Warlord Krom\'zar", + [9457] = "Horde Defender", + [9458] = "Horde Axe Thrower", + [9459] = "Cyrus Therepentous", + [9460] = "Gadgetzan Bruiser", + [9461] = "Frenzied Black Drake", + [9462] = "Chieftain Bloodmaw", + [9464] = "Overlord Ror", + [9465] = "Golhine the Hooded", + [9467] = "Miblon Snarltooth", + [9476] = "Watchman Doomgrip", + [9477] = "Cloned Ooze", + [9496] = "Gorishi Egg", + [9498] = "Gorishi Grub", + [9499] = "Plugger Spazzring", + [9500] = "Mistress Nagmara", + [9501] = "Innkeeper Adegwa", + [9502] = "Phalanx", + [9503] = "Private Rocknot", + [9516] = "Lord Banehollow", + [9517] = "Shadow Lord Fel\'dan", + [9518] = "Rakaiah", + [9520] = "Grark Lorkrub", + [9521] = "Enraged Felbat", + [9522] = "Blackrock Ambusher", + [9523] = "Kolkar Stormseer", + [9524] = "Kolkar Invader", + [9525] = "Freewind Brave", + [9526] = "Enraged Gryphon", + [9527] = "Enraged Hippogryph", + [9528] = "Arathandris Silversky", + [9529] = "Maybess Riverbreeze", + [9536] = "Maxwort Uberglint", + [9537] = "Hurley Blackbreath", + [9538] = "High Executioner Nuzrak", + [9539] = "Shadow of Lexlort", + [9540] = "Enohar Thunderbrew", + [9541] = "Blackbreath Crony", + [9542] = "Franclorn\'s Spirit", + [9543] = "Ribbly Screwspigot", + [9544] = "Yuka Screwspigot", + [9545] = "Grim Patron", + [9546] = "Raschal the Courier", + [9547] = "Guzzling Patron", + [9548] = "Cawind Trueaim", + [9549] = "Borand", + [9550] = "Furmund", + [9551] = "Starn", + [9552] = "Zanara", + [9553] = "Nadia Vernon", + [9554] = "Hammered Patron", + [9555] = "Mu\'uta", + [9556] = "Felhound Minion", + [9557] = "[UNUSED] dun garok test", + [9558] = "Grimble", + [9559] = "Grizzlowe", + [9560] = "Marshal Maxwell", + [9561] = "Jalinda Sprig", + [9562] = "Helendis Riverhorn", + [9563] = "Ragged John", + [9564] = "Frezza", + [9565] = "Mayara Brightwing", + [9566] = "Zapetta", + [9567] = "Test Stable Master", + [9568] = "Overlord Wyrmthalak", + [9576] = "Stormwind Talent Master", + [9577] = "[UNUSED] Gorilla Test", + [9578] = "Ironforge Talent Master", + [9579] = "Darnassus Talent Master", + [9580] = "Orgrimmar Talent Master", + [9581] = "Thunder Bluff Talent Master", + [9582] = "Undercity Talent Master", + [9583] = "Bloodaxe Veteran", + [9584] = "Jalane Ayrole", + [9596] = "Bannok Grimaxe", + [9598] = "Arei", + [9599] = "Arei Transformed", + [9600] = "Parrot", + [9601] = "Treant Spirit", + [9602] = "Hahk\'Zor", + [9604] = "Gorgon\'och", + [9605] = "Blackrock Raider", + [9616] = "Laris Geardawdle", + [9617] = "[UNUSED] Eyan Mulcom", + [9618] = "Karna Remtravel", + [9619] = "Torwa Pathfinder", + [9620] = "Dreka\'Sur", + [9621] = "Gargantuan Ooze", + [9622] = "U\'cha", + [9623] = "A-Me 01", + [9636] = "Kireena", + [9637] = "Scorching Totem", + [9656] = "Tiny Walking Bomb", + [9657] = "Lil\' Smoky", + [9658] = "Distract Test", + [9659] = "Unkillable Test Dummy", + [9660] = "Agnar Beastamer", + [9662] = "Sprite Darter Hatchling", + [9676] = "Tink Sprocketwhistle", + [9677] = "Ograbisi", + [9678] = "Shill Dinger", + [9679] = "Tobias Seecher", + [9680] = "Crest Killer", + [9681] = "Jaz", + [9682] = "Marshal Reginald Windsor", + [9683] = "Lar\'korwi Mate", + [9684] = "Lar\'korwi", + [9686] = "[PH] TESTTAUREN", + [9687] = "Windwall Totem", + [9688] = "Windwall Totem II", + [9689] = "Windwall Totem III", + [9690] = "Ember Worg", + [9691] = "Venomtip Scorpid", + [9692] = "Bloodaxe Raider", + [9693] = "Bloodaxe Evoker", + [9694] = "Slavering Ember Worg", + [9695] = "Deathlash Scorpid", + [9696] = "Bloodaxe Worg", + [9697] = "Giant Ember Worg", + [9698] = "Firetail Scorpid", + [9699] = "Fire Beetle", + [9700] = "Lava Crab", + [9701] = "Spire Scorpid", + [9702] = "Grurk", + [9703] = "Il\'thurk", + [9704] = "Lumurk", + [9705] = "Illusionary Dreamwatcher", + [9706] = "Yorba Screwspigot", + [9707] = "Scarshield Portal", + [9708] = "Burning Imp", + [9716] = "Bloodaxe Warmonger", + [9717] = "Bloodaxe Summoner", + [9718] = "Ghok Bashguud", + [9736] = "Quartermaster Zigris", + [9776] = "Flamekin Spitter", + [9777] = "Flamekin Sprite", + [9778] = "Flamekin Torcher", + [9779] = "Flamekin Rager", + [9796] = "Galgar", + [9816] = "Pyroguard Emberseer", + [9817] = "Blackhand Dreadweaver", + [9818] = "Blackhand Summoner", + [9819] = "Blackhand Veteran", + [9820] = "[UNUSED] [PH] Cheese Servant Floh", + [9836] = "Mathredis Firestar", + [9837] = "Lithilia", + [9856] = "Auctioneer Grimful", + [9857] = "Auctioneer Grizzlin", + [9858] = "Auctioneer Kresky", + [9859] = "Auctioneer Lympkin", + [9860] = "Salia", + [9861] = "Moora", + [9862] = "Jaedenar Legionnaire", + [9876] = "Locheed", + [9877] = "Prince Xavalis", + [9878] = "Entropic Beast", + [9879] = "Entropic Horror", + [9896] = "World Stable Master", + [9916] = "Jarquia", + [9936] = "Corrupted Kitten", + [9937] = "Common Kitten", + [9938] = "Magmus", + [9956] = "Shadowforge Flame Keeper", + [9976] = "Tharlidun", + [9977] = "Sylista", + [9978] = "Wesley", + [9979] = "Sarah Goode", + [9980] = "Shelby Stoneflint", + [9981] = "Sikwa", + [9982] = "Penny", + [9983] = "Kelsuwa", + [9984] = "Ulbrek Firehand", + [9985] = "Laziphus", + [9986] = "Shyrka Wolfrunner", + [9987] = "Shoja\'my", + [9988] = "Xon\'cha", + [9989] = "Lina Hearthstove", + [9990] = "Lanti\'gah", + [9996] = "Winna Hazzard", + [9997] = "Spraggle Frock", + [9998] = "Shizzle", + [9999] = "Ringo", + [10000] = "Arugal", + [10016] = "Tainted Rat", + [10017] = "Tainted Cockroach", + [10036] = "Brackenwall Enforcer", + [10037] = "Lakeshire Guard", + [10038] = "Night Watch Guard", + [10040] = "Gorishi Hive Guard", + [10041] = "Gorishi Hive Queen", + [10042] = "Corrupted Saber", + [10043] = "Ribbly\'s Crony", + [10044] = "[PH] Alex\'s Raid Testing Peon", + [10045] = "Kirk Maxwell", + [10046] = "Bethaine Flinthammer", + [10047] = "Michael", + [10048] = "Gereck", + [10049] = "Hekkru", + [10050] = "Seikwa", + [10051] = "Seriadne", + [10052] = "Maluressian", + [10053] = "Anya Maulray", + [10054] = "Bulrug", + [10055] = "Morganus", + [10056] = "Alassin", + [10057] = "Theodore Mont Claire", + [10058] = "Greth", + [10059] = "Antarius", + [10060] = "Grimestack", + [10061] = "Killium Bouldertoe", + [10062] = "Steven Black", + [10063] = "Reggifuz", + [10076] = "High Priestess of Thaurissan", + [10077] = "Deathmaw", + [10078] = "Terrorspark", + [10079] = "Brave Moonhorn", + [10080] = "Sandarr Dunereaver", + [10081] = "Dustwraith", + [10082] = "Zerillis", + [10083] = "Rage Talon Flamescale", + [10084] = "Rage Talon Whelp", + [10085] = "Jaelysia", + [10086] = "Hesuwa Thunderhorn", + [10088] = "Xao\'tsu", + [10089] = "Silvaria", + [10090] = "Belia Thundergranite", + [10096] = "High Justice Grimstone", + [10116] = "Slave", + [10117] = "Tortured Slave", + [10118] = "Nessa Shadowsong", + [10119] = "Volchan", + [10120] = "Vault Warder", + [10136] = "Chemist Fuely", + [10156] = "Scott\'s Test Dummy", + [10157] = "Moonkin Oracle", + [10158] = "Moonkin", + [10159] = "Young Moonkin", + [10160] = "Raging Moonkin", + [10161] = "Rookery Whelp", + [10162] = "Lord Victor Nefarius", + [10176] = "Kaltunk", + [10177] = "Spire Scarab", + [10178] = "Riding MechaStrider (Flourescent Green)", + [10179] = "Riding MechaStrider (Black)", + [10180] = "Riding MechaStrider (Steel)", + [10181] = "Lady Sylvanas Windrunner", + [10182] = "Rexxar", + [10183] = "Moonflare Totem", + [10184] = "Onyxia", + [10196] = "General Colbatann", + [10197] = "Mezzir the Howler", + [10198] = "Kashoch the Reaver", + [10199] = "Grizzle Snowpaw", + [10200] = "Rak\'shiri", + [10201] = "Lady Hederine", + [10202] = "Azurous", + [10203] = "Berylgos", + [10204] = "Misha", + [10216] = "Gubber Blump", + [10217] = "Flame Buffet Totem", + [10218] = "Superior Healing Ward", + [10219] = "Gwennyth Bly\'Leggonde", + [10220] = "Halycon", + [10221] = "Bloodaxe Worg Pup", + [10236] = "Wep", + [10237] = "Yor", + [10238] = "Staggon", + [10239] = "Tepolar", + [10256] = "[UNUSED] World Weapon Master Trainer", + [10257] = "Bijou", + [10258] = "Rookery Guardian", + [10259] = "Worg Pup", + [10260] = "Kibler", + [10261] = "Burning Felhound", + [10262] = "Opus", + [10263] = "Burning Felguard", + [10264] = "Solakar Flamewreath", + [10265] = "UNUSED [PH] Flamewreath Guard", + [10266] = "Ug\'thok", + [10267] = "Tinkee Steamboil", + [10268] = "Gizrul the Slavener", + [10276] = "Rotgath Stonebeard", + [10277] = "Groum Stonebeard", + [10278] = "Thrag Stonehoof", + [10290] = "Captured Felwood Ooze", + [10291] = "Krysteea", + [10292] = "Rombulus Frostmoon", + [10293] = "Dulciea Frostmoon", + [10294] = "Malakar Frostmoon", + [10295] = "Jennail Mooncaller", + [10296] = "Vaelan", + [10297] = "Gerratys Nightrunner", + [10298] = "Traelion Shadewhisper", + [10299] = "Scarshield Infiltrator", + [10300] = "Ranshalla", + [10301] = "Jaron Stoneshaper", + [10302] = "Krakle", + [10303] = "Storm Shadowhoof", + [10304] = "Aurora Skycaller", + [10305] = "Umi Rumplesnicker", + [10306] = "Trull Failbane", + [10307] = "Witch Doctor Mau\'ari", + [10316] = "Blackhand Incarcerator", + [10317] = "Blackhand Elite", + [10318] = "Blackhand Assassin", + [10319] = "Blackhand Iron Guard", + [10321] = "Emberstrife", + [10322] = "Riding Tiger (White)", + [10323] = "Murkdeep", + [10336] = "Riding Tiger (Leopard)", + [10337] = "Riding Tiger (Orange)", + [10338] = "Riding Tiger (Gold)", + [10339] = "Gyth", + [10340] = "Vaelastrasz the Red", + [10356] = "Bayne", + [10357] = "Ressan the Needler", + [10358] = "Fellicent\'s Shade", + [10359] = "Sri\'skulk", + [10360] = "Kergul Bloodaxe", + [10361] = "Gruul Darkblade", + [10362] = "[UNUSED] Gethuxxuz", + [10363] = "General Drakkisath", + [10364] = "Yaelika Farclaw", + [10365] = "[UNUSED] Yillixa", + [10366] = "Rage Talon Dragon Guard", + [10367] = "Shrye Ragefist", + [10368] = "[UNUSED] Dat\'xus", + [10369] = "Trayexir", + [10370] = "[UNUSED] Xur\'gyl", + [10371] = "Rage Talon Captain", + [10372] = "Rage Talon Fire Tongue", + [10373] = "Xabraxxis", + [10374] = "Spire Spider", + [10375] = "Spire Spiderling", + [10376] = "Crystal Fang", + [10377] = "Elu", + [10378] = "Omusa Thunderhorn", + [10379] = "Altsoba Ragetotem", + [10380] = "Sanuye Runetotem", + [10381] = "Ravaged Cadaver", + [10382] = "Mangled Cadaver", + [10383] = "Broken Cadaver", + [10384] = "Spectral Citizen", + [10385] = "Ghostly Citizen", + [10387] = "Vengeful Phantom", + [10388] = "Spiteful Phantom", + [10389] = "Wrath Phantom", + [10390] = "Skeletal Guardian", + [10391] = "Skeletal Berserker", + [10393] = "Skul", + [10394] = "Black Guard Sentry", + [10395] = "Black Guard Warrior", + [10397] = "Black Guard Executioner", + [10398] = "Thuzadin Shadowcaster", + [10399] = "Thuzadin Acolyte", + [10400] = "Thuzadin Necromancer", + [10401] = "[UNUSED] Thuzadin Shadow Lord", + [10402] = "[UNUSED] Cannibal Wight", + [10403] = "[UNUSED] Devouring Wight", + [10404] = "[UNUSED] Fetid Wight", + [10405] = "Plague Ghoul", + [10406] = "Ghoul Ravener", + [10407] = "Fleshflayer Ghoul", + [10408] = "Rockwing Gargoyle", + [10409] = "Rockwing Screecher", + [10411] = "Eye of Naxxramas", + [10412] = "Crypt Crawler", + [10413] = "Crypt Beast", + [10414] = "Patchwork Horror", + [10415] = "Ash\'ari Crystal", + [10416] = "Bile Spewer", + [10417] = "Venom Belcher", + [10418] = "Crimson Guardsman", + [10419] = "Crimson Conjuror", + [10420] = "Crimson Initiate", + [10421] = "Crimson Defender", + [10422] = "Crimson Sorcerer", + [10423] = "Crimson Priest", + [10424] = "Crimson Gallant", + [10425] = "Crimson Battle Mage", + [10426] = "Crimson Inquisitor", + [10427] = "Pao\'ka Swiftmountain", + [10428] = "Motega Firemane", + [10429] = "Warchief Rend Blackhand", + [10430] = "The Beast", + [10431] = "Gregor Greystone", + [10432] = "Vectus", + [10433] = "Marduk Blackpool", + [10435] = "Magistrate Barthilas", + [10436] = "Baroness Anastari", + [10437] = "Nerub\'enkan", + [10438] = "Maleki the Pallid", + [10439] = "Ramstein the Gorger", + [10440] = "Baron Rivendare", + [10441] = "Plagued Rat", + [10442] = "Chromatic Whelp", + [10443] = "[UNUSED] Gustav Montague", + [10444] = "[UNUSED] Mallory Welsh", + [10445] = "Selina Dourman", + [10446] = "[UNUSED] Elliott Jacks", + [10447] = "Chromatic Dragonspawn", + [10448] = "[UNUSED] Rachael Vaccar", + [10449] = "Emily Vaccar", + [10450] = "[UNUSED] Paul Burges", + [10451] = "Sarah Arello", + [10452] = "Farbrahm Steelfist", + [10453] = "Grimbur Flintaxe", + [10454] = "Filliwick Featherfizz", + [10455] = "Binny Springblade", + [10456] = "Prynne", + [10459] = "Rend on Drake Visual", + [10460] = "Prospector Ironboot", + [10461] = "Plagued Insect", + [10463] = "Shrieking Banshee", + [10464] = "Wailing Banshee", + [10466] = "Styleen Silvercart", + [10467] = "Mana Tide Totem", + [10468] = "Felnok Steelspring", + [10469] = "Scholomance Adept", + [10470] = "Scholomance Neophyte", + [10471] = "Scholomance Acolyte", + [10472] = "Scholomance Occultist", + [10473] = "Scholomance Shadowcaster", + [10475] = "Scholomance Student", + [10476] = "Scholomance Necrolyte", + [10477] = "Scholomance Necromancer", + [10478] = "Splintered Skeleton", + [10479] = "Skulking Corpse", + [10480] = "Unstable Corpse", + [10481] = "Reanimated Corpse", + [10482] = "Risen Lackey", + [10483] = "Risen Flayer", + [10484] = "Risen Terror", + [10485] = "Risen Aberration", + [10486] = "Risen Warrior", + [10487] = "Risen Protector", + [10488] = "Risen Construct", + [10489] = "Risen Guard", + [10491] = "Risen Bonewarder", + [10492] = "Risen Shadowmage", + [10493] = "Risen Sorcerer", + [10494] = "Decrepit Ghoul", + [10495] = "Diseased Ghoul", + [10497] = "Ragged Ghoul", + [10498] = "Spectral Tutor", + [10499] = "Spectral Researcher", + [10500] = "Spectral Teacher", + [10502] = "Lady Illucia Barov", + [10503] = "Jandice Barov", + [10504] = "Lord Alexei Barov", + [10505] = "Instructor Malicia", + [10506] = "Kirtonos the Herald", + [10507] = "The Ravenian", + [10508] = "Ras Frostwhisper", + [10509] = "Jed Runewatcher", + [10510] = "Plagued Slime", + [10516] = "The Unforgiven", + [10536] = "Plagued Maggot", + [10537] = "Cliffwatcher Longhorn", + [10538] = "Vaelastrasz", + [10539] = "Hagar Lightninghoof", + [10540] = "Vol\'jin", + [10541] = "Krakle\'s Thermometer", + [10556] = "Lazy Peon", + [10557] = "Flametongue Totem IV", + [10558] = "Hearthsinger Forresten", + [10559] = "Lady Vespia", + [10577] = "Crypt Scarab", + [10578] = "Bom\'bay", + [10579] = "Kirtonos the Herald (Spell Visual)", + [10580] = "Fetid Zombie", + [10581] = "Young Arikara", + [10582] = "Dog", + [10583] = "Gryfe", + [10584] = "Urok Doomhowl", + [10596] = "Mother Smolderweb", + [10598] = "Smolderweb Hatchling", + [10599] = "Hulfnar Stonetotem", + [10600] = "Thontek Rumblehoof", + [10601] = "Urok Enforcer", + [10602] = "Urok Ogre Magus", + [10603] = "Hallucination", + [10604] = "Huntress Nhemai", + [10605] = "Scarlet Medic", + [10606] = "Huntress Yaeliura", + [10607] = "[UNUSED] Siralnaya", + [10608] = "Scarlet Priest", + [10610] = "Angus", + [10611] = "Shorty", + [10612] = "Guard Wachabe", + [10616] = "Supervisor Raelen", + [10617] = "Galak Messenger", + [10618] = "Rivern Frostwind", + [10619] = "Glacier", + [10620] = "TEST NPC - DBUCKLER", + [10636] = "Pack Kodo", + [10637] = "Malyfous Darkhammer", + [10638] = "Kanati Greycloud", + [10639] = "Rorgish Jowl", + [10640] = "Oakpaw", + [10641] = "Branch Snapper", + [10642] = "Eck\'alom", + [10643] = "Mugglefin", + [10644] = "Mist Howler", + [10645] = "Thalia Amberhide", + [10646] = "Lakota Windsong", + [10647] = "Prince Raze", + [10648] = "Xavaric", + [10656] = "Guardian Felhunter", + [10657] = "Corrupted Cat", + [10658] = "Winna\'s Kitten", + [10659] = "Cobalt Whelp", + [10660] = "Cobalt Broodling", + [10661] = "Spell Eater", + [10662] = "Spellmaw", + [10663] = "Manaclaw", + [10664] = "Scryer", + [10665] = "Junior Apothecary Holland", + [10666] = "Gordo", + [10667] = "Chromie", + [10668] = "Beaten Corpse", + [10676] = "Raider Jhash", + [10678] = "Plagued Hatchling", + [10680] = "Summoned Blackhand Dreadweaver", + [10681] = "Summoned Blackhand Veteran", + [10682] = "Raider Kerr", + [10683] = "Rookery Hatcher", + [10684] = "Remorseful Highborne", + [10685] = "Swine", + [10696] = "Refuge Pointe Defender", + [10697] = "Bile Slime", + [10698] = "Summoned Zombie", + [10699] = "Carrion Scarab", + [10716] = "Belfry Bat", + [10717] = "Temporal Parasite", + [10718] = "Shahram", + [10719] = "Herald of Thrall", + [10720] = "Galak Assassin", + [10721] = "Novice Warrior", + [10736] = "Unkillable Test Dummy 60 Mage", + [10737] = "Shy-Rotam", + [10738] = "High Chief Winterfall", + [10739] = "Mulgris Deepriver", + [10740] = "Awbee", + [10741] = "Sian-Rotam", + [10742] = "Blackhand Dragon Handler", + [10756] = "Scalding Elemental", + [10757] = "Boiling Elemental", + [10758] = "Grimtotem Bandit", + [10759] = "Grimtotem Stomper", + [10760] = "Grimtotem Geomancer", + [10761] = "Grimtotem Reaver", + [10762] = "Blackhand Thug", + [10776] = "Finkle Einhorn", + [10778] = "Janice Felstone", + [10779] = "Infected Squirrel", + [10780] = "Infected Deer", + [10781] = "Royal Overseer Bauhaus", + [10782] = "Royal Factor Bathrilor", + [10783] = "Orb of Deception (Orc, Male)", + [10784] = "Orb of Deception (Orc, Female)", + [10785] = "Orb of Deception (Tauren, Male)", + [10786] = "Orb of Deception (Tauren, Female)", + [10787] = "Orb of Deception (Troll, Male)", + [10788] = "Orb of Deception (Troll, Female)", + [10789] = "Orb of Deception (Undead, Male)", + [10790] = "Orb of Deception (Undead, Female)", + [10791] = "Orb of Deception (Dwarf, Male)", + [10792] = "Orb of Deception (Dwarf, Female)", + [10793] = "Orb of Deception (Gnome, Male)", + [10794] = "Orb of Deception (Gnome, Female)", + [10795] = "Orb of Deception (Human, Male)", + [10796] = "Orb of Deception (Human, Female)", + [10797] = "Orb of Deception (NightElf, Male)", + [10798] = "Orb of Deception (Nightelf, Female)", + [10799] = "Warosh", + [10800] = "Warosh the Redeemed", + [10801] = "Jabbering Ghoul", + [10802] = "Hitah\'ya the Keeper", + [10803] = "Rifleman Wheeler", + [10804] = "Rifleman Middlecamp", + [10805] = "Spotter Klemmy", + [10806] = "Ursius", + [10807] = "Brumeran", + [10808] = "Timmy the Cruel", + [10809] = "Stonespine", + [10810] = "[UNUSED] Deathcaller Majestis", + [10811] = "Archivist Galford", + [10812] = "Grand Crusader Dathrohan", + [10813] = "Balnazzar", + [10814] = "Chromatic Elite Guard", + [10816] = "Wandering Skeleton", + [10817] = "Duggan Wildhammer", + [10818] = "Death Knight Soulbearer", + [10819] = "Baron Bloodbane", + [10820] = "Duke Ragereaver", + [10821] = "Hed\'mush the Rotting", + [10822] = "Warlord Thresh\'jin", + [10823] = "Zul\'Brin Warpbranch", + [10824] = "Ranger Lord Hawkspear", + [10825] = "Gish the Unmoving", + [10826] = "Lord Darkscythe", + [10827] = "Deathspeaker Selendre", + [10828] = "High General Abbendis", + [10836] = "Farmer Dalson", + [10837] = "High Executor Derrington", + [10838] = "Commander Ashlam Valorfist", + [10839] = "Argent Officer Garush", + [10840] = "Argent Officer Pureheart", + [10856] = "Argent Quartermaster Hasana", + [10857] = "Argent Quartermaster Lightspark", + [10876] = "Undead Scarab", + [10877] = "Courier Hammerfall", + [10878] = "Herald Moonstalker", + [10879] = "Harbinger Balthazad", + [10880] = "Warcaller Gorlach", + [10881] = "Bluff Runner Windstrider", + [10882] = "Arikara", + [10896] = "Arnak Grimtotem", + [10897] = "Sindrayl", + [10898] = "Blackhand Armorsmith", + [10899] = "Goraluk Anvilcrack", + [10901] = "Lorekeeper Polkelt", + [10902] = "Andorhal Tower One", + [10903] = "Andorhal Tower Two", + [10904] = "Andorhal Tower Three", + [10905] = "Andorhal Tower Four", + [10916] = "Winterfall Runner", + [10917] = "Aurius", + [10918] = "Lorax", + [10919] = "Shatterspear Troll", + [10920] = "Kelek Skykeeper", + [10921] = "Taronn Redfeather", + [10922] = "Greta Mosshoof", + [10923] = "Tenell Leafrunner", + [10924] = "Ivy Leafrunner", + [10925] = "Rotting Worm", + [10926] = "Pamela Redpath", + [10927] = "Marlene Redpath", + [10928] = "Succubus Minion", + [10929] = "Haleh", + [10930] = "Dargh Trueaim", + [10936] = "Joseph Redpath", + [10937] = "Captain Redpath", + [10938] = "Redpath the Corrupted", + [10939] = "Marduk the Black", + [10940] = "Ghost of the Past", + [10941] = "Wizlo Bearingshiner", + [10942] = "Nessy", + [10943] = "Decrepit Guardian", + [10944] = "Davil Lightfire", + [10945] = "Davil Crokford", + [10946] = "Horgus the Ravager", + [10947] = "Darrowshire Betrayer", + [10948] = "Darrowshire Defender", + [10949] = "Silver Hand Disciple", + [10950] = "Redpath Militia", + [10951] = "Marauding Corpse", + [10952] = "Marauding Skeleton", + [10953] = "Servant of Horgus", + [10954] = "Bloodletter", + [10955] = "Summoned Water Elemental", + [10956] = "Naga Siren", + [10976] = "Jeziba", + [10977] = "Quixxil", + [10978] = "Legacki", + [10979] = "Scarlet Hound", + [10980] = "Umi\'s Mechanical Yeti", + [10981] = "Frostwolf", + [10982] = "Whitewhisker Vermin", + [10983] = "Winterax Troll", + [10984] = "Winterax Berserker", + [10985] = "Ice Giant", + [10986] = "Snowblind Harpy", + [10987] = "Irondeep Trogg", + [10988] = "Kodo Spirit", + [10989] = "Blizzard Elemental", + [10990] = "Alterac Ram", + [10991] = "Wildpaw Gnoll", + [10992] = "Enraged Panther", + [10993] = "Twizwick Sprocketgrind", + [10996] = "Fallen Hero", + [10997] = "Cannon Master Willey", + [11016] = "Captured Arko\'narin", + [11017] = "Roxxik", + [11018] = "Arko\'narin", + [11019] = "Jessir Moonbow", + [11020] = "Remains of Trey Lightforge", + [11021] = "Riding Tiger (Winterspring)", + [11022] = "Alexi Barov", + [11023] = "Weldon Barov", + [11024] = "Della", + [11025] = "Mukdrak", + [11026] = "Sprite Jumpsprocket", + [11027] = "Illusory Wraith", + [11028] = "Jemma Quikswitch", + [11029] = "Trixie Quikswitch", + [11030] = "Mindless Undead", + [11031] = "Franklin Lloyd", + [11032] = "Malor the Zealous", + [11033] = "Smokey LaRue", + [11034] = "Lord Maxwell Tyrosus", + [11035] = "Betina Bigglezink", + [11036] = "Leonid Barthalomew the Revered", + [11037] = "Jenna Lemkenilli", + [11038] = "Caretaker Alen", + [11039] = "Duke Nicholas Zverenhoff", + [11040] = "Watcher Brownell", + [11041] = "Milla Fairancora", + [11042] = "Sylvanna Forestmoon", + [11043] = "Crimson Monk", + [11044] = "Doctor Martin Felben", + [11045] = "Burns", + [11046] = "Whuut", + [11047] = "Kray", + [11048] = "Victor Ward", + [11049] = "Rhiannon Davis", + [11050] = "Trianna", + [11051] = "Vhan", + [11052] = "Timothy Worthington", + [11053] = "High Priestess MacDonnell", + [11054] = "Crimson Rifleman", + [11055] = "Shadow Priestess Vandis", + [11056] = "Alchemist Arbington", + [11057] = "Apothecary Dithers", + [11058] = "Fras Siabi", + [11063] = "Carlin Redpath", + [11064] = "Darrowshire Spirit", + [11065] = "Thonys Pillarstone", + [11066] = "Jhag", + [11067] = "Malcomb Wynn", + [11068] = "Betty Quin", + [11069] = "Jenova Stoneshield", + [11070] = "Lalina Summermoon", + [11071] = "Mot Dawnstrider", + [11072] = "Kitta Firewind", + [11073] = "Annora", + [11074] = "Hgarth", + [11075] = "Cauldron Lord Bilemaw", + [11076] = "Cauldron Lord Razarch", + [11077] = "Cauldron Lord Malvinious", + [11078] = "Cauldron Lord Soulwrath", + [11079] = "Wynd Nightchaser", + [11080] = "[PH[ Combat Tester", + [11081] = "Faldron", + [11082] = "Stratholme Courier", + [11083] = "Darianna", + [11084] = "Tarn", + [11096] = "Randal Worth", + [11097] = "Drakk Stonehand", + [11098] = "Hahrana Ironhide", + [11099] = "Argent Guard", + [11100] = "Mana Tide Totem II", + [11101] = "Mana Tide Totem III", + [11102] = "Argent Rider", + [11103] = "Innkeeper Lyshaerya", + [11104] = "Shelgrayn", + [11105] = "Aboda", + [11106] = "Innkeeper Sikewa", + [11116] = "Innkeeper Abeqwa", + [11117] = "Awenasa", + [11118] = "Innkeeper Vizzie", + [11119] = "Azzleby", + [11120] = "Crimson Hammersmith", + [11121] = "Black Guard Swordsmith", + [11122] = "Restless Soul", + [11136] = "Freed Soul", + [11137] = "Xai\'ander", + [11138] = "Maethrya", + [11139] = "Yugrek", + [11140] = "Egan", + [11141] = "Spirit of Trey Lightforge", + [11142] = "Undead Postman", + [11143] = "Postmaster Malown", + [11144] = "Oracle Sphere", + [11145] = "Myolor Sunderfury", + [11146] = "Ironus Coldsteel", + [11147] = "Riding MechaStrider (Green/Gray)", + [11148] = "Riding MechaStrider (Purple)", + [11149] = "Riding MechaStrider (Red/Blue)", + [11150] = "Riding MechaStrider (Icy Blue)", + [11151] = "Riding MechaStrider (Yellow/Green)", + [11152] = "The Scourge Cauldron", + [11153] = "Riding Skeletal Horse (Red)", + [11154] = "Riding Skeletal Horse (Blue)", + [11155] = "Riding Skeletal Horse (Brown)", + [11156] = "Green Skeletal Warhorse", + [11176] = "Krathok Moltenfist", + [11177] = "Okothos Ironrager", + [11178] = "Borgosh Corebender", + [11179] = "Crystal Trigger", + [11180] = "Bloodvenom Post Brave", + [11181] = "Shi\'alune", + [11182] = "Nixxrak", + [11183] = "Blixxrak", + [11184] = "Wixxrak", + [11185] = "Xizzer Fizzbolt", + [11186] = "Lunnix Sprocketslip", + [11187] = "Himmik", + [11188] = "Evie Whirlbrew", + [11189] = "Qia", + [11190] = "Everlook Bruiser", + [11191] = "Lilith the Lithe", + [11192] = "Kilram", + [11193] = "Seril Scourgebane", + [11194] = "Argent Defender", + [11195] = "Skeletal Black Warhorse", + [11196] = "Shatterspear Drummer", + [11197] = "Mindless Skeleton", + [11198] = "Draenei Exile", + [11199] = "Crimson Cannon", + [11200] = "Summoned Skeleton", + [11216] = "Eva Sarkhoff", + [11217] = "Lucien Sarkhoff", + [11218] = "Kerlonian Evershade", + [11219] = "Liladris Moonriver", + [11236] = "Blood Parrot", + [11256] = "Manifestation of Water", + [11257] = "Scholomance Handler", + [11258] = "Frail Skeleton", + [11259] = "Nataka Longhorn", + [11260] = "Northshire Peasant", + [11261] = "Doctor Theolen Krastinov", + [11262] = "Onyxian Whelp", + [11263] = "Spectral Projection", + [11276] = "Azshara Sentinel", + [11277] = "Caer Darrow Citizen", + [11278] = "Magnus Frostwake", + [11279] = "Caer Darrow Guardsman", + [11280] = "Caer Darrow Cannoneer", + [11281] = "Caer Darrow Horseman", + [11282] = "Melia", + [11283] = "Sammy", + [11284] = "Dark Shade", + [11285] = "Rory", + [11286] = "Magistrate Marduke", + [11287] = "Baker Masterson", + [11288] = "Spectral Betrayer", + [11289] = "Spectral Defender", + [11290] = "Mossflayer Zombie", + [11291] = "Unliving Mossflayer", + [11292] = "Mossflayer Berserker", + [11296] = "Darrowshire Poltergeist", + [11316] = "Joseph Dirte", + [11317] = "Jinar\'Zillen", + [11318] = "Ragefire Trogg", + [11319] = "Ragefire Shaman", + [11320] = "Earthborer", + [11321] = "Molten Elemental", + [11322] = "Searing Blade Cultist", + [11323] = "Searing Blade Enforcer", + [11324] = "Searing Blade Warlock", + [11325] = "Panda Cub", + [11326] = "Mini Diablo", + [11327] = "Zergling", + [11328] = "Eastvale Peasant", + [11337] = "[UNUSED] Hakkar Axe Thrower", + [11338] = "Hakkari Shadowcaster", + [11339] = "Hakkari Shadow Hunter", + [11340] = "Hakkari Blood Priest", + [11341] = "[UNUSED] Hakkar Berserker", + [11342] = "[UNUSED] Hakkar Warrior", + [11343] = "[UNUSED] Hakkar Warlord", + [11344] = "[UNUSED] Hakkar Blood Drinker", + [11345] = "[UNUSED] Hakkar Headhunter", + [11346] = "Hakkari Oracle", + [11347] = "Zealot Lor\'Khan", + [11348] = "Zealot Zath", + [11349] = "[UNUSED] Gurubashi Hideskinner", + [11350] = "Gurubashi Axe Thrower", + [11351] = "Gurubashi Headhunter", + [11352] = "Gurubashi Berserker", + [11353] = "Gurubashi Blood Drinker", + [11354] = "[UNUSED] Gurubashi Warlord", + [11355] = "Gurubashi Warrior", + [11356] = "Gurubashi Champion", + [11357] = "Son of Hakkar", + [11358] = "[UNUSED] Daughter of Hakkar", + [11359] = "Soulflayer", + [11360] = "Zulian Cub", + [11361] = "Zulian Tiger", + [11364] = "[UNUSED] Zulian Tigress", + [11365] = "Zulian Panther", + [11366] = "[UNUSED] Zulian Matriarch", + [11367] = "[UNUSED] Zulian Patriarch", + [11368] = "Bloodseeker Bat", + [11369] = "[UNUSED] Hidden Bloodseeker", + [11370] = "Razzashi Broodwidow", + [11371] = "Razzashi Serpent", + [11372] = "Razzashi Adder", + [11373] = "Razzashi Cobra", + [11374] = "Hooktooth Frenzy", + [11375] = "[UNUSED] Zath", + [11376] = "[UNUSED] Lor\'khan", + [11377] = "[UNUSED] Hak\'tharr the Mindhunter", + [11378] = "Foreman Thazz\'ril", + [11379] = "[UNUSED] Nik\'reesh", + [11380] = "Jin\'do the Hexxer", + [11381] = "Jin", + [11382] = "Bloodlord Mandokir", + [11383] = "High Priestess Hai\'watna", + [11384] = "[UNUSED] Elder T\'kashra", + [11385] = "[UNUSED] Mogwhi the Ruthless", + [11386] = "[UNUSED] Janook the Bladefury", + [11387] = "Sandfury Speaker", + [11388] = "Witherbark Speaker", + [11389] = "Bloodscalp Speaker", + [11390] = "Skullsplitter Speaker", + [11391] = "Vilebranch Speaker", + [11392] = "Audrey Vergara", + [11393] = "Josh Miller", + [11394] = "Lauren Preston", + [11395] = "Kevin Faulder", + [11396] = "Joelle McCarthy", + [11397] = "Nara Meideros", + [11398] = "Charisse Moonrunner", + [11399] = "Ashlyn Vor\'lair", + [11400] = "Ann\'rimor Falchi", + [11401] = "Priestess Alathea", + [11402] = "Jarvis Greenhammer", + [11403] = "Russle Hochstein", + [11404] = "Dillon Gregor", + [11405] = "Diana Battleheart", + [11406] = "High Priest Rohan", + [11407] = "Var\'jun", + [11408] = "Watna", + [11409] = "Jo\'bu", + [11410] = "Shal\'vol", + [11411] = "Priestess Kara\'van", + [11412] = "Danielle Koppen", + [11413] = "Vincent Wilfork", + [11414] = "Nicole Tarlow", + [11415] = "Amber Provost", + [11416] = "Thomas Brady", + [11437] = "Minor Infernal", + [11438] = "Bibbly F\'utzbuckle", + [11439] = "Illusion of Jandice Barov", + [11440] = "Gordok Enforcer", + [11441] = "Gordok Brute", + [11442] = "Gordok Mauler", + [11443] = "Gordok Ogre-Mage", + [11444] = "Gordok Mage-Lord", + [11445] = "Gordok Captain", + [11446] = "Gordok Spirit", + [11447] = "Mushgog", + [11448] = "Gordok Warlock", + [11449] = "[UNUSED] Gordok Battle Mage", + [11450] = "Gordok Reaver", + [11451] = "Wildspawn Satyr", + [11452] = "Wildspawn Rogue", + [11453] = "Wildspawn Trickster", + [11454] = "Wildspawn Betrayer", + [11455] = "Wildspawn Felsworn", + [11456] = "Wildspawn Shadowstalker", + [11457] = "Wildspawn Hellcaller", + [11458] = "Petrified Treant", + [11459] = "Ironbark Protector", + [11460] = "Alzzin\'s Minion", + [11461] = "Warpwood Guardian", + [11462] = "Warpwood Treant", + [11463] = "[UNUSED] Warpwood Scrabbler", + [11464] = "Warpwood Tangler", + [11465] = "Warpwood Stomper", + [11466] = "Highborne Summoner", + [11467] = "Tsu\'zee", + [11468] = "[UNUSED] Eldreth Lichling", + [11469] = "Eldreth Seether", + [11470] = "Eldreth Sorcerer", + [11471] = "Eldreth Apparition", + [11472] = "Eldreth Spirit", + [11473] = "Eldreth Spectre", + [11474] = "Eldreth Wraith", + [11475] = "Eldreth Phantasm", + [11476] = "Skeletal Highborne", + [11477] = "Rotting Highborne", + [11478] = "[UNUSED] Mana Beast", + [11479] = "Arcane Horror", + [11480] = "Arcane Aberration", + [11481] = "[UNUSED] Arcane Terror", + [11483] = "Mana Remnant", + [11484] = "Residual Monstrosity", + [11486] = "Prince Tortheldrin", + [11487] = "Magister Kalendris", + [11488] = "Illyanna Ravenoak", + [11489] = "Tendris Warpwood", + [11490] = "Zevrim Thornhoof", + [11491] = "Old Ironbark", + [11492] = "Alzzin the Wildshaper", + [11493] = "[UNUSED] Sentius", + [11494] = "Alzinn Trigger", + [11495] = "[UNUSED] Avidus", + [11496] = "Immol\'thar", + [11497] = "The Razza", + [11498] = "Skarr the Unbreakable", + [11499] = "[UNUSED] Commander Gormaul", + [11500] = "[UNUSED] Majordomo Bagrosh", + [11501] = "King Gordok", + [11502] = "Ragnaros", + [11516] = "Timbermaw Warder", + [11517] = "Oggleflint", + [11518] = "Jergosh the Invoker", + [11519] = "Bazzalan", + [11520] = "Taragaman the Hungerer", + [11521] = "Kodo Apparition", + [11536] = "Quartermaster Miranda Breechlock", + [11537] = "TEST GEAR PALADIN", + [11538] = "TEST GEAR WARRIOR", + [11539] = "TEST GEAR HUNTER", + [11540] = "TEST GEAR MAGE", + [11541] = "TEST GEAR WARLOCK", + [11542] = "TEST GEAR DRUID", + [11543] = "TEST GEAR SHAMAN", + [11544] = "TEST GEAR PRIEST", + [11545] = "TEST GEAR ROGUE", + [11546] = "Jack Sterling", + [11547] = "Skeletal Scholomance Student", + [11548] = "Loh\'atu", + [11549] = "Austin Burwell", + [11550] = "Taylor Burwell", + [11551] = "Necrofiend", + [11552] = "Timbermaw Mystic", + [11553] = "Timbermaw Woodbender", + [11554] = "Grazle", + [11555] = "Gorn One Eye", + [11556] = "Salfa", + [11557] = "Meilosh", + [11558] = "Kernda", + [11559] = "Outcast Necromancer", + [11560] = "Magrami Spectre", + [11561] = "Undead Ravager", + [11562] = "Drysnap Crawler", + [11563] = "Drysnap Pincer", + [11564] = "Gizelton Caravan Kodo", + [11576] = "Whirlwind Ripper", + [11577] = "Whirlwind Stormwalker", + [11578] = "Whirlwind Shredder", + [11579] = "Tempest", + [11580] = "Kelemis the Lifeless", + [11581] = "Scarlet Assassin", + [11582] = "Scholomance Dark Summoner", + [11583] = "Nefarian", + [11596] = "Smeed Scrabblescrew", + [11597] = "Cheveyo", + [11598] = "Risen Guardian", + [11599] = "Irondeep Geomancer UNUSED", + [11600] = "Irondeep Shaman", + [11601] = "Irondeep Cave Lurker UNUSED", + [11602] = "Irondeep Skullthumper", + [11603] = "Whitewhisker Digger", + [11604] = "Whitewhisker Geomancer", + [11605] = "Whitewhisker Overseer", + [11606] = "Whitewhisker Tunnel Rat", + [11608] = "Bardu Sharpeye", + [11609] = "Alexia Ironknife", + [11610] = "Kirsta Deepshadow", + [11611] = "Cavalier Durgen", + [11613] = "Huntsman Radley", + [11614] = "Bloodshot", + [11615] = "Mickey Levine", + [11616] = "Nathaniel Dumah", + [11617] = "Digger \"The Wrench\" Veriatus", + [11618] = "Archmage Antonio", + [11619] = "Merchant Bolden", + [11620] = "Spectral Marauder", + [11621] = "Spectral Corpse", + [11622] = "Rattlegore", + [11623] = "Scourge Summoning Crystal", + [11624] = "Taiga Wisemane", + [11625] = "Cork Gizelton", + [11626] = "Rigger Gizelton", + [11627] = "Tamed Kodo", + [11628] = "Decaying Corpse", + [11629] = "Jessica Redpath", + [11636] = "Servant of Weldon Barov", + [11637] = "Servant of Alexi Barov", + [11656] = "Horde Peon", + [11657] = "Morloch", + [11658] = "Molten Giant", + [11659] = "Molten Destroyer", + [11660] = "[UNUSED] Molten Colossus", + [11661] = "Flamewaker", + [11662] = "Flamewaker Priest", + [11663] = "Flamewaker Healer", + [11664] = "Flamewaker Elite", + [11665] = "Lava Annihilator", + [11666] = "Firewalker", + [11667] = "Flameguard", + [11668] = "Firelord", + [11669] = "Flame Imp", + [11670] = "[UNUSED] Flame Shrieker", + [11671] = "Core Hound", + [11672] = "Core Rager", + [11673] = "Ancient Core Hound", + [11675] = "Snowblind Windcaller", + [11676] = "Fjordune the Greater", + [11677] = "Taskmaster Snivvle", + [11678] = "Snowblind Ambusher", + [11679] = "Winterax Witch Doctor", + [11680] = "Horde Scout", + [11681] = "Horde Deforester", + [11682] = "Horde Grunt", + [11683] = "Horde Shaman", + [11684] = "Warsong Shredder", + [11685] = "Maraudine Priest", + [11686] = "Ghostly Raider", + [11687] = "Ghostly Marauder", + [11688] = "Cursed Centaur", + [11689] = "Riding Kodo (Brown)", + [11690] = "Gnarlpine Instigator", + [11696] = "Chal Fairwind", + [11697] = "Mannoroc Lasher", + [11698] = "Hive\'Ashi Stinger", + [11699] = "Varian Wrynn", + [11700] = "Sarin Starlight", + [11701] = "Mor\'vek", + [11702] = "Arin\'sor", + [11703] = "Graw Cornerstone", + [11704] = "Kriss Goldenlight", + [11705] = "Rayan Dawnrisen", + [11706] = "Adon", + [11707] = "Joy Ar\'nareth", + [11708] = "Coral Moongale", + [11709] = "Jareth Wildwoods", + [11710] = "Mirador", + [11711] = "Sentinel Aynasha", + [11712] = "Lilyn Darkriver", + [11713] = "Blackwood Tracker", + [11714] = "Marosh the Devious", + [11715] = "Talendria", + [11716] = "Celes Earthborne", + [11717] = "Bethan Bluewater", + [11718] = "Sar Browneye", + [11719] = "Navi Quickdraw", + [11720] = "Loruk Foreststrider", + [11721] = "Hive\'Ashi Worker", + [11722] = "Hive\'Ashi Defender", + [11723] = "Hive\'Ashi Sandstalker", + [11724] = "Hive\'Ashi Swarmer", + [11725] = "Hive\'Zora Waywatcher", + [11726] = "Hive\'Zora Tunneler", + [11727] = "Hive\'Zora Wasp", + [11728] = "Hive\'Zora Reaver", + [11729] = "Hive\'Zora Hive Sister", + [11730] = "Hive\'Regal Ambusher", + [11731] = "Hive\'Regal Burrower", + [11732] = "Hive\'Regal Spitfire", + [11733] = "Hive\'Regal Slavemaker", + [11734] = "Hive\'Regal Hive Lord", + [11735] = "Stonelash Scorpid", + [11736] = "Stonelash Pincer", + [11737] = "Stonelash Flayer", + [11738] = "Sand Skitterer", + [11739] = "Rock Stalker", + [11740] = "Dredge Striker", + [11741] = "Dredge Crusher", + [11742] = "Silt Grub", + [11743] = "Silt Devourer", + [11744] = "Dust Stormer", + [11745] = "Cyclone Warrior", + [11746] = "Desert Rumbler", + [11747] = "Desert Rager", + [11748] = "Samantha Swifthoof", + [11749] = "Feran Strongwind", + [11750] = "Ganoosh", + [11751] = "Rilan Howard", + [11752] = "Blaise Montgomery", + [11753] = "Gogo", + [11754] = "Meggi Peppinrocker", + [11755] = "Harlo Wigglesworth", + [11756] = "Quinn", + [11757] = "Umaron Stragarelm", + [11758] = "Andi Lynn", + [11776] = "Salome", + [11777] = "Shadowshard Rumbler", + [11778] = "Shadowshard Smasher", + [11779] = "Shadowshard Thunderer", + [11780] = "Ambershard Rager", + [11781] = "Ambershard Crusher", + [11782] = "Ambershard Destroyer", + [11783] = "Theradrim Shardling", + [11784] = "Theradrim Guardian", + [11785] = "Ambereye Basilisk", + [11786] = "Ambereye Reaver", + [11787] = "Rock Borer", + [11788] = "Rock Worm", + [11789] = "Deep Borer", + [11790] = "Putridus Satyr", + [11791] = "Putridus Trickster", + [11792] = "Putridus Shadowstalker", + [11793] = "Celebrian Dryad", + [11794] = "Sister of Celebrian", + [11795] = "Mylentha Riverbend", + [11796] = "Bessany Plainswind", + [11797] = "Moren Riverbend", + [11798] = "Bunthen Plainswind", + [11799] = "Tajarri", + [11800] = "Silva Fil\'naveth", + [11801] = "Rabine Saturna", + [11802] = "Dendrite Starblaze", + [11803] = "Twilight Keeper Exeter", + [11804] = "Twilight Keeper Havunth", + [11805] = "Jarund Stoutstrider", + [11806] = "Sentinel Onaeya", + [11807] = "Tristane Shadowstone", + [11808] = "Grum Redbeard", + [11809] = "Danni Palewing", + [11810] = "Howin Kindfeather", + [11811] = "Narain Soothfancy", + [11812] = "Claira Kindfeather", + [11813] = "Kerr Ironsight", + [11814] = "Kali Remik", + [11815] = "Voriya", + [11816] = "Una Ji\'ro", + [11817] = "Krah\'ranik", + [11818] = "Orik\'ando", + [11819] = "Jory Zaga", + [11820] = "Locke Okarr", + [11821] = "Darn Talongrip", + [11822] = "Moonglade Warden", + [11823] = "Vark Battlescar", + [11824] = "Erik Felixe", + [11825] = "Paige Felixe", + [11826] = "Kristy Grant", + [11827] = "Kimberly Grant", + [11828] = "Kelly Grant", + [11829] = "Fahrak", + [11830] = "Hakkari Priest", + [11831] = "Hakkari Witch Doctor", + [11832] = "Keeper Remulos", + [11833] = "Rahauro", + [11834] = "Maur Grimtotem", + [11835] = "Theodore Griffs", + [11836] = "Captured Rabid Thistle Bear", + [11837] = "Wildpaw Shaman", + [11838] = "Wildpaw Mystic", + [11839] = "Wildpaw Brute", + [11840] = "Wildpaw Alpha", + [11856] = "Kaya Flathoof", + [11857] = "Makaba Flathoof", + [11858] = "Grundig Darkcloud", + [11859] = "Doomguard", + [11860] = "Maggran Earthbinder", + [11861] = "Mor\'rogal", + [11862] = "Tsunaman", + [11863] = "Azore Aldamort", + [11864] = "Tammra Windfield", + [11865] = "Buliwyf Stonehand", + [11866] = "Ilyenia Moonfire", + [11867] = "Woo Ping", + [11868] = "Sayoc", + [11869] = "Ansekhwa", + [11870] = "Archibald", + [11871] = "Grinning Dog", + [11872] = "Myranda the Hag", + [11873] = "Spectral Attendant", + [11874] = "Masat T\'andr", + [11875] = "Mortar Team Target Dummy", + [11876] = "Demon Spirit", + [11877] = "Roon Wildmane", + [11878] = "Nathanos Blightcaller", + [11880] = "Twilight Avenger", + [11881] = "Twilight Geolord", + [11882] = "Twilight Stonecaller", + [11883] = "Twilight Master", + [11884] = "Obi", + [11885] = "Blighthound", + [11886] = "Mercutio Filthgorger", + [11887] = "Crypt Robber", + [11896] = "Borelgore", + [11897] = "Duskwing", + [11898] = "Crusader Lord Valdelmar", + [11899] = "Shardi", + [11900] = "Brakkar", + [11901] = "Andruk", + [11902] = "Aiden", + [11903] = "Alexander", + [11904] = "Noah", + [11905] = "Jordan", + [11906] = "Sophia", + [11907] = "Alanna", + [11908] = "Mirah", + [11909] = "Penelope", + [11910] = "Grimtotem Ruffian", + [11911] = "Grimtotem Mercenary", + [11912] = "Grimtotem Brute", + [11913] = "Grimtotem Sorcerer", + [11914] = "Gorehoof the Black", + [11915] = "Gogger Rock Keeper", + [11916] = "Imelda", + [11917] = "Gogger Geomancer", + [11918] = "Gogger Stonepounder", + [11919] = "Claudia", + [11920] = "Goggeroc", + [11921] = "Besseleth", + [11926] = "[PH] Northshire Gift Dispenser", + [11936] = "Artist Renfray", + [11937] = "Demon Portal Guardian", + [11938] = "Young Tirion", + [11939] = "Umber", + [11940] = "Merissa Stilwell", + [11941] = "Yori Crackhelm", + [11942] = "Orenthil Whisperwind", + [11943] = "Magga", + [11944] = "Vorn Skyseer", + [11945] = "Claire Willower", + [11946] = "Drek\'Thar", + [11947] = "Captain Galvangar", + [11948] = "Vanndar Stormpike", + [11949] = "Captain Balinda Stonehearth", + [11956] = "Great Bear Spirit", + [11957] = "Great Cat Spirit", + [11958] = "Gracchus Spiritlight", + [11959] = "[UNUSED] Obsidian Watcher", + [11978] = "[NOT USED] Neltharion", + [11979] = "Kim Bridenbecker", + [11980] = "[NOT USED] Zuluhed the Whacked", + [11981] = "Flamegor", + [11982] = "Magmadar", + [11983] = "Firemaw", + [11988] = "Golemagg the Incinerator", + [11994] = "Rob Bridenbecker", + [11996] = "Ashley Bridenbecker", + [11997] = "Stormpike Herald", + [11998] = "Frostwolf Herald", + [12017] = "Broodlord Lashlayer", + [12018] = "Majordomo Executus", + [12019] = "Dargon", + [12020] = "Moonglade Alchemy Trainer", + [12021] = "Daeolyn Summerleaf", + [12022] = "Lorelae Wintersong", + [12023] = "Kharedon", + [12024] = "Meliri", + [12025] = "Malvor", + [12026] = "My\'lanna", + [12027] = "Tukk", + [12028] = "Lah\'Mawhani", + [12029] = "Narianna", + [12030] = "Malux", + [12031] = "Mai\'Lahii", + [12032] = "Lui\'Mala", + [12033] = "Wulan", + [12034] = "Koiter", + [12035] = "Aerie Peak Mining Trainer", + [12036] = "Aerie Peak General Goods", + [12037] = "Ursol\'lok", + [12038] = "[UNUSED] Aerie Peak Cooking Supplies", + [12039] = "Aerie Peak Meat Vendor", + [12040] = "Aerie Peak Mail Armor Vendor", + [12042] = "Loganaar", + [12043] = "Kulwia", + [12044] = "Sun Rock Blacksmithing Supplies", + [12045] = "Hae\'Wilani", + [12046] = "Gor\'marok the Ravager", + [12047] = "Stormpike Mountaineer", + [12048] = "Alliance Sentinel", + [12050] = "Stormpike Defender", + [12051] = "Frostwolf Legionnaire", + [12052] = "Frostwolf Warrior", + [12053] = "Frostwolf Guardian", + [12054] = "Dawnchaser", + [12056] = "Baron Geddon", + [12057] = "Garr", + [12076] = "Lava Elemental", + [12096] = "Stormpike Quartermaster", + [12097] = "Frostwolf Quartermaster", + [12098] = "Sulfuron Harbinger", + [12099] = "Firesworn", + [12100] = "Lava Reaver", + [12101] = "Lava Surger", + [12116] = "Priestess of Elune", + [12118] = "Lucifron", + [12119] = "Flamewaker Protector", + [12120] = "Plagueland Termite", + [12121] = "Draka", + [12122] = "Duros", + [12123] = "Reef Shark", + [12124] = "Great Shark", + [12125] = "Mammoth Shark", + [12126] = "Lord Tirion Fordring", + [12127] = "Stormpike Guardsman", + [12128] = "Crimson Elite", + [12129] = "Onyxian Warder", + [12136] = "Snurk Bucksquick", + [12137] = "Squibby Overspeck", + [12138] = "Lunaclaw", + [12140] = "Guardian of Elune", + [12141] = "Ice Totem", + [12142] = "Flamewaker Guardian", + [12143] = "Son of Flame", + [12144] = "Lunaclaw Spirit", + [12145] = "Riding Kodo (Black)", + [12146] = "Riding Kodo (Olive)", + [12147] = "Riding Kodo (White)", + [12148] = "Riding Kodo (Teal)", + [12149] = "Riding Kodo (Gray)", + [12150] = "Riding Kodo (Purple)", + [12151] = "Riding Kodo (Green)", + [12152] = "Voice of Elune", + [12156] = "Winterax Axe Thrower", + [12157] = "Winterax Shadow Hunter", + [12158] = "Winterax Hunter", + [12159] = "Korrak the Bloodrager", + [12160] = "Shadowglen Sentinel", + [12176] = "Tame Kodo", + [12177] = "Kyle Blackthorne", + [12178] = "Tortured Druid", + [12179] = "Tortured Sentinel", + [12180] = "Anubisath", + [12196] = "Innkeeper Kaylisk", + [12197] = "Glordrum Steelbeard", + [12198] = "Martin Lindsey", + [12199] = "Shade of Ambermoon", + [12200] = "Cobaltine Wyrmkin", + [12201] = "Princess Theradras", + [12202] = "Human Skull", + [12203] = "Landslide", + [12204] = "Spitelash Raider", + [12205] = "Spitelash Witch", + [12206] = "Primordial Behemoth", + [12207] = "Thessala Hydra", + [12208] = "Conquered Soul of the Blightcaller", + [12216] = "Poison Sprite", + [12217] = "Corruptor", + [12218] = "Vile Larva", + [12219] = "Barbed Lasher", + [12220] = "Constrictor Vine", + [12221] = "Noxious Slime", + [12222] = "Creeping Sludge", + [12223] = "Cavern Lurker", + [12224] = "Cavern Shambler", + [12225] = "Celebras the Cursed", + [12236] = "Lord Vyletongue", + [12237] = "Meshlok the Harvester", + [12238] = "Zaetar\'s Spirit", + [12239] = "Spirit of Gelk", + [12240] = "Spirit of Kolk", + [12241] = "Spirit of Magra", + [12242] = "Spirit of Maraudos", + [12243] = "Spirit of Veng", + [12244] = "Mark of Detonation (NW)", + [12245] = "Vendor-Tron 1000", + [12246] = "Super-Seller 680", + [12247] = "Scourge Structure", + [12248] = "Infiltrator Hameya", + [12249] = "Mark of Detonation (SW)", + [12250] = "Zaeldarr the Outcast", + [12251] = "Mark of Detonation (CLS)", + [12252] = "Mark of Detonation (CRS)", + [12253] = "Mark of Detonation (CSH)", + [12254] = "Mark of Detonation (NESH)", + [12255] = "Mark of Detonation (NE)", + [12256] = "Mark of Detonation (SE)", + [12257] = "Mechanical Yeti", + [12258] = "Razorlash", + [12259] = "Gehennas", + [12260] = "Onyxian Drake", + [12261] = "Infected Mossflayer", + [12262] = "Ziggurat Protector", + [12263] = "Slaughterhouse Protector", + [12264] = "Shazzrah", + [12265] = "Lava Spawn", + [12276] = "Hive\'Zora Egg", + [12277] = "Melizza Brimbuzzle", + [12296] = "Sickly Gazelle", + [12297] = "Cured Gazelle", + [12298] = "Sickly Deer", + [12299] = "Cured Deer", + [12317] = "Unkillable Test Dummy 60 Low AC", + [12319] = "Burning Blade Toxicologist", + [12320] = "Burning Blade Crusher", + [12321] = "Stormscale Toxicologist", + [12322] = "Quel\'Lithien Protector", + [12336] = "Brother Crowley", + [12337] = "Crimson Courier", + [12338] = "Shadowprey Guardian", + [12339] = "Demetria", + [12340] = "Drulzegar Skraghook", + [12341] = "Blue Skeletal Horse", + [12342] = "Brown Skeletal Horse", + [12343] = "Red Skeletal Horse", + [12344] = "Swift Green Skeletal Horse", + [12345] = "Mottled Red Raptor", + [12346] = "Emerald Raptor", + [12347] = "Enraged Reef Crawler", + [12348] = "Ivory Raptor", + [12349] = "Turquoise Raptor", + [12350] = "Violet Raptor", + [12351] = "Dire Riding Wolf", + [12352] = "Scarlet Trooper", + [12353] = "Timber Riding Wolf", + [12354] = "Brown Riding Kodo", + [12355] = "Gray Riding Kodo", + [12356] = "Green Riding Kodo", + [12357] = "Teal Riding Kodo", + [12358] = "Riding Striped Frostsaber", + [12359] = "Riding Spotted Frostsaber", + [12360] = "Riding Striped Nightsaber", + [12361] = "Riding Nightsaber", + [12362] = "Riding Frostsaber", + [12363] = "Blue Mechanostrider", + [12364] = "Icy Blue Mechanostrider Mod A", + [12365] = "Red Mechanostrider", + [12366] = "Unpainted Mechanostrider", + [12367] = "Green Mechanostrider", + [12368] = "White Mechanostrider Mod A", + [12369] = "Lord Kragaru", + [12370] = "Black Ram", + [12371] = "Frost Ram", + [12372] = "Brown Ram", + [12373] = "Gray Ram", + [12374] = "White Riding Ram", + [12375] = "Chestnut Mare", + [12376] = "Brown Horse", + [12377] = "Wailing Spectre", + [12378] = "Damned Soul", + [12379] = "Unliving Caretaker", + [12380] = "Unliving Resident", + [12381] = "Ley Sprite", + [12382] = "Mana Sprite", + [12383] = "Nibbles", + [12384] = "Augustus the Touched", + [12385] = "Mortar Team Advanced Target Dummy", + [12386] = "Magus Kyara", + [12387] = "Large Vile Slime", + [12396] = "Doomguard Commander", + [12397] = "Lord Kazzak", + [12416] = "Blackwing Legionnaire", + [12417] = "[NOT USED] Death Talon Whelp", + [12418] = "Gordok Hyena", + [12419] = "Lifelike Toad", + [12420] = "Blackwing Mage", + [12421] = "[NOT USED] Blackwing Assassin", + [12422] = "Death Talon Dragonspawn", + [12423] = "Guard Roberts", + [12425] = "Flint Shadowmore", + [12426] = "Masterwork Target Dummy", + [12427] = "Mountaineer Dolf", + [12428] = "Deathguard Kel", + [12429] = "Sentinel Shaya", + [12430] = "Grunt Kor\'ja", + [12431] = "Gorefang", + [12432] = "Old Vicejaw", + [12433] = "Krethis Shadowspinner", + [12434] = "Monster Generator (Blackwing)", + [12435] = "Razorgore the Untamed", + [12457] = "Blackwing Spellbinder", + [12458] = "Blackwing Taskmaster", + [12459] = "Blackwing Warlock", + [12460] = "Death Talon Wyrmguard", + [12461] = "Death Talon Overseer", + [12462] = "[NOT USED] Blackwing Warlord", + [12463] = "Death Talon Flamescale", + [12464] = "Death Talon Seether", + [12465] = "Death Talon Wyrmkin", + [12466] = "[NOT USED] Death Talon Scalebane", + [12467] = "Death Talon Captain", + [12468] = "Death Talon Hatcher", + [12469] = "[NOT USED] Death Talon Earthshaker", + [12470] = "[NOT USED] Death Talon Firetongue", + [12473] = "Arcanite Dragonling", + [12474] = "Emeraldon Boughguard", + [12475] = "Emeraldon Tree Warder", + [12476] = "Emeraldon Oracle", + [12477] = "Verdantine Boughguard", + [12478] = "Verdantine Oracle", + [12479] = "Verdantine Tree Warder", + [12480] = "Melris Malagan", + [12481] = "Justine Demalier", + [12496] = "Dreamtracker", + [12497] = "Dreamroarer", + [12498] = "Dreamstalker", + [12516] = "TEST Resist Gear", + [12517] = "TEST Potions and Enchantments", + [12536] = "Illusion: Black Dragonkin", + [12557] = "Grethok the Controller", + [12576] = "Grish Longrunner", + [12577] = "Jarrodenus", + [12578] = "Mishellena", + [12579] = "Bloodfury Ripper", + [12580] = "Reginald Windsor", + [12581] = "Mercutio", + [12596] = "Bibilfaz Featherwhistle", + [12616] = "Vhulgra", + [12617] = "Khaelyn Steelwing", + [12636] = "Georgia", + [12656] = "Thamarian", + [12657] = "Don Pompa", + [12658] = "Adam Lind", + [12676] = "Sharptalon", + [12677] = "Shadumbra", + [12678] = "Ursangous", + [12696] = "Senani Thunderheart", + [12716] = "Decedra Willham", + [12717] = "Muglash", + [12718] = "Gurda Ragescar", + [12719] = "Marukai", + [12720] = "Framnali", + [12721] = "Mitsuwa", + [12722] = "Vera Nightshade", + [12723] = "Har\'alen", + [12724] = "Pixel", + [12736] = "Je\'neu Sancrea", + [12737] = "Mastok Wrilehiss", + [12738] = "Nori Pridedrift", + [12739] = "Onyxia\'s Elite Guard", + [12740] = "Faustron", + [12741] = "Warrior 40 (More Leash)", + [12756] = "Lady Onyxia", + [12757] = "Karang Amakkar", + [12758] = "Onyxia Trigger", + [12759] = "Tideress", + [12776] = "Hraug", + [12777] = "Captain Dirgehammer", + [12778] = "Lieutenant Rachel Vaccar", + [12779] = "Archmage Gaiman", + [12780] = "Sergeant Major Skyshadow", + [12781] = "Master Sergeant Biggins", + [12782] = "Captain O\'Neal", + [12783] = "Lieutenant Karter", + [12784] = "Lieutenant Jackspring", + [12785] = "Sergeant Major Clate", + [12786] = "Guard Quine", + [12787] = "Guard Hammon", + [12788] = "Legionnaire Teena", + [12789] = "Blood Guard Hini\'wana", + [12790] = "Advisor Willington", + [12791] = "Chieftain Earthbind", + [12792] = "Lady Palanseer", + [12793] = "Brave Stonehide", + [12794] = "Stone Guard Zarg", + [12795] = "First Sergeant Hola\'mahi", + [12796] = "Raider Bork", + [12797] = "Grunt Korf", + [12798] = "Grunt Bek\'rah", + [12799] = "Sergeant Ba\'sha", + [12800] = "Chimaerok", + [12801] = "Arcane Chimaerok", + [12802] = "Chimaerok Devourer", + [12803] = "Lord Lakmaeran", + [12804] = "[PH] TEST Fire God", + [12805] = "Officer Areyn", + [12806] = "Magmakin", + [12807] = "Greshka", + [12816] = "Xen\'Zilla", + [12818] = "Ruul Snowhoof", + [12819] = "Ruul Snowhoof Bear Form", + [12836] = "Wandering Protector", + [12837] = "Yama Snowhoof", + [12856] = "Ashenvale Outrunner", + [12857] = "Elogit", + [12858] = "Torek", + [12859] = "Splintertree Raider", + [12860] = "Duriel Moonfire", + [12861] = "Wisp (Ghost Visual Only)", + [12862] = "Warsong Scout", + [12863] = "Warsong Runner", + [12864] = "Warsong Outrider", + [12865] = "Ambassador Malcin", + [12866] = "Myriam Moonsinger", + [12867] = "Kuray\'bin", + [12876] = "Baron Aquanis", + [12877] = "Ertog Ragetusk", + [12896] = "Silverwing Sentinel", + [12897] = "Silverwing Warrior", + [12898] = "Phantim Illusion", + [12899] = "Axtroz", + [12900] = "Somnus", + [12902] = "Lorgus Jett", + [12903] = "Splintertree Guard", + [12904] = "Spirit Of Redemption", + [12916] = "Unkillable Test Dummy 60 Low Magic Resistances", + [12917] = "Unkillable Test Dummy 60 High Magic Resistances", + [12918] = "Chief Murgut", + [12919] = "Nat Pagle", + [12920] = "Doctor Gregory Victor", + [12921] = "Enraged Foulweald", + [12922] = "Imp Minion", + [12923] = "Injured Soldier", + [12924] = "Badly Injured Soldier", + [12925] = "Critically Injured Soldier", + [12936] = "Badly Injured Alliance Soldier", + [12937] = "Critically Injured Alliance Soldier", + [12938] = "Injured Alliance Soldier", + [12939] = "Doctor Gustaf VanHowzen", + [12940] = "Vorsha the Lasher", + [12941] = "Jase Farlane", + [12942] = "Leonard Porter", + [12943] = "Werg Thickblade", + [12944] = "Lokhtos Darkbargainer", + [12956] = "Zannok Hidepiercer", + [12957] = "Blimo Gadgetspring", + [12958] = "Gigget Zipcoil", + [12959] = "Nergal", + [12960] = "Christi Galvanis", + [12961] = "Kil\'Hiwana", + [12962] = "Wik\'Tar", + [12976] = "Kolkar Waylayer", + [12977] = "Kolkar Ambusher", + [12996] = "Mounted Ironforge Mountaineer", + [12997] = "Monty", + [12998] = "Dwarven Farmer", + [12999] = "Blackwing Trigger", + [13000] = "Gnome Engineer", + [13016] = "Deeprun Rat", + [13017] = "Enthralled Deeprun Rat", + [13018] = "Nipsy", + [13019] = "Burning Blade Seer", + [13020] = "Vaelastrasz the Corrupt", + [13021] = "Warpwood Crusher", + [13022] = "Whip Lasher", + [13036] = "Gordok Mastiff", + [13056] = "test spirit healer (DND)", + [13076] = "Dun Morogh Mountaineer", + [13078] = "Umi Thorson", + [13079] = "Keetar", + [13080] = "Irondeep Guard", + [13081] = "Irondeep Raider", + [13082] = "Milton Beats", + [13083] = "Echo of Archimonde", + [13084] = "Bixi Wobblebonk", + [13085] = "Myrokos Silentform", + [13086] = "Aggi Rumblestomp", + [13087] = "Coldmine Invader", + [13088] = "Masha Swiftcut", + [13089] = "Coldmine Guard", + [13096] = "Coldmine Explorer", + [13097] = "Coldmine Surveyor", + [13098] = "Irondeep Surveyor", + [13099] = "Irondeep Explorer", + [13116] = "Alliance Spirit Guide", + [13117] = "Horde Spirit Guide", + [13118] = "Crimson Bodyguard", + [13136] = "Hive\'Ashi Drone", + [13137] = "Lieutenant Rugba", + [13138] = "Lieutenant Spencer", + [13139] = "Commander Randolph", + [13140] = "Commander Dardosh", + [13141] = "Deeprot Stomper", + [13142] = "Deeprot Tangler", + [13143] = "Lieutenant Stronghoof", + [13144] = "Lieutenant Vol\'talar", + [13145] = "Lieutenant Grummus", + [13146] = "Lieutenant Murp", + [13147] = "Lieutenant Lewis", + [13148] = "Flame of Ragnaros", + [13149] = "Syndicate Brigand", + [13150] = "Syndicate Agent", + [13151] = "Syndicate Master Ryson", + [13152] = "Commander Malgor", + [13153] = "Commander Mulfort", + [13154] = "Commander Louis Philips", + [13155] = "Deathstalker Agent", + [13156] = "Carrosh", + [13157] = "Makasgar", + [13158] = "Lieutenant Sanders", + [13159] = "James Clark", + [13160] = "Carrion Swarmer", + [13161] = "Aerie Gryphon", + [13176] = "Smith Regzar", + [13177] = "Vahgruk", + [13178] = "War Rider", + [13179] = "Wing Commander Guse", + [13180] = "Wing Commander Jeztor", + [13181] = "Wing Commander Mulverick", + [13196] = "Phase Lasher", + [13197] = "Fel Lash", + [13216] = "Gaelden Hammersmith", + [13217] = "Thanthaldis Snowgleam", + [13218] = "Grunnda Wolfheart", + [13219] = "Jekyll Flandring", + [13220] = "Layo Starstrike", + [13221] = "Ryson\'s Eye in the Sky", + [13236] = "Primalist Thurloga", + [13256] = "Lokholar the Ice Lord", + [13257] = "Murgot Deepforge", + [13276] = "Wildspawn Imp", + [13277] = "Dahne Pierce", + [13278] = "Duke Hydraxis", + [13279] = "Discordant Surge", + [13280] = "Hydrospawn", + [13281] = "Furis", + [13282] = "Noxxion", + [13283] = "Lord Tony Romano", + [13284] = "Frostwolf Shaman", + [13285] = "Death Lash", + [13296] = "Lieutenant Largent", + [13297] = "Lieutenant Stouthandle", + [13298] = "Lieutenant Greywand", + [13299] = "Lieutenant Lonadin", + [13300] = "Lieutenant Mancuso", + [13301] = "Hive\'Ashi Ambusher", + [13316] = "Coldmine Peon", + [13317] = "Coldmine Miner", + [13318] = "Commander Mortimer", + [13319] = "Commander Duffy", + [13320] = "Commander Karl Philips", + [13321] = "Frog", + [13322] = "Hydraxian Honor Guard", + [13323] = "Subterranean Diemetradon", + [13324] = "Seasoned Guardsman", + [13325] = "Seasoned Mountaineer", + [13326] = "Seasoned Defender", + [13327] = "Seasoned Sentinel", + [13328] = "Seasoned Guardian", + [13329] = "Seasoned Legionnaire", + [13330] = "Seasoned Warrior", + [13331] = "Veteran Defender", + [13332] = "Veteran Guardian", + [13333] = "Veteran Guardsman", + [13334] = "Veteran Legionnaire", + [13335] = "Veteran Mountaineer", + [13336] = "Veteran Sentinel", + [13337] = "Veteran Warrior", + [13338] = "Core Rat", + [13339] = "Warrior 60", + [13356] = "Stormpike Mine Layer", + [13357] = "Frostwolf Mine Layer", + [13358] = "Stormpike Bowman", + [13359] = "Frostwolf Bowman", + [13377] = "Master Engineer Zinfizzlex", + [13378] = "Frostwolf Shredder Unit", + [13396] = "Irondeep Miner", + [13397] = "Irondeep Peon", + [13416] = "Stormpike Shredder Unit", + [13417] = "Sagorne Creststrider", + [13418] = "Kaymard Copperpinch", + [13419] = "Ivus the Forest Lord", + [13420] = "Penney Copperpinch", + [13421] = "Champion Guardian", + [13422] = "Champion Defender", + [13424] = "Champion Guardsman", + [13425] = "Champion Legionnaire", + [13426] = "Champion Mountaineer", + [13427] = "Champion Sentinel", + [13428] = "Champion Warrior", + [13429] = "Nardstrum Copperpinch", + [13430] = "Jaycrue Copperpinch", + [13431] = "Whulwert Copperpinch", + [13432] = "Seersa Copperpinch", + [13433] = "Wulmort Jinglepocket", + [13434] = "Macey Jinglepocket", + [13435] = "Khole Jinglepocket", + [13436] = "Guchie Jinglepocket", + [13437] = "Wing Commander Ichman", + [13438] = "Wing Commander Slidore", + [13439] = "Wing Commander Vipore", + [13440] = "Frostwolf Wolf Rider", + [13441] = "Frostwolf Wolf Rider Commander", + [13442] = "Arch Druid Renferal", + [13443] = "Druid of the Grove", + [13444] = "Greatfather Winter", + [13445] = "Great-father Winter", + [13446] = "Field Marshal Teravaine", + [13447] = "Corporal Noreg Stormpike", + [13448] = "Sergeant Yazra Bloodsnarl", + [13449] = "Warmaster Garrick", + [13456] = "Noxxion\'s Spawn", + [13476] = "Balai Lok\'Wein", + [13477] = "Noxxion Trigger", + [13496] = "Risen Ancient", + [13516] = "Frostwolf Outrunner", + [13517] = "Seasoned Outrunner", + [13518] = "Veteran Outrunner", + [13519] = "Champion Outrunner", + [13520] = "Stormpike Ranger", + [13521] = "Seasoned Ranger", + [13522] = "Veteran Ranger", + [13523] = "Champion Ranger", + [13524] = "Stormpike Commando", + [13525] = "Seasoned Commando", + [13526] = "Veteran Commando", + [13527] = "Champion Commando", + [13528] = "Frostwolf Reaver", + [13529] = "Seasoned Reaver", + [13530] = "Veteran Reaver", + [13531] = "Champion Reaver", + [13533] = "Spewed Larva", + [13534] = "Seasoned Coldmine Guard", + [13535] = "Veteran Coldmine Guard", + [13536] = "Champion Coldmine Guard", + [13537] = "Seasoned Coldmine Surveyor", + [13538] = "Veteran Coldmine Surveyor", + [13539] = "Champion Coldmine Surveyor", + [13540] = "Seasoned Irondeep Explorer", + [13541] = "Veteran Irondeep Explorer", + [13542] = "Champion Irondeep Explorer", + [13543] = "Seasoned Irondeep Raider", + [13544] = "Veteran Irondeep Raider", + [13545] = "Champion Irondeep Raider", + [13546] = "Seasoned Coldmine Explorer", + [13547] = "Veteran Coldmine Explorer", + [13548] = "Champion Coldmine Explorer", + [13549] = "Seasoned Coldmine Invader", + [13550] = "Veteran Coldmine Invader", + [13551] = "Champion Coldmine Invader", + [13552] = "Seasoned Irondeep Guard", + [13553] = "Veteran Irondeep Guard", + [13554] = "Champion Irondeep Guard", + [13555] = "Seasoned Irondeep Surveyor", + [13556] = "Veteran Irondeep Surveyor", + [13557] = "Champion Irondeep Surveyor", + [13576] = "Stormpike Ram Rider", + [13577] = "Stormpike Ram Rider Commander", + [13596] = "Rotgrip", + [13597] = "Frostwolf Explosives Expert", + [13598] = "Stormpike Explosives Expert", + [13599] = "Stolid Snapjaw", + [13601] = "Tinkerer Gizlock", + [13602] = "The Abominable Greench", + [13616] = "Frostwolf Stable Master", + [13617] = "Stormpike Stable Master", + [13618] = "Stabled Frostwolf", + [13619] = "Gizlock\'s Dummy", + [13620] = "Gizlock", + [13636] = "Strange Snowman", + [13656] = "Willow", + [13676] = "Stabled Alterac Ram", + [13696] = "Noxxious Scion", + [13697] = "Cavindra", + [13698] = "Keeper Marandis", + [13699] = "Selendra", + [13716] = "Celebras the Redeemed", + [13717] = "Centaur Pariah", + [13718] = "The Nameless Prophet", + [13736] = "Noxxious Essence", + [13737] = "Marandis\' Sister", + [13738] = "Veng", + [13739] = "Maraudos", + [13740] = "Magra", + [13741] = "Gelk", + [13742] = "Kolk", + [13743] = "Corrupt Force of Nature", + [13756] = "PvP Graveyard Credit Marker", + [13776] = "Corporal Teeka Bloodsnarl", + [13777] = "Sergeant Durgen Stormpike", + [13778] = "PvP Tower Credit Marker", + [13796] = "PvP Mine Credit Marker", + [13797] = "Mountaineer Boombellow", + [13798] = "Jotek", + [13816] = "Prospector Stonehewer", + [13817] = "Voggah Deathgrip", + [13836] = "Burning Blade Nightmare", + [13837] = "Captured Stallion", + [13838] = "Testing Totem", + [13839] = "Royal Dreadguard", + [13840] = "Warmaster Laggrond", + [13841] = "Lieutenant Haggerdin", + [13842] = "Frostwolf Ambassador Rokhstrom", + [13843] = "Lieutenant Rotimer", + [13856] = "Alliance Res Fixer", + [13857] = "Horde Res Fixer", + [13876] = "Mekgineer Trigger", + [13896] = "Scalebeard", + [13916] = "Dire Maul Crystal Totem", + [13917] = "Izzy Coppergrab", + [13936] = "Ravenholdt", + [13956] = "Winterax Mystic", + [13957] = "Winterax Warrior", + [13958] = "Winterax Seer", + [13959] = "Alterac Yeti", + [13976] = "Tortured Drake", + [13977] = "Gash\'nak the Cannibal", + [13996] = "Blackwing Technician", + [14016] = "Ushalac the Gloomdweller", + [14017] = "Withered Troll", + [14018] = "Rezrelek", + [14019] = "Tatterhide", + [14020] = "Chromaggus", + [14021] = "Winterax Sentry", + [14022] = "Corrupted Red Whelp", + [14023] = "Corrupted Green Whelp", + [14024] = "Corrupted Blue Whelp", + [14025] = "Corrupted Bronze Whelp", + [14026] = "Trigger Guse", + [14027] = "Trigger Mulverick", + [14028] = "Trigger Jeztor", + [14029] = "Trigger Ichman", + [14030] = "Trigger Slidore", + [14031] = "Trigger Vipore", + [14041] = "Haggle", + [14042] = "Rytama", + [14061] = "Phase Lasher (Fire)", + [14062] = "Phase Lasher (Nature)", + [14063] = "Phase Lasher (Arcane)", + [14081] = "Demon Portal", + [14101] = "Enraged Felguard", + [14121] = "Deeprun Diver", + [14122] = "Massive Geyser", + [14123] = "Steeljaw Snapper", + [14141] = "Stormpike Reclaimer", + [14142] = "Frostwolf Reclaimer", + [14143] = "Ar\'lia", + [14144] = "Taroen", + [14145] = "Ja\'ker", + [14146] = "Urrul", + [14147] = "Lorael", + [14148] = "Fre\'an", + [14161] = "Karana", + [14162] = "RaidMage", + [14181] = "[PH] Graveyard Herald", + [14182] = "Bounty Hunter Kolark", + [14183] = "Artilleryman Sheldonore", + [14184] = "Phase Lasher (Frost)", + [14185] = "Najak Hexxen", + [14186] = "Ravak Grimtotem", + [14187] = "Athramanis", + [14188] = "Dirk Swindle", + [14201] = "[UNUSED] Sid Stuco", + [14221] = "Gravis Slipknot", + [14222] = "Araga", + [14223] = "Cranky Benj", + [14224] = "7:XT", + [14225] = "Prince Kellen", + [14226] = "Kaskk", + [14227] = "Hissperak", + [14228] = "Giggler", + [14229] = "Accursed Slitherblade", + [14230] = "Burgle Eye", + [14231] = "Drogoth the Roamer", + [14232] = "Dart", + [14233] = "Ripscale", + [14234] = "Hayoc", + [14235] = "The Rot", + [14236] = "Lord Angler", + [14237] = "Oozeworm", + [14241] = "Ironbark the Redeemed", + [14242] = "Sulhasa", + [14261] = "Blue Drakonid", + [14262] = "Green Drakonid", + [14263] = "Bronze Drakonid", + [14264] = "Red Drakonid", + [14265] = "Black Drakonid", + [14266] = "Shanda the Spinner", + [14267] = "Emogg the Crusher", + [14268] = "Lord Condar", + [14269] = "Seeker Aqualon", + [14270] = "Squiddic", + [14271] = "Ribchaser", + [14272] = "Snarlflare", + [14273] = "Boulderheart", + [14274] = "Winterax Tracker", + [14275] = "Tamra Stormpike", + [14276] = "Scargil", + [14277] = "Lady Zephris", + [14278] = "Ro\'Bark", + [14279] = "Creepthess", + [14280] = "Big Samras", + [14281] = "Jimmy the Bleeder", + [14282] = "Frostwolf Bloodhound", + [14283] = "Stormpike Owl", + [14284] = "Stormpike Battleguard", + [14285] = "Frostwolf Battleguard", + [14301] = "Brinna Valanaar", + [14302] = "Chromatic Drakonid", + [14303] = "Petrified Guardian", + [14304] = "Kor\'kron Elite", + [14305] = "Human Orphan", + [14306] = "Eskhandar", + [14307] = "Black Drakonid Spawner", + [14308] = "Ferra", + [14309] = "Red Drakonid Spawner", + [14310] = "Green Drakonid Spawner", + [14311] = "Bronze Drakonid Spawner", + [14312] = "Blue Drakonid Spawner", + [14321] = "Guard Fengus", + [14322] = "Stomper Kreeg", + [14323] = "Guard Slip\'kik", + [14324] = "Cho\'Rush the Observer", + [14325] = "Captain Kromcrush", + [14326] = "Guard Mol\'dar", + [14327] = "Lethtendris", + [14329] = "Black War Wolf", + [14330] = "Black War Raptor", + [14331] = "Red Skeletal Warhorse", + [14332] = "Black War Steed", + [14333] = "Black War Kodo", + [14334] = "Black Battlestrider", + [14335] = "Black War Ram", + [14336] = "Black War Saber", + [14337] = "Field Repair Bot 74A", + [14338] = "Knot Thimblejack", + [14339] = "Death Howl", + [14340] = "Alshirr Banebreath", + [14341] = "Felendor the Accuser", + [14342] = "Ragepaw", + [14343] = "Olm the Wise", + [14344] = "Mongress", + [14345] = "The Ongar", + [14346] = "Captain Greshkil", + [14347] = "Highlord Demitrian", + [14348] = "Earthcaller Franzahl", + [14349] = "Pimgib", + [14350] = "Hydroling", + [14351] = "Gordok Bushwacker", + [14352] = "Duke Landressar", + [14353] = "Mizzle the Crafty", + [14354] = "Pusillin", + [14355] = "Azj\'Tordin", + [14356] = "Sawfin Frenzy", + [14357] = "Lake Thresher", + [14358] = "Shen\'dralar Ancient", + [14361] = "Shen\'dralar Wisp", + [14362] = "Thornling", + [14363] = "Thief Catcher Shadowdelve", + [14364] = "Shen\'dralar Spirit", + [14365] = "Thief Catcher Farmountain", + [14366] = "Warpwood Spores", + [14367] = "Thief Catcher Thunderbrew", + [14368] = "Lorekeeper Lydros", + [14369] = "Shen\'dralar Zealot", + [14370] = "Cadaverous Worm", + [14371] = "Shen\'dralar Provisioner", + [14372] = "Winterfall Ambusher", + [14373] = "Sage Korolusk", + [14374] = "Scholar Runethorn", + [14375] = "Scout Stronghand", + [14376] = "Scout Manslayer", + [14377] = "Scout Tharr", + [14378] = "Huntress Skymane", + [14379] = "Huntress Ravenoak", + [14380] = "Huntress Leafrunner", + [14381] = "Lorekeeper Javon", + [14382] = "Lorekeeper Mykos", + [14383] = "Lorekeeper Kildrath", + [14385] = "Doomguard Minion", + [14386] = "Wandering Eye of Kilrogg", + [14387] = "Lothos Riftwaker", + [14388] = "Rogue Black Drake", + [14389] = "Netherwalker", + [14390] = "Expeditionary Mountaineer", + [14391] = "Dire Maul Reaver Post", + [14392] = "Overlord Runthak", + [14393] = "Expeditionary Priest", + [14394] = "Major Mattingly", + [14395] = "Griniblix the Spectator", + [14396] = "Eye of Immol\'thar", + [14397] = "Mana Burst", + [14398] = "Eldreth Darter", + [14399] = "Arcane Torrent", + [14400] = "Arcane Feedback", + [14401] = "Master Elemental Shaper Krixix", + [14402] = "Seeker Cromwell", + [14403] = "Seeker Nahr", + [14404] = "Seeker Thompson", + [14406] = "Roving Kodo", + [14421] = "Brown Prairie Dog", + [14422] = "BRD Trigger", + [14423] = "Officer Jaxon", + [14424] = "Mirelow", + [14425] = "Gnawbone", + [14426] = "Harb Foulmountain", + [14427] = "Gibblesnik", + [14428] = "Uruson", + [14429] = "Grimmaw", + [14430] = "Duskstalker", + [14431] = "Fury Shelda", + [14432] = "Threggil", + [14433] = "Sludginn", + [14434] = "Alarm-o-Bot", + [14435] = "Prince Thunderaan", + [14436] = "Mor\'zul Bloodbringer", + [14437] = "Gorzeeki Wildeyes", + [14438] = "Officer Pomeroy", + [14439] = "Officer Brady", + [14440] = "Hunter Sagewind", + [14441] = "Hunter Ragetotem", + [14442] = "Hunter Thunderhorn", + [14443] = "Doomguard Tap Trigger", + [14444] = "Orcish Orphan", + [14445] = "Lord Captain Wyrmak", + [14446] = "Fingat", + [14447] = "Gilmorian", + [14448] = "Molt Thorn", + [14449] = "Blackwing Orb Trigger", + [14450] = "Orphan Matron Nightingale", + [14451] = "Orphan Matron Battlewail", + [14452] = "Enslaved Doomguard Commander", + [14453] = "Orb of Domination", + [14454] = "The Windreaver", + [14455] = "Whirling Invader", + [14456] = "Blackwing Guardsman", + [14457] = "Princess Tempestria", + [14458] = "Watery Invader", + [14459] = "Nefarian\'s Troops", + [14460] = "Blazing Invader", + [14461] = "Baron Charr", + [14462] = "Thundering Invader", + [14463] = "Daio the Decrepit", + [14464] = "Avalanchion", + [14465] = "Alliance Battle Standard", + [14466] = "Horde Battle Standard", + [14467] = "Kroshius", + [14469] = "Niby the Almighty", + [14470] = "Impsy", + [14471] = "Setis", + [14472] = "Gretheer", + [14473] = "Lapress", + [14474] = "Zora", + [14475] = "Rex Ashil", + [14476] = "Krellack", + [14477] = "Grubthor", + [14478] = "Huricanian", + [14479] = "Twilight Lord Everun", + [14480] = "Alowicious Czervik", + [14481] = "Emmithue Smails", + [14482] = "Xorothian Imp", + [14483] = "Dread Guard", + [14484] = "Injured Peasant", + [14485] = "Plagued Peasant", + [14486] = "Scourge Footsoldier", + [14487] = "Gluggle", + [14488] = "Roloch", + [14489] = "Scourge Archer", + [14490] = "Rippa", + [14491] = "Kurmokk", + [14492] = "Verifonix", + [14493] = "Priest Epic Event Caller", + [14494] = "Eris Havenfire", + [14495] = "Invisible Trigger One", + [14496] = "Stormwind Orphan", + [14497] = "Shellene", + [14498] = "Tosamina", + [14499] = "Horde Orphan", + [14500] = "J\'eevee", + [14501] = "Warlock Mount Ritual Mob Type 3, Infernal (DND)", + [14502] = "Xorothian Dreadsteed", + [14503] = "The Cleaner", + [14504] = "Dreadsteed Spirit", + [14505] = "Riding Horse (Dreadsteed)", + [14506] = "Lord Hel\'nurath", + [14507] = "High Priest Venoxis", + [14508] = "Short John Mithril", + [14509] = "High Priest Thekal", + [14510] = "High Priestess Mar\'li", + [14511] = "Shadowed Spirit", + [14512] = "Corrupted Spirit", + [14513] = "Malicious Spirit", + [14514] = "Banal Spirit", + [14515] = "High Priestess Arlokk", + [14516] = "Death Knight Darkreaver", + [14517] = "High Priestess Jeklik", + [14518] = "Aspect of Banality", + [14519] = "Aspect of Corruption", + [14520] = "Aspect of Malice", + [14521] = "Aspect of Shadow", + [14522] = "Ur\'dan", + [14523] = "Ulathek", + [14524] = "Vartrus the Ancient", + [14525] = "Stoma the Ancient", + [14526] = "Hastat the Ancient", + [14527] = "Simone the Inconspicuous", + [14528] = "Precious", + [14529] = "Franklin the Friendly", + [14530] = "Solenor the Slayer", + [14531] = "Artorius the Amiable", + [14532] = "Razzashi Venombrood", + [14533] = "Simone the Seductress", + [14534] = "Klinfran the Crazed", + [14535] = "Artorius the Doombringer", + [14536] = "Nelson the Nice", + [14538] = "Precious the Devourer", + [14539] = "Swift Timber Wolf", + [14540] = "Swift Brown Wolf", + [14541] = "Swift Gray Wolf", + [14542] = "Great White Kodo", + [14543] = "Swift Olive Raptor", + [14544] = "Swift Orange Raptor", + [14545] = "Swift Blue Raptor", + [14546] = "Swift Brown Ram", + [14547] = "Swift White Ram", + [14548] = "Swift Gray Ram", + [14549] = "Great Brown Kodo", + [14550] = "Great Gray Kodo", + [14551] = "Swift Yellow Mechanostrider", + [14552] = "Swift White Mechanostrider", + [14553] = "Swift Green Mechanostrider", + [14554] = "Swift Stripped Mechanostrider", + [14555] = "Swift Mistsaber", + [14556] = "Swift Frostsaber", + [14557] = "Swift Dawnsaber", + [14558] = "Purple Skeletal Warhorse", + [14559] = "Swift Palamino", + [14560] = "Swift White Steed", + [14561] = "Swift Brown Steed", + [14562] = "Swift Blue Mechanostrider", + [14563] = "Swift Red Mechanostrider", + [14564] = "Terrordale Spirit", + [14565] = "Riding Horse (Charger)", + [14566] = "Ancient Equine Spirit", + [14567] = "Derotain Mudsipper", + [14568] = "Darkreaver\'s Fallen Charger", + [14581] = "Sergeant Thunderhorn", + [14601] = "Ebonroc", + [14602] = "Swift Stormsaber", + [14603] = "Zapped Shore Strider", + [14604] = "Zapped Land Walker", + [14605] = "Bone Construct", + [14606] = "Drakonid Corpse Trigger", + [14621] = "Overseer Maltorius", + [14622] = "Thorium Brotherhood Lookout", + [14623] = "Warsong Gulch Battlemaster", + [14624] = "Master Smith Burninate", + [14625] = "Overseer Oilfist", + [14626] = "Taskmaster Scrange", + [14627] = "Hansel Heavyhands", + [14628] = "Evonice Sootsmoker", + [14629] = "Loggerhead Snapjaw", + [14630] = "Leatherback Snapjaw", + [14631] = "Olive Snapjaw", + [14632] = "Hawksbill Snapjaw", + [14633] = "Albino Snapjaw", + [14634] = "Lookout Captain Lolo Longstriker", + [14635] = "Sleepy Dark Iron Worker", + [14636] = "Chambermaid Pillaclencher", + [14637] = "Zorbin Fandazzle", + [14638] = "Zapped Wave Strider", + [14639] = "Zapped Deep Strider", + [14640] = "Zapped Cliff Giant", + [14641] = "[PH] Horde spell thrower", + [14642] = "[PH] Alliance Spell thrower", + [14643] = "[PH] Alliance Herald", + [14644] = "[PH] Horde Herald", + [14645] = "Warsong Gulch Herald", + [14646] = "Stratholme Trigger", + [14661] = "Stinglasher", + [14662] = "Corrupted Fire Nova Totem V", + [14663] = "Corrupted Stoneskin Totem VI", + [14664] = "Corrupted Healing Stream Totem V", + [14666] = "Corrupted Windfury Totem III", + [14667] = "Corrupted Totem", + [14668] = "Corrupted Infernal", + [14681] = "Transporter Malfunction", + [14682] = "Sever", + [14683] = "Baron Titus Rivendare", + [14684] = "Balzaphon", + [14685] = "Morbus", + [14686] = "Lady Falther\'ess", + [14687] = "Soulless", + [14688] = "Master Sandoval", + [14689] = "Mana Elemental", + [14690] = "Revanchion", + [14691] = "Basalt", + [14692] = "Wollstonecraft", + [14693] = "Scorn", + [14694] = "Necrosis", + [14695] = "Lord Blackwood", + [14696] = "Stitched Behemoth", + [14697] = "Lumbering Horror", + [14698] = "Silent Stalker", + [14699] = "Spectral Soldier UNUSED", + [14700] = "Unclean Spirit", + [14701] = "Doom Wraith", + [14702] = "Wailing Widow", + [14703] = "Death Siren", + [14704] = "Skittering Dread", + [14705] = "Nerubian Webspinner", + [14706] = "Skeletal Shocktrooper UNUSED", + [14707] = "Bone Warder", + [14708] = "Decaying Warrior", + [14709] = "Blighted Dead", + [14710] = "Dread Sorcerer", + [14711] = "Plagued Eater UNUSED", + [14712] = "Midden Ghoul", + [14713] = "Putrid Flyer", + [14714] = "Winged Horror", + [14715] = "Silverwing Elite", + [14717] = "Horde Elite", + [14718] = "Horde Laborer", + [14719] = "[PH] Alliance Tower Lieutenant", + [14720] = "High Overlord Saurfang", + [14721] = "Field Marshal Afrasiabi", + [14722] = "Clavicus Knavingham", + [14723] = "Mistina Steelshield", + [14724] = "Bubulo Acerbus", + [14725] = "Raedon Duskstriker", + [14726] = "Rashona Straglash", + [14727] = "Vehena", + [14728] = "Rumstag Proudstrider", + [14729] = "Ralston Farnsley", + [14730] = "Revantusk Watcher", + [14731] = "Lard", + [14732] = "PvP CTF Credit Marker", + [14733] = "Sentinel Farsong", + [14734] = "Revantusk Drummer", + [14735] = "ggoodman\'s flag tester", + [14736] = "Primal Torntusk", + [14737] = "Smith Slagtree", + [14738] = "Otho Moji\'ko", + [14739] = "Mystic Yayo\'jin", + [14740] = "Katoom the Angler", + [14741] = "Huntsman Markhor", + [14742] = "Zap Farflinger", + [14743] = "Jhordy Lapforge", + [14744] = "Frostwolf Riding Wolf", + [14745] = "Stormpike Riding Ram", + [14746] = "[PH] Horde Tower Lieutenant", + [14748] = "Vilebranch Kidnapper", + [14750] = "Gurubashi Bat Rider", + [14751] = "Frostwolf Battle Standard", + [14752] = "Stormpike Battle Standard", + [14753] = "Illiyana Moonblaze", + [14754] = "Kelm Hargunth", + [14755] = "Tiny Green Dragon", + [14756] = "Tiny Red Dragon", + [14757] = "Elder Torntusk", + [14758] = "Zul\'Gurub Trigger", + [14761] = "Creeping Doom", + [14762] = "Dun Baldar North Marshal", + [14763] = "Dun Baldar South Marshal", + [14764] = "Icewing Marshal", + [14765] = "Stonehearth Marshal", + [14766] = "Iceblood Marshal", + [14767] = "Tower Point Marshal", + [14768] = "East Frostwolf Marshal", + [14769] = "West Frostwolf Marshal", + [14770] = "Dun Baldar North Warmaster", + [14771] = "Dun Baldar South Warmaster", + [14772] = "East Frostwolf Warmaster", + [14773] = "Iceblood Warmaster", + [14774] = "Icewing Warmaster", + [14775] = "Stonehearth Warmaster", + [14776] = "Tower Point Warmaster", + [14777] = "West Frostwolf Warmaster", + [14781] = "Captain Shatterskull", + [14801] = "Wild Polymorph Target", + [14821] = "Razzashi Raptor", + [14822] = "Sayge", + [14823] = "Silas Darkmoon", + [14824] = "GGOODMAN", + [14825] = "Withered Mistress", + [14826] = "Sacrificed Troll", + [14827] = "Burth", + [14828] = "Gelvas Grimegate", + [14829] = "Yebb Neblegear", + [14830] = "Unkillable Test Dummy 60 Warrior", + [14831] = "Unkillable Test Dummy 63 Warrior", + [14832] = "Kerri Hicks", + [14833] = "Chronos", + [14834] = "Hakkar", + [14841] = "Rinling", + [14842] = "Melnan Darkstone", + [14843] = "Kruban Darkblade", + [14844] = "Sylannia", + [14845] = "Stamp Thunderhorn", + [14846] = "Lhara", + [14847] = "Professor Thaddeus Paleo", + [14848] = "Herald", + [14849] = "Darkmoon Faire Carnie", + [14850] = "Gruk", + [14851] = "Bog", + [14852] = "Throk", + [14853] = "Torg", + [14854] = "Kall", + [14855] = "Dagg", + [14856] = "Mott", + [14857] = "Erk", + [14858] = "Progk", + [14859] = "Guard Taruc", + [14860] = "Flik", + [14861] = "Blood Steward of Kirtonos", + [14862] = "Emissary Roman\'khan", + [14864] = "Khaz Modan Ram", + [14865] = "Felinni", + [14866] = "Flik\'s Frog", + [14867] = "Jubjub", + [14868] = "Hornsley", + [14869] = "Pygmy Cockatrice", + [14870] = "Stoneclaw Totem TEST", + [14871] = "Morja", + [14872] = "Trok", + [14873] = "Okla", + [14874] = "Karu", + [14875] = "Molthor", + [14876] = "Zandalar Headshrinker", + [14877] = "High Priest Venoxis Transform Visual", + [14878] = "Jubling", + [14879] = "Arathi Basin Battlemaster", + [14880] = "Razzashi Skitterer", + [14881] = "Spider", + [14882] = "Atal\'ai Mistress", + [14883] = "Voodoo Slave", + [14884] = "Parasitic Serpent", + [14885] = "[PH] Jon LeCraft", + [14886] = "The Good Rabbit", + [14887] = "Ysondre", + [14888] = "Lethon", + [14889] = "Emeriss", + [14890] = "Taerar", + [14892] = "Fang", + [14893] = "Guard Kurall", + [14894] = "Swarm of bees", + [14901] = "Peon", + [14902] = "Jin\'rokh the Breaker", + [14903] = "Al\'tabim the All-Seeing", + [14904] = "Maywiki of Zuldazar", + [14905] = "Falthir the Sightless", + [14906] = "Test Guy", + [14908] = "Mogg", + [14909] = "Pooka", + [14910] = "Exzhal", + [14911] = "Zandalar Enforcer", + [14912] = "Captured Hakkari Zealot", + [14913] = "TEST DUDE", + [14921] = "Rin\'wosho the Trader", + [14941] = "High Priestess Jeklik Transform Visual", + [14942] = "Kartra Bloodsnarl", + [14943] = "Guse\'s War Rider", + [14944] = "Jeztor\'s War Rider", + [14945] = "Mulverick\'s War Rider", + [14946] = "Slidore\'s Gryphon", + [14947] = "Ichman\'s Gryphon", + [14948] = "Vipore\'s Gryphon", + [14961] = "Mirvyna Jinglepocket", + [14962] = "Dillord Copperpinch", + [14963] = "Gapp Jinglepocket", + [14964] = "Hecht Copperpinch", + [14965] = "Frenzied Bloodseeker Bat", + [14966] = "High Priest Thekal Transform Visual", + [14967] = "High Priestess Mar\'li Transform Visual", + [14968] = "High Priestess Arlokk Transform Visual", + [14981] = "Elfarran", + [14982] = "Lylandris", + [14983] = "Field Marshal Oslight", + [14984] = "Sergeant Maclear", + [14986] = "Shade of Jin\'do", + [14987] = "Powerful Healing Ward", + [14988] = "Ohgan", + [14989] = "Poisonous Cloud", + [14990] = "Defilers Emissary", + [14991] = "League of Arathor Emissary", + [14994] = "Zandalarian Event Generator", + [15001] = "PvP A-Mid Credit Marker", + [15002] = "PvP Mid Credit Marker", + [15003] = "PvP H-Mid Credit Marker", + [15004] = "PvP ALT-S Credit Marker", + [15005] = "PvP ALT-N Credit Marker", + [15006] = "Deze Snowbane", + [15007] = "Sir Malory Wheeler", + [15008] = "Lady Hoteshem", + [15009] = "Voodoo Spirit", + [15010] = "Jungle Toad", + [15011] = "Wagner Hammerstrike", + [15012] = "Javnir Nashak", + [15021] = "Deathmaster Dwire", + [15022] = "Deathstalker Mortis", + [15041] = "Spawn of Mar\'li", + [15042] = "Zanza the Restless", + [15043] = "Zulian Crocolisk", + [15045] = "Arathi Farmer", + [15046] = "Forsaken Farmer", + [15047] = "Gurubashi", + [15061] = "Spirit of Jin\'do", + [15062] = "Arathi Lumberjack", + [15063] = "Arathi Blacksmith", + [15064] = "Forsaken Blacksmith", + [15065] = "Lady", + [15066] = "Cleo", + [15067] = "Zulian Stalker", + [15068] = "Zulian Guardian", + [15069] = "Heart of Hakkar", + [15070] = "Vinchaxa", + [15071] = "Underfoot", + [15072] = "Spike", + [15073] = "Pat\'s Hellfire Guy", + [15074] = "Arathi Miner", + [15075] = "Forsaken Miner", + [15076] = "Zandalarian Emissary", + [15077] = "Riggle Bassbait", + [15078] = "Jang", + [15079] = "Fishbot 5000", + [15080] = "Servant of the Hand", + [15081] = "Gri\'lek", + [15082] = "Gri\'lek", + [15083] = "Hazza\'rah", + [15084] = "Renataki", + [15085] = "Wushoolay", + [15086] = "Arathi Stablehand", + [15087] = "Forsaken Stablehand", + [15088] = "Booty Bay Elite", + [15089] = "Forsaken Lumberjack", + [15090] = "Swift Razzashi Raptor", + [15091] = "Zul\'Gurub Panther Trigger", + [15101] = "Zulian Prowler", + [15102] = "Silverwing Emissary", + [15103] = "Stormpike Emissary", + [15104] = "Swift Zulian Tiger", + [15105] = "Warsong Emissary", + [15106] = "Frostwolf Emissary", + [15107] = "Arathi Horse", + [15108] = "Forsaken Horse", + [15109] = "Primal Blessing Visual", + [15110] = "Gurubashi Prisoner", + [15111] = "Mad Servant", + [15112] = "Brain Wash Totem", + [15113] = "Honored Hero", + [15114] = "Gahz\'ranka", + [15115] = "Honored Ancestor", + [15116] = "Grinkle", + [15117] = "Chained Spirit", + [15118] = "Master Angler Form", + [15119] = "Barrus", + [15121] = "Skeletal Magelord", + [15122] = "Gahz\'ranka Dead", + [15123] = "[PH] Kris Zierhut", + [15124] = "Targot Jinglepocket", + [15125] = "Kosco Copperpinch", + [15126] = "Rutherford Twing", + [15127] = "Samuel Hawke", + [15128] = "Defiler Elite", + [15130] = "League of Arathor Elite", + [15131] = "Qeeju", + [15133] = "Killable Test Dummy 60 Warrior", + [15134] = "Outlands Test Dummy Warrior 70", + [15135] = "Chromatic Drake Mount", + [15136] = "Hammerfall Elite", + [15137] = "Menethil Elite", + [15138] = "Silverpine Elite", + [15139] = "Gahz\'ranka Herald", + [15140] = "Pat\'s Splash Guy", + [15141] = "Portal of Madness", + [15142] = "Outlands Test Dummy Warrior 60", + [15143] = "Outlands Test Dummy Warrior 63", + [15144] = "Outlands Test Dummy Warrior 65", + [15145] = "Outlands Test Dummy Warrior 67", + [15146] = "Mad Voidwalker", + [15151] = "Outlands Test Dummy Warrior 55", + [15152] = "Outlands Test Dummy Warrior 56", + [15153] = "Outlands Test Dummy Warrior 57", + [15154] = "Outlands Test Dummy Warrior 58", + [15155] = "Outlands Test Dummy Warrior 59", + [15156] = "Outlands Test Dummy Warrior 61", + [15157] = "Outlands Test Dummy Warrior 62", + [15158] = "Outlands Test Dummy Warrior 64", + [15159] = "Outlands Test Dummy Warrior 66", + [15160] = "Outlands Test Dummy Warrior 68", + [15161] = "Outlands Test Dummy Warrior 69", + [15162] = "Scarlet Inquisitor", + [15163] = "Nightmare Illusion", + [15164] = "Mulgore Trigger", + [15165] = "Haughty Modiste", + [15166] = "[PH] Luis Barriga", + [15167] = "[PH] Luis Test NPC", + [15168] = "Vile Scarab", + [15169] = "Ralo\'shan the Eternal Watcher", + [15170] = "Rutgar Glyphshaper", + [15171] = "Frankal Stonebridge", + [15172] = "Glibb", + [15173] = "Outlands Test Dummy Warrior 54", + [15174] = "Calandrath", + [15175] = "Khur Hornstriker", + [15176] = "Vargus", + [15177] = "Cloud Skydancer", + [15178] = "Runk Windtamer", + [15179] = "Mishta", + [15180] = "Baristolth of the Shifting Sands", + [15181] = "Commander Mar\'alith", + [15182] = "Vish Kozus", + [15183] = "Geologist Larksbane", + [15184] = "Cenarion Hold Infantry", + [15185] = "Brood of Nozdormu", + [15186] = "Murky", + [15187] = "Cenarion Emissary Jademoon", + [15188] = "Cenarion Emissary Blackhoof", + [15189] = "Beetix Ficklespragg", + [15190] = "Noggle Ficklespragg", + [15191] = "Windcaller Proudhorn", + [15192] = "Anachronos", + [15193] = "The Banshee Queen", + [15194] = "Hermit Ortell", + [15195] = "Wickerman Guardian", + [15196] = "Deathclasp", + [15197] = "Darkcaller Yanka", + [15198] = "Blackwing", + [15199] = "Sergeant Hartman", + [15200] = "Twilight Keeper Mayna", + [15201] = "Twilight Flamereaver", + [15202] = "Vyral the Vile", + [15203] = "Prince Skaldrenox", + [15204] = "High Marshal Whirlaxis", + [15205] = "Baron Kazum", + [15206] = "The Duke of Cynders", + [15207] = "The Duke of Fathoms", + [15208] = "The Duke of Shards", + [15209] = "Crimson Templar", + [15210] = "Vulculon UNUSED", + [15211] = "Azure Templar", + [15212] = "Hoary Templar", + [15213] = "Twilight Overlord", + [15214] = "Invisible Stalker", + [15215] = "Mistress Natalia Mar\'alith", + [15216] = "Male Ghost", + [15217] = "Female Ghost", + [15218] = "Faire Cannon Trigger", + [15219] = "Trick - Critter", + [15220] = "The Duke of Zephyrs", + [15221] = "Frankal Invisible Trigger", + [15222] = "Rutgar Invisible Trigger", + [15223] = "[PH] [UNUSED] Lord Inquisitor Opalezzix", + [15224] = "Dream Fog", + [15226] = "[UNUSED] Vekniss Builder", + [15227] = "[UNUSED] Vekniss Hiveshaper", + [15228] = "[UNUSED] Vekniss Wellborer", + [15229] = "Vekniss Soldier", + [15230] = "Vekniss Warrior", + [15231] = "[UNUSED] Vekniss Patroller", + [15232] = "[UNUSED] Vekniss Eradicator", + [15233] = "Vekniss Guardian", + [15234] = "[UNUSED] Vekniss Swarmer", + [15235] = "Vekniss Stinger", + [15236] = "Vekniss Wasp", + [15237] = "[UNUSED] Vekniss Wrathstinger", + [15238] = "[UNUSED] Vekniss Hive Reaver", + [15239] = "[UNUSED] Vekniss Hive Lurker", + [15240] = "Vekniss Hive Crawler", + [15241] = "[UNUSED] Vekniss Crusher", + [15242] = "[UNUSED] Vekniss Demolisher", + [15243] = "[UNUSED] Vekniss Wasprider", + [15244] = "[UNUSED] Vekniss Hive Raider", + [15245] = "[UNUSED] Vekniss Waspguard", + [15246] = "Qiraji Mindslayer", + [15247] = "Qiraji Brainwasher", + [15248] = "[UNUSED] Qiraji Soulbender", + [15249] = "Qiraji Lasher", + [15250] = "Qiraji Slayer", + [15251] = "[UNUSED] Qiraji Slaymaster", + [15252] = "Qiraji Champion", + [15253] = "[UNUSED] Qiraji Champion", + [15254] = "[UNUSED] Qiraji Captain", + [15255] = "[UNUSED] Qiraji Officer", + [15256] = "[UNUSED] Qiraji Commander", + [15257] = "[UNUSED] Qiraji Honor Guard", + [15258] = "[UNUSED] Qiraji Praetor", + [15259] = "[UNUSED] Qiraji Imperator", + [15260] = "Demented Druid Spirit", + [15261] = "Spirit Shade", + [15262] = "Obsidian Eradicator", + [15263] = "The Prophet Skeram", + [15264] = "Anubisath Sentinel", + [15270] = "Huum Wildmane", + [15275] = "Emperor Vek\'nilash", + [15276] = "Emperor Vek\'lor", + [15277] = "Anubisath Defender", + [15282] = "Aurel Goldleaf", + [15286] = "Xil\'xix", + [15288] = "Aluntir", + [15290] = "Arakis", + [15293] = "Aendel Windspear", + [15299] = "Viscidus", + [15300] = "Vekniss Drone", + [15302] = "Shade of Taerar", + [15303] = "Maxima Blastenheimer", + [15304] = "Ancient Mana Spring Totem", + [15305] = "Lord Skwol", + [15306] = "Bor Wildmane", + [15307] = "Earthen Templar", + [15308] = "Twilight Prophet", + [15309] = "Spoops", + [15310] = "Jesper", + [15311] = "Anubisath Warder", + [15312] = "Obsidian Nullifier", + [15313] = "Moonkin (Druid - Night Elf)", + [15314] = "Moonkin (Druid - Tauren)", + [15315] = "Mylini Frostmoon", + [15316] = "Qiraji Scarab", + [15317] = "Qiraji Scorpion", + [15318] = "Hive\'Zara Drone", + [15319] = "Hive\'Zara Collector", + [15320] = "Hive\'Zara Soldier", + [15322] = "[UNUSED] Hive\'Zara Ambusher", + [15323] = "Hive\'Zara Sandstalker", + [15324] = "Qiraji Gladiator", + [15325] = "Hive\'Zara Wasp", + [15326] = "[UNUSED] Hive\'Zara Swarmer", + [15327] = "Hive\'Zara Stinger", + [15328] = "Steam Tonk", + [15329] = "[UNUSED] Hive\'Zara Scout", + [15330] = "[UNUSED] Sand Borer", + [15331] = "[UNUSED] Dune Tunneler", + [15332] = "[UNUSED] Crystal Feeder", + [15333] = "Silicate Feeder", + [15334] = "Giant Eye Tentacle", + [15335] = "Flesh Hunter", + [15336] = "Hive\'Zara Tail Lasher", + [15337] = "[UNUSED] Sand Mold", + [15338] = "Obsidian Destroyer", + [15339] = "Ossirian the Unscarred", + [15340] = "Moam", + [15341] = "General Rajaxx", + [15342] = "[UNUSED] Sphinx", + [15343] = "Qiraji Swarmguard", + [15344] = "Swarmguard Needler", + [15345] = "[UNUSED] Daughter of Hecate", + [15346] = "[UNUSED] Qiraji Wasprider", + [15347] = "[UNUSED] Qiraji Wasplord", + [15348] = "Kurinnaxx", + [15349] = "RC Blimp ", + [15350] = "Horde Warbringer", + [15351] = "Alliance Brigadier General", + [15352] = "Corrupted Water Elemental", + [15353] = "Katrina Shimmerstar", + [15354] = "Rachelle Gothena", + [15355] = "Anubisath Guardian", + [15356] = "Blue Baby Murloc", + [15357] = "Purple Baby Murloc", + [15358] = "White Baby Murloc", + [15359] = "Pink Baby Murloc", + [15360] = "Green Baby Murloc", + [15361] = "Murki", + [15362] = "Malfurion Stormrage", + [15363] = "Spirit Totem", + [15364] = "RC Mortar Tank ", + [15368] = "Tonk Mine", + [15369] = "Ayamiss the Hunter", + [15370] = "Buru the Gorger", + [15373] = "Halloween Pirate Captain", + [15374] = "Halloween Undead Pirate", + [15375] = "Halloween Pirate Female", + [15376] = "Halloween Male Ghost", + [15377] = "Halloween Female Ghost", + [15378] = "Merithra of the Dream", + [15379] = "Caelestrasz", + [15380] = "Arygos", + [15381] = "Anachronos the Ancient", + [15382] = "Fandral Staghelm", + [15383] = "Sergeant Stonebrow", + [15384] = "World Trigger", + [15385] = "Colonel Zerran", + [15386] = "Major Yeggeth", + [15387] = "Qiraji Warrior", + [15388] = "Major Pakkon", + [15389] = "Captain Drenn", + [15390] = "Captain Xurrem", + [15391] = "Captain Qeez", + [15392] = "Captain Tuubid", + [15393] = "[UNUSED] Ruins Qiraji Gladiator Named 7", + [15394] = "Hero of the Horde", + [15395] = "Nafien", + [15410] = "Anachronos Dragon Form", + [15411] = "Arygos Dragon Form", + [15412] = "Caelestrasz Dragon Form", + [15413] = "Merithra Dragon Form", + [15414] = "Qiraji Wasp", + [15415] = "Southshore Stink Bomb Counter", + [15419] = "Kania", + [15421] = "Qiraji Drone", + [15422] = "Qiraji Tank", + [15423] = "Kaldorei Infantry", + [15424] = "Anubisath Conqueror", + [15425] = "Debug Point", + [15426] = "Ahn\'Qiraj Trigger", + [15427] = "Merithra\'s Wake", + [15428] = "Sand Vortex", + [15429] = "Disgusting Oozeling", + [15431] = "Corporal Carnes", + [15432] = "Dame Twinbraid", + [15434] = "Private Draxlegauge", + [15435] = "Ironforge Brigade Mortarman", + [15436] = "Mortar Sergeant Stouthammer", + [15437] = "Master Nightsong", + [15440] = "Captain Blackanvil", + [15441] = "Ironforge Brigade Rifleman", + [15442] = "Ironforge Brigade Footman", + [15443] = "Janela Stouthammer", + [15444] = "Arcanist Nozzlespring", + [15445] = "Sergeant Major Germaine", + [15446] = "Bonnie Stoneflayer", + [15448] = "Private Porter", + [15449] = "Hive\'Zora Abomination", + [15450] = "Marta Finespindle", + [15451] = "Sentinel Silversky", + [15452] = "Nurse Stonefield", + [15453] = "Keeper Moonshade", + [15454] = "Anachronos Quest Trigger Invisible", + [15455] = "Slicky Gastronome", + [15456] = "Sarah Sadwhistle", + [15457] = "Huntress Swiftriver", + [15458] = "Commander Stronghammer", + [15459] = "Miner Cromwell", + [15460] = "Grunt Maug", + [15461] = "Shrieker Scarab", + [15462] = "Spitting Scarab", + [15463] = "Grace of Air Totem III", + [15464] = "Strength of Earth Totem V", + [15466] = "Minion of Omen", + [15467] = "Omen", + [15469] = "Senior Sergeant T\'kelah", + [15471] = "Lieutenant General Andorov", + [15472] = "[UNUSED] Deep Ooze", + [15473] = "Kaldorei Elite", + [15475] = "Beetle", + [15476] = "Scorpion", + [15477] = "Herbalist Proudfeather", + [15481] = "Spirit of Azuregos", + [15491] = "Eranikus, Tyrant of the Dream", + [15495] = "Nighthaven Defender", + [15498] = "Windcaller Yessendra", + [15499] = "Warden Haro", + [15500] = "Keyl Swiftclaw", + [15502] = "Andorgos", + [15503] = "Kandrostrasz", + [15504] = "Vethsera", + [15505] = "Canal Frenzy", + [15506] = "Stewvul", + [15507] = "Buru the Gorger Transform Visual", + [15508] = "Batrider Pele\'keiki", + [15509] = "Princess Huhuran", + [15510] = "Fankriss the Unyielding", + [15511] = "Lord Kri", + [15512] = "Apothecary Jezel", + [15514] = "Buru Egg", + [15515] = "Skinner Jamani", + [15516] = "Battleguard Sartura", + [15517] = "Ouro", + [15518] = "Auctioneer Grum", + [15519] = "Auctioneer Bertram", + [15520] = "O\'Reily", + [15521] = "Hive\'Zara Hatchling", + [15522] = "Sergeant Umala", + [15524] = "Temporary Reindeer", + [15525] = "Doctor Serratus", + [15526] = "Meridith the Mermaiden", + [15527] = "Mana Fiend", + [15528] = "Healer Longrunner", + [15529] = "Lady Callow", + [15530] = "Twilight Master Xarvos", + [15532] = "Stoneguard Clayhoof", + [15533] = "Bloodguard Rawtar", + [15534] = "Fisherman Lin\'do", + [15535] = "Chief Sharpclaw", + [15536] = "Noxxie Razzlebrack", + [15537] = "Anubisath Warrior", + [15538] = "Anubisath Swarmguard", + [15539] = "General Zog", + [15540] = "Windcaller Kaldon", + [15541] = "Twilight Marauder Morna", + [15542] = "Twilight Marauder", + [15543] = "Princess Yauj", + [15544] = "Vem", + [15545] = "Cenarion Outrider", + [15546] = "Hive\'Zara Swarmer", + [15547] = "Vam", + [15549] = "Elder Morndeep", + [15552] = "Doctor Weavil", + [15553] = "Doctor Weavil\'s Flying Machine", + [15554] = "Number Two", + [15555] = "Hive\'Zara Larva", + [15556] = "Elder Splitrock", + [15557] = "Elder Rumblerock", + [15558] = "Elder Silvervein", + [15559] = "Elder Highpeak", + [15560] = "Elder Stonefort", + [15561] = "Elder Obsidian", + [15562] = "Elder Hammershout", + [15563] = "Elder Bellowrage", + [15564] = "Elder Darkcore", + [15565] = "Elder Stormbrow", + [15566] = "Elder Snowcrown", + [15567] = "Elder Ironband", + [15568] = "Elder Graveborn", + [15569] = "Elder Goldwell", + [15570] = "Elder Primestone", + [15571] = "Maws", + [15572] = "Elder Runetotem", + [15573] = "Elder Ragetotem", + [15574] = "Elder Stonespire", + [15575] = "Elder Bloodhoof", + [15576] = "Elder Winterhoof", + [15577] = "Elder Skychaser", + [15578] = "Elder Wildmane", + [15579] = "Elder Darkhorn", + [15580] = "Elder Proudhorn", + [15581] = "Elder Grimtotem", + [15582] = "Elder Windtotem", + [15583] = "Elder Thunderhorn", + [15584] = "Elder Skyseer", + [15585] = "Elder Dawnstrider", + [15586] = "Elder Dreamseer", + [15587] = "Elder Mistwalker", + [15588] = "Elder High Mountain", + [15589] = "Eye of C\'Thun", + [15590] = "Ossirian Crystal Trigger", + [15591] = "Minion of Weavil", + [15592] = "Elder Windrun", + [15593] = "Elder Starsong", + [15594] = "Elder Moonstrike", + [15595] = "Elder Bladeleaf", + [15596] = "Elder Starglade", + [15597] = "Elder Moonwarden", + [15598] = "Elder Bladeswift", + [15599] = "Elder Bladesing", + [15600] = "Elder Skygleam", + [15601] = "Elder Starweave", + [15602] = "Elder Meadowrun", + [15603] = "Elder Nightwind", + [15604] = "Elder Morningdew", + [15605] = "Elder Riversong", + [15606] = "Elder Brightspear", + [15607] = "Elder Farwhisper", + [15608] = "Medivh", + [15609] = "Cenarion Scout Landion", + [15610] = "Cenarion Scout Azenel", + [15611] = "Cenarion Scout Jalia", + [15612] = "Krug Skullsplit", + [15613] = "Merok Longstride", + [15614] = "J.D. Shadesong", + [15615] = "Shadow Priestess Shai", + [15616] = "Orgrimmar Legion Grunt", + [15617] = "Orgrimmar Legion Axe Thrower", + [15618] = "Orgrimmar Legion Hexxer", + [15619] = "silithus test mob", + [15620] = "Hive\'Regal Hunter-Killer", + [15621] = "Yauj Brood", + [15622] = "Vekniss Borer", + [15623] = "Xandivious", + [15624] = "Forest Wisp", + [15625] = "Twilight Corrupter", + [15626] = "Celestine Omencaller", + [15627] = "Jarod Shadowsong", + [15628] = "Eranikus the Redeemed", + [15629] = "Nightmare Phantasm", + [15630] = "Spawn of Fankriss", + [15631] = "Spotlight", + [15632] = "Test dude for 1.8", + [15633] = "Tyrande", + [15634] = "Priestess of the Moon", + [15659] = "Auctioneer Jaxon", + [15660] = "Eranikus Transformed", + [15661] = "Baby Shark", + [15663] = "War Effort Volunteer", + [15664] = "Metzen the Reindeer", + [15665] = "Mounted Reindeer", + [15666] = "Black Qiraji Battle Tank", + [15667] = "Glob of Viscidus", + [15675] = "Auctioneer Stockton", + [15676] = "Auctioneer Yarly", + [15677] = "Auctioneer Graves", + [15678] = "Auctioneer Silva\'las", + [15679] = "Auctioneer Cazarez", + [15680] = "Auctioneer Bernal", + [15681] = "Auctioneer O\'reely", + [15682] = "Auctioneer Cain", + [15683] = "Auctioneer Naxxremis", + [15684] = "Auctioneer Tricket", + [15685] = "Southsea Kidnapper", + [15686] = "Auctioneer Rhyker", + [15692] = "Dark Iron Kidnapper", + [15693] = "Jonathan the Revelator", + [15694] = "Stormwind Reveler", + [15695] = "Vek Twins Trigger", + [15696] = "War Effort Recruit", + [15698] = "Father Winter\'s Helper", + [15699] = "Tranquil Mechanical Yeti", + [15700] = "Warlord Gorchuk", + [15701] = "Field Marshal Snowfall", + [15702] = "Senior Sergeant Taiga", + [15703] = "Senior Sergeant Grimsford", + [15704] = "Senior Sergeant Kai\'jin", + [15705] = "Winter\'s Little Helper", + [15706] = "Winter Reindeer", + [15707] = "Master Sergeant Fizzlebolt", + [15708] = "Master Sergeant Maclure", + [15709] = "Master Sergeant Moonshadow", + [15710] = "Tiny Snowman", + [15712] = "Dirt Mound", + [15713] = "Blue Qiraji Battle Tank", + [15714] = "Yellow Qiraji Battle Tank", + [15715] = "Green Qiraji Battle Tank", + [15716] = "Red Qiraji Battle Tank", + [15717] = "Ouro Trigger", + [15718] = "Ouro Scarab", + [15719] = "Thunder Bluff Reveler", + [15720] = "Timbermaw Ancestor", + [15721] = "Mechanical Greench", + [15722] = "Squire Leoren Mal\'derath", + [15723] = "Booty Bay Reveler", + [15724] = "Drunken Bruiser", + [15725] = "Claw Tentacle", + [15726] = "Eye Tentacle", + [15727] = "C\'Thun", + [15728] = "Giant Claw Tentacle", + [15729] = "Father Winter\'s Helper (BIG) gm", + [15730] = "Pat\'s Snowcloud Guy", + [15731] = "Darnassus Commendation Officer", + [15732] = "Wonderform Operator", + [15733] = "Gnomeregan Commendation Officer", + [15734] = "Ironforge Commendation Officer", + [15735] = "Stormwind Commendation Officer", + [15736] = "Orgrimmar Commendation Officer", + [15737] = "Darkspear Commendation Officer", + [15738] = "Undercity Commendation Officer", + [15739] = "Thunder Bluff Commendation Officer", + [15740] = "Colossus of Zora", + [15741] = "Colossus of Regal", + [15742] = "Colossus of Ashi", + [15743] = "Colossal Anubisath Warbringer", + [15744] = "Imperial Qiraji Destroyer", + [15745] = "Greatfather Winter\'s Helper", + [15746] = "Great-father Winter\'s Helper", + [15747] = "Qiraji Captain", + [15748] = "Lesser Anubisath Warbringer", + [15749] = "Lesser Silithid Flayer", + [15750] = "Qiraji Major", + [15751] = "Anubisath Warbringer", + [15752] = "Silithid Flayer", + [15753] = "Qiraji Brigadier General", + [15754] = "Greater Anubisath Warbringer", + [15756] = "Greater Silithid Flayer", + [15757] = "Qiraji Lieutenant General", + [15758] = "Supreme Anubisath Warbringer", + [15759] = "Supreme Silithid Flayer", + [15760] = "Winter Reveler", + [15761] = "Officer Vu\'Shalay", + [15762] = "Officer Lunalight", + [15763] = "Officer Porterhouse", + [15764] = "Officer Ironbeard", + [15765] = "Officer Redblade", + [15766] = "Officer Maloof", + [15767] = "Officer Thunderstrider", + [15768] = "Officer Gothena", + [15769] = "Resonating Crystal", + [15770] = "Greater Resonating Crystal", + [15771] = "Major Resonating Crystal", + [15772] = "Christmas Darkmaster Gandling", + [15773] = "Christmas Cannon Master Willey", + [15774] = "Christmas Prince Tortheldrin", + [15775] = "Christmas Emperor Dagran Thaurissan", + [15776] = "Christmas Warchief Rend Blackhand", + [15777] = "Christmas War Master Voone", + [15778] = "Mouth Tentacle Mount Visual", + [15780] = "Human Male Winter Reveler", + [15781] = "Human Female Winter Reveler", + [15782] = "Dwarf Male Winter Reveler", + [15783] = "Dwarf Female Winter Reveler", + [15784] = "Night Elf Female Winter Reveler", + [15785] = "Troll Female Winter Reveler", + [15786] = "Orc Female Winter Reveler", + [15787] = "Goblin Female Winter Reveler", + [15788] = "Undead Female Winter Reveler", + [15789] = "Tauren Female Winter Reveler", + [15790] = "Undead Male Winter Reveler", + [15791] = "Orc Male Winter Reveler", + [15792] = "Troll Male Winter Reveler", + [15793] = "Tauren Male Winter Reveler", + [15794] = "Night Elf Male Winter Reveler", + [15795] = "Goblin Male Winter Reveler", + [15796] = "Christmas Goraluk Anvilcrack", + [15797] = "Colossus Researcher Sophia", + [15798] = "Colossus Researcher Nestor", + [15799] = "Colossus Researcher Eazel", + [15800] = "Exit Trigger", + [15801] = "GONG BOY DND DNR", + [15802] = "Flesh Tentacle", + [15803] = "Tranquil Air Totem", + [15804] = "Lesser Resonating Crystal", + [15805] = "Minor Resonating Crystal", + [15806] = "Qiraji Lieutenant", + [15807] = "Minor Anubisath Warbringer", + [15808] = "Minor Silithid Flayer", + [15809] = "C\'Thun Transformation Visual", + [15810] = "Eroded Anubisath Warbringer", + [15811] = "Faltering Silithid Flayer", + [15812] = "Qiraji Officer", + [15813] = "Qiraji Officer Zod", + [15814] = "Qiraji Lieutenant Jo-rel", + [15815] = "Qiraji Captain Ka\'ark", + [15816] = "Qiraji Major He\'al-ie", + [15817] = "Qiraji Brigadier General Pax-lish", + [15818] = "Lieutenant General Nokhor", + [15832] = "Father Winter\'s Helper (BIG) rm", + [15835] = "Father Winter\'s Helper (BIG) rf", + [15838] = "Father Winter\'s Helper (BIG) gf", + [15839] = "Might of Kalimdor Grunt", + [15840] = "Might of Kalimdor Sergeant", + [15841] = "Might of Kalimdor Lieutenant", + [15842] = "Might of Kalimdor Mage", + [15843] = "Might of Kalimdor Priest", + [15844] = "Might of Kalimdor Restorer", + [15845] = "Might of Kalimdor Captain", + [15846] = "Might of Kalimdor Archer", + [15847] = "Might of Kalimdor Shaman", + [15848] = "Might of Kalimdor Infantry", + [15849] = "Might of Kalimdor Druid", + [15850] = "Might of Kalimdor Skirmisher", + [15851] = "Might of Kalimdor Marshal", + [15852] = "Orgrimmar Elite Shieldguard", + [15853] = "Orgrimmar Elite Infantryman", + [15854] = "Orgrimmar Elite Cavalryman", + [15855] = "Tauren Rifleman", + [15856] = "Tauren Primalist", + [15857] = "Stormwind Cavalryman", + [15858] = "Stormwind Infantryman", + [15859] = "Stormwind Archmage", + [15860] = "Kaldorei Marksman", + [15861] = "Ironforge Infantryman", + [15862] = "Ironforge Cavalryman", + [15863] = "Darkspear Shaman", + [15864] = "Valadar Starsong", + [15865] = "Might of Kalimdor Major", + [15866] = "High Commander Lynore Windstryke", + [15867] = "Might of Kalimdor Archmage", + [15868] = "Highlord Leoric Von Zeldig", + [15869] = "Malagav the Tactician", + [15870] = "Duke August Foehammer", + [15871] = "Elder Bronzebeard", + [15872] = "Pat\'s Firework Cluster Guy (BLUE)", + [15873] = "Pat\'s Firework Cluster Guy (RED)", + [15874] = "Pat\'s Firework Cluster Guy (GREEN)", + [15875] = "Pat\'s Firework Cluster Guy (PURPLE)", + [15876] = "Pat\'s Firework Cluster Guy (WHITE)", + [15877] = "Pat\'s Firework Cluster Guy (YELLOW)", + [15878] = "Warcaller Finster", + [15879] = "Pat\'s Firework Guy - BLUE", + [15880] = "Pat\'s Firework Guy - GREEN", + [15881] = "Pat\'s Firework Guy - PURPLE", + [15882] = "Pat\'s Firework Guy - RED", + [15883] = "Pat\'s Firework Guy - YELLOW", + [15884] = "Pat\'s Firework Guy - WHITE", + [15885] = "Pat\'s Firework Guy - BLUE BIG", + [15886] = "Pat\'s Firework Guy - GREEN BIG", + [15887] = "Pat\'s Firework Guy - PURPLE BIG", + [15888] = "Pat\'s Firework Guy - RED BIG", + [15889] = "Pat\'s Firework Guy - WHITE BIG", + [15890] = "Pat\'s Firework Guy - YELLOW BIG", + [15891] = "Lunar Festival Herald", + [15892] = "Lunar Festival Emissary", + [15893] = "Lunar Firework Credit Marker", + [15894] = "Lunar Cluster Credit Marker", + [15895] = "Lunar Festival Harbinger", + [15896] = "C\'Thun Portal", + [15897] = "Large Spotlight", + [15898] = "Lunar Festival Vendor", + [15899] = "Lunar Festival Vendor", + [15900] = "Lunar Festival Harbinger", + [15901] = "Vanquished Tentacle", + [15902] = "Giant Spotlight", + [15903] = "Sergeant Carnes", + [15904] = "Tentacle Portal", + [15905] = "Darnassus Reveler", + [15906] = "Ironforge Reveler", + [15907] = "Undercity Reveler", + [15908] = "Orgrimmar Reveler", + [15909] = "Fariel Starsong", + [15910] = "Giant Tentacle Portal", + [15911] = "Pat\'s Firework Cluster Guy (BLUE BIG)", + [15912] = "Pat\'s Firework Cluster Guy (GREEN BIG)", + [15913] = "Pat\'s Firework Cluster Guy (PURPLE BIG)", + [15914] = "Pat\'s Firework Cluster Guy (RED BIG)", + [15915] = "Pat\'s Firework Cluster Guy (WHITE BIG)", + [15916] = "Pat\'s Firework Cluster Guy (YELLOW BIG)", + [15917] = "Lunar Festival Reveler", + [15918] = "Pat\'s Firework Cluster Guy (ELUNE)", + [15922] = "Viscidus Trigger", + [15925] = "Toxic Slime", + [15928] = "Thaddius", + [15929] = "Stalagg", + [15930] = "Feugen", + [15931] = "Grobbulus", + [15932] = "Gluth", + [15933] = "Poison Cloud", + [15934] = "Hive\'Zara Hornet", + [15936] = "Heigan the Unclean", + [15952] = "Maexxna", + [15953] = "Grand Widow Faerlina", + [15954] = "Noth the Plaguebringer", + [15956] = "Anub\'Rekhan", + [15957] = "Ouro Spawner", + [15961] = "Lunar Festival Sentinel", + [15962] = "Vekniss Hatchling", + [15963] = "The Master\'s Eye", + [15964] = "Buru Egg Trigger", + [15972] = "Alterac Valley Battlemaster", + [15973] = "Naxxramas Template", + [15974] = "Dread Creeper", + [15975] = "Carrion Spinner", + [15976] = "Venom Stalker", + [15977] = "Infectious Skitterer", + [15978] = "Crypt Reaver", + [15979] = "Tomb Horror", + [15980] = "Naxxramas Cultist", + [15981] = "Naxxramas Acolyte", + [15982] = "[PH] Valentine Reveler, Male", + [15983] = "[PH] Valentine Reveler, Female", + [15984] = "Sartura\'s Royal Guard", + [15985] = "[PH] Eric Maloof Test Guy", + [15989] = "Sapphiron", + [15990] = "Kel\'Thuzad", + [15991] = "Lady Dena Kennedy", + [15992] = "Sam\'s Test Dummy 1", + [15993] = "Sam\'s Test Dummy 2", + [15996] = "Sam\'s Test Dummy 1 (1)", + [15997] = "Sam\'s Test Dummy 2 (1)", + [15998] = "Sam\'s Test Dummy 1 (2)", + [15999] = "Sam\'s Test Dummy 2 (2)", + [16001] = "Aldris Fourclouds", + [16002] = "Colara Dean", + [16003] = "Deathguard Tor", + [16004] = "Elenia Haydon", + [16005] = "Lieutenant Jocryn Heldric", + [16006] = "InCombat Trigger", + [16007] = "Orok Deathbane", + [16008] = "Temma of the Wells", + [16009] = "Tormek Stoneriver", + [16011] = "Loatheb", + [16012] = "Mokvar", + [16013] = "Deliana", + [16014] = "Mux Manascrambler", + [16015] = "Vi\'el", + [16016] = "Anthion Harmon", + [16017] = "Patchwork Golem", + [16018] = "Bile Retcher", + [16019] = "Boorana Thunderhoof", + [16020] = "Mad Scientist", + [16021] = "Living Monstrosity", + [16022] = "Surgical Assistant", + [16023] = "Allenya Moonshadow", + [16024] = "Embalming Slime", + [16025] = "Stitched Spewer", + [16026] = "Flesh Giant B [PH]", + [16027] = "Living Poison", + [16028] = "Patchwerk", + [16029] = "Sludge Belcher", + [16030] = "Maggot", + [16031] = "Ysida Harmon", + [16032] = "Falrin Treeshaper", + [16033] = "Bodley", + [16034] = "Plague Beast", + [16035] = "Bog Beast B [PH]", + [16036] = "Frenzied Bat", + [16037] = "Plagued Bat", + [16038] = "Deathhound", + [16039] = "Pack Trainer [PH]", + [16040] = "Pack Handler [PH]", + [16041] = "Shadowhound", + [16042] = "Lord Valthalak", + [16043] = "Magma Lord Bokk", + [16044] = "Mor Grayhoof Trigger", + [16045] = "Isalien Trigger", + [16046] = "Jarien and Sothos Trigger", + [16047] = "Kormok Trigger", + [16048] = "Lord Valthalak Trigger", + [16049] = "Lefty", + [16050] = "Rotfang", + [16051] = "Snokh Blackspine", + [16052] = "Malgen Longspear", + [16053] = "Korv", + [16054] = "Rezznik", + [16055] = "Va\'jashni", + [16056] = "Diseased Maggot", + [16057] = "Rotting Maggot", + [16058] = "Volida", + [16059] = "Theldren", + [16060] = "Gothik the Harvester", + [16061] = "Instructor Razuvious", + [16062] = "Highlord Mograine", + [16063] = "Sir Zeliek", + [16064] = "Thane Korth\'azz", + [16065] = "Lady Blaumeux", + [16066] = "Spectral Assassin", + [16067] = "Skeletal Steed", + [16068] = "Larva", + [16069] = "Gurky", + [16070] = "Garel Redrock", + [16072] = "Tidelord Rrurgaz", + [16073] = "Spirit of Lord Valthalak", + [16075] = "Kwee Q. Peddlefeet", + [16076] = "Tharl Stonebleeder", + [16077] = "[PH] Alex\'s Test DPS Mob", + [16078] = "Unkillable Fixed Damage Test Dummy", + [16079] = "Theldren Trigger", + [16080] = "Mor Grayhoof", + [16081] = "Spectral Gryphon", + [16082] = "Naxxramas Trigger", + [16083] = "Mor Grayhoof Transformation Visual", + [16084] = "picnic blanket", + [16085] = "Peddlefeet", + [16086] = "Flower Shower", + [16089] = "Omar the Test Kobold", + [16090] = "Rousch", + [16091] = "Dirk Thunderwood", + [16092] = "Silithis Teleporter", + [16093] = "Spectral Stalker", + [16094] = "Durik", + [16095] = "Gnashjaw", + [16096] = "Steamwheedle Bruiser", + [16097] = "Isalien", + [16098] = "Empyrean", + [16099] = "[PH] Naxxramas Test Boss", + [16100] = "Ysida\'s Trigger", + [16101] = "Jarien", + [16102] = "Sothos", + [16103] = "Spirit of Jarien", + [16104] = "Spirit of Sothos", + [16105] = "Aristan Mottar", + [16106] = "Evert Sorisam", + [16107] = "Apothecary Staffron Lerent", + [16108] = "Fenstad Argyle", + [16109] = "Mara Rennick", + [16110] = "Annalise Lerent", + [16111] = "Love Fool", + [16112] = "Korfax, Champion of the Light", + [16113] = "Father Inigo Montoy", + [16114] = "Scarlet Commander Marjhan", + [16115] = "Commander Eligor Dawnbringer", + [16116] = "Archmage Angela Dosantos", + [16117] = "Plagued Swine", + [16118] = "Kormok", + [16119] = "Bone Minion", + [16120] = "Bone Mage", + [16121] = "Mortar", + [16123] = "Gremnik Rizzlesprang", + [16124] = "Unrelenting Trainee", + [16125] = "Unrelenting Deathknight", + [16126] = "Unrelenting Rider", + [16127] = "Spectral Trainee", + [16128] = "Rhonin", + [16129] = "Shadow Fissure", + [16131] = "Rohan the Assassin", + [16132] = "Huntsman Leopold", + [16133] = "Mataus the Wrathcaster", + [16134] = "Rimblat Earthshatter", + [16135] = "Rayne", + [16136] = "Necrotic Shard", + [16137] = "Naxxramas Military Sub-Boss Trigger", + [16138] = "[UNUSED] Scourge Invasion Guardian", + [16139] = "Cenarion Hold Reservist", + [16140] = "[UNUSED] Necropolis Crystal, Buttress", + [16141] = "Ghoul Berserker", + [16142] = "Bile Sludge", + [16143] = "Shadow of Doom", + [16145] = "Deathknight Captain", + [16146] = "Deathknight", + [16148] = "Spectral Deathknight", + [16149] = "Spectral Horse", + [16150] = "Spectral Rider", + [16154] = "Risen Deathknight", + [16156] = "Dark Touched Warrior", + [16157] = "Doom Touched Warrior", + [16158] = "Death Touched Warrior", + [16163] = "Deathknight Cavalier", + [16164] = "Shade of Naxxramas", + [16165] = "Necro Knight", + [16166] = "Theldren Kill Credit", + [16167] = "Bony Construct", + [16168] = "Stoneskin Gargoyle", + [16172] = "Damaged Necrotic Shard", + [16182] = "Crystal Zapper", + [16184] = "Nerubian Overseer", + [16188] = "[UNUSED] Buttress Channeler", + [16193] = "Skeletal Smith", + [16194] = "Unholy Axe", + [16211] = "Naxxramas Combat Dummy", + [16212] = "Dispatch Commander Metz", + [16214] = "Necropolis Controller", + [16215] = "Unholy Staff", + [16216] = "Unholy Swords", + [16218] = "Tesla Coil", + [16225] = "Pack Mule", + [16226] = "Guard Didier", + [16227] = "Bragok", + [16228] = "Argent Dawn Infantry", + [16229] = "Injured Argent Dawn Infantry", + [16230] = "Cultist Engineer", + [16232] = "Caravan Mule", + [16233] = "Plaguewing Slug", + [16234] = "Flesh Ripper", + [16235] = "Plague Flesh Tentacle", + [16236] = "Eye Stalk", + [16241] = "Argent Recruiter", + [16243] = "Plague Slime", + [16244] = "Infectious Ghoul", + [16254] = "Field Marshal Chambers", + [16255] = "Argent Scout", + [16256] = "Jessica Chambers", + [16281] = "Keeper of the Rolls", + [16283] = "Packmaster Stonebruiser", + [16284] = "Argent Medic", + [16285] = "Argent Emissary", + [16286] = "Spore", + [16290] = "Fallout Slime", + [16297] = "Mutated Grub", + [16298] = "Spectral Soldier", + [16299] = "Skeletal Shocktrooper", + [16306] = "Scourge Invasion Minion, spawner, Ghost/Ghoul", + [16336] = "Scourge Invasion Minion, spawner, Ghost/Skeleton", + [16338] = "Scourge Invasion Minion, spawner, Ghoul/Skeleton", + [16356] = "Scourge Invasion Minion, finder", + [16359] = "Argent Messenger", + [16360] = "Zombie Chow", + [16361] = "Commander Thomas Helleran", + [16363] = "Grobbulus Cloud", + [16365] = "Master Craftsman Omarion", + [16368] = "Necropolis Acolyte", + [16369] = "Polymorphed Chicken", + [16371] = "Polymorphed Pig", + [16372] = "Polymorphed Sheep", + [16373] = "Polymorphed Rat", + [16374] = "Polymorphed Cockroach", + [16375] = "Sewage Slime", + [16376] = "Craftsman Wilhelm", + [16377] = "Polymorphed Turtle", + [16378] = "Argent Sentry", + [16379] = "Spirit of the Damned", + [16380] = "Bone Witch", + [16381] = "Archmage Tarsis Kir-Moldir", + [16382] = "Patchwork Terror", + [16383] = "Flameshocker", + [16384] = "Argent Dawn Initiate", + [16385] = "Lightning Totem", + [16386] = "Necropolis Relay", + [16387] = "Atiesh", + [16390] = "Deathchill Servant", + [16392] = "Captain Armando Ossex", + [16394] = "Pallid Horror", + [16395] = "Argent Dawn Paladin", + [16396] = "Stormwind Elite Guard", + [16398] = "Necropolis Proxy", + [16399] = "Bloodsail Traitor", + [16400] = "Toxic Tunnel", + [16401] = "Necropolis", + [16416] = "Bronn Fitzwrench", + [16417] = "Rumsen Fizzlebrack", + [16418] = "Mupsi Shacklefridd", + [16419] = "Ghost of Naxxramas", + [16420] = "Portal of Shadows", + [16421] = "Necropolis health", + [16422] = "Skeletal Soldier", + [16423] = "Spectral Apparition", + [16427] = "Soldier of the Frozen Wastes", + [16428] = "Unstoppable Abomination", + [16429] = "Soul Weaver", + [16430] = "Ashbringer Trigger", + [16431] = "Cracked Necrotic Crystal", + [16432] = "Undercity Elite Guardian", + [16433] = "Argent Dawn Crusader", + [16434] = "Argent Dawn Champion", + [16435] = "Argent Dawn Cleric", + [16436] = "Argent Dawn Priest", + [16437] = "Spectral Spirit", + [16438] = "Skeletal Trooper", + [16439] = "Fairbanks Transformed", + [16440] = "Highlord Mograine Transform", + [16441] = "Guardian of Icecrown", + [16445] = "Terky", + [16446] = "Plagued Gargoyle", + [16447] = "Plagued Ghoul", + [16448] = "Plagued Deathhound", + [16449] = "Spirit of Naxxramas", + [16450] = "She number one", + [16451] = "Deathknight Vindicator", + [16452] = "Necro Knight Guardian", + [16453] = "Necro Stalker", + [16454] = "She number two", + [16455] = "She number three", + [16456] = "Poley", + [16458] = "Innkeeper Faralia", + [16474] = "Blizzard", + [16478] = "Lieutenant Orrin", + [16479] = "Polymorph Clone", + [16484] = "Lieutenant Nevell", + [16486] = "Web Wrap", + [16490] = "Lieutenant Lisande", + [16493] = "Lieutenant Dagel", + [16494] = "Lieutenant Rukag", + [16495] = "Lieutenant Beitha", + [16505] = "Naxxramas Follower", + [16506] = "Naxxramas Worshipper", + [16508] = "Argent Horse", + [16509] = "Argent Warhorse", + [16510] = "Argent Charger", + [16511] = "Argent Mount", + [16512] = "Argent Deathsteed", + [16513] = "Argent Deathcharger", + [16531] = "Faint Necrotic Crystal", + [16536] = "test: saved world state", + [16543] = "Garon Hutchins", + [16547] = "Speedy", + [16548] = "Mr. Wiggles", + [16549] = "Whiskers the Rat", + [16573] = "Crypt Guard", + [16592] = "Midsummer Bonfire", + [16604] = "Blackwing Spell Marker", + [16606] = "Midsummer Bonfire Despawner", + [16609] = "Giant Claw Tentacle Test", + [16697] = "Void Zone", + [16698] = "Corpse Scarab", + [16701] = "Spirit of Summer", + [16775] = "Spirit of Mograine", + [16776] = "Spirit of Blaumeux", + [16777] = "Spirit of Zeliek", + [16778] = "Spirit of Korth\'azz", + [16779] = "Polymorphed Cow", + [16781] = "Midsummer Celebrant", + [16783] = "Plague Slime (Blue)", + [16784] = "Plague Slime (Red)", + [16785] = "Plague Slime (Green)", + [16786] = "Argent Quartermaster", + [16787] = "Argent Outfitter", + [16788] = "Festival Flamekeeper", + [16803] = "Deathknight Understudy", + [16817] = "Festival Loremaster", + [16818] = "Festival Talespinner", + [16861] = "Death Lord", + [16889] = "Stormwind Celebrant", + [16890] = "Ironforge Celebrant", + [16891] = "Yuree", + [16892] = "Darnassus Celebrant", + [16893] = "Orgrimmar Celebrant", + [16894] = "Thunder Bluff Celebrant", + [16895] = "Undercity Celebrant", + [16979] = "Midsummer Merchant", + [16980] = "The Lich King", + [16981] = "Plagued Guardian", + [16982] = "Plagued Construct", + [16983] = "Plagued Champion", + [16984] = "Plagued Warrior", + [16985] = "Midsummer Merchant Horde Costume", + [16986] = "Midsummer Merchant Alliance Costume", + [16987] = "Festival Flamekeeper Costume: Tauren", + [16988] = "Festival Flamekeeper Costume: Human", + [16989] = "Festival Flamekeeper Costume: Troll", + [16990] = "Festival Flamekeeper Costume: Dwarf", + [16995] = "Mouth of Kel\'Thuzad", + [16998] = "Mr. Bigglesworth", + [16999] = "Johnny McWeaksauce", + [17003] = "Cinder Elemental", + [17025] = "Sapphiron\'s Wing buffet", + [17031] = "Varel Redrock", + [17032] = "Varl Stonebleeder", + [17038] = "Stormwind Firebreather", + [17041] = "Orgrimmar Fireeater", + [17048] = "Ironforge Firebreather", + [17049] = "Darnassus Firebreather", + [17050] = "Thunder Bluff Fireeater", + [17051] = "Undercity Fireeater", + [17055] = "Maexxna Spiderling", + [17066] = "Ribbon Pole Debug Target", + [17068] = "Chief Expeditionary Requisitioner Enkles", + [17069] = "Emmisary Whitebeard", + [17070] = "Apothecary Quinard", + [17072] = "Emmisary Gormok", + [17074] = "Cenarion Scout", + [17075] = "Sandworm", + [17078] = "Jimmy McWeaksauce", + [17079] = "General Kirika", + [17080] = "Marshal Bluewall", + [17081] = "Scout Bloodfist", + [17082] = "Rifleman Torrig", + [17090] = "Silithus Dust Turnin Quest Doodad", + [17163] = "Worm Target (DND)", + [17209] = "William Kielar", + [17231] = "Garden Gas", + [17239] = "[PH] Plaguelands Herald", + [17249] = "Landro", + [17254] = "White Tiger Cub", + [17255] = "Hippogryph Hatchling", + [17258] = "Purple Ogre Costume", + [17266] = "Riding Turtle", + [17284] = "Lottery Commissioner [DND]", + [17286] = "Invisible Man", + [17293] = "Plague Wave", + [17313] = "Unkillable Test Dummy Spammer", + [17415] = "Lordaeron Mage", + [17466] = "Lordaeron Spirit", + [17598] = "Renn\'az", + [17635] = "Lordaeron Commander", + [17647] = "Lordaeron Soldier", + [17660] = "Skeletal Gryphon", + [17685] = "Unkillable Test Dummy 60 No Armor", + [17688] = "Crown Guard Horde Capture Quest Doodad", + [17689] = "Crown Guard Capture Quest Doodad", + [17690] = "Eastwall Capture Quest Doodad", + [17691] = "Eastwall Horde Capture Quest Doodad", + [17696] = "Northpass Capture Quest Doodad", + [17697] = "Northpass Horde Capture Quest Doodad", + [17698] = "Plaguewood Capture Quest Doodad", + [17699] = "Plaguewood Horde Capture Quest Doodad", + [17719] = "Ironforge Gryphon Rider", + [17720] = "Orgrimmar Wyvern Rider", + [17765] = "Alliance Silithyst Sentinel", + [17766] = "Horde Silithyst Sentinel", + [17794] = "Alliance Tower Buffer", + [17795] = "Horde Tower Buffer", + [17804] = "Squire Rowe", + [17869] = "Silithus Spice Sandworm Mortar Target", + [17995] = "Lordaeron Veteran", + [17996] = "Lordaeron Fighter", + [18039] = "Spirit of Victory", + [18078] = "The Evil Rabbit", + [18153] = "Spirit Healer (DND)", + [18199] = "Silithus Dust Turnin Quest Doodad Horde", + [21000] = "Ragnaros Submerged Visual", + [21010] = "AQ War Cenarion Hold Wave Trigger", +} + +-- Source: https://raw.githubusercontent.com/shagu/pfQuest/master/db/units.lua +RelationshipsQuestAndItemBrowserData["units"]["data"] = { + [1] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "63", + }, + [2] = { + ["coords"] = { + [1] = { 46.2, 9.3, 14, 25 }, + [2] = { 51.8, 84.7, 1637, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "63", + }, + [3] = { + ["coords"] = { + [1] = { 23.9, 39.3, 10, 300 }, + [2] = { 25.6, 39.1, 10, 300 }, + [3] = { 23, 39, 10, 300 }, + [4] = { 24.9, 38.4, 10, 300 }, + [5] = { 21.9, 38.4, 10, 300 }, + [6] = { 23.9, 38, 10, 300 }, + [7] = { 25.3, 37.7, 10, 300 }, + [8] = { 21.4, 37.2, 10, 300 }, + [9] = { 22.2, 37.1, 10, 300 }, + [10] = { 25.4, 36, 10, 300 }, + [11] = { 21.7, 35.8, 10, 300 }, + [12] = { 25.8, 34.5, 10, 300 }, + [13] = { 21.9, 34.3, 10, 300 }, + [14] = { 25.8, 33.4, 10, 300 }, + [15] = { 22, 33, 10, 300 }, + }, + ["lvl"] = "24-25", + }, + [6] = { + ["coords"] = { + [1] = { 50.5, 37.6, 12, 270 }, + [2] = { 51, 37.6, 12, 270 }, + [3] = { 51.3, 37.4, 12, 270 }, + [4] = { 50.7, 37.3, 12, 270 }, + [5] = { 51.4, 37, 12, 270 }, + [6] = { 49.2, 37, 12, 270 }, + [7] = { 51.7, 37, 12, 270 }, + [8] = { 47.6, 36.9, 12, 270 }, + [9] = { 48.1, 36.9, 12, 270 }, + [10] = { 48.4, 36.6, 12, 270 }, + [11] = { 49.2, 36.5, 12, 270 }, + [12] = { 51.3, 36.5, 12, 270 }, + [13] = { 47.6, 36.4, 12, 270 }, + [14] = { 49, 36.3, 12, 270 }, + [15] = { 47.4, 36.3, 12, 270 }, + [16] = { 49.9, 36.3, 12, 270 }, + [17] = { 47.9, 36.2, 12, 270 }, + [18] = { 48.5, 36.1, 12, 270 }, + [19] = { 51.2, 36.1, 12, 270 }, + [20] = { 49.5, 36, 12, 270 }, + [21] = { 47.2, 36, 12, 270 }, + [22] = { 47.6, 35.9, 12, 270 }, + [23] = { 49.3, 35.8, 12, 270 }, + [24] = { 49.7, 35.8, 12, 270 }, + [25] = { 47.6, 35.7, 12, 270 }, + [26] = { 51.5, 35.7, 12, 270 }, + [27] = { 46.9, 35.7, 12, 270 }, + [28] = { 50.1, 35.5, 12, 270 }, + [29] = { 48, 35.4, 12, 270 }, + [30] = { 49.5, 35.3, 12, 270 }, + [31] = { 49.8, 35.2, 12, 270 }, + [32] = { 48.9, 35.1, 12, 270 }, + [33] = { 47.5, 35, 12, 270 }, + }, + ["lvl"] = "1-2", + }, + [19] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "20", + }, + [29] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [30] = { + ["coords"] = { + [1] = { 39.5, 78.7, 12, 270 }, + [2] = { 39, 76.8, 12, 270 }, + [3] = { 43.9, 76.7, 12, 270 }, + [4] = { 40.8, 75.1, 12, 270 }, + [5] = { 33.5, 73.8, 12, 270 }, + [6] = { 38.8, 73.3, 12, 270 }, + [7] = { 38.2, 72.8, 12, 270 }, + [8] = { 41.9, 72.2, 12, 270 }, + [9] = { 44.7, 71, 12, 270 }, + [10] = { 38.1, 69.7, 12, 270 }, + [11] = { 35.8, 69.1, 12, 270 }, + [12] = { 31.9, 68.5, 12, 270 }, + [13] = { 28.5, 66.7, 12, 270 }, + [14] = { 36, 62.7, 12, 270 }, + [15] = { 38.5, 62.4, 12, 270 }, + [16] = { 31.4, 57, 12, 270 }, + [17] = { 36.5, 55.9, 12, 270 }, + }, + ["lvl"] = "5-6", + }, + [31] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [36] = { + ["coords"] = { + [1] = { 46.6, 69.1, 40, 300 }, + [2] = { 47.1, 67.7, 40, 300 }, + [3] = { 46.8, 66.9, 40, 300 }, + [4] = { 47.4, 66.5, 40, 300 }, + [5] = { 46.6, 65.9, 40, 300 }, + [6] = { 34.4, 47.5, 40, 300 }, + [7] = { 35.4, 47.2, 40, 300 }, + [8] = { 36.2, 46.8, 40, 300 }, + [9] = { 33.6, 46.7, 40, 300 }, + [10] = { 34.5, 46.1, 40, 300 }, + [11] = { 35.8, 45.9, 40, 300 }, + [12] = { 32.9, 37.3, 40, 300 }, + [13] = { 32.5, 36.4, 40, 300 }, + [14] = { 33.4, 36.2, 40, 300 }, + [15] = { 57.1, 36.1, 40, 300 }, + [16] = { 56.3, 36, 40, 300 }, + [17] = { 56.8, 35.7, 40, 300 }, + [18] = { 32.9, 35.5, 40, 300 }, + [19] = { 57.3, 35.4, 40, 300 }, + [20] = { 56.4, 35, 40, 300 }, + [21] = { 56.8, 34.3, 40, 300 }, + [22] = { 57.2, 34, 40, 300 }, + [23] = { 50.3, 34, 40, 300 }, + [24] = { 48.9, 33.7, 40, 300 }, + [25] = { 48, 33.4, 40, 300 }, + [26] = { 49.6, 32.9, 40, 300 }, + [27] = { 48.7, 32.3, 40, 300 }, + }, + ["lvl"] = "11-12", + }, + [38] = { + ["coords"] = { + [1] = { 54, 52.2, 12, 270 }, + [2] = { 54.9, 52, 12, 270 }, + [3] = { 52.6, 51.9, 12, 270 }, + [4] = { 52.4, 51.7, 12, 270 }, + [5] = { 54.4, 51.5, 12, 270 }, + [6] = { 51.8, 51.5, 12, 270 }, + [7] = { 53.1, 51.4, 12, 270 }, + [8] = { 55.5, 51.2, 12, 270 }, + [9] = { 52.2, 51, 12, 270 }, + [10] = { 51.3, 50.7, 12, 270 }, + [11] = { 54, 50.6, 12, 270 }, + [12] = { 53.2, 50.6, 12, 270 }, + [13] = { 54.7, 50.1, 12, 270 }, + [14] = { 52.2, 50.1, 12, 270 }, + [15] = { 56.4, 49.8, 12, 270 }, + [16] = { 54.4, 49.8, 12, 270 }, + [17] = { 53.8, 49.7, 12, 270 }, + [18] = { 53.3, 49.7, 12, 270 }, + [19] = { 55.7, 49.6, 12, 270 }, + [20] = { 52.3, 49.5, 12, 270 }, + [21] = { 52.9, 49.4, 12, 270 }, + [22] = { 51, 49.4, 12, 270 }, + [23] = { 52.9, 49.3, 12, 270 }, + [24] = { 51.4, 49.3, 12, 270 }, + [25] = { 53.8, 49.2, 12, 270 }, + [26] = { 53.9, 49.2, 12, 270 }, + [27] = { 55.1, 49.2, 12, 270 }, + [28] = { 53.8, 49.1, 12, 270 }, + [29] = { 55.1, 49, 12, 270 }, + [30] = { 54.4, 48.9, 12, 270 }, + [31] = { 52.6, 48.7, 12, 270 }, + [32] = { 54.8, 48.5, 12, 270 }, + [33] = { 52, 48.4, 12, 270 }, + [34] = { 53.5, 48.3, 12, 270 }, + [35] = { 53.1, 48.2, 12, 270 }, + [36] = { 57.4, 48.1, 12, 270 }, + [37] = { 56, 48, 12, 270 }, + [38] = { 55.1, 47.9, 12, 270 }, + [39] = { 54.1, 47.8, 12, 270 }, + [40] = { 53.6, 47.7, 12, 270 }, + [41] = { 51.8, 47.5, 12, 270 }, + [42] = { 52.4, 47.3, 12, 270 }, + [43] = { 52.9, 47.3, 12, 270 }, + [44] = { 55.8, 47.3, 12, 270 }, + [45] = { 53, 47.2, 12, 270 }, + [46] = { 54.6, 47, 12, 270 }, + [47] = { 52.8, 47, 12, 270 }, + [48] = { 55.3, 47, 12, 270 }, + [49] = { 54, 46.9, 12, 270 }, + [50] = { 53.4, 46.1, 12, 270 }, + [51] = { 54.7, 46, 12, 270 }, + [52] = { 55.5, 45.8, 12, 270 }, + [53] = { 53.2, 45.6, 12, 270 }, + [54] = { 56, 45.1, 12, 270 }, + [55] = { 54, 44.9, 12, 270 }, + [56] = { 54, 44.8, 12, 270 }, + [57] = { 54.9, 44.2, 12, 270 }, + [58] = { 56.7, 44, 12, 270 }, + [59] = { 55.5, 44, 12, 270 }, + [60] = { 56.4, 43.9, 12, 270 }, + [61] = { 56.6, 43.7, 12, 270 }, + [62] = { 55, 43.1, 12, 270 }, + [63] = { 54.6, 42.9, 12, 270 }, + [64] = { 54.5, 42.8, 12, 270 }, + [65] = { 57.1, 42.5, 12, 270 }, + [66] = { 55.2, 42.2, 12, 270 }, + [67] = { 55.9, 42.2, 12, 270 }, + [68] = { 54.7, 42.1, 12, 270 }, + [69] = { 55.5, 42.1, 12, 270 }, + [70] = { 54.8, 41.7, 12, 270 }, + [71] = { 54.6, 41.6, 12, 270 }, + [72] = { 55.7, 41, 12, 270 }, + [73] = { 57.1, 41, 12, 270 }, + [74] = { 55.5, 40.9, 12, 270 }, + [75] = { 56.1, 40.5, 12, 270 }, + [76] = { 55, 40.2, 12, 270 }, + }, + ["lvl"] = "3-4", + }, + [40] = { + ["coords"] = { + [1] = { 40.8, 81.4, 12, 270 }, + [2] = { 41.9, 81.4, 12, 270 }, + [3] = { 39.9, 81, 12, 270 }, + [4] = { 41, 81, 12, 270 }, + [5] = { 40.9, 80.7, 12, 270 }, + [6] = { 40.9, 80.4, 12, 270 }, + [7] = { 41.2, 80.4, 12, 270 }, + [8] = { 41.1, 80.3, 12, 270 }, + [9] = { 40.5, 80.2, 12, 270 }, + [10] = { 39.9, 80.1, 12, 270 }, + [11] = { 41.6, 80.1, 12, 270 }, + [12] = { 41, 79.9, 12, 270 }, + [13] = { 41.4, 79.9, 12, 270 }, + [14] = { 40.2, 79.6, 12, 270 }, + [15] = { 41.3, 79.2, 12, 270 }, + [16] = { 39.8, 79.1, 12, 270 }, + [17] = { 41.2, 78.7, 12, 270 }, + [18] = { 41.7, 78.7, 12, 270 }, + [19] = { 39.9, 78.6, 12, 270 }, + [20] = { 40.3, 78.2, 12, 270 }, + [21] = { 41.5, 78, 12, 270 }, + [22] = { 40.3, 77.7, 12, 270 }, + [23] = { 40.8, 77.4, 12, 270 }, + [24] = { 63.7, 61.1, 12, 270 }, + [25] = { 62.9, 60, 12, 270 }, + [26] = { 64.8, 59.9, 12, 270 }, + [27] = { 58, 59.8, 12, 270 }, + [28] = { 60.9, 59.7, 12, 270 }, + [29] = { 62, 58.3, 12, 270 }, + [30] = { 63.8, 58.2, 12, 270 }, + [31] = { 64.5, 57.4, 12, 270 }, + [32] = { 60.1, 57.4, 12, 270 }, + [33] = { 64.6, 56.9, 12, 270 }, + [34] = { 64.3, 56.8, 12, 270 }, + [35] = { 63.1, 56.6, 12, 270 }, + [36] = { 64.8, 56.4, 12, 270 }, + [37] = { 61.1, 56.4, 12, 270 }, + [38] = { 63.6, 55.4, 12, 270 }, + [39] = { 62, 55.2, 12, 270 }, + [40] = { 62.9, 53.9, 12, 270 }, + [41] = { 61.5, 53.3, 12, 270 }, + [42] = { 60.7, 52.8, 12, 270 }, + [43] = { 61.5, 52, 12, 270 }, + [44] = { 61.4, 51.5, 12, 270 }, + [45] = { 61.2, 50.9, 12, 270 }, + [46] = { 60.6, 50.8, 12, 270 }, + [47] = { 61.5, 50.2, 12, 270 }, + [48] = { 61.1, 49.9, 12, 270 }, + [49] = { 61.2, 49.6, 12, 270 }, + [50] = { 60.3, 49.6, 12, 270 }, + [51] = { 60.8, 49.5, 12, 270 }, + [52] = { 61, 49.2, 12, 270 }, + }, + ["lvl"] = "6-7", + }, + [43] = { + ["coords"] = { + [1] = { 60, 48.7, 12, 270 }, + [2] = { 62, 47.9, 12, 270 }, + [3] = { 60.2, 47.6, 12, 270 }, + [4] = { 61.7, 47.5, 12, 270 }, + [5] = { 61.1, 47.3, 12, 270 }, + [6] = { 61.9, 47.1, 12, 270 }, + [7] = { 61.6, 46.9, 12, 270 }, + [8] = { 60.5, 46.9, 12, 270 }, + }, + ["lvl"] = "8-9", + }, + [46] = { + ["coords"] = { + [1] = { 71.1, 12.6, 10, 270 }, + [2] = { 62.2, 11.2, 10, 300 }, + [3] = { 62.2, 11.1, 10, 270 }, + [4] = { 58.6, 9.8, 10, 270 }, + [5] = { 55.4, 7.7, 10, 270 }, + [6] = { 52.3, 86.7, 12, 270 }, + [7] = { 75.6, 86.6, 12, 270 }, + [8] = { 76.3, 86.5, 12, 270 }, + [9] = { 77.8, 86.1, 12, 270 }, + [10] = { 77.6, 85.9, 12, 270 }, + [11] = { 76.8, 85.9, 12, 270 }, + [12] = { 75.9, 85.9, 12, 270 }, + [13] = { 76.6, 85.6, 12, 270 }, + [14] = { 68.6, 85.5, 12, 300 }, + [15] = { 68.6, 85.4, 12, 270 }, + [16] = { 74.5, 85.2, 12, 270 }, + [17] = { 56.4, 85.2, 12, 270 }, + [18] = { 77.2, 85.2, 12, 270 }, + [19] = { 76.2, 84.9, 12, 270 }, + [20] = { 65.8, 84.4, 12, 270 }, + [21] = { 57, 84.2, 12, 270 }, + [22] = { 70, 84.1, 12, 270 }, + [23] = { 67.8, 83.8, 12, 270 }, + [24] = { 64.7, 83, 12, 270 }, + [25] = { 63.4, 82.8, 12, 270 }, + [26] = { 76.7, 82.8, 12, 270 }, + [27] = { 59.3, 82.4, 12, 270 }, + [28] = { 61.2, 82.4, 12, 270 }, + [29] = { 61.9, 80.6, 12, 270 }, + [30] = { 79.3, 58.1, 12, 270 }, + [31] = { 78.3, 58, 12, 270 }, + [32] = { 79.3, 57.2, 12, 270 }, + [33] = { 79.3, 56.9, 12, 270 }, + [34] = { 78.3, 56.7, 12, 270 }, + [35] = { 79.4, 56.4, 12, 270 }, + [36] = { 78.5, 56.2, 12, 270 }, + [37] = { 78.8, 55.7, 12, 270 }, + [38] = { 79.3, 55.2, 12, 270 }, + [39] = { 79.6, 55.2, 12, 270 }, + [40] = { 78.9, 55, 12, 270 }, + [41] = { 79.2, 54.2, 12, 270 }, + [42] = { 79.3, 54.1, 12, 270 }, + [43] = { 79.5, 50.7, 12, 270 }, + [44] = { 79.5, 48.2, 12, 270 }, + [45] = { 79.4, 48, 12, 270 }, + [46] = { 79.4, 47.7, 12, 270 }, + [47] = { 79.2, 47.4, 12, 270 }, + [48] = { 79.5, 47.2, 12, 270 }, + [49] = { 79.5, 46.3, 12, 270 }, + [50] = { 80, 46.3, 12, 270 }, + [51] = { 79.1, 46, 12, 270 }, + [52] = { 79.5, 45.4, 12, 270 }, + [53] = { 79.3, 45.2, 12, 270 }, + [54] = { 80.3, 45.2, 12, 270 }, + [55] = { 79.2, 45.2, 12, 270 }, + [56] = { 77.9, 45.1, 12, 270 }, + [57] = { 78.6, 44.9, 12, 270 }, + [58] = { 78.2, 44.9, 12, 270 }, + [59] = { 78.8, 44.5, 12, 270 }, + [60] = { 77.9, 44.4, 12, 270 }, + [61] = { 77.7, 44.3, 12, 270 }, + [62] = { 77.3, 44.1, 12, 270 }, + [63] = { 79.5, 43.5, 12, 270 }, + [64] = { 78.6, 43.2, 12, 270 }, + [65] = { 78.6, 42.1, 12, 270 }, + }, + ["lvl"] = "9-10", + }, + [48] = { + ["coords"] = { + [1] = { 80.8, 73.9, 10, 300 }, + [2] = { 77.4, 73.4, 10, 300 }, + [3] = { 79.7, 73, 10, 300 }, + [4] = { 76.9, 72.2, 10, 300 }, + [5] = { 80.1, 72.1, 10, 300 }, + [6] = { 77.8, 71.8, 10, 300 }, + [7] = { 78.7, 70.8, 10, 300 }, + [8] = { 80.7, 70.3, 10, 300 }, + [9] = { 77, 70.1, 10, 300 }, + [10] = { 79, 69.7, 10, 300 }, + [11] = { 81, 69.2, 10, 300 }, + [12] = { 81.8, 68.8, 10, 300 }, + [13] = { 79.7, 68.5, 10, 300 }, + [14] = { 80.6, 66.8, 10, 300 }, + [15] = { 78.3, 66.7, 10, 300 }, + }, + ["lvl"] = "21-22", + }, + [49] = { + ["coords"] = {}, + ["lvl"] = "20", + }, + [54] = { + ["coords"] = { + [1] = { 41.5, 65.9, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [55] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "20", + }, + [60] = { + ["coords"] = { + [1] = { 64.6, 56.7, 12, 666 }, + }, + ["lvl"] = "8", + }, + [61] = { + ["coords"] = { + [1] = { 50.7, 83.1, 12, 5400 }, + [2] = { 89.4, 79.7, 12, 5400 }, + [3] = { 52.5, 58.8, 12, 5400 }, + [4] = { 29.5, 58.1, 12, 5400 }, + }, + ["lvl"] = "11", + ["rnk"] = "4", + }, + [62] = { + ["coords"] = {}, + ["lvl"] = "4", + }, + [65] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "1-2", + }, + [66] = { + ["coords"] = { + [1] = { 41.8, 67.2, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [67] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [68] = { + ["coords"] = { + [1] = { 32.1, 49.9, 12, 300 }, + [2] = { 32.5, 49.5, 12, 300 }, + [3] = { 71.3, 91.1, 1519, 300 }, + [4] = { 72.3, 90, 1519, 300 }, + [5] = { 70, 89.2, 1519, 300 }, + [6] = { 71.5, 87.4, 1519, 300 }, + [7] = { 67.8, 81.4, 1519, 300 }, + [8] = { 64.2, 77.1, 1519, 300 }, + [9] = { 62.8, 74.9, 1519, 300 }, + [10] = { 64.2, 73.6, 1519, 300 }, + [11] = { 59.9, 68.8, 1519, 300 }, + [12] = { 55.1, 68.1, 1519, 300 }, + [13] = { 60.6, 68, 1519, 300 }, + [14] = { 55.4, 67.9, 1519, 300 }, + [15] = { 62.5, 64.2, 1519, 300 }, + [16] = { 48.8, 62, 1519, 300 }, + [17] = { 62.4, 61.8, 1519, 300 }, + [18] = { 42.5, 60.1, 1519, 300 }, + [19] = { 43, 59.7, 1519, 300 }, + [20] = { 38.5, 58.5, 1519, 300 }, + [21] = { 38.4, 58.2, 1519, 300 }, + [22] = { 59.7, 45.6, 1519, 300 }, + [23] = { 59.9, 45.2, 1519, 300 }, + [24] = { 55.4, 44.7, 1519, 300 }, + [25] = { 55.2, 44.3, 1519, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [69] = { + ["coords"] = { + [1] = { 49.5, 49.3, 12, 270 }, + [2] = { 49.3, 47.5, 12, 270 }, + [3] = { 49, 47, 12, 270 }, + [4] = { 49.9, 46.6, 12, 270 }, + [5] = { 49.2, 45.4, 12, 270 }, + [6] = { 51.4, 45.2, 12, 270 }, + [7] = { 50.5, 45.1, 12, 270 }, + [8] = { 51, 44.4, 12, 270 }, + [9] = { 50.8, 44.1, 12, 270 }, + [10] = { 51.5, 43.6, 12, 270 }, + [11] = { 51.9, 42.9, 12, 270 }, + [12] = { 52.4, 42.1, 12, 270 }, + [13] = { 51.5, 42.1, 12, 270 }, + [14] = { 51.9, 41.5, 12, 270 }, + [15] = { 51.2, 40.4, 12, 270 }, + [16] = { 45.9, 40.3, 12, 270 }, + [17] = { 52.9, 39.9, 12, 270 }, + [18] = { 46.8, 39.4, 12, 270 }, + [19] = { 52.5, 39.1, 12, 270 }, + [20] = { 53.1, 38.7, 12, 270 }, + [21] = { 52.7, 38.4, 12, 270 }, + [22] = { 49.5, 37.9, 12, 270 }, + [23] = { 50.2, 37.2, 12, 270 }, + [24] = { 48.1, 37.2, 12, 270 }, + [25] = { 46.2, 36.7, 12, 270 }, + [26] = { 46, 36.4, 12, 270 }, + [27] = { 50.9, 35.7, 12, 270 }, + [28] = { 46.1, 35.5, 12, 270 }, + [29] = { 45.2, 35.2, 12, 270 }, + [30] = { 52.7, 35.1, 12, 270 }, + [31] = { 46.7, 35, 12, 270 }, + [32] = { 45.7, 35, 12, 270 }, + [33] = { 48.1, 34.9, 12, 270 }, + [34] = { 46.3, 34.4, 12, 270 }, + [35] = { 47.1, 34.3, 12, 270 }, + [36] = { 48.5, 33.7, 12, 270 }, + }, + ["lvl"] = "2", + }, + [70] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "1-2", + }, + [71] = { + ["coords"] = {}, + ["lvl"] = "5-7", + }, + [72] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [73] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "40", + }, + [74] = { + ["coords"] = { + [1] = { 41.4, 65.6, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [75] = { + ["coords"] = {}, + ["lvl"] = "12", + }, + [78] = { + ["coords"] = { + [1] = { 47.2, 41.9, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [79] = { + ["coords"] = { + [1] = { 40.9, 77.5, 12, 3600 }, + }, + ["lvl"] = "10", + ["rnk"] = "4", + }, + [80] = { + ["coords"] = { + [1] = { 47.8, 31.6, 12, 270 }, + [2] = { 47.8, 31.1, 12, 270 }, + [3] = { 47.9, 30.9, 12, 270 }, + [4] = { 48.1, 30.3, 12, 270 }, + [5] = { 47.5, 30.3, 12, 270 }, + [6] = { 48.4, 30.3, 12, 270 }, + [7] = { 47.4, 30.1, 12, 270 }, + [8] = { 48.4, 29.9, 12, 270 }, + [9] = { 48.4, 29.3, 12, 270 }, + [10] = { 48.6, 29.1, 12, 270 }, + [11] = { 49.2, 29, 12, 270 }, + [12] = { 48.3, 28.9, 12, 270 }, + [13] = { 48.2, 28.6, 12, 270 }, + [14] = { 49.3, 28.3, 12, 270 }, + [15] = { 48.5, 28, 12, 270 }, + [16] = { 49.2, 27.8, 12, 270 }, + [17] = { 48.6, 27.4, 12, 270 }, + [18] = { 50.1, 27, 12, 270 }, + [19] = { 50.5, 26.8, 12, 270 }, + [20] = { 50.3, 26.8, 12, 270 }, + [21] = { 48.5, 26.6, 12, 270 }, + [22] = { 48.9, 26.3, 12, 270 }, + [23] = { 50.2, 26.3, 12, 270 }, + [24] = { 49.5, 25.8, 12, 270 }, + [25] = { 50, 25.5, 12, 270 }, + }, + ["lvl"] = "3-4", + }, + [81] = { + ["coords"] = {}, + ["lvl"] = "5", + }, + [82] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "7", + }, + [87] = { + ["coords"] = {}, + ["lvl"] = "2-4", + }, + [89] = { + ["coords"] = {}, + ["lvl"] = "50", + }, + [90] = { + ["coords"] = {}, + ["lvl"] = "40", + }, + [92] = { + ["coords"] = { + [1] = { 42.8, 88.2, 3, 300 }, + [2] = { 43, 86.3, 3, 300 }, + [3] = { 44.2, 85.8, 3, 300 }, + [4] = { 43, 84.2, 3, 300 }, + [5] = { 44.3, 84.1, 3, 300 }, + [6] = { 41.8, 83.7, 3, 300 }, + [7] = { 43, 82.1, 3, 300 }, + [8] = { 41.6, 82, 3, 300 }, + [9] = { 44.4, 81.9, 3, 300 }, + [10] = { 45.6, 81.1, 3, 300 }, + [11] = { 44.4, 80.6, 3, 300 }, + [12] = { 41, 79.3, 3, 300 }, + [13] = { 42.6, 78.4, 3, 300 }, + [14] = { 40.4, 78.2, 3, 300 }, + [15] = { 38.9, 77.7, 3, 300 }, + [16] = { 46.1, 77.6, 3, 300 }, + [17] = { 41.7, 77.1, 3, 300 }, + [18] = { 37.4, 75.9, 3, 300 }, + [19] = { 40.4, 75.8, 3, 300 }, + [20] = { 36.1, 75.7, 3, 300 }, + [21] = { 35.1, 75.4, 3, 300 }, + [22] = { 36.6, 74.1, 3, 300 }, + [23] = { 38.5, 73.5, 3, 300 }, + [24] = { 13.9, 36.3, 3, 300 }, + [25] = { 16.3, 35.9, 3, 300 }, + [26] = { 15, 35.9, 3, 300 }, + [27] = { 12.2, 34.2, 3, 300 }, + [28] = { 15, 33.9, 3, 300 }, + [29] = { 13.6, 33.7, 3, 300 }, + [30] = { 98.2, 16.4, 46, 300 }, + [31] = { 98.4, 14.8, 46, 300 }, + [32] = { 99.4, 14.4, 46, 300 }, + [33] = { 98.4, 13, 46, 300 }, + [34] = { 97.4, 12.6, 46, 300 }, + [35] = { 98.4, 11.2, 46, 300 }, + [36] = { 97.2, 11.1, 46, 300 }, + [37] = { 94.9, 7.5, 46, 300 }, + }, + ["lvl"] = "39-40", + }, + [93] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [94] = { + ["coords"] = { + [1] = { 30, 68.2, 12, 270 }, + [2] = { 31.1, 67.2, 12, 270 }, + [3] = { 36.2, 66.8, 12, 270 }, + [4] = { 30.7, 66.5, 12, 270 }, + [5] = { 35.3, 66.2, 12, 270 }, + [6] = { 36.9, 66.2, 12, 270 }, + [7] = { 36.3, 65.9, 12, 270 }, + [8] = { 30.4, 65.9, 12, 270 }, + [9] = { 32, 65.7, 12, 270 }, + [10] = { 29.5, 65.4, 12, 270 }, + [11] = { 36.1, 58.2, 12, 270 }, + [12] = { 38.4, 57.9, 12, 270 }, + [13] = { 44.6, 56.7, 12, 300 }, + [14] = { 40.8, 56.6, 12, 300 }, + [15] = { 42.8, 56.5, 12, 300 }, + [16] = { 37.3, 55.2, 12, 270 }, + [17] = { 39.9, 55.2, 12, 300 }, + [18] = { 37.5, 55.2, 12, 270 }, + [19] = { 43.8, 55.1, 12, 300 }, + [20] = { 41.9, 55.1, 12, 300 }, + [21] = { 39.1, 53.9, 12, 300 }, + [22] = { 41.8, 53.8, 12, 300 }, + [23] = { 40.9, 53.8, 12, 300 }, + [24] = { 42.8, 53.6, 12, 300 }, + [25] = { 41.5, 52.8, 12, 300 }, + [26] = { 41.8, 52.8, 12, 300 }, + [27] = { 41.7, 52.7, 12, 300 }, + [28] = { 42.6, 51.9, 12, 300 }, + [29] = { 42.9, 51.1, 12, 300 }, + [30] = { 43.8, 50.8, 12, 300 }, + }, + ["lvl"] = "5-6", + }, + [95] = { + ["coords"] = { + [1] = { 46.6, 53.4, 40, 300 }, + [2] = { 46.7, 52.5, 40, 300 }, + [3] = { 48.6, 47.8, 40, 300 }, + [4] = { 50.6, 47.3, 40, 300 }, + [5] = { 50.7, 47.2, 40, 300 }, + [6] = { 48.2, 47, 40, 300 }, + [7] = { 51.5, 46.8, 40, 300 }, + [8] = { 48.2, 46.7, 40, 300 }, + [9] = { 51.6, 46.6, 40, 300 }, + [10] = { 48.2, 46.6, 40, 300 }, + [11] = { 49.5, 46.5, 40, 300 }, + [12] = { 47.2, 46.2, 40, 300 }, + [13] = { 47.8, 45.8, 40, 300 }, + [14] = { 48.6, 45.2, 40, 300 }, + [15] = { 48.5, 45.1, 40, 300 }, + [16] = { 47.7, 43.4, 40, 300 }, + [17] = { 49.7, 42.1, 40, 300 }, + [18] = { 41.1, 41.8, 40, 300 }, + [19] = { 41.5, 41.1, 40, 300 }, + [20] = { 40.8, 40.9, 40, 300 }, + [21] = { 41.4, 40.6, 40, 300 }, + [22] = { 41.8, 40.5, 40, 300 }, + [23] = { 51.2, 40.4, 40, 300 }, + [24] = { 50.8, 40.1, 40, 300 }, + [25] = { 46.5, 39.7, 40, 300 }, + [26] = { 45.6, 39.6, 40, 300 }, + [27] = { 40.8, 39.5, 40, 300 }, + [28] = { 50.6, 39.3, 40, 300 }, + [29] = { 51.3, 39.2, 40, 300 }, + [30] = { 46.2, 39.1, 40, 300 }, + [31] = { 46.1, 39.1, 40, 300 }, + [32] = { 46, 38.2, 40, 300 }, + [33] = { 46.6, 37.8, 40, 300 }, + [34] = { 46.5, 37.6, 40, 300 }, + [35] = { 46.5, 37.4, 40, 300 }, + [36] = { 46.4, 36.9, 40, 300 }, + [37] = { 47.5, 36.6, 40, 300 }, + [38] = { 46.6, 27.5, 40, 300 }, + [39] = { 43.8, 27, 40, 300 }, + [40] = { 45.3, 26.9, 40, 300 }, + [41] = { 46, 26.9, 40, 300 }, + [42] = { 44.7, 26.3, 40, 300 }, + [43] = { 44, 25.9, 40, 300 }, + [44] = { 44.2, 25.8, 40, 300 }, + [45] = { 44.7, 25.6, 40, 300 }, + [46] = { 45.9, 25.6, 40, 300 }, + [47] = { 43.9, 25.2, 40, 300 }, + [48] = { 44.9, 25.2, 40, 300 }, + [49] = { 44.5, 24.6, 40, 300 }, + [50] = { 44.6, 24.4, 40, 300 }, + [51] = { 44.6, 24, 40, 300 }, + [52] = { 44.1, 23.3, 40, 300 }, + [53] = { 44.9, 22.7, 40, 300 }, + [54] = { 44.8, 22, 40, 300 }, + [55] = { 45.5, 21.7, 40, 300 }, + [56] = { 44.5, 21.5, 40, 300 }, + [57] = { 45.3, 21.2, 40, 300 }, + [58] = { 45.5, 21.1, 40, 300 }, + [59] = { 48.7, 20.9, 40, 300 }, + [60] = { 48.8, 20.7, 40, 300 }, + [61] = { 45.7, 20.5, 40, 300 }, + [62] = { 48.8, 20.4, 40, 300 }, + [63] = { 48.4, 20.3, 40, 300 }, + [64] = { 49.6, 20, 40, 300 }, + [65] = { 48.4, 19.9, 40, 300 }, + [66] = { 49.8, 19.7, 40, 300 }, + [67] = { 46.6, 19.6, 40, 300 }, + [68] = { 46, 19.4, 40, 300 }, + [69] = { 49.4, 19.2, 40, 300 }, + [70] = { 46, 18.9, 40, 300 }, + [71] = { 45, 18.8, 40, 300 }, + [72] = { 50.1, 18.4, 40, 300 }, + [73] = { 45.6, 18, 40, 300 }, + }, + ["lvl"] = "11-12", + }, + [97] = { + ["coords"] = { + [1] = { 24.3, 93.6, 12, 270 }, + [2] = { 26.1, 91.7, 12, 270 }, + [3] = { 26.2, 91.7, 12, 270 }, + [4] = { 25.3, 89.3, 12, 270 }, + [5] = { 30.9, 89.1, 12, 270 }, + [6] = { 25.1, 88.9, 12, 270 }, + [7] = { 27.8, 88.1, 12, 270 }, + [8] = { 28.3, 87.4, 12, 270 }, + [9] = { 26.5, 86.6, 12, 270 }, + [10] = { 27.7, 86.6, 12, 270 }, + [11] = { 27.7, 86.1, 12, 270 }, + [12] = { 30.8, 82.8, 12, 270 }, + [13] = { 31.6, 80.6, 12, 270 }, + [14] = { 68.6, 46.5, 12, 270 }, + [15] = { 67.8, 46.4, 12, 270 }, + [16] = { 68.4, 45.3, 12, 270 }, + [17] = { 68.4, 44.9, 12, 270 }, + [18] = { 66.4, 41.3, 12, 270 }, + [19] = { 66.3, 40.6, 12, 270 }, + [20] = { 68.8, 39.5, 12, 270 }, + [21] = { 66.6, 39.4, 12, 270 }, + [22] = { 68.1, 39.4, 12, 270 }, + [23] = { 65.9, 39.3, 12, 270 }, + [24] = { 70.8, 39.2, 12, 270 }, + [25] = { 69.2, 39, 12, 270 }, + [26] = { 68.7, 38.2, 12, 270 }, + [27] = { 67.4, 26, 40, 270 }, + [28] = { 67.2, 25.6, 40, 270 }, + }, + ["lvl"] = "8-9", + }, + [98] = { + ["coords"] = { + [1] = { 61.8, 77.8, 40, 300 }, + [2] = { 61, 77.8, 40, 300 }, + [3] = { 62.7, 77.7, 40, 300 }, + [4] = { 60.8, 77.6, 40, 300 }, + [5] = { 61, 77.6, 40, 300 }, + [6] = { 60.9, 77.5, 40, 300 }, + [7] = { 63.6, 77.5, 40, 300 }, + [8] = { 63.3, 77.4, 40, 300 }, + [9] = { 63, 77.3, 40, 300 }, + [10] = { 63.6, 77.2, 40, 300 }, + [11] = { 63.4, 77.2, 40, 300 }, + [12] = { 61.9, 77.1, 40, 300 }, + [13] = { 61.5, 77.1, 40, 300 }, + [14] = { 62.8, 77, 40, 300 }, + [15] = { 65.8, 76.7, 40, 300 }, + [16] = { 60.9, 76.6, 40, 300 }, + [17] = { 64.6, 76.6, 40, 300 }, + [18] = { 64.1, 76.6, 40, 300 }, + [19] = { 63.1, 76.5, 40, 300 }, + [20] = { 61.6, 76.5, 40, 300 }, + [21] = { 62.3, 76.2, 40, 300 }, + [22] = { 62.7, 75.9, 40, 300 }, + [23] = { 63.5, 75.8, 40, 300 }, + [24] = { 61.8, 75.7, 40, 300 }, + [25] = { 65.3, 75.5, 40, 300 }, + [26] = { 60.6, 75.4, 40, 300 }, + [27] = { 66.7, 75.4, 40, 300 }, + [28] = { 65.1, 75.4, 40, 300 }, + [29] = { 65.3, 75.3, 40, 300 }, + [30] = { 65.3, 75.2, 40, 300 }, + [31] = { 65.1, 75.1, 40, 300 }, + [32] = { 63.9, 75, 40, 300 }, + [33] = { 60.8, 74.5, 40, 300 }, + [34] = { 56.4, 74.5, 40, 300 }, + [35] = { 60.9, 74.5, 40, 300 }, + [36] = { 56.3, 74.4, 40, 300 }, + [37] = { 61, 74.2, 40, 300 }, + [38] = { 60.8, 74.1, 40, 300 }, + [39] = { 59.4, 74.1, 40, 300 }, + [40] = { 60.9, 74.1, 40, 300 }, + [41] = { 56.5, 74.1, 40, 300 }, + [42] = { 63.5, 73.2, 40, 300 }, + [43] = { 61.8, 73, 40, 300 }, + [44] = { 63.8, 73, 40, 300 }, + [45] = { 60.5, 73, 40, 300 }, + [46] = { 59.4, 72.8, 40, 300 }, + [47] = { 63.5, 72.8, 40, 300 }, + [48] = { 63.7, 72.7, 40, 300 }, + [49] = { 60.8, 72.6, 40, 300 }, + [50] = { 61.7, 72.2, 40, 300 }, + [51] = { 62.9, 72.1, 40, 300 }, + [52] = { 60.4, 70.9, 40, 300 }, + [53] = { 61.2, 70.4, 40, 300 }, + [54] = { 63.7, 70.2, 40, 300 }, + [55] = { 56.5, 70.1, 40, 300 }, + [56] = { 60, 69.2, 40, 300 }, + [57] = { 64.7, 69, 40, 300 }, + [58] = { 62.6, 67.8, 40, 300 }, + }, + ["lvl"] = "17-18", + }, + [99] = { + ["coords"] = { + [1] = { 30.8, 64.7, 12, 3600 }, + }, + ["lvl"] = "10", + ["rnk"] = "4", + }, + [100] = { + ["coords"] = { + [1] = { 25.4, 89.8, 12, 5400 }, + }, + ["lvl"] = "12", + ["rnk"] = "4", + }, + [102] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [103] = { + ["coords"] = { + [1] = { 57.5, 48.3, 12, 270 }, + }, + ["lvl"] = "5", + }, + [105] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [106] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [107] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [108] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [109] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [111] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "3-4", + }, + [112] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "3-4", + }, + [113] = { + ["coords"] = { + [1] = { 40.9, 91.9, 12, 270 }, + [2] = { 36.2, 91.3, 12, 270 }, + [3] = { 39.6, 90.8, 12, 270 }, + [4] = { 37.8, 90.7, 12, 270 }, + [5] = { 38.8, 90.1, 12, 270 }, + [6] = { 37.4, 89.9, 12, 270 }, + [7] = { 40.8, 89.9, 12, 270 }, + [8] = { 35.2, 89.8, 12, 270 }, + [9] = { 33.3, 89.7, 12, 270 }, + [10] = { 33.8, 89.4, 12, 270 }, + [11] = { 38.1, 89.2, 12, 270 }, + [12] = { 37, 88.6, 12, 270 }, + [13] = { 39.7, 88.5, 12, 270 }, + [14] = { 41.8, 88.2, 12, 270 }, + [15] = { 41, 88.2, 12, 270 }, + [16] = { 35.3, 87.8, 12, 270 }, + [17] = { 42.8, 86.9, 12, 270 }, + [18] = { 40.9, 86.8, 12, 270 }, + [19] = { 41.9, 86.8, 12, 270 }, + [20] = { 32, 86.6, 12, 270 }, + [21] = { 33.4, 86.6, 12, 270 }, + [22] = { 38.6, 86.2, 12, 270 }, + [23] = { 31.5, 86, 12, 270 }, + [24] = { 31.9, 85.9, 12, 270 }, + [25] = { 41.6, 85.8, 12, 270 }, + [26] = { 40.9, 85.4, 12, 270 }, + [27] = { 33.2, 85.4, 12, 270 }, + [28] = { 30.9, 84.1, 12, 270 }, + [29] = { 32.2, 83.9, 12, 270 }, + [30] = { 31.3, 82.6, 12, 270 }, + [31] = { 32.4, 81.4, 12, 270 }, + [32] = { 34.1, 81, 12, 270 }, + [33] = { 31.1, 81, 12, 270 }, + [34] = { 33, 80.2, 12, 270 }, + [35] = { 31.7, 80.1, 12, 270 }, + [36] = { 38.8, 78.6, 12, 270 }, + [37] = { 41.7, 77.7, 12, 270 }, + [38] = { 37.1, 76.8, 12, 270 }, + [39] = { 38.1, 75.4, 12, 270 }, + [40] = { 41, 75.3, 12, 270 }, + [41] = { 41.8, 75.3, 12, 270 }, + [42] = { 42.6, 73.2, 12, 270 }, + [43] = { 43.7, 72.3, 12, 270 }, + [44] = { 42.7, 71.5, 12, 270 }, + [45] = { 37.6, 70.8, 12, 270 }, + [46] = { 40.6, 70.7, 12, 270 }, + [47] = { 39.9, 69.7, 12, 270 }, + [48] = { 40.9, 69.5, 12, 270 }, + [49] = { 41.8, 69.5, 12, 270 }, + [50] = { 44.1, 69.4, 12, 270 }, + [51] = { 38.8, 68.7, 12, 270 }, + [52] = { 39, 76.8, 12, 270 }, + }, + ["lvl"] = "5-6", + }, + [114] = { + ["coords"] = { + [1] = { 39, 55, 40, 300 }, + [2] = { 38.1, 53.6, 40, 300 }, + [3] = { 39.9, 53.6, 40, 300 }, + [4] = { 40.8, 52.2, 40, 300 }, + [5] = { 37.1, 52.2, 40, 300 }, + [6] = { 39.1, 52.1, 40, 300 }, + [7] = { 36.2, 50.8, 40, 300 }, + [8] = { 40, 50.7, 40, 300 }, + [9] = { 38.1, 50.7, 40, 300 }, + [10] = { 39, 49.3, 40, 300 }, + [11] = { 37.2, 49.3, 40, 300 }, + [12] = { 38, 47.8, 40, 300 }, + [13] = { 44.7, 37.9, 40, 300 }, + [14] = { 43.8, 36.4, 40, 300 }, + [15] = { 45.9, 36.1, 40, 300 }, + [16] = { 43, 35.7, 40, 300 }, + [17] = { 53.9, 35.2, 40, 300 }, + [18] = { 46.7, 35, 40, 300 }, + [19] = { 43.8, 35, 40, 300 }, + [20] = { 53.3, 33.6, 40, 300 }, + [21] = { 55.3, 33.6, 40, 300 }, + [22] = { 45.7, 33.6, 40, 300 }, + [23] = { 45, 33.3, 40, 300 }, + [24] = { 52.5, 32.2, 40, 300 }, + [25] = { 54.3, 32.2, 40, 300 }, + [26] = { 54, 31, 40, 300 }, + [27] = { 53.3, 30.8, 40, 300 }, + [28] = { 51.4, 24.9, 40, 300 }, + [29] = { 51.9, 23.5, 40, 300 }, + [30] = { 52.9, 22.9, 40, 300 }, + [31] = { 51, 22.9, 40, 300 }, + [32] = { 50, 22.8, 40, 300 }, + [33] = { 51.9, 21.4, 40, 300 }, + [34] = { 50, 21.4, 40, 300 }, + [35] = { 51, 20, 40, 300 }, + }, + ["lvl"] = "14-15", + }, + [115] = { + ["coords"] = { + [1] = { 65.5, 62, 40, 300 }, + [2] = { 61.6, 62, 40, 300 }, + [3] = { 64.6, 61.9, 40, 300 }, + [4] = { 63.6, 61.4, 40, 300 }, + [5] = { 65.2, 61.3, 40, 300 }, + [6] = { 65.7, 61.1, 40, 300 }, + [7] = { 61.1, 60.8, 40, 300 }, + [8] = { 65.1, 60.3, 40, 300 }, + [9] = { 62.3, 59.2, 40, 300 }, + [10] = { 63, 57.7, 40, 300 }, + }, + ["lvl"] = "17-18", + }, + [116] = { + ["coords"] = { + [1] = { 46.6, 85.5, 12, 270 }, + [2] = { 49.7, 83.8, 12, 270 }, + [3] = { 48.7, 83.3, 12, 270 }, + [4] = { 50.5, 83.1, 12, 270 }, + [5] = { 47.8, 83.1, 12, 270 }, + [6] = { 50.6, 83, 12, 270 }, + [7] = { 46.8, 83, 12, 270 }, + [8] = { 68.4, 82, 12, 270 }, + [9] = { 70.7, 81.2, 12, 270 }, + [10] = { 47.7, 81.1, 12, 270 }, + [11] = { 49.7, 80.9, 12, 270 }, + [12] = { 68.1, 80.5, 12, 270 }, + [13] = { 89.4, 80.2, 12, 270 }, + [14] = { 88.8, 80, 12, 270 }, + [15] = { 90, 80, 12, 270 }, + [16] = { 89.6, 79.3, 12, 270 }, + [17] = { 89.2, 79.2, 12, 270 }, + [18] = { 90.2, 79.1, 12, 270 }, + [19] = { 70.7, 78.9, 12, 270 }, + [20] = { 89.9, 78.2, 12, 270 }, + [21] = { 88.8, 78.2, 12, 270 }, + [22] = { 67.8, 78.1, 12, 270 }, + [23] = { 68.3, 77.7, 12, 270 }, + [24] = { 68.6, 77.5, 12, 270 }, + [25] = { 71.3, 76.7, 12, 270 }, + [26] = { 68.7, 76.7, 12, 270 }, + [27] = { 45.6, 76.2, 12, 270 }, + [28] = { 46.6, 75.2, 12, 270 }, + [29] = { 44.3, 75.2, 12, 270 }, + [30] = { 47.6, 74.1, 12, 270 }, + [31] = { 45.7, 73.8, 12, 270 }, + [32] = { 30.9, 65.2, 12, 270 }, + [33] = { 31.2, 65.1, 12, 270 }, + [34] = { 30.6, 65, 12, 270 }, + [35] = { 30.7, 64.9, 12, 270 }, + [36] = { 31.3, 64.9, 12, 270 }, + [37] = { 30.2, 64.7, 12, 270 }, + [38] = { 30.3, 64.5, 12, 270 }, + [39] = { 55.3, 59.9, 12, 270 }, + [40] = { 28.6, 59.8, 12, 270 }, + [41] = { 52.2, 59.4, 12, 270 }, + [42] = { 52.1, 59.2, 12, 270 }, + [43] = { 52.5, 59.1, 12, 270 }, + [44] = { 29.1, 58.9, 12, 270 }, + [45] = { 29.2, 58.3, 12, 270 }, + [46] = { 29.9, 58.2, 12, 270 }, + [47] = { 31, 57.5, 12, 270 }, + }, + ["lvl"] = "8-9", + }, + [117] = { + ["coords"] = { + [1] = { 40.8, 22, 40, 300 }, + [2] = { 42, 20.9, 40, 300 }, + [3] = { 41, 20.7, 40, 300 }, + [4] = { 42.3, 19.9, 40, 300 }, + [5] = { 41.7, 19.3, 40, 300 }, + [6] = { 45.6, 16.6, 40, 300 }, + [7] = { 43.9, 16.5, 40, 300 }, + [8] = { 44.7, 16.4, 40, 300 }, + [9] = { 46.4, 15.1, 40, 300 }, + [10] = { 51.9, 15.1, 40, 300 }, + [11] = { 42.9, 15, 40, 300 }, + [12] = { 52.1, 14.8, 40, 300 }, + [13] = { 45, 14.3, 40, 300 }, + [14] = { 56.7, 14.3, 40, 300 }, + [15] = { 57.2, 14.2, 40, 300 }, + [16] = { 44.7, 14.2, 40, 300 }, + [17] = { 52.2, 14.1, 40, 300 }, + [18] = { 52.3, 14.1, 40, 300 }, + [19] = { 44.9, 14, 40, 300 }, + [20] = { 44.7, 13.9, 40, 300 }, + [21] = { 45, 13.7, 40, 300 }, + [22] = { 44.9, 13.6, 40, 300 }, + [23] = { 56.3, 13.6, 40, 300 }, + [24] = { 56.5, 13.5, 40, 300 }, + [25] = { 56.3, 13.4, 40, 300 }, + [26] = { 45.3, 13.1, 40, 300 }, + [27] = { 57.9, 13, 40, 300 }, + [28] = { 56.6, 13, 40, 300 }, + [29] = { 57, 12.9, 40, 300 }, + [30] = { 56.3, 12.7, 40, 300 }, + [31] = { 45, 12.6, 40, 300 }, + [32] = { 56.5, 12.6, 40, 300 }, + }, + ["lvl"] = "11-12", + }, + [118] = { + ["coords"] = { + [1] = { 83, 85.5, 12, 270 }, + [2] = { 85.6, 85.5, 12, 270 }, + [3] = { 83.6, 84.1, 12, 270 }, + [4] = { 82.2, 84, 12, 270 }, + [5] = { 85.5, 83.9, 12, 270 }, + [6] = { 80.2, 83.2, 12, 270 }, + [7] = { 85, 82.9, 12, 270 }, + [8] = { 79.2, 82.8, 12, 270 }, + [9] = { 81.3, 82.5, 12, 270 }, + [10] = { 87.4, 81.8, 12, 270 }, + [11] = { 80.1, 81.8, 12, 270 }, + [12] = { 80.4, 81.7, 12, 270 }, + [13] = { 90.4, 81.7, 12, 270 }, + [14] = { 87.6, 81.3, 12, 270 }, + [15] = { 80.8, 81.2, 12, 270 }, + [16] = { 80.3, 81.1, 12, 270 }, + [17] = { 80.6, 80.2, 12, 270 }, + [18] = { 79.3, 79.7, 12, 270 }, + [19] = { 91.2, 79.4, 12, 270 }, + [20] = { 87.1, 79.4, 12, 270 }, + [21] = { 80.6, 78.8, 12, 270 }, + [22] = { 87.9, 78.3, 12, 270 }, + [23] = { 80.3, 78.2, 12, 270 }, + [24] = { 80.3, 78.1, 12, 270 }, + [25] = { 77.9, 77.9, 12, 270 }, + [26] = { 81.5, 77.9, 12, 270 }, + [27] = { 76.2, 77.9, 12, 270 }, + [28] = { 82.1, 77.6, 12, 270 }, + [29] = { 87.1, 77.4, 12, 270 }, + [30] = { 88.8, 77.4, 12, 270 }, + [31] = { 90.3, 77.4, 12, 270 }, + [32] = { 77.3, 76.5, 12, 270 }, + [33] = { 79.1, 76.3, 12, 270 }, + [34] = { 75.6, 76, 12, 270 }, + [35] = { 76.2, 76, 12, 270 }, + [36] = { 89.6, 75, 12, 270 }, + [37] = { 77.4, 74.5, 12, 270 }, + [38] = { 75.5, 74.3, 12, 270 }, + [39] = { 85.9, 72.3, 12, 270 }, + [40] = { 88, 72.1, 12, 270 }, + [41] = { 83.8, 72, 12, 270 }, + [42] = { 88.4, 70.9, 12, 270 }, + [43] = { 87.1, 69.2, 12, 270 }, + [44] = { 87.3, 68.8, 12, 270 }, + [45] = { 87.4, 68.5, 12, 270 }, + [46] = { 88.7, 68.2, 12, 270 }, + [47] = { 86.9, 66.1, 12, 270 }, + [48] = { 72.3, 65.8, 12, 270 }, + [49] = { 71.8, 65.3, 12, 270 }, + [50] = { 72.4, 65.2, 12, 270 }, + [51] = { 72.3, 64.8, 12, 270 }, + [52] = { 86.4, 64.2, 12, 270 }, + [53] = { 86.4, 63.8, 12, 270 }, + [54] = { 87.8, 63.8, 12, 270 }, + [55] = { 76.2, 63.3, 12, 270 }, + [56] = { 78.4, 62.7, 12, 270 }, + [57] = { 85, 62.4, 12, 270 }, + [58] = { 79.3, 62.3, 12, 270 }, + [59] = { 85.1, 62, 12, 270 }, + [60] = { 77.7, 61.7, 12, 270 }, + [61] = { 85.9, 61.3, 12, 270 }, + [62] = { 84.6, 61.2, 12, 270 }, + [63] = { 80.2, 60.9, 12, 270 }, + [64] = { 82.1, 60.8, 12, 270 }, + [65] = { 78, 60.7, 12, 270 }, + [66] = { 83.2, 59.6, 12, 270 }, + [67] = { 66.6, 45.2, 12, 270 }, + [68] = { 65.4, 43.3, 12, 270 }, + [69] = { 70.5, 41.9, 12, 270 }, + [70] = { 77.5, 40.9, 12, 270 }, + [71] = { 78.9, 40.9, 12, 270 }, + [72] = { 69.9, 40.8, 12, 270 }, + [73] = { 76.6, 40.6, 12, 270 }, + [74] = { 72.1, 40.5, 12, 270 }, + [75] = { 73.7, 40.5, 12, 270 }, + [76] = { 75.2, 40.4, 12, 270 }, + [77] = { 73.6, 40, 12, 270 }, + [78] = { 75.2, 39.7, 12, 270 }, + [79] = { 70.3, 39.6, 12, 270 }, + [80] = { 73.6, 38.1, 12, 270 }, + [81] = { 74.2, 37.7, 12, 270 }, + [82] = { 71.4, 37.5, 12, 270 }, + [83] = { 75.4, 37.3, 12, 270 }, + [84] = { 2.8, 83.1, 44, 270 }, + }, + ["lvl"] = "9-10", + }, + [119] = { + ["coords"] = { + [1] = { 24.8, 87.2, 12, 120 }, + [2] = { 25.2, 86.1, 12, 120 }, + [3] = { 24.4, 83.7, 12, 120 }, + [4] = { 25.6, 82.5, 12, 120 }, + [5] = { 25.6, 79.9, 12, 120 }, + [6] = { 66.9, 23.9, 40, 120 }, + [7] = { 67.3, 22.8, 40, 120 }, + }, + ["lvl"] = "10-11", + }, + [120] = { + ["coords"] = {}, + ["lvl"] = "9-10", + }, + [121] = { + ["coords"] = { + [1] = { 46.2, 79.2, 40, 300 }, + [2] = { 50.4, 78.5, 40, 300 }, + [3] = { 49.3, 77.3, 40, 300 }, + [4] = { 36, 77, 40, 300 }, + [5] = { 37.4, 75.7, 40, 300 }, + [6] = { 37.4, 75.4, 40, 300 }, + [7] = { 37, 75.2, 40, 300 }, + [8] = { 51.2, 75.2, 40, 300 }, + [9] = { 52.8, 73.5, 40, 300 }, + [10] = { 38.7, 69.9, 40, 300 }, + [11] = { 39, 69.4, 40, 300 }, + }, + ["lvl"] = "15-16", + }, + [122] = { + ["coords"] = { + [1] = { 37.1, 82.5, 40, 300 }, + [2] = { 36.8, 82.4, 40, 300 }, + [3] = { 37.1, 82, 40, 300 }, + [4] = { 38.1, 81.2, 40, 300 }, + [5] = { 46.9, 81.1, 40, 300 }, + [6] = { 38, 80.7, 40, 300 }, + [7] = { 42.1, 80.6, 40, 300 }, + [8] = { 37.5, 80.5, 40, 300 }, + [9] = { 37.1, 80.5, 40, 300 }, + [10] = { 43.2, 79.6, 40, 300 }, + [11] = { 39, 79.4, 40, 300 }, + [12] = { 41, 79.4, 40, 300 }, + [13] = { 53.1, 79.1, 40, 300 }, + [14] = { 53.3, 79, 40, 300 }, + [15] = { 49.2, 78.9, 40, 300 }, + [16] = { 53, 78.7, 40, 300 }, + [17] = { 50.9, 78.6, 40, 300 }, + [18] = { 52.7, 78.4, 40, 300 }, + [19] = { 46.4, 78.2, 40, 300 }, + [20] = { 51.7, 77.2, 40, 300 }, + [21] = { 48.1, 77.2, 40, 300 }, + [22] = { 49.4, 76.5, 40, 300 }, + [23] = { 52.2, 75.3, 40, 300 }, + [24] = { 50.9, 75.1, 40, 300 }, + [25] = { 52.5, 73.8, 40, 300 }, + [26] = { 52.1, 73, 40, 300 }, + [27] = { 60.8, 58.2, 40, 300 }, + [28] = { 60.6, 58.2, 40, 300 }, + }, + ["lvl"] = "17-18", + }, + [123] = { + ["coords"] = { + [1] = { 32.5, 73.7, 40, 300 }, + [2] = { 31.8, 73.4, 40, 300 }, + [3] = { 31.5, 72.4, 40, 300 }, + [4] = { 31.6, 72.3, 40, 300 }, + [5] = { 32.3, 72.2, 40, 300 }, + [6] = { 31.3, 72.1, 40, 300 }, + [7] = { 31.5, 72.1, 40, 300 }, + [8] = { 31.3, 70.6, 40, 300 }, + [9] = { 31, 69.6, 40, 300 }, + [10] = { 32.8, 68.4, 40, 300 }, + [11] = { 32.8, 68, 40, 300 }, + [12] = { 29.9, 66.3, 40, 300 }, + [13] = { 29.2, 66.1, 40, 300 }, + [14] = { 29.2, 65.5, 40, 300 }, + [15] = { 29.4, 65.4, 40, 300 }, + [16] = { 28.6, 65.4, 40, 300 }, + [17] = { 29.5, 65.3, 40, 300 }, + [18] = { 29.1, 65.3, 40, 300 }, + [19] = { 28.9, 64.7, 40, 300 }, + [20] = { 29.8, 63.8, 40, 300 }, + [21] = { 35.9, 61.6, 40, 300 }, + [22] = { 35.5, 61.5, 40, 300 }, + [23] = { 35.8, 61.1, 40, 300 }, + [24] = { 29.9, 59.6, 40, 300 }, + [25] = { 30.3, 58.1, 40, 300 }, + [26] = { 30.6, 58, 40, 300 }, + [27] = { 30.3, 57.9, 40, 300 }, + [28] = { 30.4, 57.9, 40, 300 }, + [29] = { 30.4, 57.7, 40, 300 }, + [30] = { 30.2, 57.5, 40, 300 }, + [31] = { 30, 56.6, 40, 300 }, + [32] = { 30.4, 53.7, 40, 300 }, + [33] = { 31.3, 52.6, 40, 300 }, + [34] = { 30.4, 52.4, 40, 300 }, + [35] = { 31.6, 52.3, 40, 300 }, + [36] = { 29.6, 52.3, 40, 300 }, + [37] = { 30.7, 52.1, 40, 300 }, + [38] = { 30.4, 52, 40, 300 }, + [39] = { 30.7, 51.8, 40, 300 }, + [40] = { 30.5, 51.7, 40, 300 }, + [41] = { 31.5, 50.9, 40, 300 }, + [42] = { 29.6, 50.8, 40, 300 }, + [43] = { 30.6, 50.7, 40, 300 }, + [44] = { 30.2, 49.9, 40, 300 }, + [45] = { 30.1, 49.8, 40, 300 }, + [46] = { 29.5, 49.7, 40, 300 }, + [47] = { 30.4, 49.6, 40, 300 }, + [48] = { 30.1, 49.4, 40, 300 }, + [49] = { 30.2, 49.3, 40, 300 }, + [50] = { 31.2, 49.3, 40, 300 }, + [51] = { 29.7, 48.3, 40, 300 }, + [52] = { 30.5, 48.1, 40, 300 }, + [53] = { 37.5, 34.1, 40, 300 }, + [54] = { 36.6, 32.1, 40, 300 }, + [55] = { 36.8, 32, 40, 300 }, + [56] = { 39.1, 31.7, 40, 300 }, + [57] = { 36.8, 31.7, 40, 300 }, + [58] = { 36.6, 31.6, 40, 300 }, + [59] = { 35.6, 31.3, 40, 300 }, + [60] = { 32.8, 29.4, 40, 300 }, + [61] = { 38.1, 28.5, 40, 300 }, + [62] = { 34, 27.6, 40, 300 }, + [63] = { 34.2, 26.9, 40, 300 }, + [64] = { 34.4, 26.8, 40, 300 }, + [65] = { 34.3, 26.6, 40, 300 }, + [66] = { 33.9, 26.4, 40, 300 }, + [67] = { 34.1, 25.7, 40, 300 }, + }, + ["lvl"] = "13-14", + }, + [124] = { + ["coords"] = { + [1] = { 64.9, 73.2, 40, 300 }, + [2] = { 31.2, 72.9, 40, 300 }, + [3] = { 31.3, 72.4, 40, 300 }, + [4] = { 31.5, 71.3, 40, 300 }, + [5] = { 57.3, 70.5, 40, 300 }, + [6] = { 30.7, 69.8, 40, 300 }, + [7] = { 31.2, 69.4, 40, 300 }, + [8] = { 31, 69.3, 40, 300 }, + [9] = { 32.8, 69.1, 40, 300 }, + [10] = { 32.2, 69, 40, 300 }, + [11] = { 32.6, 68.5, 40, 300 }, + [12] = { 32.5, 68.5, 40, 300 }, + [13] = { 32.5, 68.3, 40, 300 }, + [14] = { 32.6, 68.2, 40, 300 }, + [15] = { 30.4, 67.8, 40, 300 }, + [16] = { 31.3, 67.7, 40, 300 }, + [17] = { 52, 62.9, 40, 300 }, + [18] = { 52.9, 62.8, 40, 300 }, + [19] = { 53, 62.3, 40, 300 }, + [20] = { 48.6, 62.2, 40, 300 }, + [21] = { 49.5, 62, 40, 300 }, + [22] = { 48.2, 61.9, 40, 300 }, + [23] = { 48.4, 61, 40, 300 }, + [24] = { 48.3, 60.8, 40, 300 }, + [25] = { 53.3, 60.6, 40, 300 }, + [26] = { 29, 49.1, 40, 300 }, + }, + ["lvl"] = "15-16", + }, + [125] = { + ["coords"] = { + [1] = { 60.9, 77.8, 40, 300 }, + [2] = { 63.5, 77.6, 40, 300 }, + }, + ["lvl"] = "19-20", + }, + [126] = { + ["coords"] = { + [1] = { 33.9, 16.7, 40, 300 }, + [2] = { 42.5, 12.3, 40, 300 }, + [3] = { 42.7, 12.3, 40, 300 }, + [4] = { 42, 12.1, 40, 300 }, + [5] = { 43, 11.7, 40, 300 }, + [6] = { 42.2, 11.5, 40, 300 }, + [7] = { 42.5, 11.4, 40, 300 }, + [8] = { 53, 11.3, 40, 300 }, + [9] = { 53.4, 11.2, 40, 300 }, + [10] = { 53.2, 11.1, 40, 300 }, + [11] = { 53.3, 10.4, 40, 300 }, + [12] = { 52.2, 10.3, 40, 300 }, + [13] = { 41.2, 10.2, 40, 300 }, + [14] = { 55.3, 10, 40, 300 }, + [15] = { 47.4, 9.9, 40, 300 }, + [16] = { 56.1, 9.8, 40, 300 }, + [17] = { 42, 9.7, 40, 300 }, + [18] = { 53.8, 9.7, 40, 300 }, + [19] = { 52.7, 9.6, 40, 300 }, + [20] = { 54.1, 9.6, 40, 300 }, + [21] = { 55.3, 9.5, 40, 300 }, + [22] = { 47.4, 9.4, 40, 300 }, + [23] = { 51.9, 9.3, 40, 300 }, + [24] = { 43.7, 9.2, 40, 300 }, + [25] = { 55.6, 9.2, 40, 300 }, + [26] = { 42.8, 9, 40, 300 }, + [27] = { 45.2, 8.9, 40, 300 }, + [28] = { 53.1, 8.9, 40, 300 }, + [29] = { 56.5, 8.8, 40, 300 }, + [30] = { 55.7, 8.6, 40, 300 }, + [31] = { 44.4, 8.6, 40, 300 }, + [32] = { 45.5, 8.4, 40, 300 }, + [33] = { 44.8, 8.4, 40, 300 }, + [34] = { 43, 8.2, 40, 300 }, + [35] = { 55.8, 8.1, 40, 300 }, + [36] = { 43.2, 8.1, 40, 300 }, + [37] = { 45, 8.1, 40, 300 }, + [38] = { 55.6, 8, 40, 300 }, + [39] = { 43.9, 7.9, 40, 300 }, + [40] = { 44.7, 7.9, 40, 300 }, + [41] = { 44.8, 7.7, 40, 300 }, + [42] = { 55.9, 7.6, 40, 300 }, + [43] = { 55.7, 7.3, 40, 300 }, + }, + ["lvl"] = "12-13", + }, + [127] = { + ["coords"] = { + [1] = { 34.1, 86.3, 40, 300 }, + [2] = { 34.6, 86.2, 40, 300 }, + [3] = { 34.5, 85.9, 40, 300 }, + [4] = { 35, 85.4, 40, 300 }, + [5] = { 34.6, 85.3, 40, 300 }, + [6] = { 35.1, 85.3, 40, 300 }, + [7] = { 34, 84.9, 40, 300 }, + [8] = { 34.9, 84.5, 40, 300 }, + [9] = { 34.6, 84.3, 40, 300 }, + [10] = { 35.3, 84.3, 40, 300 }, + [11] = { 34.8, 84.2, 40, 300 }, + [12] = { 33.8, 83, 40, 300 }, + [13] = { 28, 75.7, 40, 300 }, + [14] = { 27.2, 75.6, 40, 300 }, + [15] = { 26.5, 74.8, 40, 300 }, + [16] = { 27.8, 74.5, 40, 300 }, + [17] = { 26.1, 74.4, 40, 300 }, + [18] = { 27.2, 74.4, 40, 300 }, + [19] = { 25.5, 74, 40, 300 }, + [20] = { 26.6, 73.8, 40, 300 }, + [21] = { 25.9, 73.7, 40, 300 }, + [22] = { 26.1, 73.7, 40, 300 }, + [23] = { 26.7, 73.3, 40, 300 }, + [24] = { 28.2, 73.1, 40, 300 }, + [25] = { 26, 72.2, 40, 300 }, + [26] = { 26.8, 72.1, 40, 300 }, + [27] = { 26.6, 72, 40, 300 }, + [28] = { 27.2, 71.7, 40, 300 }, + [29] = { 26.2, 71.7, 40, 300 }, + [30] = { 26.8, 70.4, 40, 300 }, + [31] = { 28.4, 70.3, 40, 300 }, + [32] = { 27.7, 70, 40, 300 }, + [33] = { 28.2, 69.3, 40, 300 }, + [34] = { 28, 69.2, 40, 300 }, + [35] = { 28.2, 69, 40, 300 }, + [36] = { 27.7, 68.8, 40, 300 }, + [37] = { 23.7, 57.1, 40, 300 }, + }, + ["lvl"] = "18-19", + }, + [128] = { + ["coords"] = {}, + ["lvl"] = "59", + }, + [129] = { + ["coords"] = {}, + ["lvl"] = "50", + }, + [130] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "62", + }, + [149] = { + ["coords"] = {}, + ["lvl"] = "6-7", + }, + [150] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [151] = { + ["coords"] = { + [1] = { 44, 65.9, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [152] = { + ["coords"] = { + [1] = { 47.5, 41.6, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [153] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "35", + }, + [154] = { + ["coords"] = { + [1] = { 58.8, 64.2, 40, 300 }, + [2] = { 59.4, 62.7, 40, 300 }, + [3] = { 62.8, 60.7, 40, 300 }, + [4] = { 58.7, 60.4, 40, 300 }, + [5] = { 59.1, 59.3, 40, 300 }, + [6] = { 63.9, 55.1, 40, 300 }, + [7] = { 61.1, 54.8, 40, 300 }, + [8] = { 59.4, 52.3, 40, 300 }, + [9] = { 62.7, 50.6, 40, 300 }, + [10] = { 61.9, 49.4, 40, 300 }, + [11] = { 26.6, 44.1, 40, 300 }, + [12] = { 26.4, 42.6, 40, 300 }, + [13] = { 27.1, 42.4, 40, 300 }, + }, + ["lvl"] = "16-17", + }, + [157] = { + ["coords"] = { + [1] = { 35.7, 80.8, 40, 300 }, + [2] = { 34.7, 79.4, 40, 300 }, + [3] = { 31.7, 78.1, 40, 300 }, + [4] = { 34.3, 77.8, 40, 300 }, + [5] = { 31.7, 75.9, 40, 300 }, + [6] = { 37.3, 72, 40, 300 }, + [7] = { 35.2, 69.3, 40, 300 }, + [8] = { 38.1, 66.3, 40, 300 }, + [9] = { 53.9, 64.9, 40, 300 }, + [10] = { 42.3, 64.1, 40, 300 }, + [11] = { 56.1, 63.7, 40, 300 }, + [12] = { 37.2, 63.7, 40, 300 }, + [13] = { 47.2, 62.2, 40, 300 }, + [14] = { 43.7, 62.2, 40, 300 }, + [15] = { 45.3, 62.1, 40, 300 }, + [16] = { 39.4, 60.9, 40, 300 }, + [17] = { 51.4, 60.6, 40, 300 }, + [18] = { 37.2, 60.2, 40, 300 }, + [19] = { 57.1, 59.2, 40, 300 }, + [20] = { 44.6, 59.1, 40, 300 }, + [21] = { 54.1, 59, 40, 300 }, + [22] = { 51.2, 59, 40, 300 }, + [23] = { 35.4, 58, 40, 300 }, + [24] = { 41.3, 57.6, 40, 300 }, + [25] = { 49.5, 57.5, 40, 300 }, + [26] = { 45.6, 57.4, 40, 300 }, + [27] = { 44.7, 56.9, 40, 300 }, + [28] = { 46.4, 56, 40, 300 }, + [29] = { 45.6, 55.4, 40, 300 }, + [30] = { 48.5, 52.4, 40, 300 }, + [31] = { 43.8, 52.2, 40, 300 }, + [32] = { 46.3, 51.8, 40, 300 }, + [33] = { 45.1, 50.5, 40, 300 }, + [34] = { 44.8, 49.2, 40, 300 }, + [35] = { 43, 48.9, 40, 300 }, + [36] = { 60.9, 47.7, 40, 300 }, + [37] = { 60.1, 45.5, 40, 300 }, + [38] = { 44.4, 45.1, 40, 300 }, + [39] = { 61.3, 44.9, 40, 300 }, + [40] = { 40.9, 44.8, 40, 300 }, + [41] = { 59.6, 44.5, 40, 300 }, + [42] = { 59, 43.6, 40, 300 }, + [43] = { 42.9, 43.6, 40, 300 }, + [44] = { 38.1, 42.5, 40, 300 }, + [45] = { 59.8, 42.5, 40, 300 }, + [46] = { 37.8, 41, 40, 300 }, + [47] = { 40.8, 39.8, 40, 300 }, + [48] = { 44, 39.6, 40, 300 }, + [49] = { 41.9, 38.8, 40, 300 }, + [50] = { 33.6, 37.9, 40, 300 }, + [51] = { 35.4, 36.6, 40, 300 }, + [52] = { 41.2, 33.2, 40, 300 }, + [53] = { 33.7, 31, 40, 300 }, + [54] = { 39.1, 27.9, 40, 300 }, + }, + ["lvl"] = "14-15", + }, + [161] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "10", + }, + [163] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "4", + }, + [165] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "1", + }, + [167] = { + ["coords"] = { + [1] = { 34, 46.5, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "13", + }, + [171] = { + ["coords"] = { + [1] = { 23.7, 57.3, 40, 300 }, + [2] = { 25.2, 56.6, 40, 300 }, + [3] = { 25.2, 56.2, 40, 300 }, + [4] = { 25.2, 55.3, 40, 300 }, + [5] = { 25.2, 55, 40, 300 }, + [6] = { 25.9, 50.1, 40, 300 }, + [7] = { 25.2, 49.8, 40, 300 }, + [8] = { 26.2, 49.4, 40, 300 }, + [9] = { 25.8, 49.1, 40, 300 }, + [10] = { 25.4, 48.9, 40, 300 }, + [11] = { 24.7, 48.9, 40, 300 }, + [12] = { 25, 48.9, 40, 300 }, + [13] = { 25.2, 48.6, 40, 300 }, + [14] = { 24.6, 48.3, 40, 300 }, + [15] = { 26.7, 48.3, 40, 300 }, + [16] = { 24.8, 48.3, 40, 300 }, + [17] = { 25.3, 48, 40, 300 }, + [18] = { 25.8, 47.9, 40, 300 }, + [19] = { 26, 47.4, 40, 300 }, + [20] = { 25.5, 47, 40, 300 }, + [21] = { 25.7, 46.8, 40, 300 }, + [22] = { 27.6, 40.7, 40, 300 }, + [23] = { 26.5, 40.6, 40, 300 }, + [24] = { 27.7, 39.1, 40, 300 }, + [25] = { 26.7, 39, 40, 300 }, + [26] = { 26.7, 38.1, 40, 300 }, + [27] = { 27.8, 38, 40, 300 }, + [28] = { 26.6, 36.5, 40, 300 }, + [29] = { 29, 35.6, 40, 300 }, + [30] = { 28.8, 35.5, 40, 300 }, + [31] = { 30.8, 35.1, 40, 300 }, + [32] = { 27.6, 35.1, 40, 300 }, + [33] = { 29, 34, 40, 300 }, + [34] = { 27.7, 33.7, 40, 300 }, + [35] = { 28.4, 33.4, 40, 300 }, + [36] = { 28.2, 33.2, 40, 300 }, + [37] = { 28.4, 33, 40, 300 }, + [38] = { 29.3, 32.9, 40, 300 }, + [39] = { 28.4, 32.9, 40, 300 }, + [40] = { 29.2, 31.9, 40, 300 }, + [41] = { 28.3, 29.4, 40, 300 }, + [42] = { 29.4, 28.6, 40, 300 }, + [43] = { 30.3, 28.6, 40, 300 }, + [44] = { 28.3, 28.2, 40, 300 }, + [45] = { 29.6, 27.8, 40, 300 }, + [46] = { 29, 27.6, 40, 300 }, + [47] = { 30.2, 27.5, 40, 300 }, + [48] = { 29.1, 27.4, 40, 300 }, + [49] = { 28.7, 27.2, 40, 300 }, + [50] = { 30.4, 26.7, 40, 300 }, + [51] = { 32.2, 26.6, 40, 300 }, + [52] = { 32.4, 26.6, 40, 300 }, + [53] = { 29.3, 26.4, 40, 300 }, + [54] = { 32.5, 26.3, 40, 300 }, + [55] = { 31.8, 26.1, 40, 300 }, + [56] = { 32.3, 25.4, 40, 300 }, + [57] = { 30.3, 25.4, 40, 300 }, + [58] = { 34.6, 22.7, 40, 300 }, + [59] = { 35.5, 22.1, 40, 300 }, + [60] = { 34.6, 21.8, 40, 300 }, + [61] = { 35.2, 21.7, 40, 300 }, + [62] = { 35.8, 21.6, 40, 300 }, + [63] = { 35, 21.1, 40, 300 }, + [64] = { 35.6, 20.8, 40, 300 }, + [65] = { 34.8, 20.4, 40, 300 }, + }, + ["lvl"] = "15-16", + }, + [190] = { + ["coords"] = { + [1] = { 47.6, 41.4, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [192] = { + ["coords"] = {}, + ["lvl"] = "62", + }, + [193] = { + ["coords"] = { + [1] = { 37.5, 80.7, 16, 600 }, + [2] = { 38.2, 80.7, 16, 600 }, + [3] = { 37, 79.8, 16, 600 }, + [4] = { 36.9, 78.7, 16, 600 }, + [5] = { 41.1, 76.9, 16, 600 }, + [6] = { 40.4, 76.7, 16, 600 }, + [7] = { 39.5, 76.4, 16, 600 }, + [8] = { 36.9, 75.8, 16, 600 }, + [9] = { 38.3, 74.7, 16, 600 }, + [10] = { 36.4, 74.6, 16, 600 }, + [11] = { 37.1, 74.5, 16, 600 }, + [12] = { 37.5, 73.7, 16, 600 }, + [13] = { 36.4, 73.7, 16, 600 }, + [14] = { 36.8, 73.7, 16, 600 }, + [15] = { 38.3, 73.6, 16, 600 }, + [16] = { 36.4, 72.9, 16, 600 }, + }, + ["lvl"] = "50-51", + ["rnk"] = "1", + }, + [196] = { + ["coords"] = { + [1] = { 48.9, 40.2, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "3", + }, + [197] = { + ["coords"] = { + [1] = { 48.9, 41.6, 12, 285 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [198] = { + ["coords"] = { + [1] = { 49.7, 39.4, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [199] = { + ["coords"] = { + [1] = { 16.8, 76.8, 12, 300 }, + [2] = { 53.7, 43.9, 40, 300 }, + [3] = { 51.4, 42.2, 40, 300 }, + [4] = { 61.3, 40.2, 40, 300 }, + [5] = { 48.4, 40, 40, 300 }, + [6] = { 60, 39.8, 40, 300 }, + [7] = { 54.2, 39.8, 40, 300 }, + [8] = { 57.1, 39.7, 40, 300 }, + [9] = { 49.4, 37.2, 40, 300 }, + [10] = { 48.9, 35.9, 40, 300 }, + [11] = { 52.7, 35.7, 40, 300 }, + [12] = { 62, 35.1, 40, 300 }, + [13] = { 43, 33.7, 40, 300 }, + [14] = { 59.8, 32.3, 40, 300 }, + [15] = { 38.1, 32.1, 40, 300 }, + [16] = { 48.4, 30.2, 40, 300 }, + [17] = { 61, 29.3, 40, 300 }, + [18] = { 46, 29, 40, 300 }, + [19] = { 60.9, 28, 40, 300 }, + [20] = { 62.8, 27.8, 40, 300 }, + [21] = { 48.6, 27.8, 40, 300 }, + [22] = { 51.9, 27.7, 40, 300 }, + [23] = { 36.3, 26.5, 40, 300 }, + [24] = { 42.9, 25.1, 40, 300 }, + [25] = { 49.5, 24.7, 40, 300 }, + [26] = { 56.2, 24.6, 40, 300 }, + [27] = { 60.1, 24.2, 40, 300 }, + [28] = { 44.6, 20.1, 40, 300 }, + [29] = { 38.2, 19.9, 40, 300 }, + [30] = { 43.6, 18.8, 40, 300 }, + [31] = { 52.4, 18.7, 40, 300 }, + [32] = { 47.8, 18.2, 40, 300 }, + [33] = { 55.2, 17.6, 40, 300 }, + [34] = { 50.5, 16.5, 40, 300 }, + [35] = { 41.9, 16.5, 40, 300 }, + [36] = { 59, 13.6, 40, 300 }, + }, + ["lvl"] = "10-11", + }, + [200] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "20-21", + }, + [201] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [202] = { + ["coords"] = { + [1] = { 79.6, 61.9, 10, 300 }, + [2] = { 81.1, 61.6, 10, 300 }, + [3] = { 81.6, 60.8, 10, 300 }, + [4] = { 80.3, 60.5, 10, 300 }, + [5] = { 79.3, 59.6, 10, 300 }, + [6] = { 80.6, 59.3, 10, 300 }, + [7] = { 81.2, 57.9, 10, 300 }, + [8] = { 79.2, 57.6, 10, 300 }, + [9] = { 82, 56.9, 10, 300 }, + [10] = { 81.1, 56.4, 10, 300 }, + [11] = { 16.3, 48.3, 10, 300 }, + [12] = { 20.6, 48.2, 10, 300 }, + [13] = { 21.6, 48.2, 10, 300 }, + [14] = { 17.5, 48.1, 10, 300 }, + [15] = { 22.5, 48, 10, 300 }, + [16] = { 14.8, 47.8, 10, 300 }, + [17] = { 20.8, 47.3, 10, 300 }, + [18] = { 17.7, 47.1, 10, 300 }, + [19] = { 23, 46.7, 10, 300 }, + [20] = { 14.4, 46.2, 10, 300 }, + [21] = { 16.3, 45.5, 10, 300 }, + [22] = { 23, 43.4, 10, 300 }, + [23] = { 24.4, 43.4, 10, 300 }, + [24] = { 21.4, 43.3, 10, 300 }, + [25] = { 14.1, 42.5, 10, 300 }, + [26] = { 24.3, 41.7, 10, 300 }, + [27] = { 22.6, 40.4, 10, 300 }, + }, + ["lvl"] = "23-24", + }, + [203] = { + ["coords"] = { + [1] = { 78.1, 75.5, 10, 300 }, + [2] = { 79.6, 74.3, 10, 300 }, + [3] = { 78.6, 73, 10, 300 }, + [4] = { 80.9, 72.8, 10, 300 }, + [5] = { 82.1, 72.1, 10, 300 }, + [6] = { 78.8, 72, 10, 300 }, + [7] = { 79.4, 70.9, 10, 300 }, + [8] = { 82, 70.2, 10, 300 }, + [9] = { 79.7, 69.6, 10, 300 }, + [10] = { 78.1, 68.1, 10, 300 }, + [11] = { 77.1, 68, 10, 300 }, + [12] = { 79.7, 66.1, 10, 300 }, + }, + ["lvl"] = "22-23", + }, + [204] = { + ["coords"] = {}, + ["lvl"] = "28", + }, + [205] = { + ["coords"] = { + [1] = { 67.2, 77.5, 10, 300 }, + [2] = { 65.6, 77.5, 10, 300 }, + [3] = { 66.3, 76.9, 10, 300 }, + [4] = { 66.1, 76.5, 10, 300 }, + [5] = { 66.4, 76.4, 10, 300 }, + [6] = { 61.2, 76.1, 10, 300 }, + [7] = { 65.4, 75.9, 10, 300 }, + [8] = { 62.8, 75.7, 10, 300 }, + [9] = { 61.6, 75.5, 10, 300 }, + [10] = { 63.7, 75.5, 10, 300 }, + [11] = { 61.2, 75.4, 10, 300 }, + [12] = { 60.5, 75.4, 10, 300 }, + [13] = { 66.1, 75.1, 10, 300 }, + [14] = { 60.4, 74.5, 10, 300 }, + [15] = { 62.1, 74.4, 10, 300 }, + [16] = { 66, 73.9, 10, 300 }, + [17] = { 63.9, 73.7, 10, 300 }, + [18] = { 61.1, 73.5, 10, 300 }, + [19] = { 63.7, 73.4, 10, 300 }, + [20] = { 64.4, 73.1, 10, 300 }, + [21] = { 64.1, 72.6, 10, 300 }, + [22] = { 67.3, 70.8, 10, 300 }, + [23] = { 65.2, 70, 10, 300 }, + [24] = { 65.9, 69.4, 10, 300 }, + [25] = { 64.6, 69.2, 10, 300 }, + [26] = { 67.2, 69.2, 10, 300 }, + [27] = { 66, 69.1, 10, 300 }, + [28] = { 66.3, 67.9, 10, 300 }, + [29] = { 65.4, 67.9, 10, 300 }, + [30] = { 65.4, 67.7, 10, 300 }, + [31] = { 65.1, 67.4, 10, 300 }, + [32] = { 65.6, 67.2, 10, 300 }, + [33] = { 65.6, 67, 10, 300 }, + [34] = { 64.9, 66.1, 10, 300 }, + [35] = { 65.6, 65.9, 10, 300 }, + [36] = { 64.7, 51.9, 10, 300 }, + [37] = { 63.6, 51.7, 10, 300 }, + [38] = { 64.2, 51.6, 10, 300 }, + [39] = { 64.3, 50.9, 10, 300 }, + [40] = { 63.3, 50.8, 10, 300 }, + [41] = { 64, 50.1, 10, 300 }, + [42] = { 67.2, 49.7, 10, 300 }, + [43] = { 66, 48.1, 10, 300 }, + [44] = { 62.3, 47.9, 10, 300 }, + [45] = { 67.6, 45.9, 10, 300 }, + [46] = { 60, 45.2, 10, 300 }, + [47] = { 66.3, 44.8, 10, 300 }, + [48] = { 64.8, 42.8, 10, 300 }, + [49] = { 62.1, 42.7, 10, 300 }, + [50] = { 60.5, 42.2, 10, 300 }, + [51] = { 60.9, 41.7, 10, 300 }, + [52] = { 60.8, 41.5, 10, 300 }, + [53] = { 61.2, 41.2, 10, 300 }, + [54] = { 60.7, 41, 10, 300 }, + [55] = { 60, 40.9, 10, 300 }, + [56] = { 63.5, 40.8, 10, 300 }, + [57] = { 60.6, 39.9, 10, 300 }, + [58] = { 60.9, 39.8, 10, 300 }, + [59] = { 60, 39.6, 10, 300 }, + [60] = { 62.3, 38.9, 10, 300 }, + }, + ["lvl"] = "28-29", + }, + [206] = { + ["coords"] = { + [1] = { 61.6, 82.2, 10, 300 }, + [2] = { 61.9, 81.9, 10, 300 }, + [3] = { 61.8, 81, 10, 300 }, + [4] = { 62.6, 79.8, 10, 300 }, + [5] = { 62.7, 79.2, 10, 300 }, + [6] = { 72.2, 74.4, 10, 300 }, + [7] = { 72.5, 73.7, 10, 300 }, + [8] = { 71.7, 72.8, 10, 300 }, + [9] = { 73, 72.7, 10, 300 }, + [10] = { 73.4, 72.5, 10, 300 }, + [11] = { 71.9, 72.3, 10, 300 }, + [12] = { 72.9, 72.2, 10, 300 }, + [13] = { 71.6, 71.7, 10, 300 }, + [14] = { 71, 71.3, 10, 300 }, + [15] = { 73.4, 70.6, 10, 300 }, + [16] = { 72.3, 70.2, 10, 300 }, + [17] = { 73.7, 69.9, 10, 300 }, + [18] = { 72.4, 69.6, 10, 300 }, + [19] = { 73.4, 68.9, 10, 300 }, + [20] = { 72.3, 68.6, 10, 300 }, + [21] = { 72.4, 67.4, 10, 300 }, + }, + ["lvl"] = "29-30", + }, + [207] = { + ["coords"] = {}, + ["lvl"] = "25-26", + }, + [208] = { + ["coords"] = {}, + ["lvl"] = "23-24", + }, + [209] = { + ["coords"] = {}, + ["lvl"] = "24-25", + }, + [210] = { + ["coords"] = { + [1] = { 24.3, 37.2, 10, 300 }, + [2] = { 25.1, 36, 10, 300 }, + [3] = { 22.5, 35.7, 10, 300 }, + [4] = { 24.8, 34.7, 10, 300 }, + [5] = { 22.7, 34.1, 10, 300 }, + [6] = { 24.9, 34.1, 10, 300 }, + [7] = { 25.8, 32.9, 10, 300 }, + [8] = { 23, 32.8, 10, 300 }, + [9] = { 17.9, 28.4, 10, 300 }, + [10] = { 25.1, 27.2, 10, 300 }, + [11] = { 19.3, 26.4, 10, 300 }, + }, + ["lvl"] = "26-27", + }, + [211] = { + ["coords"] = {}, + ["lvl"] = "29-30", + }, + [212] = { + ["coords"] = { + [1] = { 36.6, 80, 10, 300 }, + [2] = { 35.3, 79.4, 10, 300 }, + [3] = { 36.8, 78.8, 10, 300 }, + [4] = { 36.6, 77.4, 10, 300 }, + [5] = { 33.7, 76, 10, 300 }, + [6] = { 34.7, 75.7, 10, 300 }, + [7] = { 33.1, 75.2, 10, 300 }, + [8] = { 32.9, 71.1, 10, 300 }, + [9] = { 32.4, 70.3, 10, 300 }, + [10] = { 32.9, 69.6, 10, 300 }, + [11] = { 32.2, 69.1, 10, 300 }, + }, + ["lvl"] = "29-30", + }, + [213] = { + ["coords"] = { + [1] = { 12.6, 66.8, 10, 300 }, + [2] = { 10.7, 47.9, 10, 300 }, + [3] = { 10.6, 29.6, 10, 300 }, + [4] = { 22, 28.6, 10, 300 }, + [5] = { 29.1, 28.3, 10, 300 }, + [6] = { 12.9, 28.3, 10, 300 }, + [7] = { 23.4, 28, 10, 300 }, + [8] = { 14.1, 27.7, 10, 300 }, + [9] = { 31.6, 27.2, 10, 300 }, + [10] = { 33.6, 26.7, 10, 300 }, + [11] = { 27.3, 26.3, 10, 300 }, + [12] = { 27.8, 26.1, 10, 300 }, + [13] = { 25.3, 25.9, 10, 300 }, + [14] = { 22.8, 25.9, 10, 300 }, + [15] = { 30.5, 25.6, 10, 300 }, + [16] = { 35.6, 24.5, 10, 300 }, + [17] = { 33.6, 24.5, 10, 300 }, + [18] = { 31.5, 24.4, 10, 300 }, + [19] = { 19.2, 24.1, 10, 300 }, + [20] = { 17.4, 23.3, 10, 300 }, + [21] = { 16.5, 22.9, 10, 300 }, + [22] = { 32.4, 22.6, 10, 300 }, + [23] = { 36.7, 21.6, 10, 300 }, + [24] = { 35.3, 21.5, 10, 300 }, + [25] = { 35.8, 20.9, 10, 300 }, + [26] = { 41.3, 20.5, 10, 300 }, + [27] = { 43.9, 20.4, 10, 300 }, + [28] = { 39, 19.6, 10, 300 }, + [29] = { 37.7, 19.2, 10, 300 }, + [30] = { 77.1, 19.1, 10, 300 }, + [31] = { 80.4, 18.7, 10, 300 }, + [32] = { 40.1, 18.7, 10, 300 }, + [33] = { 42.5, 18.7, 10, 300 }, + [34] = { 45, 18.5, 10, 300 }, + [35] = { 63.9, 17.1, 10, 300 }, + [36] = { 58.8, 16.9, 10, 300 }, + [37] = { 46.5, 16.8, 10, 300 }, + [38] = { 86.2, 16.1, 10, 300 }, + [39] = { 57.8, 15.6, 10, 300 }, + [40] = { 28.4, 99.8, 12, 300 }, + [41] = { 31.2, 98.3, 12, 300 }, + [42] = { 41.5, 97.3, 12, 300 }, + [43] = { 41.9, 97, 12, 300 }, + [44] = { 45.4, 94.4, 12, 300 }, + [45] = { 48.1, 93.1, 12, 300 }, + [46] = { 51.5, 91.3, 12, 300 }, + [47] = { 87.3, 89.3, 12, 300 }, + }, + ["lvl"] = "19-20", + }, + [215] = { + ["coords"] = { + [1] = { 52.1, 76.8, 10, 300 }, + [2] = { 50.9, 75, 10, 300 }, + [3] = { 53.1, 74.7, 10, 300 }, + [4] = { 49, 74.3, 10, 300 }, + [5] = { 50, 74, 10, 300 }, + [6] = { 56.4, 72.6, 10, 300 }, + [7] = { 49, 72.2, 10, 300 }, + [8] = { 50.7, 71.4, 10, 300 }, + [9] = { 22, 70.7, 10, 300 }, + [10] = { 48.6, 70.2, 10, 300 }, + [11] = { 24.8, 69.3, 10, 300 }, + [12] = { 22.9, 68.3, 10, 300 }, + [13] = { 20.1, 68, 10, 300 }, + [14] = { 21.2, 65.5, 10, 300 }, + [15] = { 21.3, 65.5, 10, 300 }, + [16] = { 23.9, 64.3, 10, 300 }, + }, + ["lvl"] = "24-25", + }, + [217] = { + ["coords"] = { + [1] = { 15.7, 72.6, 10, 300 }, + [2] = { 15.3, 71.3, 10, 300 }, + [3] = { 15, 68.1, 10, 300 }, + [4] = { 17.3, 67.6, 10, 300 }, + [5] = { 14.5, 67.5, 10, 300 }, + [6] = { 15.4, 66.7, 10, 300 }, + [7] = { 10.6, 55.5, 10, 300 }, + [8] = { 11.2, 54.8, 10, 300 }, + [9] = { 13.1, 47.5, 10, 300 }, + [10] = { 10.8, 46.6, 10, 300 }, + [11] = { 12.1, 46, 10, 300 }, + [12] = { 10.5, 44.7, 10, 300 }, + [13] = { 9.3, 40, 10, 300 }, + [14] = { 10.7, 38, 10, 300 }, + [15] = { 22.1, 28.2, 10, 300 }, + [16] = { 18.9, 27.3, 10, 300 }, + [17] = { 31.9, 26.6, 10, 300 }, + [18] = { 16.9, 25.8, 10, 300 }, + [19] = { 78, 24.3, 10, 300 }, + [20] = { 70.8, 21.6, 10, 300 }, + [21] = { 41.8, 20.8, 10, 300 }, + [22] = { 66.7, 20.8, 10, 300 }, + [23] = { 68.6, 20.2, 10, 300 }, + [24] = { 73.8, 20, 10, 300 }, + [25] = { 76, 19.9, 10, 300 }, + [26] = { 66.6, 18.8, 10, 270 }, + [27] = { 60.2, 18.6, 10, 300 }, + [28] = { 57.5, 18.6, 10, 300 }, + [29] = { 62.5, 18.5, 10, 300 }, + [30] = { 49.8, 18.3, 10, 300 }, + [31] = { 66.2, 18.1, 10, 270 }, + [32] = { 47.6, 17.9, 10, 300 }, + [33] = { 52.2, 16.9, 10, 300 }, + [34] = { 54.2, 16.7, 10, 300 }, + [35] = { 56.3, 14.6, 10, 300 }, + }, + ["lvl"] = "19-20", + }, + [218] = { + ["coords"] = { + [1] = { 14.6, 44.6, 10, 300 }, + [2] = { 14.8, 44.4, 10, 300 }, + [3] = { 14.5, 44.4, 10, 300 }, + }, + ["lvl"] = "24-25", + }, + [219] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "20", + }, + [220] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "17", + }, + [221] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "17", + }, + [222] = { + ["coords"] = { + [1] = { 67.4, 91.5, 11, 300 }, + [2] = { 42.9, 9.9, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "19", + }, + [223] = { + ["coords"] = { + [1] = { 70.9, 58.4, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "23", + }, + [224] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "15", + }, + [225] = { + ["coords"] = { + [1] = { 73.6, 50, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [226] = { + ["coords"] = { + [1] = { 73.9, 48.8, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [227] = { + ["coords"] = { + [1] = { 73.6, 45.3, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "26", + }, + [228] = { + ["coords"] = { + [1] = { 73, 44.4, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "24", + }, + [229] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [230] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [232] = { + ["coords"] = { + [1] = { 27.8, 98.7, 36, 300 }, + [2] = { 33.2, 34.8, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "23", + }, + [233] = { + ["coords"] = { + [1] = { 56, 31.2, 40, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [234] = { + ["coords"] = { + [1] = { 56.3, 47.5, 40, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + ["rnk"] = "1", + }, + [235] = { + ["coords"] = { + [1] = { 56.4, 30.5, 40, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [237] = { + ["coords"] = { + [1] = { 60, 19.4, 40, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [238] = { + ["coords"] = { + [1] = { 59.9, 19.4, 40, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [239] = { + ["coords"] = { + [1] = { 44.6, 80.3, 40, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [240] = { + ["coords"] = { + [1] = { 42.1, 65.9, 12, 375 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [241] = { + ["coords"] = { + [1] = { 42.1, 67.3, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [242] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "10", + }, + [243] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [244] = { + ["coords"] = { + [1] = { 34.7, 84.5, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "3", + }, + [246] = { + ["coords"] = { + [1] = { 34.5, 84.3, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "6", + }, + [247] = { + ["coords"] = { + [1] = { 43.1, 85.7, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [248] = { + ["coords"] = { + [1] = { 34.9, 83.9, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "3", + }, + [250] = { + ["coords"] = { + [1] = { 42.7, 89.2, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "6", + }, + [251] = { + ["coords"] = { + [1] = { 43.2, 89.6, 12, 10 }, + }, + ["fac"] = "A", + ["lvl"] = "2", + }, + [252] = { + ["coords"] = { + [1] = { 29.8, 86, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "2", + }, + [253] = { + ["coords"] = { + [1] = { 43.3, 65.7, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "6", + }, + [255] = { + ["coords"] = { + [1] = { 43.1, 85.5, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "6", + }, + [257] = { + ["coords"] = { + [1] = { 51.1, 38.2, 12, 270 }, + [2] = { 50.8, 38, 12, 270 }, + [3] = { 51.6, 37.9, 12, 270 }, + [4] = { 51.3, 37.7, 12, 270 }, + [5] = { 51.7, 37.7, 12, 270 }, + [6] = { 47.3, 36.8, 12, 270 }, + [7] = { 51.5, 36.6, 12, 270 }, + [8] = { 52.2, 36.4, 12, 270 }, + [9] = { 51.6, 36.4, 12, 270 }, + [10] = { 47.6, 35.9, 12, 270 }, + [11] = { 52.1, 35.8, 12, 270 }, + [12] = { 47.5, 35.8, 12, 270 }, + [13] = { 48.2, 35.8, 12, 270 }, + [14] = { 48.8, 35.7, 12, 270 }, + [15] = { 51.1, 35.6, 12, 270 }, + [16] = { 49.2, 35.3, 12, 270 }, + [17] = { 47.2, 35, 12, 270 }, + [18] = { 49.4, 34.7, 12, 270 }, + [19] = { 49.8, 34.6, 12, 270 }, + [20] = { 49.9, 34.3, 12, 270 }, + [21] = { 50.1, 34.3, 12, 270 }, + [22] = { 47.4, 34.1, 12, 270 }, + [23] = { 48.1, 34, 12, 270 }, + [24] = { 50.2, 33.8, 12, 270 }, + [25] = { 48.7, 33.8, 12, 270 }, + [26] = { 47, 33.7, 12, 270 }, + [27] = { 48.4, 33.6, 12, 270 }, + [28] = { 46.8, 33.4, 12, 270 }, + [29] = { 47.4, 33.2, 12, 270 }, + [30] = { 50.1, 33.1, 12, 270 }, + [31] = { 48.1, 33.1, 12, 270 }, + [32] = { 47.7, 32.9, 12, 270 }, + [33] = { 48.9, 32.7, 12, 270 }, + [34] = { 46.2, 32.7, 12, 270 }, + [35] = { 47.5, 32.5, 12, 270 }, + [36] = { 47.2, 32.5, 12, 270 }, + [37] = { 46.6, 32.5, 12, 270 }, + [38] = { 47.3, 32.3, 12, 270 }, + [39] = { 46.3, 32.2, 12, 270 }, + [40] = { 47.7, 32, 12, 270 }, + [41] = { 47.9, 31.6, 12, 270 }, + [42] = { 47.6, 31.4, 12, 270 }, + }, + ["lvl"] = "3", + }, + [258] = { + ["coords"] = { + [1] = { 42.4, 89.4, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [260] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "22", + }, + [261] = { + ["coords"] = { + [1] = { 74, 72.2, 12, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [262] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [263] = { + ["coords"] = { + [1] = { 71.9, 46.4, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [264] = { + ["coords"] = { + [1] = { 73.5, 46.8, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [265] = { + ["coords"] = { + [1] = { 75.8, 45.3, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [266] = { + ["coords"] = { + [1] = { 26.5, 45.3, 44, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "26", + }, + [267] = { + ["coords"] = { + [1] = { 72.5, 46.9, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "31", + }, + [268] = { + ["coords"] = { + [1] = { 72.6, 47.6, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "24", + }, + [269] = { + ["coords"] = { + [1] = { 72, 46.7, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [270] = { + ["coords"] = { + [1] = { 71.9, 47.8, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "28", + }, + [271] = { + ["coords"] = { + [1] = { 72.1, 47.3, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [272] = { + ["coords"] = { + [1] = { 73.9, 43.5, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [273] = { + ["coords"] = { + [1] = { 73.8, 44.5, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "22", + }, + [274] = { + ["coords"] = { + [1] = { 73.7, 44, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "26", + }, + [275] = { + ["coords"] = { + [1] = { 79, 44.3, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "27", + }, + [276] = { + ["coords"] = { + [1] = { 79.8, 48, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "28", + }, + [277] = { + ["coords"] = { + [1] = { 52.2, 67.8, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [278] = { + ["coords"] = { + [1] = { 79.5, 68.8, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [279] = { + ["coords"] = { + [1] = { 56.2, 64.6, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [280] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "62", + }, + [281] = { + ["coords"] = {}, + ["lvl"] = "7-8", + }, + [282] = { + ["coords"] = {}, + ["lvl"] = "7-8", + }, + [283] = { + ["coords"] = {}, + ["lvl"] = "7-8", + }, + [284] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [285] = { + ["coords"] = { + [1] = { 52, 68.7, 12, 270 }, + [2] = { 55.8, 67.7, 12, 270 }, + [3] = { 50.3, 67.6, 12, 270 }, + [4] = { 56.8, 67.4, 12, 270 }, + [5] = { 56.9, 67.4, 12, 270 }, + [6] = { 50.7, 67.1, 12, 270 }, + [7] = { 51.2, 67.1, 12, 270 }, + [8] = { 54.6, 66.9, 12, 270 }, + [9] = { 50.2, 66.9, 12, 270 }, + [10] = { 56.9, 66.9, 12, 270 }, + [11] = { 54.9, 66.8, 12, 270 }, + [12] = { 54.3, 66.8, 12, 270 }, + [13] = { 55.4, 66.8, 12, 270 }, + [14] = { 56, 66.8, 12, 270 }, + [15] = { 54.4, 66.8, 12, 270 }, + [16] = { 53.7, 66.8, 12, 270 }, + [17] = { 55.6, 66.7, 12, 270 }, + [18] = { 56.5, 66.7, 12, 270 }, + [19] = { 54.5, 66.7, 12, 270 }, + [20] = { 56.6, 66.5, 12, 270 }, + [21] = { 55, 66.4, 12, 270 }, + [22] = { 49.8, 66.4, 12, 270 }, + [23] = { 54, 66.4, 12, 270 }, + [24] = { 54.4, 66.3, 12, 270 }, + [25] = { 55.4, 66.3, 12, 270 }, + [26] = { 56.7, 66.3, 12, 270 }, + [27] = { 50.6, 66.2, 12, 270 }, + [28] = { 50.4, 66.2, 12, 270 }, + [29] = { 55.3, 66.2, 12, 270 }, + [30] = { 55.2, 66.1, 12, 270 }, + [31] = { 56.7, 65.9, 12, 270 }, + [32] = { 53.8, 65.5, 12, 270 }, + [33] = { 55, 65.2, 12, 270 }, + }, + ["lvl"] = "6-7", + }, + [286] = { + ["coords"] = {}, + ["lvl"] = "11", + }, + [287] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "62", + }, + [288] = { + ["coords"] = { + [1] = { 18.4, 56.4, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [289] = { + ["coords"] = { + [1] = { 28.1, 31.5, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [290] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "62", + }, + [291] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "62", + }, + [294] = { + ["coords"] = { + [1] = { 84.6, 69.4, 12, 285 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [295] = { + ["coords"] = { + [1] = { 43.8, 65.8, 12, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [296] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "20-21", + }, + [297] = { + ["coords"] = { + [1] = { 29.5, 61.9, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [298] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "62", + }, + [299] = { + ["coords"] = { + [1] = { 42.7, 62.8, 12, 270 }, + [2] = { 42.6, 62.2, 12, 270 }, + [3] = { 42.7, 60.9, 12, 270 }, + [4] = { 44.5, 58.3, 12, 270 }, + [5] = { 41.5, 58.2, 12, 270 }, + [6] = { 44.8, 57.5, 12, 270 }, + [7] = { 45.4, 55.4, 12, 270 }, + [8] = { 42.9, 55.4, 12, 270 }, + [9] = { 47.5, 46.9, 12, 270 }, + [10] = { 48.3, 46.8, 12, 270 }, + [11] = { 48, 45.9, 12, 270 }, + [12] = { 49.4, 45.3, 12, 270 }, + [13] = { 48.5, 45.2, 12, 270 }, + [14] = { 46.2, 45.1, 12, 270 }, + [15] = { 45.8, 45, 12, 270 }, + [16] = { 46.6, 44.6, 12, 270 }, + [17] = { 50.9, 44.4, 12, 270 }, + [18] = { 45.6, 43.8, 12, 270 }, + [19] = { 46.7, 43.7, 12, 270 }, + [20] = { 45.7, 43.1, 12, 270 }, + [21] = { 45.4, 42.4, 12, 270 }, + [22] = { 46.2, 42.4, 12, 270 }, + [23] = { 45.8, 42.3, 12, 270 }, + [24] = { 51.9, 41.4, 12, 270 }, + [25] = { 46.7, 40.9, 12, 270 }, + [26] = { 45.9, 40.8, 12, 270 }, + [27] = { 45.7, 40.6, 12, 270 }, + [28] = { 47.7, 40.2, 12, 270 }, + [29] = { 46.2, 40.1, 12, 270 }, + [30] = { 46.8, 39.8, 12, 270 }, + [31] = { 47.3, 39.6, 12, 270 }, + [32] = { 48.1, 39.6, 12, 270 }, + [33] = { 45.5, 39.1, 12, 270 }, + [34] = { 48.1, 38.8, 12, 270 }, + [35] = { 46.2, 38.6, 12, 270 }, + [36] = { 47.1, 38.6, 12, 270 }, + [37] = { 49.1, 38.3, 12, 270 }, + [38] = { 45.9, 38.2, 12, 270 }, + [39] = { 46.6, 37.9, 12, 270 }, + [40] = { 47, 37.9, 12, 270 }, + [41] = { 49.5, 37.9, 12, 270 }, + [42] = { 47.6, 37.8, 12, 270 }, + [43] = { 46.9, 37.5, 12, 270 }, + [44] = { 48.4, 37.4, 12, 270 }, + [45] = { 46.2, 37.2, 12, 270 }, + }, + ["lvl"] = "1", + }, + [300] = { + ["coords"] = { + [1] = { 36.8, 83.8, 10, 300 }, + [2] = { 37.3, 1.3, 33, 300 }, + }, + ["lvl"] = "33", + }, + [301] = { + ["coords"] = {}, + ["lvl"] = "31", + }, + [302] = { + ["coords"] = { + [1] = { 82, 59.1, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [303] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "62", + }, + [304] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [305] = { + ["coords"] = { + [1] = { 84.9, 64.7, 12, 270 }, + [2] = { 65.3, 51.9, 15, 300 }, + [3] = { 52.3, 55.1, 267, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [306] = { + ["coords"] = { + [1] = { 84.9, 65, 12, 270 }, + [2] = { 65.1, 51.9, 15, 300 }, + [3] = { 52.5, 55.4, 267, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [307] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [308] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [309] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [311] = { + ["coords"] = { + [1] = { 7.8, 34.1, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [313] = { + ["coords"] = { + [1] = { 65.2, 69.7, 12, 285 }, + }, + ["fac"] = "A", + ["lvl"] = "24", + }, + [314] = { + ["coords"] = {}, + ["lvl"] = "31", + ["rnk"] = "1", + }, + [315] = { + ["coords"] = { + [1] = { 77.3, 36.2, 10, 300 }, + }, + ["lvl"] = "35", + }, + [318] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [319] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [320] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [321] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [322] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [323] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "10", + }, + [324] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "10", + }, + [325] = { + ["coords"] = { + [1] = { 72.3, 48.2, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [326] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "10", + }, + [327] = { + ["coords"] = { + [1] = { 41.7, 78, 12, 270 }, + }, + ["lvl"] = "8", + }, + [328] = { + ["coords"] = { + [1] = { 43.2, 66.2, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "13", + }, + [329] = { + ["coords"] = {}, + ["lvl"] = "54-55", + }, + [330] = { + ["coords"] = { + [1] = { 69.7, 79.6, 12, 270 }, + }, + ["lvl"] = "9", + }, + [331] = { + ["coords"] = { + [1] = { 38.2, 81.9, 1519, 490 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [332] = { + ["coords"] = { + [1] = { 75.8, 59.8, 1519, 2100 }, + }, + ["fac"] = "A", + ["lvl"] = "62", + }, + [333] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "44", + }, + [334] = { + ["coords"] = { + [1] = { 69.6, 55.8, 44, 900 }, + }, + ["lvl"] = "26", + ["rnk"] = "1", + }, + [335] = { + ["coords"] = { + [1] = { 69.7, 56.1, 44, 900 }, + }, + ["lvl"] = "24", + ["rnk"] = "1", + }, + [336] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "62", + }, + [338] = { + ["coords"] = { + [1] = { 41.5, 64.4, 1519, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "44", + }, + [339] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "30", + }, + [340] = { + ["coords"] = { + [1] = { 74.7, 36.5, 1519, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [341] = { + ["coords"] = { + [1] = { 32.1, 48.6, 44, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [342] = { + ["coords"] = { + [1] = { 21.9, 46.3, 44, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [343] = { + ["coords"] = { + [1] = { 22.7, 43.8, 44, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "19", + }, + [344] = { + ["coords"] = { + [1] = { 30, 44.5, 44, 500 }, + }, + ["fac"] = "A", + ["lvl"] = "36", + }, + [345] = { + ["coords"] = { + [1] = { 16, 49.3, 44, 300 }, + }, + ["lvl"] = "24", + }, + [346] = { + ["coords"] = { + [1] = { 26.5, 44, 44, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "21", + }, + [347] = { + ["coords"] = { + [1] = { 74.2, 12, 130, 900 }, + [2] = { 56.1, 85.3, 1497, 900 }, + }, + ["fac"] = "H", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [348] = { + ["coords"] = { + [1] = { 26.2, 50.8, 44, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [349] = { + ["coords"] = { + [1] = { 28.4, 12.6, 44, 30 }, + [2] = { 65.6, 88.4, 46, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + ["rnk"] = "1", + }, + [351] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "1-2", + }, + [352] = { + ["coords"] = { + [1] = { 66.3, 62.1, 1519, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [353] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "35", + }, + [354] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "10", + }, + [356] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [358] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [359] = { + ["coords"] = { + [1] = { 69.6, 12.9, 1637, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [361] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [364] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [365] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [370] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "1-2", + }, + [371] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "1", + }, + [372] = { + ["coords"] = { + [1] = { 37.1, 47.2, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "16", + }, + [373] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "62", + }, + [374] = { + ["coords"] = { + [1] = { 77.3, 48.7, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [375] = { + ["coords"] = { + [1] = { 49.8, 39.5, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [376] = { + ["coords"] = { + [1] = { 38.6, 26.1, 1519, 490 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [377] = { + ["coords"] = { + [1] = { 43.3, 65.7, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "13", + }, + [379] = { + ["coords"] = { + [1] = { 26.6, 44.3, 44, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [380] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "25", + }, + [381] = { + ["coords"] = { + [1] = { 27.7, 47.4, 44, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [382] = { + ["coords"] = { + [1] = { 33.5, 49, 44, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [383] = { + ["coords"] = { + [1] = { 47.5, 62.2, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "7", + }, + [384] = { + ["coords"] = { + [1] = { 84.2, 65.5, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [385] = { + ["coords"] = { + [1] = { 84.2, 65.5, 12, 180 }, + [2] = { 84.9, 64.9, 12, 300 }, + [3] = { 83.5, 63.8, 12, 270 }, + [4] = { 88.4, 70.9, 44, 300 }, + [5] = { 88.2, 70.1, 44, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [386] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "20", + }, + [387] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "62", + }, + [388] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "62", + }, + [389] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "62", + }, + [390] = { + ["coords"] = { + [1] = { 69.7, 79.4, 12, 270 }, + [2] = { 69.6, 79.1, 12, 270 }, + }, + ["lvl"] = "7", + }, + [391] = { + ["coords"] = { + [1] = { 29.3, 75.9, 40, 300 }, + }, + ["lvl"] = "20", + }, + [392] = { + ["coords"] = { + [1] = { 30, 86, 40, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [393] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "10", + }, + [395] = { + ["coords"] = { + [1] = { 34.3, 57.8, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [397] = { + ["coords"] = { + [1] = { 80.1, 49.5, 44, 300 }, + }, + ["lvl"] = "27", + ["rnk"] = "1", + }, + [399] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "1-2", + }, + [400] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "1-2", + }, + [401] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "1-2", + }, + [402] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "1-2", + }, + [403] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "1-2", + }, + [404] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "1-2", + }, + [405] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "1-2", + }, + [406] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "1-2", + }, + [407] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "1-2", + }, + [408] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "1-2", + }, + [409] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "1-2", + }, + [410] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "1-2", + }, + [411] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "1-2", + }, + [412] = { + ["coords"] = {}, + ["lvl"] = "35", + ["rnk"] = "1", + }, + [415] = { + ["coords"] = { + [1] = { 31, 47.3, 44, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [416] = { + ["coords"] = {}, + ["lvl"] = "5", + }, + [417] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "60", + }, + [418] = { + ["coords"] = {}, + ["lvl"] = "20", + }, + [420] = { + ["coords"] = { + [1] = { 69, 21, 148, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [421] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [422] = { + ["coords"] = { + [1] = { 48.3, 72.2, 44, 300 }, + [2] = { 48.4, 71.5, 44, 300 }, + [3] = { 47.7, 71.2, 44, 300 }, + [4] = { 50.3, 70.9, 44, 300 }, + [5] = { 50.2, 70.3, 44, 300 }, + [6] = { 48.7, 69.4, 44, 300 }, + [7] = { 59.4, 62.5, 44, 300 }, + [8] = { 57.7, 62.1, 44, 300 }, + [9] = { 60.9, 61.6, 44, 300 }, + [10] = { 59.4, 61.1, 44, 300 }, + [11] = { 57.9, 60.8, 44, 300 }, + [12] = { 56, 60.3, 44, 300 }, + [13] = { 58.5, 59.5, 44, 300 }, + [14] = { 40.5, 55.7, 44, 300 }, + [15] = { 43.9, 54.2, 44, 300 }, + [16] = { 46.3, 51.3, 44, 300 }, + [17] = { 42.5, 50.5, 44, 300 }, + [18] = { 40.5, 49, 44, 300 }, + [19] = { 43.5, 49, 44, 300 }, + [20] = { 42, 48.8, 44, 300 }, + [21] = { 40.1, 48.2, 44, 300 }, + [22] = { 39.1, 46.8, 44, 300 }, + [23] = { 41.9, 46.7, 44, 300 }, + [24] = { 40.2, 45, 44, 300 }, + }, + ["lvl"] = "18-19", + }, + [423] = { + ["coords"] = { + [1] = { 29.4, 84.4, 44, 300 }, + [2] = { 29.9, 84.1, 44, 300 }, + [3] = { 31.1, 84, 44, 300 }, + [4] = { 34.5, 82.9, 44, 300 }, + [5] = { 32.4, 82.8, 44, 300 }, + [6] = { 32.1, 82.5, 44, 300 }, + [7] = { 30.5, 81.3, 44, 300 }, + [8] = { 27.3, 80.4, 44, 300 }, + [9] = { 32.6, 79.6, 44, 300 }, + [10] = { 28.5, 79.5, 44, 300 }, + [11] = { 41.9, 71.7, 44, 300 }, + [12] = { 43.6, 71.1, 44, 300 }, + [13] = { 16.6, 66.7, 44, 300 }, + [14] = { 14.5, 65.8, 44, 300 }, + [15] = { 16.8, 65.1, 44, 300 }, + [16] = { 15.3, 63.9, 44, 300 }, + [17] = { 16.7, 63, 44, 300 }, + [18] = { 16.4, 62, 44, 300 }, + [19] = { 14.8, 61.5, 44, 300 }, + [20] = { 15.1, 61, 44, 300 }, + [21] = { 15.6, 59.5, 44, 300 }, + }, + ["lvl"] = "15-16", + }, + [424] = { + ["coords"] = { + [1] = { 29.1, 84.4, 44, 300 }, + [2] = { 30.9, 84.2, 44, 300 }, + [3] = { 35.3, 83.8, 44, 300 }, + [4] = { 29.3, 83.7, 44, 300 }, + [5] = { 34.7, 83.1, 44, 300 }, + [6] = { 32.1, 82.9, 44, 300 }, + [7] = { 34.7, 82.8, 44, 300 }, + [8] = { 32.1, 82.4, 44, 300 }, + [9] = { 32.3, 82.3, 44, 300 }, + [10] = { 31.3, 81.1, 44, 300 }, + [11] = { 31, 79.5, 44, 300 }, + [12] = { 43.2, 72.1, 44, 300 }, + [13] = { 41.8, 71.8, 44, 300 }, + [14] = { 43.3, 71.3, 44, 300 }, + [15] = { 44.2, 71.1, 44, 300 }, + [16] = { 43.2, 70.6, 44, 300 }, + [17] = { 30.5, 81.3, 44, 300 }, + [18] = { 27.3, 80.4, 44, 300 }, + [19] = { 32.6, 79.6, 44, 300 }, + [20] = { 28.5, 79.5, 44, 300 }, + }, + ["lvl"] = "16-17", + }, + [426] = { + ["coords"] = { + [1] = { 20.7, 39.9, 44, 300 }, + [2] = { 21.9, 38.3, 44, 300 }, + [3] = { 29.5, 37.9, 44, 300 }, + [4] = { 23.9, 37.8, 44, 300 }, + [5] = { 21.2, 36.4, 44, 300 }, + [6] = { 21.5, 36.2, 44, 300 }, + [7] = { 21.2, 36.1, 44, 300 }, + [8] = { 26.6, 35.2, 44, 300 }, + [9] = { 23.7, 35.2, 44, 300 }, + [10] = { 39.7, 35, 44, 300 }, + [11] = { 38.6, 34.7, 44, 300 }, + [12] = { 20.1, 33.3, 44, 300 }, + [13] = { 24.1, 32.6, 44, 300 }, + [14] = { 40.7, 32, 44, 300 }, + [15] = { 38.9, 31.8, 44, 300 }, + [16] = { 38.5, 31.7, 44, 300 }, + [17] = { 38.8, 31.6, 44, 300 }, + [18] = { 39.5, 31.4, 44, 300 }, + }, + ["lvl"] = "17-18", + }, + [428] = { + ["coords"] = { + [1] = { 60.8, 78.3, 44, 300 }, + [2] = { 46, 77.5, 44, 300 }, + [3] = { 55.3, 76.8, 44, 300 }, + [4] = { 63.9, 76.4, 44, 300 }, + [5] = { 61.5, 76.4, 44, 300 }, + [6] = { 57.1, 76.2, 44, 300 }, + [7] = { 59.8, 76.1, 44, 300 }, + [8] = { 50.6, 74.9, 44, 300 }, + [9] = { 55.3, 73.4, 44, 300 }, + [10] = { 35.2, 70.5, 44, 300 }, + [11] = { 55.2, 46.1, 44, 300 }, + [12] = { 57.3, 44.9, 44, 300 }, + [13] = { 57.2, 41.7, 44, 300 }, + [14] = { 54.5, 39.8, 44, 300 }, + [15] = { 52.6, 39, 44, 300 }, + [16] = { 45.8, 35.8, 44, 300 }, + [17] = { 23.9, 35.2, 44, 300 }, + [18] = { 48.6, 35, 44, 300 }, + [19] = { 49.7, 33.8, 44, 300 }, + [20] = { 47.3, 32.5, 44, 300 }, + [21] = { 42.2, 32.4, 44, 300 }, + }, + ["lvl"] = "18-19", + }, + [429] = { + ["coords"] = { + [1] = { 83.4, 57.9, 44, 300 }, + [2] = { 81.3, 56.5, 44, 300 }, + [3] = { 80.4, 55.2, 44, 300 }, + [4] = { 81.1, 54.8, 44, 300 }, + [5] = { 80.3, 54.3, 44, 300 }, + [6] = { 79.8, 54.3, 44, 300 }, + [7] = { 82.4, 53.4, 44, 300 }, + [8] = { 80.2, 52.7, 44, 300 }, + [9] = { 84.8, 52.7, 44, 300 }, + [10] = { 80, 49.8, 44, 300 }, + [11] = { 80.3, 49.5, 44, 300 }, + [12] = { 79, 49.4, 44, 300 }, + [13] = { 79.5, 48.8, 44, 300 }, + [14] = { 79.1, 48.7, 44, 300 }, + [15] = { 85.5, 48.1, 44, 300 }, + [16] = { 79.1, 47.6, 44, 300 }, + [17] = { 79.8, 46.3, 44, 300 }, + [18] = { 79.7, 45.2, 44, 300 }, + [19] = { 80, 44.3, 44, 300 }, + [20] = { 80, 38.6, 44, 300 }, + [21] = { 74, 35.9, 44, 300 }, + [22] = { 76.2, 34.7, 44, 300 }, + [23] = { 75.5, 30.2, 44, 300 }, + }, + ["lvl"] = "25-26", + }, + [430] = { + ["coords"] = { + [1] = { 23.7, 37.6, 44, 300 }, + [2] = { 36.1, 37.4, 44, 300 }, + [3] = { 27, 37.2, 44, 300 }, + [4] = { 37.5, 36.2, 44, 300 }, + [5] = { 21.4, 35.5, 44, 300 }, + [6] = { 41.8, 34, 44, 300 }, + [7] = { 20.2, 33, 44, 300 }, + [8] = { 24.8, 31.7, 44, 300 }, + [9] = { 39.2, 30.8, 44, 300 }, + [10] = { 23.9, 29.8, 44, 300 }, + [11] = { 32.3, 29.4, 44, 300 }, + [12] = { 28.1, 28.9, 44, 300 }, + [13] = { 28.5, 28.5, 44, 300 }, + [14] = { 28.5, 27.9, 44, 300 }, + [15] = { 23.3, 27.4, 44, 300 }, + [16] = { 22.7, 26.5, 44, 300 }, + [17] = { 35.1, 25.7, 44, 300 }, + [18] = { 33, 25.6, 44, 300 }, + [19] = { 34.5, 25.4, 44, 300 }, + [20] = { 34.5, 25.1, 44, 300 }, + [21] = { 31.1, 23.5, 44, 300 }, + [22] = { 27.1, 23, 44, 300 }, + [23] = { 25.6, 22.9, 44, 300 }, + [24] = { 33.6, 22.6, 44, 300 }, + [25] = { 29.4, 22, 44, 300 }, + [26] = { 27.7, 22, 44, 300 }, + [27] = { 16.9, 17.7, 44, 300 }, + [28] = { 20.7, 39.9, 44, 300 }, + [29] = { 23.9, 37.8, 44, 300 }, + [30] = { 26.6, 35.2, 44, 300 }, + [31] = { 23.7, 35.2, 44, 300 }, + [32] = { 39.7, 35, 44, 300 }, + }, + ["lvl"] = "18-19", + }, + [431] = { + ["coords"] = { + [1] = { 82.8, 59.3, 44, 300 }, + [2] = { 83.9, 58, 44, 300 }, + [3] = { 83.6, 57.5, 44, 300 }, + [4] = { 84.6, 57.4, 44, 300 }, + [5] = { 84.7, 56.4, 44, 300 }, + [6] = { 81.8, 55.9, 44, 300 }, + [7] = { 77.5, 55.5, 44, 300 }, + [8] = { 81.7, 54.9, 44, 300 }, + [9] = { 77.1, 53.9, 44, 300 }, + [10] = { 78.6, 52.9, 44, 300 }, + [11] = { 79.7, 49.5, 44, 300 }, + [12] = { 81, 49.1, 44, 300 }, + [13] = { 81, 48.6, 44, 300 }, + [14] = { 80.3, 48.6, 44, 300 }, + [15] = { 82.2, 47.8, 44, 300 }, + [16] = { 80.1, 37.7, 44, 300 }, + [17] = { 74.3, 36.2, 44, 300 }, + [18] = { 74.2, 35.5, 44, 300 }, + [19] = { 75.9, 30, 44, 300 }, + }, + ["lvl"] = "25-26", + }, + [432] = { + ["coords"] = { + [1] = { 73.5, 54.9, 44, 300 }, + [2] = { 75.1, 46.3, 44, 300 }, + [3] = { 77.1, 45.5, 44, 300 }, + [4] = { 81.4, 44.2, 44, 300 }, + [5] = { 76.2, 41.4, 44, 300 }, + [6] = { 79, 41, 44, 300 }, + [7] = { 79.2, 40.9, 44, 300 }, + [8] = { 80.3, 40.6, 44, 300 }, + [9] = { 79, 40.4, 44, 300 }, + [10] = { 74.9, 38.9, 44, 300 }, + [11] = { 79.9, 37.9, 44, 300 }, + [12] = { 76.6, 37.4, 44, 300 }, + [13] = { 78.9, 37, 44, 300 }, + [14] = { 81.2, 36.3, 44, 300 }, + [15] = { 80.3, 35.1, 44, 300 }, + }, + ["lvl"] = "23-24", + }, + [433] = { + ["coords"] = { + [1] = { 72.5, 58.9, 44, 300 }, + [2] = { 71.5, 58.9, 44, 300 }, + [3] = { 73.4, 55.7, 44, 300 }, + [4] = { 73.5, 55.4, 44, 300 }, + [5] = { 73.3, 54.8, 44, 300 }, + [6] = { 77.4, 54.5, 44, 300 }, + [7] = { 74.9, 52.2, 44, 300 }, + [8] = { 72.3, 51.5, 44, 300 }, + [9] = { 75.9, 51.1, 44, 300 }, + [10] = { 75.2, 49.8, 44, 300 }, + [11] = { 74.2, 49.2, 44, 300 }, + [12] = { 75.8, 47.5, 44, 300 }, + [13] = { 75.7, 47.2, 44, 300 }, + [14] = { 68.7, 45.7, 44, 300 }, + [15] = { 76.8, 45.7, 44, 300 }, + [16] = { 76.6, 45.3, 44, 300 }, + [17] = { 74.7, 44.1, 44, 300 }, + [18] = { 71.9, 43.9, 44, 300 }, + [19] = { 74.2, 40.4, 44, 300 }, + [20] = { 72.3, 40.4, 44, 300 }, + }, + ["lvl"] = "22-23", + }, + [434] = { + ["coords"] = { + [1] = { 73, 58.4, 44, 300 }, + [2] = { 77.9, 55.4, 44, 300 }, + [3] = { 72.7, 54.8, 44, 300 }, + [4] = { 71.4, 54.2, 44, 300 }, + [5] = { 73.4, 53.9, 44, 300 }, + [6] = { 75, 50, 44, 300 }, + [7] = { 75, 49.6, 44, 300 }, + [8] = { 75.6, 46.9, 44, 300 }, + [9] = { 75.9, 46.8, 44, 300 }, + [10] = { 74.2, 40.4, 44, 300 }, + [11] = { 72.3, 40.4, 44, 300 }, + }, + ["lvl"] = "21-22", + }, + [435] = { + ["coords"] = { + [1] = { 28.4, 17.6, 44, 300 }, + [2] = { 28.2, 16.8, 44, 300 }, + [3] = { 27.3, 16.4, 44, 300 }, + [4] = { 27.5, 16.3, 44, 300 }, + [5] = { 30.6, 15.5, 44, 300 }, + [6] = { 28.6, 15.4, 44, 300 }, + [7] = { 29.6, 14.1, 44, 300 }, + [8] = { 28.7, 13.9, 44, 300 }, + [9] = { 31.7, 13.1, 44, 300 }, + [10] = { 31.4, 12.8, 44, 300 }, + [11] = { 29.4, 12, 44, 300 }, + [12] = { 28.6, 11.7, 44, 300 }, + [13] = { 28.6, 11.5, 44, 300 }, + [14] = { 29.6, 11.2, 44, 300 }, + [15] = { 31.4, 11, 44, 300 }, + [16] = { 30.4, 9.9, 44, 300 }, + [17] = { 27, 9.7, 44, 300 }, + [18] = { 34.8, 9.1, 44, 300 }, + [19] = { 30.5, 8.8, 44, 300 }, + [20] = { 29.5, 8.6, 44, 300 }, + [21] = { 26.6, 8.2, 44, 300 }, + [22] = { 34.4, 7.8, 44, 300 }, + [23] = { 35.7, 7.7, 44, 300 }, + [24] = { 31, 7.2, 44, 300 }, + [25] = { 32.1, 7, 44, 300 }, + [26] = { 34.4, 6.7, 44, 300 }, + [27] = { 31.4, 5.7, 44, 300 }, + [28] = { 66.3, 88, 46, 300 }, + [29] = { 65.7, 87.8, 46, 300 }, + [30] = { 65.7, 87.6, 46, 300 }, + [31] = { 66.5, 87.4, 46, 300 }, + [32] = { 67.8, 87.2, 46, 300 }, + [33] = { 67, 86.4, 46, 300 }, + [34] = { 64.5, 86.3, 46, 300 }, + [35] = { 70.3, 85.8, 46, 300 }, + [36] = { 67.1, 85.6, 46, 300 }, + [37] = { 66.4, 85.5, 46, 300 }, + [38] = { 64.2, 85.2, 46, 300 }, + [39] = { 70, 84.9, 46, 300 }, + [40] = { 71, 84.8, 46, 300 }, + [41] = { 67.5, 84.4, 46, 300 }, + [42] = { 68.3, 84.3, 46, 300 }, + [43] = { 70, 84.1, 46, 300 }, + [44] = { 67.8, 83.3, 46, 300 }, + }, + ["lvl"] = "24-25", + }, + [436] = { + ["coords"] = { + [1] = { 69.5, 59.4, 44, 900 }, + [2] = { 68.2, 59, 44, 900 }, + [3] = { 68.6, 58.5, 44, 900 }, + [4] = { 69.5, 58.4, 44, 900 }, + [5] = { 69.9, 57.4, 44, 900 }, + [6] = { 66.3, 57.3, 44, 900 }, + [7] = { 66.1, 56.9, 44, 900 }, + [8] = { 69.1, 56.8, 44, 900 }, + [9] = { 68.3, 56.3, 44, 900 }, + [10] = { 67.1, 56.3, 44, 900 }, + [11] = { 69, 55.5, 44, 900 }, + [12] = { 69.3, 55.5, 44, 900 }, + [13] = { 69, 55.4, 44, 900 }, + [14] = { 65.4, 54.8, 44, 900 }, + [15] = { 68.2, 54.6, 44, 900 }, + [16] = { 69.7, 54.1, 44, 900 }, + [17] = { 67.1, 54.1, 44, 900 }, + [18] = { 69.8, 54, 44, 900 }, + }, + ["lvl"] = "22-23", + ["rnk"] = "1", + }, + [437] = { + ["coords"] = { + [1] = { 78.8, 69.2, 44, 300 }, + [2] = { 76.1, 69.1, 44, 300 }, + [3] = { 77, 67.2, 44, 300 }, + [4] = { 77.8, 67, 44, 300 }, + [5] = { 77.2, 66.4, 44, 300 }, + [6] = { 60.2, 65.6, 44, 300 }, + [7] = { 79.7, 64.5, 44, 300 }, + [8] = { 43.5, 18.4, 44, 300 }, + [9] = { 43.5, 18.2, 44, 300 }, + [10] = { 48.2, 16.5, 44, 300 }, + [11] = { 44.4, 12.4, 44, 300 }, + }, + ["lvl"] = "21-22", + }, + [440] = { + ["coords"] = { + [1] = { 77.6, 86.1, 44, 300 }, + [2] = { 75.1, 83.8, 44, 300 }, + [3] = { 75.6, 83, 44, 300 }, + [4] = { 76.3, 82.7, 44, 300 }, + [5] = { 75, 81.4, 44, 300 }, + [6] = { 76.2, 80.5, 44, 300 }, + [7] = { 70.7, 78.7, 44, 300 }, + [8] = { 73.5, 78.5, 44, 300 }, + [9] = { 73.9, 78.3, 44, 300 }, + [10] = { 71.4, 74.8, 44, 300 }, + [11] = { 76.7, 74.4, 44, 300 }, + [12] = { 62.5, 45.6, 44, 300 }, + [13] = { 62.4, 45.3, 44, 300 }, + [14] = { 59.4, 44.3, 44, 300 }, + [15] = { 59, 43.7, 44, 300 }, + [16] = { 61.1, 43.4, 44, 300 }, + [17] = { 61, 42.8, 44, 300 }, + [18] = { 59.6, 42.2, 44, 300 }, + [19] = { 59.8, 42, 44, 300 }, + [20] = { 40.6, 41.4, 44, 300 }, + [21] = { 62.4, 41.4, 44, 300 }, + [22] = { 38.2, 41.2, 44, 300 }, + }, + ["lvl"] = "19-20", + }, + [441] = { + ["coords"] = { + [1] = { 27, 79.8, 44, 300 }, + [2] = { 61.4, 78.6, 44, 300 }, + [3] = { 57.7, 78.4, 44, 300 }, + [4] = { 50.1, 78.1, 44, 300 }, + [5] = { 43.5, 78, 44, 300 }, + [6] = { 48.3, 77.4, 44, 300 }, + [7] = { 57.9, 77.3, 44, 300 }, + [8] = { 33.9, 76.4, 44, 300 }, + [9] = { 65.9, 76.3, 44, 300 }, + [10] = { 53.8, 76.2, 44, 300 }, + [11] = { 66.7, 76, 44, 300 }, + [12] = { 30.7, 75.7, 44, 300 }, + [13] = { 27.8, 75.6, 44, 300 }, + [14] = { 51.9, 75.3, 44, 300 }, + [15] = { 60.5, 75.1, 44, 300 }, + [16] = { 62.2, 75.1, 44, 300 }, + [17] = { 58.6, 74.8, 44, 300 }, + [18] = { 32, 74.8, 44, 300 }, + [19] = { 27.4, 74.5, 44, 300 }, + [20] = { 36, 73.9, 44, 300 }, + [21] = { 54.8, 73.5, 44, 300 }, + [22] = { 34.5, 73.1, 44, 300 }, + [23] = { 37.8, 72.8, 44, 300 }, + [24] = { 36.4, 72.7, 44, 300 }, + [25] = { 34.9, 68.8, 44, 300 }, + [26] = { 33.3, 67, 44, 300 }, + [27] = { 33.4, 63.8, 44, 300 }, + [28] = { 35.8, 63.3, 44, 300 }, + [29] = { 23.9, 63.2, 44, 300 }, + [30] = { 37, 63, 44, 300 }, + [31] = { 27.7, 62.8, 44, 300 }, + [32] = { 43.6, 40.9, 44, 300 }, + [33] = { 46.3, 35.4, 44, 300 }, + [34] = { 42.4, 33, 44, 300 }, + [35] = { 42.6, 29.6, 44, 300 }, + [36] = { 23.9, 35.2, 44, 300 }, + }, + ["lvl"] = "17-18", + }, + [442] = { + ["coords"] = { + [1] = { 98.2, 11.6, 10, 300 }, + [2] = { 95.1, 80.7, 12, 300 }, + [3] = { 96.2, 77.9, 12, 300 }, + [4] = { 95, 75.6, 12, 300 }, + [5] = { 95.7, 75.5, 12, 300 }, + [6] = { 11.4, 93.3, 44, 300 }, + [7] = { 13.3, 93.1, 44, 300 }, + [8] = { 10, 86.4, 44, 300 }, + [9] = { 12.9, 85.2, 44, 300 }, + [10] = { 9, 85.1, 44, 300 }, + [11] = { 13.8, 82.1, 44, 300 }, + [12] = { 10.7, 80.6, 44, 300 }, + [13] = { 11.2, 79.6, 44, 300 }, + [14] = { 12.6, 78.2, 44, 300 }, + [15] = { 8.8, 77, 44, 300 }, + [16] = { 12.4, 77, 44, 300 }, + [17] = { 9.9, 76.8, 44, 300 }, + [18] = { 26.6, 75.8, 44, 300 }, + [19] = { 22.9, 75.7, 44, 300 }, + [20] = { 14.1, 75.7, 44, 300 }, + [21] = { 35.2, 75.2, 44, 300 }, + [22] = { 11.7, 72.7, 44, 300 }, + [23] = { 19.4, 72.3, 44, 300 }, + [24] = { 18.1, 71.7, 44, 300 }, + [25] = { 22.2, 67.2, 44, 300 }, + [26] = { 22.4, 66.4, 44, 300 }, + [27] = { 20.1, 65.4, 44, 300 }, + }, + ["lvl"] = "15-16", + }, + [444] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [445] = { + ["coords"] = { + [1] = { 25.7, 23.4, 44, 300 }, + [2] = { 27.2, 23.1, 44, 300 }, + [3] = { 27.8, 21.8, 44, 300 }, + [4] = { 27.4, 21.7, 44, 300 }, + [5] = { 27.5, 21.4, 44, 300 }, + [6] = { 26.5, 21.3, 44, 300 }, + [7] = { 17.2, 17.8, 44, 300 }, + }, + ["lvl"] = "21-22", + }, + [446] = { + ["coords"] = { + [1] = { 28.5, 31.5, 44, 300 }, + [2] = { 29.9, 31.2, 44, 300 }, + [3] = { 19.4, 30.8, 44, 300 }, + [4] = { 28.3, 30.5, 44, 300 }, + [5] = { 28.9, 30.2, 44, 300 }, + [6] = { 27.4, 29.4, 44, 300 }, + [7] = { 32.4, 29.2, 44, 300 }, + [8] = { 28.3, 28.4, 44, 300 }, + [9] = { 35.3, 28, 44, 300 }, + [10] = { 28.3, 27.8, 44, 300 }, + [11] = { 27.5, 27.4, 44, 300 }, + [12] = { 23.3, 26.8, 44, 300 }, + [13] = { 22.7, 26.5, 44, 300 }, + [14] = { 23.5, 26.2, 44, 300 }, + [15] = { 19.4, 25.9, 44, 300 }, + [16] = { 28.8, 25.6, 44, 300 }, + [17] = { 34.1, 25.3, 44, 300 }, + [18] = { 23.6, 25.2, 44, 300 }, + [19] = { 34.3, 25, 44, 300 }, + [20] = { 34, 24.8, 44, 300 }, + [21] = { 23.5, 24.1, 44, 300 }, + [22] = { 31.9, 24, 44, 300 }, + [23] = { 19.5, 23.9, 44, 300 }, + [24] = { 18.3, 23.1, 44, 300 }, + [25] = { 31, 22.8, 44, 300 }, + [26] = { 16.7, 21.9, 44, 300 }, + [27] = { 19.5, 21.7, 44, 300 }, + [28] = { 18.5, 20.3, 44, 300 }, + [29] = { 17.6, 19.9, 44, 300 }, + [30] = { 23.1, 18.3, 44, 300 }, + [31] = { 18.6, 18.2, 44, 300 }, + [32] = { 21.9, 15.3, 44, 300 }, + [33] = { 60.8, 90.4, 46, 300 }, + [34] = { 32.3, 29.4, 44, 300 }, + [35] = { 35.1, 25.7, 44, 300 }, + }, + ["lvl"] = "19-20", + }, + [448] = { + ["coords"] = { + [1] = { 26.4, 93.6, 12, 180 }, + [2] = { 27.4, 92.7, 12, 180 }, + [3] = { 25.8, 89.8, 12, 180 }, + [4] = { 27.1, 86.8, 12, 180 }, + [5] = { 26.8, 86.7, 12, 180 }, + }, + ["lvl"] = "11", + ["rnk"] = "1", + }, + [449] = { + ["coords"] = { + [1] = { 46.6, 81.4, 40, 300 }, + [2] = { 36.2, 80.3, 40, 300 }, + [3] = { 49.5, 78.9, 40, 300 }, + [4] = { 50.5, 78.8, 40, 300 }, + [5] = { 51.5, 78.1, 40, 300 }, + [6] = { 36.9, 75.8, 40, 300 }, + [7] = { 37.2, 75.3, 40, 300 }, + [8] = { 37.7, 75.2, 40, 300 }, + [9] = { 36.4, 74.6, 40, 300 }, + [10] = { 38.7, 73.4, 40, 300 }, + [11] = { 35.2, 71.8, 40, 300 }, + [12] = { 60.5, 59.3, 40, 300 }, + [13] = { 60.7, 58.8, 40, 300 }, + [14] = { 49.2, 78.9, 40, 300 }, + [15] = { 50.9, 78.6, 40, 300 }, + [16] = { 46.4, 78.2, 40, 300 }, + [17] = { 51.7, 77.2, 40, 300 }, + [18] = { 50.9, 75.1, 40, 300 }, + }, + ["lvl"] = "16-17", + }, + [450] = { + ["coords"] = { + [1] = { 37.1, 82, 40, 300 }, + [2] = { 53.1, 79.1, 40, 300 }, + }, + ["lvl"] = "18-19", + }, + [452] = { + ["coords"] = { + [1] = { 56.3, 75.3, 40, 300 }, + [2] = { 59.4, 74.4, 40, 300 }, + [3] = { 56.5, 74.3, 40, 300 }, + [4] = { 59.5, 74.3, 40, 300 }, + [5] = { 59.3, 74.3, 40, 300 }, + [6] = { 56.3, 74.2, 40, 300 }, + [7] = { 59.3, 74.1, 40, 300 }, + [8] = { 58.7, 73.9, 40, 300 }, + [9] = { 56.2, 73.5, 40, 300 }, + [10] = { 57.2, 73, 40, 300 }, + [11] = { 61.1, 71.2, 40, 300 }, + [12] = { 56.2, 71, 40, 300 }, + [13] = { 62.6, 70.8, 40, 300 }, + [14] = { 60.7, 70.7, 40, 300 }, + [15] = { 57.2, 70.7, 40, 300 }, + [16] = { 64.6, 70.5, 40, 300 }, + [17] = { 60.6, 70.5, 40, 300 }, + [18] = { 63.8, 70.4, 40, 300 }, + [19] = { 63.9, 70.3, 40, 300 }, + [20] = { 56.3, 70.2, 40, 300 }, + [21] = { 64, 70.1, 40, 300 }, + [22] = { 63.8, 70, 40, 300 }, + [23] = { 56.3, 70, 40, 300 }, + [24] = { 60, 69.9, 40, 300 }, + [25] = { 56.5, 69.8, 40, 300 }, + [26] = { 56.4, 69.8, 40, 300 }, + [27] = { 55.8, 69.7, 40, 300 }, + [28] = { 63, 69.6, 40, 300 }, + [29] = { 56.5, 69.3, 40, 300 }, + [30] = { 60.8, 69.1, 40, 300 }, + [31] = { 53.4, 63.4, 40, 300 }, + [32] = { 53.1, 62.7, 40, 300 }, + [33] = { 47.7, 62.4, 40, 300 }, + [34] = { 52.8, 62.4, 40, 300 }, + [35] = { 54.3, 62.3, 40, 300 }, + [36] = { 48.4, 61.3, 40, 300 }, + [37] = { 48.2, 61.2, 40, 300 }, + [38] = { 49.6, 60.8, 40, 300 }, + [39] = { 50.1, 60.3, 40, 300 }, + [40] = { 48.6, 62.2, 40, 300 }, + }, + ["lvl"] = "16-17", + }, + [453] = { + ["coords"] = { + [1] = { 61.8, 77.8, 40, 300 }, + [2] = { 61, 77.8, 40, 300 }, + [3] = { 62.7, 77.7, 40, 300 }, + [4] = { 60.8, 77.6, 40, 300 }, + [5] = { 61, 77.6, 40, 300 }, + [6] = { 60.9, 77.5, 40, 300 }, + [7] = { 63.6, 77.5, 40, 300 }, + [8] = { 63.3, 77.4, 40, 300 }, + [9] = { 63, 77.3, 40, 300 }, + [10] = { 63.6, 77.2, 40, 300 }, + [11] = { 63.4, 77.2, 40, 300 }, + [12] = { 61.9, 77.1, 40, 300 }, + [13] = { 61.5, 77.1, 40, 300 }, + [14] = { 62.8, 77, 40, 300 }, + [15] = { 65.8, 76.7, 40, 300 }, + [16] = { 60.9, 76.6, 40, 300 }, + [17] = { 64.6, 76.6, 40, 300 }, + [18] = { 64.1, 76.6, 40, 300 }, + [19] = { 63.1, 76.5, 40, 300 }, + [20] = { 61.6, 76.5, 40, 300 }, + [21] = { 62.3, 76.2, 40, 300 }, + [22] = { 62.7, 75.9, 40, 300 }, + [23] = { 63.5, 75.8, 40, 300 }, + [24] = { 61.8, 75.7, 40, 300 }, + [25] = { 65.3, 75.5, 40, 300 }, + [26] = { 60.6, 75.4, 40, 300 }, + [27] = { 66.7, 75.4, 40, 300 }, + [28] = { 65.1, 75.4, 40, 300 }, + [29] = { 65.3, 75.3, 40, 300 }, + [30] = { 65.3, 75.2, 40, 300 }, + [31] = { 65.1, 75.1, 40, 300 }, + [32] = { 63.9, 75, 40, 300 }, + [33] = { 60.8, 74.5, 40, 300 }, + [34] = { 60.9, 74.5, 40, 300 }, + [35] = { 61, 74.2, 40, 300 }, + [36] = { 60.8, 74.1, 40, 300 }, + [37] = { 60.9, 74.1, 40, 300 }, + [38] = { 63.5, 73.2, 40, 300 }, + [39] = { 61.8, 73, 40, 300 }, + [40] = { 63.8, 73, 40, 300 }, + [41] = { 60.5, 73, 40, 300 }, + [42] = { 63.5, 72.8, 40, 300 }, + [43] = { 63.7, 72.7, 40, 300 }, + [44] = { 60.8, 72.6, 40, 300 }, + [45] = { 62.9, 72.1, 40, 300 }, + }, + ["lvl"] = "18-19", + }, + [454] = { + ["coords"] = { + [1] = { 20.8, 86.9, 12, 300 }, + [2] = { 16.7, 76.9, 12, 300 }, + [3] = { 51.9, 49, 40, 25 }, + [4] = { 53, 46.2, 40, 300 }, + [5] = { 53.7, 45, 40, 300 }, + [6] = { 52.3, 44.9, 40, 300 }, + [7] = { 55.2, 43.8, 40, 300 }, + [8] = { 54.3, 42.4, 40, 300 }, + [9] = { 56.2, 42.3, 40, 300 }, + [10] = { 49.5, 42.2, 40, 300 }, + [11] = { 49.2, 41.6, 40, 300 }, + [12] = { 52.1, 41.2, 40, 300 }, + [13] = { 53.9, 40.9, 40, 300 }, + [14] = { 52.7, 39.9, 40, 300 }, + [15] = { 57.1, 39.2, 40, 300 }, + [16] = { 63.2, 38.2, 40, 300 }, + [17] = { 49.9, 36.8, 40, 300 }, + [18] = { 61, 36.5, 40, 300 }, + [19] = { 36.2, 35, 40, 300 }, + [20] = { 34.3, 34.8, 40, 300 }, + [21] = { 33.5, 34.5, 40, 300 }, + [22] = { 39.4, 33.8, 40, 300 }, + [23] = { 60, 33.6, 40, 300 }, + [24] = { 60.3, 32.3, 40, 300 }, + [25] = { 43.8, 32.2, 40, 300 }, + [26] = { 37.4, 30.7, 40, 300 }, + [27] = { 44.3, 30.5, 40, 300 }, + [28] = { 40.9, 30.1, 40, 300 }, + [29] = { 60.6, 30, 40, 300 }, + [30] = { 50.4, 29.4, 40, 300 }, + [31] = { 42.8, 28.2, 40, 300 }, + [32] = { 61.9, 27.8, 40, 300 }, + [33] = { 54.2, 26.4, 40, 300 }, + [34] = { 37.8, 25.9, 40, 300 }, + [35] = { 42.2, 23.7, 40, 300 }, + [36] = { 51.4, 23.7, 40, 300 }, + [37] = { 62.9, 23.6, 40, 300 }, + [38] = { 49.7, 23.5, 40, 300 }, + [39] = { 56.1, 20.8, 40, 300 }, + [40] = { 51.1, 20.7, 40, 300 }, + [41] = { 52.1, 20.5, 40, 300 }, + [42] = { 55.2, 19.4, 40, 300 }, + [43] = { 46.6, 19.3, 40, 300 }, + [44] = { 48.6, 19.2, 40, 300 }, + [45] = { 52.3, 17.8, 40, 300 }, + [46] = { 56.9, 16.1, 40, 300 }, + [47] = { 58.9, 13.7, 40, 300 }, + [48] = { 58.4, 12.4, 40, 300 }, + }, + ["lvl"] = "12-13", + }, + [456] = { + ["coords"] = { + [1] = { 36.1, 22.1, 40, 300 }, + [2] = { 33.9, 18.7, 40, 300 }, + [3] = { 34.7, 18.4, 40, 300 }, + [4] = { 33.5, 17.9, 40, 300 }, + [5] = { 33.5, 17.7, 40, 300 }, + [6] = { 32.9, 17.5, 40, 300 }, + [7] = { 33.7, 17.5, 40, 300 }, + [8] = { 34, 17.4, 40, 300 }, + [9] = { 33.4, 17.2, 40, 300 }, + [10] = { 34.1, 17.2, 40, 300 }, + [11] = { 33.5, 17.1, 40, 300 }, + [12] = { 35, 16.9, 40, 300 }, + [13] = { 34, 16.8, 40, 300 }, + [14] = { 33.7, 16.7, 40, 300 }, + [15] = { 34.3, 16.7, 40, 300 }, + [16] = { 34.1, 16.7, 40, 300 }, + [17] = { 37.4, 16.5, 40, 300 }, + [18] = { 33.7, 16.5, 40, 300 }, + [19] = { 33.9, 16.4, 40, 300 }, + [20] = { 38.1, 16.3, 40, 300 }, + [21] = { 38.8, 16.2, 40, 300 }, + [22] = { 34.1, 16.2, 40, 300 }, + [23] = { 34.4, 16.1, 40, 300 }, + [24] = { 33.9, 16.1, 40, 300 }, + [25] = { 34.3, 15.9, 40, 300 }, + [26] = { 34.6, 15.9, 40, 300 }, + [27] = { 34.2, 15.9, 40, 300 }, + [28] = { 37.2, 15.8, 40, 300 }, + [29] = { 34.4, 15.7, 40, 300 }, + [30] = { 34.5, 15.6, 40, 300 }, + [31] = { 39, 15.4, 40, 300 }, + [32] = { 38.3, 15.3, 40, 300 }, + [33] = { 37.7, 15.2, 40, 300 }, + [34] = { 33.4, 15.1, 40, 300 }, + [35] = { 38.9, 14.7, 40, 300 }, + [36] = { 38.5, 14.3, 40, 300 }, + [37] = { 33.9, 16.7, 40, 300 }, + [38] = { 42.5, 12.3, 40, 300 }, + [39] = { 42.7, 12.3, 40, 300 }, + [40] = { 42, 12.1, 40, 300 }, + [41] = { 43, 11.7, 40, 300 }, + [42] = { 42.2, 11.5, 40, 300 }, + [43] = { 42.5, 11.4, 40, 300 }, + [44] = { 41.2, 10.2, 40, 300 }, + [45] = { 42, 9.7, 40, 300 }, + [46] = { 43.7, 9.2, 40, 300 }, + [47] = { 42.8, 9, 40, 300 }, + [48] = { 43, 8.2, 40, 300 }, + [49] = { 43.2, 8.1, 40, 300 }, + }, + ["lvl"] = "13-14", + }, + [458] = { + ["coords"] = { + [1] = { 33.7, 84.4, 40, 300 }, + [2] = { 27.1, 72.7, 40, 300 }, + [3] = { 26.6, 60.3, 40, 300 }, + [4] = { 27.9, 60, 40, 300 }, + [5] = { 27.5, 59.9, 40, 300 }, + [6] = { 27.7, 59.9, 40, 300 }, + [7] = { 26.8, 59.5, 40, 300 }, + [8] = { 26.1, 59, 40, 300 }, + [9] = { 27.3, 58.7, 40, 300 }, + [10] = { 27.7, 58.6, 40, 300 }, + [11] = { 26.7, 58.2, 40, 300 }, + [12] = { 27.4, 57.9, 40, 300 }, + [13] = { 27, 55.3, 40, 300 }, + [14] = { 27.3, 54.8, 40, 300 }, + [15] = { 27.8, 54.2, 40, 300 }, + [16] = { 26.9, 54.2, 40, 300 }, + [17] = { 27.8, 54, 40, 300 }, + [18] = { 27.5, 53.6, 40, 300 }, + [19] = { 26.9, 53.4, 40, 300 }, + [20] = { 27.7, 52.9, 40, 300 }, + [21] = { 27.4, 52.5, 40, 300 }, + [22] = { 33.8, 83, 40, 300 }, + [23] = { 23.7, 57.3, 40, 300 }, + [24] = { 25.2, 56.6, 40, 300 }, + [25] = { 25.2, 56.2, 40, 300 }, + [26] = { 25.2, 55.3, 40, 300 }, + [27] = { 25.2, 55, 40, 300 }, + [28] = { 25.9, 50.1, 40, 300 }, + [29] = { 25.2, 49.8, 40, 300 }, + [30] = { 26.2, 49.4, 40, 300 }, + [31] = { 25.8, 49.1, 40, 300 }, + [32] = { 25.4, 48.9, 40, 300 }, + [33] = { 24.7, 48.9, 40, 300 }, + [34] = { 25, 48.9, 40, 300 }, + [35] = { 25.2, 48.6, 40, 300 }, + [36] = { 24.6, 48.3, 40, 300 }, + [37] = { 26.7, 48.3, 40, 300 }, + [38] = { 24.8, 48.3, 40, 300 }, + [39] = { 25.3, 48, 40, 300 }, + [40] = { 25.8, 47.9, 40, 300 }, + [41] = { 26, 47.4, 40, 300 }, + [42] = { 25.5, 47, 40, 300 }, + [43] = { 25.7, 46.8, 40, 300 }, + [44] = { 27.6, 40.7, 40, 300 }, + [45] = { 26.5, 40.6, 40, 300 }, + [46] = { 27.7, 39.1, 40, 300 }, + [47] = { 26.7, 39, 40, 300 }, + [48] = { 26.7, 38.1, 40, 300 }, + [49] = { 27.8, 38, 40, 300 }, + [50] = { 26.6, 36.5, 40, 300 }, + [51] = { 29, 35.6, 40, 300 }, + [52] = { 28.8, 35.5, 40, 300 }, + [53] = { 30.8, 35.1, 40, 300 }, + [54] = { 27.6, 35.1, 40, 300 }, + [55] = { 27.7, 33.7, 40, 300 }, + [56] = { 28.4, 33.4, 40, 300 }, + [57] = { 28.2, 33.2, 40, 300 }, + [58] = { 28.4, 33, 40, 300 }, + [59] = { 29.3, 32.9, 40, 300 }, + [60] = { 28.4, 32.9, 40, 300 }, + [61] = { 29.2, 31.9, 40, 300 }, + [62] = { 28.3, 29.4, 40, 300 }, + [63] = { 29.4, 28.6, 40, 300 }, + [64] = { 30.3, 28.6, 40, 300 }, + [65] = { 28.3, 28.2, 40, 300 }, + [66] = { 29.6, 27.8, 40, 300 }, + [67] = { 29, 27.6, 40, 300 }, + [68] = { 30.2, 27.5, 40, 300 }, + [69] = { 29.1, 27.4, 40, 300 }, + [70] = { 28.7, 27.2, 40, 300 }, + [71] = { 29.3, 26.4, 40, 300 }, + [72] = { 30.3, 25.4, 40, 300 }, + }, + ["lvl"] = "16-17", + }, + [459] = { + ["coords"] = { + [1] = { 49.9, 42.6, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [460] = { + ["coords"] = { + [1] = { 28.6, 66.1, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [461] = { + ["coords"] = { + [1] = { 25.3, 78.2, 1519, 490 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [462] = { + ["coords"] = { + [1] = { 62, 75.5, 40, 75600 }, + [2] = { 62.6, 74.2, 40, 75600 }, + [3] = { 61.5, 73.9, 40, 75600 }, + [4] = { 36.8, 62.5, 40, 75600 }, + [5] = { 40.6, 60.5, 40, 75600 }, + [6] = { 45.7, 60.1, 40, 75600 }, + [7] = { 65.5, 58.7, 40, 75600 }, + [8] = { 63.9, 58.2, 40, 75600 }, + [9] = { 46.1, 57.7, 40, 75600 }, + [10] = { 63.3, 57, 40, 75600 }, + [11] = { 44.1, 46.2, 40, 75600 }, + [12] = { 46.8, 44.2, 40, 75600 }, + [13] = { 45.4, 43.9, 40, 75600 }, + [14] = { 50.6, 43.5, 40, 75600 }, + [15] = { 51.1, 23.8, 40, 75600 }, + [16] = { 54.8, 23.2, 40, 75600 }, + }, + ["lvl"] = "26", + ["rnk"] = "4", + }, + [464] = { + ["coords"] = { + [1] = { 15.3, 71.5, 44, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [465] = { + ["coords"] = { + [1] = { 44, 65.7, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [466] = { + ["coords"] = { + [1] = { 64, 75.3, 1519, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "62", + ["rnk"] = "1", + }, + [467] = { + ["coords"] = { + [1] = { 55.7, 47.5, 40, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [468] = { + ["coords"] = { + [1] = { 75, 46.8, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [469] = { + ["coords"] = { + [1] = { 38, 3, 33, 1800 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [470] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "35", + }, + [471] = { + ["coords"] = { + [1] = { 62.1, 48.1, 12, 3600 }, + }, + ["lvl"] = "10", + ["rnk"] = "4", + }, + [472] = { + ["coords"] = { + [1] = { 68.1, 44.9, 12, 5400 }, + }, + ["lvl"] = "12", + ["rnk"] = "4", + }, + [473] = { + ["coords"] = { + [1] = { 71.1, 80.6, 12, 270 }, + }, + ["lvl"] = "10", + }, + [474] = { + ["coords"] = { + [1] = { 50.7, 83.2, 12, 270 }, + [2] = { 89.4, 79.7, 12, 25 }, + [3] = { 29, 62.6, 12, 270 }, + [4] = { 28.9, 62.2, 12, 270 }, + [5] = { 29.7, 61, 12, 270 }, + [6] = { 29.1, 60.9, 12, 270 }, + [7] = { 52.6, 58.8, 12, 270 }, + [8] = { 29.5, 58.2, 12, 270 }, + [9] = { 72.5, 56.4, 12, 270 }, + [10] = { 74, 55.6, 12, 270 }, + [11] = { 72.3, 55, 12, 270 }, + [12] = { 73.1, 54.2, 12, 270 }, + [13] = { 74.5, 54, 12, 270 }, + [14] = { 76.7, 53.3, 12, 270 }, + [15] = { 73.4, 52.5, 12, 270 }, + [16] = { 74.6, 52.4, 12, 270 }, + [17] = { 74.9, 52.1, 12, 270 }, + [18] = { 71.7, 52, 12, 270 }, + [19] = { 74.1, 51.8, 12, 270 }, + [20] = { 77.2, 51.7, 12, 270 }, + [21] = { 73.6, 51.2, 12, 270 }, + [22] = { 74.2, 50.9, 12, 270 }, + [23] = { 73.4, 49.8, 12, 270 }, + [24] = { 71.7, 49.7, 12, 270 }, + [25] = { 74.5, 49.3, 12, 270 }, + [26] = { 76.8, 48.6, 12, 270 }, + [27] = { 76, 47.4, 12, 270 }, + [28] = { 74.4, 47, 12, 270 }, + [29] = { 72.6, 46.4, 12, 270 }, + }, + ["lvl"] = "9-10", + }, + [475] = { + ["coords"] = { + [1] = { 37.9, 87, 12, 270 }, + [2] = { 39, 85.1, 12, 270 }, + [3] = { 37.6, 84.9, 12, 270 }, + [4] = { 38.3, 84.4, 12, 270 }, + [5] = { 39.9, 84.1, 12, 270 }, + [6] = { 36.6, 84, 12, 270 }, + [7] = { 38, 83.9, 12, 270 }, + [8] = { 38.7, 83.8, 12, 270 }, + [9] = { 37.4, 83.4, 12, 270 }, + [10] = { 39.3, 83.2, 12, 270 }, + [11] = { 39.7, 82.9, 12, 270 }, + [12] = { 39.1, 82.6, 12, 270 }, + [13] = { 38.1, 82.6, 12, 270 }, + [14] = { 40.3, 82.5, 12, 270 }, + [15] = { 36.1, 82.5, 12, 270 }, + [16] = { 38.5, 82.3, 12, 270 }, + [17] = { 39.6, 82.1, 12, 270 }, + [18] = { 38.8, 81.8, 12, 270 }, + [19] = { 38, 81.6, 12, 270 }, + [20] = { 40.6, 81.6, 12, 270 }, + [21] = { 38.9, 81.5, 12, 270 }, + [22] = { 38.5, 81.5, 12, 270 }, + [23] = { 39, 81.3, 12, 270 }, + [24] = { 40.5, 81.2, 12, 270 }, + [25] = { 40.9, 81.1, 12, 270 }, + [26] = { 39, 80.7, 12, 270 }, + [27] = { 37.3, 80.6, 12, 270 }, + [28] = { 39.4, 80.4, 12, 270 }, + [29] = { 41.8, 79.7, 12, 270 }, + [30] = { 41.3, 79.5, 12, 270 }, + [31] = { 36.2, 79.1, 12, 270 }, + [32] = { 37.6, 78.9, 12, 270 }, + [33] = { 38.7, 78.6, 12, 270 }, + [34] = { 40.7, 78.3, 12, 270 }, + [35] = { 41.1, 78.3, 12, 270 }, + [36] = { 40.2, 77.5, 12, 270 }, + [37] = { 41.9, 81.4, 12, 270 }, + [38] = { 41.2, 80.4, 12, 270 }, + [39] = { 41.1, 80.3, 12, 270 }, + [40] = { 41.6, 80.1, 12, 270 }, + [41] = { 41.3, 79.2, 12, 270 }, + [42] = { 41.7, 78.7, 12, 270 }, + [43] = { 40.3, 78.2, 12, 270 }, + [44] = { 40.8, 77.4, 12, 270 }, + }, + ["lvl"] = "5-6", + }, + [476] = { + ["coords"] = { + [1] = { 63.5, 58.3, 12, 270 }, + [2] = { 64.7, 56.9, 12, 270 }, + [3] = { 64.5, 56.7, 12, 270 }, + [4] = { 64.5, 56.6, 12, 270 }, + [5] = { 61, 56.5, 12, 270 }, + [6] = { 62.2, 55.7, 12, 270 }, + [7] = { 61.4, 51.7, 12, 270 }, + [8] = { 60.8, 49.6, 12, 270 }, + }, + ["lvl"] = "7-8", + }, + [478] = { + ["coords"] = { + [1] = { 26.3, 95.2, 12, 270 }, + [2] = { 27.7, 94.5, 12, 270 }, + [3] = { 24.5, 94.1, 12, 270 }, + [4] = { 23.6, 94.1, 12, 270 }, + [5] = { 25.4, 94, 12, 270 }, + [6] = { 24.3, 93.8, 12, 270 }, + [7] = { 28.6, 93, 12, 270 }, + [8] = { 24.8, 92.9, 12, 270 }, + [9] = { 26, 92.7, 12, 270 }, + [10] = { 26.1, 92.1, 12, 270 }, + [11] = { 26, 92.1, 12, 270 }, + [12] = { 26.2, 90.3, 12, 270 }, + [13] = { 25.5, 90.1, 12, 270 }, + [14] = { 27.5, 89.6, 12, 270 }, + [15] = { 25.1, 89.2, 12, 270 }, + [16] = { 25.3, 89.1, 12, 270 }, + [17] = { 27.8, 88.4, 12, 270 }, + [18] = { 28.4, 88.3, 12, 270 }, + [19] = { 25.5, 88.2, 12, 270 }, + [20] = { 28, 88.2, 12, 270 }, + [21] = { 28.6, 87.3, 12, 270 }, + [22] = { 25.1, 87, 12, 270 }, + [23] = { 26.3, 86.8, 12, 270 }, + [24] = { 26.5, 86.8, 12, 270 }, + [25] = { 27.4, 86.2, 12, 270 }, + [26] = { 27.6, 86.1, 12, 270 }, + [27] = { 26.3, 85, 12, 270 }, + [28] = { 27.4, 82.5, 12, 270 }, + [29] = { 26.4, 81.4, 12, 270 }, + [30] = { 28.3, 81.2, 12, 270 }, + [31] = { 27.4, 79.7, 12, 270 }, + [32] = { 68.6, 54.8, 12, 270 }, + [33] = { 68.2, 50.9, 12, 270 }, + [34] = { 68.2, 48.9, 12, 270 }, + [35] = { 67.8, 45.7, 12, 270 }, + [36] = { 68.9, 45.2, 12, 270 }, + [37] = { 68.1, 45.1, 12, 270 }, + [38] = { 67.8, 44.9, 12, 270 }, + [39] = { 66.7, 43.8, 12, 270 }, + [40] = { 68.8, 43.2, 12, 270 }, + [41] = { 67.7, 42.3, 12, 270 }, + [42] = { 65.7, 42.1, 12, 270 }, + [43] = { 66.7, 41.3, 12, 270 }, + [44] = { 66, 41, 12, 270 }, + [45] = { 66.7, 40.9, 12, 270 }, + [46] = { 66.9, 40.6, 12, 270 }, + [47] = { 69.1, 40.4, 12, 270 }, + [48] = { 66.6, 40.3, 12, 270 }, + [49] = { 76.8, 40.2, 12, 270 }, + [50] = { 67.8, 40.2, 12, 270 }, + [51] = { 68, 39.8, 12, 270 }, + [52] = { 69.7, 39.3, 12, 270 }, + [53] = { 67.6, 39.2, 12, 270 }, + [54] = { 68.9, 38.8, 12, 270 }, + [55] = { 68.2, 38.7, 12, 270 }, + [56] = { 69.6, 38.7, 12, 270 }, + [57] = { 69.2, 38.4, 12, 270 }, + [58] = { 72.9, 38.3, 12, 270 }, + [59] = { 65.7, 30.7, 40, 270 }, + [60] = { 66.4, 30.4, 40, 270 }, + [61] = { 67.3, 25.9, 40, 270 }, + [62] = { 67.4, 25.8, 40, 270 }, + [63] = { 67.2, 23.8, 40, 270 }, + [64] = { 27.8, 88.1, 12, 270 }, + }, + ["lvl"] = "9-10", + }, + [480] = { + ["coords"] = { + [1] = { 53.4, 25.6, 40, 300 }, + [2] = { 54.4, 25.4, 40, 300 }, + [3] = { 53.9, 25.1, 40, 300 }, + [4] = { 55, 25.1, 40, 300 }, + [5] = { 53.4, 24.9, 40, 300 }, + [6] = { 55.3, 24.6, 40, 300 }, + [7] = { 54.4, 24.4, 40, 300 }, + [8] = { 57.1, 21.2, 40, 300 }, + [9] = { 56.7, 20.9, 40, 300 }, + [10] = { 57.5, 20.7, 40, 300 }, + [11] = { 57.1, 20.1, 40, 300 }, + [12] = { 57.5, 19.8, 40, 300 }, + [13] = { 58.2, 19.1, 40, 300 }, + [14] = { 57.5, 18.1, 40, 300 }, + [15] = { 58.9, 18.1, 40, 300 }, + [16] = { 58.2, 16.9, 40, 300 }, + }, + ["lvl"] = "9-10", + }, + [481] = { + ["coords"] = { + [1] = { 56.8, 19.8, 40, 300 }, + [2] = { 56.5, 19.3, 40, 300 }, + [3] = { 56.8, 19.2, 40, 300 }, + [4] = { 56.1, 19, 40, 300 }, + [5] = { 56.7, 18.9, 40, 300 }, + }, + ["lvl"] = "10-11", + }, + [482] = { + ["coords"] = { + [1] = { 59.9, 64.2, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [483] = { + ["coords"] = { + [1] = { 60.6, 63.2, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [485] = { + ["coords"] = { + [1] = { 77.8, 85.7, 44, 300 }, + [2] = { 77.4, 85.7, 44, 300 }, + [3] = { 76, 84.6, 44, 300 }, + [4] = { 77, 83.4, 44, 300 }, + [5] = { 72.3, 81.7, 44, 300 }, + [6] = { 72.4, 80.1, 44, 300 }, + [7] = { 74.4, 78.8, 44, 300 }, + [8] = { 68.9, 78.4, 44, 300 }, + [9] = { 69.9, 76.7, 44, 300 }, + [10] = { 72.9, 74.6, 44, 300 }, + [11] = { 75.1, 74.3, 44, 300 }, + [12] = { 77.9, 73.3, 44, 300 }, + [13] = { 75.4, 72.6, 44, 300 }, + [14] = { 77.7, 69.4, 44, 300 }, + [15] = { 78, 67.4, 44, 300 }, + [16] = { 77.7, 67.3, 44, 300 }, + [17] = { 77.1, 66.5, 44, 300 }, + [18] = { 75.7, 63.6, 44, 300 }, + [19] = { 65.2, 61.6, 44, 300 }, + [20] = { 37.2, 45.7, 44, 300 }, + [21] = { 37.1, 45.6, 44, 300 }, + [22] = { 62.7, 45.5, 44, 300 }, + [23] = { 37.1, 45.2, 44, 300 }, + [24] = { 62.1, 44.5, 44, 300 }, + [25] = { 60.6, 43, 44, 300 }, + [26] = { 62.6, 41.4, 44, 300 }, + [27] = { 38.3, 41.2, 44, 300 }, + [28] = { 43.4, 40.2, 44, 300 }, + [29] = { 39.9, 40.1, 44, 300 }, + [30] = { 44.5, 19.4, 44, 300 }, + [31] = { 42.5, 17.9, 44, 300 }, + [32] = { 75.1, 83.8, 44, 300 }, + [33] = { 76.3, 82.7, 44, 300 }, + [34] = { 75, 81.4, 44, 300 }, + [35] = { 71.4, 74.8, 44, 300 }, + [36] = { 76.7, 74.4, 44, 300 }, + [37] = { 59.4, 44.3, 44, 300 }, + }, + ["lvl"] = "20-21", + }, + [486] = { + ["coords"] = { + [1] = { 69.6, 59.7, 44, 900 }, + }, + ["lvl"] = "24", + ["rnk"] = "1", + }, + [487] = { + ["coords"] = { + [1] = { 55.7, 47.4, 40, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [488] = { + ["coords"] = { + [1] = { 56.8, 46.9, 40, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [489] = { + ["coords"] = { + [1] = { 56.6, 47.9, 40, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [490] = { + ["coords"] = { + [1] = { 56, 48.2, 40, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [491] = { + ["coords"] = { + [1] = { 57, 47.2, 40, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [494] = { + ["coords"] = { + [1] = { 73.2, 45.9, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "37", + }, + [495] = { + ["coords"] = { + [1] = { 74.6, 46.4, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [496] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "30", + }, + [497] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "30", + }, + [498] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "20", + }, + [499] = { + ["coords"] = { + [1] = { 45, 67.7, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "29", + }, + [500] = { + ["coords"] = { + [1] = { 40.1, 32.2, 40, 300 }, + [2] = { 39, 32, 40, 300 }, + [3] = { 36.6, 31.9, 40, 300 }, + [4] = { 36.5, 31.7, 40, 300 }, + [5] = { 34, 29.1, 40, 300 }, + [6] = { 38.1, 28.3, 40, 300 }, + [7] = { 38.4, 28.3, 40, 300 }, + [8] = { 33.7, 28.3, 40, 300 }, + [9] = { 41.6, 20.8, 40, 300 }, + [10] = { 41.8, 20.7, 40, 300 }, + [11] = { 42.2, 20.6, 40, 300 }, + [12] = { 41.9, 20.5, 40, 300 }, + [13] = { 41.8, 20.4, 40, 300 }, + [14] = { 52.1, 15.2, 40, 300 }, + [15] = { 52.2, 14.9, 40, 300 }, + [16] = { 40.8, 22, 40, 300 }, + [17] = { 42, 20.9, 40, 300 }, + [18] = { 41, 20.7, 40, 300 }, + [19] = { 42.3, 19.9, 40, 300 }, + [20] = { 41.7, 19.3, 40, 300 }, + [21] = { 45.6, 16.6, 40, 300 }, + [22] = { 43.9, 16.5, 40, 300 }, + [23] = { 44.7, 16.4, 40, 300 }, + [24] = { 46.4, 15.1, 40, 300 }, + [25] = { 51.9, 15.1, 40, 300 }, + [26] = { 42.9, 15, 40, 300 }, + [27] = { 52.1, 14.8, 40, 300 }, + [28] = { 45, 14.3, 40, 300 }, + [29] = { 56.7, 14.3, 40, 300 }, + [30] = { 57.2, 14.2, 40, 300 }, + [31] = { 44.7, 14.2, 40, 300 }, + [32] = { 52.2, 14.1, 40, 300 }, + [33] = { 52.3, 14.1, 40, 300 }, + [34] = { 44.9, 14, 40, 300 }, + [35] = { 44.7, 13.9, 40, 300 }, + [36] = { 45, 13.7, 40, 300 }, + [37] = { 44.9, 13.6, 40, 300 }, + [38] = { 56.3, 13.6, 40, 300 }, + [39] = { 56.5, 13.5, 40, 300 }, + [40] = { 56.3, 13.4, 40, 300 }, + [41] = { 45.3, 13.1, 40, 300 }, + [42] = { 57.9, 13, 40, 300 }, + [43] = { 56.6, 13, 40, 300 }, + [44] = { 57, 12.9, 40, 300 }, + [45] = { 56.3, 12.7, 40, 300 }, + [46] = { 45, 12.6, 40, 300 }, + [47] = { 56.5, 12.6, 40, 300 }, + }, + ["lvl"] = "12-13", + }, + [501] = { + ["coords"] = { + [1] = { 32.5, 73.7, 40, 300 }, + [2] = { 31.8, 73.4, 40, 300 }, + [3] = { 31.6, 72.3, 40, 300 }, + [4] = { 32.3, 72.2, 40, 300 }, + [5] = { 31.3, 70.6, 40, 300 }, + [6] = { 31, 69.6, 40, 300 }, + [7] = { 32.8, 68.4, 40, 300 }, + [8] = { 32.8, 68, 40, 300 }, + [9] = { 29.9, 66.3, 40, 300 }, + [10] = { 29.2, 66.1, 40, 300 }, + [11] = { 29.2, 65.5, 40, 300 }, + [12] = { 29.4, 65.4, 40, 300 }, + [13] = { 28.6, 65.4, 40, 300 }, + [14] = { 29.5, 65.3, 40, 300 }, + [15] = { 29.1, 65.3, 40, 300 }, + [16] = { 28.9, 64.7, 40, 300 }, + [17] = { 29.8, 63.8, 40, 300 }, + [18] = { 35.9, 61.6, 40, 300 }, + [19] = { 35.5, 61.5, 40, 300 }, + [20] = { 35.8, 61.1, 40, 300 }, + [21] = { 29.9, 59.6, 40, 300 }, + [22] = { 30.3, 58.1, 40, 300 }, + [23] = { 30.6, 58, 40, 300 }, + [24] = { 30.3, 57.9, 40, 300 }, + [25] = { 30.4, 57.9, 40, 300 }, + [26] = { 30.4, 57.7, 40, 300 }, + [27] = { 30.2, 57.5, 40, 300 }, + [28] = { 30, 56.6, 40, 300 }, + [29] = { 30.4, 53.7, 40, 300 }, + [30] = { 30.4, 52.4, 40, 300 }, + [31] = { 31.6, 52.3, 40, 300 }, + [32] = { 29.6, 52.3, 40, 300 }, + [33] = { 30.7, 52.1, 40, 300 }, + [34] = { 30.4, 52, 40, 300 }, + [35] = { 30.7, 51.8, 40, 300 }, + [36] = { 30.5, 51.7, 40, 300 }, + [37] = { 31.5, 50.9, 40, 300 }, + [38] = { 29.6, 50.8, 40, 300 }, + [39] = { 30.6, 50.7, 40, 300 }, + [40] = { 30.2, 49.9, 40, 300 }, + [41] = { 30.1, 49.8, 40, 300 }, + [42] = { 29.5, 49.7, 40, 300 }, + [43] = { 30.4, 49.6, 40, 300 }, + [44] = { 30.1, 49.4, 40, 300 }, + [45] = { 30.2, 49.3, 40, 300 }, + [46] = { 31.2, 49.3, 40, 300 }, + [47] = { 29.7, 48.3, 40, 300 }, + [48] = { 30.5, 48.1, 40, 300 }, + [49] = { 32.8, 29.4, 40, 300 }, + }, + ["lvl"] = "14-15", + }, + [502] = { + ["coords"] = { + [1] = { 49.5, 19, 40, 300 }, + }, + ["lvl"] = "15", + }, + [503] = { + ["coords"] = { + [1] = { 21.1, 27.2, 10, 18000 }, + }, + ["lvl"] = "31", + ["rnk"] = "4", + }, + [504] = { + ["coords"] = { + [1] = { 32.2, 34.6, 40, 300 }, + [2] = { 31.7, 34.6, 40, 300 }, + [3] = { 30.9, 34.1, 40, 300 }, + [4] = { 32, 33.9, 40, 300 }, + [5] = { 31.4, 33.8, 40, 300 }, + [6] = { 31.3, 33.7, 40, 300 }, + [7] = { 31.3, 33.6, 40, 300 }, + [8] = { 32.5, 33.4, 40, 300 }, + [9] = { 30.9, 33.1, 40, 300 }, + [10] = { 31.7, 32.9, 40, 300 }, + [11] = { 46.6, 53.4, 40, 300 }, + [12] = { 46.7, 52.5, 40, 300 }, + [13] = { 48.6, 47.8, 40, 300 }, + [14] = { 50.6, 47.3, 40, 300 }, + [15] = { 50.7, 47.2, 40, 300 }, + [16] = { 48.2, 47, 40, 300 }, + [17] = { 51.5, 46.8, 40, 300 }, + [18] = { 48.2, 46.7, 40, 300 }, + [19] = { 51.6, 46.6, 40, 300 }, + [20] = { 48.2, 46.6, 40, 300 }, + [21] = { 49.5, 46.5, 40, 300 }, + [22] = { 47.2, 46.2, 40, 300 }, + [23] = { 47.8, 45.8, 40, 300 }, + [24] = { 48.6, 45.2, 40, 300 }, + [25] = { 48.5, 45.1, 40, 300 }, + [26] = { 47.7, 43.4, 40, 300 }, + [27] = { 49.7, 42.1, 40, 300 }, + [28] = { 41.1, 41.8, 40, 300 }, + [29] = { 41.5, 41.1, 40, 300 }, + [30] = { 40.8, 40.9, 40, 300 }, + [31] = { 41.4, 40.6, 40, 300 }, + [32] = { 41.8, 40.5, 40, 300 }, + [33] = { 51.2, 40.4, 40, 300 }, + [34] = { 50.8, 40.1, 40, 300 }, + [35] = { 46.5, 39.7, 40, 300 }, + [36] = { 45.6, 39.6, 40, 300 }, + [37] = { 40.8, 39.5, 40, 300 }, + [38] = { 50.6, 39.3, 40, 300 }, + [39] = { 51.3, 39.2, 40, 300 }, + [40] = { 46.2, 39.1, 40, 300 }, + [41] = { 46.1, 39.1, 40, 300 }, + [42] = { 46, 38.2, 40, 300 }, + [43] = { 46.6, 37.8, 40, 300 }, + [44] = { 46.5, 37.6, 40, 300 }, + [45] = { 46.5, 37.4, 40, 300 }, + [46] = { 46.4, 36.9, 40, 300 }, + [47] = { 47.5, 36.6, 40, 300 }, + [48] = { 46.6, 27.5, 40, 300 }, + [49] = { 43.8, 27, 40, 300 }, + [50] = { 45.3, 26.9, 40, 300 }, + [51] = { 46, 26.9, 40, 300 }, + [52] = { 44.7, 26.3, 40, 300 }, + [53] = { 44, 25.9, 40, 300 }, + [54] = { 44.2, 25.8, 40, 300 }, + [55] = { 44.7, 25.6, 40, 300 }, + [56] = { 45.9, 25.6, 40, 300 }, + [57] = { 43.9, 25.2, 40, 300 }, + [58] = { 44.9, 25.2, 40, 300 }, + [59] = { 44.5, 24.6, 40, 300 }, + [60] = { 44.6, 24.4, 40, 300 }, + [61] = { 44.6, 24, 40, 300 }, + [62] = { 44.1, 23.3, 40, 300 }, + [63] = { 44.9, 22.7, 40, 300 }, + [64] = { 44.8, 22, 40, 300 }, + [65] = { 45.5, 21.7, 40, 300 }, + [66] = { 44.5, 21.5, 40, 300 }, + [67] = { 45.3, 21.2, 40, 300 }, + [68] = { 45.5, 21.1, 40, 300 }, + [69] = { 48.7, 20.9, 40, 300 }, + [70] = { 48.8, 20.7, 40, 300 }, + [71] = { 45.7, 20.5, 40, 300 }, + [72] = { 48.8, 20.4, 40, 300 }, + [73] = { 48.4, 20.3, 40, 300 }, + [74] = { 49.6, 20, 40, 300 }, + [75] = { 48.4, 19.9, 40, 300 }, + [76] = { 49.8, 19.7, 40, 300 }, + [77] = { 46.6, 19.6, 40, 300 }, + [78] = { 46, 19.4, 40, 300 }, + [79] = { 49.4, 19.2, 40, 300 }, + [80] = { 46, 18.9, 40, 300 }, + [81] = { 45, 18.8, 40, 300 }, + [82] = { 50.1, 18.4, 40, 300 }, + [83] = { 45.6, 18, 40, 300 }, + }, + ["lvl"] = "12-13", + }, + [505] = { + ["coords"] = { + [1] = { 67.2, 76.6, 44, 300 }, + [2] = { 56.9, 46.2, 44, 300 }, + [3] = { 54, 43.3, 44, 300 }, + [4] = { 55.1, 43.2, 44, 300 }, + [5] = { 56.3, 43, 44, 300 }, + [6] = { 52.5, 42, 44, 300 }, + [7] = { 51.9, 41.2, 44, 300 }, + [8] = { 50.6, 40.6, 44, 300 }, + [9] = { 52.9, 39, 44, 300 }, + [10] = { 47.8, 38.5, 44, 300 }, + [11] = { 53.9, 37.9, 44, 300 }, + [12] = { 52.7, 37.4, 44, 300 }, + [13] = { 53.7, 36.4, 44, 300 }, + }, + ["lvl"] = "19-20", + }, + [506] = { + ["coords"] = { + [1] = { 36.9, 31.9, 40, 7200 }, + }, + ["lvl"] = "18", + ["rnk"] = "4", + }, + [507] = { + ["coords"] = { + [1] = { 61.7, 36.8, 10, 18000 }, + }, + ["lvl"] = "32", + ["rnk"] = "4", + }, + [509] = { + ["coords"] = {}, + ["lvl"] = "33", + }, + [510] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "60", + }, + [511] = { + ["coords"] = { + [1] = { 81.2, 71.5, 10, 300 }, + }, + ["lvl"] = "26", + }, + [513] = { + ["coords"] = { + [1] = { 29, 34, 40, 300 }, + [2] = { 30.4, 26.7, 40, 300 }, + [3] = { 32.2, 26.6, 40, 300 }, + [4] = { 32.4, 26.6, 40, 300 }, + [5] = { 32.5, 26.3, 40, 300 }, + [6] = { 31.8, 26.1, 40, 300 }, + [7] = { 32.3, 25.4, 40, 300 }, + [8] = { 34.6, 22.7, 40, 300 }, + [9] = { 35.5, 22.1, 40, 300 }, + [10] = { 36.1, 22.1, 40, 300 }, + [11] = { 34.6, 21.8, 40, 300 }, + [12] = { 35.2, 21.7, 40, 300 }, + [13] = { 35.8, 21.6, 40, 300 }, + [14] = { 35, 21.1, 40, 300 }, + [15] = { 35.6, 20.8, 40, 300 }, + [16] = { 34.8, 20.4, 40, 300 }, + [17] = { 33.9, 18.7, 40, 300 }, + [18] = { 34.7, 18.4, 40, 300 }, + [19] = { 33.5, 17.9, 40, 300 }, + [20] = { 33.5, 17.7, 40, 300 }, + [21] = { 32.9, 17.5, 40, 300 }, + [22] = { 33.7, 17.5, 40, 300 }, + [23] = { 34, 17.4, 40, 300 }, + [24] = { 33.4, 17.2, 40, 300 }, + [25] = { 34.1, 17.2, 40, 300 }, + [26] = { 33.5, 17.1, 40, 300 }, + [27] = { 35, 16.9, 40, 300 }, + [28] = { 34, 16.8, 40, 300 }, + [29] = { 33.7, 16.7, 40, 300 }, + [30] = { 34.3, 16.7, 40, 300 }, + [31] = { 34.1, 16.7, 40, 300 }, + [32] = { 37.4, 16.5, 40, 300 }, + [33] = { 33.7, 16.5, 40, 300 }, + [34] = { 33.9, 16.4, 40, 300 }, + [35] = { 38.1, 16.3, 40, 300 }, + [36] = { 38.8, 16.2, 40, 300 }, + [37] = { 34.1, 16.2, 40, 300 }, + [38] = { 34.4, 16.1, 40, 300 }, + [39] = { 33.9, 16.1, 40, 300 }, + [40] = { 34.3, 15.9, 40, 300 }, + [41] = { 34.6, 15.9, 40, 300 }, + [42] = { 34.2, 15.9, 40, 300 }, + [43] = { 37.2, 15.8, 40, 300 }, + [44] = { 34.4, 15.7, 40, 300 }, + [45] = { 34.5, 15.6, 40, 300 }, + [46] = { 39, 15.4, 40, 300 }, + [47] = { 38.3, 15.3, 40, 300 }, + [48] = { 37.7, 15.2, 40, 300 }, + [49] = { 33.4, 15.1, 40, 300 }, + [50] = { 38.9, 14.7, 40, 300 }, + [51] = { 38.5, 14.3, 40, 300 }, + }, + ["lvl"] = "14-15", + }, + [514] = { + ["coords"] = { + [1] = { 41.7, 65.5, 12, 285 }, + }, + ["fac"] = "A", + ["lvl"] = "24", + }, + [515] = { + ["coords"] = { + [1] = { 53, 11.3, 40, 300 }, + [2] = { 53.2, 11.1, 40, 300 }, + [3] = { 53.3, 10.4, 40, 300 }, + [4] = { 52.2, 10.3, 40, 300 }, + [5] = { 55.3, 10, 40, 300 }, + [6] = { 47.4, 9.9, 40, 300 }, + [7] = { 56.1, 9.8, 40, 300 }, + [8] = { 53.8, 9.7, 40, 300 }, + [9] = { 52.7, 9.6, 40, 300 }, + [10] = { 54.1, 9.6, 40, 300 }, + [11] = { 55.3, 9.5, 40, 300 }, + [12] = { 47.4, 9.4, 40, 300 }, + [13] = { 51.9, 9.3, 40, 300 }, + [14] = { 55.6, 9.2, 40, 300 }, + [15] = { 45.2, 8.9, 40, 300 }, + [16] = { 53.1, 8.9, 40, 300 }, + [17] = { 56.5, 8.8, 40, 300 }, + [18] = { 55.7, 8.6, 40, 300 }, + [19] = { 44.4, 8.6, 40, 300 }, + [20] = { 45.5, 8.4, 40, 300 }, + [21] = { 44.8, 8.4, 40, 300 }, + [22] = { 45, 8.1, 40, 300 }, + [23] = { 55.6, 8, 40, 300 }, + [24] = { 43.9, 7.9, 40, 300 }, + [25] = { 44.7, 7.9, 40, 300 }, + [26] = { 44.8, 7.7, 40, 300 }, + [27] = { 55.9, 7.6, 40, 300 }, + [28] = { 55.7, 7.3, 40, 300 }, + }, + ["lvl"] = "11-12", + }, + [516] = { + ["coords"] = {}, + ["lvl"] = "22-23", + }, + [517] = { + ["coords"] = { + [1] = { 34.1, 86.3, 40, 300 }, + [2] = { 34.6, 86.2, 40, 300 }, + [3] = { 34.5, 85.9, 40, 300 }, + [4] = { 35, 85.4, 40, 300 }, + [5] = { 34.6, 85.3, 40, 300 }, + [6] = { 35.1, 85.3, 40, 300 }, + [7] = { 34, 84.9, 40, 300 }, + [8] = { 34.9, 84.5, 40, 300 }, + [9] = { 33.7, 84.4, 40, 300 }, + [10] = { 34.6, 84.3, 40, 300 }, + [11] = { 35.3, 84.3, 40, 300 }, + [12] = { 34.8, 84.2, 40, 300 }, + [13] = { 28, 75.7, 40, 300 }, + [14] = { 27.2, 75.6, 40, 300 }, + [15] = { 26.5, 74.8, 40, 300 }, + [16] = { 27.8, 74.5, 40, 300 }, + [17] = { 26.1, 74.4, 40, 300 }, + [18] = { 27.2, 74.4, 40, 300 }, + [19] = { 25.5, 74, 40, 300 }, + [20] = { 26.6, 73.8, 40, 300 }, + [21] = { 25.9, 73.7, 40, 300 }, + [22] = { 26.1, 73.7, 40, 300 }, + [23] = { 26.7, 73.3, 40, 300 }, + [24] = { 28.2, 73.1, 40, 300 }, + [25] = { 27.1, 72.7, 40, 300 }, + [26] = { 26, 72.2, 40, 300 }, + [27] = { 26.8, 72.1, 40, 300 }, + [28] = { 26.6, 72, 40, 300 }, + [29] = { 27.2, 71.7, 40, 300 }, + [30] = { 26.2, 71.7, 40, 300 }, + [31] = { 26.8, 70.4, 40, 300 }, + [32] = { 28.4, 70.3, 40, 300 }, + [33] = { 27.7, 70, 40, 300 }, + [34] = { 28.2, 69.3, 40, 300 }, + [35] = { 28, 69.2, 40, 300 }, + [36] = { 28.2, 69, 40, 300 }, + [37] = { 27.7, 68.8, 40, 300 }, + [38] = { 26.6, 60.3, 40, 300 }, + [39] = { 27.9, 60, 40, 300 }, + [40] = { 27.5, 59.9, 40, 300 }, + [41] = { 27.7, 59.9, 40, 300 }, + [42] = { 26.8, 59.5, 40, 300 }, + [43] = { 26.1, 59, 40, 300 }, + [44] = { 27.3, 58.7, 40, 300 }, + [45] = { 27.7, 58.6, 40, 300 }, + [46] = { 26.7, 58.2, 40, 300 }, + [47] = { 27.4, 57.9, 40, 300 }, + [48] = { 23.7, 57.1, 40, 300 }, + [49] = { 27, 55.3, 40, 300 }, + [50] = { 27.3, 54.8, 40, 300 }, + [51] = { 27.8, 54.2, 40, 300 }, + [52] = { 26.9, 54.2, 40, 300 }, + [53] = { 27.8, 54, 40, 300 }, + [54] = { 27.5, 53.6, 40, 300 }, + [55] = { 26.9, 53.4, 40, 300 }, + [56] = { 27.7, 52.9, 40, 300 }, + [57] = { 27.4, 52.5, 40, 300 }, + [58] = { 33.8, 83, 40, 300 }, + }, + ["lvl"] = "17-18", + }, + [518] = { + ["coords"] = { + [1] = { 27.7, 21.4, 44, 300 }, + }, + ["lvl"] = "25", + }, + [519] = { + ["coords"] = { + [1] = { 47, 10.9, 40, 5400 }, + }, + ["lvl"] = "15", + ["rnk"] = "4", + }, + [520] = { + ["coords"] = { + [1] = { 27.3, 44.5, 40, 7200 }, + }, + ["lvl"] = "19", + ["rnk"] = "4", + }, + [521] = { + ["coords"] = { + [1] = { 14.9, 29, 10, 14400 }, + [2] = { 32.6, 25.8, 10, 14400 }, + [3] = { 64.3, 24, 10, 14400 }, + }, + ["lvl"] = "23", + ["rnk"] = "4", + }, + [522] = { + ["coords"] = { + [1] = { 16.7, 37.4, 10, 600 }, + }, + ["lvl"] = "35", + ["rnk"] = "1", + }, + [523] = { + ["coords"] = { + [1] = { 56.6, 52.6, 40, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [524] = { + ["coords"] = { + [1] = { 45, 89.6, 12, 270 }, + [2] = { 45.6, 88, 12, 270 }, + [3] = { 44.6, 87.2, 12, 270 }, + [4] = { 54.9, 85.9, 12, 270 }, + [5] = { 53.6, 85.4, 12, 270 }, + [6] = { 46.6, 85.1, 12, 270 }, + [7] = { 52.7, 84.4, 12, 270 }, + [8] = { 56.4, 83.9, 12, 270 }, + [9] = { 44.5, 83.8, 12, 270 }, + [10] = { 54.4, 83.7, 12, 270 }, + [11] = { 71.4, 83.6, 12, 270 }, + [12] = { 45.9, 82.9, 12, 270 }, + [13] = { 72.9, 82.7, 12, 270 }, + [14] = { 70.7, 82.6, 12, 270 }, + [15] = { 66.9, 82.5, 12, 270 }, + [16] = { 57.2, 82.4, 12, 270 }, + [17] = { 53.2, 82.4, 12, 270 }, + [18] = { 43, 82, 12, 270 }, + [19] = { 74.4, 81.9, 12, 270 }, + [20] = { 52.6, 81.5, 12, 270 }, + [21] = { 60.5, 81.4, 12, 270 }, + [22] = { 65.7, 81.3, 12, 270 }, + [23] = { 46.6, 81, 12, 270 }, + [24] = { 44, 81, 12, 270 }, + [25] = { 48.3, 80.9, 12, 270 }, + [26] = { 54.7, 80.9, 12, 270 }, + [27] = { 73.5, 80.8, 12, 270 }, + [28] = { 58, 80.8, 12, 270 }, + [29] = { 64, 80.6, 12, 270 }, + [30] = { 46.4, 80.2, 12, 270 }, + [31] = { 74.4, 80.1, 12, 270 }, + [32] = { 53.4, 79.9, 12, 270 }, + [33] = { 66.9, 79.9, 12, 270 }, + [34] = { 54.9, 79.9, 12, 270 }, + [35] = { 62.9, 79.8, 12, 270 }, + [36] = { 60.6, 79.7, 12, 270 }, + [37] = { 72.6, 79.7, 12, 270 }, + [38] = { 50.1, 79.7, 12, 270 }, + [39] = { 61, 79.7, 12, 270 }, + [40] = { 64.6, 79.6, 12, 270 }, + [41] = { 47.2, 79.4, 12, 270 }, + [42] = { 44.1, 79.3, 12, 270 }, + [43] = { 44.5, 79.2, 12, 270 }, + [44] = { 50.1, 78.7, 12, 270 }, + [45] = { 47.9, 78.6, 12, 270 }, + [46] = { 46.6, 78.6, 12, 270 }, + [47] = { 73.8, 78.5, 12, 270 }, + [48] = { 64.1, 78.4, 12, 270 }, + [49] = { 61.7, 78.3, 12, 270 }, + [50] = { 61.6, 78.3, 12, 270 }, + [51] = { 60.3, 78.2, 12, 270 }, + [52] = { 60.2, 78.1, 12, 270 }, + [53] = { 52.1, 78, 12, 270 }, + [54] = { 54.2, 77.9, 12, 270 }, + [55] = { 43.3, 77.9, 12, 270 }, + [56] = { 65.8, 77.7, 12, 270 }, + [57] = { 61, 77.2, 12, 270 }, + [58] = { 67.3, 76.9, 12, 270 }, + [59] = { 65, 76.7, 12, 270 }, + [60] = { 55.5, 76.6, 12, 270 }, + [61] = { 59.1, 76.5, 12, 270 }, + [62] = { 73, 76.5, 12, 270 }, + [63] = { 53.4, 76.5, 12, 270 }, + [64] = { 57.2, 76.4, 12, 270 }, + [65] = { 62.9, 76.2, 12, 270 }, + [66] = { 49, 76.1, 12, 270 }, + [67] = { 48, 76, 12, 270 }, + [68] = { 63.9, 75.8, 12, 270 }, + [69] = { 52.5, 75.8, 12, 270 }, + [70] = { 47.3, 75.8, 12, 270 }, + [71] = { 49.5, 75.7, 12, 270 }, + [72] = { 65.5, 75.6, 12, 270 }, + [73] = { 69.5, 75.5, 12, 270 }, + [74] = { 62.1, 75.4, 12, 270 }, + [75] = { 60.1, 75.4, 12, 270 }, + [76] = { 54.6, 75.2, 12, 270 }, + [77] = { 71.8, 75.2, 12, 270 }, + [78] = { 56.4, 75.2, 12, 270 }, + [79] = { 58.6, 74.8, 12, 270 }, + [80] = { 58.5, 74.7, 12, 270 }, + [81] = { 51.9, 74.7, 12, 270 }, + [82] = { 59.3, 74.5, 12, 270 }, + [83] = { 59.1, 74.3, 12, 270 }, + [84] = { 53.3, 73.9, 12, 270 }, + [85] = { 55.6, 73.8, 12, 270 }, + [86] = { 57.1, 73.8, 12, 270 }, + [87] = { 70.8, 73.7, 12, 270 }, + [88] = { 58.4, 72.8, 12, 270 }, + [89] = { 69.7, 72.6, 12, 270 }, + [90] = { 58.3, 72.4, 12, 270 }, + }, + ["lvl"] = "7-8", + }, + [525] = { + ["coords"] = { + [1] = { 23.6, 76.8, 12, 270 }, + [2] = { 32.4, 76.7, 12, 270 }, + [3] = { 21.7, 76.4, 12, 270 }, + [4] = { 33.5, 76.1, 12, 270 }, + [5] = { 33.1, 75.7, 12, 270 }, + [6] = { 26.5, 75.6, 12, 270 }, + [7] = { 28.7, 75.5, 12, 270 }, + [8] = { 22.5, 75.5, 12, 270 }, + [9] = { 22.2, 75.5, 12, 270 }, + [10] = { 34.7, 75.5, 12, 270 }, + [11] = { 28.5, 74.8, 12, 270 }, + [12] = { 21.4, 74.3, 12, 270 }, + [13] = { 29.1, 74.3, 12, 270 }, + [14] = { 27.6, 74.2, 12, 270 }, + [15] = { 35.6, 73.6, 12, 270 }, + [16] = { 33.9, 73.6, 12, 270 }, + [17] = { 33.6, 73.4, 12, 270 }, + [18] = { 29.6, 72.9, 12, 270 }, + [19] = { 29.3, 72.8, 12, 270 }, + [20] = { 35.1, 72.6, 12, 270 }, + [21] = { 29.6, 72.2, 12, 270 }, + [22] = { 28.8, 72.2, 12, 270 }, + [23] = { 29.3, 72.2, 12, 270 }, + [24] = { 30.3, 72.1, 12, 270 }, + [25] = { 30.4, 71.9, 12, 270 }, + [26] = { 27.7, 71.3, 12, 270 }, + [27] = { 31.1, 71.3, 12, 270 }, + [28] = { 52.9, 71.3, 12, 270 }, + [29] = { 54.9, 71.1, 12, 270 }, + [30] = { 56.2, 71.1, 12, 270 }, + [31] = { 35.4, 70.7, 12, 270 }, + [32] = { 50.9, 70.5, 12, 270 }, + [33] = { 56.7, 70.1, 12, 270 }, + [34] = { 35, 70, 12, 270 }, + [35] = { 52, 70, 12, 270 }, + [36] = { 55.3, 69.8, 12, 270 }, + [37] = { 57.1, 69.7, 12, 270 }, + [38] = { 53.3, 69.7, 12, 270 }, + [39] = { 51.4, 69.7, 12, 270 }, + [40] = { 29.1, 69.6, 12, 270 }, + [41] = { 49.6, 69.5, 12, 270 }, + [42] = { 36.1, 69.2, 12, 270 }, + [43] = { 30.6, 69.1, 12, 270 }, + [44] = { 48.8, 68.6, 12, 270 }, + [45] = { 45.9, 68.5, 12, 270 }, + [46] = { 46.7, 68.4, 12, 270 }, + [47] = { 47.6, 68.1, 12, 270 }, + [48] = { 30.6, 68.1, 12, 270 }, + [49] = { 32.5, 67.7, 12, 270 }, + [50] = { 34.9, 67.5, 12, 270 }, + [51] = { 28.3, 67.4, 12, 270 }, + [52] = { 35, 66.7, 12, 270 }, + [53] = { 34.4, 65.3, 12, 270 }, + [54] = { 37.5, 64.9, 12, 270 }, + [55] = { 38.5, 63.8, 12, 270 }, + [56] = { 52, 63.8, 12, 270 }, + [57] = { 52.1, 63.7, 12, 270 }, + [58] = { 35.3, 63.4, 12, 270 }, + [59] = { 36.9, 63.2, 12, 270 }, + [60] = { 52.1, 63, 12, 270 }, + [61] = { 52.4, 62.7, 12, 270 }, + [62] = { 35.9, 62.6, 12, 270 }, + [63] = { 34.7, 62.4, 12, 270 }, + [64] = { 42.7, 62.2, 12, 270 }, + [65] = { 38.3, 62.2, 12, 270 }, + [66] = { 52.4, 62, 12, 270 }, + [67] = { 50.8, 61.7, 12, 270 }, + [68] = { 55.2, 61.5, 12, 270 }, + [69] = { 56.5, 61.5, 12, 270 }, + [70] = { 35.4, 61.2, 12, 270 }, + [71] = { 43.1, 61.1, 12, 270 }, + [72] = { 50.4, 61, 12, 270 }, + [73] = { 49.6, 61, 12, 270 }, + [74] = { 36.8, 60.8, 12, 270 }, + [75] = { 58.4, 60.6, 12, 270 }, + [76] = { 53.8, 60.4, 12, 270 }, + [77] = { 56.8, 60.4, 12, 270 }, + [78] = { 57.1, 59.8, 12, 270 }, + [79] = { 55, 59.4, 12, 270 }, + [80] = { 34.2, 59.3, 12, 270 }, + [81] = { 56.4, 59, 12, 270 }, + [82] = { 49.5, 58.3, 12, 270 }, + [83] = { 41.4, 58.2, 12, 270 }, + [84] = { 33.4, 58.2, 12, 270 }, + [85] = { 44.6, 57.8, 12, 270 }, + [86] = { 32.1, 56.2, 12, 270 }, + [87] = { 32.2, 55.5, 12, 270 }, + [88] = { 45.8, 55.4, 12, 270 }, + [89] = { 42.8, 55, 12, 270 }, + }, + ["lvl"] = "5-6", + }, + [531] = { + ["coords"] = { + [1] = { 21.8, 47.4, 10, 300 }, + [2] = { 16, 47.2, 10, 300 }, + [3] = { 16.8, 47, 10, 300 }, + [4] = { 15.2, 46.3, 10, 300 }, + [5] = { 20.6, 46.3, 10, 300 }, + [6] = { 23.8, 44, 10, 300 }, + [7] = { 22.3, 43, 10, 300 }, + [8] = { 16.2, 42.8, 10, 300 }, + [9] = { 23.3, 42.6, 10, 300 }, + [10] = { 22.2, 42.3, 10, 300 }, + [11] = { 15.2, 42.2, 10, 300 }, + [12] = { 17.7, 47.1, 10, 300 }, + [13] = { 16.3, 45.5, 10, 300 }, + [14] = { 23, 43.4, 10, 300 }, + [15] = { 21.4, 43.3, 10, 300 }, + [16] = { 22.6, 40.4, 10, 300 }, + }, + ["lvl"] = "24-25", + }, + [533] = { + ["coords"] = { + [1] = { 67.2, 75.5, 10, 300 }, + [2] = { 64.8, 75.1, 10, 300 }, + [3] = { 59.9, 72.4, 10, 300 }, + [4] = { 62.4, 72.3, 10, 300 }, + [5] = { 60.7, 70.9, 10, 300 }, + [6] = { 66.1, 70.9, 10, 300 }, + [7] = { 63.6, 70.4, 10, 300 }, + [8] = { 65.4, 68.7, 10, 300 }, + [9] = { 64.2, 67.7, 10, 300 }, + [10] = { 65.1, 66.4, 10, 300 }, + [11] = { 64.4, 66.3, 10, 300 }, + [12] = { 66.5, 66.2, 10, 300 }, + [13] = { 59.7, 52.8, 10, 300 }, + [14] = { 61.9, 52.1, 10, 300 }, + [15] = { 61.4, 45.9, 10, 300 }, + [16] = { 64.9, 45.7, 10, 300 }, + [17] = { 63.5, 44.4, 10, 300 }, + [18] = { 65.9, 40.8, 10, 300 }, + [19] = { 64.8, 38.7, 10, 300 }, + [20] = { 61.1, 37.3, 10, 300 }, + [21] = { 63.5, 37, 10, 300 }, + [22] = { 62.6, 35, 10, 300 }, + [23] = { 57.3, 30.4, 10, 300 }, + [24] = { 62, 30.2, 10, 300 }, + [25] = { 58.3, 29.3, 10, 300 }, + [26] = { 66, 73.9, 10, 300 }, + [27] = { 67.3, 70.8, 10, 300 }, + [28] = { 67.2, 69.2, 10, 300 }, + [29] = { 66, 48.1, 10, 300 }, + [30] = { 62.3, 47.9, 10, 300 }, + [31] = { 64.8, 42.8, 10, 300 }, + [32] = { 63.5, 40.8, 10, 300 }, + [33] = { 62.3, 38.9, 10, 300 }, + }, + ["lvl"] = "27-28", + }, + [534] = { + ["coords"] = { + [1] = { 63.5, 83.7, 10, 18000 }, + [2] = { 74, 79.3, 10, 18000 }, + }, + ["lvl"] = "34", + ["rnk"] = "4", + }, + [535] = { + ["coords"] = {}, + ["lvl"] = "30", + }, + [536] = { + ["coords"] = {}, + ["lvl"] = "32", + }, + [538] = { + ["coords"] = {}, + ["lvl"] = "31", + }, + [539] = { + ["coords"] = { + [1] = { 13.2, 70.3, 10, 300 }, + [2] = { 11.7, 68.7, 10, 300 }, + [3] = { 10.3, 66.6, 10, 300 }, + [4] = { 11.6, 62.7, 10, 300 }, + [5] = { 9.2, 60.8, 10, 300 }, + [6] = { 10.5, 59.3, 10, 300 }, + [7] = { 12, 59.2, 10, 300 }, + [8] = { 9.7, 57.3, 10, 300 }, + [9] = { 9.7, 53.7, 10, 300 }, + [10] = { 10.8, 53, 10, 300 }, + [11] = { 12, 51.2, 10, 300 }, + [12] = { 9.5, 49.7, 10, 300 }, + [13] = { 9, 46.3, 10, 300 }, + [14] = { 7.9, 44.8, 10, 300 }, + [15] = { 9.4, 42.8, 10, 300 }, + [16] = { 8, 40.9, 10, 300 }, + [17] = { 12.5, 28.8, 10, 300 }, + [18] = { 23.8, 27.8, 10, 300 }, + [19] = { 28.8, 27.6, 10, 300 }, + [20] = { 34, 24.6, 10, 300 }, + [21] = { 40.1, 21.8, 10, 300 }, + [22] = { 37.1, 21.3, 10, 300 }, + [23] = { 72.1, 19, 10, 300 }, + [24] = { 69.7, 18.7, 10, 300 }, + [25] = { 84.7, 18.4, 10, 300 }, + [26] = { 66.4, 18, 10, 270 }, + [27] = { 66.7, 17.9, 10, 300 }, + [28] = { 74.8, 17.5, 10, 300 }, + [29] = { 66.3, 17.1, 10, 300 }, + [30] = { 46.5, 16.7, 10, 300 }, + [31] = { 60.8, 16.6, 10, 300 }, + [32] = { 68.3, 15.9, 10, 300 }, + [33] = { 47.6, 15.9, 10, 300 }, + [34] = { 54.5, 14.2, 10, 300 }, + [35] = { 53.9, 13.3, 10, 300 }, + [36] = { 73.3, 89.2, 12, 300 }, + [37] = { 71.4, 66.5, 40, 300 }, + [38] = { 70.3, 64.9, 40, 300 }, + [39] = { 69.5, 60.5, 40, 300 }, + [40] = { 69.9, 57.8, 40, 300 }, + [41] = { 69.3, 49.3, 40, 300 }, + [42] = { 68.5, 48.1, 40, 300 }, + [43] = { 10.6, 55.5, 10, 300 }, + }, + ["lvl"] = "18-19", + }, + [541] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "29", + }, + [542] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "62", + }, + [543] = { + ["coords"] = { + [1] = { 62.2, 24.4, 361, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [544] = { + ["coords"] = { + [1] = { 81.7, 60.1, 44, 300 }, + [2] = { 81.1, 59.7, 44, 300 }, + [3] = { 81.2, 59.6, 44, 300 }, + [4] = { 80.8, 58.5, 44, 300 }, + }, + ["lvl"] = "21-22", + }, + [545] = { + ["coords"] = { + [1] = { 80.8, 61.5, 44, 300 }, + [2] = { 81.3, 61.2, 44, 300 }, + [3] = { 81.9, 61.2, 44, 300 }, + [4] = { 81.2, 60.4, 44, 300 }, + [5] = { 81.1, 59.3, 44, 300 }, + [6] = { 54.4, 55.7, 44, 300 }, + [7] = { 55.6, 53.9, 44, 300 }, + [8] = { 56.7, 53.9, 44, 300 }, + [9] = { 54.1, 52.8, 44, 300 }, + [10] = { 56.3, 51.3, 44, 300 }, + [11] = { 57.7, 51.1, 44, 300 }, + }, + ["lvl"] = "19-20", + }, + [547] = { + ["coords"] = { + [1] = { 67.5, 70.9, 40, 300 }, + [2] = { 49.7, 68.7, 40, 300 }, + [3] = { 54.6, 68.3, 40, 300 }, + [4] = { 66.7, 68.1, 40, 300 }, + [5] = { 58.6, 68, 40, 300 }, + [6] = { 57.1, 67.7, 40, 300 }, + [7] = { 51.7, 67.6, 40, 300 }, + [8] = { 60.8, 67.6, 40, 300 }, + [9] = { 64.3, 66.7, 40, 300 }, + [10] = { 58.2, 62.2, 40, 300 }, + [11] = { 58.8, 59, 40, 300 }, + [12] = { 59, 56.9, 40, 300 }, + [13] = { 63.9, 55.1, 40, 300 }, + [14] = { 62.4, 51.5, 40, 300 }, + [15] = { 60.2, 50.5, 40, 300 }, + [16] = { 59, 49.1, 40, 300 }, + [17] = { 28.4, 79.4, 44, 300 }, + [18] = { 30.4, 78.6, 44, 300 }, + [19] = { 24.7, 78.5, 44, 300 }, + [20] = { 38.4, 73.6, 44, 300 }, + [21] = { 29, 73.3, 44, 300 }, + [22] = { 19.4, 72.8, 44, 300 }, + [23] = { 31.3, 72, 44, 300 }, + [24] = { 34, 71.3, 44, 300 }, + [25] = { 32.1, 71.1, 44, 300 }, + [26] = { 17.9, 71.1, 44, 300 }, + [27] = { 31.2, 67.8, 44, 300 }, + [28] = { 33.6, 65.9, 44, 300 }, + [29] = { 33.9, 61.1, 44, 300 }, + [30] = { 25.4, 60.5, 44, 300 }, + [31] = { 17.7, 55.3, 44, 300 }, + [32] = { 15.3, 54, 44, 300 }, + [33] = { 18.3, 54, 44, 300 }, + [34] = { 16.8, 52.3, 44, 300 }, + [35] = { 14.5, 49.9, 44, 300 }, + [36] = { 17.4, 47.1, 44, 300 }, + [37] = { 18.5, 43.6, 44, 300 }, + [38] = { 19.8, 40, 44, 300 }, + [39] = { 48.5, 25.3, 44, 300 }, + [40] = { 45.2, 20.5, 44, 300 }, + [41] = { 46.2, 17.1, 44, 300 }, + [42] = { 42.3, 16.3, 44, 300 }, + [43] = { 46.9, 14.3, 44, 300 }, + [44] = { 46.4, 10.4, 44, 300 }, + [45] = { 27, 79.8, 44, 300 }, + [46] = { 27.8, 75.6, 44, 300 }, + [47] = { 18.1, 71.7, 44, 300 }, + [48] = { 57.2, 41.7, 44, 300 }, + }, + ["lvl"] = "16-17", + }, + [548] = { + ["coords"] = { + [1] = { 48.9, 72, 44, 300 }, + [2] = { 49.9, 72, 44, 300 }, + [3] = { 47.4, 70.8, 44, 300 }, + [4] = { 50.2, 68.5, 44, 300 }, + [5] = { 48.3, 67.4, 44, 300 }, + [6] = { 57.7, 65.3, 44, 300 }, + [7] = { 60.2, 62.4, 44, 300 }, + [8] = { 57.5, 61.8, 44, 300 }, + [9] = { 55.3, 61.7, 44, 300 }, + [10] = { 59.9, 61.5, 44, 300 }, + [11] = { 58.1, 60.4, 44, 300 }, + [12] = { 58.6, 60.3, 44, 300 }, + [13] = { 55.9, 60.1, 44, 300 }, + [14] = { 48.3, 72.2, 44, 300 }, + [15] = { 50.2, 70.3, 44, 300 }, + [16] = { 48.7, 69.4, 44, 300 }, + }, + ["lvl"] = "17-18", + }, + [550] = { + ["coords"] = { + [1] = { 44.5, 69.6, 40, 120 }, + }, + ["lvl"] = "14-15", + }, + [564] = { + ["coords"] = {}, + ["lvl"] = "10-11", + }, + [565] = { + ["coords"] = { + [1] = { 12.9, 69.2, 10, 300 }, + [2] = { 10.6, 61, 10, 300 }, + [3] = { 11.6, 57.3, 10, 300 }, + [4] = { 10.7, 51.6, 10, 300 }, + [5] = { 10, 46.4, 10, 300 }, + [6] = { 9.6, 40.5, 10, 300 }, + [7] = { 11.6, 33.6, 10, 300 }, + [8] = { 11, 32.3, 10, 300 }, + [9] = { 13.2, 30.5, 10, 300 }, + [10] = { 21.5, 30.5, 10, 300 }, + [11] = { 16.1, 29.7, 10, 300 }, + [12] = { 33.1, 29.4, 10, 300 }, + [13] = { 20.3, 28.9, 10, 300 }, + [14] = { 34, 28.1, 10, 300 }, + [15] = { 20.4, 28.1, 10, 300 }, + [16] = { 19.2, 27.8, 10, 300 }, + [17] = { 16.3, 27.2, 10, 300 }, + [18] = { 14.3, 27.2, 10, 300 }, + [19] = { 35.2, 26.1, 10, 300 }, + [20] = { 15.6, 26.1, 10, 300 }, + [21] = { 37.6, 25.7, 10, 300 }, + [22] = { 22.6, 25.6, 10, 300 }, + [23] = { 20.4, 25.4, 10, 300 }, + [24] = { 18.9, 25.3, 10, 300 }, + [25] = { 39, 23.8, 10, 300 }, + [26] = { 67.1, 22.6, 10, 285 }, + [27] = { 40.1, 22.1, 10, 300 }, + [28] = { 67.3, 20.1, 10, 285 }, + [29] = { 56.2, 19.6, 10, 300 }, + [30] = { 61.5, 19.5, 10, 300 }, + [31] = { 54.8, 18.4, 10, 300 }, + [32] = { 66, 18, 10, 300 }, + [33] = { 31.3, 98, 12, 300 }, + [34] = { 14.1, 27.7, 10, 300 }, + [35] = { 31.2, 98.3, 12, 300 }, + }, + ["lvl"] = "20-21", + }, + [566] = { + ["coords"] = {}, + ["lvl"] = "19", + }, + [567] = { + ["coords"] = {}, + ["lvl"] = "15", + }, + [568] = { + ["coords"] = { + [1] = { 85.8, 58.6, 44, 300 }, + [2] = { 82.4, 55.5, 44, 300 }, + [3] = { 84.3, 54.4, 44, 300 }, + [4] = { 81.4, 48.4, 44, 300 }, + [5] = { 78.9, 47.4, 44, 300 }, + [6] = { 81.6, 46.6, 44, 300 }, + [7] = { 79.9, 45.3, 44, 300 }, + [8] = { 79.8, 45, 44, 300 }, + [9] = { 77.7, 45, 44, 300 }, + [10] = { 76.9, 41, 44, 300 }, + [11] = { 79.2, 40.5, 44, 300 }, + [12] = { 81.8, 40.4, 44, 300 }, + [13] = { 78.2, 39.2, 44, 300 }, + [14] = { 76.4, 38.2, 44, 300 }, + [15] = { 76.7, 37.8, 44, 300 }, + [16] = { 76.2, 37.8, 44, 300 }, + [17] = { 75.9, 36.8, 44, 300 }, + [18] = { 80.9, 36.6, 44, 300 }, + [19] = { 80.7, 35.4, 44, 300 }, + [20] = { 76.6, 35.4, 44, 300 }, + [21] = { 77.7, 34.8, 44, 300 }, + [22] = { 75.7, 31.3, 44, 300 }, + [23] = { 76.2, 41.4, 44, 300 }, + [24] = { 74.9, 38.9, 44, 300 }, + }, + ["lvl"] = "24-25", + }, + [569] = { + ["coords"] = { + [1] = { 13.3, 69.2, 10, 300 }, + [2] = { 13.9, 64.8, 10, 300 }, + [3] = { 13.2, 58.4, 10, 300 }, + [4] = { 12.4, 55.1, 10, 300 }, + [5] = { 13, 51, 10, 300 }, + [6] = { 11, 41.9, 10, 300 }, + [7] = { 10.3, 41.5, 10, 300 }, + [8] = { 71.3, 23.7, 10, 300 }, + [9] = { 61.9, 23.2, 10, 300 }, + [10] = { 75.5, 22.7, 10, 300 }, + [11] = { 68.1, 22.7, 10, 300 }, + [12] = { 69, 22.6, 10, 300 }, + [13] = { 66.8, 22.5, 10, 300 }, + [14] = { 64.8, 22.4, 10, 300 }, + [15] = { 57.3, 22.3, 10, 300 }, + [16] = { 54.9, 22, 10, 300 }, + [17] = { 68.6, 21.9, 10, 270 }, + [18] = { 59.9, 21.9, 10, 300 }, + [19] = { 72.8, 21.5, 10, 300 }, + [20] = { 58.1, 21, 10, 300 }, + [21] = { 62.5, 20.4, 10, 300 }, + [22] = { 56.1, 20.4, 10, 300 }, + [23] = { 54.2, 20.4, 10, 300 }, + [24] = { 50.8, 20.3, 10, 300 }, + [25] = { 51.3, 19.3, 10, 300 }, + }, + ["lvl"] = "21-22", + }, + [570] = { + ["coords"] = { + [1] = { 25.9, 36.1, 10, 300 }, + [2] = { 25.1, 34.6, 10, 300 }, + [3] = { 26.9, 34.2, 10, 300 }, + [4] = { 17.3, 33.5, 10, 300 }, + [5] = { 17.1, 33.3, 10, 300 }, + [6] = { 25.4, 30.7, 10, 300 }, + [7] = { 24.6, 30.6, 10, 300 }, + [8] = { 20.5, 30, 10, 300 }, + [9] = { 21.4, 29.9, 10, 300 }, + [10] = { 24.9, 29.8, 10, 300 }, + [11] = { 22.3, 29.7, 10, 300 }, + [12] = { 24.4, 28.8, 10, 300 }, + [13] = { 25.4, 28.8, 10, 300 }, + [14] = { 20.1, 28.7, 10, 300 }, + [15] = { 21, 28.5, 10, 300 }, + [16] = { 21.8, 28.4, 10, 300 }, + [17] = { 22.5, 28.2, 10, 300 }, + [18] = { 24.8, 28, 10, 300 }, + [19] = { 24.1, 27.5, 10, 300 }, + [20] = { 20.2, 27.3, 10, 300 }, + [21] = { 25.3, 27.2, 10, 300 }, + [22] = { 22.1, 27, 10, 300 }, + }, + ["lvl"] = "28-29", + }, + [572] = { + ["coords"] = { + [1] = { 64.7, 66.7, 40, 7200 }, + [2] = { 41.7, 29.4, 40, 7200 }, + }, + ["lvl"] = "19", + ["rnk"] = "4", + }, + [573] = { + ["coords"] = { + [1] = { 44.8, 35.4, 40, 14400 }, + }, + ["lvl"] = "20", + ["rnk"] = "4", + }, + [574] = { + ["coords"] = { + [1] = { 86.4, 47.6, 10, 18000 }, + }, + ["lvl"] = "27", + ["rnk"] = "4", + }, + [575] = { + ["coords"] = {}, + ["lvl"] = "35-36", + }, + [576] = { + ["coords"] = { + [1] = { 74.5, 46.1, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "28", + }, + [578] = { + ["coords"] = { + [1] = { 58.1, 57.4, 44, 300 }, + [2] = { 56.3, 55.4, 44, 300 }, + [3] = { 57.1, 54.6, 44, 300 }, + [4] = { 38.9, 53.9, 44, 300 }, + [5] = { 58.3, 53.4, 44, 300 }, + [6] = { 56.9, 52.8, 44, 300 }, + [7] = { 58, 52, 44, 300 }, + [8] = { 39.1, 51.6, 44, 300 }, + [9] = { 57.1, 51.2, 44, 300 }, + [10] = { 45.4, 51, 44, 300 }, + [11] = { 39.2, 48.7, 44, 300 }, + [12] = { 40.1, 48.2, 44, 300 }, + [13] = { 40.9, 46.4, 44, 300 }, + [14] = { 41, 46.2, 44, 300 }, + [15] = { 40.4, 44.7, 44, 300 }, + [16] = { 40.5, 55.7, 44, 300 }, + [17] = { 40.5, 49, 44, 300 }, + [18] = { 43.5, 49, 44, 300 }, + [19] = { 39.1, 46.8, 44, 300 }, + [20] = { 41.9, 46.7, 44, 300 }, + }, + ["lvl"] = "19-20", + }, + [579] = { + ["coords"] = { + [1] = { 79, 54.3, 44, 300 }, + [2] = { 80.2, 49.1, 44, 300 }, + }, + ["lvl"] = "23-24", + }, + [580] = { + ["coords"] = { + [1] = { 20, 27.5, 44, 300 }, + [2] = { 18.8, 24.3, 44, 300 }, + [3] = { 21.6, 23.6, 44, 300 }, + [4] = { 15.9, 21.2, 44, 300 }, + [5] = { 20.4, 21, 44, 300 }, + [6] = { 22.4, 20.5, 44, 300 }, + [7] = { 16, 18.9, 44, 300 }, + [8] = { 17, 17.9, 44, 300 }, + [9] = { 21.3, 17.4, 44, 300 }, + [10] = { 16.1, 17.1, 44, 300 }, + [11] = { 22.3, 16.6, 44, 300 }, + [12] = { 18.1, 15.4, 44, 300 }, + [13] = { 18.7, 15.3, 44, 300 }, + [14] = { 20.2, 13.2, 44, 300 }, + [15] = { 56.4, 91.8, 46, 300 }, + [16] = { 58, 90.5, 46, 300 }, + [17] = { 58.4, 90.4, 46, 300 }, + [18] = { 59.5, 88.9, 46, 300 }, + }, + ["lvl"] = "20-21", + }, + [582] = { + ["coords"] = { + [1] = { 59.8, 19.4, 40, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "2", + }, + [583] = { + ["coords"] = { + [1] = { 34.4, 55.8, 12, 0 }, + }, + ["lvl"] = "8-9", + }, + [584] = { + ["coords"] = { + [1] = { 35.9, 8, 44, 18000 }, + [2] = { 71.1, 85, 46, 18000 }, + }, + ["lvl"] = "27", + ["rnk"] = "4", + }, + [586] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "30", + }, + [587] = { + ["coords"] = { + [1] = { 29.8, 21.5, 33, 300 }, + [2] = { 30.4, 20.8, 33, 300 }, + [3] = { 29.3, 20, 33, 300 }, + [4] = { 28.8, 19.9, 33, 300 }, + [5] = { 29.9, 19.7, 33, 300 }, + [6] = { 29.5, 19.6, 33, 300 }, + [7] = { 29.7, 19.6, 33, 300 }, + [8] = { 29.8, 19.5, 33, 300 }, + [9] = { 29.5, 19.4, 33, 300 }, + [10] = { 30.7, 19.4, 33, 300 }, + [11] = { 29.6, 19.3, 33, 300 }, + [12] = { 29.7, 19.1, 33, 300 }, + [13] = { 29, 19.1, 33, 300 }, + [14] = { 29.8, 19.1, 33, 300 }, + [15] = { 30.5, 18.1, 33, 300 }, + [16] = { 33.5, 17, 33, 300 }, + [17] = { 34, 16.8, 33, 300 }, + [18] = { 30.4, 16.8, 33, 300 }, + [19] = { 34.6, 16, 33, 300 }, + [20] = { 33.9, 15.9, 33, 300 }, + [21] = { 33.7, 15.7, 33, 300 }, + [22] = { 33.5, 15.6, 33, 300 }, + [23] = { 33.9, 15.4, 33, 300 }, + [24] = { 34.3, 14.6, 33, 300 }, + [25] = { 33.4, 13.8, 33, 300 }, + }, + ["lvl"] = "33-34", + }, + [588] = { + ["coords"] = { + [1] = { 25.5, 13.4, 33, 300 }, + [2] = { 26.1, 13.4, 33, 300 }, + [3] = { 25.1, 13.4, 33, 300 }, + [4] = { 22.5, 13.4, 33, 300 }, + [5] = { 24.1, 13.3, 33, 300 }, + [6] = { 26.4, 13.2, 33, 300 }, + [7] = { 24.2, 13.2, 33, 300 }, + [8] = { 23.9, 13.2, 33, 300 }, + [9] = { 25.6, 13.2, 33, 300 }, + [10] = { 23.8, 13.2, 33, 300 }, + [11] = { 23.1, 13.1, 33, 300 }, + [12] = { 22.3, 13.1, 33, 300 }, + [13] = { 25.3, 12.9, 33, 300 }, + [14] = { 22.4, 12.8, 33, 300 }, + [15] = { 26.1, 12.7, 33, 300 }, + [16] = { 24.7, 12.7, 33, 300 }, + [17] = { 25.9, 12.7, 33, 300 }, + [18] = { 23.4, 12.6, 33, 300 }, + [19] = { 24.5, 12.6, 33, 300 }, + [20] = { 23, 12.6, 33, 300 }, + [21] = { 24.8, 12.6, 33, 300 }, + [22] = { 26.3, 12.4, 33, 300 }, + [23] = { 26.1, 12.4, 33, 300 }, + [24] = { 23.4, 12.4, 33, 300 }, + [25] = { 24.5, 12.3, 33, 300 }, + [26] = { 24.8, 12.3, 33, 300 }, + [27] = { 24.7, 12.3, 33, 300 }, + [28] = { 23.1, 12.3, 33, 300 }, + [29] = { 25.4, 12.2, 33, 300 }, + [30] = { 22.9, 12.2, 33, 300 }, + [31] = { 25.9, 12.2, 33, 300 }, + [32] = { 23.9, 12.2, 33, 300 }, + [33] = { 24.8, 12.2, 33, 300 }, + [34] = { 26.1, 12.2, 33, 300 }, + [35] = { 26.3, 12.2, 33, 300 }, + [36] = { 25.7, 12.1, 33, 300 }, + [37] = { 23, 12.1, 33, 300 }, + [38] = { 23.3, 12, 33, 300 }, + [39] = { 23.1, 12, 33, 300 }, + [40] = { 22.7, 12, 33, 300 }, + [41] = { 27.6, 11.7, 33, 300 }, + [42] = { 26, 11.5, 33, 300 }, + [43] = { 24.7, 11.5, 33, 300 }, + [44] = { 26.5, 11.4, 33, 300 }, + [45] = { 26.3, 11.3, 33, 300 }, + [46] = { 25.1, 11.3, 33, 300 }, + [47] = { 27.2, 11.3, 33, 300 }, + [48] = { 25.2, 11.3, 33, 300 }, + [49] = { 24.4, 11.2, 33, 300 }, + [50] = { 25.9, 11, 33, 300 }, + [51] = { 22.9, 11, 33, 300 }, + [52] = { 27.6, 11, 33, 300 }, + [53] = { 24.8, 11, 33, 300 }, + [54] = { 25.6, 10.6, 33, 300 }, + [55] = { 25.3, 10.5, 33, 300 }, + [56] = { 26.1, 10.1, 33, 300 }, + [57] = { 25.7, 10, 33, 300 }, + [58] = { 25.4, 10, 33, 300 }, + [59] = { 25.1, 9.9, 33, 300 }, + [60] = { 26, 9.8, 33, 300 }, + [61] = { 25.1, 9.7, 33, 300 }, + [62] = { 25.4, 9.6, 33, 300 }, + [63] = { 25, 9.4, 33, 300 }, + [64] = { 26, 9.4, 33, 300 }, + [65] = { 25.6, 9.3, 33, 300 }, + [66] = { 26.1, 9.3, 33, 300 }, + [67] = { 25.7, 9.3, 33, 300 }, + [68] = { 25.1, 9.3, 33, 300 }, + [69] = { 25.4, 9.2, 33, 300 }, + [70] = { 26, 9.2, 33, 300 }, + [71] = { 25.7, 9.1, 33, 300 }, + [72] = { 25.9, 9, 33, 300 }, + [73] = { 25.5, 9, 33, 300 }, + [74] = { 26.1, 8.9, 33, 300 }, + [75] = { 25.9, 8.4, 33, 300 }, + [76] = { 26.2, 8.3, 33, 300 }, + }, + ["lvl"] = "34-35", + }, + [589] = { + ["coords"] = { + [1] = { 41.5, 71.2, 40, 300 }, + [2] = { 46, 71.1, 40, 300 }, + [3] = { 43, 70.8, 40, 300 }, + [4] = { 43.5, 70.8, 40, 300 }, + [5] = { 46, 70.7, 40, 300 }, + [6] = { 42.2, 70.5, 40, 300 }, + [7] = { 45.5, 70.4, 40, 300 }, + [8] = { 45.4, 70.3, 40, 300 }, + [9] = { 43.1, 70.1, 40, 300 }, + [10] = { 41.5, 69.9, 40, 300 }, + [11] = { 41.9, 69.6, 40, 300 }, + [12] = { 38.8, 69.6, 40, 300 }, + [13] = { 43.3, 69.6, 40, 300 }, + [14] = { 42, 69.6, 40, 300 }, + [15] = { 41.8, 69.5, 40, 300 }, + [16] = { 42.1, 69.5, 40, 300 }, + [17] = { 42.2, 69.4, 40, 300 }, + [18] = { 45.8, 69.3, 40, 300 }, + [19] = { 42.6, 69.3, 40, 300 }, + [20] = { 43.7, 69.3, 40, 300 }, + [21] = { 44, 69.2, 40, 300 }, + [22] = { 43.4, 68.8, 40, 300 }, + [23] = { 44.8, 68.7, 40, 300 }, + [24] = { 44.3, 68.6, 40, 300 }, + [25] = { 43.9, 68.4, 40, 300 }, + [26] = { 43.6, 68.2, 40, 300 }, + [27] = { 42.9, 68.2, 40, 300 }, + [28] = { 44.1, 68.2, 40, 300 }, + [29] = { 43.6, 68.1, 40, 300 }, + [30] = { 43.9, 68.1, 40, 300 }, + [31] = { 43.4, 68.1, 40, 300 }, + [32] = { 43.8, 67.7, 40, 300 }, + [33] = { 44.4, 67.7, 40, 300 }, + [34] = { 43.7, 67.5, 40, 300 }, + [35] = { 44.4, 67.4, 40, 300 }, + [36] = { 46.3, 67.2, 40, 300 }, + [37] = { 44.9, 67.1, 40, 300 }, + [38] = { 43.5, 66.9, 40, 300 }, + [39] = { 43.7, 66.4, 40, 300 }, + [40] = { 44.5, 65.7, 40, 300 }, + [41] = { 33.2, 58.6, 40, 300 }, + [42] = { 38.6, 58.1, 40, 300 }, + [43] = { 38.8, 58, 40, 300 }, + [44] = { 37.3, 57.9, 40, 300 }, + [45] = { 38.8, 57.7, 40, 300 }, + [46] = { 32.1, 57.7, 40, 300 }, + [47] = { 38.5, 57.6, 40, 300 }, + [48] = { 38.1, 57.4, 40, 300 }, + [49] = { 33.9, 57, 40, 300 }, + [50] = { 38.8, 56.9, 40, 300 }, + [51] = { 38.7, 56.8, 40, 300 }, + [52] = { 32.8, 56.7, 40, 300 }, + [53] = { 33.2, 56.6, 40, 300 }, + [54] = { 37.1, 55.9, 40, 300 }, + [55] = { 36.4, 55.4, 40, 300 }, + [56] = { 36, 54.7, 40, 300 }, + [57] = { 36, 54.6, 40, 300 }, + [58] = { 37.2, 54.5, 40, 300 }, + [59] = { 36.5, 54.1, 40, 300 }, + [60] = { 36.7, 54, 40, 300 }, + [61] = { 36.7, 53.8, 40, 300 }, + [62] = { 35.1, 53.8, 40, 300 }, + [63] = { 35, 53.8, 40, 300 }, + [64] = { 35.6, 53.5, 40, 300 }, + [65] = { 35.9, 53.1, 40, 300 }, + [66] = { 36, 53.1, 40, 300 }, + [67] = { 29.2, 51.1, 40, 300 }, + [68] = { 29.6, 50.2, 40, 300 }, + [69] = { 28.9, 50.1, 40, 300 }, + [70] = { 29.6, 49.9, 40, 300 }, + [71] = { 30.1, 49.7, 40, 300 }, + [72] = { 28.8, 49.5, 40, 300 }, + [73] = { 30.8, 48.4, 40, 300 }, + [74] = { 29.7, 47.3, 40, 300 }, + [75] = { 29.7, 47, 40, 300 }, + [76] = { 29.9, 46.1, 40, 300 }, + [77] = { 30.4, 45.9, 40, 300 }, + [78] = { 29.9, 45.7, 40, 300 }, + [79] = { 31.6, 44.9, 40, 300 }, + [80] = { 31.2, 44.6, 40, 300 }, + [81] = { 31.6, 44.1, 40, 300 }, + [82] = { 32.1, 44, 40, 300 }, + [83] = { 30.9, 43, 40, 300 }, + [84] = { 31.7, 43, 40, 300 }, + }, + ["lvl"] = "14-15", + }, + [590] = { + ["coords"] = { + [1] = { 41.5, 71.2, 40, 300 }, + [2] = { 46, 71.1, 40, 300 }, + [3] = { 43, 70.8, 40, 300 }, + [4] = { 43.5, 70.8, 40, 300 }, + [5] = { 46, 70.7, 40, 300 }, + [6] = { 42.2, 70.5, 40, 300 }, + [7] = { 45.5, 70.4, 40, 300 }, + [8] = { 45.4, 70.3, 40, 300 }, + [9] = { 43.1, 70.1, 40, 300 }, + [10] = { 41.5, 69.9, 40, 300 }, + [11] = { 41.9, 69.6, 40, 300 }, + [12] = { 38.8, 69.6, 40, 300 }, + [13] = { 43.3, 69.6, 40, 300 }, + [14] = { 42, 69.6, 40, 300 }, + [15] = { 41.8, 69.5, 40, 300 }, + [16] = { 42.1, 69.5, 40, 300 }, + [17] = { 42.2, 69.4, 40, 300 }, + [18] = { 45.8, 69.3, 40, 300 }, + [19] = { 42.6, 69.3, 40, 300 }, + [20] = { 43.7, 69.3, 40, 300 }, + [21] = { 44, 69.2, 40, 300 }, + [22] = { 43.4, 68.8, 40, 300 }, + [23] = { 44.8, 68.7, 40, 300 }, + [24] = { 44.3, 68.6, 40, 300 }, + [25] = { 43.9, 68.4, 40, 300 }, + [26] = { 43.6, 68.2, 40, 300 }, + [27] = { 42.9, 68.2, 40, 300 }, + [28] = { 44.1, 68.2, 40, 300 }, + [29] = { 43.6, 68.1, 40, 300 }, + [30] = { 43.9, 68.1, 40, 300 }, + [31] = { 43.4, 68.1, 40, 300 }, + [32] = { 43.8, 67.7, 40, 300 }, + [33] = { 44.4, 67.7, 40, 300 }, + [34] = { 43.7, 67.5, 40, 300 }, + [35] = { 44.4, 67.4, 40, 300 }, + [36] = { 46.3, 67.2, 40, 300 }, + [37] = { 44.9, 67.1, 40, 300 }, + [38] = { 43.5, 66.9, 40, 300 }, + [39] = { 43.7, 66.4, 40, 300 }, + [40] = { 44.5, 65.7, 40, 300 }, + [41] = { 33.2, 58.6, 40, 300 }, + [42] = { 38.6, 58.1, 40, 300 }, + [43] = { 38.8, 58, 40, 300 }, + [44] = { 37.3, 57.9, 40, 300 }, + [45] = { 38.8, 57.7, 40, 300 }, + [46] = { 32.1, 57.7, 40, 300 }, + [47] = { 38.5, 57.6, 40, 300 }, + [48] = { 38.1, 57.4, 40, 300 }, + [49] = { 33.9, 57, 40, 300 }, + [50] = { 38.8, 56.9, 40, 300 }, + [51] = { 38.7, 56.8, 40, 300 }, + [52] = { 32.8, 56.7, 40, 300 }, + [53] = { 33.2, 56.6, 40, 300 }, + [54] = { 37.1, 55.9, 40, 300 }, + [55] = { 36.4, 55.4, 40, 300 }, + [56] = { 36, 54.7, 40, 300 }, + [57] = { 36, 54.6, 40, 300 }, + [58] = { 37.2, 54.5, 40, 300 }, + [59] = { 36.5, 54.1, 40, 300 }, + [60] = { 36.7, 54, 40, 300 }, + [61] = { 36.7, 53.8, 40, 300 }, + [62] = { 35.1, 53.8, 40, 300 }, + [63] = { 35, 53.8, 40, 300 }, + [64] = { 35.6, 53.5, 40, 300 }, + [65] = { 35.9, 53.1, 40, 300 }, + [66] = { 36, 53.1, 40, 300 }, + [67] = { 29.2, 51.1, 40, 300 }, + [68] = { 29.6, 50.2, 40, 300 }, + [69] = { 28.9, 50.1, 40, 300 }, + [70] = { 29.6, 49.9, 40, 300 }, + [71] = { 30.1, 49.7, 40, 300 }, + [72] = { 28.8, 49.5, 40, 300 }, + [73] = { 30.8, 48.4, 40, 300 }, + [74] = { 29.7, 47.3, 40, 300 }, + [75] = { 29.7, 47, 40, 300 }, + [76] = { 29.9, 46.1, 40, 300 }, + [77] = { 30.4, 45.9, 40, 300 }, + [78] = { 29.9, 45.7, 40, 300 }, + [79] = { 31.6, 44.9, 40, 300 }, + [80] = { 31.2, 44.6, 40, 300 }, + [81] = { 31.6, 44.1, 40, 300 }, + [82] = { 32.1, 44, 40, 300 }, + [83] = { 30.9, 43, 40, 300 }, + [84] = { 31.7, 43, 40, 300 }, + }, + ["lvl"] = "13-14", + }, + [592] = { + ["coords"] = {}, + ["lvl"] = "15", + }, + [594] = { + ["coords"] = { + [1] = { 42, 78.1, 40, 300 }, + [2] = { 43.8, 77, 40, 300 }, + [3] = { 42.2, 74.5, 40, 300 }, + [4] = { 43.9, 73.5, 40, 300 }, + [5] = { 42.9, 72.6, 40, 300 }, + }, + ["lvl"] = "15-16", + ["rnk"] = "1", + }, + [595] = { + ["coords"] = { + [1] = { 25.5, 13.4, 33, 300 }, + [2] = { 26.1, 13.4, 33, 300 }, + [3] = { 25.1, 13.4, 33, 300 }, + [4] = { 22.5, 13.4, 33, 300 }, + [5] = { 24.1, 13.3, 33, 300 }, + [6] = { 26.4, 13.2, 33, 300 }, + [7] = { 24.2, 13.2, 33, 300 }, + [8] = { 23.9, 13.2, 33, 300 }, + [9] = { 25.6, 13.2, 33, 300 }, + [10] = { 23.8, 13.2, 33, 300 }, + [11] = { 23.1, 13.1, 33, 300 }, + [12] = { 22.3, 13.1, 33, 300 }, + [13] = { 25.3, 12.9, 33, 300 }, + [14] = { 22.4, 12.8, 33, 300 }, + [15] = { 26.1, 12.7, 33, 300 }, + [16] = { 24.7, 12.7, 33, 300 }, + [17] = { 25.9, 12.7, 33, 300 }, + [18] = { 23.4, 12.6, 33, 300 }, + [19] = { 24.5, 12.6, 33, 300 }, + [20] = { 23, 12.6, 33, 300 }, + [21] = { 24.8, 12.6, 33, 300 }, + [22] = { 26.3, 12.4, 33, 300 }, + [23] = { 26.1, 12.4, 33, 300 }, + [24] = { 23.4, 12.4, 33, 300 }, + [25] = { 24.5, 12.3, 33, 300 }, + [26] = { 24.8, 12.3, 33, 300 }, + [27] = { 24.7, 12.3, 33, 300 }, + [28] = { 23.1, 12.3, 33, 300 }, + [29] = { 25.4, 12.2, 33, 300 }, + [30] = { 22.9, 12.2, 33, 300 }, + [31] = { 25.9, 12.2, 33, 300 }, + [32] = { 23.9, 12.2, 33, 300 }, + [33] = { 24.8, 12.2, 33, 300 }, + [34] = { 26.1, 12.2, 33, 300 }, + [35] = { 26.3, 12.2, 33, 300 }, + [36] = { 25.7, 12.1, 33, 300 }, + [37] = { 23, 12.1, 33, 300 }, + [38] = { 23.3, 12, 33, 300 }, + [39] = { 23.1, 12, 33, 300 }, + [40] = { 22.7, 12, 33, 300 }, + [41] = { 27.6, 11.7, 33, 300 }, + [42] = { 26, 11.5, 33, 300 }, + [43] = { 24.7, 11.5, 33, 300 }, + [44] = { 26.5, 11.4, 33, 300 }, + [45] = { 26.3, 11.3, 33, 300 }, + [46] = { 25.1, 11.3, 33, 300 }, + [47] = { 27.2, 11.3, 33, 300 }, + [48] = { 25.2, 11.3, 33, 300 }, + [49] = { 24.4, 11.2, 33, 300 }, + [50] = { 25.9, 11, 33, 300 }, + [51] = { 22.9, 11, 33, 300 }, + [52] = { 27.6, 11, 33, 300 }, + [53] = { 24.8, 11, 33, 300 }, + [54] = { 25.6, 10.6, 33, 300 }, + [55] = { 25.3, 10.5, 33, 300 }, + [56] = { 26.1, 10.1, 33, 300 }, + [57] = { 25.7, 10, 33, 300 }, + [58] = { 25.4, 10, 33, 300 }, + [59] = { 25.1, 9.9, 33, 300 }, + [60] = { 26, 9.8, 33, 300 }, + [61] = { 25.1, 9.7, 33, 300 }, + [62] = { 25.4, 9.6, 33, 300 }, + [63] = { 25, 9.4, 33, 300 }, + [64] = { 26, 9.4, 33, 300 }, + [65] = { 25.6, 9.3, 33, 300 }, + [66] = { 26.1, 9.3, 33, 300 }, + [67] = { 25.7, 9.3, 33, 300 }, + [68] = { 25.1, 9.3, 33, 300 }, + [69] = { 25.4, 9.2, 33, 300 }, + [70] = { 26, 9.2, 33, 300 }, + [71] = { 25.7, 9.1, 33, 300 }, + [72] = { 25.9, 9, 33, 300 }, + [73] = { 25.5, 9, 33, 300 }, + [74] = { 26.1, 8.9, 33, 300 }, + [75] = { 25.9, 8.4, 33, 300 }, + [76] = { 26.2, 8.3, 33, 300 }, + }, + ["lvl"] = "34-35", + }, + [596] = { + ["coords"] = { + [1] = { 44, 78.3, 40, 3600 }, + }, + ["lvl"] = "18", + ["rnk"] = "2", + }, + [597] = { + ["coords"] = { + [1] = { 20.9, 15.4, 33, 300 }, + [2] = { 20.5, 14.4, 33, 300 }, + [3] = { 21, 13.5, 33, 300 }, + [4] = { 20.1, 13.5, 33, 300 }, + [5] = { 20.9, 13, 33, 300 }, + [6] = { 20.4, 12.9, 33, 300 }, + [7] = { 19.4, 12.8, 33, 300 }, + [8] = { 20.3, 12.2, 33, 300 }, + [9] = { 19.9, 12.1, 33, 300 }, + [10] = { 20.9, 12.1, 33, 300 }, + [11] = { 20, 12.1, 33, 300 }, + [12] = { 20.1, 12, 33, 300 }, + [13] = { 19.5, 12, 33, 300 }, + [14] = { 19.9, 11.9, 33, 300 }, + [15] = { 20.3, 11.8, 33, 300 }, + [16] = { 20, 11.7, 33, 300 }, + [17] = { 19.4, 11.4, 33, 300 }, + [18] = { 23.1, 11.2, 33, 300 }, + [19] = { 20.7, 11.2, 33, 300 }, + [20] = { 23.4, 10.9, 33, 300 }, + [21] = { 23.7, 10.9, 33, 300 }, + [22] = { 23.2, 10.8, 33, 300 }, + [23] = { 22.8, 10.8, 33, 300 }, + [24] = { 23.2, 10.7, 33, 300 }, + [25] = { 24.1, 10.7, 33, 300 }, + [26] = { 24.6, 10.7, 33, 300 }, + [27] = { 24.4, 10.6, 33, 300 }, + [28] = { 24.7, 10.5, 33, 300 }, + [29] = { 24.2, 10.4, 33, 300 }, + [30] = { 24.7, 10.3, 33, 300 }, + [31] = { 21.5, 10.3, 33, 300 }, + [32] = { 21.3, 10.2, 33, 300 }, + [33] = { 22.9, 10.1, 33, 300 }, + [34] = { 24, 10, 33, 300 }, + [35] = { 23.7, 9.9, 33, 300 }, + [36] = { 24.5, 9.9, 33, 300 }, + [37] = { 24.2, 9.8, 33, 300 }, + [38] = { 23.9, 9.8, 33, 300 }, + [39] = { 23.6, 9.7, 33, 300 }, + [40] = { 22.7, 9.7, 33, 300 }, + [41] = { 23.4, 9.5, 33, 300 }, + [42] = { 24.1, 9.4, 33, 300 }, + [43] = { 24.3, 9.4, 33, 300 }, + [44] = { 23.8, 9.4, 33, 300 }, + [45] = { 24.7, 9.4, 33, 300 }, + [46] = { 22.7, 9.2, 33, 300 }, + [47] = { 23.4, 9.2, 33, 300 }, + [48] = { 24.4, 9.1, 33, 300 }, + [49] = { 23.7, 8.9, 33, 300 }, + [50] = { 24.2, 8.8, 33, 300 }, + [51] = { 23, 8.8, 33, 300 }, + [52] = { 23.5, 8.8, 33, 300 }, + [53] = { 22.7, 8.6, 33, 300 }, + [54] = { 23.5, 8.4, 33, 300 }, + [55] = { 23.4, 8.4, 33, 300 }, + [56] = { 23.6, 8.2, 33, 300 }, + [57] = { 23.3, 8.2, 33, 300 }, + }, + ["lvl"] = "36-37", + }, + [598] = { + ["coords"] = {}, + ["lvl"] = "17-18", + }, + [599] = { + ["coords"] = { + [1] = { 42.2, 79.9, 40, 3600 }, + }, + ["lvl"] = "18", + ["rnk"] = "2", + }, + [601] = { + ["coords"] = {}, + ["lvl"] = "16", + ["rnk"] = "2", + }, + [603] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [604] = { + ["coords"] = { + [1] = { 23.7, 36.5, 10, 300 }, + [2] = { 24.1, 35.9, 10, 300 }, + [3] = { 23.3, 35.9, 10, 300 }, + [4] = { 25.8, 35.2, 10, 300 }, + [5] = { 17.2, 34.9, 10, 300 }, + [6] = { 23.3, 34.9, 10, 300 }, + [7] = { 24.1, 34.8, 10, 300 }, + [8] = { 24.5, 34.7, 10, 300 }, + [9] = { 15.8, 34.7, 10, 300 }, + [10] = { 25.7, 34.4, 10, 300 }, + [11] = { 26.4, 34.2, 10, 300 }, + [12] = { 17.9, 34.2, 10, 300 }, + [13] = { 23.7, 34.1, 10, 300 }, + [14] = { 16.4, 33.9, 10, 300 }, + [15] = { 16.8, 32.8, 10, 300 }, + [16] = { 17.7, 32.8, 10, 300 }, + [17] = { 25.6, 32.7, 10, 300 }, + [18] = { 23.2, 28.1, 10, 300 }, + [19] = { 25.4, 30.7, 10, 300 }, + [20] = { 24.6, 30.6, 10, 300 }, + [21] = { 24.9, 29.8, 10, 300 }, + [22] = { 24.4, 28.8, 10, 300 }, + [23] = { 25.4, 28.8, 10, 300 }, + [24] = { 20.1, 28.7, 10, 300 }, + [25] = { 21, 28.5, 10, 300 }, + [26] = { 21.8, 28.4, 10, 300 }, + [27] = { 22.5, 28.2, 10, 300 }, + [28] = { 24.1, 27.5, 10, 300 }, + }, + ["lvl"] = "27-28", + }, + [605] = { + ["coords"] = {}, + ["lvl"] = "24", + }, + [606] = { + ["coords"] = {}, + ["lvl"] = "24", + }, + [607] = { + ["coords"] = {}, + ["lvl"] = "23", + }, + [609] = { + ["coords"] = {}, + ["lvl"] = "26", + }, + [610] = { + ["coords"] = {}, + ["lvl"] = "31", + }, + [611] = { + ["coords"] = {}, + ["lvl"] = "32", + }, + [612] = { + ["coords"] = {}, + ["lvl"] = "32", + }, + [613] = { + ["coords"] = {}, + ["lvl"] = "31", + }, + [614] = { + ["coords"] = {}, + ["lvl"] = "36", + }, + [615] = { + ["coords"] = { + [1] = { 39.2, 14.8, 44, 300 }, + [2] = { 39, 14.4, 44, 300 }, + [3] = { 26.1, 12.9, 44, 300 }, + [4] = { 37.3, 12.8, 44, 300 }, + [5] = { 36.7, 12.6, 44, 300 }, + [6] = { 35.9, 10.8, 44, 300 }, + [7] = { 35.5, 9.9, 44, 300 }, + [8] = { 36.6, 9.2, 44, 300 }, + [9] = { 29.6, 8.8, 44, 300 }, + [10] = { 27.4, 8.5, 44, 300 }, + [11] = { 35.9, 7.9, 44, 300 }, + [12] = { 70.9, 86.4, 46, 300 }, + [13] = { 71.7, 85.9, 46, 300 }, + [14] = { 66.5, 85.6, 46, 300 }, + [15] = { 64.9, 85.4, 46, 300 }, + [16] = { 71.2, 84.9, 46, 300 }, + [17] = { 28.4, 17.6, 44, 300 }, + [18] = { 29.4, 12, 44, 300 }, + [19] = { 31.4, 11, 44, 300 }, + [20] = { 34.8, 9.1, 44, 300 }, + [21] = { 29.5, 8.6, 44, 300 }, + [22] = { 34.4, 7.8, 44, 300 }, + [23] = { 32.1, 7, 44, 300 }, + [24] = { 34.4, 6.7, 44, 300 }, + [25] = { 66.3, 88, 46, 300 }, + [26] = { 67.8, 87.2, 46, 300 }, + [27] = { 70.3, 85.8, 46, 300 }, + [28] = { 66.4, 85.5, 46, 300 }, + [29] = { 70, 84.9, 46, 300 }, + [30] = { 68.3, 84.3, 46, 300 }, + [31] = { 70, 84.1, 46, 300 }, + }, + ["lvl"] = "23-24", + }, + [616] = { + ["coords"] = { + [1] = { 53.1, 37.1, 44, 14400 }, + }, + ["lvl"] = "23", + ["rnk"] = "4", + }, + [619] = { + ["coords"] = { + [1] = { 40.5, 78.2, 40, 300 }, + [2] = { 41.7, 76.1, 40, 300 }, + [3] = { 43.7, 74.3, 40, 300 }, + [4] = { 42, 78.1, 40, 300 }, + }, + ["lvl"] = "15-16", + ["rnk"] = "1", + }, + [620] = { + ["coords"] = { + [1] = { 75.7, 56.3, 10, 300 }, + [2] = { 77.2, 55.5, 10, 300 }, + [3] = { 72.7, 54.3, 10, 300 }, + [4] = { 76.5, 53.7, 10, 300 }, + [5] = { 73.6, 53.1, 10, 300 }, + [6] = { 78, 48, 10, 300 }, + [7] = { 79.8, 46.9, 10, 300 }, + [8] = { 78, 44.2, 10, 300 }, + [9] = { 17.2, 71.4, 11, 60 }, + [10] = { 21, 70.1, 11, 60 }, + [11] = { 21.2, 69.9, 11, 60 }, + [12] = { 25.6, 68, 11, 60 }, + [13] = { 25.9, 67.8, 11, 60 }, + [14] = { 26.9, 67.2, 11, 60 }, + [15] = { 27.5, 65.9, 11, 60 }, + [16] = { 48.4, 86.7, 12, 300 }, + [17] = { 48.6, 86.6, 12, 300 }, + [18] = { 48.5, 86.5, 12, 300 }, + [19] = { 79.1, 67.7, 12, 300 }, + [20] = { 79.3, 67.6, 12, 300 }, + [21] = { 77.8, 66.5, 12, 300 }, + [22] = { 77.7, 66.4, 12, 300 }, + [23] = { 42.8, 66.2, 12, 300 }, + [24] = { 77.6, 66.2, 12, 300 }, + [25] = { 78.3, 66, 12, 300 }, + [26] = { 42.8, 65.9, 12, 300 }, + [27] = { 81.1, 65.6, 12, 300 }, + [28] = { 77.7, 65.3, 12, 300 }, + [29] = { 40.5, 64.4, 12, 300 }, + [30] = { 40.5, 64.3, 12, 300 }, + [31] = { 36.2, 60.4, 12, 300 }, + [32] = { 36.5, 60.2, 12, 300 }, + [33] = { 36, 60.1, 12, 300 }, + [34] = { 36.4, 60, 12, 300 }, + [35] = { 36.4, 59.8, 12, 300 }, + [36] = { 65, 51.1, 15, 300 }, + [37] = { 67.6, 50.8, 15, 300 }, + [38] = { 64.2, 50.2, 15, 300 }, + [39] = { 65.5, 49.5, 15, 300 }, + [40] = { 66.4, 48.5, 15, 300 }, + [41] = { 64.4, 47.5, 15, 300 }, + [42] = { 66.8, 46.1, 15, 300 }, + [43] = { 52.2, 5.4, 15, 300 }, + [44] = { 52.5, 5.3, 15, 300 }, + [45] = { 62.6, 56.8, 17, 300 }, + [46] = { 62.7, 56.7, 17, 300 }, + [47] = { 60.8, 55.5, 17, 300 }, + [48] = { 62.3, 54, 17, 300 }, + [49] = { 61.8, 53.6, 17, 300 }, + [50] = { 61.3, 53.5, 17, 300 }, + [51] = { 61.7, 53.3, 17, 300 }, + [52] = { 61.6, 24.3, 17, 300 }, + [53] = { 62, 24.2, 17, 300 }, + [54] = { 61.8, 23.9, 17, 300 }, + [55] = { 62, 23.9, 17, 300 }, + [56] = { 61.7, 23.8, 17, 300 }, + [57] = { 61.6, 23.7, 17, 300 }, + [58] = { 45.1, 70, 40, 300 }, + [59] = { 45.4, 69.6, 40, 300 }, + [60] = { 45.3, 69.6, 40, 300 }, + [61] = { 44.7, 68.3, 40, 300 }, + [62] = { 44.8, 68.1, 40, 300 }, + [63] = { 38.2, 57.1, 40, 300 }, + [64] = { 38.8, 57, 40, 300 }, + [65] = { 38.6, 56.7, 40, 300 }, + [66] = { 38.9, 56.7, 40, 300 }, + [67] = { 45.6, 39.6, 40, 300 }, + [68] = { 45.7, 39.2, 40, 300 }, + [69] = { 45.8, 38.8, 40, 300 }, + [70] = { 55.9, 31.9, 40, 300 }, + [71] = { 56.2, 31.8, 40, 300 }, + [72] = { 51.5, 31.6, 40, 300 }, + [73] = { 55.7, 31.4, 40, 300 }, + [74] = { 51.5, 31.3, 40, 300 }, + [75] = { 51.7, 31.2, 40, 300 }, + [76] = { 55.6, 30.9, 40, 300 }, + [77] = { 56.1, 30, 40, 300 }, + [78] = { 56.1, 29.7, 40, 300 }, + [79] = { 56.2, 29.6, 40, 300 }, + [80] = { 48.7, 21.3, 40, 300 }, + [81] = { 49, 20.8, 40, 300 }, + [82] = { 49.2, 20.5, 40, 300 }, + [83] = { 49.3, 19.8, 40, 300 }, + [84] = { 49.7, 19.5, 40, 300 }, + [85] = { 50, 19, 40, 300 }, + [86] = { 20.3, 47.1, 44, 300 }, + [87] = { 20.2, 46.4, 44, 300 }, + [88] = { 22.2, 45.9, 44, 300 }, + [89] = { 52.9, 56.3, 85, 180 }, + [90] = { 52.2, 56.2, 85, 180 }, + [91] = { 60.9, 53.6, 85, 180 }, + [92] = { 38.1, 51.7, 85, 180 }, + [93] = { 60.3, 51.3, 85, 180 }, + [94] = { 37.2, 50.2, 85, 180 }, + [95] = { 38, 48.9, 85, 180 }, + [96] = { 63.3, 61.4, 267, 300 }, + [97] = { 64.6, 61.1, 267, 300 }, + [98] = { 50.1, 57, 267, 300 }, + [99] = { 52.6, 57, 267, 300 }, + [100] = { 52.2, 55.8, 267, 300 }, + [101] = { 51.2, 54.1, 267, 300 }, + [102] = { 35, 47.1, 267, 300 }, + [103] = { 79.7, 44.4, 267, 300 }, + [104] = { 32.8, 43.1, 267, 300 }, + [105] = { 78.9, 42.5, 267, 300 }, + [106] = { 33.2, 41.2, 267, 300 }, + [107] = { 36, 40.5, 267, 300 }, + [108] = { 29.9, 40.5, 267, 300 }, + }, + ["lvl"] = "1", + }, + [622] = { + ["coords"] = {}, + ["lvl"] = "18-19", + ["rnk"] = "1", + }, + [623] = { + ["coords"] = { + [1] = { 41.4, 83.2, 40, 900 }, + [2] = { 41.2, 83.2, 40, 900 }, + [3] = { 41.5, 82.6, 40, 900 }, + [4] = { 40.8, 82.6, 40, 900 }, + [5] = { 40.7, 82.3, 40, 900 }, + [6] = { 40.7, 81.8, 40, 900 }, + [7] = { 41.6, 81.7, 40, 900 }, + [8] = { 41.8, 81.4, 40, 900 }, + [9] = { 42.2, 81.4, 40, 900 }, + [10] = { 41.5, 81.3, 40, 900 }, + [11] = { 40.7, 81.2, 40, 900 }, + [12] = { 40.9, 80.8, 40, 900 }, + }, + ["lvl"] = "17-18", + ["rnk"] = "1", + }, + [624] = { + ["coords"] = { + [1] = { 42.1, 83, 40, 900 }, + [2] = { 41, 82.8, 40, 900 }, + [3] = { 42, 82.5, 40, 900 }, + [4] = { 40.9, 81.5, 40, 900 }, + [5] = { 40.5, 81.3, 40, 900 }, + [6] = { 41, 80.9, 40, 900 }, + [7] = { 41.2, 83.2, 40, 900 }, + [8] = { 41.5, 82.6, 40, 900 }, + [9] = { 40.8, 82.6, 40, 900 }, + [10] = { 40.7, 81.8, 40, 900 }, + [11] = { 41.6, 81.7, 40, 900 }, + [12] = { 41.8, 81.4, 40, 900 }, + }, + ["lvl"] = "17-18", + ["rnk"] = "1", + }, + [625] = { + ["coords"] = { + [1] = { 42.4, 83.3, 40, 900 }, + [2] = { 41.5, 83.3, 40, 900 }, + [3] = { 41, 80.9, 40, 900 }, + [4] = { 40.9, 80.8, 40, 900 }, + [5] = { 41.2, 83.2, 40, 900 }, + [6] = { 41.5, 82.6, 40, 900 }, + [7] = { 40.8, 82.6, 40, 900 }, + [8] = { 40.7, 81.8, 40, 900 }, + [9] = { 41.6, 81.7, 40, 900 }, + [10] = { 41.8, 81.4, 40, 900 }, + }, + ["lvl"] = "17-18", + ["rnk"] = "1", + }, + [626] = { + ["coords"] = { + [1] = { 42.2, 82.6, 40, 300 }, + }, + ["lvl"] = "20", + ["rnk"] = "1", + }, + [628] = { + ["coords"] = { + [1] = { 52.7, 63.2, 10, 300 }, + [2] = { 48.6, 61.5, 10, 300 }, + [3] = { 59.3, 58.8, 10, 300 }, + [4] = { 59.7, 57.8, 10, 300 }, + [5] = { 69.7, 35.3, 10, 300 }, + [6] = { 68.4, 33.3, 10, 300 }, + [7] = { 67.4, 31.8, 10, 300 }, + [8] = { 66.1, 28.7, 10, 300 }, + [9] = { 63.7, 27.8, 10, 300 }, + [10] = { 64.1, 25.6, 10, 300 }, + }, + ["lvl"] = "24-25", + }, + [631] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [633] = { + ["coords"] = { + [1] = { 75.3, 48.7, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "18", + }, + [634] = { + ["coords"] = {}, + ["lvl"] = "17-18", + ["rnk"] = "1", + }, + [636] = { + ["coords"] = {}, + ["lvl"] = "19-20", + ["rnk"] = "1", + }, + [638] = { + ["coords"] = {}, + ["lvl"] = "15-16", + ["rnk"] = "1", + }, + [639] = { + ["coords"] = {}, + ["lvl"] = "21", + ["rnk"] = "2", + }, + [641] = { + ["coords"] = {}, + ["lvl"] = "18-19", + ["rnk"] = "1", + }, + [642] = { + ["coords"] = {}, + ["lvl"] = "20", + ["rnk"] = "1", + }, + [643] = { + ["coords"] = {}, + ["lvl"] = "20", + ["rnk"] = "1", + }, + [644] = { + ["coords"] = {}, + ["lvl"] = "19", + ["rnk"] = "1", + }, + [645] = { + ["coords"] = {}, + ["lvl"] = "20", + ["rnk"] = "1", + }, + [646] = { + ["coords"] = {}, + ["lvl"] = "20", + ["rnk"] = "1", + }, + [647] = { + ["coords"] = {}, + ["lvl"] = "20", + ["rnk"] = "1", + }, + [648] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [649] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "10", + }, + [650] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "6", + }, + [651] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "6", + }, + [652] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "6", + }, + [653] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "6", + }, + [656] = { + ["coords"] = { + [1] = { 65.4, 21.2, 1519, 285 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [657] = { + ["coords"] = {}, + ["lvl"] = "19-20", + ["rnk"] = "1", + }, + [658] = { + ["coords"] = { + [1] = { 29.9, 71.2, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [659] = { + ["coords"] = {}, + ["lvl"] = "50", + }, + [660] = { + ["coords"] = { + [1] = { 20.9, 15.4, 33, 300 }, + [2] = { 20.5, 14.4, 33, 300 }, + [3] = { 21, 13.5, 33, 300 }, + [4] = { 20.1, 13.5, 33, 300 }, + [5] = { 20.9, 13, 33, 300 }, + [6] = { 20.4, 12.9, 33, 300 }, + [7] = { 19.4, 12.8, 33, 300 }, + [8] = { 20.3, 12.2, 33, 300 }, + [9] = { 19.9, 12.1, 33, 300 }, + [10] = { 20.9, 12.1, 33, 300 }, + [11] = { 20, 12.1, 33, 300 }, + [12] = { 20.1, 12, 33, 300 }, + [13] = { 19.5, 12, 33, 300 }, + [14] = { 19.9, 11.9, 33, 300 }, + [15] = { 20.3, 11.8, 33, 300 }, + [16] = { 20, 11.7, 33, 300 }, + [17] = { 19.4, 11.4, 33, 300 }, + [18] = { 23.1, 11.2, 33, 300 }, + [19] = { 20.7, 11.2, 33, 300 }, + [20] = { 23.4, 10.9, 33, 300 }, + [21] = { 23.7, 10.9, 33, 300 }, + [22] = { 23.2, 10.8, 33, 300 }, + [23] = { 22.8, 10.8, 33, 300 }, + [24] = { 23.2, 10.7, 33, 300 }, + [25] = { 24.1, 10.7, 33, 300 }, + [26] = { 24.6, 10.7, 33, 300 }, + [27] = { 24.4, 10.6, 33, 300 }, + [28] = { 24.7, 10.5, 33, 300 }, + [29] = { 24.2, 10.4, 33, 300 }, + [30] = { 24.7, 10.3, 33, 300 }, + [31] = { 21.5, 10.3, 33, 300 }, + [32] = { 21.3, 10.2, 33, 300 }, + [33] = { 22.9, 10.1, 33, 300 }, + [34] = { 24, 10, 33, 300 }, + [35] = { 23.7, 9.9, 33, 300 }, + [36] = { 24.5, 9.9, 33, 300 }, + [37] = { 24.2, 9.8, 33, 300 }, + [38] = { 23.9, 9.8, 33, 300 }, + [39] = { 23.6, 9.7, 33, 300 }, + [40] = { 22.7, 9.7, 33, 300 }, + [41] = { 23.4, 9.5, 33, 300 }, + [42] = { 24.1, 9.4, 33, 300 }, + [43] = { 24.3, 9.4, 33, 300 }, + [44] = { 23.8, 9.4, 33, 300 }, + [45] = { 24.7, 9.4, 33, 300 }, + [46] = { 22.7, 9.2, 33, 300 }, + [47] = { 23.4, 9.2, 33, 300 }, + [48] = { 24.4, 9.1, 33, 300 }, + [49] = { 23.7, 8.9, 33, 300 }, + [50] = { 24.2, 8.8, 33, 300 }, + [51] = { 23, 8.8, 33, 300 }, + [52] = { 23.5, 8.8, 33, 300 }, + [53] = { 22.7, 8.6, 33, 300 }, + [54] = { 23.5, 8.4, 33, 300 }, + [55] = { 23.4, 8.4, 33, 300 }, + [56] = { 23.6, 8.2, 33, 300 }, + [57] = { 23.3, 8.2, 33, 300 }, + }, + ["lvl"] = "37", + }, + [661] = { + ["coords"] = { + [1] = { 75.3, 49, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [663] = { + ["coords"] = { + [1] = { 75.8, 47.6, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [664] = { + ["coords"] = { + [1] = { 75, 48.6, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "2", + }, + [667] = { + ["coords"] = { + [1] = { 47.1, 41.8, 33, 300 }, + [2] = { 48.4, 41.7, 33, 300 }, + [3] = { 48.5, 41.6, 33, 300 }, + [4] = { 47.6, 41.1, 33, 300 }, + [5] = { 48.5, 40.9, 33, 300 }, + [6] = { 46.6, 40.4, 33, 300 }, + [7] = { 46, 40.3, 33, 300 }, + [8] = { 45, 40.3, 33, 300 }, + [9] = { 48.6, 40.2, 33, 300 }, + [10] = { 43.8, 40.2, 33, 300 }, + [11] = { 44.1, 40.1, 33, 300 }, + [12] = { 47.3, 39.9, 33, 300 }, + [13] = { 47, 39.8, 33, 300 }, + [14] = { 47.5, 39.8, 33, 300 }, + [15] = { 44.3, 39.7, 33, 300 }, + [16] = { 48.1, 39.5, 33, 300 }, + [17] = { 43.4, 39.5, 33, 300 }, + [18] = { 47.1, 39.5, 33, 300 }, + [19] = { 44.2, 39.5, 33, 300 }, + [20] = { 43.8, 39.4, 33, 300 }, + [21] = { 46.5, 39.1, 33, 300 }, + [22] = { 46.6, 38.9, 33, 300 }, + [23] = { 46.5, 38.8, 33, 300 }, + [24] = { 47.6, 38.8, 33, 300 }, + [25] = { 47.2, 38.6, 33, 300 }, + [26] = { 46, 37.9, 33, 300 }, + [27] = { 45, 37.9, 33, 300 }, + [28] = { 48.8, 37.5, 33, 300 }, + [29] = { 44, 37.2, 33, 300 }, + [30] = { 43.4, 36.4, 33, 300 }, + [31] = { 42.1, 36.3, 33, 300 }, + [32] = { 41.9, 36.3, 33, 300 }, + [33] = { 42.3, 36.1, 33, 300 }, + [34] = { 41.9, 36, 33, 300 }, + [35] = { 42.2, 35.8, 33, 300 }, + [36] = { 44, 35.4, 33, 300 }, + [37] = { 42.4, 35.3, 33, 300 }, + [38] = { 42.8, 35.1, 33, 300 }, + [39] = { 42.4, 35, 33, 300 }, + [40] = { 43.4, 34.8, 33, 300 }, + [41] = { 43.9, 34.4, 33, 300 }, + [42] = { 47.1, 34.1, 33, 300 }, + [43] = { 45, 34, 33, 300 }, + [44] = { 42.5, 33.3, 33, 300 }, + [45] = { 47.6, 33.3, 33, 300 }, + [46] = { 43.5, 33, 33, 300 }, + [47] = { 47.1, 32.5, 33, 300 }, + [48] = { 46.2, 32.5, 33, 300 }, + [49] = { 46, 32.3, 33, 300 }, + [50] = { 45.2, 32.3, 33, 300 }, + [51] = { 46, 32, 33, 300 }, + [52] = { 46.2, 32, 33, 300 }, + [53] = { 46.4, 32, 33, 300 }, + [54] = { 45.5, 31.7, 33, 300 }, + [55] = { 46.5, 31.4, 33, 300 }, + [56] = { 46.6, 30.1, 33, 300 }, + }, + ["lvl"] = "39-40", + }, + [669] = { + ["coords"] = { + [1] = { 45, 44.3, 33, 300 }, + [2] = { 44.6, 43.7, 33, 300 }, + [3] = { 45.8, 43.5, 33, 300 }, + [4] = { 46, 43.1, 33, 300 }, + [5] = { 45.8, 43, 33, 300 }, + [6] = { 46.2, 42.9, 33, 300 }, + [7] = { 45.6, 42.8, 33, 300 }, + [8] = { 44.4, 42.7, 33, 300 }, + [9] = { 46.2, 42.6, 33, 300 }, + [10] = { 46, 42.6, 33, 300 }, + [11] = { 45.9, 42.5, 33, 300 }, + [12] = { 45.6, 42.2, 33, 300 }, + [13] = { 44.3, 42.2, 33, 300 }, + [14] = { 46, 42.1, 33, 300 }, + [15] = { 44.6, 42, 33, 300 }, + [16] = { 45, 41.8, 33, 300 }, + [17] = { 44.5, 41.8, 33, 300 }, + [18] = { 45.8, 41.8, 33, 300 }, + [19] = { 44.9, 41.7, 33, 300 }, + [20] = { 44.3, 41.7, 33, 300 }, + [21] = { 44.6, 41.6, 33, 300 }, + [22] = { 45, 41.6, 33, 300 }, + [23] = { 47.4, 41.4, 33, 300 }, + [24] = { 48.3, 41.1, 33, 300 }, + [25] = { 44.5, 40.9, 33, 300 }, + [26] = { 45, 39.6, 33, 300 }, + [27] = { 47.4, 39, 33, 300 }, + [28] = { 45.6, 38.6, 33, 300 }, + }, + ["lvl"] = "41-42", + }, + [670] = { + ["coords"] = { + [1] = { 45, 44.3, 33, 300 }, + [2] = { 44.6, 43.7, 33, 300 }, + [3] = { 45.8, 43.5, 33, 300 }, + [4] = { 46, 43.1, 33, 300 }, + [5] = { 45.8, 43, 33, 300 }, + [6] = { 46.2, 42.9, 33, 300 }, + [7] = { 45.6, 42.8, 33, 300 }, + [8] = { 44.4, 42.7, 33, 300 }, + [9] = { 46.2, 42.6, 33, 300 }, + [10] = { 46, 42.6, 33, 300 }, + [11] = { 45.9, 42.5, 33, 300 }, + [12] = { 45.6, 42.2, 33, 300 }, + [13] = { 44.3, 42.2, 33, 300 }, + [14] = { 46, 42.1, 33, 300 }, + [15] = { 44.6, 42, 33, 300 }, + [16] = { 45, 41.8, 33, 300 }, + [17] = { 44.5, 41.8, 33, 300 }, + [18] = { 45.8, 41.8, 33, 300 }, + [19] = { 44.9, 41.7, 33, 300 }, + [20] = { 44.3, 41.7, 33, 300 }, + [21] = { 44.6, 41.6, 33, 300 }, + [22] = { 45, 41.6, 33, 300 }, + [23] = { 47.4, 41.4, 33, 300 }, + [24] = { 48.3, 41.1, 33, 300 }, + [25] = { 44.5, 40.9, 33, 300 }, + [26] = { 45, 39.6, 33, 300 }, + [27] = { 47.4, 39, 33, 300 }, + [28] = { 45.6, 38.6, 33, 300 }, + }, + ["lvl"] = "41-42", + }, + [671] = { + ["coords"] = { + [1] = { 20.9, 15.4, 33, 300 }, + [2] = { 20.5, 14.4, 33, 300 }, + [3] = { 21, 13.5, 33, 300 }, + [4] = { 20.1, 13.5, 33, 300 }, + [5] = { 20.9, 13, 33, 300 }, + [6] = { 20.4, 12.9, 33, 300 }, + [7] = { 19.4, 12.8, 33, 300 }, + [8] = { 20.3, 12.2, 33, 300 }, + [9] = { 19.9, 12.1, 33, 300 }, + [10] = { 20.9, 12.1, 33, 300 }, + [11] = { 20, 12.1, 33, 300 }, + [12] = { 20.1, 12, 33, 300 }, + [13] = { 19.5, 12, 33, 300 }, + [14] = { 19.9, 11.9, 33, 300 }, + [15] = { 20.3, 11.8, 33, 300 }, + [16] = { 20, 11.7, 33, 300 }, + [17] = { 19.4, 11.4, 33, 300 }, + [18] = { 23.1, 11.2, 33, 300 }, + [19] = { 20.7, 11.2, 33, 300 }, + [20] = { 23.4, 10.9, 33, 300 }, + [21] = { 23.7, 10.9, 33, 300 }, + [22] = { 23.2, 10.8, 33, 300 }, + [23] = { 22.8, 10.8, 33, 300 }, + [24] = { 23.2, 10.7, 33, 300 }, + [25] = { 24.1, 10.7, 33, 300 }, + [26] = { 24.6, 10.7, 33, 300 }, + [27] = { 24.4, 10.6, 33, 300 }, + [28] = { 24.7, 10.5, 33, 300 }, + [29] = { 24.2, 10.4, 33, 300 }, + [30] = { 24.7, 10.3, 33, 300 }, + [31] = { 21.5, 10.3, 33, 300 }, + [32] = { 21.3, 10.2, 33, 300 }, + [33] = { 22.9, 10.1, 33, 300 }, + [34] = { 24, 10, 33, 300 }, + [35] = { 23.7, 9.9, 33, 300 }, + [36] = { 24.5, 9.9, 33, 300 }, + [37] = { 24.2, 9.8, 33, 300 }, + [38] = { 23.9, 9.8, 33, 300 }, + [39] = { 23.6, 9.7, 33, 300 }, + [40] = { 22.7, 9.7, 33, 300 }, + [41] = { 23.4, 9.5, 33, 300 }, + [42] = { 24.1, 9.4, 33, 300 }, + [43] = { 24.3, 9.4, 33, 300 }, + [44] = { 23.8, 9.4, 33, 300 }, + [45] = { 24.7, 9.4, 33, 300 }, + [46] = { 22.7, 9.2, 33, 300 }, + [47] = { 23.4, 9.2, 33, 300 }, + [48] = { 24.4, 9.1, 33, 300 }, + [49] = { 23.7, 8.9, 33, 300 }, + [50] = { 24.2, 8.8, 33, 300 }, + [51] = { 23, 8.8, 33, 300 }, + [52] = { 23.5, 8.8, 33, 300 }, + [53] = { 22.7, 8.6, 33, 300 }, + [54] = { 23.5, 8.4, 33, 300 }, + [55] = { 23.4, 8.4, 33, 300 }, + [56] = { 23.6, 8.2, 33, 300 }, + [57] = { 23.3, 8.2, 33, 300 }, + }, + ["lvl"] = "36-37", + }, + [672] = { + ["coords"] = { + [1] = { 44.3, 44.9, 33, 300 }, + [2] = { 47.5, 43.7, 33, 300 }, + [3] = { 48.1, 43.2, 33, 300 }, + [4] = { 47.7, 43.2, 33, 300 }, + [5] = { 47.8, 43, 33, 300 }, + [6] = { 48, 42.6, 33, 300 }, + [7] = { 47.7, 42.2, 33, 300 }, + }, + ["lvl"] = "44", + }, + [674] = { + ["coords"] = { + [1] = { 42, 46.3, 33, 300 }, + [2] = { 42.2, 46.2, 33, 300 }, + [3] = { 42.1, 46.1, 33, 300 }, + [4] = { 41.8, 45.2, 33, 300 }, + [5] = { 42.3, 45.1, 33, 300 }, + [6] = { 42.2, 44.8, 33, 300 }, + [7] = { 41.6, 44.6, 33, 300 }, + [8] = { 41.8, 44.5, 33, 300 }, + [9] = { 42.3, 44.3, 33, 300 }, + [10] = { 41.7, 43.9, 33, 300 }, + [11] = { 41.4, 43.8, 33, 300 }, + [12] = { 40.4, 43.8, 33, 300 }, + [13] = { 41.3, 43.6, 33, 300 }, + [14] = { 41.6, 43.5, 33, 300 }, + [15] = { 40.4, 43.3, 33, 300 }, + [16] = { 40.8, 43.1, 33, 300 }, + [17] = { 41.9, 43.1, 33, 300 }, + [18] = { 41.2, 43, 33, 300 }, + [19] = { 41.6, 42.9, 33, 300 }, + [20] = { 42, 42.6, 33, 300 }, + [21] = { 41.3, 42.4, 33, 300 }, + [22] = { 41.6, 42.3, 33, 300 }, + [23] = { 41.2, 41.9, 33, 300 }, + [24] = { 42.1, 41.8, 33, 300 }, + [25] = { 41.6, 41.4, 33, 300 }, + [26] = { 42.4, 41.4, 33, 300 }, + }, + ["lvl"] = "40-41", + }, + [675] = { + ["coords"] = { + [1] = { 42.1, 46.2, 33, 300 }, + [2] = { 42, 44.7, 33, 300 }, + [3] = { 42.1, 44.5, 33, 300 }, + [4] = { 41.2, 43.9, 33, 300 }, + [5] = { 41, 43.6, 33, 300 }, + [6] = { 41.9, 42.6, 33, 300 }, + [7] = { 41.8, 41.6, 33, 300 }, + [8] = { 42.2, 44.8, 33, 300 }, + }, + ["lvl"] = "42", + }, + [676] = { + ["coords"] = { + [1] = { 42.1, 46.2, 33, 300 }, + [2] = { 42, 44.7, 33, 300 }, + [3] = { 42.1, 44.5, 33, 300 }, + [4] = { 41.2, 43.9, 33, 300 }, + [5] = { 41, 43.6, 33, 300 }, + [6] = { 41.9, 42.6, 33, 300 }, + [7] = { 41.8, 41.6, 33, 300 }, + [8] = { 42.2, 44.8, 33, 300 }, + }, + ["lvl"] = "41-42", + }, + [677] = { + ["coords"] = { + [1] = { 42.1, 46.2, 33, 300 }, + [2] = { 42, 44.7, 33, 300 }, + [3] = { 42.1, 44.5, 33, 300 }, + [4] = { 41.2, 43.9, 33, 300 }, + [5] = { 41, 43.6, 33, 300 }, + [6] = { 41.9, 42.6, 33, 300 }, + [7] = { 41.8, 41.6, 33, 300 }, + [8] = { 42.2, 44.8, 33, 300 }, + }, + ["lvl"] = "40-41", + }, + [678] = { + ["coords"] = { + [1] = { 51.5, 28.5, 33, 1800 }, + [2] = { 52.5, 28.2, 33, 1800 }, + [3] = { 50.6, 27.8, 33, 1800 }, + [4] = { 50.8, 27.7, 33, 1800 }, + [5] = { 50.2, 27.7, 33, 1800 }, + [6] = { 51.5, 27.1, 33, 1800 }, + [7] = { 51.6, 26.6, 33, 1800 }, + }, + ["lvl"] = "43-44", + ["rnk"] = "1", + }, + [679] = { + ["coords"] = { + [1] = { 50.3, 30.6, 33, 1800 }, + [2] = { 50.4, 30.6, 33, 1800 }, + [3] = { 50.3, 30.5, 33, 1800 }, + [4] = { 50.4, 30.4, 33, 1800 }, + [5] = { 51.2, 27.9, 33, 1800 }, + [6] = { 50.2, 27.8, 33, 1800 }, + [7] = { 52.2, 27.6, 33, 1800 }, + [8] = { 50.9, 27.1, 33, 1800 }, + [9] = { 51, 26.6, 33, 1800 }, + }, + ["lvl"] = "43-44", + ["rnk"] = "1", + }, + [680] = { + ["coords"] = { + [1] = { 50.6, 31.3, 33, 1800 }, + [2] = { 52.9, 27.8, 33, 1800 }, + [3] = { 52.8, 27.7, 33, 1800 }, + [4] = { 52.1, 26.7, 33, 1800 }, + }, + ["lvl"] = "45", + ["rnk"] = "1", + }, + [681] = { + ["coords"] = { + [1] = { 34.7, 17.5, 33, 300 }, + [2] = { 35.1, 16.5, 33, 300 }, + [3] = { 38.7, 15.4, 33, 300 }, + [4] = { 36.1, 15.3, 33, 300 }, + [5] = { 39.2, 14.4, 33, 300 }, + [6] = { 37.4, 14.3, 33, 300 }, + [7] = { 34.5, 14, 33, 300 }, + [8] = { 38.8, 13.6, 33, 300 }, + [9] = { 36, 12.9, 33, 300 }, + [10] = { 34, 12.9, 33, 300 }, + [11] = { 35.6, 12.3, 33, 300 }, + [12] = { 35.1, 12.1, 33, 300 }, + [13] = { 37.3, 11.6, 33, 300 }, + [14] = { 34, 11.3, 33, 300 }, + [15] = { 33.6, 11.1, 33, 300 }, + [16] = { 40.2, 10, 33, 300 }, + [17] = { 31.5, 9.9, 33, 300 }, + [18] = { 33.4, 9.9, 33, 300 }, + [19] = { 33, 9.7, 33, 300 }, + [20] = { 32.4, 9.6, 33, 300 }, + [21] = { 31.4, 8.5, 33, 300 }, + [22] = { 40.3, 8.2, 33, 300 }, + [23] = { 39.3, 8.1, 33, 300 }, + [24] = { 30.6, 7.6, 33, 300 }, + [25] = { 39, 6.7, 33, 300 }, + }, + ["lvl"] = "30-31", + }, + [682] = { + ["coords"] = { + [1] = { 47.2, 18.5, 33, 300 }, + [2] = { 46.6, 17.5, 33, 300 }, + [3] = { 46, 16.9, 33, 300 }, + [4] = { 47.1, 16.8, 33, 300 }, + [5] = { 46.6, 16.1, 33, 300 }, + [6] = { 30.7, 16, 33, 300 }, + [7] = { 46.1, 15.3, 33, 300 }, + [8] = { 30.4, 15.2, 33, 300 }, + [9] = { 47.1, 15.2, 33, 300 }, + [10] = { 42.9, 15.2, 33, 300 }, + [11] = { 45.5, 14.5, 33, 300 }, + [12] = { 30.9, 14.5, 33, 300 }, + [13] = { 46.6, 14.4, 33, 300 }, + [14] = { 44, 13.7, 33, 300 }, + [15] = { 48.1, 13.7, 33, 300 }, + [16] = { 30.2, 13.6, 33, 300 }, + [17] = { 46.5, 12.9, 33, 300 }, + [18] = { 47.6, 12.9, 33, 300 }, + [19] = { 48.2, 12.2, 33, 300 }, + [20] = { 47.4, 11.4, 33, 300 }, + [21] = { 29.7, 11.3, 33, 300 }, + [22] = { 29.4, 10.5, 33, 300 }, + [23] = { 28.3, 10.4, 33, 300 }, + [24] = { 29.9, 9.8, 33, 300 }, + [25] = { 29, 9.5, 33, 300 }, + [26] = { 30.4, 9, 33, 300 }, + }, + ["lvl"] = "32-33", + }, + [683] = { + ["coords"] = { + [1] = { 35.1, 15.1, 33, 300 }, + [2] = { 35, 14.2, 33, 300 }, + [3] = { 36.5, 13.8, 33, 300 }, + [4] = { 42.9, 13.6, 33, 300 }, + [5] = { 38.3, 13.4, 33, 300 }, + [6] = { 41.3, 13.4, 33, 300 }, + [7] = { 42.4, 13.2, 33, 300 }, + [8] = { 42.3, 13.2, 33, 300 }, + [9] = { 41.8, 13, 33, 300 }, + [10] = { 41.3, 12.9, 33, 300 }, + [11] = { 37.7, 12.8, 33, 300 }, + [12] = { 41.8, 12.7, 33, 300 }, + [13] = { 43.1, 12.3, 33, 300 }, + [14] = { 40.5, 11.4, 33, 300 }, + [15] = { 40.6, 11.2, 33, 300 }, + [16] = { 42.9, 10.5, 33, 300 }, + [17] = { 41.4, 10.5, 33, 300 }, + [18] = { 42.1, 10.1, 33, 300 }, + [19] = { 42.4, 9.7, 33, 300 }, + [20] = { 37.3, 8.2, 33, 300 }, + [21] = { 41.3, 8.1, 33, 300 }, + [22] = { 36.1, 7.2, 33, 300 }, + [23] = { 40.3, 8.2, 33, 300 }, + [24] = { 39.3, 8.1, 33, 300 }, + [25] = { 39, 6.7, 33, 300 }, + }, + ["lvl"] = "30-31", + }, + [684] = { + ["coords"] = { + [1] = { 39.3, 45.5, 33, 300 }, + [2] = { 37.3, 45.2, 33, 300 }, + [3] = { 39.6, 44.2, 33, 300 }, + [4] = { 39.6, 42.6, 33, 300 }, + [5] = { 39.5, 41.7, 33, 300 }, + [6] = { 39.2, 41.1, 33, 300 }, + [7] = { 40.3, 41, 33, 300 }, + [8] = { 41.2, 40.9, 33, 300 }, + [9] = { 39.8, 40.7, 33, 300 }, + [10] = { 40.7, 40.2, 33, 300 }, + [11] = { 39.1, 39.9, 33, 300 }, + [12] = { 41.3, 39.8, 33, 300 }, + [13] = { 40.3, 39.6, 33, 300 }, + [14] = { 38.1, 39.3, 33, 300 }, + [15] = { 36.5, 39.1, 33, 300 }, + [16] = { 42, 38.9, 33, 300 }, + [17] = { 37.2, 38.9, 33, 300 }, + [18] = { 38.7, 38.6, 33, 300 }, + [19] = { 41.4, 38.2, 33, 300 }, + [20] = { 42.2, 38.1, 33, 300 }, + [21] = { 35.5, 38, 33, 300 }, + [22] = { 39.2, 37.9, 33, 300 }, + [23] = { 36.6, 37.8, 33, 300 }, + [24] = { 40.5, 37.7, 33, 300 }, + [25] = { 39.9, 37.6, 33, 300 }, + [26] = { 38.7, 37.2, 33, 300 }, + [27] = { 36.2, 37.2, 33, 300 }, + [28] = { 38.2, 37.1, 33, 300 }, + [29] = { 35.2, 37, 33, 300 }, + [30] = { 37.6, 36.4, 33, 300 }, + [31] = { 41.2, 36.3, 33, 300 }, + [32] = { 35.6, 36.2, 33, 300 }, + [33] = { 36.5, 36.1, 33, 300 }, + [34] = { 38.6, 35.7, 33, 300 }, + [35] = { 36.1, 35.6, 33, 300 }, + [36] = { 37.2, 35.6, 33, 300 }, + [37] = { 39.6, 35.5, 33, 300 }, + [38] = { 39.2, 34.8, 33, 300 }, + [39] = { 36.6, 34.8, 33, 300 }, + [40] = { 41.3, 34.8, 33, 300 }, + [41] = { 38.3, 34.7, 33, 300 }, + [42] = { 36, 33.9, 33, 300 }, + [43] = { 39.4, 33.3, 33, 300 }, + [44] = { 37.7, 33.2, 33, 300 }, + [45] = { 38.7, 32.9, 33, 300 }, + [46] = { 40.3, 31.7, 33, 300 }, + [47] = { 47, 29.6, 33, 300 }, + [48] = { 46.5, 28.4, 33, 300 }, + [49] = { 48, 27.8, 33, 300 }, + [50] = { 47, 27.7, 33, 300 }, + [51] = { 45.9, 27.7, 33, 300 }, + [52] = { 47.6, 27.4, 33, 300 }, + [53] = { 46.4, 26.9, 33, 300 }, + [54] = { 46.5, 26.9, 33, 300 }, + [55] = { 45.5, 26.8, 33, 300 }, + [56] = { 46.1, 26.2, 33, 300 }, + [57] = { 49.7, 25.5, 33, 300 }, + [58] = { 45.5, 25.3, 33, 300 }, + [59] = { 50.2, 24.7, 33, 300 }, + [60] = { 49.2, 24.6, 33, 300 }, + [61] = { 49.7, 24.1, 33, 300 }, + [62] = { 48.9, 23.9, 33, 300 }, + [63] = { 49.2, 23.1, 33, 300 }, + [64] = { 47.2, 23.1, 33, 300 }, + [65] = { 48.1, 23.1, 33, 300 }, + [66] = { 50.2, 23, 33, 300 }, + [67] = { 46.4, 22.5, 33, 300 }, + [68] = { 47.7, 22.3, 33, 300 }, + [69] = { 48.7, 22.2, 33, 300 }, + [70] = { 50.3, 21.8, 33, 300 }, + [71] = { 49.2, 21.6, 33, 300 }, + [72] = { 48.1, 21.5, 33, 300 }, + [73] = { 49.7, 20.7, 33, 300 }, + [74] = { 48.6, 20.7, 33, 300 }, + [75] = { 50.7, 20.6, 33, 300 }, + [76] = { 49.3, 20.4, 33, 300 }, + [77] = { 48.1, 20.2, 33, 300 }, + }, + ["lvl"] = "37-38", + }, + [685] = { + ["coords"] = { + [1] = { 27.5, 17.7, 33, 300 }, + [2] = { 26.7, 17.6, 33, 300 }, + [3] = { 26, 17.1, 33, 300 }, + [4] = { 27.2, 16.8, 33, 300 }, + [5] = { 24.5, 16.2, 33, 300 }, + [6] = { 24.2, 16.2, 33, 300 }, + [7] = { 24.8, 16.1, 33, 300 }, + [8] = { 26.7, 16, 33, 300 }, + [9] = { 25.7, 15.8, 33, 300 }, + [10] = { 24.5, 15.7, 33, 300 }, + [11] = { 24.1, 15.7, 33, 300 }, + [12] = { 27.4, 15.5, 33, 300 }, + [13] = { 23.7, 15.4, 33, 300 }, + [14] = { 27.8, 14.4, 33, 300 }, + }, + ["lvl"] = "33-34", + }, + [686] = { + ["coords"] = { + [1] = { 37.6, 27.8, 33, 300 }, + [2] = { 35.9, 27.1, 33, 300 }, + [3] = { 38.1, 27, 33, 300 }, + [4] = { 35.6, 26.3, 33, 300 }, + [5] = { 38.8, 26.2, 33, 300 }, + [6] = { 34, 25.5, 33, 300 }, + [7] = { 38.4, 25.2, 33, 300 }, + [8] = { 30.3, 24.7, 33, 300 }, + [9] = { 38.9, 24.6, 33, 300 }, + [10] = { 32.4, 24.6, 33, 300 }, + [11] = { 33.4, 24.6, 33, 300 }, + [12] = { 30.6, 24, 33, 300 }, + [13] = { 33, 23.9, 33, 300 }, + [14] = { 32.1, 23.8, 33, 300 }, + [15] = { 30.7, 23.7, 33, 300 }, + [16] = { 30.6, 23.5, 33, 300 }, + [17] = { 30.8, 23.2, 33, 300 }, + [18] = { 32.4, 23.1, 33, 300 }, + [19] = { 30.6, 22.5, 33, 300 }, + [20] = { 39.1, 22.1, 33, 300 }, + [21] = { 38.9, 21.6, 33, 300 }, + [22] = { 37.7, 21.5, 33, 300 }, + [23] = { 32.5, 21.5, 33, 300 }, + [24] = { 32, 20.7, 33, 300 }, + [25] = { 38.2, 20.7, 33, 300 }, + [26] = { 38.5, 19.8, 33, 300 }, + [27] = { 37.8, 19.7, 33, 300 }, + [28] = { 38.3, 19.2, 33, 300 }, + [29] = { 39.3, 19.1, 33, 300 }, + }, + ["lvl"] = "35-36", + }, + [687] = { + ["coords"] = { + [1] = { 23.2, 51.5, 33, 300 }, + [2] = { 26.1, 51.4, 33, 300 }, + [3] = { 24.9, 51.2, 33, 300 }, + [4] = { 26.6, 50.5, 33, 300 }, + [5] = { 23.4, 50.3, 33, 300 }, + [6] = { 27.6, 50.3, 33, 300 }, + [7] = { 26, 49.9, 33, 300 }, + [8] = { 27.2, 49.8, 33, 300 }, + [9] = { 23, 49.7, 33, 300 }, + [10] = { 24.1, 49.6, 33, 300 }, + [11] = { 23.7, 48.9, 33, 300 }, + [12] = { 27.7, 48.9, 33, 300 }, + [13] = { 26.9, 48.7, 33, 300 }, + [14] = { 23.4, 48.2, 33, 300 }, + [15] = { 27.4, 48.1, 33, 300 }, + [16] = { 28, 47.2, 33, 300 }, + [17] = { 28.3, 46.5, 33, 300 }, + [18] = { 28.8, 45.6, 33, 300 }, + [19] = { 28.2, 45, 33, 300 }, + [20] = { 31.2, 44.6, 33, 300 }, + [21] = { 28.8, 44.2, 33, 300 }, + [22] = { 30.6, 44.1, 33, 300 }, + [23] = { 30, 44.1, 33, 300 }, + [24] = { 30.1, 43.6, 33, 300 }, + [25] = { 29.3, 43.6, 33, 300 }, + [26] = { 28.3, 43.4, 33, 300 }, + [27] = { 27.3, 43.4, 33, 300 }, + [28] = { 31.5, 43.3, 33, 300 }, + [29] = { 32.1, 43.1, 33, 300 }, + [30] = { 30.9, 42.6, 33, 300 }, + [31] = { 28.9, 42.6, 33, 300 }, + [32] = { 32, 42.4, 33, 300 }, + [33] = { 30.4, 41.9, 33, 300 }, + [34] = { 32.5, 41.8, 33, 300 }, + [35] = { 31.4, 41.8, 33, 300 }, + [36] = { 31.9, 40.8, 33, 300 }, + [37] = { 31.5, 40.7, 33, 300 }, + [38] = { 34.6, 40.1, 33, 300 }, + [39] = { 32.7, 39.2, 33, 300 }, + [40] = { 34.6, 38.9, 33, 300 }, + [41] = { 33.5, 37.2, 33, 300 }, + [42] = { 32.5, 37.1, 33, 300 }, + [43] = { 32.9, 36.4, 33, 300 }, + }, + ["lvl"] = "40-41", + }, + [688] = { + ["coords"] = { + [1] = { 21.5, 86.4, 10, 300 }, + [2] = { 36.6, 8.3, 33, 300 }, + [3] = { 34.7, 6.8, 33, 300 }, + [4] = { 35.7, 6.8, 33, 300 }, + [5] = { 33.7, 6.4, 33, 300 }, + [6] = { 30.8, 2.4, 33, 300 }, + [7] = { 78.9, 80.3, 40, 300 }, + }, + ["lvl"] = "31-32", + }, + [689] = { + ["coords"] = { + [1] = { 27.1, 18.5, 33, 300 }, + [2] = { 24.6, 18.2, 33, 300 }, + [3] = { 26.2, 18.2, 33, 300 }, + [4] = { 23.1, 17.7, 33, 300 }, + [5] = { 24.1, 17.6, 33, 300 }, + [6] = { 25.1, 17.5, 33, 300 }, + [7] = { 23.7, 17, 33, 300 }, + [8] = { 24.5, 16.8, 33, 300 }, + [9] = { 24.6, 16.8, 33, 300 }, + [10] = { 48.7, 10.4, 33, 300 }, + [11] = { 49.2, 9.6, 33, 300 }, + [12] = { 48.7, 9, 33, 300 }, + [13] = { 48.1, 8.2, 33, 300 }, + [14] = { 48, 6.5, 33, 300 }, + [15] = { 47.4, 5.9, 33, 300 }, + [16] = { 46.6, 5.8, 33, 300 }, + }, + ["lvl"] = "34-35", + }, + [690] = { + ["coords"] = { + [1] = { 36.2, 43.6, 33, 300 }, + [2] = { 27.7, 42.7, 33, 300 }, + [3] = { 36.6, 42.6, 33, 300 }, + [4] = { 35.7, 42.6, 33, 300 }, + [5] = { 36.1, 41.8, 33, 300 }, + [6] = { 37.1, 41.8, 33, 300 }, + [7] = { 28.2, 41.8, 33, 300 }, + [8] = { 36.5, 41.2, 33, 300 }, + [9] = { 27.7, 41.1, 33, 300 }, + [10] = { 28.7, 40.9, 33, 300 }, + [11] = { 38.2, 40.3, 33, 300 }, + [12] = { 37.2, 40.2, 33, 300 }, + [13] = { 28.3, 39.6, 33, 300 }, + [14] = { 35.5, 39.4, 33, 300 }, + [15] = { 28.8, 38.8, 33, 300 }, + [16] = { 29.3, 38.1, 33, 300 }, + [17] = { 29.9, 37.5, 33, 300 }, + [18] = { 31.4, 37.3, 33, 300 }, + [19] = { 30.9, 37.1, 33, 300 }, + }, + ["lvl"] = "39-40", + }, + [691] = { + ["coords"] = { + [1] = { 21.5, 24.6, 33, 300 }, + [2] = { 21, 24.6, 33, 300 }, + [3] = { 20.4, 24.6, 33, 300 }, + [4] = { 19.9, 24.6, 33, 300 }, + [5] = { 21.8, 24.3, 33, 300 }, + [6] = { 20.4, 23.9, 33, 300 }, + [7] = { 21.5, 23.9, 33, 300 }, + [8] = { 21, 23.9, 33, 300 }, + [9] = { 19.9, 23.8, 33, 300 }, + [10] = { 22, 23.8, 33, 300 }, + [11] = { 21, 23.2, 33, 300 }, + [12] = { 21.5, 23.1, 33, 300 }, + [13] = { 22.5, 23.1, 33, 300 }, + [14] = { 21, 23.1, 33, 300 }, + [15] = { 20.4, 23.1, 33, 300 }, + [16] = { 22, 23, 33, 300 }, + [17] = { 20.1, 22.7, 33, 300 }, + [18] = { 21, 22.3, 33, 300 }, + [19] = { 22, 22.3, 33, 300 }, + [20] = { 21.5, 22.3, 33, 300 }, + [21] = { 20.4, 22.3, 33, 300 }, + [22] = { 19.4, 22.3, 33, 300 }, + [23] = { 19.9, 21.6, 33, 300 }, + [24] = { 20.4, 21.6, 33, 300 }, + }, + ["lvl"] = "36-37", + }, + [693] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "62", + }, + [694] = { + ["coords"] = { + [1] = { 29.8, 21.5, 33, 300 }, + [2] = { 30.4, 20.8, 33, 300 }, + [3] = { 29.3, 20, 33, 300 }, + [4] = { 28.8, 19.9, 33, 300 }, + [5] = { 29.9, 19.7, 33, 300 }, + [6] = { 29.5, 19.6, 33, 300 }, + [7] = { 29.7, 19.6, 33, 300 }, + [8] = { 29.8, 19.5, 33, 300 }, + [9] = { 29.5, 19.4, 33, 300 }, + [10] = { 30.7, 19.4, 33, 300 }, + [11] = { 29.6, 19.3, 33, 300 }, + [12] = { 29.7, 19.1, 33, 300 }, + [13] = { 29, 19.1, 33, 300 }, + [14] = { 29.8, 19.1, 33, 300 }, + [15] = { 30.5, 18.1, 33, 300 }, + [16] = { 33.5, 17, 33, 300 }, + [17] = { 34, 16.8, 33, 300 }, + [18] = { 30.4, 16.8, 33, 300 }, + [19] = { 34.6, 16, 33, 300 }, + [20] = { 33.9, 15.9, 33, 300 }, + [21] = { 33.7, 15.7, 33, 300 }, + [22] = { 33.5, 15.6, 33, 300 }, + [23] = { 33.9, 15.4, 33, 300 }, + [24] = { 34.3, 14.6, 33, 300 }, + [25] = { 33.4, 13.8, 33, 300 }, + }, + ["lvl"] = "33-34", + }, + [696] = { + ["coords"] = { + [1] = { 47.1, 41.8, 33, 300 }, + [2] = { 48.4, 41.7, 33, 300 }, + [3] = { 48.5, 41.6, 33, 300 }, + [4] = { 47.6, 41.1, 33, 300 }, + [5] = { 48.5, 40.9, 33, 300 }, + [6] = { 46.6, 40.4, 33, 300 }, + [7] = { 46, 40.3, 33, 300 }, + [8] = { 45, 40.3, 33, 300 }, + [9] = { 48.6, 40.2, 33, 300 }, + [10] = { 43.8, 40.2, 33, 300 }, + [11] = { 44.1, 40.1, 33, 300 }, + [12] = { 47.3, 39.9, 33, 300 }, + [13] = { 47, 39.8, 33, 300 }, + [14] = { 47.5, 39.8, 33, 300 }, + [15] = { 44.3, 39.7, 33, 300 }, + [16] = { 48.1, 39.5, 33, 300 }, + [17] = { 43.4, 39.5, 33, 300 }, + [18] = { 47.1, 39.5, 33, 300 }, + [19] = { 44.2, 39.5, 33, 300 }, + [20] = { 43.8, 39.4, 33, 300 }, + [21] = { 46.5, 39.1, 33, 300 }, + [22] = { 46.6, 38.9, 33, 300 }, + [23] = { 46.5, 38.8, 33, 300 }, + [24] = { 47.6, 38.8, 33, 300 }, + [25] = { 47.2, 38.6, 33, 300 }, + [26] = { 46, 37.9, 33, 300 }, + [27] = { 45, 37.9, 33, 300 }, + [28] = { 48.8, 37.5, 33, 300 }, + [29] = { 44, 37.2, 33, 300 }, + [30] = { 43.4, 36.4, 33, 300 }, + [31] = { 42.1, 36.3, 33, 300 }, + [32] = { 41.9, 36.3, 33, 300 }, + [33] = { 42.3, 36.1, 33, 300 }, + [34] = { 41.9, 36, 33, 300 }, + [35] = { 42.2, 35.8, 33, 300 }, + [36] = { 44, 35.4, 33, 300 }, + [37] = { 42.4, 35.3, 33, 300 }, + [38] = { 42.8, 35.1, 33, 300 }, + [39] = { 42.4, 35, 33, 300 }, + [40] = { 43.4, 34.8, 33, 300 }, + [41] = { 43.9, 34.4, 33, 300 }, + [42] = { 47.1, 34.1, 33, 300 }, + [43] = { 45, 34, 33, 300 }, + [44] = { 42.5, 33.3, 33, 300 }, + [45] = { 47.6, 33.3, 33, 300 }, + [46] = { 43.5, 33, 33, 300 }, + [47] = { 47.1, 32.5, 33, 300 }, + [48] = { 46.2, 32.5, 33, 300 }, + [49] = { 46, 32.3, 33, 300 }, + [50] = { 45.2, 32.3, 33, 300 }, + [51] = { 46, 32, 33, 300 }, + [52] = { 46.2, 32, 33, 300 }, + [53] = { 46.4, 32, 33, 300 }, + [54] = { 45.5, 31.7, 33, 300 }, + [55] = { 46.5, 31.4, 33, 300 }, + [56] = { 46.6, 30.1, 33, 300 }, + }, + ["lvl"] = "39-40", + }, + [697] = { + ["coords"] = { + [1] = { 29.8, 21.5, 33, 300 }, + [2] = { 30.4, 20.8, 33, 300 }, + [3] = { 29.3, 20, 33, 300 }, + [4] = { 28.8, 19.9, 33, 300 }, + [5] = { 29.9, 19.7, 33, 300 }, + [6] = { 29.5, 19.6, 33, 300 }, + [7] = { 29.7, 19.6, 33, 300 }, + [8] = { 29.8, 19.5, 33, 300 }, + [9] = { 29.5, 19.4, 33, 300 }, + [10] = { 30.7, 19.4, 33, 300 }, + [11] = { 29.6, 19.3, 33, 300 }, + [12] = { 29.7, 19.1, 33, 300 }, + [13] = { 29, 19.1, 33, 300 }, + [14] = { 29.8, 19.1, 33, 300 }, + [15] = { 30.5, 18.1, 33, 300 }, + [16] = { 33.5, 17, 33, 300 }, + [17] = { 34, 16.8, 33, 300 }, + [18] = { 30.4, 16.8, 33, 300 }, + [19] = { 34.6, 16, 33, 300 }, + [20] = { 33.9, 15.9, 33, 300 }, + [21] = { 33.7, 15.7, 33, 300 }, + [22] = { 33.5, 15.6, 33, 300 }, + [23] = { 33.9, 15.4, 33, 300 }, + [24] = { 34.3, 14.6, 33, 300 }, + [25] = { 33.4, 13.8, 33, 300 }, + }, + ["lvl"] = "33-34", + }, + [698] = { + ["coords"] = {}, + ["lvl"] = "34-35", + }, + [699] = { + ["coords"] = { + [1] = { 26.3, 13.4, 33, 300 }, + [2] = { 22.9, 11.3, 33, 300 }, + [3] = { 27.5, 11.3, 33, 300 }, + [4] = { 25.1, 10.6, 33, 300 }, + [5] = { 25.3, 9.1, 33, 300 }, + [6] = { 22.6, 8.4, 33, 300 }, + }, + ["lvl"] = "34-35", + }, + [700] = { + ["coords"] = {}, + ["lvl"] = "25-26", + }, + [701] = { + ["coords"] = { + [1] = { 25.5, 13.4, 33, 300 }, + [2] = { 26.1, 13.4, 33, 300 }, + [3] = { 25.1, 13.4, 33, 300 }, + [4] = { 22.5, 13.4, 33, 300 }, + [5] = { 24.1, 13.3, 33, 300 }, + [6] = { 26.4, 13.2, 33, 300 }, + [7] = { 24.2, 13.2, 33, 300 }, + [8] = { 23.9, 13.2, 33, 300 }, + [9] = { 25.6, 13.2, 33, 300 }, + [10] = { 23.8, 13.2, 33, 300 }, + [11] = { 23.1, 13.1, 33, 300 }, + [12] = { 22.3, 13.1, 33, 300 }, + [13] = { 25.3, 12.9, 33, 300 }, + [14] = { 22.4, 12.8, 33, 300 }, + [15] = { 26.1, 12.7, 33, 300 }, + [16] = { 24.7, 12.7, 33, 300 }, + [17] = { 25.9, 12.7, 33, 300 }, + [18] = { 23.4, 12.6, 33, 300 }, + [19] = { 24.5, 12.6, 33, 300 }, + [20] = { 23, 12.6, 33, 300 }, + [21] = { 24.8, 12.6, 33, 300 }, + [22] = { 26.3, 12.4, 33, 300 }, + [23] = { 26.1, 12.4, 33, 300 }, + [24] = { 23.4, 12.4, 33, 300 }, + [25] = { 24.5, 12.3, 33, 300 }, + [26] = { 24.8, 12.3, 33, 300 }, + [27] = { 24.7, 12.3, 33, 300 }, + [28] = { 23.1, 12.3, 33, 300 }, + [29] = { 25.4, 12.2, 33, 300 }, + [30] = { 22.9, 12.2, 33, 300 }, + [31] = { 25.9, 12.2, 33, 300 }, + [32] = { 23.9, 12.2, 33, 300 }, + [33] = { 24.8, 12.2, 33, 300 }, + [34] = { 26.1, 12.2, 33, 300 }, + [35] = { 26.3, 12.2, 33, 300 }, + [36] = { 25.7, 12.1, 33, 300 }, + [37] = { 23, 12.1, 33, 300 }, + [38] = { 23.3, 12, 33, 300 }, + [39] = { 23.1, 12, 33, 300 }, + [40] = { 22.7, 12, 33, 300 }, + [41] = { 27.6, 11.7, 33, 300 }, + [42] = { 26, 11.5, 33, 300 }, + [43] = { 24.7, 11.5, 33, 300 }, + [44] = { 26.5, 11.4, 33, 300 }, + [45] = { 26.3, 11.3, 33, 300 }, + [46] = { 25.1, 11.3, 33, 300 }, + [47] = { 27.2, 11.3, 33, 300 }, + [48] = { 25.2, 11.3, 33, 300 }, + [49] = { 24.4, 11.2, 33, 300 }, + [50] = { 25.9, 11, 33, 300 }, + [51] = { 22.9, 11, 33, 300 }, + [52] = { 27.6, 11, 33, 300 }, + [53] = { 24.8, 11, 33, 300 }, + [54] = { 25.6, 10.6, 33, 300 }, + [55] = { 25.3, 10.5, 33, 300 }, + [56] = { 26.1, 10.1, 33, 300 }, + [57] = { 25.7, 10, 33, 300 }, + [58] = { 25.4, 10, 33, 300 }, + [59] = { 25.1, 9.9, 33, 300 }, + [60] = { 26, 9.8, 33, 300 }, + [61] = { 25.1, 9.7, 33, 300 }, + [62] = { 25.4, 9.6, 33, 300 }, + [63] = { 25, 9.4, 33, 300 }, + [64] = { 26, 9.4, 33, 300 }, + [65] = { 25.6, 9.3, 33, 300 }, + [66] = { 26.1, 9.3, 33, 300 }, + [67] = { 25.7, 9.3, 33, 300 }, + [68] = { 25.1, 9.3, 33, 300 }, + [69] = { 25.4, 9.2, 33, 300 }, + [70] = { 26, 9.2, 33, 300 }, + [71] = { 25.7, 9.1, 33, 300 }, + [72] = { 25.9, 9, 33, 300 }, + [73] = { 25.5, 9, 33, 300 }, + [74] = { 26.1, 8.9, 33, 300 }, + [75] = { 25.9, 8.4, 33, 300 }, + [76] = { 26.2, 8.3, 33, 300 }, + }, + ["lvl"] = "34-35", + }, + [702] = { + ["coords"] = { + [1] = { 31.5, 14.4, 33, 300 }, + [2] = { 33, 13.7, 33, 300 }, + [3] = { 31.9, 13.6, 33, 300 }, + [4] = { 32.6, 12.9, 33, 300 }, + [5] = { 31.3, 12.9, 33, 300 }, + [6] = { 31.2, 12.4, 33, 300 }, + [7] = { 31.6, 12.1, 33, 300 }, + [8] = { 31.4, 11.4, 33, 300 }, + }, + ["lvl"] = "33-34", + }, + [703] = { + ["coords"] = { + [1] = { 80.2, 37.1, 44, 300 }, + }, + ["lvl"] = "26", + }, + [704] = { + ["coords"] = { + [1] = { 24, 79.7, 1, 270 }, + [2] = { 25.5, 79.5, 1, 270 }, + [3] = { 23.3, 78.7, 1, 270 }, + [4] = { 28.1, 78.3, 1, 270 }, + [5] = { 24.7, 78.2, 1, 270 }, + [6] = { 26.9, 78, 1, 270 }, + [7] = { 23.3, 77.9, 1, 270 }, + [8] = { 27.7, 77, 1, 270 }, + [9] = { 28.8, 76.9, 1, 270 }, + [10] = { 26.8, 76.3, 1, 270 }, + [11] = { 28, 76.1, 1, 270 }, + [12] = { 26.1, 75.5, 1, 270 }, + [13] = { 27.4, 75.4, 1, 270 }, + [14] = { 26.8, 75.2, 1, 270 }, + [15] = { 29.7, 74.8, 1, 270 }, + [16] = { 29.8, 74.7, 1, 270 }, + }, + ["lvl"] = "2", + }, + [705] = { + ["coords"] = { + [1] = { 22.5, 78.2, 1, 555 }, + [2] = { 29.2, 78, 1, 555 }, + [3] = { 23.8, 78, 1, 555 }, + [4] = { 25.4, 77.9, 1, 555 }, + [5] = { 29.5, 77.1, 1, 555 }, + [6] = { 29.7, 76.1, 1, 555 }, + [7] = { 29.2, 75.9, 1, 555 }, + [8] = { 28.5, 75.8, 1, 555 }, + [9] = { 30.9, 75.8, 1, 555 }, + [10] = { 28.1, 75.4, 1, 555 }, + [11] = { 30.3, 75, 1, 555 }, + [12] = { 28.1, 75, 1, 555 }, + [13] = { 28.5, 74.8, 1, 555 }, + [14] = { 29, 74.8, 1, 555 }, + [15] = { 26.4, 74.7, 1, 555 }, + [16] = { 29.3, 74.7, 1, 555 }, + [17] = { 30.7, 74.7, 1, 555 }, + [18] = { 29, 74.5, 1, 555 }, + [19] = { 29.9, 74.5, 1, 555 }, + [20] = { 28.4, 74.4, 1, 555 }, + [21] = { 29.7, 74.3, 1, 555 }, + [22] = { 27.5, 74.2, 1, 555 }, + [23] = { 29.3, 74.1, 1, 555 }, + [24] = { 28.6, 74.1, 1, 555 }, + [25] = { 30.4, 74.1, 1, 555 }, + [26] = { 31.3, 73.9, 1, 555 }, + [27] = { 28.4, 73.9, 1, 555 }, + [28] = { 31.4, 73.9, 1, 555 }, + [29] = { 28.8, 73.8, 1, 555 }, + [30] = { 30.5, 73.7, 1, 555 }, + [31] = { 30.1, 73.6, 1, 555 }, + [32] = { 28.8, 73.6, 1, 555 }, + [33] = { 29.9, 73.4, 1, 555 }, + [34] = { 29.4, 73.4, 1, 555 }, + [35] = { 28, 73.2, 1, 555 }, + [36] = { 27.8, 73.2, 1, 555 }, + [37] = { 31, 73.1, 1, 555 }, + [38] = { 30.8, 72.9, 1, 555 }, + [39] = { 28.7, 72.7, 1, 555 }, + [40] = { 28.7, 72.4, 1, 555 }, + [41] = { 28.6, 72.1, 1, 555 }, + [42] = { 27.5, 72.1, 1, 555 }, + [43] = { 28.3, 71.8, 1, 555 }, + [44] = { 27.5, 71.3, 1, 555 }, + [45] = { 26.1, 71, 1, 555 }, + [46] = { 32.2, 70.9, 1, 555 }, + [47] = { 26.5, 70.8, 1, 555 }, + [48] = { 31.5, 70.2, 1, 555 }, + [49] = { 26.8, 70.1, 1, 555 }, + [50] = { 26.1, 69.2, 1, 555 }, + [51] = { 31.1, 69, 1, 555 }, + }, + ["lvl"] = "1", + }, + [706] = { + ["coords"] = { + [1] = { 28.7, 83, 1, 270 }, + [2] = { 28.3, 82.1, 1, 270 }, + [3] = { 29.2, 82, 1, 270 }, + [4] = { 30.6, 81.9, 1, 270 }, + [5] = { 30.5, 81.3, 1, 270 }, + [6] = { 28, 81.1, 1, 270 }, + [7] = { 26.9, 81.1, 1, 270 }, + [8] = { 28.7, 81, 1, 270 }, + [9] = { 29, 80.9, 1, 270 }, + [10] = { 27.7, 80.8, 1, 270 }, + [11] = { 22.8, 80.8, 1, 270 }, + [12] = { 28.4, 80.8, 1, 270 }, + [13] = { 28.5, 80.8, 1, 270 }, + [14] = { 30.5, 80.7, 1, 270 }, + [15] = { 29.3, 80.7, 1, 270 }, + [16] = { 28.8, 80.6, 1, 270 }, + [17] = { 28, 80.6, 1, 270 }, + [18] = { 27, 80.4, 1, 270 }, + [19] = { 29.8, 80.4, 1, 270 }, + [20] = { 29.6, 80.4, 1, 270 }, + [21] = { 23.7, 80.3, 1, 270 }, + [22] = { 28.1, 80.2, 1, 270 }, + [23] = { 22.7, 80.2, 1, 270 }, + [24] = { 22.8, 80.1, 1, 270 }, + [25] = { 28.8, 80.1, 1, 270 }, + [26] = { 30.6, 80, 1, 270 }, + [27] = { 29.5, 80, 1, 270 }, + [28] = { 22.7, 80, 1, 270 }, + [29] = { 22.9, 80, 1, 270 }, + [30] = { 23.4, 79.9, 1, 270 }, + [31] = { 26.1, 79.9, 1, 270 }, + [32] = { 30.1, 79.8, 1, 270 }, + [33] = { 28.5, 79.8, 1, 270 }, + [34] = { 26.8, 79.7, 1, 270 }, + [35] = { 29.8, 79.7, 1, 270 }, + [36] = { 26.4, 79.4, 1, 270 }, + [37] = { 23, 79.3, 1, 270 }, + [38] = { 25.7, 79.3, 1, 270 }, + [39] = { 22.3, 79.3, 1, 270 }, + [40] = { 30.1, 79.3, 1, 270 }, + [41] = { 29.5, 79.2, 1, 270 }, + [42] = { 28.7, 79.1, 1, 270 }, + [43] = { 29.3, 78.9, 1, 270 }, + [44] = { 26.8, 78.9, 1, 270 }, + [45] = { 22.7, 78.9, 1, 270 }, + [46] = { 27.7, 78.9, 1, 270 }, + [47] = { 22.1, 78.8, 1, 270 }, + [48] = { 26.4, 78.4, 1, 270 }, + [49] = { 27.2, 78.4, 1, 270 }, + [50] = { 25.8, 78.3, 1, 270 }, + [51] = { 22.4, 78.2, 1, 270 }, + [52] = { 21.4, 77.9, 1, 270 }, + [53] = { 20.4, 77.2, 1, 270 }, + [54] = { 21.4, 76.8, 1, 270 }, + [55] = { 20.8, 76.6, 1, 270 }, + [56] = { 21, 76.4, 1, 270 }, + [57] = { 20.8, 76.3, 1, 270 }, + [58] = { 21.4, 75.8, 1, 270 }, + [59] = { 20.7, 75.8, 1, 270 }, + [60] = { 20.1, 75.8, 1, 270 }, + [61] = { 21, 75.3, 1, 270 }, + }, + ["lvl"] = "3-4", + }, + [707] = { + ["coords"] = { + [1] = { 23.3, 78.4, 1, 555 }, + [2] = { 29.9, 78, 1, 555 }, + [3] = { 28.8, 77.7, 1, 555 }, + [4] = { 31.7, 77.6, 1, 555 }, + [5] = { 30.3, 77.5, 1, 555 }, + [6] = { 29.7, 77.5, 1, 555 }, + [7] = { 21.4, 77.3, 1, 555 }, + [8] = { 24.1, 77.3, 1, 555 }, + [9] = { 22.8, 77.3, 1, 555 }, + [10] = { 29, 77.2, 1, 555 }, + [11] = { 30.7, 76.9, 1, 555 }, + [12] = { 30, 76.7, 1, 555 }, + [13] = { 31.3, 76.6, 1, 555 }, + [14] = { 28.8, 76.4, 1, 555 }, + [15] = { 29.6, 76.3, 1, 555 }, + [16] = { 32, 76.3, 1, 555 }, + [17] = { 22.7, 76.3, 1, 555 }, + [18] = { 31.5, 76.2, 1, 555 }, + [19] = { 31.2, 75.9, 1, 555 }, + [20] = { 32.1, 75.8, 1, 555 }, + [21] = { 30.7, 75.7, 1, 555 }, + [22] = { 31.8, 75.7, 1, 555 }, + [23] = { 29.3, 75.6, 1, 555 }, + [24] = { 33.3, 75.4, 1, 555 }, + [25] = { 32.8, 75.3, 1, 555 }, + [26] = { 32.2, 75.2, 1, 555 }, + [27] = { 30.5, 75, 1, 555 }, + [28] = { 29.8, 75, 1, 555 }, + [29] = { 31.1, 74.9, 1, 555 }, + [30] = { 31.1, 74.7, 1, 555 }, + [31] = { 31.8, 74.7, 1, 555 }, + [32] = { 22.9, 74.6, 1, 555 }, + [33] = { 30.6, 74.6, 1, 555 }, + [34] = { 30, 74.5, 1, 555 }, + [35] = { 32.2, 74.5, 1, 555 }, + [36] = { 19.4, 74.4, 1, 555 }, + [37] = { 26.1, 74.4, 1, 555 }, + [38] = { 30.6, 74.4, 1, 555 }, + [39] = { 20.7, 74.3, 1, 555 }, + [40] = { 31.1, 73.9, 1, 555 }, + [41] = { 23.2, 73.6, 1, 555 }, + [42] = { 23.8, 73.5, 1, 555 }, + [43] = { 21.8, 73.4, 1, 555 }, + [44] = { 25.4, 73.3, 1, 555 }, + [45] = { 20.1, 73.3, 1, 555 }, + [46] = { 21.8, 72.4, 1, 555 }, + [47] = { 26.1, 72.2, 1, 555 }, + [48] = { 24.8, 72.1, 1, 555 }, + [49] = { 24.3, 71, 1, 555 }, + }, + ["lvl"] = "1-2", + }, + [708] = { + ["coords"] = { + [1] = { 24.7, 79.3, 1, 270 }, + [2] = { 24, 78.8, 1, 270 }, + [3] = { 23.5, 78.8, 1, 270 }, + [4] = { 21.5, 78, 1, 270 }, + [5] = { 19.7, 76.4, 1, 270 }, + [6] = { 24.1, 76.3, 1, 270 }, + [7] = { 20.7, 75.3, 1, 270 }, + [8] = { 19.5, 75.2, 1, 270 }, + [9] = { 20.1, 74.3, 1, 270 }, + [10] = { 20.4, 74.2, 1, 270 }, + [11] = { 20.7, 74.1, 1, 270 }, + [12] = { 19.9, 73.4, 1, 270 }, + [13] = { 20.8, 73.4, 1, 270 }, + [14] = { 20.1, 73.3, 1, 270 }, + [15] = { 20.7, 73.3, 1, 270 }, + [16] = { 28.1, 73.2, 1, 270 }, + [17] = { 28, 73.1, 1, 270 }, + [18] = { 22.8, 72.5, 1, 270 }, + [19] = { 22, 72.3, 1, 270 }, + [20] = { 19.9, 72.3, 1, 270 }, + [21] = { 24.1, 72.3, 1, 270 }, + [22] = { 22.1, 72.3, 1, 270 }, + [23] = { 22.7, 72.3, 1, 270 }, + [24] = { 21.3, 72.2, 1, 270 }, + [25] = { 32.2, 71.7, 1, 270 }, + [26] = { 27.4, 71.6, 1, 270 }, + [27] = { 22.4, 71.6, 1, 270 }, + [28] = { 21.8, 71.4, 1, 270 }, + [29] = { 20.1, 71.4, 1, 270 }, + [30] = { 21.4, 71.3, 1, 270 }, + [31] = { 26.1, 71.3, 1, 270 }, + [32] = { 22, 71.2, 1, 270 }, + [33] = { 20.1, 71.1, 1, 270 }, + [34] = { 24.7, 70.9, 1, 270 }, + [35] = { 20.7, 70.3, 1, 270 }, + [36] = { 21.4, 70.2, 1, 270 }, + [37] = { 25.5, 70.2, 1, 270 }, + [38] = { 22.6, 70.1, 1, 270 }, + [39] = { 22.7, 70.1, 1, 270 }, + [40] = { 21.9, 70, 1, 270 }, + [41] = { 26.6, 69.7, 1, 270 }, + [42] = { 22.7, 69.6, 1, 270 }, + [43] = { 22.2, 69.5, 1, 270 }, + [44] = { 31.4, 69.3, 1, 270 }, + [45] = { 22.6, 69.3, 1, 270 }, + [46] = { 22, 69.2, 1, 270 }, + [47] = { 23.4, 69.2, 1, 270 }, + [48] = { 26, 69.2, 1, 270 }, + [49] = { 20.7, 69.2, 1, 270 }, + [50] = { 24.7, 69.2, 1, 270 }, + [51] = { 21.3, 69.1, 1, 270 }, + [52] = { 20.7, 69.1, 1, 270 }, + [53] = { 26.6, 68.6, 1, 270 }, + [54] = { 23.5, 68.5, 1, 270 }, + [55] = { 25.4, 68.4, 1, 270 }, + [56] = { 24.4, 68.1, 1, 270 }, + }, + ["lvl"] = "3", + }, + [709] = { + ["coords"] = { + [1] = { 48.8, 31.5, 33, 1800 }, + [2] = { 50.2, 31, 33, 1800 }, + [3] = { 48.1, 30.9, 33, 1800 }, + [4] = { 49.2, 30.9, 33, 1800 }, + [5] = { 49.7, 30.1, 33, 1800 }, + [6] = { 48.8, 30.1, 33, 1800 }, + [7] = { 48, 29.8, 33, 1800 }, + [8] = { 47.9, 29.7, 33, 1800 }, + [9] = { 48.7, 28.6, 33, 1800 }, + [10] = { 49.9, 28.2, 33, 1800 }, + [11] = { 50, 27.8, 33, 1800 }, + [12] = { 50.1, 27.6, 33, 1800 }, + [13] = { 49.2, 27, 33, 1800 }, + [14] = { 46.4, 25.3, 33, 1800 }, + [15] = { 47.1, 24.8, 33, 1800 }, + }, + ["lvl"] = "41-42", + ["rnk"] = "1", + }, + [710] = { + ["coords"] = { + [1] = { 50.3, 31, 33, 1800 }, + [2] = { 51.6, 28.2, 33, 1800 }, + [3] = { 51.4, 27.9, 33, 1800 }, + [4] = { 52, 27.7, 33, 1800 }, + [5] = { 51.8, 27.4, 33, 1800 }, + [6] = { 51.2, 26.8, 33, 1800 }, + [7] = { 51.9, 26.6, 33, 1800 }, + }, + ["lvl"] = "43-44", + ["rnk"] = "1", + }, + [711] = { + ["coords"] = { + [1] = { 17.1, 17.4, 44, 300 }, + }, + ["lvl"] = "24", + }, + [712] = { + ["coords"] = { + [1] = { 29, 81.5, 44, 300 }, + [2] = { 13.6, 67.8, 44, 300 }, + [3] = { 15.9, 67.4, 44, 300 }, + [4] = { 15.1, 67.2, 44, 300 }, + [5] = { 15.5, 66.3, 44, 300 }, + [6] = { 16.5, 63.5, 44, 300 }, + [7] = { 16.7, 63.5, 44, 300 }, + [8] = { 15, 61.8, 44, 300 }, + [9] = { 15, 61.7, 44, 300 }, + [10] = { 15.1, 61.3, 44, 300 }, + [11] = { 16.8, 65.1, 44, 300 }, + [12] = { 15.3, 63.9, 44, 300 }, + [13] = { 30.5, 81.3, 44, 300 }, + [14] = { 27.3, 80.4, 44, 300 }, + [15] = { 32.6, 79.6, 44, 300 }, + [16] = { 28.5, 79.5, 44, 300 }, + }, + ["lvl"] = "14-15", + }, + [713] = { + ["coords"] = { + [1] = { 29.7, 71.3, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [714] = { + ["coords"] = { + [1] = { 22.6, 71.4, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [715] = { + ["coords"] = { + [1] = { 35.7, 10.8, 33, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "40", + }, + [716] = { + ["coords"] = { + [1] = { 35.7, 10.5, 33, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "40", + }, + [717] = { + ["coords"] = { + [1] = { 35.6, 10.6, 33, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "40", + }, + [718] = { + ["coords"] = { + [1] = { 35.6, 10.5, 33, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "40", + }, + [721] = { + ["coords"] = { + [1] = { 24.6, 76.5, 1, 270 }, + [2] = { 25.1, 76.3, 1, 270 }, + [3] = { 28.3, 75.8, 1, 270 }, + [4] = { 30.3, 75.5, 1, 270 }, + [5] = { 27.7, 75.3, 1, 270 }, + [6] = { 31.1, 74.4, 1, 270 }, + [7] = { 29.4, 74.2, 1, 270 }, + [8] = { 26.2, 74, 1, 270 }, + [9] = { 25.2, 73.9, 1, 270 }, + [10] = { 30.1, 73.6, 1, 270 }, + [11] = { 29.2, 72.9, 1, 270 }, + [12] = { 28, 72.8, 1, 270 }, + [13] = { 23.6, 72.6, 1, 270 }, + [14] = { 22.5, 72.3, 1, 270 }, + [15] = { 30.4, 72.2, 1, 270 }, + [16] = { 30.8, 72.2, 1, 270 }, + [17] = { 30.4, 71.8, 1, 270 }, + [18] = { 21.5, 71.5, 1, 270 }, + [19] = { 29.3, 71.4, 1, 270 }, + [20] = { 29.1, 71.1, 1, 270 }, + [21] = { 25.6, 70.9, 1, 270 }, + [22] = { 28.3, 70.7, 1, 270 }, + [23] = { 28.6, 70.1, 1, 270 }, + [24] = { 27.9, 70.1, 1, 270 }, + [25] = { 43.4, 66.8, 1, 270 }, + [26] = { 40.9, 65.6, 1, 270 }, + [27] = { 40.7, 65.3, 1, 270 }, + [28] = { 48.2, 63.2, 1, 270 }, + [29] = { 38.8, 62, 1, 270 }, + [30] = { 38.7, 61.6, 1, 270 }, + [31] = { 38.9, 61, 1, 270 }, + [32] = { 36.9, 60.9, 1, 270 }, + [33] = { 56.8, 60.7, 1, 270 }, + [34] = { 45.2, 60.3, 1, 270 }, + [35] = { 34.8, 60, 1, 270 }, + [36] = { 47.9, 59.9, 1, 270 }, + [37] = { 48.1, 59.4, 1, 270 }, + [38] = { 50.6, 59.1, 1, 270 }, + [39] = { 40.3, 58.9, 1, 270 }, + [40] = { 60.7, 58.5, 1, 270 }, + [41] = { 31.5, 58.5, 1, 270 }, + [42] = { 48, 57.9, 1, 270 }, + [43] = { 48.2, 57.6, 1, 270 }, + [44] = { 44.5, 57, 1, 270 }, + [45] = { 56.3, 56.6, 1, 270 }, + [46] = { 32.1, 56.2, 1, 270 }, + [47] = { 41.2, 56.2, 1, 270 }, + [48] = { 67.1, 56, 1, 270 }, + [49] = { 80.4, 55.6, 1, 270 }, + [50] = { 34.3, 55.6, 1, 270 }, + [51] = { 47.5, 55.4, 1, 270 }, + [52] = { 81.6, 55, 1, 270 }, + [53] = { 31.1, 54.7, 1, 270 }, + [54] = { 28.4, 54.4, 1, 270 }, + [55] = { 49.4, 54.2, 1, 270 }, + [56] = { 65.8, 53.7, 1, 270 }, + [57] = { 61.7, 53.6, 1, 270 }, + [58] = { 81.5, 52.9, 1, 270 }, + [59] = { 32.2, 52.8, 1, 270 }, + [60] = { 71, 52.8, 1, 270 }, + [61] = { 30.3, 52.7, 1, 270 }, + [62] = { 27.9, 52.6, 1, 270 }, + [63] = { 43.9, 52.5, 1, 270 }, + [64] = { 69.8, 52.4, 1, 270 }, + [65] = { 37.5, 52.1, 1, 270 }, + [66] = { 80.1, 51.7, 1, 270 }, + [67] = { 27.1, 51.7, 1, 270 }, + [68] = { 56.9, 51.6, 1, 270 }, + [69] = { 67.4, 51.3, 1, 270 }, + [70] = { 69.8, 50.7, 1, 270 }, + [71] = { 84.6, 50.4, 1, 270 }, + [72] = { 87, 50.3, 1, 270 }, + [73] = { 75.5, 49.8, 1, 270 }, + [74] = { 78.9, 49.7, 1, 270 }, + [75] = { 73.7, 49.7, 1, 270 }, + [76] = { 50.9, 49.2, 1, 270 }, + [77] = { 32.3, 49.1, 1, 270 }, + [78] = { 29.8, 49, 1, 270 }, + [79] = { 26.6, 48.1, 1, 270 }, + [80] = { 47.1, 47.6, 1, 270 }, + [81] = { 50.3, 47.6, 1, 270 }, + [82] = { 46.6, 47.4, 1, 270 }, + [83] = { 85.1, 47.3, 1, 270 }, + [84] = { 40.9, 47.2, 1, 270 }, + [85] = { 80.2, 47.1, 1, 270 }, + [86] = { 42, 46.9, 1, 270 }, + [87] = { 38.7, 46.9, 1, 270 }, + [88] = { 34.4, 46.7, 1, 270 }, + [89] = { 58, 46.1, 1, 270 }, + [90] = { 49, 46, 1, 270 }, + [91] = { 48.9, 45.7, 1, 270 }, + [92] = { 37.1, 45.3, 1, 270 }, + [93] = { 30.2, 45.2, 1, 270 }, + [94] = { 27.6, 45.1, 1, 270 }, + [95] = { 47.2, 44.6, 1, 270 }, + [96] = { 47.3, 44.3, 1, 270 }, + [97] = { 37.5, 43.9, 1, 270 }, + [98] = { 81.2, 43.7, 1, 270 }, + [99] = { 80, 43, 1, 270 }, + [100] = { 40.2, 42.4, 1, 270 }, + [101] = { 52.1, 42, 1, 270 }, + [102] = { 27.8, 41.1, 1, 270 }, + [103] = { 40.4, 40.9, 1, 270 }, + [104] = { 47.5, 39.8, 1, 270 }, + [105] = { 47.6, 39.4, 1, 270 }, + [106] = { 50.2, 39.1, 1, 270 }, + [107] = { 50.1, 38.8, 1, 270 }, + [108] = { 38.6, 38.1, 1, 270 }, + [109] = { 43.8, 37.9, 1, 270 }, + [110] = { 35.7, 36.5, 1, 270 }, + [111] = { 28.2, 36.3, 1, 270 }, + [112] = { 30.6, 35.5, 1, 270 }, + [113] = { 44.1, 33.8, 1, 270 }, + [114] = { 39.4, 32.8, 1, 270 }, + [115] = { 36.9, 32.4, 1, 270 }, + [116] = { 33, 31.8, 1, 270 }, + [117] = { 44.4, 31.5, 1, 270 }, + [118] = { 41.3, 30.7, 1, 270 }, + [119] = { 34.5, 30.6, 1, 270 }, + [120] = { 71.2, 29.4, 1, 300 }, + [121] = { 70.3, 25.1, 1, 300 }, + [122] = { 70, 19.3, 1, 300 }, + [123] = { 14.7, 73.2, 11, 60 }, + [124] = { 16.9, 70.7, 11, 60 }, + [125] = { 21.3, 68.1, 11, 60 }, + [126] = { 23.9, 67, 11, 60 }, + [127] = { 26.7, 66.2, 11, 60 }, + [128] = { 26.8, 93.1, 12, 270 }, + [129] = { 26.5, 91.2, 12, 270 }, + [130] = { 39.9, 90.3, 12, 270 }, + [131] = { 41.4, 87.7, 12, 270 }, + [132] = { 32.5, 87.2, 12, 270 }, + [133] = { 26.8, 86.2, 12, 270 }, + [134] = { 36, 86, 12, 270 }, + [135] = { 42.3, 86, 12, 270 }, + [136] = { 48, 84.4, 12, 270 }, + [137] = { 32.1, 84.3, 12, 270 }, + [138] = { 26.4, 82.6, 12, 270 }, + [139] = { 68.5, 81.9, 12, 270 }, + [140] = { 31.7, 81.4, 12, 270 }, + [141] = { 72.5, 80.2, 12, 270 }, + [142] = { 87.9, 79.7, 12, 270 }, + [143] = { 54.5, 79.5, 12, 270 }, + [144] = { 59.9, 79.3, 12, 270 }, + [145] = { 22, 79.1, 12, 270 }, + [146] = { 60.1, 79, 12, 270 }, + [147] = { 69.7, 78.5, 12, 270 }, + [148] = { 63, 78.4, 12, 270 }, + [149] = { 53.9, 78.3, 12, 270 }, + [150] = { 96.3, 77.6, 12, 300 }, + [151] = { 26.8, 77.4, 12, 270 }, + [152] = { 67.7, 77.2, 12, 270 }, + [153] = { 24.1, 75.6, 12, 270 }, + [154] = { 56.8, 75.2, 12, 270 }, + [155] = { 55.6, 75.1, 12, 270 }, + [156] = { 26.7, 74.7, 12, 270 }, + [157] = { 54.2, 73.2, 12, 270 }, + [158] = { 51.4, 71.9, 12, 270 }, + [159] = { 85.1, 71.5, 12, 270 }, + [160] = { 51.7, 71.3, 12, 270 }, + [161] = { 43.8, 71, 12, 270 }, + [162] = { 42.4, 70.2, 12, 270 }, + [163] = { 82.8, 69.6, 12, 270 }, + [164] = { 39, 69, 12, 270 }, + [165] = { 41.6, 68.9, 12, 270 }, + [166] = { 84.2, 67.8, 12, 270 }, + [167] = { 45.1, 65.5, 12, 270 }, + [168] = { 45, 64.8, 12, 270 }, + [169] = { 40.7, 60.9, 12, 270 }, + [170] = { 40.6, 60.8, 12, 270 }, + [171] = { 36.5, 59.6, 12, 270 }, + [172] = { 34.9, 59.1, 12, 270 }, + [173] = { 37.7, 58.7, 12, 270 }, + [174] = { 41.2, 55.4, 12, 270 }, + [175] = { 38.9, 55.2, 12, 270 }, + [176] = { 34.3, 55.1, 12, 270 }, + [177] = { 36.4, 55.1, 12, 270 }, + [178] = { 30.7, 53.3, 12, 270 }, + [179] = { 54.9, 52.4, 12, 270 }, + [180] = { 32.2, 52.1, 12, 270 }, + [181] = { 34, 51.8, 12, 270 }, + [182] = { 53, 51.6, 12, 270 }, + [183] = { 52.8, 50.9, 12, 270 }, + [184] = { 52.5, 50.4, 12, 270 }, + [185] = { 50.6, 50.3, 12, 270 }, + [186] = { 51.6, 49.5, 12, 270 }, + [187] = { 56.3, 49.1, 12, 270 }, + [188] = { 33.3, 49.1, 12, 270 }, + [189] = { 54.2, 49, 12, 270 }, + [190] = { 57.4, 48.6, 12, 270 }, + [191] = { 57.1, 48.5, 12, 270 }, + [192] = { 51.3, 48.3, 12, 270 }, + [193] = { 53.8, 47.5, 12, 270 }, + [194] = { 55.4, 47.1, 12, 270 }, + [195] = { 46.7, 47, 12, 270 }, + [196] = { 54, 46.4, 12, 270 }, + [197] = { 44.2, 46.2, 12, 270 }, + [198] = { 55.3, 46.1, 12, 270 }, + [199] = { 48.9, 43.9, 12, 270 }, + [200] = { 55.5, 43.1, 12, 270 }, + [201] = { 56.3, 43.1, 12, 270 }, + [202] = { 48.2, 42.9, 12, 270 }, + [203] = { 56.3, 42, 12, 270 }, + [204] = { 55.4, 41.2, 12, 270 }, + [205] = { 50.4, 41.1, 12, 270 }, + [206] = { 57.2, 40.9, 12, 270 }, + [207] = { 55.5, 40.4, 12, 270 }, + [208] = { 43.9, 39.9, 12, 270 }, + [209] = { 51.5, 38.9, 12, 270 }, + [210] = { 51.4, 38.7, 12, 270 }, + [211] = { 44.5, 38.7, 12, 270 }, + [212] = { 50.4, 38.5, 12, 270 }, + [213] = { 44.1, 37.7, 12, 270 }, + [214] = { 52.8, 37, 12, 270 }, + [215] = { 50.4, 35.2, 12, 270 }, + [216] = { 44.2, 35.2, 12, 270 }, + [217] = { 49.9, 35.1, 12, 270 }, + [218] = { 47.5, 33.6, 12, 270 }, + [219] = { 50.1, 33.2, 12, 270 }, + [220] = { 52.7, 32.6, 12, 270 }, + [221] = { 46.6, 32, 12, 270 }, + [222] = { 49.7, 31.7, 12, 270 }, + [223] = { 34, 23, 17, 300 }, + [224] = { 32, 22, 17, 300 }, + [225] = { 33.9, 21.5, 17, 300 }, + [226] = { 33.9, 21.4, 17, 300 }, + [227] = { 17.7, 56.6, 38, 270 }, + [228] = { 12.8, 82.7, 44, 300 }, + [229] = { 76.7, 82, 44, 300 }, + [230] = { 10.8, 80.2, 44, 300 }, + [231] = { 33, 80.1, 44, 300 }, + [232] = { 76.8, 79.8, 44, 300 }, + [233] = { 27, 79.5, 44, 300 }, + [234] = { 42.8, 78.8, 44, 300 }, + [235] = { 46.2, 78.8, 44, 300 }, + [236] = { 48.1, 78.3, 44, 300 }, + [237] = { 55.6, 78.1, 44, 300 }, + [238] = { 43.5, 77.4, 44, 300 }, + [239] = { 65.4, 76.5, 44, 300 }, + [240] = { 48.3, 75.5, 44, 300 }, + [241] = { 38.6, 75.2, 44, 300 }, + [242] = { 23.8, 75.2, 44, 300 }, + [243] = { 37, 75.1, 44, 300 }, + [244] = { 50.8, 74.9, 44, 300 }, + [245] = { 11.5, 74, 44, 300 }, + [246] = { 62.4, 73.7, 44, 300 }, + [247] = { 73.4, 73.4, 44, 300 }, + [248] = { 76.8, 73.3, 44, 300 }, + [249] = { 62, 73.2, 44, 300 }, + [250] = { 62, 72.5, 44, 300 }, + [251] = { 26.3, 71.7, 44, 300 }, + [252] = { 31.4, 71.7, 44, 300 }, + [253] = { 14.8, 67.8, 44, 300 }, + [254] = { 24.8, 67.5, 44, 300 }, + [255] = { 59.4, 67.1, 44, 300 }, + [256] = { 27.4, 65.8, 44, 300 }, + [257] = { 78.6, 65.4, 44, 300 }, + [258] = { 25.6, 63.8, 44, 300 }, + [259] = { 34.1, 62.4, 44, 300 }, + [260] = { 19.5, 61.4, 44, 300 }, + [261] = { 30.3, 60.5, 44, 300 }, + [262] = { 34.4, 60.1, 44, 300 }, + [263] = { 19.2, 56.9, 44, 300 }, + [264] = { 86, 55.4, 44, 300 }, + [265] = { 81.5, 52.8, 44, 300 }, + [266] = { 14.9, 50.2, 44, 300 }, + [267] = { 73.5, 48.2, 44, 300 }, + [268] = { 18.4, 47.4, 44, 300 }, + [269] = { 72.5, 47, 44, 300 }, + [270] = { 31.7, 46.1, 44, 300 }, + [271] = { 84.2, 46.1, 44, 300 }, + [272] = { 25.5, 45.9, 44, 300 }, + [273] = { 72.6, 45.7, 44, 300 }, + [274] = { 70.4, 45.4, 44, 300 }, + [275] = { 22.4, 45.4, 44, 300 }, + [276] = { 82.7, 45.3, 44, 300 }, + [277] = { 68.1, 45.2, 44, 300 }, + [278] = { 32.7, 43.3, 44, 300 }, + [279] = { 33.7, 42.5, 44, 300 }, + [280] = { 24.3, 42, 44, 300 }, + [281] = { 66.1, 41.4, 44, 300 }, + [282] = { 71.9, 40.7, 44, 300 }, + [283] = { 53.6, 36.9, 44, 300 }, + [284] = { 81.2, 36.1, 44, 300 }, + [285] = { 40.7, 36, 44, 300 }, + [286] = { 48.5, 33.1, 44, 300 }, + [287] = { 30.8, 64.3, 85, 180 }, + [288] = { 36.9, 63.7, 85, 180 }, + [289] = { 56.7, 58.3, 85, 180 }, + [290] = { 62.1, 58.2, 85, 180 }, + [291] = { 46, 58.1, 85, 180 }, + [292] = { 46.2, 58, 85, 180 }, + [293] = { 69.9, 54.8, 85, 180 }, + [294] = { 51.3, 53.9, 85, 180 }, + [295] = { 30.8, 49.8, 85, 180 }, + [296] = { 61.6, 38.7, 85, 180 }, + [297] = { 56.9, 36.7, 85, 180 }, + [298] = { 59, 36.2, 85, 180 }, + [299] = { 68.9, 34.5, 85, 180 }, + [300] = { 64.5, 33.9, 85, 180 }, + [301] = { 61, 32.5, 85, 180 }, + [302] = { 51.6, 76.8, 130, 300 }, + [303] = { 54.6, 55, 130, 300 }, + [304] = { 47.4, 32, 130, 300 }, + [305] = { 52.4, 78.2, 141, 300 }, + [306] = { 46.6, 78.1, 141, 300 }, + [307] = { 49.7, 77.7, 141, 300 }, + [308] = { 53.9, 77.4, 141, 300 }, + [309] = { 55.2, 76.2, 141, 300 }, + [310] = { 50.8, 75.6, 141, 300 }, + [311] = { 44.9, 75.6, 141, 300 }, + [312] = { 64.4, 70.6, 141, 300 }, + [313] = { 41.7, 70.2, 141, 300 }, + [314] = { 61.8, 69.9, 141, 300 }, + [315] = { 40.9, 68.3, 141, 300 }, + [316] = { 65.7, 67.1, 141, 300 }, + [317] = { 62.8, 66.5, 141, 300 }, + [318] = { 48.3, 65, 141, 300 }, + [319] = { 58.3, 63.9, 141, 300 }, + [320] = { 48.1, 63.9, 141, 300 }, + [321] = { 55.3, 63.9, 141, 300 }, + [322] = { 47.4, 63.9, 141, 300 }, + [323] = { 66.9, 63.5, 141, 300 }, + [324] = { 48.5, 62.5, 141, 300 }, + [325] = { 55.7, 62.2, 141, 300 }, + [326] = { 51, 61.6, 141, 300 }, + [327] = { 50.9, 61.6, 141, 300 }, + [328] = { 57.6, 61.4, 141, 300 }, + [329] = { 40, 61.2, 141, 300 }, + [330] = { 55.2, 60.9, 141, 300 }, + [331] = { 68.1, 60.8, 141, 300 }, + [332] = { 52, 60.4, 141, 300 }, + [333] = { 58.4, 59.9, 141, 300 }, + [334] = { 49.2, 59.6, 141, 300 }, + [335] = { 37.9, 56.9, 141, 300 }, + [336] = { 60.5, 55.6, 141, 300 }, + [337] = { 63.2, 54.6, 141, 300 }, + [338] = { 41, 53.9, 141, 300 }, + [339] = { 66.4, 53.4, 141, 300 }, + [340] = { 68.1, 53, 141, 300 }, + [341] = { 63.9, 52.4, 141, 300 }, + [342] = { 65.1, 51, 141, 300 }, + [343] = { 67.1, 50.8, 141, 300 }, + [344] = { 43.3, 47.9, 141, 300 }, + [345] = { 44.2, 47.6, 141, 300 }, + [346] = { 59.4, 46.2, 141, 300 }, + [347] = { 58.3, 46.1, 141, 300 }, + [348] = { 55.2, 45.7, 141, 300 }, + [349] = { 42.9, 45.4, 141, 300 }, + [350] = { 62.3, 44.1, 141, 300 }, + [351] = { 61, 43.8, 141, 300 }, + [352] = { 55.3, 43.8, 141, 300 }, + [353] = { 58.8, 43.7, 141, 300 }, + [354] = { 38.5, 43.2, 141, 300 }, + [355] = { 58.9, 41.9, 141, 300 }, + [356] = { 54.7, 41.8, 141, 300 }, + [357] = { 64.7, 41.6, 141, 300 }, + [358] = { 61.3, 39.9, 141, 300 }, + [359] = { 59.6, 38.8, 141, 300 }, + [360] = { 56.4, 38.8, 141, 300 }, + [361] = { 63.5, 37.3, 141, 300 }, + [362] = { 60.9, 35.9, 141, 300 }, + [363] = { 38.2, 35.2, 141, 300 }, + [364] = { 61.4, 33.7, 141, 300 }, + [365] = { 57.4, 33, 141, 300 }, + [366] = { 59.6, 32.5, 141, 300 }, + [367] = { 41.5, 29.8, 141, 300 }, + [368] = { 40, 91, 148, 300 }, + [369] = { 40.5, 88.7, 148, 300 }, + [370] = { 43.9, 86.5, 148, 300 }, + [371] = { 40.8, 78.6, 148, 300 }, + [372] = { 42.3, 78, 148, 300 }, + [373] = { 43.4, 73, 148, 300 }, + [374] = { 38.3, 63.7, 148, 300 }, + [375] = { 40.8, 60.6, 148, 300 }, + [376] = { 40.3, 53.4, 148, 300 }, + [377] = { 41.1, 46.6, 148, 300 }, + [378] = { 38.2, 45.7, 148, 300 }, + [379] = { 41.8, 44.2, 148, 300 }, + [380] = { 42.4, 39, 148, 300 }, + [381] = { 45.7, 35.1, 148, 300 }, + [382] = { 46.5, 27.2, 148, 300 }, + [383] = { 58.1, 26.2, 148, 300 }, + [384] = { 42, 63.4, 267, 300 }, + [385] = { 52.5, 60.3, 267, 300 }, + [386] = { 42.1, 59.5, 267, 300 }, + [387] = { 36.2, 57.7, 267, 300 }, + [388] = { 53.9, 56.8, 267, 300 }, + [389] = { 52.9, 54.5, 267, 300 }, + [390] = { 47.3, 54.2, 267, 300 }, + [391] = { 44.6, 48.3, 267, 300 }, + [392] = { 37.3, 45.5, 267, 300 }, + [393] = { 62, 69.5, 357, 300 }, + [394] = { 75.7, 61.6, 357, 300 }, + [395] = { 61.5, 55.7, 357, 300 }, + [396] = { 67.5, 45.4, 357, 300 }, + [397] = { 50.3, 27.5, 357, 300 }, + [398] = { 46.1, 25.2, 357, 300 }, + [399] = { 83.4, 87.7, 406, 300 }, + [400] = { 79.1, 85.7, 406, 300 }, + [401] = { 75, 85.4, 406, 300 }, + [402] = { 83.1, 84.6, 406, 300 }, + [403] = { 83.1, 84.4, 406, 300 }, + [404] = { 63.1, 83.9, 406, 300 }, + [405] = { 57.5, 66.5, 406, 300 }, + [406] = { 63.2, 59.4, 406, 300 }, + [407] = { 76.8, 54, 406, 300 }, + [408] = { 52.4, 53, 406, 300 }, + [409] = { 60.4, 48.7, 406, 300 }, + [410] = { 49.6, 46.3, 406, 300 }, + [411] = { 74.1, 44.9, 406, 300 }, + [412] = { 46.8, 43.3, 406, 300 }, + [413] = { 67.4, 37.5, 406, 300 }, + [414] = { 48.3, 36, 406, 300 }, + [415] = { 57.1, 72.4, 493, 300 }, + [416] = { 58.7, 71.6, 493, 300 }, + [417] = { 49.1, 70.8, 493, 300 }, + [418] = { 44.7, 70.4, 493, 300 }, + [419] = { 65.4, 70.2, 493, 300 }, + [420] = { 40.8, 68.4, 493, 300 }, + [421] = { 61.2, 67.8, 493, 300 }, + [422] = { 49.8, 65.9, 493, 300 }, + [423] = { 59.4, 65.8, 493, 300 }, + [424] = { 63.5, 64.4, 493, 300 }, + [425] = { 66.1, 62.8, 493, 300 }, + [426] = { 39, 62.1, 493, 300 }, + [427] = { 64.1, 60.9, 493, 300 }, + [428] = { 33.8, 59.9, 493, 300 }, + [429] = { 36.6, 57.4, 493, 300 }, + [430] = { 67.5, 55.4, 493, 300 }, + [431] = { 69.1, 54, 493, 300 }, + [432] = { 41.2, 53, 493, 300 }, + [433] = { 37.8, 51.6, 493, 300 }, + [434] = { 64, 50, 493, 300 }, + [435] = { 62.1, 47.8, 493, 300 }, + [436] = { 32.7, 46.6, 493, 300 }, + [437] = { 41.5, 44.5, 493, 300 }, + [438] = { 65.3, 44.2, 493, 300 }, + [439] = { 45.2, 43.2, 493, 300 }, + [440] = { 35.8, 40.5, 493, 300 }, + [441] = { 38, 40.4, 493, 300 }, + [442] = { 51, 39.1, 493, 300 }, + [443] = { 55.7, 32.4, 493, 300 }, + [444] = { 50.9, 31.2, 493, 300 }, + [445] = { 53.9, 31.2, 493, 300 }, + [446] = { 48.5, 31.2, 493, 300 }, + [447] = { 37.3, 30.6, 493, 300 }, + [448] = { 35.8, 30, 493, 300 }, + [449] = { 74.4, 89, 1519, 270 }, + [450] = { 99.5, 48.1, 1657, 300 }, + }, + ["lvl"] = "1", + }, + [723] = { + ["coords"] = { + [1] = { 51.7, 27.9, 33, 54000 }, + }, + ["lvl"] = "44", + ["rnk"] = "2", + }, + [724] = { + ["coords"] = { + [1] = { 24.1, 79.4, 1, 555 }, + [2] = { 22.1, 78.2, 1, 555 }, + [3] = { 28.5, 78, 1, 555 }, + [4] = { 20, 77.5, 1, 555 }, + [5] = { 29.3, 77.5, 1, 555 }, + [6] = { 30, 77.4, 1, 555 }, + [7] = { 31.8, 77, 1, 555 }, + [8] = { 23.3, 76.7, 1, 555 }, + [9] = { 27.7, 76.5, 1, 555 }, + [10] = { 22, 76.3, 1, 555 }, + [11] = { 30.5, 76.3, 1, 555 }, + [12] = { 30.9, 76.2, 1, 555 }, + [13] = { 31.6, 75.9, 1, 555 }, + [14] = { 30.1, 75.7, 1, 555 }, + [15] = { 32.5, 75.6, 1, 555 }, + [16] = { 31.2, 75.4, 1, 555 }, + [17] = { 21.4, 75.4, 1, 555 }, + [18] = { 20, 75.4, 1, 555 }, + [19] = { 22.8, 75.3, 1, 555 }, + [20] = { 23.9, 75.2, 1, 555 }, + [21] = { 30.7, 75.1, 1, 555 }, + [22] = { 29.3, 75, 1, 555 }, + [23] = { 21.4, 74.7, 1, 555 }, + [24] = { 30.3, 74.7, 1, 555 }, + [25] = { 24.2, 74.3, 1, 555 }, + [26] = { 24.8, 74.2, 1, 555 }, + [27] = { 23.1, 74.2, 1, 555 }, + [28] = { 31.6, 73.8, 1, 555 }, + [29] = { 26.6, 73.6, 1, 555 }, + [30] = { 23, 73.6, 1, 555 }, + [31] = { 26.9, 73.4, 1, 555 }, + [32] = { 27.3, 73.4, 1, 555 }, + [33] = { 21.5, 73.3, 1, 555 }, + [34] = { 22.7, 73.3, 1, 555 }, + [35] = { 26.4, 73.1, 1, 555 }, + [36] = { 23.9, 73, 1, 555 }, + [37] = { 26.9, 72.9, 1, 555 }, + [38] = { 27.3, 72.9, 1, 555 }, + [39] = { 26.6, 72.7, 1, 555 }, + [40] = { 26.1, 72.7, 1, 555 }, + [41] = { 27, 72.7, 1, 555 }, + [42] = { 21.8, 72.7, 1, 555 }, + [43] = { 23.9, 72.6, 1, 555 }, + [44] = { 25.7, 72.5, 1, 555 }, + [45] = { 19.4, 72.2, 1, 555 }, + [46] = { 27.2, 72.2, 1, 555 }, + [47] = { 26.2, 72.1, 1, 555 }, + [48] = { 20.8, 72.1, 1, 555 }, + [49] = { 26.6, 71.9, 1, 555 }, + [50] = { 26.2, 71.8, 1, 555 }, + [51] = { 21.2, 71.8, 1, 555 }, + [52] = { 20.2, 71.5, 1, 555 }, + [53] = { 20.6, 70.5, 1, 555 }, + [54] = { 23.3, 78.4, 1, 555 }, + [55] = { 21.4, 77.3, 1, 555 }, + [56] = { 24.1, 77.3, 1, 555 }, + [57] = { 22.8, 77.3, 1, 555 }, + [58] = { 22.7, 76.3, 1, 555 }, + [59] = { 22.9, 74.6, 1, 555 }, + [60] = { 26.1, 74.4, 1, 555 }, + [61] = { 20.7, 74.3, 1, 555 }, + [62] = { 23.2, 73.6, 1, 555 }, + [63] = { 25.4, 73.3, 1, 555 }, + [64] = { 26.1, 72.2, 1, 555 }, + [65] = { 24.8, 72.1, 1, 555 }, + }, + ["lvl"] = "2", + }, + [725] = { + ["coords"] = {}, + ["lvl"] = "25-26", + }, + [727] = { + ["coords"] = { + [1] = { 43.4, 65.2, 1, 300 }, + [2] = { 38, 61.9, 1, 300 }, + [3] = { 36, 61.9, 1, 300 }, + [4] = { 47.5, 57.5, 1, 300 }, + [5] = { 48.1, 55.3, 1, 300 }, + [6] = { 46.4, 55, 1, 300 }, + [7] = { 46.5, 52.8, 1, 300 }, + [8] = { 57.9, 52.6, 1, 300 }, + [9] = { 68, 52.6, 1, 300 }, + [10] = { 67.9, 52.6, 1, 300 }, + [11] = { 67.9, 52.5, 1, 300 }, + [12] = { 46.5, 52.2, 1, 300 }, + [13] = { 46, 52.1, 1, 300 }, + [14] = { 46.2, 51.4, 1, 300 }, + [15] = { 46, 51, 1, 300 }, + [16] = { 50.1, 49.2, 1, 300 }, + [17] = { 46.9, 47.9, 1, 300 }, + [18] = { 49.6, 46.6, 1, 300 }, + [19] = { 47.7, 45.6, 1, 300 }, + [20] = { 47, 42.4, 1, 300 }, + [21] = { 47, 42.3, 1, 300 }, + [22] = { 46.9, 41.9, 1, 300 }, + [23] = { 69.9, 40.9, 1, 300 }, + [24] = { 69.7, 40.7, 1, 300 }, + [25] = { 35.1, 32.9, 1, 300 }, + [26] = { 71.7, 31.3, 1, 300 }, + [27] = { 70.9, 30.5, 1, 300 }, + [28] = { 69.7, 30.1, 1, 300 }, + [29] = { 70.1, 25.8, 1, 300 }, + [30] = { 71.7, 24.4, 1, 300 }, + [31] = { 71.5, 24.1, 1, 300 }, + [32] = { 71.4, 24, 1, 300 }, + [33] = { 71.6, 23.3, 1, 300 }, + [34] = { 71, 22.2, 1, 300 }, + [35] = { 70.1, 20.8, 1, 300 }, + [36] = { 68.8, 18.9, 1, 300 }, + [37] = { 27.1, 66.7, 11, 300 }, + [38] = { 27.2, 66.2, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [728] = { + ["coords"] = { + [1] = { 49.6, 24, 33, 240 }, + }, + ["lvl"] = "40", + ["rnk"] = "1", + }, + [729] = { + ["coords"] = { + [1] = { 32.2, 17.4, 33, 300 }, + }, + ["lvl"] = "37", + }, + [730] = { + ["coords"] = { + [1] = { 28.7, 44.8, 33, 240 }, + [2] = { 31.8, 43.4, 33, 240 }, + [3] = { 28.3, 42.5, 33, 240 }, + }, + ["lvl"] = "43", + ["rnk"] = "1", + }, + [731] = { + ["coords"] = { + [1] = { 38.2, 35.6, 33, 240 }, + }, + ["lvl"] = "43", + ["rnk"] = "1", + }, + [732] = { + ["coords"] = { + [1] = { 87.8, 9.5, 10, 270 }, + [2] = { 82.9, 87.2, 12, 270 }, + [3] = { 81.1, 86.9, 12, 270 }, + [4] = { 84.8, 86.6, 12, 270 }, + [5] = { 76.9, 86.4, 12, 270 }, + [6] = { 76, 86, 12, 270 }, + [7] = { 77.7, 85.9, 12, 270 }, + [8] = { 77.1, 85.8, 12, 270 }, + [9] = { 80, 85.5, 12, 270 }, + [10] = { 79.5, 85.3, 12, 270 }, + [11] = { 77.2, 85, 12, 270 }, + [12] = { 76.4, 84.3, 12, 270 }, + [13] = { 77, 84.2, 12, 270 }, + [14] = { 88.5, 84.2, 12, 270 }, + [15] = { 78.5, 84, 12, 270 }, + [16] = { 75.9, 83.7, 12, 270 }, + [17] = { 76.9, 82.7, 12, 270 }, + [18] = { 89.9, 82.4, 12, 270 }, + [19] = { 91.6, 82.3, 12, 270 }, + [20] = { 78.6, 82.1, 12, 270 }, + [21] = { 76.5, 82, 12, 270 }, + [22] = { 77.5, 80.9, 12, 270 }, + [23] = { 76.5, 79.7, 12, 270 }, + [24] = { 78.5, 60.2, 12, 270 }, + [25] = { 76.6, 58.9, 12, 270 }, + [26] = { 77.8, 58, 12, 270 }, + [27] = { 78.1, 57.7, 12, 270 }, + [28] = { 78.3, 57.5, 12, 270 }, + [29] = { 77.7, 56.9, 12, 270 }, + [30] = { 79.8, 56.8, 12, 270 }, + [31] = { 79.2, 56.4, 12, 270 }, + [32] = { 77.7, 56.3, 12, 270 }, + [33] = { 78.5, 55.8, 12, 270 }, + [34] = { 79.7, 55, 12, 270 }, + [35] = { 80.4, 53.3, 12, 270 }, + [36] = { 79.4, 46.2, 12, 270 }, + [37] = { 78.7, 45.9, 12, 270 }, + [38] = { 78.1, 45.3, 12, 270 }, + [39] = { 78.7, 45.1, 12, 270 }, + [40] = { 78.7, 44.5, 12, 270 }, + [41] = { 77.6, 44.1, 12, 270 }, + [42] = { 79.3, 58.1, 12, 270 }, + [43] = { 78.3, 58, 12, 270 }, + [44] = { 78.3, 56.7, 12, 270 }, + [45] = { 79.3, 55.2, 12, 270 }, + }, + ["lvl"] = "9-10", + }, + [733] = { + ["coords"] = { + [1] = { 38, 3.3, 33, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [734] = { + ["coords"] = { + [1] = { 38, 3, 33, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [735] = { + ["coords"] = { + [1] = { 53.1, 70, 12, 270 }, + [2] = { 55.3, 69.6, 12, 270 }, + [3] = { 57.2, 69.5, 12, 270 }, + [4] = { 51.5, 69.5, 12, 270 }, + [5] = { 52, 68.7, 12, 270 }, + [6] = { 52.9, 68, 12, 270 }, + [7] = { 53, 67.9, 12, 270 }, + [8] = { 58.3, 67.9, 12, 270 }, + [9] = { 50.5, 66.3, 12, 270 }, + [10] = { 52, 66.2, 12, 270 }, + [11] = { 58.2, 65.2, 12, 270 }, + [12] = { 51.5, 65.2, 12, 270 }, + [13] = { 52, 64.5, 12, 270 }, + [14] = { 57.3, 63.7, 12, 270 }, + [15] = { 53.3, 63.5, 12, 270 }, + [16] = { 55.5, 63.2, 12, 270 }, + [17] = { 54.2, 62.7, 12, 270 }, + [18] = { 50.5, 62.3, 12, 270 }, + [19] = { 57.1, 62.3, 12, 270 }, + }, + ["lvl"] = "6-7", + }, + [736] = { + ["coords"] = { + [1] = { 28.2, 16.6, 33, 300 }, + [2] = { 29.8, 16.1, 33, 300 }, + [3] = { 28.9, 16, 33, 300 }, + [4] = { 28.7, 14.6, 33, 300 }, + [5] = { 29.5, 13.6, 33, 300 }, + [6] = { 28.4, 13.4, 33, 300 }, + [7] = { 28.4, 12.3, 33, 300 }, + [8] = { 30.9, 11.3, 33, 300 }, + [9] = { 30.4, 10.5, 33, 300 }, + [10] = { 45.7, 10.3, 33, 300 }, + [11] = { 45.8, 10.3, 33, 300 }, + [12] = { 29.3, 8.9, 33, 300 }, + [13] = { 30.4, 15.2, 33, 300 }, + [14] = { 30.9, 14.5, 33, 300 }, + [15] = { 28.3, 10.4, 33, 300 }, + [16] = { 29.9, 9.8, 33, 300 }, + }, + ["lvl"] = "32-33", + }, + [737] = { + ["coords"] = { + [1] = { 27, 77.1, 33, 300 }, + }, + ["lvl"] = "35", + }, + [738] = { + ["coords"] = { + [1] = { 38, 3.4, 33, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [739] = { + ["coords"] = { + [1] = { 37.8, 3.6, 33, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [740] = { + ["coords"] = { + [1] = { 12.7, 67, 8, 300 }, + [2] = { 15.3, 66.6, 8, 300 }, + [3] = { 12.8, 65, 8, 300 }, + [4] = { 16.2, 64.5, 8, 300 }, + [5] = { 11.5, 62.9, 8, 300 }, + [6] = { 14.3, 61.3, 8, 300 }, + [7] = { 17.3, 59.8, 8, 300 }, + [8] = { 13.9, 59.4, 8, 300 }, + }, + ["lvl"] = "34-35", + }, + [741] = { + ["coords"] = { + [1] = { 14.5, 64.2, 8, 300 }, + [2] = { 12.6, 59.3, 8, 300 }, + [3] = { 12.6, 59, 8, 300 }, + [4] = { 11.4, 57.3, 8, 300 }, + [5] = { 16.7, 56.2, 8, 300 }, + [6] = { 12.7, 67, 8, 300 }, + [7] = { 12.8, 65, 8, 300 }, + [8] = { 11.5, 62.9, 8, 300 }, + }, + ["lvl"] = "35-36", + }, + [742] = { + ["coords"] = { + [1] = { 72.4, 69.5, 8, 300 }, + [2] = { 89.1, 65.7, 8, 300 }, + [3] = { 66.3, 64.2, 8, 300 }, + [4] = { 59.9, 52, 8, 300 }, + }, + ["lvl"] = "41-42", + ["rnk"] = "1", + }, + [743] = { + ["coords"] = { + [1] = { 71.3, 66.7, 8, 300 }, + [2] = { 64.1, 63.6, 8, 300 }, + [3] = { 89.7, 61.5, 8, 300 }, + [4] = { 62, 60, 8, 300 }, + [5] = { 60.2, 57.2, 8, 300 }, + [6] = { 90.4, 56.9, 8, 300 }, + [7] = { 60.5, 53.2, 8, 300 }, + }, + ["lvl"] = "42-43", + ["rnk"] = "1", + }, + [744] = { + ["coords"] = { + [1] = { 77.5, 70.7, 8, 300 }, + [2] = { 76.6, 68.8, 8, 300 }, + [3] = { 79.7, 58.8, 8, 300 }, + [4] = { 60.7, 43.3, 8, 300 }, + [5] = { 64.5, 42, 8, 300 }, + [6] = { 62.2, 41.7, 8, 300 }, + [7] = { 60.6, 39.3, 8, 300 }, + [8] = { 63.7, 39.2, 8, 300 }, + [9] = { 61.8, 37.5, 8, 300 }, + }, + ["lvl"] = "42-43", + ["rnk"] = "1", + }, + [745] = { + ["coords"] = { + [1] = { 78, 68.2, 8, 300 }, + [2] = { 75.6, 67, 8, 300 }, + [3] = { 77.1, 65.3, 8, 300 }, + [4] = { 83.9, 51.9, 8, 300 }, + [5] = { 81.3, 51.8, 8, 300 }, + [6] = { 76.6, 46.9, 8, 300 }, + [7] = { 87.8, 45.3, 8, 300 }, + [8] = { 62.1, 44.6, 8, 300 }, + [9] = { 80.9, 42.4, 8, 300 }, + [10] = { 75.3, 41.1, 8, 300 }, + [11] = { 82.1, 41, 8, 300 }, + [12] = { 59.5, 40.9, 8, 300 }, + [13] = { 73.5, 38.8, 8, 300 }, + }, + ["lvl"] = "43-44", + ["rnk"] = "1", + }, + [746] = { + ["coords"] = { + [1] = { 78.4, 55, 8, 300 }, + [2] = { 85.5, 49.8, 8, 300 }, + [3] = { 86.9, 47.8, 8, 300 }, + [4] = { 83, 46, 8, 300 }, + [5] = { 86.1, 45.8, 8, 300 }, + [6] = { 80.2, 45.5, 8, 300 }, + [7] = { 87, 44, 8, 300 }, + }, + ["lvl"] = "45", + ["rnk"] = "1", + }, + [747] = { + ["coords"] = { + [1] = { 82.6, 94.1, 8, 300 }, + [2] = { 83.6, 93.7, 8, 300 }, + [3] = { 83.7, 88.5, 8, 300 }, + [4] = { 86.8, 87, 8, 300 }, + [5] = { 84.3, 85.4, 8, 300 }, + [6] = { 86.9, 85, 8, 300 }, + [7] = { 85.9, 85, 8, 300 }, + [8] = { 86.5, 84.5, 8, 300 }, + [9] = { 87, 80.6, 8, 300 }, + }, + ["lvl"] = "41-42", + }, + [749] = { + ["coords"] = {}, + ["lvl"] = "41-42", + }, + [750] = { + ["coords"] = { + [1] = { 73.1, 18, 4, 300 }, + [2] = { 73.8, 17.2, 4, 300 }, + [3] = { 72, 13.1, 4, 300 }, + [4] = { 73.3, 12.9, 4, 300 }, + [5] = { 73.2, 12.6, 4, 300 }, + [6] = { 81.2, 94.1, 8, 300 }, + [7] = { 82.8, 93.8, 8, 300 }, + [8] = { 82.8, 93.5, 8, 300 }, + [9] = { 81.2, 91.4, 8, 300 }, + [10] = { 83.5, 90.9, 8, 300 }, + [11] = { 82.9, 90.5, 8, 300 }, + [12] = { 83.9, 90, 8, 300 }, + [13] = { 82.8, 89.6, 8, 300 }, + [14] = { 85.4, 88.9, 8, 300 }, + [15] = { 63.9, 88.2, 8, 300 }, + [16] = { 84.4, 87.2, 8, 300 }, + [17] = { 85.6, 87.2, 8, 300 }, + [18] = { 65, 86.9, 8, 300 }, + [19] = { 66.3, 86.2, 8, 300 }, + [20] = { 86.7, 83.4, 8, 300 }, + [21] = { 85.3, 82.9, 8, 300 }, + [22] = { 87.1, 82.7, 8, 300 }, + [23] = { 88.5, 82, 8, 300 }, + [24] = { 64.6, 81.5, 8, 300 }, + [25] = { 62.3, 81, 8, 300 }, + [26] = { 66, 81, 8, 300 }, + [27] = { 64.3, 80.6, 8, 300 }, + [28] = { 64.1, 80.3, 8, 300 }, + [29] = { 90.2, 80.1, 8, 300 }, + [30] = { 88.3, 80.1, 8, 300 }, + [31] = { 89.4, 77.7, 8, 300 }, + [32] = { 88.5, 76.4, 8, 300 }, + [33] = { 89.9, 76.1, 8, 300 }, + [34] = { 67.1, 75.8, 8, 300 }, + [35] = { 91, 71.2, 8, 300 }, + [36] = { 91.6, 69.7, 8, 300 }, + [37] = { 92.7, 69.4, 8, 300 }, + [38] = { 92.7, 68.7, 8, 300 }, + [39] = { 91.7, 67.8, 8, 300 }, + [40] = { 93.2, 66.8, 8, 300 }, + [41] = { 92.4, 65.7, 8, 300 }, + [42] = { 94.1, 63.3, 8, 300 }, + [43] = { 95.6, 63, 8, 300 }, + [44] = { 95.5, 61.1, 8, 300 }, + [45] = { 94.3, 60, 8, 300 }, + [46] = { 95.6, 58.7, 8, 300 }, + [47] = { 94.7, 58.5, 8, 300 }, + [48] = { 95.5, 54.3, 8, 300 }, + [49] = { 94.3, 54.1, 8, 300 }, + [50] = { 95.9, 52.6, 8, 300 }, + [51] = { 95.7, 49.9, 8, 300 }, + [52] = { 94.2, 49.8, 8, 300 }, + [53] = { 87, 80.6, 8, 300 }, + }, + ["lvl"] = "42-43", + }, + [751] = { + ["coords"] = { + [1] = { 72.3, 20, 4, 300 }, + [2] = { 72.3, 19, 4, 300 }, + [3] = { 73.4, 18.4, 4, 300 }, + [4] = { 71.9, 18.3, 4, 300 }, + [5] = { 72.6, 18.1, 4, 300 }, + [6] = { 71.7, 17.4, 4, 300 }, + [7] = { 72.3, 17.2, 4, 300 }, + [8] = { 72.8, 17.2, 4, 300 }, + [9] = { 70.7, 16.9, 4, 300 }, + [10] = { 72.6, 15.8, 4, 300 }, + [11] = { 70.8, 15.6, 4, 300 }, + [12] = { 71.3, 15.4, 4, 300 }, + [13] = { 71, 15, 4, 300 }, + [14] = { 71.7, 14.1, 4, 300 }, + [15] = { 71.8, 13.2, 4, 300 }, + [16] = { 71.9, 13.1, 4, 300 }, + [17] = { 72.5, 12.7, 4, 300 }, + [18] = { 63.6, 87, 8, 300 }, + [19] = { 63.2, 84.9, 8, 300 }, + [20] = { 61.4, 84.3, 8, 300 }, + [21] = { 60.9, 83.7, 8, 300 }, + [22] = { 66.4, 83.1, 8, 300 }, + [23] = { 61.9, 82.4, 8, 300 }, + [24] = { 62.1, 81.2, 8, 300 }, + [25] = { 62.2, 81, 8, 300 }, + [26] = { 63.1, 80.4, 8, 300 }, + [27] = { 89.1, 78.5, 8, 300 }, + [28] = { 88.1, 78.2, 8, 300 }, + [29] = { 66.1, 77.6, 8, 300 }, + [30] = { 94.9, 61, 8, 300 }, + [31] = { 94.9, 60.1, 8, 300 }, + [32] = { 94.4, 52.5, 8, 300 }, + [33] = { 95.1, 51.3, 8, 300 }, + [34] = { 95, 51.1, 8, 300 }, + [35] = { 94.4, 30.2, 8, 300 }, + [36] = { 91.6, 69.7, 8, 300 }, + [37] = { 91.7, 67.8, 8, 300 }, + }, + ["lvl"] = "43-44", + }, + [752] = { + ["coords"] = { + [1] = { 72.3, 20, 4, 300 }, + [2] = { 72.3, 19, 4, 300 }, + [3] = { 73.4, 18.4, 4, 300 }, + [4] = { 71.9, 18.3, 4, 300 }, + [5] = { 72.6, 18.1, 4, 300 }, + [6] = { 71.7, 17.4, 4, 300 }, + [7] = { 72.3, 17.2, 4, 300 }, + [8] = { 72.8, 17.2, 4, 300 }, + [9] = { 70.7, 16.9, 4, 300 }, + [10] = { 72.6, 15.8, 4, 300 }, + [11] = { 70.8, 15.6, 4, 300 }, + [12] = { 71.3, 15.4, 4, 300 }, + [13] = { 71, 15, 4, 300 }, + [14] = { 71.7, 14.1, 4, 300 }, + [15] = { 71.8, 13.2, 4, 300 }, + [16] = { 71.9, 13.1, 4, 300 }, + [17] = { 72.5, 12.7, 4, 300 }, + [18] = { 63.6, 87, 8, 300 }, + [19] = { 63.2, 84.9, 8, 300 }, + [20] = { 61.4, 84.3, 8, 300 }, + [21] = { 60.9, 83.7, 8, 300 }, + [22] = { 66.4, 83.1, 8, 300 }, + [23] = { 61.9, 82.4, 8, 300 }, + [24] = { 62.1, 81.2, 8, 300 }, + [25] = { 62.2, 81, 8, 300 }, + [26] = { 63.1, 80.4, 8, 300 }, + [27] = { 89.1, 78.5, 8, 300 }, + [28] = { 88.1, 78.2, 8, 300 }, + [29] = { 66.1, 77.6, 8, 300 }, + [30] = { 94.9, 61, 8, 300 }, + [31] = { 94.9, 60.1, 8, 300 }, + [32] = { 94.4, 52.5, 8, 300 }, + [33] = { 95.1, 51.3, 8, 300 }, + [34] = { 95, 51.1, 8, 300 }, + [35] = { 94.4, 30.2, 8, 300 }, + }, + ["lvl"] = "44-45", + }, + [753] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "30-32", + }, + [754] = { + ["coords"] = { + [1] = { 38.2, 3.6, 33, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "31-32", + }, + [755] = { + ["coords"] = { + [1] = { 43.5, 34.5, 8, 300 }, + [2] = { 50.2, 34.2, 8, 300 }, + [3] = { 51.8, 33.5, 8, 300 }, + [4] = { 49, 31.9, 8, 300 }, + [5] = { 45.9, 31.1, 8, 300 }, + [6] = { 51.7, 28.8, 8, 300 }, + [7] = { 46.1, 27.6, 8, 300 }, + [8] = { 49.6, 27.4, 8, 300 }, + }, + ["lvl"] = "34-35", + }, + [756] = { + ["coords"] = {}, + ["lvl"] = "41-42", + }, + [757] = { + ["coords"] = { + [1] = { 43.4, 38.5, 8, 300 }, + [2] = { 50.6, 32.3, 8, 300 }, + [3] = { 44, 31.3, 8, 300 }, + [4] = { 56.6, 30.7, 8, 300 }, + [5] = { 53.7, 30.6, 8, 300 }, + [6] = { 48.7, 30.4, 8, 300 }, + [7] = { 54.8, 30, 8, 300 }, + [8] = { 59.9, 28.2, 8, 300 }, + [9] = { 56.8, 27.3, 8, 300 }, + }, + ["lvl"] = "35-36", + }, + [758] = { + ["coords"] = {}, + ["lvl"] = "28", + }, + [759] = { + ["coords"] = { + [1] = { 55.2, 30.3, 8, 300 }, + [2] = { 55.8, 29.1, 8, 300 }, + [3] = { 57.9, 26.2, 8, 300 }, + [4] = { 55.2, 25.1, 8, 300 }, + [5] = { 56.8, 25.1, 8, 300 }, + [6] = { 57.8, 24.8, 8, 300 }, + [7] = { 57.3, 24.6, 8, 300 }, + [8] = { 62.8, 24, 8, 300 }, + [9] = { 57.7, 24, 8, 300 }, + [10] = { 62, 23.5, 8, 300 }, + [11] = { 64.7, 23.1, 8, 300 }, + [12] = { 61.8, 22.7, 8, 300 }, + }, + ["lvl"] = "36-37", + }, + [760] = { + ["coords"] = { + [1] = { 55.9, 34.4, 8, 300 }, + [2] = { 55.8, 34.1, 8, 300 }, + [3] = { 56.1, 31.9, 8, 300 }, + [4] = { 57.7, 29.9, 8, 300 }, + [5] = { 58.4, 28.5, 8, 300 }, + [6] = { 60.9, 28.4, 8, 300 }, + [7] = { 62.3, 26.7, 8, 300 }, + [8] = { 64.5, 26, 8, 300 }, + [9] = { 61.2, 25.3, 8, 300 }, + [10] = { 59.3, 24, 8, 300 }, + [11] = { 63.7, 21.6, 8, 300 }, + [12] = { 62.2, 19.4, 8, 300 }, + [13] = { 63.7, 17.4, 8, 300 }, + }, + ["lvl"] = "36-37", + }, + [761] = { + ["coords"] = { + [1] = { 60.9, 23.9, 8, 300 }, + [2] = { 64.1, 23.2, 8, 300 }, + [3] = { 64.2, 22.6, 8, 300 }, + [4] = { 60.4, 22.2, 8, 300 }, + [5] = { 61.9, 20.9, 8, 300 }, + [6] = { 65.1, 20.4, 8, 300 }, + }, + ["lvl"] = "37-38", + }, + [762] = { + ["coords"] = { + [1] = { 60.9, 23.9, 8, 300 }, + [2] = { 64.1, 23.2, 8, 300 }, + [3] = { 64.2, 22.6, 8, 300 }, + [4] = { 60.4, 22.2, 8, 300 }, + [5] = { 61.9, 20.9, 8, 300 }, + [6] = { 65.1, 20.4, 8, 300 }, + }, + ["lvl"] = "37-38", + }, + [763] = { + ["coords"] = { + [1] = { 62, 21.2, 8, 37800 }, + }, + ["lvl"] = "39", + ["rnk"] = "4", + }, + [764] = { + ["coords"] = { + [1] = { 15.8, 40.9, 8, 300 }, + [2] = { 16.9, 38.8, 8, 300 }, + [3] = { 11.4, 38.8, 8, 300 }, + [4] = { 14.9, 38.7, 8, 300 }, + [5] = { 46.6, 37, 8, 300 }, + [6] = { 13, 36.9, 8, 300 }, + [7] = { 15.7, 36.6, 8, 300 }, + [8] = { 51.2, 36.5, 8, 300 }, + [9] = { 49.3, 35.7, 8, 300 }, + [10] = { 14.4, 34.7, 8, 300 }, + [11] = { 54.7, 32.1, 8, 300 }, + }, + ["lvl"] = "38-39", + }, + [765] = { + ["coords"] = { + [1] = { 10.1, 36.6, 8, 300 }, + [2] = { 11.4, 34.7, 8, 300 }, + [3] = { 8.4, 34.5, 8, 300 }, + [4] = { 12.9, 32.6, 8, 300 }, + [5] = { 10.1, 32.3, 8, 300 }, + [6] = { 11.2, 30.6, 8, 300 }, + [7] = { 8.6, 30.3, 8, 300 }, + [8] = { 13, 36.9, 8, 300 }, + }, + ["lvl"] = "39-40", + }, + [766] = { + ["coords"] = { + [1] = { 77.2, 81.1, 8, 300 }, + [2] = { 77.5, 77.6, 8, 300 }, + [3] = { 72.4, 73.6, 8, 300 }, + [4] = { 76.8, 73.1, 8, 300 }, + [5] = { 83.8, 72.9, 8, 300 }, + [6] = { 78.8, 71.9, 8, 300 }, + [7] = { 74.1, 71.5, 8, 300 }, + [8] = { 85.1, 67.3, 8, 300 }, + [9] = { 58.3, 55.5, 8, 300 }, + [10] = { 57.3, 50.4, 8, 300 }, + [11] = { 59, 45.4, 8, 300 }, + [12] = { 57.1, 41.5, 8, 300 }, + [13] = { 60.5, 36.2, 8, 300 }, + [14] = { 58, 35.9, 8, 300 }, + [15] = { 62.8, 33.7, 8, 300 }, + [16] = { 68.1, 32.1, 8, 300 }, + [17] = { 73.6, 31.6, 8, 300 }, + [18] = { 76.8, 30.9, 8, 300 }, + [19] = { 73.8, 27.1, 8, 300 }, + [20] = { 67.5, 24.5, 8, 300 }, + [21] = { 71.3, 23.5, 8, 300 }, + [22] = { 10.1, 36.6, 8, 300 }, + [23] = { 11.4, 34.7, 8, 300 }, + [24] = { 8.4, 34.5, 8, 300 }, + [25] = { 12.9, 32.6, 8, 300 }, + [26] = { 10.1, 32.3, 8, 300 }, + [27] = { 11.2, 30.6, 8, 300 }, + [28] = { 8.6, 30.3, 8, 300 }, + }, + ["lvl"] = "40-41", + }, + [767] = { + ["coords"] = { + [1] = { 27.2, 64, 8, 300 }, + [2] = { 26, 60.8, 8, 300 }, + [3] = { 16.7, 60.1, 8, 300 }, + [4] = { 23.5, 60.1, 8, 300 }, + [5] = { 12.1, 59.5, 8, 300 }, + [6] = { 22.4, 57.9, 8, 300 }, + [7] = { 35.6, 54.3, 8, 300 }, + [8] = { 33.7, 54, 8, 300 }, + [9] = { 30, 52.5, 8, 300 }, + [10] = { 31.9, 50, 8, 300 }, + [11] = { 36.5, 48.4, 8, 300 }, + [12] = { 26, 47.5, 8, 300 }, + [13] = { 39.1, 47.3, 8, 300 }, + [14] = { 14.6, 46.1, 8, 300 }, + [15] = { 40.4, 45.3, 8, 300 }, + [16] = { 55.5, 45.2, 8, 300 }, + [17] = { 37.2, 45.2, 8, 300 }, + [18] = { 43.3, 45.1, 8, 300 }, + [19] = { 56.9, 43.8, 8, 300 }, + [20] = { 28.7, 43.6, 8, 300 }, + [21] = { 44.7, 43.4, 8, 300 }, + [22] = { 41.9, 43.4, 8, 300 }, + [23] = { 33.2, 43.2, 8, 300 }, + [24] = { 20.2, 42.8, 8, 300 }, + [25] = { 23.1, 42.4, 8, 300 }, + [26] = { 53.8, 41.6, 8, 300 }, + [27] = { 43.8, 41.4, 8, 300 }, + [28] = { 25.3, 41.3, 8, 300 }, + [29] = { 40.1, 41, 8, 300 }, + [30] = { 47.5, 40.5, 8, 300 }, + [31] = { 36.9, 39.9, 8, 300 }, + [32] = { 27, 39.6, 8, 300 }, + [33] = { 39, 39.2, 8, 300 }, + [34] = { 36.4, 39.2, 8, 300 }, + [35] = { 41, 38.8, 8, 300 }, + [36] = { 23.5, 38.7, 8, 300 }, + [37] = { 53.2, 38.4, 8, 300 }, + [38] = { 37.6, 37.1, 8, 300 }, + [39] = { 40.3, 36.8, 8, 300 }, + [40] = { 33.2, 35, 8, 300 }, + [41] = { 26.4, 34.3, 8, 300 }, + [42] = { 29.1, 34.1, 8, 300 }, + [43] = { 39.9, 31.3, 8, 300 }, + [44] = { 37.4, 30.9, 8, 300 }, + [45] = { 34.7, 30.3, 8, 300 }, + [46] = { 31.7, 29.4, 8, 300 }, + }, + ["lvl"] = "36-37", + }, + [768] = { + ["coords"] = { + [1] = { 65.4, 67.9, 8, 300 }, + [2] = { 83.8, 59, 8, 300 }, + [3] = { 90.6, 49, 8, 300 }, + [4] = { 93, 44.6, 8, 300 }, + [5] = { 88.6, 36.3, 8, 300 }, + [6] = { 87.8, 31.4, 8, 300 }, + [7] = { 87.3, 28.6, 8, 300 }, + [8] = { 69.9, 26.3, 8, 300 }, + [9] = { 74.1, 25.3, 8, 300 }, + [10] = { 69.3, 11.6, 8, 300 }, + [11] = { 70.6, 11, 8, 300 }, + [12] = { 71, 10.5, 8, 300 }, + }, + ["lvl"] = "39-40", + }, + [769] = { + ["coords"] = { + [1] = { 81.1, 89.1, 8, 300 }, + [2] = { 76.2, 88.9, 8, 300 }, + [3] = { 76.9, 86.7, 8, 300 }, + [4] = { 77.4, 86, 8, 300 }, + [5] = { 80.2, 83.9, 8, 300 }, + [6] = { 75, 82.9, 8, 300 }, + [7] = { 72.8, 82.8, 8, 300 }, + [8] = { 73.2, 80.2, 8, 300 }, + [9] = { 70.2, 79.9, 8, 300 }, + [10] = { 72.8, 79.9, 8, 300 }, + [11] = { 67.4, 78.9, 8, 300 }, + [12] = { 76.5, 77.4, 8, 300 }, + [13] = { 65.3, 69.9, 8, 300 }, + [14] = { 66, 69.6, 8, 300 }, + [15] = { 60.6, 68.9, 8, 300 }, + [16] = { 71.3, 68.8, 8, 300 }, + [17] = { 60.9, 68.7, 8, 300 }, + [18] = { 67.8, 68.4, 8, 300 }, + [19] = { 62.9, 67.6, 8, 300 }, + [20] = { 69.4, 67.5, 8, 300 }, + [21] = { 63.7, 66.4, 8, 300 }, + [22] = { 59.6, 65.9, 8, 300 }, + [23] = { 56.5, 65.7, 8, 300 }, + [24] = { 62.1, 65.5, 8, 300 }, + [25] = { 61.9, 65.3, 8, 300 }, + [26] = { 65.5, 65.1, 8, 300 }, + [27] = { 56.9, 64.4, 8, 300 }, + [28] = { 59.3, 63.6, 8, 300 }, + [29] = { 58, 62.5, 8, 300 }, + [30] = { 55.4, 62.3, 8, 300 }, + [31] = { 56.9, 62.1, 8, 300 }, + [32] = { 55.9, 62.1, 8, 300 }, + [33] = { 60.6, 62.1, 8, 300 }, + [34] = { 60.5, 61.9, 8, 300 }, + [35] = { 56.4, 61.8, 8, 300 }, + [36] = { 56.4, 61, 8, 300 }, + [37] = { 60.5, 60.3, 8, 300 }, + [38] = { 59.4, 60.2, 8, 300 }, + }, + ["lvl"] = "40-41", + }, + [770] = { + ["coords"] = { + [1] = { 37.7, 3.3, 33, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [771] = { + ["coords"] = { + [1] = { 18, 37.9, 10, 18000 }, + }, + ["lvl"] = "32", + ["rnk"] = "4", + }, + [772] = { + ["coords"] = { + [1] = { 39.3, 45.5, 33, 300 }, + [2] = { 37.3, 45.2, 33, 300 }, + [3] = { 39.6, 44.2, 33, 300 }, + [4] = { 39.6, 42.6, 33, 300 }, + [5] = { 39.5, 41.7, 33, 300 }, + [6] = { 39.2, 41.1, 33, 300 }, + [7] = { 40.3, 41, 33, 300 }, + [8] = { 41.2, 40.9, 33, 300 }, + [9] = { 39.8, 40.7, 33, 300 }, + [10] = { 40.7, 40.2, 33, 300 }, + [11] = { 39.1, 39.9, 33, 300 }, + [12] = { 41.3, 39.8, 33, 300 }, + [13] = { 40.3, 39.6, 33, 300 }, + [14] = { 38.1, 39.3, 33, 300 }, + [15] = { 36.5, 39.1, 33, 300 }, + [16] = { 42, 38.9, 33, 300 }, + [17] = { 37.2, 38.9, 33, 300 }, + [18] = { 38.7, 38.6, 33, 300 }, + [19] = { 41.4, 38.2, 33, 300 }, + [20] = { 42.2, 38.1, 33, 300 }, + [21] = { 35.5, 38, 33, 300 }, + [22] = { 39.2, 37.9, 33, 300 }, + [23] = { 36.6, 37.8, 33, 300 }, + [24] = { 40.5, 37.7, 33, 300 }, + [25] = { 39.9, 37.6, 33, 300 }, + [26] = { 38.7, 37.2, 33, 300 }, + [27] = { 36.2, 37.2, 33, 300 }, + [28] = { 38.2, 37.1, 33, 300 }, + [29] = { 35.2, 37, 33, 300 }, + [30] = { 37.6, 36.4, 33, 300 }, + [31] = { 41.2, 36.3, 33, 300 }, + [32] = { 35.6, 36.2, 33, 300 }, + [33] = { 36.5, 36.1, 33, 300 }, + [34] = { 38.6, 35.7, 33, 300 }, + [35] = { 36.1, 35.6, 33, 300 }, + [36] = { 37.2, 35.6, 33, 300 }, + [37] = { 39.6, 35.5, 33, 300 }, + [38] = { 39.2, 34.8, 33, 300 }, + [39] = { 36.6, 34.8, 33, 300 }, + [40] = { 41.3, 34.8, 33, 300 }, + [41] = { 38.3, 34.7, 33, 300 }, + [42] = { 36, 33.9, 33, 300 }, + [43] = { 39.4, 33.3, 33, 300 }, + [44] = { 37.7, 33.2, 33, 300 }, + [45] = { 38.7, 32.9, 33, 300 }, + [46] = { 40.3, 31.7, 33, 300 }, + [47] = { 47, 29.6, 33, 300 }, + [48] = { 46.5, 28.4, 33, 300 }, + [49] = { 48, 27.8, 33, 300 }, + [50] = { 47, 27.7, 33, 300 }, + [51] = { 45.9, 27.7, 33, 300 }, + [52] = { 47.6, 27.4, 33, 300 }, + [53] = { 46.4, 26.9, 33, 300 }, + [54] = { 46.5, 26.9, 33, 300 }, + [55] = { 45.5, 26.8, 33, 300 }, + [56] = { 46.1, 26.2, 33, 300 }, + [57] = { 49.7, 25.5, 33, 300 }, + [58] = { 45.5, 25.3, 33, 300 }, + [59] = { 50.2, 24.7, 33, 300 }, + [60] = { 49.2, 24.6, 33, 300 }, + [61] = { 49.7, 24.1, 33, 300 }, + [62] = { 48.9, 23.9, 33, 300 }, + [63] = { 49.2, 23.1, 33, 300 }, + [64] = { 47.2, 23.1, 33, 300 }, + [65] = { 48.1, 23.1, 33, 300 }, + [66] = { 50.2, 23, 33, 300 }, + [67] = { 46.4, 22.5, 33, 300 }, + [68] = { 47.7, 22.3, 33, 300 }, + [69] = { 48.7, 22.2, 33, 300 }, + [70] = { 50.3, 21.8, 33, 300 }, + [71] = { 49.2, 21.6, 33, 300 }, + [72] = { 48.1, 21.5, 33, 300 }, + [73] = { 49.7, 20.7, 33, 300 }, + [74] = { 48.6, 20.7, 33, 300 }, + [75] = { 50.7, 20.6, 33, 300 }, + [76] = { 49.3, 20.4, 33, 300 }, + [77] = { 48.1, 20.2, 33, 300 }, + }, + ["lvl"] = "37-38", + }, + [773] = { + ["coords"] = { + [1] = { 26.9, 77.2, 33, 300 }, + }, + ["lvl"] = "35", + }, + [775] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "32-33", + }, + [777] = { + ["coords"] = { + [1] = { 29.1, 47.3, 44, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [780] = { + ["coords"] = { + [1] = { 47.1, 41.8, 33, 300 }, + [2] = { 48.4, 41.7, 33, 300 }, + [3] = { 48.5, 41.6, 33, 300 }, + [4] = { 47.6, 41.1, 33, 300 }, + [5] = { 48.5, 40.9, 33, 300 }, + [6] = { 46.6, 40.4, 33, 300 }, + [7] = { 46, 40.3, 33, 300 }, + [8] = { 45, 40.3, 33, 300 }, + [9] = { 48.6, 40.2, 33, 300 }, + [10] = { 43.8, 40.2, 33, 300 }, + [11] = { 44.1, 40.1, 33, 300 }, + [12] = { 47.3, 39.9, 33, 300 }, + [13] = { 47, 39.8, 33, 300 }, + [14] = { 47.5, 39.8, 33, 300 }, + [15] = { 44.3, 39.7, 33, 300 }, + [16] = { 48.1, 39.5, 33, 300 }, + [17] = { 43.4, 39.5, 33, 300 }, + [18] = { 47.1, 39.5, 33, 300 }, + [19] = { 44.2, 39.5, 33, 300 }, + [20] = { 43.8, 39.4, 33, 300 }, + [21] = { 46.5, 39.1, 33, 300 }, + [22] = { 46.6, 38.9, 33, 300 }, + [23] = { 46.5, 38.8, 33, 300 }, + [24] = { 47.6, 38.8, 33, 300 }, + [25] = { 47.2, 38.6, 33, 300 }, + [26] = { 46, 37.9, 33, 300 }, + [27] = { 45, 37.9, 33, 300 }, + [28] = { 48.8, 37.5, 33, 300 }, + [29] = { 44, 37.2, 33, 300 }, + [30] = { 43.4, 36.4, 33, 300 }, + [31] = { 42.1, 36.3, 33, 300 }, + [32] = { 41.9, 36.3, 33, 300 }, + [33] = { 42.3, 36.1, 33, 300 }, + [34] = { 41.9, 36, 33, 300 }, + [35] = { 42.2, 35.8, 33, 300 }, + [36] = { 44, 35.4, 33, 300 }, + [37] = { 42.4, 35.3, 33, 300 }, + [38] = { 42.8, 35.1, 33, 300 }, + [39] = { 42.4, 35, 33, 300 }, + [40] = { 43.4, 34.8, 33, 300 }, + [41] = { 43.9, 34.4, 33, 300 }, + [42] = { 47.1, 34.1, 33, 300 }, + [43] = { 45, 34, 33, 300 }, + [44] = { 42.5, 33.3, 33, 300 }, + [45] = { 47.6, 33.3, 33, 300 }, + [46] = { 43.5, 33, 33, 300 }, + [47] = { 47.1, 32.5, 33, 300 }, + [48] = { 46.2, 32.5, 33, 300 }, + [49] = { 46, 32.3, 33, 300 }, + [50] = { 45.2, 32.3, 33, 300 }, + [51] = { 46, 32, 33, 300 }, + [52] = { 46.2, 32, 33, 300 }, + [53] = { 46.4, 32, 33, 300 }, + [54] = { 45.5, 31.7, 33, 300 }, + [55] = { 46.5, 31.4, 33, 300 }, + [56] = { 46.6, 30.1, 33, 300 }, + }, + ["lvl"] = "39-40", + }, + [781] = { + ["coords"] = { + [1] = { 43.6, 45.6, 33, 300 }, + [2] = { 46.1, 44.7, 33, 300 }, + [3] = { 47.9, 43.7, 33, 300 }, + [4] = { 47.9, 43.1, 33, 300 }, + [5] = { 47.6, 42.9, 33, 300 }, + [6] = { 47.7, 42.5, 33, 300 }, + [7] = { 47.5, 43.7, 33, 300 }, + }, + ["lvl"] = "43-44", + }, + [782] = { + ["coords"] = { + [1] = { 45, 44.3, 33, 300 }, + [2] = { 44.6, 43.7, 33, 300 }, + [3] = { 45.8, 43.5, 33, 300 }, + [4] = { 46, 43.1, 33, 300 }, + [5] = { 45.8, 43, 33, 300 }, + [6] = { 46.2, 42.9, 33, 300 }, + [7] = { 45.6, 42.8, 33, 300 }, + [8] = { 44.4, 42.7, 33, 300 }, + [9] = { 46.2, 42.6, 33, 300 }, + [10] = { 46, 42.6, 33, 300 }, + [11] = { 45.9, 42.5, 33, 300 }, + [12] = { 45.6, 42.2, 33, 300 }, + [13] = { 44.3, 42.2, 33, 300 }, + [14] = { 46, 42.1, 33, 300 }, + [15] = { 44.6, 42, 33, 300 }, + [16] = { 45, 41.8, 33, 300 }, + [17] = { 44.5, 41.8, 33, 300 }, + [18] = { 45.8, 41.8, 33, 300 }, + [19] = { 44.9, 41.7, 33, 300 }, + [20] = { 44.3, 41.7, 33, 300 }, + [21] = { 44.6, 41.6, 33, 300 }, + [22] = { 45, 41.6, 33, 300 }, + [23] = { 47.4, 41.4, 33, 300 }, + [24] = { 48.3, 41.1, 33, 300 }, + [25] = { 44.5, 40.9, 33, 300 }, + [26] = { 45, 39.6, 33, 300 }, + [27] = { 47.4, 39, 33, 300 }, + [28] = { 45.6, 38.6, 33, 300 }, + }, + ["lvl"] = "41-42", + }, + [783] = { + ["coords"] = { + [1] = { 46.9, 45.1, 33, 300 }, + [2] = { 44.2, 44.8, 33, 300 }, + [3] = { 46.5, 44.7, 33, 300 }, + [4] = { 43.2, 44.3, 33, 300 }, + [5] = { 48, 44.3, 33, 300 }, + [6] = { 47.5, 44.3, 33, 300 }, + [7] = { 47.7, 44.3, 33, 300 }, + [8] = { 47.2, 44, 33, 300 }, + [9] = { 47.8, 43.7, 33, 300 }, + [10] = { 47.9, 43.1, 33, 300 }, + [11] = { 47.8, 43, 33, 300 }, + }, + ["lvl"] = "43-44", + }, + [784] = { + ["coords"] = { + [1] = { 45, 44.3, 33, 300 }, + [2] = { 44.6, 43.7, 33, 300 }, + [3] = { 45.8, 43.5, 33, 300 }, + [4] = { 46, 43.1, 33, 300 }, + [5] = { 45.8, 43, 33, 300 }, + [6] = { 46.2, 42.9, 33, 300 }, + [7] = { 45.6, 42.8, 33, 300 }, + [8] = { 44.4, 42.7, 33, 300 }, + [9] = { 46.2, 42.6, 33, 300 }, + [10] = { 46, 42.6, 33, 300 }, + [11] = { 45.9, 42.5, 33, 300 }, + [12] = { 45.6, 42.2, 33, 300 }, + [13] = { 44.3, 42.2, 33, 300 }, + [14] = { 46, 42.1, 33, 300 }, + [15] = { 44.6, 42, 33, 300 }, + [16] = { 45, 41.8, 33, 300 }, + [17] = { 44.5, 41.8, 33, 300 }, + [18] = { 45.8, 41.8, 33, 300 }, + [19] = { 44.9, 41.7, 33, 300 }, + [20] = { 44.3, 41.7, 33, 300 }, + [21] = { 44.6, 41.6, 33, 300 }, + [22] = { 45, 41.6, 33, 300 }, + [23] = { 47.4, 41.4, 33, 300 }, + [24] = { 48.3, 41.1, 33, 300 }, + [25] = { 44.5, 40.9, 33, 300 }, + [26] = { 45, 39.6, 33, 300 }, + [27] = { 47.4, 39, 33, 300 }, + [28] = { 45.6, 38.6, 33, 300 }, + }, + ["lvl"] = "41-42", + }, + [785] = { + ["coords"] = { + [1] = { 16, 38.8, 10, 300 }, + [2] = { 16.8, 37.8, 10, 300 }, + [3] = { 17.2, 37.3, 10, 300 }, + [4] = { 16, 37.2, 10, 300 }, + [5] = { 15.1, 36.8, 10, 300 }, + [6] = { 13.7, 36.2, 10, 300 }, + [7] = { 18.3, 35.7, 10, 300 }, + [8] = { 17.8, 35.5, 10, 300 }, + [9] = { 17.4, 35.5, 10, 300 }, + [10] = { 16, 34.6, 10, 300 }, + [11] = { 13.8, 34.5, 10, 300 }, + [12] = { 13.5, 33.4, 10, 300 }, + [13] = { 16.9, 33.2, 10, 300 }, + [14] = { 16.3, 32.7, 10, 300 }, + [15] = { 14.1, 32.6, 10, 300 }, + [16] = { 16.1, 31.4, 10, 300 }, + [17] = { 16.8, 30.1, 10, 300 }, + [18] = { 16.8, 28.6, 10, 300 }, + [19] = { 17.2, 28.1, 10, 300 }, + }, + ["lvl"] = "28-29", + }, + [786] = { + ["coords"] = { + [1] = { 25.1, 75.7, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [787] = { + ["coords"] = { + [1] = { 16, 40.9, 10, 300 }, + [2] = { 14.8, 40.5, 10, 300 }, + [3] = { 16.8, 40.4, 10, 300 }, + [4] = { 17, 38.9, 10, 300 }, + [5] = { 17.5, 37.7, 10, 300 }, + [6] = { 16.9, 37.3, 10, 300 }, + [7] = { 14, 36.4, 10, 300 }, + [8] = { 13.3, 36.2, 10, 300 }, + [9] = { 16.7, 35.1, 10, 300 }, + [10] = { 14.9, 34.2, 10, 300 }, + [11] = { 16.3, 32.1, 10, 300 }, + [12] = { 16.9, 29, 10, 300 }, + [13] = { 19.8, 26.7, 10, 300 }, + }, + ["lvl"] = "26-27", + }, + [789] = { + ["coords"] = { + [1] = { 27.1, 45.5, 44, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [790] = { + ["coords"] = { + [1] = { 29.9, 47.4, 44, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "22", + }, + [791] = { + ["coords"] = { + [1] = { 28.8, 47.3, 44, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [793] = { + ["coords"] = { + [1] = { 30.6, 46.5, 44, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [794] = { + ["coords"] = { + [1] = { 47.6, 62.6, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [795] = { + ["coords"] = { + [1] = { 40.5, 64.2, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [796] = { + ["coords"] = { + [1] = { 40.5, 64.1, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [797] = { + ["coords"] = { + [1] = { 40.5, 64.2, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [798] = { + ["coords"] = { + [1] = { 80.6, 65.2, 12, 1409 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [799] = { + ["coords"] = { + [1] = { 80.5, 65.2, 12, 477 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [800] = { + ["coords"] = { + [1] = { 81, 65.7, 12, 477 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [801] = { + ["coords"] = { + [1] = { 79.3, 69, 12, 477 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [802] = { + ["coords"] = { + [1] = { 80.9, 65.7, 12, 1409 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [804] = { + ["coords"] = { + [1] = { 46.1, 61.9, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [805] = { + ["coords"] = { + [1] = { 46.1, 61.9, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [806] = { + ["coords"] = { + [1] = { 46.1, 62, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [807] = { + ["coords"] = { + [1] = { 46.2, 62, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [808] = { + ["coords"] = { + [1] = { 30.5, 80.2, 1, 270 }, + }, + ["lvl"] = "5", + }, + [809] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "24", + }, + [810] = { + ["coords"] = { + [1] = { 46.2, 61.9, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [811] = { + ["coords"] = { + [1] = { 46.2, 61.8, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [812] = { + ["coords"] = { + [1] = { 21.7, 45.8, 44, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [813] = { + ["coords"] = { + [1] = { 49.9, 4, 33, 300 }, + }, + ["lvl"] = "40", + ["rnk"] = "1", + }, + [814] = { + ["coords"] = { + [1] = { 47.3, 5.7, 33, 300 }, + }, + ["lvl"] = "38", + }, + [815] = { + ["coords"] = {}, + ["lvl"] = "35", + }, + [818] = { + ["coords"] = { + [1] = { 52.9, 27.6, 33, 240 }, + }, + ["lvl"] = "47", + ["rnk"] = "1", + }, + [819] = { + ["coords"] = { + [1] = { 79, 49.6, 44, 300 }, + [2] = { 78.8, 49.3, 44, 300 }, + [3] = { 80.2, 48.9, 44, 300 }, + [4] = { 80.2, 48.7, 44, 300 }, + [5] = { 79.1, 48.4, 44, 300 }, + [6] = { 80.1, 48.3, 44, 300 }, + [7] = { 79.6, 48.2, 44, 300 }, + [8] = { 79.7, 47.9, 44, 300 }, + [9] = { 79.6, 47.8, 44, 300 }, + [10] = { 78.9, 47.7, 44, 300 }, + [11] = { 79.2, 47.4, 44, 300 }, + }, + ["lvl"] = "24-25", + }, + [820] = { + ["coords"] = { + [1] = { 56.7, 47.3, 40, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [821] = { + ["coords"] = { + [1] = { 56.4, 47.6, 40, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "33", + }, + [822] = { + ["coords"] = { + [1] = { 25.5, 90.7, 12, 270 }, + [2] = { 38.3, 89.4, 12, 270 }, + [3] = { 36.3, 89.2, 12, 270 }, + [4] = { 45.9, 85.1, 12, 270 }, + [5] = { 53.5, 84.7, 12, 270 }, + [6] = { 83.5, 84.7, 12, 270 }, + [7] = { 24.5, 83.4, 12, 270 }, + [8] = { 79.8, 83.3, 12, 270 }, + [9] = { 49.2, 82.8, 12, 270 }, + [10] = { 28.8, 81.6, 12, 270 }, + [11] = { 43.3, 81.2, 12, 270 }, + [12] = { 87.8, 81.1, 12, 270 }, + [13] = { 72.9, 80.9, 12, 270 }, + [14] = { 47, 79.7, 12, 270 }, + [15] = { 60.2, 79.5, 12, 270 }, + [16] = { 63.2, 79.2, 12, 270 }, + [17] = { 78.1, 79.2, 12, 270 }, + [18] = { 60.8, 79.1, 12, 270 }, + [19] = { 66.1, 78.8, 12, 270 }, + [20] = { 86.4, 78.5, 12, 270 }, + [21] = { 45, 78.1, 12, 270 }, + [22] = { 88.9, 77.5, 12, 270 }, + [23] = { 81.1, 77.2, 12, 270 }, + [24] = { 63.1, 77.1, 12, 270 }, + [25] = { 48.3, 76.8, 12, 270 }, + [26] = { 77.2, 76.7, 12, 270 }, + [27] = { 56.9, 75.9, 12, 270 }, + [28] = { 49.2, 75.9, 12, 270 }, + [29] = { 46.3, 75.8, 12, 270 }, + [30] = { 22.4, 75.8, 12, 270 }, + [31] = { 53.9, 75.5, 12, 270 }, + [32] = { 70.6, 74.9, 12, 270 }, + [33] = { 87.2, 69.3, 12, 270 }, + [34] = { 75.8, 67.5, 12, 270 }, + [35] = { 59.1, 66.9, 12, 270 }, + [36] = { 74.6, 66.8, 12, 270 }, + [37] = { 68.6, 66.3, 12, 270 }, + [38] = { 62.9, 65.9, 12, 270 }, + [39] = { 88.3, 65.7, 12, 270 }, + [40] = { 86.5, 65.2, 12, 270 }, + [41] = { 86.8, 64.5, 12, 270 }, + [42] = { 68.9, 63.9, 12, 270 }, + [43] = { 86.2, 63.2, 12, 270 }, + [44] = { 64.7, 63, 12, 270 }, + [45] = { 77.9, 61.7, 12, 270 }, + [46] = { 78.7, 61.4, 12, 270 }, + [47] = { 71.3, 61.3, 12, 270 }, + [48] = { 82.2, 59.2, 12, 270 }, + }, + ["lvl"] = "8-9", + }, + [823] = { + ["coords"] = { + [1] = { 48.2, 42.9, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "18", + }, + [824] = { + ["coords"] = { + [1] = { 41.6, 78.9, 40, 300 }, + [2] = { 42.7, 78.3, 40, 300 }, + [3] = { 43.7, 78, 40, 300 }, + [4] = { 42.2, 78, 40, 300 }, + [5] = { 41.8, 77.8, 40, 300 }, + [6] = { 41.2, 77.8, 40, 300 }, + [7] = { 43.8, 77.5, 40, 300 }, + [8] = { 43.4, 77.5, 40, 300 }, + [9] = { 41, 77.3, 40, 300 }, + [10] = { 42.8, 77.1, 40, 300 }, + [11] = { 43.2, 77.1, 40, 300 }, + [12] = { 44.2, 77.1, 40, 300 }, + [13] = { 43.5, 77, 40, 300 }, + [14] = { 42.5, 76.9, 40, 300 }, + [15] = { 42.2, 76.8, 40, 300 }, + [16] = { 41.5, 76.8, 40, 300 }, + [17] = { 41.9, 76.6, 40, 300 }, + [18] = { 43.7, 76.5, 40, 300 }, + [19] = { 41, 76.5, 40, 300 }, + [20] = { 42.8, 76.5, 40, 300 }, + [21] = { 41.5, 76.2, 40, 300 }, + [22] = { 41.8, 75.8, 40, 300 }, + [23] = { 42.7, 75.7, 40, 300 }, + [24] = { 41.2, 75.7, 40, 300 }, + [25] = { 42.3, 75.6, 40, 300 }, + [26] = { 41.5, 75.3, 40, 300 }, + [27] = { 41.9, 75, 40, 300 }, + [28] = { 42.5, 74.9, 40, 300 }, + [29] = { 43, 74.8, 40, 300 }, + [30] = { 41.4, 74.7, 40, 300 }, + [31] = { 43.4, 74.6, 40, 300 }, + [32] = { 42.2, 74.4, 40, 300 }, + [33] = { 42.9, 74.2, 40, 300 }, + [34] = { 43.6, 74.2, 40, 300 }, + [35] = { 44, 74, 40, 300 }, + [36] = { 43, 73.7, 40, 300 }, + [37] = { 43.7, 73.5, 40, 300 }, + [38] = { 43, 72.4, 40, 300 }, + [39] = { 42.4, 72.4, 40, 300 }, + [40] = { 42.8, 72.1, 40, 300 }, + }, + ["lvl"] = "15-16", + }, + [826] = { + ["coords"] = { + [1] = { 77, 47.1, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "39", + }, + [827] = { + ["coords"] = { + [1] = { 74.2, 50.5, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "38", + }, + [828] = { + ["coords"] = { + [1] = { 76.4, 46.5, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "38", + }, + [829] = { + ["coords"] = { + [1] = { 30.1, 71.6, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [830] = { + ["coords"] = { + [1] = { 39.6, 12.9, 40, 300 }, + [2] = { 40, 12.2, 40, 300 }, + [3] = { 39.6, 12.2, 40, 300 }, + [4] = { 40.9, 12, 40, 300 }, + [5] = { 49.8, 11.8, 40, 300 }, + [6] = { 40.1, 11.6, 40, 300 }, + [7] = { 40.7, 11.5, 40, 300 }, + [8] = { 41.2, 11.3, 40, 300 }, + [9] = { 50.7, 11, 40, 300 }, + [10] = { 50.3, 11, 40, 300 }, + [11] = { 46.7, 10.6, 40, 300 }, + [12] = { 47.5, 10.6, 40, 300 }, + [13] = { 49.9, 10.4, 40, 300 }, + [14] = { 47.9, 10.3, 40, 300 }, + [15] = { 50.5, 10.3, 40, 300 }, + [16] = { 46.4, 10.2, 40, 300 }, + [17] = { 46.1, 9.6, 40, 300 }, + }, + ["lvl"] = "13-14", + }, + [831] = { + ["coords"] = { + [1] = { 31.1, 24.2, 40, 300 }, + [2] = { 31.6, 24.1, 40, 300 }, + [3] = { 31.9, 23.3, 40, 300 }, + [4] = { 31.4, 23.3, 40, 300 }, + [5] = { 32.3, 22.7, 40, 300 }, + [6] = { 31.8, 22.6, 40, 300 }, + [7] = { 32.6, 22, 40, 300 }, + [8] = { 33, 21.8, 40, 300 }, + [9] = { 32.5, 21.4, 40, 300 }, + [10] = { 34.9, 18.5, 40, 300 }, + [11] = { 36, 16.7, 40, 300 }, + [12] = { 36.6, 16.2, 40, 300 }, + }, + ["lvl"] = "15-16", + }, + [832] = { + ["coords"] = { + [1] = { 68.5, 73.5, 40, 300 }, + [2] = { 34.3, 68, 40, 300 }, + [3] = { 38.2, 62.3, 40, 300 }, + [4] = { 41.8, 59.4, 40, 300 }, + [5] = { 62.8, 52.2, 40, 300 }, + [6] = { 46.6, 49.8, 40, 300 }, + [7] = { 33.5, 49.6, 40, 300 }, + [8] = { 45.6, 49.3, 40, 300 }, + [9] = { 33.3, 49.3, 40, 300 }, + [10] = { 42.8, 42, 40, 300 }, + [11] = { 54.3, 40.7, 40, 300 }, + [12] = { 60.8, 35, 40, 300 }, + [13] = { 35.4, 34.9, 40, 300 }, + [14] = { 35.6, 34.8, 40, 300 }, + [15] = { 60.4, 33.8, 40, 300 }, + [16] = { 40.1, 22.1, 40, 300 }, + }, + ["lvl"] = "18-19", + }, + [833] = { + ["coords"] = { + [1] = { 35.2, 42.7, 40, 300 }, + [2] = { 62.3, 42, 40, 300 }, + [3] = { 32.6, 40.2, 40, 300 }, + [4] = { 35, 39.1, 40, 300 }, + [5] = { 30.5, 38.2, 40, 300 }, + [6] = { 36.5, 36.5, 40, 300 }, + [7] = { 60.1, 36.4, 40, 300 }, + [8] = { 30.5, 36.4, 40, 300 }, + [9] = { 52, 35.1, 40, 300 }, + [10] = { 36, 33.6, 40, 300 }, + [11] = { 61.9, 32.2, 40, 300 }, + [12] = { 33.3, 31.6, 40, 300 }, + [13] = { 33, 30.3, 40, 300 }, + [14] = { 35.9, 29.8, 40, 300 }, + [15] = { 41.7, 26.7, 40, 300 }, + [16] = { 39.7, 26.5, 40, 300 }, + [17] = { 41.1, 26.2, 40, 300 }, + [18] = { 37.3, 25.1, 40, 300 }, + [19] = { 61.8, 23.4, 40, 300 }, + [20] = { 46.4, 20.5, 40, 300 }, + [21] = { 41.1, 18.1, 40, 300 }, + [22] = { 47.5, 14.8, 40, 300 }, + }, + ["lvl"] = "11-12", + }, + [834] = { + ["coords"] = { + [1] = { 19.7, 84, 12, 300 }, + [2] = { 17.6, 78.5, 12, 300 }, + [3] = { 17.5, 75.5, 12, 300 }, + [4] = { 16.8, 74, 12, 300 }, + [5] = { 51.2, 46.1, 40, 300 }, + [6] = { 50.5, 45, 40, 300 }, + [7] = { 62.7, 42.3, 40, 300 }, + [8] = { 35.4, 42.2, 40, 300 }, + [9] = { 55.2, 40.8, 40, 300 }, + [10] = { 61.1, 39.7, 40, 300 }, + [11] = { 30.8, 39.3, 40, 300 }, + [12] = { 53.3, 37.9, 40, 300 }, + [13] = { 60.2, 37.7, 40, 300 }, + [14] = { 62.7, 36.5, 40, 300 }, + [15] = { 41.5, 35, 40, 300 }, + [16] = { 41.9, 32, 40, 300 }, + [17] = { 46.2, 31.1, 40, 300 }, + [18] = { 59.4, 30.5, 40, 300 }, + [19] = { 55.2, 29.3, 40, 300 }, + [20] = { 39.9, 29.3, 40, 300 }, + [21] = { 50.7, 29.2, 40, 300 }, + [22] = { 43.4, 29.1, 40, 300 }, + [23] = { 61.7, 29.1, 40, 300 }, + [24] = { 36, 28.9, 40, 300 }, + [25] = { 58.8, 28.1, 40, 300 }, + [26] = { 40.9, 27.7, 40, 300 }, + [27] = { 54.6, 27.7, 40, 300 }, + [28] = { 36.9, 27.1, 40, 300 }, + [29] = { 56.2, 26.8, 40, 300 }, + [30] = { 47.5, 26.5, 40, 300 }, + [31] = { 41.2, 26.4, 40, 300 }, + [32] = { 61.5, 26.3, 40, 300 }, + [33] = { 36.4, 26, 40, 300 }, + [34] = { 38.1, 23.6, 40, 300 }, + [35] = { 58.8, 22.5, 40, 300 }, + [36] = { 56, 22.4, 40, 300 }, + [37] = { 53.4, 22.1, 40, 300 }, + [38] = { 39.6, 20.8, 40, 300 }, + [39] = { 61.8, 20.8, 40, 300 }, + [40] = { 41.6, 19, 40, 300 }, + [41] = { 57, 18.2, 40, 300 }, + [42] = { 58, 16.7, 40, 300 }, + [43] = { 47.4, 15.3, 40, 300 }, + [44] = { 59.8, 15.3, 40, 300 }, + [45] = { 58.4, 14.7, 40, 300 }, + [46] = { 59.6, 12.3, 40, 300 }, + [47] = { 59, 10.8, 40, 300 }, + [48] = { 61.9, 32.2, 40, 300 }, + }, + ["lvl"] = "10-11", + }, + [836] = { + ["coords"] = { + [1] = { 28.8, 66.4, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [837] = { + ["coords"] = { + [1] = { 28.6, 66.4, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [840] = { + ["coords"] = { + [1] = { 74.8, 44.2, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "42", + }, + [841] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [842] = { + ["coords"] = { + [1] = { 53.6, 53.4, 40, 300 }, + [2] = { 52.4, 51.9, 40, 300 }, + [3] = { 53, 51.3, 40, 300 }, + [4] = { 53.5, 50.8, 40, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [843] = { + ["coords"] = { + [1] = { 57.6, 54.1, 40, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [844] = { + ["coords"] = { + [1] = { 78.1, 73, 12, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [846] = { + ["coords"] = { + [1] = { 40.5, 68, 40, 300 }, + [2] = { 39.8, 68, 40, 300 }, + [3] = { 40.2, 67.4, 40, 300 }, + [4] = { 39.7, 67, 40, 300 }, + [5] = { 40.3, 66.9, 40, 300 }, + [6] = { 64.7, 66.7, 40, 300 }, + [7] = { 41.7, 29.3, 40, 300 }, + [8] = { 41.7, 29.2, 40, 300 }, + }, + ["lvl"] = "14-15", + }, + [847] = { + ["coords"] = { + [1] = { 29.2, 47.4, 44, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [848] = { + ["coords"] = { + [1] = { 29.1, 52, 44, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [849] = { + ["coords"] = { + [1] = { 29.2, 47.4, 44, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "3", + }, + [850] = { + ["coords"] = { + [1] = { 24.8, 41.4, 44, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [851] = { + ["coords"] = { + [1] = { 21.4, 45.9, 44, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [852] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [853] = { + ["coords"] = { + [1] = { 34, 72.1, 1, 300 }, + [2] = { 30.1, 72, 1, 300 }, + [3] = { 29.7, 71.9, 1, 300 }, + [4] = { 34.2, 71.8, 1, 300 }, + [5] = { 34.1, 71.7, 1, 300 }, + [6] = { 29.6, 71.6, 1, 300 }, + [7] = { 34, 71.5, 1, 300 }, + [8] = { 33.9, 71.5, 1, 300 }, + [9] = { 30.1, 71.3, 1, 300 }, + [10] = { 29.8, 71.2, 1, 300 }, + [11] = { 29, 70.2, 1, 300 }, + [12] = { 29.2, 70, 1, 300 }, + [13] = { 28.6, 69.9, 1, 300 }, + [14] = { 29, 68.2, 1, 300 }, + [15] = { 28.5, 68.1, 1, 300 }, + [16] = { 28.7, 67.3, 1, 300 }, + [17] = { 71, 38, 1, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [854] = { + ["coords"] = { + [1] = { 31.3, 44.7, 33, 300 }, + [2] = { 30.7, 44, 33, 300 }, + [3] = { 32.1, 43.1, 33, 300 }, + [4] = { 32, 42.5, 33, 300 }, + }, + ["lvl"] = "36-37", + }, + [855] = { + ["coords"] = { + [1] = { 24.2, 16.3, 33, 300 }, + [2] = { 24.7, 16, 33, 300 }, + [3] = { 24, 15.7, 33, 300 }, + }, + ["lvl"] = "30-31", + }, + [856] = { + ["coords"] = { + [1] = { 30.5, 23.5, 33, 300 }, + }, + ["lvl"] = "33-34", + }, + [857] = { + ["coords"] = { + [1] = { 69.9, 88.9, 1537, 1200 }, + }, + ["fac"] = "A", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [858] = { + ["coords"] = { + [1] = { 24.9, 64, 8, 300 }, + [2] = { 22.7, 62.2, 8, 300 }, + [3] = { 26.1, 62, 8, 300 }, + [4] = { 28.3, 61.9, 8, 300 }, + [5] = { 25.1, 59.2, 8, 300 }, + [6] = { 22.3, 59, 8, 300 }, + [7] = { 34.4, 55.6, 8, 300 }, + [8] = { 20, 53.3, 8, 300 }, + [9] = { 29.3, 53.3, 8, 300 }, + [10] = { 17.7, 53.3, 8, 300 }, + [11] = { 31.6, 50.5, 8, 300 }, + [12] = { 26, 49.5, 8, 300 }, + [13] = { 26.8, 48.6, 8, 300 }, + [14] = { 26.4, 45.9, 8, 300 }, + [15] = { 27.7, 43.4, 8, 300 }, + [16] = { 21.3, 42.5, 8, 300 }, + [17] = { 22.5, 37.7, 8, 300 }, + [18] = { 38.8, 37.5, 8, 300 }, + [19] = { 47.9, 34.3, 8, 300 }, + [20] = { 37.5, 32.1, 8, 300 }, + [21] = { 36.5, 30.9, 8, 300 }, + [22] = { 39.5, 30.8, 8, 300 }, + [23] = { 71.4, 30, 8, 300 }, + [24] = { 40.8, 29.8, 8, 300 }, + [25] = { 37.1, 29.2, 8, 300 }, + [26] = { 43.2, 29, 8, 300 }, + [27] = { 33.2, 28.9, 8, 300 }, + }, + ["lvl"] = "36-37", + }, + [859] = { + ["coords"] = { + [1] = { 26.3, 46.6, 44, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "33", + }, + [860] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "10", + }, + [861] = { + ["coords"] = { + [1] = { 28.1, 57.5, 8, 300 }, + [2] = { 35.9, 56.9, 8, 300 }, + [3] = { 15.2, 51.6, 8, 300 }, + [4] = { 17.2, 50.5, 8, 300 }, + [5] = { 20.8, 50.1, 8, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "36-37", + }, + [862] = { + ["coords"] = { + [1] = { 80, 74.4, 8, 300 }, + [2] = { 60.2, 56.1, 8, 300 }, + [3] = { 51, 30.4, 8, 300 }, + [4] = { 53.5, 27.5, 8, 300 }, + [5] = { 67.4, 14.8, 8, 300 }, + [6] = { 76.6, 8.9, 8, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "37-38", + }, + [863] = { + ["coords"] = { + [1] = { 81, 81.1, 8, 300 }, + [2] = { 82.2, 81, 8, 300 }, + [3] = { 80.9, 80.2, 8, 300 }, + [4] = { 82.5, 79.9, 8, 300 }, + [5] = { 81.7, 79.6, 8, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50-51", + }, + [864] = { + ["coords"] = { + [1] = { 48.3, 57.7, 8, 300 }, + [2] = { 44.4, 55.3, 8, 300 }, + [3] = { 43, 53.4, 8, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [865] = { + ["coords"] = { + [1] = { 50.2, 49.9, 8, 300 }, + [2] = { 50, 48.3, 8, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50-51", + }, + [866] = { + ["coords"] = { + [1] = { 47.6, 58.4, 8, 300 }, + [2] = { 48, 58.1, 8, 300 }, + [3] = { 41.4, 57, 8, 300 }, + [4] = { 43.4, 55.5, 8, 300 }, + [5] = { 43.3, 54.4, 8, 300 }, + [6] = { 42.1, 51.8, 8, 300 }, + [7] = { 48.9, 51.5, 8, 300 }, + [8] = { 47.3, 49.7, 8, 300 }, + [9] = { 44.4, 49.5, 8, 300 }, + [10] = { 44.8, 48.9, 8, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [867] = { + ["coords"] = { + [1] = { 49.5, 49, 8, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "52", + }, + [868] = { + ["coords"] = { + [1] = { 81.7, 80.8, 8, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "53", + }, + [869] = { + ["coords"] = { + [1] = { 58, 34.2, 40, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [870] = { + ["coords"] = { + [1] = { 55, 53.9, 40, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [871] = { + ["coords"] = { + [1] = { 24.4, 24.8, 33, 1800 }, + [2] = { 24.7, 24.5, 33, 1800 }, + [3] = { 27, 24.2, 33, 1800 }, + [4] = { 24.9, 23.2, 33, 1800 }, + [5] = { 27, 22.4, 33, 1800 }, + }, + ["lvl"] = "35-36", + ["rnk"] = "1", + }, + [873] = { + ["coords"] = { + [1] = { 24.6, 25, 33, 1800 }, + [2] = { 24.3, 24.3, 33, 1800 }, + [3] = { 24.5, 23.9, 33, 1800 }, + [4] = { 25.1, 23.8, 33, 1800 }, + [5] = { 24.8, 23.4, 33, 1800 }, + }, + ["lvl"] = "36-37", + ["rnk"] = "1", + }, + [874] = { + ["coords"] = { + [1] = { 64, 64.3, 40, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [875] = { + ["coords"] = { + [1] = { 24.9, 24.8, 33, 1800 }, + [2] = { 25, 24.1, 33, 1800 }, + }, + ["lvl"] = "37", + ["rnk"] = "1", + }, + [876] = { + ["coords"] = { + [1] = { 54.9, 53.2, 40, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [877] = { + ["coords"] = { + [1] = { 24, 25.3, 33, 1800 }, + [2] = { 24.2, 25.3, 33, 1800 }, + }, + ["lvl"] = "35-36", + ["rnk"] = "1", + }, + [878] = { + ["coords"] = { + [1] = { 54, 53, 40, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [879] = { + ["coords"] = { + [1] = { 23.4, 25.5, 33, 1800 }, + [2] = { 23.2, 25, 33, 1800 }, + [3] = { 23.6, 24.9, 33, 1800 }, + [4] = { 25.3, 24.2, 33, 1800 }, + [5] = { 24.2, 23.8, 33, 1800 }, + }, + ["lvl"] = "35-36", + ["rnk"] = "1", + }, + [880] = { + ["coords"] = { + [1] = { 71, 80.6, 12, 270 }, + }, + ["lvl"] = "8", + }, + [881] = { + ["coords"] = { + [1] = { 71, 80.8, 12, 270 }, + }, + ["lvl"] = "9", + }, + [882] = { + ["coords"] = {}, + ["lvl"] = "57-59", + }, + [883] = { + ["coords"] = { + [1] = { 40.2, 91.4, 12, 270 }, + [2] = { 45.1, 87.3, 12, 270 }, + [3] = { 45.8, 87, 12, 270 }, + [4] = { 81.1, 84.2, 12, 270 }, + [5] = { 87, 83.7, 12, 270 }, + [6] = { 48.3, 83.4, 12, 270 }, + [7] = { 25.2, 83, 12, 270 }, + [8] = { 36.1, 81.3, 12, 270 }, + [9] = { 88.6, 80.6, 12, 270 }, + [10] = { 73.4, 80.5, 12, 270 }, + [11] = { 41.2, 79.9, 12, 270 }, + [12] = { 54, 79.5, 12, 270 }, + [13] = { 46.2, 78.6, 12, 270 }, + [14] = { 43.3, 78.3, 12, 270 }, + [15] = { 35.5, 78, 12, 270 }, + [16] = { 51.5, 77.7, 12, 270 }, + [17] = { 49.3, 75.8, 12, 270 }, + [18] = { 38.5, 74.2, 12, 270 }, + [19] = { 56.9, 74.1, 12, 270 }, + [20] = { 69.7, 72.1, 12, 270 }, + [21] = { 86.9, 72.1, 12, 270 }, + [22] = { 56.9, 70.8, 12, 270 }, + [23] = { 45.2, 67, 12, 270 }, + [24] = { 36.7, 66.4, 12, 270 }, + [25] = { 45, 66.1, 12, 270 }, + [26] = { 80.4, 64.7, 12, 270 }, + [27] = { 80.8, 64.3, 12, 270 }, + [28] = { 40, 61.8, 12, 270 }, + [29] = { 33, 58.4, 12, 270 }, + [30] = { 40.2, 57.3, 12, 270 }, + [31] = { 40.8, 56.9, 12, 270 }, + [32] = { 36.9, 55.9, 12, 270 }, + [33] = { 34.4, 54.7, 12, 270 }, + [34] = { 32.1, 54, 12, 270 }, + [35] = { 32.3, 53.7, 12, 270 }, + [36] = { 32.3, 53.6, 12, 270 }, + [37] = { 54.7, 50.6, 12, 270 }, + [38] = { 44.7, 50, 12, 270 }, + [39] = { 51.4, 48.6, 12, 270 }, + [40] = { 55, 46.7, 12, 270 }, + [41] = { 56.4, 45.9, 12, 270 }, + [42] = { 56.8, 42.7, 12, 270 }, + [43] = { 43.8, 40.5, 12, 270 }, + [44] = { 76.8, 39.5, 12, 270 }, + [45] = { 44.5, 38.1, 12, 270 }, + [46] = { 49.9, 32.3, 12, 270 }, + [47] = { 47.1, 32, 12, 270 }, + [48] = { 43.3, 98.7, 28, 300 }, + [49] = { 42, 94.5, 28, 300 }, + [50] = { 43.9, 90, 28, 300 }, + [51] = { 44.6, 83.2, 28, 300 }, + [52] = { 82.3, 63.4, 36, 300 }, + [53] = { 57.7, 60.1, 36, 300 }, + [54] = { 63.7, 53, 36, 300 }, + [55] = { 79.6, 51.5, 36, 300 }, + [56] = { 77.6, 45.2, 36, 300 }, + [57] = { 80.5, 38.3, 36, 300 }, + [58] = { 59.8, 20.3, 40, 300 }, + [59] = { 59.2, 19.7, 40, 300 }, + [60] = { 55.3, 24.8, 130, 300 }, + [61] = { 47.2, 19.1, 130, 300 }, + [62] = { 53.9, 76.6, 141, 300 }, + [63] = { 60.6, 74.5, 141, 300 }, + [64] = { 47.9, 74.3, 141, 300 }, + [65] = { 43.3, 74, 141, 300 }, + [66] = { 42.5, 72, 141, 300 }, + [67] = { 63.4, 71.2, 141, 300 }, + [68] = { 40.1, 69.7, 141, 300 }, + [69] = { 55.5, 67, 141, 300 }, + [70] = { 27.3, 66.2, 141, 300 }, + [71] = { 28.5, 64.7, 141, 300 }, + [72] = { 22.6, 64.6, 141, 300 }, + [73] = { 63.3, 64.1, 141, 300 }, + [74] = { 53, 62.8, 141, 300 }, + [75] = { 64.6, 61.5, 141, 300 }, + [76] = { 29.3, 60.8, 141, 300 }, + [77] = { 62.2, 60.4, 141, 300 }, + [78] = { 40.4, 60.3, 141, 300 }, + [79] = { 53.6, 59.8, 141, 300 }, + [80] = { 54.2, 58.8, 141, 300 }, + [81] = { 31.4, 58.5, 141, 300 }, + [82] = { 33.1, 58.4, 141, 300 }, + [83] = { 23.2, 54.6, 141, 300 }, + [84] = { 31.1, 54.4, 141, 300 }, + [85] = { 68, 53.7, 141, 300 }, + [86] = { 65, 53.6, 141, 300 }, + [87] = { 31.1, 51.9, 141, 300 }, + [88] = { 24.8, 50.7, 141, 300 }, + [89] = { 25.6, 50.7, 141, 300 }, + [90] = { 28.7, 50.5, 141, 300 }, + [91] = { 28.6, 48.7, 141, 300 }, + [92] = { 27.5, 48.1, 141, 300 }, + [93] = { 26.7, 47.8, 141, 300 }, + [94] = { 28.1, 47, 141, 300 }, + [95] = { 26, 45.5, 141, 300 }, + [96] = { 55.8, 45.2, 141, 300 }, + [97] = { 38.4, 44.8, 141, 300 }, + [98] = { 61.7, 42.1, 141, 300 }, + [99] = { 55.6, 38.6, 141, 300 }, + [100] = { 41, 38.6, 141, 300 }, + [101] = { 45.2, 36.8, 141, 300 }, + [102] = { 61.8, 36.1, 141, 300 }, + [103] = { 60.4, 34.1, 141, 300 }, + [104] = { 46.6, 33.3, 141, 300 }, + [105] = { 41.2, 28.7, 141, 300 }, + [106] = { 45.4, 98.2, 148, 300 }, + [107] = { 42.9, 83.2, 148, 300 }, + [108] = { 43.2, 74.9, 148, 300 }, + [109] = { 40, 70.1, 148, 300 }, + [110] = { 44.2, 52.6, 148, 300 }, + [111] = { 55.5, 26.7, 148, 300 }, + [112] = { 56.1, 22.4, 148, 300 }, + [113] = { 80.9, 3.9, 267, 300 }, + [114] = { 59.4, 1.1, 267, 300 }, + [115] = { 48.7, 66.7, 331, 300 }, + [116] = { 76, 65.7, 331, 300 }, + [117] = { 61, 64.7, 331, 300 }, + [118] = { 57.9, 64.5, 331, 300 }, + [119] = { 47.1, 62.2, 331, 300 }, + [120] = { 73.6, 61.2, 331, 300 }, + [121] = { 31.4, 57.7, 331, 300 }, + [122] = { 43.1, 54.9, 331, 300 }, + [123] = { 55.7, 53.3, 331, 300 }, + [124] = { 76.1, 52.3, 331, 300 }, + [125] = { 62.5, 50, 331, 300 }, + [126] = { 31.3, 46.2, 331, 300 }, + [127] = { 50.4, 45.5, 331, 300 }, + [128] = { 26.9, 42.1, 331, 300 }, + [129] = { 22, 40.8, 331, 300 }, + [130] = { 38.3, 36.6, 331, 300 }, + [131] = { 34, 34.7, 331, 300 }, + [132] = { 30.4, 32.3, 331, 300 }, + [133] = { 17.9, 32, 331, 300 }, + [134] = { 26.2, 30.5, 331, 300 }, + [135] = { 27.1, 21.8, 331, 300 }, + [136] = { 30, 16.3, 331, 300 }, + [137] = { 75.6, 51.3, 357, 300 }, + [138] = { 42.7, 22.4, 357, 300 }, + [139] = { 40, 8.5, 357, 300 }, + [140] = { 40.9, 16.3, 406, 300 }, + [141] = { 37.8, 14.6, 406, 300 }, + [142] = { 57.6, 75.5, 493, 300 }, + [143] = { 52.9, 74, 493, 300 }, + [144] = { 60.8, 72.1, 493, 300 }, + [145] = { 48.9, 71.7, 493, 300 }, + [146] = { 65.1, 71.7, 493, 300 }, + [147] = { 51, 71.5, 493, 300 }, + [148] = { 63.8, 69.7, 493, 300 }, + [149] = { 65.4, 69.3, 493, 300 }, + [150] = { 58.1, 68.8, 493, 300 }, + [151] = { 46.6, 68.6, 493, 300 }, + [152] = { 66.3, 68.2, 493, 300 }, + [153] = { 47.1, 68.1, 493, 300 }, + [154] = { 41.5, 67.4, 493, 300 }, + [155] = { 64.2, 67.3, 493, 300 }, + [156] = { 39.6, 67.3, 493, 300 }, + [157] = { 62.4, 67, 493, 300 }, + [158] = { 65.2, 67, 493, 300 }, + [159] = { 58.1, 65.7, 493, 300 }, + [160] = { 38.1, 65.7, 493, 300 }, + [161] = { 65, 64.6, 493, 300 }, + [162] = { 45.7, 63.8, 493, 300 }, + [163] = { 68.1, 63.8, 493, 300 }, + [164] = { 49.7, 63.7, 493, 300 }, + [165] = { 35.2, 62.8, 493, 300 }, + [166] = { 34.2, 61.3, 493, 300 }, + [167] = { 65.8, 60.8, 493, 300 }, + [168] = { 45.4, 60.8, 493, 300 }, + [169] = { 31.9, 60.5, 493, 300 }, + [170] = { 42.5, 60.2, 493, 300 }, + [171] = { 40.8, 60.1, 493, 300 }, + [172] = { 35.2, 58.4, 493, 300 }, + [173] = { 43.5, 58.2, 493, 300 }, + [174] = { 66.8, 56.6, 493, 300 }, + [175] = { 34.9, 56, 493, 300 }, + [176] = { 69.1, 55.8, 493, 300 }, + [177] = { 31.5, 55.1, 493, 300 }, + [178] = { 40.6, 55.1, 493, 300 }, + [179] = { 64.6, 54.5, 493, 300 }, + [180] = { 67.6, 53.9, 493, 300 }, + [181] = { 37.2, 53.8, 493, 300 }, + [182] = { 69.3, 52.5, 493, 300 }, + [183] = { 65.8, 52, 493, 300 }, + [184] = { 70.4, 51.8, 493, 300 }, + [185] = { 33.8, 51.4, 493, 300 }, + [186] = { 43.5, 51.3, 493, 300 }, + [187] = { 35.9, 50.9, 493, 300 }, + [188] = { 63.9, 49.2, 493, 300 }, + [189] = { 31.2, 48.4, 493, 300 }, + [190] = { 66.7, 48.2, 493, 300 }, + [191] = { 65.5, 48.1, 493, 300 }, + [192] = { 61.1, 47.8, 493, 300 }, + [193] = { 39.4, 47.7, 493, 300 }, + [194] = { 42.7, 47.5, 493, 300 }, + [195] = { 38.9, 46.8, 493, 300 }, + [196] = { 65.2, 46.6, 493, 300 }, + [197] = { 42.2, 46.3, 493, 300 }, + [198] = { 63.7, 44.3, 493, 300 }, + [199] = { 37, 43.7, 493, 300 }, + [200] = { 34.1, 43.2, 493, 300 }, + [201] = { 41.5, 42.2, 493, 300 }, + [202] = { 39.4, 42.2, 493, 300 }, + [203] = { 34.3, 40.3, 493, 300 }, + [204] = { 32, 39.6, 493, 300 }, + [205] = { 52.2, 38.4, 493, 300 }, + [206] = { 33.2, 35.5, 493, 300 }, + [207] = { 37.1, 34.9, 493, 300 }, + [208] = { 38.3, 34.3, 493, 300 }, + [209] = { 55.3, 33.2, 493, 300 }, + [210] = { 47.5, 33, 493, 300 }, + [211] = { 33.2, 32.7, 493, 300 }, + [212] = { 57, 31.2, 493, 300 }, + [213] = { 39.9, 28.8, 493, 300 }, + [214] = { 37.1, 27, 493, 300 }, + [215] = { 48.5, 92.7, 1657, 300 }, + [216] = { 54.2, 85.3, 1657, 300 }, + [217] = { 26, 85, 1657, 300 }, + [218] = { 58.4, 66.9, 1657, 300 }, + [219] = { 68.4, 55.6, 1657, 300 }, + [220] = { 76.5, 55.1, 1657, 300 }, + [221] = { 28.6, 36.9, 1657, 300 }, + [222] = { 66.8, 35.7, 1657, 300 }, + [223] = { 66.6, 24, 1657, 300 }, + [224] = { 36.6, 18.3, 1657, 300 }, + [225] = { 40.3, 18.2, 1657, 300 }, + [226] = { 55.3, 17.4, 1657, 300 }, + [227] = { 54.9, 8.5, 1657, 300 }, + [228] = { 49.7, 5.7, 1657, 300 }, + [229] = { 45.8, 4.2, 1657, 300 }, + [230] = { 52.3, 0.2, 1657, 300 }, + }, + ["lvl"] = "5", + }, + [885] = { + ["coords"] = { + [1] = { 78.3, 44.7, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "39", + }, + [886] = { + ["coords"] = { + [1] = { 75.2, 44.8, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "38", + }, + [887] = { + ["coords"] = { + [1] = { 75.1, 50.4, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "39", + }, + [888] = { + ["coords"] = { + [1] = { 45.1, 67, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "29", + }, + [889] = { + ["coords"] = { + [1] = { 39.3, 76, 10, 300 }, + [2] = { 38.7, 74.9, 10, 300 }, + [3] = { 38.5, 72.6, 10, 300 }, + [4] = { 37.7, 72.2, 10, 300 }, + [5] = { 40.4, 72, 10, 300 }, + [6] = { 38.7, 70.5, 10, 300 }, + [7] = { 40.5, 70.5, 10, 300 }, + }, + ["lvl"] = "25-26", + }, + [890] = { + ["coords"] = { + [1] = { 25.3, 83, 12, 270 }, + [2] = { 88.6, 80.7, 12, 270 }, + [3] = { 35.5, 77.9, 12, 270 }, + [4] = { 87, 72, 12, 270 }, + [5] = { 45.2, 67.1, 12, 270 }, + [6] = { 45, 66.2, 12, 270 }, + [7] = { 80.4, 64.6, 12, 270 }, + [8] = { 37, 55.9, 12, 270 }, + [9] = { 32.3, 53.6, 12, 270 }, + [10] = { 51.3, 49.2, 12, 270 }, + [11] = { 55.8, 45.1, 12, 270 }, + [12] = { 43.8, 40.5, 12, 270 }, + [13] = { 32.3, 53.7, 12, 270 }, + }, + ["lvl"] = "1", + }, + [891] = { + ["coords"] = { + [1] = { 36.3, 75.2, 10, 300 }, + [2] = { 40.4, 75.2, 10, 300 }, + [3] = { 39.3, 74.5, 10, 300 }, + [4] = { 40, 74, 10, 300 }, + [5] = { 34.9, 72.1, 10, 300 }, + [6] = { 36.3, 70.9, 10, 300 }, + [7] = { 35.1, 70.4, 10, 300 }, + }, + ["lvl"] = "26-27", + }, + [892] = { + ["coords"] = { + [1] = { 39.5, 75, 10, 300 }, + [2] = { 36.6, 72.4, 10, 300 }, + [3] = { 33.8, 70.5, 10, 300 }, + [4] = { 33.7, 68.2, 10, 300 }, + }, + ["lvl"] = "27-28", + }, + [893] = { + ["coords"] = { + [1] = { 7.7, 33.2, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "18", + }, + [894] = { + ["coords"] = { + [1] = { 33.7, 82.9, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [895] = { + ["coords"] = { + [1] = { 29.2, 67.5, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [896] = { + ["coords"] = { + [1] = { 25.2, 73.9, 12, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [897] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "62", + }, + [898] = { + ["coords"] = { + [1] = { 59.9, 68.9, 10, 300 }, + [2] = { 62.8, 68.6, 10, 300 }, + [3] = { 61.2, 66.4, 10, 300 }, + [4] = { 62.6, 55, 10, 300 }, + [5] = { 61.1, 53.7, 10, 300 }, + [6] = { 59.1, 53.7, 10, 300 }, + [7] = { 57.4, 51.9, 10, 300 }, + [8] = { 61.4, 50.3, 10, 300 }, + [9] = { 58.8, 50.3, 10, 300 }, + [10] = { 60.3, 48, 10, 300 }, + [11] = { 67, 42.6, 10, 300 }, + [12] = { 62.6, 42.3, 10, 300 }, + [13] = { 67.2, 38.8, 10, 300 }, + [14] = { 66.3, 37.5, 10, 300 }, + [15] = { 64.9, 34.4, 10, 300 }, + [16] = { 63.6, 33.6, 10, 300 }, + [17] = { 60.9, 32.8, 10, 300 }, + [18] = { 60, 31.8, 10, 300 }, + [19] = { 62.6, 31.1, 10, 300 }, + [20] = { 58.1, 30.5, 10, 300 }, + [21] = { 61.2, 30.3, 10, 300 }, + [22] = { 58.5, 29.9, 10, 300 }, + [23] = { 57.8, 29.9, 10, 300 }, + [24] = { 62.1, 27.9, 10, 300 }, + [25] = { 57.4, 27.6, 10, 300 }, + [26] = { 59.5, 27.5, 10, 300 }, + [27] = { 58.5, 25.6, 10, 300 }, + [28] = { 65.9, 40.8, 10, 300 }, + [29] = { 64.8, 38.7, 10, 300 }, + }, + ["lvl"] = "26-27", + }, + [900] = { + ["coords"] = { + [1] = { 29.7, 44.3, 44, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [903] = { + ["coords"] = { + [1] = { 31.5, 57.9, 44, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [904] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [905] = { + ["coords"] = { + [1] = { 35.6, 33.2, 33, 300 }, + [2] = { 36.1, 33.1, 33, 300 }, + [3] = { 37.4, 32.1, 33, 300 }, + [4] = { 39, 30.6, 33, 300 }, + [5] = { 39.4, 29.6, 33, 300 }, + [6] = { 39.8, 25.6, 33, 300 }, + [7] = { 40.2, 22.1, 33, 300 }, + [8] = { 40.4, 21.5, 33, 300 }, + [9] = { 41.9, 20, 33, 300 }, + [10] = { 42.3, 18.4, 33, 300 }, + [11] = { 40.9, 18.4, 33, 300 }, + [12] = { 41.3, 17.5, 33, 300 }, + [13] = { 40.9, 16.8, 33, 300 }, + [14] = { 40.8, 16, 33, 300 }, + [15] = { 40.5, 14.4, 33, 300 }, + [16] = { 39.3, 11.9, 33, 300 }, + [17] = { 37.7, 10.2, 33, 300 }, + [18] = { 32.9, 8.3, 33, 300 }, + }, + ["lvl"] = "31-32", + }, + [906] = { + ["coords"] = { + [1] = { 44.4, 66.2, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [907] = { + ["coords"] = { + [1] = { 29.3, 54.7, 141, 600 }, + [2] = { 58, 37.3, 1657, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [908] = { + ["coords"] = { + [1] = { 27.7, 77.9, 33, 300 }, + }, + ["lvl"] = "44", + }, + [909] = { + ["coords"] = { + [1] = { 48.8, 77.5, 10, 300 }, + [2] = { 49.9, 77.3, 10, 300 }, + [3] = { 50.5, 77, 10, 300 }, + [4] = { 50.7, 77, 10, 300 }, + [5] = { 47.8, 76.9, 10, 300 }, + [6] = { 48.2, 75.3, 10, 300 }, + [7] = { 23, 73.8, 10, 300 }, + [8] = { 21.6, 73.3, 10, 300 }, + [9] = { 23.4, 73.3, 10, 300 }, + [10] = { 21.6, 73, 10, 300 }, + [11] = { 20.5, 72.7, 10, 300 }, + [12] = { 24, 72.1, 10, 300 }, + [13] = { 21.8, 71.9, 10, 300 }, + [14] = { 22.6, 71.6, 10, 300 }, + [15] = { 23.9, 71.4, 10, 300 }, + [16] = { 19.8, 70.8, 10, 300 }, + }, + ["lvl"] = "25-26", + }, + [910] = { + ["coords"] = { + [1] = { 48.8, 77.5, 10, 300 }, + [2] = { 50.4, 77.4, 10, 300 }, + [3] = { 21.3, 73.4, 10, 300 }, + [4] = { 21.5, 73, 10, 300 }, + [5] = { 21.3, 72, 10, 300 }, + [6] = { 23.7, 72, 10, 300 }, + }, + ["lvl"] = "26-27", + }, + [911] = { + ["coords"] = { + [1] = { 50.2, 42.3, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [912] = { + ["coords"] = { + [1] = { 28.8, 67.2, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [913] = { + ["coords"] = { + [1] = { 41.1, 65.8, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "12", + }, + [914] = { + ["coords"] = { + [1] = { 78.2, 47.6, 1519, 490 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [915] = { + ["coords"] = { + [1] = { 50.3, 39.9, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [916] = { + ["coords"] = { + [1] = { 28.4, 67.5, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [917] = { + ["coords"] = { + [1] = { 43.9, 65.9, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "11", + }, + [918] = { + ["coords"] = { + [1] = { 74.6, 52.8, 1519, 490 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [919] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [920] = { + ["coords"] = { + [1] = { 63.6, 84.2, 10, 300 }, + [2] = { 63.6, 83.6, 10, 300 }, + [3] = { 62.5, 81.7, 10, 300 }, + [4] = { 61.2, 81.7, 10, 300 }, + [5] = { 62.4, 81.1, 10, 300 }, + [6] = { 60.9, 80.9, 10, 300 }, + [7] = { 63.1, 80.3, 10, 300 }, + [8] = { 74.1, 79.6, 10, 300 }, + [9] = { 73.6, 79, 10, 300 }, + [10] = { 74.1, 78.7, 10, 300 }, + [11] = { 73.9, 77.2, 10, 300 }, + [12] = { 73.5, 77, 10, 300 }, + [13] = { 73.1, 75.6, 10, 300 }, + [14] = { 48.7, 1.5, 33, 300 }, + [15] = { 74, 79.3, 10, 18000 }, + }, + ["lvl"] = "30-31", + }, + [921] = { + ["coords"] = { + [1] = { 43.3, 19.1, 33, 300 }, + }, + ["lvl"] = "34-35", + }, + [922] = { + ["coords"] = { + [1] = { 80.5, 93.9, 8, 300 }, + [2] = { 86.5, 86.4, 8, 300 }, + [3] = { 83.2, 84.7, 8, 300 }, + [4] = { 84.5, 83.1, 8, 300 }, + [5] = { 85.6, 82.5, 8, 300 }, + [6] = { 89.8, 80.4, 8, 300 }, + [7] = { 88, 78.3, 8, 300 }, + [8] = { 90.2, 23.8, 8, 300 }, + [9] = { 88, 20.5, 8, 300 }, + [10] = { 89.1, 18.3, 8, 300 }, + [11] = { 87, 18.2, 8, 300 }, + [12] = { 83, 15.5, 8, 300 }, + [13] = { 84.4, 14.8, 8, 300 }, + [14] = { 84.7, 13.9, 8, 300 }, + [15] = { 82.7, 12.6, 8, 300 }, + [16] = { 84.4, 11.9, 8, 300 }, + [17] = { 81.8, 9.6, 8, 300 }, + [18] = { 81.2, 9.3, 8, 300 }, + [19] = { 78.7, 8, 8, 300 }, + [20] = { 80.3, 7.4, 8, 300 }, + [21] = { 73.7, 5.3, 8, 300 }, + [22] = { 78.9, 5.3, 8, 300 }, + [23] = { 77.5, 5.2, 8, 300 }, + [24] = { 76, 5.2, 8, 300 }, + [25] = { 76, 3, 8, 300 }, + }, + ["lvl"] = "40-41", + }, + [923] = { + ["coords"] = { + [1] = { 22, 78.3, 10, 300 }, + [2] = { 24.4, 78, 10, 300 }, + [3] = { 20.1, 77.7, 10, 300 }, + [4] = { 43.5, 77.4, 10, 300 }, + [5] = { 52.3, 76.2, 10, 300 }, + [6] = { 25.7, 74.8, 10, 300 }, + [7] = { 27.6, 74.3, 10, 300 }, + [8] = { 54.1, 74.1, 10, 300 }, + [9] = { 47.8, 73.9, 10, 300 }, + [10] = { 53.4, 73.1, 10, 300 }, + [11] = { 52.1, 72.9, 10, 300 }, + [12] = { 18.2, 72, 10, 300 }, + [13] = { 26.3, 71, 10, 300 }, + [14] = { 42.9, 70.8, 10, 300 }, + [15] = { 47.8, 70.3, 10, 300 }, + [16] = { 50, 69.1, 10, 300 }, + [17] = { 22.1, 68.8, 10, 300 }, + [18] = { 26.7, 67.6, 10, 300 }, + [19] = { 55.5, 65.7, 10, 300 }, + [20] = { 37.5, 65.4, 10, 300 }, + [21] = { 28.4, 65.4, 10, 300 }, + [22] = { 53.5, 65.1, 10, 300 }, + [23] = { 48.8, 65.1, 10, 300 }, + [24] = { 17.8, 65.1, 10, 300 }, + [25] = { 40.4, 64.9, 10, 300 }, + [26] = { 56, 64.4, 10, 300 }, + [27] = { 51.2, 64.1, 10, 300 }, + [28] = { 24.8, 64, 10, 300 }, + [29] = { 54.6, 63.7, 10, 300 }, + [30] = { 46.9, 63.3, 10, 300 }, + [31] = { 28.3, 62.8, 10, 300 }, + [32] = { 30.7, 62.6, 10, 300 }, + [33] = { 32.5, 62.4, 10, 300 }, + [34] = { 56.4, 62.1, 10, 300 }, + [35] = { 59.8, 60.8, 10, 300 }, + [36] = { 61, 59.3, 10, 300 }, + [37] = { 69.5, 30.8, 10, 300 }, + [38] = { 69.3, 30.1, 10, 300 }, + [39] = { 67.2, 28.1, 10, 300 }, + [40] = { 66.1, 24, 10, 300 }, + }, + ["lvl"] = "23-24", + }, + [924] = { + ["coords"] = {}, + ["lvl"] = "23-24", + }, + [925] = { + ["coords"] = { + [1] = { 50.4, 42.1, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [926] = { + ["coords"] = { + [1] = { 28.8, 68.3, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [927] = { + ["coords"] = { + [1] = { 41.1, 66, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "11", + }, + [928] = { + ["coords"] = { + [1] = { 37.2, 33.3, 1519, 490 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [929] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [930] = { + ["coords"] = { + [1] = { 80.7, 62.8, 10, 300 }, + [2] = { 34.8, 59.5, 10, 300 }, + [3] = { 37.3, 59.5, 10, 300 }, + [4] = { 77.8, 58.4, 10, 300 }, + [5] = { 35.1, 58.2, 10, 300 }, + [6] = { 83.8, 57.6, 10, 300 }, + [7] = { 31.4, 57.5, 10, 300 }, + [8] = { 37.2, 57.5, 10, 300 }, + [9] = { 31.3, 56.5, 10, 300 }, + [10] = { 35.7, 55.8, 10, 300 }, + [11] = { 30.1, 55.2, 10, 300 }, + [12] = { 30.4, 55.2, 10, 300 }, + [13] = { 31.2, 54.9, 10, 300 }, + [14] = { 32.4, 54.7, 10, 300 }, + [15] = { 35.6, 54.7, 10, 300 }, + [16] = { 34.3, 54.1, 10, 300 }, + [17] = { 80.4, 54.1, 10, 300 }, + [18] = { 82.1, 53.3, 10, 300 }, + [19] = { 29.2, 53.3, 10, 300 }, + [20] = { 86.9, 53.1, 10, 300 }, + [21] = { 26.2, 52.3, 10, 300 }, + [22] = { 87.1, 52.1, 10, 300 }, + [23] = { 86, 52.1, 10, 300 }, + [24] = { 81.6, 52.1, 10, 300 }, + [25] = { 26.7, 52, 10, 300 }, + [26] = { 85.5, 51.7, 10, 300 }, + [27] = { 32.8, 51.7, 10, 300 }, + [28] = { 79.3, 51.4, 10, 300 }, + [29] = { 30.1, 51.4, 10, 300 }, + [30] = { 30.1, 51.2, 10, 300 }, + [31] = { 86.3, 50.3, 10, 300 }, + [32] = { 26.9, 50.3, 10, 300 }, + [33] = { 31.5, 49.9, 10, 300 }, + [34] = { 33.8, 49.7, 10, 300 }, + [35] = { 29.6, 49.4, 10, 300 }, + [36] = { 30.1, 48.4, 10, 300 }, + [37] = { 32.6, 48.2, 10, 300 }, + [38] = { 27.4, 47.3, 10, 300 }, + [39] = { 26.4, 47, 10, 300 }, + [40] = { 29.6, 46.6, 10, 300 }, + [41] = { 31.5, 46.5, 10, 300 }, + [42] = { 34.9, 46, 10, 300 }, + [43] = { 33.4, 45.9, 10, 300 }, + [44] = { 28.1, 44.7, 10, 300 }, + [45] = { 31.6, 42.4, 10, 300 }, + [46] = { 27.7, 40.8, 10, 300 }, + [47] = { 32.9, 39.5, 10, 300 }, + [48] = { 32.3, 39.4, 10, 300 }, + [49] = { 30.8, 36, 10, 300 }, + [50] = { 32.8, 36, 10, 300 }, + [51] = { 31.9, 34.3, 10, 300 }, + [52] = { 33.6, 34.1, 10, 300 }, + [53] = { 32, 34.1, 10, 300 }, + [54] = { 30.9, 32.5, 10, 300 }, + [55] = { 35, 32.4, 10, 300 }, + }, + ["lvl"] = "24-25", + }, + [931] = { + ["coords"] = { + [1] = { 30.6, 59.4, 44, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [932] = { + ["coords"] = { + [1] = { 31.9, 57.8, 44, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [933] = { + ["coords"] = { + [1] = { 33.4, 58.4, 44, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [934] = { + ["coords"] = { + [1] = { 28.2, 47.8, 44, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [935] = { + ["coords"] = { + [1] = { 33.1, 58.1, 44, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [936] = { + ["coords"] = { + [1] = { 27.5, 46.3, 44, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [937] = { + ["coords"] = { + [1] = { 46.2, 12.6, 33, 300 }, + [2] = { 43.9, 12.1, 33, 300 }, + [3] = { 46, 12, 33, 300 }, + [4] = { 44.5, 11.5, 33, 300 }, + [5] = { 44.7, 11.4, 33, 300 }, + [6] = { 44.9, 11.4, 33, 300 }, + [7] = { 45.2, 11.4, 33, 300 }, + [8] = { 46.5, 11.3, 33, 300 }, + [9] = { 45.3, 11.3, 33, 300 }, + [10] = { 46.1, 11.3, 33, 300 }, + [11] = { 44, 11.2, 33, 300 }, + [12] = { 44.8, 11.2, 33, 300 }, + [13] = { 45.2, 11, 33, 300 }, + [14] = { 44.7, 11, 33, 300 }, + [15] = { 44, 10.5, 33, 300 }, + [16] = { 47, 10.5, 33, 300 }, + [17] = { 44.5, 10, 33, 300 }, + [18] = { 44.6, 10, 33, 300 }, + [19] = { 44.5, 9.9, 33, 300 }, + [20] = { 44.5, 9.8, 33, 300 }, + [21] = { 43.9, 9.8, 33, 300 }, + [22] = { 43.4, 9.8, 33, 300 }, + [23] = { 46.5, 9.7, 33, 300 }, + [24] = { 43.9, 9.7, 33, 300 }, + [25] = { 44.1, 9.6, 33, 300 }, + [26] = { 43.7, 9.6, 33, 300 }, + [27] = { 43.9, 9.5, 33, 300 }, + [28] = { 43.7, 9.5, 33, 300 }, + [29] = { 43.9, 9.4, 33, 300 }, + [30] = { 44, 9.4, 33, 300 }, + [31] = { 45, 9.4, 33, 300 }, + [32] = { 44.1, 9.3, 33, 300 }, + [33] = { 44.1, 8.7, 33, 300 }, + [34] = { 44.8, 8.6, 33, 300 }, + [35] = { 45, 8.4, 33, 300 }, + [36] = { 45, 8.3, 33, 300 }, + [37] = { 47.1, 7.4, 33, 300 }, + [38] = { 43.9, 7.1, 33, 300 }, + }, + ["lvl"] = "32-33", + }, + [938] = { + ["coords"] = { + [1] = { 45.9, 8.7, 33, 300 }, + [2] = { 44.6, 8.5, 33, 300 }, + [3] = { 45.4, 8.4, 33, 300 }, + [4] = { 45.7, 8.1, 33, 300 }, + [5] = { 46, 8.1, 33, 300 }, + [6] = { 44.2, 8, 33, 300 }, + [7] = { 44.4, 8, 33, 300 }, + [8] = { 46, 7.9, 33, 300 }, + [9] = { 44.2, 7.9, 33, 300 }, + [10] = { 46.3, 7.8, 33, 300 }, + [11] = { 47.2, 7.6, 33, 300 }, + [12] = { 46.3, 7.4, 33, 300 }, + [13] = { 48.3, 7.1, 33, 300 }, + [14] = { 46.7, 7, 33, 300 }, + [15] = { 46.5, 6.9, 33, 300 }, + }, + ["lvl"] = "34-35", + }, + [939] = { + ["coords"] = { + [1] = { 48.9, 8.6, 33, 300 }, + [2] = { 48.4, 8.5, 33, 300 }, + [3] = { 49.3, 8.4, 33, 300 }, + [4] = { 49.1, 8.1, 33, 300 }, + [5] = { 49.3, 7.8, 33, 300 }, + [6] = { 49.6, 7.7, 33, 300 }, + [7] = { 49.3, 7.5, 33, 300 }, + [8] = { 47.7, 6.9, 33, 300 }, + [9] = { 47.9, 6.8, 33, 300 }, + [10] = { 47.3, 6.6, 33, 300 }, + [11] = { 46.8, 6.6, 33, 300 }, + [12] = { 46.8, 6.5, 33, 300 }, + [13] = { 47.9, 6.3, 33, 300 }, + [14] = { 46.7, 6.2, 33, 300 }, + }, + ["lvl"] = "36-37", + }, + [940] = { + ["coords"] = { + [1] = { 46.2, 12.6, 33, 300 }, + [2] = { 43.9, 12.1, 33, 300 }, + [3] = { 46, 12, 33, 300 }, + [4] = { 44.5, 11.5, 33, 300 }, + [5] = { 44.7, 11.4, 33, 300 }, + [6] = { 44.9, 11.4, 33, 300 }, + [7] = { 45.2, 11.4, 33, 300 }, + [8] = { 46.5, 11.3, 33, 300 }, + [9] = { 45.3, 11.3, 33, 300 }, + [10] = { 46.1, 11.3, 33, 300 }, + [11] = { 44, 11.2, 33, 300 }, + [12] = { 44.8, 11.2, 33, 300 }, + [13] = { 45.2, 11, 33, 300 }, + [14] = { 44.7, 11, 33, 300 }, + [15] = { 44, 10.5, 33, 300 }, + [16] = { 47, 10.5, 33, 300 }, + [17] = { 44.5, 10, 33, 300 }, + [18] = { 44.6, 10, 33, 300 }, + [19] = { 44.5, 9.9, 33, 300 }, + [20] = { 44.5, 9.8, 33, 300 }, + [21] = { 43.9, 9.8, 33, 300 }, + [22] = { 43.4, 9.8, 33, 300 }, + [23] = { 46.5, 9.7, 33, 300 }, + [24] = { 43.9, 9.7, 33, 300 }, + [25] = { 44.1, 9.6, 33, 300 }, + [26] = { 43.7, 9.6, 33, 300 }, + [27] = { 43.9, 9.5, 33, 300 }, + [28] = { 43.7, 9.5, 33, 300 }, + [29] = { 43.9, 9.4, 33, 300 }, + [30] = { 44, 9.4, 33, 300 }, + [31] = { 45, 9.4, 33, 300 }, + [32] = { 44.1, 9.3, 33, 300 }, + [33] = { 44.1, 8.7, 33, 300 }, + [34] = { 44.8, 8.6, 33, 300 }, + [35] = { 45, 8.4, 33, 300 }, + [36] = { 45, 8.3, 33, 300 }, + [37] = { 47.1, 7.4, 33, 300 }, + [38] = { 43.9, 7.1, 33, 300 }, + }, + ["lvl"] = "32-33", + }, + [941] = { + ["coords"] = { + [1] = { 48.1, 8.4, 33, 300 }, + [2] = { 46.4, 7.9, 33, 300 }, + [3] = { 47.8, 7.7, 33, 300 }, + [4] = { 48.4, 7.3, 33, 300 }, + [5] = { 48.1, 7.3, 33, 300 }, + [6] = { 46.9, 7.3, 33, 300 }, + [7] = { 46.3, 6.9, 33, 300 }, + [8] = { 46.4, 6.6, 33, 300 }, + }, + ["lvl"] = "34-35", + }, + [942] = { + ["coords"] = { + [1] = { 48.7, 8.8, 33, 300 }, + [2] = { 49.5, 8.3, 33, 300 }, + [3] = { 49.7, 7.5, 33, 300 }, + [4] = { 47.9, 7.2, 33, 300 }, + [5] = { 49.4, 7.2, 33, 300 }, + [6] = { 49.4, 7.1, 33, 300 }, + [7] = { 47.8, 7, 33, 300 }, + [8] = { 47.6, 6.6, 33, 300 }, + [9] = { 47.9, 6.1, 33, 300 }, + [10] = { 47.5, 6, 33, 300 }, + [11] = { 46.9, 5.9, 33, 300 }, + [12] = { 47.4, 5.7, 33, 300 }, + [13] = { 47.5, 5.6, 33, 300 }, + }, + ["lvl"] = "36-37", + }, + [943] = { + ["coords"] = { + [1] = { 45.8, 10.4, 33, 300 }, + [2] = { 45.8, 9.9, 33, 300 }, + [3] = { 45.8, 9.7, 33, 300 }, + [4] = { 45.8, 9.4, 33, 300 }, + }, + ["lvl"] = "34", + }, + [944] = { + ["coords"] = { + [1] = { 28.7, 66.4, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [945] = { + ["coords"] = { + [1] = { 28.7, 67.7, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [946] = { + ["coords"] = { + [1] = { 28.7, 83.1, 1, 270 }, + [2] = { 29, 82.6, 1, 270 }, + [3] = { 30.1, 82.4, 1, 270 }, + [4] = { 29, 81.2, 1, 270 }, + [5] = { 29.4, 81.1, 1, 270 }, + [6] = { 30.4, 80.9, 1, 270 }, + [7] = { 30.2, 80.3, 1, 270 }, + [8] = { 30.5, 79.6, 1, 270 }, + [9] = { 66.5, 40.9, 1, 15 }, + }, + ["lvl"] = "3-4", + }, + [947] = { + ["coords"] = { + [1] = { 75.5, 30, 44, 37800 }, + }, + ["lvl"] = "26", + ["rnk"] = "4", + }, + [948] = { + ["coords"] = { + [1] = { 24.9, 38.4, 10, 300 }, + [2] = { 23.9, 38, 10, 300 }, + [3] = { 25.3, 37.7, 10, 300 }, + [4] = { 21.4, 37.2, 10, 300 }, + [5] = { 24.3, 37.2, 10, 300 }, + [6] = { 22.2, 37.1, 10, 300 }, + [7] = { 25.1, 36, 10, 300 }, + [8] = { 21.7, 35.8, 10, 300 }, + [9] = { 22.5, 35.7, 10, 300 }, + [10] = { 25.8, 34.5, 10, 300 }, + [11] = { 21.9, 34.3, 10, 300 }, + [12] = { 22.7, 34.1, 10, 300 }, + [13] = { 24.9, 34.1, 10, 300 }, + [14] = { 25.8, 33.4, 10, 300 }, + [15] = { 22, 33, 10, 300 }, + [16] = { 23, 32.8, 10, 300 }, + }, + ["lvl"] = "25-26", + }, + [949] = { + ["coords"] = { + [1] = { 21.5, 46.3, 10, 300 }, + [2] = { 18.1, 43.7, 10, 300 }, + [3] = { 18.6, 41.9, 10, 300 }, + [4] = { 17, 39.6, 10, 300 }, + [5] = { 21, 39.1, 10, 300 }, + [6] = { 23.4, 36.7, 10, 300 }, + }, + ["lvl"] = "25-26", + }, + [950] = { + ["coords"] = { + [1] = { 72.2, 18, 4, 300 }, + }, + ["lvl"] = "50", + }, + [951] = { + ["coords"] = { + [1] = { 49.6, 40.4, 12, 375 }, + }, + ["fac"] = "A", + ["lvl"] = "27", + }, + [952] = { + ["coords"] = { + [1] = { 49.5, 41.6, 12, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [953] = { + ["coords"] = {}, + ["lvl"] = "15", + }, + [954] = { + ["coords"] = { + [1] = { 82.7, 64.1, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "17", + }, + [955] = { + ["coords"] = { + [1] = { 24.1, 73.2, 12, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [956] = { + ["coords"] = { + [1] = { 30.9, 46.4, 44, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "22", + }, + [957] = { + ["coords"] = { + [1] = { 57.4, 16.3, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [958] = { + ["coords"] = { + [1] = { 64.9, 69.2, 12, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [959] = { + ["coords"] = { + [1] = { 64.7, 69.5, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [960] = { + ["coords"] = { + [1] = { 73.8, 45.1, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [963] = { + ["coords"] = { + [1] = { 24.2, 74.4, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [976] = { + ["coords"] = { + [1] = { 45.9, 10, 33, 300 }, + [2] = { 45.9, 9.6, 33, 300 }, + }, + ["lvl"] = "32-33", + }, + [977] = { + ["coords"] = { + [1] = { 45.7, 9.7, 33, 300 }, + [2] = { 45.8, 9.4, 33, 300 }, + }, + ["lvl"] = "32-33", + }, + [978] = { + ["coords"] = { + [1] = { 49.3, 6.8, 33, 300 }, + [2] = { 49.1, 6.4, 33, 300 }, + [3] = { 49.4, 6.2, 33, 300 }, + [4] = { 49.7, 6, 33, 300 }, + [5] = { 48.7, 5.9, 33, 300 }, + [6] = { 48.9, 5.8, 33, 300 }, + [7] = { 49.2, 5.8, 33, 300 }, + [8] = { 48.7, 5.4, 33, 300 }, + [9] = { 48.8, 4.5, 33, 300 }, + [10] = { 49.3, 4.1, 33, 300 }, + [11] = { 49.6, 4.1, 33, 300 }, + [12] = { 49.9, 4, 33, 300 }, + [13] = { 49.3, 3.9, 33, 300 }, + [14] = { 49.7, 3.8, 33, 300 }, + }, + ["lvl"] = "38", + }, + [979] = { + ["coords"] = { + [1] = { 49.7, 5.8, 33, 300 }, + [2] = { 48.6, 5.6, 33, 300 }, + [3] = { 48.7, 4.9, 33, 300 }, + [4] = { 49.3, 4, 33, 300 }, + [5] = { 49.9, 3.7, 33, 300 }, + }, + ["lvl"] = "38", + }, + [980] = { + ["coords"] = { + [1] = { 45.1, 50.4, 8, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [981] = { + ["coords"] = { + [1] = { 45.7, 50.9, 8, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [982] = { + ["coords"] = { + [1] = { 46.5, 54.3, 8, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [983] = { + ["coords"] = { + [1] = { 45.8, 52.8, 8, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [984] = { + ["coords"] = { + [1] = { 45.1, 51.4, 8, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [985] = { + ["coords"] = { + [1] = { 44.9, 57.6, 8, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [986] = { + ["coords"] = { + [1] = { 48.2, 57.9, 8, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [987] = { + ["coords"] = { + [1] = { 47.3, 53.4, 8, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [988] = { + ["coords"] = { + [1] = { 48.7, 55.6, 8, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [989] = { + ["coords"] = { + [1] = { 44.8, 56.6, 8, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [994] = { + ["coords"] = {}, + ["lvl"] = "5", + }, + [995] = { + ["coords"] = {}, + ["lvl"] = "3-4", + }, + [996] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "62", + }, + [999] = { + ["coords"] = { + [1] = { 79.5, 46.2, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "37", + }, + [1000] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "20", + }, + [1001] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "20", + }, + [1007] = { + ["coords"] = { + [1] = { 55.9, 75.9, 11, 300 }, + [2] = { 55.2, 75.4, 11, 300 }, + [3] = { 55.7, 75.4, 11, 300 }, + [4] = { 55.9, 75.2, 11, 300 }, + [5] = { 55.5, 75.2, 11, 300 }, + [6] = { 56.7, 75, 11, 300 }, + [7] = { 55.5, 75, 11, 300 }, + [8] = { 62.6, 75, 11, 300 }, + [9] = { 56.1, 74.5, 11, 300 }, + [10] = { 55.4, 74.1, 11, 300 }, + [11] = { 54.4, 73.7, 11, 300 }, + [12] = { 60.7, 73.2, 11, 300 }, + [13] = { 61.9, 73.1, 11, 300 }, + [14] = { 61.2, 72.9, 11, 300 }, + [15] = { 62.5, 72.7, 11, 300 }, + [16] = { 61.2, 72, 11, 300 }, + [17] = { 62.3, 72, 11, 300 }, + [18] = { 61.8, 71.6, 11, 300 }, + [19] = { 60.3, 71.5, 11, 300 }, + [20] = { 66.7, 70.1, 11, 300 }, + [21] = { 62.6, 69.8, 11, 300 }, + [22] = { 62.9, 69.8, 11, 300 }, + [23] = { 62.7, 69.1, 11, 300 }, + [24] = { 63.2, 69.1, 11, 300 }, + [25] = { 62.4, 69, 11, 300 }, + [26] = { 61.6, 66.8, 11, 300 }, + [27] = { 64.3, 64.2, 11, 300 }, + [28] = { 63.9, 63.8, 11, 300 }, + [29] = { 60.5, 63.7, 11, 300 }, + [30] = { 64.4, 63.3, 11, 300 }, + [31] = { 63.8, 63.2, 11, 300 }, + [32] = { 64.2, 62.6, 11, 300 }, + [33] = { 63.7, 62.4, 11, 300 }, + }, + ["lvl"] = "20-21", + }, + [1008] = { + ["coords"] = { + [1] = { 61, 75.1, 11, 300 }, + [2] = { 55.7, 74.8, 11, 300 }, + [3] = { 59.5, 72.7, 11, 300 }, + [4] = { 61.5, 72.7, 11, 300 }, + [5] = { 61.8, 72.5, 11, 300 }, + [6] = { 61.8, 72.4, 11, 300 }, + [7] = { 61.6, 72.3, 11, 300 }, + [8] = { 61.8, 72.2, 11, 300 }, + [9] = { 61.7, 72.2, 11, 300 }, + [10] = { 62.2, 69.9, 11, 300 }, + [11] = { 62.6, 69.6, 11, 300 }, + [12] = { 62.8, 69.6, 11, 300 }, + [13] = { 62.5, 69.5, 11, 300 }, + [14] = { 62.8, 69.3, 11, 300 }, + [15] = { 62.9, 68.5, 11, 300 }, + [16] = { 61.3, 67.9, 11, 300 }, + [17] = { 65.4, 64.8, 11, 300 }, + [18] = { 60.7, 64.3, 11, 300 }, + [19] = { 64.1, 63.7, 11, 300 }, + [20] = { 63.8, 63.6, 11, 300 }, + [21] = { 64, 63.4, 11, 300 }, + [22] = { 63.9, 63.2, 11, 300 }, + [23] = { 61.7, 61.5, 11, 300 }, + [24] = { 65, 60.6, 11, 300 }, + [25] = { 63.6, 60.5, 11, 300 }, + [26] = { 63.5, 59.9, 11, 300 }, + [27] = { 60.5, 59.4, 11, 300 }, + [28] = { 61.5, 59.1, 11, 300 }, + [29] = { 60.6, 58.5, 11, 300 }, + [30] = { 61.9, 58, 11, 300 }, + [31] = { 61.3, 57.9, 11, 300 }, + [32] = { 61.1, 57.1, 11, 300 }, + [33] = { 61.2, 55.6, 11, 300 }, + [34] = { 63.9, 63.8, 11, 300 }, + [35] = { 63.8, 63.2, 11, 300 }, + }, + ["lvl"] = "21-22", + }, + [1009] = { + ["coords"] = { + [1] = { 62.7, 69.3, 11, 300 }, + [2] = { 61.1, 58.7, 11, 300 }, + [3] = { 61.3, 58.4, 11, 300 }, + [4] = { 61.2, 58.3, 11, 300 }, + [5] = { 45.6, 34.8, 11, 300 }, + [6] = { 45.7, 34.5, 11, 300 }, + [7] = { 39, 34, 11, 300 }, + [8] = { 45.2, 31.7, 11, 300 }, + }, + ["lvl"] = "22-23", + }, + [1010] = { + ["coords"] = { + [1] = { 61, 58.6, 11, 300 }, + [2] = { 61.3, 58.6, 11, 300 }, + [3] = { 61, 58.4, 11, 300 }, + [4] = { 63.5, 58.4, 11, 300 }, + [5] = { 61.1, 58.2, 11, 300 }, + [6] = { 59.6, 58.2, 11, 300 }, + [7] = { 62.7, 57, 11, 300 }, + [8] = { 64.5, 56.9, 11, 300 }, + [9] = { 64.9, 56.4, 11, 300 }, + [10] = { 59.6, 55.6, 11, 300 }, + [11] = { 64.5, 55.5, 11, 300 }, + [12] = { 65.1, 55.1, 11, 300 }, + [13] = { 60.7, 54.3, 11, 300 }, + [14] = { 26.5, 37.2, 11, 300 }, + [15] = { 32.3, 35.8, 11, 300 }, + [16] = { 45.6, 35.3, 11, 300 }, + [17] = { 43.6, 35.3, 11, 300 }, + [18] = { 44, 34.9, 11, 300 }, + [19] = { 45.2, 34.9, 11, 300 }, + [20] = { 43.2, 34.7, 11, 300 }, + [21] = { 43.7, 34.7, 11, 300 }, + [22] = { 45.9, 34.7, 11, 300 }, + [23] = { 39.6, 34.6, 11, 300 }, + [24] = { 34.6, 34.4, 11, 300 }, + [25] = { 38.6, 34.4, 11, 300 }, + [26] = { 43.3, 34.2, 11, 300 }, + [27] = { 43.8, 34.1, 11, 300 }, + [28] = { 45.3, 34.1, 11, 300 }, + [29] = { 38.8, 34, 11, 300 }, + [30] = { 39.4, 34, 11, 300 }, + [31] = { 45.4, 32.5, 11, 300 }, + [32] = { 40, 32, 11, 300 }, + [33] = { 45.6, 31.9, 11, 300 }, + [34] = { 35.4, 31.5, 11, 300 }, + [35] = { 44.7, 31.5, 11, 300 }, + [36] = { 51.5, 31, 11, 300 }, + [37] = { 51.2, 30.8, 11, 300 }, + [38] = { 52.5, 28.2, 11, 300 }, + [39] = { 53.1, 27.9, 11, 300 }, + [40] = { 52.8, 27.7, 11, 300 }, + [41] = { 53.3, 27.3, 11, 300 }, + [42] = { 52.2, 27.2, 11, 300 }, + [43] = { 63.6, 60.5, 11, 300 }, + [44] = { 45.6, 34.8, 11, 300 }, + [45] = { 45.7, 34.5, 11, 300 }, + }, + ["lvl"] = "22-23", + }, + [1011] = { + ["coords"] = { + [1] = { 28.5, 37.5, 11, 300 }, + [2] = { 29.9, 37.2, 11, 300 }, + [3] = { 26.7, 35.4, 11, 300 }, + [4] = { 29.5, 35.2, 11, 300 }, + [5] = { 33.1, 35.1, 11, 300 }, + [6] = { 28, 34.9, 11, 300 }, + [7] = { 44, 34.5, 11, 300 }, + [8] = { 36.3, 34.5, 11, 300 }, + [9] = { 43.7, 34.5, 11, 300 }, + [10] = { 39.4, 34.4, 11, 300 }, + [11] = { 40.9, 34, 11, 300 }, + [12] = { 32.2, 33.6, 11, 300 }, + [13] = { 31.6, 33.3, 11, 300 }, + [14] = { 33.3, 33.1, 11, 300 }, + [15] = { 43, 32.9, 11, 300 }, + [16] = { 42.6, 32.7, 11, 300 }, + [17] = { 31.7, 32.6, 11, 300 }, + [18] = { 42.9, 32.3, 11, 300 }, + [19] = { 30.9, 32.2, 11, 300 }, + [20] = { 43, 32, 11, 300 }, + [21] = { 42.6, 31.9, 11, 300 }, + [22] = { 45.1, 31.8, 11, 300 }, + [23] = { 32.5, 31.2, 11, 300 }, + [24] = { 51.1, 30.9, 11, 300 }, + [25] = { 51.6, 30.8, 11, 300 }, + [26] = { 41, 30.8, 11, 300 }, + [27] = { 32.8, 28.9, 11, 300 }, + [28] = { 52.9, 27.4, 11, 300 }, + }, + ["lvl"] = "23-24", + }, + [1012] = { + ["coords"] = { + [1] = { 30.8, 33.1, 11, 300 }, + [2] = { 43, 32.4, 11, 300 }, + [3] = { 29.3, 32.4, 11, 300 }, + [4] = { 42.6, 32.1, 11, 300 }, + [5] = { 38.2, 30.7, 11, 300 }, + [6] = { 38.8, 30.5, 11, 300 }, + [7] = { 31.1, 30.3, 11, 300 }, + [8] = { 31.9, 30.1, 11, 300 }, + [9] = { 37.1, 30.1, 11, 300 }, + [10] = { 35, 29.9, 11, 300 }, + [11] = { 31.5, 29.8, 11, 300 }, + [12] = { 28.6, 29.8, 11, 300 }, + [13] = { 38.6, 29.7, 11, 300 }, + [14] = { 28.3, 29.5, 11, 300 }, + [15] = { 32, 29.5, 11, 300 }, + [16] = { 30.9, 29.3, 11, 300 }, + [17] = { 37.1, 29.1, 11, 300 }, + [18] = { 38.2, 28.8, 11, 300 }, + [19] = { 31.3, 28.8, 11, 300 }, + [20] = { 40.5, 27.8, 11, 300 }, + [21] = { 34.8, 27.6, 11, 300 }, + [22] = { 35.4, 27.5, 11, 300 }, + [23] = { 39.9, 27.5, 11, 300 }, + [24] = { 39.5, 27.4, 11, 300 }, + [25] = { 35.2, 27.1, 11, 300 }, + [26] = { 40.8, 27, 11, 300 }, + [27] = { 40.1, 26.5, 11, 300 }, + [28] = { 42.9, 32.3, 11, 300 }, + }, + ["lvl"] = "24-25", + }, + [1013] = { + ["coords"] = { + [1] = { 31.3, 33, 11, 300 }, + [2] = { 31.4, 32.8, 11, 300 }, + [3] = { 37.9, 29.9, 11, 300 }, + [4] = { 37.7, 29.8, 11, 300 }, + [5] = { 31.4, 29.7, 11, 300 }, + [6] = { 35.1, 27.6, 11, 300 }, + [7] = { 40.2, 27.5, 11, 300 }, + }, + ["lvl"] = "25-26", + }, + [1014] = { + ["coords"] = { + [1] = { 31.3, 32.7, 11, 300 }, + [2] = { 31.4, 29.5, 11, 300 }, + [3] = { 37.7, 29.5, 11, 300 }, + [4] = { 35, 27.4, 11, 300 }, + [5] = { 40.1, 27.3, 11, 300 }, + }, + ["lvl"] = "27", + }, + [1015] = { + ["coords"] = { + [1] = { 57.8, 37.6, 11, 300 }, + [2] = { 57, 37.1, 11, 300 }, + [3] = { 57.5, 33.5, 11, 300 }, + [4] = { 53, 30.3, 11, 300 }, + [5] = { 55.7, 30, 11, 300 }, + [6] = { 51.4, 28.9, 11, 300 }, + [7] = { 56.2, 28.7, 11, 300 }, + [8] = { 56.8, 28.7, 11, 300 }, + [9] = { 54.7, 28, 11, 300 }, + [10] = { 49.9, 27.6, 11, 300 }, + [11] = { 55.6, 26.1, 11, 300 }, + [12] = { 54.6, 25.5, 11, 300 }, + [13] = { 52.4, 25.5, 11, 300 }, + [14] = { 55.5, 24.7, 11, 300 }, + [15] = { 40, 24.5, 11, 300 }, + [16] = { 41.6, 24.1, 11, 300 }, + [17] = { 38.5, 24.1, 11, 300 }, + [18] = { 52.5, 23.4, 11, 300 }, + [19] = { 54.4, 23.2, 11, 300 }, + [20] = { 41, 23.2, 11, 300 }, + [21] = { 40.1, 21.9, 11, 300 }, + [22] = { 41.7, 21.8, 11, 300 }, + }, + ["lvl"] = "23-24", + }, + [1016] = { + ["coords"] = { + [1] = { 57.8, 35.4, 11, 300 }, + [2] = { 59.5, 30.3, 11, 300 }, + [3] = { 56.3, 27.3, 11, 300 }, + [4] = { 57.3, 25.4, 11, 300 }, + [5] = { 35.6, 25, 11, 300 }, + [6] = { 39, 23.6, 11, 300 }, + [7] = { 57.4, 23.4, 11, 300 }, + [8] = { 38.5, 23.1, 11, 300 }, + [9] = { 61.7, 23.1, 11, 300 }, + [10] = { 56.2, 22.5, 11, 300 }, + [11] = { 61.4, 22.1, 11, 300 }, + [12] = { 30.2, 21.6, 11, 300 }, + [13] = { 30.3, 21.2, 11, 300 }, + [14] = { 39.6, 21, 11, 300 }, + [15] = { 30.1, 20.8, 11, 300 }, + [16] = { 30.6, 20.7, 11, 300 }, + [17] = { 30.7, 20.3, 11, 300 }, + [18] = { 32.2, 19.5, 11, 300 }, + }, + ["lvl"] = "24-25", + }, + [1017] = { + ["coords"] = { + [1] = { 56.4, 31.4, 11, 300 }, + [2] = { 57.5, 27.7, 11, 300 }, + [3] = { 56.9, 27.6, 11, 300 }, + [4] = { 58.2, 26.8, 11, 300 }, + [5] = { 37.6, 23.4, 11, 300 }, + [6] = { 37.9, 22.8, 11, 300 }, + [7] = { 37.3, 22.8, 11, 300 }, + [8] = { 36.6, 22.5, 11, 300 }, + [9] = { 37.7, 22.4, 11, 300 }, + [10] = { 35.4, 21.9, 11, 300 }, + [11] = { 58.7, 21.5, 11, 300 }, + [12] = { 59.6, 21.3, 11, 300 }, + [13] = { 58.9, 21.2, 11, 300 }, + [14] = { 34.5, 20.7, 11, 300 }, + [15] = { 37.4, 20.2, 11, 300 }, + [16] = { 38.2, 19.6, 11, 300 }, + [17] = { 37.6, 19.4, 11, 300 }, + [18] = { 33, 18.1, 11, 300 }, + [19] = { 30.4, 16.8, 11, 300 }, + [20] = { 31.2, 16.2, 11, 300 }, + }, + ["lvl"] = "25-26", + }, + [1018] = { + ["coords"] = { + [1] = { 72, 39.9, 11, 300 }, + [2] = { 71.7, 39.1, 11, 300 }, + [3] = { 70, 38.7, 11, 300 }, + [4] = { 67.2, 38, 11, 300 }, + [5] = { 70.2, 37.9, 11, 300 }, + [6] = { 69.8, 37.4, 11, 300 }, + [7] = { 68, 36.3, 11, 300 }, + [8] = { 67.3, 36.3, 11, 300 }, + [9] = { 68, 35.8, 11, 300 }, + [10] = { 69.3, 35.1, 11, 300 }, + [11] = { 69.5, 34.4, 11, 300 }, + [12] = { 69.6, 33.5, 11, 300 }, + [13] = { 68.4, 33.1, 11, 300 }, + [14] = { 68.1, 32.9, 11, 300 }, + [15] = { 66.8, 32.9, 11, 300 }, + [16] = { 66.4, 32.8, 11, 300 }, + [17] = { 69.4, 32.1, 11, 300 }, + [18] = { 66.5, 31.9, 11, 300 }, + [19] = { 65.8, 31.3, 11, 300 }, + [20] = { 67.1, 30.9, 11, 300 }, + [21] = { 67.8, 30.7, 11, 300 }, + [22] = { 69.7, 30.4, 11, 300 }, + [23] = { 65.3, 30.2, 11, 300 }, + [24] = { 70.3, 30, 11, 300 }, + [25] = { 67.3, 29.5, 11, 300 }, + [26] = { 70.6, 29.2, 11, 300 }, + [27] = { 69.1, 28.8, 11, 300 }, + [28] = { 65.1, 28.7, 11, 300 }, + [29] = { 67.4, 28.6, 11, 300 }, + [30] = { 65.9, 28.6, 11, 300 }, + [31] = { 68.7, 27.8, 11, 300 }, + [32] = { 35.2, 20.4, 11, 300 }, + [33] = { 35.5, 19.5, 11, 300 }, + [34] = { 35.4, 18.7, 11, 300 }, + [35] = { 33.6, 17, 11, 300 }, + [36] = { 32.7, 15.3, 11, 300 }, + [37] = { 32.1, 14.6, 11, 300 }, + }, + ["lvl"] = "27-28", + }, + [1019] = { + ["coords"] = { + [1] = { 69.3, 32.9, 11, 300 }, + [2] = { 69.9, 32.8, 11, 300 }, + [3] = { 67.9, 32.4, 11, 300 }, + [4] = { 69.9, 32, 11, 300 }, + [5] = { 70.2, 31.8, 11, 300 }, + [6] = { 69.1, 31.6, 11, 300 }, + [7] = { 67.6, 31.6, 11, 300 }, + [8] = { 68.7, 31.3, 11, 300 }, + [9] = { 70.7, 30.8, 11, 300 }, + [10] = { 69.3, 29.8, 11, 300 }, + [11] = { 69.7, 29.1, 11, 300 }, + [12] = { 70.2, 28.4, 11, 300 }, + [13] = { 69.1, 28.2, 11, 300 }, + [14] = { 67.9, 27.5, 11, 300 }, + [15] = { 40.1, 18.4, 11, 300 }, + [16] = { 39.7, 17.1, 11, 300 }, + [17] = { 38.5, 16.9, 11, 300 }, + [18] = { 38.2, 15.9, 11, 300 }, + [19] = { 38.1, 15.7, 11, 300 }, + [20] = { 33.7, 14.9, 11, 300 }, + [21] = { 33, 13, 11, 300 }, + [22] = { 34, 12.4, 11, 300 }, + [23] = { 24.7, 98.9, 45, 300 }, + [24] = { 25.8, 98.2, 45, 300 }, + }, + ["lvl"] = "29", + }, + [1020] = { + ["coords"] = { + [1] = { 23, 59.8, 11, 300 }, + [2] = { 23.1, 59.6, 11, 300 }, + [3] = { 22.5, 59, 11, 300 }, + [4] = { 23.2, 54.1, 11, 300 }, + [5] = { 22.4, 53.4, 11, 300 }, + [6] = { 19.8, 52.5, 11, 300 }, + [7] = { 21.4, 51.9, 11, 300 }, + [8] = { 23.3, 51.2, 11, 300 }, + [9] = { 24.1, 50.4, 11, 300 }, + [10] = { 23, 50.1, 11, 300 }, + [11] = { 25.2, 49.8, 11, 300 }, + [12] = { 20.7, 48.8, 11, 300 }, + [13] = { 24.2, 48.3, 11, 300 }, + [14] = { 26, 47.5, 11, 300 }, + [15] = { 23.9, 47.2, 11, 300 }, + [16] = { 24.6, 46.8, 11, 300 }, + [17] = { 27.2, 46.8, 11, 300 }, + [18] = { 29.5, 46.5, 11, 300 }, + [19] = { 26.4, 46.3, 11, 300 }, + [20] = { 24.3, 46.3, 11, 300 }, + [21] = { 29.7, 46.2, 11, 300 }, + [22] = { 27.3, 43.7, 11, 300 }, + [23] = { 28.2, 42.7, 11, 300 }, + [24] = { 29.4, 42.5, 11, 300 }, + [25] = { 28.8, 42.4, 11, 300 }, + [26] = { 37.1, 42.3, 11, 300 }, + [27] = { 31.5, 42.1, 11, 300 }, + }, + ["lvl"] = "22-23", + }, + [1021] = { + ["coords"] = { + [1] = { 23.7, 60.4, 11, 300 }, + [2] = { 23, 56.5, 11, 300 }, + [3] = { 23.5, 56, 11, 300 }, + [4] = { 22.6, 55.9, 11, 300 }, + [5] = { 23, 55.6, 11, 300 }, + [6] = { 24.1, 53, 11, 300 }, + [7] = { 24.2, 52.5, 11, 300 }, + [8] = { 23.9, 52.4, 11, 300 }, + [9] = { 22.8, 50.7, 11, 300 }, + [10] = { 26.2, 49.1, 11, 300 }, + [11] = { 25.8, 48.8, 11, 300 }, + [12] = { 26.1, 48.6, 11, 300 }, + [13] = { 29.3, 45.4, 11, 300 }, + [14] = { 29.8, 45.2, 11, 300 }, + [15] = { 29.9, 44.4, 11, 300 }, + [16] = { 30.2, 44, 11, 300 }, + }, + ["lvl"] = "24-25", + }, + [1022] = { + ["coords"] = { + [1] = { 35.6, 51.9, 11, 300 }, + [2] = { 32.8, 51, 11, 300 }, + [3] = { 34.5, 50.9, 11, 300 }, + [4] = { 35.3, 50.8, 11, 300 }, + [5] = { 35.9, 49.6, 11, 300 }, + [6] = { 35.2, 49.5, 11, 300 }, + [7] = { 30.5, 48.7, 11, 300 }, + [8] = { 31.3, 48.5, 11, 300 }, + [9] = { 36.1, 48.4, 11, 300 }, + [10] = { 31.7, 47, 11, 300 }, + [11] = { 34.4, 45.9, 11, 300 }, + [12] = { 33.7, 44.8, 11, 300 }, + [13] = { 35.8, 43.8, 11, 300 }, + [14] = { 34.4, 43.7, 11, 300 }, + }, + ["lvl"] = "25-26", + }, + [1023] = { + ["coords"] = { + [1] = { 33.7, 49.8, 11, 300 }, + [2] = { 34.4, 49.6, 11, 300 }, + [3] = { 32.2, 48.6, 11, 300 }, + [4] = { 33.7, 48.5, 11, 300 }, + [5] = { 32.8, 48.4, 11, 300 }, + [6] = { 34.6, 47.3, 11, 300 }, + [7] = { 33.3, 47, 11, 300 }, + [8] = { 35.2, 46.2, 11, 300 }, + [9] = { 33.6, 46.1, 11, 300 }, + }, + ["lvl"] = "26-27", + }, + [1024] = { + ["coords"] = { + [1] = { 12.7, 42.5, 11, 300 }, + [2] = { 13.7, 42, 11, 300 }, + [3] = { 14.4, 41.3, 11, 300 }, + [4] = { 11.9, 41.2, 11, 300 }, + [5] = { 13.6, 41.2, 11, 300 }, + [6] = { 20.7, 41.2, 11, 300 }, + [7] = { 19, 41.1, 11, 300 }, + [8] = { 13.1, 40.9, 11, 300 }, + [9] = { 17.8, 40.9, 11, 300 }, + [10] = { 15.8, 40.8, 11, 300 }, + [11] = { 14, 40.5, 11, 300 }, + [12] = { 18.6, 40.2, 11, 300 }, + [13] = { 19.9, 40.1, 11, 300 }, + [14] = { 12.5, 40.1, 11, 300 }, + [15] = { 15.4, 40, 11, 300 }, + [16] = { 16.9, 39.9, 11, 300 }, + [17] = { 13.5, 39.9, 11, 300 }, + [18] = { 10.9, 39.9, 11, 300 }, + [19] = { 14.8, 39.4, 11, 300 }, + [20] = { 12.2, 39.1, 11, 300 }, + [21] = { 15.3, 38.9, 11, 300 }, + [22] = { 15.6, 38.9, 11, 300 }, + [23] = { 15.1, 38.8, 11, 300 }, + [24] = { 19.1, 38.6, 11, 300 }, + [25] = { 15.4, 38.6, 11, 300 }, + [26] = { 18.5, 38.6, 11, 300 }, + [27] = { 13.8, 38.4, 11, 300 }, + [28] = { 13.5, 37.9, 11, 300 }, + }, + ["lvl"] = "20-21", + }, + [1025] = { + ["coords"] = { + [1] = { 18, 39.8, 11, 300 }, + [2] = { 18.4, 39.5, 11, 300 }, + [3] = { 18.6, 39.1, 11, 300 }, + [4] = { 10.3, 38.6, 11, 300 }, + [5] = { 15.2, 38.5, 11, 300 }, + [6] = { 13.3, 38.2, 11, 300 }, + [7] = { 11.2, 37.6, 11, 300 }, + [8] = { 12.7, 37, 11, 300 }, + [9] = { 13.6, 36.6, 11, 300 }, + [10] = { 10.1, 36.2, 11, 300 }, + [11] = { 12.1, 36.2, 11, 300 }, + [12] = { 14.4, 35.3, 11, 300 }, + [13] = { 11, 35.2, 11, 300 }, + [14] = { 12.9, 35.1, 11, 300 }, + [15] = { 13.5, 34.1, 11, 300 }, + [16] = { 15.2, 33.9, 11, 300 }, + [17] = { 13.6, 41.2, 11, 300 }, + [18] = { 13.8, 38.4, 11, 300 }, + [19] = { 13.5, 37.9, 11, 300 }, + }, + ["lvl"] = "21-22", + }, + [1026] = { + ["coords"] = { + [1] = { 22.3, 41, 11, 300 }, + [2] = { 25.5, 40, 11, 300 }, + [3] = { 25, 38.5, 11, 300 }, + [4] = { 13.5, 38.3, 11, 300 }, + [5] = { 14.5, 35.5, 11, 300 }, + }, + ["lvl"] = "22-23", + }, + [1027] = { + ["coords"] = { + [1] = { 21.5, 36.5, 11, 300 }, + [2] = { 13.9, 35.1, 11, 300 }, + [3] = { 13.5, 34.5, 11, 300 }, + [4] = { 19.1, 32.8, 11, 300 }, + [5] = { 14, 32.8, 11, 300 }, + [6] = { 16.2, 30.8, 11, 300 }, + [7] = { 16.5, 30.4, 11, 300 }, + [8] = { 16.4, 30, 11, 300 }, + [9] = { 11.7, 28.6, 11, 300 }, + [10] = { 12.6, 27.5, 11, 300 }, + [11] = { 13.6, 26.9, 11, 300 }, + [12] = { 12.5, 25.4, 11, 300 }, + [13] = { 12.8, 23, 11, 300 }, + [14] = { 13.8, 22.3, 11, 300 }, + [15] = { 17, 21.7, 11, 300 }, + [16] = { 14.3, 20.9, 11, 300 }, + [17] = { 15.6, 20.8, 11, 300 }, + [18] = { 17.7, 20.7, 11, 300 }, + }, + ["lvl"] = "24-25", + }, + [1028] = { + ["coords"] = { + [1] = { 23.3, 39.8, 11, 300 }, + [2] = { 22.3, 39, 11, 300 }, + [3] = { 20.8, 37.9, 11, 300 }, + [4] = { 21.9, 37.7, 11, 300 }, + [5] = { 23.1, 37.4, 11, 300 }, + [6] = { 24.8, 37.3, 11, 300 }, + [7] = { 16.2, 36.4, 11, 300 }, + [8] = { 24.4, 36.4, 11, 300 }, + [9] = { 16, 36.3, 11, 300 }, + [10] = { 20.1, 36.3, 11, 300 }, + [11] = { 16.4, 36.2, 11, 300 }, + [12] = { 16.2, 36, 11, 300 }, + [13] = { 22.6, 35.5, 11, 300 }, + [14] = { 20.8, 35.4, 11, 300 }, + [15] = { 21.5, 33.8, 11, 300 }, + [16] = { 11.9, 33.7, 11, 300 }, + [17] = { 10.4, 33.7, 11, 300 }, + [18] = { 13.1, 32.8, 11, 300 }, + [19] = { 11.1, 32.7, 11, 300 }, + [20] = { 15.2, 31.6, 11, 300 }, + [21] = { 16.6, 31.6, 11, 300 }, + [22] = { 12, 31.6, 11, 300 }, + [23] = { 11.3, 30.5, 11, 300 }, + }, + ["lvl"] = "23-24", + }, + [1029] = { + ["coords"] = { + [1] = { 16.5, 30.7, 11, 300 }, + [2] = { 16.1, 30.4, 11, 300 }, + }, + ["lvl"] = "25-26", + }, + [1030] = { + ["coords"] = { + [1] = { 56.7, 79.1, 11, 300 }, + [2] = { 61.8, 79, 11, 300 }, + [3] = { 54.4, 78.6, 11, 300 }, + [4] = { 61.8, 78.5, 11, 300 }, + [5] = { 60.6, 77.5, 11, 300 }, + [6] = { 57.7, 73.9, 11, 300 }, + [7] = { 56.7, 73.4, 11, 300 }, + [8] = { 59.1, 73.2, 11, 300 }, + [9] = { 55.3, 73, 11, 300 }, + [10] = { 54, 72.4, 11, 300 }, + [11] = { 59.1, 70.8, 11, 300 }, + [12] = { 59.4, 69.2, 11, 300 }, + [13] = { 56.3, 66.7, 11, 300 }, + [14] = { 54.6, 66.6, 11, 300 }, + [15] = { 57.2, 65.9, 11, 300 }, + [16] = { 59.8, 65.6, 11, 300 }, + [17] = { 61.6, 65.4, 11, 300 }, + [18] = { 55.4, 63.1, 11, 300 }, + [19] = { 65.4, 61.6, 11, 300 }, + [20] = { 66.2, 61.4, 11, 300 }, + [21] = { 66.4, 61.3, 11, 300 }, + [22] = { 65.4, 58.5, 11, 300 }, + [23] = { 54.9, 54.7, 11, 300 }, + [24] = { 53.3, 50.4, 11, 300 }, + }, + ["lvl"] = "20-21", + }, + [1031] = { + ["coords"] = { + [1] = { 44.3, 25.4, 11, 300 }, + [2] = { 43.8, 25.2, 11, 300 }, + [3] = { 44.7, 25, 11, 300 }, + [4] = { 44.6, 24.8, 11, 300 }, + [5] = { 44.3, 24.7, 11, 300 }, + [6] = { 44.8, 24.3, 11, 300 }, + [7] = { 44.6, 24.2, 11, 300 }, + [8] = { 44, 24.2, 11, 300 }, + }, + ["lvl"] = "24-25", + }, + [1032] = { + ["coords"] = { + [1] = { 22.9, 59.5, 11, 300 }, + [2] = { 21.3, 52.2, 11, 300 }, + [3] = { 65.6, 51.6, 11, 300 }, + [4] = { 64.2, 49.7, 11, 300 }, + [5] = { 23.9, 48.4, 11, 300 }, + [6] = { 65, 46.1, 11, 300 }, + [7] = { 28.3, 45.7, 11, 300 }, + [8] = { 58.8, 44.9, 11, 300 }, + [9] = { 63.7, 44.6, 11, 300 }, + [10] = { 57.1, 44.5, 11, 300 }, + [11] = { 61.7, 44.3, 11, 300 }, + [12] = { 59.5, 40.1, 11, 300 }, + [13] = { 61.9, 37.5, 11, 300 }, + [14] = { 56.8, 33.7, 11, 300 }, + [15] = { 57, 31.2, 11, 300 }, + [16] = { 56.8, 29.5, 11, 300 }, + [17] = { 43.3, 29.1, 11, 300 }, + [18] = { 58.9, 28.9, 11, 300 }, + [19] = { 43.3, 27.8, 11, 300 }, + [20] = { 44.1, 27.7, 11, 300 }, + [21] = { 47.4, 27.7, 11, 300 }, + [22] = { 43.5, 26.6, 11, 300 }, + [23] = { 44.2, 26.6, 11, 300 }, + [24] = { 46.7, 26.6, 11, 300 }, + [25] = { 44.9, 26.6, 11, 300 }, + [26] = { 42.9, 26.3, 11, 300 }, + [27] = { 44.1, 25.7, 11, 300 }, + [28] = { 43.4, 25.6, 11, 300 }, + [29] = { 44.8, 25.5, 11, 300 }, + [30] = { 47.4, 25.4, 11, 300 }, + [31] = { 55.9, 24.9, 11, 300 }, + [32] = { 46.4, 24.8, 11, 300 }, + [33] = { 43.5, 24.5, 11, 300 }, + [34] = { 48.2, 24.4, 11, 300 }, + [35] = { 44.9, 24.4, 11, 300 }, + [36] = { 44.4, 24.4, 11, 300 }, + }, + ["lvl"] = "23-24", + }, + [1033] = { + ["coords"] = { + [1] = { 69, 52.6, 11, 300 }, + [2] = { 70.2, 51.1, 11, 300 }, + [3] = { 69.9, 47.2, 11, 300 }, + [4] = { 67.9, 46.7, 11, 300 }, + [5] = { 66.7, 46.3, 11, 300 }, + [6] = { 69.9, 43.5, 11, 300 }, + [7] = { 67.1, 42.9, 11, 300 }, + [8] = { 65.2, 42.1, 11, 300 }, + [9] = { 64.9, 36.9, 11, 300 }, + [10] = { 62.5, 35.1, 11, 300 }, + [11] = { 43.9, 25.5, 11, 300 }, + [12] = { 44, 25.3, 11, 300 }, + [13] = { 44.5, 24.9, 11, 300 }, + [14] = { 44.8, 24.8, 11, 300 }, + [15] = { 44, 24.7, 11, 300 }, + [16] = { 44.6, 24.5, 11, 300 }, + [17] = { 43.9, 24.3, 11, 300 }, + [18] = { 43.8, 24.1, 11, 300 }, + }, + ["lvl"] = "25-26", + }, + [1034] = { + ["coords"] = { + [1] = { 49.8, 48.5, 11, 300 }, + [2] = { 49, 48.4, 11, 300 }, + [3] = { 50.6, 48.2, 11, 300 }, + [4] = { 47, 48.2, 11, 300 }, + [5] = { 47.7, 48.1, 11, 300 }, + [6] = { 48.4, 47.6, 11, 300 }, + [7] = { 45.5, 47.4, 11, 300 }, + [8] = { 51.1, 47.3, 11, 300 }, + [9] = { 47.4, 47.3, 11, 300 }, + [10] = { 47.3, 47, 11, 300 }, + [11] = { 39.4, 46.9, 11, 300 }, + [12] = { 40.2, 46.7, 11, 300 }, + [13] = { 45.1, 46.6, 11, 300 }, + [14] = { 46.6, 46.5, 11, 300 }, + [15] = { 41, 46.5, 11, 300 }, + [16] = { 46.3, 46.4, 11, 300 }, + [17] = { 47.8, 46.4, 11, 300 }, + [18] = { 46.6, 46.3, 11, 300 }, + [19] = { 44.6, 46.3, 11, 300 }, + [20] = { 51.2, 46.2, 11, 300 }, + [21] = { 47.1, 46.1, 11, 300 }, + [22] = { 52.3, 46, 11, 300 }, + [23] = { 46.2, 46, 11, 300 }, + [24] = { 46, 45.8, 11, 300 }, + [25] = { 41, 45.5, 11, 300 }, + [26] = { 41.6, 45.5, 11, 300 }, + [27] = { 45.8, 45.4, 11, 300 }, + [28] = { 46.8, 45.4, 11, 300 }, + [29] = { 44.8, 45.4, 11, 300 }, + [30] = { 46.2, 45.2, 11, 300 }, + [31] = { 47.6, 45.1, 11, 300 }, + [32] = { 45.6, 44.9, 11, 300 }, + [33] = { 52.1, 44.8, 11, 300 }, + [34] = { 42.2, 44.8, 11, 300 }, + [35] = { 45, 44.8, 11, 300 }, + [36] = { 44.2, 44.8, 11, 300 }, + [37] = { 46.2, 44.2, 11, 300 }, + [38] = { 44.6, 43.8, 11, 300 }, + [39] = { 44.1, 43.7, 11, 300 }, + [40] = { 42.6, 43.6, 11, 300 }, + [41] = { 43.7, 43.5, 11, 300 }, + [42] = { 45.3, 43.5, 11, 300 }, + [43] = { 46.2, 43.3, 11, 300 }, + [44] = { 44.1, 43.2, 11, 300 }, + [45] = { 44.9, 43, 11, 300 }, + [46] = { 43.7, 42.8, 11, 300 }, + [47] = { 45.4, 42.8, 11, 300 }, + [48] = { 45.1, 42.6, 11, 300 }, + [49] = { 45.3, 42.5, 11, 300 }, + [50] = { 42.6, 42.4, 11, 300 }, + [51] = { 44.9, 42.1, 11, 300 }, + [52] = { 46.1, 42, 11, 300 }, + [53] = { 43.3, 41.2, 11, 300 }, + [54] = { 41.9, 40.6, 11, 300 }, + [55] = { 42.6, 40, 11, 300 }, + [56] = { 41, 39.8, 11, 300 }, + }, + ["lvl"] = "26-27", + }, + [1035] = { + ["coords"] = { + [1] = { 53.5, 54.2, 11, 300 }, + [2] = { 50.7, 49.5, 11, 300 }, + [3] = { 47.9, 48.6, 11, 300 }, + [4] = { 45.9, 46.9, 11, 300 }, + [5] = { 50.1, 46.7, 11, 300 }, + [6] = { 38.5, 46.3, 11, 300 }, + [7] = { 38.6, 46, 11, 300 }, + [8] = { 45.8, 45.8, 11, 300 }, + [9] = { 49.8, 44.7, 11, 300 }, + [10] = { 50.4, 44.5, 11, 300 }, + [11] = { 45.4, 42.9, 11, 300 }, + }, + ["lvl"] = "27-28", + }, + [1036] = { + ["coords"] = { + [1] = { 53.7, 54.4, 11, 300 }, + [2] = { 52.4, 54.1, 11, 300 }, + [3] = { 53.3, 54.1, 11, 300 }, + [4] = { 53.4, 54.1, 11, 300 }, + [5] = { 52.5, 53.6, 11, 300 }, + [6] = { 49.4, 46.2, 11, 300 }, + [7] = { 49.5, 46.1, 11, 300 }, + }, + ["lvl"] = "28-29", + }, + [1037] = { + ["coords"] = { + [1] = { 43, 43.7, 11, 27000 }, + }, + ["lvl"] = "30", + ["rnk"] = "4", + }, + [1038] = { + ["coords"] = { + [1] = { 53, 55.3, 11, 300 }, + [2] = { 53.9, 54.4, 11, 300 }, + [3] = { 53.7, 54.4, 11, 300 }, + [4] = { 53.1, 53.2, 11, 300 }, + [5] = { 49.6, 46.4, 11, 300 }, + [6] = { 52.4, 54.1, 11, 300 }, + }, + ["lvl"] = "28-29", + }, + [1039] = { + ["coords"] = { + [1] = { 60.9, 70, 11, 300 }, + [2] = { 63.8, 65.4, 11, 300 }, + [3] = { 60.1, 61.8, 11, 300 }, + [4] = { 62.4, 59.5, 11, 300 }, + [5] = { 60, 56.8, 11, 300 }, + [6] = { 60.1, 50.8, 11, 300 }, + [7] = { 19.7, 48.4, 11, 300 }, + [8] = { 16, 47.7, 11, 300 }, + [9] = { 17.9, 46.7, 11, 300 }, + [10] = { 21.1, 45.3, 11, 300 }, + [11] = { 22.7, 45.1, 11, 300 }, + [12] = { 20.5, 42.1, 11, 300 }, + [13] = { 17.1, 42, 11, 300 }, + [14] = { 16.6, 41.4, 11, 300 }, + [15] = { 29.5, 28.1, 11, 300 }, + [16] = { 32, 27.3, 11, 300 }, + [17] = { 31.3, 22.2, 11, 300 }, + }, + ["lvl"] = "20-21", + }, + [1040] = { + ["coords"] = { + [1] = { 55, 46.4, 11, 300 }, + [2] = { 54, 41.4, 11, 300 }, + [3] = { 27.2, 39.2, 11, 300 }, + [4] = { 55, 37.2, 11, 300 }, + [5] = { 27.4, 37.1, 11, 300 }, + [6] = { 53.2, 36.5, 11, 300 }, + [7] = { 25.3, 35.5, 11, 300 }, + [8] = { 37.4, 33.4, 11, 300 }, + [9] = { 40.6, 33.2, 11, 300 }, + [10] = { 35.7, 33.1, 11, 300 }, + [11] = { 47.7, 32.8, 11, 300 }, + [12] = { 23.6, 32, 11, 300 }, + [13] = { 25.8, 31.9, 11, 300 }, + [14] = { 22.5, 30, 11, 300 }, + [15] = { 46.4, 29.2, 11, 300 }, + [16] = { 20.8, 28.4, 11, 300 }, + [17] = { 18.5, 27.7, 11, 300 }, + [18] = { 33, 25.7, 11, 300 }, + [19] = { 28.9, 20.5, 11, 300 }, + }, + ["lvl"] = "24-25", + }, + [1041] = { + ["coords"] = { + [1] = { 29.6, 28.2, 11, 300 }, + [2] = { 32.2, 26.7, 11, 300 }, + [3] = { 31.2, 22.3, 11, 300 }, + }, + ["lvl"] = "25-26", + }, + [1042] = { + ["coords"] = { + [1] = { 66.7, 54.2, 11, 300 }, + [2] = { 65.8, 53.4, 11, 300 }, + [3] = { 64.3, 52, 11, 300 }, + [4] = { 62.7, 51.6, 11, 300 }, + [5] = { 63.7, 50.8, 11, 300 }, + [6] = { 63.4, 48.8, 11, 300 }, + [7] = { 63.5, 48.7, 11, 300 }, + [8] = { 62, 46.6, 11, 300 }, + [9] = { 59.6, 45.8, 11, 300 }, + [10] = { 59.6, 44.1, 11, 300 }, + [11] = { 59.8, 40.9, 11, 300 }, + [12] = { 60.4, 40.5, 11, 300 }, + [13] = { 59.5, 39.2, 11, 300 }, + }, + ["lvl"] = "23-24", + }, + [1043] = { + ["coords"] = { + [1] = { 67.5, 52.5, 11, 300 }, + [2] = { 67.1, 51.9, 11, 300 }, + [3] = { 69.1, 51.4, 11, 300 }, + [4] = { 65.9, 51.2, 11, 300 }, + [5] = { 68.1, 50.7, 11, 300 }, + [6] = { 65.1, 49.5, 11, 300 }, + [7] = { 66.9, 49.3, 11, 300 }, + [8] = { 64.8, 48.7, 11, 300 }, + [9] = { 66.5, 48.5, 11, 300 }, + [10] = { 64.2, 47.6, 11, 300 }, + [11] = { 63.7, 47.5, 11, 300 }, + [12] = { 62.2, 45.8, 11, 300 }, + [13] = { 60.9, 44.3, 11, 300 }, + [14] = { 62.4, 44.2, 11, 300 }, + [15] = { 61.9, 41.6, 11, 300 }, + [16] = { 61, 40.5, 11, 300 }, + [17] = { 61.8, 40.1, 11, 300 }, + [18] = { 61.3, 38.3, 11, 300 }, + [19] = { 62.6, 37.3, 11, 300 }, + [20] = { 61, 36.8, 11, 300 }, + [21] = { 59.5, 32.7, 11, 300 }, + }, + ["lvl"] = "24-25", + }, + [1044] = { + ["coords"] = { + [1] = { 70.8, 48.5, 11, 300 }, + [2] = { 71.6, 47.4, 11, 300 }, + [3] = { 70.4, 45, 11, 300 }, + [4] = { 67.6, 43.1, 11, 300 }, + [5] = { 66.6, 42.9, 11, 300 }, + [6] = { 66.5, 41.5, 11, 300 }, + [7] = { 64.3, 39.7, 11, 300 }, + [8] = { 64.2, 37.9, 11, 300 }, + [9] = { 63.4, 36.5, 11, 300 }, + [10] = { 64.1, 31.8, 11, 300 }, + }, + ["lvl"] = "26-27", + }, + [1045] = { + ["coords"] = { + [1] = { 79.5, 48.4, 11, 600 }, + [2] = { 78.8, 47.3, 11, 600 }, + }, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [1046] = { + ["coords"] = { + [1] = { 82.1, 49.5, 11, 600 }, + [2] = { 77.9, 46.3, 11, 600 }, + [3] = { 78.9, 44.4, 11, 600 }, + }, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [1047] = { + ["coords"] = { + [1] = { 85.2, 51.6, 11, 600 }, + [2] = { 84.7, 51.1, 11, 600 }, + [3] = { 85.9, 50.6, 11, 600 }, + [4] = { 85.5, 50, 11, 600 }, + [5] = { 83.7, 49.5, 11, 600 }, + [6] = { 81.1, 48.5, 11, 600 }, + [7] = { 83, 48.5, 11, 600 }, + [8] = { 82, 47.1, 11, 600 }, + }, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [1048] = { + ["coords"] = { + [1] = { 89.4, 64.3, 11, 600 }, + [2] = { 87.7, 64, 11, 600 }, + [3] = { 88.5, 62.9, 11, 600 }, + [4] = { 87.7, 61.5, 11, 600 }, + [5] = { 86.2, 53.1, 11, 600 }, + [6] = { 86.9, 52.5, 11, 600 }, + [7] = { 87.1, 51.3, 11, 600 }, + }, + ["lvl"] = "60-61", + ["rnk"] = "1", + }, + [1049] = { + ["coords"] = { + [1] = { 88.4, 60.4, 11, 600 }, + [2] = { 89.4, 59.5, 11, 600 }, + [3] = { 87.7, 59.3, 11, 600 }, + [4] = { 88.8, 58.2, 11, 600 }, + [5] = { 87.2, 58, 11, 600 }, + [6] = { 89.2, 56.8, 11, 600 }, + [7] = { 87.6, 56.6, 11, 600 }, + [8] = { 88.3, 56.2, 11, 600 }, + [9] = { 87.2, 55.6, 11, 600 }, + [10] = { 87, 53.5, 11, 600 }, + [11] = { 87.7, 52.1, 11, 600 }, + }, + ["lvl"] = "61-62", + ["rnk"] = "1", + }, + [1050] = { + ["coords"] = { + [1] = { 83.6, 71.4, 11, 600 }, + [2] = { 82, 71.4, 11, 600 }, + [3] = { 82.8, 71.4, 11, 600 }, + [4] = { 84.6, 71.1, 11, 600 }, + [5] = { 86.1, 70.5, 11, 600 }, + [6] = { 86.6, 69.5, 11, 600 }, + [7] = { 83.5, 69.4, 11, 600 }, + [8] = { 82, 69.3, 11, 600 }, + [9] = { 82.8, 69.2, 11, 600 }, + [10] = { 85, 69.1, 11, 600 }, + [11] = { 84.4, 69.1, 11, 600 }, + [12] = { 85.4, 67.8, 11, 600 }, + [13] = { 87, 67, 11, 600 }, + [14] = { 87.7, 66.3, 11, 600 }, + [15] = { 86.3, 66.3, 11, 600 }, + [16] = { 87.4, 65.7, 11, 600 }, + [17] = { 87.1, 65.4, 11, 600 }, + }, + ["lvl"] = "61-62", + ["rnk"] = "1", + }, + [1051] = { + ["coords"] = { + [1] = { 62.3, 29.7, 11, 300 }, + [2] = { 63, 29.6, 11, 300 }, + [3] = { 61.9, 28.8, 11, 300 }, + [4] = { 59.9, 25.4, 11, 300 }, + [5] = { 60.5, 24.9, 11, 300 }, + [6] = { 59.5, 23.7, 11, 300 }, + [7] = { 60.3, 23.7, 11, 300 }, + [8] = { 59.9, 23, 11, 300 }, + [9] = { 48.4, 17.7, 11, 300 }, + [10] = { 48.9, 17.4, 11, 300 }, + [11] = { 48.2, 17.3, 11, 300 }, + [12] = { 49, 17.1, 11, 300 }, + [13] = { 47.8, 17.1, 11, 300 }, + [14] = { 48, 16.6, 11, 300 }, + [15] = { 48.4, 16.1, 11, 300 }, + [16] = { 47.2, 15.7, 11, 300 }, + }, + ["lvl"] = "27-28", + ["rnk"] = "1", + }, + [1052] = { + ["coords"] = { + [1] = { 63.3, 28.8, 11, 300 }, + [2] = { 62, 27.6, 11, 300 }, + [3] = { 62.9, 27.4, 11, 300 }, + [4] = { 62, 26.5, 11, 300 }, + [5] = { 61.8, 26, 11, 300 }, + [6] = { 59.9, 24.5, 11, 300 }, + [7] = { 48.1, 18.6, 11, 300 }, + [8] = { 48.1, 18.1, 11, 300 }, + [9] = { 46.7, 17.2, 11, 300 }, + [10] = { 47.2, 17.1, 11, 300 }, + [11] = { 46.8, 16.4, 11, 300 }, + [12] = { 46.4, 16.2, 11, 300 }, + [13] = { 47.7, 16.1, 11, 300 }, + [14] = { 48.1, 15.7, 11, 300 }, + [15] = { 48.1, 15.1, 11, 300 }, + [16] = { 45.2, 93.4, 45, 400 }, + [17] = { 45.2, 93.1, 45, 400 }, + [18] = { 62.3, 29.7, 11, 300 }, + }, + ["lvl"] = "28-29", + ["rnk"] = "1", + }, + [1053] = { + ["coords"] = { + [1] = { 61.5, 27.3, 11, 300 }, + [2] = { 61.5, 26.1, 11, 300 }, + [3] = { 62.5, 25.8, 11, 300 }, + [4] = { 61.9, 25.4, 11, 300 }, + [5] = { 60.1, 24.6, 11, 300 }, + [6] = { 59.8, 24.6, 11, 300 }, + [7] = { 60.3, 24.3, 11, 300 }, + [8] = { 60, 24.1, 11, 300 }, + [9] = { 48, 18.8, 11, 300 }, + [10] = { 47, 18.4, 11, 300 }, + [11] = { 46.9, 18.1, 11, 300 }, + [12] = { 47.1, 17.9, 11, 300 }, + [13] = { 46.8, 17.9, 11, 300 }, + [14] = { 47.1, 17.5, 11, 300 }, + [15] = { 46, 16.9, 11, 300 }, + [16] = { 45.6, 16.8, 11, 300 }, + [17] = { 46.1, 16.6, 11, 300 }, + [18] = { 46.3, 16.6, 11, 300 }, + [19] = { 45.9, 16.3, 11, 300 }, + [20] = { 45.7, 16.2, 11, 300 }, + [21] = { 47.5, 15.5, 11, 300 }, + [22] = { 47.5, 15.1, 11, 300 }, + [23] = { 48.2, 15, 11, 300 }, + }, + ["lvl"] = "29-30", + ["rnk"] = "1", + }, + [1054] = { + ["coords"] = { + [1] = { 62.5, 29, 11, 300 }, + [2] = { 62.2, 28, 11, 300 }, + [3] = { 61.8, 26.6, 11, 300 }, + [4] = { 62.1, 26.3, 11, 300 }, + [5] = { 62, 26.1, 11, 300 }, + [6] = { 60.1, 24.4, 11, 300 }, + [7] = { 46.5, 18.7, 11, 300 }, + [8] = { 46.6, 18.6, 11, 300 }, + [9] = { 46.7, 18.6, 11, 300 }, + [10] = { 47.4, 15, 11, 300 }, + [11] = { 47.6, 14.7, 11, 300 }, + }, + ["lvl"] = "30-31", + ["rnk"] = "1", + }, + [1055] = { + ["coords"] = {}, + ["lvl"] = "47", + }, + [1056] = { + ["coords"] = {}, + ["lvl"] = "45", + }, + [1057] = { + ["coords"] = { + [1] = { 49.8, 51, 11, 300 }, + [2] = { 50.5, 50.8, 11, 300 }, + [3] = { 51.4, 50.8, 11, 300 }, + [4] = { 51.8, 49.5, 11, 300 }, + [5] = { 51.5, 48.4, 11, 300 }, + [6] = { 49.9, 47.8, 11, 300 }, + [7] = { 49.3, 47.5, 11, 300 }, + [8] = { 47.8, 47.4, 11, 300 }, + [9] = { 46.6, 47.2, 11, 300 }, + [10] = { 46.2, 47, 11, 300 }, + [11] = { 47.6, 46.9, 11, 300 }, + [12] = { 49.5, 46.9, 11, 300 }, + [13] = { 48.9, 46.8, 11, 300 }, + [14] = { 48.6, 46, 11, 300 }, + [15] = { 46.1, 45.7, 11, 300 }, + [16] = { 49.8, 45.7, 11, 300 }, + [17] = { 45.5, 45.4, 11, 300 }, + [18] = { 49.1, 45.2, 11, 300 }, + [19] = { 45.7, 43.3, 11, 300 }, + [20] = { 45.6, 42.5, 11, 300 }, + [21] = { 45.8, 45.4, 11, 300 }, + [22] = { 45.1, 42.6, 11, 300 }, + }, + ["lvl"] = "27-28", + }, + [1058] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "40", + }, + [1059] = { + ["coords"] = { + [1] = { 44.3, 45, 33, 300 }, + }, + ["lvl"] = "45", + }, + [1060] = { + ["coords"] = { + [1] = { 47.7, 44.3, 33, 1800 }, + }, + ["lvl"] = "44", + ["rnk"] = "1", + }, + [1061] = { + ["coords"] = { + [1] = { 23.4, 8.1, 33, 300 }, + }, + ["lvl"] = "41", + }, + [1062] = { + ["coords"] = { + [1] = { 23.5, 9.5, 33, 300 }, + }, + ["lvl"] = "40", + }, + [1063] = { + ["coords"] = { + [1] = { 70, 53.2, 8, 115200 }, + }, + ["lvl"] = "47", + ["rnk"] = "2", + }, + [1064] = { + ["coords"] = { + [1] = { 32.7, 28.8, 33, 300 }, + [2] = { 32.7, 28.7, 33, 300 }, + [3] = { 32.5, 28.6, 33, 300 }, + [4] = { 32.1, 28.6, 33, 300 }, + [5] = { 31.2, 28.6, 33, 300 }, + [6] = { 31.1, 28.5, 33, 300 }, + [7] = { 32.8, 28.4, 33, 300 }, + [8] = { 31.1, 28.4, 33, 300 }, + [9] = { 31.9, 28.3, 33, 300 }, + [10] = { 32, 28.3, 33, 300 }, + [11] = { 31.3, 28.2, 33, 300 }, + [12] = { 31.8, 27.8, 33, 300 }, + [13] = { 32, 27.4, 33, 300 }, + [14] = { 32.1, 27.4, 33, 300 }, + [15] = { 31.8, 27.4, 33, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [1065] = { + ["coords"] = { + [1] = { 41.6, 20.8, 40, 300 }, + [2] = { 41.8, 20.7, 40, 300 }, + [3] = { 41.9, 20.5, 40, 300 }, + [4] = { 41.8, 20.4, 40, 300 }, + }, + ["lvl"] = "12-13", + }, + [1066] = { + ["coords"] = {}, + ["lvl"] = "28", + }, + [1067] = { + ["coords"] = {}, + ["lvl"] = "8", + }, + [1068] = { + ["coords"] = { + [1] = { 2.9, 45.6, 3, 300 }, + [2] = { 82, 36.7, 51, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [1069] = { + ["coords"] = { + [1] = { 68.8, 51, 11, 300 }, + [2] = { 69.9, 50, 11, 300 }, + [3] = { 68.5, 48.8, 11, 300 }, + [4] = { 69.1, 48.4, 11, 300 }, + [5] = { 67.9, 48.3, 11, 300 }, + [6] = { 68.1, 46.3, 11, 300 }, + [7] = { 66, 45.9, 11, 300 }, + [8] = { 69.9, 45.8, 11, 300 }, + [9] = { 67.7, 45, 11, 300 }, + [10] = { 65.9, 44.5, 11, 300 }, + [11] = { 66.6, 44.4, 11, 300 }, + [12] = { 64.6, 44.2, 11, 300 }, + [13] = { 65.1, 43.5, 11, 300 }, + [14] = { 64.3, 43.1, 11, 300 }, + [15] = { 64.6, 42.2, 11, 300 }, + [16] = { 63.6, 42.1, 11, 300 }, + [17] = { 64.2, 41.5, 11, 300 }, + [18] = { 62.1, 41.1, 11, 300 }, + [19] = { 63.7, 40.2, 11, 300 }, + [20] = { 63, 37.4, 11, 300 }, + [21] = { 62.9, 36.5, 11, 300 }, + [22] = { 63.7, 35.3, 11, 300 }, + [23] = { 62, 34.8, 11, 300 }, + [24] = { 62.8, 34.1, 11, 300 }, + [25] = { 61.3, 33.9, 11, 300 }, + [26] = { 62, 33.1, 11, 300 }, + }, + ["lvl"] = "25-26", + }, + [1070] = { + ["coords"] = { + [1] = { 30.7, 60, 44, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "33", + }, + [1071] = { + ["coords"] = { + [1] = { 49.8, 18.3, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [1072] = { + ["coords"] = { + [1] = { 49.9, 18.1, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1073] = { + ["coords"] = { + [1] = { 50, 18.2, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "27", + }, + [1074] = { + ["coords"] = { + [1] = { 49.7, 18.2, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1075] = { + ["coords"] = { + [1] = { 49.9, 18.2, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [1076] = { + ["coords"] = { + [1] = { 38.9, 52.3, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1077] = { + ["coords"] = { + [1] = { 38.8, 52.4, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1078] = { + ["coords"] = { + [1] = { 38.2, 50.9, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [1081] = { + ["coords"] = { + [1] = { 5.5, 31.4, 8, 300 }, + }, + ["lvl"] = "42", + }, + [1082] = { + ["coords"] = { + [1] = { 56.1, 56.8, 8, 300 }, + [2] = { 56.1, 56.5, 8, 300 }, + [3] = { 53.6, 56, 8, 300 }, + [4] = { 53.6, 55.6, 8, 300 }, + [5] = { 56.5, 52.3, 8, 300 }, + [6] = { 55, 49.6, 8, 300 }, + [7] = { 56.6, 48, 8, 300 }, + [8] = { 53.4, 47.3, 8, 300 }, + [9] = { 57.7, 46.1, 8, 300 }, + [10] = { 47.7, 43.3, 8, 300 }, + [11] = { 53.5, 42.4, 8, 300 }, + [12] = { 55.2, 41.3, 8, 300 }, + [13] = { 52.2, 41, 8, 300 }, + [14] = { 48.4, 39.1, 8, 300 }, + [15] = { 56.5, 39.1, 8, 300 }, + [16] = { 54.7, 36.7, 8, 300 }, + [17] = { 59.4, 34.6, 8, 300 }, + [18] = { 56.5, 34.6, 8, 300 }, + [19] = { 60.7, 32.4, 8, 300 }, + [20] = { 63.3, 32, 8, 300 }, + [21] = { 62.3, 30.3, 8, 300 }, + [22] = { 72, 19.8, 8, 300 }, + [23] = { 69.8, 18.6, 8, 300 }, + [24] = { 72.1, 15.3, 8, 300 }, + [25] = { 69.5, 15.1, 8, 300 }, + }, + ["lvl"] = "38-39", + }, + [1083] = { + ["coords"] = { + [1] = { 48.8, 70.1, 44, 300 }, + [2] = { 50.9, 69.3, 44, 300 }, + [3] = { 46.2, 69.1, 44, 300 }, + [4] = { 47.7, 68.3, 44, 300 }, + [5] = { 47.3, 66.2, 44, 300 }, + [6] = { 49.8, 65.8, 44, 300 }, + [7] = { 48.9, 72, 44, 300 }, + [8] = { 49.9, 72, 44, 300 }, + [9] = { 48.4, 71.5, 44, 300 }, + [10] = { 47.4, 70.8, 44, 300 }, + [11] = { 48.3, 72.2, 44, 300 }, + [12] = { 50.2, 70.3, 44, 300 }, + }, + ["lvl"] = "16-17", + }, + [1084] = { + ["coords"] = { + [1] = { 28.9, 56.1, 8, 300 }, + [2] = { 27.1, 55.1, 8, 300 }, + [3] = { 30.5, 54.7, 8, 300 }, + [4] = { 25.9, 52.2, 8, 300 }, + [5] = { 34.4, 51.8, 8, 300 }, + [6] = { 37.4, 51.1, 8, 300 }, + [7] = { 24.1, 50.3, 8, 300 }, + [8] = { 32, 47.2, 8, 300 }, + [9] = { 23.3, 44.9, 8, 300 }, + [10] = { 24.6, 42.6, 8, 300 }, + [11] = { 24.5, 39, 8, 300 }, + [12] = { 30.4, 38.9, 8, 300 }, + [13] = { 32.7, 38.9, 8, 300 }, + [14] = { 35.7, 36.9, 8, 300 }, + [15] = { 29.3, 36.4, 8, 300 }, + [16] = { 25.5, 35.9, 8, 300 }, + [17] = { 38.6, 35.3, 8, 300 }, + [18] = { 42.1, 34.4, 8, 300 }, + [19] = { 31.1, 33.8, 8, 300 }, + [20] = { 34.1, 33, 8, 300 }, + }, + ["lvl"] = "35-36", + }, + [1085] = { + ["coords"] = { + [1] = { 31.5, 20.1, 33, 300 }, + [2] = { 35.5, 19.7, 33, 300 }, + [3] = { 34, 19.4, 33, 300 }, + [4] = { 35, 19.2, 33, 300 }, + [5] = { 33, 19.1, 33, 300 }, + [6] = { 32.1, 19, 33, 300 }, + [7] = { 36.1, 18.8, 33, 300 }, + [8] = { 35.5, 18.5, 33, 300 }, + [9] = { 33.5, 18.4, 33, 300 }, + [10] = { 32.5, 18.4, 33, 300 }, + [11] = { 31.4, 18.4, 33, 300 }, + [12] = { 34, 17.6, 33, 300 }, + [13] = { 31.3, 16.6, 33, 300 }, + [14] = { 31.9, 16, 33, 300 }, + }, + ["lvl"] = "34-35", + }, + [1087] = { + ["coords"] = { + [1] = { 82.6, 99.5, 8, 300 }, + [2] = { 76.3, 97.4, 8, 300 }, + [3] = { 80.6, 96.8, 8, 300 }, + [4] = { 83.8, 95.4, 8, 300 }, + [5] = { 84, 64.8, 8, 300 }, + [6] = { 85.3, 63.2, 8, 300 }, + [7] = { 86.8, 56.6, 8, 300 }, + [8] = { 87.3, 38.6, 8, 300 }, + [9] = { 83.4, 36.3, 8, 300 }, + [10] = { 86.5, 34.1, 8, 300 }, + [11] = { 84.1, 33.3, 8, 300 }, + [12] = { 81.2, 32.6, 8, 300 }, + [13] = { 82.7, 30.9, 8, 300 }, + [14] = { 79.7, 30.6, 8, 300 }, + [15] = { 78, 28.4, 8, 300 }, + [16] = { 79.4, 26.7, 8, 300 }, + [17] = { 82.6, 25.9, 8, 300 }, + [18] = { 81.3, 23.7, 8, 300 }, + [19] = { 78.2, 23.7, 8, 300 }, + [20] = { 86.2, 20, 8, 300 }, + [21] = { 81, 19.8, 8, 300 }, + [22] = { 78.2, 19.7, 8, 300 }, + [23] = { 75.5, 19.4, 8, 300 }, + [24] = { 84.2, 15.3, 8, 300 }, + [25] = { 78, 14.6, 8, 300 }, + [26] = { 75.1, 14.6, 8, 300 }, + [27] = { 77, 13.2, 8, 300 }, + [28] = { 82.8, 12.3, 8, 300 }, + [29] = { 79.7, 7.4, 8, 300 }, + [30] = { 76.7, 5.8, 8, 300 }, + }, + ["lvl"] = "41-42", + }, + [1088] = { + ["coords"] = { + [1] = { 78.9, 98.1, 8, 300 }, + [2] = { 89.3, 86.1, 8, 300 }, + [3] = { 95.1, 77.1, 8, 300 }, + [4] = { 97, 71.8, 8, 300 }, + [5] = { 94.9, 70.6, 8, 300 }, + [6] = { 93.1, 69.9, 8, 300 }, + [7] = { 93.4, 68.4, 8, 300 }, + [8] = { 97.2, 62.9, 8, 300 }, + [9] = { 93.5, 61.9, 8, 300 }, + [10] = { 95, 56.1, 8, 300 }, + [11] = { 97.2, 54.3, 8, 300 }, + [12] = { 94.9, 46.6, 8, 300 }, + [13] = { 96, 46.3, 8, 300 }, + [14] = { 93.5, 42.2, 8, 300 }, + [15] = { 94.9, 40.1, 8, 300 }, + [16] = { 93.4, 37.9, 8, 300 }, + [17] = { 93.4, 35.7, 8, 300 }, + [18] = { 94.3, 32.4, 8, 300 }, + [19] = { 92, 31.4, 8, 300 }, + [20] = { 92.8, 30.1, 8, 300 }, + [21] = { 91.4, 19.7, 8, 300 }, + [22] = { 79.3, 2.4, 8, 300 }, + }, + ["lvl"] = "43-44", + }, + [1089] = { + ["coords"] = { + [1] = { 22.1, 73.1, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1090] = { + ["coords"] = { + [1] = { 23.5, 74.5, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1091] = { + ["coords"] = { + [1] = { 23.5, 76.4, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1092] = { + ["coords"] = { + [1] = { 23.2, 73.7, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [1093] = { + ["coords"] = { + [1] = { 46, 13.6, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [1094] = { + ["coords"] = { + [1] = { 28.3, 8.1, 33, 300 }, + [2] = { 28.2, 8, 33, 300 }, + [3] = { 27.1, 8, 33, 300 }, + [4] = { 28.7, 7.9, 33, 300 }, + [5] = { 27.8, 7.8, 33, 300 }, + [6] = { 28.9, 7.6, 33, 300 }, + [7] = { 27.2, 7.4, 33, 300 }, + [8] = { 29.3, 7.4, 33, 300 }, + [9] = { 28.9, 7.4, 33, 300 }, + [10] = { 29.1, 7.2, 33, 300 }, + [11] = { 28.8, 6.9, 33, 300 }, + [12] = { 28.9, 6.8, 33, 300 }, + [13] = { 75.2, 88.3, 40, 300 }, + [14] = { 75.4, 88.2, 40, 300 }, + }, + ["lvl"] = "34-35", + }, + [1095] = { + ["coords"] = { + [1] = { 43.1, 19, 33, 25 }, + }, + ["lvl"] = "36", + }, + [1096] = { + ["coords"] = { + [1] = { 46.5, 23.8, 33, 300 }, + [2] = { 45.1, 23.7, 33, 300 }, + [3] = { 44.9, 23.6, 33, 300 }, + [4] = { 43.5, 23.5, 33, 300 }, + [5] = { 42.7, 23.1, 33, 300 }, + [6] = { 43.9, 23, 33, 300 }, + [7] = { 46.3, 22.8, 33, 300 }, + [8] = { 44.8, 22.7, 33, 300 }, + [9] = { 43.6, 22.4, 33, 300 }, + [10] = { 42.4, 22.2, 33, 300 }, + [11] = { 44.7, 22.2, 33, 300 }, + [12] = { 46.3, 21.4, 33, 300 }, + [13] = { 44, 21.1, 33, 300 }, + [14] = { 43.2, 20.9, 33, 300 }, + [15] = { 45.4, 20.8, 33, 300 }, + [16] = { 46.4, 20.7, 33, 300 }, + [17] = { 44.5, 20.6, 33, 300 }, + [18] = { 45.2, 20.4, 33, 300 }, + [19] = { 44.2, 20.1, 33, 300 }, + [20] = { 46.9, 19.9, 33, 300 }, + [21] = { 45.9, 19.6, 33, 300 }, + [22] = { 43.1, 19.5, 33, 300 }, + [23] = { 43.2, 19.3, 33, 300 }, + [24] = { 46.7, 19.2, 33, 300 }, + [25] = { 42.5, 19.1, 33, 300 }, + [26] = { 43, 19.1, 33, 300 }, + [27] = { 47.7, 19, 33, 300 }, + [28] = { 44.2, 18.6, 33, 300 }, + [29] = { 42.6, 18.6, 33, 300 }, + [30] = { 42.4, 18.6, 33, 300 }, + [31] = { 46, 18.4, 33, 300 }, + [32] = { 42.7, 18.3, 33, 300 }, + [33] = { 44.5, 17.6, 33, 300 }, + [34] = { 44, 17.4, 33, 300 }, + [35] = { 44.8, 16.4, 33, 300 }, + [36] = { 44.8, 16.3, 33, 300 }, + [37] = { 27.6, 8.1, 33, 300 }, + [38] = { 28.7, 7.7, 33, 300 }, + [39] = { 28.7, 7.6, 33, 300 }, + [40] = { 28.9, 6.9, 33, 300 }, + [41] = { 75.3, 88.4, 40, 300 }, + }, + ["lvl"] = "35-36", + }, + [1097] = { + ["coords"] = { + [1] = { 43, 19.3, 33, 300 }, + [2] = { 43.1, 19.2, 33, 300 }, + [3] = { 42.2, 18.7, 33, 300 }, + [4] = { 42.6, 18.6, 33, 300 }, + [5] = { 42.5, 18.5, 33, 300 }, + [6] = { 42, 18.3, 33, 300 }, + [7] = { 28.6, 7.6, 33, 300 }, + }, + ["lvl"] = "34-35", + }, + [1098] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "20", + }, + [1099] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "20", + }, + [1100] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "20", + }, + [1101] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "20", + }, + [1103] = { + ["coords"] = { + [1] = { 79.2, 69, 12, 285 }, + }, + ["fac"] = "A", + ["lvl"] = "22", + }, + [1104] = { + ["coords"] = { + [1] = { 28.8, 67.8, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [1105] = { + ["coords"] = { + [1] = { 37.2, 47.4, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [1106] = { + ["coords"] = { + [1] = { 65.2, 22.8, 8, 18000 }, + }, + ["lvl"] = "37", + ["rnk"] = "4", + }, + [1108] = { + ["coords"] = { + [1] = { 38.7, 18.3, 33, 300 }, + [2] = { 36.6, 18.3, 33, 300 }, + [3] = { 37.7, 18.3, 33, 300 }, + [4] = { 37.2, 17.8, 33, 300 }, + [5] = { 38, 17.6, 33, 300 }, + [6] = { 39.2, 17.6, 33, 300 }, + [7] = { 38.7, 16.8, 33, 300 }, + [8] = { 37.5, 16.8, 33, 300 }, + [9] = { 36.6, 16.7, 33, 300 }, + [10] = { 37.2, 16, 33, 300 }, + [11] = { 38.3, 15.7, 33, 300 }, + }, + ["lvl"] = "32-33", + }, + [1109] = { + ["coords"] = { + [1] = { 37, 69.1, 40, 300 }, + [2] = { 39.8, 68.2, 40, 300 }, + [3] = { 40.5, 68.1, 40, 300 }, + [4] = { 40.2, 67.6, 40, 300 }, + [5] = { 39.7, 67, 40, 300 }, + [6] = { 40.4, 66.9, 40, 300 }, + [7] = { 37.5, 66, 40, 300 }, + [8] = { 35.2, 65, 40, 300 }, + [9] = { 45.7, 63.5, 40, 300 }, + [10] = { 39, 62.3, 40, 300 }, + [11] = { 39.6, 62.1, 40, 300 }, + [12] = { 50.2, 61.9, 40, 300 }, + [13] = { 55.7, 60.9, 40, 300 }, + [14] = { 40.9, 59.7, 40, 300 }, + [15] = { 52.4, 59.3, 40, 300 }, + [16] = { 50.5, 59.3, 40, 300 }, + [17] = { 40.1, 59.2, 40, 300 }, + [18] = { 49.4, 56.4, 40, 300 }, + [19] = { 48.4, 54.8, 40, 300 }, + [20] = { 44.7, 53.7, 40, 300 }, + [21] = { 46.9, 51.3, 40, 300 }, + [22] = { 48.7, 50.8, 40, 300 }, + [23] = { 42.8, 50.8, 40, 300 }, + [24] = { 43.2, 49.1, 40, 300 }, + [25] = { 59.9, 46.4, 40, 300 }, + [26] = { 43.8, 46.4, 40, 300 }, + [27] = { 61.1, 46.2, 40, 300 }, + [28] = { 45.9, 45.4, 40, 300 }, + [29] = { 43.6, 43.8, 40, 300 }, + [30] = { 60.7, 43.6, 40, 300 }, + [31] = { 39.9, 42.9, 40, 300 }, + [32] = { 43.9, 42, 40, 300 }, + [33] = { 39.3, 42, 40, 300 }, + [34] = { 35.5, 41.2, 40, 300 }, + [35] = { 39.7, 39.8, 40, 300 }, + [36] = { 33.3, 39.2, 40, 300 }, + [37] = { 41.9, 39.2, 40, 300 }, + [38] = { 39.5, 38.5, 40, 300 }, + [39] = { 29.9, 38.3, 40, 300 }, + [40] = { 36.2, 38, 40, 300 }, + [41] = { 33.1, 36.8, 40, 300 }, + [42] = { 38.2, 34.5, 40, 300 }, + [43] = { 39.2, 29.3, 40, 300 }, + [44] = { 39.1, 25, 40, 300 }, + [45] = { 51.2, 24.9, 40, 300 }, + [46] = { 39.9, 24, 40, 300 }, + [47] = { 61.3, 44.9, 40, 300 }, + [48] = { 59.6, 44.5, 40, 300 }, + [49] = { 59, 43.6, 40, 300 }, + }, + ["lvl"] = "13-14", + }, + [1110] = { + ["coords"] = { + [1] = { 19.1, 40, 10, 300 }, + [2] = { 16.1, 39.4, 10, 300 }, + [3] = { 15.5, 39.2, 10, 300 }, + [4] = { 16.4, 38.5, 10, 300 }, + [5] = { 15.2, 38.5, 10, 300 }, + [6] = { 15.7, 38, 10, 300 }, + [7] = { 17.5, 37.1, 10, 300 }, + [8] = { 14.4, 36.2, 10, 300 }, + [9] = { 17.4, 34.2, 10, 300 }, + [10] = { 16.9, 33.6, 10, 300 }, + [11] = { 13.7, 33.4, 10, 300 }, + [12] = { 17.4, 33.4, 10, 300 }, + [13] = { 16.9, 31.5, 10, 300 }, + [14] = { 16.8, 37.8, 10, 300 }, + [15] = { 16, 37.2, 10, 300 }, + [16] = { 15.1, 36.8, 10, 300 }, + [17] = { 17.8, 35.5, 10, 300 }, + [18] = { 17.2, 34.9, 10, 300 }, + [19] = { 15.8, 34.7, 10, 300 }, + [20] = { 17.9, 34.2, 10, 300 }, + [21] = { 16.4, 33.9, 10, 300 }, + [22] = { 17.3, 33.5, 10, 300 }, + [23] = { 16.8, 32.8, 10, 300 }, + [24] = { 17.7, 32.8, 10, 300 }, + }, + ["lvl"] = "27-28", + }, + [1111] = { + ["coords"] = { + [1] = { 56.1, 67.9, 11, 300 }, + [2] = { 54.8, 66.7, 11, 300 }, + [3] = { 54.8, 66.6, 11, 300 }, + [4] = { 57.3, 66.5, 11, 300 }, + [5] = { 56.3, 65.4, 11, 300 }, + [6] = { 53, 65.4, 11, 300 }, + [7] = { 57.3, 65.3, 11, 300 }, + [8] = { 53.8, 65.2, 11, 300 }, + [9] = { 54.7, 64.7, 11, 300 }, + [10] = { 55.3, 63.7, 11, 300 }, + [11] = { 46.8, 63.6, 11, 300 }, + [12] = { 54, 63.3, 11, 300 }, + [13] = { 51.7, 63, 11, 300 }, + [14] = { 52.7, 63, 11, 300 }, + [15] = { 55.5, 63, 11, 300 }, + [16] = { 46.9, 62.9, 11, 300 }, + [17] = { 50.4, 62.9, 11, 300 }, + [18] = { 52.4, 62.8, 11, 300 }, + [19] = { 57, 62.8, 11, 300 }, + [20] = { 54.8, 62.8, 11, 300 }, + [21] = { 49, 62.7, 11, 300 }, + [22] = { 46.1, 62.3, 11, 300 }, + [23] = { 51.6, 62.1, 11, 300 }, + [24] = { 46.5, 62, 11, 300 }, + [25] = { 46.8, 62, 11, 300 }, + [26] = { 51.2, 61.8, 11, 300 }, + [27] = { 56.7, 61.7, 11, 300 }, + [28] = { 56, 61.6, 11, 300 }, + [29] = { 49, 61.4, 11, 300 }, + [30] = { 50.3, 61, 11, 300 }, + [31] = { 56.2, 60.9, 11, 300 }, + [32] = { 47.9, 59.8, 11, 300 }, + [33] = { 50.3, 59.6, 11, 300 }, + [34] = { 46.2, 59.4, 11, 300 }, + [35] = { 50, 58.8, 11, 300 }, + }, + ["lvl"] = "21-22", + }, + [1112] = { + ["coords"] = { + [1] = { 47.1, 61.5, 11, 14400 }, + [2] = { 47.3, 59.2, 11, 14400 }, + }, + ["lvl"] = "24", + ["rnk"] = "4", + }, + [1114] = { + ["coords"] = { + [1] = { 47.7, 38, 33, 300 }, + [2] = { 48.6, 37.9, 33, 300 }, + [3] = { 44.4, 37.8, 33, 300 }, + [4] = { 47.1, 37.2, 33, 300 }, + [5] = { 48.1, 37.2, 33, 300 }, + [6] = { 45.5, 36.5, 33, 300 }, + [7] = { 46.5, 36.5, 33, 300 }, + [8] = { 44.7, 36.4, 33, 300 }, + [9] = { 48.6, 36.2, 33, 300 }, + [10] = { 48.2, 35.7, 33, 300 }, + [11] = { 49.1, 35.4, 33, 300 }, + [12] = { 45.6, 34.9, 33, 300 }, + [13] = { 46.6, 34.7, 33, 300 }, + [14] = { 46.1, 34.2, 33, 300 }, + [15] = { 49.2, 34, 33, 300 }, + [16] = { 48.1, 34, 33, 300 }, + [17] = { 48.2, 32.7, 33, 300 }, + [18] = { 41.9, 32.6, 33, 300 }, + [19] = { 49.2, 32.4, 33, 300 }, + [20] = { 44.1, 32.3, 33, 300 }, + [21] = { 42.3, 31.9, 33, 300 }, + [22] = { 43.5, 31.7, 33, 300 }, + [23] = { 41.9, 30.9, 33, 300 }, + [24] = { 42.9, 30.9, 33, 300 }, + [25] = { 43.9, 30.9, 33, 300 }, + [26] = { 46.1, 29.6, 33, 300 }, + [27] = { 45, 29.3, 33, 300 }, + [28] = { 43.4, 28.7, 33, 300 }, + [29] = { 44.5, 28.7, 33, 300 }, + [30] = { 45.5, 28.6, 33, 300 }, + [31] = { 41.2, 28.5, 33, 300 }, + [32] = { 42.3, 28.5, 33, 300 }, + [33] = { 40.8, 28.1, 33, 300 }, + [34] = { 45, 27.8, 33, 300 }, + [35] = { 43, 27.7, 33, 300 }, + [36] = { 41.9, 27.6, 33, 300 }, + [37] = { 44.5, 27.2, 33, 300 }, + [38] = { 42.3, 27, 33, 300 }, + [39] = { 43, 26.2, 33, 300 }, + [40] = { 40.8, 26.2, 33, 300 }, + [41] = { 41.8, 26.2, 33, 300 }, + [42] = { 41.9, 24.6, 33, 300 }, + }, + ["lvl"] = "37-38", + }, + [1115] = { + ["coords"] = { + [1] = { 67.9, 60.7, 1, 270 }, + [2] = { 67.9, 60.5, 1, 270 }, + [3] = { 67.5, 60.2, 1, 270 }, + [4] = { 68.9, 59.8, 1, 270 }, + [5] = { 68.7, 59.7, 1, 270 }, + [6] = { 67.1, 59.7, 1, 270 }, + [7] = { 67.4, 59.7, 1, 270 }, + [8] = { 67.5, 59.5, 1, 270 }, + [9] = { 68, 59.4, 1, 270 }, + [10] = { 68.9, 59.3, 1, 270 }, + [11] = { 70.3, 59.3, 1, 270 }, + [12] = { 70.5, 58.9, 1, 270 }, + [13] = { 69.5, 58.8, 1, 270 }, + [14] = { 67.2, 58.6, 1, 270 }, + [15] = { 70.4, 58.5, 1, 270 }, + [16] = { 70.5, 58.4, 1, 270 }, + [17] = { 69.4, 58.3, 1, 270 }, + [18] = { 70, 58.3, 1, 270 }, + [19] = { 68.7, 58.1, 1, 270 }, + [20] = { 69.8, 57.7, 1, 270 }, + [21] = { 70.2, 57.1, 1, 270 }, + [22] = { 70.5, 57.1, 1, 270 }, + [23] = { 69.7, 57.1, 1, 270 }, + [24] = { 70.7, 56.6, 1, 270 }, + [25] = { 70.8, 55.9, 1, 270 }, + [26] = { 71.2, 55.3, 1, 270 }, + [27] = { 71, 55.1, 1, 270 }, + [28] = { 70.8, 54, 1, 270 }, + [29] = { 71.1, 53.9, 1, 270 }, + [30] = { 72.5, 53.5, 1, 270 }, + [31] = { 73.2, 53.3, 1, 270 }, + [32] = { 70.3, 53.3, 1, 270 }, + [33] = { 72.4, 52.9, 1, 270 }, + [34] = { 70.7, 52.8, 1, 270 }, + [35] = { 72.9, 52.7, 1, 270 }, + [36] = { 70.1, 52.7, 1, 270 }, + [37] = { 70.6, 52.7, 1, 270 }, + [38] = { 71.2, 52.6, 1, 270 }, + [39] = { 72.6, 52.4, 1, 270 }, + [40] = { 70.8, 52.3, 1, 270 }, + [41] = { 70.4, 52.3, 1, 270 }, + [42] = { 72.2, 52.3, 1, 270 }, + [43] = { 70.3, 52.2, 1, 270 }, + [44] = { 72, 52.1, 1, 270 }, + [45] = { 73.2, 52, 1, 270 }, + [46] = { 72.6, 51.9, 1, 270 }, + [47] = { 71.6, 51.8, 1, 270 }, + [48] = { 71.4, 51.6, 1, 270 }, + [49] = { 71.5, 51.6, 1, 270 }, + [50] = { 72.6, 51.4, 1, 270 }, + [51] = { 71.6, 51.2, 1, 270 }, + [52] = { 72.3, 51.2, 1, 270 }, + [53] = { 72.5, 51, 1, 270 }, + [54] = { 72.1, 50.8, 1, 270 }, + [55] = { 71.2, 50.6, 1, 270 }, + [56] = { 71.6, 50.3, 1, 270 }, + [57] = { 71.5, 50.3, 1, 270 }, + [58] = { 72, 50, 1, 270 }, + }, + ["lvl"] = "8-9", + }, + [1116] = { + ["coords"] = { + [1] = { 77.3, 59.8, 1, 270 }, + [2] = { 75.8, 58.8, 1, 270 }, + [3] = { 77.2, 58.3, 1, 270 }, + [4] = { 75.7, 57.7, 1, 270 }, + [5] = { 74.9, 56.6, 1, 270 }, + [6] = { 74.7, 56.4, 1, 270 }, + [7] = { 74.5, 56.2, 1, 270 }, + [8] = { 72.6, 55.8, 1, 270 }, + [9] = { 73.4, 55.1, 1, 270 }, + [10] = { 72.1, 55, 1, 270 }, + [11] = { 71.3, 54.3, 1, 270 }, + [12] = { 72.6, 53.9, 1, 270 }, + [13] = { 71, 53.3, 1, 270 }, + [14] = { 70.8, 53, 1, 270 }, + [15] = { 73.5, 52.8, 1, 270 }, + [16] = { 70.3, 52.3, 1, 270 }, + [17] = { 73.9, 51.5, 1, 270 }, + [18] = { 73.4, 51.3, 1, 270 }, + }, + ["lvl"] = "9-10", + }, + [1117] = { + ["coords"] = { + [1] = { 75.7, 61.8, 1, 270 }, + [2] = { 77, 60.8, 1, 270 }, + [3] = { 76.2, 60.3, 1, 270 }, + [4] = { 78.4, 60.1, 1, 270 }, + [5] = { 78.1, 59.6, 1, 270 }, + [6] = { 78.9, 59.1, 1, 270 }, + [7] = { 78, 59, 1, 270 }, + [8] = { 79.8, 58, 1, 270 }, + [9] = { 74.7, 56.3, 1, 270 }, + [10] = { 75, 56.2, 1, 270 }, + [11] = { 74.7, 55.9, 1, 270 }, + [12] = { 71.2, 55.5, 1, 270 }, + [13] = { 70.6, 55.3, 1, 270 }, + [14] = { 79.6, 55.1, 1, 270 }, + [15] = { 70.6, 54.6, 1, 270 }, + [16] = { 71, 54.6, 1, 270 }, + [17] = { 79.6, 54.6, 1, 270 }, + [18] = { 79.6, 54, 1, 270 }, + [19] = { 72.8, 54, 1, 270 }, + [20] = { 71, 53.3, 1, 270 }, + [21] = { 70.7, 53.3, 1, 270 }, + [22] = { 70.4, 53.3, 1, 270 }, + [23] = { 70.2, 52.7, 1, 270 }, + [24] = { 71.8, 52.4, 1, 270 }, + [25] = { 71.7, 52.2, 1, 270 }, + [26] = { 73, 52.1, 1, 270 }, + [27] = { 72.4, 51.5, 1, 270 }, + [28] = { 71.9, 50.5, 1, 270 }, + [29] = { 72, 50.2, 1, 270 }, + [30] = { 70.5, 57.1, 1, 270 }, + [31] = { 70.7, 56.6, 1, 270 }, + [32] = { 70.8, 55.9, 1, 270 }, + [33] = { 70.8, 54, 1, 270 }, + [34] = { 72.4, 52.9, 1, 270 }, + [35] = { 70.7, 52.8, 1, 270 }, + [36] = { 70.1, 52.7, 1, 270 }, + [37] = { 70.6, 52.7, 1, 270 }, + [38] = { 71.2, 52.6, 1, 270 }, + [39] = { 70.8, 52.3, 1, 270 }, + [40] = { 70.4, 52.3, 1, 270 }, + [41] = { 70.3, 52.2, 1, 270 }, + [42] = { 72, 52.1, 1, 270 }, + [43] = { 72.6, 51.4, 1, 270 }, + [44] = { 71.6, 51.2, 1, 270 }, + [45] = { 72.3, 51.2, 1, 270 }, + [46] = { 72.1, 50.8, 1, 270 }, + [47] = { 71.6, 50.3, 1, 270 }, + [48] = { 72, 50, 1, 270 }, + }, + ["lvl"] = "9-10", + }, + [1118] = { + ["coords"] = { + [1] = { 79.4, 57.8, 1, 270 }, + [2] = { 80.5, 57.1, 1, 270 }, + [3] = { 79.5, 55.7, 1, 270 }, + [4] = { 79.4, 54.7, 1, 270 }, + [5] = { 79.6, 54.4, 1, 270 }, + [6] = { 79.4, 54.1, 1, 270 }, + }, + ["lvl"] = "11-12", + }, + [1119] = { + ["coords"] = { + [1] = { 71.5, 51.2, 1, 5400 }, + }, + ["lvl"] = "12", + ["rnk"] = "4", + }, + [1120] = { + ["coords"] = { + [1] = { 25.9, 52.9, 1, 270 }, + [2] = { 26.7, 52.1, 1, 270 }, + [3] = { 26.1, 51.5, 1, 270 }, + [4] = { 26.7, 51.4, 1, 270 }, + [5] = { 26.1, 51.3, 1, 270 }, + [6] = { 25.4, 51.1, 1, 270 }, + [7] = { 26.1, 50, 1, 270 }, + [8] = { 66.6, 41.3, 1, 15 }, + [9] = { 66.5, 41.2, 1, 15 }, + [10] = { 70.6, 39.3, 1, 15 }, + [11] = { 71, 37.9, 1, 15 }, + }, + ["lvl"] = "7-8", + }, + [1121] = { + ["coords"] = { + [1] = { 22.9, 54.5, 1, 270 }, + [2] = { 23.2, 52, 1, 270 }, + [3] = { 25.4, 52, 1, 270 }, + [4] = { 23.6, 51.4, 1, 270 }, + [5] = { 26.2, 51.3, 1, 270 }, + [6] = { 21.6, 50.8, 1, 270 }, + [7] = { 26.1, 50.6, 1, 270 }, + [8] = { 22.6, 50.5, 1, 270 }, + [9] = { 25.4, 50, 1, 270 }, + [10] = { 41.3, 44.2, 1, 270 }, + [11] = { 66.4, 41.3, 1, 15 }, + [12] = { 66.4, 41.1, 1, 15 }, + [13] = { 70.5, 39.3, 1, 15 }, + [14] = { 71, 38.1, 1, 15 }, + [15] = { 41.6, 36.6, 1, 270 }, + [16] = { 41.9, 35.8, 1, 270 }, + [17] = { 39, 35.2, 1, 270 }, + [18] = { 40.7, 35.1, 1, 270 }, + }, + ["lvl"] = "8-9", + }, + [1122] = { + ["coords"] = { + [1] = { 21.9, 55, 1, 270 }, + [2] = { 23.2, 54.8, 1, 270 }, + [3] = { 21.6, 54.8, 1, 270 }, + [4] = { 23.5, 53.9, 1, 270 }, + [5] = { 23.8, 53.6, 1, 270 }, + [6] = { 21.4, 53, 1, 270 }, + [7] = { 21.7, 52.9, 1, 270 }, + [8] = { 24, 52.3, 1, 270 }, + [9] = { 22.8, 52, 1, 270 }, + [10] = { 22, 51.3, 1, 270 }, + [11] = { 21.6, 50.6, 1, 270 }, + }, + ["lvl"] = "9-10", + }, + [1123] = { + ["coords"] = { + [1] = { 22.6, 54.6, 1, 270 }, + [2] = { 21.3, 54.5, 1, 270 }, + [3] = { 23.9, 53.2, 1, 270 }, + [4] = { 26, 52.2, 1, 270 }, + [5] = { 22.4, 51.8, 1, 270 }, + [6] = { 21.1, 51.7, 1, 270 }, + [7] = { 26, 51.5, 1, 270 }, + [8] = { 26.1, 51.5, 1, 270 }, + [9] = { 23.4, 51.4, 1, 270 }, + [10] = { 21.2, 51, 1, 270 }, + [11] = { 24.6, 50.9, 1, 270 }, + [12] = { 25.4, 50.9, 1, 270 }, + [13] = { 23.1, 50.9, 1, 270 }, + [14] = { 23.6, 50.9, 1, 270 }, + [15] = { 24.3, 50.9, 1, 270 }, + [16] = { 22.1, 50.2, 1, 270 }, + [17] = { 40.9, 43.8, 1, 270 }, + [18] = { 39.3, 35.9, 1, 270 }, + }, + ["lvl"] = "8-9", + }, + [1124] = { + ["coords"] = { + [1] = { 22.8, 53.8, 1, 270 }, + [2] = { 21.2, 53.6, 1, 270 }, + [3] = { 23.2, 52.6, 1, 270 }, + [4] = { 22.1, 52.3, 1, 270 }, + [5] = { 21.6, 52.1, 1, 270 }, + [6] = { 26, 51.1, 1, 270 }, + [7] = { 22.4, 50.2, 1, 270 }, + [8] = { 66.5, 41.1, 1, 15 }, + [9] = { 70.6, 39.2, 1, 15 }, + [10] = { 70.9, 37.8, 1, 15 }, + }, + ["lvl"] = "9-10", + }, + [1125] = { + ["coords"] = { + [1] = { 42.2, 67.6, 1, 270 }, + [2] = { 44.4, 67.1, 1, 270 }, + [3] = { 43.2, 66.1, 1, 270 }, + [4] = { 45.7, 66, 1, 270 }, + [5] = { 43.3, 65.8, 1, 270 }, + [6] = { 42.2, 65.7, 1, 270 }, + [7] = { 44.8, 65.6, 1, 270 }, + [8] = { 46.2, 65.4, 1, 270 }, + [9] = { 45.1, 65.4, 1, 270 }, + [10] = { 41.9, 65.2, 1, 270 }, + [11] = { 42.3, 65.1, 1, 270 }, + [12] = { 38.6, 64.6, 1, 270 }, + [13] = { 46.1, 64.5, 1, 270 }, + [14] = { 45.4, 64.1, 1, 270 }, + [15] = { 47.7, 64.1, 1, 270 }, + [16] = { 45.4, 64, 1, 270 }, + [17] = { 46.2, 63.8, 1, 270 }, + [18] = { 39.4, 63.8, 1, 270 }, + [19] = { 39.4, 63.4, 1, 270 }, + [20] = { 44.3, 63.2, 1, 270 }, + [21] = { 36.5, 63.1, 1, 270 }, + [22] = { 36.4, 62.9, 1, 270 }, + [23] = { 48.7, 62.9, 1, 270 }, + [24] = { 36.2, 62.1, 1, 270 }, + [25] = { 44.9, 62.1, 1, 270 }, + [26] = { 46.2, 61.9, 1, 270 }, + [27] = { 49.7, 61.8, 1, 270 }, + [28] = { 45.9, 61.7, 1, 270 }, + [29] = { 47.1, 61.5, 1, 270 }, + [30] = { 47.4, 61.1, 1, 270 }, + [31] = { 40.5, 60.5, 1, 270 }, + [32] = { 41.9, 60.4, 1, 270 }, + [33] = { 48.5, 60.1, 1, 270 }, + [34] = { 36.6, 60, 1, 270 }, + [35] = { 42.3, 59.9, 1, 270 }, + [36] = { 37.8, 59.8, 1, 270 }, + [37] = { 35, 59.6, 1, 270 }, + [38] = { 39.2, 59.5, 1, 270 }, + [39] = { 33.7, 59.5, 1, 270 }, + [40] = { 44.2, 59.4, 1, 270 }, + [41] = { 46.6, 59.4, 1, 270 }, + [42] = { 49.2, 59.3, 1, 270 }, + [43] = { 46, 59, 1, 270 }, + [44] = { 48.6, 58.6, 1, 270 }, + [45] = { 51.8, 58.5, 1, 270 }, + [46] = { 34.7, 58.4, 1, 270 }, + [47] = { 41.2, 58.3, 1, 270 }, + [48] = { 31.4, 57.9, 1, 270 }, + [49] = { 39.5, 57.8, 1, 270 }, + [50] = { 44.8, 57.6, 1, 270 }, + [51] = { 32.7, 57.1, 1, 270 }, + [52] = { 34.4, 57.1, 1, 270 }, + [53] = { 45.8, 57, 1, 270 }, + [54] = { 42.3, 56.8, 1, 270 }, + [55] = { 43.1, 56.4, 1, 270 }, + [56] = { 43.4, 55.9, 1, 270 }, + [57] = { 43.9, 55.8, 1, 270 }, + [58] = { 44, 55.5, 1, 270 }, + [59] = { 49.1, 54.8, 1, 270 }, + [60] = { 30, 54.3, 1, 270 }, + [61] = { 31, 53.7, 1, 270 }, + [62] = { 51.5, 53.3, 1, 270 }, + [63] = { 44.2, 52.9, 1, 270 }, + [64] = { 51, 52.3, 1, 270 }, + [65] = { 50.1, 51.9, 1, 270 }, + [66] = { 51.3, 51.1, 1, 270 }, + [67] = { 45.5, 50.6, 1, 270 }, + [68] = { 48.5, 50.5, 1, 270 }, + [69] = { 49.4, 50.5, 1, 270 }, + [70] = { 49.3, 50.3, 1, 270 }, + [71] = { 45.7, 50.2, 1, 270 }, + [72] = { 45.4, 49.9, 1, 270 }, + [73] = { 48.1, 49.1, 1, 270 }, + }, + ["lvl"] = "5-6", + }, + [1126] = { + ["coords"] = { + [1] = { 47.3, 63.9, 1, 270 }, + [2] = { 49.4, 62.6, 1, 270 }, + [3] = { 50.4, 60, 1, 270 }, + [4] = { 49.7, 58.6, 1, 270 }, + [5] = { 48, 56.7, 1, 270 }, + [6] = { 48.2, 56.6, 1, 270 }, + [7] = { 34.3, 55.6, 1, 270 }, + [8] = { 59.8, 55.3, 1, 270 }, + [9] = { 62.4, 55.1, 1, 270 }, + [10] = { 49.2, 54.8, 1, 270 }, + [11] = { 35.6, 54.7, 1, 270 }, + [12] = { 58.7, 54.1, 1, 270 }, + [13] = { 36.3, 54.1, 1, 270 }, + [14] = { 64.2, 53.9, 1, 270 }, + [15] = { 37.3, 52.7, 1, 270 }, + [16] = { 56.8, 52.7, 1, 270 }, + [17] = { 36.3, 52.2, 1, 270 }, + [18] = { 50.5, 52.1, 1, 270 }, + [19] = { 38.1, 51.1, 1, 270 }, + [20] = { 37, 51.1, 1, 270 }, + [21] = { 38.1, 51, 1, 270 }, + [22] = { 67, 50.3, 1, 270 }, + [23] = { 65.3, 50.2, 1, 270 }, + [24] = { 38.7, 48.6, 1, 270 }, + [25] = { 39.1, 48.1, 1, 270 }, + [26] = { 55.9, 47.8, 1, 270 }, + [27] = { 56.1, 47.8, 1, 270 }, + [28] = { 48.5, 47.3, 1, 270 }, + [29] = { 48.1, 47.2, 1, 270 }, + [30] = { 41.4, 47.2, 1, 270 }, + [31] = { 48.1, 47.1, 1, 270 }, + [32] = { 39.6, 47, 1, 270 }, + [33] = { 38.5, 46.6, 1, 270 }, + [34] = { 45.2, 45.3, 1, 270 }, + [35] = { 50.4, 43.2, 1, 270 }, + [36] = { 45.4, 41.6, 1, 270 }, + [37] = { 45.1, 41.6, 1, 270 }, + [38] = { 41.7, 39.5, 1, 270 }, + [39] = { 43.5, 38, 1, 270 }, + [40] = { 43.5, 34.3, 1, 270 }, + [41] = { 41.2, 30.5, 1, 270 }, + [42] = { 43.9, 29.7, 1, 270 }, + }, + ["lvl"] = "6-7", + }, + [1127] = { + ["coords"] = { + [1] = { 70.7, 61.6, 1, 270 }, + [2] = { 74.7, 61.3, 1, 270 }, + [3] = { 72.4, 61, 1, 270 }, + [4] = { 63.9, 60.5, 1, 270 }, + [5] = { 60.9, 60.3, 1, 270 }, + [6] = { 59.6, 60.1, 1, 270 }, + [7] = { 56.6, 60, 1, 270 }, + [8] = { 58.5, 59.7, 1, 270 }, + [9] = { 63.1, 59.2, 1, 270 }, + [10] = { 55.8, 59, 1, 270 }, + [11] = { 58.7, 58.9, 1, 270 }, + [12] = { 59.9, 58.6, 1, 270 }, + [13] = { 61.4, 58.4, 1, 270 }, + [14] = { 53.4, 58.2, 1, 270 }, + [15] = { 59, 57.9, 1, 270 }, + [16] = { 55.5, 57.4, 1, 270 }, + [17] = { 55.6, 57.4, 1, 270 }, + [18] = { 79.2, 57.2, 1, 270 }, + [19] = { 61.3, 56.7, 1, 270 }, + [20] = { 57.3, 56.7, 1, 270 }, + [21] = { 62.8, 56.2, 1, 270 }, + [22] = { 55.7, 55.8, 1, 270 }, + [23] = { 71.5, 55.6, 1, 270 }, + [24] = { 26.6, 55.1, 1, 270 }, + [25] = { 55.3, 54.3, 1, 270 }, + [26] = { 56.7, 54.3, 1, 270 }, + [27] = { 27.4, 54, 1, 270 }, + [28] = { 60.8, 53.9, 1, 270 }, + [29] = { 28.3, 53.3, 1, 270 }, + [30] = { 66.1, 53.3, 1, 270 }, + [31] = { 66.2, 52.7, 1, 270 }, + [32] = { 73.5, 52.1, 1, 270 }, + [33] = { 30.1, 52, 1, 270 }, + [34] = { 70.5, 52, 1, 270 }, + [35] = { 68.7, 51.9, 1, 270 }, + [36] = { 37.7, 51.9, 1, 270 }, + [37] = { 67.4, 51.7, 1, 270 }, + [38] = { 70.8, 51.6, 1, 270 }, + [39] = { 58.2, 51.3, 1, 270 }, + [40] = { 57.9, 50.4, 1, 270 }, + [41] = { 69.7, 50.2, 1, 270 }, + [42] = { 59.2, 50.1, 1, 270 }, + [43] = { 32, 49.8, 1, 270 }, + [44] = { 29.6, 49.7, 1, 270 }, + [45] = { 66.8, 49.3, 1, 270 }, + [46] = { 32.1, 48.8, 1, 270 }, + [47] = { 73.4, 48.7, 1, 270 }, + [48] = { 75.8, 48.2, 1, 270 }, + [49] = { 33.5, 47.9, 1, 270 }, + [50] = { 27.7, 47.4, 1, 270 }, + [51] = { 40.5, 47.2, 1, 270 }, + [52] = { 32.2, 47.1, 1, 270 }, + [53] = { 25.9, 46.4, 1, 270 }, + [54] = { 80.2, 46.3, 1, 270 }, + [55] = { 37.8, 46, 1, 270 }, + [56] = { 27.5, 45.8, 1, 270 }, + [57] = { 26.2, 44.7, 1, 270 }, + [58] = { 28.4, 44.3, 1, 270 }, + [59] = { 79.8, 43.3, 1, 270 }, + [60] = { 26.7, 42.9, 1, 270 }, + [61] = { 28, 42.7, 1, 270 }, + [62] = { 45.3, 42.6, 1, 270 }, + [63] = { 29.6, 42.5, 1, 270 }, + [64] = { 45.2, 42.2, 1, 270 }, + [65] = { 29.2, 40, 1, 270 }, + [66] = { 27.5, 39.3, 1, 270 }, + [67] = { 42.4, 38.9, 1, 270 }, + [68] = { 31.7, 38.7, 1, 270 }, + [69] = { 30.1, 38.4, 1, 270 }, + [70] = { 33.1, 37.5, 1, 270 }, + [71] = { 37.5, 37.4, 1, 270 }, + [72] = { 35.6, 36.8, 1, 270 }, + [73] = { 31, 35.7, 1, 270 }, + [74] = { 37.4, 35.6, 1, 270 }, + [75] = { 81.5, 35.6, 1, 270 }, + [76] = { 34.1, 35.2, 1, 270 }, + [77] = { 35.5, 34.9, 1, 270 }, + [78] = { 37, 34.3, 1, 270 }, + [79] = { 32.4, 34.3, 1, 270 }, + [80] = { 39.5, 34, 1, 270 }, + [81] = { 44.2, 32, 1, 270 }, + [82] = { 34.6, 31.5, 1, 270 }, + [83] = { 36.8, 31.2, 1, 270 }, + [84] = { 33.9, 31.1, 1, 270 }, + [85] = { 40.1, 30.5, 1, 270 }, + [86] = { 42.1, 30, 1, 270 }, + [87] = { 43.6, 29.6, 1, 270 }, + }, + ["lvl"] = "7-8", + }, + [1128] = { + ["coords"] = { + [1] = { 41.9, 66.8, 1, 270 }, + [2] = { 38.9, 62, 1, 270 }, + [3] = { 38.7, 61.1, 1, 270 }, + [4] = { 41.7, 60.9, 1, 270 }, + [5] = { 39.9, 60.9, 1, 270 }, + [6] = { 40.5, 60.8, 1, 270 }, + [7] = { 39, 60.5, 1, 270 }, + [8] = { 35.5, 60, 1, 270 }, + [9] = { 41.6, 59.9, 1, 270 }, + [10] = { 34.4, 59.5, 1, 270 }, + [11] = { 39.6, 59.1, 1, 270 }, + [12] = { 43.5, 59, 1, 270 }, + [13] = { 45.6, 58.2, 1, 270 }, + [14] = { 45.3, 58.1, 1, 270 }, + [15] = { 32.5, 57.9, 1, 270 }, + [16] = { 30.8, 57.2, 1, 270 }, + [17] = { 32.3, 56, 1, 270 }, + [18] = { 30.4, 55.6, 1, 270 }, + [19] = { 44.7, 55.4, 1, 270 }, + [20] = { 45, 55.2, 1, 270 }, + [21] = { 43.7, 51.9, 1, 270 }, + [22] = { 50.5, 51.8, 1, 270 }, + [23] = { 49.2, 51, 1, 270 }, + [24] = { 44.2, 51, 1, 270 }, + [25] = { 44.9, 50.2, 1, 270 }, + [26] = { 48.1, 49.9, 1, 270 }, + [27] = { 45.4, 49.3, 1, 270 }, + [28] = { 44.3, 47.8, 1, 270 }, + [29] = { 43.1, 45.9, 1, 270 }, + [30] = { 43.7, 44.9, 1, 270 }, + }, + ["lvl"] = "5-6", + }, + [1129] = { + ["coords"] = {}, + ["lvl"] = "6-7", + }, + [1130] = { + ["coords"] = { + [1] = { 55.6, 58.5, 1, 5400 }, + }, + ["lvl"] = "12", + ["rnk"] = "4", + }, + [1131] = { + ["coords"] = { + [1] = { 50.7, 52.5, 1, 270 }, + [2] = { 51.5, 49.6, 1, 270 }, + [3] = { 52.1, 48.7, 1, 270 }, + [4] = { 45.8, 47.2, 1, 270 }, + [5] = { 43.2, 47.1, 1, 270 }, + [6] = { 45.9, 47, 1, 270 }, + [7] = { 51.6, 46.4, 1, 270 }, + [8] = { 51, 45, 1, 270 }, + [9] = { 49, 44.6, 1, 270 }, + [10] = { 48.9, 44.6, 1, 270 }, + [11] = { 33.8, 43.7, 1, 270 }, + [12] = { 33.5, 43.6, 1, 270 }, + [13] = { 45.1, 43.3, 1, 270 }, + [14] = { 34, 42.8, 1, 270 }, + [15] = { 44.9, 42.4, 1, 270 }, + [16] = { 45.7, 42.3, 1, 270 }, + [17] = { 34.6, 42.2, 1, 270 }, + [18] = { 34, 42.2, 1, 270 }, + [19] = { 45.1, 41.8, 1, 270 }, + [20] = { 44.9, 41.4, 1, 270 }, + [21] = { 34.6, 41.3, 1, 270 }, + [22] = { 34, 41.3, 1, 270 }, + [23] = { 33.9, 41, 1, 270 }, + }, + ["lvl"] = "7-8", + }, + [1132] = { + ["coords"] = { + [1] = { 34.2, 41.8, 1, 3600 }, + }, + ["lvl"] = "10", + ["rnk"] = "4", + }, + [1133] = { + ["coords"] = { + [1] = { 34.2, 41.9, 1, 9000 }, + [2] = { 34.2, 41.8, 1, 9000 }, + }, + ["lvl"] = "8-9", + }, + [1134] = { + ["coords"] = { + [1] = { 42.5, 55, 1, 270 }, + [2] = { 42.1, 54.9, 1, 270 }, + [3] = { 42.9, 54.8, 1, 270 }, + [4] = { 41.8, 54.5, 1, 270 }, + [5] = { 39.2, 49.5, 1, 270 }, + }, + ["lvl"] = "5-6", + }, + [1135] = { + ["coords"] = { + [1] = { 41.9, 54, 1, 270 }, + [2] = { 42.5, 53.7, 1, 270 }, + [3] = { 42.2, 53.3, 1, 270 }, + [4] = { 40.2, 53.3, 1, 270 }, + [5] = { 41.9, 52.7, 1, 270 }, + [6] = { 42.2, 52.7, 1, 270 }, + [7] = { 42.4, 52, 1, 270 }, + [8] = { 42.7, 51.8, 1, 270 }, + [9] = { 41.9, 51.4, 1, 270 }, + [10] = { 41.4, 51.1, 1, 270 }, + [11] = { 42.6, 50.4, 1, 270 }, + [12] = { 43, 50, 1, 270 }, + [13] = { 42.8, 49.9, 1, 270 }, + [14] = { 41.1, 49.8, 1, 270 }, + [15] = { 43.6, 49.6, 1, 270 }, + [16] = { 41.2, 49.3, 1, 270 }, + [17] = { 42.6, 49.3, 1, 270 }, + [18] = { 43.3, 49.2, 1, 270 }, + [19] = { 40.9, 49.2, 1, 270 }, + [20] = { 42.4, 49.2, 1, 270 }, + [21] = { 43.2, 48.9, 1, 270 }, + [22] = { 39.1, 48.8, 1, 270 }, + [23] = { 39.7, 48.8, 1, 270 }, + [24] = { 42.2, 48.5, 1, 270 }, + [25] = { 42, 48.4, 1, 270 }, + [26] = { 41.6, 48.4, 1, 270 }, + [27] = { 38.9, 48.3, 1, 270 }, + [28] = { 39.5, 48.1, 1, 270 }, + [29] = { 40.3, 47.8, 1, 270 }, + [30] = { 39.7, 47.7, 1, 270 }, + [31] = { 42.1, 47.6, 1, 270 }, + [32] = { 39.3, 47.4, 1, 270 }, + [33] = { 39.9, 47.2, 1, 270 }, + [34] = { 41.1, 47.2, 1, 270 }, + [35] = { 42, 47, 1, 270 }, + [36] = { 42.6, 47, 1, 270 }, + [37] = { 40.5, 46.9, 1, 270 }, + [38] = { 40.5, 46.6, 1, 270 }, + [39] = { 39.2, 46.4, 1, 270 }, + [40] = { 42.1, 46.3, 1, 270 }, + [41] = { 42.2, 46.1, 1, 270 }, + [42] = { 41.9, 46, 1, 270 }, + [43] = { 41.3, 45.3, 1, 270 }, + [44] = { 41.9, 45.2, 1, 270 }, + }, + ["lvl"] = "6-7", + }, + [1137] = { + ["coords"] = { + [1] = { 39, 47.5, 1, 3600 }, + }, + ["lvl"] = "9", + ["rnk"] = "4", + }, + [1138] = { + ["coords"] = { + [1] = { 44.6, 47.1, 1, 270 }, + [2] = { 45.7, 46.7, 1, 270 }, + [3] = { 43.3, 46.5, 1, 270 }, + [4] = { 45.6, 46.2, 1, 270 }, + [5] = { 45.9, 46.2, 1, 270 }, + [6] = { 45.7, 45.9, 1, 270 }, + [7] = { 51.3, 45.7, 1, 270 }, + [8] = { 51.3, 45.4, 1, 270 }, + [9] = { 44.4, 45.3, 1, 270 }, + [10] = { 49.7, 44.5, 1, 270 }, + }, + ["lvl"] = "6-7", + }, + [1139] = { + ["coords"] = { + [1] = { 34.6, 44.5, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [1140] = { + ["coords"] = { + [1] = { 69.9, 29.2, 11, 18000 }, + }, + ["lvl"] = "31", + ["rnk"] = "4", + }, + [1141] = { + ["coords"] = { + [1] = { 41.5, 89.4, 1519, 490 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [1142] = { + ["coords"] = { + [1] = { 36.7, 31.9, 33, 300 }, + [2] = { 36.1, 31.7, 33, 300 }, + [3] = { 37.3, 31.3, 33, 300 }, + [4] = { 37.1, 31.1, 33, 300 }, + [5] = { 37.5, 31, 33, 300 }, + [6] = { 35.5, 30.9, 33, 300 }, + [7] = { 37.5, 30.9, 33, 300 }, + [8] = { 37.2, 30.8, 33, 300 }, + [9] = { 37.2, 30.7, 33, 300 }, + [10] = { 37.9, 30.2, 33, 300 }, + [11] = { 38.2, 30, 33, 300 }, + [12] = { 37, 28.7, 33, 300 }, + }, + ["lvl"] = "36-37", + }, + [1144] = { + ["coords"] = { + [1] = { 36.7, 31.9, 33, 300 }, + [2] = { 36.1, 31.7, 33, 300 }, + [3] = { 37.3, 31.3, 33, 300 }, + [4] = { 37.1, 31.1, 33, 300 }, + [5] = { 37.5, 31, 33, 300 }, + [6] = { 35.5, 30.9, 33, 300 }, + [7] = { 37.5, 30.9, 33, 300 }, + [8] = { 37.2, 30.8, 33, 300 }, + [9] = { 37.2, 30.7, 33, 300 }, + [10] = { 37.9, 30.2, 33, 300 }, + [11] = { 38.2, 30, 33, 300 }, + [12] = { 37, 28.7, 33, 300 }, + }, + ["lvl"] = "36-37", + }, + [1146] = { + ["coords"] = { + [1] = { 32.4, 27.9, 33, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [1147] = { + ["coords"] = { + [1] = { 31.6, 29.2, 33, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [1148] = { + ["coords"] = { + [1] = { 32.7, 29.2, 33, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [1149] = { + ["coords"] = { + [1] = { 31.6, 28, 33, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [1150] = { + ["coords"] = { + [1] = { 39.9, 14.4, 33, 300 }, + [2] = { 41.2, 14.1, 33, 300 }, + [3] = { 41, 13.7, 33, 300 }, + [4] = { 40.4, 12.3, 33, 300 }, + [5] = { 39.9, 11.5, 33, 300 }, + [6] = { 38.7, 11.3, 33, 300 }, + [7] = { 36.9, 10.5, 33, 300 }, + [8] = { 34.5, 10.5, 33, 300 }, + [9] = { 34.1, 9.6, 33, 300 }, + [10] = { 32.5, 8.9, 33, 300 }, + [11] = { 35.7, 8.2, 33, 300 }, + [12] = { 34.5, 8.1, 33, 300 }, + [13] = { 35.6, 8.1, 33, 300 }, + }, + ["lvl"] = "30-31", + }, + [1151] = { + ["coords"] = { + [1] = { 34, 31.8, 33, 300 }, + [2] = { 29.8, 23.1, 33, 300 }, + [3] = { 27.4, 20.7, 33, 300 }, + [4] = { 28.4, 20.6, 33, 300 }, + [5] = { 22.5, 19.3, 33, 300 }, + [6] = { 26.1, 19, 33, 300 }, + [7] = { 22, 18.5, 33, 300 }, + [8] = { 21.6, 17.7, 33, 300 }, + [9] = { 22.7, 17.7, 33, 300 }, + [10] = { 21.9, 16.6, 33, 300 }, + [11] = { 21.6, 16, 33, 300 }, + [12] = { 17.8, 12.1, 33, 300 }, + [13] = { 15, 10, 33, 300 }, + }, + ["lvl"] = "35-36", + }, + [1152] = { + ["coords"] = { + [1] = { 37.9, 32.6, 33, 300 }, + [2] = { 39.2, 31.9, 33, 300 }, + [3] = { 38.4, 31.4, 33, 300 }, + [4] = { 39.9, 30.8, 33, 300 }, + [5] = { 38.6, 29.9, 33, 300 }, + [6] = { 40.1, 29.5, 33, 300 }, + [7] = { 39.5, 28.7, 33, 300 }, + [8] = { 38.8, 28.5, 33, 300 }, + [9] = { 40.1, 28.4, 33, 300 }, + [10] = { 40.2, 27.3, 33, 300 }, + [11] = { 39.4, 25, 33, 300 }, + [12] = { 40.8, 24.7, 33, 300 }, + [13] = { 40.1, 22.9, 33, 300 }, + [14] = { 40.7, 22.2, 33, 300 }, + [15] = { 41.3, 21.5, 33, 300 }, + [16] = { 39.6, 21.5, 33, 300 }, + [17] = { 42.1, 21.2, 33, 300 }, + [18] = { 41.4, 20.7, 33, 300 }, + [19] = { 40.4, 19.4, 33, 300 }, + [20] = { 41.4, 19.1, 33, 300 }, + [21] = { 40.9, 17.7, 33, 300 }, + [22] = { 39.7, 17.5, 33, 300 }, + [23] = { 41.8, 17.5, 33, 300 }, + [24] = { 42.4, 16.6, 33, 300 }, + [25] = { 39.8, 16, 33, 300 }, + [26] = { 41.9, 15.9, 33, 300 }, + [27] = { 41.3, 15.3, 33, 300 }, + }, + ["lvl"] = "35-36", + }, + [1153] = { + ["coords"] = { + [1] = { 37.3, 47.8, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [1154] = { + ["coords"] = { + [1] = { 81.8, 61.7, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [1155] = { + ["coords"] = { + [1] = { 81.9, 64.6, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [1156] = { + ["coords"] = { + [1] = { 81.7, 64.1, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [1157] = { + ["coords"] = { + [1] = { 13.2, 30.7, 11, 300 }, + [2] = { 13.9, 30.7, 11, 300 }, + [3] = { 14.1, 30.6, 11, 300 }, + [4] = { 13.9, 30.6, 11, 300 }, + [5] = { 13.6, 30.4, 11, 300 }, + [6] = { 14, 30.2, 11, 300 }, + [7] = { 13.7, 29.8, 11, 300 }, + [8] = { 13.6, 29.8, 11, 300 }, + [9] = { 14.1, 29.4, 11, 300 }, + [10] = { 13.9, 29.3, 11, 300 }, + [11] = { 14, 29.1, 11, 300 }, + [12] = { 14.1, 29, 11, 300 }, + [13] = { 15.1, 24, 11, 300 }, + [14] = { 14.2, 23.9, 11, 300 }, + [15] = { 15, 23.7, 11, 300 }, + [16] = { 15.2, 23.4, 11, 300 }, + }, + ["lvl"] = "26-27", + }, + [1158] = { + ["coords"] = { + [1] = { 13.5, 30.9, 11, 300 }, + [2] = { 14.1, 30, 11, 300 }, + [3] = { 13.3, 29.6, 11, 300 }, + [4] = { 14.5, 29, 11, 300 }, + [5] = { 13.9, 28.7, 11, 300 }, + [6] = { 14.1, 24.9, 11, 300 }, + [7] = { 14.8, 24.6, 11, 300 }, + [8] = { 14.2, 24.5, 11, 300 }, + [9] = { 14.6, 24.3, 11, 300 }, + [10] = { 14.8, 24.2, 11, 300 }, + [11] = { 13.7, 24.1, 11, 300 }, + [12] = { 14.5, 24.1, 11, 300 }, + [13] = { 15.5, 24.1, 11, 300 }, + [14] = { 14.3, 24, 11, 300 }, + [15] = { 14.6, 23.8, 11, 300 }, + [16] = { 15.1, 23.6, 11, 300 }, + [17] = { 14.6, 23.6, 11, 300 }, + [18] = { 15, 23.5, 11, 300 }, + [19] = { 15.4, 23.4, 11, 300 }, + [20] = { 14.4, 23.3, 11, 300 }, + [21] = { 14.1, 29, 11, 300 }, + [22] = { 15.1, 24, 11, 300 }, + [23] = { 14.2, 23.9, 11, 300 }, + [24] = { 15.2, 23.4, 11, 300 }, + }, + ["lvl"] = "27-28", + }, + [1159] = { + ["coords"] = { + [1] = { 13.8, 30.2, 11, 300 }, + }, + ["lvl"] = "29", + }, + [1160] = { + ["coords"] = { + [1] = { 15.4, 23.6, 11, 300 }, + }, + ["lvl"] = "30", + }, + [1161] = { + ["coords"] = { + [1] = { 31.4, 80.9, 38, 300 }, + [2] = { 31.6, 80.8, 38, 300 }, + [3] = { 30.9, 80.7, 38, 300 }, + [4] = { 32.7, 80, 38, 300 }, + [5] = { 32.6, 79.9, 38, 300 }, + [6] = { 31.3, 79.7, 38, 300 }, + [7] = { 32.1, 79.6, 38, 300 }, + [8] = { 32.8, 79.3, 38, 300 }, + [9] = { 32.1, 79, 38, 300 }, + [10] = { 33.4, 77.7, 38, 300 }, + [11] = { 32.3, 77.5, 38, 300 }, + [12] = { 31.5, 77.2, 38, 300 }, + [13] = { 31.8, 76.7, 38, 300 }, + [14] = { 34.7, 76.7, 38, 300 }, + [15] = { 35.1, 76.5, 38, 300 }, + [16] = { 31.4, 76.5, 38, 300 }, + [17] = { 34.5, 76.3, 38, 300 }, + [18] = { 35, 76.3, 38, 300 }, + [19] = { 33.4, 75.9, 38, 300 }, + [20] = { 31.5, 75.7, 38, 300 }, + [21] = { 30.7, 75.5, 38, 300 }, + [22] = { 31.6, 75.3, 38, 300 }, + [23] = { 30.5, 75.2, 38, 300 }, + [24] = { 31, 75.2, 38, 300 }, + [25] = { 32, 74.9, 38, 300 }, + [26] = { 31.8, 74.4, 38, 300 }, + [27] = { 31.2, 74.4, 38, 300 }, + [28] = { 30.8, 74.3, 38, 300 }, + [29] = { 33.4, 74.1, 38, 300 }, + [30] = { 34.6, 74.1, 38, 300 }, + [31] = { 30.8, 74, 38, 300 }, + [32] = { 29.6, 72.9, 38, 300 }, + [33] = { 30.1, 72.8, 38, 300 }, + [34] = { 29.6, 72.5, 38, 300 }, + [35] = { 34.9, 72.4, 38, 300 }, + [36] = { 32.2, 72.3, 38, 300 }, + [37] = { 30.1, 72, 38, 300 }, + [38] = { 35.3, 71.9, 38, 300 }, + [39] = { 33.8, 71.8, 38, 300 }, + [40] = { 31, 71.7, 38, 300 }, + [41] = { 34.7, 71.3, 38, 300 }, + [42] = { 33.8, 71.2, 38, 300 }, + [43] = { 35.4, 71, 38, 300 }, + [44] = { 35.3, 71, 38, 300 }, + [45] = { 33.1, 71, 38, 300 }, + [46] = { 33.9, 70.8, 38, 300 }, + [47] = { 32.2, 70.4, 38, 300 }, + [48] = { 33.5, 70.4, 38, 300 }, + [49] = { 33.4, 70.3, 38, 300 }, + [50] = { 33.1, 70, 38, 300 }, + [51] = { 28.7, 59.3, 38, 300 }, + [52] = { 27.4, 57.9, 38, 300 }, + [53] = { 26.7, 57.4, 38, 300 }, + [54] = { 26.4, 57.3, 38, 300 }, + [55] = { 27.2, 57.1, 38, 300 }, + [56] = { 26.8, 56.8, 38, 300 }, + [57] = { 26.4, 56.7, 38, 300 }, + [58] = { 27.4, 55.9, 38, 300 }, + [59] = { 27.4, 54.1, 38, 300 }, + [60] = { 26.2, 52.2, 38, 300 }, + [61] = { 27.4, 50.5, 38, 300 }, + [62] = { 26.5, 50.1, 38, 300 }, + [63] = { 26.1, 49.4, 38, 300 }, + [64] = { 25.9, 49, 38, 300 }, + [65] = { 26.2, 49, 38, 300 }, + [66] = { 26.6, 49, 38, 300 }, + [67] = { 28.6, 48.8, 38, 300 }, + [68] = { 27.5, 48.7, 38, 300 }, + [69] = { 25.8, 48.7, 38, 300 }, + [70] = { 26.2, 48.4, 38, 300 }, + [71] = { 26.8, 46.8, 38, 300 }, + }, + ["lvl"] = "11-12", + }, + [1162] = { + ["coords"] = { + [1] = { 31.4, 80.9, 38, 300 }, + [2] = { 31.6, 80.8, 38, 300 }, + [3] = { 30.9, 80.7, 38, 300 }, + [4] = { 32.7, 80, 38, 300 }, + [5] = { 32.6, 79.9, 38, 300 }, + [6] = { 31.3, 79.7, 38, 300 }, + [7] = { 32.1, 79.6, 38, 300 }, + [8] = { 32.8, 79.3, 38, 300 }, + [9] = { 32.1, 79, 38, 300 }, + [10] = { 33.4, 77.7, 38, 300 }, + [11] = { 32.3, 77.5, 38, 300 }, + [12] = { 31.5, 77.2, 38, 300 }, + [13] = { 31.8, 76.7, 38, 300 }, + [14] = { 34.7, 76.7, 38, 300 }, + [15] = { 35.1, 76.5, 38, 300 }, + [16] = { 31.4, 76.5, 38, 300 }, + [17] = { 34.5, 76.3, 38, 300 }, + [18] = { 35, 76.3, 38, 300 }, + [19] = { 33.4, 75.9, 38, 300 }, + [20] = { 31.5, 75.7, 38, 300 }, + [21] = { 30.7, 75.5, 38, 300 }, + [22] = { 31.6, 75.3, 38, 300 }, + [23] = { 30.5, 75.2, 38, 300 }, + [24] = { 31, 75.2, 38, 300 }, + [25] = { 32, 74.9, 38, 300 }, + [26] = { 31.8, 74.4, 38, 300 }, + [27] = { 31.2, 74.4, 38, 300 }, + [28] = { 30.8, 74.3, 38, 300 }, + [29] = { 33.4, 74.1, 38, 300 }, + [30] = { 34.6, 74.1, 38, 300 }, + [31] = { 30.8, 74, 38, 300 }, + [32] = { 29.6, 72.9, 38, 300 }, + [33] = { 30.1, 72.8, 38, 300 }, + [34] = { 29.6, 72.5, 38, 300 }, + [35] = { 34.9, 72.4, 38, 300 }, + [36] = { 32.2, 72.3, 38, 300 }, + [37] = { 30.1, 72, 38, 300 }, + [38] = { 35.3, 71.9, 38, 300 }, + [39] = { 33.8, 71.8, 38, 300 }, + [40] = { 31, 71.7, 38, 300 }, + [41] = { 34.7, 71.3, 38, 300 }, + [42] = { 33.8, 71.2, 38, 300 }, + [43] = { 35.4, 71, 38, 300 }, + [44] = { 35.3, 71, 38, 300 }, + [45] = { 33.1, 71, 38, 300 }, + [46] = { 33.9, 70.8, 38, 300 }, + [47] = { 32.2, 70.4, 38, 300 }, + [48] = { 33.5, 70.4, 38, 300 }, + [49] = { 33.4, 70.3, 38, 300 }, + [50] = { 33.1, 70, 38, 300 }, + [51] = { 28.7, 59.3, 38, 300 }, + [52] = { 27.4, 57.9, 38, 300 }, + [53] = { 26.7, 57.4, 38, 300 }, + [54] = { 26.4, 57.3, 38, 300 }, + [55] = { 27.2, 57.1, 38, 300 }, + [56] = { 26.8, 56.8, 38, 300 }, + [57] = { 26.4, 56.7, 38, 300 }, + [58] = { 27.4, 55.9, 38, 300 }, + [59] = { 27.4, 54.1, 38, 300 }, + [60] = { 26.2, 52.2, 38, 300 }, + [61] = { 27.4, 50.5, 38, 300 }, + [62] = { 26.5, 50.1, 38, 300 }, + [63] = { 26.1, 49.4, 38, 300 }, + [64] = { 25.9, 49, 38, 300 }, + [65] = { 26.2, 49, 38, 300 }, + [66] = { 26.6, 49, 38, 300 }, + [67] = { 28.6, 48.8, 38, 300 }, + [68] = { 27.5, 48.7, 38, 300 }, + [69] = { 25.8, 48.7, 38, 300 }, + [70] = { 26.2, 48.4, 38, 300 }, + [71] = { 26.8, 46.8, 38, 300 }, + }, + ["lvl"] = "11-12", + }, + [1163] = { + ["coords"] = { + [1] = { 35, 90.9, 38, 300 }, + [2] = { 34.9, 90.1, 38, 300 }, + [3] = { 32.8, 89.9, 38, 300 }, + [4] = { 34.6, 89.7, 38, 300 }, + [5] = { 35.6, 89.4, 38, 300 }, + [6] = { 33.7, 89, 38, 300 }, + [7] = { 34.9, 88.7, 38, 300 }, + [8] = { 36.3, 88.4, 38, 300 }, + [9] = { 33.6, 88.3, 38, 300 }, + [10] = { 29, 87.7, 38, 300 }, + [11] = { 34.4, 87.6, 38, 300 }, + [12] = { 29.2, 87.6, 38, 300 }, + [13] = { 35.5, 87.5, 38, 300 }, + [14] = { 35.2, 87.5, 38, 300 }, + [15] = { 33.7, 87.3, 38, 300 }, + [16] = { 28.3, 87, 38, 300 }, + [17] = { 28.2, 86.9, 38, 300 }, + [18] = { 29.4, 86.7, 38, 300 }, + [19] = { 36.2, 86.5, 38, 300 }, + [20] = { 28.7, 86.2, 38, 300 }, + [21] = { 36.3, 86.1, 38, 300 }, + [22] = { 28, 86, 38, 300 }, + [23] = { 34.2, 85.9, 38, 300 }, + [24] = { 27.5, 85.9, 38, 300 }, + [25] = { 27.4, 85.6, 38, 300 }, + [26] = { 31.3, 85.4, 38, 300 }, + [27] = { 37.1, 85.2, 38, 300 }, + [28] = { 34, 85.1, 38, 300 }, + [29] = { 28.9, 84.9, 38, 300 }, + [30] = { 34.7, 84.9, 38, 300 }, + [31] = { 36, 84.9, 38, 300 }, + [32] = { 36.7, 84.4, 38, 300 }, + [33] = { 35.9, 84.2, 38, 300 }, + [34] = { 35.1, 84.1, 38, 300 }, + [35] = { 30.1, 83.7, 38, 300 }, + [36] = { 28.5, 83.7, 38, 300 }, + [37] = { 36.3, 83.6, 38, 300 }, + [38] = { 36.1, 83.6, 38, 300 }, + [39] = { 28.1, 83.5, 38, 300 }, + [40] = { 27.9, 83.4, 38, 300 }, + [41] = { 36.3, 82.9, 38, 300 }, + [42] = { 35.3, 82.9, 38, 300 }, + [43] = { 35.3, 82.6, 38, 300 }, + [44] = { 34.7, 82.4, 38, 300 }, + [45] = { 34.2, 81.7, 38, 300 }, + [46] = { 29.6, 81.5, 38, 300 }, + [47] = { 27.9, 81.5, 38, 300 }, + [48] = { 36.5, 81.4, 38, 300 }, + [49] = { 29, 81.2, 38, 300 }, + [50] = { 28, 81.2, 38, 300 }, + [51] = { 29, 80.9, 38, 300 }, + [52] = { 35.6, 80.9, 38, 300 }, + [53] = { 35.5, 80.2, 38, 300 }, + [54] = { 36.6, 79.7, 38, 300 }, + [55] = { 36.8, 77.7, 38, 300 }, + [56] = { 49.6, 30, 38, 300 }, + [57] = { 48.6, 29.9, 38, 300 }, + [58] = { 48.9, 29.9, 38, 300 }, + [59] = { 48.8, 29.5, 38, 300 }, + [60] = { 48.1, 29.1, 38, 300 }, + [61] = { 48.7, 28.9, 38, 300 }, + [62] = { 47.8, 28.5, 38, 300 }, + [63] = { 50.4, 26.9, 38, 300 }, + [64] = { 50.6, 25, 38, 300 }, + [65] = { 50.8, 24, 38, 300 }, + [66] = { 50.5, 23.9, 38, 300 }, + [67] = { 51.3, 23.7, 38, 300 }, + [68] = { 50, 23.6, 38, 300 }, + [69] = { 51, 23.3, 38, 300 }, + [70] = { 48, 23.3, 38, 300 }, + [71] = { 49, 22, 38, 300 }, + [72] = { 46.5, 21.2, 38, 300 }, + [73] = { 48.3, 21.2, 38, 300 }, + [74] = { 47.7, 21.1, 38, 300 }, + [75] = { 48.7, 21, 38, 300 }, + [76] = { 48.1, 20.9, 38, 300 }, + [77] = { 48.2, 20.7, 38, 300 }, + [78] = { 48, 19.1, 38, 300 }, + }, + ["lvl"] = "13-14", + }, + [1164] = { + ["coords"] = { + [1] = { 38.8, 12.8, 3, 300 }, + [2] = { 39, 12.7, 3, 300 }, + [3] = { 38.8, 12.4, 3, 300 }, + [4] = { 37.3, 92.4, 38, 300 }, + [5] = { 35.9, 92.2, 38, 300 }, + [6] = { 34.3, 91.6, 38, 300 }, + [7] = { 34.6, 91.5, 38, 300 }, + [8] = { 35.1, 91.4, 38, 300 }, + [9] = { 33, 91.2, 38, 300 }, + [10] = { 33.3, 91, 38, 300 }, + [11] = { 36.2, 90.9, 38, 300 }, + [12] = { 37.5, 90.1, 38, 300 }, + [13] = { 38.1, 87.7, 38, 300 }, + [14] = { 38.3, 87.7, 38, 300 }, + [15] = { 38.1, 87.4, 38, 300 }, + [16] = { 37.5, 86.1, 38, 300 }, + [17] = { 54, 27.2, 38, 300 }, + [18] = { 54.6, 27, 38, 300 }, + [19] = { 55.2, 27, 38, 300 }, + [20] = { 52.9, 26.9, 38, 300 }, + [21] = { 54.4, 26.7, 38, 300 }, + [22] = { 54.5, 26.4, 38, 300 }, + [23] = { 54.2, 26, 38, 300 }, + [24] = { 54, 25, 38, 300 }, + [25] = { 52.7, 25, 38, 300 }, + [26] = { 52.2, 24.7, 38, 300 }, + [27] = { 51.7, 24.5, 38, 300 }, + [28] = { 52.2, 24.1, 38, 300 }, + [29] = { 52.6, 23.9, 38, 300 }, + [30] = { 51.9, 23.6, 38, 300 }, + [31] = { 53.1, 22.8, 38, 300 }, + [32] = { 52.2, 21.8, 38, 300 }, + }, + ["lvl"] = "15-16", + }, + [1165] = { + ["coords"] = { + [1] = { 71.6, 68.5, 38, 300 }, + [2] = { 71.2, 68.5, 38, 300 }, + [3] = { 72.3, 68.2, 38, 300 }, + [4] = { 70.1, 67.4, 38, 300 }, + [5] = { 69.4, 67.2, 38, 300 }, + [6] = { 72.6, 66.8, 38, 300 }, + [7] = { 70, 66.5, 38, 300 }, + [8] = { 70.1, 66.1, 38, 300 }, + [9] = { 69.1, 66.1, 38, 300 }, + [10] = { 68, 66.1, 38, 300 }, + [11] = { 69.2, 66, 38, 300 }, + [12] = { 70.9, 66, 38, 300 }, + [13] = { 68, 65.8, 38, 300 }, + [14] = { 70.6, 64.8, 38, 300 }, + [15] = { 72.6, 64.7, 38, 300 }, + [16] = { 70.9, 64.3, 38, 300 }, + [17] = { 72.5, 64.2, 38, 300 }, + [18] = { 70.8, 63.5, 38, 300 }, + [19] = { 72.6, 63.4, 38, 300 }, + [20] = { 69, 63.3, 38, 300 }, + [21] = { 69.1, 63.3, 38, 300 }, + [22] = { 70.1, 62.7, 38, 300 }, + [23] = { 68.3, 62.6, 38, 300 }, + [24] = { 68.2, 62.6, 38, 300 }, + [25] = { 68.7, 62.4, 38, 300 }, + [26] = { 72.7, 62, 38, 300 }, + [27] = { 68.9, 60, 38, 300 }, + [28] = { 70.6, 60, 38, 300 }, + [29] = { 67.3, 59.6, 38, 300 }, + [30] = { 69.6, 59.3, 38, 300 }, + [31] = { 68.2, 59, 38, 300 }, + }, + ["lvl"] = "17-18", + }, + [1166] = { + ["coords"] = { + [1] = { 35, 90.9, 38, 300 }, + [2] = { 34.9, 90.1, 38, 300 }, + [3] = { 32.8, 89.9, 38, 300 }, + [4] = { 34.6, 89.7, 38, 300 }, + [5] = { 35.6, 89.4, 38, 300 }, + [6] = { 33.7, 89, 38, 300 }, + [7] = { 34.9, 88.7, 38, 300 }, + [8] = { 36.3, 88.4, 38, 300 }, + [9] = { 33.6, 88.3, 38, 300 }, + [10] = { 29, 87.7, 38, 300 }, + [11] = { 34.4, 87.6, 38, 300 }, + [12] = { 29.2, 87.6, 38, 300 }, + [13] = { 35.5, 87.5, 38, 300 }, + [14] = { 35.2, 87.5, 38, 300 }, + [15] = { 33.7, 87.3, 38, 300 }, + [16] = { 28.3, 87, 38, 300 }, + [17] = { 28.2, 86.9, 38, 300 }, + [18] = { 29.4, 86.7, 38, 300 }, + [19] = { 36.2, 86.5, 38, 300 }, + [20] = { 28.7, 86.2, 38, 300 }, + [21] = { 36.3, 86.1, 38, 300 }, + [22] = { 28, 86, 38, 300 }, + [23] = { 34.2, 85.9, 38, 300 }, + [24] = { 27.5, 85.9, 38, 300 }, + [25] = { 27.4, 85.6, 38, 300 }, + [26] = { 31.3, 85.4, 38, 300 }, + [27] = { 37.1, 85.2, 38, 300 }, + [28] = { 34, 85.1, 38, 300 }, + [29] = { 28.9, 84.9, 38, 300 }, + [30] = { 34.7, 84.9, 38, 300 }, + [31] = { 36, 84.9, 38, 300 }, + [32] = { 36.7, 84.4, 38, 300 }, + [33] = { 35.9, 84.2, 38, 300 }, + [34] = { 35.1, 84.1, 38, 300 }, + [35] = { 30.1, 83.7, 38, 300 }, + [36] = { 28.5, 83.7, 38, 300 }, + [37] = { 36.3, 83.6, 38, 300 }, + [38] = { 36.1, 83.6, 38, 300 }, + [39] = { 28.1, 83.5, 38, 300 }, + [40] = { 27.9, 83.4, 38, 300 }, + [41] = { 36.3, 82.9, 38, 300 }, + [42] = { 35.3, 82.9, 38, 300 }, + [43] = { 35.3, 82.6, 38, 300 }, + [44] = { 34.7, 82.4, 38, 300 }, + [45] = { 34.2, 81.7, 38, 300 }, + [46] = { 29.6, 81.5, 38, 300 }, + [47] = { 27.9, 81.5, 38, 300 }, + [48] = { 36.5, 81.4, 38, 300 }, + [49] = { 29, 81.2, 38, 300 }, + [50] = { 28, 81.2, 38, 300 }, + [51] = { 29, 80.9, 38, 300 }, + [52] = { 35.6, 80.9, 38, 300 }, + [53] = { 35.5, 80.2, 38, 300 }, + [54] = { 36.6, 79.7, 38, 300 }, + [55] = { 36.8, 77.7, 38, 300 }, + [56] = { 49.6, 30, 38, 300 }, + [57] = { 48.6, 29.9, 38, 300 }, + [58] = { 48.9, 29.9, 38, 300 }, + [59] = { 48.8, 29.5, 38, 300 }, + [60] = { 48.1, 29.1, 38, 300 }, + [61] = { 48.7, 28.9, 38, 300 }, + [62] = { 47.8, 28.5, 38, 300 }, + [63] = { 50.4, 26.9, 38, 300 }, + [64] = { 50.6, 25, 38, 300 }, + [65] = { 50.8, 24, 38, 300 }, + [66] = { 50.5, 23.9, 38, 300 }, + [67] = { 51.3, 23.7, 38, 300 }, + [68] = { 50, 23.6, 38, 300 }, + [69] = { 51, 23.3, 38, 300 }, + [70] = { 48, 23.3, 38, 300 }, + [71] = { 49, 22, 38, 300 }, + [72] = { 46.5, 21.2, 38, 300 }, + [73] = { 48.3, 21.2, 38, 300 }, + [74] = { 47.7, 21.1, 38, 300 }, + [75] = { 48.7, 21, 38, 300 }, + [76] = { 48.1, 20.9, 38, 300 }, + [77] = { 48.2, 20.7, 38, 300 }, + [78] = { 48, 19.1, 38, 300 }, + }, + ["lvl"] = "13-14", + }, + [1167] = { + ["coords"] = { + [1] = { 71.6, 68.5, 38, 300 }, + [2] = { 71.2, 68.5, 38, 300 }, + [3] = { 72.3, 68.2, 38, 300 }, + [4] = { 70.1, 67.4, 38, 300 }, + [5] = { 69.4, 67.2, 38, 300 }, + [6] = { 72.6, 66.8, 38, 300 }, + [7] = { 70, 66.5, 38, 300 }, + [8] = { 70.1, 66.1, 38, 300 }, + [9] = { 69.1, 66.1, 38, 300 }, + [10] = { 68, 66.1, 38, 300 }, + [11] = { 69.2, 66, 38, 300 }, + [12] = { 70.9, 66, 38, 300 }, + [13] = { 68, 65.8, 38, 300 }, + [14] = { 70.6, 64.8, 38, 300 }, + [15] = { 72.6, 64.7, 38, 300 }, + [16] = { 70.9, 64.3, 38, 300 }, + [17] = { 72.5, 64.2, 38, 300 }, + [18] = { 70.8, 63.5, 38, 300 }, + [19] = { 72.6, 63.4, 38, 300 }, + [20] = { 69, 63.3, 38, 300 }, + [21] = { 69.1, 63.3, 38, 300 }, + [22] = { 70.1, 62.7, 38, 300 }, + [23] = { 68.3, 62.6, 38, 300 }, + [24] = { 68.2, 62.6, 38, 300 }, + [25] = { 68.7, 62.4, 38, 300 }, + [26] = { 72.7, 62, 38, 300 }, + [27] = { 68.9, 60, 38, 300 }, + [28] = { 70.6, 60, 38, 300 }, + [29] = { 67.3, 59.6, 38, 300 }, + [30] = { 69.6, 59.3, 38, 300 }, + [31] = { 68.2, 59, 38, 300 }, + }, + ["lvl"] = "18-19", + }, + [1169] = { + ["coords"] = { + [1] = { 63.8, 78.4, 11, 300 }, + [2] = { 63.8, 78.2, 11, 300 }, + [3] = { 63.6, 77.9, 11, 300 }, + [4] = { 63.4, 77.6, 11, 300 }, + [5] = { 63.2, 77.3, 11, 300 }, + [6] = { 57.6, 19.3, 38, 300 }, + [7] = { 58.7, 18.7, 38, 300 }, + [8] = { 57.6, 16.6, 38, 300 }, + [9] = { 60.3, 15.8, 38, 300 }, + [10] = { 59.2, 13.7, 38, 300 }, + [11] = { 58.9, 13.5, 38, 300 }, + [12] = { 59, 13.4, 38, 300 }, + }, + ["lvl"] = "18-19", + }, + [1171] = { + ["coords"] = {}, + ["lvl"] = "17-18", + }, + [1172] = { + ["coords"] = { + [1] = { 65.8, 91.6, 11, 300 }, + [2] = { 27.5, 45.1, 38, 300 }, + [3] = { 28.3, 44.8, 38, 300 }, + [4] = { 27.7, 43.6, 38, 300 }, + [5] = { 26.7, 41.5, 38, 300 }, + [6] = { 27.4, 41.5, 38, 300 }, + [7] = { 25.9, 34.7, 38, 300 }, + [8] = { 23.8, 34.2, 38, 300 }, + [9] = { 27.4, 32.4, 38, 300 }, + [10] = { 25, 32.4, 38, 300 }, + [11] = { 26.2, 32, 38, 300 }, + [12] = { 26.1, 31.9, 38, 300 }, + [13] = { 26.2, 31.5, 38, 300 }, + [14] = { 23.8, 30.5, 38, 300 }, + [15] = { 24.8, 30.2, 38, 300 }, + [16] = { 24.7, 30, 38, 300 }, + [17] = { 25.1, 29.8, 38, 300 }, + [18] = { 24.7, 29.7, 38, 300 }, + [19] = { 24.9, 29.6, 38, 300 }, + [20] = { 37, 29.5, 38, 300 }, + [21] = { 22.6, 28.8, 38, 300 }, + [22] = { 25, 28.8, 38, 300 }, + [23] = { 23.3, 28.5, 38, 300 }, + [24] = { 38, 27.4, 38, 300 }, + [25] = { 37, 27.1, 38, 300 }, + [26] = { 26.1, 27, 38, 300 }, + [27] = { 35.8, 26.8, 38, 300 }, + [28] = { 23.7, 26.1, 38, 300 }, + [29] = { 37.4, 25.9, 38, 300 }, + [30] = { 38.4, 25.7, 38, 300 }, + [31] = { 39.5, 25.1, 38, 300 }, + [32] = { 36.4, 25, 38, 300 }, + [33] = { 40.4, 23.3, 38, 300 }, + [34] = { 38.6, 22.9, 38, 300 }, + [35] = { 39.3, 20.9, 38, 300 }, + [36] = { 38.3, 19.6, 38, 300 }, + [37] = { 40.7, 19.5, 38, 300 }, + [38] = { 36.6, 18.3, 38, 300 }, + [39] = { 40, 18, 38, 300 }, + [40] = { 37.1, 17.9, 38, 300 }, + [41] = { 38.3, 17.9, 38, 300 }, + [42] = { 34.5, 17.4, 38, 300 }, + [43] = { 34.5, 17.1, 38, 300 }, + [44] = { 38.4, 16.1, 38, 300 }, + [45] = { 35.5, 15.5, 38, 300 }, + [46] = { 35.8, 14.3, 38, 300 }, + [47] = { 38.3, 14.3, 38, 300 }, + [48] = { 33.4, 12.5, 38, 300 }, + [49] = { 38.3, 12.4, 38, 300 }, + [50] = { 36.6, 11.9, 38, 300 }, + [51] = { 37.1, 10.6, 38, 300 }, + [52] = { 38.9, 10.6, 38, 300 }, + [53] = { 34.6, 10.4, 38, 300 }, + [54] = { 40.5, 10, 38, 300 }, + }, + ["lvl"] = "10-11", + }, + [1173] = { + ["coords"] = { + [1] = { 65.8, 91.6, 11, 300 }, + [2] = { 27.5, 45.1, 38, 300 }, + [3] = { 28.3, 44.8, 38, 300 }, + [4] = { 27.7, 43.6, 38, 300 }, + [5] = { 26.7, 41.5, 38, 300 }, + [6] = { 27.4, 41.5, 38, 300 }, + [7] = { 25.9, 34.7, 38, 300 }, + [8] = { 23.8, 34.2, 38, 300 }, + [9] = { 27.4, 32.4, 38, 300 }, + [10] = { 25, 32.4, 38, 300 }, + [11] = { 26.2, 32, 38, 300 }, + [12] = { 26.1, 31.9, 38, 300 }, + [13] = { 26.2, 31.5, 38, 300 }, + [14] = { 23.8, 30.5, 38, 300 }, + [15] = { 24.8, 30.2, 38, 300 }, + [16] = { 24.7, 30, 38, 300 }, + [17] = { 25.1, 29.8, 38, 300 }, + [18] = { 24.7, 29.7, 38, 300 }, + [19] = { 24.9, 29.6, 38, 300 }, + [20] = { 37, 29.5, 38, 300 }, + [21] = { 22.6, 28.8, 38, 300 }, + [22] = { 25, 28.8, 38, 300 }, + [23] = { 23.3, 28.5, 38, 300 }, + [24] = { 38, 27.4, 38, 300 }, + [25] = { 37, 27.1, 38, 300 }, + [26] = { 26.1, 27, 38, 300 }, + [27] = { 35.8, 26.8, 38, 300 }, + [28] = { 23.7, 26.1, 38, 300 }, + [29] = { 37.4, 25.9, 38, 300 }, + [30] = { 38.4, 25.7, 38, 300 }, + [31] = { 39.5, 25.1, 38, 300 }, + [32] = { 36.4, 25, 38, 300 }, + [33] = { 40.4, 23.3, 38, 300 }, + [34] = { 38.6, 22.9, 38, 300 }, + [35] = { 39.3, 20.9, 38, 300 }, + [36] = { 38.3, 19.6, 38, 300 }, + [37] = { 40.7, 19.5, 38, 300 }, + [38] = { 36.6, 18.3, 38, 300 }, + [39] = { 40, 18, 38, 300 }, + [40] = { 37.1, 17.9, 38, 300 }, + [41] = { 38.3, 17.9, 38, 300 }, + [42] = { 34.5, 17.4, 38, 300 }, + [43] = { 34.5, 17.1, 38, 300 }, + [44] = { 38.4, 16.1, 38, 300 }, + [45] = { 35.5, 15.5, 38, 300 }, + [46] = { 35.8, 14.3, 38, 300 }, + [47] = { 38.3, 14.3, 38, 300 }, + [48] = { 33.4, 12.5, 38, 300 }, + [49] = { 38.3, 12.4, 38, 300 }, + [50] = { 36.6, 11.9, 38, 300 }, + [51] = { 37.1, 10.6, 38, 300 }, + [52] = { 38.9, 10.6, 38, 300 }, + [53] = { 34.6, 10.4, 38, 300 }, + [54] = { 40.5, 10, 38, 300 }, + }, + ["lvl"] = "10-11", + }, + [1174] = { + ["coords"] = { + [1] = { 35.5, 27.9, 38, 300 }, + [2] = { 36, 27.1, 38, 300 }, + [3] = { 36.4, 26.1, 38, 300 }, + [4] = { 36.6, 25.7, 38, 300 }, + [5] = { 36.6, 25.1, 38, 300 }, + [6] = { 36.2, 24.3, 38, 300 }, + [7] = { 35.5, 23.9, 38, 300 }, + [8] = { 35.2, 23.9, 38, 300 }, + [9] = { 35, 23.4, 38, 300 }, + [10] = { 36.3, 23.4, 38, 300 }, + [11] = { 35.3, 23, 38, 300 }, + [12] = { 35.6, 22.6, 38, 300 }, + [13] = { 35.8, 22.3, 38, 300 }, + [14] = { 36, 22.2, 38, 300 }, + [15] = { 35.4, 21.9, 38, 300 }, + [16] = { 35.6, 21, 38, 300 }, + [17] = { 36.3, 20.4, 38, 300 }, + }, + ["lvl"] = "12-13", + }, + [1175] = { + ["coords"] = { + [1] = { 35.2, 24.9, 38, 300 }, + [2] = { 35.6, 24.7, 38, 300 }, + [3] = { 35.4, 24.6, 38, 300 }, + [4] = { 35.2, 24.3, 38, 300 }, + [5] = { 35.6, 22, 38, 300 }, + [6] = { 35.6, 19.5, 38, 300 }, + [7] = { 35.5, 27.9, 38, 300 }, + [8] = { 36, 27.1, 38, 300 }, + [9] = { 36.4, 26.1, 38, 300 }, + [10] = { 35.5, 23.9, 38, 300 }, + [11] = { 35, 23.4, 38, 300 }, + [12] = { 36.3, 23.4, 38, 300 }, + [13] = { 36, 22.2, 38, 300 }, + [14] = { 35.4, 21.9, 38, 300 }, + [15] = { 35.6, 21, 38, 300 }, + [16] = { 36.3, 20.4, 38, 300 }, + }, + ["lvl"] = "12-13", + }, + [1176] = { + ["coords"] = { + [1] = { 26.2, 44.1, 38, 300 }, + [2] = { 26.5, 44, 38, 300 }, + [3] = { 26.2, 44, 38, 300 }, + [4] = { 26.3, 43.8, 38, 300 }, + [5] = { 25.7, 43.8, 38, 300 }, + [6] = { 25.5, 43.7, 38, 300 }, + [7] = { 25.7, 43.5, 38, 300 }, + [8] = { 26.3, 43.2, 38, 300 }, + [9] = { 25.7, 42.8, 38, 300 }, + [10] = { 37, 24.9, 38, 300 }, + [11] = { 37.2, 24.8, 38, 300 }, + [12] = { 37, 24.7, 38, 300 }, + [13] = { 37.3, 24.5, 38, 300 }, + [14] = { 36.3, 23.5, 38, 300 }, + [15] = { 35.5, 17.1, 38, 300 }, + [16] = { 35.2, 17.1, 38, 300 }, + [17] = { 35.8, 16.6, 38, 300 }, + [18] = { 37.5, 16.5, 38, 300 }, + [19] = { 37.3, 16.4, 38, 300 }, + [20] = { 35.3, 16.3, 38, 300 }, + [21] = { 37.5, 16.3, 38, 300 }, + [22] = { 35.5, 15.9, 38, 300 }, + [23] = { 39.5, 12.9, 38, 300 }, + [24] = { 39.8, 12.4, 38, 300 }, + [25] = { 39.3, 12.1, 38, 300 }, + }, + ["lvl"] = "11-12", + }, + [1177] = { + ["coords"] = { + [1] = { 35, 27.3, 38, 300 }, + [2] = { 34.4, 26.8, 38, 300 }, + [3] = { 34.9, 26.3, 38, 300 }, + }, + ["lvl"] = "14", + }, + [1178] = { + ["coords"] = { + [1] = { 67.1, 33.9, 38, 300 }, + [2] = { 75.7, 32.3, 38, 300 }, + [3] = { 66.4, 32.2, 38, 300 }, + [4] = { 68.6, 31.8, 38, 300 }, + [5] = { 74.6, 30.6, 38, 300 }, + [6] = { 68.3, 30.3, 38, 300 }, + [7] = { 67.4, 30.2, 38, 300 }, + [8] = { 73.4, 28.8, 38, 300 }, + [9] = { 68.7, 28.4, 38, 300 }, + [10] = { 69.7, 27, 38, 300 }, + [11] = { 73.6, 25.9, 38, 300 }, + [12] = { 70.8, 25.6, 38, 300 }, + [13] = { 69.7, 25.2, 38, 300 }, + [14] = { 72.2, 25.1, 38, 300 }, + [15] = { 63.6, 25.1, 38, 300 }, + [16] = { 73.9, 24.7, 38, 300 }, + [17] = { 70.9, 23.3, 38, 300 }, + [18] = { 72.1, 23.3, 38, 300 }, + [19] = { 67.3, 23.2, 38, 300 }, + [20] = { 69.5, 22.8, 38, 300 }, + [21] = { 69.5, 22.6, 38, 300 }, + [22] = { 68.6, 22.2, 38, 300 }, + [23] = { 67.3, 21.6, 38, 300 }, + [24] = { 66, 21.6, 38, 300 }, + [25] = { 63.6, 21.4, 38, 300 }, + [26] = { 68.6, 21.2, 38, 300 }, + [27] = { 69.3, 21, 38, 300 }, + [28] = { 64.9, 19.9, 38, 300 }, + [29] = { 72, 19.8, 38, 300 }, + [30] = { 73.4, 19.7, 38, 300 }, + [31] = { 70.3, 17.8, 38, 300 }, + }, + ["lvl"] = "18-19", + ["rnk"] = "1", + }, + [1179] = { + ["coords"] = { + [1] = { 67.1, 33.9, 38, 300 }, + [2] = { 75.7, 32.3, 38, 300 }, + [3] = { 66.4, 32.2, 38, 300 }, + [4] = { 68.6, 31.8, 38, 300 }, + [5] = { 74.6, 30.6, 38, 300 }, + [6] = { 68.3, 30.3, 38, 300 }, + [7] = { 67.4, 30.2, 38, 300 }, + [8] = { 73.4, 28.8, 38, 300 }, + [9] = { 68.7, 28.4, 38, 300 }, + [10] = { 69.7, 27, 38, 300 }, + [11] = { 73.6, 25.9, 38, 300 }, + [12] = { 70.8, 25.6, 38, 300 }, + [13] = { 69.7, 25.2, 38, 300 }, + [14] = { 72.2, 25.1, 38, 300 }, + [15] = { 63.6, 25.1, 38, 300 }, + [16] = { 73.9, 24.7, 38, 300 }, + [17] = { 70.9, 23.3, 38, 300 }, + [18] = { 72.1, 23.3, 38, 300 }, + [19] = { 67.3, 23.2, 38, 300 }, + [20] = { 69.5, 22.8, 38, 300 }, + [21] = { 69.5, 22.6, 38, 300 }, + [22] = { 68.6, 22.2, 38, 300 }, + [23] = { 67.3, 21.6, 38, 300 }, + [24] = { 66, 21.6, 38, 300 }, + [25] = { 63.6, 21.4, 38, 300 }, + [26] = { 68.6, 21.2, 38, 300 }, + [27] = { 69.3, 21, 38, 300 }, + [28] = { 64.9, 19.9, 38, 300 }, + [29] = { 72, 19.8, 38, 300 }, + [30] = { 73.4, 19.7, 38, 300 }, + [31] = { 70.3, 17.8, 38, 300 }, + }, + ["lvl"] = "18-19", + ["rnk"] = "1", + }, + [1180] = { + ["coords"] = { + [1] = { 74.7, 25.2, 38, 300 }, + [2] = { 75.2, 25.1, 38, 300 }, + [3] = { 75.5, 24.8, 38, 300 }, + [4] = { 68.8, 20.3, 38, 300 }, + [5] = { 68.6, 18.9, 38, 300 }, + [6] = { 68.3, 18.7, 38, 300 }, + [7] = { 75.6, 18.4, 38, 300 }, + [8] = { 75.8, 17.5, 38, 300 }, + [9] = { 75.1, 16, 38, 300 }, + [10] = { 79.8, 15.2, 38, 300 }, + [11] = { 79.5, 14.9, 38, 300 }, + [12] = { 76.8, 14.3, 38, 300 }, + [13] = { 77.5, 13.9, 38, 300 }, + [14] = { 77.3, 13.8, 38, 300 }, + }, + ["lvl"] = "19-20", + ["rnk"] = "1", + }, + [1181] = { + ["coords"] = { + [1] = { 67.1, 33.9, 38, 300 }, + [2] = { 75.7, 32.3, 38, 300 }, + [3] = { 66.4, 32.2, 38, 300 }, + [4] = { 68.6, 31.8, 38, 300 }, + [5] = { 74.6, 30.6, 38, 300 }, + [6] = { 68.3, 30.3, 38, 300 }, + [7] = { 67.4, 30.2, 38, 300 }, + [8] = { 73.4, 28.8, 38, 300 }, + [9] = { 68.7, 28.4, 38, 300 }, + [10] = { 69.7, 27, 38, 300 }, + [11] = { 73.6, 25.9, 38, 300 }, + [12] = { 70.8, 25.6, 38, 300 }, + [13] = { 69.7, 25.2, 38, 300 }, + [14] = { 72.2, 25.1, 38, 300 }, + [15] = { 63.6, 25.1, 38, 300 }, + [16] = { 73.9, 24.7, 38, 300 }, + [17] = { 70.9, 23.3, 38, 300 }, + [18] = { 72.1, 23.3, 38, 300 }, + [19] = { 67.3, 23.2, 38, 300 }, + [20] = { 69.5, 22.8, 38, 300 }, + [21] = { 69.5, 22.6, 38, 300 }, + [22] = { 68.6, 22.2, 38, 300 }, + [23] = { 67.3, 21.6, 38, 300 }, + [24] = { 66, 21.6, 38, 300 }, + [25] = { 63.6, 21.4, 38, 300 }, + [26] = { 68.6, 21.2, 38, 300 }, + [27] = { 69.3, 21, 38, 300 }, + [28] = { 64.9, 19.9, 38, 300 }, + [29] = { 72, 19.8, 38, 300 }, + [30] = { 73.4, 19.7, 38, 300 }, + [31] = { 70.3, 17.8, 38, 300 }, + }, + ["lvl"] = "18-19", + ["rnk"] = "1", + }, + [1182] = { + ["coords"] = { + [1] = { 66.5, 7.9, 405, 300 }, + [2] = { 41, 83, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [1183] = { + ["coords"] = { + [1] = { 74.7, 25.2, 38, 300 }, + [2] = { 75.2, 25.1, 38, 300 }, + [3] = { 75.5, 24.8, 38, 300 }, + [4] = { 68.8, 20.3, 38, 300 }, + [5] = { 68.6, 18.9, 38, 300 }, + [6] = { 68.3, 18.7, 38, 300 }, + [7] = { 75.6, 18.4, 38, 300 }, + [8] = { 75.8, 17.5, 38, 300 }, + [9] = { 75.1, 16, 38, 300 }, + [10] = { 79.8, 15.2, 38, 300 }, + [11] = { 79.5, 14.9, 38, 300 }, + [12] = { 76.8, 14.3, 38, 300 }, + [13] = { 77.5, 13.9, 38, 300 }, + [14] = { 77.3, 13.8, 38, 300 }, + }, + ["lvl"] = "19-20", + ["rnk"] = "1", + }, + [1184] = { + ["coords"] = { + [1] = { 55.3, 78.3, 38, 300 }, + [2] = { 60.2, 77.5, 38, 300 }, + [3] = { 58.1, 77.3, 38, 300 }, + [4] = { 50.5, 73.8, 38, 300 }, + [5] = { 49, 73, 38, 300 }, + [6] = { 48.7, 72.4, 38, 300 }, + [7] = { 46.3, 72.4, 38, 300 }, + [8] = { 56.6, 65.9, 38, 300 }, + [9] = { 57.1, 65.2, 38, 300 }, + [10] = { 62.5, 55.7, 38, 300 }, + [11] = { 62.6, 54.4, 38, 300 }, + [12] = { 64.7, 53.3, 38, 300 }, + [13] = { 67.5, 52.4, 38, 300 }, + [14] = { 69.7, 51.6, 38, 300 }, + [15] = { 65.6, 50.9, 38, 300 }, + [16] = { 71.2, 50.9, 38, 300 }, + }, + ["lvl"] = "13-14", + }, + [1185] = { + ["coords"] = { + [1] = { 78.9, 40.9, 38, 300 }, + [2] = { 80.4, 40.3, 38, 300 }, + [3] = { 80.8, 40, 38, 300 }, + [4] = { 75.8, 38, 38, 300 }, + [5] = { 76.2, 38, 38, 300 }, + [6] = { 74.3, 37.8, 38, 300 }, + [7] = { 77.8, 36.4, 38, 300 }, + [8] = { 75.6, 35.9, 38, 300 }, + [9] = { 74.3, 34.7, 38, 300 }, + [10] = { 77.5, 34.3, 38, 300 }, + [11] = { 59.3, 23.3, 38, 300 }, + }, + ["lvl"] = "17-18", + }, + [1186] = { + ["coords"] = { + [1] = { 20.8, 77.5, 38, 300 }, + [2] = { 18.9, 75.5, 38, 300 }, + [3] = { 39.5, 74.5, 38, 300 }, + [4] = { 40.4, 71.7, 38, 300 }, + [5] = { 37.8, 55.8, 38, 300 }, + [6] = { 30.6, 53.9, 38, 300 }, + [7] = { 37.2, 52.8, 38, 300 }, + [8] = { 40.7, 52.4, 38, 300 }, + [9] = { 29.4, 40.3, 38, 300 }, + [10] = { 26.3, 40.3, 38, 300 }, + [11] = { 24.8, 36.5, 38, 300 }, + [12] = { 39.7, 33.3, 38, 300 }, + [13] = { 37.1, 32.4, 38, 300 }, + [14] = { 36, 32.1, 38, 300 }, + [15] = { 33.4, 30.1, 38, 300 }, + [16] = { 34.1, 29.8, 38, 300 }, + [17] = { 32.5, 29.8, 38, 300 }, + [18] = { 27.4, 28.7, 38, 300 }, + [19] = { 23.8, 25.4, 38, 300 }, + [20] = { 30.1, 24.7, 38, 300 }, + [21] = { 27.5, 14.3, 38, 300 }, + [22] = { 29.1, 13.4, 38, 300 }, + [23] = { 27.2, 10.5, 38, 300 }, + [24] = { 30.5, 10.4, 38, 300 }, + }, + ["lvl"] = "11-12", + }, + [1187] = { + ["coords"] = { + [1] = { 83.5, 65.5, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [1188] = { + ["coords"] = { + [1] = { 63.2, 80.2, 38, 300 }, + [2] = { 66.2, 76, 38, 300 }, + [3] = { 58.6, 75, 38, 300 }, + [4] = { 65.9, 74.2, 38, 300 }, + [5] = { 64.4, 73.5, 38, 300 }, + [6] = { 67.9, 73.3, 38, 300 }, + [7] = { 68.4, 72.6, 38, 300 }, + [8] = { 65.5, 69.7, 38, 300 }, + [9] = { 58.4, 69.1, 38, 300 }, + [10] = { 78.1, 68.7, 38, 300 }, + [11] = { 40.8, 66.7, 38, 300 }, + [12] = { 43.1, 63.7, 38, 300 }, + [13] = { 40.9, 62.3, 38, 300 }, + [14] = { 43.9, 61.3, 38, 300 }, + [15] = { 73.9, 55.3, 38, 300 }, + [16] = { 75.8, 54.9, 38, 300 }, + [17] = { 76.1, 51.7, 38, 300 }, + [18] = { 74.6, 50.6, 38, 300 }, + [19] = { 67.9, 49.3, 38, 300 }, + [20] = { 65.8, 47.3, 38, 300 }, + [21] = { 66.3, 45.5, 38, 300 }, + [22] = { 65, 45.3, 38, 300 }, + [23] = { 62.5, 43.3, 38, 300 }, + [24] = { 66.2, 42.7, 38, 300 }, + }, + ["lvl"] = "13-14", + }, + [1189] = { + ["coords"] = { + [1] = { 37.9, 63.4, 38, 300 }, + [2] = { 72.8, 44.7, 38, 300 }, + [3] = { 74.2, 44.7, 38, 300 }, + [4] = { 75.8, 44.3, 38, 300 }, + [5] = { 68.3, 42.8, 38, 300 }, + [6] = { 76.4, 41.8, 38, 300 }, + [7] = { 78, 41.6, 38, 300 }, + [8] = { 68.6, 41.5, 38, 300 }, + [9] = { 71.8, 40.5, 38, 300 }, + [10] = { 71.7, 40.3, 38, 300 }, + [11] = { 72.1, 37.9, 38, 300 }, + [12] = { 71.9, 36.7, 38, 300 }, + [13] = { 68.5, 36.4, 38, 300 }, + [14] = { 73.2, 35.5, 38, 300 }, + [15] = { 64.9, 34.5, 38, 300 }, + [16] = { 63.6, 33.6, 38, 300 }, + [17] = { 62.1, 33, 38, 300 }, + [18] = { 58.8, 32.3, 38, 300 }, + [19] = { 64.4, 29.5, 38, 300 }, + [20] = { 58.9, 28.7, 38, 300 }, + [21] = { 60, 26.9, 38, 300 }, + [22] = { 59, 25.2, 38, 300 }, + }, + ["lvl"] = "16-17", + }, + [1190] = { + ["coords"] = { + [1] = { 29.9, 46.8, 38, 300 }, + [2] = { 37.2, 39.9, 38, 300 }, + [3] = { 27.2, 39.1, 38, 300 }, + [4] = { 37.4, 38.4, 38, 300 }, + [5] = { 38.3, 37.9, 38, 300 }, + [6] = { 38.5, 36.1, 38, 300 }, + [7] = { 37.2, 36.1, 38, 300 }, + [8] = { 34.7, 36.1, 38, 300 }, + [9] = { 29.9, 36, 38, 300 }, + [10] = { 32.9, 35.1, 38, 300 }, + [11] = { 37, 34.5, 38, 300 }, + [12] = { 38.3, 34.3, 38, 300 }, + [13] = { 37.1, 34.3, 38, 300 }, + [14] = { 35.5, 34, 38, 300 }, + [15] = { 33.3, 33.4, 38, 300 }, + [16] = { 29.1, 32.8, 38, 300 }, + [17] = { 33.9, 31.8, 38, 300 }, + [18] = { 34.3, 30.5, 38, 300 }, + [19] = { 39.6, 28.8, 38, 300 }, + [20] = { 27.7, 26.6, 38, 300 }, + [21] = { 31.8, 24.1, 38, 300 }, + [22] = { 28.6, 23.3, 38, 300 }, + [23] = { 24.3, 21.4, 38, 300 }, + [24] = { 30.6, 16.6, 38, 300 }, + [25] = { 30.5, 15.4, 38, 300 }, + [26] = { 25.3, 13.9, 38, 300 }, + }, + ["lvl"] = "10-11", + }, + [1191] = { + ["coords"] = { + [1] = { 52.5, 74.7, 38, 300 }, + [2] = { 77.9, 73.7, 38, 300 }, + [3] = { 52.2, 73.4, 38, 300 }, + [4] = { 74.7, 72.5, 38, 300 }, + [5] = { 50.8, 71.6, 38, 300 }, + [6] = { 66.4, 68.9, 38, 300 }, + [7] = { 49.1, 68.8, 38, 300 }, + [8] = { 45.5, 66.6, 38, 300 }, + [9] = { 58.7, 65.8, 38, 300 }, + [10] = { 63.8, 65.7, 38, 300 }, + [11] = { 60.2, 65.6, 38, 300 }, + [12] = { 59.8, 63.7, 38, 300 }, + [13] = { 56.5, 63.6, 38, 300 }, + [14] = { 65, 63.4, 38, 300 }, + [15] = { 44.2, 62.8, 38, 300 }, + [16] = { 34.2, 62.6, 38, 300 }, + [17] = { 60.1, 61.8, 38, 300 }, + [18] = { 58.5, 61.3, 38, 300 }, + [19] = { 62.6, 60.3, 38, 300 }, + [20] = { 62.7, 59.9, 38, 300 }, + [21] = { 59.9, 59.5, 38, 300 }, + [22] = { 64.2, 59.3, 38, 300 }, + [23] = { 65.6, 58, 38, 300 }, + [24] = { 63, 57.5, 38, 300 }, + [25] = { 61.6, 57.3, 38, 300 }, + [26] = { 64.3, 56.9, 38, 300 }, + [27] = { 41.8, 55.3, 38, 300 }, + [28] = { 74.5, 52.4, 38, 300 }, + [29] = { 39, 51.3, 38, 300 }, + [30] = { 63.4, 50.7, 38, 300 }, + [31] = { 65.2, 48.4, 38, 300 }, + [32] = { 63.6, 47, 38, 300 }, + }, + ["lvl"] = "14-15", + }, + [1192] = { + ["coords"] = { + [1] = { 74.8, 50.7, 38, 300 }, + [2] = { 77.3, 47.1, 38, 300 }, + [3] = { 75.7, 46.6, 38, 300 }, + [4] = { 74.8, 42.1, 38, 300 }, + [5] = { 65.4, 41.9, 38, 300 }, + [6] = { 61.3, 41.4, 38, 300 }, + [7] = { 67.4, 41.3, 38, 300 }, + [8] = { 66.3, 40.1, 38, 300 }, + [9] = { 63, 39.9, 38, 300 }, + [10] = { 61.2, 39.6, 38, 300 }, + [11] = { 67.1, 39.4, 38, 300 }, + [12] = { 64.9, 38.8, 38, 300 }, + [13] = { 62.4, 38.4, 38, 300 }, + [14] = { 66.1, 38.3, 38, 300 }, + [15] = { 60.1, 37.9, 38, 300 }, + [16] = { 70.1, 37.8, 38, 300 }, + [17] = { 60.4, 36.2, 38, 300 }, + [18] = { 63.2, 35.1, 38, 300 }, + [19] = { 60.2, 34.3, 38, 300 }, + }, + ["lvl"] = "16-17", + }, + [1193] = { + ["coords"] = { + [1] = { 57, 28, 38, 300 }, + [2] = { 45.6, 26.9, 38, 300 }, + [3] = { 43.4, 26.5, 38, 300 }, + [4] = { 56.6, 25.2, 38, 300 }, + [5] = { 43, 24.1, 38, 300 }, + [6] = { 45.6, 23.5, 38, 300 }, + [7] = { 44.7, 22.2, 38, 300 }, + [8] = { 44.3, 21.6, 38, 300 }, + [9] = { 54.7, 21.6, 38, 300 }, + [10] = { 53.9, 19.9, 38, 300 }, + [11] = { 43.2, 19.9, 38, 300 }, + [12] = { 53, 18.1, 38, 300 }, + [13] = { 43.1, 17.9, 38, 300 }, + [14] = { 51.4, 17.8, 38, 300 }, + [15] = { 46.9, 17.6, 38, 300 }, + [16] = { 49.1, 17.4, 38, 300 }, + [17] = { 44.4, 17.4, 38, 300 }, + [18] = { 48, 16.9, 38, 300 }, + [19] = { 50.4, 16.9, 38, 300 }, + [20] = { 44.4, 16.1, 38, 300 }, + [21] = { 54.1, 15.9, 38, 300 }, + [22] = { 43.5, 14.9, 38, 300 }, + [23] = { 52.8, 14.3, 38, 300 }, + [24] = { 53.9, 14.3, 38, 300 }, + [25] = { 51.6, 14.3, 38, 300 }, + [26] = { 54, 14.2, 38, 300 }, + }, + ["lvl"] = "12-13", + }, + [1194] = { + ["coords"] = { + [1] = { 78.6, 76.9, 38, 300 }, + [2] = { 78.2, 76, 38, 300 }, + [3] = { 68.5, 75.8, 38, 300 }, + [4] = { 77.3, 75.3, 38, 300 }, + [5] = { 71.1, 74.8, 38, 300 }, + [6] = { 76.3, 74.8, 38, 300 }, + [7] = { 70.6, 74.1, 38, 300 }, + [8] = { 77, 74, 38, 300 }, + [9] = { 74.4, 72.5, 38, 300 }, + [10] = { 78, 72.4, 38, 300 }, + [11] = { 71.1, 72.4, 38, 300 }, + [12] = { 75.9, 72.3, 38, 300 }, + [13] = { 75.8, 70.5, 38, 300 }, + [14] = { 74.7, 67.7, 38, 300 }, + [15] = { 79.4, 66.8, 38, 300 }, + [16] = { 74.5, 64.3, 38, 300 }, + [17] = { 76.8, 63.7, 38, 300 }, + [18] = { 79.3, 63.3, 38, 300 }, + [19] = { 78.9, 59.2, 38, 300 }, + [20] = { 77.1, 58.3, 38, 300 }, + [21] = { 78.5, 58, 38, 300 }, + [22] = { 77.2, 57.3, 38, 300 }, + [23] = { 76.9, 55.6, 38, 300 }, + [24] = { 70.9, 52.6, 38, 300 }, + [25] = { 68.4, 50.5, 38, 300 }, + }, + ["lvl"] = "15-16", + }, + [1195] = { + ["coords"] = { + [1] = { 19.3, 83.5, 38, 300 }, + [2] = { 39.5, 74.7, 38, 300 }, + [3] = { 36.9, 73.9, 38, 300 }, + [4] = { 39.5, 73, 38, 300 }, + [5] = { 21, 71.8, 38, 300 }, + [6] = { 28.6, 57, 38, 300 }, + [7] = { 34.6, 54.2, 38, 300 }, + [8] = { 35.7, 52.8, 38, 300 }, + [9] = { 31, 52.3, 38, 300 }, + [10] = { 28.8, 51.9, 38, 300 }, + [11] = { 29.8, 50.6, 38, 300 }, + [12] = { 28.7, 48.8, 38, 300 }, + [13] = { 29.8, 47, 38, 300 }, + [14] = { 30.5, 45.1, 38, 300 }, + [15] = { 30, 44.6, 38, 300 }, + [16] = { 27.7, 41.9, 38, 300 }, + [17] = { 31.1, 41.6, 38, 300 }, + [18] = { 33.9, 40.9, 38, 300 }, + [19] = { 33.5, 40.5, 38, 300 }, + [20] = { 25.3, 37.8, 38, 300 }, + [21] = { 36, 34.4, 38, 300 }, + [22] = { 32.3, 32.5, 38, 300 }, + [23] = { 38.5, 31.6, 38, 300 }, + [24] = { 36.6, 31.1, 38, 300 }, + [25] = { 36.6, 30.8, 38, 300 }, + [26] = { 31.1, 30.6, 38, 300 }, + [27] = { 28.7, 30.6, 38, 300 }, + [28] = { 32.8, 30.6, 38, 300 }, + [29] = { 29.9, 22.6, 38, 300 }, + [30] = { 27.5, 21.5, 38, 300 }, + [31] = { 30, 19.8, 38, 300 }, + [32] = { 29.7, 18.5, 38, 300 }, + [33] = { 27.5, 18, 38, 300 }, + [34] = { 32.1, 17.1, 38, 300 }, + [35] = { 28.7, 16.8, 38, 300 }, + [36] = { 34.7, 36.1, 38, 300 }, + }, + ["lvl"] = "10-11", + }, + [1196] = { + ["coords"] = { + [1] = { 46.3, 63.3, 1, 270 }, + [2] = { 46.7, 63.3, 1, 270 }, + [3] = { 49.3, 62.3, 1, 270 }, + [4] = { 58.7, 61.3, 1, 270 }, + [5] = { 64.9, 59.9, 1, 270 }, + [6] = { 30.5, 59.6, 1, 270 }, + [7] = { 50.2, 59.4, 1, 270 }, + [8] = { 61, 56.9, 1, 270 }, + [9] = { 26.7, 56.2, 1, 270 }, + [10] = { 25.3, 55.8, 1, 270 }, + [11] = { 26, 55.2, 1, 270 }, + [12] = { 28.1, 54.5, 1, 270 }, + [13] = { 50.3, 53.8, 1, 270 }, + [14] = { 28, 52, 1, 270 }, + [15] = { 59.3, 52, 1, 270 }, + [16] = { 29.7, 51.7, 1, 270 }, + [17] = { 66.5, 50.5, 1, 270 }, + [18] = { 32.3, 49.9, 1, 270 }, + [19] = { 80.1, 48.6, 1, 270 }, + [20] = { 74.8, 48.1, 1, 270 }, + [21] = { 28.3, 47.6, 1, 270 }, + [22] = { 27.6, 47.6, 1, 270 }, + [23] = { 32.4, 47.2, 1, 270 }, + [24] = { 35.9, 47.2, 1, 270 }, + [25] = { 26.8, 46.9, 1, 270 }, + [26] = { 25.5, 46.4, 1, 270 }, + [27] = { 37.1, 44, 1, 270 }, + [28] = { 38.5, 43.5, 1, 270 }, + [29] = { 56.3, 43.3, 1, 270 }, + [30] = { 51.2, 43.1, 1, 270 }, + [31] = { 28, 43.1, 1, 270 }, + [32] = { 38.1, 42.9, 1, 270 }, + [33] = { 29.1, 42.7, 1, 270 }, + [34] = { 30.2, 42.3, 1, 270 }, + [35] = { 37.7, 41.6, 1, 270 }, + [36] = { 29.3, 41.4, 1, 270 }, + [37] = { 30.8, 40.8, 1, 270 }, + [38] = { 38.9, 40.3, 1, 270 }, + [39] = { 31.8, 38.6, 1, 270 }, + [40] = { 33.4, 36.8, 1, 270 }, + [41] = { 35.2, 35.9, 1, 270 }, + [42] = { 30.6, 35.1, 1, 270 }, + [43] = { 37.8, 33.9, 1, 270 }, + [44] = { 34.2, 32.1, 1, 270 }, + [45] = { 36.2, 30.5, 1, 270 }, + [46] = { 34.6, 30.3, 1, 270 }, + [47] = { 41.2, 29.2, 1, 270 }, + [48] = { 43.8, 28.8, 1, 270 }, + }, + ["lvl"] = "7-8", + }, + [1197] = { + ["coords"] = { + [1] = { 38.8, 12.8, 3, 300 }, + [2] = { 39, 12.7, 3, 300 }, + [3] = { 38.8, 12.4, 3, 300 }, + [4] = { 37.3, 92.4, 38, 300 }, + [5] = { 35.9, 92.2, 38, 300 }, + [6] = { 34.3, 91.6, 38, 300 }, + [7] = { 34.6, 91.5, 38, 300 }, + [8] = { 35.1, 91.4, 38, 300 }, + [9] = { 33, 91.2, 38, 300 }, + [10] = { 33.3, 91, 38, 300 }, + [11] = { 36.2, 90.9, 38, 300 }, + [12] = { 37.5, 90.1, 38, 300 }, + [13] = { 38.1, 87.7, 38, 300 }, + [14] = { 38.3, 87.7, 38, 300 }, + [15] = { 38.1, 87.4, 38, 300 }, + [16] = { 37.5, 86.1, 38, 300 }, + [17] = { 54, 27.2, 38, 300 }, + [18] = { 54.6, 27, 38, 300 }, + [19] = { 55.2, 27, 38, 300 }, + [20] = { 52.9, 26.9, 38, 300 }, + [21] = { 54.4, 26.7, 38, 300 }, + [22] = { 54.5, 26.4, 38, 300 }, + [23] = { 54.2, 26, 38, 300 }, + [24] = { 54, 25, 38, 300 }, + [25] = { 52.7, 25, 38, 300 }, + [26] = { 52.2, 24.7, 38, 300 }, + [27] = { 51.7, 24.5, 38, 300 }, + [28] = { 52.2, 24.1, 38, 300 }, + [29] = { 52.6, 23.9, 38, 300 }, + [30] = { 51.9, 23.6, 38, 300 }, + [31] = { 53.1, 22.8, 38, 300 }, + [32] = { 52.2, 21.8, 38, 300 }, + }, + ["lvl"] = "15-16", + }, + [1198] = { + ["coords"] = { + [1] = { 83.3, 66.1, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "18", + }, + [1199] = { + ["coords"] = { + [1] = { 40.5, 62, 1, 270 }, + [2] = { 38.8, 61, 1, 270 }, + [3] = { 38.3, 60.9, 1, 270 }, + [4] = { 38.6, 60.7, 1, 270 }, + [5] = { 35.5, 60.6, 1, 270 }, + [6] = { 36.7, 60.5, 1, 270 }, + [7] = { 43.3, 60.3, 1, 270 }, + [8] = { 41.7, 60.2, 1, 270 }, + [9] = { 39.8, 60.1, 1, 270 }, + [10] = { 43.6, 59.7, 1, 270 }, + [11] = { 40.2, 58.9, 1, 270 }, + [12] = { 45.4, 58.7, 1, 270 }, + [13] = { 45.3, 58.5, 1, 270 }, + [14] = { 42.4, 57.9, 1, 270 }, + [15] = { 43, 56.5, 1, 270 }, + }, + ["lvl"] = "5-6", + }, + [1200] = { + ["coords"] = { + [1] = { 16.9, 33.4, 10, 600 }, + }, + ["lvl"] = "35-32", + ["rnk"] = "1", + }, + [1201] = { + ["coords"] = { + [1] = { 47.3, 63.3, 1, 270 }, + [2] = { 47.9, 63.2, 1, 270 }, + [3] = { 48.5, 61.9, 1, 270 }, + [4] = { 49.5, 61.8, 1, 270 }, + [5] = { 59.5, 61, 1, 270 }, + [6] = { 59.4, 60.8, 1, 270 }, + [7] = { 49.3, 60.6, 1, 270 }, + [8] = { 55.8, 60.4, 1, 270 }, + [9] = { 50.1, 60.4, 1, 270 }, + [10] = { 63.6, 60.2, 1, 270 }, + [11] = { 60.3, 60, 1, 270 }, + [12] = { 58.5, 59.6, 1, 270 }, + [13] = { 61.2, 59.6, 1, 270 }, + [14] = { 62.7, 59.2, 1, 270 }, + [15] = { 48.5, 59.1, 1, 270 }, + [16] = { 55.2, 59, 1, 270 }, + [17] = { 60.1, 58.8, 1, 270 }, + [18] = { 59.1, 58.6, 1, 270 }, + [19] = { 60, 58, 1, 270 }, + [20] = { 56.5, 58, 1, 270 }, + [21] = { 53.8, 57.8, 1, 270 }, + [22] = { 63, 57.3, 1, 270 }, + [23] = { 54.7, 57.2, 1, 270 }, + [24] = { 61.8, 57, 1, 270 }, + [25] = { 62.3, 56.6, 1, 270 }, + [26] = { 53.9, 56.5, 1, 270 }, + [27] = { 48.3, 56.5, 1, 270 }, + [28] = { 57.1, 56.3, 1, 270 }, + [29] = { 59.5, 55.9, 1, 270 }, + [30] = { 57.8, 55.8, 1, 270 }, + [31] = { 27.5, 55, 1, 270 }, + [32] = { 56.5, 54.9, 1, 270 }, + [33] = { 29.1, 54.2, 1, 270 }, + [34] = { 28.3, 53.6, 1, 270 }, + [35] = { 28.6, 53.6, 1, 270 }, + [36] = { 56.1, 52.7, 1, 270 }, + [37] = { 56.3, 52.2, 1, 270 }, + [38] = { 29.5, 50.8, 1, 270 }, + [39] = { 29.1, 49.7, 1, 270 }, + [40] = { 28.2, 48.9, 1, 270 }, + [41] = { 32.5, 48.4, 1, 270 }, + [42] = { 26.8, 47.9, 1, 270 }, + [43] = { 34.5, 47.5, 1, 270 }, + [44] = { 25.7, 46.9, 1, 270 }, + [45] = { 28.1, 44.9, 1, 270 }, + [46] = { 27.6, 42.5, 1, 270 }, + [47] = { 28.2, 40, 1, 270 }, + [48] = { 30.2, 39.8, 1, 270 }, + [49] = { 29.3, 39.6, 1, 270 }, + [50] = { 31.2, 39.6, 1, 270 }, + [51] = { 31.2, 39.4, 1, 270 }, + [52] = { 38.4, 38.4, 1, 270 }, + [53] = { 33.2, 37.8, 1, 270 }, + [54] = { 36.8, 37.7, 1, 270 }, + [55] = { 82.2, 37.6, 1, 270 }, + [56] = { 79.1, 37.2, 1, 270 }, + [57] = { 37.6, 36.8, 1, 270 }, + [58] = { 35.4, 36.4, 1, 270 }, + [59] = { 79, 36.3, 1, 270 }, + [60] = { 80.4, 35.9, 1, 270 }, + [61] = { 34.9, 35.7, 1, 270 }, + [62] = { 79.2, 35.4, 1, 270 }, + [63] = { 34.1, 35.3, 1, 270 }, + [64] = { 35.2, 35, 1, 270 }, + [65] = { 38.3, 33.5, 1, 270 }, + [66] = { 36.7, 31.9, 1, 270 }, + [67] = { 42.7, 31, 1, 270 }, + [68] = { 37.6, 30.9, 1, 270 }, + [69] = { 40.1, 30.8, 1, 270 }, + [70] = { 44, 30.3, 1, 270 }, + }, + ["lvl"] = "7-8", + }, + [1202] = { + ["coords"] = { + [1] = { 26.2, 44.1, 38, 300 }, + [2] = { 26.5, 44, 38, 300 }, + [3] = { 26.2, 44, 38, 300 }, + [4] = { 26.3, 43.8, 38, 300 }, + [5] = { 25.7, 43.8, 38, 300 }, + [6] = { 25.5, 43.7, 38, 300 }, + [7] = { 25.7, 43.5, 38, 300 }, + [8] = { 26.3, 43.2, 38, 300 }, + [9] = { 25.7, 42.8, 38, 300 }, + [10] = { 37, 24.9, 38, 300 }, + [11] = { 37.2, 24.8, 38, 300 }, + [12] = { 37, 24.7, 38, 300 }, + [13] = { 37.3, 24.5, 38, 300 }, + [14] = { 36.3, 23.5, 38, 300 }, + [15] = { 35.5, 17.1, 38, 300 }, + [16] = { 35.2, 17.1, 38, 300 }, + [17] = { 35.8, 16.6, 38, 300 }, + [18] = { 37.5, 16.5, 38, 300 }, + [19] = { 37.3, 16.4, 38, 300 }, + [20] = { 35.3, 16.3, 38, 300 }, + [21] = { 37.5, 16.3, 38, 300 }, + [22] = { 35.5, 15.9, 38, 300 }, + [23] = { 39.5, 12.9, 38, 300 }, + [24] = { 39.8, 12.4, 38, 300 }, + [25] = { 39.3, 12.1, 38, 300 }, + }, + ["lvl"] = "11-12", + }, + [1203] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "35", + }, + [1204] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "38", + }, + [1205] = { + ["coords"] = { + [1] = { 34.8, 90.5, 38, 300 }, + }, + ["lvl"] = "17", + }, + [1206] = { + ["coords"] = { + [1] = { 34.7, 90.8, 38, 300 }, + }, + ["lvl"] = "16", + }, + [1207] = { + ["coords"] = { + [1] = { 34.6, 90.6, 38, 300 }, + }, + ["lvl"] = "16", + }, + [1210] = { + ["coords"] = { + [1] = { 79.6, 14.6, 38, 600 }, + }, + ["lvl"] = "22", + ["rnk"] = "1", + }, + [1211] = { + ["coords"] = { + [1] = { 25.6, 45.4, 1, 270 }, + [2] = { 25.4, 44.9, 1, 270 }, + [3] = { 24.8, 44.8, 1, 270 }, + [4] = { 25.2, 44.4, 1, 270 }, + [5] = { 25.4, 43.8, 1, 270 }, + [6] = { 24.8, 43.8, 1, 270 }, + [7] = { 26.8, 43.8, 1, 270 }, + [8] = { 26.1, 43.8, 1, 270 }, + [9] = { 24.4, 43.6, 1, 270 }, + [10] = { 24, 43.3, 1, 270 }, + [11] = { 24.5, 43.2, 1, 270 }, + [12] = { 25.7, 43, 1, 270 }, + [13] = { 24.7, 43, 1, 270 }, + [14] = { 27.2, 43, 1, 270 }, + [15] = { 24.8, 42.9, 1, 270 }, + [16] = { 26.8, 42.8, 1, 270 }, + [17] = { 26.1, 42.8, 1, 270 }, + [18] = { 24.8, 42.8, 1, 270 }, + [19] = { 26.7, 41.8, 1, 270 }, + [20] = { 24.7, 41.8, 1, 270 }, + [21] = { 26.1, 40.7, 1, 270 }, + [22] = { 24.9, 40.1, 1, 270 }, + [23] = { 25.3, 39.8, 1, 270 }, + [24] = { 24.2, 39.8, 1, 270 }, + [25] = { 24.2, 39.6, 1, 270 }, + [26] = { 24.7, 39.4, 1, 270 }, + [27] = { 25.9, 37.9, 1, 270 }, + [28] = { 27.3, 37.3, 1, 270 }, + [29] = { 26.1, 37, 1, 270 }, + [30] = { 27.2, 37, 1, 270 }, + [31] = { 27.7, 37, 1, 270 }, + [32] = { 28, 36.7, 1, 270 }, + [33] = { 26.7, 36.6, 1, 270 }, + [34] = { 27.3, 36.4, 1, 270 }, + [35] = { 27.6, 36.4, 1, 270 }, + [36] = { 26.8, 36.3, 1, 270 }, + [37] = { 28.1, 35.9, 1, 270 }, + [38] = { 27.4, 35.9, 1, 270 }, + [39] = { 26.9, 35.7, 1, 270 }, + [40] = { 26.3, 35.6, 1, 270 }, + }, + ["lvl"] = "8-10", + }, + [1212] = { + ["coords"] = { + [1] = { 39.1, 27.9, 1519, 450 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [1213] = { + ["coords"] = { + [1] = { 47.7, 41.4, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [1214] = { + ["coords"] = { + [1] = { 64.8, 66, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "18", + }, + [1215] = { + ["coords"] = { + [1] = { 39.8, 48.2, 12, 375 }, + }, + ["fac"] = "A", + ["lvl"] = "26", + }, + [1216] = { + ["coords"] = { + [1] = { 36.7, 88.4, 40, 300 }, + [2] = { 35.8, 87.9, 40, 300 }, + [3] = { 30.6, 83, 40, 300 }, + [4] = { 32, 82.7, 40, 300 }, + [5] = { 30.7, 81.9, 40, 300 }, + [6] = { 29.9, 81.5, 40, 300 }, + [7] = { 30.1, 80.5, 40, 300 }, + [8] = { 29.3, 80.4, 40, 300 }, + [9] = { 29.5, 79.3, 40, 300 }, + [10] = { 29, 78.7, 40, 300 }, + [11] = { 29.5, 78.4, 40, 300 }, + [12] = { 28.8, 77.8, 40, 300 }, + [13] = { 25.9, 67.4, 40, 300 }, + [14] = { 26.3, 67, 40, 300 }, + [15] = { 25.7, 66.8, 40, 300 }, + [16] = { 25.9, 66.1, 40, 300 }, + [17] = { 25.5, 65.7, 40, 300 }, + [18] = { 25.7, 65.5, 40, 300 }, + [19] = { 25.3, 64.7, 40, 300 }, + [20] = { 25.6, 64.7, 40, 300 }, + [21] = { 25.3, 63.9, 40, 300 }, + [22] = { 25.8, 63.7, 40, 300 }, + }, + ["lvl"] = "17-18", + }, + [1217] = { + ["coords"] = { + [1] = { 10.6, 60.6, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [1218] = { + ["coords"] = { + [1] = { 40, 48.4, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [1222] = { + ["coords"] = { + [1] = { 56.4, 13.2, 38, 300 }, + [2] = { 56.2, 12.9, 38, 300 }, + }, + ["lvl"] = "17", + }, + [1224] = { + ["coords"] = { + [1] = { 48.7, 62, 38, 300 }, + [2] = { 51.6, 61.5, 38, 300 }, + [3] = { 54.2, 61, 38, 300 }, + [4] = { 50.2, 57.9, 38, 300 }, + [5] = { 58.6, 54.7, 38, 300 }, + [6] = { 48.1, 50.7, 38, 300 }, + [7] = { 45.6, 50.5, 38, 300 }, + [8] = { 50.7, 50.4, 38, 300 }, + [9] = { 57.9, 50.3, 38, 300 }, + [10] = { 59.8, 50.2, 38, 300 }, + [11] = { 51.5, 47.2, 38, 300 }, + [12] = { 58.9, 46.9, 38, 300 }, + [13] = { 49.2, 46.9, 38, 300 }, + [14] = { 53.7, 46.9, 38, 300 }, + [15] = { 56.6, 46.8, 38, 300 }, + [16] = { 57.6, 43.9, 38, 300 }, + [17] = { 45.1, 41, 38, 300 }, + [18] = { 44.8, 39.8, 38, 300 }, + [19] = { 48.1, 39.8, 38, 300 }, + [20] = { 48.3, 38.4, 38, 300 }, + [21] = { 48.8, 33.7, 38, 300 }, + }, + ["lvl"] = "19-20", + }, + [1225] = { + ["coords"] = { + [1] = { 42.5, 64.7, 38, 300 }, + }, + ["lvl"] = "20", + ["rnk"] = "1", + }, + [1226] = { + ["coords"] = { + [1] = { 47.3, 52.2, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [1227] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "35", + }, + [1228] = { + ["coords"] = { + [1] = { 47.5, 52.1, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [1229] = { + ["coords"] = { + [1] = { 47.4, 52.6, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "9-12", + }, + [1230] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "10", + }, + [1231] = { + ["coords"] = { + [1] = { 45.8, 53, 1, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "8-12", + }, + [1232] = { + ["coords"] = { + [1] = { 47.6, 52.1, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "12", + }, + [1233] = { + ["coords"] = { + [1] = { 23.1, 18.5, 490, 420 }, + [2] = { 82, 20, 1377, 420 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [1234] = { + ["coords"] = { + [1] = { 47.6, 52.6, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "12", + }, + [1235] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [1236] = { + ["coords"] = { + [1] = { 44.8, 23.2, 40, 300 }, + [2] = { 44.8, 20.6, 40, 300 }, + [3] = { 45.3, 20.5, 40, 300 }, + [4] = { 44.6, 20, 40, 300 }, + [5] = { 46.2, 19.4, 40, 300 }, + [6] = { 45.3, 18.5, 40, 300 }, + [7] = { 46.1, 18.3, 40, 300 }, + }, + ["lvl"] = "12-13", + }, + [1237] = { + ["coords"] = { + [1] = { 68.6, 54.6, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "8", + }, + [1238] = { + ["coords"] = { + [1] = { 45.2, 51.9, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "9", + }, + [1239] = { + ["coords"] = { + [1] = { 10.9, 59.6, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1240] = { + ["coords"] = { + [1] = { 45.2, 51.8, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "8-11", + }, + [1241] = { + ["coords"] = { + [1] = { 45.3, 51.9, 1, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1242] = { + ["coords"] = { + [1] = { 8.3, 58.6, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1243] = { + ["coords"] = { + [1] = { 40.7, 65.1, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "8-12", + }, + [1244] = { + ["coords"] = { + [1] = { 56.4, 40.4, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1245] = { + ["coords"] = { + [1] = { 45.3, 51.8, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "8-10", + }, + [1246] = { + ["coords"] = { + [1] = { 66.3, 55.7, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1247] = { + ["coords"] = { + [1] = { 47.4, 52.5, 1, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1249] = { + ["coords"] = { + [1] = { 25.2, 74.1, 12, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [1250] = { + ["coords"] = { + [1] = { 83.3, 66.7, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [1251] = { + ["coords"] = { + [1] = { 37.3, 84.2, 10, 300 }, + [2] = { 37.1, 82.4, 10, 300 }, + [3] = { 37.8, 79.7, 10, 300 }, + [4] = { 36.5, 77.4, 10, 300 }, + [5] = { 34, 74, 10, 300 }, + [6] = { 33.9, 71.9, 10, 300 }, + [7] = { 37.5, 1.5, 33, 300 }, + [8] = { 37.4, 0.7, 33, 300 }, + }, + ["lvl"] = "28-29", + }, + [1252] = { + ["coords"] = { + [1] = { 46.7, 53.8, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "8-12", + }, + [1253] = { + ["coords"] = { + [1] = { 57.7, 44.9, 1, 270 }, + }, + ["lvl"] = "15", + }, + [1254] = { + ["coords"] = { + [1] = { 69.1, 56.3, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "12", + }, + [1255] = { + ["coords"] = { + [1] = { 69, 54.6, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "8-12", + }, + [1256] = { + ["coords"] = { + [1] = { 69.2, 54.8, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [1257] = { + ["coords"] = { + [1] = { 55.7, 65.4, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1258] = { + ["coords"] = { + [1] = { 50.8, 60.5, 10, 300 }, + [2] = { 69.5, 38.2, 10, 300 }, + [3] = { 67.3, 35.1, 10, 300 }, + [4] = { 66, 33.2, 10, 300 }, + [5] = { 65.5, 31.3, 10, 300 }, + [6] = { 63.3, 27.7, 10, 300 }, + }, + ["lvl"] = "25-26", + }, + [1259] = { + ["coords"] = { + [1] = { 18.1, 39.8, 11, 300 }, + }, + ["lvl"] = "22", + }, + [1260] = { + ["coords"] = { + [1] = { 22.8, 52.1, 1, 5400 }, + }, + ["lvl"] = "11", + ["rnk"] = "4", + }, + [1261] = { + ["coords"] = { + [1] = { 63.5, 50.6, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [1262] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [1263] = { + ["coords"] = { + [1] = { 63.1, 50.9, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [1265] = { + ["coords"] = { + [1] = { 63.1, 49.8, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [1266] = { + ["coords"] = { + [1] = { 34.6, 51.7, 1, 285 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [1267] = { + ["coords"] = { + [1] = { 46.8, 52.4, 1, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1268] = { + ["coords"] = { + [1] = { 45.9, 49.4, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [1269] = { + ["coords"] = { + [1] = { 45.8, 49.4, 1, 285 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [1270] = { + ["coords"] = { + [1] = { 76.5, 36.9, 10, 300 }, + [2] = { 75.2, 36.6, 10, 300 }, + [3] = { 78.7, 36.1, 10, 300 }, + [4] = { 75.7, 35.7, 10, 300 }, + [5] = { 77.2, 35, 10, 300 }, + [6] = { 78.2, 34.9, 10, 300 }, + [7] = { 75.8, 34, 10, 300 }, + [8] = { 79.1, 33.9, 10, 300 }, + [9] = { 77.8, 33.9, 10, 300 }, + [10] = { 79.9, 32.9, 10, 300 }, + [11] = { 77.1, 32.7, 10, 300 }, + [12] = { 81.4, 32.5, 10, 300 }, + [13] = { 79.3, 31.5, 10, 300 }, + [14] = { 76.6, 30.8, 10, 300 }, + }, + ["lvl"] = "29-30", + }, + [1271] = { + ["coords"] = { + [1] = { 38.5, 54.2, 1, 180 }, + }, + ["lvl"] = "11", + ["rnk"] = "1", + }, + [1273] = { + ["coords"] = { + [1] = { 45.3, 52.2, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [1274] = { + ["coords"] = { + [1] = { 39.5, 57.5, 1537, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [1275] = { + ["coords"] = { + [1] = { 56.1, 65.3, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1276] = { + ["coords"] = { + [1] = { 25.9, 10.6, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1277] = { + ["coords"] = { + [1] = { 24.2, 20.3, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1278] = { + ["coords"] = { + [1] = { 95.3, 46.4, 1, 300 }, + [2] = { 32.5, 49.6, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1279] = { + ["coords"] = { + [1] = { 29.6, 30.2, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1280] = { + ["coords"] = { + [1] = { 95.3, 46.8, 1, 300 }, + [2] = { 32.5, 50.3, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1281] = { + ["coords"] = { + [1] = { 22.8, 70.8, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1282] = { + ["coords"] = { + [1] = { 89.1, 56.3, 1, 300 }, + [2] = { 21.4, 67.3, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1283] = { + ["coords"] = { + [1] = { 18, 83.5, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1284] = { + ["coords"] = { + [1] = { 39.6, 27.2, 1519, 86400 }, + }, + ["fac"] = "A", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [1285] = { + ["coords"] = { + [1] = { 58.4, 61.7, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1286] = { + ["coords"] = { + [1] = { 58.2, 60.5, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1287] = { + ["coords"] = { + [1] = { 57.4, 56.8, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1288] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "60", + }, + [1289] = { + ["coords"] = { + [1] = { 57.5, 57.1, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1290] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "45", + }, + [1291] = { + ["coords"] = { + [1] = { 54.7, 56, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1292] = { + ["coords"] = { + [1] = { 67.8, 48.8, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [1293] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [1294] = { + ["coords"] = { + [1] = { 54.6, 55.2, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1295] = { + ["coords"] = { + [1] = { 54.7, 55.6, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1296] = { + ["coords"] = { + [1] = { 85.2, 68.4, 46, 500 }, + }, + ["fac"] = "A", + ["lvl"] = "54", + }, + [1297] = { + ["coords"] = { + [1] = { 50.5, 57.2, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1298] = { + ["coords"] = { + [1] = { 50, 57.6, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1299] = { + ["coords"] = { + [1] = { 49.9, 55.2, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1300] = { + ["coords"] = { + [1] = { 43.7, 73.7, 1519, 375 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [1301] = { + ["coords"] = { + [1] = { 52, 68.8, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1302] = { + ["coords"] = { + [1] = { 64.1, 61.3, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1303] = { + ["coords"] = { + [1] = { 64.2, 60.6, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1304] = { + ["coords"] = { + [1] = { 29.4, 67.8, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1305] = { + ["coords"] = { + [1] = { 28.8, 75.3, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1306] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "45", + }, + [1307] = { + ["coords"] = { + [1] = { 32.2, 79.9, 1519, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [1308] = { + ["coords"] = { + [1] = { 35.9, 75, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1309] = { + ["coords"] = { + [1] = { 41.6, 76.3, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1310] = { + ["coords"] = { + [1] = { 42.6, 76.6, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1311] = { + ["coords"] = { + [1] = { 41.1, 90, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1312] = { + ["coords"] = { + [1] = { 42.9, 65.1, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1313] = { + ["coords"] = { + [1] = { 46.8, 79.1, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1314] = { + ["coords"] = { + [1] = { 43.3, 74.4, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1315] = { + ["coords"] = { + [1] = { 43.1, 65.2, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1316] = { + ["coords"] = { + [1] = { 41.6, 65.5, 1519, 490 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [1317] = { + ["coords"] = { + [1] = { 42.9, 64.6, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [1318] = { + ["coords"] = { + [1] = { 42.8, 64.4, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1319] = { + ["coords"] = { + [1] = { 64, 42.9, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1320] = { + ["coords"] = { + [1] = { 67.4, 48.5, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1321] = { + ["coords"] = { + [1] = { 67.2, 48.8, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1322] = { + ["coords"] = { + [1] = { 67.9, 8.3, 405, 300 }, + [2] = { 42.3, 83.3, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [1323] = { + ["coords"] = { + [1] = { 74.3, 47.2, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1324] = { + ["coords"] = { + [1] = { 74.4, 42.6, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1325] = { + ["coords"] = { + [1] = { 78.3, 59, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1326] = { + ["coords"] = { + [1] = { 76.2, 60, 1519, 375 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [1327] = { + ["coords"] = { + [1] = { 74.1, 36.5, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1328] = { + ["coords"] = { + [1] = { 73.4, 38.6, 1519, 350 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [1329] = { + ["coords"] = { + [1] = { 23.2, 76, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1330] = { + ["coords"] = { + [1] = { 22.8, 74.1, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1331] = { + ["coords"] = { + [1] = { 24.2, 17.6, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1332] = { + ["coords"] = { + [1] = { 24.7, 17.5, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1333] = { + ["coords"] = { + [1] = { 68.9, 42.7, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1334] = { + ["coords"] = { + [1] = { 24.5, 18.5, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1335] = { + ["coords"] = { + [1] = { 24.7, 17.7, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1336] = { + ["coords"] = { + [1] = { 25.6, 18.1, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1337] = { + ["coords"] = { + [1] = { 35.9, 44.5, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1338] = { + ["coords"] = { + [1] = { 36.3, 41, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1339] = { + ["coords"] = { + [1] = { 67.2, 43.6, 1519, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1340] = { + ["coords"] = { + [1] = { 95.4, 46.5, 1, 300 }, + [2] = { 32.7, 49.7, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1341] = { + ["coords"] = { + [1] = { 74.7, 47.6, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1342] = { + ["coords"] = { + [1] = { 25.4, 10.4, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1343] = { + ["coords"] = { + [1] = { 24.8, 18.4, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1344] = { + ["coords"] = { + [1] = { 65.9, 65.6, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [1345] = { + ["coords"] = { + [1] = { 64.9, 66.7, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [1346] = { + ["coords"] = { + [1] = { 43.2, 73.5, 1519, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "46", + }, + [1347] = { + ["coords"] = { + [1] = { 43.3, 74.1, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1348] = { + ["coords"] = { + [1] = { 36.8, 39.6, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1349] = { + ["coords"] = { + [1] = { 43.7, 42.8, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1350] = { + ["coords"] = { + [1] = { 43.3, 43.3, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1351] = { + ["coords"] = { + [1] = { 43.5, 27, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1352] = { + ["coords"] = { + [1] = { 63, 50.8, 1, 555 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [1353] = { + ["coords"] = { + [1] = { 33.2, 51.5, 11, 300 }, + }, + ["lvl"] = "29", + }, + [1354] = { + ["coords"] = { + [1] = { 25.2, 75.9, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "3", + }, + [1355] = { + ["coords"] = { + [1] = { 68.4, 54.5, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "8-11", + }, + [1356] = { + ["coords"] = { + [1] = { 74.6, 11.7, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1358] = { + ["coords"] = { + [1] = { 69.1, 55.2, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "8-10", + }, + [1360] = { + ["coords"] = { + [1] = { 69, 55.1, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "8-10", + }, + [1361] = { + ["coords"] = {}, + ["lvl"] = "28", + ["rnk"] = "2", + }, + [1362] = { + ["coords"] = { + [1] = { 24.1, 18.2, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [1364] = { + ["coords"] = { + [1] = { 62.5, 28.4, 11, 300 }, + }, + ["lvl"] = "34", + ["rnk"] = "1", + }, + [1365] = { + ["coords"] = { + [1] = { 30.3, 59.4, 1537, 720 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [1366] = { + ["coords"] = { + [1] = { 62.9, 52.3, 1519, 555 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [1367] = { + ["coords"] = { + [1] = { 63, 52.1, 1519, 555 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [1368] = { + ["coords"] = { + [1] = { 55.6, 33.8, 1519, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [1370] = { + ["coords"] = { + [1] = { 55.6, 33.6, 1519, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [1371] = { + ["coords"] = { + [1] = { 55.6, 34.1, 1519, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [1373] = { + ["coords"] = { + [1] = { 47.6, 52.7, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [1374] = { + ["coords"] = { + [1] = { 30.2, 45.7, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [1375] = { + ["coords"] = { + [1] = { 30.2, 45.5, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "12", + }, + [1376] = { + ["coords"] = { + [1] = { 50.4, 49.1, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "12", + }, + [1377] = { + ["coords"] = { + [1] = { 49.6, 48.6, 1, 285 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [1378] = { + ["coords"] = { + [1] = { 49.4, 48.4, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "18", + }, + [1379] = { + ["coords"] = { + [1] = { 52.2, 69.4, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [1380] = { + ["coords"] = { + [1] = { 52.4, 69.2, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [1381] = { + ["coords"] = { + [1] = { 32.6, 27.9, 33, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [1382] = { + ["coords"] = { + [1] = { 31.3, 28, 33, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [1383] = { + ["coords"] = { + [1] = { 79.6, 23.3, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "31", + }, + [1384] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "40", + }, + [1385] = { + ["coords"] = { + [1] = { 31.7, 28.9, 33, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [1386] = { + ["coords"] = { + [1] = { 48.5, 55.8, 8, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "53", + }, + [1387] = { + ["coords"] = { + [1] = { 32.5, 29.4, 33, 1800 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [1388] = { + ["coords"] = { + [1] = { 62.6, 46, 1, 180 }, + }, + ["lvl"] = "11", + ["rnk"] = "1", + }, + [1392] = { + ["coords"] = {}, + ["lvl"] = "24", + }, + [1393] = { + ["coords"] = { + [1] = { 71.6, 68.5, 38, 300 }, + [2] = { 71.2, 68.5, 38, 300 }, + [3] = { 72.3, 68.2, 38, 300 }, + [4] = { 70.1, 67.4, 38, 300 }, + [5] = { 69.4, 67.2, 38, 300 }, + [6] = { 72.6, 66.8, 38, 300 }, + [7] = { 70, 66.5, 38, 300 }, + [8] = { 70.1, 66.1, 38, 300 }, + [9] = { 69.1, 66.1, 38, 300 }, + [10] = { 68, 66.1, 38, 300 }, + [11] = { 69.2, 66, 38, 300 }, + [12] = { 70.9, 66, 38, 300 }, + [13] = { 68, 65.8, 38, 300 }, + [14] = { 70.6, 64.8, 38, 300 }, + [15] = { 72.6, 64.7, 38, 300 }, + [16] = { 70.9, 64.3, 38, 300 }, + [17] = { 72.5, 64.2, 38, 300 }, + [18] = { 70.8, 63.5, 38, 300 }, + [19] = { 72.6, 63.4, 38, 300 }, + [20] = { 69, 63.3, 38, 300 }, + [21] = { 69.1, 63.3, 38, 300 }, + [22] = { 70.1, 62.7, 38, 300 }, + [23] = { 68.3, 62.6, 38, 300 }, + [24] = { 68.2, 62.6, 38, 300 }, + [25] = { 68.7, 62.4, 38, 300 }, + [26] = { 72.7, 62, 38, 300 }, + [27] = { 68.9, 60, 38, 300 }, + [28] = { 70.6, 60, 38, 300 }, + [29] = { 67.3, 59.6, 38, 300 }, + [30] = { 69.6, 59.3, 38, 300 }, + [31] = { 68.2, 59, 38, 300 }, + }, + ["lvl"] = "19-20", + }, + [1395] = { + ["coords"] = { + [1] = { 69.7, 46.1, 1519, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [1397] = { + ["coords"] = { + [1] = { 41.1, 45.5, 1, 270 }, + [2] = { 42.1, 45.5, 1, 270 }, + [3] = { 41.5, 45, 1, 270 }, + [4] = { 41.1, 44.9, 1, 270 }, + [5] = { 42.1, 44.6, 1, 270 }, + [6] = { 41.2, 44.5, 1, 270 }, + [7] = { 41.4, 44.4, 1, 270 }, + [8] = { 41.6, 43.8, 1, 270 }, + [9] = { 40.3, 42.9, 1, 270 }, + [10] = { 42.2, 36.6, 1, 270 }, + [11] = { 42.8, 36.6, 1, 270 }, + [12] = { 43, 35.9, 1, 270 }, + [13] = { 41.9, 35.8, 1, 270 }, + [14] = { 42.5, 35.8, 1, 270 }, + [15] = { 41.8, 35.6, 1, 270 }, + [16] = { 41.5, 35.3, 1, 270 }, + [17] = { 41.8, 35.2, 1, 270 }, + [18] = { 40.7, 35, 1, 270 }, + [19] = { 42.3, 34.9, 1, 270 }, + [20] = { 40.8, 34.9, 1, 270 }, + [21] = { 42.1, 34.4, 1, 270 }, + [22] = { 41.3, 34.3, 1, 270 }, + [23] = { 42.6, 33.7, 1, 270 }, + }, + ["lvl"] = "8-9", + }, + [1398] = { + ["coords"] = { + [1] = { 68.1, 65.9, 38, 14400 }, + }, + ["lvl"] = "22", + ["rnk"] = "4", + }, + [1399] = { + ["coords"] = { + [1] = { 70.1, 66.4, 38, 14400 }, + }, + ["lvl"] = "21", + ["rnk"] = "4", + }, + [1400] = { + ["coords"] = { + [1] = { 19.3, 58.2, 11, 300 }, + [2] = { 21.3, 58.1, 11, 300 }, + [3] = { 20.6, 56.7, 11, 300 }, + [4] = { 19.1, 56.7, 11, 300 }, + [5] = { 17.5, 55.8, 11, 300 }, + [6] = { 19, 55.6, 11, 300 }, + [7] = { 17.2, 54.4, 11, 300 }, + [8] = { 18.4, 53.7, 11, 300 }, + [9] = { 17.8, 53.4, 11, 300 }, + [10] = { 18.2, 51.4, 11, 300 }, + [11] = { 25.4, 44.6, 11, 300 }, + [12] = { 46.2, 36.8, 11, 300 }, + [13] = { 41.8, 36.6, 11, 300 }, + [14] = { 44.6, 35.9, 11, 300 }, + [15] = { 42.2, 35.8, 11, 300 }, + [16] = { 48.6, 34.7, 11, 300 }, + [17] = { 41, 34.6, 11, 300 }, + [18] = { 46.6, 33.5, 11, 300 }, + [19] = { 38.8, 33.2, 11, 300 }, + [20] = { 43.8, 32.9, 11, 300 }, + [21] = { 41.9, 32.7, 11, 300 }, + [22] = { 29.5, 32.6, 11, 300 }, + [23] = { 32.6, 31.6, 11, 300 }, + [24] = { 36.2, 31.6, 11, 300 }, + [25] = { 37.5, 31.5, 11, 300 }, + [26] = { 34.3, 31.3, 11, 300 }, + [27] = { 47.5, 31.3, 11, 300 }, + [28] = { 39.7, 31.3, 11, 300 }, + [29] = { 40.5, 30.8, 11, 300 }, + [30] = { 45, 30.4, 11, 300 }, + [31] = { 35.3, 30.2, 11, 300 }, + [32] = { 24, 30.2, 11, 300 }, + [33] = { 39.3, 29.5, 11, 300 }, + [34] = { 33.5, 29.5, 11, 300 }, + [35] = { 36.5, 29.3, 11, 300 }, + [36] = { 24.8, 29.3, 11, 300 }, + [37] = { 34.6, 29, 11, 300 }, + [38] = { 41, 28.4, 11, 300 }, + [39] = { 37, 28, 11, 300 }, + [40] = { 33.6, 28, 11, 300 }, + [41] = { 38.6, 27.7, 11, 300 }, + [42] = { 36.1, 27.5, 11, 300 }, + [43] = { 28.6, 27.5, 11, 300 }, + [44] = { 20.1, 27.2, 11, 300 }, + [45] = { 34.7, 26.9, 11, 300 }, + [46] = { 24.8, 26.9, 11, 300 }, + [47] = { 33.7, 26.8, 11, 300 }, + [48] = { 37.9, 26.6, 11, 300 }, + [49] = { 29.8, 26.1, 11, 300 }, + [50] = { 21.7, 25.6, 11, 300 }, + [51] = { 28.1, 25.4, 11, 300 }, + [52] = { 32, 25.3, 11, 300 }, + }, + ["lvl"] = "23-24", + }, + [1401] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [1402] = { + ["coords"] = { + [1] = { 52.5, 57.6, 1519, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [1403] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "40", + }, + [1404] = { + ["coords"] = { + [1] = { 31.2, 28.7, 33, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [1405] = { + ["coords"] = { + [1] = { 43.1, 48.5, 1519, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [1406] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "40", + }, + [1407] = { + ["coords"] = { + [1] = { 2.9, 47.2, 3, 300 }, + [2] = { 82, 38.5, 51, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [1408] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "40", + }, + [1409] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "40", + }, + [1410] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [1411] = { + ["coords"] = { + [1] = { 26.8, 77.1, 33, 300 }, + }, + ["lvl"] = "47", + }, + [1412] = { + ["coords"] = { + [1] = { 88.9, 58.4, 1, 300 }, + [2] = { 65.8, 52.5, 15, 300 }, + [3] = { 66.4, 52.2, 15, 300 }, + [4] = { 65.3, 52.2, 15, 300 }, + [5] = { 67, 50.8, 15, 300 }, + [6] = { 64.9, 50.6, 15, 300 }, + [7] = { 65.8, 50.5, 15, 300 }, + [8] = { 63.7, 49.9, 15, 300 }, + [9] = { 68.4, 49.6, 15, 300 }, + [10] = { 67, 49.2, 15, 300 }, + [11] = { 64.2, 47.5, 15, 300 }, + [12] = { 68, 47, 15, 300 }, + [13] = { 64.7, 47, 15, 300 }, + [14] = { 66.9, 45.6, 15, 300 }, + [15] = { 65.9, 44.6, 15, 300 }, + [16] = { 32.4, 26.7, 17, 300 }, + [17] = { 31.8, 26.4, 17, 300 }, + [18] = { 33.3, 24.6, 17, 300 }, + [19] = { 31, 24.4, 17, 300 }, + [20] = { 30.9, 24.1, 17, 300 }, + [21] = { 33.4, 23.2, 17, 300 }, + [22] = { 31.3, 22.2, 17, 300 }, + [23] = { 33, 21.6, 17, 300 }, + [24] = { 59, 77.9, 38, 300 }, + [25] = { 20, 77.8, 38, 300 }, + [26] = { 19.4, 76.1, 38, 300 }, + [27] = { 22.2, 75.5, 38, 300 }, + [28] = { 21.1, 72.8, 38, 300 }, + [29] = { 48, 72.3, 38, 300 }, + [30] = { 20.7, 71.7, 38, 300 }, + [31] = { 21.1, 71, 38, 300 }, + [32] = { 57.7, 70, 38, 300 }, + [33] = { 43.1, 65, 38, 300 }, + [34] = { 28.4, 58.6, 38, 300 }, + [35] = { 32.4, 55.9, 38, 300 }, + [36] = { 33.5, 51.8, 38, 300 }, + [37] = { 35.5, 50.9, 38, 300 }, + [38] = { 30.9, 50.8, 38, 300 }, + [39] = { 39.4, 49, 38, 300 }, + [40] = { 39.3, 48.6, 38, 300 }, + [41] = { 36.3, 47.1, 38, 300 }, + [42] = { 39.8, 46.8, 38, 300 }, + [43] = { 34.6, 46.4, 38, 300 }, + [44] = { 33.6, 45.8, 38, 300 }, + [45] = { 39.8, 45.7, 38, 300 }, + [46] = { 36.5, 45.3, 38, 300 }, + [47] = { 36, 44.8, 38, 300 }, + [48] = { 28.4, 43.5, 38, 300 }, + [49] = { 64.8, 43.3, 38, 300 }, + [50] = { 38.8, 42.4, 38, 300 }, + [51] = { 66, 41.4, 38, 300 }, + [52] = { 29.9, 41.1, 38, 300 }, + [53] = { 29.1, 39.4, 38, 300 }, + [54] = { 66.3, 37.6, 38, 300 }, + [55] = { 62.4, 36.2, 38, 300 }, + [56] = { 35.8, 36.2, 38, 300 }, + [57] = { 39.3, 35.3, 38, 300 }, + [58] = { 26.1, 32.8, 38, 300 }, + [59] = { 31.2, 32, 38, 300 }, + [60] = { 40.2, 29.5, 38, 300 }, + [61] = { 28.2, 29, 38, 300 }, + [62] = { 62.5, 28.9, 38, 300 }, + [63] = { 24.8, 26.7, 38, 300 }, + [64] = { 61.2, 23.6, 38, 300 }, + [65] = { 60.3, 17.7, 38, 300 }, + [66] = { 28.4, 17.5, 38, 300 }, + [67] = { 21.1, 17.4, 38, 300 }, + [68] = { 58.8, 15.9, 38, 300 }, + [69] = { 30.2, 10.9, 38, 300 }, + [70] = { 51.6, 62.3, 130, 300 }, + [71] = { 53.1, 43.8, 130, 300 }, + [72] = { 35.3, 16, 130, 300 }, + [73] = { 28.1, 65.4, 141, 300 }, + [74] = { 28.1, 65.1, 141, 300 }, + [75] = { 27.9, 64.1, 141, 300 }, + [76] = { 27.4, 62.9, 141, 300 }, + [77] = { 27.7, 62.7, 141, 300 }, + [78] = { 30.1, 62.5, 141, 300 }, + [79] = { 30.9, 62.5, 141, 300 }, + [80] = { 29.5, 62.3, 141, 300 }, + [81] = { 30.5, 62.2, 141, 300 }, + [82] = { 28.5, 62, 141, 300 }, + [83] = { 29.3, 61.9, 141, 300 }, + [84] = { 28.3, 61.8, 141, 300 }, + [85] = { 27.1, 61.2, 141, 300 }, + [86] = { 30.8, 60.5, 141, 300 }, + [87] = { 29.4, 60.4, 141, 300 }, + [88] = { 24.4, 59.4, 141, 300 }, + [89] = { 31.3, 59, 141, 300 }, + [90] = { 31.7, 58.9, 141, 300 }, + [91] = { 29.5, 58.6, 141, 300 }, + [92] = { 31.4, 58.5, 141, 300 }, + [93] = { 24.5, 57.8, 141, 300 }, + [94] = { 31.5, 57.7, 141, 300 }, + [95] = { 29.6, 57.6, 141, 300 }, + [96] = { 32.3, 57.3, 141, 300 }, + [97] = { 28.9, 56.9, 141, 300 }, + [98] = { 25.2, 56.3, 141, 300 }, + [99] = { 25.7, 55.9, 141, 300 }, + [100] = { 23.6, 55.4, 141, 300 }, + [101] = { 25.3, 54.8, 141, 300 }, + [102] = { 25.6, 54.6, 141, 300 }, + [103] = { 32.6, 53.5, 141, 300 }, + [104] = { 27.5, 53.4, 141, 300 }, + [105] = { 28.4, 53.3, 141, 300 }, + [106] = { 29.6, 53.2, 141, 300 }, + [107] = { 27.1, 53.1, 141, 300 }, + [108] = { 31, 53, 141, 300 }, + [109] = { 30, 52.2, 141, 300 }, + [110] = { 28.3, 51.3, 141, 300 }, + [111] = { 26.5, 51.3, 141, 300 }, + [112] = { 27.7, 51, 141, 300 }, + [113] = { 25, 50.5, 141, 300 }, + [114] = { 28.1, 50.3, 141, 300 }, + [115] = { 25.9, 50.2, 141, 300 }, + [116] = { 24.6, 49.6, 141, 300 }, + [117] = { 30.1, 49.3, 141, 300 }, + [118] = { 29.4, 49.2, 141, 300 }, + [119] = { 27.5, 49.1, 141, 300 }, + [120] = { 28.5, 48.9, 141, 300 }, + [121] = { 25.4, 48.9, 141, 300 }, + [122] = { 29.8, 48.2, 141, 300 }, + [123] = { 25.8, 46.7, 141, 300 }, + [124] = { 26.7, 45.7, 141, 300 }, + [125] = { 43.4, 56.5, 148, 300 }, + [126] = { 45.9, 55.5, 148, 300 }, + [127] = { 41.3, 50.1, 148, 300 }, + [128] = { 41, 38.2, 148, 300 }, + [129] = { 48.4, 37.3, 148, 300 }, + [130] = { 61.2, 11.3, 148, 300 }, + [131] = { 52, 66.2, 331, 300 }, + [132] = { 69.1, 66.2, 331, 300 }, + [133] = { 40.7, 61.8, 331, 300 }, + [134] = { 20.8, 59.5, 331, 300 }, + [135] = { 81.7, 52.5, 331, 300 }, + [136] = { 66.7, 50.8, 331, 300 }, + [137] = { 27.7, 47.8, 331, 300 }, + [138] = { 43.8, 45.3, 331, 300 }, + [139] = { 65.3, 44.3, 331, 300 }, + [140] = { 44.4, 42, 331, 300 }, + [141] = { 32.8, 39, 331, 300 }, + [142] = { 55.3, 33.7, 331, 300 }, + [143] = { 19, 22.3, 331, 300 }, + [144] = { 54.3, 69.8, 357, 300 }, + [145] = { 54.5, 67.4, 357, 300 }, + [146] = { 56.1, 61.7, 357, 300 }, + [147] = { 56.8, 56.3, 357, 300 }, + [148] = { 73.6, 56, 357, 300 }, + [149] = { 55.6, 53.8, 357, 300 }, + [150] = { 71.2, 53.2, 357, 300 }, + [151] = { 54.8, 46.1, 357, 300 }, + [152] = { 73.3, 39.2, 357, 300 }, + [153] = { 46.9, 9, 357, 300 }, + [154] = { 54.5, 98, 361, 300 }, + [155] = { 29.7, 31.9, 361, 300 }, + [156] = { 80.1, 95.4, 406, 300 }, + [157] = { 78.7, 94.8, 406, 300 }, + [158] = { 72.3, 94.5, 406, 300 }, + [159] = { 81.9, 91, 406, 300 }, + [160] = { 77.1, 90.7, 406, 300 }, + [161] = { 76.8, 90.1, 406, 300 }, + [162] = { 68.6, 89.2, 406, 300 }, + [163] = { 82, 88.2, 406, 300 }, + [164] = { 77.8, 86.1, 406, 300 }, + [165] = { 66.9, 85.8, 406, 300 }, + [166] = { 81.2, 84.8, 406, 300 }, + [167] = { 74.9, 84.2, 406, 300 }, + [168] = { 60.5, 81.7, 406, 300 }, + [169] = { 59.5, 76.9, 406, 300 }, + [170] = { 59.4, 70.7, 406, 300 }, + [171] = { 53.7, 61.9, 406, 300 }, + [172] = { 62, 59.9, 406, 300 }, + [173] = { 52.7, 59.3, 406, 300 }, + [174] = { 75.8, 50.3, 406, 300 }, + [175] = { 68.1, 48, 406, 300 }, + [176] = { 52, 45.8, 406, 300 }, + [177] = { 71.1, 45.6, 406, 300 }, + [178] = { 78, 43.1, 406, 300 }, + [179] = { 51.4, 42.8, 406, 300 }, + [180] = { 69.6, 41, 406, 300 }, + [181] = { 65.4, 37.9, 406, 300 }, + [182] = { 51.4, 36.4, 406, 300 }, + [183] = { 47.3, 33, 406, 300 }, + [184] = { 34.4, 17.9, 406, 300 }, + [185] = { 43.5, 16.9, 406, 300 }, + [186] = { 56.2, 16.3, 406, 300 }, + [187] = { 30.9, 11.3, 406, 300 }, + [188] = { 34.1, 9.9, 406, 300 }, + [189] = { 39.7, 7.8, 406, 300 }, + [190] = { 54.7, 75.1, 493, 300 }, + [191] = { 52.1, 71.5, 493, 300 }, + [192] = { 62.3, 69.7, 493, 300 }, + [193] = { 37.1, 69.6, 493, 300 }, + [194] = { 37, 69.6, 493, 300 }, + [195] = { 64.6, 69.1, 493, 300 }, + [196] = { 39.2, 68.1, 493, 300 }, + [197] = { 51.5, 66.9, 493, 300 }, + [198] = { 56.3, 66.1, 493, 300 }, + [199] = { 38.7, 65.9, 493, 300 }, + [200] = { 47.8, 65.8, 493, 300 }, + [201] = { 61, 65.8, 493, 300 }, + [202] = { 36, 65.4, 493, 300 }, + [203] = { 35.6, 64.7, 493, 300 }, + [204] = { 47.7, 64.6, 493, 300 }, + [205] = { 62.8, 64.6, 493, 300 }, + [206] = { 51.9, 64.1, 493, 300 }, + [207] = { 48, 63, 493, 300 }, + [208] = { 41, 62.9, 493, 300 }, + [209] = { 64.5, 62.8, 493, 300 }, + [210] = { 37.7, 62.6, 493, 300 }, + [211] = { 33, 62.2, 493, 300 }, + [212] = { 39.7, 60.8, 493, 300 }, + [213] = { 71.5, 60.3, 493, 300 }, + [214] = { 44.8, 60.3, 493, 300 }, + [215] = { 34.5, 59.9, 493, 300 }, + [216] = { 36.1, 59.6, 493, 300 }, + [217] = { 43.9, 58.7, 493, 300 }, + [218] = { 41.6, 58.6, 493, 300 }, + [219] = { 34.8, 58.4, 493, 300 }, + [220] = { 32, 58.1, 493, 300 }, + [221] = { 33.7, 58.1, 493, 300 }, + [222] = { 40.7, 57.2, 493, 300 }, + [223] = { 65.5, 57.1, 493, 300 }, + [224] = { 70.7, 56.6, 493, 300 }, + [225] = { 39.4, 56.3, 493, 300 }, + [226] = { 32, 56.3, 493, 300 }, + [227] = { 35.8, 56.2, 493, 300 }, + [228] = { 33.4, 54.8, 493, 300 }, + [229] = { 31, 54.5, 493, 300 }, + [230] = { 35.6, 54.3, 493, 300 }, + [231] = { 37, 53.9, 493, 300 }, + [232] = { 68.1, 53.7, 493, 300 }, + [233] = { 42.3, 53.5, 493, 300 }, + [234] = { 30.6, 53.4, 493, 300 }, + [235] = { 32.3, 53, 493, 300 }, + [236] = { 36.4, 51.8, 493, 300 }, + [237] = { 65.2, 50.5, 493, 300 }, + [238] = { 70.6, 50.4, 493, 300 }, + [239] = { 66.2, 50.1, 493, 300 }, + [240] = { 62, 49.9, 493, 300 }, + [241] = { 31.5, 48.7, 493, 300 }, + [242] = { 35.7, 48, 493, 300 }, + [243] = { 38.7, 47.5, 493, 300 }, + [244] = { 51.8, 46.3, 493, 300 }, + [245] = { 63.6, 46.3, 493, 300 }, + [246] = { 37.1, 45.2, 493, 300 }, + [247] = { 33.4, 44.6, 493, 300 }, + [248] = { 40.1, 44.6, 493, 300 }, + [249] = { 46, 44.6, 493, 300 }, + [250] = { 39, 44.2, 493, 300 }, + [251] = { 35.1, 43.9, 493, 300 }, + [252] = { 37.2, 43.6, 493, 300 }, + [253] = { 49.1, 42.9, 493, 300 }, + [254] = { 40.7, 40.3, 493, 300 }, + [255] = { 32.7, 40.2, 493, 300 }, + [256] = { 35.2, 39.4, 493, 300 }, + [257] = { 52.1, 39.2, 493, 300 }, + [258] = { 37.1, 36.6, 493, 300 }, + [259] = { 50.6, 36.1, 493, 300 }, + [260] = { 42.3, 34.9, 493, 300 }, + [261] = { 39.2, 34.4, 493, 300 }, + [262] = { 47.9, 34.1, 493, 300 }, + [263] = { 59.2, 33.4, 493, 300 }, + [264] = { 34.9, 33, 493, 300 }, + [265] = { 41.3, 32.8, 493, 300 }, + [266] = { 50.5, 32.6, 493, 300 }, + [267] = { 32.4, 32.2, 493, 300 }, + [268] = { 48.5, 31.9, 493, 300 }, + [269] = { 38.8, 31.9, 493, 300 }, + [270] = { 48.7, 31.7, 493, 300 }, + [271] = { 52.6, 31.1, 493, 300 }, + [272] = { 55.2, 30.3, 493, 300 }, + [273] = { 57.9, 28, 493, 300 }, + [274] = { 39.3, 80.6, 1519, 270 }, + [275] = { 38.5, 77, 1519, 270 }, + [276] = { 37.2, 75.9, 1519, 270 }, + [277] = { 31.5, 74, 1519, 270 }, + [278] = { 31.4, 69.5, 1519, 270 }, + [279] = { 36.6, 68.7, 1519, 270 }, + [280] = { 52.6, 88.7, 1657, 300 }, + [281] = { 52.3, 87.4, 1657, 300 }, + [282] = { 51.7, 82.3, 1657, 300 }, + [283] = { 49, 76.6, 1657, 300 }, + [284] = { 50.6, 75.6, 1657, 300 }, + [285] = { 61.8, 74.9, 1657, 300 }, + [286] = { 65.9, 74.9, 1657, 300 }, + [287] = { 59, 74.1, 1657, 300 }, + [288] = { 64.1, 73.6, 1657, 300 }, + [289] = { 54.3, 72.4, 1657, 300 }, + [290] = { 58.3, 72, 1657, 300 }, + [291] = { 53.5, 71.5, 1657, 300 }, + [292] = { 47.4, 68.4, 1657, 300 }, + [293] = { 65.2, 65, 1657, 300 }, + [294] = { 58.6, 64.5, 1657, 300 }, + [295] = { 34.4, 60, 1657, 300 }, + [296] = { 67.8, 57.9, 1657, 300 }, + [297] = { 69.9, 57.7, 1657, 300 }, + [298] = { 59.3, 56, 1657, 300 }, + [299] = { 68.5, 55.8, 1657, 300 }, + [300] = { 35.3, 52.4, 1657, 300 }, + [301] = { 68.8, 51.8, 1657, 300 }, + [302] = { 59.6, 51.4, 1657, 300 }, + [303] = { 72.8, 49.9, 1657, 300 }, + [304] = { 56.4, 48.1, 1657, 300 }, + [305] = { 38.5, 44.8, 1657, 300 }, + [306] = { 41, 42.9, 1657, 300 }, + [307] = { 30.8, 40.5, 1657, 300 }, + [308] = { 39.1, 37.9, 1657, 300 }, + [309] = { 40.3, 36.9, 1657, 300 }, + [310] = { 74.1, 31.3, 1657, 300 }, + [311] = { 49.5, 31.1, 1657, 300 }, + [312] = { 54, 30.7, 1657, 300 }, + [313] = { 59.5, 30, 1657, 300 }, + [314] = { 47.4, 29.5, 1657, 300 }, + [315] = { 66.2, 29.1, 1657, 300 }, + [316] = { 61.7, 25.4, 1657, 300 }, + [317] = { 53.4, 21.1, 1657, 300 }, + [318] = { 44.8, 21, 1657, 300 }, + [319] = { 50.4, 19.5, 1657, 300 }, + [320] = { 37.6, 17.2, 1657, 300 }, + [321] = { 52.6, 16.3, 1657, 300 }, + [322] = { 41.9, 15.9, 1657, 300 }, + [323] = { 35.3, 12.8, 1657, 300 }, + [324] = { 62.3, 11.4, 1657, 300 }, + [325] = { 58.5, 10.9, 1657, 300 }, + [326] = { 49.5, 10.3, 1657, 300 }, + [327] = { 49.7, 10.2, 1657, 300 }, + [328] = { 54.2, 9.5, 1657, 300 }, + [329] = { 39.3, 9.4, 1657, 300 }, + [330] = { 60.4, 6.1, 1657, 300 }, + }, + ["lvl"] = "1", + }, + [1413] = { + ["coords"] = { + [1] = { 38.8, 79.6, 1519, 375 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [1414] = { + ["coords"] = { + [1] = { 38.9, 79.3, 1519, 375 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [1415] = { + ["coords"] = { + [1] = { 39, 79.5, 1519, 375 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [1416] = { + ["coords"] = { + [1] = { 51.8, 12.1, 1519, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [1417] = { + ["coords"] = { + [1] = { 63.4, 75.3, 11, 300 }, + [2] = { 64.1, 75.3, 11, 300 }, + [3] = { 62.2, 74.9, 11, 300 }, + [4] = { 64, 73.6, 11, 300 }, + [5] = { 66.3, 72.7, 11, 300 }, + [6] = { 63.9, 72.6, 11, 300 }, + [7] = { 66, 72.5, 11, 300 }, + [8] = { 64, 72.2, 11, 300 }, + [9] = { 65.9, 72.1, 11, 300 }, + [10] = { 65.4, 71, 11, 300 }, + [11] = { 65.5, 68.9, 11, 300 }, + [12] = { 64.7, 68.9, 11, 300 }, + [13] = { 63.4, 66.4, 11, 300 }, + [14] = { 63.5, 65.3, 11, 300 }, + [15] = { 60.5, 63.6, 11, 300 }, + [16] = { 61.9, 61.8, 11, 300 }, + [17] = { 61, 61.7, 11, 300 }, + [18] = { 62.1, 61.4, 11, 300 }, + [19] = { 14.4, 59.9, 11, 300 }, + [20] = { 62.6, 59.4, 11, 300 }, + [21] = { 61.8, 56.8, 11, 300 }, + [22] = { 60.6, 54.7, 11, 300 }, + [23] = { 13.4, 54.7, 11, 300 }, + [24] = { 61, 54.7, 11, 300 }, + [25] = { 59.7, 53.3, 11, 300 }, + [26] = { 14.6, 53.2, 11, 300 }, + [27] = { 61.4, 53.1, 11, 300 }, + [28] = { 15.4, 52.2, 11, 300 }, + [29] = { 16.9, 52.1, 11, 300 }, + [30] = { 18.5, 51.6, 11, 300 }, + [31] = { 14.4, 51.6, 11, 300 }, + [32] = { 58.9, 51.1, 11, 300 }, + [33] = { 58.5, 50.8, 11, 300 }, + [34] = { 59.4, 49.4, 11, 300 }, + [35] = { 18.7, 49.3, 11, 300 }, + [36] = { 57, 48.3, 11, 300 }, + [37] = { 15.1, 47.7, 11, 300 }, + [38] = { 57.2, 47.2, 11, 300 }, + [39] = { 18.6, 47.2, 11, 300 }, + [40] = { 20.2, 47.2, 11, 300 }, + [41] = { 19.1, 47.1, 11, 300 }, + [42] = { 15.8, 46.4, 11, 300 }, + [43] = { 55.1, 45.7, 11, 300 }, + [44] = { 19.8, 45.1, 11, 300 }, + [45] = { 21.4, 44.6, 11, 300 }, + [46] = { 53.8, 42.5, 11, 300 }, + [47] = { 53.1, 42.3, 11, 300 }, + [48] = { 53, 41.3, 11, 300 }, + [49] = { 26.5, 41.2, 11, 300 }, + [50] = { 27.8, 39.6, 11, 300 }, + [51] = { 52.4, 39.6, 11, 300 }, + [52] = { 28.9, 38.9, 11, 300 }, + [53] = { 30.5, 38.8, 11, 300 }, + [54] = { 51.5, 38.7, 11, 300 }, + [55] = { 34.5, 37.6, 11, 300 }, + [56] = { 53.1, 37.6, 11, 300 }, + [57] = { 37.3, 37.1, 11, 300 }, + [58] = { 50.9, 37.1, 11, 300 }, + [59] = { 40.2, 36.3, 11, 300 }, + [60] = { 52.2, 36.2, 11, 300 }, + [61] = { 28.7, 36.2, 11, 300 }, + [62] = { 38.6, 36.2, 11, 300 }, + [63] = { 35.1, 35.9, 11, 300 }, + [64] = { 33.7, 35.4, 11, 300 }, + [65] = { 51.9, 35.4, 11, 300 }, + [66] = { 37.3, 34.6, 11, 300 }, + [67] = { 28, 34.4, 11, 300 }, + [68] = { 50.5, 33.8, 11, 300 }, + [69] = { 28.7, 33.8, 11, 300 }, + [70] = { 53.1, 33.3, 11, 300 }, + [71] = { 53.2, 32.7, 11, 300 }, + [72] = { 52.4, 32.7, 11, 300 }, + [73] = { 28, 32.6, 11, 300 }, + [74] = { 53.8, 32.6, 11, 300 }, + [75] = { 26.7, 32.5, 11, 300 }, + [76] = { 50.3, 32, 11, 300 }, + [77] = { 54.7, 31.2, 11, 300 }, + }, + ["lvl"] = "21-22", + }, + [1418] = { + ["coords"] = { + [1] = { 9.5, 72.5, 11, 300 }, + [2] = { 9.5, 71.5, 11, 300 }, + [3] = { 11, 71.4, 11, 300 }, + [4] = { 10.3, 71.4, 11, 300 }, + [5] = { 8.7, 71.3, 11, 300 }, + [6] = { 8.7, 70.3, 11, 300 }, + [7] = { 10.2, 70.3, 11, 300 }, + [8] = { 9.5, 70.2, 11, 300 }, + [9] = { 9.5, 69, 11, 300 }, + [10] = { 8.7, 68.9, 11, 300 }, + [11] = { 8.7, 67.9, 11, 300 }, + [12] = { 9.5, 67.9, 11, 300 }, + [13] = { 9.5, 66.7, 11, 300 }, + [14] = { 11.9, 66.6, 11, 300 }, + [15] = { 12.4, 66.5, 11, 300 }, + [16] = { 10.3, 66.5, 11, 300 }, + [17] = { 11.9, 65.4, 11, 300 }, + [18] = { 12.7, 65.3, 11, 300 }, + [19] = { 11.2, 65.3, 11, 300 }, + [20] = { 12.4, 65.2, 11, 300 }, + [21] = { 11.8, 64.4, 11, 300 }, + [22] = { 12.6, 64.3, 11, 300 }, + [23] = { 13.5, 64.1, 11, 300 }, + [24] = { 13.1, 63.6, 11, 300 }, + [25] = { 12, 63.5, 11, 300 }, + [26] = { 19.2, 19.5, 11, 300 }, + [27] = { 26.4, 18.5, 11, 300 }, + [28] = { 23.2, 18.2, 11, 300 }, + [29] = { 24.8, 18.2, 11, 300 }, + [30] = { 20, 18, 11, 300 }, + [31] = { 21.8, 17.8, 11, 300 }, + [32] = { 20.7, 17, 11, 300 }, + [33] = { 25.7, 16.9, 11, 300 }, + [34] = { 27, 16.9, 11, 300 }, + [35] = { 24.1, 16.9, 11, 300 }, + [36] = { 26.1, 16.3, 11, 300 }, + [37] = { 28.2, 16.1, 11, 300 }, + [38] = { 28.9, 14.6, 11, 300 }, + [39] = { 28, 13.6, 11, 300 }, + [40] = { 29.8, 13.2, 11, 300 }, + [41] = { 29.1, 12.3, 11, 300 }, + [42] = { 31.4, 12.2, 11, 300 }, + [43] = { 30.3, 11.3, 11, 300 }, + [44] = { 31.6, 9.3, 11, 300 }, + [45] = { 21, 99.1, 45, 300 }, + [46] = { 20.2, 98, 45, 300 }, + [47] = { 22.8, 98, 45, 300 }, + [48] = { 21.6, 96.9, 45, 300 }, + [49] = { 23, 94.7, 45, 300 }, + }, + ["lvl"] = "28-29", + }, + [1419] = { + ["coords"] = { + [1] = { 32.3, 79.8, 1519, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [1420] = { + ["coords"] = { + [1] = { 76.6, 80.1, 8, 300 }, + [2] = { 67.1, 67.4, 8, 300 }, + [3] = { 63, 65.2, 8, 300 }, + [4] = { 14.9, 59.4, 8, 300 }, + [5] = { 51, 57, 8, 300 }, + [6] = { 53.3, 49.5, 8, 300 }, + [7] = { 22.6, 48.8, 8, 300 }, + [8] = { 89.7, 46.2, 8, 300 }, + [9] = { 46.8, 45.1, 8, 300 }, + [10] = { 10.7, 35.4, 8, 300 }, + [11] = { 83.9, 27.4, 8, 300 }, + [12] = { 67.3, 71.8, 11, 300 }, + [13] = { 60.5, 69.6, 11, 300 }, + [14] = { 61.6, 67.9, 11, 300 }, + [15] = { 9.7, 61.8, 11, 300 }, + [16] = { 59.6, 59.6, 11, 300 }, + [17] = { 10, 58.6, 11, 300 }, + [18] = { 7.2, 57.7, 11, 300 }, + [19] = { 11.7, 56, 11, 300 }, + [20] = { 9.9, 54.3, 11, 300 }, + [21] = { 13.2, 53.9, 11, 300 }, + [22] = { 10.9, 53, 11, 300 }, + [23] = { 58.7, 49.6, 11, 300 }, + [24] = { 56, 47.5, 11, 300 }, + [25] = { 15.5, 46.9, 11, 300 }, + [26] = { 18.6, 46.3, 11, 300 }, + [27] = { 26.3, 40.8, 11, 300 }, + [28] = { 33.2, 39.8, 11, 300 }, + [29] = { 51.9, 38.9, 11, 300 }, + [30] = { 32, 38.2, 11, 300 }, + [31] = { 49.9, 37.9, 11, 300 }, + [32] = { 33.9, 37.2, 11, 300 }, + [33] = { 31.2, 36.6, 11, 300 }, + [34] = { 38.4, 36.3, 11, 300 }, + [35] = { 48.1, 33.7, 11, 300 }, + [36] = { 24.6, 33.6, 11, 300 }, + [37] = { 21.3, 32.7, 11, 300 }, + [38] = { 42, 31.5, 11, 300 }, + [39] = { 35.1, 28.5, 11, 300 }, + [40] = { 22.1, 26.8, 11, 300 }, + [41] = { 25, 25, 11, 300 }, + [42] = { 46, 78.2, 15, 300 }, + [43] = { 46.5, 77.5, 15, 300 }, + [44] = { 50.2, 77.1, 15, 300 }, + [45] = { 47.9, 76.6, 15, 300 }, + [46] = { 43.6, 76.6, 15, 300 }, + [47] = { 47.3, 76.2, 15, 300 }, + [48] = { 48.7, 75.8, 15, 300 }, + [49] = { 47.3, 75.1, 15, 300 }, + [50] = { 42.2, 74.9, 15, 300 }, + [51] = { 55.2, 74.8, 15, 300 }, + [52] = { 46.4, 74.7, 15, 300 }, + [53] = { 50.1, 74.2, 15, 300 }, + [54] = { 46, 73.9, 15, 300 }, + [55] = { 45.6, 73.7, 15, 300 }, + [56] = { 50.9, 73.7, 15, 300 }, + [57] = { 43.3, 73.1, 15, 300 }, + [58] = { 51.1, 73.1, 15, 300 }, + [59] = { 52.5, 73, 15, 300 }, + [60] = { 47.3, 72.7, 15, 300 }, + [61] = { 52.7, 72.2, 15, 300 }, + [62] = { 55.8, 72.1, 15, 300 }, + [63] = { 38.2, 71.9, 15, 300 }, + [64] = { 35.5, 71, 15, 300 }, + [65] = { 34.2, 70.7, 15, 300 }, + [66] = { 43.2, 70.6, 15, 300 }, + [67] = { 46.3, 70.1, 15, 300 }, + [68] = { 42.8, 70.1, 15, 300 }, + [69] = { 48.7, 69.7, 15, 300 }, + [70] = { 52.4, 69.7, 15, 300 }, + [71] = { 44.5, 69.6, 15, 300 }, + [72] = { 39, 69.6, 15, 300 }, + [73] = { 34.6, 69.4, 15, 300 }, + [74] = { 56.7, 69, 15, 300 }, + [75] = { 41.5, 69, 15, 300 }, + [76] = { 51.2, 68.9, 15, 300 }, + [77] = { 43.1, 68.5, 15, 300 }, + [78] = { 35.9, 67.9, 15, 300 }, + [79] = { 41.4, 67.6, 15, 300 }, + [80] = { 47.9, 66.7, 15, 300 }, + [81] = { 48.6, 66.3, 15, 300 }, + [82] = { 50.8, 65.7, 15, 300 }, + [83] = { 42.1, 65.4, 15, 300 }, + [84] = { 39.3, 65.1, 15, 300 }, + [85] = { 47.3, 63.7, 15, 300 }, + [86] = { 44, 62.7, 15, 300 }, + [87] = { 43.5, 62.7, 15, 300 }, + [88] = { 45.6, 62.1, 15, 300 }, + [89] = { 40.9, 61.8, 15, 300 }, + [90] = { 51.4, 61.5, 15, 300 }, + [91] = { 41.7, 61.1, 15, 300 }, + [92] = { 36.7, 61.1, 15, 300 }, + [93] = { 43, 60.4, 15, 300 }, + [94] = { 48.2, 60.1, 15, 300 }, + [95] = { 36.7, 60, 15, 300 }, + [96] = { 49.9, 57.8, 15, 300 }, + [97] = { 52.3, 56.4, 15, 300 }, + [98] = { 47.7, 54.8, 15, 300 }, + [99] = { 38.2, 54, 15, 300 }, + [100] = { 47.7, 53.8, 15, 300 }, + [101] = { 46, 53, 15, 300 }, + [102] = { 47.4, 52.9, 15, 300 }, + [103] = { 38.6, 52.8, 15, 300 }, + [104] = { 49, 52.7, 15, 300 }, + [105] = { 41, 51.5, 15, 300 }, + [106] = { 37.7, 50.5, 15, 300 }, + [107] = { 44.3, 50.4, 15, 300 }, + [108] = { 35.1, 50.3, 15, 300 }, + [109] = { 43.6, 50.1, 15, 300 }, + [110] = { 48.3, 49.8, 15, 300 }, + [111] = { 45.6, 49.5, 15, 300 }, + [112] = { 45.3, 49.1, 15, 300 }, + [113] = { 34.8, 49.1, 15, 300 }, + [114] = { 44.2, 47.7, 15, 300 }, + [115] = { 42.5, 47.7, 15, 300 }, + [116] = { 34.3, 47.1, 15, 300 }, + [117] = { 38.8, 46.6, 15, 300 }, + [118] = { 40.8, 46.3, 15, 300 }, + [119] = { 42.3, 46.2, 15, 300 }, + [120] = { 39, 46, 15, 300 }, + [121] = { 46.1, 45.6, 15, 300 }, + [122] = { 42.7, 45.3, 15, 300 }, + [123] = { 34.1, 45.1, 15, 300 }, + [124] = { 33.3, 44.7, 15, 300 }, + [125] = { 36.1, 43.9, 15, 300 }, + [126] = { 44.5, 42.7, 15, 300 }, + [127] = { 36.5, 42.5, 15, 300 }, + [128] = { 33.8, 42.3, 15, 300 }, + [129] = { 44.3, 41.6, 15, 300 }, + [130] = { 39, 41.6, 15, 300 }, + [131] = { 41.5, 41.2, 15, 300 }, + [132] = { 33.9, 41.2, 15, 300 }, + [133] = { 44.6, 40.6, 15, 300 }, + [134] = { 36.3, 40.3, 15, 300 }, + [135] = { 41, 39.1, 15, 300 }, + [136] = { 35, 38.9, 15, 300 }, + [137] = { 42.9, 38.3, 15, 300 }, + [138] = { 59.7, 35.8, 15, 300 }, + [139] = { 56.4, 35.8, 15, 300 }, + [140] = { 38.2, 35.8, 15, 300 }, + [141] = { 40.1, 34.9, 15, 300 }, + [142] = { 40.7, 33.1, 15, 300 }, + [143] = { 54.8, 32.8, 15, 300 }, + [144] = { 40.7, 32.3, 15, 300 }, + [145] = { 38, 30.8, 15, 300 }, + [146] = { 38, 30.1, 15, 300 }, + [147] = { 57.1, 29, 15, 300 }, + [148] = { 41.9, 28.9, 15, 300 }, + [149] = { 53.1, 28.3, 15, 300 }, + [150] = { 39, 28.1, 15, 300 }, + [151] = { 36.4, 27.9, 15, 300 }, + [152] = { 55.9, 27.8, 15, 300 }, + [153] = { 51, 27.5, 15, 300 }, + [154] = { 38.6, 25.6, 15, 300 }, + [155] = { 38.1, 25.5, 15, 300 }, + [156] = { 43.8, 25.2, 15, 300 }, + [157] = { 39.7, 25.1, 15, 300 }, + [158] = { 46, 24.7, 15, 300 }, + [159] = { 43.1, 24.7, 15, 300 }, + [160] = { 41.6, 24.4, 15, 300 }, + [161] = { 54.2, 24.3, 15, 300 }, + [162] = { 54.1, 24.2, 15, 300 }, + [163] = { 42.7, 23.3, 15, 300 }, + [164] = { 43.2, 23.2, 15, 300 }, + [165] = { 49.2, 22.9, 15, 300 }, + [166] = { 56.4, 22.4, 15, 300 }, + [167] = { 56.3, 22.3, 15, 300 }, + [168] = { 45.4, 22.1, 15, 300 }, + [169] = { 37.4, 21.8, 15, 300 }, + [170] = { 47.2, 21.6, 15, 300 }, + [171] = { 40.9, 21.5, 15, 300 }, + [172] = { 50.8, 21.4, 15, 300 }, + [173] = { 51.1, 21.2, 15, 300 }, + [174] = { 47, 20.9, 15, 300 }, + [175] = { 41.5, 20.7, 15, 300 }, + [176] = { 53.1, 20.7, 15, 300 }, + [177] = { 38.3, 19.6, 15, 300 }, + [178] = { 44.3, 19.4, 15, 300 }, + [179] = { 51.1, 18.9, 15, 300 }, + [180] = { 41.4, 18.5, 15, 300 }, + [181] = { 37.3, 18.4, 15, 300 }, + [182] = { 47.3, 17.8, 15, 300 }, + [183] = { 47.3, 17.4, 15, 300 }, + [184] = { 36.9, 12.9, 15, 300 }, + [185] = { 55.3, 91.2, 17, 300 }, + [186] = { 53.9, 90.8, 17, 300 }, + [187] = { 53.2, 90.6, 17, 300 }, + [188] = { 53.4, 89.9, 17, 300 }, + [189] = { 54.1, 89.1, 17, 300 }, + [190] = { 54.5, 85.6, 17, 300 }, + [191] = { 54.5, 85.1, 17, 300 }, + [192] = { 55.3, 81.9, 17, 300 }, + [193] = { 55, 80.1, 17, 300 }, + [194] = { 53.7, 80, 17, 300 }, + [195] = { 53.5, 79.4, 17, 300 }, + [196] = { 53.3, 78.3, 17, 300 }, + [197] = { 53.2, 77.3, 17, 300 }, + [198] = { 52.8, 77.1, 17, 300 }, + [199] = { 54.2, 76.7, 17, 300 }, + [200] = { 54.4, 76, 17, 300 }, + [201] = { 53, 75.9, 17, 300 }, + [202] = { 53.1, 75.3, 17, 300 }, + [203] = { 54.3, 74.8, 17, 300 }, + [204] = { 53.6, 74.1, 17, 300 }, + [205] = { 55.3, 72.5, 17, 300 }, + [206] = { 55.2, 69.9, 17, 300 }, + [207] = { 55.2, 69.6, 17, 300 }, + [208] = { 54.4, 68.4, 17, 300 }, + [209] = { 55.3, 67.2, 17, 300 }, + [210] = { 54.9, 65.2, 17, 300 }, + [211] = { 55.3, 64.1, 17, 300 }, + [212] = { 54.8, 63.5, 17, 300 }, + [213] = { 54.6, 60.7, 17, 300 }, + [214] = { 4.9, 57.7, 36, 300 }, + [215] = { 31.2, 82.8, 45, 300 }, + [216] = { 33.7, 81.3, 45, 300 }, + [217] = { 66.7, 44.4, 130, 300 }, + [218] = { 67.9, 37.8, 130, 300 }, + [219] = { 59.1, 36.6, 130, 300 }, + [220] = { 64, 31.3, 130, 300 }, + [221] = { 56.5, 21.6, 130, 300 }, + [222] = { 65.6, 19, 130, 300 }, + [223] = { 59.5, 18.1, 130, 300 }, + [224] = { 65, 12.8, 130, 300 }, + [225] = { 50.6, 73.6, 141, 300 }, + [226] = { 52.4, 72.7, 141, 300 }, + [227] = { 50.2, 71.9, 141, 300 }, + [228] = { 52.8, 70.7, 141, 300 }, + [229] = { 51.3, 70.5, 141, 300 }, + [230] = { 55.3, 69.5, 141, 300 }, + [231] = { 59.5, 69.1, 141, 300 }, + [232] = { 56.1, 68.3, 141, 300 }, + [233] = { 41.3, 67.8, 141, 300 }, + [234] = { 57.2, 67.8, 141, 300 }, + [235] = { 40.7, 67.3, 141, 300 }, + [236] = { 59.6, 66.6, 141, 300 }, + [237] = { 57.9, 66.3, 141, 300 }, + [238] = { 39.7, 65.9, 141, 300 }, + [239] = { 40.5, 65.3, 141, 300 }, + [240] = { 40.5, 63.9, 141, 300 }, + [241] = { 28, 61.5, 141, 300 }, + [242] = { 28.5, 59, 141, 300 }, + [243] = { 26.8, 58.7, 141, 300 }, + [244] = { 26.7, 58.5, 141, 300 }, + [245] = { 27, 58.3, 141, 300 }, + [246] = { 27, 57.5, 141, 300 }, + [247] = { 25.5, 57.3, 141, 300 }, + [248] = { 28.6, 57.2, 141, 300 }, + [249] = { 27, 57, 141, 300 }, + [250] = { 26.5, 56.9, 141, 300 }, + [251] = { 28.3, 56.5, 141, 300 }, + [252] = { 22.8, 56.5, 141, 300 }, + [253] = { 23.8, 56.3, 141, 300 }, + [254] = { 27.6, 56, 141, 300 }, + [255] = { 24.2, 56, 141, 300 }, + [256] = { 27.3, 55.2, 141, 300 }, + [257] = { 24.9, 54.6, 141, 300 }, + [258] = { 25, 54.5, 141, 300 }, + [259] = { 23.6, 54.2, 141, 300 }, + [260] = { 28.5, 54.2, 141, 300 }, + [261] = { 28.1, 53.5, 141, 300 }, + [262] = { 29.6, 53.4, 141, 300 }, + [263] = { 28.1, 53.3, 141, 300 }, + [264] = { 26.9, 53.2, 141, 300 }, + [265] = { 26.9, 53.1, 141, 300 }, + [266] = { 22.6, 53.1, 141, 300 }, + [267] = { 28.9, 52.5, 141, 300 }, + [268] = { 23.4, 52.1, 141, 300 }, + [269] = { 26, 51.9, 141, 300 }, + [270] = { 23.4, 51.9, 141, 300 }, + [271] = { 26.6, 51.8, 141, 300 }, + [272] = { 26.4, 51.6, 141, 300 }, + [273] = { 42.3, 42.2, 141, 300 }, + [274] = { 43.7, 40.8, 141, 300 }, + [275] = { 43, 39.4, 141, 300 }, + [276] = { 42.2, 38.8, 141, 300 }, + [277] = { 57.4, 38.8, 141, 300 }, + [278] = { 57.9, 38.2, 141, 300 }, + [279] = { 57, 37.4, 141, 300 }, + [280] = { 58.6, 36.5, 141, 300 }, + [281] = { 43, 35.2, 141, 300 }, + [282] = { 42.7, 31.8, 141, 300 }, + [283] = { 43.4, 31.7, 141, 300 }, + [284] = { 43, 28.2, 141, 300 }, + [285] = { 44.4, 27.5, 141, 300 }, + [286] = { 43.5, 26.7, 141, 300 }, + [287] = { 44.3, 26.3, 141, 300 }, + [288] = { 66.8, 74.7, 490, 300 }, + [289] = { 65.4, 74.4, 490, 300 }, + [290] = { 69.2, 73, 490, 300 }, + [291] = { 64.4, 72.9, 490, 300 }, + [292] = { 70, 70.4, 490, 300 }, + [293] = { 66.5, 69.9, 490, 300 }, + [294] = { 64.2, 68.4, 490, 300 }, + [295] = { 61.8, 68, 490, 300 }, + [296] = { 69.2, 65.4, 490, 300 }, + [297] = { 71.9, 64.7, 490, 300 }, + [298] = { 73.8, 60.7, 490, 300 }, + [299] = { 65.3, 58.9, 490, 300 }, + [300] = { 63.6, 56.4, 490, 300 }, + [301] = { 71, 55.9, 490, 300 }, + [302] = { 72.6, 55.6, 490, 300 }, + [303] = { 75.4, 55.6, 490, 300 }, + [304] = { 66.8, 55.1, 490, 300 }, + [305] = { 68.8, 52.4, 490, 300 }, + [306] = { 73.1, 48.6, 490, 300 }, + [307] = { 71.4, 48.4, 490, 300 }, + [308] = { 69.1, 46, 490, 300 }, + [309] = { 64.8, 43.9, 490, 300 }, + [310] = { 61.5, 43.2, 490, 300 }, + [311] = { 59.4, 43, 490, 300 }, + [312] = { 69.1, 42.6, 490, 300 }, + [313] = { 45.1, 42.4, 490, 300 }, + [314] = { 56.9, 41.7, 490, 300 }, + [315] = { 64.7, 40.7, 490, 300 }, + [316] = { 44.5, 40.7, 490, 300 }, + [317] = { 49.2, 39.6, 490, 300 }, + [318] = { 44, 37.4, 490, 300 }, + [319] = { 53.8, 37.3, 490, 300 }, + [320] = { 43.6, 31.9, 490, 300 }, + [321] = { 41.5, 29.5, 490, 300 }, + [322] = { 35.7, 26.6, 490, 300 }, + [323] = { 30.9, 24.9, 490, 300 }, + [324] = { 35.7, 22.5, 490, 300 }, + [325] = { 52.1, 69.9, 1657, 300 }, + [326] = { 54.4, 58.2, 1657, 300 }, + [327] = { 46.2, 56.7, 1657, 300 }, + [328] = { 45.8, 55.8, 1657, 300 }, + [329] = { 47, 54.8, 1657, 300 }, + [330] = { 47.2, 50.6, 1657, 300 }, + [331] = { 40.1, 49.9, 1657, 300 }, + [332] = { 54.7, 49.2, 1657, 300 }, + [333] = { 47.3, 48.5, 1657, 300 }, + [334] = { 44.6, 48, 1657, 300 }, + [335] = { 53.6, 46.2, 1657, 300 }, + [336] = { 27.1, 45.8, 1657, 300 }, + [337] = { 31.9, 44.8, 1657, 300 }, + [338] = { 49.9, 43.7, 1657, 300 }, + [339] = { 33.7, 43.6, 1657, 300 }, + [340] = { 48.3, 39.6, 1657, 300 }, + [341] = { 36.8, 37, 1657, 300 }, + [342] = { 37.4, 36.5, 1657, 300 }, + [343] = { 30.7, 34.8, 1657, 300 }, + [344] = { 54.2, 34.8, 1657, 300 }, + [345] = { 52.3, 31.7, 1657, 300 }, + [346] = { 59.8, 31.3, 1657, 300 }, + [347] = { 52.3, 30.7, 1657, 300 }, + [348] = { 46.6, 30.4, 1657, 300 }, + [349] = { 46.8, 29.7, 1657, 300 }, + [350] = { 25.9, 29.6, 1657, 300 }, + [351] = { 56.3, 26.9, 1657, 300 }, + [352] = { 29.9, 25, 1657, 300 }, + [353] = { 42.1, 23.9, 1657, 300 }, + [354] = { 29.9, 23.7, 1657, 300 }, + [355] = { 45.4, 23.4, 1657, 300 }, + [356] = { 44.2, 22.6, 1657, 300 }, + }, + ["lvl"] = "1", + }, + [1421] = { + ["coords"] = { + [1] = { 38.5, 3.8, 33, 60 }, + }, + ["fac"] = "A", + ["lvl"] = "31", + }, + [1422] = { + ["coords"] = { + [1] = { 37.7, 3.4, 33, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [1423] = { + ["coords"] = { + [1] = { 24.4, 81, 12, 300 }, + [2] = { 23.6, 80.7, 12, 300 }, + [3] = { 24.5, 80.6, 12, 300 }, + [4] = { 23.6, 80.5, 12, 300 }, + [5] = { 84.5, 80.3, 12, 300 }, + [6] = { 23.8, 80.2, 12, 300 }, + [7] = { 23.1, 80, 12, 300 }, + [8] = { 20.9, 79.8, 12, 300 }, + [9] = { 84.5, 79.7, 12, 300 }, + [10] = { 84.7, 79.6, 12, 300 }, + [11] = { 20.7, 79.5, 12, 300 }, + [12] = { 84.8, 79.1, 12, 300 }, + [13] = { 83.7, 79, 12, 300 }, + [14] = { 83.9, 78.4, 12, 300 }, + [15] = { 28.1, 78, 12, 300 }, + [16] = { 28.2, 77.7, 12, 300 }, + [17] = { 24.9, 73.3, 12, 300 }, + [18] = { 25.5, 73, 12, 300 }, + [19] = { 24.7, 72.9, 12, 300 }, + [20] = { 24.3, 72.9, 12, 300 }, + [21] = { 25.5, 72.9, 12, 300 }, + [22] = { 25.1, 72.7, 12, 300 }, + [23] = { 74.2, 72.7, 12, 300 }, + [24] = { 24.3, 72.6, 12, 300 }, + [25] = { 75, 72.5, 12, 300 }, + [26] = { 74.2, 72.4, 12, 300 }, + [27] = { 25.7, 72.4, 12, 300 }, + [28] = { 25, 72.3, 12, 300 }, + [29] = { 25.8, 72.2, 12, 300 }, + [30] = { 25.9, 72.2, 12, 300 }, + [31] = { 75.1, 72.2, 12, 300 }, + [32] = { 56.6, 72.2, 12, 300 }, + [33] = { 24.9, 72, 12, 300 }, + [34] = { 25, 71.8, 12, 300 }, + [35] = { 24.6, 71.5, 12, 300 }, + [36] = { 24.5, 71.5, 12, 300 }, + [37] = { 42.1, 66.6, 12, 300 }, + [38] = { 42.1, 65.5, 12, 300 }, + [39] = { 35.3, 53.7, 12, 300 }, + [40] = { 45.6, 49.1, 12, 300 }, + [41] = { 63.1, 16.6, 40, 300 }, + [42] = { 62.9, 16.3, 40, 300 }, + [43] = { 71, 88.6, 1519, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "22-25", + }, + [1424] = { + ["coords"] = { + [1] = { 46.5, 19, 40, 5400 }, + }, + ["lvl"] = "15", + ["rnk"] = "4", + }, + [1425] = { + ["coords"] = { + [1] = { 34.6, 27.1, 38, 5400 }, + }, + ["lvl"] = "15", + ["rnk"] = "4", + }, + [1426] = { + ["coords"] = { + [1] = { 29.6, 50.6, 40, 300 }, + [2] = { 29, 50.5, 40, 300 }, + [3] = { 30.3, 49.7, 40, 300 }, + [4] = { 29, 48.7, 40, 300 }, + [5] = { 30.3, 47.6, 40, 300 }, + [6] = { 30.8, 46.2, 40, 300 }, + [7] = { 29.3, 46.1, 40, 300 }, + [8] = { 30.3, 45.5, 40, 300 }, + }, + ["lvl"] = "14-15", + }, + [1427] = { + ["coords"] = { + [1] = { 55.1, 56.2, 1519, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "12", + }, + [1428] = { + ["coords"] = { + [1] = { 49.7, 55.6, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [1429] = { + ["coords"] = { + [1] = { 42.5, 76.2, 1519, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "2", + }, + [1430] = { + ["coords"] = { + [1] = { 44.4, 66, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [1431] = { + ["coords"] = { + [1] = { 52.5, 67.6, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1432] = { + ["coords"] = { + [1] = { 57, 63.5, 1519, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [1433] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [1434] = { + ["coords"] = { + [1] = { 5.2, 63.7, 11, 300 }, + [2] = { 5, 63.1, 11, 300 }, + [3] = { 5, 62.3, 11, 300 }, + [4] = { 11.2, 62, 11, 300 }, + [5] = { 9.7, 60.5, 11, 300 }, + [6] = { 9.1, 60.2, 11, 300 }, + [7] = { 10.5, 59, 11, 300 }, + [8] = { 10.2, 58.3, 11, 300 }, + [9] = { 10.3, 58.1, 11, 300 }, + [10] = { 8.9, 57.9, 11, 300 }, + [11] = { 9.9, 57.9, 11, 300 }, + [12] = { 4.8, 57.8, 11, 300 }, + [13] = { 4.5, 57.5, 11, 300 }, + [14] = { 9.4, 57.3, 11, 300 }, + [15] = { 11.2, 57.3, 11, 300 }, + [16] = { 10.6, 57.3, 11, 300 }, + [17] = { 9.9, 57.1, 11, 300 }, + [18] = { 4.8, 57, 11, 300 }, + [19] = { 8.3, 56.9, 11, 300 }, + [20] = { 10.3, 56.4, 11, 300 }, + [21] = { 9.8, 56.3, 11, 300 }, + [22] = { 9.8, 56, 11, 300 }, + [23] = { 9.3, 55.9, 11, 300 }, + [24] = { 11.8, 55.2, 11, 300 }, + [25] = { 11.1, 54.7, 11, 300 }, + [26] = { 10.7, 54.4, 11, 300 }, + [27] = { 7.4, 54.2, 11, 300 }, + [28] = { 12.7, 50.1, 11, 300 }, + [29] = { 12.3, 50, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "38-42", + }, + [1435] = { + ["coords"] = { + [1] = { 26.4, 78.6, 1519, 490 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [1436] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "37", + }, + [1437] = { + ["coords"] = { + [1] = { 8.8, 54.3, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [1439] = { + ["coords"] = { + [1] = { 75.2, 31.7, 1519, 60 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [1440] = { + ["coords"] = { + [1] = { 74.2, 7.5, 1519, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [1441] = { + ["coords"] = { + [1] = { 11.5, 59.6, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [1442] = { + ["coords"] = { + [1] = { 47.7, 55.2, 8, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [1443] = { + ["coords"] = { + [1] = { 47.9, 54.8, 8, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [1444] = { + ["coords"] = { + [1] = { 45.7, 38.4, 1519, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [1445] = { + ["coords"] = { + [1] = { 8.3, 55.1, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "2", + }, + [1446] = { + ["coords"] = { + [1] = { 8.3, 55.3, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "2", + }, + [1447] = { + ["coords"] = { + [1] = { 12.1, 57.8, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "2", + }, + [1448] = { + ["coords"] = { + [1] = { 10.7, 56.8, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [1449] = { + ["coords"] = { + [1] = { 35.3, 60.4, 33, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "42", + }, + [1450] = { + ["coords"] = { + [1] = { 11.5, 59.9, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [1451] = { + ["coords"] = { + [1] = { 10.1, 58.9, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [1452] = { + ["coords"] = { + [1] = { 12.1, 58, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [1453] = { + ["coords"] = { + [1] = { 8, 56.3, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [1454] = { + ["coords"] = { + [1] = { 8.1, 55.8, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [1455] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [1456] = { + ["coords"] = { + [1] = { 10.4, 60.6, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [1457] = { + ["coords"] = { + [1] = { 10.5, 60.2, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [1458] = { + ["coords"] = { + [1] = { 8, 55.8, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [1459] = { + ["coords"] = { + [1] = { 11.3, 58.4, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [1460] = { + ["coords"] = { + [1] = { 8.6, 54.3, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [1461] = { + ["coords"] = { + [1] = { 11.3, 59.6, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [1462] = { + ["coords"] = { + [1] = { 11.1, 58.3, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [1463] = { + ["coords"] = { + [1] = { 8.3, 56.5, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [1464] = { + ["coords"] = { + [1] = { 10.7, 61, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1465] = { + ["coords"] = { + [1] = { 35.6, 49.2, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [1466] = { + ["coords"] = { + [1] = { 38.8, 32.9, 1537, 285 }, + }, + ["fac"] = "A", + ["lvl"] = "24", + }, + [1467] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "15", + }, + [1468] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "15", + }, + [1469] = { + ["coords"] = { + [1] = { 35.8, 43.5, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [1470] = { + ["coords"] = { + [1] = { 37.1, 49.4, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [1471] = { + ["coords"] = { + [1] = { 46, 47.7, 45, 400 }, + }, + ["fac"] = "A", + ["lvl"] = "46", + }, + [1472] = { + ["coords"] = { + [1] = { 59.4, 21.3, 1519, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "53", + }, + [1473] = { + ["coords"] = { + [1] = { 36.5, 48.5, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "14", + }, + [1474] = { + ["coords"] = { + [1] = { 35.9, 45.9, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [1475] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "47", + }, + [1476] = { + ["coords"] = { + [1] = { 10.7, 60.5, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [1477] = { + ["coords"] = { + [1] = { 73.9, 36.7, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1478] = { + ["coords"] = { + [1] = { 73.8, 36.5, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1479] = { + ["coords"] = { + [1] = { 10.2, 56.8, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [1480] = { + ["coords"] = { + [1] = { 11.9, 58.8, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [1481] = { + ["coords"] = { + [1] = { 9.4, 58.8, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [1482] = { + ["coords"] = { + [1] = { 8.3, 55.4, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [1483] = { + ["coords"] = { + [1] = { 9.9, 57.9, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [1484] = { + ["coords"] = { + [1] = { 12, 57.9, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [1485] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "60", + }, + [1487] = { + ["coords"] = { + [1] = { 37.8, 84.3, 10, 300 }, + [2] = { 35, 81.3, 10, 300 }, + [3] = { 38.1, 80.8, 10, 300 }, + [4] = { 37.7, 1.5, 33, 300 }, + }, + ["lvl"] = "30-31", + }, + [1488] = { + ["coords"] = { + [1] = { 38.7, 59.7, 33, 300 }, + [2] = { 39.1, 59.3, 33, 300 }, + [3] = { 39.7, 59.3, 33, 300 }, + [4] = { 40.3, 59.1, 33, 300 }, + [5] = { 40.8, 59.1, 33, 300 }, + [6] = { 39.6, 59, 33, 300 }, + [7] = { 39.3, 58.8, 33, 300 }, + [8] = { 38.6, 58.6, 33, 300 }, + [9] = { 39.5, 58.3, 33, 300 }, + [10] = { 39.2, 58.1, 33, 300 }, + [11] = { 40.7, 58, 33, 300 }, + [12] = { 40.1, 58, 33, 300 }, + [13] = { 39.6, 57.9, 33, 300 }, + [14] = { 39.8, 57.7, 33, 300 }, + [15] = { 38.9, 57.6, 33, 300 }, + [16] = { 39.9, 57.2, 33, 300 }, + [17] = { 41.3, 57, 33, 300 }, + [18] = { 38.7, 56.7, 33, 300 }, + [19] = { 41.7, 56.5, 33, 300 }, + [20] = { 34.4, 52.2, 33, 300 }, + [21] = { 35, 52.1, 33, 300 }, + [22] = { 34.7, 51.9, 33, 300 }, + [23] = { 35.2, 51.8, 33, 300 }, + [24] = { 34.7, 51.8, 33, 300 }, + [25] = { 34.9, 51.7, 33, 300 }, + [26] = { 34.8, 51.4, 33, 300 }, + [27] = { 35.1, 51.1, 33, 300 }, + [28] = { 34.4, 51, 33, 300 }, + [29] = { 35, 50.6, 33, 300 }, + }, + ["lvl"] = "43-44", + }, + [1489] = { + ["coords"] = { + [1] = { 38.7, 59.7, 33, 300 }, + [2] = { 39.1, 59.3, 33, 300 }, + [3] = { 39.7, 59.3, 33, 300 }, + [4] = { 40.3, 59.1, 33, 300 }, + [5] = { 40.8, 59.1, 33, 300 }, + [6] = { 39.6, 59, 33, 300 }, + [7] = { 39.3, 58.8, 33, 300 }, + [8] = { 38.6, 58.6, 33, 300 }, + [9] = { 39.5, 58.3, 33, 300 }, + [10] = { 39.2, 58.1, 33, 300 }, + [11] = { 40.7, 58, 33, 300 }, + [12] = { 40.1, 58, 33, 300 }, + [13] = { 39.6, 57.9, 33, 300 }, + [14] = { 39.8, 57.7, 33, 300 }, + [15] = { 38.9, 57.6, 33, 300 }, + [16] = { 39.9, 57.2, 33, 300 }, + [17] = { 41.3, 57, 33, 300 }, + [18] = { 38.7, 56.7, 33, 300 }, + [19] = { 41.7, 56.5, 33, 300 }, + [20] = { 34.4, 52.2, 33, 300 }, + [21] = { 35, 52.1, 33, 300 }, + [22] = { 34.7, 51.9, 33, 300 }, + [23] = { 35.2, 51.8, 33, 300 }, + [24] = { 34.7, 51.8, 33, 300 }, + [25] = { 34.9, 51.7, 33, 300 }, + [26] = { 34.8, 51.4, 33, 300 }, + [27] = { 35.1, 51.1, 33, 300 }, + [28] = { 34.4, 51, 33, 300 }, + [29] = { 35, 50.6, 33, 300 }, + }, + ["lvl"] = "43-44", + }, + [1490] = { + ["coords"] = { + [1] = { 38.7, 59.7, 33, 300 }, + [2] = { 39.1, 59.3, 33, 300 }, + [3] = { 39.7, 59.3, 33, 300 }, + [4] = { 40.3, 59.1, 33, 300 }, + [5] = { 40.8, 59.1, 33, 300 }, + [6] = { 39.6, 59, 33, 300 }, + [7] = { 39.3, 58.8, 33, 300 }, + [8] = { 38.6, 58.6, 33, 300 }, + [9] = { 39.5, 58.3, 33, 300 }, + [10] = { 39.2, 58.1, 33, 300 }, + [11] = { 40.7, 58, 33, 300 }, + [12] = { 40.1, 58, 33, 300 }, + [13] = { 39.6, 57.9, 33, 300 }, + [14] = { 39.8, 57.7, 33, 300 }, + [15] = { 38.9, 57.6, 33, 300 }, + [16] = { 39.9, 57.2, 33, 300 }, + [17] = { 41.3, 57, 33, 300 }, + [18] = { 38.7, 56.7, 33, 300 }, + [19] = { 41.7, 56.5, 33, 300 }, + [20] = { 34.4, 52.2, 33, 300 }, + [21] = { 35, 52.1, 33, 300 }, + [22] = { 34.7, 51.9, 33, 300 }, + [23] = { 35.2, 51.8, 33, 300 }, + [24] = { 34.7, 51.8, 33, 300 }, + [25] = { 34.9, 51.7, 33, 300 }, + [26] = { 34.8, 51.4, 33, 300 }, + [27] = { 35.1, 51.1, 33, 300 }, + [28] = { 34.4, 51, 33, 300 }, + [29] = { 35, 50.6, 33, 300 }, + }, + ["lvl"] = "44", + }, + [1491] = { + ["coords"] = { + [1] = { 38.7, 59.7, 33, 300 }, + [2] = { 39.1, 59.3, 33, 300 }, + [3] = { 39.7, 59.3, 33, 300 }, + [4] = { 40.3, 59.1, 33, 300 }, + [5] = { 40.8, 59.1, 33, 300 }, + [6] = { 39.6, 59, 33, 300 }, + [7] = { 39.3, 58.8, 33, 300 }, + [8] = { 38.6, 58.6, 33, 300 }, + [9] = { 39.5, 58.3, 33, 300 }, + [10] = { 39.2, 58.1, 33, 300 }, + [11] = { 40.7, 58, 33, 300 }, + [12] = { 40.1, 58, 33, 300 }, + [13] = { 39.6, 57.9, 33, 300 }, + [14] = { 39.8, 57.7, 33, 300 }, + [15] = { 38.9, 57.6, 33, 300 }, + [16] = { 39.9, 57.2, 33, 300 }, + [17] = { 41.3, 57, 33, 300 }, + [18] = { 38.7, 56.7, 33, 300 }, + [19] = { 41.7, 56.5, 33, 300 }, + [20] = { 34.4, 52.2, 33, 300 }, + [21] = { 35, 52.1, 33, 300 }, + [22] = { 34.7, 51.9, 33, 300 }, + [23] = { 35.2, 51.8, 33, 300 }, + [24] = { 34.7, 51.8, 33, 300 }, + [25] = { 34.9, 51.7, 33, 300 }, + [26] = { 34.8, 51.4, 33, 300 }, + [27] = { 35.1, 51.1, 33, 300 }, + [28] = { 34.4, 51, 33, 300 }, + [29] = { 35, 50.6, 33, 300 }, + }, + ["lvl"] = "44", + }, + [1492] = { + ["coords"] = { + [1] = { 37, 69.7, 33, 360 }, + }, + ["lvl"] = "47", + ["rnk"] = "1", + }, + [1493] = { + ["coords"] = { + [1] = { 23.3, 72.1, 33, 1800 }, + }, + ["lvl"] = "50", + ["rnk"] = "1", + }, + [1494] = { + ["coords"] = {}, + ["lvl"] = "52", + ["rnk"] = "1", + }, + [1495] = { + ["coords"] = { + [1] = { 65.5, 60.3, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "22", + }, + [1496] = { + ["coords"] = { + [1] = { 58.2, 51.4, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "22", + }, + [1497] = { + ["coords"] = { + [1] = { 68.2, 41.9, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "53", + }, + [1498] = { + ["coords"] = { + [1] = { 65.7, 68.8, 85, 300 }, + [2] = { 84.1, 17.4, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [1499] = { + ["coords"] = { + [1] = { 61.3, 50.8, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "14", + }, + [1500] = { + ["coords"] = { + [1] = { 61.7, 52.3, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "15", + }, + [1501] = { + ["coords"] = { + [1] = { 33.9, 65.2, 85, 180 }, + [2] = { 34.9, 64.7, 85, 180 }, + [3] = { 33.5, 64.7, 85, 180 }, + [4] = { 33.1, 64.6, 85, 180 }, + [5] = { 34.1, 64.4, 85, 180 }, + [6] = { 32.9, 64.3, 85, 180 }, + [7] = { 32.3, 64.3, 85, 180 }, + [8] = { 33.4, 64.3, 85, 180 }, + [9] = { 34.1, 64.2, 85, 180 }, + [10] = { 34.8, 64.1, 85, 180 }, + [11] = { 30.7, 63.9, 85, 180 }, + [12] = { 31.6, 63.8, 85, 180 }, + [13] = { 33.2, 63.8, 85, 180 }, + [14] = { 33.5, 63.8, 85, 180 }, + [15] = { 31.1, 63.7, 85, 180 }, + [16] = { 32.3, 63.6, 85, 180 }, + [17] = { 32, 63.5, 85, 180 }, + [18] = { 32.4, 63, 85, 180 }, + [19] = { 31.1, 63, 85, 180 }, + [20] = { 32.5, 63, 85, 180 }, + [21] = { 34.9, 62.8, 85, 180 }, + [22] = { 34.6, 62.8, 85, 180 }, + [23] = { 31.6, 62.2, 85, 180 }, + [24] = { 31.5, 62.2, 85, 180 }, + [25] = { 30.9, 62.1, 85, 180 }, + [26] = { 31.5, 62, 85, 180 }, + [27] = { 30.8, 61.8, 85, 180 }, + [28] = { 30.9, 61.5, 85, 180 }, + }, + ["lvl"] = "1", + }, + [1502] = { + ["coords"] = { + [1] = { 33.8, 65.9, 85, 180 }, + [2] = { 34.2, 65.8, 85, 180 }, + [3] = { 33.3, 65.7, 85, 180 }, + [4] = { 33.3, 65.5, 85, 180 }, + [5] = { 33.3, 64.9, 85, 180 }, + [6] = { 33.8, 64.3, 85, 180 }, + [7] = { 33.8, 64.2, 85, 180 }, + [8] = { 34.2, 64.2, 85, 180 }, + [9] = { 32.6, 64.1, 85, 180 }, + [10] = { 33.9, 63.9, 85, 180 }, + [11] = { 34.2, 63.6, 85, 180 }, + [12] = { 32.8, 63.5, 85, 180 }, + [13] = { 30.4, 63.5, 85, 180 }, + [14] = { 31.6, 63.3, 85, 180 }, + [15] = { 34, 63.3, 85, 180 }, + [16] = { 32.2, 63.2, 85, 180 }, + [17] = { 33.5, 63, 85, 180 }, + [18] = { 33.8, 62.8, 85, 180 }, + [19] = { 32.6, 62.8, 85, 180 }, + [20] = { 32, 62.7, 85, 180 }, + [21] = { 31.5, 62.6, 85, 180 }, + [22] = { 32.8, 62.4, 85, 180 }, + [23] = { 31.7, 62.2, 85, 180 }, + [24] = { 32.8, 62.1, 85, 180 }, + [25] = { 32.6, 62.1, 85, 180 }, + [26] = { 31.9, 62, 85, 180 }, + [27] = { 34, 62, 85, 180 }, + [28] = { 31.8, 61.8, 85, 180 }, + [29] = { 33.6, 61.8, 85, 180 }, + [30] = { 31.4, 61.3, 85, 180 }, + [31] = { 32.7, 61.3, 85, 180 }, + [32] = { 33.2, 61.2, 85, 180 }, + [33] = { 31.6, 60.9, 85, 180 }, + [34] = { 32.4, 60.7, 85, 180 }, + [35] = { 32.2, 60.6, 85, 180 }, + }, + ["lvl"] = "1-2", + }, + [1504] = { + ["coords"] = { + [1] = { 27.9, 60.5, 85, 300 }, + [2] = { 28.2, 59.9, 85, 300 }, + [3] = { 27.7, 59.6, 85, 300 }, + [4] = { 28.9, 59.4, 85, 300 }, + [5] = { 29.3, 59.4, 85, 300 }, + [6] = { 28.1, 59.3, 85, 300 }, + [7] = { 27.2, 59.2, 85, 300 }, + [8] = { 28.5, 59, 85, 300 }, + [9] = { 27.5, 58.8, 85, 300 }, + [10] = { 29.7, 58.5, 85, 300 }, + [11] = { 28.4, 58.3, 85, 300 }, + [12] = { 29.1, 58.1, 85, 300 }, + [13] = { 27.4, 58, 85, 300 }, + [14] = { 29.2, 57.7, 85, 300 }, + [15] = { 28.3, 57.4, 85, 300 }, + [16] = { 29.9, 57.4, 85, 300 }, + [17] = { 28.2, 57.1, 85, 300 }, + [18] = { 29, 57.1, 85, 300 }, + [19] = { 27.8, 57, 85, 300 }, + [20] = { 29.8, 57, 85, 300 }, + [21] = { 27.1, 56.6, 85, 300 }, + [22] = { 28.5, 56.5, 85, 300 }, + [23] = { 30.6, 56.5, 85, 300 }, + [24] = { 26.8, 56.2, 85, 300 }, + [25] = { 29.1, 56.1, 85, 300 }, + [26] = { 29.9, 56, 85, 300 }, + [27] = { 27.4, 55.9, 85, 300 }, + [28] = { 28.2, 55.6, 85, 300 }, + [29] = { 29.3, 55.6, 85, 300 }, + [30] = { 27.9, 55.2, 85, 300 }, + }, + ["lvl"] = "2-3", + }, + [1505] = { + ["coords"] = { + [1] = { 24.2, 60.7, 85, 300 }, + [2] = { 24.5, 60.6, 85, 300 }, + [3] = { 24, 60.6, 85, 300 }, + [4] = { 26.1, 60.4, 85, 300 }, + [5] = { 25.1, 60.3, 85, 300 }, + [6] = { 26.2, 60.3, 85, 300 }, + [7] = { 24.8, 60.3, 85, 300 }, + [8] = { 23.5, 60.2, 85, 300 }, + [9] = { 24.6, 60.1, 85, 300 }, + [10] = { 23.3, 59.9, 85, 300 }, + [11] = { 25.4, 59.9, 85, 300 }, + [12] = { 24.5, 59.7, 85, 300 }, + [13] = { 24.8, 59.7, 85, 300 }, + [14] = { 26.2, 59.7, 85, 300 }, + [15] = { 23.2, 59.6, 85, 300 }, + [16] = { 25.2, 59.6, 85, 300 }, + [17] = { 25.9, 59.5, 85, 300 }, + [18] = { 25.6, 59.5, 85, 300 }, + [19] = { 26.6, 59.5, 85, 300 }, + [20] = { 24.8, 59.4, 85, 300 }, + [21] = { 25, 59.2, 85, 300 }, + [22] = { 23.5, 59.1, 85, 300 }, + [23] = { 23.4, 58.9, 85, 300 }, + [24] = { 24, 58.4, 85, 300 }, + [25] = { 23.7, 58.4, 85, 300 }, + [26] = { 23.6, 58.3, 85, 300 }, + }, + ["lvl"] = "3-4", + }, + [1506] = { + ["coords"] = { + [1] = { 37.7, 71.7, 85, 300 }, + [2] = { 37, 70.9, 85, 300 }, + [3] = { 36.8, 69.9, 85, 300 }, + [4] = { 37.9, 69.9, 85, 300 }, + [5] = { 36.5, 69.4, 85, 300 }, + [6] = { 38.7, 69.4, 85, 300 }, + [7] = { 37.9, 69.3, 85, 300 }, + [8] = { 36.1, 68.7, 85, 300 }, + [9] = { 37.6, 68.7, 85, 300 }, + [10] = { 36.7, 68.6, 85, 300 }, + [11] = { 38.1, 68.5, 85, 300 }, + [12] = { 36.5, 68.4, 85, 300 }, + [13] = { 37.2, 68.1, 85, 300 }, + [14] = { 38.3, 67.7, 85, 300 }, + [15] = { 37.6, 67.5, 85, 300 }, + [16] = { 37, 67.3, 85, 300 }, + [17] = { 36.3, 67.2, 85, 300 }, + [18] = { 38.7, 67.1, 85, 300 }, + [19] = { 36.9, 66.5, 85, 300 }, + [20] = { 37.4, 66.4, 85, 300 }, + [21] = { 38.6, 66.2, 85, 300 }, + [22] = { 36.5, 65.7, 85, 300 }, + [23] = { 37.7, 65.4, 85, 300 }, + [24] = { 37, 65.4, 85, 300 }, + [25] = { 38.3, 65.2, 85, 300 }, + [26] = { 36.9, 63, 85, 300 }, + }, + ["lvl"] = "3", + }, + [1507] = { + ["coords"] = { + [1] = { 38.5, 70.3, 85, 300 }, + [2] = { 37.4, 69.6, 85, 300 }, + [3] = { 38.5, 68.3, 85, 300 }, + [4] = { 37.4, 68.1, 85, 300 }, + [5] = { 37.4, 67.8, 85, 300 }, + [6] = { 37.8, 66.6, 85, 300 }, + [7] = { 38.7, 65.1, 85, 300 }, + [8] = { 36.8, 69.9, 85, 300 }, + [9] = { 36.5, 69.4, 85, 300 }, + [10] = { 36.5, 68.4, 85, 300 }, + }, + ["lvl"] = "3-4", + }, + [1508] = { + ["coords"] = { + [1] = { 33.6, 68.6, 85, 180 }, + [2] = { 28.9, 68.2, 85, 180 }, + [3] = { 33.1, 67.4, 85, 180 }, + [4] = { 29.4, 67.2, 85, 180 }, + [5] = { 34.2, 67.1, 85, 180 }, + [6] = { 29.4, 65.7, 85, 180 }, + [7] = { 28.8, 64.7, 85, 180 }, + [8] = { 30.3, 64.1, 85, 180 }, + [9] = { 30.1, 62.9, 85, 180 }, + [10] = { 30.8, 62.1, 85, 180 }, + [11] = { 29.5, 61.9, 85, 180 }, + [12] = { 30.7, 60.8, 85, 180 }, + [13] = { 31.9, 59.6, 85, 180 }, + [14] = { 31.6, 58.6, 85, 180 }, + [15] = { 34.9, 57.9, 85, 180 }, + [16] = { 32, 57.5, 85, 180 }, + [17] = { 34.3, 56.6, 85, 180 }, + [18] = { 31, 55.6, 85, 180 }, + }, + ["lvl"] = "1", + }, + [1509] = { + ["coords"] = { + [1] = { 35.6, 65.8, 85, 300 }, + [2] = { 34.7, 65.4, 85, 300 }, + [3] = { 38.2, 63.9, 85, 300 }, + [4] = { 36.5, 63.6, 85, 300 }, + [5] = { 36.9, 63.5, 85, 300 }, + [6] = { 37.8, 63, 85, 300 }, + [7] = { 34.6, 62.5, 85, 300 }, + [8] = { 35.7, 62.3, 85, 300 }, + [9] = { 36.6, 60.8, 85, 300 }, + [10] = { 37.7, 60.6, 85, 300 }, + [11] = { 35.7, 59.5, 85, 300 }, + [12] = { 34.6, 58.9, 85, 300 }, + [13] = { 37.4, 58.7, 85, 300 }, + [14] = { 35.1, 57.4, 85, 300 }, + [15] = { 35.7, 57.3, 85, 300 }, + [16] = { 36.9, 56.9, 85, 300 }, + [17] = { 34.5, 56.7, 85, 300 }, + [18] = { 35.9, 56, 85, 300 }, + [19] = { 37.6, 56, 85, 300 }, + }, + ["lvl"] = "2-3", + }, + [1511] = { + ["coords"] = {}, + ["lvl"] = "41-42", + }, + [1512] = { + ["coords"] = { + [1] = { 31.5, 72.5, 85, 180 }, + [2] = { 29.4, 72.5, 85, 180 }, + [3] = { 32, 71.6, 85, 180 }, + [4] = { 35.7, 71.4, 85, 180 }, + [5] = { 35.1, 71.4, 85, 180 }, + [6] = { 35.8, 70.8, 85, 180 }, + [7] = { 34.3, 70.7, 85, 180 }, + [8] = { 35.1, 70.4, 85, 180 }, + [9] = { 29.9, 70.3, 85, 180 }, + [10] = { 35, 69.6, 85, 180 }, + [11] = { 32.4, 69.5, 85, 180 }, + [12] = { 34.3, 69.5, 85, 180 }, + [13] = { 30.7, 69.3, 85, 180 }, + [14] = { 35.7, 69.3, 85, 180 }, + [15] = { 29.3, 69.2, 85, 180 }, + [16] = { 28.6, 69.1, 85, 180 }, + [17] = { 34.2, 68.2, 85, 180 }, + [18] = { 29, 67.8, 85, 180 }, + [19] = { 27.9, 67.4, 85, 180 }, + [20] = { 33.5, 66.8, 85, 180 }, + [21] = { 29.1, 66.7, 85, 180 }, + [22] = { 29.9, 66.3, 85, 180 }, + [23] = { 30.1, 65.4, 85, 180 }, + [24] = { 27.9, 64.8, 85, 180 }, + [25] = { 29.7, 64.1, 85, 180 }, + [26] = { 28.3, 63.9, 85, 180 }, + [27] = { 28.3, 63.6, 85, 180 }, + [28] = { 29.8, 63.6, 85, 180 }, + [29] = { 27.8, 63.6, 85, 180 }, + [30] = { 28.4, 62.6, 85, 180 }, + [31] = { 29.7, 62.1, 85, 180 }, + [32] = { 30.1, 61.5, 85, 180 }, + [33] = { 29.5, 61, 85, 180 }, + [34] = { 30.9, 59.7, 85, 180 }, + [35] = { 34, 58.2, 85, 180 }, + [36] = { 32.8, 58.2, 85, 180 }, + [37] = { 31.1, 58, 85, 180 }, + [38] = { 33.8, 57.3, 85, 180 }, + [39] = { 31.5, 56.2, 85, 180 }, + [40] = { 32.5, 56.2, 85, 180 }, + }, + ["lvl"] = "1-2", + }, + [1513] = { + ["coords"] = { + [1] = { 34.9, 66.8, 85, 300 }, + [2] = { 35.1, 66.2, 85, 300 }, + [3] = { 34.1, 65.4, 85, 300 }, + [4] = { 35.3, 64.7, 85, 300 }, + [5] = { 36.9, 64.4, 85, 300 }, + [6] = { 35.4, 63.2, 85, 300 }, + [7] = { 37.8, 62, 85, 300 }, + [8] = { 37.1, 62, 85, 300 }, + [9] = { 33.9, 61.7, 85, 300 }, + [10] = { 35.7, 61.5, 85, 300 }, + [11] = { 34.9, 61.4, 85, 300 }, + [12] = { 37.2, 59.8, 85, 300 }, + [13] = { 34.4, 59.6, 85, 300 }, + [14] = { 37.6, 59.4, 85, 300 }, + [15] = { 35.1, 59, 85, 300 }, + [16] = { 36.5, 58.6, 85, 300 }, + [17] = { 35.7, 58.2, 85, 300 }, + [18] = { 37.7, 58, 85, 300 }, + [19] = { 34.1, 57.3, 85, 300 }, + [20] = { 35.2, 56.7, 85, 300 }, + [21] = { 36.8, 56.5, 85, 300 }, + }, + ["lvl"] = "3-4", + }, + [1514] = { + ["coords"] = { + [1] = { 35.2, 60.4, 33, 0 }, + }, + ["lvl"] = "44", + }, + [1515] = { + ["coords"] = { + [1] = { 60.6, 51.8, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "14", + }, + [1516] = { + ["coords"] = {}, + ["lvl"] = "43", + }, + [1518] = { + ["coords"] = { + [1] = { 59.4, 52.4, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [1519] = { + ["coords"] = { + [1] = { 40.9, 54.2, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "23", + }, + [1520] = { + ["coords"] = { + [1] = { 48.7, 44.2, 85, 300 }, + [2] = { 48.7, 44.1, 85, 300 }, + [3] = { 50.7, 44, 85, 300 }, + [4] = { 46.8, 43.9, 85, 300 }, + [5] = { 49.4, 43.4, 85, 300 }, + [6] = { 46, 43.3, 85, 300 }, + [7] = { 50.1, 43.2, 85, 300 }, + [8] = { 49.3, 42.8, 85, 300 }, + [9] = { 49.3, 42.3, 85, 300 }, + [10] = { 44.6, 41.3, 85, 300 }, + [11] = { 45.8, 40.4, 85, 300 }, + [12] = { 43.9, 39.8, 85, 300 }, + [13] = { 46.1, 39.1, 85, 300 }, + [14] = { 46.1, 38.8, 85, 300 }, + [15] = { 45.4, 38.3, 85, 300 }, + [16] = { 49.1, 38.3, 85, 300 }, + [17] = { 47.7, 37.1, 85, 300 }, + [18] = { 49.5, 36.8, 85, 300 }, + [19] = { 46.1, 36.2, 85, 300 }, + [20] = { 49.1, 36, 85, 300 }, + [21] = { 46.1, 34.3, 85, 300 }, + }, + ["lvl"] = "6-7", + }, + [1521] = { + ["coords"] = { + [1] = { 61.9, 52.7, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "8", + }, + [1522] = { + ["coords"] = { + [1] = { 50.2, 43, 85, 300 }, + [2] = { 45.3, 42.9, 85, 300 }, + [3] = { 47.6, 42.8, 85, 300 }, + [4] = { 48.9, 42.8, 85, 300 }, + [5] = { 47, 42, 85, 300 }, + [6] = { 48.3, 41.7, 85, 300 }, + [7] = { 45.4, 41.5, 85, 300 }, + [8] = { 47.4, 40.7, 85, 300 }, + [9] = { 45.4, 40.5, 85, 300 }, + [10] = { 44.6, 40.5, 85, 300 }, + [11] = { 46.8, 39.9, 85, 300 }, + [12] = { 45.4, 39.6, 85, 300 }, + [13] = { 48.3, 39.4, 85, 300 }, + [14] = { 47.4, 38.3, 85, 300 }, + [15] = { 44.4, 38.3, 85, 300 }, + [16] = { 44.4, 37.6, 85, 300 }, + [17] = { 46.7, 37.5, 85, 300 }, + [18] = { 48.3, 37.5, 85, 300 }, + [19] = { 45.1, 37.5, 85, 300 }, + [20] = { 47.7, 37.5, 85, 300 }, + [21] = { 49.9, 36.8, 85, 300 }, + [22] = { 49.2, 36.2, 85, 300 }, + [23] = { 49.8, 36.2, 85, 300 }, + [24] = { 47.5, 36.1, 85, 300 }, + [25] = { 49.6, 36, 85, 300 }, + [26] = { 44.9, 36, 85, 300 }, + [27] = { 49, 35.3, 85, 300 }, + [28] = { 42.7, 35.1, 85, 300 }, + [29] = { 43.9, 35, 85, 300 }, + [30] = { 46.9, 34.9, 85, 300 }, + [31] = { 45.3, 34.9, 85, 300 }, + [32] = { 42.7, 34.3, 85, 300 }, + [33] = { 49, 34.1, 85, 300 }, + [34] = { 48.7, 34.1, 85, 300 }, + [35] = { 47.9, 34.1, 85, 300 }, + [36] = { 51, 34, 85, 300 }, + [37] = { 49.2, 33.8, 85, 300 }, + [38] = { 42.4, 33.6, 85, 300 }, + [39] = { 49.2, 33.5, 85, 300 }, + [40] = { 46.9, 33.4, 85, 300 }, + [41] = { 43.3, 32.5, 85, 300 }, + [42] = { 45.3, 32.4, 85, 300 }, + [43] = { 47.1, 32.4, 85, 300 }, + [44] = { 42.7, 32.3, 85, 300 }, + [45] = { 46.6, 32, 85, 300 }, + [46] = { 46.2, 31.7, 85, 300 }, + [47] = { 50.4, 31.5, 85, 300 }, + [48] = { 47.7, 31.2, 85, 300 }, + [49] = { 47.7, 30.7, 85, 300 }, + [50] = { 43.9, 30.5, 85, 300 }, + [51] = { 45.6, 30.4, 85, 300 }, + [52] = { 48.2, 30.4, 85, 300 }, + [53] = { 47.3, 30.2, 85, 300 }, + [54] = { 46.2, 29.4, 85, 300 }, + [55] = { 47.7, 29.2, 85, 300 }, + [56] = { 43.6, 28.6, 85, 300 }, + [57] = { 49.2, 27.9, 85, 300 }, + }, + ["lvl"] = "7-8", + }, + [1523] = { + ["coords"] = { + [1] = { 43.7, 35.4, 85, 300 }, + [2] = { 49.6, 34.9, 85, 300 }, + [3] = { 48.3, 34.9, 85, 300 }, + [4] = { 45, 34.6, 85, 300 }, + [5] = { 47.6, 34.4, 85, 300 }, + [6] = { 44.7, 33.8, 85, 300 }, + [7] = { 48.9, 33.7, 85, 300 }, + [8] = { 46.1, 33.5, 85, 300 }, + [9] = { 49.2, 33.3, 85, 300 }, + [10] = { 51.3, 33.2, 85, 300 }, + [11] = { 48.2, 32.9, 85, 300 }, + [12] = { 49.5, 32.9, 85, 300 }, + [13] = { 48.4, 32.8, 85, 300 }, + [14] = { 43.9, 32.8, 85, 300 }, + [15] = { 49.1, 31.6, 85, 300 }, + [16] = { 44.8, 31.5, 85, 300 }, + [17] = { 43.3, 31.3, 85, 300 }, + [18] = { 46, 30.2, 85, 300 }, + [19] = { 47, 30.2, 85, 300 }, + [20] = { 44.8, 29.3, 85, 300 }, + [21] = { 48.8, 29.1, 85, 300 }, + [22] = { 45.4, 28.5, 85, 300 }, + [23] = { 47.1, 28, 85, 300 }, + [24] = { 48.3, 27.9, 85, 300 }, + }, + ["lvl"] = "8-9", + }, + [1525] = { + ["coords"] = { + [1] = { 53.6, 60.6, 85, 300 }, + [2] = { 52.1, 59.7, 85, 300 }, + [3] = { 54.4, 59.6, 85, 300 }, + [4] = { 52.7, 59.4, 85, 300 }, + [5] = { 52, 59.3, 85, 300 }, + [6] = { 54.8, 59.2, 85, 300 }, + [7] = { 52, 58.3, 85, 300 }, + [8] = { 53.6, 58.3, 85, 300 }, + [9] = { 51.9, 58.1, 85, 300 }, + [10] = { 51.6, 57.7, 85, 300 }, + [11] = { 53.7, 57.6, 85, 300 }, + [12] = { 55, 57.3, 85, 300 }, + [13] = { 55.8, 57.1, 85, 300 }, + [14] = { 52.7, 57.1, 85, 300 }, + [15] = { 53.4, 57, 85, 300 }, + [16] = { 54.4, 56.9, 85, 300 }, + [17] = { 52.2, 56.5, 85, 300 }, + [18] = { 53, 56.4, 85, 300 }, + [19] = { 53.4, 56.2, 85, 300 }, + [20] = { 49.8, 56, 85, 300 }, + [21] = { 54.2, 56, 85, 300 }, + [22] = { 54, 56, 85, 300 }, + [23] = { 53.6, 55.9, 85, 300 }, + [24] = { 49.1, 55.5, 85, 300 }, + [25] = { 49.3, 55.2, 85, 300 }, + [26] = { 53.2, 54.2, 85, 300 }, + [27] = { 50.6, 54.2, 85, 300 }, + [28] = { 54.7, 54.2, 85, 300 }, + [29] = { 53.3, 54.1, 85, 300 }, + [30] = { 54.5, 54.1, 85, 300 }, + [31] = { 53.5, 54.1, 85, 300 }, + [32] = { 52.9, 54, 85, 300 }, + [33] = { 51.3, 53.8, 85, 300 }, + [34] = { 51.9, 53.8, 85, 300 }, + [35] = { 49.8, 53.8, 85, 300 }, + [36] = { 53, 53.5, 85, 300 }, + [37] = { 52.9, 52.8, 85, 300 }, + [38] = { 51.4, 52.8, 85, 300 }, + [39] = { 52.2, 52.3, 85, 300 }, + [40] = { 52.2, 52.2, 85, 300 }, + [41] = { 53, 51.7, 85, 300 }, + [42] = { 51.3, 51.6, 85, 300 }, + [43] = { 54.2, 51.6, 85, 300 }, + [44] = { 55.4, 51.4, 85, 300 }, + [45] = { 54.1, 51.3, 85, 300 }, + [46] = { 54.9, 50.5, 85, 300 }, + [47] = { 52.6, 50.5, 85, 300 }, + [48] = { 52.1, 50.4, 85, 300 }, + [49] = { 54.5, 50.3, 85, 300 }, + [50] = { 53.3, 50.2, 85, 300 }, + [51] = { 54.4, 50.1, 85, 300 }, + [52] = { 56.1, 49.9, 85, 300 }, + [53] = { 54.6, 49.6, 85, 300 }, + [54] = { 52.8, 49.3, 85, 300 }, + [55] = { 55.5, 48.8, 85, 300 }, + [56] = { 52.1, 48.7, 85, 300 }, + [57] = { 53.6, 48.6, 85, 300 }, + [58] = { 54.2, 48.5, 85, 300 }, + [59] = { 52.7, 48.1, 85, 300 }, + [60] = { 55.2, 48.1, 85, 300 }, + [61] = { 56.1, 47.6, 85, 300 }, + [62] = { 51.9, 47.4, 85, 300 }, + [63] = { 53.6, 47.4, 85, 300 }, + [64] = { 52.7, 47.3, 85, 300 }, + [65] = { 56.4, 46.4, 85, 300 }, + [66] = { 52.1, 46.4, 85, 300 }, + [67] = { 53.5, 46.3, 85, 300 }, + [68] = { 52.7, 45.9, 85, 300 }, + [69] = { 52, 45.4, 85, 300 }, + [70] = { 53.9, 45, 85, 300 }, + }, + ["lvl"] = "5-6", + }, + [1526] = { + ["coords"] = { + [1] = { 53.6, 60.6, 85, 300 }, + [2] = { 52.1, 59.7, 85, 300 }, + [3] = { 54.4, 59.6, 85, 300 }, + [4] = { 52.7, 59.4, 85, 300 }, + [5] = { 52, 59.3, 85, 300 }, + [6] = { 54.8, 59.2, 85, 300 }, + [7] = { 52, 58.3, 85, 300 }, + [8] = { 53.6, 58.3, 85, 300 }, + [9] = { 51.9, 58.1, 85, 300 }, + [10] = { 51.6, 57.7, 85, 300 }, + [11] = { 53.7, 57.6, 85, 300 }, + [12] = { 55, 57.3, 85, 300 }, + [13] = { 55.8, 57.1, 85, 300 }, + [14] = { 52.7, 57.1, 85, 300 }, + [15] = { 53.4, 57, 85, 300 }, + [16] = { 54.4, 56.9, 85, 300 }, + [17] = { 52.2, 56.5, 85, 300 }, + [18] = { 53, 56.4, 85, 300 }, + [19] = { 53.4, 56.2, 85, 300 }, + [20] = { 49.8, 56, 85, 300 }, + [21] = { 54.2, 56, 85, 300 }, + [22] = { 54, 56, 85, 300 }, + [23] = { 53.6, 55.9, 85, 300 }, + [24] = { 49.1, 55.5, 85, 300 }, + [25] = { 49.3, 55.2, 85, 300 }, + [26] = { 53.2, 54.2, 85, 300 }, + [27] = { 50.6, 54.2, 85, 300 }, + [28] = { 54.7, 54.2, 85, 300 }, + [29] = { 53.3, 54.1, 85, 300 }, + [30] = { 54.5, 54.1, 85, 300 }, + [31] = { 53.5, 54.1, 85, 300 }, + [32] = { 52.9, 54, 85, 300 }, + [33] = { 51.3, 53.8, 85, 300 }, + [34] = { 51.9, 53.8, 85, 300 }, + [35] = { 49.8, 53.8, 85, 300 }, + [36] = { 53, 53.5, 85, 300 }, + [37] = { 52.9, 52.8, 85, 300 }, + [38] = { 51.4, 52.8, 85, 300 }, + [39] = { 52.2, 52.3, 85, 300 }, + [40] = { 52.2, 52.2, 85, 300 }, + [41] = { 53, 51.7, 85, 300 }, + [42] = { 51.3, 51.6, 85, 300 }, + [43] = { 54.2, 51.6, 85, 300 }, + [44] = { 55.4, 51.4, 85, 300 }, + [45] = { 54.1, 51.3, 85, 300 }, + [46] = { 54.9, 50.5, 85, 300 }, + [47] = { 52.6, 50.5, 85, 300 }, + [48] = { 52.1, 50.4, 85, 300 }, + [49] = { 54.5, 50.3, 85, 300 }, + [50] = { 53.3, 50.2, 85, 300 }, + [51] = { 54.4, 50.1, 85, 300 }, + [52] = { 56.1, 49.9, 85, 300 }, + [53] = { 54.6, 49.6, 85, 300 }, + [54] = { 52.8, 49.3, 85, 300 }, + [55] = { 55.5, 48.8, 85, 300 }, + [56] = { 52.1, 48.7, 85, 300 }, + [57] = { 53.6, 48.6, 85, 300 }, + [58] = { 54.2, 48.5, 85, 300 }, + [59] = { 52.7, 48.1, 85, 300 }, + [60] = { 55.2, 48.1, 85, 300 }, + [61] = { 56.1, 47.6, 85, 300 }, + [62] = { 51.9, 47.4, 85, 300 }, + [63] = { 53.6, 47.4, 85, 300 }, + [64] = { 52.7, 47.3, 85, 300 }, + [65] = { 56.4, 46.4, 85, 300 }, + [66] = { 52.1, 46.4, 85, 300 }, + [67] = { 53.5, 46.3, 85, 300 }, + [68] = { 52.7, 45.9, 85, 300 }, + [69] = { 52, 45.4, 85, 300 }, + [70] = { 53.9, 45, 85, 300 }, + }, + ["lvl"] = "6-7", + }, + [1527] = { + ["coords"] = { + [1] = { 66.7, 45.1, 85, 300 }, + [2] = { 66.7, 44.8, 85, 300 }, + [3] = { 68, 44, 85, 300 }, + [4] = { 67.5, 43.7, 85, 300 }, + [5] = { 68.7, 43.6, 85, 300 }, + [6] = { 68.1, 43.5, 85, 300 }, + [7] = { 67.6, 43, 85, 300 }, + [8] = { 68.1, 42.5, 85, 300 }, + [9] = { 67.6, 42.5, 85, 300 }, + [10] = { 67.3, 42.3, 85, 300 }, + [11] = { 67.8, 42.2, 85, 300 }, + [12] = { 69.5, 41.8, 85, 300 }, + [13] = { 68.4, 41.5, 85, 300 }, + [14] = { 69.7, 41.1, 85, 300 }, + }, + ["lvl"] = "7-8", + }, + [1528] = { + ["coords"] = { + [1] = { 66.7, 45.1, 85, 300 }, + [2] = { 66.7, 44.8, 85, 300 }, + [3] = { 68, 44, 85, 300 }, + [4] = { 67.5, 43.7, 85, 300 }, + [5] = { 68.7, 43.6, 85, 300 }, + [6] = { 68.1, 43.5, 85, 300 }, + [7] = { 67.6, 43, 85, 300 }, + [8] = { 68.1, 42.5, 85, 300 }, + [9] = { 67.6, 42.5, 85, 300 }, + [10] = { 67.3, 42.3, 85, 300 }, + [11] = { 67.8, 42.2, 85, 300 }, + [12] = { 69.5, 41.8, 85, 300 }, + [13] = { 68.4, 41.5, 85, 300 }, + [14] = { 69.7, 41.1, 85, 300 }, + }, + ["lvl"] = "8-9", + }, + [1529] = { + ["coords"] = { + [1] = { 19.9, 49.5, 28, 300 }, + [2] = { 19.2, 49.4, 28, 300 }, + [3] = { 19.5, 48.2, 28, 300 }, + [4] = { 20.1, 48, 28, 300 }, + [5] = { 21.7, 47.1, 28, 300 }, + [6] = { 74.2, 62.8, 85, 300 }, + [7] = { 76.8, 62.8, 85, 300 }, + [8] = { 76.2, 62.7, 85, 300 }, + [9] = { 75, 61.8, 85, 300 }, + [10] = { 76.5, 61.5, 85, 300 }, + [11] = { 77, 61.3, 85, 300 }, + [12] = { 76.1, 61.1, 85, 300 }, + [13] = { 78.6, 60.5, 85, 300 }, + [14] = { 76.7, 60.1, 85, 300 }, + [15] = { 76.5, 59.6, 85, 300 }, + [16] = { 75.6, 59.6, 85, 300 }, + [17] = { 74.6, 59.5, 85, 300 }, + [18] = { 77.8, 59.5, 85, 300 }, + }, + ["lvl"] = "9-10", + }, + [1530] = { + ["coords"] = { + [1] = { 51.6, 33.4, 85, 300 }, + [2] = { 52.1, 32.9, 85, 300 }, + [3] = { 48.6, 32, 85, 300 }, + [4] = { 51.3, 31.5, 85, 300 }, + [5] = { 54.7, 31.3, 85, 300 }, + [6] = { 53.3, 31, 85, 300 }, + [7] = { 52, 30.6, 85, 300 }, + [8] = { 53.4, 30.4, 85, 300 }, + [9] = { 49.8, 30.3, 85, 300 }, + [10] = { 54.2, 29.2, 85, 300 }, + [11] = { 50.6, 29.1, 85, 300 }, + [12] = { 49.7, 28.6, 85, 300 }, + [13] = { 51.3, 28.1, 85, 300 }, + [14] = { 51.8, 27, 85, 300 }, + [15] = { 52.6, 27, 85, 300 }, + [16] = { 52.6, 26.9, 85, 300 }, + [17] = { 52.3, 26.9, 85, 300 }, + [18] = { 52.7, 26.9, 85, 300 }, + [19] = { 52, 26.8, 85, 300 }, + [20] = { 52.4, 26.4, 85, 300 }, + [21] = { 52.3, 26.3, 85, 300 }, + [22] = { 52.7, 26.1, 85, 300 }, + [23] = { 51.9, 25.8, 85, 300 }, + }, + ["lvl"] = "10-11", + }, + [1531] = { + ["coords"] = { + [1] = { 44.6, 40.5, 85, 3600 }, + }, + ["lvl"] = "6-7", + ["rnk"] = "4", + }, + [1532] = { + ["coords"] = { + [1] = { 20, 48.6, 28, 300 }, + [2] = { 19.9, 48.3, 28, 300 }, + [3] = { 20.9, 47.9, 28, 300 }, + [4] = { 76.9, 61.9, 85, 300 }, + [5] = { 76.8, 61.5, 85, 300 }, + [6] = { 75.6, 61.5, 85, 300 }, + [7] = { 74.2, 61.5, 85, 300 }, + [8] = { 77.8, 61.2, 85, 300 }, + [9] = { 75, 60.5, 85, 300 }, + [10] = { 76.5, 60.5, 85, 300 }, + [11] = { 78.5, 59.4, 85, 300 }, + [12] = { 75.1, 59.1, 85, 300 }, + [13] = { 76.5, 58.7, 85, 300 }, + [14] = { 77.4, 58.7, 85, 300 }, + [15] = { 75.2, 58.2, 85, 300 }, + }, + ["lvl"] = "10-11", + }, + [1533] = { + ["coords"] = { + [1] = { 45.6, 31.6, 85, 3600 }, + }, + ["lvl"] = "8-9", + ["rnk"] = "4", + }, + [1534] = { + ["coords"] = { + [1] = { 51.9, 31.5, 85, 300 }, + [2] = { 51, 30.5, 85, 300 }, + [3] = { 55.2, 30, 85, 300 }, + [4] = { 54, 29.8, 85, 300 }, + [5] = { 54.7, 29.5, 85, 300 }, + [6] = { 52.7, 29.3, 85, 300 }, + [7] = { 51.4, 29.3, 85, 300 }, + [8] = { 51.9, 28.8, 85, 300 }, + [9] = { 53.5, 28, 85, 300 }, + [10] = { 52.3, 27.5, 85, 300 }, + [11] = { 52.9, 27, 85, 300 }, + [12] = { 52, 26.7, 85, 300 }, + [13] = { 52.6, 26.7, 85, 300 }, + [14] = { 52.1, 26.3, 85, 300 }, + [15] = { 51.8, 26, 85, 300 }, + [16] = { 52, 25.6, 85, 300 }, + }, + ["lvl"] = "9-10", + }, + [1535] = { + ["coords"] = { + [1] = { 34.1, 51.4, 85, 300 }, + [2] = { 30.5, 51.3, 85, 300 }, + [3] = { 32.6, 51.2, 85, 300 }, + [4] = { 31.8, 51.1, 85, 300 }, + [5] = { 32.8, 50.4, 85, 300 }, + [6] = { 31.4, 50.4, 85, 300 }, + [7] = { 29.9, 50, 85, 300 }, + [8] = { 29.7, 49.5, 85, 300 }, + [9] = { 34.5, 49.4, 85, 300 }, + [10] = { 32.1, 49.3, 85, 300 }, + [11] = { 33.6, 49.2, 85, 300 }, + [12] = { 30.4, 49.1, 85, 300 }, + [13] = { 31.3, 48.4, 85, 300 }, + [14] = { 33.6, 48.4, 85, 300 }, + [15] = { 32.8, 48.3, 85, 300 }, + [16] = { 36.9, 48.2, 85, 300 }, + [17] = { 34.3, 47.9, 85, 300 }, + [18] = { 37.4, 47.7, 85, 300 }, + [19] = { 30.6, 47.6, 85, 300 }, + [20] = { 36.2, 47.5, 85, 300 }, + [21] = { 32.1, 47.4, 85, 300 }, + [22] = { 33.5, 47.4, 85, 300 }, + [23] = { 32.2, 46.7, 85, 300 }, + [24] = { 33, 46.6, 85, 300 }, + [25] = { 30.9, 46.6, 85, 300 }, + [26] = { 31.8, 46.5, 85, 300 }, + [27] = { 31.7, 46.4, 85, 300 }, + [28] = { 31.7, 46.3, 85, 300 }, + [29] = { 31.7, 46.2, 85, 300 }, + [30] = { 30.7, 46.2, 85, 300 }, + [31] = { 31.9, 46, 85, 300 }, + [32] = { 32, 45.9, 85, 300 }, + [33] = { 31.7, 45.9, 85, 300 }, + [34] = { 33.6, 45.3, 85, 300 }, + [35] = { 32.2, 45, 85, 300 }, + }, + ["lvl"] = "6-7", + }, + [1536] = { + ["coords"] = { + [1] = { 51.1, 69.5, 85, 300 }, + [2] = { 52, 69.5, 85, 300 }, + [3] = { 54.2, 69.3, 85, 300 }, + [4] = { 52.9, 69, 85, 300 }, + [5] = { 50.1, 68.7, 85, 300 }, + [6] = { 52.2, 68.6, 85, 300 }, + [7] = { 53.5, 68.2, 85, 300 }, + [8] = { 50.6, 68, 85, 300 }, + [9] = { 50.5, 67.7, 85, 300 }, + [10] = { 52.7, 67.6, 85, 300 }, + [11] = { 51.2, 67.6, 85, 300 }, + [12] = { 51.5, 67.6, 85, 300 }, + [13] = { 52.1, 67.1, 85, 300 }, + [14] = { 52.7, 67.1, 85, 300 }, + [15] = { 50.2, 67, 85, 300 }, + [16] = { 53.8, 66.8, 85, 300 }, + [17] = { 48.8, 66.8, 85, 300 }, + [18] = { 51.7, 66.7, 85, 300 }, + [19] = { 48.2, 66.4, 85, 300 }, + [20] = { 48.8, 66.2, 85, 300 }, + [21] = { 51.8, 66.1, 85, 300 }, + [22] = { 53.6, 66, 85, 300 }, + [23] = { 47.6, 66, 85, 300 }, + [24] = { 51.1, 65.6, 85, 300 }, + [25] = { 43.2, 65.2, 85, 300 }, + [26] = { 44.5, 65, 85, 300 }, + [27] = { 50.5, 64.7, 85, 300 }, + [28] = { 46.7, 64, 85, 300 }, + }, + ["lvl"] = "7-8", + }, + [1537] = { + ["coords"] = { + [1] = { 31.5, 29.7, 28, 300 }, + [2] = { 31.1, 29.2, 28, 300 }, + [3] = { 30.7, 29, 28, 300 }, + [4] = { 31, 28.7, 28, 300 }, + [5] = { 31.9, 28.3, 28, 300 }, + [6] = { 30.7, 28.1, 28, 300 }, + [7] = { 30.4, 28, 28, 300 }, + [8] = { 29.6, 27.5, 28, 300 }, + [9] = { 30.9, 27.4, 28, 300 }, + [10] = { 30.6, 27.2, 28, 300 }, + [11] = { 80.3, 57.1, 85, 300 }, + [12] = { 81, 56.9, 85, 300 }, + [13] = { 77.2, 56.8, 85, 300 }, + [14] = { 79.9, 56.4, 85, 300 }, + [15] = { 76.9, 56.2, 85, 300 }, + [16] = { 78.4, 56, 85, 300 }, + [17] = { 79.7, 55.9, 85, 300 }, + [18] = { 81, 55.4, 85, 300 }, + [19] = { 76.2, 55.2, 85, 300 }, + [20] = { 79.6, 55.2, 85, 300 }, + [21] = { 77.1, 55.1, 85, 300 }, + [22] = { 81.7, 54.8, 85, 300 }, + [23] = { 76.6, 54.8, 85, 300 }, + [24] = { 87.8, 43.9, 85, 300 }, + [25] = { 85.8, 43.5, 85, 300 }, + [26] = { 87.5, 43.4, 85, 300 }, + [27] = { 86.8, 43.4, 85, 300 }, + [28] = { 87.1, 43.2, 85, 300 }, + [29] = { 87.4, 42.9, 85, 300 }, + [30] = { 85.3, 42.7, 85, 300 }, + [31] = { 88.2, 42.6, 85, 300 }, + [32] = { 87.1, 42.4, 85, 300 }, + [33] = { 86.8, 42.3, 85, 300 }, + [34] = { 86.1, 41.8, 85, 300 }, + [35] = { 87.4, 41.7, 85, 300 }, + [36] = { 87, 41.5, 85, 300 }, + [37] = { 51.1, 69.5, 85, 300 }, + [38] = { 52, 69.5, 85, 300 }, + [39] = { 54.2, 69.3, 85, 300 }, + [40] = { 52.9, 69, 85, 300 }, + [41] = { 50.1, 68.7, 85, 300 }, + [42] = { 52.2, 68.6, 85, 300 }, + [43] = { 53.5, 68.2, 85, 300 }, + [44] = { 50.6, 68, 85, 300 }, + [45] = { 50.5, 67.7, 85, 300 }, + [46] = { 52.7, 67.6, 85, 300 }, + [47] = { 51.2, 67.6, 85, 300 }, + [48] = { 51.5, 67.6, 85, 300 }, + [49] = { 52.1, 67.1, 85, 300 }, + [50] = { 52.7, 67.1, 85, 300 }, + [51] = { 50.2, 67, 85, 300 }, + [52] = { 53.8, 66.8, 85, 300 }, + [53] = { 48.8, 66.8, 85, 300 }, + [54] = { 51.7, 66.7, 85, 300 }, + [55] = { 48.2, 66.4, 85, 300 }, + [56] = { 48.8, 66.2, 85, 300 }, + [57] = { 51.8, 66.1, 85, 300 }, + [58] = { 53.6, 66, 85, 300 }, + [59] = { 47.6, 66, 85, 300 }, + [60] = { 51.1, 65.6, 85, 300 }, + [61] = { 43.2, 65.2, 85, 300 }, + [62] = { 44.5, 65, 85, 300 }, + [63] = { 50.5, 64.7, 85, 300 }, + [64] = { 46.7, 64, 85, 300 }, + }, + ["lvl"] = "8-9", + }, + [1538] = { + ["coords"] = { + [1] = { 30.6, 29.6, 28, 300 }, + [2] = { 30.7, 29.2, 28, 300 }, + [3] = { 30.7, 28.5, 28, 300 }, + [4] = { 30.5, 28, 28, 300 }, + [5] = { 81, 57.3, 85, 300 }, + [6] = { 76.1, 57.2, 85, 300 }, + [7] = { 81.1, 56.9, 85, 300 }, + [8] = { 78.3, 56.3, 85, 300 }, + [9] = { 79.4, 56.2, 85, 300 }, + [10] = { 78.9, 56.2, 85, 300 }, + [11] = { 78.5, 56, 85, 300 }, + [12] = { 79.4, 55.5, 85, 300 }, + [13] = { 78.6, 55.4, 85, 300 }, + [14] = { 80.6, 55.1, 85, 300 }, + [15] = { 77.1, 54.9, 85, 300 }, + [16] = { 81.6, 53.1, 85, 300 }, + [17] = { 86.6, 44.9, 85, 300 }, + [18] = { 87, 43.8, 85, 300 }, + [19] = { 87.1, 43.5, 85, 300 }, + [20] = { 86.8, 43.1, 85, 300 }, + [21] = { 87.2, 42.7, 85, 300 }, + [22] = { 86.9, 42.3, 85, 300 }, + [23] = { 78.9, 36.1, 85, 300 }, + [24] = { 79, 31.2, 85, 300 }, + [25] = { 79.3, 26.1, 85, 300 }, + [26] = { 79.5, 26, 85, 300 }, + [27] = { 79.3, 24.6, 85, 300 }, + }, + ["lvl"] = "9-10", + }, + [1539] = { + ["coords"] = { + [1] = { 78.5, 32.5, 85, 300 }, + [2] = { 79, 28.5, 85, 300 }, + [3] = { 79.1, 27.1, 85, 300 }, + [4] = { 79, 25.6, 85, 300 }, + [5] = { 79.7, 24.7, 85, 300 }, + }, + ["lvl"] = "10-11", + }, + [1540] = { + ["coords"] = { + [1] = { 78.7, 36.1, 85, 300 }, + [2] = { 77.9, 35.4, 85, 300 }, + [3] = { 77.6, 34.7, 85, 300 }, + [4] = { 78.4, 32.8, 85, 300 }, + [5] = { 77.6, 32.8, 85, 300 }, + [6] = { 78.1, 32.1, 85, 300 }, + [7] = { 79.4, 29.7, 85, 300 }, + [8] = { 79.6, 26.1, 85, 300 }, + [9] = { 79.3, 24.4, 85, 300 }, + }, + ["lvl"] = "10-11", + }, + [1541] = { + ["coords"] = {}, + ["lvl"] = "8-9", + }, + [1543] = { + ["coords"] = { + [1] = { 30.3, 45.6, 85, 300 }, + [2] = { 29.4, 45.1, 85, 300 }, + [3] = { 30.6, 45, 85, 300 }, + [4] = { 29.6, 45, 85, 300 }, + [5] = { 34.9, 44.7, 85, 300 }, + [6] = { 30.1, 44.6, 85, 300 }, + [7] = { 30.7, 44.6, 85, 300 }, + [8] = { 34.4, 44.3, 85, 300 }, + [9] = { 30.1, 43.6, 85, 300 }, + [10] = { 30.5, 43.3, 85, 300 }, + [11] = { 36.1, 43, 85, 300 }, + [12] = { 35.9, 43, 85, 300 }, + [13] = { 35.6, 42.2, 85, 300 }, + [14] = { 37, 41.9, 85, 300 }, + [15] = { 34.6, 41.3, 85, 300 }, + [16] = { 34.7, 40.9, 85, 300 }, + [17] = { 36.2, 39.2, 85, 300 }, + [18] = { 62.6, 30.7, 85, 300 }, + [19] = { 61.6, 29.4, 85, 300 }, + [20] = { 59.7, 28.9, 85, 300 }, + [21] = { 58.6, 28.8, 85, 300 }, + [22] = { 58.5, 28.8, 85, 300 }, + [23] = { 60.8, 28.4, 85, 300 }, + [24] = { 57.7, 28.3, 85, 300 }, + [25] = { 58.6, 28.1, 85, 300 }, + [26] = { 63.2, 27.9, 85, 300 }, + [27] = { 61.7, 27.9, 85, 300 }, + [28] = { 63.1, 27.5, 85, 300 }, + [29] = { 60.7, 27.2, 85, 300 }, + [30] = { 58.9, 27.1, 85, 300 }, + [31] = { 61.8, 26.9, 85, 300 }, + [32] = { 58.6, 26.9, 85, 300 }, + [33] = { 58.1, 26.5, 85, 300 }, + [34] = { 57.7, 26.1, 85, 300 }, + }, + ["lvl"] = "7-8", + }, + [1544] = { + ["coords"] = { + [1] = { 26.1, 47.3, 85, 300 }, + [2] = { 26.2, 46.3, 85, 300 }, + [3] = { 29.2, 45.8, 85, 300 }, + [4] = { 36.8, 45.1, 85, 300 }, + [5] = { 30.8, 44.9, 85, 300 }, + [6] = { 29.8, 44.8, 85, 300 }, + [7] = { 36.4, 44.6, 85, 300 }, + [8] = { 35.6, 44.3, 85, 300 }, + [9] = { 31.4, 43.7, 85, 300 }, + [10] = { 30.7, 43.6, 85, 300 }, + [11] = { 34.6, 43.5, 85, 300 }, + [12] = { 35.8, 43.5, 85, 300 }, + [13] = { 30.5, 43.4, 85, 300 }, + [14] = { 35.6, 43.3, 85, 300 }, + [15] = { 30.7, 43.2, 85, 300 }, + [16] = { 31.1, 43.2, 85, 300 }, + [17] = { 36, 42.9, 85, 300 }, + [18] = { 33.7, 42.8, 85, 300 }, + [19] = { 36.7, 42, 85, 300 }, + [20] = { 34.5, 41.6, 85, 300 }, + [21] = { 34.7, 40.8, 85, 300 }, + [22] = { 37, 40.8, 85, 300 }, + [23] = { 35, 40.8, 85, 300 }, + [24] = { 36.4, 40.6, 85, 300 }, + [25] = { 35.8, 39.5, 85, 300 }, + [26] = { 36.5, 35.9, 85, 300 }, + [27] = { 64, 30.6, 85, 300 }, + [28] = { 61.3, 30, 85, 300 }, + [29] = { 64.5, 29.8, 85, 300 }, + [30] = { 64.9, 29.7, 85, 300 }, + [31] = { 63.1, 29.5, 85, 300 }, + [32] = { 59.4, 29.1, 85, 300 }, + [33] = { 59.8, 28.9, 85, 300 }, + [34] = { 62.9, 28.8, 85, 300 }, + [35] = { 64, 28.7, 85, 300 }, + [36] = { 60.1, 28.4, 85, 300 }, + [37] = { 59.4, 28.3, 85, 300 }, + [38] = { 62.3, 28.3, 85, 300 }, + [39] = { 62.8, 28.3, 85, 300 }, + [40] = { 61.7, 28.2, 85, 300 }, + [41] = { 58.3, 28.1, 85, 300 }, + [42] = { 63.4, 27.8, 85, 300 }, + [43] = { 58.4, 27.6, 85, 300 }, + [44] = { 60.9, 27.6, 85, 300 }, + [45] = { 60.1, 27.3, 85, 300 }, + [46] = { 60.9, 27.2, 85, 300 }, + [47] = { 58.9, 27.1, 85, 300 }, + [48] = { 75.1, 26.9, 85, 300 }, + [49] = { 75.1, 26.5, 85, 300 }, + [50] = { 57.9, 26.3, 85, 300 }, + [51] = { 67.5, 25.8, 85, 300 }, + [52] = { 70.5, 25.7, 85, 300 }, + [53] = { 67.9, 25.4, 85, 300 }, + [54] = { 70.5, 25.3, 85, 300 }, + [55] = { 67.3, 24.9, 85, 300 }, + [56] = { 67.4, 24.5, 85, 300 }, + [57] = { 61.6, 29.4, 85, 300 }, + }, + ["lvl"] = "8-9", + }, + [1545] = { + ["coords"] = { + [1] = { 25.5, 48.5, 85, 300 }, + [2] = { 26, 48.4, 85, 300 }, + [3] = { 25.3, 47.4, 85, 300 }, + [4] = { 26.8, 46.8, 85, 300 }, + [5] = { 34.8, 45, 85, 300 }, + [6] = { 34.3, 43.6, 85, 300 }, + [7] = { 30.5, 42.8, 85, 300 }, + [8] = { 36.4, 42.6, 85, 300 }, + [9] = { 34.8, 42.4, 85, 300 }, + [10] = { 29.9, 41.5, 85, 300 }, + [11] = { 35.8, 41.4, 85, 300 }, + [12] = { 36.5, 40.6, 85, 300 }, + [13] = { 36.5, 38.4, 85, 300 }, + [14] = { 38, 35.1, 85, 300 }, + [15] = { 40.9, 35, 85, 300 }, + [16] = { 39.5, 34.7, 85, 300 }, + [17] = { 38.6, 30.6, 85, 300 }, + [18] = { 65.2, 30.4, 85, 300 }, + [19] = { 64.7, 30.4, 85, 300 }, + [20] = { 66.2, 29.8, 85, 300 }, + [21] = { 64.4, 29.7, 85, 300 }, + [22] = { 64.6, 29.6, 85, 300 }, + [23] = { 38.1, 29.5, 85, 300 }, + [24] = { 67.4, 29.4, 85, 300 }, + [25] = { 64.5, 29.1, 85, 300 }, + [26] = { 68, 28.6, 85, 300 }, + [27] = { 65.3, 28.6, 85, 300 }, + [28] = { 67.7, 28.5, 85, 300 }, + [29] = { 66.7, 28.1, 85, 300 }, + [30] = { 75, 27.6, 85, 300 }, + [31] = { 75.2, 27.4, 85, 300 }, + [32] = { 66, 27.4, 85, 300 }, + [33] = { 67.6, 27.3, 85, 300 }, + [34] = { 72, 27.2, 85, 300 }, + [35] = { 73.3, 27.2, 85, 300 }, + [36] = { 70.4, 27.1, 85, 300 }, + [37] = { 74.8, 27.1, 85, 300 }, + [38] = { 75.4, 26.9, 85, 300 }, + [39] = { 75.1, 26.8, 85, 300 }, + [40] = { 72.7, 26.4, 85, 300 }, + [41] = { 74.6, 26.4, 85, 300 }, + [42] = { 75.4, 26.4, 85, 300 }, + [43] = { 75.6, 26.4, 85, 300 }, + [44] = { 66.9, 26.3, 85, 300 }, + [45] = { 67, 26.2, 85, 300 }, + [46] = { 74.1, 26.2, 85, 300 }, + [47] = { 71.2, 26.2, 85, 300 }, + [48] = { 75.7, 26.1, 85, 300 }, + [49] = { 72.5, 26.1, 85, 300 }, + [50] = { 68.2, 26.1, 85, 300 }, + [51] = { 69.6, 26, 85, 300 }, + [52] = { 67.8, 25.8, 85, 300 }, + [53] = { 70.2, 25.6, 85, 300 }, + [54] = { 72.3, 25.6, 85, 300 }, + [55] = { 69.1, 25.5, 85, 300 }, + [56] = { 68.7, 25.4, 85, 300 }, + [57] = { 72, 25.2, 85, 300 }, + [58] = { 73.5, 25, 85, 300 }, + [59] = { 70.1, 25, 85, 300 }, + }, + ["lvl"] = "9-10", + }, + [1546] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "8-40", + }, + [1547] = { + ["coords"] = { + [1] = { 70.6, 65.1, 85, 300 }, + [2] = { 69.6, 63.8, 85, 300 }, + [3] = { 67.2, 63.5, 85, 300 }, + [4] = { 64.8, 61.8, 85, 300 }, + [5] = { 64.3, 59, 85, 300 }, + [6] = { 49, 58.9, 85, 300 }, + [7] = { 48, 58.6, 85, 300 }, + [8] = { 66.2, 57.9, 85, 300 }, + [9] = { 68.4, 57.8, 85, 300 }, + [10] = { 46.1, 57.4, 85, 300 }, + [11] = { 44.5, 57, 85, 300 }, + [12] = { 59.5, 56.9, 85, 300 }, + [13] = { 66.5, 56.9, 85, 300 }, + [14] = { 64.1, 56.6, 85, 300 }, + [15] = { 40.2, 56.3, 85, 300 }, + [16] = { 41.8, 56.2, 85, 300 }, + [17] = { 41, 55.7, 85, 300 }, + [18] = { 66.1, 55.6, 85, 300 }, + [19] = { 61.2, 55.6, 85, 300 }, + [20] = { 59.9, 55.6, 85, 300 }, + [21] = { 67.5, 55, 85, 300 }, + [22] = { 62.6, 54.8, 85, 300 }, + [23] = { 68.6, 54.4, 85, 300 }, + [24] = { 49.3, 54.3, 85, 300 }, + [25] = { 45, 54.2, 85, 300 }, + [26] = { 63.1, 54.1, 85, 300 }, + [27] = { 48.6, 53.7, 85, 300 }, + [28] = { 56.6, 53.6, 85, 300 }, + [29] = { 64.5, 53.5, 85, 300 }, + [30] = { 44.4, 53.3, 85, 300 }, + [31] = { 55.2, 53.3, 85, 300 }, + [32] = { 57.8, 52.7, 85, 300 }, + [33] = { 40.7, 52.7, 85, 300 }, + [34] = { 67.5, 52.6, 85, 300 }, + [35] = { 39.4, 52, 85, 300 }, + [36] = { 63.3, 50.8, 85, 300 }, + [37] = { 51.1, 50.5, 85, 300 }, + [38] = { 66.1, 50.3, 85, 300 }, + [39] = { 42.7, 50.1, 85, 300 }, + [40] = { 50, 49.8, 85, 300 }, + [41] = { 41.3, 49.6, 85, 300 }, + [42] = { 65.2, 49.2, 85, 300 }, + [43] = { 41.5, 48.8, 85, 300 }, + [44] = { 64.4, 48.3, 85, 300 }, + [45] = { 62.9, 47.9, 85, 300 }, + [46] = { 38.6, 47.5, 85, 300 }, + [47] = { 50, 47.4, 85, 300 }, + [48] = { 62.4, 47, 85, 300 }, + [49] = { 63.5, 46.3, 85, 300 }, + [50] = { 39.9, 46.2, 85, 300 }, + [51] = { 61.8, 45.6, 85, 300 }, + [52] = { 38.7, 45.5, 85, 300 }, + [53] = { 37.5, 45.1, 85, 300 }, + [54] = { 40.8, 45, 85, 300 }, + [55] = { 38.8, 44.7, 85, 300 }, + [56] = { 61, 44.4, 85, 300 }, + [57] = { 61.5, 43.9, 85, 300 }, + [58] = { 40, 43.7, 85, 300 }, + [59] = { 38.7, 43.7, 85, 300 }, + [60] = { 63.7, 43.5, 85, 300 }, + [61] = { 64.6, 43.1, 85, 300 }, + [62] = { 40.7, 42.9, 85, 300 }, + [63] = { 39.1, 42.6, 85, 300 }, + [64] = { 41.9, 42.4, 85, 300 }, + [65] = { 38.6, 41.8, 85, 300 }, + [66] = { 63.6, 41.7, 85, 300 }, + [67] = { 38, 41.5, 85, 300 }, + [68] = { 40.4, 41.2, 85, 300 }, + [69] = { 39, 40.7, 85, 300 }, + [70] = { 42.6, 40.6, 85, 300 }, + [71] = { 62.8, 40.5, 85, 300 }, + [72] = { 60.5, 40.4, 85, 300 }, + [73] = { 61.6, 40.4, 85, 300 }, + [74] = { 38.6, 40.3, 85, 300 }, + [75] = { 64.4, 40.1, 85, 300 }, + [76] = { 65.9, 40, 85, 300 }, + [77] = { 40.3, 39.7, 85, 300 }, + [78] = { 62.6, 39.4, 85, 300 }, + [79] = { 62.8, 38.1, 85, 300 }, + [80] = { 65.1, 37.4, 85, 300 }, + }, + ["lvl"] = "5-6", + }, + [1548] = { + ["coords"] = { + [1] = { 20.3, 61.2, 28, 300 }, + [2] = { 18.8, 60.9, 28, 300 }, + [3] = { 17.9, 59.9, 28, 300 }, + [4] = { 21, 59.8, 28, 300 }, + [5] = { 23.7, 59.8, 28, 300 }, + [6] = { 24.6, 59.3, 28, 300 }, + [7] = { 20.6, 58.6, 28, 300 }, + [8] = { 19.6, 57.4, 28, 300 }, + [9] = { 17.8, 57, 28, 300 }, + [10] = { 23.1, 56.4, 28, 300 }, + [11] = { 18, 55.8, 28, 300 }, + [12] = { 20.6, 55.6, 28, 300 }, + [13] = { 20, 55.1, 28, 300 }, + [14] = { 23.3, 54.2, 28, 300 }, + [15] = { 21.7, 53.5, 28, 300 }, + [16] = { 22.9, 53, 28, 300 }, + [17] = { 20, 51.7, 28, 300 }, + [18] = { 24.6, 51.6, 28, 300 }, + [19] = { 18.4, 51.4, 28, 300 }, + [20] = { 24.1, 50.8, 28, 300 }, + [21] = { 22.2, 50.8, 28, 300 }, + [22] = { 20.9, 50.2, 28, 300 }, + [23] = { 22.4, 48.3, 28, 300 }, + [24] = { 23.8, 47.3, 28, 300 }, + [25] = { 52.5, 74.6, 85, 300 }, + [26] = { 77.2, 73.9, 85, 300 }, + [27] = { 55.7, 73.6, 85, 300 }, + [28] = { 75.8, 73.6, 85, 300 }, + [29] = { 75, 72.6, 85, 300 }, + [30] = { 77.8, 72.5, 85, 300 }, + [31] = { 80.5, 72.5, 85, 300 }, + [32] = { 52.8, 72.5, 85, 300 }, + [33] = { 52, 72.3, 85, 300 }, + [34] = { 81.4, 72.1, 85, 300 }, + [35] = { 54.9, 71.4, 85, 300 }, + [36] = { 77.5, 71.4, 85, 300 }, + [37] = { 52.4, 71.3, 85, 300 }, + [38] = { 51.2, 70.2, 85, 300 }, + [39] = { 76.5, 70.2, 85, 300 }, + [40] = { 74.8, 69.9, 85, 300 }, + [41] = { 55.3, 69.8, 85, 300 }, + [42] = { 79.9, 69.3, 85, 300 }, + [43] = { 75, 68.8, 85, 300 }, + [44] = { 77.5, 68.5, 85, 300 }, + [45] = { 45.3, 68.5, 85, 300 }, + [46] = { 43.2, 68.1, 85, 300 }, + [47] = { 76.9, 68, 85, 300 }, + [48] = { 46.4, 67.7, 85, 300 }, + [49] = { 42, 67.5, 85, 300 }, + [50] = { 80.1, 67.2, 85, 300 }, + [51] = { 44.7, 67, 85, 300 }, + [52] = { 54.1, 66.9, 85, 300 }, + [53] = { 78.6, 66.5, 85, 300 }, + [54] = { 55.6, 66.1, 85, 300 }, + [55] = { 79.7, 66.1, 85, 300 }, + [56] = { 49.7, 65.8, 85, 300 }, + [57] = { 54, 65.7, 85, 300 }, + [58] = { 55.6, 65.5, 85, 300 }, + [59] = { 41.5, 65.5, 85, 300 }, + [60] = { 53, 65.2, 85, 300 }, + [61] = { 76.9, 64.9, 85, 300 }, + [62] = { 81.4, 64.7, 85, 300 }, + [63] = { 75.4, 64.6, 85, 300 }, + [64] = { 41.5, 64.5, 85, 300 }, + [65] = { 56.6, 64.4, 85, 300 }, + [66] = { 45.8, 64.2, 85, 300 }, + [67] = { 80.9, 64, 85, 300 }, + [68] = { 79, 64, 85, 300 }, + [69] = { 48.5, 63.9, 85, 300 }, + [70] = { 54.3, 63.7, 85, 300 }, + [71] = { 50.9, 63.4, 85, 300 }, + [72] = { 77.7, 63.4, 85, 300 }, + [73] = { 47.7, 63.3, 85, 300 }, + [74] = { 53.4, 63.3, 85, 300 }, + [75] = { 57.5, 63, 85, 300 }, + [76] = { 49.2, 62.9, 85, 300 }, + [77] = { 58.4, 62.7, 85, 300 }, + [78] = { 42.8, 62.4, 85, 300 }, + [79] = { 57.4, 62.4, 85, 300 }, + [80] = { 50.6, 62.3, 85, 300 }, + [81] = { 60.2, 62.2, 85, 300 }, + [82] = { 43.8, 62, 85, 300 }, + [83] = { 44.2, 61.9, 85, 300 }, + [84] = { 71.9, 61.8, 85, 300 }, + [85] = { 41, 61.6, 85, 300 }, + [86] = { 79.2, 61.6, 85, 300 }, + [87] = { 72.8, 61.5, 85, 300 }, + [88] = { 50.1, 60.9, 85, 300 }, + [89] = { 40.6, 60.9, 85, 300 }, + [90] = { 45.1, 60.8, 85, 300 }, + [91] = { 59.4, 60.7, 85, 300 }, + [92] = { 46.7, 60.6, 85, 300 }, + [93] = { 57.9, 60.6, 85, 300 }, + [94] = { 80.6, 60.6, 85, 300 }, + [95] = { 43.9, 60.6, 85, 300 }, + [96] = { 51.4, 60, 85, 300 }, + [97] = { 69, 59.9, 85, 300 }, + [98] = { 58.3, 59.8, 85, 300 }, + [99] = { 57.1, 59.6, 85, 300 }, + [100] = { 71.1, 59.5, 85, 300 }, + [101] = { 78.9, 59.1, 85, 300 }, + [102] = { 48.3, 59, 85, 300 }, + [103] = { 80.2, 58.6, 85, 300 }, + [104] = { 40.6, 58.4, 85, 300 }, + [105] = { 58.3, 58.3, 85, 300 }, + [106] = { 44.3, 58.2, 85, 300 }, + [107] = { 42.8, 58.1, 85, 300 }, + [108] = { 72.9, 56.9, 85, 300 }, + [109] = { 48.6, 56.7, 85, 300 }, + [110] = { 44.8, 54.4, 85, 300 }, + [111] = { 74.6, 54.3, 85, 300 }, + [112] = { 75.8, 54.3, 85, 300 }, + [113] = { 76.2, 52.4, 85, 300 }, + [114] = { 72, 52.1, 85, 300 }, + [115] = { 47.3, 51, 85, 300 }, + [116] = { 46.1, 50.9, 85, 300 }, + [117] = { 46.9, 50.1, 85, 300 }, + [118] = { 48.3, 50, 85, 300 }, + [119] = { 50, 49.9, 85, 300 }, + [120] = { 72.6, 49.2, 85, 300 }, + [121] = { 47.4, 49.1, 85, 300 }, + [122] = { 48, 48.4, 85, 300 }, + [123] = { 45.1, 47.8, 85, 300 }, + [124] = { 45.1, 47.7, 85, 300 }, + [125] = { 72.6, 47.6, 85, 300 }, + [126] = { 71.8, 47.2, 85, 300 }, + [127] = { 42.3, 47, 85, 300 }, + [128] = { 45.9, 46.9, 85, 300 }, + [129] = { 72.7, 46.5, 85, 300 }, + [130] = { 46.3, 46.1, 85, 300 }, + [131] = { 74.9, 46, 85, 300 }, + [132] = { 47, 45.4, 85, 300 }, + [133] = { 75.6, 45.4, 85, 300 }, + [134] = { 43.3, 45.2, 85, 300 }, + [135] = { 44.5, 45.2, 85, 300 }, + [136] = { 41.9, 45, 85, 300 }, + [137] = { 41.3, 44.4, 85, 300 }, + [138] = { 74.6, 44.2, 85, 300 }, + [139] = { 45, 43.9, 85, 300 }, + [140] = { 72.6, 43.7, 85, 300 }, + [141] = { 43.7, 42.9, 85, 300 }, + [142] = { 42.2, 42.8, 85, 300 }, + [143] = { 40.3, 42.5, 85, 300 }, + [144] = { 73, 41.4, 85, 300 }, + [145] = { 44.6, 40.4, 85, 300 }, + [146] = { 72.2, 40.2, 85, 300 }, + [147] = { 73.2, 38.1, 85, 300 }, + [148] = { 71.8, 38, 85, 300 }, + [149] = { 74.5, 37.6, 85, 300 }, + [150] = { 68.1, 37, 85, 300 }, + [151] = { 68.2, 36.2, 85, 300 }, + [152] = { 71.5, 36.1, 85, 300 }, + [153] = { 70.4, 36.1, 85, 300 }, + [154] = { 74.4, 36, 85, 300 }, + [155] = { 69.1, 35.6, 85, 300 }, + [156] = { 74.1, 35.3, 85, 300 }, + [157] = { 66.1, 35, 85, 300 }, + [158] = { 76.7, 34.8, 85, 300 }, + [159] = { 66.7, 34.8, 85, 300 }, + [160] = { 68, 34.6, 85, 300 }, + [161] = { 68.9, 33.9, 85, 300 }, + [162] = { 63.4, 33.7, 85, 300 }, + [163] = { 75.6, 33, 85, 300 }, + [164] = { 65, 32.8, 85, 300 }, + [165] = { 78, 32.7, 85, 300 }, + [166] = { 71.1, 32.6, 85, 300 }, + [167] = { 72.6, 32.6, 85, 300 }, + [168] = { 68.9, 31.7, 85, 300 }, + [169] = { 73.3, 31.7, 85, 300 }, + [170] = { 67.6, 31.6, 85, 300 }, + [171] = { 70.5, 31.5, 85, 300 }, + [172] = { 76.5, 31, 85, 300 }, + [173] = { 68.3, 30.7, 85, 300 }, + [174] = { 69, 29.6, 85, 300 }, + [175] = { 76.4, 29.6, 85, 300 }, + [176] = { 70.4, 29.5, 85, 300 }, + [177] = { 72.1, 29.5, 85, 300 }, + [178] = { 74, 28.7, 85, 300 }, + [179] = { 69.7, 28.5, 85, 300 }, + [180] = { 72.8, 28.5, 85, 300 }, + [181] = { 66.4, 2.7, 130, 300 }, + [182] = { 22, 45, 1497, 300 }, + [183] = { 23.7, 35, 1497, 300 }, + [184] = { 19.8, 34.3, 1497, 300 }, + [185] = { 33.5, 30.1, 1497, 300 }, + [186] = { 21.7, 29.7, 1497, 300 }, + }, + ["lvl"] = "7-8", + }, + [1549] = { + ["coords"] = { + [1] = { 32.5, 30.8, 28, 300 }, + [2] = { 33.2, 29.7, 28, 300 }, + [3] = { 31.8, 29.6, 28, 300 }, + [4] = { 23.4, 28.2, 28, 300 }, + [5] = { 33.5, 27.5, 28, 300 }, + [6] = { 31.9, 27.4, 28, 300 }, + [7] = { 34.1, 26.3, 28, 300 }, + [8] = { 29.4, 25.1, 28, 300 }, + [9] = { 30.4, 24.7, 28, 300 }, + [10] = { 29.6, 23.4, 28, 300 }, + [11] = { 83, 50.4, 85, 300 }, + [12] = { 79.6, 49.5, 85, 300 }, + [13] = { 83, 48.8, 85, 300 }, + [14] = { 88.2, 48.5, 85, 300 }, + [15] = { 82.2, 48.3, 85, 300 }, + [16] = { 89.4, 47.9, 85, 300 }, + [17] = { 83.2, 47.4, 85, 300 }, + [18] = { 90.3, 47.1, 85, 300 }, + [19] = { 82, 47, 85, 300 }, + [20] = { 88.9, 46.7, 85, 300 }, + [21] = { 88.2, 46.4, 85, 300 }, + [22] = { 83.6, 46, 85, 300 }, + [23] = { 87.4, 46, 85, 300 }, + [24] = { 85.1, 46, 85, 300 }, + [25] = { 87, 45.3, 85, 300 }, + [26] = { 81.5, 45.2, 85, 300 }, + [27] = { 86, 45.1, 85, 300 }, + [28] = { 88.9, 44.9, 85, 300 }, + [29] = { 83.9, 44.2, 85, 300 }, + [30] = { 85.1, 44, 85, 300 }, + [31] = { 89.5, 43.9, 85, 300 }, + [32] = { 88.2, 43.8, 85, 300 }, + [33] = { 82.1, 43.6, 85, 300 }, + [34] = { 80.2, 42.4, 85, 300 }, + [35] = { 89.8, 41.8, 85, 300 }, + [36] = { 83.3, 41.7, 85, 300 }, + [37] = { 88.3, 41.7, 85, 300 }, + [38] = { 84.4, 41.5, 85, 300 }, + [39] = { 83.9, 41.5, 85, 300 }, + [40] = { 90.4, 40.6, 85, 300 }, + [41] = { 85.9, 39.5, 85, 300 }, + [42] = { 86.8, 39.1, 85, 300 }, + [43] = { 86.1, 37.9, 85, 300 }, + }, + ["lvl"] = "9-10", + }, + [1550] = { + ["coords"] = { + [1] = { 40.4, 52.1, 33, 300 }, + [2] = { 39.1, 52, 33, 300 }, + [3] = { 40.9, 51.3, 33, 300 }, + [4] = { 40.4, 50.6, 33, 300 }, + [5] = { 41.3, 50.6, 33, 300 }, + [6] = { 38.3, 50.5, 33, 300 }, + [7] = { 39.1, 50.4, 33, 300 }, + [8] = { 37.8, 49.9, 33, 300 }, + [9] = { 40.8, 49.8, 33, 300 }, + [10] = { 39.1, 49.5, 33, 300 }, + [11] = { 40.4, 48.7, 33, 300 }, + [12] = { 39.2, 47.1, 33, 300 }, + [13] = { 38.8, 44.9, 33, 300 }, + }, + ["lvl"] = "41-42", + }, + [1551] = { + ["coords"] = { + [1] = { 42.6, 49.4, 33, 300 }, + [2] = { 43.5, 49.2, 33, 300 }, + [3] = { 43, 49.2, 33, 300 }, + [4] = { 43.9, 49.1, 33, 300 }, + [5] = { 42.8, 48.9, 33, 300 }, + [6] = { 42.4, 48.4, 33, 300 }, + [7] = { 44, 48.4, 33, 300 }, + [8] = { 43.7, 48.3, 33, 300 }, + [9] = { 42.7, 48.3, 33, 300 }, + [10] = { 43.4, 47.9, 33, 300 }, + [11] = { 44.2, 47.8, 33, 300 }, + [12] = { 42.7, 47.8, 33, 300 }, + [13] = { 43.8, 47.8, 33, 300 }, + [14] = { 42.3, 47.2, 33, 300 }, + [15] = { 43.5, 47, 33, 300 }, + [16] = { 42.1, 47, 33, 300 }, + [17] = { 41.9, 47, 33, 300 }, + [18] = { 43.6, 46.7, 33, 300 }, + [19] = { 43.6, 46.2, 33, 300 }, + [20] = { 43.5, 45.9, 33, 300 }, + [21] = { 42.7, 45.8, 33, 300 }, + }, + ["lvl"] = "43-44", + }, + [1552] = { + ["coords"] = { + [1] = { 43.4, 45.7, 33, 18000 }, + }, + ["lvl"] = "45", + ["rnk"] = "4", + }, + [1553] = { + ["coords"] = { + [1] = { 54.2, 65.9, 85, 300 }, + [2] = { 53.6, 65, 85, 300 }, + [3] = { 53.4, 64.1, 85, 300 }, + [4] = { 55.1, 64, 85, 300 }, + [5] = { 71, 63.8, 85, 300 }, + [6] = { 52.5, 63.5, 85, 300 }, + [7] = { 55.5, 63.4, 85, 300 }, + [8] = { 56.6, 62.9, 85, 300 }, + [9] = { 68.3, 62.9, 85, 300 }, + [10] = { 55, 62.6, 85, 300 }, + [11] = { 66.7, 62.3, 85, 300 }, + [12] = { 54.1, 61.7, 85, 300 }, + [13] = { 59.3, 61.6, 85, 300 }, + [14] = { 63.8, 61.4, 85, 300 }, + [15] = { 55.7, 61, 85, 300 }, + [16] = { 60.3, 60.8, 85, 300 }, + [17] = { 46.7, 60.2, 85, 300 }, + [18] = { 57.4, 59.7, 85, 300 }, + [19] = { 49.2, 59.6, 85, 300 }, + [20] = { 50.9, 59.3, 85, 300 }, + [21] = { 45.5, 58.9, 85, 300 }, + [22] = { 64.7, 58.5, 85, 300 }, + [23] = { 58.8, 58.4, 85, 300 }, + [24] = { 46.6, 58, 85, 300 }, + [25] = { 48.8, 57.7, 85, 300 }, + [26] = { 56.3, 57.5, 85, 300 }, + [27] = { 64.3, 57.5, 85, 300 }, + [28] = { 41.7, 57.4, 85, 300 }, + [29] = { 43, 57.3, 85, 300 }, + [30] = { 45.4, 57.3, 85, 300 }, + [31] = { 58, 57.1, 85, 300 }, + [32] = { 58.4, 57, 85, 300 }, + [33] = { 41.4, 56.9, 85, 300 }, + [34] = { 65.5, 56.6, 85, 300 }, + [35] = { 62.2, 56.6, 85, 300 }, + [36] = { 67, 56.6, 85, 300 }, + [37] = { 45.9, 56.4, 85, 300 }, + [38] = { 61.1, 56.3, 85, 300 }, + [39] = { 47.4, 56.3, 85, 300 }, + [40] = { 43.3, 56.2, 85, 300 }, + [41] = { 58.5, 56.2, 85, 300 }, + [42] = { 59.3, 56.1, 85, 300 }, + [43] = { 66.8, 55.9, 85, 300 }, + [44] = { 43.8, 55.9, 85, 300 }, + [45] = { 56.9, 55.7, 85, 300 }, + [46] = { 40.1, 55.6, 85, 300 }, + [47] = { 47.4, 55.3, 85, 300 }, + [48] = { 58, 55.2, 85, 300 }, + [49] = { 48.9, 55, 85, 300 }, + [50] = { 64, 54.9, 85, 300 }, + [51] = { 45.8, 54.8, 85, 300 }, + [52] = { 45.3, 54.6, 85, 300 }, + [53] = { 65.1, 54.6, 85, 300 }, + [54] = { 66.3, 54.5, 85, 300 }, + [55] = { 45.8, 54.4, 85, 300 }, + [56] = { 57.1, 54.2, 85, 300 }, + [57] = { 68, 54.1, 85, 300 }, + [58] = { 69, 53.9, 85, 300 }, + [59] = { 41.9, 53.7, 85, 300 }, + [60] = { 66.5, 53.6, 85, 300 }, + [61] = { 65.9, 53.2, 85, 300 }, + [62] = { 40.1, 52.7, 85, 300 }, + [63] = { 45.7, 52.5, 85, 300 }, + [64] = { 46.8, 52.5, 85, 300 }, + [65] = { 67.1, 51.8, 85, 300 }, + [66] = { 45.2, 51.2, 85, 300 }, + [67] = { 46.8, 50.8, 85, 300 }, + [68] = { 46.8, 50.3, 85, 300 }, + [69] = { 64.8, 50.1, 85, 300 }, + [70] = { 44.5, 50.1, 85, 300 }, + [71] = { 63.2, 49.7, 85, 300 }, + [72] = { 49.5, 49.7, 85, 300 }, + [73] = { 51.4, 49.5, 85, 300 }, + [74] = { 44.6, 49.4, 85, 300 }, + [75] = { 63.7, 49.2, 85, 300 }, + [76] = { 40.3, 48.6, 85, 300 }, + [77] = { 50, 48.5, 85, 300 }, + [78] = { 51.9, 48.4, 85, 300 }, + [79] = { 39.1, 47.8, 85, 300 }, + [80] = { 42.8, 47.7, 85, 300 }, + [81] = { 63.3, 47.6, 85, 300 }, + [82] = { 41.1, 47.4, 85, 300 }, + [83] = { 36.5, 47.3, 85, 300 }, + [84] = { 63.3, 47.1, 85, 300 }, + [85] = { 47.2, 46.4, 85, 300 }, + [86] = { 43.1, 46.2, 85, 300 }, + [87] = { 37.4, 46.1, 85, 300 }, + [88] = { 64.3, 46, 85, 300 }, + [89] = { 63, 46, 85, 300 }, + [90] = { 47.9, 45.1, 85, 300 }, + [91] = { 42.3, 44.2, 85, 300 }, + [92] = { 64.2, 44.1, 85, 300 }, + [93] = { 62.9, 44, 85, 300 }, + [94] = { 37.9, 43.9, 85, 300 }, + [95] = { 62.3, 43.9, 85, 300 }, + [96] = { 62.5, 43.5, 85, 300 }, + [97] = { 37.3, 43.5, 85, 300 }, + [98] = { 60.4, 43.1, 85, 300 }, + [99] = { 42.5, 42.4, 85, 300 }, + [100] = { 39.3, 42.2, 85, 300 }, + [101] = { 41.1, 42.2, 85, 300 }, + [102] = { 60, 41.8, 85, 300 }, + [103] = { 62.5, 41.8, 85, 300 }, + [104] = { 65.2, 41.7, 85, 300 }, + [105] = { 63.3, 41.7, 85, 300 }, + [106] = { 43.3, 41.5, 85, 300 }, + [107] = { 61.8, 41.4, 85, 300 }, + [108] = { 64.7, 40.4, 85, 300 }, + [109] = { 41.8, 40.3, 85, 300 }, + [110] = { 61.7, 38.8, 85, 300 }, + [111] = { 37.5, 38.8, 85, 300 }, + [112] = { 63.2, 38.7, 85, 300 }, + [113] = { 65.4, 38.6, 85, 300 }, + [114] = { 38.5, 38.6, 85, 300 }, + [115] = { 60.9, 38.5, 85, 300 }, + [116] = { 64.9, 38.2, 85, 300 }, + [117] = { 64.1, 37.8, 85, 300 }, + [118] = { 62.2, 36.8, 85, 300 }, + [119] = { 64.3, 36.6, 85, 300 }, + [120] = { 62.9, 35.8, 85, 300 }, + }, + ["lvl"] = "6-7", + }, + [1554] = { + ["coords"] = { + [1] = { 25.3, 61.6, 28, 300 }, + [2] = { 21.7, 60.7, 28, 300 }, + [3] = { 23.3, 60.1, 28, 300 }, + [4] = { 18.5, 59.7, 28, 300 }, + [5] = { 19.7, 59.6, 28, 300 }, + [6] = { 21.8, 58.9, 28, 300 }, + [7] = { 17.1, 58.7, 28, 300 }, + [8] = { 20, 58.5, 28, 300 }, + [9] = { 22.5, 57.9, 28, 300 }, + [10] = { 24, 57.7, 28, 300 }, + [11] = { 21.3, 57.4, 28, 300 }, + [12] = { 21.8, 56.9, 28, 300 }, + [13] = { 22.8, 56.3, 28, 300 }, + [14] = { 23.6, 54.8, 28, 300 }, + [15] = { 16.9, 54.3, 28, 300 }, + [16] = { 24.6, 53.5, 28, 300 }, + [17] = { 23.9, 53.4, 28, 300 }, + [18] = { 27.1, 53.3, 28, 300 }, + [19] = { 19.4, 53.1, 28, 300 }, + [20] = { 25.6, 52.9, 28, 300 }, + [21] = { 25.4, 51.5, 28, 300 }, + [22] = { 21.9, 51.5, 28, 300 }, + [23] = { 23.4, 51.1, 28, 300 }, + [24] = { 17.8, 50.9, 28, 300 }, + [25] = { 19.2, 50.5, 28, 300 }, + [26] = { 22, 49.2, 28, 300 }, + [27] = { 23.3, 49.1, 28, 300 }, + [28] = { 34.1, 30.7, 28, 300 }, + [29] = { 32.4, 28.6, 28, 300 }, + [30] = { 34.1, 28.5, 28, 300 }, + [31] = { 30.9, 26.3, 28, 300 }, + [32] = { 28.3, 24.7, 28, 300 }, + [33] = { 30.9, 24, 28, 300 }, + [34] = { 81.9, 74.3, 85, 300 }, + [35] = { 78.6, 73.4, 85, 300 }, + [36] = { 80.1, 72.8, 85, 300 }, + [37] = { 75.5, 72.4, 85, 300 }, + [38] = { 76.6, 72.3, 85, 300 }, + [39] = { 78.6, 71.7, 85, 300 }, + [40] = { 74.2, 71.5, 85, 300 }, + [41] = { 76.9, 71.3, 85, 300 }, + [42] = { 79.3, 70.7, 85, 300 }, + [43] = { 80.7, 70.5, 85, 300 }, + [44] = { 78.2, 70.2, 85, 300 }, + [45] = { 78.7, 69.7, 85, 300 }, + [46] = { 79.6, 69.2, 85, 300 }, + [47] = { 44.9, 69.1, 85, 300 }, + [48] = { 44, 68, 85, 300 }, + [49] = { 47.9, 67.8, 85, 300 }, + [50] = { 80.4, 67.7, 85, 300 }, + [51] = { 74, 67.3, 85, 300 }, + [52] = { 45.9, 67.3, 85, 300 }, + [53] = { 43.1, 67.1, 85, 300 }, + [54] = { 81.3, 66.5, 85, 300 }, + [55] = { 80.7, 66.4, 85, 300 }, + [56] = { 46.9, 66.4, 85, 300 }, + [57] = { 83.7, 66.3, 85, 300 }, + [58] = { 45.3, 66.3, 85, 300 }, + [59] = { 76.4, 66.2, 85, 300 }, + [60] = { 82.2, 66, 85, 300 }, + [61] = { 72.7, 65.3, 85, 300 }, + [62] = { 82, 64.6, 85, 300 }, + [63] = { 78.7, 64.6, 85, 300 }, + [64] = { 80.2, 64.3, 85, 300 }, + [65] = { 74.9, 64, 85, 300 }, + [66] = { 76.1, 63.7, 85, 300 }, + [67] = { 52.9, 63.6, 85, 300 }, + [68] = { 48.6, 63.6, 85, 300 }, + [69] = { 51.9, 63.4, 85, 300 }, + [70] = { 41.6, 63.4, 85, 300 }, + [71] = { 48.4, 63.2, 85, 300 }, + [72] = { 44.9, 63.2, 85, 300 }, + [73] = { 43.2, 63, 85, 300 }, + [74] = { 45.5, 62.8, 85, 300 }, + [75] = { 72.8, 62.6, 85, 300 }, + [76] = { 44.4, 62.6, 85, 300 }, + [77] = { 78.8, 62.4, 85, 300 }, + [78] = { 80.1, 62.3, 85, 300 }, + [79] = { 47.5, 62.2, 85, 300 }, + [80] = { 48.7, 62, 85, 300 }, + [81] = { 51.4, 61.8, 85, 300 }, + [82] = { 50.7, 61.7, 85, 300 }, + [83] = { 46.3, 61.5, 85, 300 }, + [84] = { 70.5, 61.2, 85, 300 }, + [85] = { 41.6, 60.9, 85, 300 }, + [86] = { 69.8, 60.7, 85, 300 }, + [87] = { 44.7, 60.3, 85, 300 }, + [88] = { 40.6, 60, 85, 300 }, + [89] = { 72.1, 59.8, 85, 300 }, + [90] = { 49.1, 59.8, 85, 300 }, + [91] = { 42.1, 59.4, 85, 300 }, + [92] = { 73.4, 59.3, 85, 300 }, + [93] = { 80.5, 59.3, 85, 300 }, + [94] = { 79.2, 59, 85, 300 }, + [95] = { 74.6, 58.7, 85, 300 }, + [96] = { 42.2, 58.6, 85, 300 }, + [97] = { 71, 58.4, 85, 300 }, + [98] = { 72.8, 58.3, 85, 300 }, + [99] = { 73.7, 57.1, 85, 300 }, + [100] = { 75.6, 55.8, 85, 300 }, + [101] = { 70.2, 53.7, 85, 300 }, + [102] = { 75, 53, 85, 300 }, + [103] = { 82.2, 52.8, 85, 300 }, + [104] = { 83.7, 51.6, 85, 300 }, + [105] = { 75.8, 51.3, 85, 300 }, + [106] = { 71.3, 50.1, 85, 300 }, + [107] = { 71.7, 49, 85, 300 }, + [108] = { 79.3, 48.7, 85, 300 }, + [109] = { 83.6, 48.4, 85, 300 }, + [110] = { 76.8, 48.3, 85, 300 }, + [111] = { 71.2, 48.2, 85, 300 }, + [112] = { 81.1, 48.2, 85, 300 }, + [113] = { 75.7, 47.9, 85, 300 }, + [114] = { 74.5, 47.3, 85, 300 }, + [115] = { 75.5, 47.1, 85, 300 }, + [116] = { 72.7, 47.1, 85, 300 }, + [117] = { 71.2, 46.8, 85, 300 }, + [118] = { 82.8, 46.3, 85, 300 }, + [119] = { 80.7, 46.3, 85, 300 }, + [120] = { 75.4, 46.1, 85, 300 }, + [121] = { 77.8, 46.1, 85, 300 }, + [122] = { 79, 45.9, 85, 300 }, + [123] = { 78.6, 44.9, 85, 300 }, + [124] = { 84.4, 44.9, 85, 300 }, + [125] = { 90.4, 44.8, 85, 300 }, + [126] = { 80, 44.5, 85, 300 }, + [127] = { 83.1, 44.3, 85, 300 }, + [128] = { 73.2, 44.3, 85, 300 }, + [129] = { 74.8, 44.2, 85, 300 }, + [130] = { 84.1, 43.1, 85, 300 }, + [131] = { 88.7, 42.8, 85, 300 }, + [132] = { 90.4, 42.8, 85, 300 }, + [133] = { 82.5, 42.8, 85, 300 }, + [134] = { 72.9, 42.6, 85, 300 }, + [135] = { 82.9, 42.6, 85, 300 }, + [136] = { 84.6, 40.8, 85, 300 }, + [137] = { 87.3, 40.6, 85, 300 }, + [138] = { 73.3, 40.6, 85, 300 }, + [139] = { 73, 39.3, 85, 300 }, + [140] = { 84.8, 39.1, 85, 300 }, + [141] = { 87.3, 38.4, 85, 300 }, + [142] = { 72.6, 37.2, 85, 300 }, + [143] = { 71.2, 36.9, 85, 300 }, + [144] = { 64.5, 36.6, 85, 300 }, + [145] = { 73.4, 36.1, 85, 300 }, + [146] = { 75.4, 35.1, 85, 300 }, + [147] = { 65.8, 34.9, 85, 300 }, + [148] = { 69.7, 34.8, 85, 300 }, + [149] = { 71.1, 34.6, 85, 300 }, + [150] = { 67.5, 34, 85, 300 }, + [151] = { 73.7, 33.9, 85, 300 }, + [152] = { 65.5, 33.8, 85, 300 }, + [153] = { 71.9, 33.7, 85, 300 }, + [154] = { 70.4, 33.7, 85, 300 }, + [155] = { 74.9, 33.7, 85, 300 }, + [156] = { 69.7, 32.8, 85, 300 }, + [157] = { 68.2, 32.8, 85, 300 }, + [158] = { 74.2, 32.6, 85, 300 }, + [159] = { 66.2, 31.7, 85, 300 }, + [160] = { 76.8, 31.6, 85, 300 }, + [161] = { 71.8, 31.6, 85, 300 }, + [162] = { 72.8, 30.6, 85, 300 }, + [163] = { 71.2, 30.5, 85, 300 }, + [164] = { 69.7, 30.5, 85, 300 }, + [165] = { 76.4, 30.3, 85, 300 }, + [166] = { 73.3, 29.2, 85, 300 }, + [167] = { 68.6, 28.3, 85, 300 }, + }, + ["lvl"] = "8-9", + }, + [1555] = { + ["coords"] = { + [1] = { 85.9, 57.3, 85, 300 }, + [2] = { 86.8, 57, 85, 300 }, + [3] = { 87.4, 56.1, 85, 300 }, + [4] = { 83.4, 55.6, 85, 300 }, + [5] = { 83.8, 55.4, 85, 300 }, + [6] = { 85.4, 55.1, 85, 300 }, + [7] = { 88.2, 55, 85, 300 }, + [8] = { 82.4, 54.8, 85, 300 }, + [9] = { 87.5, 53.8, 85, 300 }, + [10] = { 86.6, 53.8, 85, 300 }, + [11] = { 88.9, 53.7, 85, 300 }, + [12] = { 85.9, 53.7, 85, 300 }, + [13] = { 88, 53.7, 85, 300 }, + [14] = { 86.7, 53.2, 85, 300 }, + [15] = { 84.7, 52.8, 85, 300 }, + [16] = { 85.7, 52.5, 85, 300 }, + [17] = { 89.5, 52.5, 85, 300 }, + [18] = { 86, 52.5, 85, 300 }, + [19] = { 83.7, 52.4, 85, 300 }, + [20] = { 89.7, 51.7, 85, 300 }, + [21] = { 87.3, 51.2, 85, 300 }, + [22] = { 84.5, 51, 85, 300 }, + [23] = { 85.1, 51, 85, 300 }, + [24] = { 91.1, 50.5, 85, 300 }, + [25] = { 86.7, 50.5, 85, 300 }, + [26] = { 89.8, 50.4, 85, 300 }, + [27] = { 88.1, 50.4, 85, 300 }, + [28] = { 84.5, 50.1, 85, 300 }, + [29] = { 89.1, 49.8, 85, 300 }, + [30] = { 91.8, 49.5, 85, 300 }, + [31] = { 87.4, 49.3, 85, 300 }, + [32] = { 90.3, 49.3, 85, 300 }, + [33] = { 85.9, 49.3, 85, 300 }, + [34] = { 86.7, 48.4, 85, 300 }, + [35] = { 85.2, 48.3, 85, 300 }, + [36] = { 84.5, 47.2, 85, 300 }, + }, + ["lvl"] = "9-10", + }, + [1557] = { + ["coords"] = { + [1] = { 32.4, 68.6, 33, 300 }, + [2] = { 31.2, 67.9, 33, 300 }, + [3] = { 31.9, 67.7, 33, 300 }, + [4] = { 32.9, 67.7, 33, 300 }, + [5] = { 33.9, 67.6, 33, 300 }, + [6] = { 33.6, 67, 33, 300 }, + [7] = { 34.5, 66.7, 33, 300 }, + [8] = { 30.9, 66.7, 33, 300 }, + [9] = { 32.6, 66.6, 33, 300 }, + [10] = { 34.1, 66.4, 33, 300 }, + [11] = { 33, 66.1, 33, 300 }, + [12] = { 32.1, 66.1, 33, 300 }, + [13] = { 34.6, 65.4, 33, 300 }, + [14] = { 32.6, 65.4, 33, 300 }, + [15] = { 33.5, 65.4, 33, 300 }, + [16] = { 31.4, 65.4, 33, 300 }, + [17] = { 33, 64.8, 33, 300 }, + [18] = { 34, 64.6, 33, 300 }, + [19] = { 35, 64.4, 33, 300 }, + [20] = { 33.5, 63.7, 33, 300 }, + [21] = { 33.2, 63.4, 33, 300 }, + [22] = { 34.4, 62.5, 33, 300 }, + [23] = { 33.5, 62.3, 33, 300 }, + [24] = { 31.3, 60.7, 33, 300 }, + [25] = { 30.9, 60, 33, 300 }, + [26] = { 32, 59.8, 33, 300 }, + [27] = { 32.5, 59.1, 33, 300 }, + [28] = { 32.4, 58, 33, 300 }, + }, + ["lvl"] = "40-41", + }, + [1558] = { + ["coords"] = { + [1] = { 36.3, 63.9, 33, 300 }, + [2] = { 35.2, 63.4, 33, 300 }, + [3] = { 35.5, 63.3, 33, 300 }, + [4] = { 35.5, 62.7, 33, 300 }, + [5] = { 36.4, 62.4, 33, 300 }, + [6] = { 37.1, 62.3, 33, 300 }, + [7] = { 37.8, 62.2, 33, 300 }, + [8] = { 37.9, 60.8, 33, 300 }, + [9] = { 37.9, 60, 33, 300 }, + }, + ["lvl"] = "42-43", + }, + [1559] = { + ["coords"] = { + [1] = { 40.9, 83.9, 33, 360 }, + }, + ["lvl"] = "51", + ["rnk"] = "1", + }, + [1560] = { + ["coords"] = { + [1] = { 61.6, 52.6, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "15", + }, + [1561] = { + ["coords"] = { + [1] = { 33, 74, 33, 300 }, + [2] = { 33.5, 73.3, 33, 300 }, + [3] = { 32.5, 73.2, 33, 300 }, + [4] = { 32, 72.4, 33, 300 }, + [5] = { 32.4, 71.7, 33, 300 }, + [6] = { 28.9, 70.7, 33, 300 }, + [7] = { 28.1, 70.3, 33, 300 }, + [8] = { 27.3, 70, 33, 300 }, + [9] = { 27.9, 69.9, 33, 300 }, + [10] = { 27.4, 69.7, 33, 300 }, + [11] = { 27.5, 69.6, 33, 300 }, + [12] = { 27.6, 69.4, 33, 300 }, + [13] = { 27.5, 69.3, 33, 300 }, + [14] = { 26.8, 67.5, 33, 300 }, + [15] = { 26, 67.2, 33, 300 }, + [16] = { 25.7, 66.2, 33, 300 }, + }, + ["lvl"] = "40-41", + }, + [1562] = { + ["coords"] = { + [1] = { 33, 74, 33, 300 }, + [2] = { 33.5, 73.3, 33, 300 }, + [3] = { 32.5, 73.2, 33, 300 }, + [4] = { 32, 72.4, 33, 300 }, + [5] = { 32.4, 71.7, 33, 300 }, + [6] = { 28.9, 70.7, 33, 300 }, + [7] = { 28.1, 70.3, 33, 300 }, + [8] = { 27.3, 70, 33, 300 }, + [9] = { 27.9, 69.9, 33, 300 }, + [10] = { 27.4, 69.7, 33, 300 }, + [11] = { 27.5, 69.6, 33, 300 }, + [12] = { 27.6, 69.4, 33, 300 }, + [13] = { 27.5, 69.3, 33, 300 }, + [14] = { 26.8, 67.5, 33, 300 }, + [15] = { 26, 67.2, 33, 300 }, + [16] = { 25.7, 66.2, 33, 300 }, + }, + ["lvl"] = "40-41", + }, + [1563] = { + ["coords"] = { + [1] = { 29.9, 87.9, 33, 300 }, + [2] = { 30.2, 87.7, 33, 300 }, + [3] = { 29.8, 87.4, 33, 300 }, + [4] = { 33.6, 86.6, 33, 300 }, + [5] = { 33.8, 86.2, 33, 300 }, + [6] = { 26.9, 83.9, 33, 300 }, + [7] = { 26.5, 83.5, 33, 300 }, + [8] = { 27.2, 83.4, 33, 300 }, + [9] = { 26.9, 83, 33, 300 }, + [10] = { 27, 82.9, 33, 300 }, + [11] = { 26.7, 82.8, 33, 300 }, + [12] = { 27.2, 82.7, 33, 300 }, + [13] = { 26.9, 82.6, 33, 300 }, + [14] = { 27.7, 82.5, 33, 300 }, + [15] = { 27.3, 82.5, 33, 300 }, + [16] = { 28.3, 82.4, 33, 300 }, + [17] = { 29.7, 81.5, 33, 300 }, + [18] = { 29.3, 81.4, 33, 300 }, + [19] = { 30.9, 81.1, 33, 300 }, + [20] = { 29.9, 81.1, 33, 300 }, + [21] = { 29.6, 80.9, 33, 300 }, + [22] = { 29.7, 80.8, 33, 300 }, + [23] = { 30, 80.6, 33, 300 }, + [24] = { 32, 79.5, 33, 300 }, + [25] = { 33, 77.3, 33, 300 }, + [26] = { 24.1, 56, 33, 300 }, + [27] = { 23.1, 54.7, 33, 300 }, + [28] = { 24.3, 54.5, 33, 300 }, + [29] = { 24.5, 54.1, 33, 300 }, + [30] = { 24.4, 54.1, 33, 300 }, + [31] = { 24.5, 54, 33, 300 }, + [32] = { 22.8, 53.9, 33, 300 }, + [33] = { 24.3, 53.9, 33, 300 }, + [34] = { 23.9, 53.8, 33, 300 }, + [35] = { 23.5, 53.6, 33, 300 }, + [36] = { 22.9, 53.4, 33, 300 }, + [37] = { 24.4, 52.9, 33, 300 }, + [38] = { 23, 52.8, 33, 300 }, + }, + ["lvl"] = "42-43", + }, + [1564] = { + ["coords"] = { + [1] = { 29.9, 87.9, 33, 300 }, + [2] = { 30.2, 87.7, 33, 300 }, + [3] = { 29.8, 87.4, 33, 300 }, + [4] = { 33.6, 86.6, 33, 300 }, + [5] = { 33.8, 86.2, 33, 300 }, + [6] = { 26.9, 83.9, 33, 300 }, + [7] = { 26.5, 83.5, 33, 300 }, + [8] = { 27.2, 83.4, 33, 300 }, + [9] = { 26.9, 83, 33, 300 }, + [10] = { 27, 82.9, 33, 300 }, + [11] = { 26.7, 82.8, 33, 300 }, + [12] = { 27.2, 82.7, 33, 300 }, + [13] = { 26.9, 82.6, 33, 300 }, + [14] = { 27.7, 82.5, 33, 300 }, + [15] = { 27.3, 82.5, 33, 300 }, + [16] = { 28.3, 82.4, 33, 300 }, + [17] = { 29.7, 81.5, 33, 300 }, + [18] = { 29.3, 81.4, 33, 300 }, + [19] = { 30.9, 81.1, 33, 300 }, + [20] = { 29.9, 81.1, 33, 300 }, + [21] = { 29.6, 80.9, 33, 300 }, + [22] = { 29.7, 80.8, 33, 300 }, + [23] = { 30, 80.6, 33, 300 }, + [24] = { 32, 79.5, 33, 300 }, + [25] = { 33, 77.3, 33, 300 }, + [26] = { 24.1, 56, 33, 300 }, + [27] = { 23.1, 54.7, 33, 300 }, + [28] = { 24.3, 54.5, 33, 300 }, + [29] = { 24.5, 54.1, 33, 300 }, + [30] = { 24.4, 54.1, 33, 300 }, + [31] = { 24.5, 54, 33, 300 }, + [32] = { 22.8, 53.9, 33, 300 }, + [33] = { 24.3, 53.9, 33, 300 }, + [34] = { 23.9, 53.8, 33, 300 }, + [35] = { 23.5, 53.6, 33, 300 }, + [36] = { 22.9, 53.4, 33, 300 }, + [37] = { 24.4, 52.9, 33, 300 }, + [38] = { 23, 52.8, 33, 300 }, + }, + ["lvl"] = "42-43", + }, + [1565] = { + ["coords"] = { + [1] = { 30.6, 90.3, 33, 300 }, + [2] = { 30.7, 90.2, 33, 300 }, + [3] = { 30.7, 89.9, 33, 300 }, + [4] = { 30.6, 89.9, 33, 300 }, + [5] = { 30.5, 89.7, 33, 300 }, + [6] = { 30.6, 89.7, 33, 300 }, + [7] = { 30.6, 89.6, 33, 300 }, + [8] = { 30.7, 89.6, 33, 300 }, + [9] = { 29.4, 89.4, 33, 300 }, + [10] = { 29.4, 89.1, 33, 300 }, + [11] = { 29.3, 89.1, 33, 300 }, + [12] = { 29.3, 89, 33, 300 }, + [13] = { 29.4, 88.9, 33, 300 }, + [14] = { 29.4, 88.8, 33, 300 }, + [15] = { 29.3, 88.6, 33, 300 }, + [16] = { 29.3, 88.5, 33, 300 }, + [17] = { 29.2, 88.4, 33, 300 }, + [18] = { 33.3, 88.4, 33, 300 }, + [19] = { 32.9, 88.3, 33, 300 }, + [20] = { 33, 88.3, 33, 300 }, + [21] = { 33.6, 88.2, 33, 300 }, + [22] = { 33, 88.2, 33, 300 }, + [23] = { 33.6, 88.1, 33, 300 }, + [24] = { 33.3, 88.1, 33, 300 }, + [25] = { 32.8, 56.5, 33, 300 }, + [26] = { 32.8, 56.3, 33, 300 }, + [27] = { 32, 56.1, 33, 300 }, + [28] = { 32, 55.9, 33, 300 }, + [29] = { 32, 55.8, 33, 300 }, + [30] = { 31.8, 54.7, 33, 300 }, + [31] = { 32.1, 54.6, 33, 300 }, + [32] = { 31.8, 54.5, 33, 300 }, + [33] = { 32, 54.4, 33, 300 }, + [34] = { 31.9, 54.4, 33, 300 }, + [35] = { 32, 54.3, 33, 300 }, + [36] = { 31.5, 54.3, 33, 300 }, + [37] = { 31.8, 54.2, 33, 300 }, + [38] = { 31.9, 53.9, 33, 300 }, + }, + ["lvl"] = "44-45", + }, + [1567] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "10", + }, + [1568] = { + ["coords"] = { + [1] = { 30.2, 71.7, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "5", + }, + [1569] = { + ["coords"] = { + [1] = { 30.8, 66.2, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "5", + }, + [1570] = { + ["coords"] = { + [1] = { 32.2, 66, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "5", + }, + [1571] = { + ["coords"] = { + [1] = { 9.5, 59.7, 11, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [1572] = { + ["coords"] = { + [1] = { 96.1, 47.1, 1, 600 }, + [2] = { 33.9, 51, 38, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [1573] = { + ["coords"] = { + [1] = { 55.5, 47.7, 1537, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [1574] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [1575] = { + ["coords"] = {}, + ["lvl"] = "5", + }, + [1576] = { + ["coords"] = {}, + ["lvl"] = "10", + }, + [1577] = { + ["coords"] = {}, + ["lvl"] = "15", + }, + [1578] = { + ["coords"] = {}, + ["lvl"] = "20", + }, + [1579] = { + ["coords"] = {}, + ["lvl"] = "30", + }, + [1580] = { + ["coords"] = {}, + ["lvl"] = "40", + }, + [1581] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [1582] = { + ["coords"] = {}, + ["lvl"] = "5", + }, + [1583] = { + ["coords"] = {}, + ["lvl"] = "10", + }, + [1584] = { + ["coords"] = {}, + ["lvl"] = "15", + }, + [1585] = { + ["coords"] = {}, + ["lvl"] = "20", + }, + [1586] = { + ["coords"] = {}, + ["lvl"] = "30", + }, + [1587] = { + ["coords"] = {}, + ["lvl"] = "40", + }, + [1588] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [1589] = { + ["coords"] = {}, + ["lvl"] = "5", + }, + [1590] = { + ["coords"] = {}, + ["lvl"] = "10", + }, + [1591] = { + ["coords"] = {}, + ["lvl"] = "15", + }, + [1592] = { + ["coords"] = {}, + ["lvl"] = "20", + }, + [1593] = { + ["coords"] = {}, + ["lvl"] = "30", + }, + [1594] = { + ["coords"] = {}, + ["lvl"] = "40", + }, + [1595] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [1596] = { + ["coords"] = {}, + ["lvl"] = "5", + }, + [1597] = { + ["coords"] = {}, + ["lvl"] = "10", + }, + [1598] = { + ["coords"] = {}, + ["lvl"] = "15", + }, + [1599] = { + ["coords"] = {}, + ["lvl"] = "20", + }, + [1600] = { + ["coords"] = {}, + ["lvl"] = "30", + }, + [1601] = { + ["coords"] = {}, + ["lvl"] = "40", + }, + [1602] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [1603] = { + ["coords"] = {}, + ["lvl"] = "5", + }, + [1604] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [1605] = { + ["coords"] = {}, + ["lvl"] = "10", + }, + [1606] = { + ["coords"] = {}, + ["lvl"] = "15", + }, + [1607] = { + ["coords"] = {}, + ["lvl"] = "5", + }, + [1608] = { + ["coords"] = {}, + ["lvl"] = "10", + }, + [1609] = { + ["coords"] = {}, + ["lvl"] = "15", + }, + [1613] = { + ["coords"] = {}, + ["lvl"] = "20", + }, + [1614] = { + ["coords"] = {}, + ["lvl"] = "30", + }, + [1615] = { + ["coords"] = {}, + ["lvl"] = "40", + }, + [1616] = { + ["coords"] = {}, + ["lvl"] = "20", + }, + [1617] = { + ["coords"] = {}, + ["lvl"] = "30", + }, + [1618] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [1619] = { + ["coords"] = {}, + ["lvl"] = "40", + }, + [1620] = { + ["coords"] = {}, + ["lvl"] = "5", + }, + [1621] = { + ["coords"] = {}, + ["lvl"] = "10", + }, + [1622] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [1623] = { + ["coords"] = {}, + ["lvl"] = "15", + }, + [1624] = { + ["coords"] = {}, + ["lvl"] = "5", + }, + [1625] = { + ["coords"] = {}, + ["lvl"] = "20", + }, + [1626] = { + ["coords"] = {}, + ["lvl"] = "10", + }, + [1627] = { + ["coords"] = {}, + ["lvl"] = "15", + }, + [1628] = { + ["coords"] = {}, + ["lvl"] = "30", + }, + [1629] = { + ["coords"] = {}, + ["lvl"] = "20", + }, + [1631] = { + ["coords"] = {}, + ["lvl"] = "40", + }, + [1632] = { + ["coords"] = { + [1] = { 46.4, 62, 12, 285 }, + }, + ["fac"] = "A", + ["lvl"] = "22", + }, + [1633] = { + ["coords"] = {}, + ["lvl"] = "30", + }, + [1634] = { + ["coords"] = {}, + ["lvl"] = "40", + }, + [1635] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [1636] = { + ["coords"] = {}, + ["lvl"] = "5", + }, + [1637] = { + ["coords"] = {}, + ["lvl"] = "10", + }, + [1638] = { + ["coords"] = {}, + ["lvl"] = "15", + }, + [1639] = { + ["coords"] = {}, + ["lvl"] = "20", + }, + [1640] = { + ["coords"] = {}, + ["lvl"] = "30", + }, + [1641] = { + ["coords"] = {}, + ["lvl"] = "40", + }, + [1642] = { + ["coords"] = { + [1] = { 45.6, 48.5, 12, 430 }, + [2] = { 45.4, 48.4, 12, 430 }, + [3] = { 46.1, 47.9, 12, 430 }, + [4] = { 47.2, 47.9, 12, 430 }, + [5] = { 44, 47.3, 12, 430 }, + [6] = { 44.2, 46.8, 12, 430 }, + [7] = { 48.1, 42.1, 12, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [1643] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "23", + }, + [1644] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "35", + }, + [1645] = { + ["coords"] = { + [1] = { 25.4, 74, 12, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [1646] = { + ["coords"] = { + [1] = { 49.2, 30.3, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1649] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [1650] = { + ["coords"] = { + [1] = { 82.9, 63.3, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "11", + }, + [1651] = { + ["coords"] = { + [1] = { 47.6, 62.3, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "8", + }, + [1652] = { + ["coords"] = { + [1] = { 60.9, 52, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "24", + }, + [1653] = { + ["coords"] = { + [1] = { 30.6, 90.4, 33, 300 }, + [2] = { 33.1, 88.4, 33, 300 }, + [3] = { 33.5, 88, 33, 300 }, + [4] = { 30.6, 90.3, 33, 300 }, + [5] = { 30.7, 90.2, 33, 300 }, + [6] = { 30.7, 89.9, 33, 300 }, + [7] = { 30.6, 89.9, 33, 300 }, + [8] = { 30.5, 89.7, 33, 300 }, + [9] = { 30.6, 89.7, 33, 300 }, + [10] = { 30.6, 89.6, 33, 300 }, + [11] = { 30.7, 89.6, 33, 300 }, + [12] = { 29.4, 89.4, 33, 300 }, + [13] = { 29.4, 89.1, 33, 300 }, + [14] = { 29.3, 89.1, 33, 300 }, + [15] = { 29.3, 89, 33, 300 }, + [16] = { 29.4, 88.9, 33, 300 }, + [17] = { 29.4, 88.8, 33, 300 }, + [18] = { 29.3, 88.6, 33, 300 }, + [19] = { 29.3, 88.5, 33, 300 }, + [20] = { 29.2, 88.4, 33, 300 }, + [21] = { 32.9, 88.3, 33, 300 }, + [22] = { 33.6, 88.2, 33, 300 }, + [23] = { 33.6, 88.1, 33, 300 }, + [24] = { 33.3, 88.1, 33, 300 }, + [25] = { 32.8, 56.5, 33, 300 }, + [26] = { 32.8, 56.3, 33, 300 }, + [27] = { 32, 56.1, 33, 300 }, + [28] = { 32, 55.9, 33, 300 }, + [29] = { 32, 55.8, 33, 300 }, + [30] = { 31.8, 54.7, 33, 300 }, + [31] = { 32.1, 54.6, 33, 300 }, + [32] = { 31.8, 54.5, 33, 300 }, + [33] = { 32, 54.4, 33, 300 }, + [34] = { 31.9, 54.4, 33, 300 }, + [35] = { 32, 54.3, 33, 300 }, + [36] = { 31.5, 54.3, 33, 300 }, + [37] = { 31.8, 54.2, 33, 300 }, + [38] = { 31.9, 53.9, 33, 300 }, + }, + ["lvl"] = "44-45", + }, + [1654] = { + ["coords"] = { + [1] = { 46.7, 29.3, 85, 300 }, + }, + ["lvl"] = "10", + }, + [1655] = { + ["coords"] = { + [1] = { 49.7, 36.3, 85, 300 }, + }, + ["lvl"] = "10", + }, + [1656] = { + ["coords"] = { + [1] = { 44, 33.6, 85, 300 }, + }, + ["lvl"] = "10", + }, + [1657] = { + ["coords"] = { + [1] = { 47.3, 40.8, 85, 300 }, + }, + ["lvl"] = "9", + }, + [1658] = { + ["coords"] = { + [1] = { 52.8, 26.4, 85, 300 }, + }, + ["lvl"] = "13", + }, + [1659] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "10", + }, + [1660] = { + ["coords"] = { + [1] = { 79.5, 25.3, 85, 300 }, + [2] = { 79.4, 25.1, 85, 300 }, + }, + ["lvl"] = "8", + }, + [1661] = { + ["coords"] = { + [1] = { 30.9, 66.1, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "3", + }, + [1662] = { + ["coords"] = { + [1] = { 51.2, 67.8, 85, 300 }, + }, + ["lvl"] = "9", + }, + [1663] = { + ["coords"] = {}, + ["lvl"] = "26", + ["rnk"] = "1", + }, + [1664] = { + ["coords"] = { + [1] = { 78.8, 56.1, 85, 300 }, + }, + ["lvl"] = "11", + }, + [1665] = { + ["coords"] = { + [1] = { 79.5, 25.1, 85, 300 }, + }, + ["lvl"] = "12", + }, + [1666] = { + ["coords"] = {}, + ["lvl"] = "27", + ["rnk"] = "1", + }, + [1667] = { + ["coords"] = { + [1] = { 36.5, 68.8, 85, 300 }, + }, + ["lvl"] = "5", + }, + [1668] = { + ["coords"] = { + [1] = { 57.7, 53.9, 40, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [1669] = { + ["coords"] = { + [1] = { 43.5, 66.8, 40, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "20", + }, + [1670] = { + ["coords"] = { + [1] = { 57.8, 53.7, 40, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [1671] = { + ["coords"] = { + [1] = { 21.1, 46.2, 44, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [1672] = { + ["coords"] = { + [1] = { 75.7, 44.6, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [1673] = { + ["coords"] = { + [1] = { 76.3, 45.3, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "7", + }, + [1674] = { + ["coords"] = { + [1] = { 59.4, 44.2, 85, 300 }, + [2] = { 58.7, 43.9, 85, 300 }, + [3] = { 58.8, 42.7, 85, 300 }, + [4] = { 58.7, 42, 85, 300 }, + [5] = { 58.5, 40.6, 85, 300 }, + [6] = { 57.6, 39.4, 85, 300 }, + [7] = { 59.2, 39.3, 85, 300 }, + [8] = { 58.8, 38.5, 85, 300 }, + [9] = { 56.9, 38.2, 85, 300 }, + [10] = { 57.9, 37.2, 85, 300 }, + [11] = { 57.3, 36.1, 85, 300 }, + [12] = { 56.7, 35.4, 85, 300 }, + [13] = { 59.5, 35, 85, 300 }, + [14] = { 60, 34, 85, 300 }, + [15] = { 57.1, 33.8, 85, 300 }, + [16] = { 58.8, 33.7, 85, 300 }, + }, + ["lvl"] = "6-7", + }, + [1675] = { + ["coords"] = { + [1] = { 60.4, 38.9, 85, 300 }, + [2] = { 60.2, 38.4, 85, 300 }, + [3] = { 60.9, 37.2, 85, 300 }, + [4] = { 59.4, 37.1, 85, 300 }, + [5] = { 58.6, 36.1, 85, 300 }, + [6] = { 59.9, 36.1, 85, 300 }, + [7] = { 58, 35.2, 85, 300 }, + [8] = { 58.2, 34, 85, 300 }, + [9] = { 56.3, 33.7, 85, 300 }, + [10] = { 59.4, 33.7, 85, 300 }, + [11] = { 60.8, 33.6, 85, 300 }, + [12] = { 59.5, 32.7, 85, 300 }, + [13] = { 57.7, 32.6, 85, 300 }, + [14] = { 57.9, 32.5, 85, 300 }, + [15] = { 58.2, 32.5, 85, 300 }, + [16] = { 60.9, 32.5, 85, 300 }, + [17] = { 59.5, 31.9, 85, 300 }, + [18] = { 58, 31.8, 85, 300 }, + [19] = { 58.4, 31.7, 85, 300 }, + [20] = { 58.5, 31.3, 85, 300 }, + [21] = { 58.7, 31, 85, 300 }, + }, + ["lvl"] = "7-8", + }, + [1676] = { + ["coords"] = { + [1] = { 77.4, 48.8, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "31", + }, + [1677] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "10", + }, + [1678] = { + ["coords"] = { + [1] = { 27.5, 47.8, 44, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [1679] = { + ["coords"] = { + [1] = { 68.1, 56.1, 1, 285 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [1680] = { + ["coords"] = { + [1] = { 27, 51.1, 44, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [1681] = { + ["coords"] = { + [1] = { 37, 47.8, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [1682] = { + ["coords"] = { + [1] = { 34.8, 48.6, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [1683] = { + ["coords"] = { + [1] = { 40.6, 39.7, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [1684] = { + ["coords"] = { + [1] = { 40.3, 39.3, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [1685] = { + ["coords"] = { + [1] = { 82.5, 63.4, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [1686] = { + ["coords"] = { + [1] = { 83.2, 63.4, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [1687] = { + ["coords"] = { + [1] = { 83, 63, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [1688] = { + ["coords"] = { + [1] = { 24, 58.2, 85, 300 }, + }, + ["lvl"] = "5", + }, + [1689] = { + ["coords"] = { + [1] = { 70.9, 61.3, 1, 270 }, + [2] = { 74.9, 60.8, 1, 270 }, + [3] = { 73, 59.9, 1, 270 }, + [4] = { 78.7, 59.3, 1, 270 }, + [5] = { 75.7, 57.8, 1, 270 }, + [6] = { 79.7, 57.6, 1, 270 }, + [7] = { 79.4, 55.8, 1, 270 }, + [8] = { 81.6, 55.4, 1, 270 }, + [9] = { 73.5, 55.2, 1, 270 }, + [10] = { 71.2, 54, 1, 270 }, + [11] = { 81.4, 53.1, 1, 270 }, + [12] = { 74, 53, 1, 270 }, + [13] = { 79.6, 51.9, 1, 270 }, + [14] = { 84.9, 50.7, 1, 270 }, + [15] = { 73.5, 50.6, 1, 270 }, + [16] = { 86.7, 50.2, 1, 270 }, + [17] = { 75.7, 49.9, 1, 270 }, + [18] = { 78.9, 49.5, 1, 270 }, + [19] = { 74.1, 49, 1, 270 }, + [20] = { 74.9, 48.9, 1, 270 }, + [21] = { 84.7, 48.3, 1, 270 }, + [22] = { 80.2, 47.5, 1, 270 }, + [23] = { 86.3, 47.5, 1, 270 }, + [24] = { 79.8, 46.4, 1, 270 }, + [25] = { 81, 43.9, 1, 270 }, + [26] = { 80.1, 43.9, 1, 270 }, + [27] = { 83.2, 38.1, 1, 270 }, + [28] = { 82.5, 37.8, 1, 270 }, + [29] = { 82.7, 35.5, 1, 270 }, + [30] = { 80.8, 35.3, 1, 270 }, + [31] = { 80.2, 34.7, 1, 270 }, + [32] = { 83.1, 33.1, 1, 270 }, + [33] = { 17.1, 56.5, 38, 270 }, + }, + ["lvl"] = "9-10", + }, + [1690] = { + ["coords"] = { + [1] = { 45.3, 51.5, 1, 375 }, + }, + ["fac"] = "A", + ["lvl"] = "29", + }, + [1691] = { + ["coords"] = { + [1] = { 47.2, 52.4, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [1692] = { + ["coords"] = { + [1] = { 46.8, 53.7, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [1693] = { + ["coords"] = { + [1] = { 58.8, 57.8, 38, 300 }, + [2] = { 54.2, 56.2, 38, 300 }, + [3] = { 54, 55.2, 38, 300 }, + [4] = { 55.5, 53.5, 38, 300 }, + [5] = { 55.1, 52.9, 38, 300 }, + [6] = { 55.3, 52.7, 38, 300 }, + [7] = { 56.5, 52.6, 38, 300 }, + [8] = { 62.4, 51.5, 38, 300 }, + [9] = { 61.9, 45.4, 38, 300 }, + [10] = { 61.3, 43.3, 38, 300 }, + [11] = { 54.5, 41.7, 38, 300 }, + [12] = { 60.1, 41.6, 38, 300 }, + [13] = { 53.8, 40.4, 38, 300 }, + [14] = { 53.9, 39.6, 38, 300 }, + [15] = { 53.1, 39.2, 38, 300 }, + [16] = { 56.9, 39.1, 38, 300 }, + [17] = { 56.4, 37.8, 38, 300 }, + [18] = { 56.1, 37.8, 38, 300 }, + [19] = { 53.6, 37.4, 38, 300 }, + [20] = { 58.8, 36.8, 38, 300 }, + [21] = { 55.7, 36, 38, 300 }, + [22] = { 56.4, 35.9, 38, 300 }, + [23] = { 51.5, 35, 38, 300 }, + [24] = { 55.5, 33.8, 38, 300 }, + [25] = { 57.4, 31.6, 38, 300 }, + [26] = { 58.4, 24.1, 38, 300 }, + [27] = { 57.4, 21.9, 38, 300 }, + }, + ["lvl"] = "14-15", + }, + [1694] = { + ["coords"] = { + [1] = { 50.1, 49.4, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [1695] = { + ["coords"] = { + [1] = { 89.3, 45.9, 357, 300 }, + [2] = { 7.6, 17.9, 400, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [1696] = { + ["coords"] = {}, + ["lvl"] = "24", + ["rnk"] = "1", + }, + [1697] = { + ["coords"] = { + [1] = { 30.5, 46, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [1698] = { + ["coords"] = { + [1] = { 68.9, 56, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [1699] = { + ["coords"] = { + [1] = { 47.7, 52.3, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [1700] = { + ["coords"] = { + [1] = { 35.5, 40.2, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [1701] = { + ["coords"] = { + [1] = { 69.3, 55.5, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [1702] = { + ["coords"] = { + [1] = { 50.2, 50.4, 1, 285 }, + }, + ["fac"] = "A", + ["lvl"] = "24", + }, + [1703] = { + ["coords"] = { + [1] = { 43.8, 27.9, 1537, 285 }, + }, + ["fac"] = "A", + ["lvl"] = "24", + }, + [1706] = { + ["coords"] = {}, + ["lvl"] = "23-24", + ["rnk"] = "1", + }, + [1707] = { + ["coords"] = {}, + ["lvl"] = "23-24", + ["rnk"] = "1", + }, + [1708] = { + ["coords"] = {}, + ["lvl"] = "24-25", + ["rnk"] = "1", + }, + [1711] = { + ["coords"] = {}, + ["lvl"] = "24-25", + ["rnk"] = "1", + }, + [1713] = { + ["coords"] = { + [1] = { 31.2, 58.5, 33, 300 }, + [2] = { 36.1, 58.4, 33, 300 }, + [3] = { 29.8, 58, 33, 300 }, + [4] = { 35.6, 57.8, 33, 300 }, + [5] = { 36.1, 56.8, 33, 300 }, + [6] = { 36.7, 55.9, 33, 300 }, + [7] = { 35.4, 55.7, 33, 300 }, + [8] = { 36.3, 55.3, 33, 300 }, + [9] = { 36.6, 55.2, 33, 300 }, + }, + ["lvl"] = "42-43", + }, + [1714] = { + ["coords"] = {}, + ["lvl"] = "26", + }, + [1715] = { + ["coords"] = {}, + ["lvl"] = "25-26", + ["rnk"] = "1", + }, + [1716] = { + ["coords"] = {}, + ["lvl"] = "29", + ["rnk"] = "1", + }, + [1717] = { + ["coords"] = {}, + ["lvl"] = "28", + ["rnk"] = "1", + }, + [1718] = { + ["coords"] = { + [1] = { 34.6, 70.8, 1, 270 }, + [2] = { 33.9, 69.8, 1, 270 }, + [3] = { 34.9, 69.4, 1, 270 }, + [4] = { 35.6, 69.3, 1, 270 }, + [5] = { 35.6, 69.2, 1, 270 }, + [6] = { 34.1, 68.8, 1, 270 }, + [7] = { 35, 68.4, 1, 270 }, + [8] = { 35.6, 67.9, 1, 270 }, + [9] = { 35.7, 66.8, 1, 270 }, + [10] = { 35.6, 65.7, 1, 270 }, + }, + ["lvl"] = "3-4", + }, + [1719] = { + ["coords"] = { + [1] = { 41.1, 58.1, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1720] = { + ["coords"] = {}, + ["lvl"] = "26", + ["rnk"] = "2", + }, + [1721] = { + ["coords"] = { + [1] = { 73.4, 50.7, 1519, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [1723] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "1", + }, + [1724] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "1", + }, + [1725] = { + ["coords"] = { + [1] = { 42.9, 80.4, 40, 300 }, + [2] = { 39.2, 79, 40, 300 }, + [3] = { 40, 78.5, 40, 300 }, + [4] = { 40, 78, 40, 300 }, + [5] = { 39.6, 77.6, 40, 300 }, + }, + ["lvl"] = "16-17", + ["rnk"] = "1", + }, + [1726] = { + ["coords"] = { + [1] = { 42.2, 79.2, 40, 300 }, + [2] = { 42.6, 79.1, 40, 300 }, + }, + ["lvl"] = "16-17", + ["rnk"] = "1", + }, + [1727] = { + ["coords"] = { + [1] = { 43.2, 80.5, 40, 300 }, + [2] = { 42.1, 80.2, 40, 300 }, + [3] = { 42.4, 80, 40, 300 }, + [4] = { 41.6, 79.9, 40, 300 }, + [5] = { 39.2, 79.8, 40, 300 }, + [6] = { 41.3, 79.8, 40, 300 }, + [7] = { 38.9, 79.7, 40, 300 }, + [8] = { 43.3, 79.6, 40, 300 }, + [9] = { 42.8, 79.5, 40, 300 }, + [10] = { 40.7, 79.4, 40, 300 }, + [11] = { 44, 79.3, 40, 300 }, + [12] = { 43.6, 79.1, 40, 300 }, + [13] = { 39.5, 78.9, 40, 300 }, + [14] = { 38.6, 78.9, 40, 300 }, + [15] = { 40.8, 78.9, 40, 300 }, + [16] = { 43.1, 78.9, 40, 300 }, + [17] = { 42.2, 78.8, 40, 300 }, + [18] = { 42.9, 78.6, 40, 300 }, + [19] = { 39.7, 78.6, 40, 300 }, + [20] = { 40.5, 78.5, 40, 300 }, + [21] = { 43.2, 78.4, 40, 300 }, + [22] = { 40.3, 78.1, 40, 300 }, + [23] = { 39.3, 77.9, 40, 300 }, + [24] = { 39.8, 77.5, 40, 300 }, + [25] = { 39.1, 77.5, 40, 300 }, + [26] = { 39.6, 76.9, 40, 300 }, + [27] = { 39.8, 76.1, 40, 300 }, + [28] = { 39.4, 76, 40, 300 }, + }, + ["lvl"] = "16-17", + }, + [1729] = { + ["coords"] = {}, + ["lvl"] = "17-18", + ["rnk"] = "1", + }, + [1730] = { + ["coords"] = {}, + ["lvl"] = "16", + ["rnk"] = "1", + }, + [1731] = { + ["coords"] = {}, + ["lvl"] = "18-19", + ["rnk"] = "1", + }, + [1732] = { + ["coords"] = {}, + ["lvl"] = "19-20", + ["rnk"] = "1", + }, + [1733] = { + ["coords"] = { + [1] = { 26.5, 78.7, 1519, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [1735] = { + ["coords"] = { + [1] = { 53.6, 53, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "22", + }, + [1736] = { + ["coords"] = { + [1] = { 31.9, 64.9, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [1737] = { + ["coords"] = { + [1] = { 31.5, 66.7, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [1738] = { + ["coords"] = { + [1] = { 63.5, 56.6, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "21", + }, + [1739] = { + ["coords"] = { + [1] = { 32.3, 66.1, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [1740] = { + ["coords"] = { + [1] = { 31.6, 65.6, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "7", + }, + [1741] = { + ["coords"] = { + [1] = { 32.1, 65.1, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [1742] = { + ["coords"] = { + [1] = { 58.5, 51.4, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "22", + }, + [1743] = { + ["coords"] = { + [1] = { 58.5, 51.4, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "22", + }, + [1744] = { + ["coords"] = { + [1] = { 61.4, 53, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "24", + }, + [1745] = { + ["coords"] = { + [1] = { 60.2, 52.4, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "22", + }, + [1746] = { + ["coords"] = { + [1] = { 60.7, 51.9, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "21", + }, + [1747] = { + ["coords"] = { + [1] = { 78.1, 17.9, 1519, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [1748] = { + ["coords"] = { + [1] = { 78.2, 18, 1519, 86400 }, + }, + ["fac"] = "A", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [1749] = { + ["coords"] = { + [1] = { 78.1, 17.8, 1519, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "62", + }, + [1750] = { + ["coords"] = { + [1] = { 81.8, 12.9, 1519, 2100 }, + }, + ["fac"] = "A", + ["lvl"] = "62", + }, + [1751] = { + ["coords"] = { + [1] = { 82.1, 13.6, 1519, 2100 }, + }, + ["fac"] = "A", + ["lvl"] = "62", + }, + [1752] = { + ["coords"] = { + [1] = { 75.4, 28.4, 1519, 490 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [1753] = { + ["coords"] = { + [1] = { 58.7, 30.8, 85, 300 }, + }, + ["lvl"] = "10", + }, + [1754] = { + ["coords"] = { + [1] = { 73.4, 6, 1519, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "31", + }, + [1755] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1756] = { + ["coords"] = { + [1] = { 69.2, 29.3, 1519, 430 }, + [2] = { 68.8, 28.4, 1519, 430 }, + [3] = { 73.7, 28.3, 1519, 430 }, + [4] = { 74, 28.3, 1519, 350 }, + [5] = { 70.1, 28.2, 1519, 430 }, + [6] = { 74.1, 27.9, 1519, 430 }, + [7] = { 69.9, 27.8, 1519, 350 }, + [8] = { 69.7, 27.4, 1519, 430 }, + [9] = { 75.9, 21.3, 1519, 430 }, + [10] = { 75.4, 20.5, 1519, 430 }, + [11] = { 78.5, 19.8, 1519, 430 }, + [12] = { 77.5, 19.6, 1519, 430 }, + [13] = { 79.2, 18.9, 1519, 430 }, + [14] = { 76.9, 18.5, 1519, 430 }, + [15] = { 79.3, 17.4, 1519, 430 }, + [16] = { 77, 17, 1519, 430 }, + [17] = { 78.7, 16.3, 1519, 430 }, + [18] = { 77.8, 16.1, 1519, 430 }, + [19] = { 77.7, 15.9, 1519, 430 }, + [20] = { 80.7, 15.5, 1519, 430 }, + [21] = { 80.2, 14.7, 1519, 430 }, + [22] = { 69.3, 12.9, 1519, 430 }, + [23] = { 69, 12.3, 1519, 430 }, + [24] = { 72.4, 9.4, 1519, 430 }, + [25] = { 71.9, 8.6, 1519, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [1757] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [1758] = { + ["coords"] = {}, + ["lvl"] = "20", + ["rnk"] = "1", + }, + [1759] = { + ["coords"] = {}, + ["lvl"] = "20", + ["rnk"] = "1", + }, + [1760] = { + ["coords"] = {}, + ["lvl"] = "20", + ["rnk"] = "1", + }, + [1761] = { + ["coords"] = {}, + ["lvl"] = "20", + ["rnk"] = "1", + }, + [1762] = { + ["coords"] = {}, + ["lvl"] = "20", + ["rnk"] = "1", + }, + [1763] = { + ["coords"] = {}, + ["lvl"] = "20", + ["rnk"] = "1", + }, + [1764] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [1765] = { + ["coords"] = { + [1] = { 51.8, 77.2, 85, 300 }, + [2] = { 51, 77.1, 85, 300 }, + [3] = { 51.9, 77, 85, 300 }, + [4] = { 53.2, 74.7, 85, 300 }, + [5] = { 43.2, 52.4, 130, 300 }, + [6] = { 45.8, 50.2, 130, 300 }, + [7] = { 47.9, 48.1, 130, 300 }, + [8] = { 44.2, 47.9, 130, 300 }, + [9] = { 46.5, 45.9, 130, 300 }, + [10] = { 65, 11.2, 130, 300 }, + [11] = { 63.8, 11.1, 130, 300 }, + [12] = { 66, 10.4, 130, 300 }, + [13] = { 66.4, 9, 130, 300 }, + [14] = { 66.1, 8.8, 130, 300 }, + [15] = { 67.6, 8.4, 130, 300 }, + [16] = { 58, 8.3, 130, 300 }, + [17] = { 64.4, 8, 130, 300 }, + [18] = { 69.1, 7.8, 130, 300 }, + [19] = { 63.7, 7.4, 130, 300 }, + [20] = { 69.3, 7.4, 130, 300 }, + [21] = { 64.8, 7.3, 130, 300 }, + [22] = { 70.2, 7.1, 130, 300 }, + [23] = { 69.8, 6.9, 130, 300 }, + [24] = { 68.3, 6.6, 130, 300 }, + [25] = { 66.6, 6.3, 130, 300 }, + [26] = { 68.3, 6.3, 130, 300 }, + [27] = { 64.8, 5.9, 130, 300 }, + [28] = { 65.7, 5.5, 130, 300 }, + [29] = { 68.9, 5.5, 130, 300 }, + [30] = { 64.8, 5.5, 130, 300 }, + [31] = { 65.8, 5.3, 130, 300 }, + [32] = { 68.8, 4.9, 130, 300 }, + [33] = { 70, 4.7, 130, 300 }, + [34] = { 69.9, 4.3, 130, 300 }, + [35] = { 67.1, 2.9, 130, 300 }, + [36] = { 25.4, 45.6, 1497, 300 }, + }, + ["lvl"] = "10-11", + }, + [1766] = { + ["coords"] = { + [1] = { 44.5, 26.8, 130, 413 }, + [2] = { 47.6, 25.7, 130, 413 }, + [3] = { 46.4, 25.6, 130, 413 }, + [4] = { 44.5, 25.4, 130, 413 }, + [5] = { 47.7, 24.7, 130, 413 }, + [6] = { 47, 22.8, 130, 413 }, + [7] = { 49.2, 22.5, 130, 413 }, + [8] = { 47.6, 21.9, 130, 413 }, + [9] = { 50.9, 21.8, 130, 413 }, + [10] = { 48.9, 20.1, 130, 413 }, + [11] = { 50.9, 19.5, 130, 413 }, + [12] = { 50.5, 17.9, 130, 413 }, + [13] = { 52.3, 17.5, 130, 413 }, + [14] = { 55.5, 17.3, 130, 413 }, + [15] = { 56.4, 16.2, 130, 413 }, + [16] = { 59.5, 16, 130, 413 }, + [17] = { 57.4, 15.8, 130, 413 }, + [18] = { 49.4, 15.4, 130, 413 }, + [19] = { 57.9, 14.1, 130, 413 }, + [20] = { 54.9, 13.6, 130, 413 }, + [21] = { 50.1, 13.6, 130, 413 }, + [22] = { 59.2, 13.6, 130, 413 }, + [23] = { 54.5, 12.8, 130, 413 }, + [24] = { 55.3, 12.7, 130, 413 }, + [25] = { 56.2, 12.5, 130, 413 }, + [26] = { 61.2, 11.9, 130, 413 }, + [27] = { 63.1, 10.9, 130, 413 }, + [28] = { 57.1, 10.8, 130, 413 }, + [29] = { 58.9, 10.5, 130, 413 }, + [30] = { 59.8, 10.4, 130, 413 }, + [31] = { 56.2, 10.2, 130, 413 }, + [32] = { 57.8, 10, 130, 413 }, + [33] = { 57.1, 10, 130, 413 }, + [34] = { 61, 9, 130, 413 }, + [35] = { 59.7, 8.9, 130, 413 }, + [36] = { 57.7, 8.8, 130, 413 }, + [37] = { 61.8, 8.8, 130, 413 }, + [38] = { 62.1, 8.5, 130, 413 }, + [39] = { 56.4, 8, 130, 413 }, + [40] = { 58.5, 6.8, 130, 413 }, + }, + ["lvl"] = "11-12", + }, + [1767] = { + ["coords"] = { + [1] = { 56.1, 28.4, 130, 413 }, + [2] = { 55.7, 28.2, 130, 413 }, + [3] = { 56.1, 28, 130, 413 }, + [4] = { 56.1, 27.7, 130, 413 }, + [5] = { 56.5, 25.9, 130, 413 }, + [6] = { 57.4, 25.8, 130, 413 }, + [7] = { 56.8, 25.3, 130, 413 }, + [8] = { 57.9, 24.6, 130, 413 }, + [9] = { 57, 23.8, 130, 413 }, + [10] = { 57.7, 23.5, 130, 413 }, + [11] = { 57.6, 22.5, 130, 413 }, + [12] = { 57.1, 22, 130, 413 }, + [13] = { 57.4, 21.2, 130, 413 }, + [14] = { 57.7, 21.2, 130, 413 }, + [15] = { 56.9, 19.3, 130, 413 }, + [16] = { 58.4, 18.4, 130, 413 }, + [17] = { 58.9, 18, 130, 413 }, + [18] = { 59.9, 17.4, 130, 413 }, + [19] = { 58.6, 17.2, 130, 413 }, + [20] = { 59.4, 17.2, 130, 413 }, + [21] = { 59.9, 16.5, 130, 413 }, + [22] = { 61.3, 15.9, 130, 413 }, + [23] = { 60.3, 15.6, 130, 413 }, + [24] = { 60.1, 14.9, 130, 413 }, + [25] = { 61.1, 14.5, 130, 413 }, + [26] = { 62.3, 13.9, 130, 413 }, + [27] = { 65.1, 13.5, 130, 413 }, + [28] = { 60.7, 13.5, 130, 413 }, + [29] = { 61.6, 13.2, 130, 413 }, + [30] = { 66.6, 13, 130, 413 }, + [31] = { 65.6, 13, 130, 413 }, + [32] = { 64.2, 12.9, 130, 413 }, + [33] = { 63.4, 12.8, 130, 413 }, + [34] = { 62.1, 12.8, 130, 413 }, + [35] = { 63.8, 12.6, 130, 413 }, + [36] = { 65.8, 12.5, 130, 413 }, + [37] = { 66.6, 12.5, 130, 413 }, + [38] = { 64.6, 12.5, 130, 413 }, + [39] = { 62.8, 12.4, 130, 413 }, + [40] = { 63.8, 12.1, 130, 413 }, + [41] = { 67, 11.7, 130, 413 }, + [42] = { 65.1, 11.6, 130, 413 }, + [43] = { 64.2, 11.4, 130, 413 }, + }, + ["lvl"] = "12-13", + }, + [1768] = { + ["coords"] = { + [1] = { 56.3, 27.7, 130, 413 }, + [2] = { 56.2, 27.5, 130, 413 }, + [3] = { 56, 27.2, 130, 413 }, + [4] = { 57.8, 20, 130, 413 }, + [5] = { 57.3, 19, 130, 413 }, + [6] = { 59.6, 18.6, 130, 413 }, + [7] = { 57.6, 18.4, 130, 413 }, + [8] = { 59.1, 18.1, 130, 413 }, + [9] = { 58, 17.9, 130, 413 }, + [10] = { 59.6, 17.8, 130, 413 }, + [11] = { 59.1, 17.8, 130, 413 }, + [12] = { 59.9, 17.7, 130, 413 }, + [13] = { 60.5, 17.5, 130, 413 }, + [14] = { 60.7, 16.7, 130, 413 }, + [15] = { 60.9, 16.4, 130, 413 }, + [16] = { 61.7, 14.2, 130, 413 }, + [17] = { 66.2, 13.2, 130, 413 }, + [18] = { 66.5, 13.2, 130, 413 }, + [19] = { 62.9, 13, 130, 413 }, + [20] = { 65.2, 12.9, 130, 413 }, + [21] = { 66.1, 12.8, 130, 413 }, + [22] = { 66.3, 12.7, 130, 413 }, + [23] = { 66.6, 12.7, 130, 413 }, + [24] = { 67, 12.6, 130, 413 }, + [25] = { 65.1, 13.5, 130, 413 }, + [26] = { 64.6, 12.5, 130, 413 }, + }, + ["lvl"] = "13-14", + }, + [1769] = { + ["coords"] = { + [1] = { 50.7, 47.8, 130, 413 }, + [2] = { 51.8, 46.6, 130, 413 }, + [3] = { 51.8, 44.9, 130, 413 }, + [4] = { 53.9, 43.2, 130, 413 }, + [5] = { 51.4, 43, 130, 413 }, + [6] = { 52, 41.7, 130, 413 }, + [7] = { 54.1, 41.4, 130, 413 }, + [8] = { 48.3, 40.8, 130, 413 }, + [9] = { 49.8, 40.7, 130, 413 }, + [10] = { 55.3, 40.3, 130, 413 }, + [11] = { 49.2, 39.6, 130, 413 }, + [12] = { 50.2, 39.2, 130, 413 }, + [13] = { 52.9, 38, 130, 413 }, + [14] = { 48.9, 36.7, 130, 413 }, + [15] = { 48.4, 35.2, 130, 413 }, + [16] = { 49.4, 34.9, 130, 413 }, + [17] = { 47.8, 34.1, 130, 413 }, + [18] = { 49.1, 34, 130, 413 }, + [19] = { 48.5, 31.7, 130, 413 }, + [20] = { 52.8, 28.5, 130, 413 }, + [21] = { 51.8, 28.1, 130, 413 }, + [22] = { 52.4, 28, 130, 413 }, + [23] = { 52.3, 26.9, 130, 413 }, + [24] = { 54.5, 26.7, 130, 413 }, + [25] = { 53, 26.7, 130, 413 }, + [26] = { 51.4, 26.5, 130, 413 }, + [27] = { 52, 26.3, 130, 413 }, + [28] = { 52.7, 26.2, 130, 413 }, + [29] = { 55.9, 25.4, 130, 413 }, + [30] = { 52.2, 24.8, 130, 413 }, + [31] = { 54.2, 24.6, 130, 413 }, + [32] = { 53.4, 24.4, 130, 413 }, + [33] = { 54.5, 23.8, 130, 413 }, + [34] = { 55.4, 23.1, 130, 413 }, + [35] = { 53.6, 22.5, 130, 413 }, + [36] = { 54.9, 21.7, 130, 413 }, + [37] = { 56, 20.9, 130, 413 }, + [38] = { 54.8, 20.8, 130, 413 }, + [39] = { 55.5, 20.8, 130, 413 }, + [40] = { 55.6, 20.4, 130, 413 }, + [41] = { 55.5, 20, 130, 413 }, + [42] = { 55.1, 20, 130, 413 }, + [43] = { 55.8, 19.9, 130, 413 }, + [44] = { 55.7, 19.8, 130, 413 }, + [45] = { 56.7, 19.5, 130, 413 }, + [46] = { 55.7, 19.1, 130, 413 }, + [47] = { 56.3, 18.6, 130, 413 }, + }, + ["lvl"] = "10-11", + }, + [1770] = { + ["coords"] = { + [1] = { 52.8, 28.2, 130, 413 }, + [2] = { 52.8, 28.1, 130, 413 }, + [3] = { 52.9, 27.6, 130, 413 }, + [4] = { 53.9, 27.2, 130, 413 }, + [5] = { 52.7, 26, 130, 413 }, + [6] = { 47.7, 25.2, 130, 413 }, + [7] = { 53.2, 25.1, 130, 413 }, + [8] = { 48.9, 24.9, 130, 413 }, + [9] = { 48.3, 24.5, 130, 413 }, + [10] = { 48.5, 24.5, 130, 413 }, + [11] = { 53.6, 24.5, 130, 413 }, + [12] = { 52.8, 24.3, 130, 413 }, + [13] = { 48.8, 24, 130, 413 }, + [14] = { 48.7, 23.2, 130, 413 }, + }, + ["lvl"] = "11-12", + }, + [1772] = { + ["coords"] = { + [1] = { 44.9, 23.8, 130, 413 }, + [2] = { 44.2, 23.5, 130, 413 }, + [3] = { 46.2, 23.5, 130, 413 }, + [4] = { 45.7, 23.4, 130, 413 }, + [5] = { 44.4, 23, 130, 413 }, + [6] = { 44.7, 22.6, 130, 413 }, + [7] = { 46.5, 21.8, 130, 413 }, + [8] = { 44.7, 20.4, 130, 413 }, + [9] = { 43.9, 20, 130, 413 }, + [10] = { 45.4, 19.8, 130, 413 }, + [11] = { 45.7, 19, 130, 413 }, + }, + ["lvl"] = "11-12", + }, + [1773] = { + ["coords"] = { + [1] = { 45.1, 23.6, 130, 413 }, + [2] = { 45, 22.9, 130, 413 }, + [3] = { 45.7, 22.7, 130, 413 }, + [4] = { 44.2, 22.5, 130, 413 }, + [5] = { 44.1, 21.7, 130, 413 }, + [6] = { 44.3, 21.7, 130, 413 }, + [7] = { 44.4, 19.6, 130, 413 }, + [8] = { 45.6, 19.3, 130, 413 }, + }, + ["lvl"] = "12-13", + }, + [1775] = { + ["coords"] = { + [1] = { 45, 54.8, 8, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [1776] = { + ["coords"] = { + [1] = { 26, 31.4, 8, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "42", + }, + [1777] = { + ["coords"] = { + [1] = { 35.4, 42.8, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [1778] = { + ["coords"] = { + [1] = { 44.1, 52, 130, 413 }, + [2] = { 45, 51.9, 130, 413 }, + [3] = { 44.6, 50.4, 130, 413 }, + [4] = { 46.3, 49.6, 130, 413 }, + [5] = { 44.2, 48.2, 130, 413 }, + [6] = { 44.9, 47.3, 130, 413 }, + [7] = { 47, 46.5, 130, 413 }, + [8] = { 51.3, 45.4, 130, 413 }, + [9] = { 50.8, 44.9, 130, 413 }, + [10] = { 55.2, 44.2, 130, 413 }, + [11] = { 54.5, 43.9, 130, 413 }, + [12] = { 50.2, 43.4, 130, 413 }, + [13] = { 51.1, 42.5, 130, 413 }, + [14] = { 50.6, 40.8, 130, 413 }, + [15] = { 53.6, 39.8, 130, 413 }, + [16] = { 51.3, 38.7, 130, 413 }, + [17] = { 51, 38.4, 130, 413 }, + [18] = { 54.3, 38.2, 130, 413 }, + [19] = { 50.1, 36.3, 130, 413 }, + [20] = { 46.9, 33.5, 130, 413 }, + [21] = { 47.3, 33, 130, 413 }, + [22] = { 48.8, 32.9, 130, 413 }, + [23] = { 48.8, 26.3, 130, 413 }, + [24] = { 46, 26, 130, 413 }, + [25] = { 44.5, 24.7, 130, 413 }, + [26] = { 48, 23.3, 130, 413 }, + [27] = { 49.7, 22.7, 130, 413 }, + [28] = { 51.9, 21.6, 130, 413 }, + [29] = { 48.2, 20.3, 130, 413 }, + [30] = { 50, 19.9, 130, 413 }, + [31] = { 52.2, 19.6, 130, 413 }, + [32] = { 47.6, 19.6, 130, 413 }, + [33] = { 48.3, 19.3, 130, 413 }, + [34] = { 51.2, 18.6, 130, 413 }, + [35] = { 50.4, 18.5, 130, 413 }, + [36] = { 49.4, 17.4, 130, 413 }, + [37] = { 51.3, 16.7, 130, 413 }, + [38] = { 51, 14.9, 130, 413 }, + [39] = { 49.1, 14.2, 130, 413 }, + }, + ["lvl"] = "11-12", + }, + [1779] = { + ["coords"] = { + [1] = { 55.5, 49.3, 130, 413 }, + [2] = { 54.9, 49.2, 130, 413 }, + [3] = { 54.7, 48.2, 130, 413 }, + [4] = { 56.4, 47.7, 130, 413 }, + [5] = { 56, 47.2, 130, 413 }, + [6] = { 55.6, 46.6, 130, 413 }, + [7] = { 56.5, 46.5, 130, 413 }, + [8] = { 55.9, 45.9, 130, 413 }, + [9] = { 56.9, 45.9, 130, 413 }, + [10] = { 56.2, 45.9, 130, 413 }, + [11] = { 56.3, 45.5, 130, 413 }, + [12] = { 58.3, 45.3, 130, 413 }, + [13] = { 58.2, 44.7, 130, 413 }, + [14] = { 42.9, 32.7, 130, 413 }, + [15] = { 44.5, 31.7, 130, 413 }, + [16] = { 43.5, 31.7, 130, 413 }, + [17] = { 44.2, 31.6, 130, 413 }, + [18] = { 43.5, 31.3, 130, 413 }, + [19] = { 41.2, 30.2, 130, 413 }, + [20] = { 40.8, 29.7, 130, 413 }, + [21] = { 42.1, 29.4, 130, 413 }, + [22] = { 38.8, 29.4, 130, 413 }, + [23] = { 43.6, 29.1, 130, 413 }, + [24] = { 40.5, 29, 130, 413 }, + [25] = { 43, 28.9, 130, 413 }, + [26] = { 41.3, 28.4, 130, 413 }, + [27] = { 46.6, 28.4, 130, 413 }, + [28] = { 44.1, 28, 130, 413 }, + [29] = { 39.6, 27.8, 130, 413 }, + [30] = { 46.5, 27.5, 130, 413 }, + [31] = { 45.3, 27.3, 130, 413 }, + [32] = { 39.2, 27, 130, 413 }, + [33] = { 39.6, 25.8, 130, 413 }, + [34] = { 41.1, 25.5, 130, 413 }, + [35] = { 48.8, 24.6, 130, 413 }, + [36] = { 40.7, 24.4, 130, 413 }, + [37] = { 48.3, 24.3, 130, 413 }, + [38] = { 39.7, 23.4, 130, 413 }, + [39] = { 41.3, 23.3, 130, 413 }, + [40] = { 37.9, 23.2, 130, 413 }, + [41] = { 38.7, 22, 130, 413 }, + [42] = { 50, 20.3, 130, 413 }, + [43] = { 51.5, 19.8, 130, 413 }, + [44] = { 49.8, 18.8, 130, 413 }, + [45] = { 48, 18, 130, 413 }, + [46] = { 52.8, 17.5, 130, 413 }, + [47] = { 49.6, 17, 130, 413 }, + [48] = { 51, 16.9, 130, 413 }, + [49] = { 50.7, 14.5, 130, 413 }, + }, + ["lvl"] = "12-13", + }, + [1780] = { + ["coords"] = { + [1] = { 34.2, 17.3, 130, 413 }, + [2] = { 35, 16.2, 130, 413 }, + [3] = { 35.7, 16, 130, 413 }, + [4] = { 37.3, 16, 130, 413 }, + [5] = { 34.2, 15.2, 130, 413 }, + [6] = { 35.7, 14.9, 130, 413 }, + [7] = { 36.5, 14.9, 130, 413 }, + [8] = { 35, 14.4, 130, 413 }, + [9] = { 36.3, 14.2, 130, 413 }, + [10] = { 35.5, 14, 130, 413 }, + [11] = { 35.9, 13.7, 130, 413 }, + [12] = { 35.5, 13.1, 130, 413 }, + [13] = { 34.8, 12.7, 130, 413 }, + [14] = { 34.9, 12.6, 130, 413 }, + [15] = { 35.4, 12.5, 130, 413 }, + }, + ["lvl"] = "12-13", + }, + [1781] = { + ["coords"] = { + [1] = { 35.5, 11.6, 130, 413 }, + [2] = { 35.1, 11.4, 130, 413 }, + [3] = { 35.4, 10.9, 130, 413 }, + [4] = { 35.5, 10.5, 130, 413 }, + [5] = { 35.3, 10.4, 130, 413 }, + [6] = { 35.1, 10.3, 130, 413 }, + [7] = { 34.7, 10.2, 130, 413 }, + [8] = { 35.3, 10.1, 130, 413 }, + [9] = { 34.5, 10, 130, 413 }, + [10] = { 35.1, 9.9, 130, 413 }, + [11] = { 34.2, 9.7, 130, 413 }, + [12] = { 35.2, 9.6, 130, 413 }, + [13] = { 34.3, 9.2, 130, 413 }, + [14] = { 36, 9, 130, 413 }, + [15] = { 35.4, 8.9, 130, 413 }, + [16] = { 35.9, 8.6, 130, 413 }, + [17] = { 34.5, 8.3, 130, 413 }, + [18] = { 35.3, 8.3, 130, 413 }, + [19] = { 34.8, 7.8, 130, 413 }, + }, + ["lvl"] = "13-14", + }, + [1782] = { + ["coords"] = { + [1] = { 56, 48.6, 130, 413 }, + [2] = { 57.3, 45.7, 130, 413 }, + [3] = { 57.3, 45.6, 130, 413 }, + [4] = { 58, 45.1, 130, 413 }, + [5] = { 58.2, 45, 130, 413 }, + [6] = { 57.5, 44.9, 130, 413 }, + [7] = { 57.8, 44.7, 130, 413 }, + [8] = { 59.4, 42.4, 130, 413 }, + [9] = { 58.6, 42.3, 130, 413 }, + [10] = { 60.4, 41.4, 130, 413 }, + [11] = { 60.4, 41.2, 130, 413 }, + [12] = { 58.7, 41.1, 130, 413 }, + [13] = { 43.5, 32.1, 130, 413 }, + [14] = { 43.2, 32, 130, 413 }, + [15] = { 43.3, 31.7, 130, 413 }, + [16] = { 43.1, 31.1, 130, 413 }, + [17] = { 43.7, 30.8, 130, 413 }, + [18] = { 39.7, 30.3, 130, 413 }, + [19] = { 45.5, 29.2, 130, 413 }, + [20] = { 38.3, 27.1, 130, 413 }, + [21] = { 40.2, 26.9, 130, 413 }, + [22] = { 38.4, 25.5, 130, 413 }, + [23] = { 38.8, 24.6, 130, 413 }, + [24] = { 37.6, 24.5, 130, 413 }, + [25] = { 36.8, 21.9, 130, 413 }, + }, + ["lvl"] = "13-14", + }, + [1783] = { + ["coords"] = { + [1] = { 47.4, 84.3, 28, 315 }, + [2] = { 48.1, 82.9, 28, 315 }, + [3] = { 49.6, 82.9, 28, 315 }, + [4] = { 47.3, 82, 28, 315 }, + [5] = { 48.9, 81.9, 28, 315 }, + [6] = { 49.3, 81.3, 28, 315 }, + [7] = { 54.7, 81, 28, 315 }, + [8] = { 54, 81, 28, 315 }, + [9] = { 54.5, 80.9, 28, 315 }, + [10] = { 48.1, 80.8, 28, 315 }, + [11] = { 49.9, 80.6, 28, 315 }, + [12] = { 50.7, 80.6, 28, 315 }, + [13] = { 50.4, 80.5, 28, 315 }, + [14] = { 47.3, 80.4, 28, 315 }, + [15] = { 48.7, 80.4, 28, 315 }, + [16] = { 54, 80.3, 28, 315 }, + [17] = { 48.9, 80.2, 28, 315 }, + [18] = { 53.9, 80.1, 28, 315 }, + [19] = { 50, 80.1, 28, 315 }, + [20] = { 48.4, 80, 28, 315 }, + [21] = { 50.4, 80, 28, 315 }, + [22] = { 54, 79.9, 28, 315 }, + [23] = { 54.6, 79.7, 28, 315 }, + [24] = { 48.8, 79.6, 28, 315 }, + [25] = { 48.1, 78.5, 28, 315 }, + [26] = { 49.9, 78, 28, 315 }, + [27] = { 49.4, 77.8, 28, 315 }, + [28] = { 50.1, 77.7, 28, 315 }, + [29] = { 49.8, 77.6, 28, 315 }, + [30] = { 49.9, 77.1, 28, 315 }, + [31] = { 49.4, 77.1, 28, 315 }, + [32] = { 50.3, 76.9, 28, 315 }, + [33] = { 51.1, 76.7, 28, 315 }, + [34] = { 49.9, 76.7, 28, 315 }, + [35] = { 49.6, 76.6, 28, 315 }, + [36] = { 51.2, 76.4, 28, 315 }, + [37] = { 49.9, 76.2, 28, 315 }, + [38] = { 50.8, 76.1, 28, 315 }, + [39] = { 49.5, 76.1, 28, 315 }, + [40] = { 50.9, 75.7, 28, 315 }, + [41] = { 50.4, 75.4, 28, 315 }, + [42] = { 50.2, 75, 28, 315 }, + [43] = { 37.3, 59.4, 28, 315 }, + [44] = { 36.1, 58.5, 28, 315 }, + [45] = { 37.6, 58.5, 28, 315 }, + [46] = { 37.1, 58.3, 28, 315 }, + [47] = { 37.6, 58.1, 28, 315 }, + [48] = { 36.6, 57.7, 28, 315 }, + [49] = { 36.2, 57.3, 28, 315 }, + [50] = { 38.6, 57.1, 28, 315 }, + [51] = { 35.6, 57, 28, 315 }, + [52] = { 38.8, 56.8, 28, 315 }, + [53] = { 36.8, 56.7, 28, 315 }, + [54] = { 37.6, 56.5, 28, 315 }, + [55] = { 38.3, 56.4, 28, 315 }, + [56] = { 39.1, 55.9, 28, 315 }, + [57] = { 35.9, 55.9, 28, 315 }, + [58] = { 36.6, 55.7, 28, 315 }, + [59] = { 37.8, 55.1, 28, 315 }, + [60] = { 37.4, 55.1, 28, 315 }, + [61] = { 38.1, 55.1, 28, 315 }, + [62] = { 38.9, 54.9, 28, 315 }, + [63] = { 36.5, 54.8, 28, 315 }, + [64] = { 36.9, 54.6, 28, 315 }, + [65] = { 39, 54.5, 28, 315 }, + [66] = { 38.3, 54.2, 28, 315 }, + [67] = { 38.1, 53.8, 28, 315 }, + [68] = { 85.8, 29.5, 36, 315 }, + }, + ["lvl"] = "50-51", + }, + [1784] = { + ["coords"] = { + [1] = { 53.9, 80.9, 28, 315 }, + [2] = { 54.8, 80.9, 28, 315 }, + [3] = { 54, 80.3, 28, 315 }, + [4] = { 54.7, 80.2, 28, 315 }, + [5] = { 54, 80, 28, 315 }, + [6] = { 54.8, 79.9, 28, 315 }, + [7] = { 54.7, 79.9, 28, 315 }, + [8] = { 54.6, 79.9, 28, 315 }, + [9] = { 54.2, 79.9, 28, 315 }, + [10] = { 53.9, 79.9, 28, 315 }, + [11] = { 54.8, 79.7, 28, 315 }, + [12] = { 54.1, 79.4, 28, 315 }, + [13] = { 37.5, 59.5, 28, 315 }, + [14] = { 38.5, 57.4, 28, 315 }, + [15] = { 37.4, 57.3, 28, 315 }, + [16] = { 37, 57.1, 28, 315 }, + [17] = { 35.6, 56.5, 28, 315 }, + [18] = { 37.4, 56.3, 28, 315 }, + [19] = { 35.7, 56.1, 28, 315 }, + [20] = { 38.8, 56, 28, 315 }, + [21] = { 38.6, 55.1, 28, 315 }, + [22] = { 39.3, 54.9, 28, 315 }, + [23] = { 37.7, 54.6, 28, 315 }, + [24] = { 37.1, 54.4, 28, 315 }, + [25] = { 36.6, 54.3, 28, 315 }, + [26] = { 38, 54.2, 28, 315 }, + [27] = { 37.5, 54.1, 28, 315 }, + [28] = { 38.5, 53.9, 28, 315 }, + [29] = { 36.1, 58.5, 28, 315 }, + [30] = { 37.6, 58.1, 28, 315 }, + [31] = { 36.2, 57.3, 28, 315 }, + [32] = { 37.4, 55.1, 28, 315 }, + }, + ["lvl"] = "51-52", + }, + [1785] = { + ["coords"] = { + [1] = { 45, 52, 28, 315 }, + [2] = { 45.8, 51.7, 28, 315 }, + [3] = { 46.5, 51.5, 28, 315 }, + [4] = { 47.5, 51.4, 28, 315 }, + [5] = { 48.1, 51.2, 28, 315 }, + [6] = { 45.2, 51.2, 28, 315 }, + [7] = { 47.7, 51, 28, 315 }, + [8] = { 47.9, 50.5, 28, 315 }, + [9] = { 47.1, 50.5, 28, 315 }, + [10] = { 45.9, 50.5, 28, 315 }, + [11] = { 47.2, 50.1, 28, 315 }, + [12] = { 47.7, 49.9, 28, 315 }, + [13] = { 47.4, 49.8, 28, 315 }, + [14] = { 46, 49.5, 28, 315 }, + [15] = { 47.3, 49.4, 28, 315 }, + }, + ["lvl"] = "52-54", + }, + [1787] = { + ["coords"] = { + [1] = { 45.7, 75, 28, 315 }, + [2] = { 41.1, 74.9, 28, 315 }, + [3] = { 42.6, 74.9, 28, 315 }, + [4] = { 44.3, 74.9, 28, 315 }, + [5] = { 41.8, 74.9, 28, 315 }, + [6] = { 43.4, 74.9, 28, 315 }, + [7] = { 46.7, 74.2, 28, 315 }, + [8] = { 45.9, 73.4, 28, 315 }, + [9] = { 41.7, 73.2, 28, 315 }, + [10] = { 41.5, 72.9, 28, 315 }, + [11] = { 44.6, 72.5, 28, 315 }, + [12] = { 47.2, 72.5, 28, 315 }, + [13] = { 45.7, 72.5, 28, 315 }, + [14] = { 39.4, 72.2, 28, 315 }, + [15] = { 46.2, 71.7, 28, 315 }, + [16] = { 47.1, 71.7, 28, 315 }, + [17] = { 42.6, 71.5, 28, 315 }, + [18] = { 39.9, 71.4, 28, 315 }, + [19] = { 48, 71.2, 28, 315 }, + [20] = { 44.6, 71.1, 28, 315 }, + [21] = { 38.9, 71.1, 28, 315 }, + [22] = { 46.6, 70.9, 28, 315 }, + [23] = { 45.9, 70.4, 28, 315 }, + [24] = { 39.5, 70.4, 28, 315 }, + [25] = { 40.4, 70.3, 28, 315 }, + [26] = { 48.8, 70.2, 28, 315 }, + [27] = { 38.7, 70.1, 28, 315 }, + [28] = { 42.6, 70, 28, 315 }, + [29] = { 44.7, 69.9, 28, 315 }, + [30] = { 44.5, 69.8, 28, 315 }, + [31] = { 48.6, 69.7, 28, 315 }, + [32] = { 44.5, 69.6, 28, 315 }, + [33] = { 38.7, 69.4, 28, 315 }, + [34] = { 45.9, 69.4, 28, 315 }, + [35] = { 39.5, 69.4, 28, 315 }, + [36] = { 41.8, 69.4, 28, 315 }, + [37] = { 46.6, 69.3, 28, 315 }, + [38] = { 45.9, 69.3, 28, 315 }, + [39] = { 42.6, 69.3, 28, 315 }, + [40] = { 48, 69.3, 28, 315 }, + [41] = { 41.1, 69.3, 28, 315 }, + [42] = { 40.2, 69.1, 28, 315 }, + [43] = { 45.9, 69.1, 28, 315 }, + [44] = { 47.3, 69.1, 28, 315 }, + [45] = { 48.8, 69, 28, 315 }, + [46] = { 44.5, 68.9, 28, 315 }, + [47] = { 44.5, 68.6, 28, 315 }, + [48] = { 44.6, 68.5, 28, 315 }, + [49] = { 41.8, 68.3, 28, 315 }, + [50] = { 38.7, 68.3, 28, 315 }, + [51] = { 41.9, 68.2, 28, 315 }, + [52] = { 49.5, 68.1, 28, 315 }, + [53] = { 39.9, 67.9, 28, 315 }, + [54] = { 39.5, 67.9, 28, 315 }, + [55] = { 42.6, 67.9, 28, 315 }, + [56] = { 50.3, 67.8, 28, 315 }, + [57] = { 39.7, 67.6, 28, 315 }, + [58] = { 45.7, 67.2, 28, 315 }, + [59] = { 44.3, 67.1, 28, 315 }, + [60] = { 42.7, 67.1, 28, 315 }, + [61] = { 45, 66.9, 28, 315 }, + [62] = { 49.6, 66.8, 28, 315 }, + [63] = { 48, 66.8, 28, 315 }, + [64] = { 42.2, 66.4, 28, 315 }, + [65] = { 40.6, 66.4, 28, 315 }, + [66] = { 46.8, 66.4, 28, 315 }, + [67] = { 41.5, 65.9, 28, 315 }, + [68] = { 49.5, 65.8, 28, 315 }, + [69] = { 44.3, 65.7, 28, 315 }, + [70] = { 40.2, 65.7, 28, 315 }, + [71] = { 45, 65.6, 28, 315 }, + [72] = { 48.2, 65.4, 28, 315 }, + [73] = { 42.8, 65.1, 28, 315 }, + [74] = { 44.4, 65, 28, 315 }, + [75] = { 49, 64.8, 28, 315 }, + [76] = { 44.1, 64.6, 28, 315 }, + [77] = { 46.5, 64.6, 28, 315 }, + [78] = { 41.8, 64.5, 28, 315 }, + [79] = { 43.5, 64.5, 28, 315 }, + [80] = { 43.8, 63.7, 28, 315 }, + [81] = { 43.1, 63.6, 28, 315 }, + [82] = { 49.5, 63.5, 28, 315 }, + [83] = { 47.4, 63.5, 28, 315 }, + [84] = { 48.8, 63.4, 28, 315 }, + [85] = { 48.1, 63.2, 28, 315 }, + [86] = { 45.8, 62.6, 28, 315 }, + [87] = { 42.7, 62.6, 28, 315 }, + [88] = { 47.5, 62.4, 28, 315 }, + [89] = { 43.9, 62.4, 28, 315 }, + [90] = { 44.9, 62.1, 28, 315 }, + [91] = { 41.8, 62.1, 28, 315 }, + [92] = { 45.5, 61.8, 28, 315 }, + [93] = { 47.2, 61.2, 28, 315 }, + [94] = { 45.7, 61, 28, 315 }, + }, + ["lvl"] = "54-55", + }, + [1788] = { + ["coords"] = { + [1] = { 40.4, 71.9, 28, 315 }, + [2] = { 46.7, 71.7, 28, 315 }, + [3] = { 45.5, 69.5, 28, 315 }, + [4] = { 45.6, 69, 28, 315 }, + [5] = { 42.6, 65.7, 28, 315 }, + [6] = { 43.9, 63.1, 28, 315 }, + }, + ["lvl"] = "56-57", + ["rnk"] = "1", + }, + [1789] = { + ["coords"] = { + [1] = { 42.1, 72.3, 28, 315 }, + [2] = { 43.5, 71.6, 28, 315 }, + [3] = { 41.1, 70.5, 28, 315 }, + [4] = { 40.2, 67, 28, 315 }, + [5] = { 38.7, 66.9, 28, 315 }, + [6] = { 39.6, 66.8, 28, 315 }, + [7] = { 45.7, 75, 28, 315 }, + [8] = { 41.1, 74.9, 28, 315 }, + [9] = { 42.6, 74.9, 28, 315 }, + [10] = { 44.3, 74.9, 28, 315 }, + [11] = { 41.8, 74.9, 28, 315 }, + [12] = { 43.4, 74.9, 28, 315 }, + [13] = { 46.7, 74.2, 28, 315 }, + [14] = { 45.9, 73.4, 28, 315 }, + [15] = { 41.7, 73.2, 28, 315 }, + [16] = { 41.5, 72.9, 28, 315 }, + [17] = { 44.6, 72.5, 28, 315 }, + [18] = { 47.2, 72.5, 28, 315 }, + [19] = { 45.7, 72.5, 28, 315 }, + [20] = { 39.4, 72.2, 28, 315 }, + [21] = { 46.2, 71.7, 28, 315 }, + [22] = { 47.1, 71.7, 28, 315 }, + [23] = { 42.6, 71.5, 28, 315 }, + [24] = { 39.9, 71.4, 28, 315 }, + [25] = { 48, 71.2, 28, 315 }, + [26] = { 44.6, 71.1, 28, 315 }, + [27] = { 38.9, 71.1, 28, 315 }, + [28] = { 46.6, 70.9, 28, 315 }, + [29] = { 45.9, 70.4, 28, 315 }, + [30] = { 39.5, 70.4, 28, 315 }, + [31] = { 48.8, 70.2, 28, 315 }, + [32] = { 38.7, 70.1, 28, 315 }, + [33] = { 42.6, 70, 28, 315 }, + [34] = { 44.7, 69.9, 28, 315 }, + [35] = { 44.5, 69.8, 28, 315 }, + [36] = { 48.6, 69.7, 28, 315 }, + [37] = { 44.5, 69.6, 28, 315 }, + [38] = { 45.9, 69.4, 28, 315 }, + [39] = { 39.5, 69.4, 28, 315 }, + [40] = { 41.8, 69.4, 28, 315 }, + [41] = { 46.6, 69.3, 28, 315 }, + [42] = { 45.9, 69.3, 28, 315 }, + [43] = { 42.6, 69.3, 28, 315 }, + [44] = { 48, 69.3, 28, 315 }, + [45] = { 41.1, 69.3, 28, 315 }, + [46] = { 40.2, 69.1, 28, 315 }, + [47] = { 45.9, 69.1, 28, 315 }, + [48] = { 47.3, 69.1, 28, 315 }, + [49] = { 48.8, 69, 28, 315 }, + [50] = { 44.5, 68.9, 28, 315 }, + [51] = { 44.5, 68.6, 28, 315 }, + [52] = { 44.6, 68.5, 28, 315 }, + [53] = { 41.8, 68.3, 28, 315 }, + [54] = { 38.7, 68.3, 28, 315 }, + [55] = { 41.9, 68.2, 28, 315 }, + [56] = { 49.5, 68.1, 28, 315 }, + [57] = { 39.9, 67.9, 28, 315 }, + [58] = { 39.5, 67.9, 28, 315 }, + [59] = { 50.3, 67.8, 28, 315 }, + [60] = { 39.7, 67.6, 28, 315 }, + [61] = { 45.7, 67.2, 28, 315 }, + [62] = { 44.3, 67.1, 28, 315 }, + [63] = { 42.7, 67.1, 28, 315 }, + [64] = { 45, 66.9, 28, 315 }, + [65] = { 49.6, 66.8, 28, 315 }, + [66] = { 48, 66.8, 28, 315 }, + [67] = { 42.2, 66.4, 28, 315 }, + [68] = { 40.6, 66.4, 28, 315 }, + [69] = { 46.8, 66.4, 28, 315 }, + [70] = { 41.5, 65.9, 28, 315 }, + [71] = { 49.5, 65.8, 28, 315 }, + [72] = { 44.3, 65.7, 28, 315 }, + [73] = { 40.2, 65.7, 28, 315 }, + [74] = { 45, 65.6, 28, 315 }, + [75] = { 48.2, 65.4, 28, 315 }, + [76] = { 42.8, 65.1, 28, 315 }, + [77] = { 44.4, 65, 28, 315 }, + [78] = { 49, 64.8, 28, 315 }, + [79] = { 44.1, 64.6, 28, 315 }, + [80] = { 46.5, 64.6, 28, 315 }, + [81] = { 41.8, 64.5, 28, 315 }, + [82] = { 43.5, 64.5, 28, 315 }, + [83] = { 43.8, 63.7, 28, 315 }, + [84] = { 43.1, 63.6, 28, 315 }, + [85] = { 49.5, 63.5, 28, 315 }, + [86] = { 47.4, 63.5, 28, 315 }, + [87] = { 48.8, 63.4, 28, 315 }, + [88] = { 48.1, 63.2, 28, 315 }, + [89] = { 45.8, 62.6, 28, 315 }, + [90] = { 42.7, 62.6, 28, 315 }, + [91] = { 47.5, 62.4, 28, 315 }, + [92] = { 43.9, 62.4, 28, 315 }, + [93] = { 44.9, 62.1, 28, 315 }, + [94] = { 41.8, 62.1, 28, 315 }, + [95] = { 45.5, 61.8, 28, 315 }, + [96] = { 47.2, 61.2, 28, 315 }, + [97] = { 45.7, 61, 28, 315 }, + }, + ["lvl"] = "55-56", + }, + [1791] = { + ["coords"] = { + [1] = { 50.1, 81.1, 28, 315 }, + [2] = { 54.8, 81, 28, 315 }, + [3] = { 54.7, 81, 28, 315 }, + [4] = { 54, 80.9, 28, 315 }, + [5] = { 54, 80.6, 28, 315 }, + [6] = { 53.8, 80.4, 28, 315 }, + [7] = { 54.1, 80.2, 28, 315 }, + [8] = { 53.9, 80.1, 28, 315 }, + [9] = { 37.6, 59.2, 28, 315 }, + [10] = { 37.1, 57.6, 28, 315 }, + [11] = { 38.9, 57.3, 28, 315 }, + [12] = { 37.6, 57, 28, 315 }, + [13] = { 36, 56.4, 28, 315 }, + [14] = { 37.1, 56.2, 28, 315 }, + [15] = { 38.4, 55.7, 28, 315 }, + [16] = { 39.1, 55.4, 28, 315 }, + [17] = { 38.8, 55.2, 28, 315 }, + [18] = { 36.7, 54.9, 28, 315 }, + [19] = { 38.5, 54.6, 28, 315 }, + [20] = { 38.2, 54.5, 28, 315 }, + [21] = { 37.1, 54.1, 28, 315 }, + [22] = { 37, 54, 28, 315 }, + [23] = { 37.8, 53.9, 28, 315 }, + [24] = { 49.6, 82.9, 28, 315 }, + [25] = { 48.9, 81.9, 28, 315 }, + [26] = { 49.3, 81.3, 28, 315 }, + [27] = { 49.9, 80.6, 28, 315 }, + [28] = { 50.7, 80.6, 28, 315 }, + [29] = { 50.4, 80.5, 28, 315 }, + [30] = { 48.7, 80.4, 28, 315 }, + [31] = { 48.9, 80.2, 28, 315 }, + [32] = { 50, 80.1, 28, 315 }, + [33] = { 48.4, 80, 28, 315 }, + [34] = { 50.4, 80, 28, 315 }, + [35] = { 48.8, 79.6, 28, 315 }, + [36] = { 48.1, 78.5, 28, 315 }, + [37] = { 49.9, 78, 28, 315 }, + [38] = { 49.4, 77.8, 28, 315 }, + [39] = { 50.1, 77.7, 28, 315 }, + [40] = { 49.8, 77.6, 28, 315 }, + [41] = { 49.9, 77.1, 28, 315 }, + [42] = { 49.4, 77.1, 28, 315 }, + [43] = { 50.3, 76.9, 28, 315 }, + [44] = { 51.1, 76.7, 28, 315 }, + [45] = { 49.9, 76.7, 28, 315 }, + [46] = { 51.2, 76.4, 28, 315 }, + [47] = { 49.9, 76.2, 28, 315 }, + [48] = { 50.8, 76.1, 28, 315 }, + [49] = { 49.5, 76.1, 28, 315 }, + [50] = { 50.9, 75.7, 28, 315 }, + [51] = { 50.4, 75.4, 28, 315 }, + [52] = { 50.2, 75, 28, 315 }, + }, + ["lvl"] = "50-52", + }, + [1793] = { + ["coords"] = { + [1] = { 53.3, 68, 28, 315 }, + [2] = { 53.8, 67.9, 28, 315 }, + [3] = { 52.8, 67.9, 28, 315 }, + [4] = { 53.6, 67.5, 28, 315 }, + [5] = { 53, 67.2, 28, 315 }, + [6] = { 54.1, 67, 28, 315 }, + [7] = { 53.4, 66.9, 28, 315 }, + [8] = { 52.7, 66.9, 28, 315 }, + [9] = { 52.1, 66.7, 28, 315 }, + [10] = { 55.3, 66.5, 28, 315 }, + [11] = { 53.3, 66.2, 28, 315 }, + [12] = { 54.6, 66.1, 28, 315 }, + [13] = { 52.7, 65.9, 28, 315 }, + [14] = { 54, 65.8, 28, 315 }, + [15] = { 54.6, 65.6, 28, 315 }, + [16] = { 51.9, 65.4, 28, 315 }, + [17] = { 53.7, 65.3, 28, 315 }, + [18] = { 53.3, 65.2, 28, 315 }, + [19] = { 54.3, 64.8, 28, 315 }, + [20] = { 52.4, 64.8, 28, 315 }, + [21] = { 53.1, 64.6, 28, 315 }, + [22] = { 52.7, 64.3, 28, 315 }, + [23] = { 52.2, 64, 28, 315 }, + [24] = { 52.9, 63.9, 28, 315 }, + [25] = { 53.4, 63.6, 28, 315 }, + [26] = { 54, 63, 28, 315 }, + }, + ["lvl"] = "54-55", + }, + [1794] = { + ["coords"] = { + [1] = { 44.9, 75, 28, 315 }, + [2] = { 46.4, 74.8, 28, 315 }, + [3] = { 41.8, 74, 28, 315 }, + [4] = { 40.3, 74, 28, 315 }, + [5] = { 43.5, 74, 28, 315 }, + [6] = { 42.6, 73.9, 28, 315 }, + [7] = { 44.8, 73.8, 28, 315 }, + [8] = { 41, 73.7, 28, 315 }, + [9] = { 44.1, 73.7, 28, 315 }, + [10] = { 46.3, 73.3, 28, 315 }, + [11] = { 42.6, 72.8, 28, 315 }, + [12] = { 43.4, 72.6, 28, 315 }, + [13] = { 40.1, 72.5, 28, 315 }, + [14] = { 46.7, 72.4, 28, 315 }, + [15] = { 40.8, 72.4, 28, 315 }, + [16] = { 44, 72.4, 28, 315 }, + [17] = { 42.9, 72.1, 28, 315 }, + [18] = { 40.8, 71.5, 28, 315 }, + [19] = { 45.6, 71.5, 28, 315 }, + [20] = { 41.9, 71.3, 28, 315 }, + [21] = { 44.9, 70.9, 28, 315 }, + [22] = { 42.5, 70.6, 28, 315 }, + [23] = { 37.9, 70.5, 28, 315 }, + [24] = { 47.4, 70.4, 28, 315 }, + [25] = { 41.9, 70.4, 28, 315 }, + [26] = { 48, 70.3, 28, 315 }, + [27] = { 41.5, 69.9, 28, 315 }, + [28] = { 45.2, 69.9, 28, 315 }, + [29] = { 44.6, 69.7, 28, 315 }, + [30] = { 45.8, 69.3, 28, 315 }, + [31] = { 49.7, 69.2, 28, 315 }, + [32] = { 42.1, 68.9, 28, 315 }, + [33] = { 44.6, 68.7, 28, 315 }, + [34] = { 45.4, 68.7, 28, 315 }, + [35] = { 42.8, 68.5, 28, 315 }, + [36] = { 45, 68.5, 28, 315 }, + [37] = { 40.6, 68.4, 28, 315 }, + [38] = { 44.1, 68.3, 28, 315 }, + [39] = { 46.1, 68.3, 28, 315 }, + [40] = { 48.9, 68.1, 28, 315 }, + [41] = { 48, 68.1, 28, 315 }, + [42] = { 38, 68, 28, 315 }, + [43] = { 47.3, 68, 28, 315 }, + [44] = { 45, 67.9, 28, 315 }, + [45] = { 41.1, 67.6, 28, 315 }, + [46] = { 50.5, 66.7, 28, 315 }, + [47] = { 41, 66.3, 28, 315 }, + [48] = { 42.9, 66.1, 28, 315 }, + [49] = { 50.3, 65.8, 28, 315 }, + [50] = { 45.8, 65.8, 28, 315 }, + [51] = { 46.5, 65.8, 28, 315 }, + [52] = { 48.7, 65.6, 28, 315 }, + [53] = { 42.2, 65.4, 28, 315 }, + [54] = { 48.8, 65.2, 28, 315 }, + [55] = { 49.5, 64.8, 28, 315 }, + [56] = { 45, 64.6, 28, 315 }, + [57] = { 47.9, 64.5, 28, 315 }, + [58] = { 47.3, 64.5, 28, 315 }, + [59] = { 45.8, 63.5, 28, 315 }, + [60] = { 46.5, 63.4, 28, 315 }, + [61] = { 44.5, 63.4, 28, 315 }, + [62] = { 43.4, 63, 28, 315 }, + [63] = { 48.6, 62.5, 28, 315 }, + [64] = { 46.5, 62.1, 28, 315 }, + [65] = { 48.3, 62, 28, 315 }, + [66] = { 45.8, 61.9, 28, 315 }, + [67] = { 43.3, 61.1, 28, 315 }, + [68] = { 42.1, 72.3, 28, 315 }, + [69] = { 43.5, 71.6, 28, 315 }, + [70] = { 41.1, 70.5, 28, 315 }, + [71] = { 40.4, 70.3, 28, 315 }, + [72] = { 38.7, 69.4, 28, 315 }, + [73] = { 42.6, 67.9, 28, 315 }, + [74] = { 40.2, 67, 28, 315 }, + [75] = { 38.7, 66.9, 28, 315 }, + [76] = { 39.6, 66.8, 28, 315 }, + [77] = { 42.6, 71.5, 28, 315 }, + [78] = { 39.5, 69.4, 28, 315 }, + [79] = { 40.2, 69.1, 28, 315 }, + [80] = { 41.8, 68.3, 28, 315 }, + [81] = { 40.6, 66.4, 28, 315 }, + [82] = { 44.9, 62.1, 28, 315 }, + }, + ["lvl"] = "54-55", + }, + [1795] = { + ["coords"] = { + [1] = { 44.9, 75, 28, 315 }, + [2] = { 46.4, 74.8, 28, 315 }, + [3] = { 41.8, 74, 28, 315 }, + [4] = { 40.3, 74, 28, 315 }, + [5] = { 43.5, 74, 28, 315 }, + [6] = { 42.6, 73.9, 28, 315 }, + [7] = { 44.8, 73.8, 28, 315 }, + [8] = { 41, 73.7, 28, 315 }, + [9] = { 44.1, 73.7, 28, 315 }, + [10] = { 46.3, 73.3, 28, 315 }, + [11] = { 42.6, 72.8, 28, 315 }, + [12] = { 43.4, 72.6, 28, 315 }, + [13] = { 40.1, 72.5, 28, 315 }, + [14] = { 46.7, 72.4, 28, 315 }, + [15] = { 40.8, 72.4, 28, 315 }, + [16] = { 44, 72.4, 28, 315 }, + [17] = { 42.9, 72.1, 28, 315 }, + [18] = { 40.8, 71.5, 28, 315 }, + [19] = { 45.6, 71.5, 28, 315 }, + [20] = { 41.9, 71.3, 28, 315 }, + [21] = { 44.9, 70.9, 28, 315 }, + [22] = { 42.5, 70.6, 28, 315 }, + [23] = { 37.9, 70.5, 28, 315 }, + [24] = { 47.4, 70.4, 28, 315 }, + [25] = { 41.9, 70.4, 28, 315 }, + [26] = { 48, 70.3, 28, 315 }, + [27] = { 41.5, 69.9, 28, 315 }, + [28] = { 45.2, 69.9, 28, 315 }, + [29] = { 44.6, 69.7, 28, 315 }, + [30] = { 45.8, 69.3, 28, 315 }, + [31] = { 49.7, 69.2, 28, 315 }, + [32] = { 42.1, 68.9, 28, 315 }, + [33] = { 44.6, 68.7, 28, 315 }, + [34] = { 45.4, 68.7, 28, 315 }, + [35] = { 42.8, 68.5, 28, 315 }, + [36] = { 45, 68.5, 28, 315 }, + [37] = { 40.6, 68.4, 28, 315 }, + [38] = { 44.1, 68.3, 28, 315 }, + [39] = { 46.1, 68.3, 28, 315 }, + [40] = { 48.9, 68.1, 28, 315 }, + [41] = { 48, 68.1, 28, 315 }, + [42] = { 38, 68, 28, 315 }, + [43] = { 47.3, 68, 28, 315 }, + [44] = { 45, 67.9, 28, 315 }, + [45] = { 41.1, 67.6, 28, 315 }, + [46] = { 50.5, 66.7, 28, 315 }, + [47] = { 41, 66.3, 28, 315 }, + [48] = { 42.9, 66.1, 28, 315 }, + [49] = { 50.3, 65.8, 28, 315 }, + [50] = { 45.8, 65.8, 28, 315 }, + [51] = { 46.5, 65.8, 28, 315 }, + [52] = { 48.7, 65.6, 28, 315 }, + [53] = { 42.2, 65.4, 28, 315 }, + [54] = { 48.8, 65.2, 28, 315 }, + [55] = { 49.5, 64.8, 28, 315 }, + [56] = { 45, 64.6, 28, 315 }, + [57] = { 47.9, 64.5, 28, 315 }, + [58] = { 47.3, 64.5, 28, 315 }, + [59] = { 45.8, 63.5, 28, 315 }, + [60] = { 46.5, 63.4, 28, 315 }, + [61] = { 44.5, 63.4, 28, 315 }, + [62] = { 43.4, 63, 28, 315 }, + [63] = { 48.6, 62.5, 28, 315 }, + [64] = { 46.5, 62.1, 28, 315 }, + [65] = { 48.3, 62, 28, 315 }, + [66] = { 45.8, 61.9, 28, 315 }, + [67] = { 43.3, 61.1, 28, 315 }, + [68] = { 42.1, 72.3, 28, 315 }, + [69] = { 43.5, 71.6, 28, 315 }, + [70] = { 41.1, 70.5, 28, 315 }, + [71] = { 45.9, 70.4, 28, 315 }, + [72] = { 40.4, 70.3, 28, 315 }, + [73] = { 38.7, 69.4, 28, 315 }, + [74] = { 42.6, 69.3, 28, 315 }, + [75] = { 41.9, 68.2, 28, 315 }, + [76] = { 39.9, 67.9, 28, 315 }, + [77] = { 39.5, 67.9, 28, 315 }, + [78] = { 42.6, 67.9, 28, 315 }, + [79] = { 39.7, 67.6, 28, 315 }, + [80] = { 40.2, 67, 28, 315 }, + [81] = { 38.7, 66.9, 28, 315 }, + [82] = { 39.6, 66.8, 28, 315 }, + [83] = { 42.6, 71.5, 28, 315 }, + [84] = { 39.5, 69.4, 28, 315 }, + [85] = { 40.6, 66.4, 28, 315 }, + [86] = { 44.9, 62.1, 28, 315 }, + }, + ["lvl"] = "55-56", + }, + [1796] = { + ["coords"] = { + [1] = { 53.3, 68, 28, 315 }, + [2] = { 53.8, 67.9, 28, 315 }, + [3] = { 52.8, 67.9, 28, 315 }, + [4] = { 53.6, 67.5, 28, 315 }, + [5] = { 53, 67.2, 28, 315 }, + [6] = { 54.1, 67, 28, 315 }, + [7] = { 53.4, 66.9, 28, 315 }, + [8] = { 52.7, 66.9, 28, 315 }, + [9] = { 52.1, 66.7, 28, 315 }, + [10] = { 55.3, 66.5, 28, 315 }, + [11] = { 53.3, 66.2, 28, 315 }, + [12] = { 54.6, 66.1, 28, 315 }, + [13] = { 52.7, 65.9, 28, 315 }, + [14] = { 54, 65.8, 28, 315 }, + [15] = { 54.6, 65.6, 28, 315 }, + [16] = { 51.9, 65.4, 28, 315 }, + [17] = { 53.7, 65.3, 28, 315 }, + [18] = { 53.3, 65.2, 28, 315 }, + [19] = { 54.3, 64.8, 28, 315 }, + [20] = { 52.4, 64.8, 28, 315 }, + [21] = { 53.1, 64.6, 28, 315 }, + [22] = { 52.7, 64.3, 28, 315 }, + [23] = { 52.2, 64, 28, 315 }, + [24] = { 52.9, 63.9, 28, 315 }, + [25] = { 53.4, 63.6, 28, 315 }, + [26] = { 54, 63, 28, 315 }, + }, + ["lvl"] = "55-56", + }, + [1797] = { + ["coords"] = { + [1] = { 55.5, 71, 130, 413 }, + [2] = { 49.4, 70.3, 130, 413 }, + [3] = { 54.7, 69.5, 130, 413 }, + [4] = { 50.2, 69.4, 130, 413 }, + [5] = { 50.9, 67.9, 130, 413 }, + [6] = { 50.5, 67.2, 130, 413 }, + [7] = { 56.1, 67.1, 130, 413 }, + [8] = { 52.9, 67.1, 130, 413 }, + [9] = { 51.6, 66.7, 130, 413 }, + [10] = { 55.4, 65, 130, 413 }, + [11] = { 53.4, 65, 130, 413 }, + [12] = { 51.6, 62.5, 130, 413 }, + [13] = { 52.5, 61.3, 130, 413 }, + [14] = { 53.1, 60.6, 130, 413 }, + [15] = { 51.6, 59.1, 130, 413 }, + [16] = { 51.8, 58.1, 130, 413 }, + [17] = { 54.2, 56.2, 130, 413 }, + [18] = { 51.3, 55.3, 130, 413 }, + [19] = { 53.2, 54, 130, 413 }, + [20] = { 51.5, 53.9, 130, 413 }, + [21] = { 51.5, 52.8, 130, 413 }, + [22] = { 52.9, 51.8, 130, 413 }, + [23] = { 55.6, 51.7, 130, 413 }, + [24] = { 42.1, 21.7, 130, 413 }, + [25] = { 36.7, 21.5, 130, 413 }, + [26] = { 35.2, 19.6, 130, 413 }, + [27] = { 42.5, 19.5, 130, 413 }, + [28] = { 43.6, 18.8, 130, 413 }, + [29] = { 46, 18.3, 130, 413 }, + [30] = { 41.2, 18.2, 130, 413 }, + [31] = { 42.5, 18.1, 130, 413 }, + [32] = { 47, 18.1, 130, 413 }, + [33] = { 41.6, 18, 130, 413 }, + [34] = { 37.1, 17.7, 130, 413 }, + [35] = { 37.4, 17.2, 130, 413 }, + [36] = { 35.4, 17.2, 130, 413 }, + [37] = { 44.4, 17, 130, 413 }, + [38] = { 37.7, 16.6, 130, 413 }, + [39] = { 39.9, 16.5, 130, 413 }, + [40] = { 45.3, 16.1, 130, 413 }, + [41] = { 38.9, 16, 130, 413 }, + [42] = { 37.9, 15.6, 130, 413 }, + [43] = { 34.5, 15.3, 130, 413 }, + [44] = { 39.7, 14.9, 130, 413 }, + [45] = { 39, 13.5, 130, 413 }, + }, + ["lvl"] = "12-13", + }, + [1798] = { + ["coords"] = {}, + ["lvl"] = "55-56", + }, + [1800] = { + ["coords"] = {}, + ["lvl"] = "58", + }, + [1801] = { + ["coords"] = {}, + ["lvl"] = "55", + }, + [1802] = { + ["coords"] = { + [1] = { 62.8, 61.2, 28, 315 }, + [2] = { 63, 61.1, 28, 315 }, + [3] = { 62.4, 60.9, 28, 315 }, + [4] = { 63.3, 60.8, 28, 315 }, + [5] = { 63, 60.6, 28, 315 }, + [6] = { 62.1, 60.6, 28, 315 }, + [7] = { 62.8, 60.4, 28, 315 }, + [8] = { 62.5, 60.3, 28, 315 }, + [9] = { 62.2, 60.2, 28, 315 }, + [10] = { 62.8, 60.1, 28, 315 }, + [11] = { 64.8, 60, 28, 315 }, + [12] = { 64.8, 59.7, 28, 315 }, + [13] = { 65.1, 59.7, 28, 315 }, + [14] = { 62.2, 59.6, 28, 315 }, + [15] = { 63.2, 59.6, 28, 315 }, + [16] = { 64.6, 59.5, 28, 315 }, + [17] = { 64.6, 59.4, 28, 315 }, + [18] = { 64.9, 59.3, 28, 315 }, + [19] = { 64.7, 59.3, 28, 315 }, + [20] = { 64.7, 59.2, 28, 315 }, + [21] = { 64.4, 59.2, 28, 315 }, + [22] = { 61.8, 59.1, 28, 315 }, + [23] = { 65.1, 59.1, 28, 315 }, + [24] = { 64.7, 59, 28, 315 }, + [25] = { 63.3, 59, 28, 315 }, + [26] = { 65, 59, 28, 315 }, + [27] = { 62.4, 58.9, 28, 315 }, + [28] = { 62.7, 58.9, 28, 315 }, + [29] = { 65.1, 58.6, 28, 315 }, + [30] = { 64.4, 58.6, 28, 315 }, + [31] = { 64.8, 58.5, 28, 315 }, + [32] = { 63.7, 58.5, 28, 315 }, + [33] = { 62.2, 58.4, 28, 315 }, + [34] = { 62.9, 58.4, 28, 315 }, + [35] = { 60.7, 58.2, 28, 315 }, + [36] = { 61.6, 58.2, 28, 315 }, + [37] = { 64.5, 58, 28, 315 }, + [38] = { 62.7, 58, 28, 315 }, + [39] = { 62.5, 57.9, 28, 315 }, + [40] = { 64.3, 57.9, 28, 315 }, + [41] = { 60.8, 57.9, 28, 315 }, + [42] = { 64.7, 57.7, 28, 315 }, + [43] = { 64, 57.6, 28, 315 }, + [44] = { 63.5, 57.6, 28, 315 }, + [45] = { 61.7, 57.5, 28, 315 }, + [46] = { 64.4, 57.5, 28, 315 }, + [47] = { 64.6, 57.3, 28, 315 }, + [48] = { 63.8, 57.1, 28, 315 }, + [49] = { 62.8, 57, 28, 315 }, + [50] = { 64.1, 56.8, 28, 315 }, + [51] = { 64.4, 56.7, 28, 315 }, + [52] = { 63.4, 56.6, 28, 315 }, + [53] = { 64.2, 56.4, 28, 315 }, + [54] = { 63.9, 56.4, 28, 315 }, + [55] = { 63.2, 56.3, 28, 315 }, + [56] = { 64, 56.2, 28, 315 }, + [57] = { 63.3, 56, 28, 315 }, + [58] = { 64.2, 55.9, 28, 315 }, + [59] = { 63.5, 55.9, 28, 315 }, + [60] = { 63, 55.8, 28, 315 }, + [61] = { 63.9, 55.7, 28, 315 }, + [62] = { 63.2, 55.6, 28, 315 }, + }, + ["lvl"] = "56-58", + }, + [1804] = { + ["coords"] = { + [1] = { 62.8, 61.2, 28, 315 }, + [2] = { 63, 61.1, 28, 315 }, + [3] = { 62.4, 60.9, 28, 315 }, + [4] = { 63.3, 60.8, 28, 315 }, + [5] = { 63, 60.6, 28, 315 }, + [6] = { 62.1, 60.6, 28, 315 }, + [7] = { 62.8, 60.4, 28, 315 }, + [8] = { 62.5, 60.3, 28, 315 }, + [9] = { 62.2, 60.2, 28, 315 }, + [10] = { 62.8, 60.1, 28, 315 }, + [11] = { 64.8, 60, 28, 315 }, + [12] = { 64.8, 59.7, 28, 315 }, + [13] = { 65.1, 59.7, 28, 315 }, + [14] = { 62.2, 59.6, 28, 315 }, + [15] = { 63.2, 59.6, 28, 315 }, + [16] = { 64.6, 59.5, 28, 315 }, + [17] = { 64.6, 59.4, 28, 315 }, + [18] = { 64.9, 59.3, 28, 315 }, + [19] = { 64.7, 59.3, 28, 315 }, + [20] = { 64.7, 59.2, 28, 315 }, + [21] = { 64.4, 59.2, 28, 315 }, + [22] = { 61.8, 59.1, 28, 315 }, + [23] = { 65.1, 59.1, 28, 315 }, + [24] = { 64.7, 59, 28, 315 }, + [25] = { 63.3, 59, 28, 315 }, + [26] = { 65, 59, 28, 315 }, + [27] = { 62.4, 58.9, 28, 315 }, + [28] = { 62.7, 58.9, 28, 315 }, + [29] = { 65.1, 58.6, 28, 315 }, + [30] = { 64.4, 58.6, 28, 315 }, + [31] = { 64.8, 58.5, 28, 315 }, + [32] = { 63.7, 58.5, 28, 315 }, + [33] = { 62.2, 58.4, 28, 315 }, + [34] = { 62.9, 58.4, 28, 315 }, + [35] = { 60.7, 58.2, 28, 315 }, + [36] = { 61.6, 58.2, 28, 315 }, + [37] = { 64.5, 58, 28, 315 }, + [38] = { 62.7, 58, 28, 315 }, + [39] = { 62.5, 57.9, 28, 315 }, + [40] = { 64.3, 57.9, 28, 315 }, + [41] = { 60.8, 57.9, 28, 315 }, + [42] = { 64.7, 57.7, 28, 315 }, + [43] = { 64, 57.6, 28, 315 }, + [44] = { 63.5, 57.6, 28, 315 }, + [45] = { 61.7, 57.5, 28, 315 }, + [46] = { 64.4, 57.5, 28, 315 }, + [47] = { 64.6, 57.3, 28, 315 }, + [48] = { 63.8, 57.1, 28, 315 }, + [49] = { 62.8, 57, 28, 315 }, + [50] = { 64.1, 56.8, 28, 315 }, + [51] = { 64.4, 56.7, 28, 315 }, + [52] = { 63.4, 56.6, 28, 315 }, + [53] = { 64.2, 56.4, 28, 315 }, + [54] = { 63.9, 56.4, 28, 315 }, + [55] = { 63.2, 56.3, 28, 315 }, + [56] = { 64, 56.2, 28, 315 }, + [57] = { 63.3, 56, 28, 315 }, + [58] = { 64.2, 55.9, 28, 315 }, + [59] = { 63.5, 55.9, 28, 315 }, + [60] = { 63, 55.8, 28, 315 }, + [61] = { 63.9, 55.7, 28, 315 }, + [62] = { 63.2, 55.6, 28, 315 }, + }, + ["lvl"] = "56-57", + }, + [1805] = { + ["coords"] = { + [1] = { 47.5, 70.5, 28, 660 }, + [2] = { 39.9, 70.3, 28, 660 }, + }, + ["lvl"] = "56-57", + ["rnk"] = "1", + }, + [1806] = { + ["coords"] = { + [1] = { 66.1, 42.2, 28, 315 }, + [2] = { 65, 41.3, 28, 315 }, + [3] = { 66.6, 41, 28, 315 }, + [4] = { 65.9, 40.3, 28, 315 }, + [5] = { 65.4, 39.6, 28, 315 }, + [6] = { 64.9, 38.7, 28, 315 }, + [7] = { 64.3, 38.4, 28, 315 }, + [8] = { 65.8, 38, 28, 315 }, + [9] = { 63.8, 37.8, 28, 315 }, + [10] = { 63.2, 37.4, 28, 315 }, + [11] = { 63.5, 37.2, 28, 315 }, + [12] = { 63.5, 36.3, 28, 315 }, + }, + ["lvl"] = "54-55", + }, + [1808] = { + ["coords"] = { + [1] = { 62.1, 37.6, 28, 315 }, + [2] = { 61.8, 37.4, 28, 315 }, + [3] = { 61.5, 36.7, 28, 315 }, + [4] = { 64, 36.3, 28, 315 }, + [5] = { 62.5, 35.9, 28, 315 }, + [6] = { 63.8, 35.9, 28, 315 }, + [7] = { 63.4, 35.8, 28, 315 }, + [8] = { 61.3, 34.9, 28, 315 }, + [9] = { 61.9, 34.9, 28, 315 }, + [10] = { 64.6, 34.2, 28, 315 }, + [11] = { 64.5, 33.4, 28, 315 }, + }, + ["lvl"] = "55-56", + }, + [1809] = { + ["coords"] = { + [1] = { 32.3, 62.4, 28, 315 }, + [2] = { 29.9, 54.7, 28, 315 }, + [3] = { 86.4, 67.7, 85, 315 }, + }, + ["lvl"] = "50-52", + }, + [1810] = { + ["coords"] = {}, + ["lvl"] = "53-55", + }, + [1811] = { + ["coords"] = {}, + ["lvl"] = "56-58", + }, + [1812] = { + ["coords"] = { + [1] = { 66.6, 39.1, 28, 315 }, + [2] = { 62.5, 37.5, 28, 315 }, + [3] = { 61.5, 36.8, 28, 315 }, + [4] = { 64.5, 36.7, 28, 315 }, + [5] = { 61.2, 36.2, 28, 315 }, + [6] = { 61.2, 35.6, 28, 315 }, + [7] = { 61.8, 35.5, 28, 315 }, + [8] = { 62.4, 35.4, 28, 315 }, + [9] = { 62.5, 35, 28, 315 }, + [10] = { 64, 34.4, 28, 315 }, + [11] = { 62, 33.2, 28, 315 }, + [12] = { 63.8, 33.2, 28, 315 }, + [13] = { 63.6, 32.6, 28, 315 }, + [14] = { 62.3, 32.3, 28, 315 }, + [15] = { 62.1, 37.6, 28, 315 }, + }, + ["lvl"] = "55-56", + }, + [1813] = { + ["coords"] = { + [1] = { 61.6, 36.2, 28, 315 }, + [2] = { 62, 33.8, 28, 315 }, + }, + ["lvl"] = "56-57", + }, + [1815] = { + ["coords"] = { + [1] = { 36.3, 68, 28, 315 }, + [2] = { 37.2, 67, 28, 315 }, + [3] = { 36.4, 65.8, 28, 315 }, + [4] = { 33.4, 65.8, 28, 315 }, + [5] = { 37.9, 65.7, 28, 315 }, + [6] = { 37.2, 64.6, 28, 315 }, + [7] = { 36.5, 63.6, 28, 315 }, + [8] = { 33.4, 63.6, 28, 315 }, + [9] = { 34.9, 63.5, 28, 315 }, + [10] = { 37.9, 63.2, 28, 315 }, + [11] = { 39.4, 62.7, 28, 315 }, + [12] = { 39, 62.3, 28, 315 }, + [13] = { 37.2, 62.3, 28, 315 }, + [14] = { 34.2, 62.1, 28, 315 }, + [15] = { 31.9, 61.7, 28, 315 }, + [16] = { 29.3, 61.6, 28, 315 }, + [17] = { 31.3, 60.1, 28, 315 }, + [18] = { 28.7, 58.9, 28, 315 }, + [19] = { 34.8, 58.8, 28, 315 }, + [20] = { 32.6, 57.6, 28, 315 }, + [21] = { 31.8, 56.6, 28, 315 }, + [22] = { 33.4, 56.2, 28, 315 }, + [23] = { 32.7, 55.2, 28, 315 }, + [24] = { 31, 55.2, 28, 315 }, + [25] = { 30.2, 54.4, 28, 315 }, + [26] = { 34.8, 54.2, 28, 315 }, + [27] = { 31.7, 54.1, 28, 315 }, + [28] = { 33.9, 52.8, 28, 315 }, + [29] = { 88.2, 74.3, 85, 315 }, + [30] = { 85.8, 74.2, 85, 315 }, + [31] = { 87.7, 72.9, 85, 315 }, + [32] = { 85.2, 71.7, 85, 315 }, + [33] = { 89, 70.4, 85, 315 }, + [34] = { 88.2, 69.5, 85, 315 }, + [35] = { 89.7, 69.1, 85, 315 }, + [36] = { 89, 68.2, 85, 315 }, + [37] = { 87.4, 68.1, 85, 315 }, + [38] = { 86.7, 67.4, 85, 315 }, + [39] = { 91, 67.2, 85, 315 }, + [40] = { 88, 67.1, 85, 315 }, + [41] = { 90.2, 65.8, 85, 315 }, + }, + ["lvl"] = "51-52", + }, + [1816] = { + ["coords"] = { + [1] = { 55.2, 64.5, 28, 315 }, + [2] = { 55.8, 63.6, 28, 315 }, + [3] = { 58.2, 62.1, 28, 315 }, + [4] = { 56.7, 62.1, 28, 315 }, + [5] = { 59, 61, 28, 315 }, + [6] = { 58, 60.1, 28, 315 }, + [7] = { 53.4, 60.1, 28, 315 }, + [8] = { 55.8, 58.6, 28, 315 }, + [9] = { 57.7, 58.4, 28, 315 }, + [10] = { 52.5, 58.4, 28, 315 }, + [11] = { 66.6, 56.4, 28, 315 }, + [12] = { 67.4, 55.3, 28, 315 }, + [13] = { 65.5, 55.1, 28, 315 }, + [14] = { 52.2, 54.3, 28, 315 }, + [15] = { 60.4, 54.1, 28, 315 }, + [16] = { 65.7, 53.6, 28, 315 }, + [17] = { 57.1, 53.5, 28, 315 }, + [18] = { 66.7, 53.4, 28, 315 }, + [19] = { 65, 53, 28, 315 }, + [20] = { 55.4, 53, 28, 315 }, + [21] = { 57.9, 53, 28, 315 }, + [22] = { 60.5, 51.9, 28, 315 }, + [23] = { 54.4, 51.9, 28, 315 }, + [24] = { 61.9, 51.8, 28, 315 }, + [25] = { 59, 51.6, 28, 315 }, + [26] = { 57.1, 51, 28, 315 }, + [27] = { 56.6, 50.6, 28, 315 }, + [28] = { 60.2, 50.5, 28, 315 }, + [29] = { 65.3, 50.3, 28, 315 }, + [30] = { 62.9, 49.9, 28, 315 }, + [31] = { 63.7, 49.8, 28, 315 }, + [32] = { 52.9, 49.5, 28, 315 }, + [33] = { 60.5, 49.4, 28, 315 }, + [34] = { 68.1, 48.5, 28, 315 }, + [35] = { 53.4, 48.3, 28, 315 }, + [36] = { 66.7, 47.8, 28, 315 }, + [37] = { 66.3, 47.8, 28, 315 }, + [38] = { 64.5, 47.7, 28, 315 }, + [39] = { 61.9, 47, 28, 315 }, + [40] = { 64.4, 47, 28, 315 }, + [41] = { 67.6, 46.1, 28, 315 }, + [42] = { 55, 45.8, 28, 315 }, + [43] = { 65.9, 44, 28, 315 }, + }, + ["lvl"] = "55-56", + }, + [1817] = { + ["coords"] = { + [1] = { 52.5, 70.4, 28, 315 }, + [2] = { 52, 61, 28, 315 }, + [3] = { 49.4, 59.6, 28, 315 }, + [4] = { 42.6, 56.3, 28, 315 }, + [5] = { 43.5, 55.3, 28, 315 }, + [6] = { 42.5, 54.1, 28, 315 }, + [7] = { 51.1, 53.1, 28, 315 }, + [8] = { 44.9, 49.5, 28, 315 }, + [9] = { 39.6, 48.5, 28, 315 }, + [10] = { 45.7, 48.3, 28, 315 }, + [11] = { 47.3, 48.3, 28, 315 }, + [12] = { 48, 47.3, 28, 315 }, + [13] = { 44.8, 47, 28, 315 }, + [14] = { 51.8, 47, 28, 315 }, + [15] = { 50.3, 46.9, 28, 315 }, + [16] = { 45.8, 46, 28, 315 }, + [17] = { 47.3, 46, 28, 315 }, + [18] = { 44.3, 45.8, 28, 315 }, + [19] = { 47.4, 43.7, 28, 315 }, + [20] = { 45.7, 43.7, 28, 315 }, + [21] = { 45.7, 41.3, 28, 315 }, + [22] = { 43.5, 40.2, 28, 315 }, + [23] = { 45, 40.2, 28, 315 }, + [24] = { 46.6, 40.1, 28, 315 }, + [25] = { 47.3, 39, 28, 315 }, + [26] = { 46.5, 37.8, 28, 315 }, + [27] = { 49.7, 37.8, 28, 315 }, + [28] = { 45.9, 36.7, 28, 315 }, + [29] = { 50.3, 34.5, 28, 315 }, + [30] = { 45, 32.1, 28, 315 }, + [31] = { 46.6, 29.7, 28, 315 }, + [32] = { 47.3, 28.3, 28, 315 }, + [33] = { 49.6, 27.3, 28, 315 }, + [34] = { 48.1, 27.2, 28, 315 }, + [35] = { 48.8, 26.1, 28, 315 }, + [36] = { 95.6, 61.7, 85, 315 }, + }, + ["lvl"] = "53-54", + }, + [1819] = { + ["coords"] = {}, + ["lvl"] = "52-54", + }, + [1820] = { + ["coords"] = {}, + ["lvl"] = "55-57", + }, + [1821] = { + ["coords"] = { + [1] = { 51.1, 64.4, 28, 315 }, + [2] = { 50.4, 63.4, 28, 315 }, + [3] = { 48.9, 61.9, 28, 315 }, + [4] = { 51.5, 60.5, 28, 315 }, + [5] = { 48.6, 60.2, 28, 315 }, + [6] = { 46.4, 59.9, 28, 315 }, + [7] = { 45, 59.8, 28, 315 }, + [8] = { 48.6, 58.5, 28, 315 }, + [9] = { 44.1, 56.5, 28, 315 }, + [10] = { 51.2, 50.6, 28, 315 }, + [11] = { 41.1, 48.4, 28, 315 }, + [12] = { 46.5, 47.2, 28, 315 }, + [13] = { 43.1, 46.8, 28, 315 }, + [14] = { 46.5, 44.9, 28, 315 }, + [15] = { 44.8, 44.8, 28, 315 }, + [16] = { 46.5, 42.5, 28, 315 }, + [17] = { 44.9, 42.4, 28, 315 }, + [18] = { 47.4, 41.3, 28, 315 }, + [19] = { 48, 40.1, 28, 315 }, + [20] = { 48.8, 39, 28, 315 }, + [21] = { 45, 37.6, 28, 315 }, + [22] = { 49, 36.7, 28, 315 }, + [23] = { 50.4, 36.4, 28, 315 }, + [24] = { 49.8, 35.6, 28, 315 }, + [25] = { 52, 34.2, 28, 315 }, + [26] = { 51, 32.9, 28, 315 }, + [27] = { 51.2, 31, 28, 315 }, + [28] = { 48.9, 28.3, 28, 315 }, + [29] = { 97, 61.7, 85, 315 }, + [30] = { 47.3, 48.3, 28, 315 }, + [31] = { 47.3, 46, 28, 315 }, + [32] = { 47.4, 43.7, 28, 315 }, + [33] = { 45.7, 43.7, 28, 315 }, + [34] = { 45.7, 41.3, 28, 315 }, + [35] = { 45, 40.2, 28, 315 }, + [36] = { 46.6, 40.1, 28, 315 }, + [37] = { 47.3, 39, 28, 315 }, + [38] = { 46.5, 37.8, 28, 315 }, + }, + ["lvl"] = "52-53", + }, + [1822] = { + ["coords"] = { + [1] = { 35.5, 66.8, 28, 315 }, + [2] = { 34.2, 66.8, 28, 315 }, + [3] = { 35.6, 64.6, 28, 315 }, + [4] = { 32.6, 64.6, 28, 315 }, + [5] = { 34.1, 64.5, 28, 315 }, + [6] = { 38.7, 64.5, 28, 315 }, + [7] = { 32.1, 63.5, 28, 315 }, + [8] = { 32.4, 62.3, 28, 315 }, + [9] = { 35.8, 62.3, 28, 315 }, + [10] = { 31, 62.2, 28, 315 }, + [11] = { 39.9, 62.1, 28, 315 }, + [12] = { 33.4, 61.4, 28, 315 }, + [13] = { 37.9, 61.3, 28, 315 }, + [14] = { 30, 61, 28, 315 }, + [15] = { 29.1, 59.2, 28, 315 }, + [16] = { 33.4, 59, 28, 315 }, + [17] = { 34.3, 57.6, 28, 315 }, + [18] = { 29.8, 56.7, 28, 315 }, + [19] = { 28.9, 56, 28, 315 }, + [20] = { 34, 55.4, 28, 315 }, + [21] = { 33.2, 54.1, 28, 315 }, + [22] = { 87.4, 74.8, 85, 315 }, + [23] = { 86.4, 73.6, 85, 315 }, + [24] = { 85.6, 72, 85, 315 }, + [25] = { 86.2, 69.6, 85, 315 }, + [26] = { 85.4, 68.9, 85, 315 }, + [27] = { 90.3, 68.3, 85, 315 }, + [28] = { 89.5, 67.1, 85, 315 }, + [29] = { 37.2, 64.6, 28, 315 }, + }, + ["lvl"] = "50-51", + }, + [1824] = { + ["coords"] = { + [1] = { 54.9, 62.2, 28, 315 }, + [2] = { 53.4, 62, 28, 315 }, + [3] = { 54.2, 61.1, 28, 315 }, + [4] = { 55.9, 61, 28, 315 }, + [5] = { 56.6, 60, 28, 315 }, + [6] = { 59.1, 59.6, 28, 315 }, + [7] = { 56.6, 57.5, 28, 315 }, + [8] = { 66, 57.4, 28, 315 }, + [9] = { 66.4, 54.5, 28, 315 }, + [10] = { 58.9, 54.1, 28, 315 }, + [11] = { 55.6, 54, 28, 315 }, + [12] = { 60.8, 53.5, 28, 315 }, + [13] = { 56, 53.4, 28, 315 }, + [14] = { 52.7, 51.7, 28, 315 }, + [15] = { 56, 51.4, 28, 315 }, + [16] = { 60.8, 51, 28, 315 }, + [17] = { 55, 50.7, 28, 315 }, + [18] = { 62.8, 50.6, 28, 315 }, + [19] = { 53.4, 50.6, 28, 315 }, + [20] = { 58.8, 50.5, 28, 315 }, + [21] = { 66.8, 49.9, 28, 315 }, + [22] = { 64.4, 49.7, 28, 315 }, + [23] = { 55.8, 49.6, 28, 315 }, + [24] = { 54.3, 49.4, 28, 315 }, + [25] = { 62.2, 48.5, 28, 315 }, + [26] = { 67.2, 48.2, 28, 315 }, + [27] = { 54.3, 47.1, 28, 315 }, + [28] = { 65.1, 46.4, 28, 315 }, + [29] = { 63.3, 46.4, 28, 315 }, + [30] = { 66.1, 45.8, 28, 315 }, + [31] = { 68.1, 45.5, 28, 315 }, + [32] = { 63.6, 45.2, 28, 315 }, + }, + ["lvl"] = "54-55", + }, + [1826] = { + ["coords"] = { + [1] = { 50.3, 42.2, 28, 315 }, + [2] = { 49.9, 41.6, 28, 315 }, + [3] = { 50.8, 41.3, 28, 315 }, + [4] = { 50.4, 41.1, 28, 315 }, + [5] = { 50.3, 40.5, 28, 315 }, + [6] = { 51.3, 40.5, 28, 315 }, + [7] = { 50.8, 40.5, 28, 315 }, + [8] = { 51, 40.2, 28, 315 }, + [9] = { 53.6, 37.7, 28, 315 }, + [10] = { 52.8, 37.6, 28, 315 }, + [11] = { 53.3, 37.4, 28, 315 }, + [12] = { 53.2, 37, 28, 315 }, + [13] = { 52.8, 36.7, 28, 315 }, + [14] = { 57.7, 36.4, 28, 315 }, + [15] = { 53.2, 36.3, 28, 315 }, + [16] = { 57.4, 36.1, 28, 315 }, + [17] = { 57.6, 35.7, 28, 315 }, + [18] = { 47.3, 32, 28, 315 }, + }, + ["lvl"] = "55-56", + }, + [1827] = { + ["coords"] = { + [1] = { 48, 22.7, 28, 973 }, + [2] = { 48.1, 22, 28, 796 }, + [3] = { 47.4, 21.9, 28, 962 }, + [4] = { 48.4, 21.6, 28, 944 }, + [5] = { 48.9, 21.4, 28, 835 }, + [6] = { 48.2, 20.5, 28, 818 }, + [7] = { 46.9, 20.4, 28, 876 }, + [8] = { 47.1, 20.1, 28, 921 }, + [9] = { 43.5, 19.9, 28, 747 }, + [10] = { 43.1, 16.5, 28, 870 }, + [11] = { 45, 16.4, 28, 943 }, + [12] = { 43.2, 16.3, 28, 739 }, + [13] = { 47.2, 15.9, 28, 731 }, + [14] = { 42.2, 15.9, 28, 982 }, + [15] = { 42.1, 15.8, 28, 809 }, + [16] = { 41.6, 15.5, 28, 944 }, + [17] = { 41.4, 15.4, 28, 934 }, + [18] = { 41.9, 14.9, 28, 827 }, + [19] = { 47.7, 14.9, 28, 856 }, + [20] = { 42, 14.9, 28, 884 }, + [21] = { 42.7, 14.3, 28, 799 }, + [22] = { 42.6, 14.3, 28, 884 }, + [23] = { 42.1, 13.8, 28, 759 }, + [24] = { 42, 13.7, 28, 1019 }, + }, + ["lvl"] = "55-56", + ["rnk"] = "1", + }, + [1831] = { + ["coords"] = { + [1] = { 38.7, 56, 28, 315 }, + [2] = { 38.6, 56, 28, 315 }, + [3] = { 38.7, 55.9, 28, 315 }, + [4] = { 40.8, 52.8, 28, 315 }, + [5] = { 40.7, 52.6, 28, 315 }, + [6] = { 40.4, 52.6, 28, 315 }, + [7] = { 41, 52.4, 28, 315 }, + [8] = { 40.8, 52.3, 28, 315 }, + [9] = { 40.3, 52.2, 28, 315 }, + [10] = { 41, 52, 28, 315 }, + [11] = { 40.8, 51.9, 28, 315 }, + [12] = { 40.5, 51.8, 28, 315 }, + [13] = { 40.9, 51.5, 28, 315 }, + [14] = { 47.3, 51.4, 28, 315 }, + [15] = { 40.5, 51.4, 28, 315 }, + [16] = { 47.4, 51.3, 28, 315 }, + [17] = { 47.3, 51.3, 28, 315 }, + [18] = { 51.7, 44.8, 28, 315 }, + [19] = { 52.1, 44.8, 28, 315 }, + [20] = { 51.9, 44.6, 28, 315 }, + [21] = { 52.2, 44.6, 28, 315 }, + [22] = { 51.6, 44.5, 28, 315 }, + [23] = { 52.2, 44.2, 28, 315 }, + [24] = { 51.4, 44.1, 28, 315 }, + [25] = { 51.7, 44, 28, 315 }, + [26] = { 52.2, 44, 28, 315 }, + [27] = { 51.9, 43.8, 28, 315 }, + }, + ["lvl"] = "52-53", + }, + [1832] = { + ["coords"] = { + [1] = { 45, 15.7, 28, 900 }, + [2] = { 45, 15.5, 28, 825 }, + [3] = { 45.2, 15.4, 28, 826 }, + [4] = { 45.2, 15.3, 28, 1009 }, + [5] = { 44.8, 15.2, 28, 1008 }, + [6] = { 46.6, 14.1, 28, 949 }, + [7] = { 47.3, 13.8, 28, 951 }, + [8] = { 46.3, 13.8, 28, 1009 }, + [9] = { 46.8, 13.1, 28, 999 }, + }, + ["lvl"] = "56-57", + ["rnk"] = "1", + }, + [1833] = { + ["coords"] = { + [1] = { 47.1, 34.4, 28, 315 }, + [2] = { 45.8, 34.3, 28, 315 }, + [3] = { 48.8, 34.3, 28, 315 }, + [4] = { 49.6, 33.2, 28, 315 }, + [5] = { 50.3, 42.2, 28, 315 }, + [6] = { 49.9, 41.6, 28, 315 }, + [7] = { 50.8, 41.3, 28, 315 }, + [8] = { 50.4, 41.1, 28, 315 }, + [9] = { 50.3, 40.5, 28, 315 }, + [10] = { 51.3, 40.5, 28, 315 }, + [11] = { 50.8, 40.5, 28, 315 }, + [12] = { 51, 40.2, 28, 315 }, + [13] = { 53.6, 37.7, 28, 315 }, + [14] = { 52.8, 37.6, 28, 315 }, + [15] = { 53.3, 37.4, 28, 315 }, + [16] = { 53.2, 37, 28, 315 }, + [17] = { 52.8, 36.7, 28, 315 }, + [18] = { 57.7, 36.4, 28, 315 }, + [19] = { 53.2, 36.3, 28, 315 }, + [20] = { 57.4, 36.1, 28, 315 }, + [21] = { 57.6, 35.7, 28, 315 }, + [22] = { 47.3, 32, 28, 315 }, + }, + ["lvl"] = "54-55", + }, + [1834] = { + ["coords"] = { + [1] = { 43.3, 20.7, 28, 1014 }, + [2] = { 43.2, 19.6, 28, 1000 }, + [3] = { 42.4, 19.1, 28, 722 }, + [4] = { 46.1, 19.1, 28, 819 }, + [5] = { 42.6, 19, 28, 994 }, + [6] = { 45.4, 19, 28, 950 }, + [7] = { 42.7, 18.6, 28, 940 }, + [8] = { 43, 18.4, 28, 994 }, + [9] = { 45.2, 18.3, 28, 777 }, + [10] = { 42.7, 18.2, 28, 888 }, + [11] = { 42.5, 18.2, 28, 1020 }, + [12] = { 46.2, 18.2, 28, 906 }, + [13] = { 45.4, 17.9, 28, 816 }, + [14] = { 42.6, 17.7, 28, 1019 }, + [15] = { 44.9, 16.4, 28, 936 }, + [16] = { 43, 16.4, 28, 767 }, + [17] = { 42.8, 16.3, 28, 838 }, + [18] = { 44.9, 16.2, 28, 844 }, + [19] = { 43, 16.1, 28, 1019 }, + [20] = { 42.8, 16.1, 28, 847 }, + [21] = { 42.5, 16.1, 28, 866 }, + [22] = { 41.6, 15.3, 28, 771 }, + [23] = { 42.9, 14.6, 28, 1016 }, + [24] = { 46.8, 14.1, 28, 808 }, + [25] = { 42.1, 13.9, 28, 942 }, + [26] = { 43.5, 13.9, 28, 975 }, + [27] = { 47, 13.9, 28, 897 }, + [28] = { 43.6, 13.7, 28, 742 }, + [29] = { 46.6, 13.7, 28, 759 }, + [30] = { 46.5, 13.7, 28, 961 }, + [31] = { 46.9, 13.6, 28, 827 }, + [32] = { 43.5, 13.6, 28, 776 }, + [33] = { 47.1, 13.5, 28, 732 }, + [34] = { 46.6, 13.5, 28, 918 }, + [35] = { 43.4, 13.4, 28, 729 }, + [36] = { 42.7, 13.4, 28, 722 }, + [37] = { 43.5, 13.3, 28, 889 }, + }, + ["lvl"] = "55-56", + ["rnk"] = "1", + }, + [1835] = { + ["coords"] = { + [1] = { 38.7, 56, 28, 315 }, + [2] = { 38.6, 56, 28, 315 }, + [3] = { 38.7, 55.9, 28, 315 }, + [4] = { 40.8, 52.8, 28, 315 }, + [5] = { 40.7, 52.6, 28, 315 }, + [6] = { 40.4, 52.6, 28, 315 }, + [7] = { 41, 52.4, 28, 315 }, + [8] = { 40.8, 52.3, 28, 315 }, + [9] = { 40.3, 52.2, 28, 315 }, + [10] = { 41, 52, 28, 315 }, + [11] = { 40.8, 51.9, 28, 315 }, + [12] = { 40.5, 51.8, 28, 315 }, + [13] = { 40.9, 51.5, 28, 315 }, + [14] = { 47.3, 51.4, 28, 315 }, + [15] = { 40.5, 51.4, 28, 315 }, + [16] = { 47.4, 51.3, 28, 315 }, + [17] = { 47.3, 51.3, 28, 315 }, + [18] = { 51.7, 44.8, 28, 315 }, + [19] = { 52.1, 44.8, 28, 315 }, + [20] = { 51.9, 44.6, 28, 315 }, + [21] = { 52.2, 44.6, 28, 315 }, + [22] = { 51.6, 44.5, 28, 315 }, + [23] = { 52.2, 44.2, 28, 315 }, + [24] = { 51.4, 44.1, 28, 315 }, + [25] = { 51.7, 44, 28, 315 }, + [26] = { 52.2, 44, 28, 315 }, + [27] = { 51.9, 43.8, 28, 315 }, + }, + ["lvl"] = "53-54", + }, + [1836] = { + ["coords"] = { + [1] = { 41.7, 15.4, 28, 360 }, + [2] = { 41.9, 15.4, 28, 360 }, + [3] = { 42.2, 15, 28, 360 }, + [4] = { 41.9, 15, 28, 360 }, + [5] = { 42.2, 14.8, 28, 360 }, + [6] = { 42, 14.5, 28, 360 }, + }, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [1837] = { + ["coords"] = { + [1] = { 42.2, 18.5, 28, 37800 }, + }, + ["lvl"] = "60", + ["rnk"] = "4", + }, + [1838] = { + ["coords"] = { + [1] = { 45.2, 15.3, 28, 18000 }, + }, + ["lvl"] = "61", + ["rnk"] = "2", + }, + [1839] = { + ["coords"] = { + [1] = { 56.9, 34.8, 28, 75600 }, + }, + ["lvl"] = "63", + ["rnk"] = "2", + }, + [1840] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [1841] = { + ["coords"] = { + [1] = { 45.7, 18.8, 28, 115200 }, + }, + ["lvl"] = "60", + ["rnk"] = "2", + }, + [1842] = { + ["coords"] = { + [1] = { 42, 14.8, 28, 3600 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [1843] = { + ["coords"] = { + [1] = { 45.6, 9.2, 28, 18000 }, + }, + ["lvl"] = "62", + ["rnk"] = "2", + }, + [1844] = { + ["coords"] = { + [1] = { 49, 32.7, 28, 75600 }, + }, + ["lvl"] = "58", + ["rnk"] = "4", + }, + [1845] = { + ["coords"] = { + [1] = { 48.8, 33.6, 28, 315 }, + }, + ["lvl"] = "59", + }, + [1846] = { + ["coords"] = { + [1] = { 44.9, 17.8, 28, 660 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [1847] = { + ["coords"] = { + [1] = { 46.5, 52.3, 28, 37800 }, + }, + ["lvl"] = "52", + ["rnk"] = "4", + }, + [1848] = { + ["coords"] = { + [1] = { 54.2, 80.4, 28, 18000 }, + }, + ["lvl"] = "56", + ["rnk"] = "4", + }, + [1849] = { + ["coords"] = {}, + ["lvl"] = "38", + ["rnk"] = "4", + }, + [1850] = { + ["coords"] = { + [1] = { 48.1, 67.4, 28, 172800 }, + }, + ["lvl"] = "58", + ["rnk"] = "2", + }, + [1851] = { + ["coords"] = { + [1] = { 62.2, 36.3, 28, 115200 }, + }, + ["lvl"] = "62", + ["rnk"] = "4", + }, + [1852] = { + ["coords"] = { + [1] = { 45.6, 69.3, 28, 900 }, + [2] = { 45.6, 69.3, 28, 0 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [1853] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [1854] = { + ["coords"] = { + [1] = { 52.1, 83.3, 28, 315 }, + }, + ["fac"] = "A", + ["lvl"] = "62", + }, + [1855] = { + ["coords"] = { + [1] = { 67.3, 24.2, 28, 610 }, + [2] = { 7.6, 43.7, 139, 610 }, + }, + ["fac"] = "AH", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [1857] = { + ["coords"] = {}, + ["lvl"] = "5", + }, + [1858] = { + ["coords"] = {}, + ["lvl"] = "5", + }, + [1859] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "4-7", + }, + [1860] = { + ["coords"] = {}, + ["lvl"] = "17", + }, + [1861] = { + ["coords"] = {}, + ["lvl"] = "26", + }, + [1862] = { + ["coords"] = {}, + ["lvl"] = "34", + }, + [1863] = { + ["coords"] = {}, + ["lvl"] = "20", + }, + [1864] = { + ["coords"] = {}, + ["lvl"] = "36", + }, + [1865] = { + ["coords"] = { + [1] = { 45.6, 56.4, 130, 413 }, + [2] = { 47.5, 55.8, 130, 413 }, + [3] = { 46.1, 55.7, 130, 413 }, + [4] = { 46.9, 55.5, 130, 413 }, + [5] = { 45.8, 55, 130, 413 }, + [6] = { 47.5, 54.6, 130, 413 }, + [7] = { 46.7, 54.2, 130, 413 }, + [8] = { 46, 54.1, 130, 413 }, + [9] = { 46.2, 54.1, 130, 413 }, + [10] = { 46.6, 53.2, 130, 413 }, + [11] = { 48, 52.9, 130, 413 }, + }, + ["lvl"] = "12-13", + }, + [1866] = { + ["coords"] = { + [1] = { 46.2, 54.6, 130, 413 }, + [2] = { 45.7, 54.4, 130, 413 }, + [3] = { 45.8, 54.4, 130, 413 }, + [4] = { 47.5, 54.2, 130, 413 }, + [5] = { 47, 54.1, 130, 413 }, + [6] = { 47.1, 53.6, 130, 413 }, + [7] = { 47.6, 53, 130, 413 }, + [8] = { 47, 53, 130, 413 }, + [9] = { 48, 52.6, 130, 413 }, + [10] = { 48.1, 51.3, 130, 413 }, + [11] = { 48.2, 50.2, 130, 413 }, + [12] = { 53, 16.2, 130, 413 }, + [13] = { 54, 15.4, 130, 413 }, + [14] = { 52.9, 15.3, 130, 413 }, + [15] = { 52.1, 15.2, 130, 413 }, + [16] = { 53.4, 15, 130, 413 }, + [17] = { 53.7, 14.7, 130, 413 }, + [18] = { 52.7, 14.6, 130, 413 }, + [19] = { 52.2, 14.5, 130, 413 }, + [20] = { 53, 14.1, 130, 413 }, + [21] = { 53.7, 14, 130, 413 }, + [22] = { 51.6, 14, 130, 413 }, + [23] = { 52, 13.9, 130, 413 }, + [24] = { 51.9, 13.7, 130, 413 }, + [25] = { 51.7, 13.7, 130, 413 }, + [26] = { 52.3, 13.5, 130, 413 }, + }, + ["lvl"] = "11-12", + }, + [1867] = { + ["coords"] = { + [1] = { 51.4, 71, 130, 413 }, + [2] = { 52.6, 70.9, 130, 413 }, + [3] = { 53.2, 70.4, 130, 413 }, + [4] = { 50.3, 69.8, 130, 413 }, + [5] = { 49.4, 69.5, 130, 413 }, + [6] = { 51.5, 69.3, 130, 413 }, + [7] = { 49.5, 69.1, 130, 413 }, + [8] = { 53.1, 68.7, 130, 413 }, + [9] = { 55.6, 68.4, 130, 413 }, + [10] = { 52.5, 68.1, 130, 413 }, + [11] = { 54.7, 67.5, 130, 413 }, + [12] = { 49.3, 67.1, 130, 413 }, + [13] = { 52.2, 66.4, 130, 413 }, + [14] = { 50.6, 66.3, 130, 413 }, + [15] = { 56.7, 65.8, 130, 413 }, + [16] = { 51.8, 65.8, 130, 413 }, + [17] = { 53, 65.8, 130, 413 }, + [18] = { 51.6, 64.3, 130, 413 }, + [19] = { 52.4, 63.8, 130, 413 }, + [20] = { 50.9, 63.5, 130, 413 }, + [21] = { 55.2, 62.9, 130, 413 }, + [22] = { 53.1, 62.9, 130, 413 }, + [23] = { 56.4, 62.8, 130, 413 }, + [24] = { 50.6, 61.6, 130, 413 }, + [25] = { 51.5, 61.5, 130, 413 }, + [26] = { 50.6, 60.9, 130, 413 }, + [27] = { 49.5, 60.7, 130, 413 }, + [28] = { 50.2, 60.3, 130, 413 }, + [29] = { 49.8, 60.2, 130, 413 }, + [30] = { 50.2, 59.8, 130, 413 }, + [31] = { 50, 59.7, 130, 413 }, + [32] = { 50.9, 59.6, 130, 413 }, + [33] = { 50.2, 58.7, 130, 413 }, + [34] = { 52, 57.9, 130, 413 }, + [35] = { 52.3, 56.7, 130, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "13-14", + }, + [1868] = { + ["coords"] = { + [1] = { 53.1, 36.3, 130, 413 }, + [2] = { 52.5, 35.8, 130, 413 }, + [3] = { 55.1, 35.6, 130, 413 }, + [4] = { 52.5, 35, 130, 413 }, + [5] = { 51.7, 34.1, 130, 413 }, + [6] = { 52.9, 34.1, 130, 413 }, + [7] = { 52.4, 32.9, 130, 413 }, + [8] = { 53.9, 32.7, 130, 413 }, + [9] = { 52.5, 30.6, 130, 413 }, + }, + ["lvl"] = "13-14", + }, + [1869] = { + ["coords"] = { + [1] = { 54.1, 35.6, 130, 413 }, + [2] = { 53.7, 33.7, 130, 413 }, + [3] = { 56.1, 33.3, 130, 413 }, + [4] = { 57.3, 32.6, 130, 413 }, + [5] = { 54.8, 32.4, 130, 413 }, + [6] = { 56.6, 32.1, 130, 413 }, + [7] = { 55.5, 31.9, 130, 413 }, + [8] = { 53.1, 31.7, 130, 413 }, + }, + ["lvl"] = "14-15", + }, + [1870] = { + ["coords"] = { + [1] = { 58.6, 36.5, 130, 413 }, + [2] = { 56.1, 35.2, 130, 413 }, + [3] = { 57.9, 35.1, 130, 413 }, + [4] = { 56.6, 34.7, 130, 413 }, + [5] = { 57, 33.9, 130, 413 }, + }, + ["lvl"] = "15-16", + }, + [1871] = { + ["coords"] = {}, + ["lvl"] = "28-29", + }, + [1872] = { + ["coords"] = { + [1] = { 46, 51.7, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "12", + }, + [1879] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "15", + }, + [1880] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [1881] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [1883] = { + ["coords"] = { + [1] = { 44, 17.8, 28, 997 }, + [2] = { 46.2, 17.5, 28, 912 }, + [3] = { 43.9, 17.4, 28, 791 }, + [4] = { 44.1, 17.4, 28, 834 }, + [5] = { 45.9, 17.3, 28, 981 }, + [6] = { 45.9, 17.2, 28, 916 }, + [7] = { 43.6, 17.2, 28, 813 }, + [8] = { 44, 17, 28, 738 }, + [9] = { 46.2, 17, 28, 835 }, + [10] = { 46.1, 17, 28, 841 }, + [11] = { 43.9, 16.7, 28, 999 }, + [12] = { 45.7, 16.6, 28, 774 }, + [13] = { 45.9, 16.6, 28, 983 }, + [14] = { 46.4, 16.5, 28, 879 }, + [15] = { 45.6, 16.4, 28, 822 }, + [16] = { 45.6, 16.3, 28, 981 }, + [17] = { 46, 16.2, 28, 996 }, + [18] = { 46, 16.2, 28, 961 }, + [19] = { 45.8, 16, 28, 802 }, + [20] = { 45, 14, 28, 1016 }, + [21] = { 44.9, 13.8, 28, 978 }, + [22] = { 44.4, 13.7, 28, 887 }, + [23] = { 44.2, 13.5, 28, 952 }, + [24] = { 44.3, 13.4, 28, 838 }, + [25] = { 44.4, 13.4, 28, 816 }, + [26] = { 44.9, 12.8, 28, 781 }, + [27] = { 44.9, 12.8, 28, 851 }, + [28] = { 44.9, 12.7, 28, 868 }, + [29] = { 45.5, 12.7, 28, 807 }, + [30] = { 45.5, 12.6, 28, 833 }, + [31] = { 44.5, 12.6, 28, 899 }, + [32] = { 44.4, 12.6, 28, 849 }, + [33] = { 46.1, 12.4, 28, 866 }, + [34] = { 46, 12.4, 28, 788 }, + [35] = { 46.1, 12.4, 28, 816 }, + [36] = { 44.9, 12, 28, 1010 }, + [37] = { 44.9, 12, 28, 905 }, + [38] = { 45.8, 11.6, 28, 876 }, + [39] = { 45.9, 11.1, 28, 762 }, + [40] = { 45.9, 11, 28, 924 }, + [41] = { 45.8, 10.8, 28, 999 }, + [42] = { 45.6, 10.8, 28, 990 }, + [43] = { 45.7, 10.6, 28, 856 }, + [44] = { 45.3, 10.5, 28, 803 }, + [45] = { 45.2, 10.4, 28, 959 }, + [46] = { 45.2, 10.3, 28, 872 }, + [47] = { 45.3, 10, 28, 852 }, + [48] = { 45.2, 10, 28, 742 }, + [49] = { 45.7, 9.7, 28, 1002 }, + [50] = { 45.7, 9.7, 28, 988 }, + [51] = { 45.5, 9.5, 28, 832 }, + [52] = { 45.7, 9.5, 28, 984 }, + [53] = { 45.3, 9.4, 28, 873 }, + [54] = { 45.3, 9.3, 28, 953 }, + [55] = { 45.5, 8.9, 28, 1014 }, + [56] = { 45.5, 8.8, 28, 987 }, + }, + ["lvl"] = "55-57", + }, + [1884] = { + ["coords"] = { + [1] = { 48.5, 35.8, 28, 315 }, + [2] = { 46.3, 35.5, 28, 315 }, + [3] = { 44.2, 35.4, 28, 315 }, + [4] = { 45.3, 35, 28, 315 }, + [5] = { 44.4, 34.4, 28, 315 }, + [6] = { 45, 34.3, 28, 315 }, + [7] = { 49.4, 34.3, 28, 315 }, + [8] = { 44.3, 34.2, 28, 315 }, + [9] = { 45.1, 34.2, 28, 315 }, + [10] = { 44.1, 33.9, 28, 315 }, + [11] = { 44.8, 33.8, 28, 315 }, + [12] = { 44.8, 33.7, 28, 315 }, + [13] = { 46.6, 33.5, 28, 315 }, + [14] = { 46.3, 33.4, 28, 315 }, + [15] = { 44.6, 33.4, 28, 315 }, + [16] = { 45.4, 33.2, 28, 315 }, + [17] = { 48.6, 33, 28, 315 }, + [18] = { 48, 33, 28, 315 }, + [19] = { 47.7, 32.6, 28, 315 }, + [20] = { 48.2, 32.2, 28, 315 }, + [21] = { 46.5, 32.2, 28, 315 }, + [22] = { 48.5, 32, 28, 315 }, + [23] = { 48.3, 31.8, 28, 315 }, + [24] = { 49.4, 31.4, 28, 315 }, + [25] = { 47.6, 30.8, 28, 315 }, + }, + ["lvl"] = "54-56", + }, + [1885] = { + ["coords"] = { + [1] = { 43.6, 12.9, 28, 18000 }, + }, + ["lvl"] = "59", + ["rnk"] = "4", + }, + [1888] = { + ["coords"] = { + [1] = { 58.9, 80.6, 130, 413 }, + [2] = { 62.1, 80.1, 130, 413 }, + [3] = { 59.8, 79.8, 130, 413 }, + [4] = { 61.2, 79.7, 130, 413 }, + [5] = { 57.8, 78.7, 130, 413 }, + [6] = { 56, 78, 130, 413 }, + [7] = { 57.8, 77.6, 130, 413 }, + [8] = { 63.1, 77.3, 130, 413 }, + [9] = { 63.6, 77.2, 130, 413 }, + [10] = { 62.3, 77.2, 130, 413 }, + [11] = { 61.9, 77.1, 130, 413 }, + [12] = { 62.5, 76.7, 130, 413 }, + [13] = { 62.9, 76.5, 130, 413 }, + [14] = { 63.2, 76.4, 130, 413 }, + [15] = { 59.4, 76.3, 130, 413 }, + [16] = { 60.1, 76.1, 130, 413 }, + [17] = { 61.2, 75.9, 130, 413 }, + [18] = { 62.7, 75.4, 130, 413 }, + [19] = { 60.4, 74.7, 130, 413 }, + [20] = { 62.4, 74.4, 130, 413 }, + [21] = { 62.6, 73.4, 130, 413 }, + [22] = { 64.6, 63.7, 130, 413 }, + [23] = { 64.7, 61.9, 130, 413 }, + [24] = { 63, 61, 130, 413 }, + [25] = { 64.2, 59.6, 130, 413 }, + [26] = { 63.3, 59.3, 130, 413 }, + [27] = { 66.3, 59.1, 130, 413 }, + [28] = { 65.1, 58.8, 130, 413 }, + [29] = { 63.5, 58.2, 130, 413 }, + [30] = { 64.5, 58, 130, 413 }, + [31] = { 65.8, 57.7, 130, 413 }, + [32] = { 63.9, 57.3, 130, 413 }, + [33] = { 63.8, 57.1, 130, 413 }, + [34] = { 64.4, 56.4, 130, 413 }, + [35] = { 65.2, 56.3, 130, 413 }, + [36] = { 7.1, 45.7, 267, 413 }, + [37] = { 5.8, 45.3, 267, 413 }, + [38] = { 8.3, 42.1, 267, 413 }, + [39] = { 9, 42, 267, 413 }, + [40] = { 7.3, 41.9, 267, 413 }, + [41] = { 6.8, 41.8, 267, 413 }, + [42] = { 7.5, 41.3, 267, 413 }, + [43] = { 8.1, 41, 267, 413 }, + [44] = { 8.5, 40.9, 267, 413 }, + [45] = { 7.8, 39.6, 267, 413 }, + [46] = { 7.7, 37, 267, 413 }, + [47] = { 10.3, 24.2, 267, 413 }, + [48] = { 10.4, 21.8, 267, 413 }, + [49] = { 8.2, 20.6, 267, 413 }, + [50] = { 9.7, 18.8, 267, 413 }, + [51] = { 8.7, 18.5, 267, 413 }, + [52] = { 12.5, 18.2, 267, 413 }, + [53] = { 11, 17.8, 267, 413 }, + [54] = { 8.8, 17.1, 267, 413 }, + [55] = { 10.1, 16.7, 267, 413 }, + [56] = { 11.9, 16.3, 267, 413 }, + [57] = { 9.4, 15.8, 267, 413 }, + [58] = { 9.2, 15.5, 267, 413 }, + [59] = { 10.1, 14.6, 267, 413 }, + [60] = { 11.1, 14.5, 267, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "18-19", + }, + [1889] = { + ["coords"] = { + [1] = { 66.3, 78.2, 130, 413 }, + [2] = { 65.2, 78, 130, 413 }, + [3] = { 57.6, 77.5, 130, 413 }, + [4] = { 62.5, 76.6, 130, 413 }, + [5] = { 62.3, 76.4, 130, 413 }, + [6] = { 64.8, 76.3, 130, 413 }, + [7] = { 62.9, 76.3, 130, 413 }, + [8] = { 62.9, 76.2, 130, 413 }, + [9] = { 65.9, 75.7, 130, 413 }, + [10] = { 64.6, 75.4, 130, 413 }, + [11] = { 65, 74, 130, 413 }, + [12] = { 64.1, 73.9, 130, 413 }, + [13] = { 63, 72.7, 130, 413 }, + [14] = { 63.4, 65.6, 130, 413 }, + [15] = { 63.1, 65.5, 130, 413 }, + [16] = { 63.4, 65.3, 130, 413 }, + [17] = { 64.2, 59.7, 130, 413 }, + [18] = { 63.8, 58.9, 130, 413 }, + [19] = { 63.4, 58.9, 130, 413 }, + [20] = { 63.4, 58.8, 130, 413 }, + [21] = { 63.8, 58.8, 130, 413 }, + [22] = { 63.9, 58.7, 130, 413 }, + [23] = { 65, 58.5, 130, 413 }, + [24] = { 63.2, 58.2, 130, 413 }, + [25] = { 63.5, 58.1, 130, 413 }, + [26] = { 63.4, 57.1, 130, 413 }, + [27] = { 64, 56.8, 130, 413 }, + [28] = { 65.4, 56.4, 130, 413 }, + [29] = { 65.1, 52.3, 130, 413 }, + [30] = { 65.8, 50.7, 130, 413 }, + [31] = { 64.9, 49.8, 130, 413 }, + [32] = { 66.1, 49.6, 130, 413 }, + [33] = { 12.6, 43.3, 267, 413 }, + [34] = { 11.1, 43, 267, 413 }, + [35] = { 7.5, 41.2, 267, 413 }, + [36] = { 7.3, 41, 267, 413 }, + [37] = { 10.6, 40.8, 267, 413 }, + [38] = { 8.1, 40.7, 267, 413 }, + [39] = { 8, 40.6, 267, 413 }, + [40] = { 12, 40, 267, 413 }, + [41] = { 10.3, 39.7, 267, 413 }, + [42] = { 10.9, 37.8, 267, 413 }, + [43] = { 9.7, 37.7, 267, 413 }, + [44] = { 8.2, 36.1, 267, 413 }, + [45] = { 8.7, 26.7, 267, 413 }, + [46] = { 8.4, 26.6, 267, 413 }, + [47] = { 8.7, 26.3, 267, 413 }, + [48] = { 9.8, 18.9, 267, 413 }, + [49] = { 9.2, 18, 267, 413 }, + [50] = { 8.7, 17.9, 267, 413 }, + [51] = { 8.8, 17.8, 267, 413 }, + [52] = { 9.3, 17.8, 267, 413 }, + [53] = { 9.3, 17.7, 267, 413 }, + [54] = { 10.8, 17.4, 267, 413 }, + [55] = { 8.5, 17.1, 267, 413 }, + [56] = { 8.9, 16.9, 267, 413 }, + [57] = { 8.7, 15.6, 267, 413 }, + [58] = { 9.6, 15.2, 267, 413 }, + [59] = { 11.3, 14.7, 267, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "19-20", + }, + [1890] = { + ["coords"] = { + [1] = { 34.4, 65.1, 85, 300 }, + [2] = { 34.2, 64.7, 85, 300 }, + [3] = { 34.5, 64.4, 85, 300 }, + [4] = { 33, 63, 85, 300 }, + [5] = { 34.2, 63, 85, 300 }, + [6] = { 33.6, 62.6, 85, 300 }, + [7] = { 33.9, 61.9, 85, 300 }, + [8] = { 32.8, 61.8, 85, 300 }, + [9] = { 32.3, 61.7, 85, 300 }, + [10] = { 33.3, 61.6, 85, 300 }, + [11] = { 31.9, 61.5, 85, 300 }, + [12] = { 32, 61.1, 85, 300 }, + [13] = { 33.8, 60.7, 85, 300 }, + [14] = { 31, 60.7, 85, 300 }, + [15] = { 31.4, 60.4, 85, 300 }, + [16] = { 32.8, 60.4, 85, 300 }, + [17] = { 33.3, 60.3, 85, 300 }, + [18] = { 32, 60.1, 85, 300 }, + [19] = { 33.2, 59.6, 85, 300 }, + [20] = { 32.3, 59.3, 85, 300 }, + }, + ["lvl"] = "2-3", + }, + [1891] = { + ["coords"] = { + [1] = { 46, 75.1, 130, 300 }, + [2] = { 45, 75, 130, 300 }, + [3] = { 45.6, 74.9, 130, 300 }, + [4] = { 44.6, 74.4, 130, 300 }, + [5] = { 47.4, 74, 130, 300 }, + [6] = { 44.7, 73.3, 130, 300 }, + [7] = { 42.8, 73.1, 130, 300 }, + [8] = { 46.6, 73, 130, 300 }, + [9] = { 45.3, 72.4, 130, 300 }, + [10] = { 45.8, 72.3, 130, 300 }, + [11] = { 48.3, 72.2, 130, 300 }, + [12] = { 47.7, 72, 130, 300 }, + [13] = { 43.8, 72, 130, 300 }, + [14] = { 44, 71.8, 130, 300 }, + [15] = { 45.2, 71.8, 130, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "13-14", + ["rnk"] = "1", + }, + [1892] = { + ["coords"] = {}, + ["lvl"] = "13-14", + ["rnk"] = "1", + }, + [1893] = { + ["coords"] = {}, + ["lvl"] = "14-15", + ["rnk"] = "1", + }, + [1894] = { + ["coords"] = { + [1] = { 45.5, 75.3, 130, 300 }, + [2] = { 46.2, 74.2, 130, 300 }, + [3] = { 47.6, 74.2, 130, 300 }, + [4] = { 47.4, 74, 130, 300 }, + [5] = { 44.8, 73.8, 130, 300 }, + [6] = { 44, 73.5, 130, 300 }, + [7] = { 47.2, 73.5, 130, 300 }, + [8] = { 43.3, 73.3, 130, 300 }, + [9] = { 43.6, 73.3, 130, 300 }, + [10] = { 44.7, 73.2, 130, 300 }, + [11] = { 48, 73.1, 130, 300 }, + [12] = { 42.7, 73, 130, 300 }, + [13] = { 43.8, 72.8, 130, 300 }, + [14] = { 44.5, 72.3, 130, 300 }, + [15] = { 45.2, 71.7, 130, 300 }, + [16] = { 45.3, 71.6, 130, 300 }, + [17] = { 45.2, 71.4, 130, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "14-15", + ["rnk"] = "1", + }, + [1895] = { + ["coords"] = { + [1] = { 45.4, 74.7, 130, 300 }, + [2] = { 44.5, 74.5, 130, 300 }, + [3] = { 44.5, 74.3, 130, 300 }, + [4] = { 46, 74.2, 130, 300 }, + [5] = { 44.5, 74.2, 130, 300 }, + [6] = { 47.6, 74.1, 130, 300 }, + [7] = { 48, 73.5, 130, 300 }, + [8] = { 43.5, 73.1, 130, 300 }, + [9] = { 45.6, 72.2, 130, 300 }, + [10] = { 46.3, 71.8, 130, 300 }, + [11] = { 45.3, 71.3, 130, 300 }, + [12] = { 45.2, 71.1, 130, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "14-15", + ["rnk"] = "1", + }, + [1896] = { + ["coords"] = {}, + ["lvl"] = "14-15", + ["rnk"] = "1", + }, + [1901] = { + ["coords"] = { + [1] = { 67, 90.1, 1537, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [1907] = { + ["coords"] = { + [1] = { 27.9, 64.6, 33, 300 }, + [2] = { 28.2, 64.4, 33, 300 }, + [3] = { 24.5, 64.4, 33, 300 }, + [4] = { 26.9, 63.7, 33, 300 }, + [5] = { 25.1, 63.7, 33, 300 }, + [6] = { 24, 63.6, 33, 300 }, + [7] = { 28, 63.4, 33, 300 }, + [8] = { 25.7, 63.2, 33, 300 }, + [9] = { 28, 63.1, 33, 300 }, + [10] = { 24.6, 63.1, 33, 300 }, + [11] = { 27.1, 63, 33, 300 }, + [12] = { 27, 62.5, 33, 300 }, + [13] = { 26.2, 62.4, 33, 300 }, + [14] = { 27.9, 62.3, 33, 300 }, + [15] = { 24.1, 62.3, 33, 300 }, + [16] = { 27.9, 61.6, 33, 300 }, + [17] = { 24.6, 61.5, 33, 300 }, + [18] = { 25.7, 61.5, 33, 300 }, + [19] = { 27, 61.3, 33, 300 }, + [20] = { 26.3, 60.7, 33, 300 }, + [21] = { 27, 60.6, 33, 300 }, + [22] = { 25, 60.5, 33, 300 }, + [23] = { 26.4, 60, 33, 300 }, + [24] = { 27.1, 59.7, 33, 300 }, + [25] = { 24.9, 59.5, 33, 300 }, + [26] = { 25.9, 59.5, 33, 300 }, + [27] = { 25.1, 58.8, 33, 300 }, + }, + ["lvl"] = "43-44", + }, + [1908] = { + ["coords"] = { + [1] = { 5.2, 64, 36, 300 }, + [2] = { 5.8, 59, 36, 300 }, + [3] = { 1, 53.9, 36, 300 }, + [4] = { 66.9, 48.6, 130, 300 }, + [5] = { 67.4, 45.3, 130, 300 }, + [6] = { 65.3, 43.5, 130, 300 }, + [7] = { 64.9, 42.2, 130, 300 }, + [8] = { 64.2, 41.9, 130, 300 }, + [9] = { 65.1, 41.1, 130, 300 }, + [10] = { 68.3, 20.6, 130, 300 }, + [11] = { 67.4, 19.5, 130, 300 }, + [12] = { 72.9, 18.6, 130, 300 }, + [13] = { 71.3, 18.4, 130, 300 }, + [14] = { 73.6, 18.3, 130, 300 }, + [15] = { 72, 18.3, 130, 300 }, + [16] = { 69.9, 18.2, 130, 300 }, + [17] = { 72.8, 17.4, 130, 300 }, + [18] = { 71.1, 17.3, 130, 300 }, + [19] = { 73.2, 16.9, 130, 300 }, + [20] = { 73.1, 16.7, 130, 300 }, + [21] = { 73.1, 16.3, 130, 300 }, + }, + ["lvl"] = "19-20", + }, + [1909] = { + ["coords"] = { + [1] = { 6.2, 65.2, 36, 300 }, + [2] = { 4.9, 61.9, 36, 300 }, + [3] = { 5.1, 60.4, 36, 300 }, + [4] = { 4.8, 59.8, 36, 300 }, + [5] = { 5.1, 59.5, 36, 300 }, + [6] = { 5.3, 58.4, 36, 300 }, + [7] = { 5.7, 57.9, 36, 300 }, + [8] = { 4.8, 56.2, 36, 300 }, + [9] = { 67.6, 49.4, 130, 300 }, + [10] = { 66.8, 47.2, 130, 300 }, + [11] = { 65.7, 47.1, 130, 300 }, + [12] = { 66.9, 46.2, 130, 300 }, + [13] = { 65.9, 46, 130, 300 }, + [14] = { 66.7, 45.8, 130, 300 }, + [15] = { 66.9, 45.6, 130, 300 }, + [16] = { 65.6, 44.9, 130, 300 }, + [17] = { 67, 44.9, 130, 300 }, + [18] = { 67.3, 44.5, 130, 300 }, + [19] = { 66.7, 43.4, 130, 300 }, + [20] = { 65.9, 43.4, 130, 300 }, + [21] = { 64.5, 43.2, 130, 300 }, + [22] = { 65.2, 42.6, 130, 300 }, + [23] = { 65.9, 42.2, 130, 300 }, + [24] = { 64.6, 41.3, 130, 300 }, + [25] = { 70.6, 22.3, 130, 300 }, + [26] = { 69.9, 22.2, 130, 300 }, + [27] = { 72.3, 22, 130, 300 }, + [28] = { 71.4, 21.8, 130, 300 }, + [29] = { 65.5, 21.7, 130, 300 }, + [30] = { 64.6, 21.3, 130, 300 }, + [31] = { 66.8, 21.2, 130, 300 }, + [32] = { 69.7, 21, 130, 300 }, + [33] = { 65.1, 20.9, 130, 300 }, + [34] = { 66, 19.9, 130, 300 }, + [35] = { 69.1, 19.8, 130, 300 }, + [36] = { 64.4, 19.7, 130, 300 }, + [37] = { 73.6, 19.5, 130, 300 }, + [38] = { 70.6, 19.4, 130, 300 }, + [39] = { 74.2, 18.9, 130, 300 }, + [40] = { 68, 18.8, 130, 300 }, + [41] = { 75, 18.7, 130, 300 }, + [42] = { 65.3, 18.6, 130, 300 }, + [43] = { 66.4, 18.5, 130, 300 }, + [44] = { 74.5, 17.7, 130, 300 }, + [45] = { 68.2, 17.6, 130, 300 }, + [46] = { 74.6, 17.6, 130, 300 }, + [47] = { 75.6, 17.5, 130, 300 }, + [48] = { 73.7, 17.5, 130, 300 }, + [49] = { 70.6, 17.5, 130, 300 }, + [50] = { 67.3, 17.4, 130, 300 }, + [51] = { 73.9, 17.4, 130, 300 }, + [52] = { 69.8, 17.4, 130, 300 }, + [53] = { 68.9, 17.1, 130, 300 }, + [54] = { 75.4, 17, 130, 300 }, + [55] = { 73.1, 16.6, 130, 300 }, + [56] = { 72.5, 16.6, 130, 300 }, + [57] = { 74.7, 16.3, 130, 300 }, + [58] = { 73, 16.1, 130, 300 }, + [59] = { 73.8, 16.1, 130, 300 }, + [60] = { 73.3, 16, 130, 300 }, + [61] = { 73, 15.9, 130, 300 }, + [62] = { 73.9, 15.9, 130, 300 }, + [63] = { 75.3, 15.9, 130, 300 }, + }, + ["lvl"] = "18-19", + }, + [1910] = { + ["coords"] = { + [1] = { 36.5, 42.4, 85, 3600 }, + }, + ["lvl"] = "10", + ["rnk"] = "4", + }, + [1911] = { + ["coords"] = { + [1] = { 63.3, 27.5, 85, 5400 }, + }, + ["lvl"] = "12", + ["rnk"] = "4", + }, + [1912] = { + ["coords"] = { + [1] = { 62.8, 68.5, 130, 413 }, + [2] = { 55.2, 67.8, 130, 413 }, + [3] = { 57.6, 67.5, 130, 413 }, + [4] = { 61.7, 66.9, 130, 413 }, + [5] = { 58.6, 66.7, 130, 413 }, + [6] = { 60.1, 66.5, 130, 413 }, + [7] = { 60.1, 66, 130, 413 }, + [8] = { 60.2, 65.9, 130, 413 }, + [9] = { 58, 65.6, 130, 413 }, + [10] = { 61, 65.3, 130, 413 }, + [11] = { 58.8, 65.2, 130, 413 }, + [12] = { 59.8, 65.1, 130, 413 }, + [13] = { 58, 64.4, 130, 413 }, + [14] = { 57.1, 63.6, 130, 413 }, + [15] = { 58.7, 63.5, 130, 413 }, + [16] = { 60.9, 63.3, 130, 413 }, + [17] = { 62, 62.8, 130, 413 }, + [18] = { 57.9, 62.5, 130, 413 }, + [19] = { 60.8, 62.5, 130, 413 }, + [20] = { 59.9, 62.3, 130, 413 }, + [21] = { 59.1, 61.9, 130, 413 }, + [22] = { 58, 61.9, 130, 413 }, + [23] = { 62.1, 61.5, 130, 413 }, + [24] = { 55.5, 61.2, 130, 413 }, + [25] = { 55, 60.4, 130, 413 }, + [26] = { 56.5, 58.7, 130, 413 }, + [27] = { 55.5, 56.3, 130, 413 }, + [28] = { 54.9, 54.4, 130, 413 }, + [29] = { 56.7, 54.4, 130, 413 }, + [30] = { 7.9, 30.5, 267, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "14-15", + }, + [1913] = { + ["coords"] = { + [1] = { 63.4, 65.5, 130, 413 }, + [2] = { 63.6, 64, 130, 413 }, + [3] = { 62.5, 63.9, 130, 413 }, + [4] = { 64, 63.9, 130, 413 }, + [5] = { 62.7, 63.4, 130, 413 }, + [6] = { 63.5, 63.1, 130, 413 }, + [7] = { 62.7, 62.4, 130, 413 }, + [8] = { 63, 62.3, 130, 413 }, + [9] = { 63, 62.2, 130, 413 }, + [10] = { 8.7, 26.6, 267, 413 }, + [11] = { 9, 24.7, 267, 413 }, + [12] = { 7.6, 24.5, 267, 413 }, + [13] = { 9.5, 24.5, 267, 413 }, + [14] = { 7.9, 23.8, 267, 413 }, + [15] = { 8.9, 23.4, 267, 413 }, + [16] = { 7.8, 22.5, 267, 413 }, + [17] = { 8.2, 22.4, 267, 413 }, + [18] = { 8.2, 22.3, 267, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "16-17", + }, + [1914] = { + ["coords"] = { + [1] = { 62.3, 71.7, 130, 413 }, + [2] = { 62.8, 69.6, 130, 413 }, + [3] = { 61.6, 69, 130, 413 }, + [4] = { 62.7, 67.6, 130, 413 }, + [5] = { 62.6, 67.5, 130, 413 }, + [6] = { 59, 67.1, 130, 413 }, + [7] = { 59.7, 66.5, 130, 413 }, + [8] = { 60.4, 66.5, 130, 413 }, + [9] = { 58, 66.3, 130, 413 }, + [10] = { 59.2, 65.6, 130, 413 }, + [11] = { 60.2, 65.3, 130, 413 }, + [12] = { 57.6, 64.3, 130, 413 }, + [13] = { 59.6, 63.2, 130, 413 }, + [14] = { 61.3, 62.6, 130, 413 }, + [15] = { 60.8, 62.5, 130, 413 }, + [16] = { 58.8, 62.5, 130, 413 }, + [17] = { 59.9, 62.4, 130, 413 }, + [18] = { 59.8, 62.4, 130, 413 }, + [19] = { 59.1, 61.8, 130, 413 }, + [20] = { 59.5, 61.7, 130, 413 }, + [21] = { 8, 32, 267, 413 }, + [22] = { 7.8, 29.4, 267, 413 }, + [23] = { 7.7, 29.2, 267, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "15-16", + }, + [1915] = { + ["coords"] = { + [1] = { 63.8, 65.8, 130, 413 }, + [2] = { 63.2, 65.3, 130, 413 }, + [3] = { 63.5, 65.3, 130, 413 }, + [4] = { 62.7, 64.6, 130, 413 }, + [5] = { 63.4, 63.8, 130, 413 }, + [6] = { 62.8, 63.5, 130, 413 }, + [7] = { 63.4, 63.4, 130, 413 }, + [8] = { 63.2, 62.5, 130, 413 }, + [9] = { 63, 62.1, 130, 413 }, + [10] = { 9.3, 27, 267, 413 }, + [11] = { 8.4, 26.3, 267, 413 }, + [12] = { 8.9, 26.3, 267, 413 }, + [13] = { 7.8, 25.4, 267, 413 }, + [14] = { 8.8, 24.3, 267, 413 }, + [15] = { 7.9, 23.9, 267, 413 }, + [16] = { 8.7, 23.9, 267, 413 }, + [17] = { 8.5, 22.7, 267, 413 }, + [18] = { 8.2, 22.1, 267, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "17-18", + }, + [1916] = { + ["coords"] = { + [1] = { 36.4, 61.9, 85, 300 }, + }, + ["lvl"] = "2-3", + }, + [1917] = { + ["coords"] = { + [1] = { 36.6, 62.1, 85, 300 }, + }, + ["lvl"] = "2-3", + }, + [1918] = { + ["coords"] = { + [1] = { 36.8, 61.8, 85, 300 }, + }, + ["lvl"] = "2-3", + }, + [1919] = { + ["coords"] = { + [1] = { 36.6, 61.6, 85, 300 }, + }, + ["lvl"] = "5", + }, + [1920] = { + ["coords"] = { + [1] = { 63.5, 63.3, 130, 38000 }, + [2] = { 8.9, 23.8, 267, 38000 }, + }, + ["fac"] = "A", + ["lvl"] = "21", + ["rnk"] = "4", + }, + [1921] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [1922] = { + ["coords"] = { + [1] = { 60.4, 71.3, 12, 270 }, + [2] = { 62.2, 70.9, 12, 270 }, + [3] = { 61.1, 70.1, 12, 270 }, + [4] = { 69.9, 69.5, 12, 270 }, + [5] = { 59.2, 69.4, 12, 270 }, + [6] = { 63.1, 69, 12, 270 }, + [7] = { 74, 68.9, 12, 270 }, + [8] = { 59.9, 68.6, 12, 270 }, + [9] = { 66.2, 67.8, 12, 270 }, + [10] = { 72.8, 67.6, 12, 270 }, + [11] = { 59.4, 66.9, 12, 270 }, + [12] = { 61.3, 66.8, 12, 270 }, + [13] = { 60.2, 66.7, 12, 270 }, + [14] = { 71.6, 66.5, 12, 270 }, + [15] = { 61.4, 66.4, 12, 270 }, + [16] = { 73.8, 66.2, 12, 270 }, + [17] = { 59.7, 65.9, 12, 270 }, + [18] = { 68.2, 65.8, 12, 270 }, + [19] = { 60.1, 65.8, 12, 270 }, + [20] = { 66.2, 65.6, 12, 270 }, + [21] = { 59.7, 65.4, 12, 270 }, + [22] = { 68.6, 65.1, 12, 270 }, + [23] = { 74.2, 64.9, 12, 270 }, + [24] = { 59.1, 64.7, 12, 270 }, + [25] = { 65.1, 64.4, 12, 270 }, + [26] = { 60.9, 64.3, 12, 270 }, + [27] = { 60.1, 64.3, 12, 270 }, + [28] = { 69.3, 64.1, 12, 270 }, + [29] = { 67.6, 64.1, 12, 270 }, + [30] = { 60.6, 64, 12, 270 }, + [31] = { 58.7, 63.9, 12, 270 }, + [32] = { 73.6, 63.7, 12, 270 }, + [33] = { 60.6, 63.7, 12, 270 }, + [34] = { 63.2, 63.7, 12, 270 }, + [35] = { 65.6, 63.6, 12, 270 }, + [36] = { 70.4, 63.6, 12, 270 }, + [37] = { 60.9, 63.6, 12, 270 }, + [38] = { 61, 63.4, 12, 270 }, + [39] = { 72.8, 63.2, 12, 270 }, + [40] = { 71.8, 63.2, 12, 270 }, + [41] = { 69, 62.9, 12, 270 }, + [42] = { 66.9, 62.8, 12, 270 }, + [43] = { 67.6, 62.2, 12, 270 }, + [44] = { 58.4, 62.1, 12, 270 }, + [45] = { 69.8, 61.8, 12, 270 }, + [46] = { 70.5, 61.8, 12, 270 }, + [47] = { 60.9, 61.5, 12, 270 }, + [48] = { 69.8, 61.1, 12, 270 }, + [49] = { 61.8, 61.1, 12, 270 }, + [50] = { 71.4, 61.1, 12, 270 }, + [51] = { 64.6, 60.3, 12, 270 }, + [52] = { 60.4, 59.7, 12, 270 }, + [53] = { 68.4, 59.5, 12, 270 }, + [54] = { 66.4, 58.2, 12, 270 }, + [55] = { 68.1, 57.9, 12, 270 }, + [56] = { 69, 57.4, 12, 270 }, + }, + ["lvl"] = "7-8", + }, + [1923] = { + ["coords"] = { + [1] = { 50.2, 84.9, 130, 413 }, + [2] = { 49.7, 84.2, 130, 413 }, + [3] = { 49.4, 82.6, 130, 413 }, + [4] = { 48.9, 82, 130, 413 }, + [5] = { 52.5, 81.8, 130, 413 }, + [6] = { 48.7, 80.8, 130, 413 }, + [7] = { 47.5, 80.8, 130, 413 }, + [8] = { 44.6, 80.7, 130, 413 }, + [9] = { 48.4, 80.3, 130, 413 }, + [10] = { 55, 80.3, 130, 413 }, + [11] = { 51.7, 79.5, 130, 413 }, + [12] = { 45.9, 79.3, 130, 413 }, + [13] = { 52.2, 78.2, 130, 413 }, + [14] = { 51.5, 77.9, 130, 413 }, + [15] = { 49.8, 77.7, 130, 413 }, + [16] = { 48.3, 77.3, 130, 413 }, + [17] = { 46.7, 77.1, 130, 413 }, + [18] = { 51.8, 76.7, 130, 413 }, + [19] = { 50, 76.4, 130, 413 }, + [20] = { 51.6, 76.4, 130, 413 }, + [21] = { 49.7, 75.4, 130, 413 }, + [22] = { 49.8, 74, 130, 413 }, + }, + ["lvl"] = "16-17", + }, + [1924] = { + ["coords"] = { + [1] = { 52.5, 86.4, 130, 413 }, + [2] = { 51.6, 85.4, 130, 413 }, + [3] = { 53.5, 84.7, 130, 413 }, + [4] = { 46.9, 82.5, 130, 413 }, + [5] = { 53.1, 82.5, 130, 413 }, + [6] = { 48.3, 82.3, 130, 413 }, + [7] = { 55, 81.4, 130, 413 }, + [8] = { 49.9, 80.5, 130, 413 }, + [9] = { 45.2, 80.5, 130, 413 }, + [10] = { 50.8, 79.6, 130, 413 }, + [11] = { 46.8, 79.5, 130, 413 }, + [12] = { 44.5, 79.2, 130, 413 }, + [13] = { 49.1, 79, 130, 413 }, + [14] = { 51.7, 78.9, 130, 413 }, + [15] = { 48.1, 78.3, 130, 413 }, + [16] = { 54.7, 78.2, 130, 413 }, + [17] = { 46.6, 78.2, 130, 413 }, + [18] = { 47.3, 77.5, 130, 413 }, + [19] = { 54.1, 77, 130, 413 }, + [20] = { 50.8, 77, 130, 413 }, + [21] = { 49.1, 76.3, 130, 413 }, + [22] = { 48.1, 75.7, 130, 413 }, + [23] = { 53.1, 75.4, 130, 413 }, + [24] = { 51, 75.2, 130, 413 }, + [25] = { 52.3, 74.5, 130, 413 }, + [26] = { 51.1, 74.3, 130, 413 }, + [27] = { 49.7, 73.8, 130, 413 }, + [28] = { 58.5, 42.3, 130, 413 }, + [29] = { 58.7, 42.3, 130, 413 }, + [30] = { 57.9, 41.4, 130, 413 }, + [31] = { 60.3, 41.4, 130, 413 }, + [32] = { 60.5, 41.4, 130, 413 }, + [33] = { 59.6, 41, 130, 413 }, + }, + ["lvl"] = "15-16", + }, + [1925] = { + ["coords"] = {}, + ["lvl"] = "20", + }, + [1926] = { + ["coords"] = {}, + ["lvl"] = "20", + }, + [1927] = { + ["coords"] = {}, + ["lvl"] = "20", + }, + [1928] = { + ["coords"] = {}, + ["lvl"] = "20", + }, + [1929] = { + ["coords"] = {}, + ["lvl"] = "20", + }, + [1930] = { + ["coords"] = {}, + ["lvl"] = "20", + }, + [1931] = { + ["coords"] = { + [1] = { 62, 51.3, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "9", + }, + [1932] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [1933] = { + ["coords"] = { + [1] = { 35.3, 87.3, 12, 270 }, + [2] = { 52.7, 84.5, 12, 270 }, + [3] = { 78, 82, 12, 270 }, + [4] = { 31.2, 81, 12, 270 }, + [5] = { 47.3, 80.7, 12, 270 }, + [6] = { 65.5, 79, 12, 270 }, + [7] = { 64.2, 75.8, 12, 270 }, + [8] = { 56.7, 75, 12, 270 }, + [9] = { 89.4, 73.3, 12, 270 }, + [10] = { 78.1, 70.7, 12, 270 }, + [11] = { 44.2, 70.6, 12, 270 }, + [12] = { 41.9, 69.8, 12, 270 }, + [13] = { 39.2, 68.1, 12, 270 }, + [14] = { 86.1, 65.1, 12, 270 }, + [15] = { 31, 58, 12, 270 }, + [16] = { 34.6, 54.8, 12, 270 }, + [17] = { 80.6, 52.4, 12, 270 }, + [18] = { 56.6, 65.5, 36, 300 }, + [19] = { 19.3, 82.4, 38, 300 }, + [20] = { 62.6, 61.7, 38, 300 }, + [21] = { 31.4, 58.1, 38, 300 }, + [22] = { 63.9, 31.3, 38, 300 }, + [23] = { 39.2, 26.7, 38, 300 }, + [24] = { 29.9, 62.9, 44, 300 }, + [25] = { 34.3, 60.1, 44, 300 }, + [26] = { 19.2, 47.2, 44, 300 }, + [27] = { 34.3, 42.3, 44, 300 }, + [28] = { 37.4, 64.1, 267, 300 }, + [29] = { 47, 60.4, 267, 300 }, + [30] = { 58.4, 5.7, 267, 300 }, + [31] = { 40, 61.8, 12, 270 }, + }, + ["lvl"] = "3", + }, + [1934] = { + ["coords"] = { + [1] = { 38, 51.9, 85, 300 }, + [2] = { 38.3, 51.8, 85, 300 }, + [3] = { 37.5, 51.6, 85, 300 }, + [4] = { 36.5, 51.6, 85, 300 }, + [5] = { 34.6, 50.7, 85, 300 }, + [6] = { 37.8, 50.6, 85, 300 }, + [7] = { 35.7, 50.5, 85, 300 }, + [8] = { 38.1, 50.4, 85, 300 }, + [9] = { 38, 49.9, 85, 300 }, + }, + ["lvl"] = "6-7", + }, + [1935] = { + ["coords"] = { + [1] = { 35.1, 51.6, 85, 300 }, + [2] = { 38, 51.5, 85, 300 }, + [3] = { 38.8, 50.6, 85, 300 }, + [4] = { 37.2, 50.5, 85, 300 }, + [5] = { 36.6, 49.5, 85, 300 }, + [6] = { 35.3, 49.3, 85, 300 }, + [7] = { 38.6, 49.2, 85, 300 }, + [8] = { 37.9, 49, 85, 300 }, + }, + ["lvl"] = "5-6", + }, + [1936] = { + ["coords"] = { + [1] = { 38, 49.6, 85, 3600 }, + }, + ["lvl"] = "8", + ["rnk"] = "4", + }, + [1937] = { + ["coords"] = { + [1] = { 42.8, 40.9, 130, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "14", + }, + [1938] = { + ["coords"] = { + [1] = { 44.2, 39.8, 130, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "21", + }, + [1939] = { + ["coords"] = { + [1] = { 69, 36.2, 130, 413 }, + [2] = { 68.4, 35.7, 130, 413 }, + [3] = { 67.8, 35.7, 130, 413 }, + [4] = { 69.4, 34.9, 130, 413 }, + [5] = { 66.4, 34, 130, 413 }, + [6] = { 67.4, 33.8, 130, 413 }, + [7] = { 67.9, 33.3, 130, 413 }, + [8] = { 66.6, 32.8, 130, 413 }, + [9] = { 68.3, 31.5, 130, 413 }, + [10] = { 65.7, 31.2, 130, 413 }, + [11] = { 65.1, 30.9, 130, 413 }, + [12] = { 66.3, 30.6, 130, 413 }, + [13] = { 65.8, 30.4, 130, 413 }, + [14] = { 66.7, 30.3, 130, 413 }, + [15] = { 65.8, 29.1, 130, 413 }, + [16] = { 65.6, 28.3, 130, 413 }, + [17] = { 65.5, 27.4, 130, 413 }, + [18] = { 66, 27.1, 130, 413 }, + [19] = { 66.3, 26.8, 130, 413 }, + [20] = { 66.9, 26.5, 130, 413 }, + [21] = { 66.2, 25.8, 130, 413 }, + [22] = { 67, 25.7, 130, 413 }, + [23] = { 67.6, 25.5, 130, 413 }, + [24] = { 67.7, 25.4, 130, 413 }, + [25] = { 64.7, 25, 130, 413 }, + [26] = { 66.9, 24.5, 130, 413 }, + [27] = { 64.7, 24.1, 130, 413 }, + [28] = { 67.1, 23.7, 130, 413 }, + [29] = { 64.6, 23.3, 130, 413 }, + }, + ["lvl"] = "16-17", + }, + [1940] = { + ["coords"] = { + [1] = { 69.7, 36.9, 130, 413 }, + [2] = { 67.4, 36.3, 130, 413 }, + [3] = { 68.2, 35.1, 130, 413 }, + [4] = { 66.6, 35, 130, 413 }, + [5] = { 66, 34, 130, 413 }, + [6] = { 69, 33.9, 130, 413 }, + [7] = { 68.3, 33.2, 130, 413 }, + [8] = { 67.6, 31.4, 130, 413 }, + [9] = { 66.2, 28, 130, 413 }, + [10] = { 65.3, 26.8, 130, 413 }, + [11] = { 65, 26.4, 130, 413 }, + [12] = { 66.8, 26.4, 130, 413 }, + [13] = { 68.2, 25.7, 130, 413 }, + [14] = { 65.4, 25.6, 130, 413 }, + [15] = { 67.5, 25.5, 130, 413 }, + [16] = { 67.7, 25.4, 130, 413 }, + [17] = { 68, 25, 130, 413 }, + [18] = { 67.7, 24.4, 130, 413 }, + [19] = { 64.4, 23.6, 130, 413 }, + [20] = { 64.7, 23.2, 130, 413 }, + [21] = { 66.9, 23.1, 130, 413 }, + }, + ["lvl"] = "17-18", + }, + [1941] = { + ["coords"] = { + [1] = { 56.6, 46.2, 85, 300 }, + [2] = { 56.5, 46.1, 85, 300 }, + [3] = { 56.8, 45, 85, 300 }, + [4] = { 57.1, 44.9, 85, 300 }, + [5] = { 56.1, 44, 85, 300 }, + [6] = { 53.8, 43.9, 85, 300 }, + [7] = { 55.2, 43.9, 85, 300 }, + [8] = { 56.3, 43.7, 85, 300 }, + [9] = { 56.2, 43.6, 85, 300 }, + [10] = { 58.3, 42.9, 85, 300 }, + [11] = { 54.3, 42.8, 85, 300 }, + [12] = { 55.5, 42.8, 85, 300 }, + [13] = { 55.2, 42.6, 85, 300 }, + [14] = { 54.9, 42.4, 85, 300 }, + [15] = { 55.2, 42.2, 85, 300 }, + [16] = { 57.7, 41.9, 85, 300 }, + [17] = { 55.4, 41.9, 85, 300 }, + [18] = { 53.3, 41.5, 85, 300 }, + [19] = { 55, 41.4, 85, 300 }, + [20] = { 56.4, 41.1, 85, 300 }, + [21] = { 55.4, 41, 85, 300 }, + [22] = { 55.8, 40.5, 85, 300 }, + [23] = { 57.1, 40.3, 85, 300 }, + [24] = { 56.6, 39.7, 85, 300 }, + [25] = { 55.6, 39.2, 85, 300 }, + }, + ["lvl"] = "6-7", + }, + [1942] = { + ["coords"] = { + [1] = { 65.1, 25.1, 130, 413 }, + [2] = { 66.4, 25.1, 130, 413 }, + [3] = { 65.6, 25.1, 130, 413 }, + [4] = { 65.9, 25, 130, 413 }, + [5] = { 66.3, 25, 130, 413 }, + [6] = { 65.3, 25, 130, 413 }, + [7] = { 65.3, 24.8, 130, 413 }, + [8] = { 66.3, 24.7, 130, 413 }, + [9] = { 66.3, 24.3, 130, 413 }, + [10] = { 65.7, 24, 130, 413 }, + [11] = { 65.6, 24, 130, 413 }, + [12] = { 65.3, 23.5, 130, 413 }, + [13] = { 66.2, 23.4, 130, 413 }, + [14] = { 65.3, 23.4, 130, 413 }, + [15] = { 65.6, 23.4, 130, 413 }, + [16] = { 65.9, 23.3, 130, 413 }, + [17] = { 66.2, 23.1, 130, 413 }, + }, + ["lvl"] = "18-19", + }, + [1943] = { + ["coords"] = { + [1] = { 66.3, 25.1, 130, 413 }, + [2] = { 66.3, 25, 130, 413 }, + [3] = { 65.3, 24.9, 130, 413 }, + [4] = { 66.2, 24.8, 130, 413 }, + [5] = { 65.2, 24.7, 130, 413 }, + [6] = { 66.2, 24.6, 130, 413 }, + [7] = { 66.1, 23.9, 130, 413 }, + [8] = { 65.2, 23.9, 130, 413 }, + [9] = { 65.9, 23.9, 130, 413 }, + [10] = { 65.7, 23.8, 130, 413 }, + [11] = { 65.5, 23.6, 130, 413 }, + [12] = { 65.3, 23.5, 130, 413 }, + [13] = { 65.7, 23.4, 130, 413 }, + [14] = { 66.3, 23.3, 130, 413 }, + [15] = { 66.4, 23.2, 130, 413 }, + [16] = { 65.1, 23.2, 130, 413 }, + }, + ["lvl"] = "18-19", + }, + [1944] = { + ["coords"] = { + [1] = { 64.7, 23, 130, 19800 }, + }, + ["lvl"] = "22", + ["rnk"] = "4", + }, + [1945] = { + ["coords"] = {}, + ["lvl"] = "30-32", + }, + [1946] = { + ["coords"] = {}, + ["lvl"] = "12", + }, + [1947] = { + ["coords"] = { + [1] = { 65.7, 23.7, 130, 275 }, + }, + ["lvl"] = "24", + ["rnk"] = "1", + }, + [1948] = { + ["coords"] = { + [1] = { 66.4, 25, 130, 14400 }, + }, + ["lvl"] = "23", + ["rnk"] = "4", + }, + [1949] = { + ["coords"] = { + [1] = { 64.8, 70.6, 12, 270 }, + [2] = { 65.1, 70.1, 12, 270 }, + [3] = { 65.4, 70.1, 12, 270 }, + [4] = { 64.4, 69.9, 12, 270 }, + [5] = { 64.8, 69.9, 12, 270 }, + [6] = { 64.6, 69.8, 12, 270 }, + [7] = { 64.7, 69.6, 12, 270 }, + [8] = { 64, 69.6, 12, 270 }, + [9] = { 65.1, 69.5, 12, 270 }, + [10] = { 64.4, 68.4, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "8-9", + }, + [1950] = { + ["coords"] = { + [1] = { 53.5, 13.4, 130, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "15", + }, + [1951] = { + ["coords"] = { + [1] = { 53.4, 12.6, 130, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "14", + }, + [1952] = { + ["coords"] = { + [1] = { 43.4, 40.9, 130, 275 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [1953] = { + ["coords"] = { + [1] = { 13.9, 48.1, 36, 413 }, + [2] = { 69.7, 38.3, 130, 413 }, + [3] = { 72.8, 38, 130, 413 }, + [4] = { 72.1, 37.5, 130, 413 }, + [5] = { 68.6, 37.5, 130, 413 }, + [6] = { 70.6, 37.5, 130, 413 }, + [7] = { 73, 36.3, 130, 413 }, + [8] = { 71.5, 36.2, 130, 413 }, + [9] = { 70.6, 35.3, 130, 413 }, + [10] = { 72.2, 34.7, 130, 413 }, + [11] = { 73.1, 34.4, 130, 413 }, + [12] = { 71.2, 34.2, 130, 413 }, + [13] = { 70, 33.6, 130, 413 }, + }, + ["lvl"] = "15-16", + }, + [1954] = { + ["coords"] = { + [1] = { 72, 36.8, 130, 413 }, + [2] = { 74, 35.1, 130, 413 }, + [3] = { 73.7, 35, 130, 413 }, + [4] = { 74.3, 34.9, 130, 413 }, + [5] = { 75, 34.5, 130, 413 }, + [6] = { 75.1, 32.9, 130, 413 }, + }, + ["lvl"] = "16-17", + }, + [1955] = { + ["coords"] = { + [1] = { 77.6, 29.1, 130, 413 }, + [2] = { 77.3, 28.7, 130, 413 }, + [3] = { 76.6, 28.7, 130, 413 }, + [4] = { 76.5, 27.8, 130, 413 }, + [5] = { 77.5, 27.6, 130, 413 }, + [6] = { 78, 27, 130, 413 }, + [7] = { 77.1, 26.3, 130, 413 }, + [8] = { 76.6, 26.2, 130, 413 }, + [9] = { 78.3, 26.1, 130, 413 }, + [10] = { 78.3, 25.2, 130, 413 }, + [11] = { 77.6, 25, 130, 413 }, + }, + ["lvl"] = "17-18", + }, + [1956] = { + ["coords"] = { + [1] = { 77, 24.7, 130, 413 }, + [2] = { 79, 23.9, 130, 413 }, + [3] = { 76.8, 23.6, 130, 413 }, + [4] = { 77.9, 23.2, 130, 413 }, + [5] = { 75.4, 23.1, 130, 413 }, + [6] = { 77.3, 23, 130, 413 }, + [7] = { 76.2, 22.5, 130, 413 }, + [8] = { 78.5, 22.4, 130, 413 }, + [9] = { 74.6, 21.8, 130, 413 }, + [10] = { 73.8, 21, 130, 413 }, + [11] = { 77, 20.8, 130, 413 }, + [12] = { 75.2, 20.7, 130, 413 }, + [13] = { 74.1, 20.4, 130, 413 }, + [14] = { 75.5, 19.7, 130, 413 }, + [15] = { 76.4, 19.4, 130, 413 }, + }, + ["lvl"] = "18-19", + }, + [1957] = { + ["coords"] = { + [1] = { 19.1, 43.6, 36, 413 }, + [2] = { 20, 42.5, 36, 413 }, + [3] = { 20.7, 42.5, 36, 413 }, + [4] = { 20.7, 41.9, 36, 413 }, + [5] = { 76.2, 35, 130, 413 }, + [6] = { 76.8, 34.3, 130, 413 }, + [7] = { 77.3, 34.3, 130, 413 }, + [8] = { 77.3, 33.9, 130, 413 }, + [9] = { 76.1, 32.7, 130, 413 }, + [10] = { 77.8, 31.5, 130, 413 }, + [11] = { 78.1, 31.1, 130, 413 }, + [12] = { 77.6, 31.1, 130, 413 }, + [13] = { 78.5, 31.1, 130, 413 }, + [14] = { 77.6, 30.7, 130, 413 }, + [15] = { 76.6, 30.2, 130, 413 }, + }, + ["lvl"] = "16-17", + }, + [1958] = { + ["coords"] = { + [1] = { 20.5, 41.8, 36, 300 }, + [2] = { 25.4, 39.7, 36, 300 }, + [3] = { 24.7, 39.7, 36, 300 }, + [4] = { 26.1, 38.7, 36, 300 }, + [5] = { 26.7, 38.3, 36, 300 }, + [6] = { 27.2, 34.9, 36, 300 }, + [7] = { 76.2, 33.9, 130, 300 }, + [8] = { 77.1, 33.8, 130, 300 }, + [9] = { 77.6, 33.5, 130, 300 }, + [10] = { 76.8, 32.9, 130, 300 }, + [11] = { 75.3, 32.8, 130, 300 }, + [12] = { 78.4, 32.6, 130, 300 }, + [13] = { 77.6, 32.6, 130, 300 }, + [14] = { 80.4, 32.4, 130, 300 }, + [15] = { 80, 32.4, 130, 300 }, + [16] = { 77.2, 32.1, 130, 300 }, + [17] = { 78.1, 32, 130, 300 }, + [18] = { 78.8, 31.9, 130, 300 }, + [19] = { 80.9, 31.8, 130, 300 }, + [20] = { 80.1, 31.5, 130, 300 }, + [21] = { 81.3, 31.5, 130, 300 }, + [22] = { 78.3, 31.4, 130, 300 }, + [23] = { 75.3, 31.4, 130, 300 }, + [24] = { 77.9, 31.1, 130, 300 }, + [25] = { 78.3, 30.8, 130, 300 }, + [26] = { 78.1, 30.6, 130, 300 }, + [27] = { 78.5, 30.5, 130, 300 }, + [28] = { 79.3, 30.3, 130, 300 }, + [29] = { 75.8, 30.1, 130, 300 }, + [30] = { 77.7, 30, 130, 300 }, + [31] = { 80.8, 29.6, 130, 300 }, + [32] = { 80.5, 29.5, 130, 300 }, + [33] = { 80.1, 29.3, 130, 300 }, + [34] = { 78.5, 29.2, 130, 300 }, + [35] = { 81.7, 29.2, 130, 300 }, + [36] = { 81.6, 29.2, 130, 300 }, + [37] = { 80.5, 28.7, 130, 300 }, + [38] = { 80.2, 28.6, 130, 300 }, + [39] = { 80.5, 28.4, 130, 300 }, + [40] = { 80.1, 28.3, 130, 300 }, + [41] = { 80.3, 28.2, 130, 300 }, + [42] = { 79.1, 28.2, 130, 300 }, + [43] = { 79.9, 28.1, 130, 300 }, + [44] = { 80.9, 28.1, 130, 300 }, + [45] = { 80.3, 27.7, 130, 300 }, + [46] = { 80.2, 27, 130, 300 }, + }, + ["lvl"] = "17-18", + }, + [1959] = { + ["coords"] = { + [1] = { 86.3, 48.8, 1, 285 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [1960] = { + ["coords"] = { + [1] = { 83.9, 39.2, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "17", + }, + [1961] = { + ["coords"] = { + [1] = { 78.3, 37.8, 1, 270 }, + }, + ["lvl"] = "11", + }, + [1963] = { + ["coords"] = { + [1] = { 34.8, 49.3, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [1964] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [1965] = { + ["coords"] = { + [1] = { 33.5, 71.8, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [1971] = { + ["coords"] = { + [1] = { 51.5, 13.9, 130, 413 }, + }, + ["lvl"] = "13", + }, + [1972] = { + ["coords"] = { + [1] = { 58.6, 44.9, 130, 413 }, + }, + ["lvl"] = "15", + }, + [1973] = { + ["coords"] = { + [1] = { 59.6, 71.8, 130, 413 }, + [2] = { 58.8, 71.8, 130, 413 }, + [3] = { 58.7, 71.6, 130, 413 }, + [4] = { 57.6, 71.5, 130, 413 }, + [5] = { 58.7, 71.3, 130, 413 }, + [6] = { 60, 71.1, 130, 413 }, + [7] = { 57.1, 71, 130, 413 }, + [8] = { 57.4, 70.9, 130, 413 }, + [9] = { 59, 70.9, 130, 413 }, + [10] = { 57.3, 69.9, 130, 413 }, + [11] = { 59.7, 69.9, 130, 413 }, + [12] = { 57.8, 69.8, 130, 413 }, + }, + ["lvl"] = "20-21", + }, + [1974] = { + ["coords"] = { + [1] = { 60.3, 74, 130, 413 }, + [2] = { 60.7, 72.7, 130, 413 }, + [3] = { 60.6, 72.4, 130, 413 }, + [4] = { 60.1, 72.1, 130, 413 }, + [5] = { 58.3, 72, 130, 413 }, + [6] = { 57.4, 70.8, 130, 413 }, + [7] = { 59.6, 70.8, 130, 413 }, + [8] = { 59.1, 70.5, 130, 413 }, + [9] = { 56.7, 70.4, 130, 413 }, + [10] = { 58.1, 69.9, 130, 413 }, + [11] = { 57.7, 69.8, 130, 413 }, + }, + ["lvl"] = "19-20", + }, + [1975] = { + ["coords"] = { + [1] = { 83.1, 63.6, 12, 270 }, + [2] = { 82.6, 63.3, 12, 270 }, + [3] = { 82.8, 63.1, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "7-8", + }, + [1976] = { + ["coords"] = { + [1] = { 62, 72.3, 1519, 300 }, + [2] = { 62.4, 71.7, 1519, 300 }, + [3] = { 33.2, 64.1, 1519, 300 }, + [4] = { 53.1, 60.2, 1519, 300 }, + [5] = { 60.2, 51.3, 1519, 300 }, + [6] = { 50.1, 37.5, 1519, 300 }, + [7] = { 38.8, 36.6, 1519, 300 }, + [8] = { 46.8, 31.8, 1519, 300 }, + [9] = { 51, 28.1, 1519, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [1977] = { + ["coords"] = { + [1] = { 68.7, 56, 1, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [1978] = { + ["coords"] = { + [1] = { 56.2, 9.2, 130, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "11", + }, + [1979] = { + ["coords"] = {}, + ["lvl"] = "2", + }, + [1980] = { + ["coords"] = {}, + ["lvl"] = "2", + }, + [1981] = { + ["coords"] = {}, + ["lvl"] = "10", + }, + [1983] = { + ["coords"] = { + [1] = { 45.4, 21.2, 130, 0 }, + }, + ["lvl"] = "14", + }, + [1984] = { + ["coords"] = { + [1] = { 60.6, 46.3, 141, 300 }, + [2] = { 56.9, 45.7, 141, 300 }, + [3] = { 58.5, 45.7, 141, 300 }, + [4] = { 61.2, 45.7, 141, 300 }, + [5] = { 59.5, 45.4, 141, 300 }, + [6] = { 57.5, 45.2, 141, 300 }, + [7] = { 59.1, 44.6, 141, 300 }, + [8] = { 56.7, 44.3, 141, 300 }, + [9] = { 61.3, 43.7, 141, 300 }, + [10] = { 55.5, 43.4, 141, 300 }, + [11] = { 55.1, 43.4, 141, 300 }, + [12] = { 59.1, 43.3, 141, 300 }, + [13] = { 61.5, 42.9, 141, 300 }, + [14] = { 57.8, 42.6, 141, 300 }, + [15] = { 62, 42.4, 141, 300 }, + [16] = { 63.3, 42.4, 141, 300 }, + [17] = { 55.5, 42.3, 141, 300 }, + [18] = { 63.2, 42.2, 141, 300 }, + [19] = { 56.6, 42.2, 141, 300 }, + [20] = { 56.7, 42.2, 141, 300 }, + [21] = { 55.6, 41.9, 141, 300 }, + [22] = { 55.9, 41.2, 141, 300 }, + [23] = { 62.1, 41.2, 141, 300 }, + [24] = { 57.6, 39.5, 141, 300 }, + }, + ["lvl"] = "1-2", + }, + [1985] = { + ["coords"] = { + [1] = { 55.5, 39.4, 141, 300 }, + [2] = { 60.1, 39.2, 141, 300 }, + [3] = { 61.8, 38.7, 141, 300 }, + [4] = { 56.3, 38.4, 141, 300 }, + [5] = { 56.2, 37.8, 141, 300 }, + [6] = { 59.8, 37.6, 141, 300 }, + [7] = { 55.3, 37.1, 141, 300 }, + [8] = { 56.3, 36.8, 141, 300 }, + [9] = { 59.5, 36.8, 141, 300 }, + [10] = { 61.4, 36, 141, 300 }, + [11] = { 62.2, 35.9, 141, 300 }, + [12] = { 57.2, 35.7, 141, 300 }, + [13] = { 61.2, 35.3, 141, 300 }, + [14] = { 58.2, 34.8, 141, 300 }, + [15] = { 60.2, 34.8, 141, 300 }, + [16] = { 59.4, 34.6, 141, 300 }, + [17] = { 60.5, 34.3, 141, 300 }, + [18] = { 61.8, 34.2, 141, 300 }, + [19] = { 60.3, 34, 141, 300 }, + [20] = { 60.2, 34, 141, 300 }, + [21] = { 60, 31.6, 141, 300 }, + }, + ["lvl"] = "2-3", + }, + [1986] = { + ["coords"] = { + [1] = { 56.6, 34.3, 141, 300 }, + [2] = { 56.9, 33.9, 141, 300 }, + [3] = { 57.6, 33.9, 141, 300 }, + [4] = { 56.4, 33.2, 141, 300 }, + [5] = { 58.2, 32.9, 141, 300 }, + [6] = { 58.9, 32.8, 141, 300 }, + [7] = { 57.7, 32.7, 141, 300 }, + [8] = { 56.2, 32.4, 141, 300 }, + [9] = { 57.2, 32.3, 141, 300 }, + [10] = { 56.9, 31.8, 141, 300 }, + [11] = { 56.8, 31.3, 141, 300 }, + [12] = { 56.6, 30.8, 141, 300 }, + [13] = { 56.4, 30.3, 141, 300 }, + [14] = { 57.2, 29.7, 141, 300 }, + [15] = { 56.6, 29.4, 141, 300 }, + [16] = { 57.2, 29.3, 141, 300 }, + [17] = { 57.5, 29.2, 141, 300 }, + [18] = { 56.1, 29.1, 141, 300 }, + [19] = { 58, 28.6, 141, 300 }, + [20] = { 55.7, 28.5, 141, 300 }, + [21] = { 56.9, 28.4, 141, 300 }, + [22] = { 57.9, 28.4, 141, 300 }, + [23] = { 57.7, 28, 141, 300 }, + [24] = { 56.9, 27.8, 141, 300 }, + [25] = { 55.5, 27.6, 141, 300 }, + [26] = { 55.8, 27.5, 141, 300 }, + [27] = { 57.3, 27.5, 141, 300 }, + [28] = { 57.7, 27.4, 141, 300 }, + [29] = { 58.1, 27.2, 141, 300 }, + [30] = { 55.9, 27.1, 141, 300 }, + [31] = { 57.9, 27, 141, 300 }, + [32] = { 56.1, 27, 141, 300 }, + [33] = { 56.5, 26.8, 141, 300 }, + [34] = { 57.9, 26.5, 141, 300 }, + [35] = { 56.3, 26.4, 141, 300 }, + [36] = { 56, 26.2, 141, 300 }, + [37] = { 57, 26.2, 141, 300 }, + [38] = { 57.4, 26, 141, 300 }, + [39] = { 57.9, 26, 141, 300 }, + [40] = { 56.5, 25.9, 141, 300 }, + [41] = { 56.7, 25.6, 141, 300 }, + [42] = { 56.5, 25.3, 141, 300 }, + [43] = { 55.7, 25.1, 141, 300 }, + [44] = { 56.4, 24.8, 141, 300 }, + }, + ["lvl"] = "3-4", + }, + [1987] = { + ["coords"] = {}, + ["lvl"] = "3-4", + }, + [1988] = { + ["coords"] = { + [1] = { 55.7, 46.5, 141, 300 }, + [2] = { 56.2, 46.3, 141, 300 }, + [3] = { 56.4, 46.1, 141, 300 }, + [4] = { 56, 46, 141, 300 }, + [5] = { 55.9, 46, 141, 300 }, + [6] = { 55.6, 45.9, 141, 300 }, + [7] = { 56.3, 45.7, 141, 300 }, + [8] = { 55.8, 45.6, 141, 300 }, + [9] = { 56, 45.6, 141, 300 }, + [10] = { 56.1, 45.4, 141, 300 }, + [11] = { 55.9, 45.1, 141, 300 }, + [12] = { 61.4, 45.1, 141, 300 }, + [13] = { 55.8, 41.5, 141, 300 }, + }, + ["lvl"] = "2-3", + }, + [1989] = { + ["coords"] = { + [1] = { 54.5, 44.8, 141, 300 }, + [2] = { 54.8, 44.3, 141, 300 }, + [3] = { 54.7, 44.2, 141, 300 }, + [4] = { 54.2, 44.2, 141, 300 }, + [5] = { 54.9, 44.1, 141, 300 }, + [6] = { 54.5, 44.1, 141, 300 }, + [7] = { 54.6, 44.1, 141, 300 }, + [8] = { 54.6, 43.8, 141, 300 }, + [9] = { 54.9, 43.7, 141, 300 }, + [10] = { 54.4, 43.6, 141, 300 }, + [11] = { 54.7, 43.5, 141, 300 }, + [12] = { 64.2, 42.2, 141, 300 }, + [13] = { 54, 39.7, 141, 300 }, + [14] = { 54.9, 39.6, 141, 300 }, + [15] = { 54.4, 39.4, 141, 300 }, + [16] = { 54.2, 39.3, 141, 300 }, + [17] = { 54.1, 39.3, 141, 300 }, + [18] = { 54.2, 39.2, 141, 300 }, + [19] = { 54, 39, 141, 300 }, + [20] = { 61.9, 38.8, 141, 300 }, + [21] = { 54.3, 38.7, 141, 300 }, + [22] = { 55, 38.7, 141, 300 }, + [23] = { 56.2, 38.5, 141, 300 }, + [24] = { 54.6, 38.4, 141, 300 }, + [25] = { 54, 38.3, 141, 300 }, + [26] = { 62.3, 35.7, 141, 300 }, + [27] = { 61.4, 35.1, 141, 300 }, + [28] = { 59.6, 35, 141, 300 }, + [29] = { 56.3, 34.6, 141, 300 }, + [30] = { 58.2, 33.4, 141, 300 }, + }, + ["lvl"] = "3-4", + }, + [1990] = { + ["coords"] = {}, + ["lvl"] = "3-4", + }, + [1991] = { + ["coords"] = {}, + ["lvl"] = "5", + }, + [1992] = { + ["coords"] = { + [1] = { 57.8, 45.2, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "7", + }, + [1993] = { + ["coords"] = { + [1] = { 44.6, 62.5, 141, 300 }, + }, + ["lvl"] = "10", + }, + [1994] = { + ["coords"] = { + [1] = { 56.6, 26.3, 141, 300 }, + }, + ["lvl"] = "5", + }, + [1995] = { + ["coords"] = { + [1] = { 55.4, 66, 141, 300 }, + [2] = { 64.1, 64.3, 141, 300 }, + [3] = { 63, 64.2, 141, 300 }, + [4] = { 54.8, 64, 141, 300 }, + [5] = { 62.7, 63.1, 141, 300 }, + [6] = { 52.4, 62.7, 141, 300 }, + [7] = { 68.7, 62.4, 141, 300 }, + [8] = { 68.1, 62.1, 141, 300 }, + [9] = { 64.9, 61.5, 141, 300 }, + [10] = { 67.2, 61.4, 141, 300 }, + [11] = { 57.9, 60.8, 141, 300 }, + [12] = { 54.3, 60.3, 141, 300 }, + [13] = { 58.9, 60.3, 141, 300 }, + [14] = { 54.1, 60.1, 141, 300 }, + [15] = { 53.5, 59.4, 141, 300 }, + [16] = { 53.7, 59.4, 141, 300 }, + [17] = { 52.2, 59.3, 141, 300 }, + [18] = { 50, 58.7, 141, 300 }, + [19] = { 49.8, 58.1, 141, 300 }, + [20] = { 52.6, 57.1, 141, 300 }, + [21] = { 54.2, 57, 141, 300 }, + [22] = { 51.9, 56.7, 141, 300 }, + [23] = { 58.7, 56.4, 141, 300 }, + [24] = { 57.6, 56.3, 141, 300 }, + [25] = { 65.7, 54.5, 141, 300 }, + [26] = { 53, 54.5, 141, 300 }, + [27] = { 64.1, 54.4, 141, 300 }, + [28] = { 63.4, 53.6, 141, 300 }, + [29] = { 67.5, 53.5, 141, 300 }, + [30] = { 65.4, 52.6, 141, 300 }, + [31] = { 63.5, 51.7, 141, 300 }, + [32] = { 64.7, 51.5, 141, 300 }, + [33] = { 62, 51.4, 141, 300 }, + [34] = { 61.2, 50.6, 141, 300 }, + [35] = { 46.4, 48.6, 141, 300 }, + [36] = { 45.9, 47.5, 141, 300 }, + }, + ["lvl"] = "5-6", + }, + [1996] = { + ["coords"] = { + [1] = { 53.1, 77.9, 141, 300 }, + [2] = { 52.5, 77.8, 141, 300 }, + [3] = { 43.8, 77.4, 141, 300 }, + [4] = { 51.9, 77.4, 141, 300 }, + [5] = { 42.9, 77.1, 141, 300 }, + [6] = { 53.7, 77.1, 141, 300 }, + [7] = { 58.9, 77, 141, 300 }, + [8] = { 53.3, 76.6, 141, 300 }, + [9] = { 45.6, 76.5, 141, 300 }, + [10] = { 58.1, 76.2, 141, 300 }, + [11] = { 46.2, 75.5, 141, 300 }, + [12] = { 42.2, 75.3, 141, 300 }, + [13] = { 57.6, 75, 141, 300 }, + [14] = { 58.5, 75, 141, 300 }, + [15] = { 48.2, 74.2, 141, 300 }, + [16] = { 42.4, 72.3, 141, 300 }, + [17] = { 41.9, 71.5, 141, 300 }, + [18] = { 64.3, 69.2, 141, 300 }, + [19] = { 41.1, 68.4, 141, 300 }, + [20] = { 64.2, 67.2, 141, 300 }, + [21] = { 65.9, 67, 141, 300 }, + [22] = { 65.5, 66.5, 141, 300 }, + [23] = { 39.3, 65.3, 141, 300 }, + [24] = { 38.7, 63.4, 141, 300 }, + [25] = { 38.4, 62.5, 141, 300 }, + [26] = { 38.2, 55.6, 141, 300 }, + [27] = { 39.5, 54.5, 141, 300 }, + [28] = { 39.7, 53.7, 141, 300 }, + [29] = { 39.5, 53, 141, 300 }, + [30] = { 42.7, 52.1, 141, 300 }, + [31] = { 38.8, 51.5, 141, 300 }, + [32] = { 39.1, 51.4, 141, 300 }, + [33] = { 37.6, 51.3, 141, 300 }, + [34] = { 43.9, 50.6, 141, 300 }, + [35] = { 41.3, 49.7, 141, 300 }, + [36] = { 42.8, 48.9, 141, 300 }, + [37] = { 98.1, 20.9, 1657, 300 }, + }, + ["lvl"] = "7-8", + }, + [1997] = { + ["coords"] = { + [1] = { 38.5, 47.8, 141, 300 }, + [2] = { 38.5, 46.2, 141, 300 }, + [3] = { 39.3, 46.1, 141, 300 }, + [4] = { 40.8, 45, 141, 300 }, + [5] = { 45.6, 40.6, 141, 300 }, + [6] = { 44.4, 39.9, 141, 300 }, + [7] = { 46.1, 39.7, 141, 300 }, + [8] = { 38.1, 39.5, 141, 300 }, + [9] = { 38, 38.3, 141, 300 }, + [10] = { 37.7, 37.9, 141, 300 }, + [11] = { 46.2, 31.4, 141, 300 }, + [12] = { 39, 30.7, 141, 300 }, + [13] = { 37.6, 29.3, 141, 300 }, + }, + ["lvl"] = "8-9", + }, + [1998] = { + ["coords"] = { + [1] = { 52.6, 67.4, 141, 300 }, + [2] = { 53.3, 66.7, 141, 300 }, + [3] = { 51.7, 66.3, 141, 300 }, + [4] = { 67.1, 66.3, 141, 300 }, + [5] = { 51, 65.2, 141, 300 }, + [6] = { 52.9, 64.3, 141, 300 }, + [7] = { 54.3, 64.2, 141, 300 }, + [8] = { 68, 64.1, 141, 300 }, + [9] = { 68.5, 63.6, 141, 300 }, + [10] = { 63.3, 63.2, 141, 300 }, + [11] = { 54.2, 62.5, 141, 300 }, + [12] = { 67.2, 62, 141, 300 }, + [13] = { 53.5, 61.9, 141, 300 }, + [14] = { 64.1, 61.8, 141, 300 }, + [15] = { 53.6, 61.4, 141, 300 }, + [16] = { 61.1, 61.3, 141, 300 }, + [17] = { 63.9, 60.8, 141, 300 }, + [18] = { 69.5, 60.3, 141, 300 }, + [19] = { 60.1, 60.3, 141, 300 }, + [20] = { 70.1, 60.2, 141, 300 }, + [21] = { 59.6, 59.7, 141, 300 }, + [22] = { 60.2, 59.5, 141, 300 }, + [23] = { 51.6, 59.4, 141, 300 }, + [24] = { 51.8, 58.5, 141, 300 }, + [25] = { 60.2, 58.4, 141, 300 }, + [26] = { 69.5, 57.2, 141, 300 }, + [27] = { 60.8, 57.1, 141, 300 }, + [28] = { 58.3, 56, 141, 300 }, + [29] = { 52.2, 55.7, 141, 300 }, + [30] = { 52.3, 55.6, 141, 300 }, + [31] = { 60.9, 55.2, 141, 300 }, + [32] = { 60.8, 54.6, 141, 300 }, + [33] = { 60.8, 54.4, 141, 300 }, + [34] = { 61.6, 54.4, 141, 300 }, + [35] = { 51, 53.8, 141, 300 }, + [36] = { 47.1, 47, 141, 300 }, + [37] = { 45.9, 46.7, 141, 300 }, + }, + ["lvl"] = "5-6", + }, + [1999] = { + ["coords"] = { + [1] = { 45.8, 78.9, 141, 300 }, + [2] = { 45.1, 77.9, 141, 300 }, + [3] = { 44.8, 77.5, 141, 300 }, + [4] = { 54.5, 77.4, 141, 300 }, + [5] = { 54.3, 76.1, 141, 300 }, + [6] = { 59.6, 76.1, 141, 300 }, + [7] = { 49, 76, 141, 300 }, + [8] = { 41.2, 76, 141, 300 }, + [9] = { 48.5, 75.1, 141, 300 }, + [10] = { 61.5, 75, 141, 300 }, + [11] = { 60.2, 75, 141, 300 }, + [12] = { 41.8, 75, 141, 300 }, + [13] = { 42.9, 74.7, 141, 300 }, + [14] = { 44.7, 74.5, 141, 300 }, + [15] = { 54.3, 74.2, 141, 300 }, + [16] = { 61, 73.4, 141, 300 }, + [17] = { 55, 73.2, 141, 300 }, + [18] = { 45.3, 73.1, 141, 300 }, + [19] = { 46.5, 71.6, 141, 300 }, + [20] = { 45.4, 70.2, 141, 300 }, + [21] = { 65.2, 69.1, 141, 300 }, + [22] = { 38.9, 61.7, 141, 300 }, + [23] = { 39.8, 60, 141, 300 }, + [24] = { 38.8, 59.6, 141, 300 }, + [25] = { 43.8, 54.4, 141, 300 }, + [26] = { 42.8, 52.6, 141, 300 }, + [27] = { 40.7, 48.8, 141, 300 }, + [28] = { 40.4, 48.6, 141, 300 }, + [29] = { 38.7, 47.9, 141, 300 }, + [30] = { 37.2, 47.4, 141, 300 }, + [31] = { 96, 2, 1657, 300 }, + }, + ["lvl"] = "7-8", + }, + [2000] = { + ["coords"] = { + [1] = { 43.7, 47.3, 141, 300 }, + [2] = { 42.4, 46.3, 141, 300 }, + [3] = { 43.2, 45.5, 141, 300 }, + [4] = { 48.6, 44.9, 141, 300 }, + [5] = { 47.8, 44.5, 141, 300 }, + [6] = { 43.8, 44.5, 141, 300 }, + [7] = { 43.1, 43.5, 141, 300 }, + [8] = { 45.8, 43.4, 141, 300 }, + [9] = { 45.1, 35.1, 141, 300 }, + [10] = { 47.4, 34.1, 141, 300 }, + [11] = { 34.6, 32.6, 141, 300 }, + [12] = { 33.7, 32.3, 141, 300 }, + [13] = { 36.3, 32.3, 141, 300 }, + [14] = { 47.9, 32.1, 141, 300 }, + [15] = { 39.9, 31.4, 141, 300 }, + [16] = { 33.3, 30.9, 141, 300 }, + }, + ["lvl"] = "8-9", + }, + [2001] = { + ["coords"] = { + [1] = { 41.2, 28.9, 141, 300 }, + [2] = { 38, 27.9, 141, 300 }, + [3] = { 45.7, 27.5, 141, 300 }, + [4] = { 40.2, 25.4, 141, 300 }, + }, + ["lvl"] = "10-11", + }, + [2002] = { + ["coords"] = { + [1] = { 52.9, 52.1, 141, 300 }, + [2] = { 53.7, 51.5, 141, 300 }, + [3] = { 52.9, 51.3, 141, 300 }, + [4] = { 54.1, 51.1, 141, 300 }, + [5] = { 53.8, 50.8, 141, 300 }, + [6] = { 53.6, 50, 141, 300 }, + [7] = { 53.6, 49, 141, 300 }, + [8] = { 53.6, 48.9, 141, 300 }, + [9] = { 53.2, 48.8, 141, 300 }, + }, + ["lvl"] = "5-6", + }, + [2003] = { + ["coords"] = { + [1] = { 54.6, 52.6, 141, 300 }, + [2] = { 54.5, 51.9, 141, 300 }, + [3] = { 53.4, 51.8, 141, 300 }, + [4] = { 52.9, 51.5, 141, 300 }, + [5] = { 54.7, 51.4, 141, 300 }, + [6] = { 53.6, 51.1, 141, 300 }, + [7] = { 53, 50.9, 141, 300 }, + [8] = { 53.3, 50.8, 141, 300 }, + [9] = { 53, 50.3, 141, 300 }, + [10] = { 52.9, 52.1, 141, 300 }, + [11] = { 54.1, 51.1, 141, 300 }, + [12] = { 53.8, 50.8, 141, 300 }, + }, + ["lvl"] = "5-6", + }, + [2004] = { + ["coords"] = { + [1] = { 51.2, 51, 141, 300 }, + [2] = { 52.4, 50.2, 141, 300 }, + [3] = { 52.8, 50, 141, 300 }, + [4] = { 51.7, 50, 141, 300 }, + [5] = { 51.4, 50, 141, 300 }, + [6] = { 52.6, 49.8, 141, 300 }, + [7] = { 53, 49.3, 141, 300 }, + [8] = { 51.7, 48.9, 141, 300 }, + }, + ["lvl"] = "6-7", + }, + [2005] = { + ["coords"] = { + [1] = { 52.1, 52.1, 141, 300 }, + [2] = { 51.6, 51.6, 141, 300 }, + [3] = { 51.5, 51.4, 141, 300 }, + [4] = { 52.3, 51.1, 141, 300 }, + [5] = { 52.2, 50.7, 141, 300 }, + [6] = { 52, 50.6, 141, 300 }, + [7] = { 51.3, 50.6, 141, 300 }, + [8] = { 51.8, 50.5, 141, 300 }, + [9] = { 52.7, 49.5, 141, 300 }, + [10] = { 51.5, 48.8, 141, 300 }, + [11] = { 52.1, 48.5, 141, 300 }, + }, + ["lvl"] = "7", + }, + [2006] = { + ["coords"] = { + [1] = { 66.7, 64.4, 141, 300 }, + [2] = { 65.4, 64.1, 141, 300 }, + [3] = { 65, 63.9, 141, 300 }, + [4] = { 65.8, 63.8, 141, 300 }, + [5] = { 66.7, 63.3, 141, 300 }, + [6] = { 66.7, 60.4, 141, 300 }, + [7] = { 68.1, 58.4, 141, 300 }, + [8] = { 68.8, 58.2, 141, 300 }, + [9] = { 65.4, 57.6, 141, 300 }, + [10] = { 64.7, 57.5, 141, 300 }, + }, + ["lvl"] = "5-6", + }, + [2007] = { + ["coords"] = { + [1] = { 65.3, 65.6, 141, 300 }, + [2] = { 65.8, 64.3, 141, 300 }, + [3] = { 64.7, 64.1, 141, 300 }, + [4] = { 65.9, 63.8, 141, 300 }, + [5] = { 65.5, 63.2, 141, 300 }, + [6] = { 65.4, 61.6, 141, 300 }, + [7] = { 67.4, 60.5, 141, 300 }, + [8] = { 66.1, 60.4, 141, 300 }, + [9] = { 67.3, 59.1, 141, 300 }, + [10] = { 65.5, 59.1, 141, 300 }, + [11] = { 65.3, 58.3, 141, 300 }, + [12] = { 66.8, 56.4, 141, 300 }, + [13] = { 67.4, 55.4, 141, 300 }, + }, + ["lvl"] = "5-6", + }, + [2008] = { + ["coords"] = { + [1] = { 49.7, 68.1, 141, 300 }, + [2] = { 50.1, 66.8, 141, 300 }, + [3] = { 49.7, 66.4, 141, 300 }, + [4] = { 50.3, 66.2, 141, 300 }, + [5] = { 50, 65.6, 141, 300 }, + [6] = { 65.6, 64.9, 141, 300 }, + [7] = { 65.7, 64.8, 141, 300 }, + [8] = { 65.6, 64.7, 141, 300 }, + [9] = { 65.9, 63.7, 141, 300 }, + [10] = { 50.3, 62.1, 141, 300 }, + [11] = { 50.9, 62, 141, 300 }, + [12] = { 49.8, 61.4, 141, 300 }, + [13] = { 50.4, 61.2, 141, 300 }, + [14] = { 67.8, 60.1, 141, 300 }, + [15] = { 67, 59.7, 141, 300 }, + [16] = { 66, 59.6, 141, 300 }, + [17] = { 68, 59.4, 141, 300 }, + [18] = { 66.4, 59.3, 141, 300 }, + [19] = { 66.3, 59, 141, 300 }, + [20] = { 66.3, 58.6, 141, 300 }, + [21] = { 65.8, 58.2, 141, 300 }, + [22] = { 66.6, 58.2, 141, 300 }, + [23] = { 67, 57.6, 141, 300 }, + [24] = { 65.9, 57.4, 141, 300 }, + [25] = { 66.5, 57.2, 141, 300 }, + [26] = { 67.4, 57, 141, 300 }, + [27] = { 69.7, 53.9, 141, 300 }, + [28] = { 68.6, 53.2, 141, 300 }, + [29] = { 70.3, 53.1, 141, 300 }, + [30] = { 68.7, 52.8, 141, 300 }, + [31] = { 70.2, 52.7, 141, 300 }, + [32] = { 69.4, 52.6, 141, 300 }, + [33] = { 68.3, 52.5, 141, 300 }, + [34] = { 68, 52.5, 141, 300 }, + [35] = { 70.5, 52.4, 141, 300 }, + [36] = { 68.3, 52.1, 141, 300 }, + [37] = { 68.5, 51.7, 141, 300 }, + }, + ["lvl"] = "6-7", + }, + [2009] = { + ["coords"] = { + [1] = { 48.6, 78.8, 141, 300 }, + [2] = { 47.6, 78.5, 141, 300 }, + [3] = { 48.6, 78.1, 141, 300 }, + [4] = { 45.8, 78.1, 141, 300 }, + [5] = { 49, 78.1, 141, 300 }, + [6] = { 46.8, 77.9, 141, 300 }, + [7] = { 47.9, 77.9, 141, 300 }, + [8] = { 48, 77.8, 141, 300 }, + [9] = { 47.1, 77.7, 141, 300 }, + [10] = { 48.2, 77.7, 141, 300 }, + [11] = { 47.9, 77.6, 141, 300 }, + [12] = { 47.3, 77.4, 141, 300 }, + [13] = { 46.4, 77.3, 141, 300 }, + [14] = { 56.5, 77.2, 141, 300 }, + [15] = { 47.3, 76.9, 141, 300 }, + [16] = { 49, 76.9, 141, 300 }, + [17] = { 56.2, 76.6, 141, 300 }, + [18] = { 56.8, 76.5, 141, 300 }, + [19] = { 57.2, 76, 141, 300 }, + [20] = { 55.6, 75.8, 141, 300 }, + [21] = { 54.9, 75.2, 141, 300 }, + [22] = { 56.9, 75, 141, 300 }, + [23] = { 41.4, 71.9, 141, 300 }, + [24] = { 38.4, 67.9, 141, 300 }, + [25] = { 49.3, 67.4, 141, 300 }, + [26] = { 38.5, 67.2, 141, 300 }, + [27] = { 39.1, 67, 141, 300 }, + [28] = { 37.4, 67, 141, 300 }, + [29] = { 37.9, 66.9, 141, 300 }, + [30] = { 49.4, 66.8, 141, 300 }, + [31] = { 49.5, 66.8, 141, 300 }, + [32] = { 38.2, 66.8, 141, 300 }, + [33] = { 49.4, 66.6, 141, 300 }, + [34] = { 37.4, 66.3, 141, 300 }, + [35] = { 39.3, 66.2, 141, 300 }, + [36] = { 38.5, 66.2, 141, 300 }, + [37] = { 37.9, 66.2, 141, 300 }, + [38] = { 49.4, 66.1, 141, 300 }, + [39] = { 38.3, 65.6, 141, 300 }, + [40] = { 50, 63.2, 141, 300 }, + [41] = { 50.5, 62.9, 141, 300 }, + [42] = { 50, 62.7, 141, 300 }, + [43] = { 49.6, 62.6, 141, 300 }, + [44] = { 50, 62.5, 141, 300 }, + [45] = { 43.3, 61.9, 141, 300 }, + [46] = { 43.8, 61.8, 141, 300 }, + [47] = { 44.3, 61.7, 141, 300 }, + [48] = { 43.9, 61.5, 141, 300 }, + [49] = { 43.8, 61.3, 141, 300 }, + [50] = { 42.9, 61.2, 141, 300 }, + [51] = { 44.4, 61.2, 141, 300 }, + [52] = { 43.9, 61.1, 141, 300 }, + [53] = { 44.1, 61.1, 141, 300 }, + [54] = { 43.3, 60.7, 141, 300 }, + [55] = { 44.3, 60.5, 141, 300 }, + [56] = { 43.7, 60.5, 141, 300 }, + [57] = { 44.5, 60.5, 141, 300 }, + [58] = { 44.4, 60.4, 141, 300 }, + [59] = { 44.2, 60.3, 141, 300 }, + [60] = { 43.9, 60.2, 141, 300 }, + [61] = { 45.1, 60.1, 141, 300 }, + [62] = { 44.5, 60, 141, 300 }, + [63] = { 43.6, 60, 141, 300 }, + [64] = { 43.9, 60, 141, 300 }, + [65] = { 45.5, 59.9, 141, 300 }, + [66] = { 43.1, 59.6, 141, 300 }, + [67] = { 44.1, 59.5, 141, 300 }, + [68] = { 44.2, 59.4, 141, 300 }, + [69] = { 43, 59.1, 141, 300 }, + [70] = { 45.6, 59.1, 141, 300 }, + [71] = { 45.5, 58.9, 141, 300 }, + [72] = { 45.3, 58.8, 141, 300 }, + [73] = { 43.3, 58.8, 141, 300 }, + [74] = { 44.7, 58.7, 141, 300 }, + [75] = { 45.2, 58.7, 141, 300 }, + [76] = { 44.4, 58.5, 141, 300 }, + [77] = { 43.7, 58.5, 141, 300 }, + [78] = { 44.3, 58.5, 141, 300 }, + [79] = { 46.2, 58.4, 141, 300 }, + [80] = { 45, 58.4, 141, 300 }, + [81] = { 44.2, 58.2, 141, 300 }, + [82] = { 45.4, 58.1, 141, 300 }, + [83] = { 43.9, 58, 141, 300 }, + [84] = { 45.2, 57.8, 141, 300 }, + [85] = { 45.6, 57.7, 141, 300 }, + [86] = { 43.9, 57.7, 141, 300 }, + [87] = { 45.1, 57.7, 141, 300 }, + [88] = { 44.6, 57.6, 141, 300 }, + [89] = { 45.1, 57.6, 141, 300 }, + [90] = { 44.5, 57.5, 141, 300 }, + [91] = { 44.3, 57.4, 141, 300 }, + [92] = { 43.9, 57.4, 141, 300 }, + [93] = { 44.9, 57.3, 141, 300 }, + [94] = { 44.5, 57.1, 141, 300 }, + [95] = { 44.1, 57.1, 141, 300 }, + [96] = { 44.4, 57.1, 141, 300 }, + [97] = { 44.7, 56.9, 141, 300 }, + [98] = { 44, 56.6, 141, 300 }, + [99] = { 44.8, 56.1, 141, 300 }, + [100] = { 97.1, 96.4, 1657, 300 }, + [101] = { 99.8, 96.1, 1657, 300 }, + [102] = { 97.4, 93, 1657, 300 }, + [103] = { 99.6, 92.6, 1657, 300 }, + }, + ["lvl"] = "7-8", + }, + [2010] = { + ["coords"] = { + [1] = { 48.6, 78.8, 141, 300 }, + [2] = { 47.6, 78.5, 141, 300 }, + [3] = { 48.6, 78.1, 141, 300 }, + [4] = { 45.8, 78.1, 141, 300 }, + [5] = { 49, 78.1, 141, 300 }, + [6] = { 46.8, 77.9, 141, 300 }, + [7] = { 47.9, 77.9, 141, 300 }, + [8] = { 48, 77.8, 141, 300 }, + [9] = { 47.1, 77.7, 141, 300 }, + [10] = { 48.2, 77.7, 141, 300 }, + [11] = { 47.9, 77.6, 141, 300 }, + [12] = { 47.3, 77.4, 141, 300 }, + [13] = { 46.4, 77.3, 141, 300 }, + [14] = { 56.5, 77.2, 141, 300 }, + [15] = { 47.3, 76.9, 141, 300 }, + [16] = { 49, 76.9, 141, 300 }, + [17] = { 56.2, 76.6, 141, 300 }, + [18] = { 56.8, 76.5, 141, 300 }, + [19] = { 57.2, 76, 141, 300 }, + [20] = { 55.6, 75.8, 141, 300 }, + [21] = { 54.9, 75.2, 141, 300 }, + [22] = { 56.9, 75, 141, 300 }, + [23] = { 41.4, 71.9, 141, 300 }, + [24] = { 38.4, 67.9, 141, 300 }, + [25] = { 49.3, 67.4, 141, 300 }, + [26] = { 38.5, 67.2, 141, 300 }, + [27] = { 39.1, 67, 141, 300 }, + [28] = { 37.4, 67, 141, 300 }, + [29] = { 37.9, 66.9, 141, 300 }, + [30] = { 49.4, 66.8, 141, 300 }, + [31] = { 49.5, 66.8, 141, 300 }, + [32] = { 38.2, 66.8, 141, 300 }, + [33] = { 49.4, 66.6, 141, 300 }, + [34] = { 37.4, 66.3, 141, 300 }, + [35] = { 39.3, 66.2, 141, 300 }, + [36] = { 38.5, 66.2, 141, 300 }, + [37] = { 37.9, 66.2, 141, 300 }, + [38] = { 49.4, 66.1, 141, 300 }, + [39] = { 38.3, 65.6, 141, 300 }, + [40] = { 50, 63.2, 141, 300 }, + [41] = { 50.5, 62.9, 141, 300 }, + [42] = { 50, 62.7, 141, 300 }, + [43] = { 49.6, 62.6, 141, 300 }, + [44] = { 50, 62.5, 141, 300 }, + [45] = { 43.3, 61.9, 141, 300 }, + [46] = { 43.8, 61.8, 141, 300 }, + [47] = { 44.3, 61.7, 141, 300 }, + [48] = { 43.9, 61.5, 141, 300 }, + [49] = { 43.8, 61.3, 141, 300 }, + [50] = { 42.9, 61.2, 141, 300 }, + [51] = { 44.4, 61.2, 141, 300 }, + [52] = { 43.9, 61.1, 141, 300 }, + [53] = { 44.1, 61.1, 141, 300 }, + [54] = { 43.3, 60.7, 141, 300 }, + [55] = { 44.3, 60.5, 141, 300 }, + [56] = { 43.7, 60.5, 141, 300 }, + [57] = { 44.5, 60.5, 141, 300 }, + [58] = { 44.4, 60.4, 141, 300 }, + [59] = { 44.2, 60.3, 141, 300 }, + [60] = { 43.9, 60.2, 141, 300 }, + [61] = { 45.1, 60.1, 141, 300 }, + [62] = { 44.5, 60, 141, 300 }, + [63] = { 43.6, 60, 141, 300 }, + [64] = { 43.9, 60, 141, 300 }, + [65] = { 45.5, 59.9, 141, 300 }, + [66] = { 43.1, 59.6, 141, 300 }, + [67] = { 44.1, 59.5, 141, 300 }, + [68] = { 44.2, 59.4, 141, 300 }, + [69] = { 43, 59.1, 141, 300 }, + [70] = { 45.6, 59.1, 141, 300 }, + [71] = { 45.5, 58.9, 141, 300 }, + [72] = { 45.3, 58.8, 141, 300 }, + [73] = { 43.3, 58.8, 141, 300 }, + [74] = { 44.7, 58.7, 141, 300 }, + [75] = { 45.2, 58.7, 141, 300 }, + [76] = { 44.4, 58.5, 141, 300 }, + [77] = { 43.7, 58.5, 141, 300 }, + [78] = { 44.3, 58.5, 141, 300 }, + [79] = { 46.2, 58.4, 141, 300 }, + [80] = { 45, 58.4, 141, 300 }, + [81] = { 44.2, 58.2, 141, 300 }, + [82] = { 45.4, 58.1, 141, 300 }, + [83] = { 43.9, 58, 141, 300 }, + [84] = { 45.2, 57.8, 141, 300 }, + [85] = { 45.6, 57.7, 141, 300 }, + [86] = { 43.9, 57.7, 141, 300 }, + [87] = { 45.1, 57.7, 141, 300 }, + [88] = { 44.6, 57.6, 141, 300 }, + [89] = { 45.1, 57.6, 141, 300 }, + [90] = { 44.5, 57.5, 141, 300 }, + [91] = { 44.3, 57.4, 141, 300 }, + [92] = { 43.9, 57.4, 141, 300 }, + [93] = { 44.9, 57.3, 141, 300 }, + [94] = { 44.5, 57.1, 141, 300 }, + [95] = { 44.1, 57.1, 141, 300 }, + [96] = { 44.4, 57.1, 141, 300 }, + [97] = { 44.7, 56.9, 141, 300 }, + [98] = { 44, 56.6, 141, 300 }, + [99] = { 44.8, 56.1, 141, 300 }, + [100] = { 97.1, 96.4, 1657, 300 }, + [101] = { 99.8, 96.1, 1657, 300 }, + [102] = { 97.4, 93, 1657, 300 }, + [103] = { 99.6, 92.6, 1657, 300 }, + }, + ["lvl"] = "7-8", + }, + [2011] = { + ["coords"] = { + [1] = { 47.5, 77.9, 141, 300 }, + [2] = { 56.4, 75.6, 141, 300 }, + [3] = { 56.6, 75.5, 141, 300 }, + [4] = { 56.3, 75.3, 141, 300 }, + [5] = { 41.4, 73.9, 141, 300 }, + [6] = { 41.5, 73.2, 141, 300 }, + [7] = { 40.8, 72.8, 141, 300 }, + [8] = { 41.3, 72.7, 141, 300 }, + [9] = { 41.8, 72.5, 141, 300 }, + [10] = { 41.3, 72.3, 141, 300 }, + [11] = { 44.5, 62.7, 141, 300 }, + [12] = { 44.5, 62.3, 141, 300 }, + [13] = { 45, 61.5, 141, 300 }, + [14] = { 44.6, 61.3, 141, 300 }, + [15] = { 45, 61.3, 141, 300 }, + [16] = { 44.7, 59, 141, 300 }, + [17] = { 44.8, 58.7, 141, 300 }, + [18] = { 44.9, 58.6, 141, 300 }, + [19] = { 46.2, 58.4, 141, 300 }, + [20] = { 45.6, 58.4, 141, 300 }, + [21] = { 46.1, 58.3, 141, 300 }, + [22] = { 46.2, 58.2, 141, 300 }, + [23] = { 46, 57.2, 141, 300 }, + [24] = { 45.8, 57.1, 141, 300 }, + [25] = { 45.5, 58.9, 141, 300 }, + [26] = { 45.1, 57.7, 141, 300 }, + }, + ["lvl"] = "8-9", + }, + [2012] = { + ["coords"] = { + [1] = { 38.1, 81.3, 141, 300 }, + [2] = { 38.2, 80.4, 141, 300 }, + [3] = { 39.9, 80.3, 141, 300 }, + [4] = { 38.6, 80.3, 141, 300 }, + [5] = { 42, 80.2, 141, 300 }, + [6] = { 40.2, 80.1, 141, 300 }, + [7] = { 38.6, 80.1, 141, 300 }, + [8] = { 41.8, 80, 141, 300 }, + [9] = { 42.1, 80, 141, 300 }, + [10] = { 42.4, 79.9, 141, 300 }, + [11] = { 40, 79.8, 141, 300 }, + [12] = { 42, 79.7, 141, 300 }, + [13] = { 40, 79.7, 141, 300 }, + [14] = { 40.6, 79.6, 141, 300 }, + [15] = { 38.7, 79.5, 141, 300 }, + [16] = { 41.5, 79.4, 141, 300 }, + [17] = { 40.3, 79.4, 141, 300 }, + [18] = { 42.4, 79.2, 141, 300 }, + [19] = { 40.6, 79.1, 141, 300 }, + [20] = { 38.8, 79, 141, 300 }, + [21] = { 41.3, 79, 141, 300 }, + [22] = { 43.3, 79, 141, 300 }, + [23] = { 38.8, 78.4, 141, 300 }, + [24] = { 41.4, 77.9, 141, 300 }, + [25] = { 41.3, 77, 141, 300 }, + }, + ["lvl"] = "9-10", + }, + [2013] = { + ["coords"] = { + [1] = { 38.1, 81.3, 141, 300 }, + [2] = { 38.2, 80.4, 141, 300 }, + [3] = { 39.9, 80.3, 141, 300 }, + [4] = { 38.6, 80.3, 141, 300 }, + [5] = { 42, 80.2, 141, 300 }, + [6] = { 40.2, 80.1, 141, 300 }, + [7] = { 38.6, 80.1, 141, 300 }, + [8] = { 41.8, 80, 141, 300 }, + [9] = { 42.1, 80, 141, 300 }, + [10] = { 42.4, 79.9, 141, 300 }, + [11] = { 40, 79.8, 141, 300 }, + [12] = { 42, 79.7, 141, 300 }, + [13] = { 40, 79.7, 141, 300 }, + [14] = { 40.6, 79.6, 141, 300 }, + [15] = { 38.7, 79.5, 141, 300 }, + [16] = { 41.5, 79.4, 141, 300 }, + [17] = { 40.3, 79.4, 141, 300 }, + [18] = { 42.4, 79.2, 141, 300 }, + [19] = { 40.6, 79.1, 141, 300 }, + [20] = { 38.8, 79, 141, 300 }, + [21] = { 41.3, 79, 141, 300 }, + [22] = { 43.3, 79, 141, 300 }, + [23] = { 38.8, 78.4, 141, 300 }, + [24] = { 41.4, 77.9, 141, 300 }, + [25] = { 41.3, 77, 141, 300 }, + }, + ["lvl"] = "9-10", + }, + [2014] = { + ["coords"] = { + [1] = { 37.9, 81.2, 141, 300 }, + [2] = { 38.4, 80.8, 141, 300 }, + [3] = { 39.4, 80.2, 141, 300 }, + [4] = { 39.1, 79.9, 141, 300 }, + [5] = { 38.8, 78.9, 141, 300 }, + }, + ["lvl"] = "10-11", + }, + [2015] = { + ["coords"] = { + [1] = { 37.9, 44.7, 141, 300 }, + [2] = { 37.3, 43.7, 141, 300 }, + [3] = { 37.9, 43.7, 141, 300 }, + [4] = { 37.3, 43.3, 141, 300 }, + [5] = { 37.9, 43, 141, 300 }, + [6] = { 37.2, 43, 141, 300 }, + [7] = { 38.7, 42.9, 141, 300 }, + [8] = { 36.6, 41.8, 141, 300 }, + [9] = { 37.3, 41.6, 141, 300 }, + [10] = { 37.5, 41.3, 141, 300 }, + [11] = { 37.7, 41.1, 141, 300 }, + [12] = { 38.5, 40.7, 141, 300 }, + [13] = { 37.2, 40.4, 141, 300 }, + [14] = { 36.4, 39.9, 141, 300 }, + [15] = { 35.2, 38.9, 141, 300 }, + [16] = { 36.8, 38.9, 141, 300 }, + [17] = { 36, 38.9, 141, 300 }, + [18] = { 35.6, 38.7, 141, 300 }, + [19] = { 36.4, 38.1, 141, 300 }, + [20] = { 36, 37.8, 141, 300 }, + [21] = { 37.3, 37.8, 141, 300 }, + [22] = { 35.4, 37.7, 141, 300 }, + [23] = { 36.8, 37.7, 141, 300 }, + [24] = { 35.8, 37.3, 141, 300 }, + [25] = { 35.3, 36.8, 141, 300 }, + [26] = { 34.4, 35.5, 141, 300 }, + [27] = { 34.2, 35.4, 141, 300 }, + [28] = { 33.8, 35.4, 141, 300 }, + [29] = { 35.2, 35.1, 141, 300 }, + [30] = { 34.3, 35, 141, 300 }, + [31] = { 35, 35, 141, 300 }, + [32] = { 34.7, 34.9, 141, 300 }, + [33] = { 35.4, 34.9, 141, 300 }, + [34] = { 34.2, 34.8, 141, 300 }, + [35] = { 34.3, 34.4, 141, 300 }, + [36] = { 34.3, 34.1, 141, 300 }, + }, + ["lvl"] = "8-9", + }, + [2017] = { + ["coords"] = { + [1] = { 37.9, 44.7, 141, 300 }, + [2] = { 37.3, 43.7, 141, 300 }, + [3] = { 37.9, 43.7, 141, 300 }, + [4] = { 37.3, 43.3, 141, 300 }, + [5] = { 37.9, 43, 141, 300 }, + [6] = { 37.2, 43, 141, 300 }, + [7] = { 38.7, 42.9, 141, 300 }, + [8] = { 36.6, 41.8, 141, 300 }, + [9] = { 37.3, 41.6, 141, 300 }, + [10] = { 37.5, 41.3, 141, 300 }, + [11] = { 37.7, 41.1, 141, 300 }, + [12] = { 38.5, 40.7, 141, 300 }, + [13] = { 37.2, 40.4, 141, 300 }, + [14] = { 36.4, 39.9, 141, 300 }, + [15] = { 35.2, 38.9, 141, 300 }, + [16] = { 36.8, 38.9, 141, 300 }, + [17] = { 36, 38.9, 141, 300 }, + [18] = { 35.6, 38.7, 141, 300 }, + [19] = { 36.4, 38.1, 141, 300 }, + [20] = { 36, 37.8, 141, 300 }, + [21] = { 37.3, 37.8, 141, 300 }, + [22] = { 35.4, 37.7, 141, 300 }, + [23] = { 36.8, 37.7, 141, 300 }, + [24] = { 35.8, 37.3, 141, 300 }, + [25] = { 35.3, 36.8, 141, 300 }, + [26] = { 34.4, 35.5, 141, 300 }, + [27] = { 34.2, 35.4, 141, 300 }, + [28] = { 33.8, 35.4, 141, 300 }, + [29] = { 35.2, 35.1, 141, 300 }, + [30] = { 34.3, 35, 141, 300 }, + [31] = { 35, 35, 141, 300 }, + [32] = { 34.7, 34.9, 141, 300 }, + [33] = { 35.4, 34.9, 141, 300 }, + [34] = { 34.2, 34.8, 141, 300 }, + [35] = { 34.3, 34.4, 141, 300 }, + [36] = { 34.3, 34.1, 141, 300 }, + }, + ["lvl"] = "8-9", + }, + [2018] = { + ["coords"] = { + [1] = { 37.9, 44.7, 141, 300 }, + [2] = { 37.3, 43.7, 141, 300 }, + [3] = { 37.9, 43.7, 141, 300 }, + [4] = { 37.3, 43.3, 141, 300 }, + [5] = { 37.9, 43, 141, 300 }, + [6] = { 37.2, 43, 141, 300 }, + [7] = { 38.7, 42.9, 141, 300 }, + [8] = { 36.6, 41.8, 141, 300 }, + [9] = { 37.3, 41.6, 141, 300 }, + [10] = { 37.5, 41.3, 141, 300 }, + [11] = { 37.7, 41.1, 141, 300 }, + [12] = { 38.5, 40.7, 141, 300 }, + [13] = { 37.2, 40.4, 141, 300 }, + [14] = { 36.4, 39.9, 141, 300 }, + [15] = { 35.2, 38.9, 141, 300 }, + [16] = { 36.8, 38.9, 141, 300 }, + [17] = { 36, 38.9, 141, 300 }, + [18] = { 35.6, 38.7, 141, 300 }, + [19] = { 36.4, 38.1, 141, 300 }, + [20] = { 36, 37.8, 141, 300 }, + [21] = { 37.3, 37.8, 141, 300 }, + [22] = { 35.4, 37.7, 141, 300 }, + [23] = { 36.8, 37.7, 141, 300 }, + [24] = { 35.8, 37.3, 141, 300 }, + [25] = { 35.3, 36.8, 141, 300 }, + [26] = { 34.4, 35.5, 141, 300 }, + [27] = { 34.2, 35.4, 141, 300 }, + [28] = { 33.8, 35.4, 141, 300 }, + [29] = { 35.2, 35.1, 141, 300 }, + [30] = { 34.3, 35, 141, 300 }, + [31] = { 35, 35, 141, 300 }, + [32] = { 34.7, 34.9, 141, 300 }, + [33] = { 35.4, 34.9, 141, 300 }, + [34] = { 34.2, 34.8, 141, 300 }, + [35] = { 34.3, 34.4, 141, 300 }, + [36] = { 34.3, 34.1, 141, 300 }, + }, + ["lvl"] = "9", + }, + [2019] = { + ["coords"] = { + [1] = { 32.2, 32.9, 141, 300 }, + [2] = { 32.6, 32.7, 141, 300 }, + [3] = { 32.2, 32.3, 141, 300 }, + [4] = { 31.8, 32.2, 141, 300 }, + [5] = { 32.7, 32, 141, 300 }, + [6] = { 31.4, 31.6, 141, 300 }, + [7] = { 32.8, 30.5, 141, 300 }, + [8] = { 33.1, 30.1, 141, 300 }, + [9] = { 32.9, 30, 141, 300 }, + [10] = { 34, 30, 141, 300 }, + [11] = { 33.5, 29.8, 141, 300 }, + [12] = { 32.7, 29.6, 141, 300 }, + [13] = { 33.4, 29.3, 141, 300 }, + [14] = { 33.1, 29.2, 141, 300 }, + [15] = { 34.3, 28.9, 141, 300 }, + [16] = { 32.9, 28.8, 141, 300 }, + [17] = { 34.3, 28.3, 141, 300 }, + [18] = { 36.2, 28.3, 141, 300 }, + [19] = { 34.6, 28.1, 141, 300 }, + [20] = { 37.3, 28, 141, 300 }, + [21] = { 34.3, 28, 141, 300 }, + [22] = { 36.7, 27.9, 141, 300 }, + [23] = { 34.1, 27.7, 141, 300 }, + [24] = { 36.4, 27.3, 141, 300 }, + [25] = { 34.2, 27.3, 141, 300 }, + [26] = { 34.8, 27, 141, 300 }, + [27] = { 35.2, 26.3, 141, 300 }, + [28] = { 36.4, 25.9, 141, 300 }, + }, + ["lvl"] = "9-10", + }, + [2020] = { + ["coords"] = { + [1] = { 32.2, 32.9, 141, 300 }, + [2] = { 32.6, 32.7, 141, 300 }, + [3] = { 32.2, 32.3, 141, 300 }, + [4] = { 31.8, 32.2, 141, 300 }, + [5] = { 32.7, 32, 141, 300 }, + [6] = { 31.4, 31.6, 141, 300 }, + [7] = { 32.8, 30.5, 141, 300 }, + [8] = { 33.1, 30.1, 141, 300 }, + [9] = { 32.9, 30, 141, 300 }, + [10] = { 34, 30, 141, 300 }, + [11] = { 33.5, 29.8, 141, 300 }, + [12] = { 32.7, 29.6, 141, 300 }, + [13] = { 33.4, 29.3, 141, 300 }, + [14] = { 33.1, 29.2, 141, 300 }, + [15] = { 34.3, 28.9, 141, 300 }, + [16] = { 32.9, 28.8, 141, 300 }, + [17] = { 34.3, 28.3, 141, 300 }, + [18] = { 36.2, 28.3, 141, 300 }, + [19] = { 34.6, 28.1, 141, 300 }, + [20] = { 37.3, 28, 141, 300 }, + [21] = { 34.3, 28, 141, 300 }, + [22] = { 36.7, 27.9, 141, 300 }, + [23] = { 34.1, 27.7, 141, 300 }, + [24] = { 36.4, 27.3, 141, 300 }, + [25] = { 34.2, 27.3, 141, 300 }, + [26] = { 34.8, 27, 141, 300 }, + [27] = { 35.2, 26.3, 141, 300 }, + [28] = { 36.4, 25.9, 141, 300 }, + }, + ["lvl"] = "9-10", + }, + [2021] = { + ["coords"] = { + [1] = { 32.2, 32.9, 141, 300 }, + [2] = { 32.6, 32.7, 141, 300 }, + [3] = { 32.2, 32.3, 141, 300 }, + [4] = { 31.8, 32.2, 141, 300 }, + [5] = { 32.7, 32, 141, 300 }, + [6] = { 31.4, 31.6, 141, 300 }, + [7] = { 32.8, 30.5, 141, 300 }, + [8] = { 33.1, 30.1, 141, 300 }, + [9] = { 32.9, 30, 141, 300 }, + [10] = { 34, 30, 141, 300 }, + [11] = { 33.5, 29.8, 141, 300 }, + [12] = { 32.7, 29.6, 141, 300 }, + [13] = { 33.4, 29.3, 141, 300 }, + [14] = { 33.1, 29.2, 141, 300 }, + [15] = { 34.3, 28.9, 141, 300 }, + [16] = { 32.9, 28.8, 141, 300 }, + [17] = { 34.3, 28.3, 141, 300 }, + [18] = { 36.2, 28.3, 141, 300 }, + [19] = { 34.6, 28.1, 141, 300 }, + [20] = { 37.3, 28, 141, 300 }, + [21] = { 34.3, 28, 141, 300 }, + [22] = { 36.7, 27.9, 141, 300 }, + [23] = { 34.1, 27.7, 141, 300 }, + [24] = { 36.4, 27.3, 141, 300 }, + [25] = { 34.2, 27.3, 141, 300 }, + [26] = { 34.8, 27, 141, 300 }, + [27] = { 35.2, 26.3, 141, 300 }, + [28] = { 36.4, 25.9, 141, 300 }, + }, + ["lvl"] = "11", + }, + [2022] = { + ["coords"] = { + [1] = { 58.9, 72.2, 141, 300 }, + [2] = { 58.2, 72.2, 141, 300 }, + [3] = { 59.5, 72.1, 141, 300 }, + [4] = { 60.1, 72.1, 141, 300 }, + [5] = { 58.2, 71.1, 141, 300 }, + [6] = { 57.6, 71.1, 141, 300 }, + [7] = { 60.8, 71.1, 141, 300 }, + [8] = { 60.9, 70.3, 141, 300 }, + [9] = { 57.5, 70.2, 141, 300 }, + [10] = { 58.2, 70.2, 141, 300 }, + [11] = { 60.2, 70.1, 141, 300 }, + [12] = { 61.5, 69.2, 141, 300 }, + [13] = { 62.2, 68.7, 141, 300 }, + [14] = { 55.5, 68.2, 141, 300 }, + [15] = { 60.8, 67.8, 141, 300 }, + [16] = { 61.4, 67.2, 141, 300 }, + [17] = { 54.9, 67.2, 141, 300 }, + [18] = { 55.9, 67.2, 141, 300 }, + [19] = { 55.2, 66.5, 141, 300 }, + [20] = { 60.3, 66.4, 141, 300 }, + [21] = { 54.3, 66.2, 141, 300 }, + [22] = { 60.9, 66.2, 141, 300 }, + [23] = { 61.8, 66.1, 141, 300 }, + [24] = { 57.6, 66, 141, 300 }, + [25] = { 56.8, 65.5, 141, 300 }, + [26] = { 60.2, 65.3, 141, 300 }, + [27] = { 61, 65.3, 141, 300 }, + [28] = { 57.6, 65.1, 141, 300 }, + [29] = { 57, 64.7, 141, 300 }, + [30] = { 60.1, 64.5, 141, 300 }, + [31] = { 57.3, 64.4, 141, 300 }, + [32] = { 58.4, 64.3, 141, 300 }, + [33] = { 59.6, 64.2, 141, 300 }, + }, + ["lvl"] = "5-6", + }, + [2025] = { + ["coords"] = { + [1] = { 52.4, 74.3, 141, 300 }, + [2] = { 51.2, 73.6, 141, 300 }, + [3] = { 52.5, 73.4, 141, 300 }, + [4] = { 47.7, 72.6, 141, 300 }, + [5] = { 48.7, 72.5, 141, 300 }, + [6] = { 52.6, 72.2, 141, 300 }, + [7] = { 50.1, 72.1, 141, 300 }, + [8] = { 53.4, 70.7, 141, 300 }, + [9] = { 51.6, 70.1, 141, 300 }, + [10] = { 54.5, 69.8, 141, 300 }, + [11] = { 52.5, 69.3, 141, 300 }, + [12] = { 52.9, 68.4, 141, 300 }, + }, + ["lvl"] = "7-8", + }, + [2027] = { + ["coords"] = { + [1] = { 53.7, 75.3, 141, 300 }, + [2] = { 52.8, 74.7, 141, 300 }, + [3] = { 53.2, 74.6, 141, 300 }, + [4] = { 53, 74.1, 141, 300 }, + [5] = { 42.5, 42.8, 141, 300 }, + [6] = { 43.9, 42.7, 141, 300 }, + [7] = { 41.8, 41.7, 141, 300 }, + [8] = { 43.8, 40.7, 141, 300 }, + [9] = { 42.5, 40.7, 141, 300 }, + [10] = { 43.9, 39.2, 141, 300 }, + [11] = { 42.5, 38.7, 141, 300 }, + [12] = { 41.8, 37.9, 141, 300 }, + }, + ["lvl"] = "8-9", + }, + [2029] = { + ["coords"] = { + [1] = { 42.5, 36.8, 141, 300 }, + [2] = { 43.4, 35.8, 141, 300 }, + [3] = { 43.9, 34.9, 141, 300 }, + [4] = { 42.5, 34.5, 141, 300 }, + [5] = { 41.9, 33.9, 141, 300 }, + [6] = { 43, 33.7, 141, 300 }, + [7] = { 42.5, 33, 141, 300 }, + [8] = { 43.2, 31.9, 141, 300 }, + [9] = { 43.2, 30.1, 141, 300 }, + }, + ["lvl"] = "9-10", + }, + [2030] = { + ["coords"] = { + [1] = { 43.9, 28.9, 141, 300 }, + [2] = { 42.5, 28.9, 141, 300 }, + [3] = { 43.2, 27.9, 141, 300 }, + [4] = { 44.4, 27.9, 141, 300 }, + [5] = { 43.9, 27, 141, 300 }, + [6] = { 45, 26.6, 141, 300 }, + [7] = { 43.2, 26, 141, 300 }, + [8] = { 44.5, 26, 141, 300 }, + [9] = { 43.9, 25.9, 141, 300 }, + }, + ["lvl"] = "10-11", + }, + [2031] = { + ["coords"] = { + [1] = { 58.3, 46.7, 141, 300 }, + [2] = { 60.3, 46, 141, 300 }, + [3] = { 58.9, 45.9, 141, 300 }, + [4] = { 58.4, 45.6, 141, 300 }, + [5] = { 62.2, 45.4, 141, 300 }, + [6] = { 61.1, 45.1, 141, 300 }, + [7] = { 60.5, 45.1, 141, 300 }, + [8] = { 57.9, 44.7, 141, 300 }, + [9] = { 61.5, 44.7, 141, 300 }, + [10] = { 56.6, 44.5, 141, 300 }, + [11] = { 62.3, 44.3, 141, 300 }, + [12] = { 61.6, 44.2, 141, 300 }, + [13] = { 61.8, 44.1, 141, 300 }, + [14] = { 62.8, 43.9, 141, 300 }, + [15] = { 62.1, 43.6, 141, 300 }, + [16] = { 62.1, 42.6, 141, 300 }, + [17] = { 62.5, 42.2, 141, 300 }, + [18] = { 63.3, 42.1, 141, 300 }, + [19] = { 64.3, 42, 141, 300 }, + [20] = { 62.6, 41.7, 141, 300 }, + [21] = { 61.5, 41.7, 141, 300 }, + [22] = { 61.6, 40.9, 141, 300 }, + [23] = { 64.4, 40.5, 141, 300 }, + [24] = { 61.5, 39.3, 141, 300 }, + [25] = { 57.9, 38.9, 141, 300 }, + }, + ["lvl"] = "1", + }, + [2032] = { + ["coords"] = { + [1] = { 61.2, 39.1, 141, 300 }, + [2] = { 62.4, 39, 141, 300 }, + [3] = { 63.4, 38.8, 141, 300 }, + [4] = { 62.2, 38.7, 141, 300 }, + [5] = { 62.5, 38.2, 141, 300 }, + [6] = { 62.3, 38, 141, 300 }, + [7] = { 62.7, 37.8, 141, 300 }, + [8] = { 62.5, 37.2, 141, 300 }, + [9] = { 63, 37, 141, 300 }, + [10] = { 62.1, 36.8, 141, 300 }, + [11] = { 62.9, 36.5, 141, 300 }, + [12] = { 60.3, 36.1, 141, 300 }, + [13] = { 60, 36, 141, 300 }, + [14] = { 58.9, 35.8, 141, 300 }, + [15] = { 59.5, 35.8, 141, 300 }, + [16] = { 60.8, 35.7, 141, 300 }, + [17] = { 60.7, 35.5, 141, 300 }, + [18] = { 61.8, 35.3, 141, 300 }, + [19] = { 60.9, 34.8, 141, 300 }, + [20] = { 62.6, 34.4, 141, 300 }, + [21] = { 59.9, 34.3, 141, 300 }, + [22] = { 59.2, 31.5, 141, 300 }, + [23] = { 59.5, 36.8, 141, 300 }, + [24] = { 60.2, 34.8, 141, 300 }, + [25] = { 60.5, 34.3, 141, 300 }, + }, + ["lvl"] = "2", + }, + [2033] = { + ["coords"] = { + [1] = { 46.9, 45.6, 141, 300 }, + [2] = { 46.3, 44.5, 141, 300 }, + [3] = { 39.8, 44.5, 141, 300 }, + [4] = { 45.2, 42.6, 141, 300 }, + [5] = { 45.7, 41, 141, 300 }, + [6] = { 46, 40.9, 141, 300 }, + [7] = { 45.8, 37.8, 141, 300 }, + [8] = { 44.6, 37.7, 141, 300 }, + [9] = { 45.1, 36.7, 141, 300 }, + [10] = { 39.6, 35.4, 141, 300 }, + [11] = { 39.5, 35.2, 141, 300 }, + [12] = { 45.8, 33.8, 141, 300 }, + [13] = { 34.7, 30.9, 141, 300 }, + [14] = { 35.3, 29.8, 141, 300 }, + [15] = { 35.9, 29.2, 141, 300 }, + }, + ["lvl"] = "8-9", + }, + [2034] = { + ["coords"] = { + [1] = { 38, 29.3, 141, 300 }, + [2] = { 39.9, 28.7, 141, 300 }, + [3] = { 40.7, 27.4, 141, 300 }, + [4] = { 38.3, 26.8, 141, 300 }, + [5] = { 41.3, 25.1, 141, 300 }, + [6] = { 37.4, 24.8, 141, 300 }, + }, + ["lvl"] = "10-11", + }, + [2038] = { + ["coords"] = { + [1] = { 51.2, 50.8, 141, 300 }, + [2] = { 52.8, 50.2, 141, 300 }, + [3] = { 51.3, 50.2, 141, 300 }, + }, + ["lvl"] = "8", + }, + [2039] = { + ["coords"] = { + [1] = { 38.8, 79.8, 141, 300 }, + }, + ["lvl"] = "12", + }, + [2040] = { + ["coords"] = {}, + ["lvl"] = "12", + }, + [2041] = { + ["coords"] = { + [1] = { 57.2, 57.4, 141, 300 }, + [2] = { 34.8, 55.3, 141, 300 }, + [3] = { 36.8, 55.3, 141, 300 }, + [4] = { 84.7, 40.4, 1657, 300 }, + [5] = { 94.4, 40.1, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [2042] = { + ["coords"] = { + [1] = { 54.9, 65.3, 141, 300 }, + [2] = { 54.3, 63.3, 141, 300 }, + [3] = { 59.6, 63.3, 141, 300 }, + [4] = { 53.7, 63.2, 141, 300 }, + [5] = { 59.5, 63, 141, 300 }, + [6] = { 53, 62.6, 141, 300 }, + [7] = { 51.8, 62.3, 141, 300 }, + [8] = { 52.8, 62.3, 141, 300 }, + [9] = { 51.5, 62.3, 141, 300 }, + [10] = { 59.4, 61.7, 141, 300 }, + [11] = { 62.2, 61.7, 141, 300 }, + [12] = { 50.9, 61.5, 141, 300 }, + [13] = { 51, 61.4, 141, 300 }, + [14] = { 59.5, 61.3, 141, 300 }, + [15] = { 62.8, 61, 141, 300 }, + [16] = { 62.8, 60.4, 141, 300 }, + [17] = { 51.6, 60.2, 141, 300 }, + [18] = { 51.5, 60.2, 141, 300 }, + [19] = { 62.1, 60.1, 141, 300 }, + [20] = { 51.7, 59.3, 141, 300 }, + [21] = { 51, 59.2, 141, 300 }, + [22] = { 61.5, 59, 141, 300 }, + [23] = { 52.9, 58.5, 141, 300 }, + [24] = { 58.8, 58.4, 141, 300 }, + [25] = { 51, 57.4, 141, 300 }, + [26] = { 50.8, 57.3, 141, 300 }, + [27] = { 64.1, 56, 141, 300 }, + [28] = { 49.8, 55.8, 141, 300 }, + [29] = { 53.6, 55.6, 141, 300 }, + [30] = { 49.7, 55.4, 141, 300 }, + [31] = { 68.7, 55.4, 141, 300 }, + [32] = { 57.6, 54.7, 141, 300 }, + [33] = { 67, 54.3, 141, 300 }, + [34] = { 68, 54, 141, 300 }, + [35] = { 65.6, 53.5, 141, 300 }, + [36] = { 49.7, 52.3, 141, 300 }, + [37] = { 67.3, 51.3, 141, 300 }, + [38] = { 66.2, 51.2, 141, 300 }, + [39] = { 49.3, 51.1, 141, 300 }, + [40] = { 48.7, 50.4, 141, 300 }, + [41] = { 48.5, 50.1, 141, 300 }, + }, + ["lvl"] = "5-6", + }, + [2043] = { + ["coords"] = { + [1] = { 50, 79.2, 141, 300 }, + [2] = { 50.6, 79, 141, 300 }, + [3] = { 50.9, 77.2, 141, 300 }, + [4] = { 49.7, 77.1, 141, 300 }, + [5] = { 50.3, 76.1, 141, 300 }, + [6] = { 45.8, 75.7, 141, 300 }, + [7] = { 47, 75.1, 141, 300 }, + [8] = { 45, 74.6, 141, 300 }, + [9] = { 43.2, 74.3, 141, 300 }, + [10] = { 56.9, 73.9, 141, 300 }, + [11] = { 61.5, 73.3, 141, 300 }, + [12] = { 62.6, 72.8, 141, 300 }, + [13] = { 53.9, 72.5, 141, 300 }, + [14] = { 55.8, 72.3, 141, 300 }, + [15] = { 63.4, 72.2, 141, 300 }, + [16] = { 62.2, 72.1, 141, 300 }, + [17] = { 45.2, 72.1, 141, 300 }, + [18] = { 46.6, 71.3, 141, 300 }, + [19] = { 63.5, 71.3, 141, 300 }, + [20] = { 47.1, 70.9, 141, 300 }, + [21] = { 63.4, 70.2, 141, 300 }, + [22] = { 41.2, 70.2, 141, 300 }, + [23] = { 40.4, 69.9, 141, 300 }, + [24] = { 39.9, 69.3, 141, 300 }, + [25] = { 40.4, 69.1, 141, 300 }, + [26] = { 40.7, 59.5, 141, 300 }, + [27] = { 38.2, 58.6, 141, 300 }, + [28] = { 38.9, 58.1, 141, 300 }, + [29] = { 40.8, 57, 141, 300 }, + [30] = { 38.6, 56.5, 141, 300 }, + [31] = { 40.1, 55.8, 141, 300 }, + [32] = { 40.5, 55.6, 141, 300 }, + }, + ["lvl"] = "7-8", + }, + [2044] = { + ["coords"] = {}, + ["lvl"] = "25-26", + }, + [2045] = { + ["coords"] = {}, + ["lvl"] = "7-8", + }, + [2046] = { + ["coords"] = { + [1] = { 41.7, 65.8, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "8", + }, + [2050] = { + ["coords"] = { + [1] = { 62, 42.7, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "14", + }, + [2051] = { + ["coords"] = {}, + ["lvl"] = "56", + }, + [2052] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [2053] = { + ["coords"] = { + [1] = { 46.4, 86.6, 130, 413 }, + [2] = { 46.3, 86.5, 130, 413 }, + [3] = { 47.2, 86.3, 130, 413 }, + [4] = { 47.6, 86.1, 130, 413 }, + [5] = { 45.6, 86, 130, 413 }, + [6] = { 45.5, 86, 130, 413 }, + [7] = { 46.8, 85.7, 130, 413 }, + [8] = { 46.1, 85.6, 130, 413 }, + [9] = { 46.8, 85.6, 130, 413 }, + [10] = { 46.5, 85.5, 130, 413 }, + [11] = { 45.3, 84.8, 130, 413 }, + [12] = { 44.4, 84.5, 130, 413 }, + [13] = { 44.3, 84.4, 130, 413 }, + [14] = { 45.9, 84.1, 130, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "18-19", + }, + [2054] = { + ["coords"] = { + [1] = { 46.4, 86.5, 130, 413 }, + [2] = { 47.1, 86.3, 130, 413 }, + [3] = { 45.6, 86.1, 130, 413 }, + [4] = { 46.3, 86, 130, 413 }, + [5] = { 46, 85.8, 130, 413 }, + [6] = { 46.7, 85.6, 130, 413 }, + [7] = { 46.5, 85.6, 130, 413 }, + [8] = { 46.9, 85.2, 130, 413 }, + [9] = { 45.2, 84.8, 130, 413 }, + [10] = { 44.4, 84.4, 130, 413 }, + [11] = { 44.2, 83.5, 130, 413 }, + [12] = { 45, 82.8, 130, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "19-20", + }, + [2055] = { + ["coords"] = { + [1] = { 48.8, 69.3, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [2056] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "24", + }, + [2057] = { + ["coords"] = { + [1] = { 52.2, 69.3, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [2058] = { + ["coords"] = { + [1] = { 46.5, 74.4, 130, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "18", + }, + [2060] = { + ["coords"] = {}, + ["lvl"] = "12", + ["rnk"] = "1", + }, + [2061] = { + ["coords"] = {}, + ["lvl"] = "13", + ["rnk"] = "1", + }, + [2062] = { + ["coords"] = {}, + ["lvl"] = "13", + ["rnk"] = "1", + }, + [2063] = { + ["coords"] = {}, + ["lvl"] = "13", + ["rnk"] = "1", + }, + [2064] = { + ["coords"] = {}, + ["lvl"] = "13", + ["rnk"] = "1", + }, + [2065] = { + ["coords"] = {}, + ["lvl"] = "13", + ["rnk"] = "1", + }, + [2066] = { + ["coords"] = {}, + ["lvl"] = "13", + ["rnk"] = "1", + }, + [2067] = { + ["coords"] = {}, + ["lvl"] = "13", + ["rnk"] = "1", + }, + [2068] = { + ["coords"] = {}, + ["lvl"] = "15", + ["rnk"] = "1", + }, + [2069] = { + ["coords"] = { + [1] = { 37.5, 79, 148, 413 }, + [2] = { 38.5, 77.5, 148, 413 }, + [3] = { 38, 77.5, 148, 413 }, + [4] = { 37.5, 77.3, 148, 413 }, + [5] = { 39, 72.4, 148, 413 }, + [6] = { 42.6, 71.8, 148, 413 }, + [7] = { 41.8, 71.5, 148, 413 }, + [8] = { 39, 70.6, 148, 413 }, + [9] = { 39.9, 70.6, 148, 413 }, + [10] = { 40.6, 70, 148, 413 }, + [11] = { 43.6, 69.9, 148, 413 }, + [12] = { 40, 69.3, 148, 413 }, + [13] = { 39.7, 69.3, 148, 413 }, + [14] = { 39.2, 69.2, 148, 413 }, + [15] = { 44.6, 68.7, 148, 413 }, + [16] = { 43.5, 67.8, 148, 413 }, + [17] = { 39.4, 67.8, 148, 413 }, + [18] = { 41.9, 67.7, 148, 413 }, + [19] = { 43.1, 67.5, 148, 413 }, + [20] = { 40.1, 67.5, 148, 413 }, + [21] = { 44.4, 67.4, 148, 413 }, + [22] = { 42.2, 67.4, 148, 413 }, + [23] = { 41, 67.4, 148, 413 }, + [24] = { 39, 66.8, 148, 413 }, + [25] = { 44.1, 66.1, 148, 413 }, + [26] = { 40, 66, 148, 413 }, + [27] = { 43.8, 65.7, 148, 413 }, + [28] = { 38.6, 64.5, 148, 413 }, + [29] = { 42.4, 64.2, 148, 413 }, + [30] = { 39.4, 63.8, 148, 413 }, + [31] = { 37.5, 63.4, 148, 413 }, + [32] = { 38, 59.7, 148, 413 }, + [33] = { 49.2, 32.5, 148, 413 }, + [34] = { 54.9, 30.1, 148, 413 }, + [35] = { 52.7, 29.4, 148, 413 }, + [36] = { 50.8, 28.6, 148, 413 }, + [37] = { 53.8, 27.8, 148, 413 }, + [38] = { 49, 27.7, 148, 413 }, + [39] = { 53.3, 27.2, 148, 413 }, + [40] = { 48.7, 27.1, 148, 413 }, + [41] = { 50.5, 27, 148, 413 }, + [42] = { 49.4, 26.7, 148, 413 }, + [43] = { 51.7, 25.6, 148, 413 }, + [44] = { 48.9, 25.5, 148, 413 }, + [45] = { 44.6, 24.8, 148, 413 }, + [46] = { 55.5, 23.3, 148, 413 }, + [47] = { 54.7, 21.9, 148, 413 }, + [48] = { 55.5, 21.6, 148, 413 }, + [49] = { 55.1, 21.4, 148, 413 }, + [50] = { 55.4, 20.8, 148, 413 }, + }, + ["lvl"] = "14-15", + }, + [2070] = { + ["coords"] = { + [1] = { 37.5, 93, 148, 413 }, + [2] = { 39.8, 91.8, 148, 413 }, + [3] = { 36.6, 90.8, 148, 413 }, + [4] = { 39.5, 90.5, 148, 413 }, + [5] = { 42.9, 90.3, 148, 413 }, + [6] = { 37, 89.7, 148, 413 }, + [7] = { 35.2, 89.7, 148, 413 }, + [8] = { 45.2, 58.8, 148, 413 }, + [9] = { 44.5, 58.2, 148, 413 }, + [10] = { 45.3, 57.6, 148, 413 }, + [11] = { 45, 57.2, 148, 413 }, + [12] = { 45.2, 56.1, 148, 413 }, + [13] = { 44, 55.7, 148, 413 }, + [14] = { 44.6, 55.7, 148, 413 }, + [15] = { 43.2, 54.6, 148, 413 }, + [16] = { 42, 54.5, 148, 413 }, + [17] = { 46.5, 54.2, 148, 413 }, + [18] = { 46.4, 52.4, 148, 413 }, + [19] = { 38.8, 50.7, 148, 413 }, + [20] = { 40.1, 50.1, 148, 413 }, + [21] = { 38, 50.1, 148, 413 }, + [22] = { 38.9, 48.8, 148, 413 }, + [23] = { 42, 48.2, 148, 413 }, + [24] = { 42.1, 45.3, 148, 413 }, + [25] = { 47.2, 44.5, 148, 413 }, + [26] = { 44.1, 43.8, 148, 413 }, + [27] = { 42.6, 43.2, 148, 413 }, + [28] = { 41, 43, 148, 413 }, + [29] = { 44.8, 42.7, 148, 413 }, + [30] = { 46.4, 42.1, 148, 413 }, + [31] = { 40.5, 41.2, 148, 413 }, + [32] = { 44.8, 41.2, 148, 413 }, + [33] = { 40.3, 41.1, 148, 413 }, + [34] = { 47.2, 40.8, 148, 413 }, + [35] = { 39.7, 40.4, 148, 413 }, + [36] = { 47.9, 40.1, 148, 413 }, + [37] = { 39.4, 39.7, 148, 413 }, + [38] = { 39.4, 39.1, 148, 413 }, + [39] = { 48.3, 38.8, 148, 413 }, + [40] = { 39.6, 37.8, 148, 413 }, + [41] = { 38.1, 36.9, 148, 413 }, + [42] = { 39.2, 34.3, 148, 413 }, + [43] = { 39.6, 33.4, 148, 413 }, + [44] = { 45.5, 33.3, 148, 413 }, + [45] = { 40.1, 33.2, 148, 413 }, + [46] = { 45.7, 31.7, 148, 413 }, + [47] = { 44.9, 29.3, 148, 413 }, + [48] = { 43.6, 29, 148, 413 }, + [49] = { 45.2, 28, 148, 413 }, + [50] = { 44.3, 27.7, 148, 413 }, + [51] = { 43, 26.1, 148, 413 }, + [52] = { 42.7, 25.9, 148, 413 }, + [53] = { 45.1, 24.8, 148, 413 }, + [54] = { 44.7, 24.3, 148, 413 }, + [55] = { 48.7, 24.3, 148, 413 }, + [56] = { 43.5, 24.2, 148, 413 }, + [57] = { 46.3, 24, 148, 413 }, + [58] = { 46.2, 23.7, 148, 413 }, + [59] = { 61, 13, 148, 413 }, + [60] = { 61, 11.9, 148, 413 }, + [61] = { 59.6, 11.8, 148, 413 }, + [62] = { 62.6, 7, 148, 413 }, + }, + ["lvl"] = "10-11", + }, + [2071] = { + ["coords"] = { + [1] = { 37.2, 93.4, 148, 413 }, + [2] = { 39.4, 91.8, 148, 413 }, + [3] = { 43, 90.8, 148, 413 }, + [4] = { 36.5, 90.5, 148, 413 }, + [5] = { 39.9, 90.3, 148, 413 }, + [6] = { 36.9, 89.7, 148, 413 }, + [7] = { 35, 88.8, 148, 413 }, + [8] = { 60.9, 13.4, 148, 413 }, + [9] = { 61, 11.9, 148, 413 }, + [10] = { 59.9, 11.8, 148, 413 }, + [11] = { 62.9, 7.3, 148, 413 }, + [12] = { 62.5, 6.7, 148, 413 }, + }, + ["lvl"] = "19-20", + }, + [2077] = { + ["coords"] = { + [1] = { 59.9, 42.5, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [2078] = { + ["coords"] = { + [1] = { 56, 57.3, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "11", + }, + [2079] = { + ["coords"] = { + [1] = { 58.7, 44.3, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "4", + }, + [2080] = { + ["coords"] = { + [1] = { 60.9, 68.5, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "11", + }, + [2081] = { + ["coords"] = { + [1] = { 56, 59.5, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "12", + }, + [2082] = { + ["coords"] = { + [1] = { 57.8, 41.7, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "9", + }, + [2083] = { + ["coords"] = { + [1] = { 56.1, 57.7, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "12", + }, + [2084] = { + ["coords"] = { + [1] = { 51.5, 30.8, 618, 333 }, + }, + ["fac"] = "A", + ["lvl"] = "57", + }, + [2086] = { + ["coords"] = { + [1] = { 10.1, 56.9, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [2087] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "1", + }, + [2089] = { + ["coords"] = { + [1] = { 15.3, 29.2, 11, 300 }, + [2] = { 17.6, 29.1, 11, 300 }, + [3] = { 18.4, 27, 11, 300 }, + [4] = { 17, 26.9, 11, 300 }, + [5] = { 16.2, 26.2, 11, 300 }, + [6] = { 19, 24.8, 11, 300 }, + [7] = { 20.8, 24, 11, 300 }, + [8] = { 17.5, 23.5, 11, 300 }, + [9] = { 19.2, 23, 11, 300 }, + [10] = { 26.1, 22.6, 11, 300 }, + [11] = { 22.4, 20.9, 11, 300 }, + [12] = { 21.7, 20, 11, 300 }, + [13] = { 27, 19.4, 11, 300 }, + }, + ["lvl"] = "25-26", + }, + [2090] = { + ["coords"] = { + [1] = { 48.1, 74.7, 11, 14400 }, + }, + ["lvl"] = "23", + ["rnk"] = "4", + }, + [2091] = { + ["coords"] = { + [1] = { 53.5, 54.7, 11, 300 }, + }, + ["lvl"] = "32", + ["rnk"] = "1", + }, + [2092] = { + ["coords"] = { + [1] = { 72.7, 94, 1537, 285 }, + }, + ["fac"] = "A", + ["lvl"] = "23", + }, + [2093] = { + ["coords"] = { + [1] = { 49.9, 39.4, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [2094] = { + ["coords"] = { + [1] = { 8.5, 55.7, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [2095] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "1", + }, + [2096] = { + ["coords"] = { + [1] = { 11.5, 52.2, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [2097] = { + ["coords"] = { + [1] = { 10.8, 55.9, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [2098] = { + ["coords"] = { + [1] = { 56.4, 84.2, 11, 300 }, + [2] = { 50.6, 74.8, 11, 300 }, + [3] = { 50.3, 73.2, 11, 300 }, + [4] = { 49, 72.3, 11, 300 }, + [5] = { 16.3, 72, 11, 60 }, + [6] = { 48.3, 70.7, 11, 300 }, + [7] = { 52.4, 68.7, 11, 300 }, + [8] = { 50, 68, 11, 300 }, + [9] = { 47.9, 67.7, 11, 300 }, + [10] = { 38.6, 93.1, 28, 300 }, + [11] = { 35.5, 92.9, 28, 300 }, + [12] = { 31.8, 84.1, 28, 300 }, + [13] = { 66.4, 53.7, 36, 300 }, + [14] = { 36.8, 44.7, 36, 300 }, + [15] = { 72.4, 43, 36, 300 }, + [16] = { 67.7, 42.7, 36, 300 }, + [17] = { 40.1, 35, 36, 300 }, + [18] = { 48, 29.3, 36, 300 }, + [19] = { 61.9, 29.1, 36, 300 }, + [20] = { 52.6, 71.9, 38, 300 }, + [21] = { 58.9, 63.8, 38, 300 }, + [22] = { 28.6, 57.8, 38, 300 }, + [23] = { 38.4, 32.5, 38, 300 }, + [24] = { 31.8, 15.9, 38, 300 }, + [25] = { 30.3, 12.4, 38, 300 }, + [26] = { 27.2, 12.2, 38, 300 }, + }, + ["lvl"] = "5", + }, + [2099] = { + ["coords"] = { + [1] = { 5.8, 64.1, 11, 300 }, + [2] = { 5.6, 64.1, 11, 300 }, + [3] = { 5.6, 63.7, 11, 300 }, + [4] = { 6.6, 63.3, 11, 300 }, + [5] = { 5, 62.5, 11, 300 }, + [6] = { 10.2, 62.1, 11, 300 }, + [7] = { 8.2, 61.8, 11, 300 }, + [8] = { 8.4, 61.5, 11, 300 }, + [9] = { 9.8, 61.3, 11, 300 }, + [10] = { 8.7, 59.4, 11, 300 }, + [11] = { 5.8, 58.3, 11, 300 }, + [12] = { 4.9, 57.4, 11, 300 }, + [13] = { 7.5, 57.4, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [2102] = { + ["coords"] = { + [1] = { 49.2, 80.1, 11, 300 }, + [2] = { 51.5, 78.5, 11, 300 }, + [3] = { 48.7, 77.3, 11, 300 }, + [4] = { 47.2, 77.1, 11, 300 }, + [5] = { 50, 77, 11, 300 }, + [6] = { 47.3, 76.1, 11, 300 }, + [7] = { 48.2, 75.8, 11, 300 }, + [8] = { 47.4, 75.7, 11, 300 }, + [9] = { 47.6, 75.6, 11, 300 }, + [10] = { 48.1, 75.5, 11, 300 }, + [11] = { 47.5, 75.1, 11, 300 }, + [12] = { 47.8, 74.7, 11, 300 }, + [13] = { 47.8, 74.3, 11, 300 }, + [14] = { 49.9, 69.6, 11, 300 }, + [15] = { 47.6, 66.5, 11, 300 }, + [16] = { 48.5, 66, 11, 300 }, + }, + ["lvl"] = "20-21", + }, + [2103] = { + ["coords"] = { + [1] = { 49.3, 79.7, 11, 300 }, + [2] = { 50.1, 79.5, 11, 300 }, + [3] = { 51.2, 79.5, 11, 300 }, + [4] = { 49.5, 79, 11, 300 }, + [5] = { 49, 79, 11, 300 }, + [6] = { 48.3, 78.3, 11, 300 }, + [7] = { 48, 77.2, 11, 300 }, + [8] = { 49.3, 77, 11, 300 }, + [9] = { 50.7, 76.9, 11, 300 }, + [10] = { 47.7, 76.8, 11, 300 }, + [11] = { 47.5, 76.5, 11, 300 }, + [12] = { 48, 76.3, 11, 300 }, + [13] = { 49.9, 76.1, 11, 300 }, + [14] = { 47.9, 75.9, 11, 300 }, + [15] = { 48.2, 74.7, 11, 300 }, + [16] = { 47.8, 74.2, 11, 300 }, + [17] = { 48.2, 74, 11, 300 }, + }, + ["lvl"] = "19-20", + }, + [2104] = { + ["coords"] = { + [1] = { 9.9, 57.5, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [2105] = { + ["coords"] = { + [1] = { 55.7, 85, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2106] = { + ["coords"] = { + [1] = { 42.9, 73.4, 130, 300 }, + }, + ["lvl"] = "16", + ["rnk"] = "1", + }, + [2107] = { + ["coords"] = { + [1] = { 66.3, 58.5, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "7", + }, + [2108] = { + ["coords"] = { + [1] = { 38.4, 46.1, 11, 18000 }, + }, + ["lvl"] = "29", + ["rnk"] = "4", + }, + [2109] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "32", + }, + [2110] = { + ["coords"] = { + [1] = { 57.2, 78.9, 10, 300 }, + [2] = { 43.9, 71.9, 10, 300 }, + [3] = { 43.8, 71.8, 10, 300 }, + [4] = { 58.8, 69.2, 10, 300 }, + [5] = { 51.2, 67.3, 10, 300 }, + [6] = { 36.1, 65, 10, 300 }, + [7] = { 41.6, 64.4, 10, 300 }, + [8] = { 41.7, 64.4, 10, 300 }, + [9] = { 15.4, 63.7, 10, 300 }, + [10] = { 30.7, 61.3, 10, 300 }, + [11] = { 70.2, 61.1, 10, 300 }, + [12] = { 19.3, 60.5, 10, 300 }, + [13] = { 24.5, 59.9, 10, 300 }, + [14] = { 65.1, 59.2, 10, 300 }, + [15] = { 75.6, 57.8, 10, 300 }, + [16] = { 66.6, 54.8, 10, 300 }, + [17] = { 21.8, 54.4, 10, 300 }, + [18] = { 73.7, 54.3, 10, 300 }, + [19] = { 77.3, 54, 10, 300 }, + [20] = { 68.7, 52.3, 10, 300 }, + [21] = { 71.7, 37.6, 10, 300 }, + [22] = { 74, 30.9, 10, 300 }, + [23] = { 52.7, 78.6, 28, 300 }, + [24] = { 49.7, 78.2, 28, 300 }, + [25] = { 50.1, 75.5, 28, 300 }, + [26] = { 41.2, 72.8, 28, 300 }, + [27] = { 38.2, 72.1, 28, 300 }, + [28] = { 41.1, 70.5, 28, 300 }, + [29] = { 47.3, 69.8, 28, 300 }, + [30] = { 45.7, 69.6, 28, 300 }, + [31] = { 49.4, 66.7, 28, 300 }, + [32] = { 53.2, 66.6, 28, 300 }, + [33] = { 43.7, 66.4, 28, 300 }, + [34] = { 47.5, 64.3, 28, 300 }, + [35] = { 42.1, 61.1, 28, 300 }, + [36] = { 61.8, 58.5, 28, 300 }, + [37] = { 63.9, 58.3, 28, 300 }, + [38] = { 37.6, 55.8, 28, 300 }, + [39] = { 46.2, 53.3, 28, 300 }, + [40] = { 49.8, 45.6, 28, 300 }, + [41] = { 49.8, 45.5, 28, 300 }, + [42] = { 53.8, 44.8, 28, 300 }, + }, + ["lvl"] = "1", + }, + [2111] = { + ["coords"] = { + [1] = { 11.8, 58, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [2112] = { + ["coords"] = { + [1] = { 73.6, 43.5, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "18-19", + }, + [2113] = { + ["coords"] = { + [1] = { 32.4, 65.7, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "5", + }, + [2114] = { + ["coords"] = { + [1] = { 59.8, 52.1, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "5", + }, + [2115] = { + ["coords"] = { + [1] = { 32.3, 65.4, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "5", + }, + [2116] = { + ["coords"] = { + [1] = { 32.4, 66.2, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "5", + }, + [2117] = { + ["coords"] = { + [1] = { 32.4, 66.4, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "5", + }, + [2118] = { + ["coords"] = { + [1] = { 61, 52.4, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "9", + }, + [2119] = { + ["coords"] = { + [1] = { 32.7, 65.6, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "5", + }, + [2120] = { + ["coords"] = { + [1] = { 63.4, 64.3, 130, 413 }, + [2] = { 8.7, 25, 267, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "22", + }, + [2121] = { + ["coords"] = { + [1] = { 44, 40.9, 130, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [2122] = { + ["coords"] = { + [1] = { 32.5, 65.7, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "5", + }, + [2123] = { + ["coords"] = { + [1] = { 31.1, 66, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "5", + }, + [2124] = { + ["coords"] = { + [1] = { 30.9, 66.1, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "5", + }, + [2126] = { + ["coords"] = { + [1] = { 30.9, 66.3, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "5", + }, + [2127] = { + ["coords"] = { + [1] = { 61.6, 52.4, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "15", + }, + [2128] = { + ["coords"] = { + [1] = { 62, 52.5, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "14", + }, + [2129] = { + ["coords"] = { + [1] = { 61.6, 52.2, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "17", + }, + [2130] = { + ["coords"] = { + [1] = { 61.8, 52, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "13", + }, + [2131] = { + ["coords"] = { + [1] = { 61.9, 52.5, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "16", + }, + [2132] = { + ["coords"] = { + [1] = { 59.4, 52.2, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [2133] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "11", + }, + [2134] = { + ["coords"] = { + [1] = { 61.1, 52.6, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "10", + }, + [2135] = { + ["coords"] = { + [1] = { 60.2, 53.1, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "14", + }, + [2136] = { + ["coords"] = { + [1] = { 60.1, 53.4, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "13", + }, + [2137] = { + ["coords"] = { + [1] = { 60.3, 52.8, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "12", + }, + [2138] = { + ["coords"] = {}, + ["lvl"] = "25", + }, + [2140] = { + ["coords"] = { + [1] = { 44, 39.9, 130, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "18-20", + }, + [2142] = { + ["coords"] = { + [1] = { 81.9, 19.7, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "32", + }, + [2149] = { + ["coords"] = {}, + ["lvl"] = "14", + }, + [2150] = { + ["coords"] = { + [1] = { 60.4, 56.1, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "7", + }, + [2151] = { + ["coords"] = { + [1] = { 55.9, 58.8, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [2152] = { + ["coords"] = { + [1] = { 45.8, 54.5, 141, 300 }, + [2] = { 45.2, 54.5, 141, 300 }, + [3] = { 46.8, 54.4, 141, 300 }, + [4] = { 48.4, 54.4, 141, 300 }, + [5] = { 46.3, 54.2, 141, 300 }, + [6] = { 48.3, 53.5, 141, 300 }, + [7] = { 45.8, 53.5, 141, 300 }, + [8] = { 46.5, 53.4, 141, 300 }, + [9] = { 47.9, 53.2, 141, 300 }, + [10] = { 45.5, 52.9, 141, 300 }, + [11] = { 46.3, 52.7, 141, 300 }, + [12] = { 46.7, 52.5, 141, 300 }, + [13] = { 45.9, 52.5, 141, 300 }, + [14] = { 46.3, 52.2, 141, 300 }, + [15] = { 46.3, 51.2, 141, 300 }, + }, + ["lvl"] = "6-7", + }, + [2153] = { + ["coords"] = { + [1] = { 27.4, 41.2, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [2154] = { + ["coords"] = {}, + ["lvl"] = "56", + }, + [2155] = { + ["coords"] = { + [1] = { 42.2, 51.3, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "8", + }, + [2156] = { + ["coords"] = { + [1] = { 36.2, 86.3, 148, 413 }, + [2] = { 36.3, 85.8, 148, 413 }, + [3] = { 35.7, 85.6, 148, 413 }, + [4] = { 36.1, 85.6, 148, 413 }, + [5] = { 35.5, 85.1, 148, 413 }, + [6] = { 35.1, 84.9, 148, 413 }, + [7] = { 35.4, 84.4, 148, 413 }, + [8] = { 35.6, 84.1, 148, 413 }, + }, + ["lvl"] = "18-19", + }, + [2157] = { + ["coords"] = { + [1] = { 36.2, 86.3, 148, 413 }, + [2] = { 36.3, 85.8, 148, 413 }, + [3] = { 35.7, 85.6, 148, 413 }, + [4] = { 36.1, 85.6, 148, 413 }, + [5] = { 35.5, 85.1, 148, 413 }, + [6] = { 35.1, 84.9, 148, 413 }, + }, + ["lvl"] = "19-20", + }, + [2158] = { + ["coords"] = {}, + ["lvl"] = "18-19", + }, + [2159] = { + ["coords"] = {}, + ["lvl"] = "19-20", + }, + [2160] = { + ["coords"] = {}, + ["lvl"] = "20-21", + }, + [2162] = { + ["coords"] = { + [1] = { 46.3, 51, 141, 300 }, + }, + ["lvl"] = "8", + }, + [2163] = { + ["coords"] = { + [1] = { 44.7, 60.2, 148, 413 }, + [2] = { 41.6, 56.9, 148, 413 }, + [3] = { 43.2, 56.4, 148, 413 }, + [4] = { 42.6, 55.8, 148, 413 }, + [5] = { 45.7, 55.3, 148, 413 }, + [6] = { 43.6, 54.9, 148, 413 }, + [7] = { 42.9, 54.8, 148, 413 }, + [8] = { 46.3, 54.8, 148, 413 }, + [9] = { 38, 48.6, 148, 413 }, + [10] = { 41, 48.5, 148, 413 }, + [11] = { 41.6, 48, 148, 413 }, + [12] = { 42.6, 47.9, 148, 413 }, + [13] = { 42, 47.1, 148, 413 }, + [14] = { 38.1, 47, 148, 413 }, + [15] = { 43.2, 44.2, 148, 413 }, + [16] = { 45.1, 43.8, 148, 413 }, + [17] = { 45.6, 43.5, 148, 413 }, + [18] = { 44.6, 43.2, 148, 413 }, + [19] = { 43.7, 42.7, 148, 413 }, + [20] = { 43.2, 42.6, 148, 413 }, + [21] = { 43.5, 41.9, 148, 413 }, + [22] = { 41.1, 41.9, 148, 413 }, + [23] = { 47, 41.9, 148, 413 }, + [24] = { 45.8, 41.7, 148, 413 }, + [25] = { 45.7, 41.5, 148, 413 }, + [26] = { 48.2, 40.8, 148, 413 }, + [27] = { 40.4, 40.3, 148, 413 }, + [28] = { 39.9, 39.5, 148, 413 }, + [29] = { 38.4, 38.8, 148, 413 }, + [30] = { 38.4, 38.6, 148, 413 }, + [31] = { 40.5, 38.4, 148, 413 }, + [32] = { 49, 38.3, 148, 413 }, + [33] = { 38.6, 38.3, 148, 413 }, + [34] = { 40.5, 38, 148, 413 }, + [35] = { 39.2, 37.2, 148, 413 }, + [36] = { 40.2, 36.8, 148, 413 }, + [37] = { 40.2, 36.5, 148, 413 }, + [38] = { 39.5, 36.3, 148, 413 }, + [39] = { 40.4, 35, 148, 413 }, + [40] = { 41.6, 34.8, 148, 413 }, + [41] = { 43.4, 34.7, 148, 413 }, + [42] = { 41.1, 34.1, 148, 413 }, + [43] = { 44.9, 33.9, 148, 413 }, + [44] = { 41.6, 33.9, 148, 413 }, + [45] = { 44.6, 33.4, 148, 413 }, + [46] = { 43.4, 33.4, 148, 413 }, + [47] = { 43.7, 32.4, 148, 413 }, + [48] = { 45.1, 32.3, 148, 413 }, + [49] = { 44.1, 32.2, 148, 413 }, + [50] = { 44.4, 31.6, 148, 413 }, + [51] = { 44.3, 31, 148, 413 }, + [52] = { 44.8, 30.8, 148, 413 }, + [53] = { 43.5, 30, 148, 413 }, + [54] = { 45.5, 29.9, 148, 413 }, + [55] = { 44.6, 29.9, 148, 413 }, + [56] = { 43.7, 29.4, 148, 413 }, + [57] = { 44.1, 29, 148, 413 }, + [58] = { 45.7, 28.9, 148, 413 }, + [59] = { 44.8, 27.2, 148, 413 }, + [60] = { 43.4, 26.9, 148, 413 }, + [61] = { 46, 26.6, 148, 413 }, + [62] = { 45.9, 26.4, 148, 413 }, + [63] = { 45.3, 26.4, 148, 413 }, + [64] = { 45.6, 26, 148, 413 }, + [65] = { 44.4, 25.9, 148, 413 }, + [66] = { 43.5, 25.8, 148, 413 }, + [67] = { 46.7, 25.4, 148, 413 }, + [68] = { 42.9, 24.9, 148, 413 }, + [69] = { 46.2, 24.9, 148, 413 }, + [70] = { 44.5, 24.7, 148, 413 }, + [71] = { 45.6, 23.9, 148, 413 }, + [72] = { 47.6, 23.8, 148, 413 }, + [73] = { 47.3, 23.7, 148, 413 }, + [74] = { 45.2, 23.6, 148, 413 }, + [75] = { 48, 23.4, 148, 413 }, + [76] = { 45.8, 23, 148, 413 }, + [77] = { 43.1, 22.9, 148, 413 }, + [78] = { 46.8, 22.6, 148, 413 }, + [79] = { 43.5, 22.6, 148, 413 }, + [80] = { 48.7, 22.2, 148, 413 }, + [81] = { 30.1, 31.1, 361, 413 }, + [82] = { 45.1, 24.8, 148, 413 }, + }, + ["lvl"] = "11-12", + }, + [2164] = { + ["coords"] = { + [1] = { 38.5, 79, 148, 413 }, + [2] = { 39, 76.7, 148, 413 }, + [3] = { 40.5, 76.4, 148, 413 }, + [4] = { 40.6, 75.8, 148, 413 }, + [5] = { 39.8, 75.8, 148, 413 }, + [6] = { 38.4, 75, 148, 413 }, + [7] = { 38.5, 74.4, 148, 413 }, + [8] = { 37.7, 74, 148, 413 }, + [9] = { 37.6, 73.2, 148, 413 }, + [10] = { 38.7, 72.8, 148, 413 }, + [11] = { 37.8, 72.3, 148, 413 }, + [12] = { 38.4, 71.8, 148, 413 }, + [13] = { 40.5, 71.1, 148, 413 }, + [14] = { 39.5, 71, 148, 413 }, + [15] = { 43.1, 70.7, 148, 413 }, + [16] = { 38.2, 70.6, 148, 413 }, + [17] = { 44.1, 70.6, 148, 413 }, + [18] = { 38.6, 70.2, 148, 413 }, + [19] = { 38.1, 69.5, 148, 413 }, + [20] = { 44.1, 69.2, 148, 413 }, + [21] = { 43.1, 69.1, 148, 413 }, + [22] = { 39.6, 68.3, 148, 413 }, + [23] = { 42.4, 68.3, 148, 413 }, + [24] = { 38.5, 68.2, 148, 413 }, + [25] = { 38.1, 67.7, 148, 413 }, + [26] = { 45, 66.8, 148, 413 }, + [27] = { 41, 66.2, 148, 413 }, + [28] = { 42.1, 66.1, 148, 413 }, + [29] = { 38.9, 66, 148, 413 }, + [30] = { 38.6, 65.8, 148, 413 }, + [31] = { 38.2, 65.5, 148, 413 }, + [32] = { 42.3, 65.5, 148, 413 }, + [33] = { 39.2, 65.3, 148, 413 }, + [34] = { 41.7, 65.2, 148, 413 }, + [35] = { 43, 64.7, 148, 413 }, + [36] = { 39.1, 64.5, 148, 413 }, + [37] = { 39.3, 63.3, 148, 413 }, + [38] = { 41.4, 63.2, 148, 413 }, + [39] = { 44.6, 63, 148, 413 }, + [40] = { 39.6, 61.8, 148, 413 }, + [41] = { 38.3, 61.7, 148, 413 }, + [42] = { 39, 61.5, 148, 413 }, + [43] = { 39.5, 60.8, 148, 413 }, + [44] = { 38.6, 60.7, 148, 413 }, + [45] = { 39.2, 59.7, 148, 413 }, + [46] = { 39.5, 59.5, 148, 413 }, + [47] = { 38.7, 58.9, 148, 413 }, + [48] = { 38.3, 58.4, 148, 413 }, + [49] = { 40.1, 58.3, 148, 413 }, + [50] = { 38.5, 57.7, 148, 413 }, + [51] = { 38.1, 56.6, 148, 413 }, + [52] = { 38.5, 54.6, 148, 413 }, + [53] = { 38.2, 52.6, 148, 413 }, + [54] = { 48.4, 35.6, 148, 413 }, + [55] = { 51.2, 35.6, 148, 413 }, + [56] = { 49.2, 35.5, 148, 413 }, + [57] = { 48.6, 35.2, 148, 413 }, + [58] = { 47.9, 34.6, 148, 413 }, + [59] = { 51.2, 34.4, 148, 413 }, + [60] = { 46.7, 34.4, 148, 413 }, + [61] = { 47.5, 34.1, 148, 413 }, + [62] = { 46.7, 33.5, 148, 413 }, + [63] = { 49.4, 33.4, 148, 413 }, + [64] = { 48.4, 33.4, 148, 413 }, + [65] = { 47.6, 33, 148, 413 }, + [66] = { 44.4, 32.7, 148, 413 }, + [67] = { 51.8, 32.5, 148, 413 }, + [68] = { 47.1, 32.4, 148, 413 }, + [69] = { 51.8, 31.8, 148, 413 }, + [70] = { 47.1, 31.2, 148, 413 }, + [71] = { 45.5, 31.1, 148, 413 }, + [72] = { 50.9, 31.1, 148, 413 }, + [73] = { 44, 31.1, 148, 413 }, + [74] = { 48.9, 31.1, 148, 413 }, + [75] = { 50.1, 31, 148, 413 }, + [76] = { 48.4, 31, 148, 413 }, + [77] = { 50.8, 30.2, 148, 413 }, + [78] = { 54.4, 29.5, 148, 413 }, + [79] = { 44.7, 29.3, 148, 413 }, + [80] = { 49.3, 29.2, 148, 413 }, + [81] = { 53.4, 29, 148, 413 }, + [82] = { 52.6, 28.8, 148, 413 }, + [83] = { 47.5, 28.5, 148, 413 }, + [84] = { 47.3, 28.2, 148, 413 }, + [85] = { 50.4, 27.8, 148, 413 }, + [86] = { 52.8, 27.7, 148, 413 }, + [87] = { 49.6, 27.4, 148, 413 }, + [88] = { 45.1, 26.5, 148, 413 }, + [89] = { 53.3, 26.3, 148, 413 }, + [90] = { 48.4, 26.3, 148, 413 }, + [91] = { 50.2, 25.7, 148, 413 }, + [92] = { 49.8, 25.6, 148, 413 }, + [93] = { 53.8, 25.6, 148, 413 }, + [94] = { 52.8, 25.6, 148, 413 }, + [95] = { 43.7, 25.4, 148, 413 }, + [96] = { 46.6, 24.9, 148, 413 }, + [97] = { 47.7, 24.5, 148, 413 }, + [98] = { 45.9, 24.4, 148, 413 }, + [99] = { 44.4, 23.6, 148, 413 }, + [100] = { 43, 22.8, 148, 413 }, + [101] = { 48.7, 27.1, 148, 413 }, + }, + ["lvl"] = "13-14", + }, + [2165] = { + ["coords"] = { + [1] = { 40.1, 82.9, 148, 413 }, + [2] = { 43, 82.4, 148, 413 }, + [3] = { 38.6, 82.4, 148, 413 }, + [4] = { 38, 82, 148, 413 }, + [5] = { 37.5, 82, 148, 413 }, + [6] = { 39.6, 82, 148, 413 }, + [7] = { 40.5, 81.8, 148, 413 }, + [8] = { 45.1, 81.4, 148, 413 }, + [9] = { 39.3, 81.4, 148, 413 }, + [10] = { 41.1, 81.3, 148, 413 }, + [11] = { 40.4, 81.1, 148, 413 }, + [12] = { 39.8, 80.8, 148, 413 }, + [13] = { 38.6, 80.5, 148, 413 }, + [14] = { 37.7, 79.8, 148, 413 }, + [15] = { 40.1, 79.8, 148, 413 }, + [16] = { 37.8, 78.6, 148, 413 }, + [17] = { 39.1, 76.3, 148, 413 }, + [18] = { 40.3, 75.9, 148, 413 }, + [19] = { 38.2, 71.1, 148, 413 }, + [20] = { 39.1, 70, 148, 413 }, + [21] = { 28.7, 61.4, 361, 413 }, + }, + ["lvl"] = "16-17", + }, + [2166] = { + ["coords"] = { + [1] = { 53.8, 75.1, 141, 300 }, + }, + ["lvl"] = "9", + ["rnk"] = "1", + }, + [2167] = { + ["coords"] = { + [1] = { 39.1, 56.4, 148, 413 }, + [2] = { 39.9, 56.3, 148, 413 }, + [3] = { 40.2, 56.3, 148, 413 }, + [4] = { 39.6, 56.3, 148, 413 }, + [5] = { 39.7, 54.4, 148, 413 }, + [6] = { 39.8, 53.9, 148, 413 }, + [7] = { 39.4, 53.7, 148, 413 }, + [8] = { 39.1, 53.4, 148, 413 }, + [9] = { 39.8, 53.4, 148, 413 }, + [10] = { 39.7, 53.1, 148, 413 }, + [11] = { 39.2, 53, 148, 413 }, + [12] = { 39.3, 52.2, 148, 413 }, + }, + ["lvl"] = "12-13", + }, + [2168] = { + ["coords"] = { + [1] = { 42.5, 86.4, 148, 413 }, + [2] = { 42.7, 85.5, 148, 413 }, + [3] = { 42.8, 84.5, 148, 413 }, + [4] = { 39.9, 79.1, 148, 413 }, + [5] = { 40.2, 78.9, 148, 413 }, + [6] = { 39.7, 78.8, 148, 413 }, + [7] = { 39.4, 78.5, 148, 413 }, + [8] = { 39.5, 78, 148, 413 }, + [9] = { 40.2, 77.9, 148, 413 }, + [10] = { 40.7, 77.8, 148, 413 }, + [11] = { 39.9, 77.6, 148, 413 }, + [12] = { 51.2, 35.2, 148, 413 }, + [13] = { 50.7, 35.2, 148, 413 }, + [14] = { 51, 35, 148, 413 }, + [15] = { 50.4, 34.6, 148, 413 }, + [16] = { 51.1, 34.5, 148, 413 }, + [17] = { 50.8, 34.5, 148, 413 }, + [18] = { 50.6, 34.3, 148, 413 }, + [19] = { 52.4, 34.2, 148, 413 }, + [20] = { 52.8, 34.1, 148, 413 }, + [21] = { 52, 33.9, 148, 413 }, + [22] = { 52.5, 33.5, 148, 413 }, + [23] = { 53.1, 33.5, 148, 413 }, + [24] = { 51.8, 33.3, 148, 413 }, + [25] = { 52.1, 33.1, 148, 413 }, + [26] = { 52.8, 33, 148, 413 }, + [27] = { 52.4, 32.7, 148, 413 }, + [28] = { 52.3, 33.1, 148, 0 }, + [29] = { 52.9, 33.5, 148, 0 }, + [30] = { 52.2, 34, 148, 0 }, + }, + ["lvl"] = "16-17", + }, + [2169] = { + ["coords"] = { + [1] = { 45, 89.1, 148, 413 }, + [2] = { 44.5, 89, 148, 413 }, + [3] = { 44.9, 88.4, 148, 413 }, + [4] = { 42.7, 86.6, 148, 413 }, + [5] = { 42.5, 85.6, 148, 413 }, + [6] = { 39.7, 78.4, 148, 413 }, + [7] = { 40.6, 78, 148, 413 }, + [8] = { 51.2, 34.9, 148, 413 }, + [9] = { 50.6, 34.8, 148, 413 }, + [10] = { 52.3, 33.9, 148, 413 }, + [11] = { 52.8, 33.6, 148, 413 }, + [12] = { 51.9, 33.6, 148, 413 }, + [13] = { 52.2, 33.3, 148, 413 }, + [14] = { 52.5, 33.1, 148, 413 }, + [15] = { 28.7, 70.2, 361, 413 }, + [16] = { 28.5, 69.4, 361, 413 }, + }, + ["lvl"] = "17-18", + }, + [2170] = { + ["coords"] = { + [1] = { 44.7, 87.9, 148, 413 }, + [2] = { 44.8, 87.4, 148, 413 }, + [3] = { 44.6, 87, 148, 413 }, + [4] = { 42.8, 86.6, 148, 413 }, + [5] = { 42.4, 86.4, 148, 413 }, + [6] = { 44.2, 85.6, 148, 413 }, + [7] = { 43.9, 85.1, 148, 413 }, + [8] = { 44.2, 84.9, 148, 413 }, + [9] = { 44.5, 84.8, 148, 413 }, + [10] = { 43.6, 84.5, 148, 413 }, + [11] = { 44.3, 84.1, 148, 413 }, + [12] = { 44.1, 83.6, 148, 413 }, + }, + ["lvl"] = "18-19", + }, + [2171] = { + ["coords"] = { + [1] = { 44.7, 87.3, 148, 413 }, + [2] = { 44.8, 87.1, 148, 413 }, + [3] = { 42.6, 86.8, 148, 413 }, + [4] = { 42.7, 86.1, 148, 413 }, + [5] = { 44, 84.8, 148, 413 }, + [6] = { 44.3, 84.4, 148, 413 }, + [7] = { 28.5, 67.9, 361, 413 }, + }, + ["lvl"] = "19-20", + }, + [2172] = { + ["coords"] = { + [1] = { 34.8, 87.3, 148, 19800 }, + }, + ["lvl"] = "20", + ["rnk"] = "4", + }, + [2173] = { + ["coords"] = { + [1] = { 37.1, 82.6, 130, 413 }, + [2] = { 38, 77.4, 130, 413 }, + [3] = { 37.4, 76.7, 130, 413 }, + [4] = { 38.9, 75.7, 130, 413 }, + [5] = { 35.1, 50.6, 130, 413 }, + [6] = { 35.4, 49.8, 130, 413 }, + [7] = { 34.9, 48.8, 130, 413 }, + [8] = { 34.2, 47.8, 130, 413 }, + [9] = { 34.8, 44.8, 130, 413 }, + [10] = { 34.5, 37.3, 130, 413 }, + [11] = { 34.9, 36.1, 130, 413 }, + [12] = { 34.6, 36, 130, 413 }, + [13] = { 36.6, 32.9, 130, 413 }, + [14] = { 34.8, 29.8, 130, 413 }, + [15] = { 33.4, 24.7, 130, 413 }, + [16] = { 34.2, 23.5, 130, 413 }, + }, + ["lvl"] = "14-15", + }, + [2174] = { + ["coords"] = { + [1] = { 31.4, 79.5, 148, 413 }, + [2] = { 34, 76.4, 148, 413 }, + [3] = { 31.9, 76.2, 148, 413 }, + [4] = { 32.2, 75.1, 148, 413 }, + [5] = { 35, 73.7, 148, 413 }, + [6] = { 31.9, 73.6, 148, 413 }, + [7] = { 34.1, 73.6, 148, 413 }, + [8] = { 31.3, 72.5, 148, 413 }, + [9] = { 32.5, 71.6, 148, 413 }, + [10] = { 31.4, 70.6, 148, 413 }, + [11] = { 33, 70.5, 148, 413 }, + [12] = { 35.1, 70.2, 148, 413 }, + [13] = { 33.5, 69.3, 148, 413 }, + [14] = { 35.1, 67.8, 148, 413 }, + [15] = { 32.9, 67.6, 148, 413 }, + [16] = { 32.3, 66.3, 148, 413 }, + [17] = { 33.1, 65.7, 148, 413 }, + [18] = { 34.6, 65.6, 148, 413 }, + [19] = { 33.6, 64.6, 148, 413 }, + [20] = { 30.9, 64.5, 148, 413 }, + [21] = { 31.8, 64.4, 148, 413 }, + [22] = { 33, 63.9, 148, 413 }, + [23] = { 31.4, 63.1, 148, 413 }, + [24] = { 32, 63, 148, 413 }, + [25] = { 32, 61.4, 148, 413 }, + [26] = { 33.8, 61.1, 148, 413 }, + [27] = { 33, 61, 148, 413 }, + [28] = { 37.4, 25.4, 148, 413 }, + [29] = { 40, 25.1, 148, 413 }, + [30] = { 37.7, 24.8, 148, 413 }, + [31] = { 41.1, 24.8, 148, 413 }, + [32] = { 38.9, 24.7, 148, 413 }, + [33] = { 39.5, 23.9, 148, 413 }, + [34] = { 38.6, 22.5, 148, 413 }, + [35] = { 39.6, 21.8, 148, 413 }, + [36] = { 38.8, 20.2, 148, 413 }, + [37] = { 40.6, 19.7, 148, 413 }, + [38] = { 41, 18.9, 148, 413 }, + [39] = { 42.1, 18.7, 148, 413 }, + [40] = { 44.3, 17, 148, 413 }, + [41] = { 41.6, 16.9, 148, 413 }, + [42] = { 40.9, 16.7, 148, 413 }, + [43] = { 45.2, 15.7, 148, 413 }, + [44] = { 46.1, 15.6, 148, 413 }, + [45] = { 42.8, 15.6, 148, 413 }, + [46] = { 44.2, 15.5, 148, 413 }, + }, + ["lvl"] = "14-16", + }, + [2175] = { + ["coords"] = { + [1] = { 40.3, 40.5, 148, 5400 }, + }, + ["lvl"] = "13", + ["rnk"] = "4", + }, + [2176] = { + ["coords"] = { + [1] = { 41.6, 59.7, 148, 413 }, + [2] = { 41.7, 59.2, 148, 413 }, + [3] = { 43.7, 59.1, 148, 413 }, + [4] = { 41.5, 58.6, 148, 413 }, + [5] = { 42.1, 58.4, 148, 413 }, + [6] = { 43.2, 58.4, 148, 413 }, + [7] = { 43.7, 58.2, 148, 413 }, + [8] = { 42.2, 57.8, 148, 413 }, + [9] = { 41.7, 57.8, 148, 413 }, + [10] = { 42.7, 57.8, 148, 413 }, + [11] = { 43.2, 57.6, 148, 413 }, + [12] = { 41.9, 57.3, 148, 413 }, + [13] = { 42.6, 57.3, 148, 413 }, + }, + ["lvl"] = "10-11", + }, + [2177] = { + ["coords"] = { + [1] = { 42.8, 63.4, 148, 413 }, + [2] = { 42.5, 63.4, 148, 413 }, + [3] = { 43.3, 63.4, 148, 413 }, + [4] = { 42.3, 62.9, 148, 413 }, + [5] = { 41.1, 62.8, 148, 413 }, + [6] = { 42.8, 62.8, 148, 413 }, + [7] = { 43.6, 62.7, 148, 413 }, + [8] = { 42, 62.5, 148, 413 }, + [9] = { 41.7, 62.1, 148, 413 }, + [10] = { 43.4, 62, 148, 413 }, + [11] = { 41.3, 61.7, 148, 413 }, + [12] = { 41.6, 61.3, 148, 413 }, + [13] = { 41.7, 60.8, 148, 413 }, + [14] = { 43.5, 60.5, 148, 413 }, + [15] = { 41.8, 60.3, 148, 413 }, + [16] = { 43.4, 59.8, 148, 413 }, + [17] = { 42.8, 59.6, 148, 413 }, + [18] = { 42.2, 59.2, 148, 413 }, + [19] = { 43, 59, 148, 413 }, + [20] = { 42.6, 58.8, 148, 413 }, + [21] = { 42.6, 58.3, 148, 413 }, + }, + ["lvl"] = "11-12", + }, + [2178] = { + ["coords"] = { + [1] = { 44, 62.1, 148, 413 }, + [2] = { 42.2, 62, 148, 413 }, + [3] = { 43.1, 61.8, 148, 413 }, + [4] = { 42.5, 61.7, 148, 413 }, + [5] = { 42.7, 61.7, 148, 413 }, + [6] = { 44, 61.4, 148, 413 }, + [7] = { 42.1, 61.1, 148, 413 }, + [8] = { 43.9, 61, 148, 413 }, + [9] = { 43.3, 60.9, 148, 413 }, + [10] = { 42.8, 60.9, 148, 413 }, + [11] = { 42.4, 60.6, 148, 413 }, + [12] = { 44.1, 60.5, 148, 413 }, + [13] = { 42.8, 60.2, 148, 413 }, + [14] = { 43.8, 60, 148, 413 }, + [15] = { 43.2, 58.8, 148, 413 }, + }, + ["lvl"] = "12-13", + }, + [2179] = { + ["coords"] = { + [1] = { 54.7, 36.8, 148, 720 }, + [2] = { 55.4, 36.6, 148, 720 }, + [3] = { 55.4, 35.8, 148, 720 }, + [4] = { 55.6, 35.8, 148, 720 }, + [5] = { 54.9, 35.7, 148, 720 }, + [6] = { 55.3, 35.4, 148, 720 }, + [7] = { 55, 35.2, 148, 720 }, + [8] = { 55.2, 35, 148, 720 }, + [9] = { 55.9, 34.8, 148, 720 }, + [10] = { 55.5, 34.7, 148, 720 }, + [11] = { 56.3, 34.6, 148, 720 }, + [12] = { 57, 34.4, 148, 720 }, + [13] = { 55.1, 34.2, 148, 720 }, + [14] = { 55.6, 34.1, 148, 720 }, + [15] = { 56.7, 33.7, 148, 720 }, + [16] = { 55, 33.5, 148, 720 }, + [17] = { 55, 32.9, 148, 720 }, + [18] = { 39.7, 10.6, 361, 720 }, + [19] = { 40.5, 10.4, 361, 720 }, + [20] = { 40.5, 9.5, 361, 720 }, + [21] = { 40.7, 9.5, 361, 720 }, + [22] = { 55, 33.4, 148, 0 }, + }, + ["lvl"] = "15-16", + }, + [2180] = { + ["coords"] = { + [1] = { 55, 37, 148, 720 }, + [2] = { 55.2, 36.5, 148, 720 }, + [3] = { 54.7, 36.2, 148, 720 }, + [4] = { 55.6, 36.2, 148, 720 }, + [5] = { 55.4, 36, 148, 720 }, + [6] = { 55.2, 35.7, 148, 720 }, + [7] = { 55.7, 35.2, 148, 720 }, + [8] = { 56.5, 35, 148, 720 }, + [9] = { 55.2, 34.8, 148, 720 }, + [10] = { 56.6, 34.8, 148, 720 }, + [11] = { 56.7, 34.8, 148, 720 }, + [12] = { 55.8, 34.7, 148, 720 }, + [13] = { 55, 34.7, 148, 720 }, + [14] = { 55.3, 34.5, 148, 720 }, + [15] = { 55.8, 34.3, 148, 720 }, + [16] = { 56.5, 34.2, 148, 720 }, + [17] = { 57, 33.9, 148, 720 }, + [18] = { 55.2, 33.8, 148, 720 }, + [19] = { 54.7, 33.4, 148, 720 }, + [20] = { 40, 10.8, 361, 720 }, + [21] = { 40.3, 10.3, 361, 720 }, + [22] = { 39.7, 9.9, 361, 720 }, + [23] = { 40.8, 9.9, 361, 720 }, + [24] = { 40.5, 9.7, 361, 720 }, + [25] = { 40.9, 8.8, 361, 720 }, + [26] = { 41.8, 8.6, 361, 720 }, + }, + ["lvl"] = "16-17", + }, + [2181] = { + ["coords"] = { + [1] = { 58.6, 25, 148, 413 }, + [2] = { 59.5, 24.9, 148, 413 }, + [3] = { 59, 24.8, 148, 413 }, + [4] = { 58.1, 24.6, 148, 413 }, + [5] = { 57.7, 24.4, 148, 413 }, + [6] = { 58.9, 24.2, 148, 413 }, + [7] = { 58.2, 23.8, 148, 413 }, + [8] = { 57.3, 23.6, 148, 413 }, + [9] = { 58.5, 23.6, 148, 413 }, + [10] = { 59.3, 23.6, 148, 413 }, + [11] = { 60.3, 23.6, 148, 413 }, + [12] = { 60.6, 23, 148, 413 }, + [13] = { 57.3, 22.8, 148, 413 }, + [14] = { 58.2, 22.6, 148, 413 }, + [15] = { 56.8, 22.5, 148, 413 }, + [16] = { 59.9, 21.9, 148, 413 }, + [17] = { 57.3, 21.8, 148, 413 }, + [18] = { 59.4, 21.7, 148, 413 }, + [19] = { 58.5, 21.3, 148, 413 }, + [20] = { 57.7, 21.3, 148, 413 }, + [21] = { 58.9, 20.9, 148, 413 }, + [22] = { 57.3, 20.9, 148, 413 }, + [23] = { 58, 20.5, 148, 413 }, + [24] = { 57.2, 19.6, 148, 413 }, + [25] = { 58.7, 19.6, 148, 413 }, + [26] = { 57.9, 19.3, 148, 413 }, + [27] = { 58.2, 18.8, 148, 413 }, + [28] = { 61.1, 17, 148, 413 }, + [29] = { 60.7, 16.8, 148, 413 }, + [30] = { 60.2, 16.7, 148, 413 }, + [31] = { 59.8, 16.5, 148, 413 }, + [32] = { 60.4, 15.6, 148, 413 }, + [33] = { 60.1, 15.4, 148, 413 }, + [34] = { 59.5, 14.6, 148, 413 }, + }, + ["lvl"] = "18-19", + }, + [2182] = { + ["coords"] = { + [1] = { 58.5, 24.7, 148, 413 }, + [2] = { 58.3, 24.4, 148, 413 }, + [3] = { 59.4, 24.2, 148, 413 }, + [4] = { 59.8, 23.5, 148, 413 }, + [5] = { 58.5, 23, 148, 413 }, + [6] = { 60.1, 22.9, 148, 413 }, + [7] = { 59.9, 22.5, 148, 413 }, + [8] = { 61.6, 22.4, 148, 413 }, + [9] = { 61, 22.3, 148, 413 }, + [10] = { 58.7, 22.1, 148, 413 }, + [11] = { 57.8, 21.9, 148, 413 }, + [12] = { 57, 21.7, 148, 413 }, + [13] = { 61.6, 21.2, 148, 413 }, + [14] = { 62, 21, 148, 413 }, + [15] = { 58.7, 20.4, 148, 413 }, + [16] = { 58, 20, 148, 413 }, + [17] = { 59.9, 19.9, 148, 413 }, + [18] = { 61.8, 19.5, 148, 413 }, + [19] = { 57.4, 19.4, 148, 413 }, + [20] = { 60, 18.9, 148, 413 }, + [21] = { 61.4, 17.3, 148, 413 }, + [22] = { 60.2, 16.1, 148, 413 }, + [23] = { 59.5, 15.4, 148, 413 }, + }, + ["lvl"] = "19-20", + }, + [2183] = { + ["coords"] = { + [1] = { 61.1, 23.1, 148, 413 }, + [2] = { 60.3, 22.3, 148, 413 }, + [3] = { 61.3, 22.1, 148, 413 }, + [4] = { 62, 22, 148, 413 }, + [5] = { 60.6, 21.8, 148, 413 }, + [6] = { 61, 21.5, 148, 413 }, + [7] = { 62, 21.4, 148, 413 }, + [8] = { 61.3, 20.8, 148, 413 }, + [9] = { 62.2, 20.5, 148, 413 }, + [10] = { 60.3, 20.2, 148, 413 }, + [11] = { 61.7, 20, 148, 413 }, + [12] = { 61.2, 19.8, 148, 413 }, + [13] = { 60.5, 19.6, 148, 413 }, + [14] = { 61.4, 19.2, 148, 413 }, + [15] = { 60.5, 18.9, 148, 413 }, + [16] = { 60.1, 18.8, 148, 413 }, + [17] = { 61.2, 18.6, 148, 413 }, + [18] = { 61.4, 18.1, 148, 413 }, + [19] = { 61, 17.7, 148, 413 }, + }, + ["lvl"] = "20-21", + }, + [2184] = { + ["coords"] = { + [1] = { 42.9, 61.1, 148, 9000 }, + }, + ["lvl"] = "17", + ["rnk"] = "4", + }, + [2185] = { + ["coords"] = { + [1] = { 31.5, 60.3, 148, 413 }, + [2] = { 31.9, 60, 148, 413 }, + [3] = { 33.4, 60, 148, 413 }, + [4] = { 33.9, 59.3, 148, 413 }, + [5] = { 30.8, 59.2, 148, 413 }, + [6] = { 34, 58.9, 148, 413 }, + [7] = { 34.6, 58.8, 148, 413 }, + [8] = { 32.7, 58.5, 148, 413 }, + [9] = { 32.1, 58.3, 148, 413 }, + [10] = { 35.5, 57.6, 148, 413 }, + [11] = { 32.4, 57, 148, 413 }, + [12] = { 31.4, 56.8, 148, 413 }, + [13] = { 34.4, 56.5, 148, 413 }, + [14] = { 30.9, 55.4, 148, 413 }, + [15] = { 34.6, 53.7, 148, 413 }, + [16] = { 34.9, 52.7, 148, 413 }, + [17] = { 29.5, 46.3, 148, 413 }, + [18] = { 32.3, 43.2, 148, 413 }, + [19] = { 33.6, 41.6, 148, 413 }, + [20] = { 32.6, 41.2, 148, 413 }, + [21] = { 33.2, 40.2, 148, 413 }, + [22] = { 33.9, 40, 148, 413 }, + [23] = { 32, 39.4, 148, 413 }, + [24] = { 32.2, 38.5, 148, 413 }, + [25] = { 31.8, 38.5, 148, 413 }, + [26] = { 33.8, 38.4, 148, 413 }, + [27] = { 35.8, 38.2, 148, 413 }, + [28] = { 34.9, 37.1, 148, 413 }, + [29] = { 34.4, 37, 148, 413 }, + [30] = { 36, 36.5, 148, 413 }, + [31] = { 34.6, 36.1, 148, 413 }, + [32] = { 32.5, 36, 148, 413 }, + [33] = { 32.7, 35.9, 148, 413 }, + [34] = { 33.6, 35.7, 148, 413 }, + [35] = { 33.6, 35.6, 148, 413 }, + [36] = { 34.5, 35.4, 148, 413 }, + [37] = { 33.9, 34.2, 148, 413 }, + [38] = { 35, 34, 148, 413 }, + [39] = { 32.5, 33.9, 148, 413 }, + [40] = { 33.5, 32.6, 148, 413 }, + [41] = { 33.8, 31.1, 148, 413 }, + [42] = { 34.9, 31.1, 148, 413 }, + [43] = { 36.1, 30.9, 148, 413 }, + [44] = { 39.7, 29.8, 148, 413 }, + [45] = { 34.4, 29.6, 148, 413 }, + [46] = { 35.4, 29.5, 148, 413 }, + [47] = { 36.4, 29.2, 148, 413 }, + [48] = { 33.6, 28.7, 148, 413 }, + [49] = { 35.9, 28.1, 148, 413 }, + [50] = { 36.8, 27.6, 148, 413 }, + [51] = { 35.9, 24.2, 148, 413 }, + }, + ["lvl"] = "12-14", + }, + [2186] = { + ["coords"] = { + [1] = { 40.4, 56.5, 148, 7200 }, + }, + ["lvl"] = "16", + ["rnk"] = "4", + }, + [2187] = { + ["coords"] = { + [1] = { 30, 88.7, 148, 413 }, + [2] = { 30.6, 88.2, 148, 413 }, + [3] = { 33, 86, 148, 413 }, + [4] = { 30.4, 85.1, 148, 413 }, + [5] = { 30.7, 84.8, 148, 413 }, + [6] = { 30.9, 82.7, 148, 413 }, + [7] = { 31.5, 82, 148, 413 }, + [8] = { 30.9, 81.3, 148, 413 }, + [9] = { 30.8, 80.4, 148, 413 }, + [10] = { 30.8, 79.2, 148, 413 }, + [11] = { 30.4, 79, 148, 413 }, + [12] = { 30.5, 76.5, 148, 413 }, + [13] = { 30.2, 74.4, 148, 413 }, + [14] = { 31, 72.9, 148, 413 }, + [15] = { 51.6, 18.8, 148, 413 }, + [16] = { 47.7, 18.6, 148, 413 }, + [17] = { 53.8, 17.1, 148, 413 }, + [18] = { 48.8, 12.8, 148, 413 }, + [19] = { 48.4, 12.5, 148, 413 }, + [20] = { 49.3, 12.1, 148, 413 }, + [21] = { 48.3, 11.7, 148, 413 }, + [22] = { 49.4, 11.3, 148, 413 }, + [23] = { 48.6, 10.9, 148, 413 }, + [24] = { 49.2, 10.5, 148, 413 }, + [25] = { 55.9, 10.5, 148, 413 }, + [26] = { 57.7, 9.6, 148, 413 }, + [27] = { 49.4, 9.4, 148, 413 }, + }, + ["lvl"] = "16-18", + }, + [2188] = { + ["coords"] = { + [1] = { 58.6, 6.3, 148, 300 }, + [2] = { 59.1, 4.4, 148, 300 }, + [3] = { 61.6, 4.3, 148, 300 }, + [4] = { 63.4, 3.1, 148, 300 }, + [5] = { 59.3, 2.9, 148, 300 }, + [6] = { 59.7, 2.5, 148, 300 }, + [7] = { 62, 1.8, 148, 300 }, + [8] = { 61.7, 1.1, 148, 300 }, + [9] = { 63.7, 1.1, 148, 300 }, + }, + ["lvl"] = "23-25", + }, + [2189] = { + ["coords"] = { + [1] = { 44.8, 39.8, 148, 413 }, + [2] = { 44.9, 39, 148, 413 }, + [3] = { 44.5, 39, 148, 413 }, + [4] = { 44.7, 38.6, 148, 413 }, + [5] = { 44.1, 38.5, 148, 413 }, + [6] = { 44.4, 38.1, 148, 413 }, + [7] = { 45.1, 37.9, 148, 413 }, + [8] = { 44.7, 37.7, 148, 413 }, + [9] = { 44.4, 37.5, 148, 413 }, + [10] = { 44.7, 37.1, 148, 413 }, + [11] = { 47, 37.1, 148, 413 }, + [12] = { 44.6, 36.6, 148, 413 }, + [13] = { 46.1, 36.5, 148, 413 }, + [14] = { 45.2, 36.3, 148, 413 }, + [15] = { 44.8, 36.2, 148, 413 }, + [16] = { 46.9, 36.2, 148, 413 }, + [17] = { 47.5, 36.1, 148, 413 }, + }, + ["lvl"] = "10-11", + }, + [2190] = { + ["coords"] = { + [1] = { 45.8, 40.2, 148, 413 }, + [2] = { 45.4, 40, 148, 413 }, + [3] = { 45.9, 39.6, 148, 413 }, + [4] = { 46.3, 39.6, 148, 413 }, + [5] = { 45.3, 39.4, 148, 413 }, + [6] = { 46.9, 39.2, 148, 413 }, + [7] = { 46, 39.1, 148, 413 }, + [8] = { 45.6, 38.8, 148, 413 }, + [9] = { 45.3, 38.7, 148, 413 }, + [10] = { 46.5, 38.7, 148, 413 }, + [11] = { 46.9, 38.6, 148, 413 }, + [12] = { 46, 38.3, 148, 413 }, + [13] = { 47.2, 38.2, 148, 413 }, + [14] = { 46.5, 38.1, 148, 413 }, + [15] = { 46.2, 37.9, 148, 413 }, + [16] = { 47.5, 37.7, 148, 413 }, + [17] = { 47.2, 37.6, 148, 413 }, + [18] = { 47.8, 37.5, 148, 413 }, + [19] = { 47.4, 37.1, 148, 413 }, + [20] = { 46.7, 36.9, 148, 413 }, + [21] = { 47.9, 36.7, 148, 413 }, + [22] = { 48.2, 36.6, 148, 413 }, + [23] = { 45.6, 36.2, 148, 413 }, + }, + ["lvl"] = "11-12", + }, + [2191] = { + ["coords"] = { + [1] = { 45.7, 36.4, 148, 5400 }, + }, + ["lvl"] = "14", + ["rnk"] = "4", + }, + [2192] = { + ["coords"] = { + [1] = { 38.7, 87.6, 148, 14400 }, + }, + ["lvl"] = "19", + ["rnk"] = "4", + }, + [2197] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "3", + }, + [2198] = { + ["coords"] = { + [1] = { 47.4, 64.2, 1519, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "3", + }, + [2199] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "3", + }, + [2200] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "3", + }, + [2201] = { + ["coords"] = { + [1] = { 36.4, 51.1, 148, 413 }, + [2] = { 36.6, 51, 148, 413 }, + [3] = { 36.2, 51, 148, 413 }, + [4] = { 36, 50.8, 148, 413 }, + [5] = { 36.4, 50.7, 148, 413 }, + [6] = { 36.1, 50.6, 148, 413 }, + }, + ["lvl"] = "11-12", + }, + [2202] = { + ["coords"] = { + [1] = { 37.3, 62.3, 148, 413 }, + [2] = { 36.9, 62.2, 148, 413 }, + [3] = { 36.8, 62, 148, 413 }, + [4] = { 37.1, 61.8, 148, 413 }, + [5] = { 36.8, 61.7, 148, 413 }, + [6] = { 36.9, 61.7, 148, 413 }, + [7] = { 42.2, 32.2, 148, 413 }, + [8] = { 41.9, 32, 148, 413 }, + [9] = { 42.1, 31.7, 148, 413 }, + [10] = { 41.8, 31.6, 148, 413 }, + [11] = { 41.7, 31.2, 148, 413 }, + [12] = { 42, 31.1, 148, 413 }, + [13] = { 41.9, 30.9, 148, 413 }, + [14] = { 38.9, 30.3, 148, 413 }, + [15] = { 38.3, 29.8, 148, 413 }, + [16] = { 38.8, 29.8, 148, 413 }, + [17] = { 38.7, 29.6, 148, 413 }, + [18] = { 38.8, 29.6, 148, 413 }, + [19] = { 38.7, 29.5, 148, 413 }, + [20] = { 38.7, 29.2, 148, 413 }, + [21] = { 38.5, 29, 148, 413 }, + [22] = { 38.6, 29, 148, 413 }, + [23] = { 38.3, 28.9, 148, 413 }, + [24] = { 38.1, 28.5, 148, 413 }, + [25] = { 40, 28.1, 148, 413 }, + [26] = { 39.3, 27.8, 148, 413 }, + [27] = { 39.8, 27.5, 148, 413 }, + [28] = { 40.1, 27.4, 148, 413 }, + [29] = { 40.3, 27.4, 148, 413 }, + [30] = { 39.9, 27.3, 148, 413 }, + [31] = { 40.1, 27.3, 148, 413 }, + [32] = { 39.7, 27.2, 148, 413 }, + [33] = { 40.3, 27.2, 148, 413 }, + [34] = { 40.9, 26.9, 148, 413 }, + [35] = { 40, 26.5, 148, 413 }, + [36] = { 38.7, 21.8, 148, 413 }, + [37] = { 36.4, 51.1, 148, 413 }, + [38] = { 36.6, 51, 148, 413 }, + [39] = { 36.2, 51, 148, 413 }, + [40] = { 36, 50.8, 148, 413 }, + [41] = { 36.4, 50.7, 148, 413 }, + [42] = { 36.1, 50.6, 148, 413 }, + }, + ["lvl"] = "12-13", + }, + [2203] = { + ["coords"] = { + [1] = { 35.8, 71.3, 148, 413 }, + [2] = { 36.2, 71, 148, 413 }, + [3] = { 36, 70.5, 148, 413 }, + [4] = { 38.2, 28.8, 148, 413 }, + [5] = { 37.3, 62.3, 148, 413 }, + [6] = { 36.9, 62.2, 148, 413 }, + [7] = { 36.8, 62, 148, 413 }, + [8] = { 37.1, 61.8, 148, 413 }, + [9] = { 36.8, 61.7, 148, 413 }, + [10] = { 36.9, 61.7, 148, 413 }, + [11] = { 42.2, 32.2, 148, 413 }, + [12] = { 41.9, 32, 148, 413 }, + [13] = { 42.1, 31.7, 148, 413 }, + [14] = { 41.8, 31.6, 148, 413 }, + [15] = { 41.7, 31.2, 148, 413 }, + [16] = { 42, 31.1, 148, 413 }, + [17] = { 41.9, 30.9, 148, 413 }, + [18] = { 38.9, 30.3, 148, 413 }, + [19] = { 38.3, 29.8, 148, 413 }, + [20] = { 38.8, 29.8, 148, 413 }, + [21] = { 38.7, 29.6, 148, 413 }, + [22] = { 38.8, 29.6, 148, 413 }, + [23] = { 38.7, 29.5, 148, 413 }, + [24] = { 38.7, 29.2, 148, 413 }, + [25] = { 38.5, 29, 148, 413 }, + [26] = { 38.6, 29, 148, 413 }, + [27] = { 38.3, 28.9, 148, 413 }, + [28] = { 38.1, 28.5, 148, 413 }, + [29] = { 40, 28.1, 148, 413 }, + [30] = { 39.3, 27.8, 148, 413 }, + [31] = { 39.8, 27.5, 148, 413 }, + [32] = { 40.1, 27.4, 148, 413 }, + [33] = { 40.3, 27.4, 148, 413 }, + [34] = { 39.9, 27.3, 148, 413 }, + [35] = { 40.1, 27.3, 148, 413 }, + [36] = { 39.7, 27.2, 148, 413 }, + [37] = { 40.3, 27.2, 148, 413 }, + [38] = { 40.9, 26.9, 148, 413 }, + [39] = { 40, 26.5, 148, 413 }, + [40] = { 38.7, 21.8, 148, 413 }, + }, + ["lvl"] = "13-14", + }, + [2204] = { + ["coords"] = { + [1] = { 35.7, 71.6, 148, 413 }, + [2] = { 35.9, 71.4, 148, 413 }, + [3] = { 35.9, 71.1, 148, 413 }, + [4] = { 36.2, 70.7, 148, 413 }, + [5] = { 44.1, 21, 148, 413 }, + [6] = { 44.3, 20.8, 148, 413 }, + [7] = { 43.8, 20.7, 148, 413 }, + [8] = { 44.2, 20.4, 148, 413 }, + [9] = { 43.8, 20.3, 148, 413 }, + [10] = { 44.1, 20.2, 148, 413 }, + [11] = { 43.9, 20.1, 148, 413 }, + [12] = { 35.8, 71.3, 148, 413 }, + [13] = { 36.2, 71, 148, 413 }, + [14] = { 36, 70.5, 148, 413 }, + }, + ["lvl"] = "14-15", + }, + [2205] = { + ["coords"] = { + [1] = { 33.2, 81.4, 148, 413 }, + [2] = { 33, 81.2, 148, 413 }, + [3] = { 32.5, 80.9, 148, 413 }, + [4] = { 32.9, 80.8, 148, 413 }, + [5] = { 32.6, 80.4, 148, 413 }, + [6] = { 32.5, 80.2, 148, 413 }, + [7] = { 36.7, 76.9, 148, 413 }, + [8] = { 36.5, 76.8, 148, 413 }, + [9] = { 36.7, 76.6, 148, 413 }, + [10] = { 36.4, 76.5, 148, 413 }, + [11] = { 36.5, 76.4, 148, 360 }, + [12] = { 36.8, 76.3, 148, 413 }, + [13] = { 36.5, 76.2, 148, 413 }, + [14] = { 44.1, 21, 148, 413 }, + [15] = { 44.3, 20.8, 148, 413 }, + [16] = { 43.8, 20.7, 148, 413 }, + [17] = { 44.2, 20.4, 148, 413 }, + [18] = { 43.8, 20.3, 148, 413 }, + [19] = { 44.1, 20.2, 148, 413 }, + [20] = { 43.9, 20.1, 148, 413 }, + }, + ["lvl"] = "15-16", + }, + [2206] = { + ["coords"] = { + [1] = { 33.2, 81.4, 148, 413 }, + [2] = { 33, 81.2, 148, 413 }, + [3] = { 32.5, 80.9, 148, 413 }, + [4] = { 32.9, 80.8, 148, 413 }, + [5] = { 32.6, 80.4, 148, 413 }, + [6] = { 36.7, 76.9, 148, 413 }, + [7] = { 36.5, 76.8, 148, 413 }, + [8] = { 36.7, 76.6, 148, 413 }, + [9] = { 36.4, 76.5, 148, 413 }, + [10] = { 36.5, 76.4, 148, 360 }, + [11] = { 36.8, 76.3, 148, 413 }, + [12] = { 36.5, 76.2, 148, 413 }, + }, + ["lvl"] = "16-17", + }, + [2207] = { + ["coords"] = { + [1] = { 31.5, 87.9, 148, 413 }, + [2] = { 31.3, 87.9, 148, 413 }, + [3] = { 31.1, 87.9, 148, 413 }, + [4] = { 31, 87.7, 148, 413 }, + [5] = { 31.4, 87.5, 148, 413 }, + [6] = { 31.1, 87.2, 148, 413 }, + [7] = { 31.4, 87.2, 148, 413 }, + [8] = { 31.2, 85.8, 148, 413 }, + [9] = { 31, 85.7, 148, 413 }, + [10] = { 30.9, 85.6, 148, 413 }, + [11] = { 31.3, 85.5, 148, 413 }, + [12] = { 31, 85.3, 148, 413 }, + [13] = { 31.1, 85.2, 148, 413 }, + [14] = { 31.6, 83.9, 148, 413 }, + [15] = { 31.4, 83.9, 148, 413 }, + [16] = { 31.8, 83.8, 148, 413 }, + [17] = { 31.7, 83.5, 148, 413 }, + [18] = { 31.3, 83.5, 148, 413 }, + [19] = { 31.6, 83.3, 148, 413 }, + [20] = { 31.4, 83.2, 148, 413 }, + [21] = { 55.2, 12.9, 148, 413 }, + [22] = { 55.5, 12.6, 148, 413 }, + [23] = { 55.3, 12.6, 148, 413 }, + [24] = { 55, 12.5, 148, 413 }, + [25] = { 54.8, 12.2, 148, 413 }, + [26] = { 55.2, 12.2, 148, 413 }, + [27] = { 55, 12.1, 148, 413 }, + [28] = { 54.9, 11.9, 148, 413 }, + [29] = { 54.7, 11.8, 148, 413 }, + [30] = { 54.9, 11.6, 148, 413 }, + }, + ["lvl"] = "18-19", + }, + [2208] = { + ["coords"] = { + [1] = { 31.5, 87.9, 148, 413 }, + [2] = { 31.3, 87.9, 148, 413 }, + [3] = { 31.1, 87.9, 148, 413 }, + [4] = { 31, 87.7, 148, 413 }, + [5] = { 31.4, 87.5, 148, 413 }, + [6] = { 31.1, 87.2, 148, 413 }, + [7] = { 31.4, 87.2, 148, 413 }, + [8] = { 31.2, 85.8, 148, 413 }, + [9] = { 31, 85.7, 148, 413 }, + [10] = { 30.9, 85.6, 148, 413 }, + [11] = { 31.3, 85.5, 148, 413 }, + [12] = { 31, 85.3, 148, 413 }, + [13] = { 31.1, 85.2, 148, 413 }, + [14] = { 31.6, 83.9, 148, 413 }, + [15] = { 31.4, 83.9, 148, 413 }, + [16] = { 31.8, 83.8, 148, 413 }, + [17] = { 31.7, 83.5, 148, 413 }, + [18] = { 31.3, 83.5, 148, 413 }, + [19] = { 31.6, 83.3, 148, 413 }, + [20] = { 31.4, 83.2, 148, 413 }, + [21] = { 55.2, 12.9, 148, 413 }, + [22] = { 55.5, 12.6, 148, 413 }, + [23] = { 55.3, 12.6, 148, 413 }, + [24] = { 55, 12.5, 148, 413 }, + [25] = { 54.8, 12.2, 148, 413 }, + [26] = { 55.2, 12.2, 148, 413 }, + [27] = { 55, 12.1, 148, 413 }, + [28] = { 54.9, 11.9, 148, 413 }, + [29] = { 54.7, 11.8, 148, 413 }, + [30] = { 54.9, 11.6, 148, 413 }, + }, + ["lvl"] = "19-20", + }, + [2209] = { + ["coords"] = { + [1] = { 61.7, 51.4, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "24", + }, + [2210] = { + ["coords"] = { + [1] = { 61.7, 51.2, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "24", + }, + [2211] = { + ["coords"] = { + [1] = { 61.9, 51.4, 85, 10 }, + }, + ["fac"] = "H", + ["lvl"] = "9", + }, + [2212] = { + ["coords"] = { + [1] = { 45.4, 39.7, 148, 413 }, + [2] = { 46.6, 39.2, 148, 413 }, + [3] = { 47.3, 37.7, 148, 413 }, + [4] = { 47.9, 37.1, 148, 413 }, + [5] = { 47.4, 36.8, 148, 413 }, + [6] = { 45.4, 36.5, 148, 413 }, + }, + ["lvl"] = "12-13", + }, + [2213] = { + ["coords"] = {}, + ["lvl"] = "13-14", + }, + [2214] = { + ["coords"] = { + [1] = { 20.8, 47.4, 267, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [2215] = { + ["coords"] = { + [1] = { 61.1, 82.1, 36, 600 }, + [2] = { 62.3, 20.3, 267, 600 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [2216] = { + ["coords"] = { + [1] = { 60.1, 80.7, 36, 300 }, + [2] = { 61.4, 19.1, 267, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [2217] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "1", + }, + [2218] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "1", + }, + [2219] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "1", + }, + [2220] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "1", + }, + [2221] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "1", + }, + [2222] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "1", + }, + [2223] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "1", + }, + [2224] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "29", + }, + [2225] = { + ["coords"] = { + [1] = { 50.1, 82.1, 2597, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [2226] = { + ["coords"] = { + [1] = { 45.6, 42.6, 130, 600 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [2227] = { + ["coords"] = { + [1] = { 74.5, 13.9, 130, 300 }, + [2] = { 57.6, 93.8, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [2228] = { + ["coords"] = { + [1] = { 51.5, 58.4, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [2229] = { + ["coords"] = { + [1] = { 62.2, 82.5, 36, 300 }, + [2] = { 63.2, 20.7, 267, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [2230] = { + ["coords"] = { + [1] = { 60.2, 80.8, 36, 120 }, + [2] = { 61.5, 19.2, 267, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "1", + }, + [2231] = { + ["coords"] = { + [1] = { 35.4, 51.2, 148, 413 }, + [2] = { 35.6, 50.7, 148, 413 }, + [3] = { 35.7, 50, 148, 413 }, + [4] = { 36.5, 50, 148, 413 }, + [5] = { 36, 49.9, 148, 413 }, + [6] = { 35.4, 49.4, 148, 413 }, + [7] = { 35.1, 49.4, 148, 413 }, + [8] = { 36.5, 49.1, 148, 413 }, + [9] = { 36.4, 49.1, 148, 413 }, + [10] = { 35.1, 48.5, 148, 413 }, + [11] = { 36.7, 48.4, 148, 413 }, + [12] = { 35.9, 48.3, 148, 413 }, + [13] = { 35.6, 48.1, 148, 413 }, + [14] = { 34.7, 48, 148, 413 }, + [15] = { 36.4, 47.8, 148, 413 }, + [16] = { 35.4, 47.5, 148, 413 }, + [17] = { 35.6, 47.1, 148, 413 }, + [18] = { 36, 46.9, 148, 413 }, + [19] = { 35, 46.7, 148, 413 }, + [20] = { 35.3, 46.2, 148, 413 }, + [21] = { 35.9, 45.9, 148, 413 }, + [22] = { 35.5, 44.7, 148, 413 }, + [23] = { 36.2, 44.5, 148, 413 }, + [24] = { 35, 44.4, 148, 413 }, + [25] = { 35.2, 43, 148, 413 }, + [26] = { 36.8, 41.8, 148, 413 }, + [27] = { 35.9, 41.3, 148, 413 }, + [28] = { 35.5, 41.2, 148, 413 }, + [29] = { 37.2, 40.6, 148, 413 }, + [30] = { 36.9, 40.5, 148, 413 }, + [31] = { 36.3, 40.4, 148, 413 }, + [32] = { 37.4, 40.3, 148, 413 }, + [33] = { 36.1, 39.8, 148, 413 }, + [34] = { 37.4, 39.7, 148, 413 }, + [35] = { 36.5, 39.4, 148, 413 }, + [36] = { 36.4, 38.8, 148, 413 }, + [37] = { 37.2, 38.7, 148, 413 }, + [38] = { 36.4, 37.7, 148, 413 }, + [39] = { 36.5, 37.5, 148, 413 }, + [40] = { 37.1, 37.1, 148, 413 }, + [41] = { 36.6, 36.8, 148, 413 }, + [42] = { 37, 36.6, 148, 413 }, + [43] = { 36.7, 36.3, 148, 413 }, + [44] = { 36.8, 35.9, 148, 413 }, + [45] = { 37.7, 35.8, 148, 413 }, + [46] = { 37, 35.5, 148, 413 }, + }, + ["lvl"] = "9-10", + }, + [2232] = { + ["coords"] = { + [1] = { 36.6, 69.8, 148, 413 }, + [2] = { 35.5, 68.9, 148, 413 }, + [3] = { 36.7, 68.2, 148, 413 }, + [4] = { 37.1, 67.2, 148, 413 }, + [5] = { 36.9, 66.6, 148, 413 }, + [6] = { 36.4, 65.9, 148, 413 }, + [7] = { 36.7, 65.8, 148, 413 }, + [8] = { 35.6, 65.8, 148, 413 }, + [9] = { 35.5, 65.2, 148, 413 }, + [10] = { 35.8, 64.6, 148, 413 }, + [11] = { 36.3, 63.2, 148, 413 }, + [12] = { 36, 62.7, 148, 413 }, + [13] = { 41.6, 30.1, 148, 413 }, + [14] = { 42.1, 29.4, 148, 413 }, + [15] = { 41.2, 28.6, 148, 413 }, + [16] = { 42.3, 28.3, 148, 413 }, + [17] = { 41.5, 26.9, 148, 413 }, + [18] = { 41.9, 26.8, 148, 413 }, + [19] = { 41.6, 25.3, 148, 413 }, + [20] = { 42.1, 24.8, 148, 413 }, + [21] = { 41.6, 24.2, 148, 413 }, + [22] = { 42.6, 23.2, 148, 413 }, + [23] = { 41.7, 23, 148, 413 }, + [24] = { 42.3, 22.6, 148, 413 }, + [25] = { 42.2, 21, 148, 413 }, + [26] = { 42.8, 20.6, 148, 413 }, + [27] = { 43.1, 19.8, 148, 413 }, + }, + ["lvl"] = "12-14", + }, + [2233] = { + ["coords"] = { + [1] = { 32.3, 83.7, 148, 413 }, + [2] = { 32.9, 82.9, 148, 413 }, + [3] = { 31.7, 81.9, 148, 413 }, + [4] = { 32.7, 81.4, 148, 413 }, + [5] = { 32, 80.7, 148, 413 }, + [6] = { 52.3, 23.3, 148, 413 }, + [7] = { 51.3, 23.2, 148, 413 }, + [8] = { 51.8, 22.5, 148, 413 }, + [9] = { 51.7, 21, 148, 413 }, + [10] = { 52.2, 20.9, 148, 413 }, + [11] = { 52.8, 19.5, 148, 413 }, + [12] = { 54, 18.9, 148, 413 }, + [13] = { 52.2, 18.6, 148, 413 }, + [14] = { 53.3, 18.6, 148, 413 }, + [15] = { 52.8, 17.8, 148, 413 }, + }, + ["lvl"] = "18-20", + }, + [2234] = { + ["coords"] = { + [1] = { 35.1, 56.1, 148, 413 }, + [2] = { 35.2, 54.4, 148, 413 }, + [3] = { 34.9, 54.4, 148, 413 }, + [4] = { 34.5, 53.7, 148, 413 }, + [5] = { 35.9, 53.7, 148, 413 }, + [6] = { 35.2, 52.7, 148, 413 }, + [7] = { 36.5, 52.2, 148, 413 }, + [8] = { 37, 34.3, 148, 413 }, + [9] = { 37.8, 33.9, 148, 413 }, + [10] = { 37.4, 32.9, 148, 413 }, + [11] = { 38.1, 32.4, 148, 413 }, + [12] = { 40.6, 31.8, 148, 413 }, + [13] = { 39.5, 31.5, 148, 413 }, + [14] = { 38.5, 31.5, 148, 413 }, + [15] = { 40.2, 31.4, 148, 413 }, + [16] = { 40.9, 31.1, 148, 413 }, + [17] = { 38.9, 30.7, 148, 413 }, + }, + ["lvl"] = "10-11", + }, + [2235] = { + ["coords"] = { + [1] = { 35.5, 77.5, 148, 413 }, + [2] = { 36, 75.2, 148, 413 }, + [3] = { 35.7, 73.6, 148, 413 }, + [4] = { 35.8, 72.8, 148, 413 }, + [5] = { 35.2, 72.4, 148, 413 }, + [6] = { 34.9, 72.3, 148, 413 }, + [7] = { 50.8, 22.5, 148, 413 }, + [8] = { 50.6, 22.4, 148, 413 }, + [9] = { 44.8, 21.8, 148, 413 }, + [10] = { 47.6, 21.5, 148, 413 }, + [11] = { 46.5, 21, 148, 413 }, + [12] = { 48.2, 21, 148, 413 }, + [13] = { 45.5, 20.7, 148, 413 }, + [14] = { 48.3, 20.7, 148, 413 }, + [15] = { 46.1, 20.6, 148, 413 }, + [16] = { 46.8, 20.3, 148, 413 }, + [17] = { 48.9, 20.1, 148, 413 }, + [18] = { 45.4, 20, 148, 413 }, + }, + ["lvl"] = "15-17", + }, + [2236] = { + ["coords"] = { + [1] = { 29.8, 91.1, 148, 300 }, + [2] = { 29.7, 91.1, 148, 300 }, + [3] = { 29.5, 90.8, 148, 300 }, + [4] = { 28.6, 90.8, 148, 300 }, + [5] = { 30.6, 90.5, 148, 300 }, + [6] = { 29.6, 90.4, 148, 300 }, + [7] = { 30.6, 89.7, 148, 300 }, + [8] = { 29.7, 89.6, 148, 300 }, + [9] = { 31.4, 89.6, 148, 300 }, + [10] = { 32.9, 89, 148, 300 }, + [11] = { 31, 89, 148, 300 }, + [12] = { 55.5, 19.2, 148, 300 }, + [13] = { 54.8, 18.3, 148, 300 }, + [14] = { 56, 17.5, 148, 300 }, + [15] = { 55.3, 17.1, 148, 300 }, + [16] = { 56.4, 17, 148, 300 }, + [17] = { 55.8, 16.6, 148, 300 }, + [18] = { 56.4, 16.3, 148, 300 }, + [19] = { 56, 14.9, 148, 300 }, + [20] = { 57.5, 14.5, 148, 300 }, + [21] = { 56.3, 14.5, 148, 300 }, + [22] = { 56.9, 13.1, 148, 300 }, + [23] = { 56.4, 12.5, 148, 300 }, + [24] = { 56.6, 11.4, 148, 300 }, + [25] = { 12.3, 8.3, 331, 300 }, + [26] = { 12.2, 8.2, 331, 300 }, + [27] = { 12, 8, 331, 300 }, + [28] = { 11, 7.9, 331, 300 }, + [29] = { 13.2, 7.6, 331, 300 }, + [30] = { 12, 7.4, 331, 300 }, + [31] = { 13.2, 6.6, 331, 300 }, + [32] = { 12.2, 6.6, 331, 300 }, + [33] = { 14.2, 6.5, 331, 300 }, + }, + ["lvl"] = "20-21", + }, + [2237] = { + ["coords"] = { + [1] = { 39.3, 94.5, 148, 413 }, + [2] = { 44.7, 92, 148, 413 }, + [3] = { 37.5, 92, 148, 413 }, + [4] = { 36.6, 91.5, 148, 413 }, + [5] = { 40.4, 90.8, 148, 413 }, + [6] = { 38.5, 90.5, 148, 413 }, + [7] = { 42.6, 88.2, 148, 413 }, + [8] = { 37.6, 83.9, 148, 413 }, + [9] = { 41.7, 83.3, 148, 413 }, + [10] = { 43.8, 83.1, 148, 413 }, + [11] = { 43.2, 82.8, 148, 413 }, + [12] = { 36.2, 82.1, 148, 413 }, + [13] = { 43.2, 82, 148, 413 }, + [14] = { 43.8, 81.8, 148, 413 }, + [15] = { 39.9, 81.4, 148, 413 }, + [16] = { 44.1, 81.3, 148, 413 }, + [17] = { 44, 80, 148, 413 }, + [18] = { 38.3, 77.2, 148, 413 }, + [19] = { 39.8, 70.7, 148, 413 }, + [20] = { 60, 13.4, 148, 413 }, + [21] = { 61.4, 11.2, 148, 413 }, + [22] = { 23.1, 12.1, 331, 413 }, + [23] = { 40.1, 82.9, 148, 413 }, + [24] = { 40.1, 79.8, 148, 413 }, + }, + ["lvl"] = "17-18", + }, + [2238] = { + ["coords"] = { + [1] = { 79.7, 39.6, 267, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [2239] = { + ["coords"] = { + [1] = { 75.4, 41.5, 267, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [2240] = { + ["coords"] = { + [1] = { 47.7, 83.1, 36, 300 }, + [2] = { 48.7, 83.1, 36, 300 }, + [3] = { 47.8, 82.4, 36, 300 }, + [4] = { 47.3, 81.9, 36, 300 }, + [5] = { 47.7, 81.9, 36, 300 }, + [6] = { 48, 81.8, 36, 300 }, + [7] = { 46.4, 81.3, 36, 300 }, + [8] = { 47.8, 81.2, 36, 300 }, + [9] = { 48.3, 80.8, 36, 300 }, + [10] = { 48.3, 79.3, 36, 300 }, + [11] = { 58.4, 69.8, 36, 300 }, + [12] = { 58.9, 69.6, 36, 300 }, + [13] = { 59, 69.3, 36, 300 }, + [14] = { 57.6, 68.5, 36, 300 }, + [15] = { 58.2, 68.5, 36, 300 }, + [16] = { 58.7, 68.4, 36, 300 }, + [17] = { 59.6, 67.9, 36, 300 }, + [18] = { 58.4, 67.7, 36, 300 }, + [19] = { 57.7, 67.6, 36, 300 }, + [20] = { 59, 67.2, 36, 300 }, + [21] = { 58.3, 66.7, 36, 300 }, + [22] = { 56.5, 66.1, 36, 300 }, + [23] = { 57.9, 65.8, 36, 300 }, + [24] = { 50.6, 21.2, 267, 300 }, + [25] = { 51.5, 21.1, 267, 300 }, + [26] = { 50.7, 20.5, 267, 300 }, + [27] = { 50.2, 20.1, 267, 300 }, + [28] = { 50.6, 20.1, 267, 300 }, + [29] = { 50.9, 20, 267, 300 }, + [30] = { 49.5, 19.6, 267, 300 }, + [31] = { 50.7, 19.5, 267, 300 }, + [32] = { 51.1, 19.1, 267, 300 }, + [33] = { 51.2, 17.8, 267, 300 }, + [34] = { 60, 9.6, 267, 300 }, + [35] = { 60.4, 9.4, 267, 300 }, + [36] = { 60.5, 9.1, 267, 300 }, + [37] = { 59.3, 8.4, 267, 300 }, + [38] = { 59.8, 8.4, 267, 300 }, + [39] = { 60.2, 8.3, 267, 300 }, + [40] = { 61, 7.8, 267, 300 }, + [41] = { 59.9, 7.7, 267, 300 }, + [42] = { 59.4, 7.6, 267, 300 }, + [43] = { 60.4, 7.2, 267, 300 }, + [44] = { 59.9, 6.8, 267, 300 }, + [45] = { 58.3, 6.2, 267, 300 }, + [46] = { 59.5, 6, 267, 300 }, + }, + ["lvl"] = "32-33", + }, + [2241] = { + ["coords"] = { + [1] = { 58.1, 67.4, 36, 300 }, + [2] = { 59.7, 7.4, 267, 300 }, + [3] = { 47.7, 83.1, 36, 300 }, + [4] = { 48.7, 83.1, 36, 300 }, + [5] = { 47.8, 82.4, 36, 300 }, + [6] = { 47.3, 81.9, 36, 300 }, + [7] = { 47.7, 81.9, 36, 300 }, + [8] = { 48, 81.8, 36, 300 }, + [9] = { 46.4, 81.3, 36, 300 }, + [10] = { 47.8, 81.2, 36, 300 }, + [11] = { 48.3, 80.8, 36, 300 }, + [12] = { 48.3, 79.3, 36, 300 }, + [13] = { 58.4, 69.8, 36, 300 }, + [14] = { 58.9, 69.6, 36, 300 }, + [15] = { 59, 69.3, 36, 300 }, + [16] = { 57.6, 68.5, 36, 300 }, + [17] = { 58.2, 68.5, 36, 300 }, + [18] = { 58.7, 68.4, 36, 300 }, + [19] = { 59.6, 67.9, 36, 300 }, + [20] = { 58.4, 67.7, 36, 300 }, + [21] = { 57.7, 67.6, 36, 300 }, + [22] = { 59, 67.2, 36, 300 }, + [23] = { 58.3, 66.7, 36, 300 }, + [24] = { 56.5, 66.1, 36, 300 }, + [25] = { 57.9, 65.8, 36, 300 }, + [26] = { 50.6, 21.2, 267, 300 }, + [27] = { 51.5, 21.1, 267, 300 }, + [28] = { 50.7, 20.5, 267, 300 }, + [29] = { 50.2, 20.1, 267, 300 }, + [30] = { 50.6, 20.1, 267, 300 }, + [31] = { 50.9, 20, 267, 300 }, + [32] = { 49.5, 19.6, 267, 300 }, + [33] = { 50.7, 19.5, 267, 300 }, + [34] = { 51.1, 19.1, 267, 300 }, + [35] = { 51.2, 17.8, 267, 300 }, + [36] = { 60, 9.6, 267, 300 }, + [37] = { 60.4, 9.4, 267, 300 }, + [38] = { 60.5, 9.1, 267, 300 }, + [39] = { 59.3, 8.4, 267, 300 }, + [40] = { 59.8, 8.4, 267, 300 }, + [41] = { 60.2, 8.3, 267, 300 }, + [42] = { 61, 7.8, 267, 300 }, + [43] = { 59.9, 7.7, 267, 300 }, + [44] = { 59.4, 7.6, 267, 300 }, + [45] = { 60.4, 7.2, 267, 300 }, + [46] = { 59.9, 6.8, 267, 300 }, + [47] = { 58.3, 6.2, 267, 300 }, + [48] = { 59.5, 6, 267, 300 }, + }, + ["lvl"] = "33-34", + }, + [2242] = { + ["coords"] = { + [1] = { 33.2, 94.9, 28, 300 }, + [2] = { 32.8, 94.5, 28, 300 }, + [3] = { 33.2, 94, 28, 300 }, + [4] = { 32.8, 93.6, 28, 300 }, + [5] = { 31.5, 93.2, 28, 300 }, + [6] = { 32.5, 92.5, 28, 300 }, + [7] = { 33.3, 92.2, 28, 300 }, + [8] = { 32.1, 91.9, 28, 300 }, + [9] = { 57.9, 48.8, 36, 300 }, + [10] = { 62.2, 47.2, 36, 300 }, + [11] = { 56.6, 46.9, 36, 300 }, + [12] = { 60, 46.3, 36, 300 }, + [13] = { 64.1, 45.8, 36, 300 }, + [14] = { 61.4, 45.5, 36, 300 }, + [15] = { 62.3, 45.3, 36, 300 }, + [16] = { 56.8, 45.3, 36, 300 }, + [17] = { 63.4, 45.1, 36, 300 }, + [18] = { 64, 44.3, 36, 300 }, + [19] = { 57.6, 44, 36, 300 }, + [20] = { 62.2, 44, 36, 300 }, + [21] = { 60.6, 43.9, 36, 300 }, + [22] = { 60.7, 43.8, 36, 300 }, + [23] = { 63.5, 43.8, 36, 300 }, + [24] = { 61, 43.5, 36, 300 }, + [25] = { 61.4, 43.4, 36, 300 }, + [26] = { 61.4, 43.1, 36, 300 }, + [27] = { 58.7, 42.9, 36, 300 }, + [28] = { 63, 42.1, 36, 300 }, + [29] = { 60.1, 41.8, 36, 300 }, + [30] = { 57.8, 41.7, 36, 300 }, + [31] = { 64.2, 41.6, 36, 300 }, + [32] = { 62.3, 41.2, 36, 300 }, + [33] = { 58.8, 41.2, 36, 300 }, + }, + ["lvl"] = "35-36", + }, + [2243] = { + ["coords"] = { + [1] = { 30.6, 86.2, 28, 300 }, + [2] = { 58.3, 36.1, 36, 300 }, + [3] = { 55.9, 34.1, 36, 300 }, + [4] = { 60.1, 32.4, 36, 300 }, + [5] = { 57.3, 31, 36, 300 }, + [6] = { 58.3, 30.7, 36, 300 }, + [7] = { 51.9, 30.6, 36, 300 }, + [8] = { 55.4, 30.5, 36, 300 }, + [9] = { 59.1, 29.9, 36, 300 }, + [10] = { 51.1, 29.6, 36, 300 }, + [11] = { 57.5, 29.4, 36, 300 }, + [12] = { 58.4, 29.3, 36, 300 }, + [13] = { 58.9, 29.3, 36, 300 }, + [14] = { 57.9, 28.8, 36, 300 }, + [15] = { 56.2, 27.8, 36, 300 }, + [16] = { 55.6, 27.5, 36, 300 }, + [17] = { 55.5, 26.4, 36, 300 }, + [18] = { 56.1, 26.1, 36, 300 }, + [19] = { 52.9, 25.4, 36, 300 }, + [20] = { 52.8, 23.2, 36, 300 }, + [21] = { 53.9, 21.6, 36, 300 }, + [22] = { 53.3, 21.2, 36, 300 }, + [23] = { 46.3, 20.4, 36, 300 }, + [24] = { 53.3, 20.3, 36, 300 }, + [25] = { 46.1, 19.8, 36, 300 }, + [26] = { 47.7, 18.2, 36, 300 }, + [27] = { 46.9, 18, 36, 300 }, + [28] = { 48.4, 17.8, 36, 300 }, + [29] = { 47.4, 17.4, 36, 300 }, + [30] = { 47.4, 16.9, 36, 300 }, + [31] = { 48.2, 16.8, 36, 300 }, + [32] = { 47.8, 16, 36, 300 }, + }, + ["lvl"] = "36-37", + }, + [2244] = { + ["coords"] = { + [1] = { 66.7, 50, 267, 300 }, + [2] = { 65.4, 48.7, 267, 300 }, + [3] = { 67.9, 47.2, 267, 300 }, + [4] = { 64.9, 47.1, 267, 300 }, + [5] = { 80.9, 46.9, 267, 300 }, + [6] = { 79.8, 46.9, 267, 300 }, + [7] = { 66.7, 46, 267, 300 }, + [8] = { 80.9, 45.8, 267, 300 }, + [9] = { 81.7, 45.5, 267, 300 }, + [10] = { 81, 45, 267, 300 }, + [11] = { 81.1, 44.7, 267, 300 }, + [12] = { 81.5, 44.4, 267, 300 }, + [13] = { 78.7, 43.5, 267, 300 }, + [14] = { 79.8, 43.4, 267, 300 }, + [15] = { 76.6, 42.9, 267, 300 }, + [16] = { 75.6, 42.7, 267, 300 }, + [17] = { 80.5, 42.7, 267, 300 }, + [18] = { 76, 42.1, 267, 300 }, + [19] = { 78.7, 41.9, 267, 300 }, + [20] = { 76.7, 41.9, 267, 300 }, + [21] = { 79.6, 41.8, 267, 300 }, + [22] = { 79, 41.2, 267, 300 }, + [23] = { 75.8, 40.7, 267, 300 }, + [24] = { 83.4, 40.6, 267, 300 }, + [25] = { 75.3, 40.3, 267, 300 }, + [26] = { 80.1, 39.7, 267, 300 }, + [27] = { 81.9, 39.6, 267, 300 }, + [28] = { 77.7, 39.3, 267, 300 }, + [29] = { 78.2, 38.5, 267, 300 }, + }, + ["lvl"] = "21-22", + }, + [2245] = { + ["coords"] = { + [1] = { 57.8, 30.2, 36, 300 }, + [2] = { 55.6, 28, 36, 300 }, + [3] = { 55.7, 27, 36, 300 }, + [4] = { 56.9, 26.9, 36, 300 }, + [5] = { 57, 26, 36, 300 }, + [6] = { 54.4, 20.9, 36, 300 }, + [7] = { 53.8, 19.9, 36, 300 }, + [8] = { 48.1, 18.1, 36, 300 }, + }, + ["lvl"] = "37-38", + }, + [2246] = { + ["coords"] = { + [1] = { 40.6, 22.5, 36, 300 }, + [2] = { 41.2, 21, 36, 300 }, + [3] = { 42.3, 20.3, 36, 300 }, + [4] = { 39.9, 20, 36, 300 }, + [5] = { 40.7, 19.9, 36, 300 }, + [6] = { 39.2, 19.2, 36, 300 }, + [7] = { 40.5, 16.8, 36, 300 }, + [8] = { 39.7, 15.8, 36, 300 }, + [9] = { 37.4, 15.5, 36, 300 }, + [10] = { 38.9, 15.4, 36, 300 }, + [11] = { 38.5, 15.4, 36, 300 }, + [12] = { 39.9, 15.4, 36, 300 }, + [13] = { 39.5, 15.1, 36, 300 }, + [14] = { 39.3, 15, 36, 300 }, + [15] = { 38.4, 14.5, 36, 300 }, + [16] = { 38, 13.7, 36, 300 }, + }, + ["lvl"] = "38-39", + }, + [2247] = { + ["coords"] = { + [1] = { 38.3, 22.5, 36, 300 }, + [2] = { 39.4, 21.1, 36, 300 }, + [3] = { 41.6, 19.5, 36, 300 }, + [4] = { 40.3, 18.6, 36, 300 }, + [5] = { 43, 18.3, 36, 300 }, + [6] = { 41.3, 17.9, 36, 300 }, + [7] = { 38.3, 16.6, 36, 300 }, + [8] = { 39.3, 15.1, 36, 300 }, + [9] = { 39.3, 14.7, 36, 300 }, + [10] = { 37, 13.1, 36, 300 }, + [11] = { 38.9, 13.1, 36, 300 }, + }, + ["lvl"] = "39-40", + }, + [2248] = { + ["coords"] = { + [1] = { 41.8, 97.7, 36, 300 }, + [2] = { 41.6, 97.3, 36, 300 }, + [3] = { 42.8, 97.3, 36, 300 }, + [4] = { 38.9, 97.1, 36, 300 }, + [5] = { 37.9, 96.8, 36, 300 }, + [6] = { 38.7, 96.3, 36, 300 }, + [7] = { 44, 95.6, 36, 300 }, + [8] = { 38.1, 95.5, 36, 300 }, + [9] = { 42.8, 95.4, 36, 300 }, + [10] = { 38.8, 95.2, 36, 300 }, + [11] = { 40.8, 94.6, 36, 300 }, + [12] = { 41.7, 94.6, 36, 300 }, + [13] = { 40.1, 94.4, 36, 300 }, + [14] = { 39.5, 93.9, 36, 300 }, + [15] = { 44.1, 93.9, 36, 300 }, + [16] = { 38.2, 93.8, 36, 300 }, + [17] = { 43, 93.8, 36, 300 }, + [18] = { 41.1, 93.3, 36, 300 }, + [19] = { 39.7, 93, 36, 300 }, + [20] = { 40.7, 92.5, 36, 300 }, + [21] = { 40.1, 91.7, 36, 300 }, + [22] = { 41.2, 91.3, 36, 300 }, + [23] = { 39.5, 90.4, 36, 300 }, + [24] = { 40.1, 90.2, 36, 300 }, + [25] = { 41.5, 89.9, 36, 300 }, + [26] = { 39.8, 89.6, 36, 300 }, + [27] = { 39.6, 88.2, 36, 300 }, + [28] = { 41.2, 87.6, 36, 300 }, + [29] = { 40.6, 87.5, 36, 300 }, + [30] = { 45.4, 34, 267, 300 }, + [31] = { 45.3, 33.6, 267, 300 }, + [32] = { 46.3, 33.6, 267, 300 }, + [33] = { 42.9, 33.4, 267, 300 }, + [34] = { 42, 33.2, 267, 300 }, + [35] = { 42.7, 32.7, 267, 300 }, + [36] = { 47.3, 32.1, 267, 300 }, + [37] = { 42.2, 32, 267, 300 }, + [38] = { 46.3, 32, 267, 300 }, + [39] = { 42.8, 31.7, 267, 300 }, + [40] = { 44.6, 31.2, 267, 300 }, + [41] = { 45.3, 31.2, 267, 300 }, + [42] = { 43.9, 31, 267, 300 }, + [43] = { 43.4, 30.6, 267, 300 }, + [44] = { 47.4, 30.6, 267, 300 }, + [45] = { 42.3, 30.5, 267, 300 }, + [46] = { 46.5, 30.5, 267, 300 }, + [47] = { 44.8, 30, 267, 300 }, + [48] = { 43.6, 29.8, 267, 300 }, + [49] = { 44.5, 29.4, 267, 300 }, + [50] = { 43.9, 28.7, 267, 300 }, + [51] = { 44.9, 28.3, 267, 300 }, + [52] = { 43.4, 27.5, 267, 300 }, + [53] = { 43.9, 27.4, 267, 300 }, + [54] = { 45.1, 27.1, 267, 300 }, + [55] = { 43.6, 26.9, 267, 300 }, + [56] = { 43.5, 25.6, 267, 300 }, + [57] = { 44.9, 25, 267, 300 }, + [58] = { 44.4, 25, 267, 300 }, + }, + ["lvl"] = "30-31", + }, + [2249] = { + ["coords"] = { + [1] = { 40.1, 93.4, 36, 300 }, + [2] = { 41.6, 92.8, 36, 300 }, + [3] = { 39.5, 90.7, 36, 300 }, + [4] = { 40.3, 90.6, 36, 300 }, + [5] = { 41.3, 88.7, 36, 300 }, + [6] = { 44, 30.2, 267, 300 }, + [7] = { 45.3, 29.6, 267, 300 }, + [8] = { 43.4, 27.8, 267, 300 }, + [9] = { 44.1, 27.7, 267, 300 }, + [10] = { 45, 26.1, 267, 300 }, + [11] = { 38.9, 97.1, 36, 300 }, + [12] = { 38.7, 96.3, 36, 300 }, + [13] = { 38.1, 95.5, 36, 300 }, + [14] = { 38.8, 95.2, 36, 300 }, + [15] = { 40.8, 94.6, 36, 300 }, + [16] = { 40.1, 94.4, 36, 300 }, + [17] = { 39.5, 93.9, 36, 300 }, + [18] = { 38.2, 93.8, 36, 300 }, + [19] = { 41.1, 93.3, 36, 300 }, + [20] = { 39.7, 93, 36, 300 }, + [21] = { 40.7, 92.5, 36, 300 }, + [22] = { 40.1, 91.7, 36, 300 }, + [23] = { 39.5, 90.4, 36, 300 }, + [24] = { 40.1, 90.2, 36, 300 }, + [25] = { 41.5, 89.9, 36, 300 }, + [26] = { 39.8, 89.6, 36, 300 }, + [27] = { 39.6, 88.2, 36, 300 }, + [28] = { 41.2, 87.6, 36, 300 }, + [29] = { 40.6, 87.5, 36, 300 }, + [30] = { 42.9, 33.4, 267, 300 }, + [31] = { 42.7, 32.7, 267, 300 }, + [32] = { 42.2, 32, 267, 300 }, + [33] = { 42.8, 31.7, 267, 300 }, + [34] = { 44.6, 31.2, 267, 300 }, + [35] = { 43.9, 31, 267, 300 }, + [36] = { 43.4, 30.6, 267, 300 }, + [37] = { 42.3, 30.5, 267, 300 }, + [38] = { 44.8, 30, 267, 300 }, + [39] = { 43.6, 29.8, 267, 300 }, + [40] = { 44.5, 29.4, 267, 300 }, + [41] = { 43.9, 28.7, 267, 300 }, + [42] = { 43.4, 27.5, 267, 300 }, + [43] = { 43.9, 27.4, 267, 300 }, + [44] = { 45.1, 27.1, 267, 300 }, + [45] = { 43.6, 26.9, 267, 300 }, + [46] = { 43.5, 25.6, 267, 300 }, + [47] = { 44.9, 25, 267, 300 }, + [48] = { 44.4, 25, 267, 300 }, + }, + ["lvl"] = "31-32", + }, + [2250] = { + ["coords"] = { + [1] = { 40.4, 74.1, 36, 300 }, + [2] = { 38.7, 74, 36, 300 }, + [3] = { 37, 72.5, 36, 300 }, + [4] = { 39.3, 72.3, 36, 300 }, + [5] = { 34.6, 72.1, 36, 300 }, + [6] = { 36.9, 70.5, 36, 300 }, + [7] = { 33.3, 70.4, 36, 300 }, + [8] = { 40.2, 70.1, 36, 300 }, + [9] = { 34.7, 68.6, 36, 300 }, + [10] = { 39.4, 68.3, 36, 300 }, + [11] = { 32.5, 67.2, 36, 300 }, + [12] = { 33.2, 67.1, 36, 300 }, + [13] = { 39.3, 67, 36, 300 }, + [14] = { 31.3, 65.7, 36, 300 }, + [15] = { 30.6, 64.5, 36, 300 }, + [16] = { 29.7, 63.3, 36, 300 }, + [17] = { 31, 61.8, 36, 300 }, + [18] = { 30.9, 58.1, 36, 300 }, + [19] = { 44.2, 13.2, 267, 300 }, + [20] = { 42.7, 13.2, 267, 300 }, + [21] = { 41.2, 11.8, 267, 300 }, + [22] = { 43.3, 11.7, 267, 300 }, + [23] = { 39.1, 11.5, 267, 300 }, + [24] = { 41.2, 10.1, 267, 300 }, + [25] = { 38, 10, 267, 300 }, + [26] = { 44, 9.8, 267, 300 }, + [27] = { 39.2, 8.5, 267, 300 }, + [28] = { 43.3, 8.2, 267, 300 }, + [29] = { 37.3, 7.2, 267, 300 }, + [30] = { 37.9, 7.1, 267, 300 }, + [31] = { 43.3, 7, 267, 300 }, + [32] = { 36.2, 5.9, 267, 300 }, + }, + ["lvl"] = "32-33", + }, + [2251] = { + ["coords"] = { + [1] = { 35.5, 73.7, 36, 300 }, + [2] = { 35.7, 70.6, 36, 300 }, + [3] = { 41.4, 69.2, 36, 300 }, + [4] = { 36.8, 69, 36, 300 }, + [5] = { 37.5, 67.2, 36, 300 }, + [6] = { 35.4, 67.1, 36, 300 }, + [7] = { 40.4, 67, 36, 300 }, + [8] = { 42.8, 66.9, 36, 300 }, + [9] = { 37.3, 66.2, 36, 300 }, + [10] = { 37.7, 66, 36, 300 }, + [11] = { 39.4, 65.3, 36, 300 }, + [12] = { 41.6, 65.2, 36, 300 }, + [13] = { 44, 65.1, 36, 300 }, + [14] = { 39.1, 65, 36, 300 }, + [15] = { 40.5, 63.4, 36, 300 }, + [16] = { 41.9, 63.3, 36, 300 }, + [17] = { 42.7, 62.6, 36, 300 }, + [18] = { 41.5, 61.7, 36, 300 }, + [19] = { 29.7, 60, 36, 300 }, + [20] = { 29.7, 56.2, 36, 300 }, + [21] = { 30.9, 54.5, 36, 300 }, + [22] = { 29.8, 54, 36, 300 }, + [23] = { 32.1, 52.9, 36, 300 }, + [24] = { 29.7, 52.9, 36, 300 }, + [25] = { 30.9, 50.9, 36, 300 }, + [26] = { 29.6, 49.2, 36, 300 }, + [27] = { 32.2, 49, 36, 300 }, + [28] = { 30.9, 47.5, 36, 300 }, + [29] = { 32.2, 45.4, 36, 300 }, + [30] = { 32.8, 42.9, 36, 300 }, + [31] = { 33.8, 39.7, 36, 300 }, + [32] = { 35.8, 37.8, 36, 300 }, + [33] = { 36.8, 36.6, 36, 300 }, + [34] = { 35.9, 35.5, 36, 300 }, + [35] = { 39.9, 12.9, 267, 300 }, + [36] = { 40.1, 10.2, 267, 300 }, + [37] = { 45, 9, 267, 300 }, + [38] = { 41.1, 8.8, 267, 300 }, + [39] = { 41.7, 7.3, 267, 300 }, + [40] = { 39.8, 7.1, 267, 300 }, + [41] = { 44.2, 7.1, 267, 300 }, + [42] = { 46.3, 7, 267, 300 }, + [43] = { 41.5, 6.4, 267, 300 }, + [44] = { 41.8, 6.2, 267, 300 }, + [45] = { 43.3, 5.6, 267, 300 }, + [46] = { 45.3, 5.5, 267, 300 }, + [47] = { 47.4, 5.4, 267, 300 }, + [48] = { 43, 5.3, 267, 300 }, + [49] = { 44.3, 3.9, 267, 300 }, + [50] = { 45.5, 3.8, 267, 300 }, + [51] = { 46.3, 3.2, 267, 300 }, + [52] = { 45.2, 2.4, 267, 300 }, + }, + ["lvl"] = "33-34", + }, + [2252] = { + ["coords"] = { + [1] = { 47.6, 63.2, 36, 300 }, + [2] = { 46.3, 63.1, 36, 300 }, + [3] = { 48.8, 61.5, 36, 300 }, + [4] = { 45.4, 61.3, 36, 300 }, + [5] = { 44.9, 60.2, 36, 300 }, + [6] = { 47.6, 60, 36, 300 }, + [7] = { 50.3, 59.3, 36, 300 }, + [8] = { 51.2, 56.2, 36, 300 }, + [9] = { 48.8, 54.9, 36, 300 }, + [10] = { 54.8, 54.5, 36, 300 }, + [11] = { 48.8, 54.4, 36, 300 }, + [12] = { 53.7, 54.4, 36, 300 }, + [13] = { 55.8, 54.3, 36, 300 }, + [14] = { 54.5, 52.7, 36, 300 }, + [15] = { 50.1, 52.7, 36, 300 }, + [16] = { 52.5, 52.6, 36, 300 }, + [17] = { 53.3, 48, 36, 300 }, + [18] = { 51.2, 46.8, 36, 300 }, + [19] = { 53.1, 45.6, 36, 300 }, + [20] = { 53, 45.5, 36, 300 }, + [21] = { 51.7, 45.4, 36, 300 }, + [22] = { 51.8, 45.2, 36, 300 }, + [23] = { 53.2, 45.1, 36, 300 }, + [24] = { 54.5, 43.3, 36, 300 }, + [25] = { 48.9, 43.2, 36, 300 }, + [26] = { 49.9, 42.1, 36, 300 }, + [27] = { 52.6, 42.1, 36, 300 }, + [28] = { 53.6, 41.9, 36, 300 }, + [29] = { 55.5, 40.6, 36, 300 }, + [30] = { 51.1, 40.3, 36, 300 }, + [31] = { 52.4, 40.2, 36, 300 }, + [32] = { 46.4, 39.9, 36, 300 }, + [33] = { 49.2, 39.1, 36, 300 }, + [34] = { 52.4, 38.4, 36, 300 }, + [35] = { 49.9, 38.2, 36, 300 }, + [36] = { 45.3, 37.9, 36, 300 }, + [37] = { 48.9, 36.9, 36, 300 }, + [38] = { 51.4, 36.5, 36, 300 }, + [39] = { 43.9, 36.5, 36, 300 }, + [40] = { 53.6, 36, 36, 300 }, + [41] = { 46.5, 35.2, 36, 300 }, + [42] = { 51, 34.9, 36, 300 }, + [43] = { 50, 34.5, 36, 300 }, + [44] = { 49.9, 32.8, 36, 300 }, + [45] = { 43.9, 32.8, 36, 300 }, + [46] = { 46.3, 32.8, 36, 300 }, + [47] = { 50, 31.5, 36, 300 }, + [48] = { 41.5, 30.6, 36, 300 }, + [49] = { 45.2, 29.4, 36, 300 }, + [50] = { 50.5, 3.7, 267, 300 }, + [51] = { 49.3, 3.7, 267, 300 }, + [52] = { 51.6, 2.3, 267, 300 }, + [53] = { 48.6, 2.1, 267, 300 }, + [54] = { 48.2, 1.1, 267, 300 }, + [55] = { 50.5, 1, 267, 300 }, + }, + ["lvl"] = "34-35", + }, + [2253] = { + ["coords"] = { + [1] = { 46.5, 60.9, 36, 300 }, + [2] = { 48.8, 59.8, 36, 300 }, + [3] = { 46.5, 58.4, 36, 300 }, + [4] = { 51.2, 57.8, 36, 300 }, + [5] = { 48.5, 57.2, 36, 300 }, + [6] = { 50.2, 56.2, 36, 300 }, + [7] = { 51.6, 54.6, 36, 300 }, + [8] = { 49.6, 54.2, 36, 300 }, + [9] = { 51.3, 52.6, 36, 300 }, + [10] = { 52.9, 47.6, 36, 300 }, + [11] = { 51.4, 47.5, 36, 300 }, + [12] = { 52.4, 47.5, 36, 300 }, + [13] = { 51.1, 45.6, 36, 300 }, + [14] = { 53.6, 45.6, 36, 300 }, + [15] = { 52.4, 45.6, 36, 300 }, + [16] = { 50.7, 45.3, 36, 300 }, + [17] = { 47.5, 44.5, 36, 300 }, + [18] = { 52.1, 44, 36, 300 }, + [19] = { 48.1, 43.5, 36, 300 }, + [20] = { 48.9, 42, 36, 300 }, + [21] = { 47.6, 40.4, 36, 300 }, + [22] = { 47.7, 38.6, 36, 300 }, + [23] = { 51.2, 38.6, 36, 300 }, + [24] = { 47.3, 36.4, 36, 300 }, + [25] = { 45.7, 34.9, 36, 300 }, + [26] = { 44.2, 34.9, 36, 300 }, + [27] = { 47.8, 33.4, 36, 300 }, + [28] = { 47.7, 33, 36, 300 }, + [29] = { 45.2, 31.4, 36, 300 }, + [30] = { 42.8, 31.2, 36, 300 }, + [31] = { 49.6, 1.7, 267, 300 }, + [32] = { 51.6, 0.8, 267, 300 }, + }, + ["lvl"] = "35-36", + }, + [2254] = { + ["coords"] = { + [1] = { 43.8, 51.3, 36, 300 }, + [2] = { 43.3, 50.2, 36, 300 }, + [3] = { 43.9, 49, 36, 300 }, + [4] = { 41.4, 48.7, 36, 300 }, + [5] = { 45.8, 47.7, 36, 300 }, + [6] = { 42.5, 47.7, 36, 300 }, + [7] = { 43.1, 46.9, 36, 300 }, + [8] = { 46.4, 46.9, 36, 300 }, + [9] = { 43.9, 46.6, 36, 300 }, + [10] = { 45.9, 45.8, 36, 300 }, + [11] = { 40.4, 45.7, 36, 300 }, + [12] = { 41.7, 44.9, 36, 300 }, + [13] = { 41.7, 43.5, 36, 300 }, + [14] = { 38.3, 42, 36, 300 }, + [15] = { 39.3, 40.1, 36, 300 }, + [16] = { 39.5, 38.8, 36, 300 }, + }, + ["lvl"] = "36-37", + ["rnk"] = "1", + }, + [2255] = { + ["coords"] = { + [1] = { 38.9, 49.5, 36, 300 }, + [2] = { 43.3, 48, 36, 300 }, + [3] = { 40.3, 47.5, 36, 300 }, + [4] = { 45.6, 46.6, 36, 300 }, + [5] = { 42.8, 45.8, 36, 300 }, + [6] = { 40.4, 43.7, 36, 300 }, + [7] = { 38.4, 40.2, 36, 300 }, + [8] = { 41.3, 39.9, 36, 300 }, + }, + ["lvl"] = "37-38", + ["rnk"] = "1", + }, + [2256] = { + ["coords"] = { + [1] = { 38.1, 59.9, 36, 300 }, + [2] = { 36.9, 56.4, 36, 300 }, + [3] = { 39.5, 56.2, 36, 300 }, + [4] = { 39.2, 54.7, 36, 300 }, + [5] = { 38.2, 54.5, 36, 300 }, + [6] = { 40.4, 54.4, 36, 300 }, + [7] = { 38.2, 52.5, 36, 300 }, + [8] = { 38.2, 51.3, 36, 300 }, + [9] = { 40.5, 51, 36, 300 }, + [10] = { 36.9, 51, 36, 300 }, + [11] = { 37.9, 49.2, 36, 300 }, + [12] = { 39.9, 49.2, 36, 300 }, + [13] = { 35.7, 49.1, 36, 300 }, + [14] = { 42.2, 0.8, 267, 300 }, + }, + ["lvl"] = "38-39", + ["rnk"] = "1", + }, + [2257] = { + ["coords"] = { + [1] = { 35.7, 54.2, 36, 300 }, + }, + ["lvl"] = "43", + ["rnk"] = "1", + }, + [2258] = { + ["coords"] = { + [1] = { 43.6, 95.7, 28, 54000 }, + [2] = { 80.1, 46.9, 36, 54000 }, + }, + ["lvl"] = "37", + ["rnk"] = "4", + }, + [2260] = { + ["coords"] = { + [1] = { 67.1, 50.9, 267, 300 }, + [2] = { 66.1, 48.7, 267, 300 }, + [3] = { 66, 48.1, 267, 300 }, + [4] = { 80.5, 46.9, 267, 300 }, + [5] = { 65.4, 46.7, 267, 300 }, + [6] = { 81, 46.6, 267, 300 }, + [7] = { 79.2, 46.4, 267, 300 }, + [8] = { 66.1, 45.7, 267, 300 }, + [9] = { 81.8, 45.2, 267, 300 }, + [10] = { 80.4, 44.8, 267, 300 }, + [11] = { 77.7, 44.1, 267, 300 }, + [12] = { 82.3, 42.3, 267, 300 }, + [13] = { 75.6, 42.2, 267, 300 }, + [14] = { 77.9, 41.1, 267, 300 }, + [15] = { 75, 40.7, 267, 300 }, + [16] = { 81.1, 44.7, 267, 300 }, + [17] = { 78.7, 41.9, 267, 300 }, + [18] = { 79.6, 41.8, 267, 300 }, + }, + ["lvl"] = "21-22", + }, + [2261] = { + ["coords"] = { + [1] = { 19, 20, 45, 300 }, + [2] = { 67.2, 50.2, 267, 300 }, + [3] = { 65.8, 48.5, 267, 300 }, + [4] = { 67.1, 47.7, 267, 300 }, + [5] = { 67.6, 47.6, 267, 300 }, + [6] = { 78.8, 47.6, 267, 300 }, + [7] = { 81.7, 47.5, 267, 300 }, + [8] = { 79.4, 46.8, 267, 300 }, + [9] = { 76.7, 46.8, 267, 300 }, + [10] = { 78.1, 46.5, 267, 300 }, + [11] = { 76.4, 46.4, 267, 300 }, + [12] = { 67, 46.2, 267, 300 }, + [13] = { 80.6, 46, 267, 300 }, + [14] = { 79.5, 45.4, 267, 300 }, + [15] = { 80.1, 45.4, 267, 300 }, + [16] = { 77.2, 45.2, 267, 300 }, + [17] = { 78.7, 45.2, 267, 300 }, + [18] = { 81.8, 44.6, 267, 300 }, + [19] = { 81.9, 44.6, 267, 300 }, + [20] = { 79.7, 44.6, 267, 300 }, + [21] = { 78.2, 44.4, 267, 300 }, + [22] = { 82.9, 44.4, 267, 300 }, + [23] = { 76.7, 44.2, 267, 300 }, + [24] = { 75.7, 44.1, 267, 300 }, + [25] = { 80.7, 43.8, 267, 300 }, + [26] = { 78.2, 43.2, 267, 300 }, + [27] = { 79.7, 43.2, 267, 300 }, + [28] = { 82, 43.2, 267, 300 }, + [29] = { 75.3, 42.1, 267, 300 }, + [30] = { 81, 41.7, 267, 300 }, + [31] = { 76, 41.5, 267, 300 }, + [32] = { 82.7, 41.5, 267, 300 }, + [33] = { 78.3, 41.4, 267, 300 }, + [34] = { 81.7, 41.3, 267, 300 }, + [35] = { 76.4, 41.2, 267, 300 }, + [36] = { 83.8, 40.9, 267, 300 }, + [37] = { 76.2, 40.8, 267, 300 }, + [38] = { 80.5, 40.7, 267, 300 }, + [39] = { 79.8, 40.7, 267, 300 }, + [40] = { 74.4, 40.5, 267, 300 }, + [41] = { 77.8, 40.4, 267, 300 }, + [42] = { 82.9, 40.3, 267, 300 }, + [43] = { 79.2, 40.2, 267, 300 }, + [44] = { 79.5, 40.1, 267, 300 }, + [45] = { 81.7, 39.8, 267, 300 }, + [46] = { 75.4, 39.7, 267, 300 }, + [47] = { 82.1, 39.6, 267, 300 }, + [48] = { 79.6, 39.4, 267, 300 }, + [49] = { 74.8, 39.1, 267, 300 }, + [50] = { 77.3, 39, 267, 300 }, + [51] = { 75.1, 37.9, 267, 300 }, + [52] = { 77.7, 44.1, 267, 300 }, + [53] = { 76.6, 42.9, 267, 300 }, + [54] = { 77.9, 41.1, 267, 300 }, + [55] = { 78.7, 41.9, 267, 300 }, + [56] = { 79.6, 41.8, 267, 300 }, + }, + ["lvl"] = "20-21", + }, + [2263] = { + ["coords"] = { + [1] = { 49.5, 58.7, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "41", + }, + [2264] = { + ["coords"] = { + [1] = { 36.8, 44.5, 267, 300 }, + [2] = { 36.8, 44.3, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "24-25", + }, + [2265] = { + ["coords"] = { + [1] = { 31.1, 46.7, 267, 300 }, + [2] = { 31.9, 46.7, 267, 300 }, + [3] = { 32, 45.8, 267, 300 }, + [4] = { 32.6, 45.5, 267, 300 }, + [5] = { 31.6, 44.5, 267, 300 }, + [6] = { 31.2, 43.9, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "24-25", + }, + [2266] = { + ["coords"] = { + [1] = { 24.8, 99.2, 36, 300 }, + [2] = { 25, 98.9, 36, 300 }, + [3] = { 26.1, 98.8, 36, 300 }, + [4] = { 27.8, 98.5, 36, 300 }, + [5] = { 27.4, 98.4, 36, 300 }, + [6] = { 35.2, 47.4, 267, 300 }, + [7] = { 33.8, 46.5, 267, 300 }, + [8] = { 35.8, 45.2, 267, 300 }, + [9] = { 34.9, 44.6, 267, 300 }, + [10] = { 33.9, 42.4, 267, 300 }, + [11] = { 35.6, 41.4, 267, 300 }, + [12] = { 35.9, 41.3, 267, 300 }, + [13] = { 35.5, 40.3, 267, 300 }, + [14] = { 36.4, 39.8, 267, 300 }, + [15] = { 31.9, 39.2, 267, 300 }, + [16] = { 30.3, 39, 267, 300 }, + [17] = { 31.7, 38.6, 267, 300 }, + [18] = { 31.4, 38.6, 267, 300 }, + [19] = { 34.8, 38.4, 267, 300 }, + [20] = { 29.7, 37.5, 267, 300 }, + [21] = { 35.2, 37.4, 267, 300 }, + [22] = { 33.4, 36, 267, 300 }, + [23] = { 34, 35.7, 267, 300 }, + [24] = { 30.5, 35.3, 267, 300 }, + [25] = { 30.7, 35, 267, 300 }, + [26] = { 31.7, 34.9, 267, 300 }, + [27] = { 33.2, 34.6, 267, 300 }, + [28] = { 32.8, 34.6, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "23-24", + }, + [2267] = { + ["coords"] = { + [1] = { 34.8, 47.2, 267, 300 }, + [2] = { 33.8, 47.1, 267, 300 }, + [3] = { 35.1, 47, 267, 300 }, + [4] = { 35.6, 46.2, 267, 300 }, + [5] = { 34.7, 45.9, 267, 300 }, + [6] = { 34.1, 45.7, 267, 300 }, + [7] = { 36.5, 45.4, 267, 300 }, + [8] = { 30.8, 45.4, 267, 300 }, + [9] = { 34.7, 44.9, 267, 300 }, + [10] = { 35.6, 44.3, 267, 300 }, + [11] = { 29.8, 43.8, 267, 300 }, + [12] = { 35.4, 42, 267, 300 }, + [13] = { 30.8, 41.5, 267, 300 }, + [14] = { 29.9, 41.1, 267, 300 }, + [15] = { 30.3, 40.3, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "24-25", + }, + [2268] = { + ["coords"] = { + [1] = { 32.8, 48.5, 267, 300 }, + [2] = { 34.5, 48, 267, 300 }, + [3] = { 36.5, 46.9, 267, 300 }, + [4] = { 37, 46.9, 267, 300 }, + [5] = { 30, 46.4, 267, 300 }, + [6] = { 33.1, 45.7, 267, 300 }, + [7] = { 29.1, 45.7, 267, 300 }, + [8] = { 34.3, 44.2, 267, 300 }, + [9] = { 30, 44.2, 267, 300 }, + [10] = { 33.8, 43.1, 267, 300 }, + [11] = { 32.2, 42.9, 267, 300 }, + [12] = { 30.9, 42.4, 267, 300 }, + [13] = { 31.4, 42.2, 267, 300 }, + [14] = { 29.2, 40.1, 267, 300 }, + [15] = { 32.4, 39.7, 267, 300 }, + [16] = { 33.2, 38.1, 267, 300 }, + [17] = { 32.8, 36.7, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25-26", + }, + [2269] = { + ["coords"] = { + [1] = { 31.4, 59.5, 267, 300 }, + [2] = { 30.8, 59.1, 267, 300 }, + [3] = { 31.6, 58.5, 267, 300 }, + [4] = { 30.2, 58.4, 267, 300 }, + [5] = { 30.9, 58.2, 267, 300 }, + [6] = { 27, 58, 267, 300 }, + [7] = { 31.3, 57.9, 267, 300 }, + [8] = { 27.7, 57.7, 267, 300 }, + [9] = { 27.5, 57.7, 267, 300 }, + [10] = { 28.9, 57.4, 267, 300 }, + [11] = { 28.9, 57.3, 267, 300 }, + [12] = { 28.5, 57.2, 267, 300 }, + [13] = { 28.2, 57.1, 267, 300 }, + [14] = { 27.3, 56.8, 267, 300 }, + [15] = { 29.7, 56.5, 267, 300 }, + [16] = { 30.1, 56.5, 267, 300 }, + [17] = { 28.2, 56.3, 267, 300 }, + [18] = { 28.7, 56, 267, 300 }, + [19] = { 30.4, 55.6, 267, 300 }, + [20] = { 32.2, 55.5, 267, 300 }, + [21] = { 28.4, 55.1, 267, 300 }, + [22] = { 30.8, 55.1, 267, 300 }, + [23] = { 29.7, 55, 267, 300 }, + [24] = { 32, 54.6, 267, 300 }, + [25] = { 27.8, 54.1, 267, 300 }, + [26] = { 31.4, 54.1, 267, 300 }, + [27] = { 30, 54, 267, 300 }, + [28] = { 30.5, 53.9, 267, 300 }, + [29] = { 29.2, 53.5, 267, 300 }, + [30] = { 32, 53.2, 267, 300 }, + [31] = { 30.4, 53.1, 267, 300 }, + [32] = { 31.2, 53.1, 267, 300 }, + [33] = { 31.5, 52.4, 267, 300 }, + [34] = { 32.4, 52.1, 267, 300 }, + [35] = { 28.4, 51.9, 267, 300 }, + [36] = { 31.8, 51.8, 267, 300 }, + [37] = { 28.1, 51.2, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "26-27", + }, + [2270] = { + ["coords"] = { + [1] = { 26.5, 61.8, 267, 300 }, + [2] = { 27.6, 61.7, 267, 300 }, + [3] = { 27.4, 60.4, 267, 300 }, + [4] = { 26.6, 60.3, 267, 300 }, + [5] = { 28.6, 60.1, 267, 300 }, + [6] = { 25.9, 59.2, 267, 300 }, + [7] = { 27.1, 58.9, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "27-28", + }, + [2271] = { + ["coords"] = { + [1] = { 18.4, 88, 36, 300 }, + [2] = { 20.8, 87.8, 36, 300 }, + [3] = { 20.9, 87.5, 36, 300 }, + [4] = { 21.6, 87.4, 36, 300 }, + [5] = { 18.8, 86.1, 36, 300 }, + [6] = { 19, 84.3, 36, 300 }, + [7] = { 18, 84.2, 36, 300 }, + [8] = { 21.2, 84.1, 36, 300 }, + [9] = { 21, 83.9, 36, 300 }, + [10] = { 18.1, 83.8, 36, 300 }, + [11] = { 17.7, 83.6, 36, 300 }, + [12] = { 18.4, 83.5, 36, 300 }, + [13] = { 17.8, 83.1, 36, 300 }, + [14] = { 20.4, 82.3, 36, 300 }, + [15] = { 15.2, 78.7, 36, 300 }, + [16] = { 15, 78.6, 36, 300 }, + [17] = { 22.1, 60.3, 36, 300 }, + [18] = { 25, 25.4, 267, 300 }, + [19] = { 27.1, 25.3, 267, 300 }, + [20] = { 27.2, 25, 267, 300 }, + [21] = { 27.8, 24.9, 267, 300 }, + [22] = { 25.3, 23.7, 267, 300 }, + [23] = { 25.5, 22.2, 267, 300 }, + [24] = { 24.6, 22.1, 267, 300 }, + [25] = { 27.4, 22, 267, 300 }, + [26] = { 27.2, 21.8, 267, 300 }, + [27] = { 24.7, 21.7, 267, 300 }, + [28] = { 24.3, 21.6, 267, 300 }, + [29] = { 25, 21.5, 267, 300 }, + [30] = { 24.5, 21.1, 267, 300 }, + [31] = { 26.7, 20.4, 267, 300 }, + [32] = { 22.1, 17.3, 267, 300 }, + [33] = { 22, 17.2, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "31-32", + }, + [2272] = { + ["coords"] = { + [1] = { 20.4, 87.4, 36, 300 }, + [2] = { 18.3, 84.3, 36, 300 }, + [3] = { 19.9, 83.8, 36, 300 }, + [4] = { 17.2, 83.3, 36, 300 }, + [5] = { 18.9, 77.8, 36, 300 }, + [6] = { 22.6, 60.9, 36, 300 }, + [7] = { 22.2, 60.4, 36, 300 }, + [8] = { 26.7, 24.9, 267, 300 }, + [9] = { 24.8, 22.2, 267, 300 }, + [10] = { 26.3, 21.7, 267, 300 }, + [11] = { 23.9, 21.3, 267, 300 }, + [12] = { 25.4, 16.5, 267, 300 }, + [13] = { 18.8, 86.1, 36, 300 }, + [14] = { 18.4, 83.5, 36, 300 }, + [15] = { 17.8, 83.1, 36, 300 }, + [16] = { 25.3, 23.7, 267, 300 }, + [17] = { 25, 21.5, 267, 300 }, + [18] = { 24.5, 21.1, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "32-33", + }, + [2274] = { + ["coords"] = { + [1] = { 27.2, 99.3, 36, 300 }, + [2] = { 32.7, 35.3, 267, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "24", + }, + [2275] = { + ["coords"] = {}, + ["lvl"] = "24", + }, + [2276] = { + ["coords"] = { + [1] = { 48.1, 59.1, 267, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [2277] = { + ["coords"] = { + [1] = { 50.6, 57.1, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2278] = { + ["coords"] = { + [1] = { 61.5, 82.5, 36, 300 }, + [2] = { 62.6, 20.6, 267, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [2279] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "62", + }, + [2280] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "62", + }, + [2281] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "62", + }, + [2282] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "62", + }, + [2283] = { + ["coords"] = { + [1] = { 57.6, 69.6, 130, 14400 }, + }, + ["lvl"] = "22", + ["rnk"] = "4", + }, + [2284] = { + ["coords"] = { + [1] = { 61.7, 80.8, 36, 300 }, + [2] = { 61.5, 80.4, 36, 300 }, + [3] = { 61.8, 80.3, 36, 300 }, + [4] = { 62.8, 19.1, 267, 300 }, + [5] = { 62.7, 18.8, 267, 300 }, + [6] = { 62.9, 18.7, 267, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "4", + }, + [2285] = { + ["coords"] = { + [1] = { 74, 30.2, 1519, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [2286] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [2287] = { + ["coords"] = { + [1] = { 39.2, 59.6, 36, 300 }, + [2] = { 36.8, 58, 36, 300 }, + [3] = { 38.4, 57.8, 36, 300 }, + [4] = { 38.1, 56, 36, 300 }, + [5] = { 35.9, 55.6, 36, 300 }, + [6] = { 35.7, 55.5, 36, 300 }, + [7] = { 36.3, 55, 36, 300 }, + [8] = { 36.2, 54.9, 36, 300 }, + [9] = { 39.2, 54.5, 36, 300 }, + [10] = { 37, 54.5, 36, 300 }, + [11] = { 35.8, 54.3, 36, 300 }, + [12] = { 36.4, 53.9, 36, 300 }, + [13] = { 35.8, 53.9, 36, 300 }, + [14] = { 36.3, 53.8, 36, 300 }, + [15] = { 36.2, 53.6, 36, 300 }, + [16] = { 34.9, 53.4, 36, 300 }, + [17] = { 35.1, 53.3, 36, 300 }, + [18] = { 35.6, 53.2, 36, 300 }, + [19] = { 37, 53.2, 36, 300 }, + [20] = { 40.5, 53, 36, 300 }, + [21] = { 35.9, 52.8, 36, 300 }, + [22] = { 36.3, 52.5, 36, 300 }, + [23] = { 36.4, 52.3, 36, 300 }, + [24] = { 35.7, 51, 36, 300 }, + [25] = { 36.8, 49.1, 36, 300 }, + [26] = { 43.2, 0.5, 267, 300 }, + }, + ["lvl"] = "39-40", + ["rnk"] = "1", + }, + [2288] = { + ["coords"] = {}, + ["lvl"] = "30", + }, + [2289] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "62", + }, + [2290] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "62", + }, + [2291] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "62", + }, + [2292] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "62", + }, + [2293] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "45", + }, + [2294] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "62", + }, + [2295] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "62", + }, + [2296] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "62", + }, + [2297] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "62", + }, + [2298] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "62", + }, + [2299] = { + ["coords"] = { + [1] = { 84.3, 68.3, 46, 900 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [2300] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "40", + }, + [2301] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "62", + }, + [2302] = { + ["coords"] = { + [1] = { 29.5, 54.6, 141, 600 }, + [2] = { 59, 36.9, 1657, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [2303] = { + ["coords"] = { + [1] = { 52, 29.3, 618, 333 }, + }, + ["fac"] = "A", + ["lvl"] = "56", + }, + [2304] = { + ["coords"] = { + [1] = { 10.8, 48.9, 45, 300 }, + [2] = { 9.8, 48.7, 45, 300 }, + [3] = { 10.8, 48.6, 45, 300 }, + [4] = { 72.6, 80, 267, 300 }, + [5] = { 71.5, 79.8, 267, 300 }, + [6] = { 72.5, 79.6, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "32", + ["rnk"] = "1", + }, + [2305] = { + ["coords"] = { + [1] = { 31.2, 56, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2306] = { + ["coords"] = { + [1] = { 47.8, 17.1, 36, 300 }, + }, + ["lvl"] = "40", + }, + [2307] = { + ["coords"] = { + [1] = { 32.7, 71.1, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "5", + }, + [2308] = { + ["coords"] = { + [1] = { 74, 33.3, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [2309] = { + ["coords"] = { + [1] = { 59.9, 52.4, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "5", + }, + [2310] = { + ["coords"] = { + [1] = { 60.8, 50.5, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "5", + }, + [2311] = { + ["coords"] = { + [1] = { 60.3, 52.5, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "5", + }, + [2312] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "5", + }, + [2313] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "5", + }, + [2314] = { + ["coords"] = { + [1] = { 59.6, 51.6, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "5", + }, + [2315] = { + ["coords"] = { + [1] = { 32, 65.6, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "5", + }, + [2316] = { + ["coords"] = { + [1] = { 60, 43.7, 36, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [2317] = { + ["coords"] = { + [1] = { 39.3, 14.3, 36, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "25", + }, + [2318] = { + ["coords"] = { + [1] = { 32.9, 93.6, 28, 300 }, + [2] = { 32, 91.5, 28, 300 }, + [3] = { 57.4, 46.2, 36, 300 }, + [4] = { 61.3, 45.8, 36, 300 }, + [5] = { 60.3, 44, 36, 300 }, + [6] = { 63.7, 43.7, 36, 300 }, + [7] = { 62.3, 40.6, 36, 300 }, + [8] = { 58.7, 30.5, 36, 300 }, + [9] = { 56.1, 27.3, 36, 300 }, + [10] = { 53.3, 20.7, 36, 300 }, + [11] = { 47.8, 17.5, 36, 300 }, + }, + ["lvl"] = "35-36", + }, + [2319] = { + ["coords"] = { + [1] = { 32.6, 93.8, 28, 300 }, + [2] = { 32.6, 93.7, 28, 300 }, + [3] = { 31.7, 91.9, 28, 300 }, + [4] = { 31.6, 91.3, 28, 300 }, + [5] = { 63.2, 44.1, 36, 300 }, + [6] = { 63.1, 44, 36, 300 }, + [7] = { 61.3, 44, 36, 300 }, + [8] = { 60.2, 43.6, 36, 300 }, + [9] = { 59.9, 43.5, 36, 300 }, + [10] = { 61.8, 41.1, 36, 300 }, + [11] = { 61.6, 40.1, 36, 300 }, + [12] = { 32.1, 91.9, 28, 300 }, + [13] = { 58.1, 67.4, 36, 300 }, + [14] = { 61.4, 45.5, 36, 300 }, + [15] = { 62.2, 44, 36, 300 }, + [16] = { 61.4, 43.4, 36, 300 }, + [17] = { 62.3, 41.2, 36, 300 }, + [18] = { 59.7, 7.4, 267, 300 }, + [19] = { 58.2, 68.5, 36, 300 }, + [20] = { 59.8, 8.4, 267, 300 }, + }, + ["lvl"] = "34-35", + }, + [2320] = { + ["coords"] = { + [1] = { 39.2, 14.3, 36, 300 }, + }, + ["lvl"] = "40", + }, + [2321] = { + ["coords"] = { + [1] = { 34.8, 87.3, 148, 413 }, + [2] = { 43.8, 70.7, 148, 413 }, + [3] = { 43.1, 70.5, 148, 413 }, + [4] = { 42.2, 70.1, 148, 413 }, + [5] = { 44.3, 68.9, 148, 413 }, + [6] = { 39, 68.8, 148, 413 }, + [7] = { 41.4, 68.6, 148, 413 }, + [8] = { 42.3, 68.5, 148, 413 }, + [9] = { 38.4, 68.1, 148, 413 }, + [10] = { 43.2, 68.1, 148, 413 }, + [11] = { 41.7, 67.5, 148, 413 }, + [12] = { 42.8, 67.3, 148, 413 }, + [13] = { 43.9, 67.3, 148, 413 }, + [14] = { 39.9, 67.1, 148, 413 }, + [15] = { 38.8, 67, 148, 413 }, + [16] = { 43.3, 66.1, 148, 413 }, + [17] = { 41.6, 65.8, 148, 413 }, + [18] = { 39.3, 65.6, 148, 413 }, + [19] = { 42, 65.5, 148, 413 }, + [20] = { 38.5, 65.4, 148, 413 }, + [21] = { 38.5, 64.7, 148, 413 }, + [22] = { 38.1, 63.9, 148, 413 }, + [23] = { 38.2, 62.6, 148, 413 }, + [24] = { 39.5, 62.5, 148, 413 }, + [25] = { 39.1, 60.7, 148, 413 }, + [26] = { 39.6, 59.7, 148, 413 }, + [27] = { 38.2, 59.4, 148, 413 }, + [28] = { 38.5, 58.2, 148, 413 }, + [29] = { 45.2, 58, 148, 413 }, + [30] = { 39.8, 57.4, 148, 413 }, + [31] = { 38.2, 56.6, 148, 413 }, + [32] = { 44.3, 55.8, 148, 413 }, + [33] = { 42.9, 55.3, 148, 413 }, + [34] = { 43.6, 55.1, 148, 413 }, + [35] = { 45.7, 54.8, 148, 413 }, + [36] = { 43.4, 53.5, 148, 413 }, + [37] = { 46.1, 53, 148, 413 }, + [38] = { 39, 48.7, 148, 413 }, + [39] = { 38.2, 47.5, 148, 413 }, + [40] = { 42.4, 47.5, 148, 413 }, + [41] = { 41.9, 45.8, 148, 413 }, + [42] = { 47.2, 44.8, 148, 413 }, + [43] = { 43.3, 44.5, 148, 413 }, + [44] = { 44.6, 44.3, 148, 413 }, + [45] = { 43.9, 43.2, 148, 413 }, + [46] = { 41.1, 43.2, 148, 413 }, + [47] = { 45.6, 42.9, 148, 413 }, + [48] = { 42.8, 42.6, 148, 413 }, + [49] = { 47.2, 42.6, 148, 413 }, + [50] = { 44.7, 42.6, 148, 413 }, + [51] = { 41.3, 41.5, 148, 413 }, + [52] = { 44.4, 41.4, 148, 413 }, + [53] = { 47.3, 41.3, 148, 413 }, + [54] = { 40.3, 41.3, 148, 413 }, + [55] = { 45.4, 41.1, 148, 413 }, + [56] = { 47.9, 41.1, 148, 413 }, + [57] = { 43.4, 40.7, 148, 413 }, + [58] = { 47.6, 40.1, 148, 413 }, + [59] = { 40.1, 39.8, 148, 413 }, + [60] = { 42.6, 39.7, 148, 413 }, + [61] = { 39.3, 38.5, 148, 413 }, + [62] = { 40.5, 38.4, 148, 413 }, + [63] = { 40.5, 36.7, 148, 413 }, + [64] = { 39.7, 36.6, 148, 413 }, + [65] = { 38.8, 36.4, 148, 413 }, + [66] = { 42.4, 35.1, 148, 413 }, + [67] = { 40.4, 35, 148, 413 }, + [68] = { 39.3, 34.8, 148, 413 }, + [69] = { 41.5, 34.7, 148, 413 }, + [70] = { 39.6, 33.9, 148, 413 }, + [71] = { 41.9, 33.7, 148, 413 }, + [72] = { 38.5, 33.5, 148, 413 }, + [73] = { 42.8, 33.5, 148, 413 }, + [74] = { 43.8, 33.4, 148, 413 }, + [75] = { 44.6, 33.4, 148, 413 }, + [76] = { 45.4, 32.2, 148, 413 }, + [77] = { 44, 31.6, 148, 413 }, + [78] = { 44.5, 29.9, 148, 413 }, + [79] = { 43.9, 29.3, 148, 413 }, + [80] = { 44.5, 28.8, 148, 413 }, + [81] = { 43.7, 28.1, 148, 413 }, + [82] = { 45.4, 27.4, 148, 413 }, + [83] = { 42.8, 26.4, 148, 413 }, + [84] = { 44.2, 26.3, 148, 413 }, + [85] = { 46.8, 25.8, 148, 413 }, + [86] = { 43.7, 25.8, 148, 413 }, + [87] = { 44.6, 25.7, 148, 413 }, + [88] = { 45.8, 24.9, 148, 413 }, + [89] = { 44.6, 24.5, 148, 413 }, + [90] = { 46.9, 24.5, 148, 413 }, + [91] = { 47.9, 23.6, 148, 413 }, + [92] = { 45.6, 23.4, 148, 413 }, + [93] = { 44.2, 23.4, 148, 413 }, + [94] = { 45.4, 22.9, 148, 413 }, + [95] = { 48.9, 22.8, 148, 413 }, + [96] = { 47.1, 22.5, 148, 413 }, + [97] = { 45.9, 22.2, 148, 413 }, + [98] = { 29.5, 31.1, 361, 413 }, + }, + ["lvl"] = "11-13", + }, + [2322] = { + ["coords"] = { + [1] = { 37.6, 78.8, 148, 413 }, + [2] = { 40.7, 77.3, 148, 413 }, + [3] = { 38.4, 76.6, 148, 413 }, + [4] = { 39.9, 76.4, 148, 413 }, + [5] = { 39.1, 75, 148, 413 }, + [6] = { 38.2, 73.7, 148, 413 }, + [7] = { 37.9, 72.4, 148, 413 }, + [8] = { 42.2, 70.8, 148, 413 }, + [9] = { 40.5, 70.8, 148, 413 }, + [10] = { 43.7, 70.5, 148, 413 }, + [11] = { 38.7, 70.5, 148, 413 }, + [12] = { 39.3, 70.2, 148, 413 }, + [13] = { 43.8, 69.7, 148, 413 }, + [14] = { 42.5, 69, 148, 413 }, + [15] = { 49.1, 36.6, 148, 413 }, + [16] = { 49.5, 36.5, 148, 413 }, + [17] = { 52.6, 35.4, 148, 413 }, + [18] = { 49.4, 34.9, 148, 413 }, + [19] = { 51.8, 34.7, 148, 413 }, + [20] = { 48.6, 34.7, 148, 413 }, + [21] = { 49.9, 33.9, 148, 413 }, + [22] = { 51.1, 33.8, 148, 413 }, + [23] = { 48, 33.7, 148, 413 }, + [24] = { 46.9, 33.6, 148, 413 }, + [25] = { 49, 33.6, 148, 413 }, + [26] = { 51.1, 32.5, 148, 413 }, + [27] = { 49.9, 32.2, 148, 413 }, + [28] = { 48.5, 32.2, 148, 413 }, + [29] = { 47.2, 31.9, 148, 413 }, + [30] = { 50.5, 31.9, 148, 413 }, + [31] = { 48.9, 31.1, 148, 413 }, + [32] = { 46.9, 31.1, 148, 413 }, + [33] = { 48.3, 30.6, 148, 413 }, + [34] = { 49.8, 30.5, 148, 413 }, + [35] = { 54.1, 30.5, 148, 413 }, + [36] = { 50.4, 30.3, 148, 413 }, + [37] = { 50.6, 29.3, 148, 413 }, + [38] = { 48.8, 29.1, 148, 413 }, + [39] = { 53.4, 28.9, 148, 413 }, + [40] = { 47.4, 28.5, 148, 413 }, + [41] = { 49.6, 28.4, 148, 413 }, + [42] = { 52.7, 27.9, 148, 413 }, + [43] = { 49.6, 27.7, 148, 413 }, + [44] = { 48.9, 27.3, 148, 413 }, + [45] = { 48, 26.8, 148, 413 }, + [46] = { 52.7, 26.2, 148, 413 }, + [47] = { 53.9, 26.1, 148, 413 }, + [48] = { 49.7, 26, 148, 413 }, + }, + ["lvl"] = "14-16", + }, + [2323] = { + ["coords"] = { + [1] = { 37.1, 95.6, 148, 413 }, + [2] = { 38.2, 95.6, 148, 413 }, + [3] = { 38.8, 94.8, 148, 413 }, + [4] = { 39.6, 94.6, 148, 413 }, + [5] = { 37, 94.6, 148, 413 }, + [6] = { 36.5, 94.3, 148, 413 }, + [7] = { 36.7, 93.6, 148, 413 }, + [8] = { 40.5, 93.6, 148, 413 }, + [9] = { 39.6, 93.6, 148, 413 }, + [10] = { 37.6, 92.9, 148, 413 }, + [11] = { 36.9, 92.8, 148, 413 }, + [12] = { 40.9, 92.6, 148, 413 }, + [13] = { 38.5, 92.3, 148, 413 }, + [14] = { 40.6, 92, 148, 413 }, + [15] = { 40.1, 91.9, 148, 413 }, + [16] = { 44.9, 91.8, 148, 413 }, + [17] = { 36.5, 91.6, 148, 413 }, + [18] = { 44.6, 91.6, 148, 413 }, + [19] = { 36.3, 91.5, 148, 413 }, + [20] = { 38, 91.4, 148, 413 }, + [21] = { 46, 91.4, 148, 413 }, + [22] = { 39.1, 91.3, 148, 413 }, + [23] = { 38, 90.3, 148, 413 }, + [24] = { 38.9, 90.1, 148, 413 }, + [25] = { 37.6, 90, 148, 413 }, + [26] = { 42.3, 89.7, 148, 413 }, + [27] = { 36, 89.6, 148, 413 }, + [28] = { 40.5, 89.5, 148, 413 }, + [29] = { 42.3, 89.3, 148, 413 }, + [30] = { 37.8, 89.1, 148, 413 }, + [31] = { 35.9, 89.1, 148, 413 }, + [32] = { 37, 88.2, 148, 413 }, + [33] = { 41.5, 88.1, 148, 413 }, + [34] = { 34.8, 88, 148, 413 }, + [35] = { 34.4, 86.8, 148, 413 }, + [36] = { 37, 83.6, 148, 413 }, + [37] = { 41.2, 83.3, 148, 413 }, + [38] = { 38.1, 83, 148, 413 }, + [39] = { 36, 82.4, 148, 413 }, + [40] = { 35, 82.3, 148, 413 }, + [41] = { 40.9, 82.3, 148, 413 }, + [42] = { 43.3, 82.2, 148, 413 }, + [43] = { 39.5, 81.9, 148, 413 }, + [44] = { 37, 81.6, 148, 413 }, + [45] = { 38.1, 81.2, 148, 413 }, + [46] = { 40.6, 81.1, 148, 413 }, + [47] = { 37.2, 80.6, 148, 413 }, + [48] = { 42.3, 80.5, 148, 413 }, + [49] = { 39, 80.4, 148, 413 }, + [50] = { 43.2, 80.2, 148, 413 }, + [51] = { 35.8, 80, 148, 413 }, + [52] = { 61.2, 14.9, 148, 413 }, + [53] = { 61.6, 14.2, 148, 413 }, + [54] = { 58.4, 14.2, 148, 413 }, + [55] = { 58.9, 13.3, 148, 413 }, + [56] = { 59.5, 12.6, 148, 413 }, + [57] = { 61.6, 12.3, 148, 413 }, + [58] = { 61.8, 12, 148, 413 }, + [59] = { 60.9, 10.3, 148, 413 }, + [60] = { 62.6, 9.2, 148, 413 }, + [61] = { 61.6, 8.9, 148, 413 }, + [62] = { 20.7, 13.4, 331, 413 }, + [63] = { 21.8, 13.4, 331, 413 }, + [64] = { 22.6, 12.5, 331, 413 }, + [65] = { 23.4, 12.3, 331, 413 }, + [66] = { 24.4, 11.1, 331, 413 }, + [67] = { 28.6, 73.2, 361, 413 }, + [68] = { 29.8, 72.8, 361, 413 }, + }, + ["lvl"] = "17-19", + }, + [2324] = { + ["coords"] = { + [1] = { 39.4, 56.7, 148, 413 }, + [2] = { 39.8, 56.2, 148, 413 }, + [3] = { 40.1, 56, 148, 413 }, + [4] = { 39.9, 55.5, 148, 413 }, + [5] = { 39.9, 54.6, 148, 413 }, + [6] = { 40.2, 54.4, 148, 413 }, + [7] = { 39.9, 54.4, 148, 413 }, + [8] = { 39.6, 54, 148, 413 }, + [9] = { 40.1, 53.9, 148, 413 }, + [10] = { 39, 53.8, 148, 413 }, + [11] = { 39.5, 53.6, 148, 413 }, + [12] = { 39.4, 53.2, 148, 413 }, + [13] = { 40.1, 52.8, 148, 413 }, + [14] = { 39, 52.7, 148, 413 }, + }, + ["lvl"] = "13-14", + }, + [2325] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "1", + }, + [2326] = { + ["coords"] = { + [1] = { 47.2, 52.6, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "8-12", + }, + [2327] = { + ["coords"] = { + [1] = { 43.1, 26.2, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [2329] = { + ["coords"] = { + [1] = { 43.4, 65.5, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "11", + }, + [2330] = { + ["coords"] = { + [1] = { 47.5, 64.4, 1519, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [2331] = { + ["coords"] = { + [1] = { 47.7, 64.4, 1519, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [2332] = { + ["coords"] = { + [1] = { 44.6, 84.7, 130, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "21", + }, + [2333] = { + ["coords"] = { + [1] = { 57.2, 69.5, 36, 300 }, + [2] = { 58.9, 9.3, 267, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [2334] = { + ["coords"] = { + [1] = { 61.6, 61.9, 1519, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [2335] = { + ["coords"] = { + [1] = { 29.7, 41.6, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2336] = { + ["coords"] = { + [1] = { 55.1, 27.9, 148, 413 }, + [2] = { 55, 27.7, 148, 413 }, + [3] = { 56.8, 27.6, 148, 413 }, + [4] = { 56.1, 27.4, 148, 413 }, + [5] = { 56.5, 27.4, 148, 413 }, + [6] = { 57.1, 27.3, 148, 413 }, + [7] = { 56.2, 27.1, 148, 413 }, + [8] = { 55.4, 27, 148, 413 }, + [9] = { 55.8, 27, 148, 413 }, + [10] = { 56.5, 26.9, 148, 413 }, + [11] = { 56.8, 26.9, 148, 413 }, + [12] = { 55.7, 26.7, 148, 413 }, + [13] = { 57.1, 26.6, 148, 413 }, + [14] = { 55.3, 26.6, 148, 413 }, + [15] = { 56, 26.6, 148, 413 }, + [16] = { 55.2, 26.5, 148, 413 }, + [17] = { 56.6, 26.5, 148, 413 }, + [18] = { 56.8, 26.5, 148, 413 }, + [19] = { 57.3, 26.3, 148, 413 }, + [20] = { 57, 26.2, 148, 413 }, + [21] = { 55.7, 26.2, 148, 413 }, + [22] = { 55.7, 25.9, 148, 413 }, + [23] = { 57.8, 25.8, 148, 413 }, + [24] = { 56.5, 25.8, 148, 413 }, + [25] = { 57.9, 25.6, 148, 413 }, + [26] = { 56.1, 25.4, 148, 413 }, + }, + ["lvl"] = "16-17", + }, + [2337] = { + ["coords"] = { + [1] = { 56.2, 26.4, 148, 413 }, + [2] = { 56.3, 26.3, 148, 413 }, + [3] = { 56.4, 26, 148, 413 }, + [4] = { 56.1, 26, 148, 413 }, + [5] = { 56.3, 25.9, 148, 413 }, + [6] = { 56.2, 25.8, 148, 413 }, + [7] = { 56.1, 25.7, 148, 413 }, + }, + ["lvl"] = "28-29", + }, + [2338] = { + ["coords"] = { + [1] = { 39.5, 88, 148, 413 }, + [2] = { 39.1, 87.8, 148, 413 }, + [3] = { 38.8, 87.8, 148, 413 }, + [4] = { 39.3, 87.7, 148, 413 }, + [5] = { 38.5, 87.5, 148, 413 }, + [6] = { 38.2, 87.3, 148, 413 }, + [7] = { 38, 87, 148, 413 }, + [8] = { 39.2, 86.5, 148, 413 }, + [9] = { 38.2, 86.3, 148, 413 }, + [10] = { 38.6, 86.3, 148, 413 }, + [11] = { 39, 86.1, 148, 413 }, + [12] = { 38, 86.1, 148, 413 }, + [13] = { 38.5, 86.1, 148, 413 }, + [14] = { 39.6, 86, 148, 413 }, + [15] = { 38.2, 85.8, 148, 413 }, + [16] = { 39.5, 85.6, 148, 413 }, + [17] = { 38.8, 85.4, 148, 413 }, + [18] = { 39.3, 85.2, 148, 413 }, + }, + ["lvl"] = "16-17", + }, + [2339] = { + ["coords"] = { + [1] = { 55.5, 36, 148, 413 }, + [2] = { 55.4, 35.9, 148, 413 }, + [3] = { 56.6, 35.1, 148, 413 }, + [4] = { 56.4, 35.1, 148, 413 }, + [5] = { 40.6, 9.7, 361, 413 }, + [6] = { 40.5, 9.6, 361, 413 }, + [7] = { 41.8, 8.7, 361, 413 }, + [8] = { 41.6, 8.6, 361, 413 }, + [9] = { 39.5, 88, 148, 413 }, + [10] = { 39.1, 87.8, 148, 413 }, + [11] = { 38.8, 87.8, 148, 413 }, + [12] = { 39.3, 87.7, 148, 413 }, + [13] = { 38.5, 87.5, 148, 413 }, + [14] = { 38.2, 87.3, 148, 413 }, + [15] = { 38, 87, 148, 413 }, + [16] = { 39.2, 86.5, 148, 413 }, + [17] = { 38.2, 86.3, 148, 413 }, + [18] = { 38.6, 86.3, 148, 413 }, + [19] = { 39, 86.1, 148, 413 }, + [20] = { 38, 86.1, 148, 413 }, + [21] = { 38.5, 86.1, 148, 413 }, + [22] = { 39.6, 86, 148, 413 }, + [23] = { 38.2, 85.8, 148, 413 }, + [24] = { 39.5, 85.6, 148, 413 }, + [25] = { 38.8, 85.4, 148, 413 }, + [26] = { 39.3, 85.2, 148, 413 }, + }, + ["lvl"] = "17-18", + }, + [2344] = { + ["coords"] = { + [1] = { 10.9, 50.6, 45, 300 }, + [2] = { 9.9, 50.1, 45, 300 }, + [3] = { 11, 50.1, 45, 300 }, + [4] = { 10.6, 49.9, 45, 300 }, + [5] = { 10.5, 49.7, 45, 300 }, + [6] = { 9.5, 49.5, 45, 300 }, + [7] = { 10.4, 49.3, 45, 300 }, + [8] = { 9.5, 49.2, 45, 300 }, + [9] = { 10.9, 48.8, 45, 300 }, + [10] = { 10.3, 48.7, 45, 300 }, + [11] = { 9, 48.6, 45, 300 }, + [12] = { 10.8, 48.6, 45, 300 }, + [13] = { 9.9, 48.5, 45, 300 }, + [14] = { 7.5, 48.5, 45, 300 }, + [15] = { 10.1, 48.3, 45, 300 }, + [16] = { 10.4, 48, 45, 300 }, + [17] = { 9.9, 47.7, 45, 300 }, + [18] = { 7.7, 47.3, 45, 300 }, + [19] = { 9.5, 47.2, 45, 300 }, + [20] = { 8.1, 47.1, 45, 300 }, + [21] = { 8.7, 47, 45, 300 }, + [22] = { 8.8, 46.4, 45, 300 }, + [23] = { 72.6, 82, 267, 300 }, + [24] = { 72.7, 81.9, 267, 300 }, + [25] = { 71.6, 81.3, 267, 300 }, + [26] = { 72.8, 81.3, 267, 300 }, + [27] = { 72.4, 81.1, 267, 300 }, + [28] = { 72.3, 80.9, 267, 300 }, + [29] = { 71.2, 80.6, 267, 300 }, + [30] = { 72.1, 80.5, 267, 300 }, + [31] = { 71.1, 80.4, 267, 300 }, + [32] = { 72.7, 79.9, 267, 300 }, + [33] = { 72, 79.8, 267, 300 }, + [34] = { 70.5, 79.7, 267, 300 }, + [35] = { 72.5, 79.6, 267, 300 }, + [36] = { 71.6, 79.6, 267, 300 }, + [37] = { 68.9, 79.5, 267, 300 }, + [38] = { 71.8, 79.4, 267, 300 }, + [39] = { 72.2, 79, 267, 300 }, + [40] = { 71.5, 78.7, 267, 300 }, + [41] = { 69, 78.2, 267, 300 }, + [42] = { 71.1, 78.1, 267, 300 }, + [43] = { 69.5, 77.9, 267, 300 }, + [44] = { 70.2, 77.9, 267, 300 }, + [45] = { 70.3, 77.2, 267, 300 }, + [46] = { 70, 75, 267, 300 }, + [47] = { 70.1, 72.6, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "28-29", + ["rnk"] = "1", + }, + [2345] = { + ["coords"] = { + [1] = { 9.9, 50.1, 45, 300 }, + [2] = { 10.8, 49.1, 45, 300 }, + [3] = { 9.8, 49.1, 45, 300 }, + [4] = { 10.5, 48.7, 45, 300 }, + [5] = { 8.5, 48.3, 45, 300 }, + [6] = { 9.1, 47.6, 45, 300 }, + [7] = { 9.8, 47.6, 45, 300 }, + [8] = { 8.6, 47.5, 45, 300 }, + [9] = { 8.5, 45.8, 45, 300 }, + [10] = { 9.9, 44.5, 45, 300 }, + [11] = { 9.7, 43.8, 45, 300 }, + [12] = { 71.6, 81.4, 267, 300 }, + [13] = { 72.6, 80.2, 267, 300 }, + [14] = { 71.5, 80.2, 267, 300 }, + [15] = { 72.2, 79.7, 267, 300 }, + [16] = { 70, 79.4, 267, 300 }, + [17] = { 70.7, 78.6, 267, 300 }, + [18] = { 71.5, 78.6, 267, 300 }, + [19] = { 70.1, 78.4, 267, 300 }, + [20] = { 69.3, 76.6, 267, 300 }, + [21] = { 70, 76.5, 267, 300 }, + [22] = { 71.5, 75.1, 267, 300 }, + [23] = { 71.3, 74.2, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "29-30", + ["rnk"] = "1", + }, + [2346] = { + ["coords"] = { + [1] = { 10.6, 49.6, 45, 300 }, + [2] = { 10.9, 49.5, 45, 300 }, + [3] = { 10.1, 49.3, 45, 300 }, + [4] = { 10.4, 48.9, 45, 300 }, + [5] = { 9.5, 48, 45, 300 }, + [6] = { 9.1, 45.1, 45, 300 }, + [7] = { 72.4, 80.8, 267, 300 }, + [8] = { 72.7, 80.7, 267, 300 }, + [9] = { 71.8, 80.5, 267, 300 }, + [10] = { 72.1, 80.1, 267, 300 }, + [11] = { 71.1, 79, 267, 300 }, + [12] = { 70.7, 75.8, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "29-30", + ["rnk"] = "1", + }, + [2347] = { + ["coords"] = { + [1] = { 23.9, 14.8, 45, 300 }, + [2] = { 87.3, 41.7, 267, 300 }, + [3] = { 77.4, 31.4, 267, 300 }, + }, + ["lvl"] = "40", + }, + [2348] = { + ["coords"] = { + [1] = { 12.2, 40.3, 45, 300 }, + [2] = { 10.8, 39.5, 45, 300 }, + [3] = { 11.4, 38.1, 45, 300 }, + [4] = { 12.9, 38, 45, 300 }, + [5] = { 66.4, 77.6, 267, 300 }, + [6] = { 63.9, 73.6, 267, 300 }, + [7] = { 66.6, 72.8, 267, 300 }, + [8] = { 66, 72.6, 267, 300 }, + [9] = { 62.8, 72.2, 267, 300 }, + [10] = { 65.8, 70.9, 267, 300 }, + [11] = { 63.4, 70.8, 267, 300 }, + [12] = { 74.2, 70.4, 267, 300 }, + [13] = { 68.9, 69.9, 267, 300 }, + [14] = { 72.5, 69.5, 267, 300 }, + [15] = { 60.7, 68.6, 267, 300 }, + [16] = { 68.3, 67.9, 267, 300 }, + [17] = { 73.2, 67.9, 267, 300 }, + [18] = { 75, 67.8, 267, 300 }, + [19] = { 66.5, 67.8, 267, 300 }, + [20] = { 63.9, 66.4, 267, 300 }, + [21] = { 67.3, 65.9, 267, 300 }, + [22] = { 61.1, 63.2, 267, 300 }, + [23] = { 58.6, 61.8, 267, 300 }, + [24] = { 69.2, 60.5, 267, 300 }, + [25] = { 60.4, 57.9, 267, 300 }, + [26] = { 59.4, 55.5, 267, 300 }, + [27] = { 61.2, 55.4, 267, 300 }, + [28] = { 62, 54, 267, 300 }, + [29] = { 60.2, 52.7, 267, 300 }, + [30] = { 57, 52.4, 267, 300 }, + }, + ["lvl"] = "26-27", + }, + [2349] = { + ["coords"] = { + [1] = { 19.7, 99.2, 36, 300 }, + [2] = { 20.2, 97, 36, 300 }, + [3] = { 32.2, 96.8, 36, 300 }, + [4] = { 23.2, 95.8, 36, 300 }, + [5] = { 69.3, 95.7, 36, 300 }, + [6] = { 21.3, 94.6, 36, 300 }, + [7] = { 75.6, 92.8, 36, 300 }, + [8] = { 29.4, 92.7, 36, 300 }, + [9] = { 32.1, 92.1, 36, 300 }, + [10] = { 22.4, 91.8, 36, 300 }, + [11] = { 18.4, 91.8, 36, 300 }, + [12] = { 22.5, 91.7, 36, 300 }, + [13] = { 69.7, 90.5, 36, 300 }, + [14] = { 15.8, 88.8, 36, 300 }, + [15] = { 24.1, 88, 36, 300 }, + [16] = { 75.3, 87, 36, 300 }, + [17] = { 14.6, 86.3, 36, 300 }, + [18] = { 26.6, 83.6, 36, 300 }, + [19] = { 72.2, 83, 36, 300 }, + [20] = { 71.3, 82.6, 36, 300 }, + [21] = { 22.6, 82, 36, 300 }, + [22] = { 14.6, 81.7, 36, 300 }, + [23] = { 24.9, 79.6, 36, 300 }, + [24] = { 28.8, 79.5, 36, 300 }, + [25] = { 24.2, 79.1, 36, 300 }, + [26] = { 30.1, 78.2, 36, 300 }, + [27] = { 23.4, 77.7, 36, 300 }, + [28] = { 26.2, 76.2, 36, 300 }, + [29] = { 25.9, 74.3, 36, 300 }, + [30] = { 28.5, 73.5, 36, 300 }, + [31] = { 22.4, 73.4, 36, 300 }, + [32] = { 27.7, 69.9, 36, 300 }, + [33] = { 25.6, 66, 36, 300 }, + [34] = { 25, 63.3, 36, 300 }, + [35] = { 23.7, 56.6, 36, 300 }, + [36] = { 15.1, 35.1, 45, 300 }, + [37] = { 11.6, 33.9, 45, 300 }, + [38] = { 15.7, 33.4, 45, 300 }, + [39] = { 13.6, 32.8, 45, 300 }, + [40] = { 16, 31.7, 45, 300 }, + [41] = { 14.2, 31, 45, 300 }, + [42] = { 14.5, 27.3, 45, 300 }, + [43] = { 19.6, 25, 45, 300 }, + [44] = { 17.9, 24.1, 45, 300 }, + [45] = { 21.4, 22.6, 45, 300 }, + [46] = { 20.2, 21.3, 45, 300 }, + [47] = { 21.4, 21.3, 45, 300 }, + [48] = { 23.5, 18.3, 45, 300 }, + [49] = { 21, 18.3, 45, 300 }, + [50] = { 26.4, 14.6, 45, 300 }, + [51] = { 24.6, 14.5, 45, 300 }, + [52] = { 26, 13.5, 45, 300 }, + [53] = { 27.6, 67.8, 267, 300 }, + [54] = { 29.6, 66.4, 267, 300 }, + [55] = { 33, 66, 267, 300 }, + [56] = { 38.6, 65.5, 267, 300 }, + [57] = { 41.3, 65.2, 267, 300 }, + [58] = { 27.8, 65.1, 267, 300 }, + [59] = { 33.3, 64.9, 267, 300 }, + [60] = { 32, 64.7, 267, 300 }, + [61] = { 77.4, 64.5, 267, 300 }, + [62] = { 40.9, 64.4, 267, 300 }, + [63] = { 31.8, 63.6, 267, 300 }, + [64] = { 36.4, 63.5, 267, 300 }, + [65] = { 29, 63.3, 267, 300 }, + [66] = { 33.8, 63.2, 267, 300 }, + [67] = { 73.5, 63.1, 267, 300 }, + [68] = { 32.2, 62.7, 267, 300 }, + [69] = { 78.1, 62.5, 267, 300 }, + [70] = { 75.7, 61.9, 267, 300 }, + [71] = { 71.4, 61.9, 267, 300 }, + [72] = { 44.6, 61.6, 267, 300 }, + [73] = { 31, 61.3, 267, 300 }, + [74] = { 42.7, 61.1, 267, 300 }, + [75] = { 78.4, 60.6, 267, 300 }, + [76] = { 70.3, 60.3, 267, 300 }, + [77] = { 76.4, 59.9, 267, 300 }, + [78] = { 39.6, 59.9, 267, 300 }, + [79] = { 42.5, 59.4, 267, 300 }, + [80] = { 36.1, 59, 267, 300 }, + [81] = { 31.7, 58.9, 267, 300 }, + [82] = { 66.7, 58.8, 267, 300 }, + [83] = { 24.7, 58.6, 267, 300 }, + [84] = { 40.3, 58.3, 267, 300 }, + [85] = { 64.9, 57.8, 267, 300 }, + [86] = { 34.1, 57.4, 267, 300 }, + [87] = { 23.9, 57.1, 267, 300 }, + [88] = { 66.1, 57, 267, 300 }, + [89] = { 24.5, 57, 267, 300 }, + [90] = { 35.7, 56.7, 267, 300 }, + [91] = { 29.2, 56.5, 267, 300 }, + [92] = { 36.8, 55.9, 267, 300 }, + [93] = { 73.3, 55.8, 267, 300 }, + [94] = { 32.7, 55.8, 267, 300 }, + [95] = { 76.7, 55.7, 267, 300 }, + [96] = { 62.9, 55.6, 267, 300 }, + [97] = { 67.2, 55.6, 267, 300 }, + [98] = { 38.4, 55.5, 267, 300 }, + [99] = { 29.7, 54.2, 267, 300 }, + [100] = { 36.9, 54.2, 267, 300 }, + [101] = { 28.7, 54.1, 267, 300 }, + [102] = { 34.8, 54.1, 267, 300 }, + [103] = { 27.5, 54.1, 267, 300 }, + [104] = { 75.8, 54.1, 267, 300 }, + [105] = { 23.5, 54, 267, 300 }, + [106] = { 73.5, 53.8, 267, 300 }, + [107] = { 82.5, 53.1, 267, 300 }, + [108] = { 32.7, 52.9, 267, 300 }, + [109] = { 69, 52.5, 267, 300 }, + [110] = { 65.1, 52.2, 267, 300 }, + [111] = { 41.3, 52.2, 267, 300 }, + [112] = { 80.6, 52.1, 267, 300 }, + [113] = { 70.3, 52, 267, 300 }, + [114] = { 40.3, 51.7, 267, 300 }, + [115] = { 38.1, 51.6, 267, 300 }, + [116] = { 77.6, 51.3, 267, 300 }, + [117] = { 23.5, 51, 267, 300 }, + [118] = { 27.7, 50.7, 267, 300 }, + [119] = { 73, 50.5, 267, 300 }, + [120] = { 84.5, 50.4, 267, 300 }, + [121] = { 71.4, 50.3, 267, 300 }, + [122] = { 40.2, 49.6, 267, 300 }, + [123] = { 64, 49.2, 267, 300 }, + [124] = { 26.6, 49, 267, 300 }, + [125] = { 83.1, 49, 267, 300 }, + [126] = { 84.5, 49, 267, 300 }, + [127] = { 68.7, 48.9, 267, 300 }, + [128] = { 60.9, 47.8, 267, 300 }, + [129] = { 61.9, 46.5, 267, 300 }, + [130] = { 86.9, 45.6, 267, 300 }, + [131] = { 84, 45.5, 267, 300 }, + [132] = { 63.7, 44.8, 267, 300 }, + [133] = { 90.2, 41.4, 267, 300 }, + [134] = { 88.1, 41.3, 267, 300 }, + [135] = { 89.6, 40.2, 267, 300 }, + [136] = { 67.3, 38.2, 267, 300 }, + [137] = { 26.2, 36.9, 267, 300 }, + [138] = { 68.2, 36.7, 267, 300 }, + [139] = { 85.6, 36.1, 267, 300 }, + [140] = { 84, 35.4, 267, 300 }, + [141] = { 26.1, 35.3, 267, 300 }, + [142] = { 75.3, 34, 267, 300 }, + [143] = { 26.6, 33.3, 267, 300 }, + [144] = { 37, 33.2, 267, 300 }, + [145] = { 29.1, 32.3, 267, 300 }, + [146] = { 69.5, 32.1, 267, 300 }, + [147] = { 81.5, 32, 267, 300 }, + [148] = { 79, 31.7, 267, 300 }, + [149] = { 27.5, 31.2, 267, 300 }, + [150] = { 75, 29.6, 267, 300 }, + [151] = { 34.6, 29.6, 267, 300 }, + [152] = { 36.9, 29, 267, 300 }, + [153] = { 28.5, 28.8, 267, 300 }, + [154] = { 24.9, 28.8, 267, 300 }, + [155] = { 28.5, 28.7, 267, 300 }, + [156] = { 69.8, 27.6, 267, 300 }, + [157] = { 22.7, 26.1, 267, 300 }, + [158] = { 30, 25.4, 267, 300 }, + [159] = { 74.8, 24.6, 267, 300 }, + [160] = { 21.6, 23.9, 267, 300 }, + [161] = { 32.1, 21.6, 267, 300 }, + [162] = { 72.1, 21.1, 267, 300 }, + [163] = { 71.3, 20.7, 267, 300 }, + [164] = { 28.6, 20.2, 267, 300 }, + [165] = { 21.6, 19.9, 267, 300 }, + [166] = { 30.7, 18.1, 267, 300 }, + [167] = { 34.1, 18, 267, 300 }, + [168] = { 30, 17.7, 267, 300 }, + [169] = { 35.2, 16.9, 267, 300 }, + [170] = { 29.3, 16.4, 267, 300 }, + [171] = { 31.8, 15.1, 267, 300 }, + [172] = { 31.5, 13.4, 267, 300 }, + [173] = { 33.8, 12.8, 267, 300 }, + [174] = { 28.4, 12.7, 267, 300 }, + }, + ["lvl"] = "24-25", + }, + [2350] = { + ["coords"] = { + [1] = { 58, 99.1, 36, 300 }, + [2] = { 57.2, 98.9, 36, 300 }, + [3] = { 72, 98, 36, 300 }, + [4] = { 63.6, 95.5, 36, 300 }, + [5] = { 60.5, 94.9, 36, 300 }, + [6] = { 54.5, 93.3, 36, 300 }, + [7] = { 56.2, 92, 36, 300 }, + [8] = { 64.9, 90.1, 36, 300 }, + [9] = { 64.4, 88.2, 36, 300 }, + [10] = { 55.9, 86.6, 36, 300 }, + [11] = { 65.6, 83.4, 36, 300 }, + [12] = { 54.8, 77.8, 36, 300 }, + [13] = { 59.4, 75.9, 36, 300 }, + [14] = { 51.6, 75.6, 36, 300 }, + [15] = { 62.7, 75.3, 36, 300 }, + [16] = { 61.4, 74.6, 36, 300 }, + [17] = { 57.7, 74.6, 36, 300 }, + [18] = { 51.3, 74.5, 36, 300 }, + [19] = { 55, 74.4, 36, 300 }, + [20] = { 68, 74.2, 36, 300 }, + [21] = { 62.9, 71.1, 36, 300 }, + [22] = { 67.1, 70.6, 36, 300 }, + [23] = { 54.5, 70.3, 36, 300 }, + [24] = { 66.7, 69.9, 36, 300 }, + [25] = { 69.9, 69.2, 36, 300 }, + [26] = { 23, 53.5, 267, 300 }, + [27] = { 19.7, 53.4, 267, 300 }, + [28] = { 18.1, 52.9, 267, 300 }, + [29] = { 21.2, 51.8, 267, 300 }, + [30] = { 78.5, 50.6, 267, 300 }, + [31] = { 19.1, 47.8, 267, 300 }, + [32] = { 70.4, 44.6, 267, 300 }, + [33] = { 20.4, 43.3, 267, 300 }, + [34] = { 23.5, 43.1, 267, 300 }, + [35] = { 71.8, 41.2, 267, 300 }, + [36] = { 62.2, 39.8, 267, 300 }, + [37] = { 63.2, 39.3, 267, 300 }, + [38] = { 25.6, 39.3, 267, 300 }, + [39] = { 26.6, 38.9, 267, 300 }, + [40] = { 27.8, 38.9, 267, 300 }, + [41] = { 60.9, 38.2, 267, 300 }, + [42] = { 70.8, 38.2, 267, 300 }, + [43] = { 71.4, 36.6, 267, 300 }, + [44] = { 63.3, 36.3, 267, 300 }, + [45] = { 59.6, 35.2, 267, 300 }, + [46] = { 58.9, 35, 267, 300 }, + [47] = { 71.9, 34.2, 267, 300 }, + [48] = { 64.5, 32, 267, 300 }, + [49] = { 61.8, 31.5, 267, 300 }, + [50] = { 56.5, 30.1, 267, 300 }, + [51] = { 58.1, 28.9, 267, 300 }, + [52] = { 65.7, 27.2, 267, 300 }, + [53] = { 65.2, 25.6, 267, 300 }, + [54] = { 57.8, 24.2, 267, 300 }, + [55] = { 66.2, 21.4, 267, 300 }, + [56] = { 56.8, 16.5, 267, 300 }, + [57] = { 60.8, 14.8, 267, 300 }, + [58] = { 54, 14.6, 267, 300 }, + [59] = { 63.7, 14.3, 267, 300 }, + [60] = { 62.6, 13.7, 267, 300 }, + [61] = { 59.4, 13.7, 267, 300 }, + [62] = { 53.8, 13.6, 267, 300 }, + [63] = { 57, 13.5, 267, 300 }, + [64] = { 68.3, 13.3, 267, 300 }, + [65] = { 63.9, 10.7, 267, 300 }, + [66] = { 67.5, 10.2, 267, 300 }, + [67] = { 56.5, 10, 267, 300 }, + [68] = { 67.2, 9.6, 267, 300 }, + [69] = { 70.1, 9, 267, 300 }, + }, + ["lvl"] = "20-21", + }, + [2351] = { + ["coords"] = { + [1] = { 66, 98.5, 36, 300 }, + [2] = { 63.4, 97.7, 36, 300 }, + [3] = { 56, 97.4, 36, 300 }, + [4] = { 57.4, 96.4, 36, 300 }, + [5] = { 58.2, 94.3, 36, 300 }, + [6] = { 62, 93.4, 36, 300 }, + [7] = { 54.9, 92, 36, 300 }, + [8] = { 66.3, 91.9, 36, 300 }, + [9] = { 63.4, 91.8, 36, 300 }, + [10] = { 55.9, 91.3, 36, 300 }, + [11] = { 54.9, 91.1, 36, 300 }, + [12] = { 66.7, 88.5, 36, 300 }, + [13] = { 55.7, 85.9, 36, 300 }, + [14] = { 65.4, 85.3, 36, 300 }, + [15] = { 66.5, 85.2, 36, 300 }, + [16] = { 66.6, 81.3, 36, 300 }, + [17] = { 53.2, 77.2, 36, 300 }, + [18] = { 66.2, 76.9, 36, 300 }, + [19] = { 55.7, 76.2, 36, 300 }, + [20] = { 52.5, 74.2, 36, 300 }, + [21] = { 67.9, 72.6, 36, 300 }, + [22] = { 62.1, 72, 36, 300 }, + [23] = { 68.5, 69.8, 36, 300 }, + [24] = { 51.9, 69.1, 36, 300 }, + [25] = { 54.1, 68.8, 36, 300 }, + [26] = { 63.1, 68.7, 36, 300 }, + [27] = { 62.1, 66.2, 36, 300 }, + [28] = { 69.9, 79.4, 130, 300 }, + [29] = { 71.1, 78.4, 130, 300 }, + [30] = { 22, 56.5, 267, 300 }, + [31] = { 20.2, 53.6, 267, 300 }, + [32] = { 20, 52.2, 267, 300 }, + [33] = { 19, 49.8, 267, 300 }, + [34] = { 23.4, 48.2, 267, 300 }, + [35] = { 30.7, 48.1, 267, 300 }, + [36] = { 17.3, 44.8, 267, 300 }, + [37] = { 23.4, 43.9, 267, 300 }, + [38] = { 18.9, 43.6, 267, 300 }, + [39] = { 21.5, 42.8, 267, 300 }, + [40] = { 26.4, 41.8, 267, 300 }, + [41] = { 26.7, 41.6, 267, 300 }, + [42] = { 24.4, 40.1, 267, 300 }, + [43] = { 26.3, 38.2, 267, 300 }, + [44] = { 64.4, 37.8, 267, 300 }, + [45] = { 61.9, 36.7, 267, 300 }, + [46] = { 59.5, 36.6, 267, 300 }, + [47] = { 61.5, 36, 267, 300 }, + [48] = { 65.4, 35.9, 267, 300 }, + [49] = { 66.6, 34.6, 267, 300 }, + [50] = { 64.4, 34, 267, 300 }, + [51] = { 57.9, 33.7, 267, 300 }, + [52] = { 59.1, 32.7, 267, 300 }, + [53] = { 59.8, 30.9, 267, 300 }, + [54] = { 63.1, 30.1, 267, 300 }, + [55] = { 56.9, 28.9, 267, 300 }, + [56] = { 66.9, 28.8, 267, 300 }, + [57] = { 64.4, 28.7, 267, 300 }, + [58] = { 57.8, 28.3, 267, 300 }, + [59] = { 56.9, 28.1, 267, 300 }, + [60] = { 67.2, 25.9, 267, 300 }, + [61] = { 57.6, 23.6, 267, 300 }, + [62] = { 66.1, 23.1, 267, 300 }, + [63] = { 67, 23, 267, 300 }, + [64] = { 67.1, 19.6, 267, 300 }, + [65] = { 55.4, 16, 267, 300 }, + [66] = { 66.8, 15.7, 267, 300 }, + [67] = { 57.6, 15.1, 267, 300 }, + [68] = { 54.8, 13.4, 267, 300 }, + [69] = { 68.2, 12, 267, 300 }, + [70] = { 63.2, 11.5, 267, 300 }, + [71] = { 68.8, 9.5, 267, 300 }, + [72] = { 54.2, 8.9, 267, 300 }, + [73] = { 56.2, 8.6, 267, 300 }, + [74] = { 64.1, 8.6, 267, 300 }, + [75] = { 63.2, 6.4, 267, 300 }, + }, + ["lvl"] = "21-22", + }, + [2352] = { + ["coords"] = { + [1] = { 51.2, 58.9, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2354] = { + ["coords"] = { + [1] = { 71.1, 98.8, 36, 300 }, + [2] = { 41.7, 98.8, 36, 300 }, + [3] = { 36.8, 98.3, 36, 300 }, + [4] = { 70.4, 97.2, 36, 300 }, + [5] = { 47, 97.2, 36, 300 }, + [6] = { 49.3, 96.8, 36, 300 }, + [7] = { 48.7, 95, 36, 300 }, + [8] = { 50.4, 94.2, 36, 300 }, + [9] = { 54.8, 52.3, 267, 300 }, + [10] = { 44.5, 50.7, 267, 300 }, + [11] = { 76.5, 49.1, 267, 300 }, + [12] = { 53.1, 47.9, 267, 300 }, + [13] = { 46.6, 47.2, 267, 300 }, + [14] = { 48.1, 47.2, 267, 300 }, + [15] = { 45.7, 46.8, 267, 300 }, + [16] = { 54.8, 46.4, 267, 300 }, + [17] = { 48.6, 46.2, 267, 300 }, + [18] = { 52.3, 46, 267, 300 }, + [19] = { 40.4, 44.8, 267, 300 }, + [20] = { 49.9, 44.7, 267, 300 }, + [21] = { 45.6, 43.6, 267, 300 }, + [22] = { 56.3, 43.2, 267, 300 }, + [23] = { 49.5, 43.1, 267, 300 }, + [24] = { 40.6, 42.6, 267, 300 }, + [25] = { 53.3, 42.5, 267, 300 }, + [26] = { 54.4, 42.2, 267, 300 }, + [27] = { 38.8, 41.8, 267, 300 }, + [28] = { 44.3, 41.4, 267, 300 }, + [29] = { 45.4, 40.3, 267, 300 }, + [30] = { 56.9, 40.3, 267, 300 }, + [31] = { 56.6, 39.6, 267, 300 }, + [32] = { 54.9, 39.5, 267, 300 }, + [33] = { 66.5, 39.5, 267, 300 }, + [34] = { 40.9, 39.5, 267, 300 }, + [35] = { 46.5, 38.8, 267, 300 }, + [36] = { 44.6, 38.6, 267, 300 }, + [37] = { 51.5, 37.8, 267, 300 }, + [38] = { 38.5, 37.7, 267, 300 }, + [39] = { 44.7, 37.1, 267, 300 }, + [40] = { 49.1, 37, 267, 300 }, + [41] = { 41.2, 36.8, 267, 300 }, + [42] = { 40.1, 36.8, 267, 300 }, + [43] = { 47.8, 36.4, 267, 300 }, + [44] = { 70.1, 35.5, 267, 300 }, + [45] = { 71.1, 34.9, 267, 300 }, + [46] = { 45.4, 34.9, 267, 300 }, + [47] = { 74, 34.5, 267, 300 }, + [48] = { 41, 34.5, 267, 300 }, + [49] = { 70.5, 33.5, 267, 300 }, + [50] = { 49.9, 33.5, 267, 300 }, + [51] = { 52, 33.2, 267, 300 }, + [52] = { 51.5, 31.5, 267, 300 }, + [53] = { 52.9, 30.9, 267, 300 }, + }, + ["lvl"] = "22-23", + }, + [2356] = { + ["coords"] = { + [1] = { 20.7, 98.1, 36, 300 }, + [2] = { 30.9, 97.3, 36, 300 }, + [3] = { 23.5, 95.8, 36, 300 }, + [4] = { 32.4, 94.2, 36, 300 }, + [5] = { 22.1, 94.2, 36, 300 }, + [6] = { 22.6, 92.8, 36, 300 }, + [7] = { 74.2, 92.7, 36, 300 }, + [8] = { 69.1, 92, 36, 300 }, + [9] = { 75.4, 90.3, 36, 300 }, + [10] = { 70.4, 88.4, 36, 300 }, + [11] = { 73.8, 84.8, 36, 300 }, + [12] = { 70.7, 84.5, 36, 300 }, + [13] = { 70.2, 84, 36, 300 }, + [14] = { 15.4, 83.2, 36, 300 }, + [15] = { 23.8, 82.8, 36, 300 }, + [16] = { 26.9, 81.9, 36, 300 }, + [17] = { 24.7, 81.1, 36, 300 }, + [18] = { 26.3, 78, 36, 300 }, + [19] = { 24.8, 77.1, 36, 300 }, + [20] = { 23.3, 76, 36, 300 }, + [21] = { 21.3, 75.7, 36, 300 }, + [22] = { 21.6, 73, 36, 300 }, + [23] = { 21.2, 69.1, 36, 300 }, + [24] = { 28.3, 69.1, 36, 300 }, + [25] = { 25, 64.7, 36, 300 }, + [26] = { 24.8, 59.4, 36, 300 }, + [27] = { 12.8, 37, 45, 300 }, + [28] = { 14.8, 36.9, 45, 300 }, + [29] = { 16.7, 30.1, 45, 300 }, + [30] = { 15.5, 26.8, 45, 300 }, + [31] = { 20.5, 25.8, 45, 300 }, + [32] = { 19, 24.4, 45, 300 }, + [33] = { 16.2, 24.3, 45, 300 }, + [34] = { 19.4, 24, 45, 300 }, + [35] = { 22.4, 20, 45, 300 }, + [36] = { 20.5, 19.4, 45, 300 }, + [37] = { 26.3, 16.2, 45, 300 }, + [38] = { 26, 15.7, 45, 300 }, + [39] = { 24.9, 14.7, 45, 300 }, + [40] = { 24.2, 14.2, 45, 300 }, + [41] = { 71.9, 66.9, 267, 300 }, + [42] = { 74.9, 66.7, 267, 300 }, + [43] = { 77.1, 66.5, 267, 300 }, + [44] = { 28.9, 66.1, 267, 300 }, + [45] = { 37.7, 65.7, 267, 300 }, + [46] = { 72.2, 65.6, 267, 300 }, + [47] = { 29.6, 65.6, 267, 300 }, + [48] = { 30.6, 65.2, 267, 300 }, + [49] = { 33.1, 64.5, 267, 300 }, + [50] = { 35, 64.4, 267, 300 }, + [51] = { 43, 63.5, 267, 300 }, + [52] = { 29.4, 62.9, 267, 300 }, + [53] = { 38.3, 62.8, 267, 300 }, + [54] = { 71, 62.4, 267, 300 }, + [55] = { 73, 61.9, 267, 300 }, + [56] = { 35.3, 61.6, 267, 300 }, + [57] = { 68.1, 61.4, 267, 300 }, + [58] = { 40.1, 61, 267, 300 }, + [59] = { 34.9, 60.2, 267, 300 }, + [60] = { 45.2, 60.1, 267, 300 }, + [61] = { 73.7, 59.9, 267, 300 }, + [62] = { 79.3, 58.8, 267, 300 }, + [63] = { 37.6, 58.4, 267, 300 }, + [64] = { 41.6, 58.3, 267, 300 }, + [65] = { 24.2, 57.7, 267, 300 }, + [66] = { 45, 57.6, 267, 300 }, + [67] = { 75.1, 57.5, 267, 300 }, + [68] = { 40.1, 57.1, 267, 300 }, + [69] = { 39.8, 56.7, 267, 300 }, + [70] = { 34.5, 56.6, 267, 300 }, + [71] = { 30.5, 56.5, 267, 300 }, + [72] = { 46.7, 56.4, 267, 300 }, + [73] = { 29.4, 55.4, 267, 300 }, + [74] = { 32.4, 55.3, 267, 300 }, + [75] = { 77.8, 55.1, 267, 300 }, + [76] = { 34.9, 54.3, 267, 300 }, + [77] = { 25.7, 54.2, 267, 300 }, + [78] = { 83.5, 54, 267, 300 }, + [79] = { 39, 53.2, 267, 300 }, + [80] = { 72.1, 52.7, 267, 300 }, + [81] = { 30.6, 52.6, 267, 300 }, + [82] = { 28.7, 52.4, 267, 300 }, + [83] = { 81.8, 52.4, 267, 300 }, + [84] = { 74.8, 52.4, 267, 300 }, + [85] = { 26.5, 52.4, 267, 300 }, + [86] = { 43, 52.4, 267, 300 }, + [87] = { 78.6, 52.3, 267, 300 }, + [88] = { 24.6, 52.1, 267, 300 }, + [89] = { 82.2, 52, 267, 300 }, + [90] = { 25.2, 51.3, 267, 300 }, + [91] = { 39.1, 50.9, 267, 300 }, + [92] = { 36.1, 50.9, 267, 300 }, + [93] = { 70.3, 50.7, 267, 300 }, + [94] = { 78.5, 50.5, 267, 300 }, + [95] = { 63.1, 50.3, 267, 300 }, + [96] = { 38.1, 49.4, 267, 300 }, + [97] = { 62.4, 48.9, 267, 300 }, + [98] = { 63.4, 48.3, 267, 300 }, + [99] = { 41.2, 47.7, 267, 300 }, + [100] = { 65.3, 47.6, 267, 300 }, + [101] = { 85.6, 47.6, 267, 300 }, + [102] = { 42.3, 47.5, 267, 300 }, + [103] = { 83.5, 46.8, 267, 300 }, + [104] = { 63, 46.1, 267, 300 }, + [105] = { 90, 43.2, 267, 300 }, + [106] = { 89.7, 42.7, 267, 300 }, + [107] = { 88.4, 41.5, 267, 300 }, + [108] = { 87.7, 40.9, 267, 300 }, + [109] = { 87.8, 39.8, 267, 300 }, + [110] = { 85.8, 39.1, 267, 300 }, + [111] = { 87, 37.9, 267, 300 }, + [112] = { 82.9, 36.6, 267, 300 }, + [113] = { 26.7, 36.3, 267, 300 }, + [114] = { 79.3, 36.1, 267, 300 }, + [115] = { 87.1, 35.9, 267, 300 }, + [116] = { 80.2, 35.7, 267, 300 }, + [117] = { 81.5, 35.6, 267, 300 }, + [118] = { 85, 35.2, 267, 300 }, + [119] = { 27, 34.3, 267, 300 }, + [120] = { 35.9, 33.5, 267, 300 }, + [121] = { 74.5, 33.5, 267, 300 }, + [122] = { 84.7, 33.3, 267, 300 }, + [123] = { 78.6, 32.9, 267, 300 }, + [124] = { 29.4, 32.2, 267, 300 }, + [125] = { 76.6, 31.8, 267, 300 }, + [126] = { 37.2, 30.8, 267, 300 }, + [127] = { 28.2, 30.8, 267, 300 }, + [128] = { 77.3, 30.7, 267, 300 }, + [129] = { 28.6, 29.6, 267, 300 }, + [130] = { 73.8, 29.5, 267, 300 }, + [131] = { 69.3, 29, 267, 300 }, + [132] = { 74.8, 27.5, 267, 300 }, + [133] = { 70.5, 25.7, 267, 300 }, + [134] = { 73.4, 22.6, 267, 300 }, + [135] = { 70.7, 22.4, 267, 300 }, + [136] = { 70.3, 22, 267, 300 }, + [137] = { 22.4, 21.3, 267, 300 }, + [138] = { 29.6, 20.9, 267, 300 }, + [139] = { 32.4, 20.1, 267, 300 }, + [140] = { 30.5, 19.4, 267, 300 }, + [141] = { 31.9, 16.7, 267, 300 }, + [142] = { 30.6, 15.9, 267, 300 }, + [143] = { 29.3, 14.9, 267, 300 }, + [144] = { 27.5, 14.7, 267, 300 }, + }, + ["lvl"] = "25-26", + }, + [2357] = { + ["coords"] = { + [1] = { 52.2, 55.5, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "32", + }, + [2358] = { + ["coords"] = { + [1] = { 11, 78.7, 36, 300 }, + [2] = { 15.1, 78.6, 36, 300 }, + [3] = { 18.8, 77.1, 36, 300 }, + [4] = { 15.1, 76.4, 36, 300 }, + [5] = { 12.9, 76.3, 36, 300 }, + [6] = { 17.9, 76.2, 36, 300 }, + [7] = { 11.5, 75.9, 36, 300 }, + [8] = { 19.6, 75.5, 36, 300 }, + [9] = { 15.9, 75.5, 36, 300 }, + [10] = { 18.9, 75, 36, 300 }, + [11] = { 18.4, 74.1, 36, 300 }, + [12] = { 21.3, 63.8, 36, 300 }, + [13] = { 21.8, 61.2, 36, 300 }, + [14] = { 22.4, 60.4, 36, 300 }, + [15] = { 20.4, 59.4, 36, 300 }, + [16] = { 22, 57.9, 36, 300 }, + [17] = { 19.6, 57.8, 36, 300 }, + [18] = { 21.4, 56.4, 36, 300 }, + [19] = { 19.4, 55.1, 36, 300 }, + [20] = { 20.6, 54.3, 36, 300 }, + [21] = { 70.8, 58.4, 130, 300 }, + [22] = { 71.2, 56.5, 130, 300 }, + [23] = { 18.4, 17.3, 267, 300 }, + [24] = { 22.1, 17.2, 267, 300 }, + [25] = { 25.3, 15.9, 267, 300 }, + [26] = { 22.1, 15.3, 267, 300 }, + [27] = { 20.1, 15.2, 267, 300 }, + [28] = { 24.5, 15.1, 267, 300 }, + [29] = { 18.9, 14.8, 267, 300 }, + [30] = { 26, 14.5, 267, 300 }, + [31] = { 22.7, 14.5, 267, 300 }, + [32] = { 25.4, 14.1, 267, 300 }, + [33] = { 24.9, 13.3, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "34-35", + }, + [2359] = { + ["coords"] = { + [1] = { 10.8, 80.6, 36, 275 }, + [2] = { 16.2, 78.5, 36, 300 }, + [3] = { 10.1, 78.2, 36, 300 }, + [4] = { 14.9, 77.5, 36, 300 }, + [5] = { 12.4, 77, 36, 300 }, + [6] = { 19, 77, 36, 300 }, + [7] = { 19.9, 76.2, 36, 300 }, + [8] = { 16.8, 76.1, 36, 300 }, + [9] = { 11.8, 74.5, 36, 300 }, + [10] = { 19.3, 73.5, 36, 300 }, + [11] = { 21.8, 64.3, 36, 300 }, + [12] = { 21.6, 61.9, 36, 300 }, + [13] = { 20.8, 60.5, 36, 300 }, + [14] = { 23.1, 60.4, 36, 300 }, + [15] = { 22.9, 59.5, 36, 300 }, + [16] = { 22.4, 58.6, 36, 300 }, + [17] = { 19, 57.7, 36, 300 }, + [18] = { 20, 56.5, 36, 300 }, + [19] = { 20.3, 56.5, 36, 300 }, + [20] = { 18.4, 55.9, 36, 300 }, + [21] = { 21.9, 55.8, 36, 300 }, + [22] = { 19.9, 54, 36, 300 }, + [23] = { 70.7, 59.7, 130, 275 }, + [24] = { 70.2, 58.1, 130, 300 }, + [25] = { 71.4, 55.6, 130, 300 }, + [26] = { 18.3, 18.9, 267, 275 }, + [27] = { 23, 17.1, 267, 300 }, + [28] = { 17.7, 16.9, 267, 300 }, + [29] = { 21.9, 16.2, 267, 300 }, + [30] = { 19.7, 15.8, 267, 300 }, + [31] = { 25.5, 15.8, 267, 300 }, + [32] = { 26.3, 15.1, 267, 300 }, + [33] = { 23.5, 15.1, 267, 300 }, + [34] = { 19.2, 13.6, 267, 300 }, + [35] = { 25.7, 12.8, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "33-34", + }, + [2360] = { + ["coords"] = { + [1] = { 26.3, 99.1, 36, 300 }, + [2] = { 33.9, 41.5, 267, 300 }, + [3] = { 35, 41.4, 267, 300 }, + [4] = { 36.8, 41.3, 267, 300 }, + [5] = { 34.4, 41.3, 267, 300 }, + [6] = { 33.8, 41, 267, 300 }, + [7] = { 35.8, 40.7, 267, 300 }, + [8] = { 34.8, 40.6, 267, 300 }, + [9] = { 33.7, 40.1, 267, 300 }, + [10] = { 35, 39.9, 267, 300 }, + [11] = { 35.6, 39.7, 267, 300 }, + [12] = { 36.8, 39.6, 267, 300 }, + [13] = { 31.4, 39.6, 267, 300 }, + [14] = { 35.3, 38.3, 267, 300 }, + [15] = { 30.2, 38.1, 267, 300 }, + [16] = { 31.6, 38, 267, 300 }, + [17] = { 35.2, 37.7, 267, 300 }, + [18] = { 30.5, 37.7, 267, 300 }, + [19] = { 29.9, 37.3, 267, 300 }, + [20] = { 30.4, 36.9, 267, 300 }, + [21] = { 30.8, 36.5, 267, 300 }, + [22] = { 32.2, 36.2, 267, 300 }, + [23] = { 33.4, 35.6, 267, 300 }, + [24] = { 31.8, 35.1, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "22-23", + }, + [2361] = { + ["coords"] = { + [1] = { 50.9, 58.4, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [2362] = { + ["coords"] = { + [1] = { 50.9, 58.6, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [2363] = { + ["coords"] = { + [1] = { 50.8, 56.9, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "29", + }, + [2364] = { + ["coords"] = { + [1] = { 51.1, 59.2, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "33", + }, + [2365] = { + ["coords"] = { + [1] = { 48.7, 57.2, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "39", + }, + [2366] = { + ["coords"] = { + [1] = { 51.6, 58.6, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [2367] = { + ["coords"] = { + [1] = { 50.8, 61, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "31", + }, + [2368] = { + ["coords"] = { + [1] = { 6, 55.2, 45, 300 }, + [2] = { 5.9, 54.7, 45, 300 }, + [3] = { 67.2, 87.1, 267, 300 }, + [4] = { 67, 86.6, 267, 300 }, + [5] = { 66.5, 86.1, 267, 300 }, + [6] = { 66.2, 85.2, 267, 300 }, + [7] = { 65.9, 83.6, 267, 300 }, + [8] = { 66.4, 83.3, 267, 300 }, + [9] = { 66, 82.2, 267, 300 }, + [10] = { 64, 82.1, 267, 300 }, + [11] = { 65, 80.3, 267, 300 }, + [12] = { 66.9, 79.6, 267, 300 }, + [13] = { 66.3, 79.6, 267, 300 }, + [14] = { 61.7, 78.6, 267, 300 }, + [15] = { 64, 78.5, 267, 300 }, + [16] = { 64.4, 77.5, 267, 300 }, + [17] = { 60.9, 77.4, 267, 300 }, + [18] = { 61.5, 76.4, 267, 300 }, + [19] = { 61.9, 76.2, 267, 300 }, + [20] = { 60.1, 75.7, 267, 300 }, + }, + ["lvl"] = "28-29", + }, + [2369] = { + ["coords"] = { + [1] = { 58.8, 77.4, 267, 300 }, + [2] = { 57.8, 75.9, 267, 300 }, + [3] = { 60.6, 74.7, 267, 300 }, + [4] = { 58.8, 74.3, 267, 300 }, + [5] = { 58.3, 72.6, 267, 300 }, + [6] = { 55.9, 72.3, 267, 300 }, + [7] = { 59.8, 72, 267, 300 }, + [8] = { 58.2, 70, 267, 300 }, + [9] = { 57.8, 69.1, 267, 300 }, + [10] = { 54.7, 68.4, 267, 300 }, + [11] = { 57.7, 66.7, 267, 300 }, + [12] = { 53.6, 66.6, 267, 300 }, + [13] = { 55.7, 66.5, 267, 300 }, + [14] = { 51.7, 66.1, 267, 300 }, + [15] = { 52.7, 65.5, 267, 300 }, + [16] = { 54.5, 64.4, 267, 300 }, + [17] = { 53.7, 63.5, 267, 300 }, + }, + ["lvl"] = "30-31", + }, + [2370] = { + ["coords"] = { + [1] = { 4.5, 54.5, 45, 300 }, + [2] = { 5.7, 54.3, 45, 300 }, + [3] = { 65.4, 86.3, 267, 300 }, + [4] = { 66.8, 86.1, 267, 300 }, + [5] = { 63.9, 85.2, 267, 300 }, + [6] = { 62.9, 84.1, 267, 300 }, + [7] = { 66.5, 82.9, 267, 300 }, + [8] = { 60.8, 80.9, 267, 300 }, + [9] = { 66.7, 80.4, 267, 300 }, + [10] = { 65.4, 80.1, 267, 300 }, + [11] = { 60, 78.9, 267, 300 }, + [12] = { 62.8, 77.3, 267, 300 }, + [13] = { 63.8, 76.9, 267, 300 }, + [14] = { 64.1, 76.7, 267, 300 }, + }, + ["lvl"] = "29-30", + }, + [2371] = { + ["coords"] = { + [1] = { 61.7, 81.8, 267, 300 }, + [2] = { 57, 77.3, 267, 300 }, + [3] = { 56.9, 73.8, 267, 300 }, + [4] = { 59.9, 73.1, 267, 300 }, + [5] = { 59.2, 71.6, 267, 300 }, + [6] = { 56.7, 71.3, 267, 300 }, + [7] = { 58.9, 70.2, 267, 300 }, + [8] = { 55.7, 69.7, 267, 300 }, + [9] = { 58.4, 68.6, 267, 300 }, + [10] = { 57.2, 68.3, 267, 300 }, + [11] = { 58.6, 66.5, 267, 300 }, + [12] = { 56.6, 66.3, 267, 300 }, + [13] = { 58.6, 66, 267, 300 }, + [14] = { 56.5, 65.3, 267, 300 }, + [15] = { 57.8, 65.2, 267, 300 }, + [16] = { 53.2, 64.2, 267, 300 }, + [17] = { 55.2, 64, 267, 300 }, + [18] = { 54.4, 62.2, 267, 300 }, + [19] = { 55.2, 61.4, 267, 300 }, + }, + ["lvl"] = "31-32", + }, + [2372] = { + ["coords"] = { + [1] = { 64.6, 65.6, 267, 300 }, + [2] = { 63.6, 65.1, 267, 300 }, + [3] = { 64, 63.2, 267, 300 }, + [4] = { 65, 63.1, 267, 300 }, + [5] = { 61.9, 62.9, 267, 300 }, + [6] = { 63.3, 62.7, 267, 300 }, + [7] = { 62.5, 62.7, 267, 300 }, + [8] = { 62.5, 61.8, 267, 300 }, + [9] = { 65, 61.8, 267, 300 }, + [10] = { 62.2, 61.6, 267, 300 }, + [11] = { 64.1, 60.3, 267, 300 }, + [12] = { 63.3, 59.4, 267, 300 }, + }, + ["lvl"] = "26-27", + }, + [2373] = { + ["coords"] = { + [1] = { 63, 63.7, 267, 300 }, + [2] = { 62.6, 63.6, 267, 300 }, + [3] = { 62.9, 62.2, 267, 300 }, + [4] = { 64.1, 61.9, 267, 300 }, + [5] = { 63.1, 61.6, 267, 300 }, + [6] = { 66.3, 61.1, 267, 300 }, + [7] = { 65.4, 60.4, 267, 300 }, + [8] = { 63.7, 59.2, 267, 300 }, + }, + ["lvl"] = "27-28", + }, + [2374] = { + ["coords"] = { + [1] = { 25.6, 76.4, 267, 300 }, + [2] = { 26.5, 74.1, 267, 300 }, + [3] = { 30.1, 73.9, 267, 300 }, + [4] = { 29.8, 73.6, 267, 300 }, + [5] = { 32.5, 72.8, 267, 300 }, + [6] = { 33.9, 72.8, 267, 300 }, + [7] = { 25.3, 72.8, 267, 300 }, + [8] = { 23.4, 72.7, 267, 300 }, + [9] = { 32.7, 72.7, 267, 300 }, + [10] = { 27.9, 72.5, 267, 300 }, + [11] = { 32.1, 72.4, 267, 300 }, + [12] = { 26.1, 71.7, 267, 300 }, + [13] = { 25.3, 71.2, 267, 300 }, + [14] = { 25.1, 70.5, 267, 300 }, + [15] = { 33.1, 70, 267, 300 }, + [16] = { 33.9, 69.6, 267, 300 }, + [17] = { 21.2, 66.7, 267, 300 }, + [18] = { 24.7, 66.4, 267, 300 }, + [19] = { 24.4, 65, 267, 300 }, + [20] = { 23.5, 64.8, 267, 300 }, + [21] = { 20.4, 64.6, 267, 300 }, + [22] = { 23.2, 64.2, 267, 300 }, + }, + ["lvl"] = "28-29", + }, + [2375] = { + ["coords"] = { + [1] = { 31.9, 76.3, 267, 300 }, + [2] = { 29.8, 76, 267, 300 }, + [3] = { 26.9, 75.9, 267, 300 }, + [4] = { 24, 74.6, 267, 300 }, + [5] = { 32.7, 74.4, 267, 300 }, + [6] = { 30.9, 74.2, 267, 300 }, + [7] = { 28.6, 74.1, 267, 300 }, + [8] = { 35, 74, 267, 300 }, + [9] = { 30.3, 73.3, 267, 300 }, + [10] = { 31.7, 72.9, 267, 300 }, + [11] = { 28, 72.9, 267, 300 }, + [12] = { 29.8, 72.8, 267, 300 }, + [13] = { 27.6, 72.4, 267, 300 }, + [14] = { 32.7, 72.3, 267, 300 }, + [15] = { 27, 71.8, 267, 300 }, + [16] = { 33.1, 71.6, 267, 300 }, + [17] = { 24.4, 70.9, 267, 300 }, + [18] = { 22.4, 70.8, 267, 300 }, + [19] = { 34.6, 70.7, 267, 300 }, + [20] = { 25.6, 70.7, 267, 300 }, + [21] = { 24.6, 70.4, 267, 300 }, + [22] = { 33.3, 69.7, 267, 300 }, + [23] = { 25.1, 69.5, 267, 300 }, + [24] = { 24.2, 69.4, 267, 300 }, + [25] = { 22.1, 68.5, 267, 300 }, + [26] = { 24.8, 67.2, 267, 300 }, + [27] = { 23.7, 66.3, 267, 300 }, + [28] = { 24.4, 64.8, 267, 300 }, + [29] = { 23.1, 64.4, 267, 300 }, + [30] = { 22.1, 64, 267, 300 }, + [31] = { 33.9, 69.6, 267, 300 }, + [32] = { 24.4, 65, 267, 300 }, + }, + ["lvl"] = "29-30", + }, + [2376] = { + ["coords"] = { + [1] = { 38, 72.7, 267, 300 }, + [2] = { 40.4, 71.2, 267, 300 }, + [3] = { 44.3, 71.1, 267, 300 }, + [4] = { 36.5, 69.4, 267, 300 }, + [5] = { 42.7, 69.2, 267, 300 }, + [6] = { 40.7, 69.2, 267, 300 }, + [7] = { 37.2, 69.1, 267, 300 }, + [8] = { 46.1, 69.1, 267, 300 }, + [9] = { 40.9, 68.8, 267, 300 }, + [10] = { 36.1, 68.7, 267, 300 }, + [11] = { 43.9, 68.7, 267, 300 }, + [12] = { 47.4, 68.2, 267, 300 }, + [13] = { 44.4, 67.7, 267, 300 }, + [14] = { 45.1, 67.3, 267, 300 }, + [15] = { 46, 66.8, 267, 300 }, + [16] = { 44.3, 66.6, 267, 300 }, + [17] = { 48.4, 66.5, 267, 300 }, + [18] = { 35.7, 66.4, 267, 300 }, + [19] = { 37.4, 66.2, 267, 300 }, + [20] = { 46.2, 63, 267, 300 }, + }, + ["lvl"] = "30-31", + }, + [2377] = { + ["coords"] = { + [1] = { 40.1, 72.7, 267, 300 }, + [2] = { 42.5, 72.6, 267, 300 }, + [3] = { 38.6, 71.1, 267, 300 }, + [4] = { 42.7, 70.7, 267, 300 }, + [5] = { 37.3, 70.3, 267, 300 }, + [6] = { 36.2, 70.2, 267, 300 }, + [7] = { 40.7, 69.9, 267, 300 }, + [8] = { 36.4, 69.6, 267, 300 }, + [9] = { 41, 69.5, 267, 300 }, + [10] = { 40.3, 68.8, 267, 300 }, + [11] = { 45, 68.6, 267, 300 }, + [12] = { 43.2, 68, 267, 300 }, + [13] = { 41.1, 67.9, 267, 300 }, + [14] = { 49.4, 67.6, 267, 300 }, + [15] = { 43.9, 67.2, 267, 300 }, + [16] = { 44.6, 67.1, 267, 300 }, + [17] = { 46.4, 66.4, 267, 300 }, + [18] = { 47.4, 64.8, 267, 300 }, + [19] = { 48.7, 64.6, 267, 300 }, + [20] = { 46, 64, 267, 300 }, + [21] = { 44.3, 66.6, 267, 300 }, + }, + ["lvl"] = "31-32", + }, + [2378] = { + ["coords"] = { + [1] = { 48.6, 59, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "34", + }, + [2379] = { + ["coords"] = { + [1] = { 51.3, 51.9, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [2380] = { + ["coords"] = { + [1] = { 50.9, 57.1, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "34", + }, + [2381] = { + ["coords"] = { + [1] = { 48.9, 55, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [2382] = { + ["coords"] = { + [1] = { 52.4, 56, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2383] = { + ["coords"] = { + [1] = { 50.6, 60.9, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "29", + }, + [2384] = { + ["coords"] = { + [1] = { 39, 99.4, 36, 300 }, + [2] = { 35.1, 98.8, 36, 300 }, + [3] = { 45.5, 98.3, 36, 300 }, + [4] = { 50.3, 95.7, 36, 300 }, + [5] = { 52.2, 95.7, 36, 300 }, + [6] = { 50.1, 95.4, 36, 300 }, + [7] = { 47.3, 95.2, 36, 300 }, + [8] = { 52.4, 94.6, 36, 300 }, + [9] = { 46.7, 94.2, 36, 300 }, + [10] = { 52.4, 92, 36, 300 }, + [11] = { 52.8, 89, 36, 300 }, + [12] = { 44.3, 88.7, 36, 300 }, + [13] = { 53.8, 88.4, 36, 300 }, + [14] = { 56, 50.4, 267, 300 }, + [15] = { 52.9, 48.9, 267, 300 }, + [16] = { 44.5, 48.8, 267, 300 }, + [17] = { 39, 46.7, 267, 300 }, + [18] = { 44.6, 45.8, 267, 300 }, + [19] = { 39, 45.6, 267, 300 }, + [20] = { 38, 44.5, 267, 300 }, + [21] = { 55.7, 44.4, 267, 300 }, + [22] = { 53.9, 44.3, 267, 300 }, + [23] = { 51.8, 44.2, 267, 300 }, + [24] = { 54.3, 42.9, 267, 300 }, + [25] = { 55.7, 42.1, 267, 300 }, + [26] = { 51.6, 41.7, 267, 300 }, + [27] = { 57.8, 41.6, 267, 300 }, + [28] = { 50.2, 41.3, 267, 300 }, + [29] = { 39.8, 40.6, 267, 300 }, + [30] = { 58.9, 40.4, 267, 300 }, + [31] = { 42.5, 40.4, 267, 300 }, + [32] = { 53.6, 39.8, 267, 300 }, + [33] = { 54.3, 39.7, 267, 300 }, + [34] = { 53.4, 39.3, 267, 300 }, + [35] = { 39, 38.2, 267, 300 }, + [36] = { 39.3, 37.8, 267, 300 }, + [37] = { 53.3, 36.5, 267, 300 }, + [38] = { 53.6, 36.4, 267, 300 }, + [39] = { 37.8, 36.2, 267, 300 }, + [40] = { 53.4, 36.1, 267, 300 }, + [41] = { 52.4, 35.9, 267, 300 }, + [42] = { 51, 35.5, 267, 300 }, + [43] = { 42.9, 35.4, 267, 300 }, + [44] = { 39.6, 34.9, 267, 300 }, + [45] = { 48.6, 34.5, 267, 300 }, + [46] = { 52.8, 32.2, 267, 300 }, + [47] = { 54.5, 32.2, 267, 300 }, + [48] = { 52.7, 31.9, 267, 300 }, + [49] = { 50.2, 31.8, 267, 300 }, + [50] = { 54.7, 31.2, 267, 300 }, + [51] = { 49.7, 30.9, 267, 300 }, + [52] = { 54.7, 28.9, 267, 300 }, + [53] = { 55.1, 26.3, 267, 300 }, + [54] = { 47.6, 26.1, 267, 300 }, + [55] = { 56, 25.7, 267, 300 }, + }, + ["lvl"] = "23-24", + }, + [2385] = { + ["coords"] = { + [1] = { 6.7, 49.7, 45, 300 }, + [2] = { 68, 80.9, 267, 300 }, + [3] = { 66.3, 75.3, 267, 300 }, + [4] = { 66.2, 74.2, 267, 300 }, + [5] = { 65.1, 73, 267, 300 }, + [6] = { 62.6, 71.4, 267, 300 }, + [7] = { 65, 69.4, 267, 300 }, + [8] = { 61.8, 69, 267, 300 }, + [9] = { 70.4, 68, 267, 300 }, + [10] = { 63.6, 68, 267, 300 }, + [11] = { 61.1, 66.9, 267, 300 }, + [12] = { 65.1, 66.4, 267, 300 }, + [13] = { 56.7, 60.1, 267, 300 }, + [14] = { 57.7, 59.3, 267, 300 }, + [15] = { 60.2, 58.5, 267, 300 }, + [16] = { 59, 56.5, 267, 300 }, + [17] = { 58.5, 55.6, 267, 300 }, + [18] = { 61, 50.9, 267, 300 }, + [19] = { 57.6, 50, 267, 300 }, + }, + ["lvl"] = "27-28", + }, + [2386] = { + ["coords"] = { + [1] = { 39.4, 81.4, 36, 300 }, + [2] = { 40.5, 79.6, 36, 300 }, + [3] = { 49.5, 62.2, 267, 300 }, + [4] = { 51.5, 60.4, 267, 300 }, + [5] = { 47.5, 60.2, 267, 300 }, + [6] = { 48.7, 59.8, 267, 300 }, + [7] = { 49.6, 59.7, 267, 300 }, + [8] = { 50.1, 58.3, 267, 300 }, + [9] = { 53.2, 58.2, 267, 300 }, + [10] = { 49, 58.1, 267, 300 }, + [11] = { 54.8, 58, 267, 300 }, + [12] = { 51.9, 57.4, 267, 300 }, + [13] = { 54.9, 56.9, 267, 300 }, + [14] = { 47.5, 56.6, 267, 300 }, + [15] = { 48.4, 56.3, 267, 300 }, + [16] = { 52.1, 56.2, 267, 300 }, + [17] = { 49.3, 56.1, 267, 300 }, + [18] = { 49.8, 56.1, 267, 300 }, + [19] = { 51.6, 55.5, 267, 300 }, + [20] = { 49.9, 54.7, 267, 300 }, + [21] = { 53.9, 54.2, 267, 300 }, + [22] = { 48.6, 52.8, 267, 300 }, + [23] = { 49.8, 52.5, 267, 300 }, + [24] = { 46.8, 52.2, 267, 300 }, + [25] = { 46.8, 51.5, 267, 300 }, + [26] = { 52.3, 51.2, 267, 300 }, + [27] = { 50.4, 51, 267, 300 }, + [28] = { 46.5, 50.7, 267, 300 }, + [29] = { 46.6, 50.5, 267, 300 }, + [30] = { 51.9, 50.5, 267, 300 }, + [31] = { 46.2, 49.9, 267, 300 }, + [32] = { 49.6, 49, 267, 300 }, + [33] = { 43.3, 19.7, 267, 300 }, + [34] = { 44.3, 18.1, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [2387] = { + ["coords"] = { + [1] = { 32.4, 46.4, 267, 300 }, + [2] = { 30.2, 43.5, 267, 300 }, + [3] = { 29.5, 43.1, 267, 300 }, + [4] = { 30.1, 42.9, 267, 300 }, + [5] = { 32.1, 42.4, 267, 300 }, + [6] = { 30.2, 42.2, 267, 300 }, + [7] = { 30.4, 41.1, 267, 300 }, + [8] = { 29.3, 40.9, 267, 300 }, + [9] = { 29.6, 39.7, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25-26", + }, + [2388] = { + ["coords"] = { + [1] = { 61.6, 80.7, 36, 300 }, + [2] = { 62.8, 19, 267, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [2389] = { + ["coords"] = { + [1] = { 58.6, 80.2, 36, 600 }, + [2] = { 60.1, 18.6, 267, 600 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [2390] = { + ["coords"] = { + [1] = { 60.4, 81.2, 36, 300 }, + [2] = { 61.7, 19.5, 267, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "29", + }, + [2391] = { + ["coords"] = { + [1] = { 60.3, 80.9, 36, 300 }, + [2] = { 61.6, 19.2, 267, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "32", + }, + [2392] = { + ["coords"] = { + [1] = { 61.4, 81.1, 36, 300 }, + [2] = { 62.6, 19.4, 267, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "32", + }, + [2393] = { + ["coords"] = { + [1] = { 61.1, 80.7, 36, 300 }, + [2] = { 62.3, 19, 267, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "32", + }, + [2394] = { + ["coords"] = { + [1] = { 60.6, 82.9, 36, 300 }, + [2] = { 61.9, 21, 267, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "32", + }, + [2395] = { + ["coords"] = { + [1] = { 62.3, 81.6, 36, 300 }, + [2] = { 63.3, 19.9, 267, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "32", + }, + [2396] = { + ["coords"] = { + [1] = { 60, 86.8, 36, 300 }, + [2] = { 61.3, 24.4, 267, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "32", + }, + [2397] = { + ["coords"] = { + [1] = { 62, 81.1, 36, 300 }, + [2] = { 63.1, 19.4, 267, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "32", + }, + [2398] = { + ["coords"] = { + [1] = { 60.3, 89.3, 36, 300 }, + [2] = { 61.6, 26.6, 267, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "32", + }, + [2399] = { + ["coords"] = { + [1] = { 62.7, 82.7, 36, 300 }, + [2] = { 63.7, 20.8, 267, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "56", + }, + [2400] = { + ["coords"] = { + [1] = { 59.9, 89.1, 36, 300 }, + [2] = { 61.3, 26.4, 267, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "32", + }, + [2401] = { + ["coords"] = { + [1] = { 61.4, 81.7, 36, 300 }, + [2] = { 62.6, 19.9, 267, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [2402] = { + ["coords"] = { + [1] = { 62.6, 83.1, 36, 300 }, + [2] = { 63.7, 21.2, 267, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "32", + }, + [2403] = { + ["coords"] = { + [1] = { 36.7, 39.4, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "24", + }, + [2404] = { + ["coords"] = { + [1] = { 32.1, 44.4, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "26", + }, + [2405] = { + ["coords"] = { + [1] = { 60.4, 90.5, 36, 300 }, + [2] = { 60.2, 90.1, 36, 300 }, + [3] = { 61, 88.9, 36, 300 }, + [4] = { 58.9, 88.7, 36, 300 }, + [5] = { 57.9, 86.7, 36, 300 }, + [6] = { 60.8, 84.9, 36, 300 }, + [7] = { 63.1, 84.5, 36, 300 }, + [8] = { 61.7, 84.4, 36, 300 }, + [9] = { 56.6, 83.9, 36, 300 }, + [10] = { 60.9, 83.7, 36, 300 }, + [11] = { 62.5, 83.7, 36, 300 }, + [12] = { 59.9, 83.6, 36, 300 }, + [13] = { 60.5, 82.7, 36, 300 }, + [14] = { 64.6, 82.5, 36, 300 }, + [15] = { 60, 82.1, 36, 300 }, + [16] = { 54.9, 81.6, 36, 300 }, + [17] = { 60, 81.5, 36, 300 }, + [18] = { 54.6, 81.4, 36, 300 }, + [19] = { 57.2, 81.1, 36, 300 }, + [20] = { 61.6, 81, 36, 300 }, + [21] = { 61.4, 80.8, 36, 300 }, + [22] = { 60.7, 80.5, 36, 300 }, + [23] = { 58.3, 80.5, 36, 300 }, + [24] = { 58.2, 80.1, 36, 300 }, + [25] = { 64.8, 79.9, 36, 300 }, + [26] = { 60, 79.4, 36, 300 }, + [27] = { 59.4, 79.2, 36, 300 }, + [28] = { 63, 78.9, 36, 300 }, + [29] = { 63.8, 61, 36, 300 }, + [30] = { 63.7, 60.7, 36, 300 }, + [31] = { 62.5, 58.9, 36, 300 }, + [32] = { 61.9, 58.8, 36, 300 }, + [33] = { 61.7, 27.6, 267, 300 }, + [34] = { 61.5, 27.3, 267, 300 }, + [35] = { 62.3, 26.2, 267, 300 }, + [36] = { 60.4, 26.1, 267, 300 }, + [37] = { 59.6, 24.3, 267, 300 }, + [38] = { 62, 22.7, 267, 300 }, + [39] = { 64, 22.3, 267, 300 }, + [40] = { 62.8, 22.3, 267, 300 }, + [41] = { 58.4, 21.9, 267, 300 }, + [42] = { 62.1, 21.7, 267, 300 }, + [43] = { 63.6, 21.7, 267, 300 }, + [44] = { 61.3, 21.6, 267, 300 }, + [45] = { 61.8, 20.8, 267, 300 }, + [46] = { 65.3, 20.7, 267, 300 }, + [47] = { 61.4, 20.3, 267, 300 }, + [48] = { 56.9, 19.8, 267, 300 }, + [49] = { 61.3, 19.7, 267, 300 }, + [50] = { 56.6, 19.7, 267, 300 }, + [51] = { 58.9, 19.4, 267, 300 }, + [52] = { 62.7, 19.3, 267, 300 }, + [53] = { 62.6, 19.2, 267, 300 }, + [54] = { 62, 18.9, 267, 300 }, + [55] = { 59.9, 18.9, 267, 300 }, + [56] = { 59.7, 18.5, 267, 300 }, + [57] = { 65.5, 18.4, 267, 300 }, + [58] = { 61.4, 17.9, 267, 300 }, + [59] = { 60.8, 17.7, 267, 300 }, + [60] = { 64, 17.5, 267, 300 }, + [61] = { 64.6, 1.8, 267, 300 }, + [62] = { 64.6, 1.5, 267, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [2406] = { + ["coords"] = { + [1] = { 41.4, 98.5, 28, 300 }, + [2] = { 42.7, 97.7, 28, 300 }, + [3] = { 38.2, 92.1, 36, 300 }, + [4] = { 40.4, 91.9, 36, 300 }, + [5] = { 37.1, 89.9, 36, 300 }, + [6] = { 37.5, 88.7, 36, 300 }, + [7] = { 30.5, 88.3, 36, 300 }, + [8] = { 39.4, 88.1, 36, 300 }, + [9] = { 34.2, 87.1, 36, 300 }, + [10] = { 29.7, 86.6, 36, 300 }, + [11] = { 36.9, 86.5, 36, 300 }, + [12] = { 35.8, 84.7, 36, 300 }, + [13] = { 29.7, 84.7, 36, 300 }, + [14] = { 35.3, 84.2, 36, 300 }, + [15] = { 33.6, 83.9, 36, 300 }, + [16] = { 34.5, 82.9, 36, 300 }, + [17] = { 32.1, 82.9, 36, 300 }, + [18] = { 31.7, 81.1, 36, 300 }, + [19] = { 33, 80.1, 36, 300 }, + [20] = { 32.3, 79.6, 36, 300 }, + [21] = { 30.6, 78.9, 36, 300 }, + [22] = { 42.8, 78.5, 36, 300 }, + [23] = { 29.9, 77.1, 36, 300 }, + [24] = { 49.1, 75.2, 36, 300 }, + [25] = { 29.7, 74.6, 36, 300 }, + [26] = { 31.1, 72.2, 36, 300 }, + [27] = { 29.4, 70.4, 36, 300 }, + [28] = { 74.1, 59.8, 36, 300 }, + [29] = { 83.1, 58.2, 36, 300 }, + [30] = { 76.7, 51.3, 36, 300 }, + [31] = { 78.7, 50.1, 36, 300 }, + [32] = { 64.7, 48.6, 36, 300 }, + [33] = { 42.3, 29, 267, 300 }, + [34] = { 44.2, 28.8, 267, 300 }, + [35] = { 41.3, 27.1, 267, 300 }, + [36] = { 41.7, 26, 267, 300 }, + [37] = { 35.6, 25.7, 267, 300 }, + [38] = { 43.3, 25.5, 267, 300 }, + [39] = { 38.8, 24.6, 267, 300 }, + [40] = { 34.9, 24.2, 267, 300 }, + [41] = { 41.1, 24.2, 267, 300 }, + [42] = { 40.2, 22.6, 267, 300 }, + [43] = { 34.8, 22.6, 267, 300 }, + [44] = { 39.7, 22.1, 267, 300 }, + [45] = { 38.3, 21.8, 267, 300 }, + [46] = { 39, 21, 267, 300 }, + [47] = { 36.9, 21, 267, 300 }, + [48] = { 36.6, 19.4, 267, 300 }, + [49] = { 37.7, 18.5, 267, 300 }, + [50] = { 37.1, 18.1, 267, 300 }, + [51] = { 35.6, 17.5, 267, 300 }, + [52] = { 46.3, 17.2, 267, 300 }, + [53] = { 35, 15.9, 267, 300 }, + [54] = { 51.8, 14.2, 267, 300 }, + [55] = { 34.8, 13.7, 267, 300 }, + [56] = { 36.1, 11.6, 267, 300 }, + [57] = { 34.6, 10, 267, 300 }, + [58] = { 73.7, 0.8, 267, 300 }, + }, + ["lvl"] = "32-33", + }, + [2407] = { + ["coords"] = { + [1] = { 42.5, 99.6, 28, 300 }, + [2] = { 40.7, 98.8, 28, 300 }, + [3] = { 44.5, 96.9, 28, 300 }, + [4] = { 39.6, 92.3, 36, 300 }, + [5] = { 30.9, 84.7, 36, 300 }, + [6] = { 39.8, 84.7, 36, 300 }, + [7] = { 48.9, 83.1, 36, 300 }, + [8] = { 43.7, 80.7, 36, 300 }, + [9] = { 45.7, 77.7, 36, 300 }, + [10] = { 44.2, 76.7, 36, 300 }, + [11] = { 83.2, 64.9, 36, 300 }, + [12] = { 83.1, 61.1, 36, 300 }, + [13] = { 82.6, 58.6, 36, 300 }, + [14] = { 74.4, 54.7, 36, 300 }, + [15] = { 78.4, 52.9, 36, 300 }, + [16] = { 75.6, 51.7, 36, 300 }, + [17] = { 66.7, 51.1, 36, 300 }, + [18] = { 81.4, 48.8, 36, 300 }, + [19] = { 56.2, 32.7, 36, 300 }, + [20] = { 53.6, 31.6, 36, 300 }, + [21] = { 52.8, 30.7, 36, 300 }, + [22] = { 53.5, 30.6, 36, 300 }, + [23] = { 39.6, 25.8, 36, 300 }, + [24] = { 38.1, 24.8, 36, 300 }, + [25] = { 52.5, 24.7, 36, 300 }, + [26] = { 51.7, 23.7, 36, 300 }, + [27] = { 45.3, 23.7, 36, 300 }, + [28] = { 50.4, 22.7, 36, 300 }, + [29] = { 45.5, 19.4, 36, 300 }, + [30] = { 43.5, 29.2, 267, 300 }, + [31] = { 35.9, 22.6, 267, 300 }, + [32] = { 43.7, 22.5, 267, 300 }, + [33] = { 51.6, 21.1, 267, 300 }, + [34] = { 47.1, 19.1, 267, 300 }, + [35] = { 48.8, 16.4, 267, 300 }, + [36] = { 47.5, 15.5, 267, 300 }, + [37] = { 81.7, 5.2, 267, 300 }, + [38] = { 81.6, 1.9, 267, 300 }, + [39] = { 37.1, 89.9, 36, 300 }, + [40] = { 36.9, 86.5, 36, 300 }, + [41] = { 32.1, 82.9, 36, 300 }, + [42] = { 41.3, 27.1, 267, 300 }, + [43] = { 41.1, 24.2, 267, 300 }, + [44] = { 36.9, 21, 267, 300 }, + }, + ["lvl"] = "33-34", + }, + [2408] = { + ["coords"] = { + [1] = { 45.5, 99.3, 28, 300 }, + [2] = { 46.7, 98.5, 28, 300 }, + [3] = { 48.1, 96.9, 28, 300 }, + [4] = { 49.6, 95.7, 28, 300 }, + [5] = { 50.6, 95.3, 28, 300 }, + [6] = { 67.3, 95.5, 36, 300 }, + [7] = { 67.6, 91.9, 36, 300 }, + [8] = { 68.1, 88.3, 36, 300 }, + [9] = { 67.5, 85.2, 36, 300 }, + [10] = { 67.8, 81.2, 36, 300 }, + [11] = { 68.1, 78, 36, 300 }, + [12] = { 68.9, 74.5, 36, 300 }, + [13] = { 72.3, 68.3, 36, 300 }, + [14] = { 72.8, 68, 36, 300 }, + [15] = { 73.6, 66.2, 36, 300 }, + [16] = { 75, 65, 36, 300 }, + [17] = { 76.4, 64.1, 36, 300 }, + [18] = { 77.2, 63.3, 36, 300 }, + [19] = { 78.8, 62.6, 36, 300 }, + [20] = { 79.6, 59.6, 36, 300 }, + [21] = { 80.3, 58.7, 36, 300 }, + [22] = { 80.3, 57.9, 36, 300 }, + [23] = { 80.9, 55.9, 36, 300 }, + [24] = { 14, 55, 36, 300 }, + [25] = { 12.4, 54.7, 36, 300 }, + [26] = { 12.9, 54.6, 36, 300 }, + [27] = { 10.6, 54.5, 36, 300 }, + [28] = { 82.7, 53.9, 36, 300 }, + [29] = { 14.2, 53, 36, 300 }, + [30] = { 17.7, 52.8, 36, 300 }, + [31] = { 15.3, 52.6, 36, 300 }, + [32] = { 82.9, 52.4, 36, 300 }, + [33] = { 16.5, 52.2, 36, 300 }, + [34] = { 84.8, 51.3, 36, 300 }, + [35] = { 16.7, 50.7, 36, 300 }, + [36] = { 19, 50.6, 36, 300 }, + [37] = { 17.6, 50.5, 36, 300 }, + [38] = { 17.7, 49.7, 36, 300 }, + [39] = { 19.3, 49.6, 36, 300 }, + [40] = { 20.2, 49.1, 36, 300 }, + [41] = { 86.9, 48.8, 36, 300 }, + [42] = { 21.2, 47.3, 36, 300 }, + [43] = { 89.2, 47, 36, 300 }, + [44] = { 19.9, 46.8, 36, 300 }, + [45] = { 90.9, 46.4, 36, 300 }, + [46] = { 21.2, 45.8, 36, 300 }, + [47] = { 22.9, 45.8, 36, 300 }, + [48] = { 23.6, 45.4, 36, 300 }, + [49] = { 24.2, 43.8, 36, 300 }, + [50] = { 24.8, 43.7, 36, 300 }, + [51] = { 26.7, 42.6, 36, 300 }, + [52] = { 25.2, 42.3, 36, 300 }, + [53] = { 26.3, 40.5, 36, 300 }, + [54] = { 27.9, 40.3, 36, 300 }, + [55] = { 28.8, 39.7, 36, 300 }, + [56] = { 29.1, 38.4, 36, 300 }, + [57] = { 29.7, 38, 36, 300 }, + [58] = { 29.7, 37.1, 36, 300 }, + [59] = { 30.8, 36.4, 36, 300 }, + [60] = { 31.1, 35.4, 36, 300 }, + [61] = { 29.7, 34.8, 36, 300 }, + [62] = { 31.2, 33.7, 36, 300 }, + [63] = { 30.7, 32, 36, 300 }, + [64] = { 31.9, 31.4, 36, 300 }, + [65] = { 31.9, 30, 36, 300 }, + [66] = { 32.9, 29.3, 36, 300 }, + [67] = { 34.2, 27.5, 36, 300 }, + [68] = { 33.4, 26.9, 36, 300 }, + [69] = { 34.3, 25.9, 36, 300 }, + [70] = { 35.5, 25.8, 36, 300 }, + [71] = { 35.8, 23.3, 36, 300 }, + [72] = { 35.9, 21.7, 36, 300 }, + [73] = { 36.6, 20.1, 36, 300 }, + [74] = { 36.8, 19, 36, 300 }, + [75] = { 35.8, 13.5, 36, 300 }, + [76] = { 31.7, 13.2, 36, 300 }, + [77] = { 33.4, 11.9, 36, 300 }, + [78] = { 72.8, 42.6, 130, 300 }, + [79] = { 71.7, 42.4, 130, 300 }, + [80] = { 72.1, 42.4, 130, 300 }, + [81] = { 70.5, 42.3, 130, 300 }, + [82] = { 73, 41.3, 130, 300 }, + [83] = { 75.3, 41.1, 130, 300 }, + [84] = { 73.7, 41, 130, 300 }, + [85] = { 74.5, 40.7, 130, 300 }, + [86] = { 74.6, 39.8, 130, 300 }, + [87] = { 76.1, 39.7, 130, 300 }, + [88] = { 75.2, 39.6, 130, 300 }, + [89] = { 75.3, 39.1, 130, 300 }, + [90] = { 76.4, 39, 130, 300 }, + [91] = { 77, 38.7, 130, 300 }, + [92] = { 77.7, 37.5, 130, 300 }, + [93] = { 76.7, 37.1, 130, 300 }, + [94] = { 77.6, 36.5, 130, 300 }, + [95] = { 78.7, 36.5, 130, 300 }, + [96] = { 79.2, 36.2, 130, 300 }, + [97] = { 79.6, 35.1, 130, 300 }, + [98] = { 80.1, 35.1, 130, 300 }, + [99] = { 81.3, 34.3, 130, 300 }, + [100] = { 80.3, 34.1, 130, 300 }, + [101] = { 81, 32.9, 130, 300 }, + [102] = { 82.1, 32.8, 130, 300 }, + [103] = { 82.7, 32.4, 130, 300 }, + [104] = { 82.9, 31.6, 130, 300 }, + [105] = { 83.3, 31.3, 130, 300 }, + [106] = { 83.3, 30.7, 130, 300 }, + [107] = { 83.3, 29.1, 130, 300 }, + [108] = { 55.7, 57.2, 267, 300 }, + [109] = { 55.9, 53.9, 267, 300 }, + [110] = { 56.5, 50.5, 267, 300 }, + [111] = { 56.8, 47.2, 267, 300 }, + [112] = { 59.1, 45, 267, 300 }, + [113] = { 61.7, 42.8, 267, 300 }, + [114] = { 64, 40, 267, 300 }, + [115] = { 66.1, 38.3, 267, 300 }, + [116] = { 67.5, 35.5, 267, 300 }, + [117] = { 67.7, 32, 267, 300 }, + [118] = { 68, 28.9, 267, 300 }, + [119] = { 68.4, 25.7, 267, 300 }, + [120] = { 68, 23, 267, 300 }, + [121] = { 68.2, 19.5, 267, 300 }, + [122] = { 68.4, 16.7, 267, 300 }, + [123] = { 69.1, 13.6, 267, 300 }, + [124] = { 72.1, 8.2, 267, 300 }, + [125] = { 72.5, 8, 267, 300 }, + [126] = { 73.3, 6.3, 267, 300 }, + [127] = { 74.5, 5.3, 267, 300 }, + [128] = { 75.7, 4.5, 267, 300 }, + [129] = { 76.4, 3.9, 267, 300 }, + [130] = { 77.8, 3.2, 267, 300 }, + [131] = { 78.5, 0.6, 267, 300 }, + }, + ["lvl"] = "30-31", + }, + [2409] = { + ["coords"] = { + [1] = { 77.5, 44.3, 10, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [2410] = { + ["coords"] = { + [1] = { 60.3, 82.8, 36, 300 }, + [2] = { 61.6, 20.8, 267, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "42", + }, + [2411] = { + ["coords"] = { + [1] = { 20.2, 84.3, 36, 300 }, + [2] = { 26.5, 22.2, 267, 300 }, + }, + ["lvl"] = "33", + }, + [2412] = { + ["coords"] = { + [1] = { 20.4, 86.3, 36, 300 }, + [2] = { 26.7, 24, 267, 300 }, + }, + ["lvl"] = "33", + }, + [2413] = { + ["coords"] = { + [1] = { 19.9, 85.9, 36, 300 }, + [2] = { 26.3, 23.6, 267, 300 }, + }, + ["lvl"] = "34", + }, + [2414] = { + ["coords"] = { + [1] = { 17.8, 83.1, 36, 300 }, + [2] = { 24.4, 21.2, 267, 300 }, + }, + ["lvl"] = "35", + }, + [2415] = { + ["coords"] = { + [1] = { 17.7, 83, 36, 300 }, + [2] = { 24.4, 21, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "36", + }, + [2416] = { + ["coords"] = { + [1] = { 37.2, 54.6, 36, 300 }, + [2] = { 37.1, 54.2, 36, 300 }, + }, + ["lvl"] = "36-37", + ["rnk"] = "1", + }, + [2417] = { + ["coords"] = { + [1] = { 35.2, 54.2, 36, 600 }, + }, + ["lvl"] = "39", + ["rnk"] = "1", + }, + [2418] = { + ["coords"] = { + [1] = { 60.9, 81.4, 36, 300 }, + [2] = { 62.1, 19.7, 267, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "32", + }, + [2419] = { + ["coords"] = { + [1] = { 61.6, 82, 36, 300 }, + [2] = { 62.8, 20.2, 267, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "32", + }, + [2420] = { + ["coords"] = { + [1] = { 39.6, 52.9, 36, 300 }, + }, + ["lvl"] = "41", + ["rnk"] = "1", + }, + [2421] = { + ["coords"] = { + [1] = { 38.6, 46.8, 36, 300 }, + }, + ["lvl"] = "40", + ["rnk"] = "1", + }, + [2422] = { + ["coords"] = { + [1] = { 39.5, 41.8, 36, 300 }, + }, + ["lvl"] = "39", + ["rnk"] = "1", + }, + [2423] = { + ["coords"] = { + [1] = { 39.3, 14.6, 36, 300 }, + }, + ["lvl"] = "41", + }, + [2424] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "62", + }, + [2425] = { + ["coords"] = { + [1] = { 74.2, 13.5, 130, 86400 }, + [2] = { 56.3, 92.2, 1497, 86400 }, + }, + ["fac"] = "H", + ["lvl"] = "62", + ["rnk"] = "3", + }, + [2427] = { + ["coords"] = { + [1] = { 79.6, 41.8, 267, 300 }, + }, + ["lvl"] = "24", + }, + [2428] = { + ["coords"] = { + [1] = { 79.8, 40.2, 267, 300 }, + }, + ["lvl"] = "24", + }, + [2429] = { + ["coords"] = { + [1] = { 62.9, 81.4, 36, 300 }, + [2] = { 63.9, 19.7, 267, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [2430] = { + ["coords"] = { + [1] = { 51.9, 58.7, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [2431] = { + ["coords"] = { + [1] = { 32.6, 93.4, 28, 300 }, + [2] = { 63.1, 43.5, 36, 300 }, + }, + ["lvl"] = "37", + }, + [2432] = { + ["coords"] = { + [1] = { 49.3, 52.3, 267, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [2433] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "44", + ["rnk"] = "1", + }, + [2434] = { + ["coords"] = {}, + ["lvl"] = "37-38", + }, + [2435] = { + ["coords"] = { + [1] = { 50.7, 45.8, 267, 2100 }, + }, + ["fac"] = "A", + ["lvl"] = "32", + }, + [2436] = { + ["coords"] = { + [1] = { 53.5, 58.2, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [2437] = { + ["coords"] = { + [1] = { 60.2, 82.9, 36, 300 }, + [2] = { 61.5, 20.9, 267, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "34", + }, + [2438] = { + ["coords"] = { + [1] = { 49.4, 55.5, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "32", + }, + [2439] = { + ["coords"] = { + [1] = { 72.6, 15.9, 1519, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [2440] = { + ["coords"] = { + [1] = { 59.3, 69.8, 36, 300 }, + [2] = { 58.6, 67, 36, 300 }, + [3] = { 60.7, 9.5, 267, 300 }, + [4] = { 60.1, 7, 267, 300 }, + }, + ["lvl"] = "32-33", + }, + [2441] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "25", + }, + [2442] = { + ["coords"] = { + [1] = { 20.7, 69.2, 11, 60 }, + [2] = { 19.3, 69.1, 11, 60 }, + [3] = { 20.3, 68.7, 11, 60 }, + [4] = { 38, 88.6, 12, 270 }, + [5] = { 30.8, 88.4, 12, 270 }, + [6] = { 70.9, 82.9, 12, 270 }, + [7] = { 54.4, 79.3, 12, 270 }, + [8] = { 65.2, 78.8, 12, 270 }, + [9] = { 62.8, 78.3, 12, 270 }, + [10] = { 17.5, 78.1, 12, 300 }, + [11] = { 31.4, 77.3, 12, 270 }, + [12] = { 80, 77.2, 12, 270 }, + [13] = { 54.5, 76.9, 12, 270 }, + [14] = { 22.6, 76.6, 12, 270 }, + [15] = { 46.5, 76.2, 12, 270 }, + [16] = { 26.6, 75.5, 12, 270 }, + [17] = { 33.6, 75, 12, 270 }, + [18] = { 53.6, 74.6, 12, 270 }, + [19] = { 56.5, 74.2, 12, 270 }, + [20] = { 28.5, 73.6, 12, 270 }, + [21] = { 56.9, 71.2, 12, 270 }, + [22] = { 77.1, 71.2, 12, 270 }, + [23] = { 61.7, 71.1, 12, 270 }, + [24] = { 61.9, 71, 12, 270 }, + [25] = { 53.2, 71, 12, 270 }, + [26] = { 86.8, 70.9, 12, 270 }, + [27] = { 29.1, 69.5, 12, 270 }, + [28] = { 59.9, 69.4, 12, 270 }, + [29] = { 74.4, 67.5, 12, 270 }, + [30] = { 66.6, 66.8, 12, 270 }, + [31] = { 71.8, 66.7, 12, 270 }, + [32] = { 86.9, 65.8, 12, 270 }, + [33] = { 37.7, 63.7, 12, 270 }, + [34] = { 35.6, 63.5, 12, 270 }, + [35] = { 71.2, 61.9, 12, 270 }, + [36] = { 77.7, 61.3, 12, 270 }, + [37] = { 69.2, 60.8, 12, 270 }, + [38] = { 34.9, 59.9, 12, 270 }, + [39] = { 80, 58.7, 12, 270 }, + [40] = { 47.2, 58.6, 12, 270 }, + [41] = { 61.2, 57.6, 12, 270 }, + [42] = { 45.9, 55.6, 12, 270 }, + [43] = { 36.8, 55.5, 12, 270 }, + [44] = { 32, 55.1, 12, 270 }, + [45] = { 31.8, 54, 12, 270 }, + [46] = { 43.9, 53.1, 12, 270 }, + [47] = { 43.8, 52.6, 12, 270 }, + [48] = { 67.1, 44, 12, 270 }, + [49] = { 70.5, 40.3, 12, 270 }, + [50] = { 26, 98.5, 36, 300 }, + [51] = { 59.6, 23.7, 40, 300 }, + [52] = { 59.6, 14.9, 40, 300 }, + [53] = { 24.7, 58.8, 44, 300 }, + [54] = { 32.2, 29.5, 45, 300 }, + [55] = { 32.7, 29.2, 45, 300 }, + [56] = { 32.5, 28.6, 45, 300 }, + [57] = { 32.2, 28.6, 45, 300 }, + [58] = { 32.6, 28.4, 45, 300 }, + [59] = { 32.2, 27.9, 45, 300 }, + [60] = { 53.6, 56.9, 267, 300 }, + [61] = { 54.1, 56.5, 267, 300 }, + [62] = { 54.1, 55.8, 267, 300 }, + [63] = { 53.7, 55.7, 267, 300 }, + [64] = { 36.9, 45.4, 267, 300 }, + [65] = { 36.8, 40.2, 267, 300 }, + [66] = { 35, 37.9, 267, 300 }, + [67] = { 35, 37.5, 267, 300 }, + [68] = { 33, 36.3, 267, 300 }, + [69] = { 31.6, 34.6, 267, 300 }, + [70] = { 86.1, 65.1, 12, 270 }, + }, + ["lvl"] = "5", + }, + [2447] = { + ["coords"] = { + [1] = { 73.7, 65.3, 36, 37800 }, + [2] = { 73.3, 5.6, 267, 37800 }, + }, + ["lvl"] = "44", + ["rnk"] = "2", + }, + [2448] = { + ["coords"] = { + [1] = { 29.8, 42.4, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "26", + }, + [2449] = { + ["coords"] = { + [1] = { 32.6, 39.8, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [2450] = { + ["coords"] = { + [1] = { 31.1, 58.6, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "29", + }, + [2451] = { + ["coords"] = { + [1] = { 36, 46.5, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [2452] = { + ["coords"] = { + [1] = { 37.5, 68.5, 36, 37800 }, + [2] = { 31.4, 51.5, 36, 37800 }, + [3] = { 41.6, 8.4, 267, 37800 }, + }, + ["lvl"] = "36", + ["rnk"] = "4", + }, + [2453] = { + ["coords"] = { + [1] = { 52.1, 46.9, 36, 75600 }, + [2] = { 47.6, 32.6, 36, 75600 }, + }, + ["lvl"] = "39", + ["rnk"] = "4", + }, + [2454] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [2455] = { + ["coords"] = { + [1] = { 57.7, 72.8, 1519, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [2456] = { + ["coords"] = { + [1] = { 57.1, 73.2, 1519, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [2457] = { + ["coords"] = { + [1] = { 56.6, 73.7, 1519, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [2458] = { + ["coords"] = { + [1] = { 65.9, 43.4, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [2459] = { + ["coords"] = { + [1] = { 66.4, 44.1, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [2460] = { + ["coords"] = { + [1] = { 35, 58.4, 1537, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [2461] = { + ["coords"] = { + [1] = { 35.9, 60.1, 1537, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [2462] = { + ["coords"] = {}, + ["lvl"] = "25", + }, + [2464] = { + ["coords"] = { + [1] = { 32.2, 28.9, 33, 1800 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [2465] = { + ["coords"] = { + [1] = { 32.1, 29.2, 33, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [2466] = { + ["coords"] = { + [1] = { 52.6, 83, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2468] = { + ["coords"] = { + [1] = { 55.7, 84.7, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2469] = { + ["coords"] = { + [1] = { 55.3, 83.4, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2470] = { + ["coords"] = { + [1] = { 74.7, 48, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "37", + }, + [2472] = { + ["coords"] = {}, + ["lvl"] = "39", + ["rnk"] = "1", + }, + [2473] = { + ["coords"] = { + [1] = { 84.3, 32.8, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [2474] = { + ["coords"] = { + [1] = { 83.9, 32.2, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [2475] = { + ["coords"] = {}, + ["lvl"] = "31", + }, + [2476] = { + ["coords"] = { + [1] = { 58.8, 30.9, 38, 19800 }, + }, + ["lvl"] = "22", + ["rnk"] = "4", + }, + [2477] = { + ["coords"] = { + [1] = { 55.4, 66.9, 38, 600 }, + }, + ["fac"] = "H", + ["lvl"] = "19-21", + ["rnk"] = "1", + }, + [2478] = { + ["coords"] = { + [1] = { 55.5, 67.1, 38, 600 }, + }, + ["fac"] = "H", + ["lvl"] = "19-21", + ["rnk"] = "1", + }, + [2479] = { + ["coords"] = {}, + ["lvl"] = "31", + }, + [2480] = { + ["coords"] = { + [1] = { 38.2, 38.9, 36, 300 }, + }, + ["lvl"] = "49", + }, + [2481] = { + ["coords"] = { + [1] = { 18, 54.4, 10, 300 }, + }, + ["lvl"] = "36", + }, + [2482] = { + ["coords"] = { + [1] = { 28.3, 75.5, 33, 300 }, + }, + ["lvl"] = "43", + }, + [2483] = { + ["coords"] = { + [1] = { 35.8, 10.7, 33, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "39", + }, + [2485] = { + ["coords"] = { + [1] = { 39.7, 79.5, 1519, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [2486] = { + ["coords"] = { + [1] = { 27.6, 76.7, 33, 300 }, + }, + ["lvl"] = "42", + }, + [2487] = { + ["coords"] = { + [1] = { 27.2, 77, 33, 300 }, + }, + ["lvl"] = "60", + }, + [2488] = { + ["coords"] = { + [1] = { 26.9, 77.3, 33, 300 }, + }, + ["lvl"] = "34", + }, + [2489] = { + ["coords"] = { + [1] = { 25.5, 7.1, 1537, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [2490] = { + ["coords"] = { + [1] = { 28.1, 76.2, 33, 300 }, + }, + ["lvl"] = "44", + }, + [2491] = { + ["coords"] = { + [1] = { 27.1, 77.4, 33, 300 }, + }, + ["lvl"] = "38", + }, + [2492] = { + ["coords"] = { + [1] = { 65.7, 68.4, 85, 300 }, + [2] = { 84.2, 15.6, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [2493] = { + ["coords"] = { + [1] = { 28.6, 75.9, 33, 300 }, + }, + ["lvl"] = "41", + }, + [2494] = { + ["coords"] = { + [1] = { 26.8, 76.4, 33, 300 }, + }, + ["lvl"] = "40", + }, + [2495] = { + ["coords"] = { + [1] = { 28.3, 77.6, 33, 300 }, + }, + ["lvl"] = "45", + }, + [2496] = { + ["coords"] = { + [1] = { 27.2, 76.9, 33, 300 }, + }, + ["lvl"] = "60", + }, + [2497] = { + ["coords"] = { + [1] = { 32.2, 27.7, 33, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "41", + }, + [2498] = { + ["coords"] = { + [1] = { 27.1, 77.2, 33, 300 }, + }, + ["lvl"] = "34", + }, + [2499] = { + ["coords"] = { + [1] = { 28, 74.9, 33, 300 }, + }, + ["lvl"] = "38", + }, + [2500] = { + ["coords"] = { + [1] = { 26.7, 73.6, 33, 300 }, + }, + ["lvl"] = "37", + }, + [2501] = { + ["coords"] = { + [1] = { 27.8, 77.1, 33, 300 }, + }, + ["lvl"] = "44", + }, + [2502] = { + ["coords"] = { + [1] = { 26.9, 73.6, 33, 300 }, + }, + ["lvl"] = "44", + }, + [2503] = { + ["coords"] = { + [1] = { 27.5, 59.3, 267, 300 }, + [2] = { 28.9, 57.6, 267, 300 }, + [3] = { 29.3, 56.8, 267, 300 }, + [4] = { 28.7, 56.4, 267, 300 }, + [5] = { 30.8, 56.4, 267, 300 }, + [6] = { 29.8, 55.6, 267, 300 }, + [7] = { 31.1, 54.4, 267, 300 }, + [8] = { 29.6, 53, 267, 300 }, + [9] = { 29.3, 52.5, 267, 300 }, + [10] = { 31.9, 52.3, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "27-28", + }, + [2504] = { + ["coords"] = { + [1] = { 71.6, 7.3, 1519, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [2505] = { + ["coords"] = { + [1] = { 77.4, 86.5, 47, 350 }, + [2] = { 76.2, 84, 47, 350 }, + [3] = { 80.6, 77.3, 47, 350 }, + [4] = { 80.5, 74.8, 47, 350 }, + [5] = { 79.9, 73.6, 47, 350 }, + [6] = { 80.3, 71.9, 47, 350 }, + [7] = { 75.8, 71.4, 47, 350 }, + [8] = { 74.7, 70.9, 47, 350 }, + [9] = { 78.3, 70.6, 47, 350 }, + [10] = { 75.4, 69.9, 47, 350 }, + [11] = { 78.6, 69.7, 47, 350 }, + [12] = { 77.3, 69.5, 47, 350 }, + [13] = { 80.7, 69.4, 47, 350 }, + [14] = { 78.2, 68.5, 47, 350 }, + [15] = { 76.7, 68.3, 47, 350 }, + [16] = { 74.6, 68.3, 47, 350 }, + [17] = { 77.3, 66.9, 47, 350 }, + [18] = { 79.7, 65.8, 47, 350 }, + [19] = { 76.1, 65.2, 47, 350 }, + [20] = { 78.5, 65.2, 47, 350 }, + [21] = { 86, 64.8, 47, 350 }, + [22] = { 84, 64.6, 47, 350 }, + [23] = { 77.3, 64.2, 47, 350 }, + [24] = { 78.1, 63, 47, 350 }, + [25] = { 84.4, 61.9, 47, 350 }, + [26] = { 79.1, 61.9, 47, 350 }, + [27] = { 80.7, 61.8, 47, 350 }, + [28] = { 77.3, 61.8, 47, 350 }, + [29] = { 86, 61.8, 47, 350 }, + [30] = { 78.2, 60.7, 47, 350 }, + [31] = { 81.5, 60.5, 47, 350 }, + [32] = { 79.9, 60.4, 47, 350 }, + [33] = { 82.6, 59.2, 47, 350 }, + [34] = { 79, 59.2, 47, 350 }, + [35] = { 84.2, 59.1, 47, 350 }, + [36] = { 79.8, 57.8, 47, 350 }, + [37] = { 83.6, 57.8, 47, 350 }, + [38] = { 85.1, 57.7, 47, 350 }, + [39] = { 83.3, 55.3, 47, 350 }, + [40] = { 81.5, 55.1, 47, 350 }, + [41] = { 85.1, 55, 47, 350 }, + [42] = { 81.7, 54.6, 47, 350 }, + [43] = { 82.7, 53.8, 47, 350 }, + [44] = { 81.5, 53, 47, 350 }, + [45] = { 81.9, 53, 47, 350 }, + [46] = { 83, 52.9, 47, 350 }, + [47] = { 82.3, 51.3, 47, 350 }, + [48] = { 83.1, 50.4, 47, 350 }, + [49] = { 81.4, 50.3, 47, 350 }, + [50] = { 82.4, 48.8, 47, 350 }, + [51] = { 83.1, 47.6, 47, 350 }, + [52] = { 82.6, 46.1, 47, 350 }, + [53] = { 84.9, 45.4, 47, 350 }, + [54] = { 83.2, 44.8, 47, 350 }, + [55] = { 81.3, 44.8, 47, 350 }, + [56] = { 82.1, 43.1, 47, 350 }, + [57] = { 83.4, 42.1, 47, 350 }, + [58] = { 81.8, 42, 47, 350 }, + [59] = { 85.3, 41.8, 47, 350 }, + [60] = { 82.7, 41.3, 47, 350 }, + }, + ["lvl"] = "49-50", + }, + [2506] = { + ["coords"] = { + [1] = { 36.4, 50.5, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2507] = { + ["coords"] = { + [1] = { 37.9, 41.8, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2508] = { + ["coords"] = { + [1] = { 35.4, 41.6, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2509] = { + ["coords"] = { + [1] = { 33.7, 42.8, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2510] = { + ["coords"] = { + [1] = { 35, 46.8, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2511] = { + ["coords"] = { + [1] = { 39, 43.4, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2512] = { + ["coords"] = { + [1] = { 34.8, 51.2, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2513] = { + ["coords"] = { + [1] = { 35.4, 44.5, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2514] = { + ["coords"] = { + [1] = { 37.6, 44.9, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2515] = { + ["coords"] = { + [1] = { 39.1, 46.7, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2516] = { + ["coords"] = { + [1] = { 33.3, 44.8, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2517] = { + ["coords"] = { + [1] = { 35.8, 46.9, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2518] = { + ["coords"] = { + [1] = { 37.4, 49.2, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2519] = { + ["coords"] = { + [1] = { 32.3, 27.7, 33, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "39", + }, + [2520] = { + ["coords"] = {}, + ["lvl"] = "18", + ["rnk"] = "1", + }, + [2521] = { + ["coords"] = { + [1] = { 39.1, 86.6, 33, 300 }, + [2] = { 40.3, 86.5, 33, 300 }, + [3] = { 38.7, 85.9, 33, 300 }, + [4] = { 41.3, 85, 33, 300 }, + [5] = { 41.9, 84.1, 33, 300 }, + [6] = { 40.5, 83.8, 33, 300 }, + [7] = { 41.9, 82.5, 33, 300 }, + [8] = { 40.3, 82, 33, 300 }, + [9] = { 40.9, 81.9, 33, 300 }, + [10] = { 41.9, 81.1, 33, 300 }, + [11] = { 40.9, 80.5, 33, 300 }, + [12] = { 40.2, 80.5, 33, 300 }, + [13] = { 41.9, 79.5, 33, 300 }, + [14] = { 40.3, 79.5, 33, 300 }, + [15] = { 40.7, 79.1, 33, 300 }, + [16] = { 39.2, 78.7, 33, 300 }, + [17] = { 41.9, 77.9, 33, 300 }, + [18] = { 41.3, 77.8, 33, 300 }, + [19] = { 40.4, 77.3, 33, 300 }, + }, + ["lvl"] = "50", + }, + [2522] = { + ["coords"] = { + [1] = { 38.6, 86.6, 33, 300 }, + [2] = { 37.6, 86.1, 33, 300 }, + [3] = { 36.6, 85.7, 33, 300 }, + [4] = { 36.5, 84, 33, 300 }, + [5] = { 37.6, 83.6, 33, 300 }, + [6] = { 37.1, 83.3, 33, 300 }, + [7] = { 37.5, 82.8, 33, 300 }, + [8] = { 37.7, 81.6, 33, 300 }, + [9] = { 38, 81.3, 33, 300 }, + [10] = { 36.5, 80.9, 33, 300 }, + [11] = { 37.1, 80.3, 33, 300 }, + [12] = { 37.8, 80, 33, 300 }, + [13] = { 37.3, 78.6, 33, 300 }, + [14] = { 38.9, 77.8, 33, 300 }, + }, + ["lvl"] = "50", + }, + [2523] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "19", + }, + [2524] = { + ["coords"] = { + [1] = { 67.3, 91.9, 11, 300 }, + [2] = { 42.7, 10.6, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2525] = { + ["coords"] = { + [1] = { 67.8, 92.4, 11, 300 }, + [2] = { 43.4, 11.3, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2526] = { + ["coords"] = { + [1] = { 46.2, 14.2, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2527] = { + ["coords"] = { + [1] = { 48.6, 14.4, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2528] = { + ["coords"] = { + [1] = { 74.2, 92.1, 11, 300 }, + [2] = { 53.1, 10.7, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2529] = { + ["coords"] = { + [1] = { 45, 79.6, 130, 600 }, + [2] = { 47.3, 34, 130, 600 }, + [3] = { 38.1, 15.2, 130, 600 }, + }, + ["lvl"] = "24-25", + ["rnk"] = "1", + }, + [2530] = { + ["coords"] = { + [1] = { 39, 58.3, 33, 300 }, + }, + ["lvl"] = "41", + }, + [2531] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "30", + }, + [2532] = { + ["coords"] = { + [1] = { 61.4, 52, 1519, 555 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [2533] = { + ["coords"] = { + [1] = { 61.8, 51.3, 1519, 555 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [2534] = { + ["coords"] = { + [1] = { 39.6, 58.6, 33, 300 }, + }, + ["lvl"] = "46", + }, + [2535] = { + ["coords"] = { + [1] = { 35.3, 51.3, 33, 300 }, + }, + ["lvl"] = "43-44", + }, + [2536] = { + ["coords"] = { + [1] = { 34.9, 51.8, 33, 300 }, + }, + ["lvl"] = "43-44", + }, + [2537] = { + ["coords"] = { + [1] = { 40, 58.2, 33, 300 }, + }, + ["lvl"] = "43-44", + }, + [2540] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "14-15", + }, + [2541] = { + ["coords"] = { + [1] = { 28.3, 62.6, 33, 18000 }, + }, + ["lvl"] = "45", + ["rnk"] = "4", + }, + [2542] = { + ["coords"] = { + [1] = { 27.3, 77.5, 33, 300 }, + }, + ["lvl"] = "50", + }, + [2543] = { + ["coords"] = { + [1] = { 18.8, 78.5, 36, 300 }, + [2] = { 25.3, 17.1, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [2544] = { + ["coords"] = { + [1] = { 31.2, 88.1, 33, 300 }, + [2] = { 35.3, 87.9, 33, 300 }, + [3] = { 35.1, 87.8, 33, 300 }, + [4] = { 29.9, 87.7, 33, 300 }, + [5] = { 28.7, 87.6, 33, 300 }, + [6] = { 28.8, 87.5, 33, 300 }, + [7] = { 29.9, 87.3, 33, 300 }, + [8] = { 31.7, 87, 33, 300 }, + [9] = { 26.7, 87, 33, 300 }, + [10] = { 31.3, 85.9, 33, 300 }, + [11] = { 33.9, 85.9, 33, 300 }, + [12] = { 25.8, 85.9, 33, 300 }, + [13] = { 27.5, 85.9, 33, 300 }, + [14] = { 30.1, 85.8, 33, 300 }, + [15] = { 29.9, 85.7, 33, 300 }, + [16] = { 27.8, 85.6, 33, 300 }, + [17] = { 30.8, 85.3, 33, 300 }, + [18] = { 26.9, 84.4, 33, 300 }, + [19] = { 26.3, 84.1, 33, 300 }, + [20] = { 32.2, 82.5, 33, 300 }, + [21] = { 29.3, 82.3, 33, 300 }, + [22] = { 31.3, 81.9, 33, 300 }, + [23] = { 30.8, 81.7, 33, 300 }, + [24] = { 33.8, 76.5, 33, 300 }, + }, + ["lvl"] = "40-41", + }, + [2545] = { + ["coords"] = { + [1] = { 27.4, 69.4, 33, 300 }, + }, + ["lvl"] = "39", + }, + [2546] = { + ["coords"] = { + [1] = { 30.6, 90.6, 33, 300 }, + }, + ["lvl"] = "48", + }, + [2547] = { + ["coords"] = { + [1] = { 30.6, 90.4, 33, 300 }, + }, + ["lvl"] = "43", + }, + [2548] = { + ["coords"] = { + [1] = { 29.3, 88.3, 33, 300 }, + }, + ["lvl"] = "46-47", + }, + [2549] = { + ["coords"] = { + [1] = { 29.2, 88.8, 33, 300 }, + }, + ["lvl"] = "41-43", + }, + [2550] = { + ["coords"] = { + [1] = { 32.9, 88.2, 33, 300 }, + }, + ["lvl"] = "45-46", + }, + [2551] = { + ["coords"] = { + [1] = { 32.9, 88.3, 33, 300 }, + }, + ["lvl"] = "43", + }, + [2552] = { + ["coords"] = { + [1] = { 35.6, 49.4, 45, 400 }, + [2] = { 31.9, 46.5, 45, 400 }, + [3] = { 35.1, 46.2, 45, 400 }, + [4] = { 74.1, 45.8, 45, 120 }, + [5] = { 74.1, 45.7, 45, 120 }, + [6] = { 74.1, 45.5, 45, 120 }, + [7] = { 37.5, 40.9, 45, 400 }, + }, + ["lvl"] = "30-31", + }, + [2553] = { + ["coords"] = { + [1] = { 74.1, 45.8, 45, 120 }, + [2] = { 30.9, 42.3, 45, 400 }, + [3] = { 34.7, 39.5, 45, 400 }, + }, + ["lvl"] = "31-32", + }, + [2554] = { + ["coords"] = { + [1] = { 59.8, 74.1, 45, 400 }, + [2] = { 65.1, 74, 45, 400 }, + [3] = { 64.1, 73.6, 45, 400 }, + [4] = { 65.1, 73, 45, 400 }, + [5] = { 61.6, 72.8, 45, 400 }, + [6] = { 63.5, 72.8, 45, 400 }, + [7] = { 64.5, 72.7, 45, 400 }, + [8] = { 60.5, 72.5, 45, 400 }, + [9] = { 61.6, 72.1, 45, 400 }, + [10] = { 61.2, 71.6, 45, 400 }, + [11] = { 61.7, 71.5, 45, 400 }, + [12] = { 62.9, 68.5, 45, 400 }, + [13] = { 64, 68.2, 45, 400 }, + [14] = { 62.8, 67.6, 45, 400 }, + [15] = { 65.3, 67.4, 45, 400 }, + [16] = { 63.5, 67, 45, 400 }, + [17] = { 73.2, 65.8, 45, 400 }, + [18] = { 74.1, 65.4, 45, 400 }, + [19] = { 73, 64.8, 45, 400 }, + [20] = { 66.3, 64.7, 45, 400 }, + [21] = { 65.6, 64.5, 45, 400 }, + [22] = { 73.7, 63.8, 45, 400 }, + [23] = { 66.8, 63.7, 45, 400 }, + [24] = { 66, 62.9, 45, 400 }, + [25] = { 66.9, 61.7, 45, 400 }, + [26] = { 70.9, 61.7, 45, 400 }, + [27] = { 68.2, 60.7, 45, 400 }, + [28] = { 71.6, 60.6, 45, 400 }, + [29] = { 70.8, 60.5, 45, 400 }, + [30] = { 73.2, 60.3, 45, 400 }, + [31] = { 72, 59.1, 45, 400 }, + [32] = { 70.7, 58.8, 45, 400 }, + }, + ["lvl"] = "32-33", + }, + [2555] = { + ["coords"] = { + [1] = { 69.3, 81.5, 45, 400 }, + [2] = { 67.3, 80.5, 45, 400 }, + [3] = { 69.1, 79.7, 45, 400 }, + [4] = { 68.1, 79.4, 45, 400 }, + [5] = { 68, 78.6, 45, 400 }, + [6] = { 69.9, 77.9, 45, 400 }, + [7] = { 67.9, 76.9, 45, 400 }, + [8] = { 67.1, 73.5, 45, 400 }, + [9] = { 65, 73.4, 45, 400 }, + [10] = { 64.5, 73.1, 45, 400 }, + [11] = { 61.1, 72.2, 45, 400 }, + [12] = { 64.5, 71.7, 45, 400 }, + [13] = { 64.7, 71.6, 45, 400 }, + [14] = { 66.2, 71.5, 45, 400 }, + [15] = { 70.6, 70.5, 45, 400 }, + [16] = { 71, 69.2, 45, 400 }, + [17] = { 65.3, 68.9, 45, 400 }, + [18] = { 69.3, 68.7, 45, 400 }, + [19] = { 63.1, 67.8, 45, 400 }, + [20] = { 71.6, 67.1, 45, 400 }, + [21] = { 69.6, 66.6, 45, 400 }, + [22] = { 72.8, 65.8, 45, 400 }, + [23] = { 73.2, 65.3, 45, 400 }, + [24] = { 73.7, 64.6, 45, 400 }, + [25] = { 71.8, 64.6, 45, 400 }, + [26] = { 66.4, 63.7, 45, 400 }, + [27] = { 71.6, 61.8, 45, 400 }, + [28] = { 69.9, 61.6, 45, 400 }, + [29] = { 31.5, 45.8, 45, 400 }, + [30] = { 32.6, 44.4, 45, 400 }, + [31] = { 30.5, 43.6, 45, 400 }, + }, + ["lvl"] = "33-34", + }, + [2556] = { + ["coords"] = { + [1] = { 69.2, 82.4, 45, 400 }, + [2] = { 66.3, 82.2, 45, 400 }, + [3] = { 67.8, 82, 45, 400 }, + [4] = { 66, 81.9, 45, 400 }, + [5] = { 69.2, 81.7, 45, 400 }, + [6] = { 67.6, 81.6, 45, 400 }, + [7] = { 69.5, 81.6, 45, 400 }, + [8] = { 69.9, 81.1, 45, 400 }, + [9] = { 67.2, 80.8, 45, 400 }, + [10] = { 68.3, 80.1, 45, 400 }, + [11] = { 68.2, 79.5, 45, 400 }, + [12] = { 69.1, 79.5, 45, 400 }, + [13] = { 68, 78.7, 45, 400 }, + [14] = { 69, 78.7, 45, 400 }, + [15] = { 70.4, 78.2, 45, 400 }, + [16] = { 69.8, 78, 45, 400 }, + [17] = { 70, 77.3, 45, 400 }, + [18] = { 67.7, 77.2, 45, 400 }, + [19] = { 67.7, 77.1, 45, 400 }, + [20] = { 68.6, 76.6, 45, 400 }, + [21] = { 67.9, 76.5, 45, 400 }, + [22] = { 68.7, 73.4, 45, 400 }, + [23] = { 62.6, 73.1, 45, 400 }, + [24] = { 69, 71.9, 45, 400 }, + [25] = { 70, 71.6, 45, 400 }, + [26] = { 59.9, 71.6, 45, 400 }, + [27] = { 63.5, 71.5, 45, 400 }, + [28] = { 67.1, 70.3, 45, 400 }, + [29] = { 71.2, 69.9, 45, 400 }, + [30] = { 70.6, 69.6, 45, 400 }, + [31] = { 64.3, 68.8, 45, 400 }, + [32] = { 70, 68.7, 45, 400 }, + [33] = { 70.9, 67.4, 45, 400 }, + [34] = { 71.2, 65.9, 45, 400 }, + [35] = { 72.7, 64.4, 45, 400 }, + [36] = { 71.9, 63, 45, 400 }, + [37] = { 74.2, 45.9, 45, 120 }, + }, + ["lvl"] = "34-35", + }, + [2557] = { + ["coords"] = { + [1] = { 67, 82.3, 45, 400 }, + [2] = { 68.6, 82.3, 45, 400 }, + [3] = { 67.3, 81.8, 45, 400 }, + [4] = { 69, 81.5, 45, 400 }, + [5] = { 68.9, 81.5, 45, 400 }, + [6] = { 66.8, 81.3, 45, 400 }, + [7] = { 67.6, 81, 45, 400 }, + [8] = { 68.6, 80.9, 45, 400 }, + [9] = { 67.5, 80.5, 45, 400 }, + [10] = { 66.7, 80.5, 45, 400 }, + [11] = { 66.3, 80.5, 45, 400 }, + [12] = { 69.7, 79.4, 45, 400 }, + [13] = { 67, 79.1, 45, 400 }, + [14] = { 70.2, 79, 45, 400 }, + [15] = { 69.9, 78.8, 45, 400 }, + [16] = { 67.4, 78.7, 45, 400 }, + }, + ["lvl"] = "35-36", + }, + [2558] = { + ["coords"] = { + [1] = { 24.3, 66.2, 45, 400 }, + [2] = { 24, 65.2, 45, 400 }, + [3] = { 22.9, 65.1, 45, 400 }, + }, + ["lvl"] = "36-37", + ["rnk"] = "1", + }, + [2559] = { + ["coords"] = { + [1] = { 42.8, 79.6, 45, 400 }, + [2] = { 43.2, 77.8, 45, 400 }, + [3] = { 41.1, 74.2, 45, 400 }, + [4] = { 44.9, 65.5, 45, 400 }, + [5] = { 46.6, 64.3, 45, 400 }, + [6] = { 40, 61.9, 45, 400 }, + [7] = { 40.1, 58.9, 45, 400 }, + [8] = { 67.1, 56.3, 45, 400 }, + [9] = { 47.8, 56.2, 45, 400 }, + [10] = { 44.8, 55, 45, 400 }, + [11] = { 41.2, 53.4, 45, 400 }, + [12] = { 46.8, 53, 45, 400 }, + [13] = { 38.5, 52.1, 45, 400 }, + [14] = { 69.1, 52, 45, 400 }, + [15] = { 49.5, 51.9, 45, 400 }, + [16] = { 70.6, 51, 45, 400 }, + [17] = { 42, 50.8, 45, 400 }, + [18] = { 46.9, 50.8, 45, 400 }, + [19] = { 39.4, 50.7, 45, 400 }, + [20] = { 64, 50.5, 45, 400 }, + [21] = { 37.3, 50.3, 45, 400 }, + [22] = { 41.3, 49.8, 45, 400 }, + [23] = { 41.8, 49.4, 45, 400 }, + [24] = { 49.6, 49.4, 45, 400 }, + [25] = { 40.3, 49.3, 45, 400 }, + [26] = { 55.1, 49.2, 45, 400 }, + [27] = { 68.7, 49.1, 45, 400 }, + [28] = { 38.4, 48.7, 45, 400 }, + [29] = { 74, 48.3, 45, 400 }, + [30] = { 56, 48, 45, 400 }, + [31] = { 39.3, 47.9, 45, 400 }, + [32] = { 54.1, 47.6, 45, 400 }, + [33] = { 51.1, 47.4, 45, 400 }, + [34] = { 42.2, 46.9, 45, 400 }, + [35] = { 54.3, 46.7, 45, 400 }, + [36] = { 56.9, 46.6, 45, 400 }, + [37] = { 62.4, 46.5, 45, 400 }, + [38] = { 64.3, 46.4, 45, 400 }, + [39] = { 39.8, 46.4, 45, 400 }, + [40] = { 53.3, 45.9, 45, 400 }, + [41] = { 53.8, 45.6, 45, 400 }, + [42] = { 61.6, 45.2, 45, 400 }, + [43] = { 63.3, 45.2, 45, 400 }, + [44] = { 59.7, 45.2, 45, 400 }, + [45] = { 65.1, 45, 45, 400 }, + [46] = { 20.6, 45, 45, 400 }, + [47] = { 52.1, 44.9, 45, 400 }, + [48] = { 41, 44.8, 45, 400 }, + [49] = { 53.1, 44, 45, 400 }, + [50] = { 42.5, 43.8, 45, 400 }, + [51] = { 66.2, 43.8, 45, 400 }, + [52] = { 60.6, 43.7, 45, 400 }, + [53] = { 40.3, 43.7, 45, 400 }, + [54] = { 58.7, 43.7, 45, 400 }, + [55] = { 17.2, 42.7, 45, 300 }, + [56] = { 61.5, 42.3, 45, 400 }, + [57] = { 67.6, 42.3, 45, 400 }, + [58] = { 60.8, 42.2, 45, 400 }, + [59] = { 63.4, 42.2, 45, 400 }, + [60] = { 65.2, 42.2, 45, 400 }, + [61] = { 19.6, 42.2, 45, 400 }, + [62] = { 17.1, 42.1, 45, 400 }, + [63] = { 41.8, 41.9, 45, 400 }, + [64] = { 41.3, 41.4, 45, 400 }, + [65] = { 43.2, 41.2, 45, 400 }, + [66] = { 68.5, 41.2, 45, 400 }, + [67] = { 58.7, 41.1, 45, 400 }, + [68] = { 46.8, 41.1, 45, 400 }, + [69] = { 60.7, 41, 45, 400 }, + [70] = { 44.1, 41, 45, 400 }, + [71] = { 19, 41, 45, 400 }, + [72] = { 64.3, 40.9, 45, 400 }, + [73] = { 51.4, 40.9, 45, 400 }, + [74] = { 49.5, 40.7, 45, 400 }, + [75] = { 24.5, 40.7, 45, 400 }, + [76] = { 65.9, 40.5, 45, 400 }, + [77] = { 18.1, 40.2, 45, 400 }, + [78] = { 25.2, 40.1, 45, 400 }, + [79] = { 65.2, 39.7, 45, 400 }, + [80] = { 23.7, 39.6, 45, 400 }, + [81] = { 51.4, 39.5, 45, 400 }, + [82] = { 46.7, 39.5, 45, 400 }, + [83] = { 43.1, 39.2, 45, 400 }, + [84] = { 21.9, 39.2, 45, 400 }, + [85] = { 66.9, 39.1, 45, 400 }, + [86] = { 69.1, 38.6, 45, 400 }, + [87] = { 20.5, 38.2, 45, 400 }, + [88] = { 18.9, 38.1, 45, 400 }, + [89] = { 65.6, 38, 45, 400 }, + [90] = { 20, 38, 45, 400 }, + [91] = { 60.3, 37.2, 45, 400 }, + [92] = { 26.9, 37, 45, 400 }, + [93] = { 67.6, 36.9, 45, 400 }, + [94] = { 68, 36.9, 45, 400 }, + [95] = { 24.9, 36.8, 45, 400 }, + [96] = { 69, 36.8, 45, 400 }, + [97] = { 64.3, 36.8, 45, 400 }, + [98] = { 21.4, 36.4, 45, 400 }, + [99] = { 32.7, 36.1, 45, 400 }, + [100] = { 69.8, 35.8, 45, 400 }, + [101] = { 23.7, 35.4, 45, 400 }, + [102] = { 65.9, 35.1, 45, 400 }, + [103] = { 33.6, 35.1, 45, 400 }, + [104] = { 26.4, 35, 45, 400 }, + [105] = { 19.5, 34.2, 45, 400 }, + [106] = { 67.2, 34, 45, 400 }, + [107] = { 48.2, 33.7, 45, 400 }, + [108] = { 52.3, 32.4, 45, 400 }, + [109] = { 69.8, 31.6, 45, 400 }, + [110] = { 76.3, 31.1, 45, 400 }, + [111] = { 70, 30.4, 45, 400 }, + [112] = { 69.8, 27, 45, 400 }, + [113] = { 26.7, 24, 45, 400 }, + [114] = { 30.3, 21.1, 45, 400 }, + [115] = { 27.2, 20.7, 45, 400 }, + [116] = { 30.8, 20.4, 45, 400 }, + [117] = { 29.9, 19.9, 45, 400 }, + [118] = { 28.3, 17.3, 45, 400 }, + }, + ["lvl"] = "30-31", + }, + [2560] = { + ["coords"] = { + [1] = { 41, 69.9, 45, 400 }, + [2] = { 39.5, 69.9, 45, 400 }, + [3] = { 38.7, 69.1, 45, 400 }, + [4] = { 39.7, 68.9, 45, 400 }, + [5] = { 56, 68.8, 45, 400 }, + [6] = { 37.4, 67.9, 45, 400 }, + [7] = { 58.8, 67.3, 45, 400 }, + [8] = { 38.4, 67.2, 45, 400 }, + [9] = { 40.1, 67.1, 45, 400 }, + [10] = { 36.9, 66.6, 45, 400 }, + [11] = { 39.5, 65.9, 45, 400 }, + [12] = { 35.4, 65.8, 45, 400 }, + [13] = { 62.4, 65.3, 45, 400 }, + [14] = { 31.3, 65.2, 45, 400 }, + [15] = { 36.2, 65.1, 45, 400 }, + [16] = { 39.2, 65, 45, 400 }, + [17] = { 41, 64.8, 45, 400 }, + [18] = { 37.5, 64.6, 45, 400 }, + [19] = { 34.9, 64.3, 45, 400 }, + [20] = { 36.5, 64, 45, 400 }, + [21] = { 32.4, 64, 45, 400 }, + [22] = { 34.1, 61.8, 45, 400 }, + [23] = { 32.1, 60.3, 45, 400 }, + [24] = { 54.5, 59.6, 45, 400 }, + [25] = { 31.9, 59, 45, 400 }, + [26] = { 31.1, 57.6, 45, 400 }, + [27] = { 54.1, 57.6, 45, 400 }, + [28] = { 32.5, 56.9, 45, 400 }, + [29] = { 32.6, 56.6, 45, 400 }, + [30] = { 30.5, 56.4, 45, 400 }, + [31] = { 19.9, 56.3, 45, 400 }, + [32] = { 30.1, 56.1, 45, 400 }, + [33] = { 31.4, 55.9, 45, 400 }, + [34] = { 19, 55.2, 45, 400 }, + [35] = { 21.1, 54.9, 45, 400 }, + [36] = { 21.9, 53.6, 45, 400 }, + [37] = { 23.2, 49.7, 45, 400 }, + [38] = { 21.6, 49.4, 45, 400 }, + [39] = { 19.1, 48.7, 45, 400 }, + [40] = { 20.1, 48.2, 45, 400 }, + [41] = { 20.8, 47.7, 45, 400 }, + [42] = { 22, 47.7, 45, 400 }, + [43] = { 18, 47.2, 45, 400 }, + [44] = { 18.5, 46.3, 45, 400 }, + [45] = { 20.1, 45, 45, 400 }, + [46] = { 40.2, 41.1, 45, 400 }, + [47] = { 41.7, 39.6, 45, 400 }, + [48] = { 38.1, 38.7, 45, 400 }, + [49] = { 39.4, 38.4, 45, 400 }, + [50] = { 43.9, 38.2, 45, 400 }, + [51] = { 37, 38.2, 45, 400 }, + [52] = { 37.9, 36.9, 45, 400 }, + [53] = { 40.2, 36.8, 45, 400 }, + [54] = { 36.5, 36.7, 45, 400 }, + [55] = { 43, 36.4, 45, 400 }, + [56] = { 36.5, 35.5, 45, 400 }, + [57] = { 40.2, 35.3, 45, 400 }, + [58] = { 41.2, 35.3, 45, 400 }, + [59] = { 46.5, 35.1, 45, 400 }, + [60] = { 39.9, 34.2, 45, 400 }, + [61] = { 43.9, 34, 45, 400 }, + [62] = { 38, 33.5, 45, 400 }, + [63] = { 37.8, 33.3, 45, 400 }, + [64] = { 36.3, 33.1, 45, 400 }, + [65] = { 41, 30, 45, 400 }, + [66] = { 37.1, 29.9, 45, 400 }, + [67] = { 39.9, 29.9, 45, 400 }, + }, + ["lvl"] = "33-34", + }, + [2561] = { + ["coords"] = { + [1] = { 48, 82.4, 45, 400 }, + [2] = { 47.5, 80.7, 45, 400 }, + [3] = { 45.6, 79.5, 45, 400 }, + [4] = { 46.8, 78.5, 45, 400 }, + [5] = { 45.7, 76.6, 45, 400 }, + [6] = { 46.7, 75.8, 45, 400 }, + [7] = { 47.6, 75.2, 45, 400 }, + [8] = { 50, 70.4, 45, 400 }, + [9] = { 49.5, 68.9, 45, 400 }, + [10] = { 53.2, 68.8, 45, 400 }, + [11] = { 51.1, 68.7, 45, 400 }, + [12] = { 52.3, 68.1, 45, 400 }, + [13] = { 53.7, 67.8, 45, 400 }, + [14] = { 55.1, 67.5, 45, 400 }, + [15] = { 50.4, 67.4, 45, 400 }, + [16] = { 50.4, 64.7, 45, 400 }, + [17] = { 54.1, 64.7, 45, 400 }, + [18] = { 52.2, 64.6, 45, 400 }, + [19] = { 50.2, 63.9, 45, 400 }, + }, + ["lvl"] = "36-37", + }, + [2562] = { + ["coords"] = { + [1] = { 32.9, 50.3, 45, 400 }, + [2] = { 33.8, 49.4, 45, 400 }, + [3] = { 31, 48, 45, 400 }, + [4] = { 32.9, 47.8, 45, 400 }, + [5] = { 34.6, 47.7, 45, 400 }, + [6] = { 36.2, 47.6, 45, 400 }, + [7] = { 36.2, 46.7, 45, 400 }, + [8] = { 37.6, 46.2, 45, 400 }, + [9] = { 35.7, 45.3, 45, 400 }, + [10] = { 31, 45.2, 45, 400 }, + [11] = { 35.7, 43.8, 45, 400 }, + [12] = { 37.2, 43.6, 45, 400 }, + [13] = { 34.7, 43.2, 45, 400 }, + [14] = { 36.6, 42.3, 45, 400 }, + [15] = { 31.8, 41, 45, 400 }, + [16] = { 33.3, 41, 45, 400 }, + [17] = { 35.6, 40.9, 45, 400 }, + [18] = { 32.9, 39.5, 45, 400 }, + }, + ["lvl"] = "32-33", + }, + [2563] = { + ["coords"] = { + [1] = { 42, 75.6, 45, 400 }, + [2] = { 42, 72.7, 45, 400 }, + [3] = { 39.7, 70.9, 45, 400 }, + [4] = { 44.2, 70.5, 45, 400 }, + [5] = { 40.8, 67.8, 45, 400 }, + [6] = { 45.3, 67.4, 45, 400 }, + [7] = { 34.9, 66.2, 45, 400 }, + [8] = { 34, 64.9, 45, 400 }, + [9] = { 45.1, 64.8, 45, 400 }, + [10] = { 43.1, 64.5, 45, 400 }, + [11] = { 45.7, 64.5, 45, 400 }, + [12] = { 38.6, 62.9, 45, 400 }, + [13] = { 43.5, 62.7, 45, 400 }, + [14] = { 41.1, 62.5, 45, 400 }, + [15] = { 41.7, 61.7, 45, 400 }, + [16] = { 42.6, 61.5, 45, 400 }, + [17] = { 50.2, 61.5, 45, 400 }, + [18] = { 47.9, 61.2, 45, 400 }, + [19] = { 32.7, 60.9, 45, 400 }, + [20] = { 48.1, 60.6, 45, 400 }, + [21] = { 41, 60.2, 45, 400 }, + [22] = { 43, 59, 45, 400 }, + [23] = { 41.2, 58.8, 45, 400 }, + [24] = { 47.9, 57.6, 45, 400 }, + [25] = { 43.1, 57.4, 45, 400 }, + [26] = { 69, 56.3, 45, 400 }, + [27] = { 69.8, 56.2, 45, 400 }, + [28] = { 68.1, 56, 45, 400 }, + [29] = { 69.7, 55.1, 45, 400 }, + [30] = { 19.9, 54.7, 45, 400 }, + [31] = { 22.4, 54.6, 45, 400 }, + [32] = { 32.8, 54.4, 45, 400 }, + [33] = { 71.1, 54.3, 45, 400 }, + [34] = { 68, 53.1, 45, 400 }, + [35] = { 20.8, 53.1, 45, 400 }, + [36] = { 67, 52.6, 45, 400 }, + [37] = { 18.1, 52.3, 45, 400 }, + [38] = { 22.7, 52, 45, 400 }, + [39] = { 40, 51.9, 45, 400 }, + [40] = { 48.7, 50.8, 45, 400 }, + [41] = { 18.1, 50.7, 45, 400 }, + [42] = { 58.7, 50.7, 45, 400 }, + [43] = { 65.6, 50.7, 45, 400 }, + [44] = { 69, 50.6, 45, 400 }, + [45] = { 61.6, 50.6, 45, 400 }, + [46] = { 61.4, 50.6, 45, 400 }, + [47] = { 19.9, 50.5, 45, 400 }, + [48] = { 71.8, 50.5, 45, 400 }, + [49] = { 69.9, 50.2, 45, 400 }, + [50] = { 17.3, 49.8, 45, 400 }, + [51] = { 59.8, 49.7, 45, 400 }, + [52] = { 69.9, 49.3, 45, 400 }, + [53] = { 66.6, 49.3, 45, 400 }, + [54] = { 61.6, 49.2, 45, 400 }, + [55] = { 41.4, 48.7, 45, 400 }, + [56] = { 71.8, 48.5, 45, 400 }, + [57] = { 70, 48.3, 45, 400 }, + [58] = { 23.8, 48.3, 45, 400 }, + [59] = { 69, 47.9, 45, 400 }, + [60] = { 73, 47.2, 45, 400 }, + [61] = { 71.1, 47, 45, 400 }, + [62] = { 73.7, 46.9, 45, 400 }, + [63] = { 70.5, 46.7, 45, 400 }, + [64] = { 60.6, 46.6, 45, 400 }, + [65] = { 68.4, 46.5, 45, 400 }, + [66] = { 39.4, 45.4, 45, 400 }, + [67] = { 17.2, 45.3, 45, 400 }, + [68] = { 56, 45.3, 45, 400 }, + [69] = { 22.6, 45.2, 45, 400 }, + [70] = { 57.9, 45.2, 45, 400 }, + [71] = { 18.1, 44.7, 45, 400 }, + [72] = { 16.9, 43.7, 45, 400 }, + [73] = { 64.3, 43.6, 45, 400 }, + [74] = { 19.4, 43.6, 45, 400 }, + [75] = { 62.2, 42.6, 45, 400 }, + [76] = { 17.2, 42.3, 45, 400 }, + [77] = { 20.8, 42.2, 45, 400 }, + [78] = { 50.6, 41.8, 45, 400 }, + [79] = { 20, 41, 45, 400 }, + [80] = { 45.8, 40.9, 45, 400 }, + [81] = { 60.8, 39.7, 45, 400 }, + [82] = { 44.7, 39.2, 45, 400 }, + [83] = { 63.4, 38.3, 45, 400 }, + [84] = { 23.6, 38.2, 45, 400 }, + [85] = { 41.2, 38.2, 45, 400 }, + [86] = { 48.3, 38, 45, 400 }, + [87] = { 50.6, 38, 45, 400 }, + [88] = { 26.4, 38, 45, 400 }, + [89] = { 42.1, 37.2, 45, 400 }, + [90] = { 69.9, 37.1, 45, 400 }, + [91] = { 49.5, 36.7, 45, 400 }, + [92] = { 51.2, 36.6, 45, 400 }, + [93] = { 47.6, 36.4, 45, 400 }, + [94] = { 20.7, 36.3, 45, 400 }, + [95] = { 19.4, 35.9, 45, 300 }, + [96] = { 49.9, 35.6, 45, 400 }, + [97] = { 52.3, 35.5, 45, 400 }, + [98] = { 18.2, 35.5, 45, 400 }, + [99] = { 39.1, 35.4, 45, 400 }, + [100] = { 68.9, 35.4, 45, 400 }, + [101] = { 47.9, 35, 45, 400 }, + [102] = { 29.1, 34.6, 45, 400 }, + [103] = { 36.1, 33.9, 45, 400 }, + [104] = { 57.9, 33.9, 45, 400 }, + [105] = { 69.1, 33.8, 45, 400 }, + [106] = { 55.3, 33.7, 45, 400 }, + [107] = { 53.3, 33.3, 45, 400 }, + [108] = { 56.4, 33.2, 45, 400 }, + [109] = { 54.3, 32.5, 45, 400 }, + [110] = { 37.4, 31.2, 45, 400 }, + [111] = { 62.8, 30.1, 45, 400 }, + [112] = { 26.6, 25.7, 45, 400 }, + [113] = { 28.3, 20.9, 45, 400 }, + [114] = { 80.7, 83.8, 267, 400 }, + [115] = { 79.9, 81, 267, 400 }, + }, + ["lvl"] = "32-33", + }, + [2564] = { + ["coords"] = { + [1] = { 33, 46.6, 45, 400 }, + [2] = { 33.1, 46.1, 45, 400 }, + [3] = { 32.4, 46, 45, 400 }, + [4] = { 31.9, 46, 45, 400 }, + [5] = { 33.6, 46, 45, 400 }, + [6] = { 32.8, 45.4, 45, 400 }, + [7] = { 32.4, 44.7, 45, 400 }, + [8] = { 33.6, 44.6, 45, 400 }, + [9] = { 33.9, 44.6, 45, 400 }, + [10] = { 31.6, 44.2, 45, 400 }, + [11] = { 34.5, 44.2, 45, 400 }, + [12] = { 33.3, 43.9, 45, 400 }, + [13] = { 32.5, 43.9, 45, 400 }, + [14] = { 31, 43.7, 45, 400 }, + [15] = { 32.8, 43.1, 45, 400 }, + [16] = { 31.1, 43, 45, 400 }, + }, + ["lvl"] = "33-34", + }, + [2565] = { + ["coords"] = { + [1] = { 47.8, 77.2, 45, 400 }, + [2] = { 46, 74.5, 45, 400 }, + [3] = { 61.7, 69, 45, 400 }, + [4] = { 57, 69, 45, 400 }, + [5] = { 59.9, 68.5, 45, 400 }, + [6] = { 56.9, 67.5, 45, 400 }, + [7] = { 60.7, 67.2, 45, 400 }, + [8] = { 51.2, 66.6, 45, 400 }, + [9] = { 53.5, 66, 45, 400 }, + [10] = { 61.4, 65.9, 45, 400 }, + [11] = { 57.5, 65.8, 45, 400 }, + [12] = { 59.7, 65.8, 45, 400 }, + [13] = { 57.4, 65, 45, 400 }, + [14] = { 58.8, 64.6, 45, 400 }, + [15] = { 60.5, 64.5, 45, 400 }, + [16] = { 60.4, 64.4, 45, 400 }, + [17] = { 56.9, 62, 45, 400 }, + [18] = { 52.6, 61, 45, 400 }, + [19] = { 56.7, 60.5, 45, 400 }, + [20] = { 56, 59.1, 45, 400 }, + [21] = { 53.2, 58.9, 45, 400 }, + [22] = { 56.5, 57.8, 45, 400 }, + [23] = { 53.4, 56.4, 45, 400 }, + [24] = { 54.5, 56.3, 45, 400 }, + [25] = { 54.4, 54.9, 45, 400 }, + [26] = { 55.8, 54.6, 45, 400 }, + [27] = { 44.9, 36.8, 45, 400 }, + [28] = { 46.6, 36.7, 45, 400 }, + [29] = { 45.7, 34.8, 45, 400 }, + [30] = { 42, 34.1, 45, 400 }, + [31] = { 42.9, 32.6, 45, 400 }, + [32] = { 42.5, 32.3, 45, 400 }, + [33] = { 41, 31.9, 45, 400 }, + [34] = { 40.3, 31.7, 45, 400 }, + [35] = { 44.6, 31.6, 45, 400 }, + [36] = { 44.1, 31.1, 45, 400 }, + [37] = { 42.7, 29.5, 45, 400 }, + [38] = { 38.4, 29.3, 45, 400 }, + [39] = { 40.2, 29.1, 45, 400 }, + [40] = { 39.3, 27.8, 45, 400 }, + [41] = { 37.9, 26.9, 45, 400 }, + [42] = { 38.4, 25.4, 45, 400 }, + [43] = { 37.3, 24.6, 45, 400 }, + }, + ["lvl"] = "35-36", + }, + [2566] = { + ["coords"] = { + [1] = { 54.3, 81, 45, 400 }, + [2] = { 54.7, 80.4, 45, 400 }, + [3] = { 50.6, 79.8, 45, 400 }, + [4] = { 54.5, 78.6, 45, 400 }, + [5] = { 49.5, 78.6, 45, 400 }, + [6] = { 54.7, 78.3, 45, 400 }, + [7] = { 52, 76.9, 45, 400 }, + [8] = { 50.9, 76.5, 45, 400 }, + [9] = { 53.6, 76.2, 45, 400 }, + [10] = { 53.1, 75.9, 45, 400 }, + [11] = { 54.2, 75.6, 45, 400 }, + [12] = { 49.6, 75.6, 45, 400 }, + [13] = { 53.8, 74.6, 45, 400 }, + [14] = { 53.1, 74.5, 45, 400 }, + [15] = { 51.9, 74.3, 45, 400 }, + [16] = { 52.9, 74, 45, 400 }, + [17] = { 54.5, 73.7, 45, 400 }, + [18] = { 51.4, 72.8, 45, 400 }, + [19] = { 53.3, 72.8, 45, 400 }, + [20] = { 55.1, 72.6, 45, 400 }, + [21] = { 52.3, 71.5, 45, 400 }, + }, + ["lvl"] = "35-36", + }, + [2567] = { + ["coords"] = { + [1] = { 54.6, 81.3, 45, 400 }, + [2] = { 53.7, 80, 45, 400 }, + [3] = { 51.5, 77.8, 45, 400 }, + [4] = { 54.2, 77.7, 45, 400 }, + [5] = { 53, 77, 45, 400 }, + [6] = { 52.4, 75.6, 45, 400 }, + [7] = { 53.3, 74.4, 45, 400 }, + [8] = { 50.4, 74.3, 45, 400 }, + [9] = { 54.1, 71.8, 45, 400 }, + }, + ["lvl"] = "36-37", + }, + [2569] = { + ["coords"] = { + [1] = { 20.8, 69.1, 45, 400 }, + [2] = { 17.5, 68.3, 45, 400 }, + [3] = { 22.2, 67.7, 45, 400 }, + [4] = { 23, 66.9, 45, 400 }, + [5] = { 20, 66.7, 45, 400 }, + [6] = { 21.6, 66.7, 45, 400 }, + [7] = { 23.7, 65.8, 45, 400 }, + [8] = { 21.9, 65.4, 45, 400 }, + [9] = { 24.4, 62.2, 45, 400 }, + [10] = { 19.7, 66.5, 45, 0 }, + [11] = { 20.2, 67.1, 45, 0 }, + [12] = { 20.1, 67.9, 45, 0 }, + }, + ["lvl"] = "37-38", + ["rnk"] = "1", + }, + [2570] = { + ["coords"] = { + [1] = { 20.2, 69.2, 45, 400 }, + [2] = { 18.3, 68.6, 45, 400 }, + [3] = { 19.9, 68.5, 45, 400 }, + [4] = { 21.6, 68.4, 45, 400 }, + [5] = { 20, 67.5, 45, 400 }, + [6] = { 20.9, 67.5, 45, 400 }, + [7] = { 21.6, 67, 45, 400 }, + [8] = { 20.5, 66.7, 45, 400 }, + [9] = { 18.7, 66.3, 45, 400 }, + [10] = { 20.9, 65.7, 45, 400 }, + [11] = { 19.5, 64.6, 45, 400 }, + [12] = { 17.6, 68.5, 45, 0 }, + }, + ["lvl"] = "38-39", + ["rnk"] = "1", + }, + [2571] = { + ["coords"] = { + [1] = { 18.6, 69.2, 45, 400 }, + [2] = { 19.5, 69.1, 45, 400 }, + [3] = { 18.1, 68.9, 45, 400 }, + [4] = { 18, 68.3, 45, 400 }, + [5] = { 20.6, 68.2, 45, 400 }, + [6] = { 19.2, 67.6, 45, 400 }, + [7] = { 18.2, 67.4, 45, 400 }, + [8] = { 18.9, 65.9, 45, 400 }, + [9] = { 19.9, 65.7, 45, 400 }, + }, + ["lvl"] = "39-40", + ["rnk"] = "1", + }, + [2572] = { + ["coords"] = { + [1] = { 76.9, 44.4, 45, 400 }, + [2] = { 75.9, 44.3, 45, 400 }, + [3] = { 77.2, 43.7, 45, 400 }, + [4] = { 76.3, 42.4, 45, 400 }, + [5] = { 79.3, 41.4, 45, 400 }, + [6] = { 78.3, 41.3, 45, 400 }, + [7] = { 80, 40, 45, 400 }, + [8] = { 78, 39.9, 45, 400 }, + [9] = { 82.5, 38.9, 45, 400 }, + [10] = { 82.6, 38, 45, 400 }, + [11] = { 78.5, 37.8, 45, 400 }, + [12] = { 81.9, 37.2, 45, 400 }, + [13] = { 78.2, 36.8, 45, 400 }, + [14] = { 81.8, 35.8, 45, 400 }, + [15] = { 79.1, 35.6, 45, 400 }, + [16] = { 77.3, 35.4, 45, 400 }, + [17] = { 79.2, 34.9, 45, 400 }, + [18] = { 77.5, 34.9, 45, 400 }, + [19] = { 78.5, 34.5, 45, 400 }, + [20] = { 78.8, 34.3, 45, 400 }, + [21] = { 79.5, 33.1, 45, 400 }, + }, + ["lvl"] = "35-36", + }, + [2573] = { + ["coords"] = { + [1] = { 83.7, 33.7, 45, 400 }, + [2] = { 83.1, 33, 45, 400 }, + [3] = { 85.6, 32.5, 45, 400 }, + [4] = { 86.4, 31.5, 45, 400 }, + [5] = { 84.2, 30.9, 45, 400 }, + [6] = { 84.4, 30.8, 45, 400 }, + [7] = { 86.5, 30.2, 45, 400 }, + [8] = { 84.3, 29.9, 45, 400 }, + [9] = { 60.4, 90.3, 47, 400 }, + }, + ["lvl"] = "37-38", + }, + [2574] = { + ["coords"] = { + [1] = { 82.1, 36.1, 45, 400 }, + [2] = { 82.8, 36, 45, 400 }, + [3] = { 83.5, 35.4, 45, 400 }, + [4] = { 85, 34.3, 45, 400 }, + [5] = { 83.9, 34.2, 45, 400 }, + [6] = { 85.6, 33.1, 45, 400 }, + [7] = { 83.4, 32.1, 45, 400 }, + [8] = { 87, 31.6, 45, 400 }, + [9] = { 84.6, 31.4, 45, 400 }, + [10] = { 85.7, 31.3, 45, 400 }, + [11] = { 85.2, 31.3, 45, 400 }, + [12] = { 86, 30.2, 45, 400 }, + [13] = { 85.5, 30.1, 45, 400 }, + [14] = { 84.3, 28.9, 45, 400 }, + [15] = { 60.4, 89.4, 47, 400 }, + }, + ["lvl"] = "36-37", + }, + [2575] = { + ["coords"] = { + [1] = { 48.5, 87.5, 45, 400 }, + }, + ["lvl"] = "31-32", + }, + [2577] = { + ["coords"] = { + [1] = { 48.2, 88.1, 45, 400 }, + [2] = { 48.9, 87.6, 45, 400 }, + [3] = { 48, 87.2, 45, 400 }, + }, + ["lvl"] = "31-32", + }, + [2578] = { + ["coords"] = { + [1] = { 43.4, 61.2, 45, 400 }, + [2] = { 42.4, 56.6, 45, 400 }, + [3] = { 68.4, 53.2, 45, 400 }, + [4] = { 69.3, 52.4, 45, 400 }, + [5] = { 68.8, 49.6, 45, 400 }, + [6] = { 20.2, 47, 45, 400 }, + [7] = { 73.9, 46.6, 45, 400 }, + [8] = { 17.9, 43.6, 45, 400 }, + [9] = { 50.2, 42, 45, 400 }, + [10] = { 60, 41.5, 45, 400 }, + [11] = { 66.5, 40.8, 45, 400 }, + [12] = { 27.1, 38, 45, 400 }, + [13] = { 19.8, 37.4, 45, 400 }, + [14] = { 69.3, 37.2, 45, 400 }, + [15] = { 25.3, 35.1, 45, 400 }, + [16] = { 28.1, 34.4, 45, 400 }, + [17] = { 26.7, 24.8, 45, 400 }, + [18] = { 29.1, 19.8, 45, 400 }, + }, + ["lvl"] = "31-32", + }, + [2579] = { + ["coords"] = { + [1] = { 50.3, 70.9, 45, 400 }, + [2] = { 61.4, 69.8, 45, 400 }, + [3] = { 56.7, 68.7, 45, 400 }, + [4] = { 40.4, 66.9, 45, 400 }, + [5] = { 36.5, 66.3, 45, 400 }, + [6] = { 33.9, 66.1, 45, 400 }, + [7] = { 54.3, 65.4, 45, 400 }, + [8] = { 34.1, 61.9, 45, 400 }, + [9] = { 56, 55.7, 45, 400 }, + [10] = { 19.8, 52.1, 45, 400 }, + [11] = { 43.3, 38.7, 45, 400 }, + [12] = { 45.2, 35.4, 45, 400 }, + [13] = { 39.2, 30.5, 45, 400 }, + [14] = { 37.7, 26.7, 45, 400 }, + }, + ["lvl"] = "34-35", + }, + [2580] = { + ["coords"] = { + [1] = { 46.9, 81.7, 45, 400 }, + [2] = { 21.5, 72.6, 45, 400 }, + [3] = { 18.6, 71.3, 45, 400 }, + [4] = { 23.8, 71.2, 45, 400 }, + [5] = { 15.3, 69.7, 45, 400 }, + [6] = { 24.3, 68.9, 45, 400 }, + [7] = { 27.4, 67.9, 45, 400 }, + [8] = { 16, 64.5, 45, 400 }, + }, + ["lvl"] = "37-38", + }, + [2581] = { + ["coords"] = { + [1] = { 55.8, 42.1, 45, 400 }, + [2] = { 54.7, 41.1, 45, 400 }, + [3] = { 57.4, 39, 45, 400 }, + [4] = { 57.7, 38.9, 45, 400 }, + [5] = { 55.5, 38.6, 45, 400 }, + [6] = { 53.4, 37.8, 45, 400 }, + [7] = { 57.1, 37.7, 45, 400 }, + [8] = { 54.9, 36.1, 45, 400 }, + [9] = { 56.3, 34.9, 45, 400 }, + }, + ["fac"] = "A", + ["lvl"] = "31-32", + }, + [2582] = { + ["coords"] = { + [1] = { 55.3, 41.1, 45, 400 }, + [2] = { 55, 40.6, 45, 400 }, + [3] = { 55.8, 40.6, 45, 400 }, + [4] = { 55.4, 40.5, 45, 400 }, + [5] = { 56.5, 40, 45, 400 }, + [6] = { 55.8, 39.9, 45, 400 }, + [7] = { 57, 39.9, 45, 400 }, + [8] = { 55.1, 39.9, 45, 400 }, + [9] = { 55.4, 39.9, 45, 400 }, + [10] = { 54.6, 39.8, 45, 400 }, + [11] = { 57.3, 39.6, 45, 400 }, + [12] = { 57.1, 39.6, 45, 400 }, + [13] = { 55.4, 39.4, 45, 400 }, + [14] = { 54.7, 39.4, 45, 400 }, + [15] = { 56.4, 39.3, 45, 400 }, + [16] = { 55, 39.2, 45, 400 }, + [17] = { 54, 39, 45, 400 }, + [18] = { 55.2, 38.9, 45, 400 }, + [19] = { 54.5, 38.5, 45, 400 }, + [20] = { 54, 38.3, 45, 400 }, + [21] = { 54.4, 37.8, 45, 400 }, + [22] = { 54.9, 37.7, 45, 400 }, + [23] = { 56.4, 36.5, 45, 400 }, + [24] = { 56.2, 36.4, 45, 400 }, + [25] = { 56.2, 35.7, 45, 400 }, + }, + ["fac"] = "A", + ["lvl"] = "30-31", + }, + [2583] = { + ["coords"] = { + [1] = { 21.2, 63.3, 45, 400 }, + [2] = { 23.3, 63.2, 45, 400 }, + [3] = { 22, 63, 45, 400 }, + [4] = { 21.8, 61.5, 45, 400 }, + [5] = { 23, 60.3, 45, 400 }, + [6] = { 23.6, 59.6, 45, 400 }, + [7] = { 22.1, 59.5, 45, 400 }, + [8] = { 24.4, 58.8, 45, 400 }, + [9] = { 25.2, 58.7, 45, 400 }, + [10] = { 24.8, 57.9, 45, 400 }, + [11] = { 23.8, 57.1, 45, 400 }, + }, + ["fac"] = "A", + ["lvl"] = "37-38", + ["rnk"] = "1", + }, + [2584] = { + ["coords"] = { + [1] = { 21, 62.6, 45, 400 }, + [2] = { 23.7, 60.7, 45, 400 }, + [3] = { 23.5, 60.5, 45, 400 }, + [4] = { 23.7, 60.3, 45, 400 }, + [5] = { 28.7, 59, 45, 400 }, + [6] = { 25.4, 58.4, 45, 400 }, + [7] = { 26.8, 58.3, 45, 400 }, + [8] = { 23.8, 58.3, 45, 400 }, + [9] = { 25.2, 58.1, 45, 400 }, + [10] = { 25.4, 58, 45, 400 }, + [11] = { 26.8, 57.9, 45, 400 }, + }, + ["fac"] = "A", + ["lvl"] = "38-39", + ["rnk"] = "1", + }, + [2585] = { + ["coords"] = { + [1] = { 21.2, 60.5, 45, 400 }, + [2] = { 28.9, 59, 45, 400 }, + [3] = { 27.3, 58.8, 45, 400 }, + [4] = { 22.1, 58.8, 45, 400 }, + [5] = { 27.7, 58.8, 45, 400 }, + [6] = { 28.2, 58.3, 45, 400 }, + [7] = { 22.9, 58.1, 45, 400 }, + [8] = { 28.1, 58, 45, 400 }, + [9] = { 27.5, 57.6, 45, 400 }, + [10] = { 24.9, 57.1, 45, 400 }, + }, + ["fac"] = "A", + ["lvl"] = "39-40", + ["rnk"] = "1", + }, + [2586] = { + ["coords"] = { + [1] = { 31.9, 32.9, 45, 400 }, + [2] = { 33.9, 32.7, 45, 400 }, + [3] = { 32.9, 32.4, 45, 400 }, + [4] = { 32.2, 31.9, 45, 400 }, + [5] = { 33.5, 31.5, 45, 400 }, + [6] = { 34.7, 31.3, 45, 400 }, + [7] = { 31.6, 31.2, 45, 400 }, + [8] = { 33.8, 30.8, 45, 400 }, + [9] = { 34.8, 29.9, 45, 400 }, + [10] = { 31, 29.8, 45, 400 }, + [11] = { 34, 29.5, 45, 400 }, + [12] = { 30.4, 28.8, 45, 400 }, + [13] = { 34.8, 28.4, 45, 400 }, + [14] = { 29.1, 28.4, 45, 400 }, + [15] = { 30.3, 28, 45, 400 }, + [16] = { 34.7, 27.1, 45, 400 }, + [17] = { 29.2, 27.1, 45, 400 }, + [18] = { 34.2, 27, 45, 400 }, + [19] = { 33.9, 26.5, 45, 400 }, + [20] = { 30.6, 25.7, 45, 400 }, + [21] = { 31.2, 25.5, 45, 400 }, + [22] = { 32.1, 24.8, 45, 400 }, + [23] = { 30.1, 24.3, 45, 400 }, + }, + ["lvl"] = "30-31", + }, + [2587] = { + ["coords"] = { + [1] = { 32.1, 31.2, 45, 400 }, + [2] = { 32.6, 31.2, 45, 400 }, + [3] = { 33.5, 30.8, 45, 400 }, + [4] = { 30.7, 28.4, 45, 400 }, + [5] = { 31.5, 28.3, 45, 400 }, + [6] = { 32.3, 28.3, 45, 400 }, + [7] = { 33.4, 27.7, 45, 400 }, + [8] = { 32.1, 26.8, 45, 400 }, + [9] = { 31.1, 26.3, 45, 400 }, + [10] = { 31.3, 26.2, 45, 400 }, + }, + ["lvl"] = "32-33", + }, + [2588] = { + ["coords"] = { + [1] = { 28.1, 66.2, 45, 400 }, + [2] = { 28.6, 65.7, 45, 400 }, + [3] = { 26.7, 65.7, 45, 400 }, + [4] = { 29.4, 65.1, 45, 400 }, + [5] = { 25.4, 64.6, 45, 400 }, + [6] = { 25.9, 64.6, 45, 400 }, + [7] = { 29.6, 64.4, 45, 400 }, + [8] = { 26.4, 63.4, 45, 400 }, + [9] = { 25.4, 63.4, 45, 400 }, + [10] = { 28.2, 63, 45, 400 }, + [11] = { 29.3, 62.8, 45, 400 }, + [12] = { 29.2, 62.3, 45, 400 }, + [13] = { 25.7, 62.3, 45, 400 }, + [14] = { 27.5, 62, 45, 400 }, + [15] = { 29.2, 61.3, 45, 400 }, + }, + ["lvl"] = "36-37", + ["rnk"] = "1", + }, + [2589] = { + ["coords"] = { + [1] = { 32.3, 31.2, 45, 400 }, + [2] = { 33, 31, 45, 400 }, + [3] = { 32.1, 30.9, 45, 400 }, + [4] = { 31.5, 30, 45, 400 }, + [5] = { 33.7, 29.8, 45, 400 }, + [6] = { 33.6, 29.2, 45, 400 }, + [7] = { 31, 28.8, 45, 400 }, + [8] = { 31, 27.9, 45, 400 }, + [9] = { 33.8, 27.3, 45, 400 }, + [10] = { 32.5, 26.7, 45, 400 }, + [11] = { 30.9, 26.1, 45, 400 }, + [12] = { 31.8, 26, 45, 400 }, + [13] = { 32.4, 25.9, 45, 400 }, + [14] = { 32.1, 25.3, 45, 400 }, + }, + ["lvl"] = "31-32", + }, + [2590] = { + ["coords"] = { + [1] = { 29, 65.8, 45, 400 }, + [2] = { 25.4, 65.7, 45, 400 }, + [3] = { 27.4, 65.3, 45, 400 }, + [4] = { 29.4, 65.1, 45, 400 }, + [5] = { 25.9, 65.1, 45, 400 }, + [6] = { 29.1, 65, 45, 400 }, + [7] = { 26, 63.7, 45, 400 }, + [8] = { 28.5, 62.6, 45, 400 }, + [9] = { 26.9, 62.3, 45, 400 }, + [10] = { 25.2, 62.3, 45, 400 }, + [11] = { 26.8, 60.9, 45, 400 }, + [12] = { 27.5, 60.5, 45, 400 }, + }, + ["lvl"] = "35-36", + ["rnk"] = "1", + }, + [2591] = { + ["coords"] = { + [1] = { 26.2, 65.5, 45, 400 }, + [2] = { 26, 65.4, 45, 400 }, + [3] = { 26.5, 65.2, 45, 400 }, + [4] = { 26.5, 64.5, 45, 400 }, + [5] = { 29.2, 62.8, 45, 400 }, + [6] = { 29.3, 62.3, 45, 400 }, + [7] = { 28.2, 60.5, 45, 400 }, + }, + ["lvl"] = "37-38", + ["rnk"] = "1", + }, + [2592] = { + ["coords"] = { + [1] = { 36.6, 60.8, 45, 400 }, + [2] = { 37.7, 60.5, 45, 400 }, + [3] = { 34.8, 60.5, 45, 400 }, + [4] = { 35.7, 60.4, 45, 400 }, + [5] = { 34.6, 59.1, 45, 400 }, + [6] = { 37.5, 59.1, 45, 400 }, + [7] = { 36.6, 59, 45, 400 }, + [8] = { 35.7, 58.8, 45, 400 }, + [9] = { 36.6, 57.6, 45, 400 }, + [10] = { 37.5, 57.6, 45, 400 }, + [11] = { 35.7, 57.6, 45, 400 }, + [12] = { 34.9, 57.4, 45, 400 }, + [13] = { 37.5, 56.2, 45, 400 }, + [14] = { 36.4, 56.1, 45, 400 }, + [15] = { 34.9, 55.9, 45, 400 }, + [16] = { 35.8, 55.6, 45, 400 }, + }, + ["lvl"] = "38-39", + }, + [2593] = { + ["coords"] = {}, + ["lvl"] = "37-38", + }, + [2594] = { + ["coords"] = { + [1] = { 26.7, 73.6, 33, 300 }, + }, + ["lvl"] = "37", + }, + [2595] = { + ["coords"] = { + [1] = { 33.8, 6.5, 11, 300 }, + [2] = { 33.6, 6.3, 11, 400 }, + [3] = { 31.6, 5.7, 11, 400 }, + [4] = { 27.4, 5.5, 11, 300 }, + [5] = { 25.5, 91.4, 45, 300 }, + [6] = { 25.4, 91.2, 45, 400 }, + [7] = { 23.1, 90.5, 45, 400 }, + [8] = { 18.2, 90.2, 45, 300 }, + [9] = { 22.4, 90.1, 45, 300 }, + [10] = { 22.4, 89.9, 45, 400 }, + [11] = { 21, 89.9, 45, 400 }, + [12] = { 21.1, 89.9, 45, 300 }, + [13] = { 25.1, 89.7, 45, 400 }, + [14] = { 21, 89.5, 45, 400 }, + [15] = { 25.1, 89.4, 45, 300 }, + [16] = { 24.2, 88.4, 45, 400 }, + [17] = { 17, 88.4, 45, 300 }, + [18] = { 23.2, 88.1, 45, 400 }, + [19] = { 25.5, 87.4, 45, 400 }, + [20] = { 22.6, 87.1, 45, 300 }, + [21] = { 20.2, 87.1, 45, 300 }, + [22] = { 20.1, 86.9, 45, 400 }, + [23] = { 21.1, 86.9, 45, 300 }, + [24] = { 21.8, 86.8, 45, 400 }, + [25] = { 19, 86.8, 45, 400 }, + [26] = { 22.6, 86.8, 45, 400 }, + [27] = { 20.7, 86.7, 45, 400 }, + [28] = { 24.5, 86.7, 45, 400 }, + [29] = { 19, 86.6, 45, 300 }, + [30] = { 23.3, 86.5, 45, 400 }, + [31] = { 21.9, 86.5, 45, 300 }, + [32] = { 23.4, 86.4, 45, 300 }, + [33] = { 21.8, 85.5, 45, 400 }, + [34] = { 24.7, 85.3, 45, 400 }, + [35] = { 20.6, 85.3, 45, 400 }, + [36] = { 25.4, 85.2, 45, 400 }, + [37] = { 18.9, 85, 45, 400 }, + [38] = { 23.5, 85, 45, 400 }, + [39] = { 23.4, 84.8, 45, 400 }, + [40] = { 23.3, 84.7, 45, 400 }, + [41] = { 23, 84.3, 45, 400 }, + [42] = { 21.3, 84.3, 45, 400 }, + [43] = { 21.2, 84.3, 45, 400 }, + [44] = { 20, 84, 45, 400 }, + [45] = { 21.9, 83.9, 45, 400 }, + [46] = { 19.1, 83.9, 45, 400 }, + }, + ["lvl"] = "38-39", + }, + [2596] = { + ["coords"] = { + [1] = { 21.9, 89.9, 45, 300 }, + [2] = { 21.8, 89.8, 45, 400 }, + [3] = { 23.7, 89.6, 45, 400 }, + [4] = { 18.2, 87, 45, 300 }, + [5] = { 20.7, 85, 45, 400 }, + [6] = { 23.8, 84.9, 45, 400 }, + [7] = { 20.5, 84.8, 45, 400 }, + [8] = { 22.7, 84.6, 45, 400 }, + [9] = { 22.5, 84.4, 45, 400 }, + [10] = { 21.3, 84.1, 45, 400 }, + }, + ["lvl"] = "39-40", + }, + [2597] = { + ["coords"] = { + [1] = { 26, 65.7, 45, 400 }, + }, + ["lvl"] = "40", + ["rnk"] = "1", + }, + [2598] = { + ["coords"] = { + [1] = { 27.4, 64.7, 45, 37800 }, + [2] = { 28.3, 62.4, 45, 37800 }, + [3] = { 25.2, 62.2, 45, 37800 }, + [4] = { 28.3, 60.7, 45, 37800 }, + }, + ["lvl"] = "39", + ["rnk"] = "2", + }, + [2599] = { + ["coords"] = { + [1] = { 26.2, 65.6, 45, 400 }, + }, + ["lvl"] = "38", + ["rnk"] = "1", + }, + [2600] = { + ["coords"] = { + [1] = { 32.3, 31, 45, 18000 }, + }, + ["lvl"] = "34", + ["rnk"] = "4", + }, + [2601] = { + ["coords"] = { + [1] = { 20.5, 68.6, 45, 115200 }, + }, + ["lvl"] = "42", + ["rnk"] = "2", + }, + [2602] = { + ["coords"] = { + [1] = { 18, 69.2, 45, 75600 }, + }, + ["lvl"] = "39", + ["rnk"] = "2", + }, + [2603] = { + ["coords"] = { + [1] = { 33.7, 44.1, 45, 18000 }, + }, + ["lvl"] = "36", + ["rnk"] = "4", + }, + [2604] = { + ["coords"] = { + [1] = { 53.8, 79.6, 45, 37800 }, + }, + ["lvl"] = "39", + ["rnk"] = "4", + }, + [2605] = { + ["coords"] = { + [1] = { 67.3, 80.9, 45, 172800 }, + [2] = { 66.8, 80.1, 45, 172800 }, + [3] = { 69.2, 79.7, 45, 172800 }, + [4] = { 67.9, 78.7, 45, 172800 }, + }, + ["lvl"] = "40", + ["rnk"] = "4", + }, + [2606] = { + ["coords"] = { + [1] = { 64.6, 73.7, 45, 18000 }, + [2] = { 70.8, 69.9, 45, 18000 }, + [3] = { 73.4, 65.3, 45, 18000 }, + [4] = { 66.1, 64.1, 45, 18000 }, + }, + ["lvl"] = "37", + ["rnk"] = "4", + }, + [2607] = { + ["coords"] = { + [1] = { 28.4, 58.1, 45, 400 }, + }, + ["fac"] = "A", + ["lvl"] = "44", + ["rnk"] = "1", + }, + [2608] = { + ["coords"] = { + [1] = { 46, 46.7, 45, 400 }, + }, + ["fac"] = "A", + ["lvl"] = "44", + }, + [2609] = { + ["coords"] = { + [1] = { 82.8, 32.2, 45, 57600 }, + }, + ["lvl"] = "40", + ["rnk"] = "4", + }, + [2610] = { + ["coords"] = { + [1] = { 32.3, 81.4, 45, 400 }, + }, + ["lvl"] = "40", + }, + [2611] = { + ["coords"] = { + [1] = { 64.5, 27.5, 45, 400 }, + }, + ["lvl"] = "42", + ["rnk"] = "1", + }, + [2612] = { + ["coords"] = { + [1] = { 33.5, 52.1, 45, 400 }, + }, + ["fac"] = "A", + ["lvl"] = "38", + ["rnk"] = "1", + }, + [2614] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [2615] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [2616] = { + ["coords"] = { + [1] = { 68.8, 53.2, 15, 360 }, + }, + ["lvl"] = "42", + }, + [2617] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "41", + }, + [2618] = { + ["coords"] = { + [1] = { 62.7, 59.4, 45, 400 }, + [2] = { 63.3, 59.3, 45, 400 }, + [3] = { 60.6, 59.2, 45, 400 }, + [4] = { 63.1, 58.8, 45, 400 }, + [5] = { 63.6, 58.7, 45, 400 }, + [6] = { 59.7, 58.4, 45, 400 }, + [7] = { 61.8, 58.3, 45, 400 }, + [8] = { 61.2, 58.2, 45, 400 }, + [9] = { 63.4, 58.1, 45, 400 }, + [10] = { 62.7, 58, 45, 400 }, + [11] = { 60.7, 58, 45, 400 }, + [12] = { 61.5, 57.9, 45, 400 }, + [13] = { 63.5, 57.5, 45, 400 }, + [14] = { 63.1, 57.4, 45, 400 }, + [15] = { 61.2, 57.4, 45, 400 }, + [16] = { 61.9, 57.3, 45, 400 }, + [17] = { 59.5, 57.2, 45, 400 }, + [18] = { 59.9, 57.2, 45, 400 }, + [19] = { 60.7, 57.1, 45, 400 }, + [20] = { 61.4, 56.9, 45, 400 }, + [21] = { 59.8, 56.2, 45, 400 }, + [22] = { 62.3, 56.1, 45, 400 }, + [23] = { 62.6, 56.1, 45, 400 }, + [24] = { 60.3, 56, 45, 400 }, + [25] = { 61.4, 55.7, 45, 400 }, + [26] = { 62.5, 55.7, 45, 400 }, + [27] = { 61.9, 55.6, 45, 400 }, + }, + ["fac"] = "H", + ["lvl"] = "33-34", + }, + [2619] = { + ["coords"] = { + [1] = { 64.4, 60.8, 45, 400 }, + [2] = { 62.8, 60.5, 45, 400 }, + [3] = { 61.1, 60.1, 45, 400 }, + [4] = { 61.5, 60.1, 45, 400 }, + [5] = { 64, 58.3, 45, 400 }, + [6] = { 62.3, 58.3, 45, 400 }, + [7] = { 59.6, 57.1, 45, 400 }, + [8] = { 64.6, 56.2, 45, 400 }, + [9] = { 60.9, 56.2, 45, 400 }, + [10] = { 61, 56.1, 45, 400 }, + [11] = { 62.8, 55.7, 45, 400 }, + [12] = { 59.6, 55.7, 45, 400 }, + [13] = { 58.5, 55.6, 45, 400 }, + [14] = { 62.4, 54.3, 45, 400 }, + [15] = { 58.6, 54.1, 45, 400 }, + [16] = { 62.7, 52.9, 45, 400 }, + }, + ["fac"] = "H", + ["lvl"] = "34-35", + }, + [2620] = { + ["coords"] = { + [1] = { 43.2, 81.6, 17, 300 }, + [2] = { 41.4, 79.9, 17, 300 }, + [3] = { 46, 60.5, 17, 300 }, + [4] = { 48.8, 57.4, 17, 300 }, + [5] = { 52.8, 53.8, 17, 300 }, + [6] = { 59.3, 52.6, 17, 300 }, + [7] = { 42.7, 49.2, 17, 300 }, + [8] = { 60.9, 48.9, 17, 300 }, + [9] = { 52.8, 46.9, 17, 300 }, + [10] = { 41.9, 45.3, 17, 300 }, + [11] = { 44.8, 43.4, 17, 300 }, + [12] = { 47.3, 42.5, 17, 300 }, + [13] = { 43.3, 41.3, 17, 300 }, + [14] = { 35.9, 39.7, 17, 300 }, + [15] = { 53.4, 38.9, 17, 300 }, + [16] = { 55.3, 38.3, 17, 300 }, + [17] = { 58.6, 35, 17, 300 }, + [18] = { 55, 34.6, 17, 300 }, + [19] = { 51.6, 33.1, 17, 300 }, + [20] = { 31.7, 32.9, 17, 300 }, + [21] = { 49, 29.8, 17, 300 }, + [22] = { 41.8, 24.9, 17, 300 }, + [23] = { 44.3, 20.4, 17, 300 }, + [24] = { 41, 18.9, 17, 300 }, + [25] = { 53.4, 16.7, 17, 300 }, + [26] = { 42, 15.4, 17, 300 }, + [27] = { 39.1, 14, 17, 300 }, + [28] = { 48, 13.2, 17, 300 }, + [29] = { 53.3, 12.8, 17, 300 }, + [30] = { 51.1, 76.1, 40, 300 }, + [31] = { 38.8, 71.9, 40, 300 }, + [32] = { 51.5, 63.9, 40, 300 }, + [33] = { 36.8, 49.2, 40, 300 }, + [34] = { 61.5, 49, 40, 300 }, + [35] = { 49.6, 43.8, 40, 300 }, + [36] = { 60.8, 40.6, 40, 300 }, + [37] = { 49.6, 30.7, 40, 300 }, + [38] = { 49, 25.4, 40, 300 }, + [39] = { 48.4, 77.6, 45, 300 }, + [40] = { 39.3, 67.5, 45, 300 }, + [41] = { 49.9, 67.2, 45, 300 }, + [42] = { 57.6, 65.3, 45, 300 }, + [43] = { 33.5, 62.5, 45, 300 }, + [44] = { 46.1, 52.3, 45, 300 }, + [45] = { 68.8, 50.1, 45, 300 }, + [46] = { 22.1, 50.1, 45, 300 }, + [47] = { 17.5, 48.7, 45, 300 }, + [48] = { 56.6, 47.7, 45, 300 }, + [49] = { 40.5, 47.6, 45, 300 }, + [50] = { 72.1, 46.8, 45, 300 }, + [51] = { 28.3, 44.4, 45, 300 }, + [52] = { 63.8, 41.6, 45, 300 }, + [53] = { 30.7, 41.4, 45, 300 }, + [54] = { 37.3, 37.3, 45, 300 }, + [55] = { 45.7, 37.2, 45, 300 }, + [56] = { 77.8, 35.5, 45, 300 }, + [57] = { 68.3, 34.3, 45, 300 }, + [58] = { 54, 33.4, 45, 300 }, + [59] = { 63.9, 30.5, 45, 300 }, + [60] = { 37.6, 25.7, 45, 300 }, + [61] = { 27.3, 21.3, 45, 300 }, + [62] = { 43.7, 92.3, 215, 300 }, + [63] = { 50, 90.1, 215, 300 }, + [64] = { 56.4, 88.9, 215, 300 }, + [65] = { 41.7, 82.7, 215, 300 }, + [66] = { 46.1, 80.2, 215, 300 }, + [67] = { 35.4, 79.5, 215, 300 }, + [68] = { 52.2, 79, 215, 300 }, + [69] = { 48, 64.2, 215, 300 }, + [70] = { 57.5, 61.3, 215, 300 }, + [71] = { 57.4, 61.2, 215, 300 }, + [72] = { 51.8, 59.4, 215, 300 }, + [73] = { 50.2, 57.5, 215, 300 }, + [74] = { 35.6, 51.8, 215, 300 }, + [75] = { 45.2, 50.8, 215, 300 }, + [76] = { 54.6, 49.5, 215, 300 }, + [77] = { 36.2, 46.3, 215, 300 }, + [78] = { 45.4, 45.1, 215, 300 }, + [79] = { 39.7, 44.2, 215, 300 }, + [80] = { 33, 42, 215, 300 }, + [81] = { 51.3, 41.2, 215, 300 }, + [82] = { 39.4, 35.1, 215, 300 }, + [83] = { 47, 35, 215, 300 }, + [84] = { 53.6, 34, 215, 300 }, + [85] = { 34.1, 29.8, 215, 300 }, + [86] = { 55.6, 28.1, 215, 300 }, + [87] = { 59.6, 23.3, 215, 300 }, + [88] = { 51.6, 19, 215, 300 }, + [89] = { 39.3, 16.9, 215, 300 }, + [90] = { 51.4, 9.8, 215, 300 }, + [91] = { 80.1, 79.8, 267, 300 }, + [92] = { 86.4, 72.1, 405, 300 }, + [93] = { 87.5, 58.3, 405, 300 }, + }, + ["lvl"] = "1", + }, + [2621] = { + ["coords"] = { + [1] = { 74.7, 38.4, 45, 400 }, + [2] = { 74.3, 38.2, 45, 400 }, + [3] = { 74.7, 37.7, 45, 400 }, + [4] = { 74.4, 37.4, 45, 400 }, + [5] = { 75.2, 36.6, 45, 400 }, + [6] = { 73.3, 36.4, 45, 400 }, + [7] = { 72.5, 35.2, 45, 400 }, + [8] = { 74.5, 34.7, 45, 400 }, + [9] = { 73, 33.5, 45, 400 }, + [10] = { 73.5, 33.1, 45, 400 }, + [11] = { 73.7, 32.1, 45, 400 }, + [12] = { 73.7, 31.7, 45, 400 }, + [13] = { 73.2, 30.4, 45, 400 }, + [14] = { 73.6, 30.3, 45, 400 }, + [15] = { 74.2, 30.3, 45, 400 }, + [16] = { 74.7, 30.3, 45, 400 }, + [17] = { 73.3, 30.3, 45, 400 }, + [18] = { 73.2, 29.7, 45, 400 }, + [19] = { 74.3, 29.1, 45, 400 }, + [20] = { 74.2, 29, 45, 400 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [2622] = { + ["coords"] = { + [1] = { 28.4, 76.8, 33, 300 }, + }, + ["lvl"] = "46", + }, + [2623] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "32-33", + }, + [2624] = { + ["coords"] = { + [1] = { 24.9, 23.5, 33, 0 }, + }, + ["lvl"] = "40", + }, + [2625] = { + ["coords"] = { + [1] = { 26.5, 76.6, 33, 300 }, + }, + ["lvl"] = "55", + }, + [2626] = { + ["coords"] = { + [1] = { 27.4, 77.2, 33, 300 }, + }, + ["lvl"] = "43", + }, + [2627] = { + ["coords"] = { + [1] = { 28.8, 76.8, 33, 300 }, + }, + ["lvl"] = "34", + }, + [2628] = { + ["coords"] = { + [1] = { 13.9, 77.6, 36, 300 }, + [2] = { 11.5, 77.5, 36, 300 }, + [3] = { 14.6, 75.8, 36, 300 }, + [4] = { 14.7, 75.6, 36, 300 }, + [5] = { 16.5, 74.9, 36, 300 }, + [6] = { 12.5, 74.9, 36, 300 }, + [7] = { 10.4, 74, 36, 300 }, + [8] = { 20, 71.8, 36, 300 }, + [9] = { 20.4, 58.2, 36, 300 }, + [10] = { 16.9, 56.4, 36, 300 }, + [11] = { 71.2, 57.6, 130, 300 }, + [12] = { 70.4, 55.3, 130, 300 }, + [13] = { 21, 16.4, 267, 300 }, + [14] = { 19, 16.2, 267, 300 }, + [15] = { 21.6, 14.7, 267, 300 }, + [16] = { 21.7, 14.6, 267, 300 }, + [17] = { 23.3, 14, 267, 300 }, + [18] = { 19.8, 13.9, 267, 300 }, + [19] = { 18, 13.2, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "33-34", + }, + [2630] = { + ["coords"] = {}, + ["lvl"] = "13", + }, + [2634] = { + ["coords"] = { + [1] = { 38.5, 80.6, 33, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "42", + }, + [2635] = { + ["coords"] = { + [1] = { 33.4, 32.5, 33, 1800 }, + [2] = { 29.8, 25.5, 33, 1800 }, + [3] = { 29.3, 22.3, 33, 1800 }, + [4] = { 25.3, 19.2, 33, 1800 }, + }, + ["lvl"] = "38", + ["rnk"] = "1", + }, + [2636] = { + ["coords"] = { + [1] = { 32.8, 82, 45, 400 }, + [2] = { 33.2, 81.5, 45, 400 }, + [3] = { 31.4, 80.7, 45, 400 }, + }, + ["lvl"] = "38-39", + }, + [2637] = { + ["coords"] = {}, + ["lvl"] = "37", + }, + [2638] = { + ["coords"] = {}, + ["lvl"] = "35", + }, + [2639] = { + ["coords"] = { + [1] = { 45.3, 69.5, 47, 350 }, + [2] = { 43.5, 68.3, 47, 350 }, + [3] = { 43.5, 67, 47, 350 }, + [4] = { 46.3, 66.9, 47, 350 }, + [5] = { 43.4, 65.4, 47, 350 }, + [6] = { 50.5, 64.4, 47, 350 }, + [7] = { 47.9, 63.3, 47, 350 }, + [8] = { 48.8, 63, 47, 350 }, + [9] = { 46.8, 61.9, 47, 350 }, + }, + ["lvl"] = "45-46", + }, + [2640] = { + ["coords"] = { + [1] = { 68.5, 70.3, 47, 350 }, + [2] = { 47.6, 69.5, 47, 350 }, + [3] = { 68.9, 69.4, 47, 350 }, + [4] = { 67.3, 68.7, 47, 350 }, + [5] = { 65.9, 68.6, 47, 350 }, + [6] = { 67.3, 66.4, 47, 350 }, + [7] = { 67.7, 66, 47, 350 }, + [8] = { 63.3, 60, 47, 350 }, + [9] = { 63.8, 59.9, 47, 350 }, + }, + ["lvl"] = "46-47", + }, + [2641] = { + ["coords"] = { + [1] = { 65.9, 71.1, 47, 350 }, + [2] = { 68.3, 70.9, 47, 350 }, + [3] = { 67.7, 70.8, 47, 350 }, + [4] = { 66.7, 70.7, 47, 350 }, + [5] = { 68.7, 70.6, 47, 350 }, + [6] = { 65.3, 67.5, 47, 350 }, + }, + ["lvl"] = "46-47", + ["rnk"] = "1", + }, + [2642] = { + ["coords"] = { + [1] = { 65.3, 73.4, 47, 350 }, + [2] = { 68, 73.2, 47, 350 }, + [3] = { 64.2, 72.2, 47, 350 }, + [4] = { 65.7, 72, 47, 350 }, + [5] = { 63.7, 71.4, 47, 350 }, + [6] = { 64.9, 71.3, 47, 350 }, + [7] = { 63.5, 65.8, 47, 350 }, + [8] = { 64.3, 65.7, 47, 350 }, + }, + ["lvl"] = "47-48", + ["rnk"] = "1", + }, + [2643] = { + ["coords"] = { + [1] = { 66.1, 73.5, 47, 350 }, + [2] = { 66.5, 72.9, 47, 350 }, + [3] = { 64.6, 72.7, 47, 350 }, + [4] = { 68.2, 72.6, 47, 350 }, + [5] = { 67.1, 71.9, 47, 350 }, + [6] = { 66.5, 71.9, 47, 350 }, + [7] = { 68.1, 71.8, 47, 350 }, + [8] = { 64.2, 71.6, 47, 350 }, + [9] = { 64, 70.6, 47, 350 }, + [10] = { 64.5, 70.6, 47, 350 }, + [11] = { 63.6, 70, 47, 350 }, + [12] = { 64.3, 69.8, 47, 350 }, + [13] = { 64.3, 67.5, 47, 350 }, + [14] = { 64.3, 66.6, 47, 350 }, + [15] = { 63.3, 66.6, 47, 350 }, + }, + ["lvl"] = "47-48", + ["rnk"] = "1", + }, + [2644] = { + ["coords"] = { + [1] = { 66.8, 80.3, 47, 350 }, + [2] = { 64, 78.6, 47, 350 }, + [3] = { 65, 77, 47, 350 }, + [4] = { 67.5, 76.2, 47, 350 }, + [5] = { 65.4, 75.6, 47, 350 }, + [6] = { 68.3, 75.3, 47, 350 }, + [7] = { 66, 74.5, 47, 350 }, + [8] = { 64.4, 74.1, 47, 350 }, + [9] = { 63.6, 73.1, 47, 350 }, + [10] = { 62.8, 70.8, 47, 350 }, + [11] = { 62.1, 69.2, 47, 350 }, + [12] = { 61.3, 67.9, 47, 350 }, + [13] = { 57.6, 66.6, 47, 350 }, + [14] = { 62.1, 66.4, 47, 350 }, + [15] = { 59.2, 66.1, 47, 350 }, + }, + ["lvl"] = "48-49", + ["rnk"] = "1", + }, + [2645] = { + ["coords"] = { + [1] = { 66.6, 77.3, 47, 350 }, + [2] = { 65, 75.8, 47, 350 }, + [3] = { 68, 75.8, 47, 350 }, + [4] = { 66, 75.5, 47, 350 }, + [5] = { 68, 74.7, 47, 350 }, + [6] = { 66.6, 74.4, 47, 350 }, + [7] = { 64.9, 74.4, 47, 350 }, + [8] = { 63.7, 73.7, 47, 350 }, + [9] = { 60.1, 73.1, 47, 350 }, + [10] = { 63.2, 73, 47, 350 }, + [11] = { 62.5, 72.2, 47, 350 }, + [12] = { 62.4, 71.5, 47, 350 }, + [13] = { 59.1, 71.3, 47, 350 }, + [14] = { 62.2, 70.2, 47, 350 }, + [15] = { 62.7, 68.7, 47, 350 }, + [16] = { 62.1, 68.3, 47, 350 }, + [17] = { 62.6, 66, 47, 350 }, + [18] = { 62.5, 65.3, 47, 350 }, + [19] = { 60, 65.1, 47, 350 }, + }, + ["lvl"] = "48-49", + ["rnk"] = "1", + }, + [2646] = { + ["coords"] = { + [1] = { 87.6, 23.2, 45, 350 }, + [2] = { 87.2, 22.5, 45, 350 }, + [3] = { 63.5, 84.1, 47, 350 }, + [4] = { 63.1, 83.4, 47, 350 }, + [5] = { 64.1, 83.2, 47, 350 }, + [6] = { 66, 82.4, 47, 350 }, + [7] = { 63.5, 82.2, 47, 350 }, + [8] = { 64.6, 82.1, 47, 350 }, + [9] = { 65.2, 82.1, 47, 350 }, + [10] = { 66.6, 81.3, 47, 350 }, + [11] = { 67.1, 80.9, 47, 350 }, + [12] = { 65.9, 80.4, 47, 350 }, + [13] = { 66.8, 80, 47, 350 }, + [14] = { 63.5, 79.7, 47, 350 }, + [15] = { 62.9, 78.2, 47, 350 }, + [16] = { 67, 78.1, 47, 350 }, + [17] = { 62.9, 77.8, 47, 350 }, + [18] = { 67.2, 77.5, 47, 350 }, + [19] = { 67.8, 77.5, 47, 350 }, + [20] = { 60.4, 74, 47, 350 }, + [21] = { 58.3, 72.8, 47, 350 }, + [22] = { 61.6, 72.4, 47, 350 }, + [23] = { 61.3, 72.1, 47, 350 }, + [24] = { 60.8, 68.7, 47, 350 }, + [25] = { 58.8, 68.3, 47, 350 }, + [26] = { 60.4, 68.2, 47, 350 }, + [27] = { 58.4, 68.1, 47, 350 }, + [28] = { 60.8, 67.8, 47, 350 }, + [29] = { 58.4, 67.1, 47, 350 }, + [30] = { 60.5, 64.6, 47, 350 }, + }, + ["lvl"] = "49-50", + ["rnk"] = "1", + }, + [2647] = { + ["coords"] = { + [1] = { 87.4, 21.7, 45, 350 }, + [2] = { 63.3, 82.7, 47, 350 }, + [3] = { 65.7, 82.5, 47, 350 }, + [4] = { 67.3, 80.3, 47, 350 }, + [5] = { 63.3, 80.2, 47, 350 }, + [6] = { 66.1, 79.9, 47, 350 }, + [7] = { 67.7, 78, 47, 350 }, + [8] = { 59.9, 74.1, 47, 350 }, + [9] = { 61.4, 72.9, 47, 350 }, + [10] = { 58, 72.8, 47, 350 }, + [11] = { 58, 71.7, 47, 350 }, + [12] = { 60, 71.5, 47, 350 }, + [13] = { 60.5, 67.6, 47, 350 }, + [14] = { 58.7, 67.1, 47, 350 }, + [15] = { 60.8, 65.6, 47, 350 }, + [16] = { 60.7, 64.5, 47, 350 }, + }, + ["lvl"] = "49-50", + ["rnk"] = "1", + }, + [2648] = { + ["coords"] = { + [1] = { 81, 25.9, 45, 350 }, + [2] = { 80.9, 25.2, 45, 350 }, + [3] = { 79.9, 24.1, 45, 350 }, + [4] = { 79.3, 24, 45, 350 }, + [5] = { 80.9, 23.8, 45, 350 }, + [6] = { 77.9, 23.1, 45, 350 }, + [7] = { 80.9, 23.1, 45, 350 }, + [8] = { 79.9, 22.9, 45, 350 }, + [9] = { 80.6, 22.6, 45, 350 }, + [10] = { 81.6, 22.2, 45, 350 }, + [11] = { 82, 21.5, 45, 350 }, + [12] = { 79.6, 21.1, 45, 350 }, + [13] = { 85.3, 20.7, 45, 350 }, + [14] = { 85.7, 20.5, 45, 350 }, + [15] = { 81.3, 20.5, 45, 350 }, + [16] = { 81.3, 20.1, 45, 350 }, + [17] = { 80, 19.9, 45, 350 }, + [18] = { 81.3, 19.7, 45, 350 }, + [19] = { 83.9, 19.3, 45, 350 }, + [20] = { 81.6, 18.6, 45, 350 }, + [21] = { 82.4, 18, 45, 350 }, + [22] = { 83.5, 17.8, 45, 350 }, + [23] = { 82.6, 16.4, 45, 350 }, + [24] = { 81.7, 15.3, 45, 350 }, + [25] = { 57.3, 86.6, 47, 350 }, + [26] = { 57.2, 85.9, 47, 350 }, + [27] = { 56.4, 84.9, 47, 350 }, + [28] = { 55.7, 84.8, 47, 350 }, + [29] = { 57.3, 84.6, 47, 350 }, + [30] = { 54.5, 84, 47, 350 }, + [31] = { 57.2, 83.9, 47, 350 }, + [32] = { 56.3, 83.7, 47, 350 }, + [33] = { 56.9, 83.4, 47, 350 }, + [34] = { 57.9, 83.1, 47, 350 }, + [35] = { 58.2, 82.4, 47, 350 }, + [36] = { 56, 82, 47, 350 }, + [37] = { 64.9, 81.8, 47, 350 }, + [38] = { 61.3, 81.7, 47, 350 }, + [39] = { 61.8, 81.5, 47, 350 }, + [40] = { 57.7, 81.5, 47, 350 }, + [41] = { 57.6, 81.2, 47, 350 }, + [42] = { 56.5, 80.9, 47, 350 }, + [43] = { 57.6, 80.7, 47, 350 }, + [44] = { 60.1, 80.4, 47, 350 }, + [45] = { 57.9, 79.7, 47, 350 }, + [46] = { 58.6, 79.2, 47, 350 }, + [47] = { 59.7, 79, 47, 350 }, + [48] = { 58.9, 77.7, 47, 350 }, + [49] = { 58, 76.6, 47, 350 }, + [50] = { 57.1, 68.8, 47, 350 }, + [51] = { 57.1, 68, 47, 350 }, + }, + ["lvl"] = "50-51", + ["rnk"] = "1", + }, + [2649] = { + ["coords"] = { + [1] = { 25.1, 60.3, 47, 350 }, + [2] = { 24.6, 59.1, 47, 350 }, + [3] = { 24.1, 58.8, 47, 350 }, + [4] = { 23.1, 58.5, 47, 350 }, + [5] = { 25.3, 57.8, 47, 350 }, + [6] = { 23, 57.8, 47, 350 }, + [7] = { 22.4, 57.8, 47, 350 }, + [8] = { 21.8, 57.6, 47, 350 }, + [9] = { 23.7, 56.6, 47, 350 }, + [10] = { 25.3, 56.4, 47, 350 }, + [11] = { 21.8, 55.2, 47, 350 }, + [12] = { 22.7, 55.2, 47, 350 }, + [13] = { 24.4, 55.1, 47, 350 }, + }, + ["lvl"] = "40-41", + }, + [2650] = { + ["coords"] = { + [1] = { 24.5, 60.2, 47, 350 }, + [2] = { 25.4, 59.1, 47, 350 }, + [3] = { 23.7, 58.5, 47, 350 }, + [4] = { 22.8, 58.3, 47, 350 }, + [5] = { 23.6, 57.3, 47, 350 }, + [6] = { 24.5, 56.6, 47, 350 }, + [7] = { 21.9, 56.5, 47, 350 }, + [8] = { 22.7, 56.4, 47, 350 }, + [9] = { 23.6, 55.1, 47, 350 }, + }, + ["lvl"] = "41-42", + }, + [2651] = { + ["coords"] = { + [1] = { 29.8, 61.3, 47, 350 }, + [2] = { 29.8, 60.4, 47, 350 }, + [3] = { 30.5, 60.1, 47, 350 }, + [4] = { 31.5, 59.9, 47, 350 }, + [5] = { 28, 58.9, 47, 350 }, + [6] = { 32.8, 58.9, 47, 350 }, + [7] = { 32.2, 58.6, 47, 350 }, + [8] = { 31.1, 58.5, 47, 350 }, + [9] = { 31.7, 58.3, 47, 350 }, + [10] = { 33, 58.3, 47, 350 }, + [11] = { 28, 58, 47, 350 }, + [12] = { 29.7, 57.8, 47, 350 }, + [13] = { 30.6, 57.7, 47, 350 }, + [14] = { 31.9, 57.6, 47, 350 }, + [15] = { 32.7, 57.3, 47, 350 }, + [16] = { 30.6, 56.7, 47, 350 }, + [17] = { 28.8, 56.5, 47, 350 }, + [18] = { 31.6, 56.5, 47, 350 }, + }, + ["lvl"] = "42-43", + }, + [2652] = { + ["coords"] = { + [1] = { 30.4, 61.3, 47, 350 }, + [2] = { 32.6, 59.8, 47, 350 }, + [3] = { 29.7, 58.9, 47, 350 }, + [4] = { 32, 58.4, 47, 350 }, + [5] = { 32.3, 57.9, 47, 350 }, + [6] = { 31.7, 57.9, 47, 350 }, + [7] = { 31.2, 57.4, 47, 350 }, + [8] = { 29.9, 56.6, 47, 350 }, + }, + ["lvl"] = "43", + }, + [2653] = { + ["coords"] = { + [1] = { 32.1, 75.7, 47, 350 }, + [2] = { 32.9, 75.7, 47, 350 }, + [3] = { 32.7, 75.3, 47, 350 }, + [4] = { 35, 72.8, 47, 350 }, + [5] = { 36.9, 72.2, 47, 350 }, + [6] = { 36.6, 71.5, 47, 350 }, + [7] = { 30.6, 71.4, 47, 350 }, + [8] = { 36.9, 70.8, 47, 350 }, + [9] = { 31.9, 70.2, 47, 350 }, + [10] = { 32.3, 67.9, 47, 350 }, + [11] = { 31.7, 67.9, 47, 350 }, + [12] = { 32.6, 67, 47, 350 }, + [13] = { 25.4, 66.4, 47, 350 }, + [14] = { 39.7, 66.4, 47, 350 }, + [15] = { 36.7, 66.1, 47, 350 }, + [16] = { 40.3, 66, 47, 350 }, + [17] = { 25.6, 65.9, 47, 350 }, + [18] = { 35.7, 65.9, 47, 350 }, + [19] = { 35.3, 63.5, 47, 350 }, + [20] = { 36.5, 63, 47, 350 }, + }, + ["lvl"] = "44-45", + }, + [2654] = { + ["coords"] = { + [1] = { 32.5, 76.3, 47, 350 }, + [2] = { 36, 72.8, 47, 350 }, + [3] = { 37, 71.6, 47, 350 }, + [4] = { 32.1, 67, 47, 350 }, + [5] = { 40, 65.8, 47, 350 }, + }, + ["lvl"] = "45-46", + }, + [2655] = { + ["coords"] = { + [1] = { 48.9, 55.4, 47, 350 }, + [2] = { 50.3, 54.8, 47, 350 }, + [3] = { 47.8, 53.9, 47, 350 }, + [4] = { 48.7, 53.1, 47, 350 }, + [5] = { 48.5, 51.9, 47, 350 }, + [6] = { 49.3, 51.6, 47, 350 }, + [7] = { 48.2, 50, 47, 350 }, + [8] = { 49.1, 48.8, 47, 350 }, + [9] = { 50.2, 47.7, 47, 350 }, + [10] = { 49.7, 47.5, 47, 350 }, + [11] = { 48.9, 47.1, 47, 350 }, + [12] = { 49.5, 46.5, 47, 350 }, + [13] = { 55.7, 44.6, 47, 350 }, + [14] = { 55.8, 44.5, 47, 350 }, + [15] = { 56.9, 44.3, 47, 350 }, + [16] = { 45.7, 44.2, 47, 350 }, + [17] = { 57.2, 44.1, 47, 350 }, + [18] = { 55.5, 44, 47, 350 }, + [19] = { 43.8, 43.8, 47, 350 }, + [20] = { 56.7, 43.7, 47, 350 }, + [21] = { 57.8, 43.7, 47, 350 }, + [22] = { 46.8, 43.7, 47, 350 }, + [23] = { 59.8, 43, 47, 350 }, + [24] = { 45.8, 43, 47, 350 }, + [25] = { 57.5, 42.8, 47, 350 }, + [26] = { 45.2, 42.6, 47, 350 }, + [27] = { 46.4, 42.6, 47, 350 }, + [28] = { 56.3, 42.4, 47, 350 }, + [29] = { 47.2, 42.4, 47, 350 }, + [30] = { 48, 42.2, 47, 350 }, + [31] = { 56.7, 42.2, 47, 350 }, + [32] = { 59.1, 42.2, 47, 350 }, + [33] = { 59.4, 42, 47, 350 }, + [34] = { 60.3, 42, 47, 350 }, + [35] = { 44.9, 42, 47, 350 }, + [36] = { 57.6, 41.8, 47, 350 }, + [37] = { 47, 41.4, 47, 350 }, + [38] = { 59.9, 41.3, 47, 350 }, + [39] = { 44.9, 41.1, 47, 350 }, + [40] = { 57.5, 41.1, 47, 350 }, + [41] = { 48.5, 41, 47, 350 }, + [42] = { 46.1, 40.9, 47, 350 }, + [43] = { 56.7, 40.8, 47, 350 }, + [44] = { 47.7, 40.7, 47, 350 }, + [45] = { 58.1, 40.7, 47, 350 }, + [46] = { 46.3, 40.1, 47, 350 }, + [47] = { 57.4, 38.8, 47, 350 }, + }, + ["lvl"] = "46-47", + }, + [2656] = { + ["coords"] = { + [1] = { 49.5, 53.1, 47, 350 }, + [2] = { 51.2, 52.9, 47, 350 }, + [3] = { 47.6, 51.6, 47, 350 }, + [4] = { 50.1, 51.1, 47, 350 }, + [5] = { 49.5, 48.6, 47, 350 }, + [6] = { 48.2, 48.1, 47, 350 }, + [7] = { 57.5, 46, 47, 350 }, + [8] = { 58.1, 45.7, 47, 350 }, + [9] = { 56.5, 45, 47, 350 }, + [10] = { 58.2, 44.8, 47, 350 }, + [11] = { 56.6, 44.7, 47, 350 }, + [12] = { 57.4, 44.6, 47, 350 }, + [13] = { 57.4, 43.6, 47, 350 }, + [14] = { 58.4, 43.5, 47, 350 }, + [15] = { 59.4, 43.4, 47, 350 }, + [16] = { 56.5, 43.4, 47, 350 }, + [17] = { 59.2, 43.3, 47, 350 }, + [18] = { 56.9, 43, 47, 350 }, + [19] = { 44.7, 42.9, 47, 350 }, + [20] = { 57.8, 42.7, 47, 350 }, + [21] = { 56, 42.7, 47, 350 }, + [22] = { 58.4, 42.6, 47, 350 }, + [23] = { 56.6, 42.5, 47, 350 }, + [24] = { 60.3, 42.5, 47, 350 }, + [25] = { 59, 42.3, 47, 350 }, + [26] = { 58.5, 42.2, 47, 350 }, + [27] = { 57, 42.1, 47, 350 }, + [28] = { 57.9, 41.7, 47, 350 }, + [29] = { 47.5, 41.6, 47, 350 }, + [30] = { 58.3, 41.6, 47, 350 }, + [31] = { 57, 41, 47, 350 }, + [32] = { 55.6, 41, 47, 350 }, + [33] = { 58.2, 40.9, 47, 350 }, + [34] = { 58.9, 40.8, 47, 350 }, + [35] = { 45.5, 40.3, 47, 350 }, + [36] = { 46.8, 40.1, 47, 350 }, + [37] = { 57.6, 39.9, 47, 350 }, + [38] = { 58.2, 39.7, 47, 350 }, + [39] = { 46.1, 39.6, 47, 350 }, + [40] = { 45.6, 39.3, 47, 350 }, + [41] = { 59.2, 39.2, 47, 350 }, + [42] = { 56.2, 39, 47, 350 }, + [43] = { 58.3, 38.5, 47, 350 }, + [44] = { 45.5, 38.3, 47, 350 }, + [45] = { 56.3, 42.4, 47, 350 }, + }, + ["lvl"] = "47-48", + }, + [2657] = { + ["coords"] = { + [1] = { 17.9, 53.2, 47, 350 }, + [2] = { 18.3, 53, 47, 350 }, + [3] = { 16.2, 50.8, 47, 350 }, + [4] = { 16.7, 50.3, 47, 350 }, + [5] = { 15.5, 49.3, 47, 350 }, + [6] = { 15.2, 49.2, 47, 350 }, + [7] = { 20.4, 48.2, 47, 350 }, + }, + ["fac"] = "A", + ["lvl"] = "40-42", + }, + [2658] = { + ["coords"] = { + [1] = { 45.1, 51.7, 47, 350 }, + }, + ["fac"] = "A", + ["lvl"] = "43-45", + }, + [2659] = { + ["coords"] = { + [1] = { 63.8, 51.9, 47, 350 }, + [2] = { 54.2, 49.3, 47, 350 }, + }, + ["fac"] = "A", + ["lvl"] = "46-48", + }, + [2662] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [2663] = { + ["coords"] = { + [1] = { 28.1, 74.4, 33, 300 }, + }, + ["lvl"] = "42", + }, + [2664] = { + ["coords"] = { + [1] = { 28.2, 74.3, 33, 300 }, + }, + ["lvl"] = "43", + }, + [2665] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [2667] = { + ["coords"] = {}, + ["lvl"] = "36-37", + }, + [2668] = { + ["coords"] = { + [1] = { 75.9, 45.6, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "27", + }, + [2669] = { + ["coords"] = { + [1] = { 75.7, 45.6, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "31", + }, + [2670] = { + ["coords"] = { + [1] = { 28.7, 76.9, 33, 300 }, + }, + ["lvl"] = "43", + }, + [2671] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "15", + }, + [2672] = { + ["coords"] = { + [1] = { 27, 82.5, 33, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "40", + }, + [2673] = { + ["coords"] = {}, + ["lvl"] = "20", + }, + [2674] = { + ["coords"] = {}, + ["lvl"] = "40", + }, + [2675] = { + ["coords"] = {}, + ["lvl"] = "30", + }, + [2676] = { + ["coords"] = { + [1] = { 41.2, 43.3, 33, 300 }, + }, + ["lvl"] = "40-41", + }, + [2678] = { + ["coords"] = {}, + ["lvl"] = "47", + }, + [2679] = { + ["coords"] = { + [1] = { 25.6, 25.8, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "28-30", + }, + [2680] = { + ["coords"] = { + [1] = { 66.7, 72.4, 47, 350 }, + [2] = { 68, 70.6, 47, 350 }, + [3] = { 68.4, 70.6, 47, 350 }, + [4] = { 65.1, 70.3, 47, 350 }, + [5] = { 65.8, 70.3, 47, 350 }, + [6] = { 46.5, 69.7, 47, 350 }, + [7] = { 63.5, 68.9, 47, 350 }, + [8] = { 68.2, 68.7, 47, 350 }, + [9] = { 43.6, 67.8, 47, 350 }, + [10] = { 47.3, 66, 47, 350 }, + [11] = { 44.6, 65.4, 47, 350 }, + [12] = { 63.5, 65.2, 47, 350 }, + [13] = { 46.4, 65.1, 47, 350 }, + [14] = { 48.4, 64, 47, 350 }, + }, + ["lvl"] = "46-47", + }, + [2681] = { + ["coords"] = { + [1] = { 86, 22.2, 45, 350 }, + [2] = { 85.7, 18.7, 45, 350 }, + [3] = { 84.7, 18.7, 45, 350 }, + [4] = { 84.5, 17.7, 45, 350 }, + [5] = { 84.7, 16.1, 45, 350 }, + [6] = { 83.9, 16, 45, 350 }, + [7] = { 82.2, 14.6, 45, 350 }, + [8] = { 62, 83.1, 47, 350 }, + [9] = { 61.7, 79.9, 47, 350 }, + [10] = { 60.8, 79.8, 47, 350 }, + [11] = { 60.6, 78.9, 47, 350 }, + [12] = { 60.8, 77.4, 47, 350 }, + [13] = { 60.1, 77.3, 47, 350 }, + [14] = { 60, 76, 47, 350 }, + [15] = { 58.4, 76, 47, 350 }, + [16] = { 58.9, 75.5, 47, 350 }, + [17] = { 58.8, 64.9, 47, 350 }, + [18] = { 58.6, 64.5, 47, 350 }, + }, + ["lvl"] = "50-51", + ["rnk"] = "1", + }, + [2682] = { + ["coords"] = { + [1] = { 26.4, 25.8, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "24", + }, + [2683] = { + ["coords"] = { + [1] = { 21.9, 31.9, 1, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "24", + }, + [2684] = { + ["coords"] = { + [1] = { 47.3, 35.2, 36, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "31", + }, + [2685] = { + ["coords"] = { + [1] = { 28.5, 75.1, 33, 300 }, + }, + ["lvl"] = "36", + }, + [2686] = { + ["coords"] = { + [1] = { 35.5, 74.4, 47, 350 }, + [2] = { 31.3, 74.1, 47, 350 }, + [3] = { 35.1, 73.7, 47, 350 }, + [4] = { 30.6, 73.6, 47, 350 }, + [5] = { 33.2, 73.4, 47, 350 }, + [6] = { 32.1, 73.3, 47, 350 }, + [7] = { 31, 72.5, 47, 350 }, + [8] = { 32, 71.4, 47, 350 }, + [9] = { 35.3, 71, 47, 350 }, + [10] = { 31, 70.7, 47, 350 }, + [11] = { 29.5, 70.7, 47, 350 }, + [12] = { 30.7, 69.7, 47, 350 }, + [13] = { 33.3, 69.3, 47, 350 }, + [14] = { 36.5, 68.3, 47, 350 }, + [15] = { 34.8, 68.3, 47, 350 }, + [16] = { 37.7, 67.7, 47, 350 }, + [17] = { 34.1, 66.9, 47, 350 }, + [18] = { 35.8, 64.7, 47, 350 }, + [19] = { 37, 63.8, 47, 350 }, + [20] = { 34.8, 63.2, 47, 350 }, + }, + ["lvl"] = "44-45", + }, + [2687] = { + ["coords"] = { + [1] = { 51, 35.2, 33, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "42", + }, + [2688] = { + ["coords"] = { + [1] = { 34.3, 37.8, 47, 350 }, + }, + ["fac"] = "AH", + ["lvl"] = "52", + }, + [2689] = { + ["coords"] = {}, + ["lvl"] = "47-48", + }, + [2690] = { + ["coords"] = {}, + ["lvl"] = "48-49", + }, + [2691] = { + ["coords"] = { + [1] = { 29.6, 51.4, 47, 350 }, + [2] = { 31.3, 51.4, 47, 350 }, + [3] = { 32.3, 51.4, 47, 350 }, + [4] = { 33.2, 51.4, 47, 350 }, + [5] = { 28.9, 51.3, 47, 350 }, + [6] = { 30.5, 51.1, 47, 350 }, + [7] = { 34, 50.1, 47, 350 }, + [8] = { 34.1, 48.7, 47, 350 }, + [9] = { 33.3, 47.3, 47, 350 }, + [10] = { 34, 44.6, 47, 350 }, + [11] = { 33.9, 43.2, 47, 350 }, + [12] = { 33.1, 42.2, 47, 350 }, + }, + ["fac"] = "A", + ["lvl"] = "43-44", + }, + [2692] = { + ["coords"] = { + [1] = { 32.2, 50.2, 47, 350 }, + [2] = { 30.4, 50.1, 47, 350 }, + [3] = { 29.7, 50, 47, 350 }, + [4] = { 33.1, 50, 47, 350 }, + [5] = { 31.9, 49.5, 47, 350 }, + [6] = { 30.7, 49, 47, 350 }, + [7] = { 31.5, 48.9, 47, 350 }, + [8] = { 31.8, 48.3, 47, 350 }, + [9] = { 33.3, 48.2, 47, 350 }, + [10] = { 33.4, 48.2, 47, 350 }, + [11] = { 33.2, 46, 47, 350 }, + [12] = { 33, 44.8, 47, 350 }, + [13] = { 33.2, 43.5, 47, 350 }, + }, + ["fac"] = "A", + ["lvl"] = "44-45", + }, + [2693] = { + ["coords"] = { + [1] = { 29.3, 49.6, 47, 350 }, + [2] = { 29.8, 48.5, 47, 350 }, + [3] = { 29.2, 48.5, 47, 350 }, + [4] = { 31.3, 48.3, 47, 350 }, + [5] = { 31.1, 47.9, 47, 350 }, + [6] = { 31.5, 47.5, 47, 350 }, + [7] = { 32.3, 47.4, 47, 350 }, + [8] = { 28.7, 46.5, 47, 350 }, + [9] = { 28.3, 46.3, 47, 350 }, + [10] = { 32, 46.2, 47, 350 }, + [11] = { 32.2, 43.5, 47, 350 }, + [12] = { 31.4, 43.3, 47, 350 }, + [13] = { 32.3, 42.7, 47, 350 }, + }, + ["fac"] = "A", + ["lvl"] = "45-46", + }, + [2694] = { + ["coords"] = { + [1] = { 30.3, 48.7, 47, 350 }, + [2] = { 30.6, 48.4, 47, 350 }, + [3] = { 31, 47.5, 47, 350 }, + [4] = { 30.8, 47.3, 47, 350 }, + [5] = { 31.8, 47.1, 47, 350 }, + [6] = { 28.8, 46, 47, 350 }, + [7] = { 28.5, 45.4, 47, 350 }, + [8] = { 30.5, 43.4, 47, 350 }, + [9] = { 29.8, 43.3, 47, 350 }, + }, + ["fac"] = "A", + ["lvl"] = "46-47", + }, + [2695] = { + ["coords"] = { + [1] = { 63.5, 67.3, 1537, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [2696] = { + ["coords"] = { + [1] = { 49.2, 7.6, 11, 400 }, + [2] = { 43.2, 92.6, 45, 400 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2697] = { + ["coords"] = { + [1] = { 89, 70.9, 44, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "31", + }, + [2698] = { + ["coords"] = { + [1] = { 28.1, 11.8, 45, 400 }, + [2] = { 7.9, 73.3, 47, 400 }, + [3] = { 92, 38.2, 267, 400 }, + }, + ["fac"] = "H", + ["lvl"] = "31", + }, + [2699] = { + ["coords"] = { + [1] = { 28.5, 76, 33, 300 }, + }, + ["lvl"] = "43", + }, + [2700] = { + ["coords"] = { + [1] = { 45.8, 47.6, 45, 400 }, + }, + ["fac"] = "A", + ["lvl"] = "41", + }, + [2701] = { + ["coords"] = { + [1] = { 61.8, 70.3, 3, 300 }, + [2] = { 62.5, 68.5, 3, 300 }, + [3] = { 29.4, 56.8, 3, 300 }, + [4] = { 29.9, 56.4, 3, 300 }, + }, + ["lvl"] = "38-39", + }, + [2702] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "10", + }, + [2703] = { + ["coords"] = { + [1] = { 73.8, 34, 45, 400 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [2704] = { + ["coords"] = { + [1] = { 81.5, 19.6, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [2705] = { + ["coords"] = { + [1] = { 52.1, 58.7, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "33", + }, + [2706] = { + ["coords"] = { + [1] = { 74.7, 36.3, 45, 400 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [2707] = { + ["coords"] = { + [1] = { 33.4, 73, 47, 0 }, + }, + ["lvl"] = "55", + ["rnk"] = "1", + }, + [2708] = { + ["coords"] = { + [1] = { 39.8, 81.5, 1519, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [2709] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "10", + }, + [2710] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "10", + }, + [2711] = { + ["coords"] = { + [1] = { 50.3, 59, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "36", + }, + [2712] = { + ["coords"] = { + [1] = { 60.2, 53.8, 45, 400 }, + }, + ["fac"] = "A", + ["lvl"] = "38", + }, + [2713] = { + ["coords"] = { + [1] = { 60.2, 53.9, 45, 60 }, + }, + ["fac"] = "A", + ["lvl"] = "38", + }, + [2714] = { + ["coords"] = { + [1] = { 60.2, 59.1, 45, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [2715] = { + ["coords"] = { + [1] = { 62.8, 69.7, 3, 300 }, + [2] = { 29.6, 57.4, 3, 300 }, + }, + ["lvl"] = "39-40", + }, + [2716] = { + ["coords"] = { + [1] = { 8.1, 78.2, 3, 300 }, + [2] = { 10.8, 78, 3, 300 }, + [3] = { 12.2, 76.2, 3, 300 }, + [4] = { 12.5, 74.4, 3, 300 }, + [5] = { 10.6, 73.9, 3, 300 }, + [6] = { 12.8, 73.7, 3, 300 }, + [7] = { 8.1, 72.1, 3, 300 }, + }, + ["lvl"] = "40-41", + }, + [2717] = { + ["coords"] = { + [1] = { 9.6, 83.9, 3, 300 }, + [2] = { 9.6, 82, 3, 300 }, + [3] = { 8, 82, 3, 300 }, + [4] = { 9.5, 80.2, 3, 300 }, + [5] = { 13.9, 76, 3, 300 }, + [6] = { 9.5, 75.9, 3, 300 }, + [7] = { 10.7, 75.9, 3, 300 }, + [8] = { 13.5, 75.5, 3, 300 }, + [9] = { 13.7, 74.1, 3, 300 }, + [10] = { 8, 74.1, 3, 300 }, + [11] = { 13, 73.7, 3, 300 }, + }, + ["lvl"] = "41-42", + }, + [2718] = { + ["coords"] = { + [1] = { 9.4, 86.3, 3, 300 }, + [2] = { 8.1, 83.9, 3, 300 }, + [3] = { 10.9, 80.1, 3, 300 }, + [4] = { 9.6, 77.9, 3, 300 }, + [5] = { 8.3, 76.1, 3, 300 }, + [6] = { 13.7, 75, 3, 300 }, + [7] = { 12.3, 74.9, 3, 300 }, + }, + ["lvl"] = "42-43", + }, + [2719] = { + ["coords"] = { + [1] = { 7.6, 95.6, 3, 300 }, + [2] = { 7.1, 94.5, 3, 300 }, + [3] = { 7.8, 94.3, 3, 300 }, + [4] = { 9.7, 93, 3, 300 }, + [5] = { 9.9, 92.3, 3, 300 }, + [6] = { 6.5, 90.6, 3, 500 }, + [7] = { 7.6, 90.4, 3, 300 }, + [8] = { 68.3, 22.7, 46, 300 }, + [9] = { 67.9, 21.8, 46, 300 }, + [10] = { 68.5, 21.6, 46, 300 }, + [11] = { 70.1, 20.5, 46, 300 }, + [12] = { 70.3, 19.9, 46, 300 }, + [13] = { 67.4, 18.5, 46, 500 }, + }, + ["lvl"] = "44-45", + }, + [2720] = { + ["coords"] = { + [1] = { 8, 92.4, 3, 300 }, + [2] = { 8.6, 91, 3, 300 }, + [3] = { 8.1, 90.9, 3, 300 }, + [4] = { 7.1, 90.8, 3, 300 }, + [5] = { 7.7, 89.5, 3, 300 }, + [6] = { 9.6, 89.3, 3, 300 }, + [7] = { 8.5, 88.3, 3, 300 }, + [8] = { 9.7, 88.2, 3, 300 }, + [9] = { 7.8, 88.1, 3, 300 }, + [10] = { 7.6, 85.7, 3, 300 }, + [11] = { 68.7, 20, 46, 300 }, + [12] = { 69.2, 18.8, 46, 300 }, + [13] = { 68.7, 18.7, 46, 300 }, + [14] = { 67.9, 18.6, 46, 300 }, + [15] = { 87.1, 81.4, 51, 300 }, + }, + ["lvl"] = "43-44", + }, + [2721] = { + ["coords"] = { + [1] = { 60.5, 59.2, 45, 300 }, + [2] = { 60.4, 59.2, 45, 300 }, + [3] = { 60.3, 58.9, 45, 300 }, + [4] = { 60.5, 58.8, 45, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [2723] = { + ["coords"] = { + [1] = { 41.6, 28.2, 3, 300 }, + [2] = { 39.7, 27.6, 3, 300 }, + [3] = { 40.2, 27.3, 3, 300 }, + [4] = { 41.7, 26.7, 3, 300 }, + [5] = { 40.7, 26.4, 3, 300 }, + }, + ["lvl"] = "38-39", + }, + [2725] = { + ["coords"] = { + [1] = { 73.9, 67.9, 3, 300 }, + [2] = { 75.2, 66, 3, 300 }, + [3] = { 72.2, 64.6, 3, 300 }, + [4] = { 77.2, 63.4, 3, 300 }, + [5] = { 73.2, 62.9, 3, 300 }, + [6] = { 72.3, 57.4, 3, 300 }, + [7] = { 79.9, 56.7, 3, 300 }, + [8] = { 69.7, 53.8, 3, 300 }, + [9] = { 72.8, 52.4, 3, 300 }, + [10] = { 71.1, 51.7, 3, 300 }, + [11] = { 82.7, 42.9, 3, 300 }, + [12] = { 84.1, 39.7, 3, 300 }, + [13] = { 82.1, 39.1, 3, 300 }, + [14] = { 80.7, 37.4, 3, 300 }, + [15] = { 79.4, 35.6, 3, 300 }, + [16] = { 82.4, 34.6, 3, 300 }, + [17] = { 77.9, 34.4, 3, 300 }, + [18] = { 83.3, 33.7, 3, 300 }, + [19] = { 83.2, 32.7, 3, 300 }, + [20] = { 76.3, 32.7, 3, 300 }, + [21] = { 81.4, 32.7, 3, 300 }, + [22] = { 81.4, 30.7, 3, 300 }, + [23] = { 83.7, 30.5, 3, 300 }, + [24] = { 81.4, 30.1, 3, 300 }, + [25] = { 84.8, 29.8, 3, 300 }, + [26] = { 84.7, 28.4, 3, 300 }, + }, + ["lvl"] = "41-43", + }, + [2726] = { + ["coords"] = { + [1] = { 83.2, 57.9, 3, 600 }, + [2] = { 81.9, 55.9, 3, 600 }, + [3] = { 84.7, 55.8, 3, 600 }, + [4] = { 80.6, 53.9, 3, 600 }, + [5] = { 83.2, 53.8, 3, 600 }, + [6] = { 77.4, 53.8, 3, 600 }, + [7] = { 79.2, 51.9, 3, 600 }, + [8] = { 81.9, 51.8, 3, 600 }, + [9] = { 80.6, 49.9, 3, 600 }, + [10] = { 79.7, 47.9, 3, 600 }, + [11] = { 81.9, 47.8, 3, 600 }, + [12] = { 81, 45.5, 3, 600 }, + }, + ["lvl"] = "43-45", + ["rnk"] = "1", + }, + [2727] = { + ["coords"] = { + [1] = { 53.2, 52, 3, 300 }, + [2] = { 51.2, 50.9, 3, 300 }, + [3] = { 55, 49.9, 3, 300 }, + [4] = { 48.4, 49.8, 3, 300 }, + [5] = { 53.7, 48, 3, 300 }, + [6] = { 47.1, 48, 3, 300 }, + [7] = { 55.1, 48, 3, 300 }, + [8] = { 58.1, 46.5, 3, 300 }, + [9] = { 49.8, 46.2, 3, 300 }, + [10] = { 49.6, 46.1, 3, 300 }, + [11] = { 46.7, 44.1, 3, 300 }, + [12] = { 48.9, 42.4, 3, 300 }, + [13] = { 49.9, 41.9, 3, 300 }, + [14] = { 49.8, 41.5, 3, 300 }, + [15] = { 50.3, 40, 3, 300 }, + [16] = { 47.8, 39.8, 3, 300 }, + [17] = { 52.5, 39.7, 3, 300 }, + [18] = { 48.3, 38, 3, 300 }, + [19] = { 51.1, 37.9, 3, 300 }, + [20] = { 47, 35.8, 3, 300 }, + [21] = { 50.2, 35.2, 3, 300 }, + [22] = { 48.5, 34.5, 3, 300 }, + [23] = { 54.9, 24.8, 3, 300 }, + [24] = { 52.4, 24.7, 3, 300 }, + [25] = { 53.7, 21.7, 3, 300 }, + [26] = { 52.3, 20.5, 3, 300 }, + [27] = { 53.7, 17.7, 3, 300 }, + [28] = { 52.9, 14.6, 3, 300 }, + }, + ["lvl"] = "35-36", + }, + [2728] = { + ["coords"] = { + [1] = { 48.6, 76.2, 3, 300 }, + [2] = { 54.2, 74.7, 3, 300 }, + [3] = { 45.9, 73.5, 3, 300 }, + [4] = { 44.4, 72, 3, 300 }, + [5] = { 60.4, 71.9, 3, 300 }, + [6] = { 59.2, 70.8, 3, 300 }, + [7] = { 55.3, 68.5, 3, 300 }, + [8] = { 56.4, 68, 3, 300 }, + [9] = { 57.8, 68, 3, 300 }, + [10] = { 59.5, 67.8, 3, 300 }, + [11] = { 55.5, 67.2, 3, 300 }, + [12] = { 61.6, 65.7, 3, 300 }, + [13] = { 57.8, 64.1, 3, 300 }, + [14] = { 55.1, 63.8, 3, 300 }, + [15] = { 60.7, 63.3, 3, 300 }, + [16] = { 53.5, 61.3, 3, 300 }, + [17] = { 56.7, 61, 3, 300 }, + [18] = { 52.4, 60.6, 3, 300 }, + [19] = { 60.2, 60.5, 3, 300 }, + [20] = { 59.3, 60.5, 3, 300 }, + [21] = { 57.9, 59.9, 3, 300 }, + [22] = { 56.2, 59, 3, 300 }, + [23] = { 55.2, 58.3, 3, 300 }, + [24] = { 53.5, 58.2, 3, 300 }, + [25] = { 55.5, 56.7, 3, 300 }, + [26] = { 53, 56.6, 3, 300 }, + [27] = { 58, 56.5, 3, 300 }, + [28] = { 60.6, 55.7, 3, 300 }, + [29] = { 58.9, 55.5, 3, 300 }, + [30] = { 58.8, 54.3, 3, 300 }, + [31] = { 55.6, 53.8, 3, 300 }, + [32] = { 55, 52, 3, 300 }, + [33] = { 53.4, 51.9, 3, 300 }, + [34] = { 59.1, 51.9, 3, 300 }, + [35] = { 63.1, 51.3, 3, 300 }, + [36] = { 58.8, 50.4, 3, 300 }, + [37] = { 60.9, 50.2, 3, 300 }, + [38] = { 61.7, 49.8, 3, 300 }, + [39] = { 60.8, 48.1, 3, 300 }, + }, + ["lvl"] = "37-38", + }, + [2729] = { + ["coords"] = { + [1] = { 93.1, 85.4, 1, 300 }, + [2] = { 30.7, 74.2, 3, 300 }, + [3] = { 31.8, 73.6, 3, 300 }, + [4] = { 35.7, 73.5, 3, 300 }, + [5] = { 28.3, 72.1, 3, 300 }, + [6] = { 41.7, 71.9, 3, 300 }, + [7] = { 33.6, 71.1, 3, 300 }, + [8] = { 31, 70.9, 3, 300 }, + [9] = { 34.3, 70.2, 3, 300 }, + [10] = { 38.7, 69.9, 3, 300 }, + [11] = { 37.9, 69.1, 3, 300 }, + [12] = { 40.1, 68.6, 3, 300 }, + [13] = { 14.1, 68.1, 3, 300 }, + [14] = { 29.4, 68, 3, 300 }, + [15] = { 39.2, 67.4, 3, 300 }, + [16] = { 12.9, 67.4, 3, 300 }, + [17] = { 10.4, 67.1, 3, 300 }, + [18] = { 37.9, 66.8, 3, 300 }, + [19] = { 32.3, 66, 3, 300 }, + [20] = { 12.9, 65.8, 3, 300 }, + [21] = { 16.9, 65.7, 3, 300 }, + [22] = { 35, 64.3, 3, 300 }, + [23] = { 29.7, 64.1, 3, 300 }, + [24] = { 30.1, 63.8, 3, 300 }, + [25] = { 13.5, 63.8, 3, 300 }, + [26] = { 10.5, 63.7, 3, 300 }, + [27] = { 11.2, 63.1, 3, 300 }, + [28] = { 37.6, 63, 3, 300 }, + [29] = { 30.7, 62.3, 3, 300 }, + [30] = { 27.1, 62, 3, 300 }, + [31] = { 34.6, 61.6, 3, 300 }, + [32] = { 35.9, 61.1, 3, 300 }, + [33] = { 27.5, 60.4, 3, 300 }, + [34] = { 30.9, 60, 3, 300 }, + [35] = { 32.6, 59.6, 3, 300 }, + [36] = { 24.3, 58.6, 3, 300 }, + [37] = { 22.8, 58.2, 3, 300 }, + [38] = { 32.4, 57.9, 3, 300 }, + [39] = { 37.3, 57.8, 3, 300 }, + [40] = { 20.9, 56.8, 3, 300 }, + [41] = { 21.4, 56.3, 3, 300 }, + [42] = { 25.6, 55.9, 3, 300 }, + [43] = { 33.4, 54.5, 3, 300 }, + [44] = { 18.8, 53.9, 3, 300 }, + [45] = { 26.4, 53, 3, 300 }, + [46] = { 23.3, 51.6, 3, 300 }, + [47] = { 28.4, 47.7, 3, 300 }, + }, + ["lvl"] = "39-40", + }, + [2730] = { + ["coords"] = { + [1] = { 69.4, 36.2, 3, 300 }, + [2] = { 71.5, 34.8, 3, 300 }, + [3] = { 70.3, 33.7, 3, 300 }, + [4] = { 72.7, 33.4, 3, 300 }, + [5] = { 70.3, 32.8, 3, 300 }, + [6] = { 69, 30.8, 3, 300 }, + }, + ["lvl"] = "42-43", + }, + [2731] = { + ["coords"] = { + [1] = { 38.1, 46.5, 3, 300 }, + [2] = { 62.6, 46.3, 3, 300 }, + [3] = { 60.6, 43.8, 3, 300 }, + [4] = { 36.1, 43.3, 3, 300 }, + [5] = { 33.5, 43.3, 3, 300 }, + [6] = { 34.7, 41.7, 3, 300 }, + [7] = { 33.6, 40.9, 3, 300 }, + [8] = { 45.2, 40.5, 3, 300 }, + [9] = { 35.1, 40.4, 3, 300 }, + [10] = { 42.9, 40.2, 3, 300 }, + [11] = { 61.8, 40.2, 3, 300 }, + [12] = { 61.8, 39.3, 3, 300 }, + [13] = { 43.6, 38.3, 3, 300 }, + [14] = { 40.1, 37.7, 3, 300 }, + [15] = { 46.2, 37.6, 3, 300 }, + [16] = { 65.8, 37.5, 3, 300 }, + [17] = { 65.3, 37.1, 3, 300 }, + [18] = { 44.8, 35.7, 3, 300 }, + [19] = { 60.6, 30.5, 3, 300 }, + [20] = { 62, 29.9, 3, 300 }, + [21] = { 63.1, 29.6, 3, 300 }, + [22] = { 57.1, 28.3, 3, 300 }, + [23] = { 59.1, 25.6, 3, 300 }, + [24] = { 53.8, 15.5, 3, 300 }, + [25] = { 55.2, 15.1, 3, 300 }, + }, + ["lvl"] = "36-37", + }, + [2732] = { + ["coords"] = { + [1] = { 46.9, 76.7, 3, 300 }, + [2] = { 43.5, 75, 3, 300 }, + [3] = { 56.7, 75, 3, 300 }, + [4] = { 63.1, 73.7, 3, 300 }, + [5] = { 39.9, 73.1, 3, 300 }, + [6] = { 44.4, 72.8, 3, 300 }, + [7] = { 43.2, 69.5, 3, 300 }, + [8] = { 65, 68.4, 3, 300 }, + [9] = { 41.5, 67, 3, 300 }, + [10] = { 40.4, 64.1, 3, 300 }, + [11] = { 63.1, 64, 3, 300 }, + [12] = { 41.1, 63.3, 3, 300 }, + [13] = { 60.7, 62.3, 3, 300 }, + [14] = { 40.3, 61.5, 3, 300 }, + [15] = { 49.6, 60.1, 3, 300 }, + [16] = { 41.7, 59.9, 3, 300 }, + [17] = { 39.1, 59.9, 3, 300 }, + [18] = { 49.5, 58.4, 3, 300 }, + [19] = { 51.8, 58.1, 3, 300 }, + [20] = { 40.3, 58, 3, 300 }, + [21] = { 50.2, 57.1, 3, 300 }, + [22] = { 35.5, 56, 3, 300 }, + [23] = { 48.3, 52.5, 3, 300 }, + [24] = { 47.6, 51.8, 3, 300 }, + [25] = { 31.5, 51.6, 3, 300 }, + [26] = { 34.8, 51.2, 3, 300 }, + [27] = { 41.4, 51, 3, 300 }, + [28] = { 32.2, 49.9, 3, 300 }, + [29] = { 30.1, 49.9, 3, 300 }, + [30] = { 36.9, 49.9, 3, 300 }, + [31] = { 46.7, 49.7, 3, 300 }, + [32] = { 34.1, 49.1, 3, 300 }, + [33] = { 37.6, 48.6, 3, 300 }, + [34] = { 30.6, 47.9, 3, 300 }, + [35] = { 44.5, 47.6, 3, 300 }, + [36] = { 31.8, 46.9, 3, 300 }, + [37] = { 45.9, 46.6, 3, 300 }, + [38] = { 56.7, 46.6, 3, 300 }, + [39] = { 53.8, 45.9, 3, 300 }, + [40] = { 29.7, 45.5, 3, 300 }, + [41] = { 59.3, 44.6, 3, 300 }, + [42] = { 53.6, 39.5, 3, 300 }, + }, + ["lvl"] = "38-39", + }, + [2733] = { + ["coords"] = { + [1] = { 60.1, 59.3, 45, 400 }, + }, + ["fac"] = "H", + ["lvl"] = "36", + }, + [2734] = { + ["coords"] = { + [1] = { 25.4, 79.3, 3, 300 }, + [2] = { 26.1, 74.7, 3, 300 }, + [3] = { 19.9, 72.5, 3, 300 }, + [4] = { 25.7, 71.4, 3, 300 }, + [5] = { 19.5, 70.4, 3, 300 }, + [6] = { 10.8, 70.1, 3, 300 }, + [7] = { 21.3, 68.9, 3, 300 }, + [8] = { 18, 67.2, 3, 300 }, + [9] = { 28.3, 66.5, 3, 300 }, + [10] = { 18.5, 65.9, 3, 300 }, + [11] = { 25.9, 63.8, 3, 300 }, + [12] = { 20.3, 62, 3, 300 }, + [13] = { 22.9, 60.2, 3, 300 }, + [14] = { 20.4, 60.2, 3, 300 }, + [15] = { 10.4, 58.8, 3, 300 }, + [16] = { 8.4, 57.8, 3, 300 }, + [17] = { 14.6, 57.1, 3, 300 }, + [18] = { 14.9, 56, 3, 300 }, + [19] = { 12.7, 55.4, 3, 300 }, + [20] = { 16.2, 53.8, 3, 300 }, + [21] = { 15.2, 51.8, 3, 300 }, + [22] = { 16.5, 49.9, 3, 300 }, + }, + ["lvl"] = "40-41", + }, + [2735] = { + ["coords"] = { + [1] = { 23, 48, 3, 300 }, + [2] = { 20.3, 47.9, 3, 300 }, + [3] = { 21.6, 47.9, 3, 300 }, + [4] = { 21.2, 45.9, 3, 300 }, + [5] = { 18.9, 45.8, 3, 300 }, + [6] = { 23.5, 45.3, 3, 300 }, + [7] = { 21.3, 44.2, 3, 300 }, + [8] = { 22.5, 43.7, 3, 300 }, + [9] = { 20.1, 43.2, 3, 300 }, + [10] = { 18.9, 42.9, 3, 300 }, + [11] = { 16.8, 42.7, 3, 300 }, + [12] = { 15, 41.6, 3, 300 }, + [13] = { 19.3, 41.3, 3, 300 }, + [14] = { 17.7, 41.2, 3, 300 }, + [15] = { 13.2, 39.6, 3, 300 }, + [16] = { 16.5, 38.1, 3, 300 }, + [17] = { 13.6, 37.8, 3, 300 }, + [18] = { 14.9, 37.7, 3, 300 }, + }, + ["lvl"] = "37-39", + }, + [2736] = { + ["coords"] = { + [1] = { 14.7, 90.3, 3, 300 }, + [2] = { 16, 90.2, 3, 300 }, + [3] = { 13.7, 90.1, 3, 300 }, + [4] = { 16.2, 88.1, 3, 300 }, + [5] = { 13.5, 88.1, 3, 300 }, + [6] = { 15.1, 87.9, 3, 300 }, + [7] = { 14.9, 86.5, 3, 300 }, + [8] = { 13.5, 86, 3, 300 }, + [9] = { 16.2, 85.5, 3, 300 }, + [10] = { 1.7, 84.5, 3, 300 }, + [11] = { 17, 84.3, 3, 300 }, + [12] = { 13.3, 84.1, 3, 300 }, + [13] = { 4.9, 83.7, 3, 300 }, + [14] = { 5.5, 82.3, 3, 300 }, + [15] = { 4.1, 82.2, 3, 300 }, + [16] = { 2.8, 82.1, 3, 300 }, + [17] = { 1.5, 82, 3, 300 }, + [18] = { 5.6, 80.1, 3, 300 }, + [19] = { 2.9, 80.1, 3, 300 }, + [20] = { 4.1, 80.1, 3, 300 }, + [21] = { 6.8, 80, 3, 300 }, + [22] = { 1.5, 80, 3, 300 }, + [23] = { 0.8, 78.6, 3, 300 }, + [24] = { 2.8, 78.2, 3, 300 }, + [25] = { 4.2, 77.9, 3, 300 }, + [26] = { 5.5, 76.8, 3, 300 }, + [27] = { 6.7, 76.1, 3, 300 }, + [28] = { 6.6, 73.8, 3, 300 }, + [29] = { 75.4, 18.1, 46, 300 }, + [30] = { 80.6, 80.1, 51, 300 }, + [31] = { 84.2, 79.2, 51, 300 }, + [32] = { 84.8, 77.6, 51, 300 }, + [33] = { 83.3, 77.5, 51, 300 }, + [34] = { 81.8, 77.4, 51, 300 }, + [35] = { 80.3, 77.3, 51, 300 }, + [36] = { 84.9, 75.2, 51, 300 }, + [37] = { 81.9, 75.1, 51, 300 }, + [38] = { 83.3, 75.1, 51, 300 }, + [39] = { 86.3, 75.1, 51, 300 }, + [40] = { 80.4, 75.1, 51, 300 }, + [41] = { 79.6, 73.5, 51, 300 }, + [42] = { 81.8, 73.1, 51, 300 }, + [43] = { 83.4, 72.7, 51, 300 }, + }, + ["lvl"] = "42-44", + }, + [2737] = { + ["coords"] = { + [1] = { 51.3, 15, 1537, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [2738] = { + ["coords"] = { + [1] = { 33.3, 52.1, 45, 400 }, + [2] = { 33.4, 51.9, 45, 400 }, + }, + ["fac"] = "A", + ["lvl"] = "36-37", + ["rnk"] = "1", + }, + [2739] = { + ["coords"] = { + [1] = { 54.1, 34.1, 3, 300 }, + [2] = { 54.5, 33.9, 3, 300 }, + [3] = { 54.1, 33.4, 3, 300 }, + [4] = { 53.4, 33.4, 3, 300 }, + [5] = { 52.3, 32.7, 3, 300 }, + [6] = { 53.3, 32.7, 3, 300 }, + [7] = { 52.6, 32, 3, 300 }, + [8] = { 51.9, 31.8, 3, 300 }, + [9] = { 54.5, 31.4, 3, 300 }, + [10] = { 52.4, 31.2, 3, 300 }, + [11] = { 53.7, 30.7, 3, 300 }, + }, + ["lvl"] = "35-36", + }, + [2740] = { + ["coords"] = { + [1] = { 52.8, 34.4, 3, 300 }, + [2] = { 53.3, 34.3, 3, 300 }, + [3] = { 51.5, 34.3, 3, 300 }, + [4] = { 52.6, 33.7, 3, 300 }, + [5] = { 53.8, 32.3, 3, 300 }, + [6] = { 53.6, 31.1, 3, 300 }, + }, + ["lvl"] = "36-37", + }, + [2741] = { + ["coords"] = {}, + ["lvl"] = "37-38", + }, + [2742] = { + ["coords"] = { + [1] = { 43.9, 31.3, 3, 300 }, + [2] = { 42.1, 30.8, 3, 300 }, + [3] = { 41.3, 29.8, 3, 300 }, + [4] = { 40.9, 28.9, 3, 300 }, + [5] = { 40.6, 28.9, 3, 300 }, + [6] = { 41.2, 28.7, 3, 300 }, + [7] = { 43.4, 28.4, 3, 300 }, + [8] = { 39.7, 27.6, 3, 300 }, + [9] = { 42.5, 27.5, 3, 300 }, + [10] = { 39.8, 27.3, 3, 300 }, + [11] = { 41.8, 27.1, 3, 300 }, + [12] = { 42, 27, 3, 300 }, + [13] = { 41.9, 27, 3, 300 }, + [14] = { 40.7, 25.7, 3, 300 }, + }, + ["lvl"] = "38-39", + }, + [2743] = { + ["coords"] = { + [1] = { 41.3, 34.5, 3, 300 }, + [2] = { 45.7, 33.8, 3, 300 }, + [3] = { 44.4, 33.7, 3, 300 }, + [4] = { 41.5, 33.7, 3, 300 }, + [5] = { 42.6, 33.1, 3, 300 }, + [6] = { 44.5, 31.6, 3, 300 }, + [7] = { 43.7, 31, 3, 300 }, + [8] = { 43.8, 30.9, 3, 300 }, + [9] = { 45.3, 30.6, 3, 300 }, + [10] = { 43.1, 30.5, 3, 300 }, + [11] = { 42.3, 30.1, 3, 300 }, + [12] = { 43.4, 30.1, 3, 300 }, + [13] = { 42.7, 29.6, 3, 300 }, + [14] = { 40.8, 29.5, 3, 300 }, + [15] = { 44.2, 29.5, 3, 300 }, + [16] = { 40.8, 29.2, 3, 300 }, + [17] = { 41, 29.2, 3, 300 }, + [18] = { 42.9, 29, 3, 300 }, + [19] = { 41.8, 27.7, 3, 300 }, + [20] = { 42.2, 26.9, 3, 300 }, + [21] = { 40.1, 26.5, 3, 300 }, + [22] = { 40.5, 25.9, 3, 300 }, + [23] = { 40.7, 25.8, 3, 300 }, + }, + ["lvl"] = "38-39", + }, + [2744] = { + ["coords"] = { + [1] = { 40.9, 29.1, 3, 37800 }, + }, + ["lvl"] = "40", + ["rnk"] = "4", + }, + [2745] = { + ["coords"] = { + [1] = { 42.1, 28.9, 3, 600 }, + }, + ["lvl"] = "42", + ["rnk"] = "1", + }, + [2746] = { + ["coords"] = {}, + ["lvl"] = "39", + ["rnk"] = "1", + }, + [2748] = { + ["coords"] = {}, + ["lvl"] = "47", + ["rnk"] = "1", + }, + [2749] = { + ["coords"] = { + [1] = { 41.6, 39.7, 3, 75600 }, + }, + ["lvl"] = "40", + ["rnk"] = "2", + }, + [2751] = { + ["coords"] = { + [1] = { 52.4, 19.5, 3, 37800 }, + }, + ["lvl"] = "36", + ["rnk"] = "4", + }, + [2752] = { + ["coords"] = { + [1] = { 14.7, 89.3, 3, 18000 }, + }, + ["lvl"] = "45", + ["rnk"] = "4", + }, + [2753] = { + ["coords"] = { + [1] = { 46.3, 74.3, 3, 75600 }, + }, + ["lvl"] = "38", + }, + [2754] = { + ["coords"] = { + [1] = { 57.7, 59.5, 3, 18000 }, + }, + ["lvl"] = "45", + ["rnk"] = "2", + }, + [2755] = { + ["coords"] = { + [1] = { 62.4, 33.3, 45, 0 }, + }, + ["lvl"] = "44", + ["rnk"] = "1", + }, + [2756] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [2757] = { + ["coords"] = {}, + ["lvl"] = "50", + ["rnk"] = "1", + }, + [2759] = { + ["coords"] = {}, + ["lvl"] = "50", + ["rnk"] = "1", + }, + [2760] = { + ["coords"] = { + [1] = { 24.5, 32.7, 45, 400 }, + [2] = { 26.4, 32.7, 45, 400 }, + [3] = { 25, 31.9, 45, 400 }, + [4] = { 27.3, 31.3, 45, 400 }, + [5] = { 26.5, 31, 45, 400 }, + [6] = { 25.8, 30.7, 45, 400 }, + [7] = { 25.2, 30.5, 45, 400 }, + [8] = { 24.4, 30.5, 45, 400 }, + [9] = { 25.7, 29.9, 45, 400 }, + [10] = { 26.4, 29.8, 45, 400 }, + [11] = { 24.4, 29.5, 45, 400 }, + [12] = { 24.6, 28.5, 45, 400 }, + [13] = { 26.4, 28.5, 45, 400 }, + [14] = { 25.5, 28.4, 45, 400 }, + }, + ["lvl"] = "38-39", + }, + [2761] = { + ["coords"] = { + [1] = { 65.3, 31.3, 45, 400 }, + [2] = { 67.1, 31.3, 45, 400 }, + [3] = { 66.2, 31.2, 45, 400 }, + [4] = { 67.9, 31.1, 45, 400 }, + [5] = { 66.7, 30.8, 45, 400 }, + [6] = { 66.5, 30, 45, 400 }, + [7] = { 67.1, 29.9, 45, 400 }, + [8] = { 65.3, 29.8, 45, 400 }, + [9] = { 67.8, 29.7, 45, 400 }, + [10] = { 66.7, 29.2, 45, 400 }, + [11] = { 67.1, 28.5, 45, 400 }, + [12] = { 66.2, 28.5, 45, 400 }, + [13] = { 65.3, 28.4, 45, 400 }, + [14] = { 68, 28, 45, 400 }, + }, + ["lvl"] = "38-39", + }, + [2762] = { + ["coords"] = { + [1] = { 50.5, 53.4, 45, 400 }, + [2] = { 52.3, 52.1, 45, 400 }, + [3] = { 51.4, 52, 45, 400 }, + [4] = { 51.8, 51, 45, 400 }, + [5] = { 50.5, 50.8, 45, 400 }, + [6] = { 53.2, 50.7, 45, 400 }, + [7] = { 52.3, 50.7, 45, 400 }, + [8] = { 51.9, 50.4, 45, 400 }, + [9] = { 51.1, 49.8, 45, 400 }, + [10] = { 53.3, 49.3, 45, 400 }, + [11] = { 52.3, 49.3, 45, 400 }, + [12] = { 52.3, 48, 45, 400 }, + }, + ["lvl"] = "38-39", + }, + [2763] = { + ["coords"] = {}, + ["lvl"] = "42", + ["rnk"] = "1", + }, + [2764] = { + ["coords"] = { + [1] = { 61.1, 48, 45, 400 }, + }, + ["lvl"] = "40", + }, + [2765] = { + ["coords"] = { + [1] = { 61, 48.1, 45, 400 }, + }, + ["lvl"] = "39", + }, + [2766] = { + ["coords"] = { + [1] = { 31.8, 82.7, 45, 400 }, + }, + ["lvl"] = "39", + }, + [2767] = { + ["coords"] = { + [1] = { 32.8, 81.5, 45, 400 }, + }, + ["lvl"] = "39", + }, + [2768] = { + ["coords"] = { + [1] = { 33.9, 80.5, 45, 400 }, + }, + ["fac"] = "AH", + ["lvl"] = "38", + }, + [2769] = { + ["coords"] = { + [1] = { 34, 80.8, 45, 400 }, + }, + ["lvl"] = "39", + }, + [2770] = { + ["coords"] = { + [1] = { 60.6, 81.3, 36, 300 }, + [2] = { 61.9, 19.6, 267, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "27", + }, + [2771] = { + ["coords"] = { + [1] = { 74.2, 33.9, 45, 400 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [2772] = { + ["coords"] = { + [1] = { 74, 33.1, 45, 400 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [2773] = { + ["coords"] = { + [1] = { 18.6, 66, 45, 400 }, + }, + ["lvl"] = "40", + ["rnk"] = "1", + }, + [2774] = { + ["coords"] = { + [1] = { 33.9, 80.4, 45, 400 }, + }, + ["lvl"] = "38", + }, + [2775] = { + ["coords"] = {}, + ["lvl"] = "40-41", + }, + [2776] = { + ["coords"] = {}, + ["lvl"] = "40", + }, + [2778] = { + ["coords"] = { + [1] = { 32.6, 80.1, 45, 400 }, + }, + ["lvl"] = "37", + }, + [2779] = { + ["coords"] = { + [1] = { 28.8, 6.1, 11, 115200 }, + [2] = { 33, 6.1, 11, 115200 }, + [3] = { 19.9, 91, 45, 115200 }, + [4] = { 24.7, 90.9, 45, 115200 }, + [5] = { 20.8, 88.9, 45, 115200 }, + [6] = { 24.1, 86.7, 45, 115200 }, + [7] = { 20.3, 85.6, 45, 115200 }, + [8] = { 22.6, 84.4, 45, 115200 }, + [9] = { 21.4, 83.8, 45, 115200 }, + [10] = { 27.1, 83.3, 45, 115200 }, + }, + ["lvl"] = "41", + ["rnk"] = "4", + }, + [2780] = { + ["coords"] = { + [1] = { 29.2, 59.5, 45, 400 }, + }, + ["fac"] = "A", + ["lvl"] = "41", + ["rnk"] = "1", + }, + [2781] = { + ["coords"] = { + [1] = { 29.1, 60.2, 45, 400 }, + }, + ["fac"] = "A", + ["lvl"] = "41", + ["rnk"] = "1", + }, + [2782] = { + ["coords"] = { + [1] = { 29, 59.6, 45, 400 }, + }, + ["fac"] = "A", + ["lvl"] = "41", + ["rnk"] = "1", + }, + [2783] = { + ["coords"] = { + [1] = { 29.6, 63, 45, 400 }, + }, + ["lvl"] = "40", + ["rnk"] = "1", + }, + [2784] = { + ["coords"] = { + [1] = { 39.1, 56.2, 1537, 86400 }, + }, + ["fac"] = "A", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [2785] = { + ["coords"] = { + [1] = { 51.4, 76.9, 3, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [2786] = { + ["coords"] = { + [1] = { 50.8, 5.6, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2787] = { + ["coords"] = { + [1] = { 74.5, 35.6, 45, 400 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [2788] = { + ["coords"] = { + [1] = { 46.2, 47.8, 45, 400 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2789] = { + ["coords"] = { + [1] = { 46.7, 47, 45, 400 }, + }, + ["fac"] = "A", + ["lvl"] = "36", + }, + [2790] = { + ["coords"] = { + [1] = { 39, 88.1, 1537, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "44", + }, + [2791] = { + ["coords"] = { + [1] = { 55.8, 87.1, 3, 300 }, + [2] = { 55.1, 86, 3, 300 }, + [3] = { 54.2, 85.6, 3, 300 }, + [4] = { 52.5, 85.5, 3, 300 }, + [5] = { 53.7, 84.1, 3, 300 }, + [6] = { 56, 84, 3, 300 }, + [7] = { 56.4, 84, 3, 300 }, + [8] = { 56, 82.8, 3, 300 }, + [9] = { 53.8, 82.5, 3, 300 }, + [10] = { 53.7, 82.4, 3, 300 }, + [11] = { 53.8, 82, 3, 300 }, + [12] = { 54.5, 82, 3, 300 }, + }, + ["lvl"] = "42-43", + }, + [2792] = { + ["coords"] = { + [1] = { 72.6, 33.9, 45, 400 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [2793] = { + ["coords"] = { + [1] = { 54.8, 81.9, 45, 400 }, + }, + ["lvl"] = "39", + }, + [2794] = { + ["coords"] = { + [1] = { 18.2, 68.5, 45, 0 }, + [2] = { 17.8, 68.7, 45, 0 }, + [3] = { 18.1, 68.5, 45, 0 }, + [4] = { 17.9, 68.2, 45, 0 }, + [5] = { 18.2, 68.3, 45, 0 }, + [6] = { 19.1, 67.7, 45, 0 }, + [7] = { 19.1, 67.3, 45, 0 }, + }, + ["fac"] = "A", + ["lvl"] = "38", + ["rnk"] = "1", + }, + [2795] = { + ["coords"] = { + [1] = { 68.6, 44.6, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [2796] = { + ["coords"] = { + [1] = { 24, 51.4, 141, 300 }, + [2] = { 32.5, 21.3, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [2797] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "35", + }, + [2798] = { + ["coords"] = { + [1] = { 35.8, 21.2, 215, 250 }, + [2] = { 29.7, 21.2, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [2799] = { + ["coords"] = { + [1] = { 76.8, 75.2, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [2801] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "45", + }, + [2802] = { + ["coords"] = { + [1] = { 78.1, 65.4, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [2803] = { + ["coords"] = { + [1] = { 62.3, 25.6, 361, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [2804] = { + ["coords"] = { + [1] = { 73.7, 14.4, 130, 900 }, + [2] = { 54.2, 96.1, 1497, 900 }, + }, + ["fac"] = "H", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [2805] = { + ["coords"] = { + [1] = { 27, 58.8, 45, 400 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [2806] = { + ["coords"] = { + [1] = { 50.4, 74.2, 148, 300 }, + [2] = { 34.8, 53.2, 361, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [2807] = { + ["coords"] = {}, + ["lvl"] = "28", + }, + [2808] = { + ["coords"] = { + [1] = { 46.4, 47.6, 45, 400 }, + }, + ["fac"] = "A", + ["lvl"] = "36", + }, + [2809] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [2810] = { + ["coords"] = { + [1] = { 46.5, 47.4, 45, 400 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [2812] = { + ["coords"] = { + [1] = { 46.3, 47, 45, 400 }, + }, + ["fac"] = "A", + ["lvl"] = "38-40", + }, + [2813] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "62", + }, + [2814] = { + ["coords"] = { + [1] = { 45.5, 47.6, 45, 400 }, + }, + ["fac"] = "A", + ["lvl"] = "39", + }, + [2815] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [2816] = { + ["coords"] = { + [1] = { 45.1, 46.8, 45, 400 }, + }, + ["fac"] = "A", + ["lvl"] = "37", + }, + [2817] = { + ["coords"] = { + [1] = { 42.4, 52.9, 3, 300 }, + }, + ["lvl"] = "37", + }, + [2818] = { + ["coords"] = { + [1] = { 74.1, 33.8, 45, 400 }, + }, + ["fac"] = "H", + ["lvl"] = "38", + }, + [2819] = { + ["coords"] = { + [1] = { 74.8, 34.6, 45, 400 }, + }, + ["fac"] = "H", + ["lvl"] = "34", + }, + [2820] = { + ["coords"] = { + [1] = { 74.1, 32.4, 45, 400 }, + }, + ["fac"] = "H", + ["lvl"] = "31", + }, + [2821] = { + ["coords"] = { + [1] = { 74.1, 32.7, 45, 400 }, + }, + ["fac"] = "H", + ["lvl"] = "33", + }, + [2829] = { + ["coords"] = { + [1] = { 60.7, 39.6, 3, 300 }, + [2] = { 60.2, 30.1, 3, 300 }, + [3] = { 57.5, 28.6, 3, 300 }, + [4] = { 48.9, 27.4, 3, 300 }, + [5] = { 58.8, 24.3, 3, 300 }, + [6] = { 55, 13.8, 3, 300 }, + }, + ["lvl"] = "35-37", + }, + [2830] = { + ["coords"] = { + [1] = { 50.1, 77.9, 3, 300 }, + [2] = { 58, 73.8, 3, 300 }, + [3] = { 49.5, 63.8, 3, 300 }, + [4] = { 50.3, 60, 3, 300 }, + [5] = { 61.8, 55.6, 3, 300 }, + [6] = { 48.6, 55.5, 3, 300 }, + [7] = { 63.3, 54.1, 3, 300 }, + }, + ["lvl"] = "37-39", + }, + [2831] = { + ["coords"] = { + [1] = { 18.9, 77.6, 3, 300 }, + [2] = { 24.4, 76.2, 3, 300 }, + [3] = { 25.3, 73.9, 3, 300 }, + [4] = { 28.8, 72, 3, 300 }, + [5] = { 12.3, 71, 3, 300 }, + [6] = { 12.2, 67.9, 3, 300 }, + [7] = { 25.8, 61.9, 3, 300 }, + [8] = { 15, 61.8, 3, 300 }, + [9] = { 16.2, 61.7, 3, 300 }, + [10] = { 17.1, 61.3, 3, 300 }, + [11] = { 15.1, 60, 3, 300 }, + [12] = { 17.1, 59.9, 3, 300 }, + [13] = { 33.4, 59.8, 3, 300 }, + [14] = { 16, 58.7, 3, 300 }, + [15] = { 15.4, 58.6, 3, 300 }, + [16] = { 17.2, 58.4, 3, 300 }, + [17] = { 17.5, 49.1, 3, 300 }, + }, + ["lvl"] = "39-41", + }, + [2832] = { + ["coords"] = { + [1] = { 27, 77.2, 33, 300 }, + }, + ["lvl"] = "38", + }, + [2833] = { + ["coords"] = {}, + ["lvl"] = "55", + ["rnk"] = "1", + }, + [2834] = { + ["coords"] = { + [1] = { 27.5, 77.1, 33, 300 }, + }, + ["lvl"] = "43", + }, + [2835] = { + ["coords"] = { + [1] = { 45.7, 46.1, 45, 400 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [2836] = { + ["coords"] = { + [1] = { 29, 75.6, 33, 300 }, + }, + ["lvl"] = "54", + }, + [2837] = { + ["coords"] = { + [1] = { 28, 78, 33, 300 }, + }, + ["lvl"] = "46", + }, + [2838] = { + ["coords"] = { + [1] = { 28.4, 76.7, 33, 300 }, + }, + ["lvl"] = "46", + }, + [2839] = { + ["coords"] = { + [1] = { 28.3, 74.6, 33, 300 }, + }, + ["lvl"] = "41", + }, + [2840] = { + ["coords"] = { + [1] = { 28.3, 75.2, 33, 300 }, + }, + ["lvl"] = "42", + }, + [2842] = { + ["coords"] = { + [1] = { 28, 77, 33, 300 }, + }, + ["lvl"] = "43", + }, + [2843] = { + ["coords"] = { + [1] = { 27.5, 77.5, 33, 300 }, + }, + ["lvl"] = "43", + }, + [2844] = { + ["coords"] = { + [1] = { 29, 75.1, 33, 300 }, + }, + ["lvl"] = "46", + }, + [2845] = { + ["coords"] = { + [1] = { 29, 75, 33, 300 }, + }, + ["lvl"] = "42", + }, + [2846] = { + ["coords"] = { + [1] = { 28.2, 77.5, 33, 300 }, + }, + ["lvl"] = "43", + }, + [2847] = { + ["coords"] = { + [1] = { 29.1, 75.5, 33, 300 }, + }, + ["lvl"] = "49", + }, + [2848] = { + ["coords"] = { + [1] = { 28.1, 78.1, 33, 300 }, + }, + ["lvl"] = "45", + }, + [2849] = { + ["coords"] = { + [1] = { 28.1, 77.6, 33, 300 }, + }, + ["lvl"] = "44", + }, + [2850] = { + ["coords"] = { + [1] = { 44, 38.4, 3, 18000 }, + [2] = { 60.4, 30.1, 3, 18000 }, + [3] = { 54.7, 14.4, 3, 18000 }, + }, + ["lvl"] = "37", + ["rnk"] = "4", + }, + [2851] = { + ["coords"] = { + [1] = { 73, 32.7, 45, 650 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [2852] = { + ["coords"] = { + [1] = { 38.8, 80.7, 141, 300 }, + [2] = { 38.7, 80.6, 141, 300 }, + [3] = { 38.8, 80.6, 141, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [2853] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [2855] = { + ["coords"] = { + [1] = { 62.9, 49.2, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "24", + }, + [2856] = { + ["coords"] = { + [1] = { 32.2, 27.4, 33, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [2857] = { + ["coords"] = { + [1] = { 76, 24.1, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "23", + }, + [2858] = { + ["coords"] = { + [1] = { 26.9, 77.1, 33, 1800 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [2859] = { + ["coords"] = { + [1] = { 27.5, 77.8, 33, 1800 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [2860] = { + ["coords"] = { + [1] = { 53.8, 43.3, 3, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [2861] = { + ["coords"] = { + [1] = { 4, 44.8, 3, 600 }, + [2] = { 83.2, 35.8, 51, 600 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [2862] = { + ["coords"] = {}, + ["lvl"] = "21", + }, + [2863] = { + ["coords"] = {}, + ["lvl"] = "22", + }, + [2864] = { + ["coords"] = {}, + ["lvl"] = "23", + }, + [2865] = { + ["coords"] = {}, + ["lvl"] = "24", + }, + [2866] = { + ["coords"] = {}, + ["lvl"] = "26", + }, + [2867] = { + ["coords"] = {}, + ["lvl"] = "27", + }, + [2868] = { + ["coords"] = {}, + ["lvl"] = "28", + }, + [2869] = { + ["coords"] = {}, + ["lvl"] = "29", + }, + [2870] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "21", + }, + [2871] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [2872] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "50", + }, + [2873] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [2874] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [2875] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [2876] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "50", + }, + [2877] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [2878] = { + ["coords"] = { + [1] = { 46.7, 54, 1, 540 }, + [2] = { 71, 38, 1, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [2879] = { + ["coords"] = { + [1] = { 61.6, 16, 1519, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [2880] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "50", + }, + [2881] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "50", + }, + [2883] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "8-12", + }, + [2885] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "8-12", + }, + [2886] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "8-12", + }, + [2887] = { + ["coords"] = {}, + ["lvl"] = "42-43", + }, + [2888] = { + ["coords"] = { + [1] = { 61.9, 54.3, 3, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [2889] = { + ["coords"] = {}, + ["lvl"] = "35-36", + ["rnk"] = "1", + }, + [2890] = { + ["coords"] = {}, + ["lvl"] = "36-37", + ["rnk"] = "1", + }, + [2891] = { + ["coords"] = {}, + ["lvl"] = "37-38", + }, + [2892] = { + ["coords"] = { + [1] = { 65.9, 44, 3, 300 }, + [2] = { 64.7, 43.4, 3, 300 }, + [3] = { 64.8, 41.1, 3, 300 }, + [4] = { 64.2, 41.1, 3, 300 }, + }, + ["lvl"] = "39-40", + ["rnk"] = "1", + }, + [2893] = { + ["coords"] = { + [1] = { 48.4, 72, 3, 300 }, + [2] = { 51.1, 72, 3, 300 }, + [3] = { 49.7, 71.9, 3, 300 }, + [4] = { 48.5, 70, 3, 300 }, + [5] = { 51, 69.9, 3, 300 }, + [6] = { 47.1, 69.9, 3, 300 }, + [7] = { 52.3, 69.8, 3, 300 }, + [8] = { 52.4, 68, 3, 300 }, + [9] = { 51.1, 68, 3, 300 }, + [10] = { 50, 67.3, 3, 300 }, + [11] = { 52.4, 66.1, 3, 300 }, + [12] = { 51.1, 66, 3, 300 }, + [13] = { 49.7, 64, 3, 300 }, + [14] = { 51, 63.9, 3, 300 }, + }, + ["lvl"] = "39-40", + }, + [2894] = { + ["coords"] = { + [1] = { 49.5, 69.9, 3, 300 }, + [2] = { 48.2, 68.5, 3, 300 }, + [3] = { 49.9, 68.4, 3, 300 }, + [4] = { 50.8, 67.4, 3, 300 }, + [5] = { 49.6, 66.5, 3, 300 }, + }, + ["lvl"] = "40-41", + }, + [2896] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "45", + }, + [2899] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "45", + }, + [2906] = { + ["coords"] = { + [1] = { 67.8, 24.7, 3, 300 }, + [2] = { 65.7, 23.5, 3, 300 }, + [3] = { 64.4, 23.5, 3, 300 }, + [4] = { 65.7, 22, 3, 300 }, + [5] = { 67.2, 21.9, 3, 300 }, + }, + ["lvl"] = "35-37", + }, + [2907] = { + ["coords"] = { + [1] = { 12.9, 73.3, 3, 300 }, + [2] = { 64.7, 25.6, 3, 300 }, + [3] = { 66.7, 23.3, 3, 300 }, + [4] = { 66.3, 22.1, 3, 300 }, + }, + ["lvl"] = "36-37", + }, + [2908] = { + ["coords"] = { + [1] = { 3.1, 45.9, 3, 300 }, + [2] = { 82.2, 37.1, 51, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "44", + }, + [2909] = { + ["coords"] = { + [1] = { 37.3, 85.8, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [2910] = { + ["coords"] = { + [1] = { 53.4, 43.4, 3, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [2911] = { + ["coords"] = { + [1] = { 10.8, 60.4, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "44", + }, + [2912] = { + ["coords"] = { + [1] = { 23.7, 64.5, 141, 300 }, + [2] = { 31.2, 84.5, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [2913] = { + ["coords"] = { + [1] = { 37.4, 41.8, 148, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "12", + }, + [2914] = { + ["coords"] = { + [1] = { 50.2, 77.1, 15, 300 }, + [2] = { 53, 75.9, 15, 300 }, + [3] = { 48.7, 75.8, 15, 300 }, + [4] = { 44.4, 74.5, 15, 300 }, + [5] = { 39, 74.3, 15, 300 }, + [6] = { 38.4, 74.1, 15, 300 }, + [7] = { 42.9, 73.8, 15, 300 }, + [8] = { 55.5, 73.5, 15, 300 }, + [9] = { 39.7, 71.6, 15, 300 }, + [10] = { 40.9, 70.8, 15, 300 }, + [11] = { 44.3, 70.6, 15, 300 }, + [12] = { 37.1, 70.4, 15, 300 }, + [13] = { 40.7, 70.2, 15, 300 }, + [14] = { 55.5, 70.1, 15, 300 }, + [15] = { 49.1, 70, 15, 300 }, + [16] = { 36, 66.7, 15, 300 }, + [17] = { 41.9, 64.6, 15, 300 }, + [18] = { 34.4, 64, 15, 300 }, + [19] = { 34, 63.6, 15, 300 }, + [20] = { 38.8, 60.4, 15, 300 }, + [21] = { 34.5, 59.4, 15, 300 }, + [22] = { 38.3, 59, 15, 300 }, + [23] = { 40.9, 58.7, 15, 300 }, + [24] = { 35.8, 57.3, 15, 300 }, + [25] = { 43.8, 57, 15, 300 }, + [26] = { 35.6, 56.6, 15, 300 }, + [27] = { 50.6, 56.1, 15, 300 }, + [28] = { 45.6, 53.5, 15, 300 }, + [29] = { 50.1, 53, 15, 300 }, + [30] = { 52.6, 52.9, 15, 300 }, + [31] = { 50.5, 52.7, 15, 300 }, + [32] = { 44.3, 51, 15, 300 }, + [33] = { 43.5, 50.9, 15, 300 }, + [34] = { 39.6, 49.5, 15, 300 }, + [35] = { 39.1, 49.1, 15, 300 }, + [36] = { 35.5, 46.2, 15, 300 }, + [37] = { 34.7, 43.9, 15, 300 }, + [38] = { 42.6, 43.2, 15, 300 }, + [39] = { 42.6, 42.6, 15, 300 }, + [40] = { 41.2, 41.9, 15, 300 }, + [41] = { 36, 40.5, 15, 300 }, + [42] = { 44.2, 40, 15, 300 }, + [43] = { 34.4, 38.8, 15, 300 }, + [44] = { 58.2, 30.7, 15, 300 }, + [45] = { 56, 30.2, 15, 300 }, + [46] = { 57.7, 29, 15, 300 }, + [47] = { 42, 28.7, 15, 300 }, + [48] = { 39.1, 28.4, 15, 300 }, + [49] = { 52.8, 28.3, 15, 300 }, + [50] = { 36.4, 28.1, 15, 300 }, + [51] = { 46.3, 25, 15, 300 }, + [52] = { 36.2, 25, 15, 300 }, + [53] = { 41.9, 24.7, 15, 300 }, + [54] = { 36.5, 24.6, 15, 300 }, + [55] = { 50.8, 23.7, 15, 300 }, + [56] = { 50.8, 23, 15, 300 }, + [57] = { 48.7, 22.7, 15, 300 }, + [58] = { 45.3, 22.3, 15, 300 }, + [59] = { 42, 21.7, 15, 300 }, + [60] = { 37, 21.6, 15, 300 }, + [61] = { 52.9, 20.3, 15, 300 }, + [62] = { 44.9, 19.7, 15, 300 }, + [63] = { 43.2, 19.4, 15, 300 }, + [64] = { 43.6, 19.1, 15, 300 }, + [65] = { 37.1, 18.6, 15, 300 }, + [66] = { 38.8, 16.3, 15, 300 }, + [67] = { 40.9, 13.6, 15, 300 }, + [68] = { 55.4, 92.4, 17, 300 }, + [69] = { 54.7, 90.4, 17, 300 }, + [70] = { 54.2, 88.5, 17, 300 }, + [71] = { 53.3, 87.1, 17, 300 }, + [72] = { 53.1, 86.9, 17, 300 }, + [73] = { 53.4, 84.7, 17, 300 }, + [74] = { 55.4, 84.5, 17, 300 }, + [75] = { 54, 83.6, 17, 300 }, + [76] = { 54, 83.3, 17, 300 }, + [77] = { 53.9, 77.9, 17, 300 }, + [78] = { 53.5, 76.7, 17, 300 }, + [79] = { 54.2, 74.9, 17, 300 }, + [80] = { 53.3, 74, 17, 300 }, + [81] = { 54.4, 68.5, 17, 300 }, + [82] = { 54.3, 66.9, 17, 300 }, + [83] = { 54.4, 66.7, 17, 300 }, + [84] = { 54.7, 65.1, 17, 300 }, + [85] = { 54.7, 63.6, 17, 300 }, + [86] = { 55.6, 62.4, 17, 300 }, + [87] = { 46.2, 79.1, 40, 300 }, + [88] = { 63.4, 73.5, 40, 300 }, + [89] = { 46.1, 71.7, 40, 300 }, + [90] = { 40.9, 62, 40, 300 }, + [91] = { 62.3, 60.2, 40, 300 }, + [92] = { 46.5, 53.4, 40, 300 }, + [93] = { 32.1, 52.4, 40, 300 }, + [94] = { 49.2, 47.9, 40, 300 }, + [95] = { 53.7, 39.3, 40, 300 }, + [96] = { 35, 33.9, 40, 300 }, + [97] = { 43.6, 33.7, 40, 300 }, + [98] = { 50, 31.1, 40, 300 }, + [99] = { 37.2, 27, 40, 300 }, + [100] = { 54.3, 20.6, 40, 300 }, + [101] = { 58.6, 14.7, 40, 300 }, + [102] = { 46.5, 79, 130, 300 }, + [103] = { 66.4, 48.9, 130, 300 }, + [104] = { 50.9, 43.5, 130, 300 }, + [105] = { 45.9, 26, 130, 300 }, + [106] = { 49.9, 19, 130, 300 }, + [107] = { 49.7, 15.7, 130, 300 }, + [108] = { 59.3, 9.2, 130, 300 }, + [109] = { 54.9, 73.7, 357, 300 }, + [110] = { 56.6, 69.4, 357, 300 }, + [111] = { 71.6, 61.3, 357, 300 }, + [112] = { 68.9, 60.3, 357, 300 }, + [113] = { 58.7, 54.6, 357, 300 }, + [114] = { 54.1, 53.8, 357, 300 }, + [115] = { 55.1, 49.3, 357, 300 }, + [116] = { 52.8, 49, 357, 300 }, + [117] = { 52.4, 47.7, 357, 300 }, + [118] = { 57.2, 47.4, 357, 300 }, + [119] = { 79.5, 45.2, 357, 300 }, + [120] = { 82.7, 45.1, 357, 300 }, + [121] = { 69.9, 39.9, 357, 300 }, + [122] = { 80.9, 39.6, 357, 300 }, + [123] = { 84.4, 38.3, 357, 300 }, + [124] = { 49.9, 31.5, 357, 300 }, + [125] = { 40.6, 24.1, 357, 300 }, + [126] = { 43.9, 12.6, 357, 300 }, + [127] = { 44.4, 86.3, 405, 300 }, + [128] = { 35.3, 84.5, 405, 300 }, + [129] = { 28.8, 80.1, 405, 300 }, + [130] = { 31.3, 78, 405, 300 }, + [131] = { 62.2, 77.9, 405, 300 }, + [132] = { 34.3, 76.4, 405, 300 }, + [133] = { 63.5, 72.4, 405, 300 }, + [134] = { 31.1, 70.8, 405, 300 }, + [135] = { 42.4, 70, 405, 300 }, + [136] = { 67.4, 69, 405, 300 }, + [137] = { 50.9, 69, 405, 300 }, + [138] = { 73.6, 64.9, 405, 300 }, + [139] = { 42.2, 63.6, 405, 300 }, + [140] = { 59.7, 62.1, 405, 300 }, + [141] = { 68.5, 62.1, 405, 300 }, + [142] = { 71.3, 60.1, 405, 300 }, + [143] = { 41.9, 52.4, 405, 300 }, + [144] = { 46.3, 48.6, 405, 300 }, + [145] = { 70.1, 41.7, 405, 300 }, + [146] = { 39.9, 38.3, 405, 300 }, + [147] = { 64.1, 33.5, 405, 300 }, + [148] = { 71.7, 32.5, 405, 300 }, + [149] = { 54.4, 32.4, 405, 300 }, + [150] = { 41.6, 28.1, 405, 300 }, + [151] = { 76.2, 24.6, 405, 300 }, + [152] = { 56.3, 23, 405, 300 }, + [153] = { 71.6, 22.7, 405, 300 }, + [154] = { 79.4, 16.9, 405, 300 }, + [155] = { 57.4, 8.1, 405, 300 }, + [156] = { 32.6, 83.2, 406, 300 }, + [157] = { 47.4, 85.9, 490, 300 }, + [158] = { 47.2, 73.9, 490, 300 }, + [159] = { 54.3, 72.5, 490, 300 }, + [160] = { 44.6, 62.9, 490, 300 }, + [161] = { 75, 62.5, 490, 300 }, + [162] = { 75.8, 44.3, 490, 300 }, + [163] = { 28.3, 43.8, 490, 300 }, + [164] = { 37.7, 42.6, 490, 300 }, + [165] = { 35.1, 38.6, 490, 300 }, + [166] = { 52.3, 33.1, 490, 300 }, + [167] = { 69, 32.1, 490, 300 }, + [168] = { 55.8, 30.4, 490, 300 }, + [169] = { 31.1, 29, 490, 300 }, + [170] = { 66.9, 28.4, 490, 300 }, + [171] = { 46.2, 25.7, 490, 300 }, + [172] = { 41, 22.3, 490, 300 }, + [173] = { 60.5, 19.6, 490, 300 }, + [174] = { 50.9, 18.2, 490, 300 }, + [175] = { 46, 78.2, 15, 300 }, + [176] = { 46.5, 77.5, 15, 300 }, + [177] = { 43.6, 76.6, 15, 300 }, + [178] = { 42.2, 74.9, 15, 300 }, + [179] = { 38.2, 71.9, 15, 300 }, + [180] = { 35.5, 71, 15, 300 }, + [181] = { 52.4, 69.7, 15, 300 }, + [182] = { 56.7, 69, 15, 300 }, + [183] = { 51.2, 68.9, 15, 300 }, + [184] = { 47.9, 66.7, 15, 300 }, + [185] = { 48.6, 66.3, 15, 300 }, + [186] = { 50.8, 65.7, 15, 300 }, + [187] = { 39.3, 65.1, 15, 300 }, + [188] = { 47.3, 63.7, 15, 300 }, + [189] = { 51.4, 61.5, 15, 300 }, + [190] = { 43, 60.4, 15, 300 }, + [191] = { 52.3, 56.4, 15, 300 }, + [192] = { 38.2, 54, 15, 300 }, + [193] = { 38.6, 52.8, 15, 300 }, + [194] = { 49, 52.7, 15, 300 }, + [195] = { 37.7, 50.5, 15, 300 }, + [196] = { 35.1, 50.3, 15, 300 }, + [197] = { 48.3, 49.8, 15, 300 }, + [198] = { 44.2, 47.7, 15, 300 }, + [199] = { 34.3, 47.1, 15, 300 }, + [200] = { 46.1, 45.6, 15, 300 }, + [201] = { 42.7, 45.3, 15, 300 }, + [202] = { 33.3, 44.7, 15, 300 }, + [203] = { 36.1, 43.9, 15, 300 }, + [204] = { 33.9, 41.2, 15, 300 }, + [205] = { 42.9, 38.3, 15, 300 }, + [206] = { 59.7, 35.8, 15, 300 }, + [207] = { 56.4, 35.8, 15, 300 }, + [208] = { 38.2, 35.8, 15, 300 }, + [209] = { 40.1, 34.9, 15, 300 }, + [210] = { 55.9, 27.8, 15, 300 }, + [211] = { 51, 27.5, 15, 300 }, + [212] = { 38.6, 25.6, 15, 300 }, + [213] = { 39.7, 25.1, 15, 300 }, + [214] = { 43.1, 24.7, 15, 300 }, + [215] = { 40.9, 21.5, 15, 300 }, + [216] = { 50.8, 21.4, 15, 300 }, + [217] = { 38.3, 19.6, 15, 300 }, + [218] = { 55.3, 91.2, 17, 300 }, + [219] = { 53.9, 90.8, 17, 300 }, + [220] = { 55.3, 81.9, 17, 300 }, + [221] = { 55, 80.1, 17, 300 }, + [222] = { 53.7, 80, 17, 300 }, + [223] = { 53.3, 78.3, 17, 300 }, + [224] = { 52.8, 77.1, 17, 300 }, + [225] = { 54.2, 76.7, 17, 300 }, + [226] = { 53.1, 75.3, 17, 300 }, + [227] = { 55.3, 72.5, 17, 300 }, + [228] = { 55.3, 64.1, 17, 300 }, + }, + ["lvl"] = "1", + }, + [2915] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "40", + }, + [2916] = { + ["coords"] = { + [1] = { 77.5, 11.8, 1537, 285 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [2917] = { + ["coords"] = { + [1] = { 35.7, 83.7, 148, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "16", + }, + [2918] = { + ["coords"] = { + [1] = { 77.3, 9.7, 1537, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [2919] = { + ["coords"] = {}, + ["lvl"] = "45", + }, + [2920] = { + ["coords"] = { + [1] = { 25.8, 44.2, 3, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "31", + }, + [2921] = { + ["coords"] = { + [1] = { 25.9, 44.9, 3, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "36", + }, + [2922] = { + ["coords"] = { + [1] = { 26, 44.7, 3, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [2923] = { + ["coords"] = { + [1] = { 20.3, 57.2, 47, 350 }, + [2] = { 20.1, 56.6, 47, 350 }, + [3] = { 15.2, 55.6, 47, 350 }, + [4] = { 21, 55.4, 47, 350 }, + [5] = { 21.8, 55, 47, 350 }, + [6] = { 16.4, 54.7, 47, 350 }, + [7] = { 19.3, 54.3, 47, 350 }, + [8] = { 15.1, 54.2, 47, 350 }, + [9] = { 21.8, 53, 47, 350 }, + [10] = { 18.2, 52.5, 47, 350 }, + [11] = { 19.6, 52.3, 47, 350 }, + [12] = { 23.6, 51.7, 47, 350 }, + [13] = { 19.7, 51.5, 47, 350 }, + [14] = { 22.6, 51.2, 47, 350 }, + [15] = { 20.9, 50.3, 47, 350 }, + [16] = { 20.1, 50, 47, 350 }, + [17] = { 17.2, 49.5, 47, 350 }, + [18] = { 18.8, 49.1, 47, 350 }, + [19] = { 18.3, 48.9, 47, 350 }, + [20] = { 17.6, 48.2, 47, 350 }, + [21] = { 19, 47.6, 47, 350 }, + [22] = { 21.7, 47.6, 47, 350 }, + }, + ["lvl"] = "41-42", + }, + [2924] = { + ["coords"] = { + [1] = { 27.9, 69.4, 47, 350 }, + [2] = { 31, 64.6, 47, 350 }, + [3] = { 32.7, 63.5, 47, 350 }, + [4] = { 32.1, 63.4, 47, 350 }, + [5] = { 28.8, 63.2, 47, 350 }, + [6] = { 35, 61.6, 47, 350 }, + [7] = { 27.9, 61.6, 47, 350 }, + [8] = { 34.2, 61.1, 47, 350 }, + [9] = { 31.8, 60.7, 47, 350 }, + [10] = { 34.4, 58.8, 47, 350 }, + [11] = { 26.9, 58.1, 47, 350 }, + [12] = { 26.6, 55.3, 47, 350 }, + [13] = { 32.2, 55.2, 47, 350 }, + [14] = { 37.5, 55.1, 47, 350 }, + [15] = { 29.6, 54.2, 47, 350 }, + [16] = { 33.7, 53.6, 47, 350 }, + [17] = { 27.8, 53.4, 47, 350 }, + [18] = { 38.1, 53.1, 47, 350 }, + [19] = { 35.2, 52.6, 47, 350 }, + [20] = { 36.7, 52.6, 47, 350 }, + [21] = { 35.7, 52.6, 47, 350 }, + [22] = { 37.6, 52.1, 47, 350 }, + [23] = { 36.8, 51.7, 47, 350 }, + [24] = { 24.7, 51.1, 47, 350 }, + [25] = { 37.3, 49.7, 47, 350 }, + [26] = { 36.2, 49.1, 47, 350 }, + [27] = { 35.8, 49, 47, 350 }, + [28] = { 35.5, 47.7, 47, 350 }, + [29] = { 34.1, 46.1, 47, 350 }, + [30] = { 35.8, 45, 47, 350 }, + [31] = { 35, 44.1, 47, 350 }, + [32] = { 36.1, 44, 47, 350 }, + }, + ["lvl"] = "43-44", + }, + [2925] = { + ["coords"] = { + [1] = { 41.3, 67.1, 47, 350 }, + [2] = { 40.6, 64.2, 47, 350 }, + [3] = { 39.4, 62.9, 47, 350 }, + [4] = { 42.7, 62.7, 47, 350 }, + [5] = { 44, 61.8, 47, 350 }, + [6] = { 48, 61.5, 47, 350 }, + [7] = { 37.4, 61, 47, 350 }, + [8] = { 51.8, 60, 47, 350 }, + [9] = { 46.8, 59.5, 47, 350 }, + [10] = { 47.8, 59, 47, 350 }, + [11] = { 50.5, 58.9, 47, 350 }, + [12] = { 49.8, 57.6, 47, 350 }, + [13] = { 41, 55.1, 47, 350 }, + [14] = { 43, 53.7, 47, 350 }, + [15] = { 39.9, 50.6, 47, 350 }, + [16] = { 46.7, 47.8, 47, 350 }, + [17] = { 42.5, 46.3, 47, 350 }, + [18] = { 41.5, 46.2, 47, 350 }, + [19] = { 39.3, 46, 47, 350 }, + [20] = { 51.1, 40.6, 47, 350 }, + }, + ["lvl"] = "45-46", + }, + [2926] = { + ["coords"] = { + [1] = { 72.1, 62.9, 47, 350 }, + [2] = { 71.2, 61.6, 47, 350 }, + [3] = { 50.8, 61.4, 47, 350 }, + [4] = { 66.6, 60.6, 47, 350 }, + [5] = { 68.6, 60.4, 47, 350 }, + [6] = { 71.6, 59.5, 47, 350 }, + [7] = { 72, 59.3, 47, 350 }, + [8] = { 70.5, 58, 47, 350 }, + [9] = { 73.4, 57.9, 47, 350 }, + [10] = { 72.9, 57.8, 47, 350 }, + [11] = { 66.8, 57.8, 47, 350 }, + [12] = { 70.1, 57.1, 47, 350 }, + [13] = { 62.7, 56.6, 47, 350 }, + [14] = { 72.4, 56.4, 47, 350 }, + [15] = { 69.8, 56.4, 47, 350 }, + [16] = { 73.5, 56.1, 47, 350 }, + [17] = { 53.5, 56, 47, 350 }, + [18] = { 74, 55.9, 47, 350 }, + [19] = { 61.2, 55.8, 47, 350 }, + [20] = { 60.2, 55.3, 47, 350 }, + [21] = { 75.5, 55.2, 47, 350 }, + [22] = { 64, 55.1, 47, 350 }, + [23] = { 69.6, 54.8, 47, 350 }, + [24] = { 71.5, 54.8, 47, 350 }, + [25] = { 58.3, 54.7, 47, 350 }, + [26] = { 51.5, 54.3, 47, 350 }, + [27] = { 59.7, 54.1, 47, 350 }, + [28] = { 60.7, 54, 47, 350 }, + [29] = { 69.5, 54, 47, 350 }, + [30] = { 76.4, 53.5, 47, 350 }, + [31] = { 65.4, 53.3, 47, 350 }, + [32] = { 68, 52.9, 47, 350 }, + [33] = { 68.6, 52.8, 47, 350 }, + [34] = { 63.1, 52.4, 47, 350 }, + [35] = { 78, 52.2, 47, 350 }, + [36] = { 73.1, 52, 47, 350 }, + [37] = { 58.4, 51.9, 47, 350 }, + [38] = { 67.4, 51.5, 47, 350 }, + [39] = { 59.6, 50.8, 47, 350 }, + [40] = { 67, 50.4, 47, 350 }, + [41] = { 62.5, 50.3, 47, 350 }, + [42] = { 69.3, 49.8, 47, 350 }, + [43] = { 63.6, 49.3, 47, 350 }, + [44] = { 52.2, 49.1, 47, 350 }, + [45] = { 63.2, 49.1, 47, 350 }, + [46] = { 59.4, 49, 47, 350 }, + [47] = { 64.2, 48.9, 47, 350 }, + [48] = { 76.6, 48.8, 47, 350 }, + [49] = { 67.6, 48.6, 47, 350 }, + [50] = { 74.7, 48.6, 47, 350 }, + [51] = { 66.7, 48.6, 47, 350 }, + [52] = { 61.2, 48, 47, 350 }, + [53] = { 58.8, 47.5, 47, 350 }, + [54] = { 62, 46.3, 47, 350 }, + [55] = { 56.4, 46.2, 47, 350 }, + [56] = { 69.4, 45, 47, 350 }, + [57] = { 54.3, 43.8, 47, 350 }, + [58] = { 55.8, 43.8, 47, 350 }, + [59] = { 63, 42.9, 47, 350 }, + [60] = { 54.2, 42.8, 47, 350 }, + }, + ["lvl"] = "47-48", + }, + [2927] = { + ["coords"] = { + [1] = { 26.4, 68.7, 47, 350 }, + [2] = { 25.9, 68.4, 47, 350 }, + [3] = { 26.2, 67.1, 47, 350 }, + [4] = { 27.9, 65.9, 47, 350 }, + [5] = { 26.2, 63.9, 47, 350 }, + [6] = { 27.1, 63.4, 47, 350 }, + [7] = { 33.9, 63.2, 47, 350 }, + [8] = { 31.1, 63, 47, 350 }, + [9] = { 25.6, 62.9, 47, 350 }, + [10] = { 34.1, 61.6, 47, 350 }, + [11] = { 26.5, 61.3, 47, 350 }, + [12] = { 26.8, 59.6, 47, 350 }, + [13] = { 33.8, 58.9, 47, 350 }, + [14] = { 34.4, 55.5, 47, 350 }, + [15] = { 36.1, 55.3, 47, 350 }, + [16] = { 29.7, 55.3, 47, 350 }, + [17] = { 26.3, 54.3, 47, 350 }, + [18] = { 25.3, 53.3, 47, 350 }, + [19] = { 26.6, 53.2, 47, 350 }, + [20] = { 31, 52.8, 47, 350 }, + [21] = { 34.1, 52, 47, 350 }, + [22] = { 34.2, 51, 47, 350 }, + [23] = { 35.8, 50.8, 47, 350 }, + [24] = { 23.7, 49.4, 47, 350 }, + [25] = { 36.6, 47.8, 47, 350 }, + [26] = { 36.5, 45.7, 47, 350 }, + [27] = { 37.2, 44.2, 47, 350 }, + }, + ["lvl"] = "42-43", + }, + [2928] = { + ["coords"] = { + [1] = { 42.1, 64.6, 47, 350 }, + [2] = { 40.7, 63.8, 47, 350 }, + [3] = { 38.2, 63.6, 47, 350 }, + [4] = { 51.8, 63.5, 47, 350 }, + [5] = { 41, 61.6, 47, 350 }, + [6] = { 38.1, 61.3, 47, 350 }, + [7] = { 49.5, 59.8, 47, 350 }, + [8] = { 44.3, 59.7, 47, 350 }, + [9] = { 36.1, 59.5, 47, 350 }, + [10] = { 38.1, 59, 47, 350 }, + [11] = { 43.4, 58, 47, 350 }, + [12] = { 50.9, 57.8, 47, 350 }, + [13] = { 37, 57.7, 47, 350 }, + [14] = { 38.6, 57.5, 47, 350 }, + [15] = { 46.2, 57, 47, 350 }, + [16] = { 41.6, 56.8, 47, 350 }, + [17] = { 47.1, 56.7, 47, 350 }, + [18] = { 40.3, 56.4, 47, 350 }, + [19] = { 43.5, 56.4, 47, 350 }, + [20] = { 42.9, 55.1, 47, 350 }, + [21] = { 44.1, 54.7, 47, 350 }, + [22] = { 45.8, 54.1, 47, 350 }, + [23] = { 46, 54, 47, 350 }, + [24] = { 44.6, 53.5, 47, 350 }, + [25] = { 39.1, 52.6, 47, 350 }, + [26] = { 40.9, 52.6, 47, 350 }, + [27] = { 38.6, 52.4, 47, 350 }, + [28] = { 45.7, 51.5, 47, 350 }, + [29] = { 51.3, 50.1, 47, 350 }, + [30] = { 38.4, 49.4, 47, 350 }, + [31] = { 39.6, 48.4, 47, 350 }, + [32] = { 40.5, 47.7, 47, 350 }, + [33] = { 42.3, 47.3, 47, 350 }, + [34] = { 40.1, 46.1, 47, 350 }, + [35] = { 41.2, 46, 47, 350 }, + [36] = { 38.7, 45.6, 47, 350 }, + [37] = { 42.8, 45.2, 47, 350 }, + [38] = { 42.6, 45, 47, 350 }, + [39] = { 39.1, 44.8, 47, 350 }, + [40] = { 43.3, 44.5, 47, 350 }, + [41] = { 39.6, 43.4, 47, 350 }, + [42] = { 38.6, 43.3, 47, 350 }, + [43] = { 41.4, 42.5, 47, 350 }, + [44] = { 51.4, 42.2, 47, 350 }, + }, + ["lvl"] = "44-45", + }, + [2929] = { + ["coords"] = { + [1] = { 65.6, 57.8, 47, 350 }, + [2] = { 60.4, 53.8, 47, 350 }, + [3] = { 55.9, 51.7, 47, 350 }, + [4] = { 52.9, 49.8, 47, 350 }, + [5] = { 53.8, 48.9, 47, 350 }, + [6] = { 60.9, 46.5, 47, 350 }, + [7] = { 52.2, 46.4, 47, 350 }, + [8] = { 56.1, 46.1, 47, 350 }, + [9] = { 61.6, 44.3, 47, 350 }, + [10] = { 61.5, 41.9, 47, 350 }, + [11] = { 62.6, 40.9, 47, 350 }, + }, + ["lvl"] = "46-47", + }, + [2930] = { + ["coords"] = { + [1] = { 37.7, 43.4, 148, 275 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [2931] = { + ["coords"] = { + [1] = { 56.1, 61.7, 3, 18000 }, + }, + ["lvl"] = "55", + ["rnk"] = "2", + }, + [2932] = { + ["coords"] = { + [1] = { 39.1, 19.7, 3, 300 }, + }, + ["lvl"] = "38", + ["rnk"] = "1", + }, + [2934] = { + ["coords"] = { + [1] = { 53.7, 54.5, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "42", + }, + [2935] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [2937] = { + ["coords"] = { + [1] = { 60.9, 10.6, 15, 0 }, + [2] = { 67.1, 59.5, 17, 0 }, + }, + ["lvl"] = "43", + ["rnk"] = "1", + }, + [2938] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "50", + }, + [2939] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [2940] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "50", + }, + [2941] = { + ["coords"] = { + [1] = { 37.9, 30.9, 51, 900 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [2942] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "50", + }, + [2943] = { + ["coords"] = { + [1] = { 50.1, 12.7, 1537, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [2944] = { + ["coords"] = { + [1] = { 12.6, 75.5, 3, 300 }, + }, + ["lvl"] = "41-42", + }, + [2945] = { + ["coords"] = { + [1] = { 49.6, 66.2, 3, 300 }, + }, + ["lvl"] = "42", + }, + [2946] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "42", + }, + [2947] = { + ["coords"] = { + [1] = { 48.7, 59.3, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "21", + }, + [2948] = { + ["coords"] = { + [1] = { 48.5, 60.4, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [2949] = { + ["coords"] = { + [1] = { 53.7, 74.1, 215, 375 }, + [2] = { 53.5, 73.5, 215, 375 }, + [3] = { 54.5, 73.3, 215, 375 }, + [4] = { 48.3, 72.4, 215, 375 }, + [5] = { 55.1, 72.3, 215, 375 }, + [6] = { 52.5, 72.3, 215, 375 }, + [7] = { 53.8, 72.3, 215, 375 }, + [8] = { 49.3, 72.2, 215, 375 }, + [9] = { 48.3, 71.7, 215, 375 }, + [10] = { 47.3, 71.3, 215, 375 }, + [11] = { 49.2, 71.3, 215, 375 }, + [12] = { 48.7, 71.2, 215, 375 }, + [13] = { 35.6, 63.4, 215, 375 }, + [14] = { 35, 62.7, 215, 375 }, + [15] = { 35.6, 62.4, 215, 375 }, + [16] = { 35.4, 62.3, 215, 375 }, + [17] = { 33.1, 62.2, 215, 375 }, + [18] = { 35.5, 62, 215, 375 }, + [19] = { 32.8, 61.8, 215, 375 }, + [20] = { 35.7, 61.6, 215, 375 }, + [21] = { 33, 61.2, 215, 375 }, + [22] = { 33.4, 61.2, 215, 375 }, + [23] = { 32.7, 61, 215, 375 }, + [24] = { 31.6, 60.4, 215, 375 }, + [25] = { 32, 59.8, 215, 375 }, + }, + ["lvl"] = "5-6", + }, + [2950] = { + ["coords"] = { + [1] = { 53.2, 74.1, 215, 375 }, + [2] = { 48.7, 73.3, 215, 375 }, + [3] = { 48, 73.3, 215, 375 }, + [4] = { 52.6, 73.2, 215, 375 }, + [5] = { 53.3, 73, 215, 375 }, + [6] = { 47.3, 72.3, 215, 375 }, + [7] = { 48.2, 72.1, 215, 375 }, + [8] = { 55.7, 71.8, 215, 375 }, + [9] = { 48.6, 71.8, 215, 375 }, + [10] = { 54.4, 71.8, 215, 375 }, + [11] = { 48, 71.2, 215, 375 }, + [12] = { 35.1, 63.4, 215, 375 }, + [13] = { 35.1, 61.8, 215, 375 }, + [14] = { 33, 61.7, 215, 375 }, + [15] = { 32.4, 61.1, 215, 375 }, + [16] = { 30.7, 61, 215, 375 }, + [17] = { 31.7, 60.7, 215, 375 }, + [18] = { 30.6, 60.5, 215, 375 }, + [19] = { 32.2, 60.5, 215, 375 }, + [20] = { 31.6, 60, 215, 375 }, + }, + ["lvl"] = "6-7", + }, + [2951] = { + ["coords"] = { + [1] = { 53.1, 73.6, 215, 375 }, + [2] = { 55.2, 73.1, 215, 375 }, + [3] = { 54.8, 72.8, 215, 375 }, + [4] = { 53.6, 72.4, 215, 375 }, + [5] = { 53.2, 72.3, 215, 375 }, + [6] = { 54.4, 71.9, 215, 375 }, + [7] = { 54, 71.8, 215, 375 }, + [8] = { 30.7, 62.4, 215, 375 }, + [9] = { 31.2, 62.2, 215, 375 }, + [10] = { 31.3, 61.7, 215, 375 }, + [11] = { 30.9, 61.5, 215, 375 }, + [12] = { 31.2, 61.2, 215, 375 }, + [13] = { 30.7, 60.5, 215, 375 }, + [14] = { 31, 60.4, 215, 375 }, + }, + ["lvl"] = "7-8", + }, + [2952] = { + ["coords"] = { + [1] = { 60.9, 84.8, 215, 375 }, + [2] = { 59.2, 84.7, 215, 375 }, + [3] = { 60.4, 84.2, 215, 375 }, + [4] = { 59.3, 84, 215, 375 }, + [5] = { 61.9, 83.6, 215, 375 }, + [6] = { 60.3, 82.9, 215, 375 }, + [7] = { 60.1, 82.3, 215, 375 }, + [8] = { 62.2, 82.1, 215, 375 }, + [9] = { 59.7, 82.1, 215, 375 }, + [10] = { 61, 82, 215, 375 }, + [11] = { 58.4, 81.8, 215, 375 }, + [12] = { 57.8, 81.7, 215, 375 }, + [13] = { 62.3, 81.6, 215, 375 }, + [14] = { 61.9, 81.4, 215, 375 }, + [15] = { 61.6, 81.1, 215, 375 }, + [16] = { 60.2, 80.9, 215, 375 }, + [17] = { 60, 80, 215, 375 }, + [18] = { 58.5, 79.8, 215, 375 }, + [19] = { 63.9, 79.7, 215, 375 }, + [20] = { 62.4, 79.6, 215, 375 }, + [21] = { 59.5, 79.5, 215, 375 }, + [22] = { 64.7, 79.5, 215, 375 }, + [23] = { 59.7, 79.1, 215, 375 }, + [24] = { 64.2, 79.1, 215, 375 }, + [25] = { 61.6, 78.8, 215, 375 }, + [26] = { 59.3, 78.4, 215, 375 }, + [27] = { 61.6, 78.4, 215, 375 }, + [28] = { 58.4, 78.3, 215, 375 }, + [29] = { 63.9, 78.3, 215, 375 }, + [30] = { 63.1, 78.3, 215, 375 }, + [31] = { 64.3, 78.3, 215, 375 }, + [32] = { 59.3, 78.3, 215, 375 }, + [33] = { 65.8, 78.2, 215, 375 }, + [34] = { 60.1, 78.1, 215, 375 }, + [35] = { 58.8, 78.1, 215, 375 }, + [36] = { 65.1, 78, 215, 375 }, + [37] = { 65.7, 77.9, 215, 375 }, + [38] = { 64.5, 77.9, 215, 375 }, + [39] = { 64.2, 77.8, 215, 375 }, + [40] = { 62.9, 77.3, 215, 375 }, + [41] = { 64.1, 77.3, 215, 375 }, + [42] = { 61.5, 77.1, 215, 375 }, + [43] = { 59.7, 77, 215, 375 }, + [44] = { 63.7, 77, 215, 375 }, + [45] = { 60.7, 76.8, 215, 375 }, + [46] = { 63.8, 76.7, 215, 375 }, + [47] = { 60.8, 75.3, 215, 375 }, + [48] = { 60.7, 74.8, 215, 375 }, + }, + ["lvl"] = "3-4", + }, + [2953] = { + ["coords"] = { + [1] = { 63.3, 82.8, 215, 375 }, + [2] = { 63.7, 81.1, 215, 375 }, + [3] = { 63.8, 79.8, 215, 375 }, + [4] = { 65, 78.6, 215, 375 }, + [5] = { 59.4, 78, 215, 375 }, + [6] = { 64.7, 77.9, 215, 375 }, + [7] = { 66.1, 77.8, 215, 375 }, + [8] = { 65.9, 77.1, 215, 375 }, + [9] = { 63.7, 76.2, 215, 375 }, + [10] = { 61.6, 76.1, 215, 375 }, + [11] = { 60.1, 76, 215, 375 }, + [12] = { 61.7, 75.8, 215, 375 }, + [13] = { 59.5, 75.4, 215, 375 }, + [14] = { 60, 75.3, 215, 375 }, + }, + ["lvl"] = "3-4", + }, + [2954] = { + ["coords"] = { + [1] = { 61, 86.5, 215, 375 }, + [2] = { 61, 85.3, 215, 375 }, + [3] = { 63.7, 81.7, 215, 375 }, + [4] = { 61.1, 80.6, 215, 375 }, + [5] = { 62.3, 79.2, 215, 375 }, + [6] = { 63.6, 79.1, 215, 375 }, + [7] = { 64.2, 78.6, 215, 375 }, + [8] = { 63.7, 78.4, 215, 375 }, + [9] = { 59.8, 78.3, 215, 375 }, + [10] = { 65.6, 77.9, 215, 375 }, + [11] = { 63.9, 77.7, 215, 375 }, + [12] = { 59, 77.2, 215, 375 }, + [13] = { 62.9, 76.1, 215, 375 }, + [14] = { 61.5, 75.7, 215, 375 }, + }, + ["lvl"] = "4-5", + }, + [2955] = { + ["coords"] = { + [1] = { 53.1, 88.9, 215, 233 }, + [2] = { 50.5, 88.7, 215, 233 }, + [3] = { 47.8, 88.2, 215, 233 }, + [4] = { 51.6, 88, 215, 233 }, + [5] = { 45.2, 87.9, 215, 233 }, + [6] = { 48.6, 87.7, 215, 233 }, + [7] = { 44.2, 87.7, 215, 233 }, + [8] = { 46.7, 87.6, 215, 233 }, + [9] = { 52.6, 87.5, 215, 233 }, + [10] = { 50.1, 87, 215, 233 }, + [11] = { 50.7, 87, 215, 233 }, + [12] = { 53.9, 86.9, 215, 233 }, + [13] = { 46.2, 86.9, 215, 233 }, + [14] = { 47.9, 86.6, 215, 233 }, + [15] = { 47.2, 86.5, 215, 233 }, + [16] = { 53.3, 86.3, 215, 233 }, + [17] = { 44, 86.2, 215, 233 }, + [18] = { 49.6, 86, 215, 233 }, + [19] = { 50.6, 85.9, 215, 233 }, + [20] = { 51.4, 85.7, 215, 233 }, + [21] = { 54.4, 85.6, 215, 233 }, + [22] = { 45.3, 85.5, 215, 233 }, + [23] = { 52.4, 85.5, 215, 233 }, + [24] = { 46, 85.2, 215, 233 }, + [25] = { 46.6, 85.2, 215, 233 }, + [26] = { 43.4, 85, 215, 233 }, + [27] = { 44.1, 85, 215, 233 }, + [28] = { 46.6, 85, 215, 233 }, + [29] = { 53.9, 84.3, 215, 233 }, + [30] = { 45.4, 84.1, 215, 233 }, + [31] = { 47.8, 84.1, 215, 233 }, + [32] = { 53.4, 84.1, 215, 233 }, + [33] = { 44.2, 83.9, 215, 233 }, + [34] = { 50.9, 83.8, 215, 233 }, + [35] = { 44.6, 83.7, 215, 233 }, + [36] = { 47.1, 83.7, 215, 233 }, + [37] = { 46.1, 83.5, 215, 233 }, + [38] = { 49.9, 83.4, 215, 233 }, + [39] = { 49.4, 83.4, 215, 233 }, + [40] = { 51.2, 83.1, 215, 233 }, + [41] = { 51.9, 83.1, 215, 233 }, + [42] = { 48.7, 83, 215, 233 }, + [43] = { 53.9, 82.8, 215, 233 }, + [44] = { 52.8, 82.7, 215, 233 }, + [45] = { 42.3, 82.3, 215, 233 }, + [46] = { 46.6, 82.2, 215, 233 }, + [47] = { 53.2, 82.1, 215, 233 }, + [48] = { 45.3, 81.9, 215, 233 }, + [49] = { 52, 81.9, 215, 233 }, + [50] = { 48.1, 81.8, 215, 233 }, + [51] = { 49.6, 81.7, 215, 233 }, + [52] = { 43.3, 81.7, 215, 233 }, + [53] = { 42.3, 81.4, 215, 233 }, + [54] = { 52.2, 81.3, 215, 233 }, + [55] = { 50.7, 81.2, 215, 233 }, + [56] = { 46.7, 81, 215, 233 }, + [57] = { 46, 80.6, 215, 233 }, + [58] = { 48.3, 80.4, 215, 233 }, + [59] = { 49.3, 80.4, 215, 233 }, + [60] = { 45.7, 80.3, 215, 233 }, + [61] = { 44.1, 80.1, 215, 233 }, + [62] = { 51.9, 79.8, 215, 233 }, + [63] = { 48.6, 79.6, 215, 233 }, + [64] = { 45.4, 79.2, 215, 233 }, + [65] = { 50.6, 79.1, 215, 233 }, + [66] = { 47.5, 79.1, 215, 233 }, + [67] = { 43.6, 79.1, 215, 233 }, + [68] = { 51.4, 79, 215, 233 }, + [69] = { 49.7, 78.6, 215, 233 }, + [70] = { 46.7, 78.2, 215, 233 }, + [71] = { 50.9, 78.1, 215, 233 }, + [72] = { 49.6, 77.8, 215, 233 }, + [73] = { 47.9, 77.4, 215, 233 }, + [74] = { 42.1, 77.3, 215, 233 }, + [75] = { 52, 77.2, 215, 233 }, + [76] = { 48, 77.1, 215, 233 }, + [77] = { 50.6, 77, 215, 233 }, + [78] = { 48.9, 76.9, 215, 233 }, + [79] = { 42.9, 76.5, 215, 233 }, + [80] = { 47.9, 76.4, 215, 233 }, + [81] = { 48.5, 76.3, 215, 233 }, + [82] = { 51.2, 76.2, 215, 233 }, + [83] = { 51, 76.2, 215, 233 }, + [84] = { 49.2, 75.7, 215, 233 }, + [85] = { 47, 75.6, 215, 233 }, + [86] = { 43.3, 75.5, 215, 233 }, + [87] = { 49.9, 75.3, 215, 233 }, + [88] = { 47.7, 75.3, 215, 233 }, + [89] = { 51.9, 75.1, 215, 233 }, + [90] = { 46.5, 75, 215, 233 }, + [91] = { 51.5, 74.9, 215, 233 }, + [92] = { 52.2, 74.8, 215, 233 }, + [93] = { 44.9, 74.2, 215, 233 }, + [94] = { 50.1, 74.2, 215, 233 }, + [95] = { 44.3, 74, 215, 233 }, + [96] = { 46.5, 73.6, 215, 233 }, + [97] = { 45.8, 73.3, 215, 233 }, + }, + ["lvl"] = "1-2", + }, + [2956] = { + ["coords"] = { + [1] = { 37.4, 55.7, 17, 375 }, + [2] = { 34.9, 79.9, 215, 375 }, + [3] = { 35.7, 79.1, 215, 375 }, + [4] = { 36.9, 77.2, 215, 375 }, + [5] = { 34.8, 77, 215, 375 }, + [6] = { 37.8, 75.2, 215, 375 }, + [7] = { 35, 74.4, 215, 375 }, + [8] = { 36.9, 73.2, 215, 375 }, + [9] = { 40.9, 73.2, 215, 375 }, + [10] = { 42.2, 72.3, 215, 375 }, + [11] = { 58.4, 72.3, 215, 375 }, + [12] = { 35.6, 71.4, 215, 375 }, + [13] = { 46, 71.2, 215, 375 }, + [14] = { 45.1, 71.1, 215, 375 }, + [15] = { 39.4, 70.2, 215, 375 }, + [16] = { 40.2, 70.2, 215, 375 }, + [17] = { 34.2, 69.9, 215, 375 }, + [18] = { 37, 69.4, 215, 375 }, + [19] = { 41.1, 69, 215, 375 }, + [20] = { 54.6, 68.6, 215, 375 }, + [21] = { 36.4, 68.4, 215, 375 }, + [22] = { 46.6, 68.4, 215, 375 }, + [23] = { 47.9, 68.3, 215, 375 }, + [24] = { 40.8, 68.3, 215, 375 }, + [25] = { 43.5, 67.5, 215, 375 }, + [26] = { 42.8, 67.4, 215, 375 }, + [27] = { 57.8, 67.4, 215, 375 }, + [28] = { 38, 67.1, 215, 375 }, + [29] = { 50.2, 67, 215, 375 }, + [30] = { 58.1, 66.6, 215, 375 }, + [31] = { 39.1, 66.6, 215, 375 }, + [32] = { 42, 66.4, 215, 375 }, + [33] = { 35.1, 66.4, 215, 375 }, + [34] = { 49.1, 66.4, 215, 375 }, + [35] = { 39.6, 66.3, 215, 375 }, + [36] = { 36.8, 65.8, 215, 375 }, + [37] = { 38.2, 63.5, 215, 375 }, + [38] = { 41.6, 63.4, 215, 375 }, + [39] = { 40.4, 62.6, 215, 375 }, + [40] = { 39.5, 61.9, 215, 375 }, + [41] = { 53.9, 61.6, 215, 375 }, + [42] = { 36.3, 61.6, 215, 375 }, + [43] = { 37.6, 61.3, 215, 375 }, + [44] = { 52.5, 60.6, 215, 375 }, + [45] = { 40.8, 59.7, 215, 375 }, + [46] = { 42.1, 59.7, 215, 375 }, + [47] = { 61.7, 59.6, 215, 375 }, + [48] = { 36.8, 58, 215, 375 }, + [49] = { 55.1, 57.8, 215, 375 }, + [50] = { 56.5, 57.7, 215, 375 }, + [51] = { 59.5, 57.1, 215, 375 }, + [52] = { 40, 56.9, 215, 375 }, + [53] = { 35.9, 56.7, 215, 375 }, + [54] = { 39.3, 56.1, 215, 375 }, + [55] = { 35.6, 55.3, 215, 375 }, + [56] = { 43, 55, 215, 375 }, + [57] = { 62.6, 54.8, 215, 375 }, + [58] = { 38.8, 54.3, 215, 375 }, + [59] = { 36.4, 53.9, 215, 375 }, + [60] = { 39.2, 53, 215, 375 }, + [61] = { 35.8, 52.3, 215, 375 }, + [62] = { 39.5, 52.2, 215, 375 }, + [63] = { 43.7, 51.4, 215, 375 }, + [64] = { 40.5, 51.4, 215, 375 }, + [65] = { 37, 51, 215, 375 }, + [66] = { 36.6, 50, 215, 375 }, + [67] = { 35.3, 48.3, 215, 375 }, + [68] = { 58.4, 46.8, 215, 375 }, + [69] = { 55.7, 46.1, 215, 375 }, + [70] = { 48.8, 45.8, 215, 375 }, + [71] = { 45.4, 45.1, 215, 375 }, + [72] = { 52.5, 45.1, 215, 375 }, + [73] = { 35.7, 44.2, 215, 375 }, + [74] = { 43.7, 43.9, 215, 375 }, + [75] = { 42.2, 43.3, 215, 375 }, + [76] = { 57.2, 43, 215, 375 }, + [77] = { 54.7, 42, 215, 375 }, + [78] = { 36.7, 41.2, 215, 375 }, + [79] = { 56, 40.9, 215, 375 }, + [80] = { 44.9, 40.8, 215, 375 }, + [81] = { 49, 40.1, 215, 375 }, + [82] = { 54.5, 39.2, 215, 375 }, + [83] = { 35.1, 39.2, 215, 375 }, + [84] = { 43.5, 38.9, 215, 375 }, + [85] = { 35.6, 38.1, 215, 375 }, + [86] = { 45.8, 37.2, 215, 375 }, + [87] = { 57.4, 36.9, 215, 375 }, + [88] = { 55.1, 36.9, 215, 375 }, + [89] = { 44.8, 36.3, 215, 375 }, + [90] = { 37.6, 35.3, 215, 375 }, + [91] = { 34.3, 34.1, 215, 375 }, + [92] = { 46.5, 31.5, 215, 375 }, + [93] = { 33.3, 31.1, 215, 375 }, + [94] = { 33.7, 30.7, 215, 375 }, + [95] = { 87.9, 63.1, 405, 375 }, + [96] = { 86.6, 59.7, 405, 375 }, + [97] = { 87.1, 59.2, 405, 375 }, + }, + ["lvl"] = "6-7", + }, + [2957] = { + ["coords"] = { + [1] = { 39.3, 58.7, 17, 375 }, + [2] = { 40.3, 58.1, 17, 375 }, + [3] = { 34.5, 44.4, 17, 375 }, + [4] = { 35, 43.3, 17, 375 }, + [5] = { 34.6, 42.1, 17, 375 }, + [6] = { 35, 41.6, 17, 375 }, + [7] = { 36.2, 41.4, 17, 375 }, + [8] = { 37.1, 41.2, 17, 375 }, + [9] = { 36.4, 40.9, 17, 375 }, + [10] = { 36.2, 40.4, 17, 375 }, + [11] = { 35.7, 39.5, 17, 375 }, + [12] = { 35.2, 39, 17, 375 }, + [13] = { 35, 38.4, 17, 375 }, + [14] = { 33.6, 37.8, 17, 375 }, + [15] = { 34.6, 37, 17, 375 }, + [16] = { 32.6, 35, 17, 375 }, + [17] = { 33, 34.3, 17, 375 }, + [18] = { 31.7, 33, 17, 375 }, + [19] = { 31.3, 32, 17, 375 }, + [20] = { 61, 64.5, 215, 375 }, + [21] = { 62.2, 64.4, 215, 375 }, + [22] = { 64.2, 63.5, 215, 375 }, + [23] = { 62.4, 62.8, 215, 375 }, + [24] = { 64.2, 61.7, 215, 375 }, + [25] = { 66.2, 60.7, 215, 375 }, + [26] = { 68.2, 59.6, 215, 375 }, + [27] = { 55.9, 56.4, 215, 375 }, + [28] = { 57.7, 53.8, 215, 375 }, + [29] = { 60.5, 53.6, 215, 375 }, + [30] = { 55.7, 50.6, 215, 375 }, + [31] = { 40.8, 50.1, 215, 375 }, + [32] = { 43.3, 47, 215, 375 }, + [33] = { 38.1, 47, 215, 375 }, + [34] = { 50.6, 46.1, 215, 375 }, + [35] = { 56.8, 44.8, 215, 375 }, + [36] = { 46.1, 44.3, 215, 375 }, + [37] = { 53.9, 44.1, 215, 375 }, + [38] = { 37.1, 43, 215, 375 }, + [39] = { 51.2, 42.2, 215, 375 }, + [40] = { 47.4, 41.9, 215, 375 }, + [41] = { 38.2, 39.8, 215, 375 }, + [42] = { 52.5, 39.7, 215, 375 }, + [43] = { 52, 39.4, 215, 375 }, + [44] = { 49.6, 38.1, 215, 375 }, + [45] = { 47.9, 36.5, 215, 375 }, + [46] = { 52.5, 35.2, 215, 375 }, + [47] = { 52.5, 34.4, 215, 375 }, + [48] = { 53.6, 34.1, 215, 375 }, + [49] = { 55.7, 33.7, 215, 375 }, + [50] = { 50.1, 33.5, 215, 375 }, + [51] = { 56.8, 32.5, 215, 375 }, + [52] = { 52.6, 32.5, 215, 375 }, + [53] = { 46.3, 32.2, 215, 375 }, + [54] = { 44.6, 31.5, 215, 375 }, + [55] = { 54, 31.3, 215, 375 }, + [56] = { 57.8, 30.3, 215, 375 }, + [57] = { 49.2, 29.6, 215, 375 }, + [58] = { 56, 29.5, 215, 375 }, + [59] = { 49.8, 29.3, 215, 375 }, + [60] = { 54, 28.9, 215, 375 }, + [61] = { 44.6, 28.4, 215, 375 }, + [62] = { 57, 27.9, 215, 375 }, + [63] = { 51.5, 27.9, 215, 375 }, + [64] = { 47.3, 27, 215, 375 }, + [65] = { 57.8, 27, 215, 375 }, + [66] = { 60.2, 26.6, 215, 375 }, + [67] = { 51.2, 26.6, 215, 375 }, + [68] = { 33.3, 26.5, 215, 375 }, + [69] = { 62, 26.3, 215, 375 }, + [70] = { 60.7, 25.6, 215, 375 }, + [71] = { 49.3, 25.6, 215, 375 }, + [72] = { 55.7, 25.6, 215, 375 }, + [73] = { 47.7, 25.3, 215, 375 }, + [74] = { 52.5, 24.9, 215, 375 }, + [75] = { 60.3, 24.7, 215, 375 }, + [76] = { 54.5, 24.6, 215, 375 }, + [77] = { 51, 23.6, 215, 375 }, + [78] = { 54.3, 23, 215, 375 }, + [79] = { 59.2, 23, 215, 375 }, + [80] = { 52, 22.1, 215, 375 }, + [81] = { 58.2, 21.9, 215, 375 }, + [82] = { 42.9, 21.5, 215, 375 }, + [83] = { 54.8, 21, 215, 375 }, + [84] = { 57.9, 20.6, 215, 375 }, + [85] = { 53.7, 19.7, 215, 375 }, + [86] = { 55.1, 19.6, 215, 375 }, + [87] = { 38.2, 18.9, 215, 375 }, + [88] = { 39.5, 18.8, 215, 375 }, + [89] = { 47.3, 18.6, 215, 375 }, + [90] = { 51.2, 18.6, 215, 375 }, + [91] = { 42.7, 18.6, 215, 375 }, + [92] = { 45.8, 18.5, 215, 375 }, + [93] = { 53.1, 18.4, 215, 375 }, + [94] = { 34.3, 18.1, 215, 375 }, + [95] = { 57, 17.9, 215, 375 }, + [96] = { 44.2, 17.9, 215, 375 }, + [97] = { 51.1, 17.7, 215, 375 }, + [98] = { 38.4, 17.1, 215, 375 }, + [99] = { 46, 17, 215, 375 }, + [100] = { 48.6, 16.1, 215, 375 }, + [101] = { 37.4, 14.8, 215, 375 }, + [102] = { 48.6, 14.7, 215, 375 }, + [103] = { 53.2, 14.1, 215, 375 }, + [104] = { 46.8, 14, 215, 375 }, + [105] = { 50.5, 14, 215, 375 }, + [106] = { 47.6, 13.7, 215, 375 }, + [107] = { 49.7, 13.5, 215, 375 }, + [108] = { 41.1, 13.2, 215, 375 }, + [109] = { 53.9, 12.6, 215, 375 }, + [110] = { 38.5, 12.5, 215, 375 }, + [111] = { 41.6, 11.5, 215, 375 }, + [112] = { 42.2, 11.2, 215, 375 }, + [113] = { 46.1, 10.7, 215, 375 }, + [114] = { 43.7, 10.2, 215, 375 }, + [115] = { 47.3, 10.2, 215, 375 }, + [116] = { 51.3, 10.1, 215, 375 }, + [117] = { 48.1, 10, 215, 375 }, + [118] = { 39.7, 8.8, 215, 375 }, + [119] = { 44, 8.6, 215, 375 }, + [120] = { 50.6, 8.1, 215, 375 }, + [121] = { 47.1, 7.6, 215, 375 }, + [122] = { 86.6, 54.5, 405, 375 }, + [123] = { 87.9, 44.9, 405, 375 }, + }, + ["lvl"] = "8-9", + }, + [2958] = { + ["coords"] = { + [1] = { 34.1, 79.3, 215, 375 }, + [2] = { 35, 77.9, 215, 375 }, + [3] = { 33.9, 77.5, 215, 375 }, + [4] = { 33.7, 76.3, 215, 375 }, + [5] = { 34.9, 76.1, 215, 375 }, + [6] = { 34.3, 76.1, 215, 375 }, + [7] = { 37.8, 75.6, 215, 375 }, + [8] = { 35.7, 75.2, 215, 375 }, + [9] = { 36.9, 75.2, 215, 375 }, + [10] = { 39, 74, 215, 375 }, + [11] = { 41.9, 73.7, 215, 375 }, + [12] = { 34.3, 73.5, 215, 375 }, + [13] = { 40.2, 73.4, 215, 375 }, + [14] = { 35.6, 73.4, 215, 375 }, + [15] = { 39, 72.4, 215, 375 }, + [16] = { 36.3, 72.4, 215, 375 }, + [17] = { 35.1, 72.4, 215, 375 }, + [18] = { 36.5, 71.5, 215, 375 }, + [19] = { 43.1, 71.3, 215, 375 }, + [20] = { 34.9, 71.3, 215, 375 }, + [21] = { 39.5, 71.2, 215, 375 }, + [22] = { 40.9, 71.2, 215, 375 }, + [23] = { 38.2, 71.2, 215, 375 }, + [24] = { 45.6, 70.4, 215, 375 }, + [25] = { 46.2, 70.4, 215, 375 }, + [26] = { 54.4, 70.4, 215, 375 }, + [27] = { 55.4, 70.4, 215, 375 }, + [28] = { 36.3, 70.4, 215, 375 }, + [29] = { 43.6, 70.4, 215, 375 }, + [30] = { 38.1, 70.3, 215, 375 }, + [31] = { 41.6, 70.3, 215, 375 }, + [32] = { 53.4, 69.8, 215, 375 }, + [33] = { 48.3, 69.8, 215, 375 }, + [34] = { 51.2, 69.5, 215, 375 }, + [35] = { 37.8, 69.5, 215, 375 }, + [36] = { 35.7, 69.4, 215, 375 }, + [37] = { 39.9, 69.4, 215, 375 }, + [38] = { 56.6, 69.3, 215, 375 }, + [39] = { 45.9, 69.3, 215, 375 }, + [40] = { 47.6, 69.1, 215, 375 }, + [41] = { 40, 68.6, 215, 375 }, + [42] = { 35, 68.4, 215, 375 }, + [43] = { 39.3, 68.4, 215, 375 }, + [44] = { 50.6, 68.4, 215, 375 }, + [45] = { 53.4, 68.4, 215, 375 }, + [46] = { 41.6, 68.2, 215, 375 }, + [47] = { 39.5, 67.5, 215, 375 }, + [48] = { 37, 67.5, 215, 375 }, + [49] = { 48.6, 67.5, 215, 375 }, + [50] = { 51.3, 67.5, 215, 375 }, + [51] = { 55.1, 67.4, 215, 375 }, + [52] = { 36.3, 67.4, 215, 375 }, + [53] = { 44.8, 67.3, 215, 375 }, + [54] = { 43, 66.6, 215, 375 }, + [55] = { 51.8, 66.5, 215, 375 }, + [56] = { 40.7, 66.4, 215, 375 }, + [57] = { 37.6, 66.4, 215, 375 }, + [58] = { 56.7, 66.3, 215, 375 }, + [59] = { 40.9, 66.1, 215, 375 }, + [60] = { 55, 65.8, 215, 375 }, + [61] = { 38.3, 65.7, 215, 375 }, + [62] = { 56.4, 65.6, 215, 375 }, + [63] = { 41.5, 65.6, 215, 375 }, + [64] = { 47.5, 65.4, 215, 375 }, + [65] = { 35.7, 65.4, 215, 375 }, + [66] = { 49.8, 65.3, 215, 375 }, + [67] = { 36.6, 65.2, 215, 375 }, + [68] = { 36.2, 64.7, 215, 375 }, + [69] = { 50.7, 64.6, 215, 375 }, + [70] = { 37.5, 64.4, 215, 375 }, + [71] = { 39, 64.2, 215, 375 }, + [72] = { 41.4, 63.9, 215, 375 }, + [73] = { 42, 63.8, 215, 375 }, + [74] = { 56.4, 63.7, 215, 375 }, + [75] = { 39.8, 63.7, 215, 375 }, + [76] = { 37.2, 63.6, 215, 375 }, + [77] = { 38.7, 63, 215, 375 }, + [78] = { 55.8, 62.7, 215, 375 }, + [79] = { 37.3, 62.5, 215, 375 }, + [80] = { 40.8, 62, 215, 375 }, + [81] = { 38.1, 61.8, 215, 375 }, + [82] = { 42.2, 61.7, 215, 375 }, + [83] = { 36.4, 61, 215, 375 }, + [84] = { 40.8, 60.7, 215, 375 }, + [85] = { 41.5, 60.6, 215, 375 }, + [86] = { 36.4, 59.7, 215, 375 }, + [87] = { 36.8, 59.4, 215, 375 }, + [88] = { 35.6, 59.3, 215, 375 }, + [89] = { 54.3, 59.3, 215, 375 }, + [90] = { 40, 58.7, 215, 375 }, + [91] = { 37.8, 58.6, 215, 375 }, + [92] = { 38.2, 58.1, 215, 375 }, + [93] = { 53.9, 57.7, 215, 375 }, + [94] = { 40.2, 57.7, 215, 375 }, + [95] = { 36, 57.7, 215, 375 }, + [96] = { 39.6, 57.3, 215, 375 }, + [97] = { 37.8, 56.6, 215, 375 }, + [98] = { 36.9, 56.4, 215, 375 }, + [99] = { 35.8, 56, 215, 375 }, + [100] = { 42.2, 55.7, 215, 375 }, + [101] = { 38.2, 55.7, 215, 375 }, + [102] = { 39.6, 55.6, 215, 375 }, + [103] = { 42.2, 55, 215, 375 }, + [104] = { 37.6, 54.8, 215, 375 }, + [105] = { 40.2, 54.7, 215, 375 }, + [106] = { 40.8, 54, 215, 375 }, + [107] = { 35.1, 53.7, 215, 375 }, + [108] = { 39.3, 53.6, 215, 375 }, + [109] = { 38.2, 53.5, 215, 375 }, + [110] = { 39.9, 52.6, 215, 375 }, + [111] = { 34.9, 52.6, 215, 375 }, + [112] = { 36.3, 52.2, 215, 375 }, + [113] = { 38.1, 52.2, 215, 375 }, + [114] = { 36.5, 51.9, 215, 375 }, + [115] = { 40.8, 51.8, 215, 375 }, + [116] = { 41.6, 51.8, 215, 375 }, + [117] = { 39.2, 50.9, 215, 375 }, + [118] = { 39, 49.9, 215, 375 }, + }, + ["lvl"] = "5-6", + }, + [2959] = { + ["coords"] = { + [1] = { 36.6, 56.3, 17, 375 }, + [2] = { 37.6, 54.9, 17, 375 }, + [3] = { 35.8, 51, 17, 375 }, + [4] = { 57.8, 73, 215, 375 }, + [5] = { 56.5, 71.3, 215, 375 }, + [6] = { 59.1, 71.1, 215, 375 }, + [7] = { 57.7, 70.4, 215, 375 }, + [8] = { 61.8, 69.3, 215, 375 }, + [9] = { 57.9, 68.2, 215, 375 }, + [10] = { 61.1, 67.7, 215, 375 }, + [11] = { 59, 67.2, 215, 375 }, + [12] = { 60.9, 66.5, 215, 375 }, + [13] = { 59.7, 65.9, 215, 375 }, + [14] = { 57.2, 65.6, 215, 375 }, + [15] = { 58.9, 64.6, 215, 375 }, + [16] = { 60.5, 63.3, 215, 375 }, + [17] = { 58.6, 62.5, 215, 375 }, + [18] = { 57, 62.5, 215, 375 }, + [19] = { 60.3, 61.7, 215, 375 }, + [20] = { 60.6, 60.7, 215, 375 }, + [21] = { 56.4, 59.6, 215, 375 }, + [22] = { 60.2, 59.4, 215, 375 }, + [23] = { 60.9, 58.8, 215, 375 }, + [24] = { 56.9, 58.6, 215, 375 }, + [25] = { 57.6, 58, 215, 375 }, + [26] = { 55.8, 57.9, 215, 375 }, + [27] = { 60.9, 56, 215, 375 }, + [28] = { 57.2, 56, 215, 375 }, + [29] = { 56, 55.8, 215, 375 }, + [30] = { 60.3, 55.4, 215, 375 }, + [31] = { 58.8, 55, 215, 375 }, + [32] = { 63, 53.2, 215, 375 }, + [33] = { 42.8, 53, 215, 375 }, + [34] = { 58.8, 52.7, 215, 375 }, + [35] = { 58.8, 52.1, 215, 375 }, + [36] = { 41.7, 52, 215, 375 }, + [37] = { 35.4, 51.7, 215, 375 }, + [38] = { 57.5, 51.6, 215, 375 }, + [39] = { 41.8, 51, 215, 375 }, + [40] = { 35.5, 51, 215, 375 }, + [41] = { 58.2, 50.8, 215, 375 }, + [42] = { 42.8, 50.4, 215, 375 }, + [43] = { 55.2, 50.2, 215, 375 }, + [44] = { 35.4, 50, 215, 375 }, + [45] = { 47.4, 50, 215, 375 }, + [46] = { 40.1, 49.7, 215, 375 }, + [47] = { 41.5, 49.2, 215, 375 }, + [48] = { 45, 49.1, 215, 375 }, + [49] = { 49.3, 49, 215, 375 }, + [50] = { 46.6, 48.9, 215, 375 }, + [51] = { 55.4, 48.2, 215, 375 }, + [52] = { 49.9, 48, 215, 375 }, + [53] = { 51.4, 48, 215, 375 }, + [54] = { 46.5, 47.9, 215, 375 }, + [55] = { 43.2, 47.9, 215, 375 }, + [56] = { 47.9, 47.8, 215, 375 }, + [57] = { 44.6, 47.7, 215, 375 }, + [58] = { 57.4, 47.6, 215, 375 }, + [59] = { 42.7, 47.3, 215, 375 }, + [60] = { 57.6, 47.2, 215, 375 }, + [61] = { 49.3, 47.1, 215, 375 }, + [62] = { 46.8, 47, 215, 375 }, + [63] = { 47.8, 46.9, 215, 375 }, + [64] = { 51, 46.6, 215, 375 }, + [65] = { 43.4, 46.6, 215, 375 }, + [66] = { 57.6, 46.4, 215, 375 }, + [67] = { 51.9, 46.3, 215, 375 }, + [68] = { 57.1, 46.1, 215, 375 }, + [69] = { 42.2, 46, 215, 375 }, + [70] = { 59.4, 45.5, 215, 375 }, + [71] = { 55.9, 45.2, 215, 375 }, + [72] = { 41.4, 45.2, 215, 375 }, + [73] = { 53.8, 45.1, 215, 375 }, + [74] = { 46.7, 45.1, 215, 375 }, + [75] = { 50.8, 45.1, 215, 375 }, + [76] = { 53.5, 45, 215, 375 }, + [77] = { 36.3, 45, 215, 375 }, + [78] = { 52.4, 45, 215, 375 }, + [79] = { 58, 44.6, 215, 375 }, + [80] = { 57.1, 44.5, 215, 375 }, + [81] = { 52.6, 44.4, 215, 375 }, + [82] = { 55, 44.3, 215, 375 }, + [83] = { 54.5, 44.2, 215, 375 }, + [84] = { 51.2, 44.2, 215, 375 }, + [85] = { 55.8, 44, 215, 375 }, + [86] = { 41.1, 44, 215, 375 }, + [87] = { 49.9, 43.2, 215, 375 }, + [88] = { 52.6, 43.2, 215, 375 }, + [89] = { 51.8, 43.2, 215, 375 }, + [90] = { 42.2, 43.2, 215, 375 }, + [91] = { 49, 43.1, 215, 375 }, + [92] = { 35, 43, 215, 375 }, + [93] = { 58.1, 42.8, 215, 375 }, + [94] = { 54.4, 42.6, 215, 375 }, + [95] = { 39.5, 42.4, 215, 375 }, + [96] = { 40.9, 42.2, 215, 375 }, + [97] = { 48, 42.2, 215, 375 }, + [98] = { 43.4, 42.1, 215, 375 }, + [99] = { 42.1, 41.7, 215, 375 }, + [100] = { 42.8, 41.5, 215, 375 }, + [101] = { 54.1, 41.3, 215, 375 }, + [102] = { 42, 41.3, 215, 375 }, + [103] = { 44.1, 41.1, 215, 375 }, + [104] = { 53.8, 40.5, 215, 375 }, + [105] = { 39.5, 40.3, 215, 375 }, + [106] = { 41.7, 40.2, 215, 375 }, + [107] = { 44.8, 40.1, 215, 375 }, + [108] = { 51.9, 40, 215, 375 }, + [109] = { 38.3, 40, 215, 375 }, + [110] = { 45.4, 40, 215, 375 }, + [111] = { 50.5, 39.9, 215, 375 }, + [112] = { 49.5, 39.9, 215, 375 }, + [113] = { 41.6, 39.8, 215, 375 }, + [114] = { 38.9, 39.6, 215, 375 }, + [115] = { 48, 39.2, 215, 375 }, + [116] = { 51.5, 38.9, 215, 375 }, + [117] = { 44.8, 38.3, 215, 375 }, + [118] = { 41.4, 37.9, 215, 375 }, + [119] = { 47, 37.8, 215, 375 }, + [120] = { 48.6, 37.8, 215, 375 }, + [121] = { 54.5, 37.3, 215, 375 }, + [122] = { 50.2, 36.9, 215, 375 }, + [123] = { 35.7, 36.3, 215, 375 }, + [124] = { 49.3, 36.2, 215, 375 }, + [125] = { 37.1, 35.9, 215, 375 }, + [126] = { 34.7, 35.8, 215, 375 }, + [127] = { 45.2, 35.5, 215, 375 }, + [128] = { 37.5, 35.4, 215, 375 }, + [129] = { 46.7, 35.4, 215, 375 }, + [130] = { 37.1, 34.3, 215, 375 }, + [131] = { 45.6, 34.2, 215, 375 }, + [132] = { 51.2, 34.1, 215, 375 }, + [133] = { 46.1, 33.6, 215, 375 }, + [134] = { 35.9, 33.4, 215, 375 }, + [135] = { 45.4, 33.2, 215, 375 }, + [136] = { 47.4, 32.6, 215, 375 }, + [137] = { 35.6, 32.5, 215, 375 }, + [138] = { 48.7, 31.1, 215, 375 }, + [139] = { 34.2, 31.1, 215, 375 }, + [140] = { 33.7, 28.7, 215, 375 }, + [141] = { 34.3, 27.7, 215, 375 }, + [142] = { 35.1, 25.2, 215, 375 }, + [143] = { 35.2, 24.9, 215, 375 }, + [144] = { 88.3, 65.1, 405, 375 }, + [145] = { 89.3, 61.4, 405, 375 }, + [146] = { 87.7, 59.7, 405, 375 }, + [147] = { 87.2, 57, 405, 375 }, + [148] = { 87.9, 55.9, 405, 375 }, + [149] = { 88.7, 53, 405, 375 }, + [150] = { 88.8, 52.6, 405, 375 }, + }, + ["lvl"] = "7-8", + }, + [2960] = { + ["coords"] = { + [1] = { 38.5, 62.3, 17, 375 }, + [2] = { 38.7, 62.2, 17, 375 }, + [3] = { 38.5, 62, 17, 375 }, + [4] = { 39.5, 61.6, 17, 375 }, + [5] = { 39.2, 61.3, 17, 375 }, + [6] = { 38.9, 61.1, 17, 375 }, + [7] = { 39.6, 60.8, 17, 375 }, + [8] = { 39.2, 60.7, 17, 375 }, + [9] = { 39.5, 60.1, 17, 375 }, + [10] = { 38.8, 59.9, 17, 375 }, + [11] = { 39.6, 58.5, 17, 375 }, + [12] = { 39.1, 58.2, 17, 375 }, + [13] = { 38.2, 58.2, 17, 375 }, + [14] = { 37.5, 58.2, 17, 375 }, + [15] = { 38.4, 57.8, 17, 375 }, + [16] = { 39.2, 57.7, 17, 375 }, + [17] = { 39.5, 57.7, 17, 375 }, + [18] = { 37.7, 57.7, 17, 375 }, + [19] = { 39.6, 57.4, 17, 375 }, + [20] = { 38.9, 56.9, 17, 375 }, + [21] = { 39.3, 56.6, 17, 375 }, + [22] = { 37.1, 56.4, 17, 375 }, + [23] = { 37.8, 56.4, 17, 375 }, + [24] = { 34.8, 43.8, 17, 375 }, + [25] = { 35.6, 42.6, 17, 375 }, + [26] = { 34.7, 42.5, 17, 375 }, + [27] = { 34.5, 42.3, 17, 375 }, + [28] = { 35.2, 42.1, 17, 375 }, + [29] = { 36.6, 42, 17, 375 }, + [30] = { 34.6, 40.9, 17, 375 }, + [31] = { 34.8, 40.5, 17, 375 }, + [32] = { 34.9, 39.3, 17, 375 }, + [33] = { 34.6, 38.4, 17, 375 }, + [34] = { 32.6, 34.5, 17, 375 }, + [35] = { 31.7, 32.5, 17, 375 }, + [36] = { 30.6, 31.8, 17, 375 }, + [37] = { 63.5, 69.2, 215, 375 }, + [38] = { 61.7, 68.3, 215, 375 }, + [39] = { 62.9, 68.1, 215, 375 }, + [40] = { 64.7, 67.8, 215, 375 }, + [41] = { 61.5, 67.8, 215, 375 }, + [42] = { 65.2, 67.7, 215, 375 }, + [43] = { 64.8, 67.2, 215, 375 }, + [44] = { 66.8, 66.5, 215, 375 }, + [45] = { 62.2, 66.3, 215, 375 }, + [46] = { 66.1, 65.8, 215, 375 }, + [47] = { 62.3, 65.6, 215, 375 }, + [48] = { 62.9, 65.5, 215, 375 }, + [49] = { 65.5, 65.4, 215, 375 }, + [50] = { 64.2, 65.4, 215, 375 }, + [51] = { 67, 64.8, 215, 375 }, + [52] = { 66.1, 64.7, 215, 375 }, + [53] = { 66.8, 63.6, 215, 375 }, + [54] = { 65.3, 63.2, 215, 375 }, + [55] = { 61.6, 61.6, 215, 375 }, + [56] = { 62.9, 61.6, 215, 375 }, + [57] = { 64.6, 61, 215, 375 }, + [58] = { 63.5, 60.6, 215, 375 }, + [59] = { 66.9, 60.4, 215, 375 }, + [60] = { 65.9, 59.7, 215, 375 }, + [61] = { 64.2, 59.7, 215, 375 }, + [62] = { 62.8, 59.7, 215, 375 }, + [63] = { 64.5, 59, 215, 375 }, + [64] = { 66.2, 58.8, 215, 375 }, + [65] = { 66.7, 58.8, 215, 375 }, + [66] = { 63.2, 58.7, 215, 375 }, + [67] = { 62.3, 58.7, 215, 375 }, + [68] = { 66.9, 58.1, 215, 375 }, + [69] = { 62.3, 57.7, 215, 375 }, + [70] = { 61.6, 57.7, 215, 375 }, + [71] = { 65.6, 57.3, 215, 375 }, + [72] = { 66.2, 56.7, 215, 375 }, + [73] = { 62.1, 56.2, 215, 375 }, + [74] = { 63.4, 56.2, 215, 375 }, + [75] = { 54.1, 33.9, 215, 375 }, + [76] = { 53.1, 32.5, 215, 375 }, + [77] = { 50.5, 32.2, 215, 375 }, + [78] = { 56, 31.3, 215, 375 }, + [79] = { 57.4, 31.3, 215, 375 }, + [80] = { 49.1, 30.7, 215, 375 }, + [81] = { 44.4, 30.3, 215, 375 }, + [82] = { 44.1, 30.2, 215, 375 }, + [83] = { 50.5, 29.6, 215, 375 }, + [84] = { 53.3, 29.4, 215, 375 }, + [85] = { 45.4, 29.1, 215, 375 }, + [86] = { 59, 29, 215, 375 }, + [87] = { 46.5, 28.8, 215, 375 }, + [88] = { 57.3, 28.7, 215, 375 }, + [89] = { 48, 28.5, 215, 375 }, + [90] = { 56.8, 28.4, 215, 375 }, + [91] = { 45.9, 28, 215, 375 }, + [92] = { 58.2, 27.9, 215, 375 }, + [93] = { 61, 27.8, 215, 375 }, + [94] = { 45.5, 27.3, 215, 375 }, + [95] = { 49.1, 27.2, 215, 375 }, + [96] = { 46.2, 26.6, 215, 375 }, + [97] = { 45.4, 26.6, 215, 375 }, + [98] = { 57.1, 25.6, 215, 375 }, + [99] = { 57.4, 24.8, 215, 375 }, + [100] = { 43.5, 24.7, 215, 375 }, + [101] = { 56.3, 24.6, 215, 375 }, + [102] = { 53.9, 24.1, 215, 375 }, + [103] = { 48.8, 23.7, 215, 375 }, + [104] = { 52.2, 23.2, 215, 375 }, + [105] = { 57.6, 22.4, 215, 375 }, + [106] = { 51, 21.9, 215, 375 }, + [107] = { 54.6, 21.5, 215, 375 }, + [108] = { 56.2, 20.9, 215, 375 }, + [109] = { 57.1, 20.8, 215, 375 }, + [110] = { 52.7, 20.7, 215, 375 }, + [111] = { 32.3, 20.1, 215, 375 }, + [112] = { 52, 19.9, 215, 375 }, + [113] = { 50.5, 19.7, 215, 375 }, + [114] = { 45.3, 18.8, 215, 375 }, + [115] = { 40.7, 18.6, 215, 375 }, + [116] = { 38.9, 17.8, 215, 375 }, + [117] = { 45.3, 17.7, 215, 375 }, + [118] = { 52.6, 17.4, 215, 375 }, + [119] = { 50.9, 16.6, 215, 375 }, + [120] = { 45.3, 15.9, 215, 375 }, + [121] = { 36.3, 15.8, 215, 375 }, + [122] = { 49.4, 15.8, 215, 375 }, + [123] = { 37.2, 15.5, 215, 375 }, + [124] = { 52.3, 15.3, 215, 375 }, + [125] = { 42.9, 14.7, 215, 375 }, + [126] = { 50, 14.2, 215, 375 }, + [127] = { 51.1, 14.2, 215, 375 }, + [128] = { 49.2, 13.9, 215, 375 }, + [129] = { 53.1, 13, 215, 375 }, + [130] = { 50.6, 12.9, 215, 375 }, + [131] = { 49.2, 12.3, 215, 375 }, + [132] = { 49.9, 11.8, 215, 375 }, + [133] = { 40.8, 11.1, 215, 375 }, + [134] = { 42.7, 10.1, 215, 375 }, + [135] = { 40.1, 10, 215, 375 }, + [136] = { 51.3, 9.1, 215, 375 }, + [137] = { 43.4, 9, 215, 375 }, + [138] = { 41.5, 8.1, 215, 375 }, + [139] = { 49.2, 7.7, 215, 375 }, + [140] = { 85.5, 47.2, 405, 375 }, + [141] = { 67.5, 38.8, 1638, 375 }, + }, + ["lvl"] = "9-10", + }, + [2961] = { + ["coords"] = { + [1] = { 56.1, 94.7, 215, 233 }, + [2] = { 44.2, 94.5, 215, 233 }, + [3] = { 45, 94.2, 215, 233 }, + [4] = { 55.8, 94, 215, 233 }, + [5] = { 56.5, 93.8, 215, 233 }, + [6] = { 57.7, 93.8, 215, 233 }, + [7] = { 44.8, 92.8, 215, 233 }, + [8] = { 47.4, 92.7, 215, 233 }, + [9] = { 56.4, 92.7, 215, 233 }, + [10] = { 53.2, 92.5, 215, 233 }, + [11] = { 52, 92.4, 215, 233 }, + [12] = { 57.9, 92.3, 215, 233 }, + [13] = { 43.7, 92.1, 215, 233 }, + [14] = { 48.5, 92.1, 215, 233 }, + [15] = { 46.8, 92.1, 215, 233 }, + [16] = { 45.1, 91.9, 215, 233 }, + [17] = { 44.9, 91.8, 215, 233 }, + [18] = { 55.8, 91.8, 215, 233 }, + [19] = { 47.9, 91.8, 215, 233 }, + [20] = { 54.6, 91.6, 215, 233 }, + [21] = { 49.2, 91.6, 215, 233 }, + [22] = { 44.8, 91.5, 215, 233 }, + [23] = { 48.6, 91.4, 215, 233 }, + [24] = { 43.2, 91.3, 215, 233 }, + [25] = { 53.1, 91.3, 215, 233 }, + [26] = { 51.2, 91.2, 215, 233 }, + [27] = { 49.4, 91.1, 215, 233 }, + [28] = { 56.5, 91.1, 215, 233 }, + [29] = { 53.6, 90.9, 215, 233 }, + [30] = { 52.3, 90.8, 215, 233 }, + [31] = { 53.9, 90.7, 215, 233 }, + [32] = { 57.6, 90.7, 215, 233 }, + [33] = { 41.6, 90.7, 215, 233 }, + [34] = { 47.9, 90.6, 215, 233 }, + [35] = { 43.8, 90.5, 215, 233 }, + [36] = { 55.1, 90.5, 215, 233 }, + [37] = { 50, 90.4, 215, 233 }, + [38] = { 55.9, 90.4, 215, 233 }, + [39] = { 46, 90.4, 215, 233 }, + [40] = { 49.1, 90.1, 215, 233 }, + [41] = { 43.6, 90, 215, 233 }, + [42] = { 53.7, 89.9, 215, 233 }, + [43] = { 43.4, 89.9, 215, 233 }, + [44] = { 51.8, 89.9, 215, 233 }, + [45] = { 51.9, 89.8, 215, 233 }, + [46] = { 46, 89.8, 215, 233 }, + [47] = { 47.3, 89.8, 215, 233 }, + [48] = { 50.5, 89.8, 215, 233 }, + [49] = { 48.5, 89.8, 215, 233 }, + [50] = { 53.3, 89.8, 215, 233 }, + [51] = { 45.7, 89.6, 215, 233 }, + [52] = { 53.4, 89.3, 215, 233 }, + [53] = { 54.8, 89.2, 215, 233 }, + [54] = { 52.5, 89.2, 215, 233 }, + [55] = { 53.9, 89.1, 215, 233 }, + [56] = { 48.7, 89, 215, 233 }, + [57] = { 51.1, 89, 215, 233 }, + [58] = { 40.8, 88.9, 215, 233 }, + [59] = { 42.1, 88.8, 215, 233 }, + [60] = { 45.4, 88.8, 215, 233 }, + [61] = { 41.6, 88.7, 215, 233 }, + [62] = { 43.3, 88.5, 215, 233 }, + [63] = { 44.8, 88.3, 215, 233 }, + [64] = { 42, 87.9, 215, 233 }, + [65] = { 49.8, 87.7, 215, 233 }, + [66] = { 42.7, 87.7, 215, 233 }, + [67] = { 41.6, 87.4, 215, 233 }, + [68] = { 42.4, 85.9, 215, 233 }, + [69] = { 42.1, 85, 215, 233 }, + [70] = { 41.5, 84.2, 215, 233 }, + [71] = { 42.8, 83.6, 215, 233 }, + [72] = { 40.1, 83.3, 215, 233 }, + [73] = { 40.8, 82.1, 215, 233 }, + }, + ["lvl"] = "3", + }, + [2962] = { + ["coords"] = { + [1] = { 39.9, 64.5, 17, 375 }, + [2] = { 39.6, 63.9, 17, 375 }, + [3] = { 39.5, 63.5, 17, 375 }, + [4] = { 39.9, 63.1, 17, 375 }, + [5] = { 39.5, 62.6, 17, 375 }, + [6] = { 63.7, 72.4, 215, 375 }, + [7] = { 67.5, 72.2, 215, 375 }, + [8] = { 62.5, 71.5, 215, 375 }, + [9] = { 61.6, 71.3, 215, 375 }, + [10] = { 62.3, 71.3, 215, 375 }, + [11] = { 67, 71.1, 215, 375 }, + [12] = { 64.9, 71, 215, 375 }, + [13] = { 62.9, 70.5, 215, 375 }, + [14] = { 63.6, 70.4, 215, 375 }, + [15] = { 64.1, 70.4, 215, 375 }, + [16] = { 66.8, 70.3, 215, 375 }, + [17] = { 66.1, 70.2, 215, 375 }, + [18] = { 67.5, 69.5, 215, 375 }, + [19] = { 66.2, 69.4, 215, 375 }, + [20] = { 64.8, 69.4, 215, 375 }, + [21] = { 65.5, 68.4, 215, 375 }, + [22] = { 66.7, 68.4, 215, 375 }, + [23] = { 33.7, 43.2, 215, 375 }, + [24] = { 32.4, 43, 215, 375 }, + [25] = { 31.1, 42.2, 215, 375 }, + [26] = { 31.8, 42.2, 215, 375 }, + [27] = { 32.4, 42.2, 215, 375 }, + [28] = { 34.3, 42.1, 215, 375 }, + [29] = { 32.4, 41.1, 215, 375 }, + [30] = { 31.1, 41.1, 215, 375 }, + [31] = { 33.6, 41.1, 215, 375 }, + [32] = { 31.7, 40.3, 215, 375 }, + [33] = { 87.2, 73.5, 405, 375 }, + [34] = { 85.6, 73.4, 405, 375 }, + [35] = { 84.2, 72.4, 405, 375 }, + [36] = { 84.9, 72.4, 405, 375 }, + [37] = { 85.6, 72.4, 405, 375 }, + [38] = { 87.8, 72.3, 405, 375 }, + [39] = { 85.7, 71.1, 405, 375 }, + [40] = { 84.1, 71.1, 405, 375 }, + [41] = { 87, 71.1, 405, 375 }, + [42] = { 84.9, 70.2, 405, 375 }, + }, + ["lvl"] = "7-8", + }, + [2963] = { + ["coords"] = { + [1] = { 39.9, 64.1, 17, 375 }, + [2] = { 40.1, 64, 17, 375 }, + [3] = { 39.9, 63.6, 17, 375 }, + [4] = { 39.6, 63.2, 17, 375 }, + [5] = { 40.2, 63.2, 17, 375 }, + [6] = { 61.7, 72.4, 215, 375 }, + [7] = { 67.6, 71.4, 215, 375 }, + [8] = { 63.6, 71.3, 215, 375 }, + [9] = { 68, 71.2, 215, 375 }, + [10] = { 65.5, 70.5, 215, 375 }, + [11] = { 67.5, 70.4, 215, 375 }, + [12] = { 66.9, 69.6, 215, 375 }, + [13] = { 68.1, 69.5, 215, 375 }, + [14] = { 65.3, 69.1, 215, 375 }, + [15] = { 66.1, 68.4, 215, 375 }, + [16] = { 34.4, 44, 215, 375 }, + [17] = { 34.2, 43.1, 215, 375 }, + [18] = { 33.1, 43, 215, 375 }, + [19] = { 31.9, 43, 215, 375 }, + [20] = { 33, 42.2, 215, 375 }, + [21] = { 33.7, 42.2, 215, 375 }, + [22] = { 31.8, 41.3, 215, 375 }, + [23] = { 34.3, 41.2, 215, 375 }, + [24] = { 33.7, 40.3, 215, 375 }, + [25] = { 87.9, 74.5, 405, 375 }, + [26] = { 87.7, 73.5, 405, 375 }, + [27] = { 86.4, 73.3, 405, 375 }, + [28] = { 85, 73.3, 405, 375 }, + [29] = { 86.4, 72.4, 405, 375 }, + [30] = { 87.1, 72.4, 405, 375 }, + [31] = { 85, 71.3, 405, 375 }, + [32] = { 87.8, 71.2, 405, 375 }, + [33] = { 87.2, 70.2, 405, 375 }, + }, + ["lvl"] = "8-9", + }, + [2964] = { + ["coords"] = { + [1] = { 33.9, 36.5, 17, 375 }, + [2] = { 33.6, 36.1, 17, 375 }, + [3] = { 34.3, 35.9, 17, 375 }, + [4] = { 34.3, 35.5, 17, 375 }, + [5] = { 34.3, 34.9, 17, 375 }, + [6] = { 33.3, 33.9, 17, 375 }, + [7] = { 33.7, 33.8, 17, 375 }, + [8] = { 33.2, 33.3, 17, 375 }, + [9] = { 31.9, 31.5, 17, 375 }, + [10] = { 31.6, 31.5, 17, 375 }, + [11] = { 32.8, 31, 17, 375 }, + [12] = { 31.9, 30.6, 17, 375 }, + [13] = { 31.1, 28.5, 215, 375 }, + [14] = { 29.7, 27.5, 215, 375 }, + [15] = { 30.5, 26.5, 215, 375 }, + [16] = { 29.7, 26.4, 215, 375 }, + [17] = { 30.4, 25.7, 215, 375 }, + [18] = { 29.2, 25.7, 215, 375 }, + [19] = { 31.1, 25.6, 215, 375 }, + [20] = { 29.7, 24.7, 215, 375 }, + [21] = { 32.4, 24.6, 215, 375 }, + [22] = { 29.8, 23.8, 215, 375 }, + [23] = { 31.8, 23.7, 215, 375 }, + [24] = { 31.1, 23.6, 215, 375 }, + [25] = { 31.6, 22.8, 215, 375 }, + [26] = { 30.4, 22.8, 215, 375 }, + [27] = { 29.2, 22.8, 215, 375 }, + [28] = { 31.1, 21.6, 215, 375 }, + [29] = { 29.7, 21.6, 215, 375 }, + [30] = { 28.4, 21.3, 215, 375 }, + [31] = { 29.2, 21, 215, 375 }, + [32] = { 31.8, 20.8, 215, 375 }, + [33] = { 30.5, 20.7, 215, 375 }, + [34] = { 31.1, 19.6, 215, 375 }, + [35] = { 55.8, 16.9, 215, 375 }, + [36] = { 55, 16.1, 215, 375 }, + [37] = { 56.4, 15.8, 215, 375 }, + [38] = { 56.4, 15, 215, 375 }, + [39] = { 56.5, 13.8, 215, 375 }, + [40] = { 35, 13.7, 215, 375 }, + [41] = { 36.9, 12, 215, 375 }, + [42] = { 35.8, 11.9, 215, 375 }, + [43] = { 54.5, 11.9, 215, 375 }, + [44] = { 55.2, 11.7, 215, 375 }, + [45] = { 36.9, 11, 215, 375 }, + [46] = { 54.4, 10.7, 215, 375 }, + [47] = { 36.3, 9.9, 215, 375 }, + [48] = { 38.8, 9, 215, 375 }, + [49] = { 38.1, 9, 215, 375 }, + [50] = { 37.9, 8.1, 215, 375 }, + [51] = { 39.5, 8, 215, 375 }, + [52] = { 51.8, 7.2, 215, 375 }, + [53] = { 51.1, 7.2, 215, 375 }, + [54] = { 40.2, 7.1, 215, 375 }, + [55] = { 39.5, 6.1, 215, 375 }, + [56] = { 53.4, 6, 215, 375 }, + [57] = { 38.2, 5.9, 215, 375 }, + [58] = { 51.8, 5.4, 215, 375 }, + [59] = { 40.1, 5.3, 215, 375 }, + [60] = { 84.1, 56.7, 405, 375 }, + [61] = { 82.6, 55.6, 405, 375 }, + [62] = { 83.4, 54.5, 405, 375 }, + [63] = { 82.6, 54.3, 405, 375 }, + [64] = { 83.3, 53.6, 405, 375 }, + [65] = { 82, 53.6, 405, 375 }, + [66] = { 84.2, 53.4, 405, 375 }, + [67] = { 82.5, 52.4, 405, 375 }, + [68] = { 85.6, 52.3, 405, 375 }, + [69] = { 82.6, 51.4, 405, 375 }, + [70] = { 84.9, 51.2, 405, 375 }, + [71] = { 84.1, 51.2, 405, 375 }, + [72] = { 84.7, 50.3, 405, 375 }, + [73] = { 83.3, 50.3, 405, 375 }, + [74] = { 81.9, 50.2, 405, 375 }, + [75] = { 84.1, 48.9, 405, 375 }, + [76] = { 82.6, 48.8, 405, 375 }, + [77] = { 81.1, 48.5, 405, 375 }, + [78] = { 82, 48.2, 405, 375 }, + [79] = { 84.9, 48, 405, 375 }, + [80] = { 83.5, 47.8, 405, 375 }, + [81] = { 84.1, 46.6, 405, 375 }, + [82] = { 88.6, 39.8, 405, 375 }, + [83] = { 90, 35.4, 405, 375 }, + }, + ["lvl"] = "9-10", + }, + [2965] = { + ["coords"] = { + [1] = { 34, 36, 17, 375 }, + [2] = { 34.2, 34.5, 17, 375 }, + [3] = { 33.9, 34.1, 17, 375 }, + [4] = { 33.6, 33.5, 17, 375 }, + [5] = { 33.6, 32.9, 17, 375 }, + [6] = { 33.6, 32.6, 17, 375 }, + [7] = { 32, 31, 17, 375 }, + [8] = { 31.6, 31, 17, 375 }, + [9] = { 32.4, 30.7, 17, 375 }, + [10] = { 31.6, 30.6, 17, 375 }, + [11] = { 31.3, 30.6, 17, 375 }, + [12] = { 31.7, 28.3, 215, 375 }, + [13] = { 31.1, 27.7, 215, 375 }, + [14] = { 30.3, 27.6, 215, 375 }, + [15] = { 32.4, 27.6, 215, 375 }, + [16] = { 31.7, 26.6, 215, 375 }, + [17] = { 31.1, 26.5, 215, 375 }, + [18] = { 29.7, 25.7, 215, 375 }, + [19] = { 32.4, 25.6, 215, 375 }, + [20] = { 30.4, 24.7, 215, 375 }, + [21] = { 33, 24.6, 215, 375 }, + [22] = { 31.8, 24.6, 215, 375 }, + [23] = { 31.1, 24.6, 215, 375 }, + [24] = { 30.4, 23.6, 215, 375 }, + [25] = { 32.4, 23.6, 215, 375 }, + [26] = { 31.1, 22.8, 215, 375 }, + [27] = { 29.8, 22.6, 215, 375 }, + [28] = { 31.8, 21.7, 215, 375 }, + [29] = { 29, 21.7, 215, 375 }, + [30] = { 30.3, 21.7, 215, 375 }, + [31] = { 32.5, 21.6, 215, 375 }, + [32] = { 29.9, 20.8, 215, 375 }, + [33] = { 30.3, 19.7, 215, 375 }, + [34] = { 29.7, 19.6, 215, 375 }, + [35] = { 55.8, 15.9, 215, 375 }, + [36] = { 56.3, 12.9, 215, 375 }, + [37] = { 35.2, 12.8, 215, 375 }, + [38] = { 55.7, 12.3, 215, 375 }, + [39] = { 36.3, 12, 215, 375 }, + [40] = { 55.1, 11.1, 215, 375 }, + [41] = { 36.3, 10.9, 215, 375 }, + [42] = { 37.6, 10.1, 215, 375 }, + [43] = { 55.2, 9.9, 215, 375 }, + [44] = { 36.8, 9.3, 215, 375 }, + [45] = { 55, 9.2, 215, 375 }, + [46] = { 40.1, 8.1, 215, 375 }, + [47] = { 38.2, 7.9, 215, 375 }, + [48] = { 39.3, 7.1, 215, 375 }, + [49] = { 37.9, 7, 215, 375 }, + [50] = { 40.2, 6.2, 215, 375 }, + [51] = { 52, 6.1, 215, 375 }, + [52] = { 51.2, 6, 215, 375 }, + [53] = { 52.7, 5.6, 215, 375 }, + [54] = { 38.8, 5.5, 215, 375 }, + [55] = { 51.2, 5.3, 215, 375 }, + [56] = { 40.8, 5.2, 215, 375 }, + [57] = { 50.6, 5.2, 215, 375 }, + [58] = { 39.4, 5.1, 215, 375 }, + [59] = { 84.8, 56.6, 405, 375 }, + [60] = { 84.1, 55.8, 405, 375 }, + [61] = { 83.3, 55.7, 405, 375 }, + [62] = { 85.6, 55.7, 405, 375 }, + [63] = { 84.9, 54.5, 405, 375 }, + [64] = { 84.2, 54.5, 405, 375 }, + [65] = { 82.6, 53.5, 405, 375 }, + [66] = { 85.7, 53.4, 405, 375 }, + [67] = { 83.4, 52.4, 405, 375 }, + [68] = { 86.4, 52.3, 405, 375 }, + [69] = { 84.9, 52.3, 405, 375 }, + [70] = { 84.1, 52.3, 405, 375 }, + [71] = { 83.3, 51.1, 405, 375 }, + [72] = { 85.7, 51.1, 405, 375 }, + [73] = { 84.1, 50.2, 405, 375 }, + [74] = { 82.7, 50, 405, 375 }, + [75] = { 84.9, 49, 405, 375 }, + [76] = { 81.7, 49, 405, 375 }, + [77] = { 83.3, 49, 405, 375 }, + [78] = { 85.7, 48.8, 405, 375 }, + [79] = { 82.8, 47.9, 405, 375 }, + [80] = { 83.3, 46.6, 405, 375 }, + [81] = { 82.6, 46.6, 405, 375 }, + [82] = { 88.8, 38.8, 405, 375 }, + }, + ["lvl"] = "10-11", + }, + [2966] = { + ["coords"] = { + [1] = { 59.5, 90.5, 215, 233 }, + [2] = { 59.6, 90.5, 215, 233 }, + [3] = { 57.6, 90.1, 215, 233 }, + [4] = { 56.9, 90.1, 215, 233 }, + [5] = { 58.7, 90.1, 215, 233 }, + [6] = { 56.9, 88.9, 215, 233 }, + [7] = { 58.4, 88.9, 215, 233 }, + [8] = { 60.2, 88.8, 215, 233 }, + [9] = { 59.4, 88.6, 215, 233 }, + [10] = { 58.1, 88, 215, 233 }, + [11] = { 56.8, 88, 215, 233 }, + [12] = { 55.9, 87.9, 215, 233 }, + [13] = { 56.5, 87.5, 215, 233 }, + [14] = { 55.1, 86.7, 215, 233 }, + [15] = { 57.6, 86.7, 215, 233 }, + [16] = { 55.7, 86.2, 215, 233 }, + [17] = { 56.5, 85.9, 215, 233 }, + [18] = { 55.1, 85.7, 215, 233 }, + [19] = { 56.3, 85.2, 215, 233 }, + [20] = { 57, 84.9, 215, 233 }, + [21] = { 56.1, 84.2, 215, 233 }, + [22] = { 56.4, 84.1, 215, 233 }, + [23] = { 54.5, 84, 215, 233 }, + [24] = { 55.5, 82.1, 215, 233 }, + [25] = { 53.8, 82, 215, 233 }, + [26] = { 56.5, 82, 215, 233 }, + [27] = { 56.1, 81.9, 215, 233 }, + [28] = { 55, 81.9, 215, 233 }, + [29] = { 54.3, 81.8, 215, 233 }, + [30] = { 55, 80.8, 215, 233 }, + [31] = { 55.7, 80.2, 215, 233 }, + [32] = { 52.6, 80.2, 215, 233 }, + [33] = { 54.5, 80.1, 215, 233 }, + [34] = { 55.1, 79.4, 215, 233 }, + [35] = { 53.3, 79.3, 215, 233 }, + [36] = { 52.6, 79.3, 215, 233 }, + [37] = { 55.2, 78.1, 215, 233 }, + [38] = { 53.1, 77.7, 215, 233 }, + [39] = { 51.9, 77.2, 215, 233 }, + [40] = { 55, 77.1, 215, 233 }, + [41] = { 54, 76.9, 215, 233 }, + [42] = { 54.4, 76.3, 215, 233 }, + [43] = { 53.2, 76.2, 215, 233 }, + [44] = { 55.8, 76.2, 215, 233 }, + [45] = { 55.1, 75.2, 215, 233 }, + [46] = { 52.4, 75, 215, 233 }, + }, + ["lvl"] = "3-4", + }, + [2967] = { + ["coords"] = { + [1] = { 40.3, 57.3, 17, 375 }, + [2] = { 39.6, 56.8, 17, 375 }, + [3] = { 68.2, 58.1, 215, 375 }, + [4] = { 66.8, 57.1, 215, 375 }, + }, + ["lvl"] = "8-9", + }, + [2968] = { + ["coords"] = { + [1] = { 40.3, 57.3, 17, 375 }, + [2] = { 39.6, 56.8, 17, 375 }, + [3] = { 68.2, 58.1, 215, 375 }, + [4] = { 66.8, 57.1, 215, 375 }, + }, + ["lvl"] = "9-10", + }, + [2969] = { + ["coords"] = { + [1] = { 34.2, 78.3, 215, 375 }, + [2] = { 44.7, 70.4, 215, 375 }, + [3] = { 36.9, 70.4, 215, 375 }, + [4] = { 55.2, 70.4, 215, 375 }, + [5] = { 39.5, 70.4, 215, 375 }, + [6] = { 49.9, 68.6, 215, 375 }, + [7] = { 35.1, 66.5, 215, 375 }, + [8] = { 37.9, 66.4, 215, 375 }, + [9] = { 41, 66.3, 215, 375 }, + [10] = { 40.7, 63.4, 215, 375 }, + [11] = { 37.6, 62.6, 215, 375 }, + [12] = { 37.1, 59.1, 215, 375 }, + [13] = { 40.9, 58.7, 215, 375 }, + [14] = { 53.9, 58.7, 215, 375 }, + [15] = { 39, 57.8, 215, 375 }, + [16] = { 40.6, 54.3, 215, 375 }, + [17] = { 39, 53.7, 215, 375 }, + }, + ["lvl"] = "5-7", + }, + [2970] = { + ["coords"] = { + [1] = { 57.7, 68.4, 215, 375 }, + [2] = { 58.9, 64.5, 215, 375 }, + [3] = { 59.8, 59.7, 215, 375 }, + [4] = { 60.2, 54.9, 215, 375 }, + [5] = { 58.3, 52, 215, 375 }, + [6] = { 42.8, 51.9, 215, 375 }, + [7] = { 46.1, 49.7, 215, 375 }, + [8] = { 35.2, 49.5, 215, 375 }, + [9] = { 43.3, 49.2, 215, 375 }, + [10] = { 57.4, 48.6, 215, 375 }, + [11] = { 41.5, 48.6, 215, 375 }, + [12] = { 49, 48, 215, 375 }, + [13] = { 56.7, 46.1, 215, 375 }, + [14] = { 42.7, 45.2, 215, 375 }, + [15] = { 53.8, 45, 215, 375 }, + [16] = { 36.2, 44.9, 215, 375 }, + [17] = { 49.8, 44.4, 215, 375 }, + [18] = { 52.1, 44.1, 215, 375 }, + [19] = { 48.6, 44.1, 215, 375 }, + [20] = { 42.2, 43.5, 215, 375 }, + [21] = { 34.8, 42.8, 215, 375 }, + [22] = { 55.3, 42.3, 215, 375 }, + [23] = { 37.6, 41.2, 215, 375 }, + [24] = { 53.8, 40.7, 215, 375 }, + [25] = { 49.6, 40.7, 215, 375 }, + [26] = { 51.8, 40.3, 215, 375 }, + [27] = { 42.8, 39.8, 215, 375 }, + [28] = { 49.2, 38.4, 215, 375 }, + [29] = { 54.8, 37.4, 215, 375 }, + [30] = { 52.1, 37.2, 215, 375 }, + [31] = { 47.4, 36.5, 215, 375 }, + [32] = { 44.7, 34.9, 215, 375 }, + [33] = { 46.8, 34.8, 215, 375 }, + [34] = { 51.7, 34.8, 215, 375 }, + [35] = { 88.4, 73, 405, 375 }, + }, + ["lvl"] = "7-9", + }, + [2971] = { + ["coords"] = { + [1] = { 38.6, 58.1, 17, 375 }, + [2] = { 39.5, 57.2, 17, 375 }, + [3] = { 35.1, 42.5, 17, 375 }, + [4] = { 35, 39.3, 17, 375 }, + [5] = { 64.9, 59.6, 215, 375 }, + [6] = { 66.8, 57.7, 215, 375 }, + [7] = { 55.5, 32.4, 215, 375 }, + [8] = { 53.8, 32, 215, 375 }, + [9] = { 52.2, 30.3, 215, 375 }, + [10] = { 50.8, 28.9, 215, 375 }, + [11] = { 58, 28.8, 215, 375 }, + [12] = { 53.9, 26.5, 215, 375 }, + [13] = { 53.2, 23.7, 215, 375 }, + [14] = { 57.8, 22.4, 215, 375 }, + [15] = { 51.7, 20, 215, 375 }, + [16] = { 53.3, 18.9, 215, 375 }, + [17] = { 37.6, 17.3, 215, 375 }, + [18] = { 51.8, 16.4, 215, 375 }, + [19] = { 52.6, 13.8, 215, 375 }, + [20] = { 46.6, 13.4, 215, 375 }, + [21] = { 46.7, 10.1, 215, 375 }, + [22] = { 42.2, 10, 215, 375 }, + [23] = { 48.9, 9.2, 215, 375 }, + }, + ["lvl"] = "8-10", + }, + [2972] = { + ["coords"] = { + [1] = { 34.8, 43.8, 17, 375 }, + [2] = { 34.8, 43.7, 17, 375 }, + [3] = { 34.8, 43.6, 17, 375 }, + [4] = { 34.8, 43.5, 17, 375 }, + [5] = { 39.4, 66.5, 215, 375 }, + [6] = { 39.7, 66.3, 215, 375 }, + [7] = { 39.6, 66.1, 215, 375 }, + [8] = { 44.5, 52.7, 215, 375 }, + [9] = { 44.1, 52.6, 215, 375 }, + [10] = { 48, 37.9, 215, 375 }, + [11] = { 48.3, 37.8, 215, 375 }, + [12] = { 47.7, 37.5, 215, 375 }, + [13] = { 57.5, 31.3, 215, 375 }, + [14] = { 57.5, 31.2, 215, 375 }, + [15] = { 57.4, 31, 215, 375 }, + [16] = { 57.4, 30.8, 215, 375 }, + }, + ["lvl"] = "7-8", + }, + [2973] = { + ["coords"] = { + [1] = { 39.7, 66.6, 215, 375 }, + [2] = { 43.4, 53.7, 215, 375 }, + [3] = { 47.7, 37.1, 215, 375 }, + }, + ["lvl"] = "10-11", + }, + [2974] = { + ["coords"] = { + [1] = { 34.9, 43.6, 17, 375 }, + [2] = { 61.1, 69.4, 215, 375 }, + [3] = { 61.4, 69.2, 215, 375 }, + [4] = { 39.4, 66.3, 215, 375 }, + [5] = { 43.2, 53.8, 215, 375 }, + [6] = { 47.8, 39.2, 215, 375 }, + [7] = { 47.9, 38.8, 215, 375 }, + [8] = { 47.4, 37, 215, 375 }, + [9] = { 57.6, 30.9, 215, 375 }, + }, + ["lvl"] = "11-12", + }, + [2975] = { + ["coords"] = { + [1] = { 53.9, 67.2, 215, 375 }, + [2] = { 54.2, 67, 215, 375 }, + [3] = { 53.5, 66.9, 215, 375 }, + [4] = { 53.3, 66.8, 215, 375 }, + [5] = { 54.3, 66.5, 215, 375 }, + [6] = { 53.5, 66.3, 215, 375 }, + [7] = { 53.2, 66.3, 215, 375 }, + [8] = { 53.9, 66.1, 215, 375 }, + [9] = { 54.3, 65.8, 215, 375 }, + [10] = { 53.7, 65.8, 215, 375 }, + [11] = { 53.3, 65.7, 215, 375 }, + }, + ["lvl"] = "5-6", + }, + [2976] = { + ["coords"] = { + [1] = { 53.9, 66.6, 215, 375 }, + [2] = { 53.7, 48.9, 215, 375 }, + [3] = { 53.2, 48.9, 215, 375 }, + [4] = { 54.4, 48.7, 215, 375 }, + [5] = { 53.5, 48.4, 215, 375 }, + [6] = { 54.4, 48, 215, 375 }, + [7] = { 53.7, 47.7, 215, 375 }, + [8] = { 53.4, 47.4, 215, 375 }, + [9] = { 53.8, 47.2, 215, 375 }, + [10] = { 44.4, 46, 215, 375 }, + [11] = { 44.1, 45.6, 215, 375 }, + [12] = { 44.8, 45.4, 215, 375 }, + [13] = { 44.2, 44.9, 215, 375 }, + [14] = { 44.5, 44.6, 215, 375 }, + }, + ["lvl"] = "6-7", + }, + [2977] = { + ["coords"] = { + [1] = { 53.8, 48.4, 215, 375 }, + [2] = { 53, 47.9, 215, 375 }, + [3] = { 54, 47.8, 215, 375 }, + [4] = { 44.7, 46, 215, 375 }, + [5] = { 44.4, 45.4, 215, 375 }, + [6] = { 44.5, 44.9, 215, 375 }, + [7] = { 44.8, 44.9, 215, 375 }, + }, + ["lvl"] = "7-8", + }, + [2978] = { + ["coords"] = { + [1] = { 36.3, 52.8, 17, 375 }, + [2] = { 36.1, 52.8, 17, 375 }, + [3] = { 36.4, 52.7, 17, 375 }, + [4] = { 36, 52.6, 17, 375 }, + [5] = { 37.1, 52.6, 17, 375 }, + [6] = { 36.2, 52.6, 17, 375 }, + [7] = { 36.4, 52.6, 17, 375 }, + [8] = { 36.7, 52.6, 17, 375 }, + [9] = { 36.1, 52.5, 17, 375 }, + [10] = { 36.3, 52.4, 17, 375 }, + [11] = { 35.9, 52.4, 17, 375 }, + [12] = { 37.2, 52.3, 17, 375 }, + [13] = { 36, 52.3, 17, 375 }, + [14] = { 35.9, 52.2, 17, 375 }, + [15] = { 37.1, 52.2, 17, 375 }, + [16] = { 36.1, 52.1, 17, 375 }, + [17] = { 36.7, 52, 17, 375 }, + [18] = { 36.6, 51.8, 17, 375 }, + [19] = { 37, 51.4, 17, 375 }, + [20] = { 37.2, 51.3, 17, 375 }, + [21] = { 37.5, 51.2, 17, 375 }, + [22] = { 37.1, 51, 17, 375 }, + [23] = { 37.7, 51, 17, 375 }, + [24] = { 37.9, 50.6, 17, 375 }, + [25] = { 38.6, 50.5, 17, 375 }, + [26] = { 37.4, 50.4, 17, 375 }, + [27] = { 37.3, 50.2, 17, 375 }, + [28] = { 37.6, 50.2, 17, 375 }, + [29] = { 37.5, 50.1, 17, 375 }, + [30] = { 37.6, 50, 17, 375 }, + [31] = { 38.7, 49.9, 17, 375 }, + [32] = { 39, 49.9, 17, 375 }, + [33] = { 37.7, 49.9, 17, 375 }, + [34] = { 38.9, 49.9, 17, 375 }, + [35] = { 37.1, 49.8, 17, 375 }, + [36] = { 39, 49.8, 17, 375 }, + [37] = { 36.2, 49.8, 17, 375 }, + [38] = { 36.9, 49.8, 17, 375 }, + [39] = { 38.6, 49.7, 17, 375 }, + [40] = { 36.1, 49.7, 17, 375 }, + [41] = { 38.4, 49.6, 17, 375 }, + [42] = { 38.2, 49.5, 17, 375 }, + [43] = { 37.7, 49.5, 17, 375 }, + [44] = { 36.9, 49.5, 17, 375 }, + [45] = { 36.7, 49.5, 17, 375 }, + [46] = { 38.4, 49.5, 17, 375 }, + [47] = { 37.3, 49.4, 17, 375 }, + [48] = { 37, 49.4, 17, 375 }, + [49] = { 38.2, 49.4, 17, 375 }, + [50] = { 37.7, 49.3, 17, 375 }, + [51] = { 37.4, 49.3, 17, 375 }, + [52] = { 37.6, 49.3, 17, 375 }, + [53] = { 37, 49.2, 17, 375 }, + [54] = { 36.4, 49.2, 17, 375 }, + [55] = { 37.3, 49.1, 17, 375 }, + [56] = { 37.8, 49.1, 17, 375 }, + [57] = { 36.9, 49, 17, 375 }, + [58] = { 37.3, 48.9, 17, 375 }, + [59] = { 37.8, 48.8, 17, 375 }, + [60] = { 37.7, 48.8, 17, 375 }, + [61] = { 38.9, 48.8, 17, 375 }, + [62] = { 38.9, 48.7, 17, 375 }, + [63] = { 37.6, 48.6, 17, 375 }, + [64] = { 37.3, 48.6, 17, 375 }, + [65] = { 38.8, 48.5, 17, 375 }, + [66] = { 39, 48.5, 17, 375 }, + [67] = { 36.6, 48.5, 17, 375 }, + [68] = { 38.1, 48.4, 17, 375 }, + [69] = { 39, 48.4, 17, 375 }, + [70] = { 37.8, 48.2, 17, 375 }, + [71] = { 38.2, 48.2, 17, 375 }, + [72] = { 37.6, 48.2, 17, 375 }, + [73] = { 38.7, 48.1, 17, 375 }, + [74] = { 38.4, 48.1, 17, 375 }, + [75] = { 36.7, 48.1, 17, 375 }, + [76] = { 37.4, 48.1, 17, 375 }, + [77] = { 36.6, 48.1, 17, 375 }, + [78] = { 37.5, 48, 17, 375 }, + [79] = { 39.3, 48, 17, 375 }, + [80] = { 39.5, 47.8, 17, 375 }, + [81] = { 39.2, 47.8, 17, 375 }, + [82] = { 39.1, 47.7, 17, 375 }, + [83] = { 39.4, 47.7, 17, 375 }, + [84] = { 39, 47.6, 17, 375 }, + [85] = { 38.3, 47.6, 17, 375 }, + [86] = { 39.7, 47.6, 17, 375 }, + [87] = { 38.5, 47.6, 17, 375 }, + [88] = { 37.3, 47.6, 17, 375 }, + [89] = { 38.6, 47.6, 17, 375 }, + [90] = { 39.6, 47.6, 17, 375 }, + [91] = { 37.6, 47.5, 17, 375 }, + [92] = { 37.3, 47.5, 17, 375 }, + [93] = { 37.5, 47.5, 17, 375 }, + [94] = { 38.8, 47.3, 17, 375 }, + [95] = { 37.5, 47.2, 17, 375 }, + [96] = { 38.9, 47.2, 17, 375 }, + [97] = { 37.6, 47.1, 17, 375 }, + [98] = { 38.8, 47.1, 17, 375 }, + [99] = { 38.7, 47, 17, 375 }, + [100] = { 37.5, 47, 17, 375 }, + [101] = { 38.8, 46.9, 17, 375 }, + [102] = { 36.6, 46.9, 17, 375 }, + [103] = { 38.7, 46.9, 17, 375 }, + [104] = { 37.5, 46.8, 17, 375 }, + [105] = { 36.7, 46.8, 17, 375 }, + [106] = { 36.8, 46.6, 17, 375 }, + [107] = { 37.1, 46.6, 17, 375 }, + [108] = { 36.7, 46.5, 17, 375 }, + [109] = { 36.2, 46.3, 17, 375 }, + [110] = { 37.2, 46, 17, 375 }, + [111] = { 37, 46, 17, 375 }, + [112] = { 36.7, 45.8, 17, 375 }, + [113] = { 37.2, 45.8, 17, 375 }, + [114] = { 60.4, 49.1, 215, 375 }, + [115] = { 60, 49, 215, 375 }, + [116] = { 60.7, 49, 215, 375 }, + [117] = { 59.7, 48.7, 215, 375 }, + [118] = { 62, 48.7, 215, 375 }, + [119] = { 60.2, 48.7, 215, 375 }, + [120] = { 60.6, 48.7, 215, 375 }, + [121] = { 61.3, 48.6, 215, 375 }, + [122] = { 60, 48.5, 215, 375 }, + [123] = { 60.5, 48.4, 215, 375 }, + [124] = { 59.7, 48.4, 215, 375 }, + [125] = { 62.1, 48.2, 215, 375 }, + [126] = { 59.9, 48, 215, 375 }, + [127] = { 59.6, 48, 215, 375 }, + [128] = { 61.9, 47.8, 215, 375 }, + [129] = { 60, 47.8, 215, 375 }, + [130] = { 61.1, 47.6, 215, 375 }, + [131] = { 61, 47.2, 215, 375 }, + [132] = { 61.9, 46.4, 215, 375 }, + [133] = { 62.2, 46.1, 215, 375 }, + [134] = { 62.7, 45.9, 215, 375 }, + [135] = { 62.1, 45.6, 215, 375 }, + [136] = { 63.1, 45.5, 215, 375 }, + [137] = { 63.5, 44.9, 215, 375 }, + [138] = { 64.9, 44.6, 215, 375 }, + [139] = { 62.5, 44.4, 215, 375 }, + [140] = { 62.3, 44.1, 215, 375 }, + [141] = { 62.9, 44.1, 215, 375 }, + [142] = { 62.7, 43.8, 215, 375 }, + [143] = { 63, 43.5, 215, 375 }, + [144] = { 65.1, 43.4, 215, 375 }, + [145] = { 65.8, 43.4, 215, 375 }, + [146] = { 63.2, 43.4, 215, 375 }, + [147] = { 65.5, 43.4, 215, 375 }, + [148] = { 62, 43.2, 215, 375 }, + [149] = { 65.8, 43.2, 215, 375 }, + [150] = { 60.2, 43.2, 215, 375 }, + [151] = { 61.6, 43.1, 215, 375 }, + [152] = { 65, 43, 215, 375 }, + [153] = { 60, 42.9, 215, 375 }, + [154] = { 64.6, 42.8, 215, 375 }, + [155] = { 64.2, 42.7, 215, 375 }, + [156] = { 63.1, 42.7, 215, 375 }, + [157] = { 61.6, 42.7, 215, 375 }, + [158] = { 61.1, 42.6, 215, 375 }, + [159] = { 64.5, 42.6, 215, 375 }, + [160] = { 62.3, 42.4, 215, 375 }, + [161] = { 61.9, 42.3, 215, 375 }, + [162] = { 64.2, 42.3, 215, 375 }, + [163] = { 63.2, 42.3, 215, 375 }, + [164] = { 62.6, 42.3, 215, 375 }, + [165] = { 63, 42.2, 215, 375 }, + [166] = { 61.9, 42, 215, 375 }, + [167] = { 60.6, 42, 215, 375 }, + [168] = { 62.3, 41.9, 215, 375 }, + [169] = { 63.3, 41.7, 215, 375 }, + [170] = { 61.6, 41.6, 215, 375 }, + [171] = { 62.5, 41.5, 215, 375 }, + [172] = { 63.4, 41.3, 215, 375 }, + [173] = { 63.2, 41.2, 215, 375 }, + [174] = { 65.4, 41.2, 215, 375 }, + [175] = { 65.6, 41.1, 215, 375 }, + [176] = { 62.9, 40.9, 215, 375 }, + [177] = { 62.3, 40.8, 215, 375 }, + [178] = { 65.3, 40.7, 215, 375 }, + [179] = { 65.7, 40.7, 215, 375 }, + [180] = { 61, 40.6, 215, 375 }, + [181] = { 64, 40.4, 215, 375 }, + [182] = { 65.7, 40.3, 215, 375 }, + [183] = { 63.3, 40.1, 215, 375 }, + [184] = { 64.2, 40.1, 215, 375 }, + [185] = { 62.9, 40, 215, 375 }, + [186] = { 65.1, 39.9, 215, 375 }, + [187] = { 64.6, 39.9, 215, 375 }, + [188] = { 61.2, 39.9, 215, 375 }, + [189] = { 62.5, 39.8, 215, 375 }, + [190] = { 61.1, 39.8, 215, 375 }, + [191] = { 62.8, 39.7, 215, 375 }, + [192] = { 66.3, 39.6, 215, 375 }, + [193] = { 66.4, 39.6, 215, 375 }, + [194] = { 66.1, 39.2, 215, 375 }, + [195] = { 66, 39.1, 215, 375 }, + [196] = { 65.7, 38.9, 215, 375 }, + [197] = { 64.3, 38.9, 215, 375 }, + [198] = { 64.7, 38.9, 215, 375 }, + [199] = { 62.4, 38.8, 215, 375 }, + [200] = { 64.9, 38.8, 215, 375 }, + [201] = { 62.9, 38.7, 215, 375 }, + [202] = { 62.4, 38.7, 215, 375 }, + [203] = { 62.9, 38.6, 215, 375 }, + [204] = { 65.2, 38.3, 215, 375 }, + [205] = { 62.7, 38.1, 215, 375 }, + [206] = { 65.5, 38.1, 215, 375 }, + [207] = { 63, 38, 215, 375 }, + [208] = { 65.4, 37.9, 215, 375 }, + [209] = { 65.1, 37.7, 215, 375 }, + [210] = { 62.8, 37.6, 215, 375 }, + [211] = { 65.3, 37.5, 215, 375 }, + [212] = { 61, 37.5, 215, 375 }, + [213] = { 65.2, 37.4, 215, 375 }, + [214] = { 62.7, 37.3, 215, 375 }, + [215] = { 61.2, 37.3, 215, 375 }, + [216] = { 61.4, 36.9, 215, 375 }, + [217] = { 62, 36.8, 215, 375 }, + [218] = { 61.2, 36.7, 215, 375 }, + [219] = { 60.3, 36.3, 215, 375 }, + [220] = { 62.1, 35.7, 215, 375 }, + [221] = { 61.7, 35.6, 215, 375 }, + [222] = { 61.2, 35.4, 215, 375 }, + [223] = { 62.1, 35.2, 215, 375 }, + [224] = { 40.2, 16.9, 215, 375 }, + [225] = { 40.9, 16.8, 215, 375 }, + [226] = { 40.8, 15.9, 215, 375 }, + [227] = { 39.5, 15.9, 215, 375 }, + [228] = { 40.2, 15.9, 215, 375 }, + [229] = { 39.5, 14.9, 215, 375 }, + [230] = { 40.2, 14.9, 215, 375 }, + [231] = { 42.5, 14.4, 215, 375 }, + [232] = { 43, 14.3, 215, 375 }, + [233] = { 42.4, 14.2, 215, 375 }, + [234] = { 42.7, 13.6, 215, 375 }, + [235] = { 43, 13.5, 215, 375 }, + [236] = { 42.5, 13.5, 215, 375 }, + }, + ["lvl"] = "8-9", + }, + [2979] = { + ["coords"] = { + [1] = { 36.3, 52.5, 17, 375 }, + [2] = { 36.2, 52.4, 17, 375 }, + [3] = { 36.8, 52, 17, 375 }, + [4] = { 36.9, 51.7, 17, 375 }, + [5] = { 36.9, 51.6, 17, 375 }, + [6] = { 37, 51.3, 17, 375 }, + [7] = { 37.3, 51.2, 17, 375 }, + [8] = { 37.3, 51, 17, 375 }, + [9] = { 37.7, 50.7, 17, 375 }, + [10] = { 38.4, 50.5, 17, 375 }, + [11] = { 38.5, 50.3, 17, 375 }, + [12] = { 38.5, 50.1, 17, 375 }, + [13] = { 38.3, 49.8, 17, 375 }, + [14] = { 36.5, 49.5, 17, 375 }, + [15] = { 36.3, 49.3, 17, 375 }, + [16] = { 36.7, 49.3, 17, 375 }, + [17] = { 37.2, 49.2, 17, 375 }, + [18] = { 37.5, 49.2, 17, 375 }, + [19] = { 36.5, 49.2, 17, 375 }, + [20] = { 36.6, 49, 17, 375 }, + [21] = { 36.8, 48.9, 17, 375 }, + [22] = { 37.6, 48.9, 17, 375 }, + [23] = { 37, 48.8, 17, 375 }, + [24] = { 36.7, 48.8, 17, 375 }, + [25] = { 36.9, 48.7, 17, 375 }, + [26] = { 37.9, 48.7, 17, 375 }, + [27] = { 37.1, 48.6, 17, 375 }, + [28] = { 36.8, 48.6, 17, 375 }, + [29] = { 37.4, 48.5, 17, 375 }, + [30] = { 37.9, 48.3, 17, 375 }, + [31] = { 38.9, 48.1, 17, 375 }, + [32] = { 38.8, 48, 17, 375 }, + [33] = { 38.6, 48, 17, 375 }, + [34] = { 39.1, 48, 17, 375 }, + [35] = { 37.2, 48, 17, 375 }, + [36] = { 37.6, 47.9, 17, 375 }, + [37] = { 36.5, 47.8, 17, 375 }, + [38] = { 38.3, 47.7, 17, 375 }, + [39] = { 38.1, 47.7, 17, 375 }, + [40] = { 38, 47.7, 17, 375 }, + [41] = { 38.7, 47.6, 17, 375 }, + [42] = { 38.9, 47.6, 17, 375 }, + [43] = { 36.5, 47.4, 17, 375 }, + [44] = { 37.2, 47.4, 17, 375 }, + [45] = { 37.7, 47.4, 17, 375 }, + [46] = { 36.4, 47.3, 17, 375 }, + [47] = { 37.3, 47.2, 17, 375 }, + [48] = { 36.5, 47.2, 17, 375 }, + [49] = { 36.6, 47.2, 17, 375 }, + [50] = { 36.6, 46.8, 17, 375 }, + [51] = { 36.4, 46.7, 17, 375 }, + [52] = { 36.6, 46.5, 17, 375 }, + [53] = { 35.6, 46.5, 17, 375 }, + [54] = { 36.3, 46.5, 17, 375 }, + [55] = { 36.5, 46.4, 17, 375 }, + [56] = { 35.6, 46.1, 17, 375 }, + [57] = { 35.6, 45.7, 17, 375 }, + [58] = { 35.5, 45.7, 17, 375 }, + [59] = { 36.4, 45.6, 17, 375 }, + [60] = { 35.8, 45.5, 17, 375 }, + [61] = { 36.2, 45.2, 17, 375 }, + [62] = { 60.4, 48.6, 215, 375 }, + [63] = { 60.2, 48.3, 215, 375 }, + [64] = { 61.4, 47.5, 215, 375 }, + [65] = { 61.5, 46.9, 215, 375 }, + [66] = { 61.7, 46.7, 215, 375 }, + [67] = { 61.8, 46.1, 215, 375 }, + [68] = { 62.3, 45.9, 215, 375 }, + [69] = { 62.3, 45.6, 215, 375 }, + [70] = { 63.2, 45, 215, 375 }, + [71] = { 63.2, 44.9, 215, 375 }, + [72] = { 64.6, 44.5, 215, 375 }, + [73] = { 64.8, 44.1, 215, 375 }, + [74] = { 64.8, 43.7, 215, 375 }, + [75] = { 64.4, 43.1, 215, 375 }, + [76] = { 60.9, 42.5, 215, 375 }, + [77] = { 60.5, 42.3, 215, 375 }, + [78] = { 61.3, 42.1, 215, 375 }, + [79] = { 62.2, 42.1, 215, 375 }, + [80] = { 62.8, 42, 215, 375 }, + [81] = { 60.9, 41.9, 215, 375 }, + [82] = { 61.1, 41.6, 215, 375 }, + [83] = { 61.3, 41.3, 215, 375 }, + [84] = { 62.9, 41.3, 215, 375 }, + [85] = { 61.9, 41.2, 215, 375 }, + [86] = { 61.1, 41.1, 215, 375 }, + [87] = { 61.6, 41, 215, 375 }, + [88] = { 63.5, 40.9, 215, 375 }, + [89] = { 62, 40.9, 215, 375 }, + [90] = { 61.4, 40.8, 215, 375 }, + [91] = { 62.7, 40.7, 215, 375 }, + [92] = { 63.5, 40.2, 215, 375 }, + [93] = { 65.6, 39.9, 215, 375 }, + [94] = { 65.3, 39.7, 215, 375 }, + [95] = { 64.9, 39.6, 215, 375 }, + [96] = { 65.9, 39.6, 215, 375 }, + [97] = { 62.2, 39.6, 215, 375 }, + [98] = { 63.1, 39.5, 215, 375 }, + [99] = { 60.9, 39.3, 215, 375 }, + [100] = { 64.4, 39.1, 215, 375 }, + [101] = { 64, 39, 215, 375 }, + [102] = { 63.7, 39, 215, 375 }, + [103] = { 65.2, 38.9, 215, 375 }, + [104] = { 65.5, 38.8, 215, 375 }, + [105] = { 60.8, 38.5, 215, 375 }, + [106] = { 62.2, 38.5, 215, 375 }, + [107] = { 63.1, 38.4, 215, 375 }, + [108] = { 60.7, 38.2, 215, 375 }, + [109] = { 62.4, 38.1, 215, 375 }, + [110] = { 60.9, 38, 215, 375 }, + [111] = { 61, 38, 215, 375 }, + [112] = { 61, 37.2, 215, 375 }, + [113] = { 60.7, 37, 215, 375 }, + [114] = { 61, 36.8, 215, 375 }, + [115] = { 59.1, 36.6, 215, 375 }, + [116] = { 60.4, 36.6, 215, 375 }, + [117] = { 60.7, 36.5, 215, 375 }, + [118] = { 59.1, 36, 215, 375 }, + [119] = { 59, 35.2, 215, 375 }, + [120] = { 58.9, 35, 215, 375 }, + [121] = { 59.1, 35, 215, 375 }, + [122] = { 60.7, 34.8, 215, 375 }, + [123] = { 59.4, 34.7, 215, 375 }, + [124] = { 60.2, 34.2, 215, 375 }, + [125] = { 40.4, 16.4, 215, 375 }, + [126] = { 40, 15.6, 215, 375 }, + [127] = { 42.6, 14.2, 215, 375 }, + [128] = { 42.9, 13.8, 215, 375 }, + }, + ["lvl"] = "9-10", + }, + [2980] = { + ["coords"] = { + [1] = { 44.9, 77.1, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "4", + }, + [2981] = { + ["coords"] = { + [1] = { 44.2, 76.1, 215, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "36", + }, + [2982] = { + ["coords"] = { + [1] = { 42.6, 92.2, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "8", + }, + [2983] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "7", + }, + [2984] = { + ["coords"] = { + [1] = { 32.7, 36.1, 215, 375 }, + [2] = { 86, 65.4, 405, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "11", + }, + [2985] = { + ["coords"] = { + [1] = { 47.4, 62, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "9", + }, + [2986] = { + ["coords"] = { + [1] = { 53.9, 41.5, 400, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "29", + }, + [2987] = { + ["coords"] = { + [1] = { 37.5, 28.9, 215, 375 }, + [2] = { 37.7, 59.6, 1638, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "12", + }, + [2988] = { + ["coords"] = { + [1] = { 51.9, 59.6, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "10", + }, + [2989] = { + ["coords"] = { + [1] = { 31.9, 50.5, 215, 300 }, + [2] = { 31.1, 50.2, 215, 300 }, + [3] = { 32.1, 50, 215, 300 }, + [4] = { 30.9, 49.9, 215, 300 }, + [5] = { 33.8, 49.7, 215, 300 }, + [6] = { 32.1, 49.6, 215, 300 }, + [7] = { 30.9, 49.2, 215, 300 }, + [8] = { 32.3, 49.2, 215, 300 }, + [9] = { 32.7, 49.1, 215, 300 }, + [10] = { 33.7, 49, 215, 300 }, + [11] = { 31.7, 48.9, 215, 300 }, + [12] = { 30.9, 48.8, 215, 300 }, + [13] = { 31.5, 48.8, 215, 300 }, + [14] = { 30.9, 48.5, 215, 300 }, + [15] = { 33.7, 48, 215, 300 }, + [16] = { 31, 47.9, 215, 300 }, + [17] = { 34.3, 47.9, 215, 300 }, + [18] = { 31.4, 47.6, 215, 300 }, + [19] = { 31.6, 47.6, 215, 300 }, + [20] = { 32, 47.3, 215, 300 }, + [21] = { 34.4, 47.1, 215, 300 }, + [22] = { 84.1, 81.5, 405, 300 }, + [23] = { 84.1, 78.9, 405, 300 }, + [24] = { 85.2, 78.3, 405, 300 }, + [25] = { 87.9, 78, 405, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "7-8", + }, + [2990] = { + ["coords"] = { + [1] = { 31.4, 49.9, 215, 300 }, + [2] = { 31.8, 49.7, 215, 300 }, + [3] = { 32, 49.7, 215, 300 }, + [4] = { 31.5, 49.4, 215, 300 }, + [5] = { 31.3, 48.8, 215, 300 }, + [6] = { 31.5, 48.8, 215, 300 }, + [7] = { 31.3, 48.7, 215, 300 }, + [8] = { 31.5, 48.5, 215, 300 }, + [9] = { 32.8, 48.3, 215, 300 }, + [10] = { 31.3, 48.3, 215, 300 }, + [11] = { 31.9, 47.9, 215, 300 }, + [12] = { 33, 47.5, 215, 300 }, + [13] = { 33.2, 47.5, 215, 300 }, + [14] = { 84.4, 79.3, 405, 300 }, + [15] = { 86.6, 78.4, 405, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "8-9", + }, + [2991] = { + ["coords"] = { + [1] = { 50, 81.2, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "9", + }, + [2992] = { + ["coords"] = {}, + ["lvl"] = "28-38", + }, + [2993] = { + ["coords"] = { + [1] = { 47.5, 60.2, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "10", + }, + [2994] = { + ["coords"] = { + [1] = { 36.8, 38.6, 17, 375 }, + [2] = { 61.5, 21, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "9", + }, + [2995] = { + ["coords"] = { + [1] = { 39.4, 27, 215, 500 }, + [2] = { 47, 49.8, 1638, 500 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [2996] = { + ["coords"] = { + [1] = { 39.5, 28.8, 215, 250 }, + [2] = { 47.6, 58.6, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [2997] = { + ["coords"] = { + [1] = { 38.2, 29.5, 215, 250 }, + [2] = { 41.4, 62.4, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [2998] = { + ["coords"] = { + [1] = { 37.8, 28, 215, 250 }, + [2] = { 39.4, 55.1, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [2999] = { + ["coords"] = { + [1] = { 37.9, 28.2, 215, 250 }, + [2] = { 39.8, 55.6, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3000] = { + ["coords"] = { + [1] = { 44.1, 7.2, 490, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "45", + }, + [3001] = { + ["coords"] = { + [1] = { 36.8, 28.6, 215, 250 }, + [2] = { 34.4, 57.9, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [3002] = { + ["coords"] = { + [1] = { 36.8, 28.3, 215, 250 }, + [2] = { 34.3, 56.6, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [3003] = { + ["coords"] = { + [1] = { 38.2, 27.7, 215, 250 }, + [2] = { 41.4, 53.2, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3004] = { + ["coords"] = { + [1] = { 38.9, 26.1, 215, 250 }, + [2] = { 44.5, 45.4, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [3005] = { + ["coords"] = { + [1] = { 38.7, 26, 215, 250 }, + [2] = { 43.8, 45.1, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3007] = { + ["coords"] = { + [1] = { 38.2, 25.5, 215, 250 }, + [2] = { 41.5, 42.6, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "46", + }, + [3008] = { + ["coords"] = { + [1] = { 38.4, 25.7, 215, 375 }, + [2] = { 42.1, 43.5, 1638, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "24", + }, + [3009] = { + ["coords"] = { + [1] = { 39.3, 23.6, 215, 250 }, + [2] = { 46.6, 33.2, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [3010] = { + ["coords"] = { + [1] = { 39.4, 23.7, 215, 250 }, + [2] = { 47.4, 33.7, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3011] = { + ["coords"] = { + [1] = { 38.9, 24.5, 215, 250 }, + [2] = { 44.9, 37.5, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [3012] = { + ["coords"] = { + [1] = { 38.9, 24.7, 215, 250 }, + [2] = { 45, 38.8, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3013] = { + ["coords"] = { + [1] = { 40, 25.1, 215, 250 }, + [2] = { 50, 40.4, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [3014] = { + ["coords"] = { + [1] = { 39.9, 24.9, 215, 250 }, + [2] = { 49.6, 39.6, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3015] = { + ["coords"] = { + [1] = { 39.4, 26.1, 215, 250 }, + [2] = { 47, 45.7, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3016] = { + ["coords"] = { + [1] = { 39.8, 23.8, 215, 250 }, + [2] = { 49.1, 34.2, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3017] = { + ["coords"] = { + [1] = { 39.4, 25.5, 215, 250 }, + [2] = { 47.3, 42.5, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3018] = { + ["coords"] = { + [1] = { 41.1, 28.4, 215, 250 }, + [2] = { 55.5, 57.1, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3019] = { + ["coords"] = { + [1] = { 40.8, 28.5, 215, 250 }, + [2] = { 54.1, 57.2, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3020] = { + ["coords"] = { + [1] = { 40.6, 28.7, 215, 250 }, + [2] = { 53.2, 58.3, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3021] = { + ["coords"] = { + [1] = { 40.6, 28.4, 215, 250 }, + [2] = { 53, 56.6, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3022] = { + ["coords"] = { + [1] = { 39.9, 26.7, 215, 250 }, + [2] = { 49.6, 48.7, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3023] = { + ["coords"] = { + [1] = { 40.3, 28, 215, 250 }, + [2] = { 51.6, 55, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3024] = { + ["coords"] = { + [1] = { 40.8, 26.4, 215, 250 }, + [2] = { 54.1, 47, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3025] = { + ["coords"] = { + [1] = { 40.4, 26.6, 215, 250 }, + [2] = { 52.3, 47.8, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3026] = { + ["coords"] = { + [1] = { 40.1, 27.6, 215, 250 }, + [2] = { 50.7, 53.1, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [3027] = { + ["coords"] = { + [1] = { 40.2, 27.5, 215, 250 }, + [2] = { 51, 52.5, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [3028] = { + ["coords"] = { + [1] = { 41.2, 26.3, 215, 250 }, + [2] = { 56.1, 46.4, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [3029] = { + ["coords"] = { + [1] = { 41.1, 26.4, 215, 250 }, + [2] = { 55.8, 47, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [3030] = { + ["coords"] = { + [1] = { 34.4, 21.1, 215, 250 }, + [2] = { 88, 48.3, 405, 250 }, + [3] = { 22.8, 21.1, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [3031] = { + ["coords"] = { + [1] = { 34.6, 20.7, 215, 250 }, + [2] = { 88.2, 47.8, 405, 250 }, + [3] = { 23.6, 18.8, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [3032] = { + ["coords"] = { + [1] = { 34.3, 20.7, 215, 250 }, + [2] = { 87.8, 47.8, 405, 250 }, + [3] = { 22, 18.8, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [3033] = { + ["coords"] = { + [1] = { 45.3, 22.4, 215, 250 }, + [2] = { 76.5, 27.2, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [3034] = { + ["coords"] = { + [1] = { 45.5, 22.3, 215, 250 }, + [2] = { 77.1, 27, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [3035] = { + ["coords"] = { + [1] = { 37.5, 54.1, 17, 375 }, + [2] = { 57, 72.2, 215, 375 }, + [3] = { 57.7, 71.9, 215, 375 }, + [4] = { 59.7, 64.8, 215, 375 }, + [5] = { 57.3, 63.8, 215, 375 }, + [6] = { 57.1, 62.8, 215, 375 }, + [7] = { 59.4, 58.4, 215, 375 }, + [8] = { 59, 58.1, 215, 375 }, + [9] = { 59.6, 54.6, 215, 375 }, + [10] = { 59.4, 53.5, 215, 375 }, + [11] = { 58.7, 52.7, 215, 375 }, + [12] = { 43.9, 52.2, 215, 375 }, + [13] = { 35, 51.9, 215, 375 }, + [14] = { 62.7, 51.6, 215, 375 }, + [15] = { 56.2, 51.4, 215, 375 }, + [16] = { 42, 50, 215, 375 }, + [17] = { 57.6, 49.4, 215, 375 }, + [18] = { 57.3, 49.1, 215, 375 }, + [19] = { 44.2, 48.8, 215, 375 }, + [20] = { 36.5, 48.7, 215, 375 }, + [21] = { 36.9, 48.6, 215, 375 }, + [22] = { 56.5, 48.2, 215, 375 }, + [23] = { 45.2, 47.4, 215, 375 }, + [24] = { 54.4, 47, 215, 375 }, + [25] = { 39, 46.9, 215, 375 }, + [26] = { 39.6, 46, 215, 375 }, + [27] = { 54.9, 45.9, 215, 375 }, + [28] = { 38.4, 45.7, 215, 375 }, + [29] = { 43.3, 45.4, 215, 375 }, + [30] = { 49.3, 45.2, 215, 375 }, + [31] = { 48.6, 44.5, 215, 375 }, + [32] = { 36.9, 44, 215, 375 }, + [33] = { 50.4, 43.3, 215, 375 }, + [34] = { 42.8, 43.2, 215, 375 }, + [35] = { 48, 43.1, 215, 375 }, + [36] = { 55.5, 43.1, 215, 375 }, + [37] = { 36.6, 43, 215, 375 }, + [38] = { 34.4, 42.6, 215, 375 }, + [39] = { 46.3, 42.3, 215, 375 }, + [40] = { 35.7, 42.2, 215, 375 }, + [41] = { 50.6, 42, 215, 375 }, + [42] = { 56.1, 41.9, 215, 375 }, + [43] = { 54.1, 41.9, 215, 375 }, + [44] = { 51.7, 41.5, 215, 375 }, + [45] = { 48.6, 41.4, 215, 375 }, + [46] = { 39, 41.2, 215, 375 }, + [47] = { 49.8, 41.1, 215, 375 }, + [48] = { 53.4, 40.7, 215, 375 }, + [49] = { 50.6, 40.6, 215, 375 }, + [50] = { 54.6, 40.4, 215, 375 }, + [51] = { 47.3, 40.2, 215, 375 }, + [52] = { 53.1, 40.2, 215, 375 }, + [53] = { 38.1, 39.9, 215, 375 }, + [54] = { 55.9, 39.5, 215, 375 }, + [55] = { 50.5, 39.3, 215, 375 }, + [56] = { 37.4, 39.3, 215, 375 }, + [57] = { 38.9, 39.1, 215, 375 }, + [58] = { 55.1, 38.4, 215, 375 }, + [59] = { 54, 38.2, 215, 375 }, + [60] = { 40.8, 38.1, 215, 375 }, + [61] = { 45.6, 38.1, 215, 375 }, + [62] = { 56.2, 38.1, 215, 375 }, + [63] = { 52.8, 38, 215, 375 }, + [64] = { 49.4, 37.6, 215, 375 }, + [65] = { 42.1, 37.3, 215, 375 }, + [66] = { 52, 37.3, 215, 375 }, + [67] = { 52.8, 37.3, 215, 375 }, + [68] = { 55.8, 37.2, 215, 375 }, + [69] = { 49.8, 36.8, 215, 375 }, + [70] = { 47.3, 36.4, 215, 375 }, + [71] = { 46.7, 36.4, 215, 375 }, + [72] = { 45.4, 36.4, 215, 375 }, + [73] = { 51.1, 36.4, 215, 375 }, + [74] = { 56.8, 36.3, 215, 375 }, + [75] = { 53.9, 35.9, 215, 375 }, + [76] = { 55.7, 35.6, 215, 375 }, + [77] = { 52.1, 35.5, 215, 375 }, + [78] = { 54.5, 35.3, 215, 375 }, + [79] = { 48.2, 35.2, 215, 375 }, + [80] = { 47.3, 35, 215, 375 }, + [81] = { 53.2, 34.9, 215, 375 }, + [82] = { 50.4, 34.1, 215, 375 }, + [83] = { 35, 33.5, 215, 375 }, + [84] = { 52.1, 33.2, 215, 375 }, + [85] = { 34.5, 32.7, 215, 375 }, + [86] = { 48.1, 32.4, 215, 375 }, + [87] = { 44.7, 31.6, 215, 375 }, + [88] = { 34.8, 31.3, 215, 375 }, + [89] = { 46, 30.6, 215, 375 }, + [90] = { 34.1, 26.4, 215, 375 }, + [91] = { 33.7, 25.6, 215, 375 }, + [92] = { 88, 72.9, 405, 375 }, + [93] = { 88.6, 62.4, 405, 375 }, + [94] = { 88, 61.6, 405, 375 }, + [95] = { 88.4, 60, 405, 375 }, + [96] = { 87.6, 54.4, 405, 375 }, + [97] = { 87.1, 53.4, 405, 375 }, + }, + ["lvl"] = "7-8", + }, + [3036] = { + ["coords"] = { + [1] = { 45.5, 22.9, 215, 250 }, + [2] = { 77.1, 29.8, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [3037] = { + ["coords"] = { + [1] = { 44, 22.3, 215, 250 }, + [2] = { 69.7, 26.7, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3038] = { + ["coords"] = { + [1] = { 41.7, 34.8, 215, 250 }, + [2] = { 58.5, 88.3, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [3039] = { + ["coords"] = { + [1] = { 41.4, 35.1, 215, 250 }, + [2] = { 57.3, 89.8, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [3040] = { + ["coords"] = { + [1] = { 41.8, 34.5, 215, 250 }, + [2] = { 59.1, 86.9, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [3041] = { + ["coords"] = { + [1] = { 41.4, 34.6, 215, 250 }, + [2] = { 57.2, 87.4, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [3042] = { + ["coords"] = { + [1] = { 41.4, 35, 215, 250 }, + [2] = { 57, 89.5, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [3043] = { + ["coords"] = { + [1] = { 41.5, 34.2, 215, 250 }, + [2] = { 57.6, 85.5, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [3044] = { + ["coords"] = { + [1] = { 34.9, 20, 215, 250 }, + [2] = { 88.5, 47, 405, 250 }, + [3] = { 25.3, 15.3, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [3045] = { + ["coords"] = { + [1] = { 34.8, 21.4, 215, 250 }, + [2] = { 88.4, 48.7, 405, 250 }, + [3] = { 24.6, 22.6, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [3046] = { + ["coords"] = { + [1] = { 35, 21.1, 215, 250 }, + [2] = { 88.6, 48.2, 405, 250 }, + [3] = { 25.6, 20.7, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [3047] = { + ["coords"] = { + [1] = { 34.4, 19.8, 215, 250 }, + [2] = { 88, 46.8, 405, 250 }, + [3] = { 22.8, 14.5, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [3048] = { + ["coords"] = { + [1] = { 35, 19.7, 215, 250 }, + [2] = { 88.6, 46.7, 405, 250 }, + [3] = { 25.7, 14.2, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [3049] = { + ["coords"] = { + [1] = { 34.9, 21.1, 215, 250 }, + [2] = { 88.5, 48.3, 405, 250 }, + [3] = { 25.2, 21, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [3050] = { + ["coords"] = { + [1] = { 38.8, 25.9, 215, 375 }, + [2] = { 44.4, 44.7, 1638, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "21", + }, + [3051] = { + ["coords"] = { + [1] = { 38.6, 49.9, 17, 375 }, + [2] = { 64.9, 43.3, 215, 375 }, + }, + ["lvl"] = "12", + }, + [3052] = { + ["coords"] = { + [1] = { 46.8, 60.2, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "21", + }, + [3053] = { + ["coords"] = { + [1] = { 80.4, 77, 400, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [3054] = { + ["coords"] = { + [1] = { 47.8, 57.5, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "7", + }, + [3055] = { + ["coords"] = { + [1] = { 47, 57.1, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "10", + }, + [3056] = { + ["coords"] = { + [1] = { 37.3, 14.2, 215, 5400 }, + }, + ["lvl"] = "12", + ["rnk"] = "4", + }, + [3057] = { + ["coords"] = { + [1] = { 42.1, 27.3, 215, 86400 }, + [2] = { 60.3, 51.7, 1638, 86400 }, + }, + ["fac"] = "H", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [3058] = { + ["coords"] = { + [1] = { 32.5, 35, 17, 90 }, + [2] = { 53, 14, 215, 90 }, + }, + ["lvl"] = "11", + }, + [3059] = { + ["coords"] = { + [1] = { 44, 76.1, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "10", + }, + [3060] = { + ["coords"] = { + [1] = { 45.1, 75.9, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "9", + }, + [3061] = { + ["coords"] = { + [1] = { 44.3, 75.7, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "11", + }, + [3062] = { + ["coords"] = { + [1] = { 45, 75.9, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "10", + }, + [3063] = { + ["coords"] = { + [1] = { 49.5, 60.6, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "14", + }, + [3064] = { + ["coords"] = { + [1] = { 48.5, 59.6, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "12", + }, + [3065] = { + ["coords"] = { + [1] = { 47.8, 55.7, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "11", + }, + [3066] = { + ["coords"] = { + [1] = { 48.4, 59.2, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "13", + }, + [3067] = { + ["coords"] = { + [1] = { 45.4, 58.1, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "12", + }, + [3068] = { + ["coords"] = { + [1] = { 50.4, 42.6, 215, 9000 }, + }, + ["lvl"] = "9", + ["rnk"] = "4", + }, + [3069] = { + ["coords"] = { + [1] = { 45.4, 57.9, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "23", + }, + [3070] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "11", + }, + [3071] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "10", + }, + [3072] = { + ["coords"] = { + [1] = { 45.3, 76.5, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "8", + }, + [3073] = { + ["coords"] = { + [1] = { 44.1, 77.5, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "9", + }, + [3074] = { + ["coords"] = { + [1] = { 44.1, 77.3, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "7", + }, + [3075] = { + ["coords"] = { + [1] = { 44.2, 77.5, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "10", + }, + [3076] = { + ["coords"] = { + [1] = { 45.9, 57.7, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "12", + }, + [3077] = { + ["coords"] = { + [1] = { 45.7, 58.6, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "11", + }, + [3078] = { + ["coords"] = { + [1] = { 45.5, 58.5, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "10", + }, + [3079] = { + ["coords"] = { + [1] = { 45.8, 58.7, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "14", + }, + [3080] = { + ["coords"] = { + [1] = { 45.9, 58.7, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "13", + }, + [3081] = { + ["coords"] = { + [1] = { 46.2, 58.2, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "10", + }, + [3082] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "25-30", + }, + [3083] = { + ["coords"] = { + [1] = { 42.2, 28, 215, 250 }, + [2] = { 42.3, 27.6, 215, 250 }, + [3] = { 41.9, 27.5, 215, 250 }, + [4] = { 40.2, 27.3, 215, 250 }, + [5] = { 42, 27.2, 215, 250 }, + [6] = { 42.3, 27.2, 215, 250 }, + [7] = { 61.1, 55, 1638, 250 }, + [8] = { 61.6, 52.8, 1638, 250 }, + [9] = { 59.8, 52.3, 1638, 250 }, + [10] = { 51.4, 51.3, 1638, 250 }, + [11] = { 59.8, 51.1, 1638, 250 }, + [12] = { 61.7, 50.8, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [3084] = { + ["coords"] = { + [1] = { 41.8, 32.8, 215, 300 }, + [2] = { 37.1, 29.9, 215, 300 }, + [3] = { 38, 29.6, 215, 300 }, + [4] = { 38.8, 29.4, 215, 300 }, + [5] = { 39, 29.3, 215, 300 }, + [6] = { 37.4, 29.2, 215, 300 }, + [7] = { 41.5, 28.2, 215, 300 }, + [8] = { 41.7, 28.1, 215, 300 }, + [9] = { 37.2, 27.3, 215, 300 }, + [10] = { 37.3, 27.1, 215, 300 }, + [11] = { 41.8, 26.6, 215, 300 }, + [12] = { 41.6, 26.4, 215, 300 }, + [13] = { 38.6, 25, 215, 300 }, + [14] = { 38.8, 24.9, 215, 300 }, + [15] = { 38.6, 24.7, 215, 300 }, + [16] = { 40.1, 24.5, 215, 300 }, + [17] = { 40.1, 24.3, 215, 300 }, + [18] = { 40.2, 23.2, 215, 300 }, + [19] = { 36, 23.2, 215, 300 }, + [20] = { 44.4, 23, 215, 300 }, + [21] = { 36.1, 22.8, 215, 300 }, + [22] = { 35.5, 20.7, 215, 300 }, + [23] = { 89.2, 47.8, 405, 300 }, + [24] = { 59.1, 78.6, 1638, 300 }, + [25] = { 36, 64.3, 1638, 300 }, + [26] = { 40.2, 62.7, 1638, 300 }, + [27] = { 44.4, 61.7, 1638, 300 }, + [28] = { 45.1, 61.3, 1638, 300 }, + [29] = { 37.4, 61, 1638, 300 }, + [30] = { 57.7, 55.9, 1638, 300 }, + [31] = { 58.6, 55.3, 1638, 300 }, + [32] = { 36.3, 51.5, 1638, 300 }, + [33] = { 37, 50.6, 1638, 300 }, + [34] = { 58.8, 47.9, 1638, 300 }, + [35] = { 58, 47.1, 1638, 300 }, + [36] = { 43.1, 40, 1638, 300 }, + [37] = { 44.3, 39.6, 1638, 300 }, + [38] = { 43.3, 38.6, 1638, 300 }, + [39] = { 50.6, 37.8, 1638, 300 }, + [40] = { 50.4, 36.5, 1638, 300 }, + [41] = { 51.2, 31.5, 1638, 300 }, + [42] = { 30.5, 31, 1638, 300 }, + [43] = { 72, 30.2, 1638, 300 }, + [44] = { 31, 29.5, 1638, 300 }, + [45] = { 28, 18.9, 1638, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [3085] = { + ["coords"] = { + [1] = { 26.6, 43.5, 44, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [3086] = { + ["coords"] = { + [1] = { 22.8, 44.3, 44, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [3087] = { + ["coords"] = { + [1] = { 22.8, 43.5, 44, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "22", + }, + [3088] = { + ["coords"] = { + [1] = { 23.8, 41.3, 44, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [3089] = { + ["coords"] = { + [1] = { 26.7, 43.2, 44, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "21", + }, + [3090] = { + ["coords"] = { + [1] = { 25.1, 41.1, 44, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [3091] = { + ["coords"] = { + [1] = { 27.2, 45.5, 44, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "26", + }, + [3092] = { + ["coords"] = { + [1] = { 38.6, 25.9, 215, 250 }, + [2] = { 43.4, 44.3, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3093] = { + ["coords"] = { + [1] = { 38.5, 25.7, 215, 250 }, + [2] = { 42.7, 43.5, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3094] = { + ["coords"] = { + [1] = { 66.4, 76.7, 10, 300 }, + [2] = { 66.2, 76.4, 10, 300 }, + [3] = { 66, 69.3, 10, 300 }, + [4] = { 65.5, 67.8, 10, 300 }, + [5] = { 65.3, 67.7, 10, 300 }, + [6] = { 65.6, 67.4, 10, 300 }, + [7] = { 14.3, 67.1, 10, 300 }, + [8] = { 52.1, 62.2, 10, 300 }, + [9] = { 53.7, 61.9, 10, 300 }, + [10] = { 51.8, 61.5, 10, 300 }, + [11] = { 53.7, 60.6, 10, 300 }, + [12] = { 55.1, 60.2, 10, 300 }, + [13] = { 54.4, 60.1, 10, 300 }, + [14] = { 54.4, 59.2, 10, 300 }, + [15] = { 18.1, 57.9, 10, 300 }, + [16] = { 21.3, 57.2, 10, 300 }, + [17] = { 17.5, 56.4, 10, 300 }, + [18] = { 21.2, 55.5, 10, 300 }, + [19] = { 19.4, 55.1, 10, 300 }, + [20] = { 17.6, 54.9, 10, 300 }, + [21] = { 18, 54.5, 10, 300 }, + [22] = { 18.1, 54.3, 10, 300 }, + [23] = { 19.2, 53.7, 10, 300 }, + [24] = { 19.4, 53.5, 10, 300 }, + [25] = { 77.5, 36.2, 10, 300 }, + [26] = { 78.6, 36.2, 10, 300 }, + [27] = { 78.5, 35, 10, 300 }, + }, + ["lvl"] = "49-51", + }, + [3095] = { + ["coords"] = { + [1] = { 38.5, 26, 215, 250 }, + [2] = { 42.8, 44.8, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3096] = { + ["coords"] = { + [1] = { 74.5, 79.5, 44, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "22", + }, + [3097] = { + ["coords"] = { + [1] = { 88.3, 71, 44, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [3098] = { + ["coords"] = { + [1] = { 42, 72.6, 14, 180 }, + [2] = { 42.6, 72.5, 14, 180 }, + [3] = { 43.9, 72.5, 14, 180 }, + [4] = { 43.3, 72.5, 14, 180 }, + [5] = { 42, 71.8, 14, 180 }, + [6] = { 41.4, 71.6, 14, 180 }, + [7] = { 43.9, 71.6, 14, 180 }, + [8] = { 42.7, 71.6, 14, 180 }, + [9] = { 44.6, 71.6, 14, 180 }, + [10] = { 44, 70.7, 14, 180 }, + [11] = { 44.5, 70.6, 14, 180 }, + [12] = { 45.2, 70.5, 14, 180 }, + [13] = { 45.2, 69.7, 14, 180 }, + [14] = { 45.8, 68.9, 14, 180 }, + [15] = { 46.4, 68.8, 14, 180 }, + [16] = { 47, 68.7, 14, 180 }, + [17] = { 45.8, 67.1, 14, 180 }, + [18] = { 45.2, 67, 14, 180 }, + [19] = { 46.5, 66.9, 14, 180 }, + [20] = { 44.5, 66, 14, 180 }, + [21] = { 45.1, 65.9, 14, 180 }, + [22] = { 43.9, 65.9, 14, 180 }, + [23] = { 46.4, 65.9, 14, 180 }, + [24] = { 45.7, 65.8, 14, 180 }, + [25] = { 41.3, 65.1, 14, 180 }, + [26] = { 47.1, 65.1, 14, 180 }, + [27] = { 45.2, 65.1, 14, 180 }, + [28] = { 44.5, 65, 14, 180 }, + [29] = { 45.7, 65, 14, 180 }, + [30] = { 43.3, 65, 14, 180 }, + [31] = { 43.9, 65, 14, 180 }, + [32] = { 42.6, 65, 14, 180 }, + [33] = { 42, 64.9, 14, 180 }, + [34] = { 42, 64.2, 14, 180 }, + [35] = { 46.5, 64.1, 14, 180 }, + [36] = { 42.7, 64.1, 14, 180 }, + [37] = { 45.1, 64.1, 14, 180 }, + [38] = { 44.5, 64.1, 14, 180 }, + [39] = { 43.9, 64.1, 14, 180 }, + [40] = { 43.2, 64, 14, 180 }, + [41] = { 43.2, 63.2, 14, 180 }, + [42] = { 43.9, 63.1, 14, 180 }, + [43] = { 45.8, 63.1, 14, 180 }, + [44] = { 42.1, 63.1, 14, 180 }, + [45] = { 44.5, 63.1, 14, 180 }, + [46] = { 45.1, 63.1, 14, 180 }, + [47] = { 46.3, 63, 14, 180 }, + [48] = { 43.9, 62.4, 14, 180 }, + [49] = { 45.2, 62.2, 14, 180 }, + [50] = { 45.8, 62.2, 14, 180 }, + [51] = { 42, 62.1, 14, 180 }, + [52] = { 43.4, 62.1, 14, 180 }, + [53] = { 44.5, 62.1, 14, 180 }, + [54] = { 44.4, 61.5, 14, 180 }, + [55] = { 44, 61.2, 14, 180 }, + [56] = { 45.8, 61.2, 14, 180 }, + [57] = { 42, 61.2, 14, 180 }, + [58] = { 42.6, 61.2, 14, 180 }, + [59] = { 43.5, 61.1, 14, 180 }, + [60] = { 45.2, 60.4, 14, 180 }, + [61] = { 44.5, 60.4, 14, 180 }, + [62] = { 43.9, 60.3, 14, 180 }, + [63] = { 43.2, 60.3, 14, 180 }, + [64] = { 42.7, 60.1, 14, 180 }, + [65] = { 44.6, 59.3, 14, 180 }, + [66] = { 67.2, 35, 17, 180 }, + [67] = { 67.2, 34.5, 17, 180 }, + [68] = { 66.8, 34.5, 17, 180 }, + }, + ["lvl"] = "1-2", + }, + [3099] = { + ["coords"] = { + [1] = { 51.8, 78.1, 14, 300 }, + [2] = { 51.6, 72.5, 14, 300 }, + [3] = { 50.5, 71.8, 14, 300 }, + [4] = { 54.1, 70.8, 14, 300 }, + [5] = { 53.5, 68.1, 14, 300 }, + [6] = { 54.6, 67.4, 14, 300 }, + [7] = { 51.9, 66.9, 14, 300 }, + [8] = { 51.7, 65.9, 14, 300 }, + [9] = { 51.6, 65.4, 14, 300 }, + [10] = { 52.7, 65, 14, 300 }, + [11] = { 51.5, 63.7, 14, 300 }, + [12] = { 52.2, 63, 14, 300 }, + [13] = { 53.9, 62.6, 14, 300 }, + [14] = { 51.5, 62.1, 14, 300 }, + [15] = { 52, 61.7, 14, 300 }, + [16] = { 52.2, 60.7, 14, 300 }, + [17] = { 53.8, 59.1, 14, 300 }, + [18] = { 51.7, 59, 14, 300 }, + [19] = { 55.6, 58.7, 14, 300 }, + [20] = { 53.2, 58.6, 14, 300 }, + [21] = { 54.5, 57.4, 14, 300 }, + [22] = { 52.6, 57.1, 14, 300 }, + [23] = { 55.3, 57, 14, 300 }, + [24] = { 51.2, 56.7, 14, 300 }, + [25] = { 52.4, 56.6, 14, 300 }, + [26] = { 55.7, 56.2, 14, 300 }, + [27] = { 53.9, 56.2, 14, 300 }, + [28] = { 50.7, 55.9, 14, 300 }, + [29] = { 50.8, 53.9, 14, 300 }, + [30] = { 51.7, 53.6, 14, 300 }, + [31] = { 54.2, 53.1, 14, 300 }, + [32] = { 51, 51.8, 14, 300 }, + [33] = { 40.7, 50.8, 14, 300 }, + [34] = { 41.7, 50.3, 14, 300 }, + [35] = { 42.9, 50.1, 14, 300 }, + [36] = { 52.1, 49.9, 14, 300 }, + [37] = { 53.8, 49.8, 14, 300 }, + [38] = { 51.2, 49.4, 14, 300 }, + [39] = { 40.2, 49, 14, 300 }, + [40] = { 53.3, 48.8, 14, 300 }, + [41] = { 45.4, 48.6, 14, 300 }, + [42] = { 46, 48.3, 14, 300 }, + [43] = { 52.2, 47.9, 14, 300 }, + [44] = { 40, 47.8, 14, 300 }, + [45] = { 42.8, 47.7, 14, 300 }, + [46] = { 40, 47.4, 14, 300 }, + [47] = { 42, 47.1, 14, 300 }, + [48] = { 38.9, 47.1, 14, 300 }, + [49] = { 57.9, 46.8, 14, 300 }, + [50] = { 43.7, 46.4, 14, 300 }, + [51] = { 47.1, 46.2, 14, 300 }, + [52] = { 53.4, 46.2, 14, 300 }, + [53] = { 51.7, 46, 14, 300 }, + [54] = { 42.7, 46, 14, 300 }, + [55] = { 48.3, 45.9, 14, 300 }, + [56] = { 38.6, 45, 14, 300 }, + [57] = { 41.1, 44.9, 14, 300 }, + [58] = { 40.8, 44.9, 14, 300 }, + [59] = { 46.7, 44.7, 14, 300 }, + [60] = { 45.7, 44.6, 14, 300 }, + [61] = { 47.6, 44.5, 14, 300 }, + [62] = { 46.2, 44.4, 14, 300 }, + [63] = { 57.4, 44.4, 14, 300 }, + [64] = { 42.1, 44.3, 14, 300 }, + [65] = { 55.4, 44, 14, 300 }, + [66] = { 43.1, 44, 14, 300 }, + [67] = { 45, 43.5, 14, 300 }, + [68] = { 47.7, 43.4, 14, 300 }, + [69] = { 43.9, 43.3, 14, 300 }, + [70] = { 42.9, 43.3, 14, 300 }, + [71] = { 47, 42.8, 14, 300 }, + [72] = { 58.4, 41.6, 14, 300 }, + [73] = { 56.2, 41.3, 14, 300 }, + [74] = { 45.2, 41.3, 14, 300 }, + [75] = { 40.7, 40.7, 14, 300 }, + [76] = { 55.2, 40.3, 14, 300 }, + [77] = { 48.2, 40.2, 14, 300 }, + [78] = { 56.2, 39.6, 14, 300 }, + [79] = { 55.4, 39.6, 14, 300 }, + [80] = { 46.2, 39.1, 14, 300 }, + [81] = { 56, 39, 14, 300 }, + [82] = { 54.5, 38.7, 14, 300 }, + [83] = { 47.2, 38.3, 14, 300 }, + [84] = { 45.7, 38.3, 14, 300 }, + [85] = { 54.4, 38, 14, 300 }, + [86] = { 39, 37.8, 14, 300 }, + [87] = { 51.4, 37.6, 14, 300 }, + [88] = { 44.6, 37.1, 14, 300 }, + [89] = { 41.1, 36.8, 14, 300 }, + [90] = { 53.2, 36.8, 14, 300 }, + [91] = { 56.5, 36.7, 14, 300 }, + [92] = { 48.3, 36.7, 14, 300 }, + [93] = { 50.7, 36.7, 14, 300 }, + [94] = { 39.4, 36.5, 14, 300 }, + [95] = { 38.1, 35.9, 14, 300 }, + [96] = { 54.4, 35.9, 14, 300 }, + [97] = { 55.8, 35.4, 14, 300 }, + [98] = { 53.5, 35, 14, 300 }, + [99] = { 46, 34.9, 14, 300 }, + [100] = { 49.5, 34.8, 14, 300 }, + [101] = { 50.9, 34.7, 14, 300 }, + [102] = { 54.6, 34.7, 14, 300 }, + [103] = { 44.4, 34.6, 14, 300 }, + [104] = { 51.5, 34.1, 14, 300 }, + [105] = { 43.8, 34, 14, 300 }, + [106] = { 51.1, 33.1, 14, 300 }, + [107] = { 42.6, 32.9, 14, 300 }, + [108] = { 53.4, 32.8, 14, 300 }, + [109] = { 55.4, 32.8, 14, 300 }, + [110] = { 40.4, 32.8, 14, 300 }, + [111] = { 53.9, 31.6, 14, 300 }, + [112] = { 42, 31.5, 14, 300 }, + [113] = { 53.1, 31.3, 14, 300 }, + [114] = { 54.2, 30.6, 14, 300 }, + }, + ["lvl"] = "6-7", + }, + [3100] = { + ["coords"] = { + [1] = { 37.8, 55.8, 14, 300 }, + [2] = { 35.4, 55.7, 14, 300 }, + [3] = { 37.5, 55.6, 14, 300 }, + [4] = { 36.4, 55.5, 14, 300 }, + [5] = { 37.5, 54.6, 14, 300 }, + [6] = { 37.1, 52.4, 14, 300 }, + [7] = { 39.4, 51.7, 14, 300 }, + [8] = { 39.6, 49.5, 14, 300 }, + [9] = { 35.1, 49.3, 14, 300 }, + [10] = { 36.3, 49.2, 14, 300 }, + [11] = { 38.5, 48.9, 14, 300 }, + [12] = { 38, 48.5, 14, 300 }, + [13] = { 36.9, 48.2, 14, 300 }, + [14] = { 35.7, 47, 14, 300 }, + [15] = { 35, 46.5, 14, 300 }, + [16] = { 36.9, 46.1, 14, 300 }, + [17] = { 35.6, 45.6, 14, 300 }, + [18] = { 37.6, 45.2, 14, 300 }, + [19] = { 36.9, 44.9, 14, 300 }, + [20] = { 38.6, 44.3, 14, 300 }, + [21] = { 39.6, 44.3, 14, 300 }, + [22] = { 35, 43.3, 14, 300 }, + [23] = { 40.7, 42.5, 14, 300 }, + [24] = { 38.3, 42.1, 14, 300 }, + [25] = { 37.1, 41.3, 14, 300 }, + [26] = { 35.6, 39.4, 14, 300 }, + [27] = { 36.3, 38.9, 14, 300 }, + [28] = { 36.5, 38.5, 14, 300 }, + [29] = { 36.3, 35.7, 14, 300 }, + [30] = { 35.9, 34.9, 14, 300 }, + [31] = { 40.1, 33.8, 14, 300 }, + [32] = { 38.6, 33.7, 14, 300 }, + [33] = { 36.2, 31.9, 14, 300 }, + [34] = { 37, 31.7, 14, 300 }, + [35] = { 35.7, 31, 14, 300 }, + [36] = { 37.7, 30, 14, 300 }, + [37] = { 57, 29.8, 14, 300 }, + [38] = { 38.3, 28.9, 14, 300 }, + [39] = { 54.6, 28.8, 14, 300 }, + [40] = { 56.9, 28.4, 14, 300 }, + [41] = { 42.8, 28.3, 14, 300 }, + [42] = { 55.2, 28.1, 14, 300 }, + [43] = { 37, 28.1, 14, 300 }, + [44] = { 43.1, 27.9, 14, 300 }, + [45] = { 45.4, 27.3, 14, 300 }, + [46] = { 58.4, 27.3, 14, 300 }, + [47] = { 44.6, 27, 14, 300 }, + [48] = { 37.2, 26.4, 14, 300 }, + [49] = { 43.9, 26.3, 14, 300 }, + [50] = { 36, 26, 14, 300 }, + [51] = { 44.6, 25.2, 14, 300 }, + [52] = { 45.4, 25.1, 14, 300 }, + [53] = { 56.9, 24.6, 14, 300 }, + [54] = { 57.8, 24.5, 14, 300 }, + [55] = { 36.2, 24.3, 14, 300 }, + [56] = { 59, 24.2, 14, 300 }, + [57] = { 56.9, 23.5, 14, 300 }, + [58] = { 44.5, 23.3, 14, 300 }, + [59] = { 42.1, 22.8, 14, 300 }, + [60] = { 57.7, 22.5, 14, 300 }, + [61] = { 43.9, 22.4, 14, 300 }, + [62] = { 42.6, 22.3, 14, 300 }, + [63] = { 44.8, 22.3, 14, 300 }, + [64] = { 46, 22.2, 14, 300 }, + [65] = { 40.2, 21.8, 14, 300 }, + [66] = { 56, 21.7, 14, 300 }, + [67] = { 40.5, 21.6, 14, 300 }, + [68] = { 43.9, 21.5, 14, 300 }, + [69] = { 42.7, 21.5, 14, 300 }, + [70] = { 43.2, 21.4, 14, 300 }, + [71] = { 38.7, 21.2, 14, 300 }, + [72] = { 44.6, 21.2, 14, 300 }, + [73] = { 48.6, 20.7, 14, 300 }, + [74] = { 48, 20.6, 14, 300 }, + [75] = { 55.2, 20.5, 14, 300 }, + [76] = { 57.7, 20.3, 14, 300 }, + [77] = { 47.1, 20.2, 14, 300 }, + [78] = { 39.5, 19.6, 14, 300 }, + [79] = { 44.5, 19.5, 14, 300 }, + [80] = { 46, 19.4, 14, 300 }, + [81] = { 54.8, 19.4, 14, 300 }, + [82] = { 57.1, 19.3, 14, 300 }, + [83] = { 37.2, 19, 14, 300 }, + [84] = { 54, 18.9, 14, 300 }, + [85] = { 39.5, 18.7, 14, 300 }, + [86] = { 45.1, 18.7, 14, 300 }, + [87] = { 55.1, 18.6, 14, 300 }, + [88] = { 57.5, 18.5, 14, 300 }, + [89] = { 42.4, 18.5, 14, 300 }, + [90] = { 47.8, 18.4, 14, 300 }, + [91] = { 43.3, 18.1, 14, 300 }, + [92] = { 46.3, 17.9, 14, 300 }, + [93] = { 57, 17.8, 14, 300 }, + [94] = { 44.7, 17.8, 14, 300 }, + [95] = { 39.4, 17.7, 14, 300 }, + [96] = { 44.9, 17.7, 14, 300 }, + [97] = { 42.7, 17.6, 14, 300 }, + [98] = { 52.9, 17.5, 14, 300 }, + [99] = { 54.3, 17.4, 14, 300 }, + [100] = { 44.2, 17.3, 14, 300 }, + [101] = { 40.1, 17.1, 14, 300 }, + [102] = { 56.1, 17, 14, 300 }, + [103] = { 43.2, 16.9, 14, 300 }, + [104] = { 53.6, 16.8, 14, 300 }, + [105] = { 45.2, 16.8, 14, 300 }, + [106] = { 41.9, 16.7, 14, 300 }, + [107] = { 51.6, 16.7, 14, 300 }, + [108] = { 45.5, 16.6, 14, 300 }, + [109] = { 44.9, 16.2, 14, 300 }, + [110] = { 55.4, 16.1, 14, 300 }, + [111] = { 52.5, 15.9, 14, 300 }, + [112] = { 45.8, 15.8, 14, 300 }, + [113] = { 48.3, 15.8, 14, 300 }, + [114] = { 50.8, 15.8, 14, 300 }, + [115] = { 54.6, 15.8, 14, 300 }, + [116] = { 43.8, 15.5, 14, 300 }, + [117] = { 45.9, 15.5, 14, 300 }, + [118] = { 44, 15.3, 14, 300 }, + [119] = { 50.2, 14.9, 14, 300 }, + [120] = { 52.2, 14.8, 14, 300 }, + [121] = { 52.9, 14.2, 14, 300 }, + [122] = { 55.2, 14, 14, 300 }, + [123] = { 56.5, 13.2, 14, 300 }, + [124] = { 51.6, 13.2, 14, 300 }, + [125] = { 53.4, 13, 14, 300 }, + [126] = { 50.2, 13, 14, 300 }, + [127] = { 55.6, 12.9, 14, 300 }, + [128] = { 47.7, 12.9, 14, 300 }, + [129] = { 51.8, 11.8, 14, 300 }, + [130] = { 54.5, 11, 14, 300 }, + [131] = { 55.1, 11, 14, 300 }, + [132] = { 55.8, 10, 14, 300 }, + [133] = { 53.9, 9.3, 14, 300 }, + [134] = { 65, 26.2, 17, 300 }, + [135] = { 63.7, 26.1, 17, 300 }, + [136] = { 64.8, 26.1, 17, 300 }, + [137] = { 64.3, 26, 17, 300 }, + [138] = { 64.8, 25.6, 17, 300 }, + [139] = { 63.6, 22.8, 17, 300 }, + [140] = { 64.2, 22.8, 17, 300 }, + [141] = { 63.9, 21.6, 17, 300 }, + [142] = { 63.5, 21.3, 17, 300 }, + [143] = { 63.8, 20.9, 17, 300 }, + [144] = { 63.5, 19.7, 17, 300 }, + [145] = { 63.8, 17.6, 17, 300 }, + [146] = { 64.2, 17.4, 17, 300 }, + [147] = { 64.3, 17.2, 17, 300 }, + [148] = { 64.2, 15.7, 17, 300 }, + [149] = { 64, 15.3, 17, 300 }, + [150] = { 64.1, 13.8, 17, 300 }, + [151] = { 63.9, 13.3, 17, 300 }, + [152] = { 64.9, 12.7, 17, 300 }, + [153] = { 65.2, 12.2, 17, 300 }, + [154] = { 64.6, 11.7, 17, 300 }, + [155] = { 64.7, 10.9, 17, 300 }, + [156] = { 64.1, 10.7, 17, 300 }, + [157] = { 64.1, 9.8, 17, 300 }, + [158] = { 64.7, 7, 17, 300 }, + [159] = { 57.4, 98.5, 1637, 300 }, + }, + ["lvl"] = "8-9", + }, + [3101] = { + ["coords"] = { + [1] = { 43.9, 58.5, 14, 200 }, + [2] = { 44.5, 58.5, 14, 300 }, + [3] = { 45.8, 58.4, 14, 300 }, + [4] = { 45, 58.2, 14, 300 }, + [5] = { 45.2, 57.5, 14, 300 }, + [6] = { 46.4, 57.5, 14, 300 }, + [7] = { 45.8, 57.4, 14, 300 }, + [8] = { 47, 57.3, 14, 300 }, + [9] = { 44.4, 57.2, 14, 300 }, + [10] = { 46.1, 57, 14, 300 }, + [11] = { 44.8, 57, 14, 300 }, + [12] = { 44.2, 57, 14, 300 }, + [13] = { 45.7, 56.8, 14, 300 }, + [14] = { 45.4, 56.3, 14, 300 }, + [15] = { 44.6, 56.1, 14, 300 }, + [16] = { 46.2, 56.1, 14, 300 }, + [17] = { 45.3, 55.7, 14, 300 }, + [18] = { 43.8, 55.7, 14, 300 }, + [19] = { 43.5, 55.6, 14, 300 }, + [20] = { 43.4, 55.6, 14, 300 }, + [21] = { 43.9, 55.3, 14, 300 }, + [22] = { 44.2, 55.3, 14, 300 }, + [23] = { 45.1, 55, 14, 300 }, + [24] = { 42.6, 54.6, 14, 300 }, + [25] = { 44.3, 54.3, 14, 300 }, + [26] = { 43.2, 54.3, 14, 300 }, + [27] = { 43.9, 54.3, 14, 300 }, + [28] = { 43.9, 53.8, 14, 300 }, + [29] = { 44.7, 53.7, 14, 300 }, + [30] = { 43, 53.6, 14, 300 }, + [31] = { 43.9, 53.5, 14, 300 }, + [32] = { 43.5, 53.5, 14, 300 }, + [33] = { 42.8, 52.7, 14, 300 }, + [34] = { 44.4, 52.7, 14, 300 }, + [35] = { 43.7, 52.6, 14, 300 }, + [36] = { 42.8, 52.5, 14, 300 }, + [37] = { 42.8, 52.3, 14, 300 }, + }, + ["lvl"] = "3-4", + }, + [3102] = { + ["coords"] = { + [1] = { 45.3, 55.7, 14, 300 }, + [2] = { 43, 55.3, 14, 300 }, + [3] = { 45.5, 55.3, 14, 300 }, + [4] = { 44.5, 55, 14, 300 }, + [5] = { 43.9, 54.8, 14, 300 }, + [6] = { 44.8, 54.6, 14, 300 }, + [7] = { 42.4, 54.2, 14, 300 }, + [8] = { 44.3, 54.1, 14, 300 }, + [9] = { 43.3, 53.9, 14, 300 }, + [10] = { 42.5, 53.5, 14, 300 }, + [11] = { 44.9, 53.1, 14, 300 }, + [12] = { 44.1, 52.9, 14, 300 }, + [13] = { 44.8, 52.5, 14, 300 }, + [14] = { 43.6, 52.1, 14, 300 }, + [15] = { 43, 52.1, 14, 300 }, + }, + ["lvl"] = "3-4", + }, + [3103] = { + ["coords"] = { + [1] = { 60.9, 96.3, 14, 300 }, + [2] = { 62.2, 92.5, 14, 300 }, + [3] = { 59.1, 91.5, 14, 300 }, + [4] = { 69.9, 88.7, 14, 300 }, + [5] = { 59.1, 87.6, 14, 300 }, + [6] = { 59.7, 86.7, 14, 300 }, + [7] = { 70.3, 85.9, 14, 300 }, + [8] = { 52.7, 84.9, 14, 300 }, + [9] = { 51.5, 84.8, 14, 300 }, + [10] = { 70.5, 82.3, 14, 300 }, + [11] = { 59, 82, 14, 300 }, + [12] = { 61.8, 80.4, 14, 300 }, + [13] = { 57.3, 80, 14, 300 }, + [14] = { 69.8, 77.3, 14, 300 }, + [15] = { 60.9, 77.3, 14, 300 }, + [16] = { 67.3, 77.2, 14, 300 }, + [17] = { 68.7, 77.2, 14, 300 }, + [18] = { 64.6, 77.2, 14, 300 }, + [19] = { 70.8, 75.2, 14, 300 }, + [20] = { 61, 72.7, 14, 300 }, + [21] = { 71.7, 72.6, 14, 300 }, + [22] = { 59.7, 72.4, 14, 300 }, + [23] = { 62.1, 68.9, 14, 300 }, + [24] = { 62.2, 67, 14, 300 }, + [25] = { 62.8, 61.1, 14, 300 }, + [26] = { 63.5, 60.1, 14, 300 }, + [27] = { 63.4, 58.5, 14, 300 }, + [28] = { 63, 56.4, 14, 300 }, + [29] = { 64, 55.4, 14, 300 }, + [30] = { 64.7, 54.8, 14, 300 }, + [31] = { 65.5, 54, 14, 300 }, + [32] = { 65.2, 51.5, 14, 300 }, + [33] = { 61.6, 50.9, 14, 300 }, + [34] = { 63.5, 50.8, 14, 300 }, + [35] = { 65.2, 49.8, 14, 300 }, + [36] = { 64.7, 48.8, 14, 300 }, + [37] = { 62.7, 47, 14, 300 }, + [38] = { 62.8, 45, 14, 300 }, + [39] = { 61.5, 43.2, 14, 300 }, + [40] = { 62.8, 43, 14, 300 }, + [41] = { 62.1, 40.5, 14, 300 }, + [42] = { 77, 47.4, 17, 300 }, + [43] = { 77.7, 45.4, 17, 300 }, + [44] = { 76.1, 44.8, 17, 300 }, + [45] = { 81.7, 43.4, 17, 300 }, + [46] = { 76.1, 42.8, 17, 300 }, + [47] = { 76.4, 42.4, 17, 300 }, + [48] = { 82, 41.9, 17, 300 }, + [49] = { 72.7, 41.4, 17, 300 }, + [50] = { 72.1, 41.4, 17, 300 }, + }, + ["lvl"] = "6-7", + }, + [3104] = { + ["coords"] = { + [1] = { 58.2, 85.2, 14, 300 }, + [2] = { 53.9, 84.8, 14, 300 }, + [3] = { 61, 84.6, 14, 300 }, + [4] = { 55.1, 82.8, 14, 300 }, + [5] = { 66.6, 78.1, 14, 300 }, + [6] = { 60.2, 75.7, 14, 300 }, + [7] = { 63.4, 73.8, 14, 300 }, + [8] = { 65.9, 73.6, 14, 300 }, + [9] = { 60.3, 73.5, 14, 300 }, + [10] = { 65.7, 71.7, 14, 300 }, + [11] = { 60.3, 71.6, 14, 300 }, + [12] = { 61.5, 69.7, 14, 300 }, + [13] = { 64, 57.6, 14, 300 }, + [14] = { 63.5, 55.8, 14, 300 }, + [15] = { 61.5, 54.4, 14, 300 }, + [16] = { 64.8, 50.9, 14, 300 }, + [17] = { 62.1, 49.7, 14, 300 }, + [18] = { 61.5, 49, 14, 300 }, + [19] = { 61.4, 44.8, 14, 300 }, + [20] = { 61.1, 42.6, 14, 300 }, + [21] = { 60.9, 40.4, 14, 300 }, + [22] = { 75.6, 41.5, 17, 300 }, + [23] = { 73.4, 41.4, 17, 300 }, + [24] = { 77.1, 41.3, 17, 300 }, + }, + ["lvl"] = "6-7", + }, + [3105] = { + ["coords"] = { + [1] = { 60.2, 30, 14, 300 }, + [2] = { 59.8, 28.9, 14, 300 }, + [3] = { 60.4, 26.4, 14, 300 }, + [4] = { 60.3, 20.7, 14, 300 }, + [5] = { 60.4, 18.5, 14, 300 }, + [6] = { 60.3, 17.2, 14, 300 }, + [7] = { 58.8, 15.1, 14, 300 }, + [8] = { 58.5, 10.2, 14, 300 }, + [9] = { 57.5, 9.4, 14, 300 }, + }, + ["lvl"] = "8-9", + }, + [3106] = { + ["coords"] = { + [1] = { 51.5, 84, 14, 300 }, + [2] = { 52.1, 84, 14, 300 }, + [3] = { 54.7, 84, 14, 300 }, + [4] = { 52.2, 83.1, 14, 300 }, + [5] = { 52.7, 83, 14, 300 }, + [6] = { 53.9, 83, 14, 300 }, + [7] = { 53.4, 83, 14, 300 }, + [8] = { 54.6, 82.9, 14, 300 }, + [9] = { 54, 82.2, 14, 300 }, + [10] = { 54.6, 82.1, 14, 300 }, + [11] = { 55.2, 81.7, 14, 300 }, + [12] = { 55.8, 80.3, 14, 300 }, + [13] = { 56.4, 80.1, 14, 300 }, + [14] = { 55.4, 79.9, 14, 300 }, + [15] = { 55.9, 79.3, 14, 300 }, + [16] = { 57.2, 79.2, 14, 300 }, + [17] = { 56.5, 79.2, 14, 300 }, + [18] = { 58.2, 78.8, 14, 300 }, + [19] = { 57.2, 78.1, 14, 300 }, + [20] = { 59.7, 73.5, 14, 300 }, + [21] = { 60.9, 69.9, 14, 300 }, + [22] = { 62.7, 62.5, 14, 300 }, + [23] = { 61.3, 61.8, 14, 300 }, + [24] = { 63.4, 61, 14, 300 }, + [25] = { 62.7, 58.2, 14, 300 }, + [26] = { 63.9, 57.2, 14, 300 }, + [27] = { 64.9, 55, 14, 300 }, + [28] = { 62.9, 55, 14, 300 }, + [29] = { 63.2, 54.7, 14, 300 }, + [30] = { 63.8, 54.6, 14, 300 }, + [31] = { 66, 53.5, 14, 300 }, + [32] = { 61.7, 53.5, 14, 300 }, + [33] = { 61, 52.3, 14, 300 }, + [34] = { 62.8, 51.6, 14, 300 }, + [35] = { 65.9, 50.9, 14, 300 }, + [36] = { 61, 50.1, 14, 300 }, + [37] = { 65.5, 49.3, 14, 300 }, + [38] = { 60.3, 49, 14, 300 }, + [39] = { 62.8, 48.9, 14, 300 }, + [40] = { 64.1, 48.8, 14, 300 }, + [41] = { 61.2, 48, 14, 300 }, + [42] = { 63.1, 48, 14, 300 }, + [43] = { 64.1, 47.2, 14, 300 }, + [44] = { 60.3, 47, 14, 300 }, + [45] = { 63.4, 45.3, 14, 300 }, + [46] = { 60.3, 45.1, 14, 300 }, + [47] = { 63.2, 44.2, 14, 300 }, + [48] = { 62.5, 44, 14, 300 }, + [49] = { 60.9, 43.8, 14, 300 }, + [50] = { 60.3, 43.3, 14, 300 }, + [51] = { 61.5, 39.5, 14, 300 }, + [52] = { 72.1, 40.9, 17, 300 }, + [53] = { 72.4, 40.9, 17, 300 }, + [54] = { 73.8, 40.9, 17, 300 }, + [55] = { 72.5, 40.5, 17, 300 }, + }, + ["lvl"] = "5-6", + }, + [3107] = { + ["coords"] = { + [1] = { 64.6, 98.2, 14, 300 }, + [2] = { 63.3, 98, 14, 300 }, + [3] = { 64.6, 96.5, 14, 300 }, + [4] = { 61.9, 94.9, 14, 300 }, + [5] = { 64.6, 94.2, 14, 300 }, + [6] = { 65.2, 93.3, 14, 300 }, + [7] = { 63.2, 93.2, 14, 300 }, + [8] = { 63.7, 93.2, 14, 300 }, + [9] = { 63.4, 92.8, 14, 300 }, + [10] = { 60.3, 92.3, 14, 300 }, + [11] = { 65.9, 91.5, 14, 300 }, + [12] = { 67, 90.8, 14, 300 }, + [13] = { 62.1, 90.5, 14, 300 }, + [14] = { 65.1, 89.9, 14, 300 }, + [15] = { 63.9, 89, 14, 300 }, + [16] = { 69.5, 87.5, 14, 300 }, + [17] = { 61.5, 87.4, 14, 300 }, + [18] = { 61, 86.7, 14, 300 }, + [19] = { 58.9, 86.2, 14, 300 }, + [20] = { 60.2, 85.8, 14, 300 }, + [21] = { 58.3, 83.5, 14, 300 }, + [22] = { 61.4, 82.1, 14, 300 }, + [23] = { 62.8, 81.3, 14, 300 }, + [24] = { 59.6, 81.3, 14, 300 }, + [25] = { 62.1, 80.9, 14, 300 }, + [26] = { 70.4, 80.1, 14, 300 }, + [27] = { 66.1, 79.4, 14, 300 }, + [28] = { 62.1, 79.3, 14, 300 }, + [29] = { 64.1, 78.9, 14, 300 }, + [30] = { 69.7, 78.8, 14, 300 }, + [31] = { 68, 78.6, 14, 300 }, + [32] = { 69.3, 78.3, 14, 300 }, + [33] = { 63.6, 77, 14, 300 }, + [34] = { 62.1, 76.6, 14, 300 }, + [35] = { 67, 76.4, 14, 300 }, + [36] = { 69, 76.3, 14, 300 }, + [37] = { 62.7, 76.1, 14, 300 }, + [38] = { 70.5, 75.9, 14, 300 }, + [39] = { 65.9, 75.6, 14, 300 }, + [40] = { 67.3, 75.5, 14, 300 }, + [41] = { 65.5, 74.6, 14, 300 }, + [42] = { 63.1, 74, 14, 300 }, + [43] = { 71, 73.9, 14, 300 }, + [44] = { 66.3, 72.9, 14, 300 }, + [45] = { 65.1, 72.6, 14, 300 }, + [46] = { 64.1, 72.2, 14, 300 }, + [47] = { 71.1, 71.5, 14, 300 }, + [48] = { 66.2, 70.8, 14, 300 }, + [49] = { 66.1, 70, 14, 300 }, + [50] = { 70.5, 69, 14, 300 }, + [51] = { 67.9, 68.7, 14, 300 }, + [52] = { 58.8, 28.3, 14, 300 }, + [53] = { 59.9, 27.2, 14, 300 }, + [54] = { 60.8, 25.4, 14, 300 }, + [55] = { 60, 25.3, 14, 300 }, + [56] = { 60.3, 24.7, 14, 300 }, + [57] = { 59.8, 23.6, 14, 300 }, + [58] = { 60.2, 22.8, 14, 300 }, + [59] = { 60.9, 17.7, 14, 300 }, + [60] = { 79, 48.4, 17, 300 }, + [61] = { 78.3, 48.2, 17, 300 }, + [62] = { 79, 47.4, 17, 300 }, + [63] = { 77.5, 46.6, 17, 300 }, + [64] = { 78.9, 46.2, 17, 300 }, + [65] = { 79.3, 45.8, 17, 300 }, + [66] = { 78.2, 45.7, 17, 300 }, + [67] = { 78.5, 45.7, 17, 300 }, + [68] = { 78.3, 45.5, 17, 300 }, + [69] = { 76.7, 45.2, 17, 300 }, + [70] = { 79.7, 44.8, 17, 300 }, + [71] = { 80.2, 44.5, 17, 300 }, + [72] = { 77.6, 44.3, 17, 300 }, + [73] = { 79.2, 44, 17, 300 }, + [74] = { 78.6, 43.6, 17, 300 }, + [75] = { 81.5, 42.8, 17, 300 }, + [76] = { 77.4, 42.7, 17, 300 }, + [77] = { 77.1, 42.4, 17, 300 }, + [78] = { 76, 42.1, 17, 300 }, + [79] = { 76.7, 41.9, 17, 300 }, + [80] = { 75.7, 40.7, 17, 300 }, + }, + ["lvl"] = "7-8", + }, + [3108] = { + ["coords"] = { + [1] = { 59.1, 16.6, 14, 300 }, + [2] = { 58.4, 15.7, 14, 300 }, + [3] = { 57.9, 15.2, 14, 300 }, + [4] = { 58.3, 13.8, 14, 300 }, + [5] = { 57.7, 13.1, 14, 300 }, + [6] = { 57.2, 12.3, 14, 300 }, + [7] = { 58.1, 12, 14, 300 }, + [8] = { 57.8, 11.4, 14, 300 }, + [9] = { 56.3, 11.1, 14, 300 }, + [10] = { 56.9, 10.2, 14, 300 }, + [11] = { 56.5, 9.1, 14, 300 }, + }, + ["lvl"] = "9-10", + }, + [3110] = { + ["coords"] = { + [1] = { 38.5, 71.5, 14, 300 }, + [2] = { 37.8, 69.8, 14, 300 }, + [3] = { 37.6, 68.1, 14, 300 }, + [4] = { 37.4, 66.1, 14, 300 }, + [5] = { 36.9, 62.2, 14, 300 }, + [6] = { 36.4, 61.2, 14, 300 }, + [7] = { 36.5, 61.1, 14, 300 }, + [8] = { 35.7, 59.1, 14, 300 }, + [9] = { 35.7, 57.4, 14, 300 }, + [10] = { 35.6, 57.3, 14, 300 }, + [11] = { 35.3, 56.2, 14, 300 }, + [12] = { 34.4, 55.5, 14, 300 }, + [13] = { 34.8, 54.3, 14, 300 }, + [14] = { 34.5, 53.8, 14, 300 }, + [15] = { 33.8, 52.5, 14, 300 }, + [16] = { 34.6, 52.1, 14, 300 }, + [17] = { 33.7, 51.2, 14, 300 }, + [18] = { 33.5, 50.9, 14, 300 }, + [19] = { 34.1, 49.8, 14, 300 }, + [20] = { 34.3, 48.1, 14, 300 }, + [21] = { 33.9, 47.2, 14, 300 }, + [22] = { 34.1, 46, 14, 300 }, + [23] = { 33.8, 45.6, 14, 300 }, + [24] = { 33.6, 45.2, 14, 300 }, + [25] = { 34.5, 44.3, 14, 300 }, + [26] = { 34.4, 44.2, 14, 300 }, + [27] = { 35.1, 39.2, 14, 300 }, + [28] = { 34.4, 37.1, 14, 300 }, + [29] = { 34.2, 34.9, 14, 300 }, + [30] = { 34.3, 34.7, 14, 300 }, + [31] = { 34.5, 32.3, 14, 300 }, + [32] = { 34.4, 32.3, 14, 300 }, + [33] = { 35.2, 30.1, 14, 300 }, + [34] = { 34.6, 29, 14, 300 }, + [35] = { 35.3, 28.3, 14, 300 }, + [36] = { 34.6, 27.2, 14, 300 }, + [37] = { 34.7, 27.1, 14, 300 }, + [38] = { 35.1, 26.3, 14, 300 }, + [39] = { 34.4, 25.7, 14, 300 }, + [40] = { 35.7, 25.3, 14, 300 }, + [41] = { 35.2, 24.6, 14, 300 }, + [42] = { 35.7, 23.4, 14, 300 }, + [43] = { 36.5, 22.2, 14, 300 }, + [44] = { 36.8, 22.1, 14, 300 }, + [45] = { 35.5, 21.5, 14, 300 }, + [46] = { 36.3, 20.9, 14, 300 }, + [47] = { 36.8, 17.2, 14, 300 }, + [48] = { 37.1, 15.8, 14, 300 }, + [49] = { 65.3, 34.4, 17, 300 }, + [50] = { 65, 33.5, 17, 300 }, + [51] = { 64.9, 32.6, 17, 300 }, + [52] = { 64.8, 31.6, 17, 300 }, + [53] = { 64.5, 29.6, 17, 300 }, + [54] = { 64.3, 29, 17, 300 }, + [55] = { 63.9, 27.9, 17, 300 }, + [56] = { 63.9, 27.1, 17, 300 }, + [57] = { 63.8, 27, 17, 300 }, + [58] = { 63.7, 26.4, 17, 300 }, + [59] = { 63.2, 26, 17, 300 }, + [60] = { 63.4, 25.4, 17, 300 }, + [61] = { 63.3, 25.2, 17, 300 }, + [62] = { 62.9, 24.5, 17, 300 }, + [63] = { 63.3, 24.3, 17, 300 }, + [64] = { 62.8, 23.8, 17, 300 }, + [65] = { 62.7, 23.7, 17, 300 }, + [66] = { 63, 23.1, 17, 300 }, + [67] = { 63.2, 22.2, 17, 300 }, + [68] = { 62.9, 21.7, 17, 300 }, + [69] = { 63.1, 21.1, 17, 300 }, + [70] = { 62.9, 20.9, 17, 300 }, + [71] = { 62.8, 20.7, 17, 300 }, + [72] = { 63.2, 20.2, 17, 300 }, + [73] = { 63.2, 20.1, 17, 300 }, + [74] = { 63.6, 17.6, 17, 300 }, + [75] = { 63.2, 16.5, 17, 300 }, + [76] = { 62.7, 15.5, 17, 300 }, + [77] = { 63.1, 15.3, 17, 300 }, + [78] = { 63.2, 15.2, 17, 300 }, + [79] = { 63.3, 13.9, 17, 300 }, + [80] = { 63.2, 13.9, 17, 300 }, + [81] = { 63.6, 12.8, 17, 300 }, + [82] = { 63.3, 12.2, 17, 300 }, + [83] = { 63.7, 11.9, 17, 300 }, + [84] = { 63.3, 11.3, 17, 300 }, + [85] = { 63.4, 11.2, 17, 300 }, + [86] = { 63.5, 10.8, 17, 300 }, + [87] = { 63.2, 10.5, 17, 300 }, + [88] = { 63.9, 10.3, 17, 300 }, + [89] = { 63.6, 9.9, 17, 300 }, + [90] = { 63.9, 9.3, 17, 300 }, + [91] = { 64.3, 8.7, 17, 300 }, + [92] = { 64.5, 8.6, 17, 300 }, + [93] = { 63.8, 8.3, 17, 300 }, + [94] = { 64.2, 8, 17, 300 }, + [95] = { 64.4, 6.1, 17, 300 }, + [96] = { 64.6, 5.4, 17, 300 }, + }, + ["lvl"] = "9-11", + }, + [3111] = { + ["coords"] = { + [1] = { 50.2, 50.8, 14, 300 }, + [2] = { 47.5, 49.6, 14, 300 }, + [3] = { 47.4, 49.3, 14, 300 }, + [4] = { 50.3, 49.1, 14, 300 }, + [5] = { 46.4, 49, 14, 300 }, + [6] = { 50.7, 48.9, 14, 300 }, + [7] = { 48.8, 48.9, 14, 300 }, + [8] = { 48.9, 48.8, 14, 300 }, + [9] = { 47.2, 48.7, 14, 300 }, + [10] = { 49.1, 48.7, 14, 300 }, + [11] = { 47.5, 48.6, 14, 300 }, + [12] = { 49, 48.3, 14, 300 }, + [13] = { 49.4, 48.2, 14, 300 }, + [14] = { 47, 48, 14, 300 }, + [15] = { 47.6, 48, 14, 300 }, + [16] = { 49.6, 47.6, 14, 300 }, + }, + ["lvl"] = "6-7", + }, + [3112] = { + ["coords"] = { + [1] = { 43.3, 50.8, 14, 300 }, + [2] = { 44.5, 50.6, 14, 300 }, + [3] = { 44.9, 50.4, 14, 300 }, + [4] = { 44, 50.3, 14, 300 }, + [5] = { 43.7, 50.2, 14, 300 }, + [6] = { 44.5, 49.9, 14, 300 }, + [7] = { 47.4, 49.9, 14, 300 }, + [8] = { 50.1, 49.8, 14, 300 }, + [9] = { 44.1, 49.6, 14, 300 }, + [10] = { 47.1, 49.5, 14, 300 }, + [11] = { 44.2, 49.4, 14, 300 }, + [12] = { 50.1, 49.3, 14, 300 }, + [13] = { 49.8, 49.3, 14, 300 }, + [14] = { 49.2, 49.1, 14, 300 }, + [15] = { 49.4, 48.7, 14, 300 }, + [16] = { 47.2, 48, 14, 300 }, + [17] = { 49.6, 47.8, 14, 300 }, + [18] = { 47.5, 49.6, 14, 300 }, + [19] = { 47.4, 49.3, 14, 300 }, + [20] = { 46.4, 49, 14, 300 }, + [21] = { 47, 48, 14, 300 }, + [22] = { 47.6, 48, 14, 300 }, + }, + ["lvl"] = "7-8", + }, + [3113] = { + ["coords"] = { + [1] = { 39, 53.7, 14, 300 }, + [2] = { 39.5, 53.2, 14, 300 }, + [3] = { 38.2, 52.9, 14, 300 }, + [4] = { 39.3, 52.9, 14, 300 }, + [5] = { 38.9, 52.8, 14, 300 }, + [6] = { 43.9, 40.4, 14, 300 }, + [7] = { 43.3, 40.4, 14, 300 }, + [8] = { 44, 39.8, 14, 300 }, + [9] = { 43.1, 39.6, 14, 300 }, + [10] = { 42.9, 39.3, 14, 300 }, + [11] = { 44.2, 39.2, 14, 300 }, + [12] = { 43.3, 39, 14, 300 }, + [13] = { 42.6, 38.9, 14, 300 }, + [14] = { 42.9, 38.8, 14, 300 }, + [15] = { 41.7, 38.5, 14, 300 }, + [16] = { 44.1, 38.3, 14, 300 }, + [17] = { 43.6, 38.1, 14, 300 }, + [18] = { 41.3, 37.6, 14, 300 }, + [19] = { 44.1, 37.5, 14, 300 }, + [20] = { 43.4, 37.3, 14, 300 }, + [21] = { 41.8, 37.2, 14, 300 }, + }, + ["lvl"] = "8-9", + }, + [3114] = { + ["coords"] = { + [1] = { 38.7, 55.2, 14, 300 }, + [2] = { 38.3, 54.7, 14, 300 }, + [3] = { 38.2, 54, 14, 300 }, + [4] = { 39.4, 53.8, 14, 300 }, + [5] = { 38.8, 53.5, 14, 300 }, + [6] = { 39.1, 53, 14, 300 }, + [7] = { 42.9, 41.6, 14, 300 }, + [8] = { 43.9, 41.4, 14, 300 }, + [9] = { 42.6, 40.5, 14, 300 }, + [10] = { 41.9, 40.3, 14, 300 }, + [11] = { 44.4, 39.7, 14, 300 }, + [12] = { 42.3, 39.4, 14, 300 }, + [13] = { 42.6, 39.2, 14, 300 }, + [14] = { 43.1, 38.9, 14, 300 }, + [15] = { 41.9, 38.9, 14, 300 }, + [16] = { 41.7, 38.2, 14, 300 }, + [17] = { 43, 38.2, 14, 300 }, + [18] = { 45.1, 37.6, 14, 300 }, + [19] = { 42.7, 37.4, 14, 300 }, + [20] = { 44.6, 37.3, 14, 300 }, + [21] = { 42.2, 37.2, 14, 300 }, + [22] = { 65.2, 25.6, 17, 300 }, + [23] = { 43.9, 40.4, 14, 300 }, + [24] = { 43.3, 40.4, 14, 300 }, + [25] = { 44, 39.8, 14, 300 }, + [26] = { 43.1, 39.6, 14, 300 }, + [27] = { 42.9, 39.3, 14, 300 }, + [28] = { 44.2, 39.2, 14, 300 }, + [29] = { 42.6, 38.9, 14, 300 }, + [30] = { 43.6, 38.1, 14, 300 }, + }, + ["lvl"] = "9-10", + }, + [3115] = { + ["coords"] = { + [1] = { 45.8, 33.9, 14, 300 }, + [2] = { 47.7, 33.1, 14, 300 }, + [3] = { 48.2, 33, 14, 300 }, + [4] = { 45, 32.8, 14, 300 }, + [5] = { 50, 32.5, 14, 300 }, + [6] = { 48.7, 32.3, 14, 300 }, + [7] = { 48.2, 32, 14, 300 }, + [8] = { 48.3, 31.6, 14, 300 }, + [9] = { 48.1, 31.5, 14, 300 }, + [10] = { 47.7, 31.1, 14, 300 }, + [11] = { 45.2, 31, 14, 300 }, + [12] = { 47.4, 30.6, 14, 300 }, + [13] = { 46.8, 30.4, 14, 300 }, + [14] = { 47.7, 30.2, 14, 300 }, + [15] = { 46.5, 30.2, 14, 300 }, + [16] = { 47.1, 30.1, 14, 300 }, + [17] = { 45.9, 30.1, 14, 300 }, + [18] = { 47.2, 29.6, 14, 300 }, + [19] = { 45, 29, 14, 300 }, + [20] = { 50, 27.5, 14, 300 }, + [21] = { 51.4, 27.3, 14, 300 }, + [22] = { 50.5, 26.7, 14, 300 }, + [23] = { 50.6, 25.9, 14, 300 }, + [24] = { 50.2, 25.1, 14, 300 }, + [25] = { 49.2, 22.2, 14, 300 }, + [26] = { 49, 21.3, 14, 300 }, + [27] = { 48.3, 20.6, 14, 300 }, + [28] = { 48.9, 20.6, 14, 300 }, + [29] = { 48.9, 19.6, 14, 300 }, + }, + ["lvl"] = "7-8", + }, + [3116] = { + ["coords"] = { + [1] = { 45.8, 33.9, 14, 300 }, + [2] = { 47.7, 33.1, 14, 300 }, + [3] = { 48.2, 33, 14, 300 }, + [4] = { 45, 32.8, 14, 300 }, + [5] = { 50, 32.5, 14, 300 }, + [6] = { 48.7, 32.3, 14, 300 }, + [7] = { 48.2, 32, 14, 300 }, + [8] = { 48.3, 31.6, 14, 300 }, + [9] = { 48.1, 31.5, 14, 300 }, + [10] = { 47.7, 31.1, 14, 300 }, + [11] = { 45.2, 31, 14, 300 }, + [12] = { 47.4, 30.6, 14, 300 }, + [13] = { 46.8, 30.4, 14, 300 }, + [14] = { 47.7, 30.2, 14, 300 }, + [15] = { 46.5, 30.2, 14, 300 }, + [16] = { 47.1, 30.1, 14, 300 }, + [17] = { 45.9, 30.1, 14, 300 }, + [18] = { 47.2, 29.6, 14, 300 }, + [19] = { 45, 29, 14, 300 }, + [20] = { 50, 27.5, 14, 300 }, + [21] = { 51.4, 27.3, 14, 300 }, + [22] = { 50.5, 26.7, 14, 300 }, + [23] = { 50.6, 25.9, 14, 300 }, + [24] = { 50.2, 25.1, 14, 300 }, + [25] = { 49.2, 22.2, 14, 300 }, + [26] = { 49, 21.3, 14, 300 }, + [27] = { 48.3, 20.6, 14, 300 }, + [28] = { 48.9, 20.6, 14, 300 }, + [29] = { 48.9, 19.6, 14, 300 }, + }, + ["lvl"] = "7-8", + }, + [3117] = { + ["coords"] = { + [1] = { 54, 27.8, 14, 300 }, + [2] = { 54, 27.3, 14, 300 }, + [3] = { 54, 26.2, 14, 300 }, + [4] = { 54, 25.3, 14, 300 }, + [5] = { 53.3, 24.8, 14, 300 }, + [6] = { 54, 24.4, 14, 300 }, + [7] = { 52.8, 24.3, 14, 300 }, + [8] = { 52.4, 24, 14, 300 }, + [9] = { 51.8, 23.9, 14, 300 }, + [10] = { 53.3, 23.7, 14, 300 }, + [11] = { 54, 23.4, 14, 300 }, + [12] = { 53.9, 22.7, 14, 300 }, + [13] = { 53.7, 21.9, 14, 300 }, + [14] = { 52.7, 21.3, 14, 300 }, + [15] = { 51.4, 20.9, 14, 300 }, + [16] = { 52.1, 20.8, 14, 300 }, + }, + ["lvl"] = "9-10", + }, + [3118] = { + ["coords"] = { + [1] = { 53.1, 24.2, 14, 300 }, + [2] = { 53, 23.9, 14, 300 }, + [3] = { 51.3, 23.8, 14, 300 }, + [4] = { 51.9, 23.5, 14, 300 }, + [5] = { 51.5, 23.4, 14, 300 }, + [6] = { 51.2, 23.3, 14, 300 }, + [7] = { 51.4, 23.1, 14, 300 }, + [8] = { 54.1, 22.3, 14, 300 }, + [9] = { 51.6, 21.6, 14, 300 }, + [10] = { 53.3, 21.6, 14, 300 }, + [11] = { 52, 21.4, 14, 300 }, + [12] = { 51.3, 20.2, 14, 300 }, + [13] = { 52, 20.1, 14, 300 }, + [14] = { 51.7, 20, 14, 300 }, + [15] = { 51, 19.6, 14, 300 }, + [16] = { 51.3, 19.2, 14, 300 }, + [17] = { 51.6, 19, 14, 300 }, + [18] = { 53.3, 23.7, 14, 300 }, + }, + ["lvl"] = "10-11", + }, + [3119] = { + ["coords"] = { + [1] = { 52.1, 82, 14, 300 }, + [2] = { 52.6, 81.2, 14, 300 }, + [3] = { 48, 80.6, 14, 300 }, + [4] = { 46.7, 80.5, 14, 300 }, + [5] = { 49.7, 80.5, 14, 300 }, + [6] = { 52.3, 80.2, 14, 300 }, + [7] = { 49.9, 80, 14, 300 }, + [8] = { 48.2, 80, 14, 300 }, + [9] = { 53, 79.8, 14, 300 }, + [10] = { 46.4, 79.5, 14, 300 }, + [11] = { 49, 79.4, 14, 300 }, + [12] = { 51.3, 79.3, 14, 300 }, + [13] = { 48.1, 79.2, 14, 300 }, + [14] = { 50.2, 79.2, 14, 300 }, + [15] = { 47.7, 78.6, 14, 300 }, + [16] = { 50, 78.5, 14, 300 }, + [17] = { 48.1, 77.7, 14, 300 }, + [18] = { 52.7, 77.2, 14, 300 }, + [19] = { 52, 76.5, 14, 300 }, + }, + ["lvl"] = "6-7", + }, + [3120] = { + ["coords"] = { + [1] = { 49.8, 81.4, 14, 300 }, + [2] = { 50.1, 80.5, 14, 300 }, + [3] = { 46.3, 79.3, 14, 300 }, + [4] = { 46.6, 79.2, 14, 300 }, + [5] = { 48.1, 78.4, 14, 300 }, + [6] = { 47.6, 78, 14, 300 }, + [7] = { 47.8, 77.7, 14, 300 }, + [8] = { 69.4, 38.5, 17, 300 }, + }, + ["lvl"] = "7-8", + }, + [3121] = { + ["coords"] = { + [1] = { 64, 97.3, 14, 300 }, + [2] = { 62.8, 97.1, 14, 300 }, + [3] = { 63.3, 96.2, 14, 300 }, + [4] = { 64.1, 95.4, 14, 300 }, + [5] = { 62.4, 95, 14, 300 }, + [6] = { 60.3, 91.5, 14, 300 }, + [7] = { 61.5, 91.4, 14, 300 }, + [8] = { 59, 90.5, 14, 300 }, + [9] = { 60.9, 90.5, 14, 300 }, + [10] = { 61.5, 89.6, 14, 300 }, + [11] = { 60.9, 88.7, 14, 300 }, + [12] = { 64.6, 88.5, 14, 300 }, + [13] = { 65.3, 87.7, 14, 300 }, + [14] = { 64.6, 85, 14, 300 }, + [15] = { 69.1, 84.8, 14, 300 }, + [16] = { 59.7, 84.8, 14, 300 }, + [17] = { 59.9, 83.4, 14, 300 }, + [18] = { 60.7, 82.3, 14, 300 }, + [19] = { 65.9, 81.1, 14, 300 }, + [20] = { 64.7, 81, 14, 300 }, + [21] = { 65.3, 80.2, 14, 300 }, + [22] = { 69.1, 80.2, 14, 300 }, + [23] = { 60.2, 80, 14, 300 }, + [24] = { 67.6, 73.9, 14, 300 }, + [25] = { 69.2, 73.6, 14, 300 }, + [26] = { 70.3, 73.4, 14, 300 }, + [27] = { 69.8, 72.6, 14, 300 }, + [28] = { 69, 72.3, 14, 300 }, + [29] = { 67.2, 70.7, 14, 300 }, + [30] = { 69.2, 69.7, 14, 300 }, + [31] = { 78.6, 47.9, 17, 300 }, + [32] = { 78, 47.8, 17, 300 }, + [33] = { 78.3, 47.3, 17, 300 }, + [34] = { 78.7, 46.9, 17, 300 }, + [35] = { 77.8, 46.7, 17, 300 }, + [36] = { 76.7, 44.8, 17, 300 }, + [37] = { 77.3, 44.8, 17, 300 }, + [38] = { 76, 44.3, 17, 300 }, + [39] = { 77, 44.3, 17, 300 }, + [40] = { 77.4, 43.9, 17, 300 }, + [41] = { 77, 43.4, 17, 300 }, + [42] = { 79, 43.3, 17, 300 }, + [43] = { 79.3, 42.9, 17, 300 }, + [44] = { 79, 41.4, 17, 300 }, + [45] = { 81.3, 41.4, 17, 300 }, + [46] = { 76.4, 41.3, 17, 300 }, + [47] = { 76.5, 40.6, 17, 300 }, + }, + ["lvl"] = "7-8", + }, + [3122] = { + ["coords"] = { + [1] = { 62, 96.3, 14, 300 }, + [2] = { 63.1, 94.4, 14, 300 }, + [3] = { 59.9, 89.6, 14, 300 }, + [4] = { 66.7, 89, 14, 300 }, + [5] = { 68.2, 88.5, 14, 300 }, + [6] = { 59.9, 88, 14, 300 }, + [7] = { 68.5, 87.1, 14, 300 }, + [8] = { 64, 86.8, 14, 300 }, + [9] = { 59.4, 83.9, 14, 300 }, + [10] = { 68.4, 83.9, 14, 300 }, + [11] = { 63.9, 83.8, 14, 300 }, + [12] = { 60.3, 82.6, 14, 300 }, + [13] = { 64.9, 82.3, 14, 300 }, + [14] = { 69.2, 82.1, 14, 300 }, + [15] = { 68.1, 80.5, 14, 300 }, + [16] = { 67.2, 80.5, 14, 300 }, + [17] = { 60.9, 78.8, 14, 300 }, + [18] = { 61.4, 78.1, 14, 300 }, + [19] = { 69.8, 74.8, 14, 300 }, + [20] = { 68.6, 74.7, 14, 300 }, + [21] = { 63.5, 74.5, 14, 300 }, + [22] = { 64.6, 73.3, 14, 300 }, + [23] = { 68.3, 71.8, 14, 300 }, + [24] = { 67.1, 71.3, 14, 300 }, + [25] = { 68.9, 71.2, 14, 300 }, + [26] = { 70.2, 70.9, 14, 300 }, + [27] = { 69.8, 70.4, 14, 300 }, + [28] = { 67.7, 69.8, 14, 300 }, + [29] = { 39.5, 51.9, 14, 300 }, + [30] = { 41.2, 50.3, 14, 300 }, + [31] = { 42.3, 49.1, 14, 300 }, + [32] = { 40.3, 47.7, 14, 300 }, + [33] = { 39.2, 47, 14, 300 }, + [34] = { 41.6, 47, 14, 300 }, + [35] = { 40.5, 46.6, 14, 300 }, + [36] = { 43.3, 46.5, 14, 300 }, + [37] = { 44.2, 45.4, 14, 300 }, + [38] = { 40.5, 38.2, 14, 300 }, + [39] = { 46.3, 37.6, 14, 300 }, + [40] = { 55.3, 37.3, 14, 300 }, + [41] = { 49.8, 37, 14, 300 }, + [42] = { 48.9, 36.9, 14, 300 }, + [43] = { 47.6, 36.8, 14, 300 }, + [44] = { 45.8, 36.6, 14, 300 }, + [45] = { 50.4, 35.4, 14, 300 }, + [46] = { 40.6, 34.6, 14, 300 }, + [47] = { 54.9, 34.5, 14, 300 }, + [48] = { 42.3, 34.4, 14, 300 }, + [49] = { 44.5, 34, 14, 300 }, + [50] = { 44.2, 33.6, 14, 300 }, + [51] = { 54.4, 32.5, 14, 300 }, + [52] = { 55.3, 30.5, 14, 300 }, + [53] = { 56.1, 29.2, 14, 300 }, + [54] = { 57.6, 28.5, 14, 300 }, + [55] = { 56.9, 26.8, 14, 300 }, + [56] = { 58.2, 26.3, 14, 300 }, + [57] = { 57, 24.5, 14, 300 }, + [58] = { 56.5, 24, 14, 300 }, + [59] = { 58, 23.1, 14, 300 }, + [60] = { 49.4, 19.2, 14, 300 }, + [61] = { 77.6, 47.3, 17, 300 }, + [62] = { 78.2, 46.4, 17, 300 }, + [63] = { 76.5, 43.8, 17, 300 }, + [64] = { 80.1, 43.5, 17, 300 }, + [65] = { 80.8, 43.3, 17, 300 }, + [66] = { 76.5, 43, 17, 300 }, + [67] = { 81, 42.5, 17, 300 }, + [68] = { 78.6, 42.4, 17, 300 }, + [69] = { 76.2, 40.9, 17, 300 }, + [70] = { 81, 40.9, 17, 300 }, + [71] = { 78.6, 40.8, 17, 300 }, + }, + ["lvl"] = "6-8", + }, + [3123] = { + ["coords"] = { + [1] = { 37.2, 54.9, 14, 300 }, + [2] = { 36.1, 53.2, 14, 300 }, + [3] = { 35.9, 48.9, 14, 300 }, + [4] = { 38.4, 48.9, 14, 300 }, + [5] = { 37.1, 47.3, 14, 300 }, + [6] = { 37, 46.4, 14, 300 }, + [7] = { 37.9, 40, 14, 300 }, + [8] = { 36.6, 39.1, 14, 300 }, + [9] = { 38.5, 37.4, 14, 300 }, + [10] = { 36, 37, 14, 300 }, + [11] = { 37.5, 36.1, 14, 300 }, + [12] = { 36.7, 34.3, 14, 300 }, + [13] = { 37.5, 32.4, 14, 300 }, + [14] = { 36, 31.8, 14, 300 }, + [15] = { 36.9, 29.7, 14, 300 }, + [16] = { 36.3, 27.7, 14, 300 }, + [17] = { 36.8, 27.2, 14, 300 }, + [18] = { 36.8, 25.4, 14, 300 }, + [19] = { 42.1, 21.3, 14, 300 }, + [20] = { 39.2, 19.5, 14, 300 }, + [21] = { 54.9, 19.3, 14, 300 }, + [22] = { 39.2, 19.1, 14, 300 }, + [23] = { 42.9, 18.5, 14, 300 }, + [24] = { 54.4, 18, 14, 300 }, + [25] = { 39.2, 17.3, 14, 300 }, + [26] = { 40.4, 16.1, 14, 300 }, + [27] = { 53.2, 16, 14, 300 }, + [28] = { 55.9, 15.9, 14, 300 }, + [29] = { 56.9, 15, 14, 300 }, + [30] = { 51.8, 14.5, 14, 300 }, + [31] = { 53.9, 13.5, 14, 300 }, + [32] = { 55.2, 13.1, 14, 300 }, + [33] = { 53, 12.4, 14, 300 }, + [34] = { 55.8, 12, 14, 300 }, + [35] = { 54, 11.7, 14, 300 }, + [36] = { 52.1, 10.6, 14, 300 }, + [37] = { 64.7, 25.8, 17, 300 }, + [38] = { 64.1, 24.9, 17, 300 }, + [39] = { 64, 22.6, 17, 300 }, + [40] = { 64.4, 17.5, 17, 300 }, + [41] = { 64.1, 16.4, 17, 300 }, + [42] = { 64.4, 15, 17, 300 }, + [43] = { 64, 13.7, 17, 300 }, + [44] = { 64.5, 12.6, 17, 300 }, + [45] = { 64.2, 11.5, 17, 300 }, + [46] = { 64.4, 11.3, 17, 300 }, + [47] = { 64.4, 10.4, 17, 300 }, + }, + ["lvl"] = "8-10", + }, + [3124] = { + ["coords"] = { + [1] = { 44, 73.7, 14, 300 }, + [2] = { 43.2, 73.6, 14, 300 }, + [3] = { 45.2, 72.8, 14, 300 }, + [4] = { 45.1, 71.5, 14, 300 }, + [5] = { 41.3, 70.6, 14, 300 }, + [6] = { 40.7, 70.5, 14, 300 }, + [7] = { 40.1, 68.6, 14, 300 }, + [8] = { 40.7, 68.5, 14, 300 }, + [9] = { 41.4, 67.9, 14, 300 }, + [10] = { 40.1, 67.8, 14, 300 }, + [11] = { 40.8, 67.7, 14, 300 }, + [12] = { 40.1, 66.9, 14, 300 }, + [13] = { 40.7, 66.9, 14, 300 }, + [14] = { 41.3, 66.8, 14, 300 }, + [15] = { 40, 66, 14, 300 }, + [16] = { 40.7, 65.9, 14, 300 }, + [17] = { 41.9, 65.9, 14, 300 }, + [18] = { 41.5, 65.9, 14, 300 }, + [19] = { 41.5, 64.3, 14, 300 }, + [20] = { 40.8, 64.1, 14, 300 }, + [21] = { 47.2, 64, 14, 300 }, + [22] = { 47.6, 64, 14, 300 }, + [23] = { 40.1, 64, 14, 300 }, + [24] = { 40.1, 63.2, 14, 300 }, + [25] = { 39.5, 63.2, 14, 300 }, + [26] = { 47.1, 63.1, 14, 300 }, + [27] = { 41.4, 63.1, 14, 300 }, + [28] = { 40.8, 63.1, 14, 300 }, + [29] = { 39.5, 62.3, 14, 300 }, + [30] = { 41.4, 62.2, 14, 300 }, + [31] = { 40.8, 62.1, 14, 300 }, + [32] = { 40.1, 62.1, 14, 300 }, + [33] = { 47, 62.1, 14, 300 }, + [34] = { 46.5, 61.3, 14, 300 }, + [35] = { 47.1, 61.3, 14, 300 }, + [36] = { 40.1, 61.3, 14, 300 }, + [37] = { 41.4, 61.3, 14, 300 }, + [38] = { 40.7, 61.2, 14, 300 }, + [39] = { 39.4, 61.1, 14, 300 }, + [40] = { 41.4, 60.3, 14, 300 }, + [41] = { 45.8, 60.1, 14, 300 }, + [42] = { 46.4, 60.1, 14, 300 }, + [43] = { 46.8, 60, 14, 300 }, + [44] = { 43.2, 59.5, 14, 300 }, + [45] = { 43.9, 59.4, 14, 300 }, + [46] = { 45.8, 59.4, 14, 300 }, + [47] = { 45.2, 59.3, 14, 300 }, + [48] = { 46.5, 59.3, 14, 300 }, + [49] = { 42.6, 59.2, 14, 300 }, + [50] = { 45.6, 58.7, 14, 300 }, + [51] = { 42.8, 58.5, 14, 300 }, + [52] = { 42, 58.4, 14, 300 }, + [53] = { 43.3, 58.4, 14, 300 }, + [54] = { 41.8, 57.3, 14, 300 }, + [55] = { 43.1, 56.4, 14, 300 }, + [56] = { 66.8, 33.9, 17, 300 }, + [57] = { 66.5, 33.9, 17, 300 }, + [58] = { 66.2, 32.9, 17, 300 }, + [59] = { 66.2, 32.5, 17, 300 }, + [60] = { 66.2, 32, 17, 300 }, + [61] = { 66.1, 31.5, 17, 300 }, + }, + ["lvl"] = "3", + }, + [3125] = { + ["coords"] = { + [1] = { 54.8, 80.3, 14, 300 }, + [2] = { 53.3, 76.4, 14, 300 }, + [3] = { 50.2, 75.4, 14, 300 }, + [4] = { 50.6, 74.9, 14, 300 }, + [5] = { 49.5, 74.7, 14, 300 }, + [6] = { 53.3, 74.4, 14, 300 }, + [7] = { 52.2, 73.7, 14, 300 }, + [8] = { 52.1, 73.6, 14, 300 }, + [9] = { 50.1, 73.5, 14, 300 }, + [10] = { 51.9, 73.5, 14, 300 }, + [11] = { 49.6, 72.9, 14, 300 }, + [12] = { 50.8, 72.5, 14, 300 }, + [13] = { 52.6, 72.5, 14, 300 }, + [14] = { 58.2, 72, 14, 300 }, + [15] = { 50.1, 71.9, 14, 300 }, + [16] = { 57.7, 71.3, 14, 300 }, + [17] = { 56.6, 70.9, 14, 300 }, + [18] = { 58.3, 70.8, 14, 300 }, + [19] = { 57.2, 70.8, 14, 300 }, + [20] = { 50.9, 70.6, 14, 300 }, + [21] = { 56.1, 70.5, 14, 300 }, + [22] = { 55.6, 70.1, 14, 300 }, + [23] = { 54.8, 70, 14, 300 }, + [24] = { 56.1, 69.6, 14, 300 }, + [25] = { 54.1, 69, 14, 300 }, + [26] = { 54.4, 69, 14, 300 }, + [27] = { 53.8, 68.1, 14, 300 }, + [28] = { 55.5, 68, 14, 300 }, + [29] = { 53.2, 67, 14, 300 }, + [30] = { 54.6, 67, 14, 300 }, + [31] = { 54.1, 65.1, 14, 300 }, + [32] = { 54.4, 64.9, 14, 300 }, + [33] = { 54.1, 64.1, 14, 300 }, + [34] = { 54.7, 63.6, 14, 300 }, + [35] = { 52.1, 62.8, 14, 300 }, + [36] = { 54.5, 61.1, 14, 300 }, + [37] = { 52.9, 60.6, 14, 300 }, + [38] = { 54.6, 59.3, 14, 300 }, + [39] = { 54.5, 56.7, 14, 300 }, + [40] = { 54, 55.2, 14, 300 }, + [41] = { 51.9, 54.7, 14, 300 }, + [42] = { 51, 54.2, 14, 300 }, + [43] = { 53.4, 53.5, 14, 300 }, + [44] = { 53.1, 51.8, 14, 300 }, + [45] = { 53.9, 50.8, 14, 300 }, + [46] = { 58.8, 50.5, 14, 300 }, + [47] = { 54.7, 50.1, 14, 300 }, + [48] = { 57.8, 49.5, 14, 300 }, + [49] = { 56, 49.1, 14, 300 }, + [50] = { 53.9, 49, 14, 300 }, + [51] = { 57, 48.3, 14, 300 }, + [52] = { 59.7, 48, 14, 300 }, + [53] = { 55.9, 47.5, 14, 300 }, + [54] = { 57.7, 46.8, 14, 300 }, + [55] = { 57.8, 45.9, 14, 300 }, + [56] = { 59.6, 45.9, 14, 300 }, + [57] = { 56.9, 45.7, 14, 300 }, + [58] = { 55.2, 45.4, 14, 300 }, + [59] = { 56.9, 45.3, 14, 300 }, + [60] = { 59.1, 44.7, 14, 300 }, + [61] = { 58.5, 44.6, 14, 300 }, + [62] = { 59.8, 44.4, 14, 300 }, + [63] = { 57.1, 44.3, 14, 300 }, + [64] = { 55.8, 44.2, 14, 300 }, + [65] = { 56.5, 43.3, 14, 300 }, + [66] = { 59, 43.2, 14, 300 }, + [67] = { 57.8, 42.9, 14, 300 }, + [68] = { 57.2, 42.7, 14, 300 }, + [69] = { 58.4, 42.3, 14, 300 }, + [70] = { 59.7, 42, 14, 300 }, + [71] = { 57.8, 41.5, 14, 300 }, + }, + ["lvl"] = "5-6", + }, + [3126] = { + ["coords"] = { + [1] = { 41.1, 51.7, 14, 300 }, + [2] = { 41.4, 50.7, 14, 300 }, + [3] = { 42.5, 48.6, 14, 300 }, + [4] = { 41.1, 48.4, 14, 300 }, + [5] = { 43.3, 48.1, 14, 300 }, + [6] = { 39.6, 47.8, 14, 300 }, + [7] = { 45.6, 46.7, 14, 300 }, + [8] = { 41, 46.6, 14, 300 }, + [9] = { 37.9, 46.5, 14, 300 }, + [10] = { 42.6, 45.9, 14, 300 }, + [11] = { 44.6, 45.7, 14, 300 }, + [12] = { 43.7, 45.5, 14, 300 }, + [13] = { 40.1, 45.3, 14, 300 }, + [14] = { 44.6, 44.5, 14, 300 }, + [15] = { 37.7, 42.5, 14, 300 }, + [16] = { 39.2, 42.1, 14, 300 }, + [17] = { 41.4, 41.4, 14, 300 }, + [18] = { 36.3, 41.2, 14, 300 }, + [19] = { 38.3, 40.8, 14, 300 }, + [20] = { 40.2, 39.4, 14, 300 }, + [21] = { 40.7, 38.8, 14, 300 }, + [22] = { 48.3, 38.6, 14, 300 }, + [23] = { 35.7, 37.9, 14, 300 }, + [24] = { 51, 37.7, 14, 300 }, + [25] = { 37, 37.2, 14, 300 }, + [26] = { 35.7, 36.9, 14, 300 }, + [27] = { 47.6, 36.9, 14, 300 }, + [28] = { 36.2, 36.9, 14, 300 }, + [29] = { 48.9, 36.8, 14, 300 }, + [30] = { 49.3, 36.6, 14, 300 }, + [31] = { 54.8, 36.6, 14, 300 }, + [32] = { 39, 35.7, 14, 300 }, + [33] = { 47.6, 35.6, 14, 300 }, + [34] = { 46.8, 35.5, 14, 300 }, + [35] = { 42.5, 34.4, 14, 300 }, + [36] = { 37.1, 34.4, 14, 300 }, + [37] = { 38.3, 33.9, 14, 300 }, + [38] = { 37.3, 33.8, 14, 300 }, + [39] = { 54.4, 33.8, 14, 300 }, + [40] = { 44.4, 33.6, 14, 300 }, + [41] = { 43.4, 32.4, 14, 300 }, + [42] = { 55.7, 31.7, 14, 300 }, + [43] = { 45.5, 31.4, 14, 300 }, + [44] = { 57.6, 30.9, 14, 300 }, + [45] = { 48.6, 30.6, 14, 300 }, + [46] = { 57.4, 29.5, 14, 300 }, + [47] = { 58.5, 29.2, 14, 300 }, + [48] = { 56.5, 29, 14, 300 }, + [49] = { 41.9, 28.8, 14, 300 }, + [50] = { 45.2, 28.2, 14, 300 }, + [51] = { 57.2, 27.4, 14, 300 }, + [52] = { 45.2, 26.3, 14, 300 }, + [53] = { 58.4, 25.2, 14, 300 }, + [54] = { 57.2, 24.6, 14, 300 }, + [55] = { 58.4, 23.3, 14, 300 }, + [56] = { 54.9, 23.1, 14, 300 }, + [57] = { 56.1, 22.8, 14, 300 }, + [58] = { 55, 22.1, 14, 300 }, + [59] = { 50.6, 21.6, 14, 300 }, + [60] = { 56.5, 21.4, 14, 300 }, + [61] = { 50.5, 19.5, 14, 300 }, + [62] = { 52.8, 19.4, 14, 300 }, + [63] = { 51.1, 17.8, 14, 300 }, + [64] = { 64.2, 18.6, 17, 300 }, + [65] = { 63.9, 16.9, 17, 300 }, + [66] = { 63.9, 16.3, 17, 300 }, + [67] = { 64.2, 16.3, 17, 300 }, + }, + ["lvl"] = "7-8", + }, + [3127] = { + ["coords"] = { + [1] = { 35.9, 56.6, 14, 300 }, + [2] = { 36.8, 55.7, 14, 300 }, + [3] = { 36.8, 53.8, 14, 300 }, + [4] = { 35.3, 53.6, 14, 300 }, + [5] = { 36.3, 52.6, 14, 300 }, + [6] = { 35, 50.8, 14, 300 }, + [7] = { 37.5, 50.6, 14, 300 }, + [8] = { 36.7, 50.5, 14, 300 }, + [9] = { 37.9, 49.9, 14, 300 }, + [10] = { 35.8, 49.8, 14, 300 }, + [11] = { 37, 48.9, 14, 300 }, + [12] = { 36.3, 47.2, 14, 300 }, + [13] = { 35.7, 47, 14, 300 }, + [14] = { 35.5, 33.1, 14, 300 }, + [15] = { 37.1, 31, 14, 300 }, + [16] = { 36.5, 30.2, 14, 300 }, + [17] = { 36.2, 28.4, 14, 300 }, + [18] = { 36.8, 27, 14, 300 }, + [19] = { 36.6, 25.1, 14, 300 }, + [20] = { 38.8, 22.6, 14, 300 }, + [21] = { 39.4, 22.1, 14, 300 }, + [22] = { 42.6, 21.1, 14, 300 }, + [23] = { 42, 20.6, 14, 300 }, + [24] = { 44.9, 20.5, 14, 300 }, + [25] = { 38.1, 20.2, 14, 300 }, + [26] = { 41.4, 20.1, 14, 300 }, + [27] = { 42.2, 18.9, 14, 300 }, + [28] = { 43.9, 18.7, 14, 300 }, + [29] = { 39.8, 18.4, 14, 300 }, + [30] = { 43.9, 18.4, 14, 270 }, + [31] = { 56, 18.3, 14, 300 }, + [32] = { 43.6, 18.2, 14, 300 }, + [33] = { 39, 17.7, 14, 300 }, + [34] = { 38.8, 17.7, 14, 300 }, + [35] = { 50.4, 17.6, 14, 300 }, + [36] = { 49.7, 17.5, 14, 300 }, + [37] = { 42, 17, 14, 300 }, + [38] = { 43.9, 17, 14, 270 }, + [39] = { 41, 16.9, 14, 300 }, + [40] = { 44.1, 16.7, 14, 300 }, + [41] = { 53.5, 15.7, 14, 300 }, + [42] = { 55.9, 15.3, 14, 300 }, + [43] = { 55.7, 14.8, 14, 300 }, + [44] = { 56.9, 14.6, 14, 300 }, + [45] = { 53.6, 12.7, 14, 300 }, + [46] = { 55.8, 12.1, 14, 300 }, + [47] = { 53.3, 11.9, 14, 300 }, + [48] = { 54.4, 11.8, 14, 300 }, + [49] = { 64, 26.6, 17, 300 }, + [50] = { 64.4, 26.2, 17, 300 }, + [51] = { 63.7, 25.1, 17, 300 }, + [52] = { 64.2, 24.5, 17, 300 }, + [53] = { 63.5, 23.6, 17, 300 }, + [54] = { 64.4, 23.4, 17, 300 }, + [55] = { 63.9, 23.1, 17, 300 }, + [56] = { 64.2, 21.7, 17, 300 }, + [57] = { 63.9, 21.6, 17, 300 }, + [58] = { 63.8, 14.4, 17, 300 }, + [59] = { 64.6, 13.3, 17, 300 }, + [60] = { 64.3, 12.9, 17, 300 }, + [61] = { 64.1, 11.9, 17, 300 }, + [62] = { 64.5, 11.2, 17, 300 }, + [63] = { 64.4, 10.2, 17, 300 }, + [64] = { 65.2, 7.6, 17, 300 }, + }, + ["lvl"] = "9-10", + }, + [3128] = { + ["coords"] = { + [1] = { 58.8, 60.2, 14, 300 }, + [2] = { 60.2, 59.2, 14, 300 }, + [3] = { 55.9, 59.1, 14, 300 }, + [4] = { 59.5, 58.9, 14, 300 }, + [5] = { 59.9, 58.9, 14, 300 }, + [6] = { 61, 58.7, 14, 300 }, + [7] = { 57.8, 58.7, 14, 300 }, + [8] = { 57.7, 58.5, 14, 300 }, + [9] = { 56.4, 58.5, 14, 300 }, + [10] = { 57.4, 58.2, 14, 300 }, + [11] = { 55.7, 57.5, 14, 300 }, + [12] = { 58.4, 57.5, 14, 300 }, + [13] = { 57.1, 57.2, 14, 300 }, + [14] = { 57.9, 57.2, 14, 300 }, + [15] = { 58.2, 56.8, 14, 300 }, + [16] = { 57.4, 56.8, 14, 300 }, + [17] = { 56.5, 56.5, 14, 300 }, + [18] = { 59, 55.6, 14, 300 }, + [19] = { 57.5, 55.3, 14, 300 }, + [20] = { 56.7, 54.9, 14, 300 }, + [21] = { 57.1, 54.6, 14, 300 }, + [22] = { 55.9, 53.7, 14, 300 }, + [23] = { 57.7, 53.7, 14, 300 }, + [24] = { 58.4, 53.7, 14, 300 }, + [25] = { 56.7, 53.1, 14, 300 }, + [26] = { 57.1, 53.1, 14, 300 }, + [27] = { 56.6, 53, 14, 300 }, + [28] = { 56.7, 52.8, 14, 300 }, + [29] = { 59, 52.8, 14, 300 }, + [30] = { 57.8, 52.7, 14, 300 }, + [31] = { 55.9, 51.8, 14, 300 }, + [32] = { 57.1, 51.7, 14, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "5-6", + }, + [3129] = { + ["coords"] = { + [1] = { 60.3, 60.3, 14, 300 }, + [2] = { 60.7, 59.4, 14, 300 }, + [3] = { 59.4, 58.5, 14, 240 }, + [4] = { 59.7, 58.5, 14, 240 }, + [5] = { 58.4, 58.4, 14, 300 }, + [6] = { 59.6, 58.2, 14, 300 }, + [7] = { 59.8, 57.8, 14, 300 }, + [8] = { 59.2, 56.7, 14, 300 }, + [9] = { 59.6, 56.7, 14, 300 }, + [10] = { 59.5, 56.3, 14, 300 }, + [11] = { 58.1, 55.6, 14, 300 }, + [12] = { 59.5, 55.5, 14, 300 }, + [13] = { 59.9, 54.7, 14, 300 }, + [14] = { 59.6, 53.7, 14, 300 }, + [15] = { 56.5, 50.8, 14, 300 }, + [16] = { 59.9, 58.9, 14, 300 }, + [17] = { 59, 55.6, 14, 300 }, + [18] = { 57.5, 55.3, 14, 300 }, + [19] = { 57.7, 53.7, 14, 300 }, + [20] = { 58.4, 53.7, 14, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "6-7", + }, + [3130] = { + ["coords"] = { + [1] = { 39.2, 31.5, 14, 300 }, + [2] = { 39.1, 30.8, 14, 300 }, + [3] = { 40.6, 30.1, 14, 300 }, + [4] = { 39.1, 30, 14, 300 }, + [5] = { 40.5, 29.8, 14, 300 }, + [6] = { 39.2, 29.2, 14, 300 }, + [7] = { 40.5, 29, 14, 300 }, + [8] = { 39.2, 28.5, 14, 300 }, + [9] = { 39.6, 28.1, 14, 300 }, + [10] = { 40.2, 28.1, 14, 300 }, + [11] = { 39.2, 26.6, 14, 300 }, + }, + ["lvl"] = "9-10", + }, + [3131] = { + ["coords"] = { + [1] = { 38.9, 25.3, 14, 300 }, + [2] = { 39.4, 24.9, 14, 300 }, + [3] = { 42.4, 24.4, 14, 300 }, + [4] = { 43.3, 24.4, 14, 300 }, + [5] = { 42, 24.4, 14, 300 }, + [6] = { 41.4, 24.3, 14, 300 }, + [7] = { 40.7, 24.2, 14, 300 }, + [8] = { 43.6, 24.1, 14, 300 }, + [9] = { 40.1, 24.1, 14, 300 }, + [10] = { 42.9, 23.7, 14, 300 }, + [11] = { 39.6, 23.6, 14, 300 }, + }, + ["lvl"] = "10-11", + }, + [3133] = { + ["coords"] = { + [1] = { 78, 48.3, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [3134] = { + ["coords"] = { + [1] = { 81.8, 19.8, 10, 300 }, + }, + ["lvl"] = "25", + }, + [3135] = { + ["coords"] = { + [1] = { 79.4, 44.3, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "24", + }, + [3136] = { + ["coords"] = { + [1] = { 74, 48.5, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "31", + }, + [3137] = { + ["coords"] = { + [1] = { 74.1, 49.6, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [3138] = { + ["coords"] = { + [1] = { 75.8, 48.7, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [3139] = { + ["coords"] = { + [1] = { 51.9, 43.5, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "10", + }, + [3140] = { + ["coords"] = { + [1] = { 54.2, 73.3, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "7", + }, + [3141] = { + ["coords"] = { + [1] = { 61, 38.7, 14, 300 }, + [2] = { 61.1, 23.4, 14, 300 }, + [3] = { 59.8, 16.1, 14, 300 }, + [4] = { 59, 13, 14, 300 }, + }, + ["lvl"] = "8-9", + }, + [3142] = { + ["coords"] = { + [1] = { 52.2, 43.2, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "18", + }, + [3143] = { + ["coords"] = { + [1] = { 42.1, 68.3, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "5", + }, + [3144] = { + ["coords"] = { + [1] = { 34.3, 39.4, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [3145] = { + ["coords"] = { + [1] = { 42.8, 69.1, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "12", + }, + [3146] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "45", + }, + [3147] = { + ["coords"] = { + [1] = { 49.9, 40.4, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "6", + }, + [3148] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [3149] = { + ["coords"] = { + [1] = { 31.4, 29.9, 33, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [3150] = { + ["coords"] = { + [1] = { 61.8, 59.2, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [3151] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [3152] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "40", + }, + [3153] = { + ["coords"] = { + [1] = { 42.9, 69.4, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "11", + }, + [3154] = { + ["coords"] = { + [1] = { 42.8, 69.3, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "8", + }, + [3155] = { + ["coords"] = { + [1] = { 41.3, 68, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "8", + }, + [3156] = { + ["coords"] = { + [1] = { 40.7, 68.5, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "9", + }, + [3157] = { + ["coords"] = { + [1] = { 42.4, 69, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "10", + }, + [3158] = { + ["coords"] = { + [1] = { 42.6, 67.3, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "10", + }, + [3159] = { + ["coords"] = { + [1] = { 40.5, 68, 14, 300 }, + [2] = { 66.4, 32.6, 17, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "34", + }, + [3160] = { + ["coords"] = { + [1] = { 40.6, 67.8, 14, 300 }, + [2] = { 66.4, 32.5, 17, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "11", + }, + [3161] = { + ["coords"] = { + [1] = { 40.5, 67.8, 14, 300 }, + [2] = { 66.4, 32.5, 17, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "10", + }, + [3162] = { + ["coords"] = { + [1] = { 30.1, 45.3, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "12", + }, + [3163] = { + ["coords"] = { + [1] = { 52, 40.5, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "15", + }, + [3164] = { + ["coords"] = { + [1] = { 54.4, 42.2, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "14", + }, + [3165] = { + ["coords"] = { + [1] = { 53, 41, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "13", + }, + [3166] = { + ["coords"] = { + [1] = { 53.1, 40.9, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "14", + }, + [3167] = { + ["coords"] = { + [1] = { 51.9, 41.1, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "16", + }, + [3168] = { + ["coords"] = { + [1] = { 53, 42, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "15", + }, + [3169] = { + ["coords"] = { + [1] = { 54.2, 42.5, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "43", + }, + [3170] = { + ["coords"] = { + [1] = { 52, 43.7, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "14", + }, + [3171] = { + ["coords"] = { + [1] = { 51.8, 43.5, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "16", + }, + [3172] = { + ["coords"] = { + [1] = { 54.4, 41.2, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "37", + }, + [3173] = { + ["coords"] = { + [1] = { 54.4, 42.6, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "15", + }, + [3174] = { + ["coords"] = { + [1] = { 52, 40.7, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "27", + }, + [3175] = { + ["coords"] = { + [1] = { 51.8, 40.9, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "16", + }, + [3176] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "16", + }, + [3177] = { + ["coords"] = { + [1] = { 62.9, 49.9, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [3178] = { + ["coords"] = { + [1] = { 8, 58.3, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [3179] = { + ["coords"] = { + [1] = { 8.1, 58.6, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [3180] = { + ["coords"] = { + [1] = { 46.6, 18.4, 11, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "30-31", + }, + [3181] = { + ["coords"] = { + [1] = { 10.8, 61.4, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [3182] = { + ["coords"] = { + [1] = { 10.8, 60.2, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [3183] = { + ["coords"] = { + [1] = { 42.7, 53, 14, 300 }, + }, + ["lvl"] = "5", + }, + [3184] = { + ["coords"] = { + [1] = { 55.4, 73.9, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [3185] = { + ["coords"] = { + [1] = { 55.4, 75.1, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "14", + }, + [3186] = { + ["coords"] = { + [1] = { 56.3, 73.4, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "11", + }, + [3187] = { + ["coords"] = { + [1] = { 56.4, 73.8, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "12", + }, + [3188] = { + ["coords"] = { + [1] = { 55.9, 74.7, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "12", + }, + [3189] = { + ["coords"] = { + [1] = { 47.2, 53.6, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "7", + }, + [3190] = { + ["coords"] = { + [1] = { 41.5, 18.6, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "8", + }, + [3191] = { + ["coords"] = { + [1] = { 51.1, 42.4, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "6", + }, + [3192] = { + ["coords"] = { + [1] = { 59.7, 58.3, 14, 240 }, + }, + ["fac"] = "A", + ["lvl"] = "8", + }, + [3193] = { + ["coords"] = { + [1] = { 43.1, 30.2, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "5", + }, + [3194] = { + ["coords"] = { + [1] = { 56, 73.9, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "7", + }, + [3195] = { + ["coords"] = { + [1] = { 52.8, 29.3, 14, 300 }, + [2] = { 52.5, 29.2, 14, 300 }, + [3] = { 53.2, 29.1, 14, 300 }, + [4] = { 52.7, 27.9, 14, 300 }, + [5] = { 53, 27.8, 14, 300 }, + [6] = { 53.4, 26.9, 14, 300 }, + }, + ["lvl"] = "8-9", + }, + [3196] = { + ["coords"] = { + [1] = { 52.8, 28.5, 14, 300 }, + [2] = { 53.1, 27.2, 14, 300 }, + [3] = { 52.1, 26.9, 14, 300 }, + [4] = { 52.8, 26.8, 14, 300 }, + [5] = { 51.9, 26.3, 14, 300 }, + [6] = { 51.9, 25.1, 14, 300 }, + }, + ["lvl"] = "9-10", + }, + [3197] = { + ["coords"] = { + [1] = { 42.3, 27.3, 14, 300 }, + [2] = { 42.3, 26.9, 14, 300 }, + [3] = { 42, 26.6, 14, 300 }, + [4] = { 42.3, 26.3, 14, 300 }, + [5] = { 52.7, 11.1, 14, 300 }, + [6] = { 51.9, 10.8, 14, 300 }, + [7] = { 53.4, 10.6, 14, 300 }, + [8] = { 52.5, 10.2, 14, 300 }, + [9] = { 51.6, 10.1, 14, 300 }, + [10] = { 53.7, 9.9, 14, 300 }, + [11] = { 55, 9.8, 14, 300 }, + [12] = { 54.7, 9.3, 14, 300 }, + [13] = { 53.3, 9.2, 14, 300 }, + [14] = { 52.4, 9.2, 14, 300 }, + [15] = { 51.5, 9.2, 14, 300 }, + [16] = { 53, 8.9, 14, 300 }, + [17] = { 54.3, 8.9, 14, 300 }, + [18] = { 53.8, 8.9, 14, 300 }, + [19] = { 51.4, 8.7, 14, 300 }, + [20] = { 52.5, 8.6, 14, 300 }, + [21] = { 52.1, 8.2, 14, 300 }, + [22] = { 53.4, 8.2, 14, 300 }, + [23] = { 52.7, 7.9, 14, 300 }, + }, + ["lvl"] = "9-10", + }, + [3198] = { + ["coords"] = { + [1] = { 41.9, 26.9, 14, 300 }, + [2] = { 42.9, 26.4, 14, 300 }, + [3] = { 53.1, 11, 14, 300 }, + [4] = { 52.3, 11, 14, 300 }, + [5] = { 51.6, 10.6, 14, 300 }, + [6] = { 53.3, 10, 14, 300 }, + [7] = { 52.1, 9.8, 14, 300 }, + [8] = { 53.1, 9.4, 14, 300 }, + [9] = { 53.9, 9.4, 14, 300 }, + [10] = { 54.7, 8.8, 14, 300 }, + [11] = { 53.6, 8.5, 14, 300 }, + [12] = { 52.6, 8.2, 14, 300 }, + [13] = { 51.6, 8.1, 14, 300 }, + [14] = { 53.4, 7.7, 14, 300 }, + [15] = { 52.9, 7.6, 14, 300 }, + }, + ["lvl"] = "10-11", + }, + [3199] = { + ["coords"] = { + [1] = { 52.4, 26.8, 14, 300 }, + [2] = { 52.6, 26.4, 14, 300 }, + [3] = { 51.9, 25.7, 14, 300 }, + [4] = { 52.7, 25.4, 14, 300 }, + [5] = { 52.6, 25, 14, 300 }, + [6] = { 52.2, 24.9, 14, 300 }, + [7] = { 52.2, 24.5, 14, 300 }, + }, + ["lvl"] = "10-11", + }, + [3200] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [3201] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "62", + }, + [3202] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "35", + }, + [3203] = { + ["coords"] = { + [1] = { 42.1, 26.7, 14, 300 }, + }, + ["lvl"] = "12", + }, + [3204] = { + ["coords"] = { + [1] = { 51.8, 10, 14, 300 }, + [2] = { 51.5, 9.7, 14, 300 }, + [3] = { 51.9, 9.6, 14, 300 }, + [4] = { 52.6, 8.8, 14, 300 }, + }, + ["lvl"] = "14", + }, + [3205] = { + ["coords"] = { + [1] = { 67.6, 87.8, 14, 300 }, + [2] = { 80.5, 42.9, 17, 300 }, + }, + ["lvl"] = "10", + }, + [3206] = { + ["coords"] = { + [1] = { 67.1, 87.8, 14, 300 }, + [2] = { 67.2, 87.3, 14, 300 }, + [3] = { 66.9, 87.2, 14, 300 }, + [4] = { 67.6, 86.9, 14, 300 }, + [5] = { 67.1, 86.8, 14, 300 }, + [6] = { 66, 86.8, 14, 300 }, + [7] = { 67.2, 86.5, 14, 300 }, + [8] = { 67.3, 84.9, 14, 300 }, + [9] = { 68.5, 84.3, 14, 300 }, + [10] = { 65.9, 84, 14, 300 }, + [11] = { 68.2, 83.8, 14, 300 }, + [12] = { 68.5, 83.5, 14, 300 }, + [13] = { 68.1, 83.5, 14, 300 }, + [14] = { 68.3, 83.3, 14, 300 }, + [15] = { 65.9, 82.9, 14, 300 }, + [16] = { 67.4, 82.6, 14, 300 }, + [17] = { 68.4, 82.4, 14, 300 }, + [18] = { 67.9, 82, 14, 300 }, + [19] = { 80.3, 42.9, 17, 300 }, + [20] = { 80.3, 42.7, 17, 300 }, + [21] = { 80.2, 42.6, 17, 300 }, + [22] = { 80.5, 42.4, 17, 300 }, + [23] = { 80.2, 42.4, 17, 300 }, + [24] = { 79.7, 42.4, 17, 300 }, + [25] = { 80.3, 42.3, 17, 300 }, + [26] = { 80.3, 41.4, 17, 300 }, + [27] = { 81, 41.1, 17, 300 }, + [28] = { 79.6, 40.9, 17, 300 }, + [29] = { 80.9, 40.8, 17, 300 }, + [30] = { 81, 40.7, 17, 300 }, + [31] = { 80.8, 40.7, 17, 300 }, + [32] = { 80.9, 40.6, 17, 300 }, + }, + ["lvl"] = "8-9", + }, + [3207] = { + ["coords"] = { + [1] = { 67.3, 88.7, 14, 300 }, + [2] = { 66.6, 87.8, 14, 300 }, + [3] = { 68.5, 86.7, 14, 300 }, + [4] = { 66.5, 86.7, 14, 300 }, + [5] = { 67.9, 85.9, 14, 300 }, + [6] = { 67.2, 85.8, 14, 300 }, + [7] = { 67.8, 83.9, 14, 300 }, + [8] = { 68.8, 83.6, 14, 300 }, + [9] = { 67.7, 83.5, 14, 300 }, + [10] = { 66.6, 83, 14, 300 }, + [11] = { 80.4, 43.4, 17, 300 }, + [12] = { 80, 42.9, 17, 300 }, + [13] = { 81, 42.3, 17, 300 }, + [14] = { 80, 42.3, 17, 300 }, + [15] = { 80.7, 41.9, 17, 300 }, + [16] = { 80.3, 41.9, 17, 300 }, + [17] = { 80.6, 40.9, 17, 300 }, + [18] = { 81.1, 40.7, 17, 300 }, + [19] = { 80.6, 40.7, 17, 300 }, + [20] = { 67.3, 84.9, 14, 300 }, + [21] = { 68.5, 84.3, 14, 300 }, + [22] = { 65.9, 84, 14, 300 }, + [23] = { 68.2, 83.8, 14, 300 }, + [24] = { 68.1, 83.5, 14, 300 }, + [25] = { 68.3, 83.3, 14, 300 }, + [26] = { 65.9, 82.9, 14, 300 }, + [27] = { 67.9, 82, 14, 300 }, + [28] = { 80.3, 41.4, 17, 300 }, + [29] = { 81, 41.1, 17, 300 }, + [30] = { 79.6, 40.9, 17, 300 }, + [31] = { 80.9, 40.8, 17, 300 }, + [32] = { 80.8, 40.7, 17, 300 }, + [33] = { 80.9, 40.6, 17, 300 }, + }, + ["lvl"] = "8-9", + }, + [3208] = { + ["coords"] = { + [1] = { 56.4, 20, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "18", + }, + [3209] = { + ["coords"] = { + [1] = { 44.5, 76.5, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "13", + }, + [3210] = { + ["coords"] = { + [1] = { 45.5, 78.3, 215, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [3211] = { + ["coords"] = { + [1] = { 46, 77.2, 215, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [3212] = { + ["coords"] = { + [1] = { 46.8, 59.3, 215, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "14", + }, + [3213] = { + ["coords"] = { + [1] = { 43.5, 77, 215, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [3214] = { + ["coords"] = { + [1] = { 44.2, 78.9, 215, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [3215] = { + ["coords"] = { + [1] = { 48.4, 57.2, 215, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "14", + }, + [3216] = { + ["coords"] = { + [1] = { 49.5, 50.6, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "37", + }, + [3217] = { + ["coords"] = { + [1] = { 50.9, 60.6, 215, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "14", + }, + [3218] = { + ["coords"] = { + [1] = { 49.5, 57.1, 215, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "14", + }, + [3219] = { + ["coords"] = { + [1] = { 51.1, 58.6, 215, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "14", + }, + [3220] = { + ["coords"] = { + [1] = { 48, 54.8, 215, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "14", + }, + [3221] = { + ["coords"] = { + [1] = { 50.3, 62.7, 215, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "14", + }, + [3222] = { + ["coords"] = { + [1] = { 47.5, 60.7, 215, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "14", + }, + [3223] = { + ["coords"] = { + [1] = { 48.2, 62.9, 215, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "14", + }, + [3224] = { + ["coords"] = { + [1] = { 45.9, 58.2, 215, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "14", + }, + [3225] = { + ["coords"] = { + [1] = { 36.9, 40.1, 14, 300 }, + [2] = { 43.7, 15.5, 14, 270 }, + }, + ["lvl"] = "10-11", + }, + [3226] = { + ["coords"] = { + [1] = { 36.4, 48.4, 14, 300 }, + [2] = { 36.6, 29.3, 14, 300 }, + [3] = { 51.4, 14.1, 14, 300 }, + [4] = { 64.2, 22.4, 17, 300 }, + [5] = { 64.3, 12.4, 17, 300 }, + }, + ["lvl"] = "10-11", + }, + [3227] = { + ["coords"] = { + [1] = { 37.6, 56.1, 14, 300 }, + [2] = { 43.7, 31.7, 14, 300 }, + [3] = { 39.8, 19.9, 14, 300 }, + [4] = { 38.8, 18.5, 14, 300 }, + [5] = { 44, 17.6, 14, 270 }, + [6] = { 64.9, 26.4, 17, 300 }, + }, + ["lvl"] = "10-11", + }, + [3228] = { + ["coords"] = { + [1] = { 60.4, 21.8, 14, 300 }, + [2] = { 56.9, 10.7, 14, 300 }, + }, + ["lvl"] = "10-11", + }, + [3229] = { + ["coords"] = { + [1] = { 63.3, 82.6, 215, 375 }, + }, + ["lvl"] = "5", + }, + [3230] = { + ["coords"] = { + [1] = { 32.3, 35.8, 1637, 7200 }, + }, + ["fac"] = "H", + ["lvl"] = "62", + }, + [3231] = { + ["coords"] = { + [1] = { 34.3, 52.7, 14, 300 }, + [2] = { 34.5, 25.9, 14, 300 }, + [3] = { 63.1, 24.6, 17, 300 }, + [4] = { 63.3, 10.6, 17, 300 }, + }, + ["lvl"] = "11-12", + }, + [3232] = { + ["coords"] = { + [1] = { 36.8, 39.5, 17, 375 }, + [2] = { 36.7, 39.5, 17, 375 }, + [3] = { 37, 39.4, 17, 375 }, + [4] = { 37.1, 39.3, 17, 375 }, + [5] = { 36.5, 39.3, 17, 375 }, + [6] = { 37.2, 39.1, 17, 375 }, + [7] = { 37, 39.1, 17, 375 }, + [8] = { 36.3, 39, 17, 375 }, + [9] = { 36.8, 39, 17, 375 }, + [10] = { 36.9, 38.9, 17, 375 }, + [11] = { 36.2, 38.9, 17, 375 }, + [12] = { 37.2, 38.8, 17, 375 }, + [13] = { 37, 38.7, 17, 375 }, + [14] = { 36.6, 38.7, 17, 375 }, + [15] = { 36.5, 38.6, 17, 375 }, + [16] = { 37.3, 38.5, 17, 375 }, + [17] = { 36.2, 38.5, 17, 375 }, + [18] = { 36.6, 38.5, 17, 375 }, + [19] = { 36.8, 38.5, 17, 375 }, + [20] = { 37.2, 38.3, 17, 375 }, + [21] = { 36.8, 38.3, 17, 375 }, + [22] = { 36.3, 38.2, 17, 375 }, + [23] = { 37, 38.1, 17, 375 }, + [24] = { 36.2, 38.1, 17, 375 }, + [25] = { 36.5, 38.1, 17, 375 }, + [26] = { 36.6, 37.8, 17, 375 }, + [27] = { 36.3, 37.8, 17, 375 }, + [28] = { 36.9, 37.8, 17, 375 }, + [29] = { 61.5, 22.9, 215, 375 }, + [30] = { 61.2, 22.8, 215, 375 }, + [31] = { 61.8, 22.6, 215, 375 }, + [32] = { 62, 22.5, 215, 375 }, + [33] = { 60.8, 22.4, 215, 375 }, + [34] = { 62.2, 22.1, 215, 375 }, + [35] = { 61.8, 22, 215, 375 }, + [36] = { 60.4, 22, 215, 375 }, + [37] = { 61.3, 21.8, 215, 375 }, + [38] = { 61.6, 21.7, 215, 375 }, + [39] = { 60.2, 21.6, 215, 375 }, + [40] = { 62.2, 21.5, 215, 375 }, + [41] = { 61.7, 21.3, 215, 375 }, + [42] = { 61, 21.3, 215, 375 }, + [43] = { 60.8, 21.1, 215, 375 }, + [44] = { 62.4, 21, 215, 375 }, + [45] = { 60.1, 20.9, 215, 375 }, + [46] = { 61, 20.8, 215, 375 }, + [47] = { 61.3, 20.8, 215, 375 }, + [48] = { 62.1, 20.6, 215, 375 }, + [49] = { 61.3, 20.5, 215, 375 }, + [50] = { 60.4, 20.4, 215, 375 }, + [51] = { 61.9, 20.2, 215, 375 }, + [52] = { 60.1, 20, 215, 375 }, + [53] = { 60.8, 20, 215, 375 }, + [54] = { 60.9, 19.5, 215, 375 }, + [55] = { 60.4, 19.5, 215, 375 }, + [56] = { 61.7, 19.5, 215, 375 }, + }, + ["lvl"] = "9-10", + }, + [3233] = { + ["coords"] = { + [1] = { 36, 40.9, 17, 375 }, + [2] = { 59.9, 25.6, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "8", + }, + [3234] = { + ["coords"] = { + [1] = { 55.3, 45.8, 17, 413 }, + [2] = { 53.5, 45.8, 17, 413 }, + [3] = { 52, 44.7, 17, 413 }, + [4] = { 53.8, 44.2, 17, 413 }, + [5] = { 52.7, 43.4, 17, 413 }, + [6] = { 45.8, 43.3, 17, 413 }, + [7] = { 47.2, 43.3, 17, 413 }, + [8] = { 51.4, 42.9, 17, 413 }, + [9] = { 43.7, 41.8, 17, 413 }, + [10] = { 61.6, 41.7, 17, 413 }, + [11] = { 60.1, 41.3, 17, 413 }, + [12] = { 53.8, 41.2, 17, 413 }, + [13] = { 44.8, 40.8, 17, 413 }, + [14] = { 54.8, 40.1, 17, 413 }, + [15] = { 55.9, 39.9, 17, 413 }, + [16] = { 42.4, 37.7, 17, 413 }, + [17] = { 42.1, 30.1, 17, 413 }, + [18] = { 41.2, 25.6, 17, 413 }, + [19] = { 40.1, 24.2, 17, 413 }, + [20] = { 41.5, 21.5, 17, 413 }, + [21] = { 42.1, 20.7, 17, 413 }, + [22] = { 43.8, 19.7, 17, 413 }, + [23] = { 57.1, 17.7, 17, 413 }, + [24] = { 57.1, 15.8, 17, 413 }, + [25] = { 52.7, 13.3, 17, 413 }, + [26] = { 53.6, 12, 17, 413 }, + [27] = { 54.6, 10.5, 17, 413 }, + }, + ["lvl"] = "14-15", + }, + [3235] = { + ["coords"] = { + [1] = { 47.2, 66.3, 17, 413 }, + }, + ["lvl"] = "24-25", + }, + [3236] = { + ["coords"] = { + [1] = { 47.2, 66.7, 17, 413 }, + [2] = { 47.1, 66.5, 17, 413 }, + [3] = { 47.3, 66.5, 17, 413 }, + [4] = { 47.3, 66.3, 17, 413 }, + [5] = { 47.4, 66.2, 17, 413 }, + [6] = { 47.2, 66.1, 17, 413 }, + }, + ["lvl"] = "19-20", + }, + [3237] = { + ["coords"] = { + [1] = { 47.2, 66.5, 17, 413 }, + }, + ["lvl"] = "25-26", + }, + [3238] = { + ["coords"] = { + [1] = { 28.2, 51, 15, 413 }, + [2] = { 47.1, 82.3, 17, 413 }, + [3] = { 48, 81.3, 17, 413 }, + [4] = { 47.8, 80.4, 17, 413 }, + [5] = { 50.1, 80.4, 17, 413 }, + [6] = { 49.6, 80.1, 17, 413 }, + [7] = { 46.5, 79.8, 17, 413 }, + [8] = { 49.4, 79.3, 17, 413 }, + [9] = { 44.6, 79.2, 17, 413 }, + [10] = { 46.5, 79.1, 17, 413 }, + [11] = { 49.1, 78.6, 17, 413 }, + [12] = { 44.5, 78.5, 17, 413 }, + [13] = { 43.2, 78.4, 17, 413 }, + [14] = { 45.1, 77.9, 17, 413 }, + [15] = { 46.8, 77.5, 17, 413 }, + [16] = { 46.3, 77.2, 17, 413 }, + [17] = { 49, 77, 17, 413 }, + [18] = { 44.7, 76.9, 17, 413 }, + [19] = { 45.2, 76.8, 17, 413 }, + [20] = { 44.2, 76.5, 17, 413 }, + [21] = { 48.7, 76.5, 17, 413 }, + [22] = { 48.1, 76.4, 17, 413 }, + [23] = { 49.2, 76.2, 17, 413 }, + [24] = { 48.4, 76, 17, 413 }, + [25] = { 47.8, 75.9, 17, 413 }, + [26] = { 44.1, 75.8, 17, 413 }, + [27] = { 43.6, 75.8, 17, 413 }, + [28] = { 44.7, 75.6, 17, 413 }, + [29] = { 48.4, 75.4, 17, 413 }, + [30] = { 47.4, 75.4, 17, 413 }, + [31] = { 49, 74.9, 17, 413 }, + [32] = { 45.5, 74.9, 17, 413 }, + [33] = { 47.1, 74.7, 17, 413 }, + [34] = { 48.4, 74.6, 17, 413 }, + [35] = { 46.8, 74.5, 17, 413 }, + [36] = { 44.5, 74.2, 17, 413 }, + [37] = { 44.8, 74, 17, 413 }, + [38] = { 43.8, 73.9, 17, 413 }, + [39] = { 48, 73.9, 17, 413 }, + [40] = { 48.5, 73.7, 17, 413 }, + [41] = { 46.8, 73, 17, 413 }, + [42] = { 46.8, 72.5, 17, 413 }, + }, + ["lvl"] = "22-23", + }, + [3239] = { + ["coords"] = { + [1] = { 46.5, 69, 17, 413 }, + [2] = { 45.8, 69, 17, 413 }, + [3] = { 46.7, 68.5, 17, 413 }, + [4] = { 45.4, 67.8, 17, 413 }, + [5] = { 45.7, 67, 17, 413 }, + [6] = { 47.1, 67, 17, 413 }, + [7] = { 47.4, 66.7, 17, 413 }, + [8] = { 45.2, 66.6, 17, 413 }, + [9] = { 46, 66.6, 17, 413 }, + [10] = { 45.8, 66.4, 17, 413 }, + [11] = { 47.1, 65.1, 17, 413 }, + [12] = { 45.2, 64.9, 17, 413 }, + [13] = { 47.8, 64.1, 17, 413 }, + [14] = { 48.2, 64.1, 17, 413 }, + [15] = { 44.4, 64, 17, 413 }, + [16] = { 46.2, 63.9, 17, 413 }, + [17] = { 46.5, 63.6, 17, 413 }, + [18] = { 45.7, 63.6, 17, 413 }, + [19] = { 45.4, 63.2, 17, 413 }, + [20] = { 48, 63.2, 17, 413 }, + [21] = { 44.5, 63.1, 17, 413 }, + [22] = { 47.1, 63.1, 17, 413 }, + [23] = { 49.4, 62.6, 17, 413 }, + [24] = { 48.4, 62.4, 17, 413 }, + [25] = { 43.8, 62.3, 17, 413 }, + [26] = { 43.5, 62.2, 17, 413 }, + [27] = { 47.1, 62.1, 17, 413 }, + [28] = { 49.3, 62, 17, 413 }, + [29] = { 46.4, 61.9, 17, 413 }, + [30] = { 49.1, 61.7, 17, 413 }, + [31] = { 48.9, 61.2, 17, 413 }, + [32] = { 44.1, 61.2, 17, 413 }, + [33] = { 42.8, 61.1, 17, 413 }, + [34] = { 50, 61.1, 17, 413 }, + [35] = { 48.5, 61, 17, 413 }, + [36] = { 47.5, 60.9, 17, 413 }, + [37] = { 48.1, 60.9, 17, 413 }, + [38] = { 43.8, 60.6, 17, 413 }, + [39] = { 48.8, 60.5, 17, 413 }, + [40] = { 43, 60.5, 17, 413 }, + [41] = { 50.4, 60.3, 17, 413 }, + [42] = { 42.5, 60.2, 17, 413 }, + [43] = { 48.3, 59.9, 17, 413 }, + [44] = { 50.2, 59.8, 17, 413 }, + [45] = { 49, 59.7, 17, 413 }, + [46] = { 49.5, 59.5, 17, 413 }, + [47] = { 48.5, 59.5, 17, 413 }, + [48] = { 49, 59, 17, 413 }, + [49] = { 48.1, 58.4, 17, 413 }, + [50] = { 48.5, 57.9, 17, 413 }, + [51] = { 48.1, 57.8, 17, 413 }, + [52] = { 73.2, 65.6, 215, 413 }, + [53] = { 72.7, 63.7, 215, 413 }, + }, + ["lvl"] = "20-21", + }, + [3240] = { + ["coords"] = { + [1] = { 49.8, 59.2, 17, 413 }, + [2] = { 50.1, 59.1, 17, 413 }, + [3] = { 49.8, 58.1, 17, 413 }, + [4] = { 42.2, 57.7, 17, 413 }, + [5] = { 42.2, 57.5, 17, 413 }, + [6] = { 52.3, 57.1, 17, 413 }, + [7] = { 45.8, 57.1, 17, 413 }, + [8] = { 48.3, 57, 17, 413 }, + [9] = { 48.7, 56.7, 17, 413 }, + [10] = { 52.8, 56.6, 17, 413 }, + [11] = { 48.1, 56.6, 17, 413 }, + [12] = { 52.3, 56.5, 17, 413 }, + [13] = { 45.3, 56.3, 17, 413 }, + [14] = { 46.7, 56.2, 17, 413 }, + [15] = { 49.1, 56.2, 17, 413 }, + [16] = { 46.3, 56.1, 17, 413 }, + [17] = { 49.7, 56, 17, 413 }, + [18] = { 46.8, 55.8, 17, 413 }, + [19] = { 52.8, 55.8, 17, 413 }, + [20] = { 45.5, 55.7, 17, 413 }, + [21] = { 48.7, 55.6, 17, 413 }, + [22] = { 52.6, 55.2, 17, 413 }, + [23] = { 48.8, 55.2, 17, 413 }, + [24] = { 53.1, 55.1, 17, 413 }, + [25] = { 49.6, 54.4, 17, 413 }, + [26] = { 50.1, 54.3, 17, 413 }, + [27] = { 52.4, 54.2, 17, 413 }, + [28] = { 49.4, 53.7, 17, 413 }, + [29] = { 50, 53.4, 17, 413 }, + [30] = { 44.2, 53.4, 17, 413 }, + [31] = { 51, 53, 17, 413 }, + [32] = { 50.5, 52.8, 17, 413 }, + [33] = { 50.1, 52.7, 17, 413 }, + [34] = { 45.4, 52.2, 17, 413 }, + [35] = { 47.7, 51.8, 17, 413 }, + [36] = { 48.9, 51.7, 17, 413 }, + [37] = { 48.9, 51.4, 17, 413 }, + [38] = { 47, 51.1, 17, 413 }, + [39] = { 46.4, 50.8, 17, 413 }, + [40] = { 48.9, 50.8, 17, 413 }, + [41] = { 47.3, 50.3, 17, 413 }, + [42] = { 46.1, 49.8, 17, 413 }, + [43] = { 43.5, 49.8, 17, 413 }, + [44] = { 44.7, 49.4, 17, 413 }, + [45] = { 43.5, 49.2, 17, 413 }, + [46] = { 47.5, 49.2, 17, 413 }, + [47] = { 42.2, 48.7, 17, 413 }, + [48] = { 46.4, 48.5, 17, 413 }, + [49] = { 47.1, 48.3, 17, 413 }, + [50] = { 45.1, 48.2, 17, 413 }, + [51] = { 45.3, 47.9, 17, 413 }, + [52] = { 44.5, 47.8, 17, 413 }, + [53] = { 46.8, 47.8, 17, 413 }, + [54] = { 44.7, 47.8, 17, 413 }, + [55] = { 45.7, 47.8, 17, 413 }, + [56] = { 44.5, 47.5, 17, 413 }, + [57] = { 47.3, 47.1, 17, 413 }, + [58] = { 42.9, 46.9, 17, 413 }, + [59] = { 44.5, 46.8, 17, 413 }, + [60] = { 47.4, 46.8, 17, 413 }, + [61] = { 43.7, 46.5, 17, 413 }, + [62] = { 46.4, 46.3, 17, 413 }, + [63] = { 43.2, 46.3, 17, 413 }, + [64] = { 42.6, 46.3, 17, 413 }, + [65] = { 45.4, 45.8, 17, 413 }, + [66] = { 42.2, 45.8, 17, 413 }, + [67] = { 45.2, 45.3, 17, 413 }, + [68] = { 44.5, 44.9, 17, 413 }, + [69] = { 46.2, 44.8, 17, 413 }, + [70] = { 43.7, 44.4, 17, 413 }, + [71] = { 72.1, 58.8, 215, 413 }, + [72] = { 72.1, 58.4, 215, 413 }, + }, + ["lvl"] = "18-19", + }, + [3241] = { + ["coords"] = { + [1] = { 61.6, 32.7, 17, 413 }, + [2] = { 43.9, 16.7, 17, 413 }, + [3] = { 45.5, 16.6, 17, 413 }, + [4] = { 44.4, 15.8, 17, 413 }, + [5] = { 43.1, 15, 17, 413 }, + [6] = { 44.5, 14.1, 17, 413 }, + [7] = { 47, 13.7, 17, 413 }, + }, + ["lvl"] = "15-16", + }, + [3242] = { + ["coords"] = { + [1] = { 37.8, 71.3, 14, 413 }, + [2] = { 52.7, 39.4, 17, 413 }, + [3] = { 53.3, 39, 17, 413 }, + [4] = { 55.6, 38.8, 17, 413 }, + [5] = { 52.9, 38.6, 17, 413 }, + [6] = { 48.6, 38.4, 17, 413 }, + [7] = { 47.8, 38.4, 17, 413 }, + [8] = { 48.8, 38.3, 17, 413 }, + [9] = { 54.4, 38.3, 17, 413 }, + [10] = { 55, 38.2, 17, 413 }, + [11] = { 50, 37.9, 17, 413 }, + [12] = { 49.4, 37.9, 17, 413 }, + [13] = { 51.2, 37.9, 17, 413 }, + [14] = { 52.1, 37.9, 17, 413 }, + [15] = { 54.6, 37.9, 17, 413 }, + [16] = { 47.4, 37.9, 17, 413 }, + [17] = { 50.9, 37.8, 17, 413 }, + [18] = { 51.7, 37.8, 17, 413 }, + [19] = { 48.6, 37.7, 17, 413 }, + [20] = { 52.8, 37.6, 17, 413 }, + [21] = { 49, 37.6, 17, 413 }, + [22] = { 54, 37.5, 17, 413 }, + [23] = { 49.5, 37.4, 17, 413 }, + [24] = { 53, 37.4, 17, 413 }, + [25] = { 49.4, 37.3, 17, 413 }, + [26] = { 51.4, 37, 17, 413 }, + [27] = { 48.4, 36.8, 17, 413 }, + [28] = { 53.3, 36.8, 17, 413 }, + [29] = { 52, 36.8, 17, 413 }, + [30] = { 47.3, 36.5, 17, 413 }, + [31] = { 49.7, 36.4, 17, 413 }, + [32] = { 49.3, 36.4, 17, 413 }, + [33] = { 52.4, 36.4, 17, 413 }, + [34] = { 50.2, 36.3, 17, 413 }, + [35] = { 51.7, 36.2, 17, 413 }, + [36] = { 53.3, 36, 17, 413 }, + [37] = { 48.7, 35.9, 17, 413 }, + [38] = { 50.7, 35.8, 17, 413 }, + [39] = { 51.8, 35.6, 17, 413 }, + [40] = { 53.4, 35.5, 17, 413 }, + [41] = { 55.3, 35.5, 17, 413 }, + [42] = { 44.6, 35.3, 17, 413 }, + [43] = { 52.5, 35.2, 17, 413 }, + [44] = { 54.3, 35.1, 17, 413 }, + [45] = { 56, 35, 17, 413 }, + [46] = { 52.7, 34.9, 17, 413 }, + [47] = { 56.7, 34.9, 17, 413 }, + [48] = { 52.1, 34.9, 17, 413 }, + [49] = { 56.6, 34.6, 17, 413 }, + [50] = { 64.5, 34.6, 17, 413 }, + [51] = { 55.8, 34.4, 17, 413 }, + [52] = { 65, 34.3, 17, 413 }, + [53] = { 50.8, 34.1, 17, 413 }, + [54] = { 54.7, 34.1, 17, 413 }, + [55] = { 64.7, 34, 17, 413 }, + [56] = { 56.7, 33.9, 17, 413 }, + [57] = { 56, 33.6, 17, 413 }, + [58] = { 44.4, 33.5, 17, 413 }, + [59] = { 43.8, 33.5, 17, 413 }, + [60] = { 44.7, 33.1, 17, 413 }, + [61] = { 54, 33, 17, 413 }, + [62] = { 64.4, 32.9, 17, 413 }, + [63] = { 44.4, 32.8, 17, 413 }, + [64] = { 56.3, 32.6, 17, 413 }, + [65] = { 43.5, 32.2, 17, 413 }, + [66] = { 63.6, 31.5, 17, 413 }, + [67] = { 45.2, 31.2, 17, 413 }, + [68] = { 43.4, 31, 17, 413 }, + [69] = { 46.1, 31, 17, 413 }, + [70] = { 45.8, 30.4, 17, 413 }, + [71] = { 45.5, 30.2, 17, 413 }, + [72] = { 45.7, 29.7, 17, 413 }, + [73] = { 46.3, 29.6, 17, 413 }, + [74] = { 43.5, 29, 17, 413 }, + [75] = { 43.1, 28.9, 17, 413 }, + [76] = { 44, 28.8, 17, 413 }, + [77] = { 47.1, 28.6, 17, 413 }, + [78] = { 43.8, 28.5, 17, 413 }, + [79] = { 43.2, 28.1, 17, 413 }, + [80] = { 44.3, 28, 17, 413 }, + [81] = { 45.6, 27.6, 17, 413 }, + [82] = { 46.4, 27.5, 17, 413 }, + [83] = { 47, 27.4, 17, 413 }, + [84] = { 43.3, 27.4, 17, 413 }, + [85] = { 46.7, 27, 17, 413 }, + [86] = { 42.8, 26.8, 17, 413 }, + [87] = { 46.4, 26.8, 17, 413 }, + [88] = { 45.8, 26.6, 17, 413 }, + [89] = { 44.5, 26.6, 17, 413 }, + [90] = { 43.9, 26.2, 17, 413 }, + [91] = { 42.8, 26.1, 17, 413 }, + [92] = { 47.4, 26, 17, 413 }, + [93] = { 42.2, 25.9, 17, 413 }, + [94] = { 43.2, 25.7, 17, 413 }, + [95] = { 46.4, 25.6, 17, 413 }, + [96] = { 45.2, 25.6, 17, 413 }, + [97] = { 44.8, 25.3, 17, 413 }, + [98] = { 46.8, 25.2, 17, 413 }, + [99] = { 42.8, 24.3, 17, 413 }, + [100] = { 42.5, 23.7, 17, 413 }, + [101] = { 61.3, 23.5, 17, 413 }, + [102] = { 42.2, 23.5, 17, 413 }, + [103] = { 56.7, 23.1, 17, 413 }, + [104] = { 61.9, 23.1, 17, 413 }, + [105] = { 62.4, 22.5, 17, 413 }, + [106] = { 60.1, 22.5, 17, 413 }, + [107] = { 60.3, 22.1, 17, 413 }, + [108] = { 61.7, 22.1, 17, 413 }, + [109] = { 61.4, 21.8, 17, 413 }, + [110] = { 59.6, 21.7, 17, 413 }, + [111] = { 55.7, 21.7, 17, 413 }, + [112] = { 54.8, 21.7, 17, 413 }, + [113] = { 57, 21.7, 17, 413 }, + [114] = { 56.3, 21.7, 17, 413 }, + [115] = { 62.2, 21.6, 17, 413 }, + [116] = { 60.9, 21.6, 17, 413 }, + [117] = { 59, 21.5, 17, 413 }, + [118] = { 56.2, 21.2, 17, 413 }, + [119] = { 58, 21.2, 17, 413 }, + [120] = { 57.9, 20.8, 17, 413 }, + [121] = { 58.6, 20.4, 17, 413 }, + [122] = { 52.8, 20.3, 17, 413 }, + [123] = { 59.3, 20.3, 17, 413 }, + [124] = { 57.1, 20.2, 17, 413 }, + [125] = { 58.2, 20.1, 17, 413 }, + [126] = { 56.9, 19.8, 17, 413 }, + [127] = { 58, 19.8, 17, 413 }, + [128] = { 53, 19.6, 17, 413 }, + [129] = { 57, 19.1, 17, 413 }, + [130] = { 61.5, 18.7, 17, 413 }, + [131] = { 62.3, 18.5, 17, 413 }, + [132] = { 52.5, 18.2, 17, 413 }, + [133] = { 61.5, 17.8, 17, 413 }, + [134] = { 52.7, 17.7, 17, 413 }, + [135] = { 52.7, 17.6, 17, 413 }, + [136] = { 52.2, 17.6, 17, 413 }, + [137] = { 53.3, 17.2, 17, 413 }, + [138] = { 52, 17.1, 17, 413 }, + [139] = { 53.1, 17, 17, 413 }, + [140] = { 53.8, 16.7, 17, 413 }, + [141] = { 52.4, 16.3, 17, 413 }, + [142] = { 52.3, 16.1, 17, 413 }, + [143] = { 52.3, 15.5, 17, 413 }, + [144] = { 51.4, 14.7, 17, 413 }, + [145] = { 52.4, 14.5, 17, 413 }, + [146] = { 49.4, 13.3, 17, 413 }, + [147] = { 51.7, 13.1, 17, 413 }, + [148] = { 50.7, 12.7, 17, 413 }, + [149] = { 51.2, 12.6, 17, 413 }, + }, + ["lvl"] = "13-14", + }, + [3243] = { + ["coords"] = { + [1] = { 55, 30.5, 17, 413 }, + [2] = { 55.3, 30.3, 17, 413 }, + [3] = { 51.7, 26.2, 17, 413 }, + [4] = { 50.7, 20.6, 17, 413 }, + [5] = { 49.6, 16.1, 17, 413 }, + [6] = { 50.1, 15.8, 17, 413 }, + }, + ["lvl"] = "12-13", + }, + [3244] = { + ["coords"] = { + [1] = { 52.9, 33.6, 17, 413 }, + [2] = { 50.4, 33.4, 17, 413 }, + [3] = { 50.8, 33.3, 17, 413 }, + [4] = { 53, 33, 17, 413 }, + [5] = { 51.2, 32.9, 17, 413 }, + [6] = { 53.7, 32.9, 17, 413 }, + [7] = { 53.4, 32.6, 17, 413 }, + [8] = { 53.3, 32.4, 17, 413 }, + [9] = { 53, 32.3, 17, 413 }, + [10] = { 54.6, 32.1, 17, 413 }, + [11] = { 51, 31.8, 17, 413 }, + [12] = { 53, 31.5, 17, 413 }, + [13] = { 50.3, 31, 17, 413 }, + [14] = { 49.1, 30.6, 17, 413 }, + [15] = { 50.3, 30.6, 17, 413 }, + [16] = { 53.3, 30.6, 17, 413 }, + [17] = { 53.7, 30.5, 17, 413 }, + [18] = { 53.1, 30.4, 17, 413 }, + [19] = { 49.6, 30.3, 17, 413 }, + [20] = { 49.4, 29.8, 17, 413 }, + [21] = { 53.6, 29.5, 17, 413 }, + [22] = { 49.1, 29.5, 17, 413 }, + [23] = { 48.6, 29.1, 17, 413 }, + [24] = { 53.3, 29.1, 17, 413 }, + [25] = { 53.9, 29, 17, 413 }, + [26] = { 48.2, 28.6, 17, 413 }, + [27] = { 53.9, 28.5, 17, 413 }, + [28] = { 52.8, 28.2, 17, 413 }, + [29] = { 51.4, 28.1, 17, 413 }, + [30] = { 54, 28, 17, 413 }, + [31] = { 50.7, 27.8, 17, 413 }, + [32] = { 47.8, 27.6, 17, 413 }, + [33] = { 51, 27.6, 17, 413 }, + [34] = { 51.7, 27.6, 17, 413 }, + [35] = { 48.1, 27.1, 17, 413 }, + [36] = { 52, 27.1, 17, 413 }, + [37] = { 52.7, 27.1, 17, 413 }, + [38] = { 53, 26.6, 17, 413 }, + [39] = { 48.6, 26.5, 17, 413 }, + [40] = { 52.7, 26.1, 17, 413 }, + [41] = { 52.7, 25.6, 17, 413 }, + [42] = { 48.5, 25.6, 17, 413 }, + [43] = { 47.8, 25.6, 17, 413 }, + [44] = { 55.5, 25.1, 17, 413 }, + [45] = { 48.7, 25, 17, 413 }, + [46] = { 48.7, 24.7, 17, 413 }, + [47] = { 55.4, 24.3, 17, 413 }, + [48] = { 49.4, 24.3, 17, 413 }, + [49] = { 49, 24, 17, 413 }, + [50] = { 55.9, 24, 17, 413 }, + [51] = { 53, 23.7, 17, 413 }, + [52] = { 48.8, 23.6, 17, 413 }, + [53] = { 54, 23.6, 17, 413 }, + [54] = { 48.5, 23.5, 17, 413 }, + [55] = { 54.7, 23.4, 17, 413 }, + [56] = { 54, 23.1, 17, 413 }, + [57] = { 51.7, 23.1, 17, 413 }, + [58] = { 51.3, 23, 17, 413 }, + [59] = { 48.7, 23, 17, 413 }, + [60] = { 49.3, 22.8, 17, 413 }, + [61] = { 49.1, 22.8, 17, 413 }, + [62] = { 52.9, 22.7, 17, 413 }, + [63] = { 51.9, 22.4, 17, 413 }, + [64] = { 53.4, 22.1, 17, 413 }, + [65] = { 51.4, 22.1, 17, 413 }, + [66] = { 54.1, 22, 17, 413 }, + [67] = { 52.4, 21.7, 17, 413 }, + [68] = { 52.8, 21.7, 17, 413 }, + [69] = { 51.6, 21.6, 17, 413 }, + [70] = { 52.2, 21, 17, 413 }, + [71] = { 52.1, 20.3, 17, 413 }, + [72] = { 51.8, 19.7, 17, 413 }, + [73] = { 50.9, 19.5, 17, 413 }, + [74] = { 51.4, 19.4, 17, 413 }, + [75] = { 51, 18.7, 17, 413 }, + [76] = { 51.7, 18.6, 17, 413 }, + [77] = { 51.3, 18.1, 17, 413 }, + [78] = { 51.1, 17.7, 17, 413 }, + [79] = { 51.2, 17.3, 17, 413 }, + [80] = { 51.2, 16.9, 17, 413 }, + [81] = { 51, 15.6, 17, 413 }, + [82] = { 50.7, 15.3, 17, 413 }, + [83] = { 48.1, 15.2, 17, 413 }, + [84] = { 47.3, 14.9, 17, 413 }, + [85] = { 47.8, 14.6, 17, 413 }, + [86] = { 48, 14.3, 17, 413 }, + [87] = { 49.3, 14.3, 17, 413 }, + [88] = { 50.7, 14.2, 17, 413 }, + [89] = { 47.3, 14.1, 17, 413 }, + [90] = { 50.4, 13.9, 17, 413 }, + [91] = { 49.8, 13.8, 17, 413 }, + [92] = { 47.6, 13.8, 17, 413 }, + [93] = { 48.6, 13.7, 17, 413 }, + }, + ["lvl"] = "11-12", + }, + [3245] = { + ["coords"] = { + [1] = { 59.6, 53.4, 17, 413 }, + [2] = { 55, 52.6, 17, 413 }, + [3] = { 54.2, 52.4, 17, 413 }, + [4] = { 56, 52.3, 17, 413 }, + [5] = { 59.5, 52.3, 17, 413 }, + [6] = { 57.1, 52.2, 17, 413 }, + [7] = { 58.3, 51.8, 17, 413 }, + [8] = { 58, 51.8, 17, 413 }, + [9] = { 53.7, 51.8, 17, 413 }, + [10] = { 54.4, 51.4, 17, 413 }, + [11] = { 55.5, 51.2, 17, 413 }, + [12] = { 55.4, 50.8, 17, 413 }, + [13] = { 54.3, 50.7, 17, 413 }, + [14] = { 54.6, 50.4, 17, 413 }, + [15] = { 59, 50.1, 17, 413 }, + [16] = { 49.7, 50.1, 17, 413 }, + [17] = { 48.8, 49.8, 17, 413 }, + [18] = { 54.7, 49.7, 17, 413 }, + [19] = { 50.2, 49.7, 17, 413 }, + [20] = { 55.1, 49.4, 17, 413 }, + [21] = { 56.2, 49.4, 17, 413 }, + [22] = { 59.3, 49.3, 17, 413 }, + [23] = { 62, 49.2, 17, 413 }, + [24] = { 53.6, 48.9, 17, 413 }, + [25] = { 61, 48.9, 17, 413 }, + [26] = { 49.4, 48.8, 17, 413 }, + [27] = { 53.4, 48.8, 17, 413 }, + [28] = { 53.8, 48.4, 17, 413 }, + [29] = { 49.7, 48.4, 17, 413 }, + [30] = { 49, 48.4, 17, 413 }, + [31] = { 56, 48.3, 17, 413 }, + [32] = { 55.9, 48.3, 17, 413 }, + [33] = { 54.3, 48, 17, 413 }, + [34] = { 61.3, 47.8, 17, 413 }, + [35] = { 53.5, 47.8, 17, 413 }, + [36] = { 55.3, 47.8, 17, 413 }, + [37] = { 52.8, 47.7, 17, 413 }, + [38] = { 49.7, 47.4, 17, 413 }, + [39] = { 49.1, 47.4, 17, 413 }, + [40] = { 55.6, 47.3, 17, 413 }, + [41] = { 51.7, 47.3, 17, 413 }, + [42] = { 50.5, 47.2, 17, 413 }, + [43] = { 52.6, 47.1, 17, 413 }, + [44] = { 49.8, 46.3, 17, 413 }, + [45] = { 47.1, 44.9, 17, 413 }, + [46] = { 47.6, 44.1, 17, 413 }, + [47] = { 45.8, 43.3, 17, 413 }, + [48] = { 60.9, 34.5, 17, 413 }, + [49] = { 60.5, 33.9, 17, 413 }, + [50] = { 59.5, 33.5, 17, 413 }, + [51] = { 59.9, 33.2, 17, 413 }, + [52] = { 61.1, 33, 17, 413 }, + [53] = { 59.3, 32.5, 17, 413 }, + [54] = { 60.7, 32, 17, 413 }, + [55] = { 59.6, 31.6, 17, 413 }, + [56] = { 61.2, 30.7, 17, 413 }, + [57] = { 37.3, 28.4, 17, 413 }, + [58] = { 38, 27.9, 17, 413 }, + [59] = { 38, 26.6, 17, 413 }, + [60] = { 38.3, 26.1, 17, 413 }, + [61] = { 38.9, 25.1, 17, 413 }, + [62] = { 39.9, 24.7, 17, 413 }, + [63] = { 44.1, 17.2, 17, 413 }, + [64] = { 45.5, 17.1, 17, 413 }, + [65] = { 42.1, 16, 17, 413 }, + [66] = { 45.4, 15.8, 17, 413 }, + [67] = { 44.5, 15.5, 17, 413 }, + [68] = { 45.3, 15.4, 17, 413 }, + [69] = { 42.1, 15.3, 17, 413 }, + [70] = { 44.2, 15.3, 17, 413 }, + [71] = { 44.6, 14.8, 17, 413 }, + [72] = { 43.3, 14.8, 17, 413 }, + [73] = { 45.7, 14.6, 17, 413 }, + [74] = { 44.6, 13.7, 17, 413 }, + [75] = { 45, 13.6, 17, 413 }, + [76] = { 45.2, 13.4, 17, 413 }, + [77] = { 48, 13.2, 17, 413 }, + [78] = { 61.4, 13.2, 17, 413 }, + [79] = { 46.8, 13.2, 17, 413 }, + [80] = { 46.7, 12.3, 17, 413 }, + [81] = { 60.9, 11, 17, 413 }, + [82] = { 60.8, 9.8, 17, 413 }, + [83] = { 60, 8.5, 17, 413 }, + [84] = { 58.3, 7.9, 17, 413 }, + [85] = { 59.6, 7.8, 17, 413 }, + [86] = { 59.1, 6.7, 17, 413 }, + [87] = { 57.3, 6.4, 17, 413 }, + [88] = { 56, 6.2, 17, 413 }, + [89] = { 56, 5.3, 17, 413 }, + }, + ["lvl"] = "16-17", + }, + [3246] = { + ["coords"] = { + [1] = { 35.8, 63.2, 14, 413 }, + [2] = { 35.1, 60.3, 14, 413 }, + [3] = { 49.2, 38.9, 17, 413 }, + [4] = { 48.2, 38.5, 17, 413 }, + [5] = { 54.7, 38.5, 17, 413 }, + [6] = { 49.8, 38.1, 17, 413 }, + [7] = { 47.7, 38, 17, 413 }, + [8] = { 48.1, 37.9, 17, 413 }, + [9] = { 47, 37.7, 17, 413 }, + [10] = { 53.3, 37.4, 17, 413 }, + [11] = { 48.3, 37.1, 17, 413 }, + [12] = { 48.8, 37, 17, 413 }, + [13] = { 52.4, 37, 17, 413 }, + [14] = { 50, 36.6, 17, 413 }, + [15] = { 54.4, 36.4, 17, 413 }, + [16] = { 44.9, 35.9, 17, 413 }, + [17] = { 49.4, 35.9, 17, 413 }, + [18] = { 63.9, 35.9, 17, 413 }, + [19] = { 50.1, 35.9, 17, 413 }, + [20] = { 64, 35.6, 17, 413 }, + [21] = { 51.1, 35.6, 17, 413 }, + [22] = { 52, 35.5, 17, 413 }, + [23] = { 54.3, 35.5, 17, 413 }, + [24] = { 54.7, 35.5, 17, 413 }, + [25] = { 53, 35.2, 17, 413 }, + [26] = { 44.6, 35.1, 17, 413 }, + [27] = { 54.4, 35, 17, 413 }, + [28] = { 51.1, 35, 17, 413 }, + [29] = { 54.2, 34.8, 17, 413 }, + [30] = { 50.9, 34.7, 17, 413 }, + [31] = { 47.6, 34.6, 17, 413 }, + [32] = { 43.9, 34.6, 17, 413 }, + [33] = { 56.8, 34.5, 17, 413 }, + [34] = { 44.9, 34.5, 17, 413 }, + [35] = { 53, 34.4, 17, 413 }, + [36] = { 46.7, 34.2, 17, 413 }, + [37] = { 47.8, 34.1, 17, 413 }, + [38] = { 44.7, 34, 17, 413 }, + [39] = { 54.3, 33.5, 17, 413 }, + [40] = { 46.7, 33.4, 17, 413 }, + [41] = { 56.1, 33, 17, 413 }, + [42] = { 47.7, 33, 17, 413 }, + [43] = { 43.2, 33, 17, 413 }, + [44] = { 49.1, 32.8, 17, 413 }, + [45] = { 45.8, 32.8, 17, 413 }, + [46] = { 46.7, 32.6, 17, 413 }, + [47] = { 47.6, 32.5, 17, 413 }, + [48] = { 44.9, 32.5, 17, 413 }, + [49] = { 63.9, 32.1, 17, 413 }, + [50] = { 48.8, 32, 17, 413 }, + [51] = { 56, 31.9, 17, 413 }, + [52] = { 58.3, 31.9, 17, 413 }, + [53] = { 63.8, 31.9, 17, 413 }, + [54] = { 43.8, 31.9, 17, 413 }, + [55] = { 44.9, 31.8, 17, 413 }, + [56] = { 48.7, 31.7, 17, 413 }, + [57] = { 47.5, 31.6, 17, 413 }, + [58] = { 57, 31.5, 17, 413 }, + [59] = { 43.1, 31.4, 17, 413 }, + [60] = { 57.7, 31.3, 17, 413 }, + [61] = { 48, 31.2, 17, 413 }, + [62] = { 57.3, 31.1, 17, 413 }, + [63] = { 63.5, 31.1, 17, 413 }, + [64] = { 56.6, 31.1, 17, 413 }, + [65] = { 58, 31, 17, 413 }, + [66] = { 46, 30.9, 17, 413 }, + [67] = { 46.3, 30.8, 17, 413 }, + [68] = { 57.6, 30.5, 17, 413 }, + [69] = { 56.9, 30.5, 17, 413 }, + [70] = { 56.4, 30.2, 17, 413 }, + [71] = { 46.2, 30.1, 17, 413 }, + [72] = { 63.9, 30.1, 17, 413 }, + [73] = { 42.6, 29.9, 17, 413 }, + [74] = { 57.7, 29.9, 17, 413 }, + [75] = { 57.3, 29.8, 17, 413 }, + [76] = { 47.5, 29.8, 17, 413 }, + [77] = { 55.7, 29.6, 17, 413 }, + [78] = { 63.6, 29.6, 17, 413 }, + [79] = { 56.8, 29.5, 17, 413 }, + [80] = { 57.3, 29.1, 17, 413 }, + [81] = { 56.7, 29.1, 17, 413 }, + [82] = { 58, 28.8, 17, 413 }, + [83] = { 46.4, 28.6, 17, 413 }, + [84] = { 56.3, 28.6, 17, 413 }, + [85] = { 57.6, 28.6, 17, 413 }, + [86] = { 63.6, 28.6, 17, 413 }, + [87] = { 57.1, 28.4, 17, 413 }, + [88] = { 56.6, 28, 17, 413 }, + [89] = { 57.6, 27.7, 17, 413 }, + [90] = { 57, 27.6, 17, 413 }, + [91] = { 46.2, 27.3, 17, 413 }, + [92] = { 57.2, 27, 17, 413 }, + [93] = { 45.1, 26.7, 17, 413 }, + [94] = { 56.9, 26.7, 17, 413 }, + [95] = { 47.1, 26.6, 17, 413 }, + [96] = { 58, 26.1, 17, 413 }, + [97] = { 46.8, 26.1, 17, 413 }, + [98] = { 44.2, 25.5, 17, 413 }, + [99] = { 42.6, 25.1, 17, 413 }, + [100] = { 44.8, 25.1, 17, 413 }, + [101] = { 43.6, 24.8, 17, 413 }, + [102] = { 46.7, 24.4, 17, 413 }, + [103] = { 57.6, 23.4, 17, 413 }, + [104] = { 60.2, 23, 17, 413 }, + [105] = { 56.8, 22.7, 17, 413 }, + [106] = { 55.8, 22.7, 17, 413 }, + [107] = { 61.5, 22.5, 17, 413 }, + [108] = { 60.9, 22.4, 17, 413 }, + [109] = { 50.1, 21.8, 17, 413 }, + [110] = { 47, 21.7, 17, 413 }, + [111] = { 47.9, 21.6, 17, 413 }, + [112] = { 48.8, 21.5, 17, 413 }, + [113] = { 47.6, 21.3, 17, 413 }, + [114] = { 49.6, 21.1, 17, 413 }, + [115] = { 56.6, 21.1, 17, 413 }, + [116] = { 52.7, 21.1, 17, 413 }, + [117] = { 57.4, 21.1, 17, 413 }, + [118] = { 57.1, 20.8, 17, 413 }, + [119] = { 46.7, 20.8, 17, 413 }, + [120] = { 58.3, 20.8, 17, 413 }, + [121] = { 49.4, 20.7, 17, 413 }, + [122] = { 59.2, 20.7, 17, 413 }, + [123] = { 48.7, 20.6, 17, 413 }, + [124] = { 48.1, 20.6, 17, 413 }, + [125] = { 49.8, 20.4, 17, 413 }, + [126] = { 47.8, 20.2, 17, 413 }, + [127] = { 49.1, 20.2, 17, 413 }, + [128] = { 48.4, 20.1, 17, 413 }, + [129] = { 48.8, 19.7, 17, 413 }, + [130] = { 48.2, 19.6, 17, 413 }, + [131] = { 46.2, 19.4, 17, 413 }, + [132] = { 46.7, 19.3, 17, 413 }, + [133] = { 49.5, 19.3, 17, 413 }, + [134] = { 48.4, 19.2, 17, 413 }, + [135] = { 53, 18.8, 17, 413 }, + [136] = { 48.4, 18.2, 17, 413 }, + [137] = { 49.5, 18.2, 17, 413 }, + [138] = { 49.1, 17.6, 17, 413 }, + [139] = { 49.9, 17.5, 17, 413 }, + [140] = { 48.4, 17.3, 17, 413 }, + [141] = { 52.6, 16.2, 17, 413 }, + [142] = { 48.6, 15.8, 17, 413 }, + [143] = { 52.3, 15.2, 17, 413 }, + [144] = { 51.9, 14.8, 17, 413 }, + [145] = { 51.2, 13.3, 17, 413 }, + [146] = { 50.3, 13.2, 17, 413 }, + [147] = { 50.7, 12.6, 17, 413 }, + }, + ["lvl"] = "12-13", + }, + [3247] = { + ["coords"] = { + [1] = { 48.5, 56.7, 17, 413 }, + [2] = { 49.4, 55, 17, 413 }, + [3] = { 49.8, 54, 17, 413 }, + [4] = { 50.8, 53.2, 17, 413 }, + [5] = { 44.1, 53.2, 17, 413 }, + [6] = { 45.5, 52.8, 17, 413 }, + [7] = { 46.8, 50.9, 17, 413 }, + [8] = { 47.6, 50.9, 17, 413 }, + [9] = { 46.7, 49.1, 17, 413 }, + [10] = { 45.8, 48.8, 17, 413 }, + [11] = { 44.5, 47.2, 17, 413 }, + [12] = { 45.8, 46.6, 17, 413 }, + [13] = { 42.8, 46, 17, 413 }, + [14] = { 44, 45.4, 17, 413 }, + }, + ["lvl"] = "18-20", + }, + [3248] = { + ["coords"] = { + [1] = { 33.8, 55.5, 14, 413 }, + [2] = { 55.3, 47.1, 17, 413 }, + [3] = { 55.4, 46.1, 17, 413 }, + [4] = { 53.1, 45.8, 17, 413 }, + [5] = { 51.9, 44.7, 17, 413 }, + [6] = { 55, 44.4, 17, 413 }, + [7] = { 52.4, 42.8, 17, 413 }, + [8] = { 49.4, 42.7, 17, 413 }, + [9] = { 47.5, 42.7, 17, 413 }, + [10] = { 46.8, 42.7, 17, 413 }, + [11] = { 51.4, 42.6, 17, 413 }, + [12] = { 57, 42.3, 17, 413 }, + [13] = { 43.8, 42, 17, 413 }, + [14] = { 48.2, 41.8, 17, 413 }, + [15] = { 60.3, 41.8, 17, 413 }, + [16] = { 43.2, 41.7, 17, 413 }, + [17] = { 54.1, 41.6, 17, 413 }, + [18] = { 60.6, 41.1, 17, 413 }, + [19] = { 49.2, 40.9, 17, 413 }, + [20] = { 44.7, 40.7, 17, 413 }, + [21] = { 54.9, 40.6, 17, 413 }, + [22] = { 55.7, 40.5, 17, 413 }, + [23] = { 48.7, 40.4, 17, 413 }, + [24] = { 56.4, 40.3, 17, 413 }, + [25] = { 43.8, 40.1, 17, 413 }, + [26] = { 44, 39.8, 17, 413 }, + [27] = { 56.9, 39.6, 17, 413 }, + [28] = { 56.5, 39, 17, 413 }, + [29] = { 43.8, 38.9, 17, 413 }, + [30] = { 43.5, 38.9, 17, 413 }, + [31] = { 55.9, 37.9, 17, 413 }, + [32] = { 59.6, 36.6, 17, 413 }, + [33] = { 42.2, 36.4, 17, 413 }, + [34] = { 59.3, 35.9, 17, 413 }, + [35] = { 42.9, 35.5, 17, 413 }, + [36] = { 58.2, 34.1, 17, 413 }, + [37] = { 58.7, 33.9, 17, 413 }, + [38] = { 59.5, 33.9, 17, 413 }, + [39] = { 59.9, 33.9, 17, 413 }, + [40] = { 43.3, 33.9, 17, 413 }, + [41] = { 42.8, 32.1, 17, 413 }, + [42] = { 39.5, 31.4, 17, 413 }, + [43] = { 59, 30.7, 17, 413 }, + [44] = { 42.1, 30.5, 17, 413 }, + [45] = { 40.1, 30.1, 17, 413 }, + [46] = { 59.6, 29.5, 17, 413 }, + [47] = { 62.8, 29.5, 17, 413 }, + [48] = { 62.8, 28.6, 17, 413 }, + [49] = { 60, 27.4, 17, 413 }, + [50] = { 61.6, 27, 17, 413 }, + [51] = { 63, 26.6, 17, 413 }, + [52] = { 62.9, 26.1, 17, 413 }, + [53] = { 40.6, 25.3, 17, 413 }, + [54] = { 42.2, 22.4, 17, 413 }, + [55] = { 41.8, 21.8, 17, 413 }, + [56] = { 42.9, 20.1, 17, 413 }, + [57] = { 44.1, 19.2, 17, 413 }, + [58] = { 44.8, 18.7, 17, 413 }, + [59] = { 57.9, 18.2, 17, 413 }, + [60] = { 44.1, 17.8, 17, 413 }, + [61] = { 56.6, 17.8, 17, 413 }, + [62] = { 56.4, 16.2, 17, 413 }, + [63] = { 60.4, 15.8, 17, 413 }, + [64] = { 60.8, 14.6, 17, 413 }, + [65] = { 55.4, 13.6, 17, 413 }, + [66] = { 51.5, 13.3, 17, 413 }, + [67] = { 52.3, 13.1, 17, 413 }, + [68] = { 51.7, 12.9, 17, 413 }, + [69] = { 54, 10.8, 17, 413 }, + [70] = { 54.5, 9.9, 17, 413 }, + [71] = { 55, 8.7, 17, 413 }, + [72] = { 61.6, 8.7, 17, 413 }, + [73] = { 61.5, 8.1, 17, 413 }, + [74] = { 62.9, 7.8, 17, 413 }, + [75] = { 63.2, 6.6, 17, 413 }, + [76] = { 63.6, 5.4, 17, 413 }, + }, + ["lvl"] = "15-16", + }, + [3249] = { + ["coords"] = { + [1] = { 45.5, 81.2, 17, 413 }, + [2] = { 46.7, 79.2, 17, 413 }, + [3] = { 43.8, 78.8, 17, 413 }, + [4] = { 43.8, 78.6, 17, 413 }, + [5] = { 44.7, 78.2, 17, 413 }, + [6] = { 43.8, 76.9, 17, 413 }, + [7] = { 49.1, 76.3, 17, 413 }, + [8] = { 48.6, 76.2, 17, 413 }, + [9] = { 46.9, 76.2, 17, 413 }, + [10] = { 44.5, 75.9, 17, 413 }, + [11] = { 44.8, 75.4, 17, 413 }, + [12] = { 47.5, 75.2, 17, 413 }, + [13] = { 43.7, 75.1, 17, 413 }, + [14] = { 47.1, 74.4, 17, 413 }, + [15] = { 44.9, 73.9, 17, 413 }, + [16] = { 47, 73.7, 17, 413 }, + }, + ["lvl"] = "23-24", + }, + [3250] = { + ["coords"] = { + [1] = { 26.9, 29.7, 15, 413 }, + [2] = { 43.8, 73, 17, 413 }, + [3] = { 44.9, 72.6, 17, 413 }, + [4] = { 42.5, 72.1, 17, 413 }, + [5] = { 43.7, 72, 17, 413 }, + [6] = { 45.2, 72, 17, 413 }, + [7] = { 44.7, 71.6, 17, 413 }, + [8] = { 42.9, 71.4, 17, 413 }, + [9] = { 47.3, 71.3, 17, 413 }, + [10] = { 43.7, 71.1, 17, 413 }, + [11] = { 42.5, 71.1, 17, 413 }, + [12] = { 47.3, 70.5, 17, 413 }, + [13] = { 48.1, 70.4, 17, 413 }, + [14] = { 48.7, 70.2, 17, 413 }, + [15] = { 45.2, 70.2, 17, 413 }, + [16] = { 43.9, 70, 17, 413 }, + [17] = { 47.1, 70, 17, 413 }, + [18] = { 42.5, 69.9, 17, 413 }, + [19] = { 44.2, 69.5, 17, 413 }, + [20] = { 48.1, 69.5, 17, 413 }, + [21] = { 45.4, 69.5, 17, 413 }, + [22] = { 45.4, 69.4, 17, 413 }, + [23] = { 42.1, 69.4, 17, 413 }, + [24] = { 49.4, 69.3, 17, 413 }, + [25] = { 43.2, 69.2, 17, 413 }, + [26] = { 49.1, 69.1, 17, 413 }, + [27] = { 71.9, 81.8, 215, 413 }, + }, + ["lvl"] = "20-21", + }, + [3251] = { + ["coords"] = { + [1] = { 44.4, 72.7, 17, 413 }, + [2] = { 45.1, 72.5, 17, 413 }, + [3] = { 44.2, 72.4, 17, 413 }, + [4] = { 44, 72.4, 17, 413 }, + [5] = { 45.3, 72.3, 17, 413 }, + [6] = { 44.2, 71.5, 17, 413 }, + [7] = { 43.1, 71.5, 17, 413 }, + [8] = { 44.1, 71.4, 17, 413 }, + [9] = { 44.2, 71.3, 17, 413 }, + [10] = { 42.9, 71.3, 17, 413 }, + [11] = { 43, 71.2, 17, 413 }, + [12] = { 48, 71.1, 17, 413 }, + [13] = { 48, 70.8, 17, 413 }, + [14] = { 47.3, 70.2, 17, 413 }, + [15] = { 43.3, 70.1, 17, 413 }, + [16] = { 43.5, 70, 17, 413 }, + [17] = { 48.6, 70, 17, 413 }, + [18] = { 47.4, 70, 17, 413 }, + [19] = { 42.8, 69.9, 17, 413 }, + [20] = { 48.5, 69.9, 17, 413 }, + [21] = { 42.9, 69.8, 17, 413 }, + [22] = { 45.1, 69.7, 17, 413 }, + [23] = { 42.5, 69.6, 17, 413 }, + [24] = { 45.1, 69.5, 17, 413 }, + }, + ["lvl"] = "20", + }, + [3252] = { + ["coords"] = { + [1] = { 26.5, 30.9, 15, 413 }, + [2] = { 43.8, 72.7, 17, 413 }, + [3] = { 45.6, 72.6, 17, 413 }, + [4] = { 42.7, 72.6, 17, 413 }, + [5] = { 45.4, 72.6, 17, 413 }, + [6] = { 43.1, 71.9, 17, 413 }, + [7] = { 44.6, 71.9, 17, 413 }, + [8] = { 42.1, 71.7, 17, 413 }, + [9] = { 48.2, 71.6, 17, 413 }, + [10] = { 42.8, 71.1, 17, 413 }, + [11] = { 43.1, 71, 17, 413 }, + [12] = { 48.5, 70.9, 17, 413 }, + [13] = { 47.6, 70.9, 17, 413 }, + [14] = { 48.5, 70.8, 17, 413 }, + [15] = { 42.8, 70.6, 17, 413 }, + [16] = { 43.5, 70.5, 17, 413 }, + [17] = { 42.2, 70.5, 17, 413 }, + [18] = { 42.6, 70.1, 17, 413 }, + [19] = { 47.7, 70.1, 17, 413 }, + [20] = { 48.4, 70, 17, 413 }, + [21] = { 49.1, 70, 17, 413 }, + [22] = { 49.2, 70, 17, 413 }, + [23] = { 44.9, 69.7, 17, 413 }, + [24] = { 48.8, 69.5, 17, 413 }, + [25] = { 43.5, 69.4, 17, 413 }, + [26] = { 42.8, 69.4, 17, 413 }, + [27] = { 44, 69.3, 17, 413 }, + [28] = { 41.9, 69, 17, 413 }, + [29] = { 45.1, 68.9, 17, 413 }, + [30] = { 72, 84, 215, 413 }, + [31] = { 71.4, 81.1, 215, 413 }, + }, + ["lvl"] = "21-22", + }, + [3253] = { + ["coords"] = { + [1] = { 43.1, 70.1, 17, 5277 }, + }, + ["lvl"] = "24", + ["rnk"] = "4", + }, + [3254] = { + ["coords"] = { + [1] = { 52.9, 33, 17, 413 }, + [2] = { 47.9, 26, 17, 413 }, + [3] = { 48.4, 25.1, 17, 413 }, + [4] = { 48.8, 23.8, 17, 413 }, + [5] = { 54.6, 23.2, 17, 413 }, + [6] = { 54.7, 23.1, 17, 413 }, + [7] = { 51.3, 22.6, 17, 413 }, + [8] = { 51.8, 18.7, 17, 413 }, + [9] = { 47.7, 14.5, 17, 413 }, + }, + ["lvl"] = "11-13", + }, + [3255] = { + ["coords"] = { + [1] = { 60.3, 47.1, 17, 413 }, + [2] = { 61.7, 46.9, 17, 413 }, + [3] = { 59.6, 46.8, 17, 413 }, + [4] = { 53, 46.8, 17, 413 }, + [5] = { 58.9, 46.8, 17, 413 }, + [6] = { 60.9, 46.5, 17, 413 }, + [7] = { 51.9, 46.5, 17, 413 }, + [8] = { 59.3, 46.4, 17, 413 }, + [9] = { 60, 46.3, 17, 413 }, + [10] = { 58.7, 46.3, 17, 413 }, + [11] = { 53.5, 46.2, 17, 413 }, + [12] = { 54.7, 46.1, 17, 413 }, + [13] = { 58.9, 45.9, 17, 413 }, + [14] = { 58.2, 45.9, 17, 413 }, + [15] = { 59.6, 45.8, 17, 413 }, + [16] = { 58.6, 45.4, 17, 413 }, + [17] = { 59.3, 45.4, 17, 413 }, + [18] = { 59.9, 45.3, 17, 413 }, + [19] = { 50.1, 45.3, 17, 413 }, + [20] = { 59.6, 44.9, 17, 413 }, + [21] = { 60.4, 44.8, 17, 413 }, + [22] = { 60, 44.4, 17, 413 }, + [23] = { 55.7, 44.4, 17, 413 }, + [24] = { 53.6, 44.4, 17, 413 }, + [25] = { 55, 44.4, 17, 413 }, + [26] = { 59.3, 44.3, 17, 413 }, + [27] = { 51.7, 44.2, 17, 413 }, + [28] = { 58.3, 44.1, 17, 413 }, + [29] = { 59.8, 43.9, 17, 413 }, + [30] = { 52.1, 43.9, 17, 413 }, + [31] = { 60.5, 43.7, 17, 413 }, + [32] = { 58.8, 43.4, 17, 413 }, + [33] = { 52.9, 43.4, 17, 413 }, + [34] = { 51.1, 43.3, 17, 413 }, + [35] = { 52.8, 43, 17, 413 }, + [36] = { 60, 42.9, 17, 413 }, + [37] = { 59, 42.7, 17, 413 }, + [38] = { 57.6, 42.3, 17, 413 }, + [39] = { 48.8, 41.7, 17, 413 }, + [40] = { 44.2, 41.5, 17, 413 }, + [41] = { 61.5, 41.3, 17, 413 }, + [42] = { 44.4, 41.2, 17, 413 }, + [43] = { 54.4, 41, 17, 413 }, + [44] = { 43.8, 40.9, 17, 413 }, + [45] = { 54, 40.9, 17, 413 }, + [46] = { 54.2, 40.8, 17, 413 }, + [47] = { 43.5, 40.7, 17, 413 }, + [48] = { 44.5, 40.7, 17, 413 }, + [49] = { 57.3, 40.5, 17, 413 }, + [50] = { 55.9, 40.1, 17, 413 }, + [51] = { 50.8, 40, 17, 413 }, + [52] = { 58.8, 39.9, 17, 413 }, + [53] = { 57.3, 39.9, 17, 413 }, + [54] = { 54.8, 39.6, 17, 413 }, + [55] = { 49.7, 39.4, 17, 413 }, + [56] = { 56.2, 39.2, 17, 413 }, + [57] = { 50, 39, 17, 413 }, + [58] = { 56, 38.8, 17, 413 }, + [59] = { 42.6, 38.5, 17, 413 }, + [60] = { 57.6, 38.4, 17, 413 }, + [61] = { 42.8, 38.1, 17, 413 }, + [62] = { 57.9, 37.1, 17, 413 }, + [63] = { 57.7, 36.9, 17, 413 }, + [64] = { 57.1, 36.4, 17, 413 }, + [65] = { 57.4, 36.2, 17, 413 }, + [66] = { 53.7, 35.9, 17, 413 }, + [67] = { 52.2, 35.9, 17, 413 }, + [68] = { 54.6, 35.9, 17, 413 }, + [69] = { 57.2, 35.7, 17, 413 }, + [70] = { 60, 35.6, 17, 413 }, + [71] = { 56.4, 35, 17, 413 }, + [72] = { 44.2, 34.6, 17, 413 }, + [73] = { 58.8, 34.5, 17, 413 }, + [74] = { 53.3, 34.4, 17, 413 }, + [75] = { 58.5, 34.4, 17, 413 }, + [76] = { 41.9, 34.2, 17, 413 }, + [77] = { 43.3, 34.1, 17, 413 }, + [78] = { 42.2, 34, 17, 413 }, + [79] = { 43.3, 33.5, 17, 413 }, + [80] = { 58.6, 33.5, 17, 413 }, + [81] = { 56, 33.5, 17, 413 }, + [82] = { 44.7, 33.4, 17, 413 }, + [83] = { 41.8, 32.9, 17, 413 }, + [84] = { 39.8, 31.5, 17, 413 }, + [85] = { 42.5, 30.5, 17, 413 }, + [86] = { 45.6, 30.3, 17, 413 }, + [87] = { 60.7, 29.6, 17, 413 }, + [88] = { 60.1, 29.6, 17, 413 }, + [89] = { 41.8, 29.6, 17, 413 }, + [90] = { 40.5, 29, 17, 413 }, + [91] = { 60.3, 28.5, 17, 413 }, + [92] = { 44.3, 26.1, 17, 413 }, + [93] = { 62.3, 25.9, 17, 413 }, + [94] = { 42.9, 25.6, 17, 413 }, + [95] = { 41.9, 25.6, 17, 413 }, + [96] = { 41.4, 25.1, 17, 413 }, + [97] = { 40.3, 25, 17, 413 }, + [98] = { 40.2, 24.1, 17, 413 }, + [99] = { 41.2, 23.6, 17, 413 }, + [100] = { 60.8, 23.3, 17, 413 }, + [101] = { 61.9, 23.1, 17, 413 }, + [102] = { 41.1, 22.6, 17, 413 }, + [103] = { 60.5, 22.1, 17, 413 }, + [104] = { 55.4, 21.2, 17, 413 }, + [105] = { 41.9, 20.6, 17, 413 }, + [106] = { 58, 20.5, 17, 413 }, + [107] = { 40.7, 20.2, 17, 413 }, + [108] = { 41.5, 20.1, 17, 413 }, + [109] = { 43.8, 19.8, 17, 413 }, + [110] = { 44.1, 19.8, 17, 413 }, + [111] = { 43.5, 19.7, 17, 413 }, + [112] = { 53.1, 19.4, 17, 413 }, + [113] = { 44.4, 18.8, 17, 413 }, + [114] = { 43.8, 18.7, 17, 413 }, + [115] = { 44.2, 18.3, 17, 413 }, + [116] = { 60.2, 17.9, 17, 413 }, + [117] = { 58.9, 17.7, 17, 413 }, + [118] = { 59.5, 17.7, 17, 413 }, + [119] = { 59.9, 17.4, 17, 413 }, + [120] = { 57.6, 17.4, 17, 413 }, + [121] = { 53.3, 17, 17, 413 }, + [122] = { 56.3, 16.8, 17, 413 }, + [123] = { 60.6, 16.7, 17, 413 }, + [124] = { 54.3, 16.2, 17, 413 }, + [125] = { 54.7, 16.2, 17, 413 }, + [126] = { 59.2, 16, 17, 413 }, + [127] = { 54.9, 15.5, 17, 413 }, + [128] = { 56.6, 15.4, 17, 413 }, + [129] = { 59.5, 15.1, 17, 413 }, + [130] = { 60.4, 14.9, 17, 413 }, + [131] = { 57.6, 14.8, 17, 413 }, + [132] = { 53.3, 14.7, 17, 413 }, + [133] = { 58.4, 14.3, 17, 413 }, + [134] = { 58.9, 14.2, 17, 413 }, + [135] = { 60.2, 14.1, 17, 413 }, + [136] = { 59.7, 14.1, 17, 413 }, + [137] = { 55.9, 14.1, 17, 413 }, + [138] = { 55, 13.8, 17, 413 }, + [139] = { 58, 13.8, 17, 413 }, + [140] = { 58.6, 13.7, 17, 413 }, + [141] = { 59.4, 13.7, 17, 413 }, + [142] = { 58.2, 13.3, 17, 413 }, + [143] = { 53, 13.3, 17, 413 }, + [144] = { 52.6, 13.1, 17, 413 }, + [145] = { 50.3, 13.1, 17, 413 }, + [146] = { 59.2, 12.9, 17, 413 }, + [147] = { 58, 12.8, 17, 413 }, + [148] = { 54.4, 12.8, 17, 413 }, + [149] = { 53, 12.8, 17, 413 }, + [150] = { 57.3, 12.7, 17, 413 }, + [151] = { 58.3, 12.3, 17, 413 }, + [152] = { 57.7, 12.3, 17, 413 }, + [153] = { 56.9, 11.9, 17, 413 }, + [154] = { 53.3, 11.9, 17, 413 }, + [155] = { 60.2, 11.9, 17, 413 }, + [156] = { 58, 11.5, 17, 413 }, + [157] = { 56.3, 11.3, 17, 413 }, + [158] = { 54.7, 11.3, 17, 413 }, + [159] = { 58.9, 10.7, 17, 413 }, + [160] = { 59.5, 10.6, 17, 413 }, + [161] = { 55, 10.3, 17, 413 }, + [162] = { 57.2, 10.2, 17, 413 }, + [163] = { 54.1, 10.1, 17, 413 }, + [164] = { 56.4, 9.9, 17, 413 }, + [165] = { 55.2, 9.4, 17, 413 }, + [166] = { 54.7, 9.2, 17, 413 }, + [167] = { 54.6, 8.4, 17, 413 }, + [168] = { 55, 7.8, 17, 413 }, + [169] = { 63.6, 6, 17, 413 }, + }, + ["lvl"] = "13-15", + }, + [3256] = { + ["coords"] = { + [1] = { 57, 54.5, 17, 413 }, + [2] = { 57.1, 54.4, 17, 413 }, + [3] = { 57.6, 54.1, 17, 413 }, + [4] = { 57.7, 54.1, 17, 413 }, + [5] = { 58, 54, 17, 413 }, + [6] = { 57.9, 53.9, 17, 413 }, + [7] = { 58, 53.9, 17, 413 }, + [8] = { 57.4, 53.8, 17, 413 }, + [9] = { 57.3, 53.7, 17, 413 }, + [10] = { 57.1, 53.4, 17, 413 }, + [11] = { 57, 53, 17, 413 }, + [12] = { 57.1, 52.9, 17, 413 }, + [13] = { 57.1, 52, 17, 413 }, + [14] = { 55.8, 51.9, 17, 413 }, + [15] = { 57.1, 51.9, 17, 413 }, + [16] = { 50.7, 51.8, 17, 413 }, + [17] = { 53, 51.2, 17, 413 }, + [18] = { 49.4, 51.2, 17, 413 }, + [19] = { 55.7, 50.8, 17, 413 }, + [20] = { 51.5, 50.8, 17, 413 }, + [21] = { 51.8, 50.7, 17, 413 }, + [22] = { 60.3, 50.4, 17, 413 }, + [23] = { 48.1, 50.3, 17, 413 }, + [24] = { 58.3, 50, 17, 413 }, + [25] = { 60.9, 50, 17, 413 }, + [26] = { 60.9, 49.9, 17, 413 }, + [27] = { 49.3, 49.6, 17, 413 }, + [28] = { 54.3, 49.4, 17, 413 }, + [29] = { 51.8, 49.4, 17, 413 }, + [30] = { 56.7, 49, 17, 413 }, + [31] = { 48.8, 48.7, 17, 413 }, + [32] = { 53, 48.3, 17, 413 }, + [33] = { 51.9, 48, 17, 413 }, + [34] = { 56.7, 47.4, 17, 413 }, + [35] = { 48.3, 47.4, 17, 413 }, + [36] = { 48.2, 46.8, 17, 413 }, + [37] = { 50.2, 46.7, 17, 413 }, + [38] = { 52.4, 46.6, 17, 413 }, + [39] = { 52.1, 46.6, 17, 413 }, + [40] = { 52.6, 46.3, 17, 413 }, + [41] = { 50.4, 46.1, 17, 413 }, + [42] = { 52.7, 46.1, 17, 413 }, + [43] = { 52.6, 46, 17, 413 }, + [44] = { 47.7, 45.8, 17, 413 }, + [45] = { 50.1, 45.7, 17, 413 }, + [46] = { 45.1, 44.4, 17, 413 }, + [47] = { 44.4, 44.3, 17, 413 }, + [48] = { 46.3, 44.1, 17, 413 }, + [49] = { 46, 43.8, 17, 413 }, + [50] = { 44.4, 43.8, 17, 413 }, + [51] = { 43.9, 43.4, 17, 413 }, + [52] = { 47.1, 43.4, 17, 413 }, + [53] = { 47.8, 43.2, 17, 413 }, + [54] = { 44.5, 43, 17, 413 }, + [55] = { 61.2, 34, 17, 413 }, + [56] = { 60.8, 33.4, 17, 413 }, + [57] = { 60.3, 32.2, 17, 413 }, + [58] = { 61, 32, 17, 413 }, + [59] = { 59.9, 32, 17, 413 }, + [60] = { 61.2, 31.1, 17, 413 }, + [61] = { 60.3, 30.5, 17, 413 }, + [62] = { 36.2, 28.8, 17, 413 }, + [63] = { 37.6, 27.5, 17, 413 }, + [64] = { 37.3, 26.8, 17, 413 }, + [65] = { 36.7, 26.4, 17, 413 }, + [66] = { 39.3, 25.6, 17, 413 }, + [67] = { 44.1, 16.6, 17, 413 }, + [68] = { 43.8, 16.2, 17, 413 }, + [69] = { 42.5, 15.6, 17, 413 }, + [70] = { 46.1, 15.3, 17, 413 }, + [71] = { 46.4, 15, 17, 413 }, + [72] = { 43.5, 15, 17, 413 }, + [73] = { 45.5, 14.7, 17, 413 }, + [74] = { 44.1, 14.4, 17, 413 }, + [75] = { 44.7, 14.3, 17, 413 }, + [76] = { 47.7, 12.9, 17, 413 }, + [77] = { 60.8, 12.7, 17, 413 }, + [78] = { 48.2, 11.3, 17, 413 }, + [79] = { 59.9, 8.8, 17, 413 }, + [80] = { 60.4, 8.8, 17, 413 }, + [81] = { 57.9, 8.2, 17, 413 }, + [82] = { 59.2, 7.4, 17, 413 }, + [83] = { 58.3, 7.4, 17, 413 }, + [84] = { 59.9, 7.4, 17, 413 }, + [85] = { 59, 6.3, 17, 413 }, + [86] = { 59.3, 6.2, 17, 413 }, + [87] = { 57.7, 6.2, 17, 413 }, + [88] = { 55.7, 5.7, 17, 413 }, + [89] = { 56.6, 4.3, 17, 413 }, + [90] = { 87.9, 99.8, 406, 413 }, + }, + ["lvl"] = "16-18", + }, + [3257] = { + ["coords"] = { + [1] = { 59.7, 30.3, 17, 0 }, + }, + ["lvl"] = "19", + }, + [3258] = { + ["coords"] = { + [1] = { 51.3, 57.5, 17, 413 }, + [2] = { 51.3, 55.8, 17, 413 }, + [3] = { 42.9, 55.7, 17, 413 }, + [4] = { 51.2, 55.6, 17, 413 }, + [5] = { 43.2, 55.2, 17, 413 }, + [6] = { 50.7, 55.2, 17, 413 }, + [7] = { 43.6, 55, 17, 413 }, + [8] = { 42.9, 54.9, 17, 413 }, + [9] = { 51.2, 54.9, 17, 413 }, + [10] = { 51.6, 54.7, 17, 413 }, + [11] = { 45.1, 54.7, 17, 413 }, + [12] = { 52, 54.5, 17, 413 }, + [13] = { 45.4, 54.3, 17, 413 }, + [14] = { 46.7, 54.3, 17, 413 }, + [15] = { 46.8, 54.3, 17, 413 }, + [16] = { 51.1, 54.2, 17, 413 }, + [17] = { 45.1, 54.2, 17, 413 }, + [18] = { 45.7, 54.1, 17, 413 }, + [19] = { 46.6, 53.9, 17, 413 }, + [20] = { 45.3, 53.9, 17, 413 }, + [21] = { 52.1, 53.9, 17, 413 }, + [22] = { 44.9, 53.7, 17, 413 }, + [23] = { 47.1, 53.6, 17, 413 }, + [24] = { 47.1, 53.3, 17, 413 }, + [25] = { 46.9, 53.1, 17, 413 }, + [26] = { 47.4, 52.6, 17, 413 }, + [27] = { 43.5, 52.6, 17, 413 }, + [28] = { 43.2, 52.4, 17, 413 }, + [29] = { 44.5, 52.3, 17, 413 }, + [30] = { 43.3, 52.2, 17, 413 }, + [31] = { 43.5, 52.1, 17, 413 }, + [32] = { 43.1, 51.9, 17, 413 }, + [33] = { 44.5, 51.8, 17, 413 }, + [34] = { 43.6, 51.8, 17, 413 }, + [35] = { 44.8, 51.8, 17, 413 }, + [36] = { 44.1, 51.7, 17, 413 }, + [37] = { 44.6, 51.6, 17, 413 }, + [38] = { 42.8, 51.6, 17, 413 }, + [39] = { 44.9, 51.4, 17, 413 }, + [40] = { 44.7, 51.3, 17, 413 }, + [41] = { 45.4, 51.2, 17, 413 }, + [42] = { 43.2, 48.9, 17, 413 }, + [43] = { 43.4, 48.8, 17, 413 }, + [44] = { 43.3, 48.5, 17, 413 }, + [45] = { 42.9, 48.4, 17, 413 }, + [46] = { 43.6, 48.3, 17, 413 }, + [47] = { 43, 47.9, 17, 413 }, + [48] = { 43.7, 47.9, 17, 413 }, + [49] = { 43.2, 47.7, 17, 413 }, + [50] = { 43.2, 47.3, 17, 413 }, + [51] = { 43.5, 47.3, 17, 413 }, + [52] = { 41.5, 46.4, 17, 413 }, + [53] = { 40.8, 45.9, 17, 413 }, + [54] = { 41.2, 45.8, 17, 413 }, + [55] = { 40.6, 45.8, 17, 413 }, + [56] = { 40.6, 45.4, 17, 413 }, + [57] = { 40.8, 45.3, 17, 413 }, + [58] = { 41, 44.9, 17, 413 }, + [59] = { 41.3, 44.9, 17, 413 }, + [60] = { 41.4, 44.4, 17, 413 }, + }, + ["lvl"] = "17-18", + }, + [3259] = { + ["coords"] = {}, + ["lvl"] = "20-21", + }, + [3260] = { + ["coords"] = { + [1] = { 51.2, 57.9, 17, 413 }, + [2] = { 51.4, 57.6, 17, 413 }, + [3] = { 51, 57.4, 17, 413 }, + [4] = { 43.2, 55.7, 17, 413 }, + [5] = { 42.8, 55.4, 17, 413 }, + [6] = { 45.1, 55.3, 17, 413 }, + [7] = { 43.5, 55.2, 17, 413 }, + [8] = { 51.1, 55.1, 17, 413 }, + [9] = { 43.1, 54.9, 17, 413 }, + [10] = { 45.5, 54.8, 17, 413 }, + [11] = { 51.4, 54.8, 17, 413 }, + [12] = { 43.5, 54.7, 17, 413 }, + [13] = { 45.7, 54.7, 17, 413 }, + [14] = { 51.1, 54.7, 17, 413 }, + [15] = { 44.8, 54.2, 17, 413 }, + [16] = { 46.5, 54.2, 17, 413 }, + [17] = { 45.3, 54.2, 17, 413 }, + [18] = { 45.4, 54, 17, 413 }, + [19] = { 53.7, 54, 17, 413 }, + [20] = { 46.8, 53.8, 17, 413 }, + [21] = { 45.5, 53.8, 17, 413 }, + [22] = { 47.2, 53.7, 17, 413 }, + [23] = { 45.1, 53.7, 17, 413 }, + [24] = { 46.5, 53.7, 17, 413 }, + [25] = { 53.4, 53.6, 17, 413 }, + [26] = { 46.9, 53.4, 17, 413 }, + [27] = { 46.4, 53.3, 17, 413 }, + [28] = { 47.3, 53.2, 17, 413 }, + [29] = { 47.7, 52.8, 17, 413 }, + [30] = { 47.1, 52.7, 17, 413 }, + [31] = { 52.6, 52.7, 17, 413 }, + [32] = { 52.6, 52.2, 17, 413 }, + }, + ["lvl"] = "16-17", + }, + [3261] = { + ["coords"] = { + [1] = { 50.4, 57.7, 17, 413 }, + [2] = { 51.7, 57.7, 17, 413 }, + [3] = { 51.7, 57.2, 17, 413 }, + [4] = { 50.4, 57.2, 17, 413 }, + [5] = { 50.7, 56.7, 17, 413 }, + [6] = { 51.4, 56.6, 17, 413 }, + [7] = { 51, 55.7, 17, 413 }, + [8] = { 51.7, 55.2, 17, 413 }, + [9] = { 51.3, 55.2, 17, 413 }, + [10] = { 53.1, 54.8, 17, 413 }, + [11] = { 50.7, 54.7, 17, 413 }, + [12] = { 53.4, 54.2, 17, 413 }, + [13] = { 51.3, 54.2, 17, 413 }, + [14] = { 52.6, 53.8, 17, 413 }, + [15] = { 53, 53.7, 17, 413 }, + [16] = { 52.4, 53.7, 17, 413 }, + [17] = { 53, 53.2, 17, 413 }, + [18] = { 53.1, 52.8, 17, 413 }, + [19] = { 53.4, 52.7, 17, 413 }, + [20] = { 43.3, 52.5, 17, 413 }, + [21] = { 43, 52.3, 17, 413 }, + [22] = { 53, 51.7, 17, 413 }, + [23] = { 45.2, 51.7, 17, 413 }, + [24] = { 45.5, 51.6, 17, 413 }, + [25] = { 44.9, 51.6, 17, 413 }, + [26] = { 43.4, 51.6, 17, 413 }, + [27] = { 44.8, 51.5, 17, 413 }, + [28] = { 45, 51.3, 17, 413 }, + [29] = { 44, 51.3, 17, 413 }, + }, + ["lvl"] = "18-19", + }, + [3262] = { + ["coords"] = {}, + ["lvl"] = "21-22", + }, + [3263] = { + ["coords"] = { + [1] = { 31.8, 7.2, 15, 413 }, + [2] = { 51.5, 57.9, 17, 413 }, + [3] = { 52, 57.7, 17, 413 }, + [4] = { 51.2, 57.6, 17, 413 }, + [5] = { 50.8, 57.5, 17, 413 }, + [6] = { 51.4, 57.2, 17, 413 }, + [7] = { 50.7, 57.1, 17, 413 }, + [8] = { 51, 56.6, 17, 413 }, + [9] = { 53.4, 54.5, 17, 413 }, + [10] = { 53.6, 54.3, 17, 413 }, + [11] = { 53, 54.2, 17, 413 }, + [12] = { 53.4, 53.9, 17, 413 }, + [13] = { 53.6, 53.5, 17, 413 }, + [14] = { 52.7, 53.2, 17, 413 }, + [15] = { 53.3, 53.2, 17, 413 }, + [16] = { 52.4, 53, 17, 413 }, + [17] = { 52.6, 52.4, 17, 413 }, + [18] = { 53, 52.2, 17, 413 }, + [19] = { 52.8, 52.1, 17, 413 }, + [20] = { 42.8, 48.7, 17, 413 }, + [21] = { 43.8, 48.2, 17, 413 }, + [22] = { 43.5, 48.1, 17, 413 }, + [23] = { 43.3, 48, 17, 413 }, + [24] = { 42.8, 47.8, 17, 413 }, + [25] = { 43.4, 47.7, 17, 413 }, + [26] = { 43.1, 46.9, 17, 413 }, + [27] = { 42.5, 46.7, 17, 413 }, + [28] = { 41.1, 46.2, 17, 413 }, + [29] = { 41.4, 45.8, 17, 413 }, + [30] = { 40.8, 45.5, 17, 413 }, + [31] = { 40.4, 45.4, 17, 413 }, + [32] = { 41.1, 45.2, 17, 413 }, + [33] = { 40.9, 45.2, 17, 413 }, + [34] = { 41.6, 44.9, 17, 413 }, + [35] = { 40.9, 44.8, 17, 413 }, + }, + ["lvl"] = "19-20", + }, + [3265] = { + ["coords"] = { + [1] = { 55.6, 26.5, 17, 413 }, + [2] = { 59.2, 26.5, 17, 413 }, + [3] = { 55.1, 25.6, 17, 413 }, + [4] = { 53.8, 25.3, 17, 413 }, + [5] = { 54.9, 25.2, 17, 413 }, + [6] = { 57.8, 24.4, 17, 413 }, + [7] = { 58.1, 24.2, 17, 413 }, + [8] = { 59.4, 23.8, 17, 413 }, + [9] = { 57.8, 23.6, 17, 413 }, + }, + ["lvl"] = "11-12", + }, + [3266] = { + ["coords"] = { + [1] = { 59.3, 27.6, 17, 413 }, + [2] = { 58.9, 27.4, 17, 413 }, + [3] = { 59.3, 27, 17, 413 }, + [4] = { 58.8, 27, 17, 413 }, + [5] = { 58.3, 26.6, 17, 413 }, + [6] = { 59, 26.6, 17, 413 }, + [7] = { 58.7, 26.2, 17, 413 }, + [8] = { 59.3, 25.6, 17, 413 }, + [9] = { 57.2, 25.5, 17, 413 }, + [10] = { 57.2, 25.4, 17, 413 }, + [11] = { 59.3, 25.3, 17, 413 }, + [12] = { 57.1, 25.2, 17, 413 }, + [13] = { 57.6, 25.1, 17, 413 }, + [14] = { 58.9, 25.1, 17, 413 }, + [15] = { 57.3, 25.1, 17, 413 }, + [16] = { 58, 24.7, 17, 413 }, + [17] = { 56.7, 24.6, 17, 413 }, + [18] = { 59.4, 24.6, 17, 413 }, + [19] = { 59.6, 24.5, 17, 413 }, + [20] = { 59.1, 24.5, 17, 413 }, + [21] = { 59.6, 24.3, 17, 413 }, + [22] = { 59.3, 24, 17, 413 }, + [23] = { 59.1, 23.9, 17, 413 }, + }, + ["lvl"] = "12-13", + }, + [3267] = { + ["coords"] = { + [1] = { 55.7, 27.2, 17, 240 }, + [2] = { 55.9, 27.2, 17, 240 }, + [3] = { 54.7, 27.1, 17, 240 }, + [4] = { 55.3, 27.1, 17, 240 }, + [5] = { 55, 27.1, 17, 240 }, + [6] = { 55.6, 27, 17, 240 }, + [7] = { 55.8, 26.7, 17, 240 }, + [8] = { 55, 26.7, 17, 240 }, + [9] = { 55.8, 26.6, 17, 240 }, + [10] = { 55.4, 26.6, 17, 240 }, + [11] = { 55.1, 26.6, 17, 240 }, + [12] = { 55.7, 26.6, 17, 240 }, + [13] = { 55.7, 26.1, 17, 240 }, + [14] = { 54, 26.1, 17, 240 }, + [15] = { 54.4, 25.9, 17, 240 }, + [16] = { 55.5, 25.7, 17, 240 }, + [17] = { 53.7, 25.6, 17, 240 }, + [18] = { 54.7, 25.6, 17, 240 }, + [19] = { 54.3, 25.5, 17, 240 }, + [20] = { 54, 25.1, 17, 240 }, + [21] = { 53, 25.1, 17, 240 }, + [22] = { 54.4, 25, 17, 240 }, + [23] = { 53.6, 24.5, 17, 240 }, + }, + ["lvl"] = "10-11", + }, + [3268] = { + ["coords"] = { + [1] = { 55.8, 27, 17, 240 }, + [2] = { 55.4, 26.9, 17, 240 }, + [3] = { 55.9, 26.3, 17, 240 }, + [4] = { 54.1, 25.5, 17, 240 }, + [5] = { 55, 25.3, 17, 240 }, + [6] = { 54.6, 25.2, 17, 240 }, + [7] = { 54.2, 25.1, 17, 240 }, + [8] = { 54.4, 24.6, 17, 240 }, + [9] = { 54.7, 27.1, 17, 240 }, + [10] = { 55.3, 27.1, 17, 240 }, + [11] = { 55.6, 27, 17, 240 }, + [12] = { 55.8, 26.7, 17, 240 }, + [13] = { 55, 26.7, 17, 240 }, + [14] = { 55.8, 26.6, 17, 240 }, + [15] = { 55.1, 26.6, 17, 240 }, + [16] = { 55.7, 26.6, 17, 240 }, + [17] = { 55.7, 26.1, 17, 240 }, + [18] = { 54.7, 25.6, 17, 240 }, + [19] = { 54, 25.1, 17, 240 }, + }, + ["lvl"] = "10-11", + }, + [3269] = { + ["coords"] = { + [1] = { 57.5, 25.6, 17, 413 }, + [2] = { 56.9, 25.4, 17, 413 }, + [3] = { 56.8, 25.4, 17, 413 }, + [4] = { 56.9, 25.1, 17, 413 }, + [5] = { 56.8, 25.1, 17, 413 }, + [6] = { 59.1, 25.1, 17, 413 }, + [7] = { 59.2, 24.7, 17, 413 }, + [8] = { 58.9, 24.6, 17, 413 }, + [9] = { 57.3, 24.6, 17, 413 }, + [10] = { 59.4, 24.6, 17, 413 }, + [11] = { 57, 24.5, 17, 413 }, + [12] = { 59.1, 24.2, 17, 413 }, + [13] = { 57, 24.1, 17, 413 }, + [14] = { 58.7, 24.1, 17, 413 }, + [15] = { 59.5, 24, 17, 413 }, + [16] = { 57.2, 25.5, 17, 413 }, + [17] = { 59.1, 23.9, 17, 413 }, + }, + ["lvl"] = "12-13", + }, + [3270] = { + ["coords"] = { + [1] = { 59.2, 24.4, 17, 5400 }, + }, + ["lvl"] = "15", + ["rnk"] = "2", + }, + [3271] = { + ["coords"] = { + [1] = { 58.7, 27.3, 17, 413 }, + [2] = { 58.5, 27.2, 17, 413 }, + [3] = { 58.3, 26.9, 17, 413 }, + [4] = { 58.6, 26.9, 17, 413 }, + [5] = { 58.6, 26.6, 17, 413 }, + [6] = { 58.3, 26.1, 17, 413 }, + }, + ["lvl"] = "13-14", + }, + [3272] = { + ["coords"] = { + [1] = { 46.8, 41.9, 17, 413 }, + [2] = { 47.4, 41.9, 17, 413 }, + [3] = { 45.6, 41.4, 17, 413 }, + [4] = { 47.4, 40.9, 17, 413 }, + [5] = { 46.1, 40.9, 17, 413 }, + [6] = { 48.1, 40.9, 17, 413 }, + [7] = { 47, 40.6, 17, 413 }, + [8] = { 48.5, 40.4, 17, 413 }, + [9] = { 45.5, 40.4, 17, 413 }, + [10] = { 48.4, 40, 17, 413 }, + [11] = { 44.7, 39.7, 17, 413 }, + [12] = { 44.7, 39.5, 17, 413 }, + [13] = { 48.8, 39.4, 17, 413 }, + [14] = { 47.7, 39.4, 17, 413 }, + [15] = { 45.4, 39.4, 17, 413 }, + [16] = { 48.7, 39.2, 17, 413 }, + [17] = { 47.5, 38.9, 17, 413 }, + [18] = { 46.8, 38.5, 17, 413 }, + [19] = { 44.5, 38.5, 17, 413 }, + [20] = { 45.8, 38.4, 17, 413 }, + [21] = { 44.5, 38, 17, 413 }, + [22] = { 46.7, 37.9, 17, 413 }, + [23] = { 44.6, 37.8, 17, 413 }, + [24] = { 45.8, 37.5, 17, 413 }, + [25] = { 46.6, 37.4, 17, 413 }, + [26] = { 54.9, 37.4, 17, 413 }, + [27] = { 53.7, 37.1, 17, 413 }, + [28] = { 53.4, 36.9, 17, 413 }, + [29] = { 53.4, 36.8, 17, 413 }, + [30] = { 53, 36.6, 17, 413 }, + [31] = { 42.3, 27.3, 17, 413 }, + [32] = { 42.3, 27, 17, 413 }, + [33] = { 43.6, 26.9, 17, 413 }, + [34] = { 42.3, 26.6, 17, 413 }, + [35] = { 43.6, 26.5, 17, 413 }, + [36] = { 43.3, 26.4, 17, 413 }, + [37] = { 43.5, 26.3, 17, 413 }, + [38] = { 45.7, 26, 17, 413 }, + [39] = { 45.7, 25.8, 17, 413 }, + [40] = { 45.7, 25.5, 17, 413 }, + [41] = { 45.9, 25.4, 17, 413 }, + [42] = { 45.5, 25.4, 17, 413 }, + [43] = { 48, 24.8, 17, 413 }, + [44] = { 42, 24.8, 17, 413 }, + [45] = { 42.4, 24.7, 17, 413 }, + [46] = { 47.5, 24.6, 17, 413 }, + [47] = { 47.9, 24.5, 17, 413 }, + [48] = { 48.3, 24.5, 17, 413 }, + [49] = { 47.7, 24.5, 17, 413 }, + [50] = { 44.7, 24.3, 17, 413 }, + [51] = { 42.6, 24.1, 17, 413 }, + [52] = { 42.4, 24.1, 17, 413 }, + [53] = { 42.8, 23.7, 17, 413 }, + [54] = { 44.4, 23.7, 17, 413 }, + [55] = { 45.5, 23.5, 17, 413 }, + [56] = { 47.2, 23.4, 17, 413 }, + [57] = { 43.6, 23.4, 17, 413 }, + [58] = { 46.6, 23.1, 17, 413 }, + [59] = { 45.6, 22.9, 17, 413 }, + [60] = { 46.6, 22.7, 17, 413 }, + [61] = { 46.2, 22.7, 17, 413 }, + [62] = { 44.5, 22.6, 17, 413 }, + [63] = { 45.5, 22.1, 17, 413 }, + [64] = { 44.2, 21.6, 17, 413 }, + [65] = { 43.8, 21.5, 17, 413 }, + [66] = { 43.7, 21.1, 17, 413 }, + [67] = { 43.4, 21, 17, 413 }, + [68] = { 44.8, 20.4, 17, 413 }, + [69] = { 45, 20.3, 17, 413 }, + [70] = { 45.1, 20, 17, 413 }, + }, + ["lvl"] = "12-13", + }, + [3273] = { + ["coords"] = { + [1] = { 47.5, 41.7, 17, 413 }, + [2] = { 45.8, 41.6, 17, 413 }, + [3] = { 57, 41.2, 17, 413 }, + [4] = { 46.7, 41, 17, 413 }, + [5] = { 48.7, 40.9, 17, 413 }, + [6] = { 47.8, 40.9, 17, 413 }, + [7] = { 56.9, 40.6, 17, 413 }, + [8] = { 45.8, 40.5, 17, 413 }, + [9] = { 53.4, 40.2, 17, 413 }, + [10] = { 53.6, 40, 17, 413 }, + [11] = { 45.4, 39.9, 17, 413 }, + [12] = { 44.8, 39.8, 17, 413 }, + [13] = { 45.1, 38.8, 17, 413 }, + [14] = { 47.2, 38.8, 17, 413 }, + [15] = { 48.9, 38.8, 17, 413 }, + [16] = { 48.1, 38.5, 17, 413 }, + [17] = { 44.1, 38.5, 17, 413 }, + [18] = { 44.8, 38.4, 17, 413 }, + [19] = { 45.8, 38, 17, 413 }, + [20] = { 45.5, 37.9, 17, 413 }, + [21] = { 44.3, 37.7, 17, 413 }, + [22] = { 47.7, 37.5, 17, 413 }, + [23] = { 47.1, 37.4, 17, 413 }, + [24] = { 54.8, 37.1, 17, 413 }, + [25] = { 46.5, 37, 17, 413 }, + [26] = { 46.1, 36.9, 17, 413 }, + [27] = { 53.1, 36.9, 17, 413 }, + [28] = { 45.4, 36.8, 17, 413 }, + [29] = { 52.8, 36.6, 17, 413 }, + [30] = { 46.8, 36.5, 17, 413 }, + [31] = { 42.2, 26.8, 17, 413 }, + [32] = { 42.1, 26.5, 17, 413 }, + [33] = { 43.6, 26.2, 17, 413 }, + [34] = { 42.2, 25.2, 17, 413 }, + [35] = { 42.1, 24.6, 17, 413 }, + [36] = { 44.7, 24.3, 17, 413 }, + [37] = { 44.8, 24.3, 17, 413 }, + [38] = { 45.5, 24.2, 17, 413 }, + [39] = { 43.2, 23.8, 17, 413 }, + [40] = { 43.5, 23.6, 17, 413 }, + [41] = { 43, 23.5, 17, 413 }, + [42] = { 47.2, 23.4, 17, 413 }, + [43] = { 43.3, 23.4, 17, 413 }, + [44] = { 44.4, 23.1, 17, 413 }, + [45] = { 46.6, 22.9, 17, 413 }, + [46] = { 45.8, 22.7, 17, 413 }, + [47] = { 44.5, 22.1, 17, 413 }, + [48] = { 44.8, 22, 17, 413 }, + [49] = { 44, 21.5, 17, 413 }, + [50] = { 43.7, 21.3, 17, 413 }, + [51] = { 45.1, 20.7, 17, 413 }, + [52] = { 44.4, 20.1, 17, 413 }, + [53] = { 45, 20, 17, 413 }, + [54] = { 44.8, 19.6, 17, 413 }, + }, + ["lvl"] = "13-14", + }, + [3274] = { + ["coords"] = { + [1] = { 55.3, 46.6, 17, 240 }, + [2] = { 55.6, 45.8, 17, 240 }, + [3] = { 52.4, 44.9, 17, 240 }, + [4] = { 52.7, 44.8, 17, 240 }, + [5] = { 57, 42.9, 17, 240 }, + [6] = { 54, 42.8, 17, 240 }, + [7] = { 53.7, 41.9, 17, 240 }, + [8] = { 48.7, 41.5, 17, 240 }, + [9] = { 53.3, 40.9, 17, 240 }, + [10] = { 56.8, 40.6, 17, 240 }, + [11] = { 52.7, 38.9, 17, 240 }, + [12] = { 47.8, 37.4, 17, 240 }, + }, + ["lvl"] = "14-15", + }, + [3275] = { + ["coords"] = { + [1] = { 54.3, 46.8, 17, 240 }, + [2] = { 54.5, 46.7, 17, 240 }, + [3] = { 55.8, 45.8, 17, 240 }, + [4] = { 53.7, 45.6, 17, 25000 }, + [5] = { 53.1, 44.6, 17, 240 }, + [6] = { 56, 43.9, 17, 240 }, + [7] = { 56.6, 43.7, 17, 240 }, + [8] = { 53.9, 43, 17, 240 }, + [9] = { 53.7, 42.9, 17, 240 }, + [10] = { 56.3, 42.9, 17, 240 }, + [11] = { 53, 42.3, 17, 240 }, + [12] = { 46.5, 42.2, 17, 240 }, + [13] = { 53.3, 41.9, 17, 240 }, + [14] = { 55, 41, 17, 240 }, + }, + ["lvl"] = "15-16", + }, + [3276] = { + ["coords"] = { + [1] = { 40.1, 19.5, 17, 413 }, + [2] = { 40.3, 19.3, 17, 413 }, + [3] = { 41.9, 19.3, 17, 413 }, + [4] = { 41.5, 19.1, 17, 413 }, + [5] = { 41.9, 19, 17, 413 }, + [6] = { 39.9, 18.9, 17, 413 }, + [7] = { 40.2, 18.9, 17, 413 }, + [8] = { 41.4, 18.7, 17, 413 }, + [9] = { 40.9, 18.2, 17, 413 }, + [10] = { 40.4, 18.2, 17, 413 }, + [11] = { 40.5, 17.7, 17, 413 }, + [12] = { 40.9, 17.2, 17, 413 }, + [13] = { 40.7, 16.8, 17, 413 }, + [14] = { 41.2, 16.8, 17, 413 }, + [15] = { 40.2, 16.6, 17, 413 }, + [16] = { 40.6, 16.5, 17, 413 }, + [17] = { 40.6, 16.2, 17, 413 }, + [18] = { 40.8, 16.2, 17, 413 }, + [19] = { 41.2, 15.8, 17, 413 }, + [20] = { 40.5, 15.7, 17, 413 }, + [21] = { 40.9, 15.2, 17, 413 }, + [22] = { 41.5, 15.2, 17, 413 }, + [23] = { 41, 14.8, 17, 413 }, + [24] = { 40.6, 14.8, 17, 413 }, + [25] = { 41.9, 14.7, 17, 413 }, + [26] = { 41.4, 14.6, 17, 413 }, + [27] = { 41.1, 14.3, 17, 413 }, + }, + ["lvl"] = "14-15", + }, + [3277] = { + ["coords"] = { + [1] = { 40.5, 19.7, 17, 413 }, + [2] = { 41.2, 19.7, 17, 413 }, + [3] = { 40, 19.2, 17, 413 }, + [4] = { 40.2, 19.2, 17, 413 }, + [5] = { 41.6, 18.9, 17, 413 }, + [6] = { 41.2, 18.7, 17, 413 }, + [7] = { 40.1, 18.7, 17, 413 }, + [8] = { 40.5, 18.6, 17, 413 }, + [9] = { 41.8, 18.6, 17, 413 }, + [10] = { 40.4, 17.9, 17, 413 }, + [11] = { 40.6, 17, 17, 413 }, + [12] = { 41, 16.8, 17, 413 }, + [13] = { 40.5, 16.7, 17, 413 }, + [14] = { 40.4, 16.3, 17, 413 }, + [15] = { 40.1, 15.5, 17, 413 }, + [16] = { 40.3, 15.3, 17, 413 }, + [17] = { 41.2, 14.7, 17, 413 }, + [18] = { 40.9, 14.6, 17, 413 }, + [19] = { 40.5, 17.7, 17, 413 }, + [20] = { 40.5, 15.7, 17, 413 }, + }, + ["lvl"] = "15-16", + }, + [3278] = { + ["coords"] = { + [1] = { 38.8, 17.6, 17, 413 }, + [2] = { 38.5, 17.5, 17, 413 }, + [3] = { 39.2, 17.2, 17, 413 }, + [4] = { 38.6, 17.1, 17, 413 }, + [5] = { 39.5, 16.8, 17, 413 }, + [6] = { 39.8, 16.8, 17, 413 }, + [7] = { 38, 16.4, 17, 413 }, + [8] = { 39.6, 16.3, 17, 413 }, + [9] = { 38.6, 16.2, 17, 413 }, + [10] = { 37.2, 16.2, 17, 413 }, + [11] = { 38.2, 16.1, 17, 413 }, + [12] = { 37.8, 16, 17, 413 }, + [13] = { 39.8, 16, 17, 413 }, + [14] = { 40.2, 16, 17, 413 }, + [15] = { 38.2, 15.7, 17, 413 }, + [16] = { 37.3, 15.7, 17, 413 }, + [17] = { 39.2, 15.7, 17, 413 }, + [18] = { 39.7, 15.6, 17, 413 }, + [19] = { 40.3, 15.5, 17, 413 }, + [20] = { 40.1, 15.3, 17, 413 }, + [21] = { 39.5, 15.2, 17, 413 }, + [22] = { 38.2, 15.2, 17, 413 }, + [23] = { 38.5, 15.1, 17, 413 }, + [24] = { 38.8, 15.1, 17, 413 }, + [25] = { 38, 14.8, 17, 413 }, + [26] = { 39.6, 14.7, 17, 413 }, + [27] = { 39.2, 14.7, 17, 413 }, + [28] = { 38.2, 14.7, 17, 413 }, + [29] = { 38.9, 14.3, 17, 413 }, + [30] = { 38.6, 14, 17, 413 }, + [31] = { 37.9, 13.6, 17, 413 }, + [32] = { 38.2, 13.5, 17, 413 }, + [33] = { 39, 13.3, 17, 413 }, + [34] = { 39.5, 13.2, 17, 413 }, + [35] = { 38.4, 13.2, 17, 413 }, + [36] = { 39.3, 13.2, 17, 413 }, + [37] = { 38.7, 13.2, 17, 413 }, + [38] = { 38.7, 12.8, 17, 413 }, + [39] = { 38.3, 12.7, 17, 413 }, + [40] = { 38.2, 12.6, 17, 413 }, + [41] = { 39, 12.3, 17, 413 }, + [42] = { 39, 12, 17, 413 }, + [43] = { 39.9, 11.9, 17, 413 }, + [44] = { 38.7, 11.7, 17, 413 }, + [45] = { 39.6, 11.7, 17, 413 }, + [46] = { 39.3, 11, 17, 413 }, + [47] = { 38.8, 10.7, 17, 413 }, + [48] = { 39.2, 10.6, 17, 413 }, + }, + ["lvl"] = "16-17", + }, + [3279] = { + ["coords"] = { + [1] = { 38.2, 16.5, 17, 413 }, + [2] = { 37.6, 15.6, 17, 413 }, + }, + ["lvl"] = "17-18", + }, + [3280] = { + ["coords"] = { + [1] = { 38.7, 17.8, 17, 413 }, + [2] = { 38.8, 17.3, 17, 413 }, + [3] = { 38.4, 17.1, 17, 413 }, + [4] = { 38.2, 16.4, 17, 413 }, + [5] = { 37.8, 16.3, 17, 413 }, + [6] = { 38, 16.1, 17, 413 }, + [7] = { 40.8, 15.8, 17, 413 }, + [8] = { 40.5, 15.1, 17, 413 }, + [9] = { 38.1, 14.8, 17, 413 }, + [10] = { 39.1, 14.1, 17, 413 }, + [11] = { 38.9, 13.9, 17, 413 }, + [12] = { 39.3, 13.4, 17, 413 }, + [13] = { 38.5, 13.4, 17, 413 }, + [14] = { 38.2, 13.2, 17, 413 }, + [15] = { 38.5, 13.1, 17, 413 }, + [16] = { 38.8, 12.9, 17, 413 }, + [17] = { 38.8, 12.4, 17, 413 }, + [18] = { 38.9, 12, 17, 413 }, + [19] = { 39.6, 12, 17, 413 }, + [20] = { 39.2, 11.9, 17, 413 }, + [21] = { 38.3, 11.7, 17, 413 }, + [22] = { 39.2, 10.9, 17, 413 }, + [23] = { 38.8, 10.5, 17, 413 }, + }, + ["lvl"] = "17-18", + }, + [3281] = { + ["coords"] = { + [1] = { 40.5, 66.8, 14, 300 }, + [2] = { 66.4, 32, 17, 300 }, + }, + ["lvl"] = "4", + }, + [3282] = { + ["coords"] = { + [1] = { 56.4, 9.2, 17, 413 }, + [2] = { 57, 8.7, 17, 413 }, + [3] = { 56.2, 8.7, 17, 413 }, + [4] = { 56.2, 8.6, 17, 413 }, + [5] = { 56, 8.5, 17, 413 }, + [6] = { 55.8, 8.4, 17, 413 }, + [7] = { 56.4, 8.4, 17, 413 }, + [8] = { 56.2, 8.3, 17, 413 }, + [9] = { 57.4, 8.3, 17, 413 }, + [10] = { 56.3, 8.2, 17, 413 }, + [11] = { 56.1, 7.6, 17, 413 }, + [12] = { 56.5, 7.5, 17, 413 }, + [13] = { 57.1, 7.5, 17, 413 }, + [14] = { 55.8, 7.2, 17, 413 }, + [15] = { 56.3, 7.1, 17, 413 }, + }, + ["lvl"] = "15-16", + }, + [3283] = { + ["coords"] = { + [1] = { 61.9, 5.6, 17, 413 }, + [2] = { 61.4, 5.6, 17, 413 }, + [3] = { 62.2, 5.6, 17, 413 }, + [4] = { 61.2, 5.1, 17, 413 }, + [5] = { 62.2, 4.9, 17, 413 }, + [6] = { 61.9, 4.5, 17, 413 }, + [7] = { 61.5, 4.5, 17, 413 }, + [8] = { 60.3, 4, 17, 413 }, + [9] = { 60.4, 4, 17, 413 }, + [10] = { 61.4, 4, 17, 413 }, + [11] = { 60, 4, 17, 413 }, + [12] = { 61.1, 4, 17, 413 }, + [13] = { 61.9, 3.9, 17, 413 }, + [14] = { 59.7, 3.8, 17, 413 }, + [15] = { 60.5, 3.8, 17, 413 }, + [16] = { 60.3, 3.8, 17, 413 }, + [17] = { 60.8, 3.8, 17, 413 }, + [18] = { 61.8, 3.8, 17, 413 }, + [19] = { 59.9, 3.7, 17, 413 }, + [20] = { 61, 3.6, 17, 413 }, + [21] = { 60.3, 3.6, 17, 413 }, + [22] = { 61.6, 3.6, 17, 413 }, + [23] = { 62.2, 3.5, 17, 413 }, + [24] = { 59.8, 3.5, 17, 413 }, + [25] = { 60.2, 3.5, 17, 413 }, + [26] = { 59.8, 3.3, 17, 413 }, + [27] = { 60.2, 3.2, 17, 413 }, + [28] = { 59.8, 2.9, 17, 413 }, + [29] = { 59.6, 2.8, 17, 413 }, + [30] = { 89.4, 86.6, 331, 413 }, + [31] = { 89, 86.4, 331, 413 }, + [32] = { 90.3, 86.3, 331, 413 }, + [33] = { 89.9, 86.3, 331, 413 }, + [34] = { 90.8, 86.3, 331, 413 }, + [35] = { 89.2, 86.2, 331, 413 }, + [36] = { 91.3, 86, 331, 413 }, + [37] = { 89.9, 86, 331, 413 }, + [38] = { 89.1, 85.8, 331, 413 }, + [39] = { 89.8, 85.7, 331, 413 }, + [40] = { 89.2, 85.4, 331, 413 }, + [41] = { 89.7, 85.3, 331, 413 }, + [42] = { 89, 84.8, 331, 413 }, + [43] = { 88.8, 84.6, 331, 413 }, + }, + ["lvl"] = "16-17", + }, + [3284] = { + ["coords"] = { + [1] = { 52.6, 11.7, 17, 413 }, + [2] = { 52.5, 11.6, 17, 413 }, + [3] = { 52.7, 11, 17, 413 }, + [4] = { 52.5, 10.7, 17, 413 }, + [5] = { 53, 10.5, 17, 413 }, + [6] = { 53, 10.3, 17, 413 }, + [7] = { 56.1, 9.8, 17, 413 }, + [8] = { 56.2, 9.5, 17, 413 }, + [9] = { 55.7, 9.4, 17, 413 }, + [10] = { 56.5, 9.4, 17, 413 }, + [11] = { 56.6, 9.2, 17, 413 }, + [12] = { 56.1, 9.2, 17, 413 }, + [13] = { 57.2, 9.2, 17, 413 }, + [14] = { 56.8, 9.1, 17, 413 }, + [15] = { 57.1, 9, 17, 413 }, + [16] = { 55.9, 9, 17, 413 }, + [17] = { 57.3, 8.9, 17, 413 }, + [18] = { 56.6, 8.9, 17, 413 }, + [19] = { 55.6, 8.9, 17, 413 }, + [20] = { 56.7, 8.8, 17, 413 }, + [21] = { 56.3, 8.8, 17, 413 }, + [22] = { 55.9, 8.8, 17, 413 }, + [23] = { 57.5, 8.8, 17, 413 }, + [24] = { 57.2, 8.6, 17, 413 }, + [25] = { 56.1, 8.6, 17, 413 }, + [26] = { 56.3, 8.5, 17, 413 }, + [27] = { 55.7, 8.4, 17, 413 }, + [28] = { 56.2, 8.3, 17, 413 }, + [29] = { 56, 8.3, 17, 413 }, + [30] = { 57.6, 8.3, 17, 413 }, + [31] = { 56.4, 8.2, 17, 413 }, + [32] = { 55.8, 8.1, 17, 413 }, + [33] = { 57.6, 7.9, 17, 413 }, + [34] = { 55.9, 7.8, 17, 413 }, + [35] = { 57.3, 7.8, 17, 413 }, + [36] = { 55.7, 7.7, 17, 413 }, + [37] = { 56.3, 7.6, 17, 413 }, + [38] = { 56.2, 7.4, 17, 413 }, + [39] = { 57.3, 7.4, 17, 413 }, + [40] = { 56.4, 7.4, 17, 413 }, + [41] = { 55.9, 7.4, 17, 413 }, + [42] = { 55.7, 7.3, 17, 413 }, + [43] = { 56.2, 7.2, 17, 413 }, + [44] = { 57.2, 7.2, 17, 413 }, + [45] = { 57.4, 7.1, 17, 413 }, + [46] = { 57, 7.1, 17, 413 }, + [47] = { 56.6, 7.1, 17, 413 }, + [48] = { 55.8, 7, 17, 413 }, + [49] = { 56.2, 6.8, 17, 413 }, + [50] = { 55.9, 6.7, 17, 413 }, + }, + ["lvl"] = "14-15", + }, + [3285] = { + ["coords"] = { + [1] = { 53.4, 12.3, 17, 413 }, + [2] = { 52.4, 11.8, 17, 413 }, + [3] = { 52.7, 11.8, 17, 413 }, + [4] = { 52.1, 11.8, 17, 413 }, + [5] = { 52.2, 11.7, 17, 413 }, + [6] = { 52, 11.5, 17, 413 }, + [7] = { 52.2, 11.5, 17, 413 }, + [8] = { 53, 11.3, 17, 413 }, + [9] = { 52.2, 11.2, 17, 413 }, + [10] = { 53.1, 10.9, 17, 413 }, + [11] = { 52.7, 10.8, 17, 413 }, + [12] = { 53.2, 10.4, 17, 413 }, + [13] = { 52.6, 10.4, 17, 413 }, + [14] = { 53.1, 10.3, 17, 413 }, + [15] = { 53.2, 10.3, 17, 413 }, + }, + ["lvl"] = "13-14", + }, + [3286] = { + ["coords"] = { + [1] = { 61.2, 5.5, 17, 413 }, + [2] = { 61.9, 5.4, 17, 413 }, + [3] = { 61.4, 5.3, 17, 413 }, + [4] = { 61.6, 4.9, 17, 413 }, + [5] = { 61.9, 4.9, 17, 413 }, + [6] = { 61.9, 4.2, 17, 413 }, + [7] = { 60.3, 4.1, 17, 413 }, + [8] = { 59.8, 3.9, 17, 413 }, + [9] = { 61.8, 3.9, 17, 413 }, + [10] = { 62.3, 3.8, 17, 413 }, + [11] = { 60, 3.8, 17, 413 }, + [12] = { 59.6, 3.8, 17, 413 }, + [13] = { 60.6, 3.8, 17, 413 }, + [14] = { 60.7, 3.8, 17, 413 }, + [15] = { 59.9, 3.7, 17, 413 }, + [16] = { 61.9, 3.6, 17, 413 }, + [17] = { 60.4, 3.6, 17, 413 }, + [18] = { 61.7, 3.3, 17, 413 }, + [19] = { 59.9, 3.1, 17, 413 }, + [20] = { 59.6, 2.9, 17, 413 }, + [21] = { 59.6, 2.8, 17, 413 }, + [22] = { 89.1, 86.5, 331, 413 }, + [23] = { 89.4, 86.3, 331, 413 }, + [24] = { 88.8, 86.3, 331, 413 }, + [25] = { 90.4, 86.3, 331, 413 }, + [26] = { 90.6, 86.2, 331, 413 }, + [27] = { 89.3, 86.1, 331, 413 }, + [28] = { 90.1, 85.9, 331, 413 }, + [29] = { 89.3, 85.1, 331, 413 }, + [30] = { 88.7, 84.8, 331, 413 }, + [31] = { 88.8, 84.7, 331, 413 }, + [32] = { 88.8, 84.5, 331, 413 }, + }, + ["lvl"] = "17-18", + }, + [3287] = { + ["coords"] = { + [1] = { 40.6, 62.6, 14, 180 }, + }, + ["fac"] = "H", + ["lvl"] = "2", + }, + [3289] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "11", + }, + [3290] = { + ["coords"] = { + [1] = { 45.9, 13.4, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "27", + }, + [3291] = { + ["coords"] = { + [1] = { 34.3, 47.4, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "24", + }, + [3292] = { + ["coords"] = { + [1] = { 62.3, 38.4, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "9", + }, + [3293] = { + ["coords"] = { + [1] = { 46.4, 22.9, 14, 300 }, + }, + ["lvl"] = "5", + }, + [3294] = { + ["coords"] = { + [1] = { 54.4, 41.3, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "10", + }, + [3295] = { + ["coords"] = { + [1] = { 56.4, 7.8, 17, 14400 }, + }, + ["lvl"] = "19", + ["rnk"] = "4", + }, + [3296] = { + ["coords"] = { + [1] = { 50.5, 13.5, 14, 300 }, + [2] = { 50.5, 13.3, 14, 300 }, + [3] = { 45.3, 12, 14, 300 }, + [4] = { 45.7, 11.9, 14, 300 }, + [5] = { 45.5, 11.5, 14, 300 }, + [6] = { 46.2, 9.3, 14, 300 }, + [7] = { 46.6, 9.3, 14, 300 }, + [8] = { 46.6, 8.2, 14, 300 }, + [9] = { 46.7, 8.1, 14, 300 }, + [10] = { 45.7, 7.7, 14, 300 }, + [11] = { 44.7, 7.3, 14, 300 }, + [12] = { 45.4, 7.1, 14, 300 }, + [13] = { 45.4, 7, 14, 300 }, + [14] = { 46, 6.6, 14, 300 }, + [15] = { 95.9, 79, 331, 300 }, + [16] = { 96.1, 78.9, 331, 300 }, + [17] = { 96, 78.7, 331, 300 }, + [18] = { 48.3, 95.1, 1637, 300 }, + [19] = { 49.9, 94.8, 1637, 300 }, + [20] = { 49, 93.2, 1637, 300 }, + [21] = { 51.7, 84.9, 1637, 300 }, + [22] = { 53.3, 84.7, 1637, 300 }, + [23] = { 53.1, 80.8, 1637, 300 }, + [24] = { 53.4, 80.2, 1637, 300 }, + [25] = { 49.9, 78.7, 1637, 300 }, + [26] = { 45.9, 77.1, 1637, 300 }, + [27] = { 48.7, 76.6, 1637, 300 }, + [28] = { 48.5, 76.1, 1637, 300 }, + [29] = { 36.6, 75.7, 1637, 300 }, + [30] = { 35.5, 75.6, 1637, 300 }, + [31] = { 50.9, 74.6, 1637, 300 }, + [32] = { 35.4, 74.2, 1637, 300 }, + [33] = { 50.5, 72.4, 1637, 300 }, + [34] = { 54.6, 72.1, 1637, 300 }, + [35] = { 49.6, 70.4, 1637, 300 }, + [36] = { 40.8, 69.9, 1637, 300 }, + [37] = { 42.7, 69.6, 1637, 300 }, + [38] = { 42.4, 69, 1637, 300 }, + [39] = { 31.5, 68.7, 1637, 300 }, + [40] = { 31.2, 67.9, 1637, 300 }, + [41] = { 45.8, 64.7, 1637, 300 }, + [42] = { 56.5, 64.3, 1637, 300 }, + [43] = { 40.6, 64.2, 1637, 300 }, + [44] = { 29.9, 63.3, 1637, 300 }, + [45] = { 16.5, 63, 1637, 300 }, + [46] = { 56.6, 62.6, 1637, 300 }, + [47] = { 42.7, 62.4, 1637, 300 }, + [48] = { 41.5, 62.4, 1637, 300 }, + [49] = { 55.8, 61.8, 1637, 300 }, + [50] = { 29.7, 61.7, 1637, 300 }, + [51] = { 17.8, 61.7, 1637, 300 }, + [52] = { 15.9, 61.5, 1637, 300 }, + [53] = { 17.1, 60.1, 1637, 300 }, + [54] = { 49.9, 59.8, 1637, 300 }, + [55] = { 48.4, 59.5, 1637, 300 }, + [56] = { 51.4, 58.2, 1637, 300 }, + [57] = { 41.3, 56.2, 1637, 300 }, + [58] = { 37.7, 55.8, 1637, 300 }, + [59] = { 44.3, 55, 1637, 300 }, + [60] = { 44.7, 54, 1637, 300 }, + [61] = { 45.6, 53.3, 1637, 300 }, + [62] = { 48.2, 48.8, 1637, 300 }, + [63] = { 58.9, 47.5, 1637, 300 }, + [64] = { 51, 45.8, 1637, 300 }, + [65] = { 41.7, 42.4, 1637, 300 }, + [66] = { 57.3, 41.9, 1637, 300 }, + [67] = { 61.7, 41.4, 1637, 300 }, + [68] = { 52.4, 41.4, 1637, 300 }, + [69] = { 57.4, 41.1, 1637, 300 }, + [70] = { 42.4, 39.7, 1637, 300 }, + [71] = { 67.6, 39.7, 1637, 300 }, + [72] = { 63, 39.3, 1637, 300 }, + [73] = { 62.7, 39.1, 1637, 300 }, + [74] = { 67.9, 38.9, 1637, 300 }, + [75] = { 67.3, 38.9, 1637, 300 }, + [76] = { 76.6, 38.8, 1637, 300 }, + [77] = { 62.7, 38.5, 1637, 300 }, + [78] = { 48.9, 37.8, 1637, 300 }, + [79] = { 49.6, 37.6, 1637, 300 }, + [80] = { 54.7, 37.4, 1637, 300 }, + [81] = { 53, 36.9, 1637, 300 }, + [82] = { 51.8, 36, 1637, 300 }, + [83] = { 50.8, 35.5, 1637, 300 }, + [84] = { 49.5, 34.5, 1637, 300 }, + [85] = { 49, 34.4, 1637, 300 }, + [86] = { 53.5, 34.3, 1637, 300 }, + [87] = { 74.9, 33.2, 1637, 300 }, + [88] = { 74.1, 28.8, 1637, 300 }, + [89] = { 67.6, 24, 1637, 300 }, + [90] = { 75.4, 15.8, 1637, 300 }, + [91] = { 74.8, 15.3, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [3297] = { + ["coords"] = { + [1] = { 56, 75.2, 14, 300 }, + [2] = { 56.2, 74.9, 14, 300 }, + [3] = { 55.2, 74.8, 14, 300 }, + [4] = { 55.4, 74.6, 14, 300 }, + [5] = { 55.4, 73.4, 14, 300 }, + [6] = { 56.3, 73.2, 14, 300 }, + [7] = { 56.3, 72.6, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "25-30", + }, + [3298] = { + ["coords"] = { + [1] = { 84.2, 67.8, 46, 500 }, + }, + ["fac"] = "A", + ["lvl"] = "53", + }, + [3299] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "20", + }, + [3300] = { + ["coords"] = { + [1] = { 54.2, 77.8, 14, 180 }, + [2] = { 57.8, 72.1, 14, 180 }, + [3] = { 52.2, 71.5, 14, 180 }, + [4] = { 46.6, 64.1, 14, 180 }, + [5] = { 43, 63.6, 14, 180 }, + [6] = { 54.1, 62.9, 14, 180 }, + [7] = { 45.3, 62.3, 14, 180 }, + [8] = { 44, 59.7, 14, 180 }, + [9] = { 37.1, 55.1, 14, 180 }, + [10] = { 53.8, 54.8, 14, 180 }, + [11] = { 53.3, 53.8, 14, 180 }, + [12] = { 36.1, 53.1, 14, 180 }, + [13] = { 53.1, 53, 14, 180 }, + [14] = { 57.6, 49.4, 14, 180 }, + [15] = { 51.1, 48.4, 14, 180 }, + [16] = { 40, 47.6, 14, 180 }, + [17] = { 41.5, 46, 14, 180 }, + [18] = { 56.7, 45.8, 14, 180 }, + [19] = { 39.2, 45.8, 14, 180 }, + [20] = { 50.2, 45.1, 14, 180 }, + [21] = { 56.3, 43.9, 14, 180 }, + [22] = { 43.6, 42.8, 14, 180 }, + [23] = { 38.4, 36.5, 14, 180 }, + [24] = { 41.8, 36.2, 14, 180 }, + [25] = { 39.8, 34.3, 14, 180 }, + [26] = { 44.1, 33.5, 14, 180 }, + [27] = { 36.6, 32.6, 14, 180 }, + [28] = { 42.3, 32.5, 14, 180 }, + [29] = { 44.1, 29.7, 14, 180 }, + [30] = { 42, 29.1, 14, 180 }, + [31] = { 57.3, 28.4, 14, 180 }, + [32] = { 57.3, 25.7, 14, 180 }, + [33] = { 45.5, 25.6, 14, 180 }, + [34] = { 38, 23.2, 14, 180 }, + [35] = { 39.4, 22.1, 14, 180 }, + [36] = { 40.5, 21.6, 14, 180 }, + [37] = { 44.4, 19.9, 14, 180 }, + [38] = { 53.2, 19.5, 14, 180 }, + [39] = { 40.5, 18.9, 14, 180 }, + [40] = { 45.3, 17.8, 14, 270 }, + [41] = { 42.4, 17.3, 14, 180 }, + [42] = { 45, 17.1, 14, 180 }, + [43] = { 48.8, 15.4, 14, 180 }, + [44] = { 54.2, 15.2, 14, 180 }, + [45] = { 51.2, 13.5, 14, 180 }, + [46] = { 53, 12.5, 14, 180 }, + [47] = { 45, 84.6, 17, 413 }, + [48] = { 47.8, 80.3, 17, 413 }, + [49] = { 44.2, 80, 17, 413 }, + [50] = { 47.4, 77.4, 17, 413 }, + [51] = { 48.8, 77.1, 17, 413 }, + [52] = { 45, 76.9, 17, 413 }, + [53] = { 48, 74.4, 17, 413 }, + [54] = { 44.8, 74.2, 17, 413 }, + [55] = { 46, 66.7, 17, 413 }, + [56] = { 47.7, 64.1, 17, 413 }, + [57] = { 44.8, 64.1, 17, 413 }, + [58] = { 48, 60.2, 17, 413 }, + [59] = { 50, 60, 17, 413 }, + [60] = { 42.5, 59.7, 17, 413 }, + [61] = { 52, 56.8, 17, 413 }, + [62] = { 43.8, 56.7, 17, 413 }, + [63] = { 43.9, 53.7, 17, 413 }, + [64] = { 50.5, 53.5, 17, 413 }, + [65] = { 48.5, 52.2, 17, 413 }, + [66] = { 46.1, 51.8, 17, 413 }, + [67] = { 54.9, 51.5, 17, 413 }, + [68] = { 50, 50.1, 17, 413 }, + [69] = { 48, 49.8, 17, 413 }, + [70] = { 53.8, 49.5, 17, 413 }, + [71] = { 45.7, 49.2, 17, 413 }, + [72] = { 56.4, 48.2, 17, 413 }, + [73] = { 46.1, 47.2, 17, 413 }, + [74] = { 50, 46.7, 17, 413 }, + [75] = { 44.4, 46.7, 17, 413 }, + [76] = { 47.8, 45.7, 17, 413 }, + [77] = { 54.5, 45, 17, 413 }, + [78] = { 57.8, 43.7, 17, 413 }, + [79] = { 51.2, 43.3, 17, 413 }, + [80] = { 46.1, 42.5, 17, 413 }, + [81] = { 54.3, 41, 17, 413 }, + [82] = { 44.4, 38.3, 17, 413 }, + [83] = { 47.8, 37.4, 17, 413 }, + [84] = { 50.8, 37.3, 17, 413 }, + [85] = { 43.6, 36.1, 17, 413 }, + [86] = { 60.1, 35.7, 17, 413 }, + [87] = { 57.3, 34.5, 17, 413 }, + [88] = { 61.7, 33.3, 17, 413 }, + [89] = { 44, 33.3, 17, 413 }, + [90] = { 41.3, 32.5, 17, 413 }, + [91] = { 60.3, 30.8, 17, 413 }, + [92] = { 53.6, 30.1, 17, 413 }, + [93] = { 45.3, 29.7, 17, 413 }, + [94] = { 40.2, 29.3, 17, 413 }, + [95] = { 42, 28.3, 17, 413 }, + [96] = { 37.2, 27.7, 17, 413 }, + [97] = { 53.9, 27.4, 17, 413 }, + [98] = { 59.7, 27.2, 17, 413 }, + [99] = { 64.6, 25.8, 17, 180 }, + [100] = { 64.1, 24.8, 17, 180 }, + [101] = { 46.3, 24.5, 17, 413 }, + [102] = { 57, 22.1, 17, 413 }, + [103] = { 41.6, 21.3, 17, 413 }, + [104] = { 61.4, 20.8, 17, 413 }, + [105] = { 51.5, 17.9, 17, 413 }, + [106] = { 59.7, 17.8, 17, 413 }, + [107] = { 56, 15.8, 17, 413 }, + [108] = { 38.6, 15.8, 17, 413 }, + [109] = { 50.6, 14.6, 17, 413 }, + [110] = { 64.3, 14.1, 17, 180 }, + [111] = { 65.1, 9.2, 17, 180 }, + [112] = { 72.6, 62.8, 215, 413 }, + }, + ["lvl"] = "1", + }, + [3301] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "35", + }, + [3302] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [3303] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [3304] = { + ["coords"] = { + [1] = { 55.9, 74.4, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "11", + }, + [3305] = { + ["coords"] = { + [1] = { 34.8, 30.9, 51, 900 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [3306] = { + ["coords"] = { + [1] = { 56.8, 59.8, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [3307] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [3309] = { + ["coords"] = { + [1] = { 49.6, 69.1, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [3310] = { + ["coords"] = { + [1] = { 45.1, 63.9, 1637, 600 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [3312] = { + ["coords"] = { + [1] = { 44.7, 70, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [3313] = { + ["coords"] = { + [1] = { 45.3, 8.2, 14, 300 }, + [2] = { 48.1, 80.5, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3314] = { + ["coords"] = { + [1] = { 47.6, 68.4, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3315] = { + ["coords"] = { + [1] = { 62.8, 50.4, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3316] = { + ["coords"] = { + [1] = { 62.9, 44.7, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3317] = { + ["coords"] = { + [1] = { 56.5, 73.8, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3318] = { + ["coords"] = { + [1] = { 50, 68.6, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [3319] = { + ["coords"] = { + [1] = { 56, 72.7, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3320] = { + ["coords"] = { + [1] = { 49.1, 69.6, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [3321] = { + ["coords"] = { + [1] = { 56.2, 73.2, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3322] = { + ["coords"] = { + [1] = { 52.1, 62.1, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3323] = { + ["coords"] = { + [1] = { 45.4, 56.5, 1637, 25 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3324] = { + ["coords"] = { + [1] = { 48, 45.9, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [3325] = { + ["coords"] = { + [1] = { 48.6, 47, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [3326] = { + ["coords"] = { + [1] = { 48.5, 45.4, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [3327] = { + ["coords"] = { + [1] = { 42.7, 51.5, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [3328] = { + ["coords"] = { + [1] = { 43.9, 54.6, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [3329] = { + ["coords"] = { + [1] = { 49, 54.2, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3330] = { + ["coords"] = { + [1] = { 44.3, 48.1, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3331] = { + ["coords"] = { + [1] = { 45.7, 56, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3332] = { + ["coords"] = { + [1] = { 69.8, 29.2, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [3333] = { + ["coords"] = { + [1] = { 70, 29.8, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3334] = { + ["coords"] = { + [1] = { 42.1, 49.5, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3335] = { + ["coords"] = { + [1] = { 46, 45.7, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3336] = { + ["coords"] = { + [1] = { 50.8, 43.6, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3337] = { + ["coords"] = { + [1] = { 62.3, 19.4, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "15", + }, + [3338] = { + ["coords"] = { + [1] = { 52.2, 31, 17, 600 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [3339] = { + ["coords"] = { + [1] = { 62.3, 39, 17, 413 }, + }, + ["lvl"] = "25", + }, + [3341] = { + ["coords"] = { + [1] = { 45.9, 77, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "18", + }, + [3342] = { + ["coords"] = { + [1] = { 37.4, 52.3, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [3343] = { + ["coords"] = { + [1] = { 49.7, 82.5, 2597, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [3344] = { + ["coords"] = { + [1] = { 38.8, 36.4, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [3345] = { + ["coords"] = { + [1] = { 53.9, 38.7, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [3346] = { + ["coords"] = { + [1] = { 53.9, 38, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [3347] = { + ["coords"] = { + [1] = { 56.8, 33, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [3348] = { + ["coords"] = { + [1] = { 56.1, 34.1, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3349] = { + ["coords"] = { + [1] = { 29.7, 74.2, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3350] = { + ["coords"] = { + [1] = { 46.1, 40.9, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3351] = { + ["coords"] = { + [1] = { 45.7, 40.9, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3352] = { + ["coords"] = { + [1] = { 66, 18.5, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [3353] = { + ["coords"] = { + [1] = { 79.8, 31.4, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [3354] = { + ["coords"] = { + [1] = { 80.4, 32.4, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [3355] = { + ["coords"] = { + [1] = { 82.3, 23, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [3356] = { + ["coords"] = { + [1] = { 82.6, 24, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3357] = { + ["coords"] = { + [1] = { 73.1, 26.1, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [3358] = { + ["coords"] = { + [1] = { 73.3, 26.6, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3359] = { + ["coords"] = { + [1] = { 73.3, 42.3, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3360] = { + ["coords"] = { + [1] = { 81.5, 18.7, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3361] = { + ["coords"] = { + [1] = { 81.6, 18.9, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3362] = { + ["coords"] = { + [1] = { 69.4, 12.2, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [3363] = { + ["coords"] = { + [1] = { 63.6, 49.9, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [3364] = { + ["coords"] = { + [1] = { 63.1, 51.4, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3365] = { + ["coords"] = { + [1] = { 62.8, 44.1, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [3366] = { + ["coords"] = { + [1] = { 63, 45.5, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3367] = { + ["coords"] = { + [1] = { 60.6, 48.9, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3368] = { + ["coords"] = { + [1] = { 57.2, 53.3, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3369] = { + ["coords"] = { + [1] = { 58.8, 52.7, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3370] = { + ["coords"] = { + [1] = { 44.1, 6.6, 14, 300 }, + [2] = { 43.6, 74.6, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [3371] = { + ["coords"] = { + [1] = { 56.2, 46.1, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3372] = { + ["coords"] = { + [1] = { 55.7, 46.7, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3373] = { + ["coords"] = { + [1] = { 41.6, 9.2, 14, 300 }, + [2] = { 34.2, 84.6, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [3374] = { + ["coords"] = { + [1] = { 48.2, 86.4, 17, 413 }, + [2] = { 48.4, 86.3, 17, 413 }, + [3] = { 48, 86.1, 17, 413 }, + [4] = { 48.4, 86, 17, 413 }, + [5] = { 47.7, 85.9, 17, 413 }, + [6] = { 46.9, 85.9, 17, 413 }, + [7] = { 47.1, 85.8, 17, 413 }, + [8] = { 48.2, 85.8, 17, 413 }, + [9] = { 47.3, 85.7, 17, 413 }, + [10] = { 47.6, 85.7, 17, 413 }, + [11] = { 46.9, 85.6, 17, 413 }, + [12] = { 47.4, 85.6, 17, 413 }, + [13] = { 48.1, 85.5, 17, 413 }, + [14] = { 47.8, 85.5, 17, 413 }, + [15] = { 47.4, 85.3, 17, 413 }, + [16] = { 47.2, 85.2, 17, 413 }, + [17] = { 48, 85.2, 17, 413 }, + [18] = { 47.8, 85.1, 17, 413 }, + [19] = { 47.2, 84.9, 17, 413 }, + [20] = { 48, 84.9, 17, 413 }, + [21] = { 47.4, 84.9, 17, 413 }, + [22] = { 47.5, 84.8, 17, 413 }, + [23] = { 47.7, 84.6, 17, 413 }, + [24] = { 46.9, 84.3, 17, 413 }, + [25] = { 47.5, 84.3, 17, 413 }, + [26] = { 47.4, 84.1, 17, 413 }, + [27] = { 47, 84.1, 17, 413 }, + [28] = { 47.5, 84, 17, 413 }, + [29] = { 47.3, 83.9, 17, 413 }, + [30] = { 47.1, 83.9, 17, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "21-22", + }, + [3375] = { + ["coords"] = { + [1] = { 48.1, 85.9, 17, 413 }, + [2] = { 47.4, 85.5, 17, 413 }, + [3] = { 47.5, 85.4, 17, 413 }, + [4] = { 47.7, 84.9, 17, 413 }, + [5] = { 47.4, 84.3, 17, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "22-23", + }, + [3376] = { + ["coords"] = { + [1] = { 25.5, 59.5, 15, 413 }, + [2] = { 26.2, 59.3, 15, 413 }, + [3] = { 25.8, 59, 15, 413 }, + [4] = { 26.6, 59, 15, 413 }, + [5] = { 26.9, 58.8, 15, 413 }, + [6] = { 25.7, 58.6, 15, 413 }, + [7] = { 26.5, 58.5, 15, 413 }, + [8] = { 26.4, 58.2, 15, 413 }, + [9] = { 26.3, 58.2, 15, 413 }, + [10] = { 26.7, 58.2, 15, 413 }, + [11] = { 27.4, 57.9, 15, 413 }, + [12] = { 26.9, 57.9, 15, 413 }, + [13] = { 27.5, 57.8, 15, 413 }, + [14] = { 27.3, 57.6, 15, 413 }, + [15] = { 27.1, 57.2, 15, 413 }, + [16] = { 48.7, 84.8, 17, 413 }, + [17] = { 49.1, 84.7, 17, 413 }, + [18] = { 48.9, 84.5, 17, 413 }, + [19] = { 49.3, 84.5, 17, 413 }, + [20] = { 49.4, 84.4, 17, 413 }, + [21] = { 48.8, 84.3, 17, 413 }, + [22] = { 49.2, 84.3, 17, 413 }, + [23] = { 48.3, 84.2, 17, 413 }, + [24] = { 49.2, 84.1, 17, 413 }, + [25] = { 49.3, 84.1, 17, 413 }, + [26] = { 49.7, 84, 17, 413 }, + [27] = { 49.4, 83.9, 17, 413 }, + [28] = { 49.7, 83.9, 17, 413 }, + [29] = { 49.7, 83.8, 17, 413 }, + [30] = { 48.5, 83.8, 17, 413 }, + [31] = { 49.6, 83.6, 17, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "23-24", + }, + [3377] = { + ["coords"] = { + [1] = { 25.9, 59.7, 15, 413 }, + [2] = { 26.7, 58.8, 15, 413 }, + [3] = { 26.9, 58.6, 15, 413 }, + [4] = { 26.1, 58.6, 15, 413 }, + [5] = { 27.1, 58.6, 15, 413 }, + [6] = { 25.9, 58.6, 15, 413 }, + [7] = { 26.6, 58.4, 15, 413 }, + [8] = { 27, 58.3, 15, 413 }, + [9] = { 25.8, 58, 15, 413 }, + [10] = { 26.8, 57.8, 15, 413 }, + [11] = { 26.3, 57.7, 15, 413 }, + [12] = { 26.8, 57.4, 15, 413 }, + [13] = { 48.9, 84.9, 17, 413 }, + [14] = { 48.5, 84.6, 17, 413 }, + [15] = { 49.3, 84.4, 17, 413 }, + [16] = { 49.5, 84.3, 17, 413 }, + [17] = { 49, 84.3, 17, 413 }, + [18] = { 48.9, 84.3, 17, 413 }, + [19] = { 49.3, 84.2, 17, 413 }, + [20] = { 49.5, 84.2, 17, 413 }, + [21] = { 48.6, 84.1, 17, 413 }, + [22] = { 48.9, 84, 17, 413 }, + [23] = { 49.4, 83.9, 17, 413 }, + [24] = { 48.6, 83.9, 17, 413 }, + [25] = { 49.1, 83.9, 17, 413 }, + [26] = { 49.4, 83.7, 17, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "24-25", + }, + [3378] = { + ["coords"] = { + [1] = { 27, 58.6, 15, 413 }, + [2] = { 26.4, 58.6, 15, 413 }, + [3] = { 26.8, 58.2, 15, 413 }, + [4] = { 27.5, 58.2, 15, 413 }, + [5] = { 26.5, 58.1, 15, 413 }, + [6] = { 27, 57.9, 15, 413 }, + [7] = { 26.3, 57.8, 15, 413 }, + [8] = { 26.5, 57.6, 15, 413 }, + [9] = { 27.2, 57.2, 15, 413 }, + [10] = { 49.5, 84.3, 17, 413 }, + [11] = { 49.2, 84.3, 17, 413 }, + [12] = { 48.6, 84.2, 17, 413 }, + [13] = { 49.4, 84.1, 17, 413 }, + [14] = { 49.8, 84.1, 17, 413 }, + [15] = { 49.2, 84.1, 17, 413 }, + [16] = { 49.5, 84, 17, 413 }, + [17] = { 49.1, 83.9, 17, 413 }, + [18] = { 49.2, 83.8, 17, 413 }, + [19] = { 49.6, 83.6, 17, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "26", + }, + [3379] = { + ["coords"] = { + [1] = { 47.4, 19.4, 17, 360 }, + [2] = { 47.5, 19.2, 17, 413 }, + [3] = { 47.7, 19.2, 17, 413 }, + [4] = { 47.8, 19.1, 17, 413 }, + [5] = { 47.2, 19.1, 17, 413 }, + [6] = { 47.4, 19.1, 17, 413 }, + [7] = { 48.5, 19, 17, 360 }, + [8] = { 48.1, 18.9, 17, 360 }, + [9] = { 48.4, 18.8, 17, 360 }, + [10] = { 47.4, 18.7, 17, 413 }, + [11] = { 47.2, 18.7, 17, 360 }, + [12] = { 46.5, 18.2, 17, 413 }, + [13] = { 46.7, 18.2, 17, 413 }, + [14] = { 46.3, 18.1, 17, 413 }, + [15] = { 47.8, 18.1, 17, 360 }, + [16] = { 46.7, 18, 17, 413 }, + [17] = { 48, 18, 17, 360 }, + [18] = { 46.3, 18, 17, 413 }, + [19] = { 46.5, 17.9, 17, 413 }, + [20] = { 47.8, 17.9, 17, 360 }, + [21] = { 47.6, 17.9, 17, 360 }, + [22] = { 47.9, 15.8, 17, 413 }, + [23] = { 47, 15.8, 17, 413 }, + [24] = { 48.2, 15.1, 17, 413 }, + [25] = { 47.6, 15, 17, 413 }, + [26] = { 47.9, 14.9, 17, 413 }, + }, + ["lvl"] = "10-11", + }, + [3380] = { + ["coords"] = { + [1] = { 47.7, 19.5, 17, 413 }, + [2] = { 47.5, 19.4, 17, 360 }, + [3] = { 48.1, 19.3, 17, 413 }, + [4] = { 47.3, 19.3, 17, 413 }, + [5] = { 48.1, 19.2, 17, 413 }, + [6] = { 48, 19, 17, 360 }, + [7] = { 48.5, 19, 17, 413 }, + [8] = { 47.5, 19, 17, 360 }, + [9] = { 47.6, 18.8, 17, 360 }, + [10] = { 48.4, 18.6, 17, 413 }, + [11] = { 47.2, 18.3, 17, 360 }, + [12] = { 46.5, 18.1, 17, 413 }, + [13] = { 47.8, 18.1, 17, 413 }, + [14] = { 47.7, 18, 17, 413 }, + [15] = { 47.9, 17.9, 17, 413 }, + [16] = { 46.9, 15.8, 17, 413 }, + [17] = { 48.3, 15.5, 17, 413 }, + [18] = { 47.6, 15.4, 17, 413 }, + [19] = { 47.9, 15.4, 17, 413 }, + }, + ["lvl"] = "11-12", + }, + [3381] = { + ["coords"] = { + [1] = { 62.9, 50.2, 17, 413 }, + [2] = { 62.7, 49.7, 17, 413 }, + [3] = { 63.6, 49.3, 17, 413 }, + [4] = { 63.9, 49.2, 17, 413 }, + [5] = { 63.5, 49.2, 17, 413 }, + [6] = { 63.6, 48.9, 17, 413 }, + [7] = { 63.9, 48.3, 17, 413 }, + [8] = { 64, 47.3, 17, 413 }, + [9] = { 64.3, 47.2, 17, 413 }, + [10] = { 63.9, 46.8, 17, 413 }, + [11] = { 64.5, 46.7, 17, 413 }, + [12] = { 63.6, 46.2, 17, 413 }, + [13] = { 63.7, 46.1, 17, 413 }, + [14] = { 63.8, 45.9, 17, 413 }, + [15] = { 63.6, 45.8, 17, 413 }, + [16] = { 63.9, 45.3, 17, 413 }, + [17] = { 63.9, 44.8, 17, 413 }, + [18] = { 63.6, 44.4, 17, 413 }, + [19] = { 64.2, 44.3, 17, 413 }, + [20] = { 64.4, 44.1, 17, 413 }, + [21] = { 64.1, 43.9, 17, 413 }, + [22] = { 64.5, 43.9, 17, 413 }, + [23] = { 64.2, 43.4, 17, 413 }, + [24] = { 63.6, 43.4, 17, 413 }, + }, + ["lvl"] = "12-13", + }, + [3382] = { + ["coords"] = { + [1] = { 62.6, 50.3, 17, 413 }, + [2] = { 62.7, 49.8, 17, 413 }, + [3] = { 62.9, 49.8, 17, 413 }, + [4] = { 62.5, 49.5, 17, 413 }, + [5] = { 63.8, 49.5, 17, 413 }, + [6] = { 63.7, 49.3, 17, 413 }, + [7] = { 63.1, 49.2, 17, 413 }, + [8] = { 63.9, 48.8, 17, 413 }, + [9] = { 64.2, 47.8, 17, 413 }, + [10] = { 64.3, 47.3, 17, 413 }, + [11] = { 64.4, 47, 17, 413 }, + [12] = { 64.2, 46.8, 17, 413 }, + [13] = { 63.6, 46.7, 17, 413 }, + [14] = { 63.9, 46.3, 17, 413 }, + [15] = { 63.6, 46.1, 17, 413 }, + [16] = { 63.5, 45.9, 17, 413 }, + [17] = { 64.6, 44.1, 17, 413 }, + [18] = { 62.9, 44, 17, 413 }, + [19] = { 63.9, 43.9, 17, 413 }, + }, + ["lvl"] = "13-14", + }, + [3383] = { + ["coords"] = { + [1] = { 61.3, 49.3, 17, 413 }, + [2] = { 61.5, 48.9, 17, 413 }, + [3] = { 61.3, 48.2, 17, 413 }, + [4] = { 61.5, 48, 17, 413 }, + [5] = { 62, 47.8, 17, 413 }, + [6] = { 62.3, 47.6, 17, 413 }, + [7] = { 62.4, 47.3, 17, 413 }, + [8] = { 62.6, 46.2, 17, 413 }, + [9] = { 62.2, 46.1, 17, 413 }, + [10] = { 62, 46, 17, 413 }, + [11] = { 62.2, 45.7, 17, 413 }, + [12] = { 61.9, 45.6, 17, 413 }, + [13] = { 62.2, 45.4, 17, 413 }, + [14] = { 62, 45.1, 17, 413 }, + [15] = { 62.5, 44.9, 17, 413 }, + [16] = { 62.3, 44.3, 17, 413 }, + [17] = { 61.4, 44.3, 17, 413 }, + [18] = { 61.6, 44.3, 17, 413 }, + [19] = { 62.2, 44, 17, 413 }, + [20] = { 61.5, 43.9, 17, 413 }, + [21] = { 62, 43.8, 17, 413 }, + [22] = { 62.2, 43.4, 17, 413 }, + }, + ["lvl"] = "14-15", + }, + [3384] = { + ["coords"] = { + [1] = { 61.5, 49.2, 17, 413 }, + [2] = { 61.6, 49, 17, 413 }, + [3] = { 61.5, 49, 17, 413 }, + [4] = { 61.3, 48.7, 17, 413 }, + [5] = { 61.9, 48.2, 17, 413 }, + [6] = { 61.6, 48, 17, 413 }, + [7] = { 62.2, 47.4, 17, 413 }, + [8] = { 62.2, 46.8, 17, 413 }, + [9] = { 62.5, 46.7, 17, 413 }, + [10] = { 62.2, 46, 17, 413 }, + [11] = { 62.5, 45.8, 17, 413 }, + [12] = { 62, 45.6, 17, 413 }, + [13] = { 61.8, 45.5, 17, 413 }, + [14] = { 62.2, 44.8, 17, 413 }, + [15] = { 61.9, 44.4, 17, 413 }, + [16] = { 61.4, 44.2, 17, 413 }, + [17] = { 62.1, 44.1, 17, 413 }, + }, + ["lvl"] = "14-15", + }, + [3385] = { + ["coords"] = { + [1] = { 52.5, 5.6, 15, 300 }, + [2] = { 52.1, 5.6, 15, 300 }, + [3] = { 53.3, 5.2, 15, 300 }, + [4] = { 53.2, 5.1, 15, 300 }, + [5] = { 52.6, 4.9, 15, 300 }, + [6] = { 51.7, 4.8, 15, 300 }, + [7] = { 51.5, 4.5, 15, 300 }, + [8] = { 51.9, 4.5, 15, 300 }, + [9] = { 62.7, 56.9, 17, 300 }, + [10] = { 62.5, 56.8, 17, 300 }, + [11] = { 63.1, 56.6, 17, 300 }, + [12] = { 63, 56.6, 17, 300 }, + [13] = { 62.8, 56.5, 17, 300 }, + [14] = { 62.3, 56.4, 17, 300 }, + [15] = { 62.2, 56.3, 17, 300 }, + [16] = { 62.4, 56.3, 17, 300 }, + [17] = { 61.6, 56.1, 17, 300 }, + [18] = { 61.3, 55.7, 17, 300 }, + [19] = { 61, 55.6, 17, 300 }, + [20] = { 60.8, 55.6, 17, 300 }, + [21] = { 60.7, 55.6, 17, 300 }, + [22] = { 61.4, 55.5, 17, 300 }, + [23] = { 60.6, 55.3, 17, 300 }, + [24] = { 61.9, 55.3, 17, 300 }, + [25] = { 60.7, 55.2, 17, 300 }, + [26] = { 62.1, 55.1, 17, 300 }, + [27] = { 61.9, 55.1, 17, 300 }, + [28] = { 61.8, 55.1, 17, 300 }, + [29] = { 62, 55.1, 17, 300 }, + [30] = { 61.6, 55.1, 17, 300 }, + [31] = { 62, 55, 17, 300 }, + [32] = { 60.9, 55, 17, 300 }, + [33] = { 61.8, 54.9, 17, 300 }, + [34] = { 61.9, 54.9, 17, 300 }, + [35] = { 60.4, 54.9, 17, 300 }, + [36] = { 60.9, 54.9, 17, 300 }, + [37] = { 61.8, 54.8, 17, 300 }, + [38] = { 61.6, 54.8, 17, 300 }, + [39] = { 61.7, 54.8, 17, 300 }, + [40] = { 62, 54.7, 17, 300 }, + [41] = { 61.9, 54.4, 17, 300 }, + [42] = { 60.5, 54.4, 17, 300 }, + [43] = { 60.1, 54.2, 17, 300 }, + [44] = { 62.3, 54.2, 17, 300 }, + [45] = { 60.4, 54.1, 17, 300 }, + [46] = { 62.2, 54.1, 17, 300 }, + [47] = { 62.2, 54, 17, 300 }, + [48] = { 61.6, 53.9, 17, 300 }, + [49] = { 61.5, 53.9, 17, 300 }, + [50] = { 61.7, 53.8, 17, 300 }, + [51] = { 61.6, 53.7, 17, 300 }, + [52] = { 61.1, 53.6, 17, 300 }, + [53] = { 62.2, 53.6, 17, 300 }, + [54] = { 62.1, 53.5, 17, 300 }, + [55] = { 61.8, 53.5, 17, 300 }, + [56] = { 61.5, 53.5, 17, 300 }, + [57] = { 61.2, 53.5, 17, 300 }, + [58] = { 61.5, 53.4, 17, 300 }, + [59] = { 62.4, 53.3, 17, 300 }, + [60] = { 62.1, 53.1, 17, 300 }, + [61] = { 61.4, 53.1, 17, 300 }, + [62] = { 60.8, 52.6, 17, 300 }, + [63] = { 62.5, 52.6, 17, 300 }, + [64] = { 61.9, 52.4, 17, 300 }, + [65] = { 60.6, 52.3, 17, 300 }, + [66] = { 62.3, 52.2, 17, 300 }, + [67] = { 61.6, 52.1, 17, 300 }, + [68] = { 61.2, 52.1, 17, 300 }, + [69] = { 60.2, 52.1, 17, 300 }, + [70] = { 62, 51.7, 17, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "15-16", + }, + [3386] = { + ["coords"] = { + [1] = { 53.2, 5.4, 15, 300 }, + [2] = { 51.5, 4.8, 15, 300 }, + [3] = { 63.1, 56.8, 17, 300 }, + [4] = { 63.1, 56.7, 17, 300 }, + [5] = { 62.2, 56.4, 17, 300 }, + [6] = { 61.4, 55.7, 17, 300 }, + [7] = { 60.5, 55.5, 17, 300 }, + [8] = { 62, 55.2, 17, 300 }, + [9] = { 61.8, 54.9, 17, 300 }, + [10] = { 60.5, 54.9, 17, 300 }, + [11] = { 60.4, 54.8, 17, 300 }, + [12] = { 61.8, 54.7, 17, 300 }, + [13] = { 62.2, 54.1, 17, 300 }, + [14] = { 61, 53.7, 17, 300 }, + [15] = { 61.4, 53.6, 17, 300 }, + [16] = { 61.7, 53.4, 17, 300 }, + [17] = { 61.3, 53.4, 17, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "16-17", + }, + [3387] = { + ["coords"] = { + [1] = { 44.9, 59.1, 17, 275 }, + }, + ["fac"] = "H", + ["lvl"] = "32", + }, + [3388] = { + ["coords"] = { + [1] = { 65.8, 43.9, 17, 275 }, + }, + ["fac"] = "AH", + ["lvl"] = "32", + }, + [3389] = { + ["coords"] = { + [1] = { 45.3, 28.4, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "28", + }, + [3390] = { + ["coords"] = { + [1] = { 51.4, 30.2, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "22", + }, + [3391] = { + ["coords"] = { + [1] = { 62.7, 36.2, 17, 275 }, + }, + ["lvl"] = "60", + }, + [3392] = { + ["coords"] = { + [1] = { 48.3, 86.2, 17, 240 }, + [2] = { 47.4, 85.8, 17, 240 }, + }, + ["fac"] = "A", + ["lvl"] = "24", + }, + [3393] = { + ["coords"] = { + [1] = { 61.8, 54.7, 17, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [3394] = { + ["coords"] = { + [1] = { 42.8, 23.5, 17, 413 }, + }, + ["lvl"] = "16", + }, + [3395] = { + ["coords"] = { + [1] = { 52.9, 41.8, 17, 0 }, + }, + ["lvl"] = "18", + }, + [3396] = { + ["coords"] = { + [1] = { 46, 41.1, 17, 413 }, + }, + ["lvl"] = "19", + }, + [3397] = { + ["coords"] = { + [1] = { 55.9, 46, 17, 240 }, + [2] = { 53.6, 45.7, 17, 25000 }, + [3] = { 52.9, 44.9, 17, 240 }, + [4] = { 52.9, 44.5, 17, 240 }, + [5] = { 55.4, 43.9, 17, 240 }, + [6] = { 56.8, 43.6, 17, 240 }, + [7] = { 56.8, 43.4, 17, 240 }, + [8] = { 54.7, 42.9, 17, 240 }, + [9] = { 56.4, 42.4, 17, 240 }, + [10] = { 56.3, 41.9, 17, 240 }, + [11] = { 52.8, 41.8, 17, 240 }, + [12] = { 55.3, 41.3, 17, 240 }, + [13] = { 46, 41.2, 17, 240 }, + [14] = { 57.2, 41, 17, 240 }, + [15] = { 54.4, 40.9, 17, 240 }, + [16] = { 53.5, 40.8, 17, 240 }, + [17] = { 53.5, 40.6, 17, 240 }, + }, + ["lvl"] = "14-15", + }, + [3398] = { + ["coords"] = { + [1] = { 46.5, 39.5, 17, 61200 }, + }, + ["lvl"] = "20", + ["rnk"] = "2", + }, + [3399] = { + ["coords"] = { + [1] = { 57.4, 54, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [3400] = { + ["coords"] = { + [1] = { 57.6, 52.9, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3401] = { + ["coords"] = { + [1] = { 43, 53.7, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [3402] = { + ["coords"] = { + [1] = { 42.7, 53, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [3403] = { + ["coords"] = { + [1] = { 37.8, 36.5, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [3404] = { + ["coords"] = { + [1] = { 55.6, 39.5, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [3405] = { + ["coords"] = { + [1] = { 55, 39.4, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3406] = { + ["coords"] = { + [1] = { 67.2, 20.2, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [3407] = { + ["coords"] = { + [1] = { 68, 17.8, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [3408] = { + ["coords"] = { + [1] = { 80.4, 29.5, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [3409] = { + ["coords"] = { + [1] = { 81.2, 18.7, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3410] = { + ["coords"] = { + [1] = { 78.1, 38.5, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3411] = { + ["coords"] = { + [1] = { 73.6, 95.4, 406, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [3412] = { + ["coords"] = { + [1] = { 76, 25.4, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [3413] = { + ["coords"] = { + [1] = { 75.5, 25.4, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3414] = { + ["coords"] = { + [1] = { 26.4, 58.4, 15, 180 }, + [2] = { 49.2, 84.2, 17, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [3415] = { + ["coords"] = { + [1] = { 50, 31.8, 17, 413 }, + [2] = { 50.7, 31.5, 17, 413 }, + [3] = { 54.3, 31.4, 17, 413 }, + [4] = { 53.9, 31.1, 17, 413 }, + [5] = { 54.9, 31.1, 17, 413 }, + [6] = { 54.7, 30.8, 17, 413 }, + [7] = { 55.2, 30.7, 17, 413 }, + [8] = { 54.8, 30.5, 17, 413 }, + [9] = { 55.6, 30.4, 17, 413 }, + [10] = { 54.5, 30.4, 17, 413 }, + [11] = { 55, 30.1, 17, 413 }, + [12] = { 54.8, 30, 17, 413 }, + [13] = { 54.3, 30, 17, 413 }, + [14] = { 54.9, 29.6, 17, 413 }, + [15] = { 54.3, 29.4, 17, 413 }, + [16] = { 55, 29, 17, 413 }, + [17] = { 49.1, 27.6, 17, 413 }, + [18] = { 49.5, 27.6, 17, 413 }, + [19] = { 53.6, 27.5, 17, 413 }, + [20] = { 53.4, 27.2, 17, 413 }, + [21] = { 51.3, 27.1, 17, 413 }, + [22] = { 49.3, 26.9, 17, 413 }, + [23] = { 51.4, 26.2, 17, 413 }, + [24] = { 52, 26.1, 17, 413 }, + [25] = { 51.8, 26, 17, 413 }, + [26] = { 51.7, 25.7, 17, 413 }, + [27] = { 51.2, 24, 17, 413 }, + [28] = { 50, 23.5, 17, 413 }, + [29] = { 50.3, 23.5, 17, 413 }, + [30] = { 50.2, 23.4, 17, 413 }, + [31] = { 50.8, 23.2, 17, 413 }, + [32] = { 50.2, 23, 17, 413 }, + [33] = { 51.1, 21.3, 17, 413 }, + [34] = { 51.1, 21.1, 17, 413 }, + [35] = { 51.2, 20.7, 17, 413 }, + [36] = { 51.6, 20.7, 17, 413 }, + [37] = { 51, 20.4, 17, 413 }, + [38] = { 51.5, 20.2, 17, 413 }, + [39] = { 55.9, 16.7, 17, 413 }, + [40] = { 55.8, 16.6, 17, 413 }, + [41] = { 50.2, 16.3, 17, 413 }, + [42] = { 50.4, 15.6, 17, 413 }, + [43] = { 49.6, 15.6, 17, 413 }, + [44] = { 50, 15.4, 17, 413 }, + [45] = { 49.8, 15.3, 17, 413 }, + [46] = { 50.4, 15.2, 17, 413 }, + [47] = { 49.7, 15.1, 17, 413 }, + }, + ["lvl"] = "11-12", + }, + [3416] = { + ["coords"] = { + [1] = { 58.8, 35.7, 17, 413 }, + [2] = { 58.9, 35.4, 17, 413 }, + [3] = { 59.9, 34.8, 17, 413 }, + [4] = { 62.3, 33.4, 17, 413 }, + [5] = { 61.9, 33.4, 17, 413 }, + [6] = { 61.7, 33.1, 17, 413 }, + [7] = { 62.2, 33, 17, 413 }, + [8] = { 62.1, 32.5, 17, 413 }, + [9] = { 61.7, 32.4, 17, 413 }, + [10] = { 61.9, 32.3, 17, 413 }, + }, + ["lvl"] = "17-18", + }, + [3417] = { + ["coords"] = {}, + ["lvl"] = "16-17", + }, + [3418] = { + ["coords"] = { + [1] = { 44.9, 58.6, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "22", + }, + [3419] = { + ["coords"] = { + [1] = { 34.4, 21.1, 215, 375 }, + [2] = { 88, 48.3, 405, 375 }, + [3] = { 22.8, 20.9, 1638, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "22", + }, + [3420] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "15", + }, + [3421] = { + ["coords"] = { + [1] = { 26, 62.4, 15, 413 }, + [2] = { 49, 86.3, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "23", + }, + [3424] = { + ["coords"] = { + [1] = { 45.5, 67, 17, 413 }, + [2] = { 44.8, 63.1, 17, 413 }, + [3] = { 48.8, 62.3, 17, 413 }, + [4] = { 46.7, 61.5, 17, 413 }, + [5] = { 50, 60.5, 17, 413 }, + [6] = { 48.1, 60, 17, 413 }, + }, + ["lvl"] = "20-22", + }, + [3425] = { + ["coords"] = { + [1] = { 59.2, 41, 17, 413 }, + [2] = { 59.6, 40.9, 17, 413 }, + [3] = { 59.3, 40.8, 17, 413 }, + [4] = { 58.6, 40.8, 17, 413 }, + [5] = { 43.6, 39.4, 17, 413 }, + [6] = { 43.5, 39.3, 17, 413 }, + [7] = { 57.7, 39.3, 17, 413 }, + [8] = { 43.6, 39.1, 17, 413 }, + [9] = { 43.7, 37.9, 17, 413 }, + [10] = { 43.8, 37.6, 17, 413 }, + [11] = { 59, 36.5, 17, 413 }, + [12] = { 43.6, 35.5, 17, 413 }, + [13] = { 43.8, 35.4, 17, 413 }, + [14] = { 43.4, 35.3, 17, 413 }, + [15] = { 43.6, 35.2, 17, 413 }, + [16] = { 42.5, 35.1, 17, 413 }, + [17] = { 42.8, 35, 17, 413 }, + [18] = { 42.7, 34.6, 17, 413 }, + [19] = { 42.4, 34.6, 17, 413 }, + [20] = { 59.7, 34.4, 17, 413 }, + [21] = { 42.9, 33.8, 17, 413 }, + [22] = { 43.2, 33.7, 17, 413 }, + [23] = { 42.9, 33.4, 17, 413 }, + [24] = { 42.8, 33.4, 17, 413 }, + [25] = { 43.2, 33.3, 17, 413 }, + [26] = { 42.7, 33.2, 17, 413 }, + [27] = { 43, 33.1, 17, 413 }, + [28] = { 42.6, 33, 17, 413 }, + [29] = { 43.9, 32.9, 17, 413 }, + [30] = { 44.2, 32.8, 17, 413 }, + [31] = { 42.4, 32.8, 17, 413 }, + [32] = { 42.7, 32.7, 17, 413 }, + [33] = { 43.8, 32.6, 17, 413 }, + [34] = { 42.2, 32.4, 17, 413 }, + [35] = { 44.5, 31.9, 17, 413 }, + [36] = { 44.2, 31.6, 17, 413 }, + [37] = { 44.2, 31.2, 17, 413 }, + [38] = { 63.2, 29.5, 17, 413 }, + [39] = { 42.6, 28.9, 17, 413 }, + [40] = { 62.8, 28.7, 17, 413 }, + [41] = { 41.6, 28.7, 17, 413 }, + [42] = { 41.4, 28.7, 17, 413 }, + [43] = { 41.3, 28.4, 17, 413 }, + [44] = { 63.2, 28.1, 17, 413 }, + [45] = { 63.1, 27.5, 17, 413 }, + [46] = { 62.6, 27.5, 17, 413 }, + [47] = { 41, 27.2, 17, 413 }, + [48] = { 41.2, 27, 17, 413 }, + [49] = { 41, 26.8, 17, 413 }, + [50] = { 41, 26.6, 17, 413 }, + [51] = { 40.8, 26.3, 17, 413 }, + [52] = { 41.3, 24.3, 17, 413 }, + [53] = { 41.5, 24.2, 17, 413 }, + [54] = { 42, 23.5, 17, 413 }, + [55] = { 41.7, 23.3, 17, 413 }, + [56] = { 40.8, 22.9, 17, 413 }, + [57] = { 40.6, 22.5, 17, 413 }, + [58] = { 40.9, 21.8, 17, 413 }, + [59] = { 41, 21.5, 17, 413 }, + [60] = { 41, 21.2, 17, 413 }, + [61] = { 41, 21, 17, 413 }, + [62] = { 40.7, 21, 17, 413 }, + [63] = { 40.9, 20.8, 17, 413 }, + [64] = { 41.1, 20.8, 17, 413 }, + [65] = { 40.3, 20.7, 17, 413 }, + [66] = { 40.3, 20.5, 17, 413 }, + [67] = { 40.4, 20.2, 17, 413 }, + [68] = { 55.6, 16.5, 17, 413 }, + [69] = { 55.6, 16.3, 17, 413 }, + [70] = { 55.8, 16.2, 17, 413 }, + [71] = { 53.3, 16.1, 17, 413 }, + [72] = { 55.5, 16, 17, 413 }, + [73] = { 55.7, 15.9, 17, 413 }, + [74] = { 53.5, 15.9, 17, 413 }, + [75] = { 53.7, 15.7, 17, 413 }, + [76] = { 54, 15.6, 17, 413 }, + [77] = { 53.2, 15.5, 17, 413 }, + [78] = { 53.5, 15.4, 17, 413 }, + [79] = { 53.8, 15.3, 17, 413 }, + [80] = { 54, 15.2, 17, 413 }, + [81] = { 55, 15.2, 17, 413 }, + [82] = { 53.3, 15.2, 17, 413 }, + [83] = { 54.7, 15.1, 17, 413 }, + [84] = { 54.2, 15.1, 17, 413 }, + [85] = { 55.6, 15.1, 17, 413 }, + [86] = { 53.8, 15, 17, 413 }, + [87] = { 55, 14.9, 17, 413 }, + [88] = { 55.5, 14.8, 17, 413 }, + [89] = { 54.8, 14.8, 17, 413 }, + [90] = { 55.8, 14.8, 17, 413 }, + [91] = { 55.6, 14.6, 17, 413 }, + [92] = { 54.6, 14.6, 17, 413 }, + [93] = { 54.5, 14.5, 17, 413 }, + [94] = { 53.9, 14.1, 17, 413 }, + [95] = { 53.7, 13.9, 17, 413 }, + [96] = { 53.7, 13.5, 17, 413 }, + [97] = { 54, 13.5, 17, 413 }, + [98] = { 60.6, 7.9, 17, 413 }, + [99] = { 60.2, 7.9, 17, 413 }, + [100] = { 63.3, 7.3, 17, 413 }, + [101] = { 63.7, 6.3, 17, 413 }, + [102] = { 63.5, 5.9, 17, 413 }, + [103] = { 63.5, 5.3, 17, 413 }, + }, + ["lvl"] = "14-15", + }, + [3426] = { + ["coords"] = { + [1] = { 59, 53, 17, 413 }, + [2] = { 53.6, 52.3, 17, 413 }, + [3] = { 55.1, 51.3, 17, 413 }, + [4] = { 58.2, 50.7, 17, 413 }, + [5] = { 56.4, 50.7, 17, 413 }, + [6] = { 53.4, 50.6, 17, 413 }, + [7] = { 57.2, 50.6, 17, 413 }, + [8] = { 52.5, 50.4, 17, 413 }, + [9] = { 49.1, 50.3, 17, 413 }, + [10] = { 61.3, 50.1, 17, 413 }, + [11] = { 55.1, 50.1, 17, 413 }, + [12] = { 48, 49.9, 17, 413 }, + [13] = { 59.9, 49.8, 17, 413 }, + [14] = { 56, 49.3, 17, 413 }, + [15] = { 49.8, 49.2, 17, 413 }, + [16] = { 52.6, 48.9, 17, 413 }, + [17] = { 48.5, 48.9, 17, 413 }, + [18] = { 56.3, 48.8, 17, 413 }, + [19] = { 48.3, 48.5, 17, 413 }, + [20] = { 54.7, 48.3, 17, 413 }, + [21] = { 54, 47.9, 17, 413 }, + [22] = { 56.6, 47.5, 17, 413 }, + [23] = { 53.5, 47.3, 17, 413 }, + [24] = { 56.9, 47.1, 17, 413 }, + [25] = { 48.9, 46.8, 17, 413 }, + [26] = { 52.2, 46.7, 17, 413 }, + [27] = { 49.5, 46.4, 17, 413 }, + [28] = { 47.9, 45.4, 17, 413 }, + [29] = { 47.4, 44.3, 17, 413 }, + [30] = { 44.6, 43.7, 17, 413 }, + [31] = { 46.4, 43.6, 17, 413 }, + [32] = { 44.2, 42.7, 17, 413 }, + [33] = { 61.7, 34.4, 17, 413 }, + [34] = { 60.6, 33.6, 17, 413 }, + [35] = { 62.6, 33, 17, 413 }, + [36] = { 60.6, 32.7, 17, 413 }, + [37] = { 59.2, 32.3, 17, 413 }, + [38] = { 61.3, 32, 17, 413 }, + [39] = { 60.2, 31.6, 17, 413 }, + [40] = { 39.3, 28.9, 17, 413 }, + [41] = { 37, 28.1, 17, 413 }, + [42] = { 36.3, 28.1, 17, 413 }, + [43] = { 37.7, 27, 17, 413 }, + [44] = { 37.5, 26.2, 17, 413 }, + [45] = { 39.5, 25.1, 17, 413 }, + [46] = { 45.3, 16.1, 17, 413 }, + [47] = { 43.5, 15.9, 17, 413 }, + [48] = { 44.8, 15.4, 17, 413 }, + [49] = { 45.1, 14.7, 17, 413 }, + [50] = { 42.4, 14.6, 17, 413 }, + [51] = { 43.7, 14.5, 17, 413 }, + [52] = { 46.8, 14.4, 17, 413 }, + [53] = { 43.9, 13.5, 17, 413 }, + [54] = { 44.9, 13.2, 17, 413 }, + [55] = { 48.2, 12.3, 17, 413 }, + [56] = { 47.9, 11.7, 17, 413 }, + [57] = { 60.3, 11.2, 17, 413 }, + [58] = { 58.2, 6.7, 17, 413 }, + [59] = { 88.1, 98.3, 406, 413 }, + }, + ["lvl"] = "17-18", + }, + [3427] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "35", + }, + [3428] = { + ["coords"] = { + [1] = { 51.1, 29.6, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "12", + }, + [3429] = { + ["coords"] = { + [1] = { 51.5, 30.9, 17, 275 }, + }, + ["fac"] = "H", + ["lvl"] = "42", + }, + [3430] = { + ["coords"] = { + [1] = { 44.5, 59.3, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "17", + }, + [3431] = { + ["coords"] = { + [1] = { 51.6, 29.8, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "10", + }, + [3432] = { + ["coords"] = { + [1] = { 52, 31.6, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "15", + }, + [3433] = { + ["coords"] = { + [1] = { 45.1, 57.7, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "14", + }, + [3434] = { + ["coords"] = { + [1] = { 43.8, 83.3, 17, 413 }, + }, + ["lvl"] = "23", + }, + [3435] = { + ["coords"] = { + [1] = { 40.1, 80.5, 17, 413 }, + }, + ["lvl"] = "25", + }, + [3436] = { + ["coords"] = { + [1] = { 45.1, 80.1, 17, 413 }, + }, + ["lvl"] = "21", + }, + [3437] = { + ["coords"] = {}, + ["lvl"] = "15", + }, + [3438] = { + ["coords"] = { + [1] = { 58.5, 27, 17, 413 }, + }, + ["lvl"] = "15", + }, + [3439] = { + ["coords"] = { + [1] = { 56.5, 7.5, 17, 413 }, + }, + ["lvl"] = "18", + }, + [3440] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "18", + }, + [3441] = { + ["coords"] = { + [1] = { 42.3, 33.3, 215, 250 }, + [2] = { 61.5, 80.9, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "62", + }, + [3442] = { + ["coords"] = { + [1] = { 63, 37.2, 17, 413 }, + }, + ["lvl"] = "15", + }, + [3443] = { + ["coords"] = { + [1] = { 55.3, 31.8, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "13", + }, + [3444] = { + ["coords"] = { + [1] = { 25.5, 60.8, 15, 413 }, + [2] = { 25.6, 59.6, 15, 413 }, + [3] = { 26.9, 58.9, 15, 413 }, + [4] = { 26.9, 58.7, 15, 413 }, + [5] = { 26.7, 58.3, 15, 413 }, + [6] = { 27.5, 58.2, 15, 413 }, + [7] = { 26.7, 57.8, 15, 413 }, + [8] = { 25.5, 57.7, 15, 413 }, + [9] = { 27.2, 57.5, 15, 413 }, + [10] = { 26.6, 57.5, 15, 413 }, + [11] = { 48.3, 86.3, 17, 413 }, + [12] = { 48, 86, 17, 413 }, + [13] = { 48.7, 85.5, 17, 413 }, + [14] = { 47.7, 85.3, 17, 413 }, + [15] = { 47.3, 85, 17, 413 }, + [16] = { 48.8, 84.8, 17, 413 }, + [17] = { 49.5, 84.5, 17, 413 }, + [18] = { 49.5, 84.4, 17, 413 }, + [19] = { 49.3, 84.2, 17, 413 }, + [20] = { 49.8, 84.1, 17, 413 }, + [21] = { 49.4, 83.9, 17, 413 }, + [22] = { 48.7, 83.8, 17, 413 }, + [23] = { 49.6, 83.8, 17, 413 }, + [24] = { 49.3, 83.8, 17, 413 }, + }, + ["lvl"] = "1", + }, + [3445] = { + ["coords"] = { + [1] = { 56.3, 8.6, 17, 413 }, + }, + ["lvl"] = "18", + }, + [3446] = { + ["coords"] = { + [1] = { 62.4, 37.6, 17, 413 }, + }, + ["lvl"] = "17", + }, + [3447] = { + ["coords"] = { + [1] = { 35, 22.4, 215, 375 }, + [2] = { 88.6, 49.7, 405, 375 }, + [3] = { 25.7, 27.1, 1638, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "24", + }, + [3448] = { + ["coords"] = { + [1] = { 52.3, 31.9, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "22", + }, + [3449] = { + ["coords"] = { + [1] = { 51.6, 30.9, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "14", + }, + [3450] = { + ["coords"] = {}, + ["lvl"] = "14-15", + }, + [3451] = { + ["coords"] = {}, + ["lvl"] = "15", + }, + [3452] = { + ["coords"] = { + [1] = { 39.2, 12.2, 17, 413 }, + }, + ["lvl"] = "20", + }, + [3453] = { + ["coords"] = { + [1] = { 63.4, 38.5, 17, 413 }, + }, + ["lvl"] = "15", + }, + [3454] = { + ["coords"] = { + [1] = { 53.4, 5.2, 15, 270 }, + [2] = { 63.2, 56.6, 17, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "19", + }, + [3455] = { + ["coords"] = { + [1] = { 60.4, 54.8, 17, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "19", + }, + [3456] = { + ["coords"] = { + [1] = { 45.3, 84.2, 17, 413 }, + [2] = { 43.8, 84.1, 17, 413 }, + [3] = { 43.2, 81.2, 17, 413 }, + [4] = { 44.7, 81.2, 17, 413 }, + [5] = { 43.8, 80.8, 17, 413 }, + [6] = { 44.2, 80.7, 17, 413 }, + [7] = { 44, 80.5, 17, 413 }, + [8] = { 42.6, 80.5, 17, 413 }, + [9] = { 45.5, 80.3, 17, 413 }, + [10] = { 44.3, 80.2, 17, 413 }, + [11] = { 43.8, 80.1, 17, 413 }, + [12] = { 44.3, 80, 17, 413 }, + [13] = { 45.4, 79.9, 17, 413 }, + [14] = { 44.4, 77, 17, 0 }, + }, + ["lvl"] = "20-21", + }, + [3457] = { + ["coords"] = { + [1] = { 44.8, 83.8, 17, 275 }, + [2] = { 44.1, 83.8, 17, 413 }, + [3] = { 43.6, 83.7, 17, 275 }, + [4] = { 43.5, 83.4, 17, 413 }, + [5] = { 43.8, 83.3, 17, 413 }, + [6] = { 44.1, 83.3, 17, 413 }, + [7] = { 43.4, 83.3, 17, 413 }, + [8] = { 44.4, 83, 17, 275 }, + [9] = { 43.2, 83, 17, 413 }, + [10] = { 42.8, 82.9, 17, 275 }, + [11] = { 42.7, 82.9, 17, 413 }, + [12] = { 43.5, 82.8, 17, 413 }, + [13] = { 42.6, 82.6, 17, 275 }, + [14] = { 44.2, 82.6, 17, 275 }, + [15] = { 44.1, 82.6, 17, 413 }, + [16] = { 42.9, 82.5, 17, 413 }, + [17] = { 44.1, 82.4, 17, 413 }, + [18] = { 43.8, 82.3, 17, 413 }, + [19] = { 42.5, 81.8, 17, 413 }, + [20] = { 44.1, 81.8, 17, 413 }, + [21] = { 42.5, 81.3, 17, 413 }, + [22] = { 41.8, 79.2, 17, 413 }, + [23] = { 41.9, 78.7, 17, 413 }, + }, + ["lvl"] = "22-23", + }, + [3458] = { + ["coords"] = { + [1] = { 44.5, 83.3, 17, 413 }, + [2] = { 43, 83.3, 17, 413 }, + [3] = { 42.7, 83.1, 17, 413 }, + [4] = { 43.8, 82.8, 17, 413 }, + [5] = { 42.5, 82.3, 17, 413 }, + [6] = { 41.5, 82.3, 17, 413 }, + [7] = { 43.2, 82.3, 17, 413 }, + [8] = { 41.8, 82.2, 17, 413 }, + [9] = { 42.1, 82, 17, 413 }, + [10] = { 41.6, 81.6, 17, 413 }, + [11] = { 42.1, 81.5, 17, 413 }, + [12] = { 42, 81.3, 17, 413 }, + [13] = { 41.5, 80.8, 17, 413 }, + [14] = { 40.5, 80.8, 17, 413 }, + [15] = { 40.8, 80.4, 17, 413 }, + [16] = { 41.2, 80.3, 17, 413 }, + [17] = { 41.2, 79.1, 17, 413 }, + [18] = { 42.6, 79, 17, 413 }, + [19] = { 41.7, 78.7, 17, 413 }, + [20] = { 41.5, 78.7, 17, 413 }, + [21] = { 41.6, 78.4, 17, 413 }, + [22] = { 42.2, 78.3, 17, 413 }, + }, + ["lvl"] = "23-24", + }, + [3459] = { + ["coords"] = { + [1] = { 42, 82.2, 17, 413 }, + [2] = { 41.6, 81.8, 17, 413 }, + [3] = { 42.2, 81.7, 17, 413 }, + [4] = { 40.8, 81.5, 17, 413 }, + [5] = { 41.8, 81.3, 17, 413 }, + [6] = { 42.1, 81.1, 17, 413 }, + [7] = { 41.1, 80.9, 17, 413 }, + [8] = { 41.8, 80.8, 17, 413 }, + [9] = { 40.8, 80.8, 17, 413 }, + [10] = { 42.1, 80.5, 17, 413 }, + [11] = { 41.2, 79.9, 17, 413 }, + [12] = { 41.4, 79.3, 17, 413 }, + [13] = { 41.6, 78.9, 17, 413 }, + [14] = { 42.2, 78.9, 17, 413 }, + [15] = { 41.3, 78.8, 17, 413 }, + [16] = { 42, 78.7, 17, 413 }, + [17] = { 41.5, 78.3, 17, 413 }, + }, + ["lvl"] = "24-25", + }, + [3460] = { + ["coords"] = {}, + ["lvl"] = "15-16", + }, + [3461] = { + ["coords"] = { + [1] = { 55.6, 43.7, 17, 413 }, + [2] = { 55.9, 43.4, 17, 413 }, + [3] = { 55.7, 43.3, 17, 413 }, + [4] = { 55.1, 43, 17, 413 }, + [5] = { 55.7, 42.9, 17, 413 }, + [6] = { 55.3, 42.9, 17, 413 }, + [7] = { 56, 42.8, 17, 413 }, + [8] = { 56.1, 42.5, 17, 413 }, + [9] = { 55.3, 42.4, 17, 413 }, + [10] = { 55.6, 42.4, 17, 413 }, + [11] = { 55, 42.3, 17, 413 }, + [12] = { 55.9, 42, 17, 413 }, + [13] = { 55.4, 41.9, 17, 413 }, + [14] = { 55.6, 41.5, 17, 413 }, + [15] = { 48.1, 40.5, 17, 413 }, + [16] = { 46.5, 40.5, 17, 413 }, + [17] = { 45.9, 40.4, 17, 413 }, + [18] = { 46.9, 40.3, 17, 413 }, + [19] = { 47.7, 40.2, 17, 413 }, + [20] = { 48, 40, 17, 413 }, + [21] = { 46.4, 40, 17, 413 }, + [22] = { 47.4, 39.9, 17, 413 }, + [23] = { 46.8, 39.9, 17, 413 }, + [24] = { 48.1, 39.9, 17, 413 }, + [25] = { 47.1, 39.9, 17, 413 }, + [26] = { 46.2, 39.8, 17, 413 }, + [27] = { 46.6, 39.8, 17, 413 }, + [28] = { 47, 39.6, 17, 413 }, + [29] = { 46.8, 39.5, 17, 413 }, + [30] = { 47.6, 39.5, 17, 413 }, + [31] = { 45.9, 39.4, 17, 413 }, + [32] = { 46.4, 39.3, 17, 413 }, + [33] = { 46.2, 39.3, 17, 413 }, + [34] = { 45.8, 39.1, 17, 413 }, + [35] = { 46.5, 38.9, 17, 413 }, + [36] = { 46.1, 38.8, 17, 413 }, + [37] = { 46.2, 38.3, 17, 413 }, + }, + ["lvl"] = "15-16", + }, + [3462] = { + ["coords"] = {}, + ["lvl"] = "22-23", + }, + [3463] = { + ["coords"] = { + [1] = { 50.6, 60, 17, 413 }, + [2] = { 49.5, 58.6, 17, 413 }, + [3] = { 44.5, 57.2, 17, 413 }, + [4] = { 52.1, 56.9, 17, 413 }, + [5] = { 46.1, 56.7, 17, 413 }, + [6] = { 46.8, 56.7, 17, 413 }, + [7] = { 44.6, 56.5, 17, 413 }, + [8] = { 50, 56.4, 17, 413 }, + [9] = { 45.4, 56.2, 17, 413 }, + [10] = { 49.4, 56.1, 17, 413 }, + [11] = { 48.5, 56, 17, 413 }, + [12] = { 53.3, 55.7, 17, 413 }, + [13] = { 51.9, 55.6, 17, 413 }, + [14] = { 49.9, 55.2, 17, 413 }, + [15] = { 48.7, 54.8, 17, 413 }, + [16] = { 52.7, 54.6, 17, 413 }, + [17] = { 50.4, 54.5, 17, 413 }, + [18] = { 52, 53.5, 17, 413 }, + [19] = { 43.7, 53.4, 17, 413 }, + [20] = { 45.9, 53.2, 17, 413 }, + [21] = { 50.7, 53.1, 17, 413 }, + [22] = { 43.9, 52.7, 17, 413 }, + [23] = { 48.1, 51.2, 17, 413 }, + [24] = { 43.5, 50.9, 17, 413 }, + [25] = { 46.7, 50.8, 17, 413 }, + [26] = { 47.4, 50.7, 17, 413 }, + [27] = { 43.2, 50.4, 17, 413 }, + [28] = { 44.2, 49.9, 17, 413 }, + [29] = { 45.8, 49.3, 17, 413 }, + [30] = { 46.7, 49.2, 17, 413 }, + [31] = { 45.3, 48.8, 17, 413 }, + [32] = { 46, 47.9, 17, 413 }, + [33] = { 45.2, 47.4, 17, 413 }, + [34] = { 47.8, 47.2, 17, 413 }, + [35] = { 44.1, 46.8, 17, 413 }, + [36] = { 45.8, 46.3, 17, 413 }, + [37] = { 42.8, 46.1, 17, 413 }, + [38] = { 46.1, 45.9, 17, 413 }, + [39] = { 43.9, 45.8, 17, 413 }, + [40] = { 46.5, 45.2, 17, 413 }, + [41] = { 42.4, 45.2, 17, 413 }, + }, + ["lvl"] = "18-19", + }, + [3464] = { + ["coords"] = { + [1] = { 51.9, 30.3, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [3465] = { + ["coords"] = { + [1] = { 62, 55, 17, 413 }, + }, + ["fac"] = "AH", + ["lvl"] = "17", + }, + [3466] = { + ["coords"] = { + [1] = { 46.8, 70.5, 17, 413 }, + [2] = { 46.7, 69.3, 17, 413 }, + [3] = { 45.9, 68, 17, 413 }, + [4] = { 46.5, 67.5, 17, 413 }, + [5] = { 45, 67.1, 17, 413 }, + [6] = { 46.5, 65.6, 17, 413 }, + [7] = { 47.6, 65, 17, 413 }, + [8] = { 48, 64.8, 17, 413 }, + [9] = { 46.9, 64.6, 17, 413 }, + [10] = { 44.7, 64.6, 17, 413 }, + [11] = { 47.1, 64.1, 17, 413 }, + [12] = { 46.6, 63.5, 17, 413 }, + [13] = { 45.1, 63.2, 17, 413 }, + [14] = { 48.3, 62.8, 17, 413 }, + [15] = { 46.8, 62.7, 17, 413 }, + [16] = { 44.8, 62.7, 17, 413 }, + [17] = { 46.2, 62.5, 17, 413 }, + [18] = { 48.8, 62.3, 17, 413 }, + [19] = { 46.5, 62, 17, 413 }, + [20] = { 48.7, 61.7, 17, 413 }, + [21] = { 44.5, 61.6, 17, 413 }, + [22] = { 46, 61.4, 17, 413 }, + [23] = { 48.2, 61.4, 17, 413 }, + [24] = { 44.5, 61.3, 17, 413 }, + [25] = { 47.8, 61, 17, 413 }, + [26] = { 50, 60.9, 17, 413 }, + [27] = { 43.5, 60.7, 17, 413 }, + [28] = { 48.8, 60.2, 17, 413 }, + [29] = { 49.9, 60.1, 17, 413 }, + [30] = { 48.2, 59.3, 17, 413 }, + [31] = { 48.5, 59.1, 17, 413 }, + [32] = { 49.1, 58.2, 17, 413 }, + [33] = { 48.7, 57.7, 17, 413 }, + }, + ["lvl"] = "20-21", + }, + [3467] = { + ["coords"] = { + [1] = { 62.6, 49.7, 17, 413 }, + [2] = { 63.6, 49.1, 17, 413 }, + [3] = { 64.2, 47.1, 17, 413 }, + }, + ["lvl"] = "16", + }, + [3468] = { + ["coords"] = { + [1] = { 27.4, 48.4, 141, 300 }, + [2] = { 49, 6.9, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "62", + }, + [3469] = { + ["coords"] = { + [1] = { 31.2, 56.4, 141, 300 }, + [2] = { 67.2, 45.6, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "62", + }, + [3470] = { + ["coords"] = { + [1] = { 48, 19.2, 17, 5400 }, + }, + ["lvl"] = "15", + ["rnk"] = "4", + }, + [3471] = { + ["coords"] = { + [1] = { 52.8, 10.4, 17, 413 }, + }, + ["lvl"] = "16", + }, + [3472] = { + ["coords"] = { + [1] = { 43.2, 80.8, 17, 413 }, + [2] = { 47.4, 79.9, 17, 413 }, + [3] = { 44.8, 78.9, 17, 413 }, + [4] = { 44.8, 74.9, 17, 413 }, + }, + ["lvl"] = "25", + }, + [3473] = { + ["coords"] = { + [1] = { 45.8, 62.6, 17, 413 }, + [2] = { 44.1, 62.1, 17, 413 }, + [3] = { 49.4, 61.1, 17, 413 }, + [4] = { 49.4, 59.1, 17, 413 }, + }, + ["lvl"] = "24", + }, + [3474] = { + ["coords"] = { + [1] = { 50.1, 53.2, 17, 413 }, + [2] = { 45.1, 52.7, 17, 413 }, + [3] = { 47.5, 51.1, 17, 413 }, + [4] = { 46.1, 49.3, 17, 413 }, + }, + ["lvl"] = "22", + }, + [3475] = { + ["coords"] = { + [1] = { 56.1, 17.4, 17, 0 }, + }, + ["lvl"] = "16", + }, + [3476] = { + ["coords"] = { + [1] = { 63.5, 53.9, 17, 413 }, + }, + ["lvl"] = "27", + }, + [3477] = { + ["coords"] = { + [1] = { 51.1, 29, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "18", + }, + [3478] = { + ["coords"] = { + [1] = { 51.3, 28.9, 17, 275 }, + }, + ["fac"] = "H", + ["lvl"] = "31", + }, + [3479] = { + ["coords"] = { + [1] = { 51.2, 29.2, 17, 275 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [3480] = { + ["coords"] = { + [1] = { 52.4, 30.5, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "18", + }, + [3481] = { + ["coords"] = { + [1] = { 51.7, 29.9, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "14", + }, + [3482] = { + ["coords"] = { + [1] = { 51.7, 30, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "14", + }, + [3483] = { + ["coords"] = { + [1] = { 51.2, 29, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "21", + }, + [3484] = { + ["coords"] = { + [1] = { 52.2, 31.7, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [3485] = { + ["coords"] = { + [1] = { 52.2, 31.7, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "18", + }, + [3486] = { + ["coords"] = { + [1] = { 52.3, 31.9, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "19", + }, + [3487] = { + ["coords"] = { + [1] = { 52.3, 32, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "23", + }, + [3488] = { + ["coords"] = { + [1] = { 51.1, 29.1, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "16", + }, + [3489] = { + ["coords"] = { + [1] = { 52.6, 29.8, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "16", + }, + [3490] = { + ["coords"] = { + [1] = { 51.4, 30.2, 17, 275 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3491] = { + ["coords"] = { + [1] = { 62.2, 37.5, 17, 413 }, + }, + ["lvl"] = "23", + }, + [3492] = { + ["coords"] = { + [1] = { 62.2, 38.5, 17, 413 }, + }, + ["lvl"] = "24", + }, + [3493] = { + ["coords"] = { + [1] = { 62.2, 38.4, 17, 413 }, + }, + ["lvl"] = "25", + }, + [3494] = { + ["coords"] = { + [1] = { 62.7, 36.3, 17, 413 }, + }, + ["lvl"] = "25", + }, + [3495] = { + ["coords"] = { + [1] = { 62.6, 36.3, 17, 413 }, + }, + ["lvl"] = "20", + }, + [3496] = { + ["coords"] = { + [1] = { 62.6, 37.4, 17, 275 }, + }, + ["lvl"] = "45", + }, + [3497] = { + ["coords"] = { + [1] = { 62.8, 38.2, 17, 413 }, + }, + ["lvl"] = "24", + }, + [3498] = { + ["coords"] = { + [1] = { 61.9, 38.8, 17, 413 }, + }, + ["lvl"] = "22", + }, + [3499] = { + ["coords"] = { + [1] = { 61.9, 38.7, 17, 413 }, + }, + ["lvl"] = "22", + }, + [3500] = { + ["coords"] = { + [1] = { 74.6, 44.9, 357, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "52", + }, + [3501] = { + ["coords"] = { + [1] = { 46.2, 60.1, 17, 275 }, + [2] = { 44.7, 59.1, 17, 275 }, + [3] = { 45.5, 59.1, 17, 275 }, + [4] = { 45, 59.1, 17, 275 }, + [5] = { 44.5, 59, 17, 275 }, + [6] = { 45.2, 58.7, 17, 275 }, + [7] = { 46.1, 58.6, 17, 275 }, + [8] = { 45.4, 58.6, 17, 275 }, + [9] = { 44.5, 58.5, 17, 275 }, + [10] = { 44.9, 58.3, 17, 275 }, + [11] = { 45.1, 58.2, 17, 275 }, + [12] = { 45.7, 58.2, 17, 275 }, + [13] = { 45.4, 57.9, 17, 275 }, + [14] = { 44.9, 57.2, 17, 275 }, + [15] = { 50.6, 40.7, 17, 275 }, + [16] = { 57.9, 33.3, 17, 275 }, + [17] = { 57.2, 33.3, 17, 275 }, + [18] = { 57.9, 33.1, 17, 275 }, + [19] = { 52.2, 32.3, 17, 275 }, + [20] = { 52, 32.2, 17, 275 }, + [21] = { 57, 31.6, 17, 275 }, + [22] = { 51.6, 31.6, 17, 275 }, + [23] = { 51.5, 31.1, 17, 275 }, + [24] = { 52.5, 31.1, 17, 275 }, + [25] = { 51.3, 30.9, 17, 275 }, + [26] = { 52.6, 30.8, 17, 275 }, + [27] = { 52, 30.7, 17, 275 }, + [28] = { 51.9, 30.7, 17, 275 }, + [29] = { 51.7, 30.2, 17, 275 }, + [30] = { 52.4, 29.3, 17, 275 }, + [31] = { 52.3, 29.2, 17, 275 }, + [32] = { 50.7, 29.2, 17, 275 }, + [33] = { 50.7, 28.9, 17, 275 }, + [34] = { 51.7, 24.4, 17, 275 }, + [35] = { 51.8, 24.4, 17, 275 }, + [36] = { 52.4, 23.3, 17, 275 }, + [37] = { 52.5, 23, 17, 275 }, + [38] = { 62.3, 20.7, 17, 275 }, + [39] = { 61.9, 20.3, 17, 275 }, + [40] = { 62.2, 20, 17, 275 }, + [41] = { 62.4, 19.7, 17, 275 }, + [42] = { 61.6, 19.6, 17, 275 }, + [43] = { 62, 19.5, 17, 275 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [3502] = { + ["coords"] = { + [1] = { 62.4, 39.5, 17, 275 }, + [2] = { 63.6, 38.7, 17, 275 }, + [3] = { 63.7, 38.5, 17, 275 }, + [4] = { 61.2, 38.4, 17, 275 }, + [5] = { 61.1, 37.4, 17, 275 }, + [6] = { 61.7, 36.9, 17, 275 }, + [7] = { 63.3, 36.4, 17, 275 }, + [8] = { 62.9, 36, 17, 275 }, + }, + ["lvl"] = "57", + }, + [3503] = { + ["coords"] = { + [1] = { 45.5, 72.5, 17, 413 }, + }, + ["lvl"] = "18-19", + }, + [3504] = { + ["coords"] = { + [1] = { 47.6, 64.3, 1519, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [3505] = { + ["coords"] = { + [1] = { 48.4, 34.3, 1519, 43200 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [3507] = { + ["coords"] = { + [1] = { 48.4, 34.3, 1519, 43200 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [3508] = { + ["coords"] = { + [1] = { 48.4, 34.3, 1519, 43200 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [3509] = { + ["coords"] = { + [1] = { 48.4, 34.3, 1519, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [3510] = { + ["coords"] = { + [1] = { 48.4, 34.3, 1519, 43200 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [3511] = { + ["coords"] = { + [1] = { 48.4, 34.3, 1519, 43200 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [3512] = { + ["coords"] = { + [1] = { 48.4, 34.3, 1519, 43200 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [3513] = { + ["coords"] = { + [1] = { 48.4, 34.3, 1519, 43200 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [3514] = { + ["coords"] = { + [1] = { 59.1, 39.4, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [3515] = { + ["coords"] = { + [1] = { 56.1, 61.7, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [3516] = { + ["coords"] = { + [1] = { 24.4, 48.9, 141, 86400 }, + [2] = { 34.8, 9.3, 1657, 86400 }, + }, + ["fac"] = "A", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [3517] = { + ["coords"] = { + [1] = { 25.1, 51.4, 141, 300 }, + [2] = { 38.2, 21.6, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "17", + }, + [3518] = { + ["coords"] = { + [1] = { 62.3, 61.7, 1519, 525 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [3519] = { + ["coords"] = { + [1] = { 38.3, 34.4, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [3520] = { + ["coords"] = { + [1] = { 52.4, 42.1, 1519, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "2", + }, + [3521] = { + ["coords"] = { + [1] = { 62.3, 20.1, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "22", + }, + [3522] = { + ["coords"] = { + [1] = { 52.6, 55.8, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "11", + }, + [3523] = { + ["coords"] = { + [1] = { 52.6, 55.5, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "24", + }, + [3524] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [3525] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "50", + }, + [3527] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "21", + }, + [3528] = { + ["coords"] = { + [1] = { 46.4, 71.9, 130, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "14-15", + ["rnk"] = "1", + }, + [3529] = { + ["coords"] = {}, + ["lvl"] = "14-15", + ["rnk"] = "1", + }, + [3530] = { + ["coords"] = { + [1] = { 45.7, 71.3, 130, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "14-15", + ["rnk"] = "1", + }, + [3531] = { + ["coords"] = {}, + ["lvl"] = "14-15", + ["rnk"] = "1", + }, + [3532] = { + ["coords"] = { + [1] = { 44, 74.1, 130, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "14-15", + ["rnk"] = "1", + }, + [3533] = { + ["coords"] = {}, + ["lvl"] = "14-15", + ["rnk"] = "1", + }, + [3534] = { + ["coords"] = { + [1] = { 46.5, 86.5, 130, 413 }, + }, + ["fac"] = "AH", + ["lvl"] = "19", + }, + [3535] = { + ["coords"] = { + [1] = { 44, 30.2, 141, 5400 }, + }, + ["lvl"] = "13", + ["rnk"] = "4", + }, + [3536] = { + ["coords"] = { + [1] = { 80.1, 38.9, 267, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "32", + }, + [3537] = { + ["coords"] = { + [1] = { 53.6, 98.7, 36, 300 }, + [2] = { 55.7, 34.8, 267, 300 }, + }, + ["lvl"] = "32", + }, + [3538] = { + ["coords"] = { + [1] = { 53.6, 98.7, 36, 600 }, + [2] = { 55.7, 34.8, 267, 600 }, + }, + ["lvl"] = "32", + }, + [3539] = { + ["coords"] = { + [1] = { 58.9, 88.8, 36, 300 }, + [2] = { 60.4, 26.2, 267, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "32", + }, + [3540] = { + ["coords"] = { + [1] = { 49.9, 62.4, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [3541] = { + ["coords"] = { + [1] = { 49.1, 55.1, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [3542] = { + ["coords"] = { + [1] = { 50.8, 59, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [3543] = { + ["coords"] = { + [1] = { 51.2, 57, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [3544] = { + ["coords"] = { + [1] = { 59, 81.3, 36, 300 }, + [2] = { 60.5, 19.5, 267, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [3545] = { + ["coords"] = { + [1] = { 82.2, 62.8, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [3546] = { + ["coords"] = { + [1] = { 63.5, 17, 4, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [3547] = { + ["coords"] = { + [1] = { 59.5, 51.6, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "10", + }, + [3548] = { + ["coords"] = { + [1] = { 61.8, 50, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "12", + }, + [3549] = { + ["coords"] = { + [1] = { 65.4, 60.1, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [3550] = { + ["coords"] = { + [1] = { 65.9, 59.6, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "15", + }, + [3551] = { + ["coords"] = { + [1] = { 42.9, 41.8, 130, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [3552] = { + ["coords"] = { + [1] = { 44.6, 39.1, 130, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "18", + }, + [3553] = { + ["coords"] = { + [1] = { 43.3, 41.3, 130, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "18", + }, + [3554] = { + ["coords"] = { + [1] = { 44.8, 39.2, 130, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "18-20", + }, + [3555] = { + ["coords"] = { + [1] = { 43.4, 40.5, 130, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "19", + }, + [3556] = { + ["coords"] = { + [1] = { 43.2, 40.7, 130, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "18-20", + }, + [3557] = { + ["coords"] = { + [1] = { 43.2, 41.1, 130, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "28", + }, + [3558] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "20", + }, + [3559] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "20", + }, + [3560] = { + ["coords"] = {}, + ["lvl"] = "37", + }, + [3561] = { + ["coords"] = { + [1] = { 24, 51, 141, 300 }, + [2] = { 32.5, 19.7, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [3562] = { + ["coords"] = { + [1] = { 24.4, 62.9, 141, 300 }, + [2] = { 34.7, 76.8, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [3564] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "20", + }, + [3565] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "20", + }, + [3566] = { + ["coords"] = { + [1] = { 37.5, 57.5, 17, 375 }, + [2] = { 35.4, 43, 17, 375 }, + [3] = { 34.7, 42.9, 17, 375 }, + [4] = { 36, 42.4, 17, 375 }, + [5] = { 36.9, 40.5, 17, 375 }, + [6] = { 34.6, 40.4, 17, 375 }, + [7] = { 37.1, 40.3, 17, 375 }, + [8] = { 35.9, 39.9, 17, 375 }, + [9] = { 37.3, 39.8, 17, 375 }, + [10] = { 34.6, 37.6, 17, 375 }, + [11] = { 35, 37.5, 17, 375 }, + [12] = { 34.3, 37.4, 17, 375 }, + [13] = { 33.7, 37.2, 17, 375 }, + [14] = { 34.5, 37, 17, 375 }, + [15] = { 33.3, 36.4, 17, 375 }, + [16] = { 32.7, 36, 17, 375 }, + [17] = { 32.8, 34.2, 17, 375 }, + [18] = { 31.6, 34, 17, 375 }, + [19] = { 32.3, 34, 17, 375 }, + [20] = { 32, 34, 17, 375 }, + [21] = { 32.9, 33.6, 17, 375 }, + [22] = { 32.4, 33.5, 17, 375 }, + [23] = { 32.8, 32.6, 17, 375 }, + [24] = { 32.4, 32.3, 17, 375 }, + [25] = { 62.8, 58.4, 215, 375 }, + [26] = { 56.3, 34.4, 215, 375 }, + [27] = { 55.3, 34.2, 215, 375 }, + [28] = { 45, 33.4, 215, 375 }, + [29] = { 55, 32.5, 215, 375 }, + [30] = { 58.6, 29.8, 215, 375 }, + [31] = { 57.2, 29.6, 215, 375 }, + [32] = { 47.8, 28.8, 215, 375 }, + [33] = { 59.9, 28.6, 215, 375 }, + [34] = { 51.2, 28.4, 215, 375 }, + [35] = { 46.3, 27.8, 215, 375 }, + [36] = { 46.1, 27.5, 215, 375 }, + [37] = { 56.4, 26.3, 215, 375 }, + [38] = { 44.2, 26.1, 215, 375 }, + [39] = { 52.5, 25.7, 215, 375 }, + [40] = { 48.3, 25.7, 215, 375 }, + [41] = { 53.3, 25.5, 215, 375 }, + [42] = { 51.9, 25.2, 215, 375 }, + [43] = { 47.3, 25.1, 215, 375 }, + [44] = { 54.5, 24.8, 215, 375 }, + [45] = { 61.6, 24.8, 215, 375 }, + [46] = { 57, 24.7, 215, 375 }, + [47] = { 55.7, 24.7, 215, 375 }, + [48] = { 62.1, 24.4, 215, 375 }, + [49] = { 42.8, 24.4, 215, 375 }, + [50] = { 51, 24.3, 215, 375 }, + [51] = { 52.8, 23.9, 215, 375 }, + [52] = { 55.9, 23.8, 215, 375 }, + [53] = { 59.7, 23.6, 215, 375 }, + [54] = { 62.3, 23.5, 215, 375 }, + [55] = { 55.3, 23.1, 215, 375 }, + [56] = { 56.3, 23, 215, 375 }, + [57] = { 50.7, 22.5, 215, 375 }, + [58] = { 55, 22.4, 215, 375 }, + [59] = { 52.5, 22.3, 215, 375 }, + [60] = { 56.3, 21.9, 215, 375 }, + [61] = { 53.4, 21.7, 215, 375 }, + [62] = { 53.8, 21.7, 215, 375 }, + [63] = { 55.8, 21.3, 215, 375 }, + [64] = { 53.7, 20.6, 215, 375 }, + [65] = { 51.6, 20.4, 215, 375 }, + [66] = { 48.5, 20.3, 215, 375 }, + [67] = { 46.7, 19.9, 215, 375 }, + [68] = { 42.2, 19.8, 215, 375 }, + [69] = { 54.3, 19.5, 215, 375 }, + [70] = { 42.7, 19.2, 215, 375 }, + [71] = { 57.1, 19.2, 215, 375 }, + [72] = { 53.9, 19, 215, 375 }, + [73] = { 32.3, 19, 215, 375 }, + [74] = { 44.2, 19, 215, 375 }, + [75] = { 57.8, 18.9, 215, 375 }, + [76] = { 56.4, 18.7, 215, 375 }, + [77] = { 43.3, 18.6, 215, 375 }, + [78] = { 48.7, 18.6, 215, 375 }, + [79] = { 55.3, 18.4, 215, 375 }, + [80] = { 43.3, 18.4, 215, 375 }, + [81] = { 49.8, 18.1, 215, 375 }, + [82] = { 37.7, 18, 215, 375 }, + [83] = { 56.9, 17.9, 215, 375 }, + [84] = { 52, 17.6, 215, 375 }, + [85] = { 46.3, 17.5, 215, 375 }, + [86] = { 43.4, 17.4, 215, 375 }, + [87] = { 42, 17.3, 215, 375 }, + [88] = { 37.4, 16.9, 215, 375 }, + [89] = { 48, 16.9, 215, 375 }, + [90] = { 54.4, 16.9, 215, 375 }, + [91] = { 45, 16.8, 215, 375 }, + [92] = { 35.4, 16.2, 215, 375 }, + [93] = { 53.4, 16, 215, 375 }, + [94] = { 44.7, 15.8, 215, 375 }, + [95] = { 50.6, 15.8, 215, 375 }, + [96] = { 44.1, 15.7, 215, 375 }, + [97] = { 38.1, 15.6, 215, 375 }, + [98] = { 47.9, 15.3, 215, 375 }, + [99] = { 44.6, 15.1, 215, 375 }, + [100] = { 44.7, 13.9, 215, 375 }, + [101] = { 48.5, 13.7, 215, 375 }, + [102] = { 45.2, 13.7, 215, 375 }, + [103] = { 47.6, 13, 215, 375 }, + [104] = { 50.3, 13, 215, 375 }, + [105] = { 48.9, 12.8, 215, 375 }, + [106] = { 44.4, 12.4, 215, 375 }, + [107] = { 53.4, 12.4, 215, 375 }, + [108] = { 51.1, 12.1, 215, 375 }, + [109] = { 45.4, 12, 215, 375 }, + [110] = { 52.5, 12, 215, 375 }, + [111] = { 51.9, 12, 215, 375 }, + [112] = { 37.6, 12, 215, 375 }, + [113] = { 46.5, 11.8, 215, 375 }, + [114] = { 48.9, 11.5, 215, 375 }, + [115] = { 43.8, 11.3, 215, 375 }, + [116] = { 53.7, 11.3, 215, 375 }, + [117] = { 44.3, 11.2, 215, 375 }, + [118] = { 42.6, 11.1, 215, 375 }, + [119] = { 39.8, 11.1, 215, 375 }, + [120] = { 52.8, 11, 215, 375 }, + [121] = { 44.2, 11, 215, 375 }, + [122] = { 49.1, 10.1, 215, 375 }, + [123] = { 41.6, 9.8, 215, 375 }, + [124] = { 38.8, 9.2, 215, 375 }, + [125] = { 53.4, 9.2, 215, 375 }, + [126] = { 48.8, 8.9, 215, 375 }, + [127] = { 52.8, 8.7, 215, 375 }, + [128] = { 44.5, 8.7, 215, 375 }, + [129] = { 47.4, 8.6, 215, 375 }, + [130] = { 42.5, 7.3, 215, 375 }, + [131] = { 85.5, 45.9, 405, 375 }, + [132] = { 89, 42.7, 405, 375 }, + [133] = { 64.2, 37, 1638, 375 }, + }, + ["lvl"] = "9", + }, + [3567] = { + ["coords"] = { + [1] = { 55.6, 56.9, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "11", + }, + [3568] = { + ["coords"] = { + [1] = { 31.5, 31.6, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [3569] = { + ["coords"] = {}, + ["lvl"] = "5", + }, + [3570] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "7", + }, + [3571] = { + ["coords"] = { + [1] = { 56.2, 62, 141, 300 }, + [2] = { 56.6, 60.8, 141, 300 }, + [3] = { 55.8, 58.7, 141, 300 }, + [4] = { 56.1, 58.6, 141, 300 }, + [5] = { 55.8, 57.5, 141, 300 }, + [6] = { 55.5, 57.2, 141, 300 }, + [7] = { 55.6, 56.7, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [3572] = { + ["coords"] = { + [1] = { 62, 39.1, 17, 413 }, + }, + ["lvl"] = "22", + }, + [3573] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "26", + }, + [3574] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "29", + }, + [3575] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "0", + ["rnk"] = "1", + }, + [3577] = { + ["coords"] = { + [1] = { 62.6, 65.1, 130, 413 }, + [2] = { 7.7, 26, 267, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "15-16", + }, + [3578] = { + ["coords"] = { + [1] = { 62.5, 62.7, 130, 413 }, + [2] = { 7.6, 22.9, 267, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "15-16", + }, + [3579] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "8", + }, + [3580] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [3581] = { + ["coords"] = { + [1] = { 49.8, 69.8, 1519, 7286 }, + [2] = { 32.4, 62.5, 1519, 7286 }, + [3] = { 66.9, 57.3, 1519, 7286 }, + [4] = { 35.5, 45.4, 1519, 7286 }, + [5] = { 66.4, 31.8, 1519, 7286 }, + [6] = { 49.9, 22.2, 1519, 7286 }, + }, + ["lvl"] = "50", + ["rnk"] = "4", + }, + [3582] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [3583] = { + ["coords"] = { + [1] = { 37.3, 43.6, 148, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "14", + }, + [3584] = { + ["coords"] = { + [1] = { 38.7, 87.3, 148, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "17", + }, + [3585] = { + ["coords"] = { + [1] = { 22.6, 51.9, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "17", + }, + [3586] = { + ["coords"] = {}, + ["lvl"] = "19", + ["rnk"] = "2", + }, + [3587] = { + ["coords"] = { + [1] = { 59.5, 40.9, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "9", + }, + [3588] = { + ["coords"] = { + [1] = { 58.7, 39.7, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "8", + }, + [3589] = { + ["coords"] = { + [1] = { 59.3, 41.1, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [3590] = { + ["coords"] = { + [1] = { 59.5, 41, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "9", + }, + [3591] = { + ["coords"] = { + [1] = { 59, 39.6, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "9", + }, + [3592] = { + ["coords"] = { + [1] = { 58.7, 39.8, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [3593] = { + ["coords"] = { + [1] = { 59.6, 38.4, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "11", + }, + [3594] = { + ["coords"] = { + [1] = { 59.6, 38.7, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "11", + }, + [3595] = { + ["coords"] = { + [1] = { 59.2, 40.4, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [3596] = { + ["coords"] = { + [1] = { 58.7, 40.4, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [3597] = { + ["coords"] = { + [1] = { 58.6, 40.3, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "11", + }, + [3598] = { + ["coords"] = { + [1] = { 56.2, 59.2, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "19", + }, + [3599] = { + ["coords"] = { + [1] = { 56.4, 60.1, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [3600] = { + ["coords"] = { + [1] = { 55.6, 56.7, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "21", + }, + [3601] = { + ["coords"] = { + [1] = { 56.7, 59.5, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [3602] = { + ["coords"] = { + [1] = { 55.9, 61.6, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "22", + }, + [3603] = { + ["coords"] = { + [1] = { 57.6, 60.8, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "28", + }, + [3604] = { + ["coords"] = { + [1] = { 57.7, 60.6, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "17", + }, + [3605] = { + ["coords"] = { + [1] = { 41.9, 49.4, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [3606] = { + ["coords"] = { + [1] = { 36.7, 34.2, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "29", + }, + [3607] = { + ["coords"] = { + [1] = { 55.9, 93.5, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "37", + }, + [3608] = { + ["coords"] = { + [1] = { 55.5, 57.1, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "17", + }, + [3609] = { + ["coords"] = { + [1] = { 56.3, 59.5, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "18", + }, + [3610] = { + ["coords"] = { + [1] = { 55.9, 59.2, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "19", + }, + [3611] = { + ["coords"] = { + [1] = { 56.1, 60.3, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "16", + }, + [3612] = { + ["coords"] = { + [1] = { 56.3, 59.6, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [3613] = { + ["coords"] = { + [1] = { 56.3, 59.4, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "19", + }, + [3614] = { + ["coords"] = { + [1] = { 55.3, 57.2, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "16", + }, + [3615] = { + ["coords"] = { + [1] = { 51.5, 30.3, 17, 600 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [3616] = { + ["coords"] = { + [1] = { 43.6, 76.3, 148, 275 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [3617] = { + ["coords"] = { + [1] = { 60.7, 68.8, 85, 360 }, + [2] = { 61.6, 68.3, 85, 360 }, + [3] = { 62.1, 68.2, 85, 360 }, + [4] = { 62.4, 68.1, 85, 360 }, + [5] = { 61.5, 67.7, 85, 360 }, + [6] = { 62.8, 67.5, 85, 360 }, + [7] = { 60.8, 67.5, 85, 360 }, + [8] = { 62.2, 67.4, 85, 360 }, + [9] = { 61.3, 66.8, 85, 360 }, + [10] = { 61.5, 66.8, 85, 360 }, + [11] = { 62.4, 66.7, 85, 360 }, + [12] = { 61.6, 66.5, 85, 360 }, + [13] = { 62.1, 66.5, 85, 360 }, + [14] = { 61, 17.7, 1497, 360 }, + [15] = { 65.1, 15.2, 1497, 360 }, + [16] = { 67.1, 14.7, 1497, 360 }, + [17] = { 68.9, 14.1, 1497, 360 }, + [18] = { 64.5, 12.5, 1497, 360 }, + [19] = { 70.7, 11.7, 1497, 360 }, + [20] = { 61.1, 11.5, 1497, 360 }, + [21] = { 67.7, 11.3, 1497, 360 }, + [22] = { 63.5, 8.5, 1497, 360 }, + [23] = { 64.6, 8.5, 1497, 360 }, + [24] = { 68.9, 7.7, 1497, 360 }, + [25] = { 65, 7, 1497, 360 }, + [26] = { 67.3, 6.9, 1497, 360 }, + }, + ["lvl"] = "15", + }, + [3619] = { + ["coords"] = {}, + ["lvl"] = "19-20", + }, + [3620] = { + ["coords"] = { + [1] = { 52, 43.5, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [3621] = { + ["coords"] = { + [1] = { 21.8, 52.1, 16, 333 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [3622] = { + ["coords"] = { + [1] = { 47.4, 52.9, 8, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [3623] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "10", + }, + [3624] = { + ["coords"] = { + [1] = { 31.1, 28.9, 33, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [3625] = { + ["coords"] = { + [1] = { 49.9, 82.1, 2597, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [3626] = { + ["coords"] = { + [1] = { 67.4, 41, 1519, 555 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [3627] = { + ["coords"] = { + [1] = { 37.7, 84.3, 1519, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [3628] = { + ["coords"] = { + [1] = { 41.4, 89.8, 1519, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [3629] = { + ["coords"] = { + [1] = { 74.5, 37, 1519, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [3630] = { + ["coords"] = { + [1] = { 46.1, 35.3, 17, 275 }, + [2] = { 46.1, 34.6, 17, 275 }, + [3] = { 46.4, 34.2, 17, 275 }, + [4] = { 45.9, 33.5, 17, 275 }, + }, + ["lvl"] = "15-16", + ["rnk"] = "1", + }, + [3631] = { + ["coords"] = { + [1] = { 48.1, 34.5, 17, 275 }, + [2] = { 48.2, 34.4, 17, 275 }, + [3] = { 49.1, 33.9, 17, 275 }, + [4] = { 47.4, 33.6, 17, 275 }, + [5] = { 49.4, 33.2, 17, 275 }, + [6] = { 47.2, 32.8, 17, 275 }, + [7] = { 48.2, 32.1, 17, 275 }, + }, + ["lvl"] = "16-17", + ["rnk"] = "1", + }, + [3632] = { + ["coords"] = { + [1] = { 45.9, 35.6, 17, 275 }, + [2] = { 46.2, 35.3, 17, 275 }, + [3] = { 46.3, 35.1, 17, 275 }, + [4] = { 46.2, 34.8, 17, 275 }, + [5] = { 46.6, 34.8, 17, 275 }, + [6] = { 46.2, 34.3, 17, 275 }, + [7] = { 46.6, 34.2, 17, 275 }, + [8] = { 45.8, 34.1, 17, 275 }, + [9] = { 45.9, 33.5, 17, 275 }, + [10] = { 45.9, 33, 17, 275 }, + [11] = { 46.3, 32.5, 17, 275 }, + [12] = { 46.1, 32.5, 17, 275 }, + }, + ["lvl"] = "15-16", + ["rnk"] = "1", + }, + [3633] = { + ["coords"] = { + [1] = { 48.3, 34.3, 17, 275 }, + [2] = { 47.5, 34.1, 17, 275 }, + [3] = { 49, 34, 17, 275 }, + [4] = { 47.4, 33.4, 17, 275 }, + [5] = { 49.2, 33.3, 17, 275 }, + [6] = { 47.6, 32.8, 17, 275 }, + [7] = { 47.4, 32.8, 17, 275 }, + [8] = { 49.2, 32.7, 17, 275 }, + [9] = { 47.9, 32.6, 17, 275 }, + [10] = { 48.8, 32.6, 17, 275 }, + [11] = { 47.6, 32.4, 17, 275 }, + [12] = { 48.4, 32.3, 17, 275 }, + [13] = { 48, 32.1, 17, 275 }, + [14] = { 48.8, 32, 17, 275 }, + }, + ["lvl"] = "16-17", + ["rnk"] = "1", + }, + [3634] = { + ["coords"] = { + [1] = { 46.5, 35, 17, 275 }, + [2] = { 48.1, 34, 17, 275 }, + [3] = { 45.6, 33.8, 17, 275 }, + [4] = { 47.9, 32.1, 17, 275 }, + }, + ["lvl"] = "15-17", + ["rnk"] = "1", + }, + [3636] = { + ["coords"] = {}, + ["lvl"] = "18-19", + ["rnk"] = "1", + }, + [3637] = { + ["coords"] = {}, + ["lvl"] = "18-19", + ["rnk"] = "1", + }, + [3638] = { + ["coords"] = { + [1] = { 47.5, 34.3, 17, 275 }, + [2] = { 47.9, 34, 17, 275 }, + [3] = { 46.1, 33.9, 17, 275 }, + [4] = { 49.3, 33.8, 17, 275 }, + [5] = { 49.1, 33.4, 17, 275 }, + [6] = { 45.9, 33.4, 17, 275 }, + [7] = { 47.6, 33.1, 17, 275 }, + [8] = { 47.6, 32.6, 17, 275 }, + [9] = { 48.3, 32.2, 17, 275 }, + [10] = { 48.7, 32.1, 17, 275 }, + }, + ["lvl"] = "16-17", + ["rnk"] = "1", + }, + [3639] = { + ["coords"] = { + [1] = { 40.3, 59.7, 148, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [3640] = { + ["coords"] = {}, + ["lvl"] = "17-18", + ["rnk"] = "1", + }, + [3641] = { + ["coords"] = { + [1] = { 48, 33.6, 17, 275 }, + [2] = { 48.3, 33.5, 17, 275 }, + [3] = { 48.5, 33.4, 17, 275 }, + [4] = { 47.9, 33.4, 17, 275 }, + [5] = { 48.4, 33.1, 17, 275 }, + [6] = { 48.1, 33.1, 17, 275 }, + [7] = { 46.7, 32.5, 17, 275 }, + [8] = { 46.7, 32.4, 17, 275 }, + }, + ["lvl"] = "16-17", + ["rnk"] = "1", + }, + [3642] = { + ["coords"] = {}, + ["lvl"] = "18-19", + ["rnk"] = "1", + }, + [3644] = { + ["coords"] = { + [1] = { 35.7, 43.7, 148, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [3649] = { + ["coords"] = { + [1] = { 37.4, 40.1, 148, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [3650] = { + ["coords"] = { + [1] = { 44.2, 36.3, 148, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [3651] = { + ["coords"] = {}, + ["lvl"] = "16", + ["rnk"] = "2", + }, + [3652] = { + ["coords"] = { + [1] = { 48.1, 33.3, 17, 172800 }, + }, + ["lvl"] = "19", + ["rnk"] = "2", + }, + [3653] = { + ["coords"] = {}, + ["lvl"] = "20", + ["rnk"] = "1", + }, + [3654] = { + ["coords"] = {}, + ["lvl"] = "22", + ["rnk"] = "1", + }, + [3655] = { + ["coords"] = { + [1] = { 45.7, 33.6, 17, 275 }, + }, + ["lvl"] = "18", + ["rnk"] = "1", + }, + [3657] = { + ["coords"] = { + [1] = { 39, 43.6, 148, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [3658] = { + ["coords"] = { + [1] = { 61.8, 38.3, 17, 413 }, + }, + ["lvl"] = "19", + }, + [3659] = { + ["coords"] = { + [1] = { 61.7, 38.2, 17, 275 }, + }, + ["lvl"] = "37", + }, + [3660] = { + ["coords"] = { + [1] = { 56, 26.3, 148, 275 }, + }, + ["lvl"] = "31", + }, + [3661] = { + ["coords"] = { + [1] = { 55, 24.9, 148, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [3662] = { + ["coords"] = { + [1] = { 56.8, 27.5, 148, 413 }, + }, + ["lvl"] = "17", + }, + [3663] = { + ["coords"] = { + [1] = { 26.2, 38.7, 331, 10 }, + }, + ["fac"] = "A", + ["lvl"] = "19", + }, + [3664] = { + ["coords"] = { + [1] = { 25.3, 60.7, 331, 300 }, + [2] = { 61.5, 17.7, 406, 300 }, + }, + ["lvl"] = "24", + }, + [3665] = { + ["coords"] = { + [1] = { 63.1, 37.6, 17, 413 }, + }, + ["lvl"] = "18", + }, + [3666] = { + ["coords"] = { + [1] = { 37, 44.1, 148, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [3667] = { + ["coords"] = { + [1] = { 41.8, 60.7, 148, 413 }, + }, + ["lvl"] = "16", + }, + [3668] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "20", + }, + [3669] = { + ["coords"] = {}, + ["lvl"] = "20", + ["rnk"] = "1", + }, + [3670] = { + ["coords"] = {}, + ["lvl"] = "21", + ["rnk"] = "1", + }, + [3671] = { + ["coords"] = {}, + ["lvl"] = "20", + ["rnk"] = "1", + }, + [3672] = { + ["coords"] = { + [1] = { 49.1, 33.9, 17, 54000 }, + }, + ["lvl"] = "20", + ["rnk"] = "2", + }, + [3673] = { + ["coords"] = {}, + ["lvl"] = "21", + ["rnk"] = "1", + }, + [3674] = { + ["coords"] = {}, + ["lvl"] = "21", + ["rnk"] = "1", + }, + [3678] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "20", + ["rnk"] = "1", + }, + [3679] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "25", + }, + [3680] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [3681] = { + ["coords"] = { + [1] = { 25.3, 65.8, 141, 300 }, + [2] = { 23.1, 65.6, 141, 300 }, + [3] = { 28.1, 65, 141, 300 }, + [4] = { 24.9, 64.6, 141, 300 }, + [5] = { 29.3, 64.3, 141, 300 }, + [6] = { 26.3, 64.1, 141, 300 }, + [7] = { 31.1, 62.2, 141, 300 }, + [8] = { 29.2, 61.1, 141, 300 }, + [9] = { 24.5, 59.3, 141, 300 }, + [10] = { 32.9, 58.4, 141, 300 }, + [11] = { 29.7, 58.4, 141, 300 }, + [12] = { 24.3, 58, 141, 300 }, + [13] = { 26.9, 57.3, 141, 300 }, + [14] = { 31.5, 57.1, 141, 300 }, + [15] = { 32.6, 56.5, 141, 300 }, + [16] = { 34.4, 56.1, 141, 300 }, + [17] = { 25.7, 55.8, 141, 300 }, + [18] = { 23.7, 54.9, 141, 300 }, + [19] = { 25.5, 54.6, 141, 300 }, + [20] = { 31.4, 54.5, 141, 300 }, + [21] = { 32.9, 54.4, 141, 300 }, + [22] = { 31.4, 54.3, 141, 300 }, + [23] = { 22.5, 52.8, 141, 300 }, + [24] = { 29.5, 51.4, 141, 300 }, + [25] = { 26.7, 51.2, 141, 300 }, + [26] = { 23, 51, 141, 300 }, + [27] = { 26, 50.8, 141, 300 }, + [28] = { 23.1, 50.4, 141, 300 }, + [29] = { 28.2, 50.1, 141, 300 }, + [30] = { 32.2, 50.1, 141, 300 }, + [31] = { 30.8, 49.7, 141, 300 }, + [32] = { 28.2, 48.5, 141, 300 }, + [33] = { 26.6, 47.8, 141, 300 }, + [34] = { 23.2, 47.2, 141, 300 }, + [35] = { 24.3, 46.5, 141, 300 }, + [36] = { 28, 45.7, 141, 300 }, + [37] = { 26.4, 45.3, 141, 300 }, + [38] = { 25.2, 45.3, 141, 300 }, + [39] = { 39, 90.9, 1657, 300 }, + [40] = { 28.4, 89.6, 1657, 300 }, + [41] = { 52.6, 87.1, 1657, 300 }, + [42] = { 37.1, 84.8, 1657, 300 }, + [43] = { 58, 83.7, 1657, 300 }, + [44] = { 43.5, 82.6, 1657, 300 }, + [45] = { 66.7, 73.4, 1657, 300 }, + [46] = { 57.5, 68.3, 1657, 300 }, + [47] = { 35, 59.4, 1657, 300 }, + [48] = { 75.6, 55.2, 1657, 300 }, + [49] = { 60.3, 55, 1657, 300 }, + [50] = { 34, 53.2, 1657, 300 }, + [51] = { 46.7, 50.1, 1657, 300 }, + [52] = { 68.7, 48.9, 1657, 300 }, + [53] = { 73.8, 46, 1657, 300 }, + [54] = { 82.5, 43.8, 1657, 300 }, + [55] = { 40.6, 42.7, 1657, 300 }, + [56] = { 31.1, 38.4, 1657, 300 }, + [57] = { 39.8, 36.7, 1657, 300 }, + [58] = { 68.4, 36.2, 1657, 300 }, + [59] = { 75.4, 36.1, 1657, 300 }, + [60] = { 68.2, 35.6, 1657, 300 }, + [61] = { 25.3, 28.2, 1657, 300 }, + [62] = { 59.2, 21.4, 1657, 300 }, + [63] = { 45.8, 20.5, 1657, 300 }, + [64] = { 27.8, 19.4, 1657, 300 }, + [65] = { 42.1, 18.4, 1657, 300 }, + [66] = { 28.4, 16.5, 1657, 300 }, + [67] = { 52.9, 15.3, 1657, 300 }, + [68] = { 72.3, 15, 1657, 300 }, + [69] = { 65.5, 13.2, 1657, 300 }, + [70] = { 53.1, 7.5, 1657, 300 }, + [71] = { 45.1, 4, 1657, 300 }, + [72] = { 28.8, 1.3, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [3682] = { + ["coords"] = { + [1] = { 43.8, 12.2, 17, 275 }, + }, + ["fac"] = "H", + ["lvl"] = "48", + }, + [3683] = { + ["coords"] = { + [1] = { 41.8, 38.7, 17, 275 }, + }, + ["lvl"] = "32", + }, + [3684] = { + ["coords"] = { + [1] = { 41.8, 38.6, 17, 275 }, + }, + ["lvl"] = "33", + }, + [3685] = { + ["coords"] = { + [1] = { 47.5, 58.6, 215, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [3688] = { + ["coords"] = { + [1] = { 47.7, 55.7, 215, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [3689] = { + ["coords"] = { + [1] = { 21.1, 31.9, 400, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "42", + }, + [3690] = { + ["coords"] = { + [1] = { 47.6, 58.5, 215, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "44", + }, + [3691] = { + ["coords"] = { + [1] = { 36.6, 49.6, 331, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [3692] = { + ["coords"] = { + [1] = { 45, 85.3, 148, 413 }, + [2] = { 28.7, 65.9, 361, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "19", + }, + [3693] = { + ["coords"] = { + [1] = { 39.4, 43.5, 148, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [3694] = { + ["coords"] = { + [1] = { 39.2, 43.4, 42, 0 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [3695] = { + ["coords"] = { + [1] = { 41.7, 81.5, 148, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "13", + }, + [3696] = { + ["coords"] = { + [1] = { 54.7, 79.6, 331, 300 }, + }, + ["lvl"] = "30", + }, + [3697] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [3698] = { + ["coords"] = { + [1] = { 18, 60, 331, 300 }, + [2] = { 52.9, 16.9, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [3699] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "12", + }, + [3700] = { + ["coords"] = { + [1] = { 30.9, 42.1, 357, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "51", + }, + [3701] = { + ["coords"] = { + [1] = { 38.8, 43.4, 148, 480 }, + }, + ["fac"] = "A", + ["lvl"] = "18", + }, + [3702] = { + ["coords"] = { + [1] = { 37.7, 40.7, 148, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "18-22", + }, + [3703] = { + ["coords"] = { + [1] = { 44.8, 59.5, 17, 275 }, + }, + ["fac"] = "H", + ["lvl"] = "42", + }, + [3704] = { + ["coords"] = { + [1] = { 44.9, 59.4, 17, 275 }, + }, + ["fac"] = "H", + ["lvl"] = "31", + }, + [3705] = { + ["coords"] = { + [1] = { 44.7, 59.4, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [3706] = { + ["coords"] = { + [1] = { 54.3, 42.9, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "18", + }, + [3707] = { + ["coords"] = { + [1] = { 42.4, 68.8, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "10", + }, + [3708] = { + ["coords"] = { + [1] = { 65.7, 23.9, 46, 500 }, + }, + ["fac"] = "H", + ["lvl"] = "52", + }, + [3711] = { + ["coords"] = { + [1] = { 25.8, 98.7, 148, 300 }, + [2] = { 25.3, 98.1, 148, 300 }, + [3] = { 24.8, 98.1, 148, 300 }, + [4] = { 26.3, 98, 148, 300 }, + [5] = { 25.9, 98, 148, 300 }, + [6] = { 24.7, 97.5, 148, 300 }, + [7] = { 25.2, 97.4, 148, 300 }, + [8] = { 26.3, 97.2, 148, 300 }, + [9] = { 26, 97.2, 148, 300 }, + [10] = { 23.8, 97.2, 148, 300 }, + [11] = { 24.6, 96.6, 148, 300 }, + [12] = { 23.3, 96.6, 148, 300 }, + [13] = { 23.9, 96.6, 148, 300 }, + [14] = { 25.8, 96.5, 148, 300 }, + [15] = { 26.4, 96.5, 148, 300 }, + [16] = { 25.3, 96.5, 148, 300 }, + [17] = { 23.7, 95.9, 148, 300 }, + [18] = { 25.3, 95.8, 148, 300 }, + [19] = { 25.9, 95.6, 148, 300 }, + [20] = { 25.5, 95.6, 148, 300 }, + [21] = { 24.3, 95, 148, 300 }, + [22] = { 25.9, 94.9, 148, 300 }, + [23] = { 25.5, 94.8, 148, 300 }, + [24] = { 24.6, 94.2, 148, 300 }, + [25] = { 25.3, 94.2, 148, 300 }, + [26] = { 24.2, 94.2, 148, 300 }, + [27] = { 24.8, 93.7, 148, 300 }, + [28] = { 24.3, 93.5, 148, 300 }, + [29] = { 11.3, 30.9, 331, 300 }, + [30] = { 7.7, 17, 331, 300 }, + [31] = { 7.3, 16.2, 331, 300 }, + [32] = { 6.6, 16.2, 331, 300 }, + [33] = { 8.4, 16.1, 331, 300 }, + [34] = { 7.8, 16.1, 331, 300 }, + [35] = { 6.6, 15.5, 331, 300 }, + [36] = { 7.1, 15.5, 331, 300 }, + [37] = { 8.3, 15.2, 331, 300 }, + [38] = { 8, 15.2, 331, 300 }, + [39] = { 5.5, 15.2, 331, 300 }, + [40] = { 6.4, 14.5, 331, 300 }, + [41] = { 4.9, 14.5, 331, 300 }, + [42] = { 5.6, 14.5, 331, 300 }, + [43] = { 7.8, 14.4, 331, 300 }, + [44] = { 8.4, 14.4, 331, 300 }, + [45] = { 7.3, 14.4, 331, 300 }, + [46] = { 5.4, 13.7, 331, 300 }, + [47] = { 7.2, 13.6, 331, 300 }, + [48] = { 7.8, 13.4, 331, 300 }, + [49] = { 7.4, 13.4, 331, 300 }, + [50] = { 6.1, 12.7, 331, 300 }, + [51] = { 7.8, 12.6, 331, 300 }, + [52] = { 7.4, 12.5, 331, 300 }, + [53] = { 6.5, 11.8, 331, 300 }, + [54] = { 7.2, 11.8, 331, 300 }, + [55] = { 6, 11.7, 331, 300 }, + [56] = { 6.7, 11.2, 331, 300 }, + [57] = { 6, 11, 331, 300 }, + }, + ["lvl"] = "20-21", + }, + [3712] = { + ["coords"] = { + [1] = { 28.4, 95.9, 148, 300 }, + [2] = { 13.7, 30.9, 331, 300 }, + [3] = { 8.4, 30, 331, 300 }, + [4] = { 8.8, 29.9, 331, 300 }, + [5] = { 10.5, 29.7, 331, 300 }, + [6] = { 9.9, 29.6, 331, 300 }, + [7] = { 11.2, 29.2, 331, 300 }, + [8] = { 8.3, 29.2, 331, 300 }, + [9] = { 8.9, 29.1, 331, 300 }, + [10] = { 11.3, 28, 331, 300 }, + [11] = { 11.2, 25.7, 331, 300 }, + [12] = { 10.4, 25.6, 331, 300 }, + [13] = { 10.2, 24.7, 331, 300 }, + [14] = { 10.7, 13.7, 331, 300 }, + }, + ["lvl"] = "19-20", + }, + [3713] = { + ["coords"] = { + [1] = { 31.9, 99.6, 148, 300 }, + [2] = { 32.5, 98.8, 148, 300 }, + [3] = { 31.9, 98, 148, 300 }, + [4] = { 32.9, 98, 148, 300 }, + [5] = { 32.9, 97.4, 148, 300 }, + [6] = { 30.3, 97.3, 148, 300 }, + [7] = { 31.4, 97.3, 148, 300 }, + [8] = { 30.9, 96.6, 148, 300 }, + [9] = { 12.8, 30, 331, 300 }, + [10] = { 13.6, 29.2, 331, 300 }, + [11] = { 12.5, 29.2, 331, 300 }, + [12] = { 13, 28.3, 331, 300 }, + [13] = { 12.4, 27.5, 331, 300 }, + [14] = { 15.3, 26.6, 331, 300 }, + [15] = { 14.2, 25.8, 331, 300 }, + [16] = { 15.3, 24.9, 331, 300 }, + [17] = { 11.8, 24.8, 331, 300 }, + [18] = { 11.9, 23.9, 331, 300 }, + [19] = { 14.1, 23.1, 331, 300 }, + [20] = { 15.3, 22.5, 331, 300 }, + [21] = { 14.1, 20.9, 331, 300 }, + [22] = { 14.8, 20.7, 331, 300 }, + [23] = { 15.3, 20.6, 331, 300 }, + [24] = { 14.1, 20.5, 331, 300 }, + [25] = { 14.7, 19.5, 331, 300 }, + [26] = { 14.3, 19.2, 331, 300 }, + [27] = { 14.7, 17.9, 331, 300 }, + [28] = { 15.4, 17.1, 331, 300 }, + [29] = { 14.7, 16.1, 331, 300 }, + [30] = { 15.9, 16.1, 331, 300 }, + [31] = { 15.9, 15.4, 331, 300 }, + [32] = { 12.9, 15.4, 331, 300 }, + [33] = { 14.1, 15.3, 331, 300 }, + [34] = { 13.6, 14.5, 331, 300 }, + }, + ["lvl"] = "18-19", + }, + [3715] = { + ["coords"] = { + [1] = { 25.4, 95.6, 148, 300 }, + [2] = { 11.8, 31.9, 331, 300 }, + [3] = { 9.5, 30.1, 331, 300 }, + [4] = { 12.1, 30, 331, 300 }, + [5] = { 10.9, 28.6, 331, 300 }, + [6] = { 8.4, 28.3, 331, 300 }, + [7] = { 10.8, 27.1, 331, 300 }, + [8] = { 11.8, 26.6, 331, 300 }, + [9] = { 11.3, 26.5, 331, 300 }, + [10] = { 9.5, 25.7, 331, 300 }, + [11] = { 8.9, 25.7, 331, 300 }, + [12] = { 9.5, 24.7, 331, 300 }, + [13] = { 10.7, 24.2, 331, 300 }, + [14] = { 7.4, 13.4, 331, 300 }, + }, + ["lvl"] = "19-20", + }, + [3717] = { + ["coords"] = { + [1] = { 31.9, 99.6, 148, 300 }, + [2] = { 32.5, 98.8, 148, 300 }, + [3] = { 31.9, 98, 148, 300 }, + [4] = { 32.9, 98, 148, 300 }, + [5] = { 32.9, 97.4, 148, 300 }, + [6] = { 30.3, 97.3, 148, 300 }, + [7] = { 31.4, 97.3, 148, 300 }, + [8] = { 30.9, 96.6, 148, 300 }, + [9] = { 12.8, 30, 331, 300 }, + [10] = { 13.6, 29.2, 331, 300 }, + [11] = { 12.5, 29.2, 331, 300 }, + [12] = { 13, 28.3, 331, 300 }, + [13] = { 12.4, 27.5, 331, 300 }, + [14] = { 15.3, 26.6, 331, 300 }, + [15] = { 14.2, 25.8, 331, 300 }, + [16] = { 15.3, 24.9, 331, 300 }, + [17] = { 11.8, 24.8, 331, 300 }, + [18] = { 11.9, 23.9, 331, 300 }, + [19] = { 14.1, 23.1, 331, 300 }, + [20] = { 15.3, 22.5, 331, 300 }, + [21] = { 14.1, 20.9, 331, 300 }, + [22] = { 14.8, 20.7, 331, 300 }, + [23] = { 15.3, 20.6, 331, 300 }, + [24] = { 14.1, 20.5, 331, 300 }, + [25] = { 14.7, 19.5, 331, 300 }, + [26] = { 14.3, 19.2, 331, 300 }, + [27] = { 14.7, 17.9, 331, 300 }, + [28] = { 15.4, 17.1, 331, 300 }, + [29] = { 14.7, 16.1, 331, 300 }, + [30] = { 15.9, 16.1, 331, 300 }, + [31] = { 15.9, 15.4, 331, 300 }, + [32] = { 12.9, 15.4, 331, 300 }, + [33] = { 14.1, 15.3, 331, 300 }, + [34] = { 13.6, 14.5, 331, 300 }, + }, + ["lvl"] = "18-19", + }, + [3718] = { + ["coords"] = {}, + ["lvl"] = "20-21", + ["rnk"] = "4", + }, + [3721] = { + ["coords"] = { + [1] = { 29.3, 99.5, 148, 300 }, + [2] = { 31, 98.9, 148, 300 }, + [3] = { 27.4, 98.8, 148, 300 }, + [4] = { 28.1, 98.1, 148, 300 }, + [5] = { 27.2, 95.7, 148, 300 }, + [6] = { 8.9, 31.2, 331, 300 }, + [7] = { 11.5, 27.7, 331, 300 }, + [8] = { 12.7, 22.6, 331, 300 }, + [9] = { 12.7, 18.7, 331, 300 }, + [10] = { 11.7, 17.8, 331, 300 }, + [11] = { 13.7, 17.1, 331, 300 }, + [12] = { 9.6, 17, 331, 300 }, + [13] = { 10.4, 16.2, 331, 300 }, + [14] = { 9.3, 13.5, 331, 300 }, + }, + ["lvl"] = "19-20", + }, + [3722] = { + ["coords"] = { + [1] = { 25.2, 99.5, 148, 600 }, + [2] = { 6.8, 34.6, 331, 600 }, + [3] = { 6.8, 31.8, 331, 600 }, + [4] = { 6.9, 24.4, 331, 600 }, + [5] = { 6.9, 21, 331, 600 }, + [6] = { 8, 19.5, 331, 600 }, + [7] = { 7.1, 17.8, 331, 600 }, + }, + ["lvl"] = "20-21", + }, + [3725] = { + ["coords"] = { + [1] = { 30.3, 31.8, 331, 300 }, + [2] = { 30.8, 31.7, 331, 300 }, + [3] = { 30.3, 31, 331, 300 }, + [4] = { 30.9, 30.9, 331, 300 }, + [5] = { 31.1, 30.3, 331, 300 }, + [6] = { 31.5, 30.1, 331, 300 }, + [7] = { 32.1, 30, 331, 300 }, + [8] = { 31.9, 29.4, 331, 300 }, + [9] = { 31.5, 29.2, 331, 300 }, + [10] = { 32.6, 29.2, 331, 300 }, + }, + ["lvl"] = "18-19", + }, + [3727] = { + ["coords"] = { + [1] = { 31.8, 31.5, 331, 300 }, + [2] = { 31.3, 31.5, 331, 300 }, + [3] = { 31.6, 31.2, 331, 300 }, + [4] = { 31.8, 31.1, 331, 300 }, + [5] = { 31.3, 31, 331, 300 }, + [6] = { 31.6, 30.7, 331, 300 }, + }, + ["lvl"] = "20-21", + }, + [3728] = { + ["coords"] = { + [1] = { 30.3, 31.8, 331, 300 }, + [2] = { 30.8, 31.7, 331, 300 }, + [3] = { 30.3, 31, 331, 300 }, + [4] = { 30.9, 30.9, 331, 300 }, + [5] = { 31.1, 30.3, 331, 300 }, + [6] = { 31.5, 30.1, 331, 300 }, + [7] = { 32.1, 30, 331, 300 }, + [8] = { 31.9, 29.4, 331, 300 }, + [9] = { 31.5, 29.2, 331, 300 }, + [10] = { 32.6, 29.2, 331, 300 }, + }, + ["lvl"] = "18-19", + }, + [3730] = { + ["coords"] = { + [1] = { 31.8, 31.5, 331, 300 }, + [2] = { 31.3, 31.5, 331, 300 }, + [3] = { 31.6, 31.2, 331, 300 }, + [4] = { 31.8, 31.1, 331, 300 }, + [5] = { 31.3, 31, 331, 300 }, + [6] = { 31.6, 30.7, 331, 300 }, + }, + ["lvl"] = "19-20", + }, + [3732] = { + ["coords"] = { + [1] = { 30.4, 25, 331, 300 }, + [2] = { 30.1, 24.6, 331, 300 }, + [3] = { 29.7, 24.2, 331, 300 }, + [4] = { 30.9, 24, 331, 300 }, + [5] = { 30.4, 23.9, 331, 300 }, + [6] = { 31.7, 23.9, 331, 300 }, + [7] = { 32.2, 23.9, 331, 300 }, + [8] = { 31.7, 23.3, 331, 300 }, + [9] = { 31.3, 22.9, 331, 300 }, + [10] = { 32.9, 22.7, 331, 300 }, + [11] = { 32.5, 22.6, 331, 300 }, + [12] = { 32.6, 22.3, 331, 300 }, + [13] = { 31, 22.3, 331, 300 }, + [14] = { 32.9, 21.9, 331, 300 }, + [15] = { 33.4, 21.7, 331, 300 }, + [16] = { 32.7, 21.5, 331, 300 }, + [17] = { 33.3, 21.1, 331, 300 }, + [18] = { 33, 21.1, 331, 300 }, + [19] = { 32.4, 20.7, 331, 300 }, + [20] = { 31.5, 20.6, 331, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "18-19", + }, + [3733] = { + ["coords"] = { + [1] = { 30.4, 25, 331, 300 }, + [2] = { 30.1, 24.6, 331, 300 }, + [3] = { 29.7, 24.2, 331, 300 }, + [4] = { 30.9, 24, 331, 300 }, + [5] = { 30.4, 23.9, 331, 300 }, + [6] = { 31.7, 23.9, 331, 300 }, + [7] = { 32.2, 23.9, 331, 300 }, + [8] = { 31.7, 23.3, 331, 300 }, + [9] = { 31.3, 22.9, 331, 300 }, + [10] = { 32.9, 22.7, 331, 300 }, + [11] = { 32.5, 22.6, 331, 300 }, + [12] = { 32.6, 22.3, 331, 300 }, + [13] = { 31, 22.3, 331, 300 }, + [14] = { 32.9, 21.9, 331, 300 }, + [15] = { 33.4, 21.7, 331, 300 }, + [16] = { 32.7, 21.5, 331, 300 }, + [17] = { 33.3, 21.1, 331, 300 }, + [18] = { 33, 21.1, 331, 300 }, + [19] = { 32.4, 20.7, 331, 300 }, + [20] = { 31.5, 20.6, 331, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "18-19", + }, + [3734] = { + ["coords"] = { + [1] = { 32.1, 22.8, 331, 300 }, + [2] = { 32.6, 21.6, 331, 300 }, + [3] = { 31.5, 21.4, 331, 300 }, + [4] = { 32.8, 21.1, 331, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [3735] = { + ["coords"] = { + [1] = { 32.6, 22, 331, 14400 }, + [2] = { 33.2, 21.9, 331, 14400 }, + [3] = { 33.2, 21.1, 331, 14400 }, + }, + ["fac"] = "H", + ["lvl"] = "22", + ["rnk"] = "4", + }, + [3736] = { + ["coords"] = { + [1] = { 75.6, 74, 331, 300 }, + [2] = { 78, 73.8, 331, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "23", + }, + [3737] = { + ["coords"] = { + [1] = { 20, 45.1, 331, 300 }, + [2] = { 20.5, 44.8, 331, 300 }, + [3] = { 20.1, 44.2, 331, 300 }, + [4] = { 21.3, 43.6, 331, 300 }, + [5] = { 19.3, 43.1, 331, 300 }, + [6] = { 21.1, 43.1, 331, 300 }, + [7] = { 21.8, 42.4, 331, 300 }, + [8] = { 19.3, 42.2, 331, 300 }, + [9] = { 19.4, 41.5, 331, 300 }, + [10] = { 18.9, 41.3, 331, 300 }, + [11] = { 21.8, 41.2, 331, 300 }, + [12] = { 21.1, 40.5, 331, 300 }, + [13] = { 19, 40.3, 331, 300 }, + }, + ["lvl"] = "19-20", + }, + [3739] = { + ["coords"] = { + [1] = { 20, 45.1, 331, 300 }, + [2] = { 20.5, 44.8, 331, 300 }, + [3] = { 20.1, 44.2, 331, 300 }, + [4] = { 21.3, 43.6, 331, 300 }, + [5] = { 19.3, 43.1, 331, 300 }, + [6] = { 21.1, 43.1, 331, 300 }, + [7] = { 21.8, 42.4, 331, 300 }, + [8] = { 19.3, 42.2, 331, 300 }, + [9] = { 19.4, 41.5, 331, 300 }, + [10] = { 18.9, 41.3, 331, 300 }, + [11] = { 21.8, 41.2, 331, 300 }, + [12] = { 21.1, 40.5, 331, 300 }, + [13] = { 19, 40.3, 331, 300 }, + }, + ["lvl"] = "19-20", + }, + [3740] = { + ["coords"] = { + [1] = { 20.5, 44, 331, 300 }, + [2] = { 21.1, 44, 331, 300 }, + [3] = { 19.2, 43.9, 331, 300 }, + [4] = { 20.5, 43.2, 331, 300 }, + [5] = { 21.1, 42.2, 331, 300 }, + [6] = { 20.7, 42.1, 331, 300 }, + [7] = { 20.6, 40.8, 331, 300 }, + }, + ["lvl"] = "20-21", + }, + [3742] = { + ["coords"] = { + [1] = { 20.5, 44, 331, 300 }, + [2] = { 21.1, 44, 331, 300 }, + [3] = { 19.2, 43.9, 331, 300 }, + [4] = { 20.5, 43.2, 331, 300 }, + [5] = { 21.1, 42.2, 331, 300 }, + [6] = { 20.7, 42.1, 331, 300 }, + [7] = { 20.6, 40.8, 331, 300 }, + }, + ["lvl"] = "20-21", + }, + [3743] = { + ["coords"] = { + [1] = { 56.4, 64.9, 331, 300 }, + [2] = { 56, 64.9, 331, 300 }, + [3] = { 54, 64.8, 331, 300 }, + [4] = { 57, 64.7, 331, 300 }, + [5] = { 54, 64.2, 331, 300 }, + [6] = { 57.6, 64, 331, 300 }, + [7] = { 54.1, 63.9, 331, 300 }, + [8] = { 52.9, 63.9, 331, 300 }, + [9] = { 53.5, 63.9, 331, 300 }, + [10] = { 52.9, 63, 331, 300 }, + [11] = { 54.6, 63, 331, 300 }, + [12] = { 53.5, 63, 331, 300 }, + [13] = { 54.1, 63, 331, 300 }, + [14] = { 55.7, 63, 331, 300 }, + [15] = { 55.2, 63, 331, 300 }, + [16] = { 55.2, 62.2, 331, 300 }, + [17] = { 55.8, 62.2, 331, 300 }, + [18] = { 50, 62.1, 331, 300 }, + [19] = { 56.3, 62, 331, 300 }, + [20] = { 49.4, 61.5, 331, 300 }, + [21] = { 50, 61.3, 331, 300 }, + [22] = { 50.6, 61.3, 331, 300 }, + [23] = { 53.5, 60.9, 331, 300 }, + [24] = { 51.2, 60.5, 331, 300 }, + [25] = { 51.7, 60.5, 331, 300 }, + [26] = { 49.3, 60.5, 331, 300 }, + [27] = { 50.6, 60.4, 331, 300 }, + [28] = { 56.3, 64.3, 331, 0 }, + [29] = { 56.9, 63.4, 331, 0 }, + [30] = { 55.9, 63.4, 331, 0 }, + [31] = { 56.7, 64.1, 331, 0 }, + [32] = { 56.3, 62.8, 331, 0 }, + }, + ["lvl"] = "23-24", + }, + [3745] = { + ["coords"] = { + [1] = { 54.3, 62.2, 331, 300 }, + [2] = { 50.8, 61.2, 331, 300 }, + [3] = { 53.8, 61.2, 331, 300 }, + }, + ["lvl"] = "23-24", + }, + [3746] = { + ["coords"] = { + [1] = { 54.4, 62.4, 331, 300 }, + [2] = { 53.8, 62, 331, 300 }, + [3] = { 54.7, 61.9, 331, 300 }, + [4] = { 54.4, 61.6, 331, 300 }, + [5] = { 54.6, 61.5, 331, 300 }, + [6] = { 54.2, 61.4, 331, 300 }, + [7] = { 50.2, 60.4, 331, 300 }, + [8] = { 50.2, 60, 331, 300 }, + [9] = { 49.7, 60, 331, 300 }, + [10] = { 50, 59.9, 331, 300 }, + [11] = { 50.2, 59.6, 331, 300 }, + [12] = { 50, 59.6, 331, 300 }, + }, + ["lvl"] = "24-25", + }, + [3748] = { + ["coords"] = { + [1] = { 54.4, 62.4, 331, 300 }, + [2] = { 53.8, 62, 331, 300 }, + [3] = { 54.7, 61.9, 331, 300 }, + [4] = { 54.4, 61.6, 331, 300 }, + [5] = { 54.6, 61.5, 331, 300 }, + [6] = { 54.2, 61.4, 331, 300 }, + [7] = { 50.2, 60.4, 331, 300 }, + [8] = { 50.2, 60, 331, 300 }, + [9] = { 49.7, 60, 331, 300 }, + [10] = { 50, 59.9, 331, 300 }, + [11] = { 50.2, 59.6, 331, 300 }, + [12] = { 50, 59.6, 331, 300 }, + }, + ["lvl"] = "24-25", + }, + [3749] = { + ["coords"] = { + [1] = { 54.4, 62.4, 331, 300 }, + [2] = { 53.8, 62, 331, 300 }, + [3] = { 54.7, 61.9, 331, 300 }, + [4] = { 54.4, 61.6, 331, 300 }, + [5] = { 54.6, 61.5, 331, 300 }, + [6] = { 54.2, 61.4, 331, 300 }, + [7] = { 50.2, 60.4, 331, 300 }, + [8] = { 50.2, 60, 331, 300 }, + [9] = { 49.7, 60, 331, 300 }, + [10] = { 50, 59.9, 331, 300 }, + [11] = { 50.2, 59.6, 331, 300 }, + [12] = { 50, 59.6, 331, 300 }, + [13] = { 55.9, 63.4, 331, 0 }, + [14] = { 56.7, 64.1, 331, 0 }, + [15] = { 56.3, 62.8, 331, 0 }, + [16] = { 56.3, 64.3, 331, 0 }, + [17] = { 56.9, 63.4, 331, 0 }, + }, + ["lvl"] = "24-25", + }, + [3750] = { + ["coords"] = { + [1] = { 56.4, 64.9, 331, 300 }, + [2] = { 56, 64.9, 331, 300 }, + [3] = { 54, 64.8, 331, 300 }, + [4] = { 57, 64.7, 331, 300 }, + [5] = { 54, 64.2, 331, 300 }, + [6] = { 57.6, 64, 331, 300 }, + [7] = { 54.1, 63.9, 331, 300 }, + [8] = { 52.9, 63.9, 331, 300 }, + [9] = { 53.5, 63.9, 331, 300 }, + [10] = { 52.9, 63, 331, 300 }, + [11] = { 54.6, 63, 331, 300 }, + [12] = { 53.5, 63, 331, 300 }, + [13] = { 54.1, 63, 331, 300 }, + [14] = { 55.7, 63, 331, 300 }, + [15] = { 55.2, 63, 331, 300 }, + [16] = { 55.2, 62.2, 331, 300 }, + [17] = { 55.8, 62.2, 331, 300 }, + [18] = { 50, 62.1, 331, 300 }, + [19] = { 56.3, 62, 331, 300 }, + [20] = { 49.4, 61.5, 331, 300 }, + [21] = { 50, 61.3, 331, 300 }, + [22] = { 50.6, 61.3, 331, 300 }, + [23] = { 53.5, 60.9, 331, 300 }, + [24] = { 51.2, 60.5, 331, 300 }, + [25] = { 51.7, 60.5, 331, 300 }, + [26] = { 49.3, 60.5, 331, 300 }, + [27] = { 50.6, 60.4, 331, 300 }, + [28] = { 56.3, 62.8, 331, 0 }, + [29] = { 56.3, 64.3, 331, 0 }, + [30] = { 56.9, 63.4, 331, 0 }, + [31] = { 55.9, 63.4, 331, 0 }, + [32] = { 56.7, 64.1, 331, 0 }, + }, + ["lvl"] = "23-24", + }, + [3752] = { + ["coords"] = { + [1] = { 78.9, 46.5, 331, 300 }, + [2] = { 77.6, 46.2, 331, 300 }, + [3] = { 78.9, 45.7, 331, 300 }, + [4] = { 79.1, 45.6, 331, 300 }, + [5] = { 78.7, 45.3, 331, 300 }, + [6] = { 78.1, 45.3, 331, 300 }, + [7] = { 78.4, 45.1, 331, 300 }, + [8] = { 77.7, 44.8, 331, 300 }, + [9] = { 78.2, 44.8, 331, 300 }, + [10] = { 78.5, 44.8, 331, 300 }, + [11] = { 77.9, 44.4, 331, 300 }, + [12] = { 78.3, 43.7, 331, 300 }, + [13] = { 77.8, 42.5, 331, 300 }, + }, + ["lvl"] = "29-30", + }, + [3754] = { + ["coords"] = { + [1] = { 78.4, 47.5, 331, 300 }, + [2] = { 79.3, 47.4, 331, 300 }, + [3] = { 77.8, 46.7, 331, 300 }, + [4] = { 79.6, 46.6, 331, 300 }, + [5] = { 78.3, 46.5, 331, 300 }, + [6] = { 77.8, 45.8, 331, 300 }, + [7] = { 78.3, 45.6, 331, 300 }, + [8] = { 77.3, 44.9, 331, 300 }, + [9] = { 78.4, 43, 331, 300 }, + [10] = { 78.4, 42.2, 331, 300 }, + [11] = { 78.9, 45.7, 331, 300 }, + }, + ["lvl"] = "28-29", + }, + [3755] = { + ["coords"] = { + [1] = { 78.4, 47.5, 331, 300 }, + [2] = { 79.3, 47.4, 331, 300 }, + [3] = { 77.8, 46.7, 331, 300 }, + [4] = { 79.6, 46.6, 331, 300 }, + [5] = { 78.9, 46.5, 331, 300 }, + [6] = { 78.3, 46.5, 331, 300 }, + [7] = { 77.8, 45.8, 331, 300 }, + [8] = { 78.3, 45.6, 331, 300 }, + [9] = { 77.3, 44.9, 331, 300 }, + [10] = { 78.4, 43, 331, 300 }, + [11] = { 78.4, 42.2, 331, 300 }, + [12] = { 78.9, 45.7, 331, 300 }, + }, + ["lvl"] = "28-29", + }, + [3757] = { + ["coords"] = { + [1] = { 77.6, 46.2, 331, 300 }, + [2] = { 79.1, 45.6, 331, 300 }, + [3] = { 78.7, 45.3, 331, 300 }, + [4] = { 78.1, 45.3, 331, 300 }, + [5] = { 78.4, 45.1, 331, 300 }, + [6] = { 77.7, 44.8, 331, 300 }, + [7] = { 78.2, 44.8, 331, 300 }, + [8] = { 78.5, 44.8, 331, 300 }, + [9] = { 77.9, 44.4, 331, 300 }, + [10] = { 78.3, 43.7, 331, 300 }, + [11] = { 77.8, 42.5, 331, 300 }, + [12] = { 78.9, 46.5, 331, 300 }, + }, + ["lvl"] = "29-30", + }, + [3758] = { + ["coords"] = { + [1] = { 66.7, 56.1, 331, 300 }, + [2] = { 66.2, 55.2, 331, 300 }, + [3] = { 66.8, 55.2, 331, 300 }, + [4] = { 67.3, 55.1, 331, 300 }, + [5] = { 67.9, 54.4, 331, 300 }, + [6] = { 66.2, 54.3, 331, 300 }, + [7] = { 68.5, 53.5, 331, 300 }, + [8] = { 68.9, 53.4, 331, 300 }, + [9] = { 68.6, 52.8, 331, 300 }, + [10] = { 66.8, 52.6, 331, 300 }, + [11] = { 66.3, 52.6, 331, 300 }, + [12] = { 66.8, 51.7, 331, 300 }, + [13] = { 66.3, 51.7, 331, 300 }, + }, + ["lvl"] = "25-26", + }, + [3759] = { + ["coords"] = { + [1] = { 66.7, 57.2, 331, 300 }, + [2] = { 66.9, 57, 331, 300 }, + [3] = { 66.5, 56.8, 331, 300 }, + [4] = { 67.1, 56.4, 331, 300 }, + [5] = { 66.2, 56.4, 331, 300 }, + [6] = { 67.3, 55.6, 331, 300 }, + [7] = { 67.3, 54.6, 331, 300 }, + [8] = { 68.4, 54.4, 331, 300 }, + [9] = { 66.9, 54.4, 331, 300 }, + [10] = { 66.4, 53.9, 331, 300 }, + [11] = { 68.2, 53.9, 331, 300 }, + [12] = { 66.1, 53.4, 331, 300 }, + }, + ["lvl"] = "26-27", + }, + [3762] = { + ["coords"] = { + [1] = { 66.7, 56.1, 331, 300 }, + [2] = { 66.2, 55.2, 331, 300 }, + [3] = { 66.8, 55.2, 331, 300 }, + [4] = { 67.3, 55.1, 331, 300 }, + [5] = { 67.9, 54.4, 331, 300 }, + [6] = { 66.2, 54.3, 331, 300 }, + [7] = { 68.5, 53.5, 331, 300 }, + [8] = { 68.9, 53.4, 331, 300 }, + [9] = { 68.6, 52.8, 331, 300 }, + [10] = { 66.8, 52.6, 331, 300 }, + [11] = { 66.3, 52.6, 331, 300 }, + [12] = { 66.8, 51.7, 331, 300 }, + [13] = { 66.3, 51.7, 331, 300 }, + }, + ["lvl"] = "25-26", + }, + [3763] = { + ["coords"] = { + [1] = { 66.7, 57.2, 331, 300 }, + [2] = { 66.9, 57, 331, 300 }, + [3] = { 66.5, 56.8, 331, 300 }, + [4] = { 67.1, 56.4, 331, 300 }, + [5] = { 66.2, 56.4, 331, 300 }, + [6] = { 67.3, 55.6, 331, 300 }, + [7] = { 67.3, 54.6, 331, 300 }, + [8] = { 68.4, 54.4, 331, 300 }, + [9] = { 66.9, 54.4, 331, 300 }, + [10] = { 66.4, 53.9, 331, 300 }, + [11] = { 68.2, 53.9, 331, 300 }, + [12] = { 66.1, 53.4, 331, 300 }, + }, + ["lvl"] = "26-27", + }, + [3765] = { + ["coords"] = { + [1] = { 82.4, 51.7, 331, 300 }, + [2] = { 80.6, 50.9, 331, 300 }, + [3] = { 81.2, 50.9, 331, 300 }, + [4] = { 80, 50.8, 331, 300 }, + [5] = { 80.1, 50.2, 331, 300 }, + [6] = { 79.5, 50.1, 331, 300 }, + [7] = { 82.4, 50, 331, 300 }, + [8] = { 83, 50, 331, 300 }, + [9] = { 79.6, 49.3, 331, 300 }, + [10] = { 80.1, 49.1, 331, 300 }, + [11] = { 81.7, 48.2, 331, 300 }, + }, + ["lvl"] = "26-27", + }, + [3767] = { + ["coords"] = { + [1] = { 81.9, 52.1, 331, 300 }, + [2] = { 81.2, 51.5, 331, 300 }, + [3] = { 81.3, 50.4, 331, 300 }, + [4] = { 81.2, 50.3, 331, 300 }, + [5] = { 81.5, 50, 331, 300 }, + [6] = { 80.5, 49.8, 331, 300 }, + [7] = { 80.7, 49.7, 331, 300 }, + [8] = { 81.4, 49.5, 331, 300 }, + [9] = { 80.8, 49.3, 331, 300 }, + [10] = { 81.3, 49.3, 331, 300 }, + [11] = { 81.8, 49.3, 331, 300 }, + [12] = { 81.7, 49.2, 331, 300 }, + [13] = { 81.9, 49, 331, 300 }, + [14] = { 81, 49, 331, 300 }, + [15] = { 80.7, 49, 331, 300 }, + [16] = { 80.5, 48.6, 331, 300 }, + [17] = { 81.1, 48.5, 331, 300 }, + }, + ["lvl"] = "27-28", + }, + [3770] = { + ["coords"] = { + [1] = { 81.9, 52.1, 331, 300 }, + [2] = { 81.2, 51.5, 331, 300 }, + [3] = { 81.3, 50.4, 331, 300 }, + [4] = { 81.2, 50.3, 331, 300 }, + [5] = { 81.5, 50, 331, 300 }, + [6] = { 80.5, 49.8, 331, 300 }, + [7] = { 80.7, 49.7, 331, 300 }, + [8] = { 81.4, 49.5, 331, 300 }, + [9] = { 80.8, 49.3, 331, 300 }, + [10] = { 81.3, 49.3, 331, 300 }, + [11] = { 81.8, 49.3, 331, 300 }, + [12] = { 81.7, 49.2, 331, 300 }, + [13] = { 81.9, 49, 331, 300 }, + [14] = { 81, 49, 331, 300 }, + [15] = { 80.7, 49, 331, 300 }, + [16] = { 80.5, 48.6, 331, 300 }, + [17] = { 81.1, 48.5, 331, 300 }, + }, + ["lvl"] = "27-28", + }, + [3771] = { + ["coords"] = { + [1] = { 82.4, 51.7, 331, 300 }, + [2] = { 80.6, 50.9, 331, 300 }, + [3] = { 81.2, 50.9, 331, 300 }, + [4] = { 80, 50.8, 331, 300 }, + [5] = { 80.1, 50.2, 331, 300 }, + [6] = { 79.5, 50.1, 331, 300 }, + [7] = { 82.4, 50, 331, 300 }, + [8] = { 83, 50, 331, 300 }, + [9] = { 79.6, 49.3, 331, 300 }, + [10] = { 80.1, 49.1, 331, 300 }, + [11] = { 81.7, 48.2, 331, 300 }, + }, + ["lvl"] = "26-27", + }, + [3772] = { + ["coords"] = { + [1] = { 23.8, 63.4, 331, 300 }, + [2] = { 25.3, 63.4, 331, 300 }, + [3] = { 28, 63.1, 331, 300 }, + [4] = { 26.9, 63.1, 331, 300 }, + [5] = { 26.1, 62.6, 331, 300 }, + [6] = { 22.9, 62.3, 331, 300 }, + [7] = { 28.8, 62.2, 331, 300 }, + [8] = { 25.7, 61.3, 331, 300 }, + [9] = { 28.4, 60.9, 331, 300 }, + [10] = { 21.8, 59.8, 331, 300 }, + [11] = { 28, 59.5, 331, 300 }, + [12] = { 29.1, 59.5, 331, 300 }, + [13] = { 22.2, 58.6, 331, 300 }, + [14] = { 59.8, 20.9, 406, 300 }, + [15] = { 61.5, 20.9, 406, 300 }, + [16] = { 64.8, 20.5, 406, 300 }, + [17] = { 63.4, 20.5, 406, 300 }, + [18] = { 62.5, 19.9, 406, 300 }, + [19] = { 58.7, 19.6, 406, 300 }, + [20] = { 62, 18.5, 406, 300 }, + [21] = { 57.4, 16.7, 406, 300 }, + }, + ["lvl"] = "23-24", + }, + [3773] = { + ["coords"] = { + [1] = { 27, 63.5, 331, 75600 }, + [2] = { 63.5, 21, 406, 75600 }, + }, + ["lvl"] = "26", + ["rnk"] = "4", + }, + [3774] = { + ["coords"] = { + [1] = { 27.7, 64.2, 331, 300 }, + [2] = { 28.2, 64.2, 331, 300 }, + [3] = { 26.6, 64.1, 331, 300 }, + [4] = { 26.3, 63.9, 331, 300 }, + [5] = { 24.7, 63.8, 331, 300 }, + [6] = { 23.4, 63.2, 331, 300 }, + [7] = { 28.5, 63, 331, 300 }, + [8] = { 22.2, 62.1, 331, 300 }, + [9] = { 21.7, 62, 331, 300 }, + [10] = { 28.6, 61.5, 331, 300 }, + [11] = { 21.7, 61.3, 331, 300 }, + [12] = { 28.4, 61.2, 331, 300 }, + [13] = { 25.2, 61, 331, 300 }, + [14] = { 25.5, 60.6, 331, 300 }, + [15] = { 21.7, 60.5, 331, 300 }, + [16] = { 28.8, 58.8, 331, 300 }, + [17] = { 21.2, 58.7, 331, 300 }, + [18] = { 64.3, 21.9, 406, 300 }, + [19] = { 64.9, 21.8, 406, 300 }, + [20] = { 63.1, 21.7, 406, 300 }, + [21] = { 62.8, 21.5, 406, 300 }, + [22] = { 60.8, 21.4, 406, 300 }, + [23] = { 59.3, 20.7, 406, 300 }, + [24] = { 57.8, 19.4, 406, 300 }, + [25] = { 57.3, 19.3, 406, 300 }, + [26] = { 57.2, 18.4, 406, 300 }, + [27] = { 61.4, 18, 406, 300 }, + [28] = { 61.7, 17.6, 406, 300 }, + [29] = { 57.2, 17.5, 406, 300 }, + }, + ["lvl"] = "22-23", + }, + [3777] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [3778] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [3779] = { + ["coords"] = { + [1] = { 51.6, 29.8, 618, 333 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [3780] = { + ["coords"] = { + [1] = { 47, 48.5, 331, 300 }, + [2] = { 46.1, 48.3, 331, 300 }, + [3] = { 45.9, 48.1, 331, 300 }, + [4] = { 46.8, 47.8, 331, 300 }, + [5] = { 47.6, 47.5, 331, 300 }, + [6] = { 45.9, 46.9, 331, 300 }, + [7] = { 47.3, 46.4, 331, 300 }, + [8] = { 45.4, 45.8, 331, 300 }, + [9] = { 46.3, 45.8, 331, 300 }, + [10] = { 45, 45.1, 331, 300 }, + [11] = { 46.1, 44.9, 331, 300 }, + [12] = { 47, 44.8, 331, 300 }, + [13] = { 47.7, 44.7, 331, 300 }, + [14] = { 47.1, 44.3, 331, 300 }, + [15] = { 46.5, 44.1, 331, 300 }, + [16] = { 45.6, 44, 331, 300 }, + [17] = { 45.8, 43.3, 331, 300 }, + }, + ["lvl"] = "21-23", + }, + [3781] = { + ["coords"] = { + [1] = { 32.7, 72.4, 331, 300 }, + [2] = { 32.9, 72, 331, 300 }, + [3] = { 31.4, 71.6, 331, 300 }, + [4] = { 32.7, 70.6, 331, 300 }, + [5] = { 32.7, 70.2, 331, 300 }, + [6] = { 34, 70.1, 331, 300 }, + [7] = { 33.3, 69.7, 331, 300 }, + [8] = { 33.9, 69.3, 331, 300 }, + [9] = { 30.8, 69.2, 331, 300 }, + [10] = { 32.1, 69, 331, 300 }, + [11] = { 31, 68.5, 331, 300 }, + [12] = { 31.5, 68.4, 331, 300 }, + [13] = { 34.5, 68.4, 331, 300 }, + [14] = { 32.7, 68.3, 331, 300 }, + [15] = { 33.3, 68.2, 331, 300 }, + [16] = { 31.6, 67.5, 331, 300 }, + [17] = { 34.6, 67.5, 331, 300 }, + [18] = { 32, 67.4, 331, 300 }, + [19] = { 32.6, 67.4, 331, 300 }, + [20] = { 35.4, 67.4, 331, 300 }, + [21] = { 34.4, 67.4, 331, 300 }, + [22] = { 34.9, 67.3, 331, 300 }, + [23] = { 33.8, 67.3, 331, 300 }, + [24] = { 33.2, 67.3, 331, 300 }, + [25] = { 34.4, 66.5, 331, 300 }, + [26] = { 33.5, 66.3, 331, 300 }, + [27] = { 32.4, 66.2, 331, 300 }, + [28] = { 34.1, 65.7, 331, 300 }, + [29] = { 33.7, 65.7, 331, 300 }, + [30] = { 31.8, 65.7, 331, 300 }, + [31] = { 34.2, 64.7, 331, 300 }, + [32] = { 33.1, 64.5, 331, 300 }, + [33] = { 70.3, 31.5, 406, 300 }, + [34] = { 68.7, 30.6, 406, 300 }, + [35] = { 68, 27.8, 406, 300 }, + [36] = { 68.2, 26.9, 406, 300 }, + }, + ["lvl"] = "23-24", + }, + [3782] = { + ["coords"] = { + [1] = { 66.6, 84, 331, 300 }, + [2] = { 66.9, 84, 331, 300 }, + [3] = { 66.2, 82.1, 331, 300 }, + [4] = { 67, 82.1, 331, 300 }, + [5] = { 65.8, 81.7, 331, 300 }, + [6] = { 67.1, 81.5, 331, 300 }, + [7] = { 66.9, 81.3, 331, 300 }, + [8] = { 67.4, 80.8, 331, 300 }, + [9] = { 66.7, 80.4, 331, 300 }, + [10] = { 65.9, 80.3, 331, 300 }, + [11] = { 65.2, 80.1, 331, 300 }, + [12] = { 66.7, 79.7, 331, 300 }, + [13] = { 65.6, 79.7, 331, 300 }, + [14] = { 59.8, 79.6, 331, 300 }, + [15] = { 58.9, 79.2, 331, 300 }, + [16] = { 59, 78.9, 331, 300 }, + [17] = { 59.7, 78.6, 331, 300 }, + [18] = { 59.8, 77.9, 331, 300 }, + [19] = { 60.9, 76.8, 331, 300 }, + [20] = { 62, 74.9, 331, 300 }, + [21] = { 79.4, 73.6, 331, 300 }, + [22] = { 80.6, 73.4, 331, 300 }, + [23] = { 79, 72.5, 331, 300 }, + [24] = { 63, 71.6, 331, 300 }, + [25] = { 79.4, 70.1, 331, 300 }, + [26] = { 85.2, 69, 331, 300 }, + [27] = { 86, 68.8, 331, 300 }, + [28] = { 85.8, 68.1, 331, 300 }, + [29] = { 85.3, 67.5, 331, 300 }, + [30] = { 64.5, 67.4, 331, 300 }, + [31] = { 79.3, 66.4, 331, 300 }, + [32] = { 65.6, 65.5, 331, 300 }, + [33] = { 79.1, 64.9, 331, 300 }, + [34] = { 84.1, 64.8, 331, 300 }, + [35] = { 66.6, 64.4, 331, 300 }, + [36] = { 82.4, 64.1, 331, 300 }, + [37] = { 81.4, 63.7, 331, 300 }, + [38] = { 78.4, 63, 331, 300 }, + [39] = { 68.6, 62.9, 331, 300 }, + [40] = { 80.6, 62.5, 331, 300 }, + [41] = { 78.4, 61.2, 331, 300 }, + [42] = { 69.7, 60.3, 331, 300 }, + [43] = { 78.5, 59.7, 331, 300 }, + [44] = { 79, 57.9, 331, 300 }, + [45] = { 69.9, 57.9, 331, 300 }, + [46] = { 70.7, 56, 331, 300 }, + [47] = { 71.1, 55.5, 331, 300 }, + [48] = { 71.9, 54.3, 331, 300 }, + [49] = { 78.7, 53.5, 331, 300 }, + [50] = { 74.7, 46.5, 331, 300 }, + }, + ["lvl"] = "25-26", + }, + [3783] = { + ["coords"] = { + [1] = { 32.7, 72.4, 331, 300 }, + [2] = { 32.9, 72, 331, 300 }, + [3] = { 31.4, 71.6, 331, 300 }, + [4] = { 32.7, 70.6, 331, 300 }, + [5] = { 32.7, 70.2, 331, 300 }, + [6] = { 34, 70.1, 331, 300 }, + [7] = { 33.3, 69.7, 331, 300 }, + [8] = { 33.9, 69.3, 331, 300 }, + [9] = { 30.8, 69.2, 331, 300 }, + [10] = { 32.1, 69, 331, 300 }, + [11] = { 31, 68.5, 331, 300 }, + [12] = { 31.5, 68.4, 331, 300 }, + [13] = { 34.5, 68.4, 331, 300 }, + [14] = { 32.7, 68.3, 331, 300 }, + [15] = { 33.3, 68.2, 331, 300 }, + [16] = { 31.6, 67.5, 331, 300 }, + [17] = { 34.6, 67.5, 331, 300 }, + [18] = { 32, 67.4, 331, 300 }, + [19] = { 32.6, 67.4, 331, 300 }, + [20] = { 35.4, 67.4, 331, 300 }, + [21] = { 34.4, 67.4, 331, 300 }, + [22] = { 34.9, 67.3, 331, 300 }, + [23] = { 33.8, 67.3, 331, 300 }, + [24] = { 33.2, 67.3, 331, 300 }, + [25] = { 34.4, 66.5, 331, 300 }, + [26] = { 33.5, 66.3, 331, 300 }, + [27] = { 32.4, 66.2, 331, 300 }, + [28] = { 34.1, 65.7, 331, 300 }, + [29] = { 33.7, 65.7, 331, 300 }, + [30] = { 31.8, 65.7, 331, 300 }, + [31] = { 34.2, 64.7, 331, 300 }, + [32] = { 33.1, 64.5, 331, 300 }, + [33] = { 70.3, 31.5, 406, 300 }, + [34] = { 68.7, 30.6, 406, 300 }, + [35] = { 68, 27.8, 406, 300 }, + [36] = { 68.2, 26.9, 406, 300 }, + }, + ["lvl"] = "22-23", + }, + [3784] = { + ["coords"] = { + [1] = { 66.6, 84, 331, 300 }, + [2] = { 66.9, 84, 331, 300 }, + [3] = { 66.2, 82.1, 331, 300 }, + [4] = { 67, 82.1, 331, 300 }, + [5] = { 65.8, 81.7, 331, 300 }, + [6] = { 67.1, 81.5, 331, 300 }, + [7] = { 66.9, 81.3, 331, 300 }, + [8] = { 67.4, 80.8, 331, 300 }, + [9] = { 66.7, 80.4, 331, 300 }, + [10] = { 65.9, 80.3, 331, 300 }, + [11] = { 65.2, 80.1, 331, 300 }, + [12] = { 66.7, 79.7, 331, 300 }, + [13] = { 65.6, 79.7, 331, 300 }, + [14] = { 59.8, 79.6, 331, 300 }, + [15] = { 58.9, 79.2, 331, 300 }, + [16] = { 59, 78.9, 331, 300 }, + [17] = { 59.7, 78.6, 331, 300 }, + [18] = { 59.8, 77.9, 331, 300 }, + [19] = { 60.9, 76.8, 331, 300 }, + [20] = { 62, 74.9, 331, 300 }, + [21] = { 79.4, 73.6, 331, 300 }, + [22] = { 80.6, 73.4, 331, 300 }, + [23] = { 79, 72.5, 331, 300 }, + [24] = { 63, 71.6, 331, 300 }, + [25] = { 79.4, 70.1, 331, 300 }, + [26] = { 85.2, 69, 331, 300 }, + [27] = { 86, 68.8, 331, 300 }, + [28] = { 85.8, 68.1, 331, 300 }, + [29] = { 85.3, 67.5, 331, 300 }, + [30] = { 64.5, 67.4, 331, 300 }, + [31] = { 79.3, 66.4, 331, 300 }, + [32] = { 65.6, 65.5, 331, 300 }, + [33] = { 79.1, 64.9, 331, 300 }, + [34] = { 84.1, 64.8, 331, 300 }, + [35] = { 66.6, 64.4, 331, 300 }, + [36] = { 82.4, 64.1, 331, 300 }, + [37] = { 81.4, 63.7, 331, 300 }, + [38] = { 78.4, 63, 331, 300 }, + [39] = { 68.6, 62.9, 331, 300 }, + [40] = { 80.6, 62.5, 331, 300 }, + [41] = { 78.4, 61.2, 331, 300 }, + [42] = { 69.7, 60.3, 331, 300 }, + [43] = { 78.5, 59.7, 331, 300 }, + [44] = { 79, 57.9, 331, 300 }, + [45] = { 69.9, 57.9, 331, 300 }, + [46] = { 70.7, 56, 331, 300 }, + [47] = { 71.1, 55.5, 331, 300 }, + [48] = { 71.9, 54.3, 331, 300 }, + [49] = { 78.7, 53.5, 331, 300 }, + [50] = { 74.7, 46.5, 331, 300 }, + }, + ["lvl"] = "26-27", + }, + [3789] = { + ["coords"] = { + [1] = { 50, 39.6, 331, 300 }, + [2] = { 49.8, 39.6, 331, 300 }, + [3] = { 50.3, 39.5, 331, 300 }, + [4] = { 49.7, 39.2, 331, 300 }, + [5] = { 49.9, 38.5, 331, 300 }, + [6] = { 50.1, 38.4, 331, 300 }, + [7] = { 50.9, 37.9, 331, 300 }, + [8] = { 53.4, 37.7, 331, 300 }, + [9] = { 53.2, 37.6, 331, 300 }, + [10] = { 53.2, 37.4, 331, 300 }, + [11] = { 52.8, 35.5, 331, 300 }, + [12] = { 52.7, 33.5, 331, 300 }, + [13] = { 53.3, 32.8, 331, 300 }, + [14] = { 52, 99.8, 361, 300 }, + [15] = { 51.8, 97.8, 361, 300 }, + [16] = { 52.5, 97.1, 361, 300 }, + }, + ["lvl"] = "28-29", + }, + [3791] = { + ["coords"] = { + [1] = { 49.9, 39.3, 331, 300 }, + [2] = { 50.3, 39.2, 331, 300 }, + [3] = { 50, 39, 331, 300 }, + [4] = { 52, 37.8, 331, 300 }, + }, + ["lvl"] = "29-30", + }, + [3792] = { + ["coords"] = { + [1] = { 49.7, 39.5, 331, 75600 }, + }, + ["lvl"] = "32", + ["rnk"] = "4", + }, + [3793] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "1", + }, + [3794] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [3795] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [3796] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "1", + }, + [3797] = { + ["coords"] = { + [1] = { 61.9, 51.7, 331, 300 }, + [2] = { 62.1, 51.2, 331, 300 }, + [3] = { 62.2, 51.1, 331, 300 }, + [4] = { 61.9, 50.9, 331, 300 }, + [5] = { 62.4, 50.9, 331, 300 }, + [6] = { 62, 50.9, 331, 300 }, + [7] = { 62.2, 50.8, 331, 300 }, + [8] = { 62.1, 50.8, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25-26", + }, + [3799] = { + ["coords"] = { + [1] = { 74.8, 76.3, 331, 240 }, + [2] = { 77, 76.2, 331, 240 }, + [3] = { 76.3, 75.6, 331, 240 }, + [4] = { 77.3, 75.2, 331, 240 }, + [5] = { 78.4, 75, 331, 240 }, + [6] = { 76.2, 75, 331, 240 }, + [7] = { 75.5, 74.3, 331, 240 }, + [8] = { 76.1, 73.2, 331, 240 }, + [9] = { 75.3, 73.1, 331, 240 }, + }, + ["lvl"] = "28-29", + }, + [3801] = { + ["coords"] = { + [1] = { 75.7, 76.2, 331, 300 }, + [2] = { 74.7, 74.2, 331, 300 }, + [3] = { 75.3, 73.1, 331, 300 }, + }, + ["lvl"] = "28-29", + }, + [3802] = { + ["coords"] = { + [1] = { 77.8, 74.3, 331, 300 }, + }, + ["lvl"] = "29-30", + }, + [3803] = { + ["coords"] = { + [1] = { 76.2, 75.4, 331, 300 }, + [2] = { 77.3, 75.3, 331, 300 }, + [3] = { 75.4, 75.1, 331, 300 }, + }, + ["lvl"] = "29-30", + }, + [3804] = { + ["coords"] = { + [1] = { 77.2, 76.2, 331, 300 }, + [2] = { 76.7, 76, 331, 300 }, + [3] = { 75.7, 75.7, 331, 300 }, + [4] = { 76.2, 75.4, 331, 300 }, + [5] = { 76.3, 75.2, 331, 300 }, + [6] = { 75.6, 75, 331, 300 }, + [7] = { 76.9, 74.9, 331, 300 }, + [8] = { 75.9, 74.7, 331, 300 }, + [9] = { 75.5, 74.6, 331, 300 }, + [10] = { 78.4, 74.6, 331, 300 }, + [11] = { 76.3, 74.5, 331, 300 }, + [12] = { 76.7, 74.1, 331, 300 }, + [13] = { 74.8, 74, 331, 300 }, + [14] = { 75.3, 74, 331, 300 }, + [15] = { 78, 73.9, 331, 300 }, + [16] = { 76.6, 73.5, 331, 300 }, + [17] = { 76.1, 73.2, 331, 300 }, + [18] = { 77.3, 73, 331, 300 }, + [19] = { 75.2, 72.4, 331, 300 }, + [20] = { 75.5, 72.3, 331, 300 }, + [21] = { 75.1, 72.3, 331, 300 }, + [22] = { 75.1, 71.5, 331, 300 }, + [23] = { 75.3, 71.3, 331, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "28-29", + }, + [3806] = { + ["coords"] = { + [1] = { 75.8, 76.1, 331, 300 }, + [2] = { 77.4, 75.9, 331, 300 }, + [3] = { 78.3, 75.3, 331, 300 }, + [4] = { 77.9, 75.2, 331, 300 }, + [5] = { 75.8, 74.5, 331, 300 }, + [6] = { 77.2, 74.3, 331, 300 }, + [7] = { 77.3, 73.9, 331, 300 }, + [8] = { 77.9, 73.4, 331, 300 }, + [9] = { 75.1, 72, 331, 300 }, + [10] = { 75.5, 71.9, 331, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "29-30", + }, + [3807] = { + ["coords"] = { + [1] = { 77.2, 76.2, 331, 300 }, + [2] = { 76.7, 76, 331, 300 }, + [3] = { 75.7, 75.7, 331, 300 }, + [4] = { 76.2, 75.4, 331, 300 }, + [5] = { 76.3, 75.2, 331, 300 }, + [6] = { 75.6, 75, 331, 300 }, + [7] = { 76.9, 74.9, 331, 300 }, + [8] = { 75.9, 74.7, 331, 300 }, + [9] = { 75.5, 74.6, 331, 300 }, + [10] = { 78.4, 74.6, 331, 300 }, + [11] = { 76.3, 74.5, 331, 300 }, + [12] = { 76.7, 74.1, 331, 300 }, + [13] = { 74.8, 74, 331, 300 }, + [14] = { 75.3, 74, 331, 300 }, + [15] = { 78, 73.9, 331, 300 }, + [16] = { 76.6, 73.5, 331, 300 }, + [17] = { 76.1, 73.2, 331, 300 }, + [18] = { 77.3, 73, 331, 300 }, + [19] = { 75.2, 72.4, 331, 300 }, + [20] = { 75.5, 72.3, 331, 300 }, + [21] = { 75.1, 72.3, 331, 300 }, + [22] = { 75.1, 71.5, 331, 300 }, + [23] = { 75.3, 71.3, 331, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "29-30", + }, + [3808] = { + ["coords"] = { + [1] = { 77.2, 76.2, 331, 300 }, + [2] = { 76.7, 76, 331, 300 }, + [3] = { 75.7, 75.7, 331, 300 }, + [4] = { 76.2, 75.4, 331, 300 }, + [5] = { 76.3, 75.2, 331, 300 }, + [6] = { 75.6, 75, 331, 300 }, + [7] = { 76.9, 74.9, 331, 300 }, + [8] = { 75.9, 74.7, 331, 300 }, + [9] = { 75.5, 74.6, 331, 300 }, + [10] = { 78.4, 74.6, 331, 300 }, + [11] = { 76.3, 74.5, 331, 300 }, + [12] = { 76.7, 74.1, 331, 300 }, + [13] = { 74.8, 74, 331, 300 }, + [14] = { 75.3, 74, 331, 300 }, + [15] = { 78, 73.9, 331, 300 }, + [16] = { 76.6, 73.5, 331, 300 }, + [17] = { 76.1, 73.2, 331, 300 }, + [18] = { 77.3, 73, 331, 300 }, + [19] = { 75.2, 72.4, 331, 300 }, + [20] = { 75.5, 72.3, 331, 300 }, + [21] = { 75.1, 72.3, 331, 300 }, + [22] = { 75.1, 71.5, 331, 300 }, + [23] = { 75.3, 71.3, 331, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "28-29", + }, + [3809] = { + ["coords"] = { + [1] = { 66.8, 87.7, 331, 300 }, + [2] = { 66.1, 86.5, 331, 300 }, + [3] = { 67.9, 85.5, 331, 300 }, + [4] = { 66.8, 83.9, 331, 300 }, + [5] = { 66.5, 78.7, 331, 300 }, + [6] = { 67.2, 78.2, 331, 300 }, + [7] = { 63.7, 77.2, 331, 300 }, + [8] = { 67, 76.8, 331, 300 }, + [9] = { 37.4, 71.5, 331, 300 }, + [10] = { 41.1, 71.1, 331, 300 }, + [11] = { 39.3, 70.4, 331, 300 }, + [12] = { 38.5, 70.3, 331, 300 }, + [13] = { 42, 70, 331, 300 }, + [14] = { 36.5, 70, 331, 300 }, + [15] = { 41.4, 69.7, 331, 300 }, + [16] = { 39.4, 69.3, 331, 300 }, + [17] = { 36.7, 68.3, 331, 300 }, + [18] = { 39.8, 67.2, 331, 300 }, + [19] = { 41.4, 66.9, 331, 300 }, + [20] = { 44.6, 66.7, 331, 300 }, + [21] = { 40.6, 66.6, 331, 300 }, + [22] = { 41, 66.6, 331, 300 }, + [23] = { 40.6, 66.1, 331, 300 }, + [24] = { 44.3, 65.9, 331, 300 }, + [25] = { 39.6, 65.2, 331, 300 }, + [26] = { 48.3, 65.2, 331, 300 }, + [27] = { 45.8, 65, 331, 300 }, + [28] = { 42.1, 64.5, 331, 300 }, + [29] = { 38.8, 64.1, 331, 300 }, + [30] = { 44.1, 63.8, 331, 300 }, + [31] = { 48.7, 63.3, 331, 300 }, + [32] = { 39.7, 63.3, 331, 300 }, + [33] = { 45.8, 63.3, 331, 300 }, + [34] = { 43.1, 62.9, 331, 300 }, + [35] = { 38.3, 62.8, 331, 300 }, + [36] = { 44.7, 62.5, 331, 300 }, + [37] = { 39.5, 62.2, 331, 300 }, + [38] = { 37.9, 62.2, 331, 300 }, + [39] = { 41.3, 62, 331, 300 }, + [40] = { 46.8, 61.9, 331, 300 }, + [41] = { 41.9, 61.4, 331, 300 }, + [42] = { 45.1, 61.3, 331, 300 }, + [43] = { 42.5, 61.3, 331, 300 }, + [44] = { 45.9, 60.8, 331, 300 }, + [45] = { 45.9, 60.4, 331, 300 }, + [46] = { 37.6, 60.2, 331, 300 }, + [47] = { 42.9, 59.8, 331, 300 }, + [48] = { 45.9, 59.6, 331, 300 }, + [49] = { 43.2, 58.6, 331, 300 }, + [50] = { 45, 58, 331, 300 }, + [51] = { 51.3, 56.2, 331, 300 }, + [52] = { 50.4, 56.1, 331, 300 }, + [53] = { 57, 55.8, 331, 300 }, + [54] = { 51.4, 55.3, 331, 300 }, + [55] = { 55.2, 55.1, 331, 300 }, + [56] = { 50.4, 55.1, 331, 300 }, + [57] = { 45.5, 54.6, 331, 300 }, + [58] = { 56.2, 54.6, 331, 300 }, + [59] = { 52.3, 54.4, 331, 300 }, + [60] = { 52.7, 53.9, 331, 300 }, + [61] = { 55, 53.8, 331, 300 }, + [62] = { 47.7, 53.6, 331, 300 }, + [63] = { 48.4, 53.5, 331, 300 }, + [64] = { 45, 53.4, 331, 300 }, + [65] = { 50.8, 53.4, 331, 300 }, + [66] = { 55.5, 53.3, 331, 300 }, + [67] = { 47.3, 53.3, 331, 300 }, + [68] = { 47.2, 52.8, 331, 300 }, + [69] = { 50.1, 51.8, 331, 300 }, + [70] = { 54.8, 51.3, 331, 300 }, + [71] = { 44.4, 51.3, 331, 300 }, + [72] = { 49.4, 51.1, 331, 300 }, + [73] = { 51.5, 50.3, 331, 300 }, + [74] = { 50.6, 47.5, 331, 300 }, + [75] = { 43.5, 46, 331, 300 }, + [76] = { 50.1, 45.1, 331, 300 }, + [77] = { 50.4, 45, 331, 300 }, + [78] = { 42.4, 44.3, 331, 300 }, + [79] = { 42.9, 44.1, 331, 300 }, + [80] = { 51.7, 44, 331, 300 }, + [81] = { 41.3, 43.9, 331, 300 }, + [82] = { 42, 43.1, 331, 300 }, + [83] = { 45.9, 42.6, 331, 300 }, + [84] = { 40.4, 42.6, 331, 300 }, + [85] = { 32.5, 42.5, 331, 300 }, + [86] = { 39.3, 40.8, 331, 300 }, + [87] = { 31.5, 40.7, 331, 300 }, + [88] = { 39.5, 40.5, 331, 300 }, + [89] = { 37.8, 39.4, 331, 300 }, + [90] = { 38.4, 37.5, 331, 300 }, + [91] = { 33.7, 35.8, 331, 300 }, + }, + ["lvl"] = "21-22", + }, + [3810] = { + ["coords"] = { + [1] = { 63.3, 68.3, 331, 300 }, + [2] = { 62.2, 66.9, 331, 300 }, + [3] = { 62.1, 64.5, 331, 300 }, + [4] = { 62.6, 64.1, 331, 300 }, + [5] = { 66, 63.5, 331, 300 }, + [6] = { 61.1, 63.5, 331, 300 }, + [7] = { 62.1, 63.5, 331, 300 }, + [8] = { 65.6, 63.1, 331, 300 }, + [9] = { 66.1, 62.7, 331, 300 }, + [10] = { 67.4, 62.2, 331, 300 }, + [11] = { 61.7, 62.1, 331, 300 }, + [12] = { 62.7, 62, 331, 300 }, + [13] = { 62.3, 61.7, 331, 300 }, + [14] = { 68.5, 61.5, 331, 300 }, + [15] = { 65.8, 60.6, 331, 300 }, + [16] = { 65.1, 60.3, 331, 300 }, + [17] = { 69, 59.5, 331, 300 }, + [18] = { 64.7, 59.2, 331, 300 }, + [19] = { 64.7, 58.7, 331, 300 }, + [20] = { 64.2, 58.5, 331, 300 }, + [21] = { 64.3, 56.8, 331, 300 }, + [22] = { 69.6, 56.6, 331, 300 }, + [23] = { 64.5, 55.5, 331, 300 }, + [24] = { 63.8, 55.2, 331, 300 }, + [25] = { 70.8, 54.6, 331, 300 }, + [26] = { 63.9, 53.7, 331, 300 }, + [27] = { 71.9, 52.1, 331, 300 }, + [28] = { 72.5, 51.8, 331, 300 }, + [29] = { 70, 51.1, 331, 300 }, + [30] = { 73.2, 50.9, 331, 300 }, + [31] = { 69.7, 50.9, 331, 300 }, + [32] = { 68.8, 50.8, 331, 300 }, + [33] = { 68.7, 50.2, 331, 300 }, + [34] = { 67.4, 50.1, 331, 300 }, + [35] = { 70.5, 50, 331, 300 }, + [36] = { 71.2, 49.8, 331, 300 }, + [37] = { 71, 49.7, 331, 300 }, + [38] = { 71.7, 49.1, 331, 300 }, + [39] = { 72.2, 48.2, 331, 300 }, + [40] = { 73.6, 47.8, 331, 300 }, + [41] = { 73, 47.4, 331, 300 }, + [42] = { 73.2, 46.6, 331, 300 }, + }, + ["lvl"] = "25-26", + }, + [3811] = { + ["coords"] = { + [1] = { 82.9, 48.4, 331, 300 }, + [2] = { 82.6, 47.1, 331, 300 }, + [3] = { 88.9, 46.6, 331, 300 }, + }, + ["lvl"] = "29-30", + }, + [3812] = { + ["coords"] = { + [1] = { 26.9, 99.3, 148, 300 }, + [2] = { 26.3, 98.8, 148, 300 }, + [3] = { 26.9, 98, 148, 300 }, + [4] = { 30, 97.9, 148, 300 }, + [5] = { 28.4, 97.5, 148, 300 }, + [6] = { 27, 96.7, 148, 300 }, + [7] = { 27.9, 96.6, 148, 300 }, + [8] = { 30, 96.6, 148, 300 }, + [9] = { 29.5, 96, 148, 300 }, + [10] = { 27.4, 95.9, 148, 300 }, + [11] = { 24.9, 95.3, 148, 300 }, + [12] = { 10, 35.4, 331, 300 }, + [13] = { 10.1, 33.4, 331, 300 }, + [14] = { 11.8, 32.7, 331, 300 }, + [15] = { 10.6, 32.1, 331, 300 }, + [16] = { 8.8, 31.1, 331, 300 }, + [17] = { 12.9, 30.7, 331, 300 }, + [18] = { 12.6, 30.3, 331, 300 }, + [19] = { 10, 29.7, 331, 300 }, + [20] = { 14, 29.4, 331, 300 }, + [21] = { 11.8, 29.1, 331, 300 }, + [22] = { 11.1, 28.6, 331, 300 }, + [23] = { 13.5, 28.5, 331, 300 }, + [24] = { 12.4, 28.4, 331, 300 }, + [25] = { 15.4, 27.4, 331, 300 }, + [26] = { 12, 27.3, 331, 300 }, + [27] = { 12.9, 26.6, 331, 300 }, + [28] = { 12.4, 22.9, 331, 300 }, + [29] = { 12.9, 22.2, 331, 300 }, + [30] = { 14.6, 21.4, 331, 300 }, + [31] = { 13.5, 21.1, 331, 300 }, + [32] = { 12.7, 18.8, 331, 300 }, + [33] = { 9, 17.6, 331, 300 }, + [34] = { 8.4, 17, 331, 300 }, + [35] = { 9, 16.1, 331, 300 }, + [36] = { 12.6, 16, 331, 300 }, + [37] = { 10.8, 15.5, 331, 300 }, + [38] = { 9.1, 14.6, 331, 300 }, + [39] = { 10.2, 14.6, 331, 300 }, + [40] = { 12.5, 14.5, 331, 300 }, + [41] = { 11.9, 13.8, 331, 300 }, + [42] = { 9.5, 13.7, 331, 300 }, + [43] = { 6.7, 13, 331, 300 }, + }, + ["lvl"] = "19-20", + }, + [3814] = { + ["coords"] = { + [1] = { 32.1, 99.7, 148, 300 }, + [2] = { 28.4, 98.9, 148, 300 }, + [3] = { 25.4, 98.8, 148, 300 }, + [4] = { 29.4, 98.8, 148, 300 }, + [5] = { 28.8, 98.2, 148, 300 }, + [6] = { 27.7, 98.2, 148, 300 }, + [7] = { 29.4, 97.6, 148, 300 }, + [8] = { 26.3, 97.6, 148, 300 }, + [9] = { 27.3, 97.4, 148, 300 }, + [10] = { 30.3, 97.2, 148, 300 }, + [11] = { 24.1, 97.2, 148, 300 }, + [12] = { 28.9, 96.6, 148, 300 }, + [13] = { 24.4, 95.8, 148, 300 }, + [14] = { 26.3, 95.5, 148, 300 }, + [15] = { 26.8, 95.3, 148, 300 }, + [16] = { 26.5, 94.5, 148, 300 }, + [17] = { 27.3, 94.2, 148, 300 }, + [18] = { 25.8, 93.5, 148, 300 }, + [19] = { 9.5, 34.6, 331, 300 }, + [20] = { 9, 33.5, 331, 300 }, + [21] = { 9.8, 32.6, 331, 300 }, + [22] = { 10.7, 32.5, 331, 300 }, + [23] = { 10.1, 32, 331, 300 }, + [24] = { 11.4, 31.7, 331, 300 }, + [25] = { 9.7, 31, 331, 300 }, + [26] = { 10.8, 30.7, 331, 300 }, + [27] = { 13.5, 30.2, 331, 300 }, + [28] = { 9, 28.6, 331, 300 }, + [29] = { 9, 26.7, 331, 300 }, + [30] = { 10.6, 25.9, 331, 300 }, + [31] = { 11.3, 24.8, 331, 300 }, + [32] = { 13.6, 23.1, 331, 300 }, + [33] = { 14.2, 22.1, 331, 300 }, + [34] = { 12.5, 21.4, 331, 300 }, + [35] = { 13.6, 19.8, 331, 300 }, + [36] = { 14.1, 18.9, 331, 300 }, + [37] = { 15, 18, 331, 300 }, + [38] = { 10.7, 17.1, 331, 300 }, + [39] = { 7.3, 17, 331, 300 }, + [40] = { 11.8, 17, 331, 300 }, + [41] = { 11.1, 16.3, 331, 300 }, + [42] = { 9.9, 16.3, 331, 300 }, + [43] = { 11.8, 15.6, 331, 300 }, + [44] = { 8.3, 15.6, 331, 300 }, + [45] = { 9.5, 15.4, 331, 300 }, + [46] = { 12.9, 15.2, 331, 300 }, + [47] = { 5.9, 15.2, 331, 300 }, + [48] = { 11.2, 14.6, 331, 300 }, + [49] = { 6.2, 13.6, 331, 300 }, + [50] = { 8.3, 13.3, 331, 300 }, + [51] = { 8.9, 13, 331, 300 }, + [52] = { 8.6, 12.1, 331, 300 }, + [53] = { 9.4, 11.7, 331, 300 }, + [54] = { 7.8, 11, 331, 300 }, + }, + ["lvl"] = "20-21", + }, + [3815] = { + ["coords"] = { + [1] = { 61.9, 51.2, 331, 300 }, + [2] = { 62.1, 50.8, 331, 300 }, + [3] = { 50.3, 47.6, 331, 300 }, + }, + ["lvl"] = "26-27", + }, + [3816] = { + ["coords"] = { + [1] = { 44.3, 99.6, 148, 300 }, + [2] = { 43.2, 99.6, 148, 300 }, + [3] = { 42, 99.5, 148, 300 }, + [4] = { 33.7, 99.2, 148, 300 }, + [5] = { 43.8, 99, 148, 300 }, + [6] = { 42.5, 98.9, 148, 300 }, + [7] = { 41.9, 97.8, 148, 300 }, + [8] = { 41.3, 97.6, 148, 300 }, + [9] = { 42.6, 97.5, 148, 300 }, + [10] = { 44.2, 97.1, 148, 300 }, + [11] = { 22.3, 39.9, 331, 300 }, + [12] = { 23.1, 38.9, 331, 300 }, + [13] = { 18.1, 38.8, 331, 300 }, + [14] = { 19.6, 38.8, 331, 300 }, + [15] = { 21.6, 38.4, 331, 300 }, + [16] = { 17, 38.3, 331, 300 }, + [17] = { 19, 38.2, 331, 300 }, + [18] = { 20, 38.1, 331, 300 }, + [19] = { 18, 38.1, 331, 300 }, + [20] = { 21.7, 37.7, 331, 300 }, + [21] = { 21.8, 37.6, 331, 300 }, + [22] = { 17.6, 37.4, 331, 300 }, + [23] = { 17.1, 36.8, 331, 300 }, + [24] = { 24.1, 36.7, 331, 300 }, + [25] = { 16.3, 35.9, 331, 300 }, + [26] = { 23.5, 35.9, 331, 300 }, + [27] = { 19.8, 35.8, 331, 300 }, + [28] = { 22.4, 35.8, 331, 300 }, + [29] = { 19.4, 35.4, 331, 300 }, + [30] = { 26.3, 35.4, 331, 300 }, + [31] = { 22.8, 34.5, 331, 300 }, + [32] = { 28, 34.4, 331, 300 }, + [33] = { 18.7, 34.4, 331, 300 }, + [34] = { 22.3, 34.3, 331, 300 }, + [35] = { 22.4, 33.8, 331, 300 }, + [36] = { 27.4, 33.8, 331, 300 }, + [37] = { 21.8, 33.2, 331, 300 }, + [38] = { 20.5, 33, 331, 300 }, + [39] = { 21.1, 33, 331, 300 }, + [40] = { 29.1, 31.9, 331, 300 }, + [41] = { 27.7, 31.9, 331, 300 }, + [42] = { 28.8, 31.9, 331, 300 }, + [43] = { 20.2, 31.6, 331, 300 }, + [44] = { 15.3, 30.9, 331, 300 }, + [45] = { 22.2, 30.7, 331, 300 }, + [46] = { 28.3, 30.5, 331, 300 }, + [47] = { 17.6, 30.3, 331, 300 }, + [48] = { 15.9, 30, 331, 300 }, + [49] = { 18, 29.9, 331, 300 }, + [50] = { 22.7, 29.9, 331, 300 }, + [51] = { 22.2, 29.8, 331, 300 }, + [52] = { 16.9, 29.4, 331, 300 }, + [53] = { 19.1, 29, 331, 300 }, + [54] = { 29.1, 28.9, 331, 300 }, + [55] = { 28.6, 28.9, 331, 300 }, + [56] = { 22.9, 28.7, 331, 300 }, + [57] = { 16.5, 28.4, 331, 300 }, + [58] = { 33.4, 28, 331, 300 }, + [59] = { 19.6, 27.7, 331, 300 }, + [60] = { 26.6, 27.6, 331, 300 }, + [61] = { 32.6, 27.6, 331, 300 }, + [62] = { 29.5, 27.5, 331, 300 }, + [63] = { 31.5, 27.3, 331, 300 }, + [64] = { 23.8, 26.8, 331, 300 }, + [65] = { 29.8, 26.6, 331, 300 }, + [66] = { 28.8, 26.4, 331, 300 }, + [67] = { 29.2, 26.4, 331, 300 }, + [68] = { 24.8, 25.9, 331, 300 }, + [69] = { 32.1, 25.8, 331, 300 }, + [70] = { 17.9, 25, 331, 300 }, + [71] = { 15.9, 24.8, 331, 300 }, + [72] = { 16, 23.8, 331, 300 }, + [73] = { 25.3, 23.6, 331, 300 }, + [74] = { 28.6, 22.6, 331, 300 }, + [75] = { 16.5, 22.5, 331, 300 }, + [76] = { 29, 22, 331, 300 }, + [77] = { 17, 20.9, 331, 300 }, + [78] = { 26.8, 20.6, 331, 300 }, + [79] = { 26.2, 19.7, 331, 300 }, + [80] = { 30.5, 19.1, 331, 300 }, + [81] = { 28, 18.6, 331, 300 }, + [82] = { 28.8, 18, 331, 300 }, + [83] = { 27.5, 17.9, 331, 300 }, + [84] = { 26.2, 17.8, 331, 300 }, + [85] = { 16.7, 17.5, 331, 300 }, + [86] = { 28.3, 17.2, 331, 300 }, + [87] = { 26.8, 17.1, 331, 300 }, + [88] = { 26.1, 15.8, 331, 300 }, + [89] = { 25.4, 15.7, 331, 300 }, + [90] = { 26.9, 15.6, 331, 300 }, + [91] = { 28.7, 15.1, 331, 300 }, + }, + ["lvl"] = "18-19", + }, + [3817] = { + ["coords"] = { + [1] = { 40.6, 72.9, 331, 300 }, + [2] = { 36.8, 71.6, 331, 300 }, + [3] = { 37.8, 71.5, 331, 300 }, + [4] = { 41.5, 71.1, 331, 300 }, + [5] = { 39.5, 70.3, 331, 300 }, + [6] = { 42.1, 70, 331, 300 }, + [7] = { 35.9, 69.3, 331, 300 }, + [8] = { 40, 69.2, 331, 300 }, + [9] = { 42.9, 68.5, 331, 300 }, + [10] = { 41.2, 68.1, 331, 300 }, + [11] = { 38.4, 68.1, 331, 300 }, + [12] = { 38.6, 67.6, 331, 300 }, + [13] = { 37, 67.5, 331, 300 }, + [14] = { 38.7, 66.4, 331, 300 }, + [15] = { 46.1, 66.3, 331, 300 }, + [16] = { 42, 65.8, 331, 300 }, + [17] = { 39.4, 65.7, 331, 300 }, + [18] = { 45.4, 64.5, 331, 300 }, + [19] = { 41.1, 64.4, 331, 300 }, + [20] = { 43, 64.2, 331, 300 }, + [21] = { 52.2, 64.1, 331, 300 }, + [22] = { 39.1, 63.8, 331, 300 }, + [23] = { 46.3, 63.6, 331, 300 }, + [24] = { 40, 63.5, 331, 300 }, + [25] = { 43.6, 63.4, 331, 300 }, + [26] = { 48.2, 63.1, 331, 300 }, + [27] = { 49.5, 63, 331, 300 }, + [28] = { 39.2, 62.9, 331, 300 }, + [29] = { 43.1, 62.8, 331, 300 }, + [30] = { 44.4, 62.6, 331, 300 }, + [31] = { 48.8, 62.3, 331, 300 }, + [32] = { 45.8, 62.1, 331, 300 }, + [33] = { 41.4, 61.9, 331, 300 }, + [34] = { 37.6, 61.8, 331, 300 }, + [35] = { 46.5, 61.2, 331, 300 }, + [36] = { 37.6, 61.1, 331, 300 }, + [37] = { 42.5, 61, 331, 300 }, + [38] = { 47.3, 60.9, 331, 300 }, + [39] = { 45.4, 60.4, 331, 300 }, + [40] = { 38.4, 60.3, 331, 300 }, + [41] = { 44.8, 59.4, 331, 300 }, + [42] = { 41.5, 59.3, 331, 300 }, + [43] = { 43, 58.8, 331, 300 }, + [44] = { 56.3, 57.9, 331, 300 }, + [45] = { 58, 57.7, 331, 300 }, + [46] = { 56.3, 56.4, 331, 300 }, + [47] = { 52, 56.3, 331, 300 }, + [48] = { 48.6, 55.9, 331, 300 }, + [49] = { 54.9, 55.7, 331, 300 }, + [50] = { 55.6, 55.2, 331, 300 }, + [51] = { 52.6, 54.5, 331, 300 }, + [52] = { 51.1, 54.3, 331, 300 }, + [53] = { 54.2, 54.2, 331, 300 }, + [54] = { 47, 53.5, 331, 300 }, + [55] = { 51.8, 53.3, 331, 300 }, + [56] = { 54.2, 53.1, 331, 300 }, + [57] = { 50.3, 52.8, 331, 300 }, + [58] = { 55.5, 52.7, 331, 300 }, + [59] = { 47.5, 52.3, 331, 300 }, + [60] = { 56, 51.8, 331, 300 }, + [61] = { 54.3, 51.7, 331, 300 }, + [62] = { 50.2, 51.2, 331, 300 }, + [63] = { 50.2, 50.4, 331, 300 }, + [64] = { 51, 49.9, 331, 300 }, + [65] = { 49.8, 48.7, 331, 300 }, + [66] = { 51.5, 48.6, 331, 300 }, + [67] = { 49.9, 46.7, 331, 300 }, + [68] = { 50.1, 46.6, 331, 300 }, + [69] = { 52.1, 45.4, 331, 300 }, + [70] = { 51.1, 45.2, 331, 300 }, + }, + ["lvl"] = "22-23", + }, + [3818] = { + ["coords"] = { + [1] = { 67.9, 70, 331, 300 }, + [2] = { 69.1, 69.9, 331, 300 }, + [3] = { 69.2, 69.2, 331, 300 }, + [4] = { 68.6, 69, 331, 300 }, + [5] = { 66.3, 69, 331, 300 }, + [6] = { 66.8, 68.3, 331, 300 }, + [7] = { 69, 68, 331, 300 }, + [8] = { 65.8, 67.3, 331, 300 }, + [9] = { 69.1, 67.2, 331, 300 }, + [10] = { 68, 67, 331, 300 }, + [11] = { 65.8, 66.5, 331, 300 }, + [12] = { 69.5, 65.6, 331, 300 }, + [13] = { 67, 65, 331, 300 }, + [14] = { 68.4, 64.4, 331, 300 }, + [15] = { 69.6, 63.9, 331, 300 }, + [16] = { 76.2, 57.7, 331, 300 }, + [17] = { 72.1, 57.3, 331, 300 }, + [18] = { 71.3, 57.1, 331, 300 }, + [19] = { 71.9, 56.9, 331, 300 }, + [20] = { 72.8, 56.5, 331, 300 }, + [21] = { 73.2, 56.2, 331, 300 }, + [22] = { 73.6, 56, 331, 300 }, + [23] = { 75.9, 55.9, 331, 300 }, + [24] = { 76.6, 54.8, 331, 300 }, + [25] = { 72.7, 54.4, 331, 300 }, + [26] = { 75.8, 53.9, 331, 300 }, + [27] = { 76.4, 53.3, 331, 300 }, + [28] = { 75.9, 52.2, 331, 300 }, + [29] = { 64.4, 51, 331, 300 }, + [30] = { 62.2, 47.5, 331, 300 }, + [31] = { 60.6, 47, 331, 300 }, + [32] = { 61.4, 46.5, 331, 300 }, + [33] = { 61.2, 45.8, 331, 300 }, + [34] = { 60.3, 44.9, 331, 300 }, + [35] = { 62.9, 44.7, 331, 300 }, + [36] = { 63.9, 44.1, 331, 300 }, + [37] = { 62, 44, 331, 300 }, + [38] = { 59.4, 43.8, 331, 300 }, + [39] = { 58.2, 43.7, 331, 300 }, + [40] = { 59.3, 43, 331, 300 }, + [41] = { 61.5, 42.8, 331, 300 }, + [42] = { 61, 42.2, 331, 300 }, + [43] = { 58.1, 42.2, 331, 300 }, + [44] = { 57.2, 42.1, 331, 300 }, + [45] = { 62.1, 41.7, 331, 300 }, + [46] = { 58.3, 41.7, 331, 300 }, + [47] = { 55.8, 41.3, 331, 300 }, + [48] = { 58.7, 41.1, 331, 300 }, + [49] = { 56.5, 41.1, 331, 300 }, + [50] = { 54.1, 40.8, 331, 300 }, + [51] = { 55.8, 39.7, 331, 300 }, + [52] = { 61.8, 39.6, 331, 300 }, + [53] = { 54.5, 39.5, 331, 300 }, + [54] = { 57.9, 38.9, 331, 300 }, + [55] = { 59.3, 38.2, 331, 300 }, + [56] = { 60.6, 38, 331, 300 }, + [57] = { 57.1, 37.9, 331, 300 }, + [58] = { 58.7, 37, 331, 300 }, + [59] = { 59.1, 35.8, 331, 300 }, + [60] = { 58.7, 35.5, 331, 300 }, + [61] = { 52.5, 35.3, 331, 300 }, + [62] = { 55.4, 35.3, 331, 300 }, + [63] = { 53.6, 35.2, 331, 300 }, + [64] = { 54.5, 34.9, 331, 300 }, + [65] = { 57, 34.5, 331, 300 }, + [66] = { 58.1, 34.5, 331, 300 }, + [67] = { 55.2, 33.9, 331, 300 }, + [68] = { 58.4, 33.5, 331, 300 }, + [69] = { 56.3, 33.3, 331, 300 }, + [70] = { 54.9, 32.9, 331, 300 }, + [71] = { 53.6, 32.7, 331, 300 }, + [72] = { 57.5, 32.4, 331, 300 }, + [73] = { 54.1, 31.6, 331, 300 }, + [74] = { 58, 31, 331, 300 }, + [75] = { 57, 31, 331, 300 }, + [76] = { 55, 30.2, 331, 300 }, + [77] = { 56.3, 30, 331, 300 }, + [78] = { 56.9, 29.5, 331, 300 }, + [79] = { 57.9, 99.8, 361, 300 }, + [80] = { 51.7, 99.6, 361, 300 }, + [81] = { 54.5, 99.6, 361, 300 }, + [82] = { 52.7, 99.5, 361, 300 }, + [83] = { 53.6, 99.2, 361, 300 }, + [84] = { 56.2, 98.8, 361, 300 }, + [85] = { 57.3, 98.8, 361, 300 }, + [86] = { 54.3, 98.2, 361, 300 }, + [87] = { 57.5, 97.8, 361, 300 }, + [88] = { 55.4, 97.6, 361, 300 }, + [89] = { 54.1, 97.2, 361, 300 }, + [90] = { 52.7, 96.9, 361, 300 }, + [91] = { 56.7, 96.6, 361, 300 }, + [92] = { 53.3, 95.8, 361, 300 }, + [93] = { 57.2, 95.3, 361, 300 }, + [94] = { 56.1, 95.3, 361, 300 }, + [95] = { 54.2, 94.5, 361, 300 }, + [96] = { 55.4, 94.2, 361, 300 }, + [97] = { 56.1, 93.8, 361, 300 }, + }, + ["lvl"] = "26-27", + }, + [3819] = { + ["coords"] = { + [1] = { 64.2, 86.6, 331, 300 }, + [2] = { 70.4, 86.1, 331, 300 }, + [3] = { 70.5, 85.8, 331, 300 }, + [4] = { 63.9, 85.6, 331, 300 }, + [5] = { 65.6, 85.5, 331, 300 }, + [6] = { 64.5, 85.5, 331, 300 }, + [7] = { 64.3, 84.8, 331, 300 }, + [8] = { 70.4, 84.7, 331, 300 }, + [9] = { 65, 84.6, 331, 300 }, + [10] = { 64.9, 83.7, 331, 300 }, + [11] = { 73.5, 80.2, 331, 300 }, + [12] = { 63.4, 79.5, 331, 300 }, + [13] = { 61.5, 79.4, 331, 300 }, + [14] = { 62.8, 78.9, 331, 300 }, + [15] = { 62.2, 78.8, 331, 300 }, + [16] = { 73.7, 78.7, 331, 300 }, + [17] = { 63.5, 77.8, 331, 300 }, + [18] = { 70.6, 76.3, 331, 300 }, + [19] = { 77.1, 73.5, 331, 300 }, + [20] = { 68.6, 72.8, 331, 300 }, + [21] = { 73.7, 70.8, 331, 300 }, + [22] = { 78.3, 66.3, 331, 300 }, + [23] = { 35.7, 59.5, 331, 300 }, + [24] = { 31, 59.2, 331, 300 }, + [25] = { 19, 58.9, 331, 300 }, + [26] = { 34.9, 58.8, 331, 300 }, + [27] = { 20.6, 58.1, 331, 300 }, + [28] = { 21.4, 57.9, 331, 300 }, + [29] = { 22.3, 57.7, 331, 300 }, + [30] = { 20.2, 57.7, 331, 300 }, + [31] = { 34.8, 57.6, 331, 300 }, + [32] = { 19.2, 57.6, 331, 300 }, + [33] = { 23.1, 57.4, 331, 300 }, + [34] = { 28.9, 57.1, 331, 300 }, + [35] = { 21.2, 56.7, 331, 300 }, + [36] = { 30.9, 56.5, 331, 300 }, + [37] = { 18.9, 56.4, 331, 300 }, + [38] = { 28.6, 56.1, 331, 300 }, + [39] = { 35.7, 56.1, 331, 300 }, + [40] = { 19.2, 55.6, 331, 300 }, + [41] = { 22.7, 55.5, 331, 300 }, + [42] = { 24.6, 55.3, 331, 300 }, + [43] = { 35, 55.2, 331, 300 }, + [44] = { 19, 54.8, 331, 300 }, + [45] = { 29, 54.6, 331, 300 }, + [46] = { 18.4, 54.1, 331, 300 }, + [47] = { 31, 53.8, 331, 300 }, + [48] = { 24.6, 53.6, 331, 300 }, + [49] = { 33.3, 53.4, 331, 300 }, + [50] = { 29.5, 52.9, 331, 300 }, + [51] = { 27.1, 52.9, 331, 300 }, + [52] = { 31.1, 52.7, 331, 300 }, + [53] = { 19.1, 52.1, 331, 300 }, + [54] = { 30.6, 52, 331, 300 }, + [55] = { 18.3, 51.9, 331, 300 }, + [56] = { 17.7, 51.6, 331, 300 }, + [57] = { 26, 51.6, 331, 300 }, + [58] = { 27, 51.5, 331, 300 }, + [59] = { 26.9, 51.3, 331, 300 }, + [60] = { 29.3, 50.6, 331, 300 }, + [61] = { 44.2, 50.2, 331, 300 }, + [62] = { 20.9, 50.1, 331, 300 }, + [63] = { 19.4, 50, 331, 300 }, + [64] = { 30.4, 49.8, 331, 300 }, + [65] = { 19.1, 49.6, 331, 300 }, + [66] = { 20.7, 49.5, 331, 300 }, + [67] = { 26, 49.4, 331, 300 }, + [68] = { 30.3, 49.3, 331, 300 }, + [69] = { 21.6, 49.3, 331, 300 }, + [70] = { 32, 49.2, 331, 300 }, + [71] = { 22.8, 48.9, 331, 300 }, + [72] = { 30.9, 48.9, 331, 300 }, + [73] = { 22.4, 48.8, 331, 300 }, + [74] = { 22.9, 48.5, 331, 300 }, + [75] = { 20.9, 48.2, 331, 300 }, + [76] = { 18.7, 48, 331, 300 }, + [77] = { 43.5, 47.7, 331, 300 }, + [78] = { 42.5, 47.5, 331, 300 }, + [79] = { 17, 47.4, 331, 300 }, + [80] = { 23.8, 47.1, 331, 300 }, + [81] = { 23.3, 46.8, 331, 300 }, + [82] = { 17.7, 46.7, 331, 300 }, + [83] = { 22.9, 46.7, 331, 300 }, + [84] = { 43, 46.5, 331, 300 }, + [85] = { 15.4, 45.5, 331, 300 }, + [86] = { 16.8, 45.3, 331, 300 }, + [87] = { 35.5, 45.2, 331, 300 }, + [88] = { 15.3, 44.9, 331, 300 }, + [89] = { 41.8, 44.5, 331, 300 }, + [90] = { 42, 43.9, 331, 300 }, + [91] = { 40.7, 43.5, 331, 300 }, + [92] = { 25.7, 43.3, 331, 300 }, + [93] = { 33, 42, 331, 300 }, + [94] = { 40.7, 41.5, 331, 300 }, + [95] = { 39.3, 41.3, 331, 300 }, + [96] = { 41, 40.8, 331, 300 }, + [97] = { 35.5, 40.6, 331, 300 }, + [98] = { 33.3, 40.3, 331, 300 }, + [99] = { 38.3, 40.1, 331, 300 }, + [100] = { 39.8, 39.8, 331, 300 }, + [101] = { 41.6, 39.4, 331, 300 }, + [102] = { 37.4, 39.2, 331, 300 }, + [103] = { 38.2, 38.9, 331, 300 }, + [104] = { 38.8, 38.7, 331, 300 }, + [105] = { 32.7, 37.7, 331, 300 }, + [106] = { 32.1, 37.1, 331, 300 }, + [107] = { 33.3, 37, 331, 300 }, + [108] = { 34.4, 33.6, 331, 300 }, + [109] = { 37.7, 31.8, 331, 300 }, + [110] = { 54.1, 15.5, 406, 300 }, + }, + ["lvl"] = "20-21", + }, + [3820] = { + ["coords"] = { + [1] = { 57.2, 78.5, 331, 300 }, + [2] = { 57, 77.8, 331, 300 }, + [3] = { 55.4, 76.9, 331, 300 }, + [4] = { 55.7, 75.9, 331, 300 }, + [5] = { 55.8, 73.7, 331, 300 }, + [6] = { 57.2, 73.5, 331, 300 }, + [7] = { 57.6, 72.8, 331, 300 }, + [8] = { 56.3, 71.6, 331, 300 }, + [9] = { 54.1, 71.2, 331, 300 }, + [10] = { 58.2, 70.6, 331, 300 }, + [11] = { 57.6, 70.3, 331, 300 }, + [12] = { 56.9, 69.5, 331, 300 }, + [13] = { 57.6, 66.5, 331, 300 }, + [14] = { 66.7, 63.1, 331, 300 }, + [15] = { 65.8, 62.9, 331, 300 }, + [16] = { 62.2, 62.2, 331, 300 }, + [17] = { 64, 55.3, 331, 300 }, + [18] = { 64.3, 54.6, 331, 300 }, + [19] = { 70.9, 54.1, 331, 300 }, + [20] = { 73.4, 50.7, 331, 300 }, + [21] = { 67.4, 49.8, 331, 300 }, + [22] = { 68.6, 49.1, 331, 300 }, + [23] = { 72.5, 49, 331, 300 }, + [24] = { 66.9, 48.9, 331, 300 }, + [25] = { 66.7, 48.6, 331, 300 }, + [26] = { 72.6, 48.1, 331, 300 }, + [27] = { 74, 47.6, 331, 300 }, + [28] = { 72.4, 46.9, 331, 300 }, + }, + ["lvl"] = "24-25", + }, + [3821] = { + ["coords"] = { + [1] = { 88.7, 68.3, 331, 300 }, + [2] = { 89.8, 68.3, 331, 300 }, + [3] = { 90.1, 67.5, 331, 300 }, + [4] = { 88.5, 66.3, 331, 300 }, + [5] = { 90.7, 65.7, 331, 300 }, + [6] = { 90.9, 63.8, 331, 300 }, + [7] = { 82, 62.3, 331, 300 }, + [8] = { 90.9, 61.3, 331, 300 }, + [9] = { 92.9, 55.6, 331, 300 }, + [10] = { 91, 55.3, 331, 300 }, + [11] = { 82.9, 55, 331, 300 }, + [12] = { 93.3, 53.5, 331, 300 }, + [13] = { 92.1, 51.5, 331, 300 }, + [14] = { 92.8, 51.3, 331, 300 }, + [15] = { 91.2, 50.8, 331, 300 }, + [16] = { 82.9, 49.1, 331, 300 }, + [17] = { 83.8, 48.7, 331, 300 }, + [18] = { 83.5, 47.8, 331, 300 }, + [19] = { 90.7, 47.5, 331, 300 }, + [20] = { 88.9, 47.2, 331, 300 }, + [21] = { 81.1, 46.4, 331, 300 }, + [22] = { 89.9, 46, 331, 300 }, + [23] = { 81, 45.9, 331, 300 }, + [24] = { 91.8, 45.9, 331, 300 }, + [25] = { 89.3, 44.9, 331, 300 }, + [26] = { 83.8, 44.6, 331, 300 }, + }, + ["lvl"] = "28-29", + }, + [3823] = { + ["coords"] = { + [1] = { 41.7, 97.8, 148, 300 }, + [2] = { 42.3, 96.8, 148, 300 }, + [3] = { 45, 96, 148, 300 }, + [4] = { 65.6, 87.2, 331, 300 }, + [5] = { 66.1, 86, 331, 300 }, + [6] = { 67.2, 85.9, 331, 300 }, + [7] = { 63.6, 85.7, 331, 300 }, + [8] = { 66.8, 85.6, 331, 300 }, + [9] = { 63.8, 85.3, 331, 300 }, + [10] = { 66.3, 84.7, 331, 300 }, + [11] = { 72.2, 81.7, 331, 300 }, + [12] = { 60.9, 80.4, 331, 300 }, + [13] = { 73.3, 78.5, 331, 300 }, + [14] = { 62.7, 77.6, 331, 300 }, + [15] = { 76, 66.8, 331, 300 }, + [16] = { 22.6, 62, 331, 300 }, + [17] = { 33.6, 60.5, 331, 300 }, + [18] = { 21.8, 60.4, 331, 300 }, + [19] = { 33.2, 59.6, 331, 300 }, + [20] = { 35.2, 58.3, 331, 300 }, + [21] = { 19.3, 58.3, 331, 300 }, + [22] = { 30.1, 56.7, 331, 300 }, + [23] = { 19, 56.4, 331, 300 }, + [24] = { 23.2, 56, 331, 300 }, + [25] = { 28.3, 55.1, 331, 300 }, + [26] = { 30.1, 55, 331, 300 }, + [27] = { 27.5, 54.5, 331, 300 }, + [28] = { 19.3, 54.1, 331, 300 }, + [29] = { 24.7, 54, 331, 300 }, + [30] = { 25.4, 53.8, 331, 300 }, + [31] = { 27, 52.9, 331, 300 }, + [32] = { 26.3, 52.6, 331, 300 }, + [33] = { 25.5, 52.5, 331, 300 }, + [34] = { 30.5, 51.9, 331, 300 }, + [35] = { 30.7, 51.7, 331, 300 }, + [36] = { 17.8, 51.3, 331, 300 }, + [37] = { 31.2, 50.8, 331, 300 }, + [38] = { 32.3, 50.5, 331, 300 }, + [39] = { 17.8, 50.3, 331, 300 }, + [40] = { 31.3, 49.8, 331, 300 }, + [41] = { 24.5, 49.1, 331, 300 }, + [42] = { 20.1, 49, 331, 300 }, + [43] = { 30.1, 48, 331, 300 }, + [44] = { 23, 47.6, 331, 300 }, + [45] = { 22.9, 47.6, 331, 300 }, + [46] = { 18.4, 47.4, 331, 300 }, + [47] = { 21.9, 46.6, 331, 300 }, + [48] = { 17.7, 46.3, 331, 300 }, + [49] = { 15.7, 45.7, 331, 300 }, + [50] = { 16.8, 45.4, 331, 300 }, + [51] = { 16.5, 36.4, 331, 300 }, + [52] = { 23.8, 36, 331, 300 }, + [53] = { 17.9, 35.7, 331, 300 }, + [54] = { 18.8, 33.6, 331, 300 }, + [55] = { 22.9, 33, 331, 300 }, + [56] = { 27.4, 31.4, 331, 300 }, + [57] = { 21.9, 30.2, 331, 300 }, + [58] = { 20, 29.8, 331, 300 }, + [59] = { 23.2, 29.3, 331, 300 }, + [60] = { 23.5, 28.5, 331, 300 }, + [61] = { 28.1, 27.5, 331, 300 }, + [62] = { 19.2, 27.4, 331, 300 }, + [63] = { 27, 26.2, 331, 300 }, + [64] = { 26, 22.1, 331, 300 }, + [65] = { 16.5, 21.3, 331, 300 }, + [66] = { 19.5, 21.1, 331, 300 }, + [67] = { 25.7, 21.1, 331, 300 }, + [68] = { 29.8, 19.7, 331, 300 }, + [69] = { 27.1, 18.6, 331, 300 }, + [70] = { 25.8, 15.9, 331, 300 }, + [71] = { 26.5, 14.7, 331, 300 }, + [72] = { 29.6, 13.8, 331, 300 }, + [73] = { 58.3, 19.3, 406, 300 }, + [74] = { 57.4, 17.3, 406, 300 }, + }, + ["lvl"] = "19-20", + }, + [3824] = { + ["coords"] = { + [1] = { 57.5, 78.5, 331, 300 }, + [2] = { 57.3, 77.8, 331, 300 }, + [3] = { 57.4, 77.4, 331, 300 }, + [4] = { 55.2, 76.9, 331, 300 }, + [5] = { 56.6, 75.6, 331, 300 }, + [6] = { 57.6, 75.2, 331, 300 }, + [7] = { 55, 75.1, 331, 300 }, + [8] = { 56.1, 74.4, 331, 300 }, + [9] = { 56.7, 74.1, 331, 300 }, + [10] = { 59.5, 73.7, 331, 300 }, + [11] = { 57.7, 73.5, 331, 300 }, + [12] = { 58, 72.1, 331, 300 }, + [13] = { 54.5, 72, 331, 300 }, + [14] = { 56.4, 71.8, 331, 300 }, + [15] = { 60.4, 71.5, 331, 300 }, + [16] = { 60.9, 71.3, 331, 300 }, + [17] = { 59.9, 71.3, 331, 300 }, + [18] = { 54.5, 71, 331, 300 }, + [19] = { 56.8, 70.8, 331, 300 }, + [20] = { 53.5, 70.7, 331, 300 }, + [21] = { 53.6, 70.3, 331, 300 }, + [22] = { 56.8, 70.1, 331, 300 }, + [23] = { 62.2, 70.1, 331, 300 }, + [24] = { 55.8, 70, 331, 300 }, + [25] = { 54.8, 69.7, 331, 300 }, + [26] = { 54.7, 69.5, 331, 300 }, + [27] = { 59.1, 68.9, 331, 300 }, + [28] = { 57.7, 68.9, 331, 300 }, + [29] = { 57.7, 68.5, 331, 300 }, + [30] = { 59, 68.2, 331, 300 }, + [31] = { 58.7, 67.6, 331, 300 }, + [32] = { 58.4, 67.6, 331, 300 }, + [33] = { 58.8, 66.5, 331, 300 }, + [34] = { 57.6, 65.4, 331, 300 }, + }, + ["lvl"] = "23-24", + }, + [3825] = { + ["coords"] = { + [1] = { 66.6, 70.1, 331, 300 }, + [2] = { 67.6, 69.6, 331, 300 }, + [3] = { 65.3, 69.3, 331, 300 }, + [4] = { 68.2, 69.2, 331, 300 }, + [5] = { 65.7, 69.1, 331, 300 }, + [6] = { 65.7, 68.3, 331, 300 }, + [7] = { 69.2, 67.7, 331, 300 }, + [8] = { 68.5, 65.3, 331, 300 }, + [9] = { 70, 65.1, 331, 300 }, + [10] = { 70.4, 64.3, 331, 300 }, + [11] = { 68.6, 64, 331, 300 }, + [12] = { 71.9, 58, 331, 300 }, + [13] = { 75.9, 57.2, 331, 300 }, + [14] = { 74.6, 55.9, 331, 300 }, + [15] = { 72, 55.6, 331, 300 }, + [16] = { 76.3, 55.5, 331, 300 }, + [17] = { 77.8, 55.4, 331, 300 }, + [18] = { 73.7, 55.4, 331, 300 }, + [19] = { 73.4, 54.8, 331, 300 }, + [20] = { 64.4, 49.4, 331, 300 }, + [21] = { 60.5, 45.9, 331, 300 }, + [22] = { 63.1, 45.3, 331, 300 }, + [23] = { 61, 43.2, 331, 300 }, + [24] = { 58.9, 41.6, 331, 300 }, + [25] = { 57.3, 34.2, 331, 300 }, + [26] = { 56.4, 98.4, 361, 300 }, + }, + ["lvl"] = "27-28", + }, + [3826] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [3831] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + ["rnk"] = "4", + }, + [3832] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "1", + }, + [3833] = { + ["coords"] = { + [1] = { 62.2, 51.2, 331, 300 }, + [2] = { 62, 51.1, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "26-27", + }, + [3834] = { + ["coords"] = { + [1] = { 62, 44.5, 331, 300 }, + [2] = { 61.5, 43.3, 331, 300 }, + [3] = { 58.2, 41.4, 331, 300 }, + [4] = { 57.8, 39.1, 331, 300 }, + [5] = { 60.1, 38.8, 331, 300 }, + [6] = { 58.8, 36.1, 331, 300 }, + [7] = { 57.3, 31.4, 331, 300 }, + [8] = { 56.4, 95.7, 361, 300 }, + }, + ["lvl"] = "27-28", + }, + [3835] = { + ["coords"] = { + [1] = { 46.1, 34.4, 17, 413 }, + [2] = { 48.3, 34.4, 17, 413 }, + [3] = { 46.3, 34.1, 17, 413 }, + [4] = { 47.9, 34.1, 17, 413 }, + [5] = { 46, 33.8, 17, 413 }, + [6] = { 48.9, 33.8, 17, 413 }, + [7] = { 49.2, 32.7, 17, 413 }, + [8] = { 46.5, 32.3, 17, 413 }, + [9] = { 48.1, 32.3, 17, 413 }, + [10] = { 47.6, 32.2, 17, 413 }, + [11] = { 48.5, 31.8, 17, 413 }, + }, + ["lvl"] = "1", + }, + [3836] = { + ["coords"] = { + [1] = { 18.2, 84, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "44", + }, + [3837] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "29", + }, + [3838] = { + ["coords"] = { + [1] = { 58.4, 94, 141, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [3839] = { + ["coords"] = {}, + ["lvl"] = "19-20", + ["rnk"] = "1", + }, + [3840] = { + ["coords"] = {}, + ["lvl"] = "19-20", + ["rnk"] = "1", + }, + [3841] = { + ["coords"] = { + [1] = { 36.3, 45.6, 148, 500 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [3842] = { + ["coords"] = { + [1] = { 52.6, 37.3, 1537, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [3843] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "14", + }, + [3844] = { + ["coords"] = {}, + ["lvl"] = "23-24", + }, + [3845] = { + ["coords"] = { + [1] = { 34.7, 48.8, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [3846] = { + ["coords"] = { + [1] = { 14.8, 31.3, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "17", + }, + [3847] = { + ["coords"] = { + [1] = { 26.4, 38.6, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "27", + }, + [3848] = { + ["coords"] = { + [1] = { 85.3, 44.7, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "31", + }, + [3849] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "18", + ["rnk"] = "1", + }, + [3850] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "18", + ["rnk"] = "1", + }, + [3851] = { + ["coords"] = {}, + ["lvl"] = "18-19", + ["rnk"] = "1", + }, + [3852] = { + ["coords"] = {}, + ["lvl"] = "19", + ["rnk"] = "1", + }, + [3853] = { + ["coords"] = {}, + ["lvl"] = "19-20", + ["rnk"] = "1", + }, + [3854] = { + ["coords"] = {}, + ["lvl"] = "20-21", + ["rnk"] = "1", + }, + [3855] = { + ["coords"] = {}, + ["lvl"] = "20-21", + ["rnk"] = "1", + }, + [3857] = { + ["coords"] = {}, + ["lvl"] = "21-22", + ["rnk"] = "1", + }, + [3859] = { + ["coords"] = {}, + ["lvl"] = "23-24", + ["rnk"] = "1", + }, + [3860] = { + ["coords"] = {}, + ["lvl"] = "20", + ["rnk"] = "1", + }, + [3861] = { + ["coords"] = {}, + ["lvl"] = "18-19", + ["rnk"] = "1", + }, + [3862] = { + ["coords"] = {}, + ["lvl"] = "18-19", + ["rnk"] = "1", + }, + [3863] = { + ["coords"] = {}, + ["lvl"] = "24-25", + ["rnk"] = "1", + }, + [3864] = { + ["coords"] = {}, + ["lvl"] = "19-20", + ["rnk"] = "1", + }, + [3865] = { + ["coords"] = {}, + ["lvl"] = "20-21", + ["rnk"] = "1", + }, + [3866] = { + ["coords"] = {}, + ["lvl"] = "22-23", + ["rnk"] = "1", + }, + [3868] = { + ["coords"] = {}, + ["lvl"] = "23-24", + ["rnk"] = "1", + }, + [3869] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [3870] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [3872] = { + ["coords"] = {}, + ["lvl"] = "25", + ["rnk"] = "2", + }, + [3873] = { + ["coords"] = {}, + ["lvl"] = "23-24", + ["rnk"] = "1", + }, + [3875] = { + ["coords"] = {}, + ["lvl"] = "20-21", + ["rnk"] = "1", + }, + [3876] = { + ["coords"] = {}, + ["lvl"] = "20", + ["rnk"] = "1", + }, + [3877] = { + ["coords"] = {}, + ["lvl"] = "21-22", + ["rnk"] = "1", + }, + [3878] = { + ["coords"] = {}, + ["lvl"] = "20", + }, + [3879] = { + ["coords"] = {}, + ["lvl"] = "21", + }, + [3880] = { + ["coords"] = { + [1] = { 22.2, 53, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [3881] = { + ["coords"] = { + [1] = { 51.1, 42.6, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "14", + }, + [3882] = { + ["coords"] = { + [1] = { 42.6, 67.2, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "9", + }, + [3883] = { + ["coords"] = { + [1] = { 44.6, 77.9, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "11", + }, + [3884] = { + ["coords"] = { + [1] = { 47.6, 61.5, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "13", + }, + [3885] = { + ["coords"] = { + [1] = { 49.8, 67.2, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [3886] = { + ["coords"] = {}, + ["lvl"] = "22", + ["rnk"] = "1", + }, + [3887] = { + ["coords"] = {}, + ["lvl"] = "24", + ["rnk"] = "1", + }, + [3888] = { + ["coords"] = { + [1] = { 36.6, 49.5, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [3890] = { + ["coords"] = { + [1] = { 79.4, 30.3, 1637, 600 }, + }, + ["fac"] = "H", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [3891] = { + ["coords"] = { + [1] = { 20.3, 42.3, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [3892] = { + ["coords"] = { + [1] = { 37.4, 51.7, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [3893] = { + ["coords"] = {}, + ["lvl"] = "23", + }, + [3894] = { + ["coords"] = { + [1] = { 37.4, 51.8, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "21", + }, + [3895] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "60", + }, + [3896] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "40", + }, + [3897] = { + ["coords"] = { + [1] = { 50.8, 75.1, 331, 300 }, + }, + ["lvl"] = "9", + }, + [3898] = { + ["coords"] = {}, + ["lvl"] = "24", + }, + [3899] = { + ["coords"] = {}, + ["lvl"] = "24", + }, + [3900] = { + ["coords"] = {}, + ["lvl"] = "24", + }, + [3901] = { + ["coords"] = { + [1] = { 21.7, 53.3, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "26", + }, + [3902] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "20", + }, + [3903] = { + ["coords"] = {}, + ["lvl"] = "37", + }, + [3904] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "45", + }, + [3906] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [3907] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "45", + }, + [3908] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [3909] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [3911] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "29", + }, + [3912] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "40", + }, + [3913] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "38", + }, + [3914] = { + ["coords"] = {}, + ["lvl"] = "20", + ["rnk"] = "1", + }, + [3915] = { + ["coords"] = { + [1] = { 36.6, 49.6, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "23", + }, + [3916] = { + ["coords"] = { + [1] = { 53.5, 46.2, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "24", + }, + [3917] = { + ["coords"] = { + [1] = { 51.2, 73.4, 331, 300 }, + [2] = { 48.3, 72.8, 331, 300 }, + [3] = { 52.1, 72.8, 331, 300 }, + [4] = { 52.1, 72.2, 331, 300 }, + [5] = { 50.2, 72.2, 331, 300 }, + [6] = { 50.9, 72, 331, 300 }, + [7] = { 47.9, 71.9, 331, 300 }, + [8] = { 49.2, 71.9, 331, 300 }, + [9] = { 46.6, 71.7, 331, 300 }, + [10] = { 50.7, 71.6, 331, 300 }, + [11] = { 51, 71.4, 331, 300 }, + [12] = { 49.8, 71.1, 331, 300 }, + [13] = { 48.3, 70.8, 331, 300 }, + [14] = { 46.3, 70.7, 331, 300 }, + [15] = { 47.7, 70.6, 331, 300 }, + [16] = { 47, 70.6, 331, 300 }, + [17] = { 51.9, 70.5, 331, 300 }, + [18] = { 50.3, 70.3, 331, 300 }, + [19] = { 51.5, 70.2, 331, 300 }, + [20] = { 46.1, 69.9, 331, 300 }, + [21] = { 49.4, 69.8, 331, 300 }, + [22] = { 48.1, 69.7, 331, 300 }, + [23] = { 47.7, 69.6, 331, 300 }, + [24] = { 49.5, 69.6, 331, 300 }, + [25] = { 50.5, 69.5, 331, 300 }, + [26] = { 51.6, 69.5, 331, 300 }, + [27] = { 45.1, 69.3, 331, 300 }, + [28] = { 47.6, 69.1, 331, 300 }, + [29] = { 46.1, 68.7, 331, 300 }, + [30] = { 48, 68.1, 331, 300 }, + [31] = { 47.1, 67.4, 331, 300 }, + [32] = { 46.4, 67.4, 331, 300 }, + [33] = { 50.9, 67.4, 331, 300 }, + }, + ["lvl"] = "23-25", + }, + [3919] = { + ["coords"] = { + [1] = { 59.3, 42.1, 331, 300 }, + [2] = { 57.7, 41.8, 331, 300 }, + [3] = { 54.8, 35, 331, 300 }, + [4] = { 54.7, 34.4, 331, 300 }, + [5] = { 54.5, 34.1, 331, 300 }, + [6] = { 58.2, 33.7, 331, 300 }, + [7] = { 55.1, 33.1, 331, 300 }, + [8] = { 53.9, 99.3, 361, 300 }, + [9] = { 53.8, 98.7, 361, 300 }, + [10] = { 53.6, 98.4, 361, 300 }, + [11] = { 57.3, 98, 361, 300 }, + [12] = { 54.2, 97.4, 361, 300 }, + }, + ["lvl"] = "26-27", + }, + [3920] = { + ["coords"] = { + [1] = { 78.3, 44.8, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [3921] = { + ["coords"] = { + [1] = { 40.1, 34.2, 331, 300 }, + [2] = { 42.6, 34.1, 331, 300 }, + [3] = { 41.2, 34, 331, 300 }, + [4] = { 40.3, 33.5, 331, 300 }, + [5] = { 39.9, 33.4, 331, 300 }, + [6] = { 41.7, 32.9, 331, 300 }, + [7] = { 40.4, 32.2, 331, 300 }, + [8] = { 40.9, 32.1, 331, 300 }, + [9] = { 39.6, 31.5, 331, 300 }, + [10] = { 38.2, 30.8, 331, 300 }, + [11] = { 39.2, 30.6, 331, 300 }, + [12] = { 41.7, 98.4, 361, 300 }, + [13] = { 40.3, 98.3, 361, 300 }, + [14] = { 40.8, 97.1, 361, 300 }, + [15] = { 39.5, 96.4, 361, 300 }, + [16] = { 40, 96.4, 361, 300 }, + [17] = { 38.7, 95.7, 361, 300 }, + [18] = { 38.3, 94.9, 361, 300 }, + }, + ["lvl"] = "23-24", + }, + [3922] = { + ["coords"] = { + [1] = { 42.3, 35.1, 331, 300 }, + [2] = { 41.1, 34.8, 331, 300 }, + [3] = { 42.8, 34.5, 331, 300 }, + [4] = { 42.3, 34.3, 331, 300 }, + [5] = { 42.8, 33.8, 331, 300 }, + [6] = { 42.3, 33.7, 331, 300 }, + [7] = { 39.7, 33.3, 331, 300 }, + [8] = { 41, 33.1, 331, 300 }, + [9] = { 40.9, 32.8, 331, 300 }, + [10] = { 40.2, 32.6, 331, 300 }, + [11] = { 39.8, 32.3, 331, 300 }, + [12] = { 41.3, 32, 331, 300 }, + [13] = { 39.9, 31.9, 331, 300 }, + [14] = { 40.7, 31.9, 331, 300 }, + [15] = { 40.4, 31.4, 331, 300 }, + [16] = { 38, 30.2, 331, 300 }, + [17] = { 41.4, 99.4, 361, 300 }, + [18] = { 40.2, 99.1, 361, 300 }, + [19] = { 41.9, 98.8, 361, 300 }, + [20] = { 41.4, 98.6, 361, 300 }, + [21] = { 42, 98.1, 361, 300 }, + [22] = { 41.4, 98, 361, 300 }, + [23] = { 40.1, 97.4, 361, 300 }, + [24] = { 40, 97.1, 361, 300 }, + [25] = { 39.3, 96.9, 361, 300 }, + [26] = { 38.9, 96.6, 361, 300 }, + [27] = { 40.4, 96.3, 361, 300 }, + [28] = { 39, 96.2, 361, 300 }, + [29] = { 39.8, 96.2, 361, 300 }, + [30] = { 39.5, 95.7, 361, 300 }, + }, + ["lvl"] = "23-24", + }, + [3923] = { + ["coords"] = { + [1] = { 41.4, 35.5, 331, 300 }, + [2] = { 40.7, 34.2, 331, 300 }, + [3] = { 41.6, 33.7, 331, 300 }, + [4] = { 41.5, 32.4, 331, 300 }, + [5] = { 41, 31.7, 331, 300 }, + [6] = { 40.5, 99.8, 361, 300 }, + [7] = { 39.8, 98.5, 361, 300 }, + [8] = { 40.7, 97.9, 361, 300 }, + [9] = { 40.6, 96.7, 361, 300 }, + [10] = { 40.1, 96, 361, 300 }, + }, + ["lvl"] = "23-24", + }, + [3924] = { + ["coords"] = { + [1] = { 30.9, 45, 331, 300 }, + [2] = { 31, 44.4, 331, 300 }, + [3] = { 31, 44, 331, 300 }, + [4] = { 31.6, 43.9, 331, 300 }, + [5] = { 31, 43.3, 331, 300 }, + [6] = { 32.6, 42.8, 331, 300 }, + [7] = { 30.3, 42.3, 331, 300 }, + [8] = { 31, 40.4, 331, 300 }, + [9] = { 33.8, 39.7, 331, 300 }, + [10] = { 31.6, 39.5, 331, 300 }, + [11] = { 32.1, 38.9, 331, 300 }, + [12] = { 34.2, 38.9, 331, 300 }, + [13] = { 33.9, 38.8, 331, 300 }, + [14] = { 33.6, 38.7, 331, 300 }, + [15] = { 34.1, 38.4, 331, 300 }, + [16] = { 36.1, 37, 331, 300 }, + [17] = { 35.7, 36.9, 331, 300 }, + [18] = { 39.6, 36.8, 331, 300 }, + [19] = { 35.9, 36.6, 331, 300 }, + [20] = { 39.5, 36.4, 331, 300 }, + [21] = { 39.8, 36.4, 331, 300 }, + [22] = { 37.8, 35.4, 331, 300 }, + [23] = { 38.5, 35.4, 331, 300 }, + [24] = { 37.8, 34.9, 331, 300 }, + [25] = { 37.9, 34.2, 331, 300 }, + [26] = { 35, 32.8, 331, 300 }, + [27] = { 36.1, 32.7, 331, 300 }, + [28] = { 36.1, 32, 331, 300 }, + [29] = { 35.8, 31.7, 331, 300 }, + }, + ["lvl"] = "23-24", + }, + [3925] = { + ["coords"] = { + [1] = { 31.5, 45.7, 331, 300 }, + [2] = { 31.4, 45.3, 331, 300 }, + [3] = { 32, 43.1, 331, 300 }, + [4] = { 32.6, 42.2, 331, 300 }, + [5] = { 32.6, 39.6, 331, 300 }, + [6] = { 31.9, 39.2, 331, 300 }, + [7] = { 31.7, 38, 331, 300 }, + [8] = { 40, 37.9, 331, 300 }, + [9] = { 39.6, 37.7, 331, 300 }, + [10] = { 33.4, 37.5, 331, 300 }, + [11] = { 36.7, 37, 331, 300 }, + [12] = { 39.1, 36.8, 331, 300 }, + [13] = { 33.5, 36.6, 331, 300 }, + [14] = { 39.3, 36.3, 331, 300 }, + [15] = { 36.6, 36.1, 331, 300 }, + [16] = { 36.8, 35.2, 331, 300 }, + [17] = { 37.9, 34.5, 331, 300 }, + [18] = { 37.4, 34.3, 331, 300 }, + [19] = { 37.7, 33.9, 331, 300 }, + [20] = { 35.6, 32.8, 331, 300 }, + [21] = { 36.7, 32.7, 331, 300 }, + [22] = { 35.8, 32, 331, 300 }, + }, + ["lvl"] = "23-24", + }, + [3926] = { + ["coords"] = { + [1] = { 38.7, 39.2, 331, 300 }, + [2] = { 39.4, 36.8, 331, 300 }, + [3] = { 39.1, 36.1, 331, 300 }, + [4] = { 36.2, 32.1, 331, 300 }, + [5] = { 38.1, 30.7, 331, 300 }, + }, + ["lvl"] = "23-24", + }, + [3927] = { + ["coords"] = {}, + ["lvl"] = "25", + ["rnk"] = "1", + }, + [3928] = { + ["coords"] = { + [1] = { 69.9, 85.3, 331, 300 }, + [2] = { 70.7, 85.1, 331, 300 }, + [3] = { 68.9, 84.9, 331, 300 }, + [4] = { 69, 84.8, 331, 300 }, + [5] = { 71.3, 83.8, 331, 300 }, + [6] = { 69.3, 82.7, 331, 300 }, + [7] = { 74.3, 77.9, 331, 300 }, + [8] = { 68.2, 77.7, 331, 300 }, + [9] = { 74.6, 77.2, 331, 300 }, + [10] = { 71.5, 77, 331, 300 }, + [11] = { 73.7, 77, 331, 300 }, + [12] = { 72.6, 76.9, 331, 300 }, + [13] = { 70.1, 76.1, 331, 300 }, + [14] = { 70.8, 76, 331, 300 }, + [15] = { 74.5, 75.6, 331, 300 }, + [16] = { 74.7, 75.4, 331, 300 }, + [17] = { 70.7, 75.2, 331, 300 }, + [18] = { 72.5, 75.1, 331, 300 }, + [19] = { 79.1, 74.5, 331, 300 }, + [20] = { 69.9, 74.1, 331, 300 }, + [21] = { 77, 73.8, 331, 300 }, + [22] = { 71, 73.8, 331, 300 }, + [23] = { 78.3, 73.6, 331, 300 }, + [24] = { 70.5, 73.6, 331, 300 }, + [25] = { 76, 73.4, 331, 300 }, + [26] = { 74.4, 73.4, 331, 300 }, + [27] = { 73.1, 73.2, 331, 300 }, + [28] = { 77.7, 72.6, 331, 300 }, + [29] = { 76.8, 72.2, 331, 300 }, + [30] = { 76.6, 70.7, 331, 300 }, + [31] = { 74.4, 70.2, 331, 300 }, + [32] = { 75.9, 70, 331, 300 }, + [33] = { 77.4, 69.8, 331, 300 }, + [34] = { 78.3, 69.7, 331, 300 }, + [35] = { 74.8, 69.6, 331, 300 }, + [36] = { 74.2, 69.5, 331, 300 }, + [37] = { 76.7, 68.5, 331, 300 }, + [38] = { 77.1, 68.3, 331, 300 }, + [39] = { 76.2, 67.5, 331, 300 }, + [40] = { 78, 65.8, 331, 300 }, + [41] = { 78.3, 64.6, 331, 300 }, + }, + ["lvl"] = "20-22", + }, + [3931] = { + ["coords"] = { + [1] = { 66.7, 82.2, 331, 300 }, + }, + ["lvl"] = "30", + }, + [3932] = { + ["coords"] = { + [1] = { 54.7, 79.7, 331, 300 }, + [2] = { 54.4, 79.6, 331, 300 }, + [3] = { 55, 79.3, 331, 300 }, + [4] = { 54.7, 79.1, 331, 300 }, + [5] = { 54.9, 78.8, 331, 300 }, + [6] = { 54.8, 77.7, 331, 300 }, + [7] = { 55.9, 76.2, 331, 300 }, + [8] = { 55.4, 76, 331, 300 }, + [9] = { 54.9, 76, 331, 300 }, + [10] = { 55.8, 75.4, 331, 300 }, + [11] = { 55.5, 75.2, 331, 300 }, + }, + ["lvl"] = "27-28", + }, + [3933] = { + ["coords"] = { + [1] = { 55.6, 73.6, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "14", + }, + [3934] = { + ["coords"] = { + [1] = { 52, 29.9, 17, 275 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3935] = { + ["coords"] = { + [1] = { 44.2, 66, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [3936] = { + ["coords"] = { + [1] = { 30.3, 46.2, 357, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "62", + }, + [3937] = { + ["coords"] = { + [1] = { 45.1, 69, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "12", + }, + [3938] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "15", + }, + [3939] = { + ["coords"] = {}, + ["lvl"] = "7-8", + }, + [3940] = { + ["coords"] = { + [1] = { 77.2, 74, 331, 300 }, + }, + ["lvl"] = "32", + }, + [3941] = { + ["coords"] = { + [1] = { 78, 72.7, 331, 300 }, + }, + ["lvl"] = "32", + }, + [3942] = { + ["coords"] = { + [1] = { 74.8, 74.3, 331, 300 }, + }, + ["lvl"] = "32", + }, + [3943] = { + ["coords"] = { + [1] = { 25.5, 95.6, 148, 300 }, + [2] = { 7.4, 13.4, 331, 300 }, + }, + ["lvl"] = "22", + }, + [3944] = { + ["coords"] = { + [1] = { 25.8, 98.7, 148, 300 }, + [2] = { 25.3, 98.1, 148, 300 }, + [3] = { 24.8, 98.1, 148, 300 }, + [4] = { 26.3, 98, 148, 300 }, + [5] = { 25.9, 98, 148, 300 }, + [6] = { 24.7, 97.5, 148, 300 }, + [7] = { 25.2, 97.4, 148, 300 }, + [8] = { 26.3, 97.2, 148, 300 }, + [9] = { 26, 97.2, 148, 300 }, + [10] = { 23.8, 97.2, 148, 300 }, + [11] = { 24.6, 96.6, 148, 300 }, + [12] = { 23.3, 96.6, 148, 300 }, + [13] = { 23.9, 96.6, 148, 300 }, + [14] = { 25.8, 96.5, 148, 300 }, + [15] = { 26.4, 96.5, 148, 300 }, + [16] = { 25.3, 96.5, 148, 300 }, + [17] = { 23.7, 95.9, 148, 300 }, + [18] = { 25.3, 95.8, 148, 300 }, + [19] = { 25.9, 95.6, 148, 300 }, + [20] = { 25.5, 95.6, 148, 300 }, + [21] = { 24.3, 95, 148, 300 }, + [22] = { 25.9, 94.9, 148, 300 }, + [23] = { 25.5, 94.8, 148, 300 }, + [24] = { 24.6, 94.2, 148, 300 }, + [25] = { 25.3, 94.2, 148, 300 }, + [26] = { 24.2, 94.2, 148, 300 }, + [27] = { 24.8, 93.7, 148, 300 }, + [28] = { 24.3, 93.5, 148, 300 }, + [29] = { 11.3, 30.9, 331, 300 }, + [30] = { 7.7, 17, 331, 300 }, + [31] = { 7.3, 16.2, 331, 300 }, + [32] = { 6.6, 16.2, 331, 300 }, + [33] = { 8.4, 16.1, 331, 300 }, + [34] = { 7.8, 16.1, 331, 300 }, + [35] = { 6.6, 15.5, 331, 300 }, + [36] = { 7.1, 15.5, 331, 300 }, + [37] = { 8.3, 15.2, 331, 300 }, + [38] = { 8, 15.2, 331, 300 }, + [39] = { 5.5, 15.2, 331, 300 }, + [40] = { 6.4, 14.5, 331, 300 }, + [41] = { 4.9, 14.5, 331, 300 }, + [42] = { 5.6, 14.5, 331, 300 }, + [43] = { 7.8, 14.4, 331, 300 }, + [44] = { 8.4, 14.4, 331, 300 }, + [45] = { 7.3, 14.4, 331, 300 }, + [46] = { 5.4, 13.7, 331, 300 }, + [47] = { 7.2, 13.6, 331, 300 }, + [48] = { 7.8, 13.4, 331, 300 }, + [49] = { 7.4, 13.4, 331, 300 }, + [50] = { 6.1, 12.7, 331, 300 }, + [51] = { 7.8, 12.6, 331, 300 }, + [52] = { 7.4, 12.5, 331, 300 }, + [53] = { 6.5, 11.8, 331, 300 }, + [54] = { 7.2, 11.8, 331, 300 }, + [55] = { 6, 11.7, 331, 300 }, + [56] = { 6.7, 11.2, 331, 300 }, + [57] = { 6, 11, 331, 300 }, + }, + ["lvl"] = "20-21", + }, + [3945] = { + ["coords"] = { + [1] = { 27.4, 74.1, 33, 300 }, + }, + ["lvl"] = "30-39", + }, + [3946] = { + ["coords"] = { + [1] = { 50.5, 39.1, 331, 0 }, + [2] = { 73.6, 79.1, 10, 0 }, + }, + ["fac"] = "AH", + ["lvl"] = "40", + }, + [3947] = { + ["coords"] = {}, + ["lvl"] = "19-20", + ["rnk"] = "1", + }, + [3948] = { + ["coords"] = { + [1] = { 35.3, 49.7, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [3950] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "1", + }, + [3951] = { + ["coords"] = { + [1] = { 50.3, 67.3, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "34", + }, + [3952] = { + ["coords"] = { + [1] = { 34.5, 49.5, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "22", + }, + [3953] = { + ["coords"] = { + [1] = { 34.5, 49.9, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "23", + }, + [3954] = { + ["coords"] = { + [1] = { 35.1, 52.1, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "24", + }, + [3955] = { + ["coords"] = { + [1] = { 49.5, 67.1, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "24", + }, + [3956] = { + ["coords"] = { + [1] = { 50.8, 67, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "24", + }, + [3957] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "28", + }, + [3958] = { + ["coords"] = { + [1] = { 34.8, 49.8, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [3959] = { + ["coords"] = { + [1] = { 37.1, 49.9, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "21", + }, + [3960] = { + ["coords"] = { + [1] = { 50, 66.6, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "26", + }, + [3961] = { + ["coords"] = { + [1] = { 36.6, 50, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "19", + }, + [3962] = { + ["coords"] = { + [1] = { 34.8, 50.9, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "26", + }, + [3963] = { + ["coords"] = { + [1] = { 50.1, 67.9, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [3964] = { + ["coords"] = { + [1] = { 50.9, 67.1, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "31", + }, + [3965] = { + ["coords"] = { + [1] = { 50.7, 67.2, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "24", + }, + [3966] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "24", + }, + [3967] = { + ["coords"] = { + [1] = { 36, 52.1, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "37", + }, + [3968] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "40", + }, + [3969] = { + ["coords"] = { + [1] = { 36.5, 49.5, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "28", + }, + [3970] = { + ["coords"] = { + [1] = { 35, 48.5, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [3971] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [3972] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [3973] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [3974] = { + ["coords"] = {}, + ["lvl"] = "34", + ["rnk"] = "1", + }, + [3975] = { + ["coords"] = {}, + ["lvl"] = "40", + ["rnk"] = "1", + }, + [3976] = { + ["coords"] = {}, + ["lvl"] = "42", + ["rnk"] = "1", + }, + [3977] = { + ["coords"] = {}, + ["lvl"] = "42", + ["rnk"] = "1", + }, + [3978] = { + ["coords"] = { + [1] = { 36.8, 26.4, 215, 250 }, + [2] = { 34.4, 46.9, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3979] = { + ["coords"] = { + [1] = { 75, 12.5, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [3980] = { + ["coords"] = { + [1] = { 51.5, 58.4, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [3981] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "8", + }, + [3982] = { + ["coords"] = { + [1] = { 61.5, 80.5, 36, 300 }, + [2] = { 62.7, 18.9, 267, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "7", + }, + [3983] = { + ["coords"] = {}, + ["lvl"] = "32", + ["rnk"] = "1", + }, + [3984] = { + ["coords"] = { + [1] = { 32.3, 32.8, 36, 600 }, + }, + ["lvl"] = "33", + ["rnk"] = "1", + }, + [3985] = { + ["coords"] = { + [1] = { 32.3, 33, 36, 600 }, + }, + ["lvl"] = "34", + ["rnk"] = "1", + }, + [3986] = { + ["coords"] = { + [1] = { 48.2, 19.1, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [3987] = { + ["coords"] = { + [1] = { 37.7, 34.7, 331, 300 }, + }, + ["lvl"] = "25", + }, + [3988] = { + ["coords"] = { + [1] = { 73.3, 56.7, 406, 300 }, + [2] = { 75.7, 56.6, 406, 300 }, + [3] = { 75.2, 56.2, 406, 300 }, + [4] = { 70, 55.9, 406, 300 }, + [5] = { 74.3, 54.9, 406, 300 }, + [6] = { 74.2, 54.2, 406, 300 }, + [7] = { 62.5, 53.8, 406, 300 }, + [8] = { 62.6, 53.8, 406, 300 }, + [9] = { 62.8, 53.5, 406, 300 }, + [10] = { 62.7, 53.5, 406, 300 }, + [11] = { 67.1, 52.4, 406, 300 }, + [12] = { 62.1, 52.1, 406, 300 }, + [13] = { 66.3, 51.7, 406, 300 }, + [14] = { 65.6, 51.7, 406, 300 }, + [15] = { 61.5, 51.4, 406, 300 }, + [16] = { 71.8, 50, 406, 300 }, + [17] = { 71.5, 49.7, 406, 300 }, + [18] = { 72.8, 49.3, 406, 300 }, + [19] = { 73.4, 48.7, 406, 300 }, + [20] = { 66.4, 45.7, 406, 300 }, + [21] = { 67.1, 45.5, 406, 300 }, + [22] = { 66.4, 45.5, 406, 300 }, + [23] = { 70.8, 43.2, 406, 300 }, + [24] = { 71.1, 42.5, 406, 300 }, + }, + ["lvl"] = "19-20", + }, + [3989] = { + ["coords"] = { + [1] = { 74.4, 59.7, 406, 300 }, + [2] = { 74.4, 59.4, 406, 300 }, + [3] = { 74.5, 59.3, 406, 300 }, + [4] = { 75.1, 59.2, 406, 300 }, + [5] = { 74.3, 59.1, 406, 300 }, + [6] = { 74.5, 59, 406, 300 }, + [7] = { 74.9, 58.9, 406, 300 }, + [8] = { 74.6, 58.7, 406, 300 }, + [9] = { 66, 58.2, 406, 300 }, + [10] = { 66.8, 57.4, 406, 300 }, + [11] = { 64.1, 57.3, 406, 300 }, + [12] = { 65.4, 57.3, 406, 300 }, + [13] = { 68, 57.2, 406, 300 }, + [14] = { 70.9, 57.1, 406, 300 }, + [15] = { 63.4, 56.7, 406, 300 }, + [16] = { 64.9, 56.6, 406, 300 }, + [17] = { 66.3, 56.5, 406, 300 }, + [18] = { 68.8, 56.4, 406, 300 }, + [19] = { 70.1, 56.4, 406, 300 }, + [20] = { 71.6, 56.4, 406, 300 }, + [21] = { 67.5, 56.3, 406, 300 }, + [22] = { 65.8, 55.4, 406, 300 }, + [23] = { 72.1, 55.4, 406, 300 }, + [24] = { 63.4, 55.3, 406, 300 }, + [25] = { 68.1, 55.3, 406, 300 }, + [26] = { 64, 55.3, 406, 300 }, + [27] = { 62.7, 55.3, 406, 300 }, + [28] = { 66.8, 55.3, 406, 300 }, + [29] = { 73.7, 55.3, 406, 300 }, + [30] = { 61.4, 55.2, 406, 300 }, + [31] = { 67.2, 55.2, 406, 300 }, + [32] = { 69.6, 55.2, 406, 300 }, + [33] = { 70.9, 55.2, 406, 300 }, + [34] = { 75.1, 55.2, 406, 300 }, + [35] = { 60.7, 54.9, 406, 300 }, + [36] = { 71.6, 54.6, 406, 300 }, + [37] = { 70.3, 54.6, 406, 300 }, + [38] = { 63.6, 54.4, 406, 300 }, + [39] = { 62, 54.3, 406, 300 }, + [40] = { 65.4, 54.2, 406, 300 }, + [41] = { 69.5, 54.2, 406, 300 }, + [42] = { 68.9, 54.2, 406, 300 }, + [43] = { 60.6, 54.2, 406, 300 }, + [44] = { 73.1, 54, 406, 300 }, + [45] = { 61.4, 54, 406, 300 }, + [46] = { 60.5, 53.5, 406, 300 }, + [47] = { 70.3, 53.5, 406, 300 }, + [48] = { 65.2, 53.4, 406, 300 }, + [49] = { 60, 53.3, 406, 300 }, + [50] = { 73.7, 53.2, 406, 300 }, + [51] = { 69.6, 53.1, 406, 300 }, + [52] = { 64.8, 52.7, 406, 300 }, + [53] = { 66.4, 52.5, 406, 300 }, + [54] = { 66.4, 52.3, 406, 300 }, + [55] = { 59.4, 52.3, 406, 300 }, + [56] = { 60.6, 52.1, 406, 300 }, + [57] = { 66, 52.1, 406, 300 }, + [58] = { 66.3, 51.8, 406, 300 }, + [59] = { 66, 51.7, 406, 300 }, + [60] = { 65.8, 51.6, 406, 300 }, + [61] = { 67.2, 51.5, 406, 300 }, + [62] = { 60.5, 51.5, 406, 300 }, + [63] = { 72.4, 51.5, 406, 300 }, + [64] = { 66.7, 51.3, 406, 300 }, + [65] = { 66.4, 51.3, 406, 300 }, + [66] = { 66.8, 51.3, 406, 300 }, + [67] = { 72.9, 51.2, 406, 300 }, + [68] = { 66.3, 51.1, 406, 300 }, + [69] = { 64.8, 51.1, 406, 300 }, + [70] = { 66.5, 50.9, 406, 300 }, + [71] = { 68.3, 50.6, 406, 300 }, + [72] = { 65.8, 50.6, 406, 300 }, + [73] = { 65.4, 50.5, 406, 300 }, + [74] = { 70.2, 50.3, 406, 300 }, + [75] = { 68.7, 50.2, 406, 300 }, + [76] = { 66.2, 50, 406, 300 }, + [77] = { 67.7, 49.9, 406, 300 }, + [78] = { 66.8, 49.5, 406, 300 }, + [79] = { 66.1, 49.4, 406, 300 }, + [80] = { 72.2, 49.2, 406, 300 }, + [81] = { 65.6, 49.2, 406, 300 }, + [82] = { 68.2, 49.2, 406, 300 }, + [83] = { 64.1, 49, 406, 300 }, + [84] = { 71, 48.4, 406, 300 }, + [85] = { 67.6, 48.2, 406, 300 }, + [86] = { 64.8, 48.1, 406, 300 }, + [87] = { 64.3, 48, 406, 300 }, + [88] = { 71.6, 47.7, 406, 300 }, + [89] = { 65.6, 47.4, 406, 300 }, + [90] = { 64.2, 47.2, 406, 300 }, + [91] = { 66.1, 46.4, 406, 300 }, + [92] = { 65.4, 46.2, 406, 300 }, + [93] = { 63.1, 46.1, 406, 300 }, + [94] = { 64.2, 46, 406, 300 }, + [95] = { 66.7, 45.9, 406, 300 }, + [96] = { 64.9, 45.7, 406, 300 }, + [97] = { 64.2, 45.5, 406, 300 }, + [98] = { 65.5, 45.2, 406, 300 }, + [99] = { 67, 45.1, 406, 300 }, + [100] = { 64.9, 44.9, 406, 300 }, + [101] = { 71.6, 44.1, 406, 300 }, + [102] = { 71, 44.1, 406, 300 }, + [103] = { 71.6, 43.2, 406, 300 }, + }, + ["lvl"] = "18-19", + }, + [3990] = { + ["coords"] = {}, + ["lvl"] = "16-17", + }, + [3991] = { + ["coords"] = { + [1] = { 74.4, 59.7, 406, 300 }, + [2] = { 74.4, 59.4, 406, 300 }, + [3] = { 74.5, 59.3, 406, 300 }, + [4] = { 75.1, 59.2, 406, 300 }, + [5] = { 74.3, 59.1, 406, 300 }, + [6] = { 74.5, 59, 406, 300 }, + [7] = { 74.9, 58.9, 406, 300 }, + [8] = { 74.6, 58.7, 406, 300 }, + [9] = { 66, 58.2, 406, 300 }, + [10] = { 66.8, 57.4, 406, 300 }, + [11] = { 64.1, 57.3, 406, 300 }, + [12] = { 65.4, 57.3, 406, 300 }, + [13] = { 68, 57.2, 406, 300 }, + [14] = { 70.9, 57.1, 406, 300 }, + [15] = { 63.4, 56.7, 406, 300 }, + [16] = { 64.9, 56.6, 406, 300 }, + [17] = { 66.3, 56.5, 406, 300 }, + [18] = { 68.8, 56.4, 406, 300 }, + [19] = { 70.1, 56.4, 406, 300 }, + [20] = { 71.6, 56.4, 406, 300 }, + [21] = { 67.5, 56.3, 406, 300 }, + [22] = { 65.8, 55.4, 406, 300 }, + [23] = { 72.1, 55.4, 406, 300 }, + [24] = { 63.4, 55.3, 406, 300 }, + [25] = { 68.1, 55.3, 406, 300 }, + [26] = { 64, 55.3, 406, 300 }, + [27] = { 62.7, 55.3, 406, 300 }, + [28] = { 66.8, 55.3, 406, 300 }, + [29] = { 73.7, 55.3, 406, 300 }, + [30] = { 61.4, 55.2, 406, 300 }, + [31] = { 67.2, 55.2, 406, 300 }, + [32] = { 69.6, 55.2, 406, 300 }, + [33] = { 70.9, 55.2, 406, 300 }, + [34] = { 75.1, 55.2, 406, 300 }, + [35] = { 60.7, 54.9, 406, 300 }, + [36] = { 71.6, 54.6, 406, 300 }, + [37] = { 70.3, 54.6, 406, 300 }, + [38] = { 63.6, 54.4, 406, 300 }, + [39] = { 62, 54.3, 406, 300 }, + [40] = { 65.4, 54.2, 406, 300 }, + [41] = { 69.5, 54.2, 406, 300 }, + [42] = { 68.9, 54.2, 406, 300 }, + [43] = { 60.6, 54.2, 406, 300 }, + [44] = { 73.1, 54, 406, 300 }, + [45] = { 61.4, 54, 406, 300 }, + [46] = { 60.5, 53.5, 406, 300 }, + [47] = { 70.3, 53.5, 406, 300 }, + [48] = { 65.2, 53.4, 406, 300 }, + [49] = { 60, 53.3, 406, 300 }, + [50] = { 73.7, 53.2, 406, 300 }, + [51] = { 69.6, 53.1, 406, 300 }, + [52] = { 64.8, 52.7, 406, 300 }, + [53] = { 66.4, 52.5, 406, 300 }, + [54] = { 66.4, 52.3, 406, 300 }, + [55] = { 59.4, 52.3, 406, 300 }, + [56] = { 60.6, 52.1, 406, 300 }, + [57] = { 66, 52.1, 406, 300 }, + [58] = { 66.3, 51.8, 406, 300 }, + [59] = { 66, 51.7, 406, 300 }, + [60] = { 65.8, 51.6, 406, 300 }, + [61] = { 67.2, 51.5, 406, 300 }, + [62] = { 60.5, 51.5, 406, 300 }, + [63] = { 72.4, 51.5, 406, 300 }, + [64] = { 66.7, 51.3, 406, 300 }, + [65] = { 66.4, 51.3, 406, 300 }, + [66] = { 66.8, 51.3, 406, 300 }, + [67] = { 72.9, 51.2, 406, 300 }, + [68] = { 66.3, 51.1, 406, 300 }, + [69] = { 64.8, 51.1, 406, 300 }, + [70] = { 66.5, 50.9, 406, 300 }, + [71] = { 68.3, 50.6, 406, 300 }, + [72] = { 65.8, 50.6, 406, 300 }, + [73] = { 65.4, 50.5, 406, 300 }, + [74] = { 70.2, 50.3, 406, 300 }, + [75] = { 68.7, 50.2, 406, 300 }, + [76] = { 66.2, 50, 406, 300 }, + [77] = { 67.7, 49.9, 406, 300 }, + [78] = { 66.8, 49.5, 406, 300 }, + [79] = { 66.1, 49.4, 406, 300 }, + [80] = { 72.2, 49.2, 406, 300 }, + [81] = { 65.6, 49.2, 406, 300 }, + [82] = { 68.2, 49.2, 406, 300 }, + [83] = { 64.1, 49, 406, 300 }, + [84] = { 71, 48.4, 406, 300 }, + [85] = { 67.6, 48.2, 406, 300 }, + [86] = { 64.8, 48.1, 406, 300 }, + [87] = { 64.3, 48, 406, 300 }, + [88] = { 71.6, 47.7, 406, 300 }, + [89] = { 65.6, 47.4, 406, 300 }, + [90] = { 64.2, 47.2, 406, 300 }, + [91] = { 66.1, 46.4, 406, 300 }, + [92] = { 65.4, 46.2, 406, 300 }, + [93] = { 63.1, 46.1, 406, 300 }, + [94] = { 64.2, 46, 406, 300 }, + [95] = { 66.7, 45.9, 406, 300 }, + [96] = { 64.9, 45.7, 406, 300 }, + [97] = { 64.2, 45.5, 406, 300 }, + [98] = { 65.5, 45.2, 406, 300 }, + [99] = { 67, 45.1, 406, 300 }, + [100] = { 64.9, 44.9, 406, 300 }, + [101] = { 71.6, 44.1, 406, 300 }, + [102] = { 71, 44.1, 406, 300 }, + [103] = { 71.6, 43.2, 406, 300 }, + }, + ["lvl"] = "19-20", + }, + [3992] = { + ["coords"] = { + [1] = { 62.9, 40.8, 406, 300 }, + [2] = { 63.4, 40.7, 406, 300 }, + [3] = { 64.2, 39.6, 406, 300 }, + [4] = { 64.1, 39.5, 406, 300 }, + [5] = { 64.2, 39, 406, 300 }, + [6] = { 64.4, 38.9, 406, 300 }, + [7] = { 64, 38.8, 406, 300 }, + }, + ["lvl"] = "20-21", + }, + [3993] = { + ["coords"] = { + [1] = { 62.8, 40.3, 406, 300 }, + [2] = { 64.5, 40, 406, 300 }, + [3] = { 63.4, 40, 406, 300 }, + }, + ["lvl"] = "21-22", + }, + [3994] = { + ["coords"] = { + [1] = { 37.1, 8.1, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [3995] = { + ["coords"] = { + [1] = { 74.5, 97.9, 406, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [3996] = { + ["coords"] = { + [1] = { 35.8, 49.1, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "19", + }, + [3997] = { + ["coords"] = {}, + ["lvl"] = "21-22", + }, + [3998] = { + ["coords"] = {}, + ["lvl"] = "20-21", + }, + [3999] = { + ["coords"] = { + [1] = { 72.7, 63, 406, 300 }, + [2] = { 72, 62.9, 406, 300 }, + [3] = { 72.2, 62.8, 406, 300 }, + [4] = { 73, 62.7, 406, 300 }, + [5] = { 72.5, 62.5, 406, 300 }, + [6] = { 72.3, 62.3, 406, 300 }, + [7] = { 72.9, 62.3, 406, 300 }, + [8] = { 72.4, 62.2, 406, 300 }, + [9] = { 71.8, 62.2, 406, 300 }, + [10] = { 73.2, 62, 406, 300 }, + [11] = { 72.3, 61.7, 406, 300 }, + [12] = { 73, 61.6, 406, 300 }, + [13] = { 72.1, 61.6, 406, 300 }, + [14] = { 72.6, 61.4, 406, 300 }, + [15] = { 72, 61.4, 406, 300 }, + [16] = { 73.3, 61.4, 406, 300 }, + [17] = { 72.6, 61.2, 406, 300 }, + [18] = { 72, 61.1, 406, 300 }, + [19] = { 72.4, 61.1, 406, 300 }, + [20] = { 72.3, 61, 406, 300 }, + [21] = { 71.9, 60.8, 406, 300 }, + [22] = { 72.7, 60.8, 406, 300 }, + [23] = { 71.7, 60.8, 406, 300 }, + [24] = { 73.5, 60.7, 406, 300 }, + [25] = { 72.3, 60.7, 406, 300 }, + [26] = { 73.9, 60.7, 406, 300 }, + [27] = { 72.9, 60.6, 406, 300 }, + [28] = { 73.3, 60.5, 406, 300 }, + [29] = { 72.9, 60.5, 406, 300 }, + [30] = { 71.7, 60.5, 406, 300 }, + [31] = { 72.2, 60.4, 406, 300 }, + [32] = { 73.7, 60.2, 406, 300 }, + [33] = { 74.1, 60, 406, 300 }, + [34] = { 71.7, 60, 406, 300 }, + [35] = { 73.4, 60, 406, 300 }, + [36] = { 73.1, 59.9, 406, 300 }, + [37] = { 73.2, 59.8, 406, 300 }, + [38] = { 74.4, 59.8, 406, 300 }, + [39] = { 72.4, 59.8, 406, 300 }, + [40] = { 73.3, 59.7, 406, 300 }, + [41] = { 72.8, 59.4, 406, 300 }, + [42] = { 75, 59.3, 406, 300 }, + [43] = { 73.1, 59.1, 406, 300 }, + [44] = { 74.3, 59, 406, 300 }, + [45] = { 75, 58.5, 406, 300 }, + [46] = { 73, 58.3, 406, 300 }, + }, + ["lvl"] = "21-22", + }, + [4001] = { + ["coords"] = {}, + ["lvl"] = "19-20", + }, + [4002] = { + ["coords"] = {}, + ["lvl"] = "22-23", + }, + [4003] = { + ["coords"] = { + [1] = { 73.2, 61, 406, 300 }, + [2] = { 73.9, 59.6, 406, 300 }, + [3] = { 74.1, 59.4, 406, 300 }, + [4] = { 75.7, 59.2, 406, 300 }, + [5] = { 73.7, 59.2, 406, 300 }, + [6] = { 73.5, 58.7, 406, 300 }, + [7] = { 74.4, 58.4, 406, 300 }, + }, + ["lvl"] = "20-21", + }, + [4004] = { + ["coords"] = { + [1] = { 72.4, 62.4, 406, 300 }, + [2] = { 73, 62.3, 406, 300 }, + [3] = { 72.4, 61.2, 406, 300 }, + [4] = { 73, 61.2, 406, 300 }, + [5] = { 72.6, 60.2, 406, 300 }, + [6] = { 73.8, 60.1, 406, 300 }, + [7] = { 73.9, 59.7, 406, 300 }, + [8] = { 72.7, 59.6, 406, 300 }, + [9] = { 74.2, 59.5, 406, 300 }, + }, + ["lvl"] = "21-22", + }, + [4005] = { + ["coords"] = { + [1] = { 64.3, 93.4, 406, 300 }, + [2] = { 65.4, 92.3, 406, 300 }, + [3] = { 68.8, 88.5, 406, 300 }, + [4] = { 67.3, 87.7, 406, 300 }, + [5] = { 64.8, 83.5, 406, 300 }, + [6] = { 61.6, 81.8, 406, 300 }, + [7] = { 61.4, 81.6, 406, 300 }, + [8] = { 59.2, 78.1, 406, 300 }, + [9] = { 60.5, 76.5, 406, 300 }, + [10] = { 57.6, 76.3, 406, 300 }, + [11] = { 56.3, 76.3, 406, 300 }, + [12] = { 53.6, 76.2, 406, 300 }, + [13] = { 55.9, 76.1, 406, 300 }, + [14] = { 55, 75.9, 406, 300 }, + [15] = { 53.8, 75.8, 406, 300 }, + [16] = { 53.4, 75.8, 406, 300 }, + [17] = { 58.9, 75.7, 406, 300 }, + [18] = { 54.6, 75.2, 406, 300 }, + [19] = { 60.1, 75.1, 406, 300 }, + [20] = { 54.7, 74.7, 406, 300 }, + [21] = { 59, 73.8, 406, 300 }, + [22] = { 59.1, 72.7, 406, 300 }, + [23] = { 60.8, 71.9, 406, 300 }, + }, + ["lvl"] = "16-17", + }, + [4006] = { + ["coords"] = { + [1] = { 54.5, 71.9, 406, 300 }, + [2] = { 53.5, 71.8, 406, 300 }, + [3] = { 52.9, 71.7, 406, 300 }, + [4] = { 54.1, 71.4, 406, 300 }, + [5] = { 53.5, 71.1, 406, 300 }, + [6] = { 76.8, 54.1, 406, 300 }, + [7] = { 77.5, 53.4, 406, 300 }, + [8] = { 76.1, 53.1, 406, 300 }, + [9] = { 78.6, 52.9, 406, 300 }, + [10] = { 76.9, 52.5, 406, 300 }, + [11] = { 75.7, 52.2, 406, 300 }, + [12] = { 79.3, 51.5, 406, 300 }, + [13] = { 74.8, 51.4, 406, 300 }, + [14] = { 77.6, 50.9, 406, 300 }, + [15] = { 76.4, 50.9, 406, 300 }, + [16] = { 76.1, 50.6, 406, 300 }, + [17] = { 77.3, 50.3, 406, 300 }, + [18] = { 59.8, 50, 406, 300 }, + [19] = { 59.4, 49.3, 406, 300 }, + [20] = { 60.8, 48.7, 406, 300 }, + [21] = { 61.7, 48.5, 406, 300 }, + [22] = { 60.1, 48.5, 406, 300 }, + [23] = { 75.7, 47.7, 406, 300 }, + [24] = { 60.7, 47.1, 406, 300 }, + [25] = { 74.9, 46.9, 406, 300 }, + [26] = { 70.2, 46.1, 406, 300 }, + [27] = { 76.5, 46, 406, 300 }, + [28] = { 61.3, 46, 406, 300 }, + [29] = { 74.6, 46, 406, 300 }, + [30] = { 75.7, 46, 406, 300 }, + [31] = { 74.3, 45.9, 406, 300 }, + [32] = { 73, 45.3, 406, 300 }, + [33] = { 68.1, 45.1, 406, 300 }, + [34] = { 76.5, 45.1, 406, 300 }, + [35] = { 69.6, 45, 406, 300 }, + [36] = { 77.4, 45, 406, 300 }, + [37] = { 74.1, 44.5, 406, 300 }, + [38] = { 75.5, 44.5, 406, 300 }, + [39] = { 77.1, 44.3, 406, 300 }, + [40] = { 74.2, 43.7, 406, 300 }, + [41] = { 75.1, 43.2, 406, 300 }, + [42] = { 76.2, 43.1, 406, 300 }, + [43] = { 74.1, 42.7, 406, 300 }, + [44] = { 73.6, 42.7, 406, 300 }, + [45] = { 69.2, 41, 406, 300 }, + }, + ["lvl"] = "19-20", + }, + [4007] = { + ["coords"] = { + [1] = { 52.8, 75.6, 406, 300 }, + [2] = { 52.2, 75.5, 406, 300 }, + [3] = { 53.4, 74.9, 406, 300 }, + [4] = { 52.5, 74.8, 406, 300 }, + [5] = { 53, 74.5, 406, 300 }, + [6] = { 53.7, 74.2, 406, 300 }, + [7] = { 52.5, 73.9, 406, 300 }, + [8] = { 54, 73.9, 406, 300 }, + [9] = { 54.8, 73.6, 406, 300 }, + [10] = { 52.8, 73.5, 406, 300 }, + [11] = { 53.2, 73.1, 406, 300 }, + [12] = { 52.9, 72.8, 406, 300 }, + [13] = { 54.7, 72.8, 406, 300 }, + [14] = { 53.8, 72.7, 406, 300 }, + [15] = { 52.9, 72.4, 406, 300 }, + [16] = { 61, 66.4, 406, 300 }, + [17] = { 61.6, 66.4, 406, 300 }, + [18] = { 61.5, 64.9, 406, 300 }, + [19] = { 62.1, 63.8, 406, 300 }, + [20] = { 60.9, 63.8, 406, 300 }, + [21] = { 61.6, 63.7, 406, 300 }, + [22] = { 62.4, 63.4, 406, 300 }, + [23] = { 60.5, 63, 406, 300 }, + [24] = { 62.1, 62.8, 406, 300 }, + [25] = { 52.7, 62.2, 406, 300 }, + [26] = { 60, 61.6, 406, 300 }, + [27] = { 54, 61.5, 406, 300 }, + [28] = { 63.1, 61.4, 406, 300 }, + [29] = { 61.8, 61, 406, 300 }, + [30] = { 64.8, 60.9, 406, 300 }, + [31] = { 52.4, 60.9, 406, 300 }, + [32] = { 59, 60.7, 406, 300 }, + [33] = { 61.1, 60.4, 406, 300 }, + [34] = { 62.7, 60.3, 406, 300 }, + [35] = { 60.6, 59.7, 406, 300 }, + [36] = { 61.1, 59.4, 406, 300 }, + [37] = { 62.2, 59.4, 406, 300 }, + [38] = { 52.3, 58.4, 406, 300 }, + [39] = { 61.7, 58.1, 406, 300 }, + [40] = { 61.2, 57.3, 406, 300 }, + [41] = { 51.8, 56.6, 406, 300 }, + [42] = { 53.2, 55.4, 406, 300 }, + [43] = { 52, 54.2, 406, 300 }, + [44] = { 48.5, 48.6, 406, 300 }, + [45] = { 47.2, 47.4, 406, 300 }, + [46] = { 49.1, 47.3, 406, 300 }, + [47] = { 51.8, 47.3, 406, 300 }, + [48] = { 46.8, 46.2, 406, 300 }, + [49] = { 48.8, 45.4, 406, 300 }, + [50] = { 53.4, 44.9, 406, 300 }, + [51] = { 48.4, 44.1, 406, 300 }, + [52] = { 53.2, 43, 406, 300 }, + [53] = { 51.2, 42.4, 406, 300 }, + [54] = { 52.4, 42, 406, 300 }, + [55] = { 50.9, 39.6, 406, 300 }, + }, + ["lvl"] = "17-18", + }, + [4008] = { + ["coords"] = { + [1] = { 31, 26.9, 17, 300 }, + [2] = { 30.9, 26.8, 17, 300 }, + [3] = { 31.7, 26.4, 17, 300 }, + [4] = { 30.5, 26, 17, 300 }, + [5] = { 33.5, 24.9, 17, 300 }, + [6] = { 34, 24.3, 17, 300 }, + [7] = { 31, 22.9, 17, 300 }, + [8] = { 32.5, 21.6, 17, 300 }, + [9] = { 30.8, 21, 17, 300 }, + [10] = { 30.6, 20.9, 17, 300 }, + [11] = { 77.1, 95.8, 406, 300 }, + [12] = { 76.8, 95.6, 406, 300 }, + [13] = { 78.5, 94.9, 406, 300 }, + [14] = { 65, 94.5, 406, 300 }, + [15] = { 76, 94, 406, 300 }, + [16] = { 82.3, 91.6, 406, 300 }, + [17] = { 83.3, 90.4, 406, 300 }, + [18] = { 74.6, 88.9, 406, 300 }, + [19] = { 73.8, 88.4, 406, 300 }, + [20] = { 72.8, 88.2, 406, 300 }, + [21] = { 72.7, 88.1, 406, 300 }, + [22] = { 77.2, 87.5, 406, 300 }, + [23] = { 80.2, 84.9, 406, 300 }, + [24] = { 76.6, 83.6, 406, 300 }, + [25] = { 76.2, 83.3, 406, 300 }, + [26] = { 57.6, 72.6, 406, 300 }, + [27] = { 61.4, 72.5, 406, 300 }, + }, + ["lvl"] = "15-17", + }, + [4009] = { + ["coords"] = { + [1] = { 61.8, 69.3, 406, 300 }, + [2] = { 62.5, 65.9, 406, 300 }, + [3] = { 63, 64.2, 406, 300 }, + [4] = { 63.8, 63, 406, 300 }, + [5] = { 65.7, 61, 406, 300 }, + [6] = { 59.1, 59.8, 406, 300 }, + [7] = { 66.6, 59.2, 406, 300 }, + [8] = { 70.5, 58.6, 406, 300 }, + [9] = { 77.9, 55.7, 406, 300 }, + [10] = { 58.6, 54.5, 406, 300 }, + [11] = { 79.7, 51.7, 406, 300 }, + [12] = { 78.5, 50, 406, 300 }, + [13] = { 58.7, 48.4, 406, 300 }, + [14] = { 60.2, 44.8, 406, 300 }, + [15] = { 76, 42.5, 406, 300 }, + [16] = { 69.7, 42.2, 406, 300 }, + [17] = { 72.2, 40.2, 406, 300 }, + [18] = { 50.9, 38.6, 406, 300 }, + [19] = { 49.1, 36.9, 406, 300 }, + [20] = { 47.6, 36.6, 406, 300 }, + [21] = { 48.6, 36.4, 406, 300 }, + [22] = { 50.3, 35.4, 406, 300 }, + [23] = { 48.7, 34.9, 406, 300 }, + [24] = { 51.1, 34.9, 406, 300 }, + [25] = { 47.7, 34.9, 406, 300 }, + [26] = { 51, 34.6, 406, 300 }, + [27] = { 47.3, 33.6, 406, 300 }, + [28] = { 49.6, 33.4, 406, 300 }, + [29] = { 50.6, 33.1, 406, 300 }, + }, + ["lvl"] = "18-19", + }, + [4011] = { + ["coords"] = { + [1] = { 62, 64.3, 406, 300 }, + [2] = { 63.5, 59.2, 406, 300 }, + [3] = { 77.7, 54.1, 406, 300 }, + [4] = { 60.5, 48.7, 406, 300 }, + [5] = { 77.5, 43.9, 406, 300 }, + }, + ["lvl"] = "19-20", + }, + [4012] = { + ["coords"] = { + [1] = { 46.1, 47.4, 406, 300 }, + [2] = { 46.2, 46.9, 406, 300 }, + [3] = { 51.8, 45.7, 406, 300 }, + [4] = { 46.2, 45.5, 406, 300 }, + [5] = { 50.4, 45.4, 406, 300 }, + [6] = { 44.8, 44.8, 406, 300 }, + [7] = { 52.4, 44.6, 406, 300 }, + [8] = { 54.1, 43.5, 406, 300 }, + [9] = { 52, 43.4, 406, 300 }, + [10] = { 55, 43.3, 406, 300 }, + [11] = { 50.5, 43.2, 406, 300 }, + [12] = { 51.8, 43.2, 406, 300 }, + [13] = { 54.2, 42.6, 406, 300 }, + [14] = { 55.3, 41.8, 406, 300 }, + }, + ["lvl"] = "21-22", + }, + [4013] = { + ["coords"] = { + [1] = { 53.7, 41.3, 406, 300 }, + [2] = { 53, 39.7, 406, 300 }, + [3] = { 55.4, 38, 406, 300 }, + [4] = { 54.2, 37.8, 406, 300 }, + [5] = { 52.7, 37.4, 406, 300 }, + [6] = { 54.6, 37.3, 406, 300 }, + [7] = { 53.1, 37, 406, 300 }, + [8] = { 53.4, 36.1, 406, 300 }, + [9] = { 53.9, 35.9, 406, 300 }, + [10] = { 53.4, 35.7, 406, 300 }, + }, + ["lvl"] = "23-24", + }, + [4014] = { + ["coords"] = { + [1] = { 45.6, 46.7, 406, 300 }, + [2] = { 45.5, 46.4, 406, 300 }, + [3] = { 45.4, 46, 406, 300 }, + [4] = { 51.3, 44.7, 406, 300 }, + [5] = { 50.8, 44.1, 406, 300 }, + [6] = { 55.6, 43.1, 406, 300 }, + [7] = { 55.4, 42.3, 406, 300 }, + [8] = { 48.3, 41.4, 406, 300 }, + [9] = { 54.8, 40.4, 406, 300 }, + [10] = { 49, 40.2, 406, 300 }, + [11] = { 52.5, 39.1, 406, 300 }, + [12] = { 52.7, 38.9, 406, 300 }, + [13] = { 42.9, 38.5, 406, 300 }, + [14] = { 53.9, 35, 406, 300 }, + }, + ["lvl"] = "22-23", + }, + [4015] = { + ["coords"] = { + [1] = { 53.8, 36.3, 406, 14400 }, + }, + ["lvl"] = "25", + ["rnk"] = "4", + }, + [4016] = { + ["coords"] = { + [1] = { 37.4, 20.9, 406, 300 }, + [2] = { 39.8, 13.8, 406, 300 }, + }, + ["lvl"] = "24-25", + }, + [4017] = { + ["coords"] = { + [1] = { 33.1, 13.2, 406, 300 }, + }, + ["lvl"] = "26-27", + }, + [4018] = { + ["coords"] = { + [1] = { 46.8, 38.2, 406, 300 }, + [2] = { 50.4, 36.6, 406, 300 }, + [3] = { 51.8, 35.2, 406, 300 }, + [4] = { 47.1, 31.6, 406, 300 }, + [5] = { 46.8, 27.6, 406, 300 }, + [6] = { 46.6, 27.1, 406, 300 }, + [7] = { 44.4, 25.4, 406, 300 }, + [8] = { 45.3, 23.8, 406, 300 }, + [9] = { 44.3, 23.6, 406, 300 }, + [10] = { 45.2, 23.4, 406, 300 }, + [11] = { 44.9, 22.6, 406, 300 }, + [12] = { 46.2, 21.4, 406, 300 }, + [13] = { 45, 21.3, 406, 300 }, + [14] = { 45.4, 20.1, 406, 300 }, + [15] = { 37.5, 16.7, 406, 300 }, + [16] = { 40.1, 15.3, 406, 300 }, + [17] = { 41.1, 11.4, 406, 300 }, + [18] = { 40.1, 11, 406, 300 }, + [19] = { 39.6, 9.4, 406, 300 }, + [20] = { 40.1, 8.3, 406, 300 }, + [21] = { 38.8, 8, 406, 300 }, + [22] = { 39.5, 7.4, 406, 300 }, + [23] = { 40.7, 6, 406, 300 }, + }, + ["lvl"] = "22-23", + }, + [4019] = { + ["coords"] = { + [1] = { 36.3, 16.4, 406, 300 }, + [2] = { 40, 12.2, 406, 300 }, + [3] = { 39.9, 9.9, 406, 300 }, + [4] = { 39.2, 5.9, 406, 300 }, + }, + ["lvl"] = "24-25", + }, + [4020] = { + ["coords"] = { + [1] = { 46.8, 29.5, 406, 300 }, + [2] = { 37.4, 20.4, 406, 300 }, + [3] = { 35.7, 20.1, 406, 300 }, + [4] = { 37.1, 19.9, 406, 300 }, + [5] = { 34.1, 19.6, 406, 300 }, + [6] = { 34.7, 19, 406, 300 }, + [7] = { 38.1, 18.9, 406, 300 }, + [8] = { 35.7, 18.3, 406, 300 }, + [9] = { 33.7, 17.7, 406, 300 }, + [10] = { 34.8, 17.4, 406, 300 }, + [11] = { 33.4, 17.3, 406, 300 }, + [12] = { 33.2, 17.2, 406, 300 }, + [13] = { 32, 16.6, 406, 300 }, + [14] = { 33.7, 16.4, 406, 300 }, + [15] = { 34.7, 16.4, 406, 300 }, + [16] = { 38.2, 15.4, 406, 300 }, + [17] = { 40, 12.5, 406, 300 }, + [18] = { 38.8, 10.3, 406, 300 }, + [19] = { 37.4, 10, 406, 300 }, + }, + ["lvl"] = "22-23", + }, + [4021] = { + ["coords"] = { + [1] = { 34, 20.2, 406, 300 }, + [2] = { 39, 19.3, 406, 300 }, + [3] = { 33.4, 18.2, 406, 300 }, + [4] = { 38.2, 17.5, 406, 300 }, + [5] = { 34.1, 13.2, 406, 300 }, + [6] = { 34.1, 11.3, 406, 300 }, + }, + ["lvl"] = "24-25", + }, + [4022] = { + ["coords"] = { + [1] = { 32, 66.6, 406, 300 }, + [2] = { 32.8, 66.3, 406, 300 }, + [3] = { 32.6, 65.6, 406, 300 }, + [4] = { 30.8, 65.3, 406, 300 }, + [5] = { 33.4, 65, 406, 300 }, + [6] = { 32.2, 64.9, 406, 300 }, + [7] = { 32.5, 64.6, 406, 300 }, + [8] = { 32.9, 64.4, 406, 300 }, + [9] = { 35.4, 64.3, 406, 300 }, + [10] = { 30.1, 64.2, 406, 300 }, + [11] = { 32.8, 64.2, 406, 300 }, + [12] = { 29.9, 64, 406, 300 }, + [13] = { 31.2, 63.9, 406, 300 }, + [14] = { 32.4, 63.7, 406, 300 }, + [15] = { 29.7, 63.6, 406, 300 }, + [16] = { 35.3, 63.4, 406, 300 }, + [17] = { 32.9, 63.3, 406, 300 }, + [18] = { 35.3, 63.2, 406, 300 }, + [19] = { 35.2, 63.2, 406, 300 }, + [20] = { 30.9, 63.1, 406, 300 }, + [21] = { 29.6, 62.6, 406, 300 }, + [22] = { 30.6, 62.5, 406, 300 }, + [23] = { 29.9, 62.5, 406, 300 }, + [24] = { 31, 62.1, 406, 300 }, + [25] = { 34.4, 62, 406, 300 }, + [26] = { 30, 61.9, 406, 300 }, + [27] = { 34.6, 61.5, 406, 300 }, + [28] = { 31.3, 61.4, 406, 300 }, + [29] = { 30.8, 61.3, 406, 300 }, + [30] = { 34.7, 61.3, 406, 300 }, + [31] = { 34.5, 60.8, 406, 300 }, + [32] = { 32.9, 60.7, 406, 300 }, + [33] = { 32.6, 60.7, 406, 300 }, + [34] = { 31.3, 60.4, 406, 300 }, + [35] = { 32, 60.4, 406, 300 }, + [36] = { 33, 60.1, 406, 300 }, + [37] = { 30.9, 59.2, 406, 300 }, + [38] = { 32.8, 59.1, 406, 300 }, + [39] = { 32, 58.9, 406, 300 }, + [40] = { 31.9, 58.8, 406, 300 }, + [41] = { 31.1, 58.5, 406, 300 }, + [42] = { 31.1, 57.8, 406, 300 }, + [43] = { 37.4, 49.1, 406, 300 }, + [44] = { 37.8, 44.1, 406, 300 }, + }, + ["lvl"] = "23-24", + }, + [4023] = { + ["coords"] = { + [1] = { 29.2, 71.1, 406, 300 }, + [2] = { 26.8, 70.9, 406, 300 }, + [3] = { 34.8, 70.7, 406, 300 }, + [4] = { 29.3, 70.4, 406, 300 }, + [5] = { 34.9, 70.3, 406, 300 }, + [6] = { 28.3, 70.2, 406, 300 }, + [7] = { 26.6, 70, 406, 300 }, + [8] = { 35.5, 69.9, 406, 300 }, + [9] = { 28, 69.8, 406, 300 }, + [10] = { 37, 69.8, 406, 300 }, + [11] = { 27.4, 69.7, 406, 300 }, + [12] = { 30.1, 69.6, 406, 300 }, + [13] = { 30.2, 69.6, 406, 300 }, + [14] = { 26.8, 69.5, 406, 300 }, + [15] = { 27, 69.5, 406, 300 }, + [16] = { 29.7, 69.3, 406, 300 }, + [17] = { 36.7, 69.3, 406, 300 }, + [18] = { 34.8, 69.2, 406, 300 }, + [19] = { 27.4, 69.1, 406, 300 }, + [20] = { 37, 69, 406, 300 }, + [21] = { 30, 69, 406, 300 }, + [22] = { 30.8, 68.9, 406, 300 }, + [23] = { 26.8, 68.7, 406, 300 }, + [24] = { 35.3, 68.7, 406, 300 }, + [25] = { 29.6, 68.6, 406, 300 }, + [26] = { 28.8, 68.5, 406, 300 }, + [27] = { 26.2, 68.3, 406, 300 }, + [28] = { 36.5, 68.2, 406, 300 }, + [29] = { 34.7, 68, 406, 300 }, + [30] = { 36.7, 67.6, 406, 300 }, + [31] = { 35.3, 67.6, 406, 300 }, + [32] = { 30.1, 67.5, 406, 300 }, + [33] = { 28.3, 67.4, 406, 300 }, + [34] = { 27.7, 67.4, 406, 300 }, + [35] = { 36.2, 67.4, 406, 300 }, + [36] = { 35.5, 66.6, 406, 300 }, + [37] = { 37.3, 65.7, 406, 300 }, + }, + ["lvl"] = "25-26", + }, + [4024] = { + ["coords"] = { + [1] = { 29.2, 71.1, 406, 300 }, + [2] = { 26.8, 70.9, 406, 300 }, + [3] = { 34.8, 70.7, 406, 300 }, + [4] = { 29.3, 70.4, 406, 300 }, + [5] = { 34.9, 70.3, 406, 300 }, + [6] = { 28.3, 70.2, 406, 300 }, + [7] = { 26.6, 70, 406, 300 }, + [8] = { 35.5, 69.9, 406, 300 }, + [9] = { 28, 69.8, 406, 300 }, + [10] = { 37, 69.8, 406, 300 }, + [11] = { 27.4, 69.7, 406, 300 }, + [12] = { 30.1, 69.6, 406, 300 }, + [13] = { 30.2, 69.6, 406, 300 }, + [14] = { 26.8, 69.5, 406, 300 }, + [15] = { 27, 69.5, 406, 300 }, + [16] = { 29.7, 69.3, 406, 300 }, + [17] = { 36.7, 69.3, 406, 300 }, + [18] = { 34.8, 69.2, 406, 300 }, + [19] = { 27.4, 69.1, 406, 300 }, + [20] = { 37, 69, 406, 300 }, + [21] = { 30, 69, 406, 300 }, + [22] = { 30.8, 68.9, 406, 300 }, + [23] = { 26.8, 68.7, 406, 300 }, + [24] = { 35.3, 68.7, 406, 300 }, + [25] = { 29.6, 68.6, 406, 300 }, + [26] = { 28.8, 68.5, 406, 300 }, + [27] = { 26.2, 68.3, 406, 300 }, + [28] = { 36.5, 68.2, 406, 300 }, + [29] = { 34.7, 68, 406, 300 }, + [30] = { 36.7, 67.6, 406, 300 }, + [31] = { 35.3, 67.6, 406, 300 }, + [32] = { 30.1, 67.5, 406, 300 }, + [33] = { 28.3, 67.4, 406, 300 }, + [34] = { 27.7, 67.4, 406, 300 }, + [35] = { 36.2, 67.4, 406, 300 }, + [36] = { 35.5, 66.6, 406, 300 }, + [37] = { 37.3, 65.7, 406, 300 }, + }, + ["lvl"] = "25-26", + }, + [4025] = { + ["coords"] = { + [1] = { 32, 66.6, 406, 300 }, + [2] = { 32.8, 66.3, 406, 300 }, + [3] = { 32.6, 65.6, 406, 300 }, + [4] = { 30.8, 65.3, 406, 300 }, + [5] = { 33.4, 65, 406, 300 }, + [6] = { 32.2, 64.9, 406, 300 }, + [7] = { 32.5, 64.6, 406, 300 }, + [8] = { 32.9, 64.4, 406, 300 }, + [9] = { 35.4, 64.3, 406, 300 }, + [10] = { 30.1, 64.2, 406, 300 }, + [11] = { 32.8, 64.2, 406, 300 }, + [12] = { 29.9, 64, 406, 300 }, + [13] = { 31.2, 63.9, 406, 300 }, + [14] = { 32.4, 63.7, 406, 300 }, + [15] = { 29.7, 63.6, 406, 300 }, + [16] = { 35.3, 63.4, 406, 300 }, + [17] = { 32.9, 63.3, 406, 300 }, + [18] = { 35.3, 63.2, 406, 300 }, + [19] = { 35.2, 63.2, 406, 300 }, + [20] = { 30.9, 63.1, 406, 300 }, + [21] = { 29.6, 62.6, 406, 300 }, + [22] = { 30.6, 62.5, 406, 300 }, + [23] = { 29.9, 62.5, 406, 300 }, + [24] = { 31, 62.1, 406, 300 }, + [25] = { 34.4, 62, 406, 300 }, + [26] = { 30, 61.9, 406, 300 }, + [27] = { 34.6, 61.5, 406, 300 }, + [28] = { 31.3, 61.4, 406, 300 }, + [29] = { 30.8, 61.3, 406, 300 }, + [30] = { 34.7, 61.3, 406, 300 }, + [31] = { 34.5, 60.8, 406, 300 }, + [32] = { 32.9, 60.7, 406, 300 }, + [33] = { 32.6, 60.7, 406, 300 }, + [34] = { 31.3, 60.4, 406, 300 }, + [35] = { 32, 60.4, 406, 300 }, + [36] = { 33, 60.1, 406, 300 }, + [37] = { 30.9, 59.2, 406, 300 }, + [38] = { 32.8, 59.1, 406, 300 }, + [39] = { 32, 58.9, 406, 300 }, + [40] = { 31.9, 58.8, 406, 300 }, + [41] = { 31.1, 58.5, 406, 300 }, + [42] = { 31.1, 57.8, 406, 300 }, + }, + ["lvl"] = "23-24", + }, + [4026] = { + ["coords"] = { + [1] = { 32, 66.6, 406, 300 }, + [2] = { 32.8, 66.3, 406, 300 }, + [3] = { 32.6, 65.6, 406, 300 }, + [4] = { 30.8, 65.3, 406, 300 }, + [5] = { 33.4, 65, 406, 300 }, + [6] = { 32.2, 64.9, 406, 300 }, + [7] = { 32.5, 64.6, 406, 300 }, + [8] = { 32.9, 64.4, 406, 300 }, + [9] = { 35.4, 64.3, 406, 300 }, + [10] = { 30.1, 64.2, 406, 300 }, + [11] = { 32.8, 64.2, 406, 300 }, + [12] = { 29.9, 64, 406, 300 }, + [13] = { 31.2, 63.9, 406, 300 }, + [14] = { 32.4, 63.7, 406, 300 }, + [15] = { 29.7, 63.6, 406, 300 }, + [16] = { 35.3, 63.4, 406, 300 }, + [17] = { 32.9, 63.3, 406, 300 }, + [18] = { 35.3, 63.2, 406, 300 }, + [19] = { 35.2, 63.2, 406, 300 }, + [20] = { 30.9, 63.1, 406, 300 }, + [21] = { 29.6, 62.6, 406, 300 }, + [22] = { 30.6, 62.5, 406, 300 }, + [23] = { 29.9, 62.5, 406, 300 }, + [24] = { 31, 62.1, 406, 300 }, + [25] = { 34.4, 62, 406, 300 }, + [26] = { 30, 61.9, 406, 300 }, + [27] = { 34.6, 61.5, 406, 300 }, + [28] = { 31.3, 61.4, 406, 300 }, + [29] = { 30.8, 61.3, 406, 300 }, + [30] = { 34.7, 61.3, 406, 300 }, + [31] = { 34.5, 60.8, 406, 300 }, + [32] = { 32.9, 60.7, 406, 300 }, + [33] = { 32.6, 60.7, 406, 300 }, + [34] = { 31.3, 60.4, 406, 300 }, + [35] = { 32, 60.4, 406, 300 }, + [36] = { 33, 60.1, 406, 300 }, + [37] = { 30.9, 59.2, 406, 300 }, + [38] = { 32.8, 59.1, 406, 300 }, + [39] = { 32, 58.9, 406, 300 }, + [40] = { 31.9, 58.8, 406, 300 }, + [41] = { 31.1, 58.5, 406, 300 }, + [42] = { 31.1, 57.8, 406, 300 }, + }, + ["lvl"] = "24-25", + }, + [4027] = { + ["coords"] = { + [1] = { 29.2, 71.1, 406, 300 }, + [2] = { 26.8, 70.9, 406, 300 }, + [3] = { 34.8, 70.7, 406, 300 }, + [4] = { 29.3, 70.4, 406, 300 }, + [5] = { 34.9, 70.3, 406, 300 }, + [6] = { 28.3, 70.2, 406, 300 }, + [7] = { 26.6, 70, 406, 300 }, + [8] = { 35.5, 69.9, 406, 300 }, + [9] = { 28, 69.8, 406, 300 }, + [10] = { 37, 69.8, 406, 300 }, + [11] = { 27.4, 69.7, 406, 300 }, + [12] = { 30.1, 69.6, 406, 300 }, + [13] = { 30.2, 69.6, 406, 300 }, + [14] = { 26.8, 69.5, 406, 300 }, + [15] = { 27, 69.5, 406, 300 }, + [16] = { 29.7, 69.3, 406, 300 }, + [17] = { 36.7, 69.3, 406, 300 }, + [18] = { 34.8, 69.2, 406, 300 }, + [19] = { 27.4, 69.1, 406, 300 }, + [20] = { 37, 69, 406, 300 }, + [21] = { 30, 69, 406, 300 }, + [22] = { 30.8, 68.9, 406, 300 }, + [23] = { 26.8, 68.7, 406, 300 }, + [24] = { 35.3, 68.7, 406, 300 }, + [25] = { 29.6, 68.6, 406, 300 }, + [26] = { 28.8, 68.5, 406, 300 }, + [27] = { 26.2, 68.3, 406, 300 }, + [28] = { 36.5, 68.2, 406, 300 }, + [29] = { 34.7, 68, 406, 300 }, + [30] = { 36.7, 67.6, 406, 300 }, + [31] = { 35.3, 67.6, 406, 300 }, + [32] = { 30.1, 67.5, 406, 300 }, + [33] = { 28.3, 67.4, 406, 300 }, + [34] = { 27.7, 67.4, 406, 300 }, + [35] = { 36.2, 67.4, 406, 300 }, + [36] = { 35.5, 66.6, 406, 300 }, + [37] = { 37.3, 65.7, 406, 300 }, + }, + ["lvl"] = "26-27", + }, + [4028] = { + ["coords"] = { + [1] = { 32.7, 72.8, 406, 300 }, + [2] = { 34.1, 67.6, 406, 300 }, + [3] = { 32.8, 63.5, 406, 300 }, + }, + ["lvl"] = "25-26", + }, + [4029] = { + ["coords"] = { + [1] = { 30.9, 64.7, 406, 300 }, + [2] = { 32.9, 63.2, 406, 300 }, + }, + ["lvl"] = "27-28", + }, + [4030] = { + ["coords"] = { + [1] = { 30.4, 68.1, 406, 18000 }, + }, + ["lvl"] = "30", + ["rnk"] = "4", + }, + [4031] = { + ["coords"] = { + [1] = { 32.8, 72.7, 406, 300 }, + [2] = { 31.4, 72.6, 406, 300 }, + [3] = { 34.7, 70.9, 406, 300 }, + }, + ["lvl"] = "25-27", + }, + [4032] = { + ["coords"] = { + [1] = { 29, 65.5, 406, 300 }, + [2] = { 36.3, 65.5, 406, 300 }, + }, + ["lvl"] = "23-25", + }, + [4033] = { + ["coords"] = {}, + ["lvl"] = "22-23", + }, + [4034] = { + ["coords"] = { + [1] = { 30.4, 66, 406, 300 }, + [2] = { 34.1, 65.4, 406, 300 }, + }, + ["lvl"] = "24-25", + }, + [4035] = { + ["coords"] = { + [1] = { 32, 73.3, 406, 300 }, + }, + ["lvl"] = "26-27", + }, + [4036] = { + ["coords"] = { + [1] = { 34.1, 63.7, 406, 240 }, + [2] = { 37.3, 60.4, 406, 240 }, + [3] = { 34.5, 59.9, 406, 240 }, + [4] = { 35.1, 53.1, 406, 240 }, + [5] = { 36.5, 51.4, 406, 240 }, + [6] = { 37.4, 49.3, 406, 240 }, + [7] = { 37.1, 48.7, 406, 240 }, + [8] = { 44, 41, 406, 240 }, + }, + ["lvl"] = "23-24", + }, + [4037] = { + ["coords"] = { + [1] = { 31.1, 67, 406, 240 }, + [2] = { 28, 66.5, 406, 240 }, + [3] = { 35.4, 66.3, 406, 240 }, + [4] = { 30, 65.4, 406, 240 }, + [5] = { 28.5, 63.3, 406, 240 }, + }, + ["lvl"] = "24-25", + }, + [4038] = { + ["coords"] = { + [1] = { 33.2, 74.9, 406, 240 }, + [2] = { 31.1, 73.8, 406, 240 }, + [3] = { 30, 73.7, 406, 240 }, + [4] = { 35.3, 73.7, 406, 240 }, + [5] = { 32.6, 73.5, 406, 240 }, + [6] = { 36.4, 72.2, 406, 240 }, + [7] = { 31.6, 70.8, 406, 240 }, + }, + ["lvl"] = "26-27", + }, + [4039] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [4040] = { + ["coords"] = { + [1] = { 46.7, 63.8, 11, 300 }, + [2] = { 47.5, 63.3, 11, 300 }, + [3] = { 49.8, 63.1, 11, 300 }, + [4] = { 48.6, 62.8, 11, 300 }, + [5] = { 50.8, 62.1, 11, 300 }, + [6] = { 48.6, 62, 11, 300 }, + [7] = { 45.7, 61.2, 11, 300 }, + [8] = { 51.4, 61, 11, 300 }, + [9] = { 48.4, 60.7, 11, 300 }, + [10] = { 45.9, 60.6, 11, 300 }, + [11] = { 49.3, 60.4, 11, 300 }, + [12] = { 49.8, 60.3, 11, 300 }, + [13] = { 47.5, 59.6, 11, 300 }, + [14] = { 47, 59.4, 11, 300 }, + [15] = { 46.9, 59.3, 11, 300 }, + [16] = { 50.4, 59.2, 11, 300 }, + [17] = { 49.5, 58.9, 11, 300 }, + }, + ["lvl"] = "21-22", + }, + [4041] = { + ["coords"] = { + [1] = { 34.1, 73.8, 406, 300 }, + [2] = { 37.2, 73.5, 406, 300 }, + [3] = { 33.3, 72.7, 406, 300 }, + [4] = { 34.6, 72.6, 406, 300 }, + [5] = { 32.6, 72.2, 406, 300 }, + [6] = { 31, 72.1, 406, 300 }, + [7] = { 30.3, 72.1, 406, 300 }, + [8] = { 35.5, 71.4, 406, 300 }, + [9] = { 35.9, 70.5, 406, 300 }, + [10] = { 30.9, 69.8, 406, 300 }, + [11] = { 32, 68.7, 406, 300 }, + }, + ["lvl"] = "27-28", + }, + [4042] = { + ["coords"] = { + [1] = { 32.7, 67.4, 406, 300 }, + [2] = { 29.3, 66.6, 406, 300 }, + [3] = { 36, 66.1, 406, 300 }, + [4] = { 27.8, 64.4, 406, 300 }, + [5] = { 36, 64.1, 406, 300 }, + }, + ["lvl"] = "25-26", + }, + [4043] = { + ["coords"] = { + [1] = { 82.3, 18.9, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "8", + }, + [4044] = { + ["coords"] = { + [1] = { 33.5, 62, 406, 300 }, + [2] = { 35, 59, 406, 300 }, + [3] = { 37.4, 51.3, 406, 300 }, + [4] = { 36.1, 49.2, 406, 300 }, + [5] = { 35.5, 47.7, 406, 300 }, + [6] = { 37, 46.4, 406, 300 }, + [7] = { 45.8, 44.2, 406, 300 }, + [8] = { 45.1, 43.5, 406, 300 }, + [9] = { 44.1, 39.4, 406, 300 }, + }, + ["lvl"] = "23-24", + }, + [4045] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [4046] = { + ["coords"] = { + [1] = { 44, 23.1, 215, 250 }, + [2] = { 69.9, 30.9, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "62", + }, + [4047] = { + ["coords"] = { + [1] = { 38.9, 38.4, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "62", + }, + [4048] = { + ["coords"] = { + [1] = { 89.6, 46.6, 357, 300 }, + [2] = { 8.1, 19, 400, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "28", + }, + [4049] = { + ["coords"] = { + [1] = { 35.3, 27.9, 17, 180 }, + [2] = { 85.9, 97.9, 406, 180 }, + }, + ["fac"] = "H", + ["lvl"] = "26", + }, + [4050] = { + ["coords"] = { + [1] = { 28.8, 17.6, 406, 300 }, + [2] = { 29.7, 16.9, 406, 300 }, + [3] = { 29.2, 16, 406, 300 }, + [4] = { 29.4, 15.9, 406, 300 }, + [5] = { 29.4, 15.7, 406, 300 }, + [6] = { 29.8, 15.6, 406, 300 }, + [7] = { 29, 15.6, 406, 300 }, + [8] = { 29.8, 15.2, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25-26", + ["rnk"] = "1", + }, + [4051] = { + ["coords"] = { + [1] = { 37, 15, 406, 300 }, + [2] = { 36.1, 14.4, 406, 300 }, + [3] = { 34.7, 12.3, 406, 300 }, + [4] = { 36.3, 11.9, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "23-24", + }, + [4052] = { + ["coords"] = { + [1] = { 29.5, 16.2, 406, 300 }, + [2] = { 29.6, 16.1, 406, 300 }, + [3] = { 30.4, 15.6, 406, 300 }, + [4] = { 30.3, 15.4, 406, 300 }, + [5] = { 30.3, 15.2, 406, 300 }, + [6] = { 28.9, 15.1, 406, 300 }, + [7] = { 29.5, 14.7, 406, 300 }, + [8] = { 28.6, 14.5, 406, 300 }, + [9] = { 28.5, 14.2, 406, 300 }, + [10] = { 28.5, 13.7, 406, 300 }, + [11] = { 28.5, 13.6, 406, 300 }, + [12] = { 28.3, 13.6, 406, 300 }, + [13] = { 28.1, 13.5, 406, 300 }, + [14] = { 27.9, 13.2, 406, 300 }, + [15] = { 28.4, 13, 406, 300 }, + [16] = { 28.3, 12.1, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "26-27", + ["rnk"] = "1", + }, + [4053] = { + ["coords"] = { + [1] = { 36.7, 15.6, 406, 300 }, + [2] = { 38.3, 13.3, 406, 300 }, + [3] = { 36.5, 13.1, 406, 300 }, + [4] = { 35.3, 12.1, 406, 300 }, + [5] = { 35.3, 11, 406, 300 }, + [6] = { 36.1, 14.4, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "23-25", + }, + [4054] = { + ["coords"] = { + [1] = { 58.6, 59.6, 331, 300 }, + [2] = { 58.4, 58, 331, 300 }, + [3] = { 59, 57, 331, 300 }, + [4] = { 58.7, 56.9, 331, 300 }, + [5] = { 59.2, 56.3, 331, 300 }, + [6] = { 59.9, 56.2, 331, 300 }, + [7] = { 58.9, 56.1, 331, 300 }, + [8] = { 58.1, 56, 331, 300 }, + [9] = { 60.5, 55.9, 331, 300 }, + [10] = { 59.8, 55.4, 331, 300 }, + [11] = { 60.4, 55.3, 331, 300 }, + [12] = { 58.7, 55.1, 331, 300 }, + [13] = { 59.8, 54.7, 331, 300 }, + [14] = { 59.3, 54.4, 331, 300 }, + [15] = { 58.6, 54.3, 331, 300 }, + [16] = { 59.9, 53.4, 331, 300 }, + [17] = { 60.7, 53, 331, 300 }, + [18] = { 61.5, 52.2, 331, 300 }, + [19] = { 61, 51.8, 331, 300 }, + [20] = { 60.7, 51.8, 331, 300 }, + [21] = { 61.5, 51.4, 331, 300 }, + [22] = { 60.9, 50.8, 331, 300 }, + [23] = { 61.5, 50.1, 331, 300 }, + [24] = { 62.3, 49.7, 331, 300 }, + [25] = { 61, 49.2, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "24-25", + }, + [4055] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "1", + }, + [4056] = { + ["coords"] = { + [1] = { 27.2, 14.2, 406, 300 }, + [2] = { 27, 14.1, 406, 300 }, + [3] = { 25.7, 14, 406, 300 }, + [4] = { 25.9, 13.5, 406, 300 }, + [5] = { 25.4, 13.1, 406, 300 }, + [6] = { 26, 13, 406, 300 }, + [7] = { 25.6, 12.5, 406, 300 }, + [8] = { 26.2, 12.5, 406, 300 }, + [9] = { 25.7, 11.6, 406, 300 }, + [10] = { 25.6, 11.5, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "26-27", + ["rnk"] = "1", + }, + [4057] = { + ["coords"] = { + [1] = { 35.4, 15.3, 406, 300 }, + [2] = { 35.4, 13.3, 406, 300 }, + [3] = { 37.5, 13.1, 406, 300 }, + [4] = { 35.8, 12.5, 406, 300 }, + [5] = { 37.2, 12.4, 406, 300 }, + [6] = { 38.2, 11.4, 406, 300 }, + [7] = { 35.9, 10.5, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "24-25", + }, + [4059] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [4061] = { + ["coords"] = { + [1] = { 29.6, 14.1, 406, 300 }, + [2] = { 27, 14, 406, 300 }, + [3] = { 27.7, 13.9, 406, 300 }, + [4] = { 29.5, 13.6, 406, 300 }, + [5] = { 26.9, 13.3, 406, 300 }, + [6] = { 27.2, 12.8, 406, 300 }, + [7] = { 27.6, 12.8, 406, 300 }, + [8] = { 27.4, 12.8, 406, 300 }, + [9] = { 27.1, 12.7, 406, 300 }, + [10] = { 28.3, 12.6, 406, 300 }, + [11] = { 26.7, 12.5, 406, 300 }, + [12] = { 28.2, 12.1, 406, 300 }, + [13] = { 27.2, 12, 406, 300 }, + [14] = { 26.8, 11.8, 406, 300 }, + [15] = { 27.1, 11.8, 406, 300 }, + [16] = { 26.7, 10.9, 406, 300 }, + [17] = { 26.8, 10.7, 406, 300 }, + [18] = { 27, 10.7, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25-26", + ["rnk"] = "1", + }, + [4062] = { + ["coords"] = { + [1] = { 49.6, 88.9, 45, 400 }, + [2] = { 48.6, 88.8, 45, 400 }, + [3] = { 48.9, 87.6, 45, 400 }, + }, + ["lvl"] = "30-31", + }, + [4063] = { + ["coords"] = { + [1] = { 61.3, 48.2, 45, 400 }, + }, + ["lvl"] = "39", + }, + [4064] = { + ["coords"] = { + [1] = { 62.3, 64.5, 44, 900 }, + [2] = { 62.1, 63.9, 44, 900 }, + [3] = { 64.4, 61.6, 44, 900 }, + [4] = { 66.4, 61.5, 44, 900 }, + [5] = { 63.8, 49.4, 44, 900 }, + [6] = { 63.4, 49.4, 44, 900 }, + [7] = { 63.5, 49.2, 44, 900 }, + [8] = { 63.2, 49, 44, 900 }, + [9] = { 65.4, 49, 44, 900 }, + [10] = { 63.5, 48.2, 44, 900 }, + }, + ["lvl"] = "20-21", + ["rnk"] = "1", + }, + [4065] = { + ["coords"] = { + [1] = { 62.2, 66.3, 44, 900 }, + [2] = { 61.2, 63.6, 44, 900 }, + [3] = { 66.8, 60.4, 44, 900 }, + [4] = { 65.5, 60.2, 44, 900 }, + [5] = { 69.2, 59.8, 44, 900 }, + [6] = { 66, 59.6, 44, 900 }, + [7] = { 68.3, 58.4, 44, 900 }, + [8] = { 69.3, 58.1, 44, 900 }, + [9] = { 66.3, 57, 44, 900 }, + [10] = { 69.3, 56.7, 44, 900 }, + [11] = { 67.7, 56.3, 44, 900 }, + [12] = { 68.2, 56, 44, 900 }, + [13] = { 67.7, 55.8, 44, 900 }, + [14] = { 69.3, 54.7, 44, 900 }, + [15] = { 69.6, 54.3, 44, 900 }, + [16] = { 65.8, 54.1, 44, 900 }, + [17] = { 69.5, 54, 44, 900 }, + [18] = { 67.2, 53.8, 44, 900 }, + [19] = { 67.4, 53.6, 44, 900 }, + [20] = { 66.4, 53.3, 44, 900 }, + [21] = { 67.8, 52.9, 44, 900 }, + [22] = { 63.1, 50, 44, 900 }, + [23] = { 63.7, 49.9, 44, 900 }, + [24] = { 62.9, 49.7, 44, 900 }, + [25] = { 65.5, 49.5, 44, 900 }, + [26] = { 63.2, 49.4, 44, 900 }, + [27] = { 65.7, 49.3, 44, 900 }, + [28] = { 62.9, 49, 44, 900 }, + [29] = { 63.1, 48.7, 44, 900 }, + [30] = { 66.3, 57.3, 44, 900 }, + }, + ["lvl"] = "21-22", + ["rnk"] = "1", + }, + [4066] = { + ["coords"] = { + [1] = { 25.6, 11.5, 406, 38000 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + ["rnk"] = "2", + }, + [4067] = { + ["coords"] = { + [1] = { 39.6, 17.7, 406, 300 }, + [2] = { 31.6, 12.7, 406, 300 }, + [3] = { 33.4, 12.3, 406, 300 }, + [4] = { 39, 12.1, 406, 300 }, + [5] = { 32.1, 11.5, 406, 300 }, + [6] = { 31, 11.5, 406, 300 }, + [7] = { 32.6, 11.2, 406, 300 }, + [8] = { 32, 10.2, 406, 300 }, + [9] = { 34.5, 10.1, 406, 300 }, + [10] = { 33.3, 9.9, 406, 300 }, + [11] = { 30.9, 9.6, 406, 300 }, + [12] = { 34.5, 9.1, 406, 300 }, + [13] = { 32.2, 8.9, 406, 300 }, + [14] = { 33, 8, 406, 300 }, + [15] = { 34.3, 8, 406, 300 }, + }, + ["lvl"] = "23-24", + }, + [4068] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [4069] = { + ["coords"] = {}, + ["lvl"] = "18-19", + }, + [4070] = { + ["coords"] = { + [1] = { 62.9, 40.8, 406, 300 }, + [2] = { 63.4, 40.7, 406, 300 }, + [3] = { 64.2, 39.6, 406, 300 }, + [4] = { 64.1, 39.5, 406, 300 }, + [5] = { 64.2, 39, 406, 300 }, + [6] = { 64.4, 38.9, 406, 300 }, + [7] = { 64, 38.8, 406, 300 }, + }, + ["lvl"] = "20-21", + }, + [4071] = { + ["coords"] = {}, + ["lvl"] = "17-18", + }, + [4072] = { + ["coords"] = { + [1] = { 74.7, 98.1, 406, 30 }, + [2] = { 74.7, 97.8, 406, 30 }, + [3] = { 74.6, 97.7, 406, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [4073] = { + ["coords"] = { + [1] = { 64.1, 46.4, 406, 300 }, + }, + ["lvl"] = "23", + }, + [4074] = { + ["coords"] = { + [1] = { 64.1, 56.6, 406, 300 }, + }, + ["lvl"] = "23", + }, + [4075] = { + ["coords"] = { + [1] = { 21.8, 54.9, 28, 180 }, + [2] = { 26.8, 52.9, 28, 180 }, + [3] = { 17.9, 52.1, 28, 180 }, + [4] = { 21.2, 48.2, 28, 180 }, + [5] = { 19.6, 47.8, 28, 180 }, + [6] = { 32.7, 29.9, 28, 180 }, + [7] = { 30.7, 24.1, 28, 180 }, + [8] = { 27.5, 76.8, 33, 300 }, + [9] = { 26.5, 73.6, 33, 300 }, + [10] = { 60.3, 87.3, 36, 300 }, + [11] = { 59, 85.1, 36, 300 }, + [12] = { 60.8, 82.8, 36, 300 }, + [13] = { 11.7, 78.3, 36, 300 }, + [14] = { 18.3, 75.5, 36, 300 }, + [15] = { 21.9, 60.1, 36, 300 }, + [16] = { 19.6, 55.9, 36, 300 }, + [17] = { 60.9, 47.2, 36, 300 }, + [18] = { 61.9, 44.5, 36, 300 }, + [19] = { 59.7, 43.6, 36, 300 }, + [20] = { 20.9, 68.5, 45, 300 }, + [21] = { 19.7, 67.2, 45, 300 }, + [22] = { 29.1, 65.7, 45, 300 }, + [23] = { 23.6, 65.7, 45, 300 }, + [24] = { 19, 65.1, 45, 300 }, + [25] = { 27, 64.9, 45, 300 }, + [26] = { 25.1, 63.2, 45, 300 }, + [27] = { 27.4, 62.8, 45, 300 }, + [28] = { 21.3, 61.1, 45, 300 }, + [29] = { 29.4, 61, 45, 300 }, + [30] = { 27.5, 60.6, 45, 300 }, + [31] = { 24.5, 60.6, 45, 300 }, + [32] = { 26, 59.4, 45, 300 }, + [33] = { 26.1, 59.1, 45, 300 }, + [34] = { 23.3, 57.1, 45, 300 }, + [35] = { 26.1, 57, 45, 300 }, + [36] = { 31, 71.9, 85, 180 }, + [37] = { 30, 71.5, 85, 180 }, + [38] = { 31.8, 71.3, 85, 180 }, + [39] = { 32.4, 70.8, 85, 180 }, + [40] = { 29.7, 70.7, 85, 180 }, + [41] = { 52.1, 70.5, 85, 180 }, + [42] = { 30.8, 69.6, 85, 180 }, + [43] = { 29.8, 69.5, 85, 180 }, + [44] = { 32.1, 69.2, 85, 180 }, + [45] = { 31.8, 68.9, 85, 180 }, + [46] = { 35.2, 68.2, 85, 180 }, + [47] = { 78.7, 67.9, 85, 180 }, + [48] = { 47.9, 67.8, 85, 180 }, + [49] = { 31.3, 67.2, 85, 180 }, + [50] = { 42.5, 66.9, 85, 180 }, + [51] = { 83.4, 66, 85, 180 }, + [52] = { 29.9, 65.7, 85, 180 }, + [53] = { 74.9, 65.3, 85, 180 }, + [54] = { 33.3, 64.9, 85, 180 }, + [55] = { 50.4, 64.6, 85, 180 }, + [56] = { 56.2, 63.6, 85, 180 }, + [57] = { 34.3, 63.2, 85, 180 }, + [58] = { 32.2, 62.7, 85, 180 }, + [59] = { 34.3, 62.3, 85, 180 }, + [60] = { 29.5, 61.9, 85, 180 }, + [61] = { 78.1, 61.5, 85, 180 }, + [62] = { 53.9, 61.1, 85, 180 }, + [63] = { 76.6, 61.1, 85, 180 }, + [64] = { 32.1, 61, 85, 180 }, + [65] = { 73.7, 60.8, 85, 180 }, + [66] = { 33.5, 60.4, 85, 180 }, + [67] = { 50.7, 60.3, 85, 180 }, + [68] = { 29, 60.2, 85, 180 }, + [69] = { 73.9, 60.1, 85, 180 }, + [70] = { 77.8, 60, 85, 180 }, + [71] = { 75.5, 59.4, 85, 180 }, + [72] = { 42.6, 59.4, 85, 180 }, + [73] = { 65.2, 58.8, 85, 180 }, + [74] = { 67.2, 58.6, 85, 180 }, + [75] = { 76.7, 58.6, 85, 180 }, + [76] = { 53.8, 57.9, 85, 180 }, + [77] = { 37.2, 56.9, 85, 180 }, + [78] = { 50.4, 56.4, 85, 180 }, + [79] = { 55, 56.3, 85, 180 }, + [80] = { 32.7, 55.9, 85, 180 }, + [81] = { 53.6, 55.8, 85, 180 }, + [82] = { 61, 54.5, 85, 180 }, + [83] = { 61.1, 54.1, 85, 180 }, + [84] = { 53, 53.9, 85, 180 }, + [85] = { 39.9, 53.7, 85, 180 }, + [86] = { 53.1, 53.6, 85, 180 }, + [87] = { 58.4, 52.9, 85, 180 }, + [88] = { 72.5, 52.8, 85, 180 }, + [89] = { 46.2, 52.7, 85, 180 }, + [90] = { 58.4, 52.5, 85, 180 }, + [91] = { 82.8, 51.3, 85, 180 }, + [92] = { 64.9, 50.1, 85, 180 }, + [93] = { 59.8, 49.7, 85, 180 }, + [94] = { 48.7, 49.6, 85, 180 }, + [95] = { 61.1, 49.1, 85, 180 }, + [96] = { 56.7, 49, 85, 180 }, + [97] = { 90.7, 48.7, 85, 180 }, + [98] = { 56.9, 48.6, 85, 180 }, + [99] = { 58.7, 48.2, 85, 180 }, + [100] = { 39.5, 48.1, 85, 180 }, + [101] = { 80.3, 47.7, 85, 180 }, + [102] = { 57.8, 47.4, 85, 180 }, + [103] = { 59.6, 46.9, 85, 180 }, + [104] = { 62.1, 46.5, 85, 180 }, + [105] = { 74.4, 45.1, 85, 180 }, + [106] = { 86.9, 44.9, 85, 180 }, + [107] = { 89, 44.1, 85, 180 }, + [108] = { 39.3, 43.9, 85, 180 }, + [109] = { 56.2, 43.1, 85, 180 }, + [110] = { 56, 41.2, 85, 180 }, + [111] = { 54.5, 41.1, 85, 180 }, + [112] = { 84.3, 40.8, 85, 180 }, + [113] = { 61.9, 40.6, 85, 180 }, + [114] = { 72.8, 39.2, 85, 180 }, + [115] = { 87.1, 38.6, 85, 180 }, + [116] = { 57.6, 38.3, 85, 180 }, + [117] = { 37.5, 38.1, 85, 180 }, + [118] = { 65.6, 35.6, 85, 180 }, + [119] = { 58.7, 34.1, 85, 180 }, + [120] = { 65.5, 33.9, 85, 180 }, + [121] = { 84.7, 33.8, 85, 180 }, + [122] = { 71.1, 33.7, 85, 180 }, + [123] = { 57.9, 32.2, 85, 180 }, + [124] = { 72.9, 30.5, 85, 180 }, + [125] = { 59.4, 80.6, 130, 300 }, + [126] = { 55.3, 70, 130, 300 }, + [127] = { 49.9, 67.3, 130, 300 }, + [128] = { 71.3, 58.1, 130, 300 }, + [129] = { 48.3, 41.3, 130, 300 }, + [130] = { 53.5, 33.9, 130, 300 }, + [131] = { 43.1, 20.5, 130, 300 }, + [132] = { 75.6, 41.2, 267, 300 }, + [133] = { 61.6, 24.8, 267, 300 }, + [134] = { 60.5, 22.9, 267, 300 }, + [135] = { 62.1, 20.9, 267, 300 }, + [136] = { 19.1, 16.9, 267, 300 }, + [137] = { 24.8, 14.5, 267, 300 }, + [138] = { 30.7, 79, 405, 300 }, + [139] = { 41.3, 78.8, 405, 300 }, + [140] = { 38.6, 76, 405, 300 }, + [141] = { 51.6, 71.6, 405, 300 }, + [142] = { 60.3, 65.7, 405, 300 }, + [143] = { 67.3, 65.4, 405, 300 }, + [144] = { 52.8, 61.5, 405, 300 }, + [145] = { 50.6, 60.1, 405, 300 }, + [146] = { 63.7, 58.6, 405, 300 }, + [147] = { 47.8, 57.6, 405, 300 }, + [148] = { 49.2, 57.6, 405, 300 }, + [149] = { 48.9, 49.1, 405, 300 }, + [150] = { 62.9, 48.1, 405, 300 }, + [151] = { 39.9, 47.7, 405, 300 }, + [152] = { 57.6, 47.5, 405, 300 }, + [153] = { 52, 46.9, 405, 300 }, + [154] = { 44.1, 45.8, 405, 300 }, + [155] = { 41.3, 41.5, 405, 300 }, + [156] = { 46.2, 40.5, 405, 300 }, + [157] = { 56.8, 39.2, 405, 300 }, + [158] = { 54.7, 38.1, 405, 300 }, + [159] = { 73.1, 35.7, 405, 300 }, + [160] = { 75.1, 34.2, 405, 300 }, + [161] = { 53.4, 32.9, 405, 300 }, + [162] = { 59.3, 31.3, 405, 300 }, + [163] = { 74.5, 21.7, 405, 300 }, + [164] = { 69.7, 20.3, 405, 300 }, + [165] = { 61.1, 18.3, 405, 300 }, + [166] = { 61.2, 18.3, 405, 300 }, + [167] = { 65.3, 18.1, 405, 300 }, + [168] = { 57.4, 12.5, 405, 300 }, + [169] = { 53.8, 7.4, 405, 300 }, + [170] = { 32.6, 87.2, 406, 300 }, + [171] = { 29.4, 82.5, 406, 300 }, + [172] = { 36.2, 72.7, 406, 300 }, + [173] = { 28.1, 68.7, 406, 300 }, + [174] = { 35.3, 65.3, 406, 300 }, + [175] = { 29.4, 65.2, 406, 300 }, + [176] = { 36.7, 50.7, 406, 300 }, + [177] = { 38, 42.3, 406, 300 }, + [178] = { 26, 79.4, 1519, 270 }, + [179] = { 26.6, 78.6, 1519, 270 }, + [180] = { 25.7, 77, 1519, 270 }, + [181] = { 29.7, 62.5, 1519, 270 }, + [182] = { 65.9, 59.4, 1519, 270 }, + [183] = { 54.4, 58.3, 1519, 270 }, + [184] = { 52.8, 57.4, 1519, 270 }, + [185] = { 68.3, 55.8, 1519, 270 }, + [186] = { 69.8, 45.6, 1519, 270 }, + [187] = { 69.3, 44.6, 1519, 270 }, + [188] = { 32.7, 43.4, 1519, 270 }, + [189] = { 75.4, 37.1, 1519, 270 }, + [190] = { 75.6, 36.6, 1519, 270 }, + }, + ["lvl"] = "1", + }, + [4076] = { + ["coords"] = { + [1] = { 51.8, 82.1, 28, 300 }, + [2] = { 36.4, 78.4, 28, 300 }, + [3] = { 50.3, 60.1, 28, 300 }, + [4] = { 49.9, 57.6, 28, 300 }, + [5] = { 40.4, 57.4, 28, 300 }, + [6] = { 49.6, 50.1, 28, 300 }, + [7] = { 48.9, 45.6, 28, 300 }, + [8] = { 48.6, 43, 28, 300 }, + [9] = { 51.7, 39.7, 28, 300 }, + [10] = { 54.3, 34.1, 28, 300 }, + [11] = { 54.7, 26.3, 28, 300 }, + [12] = { 53.8, 25.1, 28, 300 }, + [13] = { 50.8, 23.5, 28, 300 }, + [14] = { 45.5, 21.1, 28, 300 }, + [15] = { 42.2, 20, 28, 300 }, + [16] = { 43.8, 11.5, 28, 300 }, + [17] = { 41.4, 85.1, 405, 300 }, + [18] = { 53.3, 85, 405, 300 }, + [19] = { 56.5, 84.6, 405, 300 }, + [20] = { 68, 81.9, 405, 300 }, + [21] = { 38, 75.2, 405, 300 }, + [22] = { 43.5, 73.7, 405, 300 }, + [23] = { 61.5, 73.6, 405, 300 }, + [24] = { 54, 67.9, 405, 300 }, + [25] = { 70.6, 54.5, 405, 300 }, + [26] = { 67.1, 53.4, 405, 300 }, + [27] = { 77.1, 52.3, 405, 300 }, + [28] = { 68.4, 49.3, 405, 300 }, + [29] = { 49.8, 47.8, 405, 300 }, + [30] = { 77.8, 43.6, 405, 300 }, + [31] = { 45.1, 36.3, 405, 300 }, + [32] = { 64.1, 33.1, 405, 300 }, + [33] = { 74, 30.7, 405, 300 }, + [34] = { 50.6, 27, 405, 300 }, + [35] = { 64.1, 23.3, 405, 300 }, + [36] = { 53.6, 9.2, 405, 300 }, + [37] = { 49.6, 6.8, 405, 300 }, + [38] = { 29.1, 84.2, 406, 300 }, + [39] = { 25.4, 82, 406, 300 }, + [40] = { 30.5, 74.5, 406, 300 }, + [41] = { 31.3, 72.3, 406, 300 }, + [42] = { 34.2, 71.5, 406, 300 }, + [43] = { 31.8, 59.9, 406, 300 }, + [44] = { 34.9, 59.9, 406, 300 }, + }, + ["lvl"] = "1", + }, + [4077] = { + ["coords"] = { + [1] = { 59.5, 67.1, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [4078] = { + ["coords"] = { + [1] = { 43.1, 80.4, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "32", + }, + [4079] = { + ["coords"] = { + [1] = { 34.9, 49.8, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "23", + }, + [4080] = { + ["coords"] = { + [1] = { 59.9, 66.8, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "23", + }, + [4081] = { + ["coords"] = { + [1] = { 72.1, 51.9, 1537, 375 }, + }, + ["fac"] = "A", + ["lvl"] = "29", + }, + [4082] = { + ["coords"] = { + [1] = { 45.9, 58.7, 406, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "32", + }, + [4083] = { + ["coords"] = { + [1] = { 47.6, 61.6, 406, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "24", + }, + [4084] = { + ["coords"] = { + [1] = { 35.5, 6.2, 406, 300 }, + [2] = { 36, 5.6, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "24", + }, + [4085] = { + ["coords"] = { + [1] = { 62.7, 40.2, 406, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "24", + }, + [4086] = { + ["coords"] = { + [1] = { 58.2, 51.7, 406, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "24", + }, + [4087] = { + ["coords"] = { + [1] = { 29.4, 54.2, 141, 300 }, + [2] = { 58.7, 34.9, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [4088] = { + ["coords"] = { + [1] = { 29.1, 54.1, 141, 300 }, + [2] = { 57.3, 34.6, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "62", + }, + [4089] = { + ["coords"] = { + [1] = { 30, 55.7, 141, 300 }, + [2] = { 61.8, 42.2, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [4090] = { + ["coords"] = { + [1] = { 25.2, 63.8, 141, 300 }, + [2] = { 38.3, 81, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [4091] = { + ["coords"] = { + [1] = { 25.1, 64.1, 141, 300 }, + [2] = { 37.9, 82.7, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [4092] = { + ["coords"] = { + [1] = { 25.6, 65.4, 141, 300 }, + [2] = { 40.3, 88.7, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [4093] = { + ["coords"] = { + [1] = { 49.5, 99.3, 17, 300 }, + [2] = { 48.7, 99.1, 17, 300 }, + [3] = { 49, 99.1, 17, 300 }, + [4] = { 49.1, 99.1, 17, 300 }, + [5] = { 48.6, 98.9, 17, 300 }, + [6] = { 48.7, 98.7, 17, 300 }, + [7] = { 49.4, 98.6, 17, 300 }, + [8] = { 48.9, 98.6, 17, 300 }, + [9] = { 47.6, 98.4, 17, 300 }, + [10] = { 49.5, 98.4, 17, 300 }, + [11] = { 48, 98.2, 17, 300 }, + [12] = { 48.7, 98.1, 17, 300 }, + [13] = { 49.4, 98.1, 17, 300 }, + [14] = { 47.9, 98.1, 17, 300 }, + [15] = { 47.4, 98, 17, 300 }, + [16] = { 47.8, 97.8, 17, 300 }, + [17] = { 48, 97.7, 17, 300 }, + [18] = { 47.5, 97.6, 17, 300 }, + [19] = { 47.7, 97.5, 17, 300 }, + [20] = { 47.5, 97, 17, 300 }, + [21] = { 47.1, 96.7, 17, 300 }, + [22] = { 45.6, 43.9, 400, 300 }, + [23] = { 48.5, 43.6, 400, 300 }, + [24] = { 45.5, 43.5, 400, 300 }, + [25] = { 48.2, 42.9, 400, 300 }, + [26] = { 45.8, 42.6, 400, 300 }, + [27] = { 45.1, 42, 400, 300 }, + [28] = { 47.2, 41.9, 400, 300 }, + [29] = { 46.1, 41.9, 400, 300 }, + [30] = { 48.8, 41.7, 400, 300 }, + [31] = { 49.6, 41.5, 400, 300 }, + [32] = { 46.7, 41.5, 400, 300 }, + [33] = { 44.4, 41.5, 400, 300 }, + [34] = { 41.1, 41.4, 400, 300 }, + [35] = { 47.7, 41.4, 400, 300 }, + [36] = { 45.7, 41.4, 400, 300 }, + [37] = { 48.7, 41.1, 400, 300 }, + [38] = { 44.9, 40.9, 400, 300 }, + [39] = { 45.1, 40.7, 400, 300 }, + [40] = { 44.1, 40.7, 400, 300 }, + [41] = { 47.7, 40.6, 400, 300 }, + [42] = { 42.3, 40.6, 400, 300 }, + [43] = { 45.3, 40.5, 400, 300 }, + [44] = { 41.4, 40.5, 400, 300 }, + [45] = { 42.8, 40.5, 400, 300 }, + [46] = { 43.6, 40.5, 400, 300 }, + [47] = { 48.2, 40.4, 400, 300 }, + [48] = { 46.6, 40.3, 400, 300 }, + [49] = { 47.2, 40.3, 400, 300 }, + [50] = { 46, 40.3, 400, 300 }, + [51] = { 44.3, 40.3, 400, 300 }, + [52] = { 45.4, 39.8, 400, 300 }, + [53] = { 44.5, 39.6, 400, 300 }, + [54] = { 45, 39.4, 400, 300 }, + [55] = { 43.7, 39.3, 400, 300 }, + [56] = { 41.7, 39.2, 400, 300 }, + [57] = { 42.9, 39.1, 400, 300 }, + [58] = { 41, 39, 400, 300 }, + [59] = { 41.9, 38.4, 400, 300 }, + [60] = { 44.4, 38.4, 400, 300 }, + [61] = { 41.4, 38.1, 400, 300 }, + [62] = { 39, 38.1, 400, 300 }, + [63] = { 42.8, 38.1, 400, 300 }, + [64] = { 40.4, 38, 400, 300 }, + [65] = { 43.3, 38, 400, 300 }, + [66] = { 43.6, 38, 400, 300 }, + [67] = { 39.9, 37.9, 400, 300 }, + [68] = { 39.1, 37.9, 400, 300 }, + [69] = { 39.8, 37.9, 400, 300 }, + [70] = { 42.1, 37.9, 400, 300 }, + [71] = { 42.4, 37.5, 400, 300 }, + [72] = { 40.6, 37.4, 400, 300 }, + [73] = { 42.7, 37.1, 400, 300 }, + [74] = { 41.4, 37.1, 400, 300 }, + [75] = { 39.3, 36.9, 400, 300 }, + [76] = { 41.1, 36.9, 400, 300 }, + [77] = { 44.2, 36.9, 400, 300 }, + [78] = { 43.1, 36.8, 400, 300 }, + [79] = { 40.6, 36.8, 400, 300 }, + [80] = { 40.3, 36.5, 400, 300 }, + [81] = { 44.6, 36.3, 400, 300 }, + [82] = { 41.1, 36, 400, 300 }, + [83] = { 42.8, 35.9, 400, 300 }, + [84] = { 44.4, 35.8, 400, 300 }, + [85] = { 40.8, 35.7, 400, 300 }, + [86] = { 39.7, 35.6, 400, 300 }, + [87] = { 40.6, 35.1, 400, 300 }, + [88] = { 41.2, 34.9, 400, 300 }, + [89] = { 39.8, 34.6, 400, 300 }, + [90] = { 40.4, 34.5, 400, 300 }, + [91] = { 39.9, 33.2, 400, 300 }, + [92] = { 39.1, 32.5, 400, 300 }, + }, + ["lvl"] = "25-26", + }, + [4094] = { + ["coords"] = { + [1] = { 49.5, 99.3, 17, 300 }, + [2] = { 48.7, 99.1, 17, 300 }, + [3] = { 49, 99.1, 17, 300 }, + [4] = { 49.1, 99.1, 17, 300 }, + [5] = { 48.6, 98.9, 17, 300 }, + [6] = { 48.7, 98.7, 17, 300 }, + [7] = { 49.4, 98.6, 17, 300 }, + [8] = { 48.9, 98.6, 17, 300 }, + [9] = { 47.6, 98.4, 17, 300 }, + [10] = { 49.5, 98.4, 17, 300 }, + [11] = { 48, 98.2, 17, 300 }, + [12] = { 48.7, 98.1, 17, 300 }, + [13] = { 49.4, 98.1, 17, 300 }, + [14] = { 47.9, 98.1, 17, 300 }, + [15] = { 47.4, 98, 17, 300 }, + [16] = { 47.8, 97.8, 17, 300 }, + [17] = { 48, 97.7, 17, 300 }, + [18] = { 47.5, 97.6, 17, 300 }, + [19] = { 47.7, 97.5, 17, 300 }, + [20] = { 47.5, 97, 17, 300 }, + [21] = { 47.1, 96.7, 17, 300 }, + [22] = { 45.6, 43.9, 400, 300 }, + [23] = { 48.5, 43.6, 400, 300 }, + [24] = { 45.5, 43.5, 400, 300 }, + [25] = { 48.2, 42.9, 400, 300 }, + [26] = { 45.8, 42.6, 400, 300 }, + [27] = { 45.1, 42, 400, 300 }, + [28] = { 47.2, 41.9, 400, 300 }, + [29] = { 46.1, 41.9, 400, 300 }, + [30] = { 48.8, 41.7, 400, 300 }, + [31] = { 49.6, 41.5, 400, 300 }, + [32] = { 46.7, 41.5, 400, 300 }, + [33] = { 44.4, 41.5, 400, 300 }, + [34] = { 41.1, 41.4, 400, 300 }, + [35] = { 47.7, 41.4, 400, 300 }, + [36] = { 45.7, 41.4, 400, 300 }, + [37] = { 48.7, 41.1, 400, 300 }, + [38] = { 44.9, 40.9, 400, 300 }, + [39] = { 45.1, 40.7, 400, 300 }, + [40] = { 44.1, 40.7, 400, 300 }, + [41] = { 47.7, 40.6, 400, 300 }, + [42] = { 42.3, 40.6, 400, 300 }, + [43] = { 45.3, 40.5, 400, 300 }, + [44] = { 41.4, 40.5, 400, 300 }, + [45] = { 42.8, 40.5, 400, 300 }, + [46] = { 43.6, 40.5, 400, 300 }, + [47] = { 48.2, 40.4, 400, 300 }, + [48] = { 46.6, 40.3, 400, 300 }, + [49] = { 47.2, 40.3, 400, 300 }, + [50] = { 46, 40.3, 400, 300 }, + [51] = { 44.3, 40.3, 400, 300 }, + [52] = { 45.4, 39.8, 400, 300 }, + [53] = { 44.5, 39.6, 400, 300 }, + [54] = { 45, 39.4, 400, 300 }, + [55] = { 43.7, 39.3, 400, 300 }, + [56] = { 41.7, 39.2, 400, 300 }, + [57] = { 42.9, 39.1, 400, 300 }, + [58] = { 41, 39, 400, 300 }, + [59] = { 41.9, 38.4, 400, 300 }, + [60] = { 44.4, 38.4, 400, 300 }, + [61] = { 41.4, 38.1, 400, 300 }, + [62] = { 39, 38.1, 400, 300 }, + [63] = { 42.8, 38.1, 400, 300 }, + [64] = { 40.4, 38, 400, 300 }, + [65] = { 43.3, 38, 400, 300 }, + [66] = { 43.6, 38, 400, 300 }, + [67] = { 39.9, 37.9, 400, 300 }, + [68] = { 39.1, 37.9, 400, 300 }, + [69] = { 39.8, 37.9, 400, 300 }, + [70] = { 42.1, 37.9, 400, 300 }, + [71] = { 42.4, 37.5, 400, 300 }, + [72] = { 40.6, 37.4, 400, 300 }, + [73] = { 42.7, 37.1, 400, 300 }, + [74] = { 41.4, 37.1, 400, 300 }, + [75] = { 39.3, 36.9, 400, 300 }, + [76] = { 41.1, 36.9, 400, 300 }, + [77] = { 44.2, 36.9, 400, 300 }, + [78] = { 43.1, 36.8, 400, 300 }, + [79] = { 40.6, 36.8, 400, 300 }, + [80] = { 40.3, 36.5, 400, 300 }, + [81] = { 44.6, 36.3, 400, 300 }, + [82] = { 41.1, 36, 400, 300 }, + [83] = { 42.8, 35.9, 400, 300 }, + [84] = { 44.4, 35.8, 400, 300 }, + [85] = { 40.8, 35.7, 400, 300 }, + [86] = { 39.7, 35.6, 400, 300 }, + [87] = { 40.6, 35.1, 400, 300 }, + [88] = { 41.2, 34.9, 400, 300 }, + [89] = { 39.8, 34.6, 400, 300 }, + [90] = { 40.4, 34.5, 400, 300 }, + [91] = { 39.9, 33.2, 400, 300 }, + [92] = { 39.1, 32.5, 400, 300 }, + }, + ["lvl"] = "24-25", + }, + [4095] = { + ["coords"] = { + [1] = { 49.3, 97.9, 17, 300 }, + [2] = { 49.1, 97.9, 17, 300 }, + [3] = { 48.7, 97.8, 17, 300 }, + [4] = { 48.8, 97.6, 17, 300 }, + [5] = { 49.4, 97.6, 17, 300 }, + [6] = { 49.4, 97.5, 17, 300 }, + [7] = { 49.1, 97.5, 17, 300 }, + [8] = { 48.4, 97.5, 17, 300 }, + [9] = { 48.4, 97.4, 17, 300 }, + [10] = { 49, 97.3, 17, 300 }, + [11] = { 49.5, 97.3, 17, 300 }, + [12] = { 48.9, 97.2, 17, 300 }, + [13] = { 48.6, 97.1, 17, 300 }, + [14] = { 48.9, 97, 17, 300 }, + [15] = { 49.6, 97, 17, 300 }, + [16] = { 48.3, 96.9, 17, 300 }, + [17] = { 49.1, 96.9, 17, 300 }, + [18] = { 48.8, 96.9, 17, 300 }, + [19] = { 49.2, 96.8, 17, 300 }, + [20] = { 49.7, 96.8, 17, 300 }, + [21] = { 49.4, 96.7, 17, 300 }, + [22] = { 48.6, 96.7, 17, 300 }, + [23] = { 48.2, 96.7, 17, 300 }, + [24] = { 48.2, 96.6, 17, 300 }, + [25] = { 48.6, 96.4, 17, 300 }, + [26] = { 48.6, 96.3, 17, 300 }, + [27] = { 49.1, 96.2, 17, 300 }, + [28] = { 49, 96.1, 17, 300 }, + [29] = { 48.9, 96, 17, 300 }, + [30] = { 48.8, 96, 17, 300 }, + [31] = { 40, 93.6, 17, 300 }, + [32] = { 40.3, 93.5, 17, 300 }, + [33] = { 40, 93.1, 17, 300 }, + [34] = { 40.2, 93.1, 17, 300 }, + [35] = { 38.5, 92.6, 17, 300 }, + [36] = { 38.6, 92.3, 17, 300 }, + [37] = { 38.9, 92.2, 17, 300 }, + [38] = { 39.2, 92.1, 17, 300 }, + [39] = { 38.5, 91.9, 17, 300 }, + [40] = { 37.9, 91.2, 17, 300 }, + [41] = { 37.6, 90.8, 17, 300 }, + [42] = { 44.1, 35.4, 400, 300 }, + [43] = { 43.6, 35.3, 400, 300 }, + [44] = { 42.8, 35, 400, 300 }, + [45] = { 43, 34.6, 400, 300 }, + [46] = { 44.2, 34.5, 400, 300 }, + [47] = { 44.3, 34.5, 400, 300 }, + [48] = { 43.7, 34.4, 400, 300 }, + [49] = { 41.9, 34.3, 400, 300 }, + [50] = { 42, 34, 400, 300 }, + [51] = { 43.5, 33.9, 400, 300 }, + [52] = { 44.5, 33.9, 400, 300 }, + [53] = { 43.3, 33.6, 400, 300 }, + [54] = { 42.5, 33.5, 400, 300 }, + [55] = { 43.1, 33.3, 400, 300 }, + [56] = { 44.7, 33.1, 400, 300 }, + [57] = { 41.7, 33, 400, 300 }, + [58] = { 43.6, 33, 400, 300 }, + [59] = { 42.8, 32.9, 400, 300 }, + [60] = { 43.9, 32.8, 400, 300 }, + [61] = { 44.9, 32.8, 400, 300 }, + [62] = { 44.3, 32.6, 400, 300 }, + [63] = { 42.5, 32.6, 400, 300 }, + [64] = { 41.7, 32.4, 400, 300 }, + [65] = { 41.6, 32.3, 400, 300 }, + [66] = { 42.5, 31.8, 400, 300 }, + [67] = { 42.4, 31.5, 400, 300 }, + [68] = { 43.7, 31.5, 400, 300 }, + [69] = { 43.3, 31, 400, 300 }, + [70] = { 43.2, 31, 400, 300 }, + [71] = { 43, 30.9, 400, 300 }, + [72] = { 22.6, 25.5, 400, 300 }, + [73] = { 23.3, 25.1, 400, 300 }, + [74] = { 22.6, 24.3, 400, 300 }, + [75] = { 23.1, 24.3, 400, 300 }, + [76] = { 18.5, 24.2, 400, 300 }, + [77] = { 18.4, 23.6, 400, 300 }, + [78] = { 18.8, 23.1, 400, 300 }, + [79] = { 19.3, 23, 400, 300 }, + [80] = { 16.6, 22.6, 400, 300 }, + [81] = { 19.4, 22.5, 400, 300 }, + [82] = { 17.7, 22.4, 400, 300 }, + [83] = { 17, 22.2, 400, 300 }, + [84] = { 18.6, 22.2, 400, 300 }, + [85] = { 20, 22.1, 400, 300 }, + [86] = { 20.8, 22, 400, 300 }, + [87] = { 17.8, 21.7, 400, 300 }, + [88] = { 19.2, 21.5, 400, 300 }, + [89] = { 19, 21.4, 400, 300 }, + [90] = { 18.5, 21.2, 400, 300 }, + [91] = { 17.9, 20.9, 400, 300 }, + [92] = { 17.9, 19.8, 400, 300 }, + [93] = { 17.2, 18.8, 400, 300 }, + }, + ["lvl"] = "27-28", + }, + [4096] = { + ["coords"] = { + [1] = { 49.5, 99.3, 17, 300 }, + [2] = { 48.7, 99.1, 17, 300 }, + [3] = { 49, 99.1, 17, 300 }, + [4] = { 49.1, 99.1, 17, 300 }, + [5] = { 48.6, 98.9, 17, 300 }, + [6] = { 48.7, 98.7, 17, 300 }, + [7] = { 49.4, 98.6, 17, 300 }, + [8] = { 48.9, 98.6, 17, 300 }, + [9] = { 47.6, 98.4, 17, 300 }, + [10] = { 49.5, 98.4, 17, 300 }, + [11] = { 48, 98.2, 17, 300 }, + [12] = { 48.7, 98.1, 17, 300 }, + [13] = { 49.4, 98.1, 17, 300 }, + [14] = { 47.9, 98.1, 17, 300 }, + [15] = { 47.4, 98, 17, 300 }, + [16] = { 47.8, 97.8, 17, 300 }, + [17] = { 48, 97.7, 17, 300 }, + [18] = { 47.5, 97.6, 17, 300 }, + [19] = { 47.7, 97.5, 17, 300 }, + [20] = { 47.5, 97, 17, 300 }, + [21] = { 47.1, 96.7, 17, 300 }, + [22] = { 45.6, 43.9, 400, 300 }, + [23] = { 48.5, 43.6, 400, 300 }, + [24] = { 45.5, 43.5, 400, 300 }, + [25] = { 48.2, 42.9, 400, 300 }, + [26] = { 45.8, 42.6, 400, 300 }, + [27] = { 45.1, 42, 400, 300 }, + [28] = { 47.2, 41.9, 400, 300 }, + [29] = { 46.1, 41.9, 400, 300 }, + [30] = { 48.8, 41.7, 400, 300 }, + [31] = { 49.6, 41.5, 400, 300 }, + [32] = { 46.7, 41.5, 400, 300 }, + [33] = { 44.4, 41.5, 400, 300 }, + [34] = { 41.1, 41.4, 400, 300 }, + [35] = { 47.7, 41.4, 400, 300 }, + [36] = { 45.7, 41.4, 400, 300 }, + [37] = { 48.7, 41.1, 400, 300 }, + [38] = { 44.9, 40.9, 400, 300 }, + [39] = { 45.1, 40.7, 400, 300 }, + [40] = { 44.1, 40.7, 400, 300 }, + [41] = { 47.7, 40.6, 400, 300 }, + [42] = { 42.3, 40.6, 400, 300 }, + [43] = { 45.3, 40.5, 400, 300 }, + [44] = { 41.4, 40.5, 400, 300 }, + [45] = { 42.8, 40.5, 400, 300 }, + [46] = { 43.6, 40.5, 400, 300 }, + [47] = { 48.2, 40.4, 400, 300 }, + [48] = { 46.6, 40.3, 400, 300 }, + [49] = { 47.2, 40.3, 400, 300 }, + [50] = { 46, 40.3, 400, 300 }, + [51] = { 44.3, 40.3, 400, 300 }, + [52] = { 45.4, 39.8, 400, 300 }, + [53] = { 44.5, 39.6, 400, 300 }, + [54] = { 45, 39.4, 400, 300 }, + [55] = { 43.7, 39.3, 400, 300 }, + [56] = { 41.7, 39.2, 400, 300 }, + [57] = { 42.9, 39.1, 400, 300 }, + [58] = { 41, 39, 400, 300 }, + [59] = { 41.9, 38.4, 400, 300 }, + [60] = { 44.4, 38.4, 400, 300 }, + [61] = { 41.4, 38.1, 400, 300 }, + [62] = { 39, 38.1, 400, 300 }, + [63] = { 42.8, 38.1, 400, 300 }, + [64] = { 40.4, 38, 400, 300 }, + [65] = { 43.3, 38, 400, 300 }, + [66] = { 43.6, 38, 400, 300 }, + [67] = { 39.9, 37.9, 400, 300 }, + [68] = { 39.1, 37.9, 400, 300 }, + [69] = { 39.8, 37.9, 400, 300 }, + [70] = { 42.1, 37.9, 400, 300 }, + [71] = { 42.4, 37.5, 400, 300 }, + [72] = { 40.6, 37.4, 400, 300 }, + [73] = { 42.7, 37.1, 400, 300 }, + [74] = { 41.4, 37.1, 400, 300 }, + [75] = { 39.3, 36.9, 400, 300 }, + [76] = { 41.1, 36.9, 400, 300 }, + [77] = { 44.2, 36.9, 400, 300 }, + [78] = { 43.1, 36.8, 400, 300 }, + [79] = { 40.6, 36.8, 400, 300 }, + [80] = { 40.3, 36.5, 400, 300 }, + [81] = { 44.6, 36.3, 400, 300 }, + [82] = { 41.1, 36, 400, 300 }, + [83] = { 42.8, 35.9, 400, 300 }, + [84] = { 44.4, 35.8, 400, 300 }, + [85] = { 40.8, 35.7, 400, 300 }, + [86] = { 39.7, 35.6, 400, 300 }, + [87] = { 40.6, 35.1, 400, 300 }, + [88] = { 41.2, 34.9, 400, 300 }, + [89] = { 39.8, 34.6, 400, 300 }, + [90] = { 40.4, 34.5, 400, 300 }, + [91] = { 39.9, 33.2, 400, 300 }, + [92] = { 39.1, 32.5, 400, 300 }, + }, + ["lvl"] = "24-25", + }, + [4097] = { + ["coords"] = { + [1] = { 49.3, 97.9, 17, 300 }, + [2] = { 49.1, 97.9, 17, 300 }, + [3] = { 48.7, 97.8, 17, 300 }, + [4] = { 48.8, 97.6, 17, 300 }, + [5] = { 49.4, 97.6, 17, 300 }, + [6] = { 49.4, 97.5, 17, 300 }, + [7] = { 49.1, 97.5, 17, 300 }, + [8] = { 48.4, 97.5, 17, 300 }, + [9] = { 48.4, 97.4, 17, 300 }, + [10] = { 49, 97.3, 17, 300 }, + [11] = { 49.5, 97.3, 17, 300 }, + [12] = { 48.9, 97.2, 17, 300 }, + [13] = { 48.6, 97.1, 17, 300 }, + [14] = { 48.9, 97, 17, 300 }, + [15] = { 49.6, 97, 17, 300 }, + [16] = { 48.3, 96.9, 17, 300 }, + [17] = { 49.1, 96.9, 17, 300 }, + [18] = { 48.8, 96.9, 17, 300 }, + [19] = { 49.2, 96.8, 17, 300 }, + [20] = { 49.7, 96.8, 17, 300 }, + [21] = { 49.4, 96.7, 17, 300 }, + [22] = { 48.6, 96.7, 17, 300 }, + [23] = { 48.2, 96.7, 17, 300 }, + [24] = { 48.2, 96.6, 17, 300 }, + [25] = { 48.6, 96.4, 17, 300 }, + [26] = { 48.6, 96.3, 17, 300 }, + [27] = { 49.1, 96.2, 17, 300 }, + [28] = { 49, 96.1, 17, 300 }, + [29] = { 48.9, 96, 17, 300 }, + [30] = { 48.8, 96, 17, 300 }, + [31] = { 40, 93.6, 17, 300 }, + [32] = { 40.3, 93.5, 17, 300 }, + [33] = { 40, 93.1, 17, 300 }, + [34] = { 40.2, 93.1, 17, 300 }, + [35] = { 38.5, 92.6, 17, 300 }, + [36] = { 38.6, 92.3, 17, 300 }, + [37] = { 38.9, 92.2, 17, 300 }, + [38] = { 39.2, 92.1, 17, 300 }, + [39] = { 38.5, 91.9, 17, 300 }, + [40] = { 37.9, 91.2, 17, 300 }, + [41] = { 37.6, 90.8, 17, 300 }, + [42] = { 44.1, 35.4, 400, 300 }, + [43] = { 43.6, 35.3, 400, 300 }, + [44] = { 42.8, 35, 400, 300 }, + [45] = { 43, 34.6, 400, 300 }, + [46] = { 44.2, 34.5, 400, 300 }, + [47] = { 44.3, 34.5, 400, 300 }, + [48] = { 43.7, 34.4, 400, 300 }, + [49] = { 41.9, 34.3, 400, 300 }, + [50] = { 42, 34, 400, 300 }, + [51] = { 43.5, 33.9, 400, 300 }, + [52] = { 44.5, 33.9, 400, 300 }, + [53] = { 43.3, 33.6, 400, 300 }, + [54] = { 42.5, 33.5, 400, 300 }, + [55] = { 43.1, 33.3, 400, 300 }, + [56] = { 44.7, 33.1, 400, 300 }, + [57] = { 41.7, 33, 400, 300 }, + [58] = { 43.6, 33, 400, 300 }, + [59] = { 42.8, 32.9, 400, 300 }, + [60] = { 43.9, 32.8, 400, 300 }, + [61] = { 44.9, 32.8, 400, 300 }, + [62] = { 44.3, 32.6, 400, 300 }, + [63] = { 42.5, 32.6, 400, 300 }, + [64] = { 41.7, 32.4, 400, 300 }, + [65] = { 41.6, 32.3, 400, 300 }, + [66] = { 42.5, 31.8, 400, 300 }, + [67] = { 42.4, 31.5, 400, 300 }, + [68] = { 43.7, 31.5, 400, 300 }, + [69] = { 43.3, 31, 400, 300 }, + [70] = { 43.2, 31, 400, 300 }, + [71] = { 43, 30.9, 400, 300 }, + [72] = { 22.6, 25.5, 400, 300 }, + [73] = { 23.3, 25.1, 400, 300 }, + [74] = { 22.6, 24.3, 400, 300 }, + [75] = { 23.1, 24.3, 400, 300 }, + [76] = { 18.5, 24.2, 400, 300 }, + [77] = { 18.4, 23.6, 400, 300 }, + [78] = { 18.8, 23.1, 400, 300 }, + [79] = { 19.3, 23, 400, 300 }, + [80] = { 16.6, 22.6, 400, 300 }, + [81] = { 19.4, 22.5, 400, 300 }, + [82] = { 17.7, 22.4, 400, 300 }, + [83] = { 17, 22.2, 400, 300 }, + [84] = { 18.6, 22.2, 400, 300 }, + [85] = { 20, 22.1, 400, 300 }, + [86] = { 20.8, 22, 400, 300 }, + [87] = { 17.8, 21.7, 400, 300 }, + [88] = { 19.2, 21.5, 400, 300 }, + [89] = { 19, 21.4, 400, 300 }, + [90] = { 18.5, 21.2, 400, 300 }, + [91] = { 17.9, 20.9, 400, 300 }, + [92] = { 17.9, 19.8, 400, 300 }, + [93] = { 17.2, 18.8, 400, 300 }, + }, + ["lvl"] = "26-27", + }, + [4098] = { + ["coords"] = {}, + ["lvl"] = "25-26", + }, + [4099] = { + ["coords"] = { + [1] = { 49.3, 97.9, 17, 300 }, + [2] = { 49.1, 97.9, 17, 300 }, + [3] = { 48.7, 97.8, 17, 300 }, + [4] = { 48.8, 97.6, 17, 300 }, + [5] = { 49.4, 97.6, 17, 300 }, + [6] = { 49.4, 97.5, 17, 300 }, + [7] = { 49.1, 97.5, 17, 300 }, + [8] = { 48.4, 97.5, 17, 300 }, + [9] = { 48.4, 97.4, 17, 300 }, + [10] = { 49, 97.3, 17, 300 }, + [11] = { 49.5, 97.3, 17, 300 }, + [12] = { 48.9, 97.2, 17, 300 }, + [13] = { 48.6, 97.1, 17, 300 }, + [14] = { 48.9, 97, 17, 300 }, + [15] = { 49.6, 97, 17, 300 }, + [16] = { 48.3, 96.9, 17, 300 }, + [17] = { 49.1, 96.9, 17, 300 }, + [18] = { 48.8, 96.9, 17, 300 }, + [19] = { 49.2, 96.8, 17, 300 }, + [20] = { 49.7, 96.8, 17, 300 }, + [21] = { 49.4, 96.7, 17, 300 }, + [22] = { 48.6, 96.7, 17, 300 }, + [23] = { 48.2, 96.7, 17, 300 }, + [24] = { 48.2, 96.6, 17, 300 }, + [25] = { 48.6, 96.4, 17, 300 }, + [26] = { 48.6, 96.3, 17, 300 }, + [27] = { 49.1, 96.2, 17, 300 }, + [28] = { 49, 96.1, 17, 300 }, + [29] = { 48.9, 96, 17, 300 }, + [30] = { 48.8, 96, 17, 300 }, + [31] = { 40, 93.6, 17, 300 }, + [32] = { 40.3, 93.5, 17, 300 }, + [33] = { 40, 93.1, 17, 300 }, + [34] = { 40.2, 93.1, 17, 300 }, + [35] = { 38.5, 92.6, 17, 300 }, + [36] = { 38.6, 92.3, 17, 300 }, + [37] = { 38.9, 92.2, 17, 300 }, + [38] = { 39.2, 92.1, 17, 300 }, + [39] = { 38.5, 91.9, 17, 300 }, + [40] = { 37.9, 91.2, 17, 300 }, + [41] = { 37.6, 90.8, 17, 300 }, + [42] = { 44.1, 35.4, 400, 300 }, + [43] = { 43.6, 35.3, 400, 300 }, + [44] = { 42.8, 35, 400, 300 }, + [45] = { 43, 34.6, 400, 300 }, + [46] = { 44.2, 34.5, 400, 300 }, + [47] = { 44.3, 34.5, 400, 300 }, + [48] = { 43.7, 34.4, 400, 300 }, + [49] = { 41.9, 34.3, 400, 300 }, + [50] = { 42, 34, 400, 300 }, + [51] = { 43.5, 33.9, 400, 300 }, + [52] = { 44.5, 33.9, 400, 300 }, + [53] = { 43.3, 33.6, 400, 300 }, + [54] = { 42.5, 33.5, 400, 300 }, + [55] = { 43.1, 33.3, 400, 300 }, + [56] = { 44.7, 33.1, 400, 300 }, + [57] = { 41.7, 33, 400, 300 }, + [58] = { 43.6, 33, 400, 300 }, + [59] = { 42.8, 32.9, 400, 300 }, + [60] = { 43.9, 32.8, 400, 300 }, + [61] = { 44.9, 32.8, 400, 300 }, + [62] = { 44.3, 32.6, 400, 300 }, + [63] = { 42.5, 32.6, 400, 300 }, + [64] = { 41.7, 32.4, 400, 300 }, + [65] = { 41.6, 32.3, 400, 300 }, + [66] = { 42.5, 31.8, 400, 300 }, + [67] = { 42.4, 31.5, 400, 300 }, + [68] = { 43.7, 31.5, 400, 300 }, + [69] = { 43.3, 31, 400, 300 }, + [70] = { 43.2, 31, 400, 300 }, + [71] = { 43, 30.9, 400, 300 }, + [72] = { 22.6, 25.5, 400, 300 }, + [73] = { 23.3, 25.1, 400, 300 }, + [74] = { 22.6, 24.3, 400, 300 }, + [75] = { 23.1, 24.3, 400, 300 }, + [76] = { 18.5, 24.2, 400, 300 }, + [77] = { 18.4, 23.6, 400, 300 }, + [78] = { 18.8, 23.1, 400, 300 }, + [79] = { 19.3, 23, 400, 300 }, + [80] = { 16.6, 22.6, 400, 300 }, + [81] = { 19.4, 22.5, 400, 300 }, + [82] = { 17.7, 22.4, 400, 300 }, + [83] = { 17, 22.2, 400, 300 }, + [84] = { 18.6, 22.2, 400, 300 }, + [85] = { 20, 22.1, 400, 300 }, + [86] = { 20.8, 22, 400, 300 }, + [87] = { 17.8, 21.7, 400, 300 }, + [88] = { 19.2, 21.5, 400, 300 }, + [89] = { 19, 21.4, 400, 300 }, + [90] = { 18.5, 21.2, 400, 300 }, + [91] = { 17.9, 20.9, 400, 300 }, + [92] = { 17.9, 19.8, 400, 300 }, + [93] = { 17.2, 18.8, 400, 300 }, + }, + ["lvl"] = "26-27", + }, + [4100] = { + ["coords"] = { + [1] = { 26.2, 56.2, 400, 300 }, + [2] = { 26.7, 56.1, 400, 300 }, + [3] = { 26.5, 55.8, 400, 300 }, + [4] = { 26.7, 55.7, 400, 300 }, + [5] = { 27.1, 55.2, 400, 300 }, + [6] = { 26, 55, 400, 300 }, + [7] = { 27.2, 54.2, 400, 300 }, + [8] = { 26.4, 53.6, 400, 300 }, + [9] = { 26.6, 53.4, 400, 300 }, + [10] = { 26, 52.8, 400, 300 }, + [11] = { 26.3, 52.6, 400, 300 }, + [12] = { 26.5, 52.3, 400, 300 }, + [13] = { 27.1, 52.2, 400, 300 }, + [14] = { 26.7, 52.1, 400, 300 }, + [15] = { 27.3, 51, 400, 300 }, + [16] = { 28.5, 50.2, 400, 300 }, + [17] = { 27.8, 50.2, 400, 300 }, + [18] = { 27.6, 48.9, 400, 300 }, + [19] = { 28.4, 48.7, 400, 300 }, + [20] = { 27.9, 48.2, 400, 300 }, + [21] = { 28.2, 47.6, 400, 300 }, + [22] = { 26.7, 47.5, 400, 300 }, + [23] = { 27.4, 47.4, 400, 300 }, + }, + ["lvl"] = "28-29", + }, + [4101] = { + ["coords"] = { + [1] = { 26.2, 56.2, 400, 300 }, + [2] = { 26.7, 56.1, 400, 300 }, + [3] = { 26.5, 55.8, 400, 300 }, + [4] = { 26.7, 55.7, 400, 300 }, + [5] = { 27.1, 55.2, 400, 300 }, + [6] = { 26, 55, 400, 300 }, + [7] = { 27.2, 54.2, 400, 300 }, + [8] = { 26.4, 53.6, 400, 300 }, + [9] = { 26.6, 53.4, 400, 300 }, + [10] = { 26, 52.8, 400, 300 }, + [11] = { 26.3, 52.6, 400, 300 }, + [12] = { 26.5, 52.3, 400, 300 }, + [13] = { 27.1, 52.2, 400, 300 }, + [14] = { 26.7, 52.1, 400, 300 }, + [15] = { 27.3, 51, 400, 300 }, + [16] = { 28.5, 50.2, 400, 300 }, + [17] = { 27.8, 50.2, 400, 300 }, + [18] = { 27.6, 48.9, 400, 300 }, + [19] = { 28.4, 48.7, 400, 300 }, + [20] = { 27.9, 48.2, 400, 300 }, + [21] = { 28.2, 47.6, 400, 300 }, + [22] = { 26.7, 47.5, 400, 300 }, + [23] = { 27.4, 47.4, 400, 300 }, + }, + ["lvl"] = "29-30", + }, + [4104] = { + ["coords"] = { + [1] = { 26.2, 56.2, 400, 300 }, + [2] = { 26.7, 56.1, 400, 300 }, + [3] = { 26.5, 55.8, 400, 300 }, + [4] = { 26.7, 55.7, 400, 300 }, + [5] = { 27.1, 55.2, 400, 300 }, + [6] = { 26, 55, 400, 300 }, + [7] = { 27.2, 54.2, 400, 300 }, + [8] = { 26.4, 53.6, 400, 300 }, + [9] = { 26.6, 53.4, 400, 300 }, + [10] = { 26, 52.8, 400, 300 }, + [11] = { 26.3, 52.6, 400, 300 }, + [12] = { 26.5, 52.3, 400, 300 }, + [13] = { 27.1, 52.2, 400, 300 }, + [14] = { 26.7, 52.1, 400, 300 }, + }, + ["lvl"] = "30", + }, + [4107] = { + ["coords"] = { + [1] = { 17.9, 42.9, 400, 300 }, + [2] = { 17, 41.7, 400, 300 }, + [3] = { 17.9, 41.5, 400, 300 }, + [4] = { 15.4, 40.6, 400, 300 }, + [5] = { 10.4, 40.3, 400, 300 }, + [6] = { 13.6, 39.4, 400, 300 }, + [7] = { 10.9, 39.2, 400, 300 }, + [8] = { 13.2, 38, 400, 300 }, + [9] = { 13.9, 37.8, 400, 300 }, + [10] = { 11.8, 37.5, 400, 300 }, + [11] = { 12.5, 37, 400, 300 }, + [12] = { 10.3, 35.7, 400, 300 }, + [13] = { 9.3, 35.6, 400, 300 }, + [14] = { 9.2, 34.5, 400, 300 }, + [15] = { 11.1, 34.3, 400, 300 }, + [16] = { 10.2, 33.8, 400, 300 }, + [17] = { 11.9, 33.2, 400, 300 }, + [18] = { 10.6, 31.4, 400, 300 }, + }, + ["lvl"] = "28-29", + }, + [4109] = { + ["coords"] = { + [1] = { 16.2, 41.6, 400, 300 }, + [2] = { 11, 36.9, 400, 300 }, + [3] = { 11.7, 35.6, 400, 300 }, + [4] = { 11.8, 31.9, 400, 300 }, + [5] = { 13.6, 39.4, 400, 300 }, + [6] = { 13.2, 38, 400, 300 }, + [7] = { 11.8, 37.5, 400, 300 }, + [8] = { 12.5, 37, 400, 300 }, + }, + ["lvl"] = "28-29", + }, + [4110] = { + ["coords"] = { + [1] = { 10, 34, 400, 300 }, + [2] = { 11.5, 33.9, 400, 300 }, + }, + ["lvl"] = "30-31", + }, + [4111] = { + ["coords"] = { + [1] = { 41.1, 94.9, 17, 300 }, + [2] = { 40.5, 92.3, 17, 300 }, + [3] = { 37.9, 54.7, 400, 300 }, + [4] = { 38.5, 51.9, 400, 300 }, + [5] = { 34.5, 51.3, 400, 300 }, + [6] = { 31.8, 47.7, 400, 300 }, + [7] = { 27.5, 39.7, 400, 300 }, + [8] = { 22.1, 38, 400, 300 }, + [9] = { 25.1, 28.3, 400, 300 }, + [10] = { 23.8, 22.3, 400, 300 }, + }, + ["lvl"] = "26-27", + }, + [4112] = { + ["coords"] = { + [1] = { 44.7, 96.5, 17, 300 }, + [2] = { 45.1, 94.1, 17, 300 }, + [3] = { 45.9, 59.2, 400, 300 }, + [4] = { 38.3, 55.2, 400, 300 }, + [5] = { 33.6, 32, 400, 300 }, + [6] = { 34.4, 26.6, 400, 300 }, + }, + ["lvl"] = "25-26", + }, + [4113] = { + ["coords"] = { + [1] = { 91.9, 49, 357, 300 }, + [2] = { 92.7, 45.2, 357, 300 }, + [3] = { 67.5, 58.5, 400, 300 }, + [4] = { 59.4, 54.9, 400, 300 }, + [5] = { 66.4, 49.3, 400, 300 }, + [6] = { 53.6, 48.5, 400, 300 }, + [7] = { 63.1, 45.6, 400, 300 }, + [8] = { 51.9, 43, 400, 300 }, + [9] = { 11.7, 22.8, 400, 300 }, + [10] = { 13, 16.8, 400, 300 }, + }, + ["lvl"] = "28-29", + }, + [4114] = { + ["coords"] = { + [1] = { 42.7, 95.3, 17, 300 }, + [2] = { 30.9, 51.6, 400, 300 }, + [3] = { 24.8, 46.6, 400, 300 }, + [4] = { 36.3, 45.8, 400, 300 }, + [5] = { 29, 29.2, 400, 300 }, + [6] = { 59.4, 54.9, 400, 300 }, + [7] = { 53.6, 48.5, 400, 300 }, + [8] = { 51.9, 43, 400, 300 }, + }, + ["lvl"] = "27-28", + }, + [4115] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [4116] = { + ["coords"] = { + [1] = { 91.9, 49, 357, 300 }, + [2] = { 92.7, 45.2, 357, 300 }, + [3] = { 67.5, 58.5, 400, 300 }, + [4] = { 66.4, 49.3, 400, 300 }, + [5] = { 63.1, 45.6, 400, 300 }, + [6] = { 11.7, 22.8, 400, 300 }, + [7] = { 13, 16.8, 400, 300 }, + }, + ["lvl"] = "29-30", + }, + [4117] = { + ["coords"] = { + [1] = { 45.4, 94.6, 17, 300 }, + [2] = { 40.9, 58.3, 400, 300 }, + [3] = { 37.4, 55.1, 400, 300 }, + [4] = { 40.5, 50.2, 400, 300 }, + [5] = { 37.1, 41.9, 400, 300 }, + [6] = { 35.2, 27.6, 400, 300 }, + }, + ["lvl"] = "25-26", + }, + [4118] = { + ["coords"] = { + [1] = { 42.9, 94.8, 17, 300 }, + [2] = { 41.6, 93.7, 17, 300 }, + [3] = { 40, 92.9, 17, 300 }, + [4] = { 51.2, 56.3, 400, 300 }, + [5] = { 36.7, 55.3, 400, 300 }, + [6] = { 52.6, 55.1, 400, 300 }, + [7] = { 34.9, 54.4, 400, 300 }, + [8] = { 37.8, 54, 400, 300 }, + [9] = { 37.5, 53.8, 400, 300 }, + [10] = { 33.2, 52.9, 400, 300 }, + [11] = { 28, 42.2, 400, 300 }, + [12] = { 21.3, 38.1, 400, 300 }, + [13] = { 29.3, 28.1, 400, 300 }, + [14] = { 26.4, 25.6, 400, 300 }, + [15] = { 22.7, 23.7, 400, 300 }, + }, + ["lvl"] = "26-28", + }, + [4119] = { + ["coords"] = { + [1] = { 55.5, 51.9, 400, 300 }, + [2] = { 59.1, 51.6, 400, 300 }, + [3] = { 56.1, 51.2, 400, 300 }, + [4] = { 57.2, 49.9, 400, 300 }, + [5] = { 56.3, 49.8, 400, 300 }, + [6] = { 56.3, 49.7, 400, 300 }, + [7] = { 55.4, 49.6, 400, 300 }, + [8] = { 56, 49.3, 400, 300 }, + [9] = { 56.2, 48.8, 400, 300 }, + [10] = { 54.6, 48.7, 400, 300 }, + [11] = { 54.2, 48.2, 400, 300 }, + [12] = { 54.9, 47.6, 400, 300 }, + [13] = { 56.2, 46.9, 400, 300 }, + [14] = { 59.6, 46.4, 400, 300 }, + [15] = { 55.6, 45.8, 400, 300 }, + [16] = { 51.6, 43.9, 400, 300 }, + [17] = { 19.4, 39.2, 400, 300 }, + [18] = { 17.5, 36.7, 400, 300 }, + [19] = { 18.7, 33, 400, 300 }, + [20] = { 15, 31.7, 400, 300 }, + }, + ["lvl"] = "27-29", + }, + [4120] = { + ["coords"] = { + [1] = { 91.5, 48.7, 357, 300 }, + [2] = { 92.1, 45.6, 357, 300 }, + [3] = { 91.1, 44.8, 357, 300 }, + [4] = { 90.1, 43.5, 357, 300 }, + [5] = { 93, 43.5, 357, 300 }, + [6] = { 92.4, 43.1, 357, 300 }, + [7] = { 65.2, 62, 400, 300 }, + [8] = { 67.6, 61.1, 400, 300 }, + [9] = { 63.4, 60.1, 400, 300 }, + [10] = { 60.5, 59.2, 400, 300 }, + [11] = { 65.8, 50.8, 400, 300 }, + [12] = { 64.4, 48.5, 400, 300 }, + [13] = { 13.4, 27, 400, 300 }, + [14] = { 13.2, 25.6, 400, 300 }, + [15] = { 11, 22.4, 400, 300 }, + [16] = { 11.9, 17.5, 400, 300 }, + [17] = { 10.3, 16.3, 400, 300 }, + [18] = { 8.8, 14.2, 400, 300 }, + [19] = { 13.3, 14.1, 400, 300 }, + [20] = { 12.4, 13.6, 400, 300 }, + }, + ["lvl"] = "28-29", + }, + [4121] = { + ["coords"] = {}, + ["lvl"] = "26-27", + }, + [4124] = { + ["coords"] = { + [1] = { 41, 95.5, 17, 300 }, + [2] = { 41.4, 94.9, 17, 300 }, + [3] = { 37, 89.8, 17, 300 }, + [4] = { 94, 46.9, 357, 300 }, + [5] = { 91.6, 44.9, 357, 300 }, + [6] = { 92.2, 43, 357, 300 }, + [7] = { 91.4, 40.1, 357, 300 }, + [8] = { 66.7, 62.3, 400, 300 }, + [9] = { 64.9, 61.4, 400, 300 }, + [10] = { 61.6, 60.1, 400, 300 }, + [11] = { 67.6, 59.8, 400, 300 }, + [12] = { 63.6, 59.8, 400, 300 }, + [13] = { 59.6, 58.8, 400, 300 }, + [14] = { 48.7, 55.8, 400, 300 }, + [15] = { 64.8, 55.6, 400, 300 }, + [16] = { 57.8, 55.4, 400, 300 }, + [17] = { 34.1, 54.1, 400, 300 }, + [18] = { 59, 51.9, 400, 300 }, + [19] = { 58.8, 51, 400, 300 }, + [20] = { 38.9, 50.5, 400, 300 }, + [21] = { 64.1, 49.5, 400, 300 }, + [22] = { 64, 48.5, 400, 300 }, + [23] = { 59.7, 48.5, 400, 300 }, + [24] = { 36.3, 47.8, 400, 300 }, + [25] = { 31, 47.3, 400, 300 }, + [26] = { 64, 47.3, 400, 300 }, + [27] = { 54.1, 47, 400, 300 }, + [28] = { 36.4, 46.9, 400, 300 }, + [29] = { 61.6, 46.6, 400, 300 }, + [30] = { 60.3, 46.3, 400, 300 }, + [31] = { 51, 44.2, 400, 300 }, + [32] = { 27.9, 42.8, 400, 300 }, + [33] = { 24.8, 42.8, 400, 300 }, + [34] = { 21.5, 41.9, 400, 300 }, + [35] = { 20.1, 39.2, 400, 300 }, + [36] = { 22.4, 38, 400, 300 }, + [37] = { 21.9, 36.7, 400, 300 }, + [38] = { 15.9, 35.1, 400, 300 }, + [39] = { 15.1, 32.6, 400, 300 }, + [40] = { 25, 29.8, 400, 300 }, + [41] = { 25.9, 28.4, 400, 300 }, + [42] = { 14.1, 26.7, 400, 300 }, + [43] = { 14.8, 26.6, 400, 300 }, + [44] = { 14.9, 19.5, 400, 300 }, + [45] = { 15.8, 16.6, 400, 300 }, + [46] = { 11.2, 16.4, 400, 300 }, + [47] = { 12.2, 13.3, 400, 300 }, + [48] = { 10.8, 8.7, 400, 300 }, + }, + ["lvl"] = "27-28", + }, + [4126] = { + ["coords"] = { + [1] = { 44.5, 97.4, 17, 300 }, + [2] = { 45.9, 96.5, 17, 300 }, + [3] = { 44.5, 96.1, 17, 300 }, + [4] = { 44.8, 95.7, 17, 300 }, + [5] = { 45.2, 94.8, 17, 300 }, + [6] = { 45.4, 94.1, 17, 300 }, + [7] = { 44.7, 93.4, 17, 300 }, + [8] = { 45.3, 60.1, 400, 300 }, + [9] = { 46.5, 59.6, 400, 300 }, + [10] = { 47.8, 59.2, 400, 300 }, + [11] = { 44.2, 59.2, 400, 300 }, + [12] = { 41.4, 58.7, 400, 300 }, + [13] = { 45.7, 58.7, 400, 300 }, + [14] = { 40.1, 56.2, 400, 300 }, + [15] = { 41.7, 52.4, 400, 300 }, + [16] = { 40.4, 51.7, 400, 300 }, + [17] = { 51.4, 49.9, 400, 300 }, + [18] = { 51.1, 48.5, 400, 300 }, + [19] = { 50.3, 47.1, 400, 300 }, + [20] = { 49.3, 46.8, 400, 300 }, + [21] = { 36.8, 41, 400, 300 }, + [22] = { 33, 34.1, 400, 300 }, + [23] = { 36.2, 32, 400, 300 }, + [24] = { 33, 31.2, 400, 300 }, + [25] = { 33.8, 30.2, 400, 300 }, + [26] = { 34.8, 28.1, 400, 300 }, + [27] = { 35.1, 26.4, 400, 300 }, + [28] = { 33.6, 24.9, 400, 300 }, + }, + ["lvl"] = "25-26", + }, + [4127] = { + ["coords"] = { + [1] = { 36, 14.4, 14, 413 }, + [2] = { 56, 46.9, 17, 413 }, + [3] = { 54, 46, 17, 413 }, + [4] = { 54.2, 45.4, 17, 413 }, + [5] = { 53.9, 45.1, 17, 413 }, + [6] = { 55.2, 44.9, 17, 413 }, + [7] = { 54.2, 44.9, 17, 413 }, + [8] = { 50, 44.9, 17, 413 }, + [9] = { 53.9, 44.9, 17, 413 }, + [10] = { 55.8, 44.7, 17, 413 }, + [11] = { 51.1, 44.2, 17, 413 }, + [12] = { 51.4, 44.2, 17, 413 }, + [13] = { 53.3, 44, 17, 413 }, + [14] = { 45.8, 42.8, 17, 413 }, + [15] = { 51, 42.8, 17, 413 }, + [16] = { 45.8, 42.7, 17, 413 }, + [17] = { 45.1, 42.6, 17, 413 }, + [18] = { 48.1, 42.4, 17, 413 }, + [19] = { 48.2, 42.3, 17, 413 }, + [20] = { 44.5, 42.2, 17, 413 }, + [21] = { 46, 42, 17, 413 }, + [22] = { 46.6, 42, 17, 413 }, + [23] = { 57.2, 42, 17, 413 }, + [24] = { 61.1, 41.9, 17, 413 }, + [25] = { 46.7, 41.9, 17, 413 }, + [26] = { 49.5, 41.8, 17, 413 }, + [27] = { 59.5, 41.8, 17, 413 }, + [28] = { 60.3, 41.8, 17, 413 }, + [29] = { 43.4, 41.7, 17, 413 }, + [30] = { 61.9, 41.7, 17, 413 }, + [31] = { 49, 41.6, 17, 413 }, + [32] = { 56.3, 41.5, 17, 413 }, + [33] = { 57.6, 41.5, 17, 413 }, + [34] = { 47.1, 41.4, 17, 413 }, + [35] = { 44.5, 41, 17, 413 }, + [36] = { 57.6, 40.9, 17, 413 }, + [37] = { 55.9, 40.6, 17, 413 }, + [38] = { 49, 40.5, 17, 413 }, + [39] = { 43.3, 40.5, 17, 413 }, + [40] = { 54.2, 40.2, 17, 413 }, + [41] = { 56.5, 39.9, 17, 413 }, + [42] = { 44.8, 39.9, 17, 413 }, + [43] = { 49.3, 39.8, 17, 413 }, + [44] = { 54.1, 39.8, 17, 413 }, + [45] = { 55.5, 39.7, 17, 413 }, + [46] = { 43.8, 39.7, 17, 413 }, + [47] = { 55.9, 39.2, 17, 413 }, + [48] = { 55.2, 38.7, 17, 413 }, + [49] = { 42.2, 37.8, 17, 413 }, + [50] = { 59.3, 37.8, 17, 413 }, + [51] = { 58.3, 37.5, 17, 413 }, + [52] = { 43, 37, 17, 413 }, + [53] = { 43.9, 36.5, 17, 413 }, + [54] = { 43, 36.4, 17, 413 }, + [55] = { 44.1, 36.2, 17, 413 }, + [56] = { 43.1, 35.7, 17, 413 }, + [57] = { 42.4, 35.6, 17, 413 }, + [58] = { 60.4, 35.5, 17, 413 }, + [59] = { 57.9, 34.7, 17, 413 }, + [60] = { 41.1, 32.4, 17, 413 }, + [61] = { 40.9, 32, 17, 413 }, + [62] = { 42.2, 31, 17, 413 }, + [63] = { 59.5, 30.5, 17, 413 }, + [64] = { 60.8, 30.1, 17, 413 }, + [65] = { 40.6, 29.2, 17, 413 }, + [66] = { 59.2, 29.1, 17, 413 }, + [67] = { 62.5, 28.9, 17, 413 }, + [68] = { 40.5, 28.6, 17, 413 }, + [69] = { 42, 28.3, 17, 413 }, + [70] = { 62.7, 28.1, 17, 413 }, + [71] = { 60.1, 27.2, 17, 413 }, + [72] = { 62.8, 27.1, 17, 413 }, + [73] = { 41.5, 26.4, 17, 413 }, + [74] = { 41.2, 25.2, 17, 413 }, + [75] = { 41.2, 24.7, 17, 413 }, + [76] = { 40.5, 22.6, 17, 413 }, + [77] = { 41.5, 22.3, 17, 413 }, + [78] = { 42.2, 21.5, 17, 413 }, + [79] = { 42.1, 21.2, 17, 413 }, + [80] = { 41.5, 21.1, 17, 413 }, + [81] = { 43.9, 20.7, 17, 413 }, + [82] = { 42.5, 20.7, 17, 413 }, + [83] = { 42.5, 19.7, 17, 413 }, + [84] = { 44.9, 18.7, 17, 413 }, + [85] = { 57.3, 18.3, 17, 413 }, + [86] = { 58.3, 18.3, 17, 413 }, + [87] = { 44.6, 18.3, 17, 413 }, + [88] = { 59.2, 18.1, 17, 413 }, + [89] = { 56.2, 17.5, 17, 413 }, + [90] = { 56.6, 17.4, 17, 413 }, + [91] = { 57.5, 17.2, 17, 413 }, + [92] = { 57.3, 16.2, 17, 413 }, + [93] = { 56.3, 15.5, 17, 413 }, + [94] = { 52, 14.2, 17, 413 }, + [95] = { 52.4, 13.9, 17, 413 }, + [96] = { 54.7, 13.3, 17, 413 }, + [97] = { 52, 13.2, 17, 413 }, + [98] = { 54.7, 12.7, 17, 413 }, + [99] = { 53.7, 12.3, 17, 413 }, + [100] = { 54.7, 12.2, 17, 413 }, + [101] = { 55.1, 11.9, 17, 413 }, + [102] = { 54.4, 11.8, 17, 413 }, + [103] = { 54, 11.1, 17, 413 }, + [104] = { 54.7, 10.2, 17, 413 }, + [105] = { 55.7, 9.8, 17, 413 }, + [106] = { 62.3, 8.7, 17, 413 }, + [107] = { 61.6, 8.4, 17, 413 }, + [108] = { 63.5, 7.6, 17, 413 }, + [109] = { 64, 4.6, 17, 413 }, + }, + ["lvl"] = "15-16", + }, + [4128] = { + ["coords"] = { + [1] = { 28.2, 48.7, 15, 540 }, + [2] = { 28, 48.4, 15, 413 }, + [3] = { 28.3, 44.9, 15, 413 }, + [4] = { 27.5, 44.4, 15, 413 }, + [5] = { 28.7, 42.5, 15, 413 }, + [6] = { 46.4, 81.8, 17, 413 }, + [7] = { 47.4, 81.5, 17, 413 }, + [8] = { 46.8, 81.3, 17, 413 }, + [9] = { 46.4, 81, 17, 413 }, + [10] = { 48.3, 80.9, 17, 413 }, + [11] = { 47.2, 80.9, 17, 413 }, + [12] = { 46.7, 79.9, 17, 413 }, + [13] = { 48.4, 79.6, 17, 413 }, + [14] = { 44.1, 79.4, 17, 413 }, + [15] = { 48.9, 79.3, 17, 413 }, + [16] = { 50.1, 79.2, 17, 540 }, + [17] = { 49.2, 79, 17, 540 }, + [18] = { 50, 79, 17, 413 }, + [19] = { 45.3, 79, 17, 413 }, + [20] = { 45.1, 77.4, 17, 413 }, + [21] = { 47.1, 77.4, 17, 413 }, + [22] = { 45.4, 77.2, 17, 413 }, + [23] = { 50.2, 77.2, 17, 413 }, + [24] = { 49.7, 77, 17, 413 }, + [25] = { 44.6, 76.7, 17, 413 }, + [26] = { 45.5, 76.7, 17, 413 }, + [27] = { 43.9, 76.5, 17, 413 }, + [28] = { 45.4, 76, 17, 413 }, + [29] = { 50.4, 76, 17, 413 }, + [30] = { 49.6, 75.9, 17, 413 }, + [31] = { 49.5, 75.6, 17, 413 }, + [32] = { 48.1, 75.5, 17, 413 }, + [33] = { 44.6, 75, 17, 413 }, + [34] = { 44.9, 74.9, 17, 413 }, + [35] = { 44, 74.9, 17, 413 }, + [36] = { 47.8, 74.7, 17, 413 }, + [37] = { 45.5, 74.7, 17, 413 }, + [38] = { 48.3, 74.5, 17, 413 }, + [39] = { 44.3, 74.5, 17, 413 }, + [40] = { 47.1, 73.9, 17, 413 }, + [41] = { 47.8, 73.7, 17, 413 }, + [42] = { 47.5, 73.5, 17, 413 }, + [43] = { 47.5, 73, 17, 413 }, + [44] = { 45.1, 77.9, 17, 413 }, + }, + ["lvl"] = "22-23", + }, + [4129] = { + ["coords"] = { + [1] = { 50.4, 59.1, 17, 413 }, + [2] = { 42.9, 57.6, 17, 413 }, + [3] = { 43.2, 56.8, 17, 413 }, + [4] = { 50.3, 56.2, 17, 413 }, + [5] = { 46.9, 55.6, 17, 413 }, + [6] = { 46.5, 55.2, 17, 413 }, + [7] = { 49.8, 55.2, 17, 413 }, + [8] = { 49.4, 54.7, 17, 413 }, + [9] = { 43.5, 53.5, 17, 413 }, + [10] = { 44.4, 53.1, 17, 413 }, + [11] = { 44.7, 52.8, 17, 413 }, + [12] = { 45.5, 52.5, 17, 413 }, + [13] = { 46.3, 49.3, 17, 413 }, + [14] = { 45.5, 49.3, 17, 413 }, + [15] = { 45.9, 48.5, 17, 413 }, + [16] = { 47.4, 48.3, 17, 413 }, + [17] = { 47.5, 47.8, 17, 413 }, + [18] = { 46.6, 47.2, 17, 413 }, + [19] = { 43.4, 46.8, 17, 413 }, + [20] = { 46.8, 46.7, 17, 413 }, + [21] = { 44.7, 46.2, 17, 413 }, + [22] = { 44.9, 46.2, 17, 413 }, + [23] = { 43.9, 45.9, 17, 413 }, + [24] = { 43.5, 45.8, 17, 413 }, + [25] = { 47.4, 45.8, 17, 413 }, + [26] = { 44.8, 45.4, 17, 413 }, + [27] = { 43.2, 45.1, 17, 413 }, + [28] = { 45.4, 44.7, 17, 413 }, + }, + ["lvl"] = "18-19", + }, + [4130] = { + ["coords"] = { + [1] = { 71, 86, 400, 300 }, + [2] = { 68.9, 85.9, 400, 300 }, + [3] = { 71.6, 85.8, 400, 300 }, + [4] = { 69.3, 85.4, 400, 300 }, + [5] = { 71, 84.6, 400, 300 }, + [6] = { 71.6, 83.6, 400, 300 }, + [7] = { 67.7, 83.5, 400, 300 }, + [8] = { 70.1, 82.4, 400, 300 }, + [9] = { 67.7, 81.4, 400, 300 }, + }, + ["lvl"] = "32-33", + }, + [4131] = { + ["coords"] = { + [1] = { 68.5, 86.8, 400, 300 }, + [2] = { 66.9, 86.2, 400, 300 }, + [3] = { 69.7, 86.1, 400, 300 }, + [4] = { 67.8, 86, 400, 300 }, + [5] = { 70.6, 85.3, 400, 300 }, + [6] = { 68.2, 84.3, 400, 300 }, + }, + ["lvl"] = "34-35", + }, + [4132] = { + ["coords"] = { + [1] = { 68.4, 82.3, 400, 27000 }, + }, + ["lvl"] = "36", + ["rnk"] = "4", + }, + [4133] = { + ["coords"] = { + [1] = { 69.5, 89.5, 400, 300 }, + [2] = { 69.2, 89.3, 400, 300 }, + [3] = { 70.2, 88.3, 400, 300 }, + [4] = { 67.9, 88.3, 400, 300 }, + [5] = { 68.9, 87.3, 400, 300 }, + [6] = { 70.1, 87, 400, 300 }, + [7] = { 70.9, 87, 400, 300 }, + [8] = { 65.3, 86.7, 400, 300 }, + [9] = { 69.4, 86.6, 400, 300 }, + [10] = { 63.8, 86.2, 400, 300 }, + [11] = { 65.7, 86.2, 400, 300 }, + [12] = { 70, 86.2, 400, 300 }, + [13] = { 67, 86.2, 400, 300 }, + [14] = { 68.1, 86, 400, 300 }, + [15] = { 65.7, 86, 400, 300 }, + [16] = { 70, 86, 400, 300 }, + [17] = { 64.1, 85.9, 400, 300 }, + [18] = { 63.6, 85.8, 400, 300 }, + [19] = { 68.7, 85.8, 400, 300 }, + [20] = { 63.9, 85.4, 400, 300 }, + [21] = { 65.1, 85.1, 400, 300 }, + [22] = { 69.3, 84.5, 400, 300 }, + [23] = { 70, 84.4, 400, 300 }, + [24] = { 70.6, 84, 400, 300 }, + [25] = { 69, 83.1, 400, 300 }, + [26] = { 70.8, 82.5, 400, 300 }, + [27] = { 67.1, 82.5, 400, 300 }, + [28] = { 69.5, 81.5, 400, 300 }, + [29] = { 68.6, 81.4, 400, 300 }, + [30] = { 43.8, 13.5, 440, 300 }, + [31] = { 44, 13.3, 440, 300 }, + [32] = { 43.6, 13.2, 440, 300 }, + [33] = { 43.8, 13, 440, 300 }, + [34] = { 71, 86, 400, 300 }, + [35] = { 68.9, 85.9, 400, 300 }, + [36] = { 69.3, 85.4, 400, 300 }, + [37] = { 71, 84.6, 400, 300 }, + }, + ["lvl"] = "33-34", + }, + [4138] = { + ["coords"] = { + [1] = { 25.5, 48.1, 141, 300 }, + [2] = { 39.7, 5.4, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [4139] = { + ["coords"] = { + [1] = { 73.5, 89.8, 400, 300 }, + [2] = { 82.5, 87.8, 400, 300 }, + [3] = { 81.4, 86.8, 400, 300 }, + [4] = { 73.1, 81.1, 400, 300 }, + [5] = { 85.2, 80.2, 400, 300 }, + [6] = { 82.8, 79.7, 400, 300 }, + [7] = { 70, 79.1, 400, 300 }, + [8] = { 70.8, 76.8, 400, 300 }, + [9] = { 71.6, 74.5, 400, 300 }, + [10] = { 70.9, 73.3, 400, 300 }, + [11] = { 83.1, 73.3, 400, 300 }, + [12] = { 71.8, 72.9, 400, 300 }, + [13] = { 83.8, 72.2, 400, 300 }, + [14] = { 87.1, 69.9, 400, 300 }, + [15] = { 88.2, 69, 400, 300 }, + [16] = { 86.6, 68.6, 400, 300 }, + }, + ["lvl"] = "33-34", + }, + [4140] = { + ["coords"] = { + [1] = { 71.8, 73.7, 400, 300 }, + [2] = { 72.1, 73.2, 400, 300 }, + [3] = { 71.3, 72.9, 400, 300 }, + [4] = { 73.7, 70.1, 400, 300 }, + [5] = { 82.7, 69.1, 400, 300 }, + [6] = { 70.4, 68.9, 400, 300 }, + [7] = { 79.9, 68.7, 400, 300 }, + [8] = { 78.3, 68, 400, 300 }, + [9] = { 75.5, 67.8, 400, 300 }, + [10] = { 77, 67.7, 400, 300 }, + [11] = { 78.4, 66.9, 400, 300 }, + [12] = { 70.8, 66.5, 400, 300 }, + [13] = { 82.9, 66.4, 400, 300 }, + [14] = { 69.3, 65.3, 400, 300 }, + [15] = { 70.1, 63.1, 400, 300 }, + [16] = { 83.7, 63, 400, 300 }, + [17] = { 84.5, 61.4, 400, 300 }, + [18] = { 86.4, 61.3, 400, 300 }, + [19] = { 73.9, 61, 400, 300 }, + [20] = { 72.4, 59.7, 400, 300 }, + [21] = { 75.2, 59.5, 400, 300 }, + [22] = { 82.9, 59.3, 400, 300 }, + [23] = { 75.4, 58.4, 400, 300 }, + [24] = { 86.6, 57.7, 400, 300 }, + [25] = { 72.4, 57.5, 400, 300 }, + [26] = { 71.3, 57.2, 400, 300 }, + [27] = { 78, 56.7, 400, 300 }, + [28] = { 71.6, 55.4, 400, 300 }, + [29] = { 78.4, 55.2, 400, 300 }, + [30] = { 73.9, 55.1, 400, 300 }, + [31] = { 76.1, 55.1, 400, 300 }, + [32] = { 78.3, 52.8, 400, 300 }, + [33] = { 77.6, 51.8, 400, 300 }, + [34] = { 76.1, 51.7, 400, 300 }, + [35] = { 71.6, 74.5, 400, 300 }, + }, + ["lvl"] = "31-32", + }, + [4142] = { + ["coords"] = { + [1] = { 72.7, 68.6, 400, 300 }, + [2] = { 69.3, 67.1, 400, 300 }, + [3] = { 69.2, 65.6, 400, 300 }, + [4] = { 70.9, 64.1, 400, 300 }, + [5] = { 75.4, 63.1, 400, 300 }, + [6] = { 74.5, 63.1, 400, 300 }, + [7] = { 74.7, 60.9, 400, 300 }, + [8] = { 76.2, 58.6, 400, 300 }, + [9] = { 72.7, 58.4, 400, 300 }, + [10] = { 74.7, 56.4, 400, 300 }, + [11] = { 83.6, 56.2, 400, 300 }, + [12] = { 76.1, 56.2, 400, 300 }, + [13] = { 73, 55.8, 400, 300 }, + [14] = { 82.3, 55.2, 400, 300 }, + [15] = { 70.8, 55.1, 400, 300 }, + [16] = { 81.4, 55.1, 400, 300 }, + [17] = { 82.7, 55.1, 400, 300 }, + [18] = { 83.1, 54.8, 400, 300 }, + [19] = { 82.7, 54.4, 400, 300 }, + [20] = { 76.7, 54.3, 400, 300 }, + [21] = { 82.3, 54.1, 400, 300 }, + [22] = { 83.7, 54, 400, 300 }, + [23] = { 77.6, 54, 400, 300 }, + [24] = { 75.1, 53.1, 400, 300 }, + [25] = { 81.3, 52.7, 400, 300 }, + [26] = { 70.8, 66.5, 400, 300 }, + [27] = { 72.4, 59.7, 400, 300 }, + [28] = { 73.9, 55.1, 400, 300 }, + }, + ["lvl"] = "30-31", + }, + [4143] = { + ["coords"] = { + [1] = { 88.3, 79.1, 400, 300 }, + [2] = { 72.1, 78.8, 400, 300 }, + [3] = { 70.2, 78, 400, 300 }, + [4] = { 70.5, 76.8, 400, 300 }, + [5] = { 83.7, 74.6, 400, 300 }, + [6] = { 87.3, 74.4, 400, 300 }, + [7] = { 87.5, 73.3, 400, 300 }, + [8] = { 78.2, 72.1, 400, 300 }, + [9] = { 87.5, 71, 400, 300 }, + [10] = { 77.2, 70.9, 400, 300 }, + [11] = { 82.9, 70, 400, 300 }, + [12] = { 76.9, 68.4, 400, 300 }, + [13] = { 83.9, 67.4, 400, 300 }, + [14] = { 84.4, 66.6, 400, 300 }, + [15] = { 79.9, 66.3, 400, 300 }, + [16] = { 84.8, 64.4, 400, 300 }, + [17] = { 87.3, 61.1, 400, 300 }, + [18] = { 86, 61, 400, 300 }, + [19] = { 83.8, 60.7, 400, 300 }, + [20] = { 83.7, 58.6, 400, 300 }, + [21] = { 86, 58.2, 400, 300 }, + [22] = { 81.4, 56.2, 400, 300 }, + [23] = { 82.1, 54.8, 400, 300 }, + [24] = { 82.9, 54, 400, 300 }, + [25] = { 78.9, 53.8, 400, 300 }, + [26] = { 81.6, 53.5, 400, 300 }, + [27] = { 79, 51.6, 400, 300 }, + [28] = { 83.6, 56.2, 400, 300 }, + [29] = { 82.7, 55.1, 400, 300 }, + [30] = { 82.7, 54.4, 400, 300 }, + [31] = { 82.3, 54.1, 400, 300 }, + [32] = { 83.7, 54, 400, 300 }, + }, + ["lvl"] = "34-35", + }, + [4144] = { + ["coords"] = { + [1] = { 81.7, 89.2, 400, 300 }, + [2] = { 72.4, 88.8, 400, 300 }, + [3] = { 79.9, 85.7, 400, 300 }, + [4] = { 82.2, 85.1, 400, 300 }, + [5] = { 84.2, 84.5, 400, 300 }, + [6] = { 84.8, 81.8, 400, 300 }, + }, + ["lvl"] = "32-33", + }, + [4146] = { + ["coords"] = { + [1] = { 25.6, 48.7, 141, 300 }, + [2] = { 40.4, 8.5, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [4147] = { + ["coords"] = { + [1] = { 70.7, 67.7, 400, 300 }, + [2] = { 71.2, 67.7, 400, 300 }, + [3] = { 71.7, 65.5, 400, 300 }, + [4] = { 77.6, 64.9, 400, 300 }, + [5] = { 80.6, 64.3, 400, 300 }, + [6] = { 68.7, 61.9, 400, 300 }, + [7] = { 75.4, 61.5, 400, 300 }, + [8] = { 76.9, 60.9, 400, 300 }, + [9] = { 77.4, 59.6, 400, 300 }, + [10] = { 73.6, 59.4, 400, 300 }, + [11] = { 78.5, 59, 400, 300 }, + [12] = { 76.9, 57.6, 400, 300 }, + [13] = { 73.8, 57.4, 400, 300 }, + [14] = { 75.5, 57.4, 400, 300 }, + [15] = { 72.5, 55.5, 400, 300 }, + [16] = { 74.3, 54, 400, 300 }, + [17] = { 76.4, 53.7, 400, 300 }, + [18] = { 76.3, 52.9, 400, 300 }, + [19] = { 76.1, 56.2, 400, 300 }, + [20] = { 70.8, 66.5, 400, 300 }, + [21] = { 72.4, 59.7, 400, 300 }, + }, + ["lvl"] = "30-31", + }, + [4149] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "35", + }, + [4150] = { + ["coords"] = { + [1] = { 77.1, 90.7, 400, 300 }, + [2] = { 71.2, 90.7, 400, 300 }, + [3] = { 76, 90.4, 400, 300 }, + [4] = { 78.5, 90.3, 400, 300 }, + [5] = { 76.9, 89.4, 400, 300 }, + [6] = { 79.9, 89.3, 400, 300 }, + [7] = { 77.9, 89.2, 400, 300 }, + [8] = { 76.9, 89, 400, 300 }, + [9] = { 79, 88.6, 400, 300 }, + [10] = { 79, 88.1, 400, 300 }, + [11] = { 72.9, 87.9, 400, 300 }, + [12] = { 77.8, 87.8, 400, 300 }, + [13] = { 79.4, 87.2, 400, 300 }, + [14] = { 76.8, 86.8, 400, 300 }, + [15] = { 78.3, 86.5, 400, 300 }, + [16] = { 79.2, 85.8, 400, 300 }, + [17] = { 77.6, 85.8, 400, 300 }, + [18] = { 76.1, 85.8, 400, 300 }, + [19] = { 83.1, 85.6, 400, 300 }, + [20] = { 77.7, 83.6, 400, 300 }, + [21] = { 83.5, 78.8, 400, 300 }, + }, + ["lvl"] = "34-35", + }, + [4151] = { + ["coords"] = { + [1] = { 77.9, 90.2, 400, 300 }, + [2] = { 77.5, 89.6, 400, 300 }, + [3] = { 78.5, 89.6, 400, 300 }, + [4] = { 79.4, 89.6, 400, 300 }, + [5] = { 78.5, 89, 400, 300 }, + [6] = { 79.5, 88.9, 400, 300 }, + [7] = { 79.7, 88.2, 400, 300 }, + [8] = { 77.6, 88, 400, 300 }, + [9] = { 76.4, 87.9, 400, 300 }, + [10] = { 79.9, 87, 400, 300 }, + [11] = { 78.8, 86.9, 400, 300 }, + [12] = { 76.9, 84.6, 400, 300 }, + [13] = { 72.5, 80.1, 400, 300 }, + [14] = { 87, 79.6, 400, 300 }, + [15] = { 69, 77.7, 400, 300 }, + [16] = { 72.4, 77.2, 400, 300 }, + [17] = { 73.8, 76.2, 400, 300 }, + [18] = { 88.3, 74.4, 400, 300 }, + [19] = { 86.7, 72.2, 400, 300 }, + [20] = { 80, 70.5, 400, 300 }, + [21] = { 79.1, 70.1, 400, 300 }, + [22] = { 76.1, 69.7, 400, 300 }, + [23] = { 83.7, 69.4, 400, 300 }, + [24] = { 79.3, 67.6, 400, 300 }, + [25] = { 77.8, 67.3, 400, 300 }, + [26] = { 75.4, 66.5, 400, 300 }, + [27] = { 83.5, 65.1, 400, 300 }, + [28] = { 76.9, 64.7, 400, 300 }, + [29] = { 82.9, 64.3, 400, 300 }, + [30] = { 86.7, 63.1, 400, 300 }, + [31] = { 83.2, 62.1, 400, 300 }, + [32] = { 86.4, 60.1, 400, 300 }, + [33] = { 85.9, 58.5, 400, 300 }, + [34] = { 79.4, 56, 400, 300 }, + [35] = { 80.6, 55.3, 400, 300 }, + [36] = { 80, 51.7, 400, 300 }, + [37] = { 77.9, 89.2, 400, 300 }, + [38] = { 76.8, 86.8, 400, 300 }, + [39] = { 78.3, 86.5, 400, 300 }, + [40] = { 79.2, 85.8, 400, 300 }, + [41] = { 77.6, 85.8, 400, 300 }, + [42] = { 76.1, 85.8, 400, 300 }, + }, + ["lvl"] = "32-33", + }, + [4153] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "35", + }, + [4154] = { + ["coords"] = { + [1] = { 70.3, 70.9, 400, 300 }, + [2] = { 88.2, 66, 400, 300 }, + [3] = { 87.1, 65.7, 400, 300 }, + [4] = { 87.9, 65.3, 400, 300 }, + [5] = { 87.4, 65, 400, 300 }, + [6] = { 85, 56.4, 400, 300 }, + [7] = { 70.3, 55, 400, 300 }, + }, + ["lvl"] = "30-32", + }, + [4155] = { + ["coords"] = { + [1] = { 25.4, 55.8, 141, 300 }, + [2] = { 39.4, 42.4, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [4156] = { + ["coords"] = { + [1] = { 27.2, 58.7, 141, 300 }, + [2] = { 47.9, 56.7, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [4157] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "35", + }, + [4158] = { + ["coords"] = { + [1] = { 77.9, 87.8, 400, 300 }, + [2] = { 80.1, 85.8, 400, 300 }, + [3] = { 73, 85.7, 400, 300 }, + [4] = { 84.2, 77.4, 400, 300 }, + [5] = { 73, 76.2, 400, 300 }, + [6] = { 71, 75.3, 400, 300 }, + [7] = { 83.2, 73.3, 400, 300 }, + [8] = { 86, 73.2, 400, 300 }, + [9] = { 84.2, 70.7, 400, 300 }, + }, + ["lvl"] = "32-34", + }, + [4159] = { + ["coords"] = { + [1] = { 30.4, 51.6, 141, 300 }, + [2] = { 63.4, 22.4, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [4160] = { + ["coords"] = { + [1] = { 28.6, 51.9, 141, 300 }, + [2] = { 54.9, 24, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "46", + }, + [4161] = { + ["coords"] = { + [1] = { 31.7, 51.7, 141, 300 }, + [2] = { 69.8, 23, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [4163] = { + ["coords"] = { + [1] = { 24.9, 51.5, 141, 300 }, + [2] = { 37, 21.9, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [4164] = { + ["coords"] = { + [1] = { 29.5, 56.6, 141, 300 }, + [2] = { 59.2, 46.4, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [4165] = { + ["coords"] = { + [1] = { 25.6, 64, 141, 300 }, + [2] = { 40.6, 82.1, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [4166] = { + ["coords"] = { + [1] = { 44.6, 63, 17, 413 }, + [2] = { 44.6, 62.9, 17, 413 }, + [3] = { 44.7, 62.9, 17, 413 }, + [4] = { 44.7, 62.8, 17, 413 }, + [5] = { 44.5, 62.7, 17, 413 }, + [6] = { 48.4, 57.9, 17, 413 }, + [7] = { 48.1, 57.3, 17, 413 }, + [8] = { 47.9, 57.3, 17, 413 }, + [9] = { 48, 57.2, 17, 413 }, + [10] = { 47.9, 57.1, 17, 413 }, + [11] = { 44.6, 47.2, 17, 413 }, + [12] = { 44.5, 47.1, 17, 413 }, + [13] = { 44.6, 47.1, 17, 413 }, + [14] = { 44.5, 47, 17, 413 }, + [15] = { 44.5, 46.8, 17, 413 }, + [16] = { 47.4, 43.3, 17, 413 }, + [17] = { 47.3, 43.3, 17, 413 }, + [18] = { 47.4, 43.2, 17, 413 }, + [19] = { 47.3, 43.2, 17, 413 }, + [20] = { 47.3, 43.1, 17, 413 }, + [21] = { 52.4, 37.9, 17, 413 }, + [22] = { 51.1, 32.4, 17, 413 }, + [23] = { 51.1, 32.3, 17, 413 }, + [24] = { 51, 32.3, 17, 413 }, + [25] = { 51, 32.2, 17, 413 }, + [26] = { 45.6, 31.3, 17, 413 }, + [27] = { 45.7, 31.1, 17, 413 }, + [28] = { 45.8, 31.1, 17, 413 }, + [29] = { 45.8, 31, 17, 413 }, + [30] = { 45.4, 14.5, 17, 413 }, + [31] = { 45.5, 14.4, 17, 413 }, + [32] = { 45.4, 14.3, 17, 413 }, + [33] = { 45.5, 14.2, 17, 413 }, + }, + ["lvl"] = "3", + }, + [4167] = { + ["coords"] = { + [1] = { 24.2, 50.2, 141, 300 }, + [2] = { 33.6, 15.9, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [4168] = { + ["coords"] = { + [1] = { 30.6, 51.4, 141, 300 }, + [2] = { 64.6, 21.6, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [4169] = { + ["coords"] = { + [1] = { 30.6, 61.8, 141, 300 }, + [2] = { 64.5, 71.7, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [4170] = { + ["coords"] = { + [1] = { 30.7, 58, 141, 300 }, + [2] = { 64.7, 53, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [4171] = { + ["coords"] = { + [1] = { 30.8, 59.4, 141, 300 }, + [2] = { 65.4, 59.7, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [4172] = { + ["coords"] = { + [1] = { 28.8, 65.6, 141, 300 }, + [2] = { 55.7, 90, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [4173] = { + ["coords"] = { + [1] = { 30.4, 60.7, 141, 300 }, + [2] = { 63.3, 66.3, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [4174] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [4175] = { + ["coords"] = { + [1] = { 29.8, 62, 141, 300 }, + [2] = { 60.7, 72.5, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [4176] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "30", + }, + [4177] = { + ["coords"] = { + [1] = { 29.1, 62.9, 141, 300 }, + [2] = { 57.1, 77, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [4178] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "30", + }, + [4179] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "30", + }, + [4180] = { + ["coords"] = { + [1] = { 29.8, 61.9, 141, 300 }, + [2] = { 60.6, 72.1, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [4181] = { + ["coords"] = { + [1] = { 31.6, 56.3, 141, 300 }, + [2] = { 69.4, 45, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [4182] = { + ["coords"] = { + [1] = { 37.4, 40.5, 148, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "17", + }, + [4183] = { + ["coords"] = { + [1] = { 37.6, 40.3, 148, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [4184] = { + ["coords"] = { + [1] = { 52, 32.9, 493, 300 }, + }, + ["lvl"] = "51", + }, + [4185] = { + ["coords"] = { + [1] = { 38.2, 40.4, 148, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [4186] = { + ["coords"] = { + [1] = { 37, 41.2, 148, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "18", + }, + [4187] = { + ["coords"] = { + [1] = { 37, 41.3, 148, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [4188] = { + ["coords"] = { + [1] = { 35.4, 7, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [4189] = { + ["coords"] = { + [1] = { 38.2, 40.6, 148, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "14", + }, + [4190] = { + ["coords"] = { + [1] = { 36.9, 44.6, 148, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "13", + }, + [4191] = { + ["coords"] = { + [1] = { 37.1, 43.6, 148, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [4192] = { + ["coords"] = { + [1] = { 36.8, 43.9, 148, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "16", + }, + [4193] = { + ["coords"] = { + [1] = { 38.2, 40.5, 148, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "29", + }, + [4194] = { + ["coords"] = { + [1] = { 43.8, 76.4, 148, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [4195] = { + ["coords"] = { + [1] = { 43.7, 76.6, 148, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [4196] = { + ["coords"] = {}, + ["lvl"] = "21-22", + }, + [4197] = { + ["coords"] = { + [1] = { 73.2, 95.1, 406, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [4198] = { + ["coords"] = { + [1] = { 45.9, 60.4, 406, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [4200] = { + ["coords"] = { + [1] = { 36.8, 44.3, 148, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "14", + }, + [4201] = { + ["coords"] = { + [1] = { 59, 62.6, 406, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "20", + }, + [4202] = { + ["coords"] = { + [1] = { 64.5, 40.3, 406, 300 }, + [2] = { 62.7, 40.2, 406, 300 }, + }, + ["lvl"] = "27", + }, + [4203] = { + ["coords"] = { + [1] = { 29.4, 56.2, 141, 300 }, + [2] = { 58.8, 44.5, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [4204] = { + ["coords"] = { + [1] = { 27.2, 61.1, 141, 300 }, + [2] = { 47.9, 68, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [4205] = { + ["coords"] = { + [1] = { 26, 48.4, 141, 300 }, + [2] = { 42.2, 7.3, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [4206] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "35", + }, + [4207] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "35", + }, + [4208] = { + ["coords"] = { + [1] = { 25.5, 55.6, 141, 300 }, + [2] = { 39.7, 41.5, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [4209] = { + ["coords"] = { + [1] = { 25.4, 55.7, 141, 300 }, + [2] = { 39.6, 42, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [4210] = { + ["coords"] = { + [1] = { 27.4, 51.4, 141, 300 }, + [2] = { 49, 21.2, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [4211] = { + ["coords"] = { + [1] = { 28, 49.5, 141, 300 }, + [2] = { 51.7, 12.2, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [4212] = { + ["coords"] = { + [1] = { 30.6, 51.4, 141, 300 }, + [2] = { 64.4, 21.5, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "46", + }, + [4213] = { + ["coords"] = { + [1] = { 29.3, 49.7, 141, 300 }, + [2] = { 58.4, 13.1, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [4214] = { + ["coords"] = { + [1] = { 24.4, 52.3, 141, 300 }, + [2] = { 34.5, 25.9, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [4215] = { + ["coords"] = { + [1] = { 25.1, 51.3, 141, 300 }, + [2] = { 37.9, 20.9, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [4216] = { + ["coords"] = { + [1] = { 27.3, 61.3, 141, 300 }, + [2] = { 48.5, 69, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [4217] = { + ["coords"] = { + [1] = { 24.6, 48.7, 141, 300 }, + [2] = { 35.4, 8.4, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [4218] = { + ["coords"] = { + [1] = { 24.4, 48.5, 141, 300 }, + [2] = { 34.8, 7.4, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [4219] = { + ["coords"] = { + [1] = { 24.2, 48.7, 141, 300 }, + [2] = { 33.5, 8.3, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [4220] = { + ["coords"] = { + [1] = { 24.2, 48.9, 141, 300 }, + [2] = { 33.8, 9.5, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [4221] = { + ["coords"] = { + [1] = { 27.1, 58.9, 141, 300 }, + [2] = { 47.5, 57.4, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [4222] = { + ["coords"] = { + [1] = { 27, 58.8, 141, 300 }, + [2] = { 46.9, 57, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [4223] = { + ["coords"] = { + [1] = { 27.3, 51.4, 141, 300 }, + [2] = { 48.5, 21.6, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [4224] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [4225] = { + ["coords"] = { + [1] = { 30.4, 51.6, 141, 300 }, + [2] = { 63.7, 22.3, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [4226] = { + ["coords"] = { + [1] = { 28.8, 52, 141, 300 }, + [2] = { 55.8, 24.5, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [4228] = { + ["coords"] = { + [1] = { 29.4, 50, 141, 300 }, + [2] = { 58.6, 14.7, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [4229] = { + ["coords"] = { + [1] = { 29.9, 50.6, 141, 300 }, + [2] = { 61, 17.7, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [4230] = { + ["coords"] = { + [1] = { 30.8, 58, 141, 300 }, + [2] = { 65.3, 53, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [4231] = { + ["coords"] = { + [1] = { 30.7, 59.5, 141, 300 }, + [2] = { 65, 60.2, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [4232] = { + ["coords"] = { + [1] = { 30.6, 59.2, 141, 300 }, + [2] = { 64.2, 59.1, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [4233] = { + ["coords"] = { + [1] = { 30.8, 59.6, 141, 300 }, + [2] = { 65.2, 60.7, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [4234] = { + ["coords"] = { + [1] = { 28.9, 65.4, 141, 300 }, + [2] = { 56.1, 88.9, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [4235] = { + ["coords"] = { + [1] = { 30.2, 60.6, 141, 300 }, + [2] = { 62.7, 65.6, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [4236] = { + ["coords"] = { + [1] = { 28.2, 63.7, 141, 300 }, + [2] = { 52.9, 80.5, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [4237] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "30", + }, + [4239] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "30", + }, + [4240] = { + ["coords"] = { + [1] = { 29, 62.8, 141, 300 }, + [2] = { 56.9, 76.3, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [4241] = { + ["coords"] = { + [1] = { 31.9, 56.4, 141, 300 }, + [2] = { 70.7, 45.4, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [4242] = { + ["coords"] = { + [1] = { 22.8, 47.1, 141, 300 }, + [2] = { 28.3, 45.9, 141, 300 }, + [3] = { 25.1, 45.5, 141, 300 }, + [4] = { 27.1, 0.9, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [4243] = { + ["coords"] = { + [1] = { 25.5, 48.1, 141, 300 }, + [2] = { 39.9, 5.4, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [4244] = { + ["coords"] = { + [1] = { 26, 48.5, 141, 300 }, + [2] = { 42.5, 7.3, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [4245] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "25", + }, + [4246] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "25", + }, + [4247] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "25", + }, + [4248] = { + ["coords"] = { + [1] = { 46.8, 97.2, 17, 300 }, + [2] = { 42.4, 95.7, 17, 300 }, + [3] = { 46, 95.6, 17, 300 }, + [4] = { 45.3, 95.4, 17, 300 }, + [5] = { 46, 95.2, 17, 300 }, + [6] = { 41.2, 95.2, 17, 300 }, + [7] = { 42.2, 95, 17, 300 }, + [8] = { 41.7, 94.6, 17, 300 }, + [9] = { 40.7, 94.4, 17, 300 }, + [10] = { 42.1, 94.4, 17, 300 }, + [11] = { 41.6, 94.3, 17, 300 }, + [12] = { 40.6, 93.9, 17, 300 }, + [13] = { 41.1, 57.7, 400, 300 }, + [14] = { 49.2, 57.6, 400, 300 }, + [15] = { 40, 55.8, 400, 300 }, + [16] = { 35.8, 54.9, 400, 300 }, + [17] = { 47.5, 54.6, 400, 300 }, + [18] = { 48.7, 54, 400, 300 }, + [19] = { 33.8, 52.8, 400, 300 }, + [20] = { 38, 52.7, 400, 300 }, + [21] = { 31.8, 52.2, 400, 300 }, + [22] = { 34.9, 51.7, 400, 300 }, + [23] = { 32.9, 51.6, 400, 300 }, + [24] = { 29.8, 51.4, 400, 300 }, + [25] = { 37.2, 51, 400, 300 }, + [26] = { 32.2, 50.7, 400, 300 }, + [27] = { 35.5, 50.7, 400, 300 }, + [28] = { 37.2, 50.1, 400, 300 }, + [29] = { 36.1, 49.5, 400, 300 }, + [30] = { 31.9, 49.4, 400, 300 }, + [31] = { 31.6, 47.1, 400, 300 }, + [32] = { 37, 46.9, 400, 300 }, + [33] = { 25.2, 46.9, 400, 300 }, + [34] = { 35.3, 46.2, 400, 300 }, + [35] = { 24.5, 44.9, 400, 300 }, + [36] = { 27.8, 44.7, 400, 300 }, + [37] = { 24.4, 43.7, 400, 300 }, + [38] = { 22.8, 42.5, 400, 300 }, + [39] = { 28.2, 41.8, 400, 300 }, + [40] = { 21.4, 40.6, 400, 300 }, + [41] = { 28.7, 40, 400, 300 }, + [42] = { 27.2, 40, 400, 300 }, + [43] = { 22.2, 38.2, 400, 300 }, + [44] = { 22.9, 37.8, 400, 300 }, + [45] = { 25.2, 37.4, 400, 300 }, + [46] = { 38.3, 33.7, 400, 300 }, + [47] = { 25.3, 32.5, 400, 300 }, + [48] = { 28.1, 30.3, 400, 300 }, + [49] = { 36.4, 30, 400, 300 }, + [50] = { 35, 29.6, 400, 300 }, + [51] = { 36.4, 29.1, 400, 300 }, + [52] = { 25.3, 29, 400, 300 }, + [53] = { 27.8, 28.6, 400, 300 }, + [54] = { 26.6, 27.7, 400, 300 }, + [55] = { 24.3, 27.3, 400, 300 }, + [56] = { 27.6, 27.3, 400, 300 }, + [57] = { 26.4, 27, 400, 300 }, + [58] = { 24.1, 26.1, 400, 300 }, + }, + ["lvl"] = "26-27", + }, + [4249] = { + ["coords"] = { + [1] = { 37.9, 91.3, 17, 300 }, + [2] = { 37.8, 91.2, 17, 300 }, + [3] = { 35.8, 87.4, 17, 300 }, + [4] = { 92, 48.1, 357, 300 }, + [5] = { 92.2, 44.7, 357, 300 }, + [6] = { 90.9, 44.5, 357, 300 }, + [7] = { 92.3, 44.2, 357, 300 }, + [8] = { 93.4, 43.7, 357, 300 }, + [9] = { 93, 42.9, 357, 300 }, + [10] = { 92.7, 41.5, 357, 300 }, + [11] = { 90.6, 40.4, 357, 300 }, + [12] = { 66.3, 62.1, 400, 300 }, + [13] = { 68.3, 61.9, 400, 300 }, + [14] = { 64.2, 60.6, 400, 300 }, + [15] = { 62.2, 60.3, 400, 300 }, + [16] = { 58.8, 57.8, 400, 300 }, + [17] = { 67.9, 57.5, 400, 300 }, + [18] = { 60.2, 57.4, 400, 300 }, + [19] = { 63.8, 56.5, 400, 300 }, + [20] = { 60.4, 55.5, 400, 300 }, + [21] = { 53.9, 54.7, 400, 300 }, + [22] = { 59.6, 53.7, 400, 300 }, + [23] = { 64.8, 52.8, 400, 300 }, + [24] = { 65.3, 51.3, 400, 300 }, + [25] = { 67.5, 51.1, 400, 300 }, + [26] = { 66.6, 50.8, 400, 300 }, + [27] = { 64, 50.5, 400, 300 }, + [28] = { 65.8, 49.9, 400, 300 }, + [29] = { 58.7, 49.2, 400, 300 }, + [30] = { 64.9, 48.7, 400, 300 }, + [31] = { 53.2, 46.7, 400, 300 }, + [32] = { 63, 45.9, 400, 300 }, + [33] = { 21.7, 34.2, 400, 300 }, + [34] = { 18.8, 33.9, 400, 300 }, + [35] = { 20.1, 33.3, 400, 300 }, + [36] = { 15.7, 30.8, 400, 300 }, + [37] = { 12.2, 25.8, 400, 300 }, + [38] = { 11.8, 21.5, 400, 300 }, + [39] = { 17.9, 20, 400, 300 }, + [40] = { 17.7, 19.9, 400, 300 }, + [41] = { 12.2, 16, 400, 300 }, + [42] = { 10.1, 15.7, 400, 300 }, + [43] = { 12.2, 15.3, 400, 300 }, + [44] = { 14, 14.4, 400, 300 }, + [45] = { 13.3, 13.1, 400, 300 }, + [46] = { 12.9, 11, 400, 300 }, + [47] = { 9.6, 9.3, 400, 300 }, + }, + ["lvl"] = "28-29", + }, + [4250] = { + ["coords"] = { + [1] = { 25.1, 37.2, 400, 18000 }, + }, + ["lvl"] = "24", + }, + [4251] = { + ["coords"] = { + [1] = { 79.7, 77, 400, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "32", + }, + [4252] = { + ["coords"] = { + [1] = { 77.6, 76.6, 400, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "32", + }, + [4253] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [4254] = { + ["coords"] = { + [1] = { 50, 26.3, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [4255] = { + ["coords"] = { + [1] = { 43, 17.6, 2597, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [4256] = { + ["coords"] = { + [1] = { 51.5, 26.3, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [4257] = { + ["coords"] = { + [1] = { 43.4, 15.6, 2597, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [4258] = { + ["coords"] = { + [1] = { 52.5, 41.5, 1537, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [4259] = { + ["coords"] = { + [1] = { 51.7, 42.8, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [4260] = { + ["coords"] = { + [1] = { 44, 22.8, 33, 300 }, + [2] = { 45.8, 21.8, 33, 300 }, + }, + ["lvl"] = "37", + }, + [4261] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [4262] = { + ["coords"] = { + [1] = { 58.2, 94.1, 141, 300 }, + [2] = { 58.2, 93.9, 141, 300 }, + [3] = { 58.2, 93.7, 141, 300 }, + [4] = { 55.3, 92.6, 141, 300 }, + [5] = { 56.2, 92.2, 141, 300 }, + [6] = { 56, 89.9, 141, 300 }, + [7] = { 55.8, 89.8, 141, 300 }, + [8] = { 56, 89.7, 141, 300 }, + [9] = { 56.2, 89.3, 141, 300 }, + [10] = { 55.7, 89.1, 141, 300 }, + [11] = { 25.7, 66, 141, 300 }, + [12] = { 25.5, 66, 141, 300 }, + [13] = { 25.6, 66, 141, 300 }, + [14] = { 25.6, 65.9, 141, 300 }, + [15] = { 24.5, 65.2, 141, 300 }, + [16] = { 26.2, 65.1, 141, 300 }, + [17] = { 24.5, 64.4, 141, 300 }, + [18] = { 26.2, 64.4, 141, 300 }, + [19] = { 24, 64.2, 141, 300 }, + [20] = { 26.7, 64.1, 141, 300 }, + [21] = { 25.2, 63.8, 141, 300 }, + [22] = { 25.5, 63.8, 141, 300 }, + [23] = { 25.1, 63.6, 141, 300 }, + [24] = { 25.6, 63.6, 141, 300 }, + [25] = { 25.2, 62.8, 141, 300 }, + [26] = { 25.5, 62.8, 141, 300 }, + [27] = { 30.2, 56.8, 141, 300 }, + [28] = { 30, 56.8, 141, 300 }, + [29] = { 25.7, 56, 141, 300 }, + [30] = { 25.8, 55.8, 141, 300 }, + [31] = { 23.6, 55.7, 141, 300 }, + [32] = { 30.3, 55.5, 141, 300 }, + [33] = { 23.5, 55.4, 141, 300 }, + [34] = { 30.3, 55.2, 141, 300 }, + [35] = { 36.1, 54.5, 141, 300 }, + [36] = { 36.1, 54.2, 141, 300 }, + [37] = { 30.1, 53.9, 141, 300 }, + [38] = { 30, 53.9, 141, 300 }, + [39] = { 40.7, 91.9, 1657, 300 }, + [40] = { 39.9, 91.8, 1657, 300 }, + [41] = { 40.5, 91.6, 1657, 300 }, + [42] = { 40.3, 91.2, 1657, 300 }, + [43] = { 35.3, 87.9, 1657, 300 }, + [44] = { 43.2, 87.4, 1657, 300 }, + [45] = { 35.2, 84.2, 1657, 300 }, + [46] = { 43.2, 83.8, 1657, 300 }, + [47] = { 32.7, 83, 1657, 300 }, + [48] = { 45.7, 82.5, 1657, 300 }, + [49] = { 38.2, 81.3, 1657, 300 }, + [50] = { 40, 81.2, 1657, 300 }, + [51] = { 37.9, 80.1, 1657, 300 }, + [52] = { 40.2, 80, 1657, 300 }, + [53] = { 38.4, 76.2, 1657, 300 }, + [54] = { 39.7, 76.1, 1657, 300 }, + [55] = { 62.5, 47.6, 1657, 300 }, + [56] = { 61.6, 47.5, 1657, 300 }, + [57] = { 41.1, 43.5, 1657, 300 }, + [58] = { 41.2, 42.6, 1657, 300 }, + [59] = { 30.5, 42, 1657, 300 }, + [60] = { 62.9, 41.2, 1657, 300 }, + [61] = { 30.5, 40.7, 1657, 300 }, + [62] = { 62.9, 39.9, 1657, 300 }, + [63] = { 90.7, 36.6, 1657, 300 }, + [64] = { 90.8, 34.9, 1657, 300 }, + [65] = { 62.3, 33.6, 1657, 300 }, + [66] = { 61.3, 33.6, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [4263] = { + ["coords"] = {}, + ["lvl"] = "14", + }, + [4264] = { + ["coords"] = {}, + ["lvl"] = "22", + }, + [4265] = { + ["coords"] = { + [1] = { 57.2, 61.3, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [4266] = { + ["coords"] = { + [1] = { 55.4, 57.2, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "17", + }, + [4267] = { + ["coords"] = { + [1] = { 34.4, 48, 331, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [4268] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [4269] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [4270] = { + ["coords"] = { + [1] = { 69, 12, 1637, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [4271] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [4272] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [4273] = { + ["coords"] = { + [1] = { 62.1, 51.4, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "29", + }, + [4274] = { + ["coords"] = {}, + ["lvl"] = "25", + ["rnk"] = "1", + }, + [4275] = { + ["coords"] = {}, + ["lvl"] = "26", + ["rnk"] = "1", + }, + [4276] = { + ["coords"] = { + [1] = { 71.9, 60, 406, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "20", + }, + [4277] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "22", + }, + [4278] = { + ["coords"] = {}, + ["lvl"] = "24", + ["rnk"] = "1", + }, + [4279] = { + ["coords"] = {}, + ["lvl"] = "24", + ["rnk"] = "1", + }, + [4280] = { + ["coords"] = { + [1] = { 27.9, 22.3, 28, 300 }, + [2] = { 28.2, 21.4, 28, 300 }, + [3] = { 30.4, 21, 28, 300 }, + [4] = { 27.8, 20.5, 28, 300 }, + [5] = { 29.2, 20.2, 28, 300 }, + [6] = { 83, 37.3, 85, 300 }, + [7] = { 82.3, 37.2, 85, 300 }, + [8] = { 84.5, 36.9, 85, 300 }, + [9] = { 83.8, 36.8, 85, 300 }, + [10] = { 82.2, 36.1, 85, 300 }, + [11] = { 84.8, 36, 85, 300 }, + [12] = { 83.8, 35.7, 85, 300 }, + [13] = { 86.9, 35.6, 85, 300 }, + [14] = { 82.3, 35.1, 85, 300 }, + [15] = { 84.4, 35.1, 85, 300 }, + [16] = { 83.7, 35, 85, 300 }, + [17] = { 85.7, 34.8, 85, 300 }, + [18] = { 84.4, 34.6, 85, 300 }, + [19] = { 84.5, 34, 85, 300 }, + [20] = { 82.2, 33.9, 85, 300 }, + [21] = { 83.7, 33.8, 85, 300 }, + [22] = { 81.4, 33.7, 85, 300 }, + [23] = { 82.9, 33.5, 85, 300 }, + [24] = { 81.6, 32.4, 85, 300 }, + [25] = { 82.1, 31.7, 85, 300 }, + [26] = { 82.8, 30.7, 85, 300 }, + [27] = { 83.9, 30.7, 85, 300 }, + [28] = { 81.5, 30.3, 85, 300 }, + [29] = { 84, 30.2, 85, 300 }, + [30] = { 81.5, 29.5, 85, 300 }, + [31] = { 82.2, 29.5, 85, 300 }, + [32] = { 81.1, 29.5, 85, 300 }, + [33] = { 83.7, 29.4, 85, 300 }, + [34] = { 80.9, 29.4, 85, 300 }, + [35] = { 83.1, 29.3, 85, 300 }, + [36] = { 83.7, 28.6, 85, 300 }, + [37] = { 82.9, 28.5, 85, 300 }, + }, + ["lvl"] = "29-30", + ["rnk"] = "1", + }, + [4281] = { + ["coords"] = { + [1] = { 27.9, 22.3, 28, 300 }, + [2] = { 28.2, 21.4, 28, 300 }, + [3] = { 30.4, 21, 28, 300 }, + [4] = { 27.8, 20.5, 28, 300 }, + [5] = { 29.2, 20.2, 28, 300 }, + [6] = { 83, 37.3, 85, 300 }, + [7] = { 82.3, 37.2, 85, 300 }, + [8] = { 84.5, 36.9, 85, 300 }, + [9] = { 83.8, 36.8, 85, 300 }, + [10] = { 82.2, 36.1, 85, 300 }, + [11] = { 84.8, 36, 85, 300 }, + [12] = { 83.8, 35.7, 85, 300 }, + [13] = { 86.9, 35.6, 85, 300 }, + [14] = { 82.3, 35.1, 85, 300 }, + [15] = { 84.4, 35.1, 85, 300 }, + [16] = { 83.7, 35, 85, 300 }, + [17] = { 85.7, 34.8, 85, 300 }, + [18] = { 84.4, 34.6, 85, 300 }, + [19] = { 84.5, 34, 85, 300 }, + [20] = { 82.2, 33.9, 85, 300 }, + [21] = { 83.7, 33.8, 85, 300 }, + [22] = { 81.4, 33.7, 85, 300 }, + [23] = { 82.9, 33.5, 85, 300 }, + [24] = { 81.6, 32.4, 85, 300 }, + [25] = { 82.1, 31.7, 85, 300 }, + [26] = { 82.8, 30.7, 85, 300 }, + [27] = { 83.9, 30.7, 85, 300 }, + [28] = { 81.5, 30.3, 85, 300 }, + [29] = { 84, 30.2, 85, 300 }, + [30] = { 81.5, 29.5, 85, 300 }, + [31] = { 82.2, 29.5, 85, 300 }, + [32] = { 81.1, 29.5, 85, 300 }, + [33] = { 83.7, 29.4, 85, 300 }, + [34] = { 80.9, 29.4, 85, 300 }, + [35] = { 83.1, 29.3, 85, 300 }, + [36] = { 83.7, 28.6, 85, 300 }, + [37] = { 82.9, 28.5, 85, 300 }, + }, + ["lvl"] = "29-30", + ["rnk"] = "1", + }, + [4282] = { + ["coords"] = { + [1] = { 27.9, 22.3, 28, 300 }, + [2] = { 28.2, 21.4, 28, 300 }, + [3] = { 30.4, 21, 28, 300 }, + [4] = { 27.8, 20.5, 28, 300 }, + [5] = { 29.2, 20.2, 28, 300 }, + [6] = { 83, 37.3, 85, 300 }, + [7] = { 82.3, 37.2, 85, 300 }, + [8] = { 84.5, 36.9, 85, 300 }, + [9] = { 83.8, 36.8, 85, 300 }, + [10] = { 82.2, 36.1, 85, 300 }, + [11] = { 84.8, 36, 85, 300 }, + [12] = { 83.8, 35.7, 85, 300 }, + [13] = { 86.9, 35.6, 85, 300 }, + [14] = { 82.3, 35.1, 85, 300 }, + [15] = { 84.4, 35.1, 85, 300 }, + [16] = { 83.7, 35, 85, 300 }, + [17] = { 85.7, 34.8, 85, 300 }, + [18] = { 84.4, 34.6, 85, 300 }, + [19] = { 84.5, 34, 85, 300 }, + [20] = { 82.2, 33.9, 85, 300 }, + [21] = { 83.7, 33.8, 85, 300 }, + [22] = { 81.4, 33.7, 85, 300 }, + [23] = { 82.9, 33.5, 85, 300 }, + [24] = { 81.6, 32.4, 85, 300 }, + [25] = { 82.1, 31.7, 85, 300 }, + [26] = { 82.8, 30.7, 85, 300 }, + [27] = { 83.9, 30.7, 85, 300 }, + [28] = { 81.5, 30.3, 85, 300 }, + [29] = { 84, 30.2, 85, 300 }, + [30] = { 81.5, 29.5, 85, 300 }, + [31] = { 82.2, 29.5, 85, 300 }, + [32] = { 81.1, 29.5, 85, 300 }, + [33] = { 83.7, 29.4, 85, 300 }, + [34] = { 80.9, 29.4, 85, 300 }, + [35] = { 83.1, 29.3, 85, 300 }, + [36] = { 83.7, 28.6, 85, 300 }, + [37] = { 82.9, 28.5, 85, 300 }, + }, + ["lvl"] = "29-30", + ["rnk"] = "1", + }, + [4283] = { + ["coords"] = { + [1] = { 84.3, 32.7, 85, 300 }, + [2] = { 84.8, 32.4, 85, 300 }, + [3] = { 84.5, 32.1, 85, 300 }, + [4] = { 84, 31.6, 85, 300 }, + [5] = { 83.9, 31.3, 85, 300 }, + }, + ["lvl"] = "30-31", + ["rnk"] = "1", + }, + [4284] = { + ["coords"] = { + [1] = { 83.9, 32.7, 85, 300 }, + [2] = { 83.6, 31.8, 85, 300 }, + }, + ["lvl"] = "30-31", + ["rnk"] = "1", + }, + [4285] = { + ["coords"] = { + [1] = { 28.5, 16.5, 28, 300 }, + [2] = { 83.8, 32.5, 85, 300 }, + [3] = { 83.6, 31.9, 85, 300 }, + [4] = { 85, 31.3, 85, 300 }, + }, + ["lvl"] = "30-31", + ["rnk"] = "1", + }, + [4286] = { + ["coords"] = {}, + ["lvl"] = "35-36", + ["rnk"] = "1", + }, + [4287] = { + ["coords"] = {}, + ["lvl"] = "33-34", + ["rnk"] = "1", + }, + [4288] = { + ["coords"] = {}, + ["lvl"] = "34-35", + ["rnk"] = "1", + }, + [4289] = { + ["coords"] = {}, + ["lvl"] = "36-37", + ["rnk"] = "1", + }, + [4290] = { + ["coords"] = {}, + ["lvl"] = "36-37", + ["rnk"] = "1", + }, + [4291] = { + ["coords"] = {}, + ["lvl"] = "34-35", + ["rnk"] = "1", + }, + [4292] = { + ["coords"] = {}, + ["lvl"] = "36-37", + ["rnk"] = "1", + }, + [4293] = { + ["coords"] = {}, + ["lvl"] = "30-31", + ["rnk"] = "1", + }, + [4294] = { + ["coords"] = {}, + ["lvl"] = "37-38", + ["rnk"] = "1", + }, + [4295] = { + ["coords"] = {}, + ["lvl"] = "37-38", + ["rnk"] = "1", + }, + [4296] = { + ["coords"] = {}, + ["lvl"] = "33-34", + ["rnk"] = "1", + }, + [4297] = { + ["coords"] = {}, + ["lvl"] = "35-36", + ["rnk"] = "1", + }, + [4298] = { + ["coords"] = {}, + ["lvl"] = "37-38", + ["rnk"] = "1", + }, + [4299] = { + ["coords"] = {}, + ["lvl"] = "34-36", + ["rnk"] = "1", + }, + [4300] = { + ["coords"] = {}, + ["lvl"] = "38-39", + ["rnk"] = "1", + }, + [4301] = { + ["coords"] = {}, + ["lvl"] = "38-39", + ["rnk"] = "1", + }, + [4302] = { + ["coords"] = {}, + ["lvl"] = "39-40", + ["rnk"] = "1", + }, + [4303] = { + ["coords"] = {}, + ["lvl"] = "39-40", + ["rnk"] = "1", + }, + [4304] = { + ["coords"] = {}, + ["lvl"] = "33-34", + ["rnk"] = "1", + }, + [4305] = { + ["coords"] = { + [1] = { 36.2, 90.2, 40, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [4306] = { + ["coords"] = {}, + ["lvl"] = "30-31", + ["rnk"] = "1", + }, + [4307] = { + ["coords"] = { + [1] = { 37, 56.4, 148, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [4308] = { + ["coords"] = {}, + ["lvl"] = "31-32", + }, + [4309] = { + ["coords"] = { + [1] = { 44.1, 23, 215, 250 }, + [2] = { 70.5, 30.3, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "62", + }, + [4310] = { + ["coords"] = { + [1] = { 44.2, 23.1, 215, 250 }, + [2] = { 70.6, 31, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "62", + }, + [4311] = { + ["coords"] = { + [1] = { 46, 12.9, 14, 300 }, + [2] = { 51, 98.5, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [4312] = { + ["coords"] = { + [1] = { 45.1, 59.8, 406, 600 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [4313] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "27", + }, + [4314] = { + ["coords"] = { + [1] = { 81.7, 81.8, 47, 600 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [4315] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "26", + }, + [4316] = { + ["coords"] = { + [1] = { 55.3, 46.5, 17, 413 }, + [2] = { 55.6, 45.8, 17, 413 }, + [3] = { 52.4, 44.9, 17, 413 }, + [4] = { 52.7, 44.8, 17, 413 }, + [5] = { 57, 42.9, 17, 413 }, + [6] = { 54.1, 42.8, 17, 413 }, + [7] = { 53.6, 42, 17, 413 }, + [8] = { 48.7, 41.6, 17, 413 }, + [9] = { 48.7, 41.5, 17, 413 }, + [10] = { 53.3, 40.9, 17, 413 }, + [11] = { 56.8, 40.6, 17, 413 }, + [12] = { 52.8, 38.9, 17, 413 }, + [13] = { 47.7, 37.3, 17, 413 }, + }, + ["lvl"] = "13", + }, + [4317] = { + ["coords"] = { + [1] = { 45.1, 49.1, 400, 600 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [4318] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "45", + }, + [4319] = { + ["coords"] = { + [1] = { 89.5, 45.9, 357, 600 }, + [2] = { 7.8, 17.9, 400, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [4320] = { + ["coords"] = { + [1] = { 49.7, 67, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [4321] = { + ["coords"] = { + [1] = { 67.5, 51.3, 15, 1200 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [4322] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [4323] = { + ["coords"] = { + [1] = { 45.9, 84.5, 15, 360 }, + [2] = { 46.7, 84.5, 15, 360 }, + [3] = { 45.6, 83.8, 15, 360 }, + [4] = { 46.3, 83.6, 15, 360 }, + [5] = { 47.1, 82.4, 15, 360 }, + [6] = { 46.2, 81.8, 15, 360 }, + [7] = { 44.3, 81.7, 15, 360 }, + [8] = { 46.6, 81.4, 15, 360 }, + [9] = { 43, 80.9, 15, 360 }, + [10] = { 48.2, 80.8, 15, 360 }, + [11] = { 41.9, 80.8, 15, 360 }, + [12] = { 42.5, 80.7, 15, 360 }, + [13] = { 41.7, 79.5, 15, 360 }, + [14] = { 45.1, 78.7, 15, 360 }, + [15] = { 48.6, 78.6, 15, 360 }, + [16] = { 42.2, 78.3, 15, 360 }, + [17] = { 47.2, 77.9, 15, 360 }, + [18] = { 41.1, 77.6, 15, 360 }, + [19] = { 42.2, 76.5, 15, 360 }, + [20] = { 44.9, 76.3, 15, 360 }, + [21] = { 42.4, 76.3, 15, 360 }, + [22] = { 41.2, 75.9, 15, 360 }, + [23] = { 38.6, 75.9, 15, 360 }, + [24] = { 45.2, 75.8, 15, 360 }, + [25] = { 37.9, 75.4, 15, 360 }, + [26] = { 45, 75.2, 15, 360 }, + [27] = { 42.3, 75.1, 15, 360 }, + [28] = { 39.3, 74.4, 15, 360 }, + [29] = { 37.4, 74.3, 15, 360 }, + [30] = { 51.4, 74.2, 15, 360 }, + [31] = { 39.1, 74.2, 15, 360 }, + [32] = { 41, 74.2, 15, 360 }, + [33] = { 41.8, 74.1, 15, 360 }, + [34] = { 44.2, 74.1, 15, 360 }, + [35] = { 41.1, 73.2, 15, 360 }, + [36] = { 39.7, 73.2, 15, 360 }, + [37] = { 45.5, 73.1, 15, 360 }, + [38] = { 39.5, 73, 15, 360 }, + [39] = { 41.7, 73, 15, 360 }, + [40] = { 54.8, 73, 15, 360 }, + [41] = { 46.9, 72.5, 15, 360 }, + [42] = { 45.8, 72.1, 15, 360 }, + [43] = { 50.2, 72.1, 15, 360 }, + [44] = { 40.6, 71.1, 15, 360 }, + [45] = { 51.6, 71, 15, 360 }, + [46] = { 54.2, 70.4, 15, 360 }, + [47] = { 39.9, 70.4, 15, 360 }, + [48] = { 56.5, 70.3, 15, 360 }, + [49] = { 41.6, 70.2, 15, 360 }, + [50] = { 49, 70.1, 15, 360 }, + [51] = { 52.7, 70.1, 15, 360 }, + [52] = { 47.7, 70, 15, 360 }, + [53] = { 43.6, 70, 15, 360 }, + [54] = { 43, 69.2, 15, 360 }, + [55] = { 50, 69, 15, 360 }, + [56] = { 44.9, 67.5, 15, 360 }, + [57] = { 51.9, 67.5, 15, 360 }, + [58] = { 46, 67.5, 15, 360 }, + [59] = { 49.4, 67.4, 15, 360 }, + [60] = { 47.3, 67.3, 15, 360 }, + [61] = { 48.5, 67, 15, 360 }, + [62] = { 47.5, 66.5, 15, 360 }, + [63] = { 44.1, 66.4, 15, 360 }, + [64] = { 43.7, 66.2, 15, 360 }, + [65] = { 46.7, 65.4, 15, 360 }, + [66] = { 42.1, 65.2, 15, 360 }, + [67] = { 45.8, 65.2, 15, 360 }, + [68] = { 45, 64.5, 15, 360 }, + [69] = { 43.7, 64.4, 15, 360 }, + [70] = { 55.1, 93, 17, 360 }, + [71] = { 54.9, 92.4, 17, 360 }, + }, + ["lvl"] = "41-42", + }, + [4324] = { + ["coords"] = { + [1] = { 55, 84.1, 15, 360 }, + [2] = { 55.7, 83.4, 15, 360 }, + [3] = { 43, 82.1, 15, 360 }, + [4] = { 42.2, 78.9, 15, 360 }, + [5] = { 45.1, 69.7, 15, 360 }, + [6] = { 45.8, 68.4, 15, 360 }, + [7] = { 46.8, 66.5, 15, 360 }, + [8] = { 45.9, 84.5, 15, 360 }, + [9] = { 46.7, 84.5, 15, 360 }, + [10] = { 45.6, 83.8, 15, 360 }, + [11] = { 46.3, 83.6, 15, 360 }, + [12] = { 47.1, 82.4, 15, 360 }, + [13] = { 46.2, 81.8, 15, 360 }, + [14] = { 44.3, 81.7, 15, 360 }, + [15] = { 46.6, 81.4, 15, 360 }, + [16] = { 43, 80.9, 15, 360 }, + [17] = { 48.2, 80.8, 15, 360 }, + [18] = { 41.9, 80.8, 15, 360 }, + [19] = { 42.5, 80.7, 15, 360 }, + [20] = { 41.7, 79.5, 15, 360 }, + [21] = { 48.6, 78.6, 15, 360 }, + [22] = { 42.2, 78.3, 15, 360 }, + [23] = { 47.2, 77.9, 15, 360 }, + [24] = { 41.1, 77.6, 15, 360 }, + [25] = { 42.2, 76.5, 15, 360 }, + [26] = { 44.9, 76.3, 15, 360 }, + [27] = { 42.4, 76.3, 15, 360 }, + [28] = { 41.2, 75.9, 15, 360 }, + [29] = { 38.6, 75.9, 15, 360 }, + [30] = { 45.2, 75.8, 15, 360 }, + [31] = { 37.9, 75.4, 15, 360 }, + [32] = { 45, 75.2, 15, 360 }, + [33] = { 42.3, 75.1, 15, 360 }, + [34] = { 39.3, 74.4, 15, 360 }, + [35] = { 37.4, 74.3, 15, 360 }, + [36] = { 51.4, 74.2, 15, 360 }, + [37] = { 39.1, 74.2, 15, 360 }, + [38] = { 41, 74.2, 15, 360 }, + [39] = { 41.8, 74.1, 15, 360 }, + [40] = { 44.2, 74.1, 15, 360 }, + [41] = { 41.1, 73.2, 15, 360 }, + [42] = { 39.7, 73.2, 15, 360 }, + [43] = { 39.5, 73, 15, 360 }, + [44] = { 41.7, 73, 15, 360 }, + [45] = { 54.8, 73, 15, 360 }, + [46] = { 46.9, 72.5, 15, 360 }, + [47] = { 40.6, 71.1, 15, 360 }, + [48] = { 51.6, 71, 15, 360 }, + [49] = { 54.2, 70.4, 15, 360 }, + [50] = { 39.9, 70.4, 15, 360 }, + [51] = { 56.5, 70.3, 15, 360 }, + [52] = { 41.6, 70.2, 15, 360 }, + [53] = { 49, 70.1, 15, 360 }, + [54] = { 52.7, 70.1, 15, 360 }, + [55] = { 47.7, 70, 15, 360 }, + [56] = { 43, 69.2, 15, 360 }, + [57] = { 44.9, 67.5, 15, 360 }, + [58] = { 51.9, 67.5, 15, 360 }, + [59] = { 49.4, 67.4, 15, 360 }, + [60] = { 48.5, 67, 15, 360 }, + [61] = { 47.5, 66.5, 15, 360 }, + [62] = { 43.7, 66.2, 15, 360 }, + [63] = { 42.1, 65.2, 15, 360 }, + [64] = { 45.8, 65.2, 15, 360 }, + [65] = { 45, 64.5, 15, 360 }, + [66] = { 55.1, 93, 17, 360 }, + [67] = { 54.9, 92.4, 17, 360 }, + }, + ["lvl"] = "42-43", + ["rnk"] = "1", + }, + [4328] = { + ["coords"] = { + [1] = { 52.2, 84.4, 15, 360 }, + [2] = { 52.6, 84.2, 15, 360 }, + [3] = { 52.1, 83.5, 15, 360 }, + [4] = { 52.4, 83.4, 15, 360 }, + [5] = { 54.7, 83.4, 15, 360 }, + [6] = { 50.2, 83.3, 15, 360 }, + [7] = { 53.4, 83.2, 15, 360 }, + [8] = { 55.9, 82.4, 15, 360 }, + [9] = { 54, 82.3, 15, 360 }, + [10] = { 50.9, 82.3, 15, 360 }, + [11] = { 56.3, 82, 15, 360 }, + [12] = { 55.7, 81.8, 15, 360 }, + [13] = { 51.6, 81.5, 15, 360 }, + [14] = { 50.4, 81.4, 15, 360 }, + [15] = { 56, 81.3, 15, 360 }, + [16] = { 56.7, 79.5, 15, 360 }, + [17] = { 57.8, 79.4, 15, 360 }, + [18] = { 51, 78.6, 15, 360 }, + [19] = { 57.3, 78.6, 15, 360 }, + [20] = { 56.7, 77.7, 15, 360 }, + [21] = { 57.8, 77.6, 15, 360 }, + [22] = { 50.9, 76.8, 15, 360 }, + [23] = { 57.4, 76.7, 15, 360 }, + [24] = { 48.7, 76.4, 15, 360 }, + [25] = { 48.2, 76.3, 15, 360 }, + [26] = { 51.5, 75.8, 15, 360 }, + [27] = { 56.9, 75.7, 15, 360 }, + [28] = { 56.5, 75.7, 15, 360 }, + [29] = { 50.9, 75.7, 15, 360 }, + [30] = { 48.8, 75.6, 15, 360 }, + [31] = { 48.1, 75.2, 15, 360 }, + [32] = { 57, 75.1, 15, 360 }, + [33] = { 56.5, 75.1, 15, 360 }, + [34] = { 52.2, 74.8, 15, 360 }, + [35] = { 51.6, 74.8, 15, 360 }, + [36] = { 54.7, 74.8, 15, 360 }, + [37] = { 48.6, 74.6, 15, 360 }, + [38] = { 48.7, 73.9, 15, 360 }, + [39] = { 56.6, 73.8, 15, 360 }, + [40] = { 47.8, 73.3, 15, 360 }, + [41] = { 48.5, 73.2, 15, 360 }, + [42] = { 53.3, 73, 15, 360 }, + [43] = { 54, 72.7, 15, 360 }, + [44] = { 53.4, 72.1, 15, 360 }, + [45] = { 53.9, 72, 15, 360 }, + [46] = { 36.6, 69.7, 15, 360 }, + [47] = { 37.9, 69.5, 15, 360 }, + [48] = { 36.8, 69.2, 15, 360 }, + [49] = { 37.4, 68.5, 15, 360 }, + [50] = { 37.8, 68.2, 15, 360 }, + [51] = { 37.5, 68, 15, 360 }, + [52] = { 37.8, 67.3, 15, 360 }, + [53] = { 37.2, 67.3, 15, 360 }, + [54] = { 38.3, 67.1, 15, 360 }, + [55] = { 54.5, 90, 17, 360 }, + [56] = { 55.1, 90, 17, 360 }, + [57] = { 54.5, 89.8, 17, 360 }, + [58] = { 54.9, 89.4, 17, 360 }, + [59] = { 55.1, 89.3, 17, 360 }, + [60] = { 54.9, 89.2, 17, 360 }, + [61] = { 55.1, 88.8, 17, 360 }, + [62] = { 54.8, 88.8, 17, 360 }, + [63] = { 55.3, 88.7, 17, 360 }, + }, + ["lvl"] = "43-44", + ["rnk"] = "1", + }, + [4329] = { + ["coords"] = { + [1] = { 46.6, 82.7, 15, 360 }, + [2] = { 46.8, 77.6, 15, 360 }, + [3] = { 42.3, 73.2, 15, 360 }, + [4] = { 39.2, 73, 15, 360 }, + [5] = { 43.6, 71.7, 15, 360 }, + [6] = { 55.6, 70.4, 15, 360 }, + [7] = { 44.3, 70, 15, 360 }, + [8] = { 43.2, 69.5, 15, 360 }, + [9] = { 38.4, 68.6, 15, 360 }, + [10] = { 38.3, 68.2, 15, 360 }, + [11] = { 38.6, 67.5, 15, 360 }, + [12] = { 44.6, 67.3, 15, 360 }, + [13] = { 42.2, 67.2, 15, 360 }, + [14] = { 38.9, 67.1, 15, 360 }, + [15] = { 48.2, 67, 15, 360 }, + [16] = { 42.6, 66.6, 15, 360 }, + [17] = { 38.3, 66.4, 15, 360 }, + [18] = { 44.6, 66.4, 15, 360 }, + [19] = { 45.1, 66.2, 15, 360 }, + [20] = { 39.5, 66.1, 15, 360 }, + [21] = { 39, 66.1, 15, 360 }, + [22] = { 43.9, 66.1, 15, 360 }, + [23] = { 43.2, 65.9, 15, 360 }, + [24] = { 45.8, 65.8, 15, 360 }, + [25] = { 44.7, 65.5, 15, 360 }, + [26] = { 38.9, 65.5, 15, 360 }, + [27] = { 39.5, 65.3, 15, 360 }, + [28] = { 45.3, 65.3, 15, 360 }, + [29] = { 40.1, 65.2, 15, 360 }, + [30] = { 43.3, 65.2, 15, 360 }, + [31] = { 38.8, 64.6, 15, 360 }, + [32] = { 39.5, 64.2, 15, 360 }, + [33] = { 55.4, 89.5, 17, 360 }, + [34] = { 55.3, 89.3, 17, 360 }, + [35] = { 55.3, 88.4, 17, 360 }, + }, + ["lvl"] = "41-42", + ["rnk"] = "1", + }, + [4331] = { + ["coords"] = { + [1] = { 46.5, 82.5, 15, 360 }, + [2] = { 46.9, 77.8, 15, 360 }, + [3] = { 42.3, 73.3, 15, 360 }, + [4] = { 39.2, 72.9, 15, 360 }, + [5] = { 43.6, 71.7, 15, 360 }, + [6] = { 55.6, 70.5, 15, 360 }, + [7] = { 44.2, 69.8, 15, 360 }, + [8] = { 43.2, 69.5, 15, 360 }, + [9] = { 38.6, 68.1, 15, 360 }, + [10] = { 42.3, 68, 15, 360 }, + [11] = { 45.3, 67.2, 15, 360 }, + [12] = { 48.1, 66.9, 15, 360 }, + [13] = { 44, 65.3, 15, 360 }, + [14] = { 44.6, 64.7, 15, 360 }, + [15] = { 36.8, 69.2, 15, 360 }, + [16] = { 37.4, 68.5, 15, 360 }, + [17] = { 37.8, 68.2, 15, 360 }, + [18] = { 37.5, 68, 15, 360 }, + [19] = { 37.8, 67.3, 15, 360 }, + [20] = { 44.6, 67.3, 15, 360 }, + [21] = { 42.2, 67.2, 15, 360 }, + [22] = { 38.3, 67.1, 15, 360 }, + [23] = { 38.9, 67.1, 15, 360 }, + [24] = { 44.6, 66.4, 15, 360 }, + [25] = { 45.1, 66.2, 15, 360 }, + [26] = { 39.5, 66.1, 15, 360 }, + [27] = { 39, 66.1, 15, 360 }, + [28] = { 43.9, 66.1, 15, 360 }, + [29] = { 43.2, 65.9, 15, 360 }, + [30] = { 44.7, 65.5, 15, 360 }, + [31] = { 38.9, 65.5, 15, 360 }, + [32] = { 39.5, 65.3, 15, 360 }, + [33] = { 45.3, 65.3, 15, 360 }, + [34] = { 40.1, 65.2, 15, 360 }, + [35] = { 43.3, 65.2, 15, 360 }, + [36] = { 38.8, 64.6, 15, 360 }, + [37] = { 39.5, 64.2, 15, 360 }, + [38] = { 54.5, 89.8, 17, 360 }, + [39] = { 54.9, 89.4, 17, 360 }, + [40] = { 55.1, 89.3, 17, 360 }, + [41] = { 54.9, 89.2, 17, 360 }, + [42] = { 55.1, 88.8, 17, 360 }, + [43] = { 55.3, 88.7, 17, 360 }, + }, + ["lvl"] = "42-43", + ["rnk"] = "1", + }, + [4333] = { + ["coords"] = {}, + ["lvl"] = "38-39", + }, + [4334] = { + ["coords"] = { + [1] = { 50.4, 79.6, 15, 360 }, + [2] = { 50.4, 77.7, 15, 360 }, + [3] = { 52.8, 75.4, 15, 360 }, + [4] = { 52.2, 84.4, 15, 360 }, + [5] = { 52.6, 84.2, 15, 360 }, + [6] = { 52.1, 83.5, 15, 360 }, + [7] = { 52.4, 83.4, 15, 360 }, + [8] = { 54.7, 83.4, 15, 360 }, + [9] = { 50.2, 83.3, 15, 360 }, + [10] = { 53.4, 83.2, 15, 360 }, + [11] = { 55.9, 82.4, 15, 360 }, + [12] = { 54, 82.3, 15, 360 }, + [13] = { 50.9, 82.3, 15, 360 }, + [14] = { 56.3, 82, 15, 360 }, + [15] = { 55.7, 81.8, 15, 360 }, + [16] = { 51.6, 81.5, 15, 360 }, + [17] = { 50.4, 81.4, 15, 360 }, + [18] = { 56, 81.3, 15, 360 }, + [19] = { 56.7, 79.5, 15, 360 }, + [20] = { 51, 78.6, 15, 360 }, + [21] = { 57.3, 78.6, 15, 360 }, + [22] = { 56.7, 77.7, 15, 360 }, + [23] = { 57.8, 77.6, 15, 360 }, + [24] = { 50.9, 76.8, 15, 360 }, + [25] = { 57.4, 76.7, 15, 360 }, + [26] = { 48.7, 76.4, 15, 360 }, + [27] = { 48.2, 76.3, 15, 360 }, + [28] = { 51.5, 75.8, 15, 360 }, + [29] = { 56.9, 75.7, 15, 360 }, + [30] = { 56.5, 75.7, 15, 360 }, + [31] = { 50.9, 75.7, 15, 360 }, + [32] = { 48.8, 75.6, 15, 360 }, + [33] = { 48.1, 75.2, 15, 360 }, + [34] = { 57, 75.1, 15, 360 }, + [35] = { 56.5, 75.1, 15, 360 }, + [36] = { 52.2, 74.8, 15, 360 }, + [37] = { 51.6, 74.8, 15, 360 }, + [38] = { 54.7, 74.8, 15, 360 }, + [39] = { 48.6, 74.6, 15, 360 }, + [40] = { 48.7, 73.9, 15, 360 }, + [41] = { 56.6, 73.8, 15, 360 }, + [42] = { 48.5, 73.2, 15, 360 }, + [43] = { 53.3, 73, 15, 360 }, + [44] = { 54, 72.7, 15, 360 }, + [45] = { 53.4, 72.1, 15, 360 }, + [46] = { 53.9, 72, 15, 360 }, + }, + ["lvl"] = "43-44", + ["rnk"] = "1", + }, + [4339] = { + ["coords"] = { + [1] = { 42.1, 75.9, 15, 54000 }, + }, + ["lvl"] = "45", + ["rnk"] = "2", + }, + [4340] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [4341] = { + ["coords"] = { + [1] = { 59.5, 35.1, 15, 360 }, + [2] = { 60, 34.9, 15, 360 }, + [3] = { 59.4, 34.6, 15, 360 }, + [4] = { 59.1, 34.4, 15, 360 }, + [5] = { 53.7, 33.5, 15, 360 }, + [6] = { 54.8, 32.3, 15, 360 }, + [7] = { 58.4, 30.4, 15, 360 }, + [8] = { 52.2, 29.9, 15, 360 }, + [9] = { 53.7, 29.7, 15, 360 }, + [10] = { 38, 29.5, 15, 360 }, + [11] = { 51.6, 29.2, 15, 360 }, + [12] = { 50.3, 29, 15, 360 }, + [13] = { 51.2, 28.7, 15, 360 }, + [14] = { 38.1, 28.5, 15, 360 }, + [15] = { 56.9, 28.5, 15, 360 }, + [16] = { 37, 28.2, 15, 360 }, + [17] = { 50.7, 27.5, 15, 360 }, + [18] = { 36.4, 27.2, 15, 360 }, + [19] = { 40, 27.2, 15, 360 }, + [20] = { 41.2, 26.9, 15, 360 }, + [21] = { 37, 26.3, 15, 360 }, + [22] = { 40.6, 26.3, 15, 360 }, + [23] = { 57.3, 26.2, 15, 360 }, + [24] = { 51.1, 26, 15, 360 }, + [25] = { 35.9, 25.9, 15, 360 }, + [26] = { 54.6, 25.5, 15, 360 }, + [27] = { 40.2, 25.3, 15, 360 }, + [28] = { 37.4, 25.2, 15, 360 }, + [29] = { 58.1, 24.9, 15, 360 }, + [30] = { 37.2, 24.7, 15, 360 }, + [31] = { 53.4, 24.5, 15, 360 }, + [32] = { 57.3, 24.3, 15, 360 }, + [33] = { 41.7, 24.3, 15, 360 }, + [34] = { 53.8, 23.8, 15, 360 }, + [35] = { 51.8, 23.7, 15, 360 }, + [36] = { 38.9, 23.4, 15, 360 }, + [37] = { 41.4, 23.4, 15, 360 }, + [38] = { 53.4, 22.6, 15, 360 }, + [39] = { 37.3, 22.5, 15, 360 }, + [40] = { 38.2, 22.5, 15, 360 }, + [41] = { 49.9, 22.1, 15, 360 }, + [42] = { 49.4, 22, 15, 360 }, + [43] = { 46.2, 21.7, 15, 360 }, + [44] = { 41.4, 21.4, 15, 360 }, + [45] = { 46.4, 21.2, 15, 360 }, + [46] = { 42.4, 21.1, 15, 360 }, + [47] = { 40.2, 21, 15, 360 }, + [48] = { 53.7, 20.7, 15, 360 }, + [49] = { 45.9, 20.5, 15, 360 }, + [50] = { 44.9, 20.5, 15, 360 }, + [51] = { 50.4, 20.4, 15, 360 }, + [52] = { 52.1, 20.3, 15, 360 }, + [53] = { 51.7, 19.9, 15, 360 }, + [54] = { 40.4, 19.8, 15, 360 }, + [55] = { 42.8, 19.4, 15, 360 }, + [56] = { 45, 19.1, 15, 360 }, + [57] = { 37.3, 19, 15, 360 }, + [58] = { 44.3, 18.4, 15, 360 }, + [59] = { 43, 18.1, 15, 360 }, + [60] = { 36.8, 18, 15, 360 }, + [61] = { 38.7, 17.7, 15, 360 }, + [62] = { 36.9, 16.8, 15, 360 }, + [63] = { 43.3, 16.8, 15, 360 }, + [64] = { 51.4, 16.3, 15, 360 }, + [65] = { 42.7, 15.9, 15, 360 }, + [66] = { 41.8, 14.2, 15, 360 }, + [67] = { 37.6, 13.4, 15, 360 }, + [68] = { 55.2, 69.2, 17, 360 }, + [69] = { 55.3, 68.7, 17, 360 }, + [70] = { 54.7, 68.6, 17, 360 }, + [71] = { 54.4, 68.1, 17, 360 }, + [72] = { 54.7, 67.6, 17, 360 }, + [73] = { 54.1, 67.4, 17, 360 }, + [74] = { 54.9, 67, 17, 360 }, + [75] = { 54.8, 66.8, 17, 360 }, + [76] = { 54.8, 65.6, 17, 360 }, + [77] = { 55.3, 65.6, 17, 360 }, + [78] = { 54.8, 63.8, 17, 360 }, + [79] = { 54.6, 63.3, 17, 360 }, + [80] = { 54.6, 62.7, 17, 360 }, + [81] = { 55, 60.9, 17, 360 }, + }, + ["lvl"] = "35-36", + }, + [4342] = { + ["coords"] = { + [1] = { 41.9, 45.5, 15, 360 }, + [2] = { 44.5, 45.2, 15, 360 }, + [3] = { 43.3, 45.1, 15, 360 }, + [4] = { 38, 45.1, 15, 360 }, + [5] = { 34.8, 45, 15, 360 }, + [6] = { 39.3, 44.9, 15, 360 }, + [7] = { 41.1, 44.8, 15, 360 }, + [8] = { 39.9, 44.6, 15, 360 }, + [9] = { 36.1, 44.2, 15, 360 }, + [10] = { 44.1, 43.9, 15, 360 }, + [11] = { 44.5, 43.5, 15, 360 }, + [12] = { 35.8, 43.4, 15, 360 }, + [13] = { 39.3, 43.1, 15, 360 }, + [14] = { 37, 42.8, 15, 360 }, + [15] = { 33.4, 42.6, 15, 360 }, + [16] = { 34.1, 42.3, 15, 360 }, + [17] = { 44.8, 42, 15, 360 }, + [18] = { 38, 42, 15, 360 }, + [19] = { 40.4, 42, 15, 360 }, + [20] = { 41, 41.9, 15, 360 }, + [21] = { 41.8, 41.7, 15, 360 }, + [22] = { 37.1, 41.6, 15, 360 }, + [23] = { 39.2, 41.4, 15, 360 }, + [24] = { 34.4, 41.3, 15, 360 }, + [25] = { 34.1, 40.7, 15, 360 }, + [26] = { 43.3, 39.5, 15, 360 }, + [27] = { 44.7, 39.3, 15, 360 }, + [28] = { 42.4, 39.2, 15, 360 }, + [29] = { 41.4, 38.7, 15, 360 }, + [30] = { 40.1, 38.3, 15, 360 }, + [31] = { 40.8, 37.6, 15, 360 }, + [32] = { 42, 37.6, 15, 360 }, + [33] = { 43, 37.2, 15, 360 }, + [34] = { 35.7, 35.9, 15, 360 }, + [35] = { 56.2, 35.6, 15, 360 }, + [36] = { 37.5, 35, 15, 360 }, + [37] = { 36, 34.8, 15, 360 }, + [38] = { 40.2, 34.6, 15, 360 }, + [39] = { 38.8, 34.4, 15, 360 }, + [40] = { 41, 33.8, 15, 360 }, + [41] = { 34.5, 33.8, 15, 360 }, + [42] = { 40.1, 33.1, 15, 360 }, + [43] = { 41.1, 33, 15, 360 }, + [44] = { 40.7, 32, 15, 360 }, + [45] = { 41.1, 30.9, 15, 360 }, + [46] = { 54.3, 30.7, 15, 360 }, + [47] = { 41.3, 29, 15, 360 }, + [48] = { 41.9, 28.4, 15, 360 }, + [49] = { 42.3, 28.2, 15, 360 }, + [50] = { 56.1, 28, 15, 360 }, + [51] = { 58.4, 27.3, 15, 360 }, + [52] = { 40.6, 26.5, 15, 360 }, + [53] = { 37.1, 23.4, 15, 360 }, + [54] = { 52, 22.7, 15, 360 }, + [55] = { 48.7, 21.8, 15, 360 }, + [56] = { 37.5, 21.8, 15, 360 }, + [57] = { 52.6, 21.1, 15, 360 }, + [58] = { 45.1, 19.8, 15, 360 }, + [59] = { 51.3, 18, 15, 360 }, + [60] = { 43.6, 17.2, 15, 360 }, + [61] = { 38.2, 15.3, 15, 360 }, + [62] = { 42.2, 14.9, 15, 360 }, + [63] = { 40.4, 14.1, 15, 360 }, + [64] = { 39.1, 13.7, 15, 360 }, + [65] = { 55.2, 77.3, 17, 360 }, + [66] = { 53.5, 77.3, 17, 360 }, + [67] = { 54.2, 76.9, 17, 360 }, + [68] = { 54, 76.5, 17, 360 }, + [69] = { 54.7, 76.1, 17, 360 }, + [70] = { 52.8, 76.1, 17, 360 }, + [71] = { 53.2, 75.9, 17, 360 }, + [72] = { 55.2, 75.7, 17, 360 }, + [73] = { 54.7, 75.5, 17, 360 }, + [74] = { 53.3, 75.4, 17, 360 }, + [75] = { 53.2, 75.1, 17, 360 }, + [76] = { 54, 72.5, 17, 360 }, + [77] = { 55, 72.1, 17, 360 }, + [78] = { 54.1, 72, 17, 360 }, + [79] = { 53.4, 71.5, 17, 360 }, + [80] = { 54.7, 66.1, 17, 360 }, + [81] = { 54.9, 65.2, 17, 360 }, + [82] = { 55.3, 61.9, 17, 360 }, + [83] = { 55.8, 61.1, 17, 360 }, + [84] = { 60, 34.9, 15, 360 }, + [85] = { 59.1, 34.4, 15, 360 }, + [86] = { 53.7, 33.5, 15, 360 }, + [87] = { 54.8, 32.3, 15, 360 }, + [88] = { 58.4, 30.4, 15, 360 }, + [89] = { 52.2, 29.9, 15, 360 }, + [90] = { 53.7, 29.7, 15, 360 }, + [91] = { 38, 29.5, 15, 360 }, + [92] = { 51.2, 28.7, 15, 360 }, + [93] = { 56.9, 28.5, 15, 360 }, + [94] = { 36.4, 27.2, 15, 360 }, + [95] = { 40, 27.2, 15, 360 }, + [96] = { 41.2, 26.9, 15, 360 }, + [97] = { 37, 26.3, 15, 360 }, + [98] = { 57.3, 26.2, 15, 360 }, + [99] = { 51.1, 26, 15, 360 }, + [100] = { 40.2, 25.3, 15, 360 }, + [101] = { 58.1, 24.9, 15, 360 }, + [102] = { 57.3, 24.3, 15, 360 }, + [103] = { 41.7, 24.3, 15, 360 }, + [104] = { 51.8, 23.7, 15, 360 }, + [105] = { 38.9, 23.4, 15, 360 }, + [106] = { 38.2, 22.5, 15, 360 }, + [107] = { 49.9, 22.1, 15, 360 }, + [108] = { 41.4, 21.4, 15, 360 }, + [109] = { 46.4, 21.2, 15, 360 }, + [110] = { 40.2, 21, 15, 360 }, + [111] = { 45.9, 20.5, 15, 360 }, + [112] = { 44.9, 20.5, 15, 360 }, + [113] = { 50.4, 20.4, 15, 360 }, + [114] = { 52.1, 20.3, 15, 360 }, + [115] = { 51.7, 19.9, 15, 360 }, + [116] = { 40.4, 19.8, 15, 360 }, + [117] = { 42.8, 19.4, 15, 360 }, + [118] = { 55.2, 69.2, 17, 360 }, + [119] = { 54.4, 68.1, 17, 360 }, + [120] = { 54.7, 67.6, 17, 360 }, + [121] = { 55.3, 65.6, 17, 360 }, + }, + ["lvl"] = "36-37", + }, + [4343] = { + ["coords"] = { + [1] = { 48.9, 65.6, 15, 360 }, + [2] = { 48.7, 64.9, 15, 360 }, + [3] = { 41.8, 64.7, 15, 360 }, + [4] = { 49.5, 64.4, 15, 360 }, + [5] = { 47.2, 64.3, 15, 360 }, + [6] = { 43.3, 63.8, 15, 360 }, + [7] = { 46.7, 63.7, 15, 360 }, + [8] = { 41.5, 63.3, 15, 360 }, + [9] = { 50.3, 63.3, 15, 360 }, + [10] = { 45.7, 62.7, 15, 360 }, + [11] = { 44.7, 62.1, 15, 360 }, + [12] = { 51, 62, 15, 360 }, + [13] = { 45.5, 61.8, 15, 360 }, + [14] = { 41.7, 61.7, 15, 360 }, + [15] = { 43.7, 61.6, 15, 360 }, + [16] = { 46.3, 61.4, 15, 360 }, + [17] = { 42.5, 61.1, 15, 360 }, + [18] = { 46.2, 60.9, 15, 360 }, + [19] = { 43, 60.9, 15, 360 }, + [20] = { 36.8, 60.8, 15, 360 }, + [21] = { 35.9, 60.7, 15, 360 }, + [22] = { 34.8, 60.6, 15, 360 }, + [23] = { 40.9, 60.6, 15, 360 }, + [24] = { 50.9, 60.4, 15, 360 }, + [25] = { 42.5, 60, 15, 360 }, + [26] = { 50.1, 59.9, 15, 360 }, + [27] = { 37.9, 59.6, 15, 360 }, + [28] = { 46.5, 59.6, 15, 360 }, + [29] = { 36.2, 59.5, 15, 360 }, + [30] = { 38.9, 59.4, 15, 360 }, + [31] = { 36.4, 58.8, 15, 360 }, + [32] = { 39.6, 58.7, 15, 360 }, + [33] = { 43.2, 58.5, 15, 360 }, + [34] = { 40.5, 58.5, 15, 360 }, + [35] = { 34.8, 58.4, 15, 360 }, + [36] = { 49.8, 58.2, 15, 360 }, + [37] = { 36, 58.1, 15, 360 }, + [38] = { 49.1, 58, 15, 360 }, + [39] = { 41.4, 57.8, 15, 360 }, + [40] = { 35.1, 57.4, 15, 360 }, + [41] = { 44.1, 57.1, 15, 360 }, + [42] = { 48.5, 56.7, 15, 360 }, + [43] = { 43.4, 56.6, 15, 360 }, + [44] = { 49.4, 56.3, 15, 360 }, + [45] = { 41.7, 56, 15, 360 }, + [46] = { 50.3, 56, 15, 360 }, + [47] = { 42.7, 55.7, 15, 360 }, + [48] = { 35.1, 55.6, 15, 360 }, + [49] = { 48, 55.4, 15, 360 }, + [50] = { 40.8, 54.8, 15, 360 }, + [51] = { 47.1, 54.7, 15, 360 }, + [52] = { 41.9, 54.7, 15, 360 }, + [53] = { 50.7, 54.6, 15, 360 }, + [54] = { 38.6, 54.3, 15, 360 }, + [55] = { 46.2, 54.1, 15, 360 }, + [56] = { 37.9, 54, 15, 360 }, + [57] = { 42.5, 53.9, 15, 360 }, + [58] = { 50.3, 53.7, 15, 360 }, + [59] = { 47.8, 53.5, 15, 360 }, + [60] = { 39, 53.5, 15, 360 }, + [61] = { 49.9, 53.2, 15, 360 }, + [62] = { 39.6, 53.1, 15, 360 }, + [63] = { 50.7, 53.1, 15, 360 }, + [64] = { 46, 52.9, 15, 360 }, + [65] = { 47, 52, 15, 360 }, + [66] = { 45.1, 51.7, 15, 360 }, + [67] = { 39.9, 51.5, 15, 360 }, + [68] = { 44.6, 51.2, 15, 360 }, + [69] = { 36.9, 51.2, 15, 360 }, + [70] = { 43.3, 50.8, 15, 360 }, + [71] = { 39.1, 50.5, 15, 360 }, + [72] = { 48, 50.2, 15, 360 }, + [73] = { 40.2, 50.1, 15, 360 }, + [74] = { 37.6, 50.1, 15, 360 }, + [75] = { 35, 49.8, 15, 360 }, + [76] = { 42.4, 49.8, 15, 360 }, + [77] = { 43.7, 49.6, 15, 360 }, + [78] = { 44.6, 49.5, 15, 360 }, + [79] = { 48.1, 49.5, 15, 360 }, + [80] = { 34.4, 49.5, 15, 360 }, + [81] = { 45.8, 49.4, 15, 360 }, + [82] = { 38.2, 49.1, 15, 360 }, + [83] = { 42.3, 49, 15, 360 }, + [84] = { 35.7, 49, 15, 360 }, + [85] = { 39.5, 48.8, 15, 360 }, + [86] = { 36.4, 48.2, 15, 360 }, + [87] = { 42.6, 48, 15, 360 }, + [88] = { 38.8, 47.9, 15, 360 }, + [89] = { 45.2, 47.9, 15, 360 }, + [90] = { 43.4, 47.5, 15, 360 }, + [91] = { 35.5, 47.4, 15, 360 }, + [92] = { 38, 47.2, 15, 360 }, + [93] = { 44.5, 46.9, 15, 360 }, + [94] = { 34.3, 46.9, 15, 360 }, + [95] = { 36.8, 46.9, 15, 360 }, + [96] = { 37.9, 46.8, 15, 360 }, + [97] = { 35.2, 44.3, 15, 360 }, + [98] = { 35.1, 34.4, 15, 360 }, + [99] = { 54.6, 85.4, 17, 360 }, + [100] = { 54.1, 85.4, 17, 360 }, + [101] = { 53.5, 85.3, 17, 360 }, + [102] = { 55.2, 84.8, 17, 360 }, + [103] = { 54.3, 84.8, 17, 360 }, + [104] = { 54.4, 84.4, 17, 360 }, + [105] = { 53.5, 84.2, 17, 360 }, + [106] = { 54.1, 84, 17, 360 }, + [107] = { 53.7, 83.7, 17, 360 }, + [108] = { 53.7, 82.8, 17, 360 }, + [109] = { 55.2, 81.9, 17, 360 }, + [110] = { 54.6, 80.5, 17, 360 }, + [111] = { 55, 79.9, 17, 360 }, + [112] = { 53.6, 79.8, 17, 360 }, + [113] = { 53.3, 79.6, 17, 360 }, + [114] = { 55.3, 79.4, 17, 360 }, + [115] = { 54, 79.3, 17, 360 }, + [116] = { 54.4, 78.9, 17, 360 }, + [117] = { 53.9, 78.5, 17, 360 }, + [118] = { 55.2, 78.4, 17, 360 }, + [119] = { 53.3, 78.3, 17, 360 }, + [120] = { 54.6, 78.2, 17, 360 }, + [121] = { 55.1, 78.2, 17, 360 }, + [122] = { 53.7, 76.9, 17, 360 }, + [123] = { 53.7, 71.8, 17, 360 }, + [124] = { 41.9, 45.5, 15, 360 }, + [125] = { 44.5, 45.2, 15, 360 }, + [126] = { 43.3, 45.1, 15, 360 }, + [127] = { 38, 45.1, 15, 360 }, + [128] = { 34.8, 45, 15, 360 }, + [129] = { 39.3, 44.9, 15, 360 }, + [130] = { 41.1, 44.8, 15, 360 }, + [131] = { 39.9, 44.6, 15, 360 }, + [132] = { 36.1, 44.2, 15, 360 }, + [133] = { 44.1, 43.9, 15, 360 }, + [134] = { 44.5, 43.5, 15, 360 }, + [135] = { 35.8, 43.4, 15, 360 }, + [136] = { 39.3, 43.1, 15, 360 }, + [137] = { 37, 42.8, 15, 360 }, + [138] = { 33.4, 42.6, 15, 360 }, + [139] = { 34.1, 42.3, 15, 360 }, + [140] = { 44.8, 42, 15, 360 }, + [141] = { 38, 42, 15, 360 }, + [142] = { 40.4, 42, 15, 360 }, + [143] = { 41, 41.9, 15, 360 }, + [144] = { 41.8, 41.7, 15, 360 }, + [145] = { 37.1, 41.6, 15, 360 }, + [146] = { 39.2, 41.4, 15, 360 }, + [147] = { 34.4, 41.3, 15, 360 }, + [148] = { 34.1, 40.7, 15, 360 }, + [149] = { 43.3, 39.5, 15, 360 }, + [150] = { 44.7, 39.3, 15, 360 }, + [151] = { 42.4, 39.2, 15, 360 }, + [152] = { 41.4, 38.7, 15, 360 }, + [153] = { 40.1, 38.3, 15, 360 }, + [154] = { 40.8, 37.6, 15, 360 }, + [155] = { 42, 37.6, 15, 360 }, + [156] = { 43, 37.2, 15, 360 }, + [157] = { 35.7, 35.9, 15, 360 }, + [158] = { 37.5, 35, 15, 360 }, + [159] = { 36, 34.8, 15, 360 }, + [160] = { 40.2, 34.6, 15, 360 }, + [161] = { 38.8, 34.4, 15, 360 }, + [162] = { 41, 33.8, 15, 360 }, + [163] = { 34.5, 33.8, 15, 360 }, + [164] = { 40.1, 33.1, 15, 360 }, + [165] = { 41.1, 33, 15, 360 }, + [166] = { 40.7, 32, 15, 360 }, + [167] = { 41.1, 30.9, 15, 360 }, + [168] = { 41.3, 29, 15, 360 }, + [169] = { 42.3, 28.2, 15, 360 }, + [170] = { 55.2, 77.3, 17, 360 }, + [171] = { 53.5, 77.3, 17, 360 }, + [172] = { 54.2, 76.9, 17, 360 }, + [173] = { 54, 76.5, 17, 360 }, + [174] = { 54.7, 76.1, 17, 360 }, + [175] = { 52.8, 76.1, 17, 360 }, + [176] = { 53.2, 75.9, 17, 360 }, + [177] = { 55.2, 75.7, 17, 360 }, + [178] = { 54.7, 75.5, 17, 360 }, + [179] = { 53.3, 75.4, 17, 360 }, + [180] = { 53.2, 75.1, 17, 360 }, + [181] = { 54, 72.5, 17, 360 }, + [182] = { 55, 72.1, 17, 360 }, + [183] = { 54.1, 72, 17, 360 }, + [184] = { 53.4, 71.5, 17, 360 }, + }, + ["lvl"] = "37-38", + }, + [4344] = { + ["coords"] = { + [1] = { 41.1, 60.6, 15, 360 }, + [2] = { 37.9, 57.7, 15, 360 }, + [3] = { 38.6, 57.5, 15, 360 }, + [4] = { 40.4, 51.8, 15, 360 }, + [5] = { 55.1, 83.9, 17, 360 }, + [6] = { 48.9, 65.6, 15, 360 }, + [7] = { 48.7, 64.9, 15, 360 }, + [8] = { 41.8, 64.7, 15, 360 }, + [9] = { 49.5, 64.4, 15, 360 }, + [10] = { 47.2, 64.3, 15, 360 }, + [11] = { 43.3, 63.8, 15, 360 }, + [12] = { 46.7, 63.7, 15, 360 }, + [13] = { 41.5, 63.3, 15, 360 }, + [14] = { 50.3, 63.3, 15, 360 }, + [15] = { 45.7, 62.7, 15, 360 }, + [16] = { 44.7, 62.1, 15, 360 }, + [17] = { 51, 62, 15, 360 }, + [18] = { 45.5, 61.8, 15, 360 }, + [19] = { 41.7, 61.7, 15, 360 }, + [20] = { 43.7, 61.6, 15, 360 }, + [21] = { 46.3, 61.4, 15, 360 }, + [22] = { 42.5, 61.1, 15, 360 }, + [23] = { 46.2, 60.9, 15, 360 }, + [24] = { 43, 60.9, 15, 360 }, + [25] = { 36.8, 60.8, 15, 360 }, + [26] = { 35.9, 60.7, 15, 360 }, + [27] = { 34.8, 60.6, 15, 360 }, + [28] = { 40.9, 60.6, 15, 360 }, + [29] = { 50.9, 60.4, 15, 360 }, + [30] = { 42.5, 60, 15, 360 }, + [31] = { 50.1, 59.9, 15, 360 }, + [32] = { 37.9, 59.6, 15, 360 }, + [33] = { 46.5, 59.6, 15, 360 }, + [34] = { 36.2, 59.5, 15, 360 }, + [35] = { 38.9, 59.4, 15, 360 }, + [36] = { 36.4, 58.8, 15, 360 }, + [37] = { 39.6, 58.7, 15, 360 }, + [38] = { 43.2, 58.5, 15, 360 }, + [39] = { 40.5, 58.5, 15, 360 }, + [40] = { 34.8, 58.4, 15, 360 }, + [41] = { 49.8, 58.2, 15, 360 }, + [42] = { 36, 58.1, 15, 360 }, + [43] = { 49.1, 58, 15, 360 }, + [44] = { 41.4, 57.8, 15, 360 }, + [45] = { 35.1, 57.4, 15, 360 }, + [46] = { 44.1, 57.1, 15, 360 }, + [47] = { 48.5, 56.7, 15, 360 }, + [48] = { 43.4, 56.6, 15, 360 }, + [49] = { 49.4, 56.3, 15, 360 }, + [50] = { 41.7, 56, 15, 360 }, + [51] = { 50.3, 56, 15, 360 }, + [52] = { 42.7, 55.7, 15, 360 }, + [53] = { 48, 55.4, 15, 360 }, + [54] = { 40.8, 54.8, 15, 360 }, + [55] = { 47.1, 54.7, 15, 360 }, + [56] = { 41.9, 54.7, 15, 360 }, + [57] = { 50.7, 54.6, 15, 360 }, + [58] = { 38.6, 54.3, 15, 360 }, + [59] = { 46.2, 54.1, 15, 360 }, + [60] = { 37.9, 54, 15, 360 }, + [61] = { 42.5, 53.9, 15, 360 }, + [62] = { 50.3, 53.7, 15, 360 }, + [63] = { 47.8, 53.5, 15, 360 }, + [64] = { 39, 53.5, 15, 360 }, + [65] = { 49.9, 53.2, 15, 360 }, + [66] = { 39.6, 53.1, 15, 360 }, + [67] = { 50.7, 53.1, 15, 360 }, + [68] = { 46, 52.9, 15, 360 }, + [69] = { 47, 52, 15, 360 }, + [70] = { 45.1, 51.7, 15, 360 }, + [71] = { 44.6, 51.2, 15, 360 }, + [72] = { 36.9, 51.2, 15, 360 }, + [73] = { 43.3, 50.8, 15, 360 }, + [74] = { 48, 50.2, 15, 360 }, + [75] = { 40.2, 50.1, 15, 360 }, + [76] = { 37.6, 50.1, 15, 360 }, + [77] = { 35, 49.8, 15, 360 }, + [78] = { 42.4, 49.8, 15, 360 }, + [79] = { 43.7, 49.6, 15, 360 }, + [80] = { 44.6, 49.5, 15, 360 }, + [81] = { 48.1, 49.5, 15, 360 }, + [82] = { 34.4, 49.5, 15, 360 }, + [83] = { 45.8, 49.4, 15, 360 }, + [84] = { 38.2, 49.1, 15, 360 }, + [85] = { 42.3, 49, 15, 360 }, + [86] = { 35.7, 49, 15, 360 }, + [87] = { 39.5, 48.8, 15, 360 }, + [88] = { 36.4, 48.2, 15, 360 }, + [89] = { 42.6, 48, 15, 360 }, + [90] = { 38.8, 47.9, 15, 360 }, + [91] = { 45.2, 47.9, 15, 360 }, + [92] = { 43.4, 47.5, 15, 360 }, + [93] = { 35.5, 47.4, 15, 360 }, + [94] = { 38, 47.2, 15, 360 }, + [95] = { 44.5, 46.9, 15, 360 }, + [96] = { 36.8, 46.9, 15, 360 }, + [97] = { 37.9, 46.8, 15, 360 }, + [98] = { 54.6, 85.4, 17, 360 }, + [99] = { 54.1, 85.4, 17, 360 }, + [100] = { 53.5, 85.3, 17, 360 }, + [101] = { 55.2, 84.8, 17, 360 }, + [102] = { 54.3, 84.8, 17, 360 }, + [103] = { 54.4, 84.4, 17, 360 }, + [104] = { 53.5, 84.2, 17, 360 }, + [105] = { 54.1, 84, 17, 360 }, + [106] = { 53.7, 83.7, 17, 360 }, + [107] = { 55.2, 81.9, 17, 360 }, + [108] = { 54.6, 80.5, 17, 360 }, + [109] = { 55, 79.9, 17, 360 }, + [110] = { 53.6, 79.8, 17, 360 }, + [111] = { 53.3, 79.6, 17, 360 }, + [112] = { 55.3, 79.4, 17, 360 }, + [113] = { 54, 79.3, 17, 360 }, + [114] = { 54.4, 78.9, 17, 360 }, + [115] = { 53.9, 78.5, 17, 360 }, + [116] = { 55.2, 78.4, 17, 360 }, + [117] = { 54.6, 78.2, 17, 360 }, + [118] = { 55.1, 78.2, 17, 360 }, + }, + ["lvl"] = "38-39", + }, + [4345] = { + ["coords"] = { + [1] = { 50.5, 80.9, 15, 360 }, + [2] = { 49.9, 79.9, 15, 360 }, + [3] = { 47.8, 79.8, 15, 360 }, + [4] = { 45.3, 79.8, 15, 360 }, + [5] = { 44.2, 79.5, 15, 360 }, + [6] = { 49.2, 79.5, 15, 360 }, + [7] = { 46.7, 79.1, 15, 360 }, + [8] = { 47.3, 78.8, 15, 360 }, + [9] = { 43.2, 78.3, 15, 360 }, + [10] = { 48.8, 78.3, 15, 360 }, + [11] = { 45.4, 77.6, 15, 360 }, + [12] = { 47.7, 77.5, 15, 360 }, + [13] = { 43.6, 76.9, 15, 360 }, + [14] = { 46.1, 76.7, 15, 360 }, + [15] = { 50.8, 76.5, 15, 360 }, + [16] = { 46.5, 76.1, 15, 360 }, + [17] = { 44, 76.1, 15, 360 }, + [18] = { 47.7, 75.8, 15, 360 }, + [19] = { 46, 75, 15, 360 }, + [20] = { 47.3, 74.9, 15, 360 }, + [21] = { 49.6, 74.9, 15, 360 }, + [22] = { 51, 74.8, 15, 360 }, + [23] = { 43.2, 74.8, 15, 360 }, + [24] = { 55.4, 73.9, 15, 360 }, + [25] = { 49.3, 73.9, 15, 360 }, + [26] = { 46.6, 73.8, 15, 360 }, + [27] = { 50.1, 73.5, 15, 360 }, + [28] = { 44.5, 73.1, 15, 360 }, + [29] = { 55.9, 73.1, 15, 360 }, + [30] = { 43.5, 73, 15, 360 }, + [31] = { 52.1, 72.9, 15, 360 }, + [32] = { 47.2, 72.8, 15, 360 }, + [33] = { 51.2, 72.7, 15, 360 }, + [34] = { 38.6, 72.7, 15, 360 }, + [35] = { 55.6, 72.2, 15, 360 }, + [36] = { 49, 72.2, 15, 360 }, + [37] = { 54.2, 72.1, 15, 360 }, + [38] = { 47.8, 71.9, 15, 360 }, + [39] = { 37.6, 71.9, 15, 360 }, + [40] = { 56.4, 71.9, 15, 360 }, + [41] = { 42.9, 71.7, 15, 360 }, + [42] = { 53, 71.6, 15, 360 }, + [43] = { 41.6, 71.6, 15, 360 }, + [44] = { 39.8, 71.5, 15, 360 }, + [45] = { 55, 71.3, 15, 360 }, + [46] = { 38.4, 71.2, 15, 360 }, + [47] = { 49.8, 71, 15, 360 }, + [48] = { 43.3, 70.9, 15, 360 }, + [49] = { 47.1, 70.8, 15, 360 }, + [50] = { 44.5, 70.8, 15, 360 }, + [51] = { 48.3, 70.7, 15, 360 }, + [52] = { 41, 70.7, 15, 360 }, + [53] = { 53.6, 70.7, 15, 360 }, + [54] = { 52.5, 70.6, 15, 360 }, + [55] = { 51, 70.6, 15, 360 }, + [56] = { 42.6, 70.3, 15, 360 }, + [57] = { 50.3, 70, 15, 360 }, + [58] = { 44.9, 69.8, 15, 360 }, + [59] = { 55.2, 69.8, 15, 360 }, + [60] = { 39, 69.7, 15, 360 }, + [61] = { 46.3, 69.7, 15, 360 }, + [62] = { 56.7, 69.6, 15, 360 }, + [63] = { 52.3, 69.2, 15, 360 }, + [64] = { 54.2, 69.2, 15, 360 }, + [65] = { 56, 69.2, 15, 360 }, + [66] = { 42.1, 69.2, 15, 360 }, + [67] = { 50.9, 69.1, 15, 360 }, + [68] = { 41.4, 69.1, 15, 360 }, + [69] = { 47, 68.9, 15, 360 }, + [70] = { 48.4, 68.7, 15, 360 }, + [71] = { 44, 68.2, 15, 360 }, + [72] = { 50.5, 68.2, 15, 360 }, + [73] = { 41.2, 66.5, 15, 360 }, + [74] = { 55, 91.2, 17, 360 }, + [75] = { 55.4, 90.9, 17, 360 }, + }, + ["lvl"] = "40-41", + ["rnk"] = "1", + }, + [4346] = { + ["coords"] = { + [1] = { 59.4, 31.8, 15, 360 }, + [2] = { 47, 27.2, 15, 360 }, + [3] = { 60, 21.6, 15, 360 }, + [4] = { 55.6, 19, 15, 360 }, + [5] = { 52.6, 14, 15, 360 }, + [6] = { 62.8, 61.2, 17, 360 }, + }, + ["lvl"] = "35-36", + }, + [4347] = { + ["coords"] = {}, + ["lvl"] = "37-38", + }, + [4348] = { + ["coords"] = {}, + ["lvl"] = "38-39", + }, + [4351] = { + ["coords"] = { + [1] = { 63.6, 40.2, 15, 360 }, + [2] = { 57.9, 38.6, 15, 360 }, + [3] = { 56.3, 38.4, 15, 360 }, + [4] = { 62.1, 37.9, 15, 360 }, + [5] = { 58.5, 37.9, 15, 360 }, + [6] = { 61.5, 36.8, 15, 360 }, + [7] = { 54.8, 35.7, 15, 360 }, + [8] = { 60.8, 35.1, 15, 360 }, + [9] = { 52.3, 34.9, 15, 360 }, + [10] = { 50.9, 33.8, 15, 360 }, + [11] = { 50.8, 31.9, 15, 360 }, + [12] = { 57.3, 30, 15, 360 }, + [13] = { 60.1, 29.4, 15, 360 }, + [14] = { 46.3, 28.2, 15, 360 }, + [15] = { 52.9, 28, 15, 360 }, + [16] = { 48.4, 27.8, 15, 360 }, + [17] = { 37.7, 27.7, 15, 360 }, + [18] = { 34, 27.7, 15, 360 }, + [19] = { 60.2, 27.3, 15, 360 }, + [20] = { 52.2, 27.2, 15, 360 }, + [21] = { 49.6, 26.7, 15, 360 }, + [22] = { 38.8, 26, 15, 360 }, + [23] = { 37.7, 25.8, 15, 360 }, + [24] = { 40.9, 25.3, 15, 360 }, + [25] = { 56.5, 25, 15, 360 }, + [26] = { 38.5, 24.9, 15, 360 }, + [27] = { 60, 24.6, 15, 360 }, + [28] = { 38.1, 24.1, 15, 360 }, + [29] = { 56.3, 23.8, 15, 360 }, + [30] = { 44, 22.4, 15, 360 }, + [31] = { 39.4, 22.4, 15, 360 }, + [32] = { 50.8, 21.5, 15, 360 }, + [33] = { 52, 21.4, 15, 360 }, + [34] = { 44.1, 21.2, 15, 360 }, + [35] = { 55.5, 21.2, 15, 360 }, + [36] = { 45.1, 20.9, 15, 360 }, + [37] = { 51.6, 20.6, 15, 360 }, + [38] = { 58.8, 20.6, 15, 360 }, + [39] = { 43.7, 20.2, 15, 360 }, + [40] = { 38.9, 19.6, 15, 360 }, + [41] = { 50.2, 19.5, 15, 360 }, + [42] = { 41.5, 19.3, 15, 360 }, + [43] = { 40.8, 18.8, 15, 360 }, + [44] = { 48.3, 18.8, 15, 360 }, + [45] = { 42.1, 18.6, 15, 360 }, + [46] = { 48.2, 18, 15, 360 }, + [47] = { 41.4, 17.7, 15, 360 }, + [48] = { 47.5, 17.6, 15, 360 }, + [49] = { 40.2, 17.6, 15, 360 }, + [50] = { 52.3, 17, 15, 360 }, + [51] = { 45.8, 16.6, 15, 360 }, + [52] = { 50.9, 16, 15, 360 }, + [53] = { 49.1, 15.8, 15, 360 }, + [54] = { 46.7, 15.5, 15, 360 }, + [55] = { 52.7, 15.4, 15, 360 }, + [56] = { 35.7, 14.8, 15, 360 }, + [57] = { 37, 14.8, 15, 360 }, + [58] = { 39.6, 14.3, 15, 360 }, + [59] = { 44, 13.4, 15, 360 }, + [60] = { 51.3, 12.9, 15, 360 }, + [61] = { 43.7, 12.5, 15, 360 }, + [62] = { 51.6, 12.2, 15, 360 }, + [63] = { 37.1, 12.2, 15, 360 }, + [64] = { 41.8, 12, 15, 360 }, + [65] = { 41.8, 11.6, 15, 360 }, + [66] = { 40.5, 11.5, 15, 360 }, + [67] = { 40.7, 11.3, 15, 360 }, + [68] = { 41, 9.8, 15, 360 }, + [69] = { 42.6, 9.7, 15, 360 }, + [70] = { 55.1, 68.3, 17, 360 }, + [71] = { 53.1, 68.3, 17, 360 }, + [72] = { 55, 67.3, 17, 360 }, + [73] = { 55.2, 66.4, 17, 360 }, + [74] = { 54, 61.6, 17, 360 }, + [75] = { 54.7, 61.6, 17, 360 }, + [76] = { 56, 61.3, 17, 360 }, + [77] = { 62.1, 60.7, 17, 360 }, + [78] = { 58.2, 60.4, 17, 360 }, + [79] = { 62.2, 60.3, 17, 360 }, + [80] = { 54.7, 60.3, 17, 360 }, + [81] = { 57.2, 60.2, 17, 360 }, + [82] = { 57.1, 60, 17, 360 }, + [83] = { 56.5, 59.9, 17, 360 }, + [84] = { 56.6, 59.8, 17, 360 }, + [85] = { 56.8, 59.1, 17, 360 }, + [86] = { 57.6, 59, 17, 360 }, + }, + ["lvl"] = "35-36", + }, + [4352] = { + ["coords"] = { + [1] = { 51.6, 22, 15, 360 }, + [2] = { 49.1, 20.5, 15, 360 }, + [3] = { 47.5, 20.2, 15, 360 }, + [4] = { 49.7, 19.8, 15, 360 }, + [5] = { 48.4, 19.6, 15, 360 }, + [6] = { 45.9, 19.5, 15, 360 }, + [7] = { 48.7, 19.5, 15, 360 }, + [8] = { 46.8, 19.3, 15, 360 }, + [9] = { 52.4, 19.3, 15, 360 }, + [10] = { 47.4, 19, 15, 360 }, + [11] = { 46.3, 18.9, 15, 360 }, + [12] = { 49, 18.7, 15, 360 }, + [13] = { 45.9, 17.6, 15, 360 }, + [14] = { 49.7, 17.5, 15, 360 }, + [15] = { 46.5, 16.6, 15, 360 }, + [16] = { 47.3, 16.5, 15, 360 }, + [17] = { 48.2, 16.5, 15, 360 }, + [18] = { 48.6, 15.8, 15, 360 }, + [19] = { 47.8, 15.8, 15, 360 }, + [20] = { 47.3, 15.7, 15, 360 }, + [21] = { 50.5, 15.7, 15, 360 }, + [22] = { 52.2, 15.2, 15, 360 }, + [23] = { 47.2, 15.1, 15, 360 }, + [24] = { 48, 14.9, 15, 360 }, + [25] = { 50.2, 19.5, 15, 360 }, + [26] = { 48.2, 18, 15, 360 }, + [27] = { 47.5, 17.6, 15, 360 }, + [28] = { 50.9, 16, 15, 360 }, + [29] = { 49.1, 15.8, 15, 360 }, + }, + ["lvl"] = "36-37", + }, + [4355] = { + ["coords"] = { + [1] = { 49.5, 63.7, 15, 360 }, + [2] = { 48.3, 63.3, 15, 360 }, + [3] = { 42.2, 63.1, 15, 360 }, + [4] = { 48.1, 62.4, 15, 360 }, + [5] = { 48.9, 62.1, 15, 360 }, + [6] = { 46.6, 61.9, 15, 360 }, + [7] = { 49.7, 61.8, 15, 360 }, + [8] = { 43.3, 61.7, 15, 360 }, + [9] = { 48.5, 61.6, 15, 360 }, + [10] = { 43.8, 60.7, 15, 360 }, + [11] = { 49, 60.6, 15, 360 }, + [12] = { 41.5, 60.4, 15, 360 }, + [13] = { 40.2, 60.1, 15, 360 }, + [14] = { 45.6, 60, 15, 360 }, + [15] = { 41.9, 59.8, 15, 360 }, + [16] = { 49.6, 59.5, 15, 360 }, + [17] = { 44.7, 59.5, 15, 360 }, + [18] = { 35.4, 59.4, 15, 360 }, + [19] = { 48.2, 59.2, 15, 360 }, + [20] = { 41.7, 59.2, 15, 360 }, + [21] = { 48.8, 59, 15, 360 }, + [22] = { 47.9, 58.5, 15, 360 }, + [23] = { 33.2, 57.8, 15, 360 }, + [24] = { 39.8, 57.2, 15, 360 }, + [25] = { 36.4, 56.7, 15, 360 }, + [26] = { 40.4, 56.3, 15, 360 }, + [27] = { 45.7, 56.1, 15, 360 }, + [28] = { 36.9, 55.8, 15, 360 }, + [29] = { 38.2, 55.7, 15, 360 }, + [30] = { 39.6, 55.6, 15, 360 }, + [31] = { 35.8, 55.5, 15, 360 }, + [32] = { 47, 55.5, 15, 360 }, + [33] = { 44.6, 55.2, 15, 360 }, + [34] = { 45.3, 54.9, 15, 360 }, + [35] = { 33.9, 54.8, 15, 360 }, + [36] = { 40.1, 54.7, 15, 360 }, + [37] = { 36.9, 54.1, 15, 360 }, + [38] = { 43.2, 53.9, 15, 360 }, + [39] = { 43.9, 53, 15, 360 }, + [40] = { 41.5, 52.8, 15, 360 }, + [41] = { 40.2, 52.4, 15, 360 }, + [42] = { 38.5, 52.4, 15, 360 }, + [43] = { 40.9, 51.6, 15, 360 }, + [44] = { 35.8, 51.4, 15, 360 }, + [45] = { 38.9, 51, 15, 360 }, + [46] = { 36.3, 51, 15, 360 }, + [47] = { 41.5, 50.4, 15, 360 }, + [48] = { 41.9, 49.9, 15, 360 }, + [49] = { 41.3, 49, 15, 360 }, + [50] = { 44.1, 49, 15, 360 }, + [51] = { 44.8, 48.7, 15, 360 }, + [52] = { 37.3, 48.5, 15, 360 }, + [53] = { 43.4, 48.2, 15, 360 }, + [54] = { 40.8, 48.2, 15, 360 }, + [55] = { 41.7, 47.6, 15, 360 }, + [56] = { 40.2, 47.4, 15, 360 }, + [57] = { 42, 46.9, 15, 360 }, + [58] = { 43.9, 46.8, 15, 360 }, + [59] = { 39.1, 46.4, 15, 360 }, + [60] = { 46.7, 45.8, 15, 360 }, + [61] = { 46.9, 44.9, 15, 360 }, + [62] = { 48.5, 44.8, 15, 360 }, + [63] = { 42.7, 44.3, 15, 360 }, + [64] = { 37.5, 44.2, 15, 360 }, + [65] = { 41.3, 43.7, 15, 360 }, + [66] = { 41, 43.7, 15, 360 }, + [67] = { 43.3, 43.3, 15, 360 }, + [68] = { 45.9, 43.3, 15, 360 }, + [69] = { 38.2, 43.2, 15, 360 }, + [70] = { 42.1, 43.1, 15, 360 }, + [71] = { 41.5, 43.1, 15, 360 }, + [72] = { 42.6, 42.6, 15, 360 }, + [73] = { 45.5, 42.1, 15, 360 }, + [74] = { 43, 41.8, 15, 360 }, + [75] = { 46, 41.2, 15, 360 }, + [76] = { 35.4, 40.9, 15, 360 }, + [77] = { 40.1, 40.4, 15, 360 }, + [78] = { 41.2, 40.2, 15, 360 }, + [79] = { 46, 39.8, 15, 360 }, + [80] = { 45.6, 38.3, 15, 360 }, + [81] = { 37.4, 38.2, 15, 360 }, + [82] = { 45, 36.6, 15, 360 }, + [83] = { 43.5, 35.2, 15, 360 }, + [84] = { 43.5, 35.1, 15, 360 }, + [85] = { 41.6, 34.8, 15, 360 }, + [86] = { 44, 32.6, 15, 360 }, + [87] = { 44.1, 30.7, 15, 360 }, + [88] = { 44.3, 30.3, 15, 360 }, + [89] = { 45, 28.6, 15, 360 }, + [90] = { 45, 27.3, 15, 360 }, + [91] = { 53.9, 84.7, 17, 360 }, + [92] = { 52.7, 83.9, 17, 360 }, + [93] = { 54.4, 83.3, 17, 360 }, + [94] = { 54.6, 82.8, 17, 360 }, + [95] = { 55.3, 82.8, 17, 360 }, + [96] = { 54, 82.7, 17, 360 }, + [97] = { 53.1, 82.3, 17, 360 }, + [98] = { 54.6, 82, 17, 360 }, + [99] = { 54, 80.6, 17, 360 }, + [100] = { 54.3, 80.4, 17, 360 }, + [101] = { 54.8, 79.1, 17, 360 }, + [102] = { 55, 76.9, 17, 360 }, + [103] = { 55.3, 76.3, 17, 360 }, + [104] = { 53.9, 75.2, 17, 360 }, + [105] = { 54.9, 73.8, 17, 360 }, + }, + ["lvl"] = "37-38", + }, + [4356] = { + ["coords"] = { + [1] = { 34.2, 73.2, 15, 360 }, + [2] = { 35, 72.1, 15, 360 }, + [3] = { 33.8, 72, 15, 360 }, + [4] = { 34.5, 71, 15, 360 }, + [5] = { 38, 70.4, 15, 360 }, + [6] = { 36.1, 69.9, 15, 360 }, + [7] = { 33.7, 69.7, 15, 360 }, + [8] = { 36.9, 68.8, 15, 360 }, + [9] = { 38.1, 68.8, 15, 360 }, + [10] = { 34.2, 68.6, 15, 360 }, + [11] = { 37.5, 68, 15, 360 }, + [12] = { 38.2, 67.2, 15, 360 }, + [13] = { 32, 66.8, 15, 360 }, + [14] = { 37.8, 66.6, 15, 360 }, + [15] = { 35.1, 66.6, 15, 360 }, + [16] = { 32.7, 66.2, 15, 360 }, + [17] = { 33.1, 65.7, 15, 360 }, + [18] = { 32.6, 65.4, 15, 360 }, + [19] = { 34, 65.1, 15, 360 }, + [20] = { 33.1, 65.1, 15, 360 }, + [21] = { 32.6, 64.9, 15, 360 }, + [22] = { 32.1, 64.4, 15, 360 }, + [23] = { 33.1, 64.3, 15, 360 }, + [24] = { 31.5, 64.1, 15, 360 }, + [25] = { 32.2, 64.1, 15, 360 }, + [26] = { 53.2, 91.9, 17, 360 }, + [27] = { 53.7, 91.3, 17, 360 }, + [28] = { 53, 91.3, 17, 360 }, + [29] = { 53.4, 90.8, 17, 360 }, + [30] = { 55.2, 90.4, 17, 360 }, + [31] = { 54.2, 90.2, 17, 360 }, + [32] = { 52.9, 90.1, 17, 360 }, + [33] = { 54.6, 89.6, 17, 360 }, + [34] = { 55.2, 89.6, 17, 360 }, + [35] = { 53.2, 89.5, 17, 360 }, + [36] = { 54.9, 89.2, 17, 360 }, + [37] = { 55.3, 88.8, 17, 360 }, + [38] = { 52.1, 88.6, 17, 360 }, + [39] = { 55.1, 88.5, 17, 360 }, + [40] = { 53.7, 88.4, 17, 360 }, + [41] = { 52.5, 88.3, 17, 360 }, + [42] = { 52.7, 88, 17, 360 }, + [43] = { 52.4, 87.8, 17, 360 }, + [44] = { 53.1, 87.7, 17, 360 }, + [45] = { 52.6, 87.7, 17, 360 }, + [46] = { 52.4, 87.6, 17, 360 }, + [47] = { 52.1, 87.3, 17, 360 }, + [48] = { 52.6, 87.3, 17, 360 }, + [49] = { 51.9, 87.2, 17, 360 }, + [50] = { 52.2, 87.2, 17, 360 }, + }, + ["lvl"] = "39-40", + }, + [4357] = { + ["coords"] = { + [1] = { 36.4, 66.1, 15, 360 }, + [2] = { 31.3, 66, 15, 360 }, + [3] = { 31.4, 65.8, 15, 360 }, + [4] = { 32.1, 65.8, 15, 360 }, + [5] = { 31.8, 65.7, 15, 360 }, + [6] = { 33.1, 65, 15, 360 }, + [7] = { 33.7, 64.1, 15, 360 }, + [8] = { 54.4, 88.2, 17, 360 }, + [9] = { 51.7, 88.2, 17, 360 }, + [10] = { 51.8, 88, 17, 360 }, + [11] = { 52.1, 88, 17, 360 }, + [12] = { 52, 88, 17, 360 }, + [13] = { 52.7, 87.6, 17, 360 }, + [14] = { 52.9, 87.2, 17, 360 }, + [15] = { 34.2, 73.2, 15, 360 }, + [16] = { 35, 72.1, 15, 360 }, + [17] = { 33.8, 72, 15, 360 }, + [18] = { 34.5, 71, 15, 360 }, + [19] = { 38, 70.4, 15, 360 }, + [20] = { 36.1, 69.9, 15, 360 }, + [21] = { 33.7, 69.7, 15, 360 }, + [22] = { 36.9, 68.8, 15, 360 }, + [23] = { 38.1, 68.8, 15, 360 }, + [24] = { 34.2, 68.6, 15, 360 }, + [25] = { 37.5, 68, 15, 360 }, + [26] = { 38.2, 67.2, 15, 360 }, + [27] = { 32, 66.8, 15, 360 }, + [28] = { 37.8, 66.6, 15, 360 }, + [29] = { 35.1, 66.6, 15, 360 }, + [30] = { 32.7, 66.2, 15, 360 }, + [31] = { 33.1, 65.7, 15, 360 }, + [32] = { 32.6, 65.4, 15, 360 }, + [33] = { 34, 65.1, 15, 360 }, + [34] = { 33.1, 65.1, 15, 360 }, + [35] = { 32.6, 64.9, 15, 360 }, + [36] = { 32.1, 64.4, 15, 360 }, + [37] = { 33.1, 64.3, 15, 360 }, + [38] = { 31.5, 64.1, 15, 360 }, + [39] = { 32.2, 64.1, 15, 360 }, + [40] = { 53.2, 91.9, 17, 360 }, + [41] = { 53.7, 91.3, 17, 360 }, + [42] = { 53, 91.3, 17, 360 }, + [43] = { 53.4, 90.8, 17, 360 }, + [44] = { 55.2, 90.4, 17, 360 }, + [45] = { 54.2, 90.2, 17, 360 }, + [46] = { 52.9, 90.1, 17, 360 }, + [47] = { 54.6, 89.6, 17, 360 }, + [48] = { 55.2, 89.6, 17, 360 }, + [49] = { 53.2, 89.5, 17, 360 }, + [50] = { 54.9, 89.2, 17, 360 }, + [51] = { 55.3, 88.8, 17, 360 }, + [52] = { 52.1, 88.6, 17, 360 }, + [53] = { 55.1, 88.5, 17, 360 }, + [54] = { 53.7, 88.4, 17, 360 }, + [55] = { 52.5, 88.3, 17, 360 }, + [56] = { 52.7, 88, 17, 360 }, + [57] = { 52.4, 87.8, 17, 360 }, + [58] = { 53.1, 87.7, 17, 360 }, + [59] = { 52.6, 87.7, 17, 360 }, + [60] = { 52.4, 87.6, 17, 360 }, + [61] = { 52.1, 87.3, 17, 360 }, + [62] = { 52.6, 87.3, 17, 360 }, + [63] = { 51.9, 87.2, 17, 360 }, + [64] = { 52.2, 87.2, 17, 360 }, + }, + ["lvl"] = "40-41", + }, + [4358] = { + ["coords"] = { + [1] = { 56.5, 23.1, 15, 120 }, + [2] = { 57.1, 22.7, 15, 120 }, + [3] = { 57, 21.9, 15, 120 }, + [4] = { 56.8, 21.6, 15, 360 }, + [5] = { 57.3, 21.4, 15, 120 }, + [6] = { 57, 21.4, 15, 120 }, + [7] = { 56.8, 21.4, 15, 120 }, + [8] = { 57.3, 21.3, 15, 120 }, + [9] = { 57.1, 21.1, 15, 360 }, + [10] = { 57.4, 21, 15, 120 }, + [11] = { 56.9, 21, 15, 120 }, + [12] = { 57.9, 21, 15, 120 }, + [13] = { 56.6, 21, 15, 120 }, + [14] = { 57.1, 20.9, 15, 120 }, + [15] = { 57.3, 20.8, 15, 360 }, + [16] = { 57.2, 20.5, 15, 120 }, + [17] = { 57.6, 20.5, 15, 360 }, + [18] = { 57.2, 19.9, 15, 120 }, + }, + ["lvl"] = "35-36", + }, + [4359] = { + ["coords"] = { + [1] = { 57.3, 22.5, 15, 360 }, + [2] = { 56.6, 21.5, 15, 360 }, + [3] = { 57.8, 21.4, 15, 360 }, + [4] = { 54.7, 16.5, 15, 360 }, + [5] = { 58.1, 15.9, 15, 360 }, + [6] = { 58, 15.4, 15, 360 }, + [7] = { 58.9, 14.9, 15, 360 }, + [8] = { 57, 21.9, 15, 120 }, + [9] = { 56.8, 21.6, 15, 360 }, + [10] = { 57.3, 21.4, 15, 120 }, + [11] = { 57.1, 21.1, 15, 360 }, + [12] = { 57.4, 21, 15, 120 }, + [13] = { 56.9, 21, 15, 120 }, + [14] = { 56.6, 21, 15, 120 }, + [15] = { 57.1, 20.9, 15, 120 }, + [16] = { 57.3, 20.8, 15, 360 }, + [17] = { 57.2, 20.5, 15, 120 }, + [18] = { 57.6, 20.5, 15, 360 }, + }, + ["lvl"] = "35-36", + }, + [4360] = { + ["coords"] = { + [1] = { 64.4, 29.1, 15, 360 }, + [2] = { 64.8, 29.1, 15, 360 }, + [3] = { 63, 29.1, 15, 360 }, + [4] = { 63.6, 29, 15, 360 }, + [5] = { 64.3, 28.1, 15, 360 }, + [6] = { 63.6, 28, 15, 360 }, + [7] = { 63, 28, 15, 360 }, + [8] = { 63.1, 27.4, 15, 360 }, + [9] = { 64.3, 27.2, 15, 360 }, + [10] = { 63.7, 27.2, 15, 360 }, + [11] = { 63, 27, 15, 360 }, + [12] = { 64.5, 26.8, 15, 360 }, + [13] = { 63.1, 26.3, 15, 360 }, + [14] = { 64.2, 26.3, 15, 360 }, + [15] = { 63, 19.5, 15, 360 }, + [16] = { 63.7, 19.4, 15, 360 }, + [17] = { 63.1, 19.1, 15, 360 }, + [18] = { 62.4, 18.7, 15, 360 }, + [19] = { 63.6, 18.6, 15, 360 }, + [20] = { 63.6, 17.6, 15, 360 }, + [21] = { 63, 17.5, 15, 360 }, + [22] = { 59.2, 10.9, 15, 360 }, + [23] = { 57.5, 10.6, 15, 360 }, + [24] = { 58.6, 10.1, 15, 360 }, + [25] = { 58.3, 9.6, 15, 360 }, + [26] = { 59.9, 9, 15, 360 }, + [27] = { 66.2, 59.6, 17, 360 }, + [28] = { 65.3, 59.5, 17, 360 }, + [29] = { 65.8, 59.2, 17, 360 }, + [30] = { 65.7, 58.9, 17, 360 }, + [31] = { 66.5, 58.6, 17, 360 }, + }, + ["lvl"] = "37-38", + }, + [4361] = { + ["coords"] = { + [1] = { 63.9, 27.6, 15, 360 }, + [2] = { 64.4, 26.8, 15, 360 }, + [3] = { 63.6, 26.3, 15, 360 }, + [4] = { 64.9, 26.2, 15, 360 }, + [5] = { 61.7, 19.5, 15, 360 }, + [6] = { 63, 19, 15, 360 }, + [7] = { 63, 18.7, 15, 360 }, + [8] = { 61.6, 18.5, 15, 360 }, + [9] = { 62.3, 17.2, 15, 360 }, + [10] = { 58.4, 16.9, 15, 360 }, + [11] = { 56.1, 16.7, 15, 360 }, + [12] = { 55.4, 16.6, 15, 360 }, + [13] = { 58.9, 16.3, 15, 360 }, + [14] = { 58, 16.3, 15, 360 }, + [15] = { 57.1, 16.3, 15, 360 }, + [16] = { 58.2, 16.3, 15, 360 }, + [17] = { 58.5, 16.2, 15, 360 }, + [18] = { 58.3, 16.1, 15, 360 }, + [19] = { 58.6, 15.7, 15, 360 }, + [20] = { 57.6, 15.7, 15, 360 }, + [21] = { 54.2, 15.6, 15, 360 }, + [22] = { 57.3, 15.5, 15, 360 }, + [23] = { 58.3, 15.5, 15, 360 }, + [24] = { 59, 15.4, 15, 360 }, + [25] = { 57.4, 15.3, 15, 360 }, + [26] = { 58.4, 15.3, 15, 360 }, + [27] = { 53.8, 15.2, 15, 360 }, + [28] = { 57.5, 15.1, 15, 360 }, + [29] = { 54.2, 15.1, 15, 360 }, + [30] = { 54, 15, 15, 360 }, + [31] = { 57, 14.9, 15, 360 }, + [32] = { 54.3, 14.8, 15, 360 }, + [33] = { 58.4, 14.6, 15, 360 }, + [34] = { 54.4, 14, 15, 360 }, + [35] = { 57.1, 11.3, 15, 360 }, + [36] = { 58, 11.2, 15, 360 }, + [37] = { 59.6, 9.8, 15, 360 }, + [38] = { 59.2, 9.7, 15, 360 }, + [39] = { 59.1, 9.1, 15, 360 }, + [40] = { 63.1, 8.9, 15, 360 }, + [41] = { 58.2, 8.7, 15, 360 }, + [42] = { 58.7, 8.3, 15, 360 }, + [43] = { 63.7, 8.3, 15, 360 }, + [44] = { 62.9, 8.1, 15, 360 }, + [45] = { 62.5, 8, 15, 360 }, + [46] = { 59.9, 7.3, 15, 360 }, + [47] = { 63.1, 7.1, 15, 360 }, + [48] = { 63.5, 6.5, 15, 360 }, + [49] = { 63, 6.2, 15, 360 }, + [50] = { 65.1, 59.8, 17, 360 }, + [51] = { 65.5, 59.8, 17, 360 }, + [52] = { 66.4, 59, 17, 360 }, + [53] = { 66.2, 59, 17, 360 }, + [54] = { 66.1, 58.7, 17, 360 }, + [55] = { 68.2, 58.6, 17, 360 }, + [56] = { 65.7, 58.5, 17, 360 }, + [57] = { 65.9, 58.3, 17, 360 }, + [58] = { 68.5, 58.2, 17, 360 }, + [59] = { 68.1, 58.2, 17, 360 }, + [60] = { 67.9, 58.1, 17, 360 }, + [61] = { 66.5, 57.7, 17, 360 }, + [62] = { 68.2, 57.6, 17, 360 }, + [63] = { 68.4, 57.3, 17, 360 }, + [64] = { 68.1, 57.2, 17, 360 }, + [65] = { 64.4, 29.1, 15, 360 }, + [66] = { 63, 29.1, 15, 360 }, + [67] = { 63.6, 29, 15, 360 }, + [68] = { 63.6, 28, 15, 360 }, + [69] = { 63, 28, 15, 360 }, + [70] = { 64.2, 26.3, 15, 360 }, + [71] = { 63.7, 19.4, 15, 360 }, + [72] = { 59.2, 10.9, 15, 360 }, + [73] = { 58.6, 10.1, 15, 360 }, + [74] = { 66.2, 59.6, 17, 360 }, + [75] = { 65.8, 59.2, 17, 360 }, + }, + ["lvl"] = "36-37", + }, + [4362] = { + ["coords"] = { + [1] = { 64.9, 28.1, 15, 360 }, + [2] = { 64, 28, 15, 360 }, + [3] = { 63.2, 27.2, 15, 360 }, + [4] = { 64.8, 27.1, 15, 360 }, + [5] = { 62.6, 19.6, 15, 360 }, + [6] = { 62.8, 18.9, 15, 360 }, + [7] = { 61.2, 18.4, 15, 360 }, + [8] = { 61.7, 18.2, 15, 360 }, + [9] = { 62.8, 18, 15, 360 }, + [10] = { 61.3, 17.6, 15, 360 }, + [11] = { 62.2, 17.5, 15, 360 }, + [12] = { 57.4, 16.7, 15, 360 }, + [13] = { 56.9, 16.5, 15, 360 }, + [14] = { 55, 16.3, 15, 360 }, + [15] = { 57.4, 16, 15, 360 }, + [16] = { 58.4, 15.9, 15, 360 }, + [17] = { 57.6, 15.9, 15, 360 }, + [18] = { 56.8, 15.6, 15, 360 }, + [19] = { 54.7, 15.6, 15, 360 }, + [20] = { 57.6, 15.2, 15, 360 }, + [21] = { 54, 15.2, 15, 360 }, + [22] = { 57.8, 14.9, 15, 360 }, + [23] = { 54.7, 14.8, 15, 360 }, + [24] = { 57.5, 14.7, 15, 360 }, + [25] = { 64.8, 29.1, 15, 360 }, + [26] = { 63.1, 27.4, 15, 360 }, + [27] = { 63.7, 27.2, 15, 360 }, + [28] = { 63, 27, 15, 360 }, + [29] = { 64.9, 26.2, 15, 360 }, + [30] = { 63, 18.7, 15, 360 }, + [31] = { 63.6, 17.6, 15, 360 }, + [32] = { 63, 17.5, 15, 360 }, + [33] = { 62.3, 17.2, 15, 360 }, + [34] = { 58.4, 16.9, 15, 360 }, + [35] = { 54.7, 16.5, 15, 360 }, + [36] = { 58.9, 16.3, 15, 360 }, + [37] = { 58, 16.3, 15, 360 }, + [38] = { 57.1, 16.3, 15, 360 }, + [39] = { 58.3, 16.1, 15, 360 }, + [40] = { 58.6, 15.7, 15, 360 }, + [41] = { 57.6, 15.7, 15, 360 }, + [42] = { 58, 15.4, 15, 360 }, + [43] = { 59, 15.4, 15, 360 }, + [44] = { 58.4, 15.3, 15, 360 }, + [45] = { 57.5, 15.1, 15, 360 }, + [46] = { 54.3, 14.8, 15, 360 }, + [47] = { 54.4, 14, 15, 360 }, + [48] = { 64.4, 29.1, 15, 360 }, + [49] = { 63, 29.1, 15, 360 }, + }, + ["lvl"] = "36-37", + }, + [4363] = { + ["coords"] = { + [1] = { 61.7, 18, 15, 360 }, + [2] = { 61.9, 17.5, 15, 360 }, + [3] = { 57.2, 10.7, 15, 360 }, + [4] = { 57.5, 10.4, 15, 360 }, + [5] = { 57.9, 10, 15, 360 }, + [6] = { 59.9, 10, 15, 360 }, + [7] = { 59.1, 9.9, 15, 360 }, + [8] = { 59.6, 9.5, 15, 360 }, + [9] = { 63.1, 7.3, 15, 360 }, + [10] = { 62.4, 7.2, 15, 360 }, + [11] = { 62.9, 7, 15, 360 }, + [12] = { 63.4, 7, 15, 360 }, + [13] = { 63.8, 7, 15, 360 }, + [14] = { 65.1, 59.5, 17, 360 }, + [15] = { 65.3, 59.3, 17, 360 }, + [16] = { 65.5, 59.2, 17, 360 }, + [17] = { 66.5, 59.1, 17, 360 }, + [18] = { 66.1, 59.1, 17, 360 }, + [19] = { 66.4, 58.9, 17, 360 }, + [20] = { 68.2, 57.7, 17, 360 }, + [21] = { 67.8, 57.7, 17, 360 }, + [22] = { 68.1, 57.6, 17, 360 }, + [23] = { 68.4, 57.6, 17, 360 }, + [24] = { 68.6, 57.6, 17, 360 }, + [25] = { 64.3, 28.1, 15, 360 }, + [26] = { 64, 28, 15, 360 }, + [27] = { 63.9, 27.6, 15, 360 }, + [28] = { 63.2, 27.2, 15, 360 }, + [29] = { 64.3, 27.2, 15, 360 }, + [30] = { 64.4, 26.8, 15, 360 }, + [31] = { 64.5, 26.8, 15, 360 }, + [32] = { 63.1, 19.1, 15, 360 }, + [33] = { 63, 19, 15, 360 }, + [34] = { 62.4, 18.7, 15, 360 }, + [35] = { 63.6, 18.6, 15, 360 }, + [36] = { 62.8, 18, 15, 360 }, + [37] = { 57.1, 11.3, 15, 360 }, + [38] = { 58.3, 9.6, 15, 360 }, + [39] = { 65.1, 59.8, 17, 360 }, + [40] = { 65.7, 58.9, 17, 360 }, + [41] = { 63.6, 29, 15, 360 }, + [42] = { 59.2, 10.9, 15, 360 }, + [43] = { 58.6, 10.1, 15, 360 }, + [44] = { 66.2, 59.6, 17, 360 }, + [45] = { 65.8, 59.2, 17, 360 }, + [46] = { 64.4, 29.1, 15, 360 }, + }, + ["lvl"] = "37-38", + }, + [4364] = { + ["coords"] = { + [1] = { 75.5, 21.5, 15, 1200 }, + [2] = { 77.3, 20.1, 15, 1200 }, + [3] = { 77, 18.4, 15, 1200 }, + [4] = { 74.8, 15.1, 15, 1200 }, + [5] = { 75.1, 14.8, 15, 1200 }, + }, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [4366] = { + ["coords"] = { + [1] = { 75.6, 22, 15, 1200 }, + [2] = { 76.3, 19.5, 15, 1200 }, + [3] = { 75.7, 18.5, 15, 1200 }, + [4] = { 75.1, 17.7, 15, 1200 }, + [5] = { 77.7, 17.7, 15, 5400 }, + [6] = { 77.3, 17.5, 15, 5400 }, + [7] = { 77.8, 17.4, 15, 5400 }, + [8] = { 77.7, 17.4, 15, 5400 }, + [9] = { 77.4, 17.3, 15, 5400 }, + [10] = { 77.7, 17.2, 15, 5400 }, + [11] = { 77.7, 17.1, 15, 5400 }, + [12] = { 74.4, 16.7, 15, 1200 }, + [13] = { 75.2, 14.5, 15, 1200 }, + [14] = { 75.1, 14.2, 15, 1200 }, + }, + ["lvl"] = "59-61", + ["rnk"] = "1", + }, + [4368] = { + ["coords"] = { + [1] = { 77.1, 19.5, 15, 1200 }, + [2] = { 77.4, 19, 15, 1200 }, + [3] = { 77.2, 18.9, 15, 1200 }, + [4] = { 76.4, 18.4, 15, 1200 }, + [5] = { 76.5, 17.7, 15, 1200 }, + [6] = { 76.6, 17.6, 15, 1200 }, + [7] = { 77.8, 17.3, 15, 5400 }, + [8] = { 76.9, 17.1, 15, 1200 }, + }, + ["lvl"] = "60-61", + ["rnk"] = "1", + }, + [4370] = { + ["coords"] = { + [1] = { 76.5, 22.2, 15, 1200 }, + [2] = { 77.4, 19, 15, 1200 }, + [3] = { 75.4, 14.6, 15, 1200 }, + [4] = { 75.1, 17.7, 15, 1200 }, + }, + ["lvl"] = "60-61", + ["rnk"] = "1", + }, + [4371] = { + ["coords"] = { + [1] = { 75.3, 21.8, 15, 1200 }, + [2] = { 76.7, 20.4, 15, 1200 }, + [3] = { 77.2, 19.3, 15, 1200 }, + [4] = { 73.2, 18.5, 15, 1200 }, + [5] = { 74.3, 18.4, 15, 1200 }, + [6] = { 76.5, 17.4, 15, 1200 }, + }, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [4374] = { + ["coords"] = { + [1] = { 70.5, 22.6, 15, 1200 }, + [2] = { 70.1, 21.3, 15, 1200 }, + [3] = { 76.6, 21.1, 15, 1200 }, + [4] = { 70.6, 20.5, 15, 1200 }, + [5] = { 69.3, 20.4, 15, 1200 }, + [6] = { 69.8, 19.2, 15, 1200 }, + [7] = { 71.8, 18.9, 15, 1200 }, + [8] = { 69.3, 18.6, 15, 1200 }, + [9] = { 70.7, 18.4, 15, 1200 }, + [10] = { 70.1, 17.8, 15, 1200 }, + [11] = { 74.4, 17.7, 15, 1200 }, + [12] = { 70.5, 16.9, 15, 1200 }, + }, + ["lvl"] = "59-61", + ["rnk"] = "1", + }, + [4376] = { + ["coords"] = { + [1] = { 34.5, 25.3, 15, 360 }, + [2] = { 34.8, 24.3, 15, 360 }, + [3] = { 35.1, 24.2, 15, 360 }, + [4] = { 34.3, 24.1, 15, 360 }, + [5] = { 32.5, 23.3, 15, 360 }, + [6] = { 34.3, 23.2, 15, 360 }, + [7] = { 33.8, 22.4, 15, 360 }, + [8] = { 35.1, 22.4, 15, 360 }, + [9] = { 32.3, 22.3, 15, 360 }, + [10] = { 31.5, 22, 15, 360 }, + [11] = { 34.1, 21.9, 15, 360 }, + [12] = { 31.3, 21.9, 15, 360 }, + [13] = { 30.3, 21.8, 15, 360 }, + [14] = { 35.1, 21.4, 15, 360 }, + [15] = { 34.4, 21.4, 15, 360 }, + [16] = { 33.8, 21.4, 15, 360 }, + [17] = { 30.2, 21.3, 15, 360 }, + [18] = { 34.4, 20.9, 15, 360 }, + [19] = { 35, 20.4, 15, 360 }, + [20] = { 30.8, 20.3, 15, 360 }, + [21] = { 53.4, 67.1, 17, 360 }, + [22] = { 53.5, 66.5, 17, 360 }, + [23] = { 53.7, 66.5, 17, 360 }, + [24] = { 53.3, 66.5, 17, 360 }, + [25] = { 52.3, 66, 17, 360 }, + [26] = { 53.3, 66, 17, 360 }, + [27] = { 53, 65.6, 17, 360 }, + [28] = { 53.7, 65.6, 17, 360 }, + [29] = { 52.3, 65.5, 17, 360 }, + [30] = { 51.8, 65.3, 17, 360 }, + [31] = { 53.2, 65.3, 17, 360 }, + [32] = { 51.7, 65.3, 17, 360 }, + [33] = { 51.2, 65.2, 17, 360 }, + [34] = { 53.7, 65.1, 17, 360 }, + [35] = { 53.3, 65.1, 17, 360 }, + [36] = { 53, 65.1, 17, 360 }, + [37] = { 51.2, 65, 17, 360 }, + [38] = { 53.3, 64.8, 17, 360 }, + [39] = { 53.7, 64.5, 17, 360 }, + [40] = { 51.5, 64.5, 17, 360 }, + }, + ["lvl"] = "35-36", + }, + [4377] = { + ["coords"] = { + [1] = { 33, 22.8, 15, 360 }, + [2] = { 32.6, 22.6, 15, 360 }, + [3] = { 31.5, 22.5, 15, 360 }, + [4] = { 32.5, 22.5, 15, 120 }, + [5] = { 32, 22.5, 15, 360 }, + [6] = { 31.9, 22.2, 15, 360 }, + [7] = { 52.6, 65.8, 17, 360 }, + [8] = { 52.4, 65.7, 17, 360 }, + [9] = { 51.8, 65.6, 17, 360 }, + [10] = { 52.4, 65.6, 17, 120 }, + [11] = { 52.1, 65.6, 17, 360 }, + [12] = { 52.1, 65.5, 17, 360 }, + [13] = { 32.5, 23.3, 15, 360 }, + [14] = { 52.3, 66, 17, 360 }, + }, + ["lvl"] = "37-38", + }, + [4378] = { + ["coords"] = { + [1] = { 34.9, 23.1, 15, 360 }, + [2] = { 34.1, 22.9, 15, 360 }, + [3] = { 30.7, 22.3, 15, 360 }, + [4] = { 31.3, 22, 15, 360 }, + [5] = { 32.8, 21.3, 15, 360 }, + [6] = { 33.6, 20.6, 15, 360 }, + [7] = { 30.6, 20.3, 15, 360 }, + [8] = { 53.6, 65.9, 17, 360 }, + [9] = { 53.2, 65.8, 17, 360 }, + [10] = { 51.4, 65.5, 17, 360 }, + [11] = { 51.7, 65.4, 17, 360 }, + [12] = { 52.5, 65, 17, 360 }, + [13] = { 52.9, 64.6, 17, 360 }, + [14] = { 51.4, 64.5, 17, 360 }, + [15] = { 34.5, 25.3, 15, 360 }, + [16] = { 35.1, 24.2, 15, 360 }, + [17] = { 34.3, 24.1, 15, 360 }, + [18] = { 32.6, 22.6, 15, 360 }, + [19] = { 33.8, 22.4, 15, 360 }, + [20] = { 35.1, 22.4, 15, 360 }, + [21] = { 34.1, 21.9, 15, 360 }, + [22] = { 35.1, 21.4, 15, 360 }, + [23] = { 34.4, 21.4, 15, 360 }, + [24] = { 33.8, 21.4, 15, 360 }, + [25] = { 34.4, 20.9, 15, 360 }, + [26] = { 35, 20.4, 15, 360 }, + [27] = { 53.4, 67.1, 17, 360 }, + [28] = { 53.7, 66.5, 17, 360 }, + [29] = { 53.3, 66.5, 17, 360 }, + [30] = { 52.4, 65.7, 17, 360 }, + [31] = { 53, 65.6, 17, 360 }, + [32] = { 53.7, 65.6, 17, 360 }, + [33] = { 53.2, 65.3, 17, 360 }, + [34] = { 53.7, 65.1, 17, 360 }, + [35] = { 53.3, 65.1, 17, 360 }, + [36] = { 53, 65.1, 17, 360 }, + [37] = { 53.3, 64.8, 17, 360 }, + [38] = { 53.7, 64.5, 17, 360 }, + }, + ["lvl"] = "36-37", + }, + [4379] = { + ["coords"] = { + [1] = { 34.8, 22.8, 15, 360 }, + [2] = { 31.1, 22.5, 15, 360 }, + [3] = { 30.8, 22.4, 15, 360 }, + [4] = { 34.4, 22.3, 15, 360 }, + [5] = { 31.8, 21.5, 15, 360 }, + [6] = { 31.2, 21.5, 15, 360 }, + [7] = { 35.7, 21.1, 15, 360 }, + [8] = { 30.6, 20.8, 15, 360 }, + [9] = { 53.5, 65.8, 17, 360 }, + [10] = { 51.6, 65.6, 17, 360 }, + [11] = { 51.5, 65.6, 17, 360 }, + [12] = { 53.3, 65.5, 17, 360 }, + [13] = { 52, 65.1, 17, 360 }, + [14] = { 51.7, 65.1, 17, 360 }, + [15] = { 54, 64.9, 17, 360 }, + [16] = { 51.4, 64.8, 17, 360 }, + [17] = { 34.8, 24.3, 15, 360 }, + [18] = { 34.3, 23.2, 15, 360 }, + [19] = { 34.9, 23.1, 15, 360 }, + [20] = { 33, 22.8, 15, 360 }, + [21] = { 31.5, 22.5, 15, 360 }, + [22] = { 32, 22.5, 15, 360 }, + [23] = { 30.7, 22.3, 15, 360 }, + [24] = { 32.3, 22.3, 15, 360 }, + [25] = { 31.9, 22.2, 15, 360 }, + [26] = { 31.5, 22, 15, 360 }, + [27] = { 31.3, 21.9, 15, 360 }, + [28] = { 32.8, 21.3, 15, 360 }, + [29] = { 33.6, 20.6, 15, 360 }, + [30] = { 30.8, 20.3, 15, 360 }, + [31] = { 53.5, 66.5, 17, 360 }, + [32] = { 53.3, 66, 17, 360 }, + [33] = { 53.6, 65.9, 17, 360 }, + [34] = { 52.6, 65.8, 17, 360 }, + [35] = { 51.8, 65.6, 17, 360 }, + [36] = { 52.1, 65.6, 17, 360 }, + [37] = { 51.4, 65.5, 17, 360 }, + [38] = { 52.3, 65.5, 17, 360 }, + [39] = { 52.1, 65.5, 17, 360 }, + [40] = { 51.8, 65.3, 17, 360 }, + [41] = { 51.7, 65.3, 17, 360 }, + [42] = { 52.5, 65, 17, 360 }, + [43] = { 52.9, 64.6, 17, 360 }, + [44] = { 51.5, 64.5, 17, 360 }, + [45] = { 33.8, 21.4, 15, 360 }, + [46] = { 34.4, 20.9, 15, 360 }, + [47] = { 53, 65.1, 17, 360 }, + [48] = { 53.3, 64.8, 17, 360 }, + }, + ["lvl"] = "38-39", + }, + [4380] = { + ["coords"] = { + [1] = { 31.2, 20.4, 15, 18000 }, + [2] = { 51.6, 64.5, 17, 18000 }, + }, + ["lvl"] = "40", + ["rnk"] = "4", + }, + [4382] = { + ["coords"] = { + [1] = { 54.2, 30.9, 15, 360 }, + [2] = { 57.8, 25.7, 15, 120 }, + [3] = { 38.5, 23.1, 15, 360 }, + [4] = { 40, 20.8, 15, 360 }, + [5] = { 37.5, 19.6, 15, 360 }, + [6] = { 37.5, 13.4, 15, 360 }, + [7] = { 54.9, 64.1, 17, 360 }, + [8] = { 54.9, 60.9, 17, 360 }, + }, + ["lvl"] = "35-36", + }, + [4385] = { + ["coords"] = { + [1] = { 41.4, 62.2, 15, 360 }, + [2] = { 50.2, 59.2, 15, 360 }, + [3] = { 35.5, 57.5, 15, 360 }, + [4] = { 37.2, 50.6, 15, 360 }, + [5] = { 43.4, 23.3, 15, 360 }, + [6] = { 53.9, 83.7, 17, 360 }, + [7] = { 54.8, 80.2, 17, 360 }, + }, + ["lvl"] = "38-39", + }, + [4386] = { + ["coords"] = { + [1] = { 40.4, 45.9, 15, 120 }, + [2] = { 34.7, 45.9, 15, 120 }, + [3] = { 42.2, 39.6, 15, 120 }, + [4] = { 42.1, 37.2, 15, 120 }, + [5] = { 37.4, 35.6, 15, 120 }, + [6] = { 39.8, 33.6, 15, 120 }, + [7] = { 50.7, 19.9, 15, 120 }, + [8] = { 53.5, 77.7, 17, 120 }, + [9] = { 54.9, 72.4, 17, 120 }, + [10] = { 57.8, 25.7, 15, 120 }, + }, + ["lvl"] = "36-37", + }, + [4387] = { + ["coords"] = { + [1] = { 42.8, 64.4, 15, 360 }, + [2] = { 47.7, 54.7, 15, 360 }, + [3] = { 42.9, 52.8, 15, 360 }, + [4] = { 43.9, 47.4, 15, 360 }, + [5] = { 34.8, 47.3, 15, 360 }, + [6] = { 35.9, 37.1, 15, 360 }, + [7] = { 53.5, 78.4, 17, 360 }, + [8] = { 54.1, 73.2, 17, 360 }, + [9] = { 50.2, 59.2, 15, 360 }, + [10] = { 35.5, 57.5, 15, 360 }, + [11] = { 37.2, 50.6, 15, 360 }, + [12] = { 53.9, 83.7, 17, 360 }, + [13] = { 54.8, 80.2, 17, 360 }, + }, + ["lvl"] = "37-38", + }, + [4388] = { + ["coords"] = { + [1] = { 59.6, 50.3, 15, 360 }, + [2] = { 57, 47, 15, 360 }, + [3] = { 53.1, 44.6, 15, 360 }, + [4] = { 52, 44.5, 15, 360 }, + [5] = { 56.6, 44.5, 15, 360 }, + [6] = { 55.3, 44.1, 15, 360 }, + [7] = { 58.3, 44, 15, 360 }, + [8] = { 54.7, 43.3, 15, 360 }, + [9] = { 52.9, 42.3, 15, 360 }, + [10] = { 54.9, 41.9, 15, 360 }, + [11] = { 52.3, 41.7, 15, 360 }, + [12] = { 50.1, 41.1, 15, 360 }, + [13] = { 50.3, 40.5, 15, 360 }, + [14] = { 52.8, 39.8, 15, 360 }, + [15] = { 51.3, 39.1, 15, 360 }, + [16] = { 52.9, 38.3, 15, 360 }, + [17] = { 47.9, 38.2, 15, 360 }, + [18] = { 49, 38.2, 15, 360 }, + [19] = { 49.4, 38, 15, 360 }, + [20] = { 51.4, 37.5, 15, 360 }, + [21] = { 47.7, 37.2, 15, 360 }, + [22] = { 50.4, 36.5, 15, 360 }, + [23] = { 48.8, 36.2, 15, 120 }, + [24] = { 49.6, 35.9, 15, 360 }, + [25] = { 46.9, 35.4, 15, 360 }, + [26] = { 49.4, 34.2, 15, 360 }, + [27] = { 45.6, 34.1, 15, 120 }, + [28] = { 47, 31.9, 15, 360 }, + [29] = { 46, 31.3, 15, 360 }, + [30] = { 48, 30.8, 15, 360 }, + }, + ["lvl"] = "39-41", + }, + [4389] = { + ["coords"] = { + [1] = { 59.2, 63.2, 15, 120 }, + [2] = { 60.9, 62.4, 15, 120 }, + [3] = { 57.4, 60.2, 15, 120 }, + [4] = { 61.7, 57.6, 15, 120 }, + [5] = { 59.5, 53.3, 15, 120 }, + }, + ["lvl"] = "41-43", + }, + [4390] = { + ["coords"] = { + [1] = { 64.6, 68.1, 15, 120 }, + [2] = { 64.6, 66.8, 15, 120 }, + [3] = { 66.9, 65.8, 15, 120 }, + [4] = { 65.5, 65.3, 15, 120 }, + [5] = { 66.2, 64.2, 15, 120 }, + [6] = { 69.5, 62.7, 15, 120 }, + [7] = { 68, 62.6, 15, 120 }, + [8] = { 71.3, 62.5, 15, 120 }, + [9] = { 70.8, 62.3, 15, 120 }, + [10] = { 66.8, 62.3, 15, 120 }, + [11] = { 72, 60.7, 15, 120 }, + }, + ["lvl"] = "43-45", + }, + [4391] = { + ["coords"] = { + [1] = { 47.9, 60.3, 15, 360 }, + [2] = { 42.1, 57.7, 15, 360 }, + [3] = { 37.1, 57.6, 15, 360 }, + [4] = { 47.9, 57.2, 15, 360 }, + [5] = { 37.7, 55.1, 15, 360 }, + [6] = { 43.8, 55.1, 15, 360 }, + [7] = { 40.5, 53.4, 15, 360 }, + [8] = { 34.1, 52.8, 15, 360 }, + [9] = { 36.8, 52.2, 15, 360 }, + [10] = { 42.1, 51.5, 15, 360 }, + [11] = { 38.5, 51.2, 15, 360 }, + [12] = { 36.6, 49.1, 15, 360 }, + [13] = { 35.2, 48.7, 15, 360 }, + [14] = { 54.7, 83.8, 17, 360 }, + [15] = { 55, 82.5, 17, 360 }, + [16] = { 53.2, 81.3, 17, 360 }, + [17] = { 54.6, 81, 17, 360 }, + [18] = { 54.5, 79.4, 17, 360 }, + [19] = { 53.7, 79.2, 17, 360 }, + [20] = { 49.5, 63.7, 15, 360 }, + [21] = { 48.3, 63.3, 15, 360 }, + [22] = { 42.2, 63.1, 15, 360 }, + [23] = { 48.1, 62.4, 15, 360 }, + [24] = { 48.9, 62.1, 15, 360 }, + [25] = { 46.6, 61.9, 15, 360 }, + [26] = { 43.3, 61.7, 15, 360 }, + [27] = { 48.5, 61.6, 15, 360 }, + [28] = { 43.8, 60.7, 15, 360 }, + [29] = { 41.5, 60.4, 15, 360 }, + [30] = { 40.2, 60.1, 15, 360 }, + [31] = { 45.6, 60, 15, 360 }, + [32] = { 41.9, 59.8, 15, 360 }, + [33] = { 49.6, 59.5, 15, 360 }, + [34] = { 35.4, 59.4, 15, 360 }, + [35] = { 48.2, 59.2, 15, 360 }, + [36] = { 48.8, 59, 15, 360 }, + [37] = { 47.9, 58.5, 15, 360 }, + [38] = { 33.2, 57.8, 15, 360 }, + [39] = { 39.8, 57.2, 15, 360 }, + [40] = { 36.4, 56.7, 15, 360 }, + [41] = { 45.7, 56.1, 15, 360 }, + [42] = { 39.6, 55.6, 15, 360 }, + [43] = { 35.8, 55.5, 15, 360 }, + [44] = { 47, 55.5, 15, 360 }, + [45] = { 45.3, 54.9, 15, 360 }, + [46] = { 33.9, 54.8, 15, 360 }, + [47] = { 40.1, 54.7, 15, 360 }, + [48] = { 36.9, 54.1, 15, 360 }, + [49] = { 43.2, 53.9, 15, 360 }, + [50] = { 43.9, 53, 15, 360 }, + [51] = { 38.5, 52.4, 15, 360 }, + [52] = { 35.8, 51.4, 15, 360 }, + [53] = { 41.3, 49, 15, 360 }, + [54] = { 44.1, 49, 15, 360 }, + [55] = { 44.8, 48.7, 15, 360 }, + [56] = { 43.4, 48.2, 15, 360 }, + [57] = { 40.8, 48.2, 15, 360 }, + [58] = { 41.7, 47.6, 15, 360 }, + [59] = { 40.2, 47.4, 15, 360 }, + [60] = { 42, 46.9, 15, 360 }, + [61] = { 43.9, 46.8, 15, 360 }, + [62] = { 39.1, 46.4, 15, 360 }, + [63] = { 53.9, 84.7, 17, 360 }, + [64] = { 52.7, 83.9, 17, 360 }, + [65] = { 54.4, 83.3, 17, 360 }, + [66] = { 54, 82.7, 17, 360 }, + [67] = { 53.1, 82.3, 17, 360 }, + [68] = { 54.6, 82, 17, 360 }, + [69] = { 54, 80.6, 17, 360 }, + }, + ["lvl"] = "37-39", + }, + [4392] = { + ["coords"] = { + [1] = { 51.5, 59.3, 15, 120 }, + [2] = { 52.2, 58.5, 15, 120 }, + [3] = { 53.5, 58.4, 15, 120 }, + [4] = { 51.1, 58.2, 15, 120 }, + [5] = { 54, 57.9, 15, 120 }, + [6] = { 50.5, 57.6, 15, 120 }, + [7] = { 51.7, 57.5, 15, 120 }, + [8] = { 52.7, 57.5, 15, 120 }, + [9] = { 52.2, 56.6, 15, 360 }, + [10] = { 51.3, 56.5, 15, 120 }, + [11] = { 52.9, 56.1, 15, 120 }, + [12] = { 51.5, 55.6, 15, 120 }, + [13] = { 49.3, 55.5, 15, 360 }, + [14] = { 48.4, 54.8, 15, 360 }, + [15] = { 53.4, 54.7, 15, 360 }, + [16] = { 54.7, 54.5, 15, 360 }, + [17] = { 52.2, 54.3, 15, 120 }, + [18] = { 52.8, 54, 15, 120 }, + [19] = { 54, 53.7, 15, 360 }, + [20] = { 48.8, 53.6, 15, 120 }, + [21] = { 53.5, 53, 15, 120 }, + [22] = { 52.5, 52.6, 15, 120 }, + [23] = { 53, 52.1, 15, 360 }, + [24] = { 46.3, 52, 15, 360 }, + [25] = { 49, 51.9, 15, 120 }, + [26] = { 51.4, 51.9, 15, 120 }, + [27] = { 47.8, 51.5, 15, 360 }, + [28] = { 51.2, 51.4, 15, 360 }, + [29] = { 49.6, 51.1, 15, 120 }, + [30] = { 45.7, 50.8, 15, 360 }, + [31] = { 50.1, 50.4, 15, 120 }, + [32] = { 45.6, 50, 15, 120 }, + [33] = { 49.2, 49.9, 15, 360 }, + [34] = { 46.4, 49.8, 15, 120 }, + [35] = { 47, 48.7, 15, 120 }, + [36] = { 46.5, 47.8, 15, 120 }, + [37] = { 47.1, 46.7, 15, 360 }, + [38] = { 46.4, 46.2, 15, 360 }, + [39] = { 45.7, 45.2, 15, 360 }, + [40] = { 45.5, 44.7, 15, 120 }, + }, + ["lvl"] = "38-40", + }, + [4393] = { + ["coords"] = { + [1] = { 52.5, 56.9, 15, 360 }, + [2] = { 51.5, 59.3, 15, 120 }, + [3] = { 52.2, 58.5, 15, 120 }, + [4] = { 53.5, 58.4, 15, 120 }, + [5] = { 51.1, 58.2, 15, 120 }, + [6] = { 54, 57.9, 15, 120 }, + [7] = { 50.5, 57.6, 15, 120 }, + [8] = { 51.7, 57.5, 15, 120 }, + [9] = { 52.7, 57.5, 15, 120 }, + [10] = { 52.2, 56.6, 15, 360 }, + [11] = { 51.3, 56.5, 15, 120 }, + [12] = { 52.9, 56.1, 15, 120 }, + [13] = { 51.5, 55.6, 15, 120 }, + [14] = { 49.3, 55.5, 15, 360 }, + [15] = { 48.4, 54.8, 15, 360 }, + [16] = { 53.4, 54.7, 15, 360 }, + [17] = { 54.7, 54.5, 15, 360 }, + [18] = { 52.2, 54.3, 15, 120 }, + [19] = { 52.8, 54, 15, 120 }, + [20] = { 54, 53.7, 15, 360 }, + [21] = { 48.8, 53.6, 15, 120 }, + [22] = { 53.5, 53, 15, 120 }, + [23] = { 52.5, 52.6, 15, 120 }, + [24] = { 53, 52.1, 15, 360 }, + [25] = { 46.3, 52, 15, 360 }, + [26] = { 49, 51.9, 15, 120 }, + [27] = { 51.4, 51.9, 15, 120 }, + [28] = { 47.8, 51.5, 15, 360 }, + [29] = { 51.2, 51.4, 15, 360 }, + [30] = { 49.6, 51.1, 15, 120 }, + [31] = { 45.7, 50.8, 15, 360 }, + [32] = { 50.1, 50.4, 15, 120 }, + [33] = { 45.6, 50, 15, 120 }, + [34] = { 49.2, 49.9, 15, 360 }, + [35] = { 46.4, 49.8, 15, 120 }, + [36] = { 47, 48.7, 15, 120 }, + [37] = { 46.5, 47.8, 15, 120 }, + [38] = { 47.1, 46.7, 15, 360 }, + [39] = { 46.4, 46.2, 15, 360 }, + [40] = { 45.7, 45.2, 15, 360 }, + [41] = { 45.5, 44.7, 15, 120 }, + }, + ["lvl"] = "39-41", + }, + [4394] = { + ["coords"] = {}, + ["lvl"] = "39-40", + ["rnk"] = "1", + }, + [4395] = { + ["coords"] = {}, + ["lvl"] = "41-43", + }, + [4396] = { + ["coords"] = { + [1] = { 64.8, 40.8, 15, 360 }, + [2] = { 64.7, 39.7, 15, 360 }, + [3] = { 63.5, 38.2, 15, 360 }, + [4] = { 63.3, 36.4, 15, 360 }, + [5] = { 63, 33.9, 15, 360 }, + [6] = { 62.2, 33.5, 15, 360 }, + [7] = { 61.7, 30.8, 15, 360 }, + [8] = { 64.2, 30.6, 15, 360 }, + [9] = { 65.3, 30.1, 15, 360 }, + [10] = { 63.4, 29.3, 15, 360 }, + [11] = { 62.2, 28.8, 15, 360 }, + [12] = { 65.6, 28.1, 15, 360 }, + [13] = { 61.4, 27.3, 15, 360 }, + [14] = { 62, 26.6, 15, 360 }, + [15] = { 63.8, 25.4, 15, 360 }, + [16] = { 62.4, 25.3, 15, 360 }, + [17] = { 65, 24.8, 15, 360 }, + [18] = { 61.9, 22.7, 15, 360 }, + [19] = { 61.4, 21, 15, 360 }, + [20] = { 64.1, 20.4, 15, 360 }, + [21] = { 63.3, 20.1, 15, 360 }, + [22] = { 60.4, 16.5, 15, 360 }, + [23] = { 60, 15.4, 15, 360 }, + [24] = { 54.5, 13.5, 15, 360 }, + [25] = { 54.3, 12.9, 15, 360 }, + [26] = { 54.7, 12.5, 15, 360 }, + [27] = { 54.3, 11.4, 15, 360 }, + [28] = { 60.3, 10.9, 15, 360 }, + [29] = { 63.6, 59.9, 17, 360 }, + [30] = { 66.8, 59.6, 17, 360 }, + }, + ["lvl"] = "36-37", + }, + [4397] = { + ["coords"] = { + [1] = { 65, 42.2, 15, 360 }, + [2] = { 63.2, 37.5, 15, 360 }, + [3] = { 63.1, 35.7, 15, 360 }, + [4] = { 62.1, 31.1, 15, 360 }, + [5] = { 65.9, 30.6, 15, 180 }, + [6] = { 64.3, 30.1, 15, 180 }, + [7] = { 63, 30.1, 15, 180 }, + [8] = { 62.4, 28.6, 15, 180 }, + [9] = { 61.7, 28.1, 15, 180 }, + [10] = { 66.1, 28.1, 15, 180 }, + [11] = { 63.1, 25.9, 15, 360 }, + [12] = { 62.2, 20.8, 15, 360 }, + [13] = { 63.6, 20.2, 15, 360 }, + [14] = { 60.3, 19.3, 15, 360 }, + [15] = { 64.4, 18.7, 15, 360 }, + [16] = { 60.2, 18.6, 15, 360 }, + [17] = { 63.3, 17.1, 15, 360 }, + [18] = { 55.8, 15.9, 15, 360 }, + [19] = { 62.4, 15.7, 15, 360 }, + [20] = { 59.6, 14.5, 15, 360 }, + [21] = { 55.1, 14.3, 15, 360 }, + [22] = { 55, 13.2, 15, 360 }, + [23] = { 61.1, 11.1, 15, 360 }, + [24] = { 62.2, 10.1, 15, 360 }, + [25] = { 56.7, 9.2, 15, 360 }, + [26] = { 62.1, 9.1, 15, 360 }, + [27] = { 56.1, 9.1, 15, 275 }, + [28] = { 64.3, 9, 15, 360 }, + [29] = { 60.2, 8.7, 15, 360 }, + [30] = { 57.6, 8.7, 15, 360 }, + [31] = { 57.5, 7.8, 15, 360 }, + [32] = { 60, 7.7, 15, 360 }, + [33] = { 61.9, 7.7, 15, 360 }, + [34] = { 61.1, 7.6, 15, 360 }, + [35] = { 60.9, 7.6, 15, 360 }, + [36] = { 64.6, 7.2, 15, 360 }, + [37] = { 59.1, 6.8, 15, 360 }, + [38] = { 57.9, 6.4, 15, 360 }, + [39] = { 62.5, 5.6, 15, 360 }, + [40] = { 63, 5.3, 15, 360 }, + [41] = { 67.2, 59.7, 17, 360 }, + [42] = { 67.7, 59.2, 17, 360 }, + [43] = { 64.9, 58.7, 17, 360 }, + [44] = { 67.7, 58.7, 17, 360 }, + [45] = { 64.6, 58.7, 17, 275 }, + [46] = { 68.8, 58.6, 17, 360 }, + [47] = { 66.7, 58.5, 17, 360 }, + [48] = { 65.3, 58.4, 17, 360 }, + [49] = { 65.3, 58, 17, 360 }, + [50] = { 66.6, 57.9, 17, 360 }, + [51] = { 67.6, 57.9, 17, 360 }, + [52] = { 67.2, 57.9, 17, 360 }, + [53] = { 67.1, 57.9, 17, 360 }, + [54] = { 69, 57.7, 17, 360 }, + [55] = { 66.1, 57.5, 17, 360 }, + [56] = { 65.5, 57.3, 17, 360 }, + [57] = { 67.9, 56.9, 17, 360 }, + [58] = { 68.1, 56.7, 17, 360 }, + [59] = { 64.8, 40.8, 15, 360 }, + [60] = { 64.7, 39.7, 15, 360 }, + [61] = { 63.5, 38.2, 15, 360 }, + [62] = { 63.3, 36.4, 15, 360 }, + [63] = { 63, 33.9, 15, 360 }, + [64] = { 61.7, 30.8, 15, 360 }, + [65] = { 64.2, 30.6, 15, 360 }, + [66] = { 65.3, 30.1, 15, 360 }, + [67] = { 63.4, 29.3, 15, 360 }, + [68] = { 62, 26.6, 15, 360 }, + [69] = { 63.8, 25.4, 15, 360 }, + [70] = { 62.4, 25.3, 15, 360 }, + [71] = { 61.9, 22.7, 15, 360 }, + [72] = { 61.4, 21, 15, 360 }, + [73] = { 64.1, 20.4, 15, 360 }, + [74] = { 63.3, 20.1, 15, 360 }, + [75] = { 60.4, 16.5, 15, 360 }, + [76] = { 54.3, 12.9, 15, 360 }, + [77] = { 54.7, 12.5, 15, 360 }, + [78] = { 54.3, 11.4, 15, 360 }, + [79] = { 63.6, 59.9, 17, 360 }, + }, + ["lvl"] = "37-38", + }, + [4398] = { + ["coords"] = { + [1] = { 58.9, 51.5, 15, 120 }, + [2] = { 55.7, 48.7, 15, 120 }, + [3] = { 56.4, 48.5, 15, 120 }, + [4] = { 57.8, 48.4, 15, 120 }, + [5] = { 60.7, 47.8, 15, 120 }, + [6] = { 54.4, 47.7, 15, 120 }, + [7] = { 56.4, 45.8, 15, 120 }, + [8] = { 57.3, 45.4, 15, 120 }, + [9] = { 52, 43.5, 15, 360 }, + [10] = { 56.8, 42.7, 15, 120 }, + [11] = { 55.4, 42.5, 15, 120 }, + [12] = { 51.3, 42, 15, 120 }, + [13] = { 57.1, 40.9, 15, 120 }, + [14] = { 49.3, 40.7, 15, 120 }, + [15] = { 50, 39.7, 15, 120 }, + [16] = { 48.3, 39.1, 15, 120 }, + [17] = { 47.1, 34, 15, 120 }, + [18] = { 48.8, 36.2, 15, 120 }, + [19] = { 45.6, 34.1, 15, 120 }, + [20] = { 46, 31.3, 15, 360 }, + }, + ["lvl"] = "39-40", + }, + [4399] = { + ["coords"] = { + [1] = { 60.9, 65.6, 15, 120 }, + [2] = { 59.2, 65.3, 15, 120 }, + [3] = { 61.6, 65.1, 15, 120 }, + [4] = { 58.3, 64, 15, 120 }, + [5] = { 60.1, 63.9, 15, 120 }, + [6] = { 59.6, 63.4, 15, 120 }, + [7] = { 62.2, 62.7, 15, 120 }, + [8] = { 58.7, 62, 15, 120 }, + [9] = { 60.4, 61.8, 15, 120 }, + [10] = { 61.5, 61, 15, 120 }, + [11] = { 60, 52.8, 15, 120 }, + }, + ["lvl"] = "42-43", + }, + [4400] = { + ["coords"] = { + [1] = { 57, 62, 15, 120 }, + [2] = { 58.7, 60.3, 15, 120 }, + [3] = { 61.7, 60, 15, 120 }, + [4] = { 60.8, 59.9, 15, 120 }, + [5] = { 59.9, 58.4, 15, 120 }, + [6] = { 60.4, 57.5, 15, 120 }, + [7] = { 59.5, 56.4, 15, 120 }, + [8] = { 61.7, 55.5, 15, 120 }, + [9] = { 59.8, 54.7, 15, 120 }, + [10] = { 61.3, 54.5, 15, 120 }, + [11] = { 60.7, 54.2, 15, 120 }, + [12] = { 60.8, 51.9, 15, 120 }, + }, + ["lvl"] = "41-42", + }, + [4401] = { + ["coords"] = { + [1] = { 56.7, 63.4, 15, 360 }, + [2] = { 54.2, 63.3, 15, 360 }, + [3] = { 54.6, 63.2, 15, 360 }, + [4] = { 55.9, 61.6, 15, 360 }, + [5] = { 56.7, 61.4, 15, 360 }, + [6] = { 58, 49.5, 15, 360 }, + [7] = { 59.2, 47.1, 15, 360 }, + [8] = { 58.6, 46.4, 15, 360 }, + [9] = { 54.2, 46.1, 15, 360 }, + [10] = { 61.1, 46, 15, 360 }, + [11] = { 59.2, 46, 15, 360 }, + [12] = { 56.1, 45.3, 15, 360 }, + [13] = { 58.4, 45.2, 15, 360 }, + [14] = { 59.3, 45, 15, 360 }, + [15] = { 58.7, 44.5, 15, 360 }, + [16] = { 59.2, 44.4, 15, 360 }, + [17] = { 52.6, 44.1, 15, 360 }, + [18] = { 54, 44, 15, 360 }, + [19] = { 55.9, 43.7, 15, 360 }, + [20] = { 54.1, 42.4, 15, 360 }, + [21] = { 53.3, 39.8, 15, 360 }, + [22] = { 51.8, 39.7, 15, 360 }, + [23] = { 50.5, 38.7, 15, 360 }, + [24] = { 49.3, 37.3, 15, 360 }, + [25] = { 47.7, 32.9, 15, 360 }, + [26] = { 49.3, 32.4, 15, 360 }, + [27] = { 48.6, 31.6, 15, 120 }, + [28] = { 52, 43.5, 15, 360 }, + [29] = { 51.3, 39.1, 15, 360 }, + }, + ["lvl"] = "39-40", + }, + [4402] = { + ["coords"] = { + [1] = { 52.8, 46.2, 15, 120 }, + [2] = { 51, 41.4, 15, 120 }, + [3] = { 53.8, 40.9, 15, 120 }, + [4] = { 58.7, 44.5, 15, 360 }, + [5] = { 57.1, 40.9, 15, 120 }, + [6] = { 49.6, 35.9, 15, 360 }, + [7] = { 47.7, 32.9, 15, 360 }, + [8] = { 48.6, 31.6, 15, 120 }, + }, + ["lvl"] = "40-41", + }, + [4403] = { + ["coords"] = { + [1] = { 62.4, 70, 15, 360 }, + [2] = { 60, 69.2, 15, 360 }, + [3] = { 61.4, 68.9, 15, 360 }, + [4] = { 60.4, 68.9, 15, 360 }, + [5] = { 59.3, 68.8, 15, 360 }, + [6] = { 62.3, 68.3, 15, 360 }, + [7] = { 59.8, 68, 15, 360 }, + [8] = { 60.6, 68, 15, 360 }, + [9] = { 59.2, 67.9, 15, 360 }, + [10] = { 59.1, 67.3, 15, 360 }, + [11] = { 60.5, 67.2, 15, 360 }, + [12] = { 60.9, 67.2, 15, 360 }, + [13] = { 59.9, 67.1, 15, 360 }, + [14] = { 63.2, 66.8, 15, 360 }, + [15] = { 61.1, 66.2, 15, 360 }, + [16] = { 59.9, 66.1, 15, 360 }, + [17] = { 62.5, 65.8, 15, 360 }, + [18] = { 55.4, 64.2, 15, 360 }, + [19] = { 55.3, 63.2, 15, 360 }, + [20] = { 60.2, 63, 15, 360 }, + [21] = { 55.3, 62.5, 15, 360 }, + [22] = { 54.8, 62.5, 15, 360 }, + [23] = { 55.4, 61.5, 15, 360 }, + [24] = { 59.7, 61.1, 15, 360 }, + [25] = { 60.5, 59.2, 15, 360 }, + }, + ["lvl"] = "41-42", + }, + [4404] = { + ["coords"] = { + [1] = { 61.1, 68, 15, 360 }, + [2] = { 61.6, 67.2, 15, 360 }, + [3] = { 56.2, 65, 15, 360 }, + [4] = { 54.7, 64.2, 15, 360 }, + [5] = { 53.4, 64.2, 15, 360 }, + [6] = { 56, 64.2, 15, 360 }, + [7] = { 55.7, 63.6, 15, 360 }, + [8] = { 55.6, 62.9, 15, 360 }, + [9] = { 55.9, 62.9, 15, 120 }, + [10] = { 55.9, 62.8, 15, 360 }, + [11] = { 56.6, 62.4, 15, 360 }, + [12] = { 56.3, 62.2, 15, 360 }, + [13] = { 56.5, 46.8, 15, 360 }, + [14] = { 54.9, 46.4, 15, 360 }, + [15] = { 57.7, 43.2, 15, 360 }, + [16] = { 50.6, 41.8, 15, 360 }, + [17] = { 53.2, 41.3, 15, 360 }, + [18] = { 49.1, 39.3, 15, 360 }, + [19] = { 60, 69.2, 15, 360 }, + [20] = { 60.4, 68.9, 15, 360 }, + [21] = { 59.3, 68.8, 15, 360 }, + [22] = { 59.8, 68, 15, 360 }, + [23] = { 60.6, 68, 15, 360 }, + [24] = { 59.2, 67.9, 15, 360 }, + [25] = { 59.1, 67.3, 15, 360 }, + [26] = { 60.9, 67.2, 15, 360 }, + [27] = { 59.9, 67.1, 15, 360 }, + [28] = { 55.3, 63.2, 15, 360 }, + [29] = { 55.3, 62.5, 15, 360 }, + [30] = { 54.8, 62.5, 15, 360 }, + [31] = { 55.9, 61.6, 15, 360 }, + [32] = { 54, 44, 15, 360 }, + }, + ["lvl"] = "42-43", + }, + [4405] = { + ["coords"] = { + [1] = { 55.4, 64.2, 15, 360 }, + [2] = { 53.4, 64.2, 15, 360 }, + [3] = { 56, 64.2, 15, 360 }, + [4] = { 55.6, 62.9, 15, 360 }, + [5] = { 55.9, 62.9, 15, 120 }, + [6] = { 55.9, 62.8, 15, 360 }, + [7] = { 56.6, 62.4, 15, 360 }, + [8] = { 55.4, 61.5, 15, 360 }, + [9] = { 56.7, 61.4, 15, 360 }, + }, + ["lvl"] = "43-44", + }, + [4407] = { + ["coords"] = { + [1] = { 36.4, 7.2, 406, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [4408] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [4409] = { + ["coords"] = { + [1] = { 29.4, 16, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + ["rnk"] = "1", + }, + [4410] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [4411] = { + ["coords"] = { + [1] = { 34, 46, 15, 360 }, + [2] = { 36.8, 45.2, 15, 360 }, + [3] = { 35.4, 45.2, 15, 360 }, + [4] = { 34.7, 41.8, 15, 360 }, + [5] = { 38.3, 41, 15, 360 }, + [6] = { 39.2, 39.5, 15, 360 }, + [7] = { 62.9, 39.3, 15, 360 }, + [8] = { 44.2, 37.6, 15, 360 }, + [9] = { 57.4, 34.6, 15, 360 }, + [10] = { 55.3, 34.3, 15, 360 }, + [11] = { 56.2, 33.3, 15, 360 }, + [12] = { 53.3, 32.1, 15, 360 }, + [13] = { 52.3, 31.9, 15, 360 }, + [14] = { 52.8, 30.8, 15, 360 }, + [15] = { 47.9, 25.9, 15, 360 }, + [16] = { 58.8, 25.5, 15, 360 }, + [17] = { 52.8, 23.8, 15, 360 }, + [18] = { 49.6, 23.4, 15, 360 }, + [19] = { 53.2, 22.9, 15, 360 }, + [20] = { 42.5, 22.6, 15, 360 }, + [21] = { 38.9, 21.3, 15, 360 }, + [22] = { 43.3, 21, 15, 360 }, + [23] = { 40.5, 20.5, 15, 360 }, + [24] = { 39.4, 14.8, 15, 360 }, + [25] = { 52.6, 12.8, 15, 360 }, + [26] = { 42.6, 11.8, 15, 360 }, + [27] = { 53.1, 77.8, 17, 360 }, + [28] = { 54.6, 77.4, 17, 360 }, + [29] = { 53.9, 77.4, 17, 360 }, + [30] = { 53.5, 75.6, 17, 360 }, + [31] = { 55.3, 75.2, 17, 360 }, + [32] = { 55.9, 61.6, 17, 360 }, + [33] = { 62.8, 60.6, 17, 360 }, + [34] = { 57.6, 60.1, 17, 360 }, + [35] = { 46.9, 44.9, 15, 360 }, + [36] = { 42.7, 44.3, 15, 360 }, + [37] = { 37.5, 44.2, 15, 360 }, + [38] = { 41.3, 43.7, 15, 360 }, + [39] = { 41, 43.7, 15, 360 }, + [40] = { 43.3, 43.3, 15, 360 }, + [41] = { 45.9, 43.3, 15, 360 }, + [42] = { 38.2, 43.2, 15, 360 }, + [43] = { 42.1, 43.1, 15, 360 }, + [44] = { 41.5, 43.1, 15, 360 }, + [45] = { 42.6, 42.6, 15, 360 }, + [46] = { 45.5, 42.1, 15, 360 }, + [47] = { 46, 41.2, 15, 360 }, + [48] = { 40.1, 40.4, 15, 360 }, + [49] = { 63.6, 40.2, 15, 360 }, + [50] = { 41.2, 40.2, 15, 360 }, + [51] = { 46, 39.8, 15, 360 }, + [52] = { 61.5, 36.8, 15, 360 }, + [53] = { 45, 36.6, 15, 360 }, + [54] = { 44.1, 30.7, 15, 360 }, + [55] = { 45, 27.3, 15, 360 }, + [56] = { 49.6, 26.7, 15, 360 }, + [57] = { 60, 24.6, 15, 360 }, + [58] = { 56.3, 23.8, 15, 360 }, + [59] = { 44.1, 21.2, 15, 360 }, + [60] = { 38.9, 19.6, 15, 360 }, + [61] = { 41.5, 19.3, 15, 360 }, + [62] = { 40.8, 18.8, 15, 360 }, + [63] = { 40.2, 17.6, 15, 360 }, + [64] = { 51.3, 12.9, 15, 360 }, + [65] = { 41.8, 12, 15, 360 }, + [66] = { 40.5, 11.5, 15, 360 }, + [67] = { 55, 76.9, 17, 360 }, + [68] = { 55.3, 76.3, 17, 360 }, + [69] = { 62.1, 60.7, 17, 360 }, + [70] = { 57.2, 60.2, 17, 360 }, + [71] = { 56.5, 59.9, 17, 360 }, + }, + ["lvl"] = "36-37", + }, + [4412] = { + ["coords"] = { + [1] = { 44.4, 53.5, 15, 360 }, + [2] = { 38.2, 36.4, 15, 360 }, + [3] = { 55.3, 72.8, 17, 360 }, + [4] = { 49, 60.6, 15, 360 }, + [5] = { 44.7, 59.5, 15, 360 }, + [6] = { 41.7, 59.2, 15, 360 }, + [7] = { 37.1, 57.6, 15, 360 }, + [8] = { 40.4, 56.3, 15, 360 }, + [9] = { 36.9, 55.8, 15, 360 }, + [10] = { 38.2, 55.7, 15, 360 }, + [11] = { 44.6, 55.2, 15, 360 }, + [12] = { 43.8, 55.1, 15, 360 }, + [13] = { 40.5, 53.4, 15, 360 }, + [14] = { 41.5, 52.8, 15, 360 }, + [15] = { 40.2, 52.4, 15, 360 }, + [16] = { 36.8, 52.2, 15, 360 }, + [17] = { 38.5, 51.2, 15, 360 }, + [18] = { 38.9, 51, 15, 360 }, + [19] = { 41.5, 50.4, 15, 360 }, + [20] = { 41.9, 49.9, 15, 360 }, + [21] = { 36.6, 49.1, 15, 360 }, + [22] = { 35.4, 45.2, 15, 360 }, + [23] = { 54.7, 83.8, 17, 360 }, + [24] = { 54.6, 82.8, 17, 360 }, + [25] = { 55.3, 82.8, 17, 360 }, + [26] = { 54.6, 81, 17, 360 }, + [27] = { 54.5, 79.4, 17, 360 }, + [28] = { 53.9, 77.4, 17, 360 }, + [29] = { 49.5, 63.7, 15, 360 }, + [30] = { 48.3, 63.3, 15, 360 }, + [31] = { 42.2, 63.1, 15, 360 }, + [32] = { 48.9, 62.1, 15, 360 }, + [33] = { 46.6, 61.9, 15, 360 }, + [34] = { 43.3, 61.7, 15, 360 }, + [35] = { 41.5, 60.4, 15, 360 }, + [36] = { 45.6, 60, 15, 360 }, + [37] = { 35.4, 59.4, 15, 360 }, + [38] = { 48.2, 59.2, 15, 360 }, + [39] = { 48.8, 59, 15, 360 }, + [40] = { 36.4, 56.7, 15, 360 }, + [41] = { 45.7, 56.1, 15, 360 }, + [42] = { 39.6, 55.6, 15, 360 }, + [43] = { 35.8, 55.5, 15, 360 }, + [44] = { 40.1, 54.7, 15, 360 }, + [45] = { 43.2, 53.9, 15, 360 }, + [46] = { 41.3, 49, 15, 360 }, + [47] = { 44.1, 49, 15, 360 }, + [48] = { 44.8, 48.7, 15, 360 }, + [49] = { 40.8, 48.2, 15, 360 }, + [50] = { 41.7, 47.6, 15, 360 }, + [51] = { 40.2, 47.4, 15, 360 }, + [52] = { 42, 46.9, 15, 360 }, + [53] = { 53.9, 84.7, 17, 360 }, + [54] = { 54.4, 83.3, 17, 360 }, + [55] = { 54, 82.7, 17, 360 }, + }, + ["lvl"] = "38-39", + }, + [4413] = { + ["coords"] = { + [1] = { 57.3, 37.7, 15, 360 }, + [2] = { 54.2, 34.9, 15, 360 }, + [3] = { 52.1, 32.8, 15, 360 }, + [4] = { 50.3, 30.9, 15, 360 }, + [5] = { 48.6, 29, 15, 360 }, + [6] = { 55.2, 23.7, 15, 360 }, + [7] = { 39.9, 18, 15, 360 }, + [8] = { 52.8, 17.1, 15, 360 }, + [9] = { 44.4, 15.1, 15, 360 }, + [10] = { 43.5, 15, 15, 360 }, + [11] = { 52.6, 14, 15, 360 }, + [12] = { 62.8, 61.2, 17, 360 }, + [13] = { 62.9, 39.3, 15, 360 }, + [14] = { 57.9, 38.6, 15, 360 }, + [15] = { 62.1, 37.9, 15, 360 }, + [16] = { 58.5, 37.9, 15, 360 }, + [17] = { 60.8, 35.1, 15, 360 }, + [18] = { 52.3, 34.9, 15, 360 }, + [19] = { 55.3, 34.3, 15, 360 }, + [20] = { 56.2, 33.3, 15, 360 }, + [21] = { 53.3, 32.1, 15, 360 }, + [22] = { 52.3, 31.9, 15, 360 }, + [23] = { 52.8, 30.8, 15, 360 }, + [24] = { 46.3, 28.2, 15, 360 }, + [25] = { 52.9, 28, 15, 360 }, + [26] = { 48.4, 27.8, 15, 360 }, + [27] = { 37.7, 27.7, 15, 360 }, + [28] = { 60.2, 27.3, 15, 360 }, + [29] = { 52.2, 27.2, 15, 360 }, + [30] = { 47.9, 25.9, 15, 360 }, + [31] = { 58.8, 25.5, 15, 360 }, + [32] = { 52.8, 23.8, 15, 360 }, + [33] = { 49.6, 23.4, 15, 360 }, + [34] = { 53.2, 22.9, 15, 360 }, + [35] = { 38.9, 21.3, 15, 360 }, + [36] = { 43.7, 20.2, 15, 360 }, + [37] = { 42.1, 18.6, 15, 360 }, + [38] = { 52.6, 12.8, 15, 360 }, + [39] = { 55.1, 68.3, 17, 360 }, + [40] = { 62.8, 60.6, 17, 360 }, + }, + ["lvl"] = "35-36", + }, + [4414] = { + ["coords"] = { + [1] = { 46.7, 42.6, 15, 360 }, + [2] = { 56.8, 39.4, 15, 360 }, + [3] = { 50.9, 33.8, 15, 360 }, + [4] = { 50.1, 30.6, 15, 360 }, + [5] = { 41.3, 26.1, 15, 360 }, + [6] = { 60, 23, 15, 360 }, + [7] = { 58.6, 21, 15, 360 }, + [8] = { 56.4, 19.4, 15, 360 }, + [9] = { 52.7, 15.4, 15, 360 }, + [10] = { 51, 15.3, 15, 360 }, + [11] = { 49.7, 61.8, 15, 360 }, + [12] = { 47.9, 60.3, 15, 360 }, + [13] = { 42.1, 57.7, 15, 360 }, + [14] = { 47.9, 57.2, 15, 360 }, + [15] = { 37.7, 55.1, 15, 360 }, + [16] = { 44.4, 53.5, 15, 360 }, + [17] = { 34.1, 52.8, 15, 360 }, + [18] = { 40.9, 51.6, 15, 360 }, + [19] = { 42.1, 51.5, 15, 360 }, + [20] = { 36.3, 51, 15, 360 }, + [21] = { 35.2, 48.7, 15, 360 }, + [22] = { 37.3, 48.5, 15, 360 }, + [23] = { 34, 46, 15, 360 }, + [24] = { 46.7, 45.8, 15, 360 }, + [25] = { 34.7, 41.8, 15, 360 }, + [26] = { 43, 41.8, 15, 360 }, + [27] = { 38.3, 41, 15, 360 }, + [28] = { 35.4, 40.9, 15, 360 }, + [29] = { 39.2, 39.5, 15, 360 }, + [30] = { 45.6, 38.3, 15, 360 }, + [31] = { 37.4, 38.2, 15, 360 }, + [32] = { 44.2, 37.6, 15, 360 }, + [33] = { 43.5, 35.2, 15, 360 }, + [34] = { 43.5, 35.1, 15, 360 }, + [35] = { 41.6, 34.8, 15, 360 }, + [36] = { 44, 32.6, 15, 360 }, + [37] = { 44.3, 30.3, 15, 360 }, + [38] = { 45, 28.6, 15, 360 }, + [39] = { 35.7, 14.8, 15, 360 }, + [40] = { 55, 82.5, 17, 360 }, + [41] = { 53.2, 81.3, 17, 360 }, + [42] = { 54.3, 80.4, 17, 360 }, + [43] = { 53.7, 79.2, 17, 360 }, + [44] = { 54.8, 79.1, 17, 360 }, + [45] = { 53.1, 77.8, 17, 360 }, + [46] = { 53.5, 75.6, 17, 360 }, + [47] = { 55.3, 75.2, 17, 360 }, + [48] = { 53.9, 75.2, 17, 360 }, + [49] = { 54.9, 73.8, 17, 360 }, + [50] = { 54, 61.6, 17, 360 }, + [51] = { 48.1, 62.4, 15, 360 }, + [52] = { 48.5, 61.6, 15, 360 }, + [53] = { 43.8, 60.7, 15, 360 }, + [54] = { 49, 60.6, 15, 360 }, + [55] = { 41.9, 59.8, 15, 360 }, + [56] = { 49.6, 59.5, 15, 360 }, + [57] = { 37.1, 57.6, 15, 360 }, + [58] = { 39.8, 57.2, 15, 360 }, + [59] = { 40.4, 56.3, 15, 360 }, + [60] = { 36.9, 55.8, 15, 360 }, + [61] = { 38.2, 55.7, 15, 360 }, + [62] = { 47, 55.5, 15, 360 }, + [63] = { 44.6, 55.2, 15, 360 }, + [64] = { 45.3, 54.9, 15, 360 }, + [65] = { 33.9, 54.8, 15, 360 }, + [66] = { 36.9, 54.1, 15, 360 }, + [67] = { 43.9, 53, 15, 360 }, + [68] = { 41.5, 52.8, 15, 360 }, + [69] = { 36.8, 52.2, 15, 360 }, + [70] = { 35.8, 51.4, 15, 360 }, + [71] = { 38.9, 51, 15, 360 }, + [72] = { 41.5, 50.4, 15, 360 }, + [73] = { 43.4, 48.2, 15, 360 }, + [74] = { 39.1, 46.4, 15, 360 }, + [75] = { 37.5, 44.2, 15, 360 }, + [76] = { 41.3, 43.7, 15, 360 }, + [77] = { 41, 43.7, 15, 360 }, + [78] = { 45.9, 43.3, 15, 360 }, + [79] = { 42.1, 43.1, 15, 360 }, + [80] = { 42.6, 42.6, 15, 360 }, + [81] = { 46, 41.2, 15, 360 }, + [82] = { 40.1, 40.4, 15, 360 }, + [83] = { 41.2, 40.2, 15, 360 }, + [84] = { 45, 36.6, 15, 360 }, + [85] = { 54.7, 83.8, 17, 360 }, + [86] = { 54.6, 82.8, 17, 360 }, + [87] = { 55.3, 82.8, 17, 360 }, + [88] = { 53.1, 82.3, 17, 360 }, + [89] = { 54.6, 82, 17, 360 }, + [90] = { 54.6, 81, 17, 360 }, + [91] = { 54, 80.6, 17, 360 }, + [92] = { 55, 76.9, 17, 360 }, + [93] = { 49.5, 63.7, 15, 360 }, + [94] = { 48.3, 63.3, 15, 360 }, + [95] = { 46.6, 61.9, 15, 360 }, + [96] = { 45.7, 56.1, 15, 360 }, + [97] = { 39.6, 55.6, 15, 360 }, + [98] = { 44.8, 48.7, 15, 360 }, + [99] = { 40.8, 48.2, 15, 360 }, + [100] = { 41.7, 47.6, 15, 360 }, + [101] = { 40.2, 47.4, 15, 360 }, + }, + ["lvl"] = "37-38", + }, + [4415] = { + ["coords"] = { + [1] = { 52.6, 67.2, 15, 360 }, + [2] = { 54.7, 67.1, 15, 360 }, + [3] = { 53.7, 66.9, 15, 360 }, + [4] = { 56.2, 66.8, 15, 360 }, + [5] = { 53.4, 66.6, 15, 360 }, + [6] = { 51.6, 64.6, 15, 360 }, + [7] = { 51.4, 63.6, 15, 360 }, + [8] = { 52.6, 62, 15, 360 }, + [9] = { 52.7, 61.6, 15, 360 }, + [10] = { 52.6, 60.9, 15, 360 }, + [11] = { 53.6, 60.4, 15, 360 }, + [12] = { 54.2, 60.2, 15, 360 }, + [13] = { 55.1, 59.8, 15, 360 }, + [14] = { 56.4, 57.8, 15, 360 }, + [15] = { 56.8, 56, 15, 360 }, + [16] = { 56.1, 56, 15, 360 }, + [17] = { 56, 54, 15, 360 }, + [18] = { 55.7, 52.5, 15, 360 }, + [19] = { 53.1, 50.7, 15, 360 }, + [20] = { 54.5, 50.5, 15, 360 }, + [21] = { 52.1, 49.9, 15, 360 }, + [22] = { 52.3, 48.4, 15, 360 }, + [23] = { 49.9, 48.3, 15, 360 }, + [24] = { 50.9, 48.1, 15, 360 }, + [25] = { 50.7, 47.6, 15, 360 }, + [26] = { 49.6, 46.4, 15, 360 }, + [27] = { 48.8, 46.4, 15, 360 }, + [28] = { 49.2, 45.2, 15, 360 }, + }, + ["lvl"] = "40-41", + }, + [4416] = { + ["coords"] = {}, + ["lvl"] = "18-19", + }, + [4417] = { + ["coords"] = {}, + ["lvl"] = "18-19", + ["rnk"] = "1", + }, + [4418] = { + ["coords"] = {}, + ["lvl"] = "18-19", + ["rnk"] = "1", + }, + [4419] = { + ["coords"] = { + [1] = { 79.2, 75.9, 400, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [4420] = { + ["coords"] = {}, + ["lvl"] = "32", + ["rnk"] = "1", + }, + [4421] = { + ["coords"] = {}, + ["lvl"] = "33", + ["rnk"] = "1", + }, + [4422] = { + ["coords"] = {}, + ["lvl"] = "33", + ["rnk"] = "1", + }, + [4423] = { + ["coords"] = { + [1] = { 26.9, 51.7, 141, 300 }, + [2] = { 26.8, 51.4, 141, 300 }, + [3] = { 25.4, 51.4, 141, 300 }, + [4] = { 24.9, 49.7, 141, 300 }, + [5] = { 24.5, 49.5, 141, 300 }, + [6] = { 46.6, 22.7, 1657, 300 }, + [7] = { 46.3, 21.3, 1657, 300 }, + [8] = { 39.6, 21.3, 1657, 300 }, + [9] = { 37, 13.1, 1657, 300 }, + [10] = { 34.9, 12.3, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [4424] = { + ["coords"] = {}, + ["lvl"] = "30", + ["rnk"] = "1", + }, + [4425] = { + ["coords"] = {}, + ["lvl"] = "32", + ["rnk"] = "2", + }, + [4427] = { + ["coords"] = {}, + ["lvl"] = "31", + ["rnk"] = "1", + }, + [4428] = { + ["coords"] = {}, + ["lvl"] = "30", + ["rnk"] = "1", + }, + [4429] = { + ["coords"] = { + [1] = { 79.8, 76.9, 400, 300 }, + [2] = { 79.9, 76.9, 400, 300 }, + [3] = { 80.2, 76.6, 400, 300 }, + [4] = { 79.8, 76.4, 400, 300 }, + [5] = { 80.2, 75.9, 400, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [4430] = { + ["coords"] = { + [1] = { 77.9, 77.5, 400, 300 }, + [2] = { 77.5, 77.2, 400, 300 }, + [3] = { 77.7, 76.8, 400, 300 }, + [4] = { 77.6, 76.8, 400, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [4435] = { + ["coords"] = {}, + ["lvl"] = "24-25", + ["rnk"] = "1", + }, + [4436] = { + ["coords"] = {}, + ["lvl"] = "25-26", + ["rnk"] = "1", + }, + [4437] = { + ["coords"] = {}, + ["lvl"] = "25-26", + ["rnk"] = "1", + }, + [4438] = { + ["coords"] = {}, + ["lvl"] = "29-30", + ["rnk"] = "2", + }, + [4439] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + ["rnk"] = "1", + }, + [4440] = { + ["coords"] = {}, + ["lvl"] = "29", + ["rnk"] = "1", + }, + [4442] = { + ["coords"] = {}, + ["lvl"] = "27-28", + ["rnk"] = "1", + }, + [4443] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [4444] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "21", + }, + [4445] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [4446] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [4449] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [4450] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [4451] = { + ["coords"] = { + [1] = { 37.1, 29, 215, 375 }, + [2] = { 36, 59.9, 1638, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "28", + }, + [4452] = { + ["coords"] = { + [1] = { 77.8, 77.3, 400, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "29", + }, + [4453] = { + ["coords"] = { + [1] = { 78.1, 77.1, 400, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "31", + }, + [4454] = { + ["coords"] = { + [1] = { 78.1, 77.1, 400, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [4455] = { + ["coords"] = { + [1] = { 10, 58, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "22", + }, + [4456] = { + ["coords"] = { + [1] = { 66.5, 45.1, 15, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "26", + }, + [4457] = { + ["coords"] = { + [1] = { 34.3, 24.2, 33, 300 }, + [2] = { 35.2, 24, 33, 300 }, + [3] = { 35.4, 23.8, 33, 300 }, + [4] = { 35.2, 23.5, 33, 300 }, + [5] = { 34.6, 23.4, 33, 300 }, + [6] = { 36.1, 23.4, 33, 300 }, + [7] = { 35.3, 23.3, 33, 300 }, + [8] = { 35.1, 23.3, 33, 300 }, + [9] = { 34, 23.3, 33, 300 }, + [10] = { 35.2, 23.1, 33, 300 }, + [11] = { 35.6, 22.5, 33, 300 }, + [12] = { 34.2, 22.5, 33, 300 }, + [13] = { 34, 22.3, 33, 300 }, + [14] = { 33.3, 22.2, 33, 300 }, + [15] = { 34.4, 21.7, 33, 300 }, + [16] = { 33.7, 21.6, 33, 300 }, + [17] = { 34, 21.5, 33, 300 }, + [18] = { 35.4, 20.7, 33, 300 }, + [19] = { 34, 20.7, 33, 300 }, + }, + ["lvl"] = "35-36", + }, + [4458] = { + ["coords"] = { + [1] = { 35.6, 24.2, 33, 300 }, + [2] = { 35.6, 23.2, 33, 300 }, + [3] = { 34.9, 23.1, 33, 300 }, + [4] = { 35.4, 22.7, 33, 300 }, + [5] = { 34.3, 24.2, 33, 300 }, + [6] = { 35.2, 24, 33, 300 }, + [7] = { 35.4, 23.8, 33, 300 }, + [8] = { 35.2, 23.5, 33, 300 }, + [9] = { 34.6, 23.4, 33, 300 }, + [10] = { 36.1, 23.4, 33, 300 }, + [11] = { 35.3, 23.3, 33, 300 }, + [12] = { 35.1, 23.3, 33, 300 }, + [13] = { 34, 23.3, 33, 300 }, + [14] = { 35.2, 23.1, 33, 300 }, + [15] = { 35.6, 22.5, 33, 300 }, + [16] = { 34.2, 22.5, 33, 300 }, + [17] = { 34, 22.3, 33, 300 }, + [18] = { 33.3, 22.2, 33, 300 }, + [19] = { 34.4, 21.7, 33, 300 }, + [20] = { 33.7, 21.6, 33, 300 }, + [21] = { 34, 21.5, 33, 300 }, + [22] = { 35.4, 20.7, 33, 300 }, + [23] = { 34, 20.7, 33, 300 }, + }, + ["lvl"] = "35-36", + }, + [4459] = { + ["coords"] = { + [1] = { 35.6, 24.2, 33, 300 }, + [2] = { 35.6, 23.2, 33, 300 }, + [3] = { 34.9, 23.1, 33, 300 }, + [4] = { 35.4, 22.7, 33, 300 }, + }, + ["lvl"] = "36-37", + }, + [4460] = { + ["coords"] = { + [1] = { 35.6, 24.2, 33, 300 }, + [2] = { 35.6, 23.2, 33, 300 }, + [3] = { 34.9, 23.1, 33, 300 }, + [4] = { 35.4, 22.7, 33, 300 }, + }, + ["lvl"] = "37", + }, + [4461] = { + ["coords"] = { + [1] = { 34.3, 24.2, 33, 300 }, + [2] = { 35.2, 24, 33, 300 }, + [3] = { 35.4, 23.8, 33, 300 }, + [4] = { 35.2, 23.5, 33, 300 }, + [5] = { 34.6, 23.4, 33, 300 }, + [6] = { 36.1, 23.4, 33, 300 }, + [7] = { 35.3, 23.3, 33, 300 }, + [8] = { 35.1, 23.3, 33, 300 }, + [9] = { 34, 23.3, 33, 300 }, + [10] = { 35.2, 23.1, 33, 300 }, + [11] = { 35.6, 22.5, 33, 300 }, + [12] = { 34.2, 22.5, 33, 300 }, + [13] = { 34, 22.3, 33, 300 }, + [14] = { 33.3, 22.2, 33, 300 }, + [15] = { 34.4, 21.7, 33, 300 }, + [16] = { 33.7, 21.6, 33, 300 }, + [17] = { 34, 21.5, 33, 300 }, + [18] = { 35.4, 20.7, 33, 300 }, + [19] = { 34, 20.7, 33, 300 }, + [20] = { 35.6, 24.2, 33, 300 }, + [21] = { 35.6, 23.2, 33, 300 }, + [22] = { 34.9, 23.1, 33, 300 }, + [23] = { 35.4, 22.7, 33, 300 }, + }, + ["lvl"] = "35-36", + }, + [4462] = { + ["coords"] = { + [1] = { 69.4, 59.9, 44, 900 }, + [2] = { 69.8, 57.7, 44, 900 }, + [3] = { 68.5, 56.3, 44, 900 }, + [4] = { 69.3, 56, 44, 900 }, + [5] = { 69.4, 55.8, 44, 900 }, + [6] = { 68.6, 55.6, 44, 900 }, + [7] = { 69.2, 55.4, 44, 900 }, + [8] = { 69.6, 54.4, 44, 900 }, + }, + ["lvl"] = "23-24", + ["rnk"] = "1", + }, + [4463] = { + ["coords"] = { + [1] = { 74, 79.3, 44, 300 }, + [2] = { 60.9, 43.7, 44, 300 }, + [3] = { 43.9, 19.6, 44, 300 }, + [4] = { 29.9, 16.5, 44, 300 }, + [5] = { 27.4, 15.9, 44, 300 }, + [6] = { 25.9, 14.8, 44, 300 }, + [7] = { 28.4, 14.7, 44, 300 }, + [8] = { 28.9, 12.8, 44, 300 }, + [9] = { 44.1, 12.7, 44, 300 }, + [10] = { 30.7, 12.3, 44, 300 }, + [11] = { 43, 12.3, 44, 300 }, + [12] = { 28.4, 11.8, 44, 300 }, + [13] = { 27.4, 10.9, 44, 300 }, + [14] = { 41.5, 10.9, 44, 300 }, + [15] = { 35.8, 10.3, 44, 300 }, + [16] = { 31.2, 9.4, 44, 300 }, + [17] = { 35.6, 8, 44, 300 }, + [18] = { 32, 6.4, 44, 300 }, + [19] = { 65.5, 87.8, 46, 300 }, + [20] = { 64.8, 87.2, 46, 300 }, + [21] = { 67.6, 86.1, 46, 300 }, + [22] = { 70.9, 85, 46, 300 }, + [23] = { 68.3, 83.8, 46, 300 }, + }, + ["lvl"] = "22-23", + }, + [4464] = { + ["coords"] = { + [1] = { 70, 57.1, 44, 900 }, + [2] = { 69.4, 56.3, 44, 900 }, + [3] = { 68.1, 55, 44, 900 }, + [4] = { 68.3, 54.7, 44, 900 }, + }, + ["lvl"] = "24-25", + ["rnk"] = "1", + }, + [4465] = { + ["coords"] = { + [1] = { 66.5, 69.2, 47, 350 }, + [2] = { 68.6, 68.9, 47, 350 }, + [3] = { 68.1, 68.8, 47, 350 }, + [4] = { 67.9, 68.4, 47, 350 }, + [5] = { 68.5, 68, 47, 350 }, + [6] = { 66.2, 67.8, 47, 350 }, + [7] = { 66.7, 67.3, 47, 350 }, + [8] = { 67.6, 66.8, 47, 350 }, + [9] = { 67.8, 66.5, 47, 350 }, + [10] = { 66.9, 65.5, 47, 350 }, + [11] = { 66.4, 65.5, 47, 350 }, + [12] = { 68.6, 64.4, 47, 350 }, + [13] = { 66.9, 64.2, 47, 350 }, + [14] = { 66.8, 64.2, 47, 350 }, + [15] = { 67.8, 64, 47, 350 }, + [16] = { 66.1, 63.9, 47, 350 }, + [17] = { 64.2, 62.9, 47, 350 }, + [18] = { 65.1, 61.8, 47, 350 }, + [19] = { 63, 60.8, 47, 350 }, + }, + ["lvl"] = "45-46", + ["rnk"] = "1", + }, + [4466] = { + ["coords"] = { + [1] = { 46.8, 69.6, 47, 350 }, + [2] = { 45.5, 68.2, 47, 350 }, + [3] = { 44.3, 67, 47, 350 }, + [4] = { 50.6, 65.9, 47, 350 }, + [5] = { 49.5, 65.5, 47, 350 }, + [6] = { 46.1, 64.4, 47, 350 }, + [7] = { 50.3, 63.2, 47, 350 }, + [8] = { 45.2, 62.8, 47, 350 }, + [9] = { 69.9, 49.4, 47, 350 }, + [10] = { 69.8, 49.2, 47, 350 }, + [11] = { 72.1, 48.6, 47, 350 }, + [12] = { 71.9, 48.5, 47, 350 }, + [13] = { 70.4, 47.3, 47, 350 }, + [14] = { 72, 47.3, 47, 350 }, + [15] = { 71.6, 46.8, 47, 350 }, + [16] = { 65.2, 44.8, 47, 350 }, + [17] = { 67, 44.6, 47, 350 }, + [18] = { 66.8, 44.1, 47, 350 }, + [19] = { 66.2, 43.2, 47, 350 }, + [20] = { 53.1, 40.1, 47, 350 }, + [21] = { 53.8, 39.7, 47, 350 }, + [22] = { 52.2, 39.7, 47, 350 }, + [23] = { 53.9, 38.6, 47, 350 }, + }, + ["lvl"] = "46-47", + }, + [4467] = { + ["coords"] = { + [1] = { 48.8, 69, 47, 350 }, + [2] = { 49.2, 68.3, 47, 350 }, + [3] = { 45.9, 68.1, 47, 350 }, + [4] = { 48.5, 68, 47, 350 }, + [5] = { 47, 67.6, 47, 350 }, + [6] = { 48.1, 67.4, 47, 350 }, + [7] = { 47.9, 67, 47, 350 }, + [8] = { 45.3, 66.7, 47, 350 }, + [9] = { 47.6, 66.5, 47, 350 }, + [10] = { 48, 65.6, 47, 350 }, + [11] = { 47.1, 65.6, 47, 350 }, + [12] = { 44.6, 65.5, 47, 350 }, + [13] = { 48.8, 64.4, 47, 350 }, + [14] = { 46.9, 63, 47, 350 }, + [15] = { 49.6, 62.9, 47, 350 }, + [16] = { 71, 48.6, 47, 350 }, + [17] = { 70.6, 48.5, 47, 350 }, + [18] = { 71.3, 48.3, 47, 350 }, + [19] = { 66.2, 44.8, 47, 350 }, + [20] = { 66.2, 44.3, 47, 350 }, + [21] = { 53.1, 39.2, 47, 350 }, + [22] = { 53.4, 38.8, 47, 350 }, + }, + ["lvl"] = "46-47", + }, + [4468] = { + ["coords"] = { + [1] = { 62.3, 76.8, 47, 350 }, + [2] = { 63.1, 76.6, 47, 350 }, + [3] = { 61.6, 76.2, 47, 350 }, + [4] = { 62.5, 75.6, 47, 350 }, + [5] = { 63.1, 75.3, 47, 350 }, + [6] = { 61.1, 75.2, 47, 350 }, + [7] = { 61.9, 74.8, 47, 350 }, + [8] = { 62.5, 74.5, 47, 350 }, + [9] = { 61.4, 74.2, 47, 350 }, + [10] = { 61.9, 73.7, 47, 350 }, + [11] = { 61, 73.5, 47, 350 }, + }, + ["lvl"] = "47-48", + ["rnk"] = "1", + }, + [4469] = { + ["coords"] = { + [1] = { 65.3, 66.6, 47, 350 }, + [2] = { 65.1, 66, 47, 350 }, + [3] = { 65, 66, 47, 350 }, + [4] = { 65.3, 65.5, 47, 350 }, + [5] = { 65, 65, 47, 350 }, + }, + ["lvl"] = "46-47", + ["rnk"] = "1", + }, + [4472] = { + ["coords"] = { + [1] = { 62.8, 61.2, 28, 315 }, + [2] = { 63, 61.1, 28, 315 }, + [3] = { 62.4, 60.9, 28, 315 }, + [4] = { 63.3, 60.8, 28, 315 }, + [5] = { 63, 60.6, 28, 315 }, + [6] = { 62.1, 60.6, 28, 315 }, + [7] = { 62.8, 60.4, 28, 315 }, + [8] = { 62.5, 60.3, 28, 315 }, + [9] = { 62.2, 60.2, 28, 315 }, + [10] = { 62.8, 60.1, 28, 315 }, + [11] = { 64.8, 60, 28, 315 }, + [12] = { 64.8, 59.7, 28, 315 }, + [13] = { 65.1, 59.7, 28, 315 }, + [14] = { 62.2, 59.6, 28, 315 }, + [15] = { 63.2, 59.6, 28, 315 }, + [16] = { 64.6, 59.5, 28, 315 }, + [17] = { 64.6, 59.4, 28, 315 }, + [18] = { 64.9, 59.3, 28, 315 }, + [19] = { 64.7, 59.3, 28, 315 }, + [20] = { 64.7, 59.2, 28, 315 }, + [21] = { 64.4, 59.2, 28, 315 }, + [22] = { 61.8, 59.1, 28, 315 }, + [23] = { 65.1, 59.1, 28, 315 }, + [24] = { 64.7, 59, 28, 315 }, + [25] = { 63.3, 59, 28, 315 }, + [26] = { 65, 59, 28, 315 }, + [27] = { 62.4, 58.9, 28, 315 }, + [28] = { 62.7, 58.9, 28, 315 }, + [29] = { 65.1, 58.6, 28, 315 }, + [30] = { 64.4, 58.6, 28, 315 }, + [31] = { 64.8, 58.5, 28, 315 }, + [32] = { 63.7, 58.5, 28, 315 }, + [33] = { 62.2, 58.4, 28, 315 }, + [34] = { 62.9, 58.4, 28, 315 }, + [35] = { 60.7, 58.2, 28, 315 }, + [36] = { 61.6, 58.2, 28, 315 }, + [37] = { 64.5, 58, 28, 315 }, + [38] = { 62.7, 58, 28, 315 }, + [39] = { 62.5, 57.9, 28, 315 }, + [40] = { 64.3, 57.9, 28, 315 }, + [41] = { 60.8, 57.9, 28, 315 }, + [42] = { 64.7, 57.7, 28, 315 }, + [43] = { 64, 57.6, 28, 315 }, + [44] = { 63.5, 57.6, 28, 315 }, + [45] = { 61.7, 57.5, 28, 315 }, + [46] = { 64.4, 57.5, 28, 315 }, + [47] = { 64.6, 57.3, 28, 315 }, + [48] = { 63.8, 57.1, 28, 315 }, + [49] = { 62.8, 57, 28, 315 }, + [50] = { 64.1, 56.8, 28, 315 }, + [51] = { 64.4, 56.7, 28, 315 }, + [52] = { 63.4, 56.6, 28, 315 }, + [53] = { 64.2, 56.4, 28, 315 }, + [54] = { 63.9, 56.4, 28, 315 }, + [55] = { 63.2, 56.3, 28, 315 }, + [56] = { 64, 56.2, 28, 315 }, + [57] = { 63.3, 56, 28, 315 }, + [58] = { 64.2, 55.9, 28, 315 }, + [59] = { 63.5, 55.9, 28, 315 }, + [60] = { 63, 55.8, 28, 315 }, + [61] = { 63.9, 55.7, 28, 315 }, + [62] = { 63.2, 55.6, 28, 315 }, + }, + ["lvl"] = "57-58", + }, + [4474] = { + ["coords"] = { + [1] = { 45.8, 55.1, 28, 315 }, + [2] = { 45.2, 55, 28, 315 }, + [3] = { 44.8, 54.9, 28, 315 }, + [4] = { 45, 54.6, 28, 315 }, + [5] = { 45.8, 54.1, 28, 315 }, + [6] = { 45, 54, 28, 315 }, + [7] = { 47.3, 53.8, 28, 315 }, + [8] = { 46.7, 53.4, 28, 315 }, + [9] = { 44.2, 53.4, 28, 315 }, + [10] = { 44.9, 53, 28, 315 }, + [11] = { 47, 52.6, 28, 315 }, + [12] = { 46.1, 52.4, 28, 315 }, + [13] = { 46.5, 52, 28, 315 }, + [14] = { 44.8, 51.7, 28, 315 }, + [15] = { 47.8, 51.5, 28, 315 }, + [16] = { 46.1, 51.3, 28, 315 }, + [17] = { 47.3, 51, 28, 315 }, + [18] = { 47.8, 50.9, 28, 315 }, + [19] = { 46.6, 50.8, 28, 315 }, + [20] = { 48.2, 50.8, 28, 315 }, + [21] = { 45.7, 50.4, 28, 315 }, + [22] = { 47.5, 50.2, 28, 315 }, + [23] = { 46.3, 50, 28, 315 }, + [24] = { 47.1, 49.8, 28, 315 }, + [25] = { 47.6, 49.7, 28, 315 }, + [26] = { 47.5, 49.7, 28, 315 }, + }, + ["lvl"] = "53-54", + }, + [4475] = { + ["coords"] = { + [1] = { 46.1, 56.3, 28, 315 }, + [2] = { 46.5, 54.8, 28, 315 }, + [3] = { 48.2, 53.4, 28, 315 }, + [4] = { 45.7, 53.2, 28, 315 }, + [5] = { 47.7, 52.8, 28, 315 }, + [6] = { 46.5, 52.4, 28, 315 }, + [7] = { 45.8, 52.1, 28, 315 }, + [8] = { 48, 51.6, 28, 315 }, + [9] = { 45, 51.5, 28, 315 }, + [10] = { 46.3, 51.5, 28, 315 }, + [11] = { 45.5, 51.2, 28, 315 }, + [12] = { 47.5, 51, 28, 315 }, + [13] = { 47.8, 50.7, 28, 315 }, + [14] = { 46.9, 50.4, 28, 315 }, + [15] = { 48.1, 50.4, 28, 315 }, + [16] = { 46.1, 50.2, 28, 315 }, + [17] = { 47.2, 50.2, 28, 315 }, + [18] = { 45.8, 49.9, 28, 315 }, + [19] = { 46.8, 49.9, 28, 315 }, + [20] = { 47.4, 49.8, 28, 315 }, + [21] = { 47.7, 49.5, 28, 315 }, + [22] = { 45.8, 55.1, 28, 315 }, + [23] = { 45.2, 55, 28, 315 }, + [24] = { 45, 54.6, 28, 315 }, + [25] = { 47.3, 53.8, 28, 315 }, + [26] = { 47, 52.6, 28, 315 }, + }, + ["lvl"] = "52-53", + }, + [4476] = { + ["coords"] = {}, + ["lvl"] = "54-55", + }, + [4479] = { + ["coords"] = { + [1] = { 56.5, 38.7, 45, 400 }, + }, + ["fac"] = "A", + ["lvl"] = "33", + }, + [4480] = { + ["coords"] = { + [1] = { 56.4, 36.1, 45, 400 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [4481] = { + ["coords"] = { + [1] = { 54.2, 38.1, 45, 400 }, + }, + ["fac"] = "A", + ["lvl"] = "34", + }, + [4482] = { + ["coords"] = {}, + ["lvl"] = "46-47", + ["rnk"] = "1", + }, + [4483] = { + ["coords"] = { + [1] = { 67.6, 63.9, 400, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [4484] = { + ["coords"] = { + [1] = { 26.2, 38.9, 331, 10 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [4485] = { + ["coords"] = { + [1] = { 75.2, 34.2, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [4486] = { + ["coords"] = { + [1] = { 63.8, 49.5, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "32", + }, + [4487] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "30", + }, + [4488] = { + ["coords"] = { + [1] = { 57.8, 65.4, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [4489] = { + ["coords"] = { + [1] = { 78.8, 45.7, 406, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [4490] = { + ["coords"] = {}, + ["lvl"] = "31", + }, + [4491] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "1", + }, + [4493] = { + ["coords"] = { + [1] = { 51.1, 40.7, 28, 315 }, + [2] = { 52.6, 38.4, 28, 315 }, + [3] = { 53.3, 36.6, 28, 315 }, + [4] = { 54.9, 34, 28, 315 }, + [5] = { 54.5, 24.1, 28, 315 }, + [6] = { 54.3, 23.7, 28, 315 }, + }, + ["lvl"] = "56-57", + }, + [4494] = { + ["coords"] = { + [1] = { 54.3, 35.5, 28, 315 }, + [2] = { 55.4, 34.3, 28, 315 }, + [3] = { 54.9, 23.6, 28, 315 }, + [4] = { 55.1, 23.5, 28, 315 }, + [5] = { 54.8, 23.5, 28, 315 }, + [6] = { 55.2, 23.4, 28, 315 }, + [7] = { 54.9, 23.2, 28, 315 }, + [8] = { 55.3, 22.8, 28, 315 }, + }, + ["lvl"] = "57-58", + }, + [4495] = { + ["coords"] = { + [1] = { 77.6, 76.9, 400, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [4496] = { + ["coords"] = { + [1] = { 79.9, 76.7, 400, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [4497] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "60", + }, + [4498] = { + ["coords"] = { + [1] = { 52.2, 53.4, 405, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [4499] = { + ["coords"] = { + [1] = { 25.7, 42.2, 400, 600 }, + }, + ["lvl"] = "30", + ["rnk"] = "1", + }, + [4500] = { + ["coords"] = { + [1] = { 36.3, 31.4, 15, 120 }, + [2] = { 54.3, 70.2, 17, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + ["rnk"] = "1", + }, + [4501] = { + ["coords"] = { + [1] = { 37.2, 33.1, 15, 360 }, + [2] = { 54.8, 71.1, 17, 360 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [4502] = { + ["coords"] = { + [1] = { 37.4, 31.4, 15, 360 }, + [2] = { 54.9, 70.2, 17, 360 }, + }, + ["fac"] = "H", + ["lvl"] = "44", + }, + [4503] = { + ["coords"] = { + [1] = { 35.2, 38.3, 15, 360 }, + [2] = { 53.7, 73.8, 17, 360 }, + }, + ["fac"] = "AH", + ["lvl"] = "42", + }, + [4504] = { + ["coords"] = { + [1] = { 36.5, 67.8, 36, 0 }, + [2] = { 40.8, 7.8, 267, 0 }, + }, + ["lvl"] = "37", + }, + [4505] = { + ["coords"] = { + [1] = { 30.7, 90.7, 33, 300 }, + [2] = { 30.6, 90.4, 33, 300 }, + [3] = { 30.5, 90.1, 33, 300 }, + [4] = { 29.5, 89.4, 33, 300 }, + [5] = { 29.4, 89.3, 33, 300 }, + [6] = { 33.2, 88.4, 33, 300 }, + [7] = { 33.4, 88.3, 33, 300 }, + [8] = { 33.1, 88.2, 33, 300 }, + [9] = { 33.5, 88.2, 33, 300 }, + [10] = { 33.1, 88.4, 33, 300 }, + [11] = { 33.3, 88.4, 33, 300 }, + [12] = { 33.5, 88, 33, 300 }, + [13] = { 30.7, 89.9, 33, 300 }, + [14] = { 30.5, 89.7, 33, 300 }, + [15] = { 30.7, 89.6, 33, 300 }, + [16] = { 29.4, 89.4, 33, 300 }, + [17] = { 29.4, 89.1, 33, 300 }, + [18] = { 29.3, 89, 33, 300 }, + [19] = { 29.4, 88.9, 33, 300 }, + [20] = { 29.3, 88.5, 33, 300 }, + [21] = { 33.6, 88.2, 33, 300 }, + [22] = { 33.3, 88.1, 33, 300 }, + }, + ["lvl"] = "43-44", + }, + [4506] = { + ["coords"] = { + [1] = { 33.2, 88.3, 33, 300 }, + [2] = { 33.2, 88.1, 33, 300 }, + [3] = { 30.6, 90.4, 33, 300 }, + [4] = { 33, 88.3, 33, 300 }, + [5] = { 33.4, 88.3, 33, 300 }, + [6] = { 33, 88.2, 33, 300 }, + [7] = { 29.4, 89.4, 33, 300 }, + [8] = { 29.3, 88.6, 33, 300 }, + [9] = { 30.7, 89.9, 33, 300 }, + [10] = { 30.5, 89.7, 33, 300 }, + [11] = { 30.7, 89.6, 33, 300 }, + [12] = { 33.3, 88.1, 33, 300 }, + }, + ["lvl"] = "43-44", + }, + [4507] = { + ["coords"] = { + [1] = { 79.5, 76.9, 400, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "15", + }, + [4508] = { + ["coords"] = {}, + ["lvl"] = "27", + ["rnk"] = "1", + }, + [4509] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "20", + }, + [4510] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "25", + }, + [4511] = { + ["coords"] = {}, + ["lvl"] = "24-25", + ["rnk"] = "1", + }, + [4512] = { + ["coords"] = {}, + ["lvl"] = "28", + ["rnk"] = "1", + }, + [4514] = { + ["coords"] = {}, + ["lvl"] = "25-26", + ["rnk"] = "1", + }, + [4515] = { + ["coords"] = {}, + ["lvl"] = "28-29", + ["rnk"] = "1", + }, + [4516] = { + ["coords"] = {}, + ["lvl"] = "27-28", + ["rnk"] = "1", + }, + [4517] = { + ["coords"] = {}, + ["lvl"] = "26-27", + ["rnk"] = "1", + }, + [4518] = { + ["coords"] = {}, + ["lvl"] = "29-30", + ["rnk"] = "1", + }, + [4519] = { + ["coords"] = {}, + ["lvl"] = "28-29", + ["rnk"] = "1", + }, + [4520] = { + ["coords"] = {}, + ["lvl"] = "25-26", + ["rnk"] = "1", + }, + [4521] = { + ["coords"] = { + [1] = { 31.7, 61, 141, 300 }, + [2] = { 69.5, 67.8, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [4522] = { + ["coords"] = {}, + ["lvl"] = "28-29", + ["rnk"] = "1", + }, + [4523] = { + ["coords"] = {}, + ["lvl"] = "27-28", + ["rnk"] = "1", + }, + [4525] = { + ["coords"] = {}, + ["lvl"] = "30-31", + ["rnk"] = "1", + }, + [4526] = { + ["coords"] = {}, + ["lvl"] = "25-26", + ["rnk"] = "1", + }, + [4528] = { + ["coords"] = {}, + ["lvl"] = "21-28", + ["rnk"] = "1", + }, + [4530] = { + ["coords"] = {}, + ["lvl"] = "25-26", + ["rnk"] = "1", + }, + [4531] = { + ["coords"] = {}, + ["lvl"] = "28-29", + ["rnk"] = "1", + }, + [4532] = { + ["coords"] = {}, + ["lvl"] = "30-31", + ["rnk"] = "1", + }, + [4534] = { + ["coords"] = {}, + ["lvl"] = "27-28", + ["rnk"] = "1", + }, + [4535] = { + ["coords"] = {}, + ["lvl"] = "25-26", + ["rnk"] = "1", + }, + [4538] = { + ["coords"] = {}, + ["lvl"] = "30-31", + ["rnk"] = "1", + }, + [4539] = { + ["coords"] = {}, + ["lvl"] = "32", + ["rnk"] = "1", + }, + [4540] = { + ["coords"] = {}, + ["lvl"] = "35-36", + ["rnk"] = "1", + }, + [4541] = { + ["coords"] = {}, + ["lvl"] = "27", + ["rnk"] = "1", + }, + [4542] = { + ["coords"] = {}, + ["lvl"] = "40", + ["rnk"] = "1", + }, + [4543] = { + ["coords"] = {}, + ["lvl"] = "34", + ["rnk"] = "1", + }, + [4544] = { + ["coords"] = { + [1] = { 75.9, 42.7, 357, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "37", + }, + [4545] = { + ["coords"] = { + [1] = { 67.8, 64.3, 400, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [4546] = { + ["coords"] = { + [1] = { 67.8, 63.8, 400, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [4547] = { + ["coords"] = { + [1] = { 67.7, 64.1, 400, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [4548] = { + ["coords"] = { + [1] = { 37.9, 91.2, 17, 300 }, + [2] = { 17.8, 19.8, 400, 300 }, + }, + ["lvl"] = "30", + }, + [4549] = { + ["coords"] = { + [1] = { 66, 44.8, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [4550] = { + ["coords"] = { + [1] = { 65.6, 44.1, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [4551] = { + ["coords"] = { + [1] = { 63.3, 48.6, 1497, 900 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [4552] = { + ["coords"] = { + [1] = { 62.1, 44.9, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [4553] = { + ["coords"] = { + [1] = { 62.3, 43.1, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [4554] = { + ["coords"] = { + [1] = { 63.5, 39.9, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [4555] = { + ["coords"] = { + [1] = { 69.2, 48.9, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [4556] = { + ["coords"] = { + [1] = { 61.5, 41.8, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [4557] = { + ["coords"] = { + [1] = { 61.1, 40.9, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [4558] = { + ["coords"] = { + [1] = { 63.8, 38, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [4559] = { + ["coords"] = { + [1] = { 62.6, 39.7, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [4560] = { + ["coords"] = { + [1] = { 62.3, 38.7, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [4561] = { + ["coords"] = { + [1] = { 64, 37.4, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [4562] = { + ["coords"] = { + [1] = { 69.7, 39.1, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [4563] = { + ["coords"] = { + [1] = { 66.1, 68.4, 85, 300 }, + [2] = { 86.2, 15.9, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [4564] = { + ["coords"] = { + [1] = { 66.2, 68.3, 85, 300 }, + [2] = { 86.4, 15.3, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [4565] = { + ["coords"] = { + [1] = { 66.7, 68.4, 85, 300 }, + [2] = { 88.9, 15.9, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [4566] = { + ["coords"] = { + [1] = { 65.9, 68, 85, 300 }, + [2] = { 85, 14, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [4567] = { + ["coords"] = { + [1] = { 65.9, 67.9, 85, 300 }, + [2] = { 85.4, 13.5, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [4568] = { + ["coords"] = { + [1] = { 65.9, 67.2, 85, 300 }, + [2] = { 85.1, 10, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [4569] = { + ["coords"] = { + [1] = { 77.1, 49.4, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [4570] = { + ["coords"] = { + [1] = { 69.5, 27.4, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [4571] = { + ["coords"] = { + [1] = { 76.6, 29.3, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [4572] = { + ["coords"] = { + [1] = { 65.8, 69.1, 85, 300 }, + [2] = { 85, 19.2, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [4573] = { + ["coords"] = { + [1] = { 80.7, 31.3, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [4574] = { + ["coords"] = { + [1] = { 81, 30.8, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [4575] = { + ["coords"] = { + [1] = { 65.4, 68.4, 85, 300 }, + [2] = { 82.8, 15.8, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [4576] = { + ["coords"] = { + [1] = { 70.8, 30.7, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [4577] = { + ["coords"] = { + [1] = { 70.6, 30.1, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [4578] = { + ["coords"] = { + [1] = { 86.7, 22.1, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [4579] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "35", + }, + [4580] = { + ["coords"] = { + [1] = { 71.2, 29.6, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [4581] = { + ["coords"] = { + [1] = { 77.4, 39.3, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [4582] = { + ["coords"] = { + [1] = { 83.9, 72.1, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [4583] = { + ["coords"] = { + [1] = { 85.2, 71.6, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [4584] = { + ["coords"] = { + [1] = { 84.9, 73.5, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [4585] = { + ["coords"] = { + [1] = { 75.2, 51.2, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [4586] = { + ["coords"] = { + [1] = { 75.3, 73.1, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "26", + }, + [4587] = { + ["coords"] = { + [1] = { 75.5, 74.3, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [4588] = { + ["coords"] = { + [1] = { 70.2, 57.4, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [4589] = { + ["coords"] = { + [1] = { 70.1, 58.4, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [4590] = { + ["coords"] = { + [1] = { 69.2, 61.2, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [4591] = { + ["coords"] = { + [1] = { 73.2, 55.1, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [4592] = { + ["coords"] = { + [1] = { 77.5, 49.6, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [4593] = { + ["coords"] = { + [1] = { 57.8, 68.3, 85, 300 }, + [2] = { 46.9, 15.2, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [4594] = { + ["coords"] = { + [1] = { 58.1, 68.4, 85, 300 }, + [2] = { 48.3, 16, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [4595] = { + ["coords"] = { + [1] = { 57.9, 68.7, 85, 300 }, + [2] = { 47.4, 17.3, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [4596] = { + ["coords"] = { + [1] = { 61.3, 30.6, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [4597] = { + ["coords"] = { + [1] = { 61.4, 30.1, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [4598] = { + ["coords"] = { + [1] = { 56, 37.5, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [4599] = { + ["coords"] = { + [1] = { 56.7, 36.9, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [4600] = { + ["coords"] = { + [1] = { 58.7, 33.1, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [4601] = { + ["coords"] = { + [1] = { 59, 32.6, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [4602] = { + ["coords"] = { + [1] = { 58.8, 32.8, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [4603] = { + ["coords"] = { + [1] = { 62.7, 26.8, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [4604] = { + ["coords"] = { + [1] = { 54.7, 38.8, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [4605] = { + ["coords"] = { + [1] = { 60.2, 29.1, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "26", + }, + [4606] = { + ["coords"] = { + [1] = { 58.2, 68.9, 85, 300 }, + [2] = { 49, 18.3, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [4607] = { + ["coords"] = { + [1] = { 58.3, 68.4, 85, 300 }, + [2] = { 49.4, 15.9, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [4608] = { + ["coords"] = { + [1] = { 57.9, 69.1, 85, 300 }, + [2] = { 47.6, 18.9, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [4609] = { + ["coords"] = { + [1] = { 73, 9.5, 130, 275 }, + [2] = { 50.9, 74.6, 1497, 275 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [4610] = { + ["coords"] = { + [1] = { 73.2, 9.5, 130, 275 }, + [2] = { 51.7, 74.7, 1497, 275 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [4611] = { + ["coords"] = { + [1] = { 72.3, 9.2, 130, 300 }, + [2] = { 47.8, 73.3, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [4612] = { + ["coords"] = { + [1] = { 55.5, 64.1, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [4613] = { + ["coords"] = { + [1] = { 69.7, 44.8, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [4614] = { + ["coords"] = { + [1] = { 54, 49.5, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [4615] = { + ["coords"] = { + [1] = { 54.7, 48.9, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [4616] = { + ["coords"] = { + [1] = { 62.5, 61.8, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [4617] = { + ["coords"] = { + [1] = { 62.4, 61, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [4618] = { + ["coords"] = { + [1] = { 42.2, 52.7, 3, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "42", + }, + [4619] = { + ["coords"] = { + [1] = { 78, 42.4, 331, 300 }, + }, + ["lvl"] = "32", + }, + [4620] = { + ["coords"] = { + [1] = { 79.3, 75.9, 400, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [4621] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "50", + }, + [4623] = { + ["coords"] = {}, + ["lvl"] = "30-31", + ["rnk"] = "1", + }, + [4624] = { + ["coords"] = { + [1] = { 27.6, 78, 33, 300 }, + [2] = { 28, 77.9, 33, 300 }, + [3] = { 27.2, 77.7, 33, 300 }, + [4] = { 27.2, 77.6, 33, 300 }, + [5] = { 27.5, 77.6, 33, 300 }, + [6] = { 27.8, 77.5, 33, 300 }, + [7] = { 27.4, 77.5, 33, 300 }, + [8] = { 27.2, 77.5, 33, 300 }, + [9] = { 26.9, 77.4, 33, 300 }, + [10] = { 27.3, 77.4, 33, 300 }, + [11] = { 27.7, 77.4, 33, 300 }, + [12] = { 27.1, 77.2, 33, 300 }, + [13] = { 27.7, 77.2, 33, 300 }, + [14] = { 27.6, 77.2, 33, 300 }, + [15] = { 27.8, 77.1, 33, 300 }, + [16] = { 27.7, 77.1, 33, 300 }, + [17] = { 28, 77.1, 33, 300 }, + [18] = { 28.1, 77.1, 33, 300 }, + [19] = { 28.4, 77.1, 33, 300 }, + [20] = { 26.7, 77, 33, 300 }, + [21] = { 28.6, 77, 33, 300 }, + [22] = { 27.7, 77, 33, 300 }, + [23] = { 27.3, 76.9, 33, 300 }, + [24] = { 28, 76.9, 33, 300 }, + [25] = { 27.5, 76.8, 33, 300 }, + [26] = { 28.5, 76.8, 33, 300 }, + [27] = { 28.3, 76.8, 33, 300 }, + [28] = { 26.9, 76.7, 33, 300 }, + [29] = { 27.6, 76.6, 33, 300 }, + [30] = { 26.6, 76.6, 33, 300 }, + [31] = { 28.1, 76.5, 33, 300 }, + [32] = { 26.6, 76.3, 33, 300 }, + [33] = { 28.4, 76.1, 33, 300 }, + [34] = { 28.4, 75.8, 33, 300 }, + [35] = { 28.3, 75.7, 33, 300 }, + [36] = { 28.5, 75.6, 33, 300 }, + [37] = { 28.8, 75.4, 33, 300 }, + [38] = { 28.1, 75.2, 33, 300 }, + [39] = { 28.9, 74.8, 33, 300 }, + [40] = { 27.7, 74.6, 33, 300 }, + [41] = { 27.8, 74, 33, 300 }, + [42] = { 28, 73.7, 33, 300 }, + [43] = { 27.9, 73.7, 33, 300 }, + [44] = { 26.8, 73.7, 33, 300 }, + [45] = { 26.9, 73.6, 33, 300 }, + [46] = { 28, 73.6, 33, 300 }, + [47] = { 26.1, 73.4, 33, 300 }, + [48] = { 26.3, 73.3, 33, 300 }, + [49] = { 26.1, 73.1, 33, 300 }, + [50] = { 29.7, 72.6, 33, 300 }, + [51] = { 29.5, 72.6, 33, 300 }, + [52] = { 29.4, 72.2, 33, 300 }, + }, + ["lvl"] = "57", + }, + [4625] = { + ["coords"] = {}, + ["lvl"] = "15", + }, + [4626] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "62", + }, + [4627] = { + ["coords"] = {}, + ["lvl"] = "24-25", + }, + [4629] = { + ["coords"] = { + [1] = { 81.6, 78, 400, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [4630] = { + ["coords"] = { + [1] = { 80.2, 75.9, 400, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [4631] = { + ["coords"] = { + [1] = { 26.3, 73.6, 33, 300 }, + }, + ["lvl"] = "35", + }, + [4632] = { + ["coords"] = { + [1] = { 68.5, 52.2, 405, 300 }, + [2] = { 69.3, 51.2, 405, 300 }, + [3] = { 70, 50.1, 405, 300 }, + [4] = { 68.6, 50.1, 405, 300 }, + [5] = { 69.3, 48.9, 405, 300 }, + [6] = { 68.7, 47.9, 405, 300 }, + [7] = { 69.3, 46.8, 405, 300 }, + [8] = { 70.1, 45.7, 405, 300 }, + [9] = { 68.7, 45.7, 405, 300 }, + [10] = { 69.3, 44.5, 405, 300 }, + [11] = { 68.6, 43.5, 405, 300 }, + [12] = { 69.3, 42.4, 405, 300 }, + [13] = { 68.6, 41.2, 405, 300 }, + [14] = { 70.1, 41.2, 405, 300 }, + [15] = { 69.3, 40.1, 405, 300 }, + [16] = { 68.6, 39, 405, 300 }, + }, + ["lvl"] = "30-31", + }, + [4633] = { + ["coords"] = { + [1] = { 68.5, 52.2, 405, 300 }, + [2] = { 69.3, 51.2, 405, 300 }, + [3] = { 70, 50.1, 405, 300 }, + [4] = { 68.6, 50.1, 405, 300 }, + [5] = { 69.3, 48.9, 405, 300 }, + [6] = { 68.7, 47.9, 405, 300 }, + [7] = { 69.3, 46.8, 405, 300 }, + [8] = { 70.1, 45.7, 405, 300 }, + [9] = { 68.7, 45.7, 405, 300 }, + [10] = { 69.3, 44.5, 405, 300 }, + [11] = { 68.6, 43.5, 405, 300 }, + [12] = { 69.3, 42.4, 405, 300 }, + [13] = { 68.6, 41.2, 405, 300 }, + [14] = { 70.1, 41.2, 405, 300 }, + [15] = { 69.3, 40.1, 405, 300 }, + [16] = { 68.6, 39, 405, 300 }, + }, + ["lvl"] = "30-31", + }, + [4634] = { + ["coords"] = { + [1] = { 70.9, 50.6, 405, 300 }, + [2] = { 71.5, 47.9, 405, 300 }, + [3] = { 74.4, 47.4, 405, 300 }, + [4] = { 72.2, 46.8, 405, 300 }, + [5] = { 70.8, 46.7, 405, 300 }, + [6] = { 73.1, 45.6, 405, 300 }, + [7] = { 71.5, 45.6, 405, 300 }, + [8] = { 72.2, 44.6, 405, 300 }, + [9] = { 73.7, 44.5, 405, 300 }, + [10] = { 70.8, 44.5, 405, 300 }, + [11] = { 70.7, 43.6, 405, 300 }, + [12] = { 71.5, 43.5, 405, 300 }, + [13] = { 73.7, 43.1, 405, 300 }, + [14] = { 72.2, 42.4, 405, 300 }, + [15] = { 70.8, 42.3, 405, 300 }, + [16] = { 71.5, 41.2, 405, 300 }, + [17] = { 72.3, 40.1, 405, 300 }, + }, + ["lvl"] = "31-32", + }, + [4635] = { + ["coords"] = { + [1] = { 73.6, 52.1, 405, 300 }, + [2] = { 74.5, 51.2, 405, 300 }, + [3] = { 71.7, 50.6, 405, 300 }, + [4] = { 73.9, 50.5, 405, 300 }, + [5] = { 73.1, 50.3, 405, 300 }, + [6] = { 74.3, 50, 405, 300 }, + [7] = { 71.6, 50, 405, 300 }, + [8] = { 74.1, 49.6, 405, 300 }, + [9] = { 74.2, 49.1, 405, 300 }, + [10] = { 70.8, 48.9, 405, 300 }, + [11] = { 74.7, 48.8, 405, 300 }, + [12] = { 73.5, 48.5, 405, 300 }, + [13] = { 70.1, 47.9, 405, 300 }, + [14] = { 73, 47.9, 405, 300 }, + [15] = { 73.8, 46.8, 405, 300 }, + [16] = { 74.5, 46.8, 405, 300 }, + [17] = { 72.9, 46.7, 405, 300 }, + [18] = { 74.4, 46.1, 405, 300 }, + [19] = { 70.4, 43.2, 405, 300 }, + [20] = { 73.1, 43.1, 405, 300 }, + [21] = { 72.7, 42.4, 405, 300 }, + [22] = { 73.2, 42.4, 405, 300 }, + [23] = { 71.6, 41.9, 405, 300 }, + [24] = { 69.6, 40.6, 405, 300 }, + [25] = { 72.9, 40.3, 405, 300 }, + [26] = { 70.9, 40.2, 405, 300 }, + [27] = { 70.1, 39.3, 405, 300 }, + [28] = { 71.5, 47.9, 405, 300 }, + [29] = { 74.4, 47.4, 405, 300 }, + [30] = { 72.2, 46.8, 405, 300 }, + [31] = { 70.8, 46.7, 405, 300 }, + [32] = { 71.5, 45.6, 405, 300 }, + [33] = { 73.7, 44.5, 405, 300 }, + [34] = { 70.8, 44.5, 405, 300 }, + [35] = { 71.5, 43.5, 405, 300 }, + [36] = { 73.7, 43.1, 405, 300 }, + [37] = { 70.8, 42.3, 405, 300 }, + [38] = { 71.5, 41.2, 405, 300 }, + [39] = { 72.3, 40.1, 405, 300 }, + [40] = { 69.3, 48.9, 405, 300 }, + [41] = { 69.3, 40.1, 405, 300 }, + }, + ["lvl"] = "31-32", + }, + [4636] = { + ["coords"] = { + [1] = { 73.6, 52.1, 405, 300 }, + [2] = { 74.5, 51.2, 405, 300 }, + [3] = { 71.7, 50.6, 405, 300 }, + [4] = { 73.9, 50.5, 405, 300 }, + [5] = { 73.1, 50.3, 405, 300 }, + [6] = { 74.3, 50, 405, 300 }, + [7] = { 71.6, 50, 405, 300 }, + [8] = { 74.1, 49.6, 405, 300 }, + [9] = { 74.2, 49.1, 405, 300 }, + [10] = { 70.8, 48.9, 405, 300 }, + [11] = { 74.7, 48.8, 405, 300 }, + [12] = { 73.5, 48.5, 405, 300 }, + [13] = { 70.1, 47.9, 405, 300 }, + [14] = { 73, 47.9, 405, 300 }, + [15] = { 73.8, 46.8, 405, 300 }, + [16] = { 74.5, 46.8, 405, 300 }, + [17] = { 72.9, 46.7, 405, 300 }, + [18] = { 74.4, 46.1, 405, 300 }, + [19] = { 72.2, 44.6, 405, 300 }, + [20] = { 70.4, 43.2, 405, 300 }, + [21] = { 73.1, 43.1, 405, 300 }, + [22] = { 72.7, 42.4, 405, 300 }, + [23] = { 73.2, 42.4, 405, 300 }, + [24] = { 71.6, 41.9, 405, 300 }, + [25] = { 69.6, 40.6, 405, 300 }, + [26] = { 72.9, 40.3, 405, 300 }, + [27] = { 70.9, 40.2, 405, 300 }, + [28] = { 70.1, 39.3, 405, 300 }, + [29] = { 71.5, 47.9, 405, 300 }, + [30] = { 72.2, 46.8, 405, 300 }, + [31] = { 73.7, 44.5, 405, 300 }, + [32] = { 70.8, 44.5, 405, 300 }, + [33] = { 70.8, 42.3, 405, 300 }, + [34] = { 71.5, 41.2, 405, 300 }, + }, + ["lvl"] = "32-33", + }, + [4637] = { + ["coords"] = { + [1] = { 73.1, 45.6, 405, 300 }, + [2] = { 73.6, 52.1, 405, 300 }, + [3] = { 74.5, 51.2, 405, 300 }, + [4] = { 71.7, 50.6, 405, 300 }, + [5] = { 73.9, 50.5, 405, 300 }, + [6] = { 73.1, 50.3, 405, 300 }, + [7] = { 74.3, 50, 405, 300 }, + [8] = { 71.6, 50, 405, 300 }, + [9] = { 74.1, 49.6, 405, 300 }, + [10] = { 74.2, 49.1, 405, 300 }, + [11] = { 70.8, 48.9, 405, 300 }, + [12] = { 74.7, 48.8, 405, 300 }, + [13] = { 73.5, 48.5, 405, 300 }, + [14] = { 70.1, 47.9, 405, 300 }, + [15] = { 73, 47.9, 405, 300 }, + [16] = { 73.8, 46.8, 405, 300 }, + [17] = { 74.5, 46.8, 405, 300 }, + [18] = { 72.9, 46.7, 405, 300 }, + [19] = { 70.8, 46.7, 405, 300 }, + [20] = { 74.4, 46.1, 405, 300 }, + [21] = { 72.2, 44.6, 405, 300 }, + [22] = { 71.5, 43.5, 405, 300 }, + [23] = { 70.4, 43.2, 405, 300 }, + [24] = { 73.1, 43.1, 405, 300 }, + [25] = { 72.7, 42.4, 405, 300 }, + [26] = { 73.2, 42.4, 405, 300 }, + [27] = { 71.6, 41.9, 405, 300 }, + [28] = { 69.6, 40.6, 405, 300 }, + [29] = { 72.9, 40.3, 405, 300 }, + [30] = { 70.9, 40.2, 405, 300 }, + [31] = { 72.3, 40.1, 405, 300 }, + [32] = { 70.1, 39.3, 405, 300 }, + [33] = { 71.5, 47.9, 405, 300 }, + [34] = { 72.2, 46.8, 405, 300 }, + [35] = { 73.7, 44.5, 405, 300 }, + [36] = { 70.8, 44.5, 405, 300 }, + [37] = { 70.8, 42.3, 405, 300 }, + [38] = { 71.5, 41.2, 405, 300 }, + }, + ["lvl"] = "32-33", + }, + [4638] = { + ["coords"] = { + [1] = { 66.2, 75.5, 405, 300 }, + [2] = { 65.7, 74.6, 405, 300 }, + [3] = { 67.1, 74.5, 405, 300 }, + [4] = { 65.6, 70.3, 405, 300 }, + [5] = { 67.9, 70.2, 405, 300 }, + [6] = { 67.1, 70, 405, 300 }, + [7] = { 66.5, 69.1, 405, 300 }, + [8] = { 70.1, 69, 405, 300 }, + [9] = { 72.1, 68.9, 405, 300 }, + [10] = { 71.6, 66.9, 405, 300 }, + [11] = { 73.8, 65.7, 405, 300 }, + }, + ["lvl"] = "32-33", + }, + [4639] = { + ["coords"] = { + [1] = { 67.8, 73.5, 405, 300 }, + [2] = { 68.6, 72.4, 405, 300 }, + [3] = { 66.2, 75.5, 405, 300 }, + [4] = { 65.7, 74.6, 405, 300 }, + [5] = { 67.1, 74.5, 405, 300 }, + [6] = { 65.6, 70.3, 405, 300 }, + [7] = { 67.9, 70.2, 405, 300 }, + [8] = { 67.1, 70, 405, 300 }, + [9] = { 66.5, 69.1, 405, 300 }, + [10] = { 70.1, 69, 405, 300 }, + [11] = { 72.1, 68.9, 405, 300 }, + [12] = { 71.6, 66.9, 405, 300 }, + [13] = { 73.8, 65.7, 405, 300 }, + }, + ["lvl"] = "32-33", + }, + [4640] = { + ["coords"] = { + [1] = { 67.1, 83.4, 405, 300 }, + [2] = { 67.9, 82.3, 405, 300 }, + [3] = { 69.3, 82.2, 405, 300 }, + [4] = { 67.2, 81.2, 405, 300 }, + [5] = { 68.6, 81.2, 405, 300 }, + [6] = { 70, 81.2, 405, 300 }, + [7] = { 70.7, 80.1, 405, 300 }, + [8] = { 66.1, 79.7, 405, 300 }, + [9] = { 71.4, 79, 405, 300 }, + [10] = { 66.2, 78.9, 405, 300 }, + [11] = { 64.9, 77.9, 405, 300 }, + [12] = { 72.8, 77.8, 405, 300 }, + [13] = { 70, 76.8, 405, 300 }, + [14] = { 68.6, 76.7, 405, 300 }, + [15] = { 65.1, 75.9, 405, 300 }, + [16] = { 75.9, 75.9, 405, 300 }, + [17] = { 69.5, 75.8, 405, 300 }, + [18] = { 67.8, 75.8, 405, 300 }, + [19] = { 70.1, 74.6, 405, 300 }, + [20] = { 66.5, 73.7, 405, 300 }, + [21] = { 72.9, 73.5, 405, 300 }, + [22] = { 69.3, 73.5, 405, 300 }, + [23] = { 70.7, 73.5, 405, 300 }, + [24] = { 76.2, 73.4, 405, 300 }, + [25] = { 73, 72.3, 405, 300 }, + [26] = { 65.8, 72.3, 405, 300 }, + [27] = { 67.2, 72.2, 405, 300 }, + [28] = { 66.4, 71.3, 405, 300 }, + [29] = { 76, 71.2, 405, 300 }, + [30] = { 68.7, 71.1, 405, 300 }, + [31] = { 69.4, 70.2, 405, 300 }, + [32] = { 75.4, 70, 405, 300 }, + [33] = { 74.5, 69, 405, 300 }, + [34] = { 75.1, 68.1, 405, 300 }, + [35] = { 70.7, 68, 405, 300 }, + [36] = { 73.7, 67.7, 405, 300 }, + [37] = { 72.9, 66.8, 405, 300 }, + [38] = { 67.8, 73.5, 405, 300 }, + [39] = { 68.6, 72.4, 405, 300 }, + }, + ["lvl"] = "33-34", + }, + [4641] = { + ["coords"] = { + [1] = { 67.1, 83.4, 405, 300 }, + [2] = { 67.9, 82.3, 405, 300 }, + [3] = { 69.3, 82.2, 405, 300 }, + [4] = { 67.2, 81.2, 405, 300 }, + [5] = { 68.6, 81.2, 405, 300 }, + [6] = { 70, 81.2, 405, 300 }, + [7] = { 70.7, 80.1, 405, 300 }, + [8] = { 66.1, 79.7, 405, 300 }, + [9] = { 71.4, 79, 405, 300 }, + [10] = { 66.2, 78.9, 405, 300 }, + [11] = { 64.9, 77.9, 405, 300 }, + [12] = { 72.8, 77.8, 405, 300 }, + [13] = { 70, 76.8, 405, 300 }, + [14] = { 68.6, 76.7, 405, 300 }, + [15] = { 65.1, 75.9, 405, 300 }, + [16] = { 75.9, 75.9, 405, 300 }, + [17] = { 69.5, 75.8, 405, 300 }, + [18] = { 67.8, 75.8, 405, 300 }, + [19] = { 66.5, 73.7, 405, 300 }, + [20] = { 72.9, 73.5, 405, 300 }, + [21] = { 69.3, 73.5, 405, 300 }, + [22] = { 70.7, 73.5, 405, 300 }, + [23] = { 76.2, 73.4, 405, 300 }, + [24] = { 73, 72.3, 405, 300 }, + [25] = { 65.8, 72.3, 405, 300 }, + [26] = { 67.2, 72.2, 405, 300 }, + [27] = { 66.4, 71.3, 405, 300 }, + [28] = { 76, 71.2, 405, 300 }, + [29] = { 68.7, 71.1, 405, 300 }, + [30] = { 69.4, 70.2, 405, 300 }, + [31] = { 75.4, 70, 405, 300 }, + [32] = { 74.5, 69, 405, 300 }, + [33] = { 75.1, 68.1, 405, 300 }, + [34] = { 70.7, 68, 405, 300 }, + [35] = { 73.7, 67.7, 405, 300 }, + [36] = { 72.9, 66.8, 405, 300 }, + [37] = { 67.8, 73.5, 405, 300 }, + [38] = { 68.6, 72.4, 405, 300 }, + }, + ["lvl"] = "33-34", + }, + [4642] = { + ["coords"] = { + [1] = { 68.5, 83.2, 405, 300 }, + [2] = { 67.8, 80, 405, 300 }, + [3] = { 65.6, 79, 405, 300 }, + [4] = { 72.5, 78.7, 405, 300 }, + [5] = { 70, 77.8, 405, 300 }, + [6] = { 70.7, 75.8, 405, 300 }, + [7] = { 68.6, 74.5, 405, 300 }, + [8] = { 70, 72.3, 405, 300 }, + [9] = { 70.1, 74.6, 405, 300 }, + [10] = { 70, 76.8, 405, 300 }, + [11] = { 72.9, 73.5, 405, 300 }, + [12] = { 69.3, 73.5, 405, 300 }, + [13] = { 70.7, 73.5, 405, 300 }, + [14] = { 73, 72.3, 405, 300 }, + [15] = { 74.5, 69, 405, 300 }, + }, + ["lvl"] = "34-35", + }, + [4643] = { + ["coords"] = { + [1] = { 65.5, 80.6, 405, 300 }, + [2] = { 73.8, 77.6, 405, 300 }, + [3] = { 72.3, 74.6, 405, 300 }, + }, + ["lvl"] = "34-35", + }, + [4644] = { + ["coords"] = { + [1] = { 66.6, 80.6, 405, 300 }, + [2] = { 66, 80.6, 405, 300 }, + [3] = { 66.4, 80.1, 405, 300 }, + [4] = { 72.2, 78.4, 405, 300 }, + [5] = { 69.7, 78.4, 405, 300 }, + [6] = { 69.3, 77.8, 405, 300 }, + [7] = { 70.6, 75.2, 405, 300 }, + [8] = { 71, 75.1, 405, 300 }, + [9] = { 73.1, 74.6, 405, 300 }, + [10] = { 73.4, 73.4, 405, 300 }, + [11] = { 73.6, 72.7, 405, 300 }, + [12] = { 71.3, 71.4, 405, 300 }, + }, + ["lvl"] = "35-36", + }, + [4645] = { + ["coords"] = { + [1] = { 66.6, 80.6, 405, 300 }, + [2] = { 66, 80.6, 405, 300 }, + [3] = { 66.4, 80.1, 405, 300 }, + [4] = { 72.2, 78.4, 405, 300 }, + [5] = { 69.7, 78.4, 405, 300 }, + [6] = { 69.3, 77.8, 405, 300 }, + [7] = { 70.6, 75.2, 405, 300 }, + [8] = { 71, 75.1, 405, 300 }, + [9] = { 73.1, 74.6, 405, 300 }, + [10] = { 73.4, 73.4, 405, 300 }, + [11] = { 73.6, 72.7, 405, 300 }, + [12] = { 71.3, 71.4, 405, 300 }, + }, + ["lvl"] = "35-36", + }, + [4646] = { + ["coords"] = { + [1] = { 40.5, 89.8, 405, 300 }, + [2] = { 39.7, 89.5, 405, 300 }, + [3] = { 35.4, 88.1, 405, 300 }, + [4] = { 35.9, 85.6, 405, 300 }, + [5] = { 40.4, 85.6, 405, 300 }, + [6] = { 35.1, 85.5, 405, 300 }, + [7] = { 38.9, 84.9, 405, 300 }, + [8] = { 34.5, 84.6, 405, 300 }, + [9] = { 35.1, 84.4, 405, 300 }, + [10] = { 37.4, 84.3, 405, 300 }, + [11] = { 35.2, 83.5, 405, 300 }, + [12] = { 39.8, 83.3, 405, 300 }, + [13] = { 38.9, 82.3, 405, 300 }, + [14] = { 34.5, 82.3, 405, 300 }, + [15] = { 37.3, 82.2, 405, 300 }, + [16] = { 34.4, 81.4, 405, 300 }, + [17] = { 37.4, 81.3, 405, 300 }, + [18] = { 34.4, 80.2, 405, 300 }, + [19] = { 37.3, 80.2, 405, 300 }, + [20] = { 36.5, 79.2, 405, 300 }, + }, + ["lvl"] = "32-33", + }, + [4647] = { + ["coords"] = { + [1] = { 40.5, 89.8, 405, 300 }, + [2] = { 39.7, 89.5, 405, 300 }, + [3] = { 35.4, 88.1, 405, 300 }, + [4] = { 35.9, 85.6, 405, 300 }, + [5] = { 35.1, 85.5, 405, 300 }, + [6] = { 38.9, 84.9, 405, 300 }, + [7] = { 34.5, 84.6, 405, 300 }, + [8] = { 35.1, 84.4, 405, 300 }, + [9] = { 37.4, 84.3, 405, 300 }, + [10] = { 35.2, 83.5, 405, 300 }, + [11] = { 39.8, 83.3, 405, 300 }, + [12] = { 38.9, 82.3, 405, 300 }, + [13] = { 34.5, 82.3, 405, 300 }, + [14] = { 37.3, 82.2, 405, 300 }, + [15] = { 34.4, 81.4, 405, 300 }, + [16] = { 34.4, 80.2, 405, 300 }, + [17] = { 37.3, 80.2, 405, 300 }, + }, + ["lvl"] = "32-33", + }, + [4648] = { + ["coords"] = { + [1] = { 42.3, 2, 357, 300 }, + [2] = { 42, 1.9, 357, 300 }, + [3] = { 42.7, 1.3, 357, 300 }, + [4] = { 42.2, 1, 357, 300 }, + [5] = { 43.1, 0.8, 357, 300 }, + [6] = { 38.4, 97.1, 405, 300 }, + [7] = { 38.1, 96.9, 405, 300 }, + [8] = { 39.2, 96, 405, 300 }, + [9] = { 38.4, 95.6, 405, 300 }, + [10] = { 39.7, 95.2, 405, 300 }, + [11] = { 38.3, 94.5, 405, 300 }, + [12] = { 39.2, 94.3, 405, 300 }, + [13] = { 39.3, 93.6, 405, 300 }, + [14] = { 40.5, 93.5, 405, 300 }, + [15] = { 38.7, 93.4, 405, 300 }, + [16] = { 40.4, 93, 405, 300 }, + [17] = { 40.6, 92.2, 405, 300 }, + [18] = { 38.7, 92, 405, 300 }, + [19] = { 35.1, 91.6, 405, 300 }, + [20] = { 36.2, 91.5, 405, 300 }, + [21] = { 38.5, 90.8, 405, 300 }, + [22] = { 34.6, 90.4, 405, 300 }, + [23] = { 35.8, 90.3, 405, 300 }, + [24] = { 35.2, 89.9, 405, 300 }, + [25] = { 37, 89.4, 405, 300 }, + [26] = { 39, 89.4, 405, 300 }, + [27] = { 35.2, 88.9, 405, 300 }, + [28] = { 34.4, 88.9, 405, 300 }, + [29] = { 40.6, 87.7, 405, 300 }, + [30] = { 36.5, 87.1, 405, 300 }, + [31] = { 40.5, 86.6, 405, 300 }, + [32] = { 39, 85.9, 405, 300 }, + [33] = { 37, 85.7, 405, 300 }, + [34] = { 34.5, 85.6, 405, 300 }, + [35] = { 37.9, 85.3, 405, 300 }, + [36] = { 37, 84.6, 405, 300 }, + [37] = { 40.4, 84.6, 405, 300 }, + [38] = { 38.3, 84.2, 405, 300 }, + [39] = { 40.3, 83.5, 405, 300 }, + [40] = { 34.3, 83.5, 405, 300 }, + [41] = { 35.9, 83.4, 405, 300 }, + [42] = { 38.2, 82.3, 405, 300 }, + [43] = { 35.1, 82.3, 405, 300 }, + [44] = { 36.1, 82.2, 405, 300 }, + [45] = { 35.6, 82.1, 405, 300 }, + [46] = { 36.1, 80.3, 405, 300 }, + [47] = { 35.1, 80.3, 405, 300 }, + [48] = { 36.9, 80.1, 405, 300 }, + [49] = { 40.4, 85.6, 405, 300 }, + [50] = { 37.4, 81.3, 405, 300 }, + [51] = { 36.5, 79.2, 405, 300 }, + [52] = { 37.3, 82.2, 405, 300 }, + [53] = { 37.3, 80.2, 405, 300 }, + }, + ["lvl"] = "33-34", + }, + [4649] = { + ["coords"] = { + [1] = { 42.3, 2, 357, 300 }, + [2] = { 42, 1.9, 357, 300 }, + [3] = { 42.7, 1.3, 357, 300 }, + [4] = { 42.2, 1, 357, 300 }, + [5] = { 43.1, 0.8, 357, 300 }, + [6] = { 38.4, 97.1, 405, 300 }, + [7] = { 38.1, 96.9, 405, 300 }, + [8] = { 39.2, 96, 405, 300 }, + [9] = { 38.4, 95.6, 405, 300 }, + [10] = { 39.7, 95.2, 405, 300 }, + [11] = { 38.3, 94.5, 405, 300 }, + [12] = { 39.2, 94.3, 405, 300 }, + [13] = { 39.3, 93.6, 405, 300 }, + [14] = { 40.5, 93.5, 405, 300 }, + [15] = { 38.7, 93.4, 405, 300 }, + [16] = { 40.4, 93, 405, 300 }, + [17] = { 40.6, 92.2, 405, 300 }, + [18] = { 38.7, 92, 405, 300 }, + [19] = { 35.1, 91.6, 405, 300 }, + [20] = { 36.2, 91.5, 405, 300 }, + [21] = { 38.5, 90.8, 405, 300 }, + [22] = { 34.6, 90.4, 405, 300 }, + [23] = { 35.8, 90.3, 405, 300 }, + [24] = { 35.2, 89.9, 405, 300 }, + [25] = { 37, 89.4, 405, 300 }, + [26] = { 39, 89.4, 405, 300 }, + [27] = { 35.2, 88.9, 405, 300 }, + [28] = { 34.4, 88.9, 405, 300 }, + [29] = { 40.6, 87.7, 405, 300 }, + [30] = { 36.5, 87.1, 405, 300 }, + [31] = { 40.5, 86.6, 405, 300 }, + [32] = { 39, 85.9, 405, 300 }, + [33] = { 37, 85.7, 405, 300 }, + [34] = { 34.5, 85.6, 405, 300 }, + [35] = { 37.9, 85.3, 405, 300 }, + [36] = { 37, 84.6, 405, 300 }, + [37] = { 40.4, 84.6, 405, 300 }, + [38] = { 38.3, 84.2, 405, 300 }, + [39] = { 40.3, 83.5, 405, 300 }, + [40] = { 34.3, 83.5, 405, 300 }, + [41] = { 35.9, 83.4, 405, 300 }, + [42] = { 38.2, 82.3, 405, 300 }, + [43] = { 35.1, 82.3, 405, 300 }, + [44] = { 36.1, 82.2, 405, 300 }, + [45] = { 35.6, 82.1, 405, 300 }, + [46] = { 36.1, 80.3, 405, 300 }, + [47] = { 35.1, 80.3, 405, 300 }, + [48] = { 36.9, 80.1, 405, 300 }, + [49] = { 40.4, 85.6, 405, 300 }, + [50] = { 37.4, 81.3, 405, 300 }, + [51] = { 36.5, 79.2, 405, 300 }, + [52] = { 37.3, 82.2, 405, 300 }, + [53] = { 37.3, 80.2, 405, 300 }, + }, + ["lvl"] = "33-34", + }, + [4651] = { + ["coords"] = { + [1] = { 42.4, 1.6, 357, 300 }, + [2] = { 43, 1.5, 357, 300 }, + [3] = { 41.9, 1.1, 357, 300 }, + [4] = { 38.7, 96.5, 405, 300 }, + [5] = { 39.7, 96.3, 405, 300 }, + [6] = { 37.9, 95.7, 405, 300 }, + [7] = { 38.5, 93.9, 405, 300 }, + [8] = { 40.1, 92.6, 405, 300 }, + [9] = { 38.5, 92.5, 405, 300 }, + [10] = { 38.6, 91.4, 405, 300 }, + [11] = { 37.6, 90.3, 405, 300 }, + [12] = { 36.6, 88.5, 405, 300 }, + [13] = { 41, 87.5, 405, 300 }, + [14] = { 39.1, 87.4, 405, 300 }, + [15] = { 36.4, 82.4, 405, 300 }, + [16] = { 36.1, 81.1, 405, 300 }, + [17] = { 37.4, 81, 405, 300 }, + }, + ["lvl"] = "34-35", + }, + [4652] = { + ["coords"] = { + [1] = { 43.3, 1.1, 357, 300 }, + [2] = { 42.5, 1.1, 357, 300 }, + [3] = { 43.6, 1, 357, 300 }, + [4] = { 42.6, 0.9, 357, 300 }, + [5] = { 43.6, 0.9, 357, 300 }, + [6] = { 43.4, 0.7, 357, 300 }, + [7] = { 40.1, 95.8, 405, 300 }, + [8] = { 38.8, 95.7, 405, 300 }, + [9] = { 40.5, 95.6, 405, 300 }, + [10] = { 39, 95.4, 405, 300 }, + [11] = { 40.6, 95.4, 405, 300 }, + [12] = { 40.2, 95.1, 405, 300 }, + [13] = { 40.2, 94.1, 405, 300 }, + [14] = { 39.9, 94, 405, 300 }, + [15] = { 38.9, 93.8, 405, 300 }, + [16] = { 35.6, 92.3, 405, 300 }, + [17] = { 40.3, 91.9, 405, 300 }, + [18] = { 34.8, 91.1, 405, 300 }, + [19] = { 36.3, 90.6, 405, 300 }, + }, + ["lvl"] = "35-36", + }, + [4653] = { + ["coords"] = { + [1] = { 43.3, 1.1, 357, 300 }, + [2] = { 42.5, 1.1, 357, 300 }, + [3] = { 43.6, 1, 357, 300 }, + [4] = { 42.6, 0.9, 357, 300 }, + [5] = { 43.6, 0.9, 357, 300 }, + [6] = { 43.4, 0.7, 357, 300 }, + [7] = { 40.1, 95.8, 405, 300 }, + [8] = { 38.8, 95.7, 405, 300 }, + [9] = { 40.5, 95.6, 405, 300 }, + [10] = { 39, 95.4, 405, 300 }, + [11] = { 40.6, 95.4, 405, 300 }, + [12] = { 40.2, 95.1, 405, 300 }, + [13] = { 40.2, 94.1, 405, 300 }, + [14] = { 39.9, 94, 405, 300 }, + [15] = { 38.9, 93.8, 405, 300 }, + [16] = { 35.6, 92.3, 405, 300 }, + [17] = { 40.3, 91.9, 405, 300 }, + [18] = { 34.8, 91.1, 405, 300 }, + [19] = { 36.3, 90.6, 405, 300 }, + }, + ["lvl"] = "35-36", + }, + [4654] = { + ["coords"] = { + [1] = { 30, 68.9, 405, 300 }, + [2] = { 30, 67.8, 405, 300 }, + [3] = { 30.1, 66.3, 405, 300 }, + [4] = { 31.2, 66.2, 405, 300 }, + [5] = { 33, 65.9, 405, 300 }, + [6] = { 30.7, 65.4, 405, 300 }, + [7] = { 30.1, 62.3, 405, 300 }, + [8] = { 39.7, 61.4, 405, 300 }, + [9] = { 35.3, 61.4, 405, 300 }, + [10] = { 30.7, 61.3, 405, 300 }, + [11] = { 30.1, 61.2, 405, 300 }, + [12] = { 35.8, 61.2, 405, 300 }, + [13] = { 37.4, 61, 405, 300 }, + [14] = { 36.8, 60.6, 405, 300 }, + [15] = { 31.7, 60.2, 405, 300 }, + [16] = { 36, 59, 405, 300 }, + [17] = { 35.1, 58, 405, 300 }, + [18] = { 34.5, 56.7, 405, 300 }, + [19] = { 33.7, 55.7, 405, 300 }, + [20] = { 30.8, 55.7, 405, 300 }, + [21] = { 34.5, 55.7, 405, 300 }, + [22] = { 31.5, 54.6, 405, 300 }, + [23] = { 34.2, 54.4, 405, 300 }, + [24] = { 33.6, 54.4, 405, 300 }, + [25] = { 35.3, 53.6, 405, 300 }, + [26] = { 30.7, 53.4, 405, 300 }, + }, + ["lvl"] = "37-38", + }, + [4655] = { + ["coords"] = { + [1] = { 29.5, 60.6, 405, 300 }, + [2] = { 30, 68.9, 405, 300 }, + [3] = { 30, 67.8, 405, 300 }, + [4] = { 30.1, 66.3, 405, 300 }, + [5] = { 31.2, 66.2, 405, 300 }, + [6] = { 33, 65.9, 405, 300 }, + [7] = { 30.7, 65.4, 405, 300 }, + [8] = { 30.1, 62.3, 405, 300 }, + [9] = { 39.7, 61.4, 405, 300 }, + [10] = { 35.3, 61.4, 405, 300 }, + [11] = { 30.7, 61.3, 405, 300 }, + [12] = { 30.1, 61.2, 405, 300 }, + [13] = { 35.8, 61.2, 405, 300 }, + [14] = { 37.4, 61, 405, 300 }, + [15] = { 36.8, 60.6, 405, 300 }, + [16] = { 31.7, 60.2, 405, 300 }, + [17] = { 36, 59, 405, 300 }, + [18] = { 35.1, 58, 405, 300 }, + [19] = { 34.5, 56.7, 405, 300 }, + [20] = { 33.7, 55.7, 405, 300 }, + [21] = { 30.8, 55.7, 405, 300 }, + [22] = { 34.5, 55.7, 405, 300 }, + [23] = { 31.5, 54.6, 405, 300 }, + [24] = { 34.2, 54.4, 405, 300 }, + [25] = { 33.6, 54.4, 405, 300 }, + [26] = { 35.3, 53.6, 405, 300 }, + [27] = { 30.7, 53.4, 405, 300 }, + }, + ["lvl"] = "37-38", + }, + [4656] = { + ["coords"] = { + [1] = { 31.3, 61, 405, 300 }, + [2] = { 32.5, 61, 405, 300 }, + [3] = { 32, 60.9, 405, 300 }, + [4] = { 32, 59.8, 405, 300 }, + [5] = { 32.6, 59.8, 405, 300 }, + [6] = { 31.5, 59, 405, 300 }, + [7] = { 30.7, 59, 405, 300 }, + [8] = { 29.9, 58.3, 405, 300 }, + [9] = { 29.7, 58.1, 405, 300 }, + [10] = { 30.2, 57.8, 405, 300 }, + [11] = { 29.8, 57.7, 405, 300 }, + [12] = { 30.7, 56.8, 405, 300 }, + [13] = { 32.2, 55.5, 405, 300 }, + [14] = { 32.6, 55, 405, 300 }, + [15] = { 33.3, 54.9, 405, 300 }, + [16] = { 33, 54.8, 405, 300 }, + [17] = { 30.5, 54.7, 405, 300 }, + [18] = { 30, 54.6, 405, 300 }, + [19] = { 29.4, 54.5, 405, 300 }, + [20] = { 32.2, 53.6, 405, 300 }, + [21] = { 32.8, 53.5, 405, 300 }, + [22] = { 29, 53.5, 405, 300 }, + [23] = { 34.2, 53.2, 405, 300 }, + [24] = { 29.3, 52.2, 405, 300 }, + [25] = { 30.6, 52, 405, 300 }, + [26] = { 31.4, 51.2, 405, 300 }, + [27] = { 29.5, 60.6, 405, 300 }, + }, + ["lvl"] = "38-39", + }, + [4657] = { + ["coords"] = { + [1] = { 31.3, 61, 405, 300 }, + [2] = { 32.5, 61, 405, 300 }, + [3] = { 32, 60.9, 405, 300 }, + [4] = { 32, 59.8, 405, 300 }, + [5] = { 32.6, 59.8, 405, 300 }, + [6] = { 31.5, 59, 405, 300 }, + [7] = { 30.7, 59, 405, 300 }, + [8] = { 29.9, 58.3, 405, 300 }, + [9] = { 29.7, 58.1, 405, 300 }, + [10] = { 30.2, 57.8, 405, 300 }, + [11] = { 29.8, 57.7, 405, 300 }, + [12] = { 30.7, 56.8, 405, 300 }, + [13] = { 32.2, 55.5, 405, 300 }, + [14] = { 32.6, 55, 405, 300 }, + [15] = { 33.3, 54.9, 405, 300 }, + [16] = { 33, 54.8, 405, 300 }, + [17] = { 30.5, 54.7, 405, 300 }, + [18] = { 30, 54.6, 405, 300 }, + [19] = { 29.4, 54.5, 405, 300 }, + [20] = { 32.2, 53.6, 405, 300 }, + [21] = { 32.8, 53.5, 405, 300 }, + [22] = { 29, 53.5, 405, 300 }, + [23] = { 34.2, 53.2, 405, 300 }, + [24] = { 29.3, 52.2, 405, 300 }, + [25] = { 30.6, 52, 405, 300 }, + [26] = { 31.4, 51.2, 405, 300 }, + [27] = { 29.5, 60.6, 405, 300 }, + [28] = { 31.5, 54.6, 405, 300 }, + }, + ["lvl"] = "38-39", + }, + [4658] = { + ["coords"] = { + [1] = { 28.8, 60.8, 405, 300 }, + [2] = { 28.9, 58.1, 405, 300 }, + [3] = { 29.3, 55.5, 405, 300 }, + [4] = { 29.1, 50.7, 405, 300 }, + [5] = { 30.5, 50.6, 405, 300 }, + [6] = { 29.3, 50.6, 405, 300 }, + }, + ["lvl"] = "39-40", + }, + [4659] = { + ["coords"] = { + [1] = { 28.8, 60.8, 405, 300 }, + [2] = { 28.9, 58.1, 405, 300 }, + [3] = { 29.3, 55.5, 405, 300 }, + [4] = { 29.1, 50.7, 405, 300 }, + [5] = { 30.5, 50.6, 405, 300 }, + [6] = { 29.3, 50.6, 405, 300 }, + }, + ["lvl"] = "39-40", + }, + [4660] = { + ["coords"] = {}, + ["lvl"] = "37-38", + }, + [4661] = { + ["coords"] = {}, + ["lvl"] = "29-30", + }, + [4662] = { + ["coords"] = { + [1] = { 65.4, 80.7, 405, 300 }, + [2] = { 65.5, 80.6, 405, 300 }, + [3] = { 73.8, 77.7, 405, 300 }, + [4] = { 73.8, 77.6, 405, 300 }, + [5] = { 72.2, 74.5, 405, 300 }, + [6] = { 72.3, 74.5, 405, 300 }, + }, + ["lvl"] = "37-38", + }, + [4663] = { + ["coords"] = { + [1] = { 52.9, 32.3, 405, 300 }, + [2] = { 53.1, 32.2, 405, 300 }, + [3] = { 55.2, 30.1, 405, 300 }, + [4] = { 52.5, 30, 405, 300 }, + [5] = { 56.8, 30, 405, 300 }, + [6] = { 55.3, 29.9, 405, 300 }, + [7] = { 53.3, 29.9, 405, 300 }, + [8] = { 52.1, 28.9, 405, 300 }, + [9] = { 54.2, 28, 405, 300 }, + [10] = { 57.2, 28, 405, 300 }, + [11] = { 54, 27.8, 405, 300 }, + [12] = { 55.9, 27.4, 405, 300 }, + [13] = { 57.4, 26.3, 405, 300 }, + [14] = { 54.7, 24.6, 405, 300 }, + [15] = { 56.9, 24.6, 405, 300 }, + [16] = { 56.6, 23.5, 405, 300 }, + [17] = { 54.8, 23.5, 405, 300 }, + [18] = { 57, 22.9, 405, 300 }, + [19] = { 56.7, 22.7, 405, 300 }, + [20] = { 57.3, 22.4, 405, 300 }, + [21] = { 55.3, 22.4, 405, 300 }, + [22] = { 56.1, 22.3, 405, 300 }, + [23] = { 56.7, 22.1, 405, 300 }, + }, + ["lvl"] = "30-31", + }, + [4664] = { + ["coords"] = { + [1] = { 52.7, 32.5, 405, 300 }, + [2] = { 52.4, 32.5, 405, 300 }, + [3] = { 52.8, 32.3, 405, 300 }, + [4] = { 54, 30.4, 405, 300 }, + [5] = { 54.5, 30.1, 405, 300 }, + [6] = { 56, 29.9, 405, 300 }, + [7] = { 56.3, 29.5, 405, 300 }, + [8] = { 56.1, 29.2, 405, 300 }, + [9] = { 55.1, 28.6, 405, 300 }, + [10] = { 52.3, 28.2, 405, 300 }, + [11] = { 57.6, 26.3, 405, 300 }, + [12] = { 57.7, 26.3, 405, 300 }, + [13] = { 57.5, 26, 405, 300 }, + [14] = { 56.9, 25.7, 405, 300 }, + [15] = { 56.4, 21.6, 405, 300 }, + }, + ["lvl"] = "30-31", + }, + [4665] = { + ["coords"] = { + [1] = { 56.1, 31.4, 405, 300 }, + [2] = { 56, 31.1, 405, 300 }, + [3] = { 52.3, 29.7, 405, 300 }, + [4] = { 52.5, 29.3, 405, 300 }, + [5] = { 52.3, 28.9, 405, 300 }, + [6] = { 57.5, 28.7, 405, 300 }, + [7] = { 52.8, 28.2, 405, 300 }, + [8] = { 53.2, 27.4, 405, 300 }, + [9] = { 52.9, 27.2, 405, 300 }, + [10] = { 55, 27.1, 405, 300 }, + [11] = { 55.2, 26.9, 405, 300 }, + [12] = { 54.6, 26.6, 405, 300 }, + [13] = { 53.6, 26.3, 405, 300 }, + [14] = { 55, 26.2, 405, 300 }, + [15] = { 55.5, 26.2, 405, 300 }, + [16] = { 56.5, 21.4, 405, 300 }, + [17] = { 54.5, 30.1, 405, 300 }, + [18] = { 56.8, 30, 405, 300 }, + }, + ["lvl"] = "31-32", + }, + [4666] = { + ["coords"] = { + [1] = { 54.4, 33.2, 405, 300 }, + [2] = { 55.1, 30.4, 405, 300 }, + [3] = { 55.4, 30.1, 405, 300 }, + [4] = { 55.4, 30, 405, 300 }, + [5] = { 53.8, 29.6, 405, 300 }, + [6] = { 53, 29.6, 405, 300 }, + [7] = { 53.9, 29.4, 405, 300 }, + [8] = { 55.6, 28.6, 405, 300 }, + [9] = { 53.2, 28.6, 405, 300 }, + [10] = { 53.3, 28.5, 405, 300 }, + [11] = { 52.5, 28.4, 405, 300 }, + [12] = { 56, 28.3, 405, 300 }, + [13] = { 54.8, 27.8, 405, 300 }, + [14] = { 55.3, 27.6, 405, 300 }, + [15] = { 55.4, 27.5, 405, 300 }, + [16] = { 54.5, 27.5, 405, 300 }, + [17] = { 55.7, 26.9, 405, 300 }, + [18] = { 54.2, 26.5, 405, 300 }, + [19] = { 56.1, 25.9, 405, 300 }, + [20] = { 55.1, 25.5, 405, 300 }, + [21] = { 55.8, 25.2, 405, 300 }, + [22] = { 55.6, 24.8, 405, 300 }, + [23] = { 55.4, 21.3, 405, 300 }, + [24] = { 56.8, 30, 405, 300 }, + }, + ["lvl"] = "31-32", + }, + [4667] = { + ["coords"] = { + [1] = { 52.8, 28.9, 405, 300 }, + [2] = { 55.3, 26.6, 405, 300 }, + }, + ["lvl"] = "32-33", + }, + [4668] = { + ["coords"] = { + [1] = { 29.3, 49.4, 215, 300 }, + [2] = { 29.1, 49.2, 215, 300 }, + [3] = { 51.5, 81.9, 405, 300 }, + [4] = { 79.5, 81.3, 405, 300 }, + [5] = { 82.1, 80.7, 405, 300 }, + [6] = { 81.9, 80.4, 405, 300 }, + [7] = { 53.1, 80.2, 405, 300 }, + [8] = { 53.5, 78.3, 405, 300 }, + [9] = { 80.5, 77.8, 405, 300 }, + [10] = { 49.6, 77.2, 405, 300 }, + [11] = { 80.3, 77, 405, 300 }, + [12] = { 80.7, 76.3, 405, 300 }, + [13] = { 80.8, 76.3, 405, 300 }, + [14] = { 50.3, 72.3, 405, 300 }, + [15] = { 54.9, 71.7, 405, 300 }, + }, + ["lvl"] = "38-39", + }, + [4669] = { + ["coords"] = {}, + ["lvl"] = "36", + }, + [4670] = { + ["coords"] = { + [1] = { 76.7, 30.1, 405, 300 }, + [2] = { 76, 28.9, 405, 300 }, + [3] = { 75.2, 28, 405, 300 }, + [4] = { 77.4, 26.9, 405, 300 }, + [5] = { 74.5, 26.7, 405, 300 }, + [6] = { 73.8, 25.6, 405, 300 }, + [7] = { 78.9, 24.6, 405, 300 }, + [8] = { 73.1, 24.5, 405, 300 }, + [9] = { 74.4, 24.3, 405, 300 }, + [10] = { 75.3, 23.5, 405, 300 }, + [11] = { 73.7, 23.4, 405, 300 }, + [12] = { 76, 22.5, 405, 300 }, + [13] = { 78.9, 22.4, 405, 300 }, + [14] = { 73, 22.4, 405, 300 }, + [15] = { 74.5, 22.3, 405, 300 }, + [16] = { 78.2, 21.2, 405, 300 }, + [17] = { 72.3, 21.2, 405, 300 }, + [18] = { 77.4, 20.3, 405, 300 }, + [19] = { 73.1, 20.3, 405, 300 }, + [20] = { 78.9, 20.2, 405, 300 }, + [21] = { 71.5, 20.1, 405, 300 }, + [22] = { 74.6, 20.1, 405, 300 }, + [23] = { 75.3, 19.3, 405, 300 }, + [24] = { 73.6, 19.1, 405, 300 }, + [25] = { 78.2, 18.9, 405, 300 }, + [26] = { 76.7, 18.9, 405, 300 }, + [27] = { 79.9, 18.9, 405, 300 }, + [28] = { 76, 17.9, 405, 300 }, + [29] = { 71.5, 17.9, 405, 300 }, + [30] = { 78.2, 16.9, 405, 300 }, + [31] = { 72.3, 16.9, 405, 300 }, + [32] = { 73.8, 16.8, 405, 300 }, + [33] = { 70.8, 16.6, 405, 300 }, + [34] = { 76.8, 16.6, 405, 300 }, + [35] = { 80.6, 16.3, 405, 300 }, + [36] = { 79.1, 15.8, 405, 300 }, + [37] = { 77.6, 15.5, 405, 300 }, + [38] = { 76.7, 14.8, 405, 300 }, + [39] = { 78.4, 14.1, 405, 300 }, + [40] = { 74.5, 13.4, 405, 300 }, + [41] = { 73.7, 12.2, 405, 300 }, + [42] = { 74.4, 11.2, 405, 300 }, + [43] = { 73.1, 11, 405, 300 }, + [44] = { 73.7, 10.3, 405, 300 }, + [45] = { 73.5, 9, 405, 300 }, + [46] = { 53.9, 90.7, 406, 300 }, + [47] = { 52.6, 90.2, 406, 300 }, + [48] = { 50.4, 89.3, 406, 300 }, + [49] = { 52, 88.6, 406, 300 }, + [50] = { 48.4, 88, 406, 300 }, + [51] = { 47.6, 86.9, 406, 300 }, + [52] = { 48.3, 86, 406, 300 }, + [53] = { 47.1, 85.9, 406, 300 }, + [54] = { 47.6, 85.1, 406, 300 }, + [55] = { 47.5, 84, 406, 300 }, + }, + ["lvl"] = "31-32", + }, + [4671] = { + ["coords"] = { + [1] = { 76, 15.8, 405, 300 }, + [2] = { 76.7, 30.1, 405, 300 }, + [3] = { 76, 28.9, 405, 300 }, + [4] = { 75.2, 28, 405, 300 }, + [5] = { 77.4, 26.9, 405, 300 }, + [6] = { 74.5, 26.7, 405, 300 }, + [7] = { 73.8, 25.6, 405, 300 }, + [8] = { 78.9, 24.6, 405, 300 }, + [9] = { 73.1, 24.5, 405, 300 }, + [10] = { 74.4, 24.3, 405, 300 }, + [11] = { 75.3, 23.5, 405, 300 }, + [12] = { 73.7, 23.4, 405, 300 }, + [13] = { 76, 22.5, 405, 300 }, + [14] = { 78.9, 22.4, 405, 300 }, + [15] = { 73, 22.4, 405, 300 }, + [16] = { 74.5, 22.3, 405, 300 }, + [17] = { 78.2, 21.2, 405, 300 }, + [18] = { 72.3, 21.2, 405, 300 }, + [19] = { 77.4, 20.3, 405, 300 }, + [20] = { 73.1, 20.3, 405, 300 }, + [21] = { 78.9, 20.2, 405, 300 }, + [22] = { 71.5, 20.1, 405, 300 }, + [23] = { 74.6, 20.1, 405, 300 }, + [24] = { 75.3, 19.3, 405, 300 }, + [25] = { 73.6, 19.1, 405, 300 }, + [26] = { 78.2, 18.9, 405, 300 }, + [27] = { 76.7, 18.9, 405, 300 }, + [28] = { 79.9, 18.9, 405, 300 }, + [29] = { 76, 17.9, 405, 300 }, + [30] = { 71.5, 17.9, 405, 300 }, + [31] = { 78.2, 16.9, 405, 300 }, + [32] = { 72.3, 16.9, 405, 300 }, + [33] = { 73.8, 16.8, 405, 300 }, + [34] = { 70.8, 16.6, 405, 300 }, + [35] = { 76.8, 16.6, 405, 300 }, + [36] = { 80.6, 16.3, 405, 300 }, + [37] = { 79.1, 15.8, 405, 300 }, + [38] = { 77.6, 15.5, 405, 300 }, + [39] = { 76.7, 14.8, 405, 300 }, + [40] = { 78.4, 14.1, 405, 300 }, + [41] = { 74.5, 13.4, 405, 300 }, + [42] = { 73.7, 12.2, 405, 300 }, + [43] = { 74.4, 11.2, 405, 300 }, + [44] = { 73.1, 11, 405, 300 }, + [45] = { 73.7, 10.3, 405, 300 }, + [46] = { 73.5, 9, 405, 300 }, + [47] = { 53.9, 90.7, 406, 300 }, + [48] = { 52.6, 90.2, 406, 300 }, + [49] = { 50.4, 89.3, 406, 300 }, + [50] = { 52, 88.6, 406, 300 }, + [51] = { 48.4, 88, 406, 300 }, + [52] = { 47.6, 86.9, 406, 300 }, + [53] = { 48.3, 86, 406, 300 }, + [54] = { 47.1, 85.9, 406, 300 }, + [55] = { 47.6, 85.1, 406, 300 }, + [56] = { 47.5, 84, 406, 300 }, + }, + ["lvl"] = "31-32", + }, + [4672] = { + ["coords"] = { + [1] = { 73.7, 21.3, 405, 300 }, + [2] = { 76.7, 30.1, 405, 300 }, + [3] = { 76, 28.9, 405, 300 }, + [4] = { 75.2, 28, 405, 300 }, + [5] = { 77.4, 26.9, 405, 300 }, + [6] = { 74.5, 26.7, 405, 300 }, + [7] = { 73.8, 25.6, 405, 300 }, + [8] = { 78.9, 24.6, 405, 300 }, + [9] = { 73.1, 24.5, 405, 300 }, + [10] = { 74.4, 24.3, 405, 300 }, + [11] = { 75.3, 23.5, 405, 300 }, + [12] = { 73.7, 23.4, 405, 300 }, + [13] = { 76, 22.5, 405, 300 }, + [14] = { 78.9, 22.4, 405, 300 }, + [15] = { 73, 22.4, 405, 300 }, + [16] = { 74.5, 22.3, 405, 300 }, + [17] = { 78.2, 21.2, 405, 300 }, + [18] = { 72.3, 21.2, 405, 300 }, + [19] = { 77.4, 20.3, 405, 300 }, + [20] = { 73.1, 20.3, 405, 300 }, + [21] = { 78.9, 20.2, 405, 300 }, + [22] = { 71.5, 20.1, 405, 300 }, + [23] = { 74.6, 20.1, 405, 300 }, + [24] = { 75.3, 19.3, 405, 300 }, + [25] = { 73.6, 19.1, 405, 300 }, + [26] = { 78.2, 18.9, 405, 300 }, + [27] = { 76.7, 18.9, 405, 300 }, + [28] = { 79.9, 18.9, 405, 300 }, + [29] = { 76, 17.9, 405, 300 }, + [30] = { 71.5, 17.9, 405, 300 }, + [31] = { 78.2, 16.9, 405, 300 }, + [32] = { 72.3, 16.9, 405, 300 }, + [33] = { 73.8, 16.8, 405, 300 }, + [34] = { 70.8, 16.6, 405, 300 }, + [35] = { 76.8, 16.6, 405, 300 }, + [36] = { 80.6, 16.3, 405, 300 }, + [37] = { 79.1, 15.8, 405, 300 }, + [38] = { 77.6, 15.5, 405, 300 }, + [39] = { 76.7, 14.8, 405, 300 }, + [40] = { 78.4, 14.1, 405, 300 }, + [41] = { 74.5, 13.4, 405, 300 }, + [42] = { 73.7, 12.2, 405, 300 }, + [43] = { 74.4, 11.2, 405, 300 }, + [44] = { 73.1, 11, 405, 300 }, + [45] = { 73.7, 10.3, 405, 300 }, + [46] = { 73.5, 9, 405, 300 }, + [47] = { 53.9, 90.7, 406, 300 }, + [48] = { 52.6, 90.2, 406, 300 }, + [49] = { 50.4, 89.3, 406, 300 }, + [50] = { 52, 88.6, 406, 300 }, + [51] = { 48.4, 88, 406, 300 }, + [52] = { 47.6, 86.9, 406, 300 }, + [53] = { 48.3, 86, 406, 300 }, + [54] = { 47.1, 85.9, 406, 300 }, + [55] = { 47.6, 85.1, 406, 300 }, + [56] = { 47.5, 84, 406, 300 }, + }, + ["lvl"] = "31-32", + }, + [4673] = { + ["coords"] = { + [1] = { 76.7, 27.9, 405, 300 }, + [2] = { 76.1, 26.7, 405, 300 }, + [3] = { 75.6, 26.6, 405, 300 }, + [4] = { 75.1, 25.7, 405, 300 }, + [5] = { 78.2, 25.7, 405, 300 }, + [6] = { 76.8, 25.6, 405, 300 }, + [7] = { 77.6, 24.7, 405, 300 }, + [8] = { 75.9, 24.5, 405, 300 }, + [9] = { 76.5, 23.9, 405, 300 }, + [10] = { 77.3, 23.7, 405, 300 }, + [11] = { 76.5, 23.6, 405, 300 }, + [12] = { 74.4, 23.6, 405, 300 }, + [13] = { 74.2, 23.6, 405, 300 }, + [14] = { 78.7, 23.2, 405, 300 }, + [15] = { 78.1, 23, 405, 300 }, + [16] = { 77.5, 22.3, 405, 300 }, + [17] = { 74.5, 21.8, 405, 300 }, + [18] = { 75.3, 21.3, 405, 300 }, + [19] = { 79.3, 21.2, 405, 300 }, + [20] = { 76.7, 21.1, 405, 300 }, + [21] = { 79.4, 21, 405, 300 }, + [22] = { 76, 19.9, 405, 300 }, + [23] = { 72.3, 19.2, 405, 300 }, + [24] = { 72.2, 18.9, 405, 300 }, + [25] = { 77, 18.1, 405, 300 }, + [26] = { 77.6, 17.9, 405, 300 }, + [27] = { 73, 17.9, 405, 300 }, + [28] = { 78.9, 17.9, 405, 300 }, + [29] = { 80.5, 17.7, 405, 300 }, + [30] = { 72.7, 16.8, 405, 300 }, + [31] = { 72.8, 16.8, 405, 300 }, + [32] = { 79.7, 16.6, 405, 300 }, + [33] = { 75.1, 16.3, 405, 300 }, + [34] = { 79.4, 16.2, 405, 300 }, + [35] = { 79.3, 15.8, 405, 300 }, + [36] = { 74.6, 15.7, 405, 300 }, + [37] = { 70.1, 15.6, 405, 300 }, + [38] = { 71.1, 15, 405, 300 }, + [39] = { 72.2, 14.7, 405, 300 }, + [40] = { 79.4, 14.6, 405, 300 }, + [41] = { 73.8, 14.4, 405, 300 }, + [42] = { 72.6, 13.2, 405, 300 }, + [43] = { 74.2, 13, 405, 300 }, + [44] = { 75, 12.2, 405, 300 }, + [45] = { 74.8, 11.7, 405, 300 }, + [46] = { 75.2, 10.7, 405, 300 }, + [47] = { 52.8, 90.2, 406, 300 }, + [48] = { 46.3, 89.2, 406, 300 }, + [49] = { 52.9, 89.2, 406, 300 }, + [50] = { 47.7, 89, 406, 300 }, + [51] = { 46.7, 87.9, 406, 300 }, + [52] = { 48, 87.6, 406, 300 }, + [53] = { 48.8, 86.9, 406, 300 }, + [54] = { 48.6, 86.4, 406, 300 }, + [55] = { 49, 85.5, 406, 300 }, + [56] = { 73.7, 21.3, 405, 300 }, + [57] = { 76, 15.8, 405, 300 }, + [58] = { 75.3, 23.5, 405, 300 }, + }, + ["lvl"] = "32-33", + }, + [4674] = { + ["coords"] = { + [1] = { 76.7, 27.9, 405, 300 }, + [2] = { 76.1, 26.7, 405, 300 }, + [3] = { 75.6, 26.6, 405, 300 }, + [4] = { 75.1, 25.7, 405, 300 }, + [5] = { 78.2, 25.7, 405, 300 }, + [6] = { 76.8, 25.6, 405, 300 }, + [7] = { 77.6, 24.7, 405, 300 }, + [8] = { 75.9, 24.5, 405, 300 }, + [9] = { 76.5, 23.9, 405, 300 }, + [10] = { 77.3, 23.7, 405, 300 }, + [11] = { 76.5, 23.6, 405, 300 }, + [12] = { 74.4, 23.6, 405, 300 }, + [13] = { 74.2, 23.6, 405, 300 }, + [14] = { 78.7, 23.2, 405, 300 }, + [15] = { 78.1, 23, 405, 300 }, + [16] = { 77.5, 22.3, 405, 300 }, + [17] = { 74.5, 21.8, 405, 300 }, + [18] = { 75.3, 21.3, 405, 300 }, + [19] = { 79.3, 21.2, 405, 300 }, + [20] = { 76.7, 21.1, 405, 300 }, + [21] = { 79.4, 21, 405, 300 }, + [22] = { 76, 19.9, 405, 300 }, + [23] = { 72.3, 19.2, 405, 300 }, + [24] = { 72.2, 18.9, 405, 300 }, + [25] = { 77, 18.1, 405, 300 }, + [26] = { 77.6, 17.9, 405, 300 }, + [27] = { 73, 17.9, 405, 300 }, + [28] = { 78.9, 17.9, 405, 300 }, + [29] = { 80.5, 17.7, 405, 300 }, + [30] = { 72.7, 16.8, 405, 300 }, + [31] = { 72.8, 16.8, 405, 300 }, + [32] = { 79.7, 16.6, 405, 300 }, + [33] = { 75.1, 16.3, 405, 300 }, + [34] = { 79.4, 16.2, 405, 300 }, + [35] = { 79.3, 15.8, 405, 300 }, + [36] = { 74.6, 15.7, 405, 300 }, + [37] = { 70.1, 15.6, 405, 300 }, + [38] = { 71.1, 15, 405, 300 }, + [39] = { 72.2, 14.7, 405, 300 }, + [40] = { 79.4, 14.6, 405, 300 }, + [41] = { 73.8, 14.4, 405, 300 }, + [42] = { 72.6, 13.2, 405, 300 }, + [43] = { 74.2, 13, 405, 300 }, + [44] = { 75, 12.2, 405, 300 }, + [45] = { 74.8, 11.7, 405, 300 }, + [46] = { 75.2, 10.7, 405, 300 }, + [47] = { 52.8, 90.2, 406, 300 }, + [48] = { 46.3, 89.2, 406, 300 }, + [49] = { 52.9, 89.2, 406, 300 }, + [50] = { 47.7, 89, 406, 300 }, + [51] = { 46.7, 87.9, 406, 300 }, + [52] = { 48, 87.6, 406, 300 }, + [53] = { 48.8, 86.9, 406, 300 }, + [54] = { 48.6, 86.4, 406, 300 }, + [55] = { 49, 85.5, 406, 300 }, + [56] = { 73.7, 21.3, 405, 300 }, + [57] = { 76, 15.8, 405, 300 }, + [58] = { 70.8, 16.6, 405, 300 }, + }, + ["lvl"] = "32-33", + }, + [4675] = { + ["coords"] = { + [1] = { 76.7, 27.9, 405, 300 }, + [2] = { 76.1, 26.7, 405, 300 }, + [3] = { 75.6, 26.6, 405, 300 }, + [4] = { 75.1, 25.7, 405, 300 }, + [5] = { 78.2, 25.7, 405, 300 }, + [6] = { 76.8, 25.6, 405, 300 }, + [7] = { 77.6, 24.7, 405, 300 }, + [8] = { 75.9, 24.5, 405, 300 }, + [9] = { 76.5, 23.9, 405, 300 }, + [10] = { 77.3, 23.7, 405, 300 }, + [11] = { 76.5, 23.6, 405, 300 }, + [12] = { 74.4, 23.6, 405, 300 }, + [13] = { 74.2, 23.6, 405, 300 }, + [14] = { 78.7, 23.2, 405, 300 }, + [15] = { 78.1, 23, 405, 300 }, + [16] = { 77.5, 22.3, 405, 300 }, + [17] = { 74.5, 21.8, 405, 300 }, + [18] = { 75.3, 21.3, 405, 300 }, + [19] = { 79.3, 21.2, 405, 300 }, + [20] = { 76.7, 21.1, 405, 300 }, + [21] = { 79.4, 21, 405, 300 }, + [22] = { 76, 19.9, 405, 300 }, + [23] = { 72.3, 19.2, 405, 300 }, + [24] = { 72.2, 18.9, 405, 300 }, + [25] = { 77, 18.1, 405, 300 }, + [26] = { 77.6, 17.9, 405, 300 }, + [27] = { 73, 17.9, 405, 300 }, + [28] = { 78.9, 17.9, 405, 300 }, + [29] = { 80.5, 17.7, 405, 300 }, + [30] = { 72.7, 16.8, 405, 300 }, + [31] = { 72.8, 16.8, 405, 300 }, + [32] = { 79.7, 16.6, 405, 300 }, + [33] = { 75.1, 16.3, 405, 300 }, + [34] = { 79.4, 16.2, 405, 300 }, + [35] = { 79.3, 15.8, 405, 300 }, + [36] = { 74.6, 15.7, 405, 300 }, + [37] = { 70.1, 15.6, 405, 300 }, + [38] = { 71.1, 15, 405, 300 }, + [39] = { 72.2, 14.7, 405, 300 }, + [40] = { 79.4, 14.6, 405, 300 }, + [41] = { 73.8, 14.4, 405, 300 }, + [42] = { 72.6, 13.2, 405, 300 }, + [43] = { 74.2, 13, 405, 300 }, + [44] = { 75, 12.2, 405, 300 }, + [45] = { 74.8, 11.7, 405, 300 }, + [46] = { 75.2, 10.7, 405, 300 }, + [47] = { 52.8, 90.2, 406, 300 }, + [48] = { 46.3, 89.2, 406, 300 }, + [49] = { 52.9, 89.2, 406, 300 }, + [50] = { 47.7, 89, 406, 300 }, + [51] = { 46.7, 87.9, 406, 300 }, + [52] = { 48, 87.6, 406, 300 }, + [53] = { 48.8, 86.9, 406, 300 }, + [54] = { 48.6, 86.4, 406, 300 }, + [55] = { 49, 85.5, 406, 300 }, + [56] = { 73.7, 21.3, 405, 300 }, + [57] = { 77.4, 20.3, 405, 300 }, + [58] = { 76, 15.8, 405, 300 }, + }, + ["lvl"] = "32-33", + }, + [4676] = { + ["coords"] = { + [1] = { 53, 86, 405, 300 }, + [2] = { 54.4, 83.6, 405, 300 }, + [3] = { 53.8, 82.3, 405, 300 }, + [4] = { 54.2, 80.9, 405, 300 }, + [5] = { 53.7, 80.1, 405, 300 }, + [6] = { 55.2, 79.5, 405, 300 }, + [7] = { 49.3, 77.9, 405, 300 }, + [8] = { 57.6, 77.1, 405, 300 }, + [9] = { 48.9, 77, 405, 300 }, + [10] = { 51.4, 75.6, 405, 300 }, + [11] = { 50.5, 73.7, 405, 300 }, + [12] = { 54.6, 73.6, 405, 300 }, + [13] = { 52.7, 72.2, 405, 300 }, + [14] = { 54.3, 71.1, 405, 300 }, + [15] = { 56.8, 71.1, 405, 300 }, + [16] = { 50.8, 70.2, 405, 300 }, + }, + ["lvl"] = "36-37", + }, + [4677] = { + ["coords"] = { + [1] = { 54.9, 77.7, 405, 300 }, + [2] = { 51, 77.6, 405, 300 }, + [3] = { 54, 75.3, 405, 300 }, + [4] = { 51.8, 68.8, 405, 300 }, + }, + ["lvl"] = "37-38", + }, + [4678] = { + ["coords"] = { + [1] = { 53, 68, 405, 300 }, + [2] = { 51.5, 68, 405, 300 }, + }, + ["lvl"] = "37-38", + }, + [4679] = { + ["coords"] = { + [1] = { 48.6, 79.3, 405, 300 }, + [2] = { 48.7, 77.9, 405, 300 }, + [3] = { 50.4, 77.1, 405, 300 }, + [4] = { 50.6, 76.9, 405, 300 }, + [5] = { 50, 73.2, 405, 300 }, + [6] = { 50.6, 71.7, 405, 300 }, + [7] = { 50.4, 71.5, 405, 300 }, + [8] = { 54.2, 70.8, 405, 300 }, + [9] = { 51.2, 70.1, 405, 300 }, + }, + ["lvl"] = "37-38", + }, + [4680] = { + ["coords"] = { + [1] = { 51.6, 84.4, 405, 300 }, + [2] = { 52.5, 83.9, 405, 300 }, + [3] = { 51.7, 83.5, 405, 300 }, + [4] = { 50.9, 83.2, 405, 300 }, + [5] = { 51.5, 81.8, 405, 300 }, + }, + ["lvl"] = "38-39", + }, + [4681] = { + ["coords"] = { + [1] = { 53.1, 79.1, 405, 300 }, + [2] = { 56.7, 77.9, 405, 300 }, + [3] = { 55.7, 77.7, 405, 300 }, + [4] = { 53.6, 76.9, 405, 300 }, + [5] = { 56.7, 75.6, 405, 300 }, + [6] = { 58.3, 75.5, 405, 300 }, + [7] = { 56.5, 73, 405, 300 }, + [8] = { 55.9, 72.8, 405, 300 }, + }, + ["lvl"] = "38-39", + }, + [4682] = { + ["coords"] = { + [1] = { 52.5, 84.9, 405, 300 }, + [2] = { 54.4, 78.6, 405, 300 }, + [3] = { 54.2, 78.1, 405, 300 }, + [4] = { 54.6, 76.7, 405, 300 }, + }, + ["lvl"] = "38-39", + }, + [4683] = { + ["coords"] = {}, + ["lvl"] = "39-40", + }, + [4684] = { + ["coords"] = { + [1] = { 51.8, 84.7, 405, 300 }, + [2] = { 52, 83.9, 405, 300 }, + [3] = { 52.3, 83.5, 405, 300 }, + [4] = { 50.7, 82.6, 405, 300 }, + [5] = { 51.8, 82.5, 405, 300 }, + }, + ["lvl"] = "39-40", + }, + [4685] = { + ["coords"] = { + [1] = { 28.9, 45.4, 215, 300 }, + [2] = { 51.5, 85.7, 405, 300 }, + [3] = { 53.9, 84.6, 405, 300 }, + [4] = { 79.2, 81.5, 405, 300 }, + [5] = { 49.8, 81.4, 405, 300 }, + [6] = { 79.4, 80.7, 405, 300 }, + [7] = { 80.1, 77.1, 405, 300 }, + [8] = { 79.4, 76.9, 405, 300 }, + [9] = { 81.6, 76.1, 405, 300 }, + }, + ["lvl"] = "39-40", + }, + [4686] = { + ["coords"] = { + [1] = { 66.3, 32.8, 405, 550 }, + }, + ["lvl"] = "38-39", + ["rnk"] = "1", + }, + [4687] = { + ["coords"] = { + [1] = { 32.1, 24.7, 405, 550 }, + }, + ["lvl"] = "39-40", + ["rnk"] = "1", + }, + [4688] = { + ["coords"] = { + [1] = { 37, 72.7, 405, 300 }, + [2] = { 55.9, 41, 405, 300 }, + [3] = { 45.4, 30.3, 405, 300 }, + }, + ["lvl"] = "33-35", + }, + [4689] = { + ["coords"] = { + [1] = { 71.2, 34.8, 405, 300 }, + [2] = { 62, 32.3, 405, 300 }, + [3] = { 61.2, 22.5, 405, 300 }, + }, + ["lvl"] = "30-32", + }, + [4690] = { + ["coords"] = { + [1] = { 43.1, 50.3, 405, 300 }, + [2] = { 56.5, 47.7, 405, 300 }, + }, + ["lvl"] = "36-38", + }, + [4691] = { + ["coords"] = {}, + ["lvl"] = "32-33", + }, + [4692] = { + ["coords"] = { + [1] = { 38.5, 75.7, 405, 300 }, + [2] = { 35.7, 74.5, 405, 300 }, + [3] = { 36.7, 73.5, 405, 300 }, + [4] = { 44.1, 73.4, 405, 300 }, + [5] = { 67.9, 71.6, 405, 300 }, + [6] = { 43, 71.1, 405, 300 }, + [7] = { 43.4, 69.8, 405, 300 }, + [8] = { 68.8, 68.2, 405, 300 }, + [9] = { 54.5, 66.8, 405, 300 }, + [10] = { 48.3, 66.4, 405, 300 }, + [11] = { 69.4, 66.2, 405, 300 }, + [12] = { 64.8, 65.5, 405, 300 }, + [13] = { 41.9, 65.4, 405, 300 }, + [14] = { 71.5, 65.4, 405, 300 }, + [15] = { 56, 64.8, 405, 300 }, + [16] = { 74, 64.7, 405, 300 }, + [17] = { 71, 64.1, 405, 300 }, + [18] = { 70.4, 63.4, 405, 300 }, + [19] = { 67.1, 62.8, 405, 300 }, + [20] = { 69.1, 62.2, 405, 300 }, + [21] = { 71.2, 62.2, 405, 300 }, + [22] = { 72.8, 62.1, 405, 300 }, + [23] = { 68.1, 60.9, 405, 300 }, + [24] = { 68.5, 60.4, 405, 300 }, + [25] = { 73.9, 60.2, 405, 300 }, + [26] = { 66.7, 60.2, 405, 300 }, + [27] = { 68.1, 59.5, 405, 300 }, + [28] = { 71.7, 59.4, 405, 300 }, + [29] = { 65.7, 58.5, 405, 300 }, + [30] = { 71.8, 58.2, 405, 300 }, + [31] = { 69.1, 58.1, 405, 300 }, + [32] = { 74.5, 58, 405, 300 }, + [33] = { 74.6, 56.8, 405, 300 }, + [34] = { 71.8, 56.8, 405, 300 }, + [35] = { 70.1, 56.4, 405, 300 }, + [36] = { 74, 55.6, 405, 300 }, + [37] = { 72.2, 55.1, 405, 300 }, + [38] = { 69.4, 54.5, 405, 300 }, + [39] = { 65.5, 54.4, 405, 300 }, + [40] = { 69.2, 54.1, 405, 300 }, + [41] = { 67.1, 53.7, 405, 300 }, + [42] = { 67.1, 53.3, 405, 300 }, + [43] = { 70.2, 41.2, 405, 300 }, + [44] = { 56.5, 41.1, 405, 300 }, + [45] = { 47.8, 41, 405, 300 }, + [46] = { 48.8, 39.9, 405, 300 }, + [47] = { 45.6, 38.9, 405, 300 }, + [48] = { 47, 38.8, 405, 300 }, + [49] = { 50, 37.8, 405, 300 }, + [50] = { 44.3, 37.8, 405, 300 }, + [51] = { 73.3, 35.9, 405, 300 }, + [52] = { 70.3, 35.8, 405, 300 }, + [53] = { 80.6, 35.7, 405, 300 }, + [54] = { 51.4, 35.4, 405, 300 }, + [55] = { 57.4, 34.6, 405, 300 }, + [56] = { 61.3, 34.6, 405, 300 }, + [57] = { 75, 34.4, 405, 300 }, + [58] = { 45.9, 34.3, 405, 300 }, + [59] = { 49.6, 34.1, 405, 300 }, + [60] = { 38.2, 33.5, 405, 300 }, + [61] = { 76, 33.5, 405, 300 }, + [62] = { 47, 33, 405, 300 }, + [63] = { 47.2, 32.3, 405, 300 }, + [64] = { 50.1, 32.2, 405, 300 }, + [65] = { 44.9, 31.3, 405, 300 }, + [66] = { 48.2, 31.3, 405, 300 }, + [67] = { 45.5, 31.2, 405, 300 }, + [68] = { 47, 30.7, 405, 300 }, + [69] = { 49, 30, 405, 300 }, + [70] = { 43.4, 29.6, 405, 300 }, + [71] = { 47.6, 29.2, 405, 300 }, + [72] = { 58.9, 29, 405, 300 }, + [73] = { 71.5, 27.9, 405, 300 }, + [74] = { 48.7, 27.9, 405, 300 }, + [75] = { 48.4, 27.8, 405, 300 }, + [76] = { 46.6, 27.8, 405, 300 }, + [77] = { 65.4, 27.7, 405, 300 }, + [78] = { 50.3, 26.4, 405, 300 }, + [79] = { 44.6, 25, 405, 300 }, + [80] = { 52.1, 24.4, 405, 300 }, + [81] = { 59.8, 24.3, 405, 300 }, + [82] = { 53.7, 23.4, 405, 300 }, + [83] = { 51.3, 23.3, 405, 300 }, + [84] = { 44.2, 22.9, 405, 300 }, + [85] = { 52.8, 22, 405, 300 }, + [86] = { 69.7, 20.5, 405, 300 }, + [87] = { 69.5, 20.2, 405, 300 }, + [88] = { 65.6, 20.2, 405, 300 }, + [89] = { 56.7, 18.8, 405, 300 }, + [90] = { 44.3, 18.6, 405, 300 }, + [91] = { 61.1, 18.5, 405, 300 }, + [92] = { 55.7, 18.5, 405, 300 }, + [93] = { 44.9, 16.9, 405, 300 }, + [94] = { 62, 16.8, 405, 300 }, + [95] = { 46.6, 14.7, 405, 300 }, + [96] = { 59.4, 13.3, 405, 300 }, + [97] = { 57.4, 12.4, 405, 300 }, + [98] = { 50, 7.8, 405, 300 }, + [99] = { 36.8, 91.1, 406, 300 }, + [100] = { 34.5, 87.9, 406, 300 }, + [101] = { 32.6, 87.1, 406, 300 }, + [102] = { 25.8, 82.8, 406, 300 }, + }, + ["lvl"] = "32-33", + }, + [4693] = { + ["coords"] = { + [1] = { 63.4, 60.4, 405, 300 }, + [2] = { 44.1, 59.2, 405, 300 }, + [3] = { 61.9, 58.9, 405, 300 }, + [4] = { 63.1, 57.3, 405, 300 }, + [5] = { 42.4, 56.9, 405, 300 }, + [6] = { 60.5, 56.4, 405, 300 }, + [7] = { 44.1, 55.9, 405, 300 }, + [8] = { 62.6, 55.1, 405, 300 }, + [9] = { 44.1, 54.5, 405, 300 }, + [10] = { 61.3, 54.4, 405, 300 }, + [11] = { 42.3, 53.6, 405, 300 }, + [12] = { 57.9, 53.1, 405, 300 }, + [13] = { 43.9, 52.4, 405, 300 }, + [14] = { 62.7, 52, 405, 300 }, + [15] = { 60.1, 51.3, 405, 300 }, + [16] = { 61.1, 51.2, 405, 300 }, + [17] = { 57.5, 51.1, 405, 300 }, + [18] = { 40.2, 51, 405, 300 }, + [19] = { 58.5, 50.9, 405, 300 }, + [20] = { 41.7, 50.3, 405, 300 }, + [21] = { 58.2, 50.2, 405, 300 }, + [22] = { 59.7, 49.6, 405, 300 }, + [23] = { 53.6, 49.3, 405, 300 }, + [24] = { 55.4, 49.1, 405, 300 }, + [25] = { 62.8, 48.5, 405, 300 }, + [26] = { 41.7, 48.5, 405, 300 }, + [27] = { 58.9, 48.2, 405, 300 }, + [28] = { 45.4, 48.1, 405, 300 }, + [29] = { 61, 47.9, 405, 300 }, + [30] = { 42.8, 47.7, 405, 300 }, + [31] = { 58.4, 47.3, 405, 300 }, + [32] = { 63.9, 47, 405, 300 }, + [33] = { 45, 46.9, 405, 300 }, + [34] = { 43.5, 46.8, 405, 300 }, + [35] = { 55.4, 46.6, 405, 300 }, + [36] = { 41.7, 45.8, 405, 300 }, + [37] = { 64, 45.6, 405, 300 }, + [38] = { 59.7, 45.6, 405, 300 }, + [39] = { 51.3, 45.2, 405, 300 }, + [40] = { 42.2, 44.7, 405, 300 }, + [41] = { 61.9, 44.6, 405, 300 }, + [42] = { 40.5, 43.2, 405, 300 }, + [43] = { 41.9, 42, 405, 300 }, + [44] = { 42.8, 40.9, 405, 300 }, + [45] = { 39.2, 39.2, 405, 300 }, + [46] = { 41.3, 38.9, 405, 300 }, + [47] = { 35.8, 38.8, 405, 300 }, + [48] = { 40.5, 37.4, 405, 300 }, + [49] = { 73.8, 11.2, 405, 300 }, + [50] = { 47.7, 86, 406, 300 }, + }, + ["lvl"] = "36-37", + }, + [4694] = { + ["coords"] = { + [1] = { 55.2, 85.7, 405, 300 }, + [2] = { 57.4, 85.7, 405, 300 }, + [3] = { 29.8, 81.2, 405, 300 }, + [4] = { 62.3, 79.8, 405, 300 }, + [5] = { 59.6, 79.1, 405, 300 }, + [6] = { 61.2, 77.9, 405, 300 }, + [7] = { 62.6, 75.7, 405, 300 }, + [8] = { 59.5, 75.6, 405, 300 }, + [9] = { 61.2, 74.5, 405, 300 }, + [10] = { 62.7, 71, 405, 300 }, + }, + ["lvl"] = "39-40", + }, + [4695] = { + ["coords"] = { + [1] = { 53.6, 63.6, 405, 300 }, + [2] = { 51.7, 60.5, 405, 300 }, + [3] = { 53, 60.5, 405, 300 }, + [4] = { 53.4, 60.3, 405, 300 }, + [5] = { 50.8, 60.2, 405, 300 }, + [6] = { 49.2, 60, 405, 300 }, + [7] = { 49, 59.4, 405, 300 }, + [8] = { 51.5, 59.3, 405, 300 }, + [9] = { 50, 59, 405, 300 }, + [10] = { 53.3, 58.8, 405, 300 }, + [11] = { 50.7, 58.4, 405, 300 }, + [12] = { 48, 57.7, 405, 300 }, + [13] = { 51.5, 57.7, 405, 300 }, + [14] = { 49.3, 57.4, 405, 300 }, + [15] = { 50.2, 56.6, 405, 300 }, + }, + ["lvl"] = "35-37", + }, + [4696] = { + ["coords"] = { + [1] = { 53.1, 68.9, 405, 300 }, + [2] = { 56, 64.6, 405, 300 }, + [3] = { 59.5, 64.2, 405, 300 }, + [4] = { 64.1, 63.8, 405, 300 }, + [5] = { 63.6, 37.6, 405, 300 }, + [6] = { 80.4, 36.7, 405, 300 }, + [7] = { 71.1, 36.6, 405, 300 }, + [8] = { 79.8, 36.1, 405, 300 }, + [9] = { 76.8, 35.8, 405, 300 }, + [10] = { 65.5, 35.7, 405, 300 }, + [11] = { 78.2, 35.6, 405, 300 }, + [12] = { 63.5, 35, 405, 300 }, + [13] = { 68.6, 34.8, 405, 300 }, + [14] = { 76, 34.7, 405, 300 }, + [15] = { 71.1, 34.4, 405, 300 }, + [16] = { 68.6, 33.5, 405, 300 }, + [17] = { 59.9, 33.5, 405, 300 }, + [18] = { 75.2, 33.4, 405, 300 }, + [19] = { 71.1, 33.2, 405, 300 }, + [20] = { 73.5, 33.2, 405, 300 }, + [21] = { 71.5, 33.2, 405, 300 }, + [22] = { 63.3, 33.2, 405, 300 }, + [23] = { 78.3, 32.9, 405, 300 }, + [24] = { 73, 32.4, 405, 300 }, + [25] = { 68.8, 31.8, 405, 300 }, + [26] = { 73.9, 31.3, 405, 300 }, + [27] = { 63, 31.2, 405, 300 }, + [28] = { 74.4, 30.2, 405, 300 }, + [29] = { 72.7, 30, 405, 300 }, + [30] = { 71.9, 29.9, 405, 300 }, + [31] = { 61, 29.7, 405, 300 }, + [32] = { 65.5, 29.2, 405, 300 }, + [33] = { 70.8, 28.9, 405, 300 }, + [34] = { 71.8, 28.1, 405, 300 }, + [35] = { 65.5, 27.9, 405, 300 }, + [36] = { 58.9, 26.9, 405, 300 }, + [37] = { 65.7, 26.8, 405, 300 }, + [38] = { 61.2, 26.8, 405, 300 }, + [39] = { 70.5, 26.7, 405, 300 }, + [40] = { 72.4, 26.6, 405, 300 }, + [41] = { 66.9, 25.8, 405, 300 }, + [42] = { 69.9, 25.7, 405, 300 }, + [43] = { 66.3, 25.7, 405, 300 }, + [44] = { 67.8, 25.6, 405, 300 }, + [45] = { 64.1, 24.9, 405, 300 }, + [46] = { 70.8, 23.9, 405, 300 }, + [47] = { 64.4, 22.4, 405, 300 }, + [48] = { 66.3, 22.3, 405, 300 }, + [49] = { 68.7, 22.2, 405, 300 }, + [50] = { 54.3, 22, 405, 300 }, + [51] = { 70.4, 21.3, 405, 300 }, + [52] = { 64.1, 20.1, 405, 300 }, + [53] = { 57.7, 19.4, 405, 300 }, + [54] = { 67.1, 19.1, 405, 300 }, + [55] = { 54.2, 18.8, 405, 300 }, + [56] = { 69.3, 18, 405, 300 }, + [57] = { 63.5, 17.9, 405, 300 }, + [58] = { 62.6, 16.9, 405, 300 }, + [59] = { 55.8, 14.9, 405, 300 }, + [60] = { 62.5, 14.7, 405, 300 }, + [61] = { 54.4, 13.9, 405, 300 }, + [62] = { 58.4, 11.7, 405, 300 }, + [63] = { 57.3, 11.6, 405, 300 }, + [64] = { 52.2, 11.3, 405, 300 }, + [65] = { 58.4, 8.9, 405, 300 }, + [66] = { 52.3, 8.1, 405, 300 }, + [67] = { 50.8, 7.8, 405, 300 }, + [68] = { 54.6, 6.9, 405, 300 }, + [69] = { 50.3, 6.1, 405, 300 }, + [70] = { 37.4, 91.2, 406, 300 }, + [71] = { 37.3, 89.2, 406, 300 }, + [72] = { 33.6, 86.4, 406, 300 }, + [73] = { 32.6, 86.4, 406, 300 }, + [74] = { 33.5, 83.9, 406, 300 }, + [75] = { 27.9, 83.2, 406, 300 }, + [76] = { 26.6, 82.8, 406, 300 }, + [77] = { 30.1, 82, 406, 300 }, + [78] = { 26, 81.3, 406, 300 }, + }, + ["lvl"] = "30-31", + }, + [4697] = { + ["coords"] = { + [1] = { 38, 74.5, 405, 300 }, + [2] = { 45.5, 73.6, 405, 300 }, + [3] = { 36.9, 73.1, 405, 300 }, + [4] = { 42.9, 72.3, 405, 300 }, + [5] = { 67.8, 68, 405, 300 }, + [6] = { 71.6, 64.6, 405, 300 }, + [7] = { 70.3, 61.9, 405, 300 }, + [8] = { 71.4, 59.3, 405, 300 }, + [9] = { 68.8, 59.1, 405, 300 }, + [10] = { 73.3, 58.8, 405, 300 }, + [11] = { 70.5, 58.2, 405, 300 }, + [12] = { 64.1, 57.7, 405, 300 }, + [13] = { 41.8, 57.3, 405, 300 }, + [14] = { 65.9, 56.6, 405, 300 }, + [15] = { 71.6, 55.9, 405, 300 }, + [16] = { 58.9, 54.7, 405, 300 }, + [17] = { 60.8, 54.5, 405, 300 }, + [18] = { 58.5, 54.4, 405, 300 }, + [19] = { 42.7, 50.1, 405, 300 }, + [20] = { 57.1, 48.5, 405, 300 }, + [21] = { 62.7, 48.3, 405, 300 }, + [22] = { 45.2, 47.9, 405, 300 }, + [23] = { 55.5, 45.7, 405, 300 }, + [24] = { 44.1, 45.5, 405, 300 }, + [25] = { 77.6, 44, 405, 300 }, + [26] = { 40.4, 40.8, 405, 300 }, + }, + ["lvl"] = "34-35", + }, + [4699] = { + ["coords"] = { + [1] = { 50.7, 92.4, 405, 300 }, + [2] = { 48.5, 91.3, 405, 300 }, + [3] = { 45.7, 86.9, 405, 300 }, + [4] = { 47.4, 86.8, 405, 300 }, + [5] = { 57, 86.7, 405, 300 }, + [6] = { 55.3, 86.3, 405, 300 }, + [7] = { 55.3, 83.3, 405, 300 }, + [8] = { 29.3, 82.7, 405, 300 }, + [9] = { 28.6, 81.9, 405, 300 }, + [10] = { 61.1, 79.3, 405, 300 }, + [11] = { 62.1, 75.6, 405, 300 }, + [12] = { 61.1, 73.3, 405, 300 }, + [13] = { 58.9, 72.1, 405, 300 }, + [14] = { 63.9, 71.5, 405, 300 }, + [15] = { 62.7, 69.8, 405, 300 }, + }, + ["lvl"] = "38-39", + }, + [4700] = { + ["coords"] = { + [1] = { 58, 87.5, 405, 180 }, + [2] = { 57.8, 71.1, 405, 300 }, + [3] = { 50.8, 61.2, 405, 300 }, + [4] = { 52.2, 60.6, 405, 300 }, + [5] = { 48.3, 60.3, 405, 300 }, + [6] = { 72.9, 58.9, 405, 180 }, + [7] = { 52.6, 57.4, 405, 300 }, + [8] = { 53.7, 56.7, 405, 300 }, + [9] = { 50.5, 56.6, 405, 300 }, + [10] = { 52, 56.1, 405, 300 }, + [11] = { 46.6, 15, 405, 180 }, + [12] = { 55.3, 10, 405, 180 }, + [13] = { 55.3, 9.9, 405, 180 }, + [14] = { 30.7, 84.9, 406, 180 }, + [15] = { 30.7, 84.8, 406, 180 }, + }, + ["lvl"] = "34-35", + }, + [4701] = { + ["coords"] = { + [1] = { 58, 87.5, 405, 180 }, + [2] = { 54.3, 63.2, 405, 300 }, + [3] = { 55.7, 62.7, 405, 300 }, + [4] = { 54, 60.9, 405, 300 }, + [5] = { 46.5, 60.7, 405, 300 }, + [6] = { 51.4, 59, 405, 300 }, + [7] = { 72.9, 58.9, 405, 180 }, + [8] = { 47, 58.9, 405, 300 }, + [9] = { 49.6, 58.3, 405, 300 }, + [10] = { 50.3, 58.3, 405, 300 }, + [11] = { 55, 58.2, 405, 300 }, + [12] = { 53.6, 58, 405, 300 }, + [13] = { 48.5, 56.9, 405, 300 }, + [14] = { 49.1, 55.6, 405, 300 }, + [15] = { 46.6, 15, 405, 180 }, + [16] = { 55.3, 10, 405, 180 }, + [17] = { 30.7, 84.9, 406, 180 }, + }, + ["lvl"] = "35-36", + }, + [4702] = { + ["coords"] = { + [1] = { 52.4, 62.2, 405, 300 }, + [2] = { 49.5, 59.7, 405, 300 }, + [3] = { 51.4, 58.3, 405, 300 }, + [4] = { 55.7, 62.7, 405, 300 }, + [5] = { 54, 60.9, 405, 300 }, + [6] = { 52.6, 57.4, 405, 300 }, + }, + ["lvl"] = "36-37", + }, + [4703] = { + ["coords"] = {}, + ["lvl"] = "37-39", + }, + [4704] = { + ["coords"] = {}, + ["lvl"] = "34", + }, + [4705] = { + ["coords"] = { + [1] = { 29.6, 49.7, 215, 300 }, + [2] = { 82.5, 81, 405, 300 }, + [3] = { 80, 79, 405, 300 }, + [4] = { 79.6, 78.8, 405, 300 }, + [5] = { 80, 77.9, 405, 300 }, + [6] = { 81, 76.7, 405, 300 }, + [7] = { 81, 76.6, 405, 300 }, + }, + ["lvl"] = "39-40", + }, + [4706] = { + ["coords"] = { + [1] = { 80.3, 76.1, 400, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [4707] = { + ["coords"] = { + [1] = { 80.9, 77.9, 400, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [4708] = { + ["coords"] = { + [1] = { 51, 27.2, 440, 300 }, + }, + ["lvl"] = "39", + }, + [4709] = { + ["coords"] = { + [1] = { 79.8, 77, 400, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [4710] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [4711] = { + ["coords"] = { + [1] = { 35.2, 27.7, 405, 300 }, + [2] = { 35.9, 26.8, 405, 300 }, + [3] = { 35.3, 26.6, 405, 300 }, + [4] = { 36.9, 24.4, 405, 300 }, + [5] = { 36.7, 24.2, 405, 300 }, + [6] = { 32.7, 23.9, 405, 300 }, + [7] = { 35.8, 23.8, 405, 300 }, + [8] = { 38.5, 23.7, 405, 300 }, + [9] = { 36.2, 23.1, 405, 300 }, + [10] = { 35.4, 22, 405, 300 }, + [11] = { 37, 21.9, 405, 300 }, + [12] = { 38.9, 21.4, 405, 300 }, + [13] = { 36.7, 21.3, 405, 300 }, + [14] = { 38.1, 21.2, 405, 300 }, + [15] = { 36.5, 20.4, 405, 300 }, + [16] = { 41.8, 20, 405, 300 }, + [17] = { 41.6, 18.8, 405, 300 }, + }, + ["lvl"] = "32-33", + }, + [4712] = { + ["coords"] = { + [1] = { 35.9, 28.9, 405, 300 }, + [2] = { 36, 24.8, 405, 300 }, + [3] = { 32.9, 23.3, 405, 300 }, + [4] = { 31.4, 22.1, 405, 300 }, + [5] = { 39, 20.1, 405, 300 }, + [6] = { 31.6, 17, 405, 300 }, + [7] = { 27.8, 6.7, 405, 300 }, + }, + ["lvl"] = "32-33", + }, + [4713] = { + ["coords"] = { + [1] = { 36.9, 26.2, 405, 300 }, + [2] = { 34.5, 25.6, 405, 300 }, + [3] = { 32.3, 24.4, 405, 300 }, + [4] = { 34.6, 23.2, 405, 300 }, + [5] = { 34.6, 22.4, 405, 300 }, + [6] = { 32.1, 21.5, 405, 300 }, + [7] = { 34.5, 21.4, 405, 300 }, + [8] = { 32.2, 19.9, 405, 300 }, + [9] = { 33, 15, 405, 300 }, + [10] = { 33.8, 13.6, 405, 300 }, + [11] = { 27.7, 7.9, 405, 300 }, + [12] = { 27.9, 5.7, 405, 300 }, + }, + ["lvl"] = "33-34", + }, + [4714] = { + ["coords"] = { + [1] = { 32.2, 23.4, 405, 300 }, + [2] = { 31.7, 23.1, 405, 300 }, + [3] = { 32.5, 22.5, 405, 300 }, + [4] = { 33.8, 22.4, 405, 300 }, + [5] = { 30.9, 19.2, 405, 300 }, + [6] = { 32, 19, 405, 300 }, + [7] = { 31.4, 17.7, 405, 300 }, + [8] = { 34.6, 17.6, 405, 300 }, + [9] = { 29.9, 16.5, 405, 300 }, + [10] = { 34.3, 14.9, 405, 300 }, + [11] = { 32.7, 14.7, 405, 300 }, + [12] = { 29.2, 13.3, 405, 300 }, + [13] = { 30, 12.2, 405, 300 }, + [14] = { 27, 10.3, 405, 300 }, + [15] = { 33, 9.4, 405, 300 }, + [16] = { 28.6, 7.9, 405, 300 }, + [17] = { 33.9, 7.7, 405, 300 }, + [18] = { 30, 6.8, 405, 300 }, + [19] = { 32.2, 6.6, 405, 300 }, + [20] = { 32.9, 6, 405, 300 }, + [21] = { 27.7, 7.9, 405, 300 }, + }, + ["lvl"] = "34-35", + }, + [4715] = { + ["coords"] = { + [1] = { 30.7, 15.8, 405, 300 }, + [2] = { 29.2, 11.2, 405, 300 }, + [3] = { 30, 11.1, 405, 300 }, + [4] = { 28.5, 10.1, 405, 300 }, + [5] = { 30.9, 9.9, 405, 300 }, + [6] = { 30.8, 8.9, 405, 300 }, + [7] = { 30.2, 8.8, 405, 300 }, + [8] = { 29.2, 7.9, 405, 300 }, + [9] = { 30.8, 7.9, 405, 300 }, + }, + ["lvl"] = "35-36", + }, + [4716] = { + ["coords"] = { + [1] = { 29.9, 15.9, 405, 300 }, + [2] = { 28.6, 11.1, 405, 300 }, + [3] = { 33.2, 10.5, 405, 300 }, + [4] = { 28.5, 9, 405, 300 }, + [5] = { 34, 8.7, 405, 300 }, + [6] = { 30, 7.8, 405, 300 }, + }, + ["lvl"] = "36-37", + }, + [4717] = { + ["coords"] = {}, + ["lvl"] = "33-34", + }, + [4718] = { + ["coords"] = { + [1] = { 33, 22.1, 405, 300 }, + [2] = { 31.6, 15.6, 405, 300 }, + [3] = { 33.9, 10.2, 405, 300 }, + [4] = { 27.7, 9, 405, 300 }, + [5] = { 28.6, 6.6, 405, 300 }, + [6] = { 27.7, 7.9, 405, 300 }, + }, + ["lvl"] = "34-35", + }, + [4719] = { + ["coords"] = { + [1] = { 35, 16.8, 405, 300 }, + [2] = { 30.5, 16.4, 405, 300 }, + [3] = { 27.7, 12.6, 405, 300 }, + [4] = { 28.7, 12.5, 405, 300 }, + [5] = { 30.7, 11, 405, 300 }, + [6] = { 27.8, 10.1, 405, 300 }, + [7] = { 34.5, 9.9, 405, 300 }, + [8] = { 29.1, 9, 405, 300 }, + [9] = { 34.4, 8.1, 405, 300 }, + [10] = { 29.2, 11.2, 405, 300 }, + [11] = { 30, 11.1, 405, 300 }, + [12] = { 28.5, 10.1, 405, 300 }, + [13] = { 30.9, 9.9, 405, 300 }, + [14] = { 27.7, 9, 405, 300 }, + [15] = { 29.2, 7.9, 405, 300 }, + [16] = { 30.8, 7.9, 405, 300 }, + }, + ["lvl"] = "35-36", + }, + [4720] = { + ["coords"] = { + [1] = { 77.2, 77.4, 400, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [4721] = { + ["coords"] = { + [1] = { 41, 27.3, 215, 375 }, + [2] = { 55, 51.4, 1638, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [4722] = { + ["coords"] = { + [1] = { 46.1, 51.7, 400, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [4723] = { + ["coords"] = { + [1] = { 42.6, 18.4, 33, 300 }, + }, + ["lvl"] = "38", + }, + [4724] = { + ["coords"] = {}, + ["lvl"] = "30-31", + }, + [4725] = { + ["coords"] = {}, + ["lvl"] = "37-39", + }, + [4726] = { + ["coords"] = { + [1] = { 38.9, 80.1, 405, 300 }, + [2] = { 38.9, 77.1, 405, 300 }, + [3] = { 42.3, 75.7, 405, 300 }, + [4] = { 37.2, 74.6, 405, 300 }, + [5] = { 43.3, 73.5, 405, 300 }, + [6] = { 43.4, 71.4, 405, 300 }, + [7] = { 66, 70.6, 405, 300 }, + [8] = { 66.9, 69.8, 405, 300 }, + [9] = { 69.9, 68.7, 405, 300 }, + [10] = { 42.5, 68.6, 405, 300 }, + [11] = { 41.2, 67.9, 405, 300 }, + [12] = { 69.3, 65.6, 405, 300 }, + [13] = { 72.5, 65.1, 405, 300 }, + [14] = { 73.9, 63.3, 405, 300 }, + [15] = { 71.7, 62.7, 405, 300 }, + [16] = { 72.1, 62.5, 405, 300 }, + [17] = { 66.2, 61.3, 405, 300 }, + [18] = { 65.4, 60.6, 405, 300 }, + [19] = { 71.4, 60.3, 405, 300 }, + [20] = { 70.2, 60.3, 405, 300 }, + [21] = { 69.3, 59.7, 405, 300 }, + [22] = { 70.3, 59, 405, 300 }, + [23] = { 74.7, 59, 405, 300 }, + [24] = { 66.4, 58.4, 405, 300 }, + [25] = { 70.7, 57.9, 405, 300 }, + [26] = { 68.2, 57.6, 405, 300 }, + [27] = { 68.1, 56.9, 405, 300 }, + [28] = { 75.6, 56.6, 405, 300 }, + [29] = { 71.1, 55.8, 405, 300 }, + [30] = { 72.6, 54.9, 405, 300 }, + [31] = { 66.2, 54.9, 405, 300 }, + [32] = { 71.9, 54.8, 405, 300 }, + [33] = { 74.4, 54.7, 405, 300 }, + [34] = { 68.5, 54.2, 405, 300 }, + [35] = { 65.6, 52.8, 405, 300 }, + [36] = { 49.2, 41.5, 405, 300 }, + [37] = { 61.7, 41.3, 405, 300 }, + [38] = { 58.2, 41.1, 405, 300 }, + [39] = { 57.7, 40.2, 405, 300 }, + [40] = { 50.7, 40.2, 405, 300 }, + [41] = { 55.9, 40, 405, 300 }, + [42] = { 50.7, 39.7, 405, 300 }, + [43] = { 46.3, 39.7, 405, 300 }, + [44] = { 49.3, 38.9, 405, 300 }, + [45] = { 55.3, 38.3, 405, 300 }, + [46] = { 44.7, 36.7, 405, 300 }, + [47] = { 46.8, 35.6, 405, 300 }, + [48] = { 38.2, 35.5, 405, 300 }, + [49] = { 48.3, 35.4, 405, 300 }, + [50] = { 37.4, 35, 405, 300 }, + [51] = { 42.6, 34.9, 405, 300 }, + [52] = { 59.2, 34.8, 405, 300 }, + [53] = { 47.8, 34.5, 405, 300 }, + [54] = { 39.2, 33.5, 405, 300 }, + [55] = { 49, 32.9, 405, 300 }, + [56] = { 55.9, 32.9, 405, 300 }, + [57] = { 50, 32.6, 405, 300 }, + [58] = { 42.4, 31.8, 405, 300 }, + [59] = { 43.4, 31.2, 405, 300 }, + [60] = { 49.7, 31, 405, 300 }, + [61] = { 49.9, 29.5, 405, 300 }, + [62] = { 44.8, 29.4, 405, 300 }, + [63] = { 45.3, 29, 405, 300 }, + [64] = { 45.1, 28.4, 405, 300 }, + [65] = { 47, 28.4, 405, 300 }, + [66] = { 43.7, 28.1, 405, 300 }, + [67] = { 48.6, 27.7, 405, 300 }, + [68] = { 49.2, 25.9, 405, 300 }, + [69] = { 51.3, 25.6, 405, 300 }, + [70] = { 41.3, 25.6, 405, 300 }, + [71] = { 41.4, 24.6, 405, 300 }, + [72] = { 52.8, 24.4, 405, 300 }, + [73] = { 44.8, 23.5, 405, 300 }, + [74] = { 45.8, 22.7, 405, 300 }, + [75] = { 47.2, 21.9, 405, 300 }, + [76] = { 44.6, 17.6, 405, 300 }, + [77] = { 46.3, 15.8, 405, 300 }, + }, + ["lvl"] = "33-34", + }, + [4727] = { + ["coords"] = { + [1] = { 51.8, 93.3, 405, 300 }, + [2] = { 52.3, 92.2, 405, 300 }, + [3] = { 50.8, 90.2, 405, 300 }, + [4] = { 44.6, 88, 405, 300 }, + [5] = { 55.3, 88, 405, 300 }, + [6] = { 51.1, 87.8, 405, 300 }, + [7] = { 53.3, 86.9, 405, 300 }, + [8] = { 54.1, 85.9, 405, 300 }, + [9] = { 56.4, 85.7, 405, 300 }, + [10] = { 43.5, 85.5, 405, 300 }, + [11] = { 28.4, 83.9, 405, 300 }, + [12] = { 57.4, 83.7, 405, 300 }, + [13] = { 43.6, 83.4, 405, 300 }, + [14] = { 60.5, 80.6, 405, 300 }, + [15] = { 31.5, 79.2, 405, 300 }, + [16] = { 60.8, 78, 405, 300 }, + [17] = { 31.6, 77.9, 405, 300 }, + [18] = { 62.4, 76.4, 405, 300 }, + [19] = { 60.3, 75.6, 405, 300 }, + [20] = { 62.6, 75.5, 405, 300 }, + [21] = { 63.4, 73.7, 405, 300 }, + [22] = { 61.7, 73.7, 405, 300 }, + [23] = { 61.2, 73.5, 405, 300 }, + [24] = { 30.4, 73, 405, 300 }, + [25] = { 62.6, 71.8, 405, 300 }, + [26] = { 43.3, 60.1, 405, 300 }, + [27] = { 61.2, 58.7, 405, 300 }, + [28] = { 43.4, 54.5, 405, 300 }, + [29] = { 77.5, 52.8, 405, 300 }, + [30] = { 62.8, 52.3, 405, 300 }, + [31] = { 59, 52.1, 405, 300 }, + [32] = { 52.2, 49.8, 405, 300 }, + [33] = { 41.7, 48.7, 405, 300 }, + [34] = { 50.8, 48.1, 405, 300 }, + [35] = { 59.9, 47.8, 405, 300 }, + [36] = { 43.3, 45.8, 405, 300 }, + [37] = { 57.9, 45.6, 405, 300 }, + [38] = { 61.8, 45.5, 405, 300 }, + [39] = { 42, 43.4, 405, 300 }, + [40] = { 73.7, 11.1, 405, 300 }, + [41] = { 47.7, 85.9, 406, 300 }, + }, + ["lvl"] = "37-38", + }, + [4728] = { + ["coords"] = { + [1] = { 58.3, 63.3, 405, 300 }, + [2] = { 65.7, 42.6, 405, 300 }, + [3] = { 64.6, 42.4, 405, 300 }, + [4] = { 50.9, 40.7, 405, 300 }, + [5] = { 67.1, 40.1, 405, 300 }, + [6] = { 58.1, 40.1, 405, 300 }, + [7] = { 63.4, 39.1, 405, 300 }, + [8] = { 48.3, 38.3, 405, 300 }, + [9] = { 52.3, 37.8, 405, 300 }, + [10] = { 70.6, 36.9, 405, 300 }, + [11] = { 79, 36.9, 405, 300 }, + [12] = { 77.5, 36.8, 405, 300 }, + [13] = { 62.2, 36.7, 405, 300 }, + [14] = { 75.3, 36.2, 405, 300 }, + [15] = { 69, 35.9, 405, 300 }, + [16] = { 72.4, 35.8, 405, 300 }, + [17] = { 80.9, 35.6, 405, 300 }, + [18] = { 77.4, 35.5, 405, 300 }, + [19] = { 72.8, 35.4, 405, 300 }, + [20] = { 62.1, 35.2, 405, 300 }, + [21] = { 62.7, 34.5, 405, 300 }, + [22] = { 73.8, 34.4, 405, 300 }, + [23] = { 72.4, 34.4, 405, 300 }, + [24] = { 79.2, 34, 405, 300 }, + [25] = { 38.7, 33.9, 405, 300 }, + [26] = { 64, 33.5, 405, 300 }, + [27] = { 77.4, 33.3, 405, 300 }, + [28] = { 76.1, 33, 405, 300 }, + [29] = { 49.4, 32.9, 405, 300 }, + [30] = { 70.8, 32.3, 405, 300 }, + [31] = { 66.2, 31.5, 405, 300 }, + [32] = { 71.1, 31.4, 405, 300 }, + [33] = { 70, 31.2, 405, 300 }, + [34] = { 72.3, 31.1, 405, 300 }, + [35] = { 60.5, 31.1, 405, 300 }, + [36] = { 45.4, 31, 405, 300 }, + [37] = { 69.8, 30, 405, 300 }, + [38] = { 67.3, 29.7, 405, 300 }, + [39] = { 65.6, 29.5, 405, 300 }, + [40] = { 43.3, 29.1, 405, 300 }, + [41] = { 74.5, 29, 405, 300 }, + [42] = { 72.3, 28.9, 405, 300 }, + [43] = { 67, 27.3, 405, 300 }, + [44] = { 70, 27, 405, 300 }, + [45] = { 65.6, 26.8, 405, 300 }, + [46] = { 69.4, 26.8, 405, 300 }, + [47] = { 49.2, 26.2, 405, 300 }, + [48] = { 71.9, 25.6, 405, 300 }, + [49] = { 61.7, 25.3, 405, 300 }, + [50] = { 61.9, 24.6, 405, 300 }, + [51] = { 61.1, 23.5, 405, 300 }, + [52] = { 67.7, 23.3, 405, 300 }, + [53] = { 68.8, 23.1, 405, 300 }, + [54] = { 71.2, 22.7, 405, 300 }, + [55] = { 44.6, 22.2, 405, 300 }, + [56] = { 67.1, 21.9, 405, 300 }, + [57] = { 69.1, 21.9, 405, 300 }, + [58] = { 61.8, 21.8, 405, 300 }, + [59] = { 53.5, 20.5, 405, 300 }, + [60] = { 58.3, 20.4, 405, 300 }, + [61] = { 68.6, 20.2, 405, 300 }, + [62] = { 65.8, 20.2, 405, 300 }, + [63] = { 64.2, 18.9, 405, 300 }, + [64] = { 69.4, 18.7, 405, 300 }, + [65] = { 65.9, 18.4, 405, 300 }, + [66] = { 56.9, 17.3, 405, 300 }, + [67] = { 61.9, 15.8, 405, 300 }, + [68] = { 55.2, 14.6, 405, 300 }, + [69] = { 60.9, 13, 405, 300 }, + [70] = { 52.1, 10.7, 405, 300 }, + [71] = { 58.1, 10.1, 405, 300 }, + [72] = { 57, 9.8, 405, 300 }, + [73] = { 57.3, 9.3, 405, 300 }, + [74] = { 53, 8.8, 405, 300 }, + [75] = { 58.1, 8.5, 405, 300 }, + [76] = { 49.2, 7.8, 405, 300 }, + [77] = { 50.8, 6.6, 405, 300 }, + [78] = { 36.7, 90.2, 406, 300 }, + [79] = { 35.8, 87.7, 406, 300 }, + [80] = { 33.3, 85, 406, 300 }, + [81] = { 32.2, 84.7, 406, 300 }, + [82] = { 32.6, 84.3, 406, 300 }, + [83] = { 28.6, 83.8, 406, 300 }, + [84] = { 33.3, 83.6, 406, 300 }, + [85] = { 25.1, 82.9, 406, 300 }, + [86] = { 26.6, 81.8, 406, 300 }, + [87] = { 67.1, 19.1, 405, 300 }, + }, + ["lvl"] = "31-32", + }, + [4729] = { + ["coords"] = { + [1] = { 25.7, 24.4, 215, 300 }, + [2] = { 41.7, 64.2, 405, 300 }, + [3] = { 43.2, 63.6, 405, 300 }, + [4] = { 45.9, 63.6, 405, 300 }, + [5] = { 62.8, 59.9, 405, 300 }, + [6] = { 42.9, 59.7, 405, 300 }, + [7] = { 42, 58, 405, 300 }, + [8] = { 43.1, 57.5, 405, 300 }, + [9] = { 42.9, 55.6, 405, 300 }, + [10] = { 61.1, 55.5, 405, 300 }, + [11] = { 42.3, 55.1, 405, 300 }, + [12] = { 76.4, 54.7, 405, 300 }, + [13] = { 43.4, 53.4, 405, 300 }, + [14] = { 58, 52.3, 405, 300 }, + [15] = { 60.5, 52.2, 405, 300 }, + [16] = { 76.9, 52.2, 405, 300 }, + [17] = { 78, 52.1, 405, 300 }, + [18] = { 44.8, 51.4, 405, 300 }, + [19] = { 42.5, 51.4, 405, 300 }, + [20] = { 41.4, 51.2, 405, 300 }, + [21] = { 47.1, 50.6, 405, 300 }, + [22] = { 63.3, 50.1, 405, 300 }, + [23] = { 55.8, 49.8, 405, 300 }, + [24] = { 42.7, 49.3, 405, 300 }, + [25] = { 52.6, 49.1, 405, 300 }, + [26] = { 51.7, 49.1, 405, 300 }, + [27] = { 57.3, 48.9, 405, 300 }, + [28] = { 54.6, 48.9, 405, 300 }, + [29] = { 58.2, 48.8, 405, 300 }, + [30] = { 44.5, 48.5, 405, 300 }, + [31] = { 41.1, 48.3, 405, 300 }, + [32] = { 63.1, 48.1, 405, 300 }, + [33] = { 52, 48, 405, 300 }, + [34] = { 56, 47.9, 405, 300 }, + [35] = { 44.3, 47.8, 405, 300 }, + [36] = { 62.1, 47.8, 405, 300 }, + [37] = { 62.2, 47.2, 405, 300 }, + [38] = { 58.4, 47, 405, 300 }, + [39] = { 56.8, 46.9, 405, 300 }, + [40] = { 50.5, 46.5, 405, 300 }, + [41] = { 40.3, 46.4, 405, 300 }, + [42] = { 45.5, 45.9, 405, 300 }, + [43] = { 55.9, 45.7, 405, 300 }, + [44] = { 40.4, 45.6, 405, 300 }, + [45] = { 54.7, 45.6, 405, 300 }, + [46] = { 61.9, 45.5, 405, 300 }, + [47] = { 46.5, 45.4, 405, 300 }, + [48] = { 47.4, 44.8, 405, 300 }, + [49] = { 42.5, 44.7, 405, 300 }, + [50] = { 52.9, 44.5, 405, 300 }, + [51] = { 76.7, 44.5, 405, 300 }, + [52] = { 62.5, 44.4, 405, 300 }, + [53] = { 42.4, 44.4, 405, 300 }, + [54] = { 41.6, 43.4, 405, 300 }, + [55] = { 77.6, 43.3, 405, 300 }, + [56] = { 41.8, 40, 405, 300 }, + [57] = { 40.3, 39.6, 405, 300 }, + [58] = { 37.6, 39.3, 405, 300 }, + }, + ["lvl"] = "35-36", + }, + [4730] = { + ["coords"] = { + [1] = { 25.2, 50.1, 141, 300 }, + [2] = { 38.3, 15.4, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [4731] = { + ["coords"] = { + [1] = { 59.9, 52.7, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [4732] = { + ["coords"] = { + [1] = { 84.3, 64.9, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [4752] = { + ["coords"] = { + [1] = { 69.4, 13.1, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [4753] = { + ["coords"] = { + [1] = { 25.3, 50.2, 141, 300 }, + [2] = { 38.7, 15.8, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [4772] = { + ["coords"] = { + [1] = { 63.9, 50.1, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [4773] = { + ["coords"] = { + [1] = { 60.1, 52.6, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [4775] = { + ["coords"] = { + [1] = { 64.1, 50.6, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [4777] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [4778] = { + ["coords"] = { + [1] = { 64.2, 50.4, 1, 270 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [4779] = { + ["coords"] = { + [1] = { 60.5, 37.9, 618, 500 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [4780] = { + ["coords"] = { + [1] = { 64.5, 50.3, 1, 270 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [4781] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [4782] = { + ["coords"] = { + [1] = { 14.4, 42.3, 47, 350 }, + [2] = { 99.8, 0.9, 267, 350 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [4783] = { + ["coords"] = { + [1] = { 28.9, 52, 141, 300 }, + [2] = { 56.2, 24.4, 1657, 300 }, + }, + ["lvl"] = "25", + }, + [4784] = { + ["coords"] = { + [1] = { 28.7, 51.9, 141, 300 }, + [2] = { 55.2, 24, 1657, 300 }, + }, + ["lvl"] = "23", + }, + [4785] = { + ["coords"] = {}, + ["lvl"] = "29-30", + }, + [4786] = { + ["coords"] = { + [1] = { 28.7, 52.1, 141, 300 }, + [2] = { 55.4, 25, 1657, 300 }, + }, + ["lvl"] = "22", + }, + [4787] = { + ["coords"] = {}, + ["lvl"] = "20", + }, + [4788] = { + ["coords"] = { + [1] = { 30.7, 95, 148, 300 }, + [2] = { 30.9, 94.6, 148, 300 }, + [3] = { 31.1, 94.1, 148, 300 }, + [4] = { 31.2, 93.6, 148, 300 }, + [5] = { 31.2, 93.2, 148, 300 }, + [6] = { 30.9, 92.7, 148, 300 }, + [7] = { 31.2, 92.6, 148, 300 }, + [8] = { 13.3, 12.7, 331, 300 }, + [9] = { 13.5, 12.2, 331, 300 }, + [10] = { 13.8, 11.7, 331, 300 }, + [11] = { 13.9, 11.1, 331, 300 }, + [12] = { 13.9, 10.6, 331, 300 }, + [13] = { 13.5, 10.1, 331, 300 }, + [14] = { 13.9, 10, 331, 300 }, + }, + ["lvl"] = "20-21", + ["rnk"] = "1", + }, + [4789] = { + ["coords"] = { + [1] = { 34, 94.4, 148, 300 }, + [2] = { 33.2, 94.1, 148, 300 }, + [3] = { 32.4, 93.3, 148, 300 }, + [4] = { 32.1, 93.1, 148, 300 }, + [5] = { 31.9, 92.8, 148, 300 }, + [6] = { 30.9, 91.8, 148, 300 }, + [7] = { 17, 12, 331, 300 }, + [8] = { 16.1, 11.6, 331, 300 }, + [9] = { 15.3, 10.7, 331, 300 }, + [10] = { 14.9, 10.5, 331, 300 }, + [11] = { 14.7, 10.2, 331, 300 }, + [12] = { 13.6, 9.1, 331, 300 }, + }, + ["lvl"] = "21-22", + ["rnk"] = "1", + }, + [4791] = { + ["coords"] = { + [1] = { 35.2, 30.7, 15, 360 }, + [2] = { 53.7, 69.8, 17, 360 }, + }, + ["fac"] = "H", + ["lvl"] = "48", + }, + [4792] = { + ["coords"] = { + [1] = { 55.4, 26.3, 15, 360 }, + }, + ["fac"] = "AH", + ["lvl"] = "42", + }, + [4794] = { + ["coords"] = { + [1] = { 66.3, 45.5, 15, 360 }, + }, + ["fac"] = "A", + ["lvl"] = "36", + }, + [4795] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "16-17", + }, + [4798] = { + ["coords"] = {}, + ["lvl"] = "23-24", + ["rnk"] = "1", + }, + [4799] = { + ["coords"] = {}, + ["lvl"] = "24-25", + ["rnk"] = "1", + }, + [4802] = { + ["coords"] = { + [1] = { 30.6, 95.5, 148, 300 }, + [2] = { 30.4, 95.4, 148, 300 }, + [3] = { 30.7, 94.5, 148, 300 }, + [4] = { 30.9, 94.4, 148, 300 }, + [5] = { 32.8, 93.8, 148, 300 }, + [6] = { 31.3, 93.6, 148, 300 }, + [7] = { 31, 92.1, 148, 300 }, + [8] = { 30.5, 92.1, 148, 300 }, + [9] = { 31.5, 91.6, 148, 300 }, + [10] = { 31.5, 91.6, 148, 275 }, + [11] = { 31.4, 91.4, 148, 275 }, + [12] = { 13.2, 13.2, 331, 300 }, + [13] = { 13, 13.1, 331, 300 }, + [14] = { 13.4, 12.1, 331, 300 }, + [15] = { 13.6, 12.1, 331, 300 }, + [16] = { 15.7, 11.3, 331, 300 }, + [17] = { 14, 11.1, 331, 300 }, + [18] = { 13.7, 9.5, 331, 300 }, + [19] = { 13.1, 9.4, 331, 300 }, + [20] = { 14.2, 8.8, 331, 300 }, + [21] = { 14.2, 8.8, 331, 275 }, + [22] = { 14.1, 8.6, 331, 275 }, + }, + ["lvl"] = "20-21", + ["rnk"] = "1", + }, + [4803] = { + ["coords"] = { + [1] = { 33.6, 94.4, 148, 300 }, + [2] = { 33.8, 94.3, 148, 300 }, + [3] = { 33.5, 94.2, 148, 300 }, + [4] = { 32.8, 93.9, 148, 300 }, + [5] = { 33.9, 93.7, 148, 300 }, + [6] = { 32.4, 93.6, 148, 300 }, + [7] = { 34.5, 93.6, 148, 275 }, + [8] = { 34.7, 93.4, 148, 275 }, + [9] = { 34.7, 93.4, 148, 300 }, + [10] = { 33.7, 93.3, 148, 300 }, + [11] = { 30.2, 92.7, 148, 300 }, + [12] = { 30, 92.6, 148, 300 }, + [13] = { 31.8, 92.4, 148, 300 }, + [14] = { 31.7, 92.1, 148, 300 }, + [15] = { 30.6, 92.1, 148, 300 }, + [16] = { 31.2, 91.9, 148, 300 }, + [17] = { 31.3, 91.9, 148, 300 }, + [18] = { 30.9, 91.9, 148, 275 }, + [19] = { 31.7, 91.7, 148, 300 }, + [20] = { 31.9, 91.5, 148, 275 }, + [21] = { 31.9, 91.4, 148, 300 }, + [22] = { 31.4, 91.4, 148, 300 }, + [23] = { 16.6, 12, 331, 300 }, + [24] = { 16.8, 12, 331, 300 }, + [25] = { 16.6, 11.8, 331, 300 }, + [26] = { 15.7, 11.4, 331, 300 }, + [27] = { 16.9, 11.2, 331, 300 }, + [28] = { 15.2, 11.2, 331, 300 }, + [29] = { 17.7, 11.1, 331, 275 }, + [30] = { 17.9, 10.9, 331, 275 }, + [31] = { 17.9, 10.9, 331, 300 }, + [32] = { 16.8, 10.8, 331, 300 }, + [33] = { 12.8, 10.1, 331, 300 }, + [34] = { 12.5, 10, 331, 300 }, + [35] = { 14.6, 9.8, 331, 300 }, + [36] = { 14.5, 9.4, 331, 300 }, + [37] = { 13.2, 9.4, 331, 300 }, + [38] = { 13.9, 9.2, 331, 300 }, + [39] = { 14, 9.1, 331, 300 }, + [40] = { 13.6, 9.1, 331, 275 }, + [41] = { 14.5, 8.9, 331, 300 }, + [42] = { 14.7, 8.7, 331, 275 }, + [43] = { 14.6, 8.6, 331, 300 }, + [44] = { 14.1, 8.6, 331, 300 }, + }, + ["lvl"] = "21-22", + ["rnk"] = "1", + }, + [4805] = { + ["coords"] = {}, + ["lvl"] = "23-24", + ["rnk"] = "1", + }, + [4807] = { + ["coords"] = {}, + ["lvl"] = "22-23", + ["rnk"] = "1", + }, + [4809] = { + ["coords"] = {}, + ["lvl"] = "24-25", + ["rnk"] = "1", + }, + [4810] = { + ["coords"] = {}, + ["lvl"] = "25-26", + ["rnk"] = "1", + }, + [4811] = { + ["coords"] = {}, + ["lvl"] = "25-26", + ["rnk"] = "1", + }, + [4812] = { + ["coords"] = {}, + ["lvl"] = "24-25", + ["rnk"] = "1", + }, + [4813] = { + ["coords"] = {}, + ["lvl"] = "26-27", + ["rnk"] = "1", + }, + [4814] = { + ["coords"] = {}, + ["lvl"] = "26-27", + ["rnk"] = "1", + }, + [4815] = { + ["coords"] = {}, + ["lvl"] = "22-23", + ["rnk"] = "1", + }, + [4816] = { + ["coords"] = {}, + ["lvl"] = "23-24", + ["rnk"] = "1", + }, + [4818] = { + ["coords"] = {}, + ["lvl"] = "22-23", + ["rnk"] = "1", + }, + [4819] = { + ["coords"] = {}, + ["lvl"] = "25", + ["rnk"] = "1", + }, + [4820] = { + ["coords"] = {}, + ["lvl"] = "25", + ["rnk"] = "1", + }, + [4821] = { + ["coords"] = {}, + ["lvl"] = "22-23", + ["rnk"] = "1", + }, + [4822] = { + ["coords"] = {}, + ["lvl"] = "23-24", + ["rnk"] = "1", + }, + [4823] = { + ["coords"] = {}, + ["lvl"] = "25-26", + ["rnk"] = "1", + }, + [4824] = { + ["coords"] = {}, + ["lvl"] = "23-24", + ["rnk"] = "1", + }, + [4825] = { + ["coords"] = {}, + ["lvl"] = "26-27", + ["rnk"] = "1", + }, + [4827] = { + ["coords"] = {}, + ["lvl"] = "24-25", + ["rnk"] = "1", + }, + [4829] = { + ["coords"] = {}, + ["lvl"] = "28", + ["rnk"] = "1", + }, + [4830] = { + ["coords"] = {}, + ["lvl"] = "26", + ["rnk"] = "1", + }, + [4831] = { + ["coords"] = {}, + ["lvl"] = "25", + ["rnk"] = "1", + }, + [4832] = { + ["coords"] = {}, + ["lvl"] = "27", + ["rnk"] = "1", + }, + [4834] = { + ["coords"] = { + [1] = { 38, 37.4, 15, 360 }, + [2] = { 36.6, 35.6, 15, 360 }, + [3] = { 40.6, 35.3, 15, 360 }, + [4] = { 38, 34, 15, 360 }, + [5] = { 40.4, 33.6, 15, 360 }, + [6] = { 44, 27.3, 15, 360 }, + [7] = { 37.6, 27, 15, 360 }, + [8] = { 41.7, 26.7, 15, 360 }, + [9] = { 39, 26.4, 15, 360 }, + [10] = { 42.2, 26, 15, 360 }, + [11] = { 38.1, 25.6, 15, 360 }, + [12] = { 40.9, 25.5, 15, 360 }, + [13] = { 41.6, 25.2, 15, 360 }, + [14] = { 39.6, 23.9, 15, 360 }, + [15] = { 38.1, 23.6, 15, 360 }, + [16] = { 38.9, 22.4, 15, 360 }, + [17] = { 39, 21.7, 15, 360 }, + [18] = { 55.2, 73.3, 17, 360 }, + [19] = { 54.5, 72.4, 17, 360 }, + [20] = { 55.2, 71.6, 17, 360 }, + [21] = { 55, 68, 17, 360 }, + [22] = { 55.2, 67.2, 17, 360 }, + [23] = { 55.2, 66.2, 17, 360 }, + }, + ["fac"] = "A", + ["lvl"] = "35-36", + }, + [4841] = { + ["coords"] = { + [1] = { 48.8, 56.7, 15, 360 }, + }, + ["lvl"] = "45", + }, + [4842] = { + ["coords"] = {}, + ["lvl"] = "32", + ["rnk"] = "2", + }, + [4844] = { + ["coords"] = { + [1] = { 39.6, 19.6, 3, 300 }, + [2] = { 39.5, 17.9, 3, 300 }, + [3] = { 39.1, 17.2, 3, 300 }, + [4] = { 40.5, 16.1, 3, 300 }, + [5] = { 39.9, 15.7, 3, 300 }, + [6] = { 40.4, 15.3, 3, 300 }, + [7] = { 39.6, 13.5, 3, 300 }, + [8] = { 47.1, 13.1, 3, 300 }, + [9] = { 46.4, 12.7, 3, 300 }, + [10] = { 38.6, 12.5, 3, 300 }, + [11] = { 45, 12.4, 3, 300 }, + [12] = { 45.8, 11.8, 3, 300 }, + [13] = { 40, 11.7, 3, 300 }, + [14] = { 38.7, 11.7, 3, 300 }, + [15] = { 39.1, 11.5, 3, 300 }, + [16] = { 44.8, 11.5, 3, 300 }, + [17] = { 46.7, 11.2, 3, 300 }, + [18] = { 39.7, 11.1, 3, 300 }, + [19] = { 40.3, 10.9, 3, 300 }, + [20] = { 43.9, 10.7, 3, 300 }, + [21] = { 45, 10.6, 3, 300 }, + [22] = { 46, 10.1, 3, 300 }, + [23] = { 44.4, 9.9, 3, 300 }, + [24] = { 47.5, 9.6, 3, 300 }, + [25] = { 45.6, 8.6, 3, 300 }, + [26] = { 46.3, 8.5, 3, 300 }, + [27] = { 46.3, 8.4, 3, 300 }, + [28] = { 46.4, 8.1, 3, 300 }, + [29] = { 38.7, 92.4, 38, 300 }, + [30] = { 38.4, 91.7, 38, 300 }, + [31] = { 35.4, 91, 38, 300 }, + [32] = { 39.6, 90.8, 38, 300 }, + [33] = { 34.8, 90.7, 38, 300 }, + [34] = { 39.1, 90.4, 38, 300 }, + [35] = { 39.5, 90, 38, 300 }, + [36] = { 34.2, 89.6, 38, 300 }, + [37] = { 34.3, 88.8, 38, 300 }, + [38] = { 36.5, 88.7, 38, 300 }, + [39] = { 35.4, 88.6, 38, 300 }, + [40] = { 38.8, 88.4, 38, 300 }, + [41] = { 34.3, 88.1, 38, 300 }, + [42] = { 45.6, 88.1, 38, 300 }, + [43] = { 35.6, 88, 38, 300 }, + [44] = { 44.9, 87.6, 38, 300 }, + [45] = { 35.9, 87.6, 38, 300 }, + [46] = { 37.9, 87.5, 38, 300 }, + [47] = { 43.7, 87.4, 38, 300 }, + [48] = { 35.5, 87.1, 38, 300 }, + [49] = { 44.4, 86.8, 38, 300 }, + [50] = { 39.2, 86.7, 38, 300 }, + [51] = { 38, 86.7, 38, 300 }, + [52] = { 38.3, 86.6, 38, 300 }, + [53] = { 43.5, 86.6, 38, 300 }, + [54] = { 45.2, 86.3, 38, 300 }, + [55] = { 38.9, 86.2, 38, 300 }, + [56] = { 36.8, 86.2, 38, 300 }, + [57] = { 39.5, 86, 38, 300 }, + [58] = { 42.7, 85.9, 38, 300 }, + [59] = { 43.7, 85.8, 38, 300 }, + [60] = { 44.5, 85.3, 38, 300 }, + [61] = { 43.1, 85.1, 38, 300 }, + [62] = { 46, 84.9, 38, 300 }, + [63] = { 44.2, 84, 38, 300 }, + [64] = { 44.8, 83.8, 38, 300 }, + [65] = { 44.9, 83.5, 38, 300 }, + }, + ["lvl"] = "35-36", + ["rnk"] = "1", + }, + [4845] = { + ["coords"] = { + [1] = { 39.4, 20, 3, 300 }, + [2] = { 38.7, 19.4, 3, 300 }, + [3] = { 39.8, 18.8, 3, 300 }, + [4] = { 38.7, 18.6, 3, 300 }, + [5] = { 41, 15.7, 3, 300 }, + [6] = { 38.6, 12.8, 3, 300 }, + [7] = { 42.5, 11.1, 3, 300 }, + [8] = { 42.4, 10.4, 3, 300 }, + [9] = { 35, 90.7, 38, 300 }, + [10] = { 40.1, 90.3, 38, 300 }, + [11] = { 35, 88.8, 38, 300 }, + [12] = { 37.9, 87.8, 38, 300 }, + [13] = { 34.3, 87.6, 38, 300 }, + [14] = { 41.4, 86.2, 38, 300 }, + [15] = { 41.3, 85.6, 38, 300 }, + [16] = { 39.9, 15.7, 3, 300 }, + [17] = { 40, 11.7, 3, 300 }, + [18] = { 39.1, 11.5, 3, 300 }, + [19] = { 40.3, 10.9, 3, 300 }, + [20] = { 35.4, 91, 38, 300 }, + [21] = { 39.1, 90.4, 38, 300 }, + [22] = { 34.3, 88.8, 38, 300 }, + [23] = { 36.5, 88.7, 38, 300 }, + [24] = { 35.4, 88.6, 38, 300 }, + [25] = { 35.6, 88, 38, 300 }, + [26] = { 35.9, 87.6, 38, 300 }, + [27] = { 39.2, 86.7, 38, 300 }, + [28] = { 38.3, 86.6, 38, 300 }, + [29] = { 36.8, 86.2, 38, 300 }, + [30] = { 39.5, 86, 38, 300 }, + }, + ["lvl"] = "36-37", + ["rnk"] = "1", + }, + [4846] = { + ["coords"] = { + [1] = { 39, 20.2, 3, 300 }, + [2] = { 38.8, 20, 3, 300 }, + [3] = { 39.1, 19, 3, 300 }, + [4] = { 39.1, 18.5, 3, 300 }, + [5] = { 39.9, 17.8, 3, 300 }, + [6] = { 39.6, 17.6, 3, 300 }, + [7] = { 38.7, 17, 3, 300 }, + [8] = { 38.7, 16.5, 3, 300 }, + [9] = { 39.5, 15.8, 3, 300 }, + [10] = { 38.5, 15.6, 3, 300 }, + [11] = { 38.8, 15.6, 3, 300 }, + [12] = { 41.1, 15.3, 3, 300 }, + [13] = { 40.8, 15.1, 3, 300 }, + [14] = { 39.1, 13.7, 3, 300 }, + [15] = { 40.3, 13.4, 3, 300 }, + [16] = { 38.8, 13.3, 3, 300 }, + [17] = { 41, 12.9, 3, 300 }, + [18] = { 39.6, 12.4, 3, 300 }, + [19] = { 40.5, 12.3, 3, 300 }, + [20] = { 43.5, 12.2, 3, 300 }, + [21] = { 42.2, 12.1, 3, 300 }, + [22] = { 46.5, 11.6, 3, 300 }, + [23] = { 43.6, 11.5, 3, 300 }, + [24] = { 39.2, 11.5, 3, 300 }, + [25] = { 41.1, 11.4, 3, 300 }, + [26] = { 38.8, 11.3, 3, 300 }, + [27] = { 48.2, 11, 3, 300 }, + [28] = { 47, 10.9, 3, 300 }, + [29] = { 43, 10.4, 3, 300 }, + [30] = { 46.7, 10.3, 3, 300 }, + [31] = { 47.9, 10.1, 3, 300 }, + [32] = { 45.3, 9.9, 3, 300 }, + [33] = { 44.2, 9.6, 3, 300 }, + [34] = { 44.7, 9.1, 3, 300 }, + [35] = { 44.8, 8.9, 3, 300 }, + [36] = { 45.3, 8.4, 3, 300 }, + [37] = { 39.1, 92.3, 38, 300 }, + [38] = { 38.8, 92.1, 38, 300 }, + [39] = { 38, 91.5, 38, 300 }, + [40] = { 38, 91.1, 38, 300 }, + [41] = { 36.1, 90.6, 38, 300 }, + [42] = { 38.7, 90.4, 38, 300 }, + [43] = { 37.8, 90.3, 38, 300 }, + [44] = { 38.1, 90.3, 38, 300 }, + [45] = { 40.1, 90, 38, 300 }, + [46] = { 39.9, 89.8, 38, 300 }, + [47] = { 35.7, 89.3, 38, 300 }, + [48] = { 37.7, 89.1, 38, 300 }, + [49] = { 36.8, 89, 38, 300 }, + [50] = { 37.6, 88.8, 38, 300 }, + [51] = { 36.2, 88.7, 38, 300 }, + [52] = { 37.2, 88.6, 38, 300 }, + [53] = { 38.4, 88.6, 38, 300 }, + [54] = { 37.1, 88.4, 38, 300 }, + [55] = { 39.5, 88.3, 38, 300 }, + [56] = { 38.1, 88.2, 38, 300 }, + [57] = { 40.1, 87.8, 38, 300 }, + [58] = { 38.8, 87.4, 38, 300 }, + [59] = { 39.6, 87.3, 38, 300 }, + [60] = { 37.4, 87.3, 38, 300 }, + [61] = { 42.3, 87.2, 38, 300 }, + [62] = { 41.2, 87.1, 38, 300 }, + [63] = { 45, 86.7, 38, 300 }, + [64] = { 42.4, 86.6, 38, 300 }, + [65] = { 38.5, 86.6, 38, 300 }, + [66] = { 40.1, 86.5, 38, 300 }, + [67] = { 38.1, 86.4, 38, 300 }, + [68] = { 46.6, 86.1, 38, 300 }, + [69] = { 45.5, 86.1, 38, 300 }, + [70] = { 41.9, 85.6, 38, 300 }, + [71] = { 45.3, 85.5, 38, 300 }, + [72] = { 46.3, 85.3, 38, 300 }, + [73] = { 43.9, 85.2, 38, 300 }, + [74] = { 43, 84.8, 38, 300 }, + [75] = { 43.4, 84.4, 38, 300 }, + [76] = { 43.5, 84.3, 38, 300 }, + [77] = { 43.9, 83.8, 38, 300 }, + }, + ["lvl"] = "35-36", + ["rnk"] = "1", + }, + [4847] = { + ["coords"] = {}, + ["lvl"] = "39-40", + ["rnk"] = "1", + }, + [4848] = { + ["coords"] = {}, + ["lvl"] = "43-44", + ["rnk"] = "1", + }, + [4849] = { + ["coords"] = {}, + ["lvl"] = "43-44", + ["rnk"] = "1", + }, + [4850] = { + ["coords"] = {}, + ["lvl"] = "38-39", + ["rnk"] = "1", + }, + [4851] = { + ["coords"] = { + [1] = { 36.7, 92.1, 38, 300 }, + [2] = { 37.5, 92, 38, 300 }, + [3] = { 37.3, 91.8, 38, 300 }, + [4] = { 33.4, 91.3, 38, 300 }, + [5] = { 37.2, 90.9, 38, 300 }, + [6] = { 32.4, 90.5, 38, 300 }, + [7] = { 33.3, 89.5, 38, 300 }, + }, + ["lvl"] = "36-37", + ["rnk"] = "1", + }, + [4852] = { + ["coords"] = {}, + ["lvl"] = "37-38", + ["rnk"] = "1", + }, + [4853] = { + ["coords"] = {}, + ["lvl"] = "43-44", + ["rnk"] = "1", + }, + [4854] = { + ["coords"] = {}, + ["lvl"] = "45", + ["rnk"] = "1", + }, + [4855] = { + ["coords"] = {}, + ["lvl"] = "43-44", + ["rnk"] = "1", + }, + [4856] = { + ["coords"] = { + [1] = { 34, 91.7, 38, 300 }, + [2] = { 33.8, 91.7, 38, 300 }, + [3] = { 36.1, 91.6, 38, 300 }, + [4] = { 36.6, 91.3, 38, 300 }, + [5] = { 32.2, 90.2, 38, 300 }, + [6] = { 32.6, 89.5, 38, 300 }, + [7] = { 33, 89, 38, 300 }, + [8] = { 36.7, 92.1, 38, 300 }, + [9] = { 37.5, 92, 38, 300 }, + [10] = { 37.2, 90.9, 38, 300 }, + [11] = { 33.3, 89.5, 38, 300 }, + }, + ["lvl"] = "36-37", + ["rnk"] = "1", + }, + [4857] = { + ["coords"] = {}, + ["lvl"] = "46", + ["rnk"] = "1", + }, + [4860] = { + ["coords"] = {}, + ["lvl"] = "44", + ["rnk"] = "1", + }, + [4861] = { + ["coords"] = {}, + ["lvl"] = "38-39", + ["rnk"] = "1", + }, + [4862] = { + ["coords"] = {}, + ["lvl"] = "38-39", + ["rnk"] = "1", + }, + [4863] = { + ["coords"] = {}, + ["lvl"] = "39-40", + ["rnk"] = "1", + }, + [4872] = { + ["coords"] = { + [1] = { 39.6, 20, 3, 300 }, + [2] = { 38.6, 18.9, 3, 300 }, + [3] = { 40.7, 16, 3, 300 }, + [4] = { 39.8, 90.6, 38, 300 }, + }, + ["lvl"] = "38", + ["rnk"] = "1", + }, + [4875] = { + ["coords"] = { + [1] = { 45.4, 51.2, 400, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [4876] = { + ["coords"] = { + [1] = { 45.9, 51.5, 400, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [4877] = { + ["coords"] = { + [1] = { 46.2, 51.5, 400, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "37", + }, + [4878] = { + ["coords"] = { + [1] = { 45.1, 50.8, 400, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "36", + }, + [4879] = { + ["coords"] = { + [1] = { 36.7, 31, 15, 360 }, + [2] = { 54.5, 70, 17, 360 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [4880] = { + ["coords"] = { + [1] = { 46.9, 17.5, 15, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [4881] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "39", + }, + [4882] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "41", + }, + [4883] = { + ["coords"] = { + [1] = { 36.4, 30.8, 15, 360 }, + [2] = { 54.4, 69.9, 17, 360 }, + }, + ["fac"] = "H", + ["lvl"] = "43", + }, + [4884] = { + ["coords"] = { + [1] = { 36.2, 31.8, 15, 360 }, + [2] = { 54.2, 70.4, 17, 360 }, + }, + ["fac"] = "H", + ["lvl"] = "43", + }, + [4885] = { + ["coords"] = { + [1] = { 65.2, 51.5, 15, 360 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [4886] = { + ["coords"] = { + [1] = { 64.6, 50.4, 15, 360 }, + }, + ["fac"] = "A", + ["lvl"] = "37", + }, + [4887] = { + ["coords"] = {}, + ["lvl"] = "25", + ["rnk"] = "1", + }, + [4888] = { + ["coords"] = { + [1] = { 64.6, 50.1, 15, 360 }, + }, + ["fac"] = "A", + ["lvl"] = "37", + }, + [4889] = { + ["coords"] = { + [1] = { 67.5, 48, 15, 360 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [4890] = { + ["coords"] = { + [1] = { 67.4, 47.9, 15, 360 }, + }, + ["fac"] = "A", + ["lvl"] = "41", + }, + [4891] = { + ["coords"] = { + [1] = { 68.2, 47.3, 15, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "28", + }, + [4892] = { + ["coords"] = { + [1] = { 67.9, 49.9, 15, 360 }, + }, + ["fac"] = "A", + ["lvl"] = "37", + }, + [4893] = { + ["coords"] = { + [1] = { 66.7, 45.2, 15, 360 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [4894] = { + ["coords"] = { + [1] = { 66.9, 45.3, 15, 360 }, + }, + ["fac"] = "A", + ["lvl"] = "32", + }, + [4895] = { + ["coords"] = { + [1] = { 66.2, 45.8, 15, 360 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [4896] = { + ["coords"] = { + [1] = { 67.5, 51.7, 15, 360 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [4897] = { + ["coords"] = { + [1] = { 66.4, 51.5, 15, 360 }, + }, + ["fac"] = "A", + ["lvl"] = "34", + }, + [4898] = { + ["coords"] = { + [1] = { 64, 47.5, 15, 360 }, + }, + ["fac"] = "A", + ["lvl"] = "37", + }, + [4899] = { + ["coords"] = { + [1] = { 64.1, 47.7, 15, 360 }, + }, + ["fac"] = "A", + ["lvl"] = "37", + }, + [4900] = { + ["coords"] = { + [1] = { 63.9, 47.6, 15, 360 }, + }, + ["fac"] = "A", + ["lvl"] = "37", + }, + [4901] = { + ["coords"] = { + [1] = { 66.6, 45.1, 15, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "2", + }, + [4902] = { + ["coords"] = { + [1] = { 66.9, 45.2, 15, 360 }, + }, + ["fac"] = "A", + ["lvl"] = "38", + }, + [4921] = { + ["coords"] = { + [1] = { 66.2, 46.1, 15, 360 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [4922] = { + ["coords"] = { + [1] = { 67.2, 46, 15, 360 }, + }, + ["lvl"] = "50", + }, + [4923] = { + ["coords"] = { + [1] = { 67.5, 46.3, 15, 360 }, + }, + ["lvl"] = "50", + }, + [4924] = { + ["coords"] = { + [1] = { 67.4, 46.1, 15, 360 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [4926] = { + ["coords"] = { + [1] = { 36.4, 31.9, 15, 360 }, + [2] = { 54.4, 70.5, 17, 360 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [4941] = { + ["coords"] = { + [1] = { 64.8, 50.4, 15, 360 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [4942] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "12", + }, + [4943] = { + ["coords"] = { + [1] = { 40.8, 33.3, 215, 250 }, + [2] = { 54, 80.8, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [4944] = { + ["coords"] = { + [1] = { 68.2, 48.6, 15, 360 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [4945] = { + ["coords"] = { + [1] = { 80.2, 75.7, 400, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "32", + }, + [4946] = { + ["coords"] = { + [1] = { 77.8, 78.2, 400, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "32", + }, + [4947] = { + ["coords"] = { + [1] = { 67.1, 53.2, 15, 430 }, + [2] = { 67.2, 51, 15, 25 }, + [3] = { 69.2, 49.9, 15, 430 }, + [4] = { 68.1, 48.2, 15, 430 }, + [5] = { 65.1, 47.1, 15, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "52", + }, + [4948] = { + ["coords"] = { + [1] = { 68, 48.1, 15, 360 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [4949] = { + ["coords"] = { + [1] = { 31.7, 37.8, 1637, 86400 }, + }, + ["fac"] = "H", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [4950] = { + ["coords"] = { + [1] = { 68, 46.8, 15, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [4951] = { + ["coords"] = { + [1] = { 67.2, 47.4, 15, 360 }, + [2] = { 67.3, 47.2, 15, 360 }, + }, + ["fac"] = "A", + ["lvl"] = "48-51", + }, + [4952] = { + ["coords"] = { + [1] = { 67.3, 47.4, 15, 540 }, + [2] = { 67.2, 47.4, 15, 540 }, + [3] = { 67.3, 47.2, 15, 540 }, + [4] = { 67.2, 47.2, 15, 540 }, + }, + ["lvl"] = "1", + }, + [4953] = { + ["coords"] = { + [1] = { 81.3, 81, 8, 300 }, + [2] = { 70.6, 74.4, 8, 300 }, + [3] = { 62.5, 63.4, 8, 300 }, + [4] = { 29, 60.5, 8, 300 }, + [5] = { 46.2, 60.2, 8, 300 }, + [6] = { 25.2, 57.3, 8, 300 }, + [7] = { 57.2, 56.5, 8, 300 }, + [8] = { 85, 53.5, 8, 300 }, + [9] = { 48.5, 47.1, 8, 300 }, + [10] = { 52.5, 46, 8, 300 }, + [11] = { 83.8, 43, 8, 300 }, + [12] = { 29.9, 35.6, 8, 300 }, + [13] = { 43.3, 35, 8, 300 }, + [14] = { 47.6, 32.8, 8, 300 }, + [15] = { 60.7, 29.2, 8, 300 }, + [16] = { 57.2, 26.9, 8, 300 }, + [17] = { 72.1, 26.4, 8, 300 }, + [18] = { 67.9, 18.9, 8, 300 }, + }, + ["lvl"] = "1", + }, + [4954] = { + ["coords"] = { + [1] = { 74.2, 34, 45, 400 }, + }, + ["fac"] = "H", + ["lvl"] = "36", + }, + [4955] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [4957] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [4958] = { + ["coords"] = {}, + ["lvl"] = "21-22", + }, + [4959] = { + ["coords"] = { + [1] = { 73.2, 78.4, 1519, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [4960] = { + ["coords"] = { + [1] = { 78.3, 25.4, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "32", + }, + [4961] = { + ["coords"] = { + [1] = { 70.6, 44.9, 1519, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "26", + }, + [4962] = { + ["coords"] = { + [1] = { 10.5, 60.3, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "34", + }, + [4963] = { + ["coords"] = { + [1] = { 10.6, 60.8, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [4964] = { + ["coords"] = { + [1] = { 68, 48.7, 15, 360 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [4965] = { + ["coords"] = { + [1] = { 66.2, 49.1, 15, 360 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [4966] = { + ["coords"] = { + [1] = { 45.2, 24.7, 15, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [4967] = { + ["coords"] = { + [1] = { 66.4, 49.3, 15, 360 }, + }, + ["fac"] = "A", + ["lvl"] = "38", + }, + [4968] = { + ["coords"] = { + [1] = { 66.3, 49, 15, 86400 }, + }, + ["fac"] = "A", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [4969] = { + ["coords"] = {}, + ["lvl"] = "25-26", + }, + [4970] = { + ["coords"] = {}, + ["lvl"] = "24-25", + }, + [4971] = { + ["coords"] = {}, + ["lvl"] = "34", + }, + [4972] = { + ["coords"] = { + [1] = { 36.6, 32.1, 15, 120 }, + [2] = { 54.5, 70.6, 17, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [4973] = { + ["coords"] = { + [1] = { 67.7, 49.6, 15, 360 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [4974] = { + ["coords"] = { + [1] = { 57, 67.7, 1519, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [4975] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [4976] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "25", + }, + [4977] = { + ["coords"] = {}, + ["lvl"] = "25", + }, + [4978] = { + ["coords"] = {}, + ["lvl"] = "26", + ["rnk"] = "1", + }, + [4979] = { + ["coords"] = { + [1] = { 70.6, 57.2, 15, 360 }, + [2] = { 71.4, 56.6, 15, 360 }, + [3] = { 71.6, 56.2, 15, 360 }, + [4] = { 71, 56, 15, 360 }, + [5] = { 71.3, 55.7, 15, 360 }, + [6] = { 71.6, 54.3, 15, 360 }, + [7] = { 68, 52.6, 15, 360 }, + [8] = { 68.5, 52.3, 15, 360 }, + [9] = { 68.5, 51.4, 15, 360 }, + [10] = { 66, 50.9, 15, 360 }, + [11] = { 66.3, 50.9, 15, 360 }, + [12] = { 66.3, 50.8, 15, 360 }, + [13] = { 66, 50.8, 15, 360 }, + [14] = { 69.3, 50.2, 15, 360 }, + [15] = { 66.8, 50.1, 15, 360 }, + [16] = { 69.6, 50.1, 15, 360 }, + [17] = { 69.6, 49.8, 15, 360 }, + [18] = { 65.6, 48.6, 15, 360 }, + [19] = { 65.7, 48.5, 15, 360 }, + [20] = { 64.8, 47, 15, 360 }, + [21] = { 65, 46.6, 15, 360 }, + [22] = { 64.2, 46, 15, 360 }, + [23] = { 64.3, 45.7, 15, 360 }, + [24] = { 64.3, 45.6, 15, 360 }, + [25] = { 64.5, 45.6, 15, 360 }, + [26] = { 63.8, 45, 15, 360 }, + [27] = { 64, 44.8, 15, 360 }, + }, + ["fac"] = "A", + ["lvl"] = "53-57", + }, + [4980] = { + ["coords"] = { + [1] = { 42.6, 38.1, 15, 360 }, + }, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [4981] = { + ["coords"] = { + [1] = { 60.3, 63.4, 1519, 375 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [4982] = { + ["coords"] = { + [1] = { 38.7, 25.9, 1519, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [4983] = { + ["coords"] = { + [1] = { 41, 36.7, 15, 360 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [4984] = { + ["coords"] = { + [1] = { 21.4, 55.8, 1519, 285 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [4985] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [4986] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [4987] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [4988] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [4989] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [4990] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [4991] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [4992] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [4993] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [4994] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [4995] = { + ["coords"] = { + [1] = { 40.8, 56.8, 1519, 540 }, + [2] = { 41, 56.7, 1519, 540 }, + [3] = { 41.2, 56.5, 1519, 540 }, + [4] = { 41.2, 56.2, 1519, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [4996] = { + ["coords"] = { + [1] = { 41.8, 54.5, 1519, 540 }, + [2] = { 42.1, 54.2, 1519, 540 }, + [3] = { 42.2, 54.1, 1519, 540 }, + [4] = { 42.3, 54, 1519, 540 }, + [5] = { 42.3, 53.4, 1519, 540 }, + [6] = { 42.2, 53.3, 1519, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [4997] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [4998] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [4999] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5000] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5001] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5002] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [5003] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5004] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5005] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5006] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5007] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5008] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5009] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5010] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5011] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5012] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5013] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5014] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5015] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5016] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5017] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5018] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5019] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5020] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5021] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5022] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5023] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5024] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5026] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5027] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [5028] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5029] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [5030] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5031] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5032] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5033] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5034] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [5035] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5036] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5037] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5038] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5039] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5040] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5041] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5042] = { + ["coords"] = { + [1] = { 42.1, 53.7, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5043] = { + ["coords"] = { + [1] = { 36.9, 48.8, 1519, 0 }, + }, + ["lvl"] = "20", + }, + [5044] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "36", + }, + [5045] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "36", + }, + [5046] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "37", + }, + [5047] = { + ["coords"] = { + [1] = { 31.8, 51.5, 141, 300 }, + [2] = { 70.2, 21.9, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5048] = { + ["coords"] = {}, + ["lvl"] = "18-19", + ["rnk"] = "1", + }, + [5049] = { + ["coords"] = { + [1] = { 36.3, 85.5, 1537, 375 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [5050] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "35", + }, + [5051] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "25", + }, + [5052] = { + ["coords"] = { + [1] = { 69.8, 44.3, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [5053] = { + ["coords"] = {}, + ["lvl"] = "18-19", + }, + [5054] = { + ["coords"] = { + [1] = { 37.4, 29.7, 215, 250 }, + [2] = { 37.3, 63.5, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [5055] = { + ["coords"] = {}, + ["lvl"] = "19-20", + }, + [5056] = { + ["coords"] = {}, + ["lvl"] = "20-21", + ["rnk"] = "1", + }, + [5057] = { + ["coords"] = { + [1] = { 36.1, 54.6, 15, 360 }, + [2] = { 35.8, 54.6, 15, 300 }, + [3] = { 36.3, 54.4, 15, 360 }, + [4] = { 35.6, 54.4, 15, 360 }, + [5] = { 35.9, 54.2, 15, 360 }, + [6] = { 35.2, 54.2, 15, 360 }, + [7] = { 36.4, 54, 15, 360 }, + [8] = { 35.8, 54, 15, 300 }, + [9] = { 36.2, 54, 15, 300 }, + [10] = { 35.4, 54, 15, 300 }, + [11] = { 35.6, 53.9, 15, 360 }, + [12] = { 36.1, 53.8, 15, 360 }, + [13] = { 35.5, 53.7, 15, 300 }, + [14] = { 36.3, 53.7, 15, 360 }, + [15] = { 35.8, 53.7, 15, 360 }, + [16] = { 36.2, 53.6, 15, 360 }, + [17] = { 35.3, 53.5, 15, 360 }, + [18] = { 35.9, 53.5, 15, 300 }, + [19] = { 54.2, 82.3, 17, 360 }, + [20] = { 54.1, 82.2, 17, 300 }, + [21] = { 54.3, 82.2, 17, 360 }, + [22] = { 54, 82.1, 17, 360 }, + [23] = { 54.1, 82, 17, 360 }, + [24] = { 53.7, 82, 17, 360 }, + [25] = { 54.4, 81.9, 17, 360 }, + [26] = { 54.1, 81.9, 17, 300 }, + [27] = { 54.3, 81.9, 17, 300 }, + [28] = { 53.8, 81.9, 17, 300 }, + [29] = { 53.9, 81.9, 17, 360 }, + [30] = { 54.2, 81.9, 17, 360 }, + [31] = { 53.9, 81.8, 17, 300 }, + [32] = { 54.3, 81.8, 17, 360 }, + [33] = { 54, 81.8, 17, 360 }, + [34] = { 54.3, 81.7, 17, 360 }, + [35] = { 53.8, 81.7, 17, 360 }, + [36] = { 54.1, 81.7, 17, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "37", + }, + [5058] = { + ["coords"] = {}, + ["lvl"] = "20-21", + }, + [5059] = { + ["coords"] = {}, + ["lvl"] = "40", + }, + [5060] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "45", + }, + [5061] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5062] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5063] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [5064] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5081] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "25", + }, + [5082] = { + ["coords"] = { + [1] = { 10.8, 60.4, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5083] = { + ["coords"] = { + [1] = { 67.9, 48.2, 15, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [5084] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "42", + }, + [5085] = { + ["coords"] = { + [1] = { 59.7, 41.5, 15, 360 }, + [2] = { 59.6, 41.4, 15, 360 }, + [3] = { 59.8, 41.3, 15, 360 }, + [4] = { 59.6, 41.2, 15, 360 }, + [5] = { 59.8, 41.2, 15, 360 }, + [6] = { 59.6, 41.1, 15, 360 }, + [7] = { 59.7, 41, 15, 360 }, + [8] = { 59.7, 40.9, 15, 360 }, + [9] = { 60.1, 40.9, 15, 360 }, + [10] = { 60, 40.9, 15, 360 }, + [11] = { 59.9, 40.8, 15, 360 }, + [12] = { 60.4, 40.7, 15, 360 }, + [13] = { 59.7, 40.7, 15, 360 }, + [14] = { 60.3, 40.2, 15, 360 }, + }, + ["fac"] = "A", + ["lvl"] = "32-33", + }, + [5086] = { + ["coords"] = { + [1] = { 59.7, 41, 15, 360 }, + }, + ["fac"] = "A", + ["lvl"] = "34-35", + }, + [5087] = { + ["coords"] = { + [1] = { 36.5, 30.8, 15, 360 }, + [2] = { 54.4, 69.9, 17, 360 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [5088] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "38", + }, + [5089] = { + ["coords"] = { + [1] = { 36.1, 54.3, 15, 60 }, + [2] = { 54.2, 82.1, 17, 60 }, + }, + ["fac"] = "A", + ["lvl"] = "38", + }, + [5090] = { + ["coords"] = { + [1] = { 67.2, 46.4, 15, 360 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [5091] = { + ["coords"] = { + [1] = { 67.2, 46.1, 15, 360 }, + }, + ["lvl"] = "50", + }, + [5092] = { + ["coords"] = { + [1] = { 67.5, 46.2, 15, 360 }, + }, + ["lvl"] = "50", + }, + [5093] = { + ["coords"] = { + [1] = { 67.2, 46.1, 15, 360 }, + }, + ["lvl"] = "50", + }, + [5094] = { + ["coords"] = { + [1] = { 67.5, 46.2, 15, 360 }, + }, + ["lvl"] = "50", + }, + [5095] = { + ["coords"] = { + [1] = { 67.5, 46.3, 15, 360 }, + }, + ["fac"] = "A", + ["lvl"] = "53", + }, + [5096] = { + ["coords"] = { + [1] = { 67.2, 46, 15, 360 }, + }, + ["fac"] = "A", + ["lvl"] = "53", + }, + [5097] = { + ["coords"] = {}, + ["lvl"] = "24-25", + }, + [5098] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "45", + }, + [5099] = { + ["coords"] = { + [1] = { 36.8, 61.9, 1537, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [5100] = { + ["coords"] = { + [1] = { 38.1, 73.7, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5101] = { + ["coords"] = { + [1] = { 39.2, 74.5, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5102] = { + ["coords"] = { + [1] = { 35.8, 65.7, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5103] = { + ["coords"] = { + [1] = { 36, 65.4, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5104] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "40", + }, + [5105] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5106] = { + ["coords"] = { + [1] = { 31.7, 58.3, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5107] = { + ["coords"] = { + [1] = { 32, 57.9, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5108] = { + ["coords"] = { + [1] = { 32.6, 57.4, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5109] = { + ["coords"] = { + [1] = { 29.6, 67.5, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5110] = { + ["coords"] = { + [1] = { 19.2, 56.1, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5111] = { + ["coords"] = { + [1] = { 18.2, 51.4, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5112] = { + ["coords"] = { + [1] = { 18.6, 51.8, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5113] = { + ["coords"] = { + [1] = { 70.3, 90.7, 1537, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [5114] = { + ["coords"] = { + [1] = { 65.9, 88.4, 1537, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [5115] = { + ["coords"] = { + [1] = { 71, 89.8, 1537, 490 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [5116] = { + ["coords"] = { + [1] = { 70.9, 83.6, 1537, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [5117] = { + ["coords"] = { + [1] = { 69.9, 82.9, 1537, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [5118] = { + ["coords"] = { + [1] = { 29.3, 56.2, 141, 600 }, + [2] = { 58.1, 44.6, 1657, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [5119] = { + ["coords"] = { + [1] = { 62.2, 88.2, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5120] = { + ["coords"] = { + [1] = { 62.4, 88.7, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5121] = { + ["coords"] = { + [1] = { 62.5, 88.7, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5122] = { + ["coords"] = { + [1] = { 71.8, 66.7, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5123] = { + ["coords"] = { + [1] = { 72.2, 65.2, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5124] = { + ["coords"] = { + [1] = { 57.7, 78.8, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5125] = { + ["coords"] = { + [1] = { 53.9, 87.9, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5126] = { + ["coords"] = { + [1] = { 54.9, 87.4, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5127] = { + ["coords"] = { + [1] = { 40.2, 33.7, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [5128] = { + ["coords"] = { + [1] = { 39.6, 34.5, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5129] = { + ["coords"] = { + [1] = { 54.7, 88, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5130] = { + ["coords"] = { + [1] = { 35.9, 84.7, 1537, 490 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [5131] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5132] = { + ["coords"] = { + [1] = { 38, 74.7, 1537, 370 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5133] = { + ["coords"] = { + [1] = { 23.1, 15.9, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5134] = { + ["coords"] = { + [1] = { 43.1, 17.5, 2597, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [5135] = { + ["coords"] = { + [1] = { 42.8, 16.9, 2597, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [5137] = { + ["coords"] = { + [1] = { 55.9, 59.1, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [5138] = { + ["coords"] = { + [1] = { 55.1, 59.5, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5139] = { + ["coords"] = { + [1] = { 42.8, 16.6, 2597, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [5140] = { + ["coords"] = { + [1] = { 72.2, 75.8, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5141] = { + ["coords"] = { + [1] = { 24.1, 8.4, 1537, 490 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [5142] = { + ["coords"] = { + [1] = { 24.4, 9.2, 1537, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [5143] = { + ["coords"] = { + [1] = { 25.2, 10.8, 1537, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [5144] = { + ["coords"] = { + [1] = { 27.2, 8.3, 1537, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [5145] = { + ["coords"] = { + [1] = { 26.3, 6.8, 1537, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [5146] = { + ["coords"] = { + [1] = { 25.9, 6.2, 1537, 490 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [5147] = { + ["coords"] = { + [1] = { 23.7, 5.1, 1537, 490 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [5148] = { + ["coords"] = { + [1] = { 24.5, 4.5, 1537, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [5149] = { + ["coords"] = { + [1] = { 23.1, 6.1, 1537, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [5150] = { + ["coords"] = { + [1] = { 55.1, 58.3, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [5151] = { + ["coords"] = { + [1] = { 31.3, 27.8, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5152] = { + ["coords"] = { + [1] = { 22.8, 15.9, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5153] = { + ["coords"] = { + [1] = { 43.1, 29.4, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [5154] = { + ["coords"] = { + [1] = { 42.9, 28.3, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5155] = { + ["coords"] = { + [1] = { 38.3, 5.2, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5156] = { + ["coords"] = { + [1] = { 38.7, 6, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5157] = { + ["coords"] = { + [1] = { 59.8, 45.4, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [5158] = { + ["coords"] = { + [1] = { 61, 44, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5159] = { + ["coords"] = { + [1] = { 60.1, 36.4, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [5160] = { + ["coords"] = { + [1] = { 59.9, 37.4, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5161] = { + ["coords"] = { + [1] = { 48.1, 6.9, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [5162] = { + ["coords"] = { + [1] = { 48.2, 6.5, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5163] = { + ["coords"] = { + [1] = { 46.4, 26.9, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5164] = { + ["coords"] = { + [1] = { 50, 42.8, 1537, 490 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [5165] = { + ["coords"] = { + [1] = { 52, 14.8, 1537, 490 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [5166] = { + ["coords"] = { + [1] = { 52.9, 15, 1537, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [5167] = { + ["coords"] = { + [1] = { 51.5, 15.3, 1537, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [5169] = { + ["coords"] = { + [1] = { 53, 13.7, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5170] = { + ["coords"] = { + [1] = { 45, 6.8, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5171] = { + ["coords"] = { + [1] = { 51.1, 6.6, 1537, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [5172] = { + ["coords"] = { + [1] = { 50.3, 5.7, 1537, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [5173] = { + ["coords"] = { + [1] = { 50.1, 7.5, 1537, 490 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [5174] = { + ["coords"] = { + [1] = { 68.5, 43.5, 1537, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [5175] = { + ["coords"] = { + [1] = { 67.8, 42.5, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5177] = { + ["coords"] = { + [1] = { 66.6, 55.7, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [5178] = { + ["coords"] = { + [1] = { 66.2, 54.5, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5184] = { + ["coords"] = { + [1] = { 42.6, 30.5, 15, 360 }, + [2] = { 42.7, 30.3, 15, 360 }, + [3] = { 42.5, 29.9, 15, 360 }, + [4] = { 43.2, 27.8, 15, 360 }, + [5] = { 43.3, 27.6, 15, 360 }, + [6] = { 46.5, 24.9, 15, 360 }, + [7] = { 46.7, 24.7, 15, 360 }, + [8] = { 46.6, 24.6, 15, 360 }, + [9] = { 46.8, 24.6, 15, 360 }, + [10] = { 47.1, 24.5, 15, 360 }, + [11] = { 45.1, 24.5, 15, 300 }, + [12] = { 46.6, 24.5, 15, 360 }, + [13] = { 46.7, 24.5, 15, 360 }, + [14] = { 45, 24.5, 15, 300 }, + [15] = { 46.5, 24.4, 15, 360 }, + [16] = { 46.6, 24.3, 15, 360 }, + [17] = { 46.8, 24.3, 15, 360 }, + [18] = { 46.8, 24.2, 15, 360 }, + [19] = { 46.4, 23.5, 15, 360 }, + [20] = { 46.7, 23.4, 15, 360 }, + }, + ["fac"] = "A", + ["lvl"] = "35-36", + }, + [5185] = { + ["coords"] = {}, + ["lvl"] = "31-32", + ["rnk"] = "1", + }, + [5186] = { + ["coords"] = {}, + ["lvl"] = "41-42", + ["rnk"] = "1", + }, + [5187] = { + ["coords"] = {}, + ["lvl"] = "13-14", + }, + [5188] = { + ["coords"] = { + [1] = { 44.1, 6.5, 14, 300 }, + [2] = { 43.8, 74.2, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [5189] = { + ["coords"] = { + [1] = { 37.5, 29.7, 215, 375 }, + [2] = { 37.7, 63.3, 1638, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [5190] = { + ["coords"] = { + [1] = { 69.3, 44.8, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [5191] = { + ["coords"] = { + [1] = { 31.8, 51.8, 141, 300 }, + [2] = { 70.4, 23.4, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [5192] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "25", + }, + [5193] = { + ["coords"] = { + [1] = { 57.3, 68.6, 1519, 375 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [5194] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "10", + }, + [5195] = { + ["coords"] = { + [1] = { 69.9, 12.3, 1637, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5196] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "10", + }, + [5197] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "10", + }, + [5198] = { + ["coords"] = { + [1] = { 61.7, 23.9, 17, 413 }, + [2] = { 60.5, 38, 618, 500 }, + }, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5199] = { + ["coords"] = { + [1] = { 67.3, 45.9, 15, 360 }, + }, + ["fac"] = "A", + ["lvl"] = "51", + }, + [5200] = { + ["coords"] = { + [1] = { 67.3, 46.4, 15, 360 }, + }, + ["fac"] = "A", + ["lvl"] = "51", + }, + [5201] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [5202] = { + ["coords"] = { + [1] = { 68.3, 49.4, 15, 540 }, + [2] = { 68.2, 49.4, 15, 540 }, + [3] = { 68.2, 49.3, 15, 540 }, + [4] = { 68.1, 49.3, 15, 540 }, + }, + ["lvl"] = "1", + }, + [5204] = { + ["coords"] = { + [1] = { 50.1, 68, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "29", + }, + [5224] = { + ["coords"] = { + [1] = { 73.7, 44.8, 8, 900 }, + [2] = { 75.9, 44.6, 8, 900 }, + [3] = { 77, 43.2, 8, 900 }, + [4] = { 73.8, 42.6, 8, 900 }, + [5] = { 72, 41.9, 8, 900 }, + }, + ["lvl"] = "45-46", + ["rnk"] = "1", + }, + [5225] = { + ["coords"] = { + [1] = { 76.7, 46.2, 8, 900 }, + [2] = { 79.4, 40.4, 8, 900 }, + [3] = { 77.8, 39.6, 8, 900 }, + [4] = { 77.1, 38.7, 8, 900 }, + [5] = { 77.4, 38.6, 8, 900 }, + [6] = { 77.3, 38.2, 8, 900 }, + }, + ["lvl"] = "46-47", + ["rnk"] = "1", + }, + [5226] = { + ["coords"] = {}, + ["lvl"] = "47-48", + ["rnk"] = "1", + }, + [5228] = { + ["coords"] = {}, + ["lvl"] = "47-48", + ["rnk"] = "1", + }, + [5229] = { + ["coords"] = { + [1] = { 80.5, 35.5, 357, 300 }, + [2] = { 80.9, 35.4, 357, 300 }, + [3] = { 80.3, 35.1, 357, 300 }, + [4] = { 76.1, 35, 357, 300 }, + [5] = { 79.4, 34.9, 357, 300 }, + [6] = { 80.2, 34.9, 357, 300 }, + [7] = { 75.1, 34.9, 357, 300 }, + [8] = { 77.5, 34.8, 357, 300 }, + [9] = { 75.6, 34.8, 357, 300 }, + [10] = { 79.7, 34.7, 357, 300 }, + [11] = { 79.6, 34.3, 357, 300 }, + [12] = { 75.7, 34.1, 357, 300 }, + [13] = { 75.4, 33.9, 357, 300 }, + [14] = { 78.6, 33.7, 357, 300 }, + [15] = { 79.2, 33.7, 357, 300 }, + [16] = { 75.5, 33.4, 357, 300 }, + [17] = { 75.6, 33.4, 357, 300 }, + [18] = { 76.6, 33.4, 357, 300 }, + [19] = { 76.6, 33.1, 357, 300 }, + [20] = { 75.4, 33, 357, 300 }, + [21] = { 76.3, 32.9, 357, 300 }, + [22] = { 75.1, 32.5, 357, 300 }, + [23] = { 75, 32.4, 357, 300 }, + [24] = { 76.2, 29.9, 357, 300 }, + [25] = { 76.6, 29.8, 357, 300 }, + [26] = { 75.4, 29.7, 357, 300 }, + [27] = { 75.2, 29.6, 357, 300 }, + [28] = { 74.7, 29.6, 357, 300 }, + [29] = { 74.8, 29.3, 357, 300 }, + [30] = { 75.3, 29.1, 357, 300 }, + [31] = { 75.2, 28.4, 357, 300 }, + [32] = { 74.7, 28.4, 357, 300 }, + [33] = { 74.6, 27.9, 357, 300 }, + [34] = { 74.5, 26.8, 357, 300 }, + [35] = { 74.8, 26.6, 357, 300 }, + [36] = { 75.3, 26.4, 357, 300 }, + [37] = { 75.4, 26.3, 357, 300 }, + [38] = { 74.8, 25.9, 357, 300 }, + [39] = { 74.9, 25.6, 357, 300 }, + [40] = { 75.1, 25.6, 357, 300 }, + [41] = { 75.1, 25.1, 357, 300 }, + [42] = { 74.9, 25, 357, 300 }, + }, + ["lvl"] = "40-41", + }, + [5231] = { + ["coords"] = {}, + ["lvl"] = "41-42", + }, + [5232] = { + ["coords"] = { + [1] = { 58.6, 65.1, 357, 300 }, + [2] = { 58.6, 64.9, 357, 300 }, + [3] = { 59.3, 63.6, 357, 300 }, + [4] = { 60.4, 58.2, 357, 300 }, + [5] = { 60.5, 57.7, 357, 300 }, + [6] = { 59.3, 57.5, 357, 300 }, + [7] = { 59.7, 57.3, 357, 300 }, + [8] = { 60.4, 57.1, 357, 300 }, + [9] = { 60.8, 56.8, 357, 300 }, + [10] = { 61.4, 56.2, 357, 300 }, + [11] = { 61.9, 55.2, 357, 300 }, + [12] = { 61.4, 55, 357, 300 }, + [13] = { 60.4, 54.5, 357, 300 }, + [14] = { 61.6, 54.4, 357, 300 }, + [15] = { 61.8, 54.1, 357, 300 }, + [16] = { 80.4, 34.5, 357, 300 }, + [17] = { 74.8, 27.4, 357, 300 }, + [18] = { 80.5, 35.5, 357, 300 }, + [19] = { 80.9, 35.4, 357, 300 }, + [20] = { 80.3, 35.1, 357, 300 }, + [21] = { 76.1, 35, 357, 300 }, + [22] = { 79.4, 34.9, 357, 300 }, + [23] = { 80.2, 34.9, 357, 300 }, + [24] = { 75.1, 34.9, 357, 300 }, + [25] = { 77.5, 34.8, 357, 300 }, + [26] = { 75.6, 34.8, 357, 300 }, + [27] = { 79.7, 34.7, 357, 300 }, + [28] = { 79.6, 34.3, 357, 300 }, + [29] = { 75.7, 34.1, 357, 300 }, + [30] = { 75.4, 33.9, 357, 300 }, + [31] = { 78.6, 33.7, 357, 300 }, + [32] = { 79.2, 33.7, 357, 300 }, + [33] = { 75.5, 33.4, 357, 300 }, + [34] = { 75.6, 33.4, 357, 300 }, + [35] = { 76.6, 33.4, 357, 300 }, + [36] = { 76.6, 33.1, 357, 300 }, + [37] = { 75.4, 33, 357, 300 }, + [38] = { 76.3, 32.9, 357, 300 }, + [39] = { 75.1, 32.5, 357, 300 }, + [40] = { 75, 32.4, 357, 300 }, + [41] = { 76.2, 29.9, 357, 300 }, + [42] = { 76.6, 29.8, 357, 300 }, + [43] = { 75.4, 29.7, 357, 300 }, + [44] = { 75.2, 29.6, 357, 300 }, + [45] = { 74.7, 29.6, 357, 300 }, + [46] = { 74.8, 29.3, 357, 300 }, + [47] = { 75.3, 29.1, 357, 300 }, + [48] = { 75.2, 28.4, 357, 300 }, + [49] = { 74.7, 28.4, 357, 300 }, + [50] = { 74.6, 27.9, 357, 300 }, + [51] = { 74.5, 26.8, 357, 300 }, + [52] = { 74.8, 26.6, 357, 300 }, + [53] = { 75.3, 26.4, 357, 300 }, + [54] = { 75.4, 26.3, 357, 300 }, + [55] = { 74.8, 25.9, 357, 300 }, + [56] = { 74.9, 25.6, 357, 300 }, + [57] = { 75.1, 25.6, 357, 300 }, + [58] = { 75.1, 25.1, 357, 300 }, + [59] = { 74.9, 25, 357, 300 }, + }, + ["lvl"] = "42-43", + }, + [5234] = { + ["coords"] = { + [1] = { 58.4, 66.5, 357, 300 }, + [2] = { 58.9, 65.1, 357, 300 }, + [3] = { 59.6, 64.5, 357, 300 }, + [4] = { 59.3, 64.4, 357, 300 }, + [5] = { 58.9, 64.1, 357, 300 }, + [6] = { 59.9, 62.9, 357, 300 }, + [7] = { 59.7, 62.7, 357, 300 }, + [8] = { 60.7, 58.5, 357, 300 }, + [9] = { 60.9, 58.1, 357, 300 }, + [10] = { 60.6, 57.6, 357, 300 }, + [11] = { 61.1, 57.6, 357, 300 }, + [12] = { 59.7, 56.6, 357, 300 }, + [13] = { 61.1, 56.5, 357, 300 }, + [14] = { 61.1, 55.6, 357, 300 }, + [15] = { 61.8, 55.6, 357, 300 }, + [16] = { 61.5, 55.5, 357, 300 }, + [17] = { 60.8, 55.1, 357, 300 }, + [18] = { 60.7, 54.7, 357, 300 }, + [19] = { 61.8, 54.6, 357, 300 }, + [20] = { 61.8, 54.5, 357, 300 }, + }, + ["lvl"] = "43-44", + }, + [5235] = { + ["coords"] = { + [1] = { 78.3, 46.8, 8, 900 }, + [2] = { 75, 42.8, 8, 900 }, + }, + ["lvl"] = "45-46", + ["rnk"] = "1", + }, + [5236] = { + ["coords"] = { + [1] = { 62.1, 73.4, 357, 300 }, + [2] = { 58.9, 73.4, 357, 300 }, + [3] = { 59.2, 73.1, 357, 300 }, + [4] = { 62.1, 73.1, 357, 300 }, + [5] = { 60.7, 72.8, 357, 300 }, + [6] = { 58.6, 72.7, 357, 300 }, + [7] = { 57.5, 72.6, 357, 300 }, + [8] = { 58.5, 72.4, 357, 300 }, + [9] = { 58.2, 71.8, 357, 300 }, + [10] = { 59.1, 71.6, 357, 300 }, + [11] = { 61.4, 71, 357, 300 }, + [12] = { 58.3, 70.9, 357, 300 }, + [13] = { 60.4, 70.8, 357, 300 }, + [14] = { 59.6, 70.4, 357, 300 }, + [15] = { 57.8, 70.2, 357, 300 }, + [16] = { 60, 70, 357, 300 }, + [17] = { 59, 69.9, 357, 300 }, + [18] = { 60.7, 69.6, 357, 300 }, + [19] = { 62.9, 69.5, 357, 300 }, + [20] = { 58.6, 69.2, 357, 300 }, + [21] = { 62.5, 69.1, 357, 300 }, + [22] = { 62.9, 69, 357, 300 }, + [23] = { 63.7, 68.8, 357, 300 }, + [24] = { 60.8, 68.7, 357, 300 }, + [25] = { 62.1, 68.7, 357, 300 }, + [26] = { 61.2, 68.7, 357, 300 }, + [27] = { 59.6, 68.7, 357, 300 }, + [28] = { 64, 68.6, 357, 300 }, + [29] = { 59.5, 68.4, 357, 300 }, + [30] = { 60.5, 68.2, 357, 300 }, + [31] = { 59.8, 68.1, 357, 300 }, + [32] = { 62.4, 68.1, 357, 300 }, + [33] = { 59.3, 68, 357, 300 }, + [34] = { 58.4, 67.9, 357, 300 }, + [35] = { 61, 67.9, 357, 300 }, + [36] = { 61, 67.6, 357, 300 }, + [37] = { 58.4, 67.5, 357, 300 }, + [38] = { 60.3, 67.2, 357, 300 }, + [39] = { 59.7, 67.1, 357, 300 }, + [40] = { 59.9, 67, 357, 300 }, + [41] = { 60, 66.4, 357, 300 }, + [42] = { 60.7, 66.1, 357, 300 }, + [43] = { 59.5, 66, 357, 300 }, + [44] = { 60.3, 65.9, 357, 300 }, + [45] = { 60.4, 64.8, 357, 300 }, + [46] = { 60, 63.3, 357, 300 }, + }, + ["lvl"] = "44-45", + }, + [5237] = { + ["coords"] = { + [1] = { 80.5, 35.5, 357, 300 }, + [2] = { 80.9, 35.4, 357, 300 }, + [3] = { 80.3, 35.1, 357, 300 }, + [4] = { 76.1, 35, 357, 300 }, + [5] = { 79.4, 34.9, 357, 300 }, + [6] = { 80.2, 34.9, 357, 300 }, + [7] = { 75.1, 34.9, 357, 300 }, + [8] = { 77.5, 34.8, 357, 300 }, + [9] = { 75.6, 34.8, 357, 300 }, + [10] = { 79.7, 34.7, 357, 300 }, + [11] = { 79.6, 34.3, 357, 300 }, + [12] = { 75.7, 34.1, 357, 300 }, + [13] = { 75.4, 33.9, 357, 300 }, + [14] = { 78.6, 33.7, 357, 300 }, + [15] = { 79.2, 33.7, 357, 300 }, + [16] = { 75.5, 33.4, 357, 300 }, + [17] = { 75.6, 33.4, 357, 300 }, + [18] = { 76.6, 33.4, 357, 300 }, + [19] = { 76.6, 33.1, 357, 300 }, + [20] = { 75.4, 33, 357, 300 }, + [21] = { 76.3, 32.9, 357, 300 }, + [22] = { 75.1, 32.5, 357, 300 }, + [23] = { 75, 32.4, 357, 300 }, + [24] = { 76.2, 29.9, 357, 300 }, + [25] = { 76.6, 29.8, 357, 300 }, + [26] = { 75.4, 29.7, 357, 300 }, + [27] = { 75.2, 29.6, 357, 300 }, + [28] = { 74.7, 29.6, 357, 300 }, + [29] = { 74.8, 29.3, 357, 300 }, + [30] = { 75.3, 29.1, 357, 300 }, + [31] = { 75.2, 28.4, 357, 300 }, + [32] = { 74.7, 28.4, 357, 300 }, + [33] = { 74.6, 27.9, 357, 300 }, + [34] = { 74.5, 26.8, 357, 300 }, + [35] = { 74.8, 26.6, 357, 300 }, + [36] = { 75.3, 26.4, 357, 300 }, + [37] = { 75.4, 26.3, 357, 300 }, + [38] = { 74.8, 25.9, 357, 300 }, + [39] = { 74.9, 25.6, 357, 300 }, + [40] = { 75.1, 25.6, 357, 300 }, + [41] = { 75.1, 25.1, 357, 300 }, + [42] = { 74.9, 25, 357, 300 }, + }, + ["lvl"] = "41-42", + }, + [5238] = { + ["coords"] = { + [1] = { 62.1, 73.4, 357, 300 }, + [2] = { 58.9, 73.4, 357, 300 }, + [3] = { 59.2, 73.1, 357, 300 }, + [4] = { 62.1, 73.1, 357, 300 }, + [5] = { 60.7, 72.8, 357, 300 }, + [6] = { 58.6, 72.7, 357, 300 }, + [7] = { 57.5, 72.6, 357, 300 }, + [8] = { 58.5, 72.4, 357, 300 }, + [9] = { 58.2, 71.8, 357, 300 }, + [10] = { 59.1, 71.6, 357, 300 }, + [11] = { 61.4, 71, 357, 300 }, + [12] = { 58.3, 70.9, 357, 300 }, + [13] = { 60.4, 70.8, 357, 300 }, + [14] = { 59.6, 70.4, 357, 300 }, + [15] = { 57.8, 70.2, 357, 300 }, + [16] = { 60, 70, 357, 300 }, + [17] = { 59, 69.9, 357, 300 }, + [18] = { 60.7, 69.6, 357, 300 }, + [19] = { 62.9, 69.5, 357, 300 }, + [20] = { 58.6, 69.2, 357, 300 }, + [21] = { 62.5, 69.1, 357, 300 }, + [22] = { 62.9, 69, 357, 300 }, + [23] = { 63.7, 68.8, 357, 300 }, + [24] = { 60.8, 68.7, 357, 300 }, + [25] = { 62.1, 68.7, 357, 300 }, + [26] = { 61.2, 68.7, 357, 300 }, + [27] = { 59.6, 68.7, 357, 300 }, + [28] = { 64, 68.6, 357, 300 }, + [29] = { 59.5, 68.4, 357, 300 }, + [30] = { 60.5, 68.2, 357, 300 }, + [31] = { 59.8, 68.1, 357, 300 }, + [32] = { 62.4, 68.1, 357, 300 }, + [33] = { 59.3, 68, 357, 300 }, + [34] = { 58.4, 67.9, 357, 300 }, + [35] = { 61, 67.9, 357, 300 }, + [36] = { 61, 67.6, 357, 300 }, + [37] = { 58.4, 67.5, 357, 300 }, + [38] = { 60.3, 67.2, 357, 300 }, + [39] = { 59.7, 67.1, 357, 300 }, + [40] = { 59.9, 67, 357, 300 }, + [41] = { 60, 66.4, 357, 300 }, + [42] = { 60.7, 66.1, 357, 300 }, + [43] = { 59.5, 66, 357, 300 }, + [44] = { 60.3, 65.9, 357, 300 }, + [45] = { 60.4, 64.8, 357, 300 }, + [46] = { 60, 63.3, 357, 300 }, + }, + ["lvl"] = "45-46", + }, + [5239] = { + ["coords"] = { + [1] = { 62.1, 73.4, 357, 300 }, + [2] = { 58.9, 73.4, 357, 300 }, + [3] = { 59.2, 73.1, 357, 300 }, + [4] = { 62.1, 73.1, 357, 300 }, + [5] = { 60.7, 72.8, 357, 300 }, + [6] = { 58.6, 72.7, 357, 300 }, + [7] = { 57.5, 72.6, 357, 300 }, + [8] = { 58.5, 72.4, 357, 300 }, + [9] = { 58.2, 71.8, 357, 300 }, + [10] = { 59.1, 71.6, 357, 300 }, + [11] = { 61.4, 71, 357, 300 }, + [12] = { 58.3, 70.9, 357, 300 }, + [13] = { 60.4, 70.8, 357, 300 }, + [14] = { 59.6, 70.4, 357, 300 }, + [15] = { 57.8, 70.2, 357, 300 }, + [16] = { 60, 70, 357, 300 }, + [17] = { 59, 69.9, 357, 300 }, + [18] = { 60.7, 69.6, 357, 300 }, + [19] = { 62.9, 69.5, 357, 300 }, + [20] = { 58.6, 69.2, 357, 300 }, + [21] = { 62.5, 69.1, 357, 300 }, + [22] = { 62.9, 69, 357, 300 }, + [23] = { 63.7, 68.8, 357, 300 }, + [24] = { 60.8, 68.7, 357, 300 }, + [25] = { 62.1, 68.7, 357, 300 }, + [26] = { 61.2, 68.7, 357, 300 }, + [27] = { 59.6, 68.7, 357, 300 }, + [28] = { 64, 68.6, 357, 300 }, + [29] = { 59.5, 68.4, 357, 300 }, + [30] = { 60.5, 68.2, 357, 300 }, + [31] = { 59.8, 68.1, 357, 300 }, + [32] = { 62.4, 68.1, 357, 300 }, + [33] = { 59.3, 68, 357, 300 }, + [34] = { 58.4, 67.9, 357, 300 }, + [35] = { 61, 67.9, 357, 300 }, + [36] = { 61, 67.6, 357, 300 }, + [37] = { 58.4, 67.5, 357, 300 }, + [38] = { 60.3, 67.2, 357, 300 }, + [39] = { 59.7, 67.1, 357, 300 }, + [40] = { 59.9, 67, 357, 300 }, + [41] = { 60, 66.4, 357, 300 }, + [42] = { 60.7, 66.1, 357, 300 }, + [43] = { 59.5, 66, 357, 300 }, + [44] = { 60.3, 65.9, 357, 300 }, + [45] = { 60.4, 64.8, 357, 300 }, + [46] = { 60, 63.3, 357, 300 }, + }, + ["lvl"] = "45-46", + }, + [5240] = { + ["coords"] = { + [1] = { 58.1, 73.4, 357, 300 }, + [2] = { 61.3, 72.3, 357, 300 }, + [3] = { 58, 72.3, 357, 300 }, + [4] = { 60.7, 71.3, 357, 300 }, + [5] = { 59.1, 71.2, 357, 300 }, + [6] = { 59.2, 69.7, 357, 300 }, + [7] = { 59.5, 57, 357, 300 }, + [8] = { 58.4, 66.5, 357, 300 }, + [9] = { 58.9, 65.1, 357, 300 }, + [10] = { 59.6, 64.5, 357, 300 }, + [11] = { 59.3, 64.4, 357, 300 }, + [12] = { 58.9, 64.1, 357, 300 }, + [13] = { 59.9, 62.9, 357, 300 }, + [14] = { 59.7, 62.7, 357, 300 }, + [15] = { 60.7, 58.5, 357, 300 }, + [16] = { 60.9, 58.1, 357, 300 }, + [17] = { 60.6, 57.6, 357, 300 }, + [18] = { 61.1, 57.6, 357, 300 }, + [19] = { 59.7, 56.6, 357, 300 }, + [20] = { 61.1, 56.5, 357, 300 }, + [21] = { 61.1, 55.6, 357, 300 }, + [22] = { 61.8, 55.6, 357, 300 }, + [23] = { 61.5, 55.5, 357, 300 }, + [24] = { 60.8, 55.1, 357, 300 }, + [25] = { 60.7, 54.7, 357, 300 }, + [26] = { 61.8, 54.6, 357, 300 }, + [27] = { 61.8, 54.5, 357, 300 }, + [28] = { 60.3, 65.9, 357, 300 }, + }, + ["lvl"] = "43-44", + }, + [5241] = { + ["coords"] = { + [1] = { 61.4, 73.3, 357, 300 }, + [2] = { 61, 73.2, 357, 300 }, + [3] = { 60.7, 72.2, 357, 300 }, + [4] = { 59, 71.8, 357, 300 }, + [5] = { 57.9, 71.6, 357, 300 }, + [6] = { 61, 71.3, 357, 300 }, + [7] = { 61.4, 69.2, 357, 300 }, + [8] = { 61.2, 69.1, 357, 300 }, + [9] = { 63.9, 68.9, 357, 300 }, + [10] = { 62.9, 68.6, 357, 300 }, + [11] = { 63, 67.9, 357, 300 }, + [12] = { 61.9, 67.6, 357, 300 }, + [13] = { 62, 67.4, 357, 300 }, + [14] = { 60.9, 66.8, 357, 300 }, + [15] = { 60.8, 66.6, 357, 300 }, + [16] = { 60, 65.4, 357, 300 }, + }, + ["lvl"] = "46-47", + }, + [5243] = { + ["coords"] = { + [1] = { 76.6, 51, 8, 900 }, + [2] = { 74.4, 48.4, 8, 900 }, + [3] = { 75.5, 47.6, 8, 900 }, + [4] = { 73.1, 47.4, 8, 900 }, + [5] = { 80.9, 45.4, 8, 900 }, + [6] = { 79.3, 44.7, 8, 900 }, + [7] = { 78.1, 44, 8, 900 }, + }, + ["lvl"] = "45-46", + ["rnk"] = "1", + }, + [5244] = { + ["coords"] = { + [1] = { 76.9, 65.5, 357, 300 }, + [2] = { 73.5, 65, 357, 300 }, + [3] = { 72.7, 64.5, 357, 300 }, + [4] = { 78.2, 64.4, 357, 300 }, + [5] = { 78, 64.1, 357, 300 }, + [6] = { 78.6, 63.7, 357, 300 }, + [7] = { 73.3, 63.7, 357, 300 }, + [8] = { 77.1, 62.8, 357, 300 }, + [9] = { 73.6, 62.5, 357, 300 }, + [10] = { 77, 61.6, 357, 300 }, + }, + ["lvl"] = "45-46", + }, + [5245] = { + ["coords"] = { + [1] = { 72.4, 63.6, 357, 300 }, + [2] = { 74.5, 63.5, 357, 300 }, + [3] = { 74.8, 63.1, 357, 300 }, + [4] = { 75.7, 62.9, 357, 300 }, + [5] = { 72.8, 62.9, 357, 300 }, + [6] = { 73.8, 62.9, 357, 300 }, + [7] = { 74.2, 62.3, 357, 300 }, + [8] = { 73.3, 62.2, 357, 300 }, + [9] = { 75.9, 61.6, 357, 300 }, + [10] = { 72.8, 61.6, 357, 300 }, + [11] = { 76.6, 60.1, 357, 300 }, + }, + ["lvl"] = "44-45", + }, + [5246] = { + ["coords"] = { + [1] = { 76.8, 63.2, 357, 300 }, + [2] = { 75.2, 62.1, 357, 300 }, + [3] = { 73.8, 61.5, 357, 300 }, + [4] = { 73.4, 60.9, 357, 300 }, + [5] = { 74.2, 60.8, 357, 300 }, + [6] = { 75.8, 60, 357, 300 }, + [7] = { 74.6, 60, 357, 300 }, + [8] = { 75.1, 59.6, 357, 300 }, + [9] = { 76.2, 59.2, 357, 300 }, + [10] = { 73.3, 62.2, 357, 300 }, + [11] = { 72.8, 61.6, 357, 300 }, + }, + ["lvl"] = "44-45", + }, + [5247] = { + ["coords"] = { + [1] = { 76.5, 66.6, 357, 300 }, + [2] = { 76.7, 66.4, 357, 300 }, + [3] = { 76.5, 66.2, 357, 300 }, + [4] = { 77.2, 65.3, 357, 300 }, + [5] = { 74.5, 65.1, 357, 300 }, + [6] = { 74.3, 65.1, 357, 300 }, + [7] = { 79, 65, 357, 300 }, + [8] = { 74.5, 64.8, 357, 300 }, + [9] = { 77.9, 64.8, 357, 300 }, + [10] = { 72.8, 64.6, 357, 300 }, + [11] = { 73.6, 64.5, 357, 300 }, + [12] = { 78.6, 64.4, 357, 300 }, + [13] = { 77.3, 64.3, 357, 300 }, + [14] = { 72, 64, 357, 300 }, + [15] = { 78.2, 63.8, 357, 300 }, + [16] = { 72.3, 63.7, 357, 300 }, + [17] = { 73.6, 63.5, 357, 300 }, + [18] = { 71.9, 63.5, 357, 300 }, + [19] = { 77.7, 63.4, 357, 300 }, + [20] = { 78.4, 63, 357, 300 }, + [21] = { 79, 63, 357, 300 }, + [22] = { 78, 62.9, 357, 300 }, + [23] = { 77.1, 62.8, 357, 300 }, + [24] = { 73.7, 62.8, 357, 300 }, + [25] = { 78.4, 62.6, 357, 300 }, + [26] = { 74.3, 62.2, 357, 300 }, + [27] = { 77.4, 62.1, 357, 300 }, + [28] = { 74.5, 62.1, 357, 300 }, + [29] = { 74.3, 61.8, 357, 300 }, + }, + ["lvl"] = "45-46", + }, + [5249] = { + ["coords"] = { + [1] = { 75.5, 55.1, 357, 300 }, + [2] = { 75.4, 55.1, 357, 300 }, + [3] = { 71.3, 55, 357, 300 }, + [4] = { 71.8, 55, 357, 300 }, + [5] = { 71, 54.9, 357, 300 }, + [6] = { 75.4, 54.8, 357, 300 }, + [7] = { 75.2, 54.4, 357, 300 }, + [8] = { 71.3, 54.4, 357, 300 }, + [9] = { 75.6, 54.3, 357, 300 }, + [10] = { 70.4, 54.3, 357, 300 }, + [11] = { 70.6, 54.2, 357, 300 }, + [12] = { 76.9, 54.2, 357, 300 }, + [13] = { 75.6, 54.2, 357, 300 }, + [14] = { 76.2, 54.2, 357, 300 }, + [15] = { 71.5, 54.2, 357, 300 }, + [16] = { 75.5, 54.1, 357, 300 }, + [17] = { 71.6, 54.1, 357, 300 }, + [18] = { 76.9, 54.1, 357, 300 }, + [19] = { 70, 54.1, 357, 300 }, + [20] = { 75.9, 54, 357, 300 }, + [21] = { 76.2, 54, 357, 300 }, + [22] = { 71.3, 53.8, 357, 300 }, + [23] = { 69.8, 53.6, 357, 300 }, + [24] = { 71.8, 53.6, 357, 300 }, + [25] = { 71, 53.5, 357, 300 }, + [26] = { 75.6, 53.5, 357, 300 }, + [27] = { 75.7, 53.4, 357, 300 }, + [28] = { 70.6, 53.4, 357, 300 }, + [29] = { 70.5, 53.3, 357, 300 }, + [30] = { 70.5, 53.2, 357, 300 }, + [31] = { 75.7, 53.2, 357, 300 }, + [32] = { 70, 53, 357, 300 }, + [33] = { 70.9, 52.9, 357, 300 }, + [34] = { 70.3, 52.8, 357, 300 }, + [35] = { 70.4, 52.2, 357, 300 }, + [36] = { 70.5, 51.4, 357, 300 }, + [37] = { 69.4, 51.3, 357, 300 }, + [38] = { 69.8, 51.2, 357, 300 }, + [39] = { 70.4, 51, 357, 300 }, + [40] = { 69.9, 51, 357, 300 }, + [41] = { 69.7, 50.9, 357, 300 }, + [42] = { 69.4, 50.8, 357, 300 }, + [43] = { 72.3, 39.9, 357, 300 }, + [44] = { 72.8, 39.9, 357, 300 }, + [45] = { 73.2, 39.9, 357, 300 }, + [46] = { 72.7, 39.4, 357, 300 }, + [47] = { 72.3, 39.3, 357, 300 }, + [48] = { 73.2, 39.2, 357, 300 }, + [49] = { 72.8, 39.2, 357, 300 }, + [50] = { 72.7, 39.2, 357, 300 }, + [51] = { 72.3, 38.5, 357, 300 }, + [52] = { 72.8, 38.5, 357, 300 }, + [53] = { 71.8, 38.5, 357, 300 }, + [54] = { 72.4, 37.9, 357, 300 }, + [55] = { 72.5, 37.8, 357, 300 }, + [56] = { 72.8, 37.7, 357, 300 }, + [57] = { 72.4, 37.7, 357, 300 }, + [58] = { 71.9, 37.6, 357, 300 }, + [59] = { 72.1, 37.4, 357, 300 }, + [60] = { 71.9, 37.3, 357, 300 }, + [61] = { 73.7, 37.3, 357, 300 }, + [62] = { 72, 37.2, 357, 300 }, + [63] = { 72.4, 37.2, 357, 300 }, + [64] = { 73.2, 37.1, 357, 300 }, + [65] = { 72.8, 37.1, 357, 300 }, + [66] = { 72, 36.8, 357, 300 }, + [67] = { 71.9, 36.7, 357, 300 }, + [68] = { 72.2, 36.7, 357, 300 }, + [69] = { 72.1, 36.5, 357, 300 }, + [70] = { 72.8, 36.4, 357, 300 }, + [71] = { 73.2, 36.3, 357, 300 }, + [72] = { 72.9, 35.8, 357, 300 }, + [73] = { 73.2, 35.6, 357, 300 }, + [74] = { 72.4, 35.6, 357, 300 }, + }, + ["lvl"] = "40-41", + }, + [5251] = { + ["coords"] = { + [1] = { 75.5, 55.1, 357, 300 }, + [2] = { 75.4, 55.1, 357, 300 }, + [3] = { 71.3, 55, 357, 300 }, + [4] = { 71.8, 55, 357, 300 }, + [5] = { 71, 54.9, 357, 300 }, + [6] = { 75.4, 54.8, 357, 300 }, + [7] = { 75.2, 54.4, 357, 300 }, + [8] = { 71.3, 54.4, 357, 300 }, + [9] = { 75.6, 54.3, 357, 300 }, + [10] = { 70.4, 54.3, 357, 300 }, + [11] = { 70.6, 54.2, 357, 300 }, + [12] = { 76.9, 54.2, 357, 300 }, + [13] = { 75.6, 54.2, 357, 300 }, + [14] = { 76.2, 54.2, 357, 300 }, + [15] = { 71.5, 54.2, 357, 300 }, + [16] = { 75.5, 54.1, 357, 300 }, + [17] = { 71.6, 54.1, 357, 300 }, + [18] = { 76.9, 54.1, 357, 300 }, + [19] = { 70, 54.1, 357, 300 }, + [20] = { 75.9, 54, 357, 300 }, + [21] = { 76.2, 54, 357, 300 }, + [22] = { 71.3, 53.8, 357, 300 }, + [23] = { 69.8, 53.6, 357, 300 }, + [24] = { 71.8, 53.6, 357, 300 }, + [25] = { 71, 53.5, 357, 300 }, + [26] = { 75.6, 53.5, 357, 300 }, + [27] = { 75.7, 53.4, 357, 300 }, + [28] = { 70.6, 53.4, 357, 300 }, + [29] = { 70.5, 53.3, 357, 300 }, + [30] = { 70.5, 53.2, 357, 300 }, + [31] = { 75.7, 53.2, 357, 300 }, + [32] = { 70, 53, 357, 300 }, + [33] = { 70.9, 52.9, 357, 300 }, + [34] = { 70.3, 52.8, 357, 300 }, + [35] = { 70.4, 52.2, 357, 300 }, + [36] = { 70.5, 51.4, 357, 300 }, + [37] = { 69.4, 51.3, 357, 300 }, + [38] = { 69.8, 51.2, 357, 300 }, + [39] = { 70.4, 51, 357, 300 }, + [40] = { 69.9, 51, 357, 300 }, + [41] = { 69.7, 50.9, 357, 300 }, + [42] = { 69.4, 50.8, 357, 300 }, + [43] = { 72.3, 39.9, 357, 300 }, + [44] = { 72.8, 39.9, 357, 300 }, + [45] = { 73.2, 39.9, 357, 300 }, + [46] = { 72.7, 39.4, 357, 300 }, + [47] = { 72.3, 39.3, 357, 300 }, + [48] = { 73.2, 39.2, 357, 300 }, + [49] = { 72.8, 39.2, 357, 300 }, + [50] = { 72.7, 39.2, 357, 300 }, + [51] = { 72.3, 38.5, 357, 300 }, + [52] = { 72.8, 38.5, 357, 300 }, + [53] = { 71.8, 38.5, 357, 300 }, + [54] = { 72.4, 37.9, 357, 300 }, + [55] = { 72.5, 37.8, 357, 300 }, + [56] = { 72.8, 37.7, 357, 300 }, + [57] = { 72.4, 37.7, 357, 300 }, + [58] = { 71.9, 37.6, 357, 300 }, + [59] = { 72.1, 37.4, 357, 300 }, + [60] = { 71.9, 37.3, 357, 300 }, + [61] = { 73.7, 37.3, 357, 300 }, + [62] = { 72, 37.2, 357, 300 }, + [63] = { 72.4, 37.2, 357, 300 }, + [64] = { 73.2, 37.1, 357, 300 }, + [65] = { 72.8, 37.1, 357, 300 }, + [66] = { 72, 36.8, 357, 300 }, + [67] = { 71.9, 36.7, 357, 300 }, + [68] = { 72.2, 36.7, 357, 300 }, + [69] = { 72.1, 36.5, 357, 300 }, + [70] = { 72.8, 36.4, 357, 300 }, + [71] = { 73.2, 36.3, 357, 300 }, + [72] = { 72.9, 35.8, 357, 300 }, + [73] = { 73.2, 35.6, 357, 300 }, + [74] = { 72.4, 35.6, 357, 300 }, + }, + ["lvl"] = "41-42", + }, + [5253] = { + ["coords"] = { + [1] = { 71.8, 55, 357, 300 }, + [2] = { 75.4, 54.8, 357, 300 }, + [3] = { 71.3, 54.4, 357, 300 }, + [4] = { 75.6, 54.3, 357, 300 }, + [5] = { 70.6, 54.2, 357, 300 }, + [6] = { 76.9, 54.2, 357, 300 }, + [7] = { 75.9, 54, 357, 300 }, + [8] = { 71.8, 53.6, 357, 300 }, + [9] = { 70.5, 53.2, 357, 300 }, + [10] = { 70.4, 52.2, 357, 300 }, + [11] = { 70.5, 51.4, 357, 300 }, + [12] = { 72.3, 39.9, 357, 300 }, + [13] = { 72.8, 39.9, 357, 300 }, + [14] = { 73.2, 39.9, 357, 300 }, + [15] = { 73.2, 39.2, 357, 300 }, + [16] = { 72.8, 39.2, 357, 300 }, + [17] = { 72.7, 39.2, 357, 300 }, + [18] = { 72.8, 38.5, 357, 300 }, + [19] = { 72.4, 37.9, 357, 300 }, + [20] = { 72.5, 37.8, 357, 300 }, + [21] = { 72.4, 37.2, 357, 300 }, + [22] = { 73.2, 37.1, 357, 300 }, + [23] = { 72.2, 36.7, 357, 300 }, + }, + ["lvl"] = "41-42", + }, + [5254] = { + ["coords"] = { + [1] = { 77.3, 57.4, 357, 300 }, + [2] = { 70.8, 57.4, 357, 300 }, + [3] = { 71.9, 57.3, 357, 300 }, + [4] = { 73.2, 57.3, 357, 300 }, + [5] = { 75.6, 57.2, 357, 300 }, + [6] = { 72.8, 57.2, 357, 300 }, + [7] = { 72.3, 57.2, 357, 300 }, + [8] = { 73.7, 57.2, 357, 300 }, + [9] = { 71.4, 57.1, 357, 300 }, + [10] = { 74.7, 57.1, 357, 300 }, + [11] = { 76.1, 57.1, 357, 300 }, + [12] = { 73.1, 56.9, 357, 300 }, + [13] = { 77.3, 56.8, 357, 300 }, + [14] = { 72.4, 56.8, 357, 300 }, + [15] = { 70.9, 56.6, 357, 300 }, + [16] = { 72.2, 56.6, 357, 300 }, + [17] = { 68.5, 56.6, 357, 300 }, + [18] = { 73.3, 56.6, 357, 300 }, + [19] = { 76.8, 56.6, 357, 300 }, + [20] = { 72.4, 56.5, 357, 300 }, + [21] = { 71.8, 56.5, 357, 300 }, + [22] = { 76.1, 56.5, 357, 300 }, + [23] = { 72.7, 56.5, 357, 300 }, + [24] = { 75.5, 56.5, 357, 300 }, + [25] = { 74.6, 56.5, 357, 300 }, + [26] = { 73.1, 56.4, 357, 300 }, + [27] = { 69, 56.4, 357, 300 }, + [28] = { 69.6, 56.4, 357, 300 }, + [29] = { 75.2, 56.4, 357, 300 }, + [30] = { 77.7, 56.4, 357, 300 }, + [31] = { 75.6, 56.3, 357, 300 }, + [32] = { 77.3, 56.3, 357, 300 }, + [33] = { 75.5, 56.3, 357, 300 }, + [34] = { 77.4, 56.3, 357, 300 }, + [35] = { 73.3, 56.2, 357, 300 }, + [36] = { 71.5, 56.2, 357, 300 }, + [37] = { 71.6, 56.1, 357, 300 }, + [38] = { 67.4, 56.1, 357, 300 }, + [39] = { 76.8, 56, 357, 300 }, + [40] = { 71.4, 55.9, 357, 300 }, + [41] = { 69.1, 55.9, 357, 300 }, + [42] = { 71.6, 55.9, 357, 300 }, + [43] = { 75.6, 55.9, 357, 300 }, + [44] = { 67.2, 55.8, 357, 300 }, + [45] = { 75.2, 55.8, 357, 300 }, + [46] = { 69.1, 55.8, 357, 300 }, + [47] = { 74.6, 55.8, 357, 300 }, + [48] = { 68.4, 55.8, 357, 300 }, + [49] = { 69.9, 55.8, 357, 300 }, + [50] = { 74.3, 55.7, 357, 300 }, + [51] = { 72.3, 55.7, 357, 300 }, + [52] = { 68.8, 55.7, 357, 300 }, + [53] = { 72.8, 55.7, 357, 300 }, + [54] = { 69.5, 55.7, 357, 300 }, + [55] = { 69.1, 55.6, 357, 300 }, + [56] = { 73.4, 55.6, 357, 300 }, + [57] = { 68.2, 55.4, 357, 300 }, + [58] = { 68.6, 55.1, 357, 300 }, + [59] = { 69.4, 55, 357, 300 }, + [60] = { 69, 55, 357, 300 }, + [61] = { 72.3, 55, 357, 300 }, + [62] = { 74.3, 55, 357, 300 }, + [63] = { 74.5, 55, 357, 300 }, + [64] = { 69.7, 54.8, 357, 300 }, + [65] = { 74.4, 54.8, 357, 300 }, + [66] = { 67.1, 54.4, 357, 300 }, + [67] = { 68.6, 54.4, 357, 300 }, + [68] = { 69, 54.4, 357, 300 }, + [69] = { 68.7, 54.3, 357, 300 }, + [70] = { 68.5, 54.2, 357, 300 }, + [71] = { 68.8, 53.8, 357, 300 }, + [72] = { 65.6, 53.7, 357, 300 }, + [73] = { 65.4, 53.7, 357, 300 }, + [74] = { 67.9, 53.6, 357, 300 }, + [75] = { 68.5, 53.6, 357, 300 }, + [76] = { 65.6, 53.5, 357, 300 }, + [77] = { 66.7, 53.4, 357, 300 }, + [78] = { 66.1, 52.9, 357, 300 }, + [79] = { 65.7, 52.7, 357, 300 }, + [80] = { 65.1, 52.7, 357, 300 }, + [81] = { 65.7, 52.6, 357, 300 }, + [82] = { 65.6, 52.6, 357, 300 }, + [83] = { 65.1, 52.5, 357, 300 }, + [84] = { 65.6, 52.4, 357, 300 }, + [85] = { 66.1, 52.4, 357, 300 }, + [86] = { 65.3, 52, 357, 300 }, + [87] = { 65.2, 52, 357, 300 }, + [88] = { 65.3, 51.9, 357, 300 }, + [89] = { 65.9, 51.7, 357, 300 }, + [90] = { 66.4, 51.6, 357, 300 }, + [91] = { 66.1, 51.6, 357, 300 }, + [92] = { 65.9, 51.4, 357, 300 }, + }, + ["lvl"] = "42-43", + }, + [5255] = { + ["coords"] = { + [1] = { 77.3, 57.4, 357, 300 }, + [2] = { 70.8, 57.4, 357, 300 }, + [3] = { 71.9, 57.3, 357, 300 }, + [4] = { 73.2, 57.3, 357, 300 }, + [5] = { 75.6, 57.2, 357, 300 }, + [6] = { 72.8, 57.2, 357, 300 }, + [7] = { 72.3, 57.2, 357, 300 }, + [8] = { 73.7, 57.2, 357, 300 }, + [9] = { 71.4, 57.1, 357, 300 }, + [10] = { 74.7, 57.1, 357, 300 }, + [11] = { 76.1, 57.1, 357, 300 }, + [12] = { 73.1, 56.9, 357, 300 }, + [13] = { 77.3, 56.8, 357, 300 }, + [14] = { 72.4, 56.8, 357, 300 }, + [15] = { 70.9, 56.6, 357, 300 }, + [16] = { 72.2, 56.6, 357, 300 }, + [17] = { 68.5, 56.6, 357, 300 }, + [18] = { 73.3, 56.6, 357, 300 }, + [19] = { 76.8, 56.6, 357, 300 }, + [20] = { 72.4, 56.5, 357, 300 }, + [21] = { 71.8, 56.5, 357, 300 }, + [22] = { 76.1, 56.5, 357, 300 }, + [23] = { 72.7, 56.5, 357, 300 }, + [24] = { 75.5, 56.5, 357, 300 }, + [25] = { 74.6, 56.5, 357, 300 }, + [26] = { 73.1, 56.4, 357, 300 }, + [27] = { 69, 56.4, 357, 300 }, + [28] = { 69.6, 56.4, 357, 300 }, + [29] = { 75.2, 56.4, 357, 300 }, + [30] = { 77.7, 56.4, 357, 300 }, + [31] = { 75.6, 56.3, 357, 300 }, + [32] = { 77.3, 56.3, 357, 300 }, + [33] = { 75.5, 56.3, 357, 300 }, + [34] = { 77.4, 56.3, 357, 300 }, + [35] = { 73.3, 56.2, 357, 300 }, + [36] = { 71.5, 56.2, 357, 300 }, + [37] = { 71.6, 56.1, 357, 300 }, + [38] = { 67.4, 56.1, 357, 300 }, + [39] = { 76.8, 56, 357, 300 }, + [40] = { 71.4, 55.9, 357, 300 }, + [41] = { 69.1, 55.9, 357, 300 }, + [42] = { 71.6, 55.9, 357, 300 }, + [43] = { 75.6, 55.9, 357, 300 }, + [44] = { 67.2, 55.8, 357, 300 }, + [45] = { 75.2, 55.8, 357, 300 }, + [46] = { 69.1, 55.8, 357, 300 }, + [47] = { 74.6, 55.8, 357, 300 }, + [48] = { 68.4, 55.8, 357, 300 }, + [49] = { 69.9, 55.8, 357, 300 }, + [50] = { 74.3, 55.7, 357, 300 }, + [51] = { 72.3, 55.7, 357, 300 }, + [52] = { 68.8, 55.7, 357, 300 }, + [53] = { 72.8, 55.7, 357, 300 }, + [54] = { 69.5, 55.7, 357, 300 }, + [55] = { 69.1, 55.6, 357, 300 }, + [56] = { 73.4, 55.6, 357, 300 }, + [57] = { 68.2, 55.4, 357, 300 }, + [58] = { 68.6, 55.1, 357, 300 }, + [59] = { 69.4, 55, 357, 300 }, + [60] = { 69, 55, 357, 300 }, + [61] = { 72.3, 55, 357, 300 }, + [62] = { 74.3, 55, 357, 300 }, + [63] = { 74.5, 55, 357, 300 }, + [64] = { 69.7, 54.8, 357, 300 }, + [65] = { 74.4, 54.8, 357, 300 }, + [66] = { 67.1, 54.4, 357, 300 }, + [67] = { 68.6, 54.4, 357, 300 }, + [68] = { 69, 54.4, 357, 300 }, + [69] = { 68.7, 54.3, 357, 300 }, + [70] = { 68.5, 54.2, 357, 300 }, + [71] = { 68.8, 53.8, 357, 300 }, + [72] = { 65.6, 53.7, 357, 300 }, + [73] = { 65.4, 53.7, 357, 300 }, + [74] = { 67.9, 53.6, 357, 300 }, + [75] = { 68.5, 53.6, 357, 300 }, + [76] = { 65.6, 53.5, 357, 300 }, + [77] = { 66.7, 53.4, 357, 300 }, + [78] = { 66.1, 52.9, 357, 300 }, + [79] = { 65.7, 52.7, 357, 300 }, + [80] = { 65.1, 52.7, 357, 300 }, + [81] = { 65.7, 52.6, 357, 300 }, + [82] = { 65.6, 52.6, 357, 300 }, + [83] = { 65.1, 52.5, 357, 300 }, + [84] = { 65.6, 52.4, 357, 300 }, + [85] = { 66.1, 52.4, 357, 300 }, + [86] = { 65.3, 52, 357, 300 }, + [87] = { 65.2, 52, 357, 300 }, + [88] = { 65.3, 51.9, 357, 300 }, + [89] = { 65.9, 51.7, 357, 300 }, + [90] = { 66.4, 51.6, 357, 300 }, + [91] = { 66.1, 51.6, 357, 300 }, + [92] = { 65.9, 51.4, 357, 300 }, + }, + ["lvl"] = "42-43", + }, + [5256] = { + ["coords"] = {}, + ["lvl"] = "48-49", + ["rnk"] = "1", + }, + [5258] = { + ["coords"] = { + [1] = { 77.3, 57.4, 357, 300 }, + [2] = { 70.8, 57.4, 357, 300 }, + [3] = { 71.9, 57.3, 357, 300 }, + [4] = { 73.2, 57.3, 357, 300 }, + [5] = { 75.6, 57.2, 357, 300 }, + [6] = { 72.8, 57.2, 357, 300 }, + [7] = { 72.3, 57.2, 357, 300 }, + [8] = { 73.7, 57.2, 357, 300 }, + [9] = { 71.4, 57.1, 357, 300 }, + [10] = { 74.7, 57.1, 357, 300 }, + [11] = { 76.1, 57.1, 357, 300 }, + [12] = { 73.1, 56.9, 357, 300 }, + [13] = { 77.3, 56.8, 357, 300 }, + [14] = { 72.4, 56.8, 357, 300 }, + [15] = { 70.9, 56.6, 357, 300 }, + [16] = { 72.2, 56.6, 357, 300 }, + [17] = { 68.5, 56.6, 357, 300 }, + [18] = { 73.3, 56.6, 357, 300 }, + [19] = { 76.8, 56.6, 357, 300 }, + [20] = { 72.4, 56.5, 357, 300 }, + [21] = { 71.8, 56.5, 357, 300 }, + [22] = { 76.1, 56.5, 357, 300 }, + [23] = { 72.7, 56.5, 357, 300 }, + [24] = { 75.5, 56.5, 357, 300 }, + [25] = { 74.6, 56.5, 357, 300 }, + [26] = { 73.1, 56.4, 357, 300 }, + [27] = { 69, 56.4, 357, 300 }, + [28] = { 69.6, 56.4, 357, 300 }, + [29] = { 75.2, 56.4, 357, 300 }, + [30] = { 77.7, 56.4, 357, 300 }, + [31] = { 75.6, 56.3, 357, 300 }, + [32] = { 77.3, 56.3, 357, 300 }, + [33] = { 75.5, 56.3, 357, 300 }, + [34] = { 77.4, 56.3, 357, 300 }, + [35] = { 73.3, 56.2, 357, 300 }, + [36] = { 71.5, 56.2, 357, 300 }, + [37] = { 71.6, 56.1, 357, 300 }, + [38] = { 67.4, 56.1, 357, 300 }, + [39] = { 76.8, 56, 357, 300 }, + [40] = { 71.4, 55.9, 357, 300 }, + [41] = { 69.1, 55.9, 357, 300 }, + [42] = { 71.6, 55.9, 357, 300 }, + [43] = { 75.6, 55.9, 357, 300 }, + [44] = { 67.2, 55.8, 357, 300 }, + [45] = { 75.2, 55.8, 357, 300 }, + [46] = { 69.1, 55.8, 357, 300 }, + [47] = { 74.6, 55.8, 357, 300 }, + [48] = { 68.4, 55.8, 357, 300 }, + [49] = { 69.9, 55.8, 357, 300 }, + [50] = { 74.3, 55.7, 357, 300 }, + [51] = { 72.3, 55.7, 357, 300 }, + [52] = { 68.8, 55.7, 357, 300 }, + [53] = { 72.8, 55.7, 357, 300 }, + [54] = { 69.5, 55.7, 357, 300 }, + [55] = { 69.1, 55.6, 357, 300 }, + [56] = { 73.4, 55.6, 357, 300 }, + [57] = { 68.2, 55.4, 357, 300 }, + [58] = { 68.6, 55.1, 357, 300 }, + [59] = { 69.4, 55, 357, 300 }, + [60] = { 69, 55, 357, 300 }, + [61] = { 72.3, 55, 357, 300 }, + [62] = { 74.3, 55, 357, 300 }, + [63] = { 74.5, 55, 357, 300 }, + [64] = { 69.7, 54.8, 357, 300 }, + [65] = { 74.4, 54.8, 357, 300 }, + [66] = { 67.1, 54.4, 357, 300 }, + [67] = { 68.6, 54.4, 357, 300 }, + [68] = { 69, 54.4, 357, 300 }, + [69] = { 68.7, 54.3, 357, 300 }, + [70] = { 68.5, 54.2, 357, 300 }, + [71] = { 68.8, 53.8, 357, 300 }, + [72] = { 65.6, 53.7, 357, 300 }, + [73] = { 65.4, 53.7, 357, 300 }, + [74] = { 67.9, 53.6, 357, 300 }, + [75] = { 68.5, 53.6, 357, 300 }, + [76] = { 65.6, 53.5, 357, 300 }, + [77] = { 66.7, 53.4, 357, 300 }, + [78] = { 66.1, 52.9, 357, 300 }, + [79] = { 65.7, 52.7, 357, 300 }, + [80] = { 65.1, 52.7, 357, 300 }, + [81] = { 65.7, 52.6, 357, 300 }, + [82] = { 65.6, 52.6, 357, 300 }, + [83] = { 65.1, 52.5, 357, 300 }, + [84] = { 65.6, 52.4, 357, 300 }, + [85] = { 66.1, 52.4, 357, 300 }, + [86] = { 65.3, 52, 357, 300 }, + [87] = { 65.2, 52, 357, 300 }, + [88] = { 65.3, 51.9, 357, 300 }, + [89] = { 65.9, 51.7, 357, 300 }, + [90] = { 66.4, 51.6, 357, 300 }, + [91] = { 66.1, 51.6, 357, 300 }, + [92] = { 65.9, 51.4, 357, 300 }, + }, + ["lvl"] = "43-44", + }, + [5259] = { + ["coords"] = {}, + ["lvl"] = "49-50", + ["rnk"] = "1", + }, + [5260] = { + ["coords"] = { + [1] = { 61.7, 64.4, 357, 300 }, + [2] = { 61.7, 64, 357, 300 }, + [3] = { 58.8, 61.6, 357, 300 }, + [4] = { 61.2, 61.4, 357, 300 }, + [5] = { 60.6, 61.2, 357, 300 }, + [6] = { 60.8, 60.8, 357, 300 }, + [7] = { 57.4, 60.7, 357, 300 }, + [8] = { 59.6, 60.5, 357, 300 }, + [9] = { 58.9, 60.3, 357, 300 }, + [10] = { 57.8, 60.3, 357, 300 }, + [11] = { 59.8, 60.1, 357, 300 }, + [12] = { 56.5, 60.1, 357, 300 }, + [13] = { 58.6, 58.7, 357, 300 }, + [14] = { 58.4, 58.1, 357, 300 }, + [15] = { 57.8, 57.9, 357, 300 }, + [16] = { 58, 57.9, 357, 300 }, + [17] = { 57.2, 57.2, 357, 300 }, + [18] = { 58.3, 55.6, 357, 300 }, + [19] = { 57.9, 55.5, 357, 300 }, + [20] = { 56.3, 54.9, 357, 300 }, + [21] = { 56.9, 54.5, 357, 300 }, + [22] = { 57.5, 54.3, 357, 300 }, + [23] = { 73.4, 53.7, 357, 300 }, + [24] = { 57.4, 53.5, 357, 300 }, + [25] = { 68.3, 52.1, 357, 300 }, + [26] = { 74.7, 51.4, 357, 300 }, + }, + ["lvl"] = "42-43", + }, + [5261] = { + ["coords"] = { + [1] = { 76.9, 49.1, 8, 900 }, + [2] = { 76.8, 48.8, 8, 900 }, + [3] = { 73.6, 48.3, 8, 900 }, + [4] = { 76.9, 47.8, 8, 900 }, + [5] = { 74.8, 47.6, 8, 900 }, + [6] = { 80.6, 47.5, 8, 900 }, + [7] = { 80.6, 47.4, 8, 900 }, + [8] = { 74.3, 47.3, 8, 900 }, + [9] = { 78.5, 45, 8, 900 }, + }, + ["lvl"] = "45-46", + ["rnk"] = "1", + }, + [5262] = { + ["coords"] = { + [1] = { 48.8, 35.4, 357, 300 }, + [2] = { 48.8, 34.8, 357, 300 }, + [3] = { 49.8, 32.7, 357, 300 }, + [4] = { 50.7, 32.7, 357, 300 }, + [5] = { 50.2, 32.1, 357, 300 }, + [6] = { 50.2, 29.9, 357, 300 }, + [7] = { 46.5, 29.8, 357, 300 }, + [8] = { 46.3, 29.4, 357, 300 }, + [9] = { 50.3, 28.7, 357, 300 }, + [10] = { 50.6, 28.2, 357, 300 }, + [11] = { 43.6, 25.7, 357, 300 }, + [12] = { 42.8, 25, 357, 300 }, + [13] = { 46.7, 25, 357, 300 }, + [14] = { 46.4, 24.2, 357, 300 }, + [15] = { 41.1, 24.1, 357, 300 }, + [16] = { 43.9, 23.8, 357, 300 }, + [17] = { 37.8, 23.4, 357, 300 }, + [18] = { 41.8, 23.3, 357, 300 }, + [19] = { 43.2, 23.1, 357, 300 }, + [20] = { 43.7, 22.2, 357, 300 }, + [21] = { 45.7, 22.1, 357, 300 }, + [22] = { 41.8, 21.6, 357, 300 }, + [23] = { 40.6, 20.5, 357, 300 }, + [24] = { 44.1, 20.3, 357, 300 }, + [25] = { 45.1, 19.8, 357, 300 }, + [26] = { 39.9, 18.6, 357, 300 }, + [27] = { 41.1, 17.1, 357, 300 }, + [28] = { 41.6, 16.9, 357, 300 }, + [29] = { 41.3, 15.9, 357, 300 }, + [30] = { 44.8, 12.2, 357, 300 }, + [31] = { 42.6, 11.8, 357, 300 }, + [32] = { 43, 11.5, 357, 300 }, + [33] = { 42.2, 9, 357, 300 }, + [34] = { 43.7, 8.3, 357, 300 }, + }, + ["lvl"] = "49-50", + }, + [5263] = { + ["coords"] = { + [1] = { 80.2, 49.7, 8, 900 }, + [2] = { 80.2, 48.3, 8, 900 }, + [3] = { 80.9, 46.7, 8, 900 }, + [4] = { 80.9, 46.5, 8, 900 }, + [5] = { 80.9, 44.4, 8, 900 }, + [6] = { 78.6, 41.7, 8, 900 }, + [7] = { 78.6, 41.5, 8, 900 }, + [8] = { 77.7, 41.4, 8, 900 }, + [9] = { 78.2, 41.2, 8, 900 }, + [10] = { 76.7, 41.1, 8, 900 }, + [11] = { 77.1, 40.8, 8, 900 }, + [12] = { 77.9, 40.2, 8, 900 }, + [13] = { 78.4, 39.7, 8, 900 }, + [14] = { 77, 39.6, 8, 900 }, + [15] = { 79.1, 38.9, 8, 900 }, + [16] = { 78.2, 38.9, 8, 900 }, + [17] = { 78.2, 38.5, 8, 900 }, + }, + ["lvl"] = "46-47", + ["rnk"] = "1", + }, + [5264] = { + ["coords"] = {}, + ["lvl"] = "45-46", + }, + [5267] = { + ["coords"] = {}, + ["lvl"] = "48-49", + ["rnk"] = "1", + }, + [5268] = { + ["coords"] = { + [1] = { 61.3, 61.6, 357, 300 }, + [2] = { 58.3, 60.4, 357, 300 }, + [3] = { 57.1, 60.1, 357, 300 }, + [4] = { 60.9, 60, 357, 300 }, + [5] = { 59, 59.5, 357, 300 }, + [6] = { 57.9, 58.3, 357, 300 }, + [7] = { 58, 55.8, 357, 300 }, + [8] = { 57.8, 55.3, 357, 300 }, + [9] = { 58.7, 54.4, 357, 300 }, + [10] = { 55.7, 53.8, 357, 300 }, + [11] = { 54.7, 52.8, 357, 300 }, + [12] = { 80.1, 46.6, 357, 300 }, + [13] = { 70.9, 46.5, 357, 300 }, + [14] = { 78.9, 46.2, 357, 300 }, + [15] = { 81.2, 46.1, 357, 300 }, + [16] = { 83.4, 46.1, 357, 300 }, + [17] = { 72.2, 45.9, 357, 300 }, + [18] = { 81.6, 45.9, 357, 300 }, + [19] = { 84.4, 45.9, 357, 300 }, + [20] = { 79.5, 45.8, 357, 300 }, + [21] = { 85.2, 45.7, 357, 300 }, + [22] = { 86.1, 45.6, 357, 300 }, + [23] = { 78, 45.4, 357, 300 }, + [24] = { 70.5, 44.9, 357, 300 }, + [25] = { 80.4, 44.9, 357, 300 }, + [26] = { 68.7, 44.9, 357, 300 }, + [27] = { 68.1, 44.8, 357, 300 }, + [28] = { 86.1, 44.3, 357, 300 }, + [29] = { 82.9, 44.2, 357, 300 }, + [30] = { 69.7, 44.2, 357, 300 }, + [31] = { 86.8, 44.1, 357, 300 }, + [32] = { 68.6, 44, 357, 300 }, + [33] = { 71.6, 43.8, 357, 300 }, + [34] = { 79.9, 43.6, 357, 300 }, + [35] = { 72.6, 43.4, 357, 300 }, + [36] = { 85.8, 42.8, 357, 300 }, + [37] = { 71.2, 42.8, 357, 300 }, + [38] = { 70.4, 42.7, 357, 300 }, + [39] = { 83.3, 42.5, 357, 300 }, + [40] = { 69.4, 42.4, 357, 300 }, + [41] = { 70.4, 42.1, 357, 300 }, + [42] = { 73.1, 41.9, 357, 300 }, + [43] = { 70.5, 41.5, 357, 300 }, + [44] = { 79.2, 41.2, 357, 300 }, + [45] = { 76.9, 40.8, 357, 300 }, + [46] = { 71, 40.8, 357, 300 }, + [47] = { 83.4, 40.6, 357, 300 }, + [48] = { 82.8, 40.5, 357, 300 }, + [49] = { 76.1, 39.9, 357, 300 }, + [50] = { 84.3, 39.6, 357, 300 }, + [51] = { 89.6, 39.3, 357, 300 }, + [52] = { 87.7, 39.3, 357, 300 }, + [53] = { 79.3, 39, 357, 300 }, + [54] = { 81.7, 39, 357, 300 }, + [55] = { 85, 38.9, 357, 300 }, + [56] = { 82.9, 38.6, 357, 300 }, + [57] = { 86.6, 38.6, 357, 300 }, + [58] = { 77.6, 38.5, 357, 300 }, + [59] = { 85.1, 38.5, 357, 300 }, + [60] = { 87.1, 38.3, 357, 300 }, + [61] = { 80.4, 38.3, 357, 300 }, + [62] = { 87.9, 38.1, 357, 300 }, + [63] = { 74.8, 38, 357, 300 }, + [64] = { 85.7, 37.1, 357, 300 }, + [65] = { 78.9, 37, 357, 300 }, + [66] = { 75.9, 36.5, 357, 300 }, + [67] = { 70.3, 36.3, 357, 300 }, + [68] = { 71.6, 35.3, 357, 300 }, + [69] = { 8, 7.6, 400, 300 }, + }, + ["lvl"] = "41-42", + }, + [5269] = { + ["coords"] = { + [1] = { 76.1, 50.7, 8, 900 }, + [2] = { 75, 48.8, 8, 900 }, + [3] = { 77.6, 48.5, 8, 900 }, + [4] = { 80.4, 48.2, 8, 900 }, + [5] = { 77, 47.7, 8, 900 }, + [6] = { 73, 47.6, 8, 900 }, + [7] = { 81, 44.2, 8, 900 }, + [8] = { 81.3, 42.6, 8, 900 }, + }, + ["lvl"] = "46-47", + ["rnk"] = "1", + }, + [5270] = { + ["coords"] = {}, + ["lvl"] = "49-50", + ["rnk"] = "1", + }, + [5271] = { + ["coords"] = {}, + ["lvl"] = "50-51", + ["rnk"] = "1", + }, + [5272] = { + ["coords"] = { + [1] = { 70.7, 63.8, 357, 300 }, + [2] = { 69.9, 63.6, 357, 300 }, + [3] = { 70.1, 62.9, 357, 300 }, + [4] = { 71.2, 62.7, 357, 300 }, + [5] = { 70, 61.6, 357, 300 }, + [6] = { 71, 61.3, 357, 300 }, + [7] = { 69.8, 61, 357, 300 }, + [8] = { 69.5, 60.8, 357, 300 }, + [9] = { 67.9, 60.6, 357, 300 }, + [10] = { 71.8, 60.1, 357, 300 }, + [11] = { 68.6, 59.4, 357, 300 }, + [12] = { 68.2, 59.1, 357, 300 }, + [13] = { 69.5, 58.5, 357, 300 }, + [14] = { 69.9, 58.4, 357, 300 }, + [15] = { 73.4, 57.9, 357, 300 }, + [16] = { 59.8, 51.2, 357, 300 }, + [17] = { 60.4, 51.1, 357, 300 }, + [18] = { 61.4, 50.9, 357, 300 }, + [19] = { 58.2, 50.7, 357, 300 }, + [20] = { 57.2, 50.1, 357, 300 }, + [21] = { 55, 49.8, 357, 300 }, + [22] = { 56.2, 49.5, 357, 300 }, + [23] = { 53.3, 48.6, 357, 300 }, + [24] = { 57.5, 48.4, 357, 300 }, + [25] = { 51, 48.4, 357, 300 }, + [26] = { 53.7, 48, 357, 300 }, + [27] = { 52.2, 47.9, 357, 300 }, + [28] = { 57, 47.8, 357, 300 }, + [29] = { 50, 47.5, 357, 300 }, + [30] = { 53.2, 47.3, 357, 300 }, + [31] = { 51.5, 46.6, 357, 300 }, + [32] = { 52.6, 46.5, 357, 300 }, + }, + ["lvl"] = "44-45", + }, + [5273] = { + ["coords"] = {}, + ["lvl"] = "50-51", + ["rnk"] = "1", + }, + [5274] = { + ["coords"] = { + [1] = { 48.9, 37.5, 357, 300 }, + [2] = { 49.8, 33.9, 357, 300 }, + [3] = { 49.6, 33.5, 357, 300 }, + [4] = { 49.5, 31.3, 357, 300 }, + [5] = { 50.6, 31.3, 357, 300 }, + [6] = { 49.8, 29.6, 357, 300 }, + [7] = { 49.4, 28.3, 357, 300 }, + [8] = { 49.9, 28.2, 357, 300 }, + [9] = { 50.1, 27.9, 357, 300 }, + [10] = { 46.5, 26, 357, 300 }, + [11] = { 46.7, 25.4, 357, 300 }, + [12] = { 46.1, 25.1, 357, 300 }, + [13] = { 39.6, 25, 357, 300 }, + [14] = { 45.9, 24.2, 357, 300 }, + [15] = { 42.1, 24.1, 357, 300 }, + [16] = { 47.3, 24.1, 357, 300 }, + [17] = { 43.1, 24.1, 357, 300 }, + [18] = { 38.5, 23.1, 357, 300 }, + [19] = { 44.6, 22, 357, 300 }, + [20] = { 39.9, 21.8, 357, 300 }, + [21] = { 44.1, 21.6, 357, 300 }, + [22] = { 42.9, 20.3, 357, 300 }, + [23] = { 40.9, 19.1, 357, 300 }, + [24] = { 41.3, 17.8, 357, 300 }, + [25] = { 41.1, 17.5, 357, 300 }, + [26] = { 44.5, 11.7, 357, 300 }, + [27] = { 43.7, 11.7, 357, 300 }, + [28] = { 43, 9.7, 357, 300 }, + }, + ["lvl"] = "48-49", + }, + [5276] = { + ["coords"] = { + [1] = { 50.7, 33.8, 357, 300 }, + [2] = { 43.3, 22.5, 357, 300 }, + [3] = { 43.5, 22.5, 357, 300 }, + [4] = { 44.3, 22.2, 357, 300 }, + [5] = { 44.4, 9.7, 357, 300 }, + }, + ["lvl"] = "47-50", + }, + [5277] = { + ["coords"] = {}, + ["lvl"] = "50-51", + ["rnk"] = "1", + }, + [5278] = { + ["coords"] = { + [1] = { 68.9, 49.1, 357, 300 }, + [2] = { 68.5, 49.1, 357, 300 }, + [3] = { 64.4, 48.9, 357, 300 }, + [4] = { 68.9, 48.5, 357, 300 }, + [5] = { 64.5, 48.4, 357, 300 }, + [6] = { 69.4, 48.2, 357, 300 }, + [7] = { 67.5, 48.1, 357, 300 }, + [8] = { 66.4, 48.1, 357, 300 }, + [9] = { 68, 48.1, 357, 300 }, + [10] = { 65.1, 47.9, 357, 300 }, + [11] = { 68.5, 47.8, 357, 300 }, + [12] = { 70.3, 47.8, 357, 300 }, + [13] = { 65.4, 47.4, 357, 300 }, + [14] = { 67, 47.2, 357, 300 }, + [15] = { 69.5, 47.1, 357, 300 }, + [16] = { 70, 47, 357, 300 }, + [17] = { 70.1, 46.6, 357, 300 }, + [18] = { 69.1, 46.6, 357, 300 }, + [19] = { 69.2, 46.1, 357, 300 }, + [20] = { 69.4, 44.9, 357, 300 }, + [21] = { 68.4, 44.5, 357, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "43-45", + }, + [5280] = { + ["coords"] = {}, + ["lvl"] = "50-51", + ["rnk"] = "1", + }, + [5283] = { + ["coords"] = {}, + ["lvl"] = "49-50", + ["rnk"] = "1", + }, + [5286] = { + ["coords"] = { + [1] = { 30.7, 52.6, 357, 300 }, + [2] = { 30.9, 51.8, 357, 300 }, + [3] = { 31, 51.5, 357, 300 }, + [4] = { 31, 50.8, 357, 300 }, + [5] = { 31.9, 50.5, 357, 300 }, + [6] = { 30.6, 50.1, 357, 300 }, + [7] = { 30, 49.9, 357, 300 }, + [8] = { 28.7, 49.6, 357, 300 }, + [9] = { 29.2, 49.5, 357, 300 }, + [10] = { 29.8, 49.5, 357, 300 }, + [11] = { 30.8, 49.4, 357, 300 }, + [12] = { 31.5, 49.3, 357, 300 }, + [13] = { 68.7, 48.8, 357, 300 }, + [14] = { 28.2, 48.6, 357, 300 }, + [15] = { 29.7, 48.6, 357, 300 }, + [16] = { 64.5, 48.6, 357, 300 }, + [17] = { 31, 48.5, 357, 300 }, + [18] = { 29.7, 48.4, 357, 300 }, + [19] = { 27.6, 48.3, 357, 300 }, + [20] = { 26.7, 47.4, 357, 300 }, + [21] = { 27.6, 47.3, 357, 300 }, + [22] = { 29.1, 47.2, 357, 300 }, + [23] = { 25.8, 47.2, 357, 300 }, + [24] = { 28.3, 47.1, 357, 300 }, + [25] = { 27.3, 46.7, 357, 300 }, + [26] = { 79.7, 46.6, 357, 300 }, + [27] = { 28.8, 46.6, 357, 300 }, + [28] = { 80.3, 46.6, 357, 300 }, + [29] = { 26.8, 46.5, 357, 300 }, + [30] = { 70.7, 46.4, 357, 300 }, + [31] = { 71.2, 46.3, 357, 300 }, + [32] = { 27.4, 46.2, 357, 300 }, + [33] = { 26.5, 46.1, 357, 300 }, + [34] = { 85.7, 46, 357, 300 }, + [35] = { 83.5, 45.9, 357, 300 }, + [36] = { 80.6, 45.8, 357, 300 }, + [37] = { 84.7, 45.7, 357, 300 }, + [38] = { 28.3, 45.6, 357, 300 }, + [39] = { 72, 45.5, 357, 300 }, + [40] = { 70.7, 45.3, 357, 300 }, + [41] = { 80.1, 45.3, 357, 300 }, + [42] = { 27.1, 45.2, 357, 300 }, + [43] = { 27.4, 45.2, 357, 300 }, + [44] = { 82.1, 45.2, 357, 300 }, + [45] = { 86.6, 45.1, 357, 300 }, + [46] = { 28.7, 45, 357, 300 }, + [47] = { 82.8, 44.8, 357, 300 }, + [48] = { 85.8, 44.7, 357, 300 }, + [49] = { 78.4, 44.7, 357, 300 }, + [50] = { 82.8, 44.3, 357, 300 }, + [51] = { 26.9, 44.1, 357, 300 }, + [52] = { 69.4, 44, 357, 300 }, + [53] = { 70.9, 44, 357, 300 }, + [54] = { 87.7, 43.7, 357, 300 }, + [55] = { 27.3, 43.6, 357, 300 }, + [56] = { 72.4, 43.5, 357, 300 }, + [57] = { 71.1, 43.4, 357, 300 }, + [58] = { 69, 42.9, 357, 300 }, + [59] = { 71.4, 42.8, 357, 300 }, + [60] = { 70, 42.7, 357, 300 }, + [61] = { 87.7, 42.7, 357, 300 }, + [62] = { 68.7, 42.3, 357, 300 }, + [63] = { 71.1, 42.2, 357, 300 }, + [64] = { 86.5, 42, 357, 300 }, + [65] = { 71.7, 41.4, 357, 300 }, + [66] = { 77.8, 41.1, 357, 300 }, + [67] = { 86.7, 40.6, 357, 300 }, + [68] = { 85, 40.4, 357, 300 }, + [69] = { 70.8, 40.3, 357, 300 }, + [70] = { 89.2, 40.2, 357, 300 }, + [71] = { 79.6, 40.2, 357, 300 }, + [72] = { 74.4, 40.1, 357, 300 }, + [73] = { 76.7, 40, 357, 300 }, + [74] = { 77.4, 39.8, 357, 300 }, + [75] = { 86.9, 39.7, 357, 300 }, + [76] = { 88.9, 39.2, 357, 300 }, + [77] = { 80.6, 39.2, 357, 300 }, + [78] = { 74.2, 39.1, 357, 300 }, + [79] = { 81.2, 39, 357, 300 }, + [80] = { 76.9, 38.9, 357, 300 }, + [81] = { 76.2, 38.7, 357, 300 }, + [82] = { 82.8, 38.7, 357, 300 }, + [83] = { 75.5, 38.6, 357, 300 }, + [84] = { 84.7, 38.5, 357, 300 }, + [85] = { 88.2, 38.4, 357, 300 }, + [86] = { 86.2, 38.4, 357, 300 }, + [87] = { 79.9, 38.2, 357, 300 }, + [88] = { 84.8, 38.1, 357, 300 }, + [89] = { 78.3, 37.9, 357, 300 }, + [90] = { 86.8, 37.8, 357, 300 }, + [91] = { 78.7, 37.8, 357, 300 }, + [92] = { 79.3, 37.7, 357, 300 }, + [93] = { 85.9, 37.6, 357, 300 }, + [94] = { 88.5, 37.5, 357, 300 }, + [95] = { 75.7, 37.1, 357, 300 }, + [96] = { 74.9, 36.3, 357, 300 }, + [97] = { 70.8, 36.2, 357, 300 }, + [98] = { 5.1, 14.5, 400, 300 }, + [99] = { 5, 12.9, 400, 300 }, + [100] = { 7.4, 8.9, 400, 300 }, + [101] = { 7, 7.4, 400, 300 }, + [102] = { 70.4, 42.1, 357, 300 }, + [103] = { 77.6, 38.5, 357, 300 }, + }, + ["lvl"] = "40-41", + }, + [5287] = { + ["coords"] = { + [1] = { 69.6, 63.5, 357, 300 }, + [2] = { 71.5, 62.1, 357, 300 }, + [3] = { 69.7, 61.8, 357, 300 }, + [4] = { 69.4, 61.6, 357, 300 }, + [5] = { 71.8, 61.1, 357, 300 }, + [6] = { 68.8, 61.1, 357, 300 }, + [7] = { 70.9, 60.7, 357, 300 }, + [8] = { 68.9, 60.3, 357, 300 }, + [9] = { 71.3, 60.1, 357, 300 }, + [10] = { 70.2, 59.7, 357, 300 }, + [11] = { 72.3, 59.4, 357, 300 }, + [12] = { 70, 59.2, 357, 300 }, + [13] = { 71.7, 58.8, 357, 300 }, + [14] = { 74.5, 58.8, 357, 300 }, + [15] = { 70.6, 58.7, 357, 300 }, + [16] = { 68, 58.5, 357, 300 }, + [17] = { 73.9, 54.3, 357, 300 }, + [18] = { 73.9, 52.8, 357, 300 }, + [19] = { 59, 51.4, 357, 300 }, + [20] = { 61.9, 51.1, 357, 300 }, + [21] = { 60.9, 51.1, 357, 300 }, + [22] = { 68.5, 50.6, 357, 300 }, + [23] = { 57.4, 50.5, 357, 300 }, + [24] = { 60.8, 50, 357, 300 }, + [25] = { 52.8, 49.5, 357, 300 }, + [26] = { 54.4, 49.1, 357, 300 }, + [27] = { 55.4, 49.1, 357, 300 }, + [28] = { 57.3, 48.9, 357, 300 }, + [29] = { 54.2, 48.8, 357, 300 }, + [30] = { 53.5, 48.7, 357, 300 }, + [31] = { 50.8, 48, 357, 300 }, + [32] = { 52.2, 47.4, 357, 300 }, + [33] = { 53.9, 47.3, 357, 300 }, + [34] = { 51.5, 47.3, 357, 300 }, + [35] = { 56.9, 47, 357, 300 }, + [36] = { 51.6, 46.9, 357, 300 }, + [37] = { 56.1, 46.6, 357, 300 }, + [38] = { 52.3, 45.9, 357, 300 }, + }, + ["lvl"] = "43-44", + }, + [5288] = { + ["coords"] = { + [1] = { 48.8, 37.1, 357, 300 }, + [2] = { 50.6, 33.5, 357, 300 }, + [3] = { 49.1, 32.2, 357, 300 }, + [4] = { 49.5, 30.6, 357, 300 }, + [5] = { 46.6, 29.5, 357, 300 }, + [6] = { 49, 26.6, 357, 300 }, + [7] = { 42.7, 26, 357, 300 }, + [8] = { 45, 24, 357, 300 }, + [9] = { 42.6, 23.4, 357, 300 }, + [10] = { 39.5, 23.2, 357, 300 }, + [11] = { 43.7, 22.9, 357, 300 }, + [12] = { 39.8, 22.8, 357, 300 }, + [13] = { 45.8, 21.9, 357, 300 }, + [14] = { 38.3, 21.8, 357, 300 }, + [15] = { 43.1, 21.1, 357, 300 }, + [16] = { 41.7, 20.4, 357, 300 }, + [17] = { 43.6, 20.2, 357, 300 }, + [18] = { 42, 19.9, 357, 300 }, + [19] = { 39.6, 19.6, 357, 300 }, + [20] = { 40.4, 18.7, 357, 300 }, + [21] = { 40.4, 18, 357, 300 }, + [22] = { 41.5, 15.3, 357, 300 }, + [23] = { 44.5, 13.3, 357, 300 }, + [24] = { 44.1, 12.9, 357, 300 }, + [25] = { 43.3, 12.6, 357, 300 }, + [26] = { 44.4, 11, 357, 300 }, + [27] = { 44.5, 9.1, 357, 300 }, + }, + ["lvl"] = "47-48", + }, + [5291] = { + ["coords"] = {}, + ["lvl"] = "49-50", + ["rnk"] = "1", + }, + [5292] = { + ["coords"] = { + [1] = { 55.9, 58.8, 357, 300 }, + [2] = { 52.3, 58, 357, 300 }, + [3] = { 52.5, 57.6, 357, 300 }, + [4] = { 52.7, 57.2, 357, 300 }, + [5] = { 55.5, 57.2, 357, 300 }, + [6] = { 56, 57.2, 357, 300 }, + [7] = { 52.8, 57, 357, 300 }, + [8] = { 56.5, 56.5, 357, 300 }, + [9] = { 56, 56.5, 357, 300 }, + [10] = { 55.5, 56.4, 357, 300 }, + [11] = { 53.1, 56.4, 357, 300 }, + [12] = { 55, 56.3, 357, 300 }, + [13] = { 54.6, 56.1, 357, 300 }, + [14] = { 55.5, 55.7, 357, 300 }, + [15] = { 54.3, 55.7, 357, 300 }, + [16] = { 55.5, 55, 357, 300 }, + }, + ["lvl"] = "43-44", + }, + [5293] = { + ["coords"] = { + [1] = { 52.3, 61.1, 357, 300 }, + [2] = { 51.9, 60.8, 357, 300 }, + [3] = { 52.6, 60.5, 357, 300 }, + [4] = { 51.3, 60.2, 357, 300 }, + [5] = { 52.2, 60.1, 357, 300 }, + [6] = { 53.1, 60, 357, 300 }, + [7] = { 52.7, 59.6, 357, 300 }, + [8] = { 50.5, 59, 357, 300 }, + [9] = { 50.4, 58.8, 357, 300 }, + [10] = { 51.9, 58.6, 357, 300 }, + [11] = { 50.6, 58.2, 357, 300 }, + [12] = { 51.8, 57.2, 357, 300 }, + }, + ["lvl"] = "45-46", + }, + [5295] = { + ["coords"] = { + [1] = { 51, 59.8, 357, 300 }, + [2] = { 51.9, 59.8, 357, 300 }, + [3] = { 51.7, 59.3, 357, 300 }, + [4] = { 50.8, 59.3, 357, 300 }, + [5] = { 52.5, 59.2, 357, 300 }, + [6] = { 51.9, 58.6, 357, 300 }, + [7] = { 52.3, 58.5, 357, 300 }, + [8] = { 51.1, 58.3, 357, 300 }, + [9] = { 51.5, 58, 357, 300 }, + [10] = { 51.9, 57.9, 357, 300 }, + [11] = { 53.1, 56.1, 357, 300 }, + [12] = { 53.5, 55.2, 357, 300 }, + }, + ["lvl"] = "44-45", + }, + [5296] = { + ["coords"] = { + [1] = { 54.4, 33.1, 357, 300 }, + [2] = { 54.8, 33.1, 357, 300 }, + [3] = { 55, 32.5, 357, 300 }, + [4] = { 54.5, 32.5, 357, 300 }, + [5] = { 53.3, 31.8, 357, 300 }, + [6] = { 52.5, 31.7, 357, 300 }, + [7] = { 52.1, 31.5, 357, 300 }, + [8] = { 51.8, 30.7, 357, 300 }, + [9] = { 52.9, 30.4, 357, 300 }, + [10] = { 52.4, 29.7, 357, 300 }, + }, + ["lvl"] = "46-47", + }, + [5297] = { + ["coords"] = { + [1] = { 54.5, 33.9, 357, 300 }, + [2] = { 54.9, 33.5, 357, 300 }, + [3] = { 55.2, 33.3, 357, 300 }, + [4] = { 55.8, 33.2, 357, 300 }, + [5] = { 55.7, 33, 357, 300 }, + [6] = { 55.4, 32.9, 357, 300 }, + [7] = { 54.1, 32.5, 357, 300 }, + [8] = { 55, 32.5, 357, 300 }, + }, + ["lvl"] = "48-49", + }, + [5299] = { + ["coords"] = { + [1] = { 54.6, 32, 357, 300 }, + [2] = { 53.8, 32, 357, 300 }, + [3] = { 52.5, 31.8, 357, 300 }, + [4] = { 52.9, 31.7, 357, 300 }, + [5] = { 51.8, 31.6, 357, 300 }, + [6] = { 52.3, 31.1, 357, 300 }, + [7] = { 53.2, 30.4, 357, 300 }, + [8] = { 52.7, 30, 357, 300 }, + [9] = { 52.2, 29.6, 357, 300 }, + [10] = { 54.5, 33.9, 357, 300 }, + [11] = { 55.2, 33.3, 357, 300 }, + [12] = { 55.8, 33.2, 357, 300 }, + [13] = { 54.1, 32.5, 357, 300 }, + [14] = { 55, 32.5, 357, 300 }, + [15] = { 54.5, 32.5, 357, 300 }, + [16] = { 52.1, 31.5, 357, 300 }, + }, + ["lvl"] = "47-48", + }, + [5300] = { + ["coords"] = { + [1] = { 55.3, 64.8, 357, 300 }, + [2] = { 56.9, 64, 357, 300 }, + [3] = { 56.2, 63.7, 357, 300 }, + [4] = { 55.6, 63.2, 357, 300 }, + [5] = { 57.9, 62.9, 357, 300 }, + [6] = { 55.7, 62.8, 357, 300 }, + [7] = { 56.5, 62.3, 357, 300 }, + [8] = { 57, 62.2, 357, 300 }, + [9] = { 55.5, 62.2, 357, 300 }, + [10] = { 55.9, 61.7, 357, 300 }, + [11] = { 55, 61.5, 357, 300 }, + [12] = { 55.3, 61.1, 357, 300 }, + [13] = { 54.9, 60.8, 357, 300 }, + }, + ["lvl"] = "43-44", + }, + [5304] = { + ["coords"] = { + [1] = { 57.8, 74.4, 357, 300 }, + [2] = { 55.5, 71.5, 357, 300 }, + [3] = { 53.9, 70.4, 357, 300 }, + [4] = { 54.1, 68.7, 357, 300 }, + [5] = { 55.6, 68.3, 357, 300 }, + [6] = { 53.6, 68, 357, 300 }, + [7] = { 54.6, 68, 357, 300 }, + [8] = { 53.6, 67, 357, 300 }, + [9] = { 55.5, 66.5, 357, 300 }, + [10] = { 54.3, 66.2, 357, 300 }, + [11] = { 56, 66, 357, 300 }, + [12] = { 55.1, 65.8, 357, 300 }, + [13] = { 57, 65.8, 357, 300 }, + [14] = { 53.8, 65.3, 357, 300 }, + [15] = { 55.5, 65.2, 357, 300 }, + [16] = { 54.5, 65.1, 357, 300 }, + [17] = { 55, 64.4, 357, 300 }, + [18] = { 56.2, 63.7, 357, 300 }, + [19] = { 56, 63.6, 357, 300 }, + }, + ["lvl"] = "44-45", + }, + [5305] = { + ["coords"] = { + [1] = { 55, 74.4, 357, 300 }, + [2] = { 55.9, 74.2, 357, 300 }, + [3] = { 57.4, 74, 357, 300 }, + [4] = { 58.9, 73.8, 357, 300 }, + [5] = { 54.6, 73.7, 357, 300 }, + [6] = { 55.4, 73.4, 357, 300 }, + [7] = { 56.3, 73.4, 357, 300 }, + [8] = { 56, 73.3, 357, 300 }, + [9] = { 55.2, 73.1, 357, 300 }, + [10] = { 53.9, 73, 357, 300 }, + [11] = { 54.9, 72, 357, 300 }, + [12] = { 56.1, 71.9, 357, 300 }, + [13] = { 54.1, 71.7, 357, 300 }, + [14] = { 54.5, 71.3, 357, 300 }, + [15] = { 55.6, 71, 357, 300 }, + [16] = { 55.2, 70.6, 357, 300 }, + [17] = { 54.1, 70.2, 357, 300 }, + [18] = { 55.8, 69.9, 357, 300 }, + [19] = { 55.7, 69.6, 357, 300 }, + [20] = { 53.4, 69.6, 357, 300 }, + [21] = { 55, 69.3, 357, 300 }, + [22] = { 54.1, 67.6, 357, 300 }, + [23] = { 55.4, 67.2, 357, 300 }, + [24] = { 53.8, 64.4, 357, 300 }, + }, + ["lvl"] = "45-46", + }, + [5306] = { + ["coords"] = { + [1] = { 54.6, 75.4, 357, 300 }, + [2] = { 55.6, 75.2, 357, 300 }, + [3] = { 56.9, 74.6, 357, 300 }, + [4] = { 58.1, 74.5, 357, 300 }, + [5] = { 53.7, 72.4, 357, 300 }, + [6] = { 55.6, 72.1, 357, 300 }, + [7] = { 55, 72, 357, 300 }, + [8] = { 53.6, 70.9, 357, 300 }, + }, + ["lvl"] = "46-47", + }, + [5307] = { + ["coords"] = { + [1] = { 59.8, 61.8, 357, 300 }, + [2] = { 57.6, 59.4, 357, 300 }, + [3] = { 58.2, 57.8, 357, 300 }, + [4] = { 57.1, 54.8, 357, 300 }, + }, + ["lvl"] = "41-43", + }, + [5308] = { + ["coords"] = { + [1] = { 47.9, 59.2, 357, 300 }, + [2] = { 47.9, 55.7, 357, 300 }, + [3] = { 59, 51.1, 357, 300 }, + [4] = { 46.1, 50, 357, 300 }, + [5] = { 49.4, 49.9, 357, 300 }, + [6] = { 60.8, 49.8, 357, 300 }, + [7] = { 45.9, 49.2, 357, 300 }, + [8] = { 52.3, 49.2, 357, 300 }, + [9] = { 46.8, 48.5, 357, 300 }, + [10] = { 56.9, 48.1, 357, 300 }, + [11] = { 46.6, 47.6, 357, 300 }, + [12] = { 55.7, 47, 357, 300 }, + [13] = { 53.2, 46.8, 357, 300 }, + [14] = { 46.5, 40.7, 357, 300 }, + [15] = { 46.4, 39.3, 357, 300 }, + [16] = { 46, 37.7, 357, 300 }, + [17] = { 43.1, 36.9, 357, 300 }, + [18] = { 44, 36.4, 357, 300 }, + [19] = { 42, 36.3, 357, 300 }, + [20] = { 44.8, 36.1, 357, 300 }, + }, + ["lvl"] = "44-46", + }, + [5312] = { + ["coords"] = { + [1] = { 50.4, 12.1, 357, 600 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [5314] = { + ["coords"] = { + [1] = { 92.8, 38.7, 331, 5400 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [5315] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [5317] = { + ["coords"] = { + [1] = { 51, 18.1, 357, 1800 }, + [2] = { 50.9, 18, 357, 1800 }, + [3] = { 54, 16.5, 357, 1800 }, + [4] = { 53.9, 16.5, 357, 1800 }, + [5] = { 52.7, 16.4, 357, 1800 }, + [6] = { 50.3, 16.4, 357, 1800 }, + [7] = { 53.8, 16.3, 357, 1800 }, + [8] = { 51.2, 16.3, 357, 1800 }, + [9] = { 52.7, 16.3, 357, 1800 }, + [10] = { 51.2, 16.2, 357, 1800 }, + [11] = { 52.5, 16.2, 357, 1800 }, + [12] = { 50.2, 16.1, 357, 1800 }, + [13] = { 49.1, 16, 357, 1800 }, + [14] = { 51.3, 16, 357, 1800 }, + [15] = { 50.4, 15.9, 357, 1800 }, + [16] = { 49.2, 15.8, 357, 1800 }, + [17] = { 48.9, 15.7, 357, 1800 }, + [18] = { 53.6, 14.9, 357, 1800 }, + [19] = { 53.5, 14.8, 357, 1800 }, + [20] = { 53.6, 14.8, 357, 1800 }, + [21] = { 47.9, 13.9, 357, 1800 }, + [22] = { 48.4, 12.4, 357, 1800 }, + [23] = { 51.8, 12, 357, 1800 }, + [24] = { 51.6, 12, 357, 1800 }, + [25] = { 51.6, 11.8, 357, 1800 }, + [26] = { 50.6, 10.6, 357, 1800 }, + [27] = { 53.9, 10.5, 357, 1800 }, + [28] = { 54, 10.5, 357, 1800 }, + [29] = { 48.3, 10.5, 357, 1800 }, + [30] = { 52.5, 10.5, 357, 1800 }, + [31] = { 48.3, 10.4, 357, 1800 }, + [32] = { 52.7, 10.4, 357, 1800 }, + [33] = { 50.5, 10.3, 357, 1800 }, + [34] = { 52.6, 10.3, 357, 1800 }, + [35] = { 48.5, 10.2, 357, 1800 }, + [36] = { 54.4, 10.2, 357, 1800 }, + [37] = { 50.7, 10.1, 357, 1800 }, + [38] = { 52.6, 9, 357, 1800 }, + [39] = { 52.8, 9, 357, 1800 }, + [40] = { 48.4, 8, 357, 1800 }, + [41] = { 51.4, 7.8, 357, 1800 }, + [42] = { 48.3, 7.7, 357, 1800 }, + [43] = { 50.6, 7.6, 357, 1800 }, + [44] = { 50.7, 7.6, 357, 1800 }, + [45] = { 51.7, 7.6, 357, 1800 }, + [46] = { 50.8, 7.6, 357, 1800 }, + [47] = { 51.6, 7.5, 357, 1800 }, + [48] = { 48.5, 7.5, 357, 1800 }, + [49] = { 50.4, 7.1, 357, 1800 }, + [50] = { 50.2, 6.9, 357, 1800 }, + [51] = { 50.1, 6.8, 357, 1800 }, + [52] = { 52.6, 5.7, 357, 1800 }, + [53] = { 52.6, 5.6, 357, 1800 }, + [54] = { 52.5, 5.5, 357, 1800 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [5319] = { + ["coords"] = { + [1] = { 51, 18.1, 357, 1800 }, + [2] = { 50.9, 18, 357, 1800 }, + [3] = { 54, 16.5, 357, 1800 }, + [4] = { 53.9, 16.5, 357, 1800 }, + [5] = { 52.7, 16.4, 357, 1800 }, + [6] = { 50.3, 16.4, 357, 1800 }, + [7] = { 53.8, 16.3, 357, 1800 }, + [8] = { 51.2, 16.3, 357, 1800 }, + [9] = { 52.7, 16.3, 357, 1800 }, + [10] = { 51.2, 16.2, 357, 1800 }, + [11] = { 52.5, 16.2, 357, 1800 }, + [12] = { 50.2, 16.1, 357, 1800 }, + [13] = { 49.1, 16, 357, 1800 }, + [14] = { 51.3, 16, 357, 1800 }, + [15] = { 50.4, 15.9, 357, 1800 }, + [16] = { 49.2, 15.8, 357, 1800 }, + [17] = { 48.9, 15.7, 357, 1800 }, + [18] = { 53.6, 14.9, 357, 1800 }, + [19] = { 53.5, 14.8, 357, 1800 }, + [20] = { 53.6, 14.8, 357, 1800 }, + [21] = { 47.9, 13.9, 357, 1800 }, + [22] = { 48.4, 12.4, 357, 1800 }, + [23] = { 51.8, 12, 357, 1800 }, + [24] = { 51.6, 12, 357, 1800 }, + [25] = { 51.6, 11.8, 357, 1800 }, + [26] = { 50.6, 10.6, 357, 1800 }, + [27] = { 53.9, 10.5, 357, 1800 }, + [28] = { 54, 10.5, 357, 1800 }, + [29] = { 48.3, 10.5, 357, 1800 }, + [30] = { 52.5, 10.5, 357, 1800 }, + [31] = { 48.3, 10.4, 357, 1800 }, + [32] = { 52.7, 10.4, 357, 1800 }, + [33] = { 50.5, 10.3, 357, 1800 }, + [34] = { 52.6, 10.3, 357, 1800 }, + [35] = { 48.5, 10.2, 357, 1800 }, + [36] = { 54.4, 10.2, 357, 1800 }, + [37] = { 50.7, 10.1, 357, 1800 }, + [38] = { 52.6, 9, 357, 1800 }, + [39] = { 52.8, 9, 357, 1800 }, + [40] = { 48.4, 8, 357, 1800 }, + [41] = { 51.4, 7.8, 357, 1800 }, + [42] = { 48.3, 7.7, 357, 1800 }, + [43] = { 50.6, 7.6, 357, 1800 }, + [44] = { 50.7, 7.6, 357, 1800 }, + [45] = { 51.7, 7.6, 357, 1800 }, + [46] = { 50.8, 7.6, 357, 1800 }, + [47] = { 51.6, 7.5, 357, 1800 }, + [48] = { 48.5, 7.5, 357, 1800 }, + [49] = { 50.4, 7.1, 357, 1800 }, + [50] = { 50.2, 6.9, 357, 1800 }, + [51] = { 50.1, 6.8, 357, 1800 }, + [52] = { 52.6, 5.7, 357, 1800 }, + [53] = { 52.6, 5.6, 357, 1800 }, + [54] = { 52.5, 5.5, 357, 1800 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [5320] = { + ["coords"] = { + [1] = { 51, 18.1, 357, 1800 }, + [2] = { 50.9, 18, 357, 1800 }, + [3] = { 54, 16.5, 357, 1800 }, + [4] = { 53.9, 16.5, 357, 1800 }, + [5] = { 52.7, 16.4, 357, 1800 }, + [6] = { 50.3, 16.4, 357, 1800 }, + [7] = { 53.8, 16.3, 357, 1800 }, + [8] = { 51.2, 16.3, 357, 1800 }, + [9] = { 52.7, 16.3, 357, 1800 }, + [10] = { 51.2, 16.2, 357, 1800 }, + [11] = { 52.5, 16.2, 357, 1800 }, + [12] = { 50.2, 16.1, 357, 1800 }, + [13] = { 49.1, 16, 357, 1800 }, + [14] = { 51.3, 16, 357, 1800 }, + [15] = { 50.4, 15.9, 357, 1800 }, + [16] = { 49.2, 15.8, 357, 1800 }, + [17] = { 48.9, 15.7, 357, 1800 }, + [18] = { 53.6, 14.9, 357, 1800 }, + [19] = { 53.5, 14.8, 357, 1800 }, + [20] = { 53.6, 14.8, 357, 1800 }, + [21] = { 47.9, 13.9, 357, 1800 }, + [22] = { 48.4, 12.4, 357, 1800 }, + [23] = { 51.8, 12, 357, 1800 }, + [24] = { 51.6, 12, 357, 1800 }, + [25] = { 51.6, 11.8, 357, 1800 }, + [26] = { 50.6, 10.6, 357, 1800 }, + [27] = { 53.9, 10.5, 357, 1800 }, + [28] = { 54, 10.5, 357, 1800 }, + [29] = { 48.3, 10.5, 357, 1800 }, + [30] = { 52.5, 10.5, 357, 1800 }, + [31] = { 48.3, 10.4, 357, 1800 }, + [32] = { 52.7, 10.4, 357, 1800 }, + [33] = { 50.5, 10.3, 357, 1800 }, + [34] = { 52.6, 10.3, 357, 1800 }, + [35] = { 48.5, 10.2, 357, 1800 }, + [36] = { 54.4, 10.2, 357, 1800 }, + [37] = { 50.7, 10.1, 357, 1800 }, + [38] = { 52.6, 9, 357, 1800 }, + [39] = { 52.8, 9, 357, 1800 }, + [40] = { 48.4, 8, 357, 1800 }, + [41] = { 51.4, 7.8, 357, 1800 }, + [42] = { 48.3, 7.7, 357, 1800 }, + [43] = { 50.6, 7.6, 357, 1800 }, + [44] = { 50.7, 7.6, 357, 1800 }, + [45] = { 51.7, 7.6, 357, 1800 }, + [46] = { 50.8, 7.6, 357, 1800 }, + [47] = { 51.6, 7.5, 357, 1800 }, + [48] = { 48.5, 7.5, 357, 1800 }, + [49] = { 50.4, 7.1, 357, 1800 }, + [50] = { 50.2, 6.9, 357, 1800 }, + [51] = { 50.1, 6.8, 357, 1800 }, + [52] = { 52.6, 5.7, 357, 1800 }, + [53] = { 52.6, 5.6, 357, 1800 }, + [54] = { 52.5, 5.5, 357, 1800 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [5326] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [5327] = { + ["coords"] = { + [1] = { 28.1, 59.4, 357, 300 }, + [2] = { 26, 59.2, 357, 300 }, + [3] = { 34, 56.3, 357, 300 }, + [4] = { 35.4, 52.2, 357, 300 }, + [5] = { 35.9, 51.6, 357, 300 }, + [6] = { 37.2, 50, 357, 300 }, + [7] = { 36, 48.6, 357, 300 }, + [8] = { 39.6, 48.4, 357, 300 }, + [9] = { 37.9, 45.8, 357, 300 }, + [10] = { 39.7, 45.2, 357, 300 }, + [11] = { 36.8, 44.1, 357, 300 }, + [12] = { 37.7, 42.2, 357, 300 }, + [13] = { 36.8, 41.9, 357, 300 }, + [14] = { 33.2, 32.1, 357, 300 }, + }, + ["lvl"] = "44-45", + }, + [5328] = { + ["coords"] = { + [1] = { 31.2, 61, 357, 300 }, + [2] = { 27.3, 60.8, 357, 300 }, + [3] = { 32.1, 59, 357, 300 }, + [4] = { 23.7, 55.5, 357, 300 }, + [5] = { 35.9, 53, 357, 300 }, + [6] = { 36.8, 52.1, 357, 300 }, + [7] = { 23.8, 49.2, 357, 300 }, + [8] = { 37.6, 48.7, 357, 300 }, + [9] = { 38.5, 47.1, 357, 300 }, + [10] = { 40.5, 46.9, 357, 300 }, + [11] = { 24.8, 44.8, 357, 300 }, + [12] = { 38.7, 44.4, 357, 300 }, + [13] = { 36.3, 42.9, 357, 300 }, + [14] = { 39.7, 42.7, 357, 300 }, + [15] = { 33.8, 34.9, 357, 300 }, + [16] = { 32.8, 33.6, 357, 300 }, + [17] = { 32.5, 29.9, 357, 300 }, + }, + ["lvl"] = "43-44", + }, + [5331] = { + ["coords"] = { + [1] = { 29.7, 57.5, 357, 300 }, + [2] = { 28.6, 57.4, 357, 300 }, + [3] = { 27.6, 57.2, 357, 300 }, + [4] = { 33, 57.2, 357, 300 }, + [5] = { 31.5, 57.2, 357, 300 }, + [6] = { 31.1, 57, 357, 300 }, + [7] = { 30.1, 56.7, 357, 300 }, + [8] = { 26.7, 56.6, 357, 300 }, + [9] = { 32.3, 56.4, 357, 300 }, + [10] = { 33.3, 56.4, 357, 300 }, + [11] = { 29.3, 56.3, 357, 300 }, + [12] = { 32.5, 55.9, 357, 300 }, + [13] = { 25.8, 55.8, 357, 300 }, + [14] = { 25.3, 55.3, 357, 300 }, + [15] = { 29.6, 55.2, 357, 300 }, + [16] = { 26.3, 55.1, 357, 300 }, + [17] = { 27.7, 55.1, 357, 300 }, + [18] = { 32.9, 55.1, 357, 300 }, + [19] = { 29.1, 55.1, 357, 300 }, + [20] = { 27.3, 54.9, 357, 300 }, + [21] = { 33.6, 54.6, 357, 300 }, + [22] = { 27.8, 54.5, 357, 300 }, + [23] = { 29.2, 54.4, 357, 300 }, + [24] = { 28.7, 54.3, 357, 300 }, + [25] = { 26.7, 54.3, 357, 300 }, + [26] = { 25.3, 54.3, 357, 300 }, + [27] = { 30.3, 54.3, 357, 300 }, + [28] = { 27.1, 54, 357, 300 }, + [29] = { 26.1, 54, 357, 300 }, + [30] = { 27.1, 53.7, 357, 300 }, + [31] = { 29.1, 53.7, 357, 300 }, + [32] = { 27.7, 53.7, 357, 300 }, + [33] = { 29.6, 53.6, 357, 300 }, + [34] = { 26.3, 53.6, 357, 300 }, + [35] = { 25.6, 53.2, 357, 300 }, + [36] = { 28.5, 53, 357, 300 }, + [37] = { 29.6, 53, 357, 300 }, + [38] = { 33.1, 53, 357, 300 }, + [39] = { 26.7, 52.8, 357, 300 }, + [40] = { 27.6, 52.8, 357, 300 }, + [41] = { 28.6, 52.8, 357, 300 }, + [42] = { 26.7, 52.1, 357, 300 }, + [43] = { 28, 52, 357, 300 }, + [44] = { 29.1, 51.6, 357, 300 }, + [45] = { 28.7, 51.5, 357, 300 }, + [46] = { 33.5, 51.5, 357, 300 }, + [47] = { 28.8, 50.8, 357, 300 }, + [48] = { 28.5, 50.7, 357, 300 }, + [49] = { 26.7, 50.6, 357, 300 }, + [50] = { 25.4, 50.2, 357, 300 }, + [51] = { 33.2, 50, 357, 300 }, + [52] = { 25.5, 49.5, 357, 300 }, + }, + ["lvl"] = "42-43", + }, + [5332] = { + ["coords"] = { + [1] = { 29.7, 57.5, 357, 300 }, + [2] = { 28.6, 57.4, 357, 300 }, + [3] = { 27.6, 57.2, 357, 300 }, + [4] = { 33, 57.2, 357, 300 }, + [5] = { 31.5, 57.2, 357, 300 }, + [6] = { 31.1, 57, 357, 300 }, + [7] = { 30.1, 56.7, 357, 300 }, + [8] = { 26.7, 56.6, 357, 300 }, + [9] = { 32.3, 56.4, 357, 300 }, + [10] = { 33.3, 56.4, 357, 300 }, + [11] = { 29.3, 56.3, 357, 300 }, + [12] = { 32.5, 55.9, 357, 300 }, + [13] = { 25.8, 55.8, 357, 300 }, + [14] = { 25.3, 55.3, 357, 300 }, + [15] = { 29.6, 55.2, 357, 300 }, + [16] = { 26.3, 55.1, 357, 300 }, + [17] = { 27.7, 55.1, 357, 300 }, + [18] = { 32.9, 55.1, 357, 300 }, + [19] = { 29.1, 55.1, 357, 300 }, + [20] = { 27.3, 54.9, 357, 300 }, + [21] = { 33.6, 54.6, 357, 300 }, + [22] = { 27.8, 54.5, 357, 300 }, + [23] = { 29.2, 54.4, 357, 300 }, + [24] = { 28.7, 54.3, 357, 300 }, + [25] = { 26.7, 54.3, 357, 300 }, + [26] = { 25.3, 54.3, 357, 300 }, + [27] = { 30.3, 54.3, 357, 300 }, + [28] = { 27.1, 54, 357, 300 }, + [29] = { 26.1, 54, 357, 300 }, + [30] = { 27.1, 53.7, 357, 300 }, + [31] = { 29.1, 53.7, 357, 300 }, + [32] = { 27.7, 53.7, 357, 300 }, + [33] = { 29.6, 53.6, 357, 300 }, + [34] = { 26.3, 53.6, 357, 300 }, + [35] = { 25.6, 53.2, 357, 300 }, + [36] = { 28.5, 53, 357, 300 }, + [37] = { 29.6, 53, 357, 300 }, + [38] = { 33.1, 53, 357, 300 }, + [39] = { 26.7, 52.8, 357, 300 }, + [40] = { 27.6, 52.8, 357, 300 }, + [41] = { 28.6, 52.8, 357, 300 }, + [42] = { 26.7, 52.1, 357, 300 }, + [43] = { 28, 52, 357, 300 }, + [44] = { 29.1, 51.6, 357, 300 }, + [45] = { 28.7, 51.5, 357, 300 }, + [46] = { 33.5, 51.5, 357, 300 }, + [47] = { 28.8, 50.8, 357, 300 }, + [48] = { 28.5, 50.7, 357, 300 }, + [49] = { 26.7, 50.6, 357, 300 }, + [50] = { 25.4, 50.2, 357, 300 }, + [51] = { 33.2, 50, 357, 300 }, + [52] = { 25.5, 49.5, 357, 300 }, + }, + ["lvl"] = "41-42", + }, + [5333] = { + ["coords"] = { + [1] = { 25.2, 72.7, 357, 300 }, + [2] = { 24.8, 72.6, 357, 300 }, + [3] = { 26.1, 72, 357, 300 }, + [4] = { 25.9, 71.7, 357, 300 }, + [5] = { 27.8, 70.8, 357, 300 }, + [6] = { 28.4, 70.6, 357, 300 }, + [7] = { 28.1, 70.6, 357, 300 }, + [8] = { 28.6, 70.4, 357, 300 }, + [9] = { 27.2, 70.4, 357, 300 }, + [10] = { 27.5, 70.3, 357, 300 }, + [11] = { 28.4, 70.3, 357, 300 }, + [12] = { 27.9, 69.9, 357, 300 }, + [13] = { 27.4, 69.8, 357, 300 }, + [14] = { 26.8, 69.5, 357, 300 }, + [15] = { 27.1, 69.5, 357, 300 }, + [16] = { 28.1, 69.5, 357, 300 }, + [17] = { 27.5, 69.4, 357, 300 }, + [18] = { 26.9, 69.1, 357, 300 }, + [19] = { 27.8, 69.1, 357, 300 }, + [20] = { 27.4, 69.1, 357, 300 }, + [21] = { 27.2, 69, 357, 300 }, + [22] = { 26.7, 69, 357, 300 }, + [23] = { 28, 68.8, 357, 300 }, + [24] = { 26.1, 68.7, 357, 300 }, + [25] = { 26.4, 68.6, 357, 300 }, + [26] = { 27.6, 68.6, 357, 300 }, + [27] = { 26.7, 68.5, 357, 300 }, + [28] = { 27.8, 68.4, 357, 300 }, + [29] = { 27, 68.4, 357, 300 }, + [30] = { 27.3, 68.4, 357, 300 }, + [31] = { 27, 68.3, 357, 300 }, + [32] = { 26.4, 68.2, 357, 300 }, + [33] = { 27.1, 68.1, 357, 300 }, + [34] = { 27.4, 68.1, 357, 300 }, + [35] = { 27.3, 68, 357, 300 }, + [36] = { 28.3, 68, 357, 300 }, + [37] = { 27.4, 67.9, 357, 300 }, + [38] = { 26.3, 67.7, 357, 300 }, + [39] = { 26.1, 67.4, 357, 300 }, + [40] = { 25.8, 67, 357, 300 }, + [41] = { 25.7, 66.4, 357, 300 }, + [42] = { 25.4, 66, 357, 300 }, + [43] = { 25.4, 63, 357, 300 }, + }, + ["lvl"] = "44-45", + }, + [5334] = { + ["coords"] = { + [1] = { 24.7, 67, 357, 300 }, + [2] = { 24.3, 65.4, 357, 300 }, + [3] = { 26.6, 65.1, 357, 300 }, + [4] = { 25.5, 64.4, 357, 300 }, + [5] = { 23.3, 64.3, 357, 300 }, + [6] = { 27.2, 64.3, 357, 300 }, + [7] = { 24.1, 64, 357, 300 }, + [8] = { 25.3, 63.7, 357, 300 }, + [9] = { 26.7, 63.7, 357, 300 }, + [10] = { 25.8, 63.7, 357, 300 }, + [11] = { 24.9, 63.4, 357, 300 }, + [12] = { 27.2, 62.9, 357, 300 }, + [13] = { 24.4, 62.8, 357, 300 }, + [14] = { 25.2, 62.8, 357, 300 }, + [15] = { 26.1, 62.7, 357, 300 }, + [16] = { 23.8, 62.4, 357, 300 }, + [17] = { 24.8, 62.3, 357, 300 }, + [18] = { 25.9, 62.2, 357, 300 }, + [19] = { 27.7, 62.1, 357, 300 }, + }, + ["lvl"] = "43-44", + }, + [5335] = { + ["coords"] = { + [1] = { 29.7, 57.5, 357, 300 }, + [2] = { 28.6, 57.4, 357, 300 }, + [3] = { 27.6, 57.2, 357, 300 }, + [4] = { 33, 57.2, 357, 300 }, + [5] = { 31.5, 57.2, 357, 300 }, + [6] = { 31.1, 57, 357, 300 }, + [7] = { 30.1, 56.7, 357, 300 }, + [8] = { 26.7, 56.6, 357, 300 }, + [9] = { 32.3, 56.4, 357, 300 }, + [10] = { 33.3, 56.4, 357, 300 }, + [11] = { 29.3, 56.3, 357, 300 }, + [12] = { 32.5, 55.9, 357, 300 }, + [13] = { 25.8, 55.8, 357, 300 }, + [14] = { 25.3, 55.3, 357, 300 }, + [15] = { 29.6, 55.2, 357, 300 }, + [16] = { 26.3, 55.1, 357, 300 }, + [17] = { 27.7, 55.1, 357, 300 }, + [18] = { 32.9, 55.1, 357, 300 }, + [19] = { 29.1, 55.1, 357, 300 }, + [20] = { 27.3, 54.9, 357, 300 }, + [21] = { 33.6, 54.6, 357, 300 }, + [22] = { 27.8, 54.5, 357, 300 }, + [23] = { 29.2, 54.4, 357, 300 }, + [24] = { 28.7, 54.3, 357, 300 }, + [25] = { 26.7, 54.3, 357, 300 }, + [26] = { 25.3, 54.3, 357, 300 }, + [27] = { 30.3, 54.3, 357, 300 }, + [28] = { 27.1, 54, 357, 300 }, + [29] = { 26.1, 54, 357, 300 }, + [30] = { 27.1, 53.7, 357, 300 }, + [31] = { 29.1, 53.7, 357, 300 }, + [32] = { 27.7, 53.7, 357, 300 }, + [33] = { 29.6, 53.6, 357, 300 }, + [34] = { 26.3, 53.6, 357, 300 }, + [35] = { 25.6, 53.2, 357, 300 }, + [36] = { 28.5, 53, 357, 300 }, + [37] = { 29.6, 53, 357, 300 }, + [38] = { 33.1, 53, 357, 300 }, + [39] = { 26.7, 52.8, 357, 300 }, + [40] = { 27.6, 52.8, 357, 300 }, + [41] = { 28.6, 52.8, 357, 300 }, + [42] = { 26.7, 52.1, 357, 300 }, + [43] = { 28, 52, 357, 300 }, + [44] = { 29.1, 51.6, 357, 300 }, + [45] = { 28.7, 51.5, 357, 300 }, + [46] = { 33.5, 51.5, 357, 300 }, + [47] = { 28.8, 50.8, 357, 300 }, + [48] = { 28.5, 50.7, 357, 300 }, + [49] = { 26.7, 50.6, 357, 300 }, + [50] = { 25.4, 50.2, 357, 300 }, + [51] = { 33.2, 50, 357, 300 }, + [52] = { 25.5, 49.5, 357, 300 }, + }, + ["lvl"] = "41-42", + }, + [5336] = { + ["coords"] = { + [1] = { 24.9, 73.1, 357, 300 }, + [2] = { 25.2, 72.3, 357, 300 }, + [3] = { 25.7, 72.1, 357, 300 }, + [4] = { 28, 67.9, 357, 300 }, + [5] = { 28.2, 67.6, 357, 300 }, + [6] = { 25.3, 66.6, 357, 300 }, + [7] = { 25.3, 65.8, 357, 300 }, + [8] = { 25.2, 72.7, 357, 300 }, + [9] = { 24.8, 72.6, 357, 300 }, + [10] = { 26.1, 72, 357, 300 }, + [11] = { 25.9, 71.7, 357, 300 }, + [12] = { 27.8, 70.8, 357, 300 }, + [13] = { 28.4, 70.6, 357, 300 }, + [14] = { 28.1, 70.6, 357, 300 }, + [15] = { 28.6, 70.4, 357, 300 }, + [16] = { 27.2, 70.4, 357, 300 }, + [17] = { 27.5, 70.3, 357, 300 }, + [18] = { 28.4, 70.3, 357, 300 }, + [19] = { 27.9, 69.9, 357, 300 }, + [20] = { 27.4, 69.8, 357, 300 }, + [21] = { 26.8, 69.5, 357, 300 }, + [22] = { 27.1, 69.5, 357, 300 }, + [23] = { 28.1, 69.5, 357, 300 }, + [24] = { 27.5, 69.4, 357, 300 }, + [25] = { 26.9, 69.1, 357, 300 }, + [26] = { 27.8, 69.1, 357, 300 }, + [27] = { 27.4, 69.1, 357, 300 }, + [28] = { 27.2, 69, 357, 300 }, + [29] = { 26.7, 69, 357, 300 }, + [30] = { 28, 68.8, 357, 300 }, + [31] = { 26.1, 68.7, 357, 300 }, + [32] = { 26.4, 68.6, 357, 300 }, + [33] = { 27.6, 68.6, 357, 300 }, + [34] = { 26.7, 68.5, 357, 300 }, + [35] = { 27.8, 68.4, 357, 300 }, + [36] = { 27, 68.4, 357, 300 }, + [37] = { 27.3, 68.4, 357, 300 }, + [38] = { 27, 68.3, 357, 300 }, + [39] = { 26.4, 68.2, 357, 300 }, + [40] = { 27.1, 68.1, 357, 300 }, + [41] = { 27.4, 68.1, 357, 300 }, + [42] = { 27.3, 68, 357, 300 }, + [43] = { 28.3, 68, 357, 300 }, + [44] = { 27.4, 67.9, 357, 300 }, + [45] = { 26.3, 67.7, 357, 300 }, + [46] = { 26.1, 67.4, 357, 300 }, + [47] = { 24.7, 67, 357, 300 }, + [48] = { 25.8, 67, 357, 300 }, + [49] = { 25.7, 66.4, 357, 300 }, + [50] = { 25.4, 66, 357, 300 }, + [51] = { 24.3, 65.4, 357, 300 }, + [52] = { 26.6, 65.1, 357, 300 }, + [53] = { 25.5, 64.4, 357, 300 }, + [54] = { 23.3, 64.3, 357, 300 }, + [55] = { 27.2, 64.3, 357, 300 }, + [56] = { 24.1, 64, 357, 300 }, + [57] = { 25.3, 63.7, 357, 300 }, + [58] = { 26.7, 63.7, 357, 300 }, + [59] = { 25.8, 63.7, 357, 300 }, + [60] = { 24.9, 63.4, 357, 300 }, + [61] = { 25.4, 63, 357, 300 }, + [62] = { 27.2, 62.9, 357, 300 }, + [63] = { 24.4, 62.8, 357, 300 }, + [64] = { 25.2, 62.8, 357, 300 }, + [65] = { 26.1, 62.7, 357, 300 }, + [66] = { 23.8, 62.4, 357, 300 }, + [67] = { 24.8, 62.3, 357, 300 }, + [68] = { 25.9, 62.2, 357, 300 }, + [69] = { 27.7, 62.1, 357, 300 }, + }, + ["lvl"] = "43-44", + }, + [5337] = { + ["coords"] = { + [1] = { 29.7, 57.5, 357, 300 }, + [2] = { 28.6, 57.4, 357, 300 }, + [3] = { 27.6, 57.2, 357, 300 }, + [4] = { 33, 57.2, 357, 300 }, + [5] = { 31.5, 57.2, 357, 300 }, + [6] = { 31.1, 57, 357, 300 }, + [7] = { 30.1, 56.7, 357, 300 }, + [8] = { 26.7, 56.6, 357, 300 }, + [9] = { 32.3, 56.4, 357, 300 }, + [10] = { 33.3, 56.4, 357, 300 }, + [11] = { 29.3, 56.3, 357, 300 }, + [12] = { 32.5, 55.9, 357, 300 }, + [13] = { 25.8, 55.8, 357, 300 }, + [14] = { 25.3, 55.3, 357, 300 }, + [15] = { 29.6, 55.2, 357, 300 }, + [16] = { 26.3, 55.1, 357, 300 }, + [17] = { 27.7, 55.1, 357, 300 }, + [18] = { 32.9, 55.1, 357, 300 }, + [19] = { 29.1, 55.1, 357, 300 }, + [20] = { 27.3, 54.9, 357, 300 }, + [21] = { 33.6, 54.6, 357, 300 }, + [22] = { 27.8, 54.5, 357, 300 }, + [23] = { 29.2, 54.4, 357, 300 }, + [24] = { 28.7, 54.3, 357, 300 }, + [25] = { 26.7, 54.3, 357, 300 }, + [26] = { 25.3, 54.3, 357, 300 }, + [27] = { 30.3, 54.3, 357, 300 }, + [28] = { 27.1, 54, 357, 300 }, + [29] = { 26.1, 54, 357, 300 }, + [30] = { 27.1, 53.7, 357, 300 }, + [31] = { 29.1, 53.7, 357, 300 }, + [32] = { 27.7, 53.7, 357, 300 }, + [33] = { 29.6, 53.6, 357, 300 }, + [34] = { 26.3, 53.6, 357, 300 }, + [35] = { 25.6, 53.2, 357, 300 }, + [36] = { 28.5, 53, 357, 300 }, + [37] = { 29.6, 53, 357, 300 }, + [38] = { 33.1, 53, 357, 300 }, + [39] = { 26.7, 52.8, 357, 300 }, + [40] = { 27.6, 52.8, 357, 300 }, + [41] = { 28.6, 52.8, 357, 300 }, + [42] = { 26.7, 52.1, 357, 300 }, + [43] = { 28, 52, 357, 300 }, + [44] = { 29.1, 51.6, 357, 300 }, + [45] = { 28.7, 51.5, 357, 300 }, + [46] = { 33.5, 51.5, 357, 300 }, + [47] = { 28.8, 50.8, 357, 300 }, + [48] = { 28.5, 50.7, 357, 300 }, + [49] = { 26.7, 50.6, 357, 300 }, + [50] = { 25.4, 50.2, 357, 300 }, + [51] = { 33.2, 50, 357, 300 }, + [52] = { 25.5, 49.5, 357, 300 }, + }, + ["lvl"] = "42-43", + }, + [5343] = { + ["coords"] = { + [1] = { 28.2, 67.6, 357, 18000 }, + }, + ["lvl"] = "46", + ["rnk"] = "4", + }, + [5345] = { + ["coords"] = { + [1] = { 36.6, 51.4, 357, 37800 }, + }, + ["lvl"] = "45", + ["rnk"] = "4", + }, + [5346] = { + ["coords"] = { + [1] = { 55.1, 57.8, 357, 54000 }, + }, + ["lvl"] = "48", + ["rnk"] = "4", + }, + [5347] = { + ["coords"] = { + [1] = { 55.7, 74, 357, 54000 }, + }, + ["lvl"] = "48", + ["rnk"] = "4", + }, + [5348] = { + ["coords"] = {}, + ["lvl"] = "55", + ["rnk"] = "4", + }, + [5349] = { + ["coords"] = { + [1] = { 44.8, 25, 357, 18000 }, + }, + ["lvl"] = "49", + ["rnk"] = "4", + }, + [5350] = { + ["coords"] = { + [1] = { 76.7, 66.2, 357, 18000 }, + [2] = { 74.4, 65, 357, 18000 }, + }, + ["lvl"] = "47", + ["rnk"] = "4", + }, + [5352] = { + ["coords"] = { + [1] = { 59.5, 59.4, 357, 115200 }, + }, + ["lvl"] = "43", + ["rnk"] = "4", + }, + [5353] = { + ["coords"] = { + [1] = { 13.7, 71.7, 8, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "45", + }, + [5354] = { + ["coords"] = { + [1] = { 72.8, 58.4, 357, 115200 }, + }, + ["lvl"] = "44", + ["rnk"] = "4", + }, + [5355] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [5356] = { + ["coords"] = { + [1] = { 84.4, 38.3, 357, 18000 }, + }, + ["lvl"] = "42", + ["rnk"] = "4", + }, + [5357] = { + ["coords"] = { + [1] = { 40.9, 25.5, 357, 600 }, + [2] = { 41.1, 24.8, 357, 600 }, + [3] = { 40.3, 24.6, 357, 600 }, + [4] = { 40.7, 24.4, 357, 600 }, + [5] = { 38.5, 24.4, 357, 600 }, + [6] = { 39.2, 24.1, 357, 600 }, + [7] = { 38.7, 23.6, 357, 600 }, + [8] = { 38, 23.6, 357, 600 }, + [9] = { 41.1, 22.6, 357, 600 }, + [10] = { 40.4, 22.4, 357, 600 }, + [11] = { 39.5, 22.2, 357, 600 }, + [12] = { 38.8, 21.9, 357, 600 }, + [13] = { 37.8, 21.9, 357, 600 }, + [14] = { 38.2, 21.4, 357, 600 }, + [15] = { 38.2, 20.5, 357, 600 }, + [16] = { 38.1, 18.3, 357, 600 }, + }, + ["lvl"] = "48-49", + ["rnk"] = "1", + }, + [5358] = { + ["coords"] = { + [1] = { 40.9, 25.5, 357, 600 }, + [2] = { 41.1, 24.8, 357, 600 }, + [3] = { 40.3, 24.6, 357, 600 }, + [4] = { 40.7, 24.4, 357, 600 }, + [5] = { 38.5, 24.4, 357, 600 }, + [6] = { 39.2, 24.1, 357, 600 }, + [7] = { 38.7, 23.6, 357, 600 }, + [8] = { 38, 23.6, 357, 600 }, + [9] = { 41.1, 22.6, 357, 600 }, + [10] = { 40.4, 22.4, 357, 600 }, + [11] = { 39.5, 22.2, 357, 600 }, + [12] = { 38.8, 21.9, 357, 600 }, + [13] = { 37.8, 21.9, 357, 600 }, + [14] = { 38.2, 21.4, 357, 600 }, + [15] = { 38.2, 20.5, 357, 600 }, + [16] = { 38.1, 18.3, 357, 600 }, + }, + ["lvl"] = "49-50", + ["rnk"] = "1", + }, + [5359] = { + ["coords"] = { + [1] = { 45, 66.5, 357, 600 }, + [2] = { 45.5, 62.3, 357, 600 }, + [3] = { 46.9, 62.2, 357, 600 }, + [4] = { 45.1, 61.9, 357, 600 }, + [5] = { 46.5, 59.6, 357, 600 }, + [6] = { 45.9, 57.9, 357, 600 }, + [7] = { 46.9, 57.9, 357, 600 }, + [8] = { 43.1, 53, 357, 600 }, + [9] = { 45.2, 52.9, 357, 600 }, + [10] = { 44.1, 50.1, 357, 600 }, + [11] = { 44.1, 49.1, 357, 600 }, + [12] = { 42.5, 46.9, 357, 600 }, + [13] = { 44.3, 46.6, 357, 600 }, + [14] = { 40.2, 38.6, 357, 600 }, + [15] = { 36.4, 36.5, 357, 600 }, + [16] = { 36.5, 35.7, 357, 600 }, + [17] = { 38.3, 34.9, 357, 600 }, + [18] = { 37.7, 34.5, 357, 600 }, + [19] = { 34.5, 34, 357, 600 }, + [20] = { 36.1, 33.4, 357, 600 }, + }, + ["lvl"] = "48-49", + ["rnk"] = "1", + }, + [5360] = { + ["coords"] = { + [1] = { 45, 66.5, 357, 600 }, + [2] = { 45.5, 62.3, 357, 600 }, + [3] = { 46.9, 62.2, 357, 600 }, + [4] = { 45.1, 61.9, 357, 600 }, + [5] = { 46.5, 59.6, 357, 600 }, + [6] = { 45.9, 57.9, 357, 600 }, + [7] = { 46.9, 57.9, 357, 600 }, + [8] = { 43.1, 53, 357, 600 }, + [9] = { 45.2, 52.9, 357, 600 }, + [10] = { 44.1, 50.1, 357, 600 }, + [11] = { 44.1, 49.1, 357, 600 }, + [12] = { 42.5, 46.9, 357, 600 }, + [13] = { 44.3, 46.6, 357, 600 }, + [14] = { 40.2, 38.6, 357, 600 }, + [15] = { 36.4, 36.5, 357, 600 }, + [16] = { 36.5, 35.7, 357, 600 }, + [17] = { 38.3, 34.9, 357, 600 }, + [18] = { 37.7, 34.5, 357, 600 }, + [19] = { 34.5, 34, 357, 600 }, + [20] = { 36.1, 33.4, 357, 600 }, + }, + ["lvl"] = "47-49", + ["rnk"] = "1", + }, + [5361] = { + ["coords"] = { + [1] = { 45, 66.5, 357, 600 }, + [2] = { 45.5, 62.3, 357, 600 }, + [3] = { 46.9, 62.2, 357, 600 }, + [4] = { 45.1, 61.9, 357, 600 }, + [5] = { 46.5, 59.6, 357, 600 }, + [6] = { 45.9, 57.9, 357, 600 }, + [7] = { 46.9, 57.9, 357, 600 }, + [8] = { 43.1, 53, 357, 600 }, + [9] = { 45.2, 52.9, 357, 600 }, + [10] = { 44.1, 50.1, 357, 600 }, + [11] = { 44.1, 49.1, 357, 600 }, + [12] = { 42.5, 46.9, 357, 600 }, + [13] = { 44.3, 46.6, 357, 600 }, + [14] = { 40.2, 38.6, 357, 600 }, + [15] = { 36.4, 36.5, 357, 600 }, + [16] = { 36.5, 35.7, 357, 600 }, + [17] = { 38.3, 34.9, 357, 600 }, + [18] = { 37.7, 34.5, 357, 600 }, + [19] = { 34.5, 34, 357, 600 }, + [20] = { 36.1, 33.4, 357, 600 }, + }, + ["lvl"] = "47-48", + ["rnk"] = "1", + }, + [5362] = { + ["coords"] = { + [1] = { 38.6, 16.1, 357, 300 }, + [2] = { 37.8, 15.9, 357, 300 }, + [3] = { 37.9, 15.9, 357, 300 }, + [4] = { 37.4, 15.6, 357, 300 }, + [5] = { 38.3, 15.6, 357, 300 }, + [6] = { 39.2, 15.5, 357, 300 }, + [7] = { 40.1, 15.5, 357, 300 }, + [8] = { 40.7, 14.8, 357, 300 }, + [9] = { 38.2, 14.7, 357, 300 }, + [10] = { 38.9, 14.6, 357, 300 }, + [11] = { 39.9, 14.5, 357, 300 }, + [12] = { 41.5, 14.4, 357, 300 }, + [13] = { 40, 14.3, 357, 300 }, + [14] = { 38.6, 14.3, 357, 300 }, + [15] = { 39.4, 14.1, 357, 300 }, + [16] = { 39.7, 14, 357, 300 }, + [17] = { 38.2, 13.9, 357, 300 }, + [18] = { 38.7, 13.8, 357, 300 }, + [19] = { 40.2, 13.4, 357, 300 }, + [20] = { 40.6, 13.3, 357, 300 }, + [21] = { 39.1, 13.1, 357, 300 }, + [22] = { 38.5, 13, 357, 300 }, + [23] = { 38.7, 12.7, 357, 300 }, + [24] = { 40.4, 12.6, 357, 300 }, + [25] = { 42.1, 12.5, 357, 300 }, + [26] = { 38.7, 12.5, 357, 300 }, + [27] = { 37.7, 12.2, 357, 300 }, + [28] = { 38.2, 12.1, 357, 300 }, + [29] = { 39.7, 11.9, 357, 300 }, + [30] = { 41.6, 11.9, 357, 300 }, + [31] = { 39.4, 11.6, 357, 300 }, + [32] = { 39.2, 11.2, 357, 300 }, + [33] = { 38.7, 11.2, 357, 300 }, + [34] = { 40.1, 11.1, 357, 300 }, + [35] = { 39.7, 10.3, 357, 300 }, + [36] = { 39.5, 10.1, 357, 300 }, + }, + ["lvl"] = "48-49", + }, + [5363] = { + ["coords"] = { + [1] = { 38.6, 16.1, 357, 300 }, + [2] = { 37.8, 15.9, 357, 300 }, + [3] = { 37.9, 15.9, 357, 300 }, + [4] = { 37.4, 15.6, 357, 300 }, + [5] = { 38.3, 15.6, 357, 300 }, + [6] = { 39.2, 15.5, 357, 300 }, + [7] = { 40.1, 15.5, 357, 300 }, + [8] = { 40.7, 14.8, 357, 300 }, + [9] = { 38.2, 14.7, 357, 300 }, + [10] = { 38.9, 14.6, 357, 300 }, + [11] = { 39.9, 14.5, 357, 300 }, + [12] = { 41.5, 14.4, 357, 300 }, + [13] = { 40, 14.3, 357, 300 }, + [14] = { 38.6, 14.3, 357, 300 }, + [15] = { 39.4, 14.1, 357, 300 }, + [16] = { 39.7, 14, 357, 300 }, + [17] = { 38.2, 13.9, 357, 300 }, + [18] = { 38.7, 13.8, 357, 300 }, + [19] = { 40.2, 13.4, 357, 300 }, + [20] = { 40.6, 13.3, 357, 300 }, + [21] = { 39.1, 13.1, 357, 300 }, + [22] = { 38.5, 13, 357, 300 }, + [23] = { 38.7, 12.7, 357, 300 }, + [24] = { 40.4, 12.6, 357, 300 }, + [25] = { 42.1, 12.5, 357, 300 }, + [26] = { 38.7, 12.5, 357, 300 }, + [27] = { 37.7, 12.2, 357, 300 }, + [28] = { 38.2, 12.1, 357, 300 }, + [29] = { 39.7, 11.9, 357, 300 }, + [30] = { 41.6, 11.9, 357, 300 }, + [31] = { 39.4, 11.6, 357, 300 }, + [32] = { 39.2, 11.2, 357, 300 }, + [33] = { 38.7, 11.2, 357, 300 }, + [34] = { 40.1, 11.1, 357, 300 }, + [35] = { 39.7, 10.3, 357, 300 }, + [36] = { 39.5, 10.1, 357, 300 }, + }, + ["lvl"] = "48-49", + }, + [5364] = { + ["coords"] = { + [1] = { 38.6, 16.1, 357, 300 }, + [2] = { 37.8, 15.9, 357, 300 }, + [3] = { 37.9, 15.9, 357, 300 }, + [4] = { 37.4, 15.6, 357, 300 }, + [5] = { 38.3, 15.6, 357, 300 }, + [6] = { 39.2, 15.5, 357, 300 }, + [7] = { 40.1, 15.5, 357, 300 }, + [8] = { 40.7, 14.8, 357, 300 }, + [9] = { 38.2, 14.7, 357, 300 }, + [10] = { 38.9, 14.6, 357, 300 }, + [11] = { 39.9, 14.5, 357, 300 }, + [12] = { 41.5, 14.4, 357, 300 }, + [13] = { 40, 14.3, 357, 300 }, + [14] = { 38.6, 14.3, 357, 300 }, + [15] = { 39.4, 14.1, 357, 300 }, + [16] = { 39.7, 14, 357, 300 }, + [17] = { 38.2, 13.9, 357, 300 }, + [18] = { 38.7, 13.8, 357, 300 }, + [19] = { 40.2, 13.4, 357, 300 }, + [20] = { 40.6, 13.3, 357, 300 }, + [21] = { 39.1, 13.1, 357, 300 }, + [22] = { 38.5, 13, 357, 300 }, + [23] = { 38.7, 12.7, 357, 300 }, + [24] = { 40.4, 12.6, 357, 300 }, + [25] = { 42.1, 12.5, 357, 300 }, + [26] = { 38.7, 12.5, 357, 300 }, + [27] = { 37.7, 12.2, 357, 300 }, + [28] = { 38.2, 12.1, 357, 300 }, + [29] = { 39.7, 11.9, 357, 300 }, + [30] = { 41.6, 11.9, 357, 300 }, + [31] = { 39.4, 11.6, 357, 300 }, + [32] = { 39.2, 11.2, 357, 300 }, + [33] = { 38.7, 11.2, 357, 300 }, + [34] = { 40.1, 11.1, 357, 300 }, + [35] = { 39.7, 10.3, 357, 300 }, + [36] = { 39.5, 10.1, 357, 300 }, + }, + ["lvl"] = "49-50", + }, + [5366] = { + ["coords"] = { + [1] = { 38.6, 16.1, 357, 300 }, + [2] = { 37.8, 15.9, 357, 300 }, + [3] = { 37.9, 15.9, 357, 300 }, + [4] = { 37.4, 15.6, 357, 300 }, + [5] = { 38.3, 15.6, 357, 300 }, + [6] = { 39.2, 15.5, 357, 300 }, + [7] = { 40.1, 15.5, 357, 300 }, + [8] = { 40.7, 14.8, 357, 300 }, + [9] = { 38.2, 14.7, 357, 300 }, + [10] = { 38.9, 14.6, 357, 300 }, + [11] = { 39.9, 14.5, 357, 300 }, + [12] = { 41.5, 14.4, 357, 300 }, + [13] = { 40, 14.3, 357, 300 }, + [14] = { 38.6, 14.3, 357, 300 }, + [15] = { 39.4, 14.1, 357, 300 }, + [16] = { 39.7, 14, 357, 300 }, + [17] = { 38.2, 13.9, 357, 300 }, + [18] = { 38.7, 13.8, 357, 300 }, + [19] = { 40.2, 13.4, 357, 300 }, + [20] = { 40.6, 13.3, 357, 300 }, + [21] = { 39.1, 13.1, 357, 300 }, + [22] = { 38.5, 13, 357, 300 }, + [23] = { 38.7, 12.7, 357, 300 }, + [24] = { 40.4, 12.6, 357, 300 }, + [25] = { 42.1, 12.5, 357, 300 }, + [26] = { 38.7, 12.5, 357, 300 }, + [27] = { 37.7, 12.2, 357, 300 }, + [28] = { 38.2, 12.1, 357, 300 }, + [29] = { 39.7, 11.9, 357, 300 }, + [30] = { 41.6, 11.9, 357, 300 }, + [31] = { 39.4, 11.6, 357, 300 }, + [32] = { 39.2, 11.2, 357, 300 }, + [33] = { 38.7, 11.2, 357, 300 }, + [34] = { 40.1, 11.1, 357, 300 }, + [35] = { 39.7, 10.3, 357, 300 }, + [36] = { 39.5, 10.1, 357, 300 }, + }, + ["lvl"] = "49-50", + }, + [5367] = { + ["coords"] = {}, + ["lvl"] = "35", + ["rnk"] = "2", + }, + [5384] = { + ["coords"] = { + [1] = { 64.3, 20.6, 1519, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [5385] = { + ["coords"] = { + [1] = { 67.6, 19.2, 4, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [5386] = { + ["coords"] = { + [1] = { 41, 63.8, 1519, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [5387] = { + ["coords"] = { + [1] = { 69.9, 18.6, 1537, 490 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [5388] = { + ["coords"] = { + [1] = { 66.3, 45.2, 15, 360 }, + }, + ["fac"] = "A", + ["lvl"] = "39", + }, + [5389] = { + ["coords"] = { + [1] = { 36.8, 77, 440, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [5390] = { + ["coords"] = { + [1] = { 75.1, 42.7, 357, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "49", + }, + [5391] = { + ["coords"] = { + [1] = { 65.5, 18.2, 8, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "37", + }, + [5392] = { + ["coords"] = { + [1] = { 50, 50.3, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [5393] = { + ["coords"] = { + [1] = { 66.5, 21.4, 4, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "54", + }, + [5394] = { + ["coords"] = { + [1] = { 6.5, 47.2, 3, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [5395] = { + ["coords"] = { + [1] = { 56.2, 59.6, 405, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "44", + }, + [5396] = { + ["coords"] = { + [1] = { 66.7, 10.9, 405, 300 }, + [2] = { 41.2, 85.8, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "42", + }, + [5397] = { + ["coords"] = { + [1] = { 36.2, 79.2, 405, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "44", + }, + [5398] = { + ["coords"] = { + [1] = { 75, 68.2, 405, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "44", + }, + [5399] = { + ["coords"] = { + [1] = { 78.8, 43.8, 8, 18000 }, + }, + ["lvl"] = "48", + ["rnk"] = "2", + }, + [5400] = { + ["coords"] = { + [1] = { 77.5, 39.4, 8, 28800 }, + }, + ["lvl"] = "48", + ["rnk"] = "2", + }, + [5401] = { + ["coords"] = { + [1] = { 76, 48.4, 8, 900 }, + }, + ["lvl"] = "48", + ["rnk"] = "1", + }, + [5402] = { + ["coords"] = {}, + ["lvl"] = "42", + ["rnk"] = "1", + }, + [5403] = { + ["coords"] = { + [1] = { 8.8, 54.8, 11, 300 }, + [2] = { 42.9, 66.1, 12, 270 }, + [3] = { 49, 43, 12, 270 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [5404] = { + ["coords"] = { + [1] = { 8.1, 54, 11, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [5405] = { + ["coords"] = { + [1] = { 8.2, 54.5, 11, 300 }, + [2] = { 84, 64.8, 12, 270 }, + [3] = { 65.2, 52, 15, 300 }, + [4] = { 52.4, 55.3, 267, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [5406] = { + ["coords"] = { + [1] = { 8, 54.3, 11, 300 }, + [2] = { 42.9, 66.2, 12, 270 }, + [3] = { 62.3, 54.3, 17, 300 }, + [4] = { 81, 32.1, 85, 180 }, + [5] = { 81.2, 31.8, 85, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [5407] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [5409] = { + ["coords"] = {}, + ["lvl"] = "24", + }, + [5411] = { + ["coords"] = { + [1] = { 51.5, 28.8, 440, 300 }, + }, + ["lvl"] = "40", + }, + [5412] = { + ["coords"] = { + [1] = { 56.3, 59.7, 405, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [5413] = { + ["coords"] = { + [1] = { 58.1, 16.5, 1519, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [5414] = { + ["coords"] = { + [1] = { 87.5, 35.2, 10, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [5415] = { + ["coords"] = {}, + ["lvl"] = "38", + }, + [5416] = { + ["coords"] = { + [1] = { 44.3, 52.4, 8, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "40", + }, + [5418] = { + ["coords"] = { + [1] = { 87.8, 35.6, 10, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [5419] = { + ["coords"] = { + [1] = { 41.5, 40.4, 440, 300 }, + [2] = { 49.7, 40.1, 440, 300 }, + [3] = { 52, 40, 440, 300 }, + [4] = { 40.7, 39.9, 440, 300 }, + [5] = { 51.1, 39.9, 440, 300 }, + [6] = { 54.2, 39.8, 440, 300 }, + [7] = { 52.1, 38.8, 440, 300 }, + [8] = { 50.1, 38.7, 440, 300 }, + [9] = { 48.1, 38.7, 440, 300 }, + [10] = { 43.7, 38.7, 440, 300 }, + [11] = { 49, 38.7, 440, 300 }, + [12] = { 54.1, 38.6, 440, 300 }, + [13] = { 47.7, 38.6, 440, 300 }, + [14] = { 42.8, 38.6, 440, 300 }, + [15] = { 51.2, 38.6, 440, 300 }, + [16] = { 53.1, 38.5, 440, 300 }, + [17] = { 46.2, 37.3, 440, 300 }, + [18] = { 53.1, 37.2, 440, 300 }, + [19] = { 43.3, 37.1, 440, 300 }, + [20] = { 47, 37, 440, 300 }, + [21] = { 40.7, 36.9, 440, 300 }, + [22] = { 51.2, 36.4, 440, 300 }, + [23] = { 44.5, 36.2, 440, 300 }, + [24] = { 56, 35.7, 440, 300 }, + [25] = { 41.4, 35.6, 440, 300 }, + [26] = { 50.5, 35.6, 440, 300 }, + [27] = { 46.3, 35.6, 440, 300 }, + [28] = { 48.5, 35.5, 440, 300 }, + [29] = { 46.5, 35, 440, 300 }, + [30] = { 42, 34.3, 440, 300 }, + [31] = { 57, 34.2, 440, 300 }, + [32] = { 44.7, 34.2, 440, 300 }, + [33] = { 43.3, 34.2, 440, 300 }, + [34] = { 49.6, 34, 440, 300 }, + [35] = { 40.9, 33.2, 440, 300 }, + [36] = { 44.4, 33, 440, 300 }, + [37] = { 38.7, 32.9, 440, 300 }, + [38] = { 36.7, 32.9, 440, 300 }, + [39] = { 44, 32.8, 440, 300 }, + [40] = { 35.4, 32.8, 440, 300 }, + [41] = { 49.3, 32.8, 440, 300 }, + [42] = { 34.4, 32.6, 440, 300 }, + [43] = { 45.6, 32.3, 440, 300 }, + [44] = { 35.7, 31.5, 440, 300 }, + [45] = { 37.7, 31.4, 440, 300 }, + [46] = { 43.6, 31.4, 440, 300 }, + [47] = { 51.1, 31.3, 440, 300 }, + [48] = { 42.1, 31.3, 440, 300 }, + [49] = { 50.2, 31.1, 440, 300 }, + [50] = { 42.8, 30.1, 440, 300 }, + [51] = { 37.2, 29.9, 440, 300 }, + [52] = { 44.4, 29.8, 440, 300 }, + [53] = { 47, 29.5, 440, 300 }, + [54] = { 60.7, 29.3, 440, 300 }, + [55] = { 46.3, 28.9, 440, 300 }, + [56] = { 48.4, 28.9, 440, 300 }, + [57] = { 37.7, 28.6, 440, 300 }, + [58] = { 49.1, 27.5, 440, 300 }, + [59] = { 44.4, 27.1, 440, 300 }, + [60] = { 65.2, 27.1, 440, 300 }, + [61] = { 46.1, 27.1, 440, 300 }, + [62] = { 57.8, 26.4, 440, 300 }, + [63] = { 34.5, 25.7, 440, 300 }, + [64] = { 45.6, 25.6, 440, 300 }, + [65] = { 41.6, 25.5, 440, 300 }, + [66] = { 52.2, 24.2, 440, 300 }, + [67] = { 57.9, 24.1, 440, 300 }, + [68] = { 40.5, 24.1, 440, 300 }, + [69] = { 45.4, 23.5, 440, 300 }, + [70] = { 45.7, 23.1, 440, 300 }, + [71] = { 53, 22.6, 440, 300 }, + [72] = { 34.4, 22.5, 440, 300 }, + [73] = { 39.8, 22.2, 440, 300 }, + [74] = { 40.5, 21.9, 440, 300 }, + [75] = { 36.7, 20.5, 440, 300 }, + [76] = { 63.6, 19.6, 440, 300 }, + [77] = { 84.5, 57.1, 490, 300 }, + [78] = { 84.4, 38.3, 490, 300 }, + }, + ["lvl"] = "42-43", + }, + [5420] = { + ["coords"] = { + [1] = { 38.7, 69.2, 440, 300 }, + [2] = { 44.5, 69, 440, 300 }, + [3] = { 41.6, 67.7, 440, 300 }, + [4] = { 40.7, 66.2, 440, 300 }, + [5] = { 42.5, 66.1, 440, 300 }, + [6] = { 39.6, 66, 440, 300 }, + [7] = { 36.8, 66, 440, 300 }, + [8] = { 38.6, 64.7, 440, 300 }, + [9] = { 34.7, 64.6, 440, 300 }, + [10] = { 32.6, 64.6, 440, 300 }, + [11] = { 36.7, 64.5, 440, 300 }, + [12] = { 38.7, 63.1, 440, 300 }, + [13] = { 39.7, 62, 440, 300 }, + [14] = { 40.6, 61.9, 440, 300 }, + [15] = { 44.3, 61.7, 440, 300 }, + [16] = { 50.3, 61.7, 440, 300 }, + [17] = { 58.9, 61.4, 440, 300 }, + [18] = { 43.4, 60.6, 440, 300 }, + [19] = { 37.7, 60.5, 440, 300 }, + [20] = { 46.5, 60.4, 440, 300 }, + [21] = { 41.5, 60.4, 440, 300 }, + [22] = { 42.5, 60.3, 440, 300 }, + [23] = { 57, 60.2, 440, 300 }, + [24] = { 45.4, 60, 440, 300 }, + [25] = { 34.8, 59, 440, 300 }, + [26] = { 57.1, 59, 440, 300 }, + [27] = { 60.8, 59, 440, 300 }, + [28] = { 37.1, 58.9, 440, 300 }, + [29] = { 52.1, 58.9, 440, 300 }, + [30] = { 42.4, 58.9, 440, 300 }, + [31] = { 61.9, 58.8, 440, 300 }, + [32] = { 51.2, 58.8, 440, 300 }, + [33] = { 35.3, 58.8, 440, 300 }, + [34] = { 59.8, 57.5, 440, 300 }, + [35] = { 51.1, 57.5, 440, 300 }, + [36] = { 48.1, 57.4, 440, 300 }, + [37] = { 58.9, 57.3, 440, 300 }, + [38] = { 55, 57.2, 440, 300 }, + [39] = { 35.5, 57.2, 440, 300 }, + [40] = { 54.2, 57.1, 440, 300 }, + [41] = { 54, 56.2, 440, 300 }, + [42] = { 34.9, 56.1, 440, 300 }, + [43] = { 55.1, 56, 440, 300 }, + [44] = { 53.1, 56, 440, 300 }, + [45] = { 56.8, 56, 440, 300 }, + [46] = { 52.2, 55.9, 440, 300 }, + [47] = { 61.8, 55.9, 440, 300 }, + [48] = { 62.8, 55.8, 440, 300 }, + [49] = { 35.9, 55.8, 440, 300 }, + [50] = { 44.3, 55.8, 440, 300 }, + [51] = { 59.6, 55.7, 440, 300 }, + [52] = { 49.2, 55.7, 440, 300 }, + [53] = { 34.7, 54.8, 440, 300 }, + [54] = { 58.3, 54.6, 440, 300 }, + [55] = { 61.2, 54.5, 440, 300 }, + [56] = { 55, 54.5, 440, 300 }, + [57] = { 56.1, 54.5, 440, 300 }, + [58] = { 49.2, 54.5, 440, 300 }, + [59] = { 48, 54.4, 440, 300 }, + [60] = { 47.2, 54.3, 440, 300 }, + [61] = { 44.4, 53.9, 440, 300 }, + [62] = { 57, 53.1, 440, 300 }, + [63] = { 34.8, 53.1, 440, 300 }, + [64] = { 35.7, 53.1, 440, 300 }, + [65] = { 54.1, 53.1, 440, 300 }, + [66] = { 44.2, 53, 440, 300 }, + [67] = { 46.5, 53, 440, 300 }, + [68] = { 36.5, 52.8, 440, 300 }, + [69] = { 35.9, 52.2, 440, 300 }, + [70] = { 61.1, 51.9, 440, 300 }, + [71] = { 54.1, 51.6, 440, 300 }, + [72] = { 58.9, 51.6, 440, 300 }, + [73] = { 56.3, 51.5, 440, 300 }, + [74] = { 51.1, 51.5, 440, 300 }, + [75] = { 49.2, 50.9, 440, 300 }, + [76] = { 46.3, 50.8, 440, 300 }, + [77] = { 54.2, 50.5, 440, 300 }, + [78] = { 48.3, 50.4, 440, 300 }, + [79] = { 52.2, 50.2, 440, 300 }, + [80] = { 50.2, 50.1, 440, 300 }, + [81] = { 41.3, 50.1, 440, 300 }, + [82] = { 59.6, 50.1, 440, 300 }, + [83] = { 45.4, 48.8, 440, 300 }, + [84] = { 52.2, 48.7, 440, 300 }, + [85] = { 41.5, 48.7, 440, 300 }, + [86] = { 57, 48.7, 440, 300 }, + [87] = { 60.8, 48.7, 440, 300 }, + [88] = { 55.3, 47.8, 440, 300 }, + [89] = { 55.9, 47.5, 440, 300 }, + [90] = { 58.9, 47.3, 440, 300 }, + [91] = { 51.5, 47.3, 440, 300 }, + [92] = { 50.3, 47.3, 440, 300 }, + [93] = { 59.9, 47.2, 440, 300 }, + [94] = { 49.4, 46.8, 440, 300 }, + [95] = { 40.6, 46.4, 440, 300 }, + [96] = { 59.8, 46, 440, 300 }, + [97] = { 57.9, 45.9, 440, 300 }, + [98] = { 56.9, 45.9, 440, 300 }, + [99] = { 43.4, 45.9, 440, 300 }, + [100] = { 58.9, 45.9, 440, 300 }, + [101] = { 41.5, 45.8, 440, 300 }, + [102] = { 38.3, 45.8, 440, 300 }, + [103] = { 39.6, 45.2, 440, 300 }, + [104] = { 43.8, 44.7, 440, 300 }, + [105] = { 62.8, 44.5, 440, 300 }, + [106] = { 56.9, 44.3, 440, 300 }, + [107] = { 50.7, 44, 440, 300 }, + [108] = { 64.2, 43.2, 440, 300 }, + [109] = { 50.2, 43, 440, 300 }, + [110] = { 56, 42.9, 440, 300 }, + [111] = { 41.6, 42.7, 440, 300 }, + [112] = { 42.5, 42.5, 440, 300 }, + [113] = { 52.2, 41.9, 440, 300 }, + [114] = { 60.9, 41.6, 440, 300 }, + [115] = { 40.6, 41.3, 440, 300 }, + [116] = { 39.2, 41.3, 440, 300 }, + [117] = { 41.5, 40.7, 440, 300 }, + [118] = { 38.6, 40.3, 440, 300 }, + [119] = { 39.4, 40.2, 440, 300 }, + [120] = { 38.5, 38.7, 440, 300 }, + [121] = { 39.6, 38.7, 440, 300 }, + [122] = { 39.7, 35.9, 440, 300 }, + [123] = { 34.7, 35.5, 440, 300 }, + [124] = { 36.2, 34.3, 440, 300 }, + [125] = { 34.7, 33.5, 440, 300 }, + }, + ["lvl"] = "45-46", + }, + [5421] = { + ["coords"] = { + [1] = { 34.7, 79.3, 440, 300 }, + [2] = { 33.8, 79.1, 440, 300 }, + [3] = { 32, 77.9, 440, 300 }, + [4] = { 49.3, 77.9, 440, 300 }, + [5] = { 47.3, 77.7, 440, 300 }, + [6] = { 39.5, 77.6, 440, 300 }, + [7] = { 30, 76.3, 440, 300 }, + [8] = { 42.6, 76.3, 440, 300 }, + [9] = { 33.7, 76.3, 440, 300 }, + [10] = { 34.8, 76.2, 440, 300 }, + [11] = { 35.7, 74.9, 440, 300 }, + [12] = { 47.4, 74.9, 440, 300 }, + [13] = { 36.7, 74.8, 440, 300 }, + [14] = { 43.5, 74.8, 440, 300 }, + [15] = { 30.9, 74.8, 440, 300 }, + [16] = { 29.9, 74.8, 440, 300 }, + [17] = { 48.3, 74.4, 440, 300 }, + [18] = { 36.8, 73.4, 440, 300 }, + [19] = { 28.9, 73.4, 440, 300 }, + [20] = { 30.9, 73.3, 440, 300 }, + [21] = { 30.9, 72, 440, 300 }, + [22] = { 29.9, 71.9, 440, 300 }, + [23] = { 36.7, 71.9, 440, 300 }, + [24] = { 46.3, 71.9, 440, 300 }, + [25] = { 30, 70.5, 440, 300 }, + [26] = { 35.8, 70.5, 440, 300 }, + [27] = { 33.8, 70.5, 440, 300 }, + [28] = { 45.3, 70.5, 440, 300 }, + [29] = { 33, 70.3, 440, 300 }, + [30] = { 48.3, 69.8, 440, 300 }, + [31] = { 33.7, 69, 440, 300 }, + [32] = { 45.6, 69, 440, 300 }, + [33] = { 34.9, 68.8, 440, 300 }, + [34] = { 35.7, 67.6, 440, 300 }, + [35] = { 32.8, 66, 440, 300 }, + [36] = { 35.6, 66, 440, 300 }, + [37] = { 26.1, 61.6, 440, 300 }, + [38] = { 26, 60.3, 440, 300 }, + [39] = { 27.1, 60.2, 440, 300 }, + [40] = { 25.7, 59.4, 440, 300 }, + [41] = { 29.9, 58.9, 440, 300 }, + [42] = { 27.5, 58.9, 440, 300 }, + [43] = { 27.9, 58.8, 440, 300 }, + [44] = { 25.2, 58.2, 440, 300 }, + [45] = { 29.7, 57.6, 440, 300 }, + [46] = { 26.1, 57.4, 440, 300 }, + [47] = { 33.8, 57, 440, 300 }, + [48] = { 28, 56.7, 440, 300 }, + [49] = { 30, 56.1, 440, 300 }, + [50] = { 25.5, 56, 440, 300 }, + [51] = { 28.9, 55.8, 440, 300 }, + [52] = { 29.6, 54.6, 440, 300 }, + [53] = { 29.1, 54.4, 440, 300 }, + [54] = { 30.8, 54.3, 440, 300 }, + [55] = { 25.6, 53.9, 440, 300 }, + }, + ["lvl"] = "48-49", + }, + [5422] = { + ["coords"] = { + [1] = { 78.3, 99.7, 400, 300 }, + [2] = { 55.1, 36.8, 440, 300 }, + [3] = { 54.6, 35.8, 440, 300 }, + [4] = { 53.9, 35.7, 440, 300 }, + [5] = { 52, 35.6, 440, 300 }, + [6] = { 53.1, 35.6, 440, 300 }, + [7] = { 56.6, 35.6, 440, 300 }, + [8] = { 55.9, 35, 440, 300 }, + [9] = { 51.2, 34.5, 440, 300 }, + [10] = { 50.4, 33, 440, 300 }, + [11] = { 57.9, 33, 440, 300 }, + [12] = { 54.6, 32.8, 440, 300 }, + [13] = { 55.8, 32.7, 440, 300 }, + [14] = { 52, 32.7, 440, 300 }, + [15] = { 54, 32.3, 440, 300 }, + [16] = { 54.2, 31.5, 440, 300 }, + [17] = { 58.4, 31.4, 440, 300 }, + [18] = { 49.2, 31.1, 440, 300 }, + [19] = { 57, 31.1, 440, 300 }, + [20] = { 52.9, 30.9, 440, 300 }, + [21] = { 48.2, 30.2, 440, 300 }, + [22] = { 48.3, 29.9, 440, 300 }, + [23] = { 54.6, 29.9, 440, 300 }, + [24] = { 49.2, 29.5, 440, 300 }, + [25] = { 66.5, 29, 440, 300 }, + [26] = { 65.8, 28.9, 440, 300 }, + [27] = { 48.3, 28.8, 440, 300 }, + [28] = { 61.9, 28.6, 440, 300 }, + [29] = { 49.1, 28.4, 440, 300 }, + [30] = { 58.5, 27.3, 440, 300 }, + [31] = { 63.5, 27.1, 440, 300 }, + [32] = { 47.3, 27.1, 440, 300 }, + [33] = { 55.8, 27, 440, 300 }, + [34] = { 66.1, 27, 440, 300 }, + [35] = { 47.7, 27, 440, 300 }, + [36] = { 62.8, 24.2, 440, 300 }, + [37] = { 55.2, 24.2, 440, 300 }, + [38] = { 48.3, 24.2, 440, 300 }, + [39] = { 54.1, 23.4, 440, 300 }, + [40] = { 57.2, 22.9, 440, 300 }, + [41] = { 62.5, 22.7, 440, 300 }, + [42] = { 63.3, 22.7, 440, 300 }, + [43] = { 53.1, 22.1, 440, 300 }, + [44] = { 63.5, 21, 440, 300 }, + [45] = { 65.7, 19.9, 440, 300 }, + }, + ["lvl"] = "40-41", + }, + [5423] = { + ["coords"] = { + [1] = { 54.1, 54.3, 440, 300 }, + [2] = { 53.3, 53.3, 440, 300 }, + [3] = { 52, 53.3, 440, 300 }, + [4] = { 56, 53.2, 440, 300 }, + [5] = { 58.2, 53.1, 440, 300 }, + [6] = { 59.9, 51.7, 440, 300 }, + [7] = { 53.2, 51.2, 440, 300 }, + [8] = { 55.1, 50.2, 440, 300 }, + [9] = { 55.9, 50.1, 440, 300 }, + [10] = { 53.2, 49.8, 440, 300 }, + [11] = { 57.6, 48.7, 440, 300 }, + [12] = { 59.9, 48.7, 440, 300 }, + [13] = { 55.3, 48.4, 440, 300 }, + [14] = { 52.2, 47.7, 440, 300 }, + [15] = { 58, 47.3, 440, 300 }, + [16] = { 60.9, 47.2, 440, 300 }, + [17] = { 61.8, 45.8, 440, 300 }, + [18] = { 55, 45.7, 440, 300 }, + [19] = { 59.1, 44.8, 440, 300 }, + [20] = { 60, 44.6, 440, 300 }, + [21] = { 63.8, 44.4, 440, 300 }, + [22] = { 55, 44.4, 440, 300 }, + [23] = { 61.8, 44.3, 440, 300 }, + [24] = { 57.9, 44.1, 440, 300 }, + [25] = { 52, 43, 440, 300 }, + [26] = { 64.2, 43, 440, 300 }, + [27] = { 40.4, 43, 440, 300 }, + [28] = { 58, 43, 440, 300 }, + [29] = { 47.3, 42.9, 440, 300 }, + [30] = { 61.8, 42.9, 440, 300 }, + [31] = { 43.5, 42.9, 440, 300 }, + [32] = { 55.1, 42.9, 440, 300 }, + [33] = { 54.4, 42.8, 440, 300 }, + [34] = { 57.2, 42.8, 440, 300 }, + [35] = { 51.3, 42.7, 440, 300 }, + [36] = { 44.4, 42.4, 440, 300 }, + [37] = { 50.2, 42.2, 440, 300 }, + [38] = { 46.3, 41.7, 440, 300 }, + [39] = { 47.2, 41.6, 440, 300 }, + [40] = { 51, 41.6, 440, 300 }, + [41] = { 61.8, 41.5, 440, 300 }, + [42] = { 57, 41.5, 440, 300 }, + [43] = { 48.3, 41.5, 440, 300 }, + [44] = { 54.1, 41.5, 440, 300 }, + [45] = { 56, 41.3, 440, 300 }, + [46] = { 62.8, 41.1, 440, 300 }, + [47] = { 53.2, 40.8, 440, 300 }, + [48] = { 56.3, 40.4, 440, 300 }, + [49] = { 42.5, 40.4, 440, 300 }, + [50] = { 46.3, 40.1, 440, 300 }, + [51] = { 53.2, 40.1, 440, 300 }, + [52] = { 47.3, 40, 440, 300 }, + [53] = { 48.1, 40, 440, 300 }, + [54] = { 50.2, 39.4, 440, 300 }, + [55] = { 46.5, 38.7, 440, 300 }, + [56] = { 40.6, 38.5, 440, 300 }, + [57] = { 51.2, 37.6, 440, 300 }, + [58] = { 44.4, 37.6, 440, 300 }, + [59] = { 48.3, 37.4, 440, 300 }, + [60] = { 52.1, 37.2, 440, 300 }, + [61] = { 49.9, 37, 440, 300 }, + [62] = { 50.2, 36.4, 440, 300 }, + [63] = { 45.4, 36.1, 440, 300 }, + [64] = { 43.4, 35.4, 440, 300 }, + [65] = { 50.2, 34.2, 440, 300 }, + [66] = { 47.3, 33.5, 440, 300 }, + [67] = { 39.6, 33.4, 440, 300 }, + [68] = { 37.7, 33, 440, 300 }, + [69] = { 48.2, 32.9, 440, 300 }, + [70] = { 42.9, 32.9, 440, 300 }, + [71] = { 46.4, 32.9, 440, 300 }, + [72] = { 36.6, 31.3, 440, 300 }, + [73] = { 44.5, 30.8, 440, 300 }, + [74] = { 45.7, 29.8, 440, 300 }, + [75] = { 36.9, 28.5, 440, 300 }, + [76] = { 34.8, 27.2, 440, 300 }, + [77] = { 46.5, 25.6, 440, 300 }, + [78] = { 47.4, 25.2, 440, 300 }, + [79] = { 44.5, 24, 440, 300 }, + [80] = { 39.7, 24, 440, 300 }, + [81] = { 34.8, 23.9, 440, 300 }, + [82] = { 46.3, 23, 440, 300 }, + [83] = { 36.1, 21.9, 440, 300 }, + [84] = { 34.7, 21.2, 440, 300 }, + [85] = { 85.2, 47.1, 490, 300 }, + [86] = { 85, 35.8, 490, 300 }, + [87] = { 52.2, 48.7, 440, 300 }, + [88] = { 51.2, 38.6, 440, 300 }, + }, + ["lvl"] = "43-44", + }, + [5424] = { + ["coords"] = { + [1] = { 49.3, 76.3, 440, 300 }, + [2] = { 29, 75.9, 440, 300 }, + [3] = { 37.6, 74.9, 440, 300 }, + [4] = { 44.6, 74.8, 440, 300 }, + [5] = { 33.7, 74.8, 440, 300 }, + [6] = { 31.9, 73.4, 440, 300 }, + [7] = { 47.3, 72, 440, 300 }, + [8] = { 34.6, 70.5, 440, 300 }, + [9] = { 32.9, 69.1, 440, 300 }, + [10] = { 40.6, 67.7, 440, 300 }, + [11] = { 34.6, 67.6, 440, 300 }, + [12] = { 39.7, 67.6, 440, 300 }, + [13] = { 33.8, 67.5, 440, 300 }, + [14] = { 44.1, 67.4, 440, 300 }, + [15] = { 37.8, 66.1, 440, 300 }, + [16] = { 38.6, 66.1, 440, 300 }, + [17] = { 41.6, 66, 440, 300 }, + [18] = { 42.3, 64.9, 440, 300 }, + [19] = { 35.7, 64.6, 440, 300 }, + [20] = { 34.7, 63.2, 440, 300 }, + [21] = { 33, 63.2, 440, 300 }, + [22] = { 50.2, 63.2, 440, 300 }, + [23] = { 35.6, 63.1, 440, 300 }, + [24] = { 52.2, 61.9, 440, 300 }, + [25] = { 37.6, 61.9, 440, 300 }, + [26] = { 51.3, 61.9, 440, 300 }, + [27] = { 42.5, 61.7, 440, 300 }, + [28] = { 49.3, 61.7, 440, 300 }, + [29] = { 38.7, 61.6, 440, 300 }, + [30] = { 34.9, 61.6, 440, 300 }, + [31] = { 33.9, 61.3, 440, 300 }, + [32] = { 56, 61, 440, 300 }, + [33] = { 36.7, 60.9, 440, 300 }, + [34] = { 40.9, 60.4, 440, 300 }, + [35] = { 34.9, 60.4, 440, 300 }, + [36] = { 28.1, 60.2, 440, 300 }, + [37] = { 52, 60.1, 440, 300 }, + [38] = { 30.7, 60, 440, 300 }, + [39] = { 41.3, 59.2, 440, 300 }, + [40] = { 45.4, 59, 440, 300 }, + [41] = { 54.1, 59, 440, 300 }, + [42] = { 55.5, 58.9, 440, 300 }, + [43] = { 44.5, 58.9, 440, 300 }, + [44] = { 46.7, 58.9, 440, 300 }, + [45] = { 59.7, 58.8, 440, 300 }, + [46] = { 43.5, 58.7, 440, 300 }, + [47] = { 34.7, 58, 440, 300 }, + [48] = { 43.7, 57.6, 440, 300 }, + [49] = { 31.9, 57.3, 440, 300 }, + [50] = { 51.1, 56, 440, 300 }, + [51] = { 48.3, 55.9, 440, 300 }, + [52] = { 33, 55.9, 440, 300 }, + [53] = { 31.9, 55.6, 440, 300 }, + [54] = { 45.2, 54.9, 440, 300 }, + [55] = { 58.9, 54.9, 440, 300 }, + [56] = { 33.1, 54.6, 440, 300 }, + [57] = { 35.8, 54.3, 440, 300 }, + [58] = { 31.8, 54.2, 440, 300 }, + [59] = { 33.9, 54.1, 440, 300 }, + [60] = { 32, 53.3, 440, 300 }, + [61] = { 31.2, 53.2, 440, 300 }, + [62] = { 59.9, 53.1, 440, 300 }, + [63] = { 58.9, 53, 440, 300 }, + [64] = { 29.4, 53, 440, 300 }, + [65] = { 47.3, 52.7, 440, 300 }, + [66] = { 29.9, 51.7, 440, 300 }, + [67] = { 49.2, 51, 440, 300 }, + [68] = { 29.6, 50.4, 440, 300 }, + [69] = { 45.1, 50.2, 440, 300 }, + [70] = { 47.1, 50.1, 440, 300 }, + [71] = { 36.6, 49.8, 440, 300 }, + [72] = { 50.2, 48.9, 440, 300 }, + [73] = { 49.2, 48.4, 440, 300 }, + [74] = { 51.1, 48, 440, 300 }, + [75] = { 38.7, 47.6, 440, 300 }, + [76] = { 44.1, 47.4, 440, 300 }, + [77] = { 40.5, 47.3, 440, 300 }, + [78] = { 42.4, 47.3, 440, 300 }, + [79] = { 41.4, 47.3, 440, 300 }, + [80] = { 37.4, 47.2, 440, 300 }, + [81] = { 42.6, 46, 440, 300 }, + [82] = { 45.3, 45.9, 440, 300 }, + [83] = { 44.5, 45.8, 440, 300 }, + [84] = { 46.3, 45.8, 440, 300 }, + [85] = { 51.2, 45.7, 440, 300 }, + [86] = { 51.1, 44.9, 440, 300 }, + [87] = { 41.6, 44.7, 440, 300 }, + [88] = { 45.3, 44.6, 440, 300 }, + [89] = { 46.1, 44.5, 440, 300 }, + [90] = { 37.8, 44.3, 440, 300 }, + [91] = { 38.6, 43.7, 440, 300 }, + [92] = { 38.3, 43, 440, 300 }, + [93] = { 40, 42.9, 440, 300 }, + [94] = { 39.6, 41.5, 440, 300 }, + [95] = { 38.6, 37.2, 440, 300 }, + [96] = { 38, 35.8, 440, 300 }, + [97] = { 36.7, 35.5, 440, 300 }, + [98] = { 39.5, 34.6, 440, 300 }, + [99] = { 75.6, 90.3, 490, 300 }, + [100] = { 34.7, 64.6, 440, 300 }, + [101] = { 29.9, 58.9, 440, 300 }, + [102] = { 53.1, 56, 440, 300 }, + }, + ["lvl"] = "46-47", + }, + [5425] = { + ["coords"] = { + [1] = { 54.5, 38.7, 440, 300 }, + [2] = { 56, 37.5, 440, 300 }, + [3] = { 54.2, 37.3, 440, 300 }, + [4] = { 49.4, 36.6, 440, 300 }, + [5] = { 52.1, 35.8, 440, 300 }, + [6] = { 49.3, 35.6, 440, 300 }, + [7] = { 52, 34.5, 440, 300 }, + [8] = { 54.1, 34, 440, 300 }, + [9] = { 40.5, 33.3, 440, 300 }, + [10] = { 57, 32.8, 440, 300 }, + [11] = { 51.5, 32.8, 440, 300 }, + [12] = { 51.1, 32.7, 440, 300 }, + [13] = { 58.7, 32.7, 440, 300 }, + [14] = { 52.9, 32.4, 440, 300 }, + [15] = { 47.3, 32.1, 440, 300 }, + [16] = { 52.1, 32, 440, 300 }, + [17] = { 48.3, 32, 440, 300 }, + [18] = { 55.2, 31.7, 440, 300 }, + [19] = { 57.9, 31.1, 440, 300 }, + [20] = { 34.9, 30.9, 440, 300 }, + [21] = { 55.9, 30.7, 440, 300 }, + [22] = { 35.6, 30.3, 440, 300 }, + [23] = { 60.2, 30, 440, 300 }, + [24] = { 37.6, 29.9, 440, 300 }, + [25] = { 43.4, 29.9, 440, 300 }, + [26] = { 65.5, 29.6, 440, 300 }, + [27] = { 46.4, 29.4, 440, 300 }, + [28] = { 35.6, 28.7, 440, 300 }, + [29] = { 34.7, 28.5, 440, 300 }, + [30] = { 43.7, 28.5, 440, 300 }, + [31] = { 44.4, 28.4, 440, 300 }, + [32] = { 61.1, 28.3, 440, 300 }, + [33] = { 45.6, 28.3, 440, 300 }, + [34] = { 49.2, 28.3, 440, 300 }, + [35] = { 47.1, 28.2, 440, 300 }, + [36] = { 42.5, 27.8, 440, 300 }, + [37] = { 38.5, 27.4, 440, 300 }, + [38] = { 49.2, 27.2, 440, 300 }, + [39] = { 41.9, 27.1, 440, 300 }, + [40] = { 43.4, 26.7, 440, 300 }, + [41] = { 45, 26.7, 440, 300 }, + [42] = { 48.3, 26.3, 440, 300 }, + [43] = { 55.1, 26, 440, 300 }, + [44] = { 58.3, 25.6, 440, 300 }, + [45] = { 40.1, 25.6, 440, 300 }, + [46] = { 57.2, 25.6, 440, 300 }, + [47] = { 47.3, 25.5, 440, 300 }, + [48] = { 43.7, 25.5, 440, 300 }, + [49] = { 53.5, 25.4, 440, 300 }, + [50] = { 55.9, 25.3, 440, 300 }, + [51] = { 44.2, 25.2, 440, 300 }, + [52] = { 56, 24.4, 440, 300 }, + [53] = { 56.8, 24, 440, 300 }, + [54] = { 46, 24, 440, 300 }, + [55] = { 53.3, 23.9, 440, 300 }, + [56] = { 39.6, 22.6, 440, 300 }, + [57] = { 44.1, 22.5, 440, 300 }, + [58] = { 58.2, 22.4, 440, 300 }, + [59] = { 62.8, 21.4, 440, 300 }, + [60] = { 61.9, 20.5, 440, 300 }, + [61] = { 85.4, 53.9, 490, 300 }, + [62] = { 85.1, 49.4, 490, 300 }, + [63] = { 48.3, 29.9, 440, 300 }, + }, + ["lvl"] = "41-42", + }, + [5426] = { + ["coords"] = { + [1] = { 51.2, 63.4, 440, 300 }, + [2] = { 52.1, 63.2, 440, 300 }, + [3] = { 45.2, 61.8, 440, 300 }, + [4] = { 61.7, 60.6, 440, 300 }, + [5] = { 44.4, 60.4, 440, 300 }, + [6] = { 60.7, 60.3, 440, 300 }, + [7] = { 59.9, 60.3, 440, 300 }, + [8] = { 57.9, 60.3, 440, 300 }, + [9] = { 51.2, 60.3, 440, 300 }, + [10] = { 58.8, 60, 440, 300 }, + [11] = { 58.7, 59, 440, 300 }, + [12] = { 48.3, 58.9, 440, 300 }, + [13] = { 57.9, 58.9, 440, 300 }, + [14] = { 53.2, 58.6, 440, 300 }, + [15] = { 56.1, 58.4, 440, 300 }, + [16] = { 56.2, 57.8, 440, 300 }, + [17] = { 47.3, 57.6, 440, 300 }, + [18] = { 60.8, 57.6, 440, 300 }, + [19] = { 58, 57.5, 440, 300 }, + [20] = { 50.3, 57.5, 440, 300 }, + [21] = { 44.4, 57.4, 440, 300 }, + [22] = { 49.2, 57.4, 440, 300 }, + [23] = { 53.2, 57.4, 440, 300 }, + [24] = { 51.9, 57.3, 440, 300 }, + [25] = { 61.8, 57.3, 440, 300 }, + [26] = { 63.7, 57.3, 440, 300 }, + [27] = { 57, 57.1, 440, 300 }, + [28] = { 60.8, 56.5, 440, 300 }, + [29] = { 63.8, 56.4, 440, 300 }, + [30] = { 56, 56.1, 440, 300 }, + [31] = { 58, 56.1, 440, 300 }, + [32] = { 50.2, 55.9, 440, 300 }, + [33] = { 58.9, 55.4, 440, 300 }, + [34] = { 53, 55.2, 440, 300 }, + [35] = { 57, 54.9, 440, 300 }, + [36] = { 51.3, 54.7, 440, 300 }, + [37] = { 52, 54.5, 440, 300 }, + [38] = { 60.9, 54.5, 440, 300 }, + [39] = { 50.3, 54, 440, 300 }, + [40] = { 49.2, 53.7, 440, 300 }, + [41] = { 48.5, 53.4, 440, 300 }, + [42] = { 55.1, 53.1, 440, 300 }, + [43] = { 60.9, 53.1, 440, 300 }, + [44] = { 49.7, 53.1, 440, 300 }, + [45] = { 45.6, 53, 440, 300 }, + [46] = { 49.3, 52.8, 440, 300 }, + [47] = { 46.4, 52.4, 440, 300 }, + [48] = { 50.6, 52.1, 440, 300 }, + [49] = { 50, 51.8, 440, 300 }, + [50] = { 47.1, 51.7, 440, 300 }, + [51] = { 57.9, 51.7, 440, 300 }, + [52] = { 57, 51.6, 440, 300 }, + [53] = { 45.1, 51.5, 440, 300 }, + [54] = { 52.2, 51.4, 440, 300 }, + [55] = { 48.3, 51, 440, 300 }, + [56] = { 55.1, 50.9, 440, 300 }, + [57] = { 37.7, 50.5, 440, 300 }, + [58] = { 58.5, 50.1, 440, 300 }, + [59] = { 58, 49.4, 440, 300 }, + [60] = { 56.9, 49.3, 440, 300 }, + [61] = { 53.3, 49, 440, 300 }, + [62] = { 54.1, 48.9, 440, 300 }, + [63] = { 37.6, 48.8, 440, 300 }, + [64] = { 38.6, 48.8, 440, 300 }, + [65] = { 56.2, 48.6, 440, 300 }, + [66] = { 39.6, 48, 440, 300 }, + [67] = { 39.7, 47, 440, 300 }, + [68] = { 48.2, 46.6, 440, 300 }, + [69] = { 47, 46.5, 440, 300 }, + [70] = { 47.7, 46.1, 440, 300 }, + [71] = { 56, 46, 440, 300 }, + [72] = { 54.3, 45.9, 440, 300 }, + [73] = { 48.7, 45.8, 440, 300 }, + [74] = { 62.7, 45.8, 440, 300 }, + [75] = { 60.8, 45.4, 440, 300 }, + [76] = { 48.8, 45, 440, 300 }, + [77] = { 48.3, 45, 440, 300 }, + [78] = { 39.5, 44.3, 440, 300 }, + [79] = { 56, 44.3, 440, 300 }, + [80] = { 53.2, 43.4, 440, 300 }, + [81] = { 46.2, 43.1, 440, 300 }, + [82] = { 58.9, 43, 440, 300 }, + [83] = { 60.9, 43, 440, 300 }, + [84] = { 59.8, 42.9, 440, 300 }, + [85] = { 62.8, 42.8, 440, 300 }, + [86] = { 45.3, 42.5, 440, 300 }, + [87] = { 49.6, 42.3, 440, 300 }, + [88] = { 43, 42, 440, 300 }, + [89] = { 65.6, 42, 440, 300 }, + [90] = { 52.3, 41.8, 440, 300 }, + [91] = { 55, 41.6, 440, 300 }, + [92] = { 49.3, 41.6, 440, 300 }, + [93] = { 45.7, 41.5, 440, 300 }, + [94] = { 59.8, 41.5, 440, 300 }, + [95] = { 42.5, 41.4, 440, 300 }, + [96] = { 44.4, 41.4, 440, 300 }, + [97] = { 44.8, 40.1, 440, 300 }, + [98] = { 55.5, 40.1, 440, 300 }, + [99] = { 57, 39.9, 440, 300 }, + [100] = { 44.7, 39.6, 440, 300 }, + [101] = { 45.5, 39.3, 440, 300 }, + [102] = { 45, 39.3, 440, 300 }, + [103] = { 44.4, 39.2, 440, 300 }, + [104] = { 41.4, 38.8, 440, 300 }, + [105] = { 45.8, 38.6, 440, 300 }, + [106] = { 37.6, 38.2, 440, 300 }, + [107] = { 45.8, 38, 440, 300 }, + [108] = { 37.8, 37.2, 440, 300 }, + [109] = { 41.4, 37.2, 440, 300 }, + [110] = { 36.7, 37.1, 440, 300 }, + [111] = { 42.7, 37, 440, 300 }, + [112] = { 39.6, 36.8, 440, 300 }, + [113] = { 51.2, 36, 440, 300 }, + [114] = { 42.5, 35.8, 440, 300 }, + [115] = { 47.5, 35.7, 440, 300 }, + [116] = { 38.9, 35.6, 440, 300 }, + [117] = { 40.4, 35.6, 440, 300 }, + [118] = { 35.7, 35.5, 440, 300 }, + [119] = { 45.5, 34.5, 440, 300 }, + [120] = { 35.4, 34.4, 440, 300 }, + [121] = { 40.9, 34.4, 440, 300 }, + [122] = { 41.4, 34.3, 440, 300 }, + [123] = { 37.7, 33.8, 440, 300 }, + [124] = { 45.9, 31.3, 440, 300 }, + [125] = { 45.4, 30.7, 440, 300 }, + [126] = { 57, 53.1, 440, 300 }, + [127] = { 52.2, 50.2, 440, 300 }, + [128] = { 53.1, 56, 440, 300 }, + [129] = { 52.2, 48.7, 440, 300 }, + }, + ["lvl"] = "44-45", + }, + [5427] = { + ["coords"] = { + [1] = { 32.9, 79.1, 440, 300 }, + [2] = { 40.6, 77.8, 440, 300 }, + [3] = { 32.8, 77.8, 440, 300 }, + [4] = { 34.7, 77.7, 440, 300 }, + [5] = { 29.9, 77.7, 440, 300 }, + [6] = { 33.7, 77.7, 440, 300 }, + [7] = { 30.9, 77.7, 440, 300 }, + [8] = { 48.3, 77.6, 440, 300 }, + [9] = { 43.4, 77.5, 440, 300 }, + [10] = { 47.2, 76.5, 440, 300 }, + [11] = { 43.5, 76.4, 440, 300 }, + [12] = { 44.5, 76.3, 440, 300 }, + [13] = { 46.3, 76.3, 440, 300 }, + [14] = { 32.9, 76.3, 440, 300 }, + [15] = { 48.3, 76.3, 440, 300 }, + [16] = { 45.4, 76.3, 440, 300 }, + [17] = { 38.8, 76.1, 440, 300 }, + [18] = { 34.7, 74.9, 440, 300 }, + [19] = { 46.4, 74.9, 440, 300 }, + [20] = { 31.9, 74.9, 440, 300 }, + [21] = { 45.4, 74.8, 440, 300 }, + [22] = { 30.2, 73.5, 440, 300 }, + [23] = { 35.7, 73.4, 440, 300 }, + [24] = { 37.7, 72.2, 440, 300 }, + [25] = { 35.7, 71.9, 440, 300 }, + [26] = { 29, 71.9, 440, 300 }, + [27] = { 46, 70.7, 440, 300 }, + [28] = { 47.1, 70.6, 440, 300 }, + [29] = { 37.8, 70.5, 440, 300 }, + [30] = { 30.9, 70.2, 440, 300 }, + [31] = { 49.3, 69.3, 440, 300 }, + [32] = { 30.1, 69.2, 440, 300 }, + [33] = { 46.5, 69.2, 440, 300 }, + [34] = { 35.7, 68.9, 440, 300 }, + [35] = { 31.9, 68.8, 440, 300 }, + [36] = { 37.1, 68.4, 440, 300 }, + [37] = { 37.6, 68.4, 440, 300 }, + [38] = { 36.7, 68.4, 440, 300 }, + [39] = { 38.2, 67.7, 440, 300 }, + [40] = { 37.3, 67.5, 440, 300 }, + [41] = { 31.9, 67.5, 440, 300 }, + [42] = { 32.9, 67.5, 440, 300 }, + [43] = { 37.6, 67.4, 440, 300 }, + [44] = { 33.8, 66.2, 440, 300 }, + [45] = { 34.3, 66.1, 440, 300 }, + [46] = { 33.7, 64.6, 440, 300 }, + [47] = { 40.5, 64.6, 440, 300 }, + [48] = { 41.9, 63.9, 440, 300 }, + [49] = { 40.2, 63.9, 440, 300 }, + [50] = { 32.1, 63.7, 440, 300 }, + [51] = { 41.6, 63.4, 440, 300 }, + [52] = { 34.1, 63.3, 440, 300 }, + [53] = { 42.5, 63.3, 440, 300 }, + [54] = { 40.6, 63.3, 440, 300 }, + [55] = { 42, 62.6, 440, 300 }, + [56] = { 41.4, 62.4, 440, 300 }, + [57] = { 31.4, 61.8, 440, 300 }, + [58] = { 31.4, 61.1, 440, 300 }, + [59] = { 32.7, 61, 440, 300 }, + [60] = { 30.3, 60.9, 440, 300 }, + [61] = { 35.8, 60.5, 440, 300 }, + [62] = { 38.4, 60.5, 440, 300 }, + [63] = { 32.8, 60.2, 440, 300 }, + [64] = { 33.7, 59.7, 440, 300 }, + [65] = { 29, 59.3, 440, 300 }, + [66] = { 32.3, 58.9, 440, 300 }, + [67] = { 34, 58.9, 440, 300 }, + [68] = { 31.1, 58.9, 440, 300 }, + [69] = { 28.6, 57.4, 440, 300 }, + [70] = { 33.3, 57.4, 440, 300 }, + [71] = { 30.9, 57.1, 440, 300 }, + [72] = { 25.7, 56.4, 440, 300 }, + [73] = { 27.7, 56.1, 440, 300 }, + [74] = { 34, 56, 440, 300 }, + [75] = { 31.3, 56, 440, 300 }, + [76] = { 30.4, 53.2, 440, 300 }, + [77] = { 43.4, 52.4, 440, 300 }, + [78] = { 43.4, 51.7, 440, 300 }, + [79] = { 42.9, 51.4, 440, 300 }, + [80] = { 43.4, 51, 440, 300 }, + [81] = { 43.9, 51, 440, 300 }, + [82] = { 42.9, 50.7, 440, 300 }, + [83] = { 43.5, 50.3, 440, 300 }, + [84] = { 43.9, 50.2, 440, 300 }, + [85] = { 44.4, 50.1, 440, 300 }, + [86] = { 44.4, 49.6, 440, 300 }, + [87] = { 48.2, 49.5, 440, 300 }, + [88] = { 44.9, 49.5, 440, 300 }, + [89] = { 51.1, 49.4, 440, 300 }, + [90] = { 40.6, 49.2, 440, 300 }, + [91] = { 29.5, 48.9, 440, 300 }, + [92] = { 43.4, 48.7, 440, 300 }, + [93] = { 42.5, 48.6, 440, 300 }, + [94] = { 45.4, 47.4, 440, 300 }, + [95] = { 43.1, 47.3, 440, 300 }, + [96] = { 50.4, 46, 440, 300 }, + [97] = { 40.5, 45, 440, 300 }, + [98] = { 44.3, 44.4, 440, 300 }, + [99] = { 42.4, 44.3, 440, 300 }, + [100] = { 75.3, 87.4, 490, 300 }, + [101] = { 34.7, 64.6, 440, 300 }, + [102] = { 29.9, 58.9, 440, 300 }, + }, + ["lvl"] = "47-48", + }, + [5428] = { + ["coords"] = { + [1] = { 49.2, 37.1, 440, 300 }, + [2] = { 48.9, 36.4, 440, 300 }, + [3] = { 49.3, 36.2, 440, 300 }, + [4] = { 49.8, 35.9, 440, 300 }, + [5] = { 49.7, 35.8, 440, 300 }, + [6] = { 49.3, 35.5, 440, 300 }, + [7] = { 49.9, 35.3, 440, 300 }, + [8] = { 49.8, 35.3, 440, 300 }, + [9] = { 40.7, 33.1, 440, 300 }, + [10] = { 57.4, 31.9, 440, 300 }, + [11] = { 49.9, 31.2, 440, 300 }, + [12] = { 59.2, 31, 440, 300 }, + [13] = { 45.9, 29, 440, 300 }, + [14] = { 35.3, 29, 440, 300 }, + [15] = { 48.7, 28.5, 440, 300 }, + [16] = { 49.4, 28.2, 440, 300 }, + [17] = { 56.1, 25.4, 440, 300 }, + [18] = { 40.9, 24.9, 440, 300 }, + }, + ["lvl"] = "41-43", + }, + [5429] = { + ["coords"] = { + [1] = { 49.8, 53.7, 440, 300 }, + [2] = { 50.7, 53.4, 440, 300 }, + [3] = { 52.3, 53.1, 440, 300 }, + [4] = { 50.3, 53, 440, 300 }, + [5] = { 48.8, 52.9, 440, 300 }, + [6] = { 55.1, 51.1, 440, 300 }, + [7] = { 47.1, 48.2, 440, 300 }, + [8] = { 46.9, 47.4, 440, 300 }, + [9] = { 47.7, 47.3, 440, 300 }, + [10] = { 55.2, 47.1, 440, 300 }, + [11] = { 47.5, 46.7, 440, 300 }, + [12] = { 58.6, 46, 440, 300 }, + [13] = { 47.3, 45.7, 440, 300 }, + [14] = { 48, 45.6, 440, 300 }, + [15] = { 47.7, 45, 440, 300 }, + [16] = { 48.3, 44.2, 440, 300 }, + [17] = { 48.8, 43.7, 440, 300 }, + [18] = { 37.7, 43.2, 440, 300 }, + [19] = { 49.3, 43.1, 440, 300 }, + [20] = { 48.9, 42.4, 440, 300 }, + [21] = { 48.2, 41.3, 440, 300 }, + [22] = { 43.3, 41.3, 440, 300 }, + [23] = { 44, 41, 440, 300 }, + [24] = { 42.8, 40.9, 440, 300 }, + [25] = { 44.5, 40.7, 440, 300 }, + [26] = { 43.5, 40.6, 440, 300 }, + [27] = { 44.4, 40.1, 440, 300 }, + [28] = { 43.4, 39.9, 440, 300 }, + [29] = { 45.3, 39.9, 440, 300 }, + [30] = { 43.8, 39.9, 440, 300 }, + [31] = { 44.1, 39.5, 440, 300 }, + [32] = { 48.6, 39.2, 440, 300 }, + [33] = { 41.5, 38.8, 440, 300 }, + [34] = { 44.9, 38.6, 440, 300 }, + [35] = { 45.4, 38.5, 440, 300 }, + [36] = { 45.4, 37.9, 440, 300 }, + [37] = { 44.9, 37.8, 440, 300 }, + [38] = { 45.8, 37.2, 440, 300 }, + [39] = { 47.5, 36, 440, 300 }, + [40] = { 40.4, 35.6, 440, 300 }, + [41] = { 36.7, 34.8, 440, 300 }, + }, + ["lvl"] = "43-45", + }, + [5430] = { + ["coords"] = { + [1] = { 32, 74.9, 440, 300 }, + [2] = { 36.6, 70.4, 440, 300 }, + [3] = { 36.7, 69.7, 440, 300 }, + [4] = { 37.3, 69.1, 440, 300 }, + [5] = { 36.7, 69.1, 440, 300 }, + [6] = { 40, 64.6, 440, 300 }, + [7] = { 41.1, 64.6, 440, 300 }, + [8] = { 39.6, 64.6, 440, 300 }, + [9] = { 41.6, 64.1, 440, 300 }, + [10] = { 41.1, 63.9, 440, 300 }, + [11] = { 39.6, 63.9, 440, 300 }, + [12] = { 42.1, 63.4, 440, 300 }, + [13] = { 40.9, 63.2, 440, 300 }, + [14] = { 31.9, 61.1, 440, 300 }, + [15] = { 33.3, 60.3, 440, 300 }, + [16] = { 31.9, 60.3, 440, 300 }, + [17] = { 32.8, 59.6, 440, 300 }, + [18] = { 29.2, 55.4, 440, 300 }, + }, + ["lvl"] = "47-49", + }, + [5431] = { + ["coords"] = { + [1] = { 60.9, 82, 440, 300 }, + [2] = { 60.6, 81.7, 440, 300 }, + [3] = { 61.3, 81.4, 440, 300 }, + [4] = { 64.7, 65.6, 440, 300 }, + [5] = { 64.5, 64.7, 440, 300 }, + [6] = { 65.1, 64.7, 440, 300 }, + [7] = { 64.5, 64, 440, 300 }, + [8] = { 64.4, 63.2, 440, 300 }, + [9] = { 66.3, 63.1, 440, 300 }, + [10] = { 65.6, 63.1, 440, 300 }, + [11] = { 65.7, 62.7, 440, 300 }, + [12] = { 67.1, 62, 440, 300 }, + [13] = { 65.1, 62, 440, 300 }, + [14] = { 66, 61.9, 440, 300 }, + [15] = { 66.6, 61.8, 440, 300 }, + [16] = { 64.3, 61.7, 440, 300 }, + [17] = { 64.8, 60.9, 440, 300 }, + [18] = { 67.1, 60.4, 440, 300 }, + [19] = { 65.9, 60.3, 440, 300 }, + [20] = { 65.3, 60.3, 440, 300 }, + [21] = { 67.5, 59.6, 440, 300 }, + [22] = { 65.6, 59.3, 440, 300 }, + [23] = { 68.2, 59.1, 440, 300 }, + [24] = { 68.9, 59, 440, 300 }, + [25] = { 66.3, 58.9, 440, 300 }, + [26] = { 67.3, 58.9, 440, 300 }, + [27] = { 68.7, 58.1, 440, 300 }, + [28] = { 70, 57.9, 440, 300 }, + [29] = { 67, 57.5, 440, 300 }, + [30] = { 68.2, 57.2, 440, 300 }, + [31] = { 71.2, 57.2, 440, 300 }, + [32] = { 71.4, 57.2, 440, 300 }, + [33] = { 69.2, 57.1, 440, 300 }, + [34] = { 69.8, 56.7, 440, 300 }, + [35] = { 71.9, 56.3, 440, 300 }, + [36] = { 69.9, 55.7, 440, 300 }, + [37] = { 70.9, 55.7, 440, 300 }, + [38] = { 72.5, 55.5, 440, 300 }, + [39] = { 70.7, 55.1, 440, 300 }, + [40] = { 72, 54.7, 440, 300 }, + [41] = { 71.3, 54.7, 440, 300 }, + [42] = { 71.4, 53.6, 440, 300 }, + }, + ["lvl"] = "48-50", + }, + [5432] = { + ["coords"] = { + [1] = { 60.2, 81.6, 440, 300 }, + }, + ["lvl"] = "48-50", + ["rnk"] = "1", + }, + [5433] = { + ["coords"] = {}, + ["lvl"] = "50", + }, + [5434] = { + ["coords"] = { + [1] = { 68.1, 60.7, 15, 900 }, + [2] = { 68.8, 59.1, 15, 900 }, + [3] = { 71.8, 56, 15, 900 }, + [4] = { 62.3, 28.5, 15, 900 }, + }, + ["lvl"] = "46-47", + ["rnk"] = "1", + }, + [5435] = { + ["coords"] = { + [1] = { 72.2, 90.6, 14, 300 }, + [2] = { 44.3, 82.9, 14, 300 }, + [3] = { 72.9, 67.6, 14, 300 }, + [4] = { 68, 60.6, 14, 300 }, + [5] = { 64.5, 37.3, 14, 300 }, + [6] = { 65.3, 25.4, 14, 300 }, + [7] = { 65.2, 14.9, 14, 300 }, + [8] = { 81.1, 49.8, 17, 300 }, + [9] = { 82.9, 44.4, 17, 300 }, + [10] = { 68.4, 40.4, 17, 300 }, + [11] = { 55.4, 20.5, 85, 300 }, + [12] = { 29.3, 20.4, 85, 300 }, + [13] = { 44.1, 20, 85, 300 }, + }, + ["lvl"] = "12-13", + ["rnk"] = "1", + }, + [5436] = { + ["coords"] = {}, + ["lvl"] = "50", + }, + [5437] = { + ["coords"] = {}, + ["lvl"] = "50", + }, + [5438] = { + ["coords"] = {}, + ["lvl"] = "50", + }, + [5439] = { + ["coords"] = {}, + ["lvl"] = "50", + }, + [5440] = { + ["coords"] = {}, + ["lvl"] = "50", + }, + [5441] = { + ["coords"] = { + [1] = { 52.5, 77.9, 440, 300 }, + [2] = { 51.2, 77.8, 440, 300 }, + [3] = { 50.7, 77.1, 440, 300 }, + [4] = { 54.8, 76.9, 440, 300 }, + [5] = { 51.6, 76.8, 440, 300 }, + [6] = { 51.2, 76.2, 440, 300 }, + [7] = { 52.1, 76.2, 440, 300 }, + [8] = { 50.2, 76.2, 440, 300 }, + [9] = { 56.9, 76.2, 440, 300 }, + [10] = { 57.4, 75.6, 440, 300 }, + [11] = { 50.7, 75.6, 440, 300 }, + [12] = { 49.7, 75.6, 440, 300 }, + [13] = { 51.7, 75.6, 440, 300 }, + [14] = { 56.5, 75.5, 440, 300 }, + [15] = { 54.3, 75.5, 440, 300 }, + [16] = { 56.1, 75.3, 440, 300 }, + [17] = { 57, 75, 440, 300 }, + [18] = { 51.1, 74.9, 440, 300 }, + [19] = { 52.3, 74.8, 440, 300 }, + [20] = { 50.2, 74.8, 440, 300 }, + [21] = { 56.5, 74.6, 440, 300 }, + [22] = { 49.8, 74.1, 440, 300 }, + [23] = { 57.5, 74.1, 440, 300 }, + [24] = { 50.8, 74.1, 440, 300 }, + [25] = { 51.4, 74.1, 440, 300 }, + [26] = { 52.7, 73.8, 440, 300 }, + [27] = { 55.2, 73.7, 440, 300 }, + [28] = { 50.3, 73.4, 440, 300 }, + [29] = { 51.2, 73.1, 440, 300 }, + [30] = { 52.8, 72.9, 440, 300 }, + [31] = { 57.3, 72.7, 440, 300 }, + [32] = { 52, 72.5, 440, 300 }, + [33] = { 53.9, 72.3, 440, 300 }, + [34] = { 50.7, 72.2, 440, 300 }, + [35] = { 52.1, 72.1, 440, 300 }, + [36] = { 49.3, 72, 440, 300 }, + [37] = { 57.1, 72, 440, 300 }, + [38] = { 53.1, 71.9, 440, 300 }, + [39] = { 50.3, 71.8, 440, 300 }, + [40] = { 56.8, 71.7, 440, 300 }, + [41] = { 52.7, 71.4, 440, 300 }, + [42] = { 57.6, 71.2, 440, 300 }, + [43] = { 57, 71, 440, 300 }, + [44] = { 50.6, 70.9, 440, 300 }, + [45] = { 51.6, 70.8, 440, 300 }, + [46] = { 50.9, 70.6, 440, 300 }, + [47] = { 57.9, 70.6, 440, 300 }, + [48] = { 52.2, 70.6, 440, 300 }, + [49] = { 57.5, 70.5, 440, 300 }, + [50] = { 57.3, 70.3, 440, 300 }, + [51] = { 55.4, 70.3, 440, 300 }, + [52] = { 57.4, 69.6, 440, 300 }, + [53] = { 52.8, 69.6, 440, 300 }, + [54] = { 51.8, 69.6, 440, 300 }, + [55] = { 52.1, 69, 440, 300 }, + [56] = { 52.6, 68.4, 440, 300 }, + [57] = { 51.8, 68.3, 440, 300 }, + [58] = { 56.1, 68.3, 440, 300 }, + [59] = { 52.1, 67.8, 440, 300 }, + [60] = { 53, 67.7, 440, 300 }, + [61] = { 51, 67.7, 440, 300 }, + [62] = { 59, 67.6, 440, 300 }, + [63] = { 52.5, 67, 440, 300 }, + [64] = { 53.6, 66.9, 440, 300 }, + [65] = { 51.6, 66.9, 440, 300 }, + [66] = { 55.5, 66.8, 440, 300 }, + [67] = { 57.4, 66.8, 440, 300 }, + [68] = { 56.5, 66.8, 440, 300 }, + [69] = { 58.6, 66.8, 440, 300 }, + [70] = { 54.5, 66.7, 440, 300 }, + [71] = { 55.9, 66.6, 440, 300 }, + [72] = { 59.2, 66.5, 440, 300 }, + [73] = { 52.1, 66.5, 440, 300 }, + [74] = { 50.7, 66.3, 440, 300 }, + [75] = { 57, 66.1, 440, 300 }, + [76] = { 54.1, 66.1, 440, 300 }, + [77] = { 58, 66.1, 440, 300 }, + [78] = { 53.1, 66.1, 440, 300 }, + [79] = { 55, 65.9, 440, 300 }, + [80] = { 52.6, 65.7, 440, 300 }, + [81] = { 51.3, 65.7, 440, 300 }, + [82] = { 58.8, 65.6, 440, 300 }, + [83] = { 53.6, 65.5, 440, 300 }, + [84] = { 57.4, 65.4, 440, 300 }, + [85] = { 54.6, 65.4, 440, 300 }, + [86] = { 57, 65, 440, 300 }, + [87] = { 54.1, 64.8, 440, 300 }, + [88] = { 56.4, 64.7, 440, 300 }, + [89] = { 55, 64.6, 440, 300 }, + [90] = { 56, 64.6, 440, 300 }, + [91] = { 57.1, 64, 440, 300 }, + [92] = { 54.5, 63.9, 440, 300 }, + [93] = { 55.5, 63.9, 440, 300 }, + [94] = { 54.6, 63.1, 440, 300 }, + [95] = { 54.1, 63, 440, 300 }, + [96] = { 55.8, 63, 440, 300 }, + [97] = { 57.5, 62.8, 440, 300 }, + [98] = { 56.8, 62.7, 440, 300 }, + [99] = { 56.5, 62.6, 440, 300 }, + [100] = { 54.6, 62.3, 440, 300 }, + }, + ["lvl"] = "47-48", + }, + [5442] = { + ["coords"] = {}, + ["lvl"] = "50", + }, + [5443] = { + ["coords"] = {}, + ["lvl"] = "50", + }, + [5444] = { + ["coords"] = {}, + ["lvl"] = "50", + }, + [5445] = { + ["coords"] = {}, + ["lvl"] = "50", + }, + [5446] = { + ["coords"] = {}, + ["lvl"] = "50", + }, + [5447] = { + ["coords"] = {}, + ["lvl"] = "50", + }, + [5448] = { + ["coords"] = {}, + ["lvl"] = "50", + }, + [5449] = { + ["coords"] = {}, + ["lvl"] = "50", + }, + [5450] = { + ["coords"] = { + [1] = { 52.5, 77.9, 440, 300 }, + [2] = { 51.2, 77.8, 440, 300 }, + [3] = { 50.7, 77.1, 440, 300 }, + [4] = { 54.8, 76.9, 440, 300 }, + [5] = { 51.6, 76.8, 440, 300 }, + [6] = { 51.2, 76.2, 440, 300 }, + [7] = { 52.1, 76.2, 440, 300 }, + [8] = { 50.2, 76.2, 440, 300 }, + [9] = { 56.9, 76.2, 440, 300 }, + [10] = { 57.4, 75.6, 440, 300 }, + [11] = { 50.7, 75.6, 440, 300 }, + [12] = { 49.7, 75.6, 440, 300 }, + [13] = { 51.7, 75.6, 440, 300 }, + [14] = { 56.5, 75.5, 440, 300 }, + [15] = { 54.3, 75.5, 440, 300 }, + [16] = { 56.1, 75.3, 440, 300 }, + [17] = { 57, 75, 440, 300 }, + [18] = { 51.1, 74.9, 440, 300 }, + [19] = { 52.3, 74.8, 440, 300 }, + [20] = { 50.2, 74.8, 440, 300 }, + [21] = { 56.5, 74.6, 440, 300 }, + [22] = { 49.8, 74.1, 440, 300 }, + [23] = { 57.5, 74.1, 440, 300 }, + [24] = { 50.8, 74.1, 440, 300 }, + [25] = { 51.4, 74.1, 440, 300 }, + [26] = { 52.7, 73.8, 440, 300 }, + [27] = { 55.2, 73.7, 440, 300 }, + [28] = { 50.3, 73.4, 440, 300 }, + [29] = { 51.2, 73.1, 440, 300 }, + [30] = { 52.8, 72.9, 440, 300 }, + [31] = { 57.3, 72.7, 440, 300 }, + [32] = { 52, 72.5, 440, 300 }, + [33] = { 53.9, 72.3, 440, 300 }, + [34] = { 50.7, 72.2, 440, 300 }, + [35] = { 52.1, 72.1, 440, 300 }, + [36] = { 49.3, 72, 440, 300 }, + [37] = { 57.1, 72, 440, 300 }, + [38] = { 53.1, 71.9, 440, 300 }, + [39] = { 50.3, 71.8, 440, 300 }, + [40] = { 56.8, 71.7, 440, 300 }, + [41] = { 52.7, 71.4, 440, 300 }, + [42] = { 57.6, 71.2, 440, 300 }, + [43] = { 57, 71, 440, 300 }, + [44] = { 50.6, 70.9, 440, 300 }, + [45] = { 51.6, 70.8, 440, 300 }, + [46] = { 50.9, 70.6, 440, 300 }, + [47] = { 57.9, 70.6, 440, 300 }, + [48] = { 52.2, 70.6, 440, 300 }, + [49] = { 57.5, 70.5, 440, 300 }, + [50] = { 57.3, 70.3, 440, 300 }, + [51] = { 55.4, 70.3, 440, 300 }, + [52] = { 57.4, 69.6, 440, 300 }, + [53] = { 52.8, 69.6, 440, 300 }, + [54] = { 51.8, 69.6, 440, 300 }, + [55] = { 52.1, 69, 440, 300 }, + [56] = { 52.6, 68.4, 440, 300 }, + [57] = { 51.8, 68.3, 440, 300 }, + [58] = { 56.1, 68.3, 440, 300 }, + [59] = { 52.1, 67.8, 440, 300 }, + [60] = { 53, 67.7, 440, 300 }, + [61] = { 51, 67.7, 440, 300 }, + [62] = { 59, 67.6, 440, 300 }, + [63] = { 52.5, 67, 440, 300 }, + [64] = { 53.6, 66.9, 440, 300 }, + [65] = { 51.6, 66.9, 440, 300 }, + [66] = { 55.5, 66.8, 440, 300 }, + [67] = { 57.4, 66.8, 440, 300 }, + [68] = { 56.5, 66.8, 440, 300 }, + [69] = { 58.6, 66.8, 440, 300 }, + [70] = { 54.5, 66.7, 440, 300 }, + [71] = { 55.9, 66.6, 440, 300 }, + [72] = { 59.2, 66.5, 440, 300 }, + [73] = { 52.1, 66.5, 440, 300 }, + [74] = { 50.7, 66.3, 440, 300 }, + [75] = { 57, 66.1, 440, 300 }, + [76] = { 54.1, 66.1, 440, 300 }, + [77] = { 58, 66.1, 440, 300 }, + [78] = { 53.1, 66.1, 440, 300 }, + [79] = { 55, 65.9, 440, 300 }, + [80] = { 52.6, 65.7, 440, 300 }, + [81] = { 51.3, 65.7, 440, 300 }, + [82] = { 58.8, 65.6, 440, 300 }, + [83] = { 53.6, 65.5, 440, 300 }, + [84] = { 57.4, 65.4, 440, 300 }, + [85] = { 54.6, 65.4, 440, 300 }, + [86] = { 57, 65, 440, 300 }, + [87] = { 54.1, 64.8, 440, 300 }, + [88] = { 56.4, 64.7, 440, 300 }, + [89] = { 55, 64.6, 440, 300 }, + [90] = { 56, 64.6, 440, 300 }, + [91] = { 57.1, 64, 440, 300 }, + [92] = { 54.5, 63.9, 440, 300 }, + [93] = { 55.5, 63.9, 440, 300 }, + [94] = { 54.6, 63.1, 440, 300 }, + [95] = { 54.1, 63, 440, 300 }, + [96] = { 55.8, 63, 440, 300 }, + [97] = { 57.5, 62.8, 440, 300 }, + [98] = { 56.8, 62.7, 440, 300 }, + [99] = { 56.5, 62.6, 440, 300 }, + [100] = { 54.6, 62.3, 440, 300 }, + }, + ["lvl"] = "49-50", + }, + [5451] = { + ["coords"] = { + [1] = { 52.5, 77.9, 440, 300 }, + [2] = { 51.2, 77.8, 440, 300 }, + [3] = { 50.7, 77.1, 440, 300 }, + [4] = { 54.8, 76.9, 440, 300 }, + [5] = { 51.6, 76.8, 440, 300 }, + [6] = { 51.2, 76.2, 440, 300 }, + [7] = { 52.1, 76.2, 440, 300 }, + [8] = { 50.2, 76.2, 440, 300 }, + [9] = { 56.9, 76.2, 440, 300 }, + [10] = { 57.4, 75.6, 440, 300 }, + [11] = { 50.7, 75.6, 440, 300 }, + [12] = { 49.7, 75.6, 440, 300 }, + [13] = { 51.7, 75.6, 440, 300 }, + [14] = { 56.5, 75.5, 440, 300 }, + [15] = { 54.3, 75.5, 440, 300 }, + [16] = { 56.1, 75.3, 440, 300 }, + [17] = { 57, 75, 440, 300 }, + [18] = { 51.1, 74.9, 440, 300 }, + [19] = { 52.3, 74.8, 440, 300 }, + [20] = { 50.2, 74.8, 440, 300 }, + [21] = { 56.5, 74.6, 440, 300 }, + [22] = { 49.8, 74.1, 440, 300 }, + [23] = { 57.5, 74.1, 440, 300 }, + [24] = { 50.8, 74.1, 440, 300 }, + [25] = { 51.4, 74.1, 440, 300 }, + [26] = { 52.7, 73.8, 440, 300 }, + [27] = { 55.2, 73.7, 440, 300 }, + [28] = { 50.3, 73.4, 440, 300 }, + [29] = { 51.2, 73.1, 440, 300 }, + [30] = { 52.8, 72.9, 440, 300 }, + [31] = { 57.3, 72.7, 440, 300 }, + [32] = { 52, 72.5, 440, 300 }, + [33] = { 53.9, 72.3, 440, 300 }, + [34] = { 50.7, 72.2, 440, 300 }, + [35] = { 52.1, 72.1, 440, 300 }, + [36] = { 49.3, 72, 440, 300 }, + [37] = { 57.1, 72, 440, 300 }, + [38] = { 53.1, 71.9, 440, 300 }, + [39] = { 50.3, 71.8, 440, 300 }, + [40] = { 56.8, 71.7, 440, 300 }, + [41] = { 52.7, 71.4, 440, 300 }, + [42] = { 57.6, 71.2, 440, 300 }, + [43] = { 57, 71, 440, 300 }, + [44] = { 50.6, 70.9, 440, 300 }, + [45] = { 51.6, 70.8, 440, 300 }, + [46] = { 50.9, 70.6, 440, 300 }, + [47] = { 57.9, 70.6, 440, 300 }, + [48] = { 52.2, 70.6, 440, 300 }, + [49] = { 57.5, 70.5, 440, 300 }, + [50] = { 57.3, 70.3, 440, 300 }, + [51] = { 55.4, 70.3, 440, 300 }, + [52] = { 57.4, 69.6, 440, 300 }, + [53] = { 52.8, 69.6, 440, 300 }, + [54] = { 51.8, 69.6, 440, 300 }, + [55] = { 52.1, 69, 440, 300 }, + [56] = { 52.6, 68.4, 440, 300 }, + [57] = { 51.8, 68.3, 440, 300 }, + [58] = { 56.1, 68.3, 440, 300 }, + [59] = { 52.1, 67.8, 440, 300 }, + [60] = { 53, 67.7, 440, 300 }, + [61] = { 51, 67.7, 440, 300 }, + [62] = { 59, 67.6, 440, 300 }, + [63] = { 52.5, 67, 440, 300 }, + [64] = { 53.6, 66.9, 440, 300 }, + [65] = { 51.6, 66.9, 440, 300 }, + [66] = { 55.5, 66.8, 440, 300 }, + [67] = { 57.4, 66.8, 440, 300 }, + [68] = { 56.5, 66.8, 440, 300 }, + [69] = { 58.6, 66.8, 440, 300 }, + [70] = { 54.5, 66.7, 440, 300 }, + [71] = { 55.9, 66.6, 440, 300 }, + [72] = { 59.2, 66.5, 440, 300 }, + [73] = { 52.1, 66.5, 440, 300 }, + [74] = { 50.7, 66.3, 440, 300 }, + [75] = { 57, 66.1, 440, 300 }, + [76] = { 54.1, 66.1, 440, 300 }, + [77] = { 58, 66.1, 440, 300 }, + [78] = { 53.1, 66.1, 440, 300 }, + [79] = { 55, 65.9, 440, 300 }, + [80] = { 52.6, 65.7, 440, 300 }, + [81] = { 51.3, 65.7, 440, 300 }, + [82] = { 58.8, 65.6, 440, 300 }, + [83] = { 53.6, 65.5, 440, 300 }, + [84] = { 57.4, 65.4, 440, 300 }, + [85] = { 54.6, 65.4, 440, 300 }, + [86] = { 57, 65, 440, 300 }, + [87] = { 54.1, 64.8, 440, 300 }, + [88] = { 56.4, 64.7, 440, 300 }, + [89] = { 55, 64.6, 440, 300 }, + [90] = { 56, 64.6, 440, 300 }, + [91] = { 57.1, 64, 440, 300 }, + [92] = { 54.5, 63.9, 440, 300 }, + [93] = { 55.5, 63.9, 440, 300 }, + [94] = { 54.6, 63.1, 440, 300 }, + [95] = { 54.1, 63, 440, 300 }, + [96] = { 55.8, 63, 440, 300 }, + [97] = { 57.5, 62.8, 440, 300 }, + [98] = { 56.8, 62.7, 440, 300 }, + [99] = { 56.5, 62.6, 440, 300 }, + [100] = { 54.6, 62.3, 440, 300 }, + }, + ["lvl"] = "49-50", + }, + [5452] = { + ["coords"] = { + [1] = { 55.7, 77.6, 440, 300 }, + [2] = { 55.7, 77, 440, 300 }, + [3] = { 54.8, 76.9, 440, 300 }, + [4] = { 54.8, 76, 440, 300 }, + [5] = { 54.2, 75.5, 440, 300 }, + [6] = { 53.1, 75, 440, 300 }, + [7] = { 55.3, 74.9, 440, 300 }, + [8] = { 56.4, 74.2, 440, 300 }, + [9] = { 53.7, 74.1, 440, 300 }, + [10] = { 53.2, 74.1, 440, 300 }, + [11] = { 56.7, 73.9, 440, 300 }, + [12] = { 54.8, 73.9, 440, 300 }, + [13] = { 56.4, 73.6, 440, 300 }, + [14] = { 55.2, 73.2, 440, 300 }, + [15] = { 53, 73.2, 440, 300 }, + [16] = { 54.5, 73, 440, 300 }, + [17] = { 56.7, 72.7, 440, 300 }, + [18] = { 54.9, 72.7, 440, 300 }, + [19] = { 56, 72.5, 440, 300 }, + [20] = { 53.9, 72.3, 440, 300 }, + [21] = { 53.7, 72.3, 440, 300 }, + [22] = { 55, 72, 440, 300 }, + [23] = { 57.8, 72, 440, 300 }, + [24] = { 57.3, 71.9, 440, 300 }, + [25] = { 56.8, 71.8, 440, 300 }, + [26] = { 53.6, 71.6, 440, 300 }, + [27] = { 56, 71.3, 440, 300 }, + [28] = { 56.9, 71.3, 440, 300 }, + [29] = { 56.3, 71.2, 440, 300 }, + [30] = { 54.3, 71.1, 440, 300 }, + [31] = { 57.6, 70.6, 440, 300 }, + [32] = { 57.2, 70.5, 440, 300 }, + [33] = { 53.5, 70.4, 440, 300 }, + [34] = { 56.6, 70.3, 440, 300 }, + [35] = { 55.1, 70.2, 440, 300 }, + [36] = { 53.9, 70.2, 440, 300 }, + [37] = { 56.9, 69.9, 440, 300 }, + [38] = { 53.5, 69.8, 440, 300 }, + [39] = { 57, 69.7, 440, 300 }, + [40] = { 58, 69.6, 440, 300 }, + [41] = { 56.5, 69.4, 440, 300 }, + [42] = { 58.3, 69.4, 440, 300 }, + [43] = { 55.6, 69.4, 440, 300 }, + [44] = { 54.8, 69.3, 440, 300 }, + [45] = { 54.2, 69.1, 440, 300 }, + [46] = { 58.1, 69.1, 440, 300 }, + [47] = { 56.9, 69.1, 440, 300 }, + [48] = { 56.2, 69, 440, 300 }, + [49] = { 57, 69, 440, 300 }, + [50] = { 56.7, 68.6, 440, 300 }, + [51] = { 55.7, 68.5, 440, 300 }, + [52] = { 56.1, 68.3, 440, 300 }, + [53] = { 54.8, 67.7, 440, 300 }, + [54] = { 56.6, 67.6, 440, 300 }, + [55] = { 56, 67.5, 440, 300 }, + [56] = { 51.6, 67.5, 440, 300 }, + [57] = { 56.7, 67.5, 440, 300 }, + [58] = { 57, 67.3, 440, 300 }, + [59] = { 56.7, 67.1, 440, 300 }, + [60] = { 57.2, 63.5, 440, 300 }, + }, + ["lvl"] = "47-48", + }, + [5453] = { + ["coords"] = { + [1] = { 55.7, 77.6, 440, 300 }, + [2] = { 55.7, 77, 440, 300 }, + [3] = { 54.8, 76.9, 440, 300 }, + [4] = { 54.8, 76, 440, 300 }, + [5] = { 54.2, 75.5, 440, 300 }, + [6] = { 53.1, 75, 440, 300 }, + [7] = { 55.3, 74.9, 440, 300 }, + [8] = { 56.4, 74.2, 440, 300 }, + [9] = { 53.7, 74.1, 440, 300 }, + [10] = { 53.2, 74.1, 440, 300 }, + [11] = { 56.7, 73.9, 440, 300 }, + [12] = { 54.8, 73.9, 440, 300 }, + [13] = { 56.4, 73.6, 440, 300 }, + [14] = { 55.2, 73.2, 440, 300 }, + [15] = { 53, 73.2, 440, 300 }, + [16] = { 54.5, 73, 440, 300 }, + [17] = { 56.7, 72.7, 440, 300 }, + [18] = { 54.9, 72.7, 440, 300 }, + [19] = { 56, 72.5, 440, 300 }, + [20] = { 53.9, 72.3, 440, 300 }, + [21] = { 53.7, 72.3, 440, 300 }, + [22] = { 55, 72, 440, 300 }, + [23] = { 57.8, 72, 440, 300 }, + [24] = { 57.3, 71.9, 440, 300 }, + [25] = { 56.8, 71.8, 440, 300 }, + [26] = { 53.6, 71.6, 440, 300 }, + [27] = { 56, 71.3, 440, 300 }, + [28] = { 56.9, 71.3, 440, 300 }, + [29] = { 56.3, 71.2, 440, 300 }, + [30] = { 54.3, 71.1, 440, 300 }, + [31] = { 57.6, 70.6, 440, 300 }, + [32] = { 57.2, 70.5, 440, 300 }, + [33] = { 53.5, 70.4, 440, 300 }, + [34] = { 56.6, 70.3, 440, 300 }, + [35] = { 55.1, 70.2, 440, 300 }, + [36] = { 53.9, 70.2, 440, 300 }, + [37] = { 56.9, 69.9, 440, 300 }, + [38] = { 53.5, 69.8, 440, 300 }, + [39] = { 57, 69.7, 440, 300 }, + [40] = { 58, 69.6, 440, 300 }, + [41] = { 56.5, 69.4, 440, 300 }, + [42] = { 58.3, 69.4, 440, 300 }, + [43] = { 55.6, 69.4, 440, 300 }, + [44] = { 54.8, 69.3, 440, 300 }, + [45] = { 54.2, 69.1, 440, 300 }, + [46] = { 58.1, 69.1, 440, 300 }, + [47] = { 56.9, 69.1, 440, 300 }, + [48] = { 56.2, 69, 440, 300 }, + [49] = { 57, 69, 440, 300 }, + [50] = { 56.7, 68.6, 440, 300 }, + [51] = { 55.7, 68.5, 440, 300 }, + [52] = { 56.1, 68.3, 440, 300 }, + [53] = { 54.8, 67.7, 440, 300 }, + [54] = { 56.6, 67.6, 440, 300 }, + [55] = { 56, 67.5, 440, 300 }, + [56] = { 51.6, 67.5, 440, 300 }, + [57] = { 56.7, 67.5, 440, 300 }, + [58] = { 57, 67.3, 440, 300 }, + [59] = { 56.7, 67.1, 440, 300 }, + [60] = { 57.2, 63.5, 440, 300 }, + }, + ["lvl"] = "48-49", + }, + [5454] = { + ["coords"] = { + [1] = { 55.7, 77.6, 440, 300 }, + [2] = { 55.7, 77, 440, 300 }, + [3] = { 54.8, 76.9, 440, 300 }, + [4] = { 54.8, 76, 440, 300 }, + [5] = { 54.2, 75.5, 440, 300 }, + [6] = { 53.1, 75, 440, 300 }, + [7] = { 55.3, 74.9, 440, 300 }, + [8] = { 56.4, 74.2, 440, 300 }, + [9] = { 53.7, 74.1, 440, 300 }, + [10] = { 53.2, 74.1, 440, 300 }, + [11] = { 56.7, 73.9, 440, 300 }, + [12] = { 54.8, 73.9, 440, 300 }, + [13] = { 56.4, 73.6, 440, 300 }, + [14] = { 55.2, 73.2, 440, 300 }, + [15] = { 53, 73.2, 440, 300 }, + [16] = { 54.5, 73, 440, 300 }, + [17] = { 56.7, 72.7, 440, 300 }, + [18] = { 54.9, 72.7, 440, 300 }, + [19] = { 56, 72.5, 440, 300 }, + [20] = { 53.9, 72.3, 440, 300 }, + [21] = { 53.7, 72.3, 440, 300 }, + [22] = { 55, 72, 440, 300 }, + [23] = { 57.8, 72, 440, 300 }, + [24] = { 57.3, 71.9, 440, 300 }, + [25] = { 56.8, 71.8, 440, 300 }, + [26] = { 53.6, 71.6, 440, 300 }, + [27] = { 56, 71.3, 440, 300 }, + [28] = { 56.9, 71.3, 440, 300 }, + [29] = { 56.3, 71.2, 440, 300 }, + [30] = { 54.3, 71.1, 440, 300 }, + [31] = { 57.6, 70.6, 440, 300 }, + [32] = { 57.2, 70.5, 440, 300 }, + [33] = { 53.5, 70.4, 440, 300 }, + [34] = { 56.6, 70.3, 440, 300 }, + [35] = { 55.1, 70.2, 440, 300 }, + [36] = { 53.9, 70.2, 440, 300 }, + [37] = { 56.9, 69.9, 440, 300 }, + [38] = { 53.5, 69.8, 440, 300 }, + [39] = { 57, 69.7, 440, 300 }, + [40] = { 58, 69.6, 440, 300 }, + [41] = { 56.5, 69.4, 440, 300 }, + [42] = { 58.3, 69.4, 440, 300 }, + [43] = { 55.6, 69.4, 440, 300 }, + [44] = { 54.8, 69.3, 440, 300 }, + [45] = { 54.2, 69.1, 440, 300 }, + [46] = { 58.1, 69.1, 440, 300 }, + [47] = { 56.9, 69.1, 440, 300 }, + [48] = { 56.2, 69, 440, 300 }, + [49] = { 57, 69, 440, 300 }, + [50] = { 56.7, 68.6, 440, 300 }, + [51] = { 55.7, 68.5, 440, 300 }, + [52] = { 56.1, 68.3, 440, 300 }, + [53] = { 54.8, 67.7, 440, 300 }, + [54] = { 56.6, 67.6, 440, 300 }, + [55] = { 56, 67.5, 440, 300 }, + [56] = { 51.6, 67.5, 440, 300 }, + [57] = { 56.7, 67.5, 440, 300 }, + [58] = { 57, 67.3, 440, 300 }, + [59] = { 56.7, 67.1, 440, 300 }, + [60] = { 57.2, 63.5, 440, 300 }, + }, + ["lvl"] = "49-50", + }, + [5455] = { + ["coords"] = { + [1] = { 31.5, 50.5, 440, 300 }, + [2] = { 32.7, 50.3, 440, 300 }, + [3] = { 32.7, 50.2, 440, 300 }, + [4] = { 33, 50.2, 440, 300 }, + [5] = { 33.8, 49.6, 440, 300 }, + [6] = { 31.6, 49.5, 440, 300 }, + [7] = { 34.9, 49.3, 440, 300 }, + [8] = { 34.1, 49, 440, 300 }, + [9] = { 35.1, 48.9, 440, 300 }, + [10] = { 31.7, 48.8, 440, 300 }, + [11] = { 32.2, 48.5, 440, 300 }, + [12] = { 32.1, 48.2, 440, 300 }, + [13] = { 35.8, 48, 440, 300 }, + [14] = { 31.8, 48, 440, 300 }, + [15] = { 35, 47.9, 440, 300 }, + [16] = { 32.7, 47.8, 440, 300 }, + [17] = { 34.2, 47.5, 440, 300 }, + [18] = { 31.3, 47.3, 440, 300 }, + [19] = { 30.9, 47.2, 440, 300 }, + [20] = { 35.1, 47.2, 440, 300 }, + [21] = { 30.1, 47.1, 440, 300 }, + [22] = { 36.2, 46.8, 440, 300 }, + [23] = { 31.9, 46.8, 440, 300 }, + [24] = { 31, 46.7, 440, 300 }, + [25] = { 35.7, 46.6, 440, 300 }, + [26] = { 33.6, 46.6, 440, 300 }, + [27] = { 31.7, 46.5, 440, 300 }, + [28] = { 33.4, 46.4, 440, 300 }, + [29] = { 31.3, 46.3, 440, 300 }, + [30] = { 34.5, 46, 440, 300 }, + [31] = { 32.3, 46, 440, 300 }, + [32] = { 35.1, 45.8, 440, 300 }, + [33] = { 34.8, 45.6, 440, 300 }, + [34] = { 33.3, 45.6, 440, 300 }, + [35] = { 30.5, 45.6, 440, 300 }, + [36] = { 34.6, 45.4, 440, 300 }, + [37] = { 32.4, 45.3, 440, 300 }, + [38] = { 31.1, 45.2, 440, 300 }, + [39] = { 32.6, 45.2, 440, 300 }, + [40] = { 31.9, 45.1, 440, 300 }, + [41] = { 31.4, 45.1, 440, 300 }, + [42] = { 36.3, 45.1, 440, 300 }, + [43] = { 35.6, 45, 440, 300 }, + [44] = { 33.7, 44.7, 440, 300 }, + [45] = { 32, 44.6, 440, 300 }, + [46] = { 31.4, 44.6, 440, 300 }, + [47] = { 31.5, 44.4, 440, 300 }, + [48] = { 33.3, 44.4, 440, 300 }, + [49] = { 34.2, 44.4, 440, 300 }, + [50] = { 35.1, 44.4, 440, 300 }, + [51] = { 30.8, 44.2, 440, 300 }, + [52] = { 32.8, 44.2, 440, 300 }, + [53] = { 35.9, 43.9, 440, 300 }, + [54] = { 32, 43.9, 440, 300 }, + [55] = { 33.7, 43.7, 440, 300 }, + [56] = { 34.7, 43.7, 440, 300 }, + [57] = { 35, 43.3, 440, 300 }, + [58] = { 32.8, 43.2, 440, 300 }, + [59] = { 35.3, 42.9, 440, 300 }, + [60] = { 36.2, 42.9, 440, 300 }, + [61] = { 32.9, 42.6, 440, 300 }, + [62] = { 32.5, 42.6, 440, 300 }, + [63] = { 35.7, 42.2, 440, 300 }, + [64] = { 33.7, 42, 440, 300 }, + [65] = { 33.3, 41.7, 440, 300 }, + [66] = { 34.1, 41.7, 440, 300 }, + [67] = { 36.2, 41.5, 440, 300 }, + [68] = { 33.3, 41.3, 440, 300 }, + [69] = { 36.7, 40.8, 440, 300 }, + [70] = { 35.7, 40.8, 440, 300 }, + [71] = { 32.9, 40.6, 440, 300 }, + [72] = { 33.8, 40.5, 440, 300 }, + [73] = { 35.3, 40.3, 440, 300 }, + [74] = { 33, 40.3, 440, 300 }, + [75] = { 33.9, 40.1, 440, 300 }, + [76] = { 36.7, 40, 440, 300 }, + [77] = { 35.6, 39.6, 440, 300 }, + [78] = { 33.8, 39.5, 440, 300 }, + [79] = { 34.5, 39.5, 440, 300 }, + [80] = { 34.9, 39.4, 440, 300 }, + [81] = { 34.4, 38.8, 440, 300 }, + [82] = { 35.2, 38.6, 440, 300 }, + [83] = { 33.3, 38.6, 440, 300 }, + [84] = { 33.6, 38.1, 440, 300 }, + [85] = { 76.5, 84, 490, 300 }, + [86] = { 77.1, 81.2, 490, 300 }, + [87] = { 78.4, 80.6, 490, 300 }, + [88] = { 78.9, 79.4, 490, 300 }, + [89] = { 79, 79.1, 490, 300 }, + [90] = { 77.7, 78.8, 490, 300 }, + [91] = { 80.9, 75.7, 490, 300 }, + [92] = { 82.5, 74, 490, 300 }, + [93] = { 82.4, 73.4, 490, 300 }, + [94] = { 81.7, 72, 490, 300 }, + [95] = { 83.3, 71.9, 490, 300 }, + [96] = { 81.9, 71.5, 490, 300 }, + [97] = { 83.5, 71.1, 490, 300 }, + [98] = { 83.4, 70, 490, 300 }, + [99] = { 84.4, 68.6, 490, 300 }, + [100] = { 82.4, 68.2, 490, 300 }, + [101] = { 82.9, 67.3, 490, 300 }, + }, + ["lvl"] = "47-48", + }, + [5456] = { + ["coords"] = { + [1] = { 31.5, 50.5, 440, 300 }, + [2] = { 32.7, 50.3, 440, 300 }, + [3] = { 32.7, 50.2, 440, 300 }, + [4] = { 33, 50.2, 440, 300 }, + [5] = { 33.8, 49.6, 440, 300 }, + [6] = { 31.6, 49.5, 440, 300 }, + [7] = { 34.9, 49.3, 440, 300 }, + [8] = { 34.1, 49, 440, 300 }, + [9] = { 35.1, 48.9, 440, 300 }, + [10] = { 31.7, 48.8, 440, 300 }, + [11] = { 32.2, 48.5, 440, 300 }, + [12] = { 32.1, 48.2, 440, 300 }, + [13] = { 35.8, 48, 440, 300 }, + [14] = { 31.8, 48, 440, 300 }, + [15] = { 35, 47.9, 440, 300 }, + [16] = { 32.7, 47.8, 440, 300 }, + [17] = { 34.2, 47.5, 440, 300 }, + [18] = { 31.3, 47.3, 440, 300 }, + [19] = { 30.9, 47.2, 440, 300 }, + [20] = { 35.1, 47.2, 440, 300 }, + [21] = { 30.1, 47.1, 440, 300 }, + [22] = { 36.2, 46.8, 440, 300 }, + [23] = { 31.9, 46.8, 440, 300 }, + [24] = { 31, 46.7, 440, 300 }, + [25] = { 35.7, 46.6, 440, 300 }, + [26] = { 33.6, 46.6, 440, 300 }, + [27] = { 31.7, 46.5, 440, 300 }, + [28] = { 33.4, 46.4, 440, 300 }, + [29] = { 31.3, 46.3, 440, 300 }, + [30] = { 34.5, 46, 440, 300 }, + [31] = { 32.3, 46, 440, 300 }, + [32] = { 35.1, 45.8, 440, 300 }, + [33] = { 34.8, 45.6, 440, 300 }, + [34] = { 33.3, 45.6, 440, 300 }, + [35] = { 30.5, 45.6, 440, 300 }, + [36] = { 34.6, 45.4, 440, 300 }, + [37] = { 32.4, 45.3, 440, 300 }, + [38] = { 31.1, 45.2, 440, 300 }, + [39] = { 32.6, 45.2, 440, 300 }, + [40] = { 31.9, 45.1, 440, 300 }, + [41] = { 31.4, 45.1, 440, 300 }, + [42] = { 36.3, 45.1, 440, 300 }, + [43] = { 35.6, 45, 440, 300 }, + [44] = { 33.7, 44.7, 440, 300 }, + [45] = { 32, 44.6, 440, 300 }, + [46] = { 31.4, 44.6, 440, 300 }, + [47] = { 31.5, 44.4, 440, 300 }, + [48] = { 33.3, 44.4, 440, 300 }, + [49] = { 34.2, 44.4, 440, 300 }, + [50] = { 35.1, 44.4, 440, 300 }, + [51] = { 30.8, 44.2, 440, 300 }, + [52] = { 32.8, 44.2, 440, 300 }, + [53] = { 35.9, 43.9, 440, 300 }, + [54] = { 32, 43.9, 440, 300 }, + [55] = { 33.7, 43.7, 440, 300 }, + [56] = { 34.7, 43.7, 440, 300 }, + [57] = { 35, 43.3, 440, 300 }, + [58] = { 32.8, 43.2, 440, 300 }, + [59] = { 35.3, 42.9, 440, 300 }, + [60] = { 36.2, 42.9, 440, 300 }, + [61] = { 32.9, 42.6, 440, 300 }, + [62] = { 32.5, 42.6, 440, 300 }, + [63] = { 35.7, 42.2, 440, 300 }, + [64] = { 33.7, 42, 440, 300 }, + [65] = { 33.3, 41.7, 440, 300 }, + [66] = { 34.1, 41.7, 440, 300 }, + [67] = { 36.2, 41.5, 440, 300 }, + [68] = { 33.3, 41.3, 440, 300 }, + [69] = { 36.7, 40.8, 440, 300 }, + [70] = { 35.7, 40.8, 440, 300 }, + [71] = { 32.9, 40.6, 440, 300 }, + [72] = { 33.8, 40.5, 440, 300 }, + [73] = { 35.3, 40.3, 440, 300 }, + [74] = { 33, 40.3, 440, 300 }, + [75] = { 33.9, 40.1, 440, 300 }, + [76] = { 36.7, 40, 440, 300 }, + [77] = { 35.6, 39.6, 440, 300 }, + [78] = { 33.8, 39.5, 440, 300 }, + [79] = { 34.5, 39.5, 440, 300 }, + [80] = { 34.9, 39.4, 440, 300 }, + [81] = { 34.4, 38.8, 440, 300 }, + [82] = { 35.2, 38.6, 440, 300 }, + [83] = { 33.3, 38.6, 440, 300 }, + [84] = { 33.6, 38.1, 440, 300 }, + [85] = { 76.5, 84, 490, 300 }, + [86] = { 77.1, 81.2, 490, 300 }, + [87] = { 78.4, 80.6, 490, 300 }, + [88] = { 78.9, 79.4, 490, 300 }, + [89] = { 79, 79.1, 490, 300 }, + [90] = { 77.7, 78.8, 490, 300 }, + [91] = { 80.9, 75.7, 490, 300 }, + [92] = { 82.5, 74, 490, 300 }, + [93] = { 82.4, 73.4, 490, 300 }, + [94] = { 81.7, 72, 490, 300 }, + [95] = { 83.3, 71.9, 490, 300 }, + [96] = { 81.9, 71.5, 490, 300 }, + [97] = { 83.5, 71.1, 490, 300 }, + [98] = { 83.4, 70, 490, 300 }, + [99] = { 84.4, 68.6, 490, 300 }, + [100] = { 82.4, 68.2, 490, 300 }, + [101] = { 82.9, 67.3, 490, 300 }, + }, + ["lvl"] = "48-49", + }, + [5457] = { + ["coords"] = { + [1] = { 31.5, 50.5, 440, 300 }, + [2] = { 32.7, 50.3, 440, 300 }, + [3] = { 32.7, 50.2, 440, 300 }, + [4] = { 33, 50.2, 440, 300 }, + [5] = { 33.8, 49.6, 440, 300 }, + [6] = { 31.6, 49.5, 440, 300 }, + [7] = { 34.9, 49.3, 440, 300 }, + [8] = { 34.1, 49, 440, 300 }, + [9] = { 35.1, 48.9, 440, 300 }, + [10] = { 31.7, 48.8, 440, 300 }, + [11] = { 32.2, 48.5, 440, 300 }, + [12] = { 32.1, 48.2, 440, 300 }, + [13] = { 35.8, 48, 440, 300 }, + [14] = { 31.8, 48, 440, 300 }, + [15] = { 35, 47.9, 440, 300 }, + [16] = { 32.7, 47.8, 440, 300 }, + [17] = { 34.2, 47.5, 440, 300 }, + [18] = { 31.3, 47.3, 440, 300 }, + [19] = { 30.9, 47.2, 440, 300 }, + [20] = { 35.1, 47.2, 440, 300 }, + [21] = { 30.1, 47.1, 440, 300 }, + [22] = { 36.2, 46.8, 440, 300 }, + [23] = { 31.9, 46.8, 440, 300 }, + [24] = { 31, 46.7, 440, 300 }, + [25] = { 35.7, 46.6, 440, 300 }, + [26] = { 33.6, 46.6, 440, 300 }, + [27] = { 31.7, 46.5, 440, 300 }, + [28] = { 33.4, 46.4, 440, 300 }, + [29] = { 31.3, 46.3, 440, 300 }, + [30] = { 34.5, 46, 440, 300 }, + [31] = { 32.3, 46, 440, 300 }, + [32] = { 35.1, 45.8, 440, 300 }, + [33] = { 34.8, 45.6, 440, 300 }, + [34] = { 33.3, 45.6, 440, 300 }, + [35] = { 30.5, 45.6, 440, 300 }, + [36] = { 34.6, 45.4, 440, 300 }, + [37] = { 32.4, 45.3, 440, 300 }, + [38] = { 31.1, 45.2, 440, 300 }, + [39] = { 32.6, 45.2, 440, 300 }, + [40] = { 31.9, 45.1, 440, 300 }, + [41] = { 31.4, 45.1, 440, 300 }, + [42] = { 36.3, 45.1, 440, 300 }, + [43] = { 35.6, 45, 440, 300 }, + [44] = { 33.7, 44.7, 440, 300 }, + [45] = { 32, 44.6, 440, 300 }, + [46] = { 31.4, 44.6, 440, 300 }, + [47] = { 31.5, 44.4, 440, 300 }, + [48] = { 33.3, 44.4, 440, 300 }, + [49] = { 34.2, 44.4, 440, 300 }, + [50] = { 35.1, 44.4, 440, 300 }, + [51] = { 30.8, 44.2, 440, 300 }, + [52] = { 32.8, 44.2, 440, 300 }, + [53] = { 35.9, 43.9, 440, 300 }, + [54] = { 32, 43.9, 440, 300 }, + [55] = { 33.7, 43.7, 440, 300 }, + [56] = { 34.7, 43.7, 440, 300 }, + [57] = { 35, 43.3, 440, 300 }, + [58] = { 32.8, 43.2, 440, 300 }, + [59] = { 35.3, 42.9, 440, 300 }, + [60] = { 36.2, 42.9, 440, 300 }, + [61] = { 32.9, 42.6, 440, 300 }, + [62] = { 32.5, 42.6, 440, 300 }, + [63] = { 35.7, 42.2, 440, 300 }, + [64] = { 33.7, 42, 440, 300 }, + [65] = { 33.3, 41.7, 440, 300 }, + [66] = { 34.1, 41.7, 440, 300 }, + [67] = { 36.2, 41.5, 440, 300 }, + [68] = { 33.3, 41.3, 440, 300 }, + [69] = { 36.7, 40.8, 440, 300 }, + [70] = { 35.7, 40.8, 440, 300 }, + [71] = { 32.9, 40.6, 440, 300 }, + [72] = { 33.8, 40.5, 440, 300 }, + [73] = { 35.3, 40.3, 440, 300 }, + [74] = { 33, 40.3, 440, 300 }, + [75] = { 33.9, 40.1, 440, 300 }, + [76] = { 36.7, 40, 440, 300 }, + [77] = { 35.6, 39.6, 440, 300 }, + [78] = { 33.8, 39.5, 440, 300 }, + [79] = { 34.5, 39.5, 440, 300 }, + [80] = { 34.9, 39.4, 440, 300 }, + [81] = { 34.4, 38.8, 440, 300 }, + [82] = { 35.2, 38.6, 440, 300 }, + [83] = { 33.3, 38.6, 440, 300 }, + [84] = { 33.6, 38.1, 440, 300 }, + [85] = { 76.5, 84, 490, 300 }, + [86] = { 77.1, 81.2, 490, 300 }, + [87] = { 78.4, 80.6, 490, 300 }, + [88] = { 78.9, 79.4, 490, 300 }, + [89] = { 79, 79.1, 490, 300 }, + [90] = { 77.7, 78.8, 490, 300 }, + [91] = { 80.9, 75.7, 490, 300 }, + [92] = { 82.5, 74, 490, 300 }, + [93] = { 82.4, 73.4, 490, 300 }, + [94] = { 81.7, 72, 490, 300 }, + [95] = { 83.3, 71.9, 490, 300 }, + [96] = { 81.9, 71.5, 490, 300 }, + [97] = { 83.5, 71.1, 490, 300 }, + [98] = { 83.4, 70, 490, 300 }, + [99] = { 84.4, 68.6, 490, 300 }, + [100] = { 82.4, 68.2, 490, 300 }, + [101] = { 82.9, 67.3, 490, 300 }, + }, + ["lvl"] = "49-50", + }, + [5458] = { + ["coords"] = { + [1] = { 31.7, 51.1, 440, 300 }, + [2] = { 32.2, 48, 440, 300 }, + [3] = { 33.6, 47.1, 440, 300 }, + [4] = { 31.3, 47.1, 440, 300 }, + [5] = { 34.4, 46.5, 440, 300 }, + [6] = { 31.9, 46.4, 440, 300 }, + [7] = { 31.1, 45.8, 440, 300 }, + [8] = { 32.1, 45.7, 440, 300 }, + [9] = { 34.9, 45.5, 440, 300 }, + [10] = { 34.3, 45.3, 440, 300 }, + [11] = { 32.4, 45.3, 440, 300 }, + [12] = { 35.6, 44.8, 440, 300 }, + [13] = { 33, 44.7, 440, 300 }, + [14] = { 32.2, 44.7, 440, 300 }, + [15] = { 32.5, 44.5, 440, 300 }, + [16] = { 31.1, 44, 440, 300 }, + [17] = { 31.8, 43.9, 440, 300 }, + [18] = { 35.1, 43.8, 440, 300 }, + [19] = { 34.9, 43.3, 440, 300 }, + [20] = { 33, 43.1, 440, 300 }, + [21] = { 35.8, 42.7, 440, 300 }, + [22] = { 33.9, 42, 440, 300 }, + [23] = { 33.6, 42, 440, 300 }, + [24] = { 33.4, 41, 440, 300 }, + [25] = { 33.8, 40.7, 440, 300 }, + [26] = { 34.2, 39.8, 440, 300 }, + [27] = { 34.7, 39.6, 440, 300 }, + [28] = { 36.1, 39.4, 440, 300 }, + [29] = { 78.3, 78.3, 490, 300 }, + [30] = { 82.5, 72.8, 490, 300 }, + [31] = { 83.3, 72.1, 490, 300 }, + [32] = { 84.2, 70.4, 490, 300 }, + }, + ["lvl"] = "48-49", + }, + [5459] = { + ["coords"] = { + [1] = { 35.1, 48.4, 440, 300 }, + [2] = { 33.2, 47.9, 440, 300 }, + [3] = { 33.9, 46.1, 440, 300 }, + [4] = { 32, 45.7, 440, 300 }, + [5] = { 33.4, 45.3, 440, 300 }, + [6] = { 31.4, 44.8, 440, 300 }, + [7] = { 32.3, 44.1, 440, 300 }, + [8] = { 35.3, 43.3, 440, 300 }, + [9] = { 33.4, 42.9, 440, 300 }, + [10] = { 34.7, 42.3, 440, 300 }, + [11] = { 34.4, 42.1, 440, 300 }, + [12] = { 34.2, 41.6, 440, 300 }, + [13] = { 34.5, 40.1, 440, 300 }, + }, + ["lvl"] = "47-48", + }, + [5460] = { + ["coords"] = { + [1] = { 31.7, 51.1, 440, 300 }, + [2] = { 32.2, 48, 440, 300 }, + [3] = { 33.6, 47.1, 440, 300 }, + [4] = { 31.3, 47.1, 440, 300 }, + [5] = { 34.4, 46.5, 440, 300 }, + [6] = { 31.9, 46.4, 440, 300 }, + [7] = { 31.1, 45.8, 440, 300 }, + [8] = { 32.1, 45.7, 440, 300 }, + [9] = { 34.9, 45.5, 440, 300 }, + [10] = { 34.3, 45.3, 440, 300 }, + [11] = { 32.4, 45.3, 440, 300 }, + [12] = { 35.6, 44.8, 440, 300 }, + [13] = { 33, 44.7, 440, 300 }, + [14] = { 32.2, 44.7, 440, 300 }, + [15] = { 32.5, 44.5, 440, 300 }, + [16] = { 31.1, 44, 440, 300 }, + [17] = { 31.8, 43.9, 440, 300 }, + [18] = { 35.1, 43.8, 440, 300 }, + [19] = { 34.9, 43.3, 440, 300 }, + [20] = { 33, 43.1, 440, 300 }, + [21] = { 35.8, 42.7, 440, 300 }, + [22] = { 33.9, 42, 440, 300 }, + [23] = { 33.6, 42, 440, 300 }, + [24] = { 33.4, 41, 440, 300 }, + [25] = { 33.8, 40.7, 440, 300 }, + [26] = { 34.2, 39.8, 440, 300 }, + [27] = { 34.7, 39.6, 440, 300 }, + [28] = { 36.1, 39.4, 440, 300 }, + [29] = { 78.3, 78.3, 490, 300 }, + [30] = { 82.5, 72.8, 490, 300 }, + [31] = { 83.3, 72.1, 490, 300 }, + [32] = { 84.2, 70.4, 490, 300 }, + }, + ["lvl"] = "49-50", + }, + [5461] = { + ["coords"] = { + [1] = { 45.4, 68, 357, 300 }, + [2] = { 45.4, 65.7, 357, 300 }, + [3] = { 46.4, 63.6, 357, 300 }, + [4] = { 45.3, 63.6, 357, 300 }, + [5] = { 45.7, 60.7, 357, 300 }, + [6] = { 45.9, 59.3, 357, 300 }, + [7] = { 46.4, 58.6, 357, 300 }, + [8] = { 46.3, 56.7, 357, 300 }, + [9] = { 46.9, 53.6, 357, 300 }, + [10] = { 47.5, 53.2, 357, 300 }, + [11] = { 47.5, 52.1, 357, 300 }, + [12] = { 49.8, 51.7, 357, 300 }, + [13] = { 48.3, 49.7, 357, 300 }, + [14] = { 44.2, 49.7, 357, 300 }, + [15] = { 44, 39.2, 357, 300 }, + [16] = { 44.8, 38.8, 357, 300 }, + [17] = { 41.1, 37.9, 357, 300 }, + [18] = { 40.5, 37.7, 357, 300 }, + [19] = { 39.7, 36.9, 357, 300 }, + [20] = { 37.1, 36.1, 357, 300 }, + [21] = { 34.4, 35.6, 357, 300 }, + [22] = { 35.4, 34.9, 357, 300 }, + [23] = { 36.3, 34.6, 357, 300 }, + [24] = { 38.5, 33.6, 357, 300 }, + [25] = { 37.1, 33.1, 357, 300 }, + }, + ["lvl"] = "48-49", + }, + [5462] = { + ["coords"] = { + [1] = { 44.1, 68.7, 357, 300 }, + [2] = { 44.4, 67.5, 357, 300 }, + [3] = { 43.6, 65.3, 357, 300 }, + [4] = { 45.9, 65.1, 357, 300 }, + [5] = { 45.9, 63.9, 357, 300 }, + [6] = { 46.4, 62.9, 357, 300 }, + [7] = { 46.4, 61.5, 357, 300 }, + [8] = { 46.9, 60.8, 357, 300 }, + [9] = { 47.2, 59.7, 357, 300 }, + [10] = { 47, 56.9, 357, 300 }, + [11] = { 45.8, 56.4, 357, 300 }, + [12] = { 46.4, 55.8, 357, 300 }, + [13] = { 46.8, 55.3, 357, 300 }, + [14] = { 46.5, 53.4, 357, 300 }, + [15] = { 48.7, 53.2, 357, 300 }, + [16] = { 49.1, 53.1, 357, 300 }, + [17] = { 44.9, 52.2, 357, 300 }, + [18] = { 45.9, 51.7, 357, 300 }, + [19] = { 49, 51.6, 357, 300 }, + [20] = { 48.4, 51.3, 357, 300 }, + [21] = { 47.8, 50.2, 357, 300 }, + [22] = { 48.5, 48.7, 357, 300 }, + [23] = { 44.9, 48.6, 357, 300 }, + [24] = { 45, 46.3, 357, 300 }, + [25] = { 43.5, 39.3, 357, 300 }, + [26] = { 44.4, 39.2, 357, 300 }, + [27] = { 41.6, 38.8, 357, 300 }, + [28] = { 42.1, 38.6, 357, 300 }, + [29] = { 35.6, 36.6, 357, 300 }, + [30] = { 38, 36.2, 357, 300 }, + [31] = { 37.3, 34.9, 357, 300 }, + [32] = { 34.4, 34.6, 357, 300 }, + [33] = { 34.2, 33.3, 357, 300 }, + [34] = { 37.5, 33.1, 357, 300 }, + [35] = { 35.4, 34.9, 357, 300 }, + }, + ["lvl"] = "47-48", + }, + [5464] = { + ["coords"] = { + [1] = { 75.8, 46.2, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "29", + }, + [5465] = { + ["coords"] = { + [1] = { 44.5, 58.7, 440, 300 }, + [2] = { 35.3, 56.4, 440, 300 }, + [3] = { 58.8, 54.4, 440, 300 }, + [4] = { 50.6, 51.7, 440, 300 }, + [5] = { 51.3, 48.9, 440, 300 }, + }, + ["lvl"] = "45-47", + }, + [5466] = { + ["coords"] = { + [1] = { 64.7, 62.6, 440, 600 }, + [2] = { 66.7, 62.5, 440, 600 }, + [3] = { 65.7, 60.6, 440, 600 }, + [4] = { 66.7, 60.1, 440, 600 }, + [5] = { 68.5, 59.7, 440, 600 }, + [6] = { 66.9, 58.6, 440, 600 }, + [7] = { 67.5, 58.2, 440, 600 }, + [8] = { 69.5, 58, 440, 600 }, + [9] = { 70.4, 56.9, 440, 600 }, + [10] = { 71.5, 55.7, 440, 600 }, + }, + ["lvl"] = "48-49", + ["rnk"] = "1", + }, + [5467] = { + ["coords"] = { + [1] = { 65.9, 66.1, 440, 600 }, + }, + ["lvl"] = "47", + ["rnk"] = "1", + }, + [5468] = { + ["coords"] = {}, + ["lvl"] = "47-48", + ["rnk"] = "1", + }, + [5469] = { + ["coords"] = { + [1] = { 37.2, 81.3, 440, 600 }, + [2] = { 36.7, 80.6, 440, 600 }, + [3] = { 37.6, 80.6, 440, 600 }, + [4] = { 37.1, 79.9, 440, 600 }, + [5] = { 37.1, 79.6, 440, 600 }, + [6] = { 36.7, 79.2, 440, 600 }, + }, + ["lvl"] = "48-49", + ["rnk"] = "1", + }, + [5470] = { + ["coords"] = {}, + ["lvl"] = "49-50", + ["rnk"] = "1", + }, + [5471] = { + ["coords"] = { + [1] = { 39.6, 74.8, 440, 300 }, + [2] = { 39.1, 74.1, 440, 300 }, + [3] = { 42, 74.1, 440, 300 }, + [4] = { 40.5, 73.4, 440, 300 }, + [5] = { 42.5, 73.4, 440, 300 }, + [6] = { 38.6, 73.4, 440, 300 }, + [7] = { 42, 72.7, 440, 300 }, + [8] = { 40.1, 72.7, 440, 300 }, + [9] = { 41, 72.6, 440, 300 }, + [10] = { 39.1, 72.6, 440, 300 }, + [11] = { 39.6, 71.9, 440, 300 }, + [12] = { 42, 71.2, 440, 300 }, + [13] = { 41, 71.2, 440, 300 }, + [14] = { 39.1, 71.2, 440, 300 }, + [15] = { 39.6, 70.5, 440, 300 }, + [16] = { 41.5, 70.5, 440, 300 }, + [17] = { 47.3, 67.6, 440, 300 }, + [18] = { 48.3, 67.6, 440, 300 }, + [19] = { 46.8, 66.9, 440, 300 }, + [20] = { 45.9, 66.8, 440, 300 }, + [21] = { 46.4, 66.2, 440, 300 }, + [22] = { 45.4, 66.2, 440, 300 }, + [23] = { 48.3, 66.1, 440, 300 }, + [24] = { 45.9, 65.4, 440, 300 }, + [25] = { 47.8, 65.4, 440, 300 }, + [26] = { 46.9, 65.4, 440, 300 }, + [27] = { 46.3, 64.7, 440, 300 }, + [28] = { 48.3, 64.6, 440, 300 }, + [29] = { 46.3, 63.2, 440, 300 }, + [30] = { 47.3, 63.2, 440, 300 }, + [31] = { 38.7, 58.1, 440, 300 }, + [32] = { 40.8, 56.9, 440, 300 }, + [33] = { 39.3, 56.6, 440, 300 }, + [34] = { 42, 56, 440, 300 }, + [35] = { 40.1, 56, 440, 300 }, + [36] = { 39.1, 55.2, 440, 300 }, + [37] = { 41.2, 55.2, 440, 300 }, + [38] = { 38.5, 54.7, 440, 300 }, + [39] = { 42.5, 54.5, 440, 300 }, + [40] = { 40, 54.4, 440, 300 }, + [41] = { 39.6, 53.8, 440, 300 }, + [42] = { 41.5, 53.8, 440, 300 }, + [43] = { 40.2, 53.8, 440, 300 }, + [44] = { 38.6, 53.1, 440, 300 }, + [45] = { 40.5, 52.4, 440, 300 }, + [46] = { 38.9, 52, 440, 300 }, + [47] = { 40.1, 51.3, 440, 300 }, + [48] = { 39.9, 50.9, 440, 300 }, + }, + ["lvl"] = "45-46", + }, + [5472] = { + ["coords"] = { + [1] = { 41.5, 74.8, 440, 300 }, + [2] = { 40.5, 74.8, 440, 300 }, + [3] = { 41.5, 71.9, 440, 300 }, + [4] = { 40.5, 70.5, 440, 300 }, + [5] = { 47.8, 63.9, 440, 300 }, + [6] = { 46.8, 63.9, 440, 300 }, + [7] = { 38.1, 59.3, 440, 300 }, + [8] = { 37.9, 59.2, 440, 300 }, + [9] = { 40.2, 58.1, 440, 300 }, + [10] = { 39.9, 58, 440, 300 }, + [11] = { 37.9, 57.4, 440, 300 }, + [12] = { 40.6, 57.4, 440, 300 }, + [13] = { 38.3, 57.2, 440, 300 }, + [14] = { 37.6, 57.1, 440, 300 }, + [15] = { 41.1, 56.7, 440, 300 }, + [16] = { 41.4, 56.6, 440, 300 }, + [17] = { 41.5, 56.6, 440, 300 }, + [18] = { 37.8, 56.6, 440, 300 }, + [19] = { 38.2, 56.5, 440, 300 }, + [20] = { 42.5, 55.9, 440, 300 }, + [21] = { 42.9, 54.8, 440, 300 }, + [22] = { 38.4, 54.5, 440, 300 }, + [23] = { 40.6, 54.3, 440, 300 }, + [24] = { 40.5, 54.3, 440, 300 }, + [25] = { 40.1, 54.3, 440, 300 }, + [26] = { 40.6, 54, 440, 300 }, + [27] = { 42.2, 53.3, 440, 300 }, + [28] = { 42.7, 53.1, 440, 300 }, + [29] = { 42.1, 53, 440, 300 }, + [30] = { 38.3, 52.9, 440, 300 }, + [31] = { 38.8, 52.5, 440, 300 }, + [32] = { 38.3, 52.2, 440, 300 }, + [33] = { 41.1, 52.2, 440, 300 }, + [34] = { 41.2, 52, 440, 300 }, + [35] = { 39.2, 51.9, 440, 300 }, + [36] = { 40.3, 51.6, 440, 300 }, + [37] = { 38.9, 51.3, 440, 300 }, + [38] = { 39.6, 51.2, 440, 300 }, + [39] = { 39.3, 51.2, 440, 300 }, + [40] = { 40.7, 50.7, 440, 300 }, + [41] = { 40.5, 50.6, 440, 300 }, + [42] = { 39.6, 74.8, 440, 300 }, + [43] = { 39.1, 74.1, 440, 300 }, + [44] = { 42, 74.1, 440, 300 }, + [45] = { 40.5, 73.4, 440, 300 }, + [46] = { 42.5, 73.4, 440, 300 }, + [47] = { 38.6, 73.4, 440, 300 }, + [48] = { 42, 72.7, 440, 300 }, + [49] = { 40.1, 72.7, 440, 300 }, + [50] = { 41, 72.6, 440, 300 }, + [51] = { 39.1, 72.6, 440, 300 }, + [52] = { 39.6, 71.9, 440, 300 }, + [53] = { 42, 71.2, 440, 300 }, + [54] = { 41, 71.2, 440, 300 }, + [55] = { 39.1, 71.2, 440, 300 }, + [56] = { 39.6, 70.5, 440, 300 }, + [57] = { 41.5, 70.5, 440, 300 }, + [58] = { 47.3, 67.6, 440, 300 }, + [59] = { 48.3, 67.6, 440, 300 }, + [60] = { 46.8, 66.9, 440, 300 }, + [61] = { 45.9, 66.8, 440, 300 }, + [62] = { 46.4, 66.2, 440, 300 }, + [63] = { 45.4, 66.2, 440, 300 }, + [64] = { 48.3, 66.1, 440, 300 }, + [65] = { 45.9, 65.4, 440, 300 }, + [66] = { 47.8, 65.4, 440, 300 }, + [67] = { 46.9, 65.4, 440, 300 }, + [68] = { 46.3, 64.7, 440, 300 }, + [69] = { 48.3, 64.6, 440, 300 }, + [70] = { 46.3, 63.2, 440, 300 }, + [71] = { 47.3, 63.2, 440, 300 }, + [72] = { 38.7, 58.1, 440, 300 }, + [73] = { 40.8, 56.9, 440, 300 }, + [74] = { 39.3, 56.6, 440, 300 }, + [75] = { 42, 56, 440, 300 }, + [76] = { 40.1, 56, 440, 300 }, + [77] = { 39.1, 55.2, 440, 300 }, + [78] = { 41.2, 55.2, 440, 300 }, + [79] = { 38.5, 54.7, 440, 300 }, + [80] = { 42.5, 54.5, 440, 300 }, + [81] = { 40, 54.4, 440, 300 }, + [82] = { 39.6, 53.8, 440, 300 }, + [83] = { 41.5, 53.8, 440, 300 }, + [84] = { 40.2, 53.8, 440, 300 }, + [85] = { 38.6, 53.1, 440, 300 }, + [86] = { 40.5, 52.4, 440, 300 }, + [87] = { 38.9, 52, 440, 300 }, + [88] = { 40.1, 51.3, 440, 300 }, + [89] = { 39.9, 50.9, 440, 300 }, + }, + ["lvl"] = "46-47", + }, + [5473] = { + ["coords"] = { + [1] = { 39.6, 74.8, 440, 300 }, + [2] = { 39.1, 74.1, 440, 300 }, + [3] = { 42, 74.1, 440, 300 }, + [4] = { 40.5, 73.4, 440, 300 }, + [5] = { 42.5, 73.4, 440, 300 }, + [6] = { 38.6, 73.4, 440, 300 }, + [7] = { 42, 72.7, 440, 300 }, + [8] = { 40.1, 72.7, 440, 300 }, + [9] = { 41, 72.6, 440, 300 }, + [10] = { 39.1, 72.6, 440, 300 }, + [11] = { 39.6, 71.9, 440, 300 }, + [12] = { 42, 71.2, 440, 300 }, + [13] = { 41, 71.2, 440, 300 }, + [14] = { 39.1, 71.2, 440, 300 }, + [15] = { 39.6, 70.5, 440, 300 }, + [16] = { 41.5, 70.5, 440, 300 }, + [17] = { 47.3, 67.6, 440, 300 }, + [18] = { 48.3, 67.6, 440, 300 }, + [19] = { 46.8, 66.9, 440, 300 }, + [20] = { 45.9, 66.8, 440, 300 }, + [21] = { 46.4, 66.2, 440, 300 }, + [22] = { 45.4, 66.2, 440, 300 }, + [23] = { 48.3, 66.1, 440, 300 }, + [24] = { 45.9, 65.4, 440, 300 }, + [25] = { 47.8, 65.4, 440, 300 }, + [26] = { 46.9, 65.4, 440, 300 }, + [27] = { 46.3, 64.7, 440, 300 }, + [28] = { 48.3, 64.6, 440, 300 }, + [29] = { 46.3, 63.2, 440, 300 }, + [30] = { 47.3, 63.2, 440, 300 }, + [31] = { 38.1, 59.3, 440, 300 }, + [32] = { 38.7, 58.1, 440, 300 }, + [33] = { 39.9, 58, 440, 300 }, + [34] = { 37.9, 57.4, 440, 300 }, + [35] = { 38.3, 57.2, 440, 300 }, + [36] = { 40.8, 56.9, 440, 300 }, + [37] = { 41.1, 56.7, 440, 300 }, + [38] = { 37.8, 56.6, 440, 300 }, + [39] = { 39.3, 56.6, 440, 300 }, + [40] = { 42, 56, 440, 300 }, + [41] = { 40.1, 56, 440, 300 }, + [42] = { 39.1, 55.2, 440, 300 }, + [43] = { 41.2, 55.2, 440, 300 }, + [44] = { 38.5, 54.7, 440, 300 }, + [45] = { 42.5, 54.5, 440, 300 }, + [46] = { 40, 54.4, 440, 300 }, + [47] = { 40.6, 54, 440, 300 }, + [48] = { 39.6, 53.8, 440, 300 }, + [49] = { 41.5, 53.8, 440, 300 }, + [50] = { 40.2, 53.8, 440, 300 }, + [51] = { 42.2, 53.3, 440, 300 }, + [52] = { 38.6, 53.1, 440, 300 }, + [53] = { 38.3, 52.9, 440, 300 }, + [54] = { 38.8, 52.5, 440, 300 }, + [55] = { 40.5, 52.4, 440, 300 }, + [56] = { 38.9, 52, 440, 300 }, + [57] = { 40.1, 51.3, 440, 300 }, + [58] = { 39.6, 51.2, 440, 300 }, + [59] = { 39.9, 50.9, 440, 300 }, + }, + ["lvl"] = "46-47", + }, + [5474] = { + ["coords"] = { + [1] = { 41.5, 74.8, 440, 300 }, + [2] = { 40.5, 74.8, 440, 300 }, + [3] = { 41.5, 71.9, 440, 300 }, + [4] = { 40.5, 70.5, 440, 300 }, + [5] = { 47.8, 63.9, 440, 300 }, + [6] = { 46.8, 63.9, 440, 300 }, + [7] = { 38.1, 59.3, 440, 300 }, + [8] = { 37.9, 59.2, 440, 300 }, + [9] = { 40.2, 58.1, 440, 300 }, + [10] = { 39.9, 58, 440, 300 }, + [11] = { 37.9, 57.4, 440, 300 }, + [12] = { 40.6, 57.4, 440, 300 }, + [13] = { 38.3, 57.2, 440, 300 }, + [14] = { 37.6, 57.1, 440, 300 }, + [15] = { 41.1, 56.7, 440, 300 }, + [16] = { 41.4, 56.6, 440, 300 }, + [17] = { 41.5, 56.6, 440, 300 }, + [18] = { 37.8, 56.6, 440, 300 }, + [19] = { 38.2, 56.5, 440, 300 }, + [20] = { 42.5, 55.9, 440, 300 }, + [21] = { 42.9, 54.8, 440, 300 }, + [22] = { 38.4, 54.5, 440, 300 }, + [23] = { 40.6, 54.3, 440, 300 }, + [24] = { 40.5, 54.3, 440, 300 }, + [25] = { 40.1, 54.3, 440, 300 }, + [26] = { 40.6, 54, 440, 300 }, + [27] = { 42.2, 53.3, 440, 300 }, + [28] = { 42.7, 53.1, 440, 300 }, + [29] = { 42.1, 53, 440, 300 }, + [30] = { 38.3, 52.9, 440, 300 }, + [31] = { 38.8, 52.5, 440, 300 }, + [32] = { 38.3, 52.2, 440, 300 }, + [33] = { 41.1, 52.2, 440, 300 }, + [34] = { 41.2, 52, 440, 300 }, + [35] = { 39.2, 51.9, 440, 300 }, + [36] = { 40.3, 51.6, 440, 300 }, + [37] = { 38.9, 51.3, 440, 300 }, + [38] = { 39.6, 51.2, 440, 300 }, + [39] = { 39.3, 51.2, 440, 300 }, + [40] = { 40.7, 50.7, 440, 300 }, + [41] = { 40.5, 50.6, 440, 300 }, + [42] = { 40.8, 56.9, 440, 300 }, + [43] = { 39.1, 55.2, 440, 300 }, + [44] = { 38.9, 52, 440, 300 }, + [45] = { 40.1, 51.3, 440, 300 }, + [46] = { 39.9, 50.9, 440, 300 }, + }, + ["lvl"] = "47-48", + }, + [5475] = { + ["coords"] = { + [1] = { 39.6, 74.8, 440, 300 }, + [2] = { 39.1, 74.1, 440, 300 }, + [3] = { 42, 74.1, 440, 300 }, + [4] = { 40.5, 73.4, 440, 300 }, + [5] = { 42.5, 73.4, 440, 300 }, + [6] = { 38.6, 73.4, 440, 300 }, + [7] = { 42, 72.7, 440, 300 }, + [8] = { 40.1, 72.7, 440, 300 }, + [9] = { 41, 72.6, 440, 300 }, + [10] = { 39.1, 72.6, 440, 300 }, + [11] = { 39.6, 71.9, 440, 300 }, + [12] = { 42, 71.2, 440, 300 }, + [13] = { 41, 71.2, 440, 300 }, + [14] = { 39.1, 71.2, 440, 300 }, + [15] = { 39.6, 70.5, 440, 300 }, + [16] = { 41.5, 70.5, 440, 300 }, + [17] = { 47.3, 67.6, 440, 300 }, + [18] = { 48.3, 67.6, 440, 300 }, + [19] = { 46.8, 66.9, 440, 300 }, + [20] = { 45.9, 66.8, 440, 300 }, + [21] = { 46.4, 66.2, 440, 300 }, + [22] = { 45.4, 66.2, 440, 300 }, + [23] = { 48.3, 66.1, 440, 300 }, + [24] = { 45.9, 65.4, 440, 300 }, + [25] = { 47.8, 65.4, 440, 300 }, + [26] = { 46.9, 65.4, 440, 300 }, + [27] = { 46.3, 64.7, 440, 300 }, + [28] = { 48.3, 64.6, 440, 300 }, + [29] = { 46.3, 63.2, 440, 300 }, + [30] = { 47.3, 63.2, 440, 300 }, + [31] = { 38.1, 59.3, 440, 300 }, + [32] = { 38.7, 58.1, 440, 300 }, + [33] = { 39.9, 58, 440, 300 }, + [34] = { 37.9, 57.4, 440, 300 }, + [35] = { 38.3, 57.2, 440, 300 }, + [36] = { 41.1, 56.7, 440, 300 }, + [37] = { 37.8, 56.6, 440, 300 }, + [38] = { 39.3, 56.6, 440, 300 }, + [39] = { 42, 56, 440, 300 }, + [40] = { 40.1, 56, 440, 300 }, + [41] = { 41.2, 55.2, 440, 300 }, + [42] = { 38.5, 54.7, 440, 300 }, + [43] = { 42.5, 54.5, 440, 300 }, + [44] = { 40, 54.4, 440, 300 }, + [45] = { 40.6, 54, 440, 300 }, + [46] = { 39.6, 53.8, 440, 300 }, + [47] = { 41.5, 53.8, 440, 300 }, + [48] = { 40.2, 53.8, 440, 300 }, + [49] = { 42.2, 53.3, 440, 300 }, + [50] = { 38.6, 53.1, 440, 300 }, + [51] = { 38.3, 52.9, 440, 300 }, + [52] = { 38.8, 52.5, 440, 300 }, + [53] = { 40.5, 52.4, 440, 300 }, + [54] = { 39.6, 51.2, 440, 300 }, + }, + ["lvl"] = "47-48", + }, + [5476] = { + ["coords"] = { + [1] = { 26.7, 59.8, 8, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "33", + }, + [5477] = { + ["coords"] = { + [1] = { 55.7, 34.4, 8, 300 }, + }, + ["lvl"] = "39", + }, + [5479] = { + ["coords"] = { + [1] = { 78.7, 45.8, 1519, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [5480] = { + ["coords"] = { + [1] = { 78.5, 45.7, 1519, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [5481] = { + ["coords"] = { + [1] = { 27.8, 69, 440, 300 }, + [2] = { 28.4, 68.7, 440, 300 }, + [3] = { 27.6, 67.9, 440, 300 }, + [4] = { 29, 67.6, 440, 300 }, + [5] = { 30.7, 67.3, 440, 300 }, + [6] = { 29.9, 67, 440, 300 }, + [7] = { 29.4, 66.3, 440, 300 }, + [8] = { 28.4, 65.4, 440, 300 }, + [9] = { 31.3, 64.7, 440, 300 }, + [10] = { 28.1, 64.7, 440, 300 }, + [11] = { 30.3, 64.6, 440, 300 }, + [12] = { 30.8, 64.3, 440, 300 }, + [13] = { 28.3, 64.1, 440, 300 }, + [14] = { 28.2, 62.9, 440, 300 }, + }, + ["lvl"] = "47-48", + }, + [5482] = { + ["coords"] = { + [1] = { 75.6, 37, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [5483] = { + ["coords"] = { + [1] = { 76.1, 36.8, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5484] = { + ["coords"] = { + [1] = { 42.1, 30, 1519, 350 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [5485] = { + ["coords"] = { + [1] = { 29.5, 67.6, 440, 300 }, + [2] = { 28.5, 66.9, 440, 300 }, + [3] = { 30.3, 66.8, 440, 300 }, + [4] = { 29.7, 66.4, 440, 300 }, + [5] = { 30.8, 66.2, 440, 300 }, + [6] = { 27.4, 65.7, 440, 300 }, + [7] = { 31, 65.3, 440, 300 }, + [8] = { 29.4, 64.6, 440, 300 }, + [9] = { 29.4, 63.9, 440, 300 }, + [10] = { 29.3, 62.4, 440, 300 }, + [11] = { 28.9, 61.8, 440, 300 }, + [12] = { 30.7, 67.3, 440, 300 }, + [13] = { 28.4, 65.4, 440, 300 }, + }, + ["lvl"] = "49-50", + }, + [5489] = { + ["coords"] = { + [1] = { 38.5, 26.9, 1519, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [5490] = { + ["coords"] = { + [1] = { 28.1, 70, 440, 300 }, + [2] = { 29.4, 66.9, 440, 300 }, + [3] = { 29.7, 66.4, 440, 300 }, + [4] = { 28, 66.2, 440, 300 }, + [5] = { 31.3, 65.5, 440, 300 }, + [6] = { 27.5, 63.3, 440, 300 }, + [7] = { 29.9, 63.2, 440, 300 }, + [8] = { 29.3, 62.4, 440, 300 }, + [9] = { 28.4, 65.4, 440, 300 }, + }, + ["lvl"] = "48-49", + }, + [5491] = { + ["coords"] = { + [1] = { 38.7, 32.8, 1519, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [5492] = { + ["coords"] = { + [1] = { 37.2, 31.9, 1519, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [5493] = { + ["coords"] = { + [1] = { 45.6, 58.4, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [5494] = { + ["coords"] = { + [1] = { 45.8, 58.6, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5495] = { + ["coords"] = { + [1] = { 26.1, 77.2, 1519, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [5496] = { + ["coords"] = { + [1] = { 25.8, 79.2, 1519, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [5497] = { + ["coords"] = { + [1] = { 38.6, 79.3, 1519, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [5498] = { + ["coords"] = { + [1] = { 36.9, 81.1, 1519, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [5499] = { + ["coords"] = { + [1] = { 46.5, 79.7, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [5500] = { + ["coords"] = { + [1] = { 46.3, 79.1, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "31", + }, + [5501] = { + ["coords"] = { + [1] = { 61.9, 23.6, 361, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "57", + }, + [5502] = { + ["coords"] = { + [1] = { 14.9, 49.6, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [5503] = { + ["coords"] = { + [1] = { 46.7, 78.6, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5504] = { + ["coords"] = { + [1] = { 20.9, 55.5, 1519, 490 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [5505] = { + ["coords"] = { + [1] = { 21.2, 51.6, 1519, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [5506] = { + ["coords"] = { + [1] = { 19.1, 52.7, 1519, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [5507] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "35", + }, + [5508] = { + ["coords"] = { + [1] = { 66.1, 17.2, 4, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [5509] = { + ["coords"] = { + [1] = { 51.2, 12.1, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5510] = { + ["coords"] = { + [1] = { 54.6, 15.7, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5511] = { + ["coords"] = { + [1] = { 56.8, 16.2, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "33", + }, + [5512] = { + ["coords"] = { + [1] = { 56.3, 17.2, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5513] = { + ["coords"] = { + [1] = { 51.1, 17.3, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [5514] = { + ["coords"] = { + [1] = { 51, 16.9, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5515] = { + ["coords"] = { + [1] = { 61.6, 15.3, 1519, 490 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [5516] = { + ["coords"] = { + [1] = { 61.9, 14.7, 1519, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [5517] = { + ["coords"] = { + [1] = { 62.5, 14.9, 1519, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [5518] = { + ["coords"] = { + [1] = { 54.8, 7.6, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [5519] = { + ["coords"] = { + [1] = { 55.2, 7.1, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5520] = { + ["coords"] = { + [1] = { 25.7, 77.6, 1519, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [5521] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "10", + }, + [5522] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "10", + }, + [5523] = { + ["coords"] = { + [1] = { 67.4, 64.3, 400, 300 }, + [2] = { 67.3, 63.8, 400, 300 }, + [3] = { 67.6, 63.5, 400, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "29-30", + }, + [5524] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "35-40", + }, + [5525] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5526] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "41", + }, + [5542] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "41", + }, + [5543] = { + ["coords"] = { + [1] = { 35.7, 22.2, 215, 375 }, + [2] = { 89.4, 49.6, 405, 375 }, + [3] = { 28.9, 26.4, 1638, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "17", + }, + [5544] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "20", + }, + [5546] = { + ["coords"] = { + [1] = { 44.5, 52.6, 8, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [5547] = { + ["coords"] = { + [1] = { 44.5, 52.3, 8, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [5548] = { + ["coords"] = {}, + ["lvl"] = "21", + }, + [5549] = { + ["coords"] = {}, + ["lvl"] = "18", + }, + [5550] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "15-17", + }, + [5551] = { + ["coords"] = {}, + ["lvl"] = "50", + }, + [5552] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "15-17", + }, + [5553] = { + ["coords"] = {}, + ["lvl"] = "50", + }, + [5554] = { + ["coords"] = {}, + ["lvl"] = "14-17", + }, + [5555] = { + ["coords"] = {}, + ["lvl"] = "50", + }, + [5556] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "21", + }, + [5557] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "21", + }, + [5558] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "15-18", + }, + [5559] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "15-18", + }, + [5560] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "15-18", + }, + [5561] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "15-18", + }, + [5562] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "15-18", + }, + [5563] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "15-18", + }, + [5564] = { + ["coords"] = { + [1] = { 67.2, 49.8, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [5565] = { + ["coords"] = { + [1] = { 67.1, 49.5, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5566] = { + ["coords"] = { + [1] = { 44.7, 77.1, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [5567] = { + ["coords"] = { + [1] = { 42, 75.9, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "31", + }, + [5568] = { + ["coords"] = { + [1] = { 45.8, 49.1, 1, 270 }, + }, + ["fac"] = "AH", + ["lvl"] = "8", + }, + [5569] = { + ["coords"] = { + [1] = { 73.6, 53.3, 1537, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [5570] = { + ["coords"] = { + [1] = { 72.5, 76.9, 1537, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [5587] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "21", + }, + [5588] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "18", + }, + [5589] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "21", + }, + [5590] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "18", + }, + [5591] = { + ["coords"] = { + [1] = { 44.7, 57.2, 8, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [5592] = { + ["coords"] = { + [1] = { 81.3, 81, 8, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "43", + }, + [5593] = { + ["coords"] = { + [1] = { 83.8, 80.4, 8, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [5594] = { + ["coords"] = { + [1] = { 50.9, 27, 440, 300 }, + }, + ["lvl"] = "45", + }, + [5595] = { + ["coords"] = { + [1] = { 46.6, 42.1, 1, 300 }, + [2] = { 48.5, 41.9, 1, 300 }, + [3] = { 70, 41.9, 1, 300 }, + [4] = { 70.1, 41.7, 1, 300 }, + [5] = { 69.6, 40.6, 1, 300 }, + [6] = { 51.6, 40.1, 1, 300 }, + [7] = { 51.4, 39.7, 1, 300 }, + [8] = { 51.9, 39.4, 1, 300 }, + [9] = { 52.3, 36.9, 1, 300 }, + [10] = { 53.1, 36.8, 1, 300 }, + [11] = { 53, 36.1, 1, 300 }, + [12] = { 52.3, 35.4, 1, 300 }, + [13] = { 53.5, 35.1, 1, 300 }, + [14] = { 53.3, 34.9, 1, 300 }, + [15] = { 55.4, 34.5, 1, 300 }, + [16] = { 72, 32.3, 1, 300 }, + [17] = { 71.8, 31.3, 1, 300 }, + [18] = { 69.7, 30.3, 1, 300 }, + [19] = { 70.8, 29.9, 1, 300 }, + [20] = { 70, 26.6, 1, 300 }, + [21] = { 71.1, 22.3, 1, 300 }, + [22] = { 70.1, 20.7, 1, 300 }, + [23] = { 68.7, 18.7, 1, 300 }, + [24] = { 68.9, 18.5, 1, 300 }, + [25] = { 15.1, 87.5, 1537, 300 }, + [26] = { 13.9, 85.7, 1537, 300 }, + [27] = { 27.1, 83.8, 1537, 300 }, + [28] = { 32.4, 80.8, 1537, 300 }, + [29] = { 64.6, 80.7, 1537, 300 }, + [30] = { 22, 79.6, 1537, 300 }, + [31] = { 65.6, 79.5, 1537, 300 }, + [32] = { 40.5, 79.1, 1537, 300 }, + [33] = { 62.6, 78.9, 1537, 300 }, + [34] = { 63.5, 78.7, 1537, 300 }, + [35] = { 29.9, 78.2, 1537, 300 }, + [36] = { 21.8, 77.1, 1537, 300 }, + [37] = { 20.5, 77, 1537, 300 }, + [38] = { 35.9, 73.8, 1537, 300 }, + [39] = { 60.7, 73.4, 1537, 300 }, + [40] = { 37.9, 71.5, 1537, 300 }, + [41] = { 67.9, 66, 1537, 300 }, + [42] = { 51.9, 65.6, 1537, 300 }, + [43] = { 22.9, 65.5, 1537, 300 }, + [44] = { 66.6, 65.1, 1537, 300 }, + [45] = { 33.4, 64, 1537, 300 }, + [46] = { 32.9, 63.1, 1537, 300 }, + [47] = { 21.7, 61.4, 1537, 300 }, + [48] = { 40.3, 58.9, 1537, 300 }, + [49] = { 43.6, 58.8, 1537, 300 }, + [50] = { 50.1, 58, 1537, 300 }, + [51] = { 42.3, 57.9, 1537, 300 }, + [52] = { 28.9, 55, 1537, 300 }, + [53] = { 37.5, 54.1, 1537, 300 }, + [54] = { 43.4, 53.5, 1537, 300 }, + [55] = { 38.6, 51.1, 1537, 300 }, + [56] = { 40.7, 50.2, 1537, 300 }, + [57] = { 45, 49.9, 1537, 300 }, + [58] = { 56, 49.8, 1537, 300 }, + [59] = { 38.2, 49.2, 1537, 300 }, + [60] = { 44.4, 48.7, 1537, 300 }, + [61] = { 57.9, 34.9, 1537, 300 }, + [62] = { 69.7, 33.9, 1537, 300 }, + [63] = { 54.7, 33.8, 1537, 300 }, + [64] = { 71, 33.3, 1537, 300 }, + [65] = { 56.4, 32.1, 1537, 300 }, + [66] = { 67.6, 25.8, 1537, 300 }, + [67] = { 33, 22.2, 1537, 300 }, + [68] = { 24.3, 21.9, 1537, 300 }, + [69] = { 58.8, 14.5, 1537, 300 }, + [70] = { 39.4, 13.2, 1537, 300 }, + [71] = { 59.2, 13.1, 1537, 300 }, + [72] = { 27.2, 13, 1537, 300 }, + [73] = { 28.3, 11.8, 1537, 300 }, + [74] = { 39.1, 11.7, 1537, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [5596] = { + ["coords"] = {}, + ["lvl"] = "7-8", + }, + [5597] = { + ["coords"] = { + [1] = { 45.8, 6.8, 14, 300 }, + [2] = { 50.3, 75.4, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "38", + }, + [5598] = { + ["coords"] = { + [1] = { 33.8, 75.2, 47, 350 }, + }, + ["fac"] = "AH", + ["lvl"] = "45", + }, + [5599] = { + ["coords"] = { + [1] = { 42.2, 32.5, 215, 375 }, + [2] = { 60.8, 76.9, 1638, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [5600] = { + ["coords"] = { + [1] = { 73.4, 41.6, 405, 300 }, + }, + ["lvl"] = "35", + }, + [5601] = { + ["coords"] = { + [1] = { 65.9, 80.4, 405, 300 }, + }, + ["lvl"] = "37", + }, + [5602] = { + ["coords"] = { + [1] = { 43.6, 1, 357, 300 }, + [2] = { 40.5, 95.5, 405, 300 }, + }, + ["lvl"] = "37", + }, + [5603] = { + ["coords"] = { + [1] = { 49.7, 72.6, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "38", + }, + [5604] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "1", + }, + [5605] = { + ["coords"] = { + [1] = { 72, 76.9, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5606] = { + ["coords"] = { + [1] = { 54.7, 68.4, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "12", + }, + [5607] = { + ["coords"] = { + [1] = { 28.3, 53.5, 44, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [5608] = { + ["coords"] = { + [1] = { 28.4, 53.5, 44, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [5609] = { + ["coords"] = { + [1] = { 54.5, 68.4, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "14", + }, + [5610] = { + ["coords"] = { + [1] = { 54.3, 67.7, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "12", + }, + [5611] = { + ["coords"] = { + [1] = { 54.6, 67.7, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "13", + }, + [5612] = { + ["coords"] = { + [1] = { 47.3, 53.7, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [5613] = { + ["coords"] = { + [1] = { 54.5, 67.9, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "11", + }, + [5614] = { + ["coords"] = { + [1] = { 54.4, 67.8, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [5615] = { + ["coords"] = { + [1] = { 63.8, 40.6, 440, 300 }, + [2] = { 63.4, 40, 440, 300 }, + [3] = { 64.7, 40, 440, 300 }, + [4] = { 65.3, 40, 440, 300 }, + [5] = { 58.9, 40, 440, 300 }, + [6] = { 64, 40, 440, 300 }, + [7] = { 63.8, 40, 440, 300 }, + [8] = { 64, 39.8, 440, 300 }, + [9] = { 65.2, 39.5, 440, 300 }, + [10] = { 58.8, 39.4, 440, 300 }, + [11] = { 61, 39.4, 440, 300 }, + [12] = { 58.4, 39.4, 440, 300 }, + [13] = { 64.2, 39.3, 440, 300 }, + [14] = { 58.7, 39.3, 440, 300 }, + [15] = { 63.7, 39.3, 440, 300 }, + [16] = { 64.8, 39.3, 440, 300 }, + [17] = { 60.4, 39.2, 440, 300 }, + [18] = { 65.2, 39.2, 440, 300 }, + [19] = { 59, 39.2, 440, 300 }, + [20] = { 60.7, 39.1, 440, 300 }, + [21] = { 60.8, 38.7, 440, 300 }, + [22] = { 63.7, 38.6, 440, 300 }, + [23] = { 58.9, 38.6, 440, 300 }, + [24] = { 60.5, 38.5, 440, 300 }, + [25] = { 61.7, 38.2, 440, 300 }, + [26] = { 63.7, 38.1, 440, 300 }, + [27] = { 63.4, 37.9, 440, 300 }, + [28] = { 65.2, 37.9, 440, 300 }, + [29] = { 58.5, 37.4, 440, 300 }, + [30] = { 63.3, 37.4, 440, 300 }, + [31] = { 60.1, 37.4, 440, 300 }, + [32] = { 59.9, 37.2, 440, 300 }, + [33] = { 58.9, 37.2, 440, 300 }, + [34] = { 58.4, 37.1, 440, 300 }, + [35] = { 65.2, 37.1, 440, 300 }, + [36] = { 65.6, 37.1, 440, 300 }, + [37] = { 60.1, 37, 440, 300 }, + [38] = { 65.4, 36.9, 440, 300 }, + [39] = { 65.7, 36.7, 440, 300 }, + [40] = { 58.6, 36.7, 440, 300 }, + [41] = { 58.9, 36.4, 440, 300 }, + [42] = { 65.2, 36.4, 440, 300 }, + [43] = { 58.7, 36.4, 440, 300 }, + [44] = { 65.5, 36.4, 440, 300 }, + [45] = { 65.8, 36.1, 440, 300 }, + [46] = { 58.9, 35.8, 440, 300 }, + [47] = { 61.8, 35.5, 440, 300 }, + [48] = { 62.1, 35.1, 440, 300 }, + [49] = { 62.3, 35.1, 440, 300 }, + [50] = { 61.8, 35, 440, 300 }, + [51] = { 61.8, 34.4, 440, 300 }, + [52] = { 60.7, 33.4, 440, 300 }, + [53] = { 60.9, 32.9, 440, 300 }, + [54] = { 60.4, 32.8, 440, 300 }, + [55] = { 60.8, 32.8, 440, 300 }, + [56] = { 60.7, 32.8, 440, 300 }, + [57] = { 60.8, 32.5, 440, 300 }, + [58] = { 60.9, 32.1, 440, 300 }, + }, + ["lvl"] = "43-44", + }, + [5616] = { + ["coords"] = { + [1] = { 63.6, 34.1, 440, 300 }, + [2] = { 62.8, 33.5, 440, 300 }, + [3] = { 63.7, 33.4, 440, 300 }, + [4] = { 65.2, 33.4, 440, 300 }, + [5] = { 63.4, 33.3, 440, 300 }, + [6] = { 63.3, 33.3, 440, 300 }, + [7] = { 63.5, 33.1, 440, 300 }, + [8] = { 62.8, 32.9, 440, 300 }, + [9] = { 63.7, 32.8, 440, 300 }, + [10] = { 65.3, 32.8, 440, 300 }, + [11] = { 63.3, 32.8, 440, 300 }, + [12] = { 65.1, 32.7, 440, 300 }, + [13] = { 65.6, 32.1, 440, 300 }, + [14] = { 63.8, 31.4, 440, 300 }, + [15] = { 64, 31.3, 440, 300 }, + [16] = { 63.5, 31.2, 440, 300 }, + [17] = { 63.8, 31.1, 440, 300 }, + [18] = { 63.6, 31, 440, 300 }, + [19] = { 62.8, 30.7, 440, 300 }, + [20] = { 62.7, 30.5, 440, 300 }, + [21] = { 62.8, 30, 440, 300 }, + [22] = { 63.8, 29.7, 440, 300 }, + [23] = { 63.9, 29.6, 440, 300 }, + [24] = { 63.4, 29.3, 440, 300 }, + [25] = { 63.8, 29.2, 440, 300 }, + [26] = { 64.2, 29.2, 440, 300 }, + [27] = { 63.9, 29.1, 440, 300 }, + [28] = { 60.4, 24.8, 440, 300 }, + [29] = { 59.4, 24.7, 440, 300 }, + [30] = { 60.9, 24.1, 440, 300 }, + [31] = { 59.8, 24, 440, 300 }, + [32] = { 60.8, 23.5, 440, 300 }, + [33] = { 58.9, 23.4, 440, 300 }, + [34] = { 60.5, 23.4, 440, 300 }, + [35] = { 59.8, 23.4, 440, 300 }, + [36] = { 60.9, 22.7, 440, 300 }, + [37] = { 59.9, 22.6, 440, 300 }, + [38] = { 60.4, 22.6, 440, 300 }, + }, + ["lvl"] = "40-41", + }, + [5617] = { + ["coords"] = { + [1] = { 63.8, 40.6, 440, 300 }, + [2] = { 63.4, 40, 440, 300 }, + [3] = { 64.7, 40, 440, 300 }, + [4] = { 65.3, 40, 440, 300 }, + [5] = { 58.9, 40, 440, 300 }, + [6] = { 64, 40, 440, 300 }, + [7] = { 63.8, 40, 440, 300 }, + [8] = { 64, 39.8, 440, 300 }, + [9] = { 65.2, 39.5, 440, 300 }, + [10] = { 58.8, 39.4, 440, 300 }, + [11] = { 61, 39.4, 440, 300 }, + [12] = { 58.4, 39.4, 440, 300 }, + [13] = { 64.2, 39.3, 440, 300 }, + [14] = { 58.7, 39.3, 440, 300 }, + [15] = { 63.7, 39.3, 440, 300 }, + [16] = { 64.8, 39.3, 440, 300 }, + [17] = { 60.4, 39.2, 440, 300 }, + [18] = { 65.2, 39.2, 440, 300 }, + [19] = { 59, 39.2, 440, 300 }, + [20] = { 60.7, 39.1, 440, 300 }, + [21] = { 60.8, 38.7, 440, 300 }, + [22] = { 63.7, 38.6, 440, 300 }, + [23] = { 58.9, 38.6, 440, 300 }, + [24] = { 60.5, 38.5, 440, 300 }, + [25] = { 63.7, 38.1, 440, 300 }, + [26] = { 63.4, 37.9, 440, 300 }, + [27] = { 65.2, 37.9, 440, 300 }, + [28] = { 58.5, 37.4, 440, 300 }, + [29] = { 63.3, 37.4, 440, 300 }, + [30] = { 60.1, 37.4, 440, 300 }, + [31] = { 59.9, 37.2, 440, 300 }, + [32] = { 58.9, 37.2, 440, 300 }, + [33] = { 58.4, 37.1, 440, 300 }, + [34] = { 65.2, 37.1, 440, 300 }, + [35] = { 65.6, 37.1, 440, 300 }, + [36] = { 60.1, 37, 440, 300 }, + [37] = { 65.4, 36.9, 440, 300 }, + [38] = { 65.7, 36.7, 440, 300 }, + [39] = { 58.6, 36.7, 440, 300 }, + [40] = { 58.9, 36.4, 440, 300 }, + [41] = { 65.2, 36.4, 440, 300 }, + [42] = { 58.7, 36.4, 440, 300 }, + [43] = { 65.5, 36.4, 440, 300 }, + [44] = { 65.8, 36.1, 440, 300 }, + [45] = { 58.9, 35.8, 440, 300 }, + [46] = { 61.8, 35.5, 440, 300 }, + [47] = { 62.1, 35.1, 440, 300 }, + [48] = { 62.3, 35.1, 440, 300 }, + [49] = { 61.8, 35, 440, 300 }, + [50] = { 61.8, 34.4, 440, 300 }, + [51] = { 62.8, 33.5, 440, 300 }, + [52] = { 60.7, 33.4, 440, 300 }, + [53] = { 63.3, 33.3, 440, 300 }, + [54] = { 60.9, 32.9, 440, 300 }, + [55] = { 60.4, 32.8, 440, 300 }, + [56] = { 60.8, 32.8, 440, 300 }, + [57] = { 60.7, 32.8, 440, 300 }, + [58] = { 60.8, 32.5, 440, 300 }, + [59] = { 60.9, 32.1, 440, 300 }, + [60] = { 63.8, 31.4, 440, 300 }, + [61] = { 62.8, 30.7, 440, 300 }, + [62] = { 62.7, 30.5, 440, 300 }, + [63] = { 60.4, 24.8, 440, 300 }, + [64] = { 60.9, 22.7, 440, 300 }, + }, + ["lvl"] = "42-43", + }, + [5618] = { + ["coords"] = { + [1] = { 63.6, 34.1, 440, 300 }, + [2] = { 63.7, 33.4, 440, 300 }, + [3] = { 65.2, 33.4, 440, 300 }, + [4] = { 63.4, 33.3, 440, 300 }, + [5] = { 63.5, 33.1, 440, 300 }, + [6] = { 62.8, 32.9, 440, 300 }, + [7] = { 63.7, 32.8, 440, 300 }, + [8] = { 65.3, 32.8, 440, 300 }, + [9] = { 63.3, 32.8, 440, 300 }, + [10] = { 65.1, 32.7, 440, 300 }, + [11] = { 65.6, 32.1, 440, 300 }, + [12] = { 64, 31.3, 440, 300 }, + [13] = { 63.5, 31.2, 440, 300 }, + [14] = { 63.8, 31.1, 440, 300 }, + [15] = { 63.6, 31, 440, 300 }, + [16] = { 62.8, 30, 440, 300 }, + [17] = { 63.8, 29.7, 440, 300 }, + [18] = { 63.9, 29.6, 440, 300 }, + [19] = { 63.4, 29.3, 440, 300 }, + [20] = { 63.8, 29.2, 440, 300 }, + [21] = { 64.2, 29.2, 440, 300 }, + [22] = { 63.9, 29.1, 440, 300 }, + [23] = { 59.4, 24.7, 440, 300 }, + [24] = { 60.9, 24.1, 440, 300 }, + [25] = { 59.8, 24, 440, 300 }, + [26] = { 60.8, 23.5, 440, 300 }, + [27] = { 58.9, 23.4, 440, 300 }, + [28] = { 60.5, 23.4, 440, 300 }, + [29] = { 59.8, 23.4, 440, 300 }, + [30] = { 59.9, 22.6, 440, 300 }, + [31] = { 60.4, 22.6, 440, 300 }, + [32] = { 62.8, 33.5, 440, 300 }, + [33] = { 63.3, 33.3, 440, 300 }, + [34] = { 63.8, 31.4, 440, 300 }, + [35] = { 62.8, 30.7, 440, 300 }, + [36] = { 62.7, 30.5, 440, 300 }, + [37] = { 60.4, 24.8, 440, 300 }, + [38] = { 60.9, 22.7, 440, 300 }, + }, + ["lvl"] = "41-42", + }, + [5620] = { + ["coords"] = { + [1] = { 26.7, 43.9, 44, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "21", + }, + [5621] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "1", + }, + [5622] = { + ["coords"] = { + [1] = { 65.1, 22, 8, 300 }, + }, + ["lvl"] = "37", + }, + [5623] = { + ["coords"] = { + [1] = { 63.8, 40.6, 440, 300 }, + [2] = { 63.4, 40, 440, 300 }, + [3] = { 64.7, 40, 440, 300 }, + [4] = { 65.3, 40, 440, 300 }, + [5] = { 58.9, 40, 440, 300 }, + [6] = { 64, 40, 440, 300 }, + [7] = { 63.8, 40, 440, 300 }, + [8] = { 64, 39.8, 440, 300 }, + [9] = { 65.2, 39.5, 440, 300 }, + [10] = { 58.8, 39.4, 440, 300 }, + [11] = { 61, 39.4, 440, 300 }, + [12] = { 58.4, 39.4, 440, 300 }, + [13] = { 64.2, 39.3, 440, 300 }, + [14] = { 58.7, 39.3, 440, 300 }, + [15] = { 63.7, 39.3, 440, 300 }, + [16] = { 64.8, 39.3, 440, 300 }, + [17] = { 60.4, 39.2, 440, 300 }, + [18] = { 65.2, 39.2, 440, 300 }, + [19] = { 59, 39.2, 440, 300 }, + [20] = { 60.7, 39.1, 440, 300 }, + [21] = { 60.8, 38.7, 440, 300 }, + [22] = { 63.7, 38.6, 440, 300 }, + [23] = { 58.9, 38.6, 440, 300 }, + [24] = { 60.5, 38.5, 440, 300 }, + [25] = { 63.7, 38.1, 440, 300 }, + [26] = { 63.4, 37.9, 440, 300 }, + [27] = { 65.2, 37.9, 440, 300 }, + [28] = { 58.5, 37.4, 440, 300 }, + [29] = { 63.3, 37.4, 440, 300 }, + [30] = { 60.1, 37.4, 440, 300 }, + [31] = { 59.9, 37.2, 440, 300 }, + [32] = { 58.9, 37.2, 440, 300 }, + [33] = { 58.4, 37.1, 440, 300 }, + [34] = { 65.2, 37.1, 440, 300 }, + [35] = { 65.6, 37.1, 440, 300 }, + [36] = { 60.1, 37, 440, 300 }, + [37] = { 65.4, 36.9, 440, 300 }, + [38] = { 65.7, 36.7, 440, 300 }, + [39] = { 58.6, 36.7, 440, 300 }, + [40] = { 58.9, 36.4, 440, 300 }, + [41] = { 65.2, 36.4, 440, 300 }, + [42] = { 58.7, 36.4, 440, 300 }, + [43] = { 65.5, 36.4, 440, 300 }, + [44] = { 65.8, 36.1, 440, 300 }, + [45] = { 58.9, 35.8, 440, 300 }, + [46] = { 61.8, 35.5, 440, 300 }, + [47] = { 62.1, 35.1, 440, 300 }, + [48] = { 62.3, 35.1, 440, 300 }, + [49] = { 61.8, 35, 440, 300 }, + [50] = { 61.8, 34.4, 440, 300 }, + [51] = { 60.7, 33.4, 440, 300 }, + [52] = { 60.9, 32.9, 440, 300 }, + [53] = { 60.4, 32.8, 440, 300 }, + [54] = { 60.8, 32.8, 440, 300 }, + [55] = { 60.7, 32.8, 440, 300 }, + [56] = { 60.8, 32.5, 440, 300 }, + [57] = { 60.9, 32.1, 440, 300 }, + }, + ["lvl"] = "44-45", + }, + [5624] = { + ["coords"] = { + [1] = { 7.7, 65.6, 28, 300 }, + [2] = { 8.1, 64.7, 28, 300 }, + [3] = { 8, 64.1, 28, 300 }, + [4] = { 59.4, 69.1, 85, 300 }, + [5] = { 59.9, 68.9, 85, 300 }, + [6] = { 74.3, 71.3, 1497, 300 }, + [7] = { 57.3, 71, 1497, 300 }, + [8] = { 73, 70.1, 1497, 300 }, + [9] = { 77.2, 68.8, 1497, 300 }, + [10] = { 54.5, 68.4, 1497, 300 }, + [11] = { 79.2, 66.5, 1497, 300 }, + [12] = { 80.9, 64.3, 1497, 300 }, + [13] = { 82.3, 61.4, 1497, 300 }, + [14] = { 49.1, 59.9, 1497, 300 }, + [15] = { 83.9, 57.1, 1497, 300 }, + [16] = { 47.9, 56.6, 1497, 300 }, + [17] = { 83.4, 54.7, 1497, 300 }, + [18] = { 67.8, 52.2, 1497, 300 }, + [19] = { 68.6, 51.9, 1497, 300 }, + [20] = { 47.1, 49.9, 1497, 300 }, + [21] = { 65.5, 49.8, 1497, 300 }, + [22] = { 66.4, 49.7, 1497, 300 }, + [23] = { 61, 47.8, 1497, 300 }, + [24] = { 60.7, 46.6, 1497, 300 }, + [25] = { 69.8, 44.8, 1497, 300 }, + [26] = { 62.2, 44.7, 1497, 300 }, + [27] = { 69.8, 43.5, 1497, 300 }, + [28] = { 62.2, 43.4, 1497, 300 }, + [29] = { 71.3, 41.5, 1497, 300 }, + [30] = { 71, 40.4, 1497, 300 }, + [31] = { 47.1, 37.9, 1497, 300 }, + [32] = { 41.5, 33.4, 1497, 300 }, + [33] = { 84, 31.6, 1497, 300 }, + [34] = { 47.9, 31, 1497, 300 }, + [35] = { 46.4, 29.1, 1497, 300 }, + [36] = { 82.6, 27.2, 1497, 300 }, + [37] = { 49.7, 26.9, 1497, 300 }, + [38] = { 47.8, 25.5, 1497, 300 }, + [39] = { 80.9, 24.3, 1497, 300 }, + [40] = { 79.5, 22, 1497, 300 }, + [41] = { 77.5, 19.8, 1497, 300 }, + [42] = { 54.7, 19, 1497, 300 }, + [43] = { 56.8, 17.9, 1497, 300 }, + [44] = { 74.7, 17.1, 1497, 300 }, + [45] = { 68.5, 16.2, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [5625] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [5626] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "1", + }, + [5627] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "1", + }, + [5628] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "22", + ["rnk"] = "1", + }, + [5629] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "15", + }, + [5630] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "21", + }, + [5631] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "20", + }, + [5632] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [5633] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "22", + ["rnk"] = "1", + }, + [5634] = { + ["coords"] = { + [1] = { 26.9, 48.6, 47, 350 }, + }, + ["fac"] = "AH", + ["lvl"] = "44", + }, + [5635] = { + ["coords"] = { + [1] = { 11.8, 46.8, 47, 350 }, + [2] = { 96.8, 6.3, 267, 350 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [5636] = { + ["coords"] = { + [1] = { 9.8, 44.5, 47, 350 }, + [2] = { 94.3, 3.5, 267, 350 }, + }, + ["fac"] = "A", + ["lvl"] = "44", + }, + [5637] = { + ["coords"] = { + [1] = { 69.9, 21.3, 1537, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [5638] = { + ["coords"] = { + [1] = { 66.2, 9.6, 405, 300 }, + [2] = { 40.7, 84.6, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [5639] = { + ["coords"] = { + [1] = { 51.3, 45.9, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [5640] = { + ["coords"] = { + [1] = { 22.6, 52.6, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "38", + }, + [5641] = { + ["coords"] = { + [1] = { 52.6, 54.4, 405, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [5642] = { + ["coords"] = { + [1] = { 66.4, 11.8, 405, 300 }, + [2] = { 40.9, 86.6, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "37", + }, + [5643] = { + ["coords"] = { + [1] = { 53, 29.1, 405, 300 }, + }, + ["lvl"] = "36", + }, + [5644] = { + ["coords"] = { + [1] = { 54.9, 26.1, 405, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [5645] = { + ["coords"] = { + [1] = { 40.1, 30.1, 440, 300 }, + [2] = { 41, 30, 440, 300 }, + [3] = { 40.5, 29.9, 440, 300 }, + [4] = { 40.5, 29.7, 440, 300 }, + [5] = { 40.5, 29.3, 440, 300 }, + [6] = { 41, 29.2, 440, 300 }, + [7] = { 39.7, 29.2, 440, 300 }, + [8] = { 40.4, 28.6, 440, 300 }, + [9] = { 40.4, 28.5, 440, 300 }, + [10] = { 41, 28.5, 440, 300 }, + [11] = { 39.6, 28.5, 440, 300 }, + [12] = { 40.1, 27.8, 440, 300 }, + [13] = { 39.6, 27.7, 440, 300 }, + [14] = { 40.6, 27.7, 440, 300 }, + [15] = { 37.2, 26.3, 440, 300 }, + [16] = { 36.7, 26.3, 440, 300 }, + [17] = { 37.6, 26.2, 440, 300 }, + [18] = { 36.2, 25.8, 440, 300 }, + [19] = { 37.1, 25.8, 440, 300 }, + [20] = { 36.6, 25.6, 440, 300 }, + [21] = { 37.2, 25.5, 440, 300 }, + [22] = { 37.7, 25.5, 440, 300 }, + [23] = { 36.6, 24.8, 440, 300 }, + [24] = { 37.1, 24.8, 440, 300 }, + [25] = { 37.6, 24.7, 440, 300 }, + [26] = { 36.3, 24.6, 440, 300 }, + [27] = { 37.4, 24.4, 440, 300 }, + [28] = { 37.6, 24.3, 440, 300 }, + [29] = { 38.1, 24.1, 440, 300 }, + [30] = { 42.5, 23.5, 440, 300 }, + [31] = { 43, 23.3, 440, 300 }, + [32] = { 42.3, 23.2, 440, 300 }, + [33] = { 42.5, 22.7, 440, 300 }, + [34] = { 43, 22.7, 440, 300 }, + [35] = { 41.5, 22, 440, 300 }, + [36] = { 38.2, 21.9, 440, 300 }, + [37] = { 38.6, 21.9, 440, 300 }, + [38] = { 38.2, 21.3, 440, 300 }, + [39] = { 39.6, 21.2, 440, 300 }, + [40] = { 39.1, 21.2, 440, 300 }, + [41] = { 38.5, 21.2, 440, 300 }, + }, + ["lvl"] = "42-43", + ["rnk"] = "1", + }, + [5646] = { + ["coords"] = { + [1] = { 40.1, 30.1, 440, 300 }, + [2] = { 41, 30, 440, 300 }, + [3] = { 40.5, 29.9, 440, 300 }, + [4] = { 40.5, 29.7, 440, 300 }, + [5] = { 40.5, 29.3, 440, 300 }, + [6] = { 41, 29.2, 440, 300 }, + [7] = { 39.7, 29.2, 440, 300 }, + [8] = { 40.4, 28.6, 440, 300 }, + [9] = { 40.4, 28.5, 440, 300 }, + [10] = { 41, 28.5, 440, 300 }, + [11] = { 39.6, 28.5, 440, 300 }, + [12] = { 40.1, 27.8, 440, 300 }, + [13] = { 39.6, 27.7, 440, 300 }, + [14] = { 40.6, 27.7, 440, 300 }, + [15] = { 37.2, 26.3, 440, 300 }, + [16] = { 36.7, 26.3, 440, 300 }, + [17] = { 37.6, 26.2, 440, 300 }, + [18] = { 36.2, 25.8, 440, 300 }, + [19] = { 37.1, 25.8, 440, 300 }, + [20] = { 36.6, 25.6, 440, 300 }, + [21] = { 37.2, 25.5, 440, 300 }, + [22] = { 37.7, 25.5, 440, 300 }, + [23] = { 36.6, 24.8, 440, 300 }, + [24] = { 37.1, 24.8, 440, 300 }, + [25] = { 37.6, 24.7, 440, 300 }, + [26] = { 36.3, 24.6, 440, 300 }, + [27] = { 37.4, 24.4, 440, 300 }, + [28] = { 37.6, 24.3, 440, 300 }, + [29] = { 38.1, 24.1, 440, 300 }, + [30] = { 42.5, 23.5, 440, 300 }, + [31] = { 43, 23.3, 440, 300 }, + [32] = { 42.3, 23.2, 440, 300 }, + [33] = { 42.5, 22.7, 440, 300 }, + [34] = { 43, 22.7, 440, 300 }, + [35] = { 41.5, 22, 440, 300 }, + [36] = { 38.2, 21.9, 440, 300 }, + [37] = { 38.6, 21.9, 440, 300 }, + [38] = { 38.2, 21.3, 440, 300 }, + [39] = { 39.6, 21.2, 440, 300 }, + [40] = { 39.1, 21.2, 440, 300 }, + [41] = { 38.5, 21.2, 440, 300 }, + }, + ["lvl"] = "42-44", + ["rnk"] = "1", + }, + [5647] = { + ["coords"] = { + [1] = { 40.1, 30.1, 440, 300 }, + [2] = { 41, 30, 440, 300 }, + [3] = { 40.5, 29.9, 440, 300 }, + [4] = { 40.5, 29.7, 440, 300 }, + [5] = { 40.5, 29.3, 440, 300 }, + [6] = { 41, 29.2, 440, 300 }, + [7] = { 39.7, 29.2, 440, 300 }, + [8] = { 40.4, 28.6, 440, 300 }, + [9] = { 40.4, 28.5, 440, 300 }, + [10] = { 41, 28.5, 440, 300 }, + [11] = { 39.6, 28.5, 440, 300 }, + [12] = { 40.1, 27.8, 440, 300 }, + [13] = { 39.6, 27.7, 440, 300 }, + [14] = { 40.6, 27.7, 440, 300 }, + [15] = { 37.2, 26.3, 440, 300 }, + [16] = { 36.7, 26.3, 440, 300 }, + [17] = { 37.6, 26.2, 440, 300 }, + [18] = { 36.2, 25.8, 440, 300 }, + [19] = { 37.1, 25.8, 440, 300 }, + [20] = { 36.6, 25.6, 440, 300 }, + [21] = { 37.2, 25.5, 440, 300 }, + [22] = { 37.7, 25.5, 440, 300 }, + [23] = { 36.6, 24.8, 440, 300 }, + [24] = { 37.1, 24.8, 440, 300 }, + [25] = { 37.6, 24.7, 440, 300 }, + [26] = { 36.3, 24.6, 440, 300 }, + [27] = { 37.4, 24.4, 440, 300 }, + [28] = { 37.6, 24.3, 440, 300 }, + [29] = { 38.1, 24.1, 440, 300 }, + [30] = { 42.5, 23.5, 440, 300 }, + [31] = { 43, 23.3, 440, 300 }, + [32] = { 42.3, 23.2, 440, 300 }, + [33] = { 42.5, 22.7, 440, 300 }, + [34] = { 43, 22.7, 440, 300 }, + [35] = { 41.5, 22, 440, 300 }, + [36] = { 38.2, 21.9, 440, 300 }, + [37] = { 38.6, 21.9, 440, 300 }, + [38] = { 38.2, 21.3, 440, 300 }, + [39] = { 39.6, 21.2, 440, 300 }, + [40] = { 39.1, 21.2, 440, 300 }, + [41] = { 38.5, 21.2, 440, 300 }, + }, + ["lvl"] = "43-44", + ["rnk"] = "1", + }, + [5648] = { + ["coords"] = {}, + ["lvl"] = "43-44", + ["rnk"] = "1", + }, + [5649] = { + ["coords"] = {}, + ["lvl"] = "44-45", + ["rnk"] = "1", + }, + [5650] = { + ["coords"] = {}, + ["lvl"] = "44-45", + ["rnk"] = "1", + }, + [5651] = { + ["coords"] = { + [1] = { 62.3, 48.6, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "15", + }, + [5652] = { + ["coords"] = { + [1] = { 47, 30.1, 1497, 300 }, + [2] = { 46.8, 28.8, 1497, 300 }, + [3] = { 46.6, 27.5, 1497, 300 }, + }, + ["lvl"] = "25", + }, + [5653] = { + ["coords"] = { + [1] = { 51.6, 22.8, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [5654] = { + ["coords"] = { + [1] = { 51.9, 22.5, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [5655] = { + ["coords"] = { + [1] = { 51.5, 23.8, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [5656] = { + ["coords"] = { + [1] = { 51.2, 23.6, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [5657] = { + ["coords"] = { + [1] = { 52.4, 21.9, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [5658] = { + ["coords"] = { + [1] = { 52.6, 22.5, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [5659] = { + ["coords"] = { + [1] = { 51.9, 23.8, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [5660] = { + ["coords"] = { + [1] = { 52.4, 23.1, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [5661] = { + ["coords"] = { + [1] = { 50.9, 21.7, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [5662] = { + ["coords"] = { + [1] = { 47.5, 30.1, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [5663] = { + ["coords"] = { + [1] = { 47.1, 30.1, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [5664] = { + ["coords"] = { + [1] = { 47, 28.8, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [5665] = { + ["coords"] = { + [1] = { 46.8, 27.5, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [5666] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "53", + }, + [5667] = { + ["coords"] = { + [1] = { 31, 66.4, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "10", + }, + [5668] = { + ["coords"] = { + [1] = { 55.5, 43.6, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [5669] = { + ["coords"] = { + [1] = { 60.8, 25.1, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [5670] = { + ["coords"] = { + [1] = { 55.5, 44, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [5671] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "20", + }, + [5672] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "35", + }, + [5674] = { + ["coords"] = { + [1] = { 61.9, 24.7, 1497, 180 }, + }, + ["lvl"] = "25", + }, + [5675] = { + ["coords"] = { + [1] = { 85.1, 26, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [5676] = { + ["coords"] = { + [1] = { 25.1, 77.4, 1519, 0 }, + [2] = { 86.6, 27.1, 1497, 0 }, + [3] = { 49.3, 50, 1637, 0 }, + }, + ["lvl"] = "10", + }, + [5677] = { + ["coords"] = { + [1] = { 25.1, 77.4, 1519, 0 }, + [2] = { 86.7, 27.1, 1497, 0 }, + [3] = { 49.4, 50, 1637, 0 }, + }, + ["fac"] = "AH", + ["lvl"] = "20", + }, + [5678] = { + ["coords"] = {}, + ["lvl"] = "5", + }, + [5679] = { + ["coords"] = { + [1] = { 51.1, 21.3, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [5680] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [5681] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "7", + }, + [5682] = { + ["coords"] = { + [1] = { 47.6, 85.6, 130, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [5683] = { + ["coords"] = { + [1] = { 49.9, 12.6, 11, 300 }, + [2] = { 44.1, 98.4, 45, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "22", + }, + [5685] = { + ["coords"] = {}, + ["lvl"] = "10", + }, + [5686] = { + ["coords"] = {}, + ["lvl"] = "8", + }, + [5687] = { + ["coords"] = {}, + ["lvl"] = "20", + }, + [5688] = { + ["coords"] = { + [1] = { 61.7, 52, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [5689] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [5690] = { + ["coords"] = { + [1] = { 67.2, 51, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "16", + }, + [5691] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "20", + }, + [5692] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "20", + }, + [5693] = { + ["coords"] = { + [1] = { 65.8, 68.2, 85, 300 }, + [2] = { 84.8, 14.8, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "15", + }, + [5694] = { + ["coords"] = { + [1] = { 37.5, 81.7, 1519, 500 }, + }, + ["fac"] = "A", + ["lvl"] = "62", + }, + [5695] = { + ["coords"] = { + [1] = { 61.8, 51.6, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "31", + }, + [5696] = { + ["coords"] = { + [1] = { 52.8, 35, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [5697] = { + ["coords"] = { + [1] = { 52.7, 34.7, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "5", + }, + [5698] = { + ["coords"] = { + [1] = { 52.9, 35.1, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [5699] = { + ["coords"] = { + [1] = { 52.9, 34.7, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [5700] = { + ["coords"] = { + [1] = { 73, 33.8, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [5701] = { + ["coords"] = { + [1] = { 77.5, 44.3, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [5702] = { + ["coords"] = { + [1] = { 64.1, 67.7, 85, 300 }, + [2] = { 77, 12.7, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [5703] = { + ["coords"] = { + [1] = { 64.4, 68, 85, 300 }, + [2] = { 78.3, 13.8, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [5704] = { + ["coords"] = { + [1] = { 64.4, 67.6, 85, 300 }, + [2] = { 78, 12.2, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [5705] = { + ["coords"] = { + [1] = { 64.2, 68.1, 85, 300 }, + [2] = { 77.2, 14.2, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [5706] = { + ["coords"] = { + [1] = { 77.4, 44.1, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [5707] = { + ["coords"] = { + [1] = { 77.6, 43.8, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [5708] = { + ["coords"] = {}, + ["lvl"] = "51", + ["rnk"] = "1", + }, + [5709] = { + ["coords"] = {}, + ["lvl"] = "55", + ["rnk"] = "1", + }, + [5710] = { + ["coords"] = {}, + ["lvl"] = "54", + ["rnk"] = "1", + }, + [5711] = { + ["coords"] = {}, + ["lvl"] = "53", + ["rnk"] = "1", + }, + [5712] = { + ["coords"] = {}, + ["lvl"] = "51", + ["rnk"] = "1", + }, + [5713] = { + ["coords"] = {}, + ["lvl"] = "51", + ["rnk"] = "1", + }, + [5714] = { + ["coords"] = {}, + ["lvl"] = "51", + ["rnk"] = "1", + }, + [5715] = { + ["coords"] = {}, + ["lvl"] = "52", + ["rnk"] = "1", + }, + [5716] = { + ["coords"] = {}, + ["lvl"] = "52", + ["rnk"] = "1", + }, + [5717] = { + ["coords"] = {}, + ["lvl"] = "52", + ["rnk"] = "1", + }, + [5718] = { + ["coords"] = { + [1] = { 66.2, 20.2, 47, 600 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [5719] = { + ["coords"] = {}, + ["lvl"] = "52", + ["rnk"] = "1", + }, + [5720] = { + ["coords"] = {}, + ["lvl"] = "51", + ["rnk"] = "1", + }, + [5721] = { + ["coords"] = {}, + ["lvl"] = "53", + ["rnk"] = "1", + }, + [5722] = { + ["coords"] = {}, + ["lvl"] = "53", + ["rnk"] = "1", + }, + [5723] = { + ["coords"] = {}, + ["lvl"] = "26", + }, + [5724] = { + ["coords"] = { + [1] = { 61.6, 52.7, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "15", + }, + [5725] = { + ["coords"] = { + [1] = { 58.3, 50.7, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "15", + }, + [5726] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "30", + }, + [5727] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "40", + }, + [5728] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "40", + }, + [5729] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "40", + }, + [5730] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "40", + }, + [5731] = { + ["coords"] = { + [1] = { 69.1, 54.4, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [5732] = { + ["coords"] = { + [1] = { 65.7, 58.2, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [5733] = { + ["coords"] = { + [1] = { 53.3, 52.3, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [5734] = { + ["coords"] = { + [1] = { 53, 74.3, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [5735] = { + ["coords"] = { + [1] = { 53.3, 74.4, 1497, 300 }, + [2] = { 51.9, 73.8, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "5", + }, + [5736] = { + ["coords"] = { + [1] = { 51.6, 73.9, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "5", + }, + [5737] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "5", + }, + [5738] = { + ["coords"] = { + [1] = { 51.8, 74.1, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "5", + }, + [5739] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "5", + }, + [5740] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "5", + }, + [5741] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "5", + }, + [5742] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "5", + }, + [5743] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "5", + }, + [5744] = { + ["coords"] = { + [1] = { 74.3, 61.3, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [5745] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "20", + }, + [5746] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "20", + }, + [5747] = { + ["coords"] = { + [1] = { 66.7, 55, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [5748] = { + ["coords"] = { + [1] = { 33, 17.8, 130, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "18-20", + }, + [5749] = { + ["coords"] = { + [1] = { 30.8, 66.4, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "10", + }, + [5750] = { + ["coords"] = { + [1] = { 61.6, 52.6, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "10", + }, + [5752] = { + ["coords"] = { + [1] = { 66.7, 10.9, 405, 300 }, + [2] = { 41.2, 85.7, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "39", + }, + [5753] = { + ["coords"] = { + [1] = { 66, 68.5, 85, 300 }, + [2] = { 85.7, 16.1, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [5754] = { + ["coords"] = { + [1] = { 69.6, 26.9, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "10", + }, + [5755] = { + ["coords"] = {}, + ["lvl"] = "19-20", + ["rnk"] = "1", + }, + [5756] = { + ["coords"] = {}, + ["lvl"] = "20-21", + ["rnk"] = "1", + }, + [5757] = { + ["coords"] = { + [1] = { 43, 50.8, 130, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "19", + }, + [5758] = { + ["coords"] = { + [1] = { 53.9, 82.2, 130, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "18", + }, + [5759] = { + ["coords"] = { + [1] = { 61.8, 52.8, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "10", + }, + [5760] = { + ["coords"] = { + [1] = { 56.9, 75.7, 405, 550 }, + }, + ["lvl"] = "40", + ["rnk"] = "1", + }, + [5761] = { + ["coords"] = {}, + ["lvl"] = "19-20", + ["rnk"] = "1", + }, + [5762] = { + ["coords"] = {}, + ["lvl"] = "20-21", + ["rnk"] = "1", + }, + [5763] = { + ["coords"] = {}, + ["lvl"] = "20-21", + }, + [5764] = { + ["coords"] = {}, + ["lvl"] = "63", + }, + [5765] = { + ["coords"] = { + [1] = { 42.6, 69, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "10", + }, + [5766] = { + ["coords"] = { + [1] = { 58.9, 35.7, 17, 413 }, + [2] = { 59, 35.4, 17, 413 }, + [3] = { 62.3, 33.4, 17, 413 }, + [4] = { 61.9, 33.4, 17, 413 }, + [5] = { 61.7, 33.1, 17, 413 }, + [6] = { 62.1, 33, 17, 413 }, + [7] = { 61.7, 32.5, 17, 413 }, + [8] = { 62, 32.4, 17, 413 }, + [9] = { 61.9, 32.3, 17, 413 }, + }, + ["lvl"] = "4-5", + }, + [5767] = { + ["coords"] = { + [1] = { 46, 35.7, 17, 413 }, + }, + ["fac"] = "AH", + ["lvl"] = "14", + }, + [5768] = { + ["coords"] = { + [1] = { 46, 35.7, 17, 413 }, + }, + ["fac"] = "AH", + ["lvl"] = "14", + }, + [5769] = { + ["coords"] = { + [1] = { 45.8, 22.7, 215, 250 }, + [2] = { 78.6, 28.6, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "62", + }, + [5770] = { + ["coords"] = { + [1] = { 45.2, 23.3, 215, 250 }, + [2] = { 75.6, 31.6, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [5771] = { + ["coords"] = { + [1] = { 55.9, 77.8, 405, 300 }, + }, + ["lvl"] = "40", + }, + [5772] = { + ["coords"] = {}, + ["lvl"] = "40", + }, + [5773] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "40", + }, + [5774] = { + ["coords"] = { + [1] = { 51.8, 29.6, 17, 300 }, + [2] = { 51.8, 29.5, 17, 300 }, + [3] = { 50.4, 26.6, 440, 300 }, + [4] = { 50.6, 26.5, 440, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [5775] = { + ["coords"] = {}, + ["lvl"] = "21", + ["rnk"] = "1", + }, + [5776] = { + ["coords"] = {}, + ["lvl"] = "17-18", + ["rnk"] = "1", + }, + [5777] = { + ["coords"] = {}, + ["lvl"] = "17-18", + ["rnk"] = "1", + }, + [5778] = { + ["coords"] = {}, + ["lvl"] = "17-18", + ["rnk"] = "1", + }, + [5779] = { + ["coords"] = {}, + ["lvl"] = "20", + ["rnk"] = "1", + }, + [5780] = { + ["coords"] = {}, + ["lvl"] = "16-17", + ["rnk"] = "1", + }, + [5781] = { + ["coords"] = {}, + ["lvl"] = "21", + }, + [5782] = { + ["coords"] = { + [1] = { 24, 56, 141, 600 }, + [2] = { 32.6, 43.4, 1657, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [5783] = { + ["coords"] = { + [1] = { 45.9, 35.7, 17, 413 }, + }, + ["fac"] = "AH", + ["lvl"] = "27", + }, + [5784] = { + ["coords"] = { + [1] = { 46, 35.8, 17, 413 }, + }, + ["fac"] = "AH", + ["lvl"] = "28", + }, + [5785] = { + ["coords"] = { + [1] = { 36.2, 11.3, 215, 5400 }, + }, + ["lvl"] = "11", + ["rnk"] = "2", + }, + [5786] = { + ["coords"] = { + [1] = { 48.4, 72, 215, 3600 }, + }, + ["lvl"] = "9", + ["rnk"] = "4", + }, + [5787] = { + ["coords"] = { + [1] = { 40.4, 15.7, 215, 5400 }, + }, + ["lvl"] = "11", + ["rnk"] = "4", + }, + [5788] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "10", + ["rnk"] = "1", + }, + [5789] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "10", + ["rnk"] = "2", + }, + [5790] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "9", + ["rnk"] = "2", + }, + [5791] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + ["rnk"] = "1", + }, + [5792] = { + ["coords"] = { + [1] = { 81.7, 76.3, 400, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [5793] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "10", + ["rnk"] = "2", + }, + [5794] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "10", + ["rnk"] = "2", + }, + [5795] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "9", + ["rnk"] = "2", + }, + [5796] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "8", + ["rnk"] = "2", + }, + [5797] = { + ["coords"] = { + [1] = { 48.5, 79.7, 17, 5141 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + ["rnk"] = "2", + }, + [5798] = { + ["coords"] = { + [1] = { 48.5, 79.7, 17, 5706 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + ["rnk"] = "2", + }, + [5799] = { + ["coords"] = { + [1] = { 48.5, 79.7, 17, 5686 }, + }, + ["fac"] = "A", + ["lvl"] = "24", + ["rnk"] = "2", + }, + [5800] = { + ["coords"] = { + [1] = { 48.5, 79.7, 17, 5311 }, + }, + ["fac"] = "A", + ["lvl"] = "24", + ["rnk"] = "2", + }, + [5801] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "15", + }, + [5806] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "22-23", + }, + [5807] = { + ["coords"] = { + [1] = { 53.4, 17, 215, 9000 }, + }, + ["lvl"] = "10", + ["rnk"] = "4", + }, + [5808] = { + ["coords"] = { + [1] = { 47.9, 77.4, 14, 3600 }, + }, + ["lvl"] = "9", + ["rnk"] = "4", + }, + [5809] = { + ["coords"] = { + [1] = { 59.9, 59, 14, 3600 }, + [2] = { 59.2, 58.5, 14, 3600 }, + }, + ["fac"] = "A", + ["lvl"] = "9", + ["rnk"] = "4", + }, + [5810] = { + ["coords"] = { + [1] = { 61.4, 21.1, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [5811] = { + ["coords"] = { + [1] = { 63.3, 44.7, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "26", + }, + [5812] = { + ["coords"] = { + [1] = { 82.6, 23.6, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [5813] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "30", + }, + [5814] = { + ["coords"] = { + [1] = { 31.5, 29.8, 33, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [5815] = { + ["coords"] = { + [1] = { 47.5, 46.7, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [5816] = { + ["coords"] = { + [1] = { 44.2, 48.4, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [5817] = { + ["coords"] = { + [1] = { 45.2, 8.1, 14, 300 }, + [2] = { 47.9, 80.3, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [5818] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [5819] = { + ["coords"] = { + [1] = { 61.6, 28.9, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [5820] = { + ["coords"] = { + [1] = { 70.3, 58.2, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [5821] = { + ["coords"] = { + [1] = { 70.4, 28.9, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [5822] = { + ["coords"] = { + [1] = { 51.7, 9.6, 14, 19800 }, + [2] = { 52.8, 9, 14, 19800 }, + [3] = { 53, 7.3, 14, 19800 }, + }, + ["lvl"] = "11", + ["rnk"] = "2", + }, + [5823] = { + ["coords"] = { + [1] = { 36.5, 49.7, 14, 5400 }, + [2] = { 64.3, 23, 17, 5400 }, + }, + ["lvl"] = "11", + ["rnk"] = "4", + }, + [5824] = { + ["coords"] = { + [1] = { 38.7, 54, 14, 5400 }, + [2] = { 42.6, 39, 14, 5400 }, + }, + ["lvl"] = "11", + ["rnk"] = "2", + }, + [5825] = { + ["coords"] = {}, + ["lvl"] = "35", + }, + [5826] = { + ["coords"] = { + [1] = { 43.8, 50.5, 14, 3600 }, + [2] = { 47.2, 49.9, 14, 3600 }, + [3] = { 43.2, 39.3, 14, 3600 }, + }, + ["lvl"] = "9", + ["rnk"] = "4", + }, + [5827] = { + ["coords"] = { + [1] = { 47.3, 73.2, 17, 75600 }, + }, + ["lvl"] = "27", + ["rnk"] = "2", + }, + [5828] = { + ["coords"] = { + [1] = { 62.1, 33.3, 17, 54000 }, + }, + ["lvl"] = "23", + ["rnk"] = "2", + }, + [5829] = { + ["coords"] = { + [1] = { 41.2, 22.2, 17, 7200 }, + }, + ["lvl"] = "17", + ["rnk"] = "4", + }, + [5830] = { + ["coords"] = { + [1] = { 40.1, 17, 17, 19800 }, + }, + ["lvl"] = "19", + ["rnk"] = "2", + }, + [5831] = { + ["coords"] = { + [1] = { 61.1, 33.3, 17, 54000 }, + }, + ["lvl"] = "21", + ["rnk"] = "2", + }, + [5832] = { + ["coords"] = { + [1] = { 48.1, 79.8, 17, 14400 }, + }, + ["lvl"] = "24", + ["rnk"] = "4", + }, + [5833] = { + ["coords"] = { + [1] = { 72.9, 77.7, 51, 500 }, + }, + ["lvl"] = "48", + ["rnk"] = "1", + }, + [5834] = { + ["coords"] = { + [1] = { 44.8, 64.1, 17, 14400 }, + }, + ["lvl"] = "25", + ["rnk"] = "4", + }, + [5835] = { + ["coords"] = { + [1] = { 56.3, 8.2, 17, 14400 }, + }, + ["lvl"] = "19", + ["rnk"] = "4", + }, + [5836] = { + ["coords"] = { + [1] = { 56.2, 8.8, 17, 7200 }, + }, + ["lvl"] = "19", + ["rnk"] = "4", + }, + [5837] = { + ["coords"] = { + [1] = { 42, 24.7, 17, 5400 }, + }, + ["lvl"] = "15", + ["rnk"] = "4", + }, + [5838] = { + ["coords"] = { + [1] = { 57.1, 41.2, 17, 7200 }, + }, + ["lvl"] = "17", + ["rnk"] = "4", + }, + [5839] = { + ["coords"] = { + [1] = { 62.3, 62.4, 51, 500 }, + [2] = { 62.7, 62.2, 51, 500 }, + [3] = { 62.5, 61.6, 51, 500 }, + [4] = { 63.6, 61.4, 51, 500 }, + [5] = { 63.9, 60.4, 51, 500 }, + [6] = { 63.1, 59.6, 51, 500 }, + [7] = { 63.6, 59.3, 51, 500 }, + [8] = { 63.1, 58.7, 51, 500 }, + [9] = { 62.9, 58.5, 51, 500 }, + [10] = { 62.7, 58.1, 51, 500 }, + [11] = { 69.2, 34.2, 51, 500 }, + [12] = { 68.9, 33.2, 51, 500 }, + [13] = { 69.3, 32.7, 51, 500 }, + }, + ["lvl"] = "43-44", + }, + [5840] = { + ["coords"] = { + [1] = { 43, 51.7, 51, 500 }, + [2] = { 38.1, 51.3, 51, 500 }, + [3] = { 37.7, 49.6, 51, 500 }, + [4] = { 40.6, 49.4, 51, 500 }, + [5] = { 40.1, 48.4, 51, 500 }, + }, + ["lvl"] = "46-47", + }, + [5841] = { + ["coords"] = { + [1] = { 53.6, 45.5, 17, 19800 }, + }, + ["lvl"] = "17", + ["rnk"] = "2", + }, + [5842] = { + ["coords"] = { + [1] = { 59.6, 8.3, 17, 14400 }, + }, + ["lvl"] = "19", + ["rnk"] = "2", + }, + [5843] = { + ["coords"] = { + [1] = { 43, 55, 51, 500 }, + [2] = { 43, 54.7, 51, 500 }, + [3] = { 44.8, 54.5, 51, 500 }, + [4] = { 44.2, 54.2, 51, 500 }, + [5] = { 40.2, 53.9, 51, 500 }, + [6] = { 43.1, 53.8, 51, 500 }, + [7] = { 45.7, 53.6, 51, 500 }, + [8] = { 38.3, 53.2, 51, 500 }, + [9] = { 41.9, 52.9, 51, 500 }, + [10] = { 37.1, 52.8, 51, 500 }, + [11] = { 41.5, 52.6, 51, 500 }, + [12] = { 41.1, 52.5, 51, 500 }, + [13] = { 40.7, 52.3, 51, 500 }, + [14] = { 39.3, 51.5, 51, 500 }, + [15] = { 36.6, 44.8, 51, 500 }, + [16] = { 35.5, 44.6, 51, 500 }, + [17] = { 46.7, 44, 51, 500 }, + [18] = { 39.2, 44, 51, 500 }, + [19] = { 42.2, 43.7, 51, 500 }, + [20] = { 34.4, 43.7, 51, 500 }, + [21] = { 47.6, 43.4, 51, 500 }, + [22] = { 34.3, 42.3, 51, 500 }, + [23] = { 41.6, 41.6, 51, 500 }, + [24] = { 40.1, 41.4, 51, 500 }, + [25] = { 38.3, 41, 51, 500 }, + [26] = { 35, 40.7, 51, 500 }, + [27] = { 35.7, 40.6, 51, 500 }, + [28] = { 36.4, 40.4, 51, 500 }, + [29] = { 38.9, 39.6, 51, 500 }, + [30] = { 40.1, 39.3, 51, 500 }, + [31] = { 40.6, 39.2, 51, 500 }, + [32] = { 36.7, 39.1, 51, 500 }, + [33] = { 41, 37.9, 51, 500 }, + [34] = { 37.2, 37.5, 51, 500 }, + [35] = { 38, 37.2, 51, 500 }, + [36] = { 40.8, 36.8, 51, 500 }, + [37] = { 40.3, 36.3, 51, 500 }, + [38] = { 38, 36, 51, 500 }, + [39] = { 40.2, 35.5, 51, 500 }, + [40] = { 41.6, 33.7, 51, 500 }, + [41] = { 36.9, 33, 51, 500 }, + [42] = { 41.5, 32, 51, 500 }, + [43] = { 36.7, 31.6, 51, 500 }, + [44] = { 41.6, 30.6, 51, 500 }, + [45] = { 37.4, 30.1, 51, 500 }, + [46] = { 43.7, 29, 51, 500 }, + [47] = { 42.9, 28.3, 51, 500 }, + [48] = { 39.9, 27.8, 51, 500 }, + [49] = { 43.8, 26.7, 51, 500 }, + [50] = { 39.7, 26, 51, 500 }, + [51] = { 39.1, 25.1, 51, 500 }, + [52] = { 39, 23.6, 51, 500 }, + [53] = { 44.7, 23.3, 51, 500 }, + [54] = { 39.8, 21.8, 51, 500 }, + [55] = { 43.8, 21.8, 51, 500 }, + [56] = { 40.9, 20.8, 51, 500 }, + [57] = { 41.9, 20.6, 51, 500 }, + }, + ["lvl"] = "45-47", + }, + [5844] = { + ["coords"] = { + [1] = { 35.4, 58.6, 51, 500 }, + [2] = { 35.3, 58.5, 51, 500 }, + [3] = { 42, 56.1, 51, 300 }, + [4] = { 43.1, 54.9, 51, 500 }, + [5] = { 45.2, 54, 51, 500 }, + [6] = { 43.2, 51.9, 51, 500 }, + [7] = { 44.9, 51.9, 51, 500 }, + [8] = { 40.6, 51.2, 51, 500 }, + [9] = { 40.5, 51.1, 51, 500 }, + [10] = { 38.8, 50.5, 51, 500 }, + [11] = { 47.3, 50.2, 51, 500 }, + [12] = { 47.4, 50, 51, 500 }, + [13] = { 34.5, 47, 51, 500 }, + [14] = { 34.3, 46.2, 51, 500 }, + [15] = { 38.6, 45.1, 51, 500 }, + [16] = { 49.1, 44.6, 51, 500 }, + [17] = { 41, 43.8, 51, 500 }, + [18] = { 35.7, 42.8, 51, 500 }, + [19] = { 57.7, 42, 51, 500 }, + [20] = { 57.8, 42, 51, 500 }, + [21] = { 36.2, 42, 51, 500 }, + [22] = { 58, 42, 51, 500 }, + [23] = { 42.9, 40.6, 51, 500 }, + [24] = { 43.1, 40.4, 51, 500 }, + [25] = { 49.1, 40, 51, 500 }, + [26] = { 37.6, 39.8, 51, 500 }, + [27] = { 45.7, 39.6, 51, 500 }, + [28] = { 49.3, 39.3, 51, 500 }, + [29] = { 45.8, 39.2, 51, 500 }, + [30] = { 38.5, 37.9, 51, 500 }, + [31] = { 39.1, 37.9, 51, 500 }, + [32] = { 42.9, 36.4, 51, 500 }, + [33] = { 42.8, 36.4, 51, 500 }, + [34] = { 44.6, 35.5, 51, 500 }, + [35] = { 42.6, 33.8, 51, 500 }, + [36] = { 43.9, 33.7, 51, 500 }, + [37] = { 42.6, 33.6, 51, 500 }, + [38] = { 43.9, 33.6, 51, 500 }, + [39] = { 40.1, 32.1, 51, 500 }, + [40] = { 38.2, 32.1, 51, 500 }, + [41] = { 44.1, 31.6, 51, 500 }, + [42] = { 42.6, 31.6, 51, 500 }, + [43] = { 43.1, 31.2, 51, 500 }, + [44] = { 43.2, 31.1, 51, 500 }, + [45] = { 44.4, 31, 51, 500 }, + [46] = { 44.5, 31, 51, 500 }, + [47] = { 41.4, 28.9, 51, 500 }, + [48] = { 45.9, 28.7, 51, 500 }, + [49] = { 43.5, 28.1, 51, 500 }, + [50] = { 46.6, 25.4, 51, 500 }, + [51] = { 46.5, 25.3, 51, 500 }, + [52] = { 43.2, 24, 51, 500 }, + [53] = { 41.2, 23.3, 51, 500 }, + }, + ["lvl"] = "45-46", + }, + [5846] = { + ["coords"] = { + [1] = { 35.4, 58.6, 51, 500 }, + [2] = { 35.3, 58.5, 51, 500 }, + [3] = { 42, 56.1, 51, 300 }, + [4] = { 43.1, 54.9, 51, 500 }, + [5] = { 45.2, 54, 51, 500 }, + [6] = { 43.2, 51.9, 51, 500 }, + [7] = { 44.9, 51.9, 51, 500 }, + [8] = { 40.6, 51.2, 51, 500 }, + [9] = { 40.5, 51.1, 51, 500 }, + [10] = { 38.8, 50.5, 51, 500 }, + [11] = { 47.3, 50.2, 51, 500 }, + [12] = { 47.4, 50, 51, 500 }, + [13] = { 34.5, 47, 51, 500 }, + [14] = { 34.3, 46.2, 51, 500 }, + [15] = { 38.6, 45.1, 51, 500 }, + [16] = { 49.1, 44.6, 51, 500 }, + [17] = { 41, 43.8, 51, 500 }, + [18] = { 35.7, 42.8, 51, 500 }, + [19] = { 57.7, 42, 51, 500 }, + [20] = { 57.8, 42, 51, 500 }, + [21] = { 36.2, 42, 51, 500 }, + [22] = { 58, 42, 51, 500 }, + [23] = { 42.9, 40.6, 51, 500 }, + [24] = { 43.1, 40.4, 51, 500 }, + [25] = { 49.1, 40, 51, 500 }, + [26] = { 37.6, 39.8, 51, 500 }, + [27] = { 45.7, 39.6, 51, 500 }, + [28] = { 49.3, 39.3, 51, 500 }, + [29] = { 45.8, 39.2, 51, 500 }, + [30] = { 38.5, 37.9, 51, 500 }, + [31] = { 39.1, 37.9, 51, 500 }, + [32] = { 42.9, 36.4, 51, 500 }, + [33] = { 42.8, 36.4, 51, 500 }, + [34] = { 44.6, 35.5, 51, 500 }, + [35] = { 42.6, 33.8, 51, 500 }, + [36] = { 43.9, 33.7, 51, 500 }, + [37] = { 42.6, 33.6, 51, 500 }, + [38] = { 43.9, 33.6, 51, 500 }, + [39] = { 40.1, 32.1, 51, 500 }, + [40] = { 38.2, 32.1, 51, 500 }, + [41] = { 44.1, 31.6, 51, 500 }, + [42] = { 42.6, 31.6, 51, 500 }, + [43] = { 43.1, 31.2, 51, 500 }, + [44] = { 43.2, 31.1, 51, 500 }, + [45] = { 44.4, 31, 51, 500 }, + [46] = { 44.5, 31, 51, 500 }, + [47] = { 41.4, 28.9, 51, 500 }, + [48] = { 45.9, 28.7, 51, 500 }, + [49] = { 43.5, 28.1, 51, 500 }, + [50] = { 46.6, 25.4, 51, 500 }, + [51] = { 46.5, 25.3, 51, 500 }, + [52] = { 43.2, 24, 51, 500 }, + [53] = { 41.2, 23.3, 51, 500 }, + }, + ["lvl"] = "47-48", + }, + [5847] = { + ["coords"] = { + [1] = { 47.2, 84.1, 17, 14400 }, + [2] = { 47, 83.7, 17, 14400 }, + }, + ["fac"] = "A", + ["lvl"] = "24", + ["rnk"] = "4", + }, + [5848] = { + ["coords"] = { + [1] = { 27.2, 58.6, 15, 19800 }, + [2] = { 49.6, 84.3, 17, 19800 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + ["rnk"] = "4", + }, + [5849] = { + ["coords"] = { + [1] = { 47.5, 85.5, 17, 14400 }, + }, + ["fac"] = "A", + ["lvl"] = "24", + ["rnk"] = "4", + }, + [5850] = { + ["coords"] = { + [1] = { 58.3, 77, 51, 500 }, + [2] = { 48, 49.4, 51, 500 }, + [3] = { 45.5, 47.8, 51, 500 }, + [4] = { 57.6, 46.7, 51, 500 }, + [5] = { 57.6, 45, 51, 500 }, + [6] = { 59.5, 43.6, 51, 500 }, + [7] = { 42.5, 38.6, 51, 500 }, + [8] = { 40.7, 36.7, 51, 500 }, + }, + ["lvl"] = "45-47", + }, + [5851] = { + ["coords"] = { + [1] = { 27.1, 57.7, 15, 75600 }, + [2] = { 49.5, 83.9, 17, 75600 }, + }, + ["fac"] = "A", + ["lvl"] = "27", + ["rnk"] = "2", + }, + [5852] = { + ["coords"] = { + [1] = { 29.9, 76.9, 51, 500 }, + [2] = { 27.9, 64.2, 51, 500 }, + [3] = { 52.4, 62.1, 51, 500 }, + [4] = { 39.8, 58.3, 51, 500 }, + [5] = { 39.2, 55.9, 51, 500 }, + [6] = { 31.1, 43.7, 51, 500 }, + [7] = { 38.8, 41.5, 51, 500 }, + }, + ["lvl"] = "47-49", + }, + [5853] = { + ["coords"] = { + [1] = { 65.3, 63.8, 51, 500 }, + [2] = { 62.7, 63.5, 51, 500 }, + [3] = { 61.3, 61.5, 51, 500 }, + [4] = { 62.2, 59.6, 51, 500 }, + [5] = { 64.1, 58.4, 51, 500 }, + [6] = { 68, 33.8, 51, 500 }, + [7] = { 69.8, 32.2, 51, 500 }, + }, + ["lvl"] = "45-47", + }, + [5854] = { + ["coords"] = { + [1] = { 44.6, 63.9, 51, 500 }, + [2] = { 41.6, 63.4, 51, 500 }, + [3] = { 36.9, 61.7, 51, 500 }, + [4] = { 36.5, 61.5, 51, 500 }, + [5] = { 35.5, 59.6, 51, 500 }, + [6] = { 52, 59.6, 51, 500 }, + [7] = { 45.9, 55.1, 51, 500 }, + [8] = { 40.6, 54.7, 51, 500 }, + [9] = { 32.6, 52.6, 51, 500 }, + [10] = { 38.4, 48, 51, 500 }, + [11] = { 33.9, 47.9, 51, 500 }, + [12] = { 32.7, 46.1, 51, 500 }, + [13] = { 35.1, 45.2, 51, 500 }, + [14] = { 37.2, 45.2, 51, 500 }, + [15] = { 40.1, 44.5, 51, 500 }, + [16] = { 43.1, 43.9, 51, 500 }, + [17] = { 45.9, 41.6, 51, 500 }, + [18] = { 41.6, 41.5, 51, 500 }, + [19] = { 35.5, 40.7, 51, 500 }, + [20] = { 47.6, 39.3, 51, 500 }, + [21] = { 44.8, 38.7, 51, 500 }, + [22] = { 50.9, 38.7, 51, 500 }, + }, + ["lvl"] = "47-49", + }, + [5855] = { + ["coords"] = { + [1] = { 56.3, 77.4, 51, 500 }, + [2] = { 35.6, 77.4, 51, 500 }, + [3] = { 35.3, 75.2, 51, 500 }, + [4] = { 31.1, 75, 51, 500 }, + [5] = { 58.4, 74.9, 51, 500 }, + [6] = { 30.7, 64.4, 51, 500 }, + [7] = { 46.2, 61.8, 51, 500 }, + [8] = { 29.9, 57.4, 51, 500 }, + [9] = { 40.8, 57.1, 51, 500 }, + [10] = { 53.7, 55.2, 51, 500 }, + [11] = { 56.5, 54.4, 51, 500 }, + [12] = { 24.3, 54.1, 51, 500 }, + [13] = { 52.8, 53.4, 51, 500 }, + [14] = { 49.7, 51.4, 51, 500 }, + [15] = { 52.2, 50.4, 51, 500 }, + [16] = { 53.8, 47.2, 51, 500 }, + [17] = { 55.6, 46.9, 51, 500 }, + [18] = { 51.8, 45.7, 51, 500 }, + [19] = { 55.6, 43.9, 51, 500 }, + [20] = { 55.6, 40.6, 51, 500 }, + [21] = { 35.3, 39.8, 51, 500 }, + [22] = { 50.6, 38, 51, 500 }, + [23] = { 38.8, 41.5, 51, 500 }, + [24] = { 42.5, 38.6, 51, 500 }, + }, + ["lvl"] = "46-48", + }, + [5856] = { + ["coords"] = { + [1] = { 64.6, 75.3, 51, 500 }, + [2] = { 62.4, 70.4, 51, 500 }, + [3] = { 60, 69.9, 51, 500 }, + [4] = { 60.6, 68.8, 51, 500 }, + [5] = { 67.9, 68.6, 51, 500 }, + [6] = { 64, 68.3, 51, 500 }, + [7] = { 62.8, 54.2, 51, 500 }, + [8] = { 66.6, 53, 51, 500 }, + [9] = { 58.9, 52.6, 51, 500 }, + [10] = { 61.7, 51.1, 51, 500 }, + [11] = { 63.5, 50.8, 51, 500 }, + [12] = { 69.4, 50.7, 51, 500 }, + [13] = { 65.6, 48.2, 51, 500 }, + [14] = { 68.3, 45.6, 51, 500 }, + [15] = { 67.9, 38.6, 51, 500 }, + [16] = { 65, 38.3, 51, 500 }, + [17] = { 66, 34.5, 51, 500 }, + [18] = { 71.1, 18.4, 51, 500 }, + [19] = { 73.6, 16.6, 51, 500 }, + [20] = { 71.9, 16.2, 51, 500 }, + }, + ["lvl"] = "43-45", + }, + [5857] = { + ["coords"] = { + [1] = { 57.6, 83.9, 51, 500 }, + [2] = { 56.8, 82.9, 51, 500 }, + [3] = { 59.8, 81.9, 51, 500 }, + [4] = { 48.8, 73.5, 51, 500 }, + [5] = { 50, 73.5, 51, 500 }, + [6] = { 52.2, 72.9, 51, 500 }, + [7] = { 56.4, 72.8, 51, 500 }, + [8] = { 57.5, 72.1, 51, 500 }, + [9] = { 48.1, 71.8, 51, 500 }, + [10] = { 53.4, 70.4, 51, 500 }, + [11] = { 51.3, 69.7, 51, 500 }, + [12] = { 56.8, 69.4, 51, 500 }, + [13] = { 55.9, 69.3, 51, 500 }, + [14] = { 49.2, 65.6, 51, 500 }, + [15] = { 56.2, 65.6, 51, 500 }, + [16] = { 47.4, 62.5, 51, 500 }, + [17] = { 51.1, 61.6, 51, 500 }, + [18] = { 53.4, 38.6, 51, 500 }, + [19] = { 55.3, 38.1, 51, 500 }, + [20] = { 56.1, 35.4, 51, 500 }, + [21] = { 50.5, 34.7, 51, 500 }, + [22] = { 55.9, 33.4, 51, 500 }, + [23] = { 58, 27.7, 51, 500 }, + [24] = { 56.7, 26.2, 51, 500 }, + [25] = { 59.8, 25.8, 51, 500 }, + [26] = { 57.6, 22.7, 51, 500 }, + }, + ["lvl"] = "45-47", + }, + [5858] = { + ["coords"] = { + [1] = { 28.9, 77.6, 51, 500 }, + [2] = { 22.2, 77.3, 51, 500 }, + [3] = { 24.9, 76.7, 51, 500 }, + [4] = { 29.1, 76.2, 51, 500 }, + [5] = { 26.4, 75.4, 51, 500 }, + [6] = { 22.8, 74.9, 51, 500 }, + [7] = { 30.4, 70.9, 51, 500 }, + [8] = { 26, 69.2, 51, 500 }, + [9] = { 40.4, 69, 51, 500 }, + [10] = { 31.1, 68.4, 51, 500 }, + [11] = { 43.8, 68.2, 51, 500 }, + [12] = { 27.6, 67.2, 51, 500 }, + [13] = { 29.3, 62.4, 51, 500 }, + [14] = { 31.1, 61.4, 51, 500 }, + [15] = { 29.7, 57.1, 51, 500 }, + [16] = { 28, 55.2, 51, 500 }, + [17] = { 26.3, 51, 51, 500 }, + [18] = { 28.2, 50.2, 51, 500 }, + [19] = { 26.9, 48.3, 51, 500 }, + [20] = { 28.1, 44.8, 51, 500 }, + [21] = { 29.6, 43.7, 51, 500 }, + [22] = { 27.7, 43.5, 51, 500 }, + [23] = { 31.1, 41.4, 51, 500 }, + [24] = { 32.6, 39.4, 51, 500 }, + [25] = { 27.1, 37.3, 51, 500 }, + [26] = { 37.8, 33.4, 51, 500 }, + }, + ["lvl"] = "47-49", + }, + [5859] = { + ["coords"] = { + [1] = { 43.2, 83.2, 17, 18000 }, + [2] = { 44.3, 82.9, 17, 18000 }, + [3] = { 41.9, 81.5, 17, 18000 }, + [4] = { 41.6, 78.8, 17, 18000 }, + }, + ["lvl"] = "26", + ["rnk"] = "2", + }, + [5860] = { + ["coords"] = { + [1] = { 23.4, 41.1, 51, 500 }, + [2] = { 25, 39.3, 51, 500 }, + [3] = { 25.1, 37.2, 51, 500 }, + [4] = { 19.2, 36.9, 51, 500 }, + [5] = { 23.6, 36.9, 51, 500 }, + [6] = { 19.1, 35.7, 51, 500 }, + [7] = { 25.2, 34.6, 51, 500 }, + [8] = { 24, 34.1, 51, 500 }, + }, + ["lvl"] = "47-48", + ["rnk"] = "1", + }, + [5861] = { + ["coords"] = { + [1] = { 16.8, 44.6, 51, 500 }, + [2] = { 17.5, 43.8, 51, 500 }, + [3] = { 23.5, 39.4, 51, 500 }, + [4] = { 22.1, 39, 51, 500 }, + [5] = { 14.4, 38.7, 51, 500 }, + [6] = { 19.6, 38.6, 51, 500 }, + [7] = { 18.4, 36.9, 51, 500 }, + [8] = { 22, 36.6, 51, 500 }, + [9] = { 20.7, 35.9, 51, 500 }, + [10] = { 18.1, 35.6, 51, 500 }, + [11] = { 23.4, 35, 51, 500 }, + [12] = { 16.7, 33.8, 51, 500 }, + [13] = { 16, 33.4, 51, 500 }, + [14] = { 29.5, 26.7, 51, 500 }, + [15] = { 30.8, 26.3, 51, 500 }, + [16] = { 22.2, 26.2, 51, 500 }, + [17] = { 26.1, 26.1, 51, 500 }, + [18] = { 28.7, 25.1, 51, 500 }, + [19] = { 25, 39.3, 51, 500 }, + [20] = { 19.2, 36.9, 51, 500 }, + [21] = { 23.6, 36.9, 51, 500 }, + [22] = { 25.2, 34.6, 51, 500 }, + [23] = { 24, 34.1, 51, 500 }, + }, + ["lvl"] = "48-49", + ["rnk"] = "1", + }, + [5862] = { + ["coords"] = { + [1] = { 16, 43.3, 51, 500 }, + [2] = { 13.3, 42.4, 51, 500 }, + [3] = { 18.4, 42.1, 51, 500 }, + [4] = { 13.3, 40.4, 51, 500 }, + [5] = { 17.9, 38.1, 51, 500 }, + [6] = { 14.6, 36.9, 51, 500 }, + [7] = { 23.6, 27.6, 51, 500 }, + [8] = { 24.7, 26.2, 51, 500 }, + [9] = { 29.7, 25.7, 51, 500 }, + [10] = { 26.8, 25.5, 51, 500 }, + [11] = { 25.6, 24.9, 51, 500 }, + [12] = { 27.5, 23.8, 51, 500 }, + }, + ["lvl"] = "49-50", + ["rnk"] = "1", + }, + [5863] = { + ["coords"] = { + [1] = { 43.2, 52.1, 17, 7200 }, + [2] = { 45, 51.4, 17, 7200 }, + }, + ["lvl"] = "19", + ["rnk"] = "4", + }, + [5864] = { + ["coords"] = { + [1] = { 40.8, 45.2, 17, 54000 }, + }, + ["lvl"] = "22", + ["rnk"] = "2", + }, + [5865] = { + ["coords"] = { + [1] = { 50.9, 18.2, 17, 5400 }, + }, + ["lvl"] = "13", + ["rnk"] = "4", + }, + [5866] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [5867] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [5868] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [5870] = { + ["coords"] = { + [1] = { 46.2, 58.4, 406, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "27", + }, + [5871] = { + ["coords"] = { + [1] = { 52, 29.7, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "18", + }, + [5872] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + ["rnk"] = "1", + }, + [5873] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "9", + }, + [5874] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "14", + }, + [5875] = { + ["coords"] = { + [1] = { 48.2, 45.3, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [5876] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "10", + }, + [5877] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "10", + }, + [5878] = { + ["coords"] = { + [1] = { 57.2, 30.3, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "29", + }, + [5879] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "14", + }, + [5880] = { + ["coords"] = { + [1] = { 56.3, 75.1, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "14", + }, + [5881] = { + ["coords"] = { + [1] = { 55.4, 67.6, 357, 300 }, + }, + ["lvl"] = "45", + }, + [5882] = { + ["coords"] = { + [1] = { 42.7, 9.5, 14, 300 }, + [2] = { 38.4, 85.6, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [5883] = { + ["coords"] = { + [1] = { 42.8, 9.5, 14, 300 }, + [2] = { 38.8, 85.7, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [5884] = { + ["coords"] = { + [1] = { 42.5, 69, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "10", + }, + [5885] = { + ["coords"] = { + [1] = { 42.7, 9.6, 14, 300 }, + [2] = { 38.4, 86.1, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [5886] = { + ["coords"] = { + [1] = { 44, 39.8, 130, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "16", + }, + [5887] = { + ["coords"] = { + [1] = { 42.4, 69.2, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "8", + }, + [5888] = { + ["coords"] = { + [1] = { 44.7, 76.2, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "10", + }, + [5889] = { + ["coords"] = {}, + ["lvl"] = "5-6", + }, + [5890] = { + ["coords"] = { + [1] = { 44.2, 77.4, 14, 180 }, + [2] = { 43.7, 75.8, 14, 180 }, + [3] = { 68.3, 37.5, 17, 180 }, + [4] = { 68.1, 36.7, 17, 180 }, + [5] = { 54.3, 80.8, 215, 180 }, + [6] = { 54.3, 80.3, 215, 180 }, + [7] = { 53.2, 80.2, 215, 180 }, + [8] = { 53.3, 80, 215, 180 }, + [9] = { 53.5, 79.6, 215, 180 }, + }, + ["lvl"] = "1", + }, + [5891] = { + ["coords"] = { + [1] = { 44, 76.2, 14, 300 }, + [2] = { 68.2, 36.9, 17, 300 }, + [3] = { 53.9, 80.5, 215, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "15", + }, + [5892] = { + ["coords"] = { + [1] = { 38, 37.7, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "15", + }, + [5893] = { + ["coords"] = { + [1] = { 38.9, 58.3, 14, 10 }, + }, + ["lvl"] = "12", + }, + [5894] = { + ["coords"] = { + [1] = { 38.8, 44.3, 130, 285 }, + }, + ["lvl"] = "22", + }, + [5895] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "22", + }, + [5896] = { + ["coords"] = { + [1] = { 38.9, 58.4, 14, 120 }, + [2] = { 38.7, 58.4, 14, 120 }, + [3] = { 38.7, 58.1, 14, 120 }, + [4] = { 38.9, 58, 14, 120 }, + [5] = { 65.4, 27.4, 17, 120 }, + }, + ["lvl"] = "9-10", + }, + [5897] = { + ["coords"] = { + [1] = { 38.1, 45.5, 130, 413 }, + [2] = { 37.8, 45.2, 130, 413 }, + [3] = { 38.5, 45.2, 130, 413 }, + [4] = { 38.1, 44.8, 130, 413 }, + [5] = { 38.8, 44.7, 130, 413 }, + [6] = { 38.3, 44.2, 130, 413 }, + [7] = { 38, 43.9, 130, 413 }, + [8] = { 38.5, 43.9, 130, 413 }, + }, + ["lvl"] = "19-20", + }, + [5898] = { + ["coords"] = {}, + ["lvl"] = "29-30", + }, + [5899] = { + ["coords"] = { + [1] = { 43.4, 77.4, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "23", + }, + [5900] = { + ["coords"] = { + [1] = { 38.6, 59, 14, 300 }, + [2] = { 65.4, 27.9, 17, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [5901] = { + ["coords"] = { + [1] = { 65.8, 43.8, 17, 275 }, + }, + ["fac"] = "AH", + ["lvl"] = "37", + }, + [5902] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [5903] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "35", + }, + [5904] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "37", + }, + [5905] = { + ["coords"] = { + [1] = { 53.5, 42.6, 400, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "37", + }, + [5906] = { + ["coords"] = { + [1] = { 34.9, 21, 215, 375 }, + [2] = { 88.5, 48.2, 405, 375 }, + [3] = { 25.2, 20.5, 1638, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "15", + }, + [5907] = { + ["coords"] = { + [1] = { 55.9, 19.9, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "15", + }, + [5908] = { + ["coords"] = { + [1] = { 43.3, 47.9, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [5909] = { + ["coords"] = { + [1] = { 47.1, 46.4, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [5910] = { + ["coords"] = { + [1] = { 37, 59.4, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "15", + }, + [5911] = { + ["coords"] = { + [1] = { 44.6, 59.3, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [5912] = { + ["coords"] = {}, + ["lvl"] = "20", + ["rnk"] = "2", + }, + [5913] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "53", + }, + [5914] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "19-21", + }, + [5915] = { + ["coords"] = { + [1] = { 28.1, 12.2, 406, 38000 }, + }, + ["fac"] = "A", + ["lvl"] = "29", + ["rnk"] = "2", + }, + [5916] = { + ["coords"] = { + [1] = { 32.2, 15.4, 406, 38000 }, + }, + ["fac"] = "A", + ["lvl"] = "27", + ["rnk"] = "2", + }, + [5917] = { + ["coords"] = { + [1] = { 34, 57.3, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "1-2", + }, + [5918] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [5919] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "14", + }, + [5920] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "25", + }, + [5921] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "24", + }, + [5922] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "38", + }, + [5923] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "38", + }, + [5924] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "38", + }, + [5925] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "38", + }, + [5926] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "24", + }, + [5927] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [5928] = { + ["coords"] = { + [1] = { 49.3, 36.2, 406, 38000 }, + }, + ["lvl"] = "27", + ["rnk"] = "2", + }, + [5929] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "31", + }, + [5930] = { + ["coords"] = { + [1] = { 29.6, 69.4, 406, 38000 }, + }, + ["lvl"] = "28", + ["rnk"] = "2", + }, + [5931] = { + ["coords"] = { + [1] = { 66.7, 52.3, 406, 14400 }, + }, + ["lvl"] = "24", + ["rnk"] = "2", + }, + [5932] = { + ["coords"] = { + [1] = { 62.7, 55.3, 406, 38000 }, + }, + ["lvl"] = "22", + ["rnk"] = "2", + }, + [5933] = { + ["coords"] = { + [1] = { 25.1, 37.2, 400, 18000 }, + }, + ["lvl"] = "31", + ["rnk"] = "4", + }, + [5934] = { + ["coords"] = { + [1] = { 17.5, 42.4, 400, 38000 }, + }, + ["lvl"] = "32", + ["rnk"] = "2", + }, + [5935] = { + ["coords"] = { + [1] = { 86.3, 72.1, 400, 108000 }, + }, + ["lvl"] = "37", + ["rnk"] = "2", + }, + [5936] = { + ["coords"] = {}, + ["lvl"] = "61", + }, + [5937] = { + ["coords"] = { + [1] = { 71.5, 63.6, 400, 38000 }, + }, + ["lvl"] = "35", + ["rnk"] = "2", + }, + [5938] = { + ["coords"] = { + [1] = { 44.5, 60.7, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "14", + }, + [5939] = { + ["coords"] = { + [1] = { 46.8, 60.8, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "13", + }, + [5940] = { + ["coords"] = { + [1] = { 47.5, 55.1, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "9", + }, + [5941] = { + ["coords"] = { + [1] = { 53.2, 81.6, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "14", + }, + [5942] = { + ["coords"] = { + [1] = { 56.1, 73.4, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "14", + }, + [5943] = { + ["coords"] = { + [1] = { 54.2, 41.9, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "15", + }, + [5944] = { + ["coords"] = { + [1] = { 45, 59.3, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [5945] = { + ["coords"] = {}, + ["lvl"] = "5", + ["rnk"] = "1", + }, + [5946] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [5947] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [5948] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [5949] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [5950] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "28", + }, + [5951] = { + ["coords"] = { + [1] = { 53.3, 80.7, 14, 180 }, + [2] = { 53.6, 75.2, 14, 180 }, + [3] = { 55.5, 72.1, 14, 180 }, + [4] = { 43.7, 72.1, 14, 180 }, + [5] = { 50.5, 71.9, 14, 180 }, + [6] = { 41.7, 71.8, 14, 180 }, + [7] = { 53.1, 69.7, 14, 180 }, + [8] = { 55.5, 69.2, 14, 180 }, + [9] = { 45.9, 68, 14, 180 }, + [10] = { 54.3, 67.3, 14, 180 }, + [11] = { 40.3, 67.3, 14, 180 }, + [12] = { 44.9, 65.5, 14, 180 }, + [13] = { 40.6, 63.4, 14, 180 }, + [14] = { 52.4, 60.9, 14, 180 }, + [15] = { 41.9, 59.6, 14, 180 }, + [16] = { 46.9, 58.3, 14, 180 }, + [17] = { 51.8, 56.9, 14, 180 }, + [18] = { 53.8, 50.7, 14, 180 }, + [19] = { 36.4, 50.6, 14, 180 }, + [20] = { 53.6, 47.6, 14, 180 }, + [21] = { 46, 46.9, 14, 180 }, + [22] = { 42.9, 45.7, 14, 180 }, + [23] = { 58.6, 45.5, 14, 180 }, + [24] = { 37.9, 45, 14, 180 }, + [25] = { 48.1, 44.9, 14, 180 }, + [26] = { 58.8, 42.7, 14, 180 }, + [27] = { 36.8, 41.6, 14, 180 }, + [28] = { 38.4, 40.1, 14, 180 }, + [29] = { 54.8, 39.9, 14, 180 }, + [30] = { 36.5, 37.8, 14, 180 }, + [31] = { 39.9, 36.9, 14, 180 }, + [32] = { 54.9, 34.3, 14, 180 }, + [33] = { 54.8, 30.1, 14, 180 }, + [34] = { 37.1, 27.9, 14, 180 }, + [35] = { 46.6, 19.1, 14, 180 }, + [36] = { 54.3, 18.5, 14, 180 }, + [37] = { 42.7, 17.8, 14, 180 }, + [38] = { 45.4, 16.7, 14, 270 }, + [39] = { 39, 16.5, 14, 180 }, + [40] = { 55.7, 12.6, 14, 180 }, + [41] = { 67, 34.6, 17, 180 }, + [42] = { 66.3, 32.2, 17, 180 }, + [43] = { 64.2, 23.5, 17, 180 }, + [44] = { 64.3, 16.8, 17, 180 }, + [45] = { 64.6, 11.7, 17, 180 }, + [46] = { 51.2, 13.5, 14, 180 }, + }, + ["lvl"] = "1", + }, + [5952] = { + ["coords"] = { + [1] = { 43.5, 69.6, 14, 300 }, + [2] = { 49.2, 69.5, 14, 300 }, + [3] = { 42.7, 68.8, 14, 300 }, + [4] = { 49.9, 68.6, 14, 300 }, + [5] = { 42.2, 68.5, 14, 300 }, + [6] = { 42.7, 68.4, 14, 300 }, + [7] = { 45, 68.3, 14, 300 }, + [8] = { 42.2, 68.3, 14, 300 }, + [9] = { 50, 68.3, 14, 300 }, + [10] = { 49, 67.8, 14, 300 }, + [11] = { 43.5, 67.8, 14, 300 }, + [12] = { 43.6, 67.4, 14, 300 }, + [13] = { 49.7, 67.2, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [5953] = { + ["coords"] = { + [1] = { 50.8, 45.1, 14, 300 }, + [2] = { 52.1, 45.1, 14, 300 }, + [3] = { 52.6, 44.4, 14, 300 }, + [4] = { 52.3, 44.4, 14, 300 }, + [5] = { 54.7, 44.2, 14, 300 }, + [6] = { 50.7, 44, 14, 300 }, + [7] = { 54.3, 44, 14, 300 }, + [8] = { 51.3, 44, 14, 300 }, + [9] = { 50.7, 43.9, 14, 300 }, + [10] = { 50.6, 43.8, 14, 300 }, + [11] = { 49.7, 43.6, 14, 300 }, + [12] = { 50.7, 42.9, 14, 300 }, + [13] = { 53.1, 42.8, 14, 300 }, + [14] = { 54, 42.7, 14, 300 }, + [15] = { 53.1, 42.6, 14, 300 }, + [16] = { 53.1, 42.5, 14, 300 }, + [17] = { 56, 42.5, 14, 300 }, + [18] = { 53.9, 42.2, 14, 300 }, + [19] = { 53.5, 41.1, 14, 300 }, + [20] = { 54.2, 40.9, 14, 300 }, + [21] = { 52.9, 40.8, 14, 300 }, + [22] = { 54, 40.8, 14, 300 }, + [23] = { 49, 40.6, 14, 300 }, + [24] = { 51.1, 40.5, 14, 300 }, + [25] = { 49.6, 40.4, 14, 300 }, + [26] = { 49.9, 40.4, 14, 300 }, + [27] = { 50.2, 40.4, 14, 300 }, + [28] = { 54.6, 40.4, 14, 300 }, + [29] = { 49.7, 40.2, 14, 300 }, + [30] = { 49.6, 40.2, 14, 300 }, + [31] = { 49.9, 40.1, 14, 300 }, + [32] = { 51.9, 40, 14, 300 }, + [33] = { 52.5, 39.9, 14, 300 }, + [34] = { 49.6, 39.6, 14, 300 }, + [35] = { 50.2, 39.5, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "28-32", + }, + [5954] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [5955] = { + ["coords"] = { + [1] = { 31.8, 74.1, 440, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "45", + }, + [5956] = { + ["coords"] = {}, + ["lvl"] = "35", + }, + [5957] = { + ["coords"] = { + [1] = { 34.4, 20.3, 215, 250 }, + [2] = { 87.9, 47.4, 405, 250 }, + [3] = { 22.5, 16.9, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [5958] = { + ["coords"] = { + [1] = { 42.8, 9.5, 14, 300 }, + [2] = { 38.7, 85.4, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [5959] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5960] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5961] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5962] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5963] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5964] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5965] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5966] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5967] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5968] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5969] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5970] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5971] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5972] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5973] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5974] = { + ["coords"] = { + [1] = { 43.3, 15.4, 4, 300 }, + [2] = { 42.2, 15.3, 4, 300 }, + [3] = { 43.9, 14.8, 4, 300 }, + [4] = { 41.7, 14.6, 4, 300 }, + [5] = { 41.3, 13.6, 4, 300 }, + [6] = { 42.4, 13.5, 4, 300 }, + [7] = { 43, 12.9, 4, 300 }, + [8] = { 42.3, 12.7, 4, 300 }, + [9] = { 42.2, 12.6, 4, 300 }, + [10] = { 44.2, 12.6, 4, 300 }, + [11] = { 42.9, 12.6, 4, 300 }, + [12] = { 41.1, 12.5, 4, 300 }, + [13] = { 42.5, 12.3, 4, 300 }, + [14] = { 44.1, 12.1, 4, 300 }, + [15] = { 41.2, 11.7, 4, 300 }, + [16] = { 43.7, 11.6, 4, 300 }, + [17] = { 43.1, 10.9, 4, 300 }, + [18] = { 20.1, 77.7, 8, 300 }, + }, + ["lvl"] = "45-46", + }, + [5975] = { + ["coords"] = { + [1] = { 43.3, 15.4, 4, 300 }, + [2] = { 42.2, 15.3, 4, 300 }, + [3] = { 43.9, 14.8, 4, 300 }, + [4] = { 41.7, 14.6, 4, 300 }, + [5] = { 41.3, 13.6, 4, 300 }, + [6] = { 42.4, 13.5, 4, 300 }, + [7] = { 43, 12.9, 4, 300 }, + [8] = { 42.3, 12.7, 4, 300 }, + [9] = { 42.2, 12.6, 4, 300 }, + [10] = { 44.2, 12.6, 4, 300 }, + [11] = { 42.9, 12.6, 4, 300 }, + [12] = { 41.1, 12.5, 4, 300 }, + [13] = { 42.5, 12.3, 4, 300 }, + [14] = { 44.1, 12.1, 4, 300 }, + [15] = { 41.2, 11.7, 4, 300 }, + [16] = { 43.7, 11.6, 4, 300 }, + [17] = { 43.1, 10.9, 4, 300 }, + [18] = { 20.1, 77.7, 8, 300 }, + }, + ["lvl"] = "46-47", + }, + [5976] = { + ["coords"] = { + [1] = { 43.3, 15.4, 4, 300 }, + [2] = { 42.2, 15.3, 4, 300 }, + [3] = { 43.9, 14.8, 4, 300 }, + [4] = { 41.7, 14.6, 4, 300 }, + [5] = { 41.3, 13.6, 4, 300 }, + [6] = { 42.4, 13.5, 4, 300 }, + [7] = { 43, 12.9, 4, 300 }, + [8] = { 42.3, 12.7, 4, 300 }, + [9] = { 42.2, 12.6, 4, 300 }, + [10] = { 44.2, 12.6, 4, 300 }, + [11] = { 42.9, 12.6, 4, 300 }, + [12] = { 41.1, 12.5, 4, 300 }, + [13] = { 42.5, 12.3, 4, 300 }, + [14] = { 44.1, 12.1, 4, 300 }, + [15] = { 41.2, 11.7, 4, 300 }, + [16] = { 43.7, 11.6, 4, 300 }, + [17] = { 43.1, 10.9, 4, 300 }, + [18] = { 20.1, 77.7, 8, 300 }, + }, + ["lvl"] = "46-47", + }, + [5977] = { + ["coords"] = { + [1] = { 48.6, 45.9, 4, 300 }, + [2] = { 47.3, 45.5, 4, 300 }, + [3] = { 48.1, 45.1, 4, 300 }, + [4] = { 47.6, 44.8, 4, 300 }, + [5] = { 48.1, 44.3, 4, 300 }, + [6] = { 47, 43.7, 4, 300 }, + [7] = { 47.7, 43.4, 4, 300 }, + [8] = { 48.9, 43.2, 4, 300 }, + [9] = { 48.3, 43, 4, 300 }, + [10] = { 47, 43, 4, 300 }, + [11] = { 49.7, 42.6, 4, 300 }, + [12] = { 47.8, 42.2, 4, 300 }, + [13] = { 49.9, 41.1, 4, 300 }, + [14] = { 48, 41, 4, 300 }, + [15] = { 49.1, 40.9, 4, 300 }, + [16] = { 47.1, 40.9, 4, 300 }, + }, + ["lvl"] = "53-54", + }, + [5978] = { + ["coords"] = { + [1] = { 48.6, 45.9, 4, 300 }, + [2] = { 47.3, 45.5, 4, 300 }, + [3] = { 48.1, 45.1, 4, 300 }, + [4] = { 47.6, 44.8, 4, 300 }, + [5] = { 48.1, 44.3, 4, 300 }, + [6] = { 47, 43.7, 4, 300 }, + [7] = { 47.7, 43.4, 4, 300 }, + [8] = { 48.9, 43.2, 4, 300 }, + [9] = { 48.3, 43, 4, 300 }, + [10] = { 47, 43, 4, 300 }, + [11] = { 49.7, 42.6, 4, 300 }, + [12] = { 47.8, 42.2, 4, 300 }, + [13] = { 49.9, 41.1, 4, 300 }, + [14] = { 48, 41, 4, 300 }, + [15] = { 49.1, 40.9, 4, 300 }, + [16] = { 47.1, 40.9, 4, 300 }, + }, + ["lvl"] = "54-55", + }, + [5979] = { + ["coords"] = { + [1] = { 48.3, 23.2, 4, 300 }, + [2] = { 46.5, 19.4, 4, 300 }, + }, + ["lvl"] = "45-47", + }, + [5980] = { + ["coords"] = {}, + ["lvl"] = "48-50", + }, + [5981] = { + ["coords"] = { + [1] = { 45.2, 35.2, 4, 430 }, + }, + ["lvl"] = "51-53", + }, + [5982] = { + ["coords"] = { + [1] = { 54.9, 44.6, 4, 300 }, + [2] = { 58.2, 44.3, 4, 360 }, + [3] = { 54.7, 44.3, 4, 300 }, + [4] = { 53.6, 39.1, 4, 300 }, + [5] = { 56.7, 37.4, 4, 300 }, + [6] = { 56, 36.4, 4, 300 }, + [7] = { 54.5, 36.3, 4, 300 }, + [8] = { 45.4, 35.6, 4, 300 }, + [9] = { 58.6, 28.3, 4, 300 }, + [10] = { 61, 26.8, 4, 300 }, + [11] = { 62.7, 26.6, 4, 300 }, + [12] = { 62.5, 26.1, 4, 300 }, + [13] = { 47.8, 23.5, 4, 300 }, + [14] = { 49.1, 19.4, 4, 300 }, + [15] = { 46.1, 18.7, 4, 300 }, + [16] = { 50.2, 17.4, 4, 300 }, + [17] = { 49.9, 17, 4, 300 }, + }, + ["lvl"] = "46-48", + }, + [5983] = { + ["coords"] = {}, + ["lvl"] = "49-50", + }, + [5984] = { + ["coords"] = { + [1] = { 58.6, 41, 4, 300 }, + [2] = { 52.5, 30.5, 4, 300 }, + [3] = { 51, 30.3, 4, 300 }, + [4] = { 44, 29.2, 4, 300 }, + [5] = { 50.8, 28.1, 4, 300 }, + [6] = { 45, 27.6, 4, 300 }, + [7] = { 44, 26.1, 4, 300 }, + [8] = { 43.9, 25.5, 4, 300 }, + [9] = { 55.7, 25.2, 4, 300 }, + [10] = { 45.5, 24.7, 4, 300 }, + [11] = { 45.1, 24.6, 4, 300 }, + [12] = { 49.1, 24.6, 4, 300 }, + [13] = { 48.6, 24.5, 4, 300 }, + [14] = { 56.7, 23.4, 4, 300 }, + [15] = { 48, 23.2, 4, 300 }, + [16] = { 46, 23.1, 4, 300 }, + [17] = { 44.1, 23.1, 4, 300 }, + [18] = { 49.8, 22, 4, 300 }, + [19] = { 56.6, 21.9, 4, 300 }, + [20] = { 49, 21.7, 4, 300 }, + [21] = { 45.1, 21.6, 4, 300 }, + [22] = { 47, 21.5, 4, 300 }, + [23] = { 46.7, 20.9, 4, 300 }, + [24] = { 48.1, 20.1, 4, 300 }, + [25] = { 46, 20.1, 4, 300 }, + [26] = { 44.2, 20.1, 4, 300 }, + [27] = { 44.7, 20, 4, 300 }, + [28] = { 47.8, 19.7, 4, 300 }, + [29] = { 57.1, 18.8, 4, 300 }, + [30] = { 48, 18.8, 4, 300 }, + [31] = { 45.1, 18.8, 4, 300 }, + [32] = { 49, 18.7, 4, 300 }, + [33] = { 47.1, 18.6, 4, 300 }, + [34] = { 48.3, 17.8, 4, 300 }, + [35] = { 56, 17.6, 4, 300 }, + [36] = { 48, 17.2, 4, 300 }, + [37] = { 46, 17.2, 4, 300 }, + [38] = { 49.3, 16.8, 4, 300 }, + [39] = { 49.1, 15.7, 4, 300 }, + [40] = { 46.7, 14.4, 4, 300 }, + }, + ["lvl"] = "45-46", + }, + [5985] = { + ["coords"] = { + [1] = { 52.4, 57.2, 4, 300 }, + [2] = { 60.9, 45.5, 4, 300 }, + [3] = { 58.9, 45.4, 4, 300 }, + [4] = { 60.9, 44.3, 4, 300 }, + [5] = { 59, 44.1, 4, 300 }, + [6] = { 55, 42.6, 4, 300 }, + [7] = { 54, 41, 4, 300 }, + [8] = { 51.2, 40, 4, 300 }, + [9] = { 51.6, 38.8, 4, 300 }, + [10] = { 60.2, 38.3, 4, 300 }, + [11] = { 53.2, 38.1, 4, 300 }, + [12] = { 59, 36.5, 4, 300 }, + [13] = { 49, 36.5, 4, 300 }, + [14] = { 59.3, 36, 4, 300 }, + [15] = { 46.1, 35.1, 4, 300 }, + [16] = { 44.9, 33.8, 4, 300 }, + }, + ["lvl"] = "49-50", + }, + [5986] = { + ["coords"] = {}, + ["lvl"] = "53-54", + }, + [5987] = { + ["coords"] = {}, + ["lvl"] = "46-47", + }, + [5988] = { + ["coords"] = { + [1] = { 61, 36.6, 4, 300 }, + [2] = { 52.4, 57.2, 4, 300 }, + [3] = { 60.9, 45.5, 4, 300 }, + [4] = { 58.9, 45.4, 4, 300 }, + [5] = { 60.9, 44.3, 4, 300 }, + [6] = { 59, 44.1, 4, 300 }, + [7] = { 55, 42.6, 4, 300 }, + [8] = { 54, 41, 4, 300 }, + [9] = { 58.6, 41, 4, 300 }, + [10] = { 51.2, 40, 4, 300 }, + [11] = { 51.6, 38.8, 4, 300 }, + [12] = { 60.2, 38.3, 4, 300 }, + [13] = { 53.2, 38.1, 4, 300 }, + [14] = { 59, 36.5, 4, 300 }, + [15] = { 49, 36.5, 4, 300 }, + [16] = { 59.3, 36, 4, 300 }, + [17] = { 46.1, 35.1, 4, 300 }, + [18] = { 44.9, 33.8, 4, 300 }, + [19] = { 52.5, 30.5, 4, 300 }, + [20] = { 51, 30.3, 4, 300 }, + [21] = { 44, 29.2, 4, 300 }, + [22] = { 50.8, 28.1, 4, 300 }, + [23] = { 45, 27.6, 4, 300 }, + [24] = { 44, 26.1, 4, 300 }, + [25] = { 43.9, 25.5, 4, 300 }, + [26] = { 55.7, 25.2, 4, 300 }, + [27] = { 45.5, 24.7, 4, 300 }, + [28] = { 45.1, 24.6, 4, 300 }, + [29] = { 49.1, 24.6, 4, 300 }, + [30] = { 48.6, 24.5, 4, 300 }, + [31] = { 56.7, 23.4, 4, 300 }, + [32] = { 48, 23.2, 4, 300 }, + [33] = { 46, 23.1, 4, 300 }, + [34] = { 44.1, 23.1, 4, 300 }, + [35] = { 49.8, 22, 4, 300 }, + [36] = { 56.6, 21.9, 4, 300 }, + [37] = { 49, 21.7, 4, 300 }, + [38] = { 45.1, 21.6, 4, 300 }, + [39] = { 47, 21.5, 4, 300 }, + [40] = { 46.7, 20.9, 4, 300 }, + [41] = { 48.1, 20.1, 4, 300 }, + [42] = { 46, 20.1, 4, 300 }, + [43] = { 44.2, 20.1, 4, 300 }, + [44] = { 44.7, 20, 4, 300 }, + [45] = { 47.8, 19.7, 4, 300 }, + [46] = { 57.1, 18.8, 4, 300 }, + [47] = { 48, 18.8, 4, 300 }, + [48] = { 45.1, 18.8, 4, 300 }, + [49] = { 49, 18.7, 4, 300 }, + [50] = { 47.1, 18.6, 4, 300 }, + [51] = { 48.3, 17.8, 4, 300 }, + [52] = { 56, 17.6, 4, 300 }, + [53] = { 48, 17.2, 4, 300 }, + [54] = { 46, 17.2, 4, 300 }, + [55] = { 49.3, 16.8, 4, 300 }, + [56] = { 49.1, 15.7, 4, 300 }, + [57] = { 46.7, 14.4, 4, 300 }, + }, + ["lvl"] = "50-51", + }, + [5989] = { + ["coords"] = {}, + ["lvl"] = "52-53", + }, + [5990] = { + ["coords"] = { + [1] = { 57.9, 35, 4, 300 }, + [2] = { 56.9, 33.5, 4, 300 }, + [3] = { 55.9, 32.1, 4, 300 }, + [4] = { 55, 30.7, 4, 300 }, + [5] = { 56.9, 30.6, 4, 300 }, + [6] = { 61.1, 30.5, 4, 300 }, + [7] = { 57.9, 29.1, 4, 300 }, + [8] = { 56, 29.1, 4, 300 }, + [9] = { 55, 29, 4, 300 }, + [10] = { 61.8, 29, 4, 300 }, + [11] = { 60.9, 27.8, 4, 300 }, + [12] = { 59, 27.7, 4, 300 }, + [13] = { 62.9, 27.6, 4, 300 }, + [14] = { 61.9, 26.1, 4, 300 }, + }, + ["lvl"] = "47-48", + }, + [5991] = { + ["coords"] = { + [1] = { 52.4, 58, 4, 300 }, + [2] = { 50.6, 55.7, 4, 300 }, + [3] = { 50.3, 55.2, 4, 300 }, + [4] = { 45.3, 54.9, 4, 300 }, + [5] = { 52, 54.5, 4, 300 }, + [6] = { 52, 53.2, 4, 300 }, + [7] = { 51.5, 53.2, 4, 300 }, + [8] = { 64.1, 52.5, 4, 300 }, + [9] = { 46.5, 51.1, 4, 300 }, + [10] = { 53.6, 50.5, 4, 300 }, + [11] = { 47.1, 49.4, 4, 300 }, + [12] = { 48.1, 38.1, 4, 300 }, + [13] = { 46, 38, 4, 300 }, + [14] = { 51, 36.5, 4, 300 }, + [15] = { 45, 36.5, 4, 300 }, + [16] = { 61, 36.6, 4, 300 }, + [17] = { 55, 42.6, 4, 300 }, + [18] = { 49, 36.5, 4, 300 }, + [19] = { 46.1, 35.1, 4, 300 }, + }, + ["lvl"] = "51-52", + }, + [5992] = { + ["coords"] = { + [1] = { 58.2, 30.4, 4, 300 }, + [2] = { 58.3, 27.3, 4, 300 }, + [3] = { 57.9, 35, 4, 300 }, + [4] = { 56.9, 33.5, 4, 300 }, + [5] = { 55.9, 32.1, 4, 300 }, + [6] = { 55, 30.7, 4, 300 }, + [7] = { 56.9, 30.6, 4, 300 }, + [8] = { 61.1, 30.5, 4, 300 }, + [9] = { 57.9, 29.1, 4, 300 }, + [10] = { 56, 29.1, 4, 300 }, + [11] = { 55, 29, 4, 300 }, + [12] = { 61.8, 29, 4, 300 }, + [13] = { 60.9, 27.8, 4, 300 }, + [14] = { 59, 27.7, 4, 300 }, + [15] = { 62.9, 27.6, 4, 300 }, + [16] = { 61.9, 26.1, 4, 300 }, + }, + ["lvl"] = "48-49", + }, + [5993] = { + ["coords"] = { + [1] = { 52.4, 58, 4, 300 }, + [2] = { 50.6, 55.7, 4, 300 }, + [3] = { 50.3, 55.2, 4, 300 }, + [4] = { 45.3, 54.9, 4, 300 }, + [5] = { 52, 54.5, 4, 300 }, + [6] = { 52, 53.2, 4, 300 }, + [7] = { 51.5, 53.2, 4, 300 }, + [8] = { 64.1, 52.5, 4, 300 }, + [9] = { 46.5, 51.1, 4, 300 }, + [10] = { 53.6, 50.5, 4, 300 }, + [11] = { 47.1, 49.4, 4, 300 }, + [12] = { 48.1, 38.1, 4, 300 }, + [13] = { 46, 38, 4, 300 }, + [14] = { 51, 36.5, 4, 300 }, + [15] = { 45, 36.5, 4, 300 }, + [16] = { 52.4, 57.2, 4, 300 }, + [17] = { 60.9, 45.5, 4, 300 }, + [18] = { 58.9, 45.4, 4, 300 }, + [19] = { 60.9, 44.3, 4, 300 }, + [20] = { 59, 44.1, 4, 300 }, + [21] = { 54, 41, 4, 300 }, + [22] = { 51.2, 40, 4, 300 }, + [23] = { 51.6, 38.8, 4, 300 }, + [24] = { 60.2, 38.3, 4, 300 }, + [25] = { 53.2, 38.1, 4, 300 }, + [26] = { 59, 36.5, 4, 300 }, + [27] = { 59.3, 36, 4, 300 }, + [28] = { 44.9, 33.8, 4, 300 }, + [29] = { 55, 42.6, 4, 300 }, + [30] = { 49, 36.5, 4, 300 }, + [31] = { 46.1, 35.1, 4, 300 }, + }, + ["lvl"] = "52-53", + }, + [5994] = { + ["coords"] = { + [1] = { 42, 9.9, 14, 300 }, + [2] = { 35.7, 86.9, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [5995] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "46-47", + }, + [5996] = { + ["coords"] = { + [1] = { 58.4, 14.6, 4, 300 }, + [2] = { 58.3, 14.6, 4, 300 }, + [3] = { 54, 13.3, 4, 300 }, + [4] = { 53.9, 13.3, 4, 300 }, + [5] = { 57.5, 12.9, 4, 300 }, + [6] = { 70.4, 12, 4, 300 }, + [7] = { 57.9, 11.8, 4, 300 }, + [8] = { 66.1, 11.6, 4, 300 }, + [9] = { 54.5, 11.6, 4, 300 }, + [10] = { 57.1, 11.5, 4, 300 }, + [11] = { 55.1, 11.2, 4, 300 }, + [12] = { 55.8, 11.1, 4, 300 }, + [13] = { 66.6, 11, 4, 300 }, + [14] = { 56.5, 11, 4, 300 }, + [15] = { 57.9, 10.8, 4, 300 }, + [16] = { 72.3, 10.7, 4, 300 }, + [17] = { 65.9, 10.6, 4, 300 }, + [18] = { 69.1, 10.5, 4, 300 }, + [19] = { 54.5, 10.4, 4, 300 }, + [20] = { 57.3, 10, 4, 300 }, + [21] = { 63.8, 10, 4, 300 }, + [22] = { 66.7, 9.8, 4, 300 }, + [23] = { 64.7, 9.7, 4, 300 }, + [24] = { 63.3, 9.7, 4, 300 }, + [25] = { 61.4, 9.6, 4, 300 }, + [26] = { 55.4, 9.5, 4, 300 }, + [27] = { 68.7, 9.3, 4, 300 }, + [28] = { 68, 9.3, 4, 300 }, + [29] = { 63.9, 9.2, 4, 300 }, + [30] = { 67, 9.2, 4, 300 }, + [31] = { 63, 8.8, 4, 300 }, + [32] = { 62.3, 8.7, 4, 300 }, + [33] = { 65.2, 8.4, 4, 300 }, + [34] = { 69.3, 8.4, 4, 300 }, + [35] = { 61.4, 8.3, 4, 300 }, + [36] = { 64.1, 8.2, 4, 300 }, + [37] = { 66.6, 8.1, 4, 300 }, + [38] = { 60, 8, 4, 300 }, + [39] = { 55.2, 8, 4, 300 }, + [40] = { 65.9, 7.7, 4, 300 }, + [41] = { 64.6, 7.6, 4, 300 }, + [42] = { 61.7, 7.3, 4, 300 }, + [43] = { 61.2, 7, 4, 300 }, + [44] = { 57.1, 7, 4, 300 }, + [45] = { 59.9, 7, 4, 300 }, + [46] = { 55.3, 6.9, 4, 300 }, + [47] = { 60.1, 79.4, 8, 300 }, + [48] = { 54.6, 77.9, 8, 300 }, + [49] = { 62.9, 77.4, 8, 300 }, + [50] = { 53.5, 77.3, 8, 300 }, + [51] = { 58.1, 77.2, 8, 300 }, + [52] = { 50.5, 76.5, 8, 300 }, + [53] = { 54.7, 76.1, 8, 300 }, + [54] = { 61.9, 76.1, 8, 300 }, + [55] = { 51.7, 76.1, 8, 300 }, + [56] = { 49.7, 76, 8, 300 }, + [57] = { 62.9, 76, 8, 300 }, + [58] = { 46.9, 75.8, 8, 300 }, + [59] = { 38.1, 75.7, 8, 300 }, + [60] = { 57.6, 75.5, 8, 300 }, + [61] = { 56.6, 75.4, 8, 300 }, + [62] = { 50.6, 75.3, 8, 300 }, + [63] = { 61.2, 75.3, 8, 300 }, + [64] = { 55, 75.3, 8, 300 }, + [65] = { 62.7, 74.8, 8, 300 }, + [66] = { 49.3, 74.7, 8, 300 }, + [67] = { 48.2, 74.5, 8, 300 }, + [68] = { 52.5, 74.1, 8, 300 }, + [69] = { 58.5, 74.1, 8, 300 }, + [70] = { 46.9, 74, 8, 300 }, + [71] = { 60, 74, 8, 300 }, + [72] = { 50.8, 73.9, 8, 300 }, + [73] = { 63.7, 73.8, 8, 300 }, + [74] = { 54.5, 73.7, 8, 300 }, + [75] = { 44.9, 73.6, 8, 300 }, + [76] = { 37.8, 73.5, 8, 300 }, + [77] = { 59.1, 73.5, 8, 300 }, + [78] = { 62.8, 73.2, 8, 300 }, + [79] = { 53.5, 73.1, 8, 300 }, + [80] = { 60.7, 73, 8, 300 }, + [81] = { 51.6, 72.9, 8, 300 }, + [82] = { 47.4, 72.5, 8, 300 }, + [83] = { 46.6, 72.1, 8, 300 }, + [84] = { 40.6, 72, 8, 300 }, + [85] = { 44.7, 72, 8, 300 }, + [86] = { 38.1, 72, 8, 300 }, + [87] = { 59.3, 71.5, 8, 300 }, + [88] = { 61.4, 71.2, 8, 300 }, + [89] = { 41.1, 70.8, 8, 300 }, + [90] = { 39.5, 70.7, 8, 300 }, + [91] = { 45.8, 70.6, 8, 300 }, + [92] = { 52, 70.2, 8, 300 }, + [93] = { 55.8, 70.2, 8, 300 }, + [94] = { 53.1, 70.2, 8, 300 }, + [95] = { 62.2, 70, 8, 300 }, + [96] = { 42, 69.9, 8, 300 }, + [97] = { 60.9, 69.8, 8, 300 }, + [98] = { 51.1, 69.8, 8, 300 }, + [99] = { 37.1, 69.8, 8, 300 }, + [100] = { 46.7, 69.8, 8, 300 }, + [101] = { 63.1, 69.5, 8, 300 }, + [102] = { 52.5, 69.3, 8, 300 }, + [103] = { 39.2, 69, 8, 300 }, + [104] = { 36.7, 69, 8, 300 }, + [105] = { 58.4, 69, 8, 300 }, + [106] = { 38, 68.8, 8, 300 }, + [107] = { 50.6, 68.8, 8, 300 }, + [108] = { 59.4, 68.8, 8, 300 }, + [109] = { 64.1, 68.7, 8, 300 }, + [110] = { 53.7, 68.6, 8, 300 }, + [111] = { 44.6, 68.5, 8, 300 }, + [112] = { 56.2, 68.4, 8, 300 }, + [113] = { 52.8, 68.4, 8, 300 }, + [114] = { 41.4, 68.3, 8, 300 }, + [115] = { 47.2, 68.1, 8, 300 }, + [116] = { 63, 68, 8, 300 }, + [117] = { 54.4, 67.9, 8, 300 }, + [118] = { 50.9, 67.9, 8, 300 }, + [119] = { 46.2, 67.7, 8, 300 }, + [120] = { 37.4, 67.5, 8, 300 }, + [121] = { 55.7, 67.4, 8, 300 }, + [122] = { 42.1, 67.4, 8, 300 }, + [123] = { 52.1, 67, 8, 300 }, + [124] = { 51.1, 66.8, 8, 300 }, + [125] = { 43, 66.8, 8, 300 }, + [126] = { 61.9, 66.5, 8, 300 }, + [127] = { 54.8, 66.2, 8, 300 }, + [128] = { 58.6, 66.1, 8, 300 }, + [129] = { 40.3, 66, 8, 300 }, + [130] = { 62.5, 65.5, 8, 300 }, + [131] = { 45, 65.5, 8, 300 }, + [132] = { 45.8, 65.3, 8, 300 }, + [133] = { 55, 65.3, 8, 300 }, + [134] = { 43.3, 65.2, 8, 300 }, + [135] = { 50.3, 65.2, 8, 300 }, + [136] = { 52.8, 65.2, 8, 300 }, + [137] = { 39.4, 65, 8, 300 }, + [138] = { 48.6, 64.9, 8, 300 }, + [139] = { 57.8, 64.9, 8, 300 }, + [140] = { 51.6, 64.8, 8, 300 }, + [141] = { 56.8, 64.7, 8, 300 }, + [142] = { 41.1, 64.7, 8, 300 }, + [143] = { 47.8, 64.7, 8, 300 }, + [144] = { 56, 64.7, 8, 300 }, + [145] = { 44.5, 64.4, 8, 300 }, + [146] = { 40.2, 64.4, 8, 300 }, + [147] = { 62.7, 64.4, 8, 300 }, + [148] = { 61, 64.4, 8, 300 }, + [149] = { 59.3, 64.1, 8, 300 }, + [150] = { 42, 64.1, 8, 300 }, + [151] = { 48.2, 63.8, 8, 300 }, + [152] = { 53.9, 63.7, 8, 300 }, + [153] = { 41, 62.9, 8, 300 }, + [154] = { 57.6, 62.9, 8, 300 }, + [155] = { 60.7, 62.8, 8, 300 }, + [156] = { 52.9, 62.5, 8, 300 }, + [157] = { 48.9, 62.5, 8, 300 }, + [158] = { 50, 62.2, 8, 300 }, + [159] = { 59.7, 62.2, 8, 300 }, + [160] = { 51.3, 62.2, 8, 300 }, + [161] = { 44.1, 62, 8, 300 }, + [162] = { 44.8, 61.2, 8, 300 }, + [163] = { 57.7, 61.1, 8, 300 }, + [164] = { 42.3, 61, 8, 300 }, + [165] = { 52.4, 61, 8, 300 }, + [166] = { 49.4, 61, 8, 300 }, + [167] = { 41.2, 60.9, 8, 300 }, + [168] = { 53.4, 60.9, 8, 300 }, + [169] = { 51.1, 60.8, 8, 300 }, + [170] = { 40.4, 60.6, 8, 300 }, + [171] = { 56.9, 60.5, 8, 300 }, + [172] = { 48.2, 60.4, 8, 300 }, + [173] = { 60, 60.3, 8, 300 }, + [174] = { 55.3, 60.3, 8, 300 }, + [175] = { 45.3, 59.8, 8, 300 }, + [176] = { 57.7, 59.6, 8, 300 }, + [177] = { 44, 59.5, 8, 300 }, + [178] = { 48.6, 58.9, 8, 300 }, + [179] = { 47.4, 58.8, 8, 300 }, + [180] = { 54.2, 58.7, 8, 300 }, + [181] = { 46.5, 58.5, 8, 300 }, + [182] = { 45.4, 58, 8, 300 }, + [183] = { 53.1, 57.6, 8, 300 }, + [184] = { 48.2, 57.4, 8, 300 }, + [185] = { 45.4, 56.9, 8, 300 }, + [186] = { 46.1, 56, 8, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "47-48", + }, + [5997] = { + ["coords"] = { + [1] = { 55.8, 9.9, 4, 300 }, + [2] = { 70.2, 9, 4, 300 }, + [3] = { 68.4, 8.1, 4, 300 }, + [4] = { 56.2, 7.8, 4, 300 }, + [5] = { 64.1, 6.5, 4, 300 }, + [6] = { 38.7, 76.2, 8, 300 }, + [7] = { 59.8, 75, 8, 300 }, + [8] = { 57.1, 73.7, 8, 300 }, + [9] = { 39.2, 73.3, 8, 300 }, + [10] = { 61.7, 72.9, 8, 300 }, + [11] = { 50.8, 71.4, 8, 300 }, + [12] = { 58, 71.2, 8, 300 }, + [13] = { 57.3, 69.9, 8, 300 }, + [14] = { 48.7, 68.7, 8, 300 }, + [15] = { 60.1, 67.2, 8, 300 }, + [16] = { 50, 66.8, 8, 300 }, + [17] = { 47, 66.5, 8, 300 }, + [18] = { 61.2, 66.2, 8, 300 }, + [19] = { 60.2, 64.6, 8, 300 }, + [20] = { 55.2, 64.2, 8, 300 }, + [21] = { 55.5, 61.6, 8, 300 }, + [22] = { 54.8, 61.4, 8, 300 }, + [23] = { 47.3, 61.3, 8, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "47-48", + }, + [5998] = { + ["coords"] = { + [1] = { 57.7, 13.1, 4, 300 }, + [2] = { 70.1, 10.9, 4, 300 }, + [3] = { 69.5, 10.7, 4, 300 }, + [4] = { 67.1, 8.7, 4, 300 }, + [5] = { 65.4, 7.9, 4, 300 }, + [6] = { 62.4, 7.7, 4, 300 }, + [7] = { 56.9, 6.6, 4, 300 }, + [8] = { 59.6, 77.8, 8, 300 }, + [9] = { 58.8, 77.5, 8, 300 }, + [10] = { 61.9, 74.8, 8, 300 }, + [11] = { 55.3, 74.6, 8, 300 }, + [12] = { 52.8, 73.4, 8, 300 }, + [13] = { 48.3, 73, 8, 300 }, + [14] = { 61.7, 71.5, 8, 300 }, + [15] = { 40.3, 71.5, 8, 300 }, + [16] = { 47, 70.5, 8, 300 }, + [17] = { 61.5, 69.2, 8, 300 }, + [18] = { 44.8, 67.6, 8, 300 }, + [19] = { 39.4, 67.2, 8, 300 }, + [20] = { 39.3, 66.3, 8, 300 }, + [21] = { 44.2, 65.5, 8, 300 }, + [22] = { 54.7, 63.8, 8, 300 }, + [23] = { 56.1, 63, 8, 300 }, + [24] = { 46.9, 62.7, 8, 300 }, + [25] = { 45.9, 61.1, 8, 300 }, + [26] = { 43.3, 61, 8, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "46-48", + }, + [5999] = { + ["coords"] = { + [1] = { 65.6, 26.7, 4, 300 }, + [2] = { 64.4, 26.2, 4, 300 }, + [3] = { 63.8, 24.8, 4, 300 }, + [4] = { 63, 24.2, 4, 300 }, + [5] = { 66.8, 23.2, 4, 300 }, + [6] = { 61.9, 23.2, 4, 300 }, + [7] = { 61.4, 23, 4, 300 }, + [8] = { 61.3, 22.9, 4, 300 }, + [9] = { 61.8, 22.4, 4, 300 }, + [10] = { 61.6, 22.3, 4, 300 }, + [11] = { 60.4, 22.3, 4, 300 }, + [12] = { 62.4, 22.1, 4, 300 }, + [13] = { 61.2, 22, 4, 300 }, + [14] = { 61.7, 21.9, 4, 300 }, + [15] = { 61.2, 21.8, 4, 300 }, + [16] = { 60.8, 21.4, 4, 300 }, + [17] = { 64, 20.7, 4, 300 }, + [18] = { 60.7, 20.5, 4, 300 }, + [19] = { 64.3, 20.4, 4, 300 }, + [20] = { 60.7, 20.4, 4, 300 }, + [21] = { 67.7, 20.3, 4, 300 }, + [22] = { 67.1, 20.3, 4, 300 }, + [23] = { 65.9, 20.2, 4, 300 }, + [24] = { 62.6, 20.2, 4, 300 }, + [25] = { 61.9, 20.2, 4, 300 }, + [26] = { 61.1, 20.1, 4, 300 }, + [27] = { 62.9, 19.7, 4, 300 }, + [28] = { 60.2, 19.6, 4, 300 }, + [29] = { 63.8, 19.6, 4, 300 }, + [30] = { 64.5, 19.5, 4, 300 }, + [31] = { 62.5, 19.5, 4, 300 }, + [32] = { 60.8, 19.5, 4, 300 }, + [33] = { 60.9, 19.4, 4, 300 }, + [34] = { 65.3, 19.1, 4, 300 }, + [35] = { 63.7, 19, 4, 300 }, + [36] = { 61.8, 18.8, 4, 300 }, + [37] = { 60.2, 18.5, 4, 300 }, + [38] = { 64.2, 18.4, 4, 300 }, + [39] = { 65.6, 18.3, 4, 300 }, + [40] = { 63.8, 18.3, 4, 300 }, + [41] = { 60.6, 18.2, 4, 300 }, + [42] = { 68, 18.1, 4, 300 }, + [43] = { 62.2, 17.5, 4, 300 }, + [44] = { 61.2, 17.5, 4, 300 }, + [45] = { 61, 17.1, 4, 300 }, + [46] = { 67.6, 16.9, 4, 300 }, + [47] = { 60.4, 16.7, 4, 300 }, + [48] = { 66, 15.8, 4, 300 }, + [49] = { 60.9, 15.5, 4, 300 }, + [50] = { 60.2, 15.4, 4, 300 }, + [51] = { 62.1, 15.2, 4, 300 }, + [52] = { 65.2, 14.8, 4, 300 }, + [53] = { 66, 14.5, 4, 300 }, + [54] = { 60, 14.2, 4, 300 }, + [55] = { 66.8, 13.9, 4, 300 }, + [56] = { 61, 13.8, 4, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "49-50", + }, + [6000] = { + ["coords"] = { + [1] = { 62.1, 23.3, 4, 300 }, + [2] = { 66, 21.5, 4, 300 }, + [3] = { 61, 17.7, 4, 300 }, + [4] = { 67.7, 16.2, 4, 300 }, + [5] = { 60.2, 14.8, 4, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "49-51", + }, + [6001] = { + ["coords"] = { + [1] = { 65.8, 24.6, 4, 300 }, + [2] = { 65.8, 23.3, 4, 300 }, + [3] = { 64, 21.3, 4, 300 }, + [4] = { 66.9, 16.1, 4, 300 }, + [5] = { 64.6, 14.1, 4, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "49-51", + }, + [6002] = { + ["coords"] = { + [1] = { 64.7, 20.4, 4, 300 }, + [2] = { 67.2, 15.8, 4, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "49-51", + }, + [6003] = { + ["coords"] = { + [1] = { 66.6, 22.3, 4, 300 }, + [2] = { 63.7, 21.6, 4, 300 }, + [3] = { 65.8, 21.2, 4, 300 }, + [4] = { 65, 20.2, 4, 300 }, + [5] = { 64.6, 18.2, 4, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50-51", + }, + [6004] = { + ["coords"] = { + [1] = { 62.9, 48.5, 4, 300 }, + [2] = { 64.1, 48.3, 4, 300 }, + [3] = { 64.6, 47.6, 4, 300 }, + [4] = { 64.1, 47.4, 4, 300 }, + [5] = { 63.2, 47.1, 4, 300 }, + [6] = { 64.6, 46.9, 4, 300 }, + [7] = { 64.1, 46.8, 4, 300 }, + [8] = { 64.3, 46.6, 4, 300 }, + [9] = { 63.1, 45.7, 4, 300 }, + [10] = { 64.1, 45.7, 4, 300 }, + [11] = { 63.2, 44.5, 4, 300 }, + [12] = { 63.7, 44.1, 4, 300 }, + [13] = { 62.8, 42.6, 4, 300 }, + [14] = { 63.9, 42.3, 4, 300 }, + [15] = { 61.8, 42.1, 4, 300 }, + [16] = { 62.6, 41.4, 4, 300 }, + [17] = { 62.9, 41.3, 4, 300 }, + [18] = { 61.9, 41.1, 4, 300 }, + [19] = { 63.9, 40.9, 4, 300 }, + [20] = { 62.6, 40.8, 4, 300 }, + [21] = { 62.9, 40.7, 4, 300 }, + [22] = { 62, 39.7, 4, 300 }, + [23] = { 63.8, 39.5, 4, 300 }, + [24] = { 63.2, 39.2, 4, 300 }, + [25] = { 65, 35, 4, 300 }, + [26] = { 64, 35, 4, 300 }, + [27] = { 66, 34.5, 4, 300 }, + [28] = { 65.1, 34, 4, 300 }, + [29] = { 64.3, 33.8, 4, 300 }, + [30] = { 64.8, 33.7, 4, 300 }, + [31] = { 65.8, 33.7, 4, 300 }, + [32] = { 65.1, 33.3, 4, 300 }, + [33] = { 64.4, 33.2, 4, 300 }, + [34] = { 65, 33, 4, 300 }, + [35] = { 64.7, 33, 4, 300 }, + [36] = { 64.9, 32.6, 4, 300 }, + [37] = { 63.9, 32.1, 4, 300 }, + [38] = { 66.7, 31.9, 4, 300 }, + [39] = { 66.7, 31.7, 4, 300 }, + [40] = { 66, 31.7, 4, 300 }, + [41] = { 67.8, 31.6, 4, 300 }, + [42] = { 66.6, 31.6, 4, 300 }, + [43] = { 67.1, 31.3, 4, 300 }, + [44] = { 68.7, 31.2, 4, 300 }, + [45] = { 68.2, 31.1, 4, 300 }, + [46] = { 66.6, 31.1, 4, 300 }, + [47] = { 68.8, 31.1, 4, 300 }, + [48] = { 69.3, 31.1, 4, 300 }, + [49] = { 69.5, 31, 4, 300 }, + [50] = { 65.9, 30.9, 4, 300 }, + [51] = { 64.7, 30.9, 4, 300 }, + [52] = { 66.5, 30.6, 4, 300 }, + [53] = { 65.9, 30.3, 4, 300 }, + [54] = { 68.1, 30.3, 4, 300 }, + [55] = { 63.8, 30.1, 4, 300 }, + [56] = { 66, 30.1, 4, 300 }, + [57] = { 67.3, 29.9, 4, 300 }, + [58] = { 67.6, 29.8, 4, 300 }, + [59] = { 67.1, 29.5, 4, 300 }, + [60] = { 67.1, 29.3, 4, 300 }, + [61] = { 67.4, 29.1, 4, 300 }, + }, + ["lvl"] = "51-52", + }, + [6005] = { + ["coords"] = { + [1] = { 62.9, 48.5, 4, 300 }, + [2] = { 64.1, 48.3, 4, 300 }, + [3] = { 64.6, 47.6, 4, 300 }, + [4] = { 64.1, 47.4, 4, 300 }, + [5] = { 63.2, 47.1, 4, 300 }, + [6] = { 64.6, 46.9, 4, 300 }, + [7] = { 64.1, 46.8, 4, 300 }, + [8] = { 64.3, 46.6, 4, 300 }, + [9] = { 63.1, 45.7, 4, 300 }, + [10] = { 64.1, 45.7, 4, 300 }, + [11] = { 63.2, 44.5, 4, 300 }, + [12] = { 63.7, 44.1, 4, 300 }, + [13] = { 62.8, 42.6, 4, 300 }, + [14] = { 63.9, 42.3, 4, 300 }, + [15] = { 61.8, 42.1, 4, 300 }, + [16] = { 62.6, 41.4, 4, 300 }, + [17] = { 62.9, 41.3, 4, 300 }, + [18] = { 61.9, 41.1, 4, 300 }, + [19] = { 63.9, 40.9, 4, 300 }, + [20] = { 62.6, 40.8, 4, 300 }, + [21] = { 62.9, 40.7, 4, 300 }, + [22] = { 62, 39.7, 4, 300 }, + [23] = { 63.8, 39.5, 4, 300 }, + [24] = { 63.2, 39.2, 4, 300 }, + [25] = { 65, 35, 4, 300 }, + [26] = { 64, 35, 4, 300 }, + [27] = { 66, 34.5, 4, 300 }, + [28] = { 65.1, 34, 4, 300 }, + [29] = { 64.3, 33.8, 4, 300 }, + [30] = { 64.8, 33.7, 4, 300 }, + [31] = { 65.8, 33.7, 4, 300 }, + [32] = { 65.1, 33.3, 4, 300 }, + [33] = { 64.4, 33.2, 4, 300 }, + [34] = { 65, 33, 4, 300 }, + [35] = { 64.7, 33, 4, 300 }, + [36] = { 64.9, 32.6, 4, 300 }, + [37] = { 63.9, 32.1, 4, 300 }, + [38] = { 66.7, 31.9, 4, 300 }, + [39] = { 66.7, 31.7, 4, 300 }, + [40] = { 66, 31.7, 4, 300 }, + [41] = { 67.8, 31.6, 4, 300 }, + [42] = { 66.6, 31.6, 4, 300 }, + [43] = { 67.1, 31.3, 4, 300 }, + [44] = { 68.7, 31.2, 4, 300 }, + [45] = { 68.2, 31.1, 4, 300 }, + [46] = { 66.6, 31.1, 4, 300 }, + [47] = { 68.8, 31.1, 4, 300 }, + [48] = { 69.3, 31.1, 4, 300 }, + [49] = { 69.5, 31, 4, 300 }, + [50] = { 65.9, 30.9, 4, 300 }, + [51] = { 64.7, 30.9, 4, 300 }, + [52] = { 66.5, 30.6, 4, 300 }, + [53] = { 65.9, 30.3, 4, 300 }, + [54] = { 68.1, 30.3, 4, 300 }, + [55] = { 63.8, 30.1, 4, 300 }, + [56] = { 66, 30.1, 4, 300 }, + [57] = { 67.3, 29.9, 4, 300 }, + [58] = { 67.6, 29.8, 4, 300 }, + [59] = { 67.1, 29.5, 4, 300 }, + [60] = { 67.1, 29.3, 4, 300 }, + [61] = { 67.4, 29.1, 4, 300 }, + }, + ["lvl"] = "52-53", + }, + [6006] = { + ["coords"] = { + [1] = { 62.9, 48.5, 4, 300 }, + [2] = { 64.1, 48.3, 4, 300 }, + [3] = { 64.6, 47.6, 4, 300 }, + [4] = { 64.1, 47.4, 4, 300 }, + [5] = { 63.2, 47.1, 4, 300 }, + [6] = { 64.6, 46.9, 4, 300 }, + [7] = { 64.1, 46.8, 4, 300 }, + [8] = { 64.3, 46.6, 4, 300 }, + [9] = { 63.1, 45.7, 4, 300 }, + [10] = { 64.1, 45.7, 4, 300 }, + [11] = { 63.2, 44.5, 4, 300 }, + [12] = { 63.7, 44.1, 4, 300 }, + [13] = { 62.8, 42.6, 4, 300 }, + [14] = { 63.9, 42.3, 4, 300 }, + [15] = { 61.8, 42.1, 4, 300 }, + [16] = { 62.6, 41.4, 4, 300 }, + [17] = { 62.9, 41.3, 4, 300 }, + [18] = { 61.9, 41.1, 4, 300 }, + [19] = { 63.9, 40.9, 4, 300 }, + [20] = { 62.6, 40.8, 4, 300 }, + [21] = { 62.9, 40.7, 4, 300 }, + [22] = { 62, 39.7, 4, 300 }, + [23] = { 63.8, 39.5, 4, 300 }, + [24] = { 63.2, 39.2, 4, 300 }, + [25] = { 65, 35, 4, 300 }, + [26] = { 64, 35, 4, 300 }, + [27] = { 66, 34.5, 4, 300 }, + [28] = { 65.1, 34, 4, 300 }, + [29] = { 64.3, 33.8, 4, 300 }, + [30] = { 64.8, 33.7, 4, 300 }, + [31] = { 65.8, 33.7, 4, 300 }, + [32] = { 65.1, 33.3, 4, 300 }, + [33] = { 64.4, 33.2, 4, 300 }, + [34] = { 65, 33, 4, 300 }, + [35] = { 64.7, 33, 4, 300 }, + [36] = { 64.9, 32.6, 4, 300 }, + [37] = { 63.9, 32.1, 4, 300 }, + [38] = { 66.7, 31.9, 4, 300 }, + [39] = { 66.7, 31.7, 4, 300 }, + [40] = { 66, 31.7, 4, 300 }, + [41] = { 67.8, 31.6, 4, 300 }, + [42] = { 66.6, 31.6, 4, 300 }, + [43] = { 67.1, 31.3, 4, 300 }, + [44] = { 68.7, 31.2, 4, 300 }, + [45] = { 68.2, 31.1, 4, 300 }, + [46] = { 66.6, 31.1, 4, 300 }, + [47] = { 68.8, 31.1, 4, 300 }, + [48] = { 69.3, 31.1, 4, 300 }, + [49] = { 69.5, 31, 4, 300 }, + [50] = { 65.9, 30.9, 4, 300 }, + [51] = { 64.7, 30.9, 4, 300 }, + [52] = { 66.5, 30.6, 4, 300 }, + [53] = { 65.9, 30.3, 4, 300 }, + [54] = { 68.1, 30.3, 4, 300 }, + [55] = { 63.8, 30.1, 4, 300 }, + [56] = { 66, 30.1, 4, 300 }, + [57] = { 67.3, 29.9, 4, 300 }, + [58] = { 67.6, 29.8, 4, 300 }, + [59] = { 67.1, 29.5, 4, 300 }, + [60] = { 67.1, 29.3, 4, 300 }, + [61] = { 67.4, 29.1, 4, 300 }, + }, + ["lvl"] = "52-53", + }, + [6007] = { + ["coords"] = { + [1] = { 43.1, 42.4, 4, 300 }, + [2] = { 43.9, 42.3, 4, 300 }, + [3] = { 42.3, 42, 4, 300 }, + [4] = { 42.9, 41.8, 4, 300 }, + [5] = { 44.2, 41.3, 4, 300 }, + [6] = { 43.1, 41.2, 4, 300 }, + [7] = { 42.1, 39.7, 4, 300 }, + [8] = { 43.1, 39.6, 4, 300 }, + [9] = { 44, 39.6, 4, 300 }, + [10] = { 41.4, 38.8, 4, 300 }, + [11] = { 39.9, 33.4, 4, 300 }, + [12] = { 39.1, 33.1, 4, 300 }, + [13] = { 40.7, 32.7, 4, 300 }, + [14] = { 39.1, 32.4, 4, 300 }, + [15] = { 38.9, 32.4, 4, 300 }, + [16] = { 39.3, 31.7, 4, 300 }, + [17] = { 38.6, 31.7, 4, 300 }, + [18] = { 39.9, 31.5, 4, 300 }, + [19] = { 39.4, 31.2, 4, 300 }, + [20] = { 38.9, 31.2, 4, 300 }, + [21] = { 38.3, 31.1, 4, 300 }, + [22] = { 40.7, 30.7, 4, 300 }, + [23] = { 38.5, 30.6, 4, 300 }, + [24] = { 39.4, 30.5, 4, 300 }, + }, + ["lvl"] = "53-54", + }, + [6008] = { + ["coords"] = { + [1] = { 43.1, 42.4, 4, 300 }, + [2] = { 43.9, 42.3, 4, 300 }, + [3] = { 42.3, 42, 4, 300 }, + [4] = { 42.9, 41.8, 4, 300 }, + [5] = { 44.2, 41.3, 4, 300 }, + [6] = { 43.1, 41.2, 4, 300 }, + [7] = { 42.1, 39.7, 4, 300 }, + [8] = { 43.1, 39.6, 4, 300 }, + [9] = { 44, 39.6, 4, 300 }, + [10] = { 41.4, 38.8, 4, 300 }, + [11] = { 39.9, 33.4, 4, 300 }, + [12] = { 39.1, 33.1, 4, 300 }, + [13] = { 40.7, 32.7, 4, 300 }, + [14] = { 39.1, 32.4, 4, 300 }, + [15] = { 38.9, 32.4, 4, 300 }, + [16] = { 39.3, 31.7, 4, 300 }, + [17] = { 38.6, 31.7, 4, 300 }, + [18] = { 39.9, 31.5, 4, 300 }, + [19] = { 39.4, 31.2, 4, 300 }, + [20] = { 38.9, 31.2, 4, 300 }, + [21] = { 38.3, 31.1, 4, 300 }, + [22] = { 40.7, 30.7, 4, 300 }, + [23] = { 38.5, 30.6, 4, 300 }, + [24] = { 39.4, 30.5, 4, 300 }, + }, + ["lvl"] = "53-54", + }, + [6009] = { + ["coords"] = { + [1] = { 43.1, 42.4, 4, 300 }, + [2] = { 43.9, 42.3, 4, 300 }, + [3] = { 42.3, 42, 4, 300 }, + [4] = { 42.9, 41.8, 4, 300 }, + [5] = { 44.2, 41.3, 4, 300 }, + [6] = { 43.1, 41.2, 4, 300 }, + [7] = { 42.1, 39.7, 4, 300 }, + [8] = { 43.1, 39.6, 4, 300 }, + [9] = { 44, 39.6, 4, 300 }, + [10] = { 41.4, 38.8, 4, 300 }, + [11] = { 39.9, 33.4, 4, 300 }, + [12] = { 39.1, 33.1, 4, 300 }, + [13] = { 40.7, 32.7, 4, 300 }, + [14] = { 39.1, 32.4, 4, 300 }, + [15] = { 38.9, 32.4, 4, 300 }, + [16] = { 39.3, 31.7, 4, 300 }, + [17] = { 38.6, 31.7, 4, 300 }, + [18] = { 39.9, 31.5, 4, 300 }, + [19] = { 39.4, 31.2, 4, 300 }, + [20] = { 38.9, 31.2, 4, 300 }, + [21] = { 38.3, 31.1, 4, 300 }, + [22] = { 40.7, 30.7, 4, 300 }, + [23] = { 38.5, 30.6, 4, 300 }, + [24] = { 39.4, 30.5, 4, 300 }, + }, + ["lvl"] = "54-55", + }, + [6010] = { + ["coords"] = { + [1] = { 62.5, 58.2, 4, 300 }, + [2] = { 62.1, 55.5, 4, 300 }, + [3] = { 59.7, 51.1, 4, 300 }, + [4] = { 58.2, 50.9, 4, 300 }, + [5] = { 56.1, 50.5, 4, 300 }, + }, + ["lvl"] = "54-55", + }, + [6011] = { + ["coords"] = { + [1] = { 60.2, 52.4, 4, 300 }, + [2] = { 61.8, 52.3, 4, 300 }, + [3] = { 54.9, 51.5, 4, 300 }, + [4] = { 57.7, 50.6, 4, 300 }, + [5] = { 57.9, 49.3, 4, 300 }, + }, + ["lvl"] = "54-55", + }, + [6012] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "46", + }, + [6013] = { + ["coords"] = {}, + ["lvl"] = "35-37", + }, + [6014] = { + ["coords"] = { + [1] = { 42, 10.1, 14, 300 }, + [2] = { 36, 87.7, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [6015] = { + ["coords"] = { + [1] = { 66.6, 25.7, 440, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "45", + }, + [6016] = { + ["coords"] = {}, + ["lvl"] = "54", + }, + [6017] = { + ["coords"] = {}, + ["lvl"] = "37", + }, + [6018] = { + ["coords"] = { + [1] = { 41.9, 10.1, 14, 300 }, + [2] = { 35.6, 87.8, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [6019] = { + ["coords"] = { + [1] = { 47.8, 61.8, 405, 300 }, + }, + ["lvl"] = "30", + }, + [6020] = { + ["coords"] = { + [1] = { 39.3, 77.3, 14, 300 }, + [2] = { 39.3, 75.1, 14, 300 }, + [3] = { 38.8, 74.4, 14, 300 }, + [4] = { 64.2, 55.2, 17, 300 }, + [5] = { 63.8, 54.9, 17, 300 }, + [6] = { 63.5, 54.3, 17, 300 }, + [7] = { 63.6, 53.2, 17, 300 }, + [8] = { 63.2, 52.6, 17, 300 }, + [9] = { 63.4, 52.2, 17, 300 }, + [10] = { 64.3, 50.3, 17, 300 }, + [11] = { 64.6, 49.8, 17, 300 }, + [12] = { 64.9, 49.2, 17, 300 }, + [13] = { 65.2, 48.6, 17, 300 }, + [14] = { 65.5, 48.2, 17, 300 }, + [15] = { 65.3, 47.8, 17, 300 }, + [16] = { 65.5, 47.2, 17, 300 }, + [17] = { 65.1, 45.8, 17, 300 }, + [18] = { 64.9, 42.3, 17, 300 }, + [19] = { 63.6, 40.4, 17, 300 }, + [20] = { 63.8, 39.8, 17, 300 }, + [21] = { 65.5, 37.8, 17, 300 }, + [22] = { 65.1, 37.5, 17, 300 }, + [23] = { 63.9, 37.5, 17, 300 }, + [24] = { 64.5, 37.5, 17, 300 }, + [25] = { 65.7, 37.4, 17, 300 }, + [26] = { 64.8, 37, 17, 300 }, + [27] = { 64.1, 36.9, 17, 300 }, + [28] = { 65.8, 36.3, 17, 300 }, + [29] = { 65.5, 35.9, 17, 300 }, + }, + ["lvl"] = "18-19", + }, + [6021] = { + ["coords"] = {}, + ["lvl"] = "19-20", + ["rnk"] = "1", + }, + [6022] = { + ["coords"] = {}, + ["lvl"] = "31", + }, + [6023] = { + ["coords"] = {}, + ["lvl"] = "33", + }, + [6026] = { + ["coords"] = { + [1] = { 46.1, 54.8, 8, 900 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [6027] = { + ["coords"] = { + [1] = { 54.7, 41.5, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "17", + }, + [6028] = { + ["coords"] = { + [1] = { 73.5, 60.3, 331, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [6030] = { + ["coords"] = { + [1] = { 23.7, 74.3, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "21", + }, + [6031] = { + ["coords"] = { + [1] = { 48.6, 42.5, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [6032] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "45", + }, + [6033] = { + ["coords"] = { + [1] = { 8.8, 52.5, 36, 300 }, + [2] = { 11.5, 52.3, 36, 300 }, + [3] = { 13.9, 51.1, 36, 300 }, + [4] = { 17.8, 48.6, 36, 300 }, + [5] = { 19.6, 45.6, 36, 300 }, + [6] = { 23.4, 42, 36, 300 }, + [7] = { 28.3, 34.6, 36, 300 }, + [8] = { 27.4, 31.1, 36, 300 }, + [9] = { 30.6, 27.5, 36, 300 }, + [10] = { 32.1, 24, 36, 300 }, + [11] = { 33.4, 15.5, 36, 300 }, + [12] = { 69.4, 41, 130, 300 }, + [13] = { 71.1, 40.8, 130, 300 }, + [14] = { 67, 40.7, 130, 300 }, + [15] = { 72.8, 40, 130, 300 }, + [16] = { 65.4, 39, 130, 300 }, + [17] = { 75.3, 38.4, 130, 300 }, + [18] = { 63.8, 37.2, 130, 300 }, + [19] = { 76.6, 36.3, 130, 300 }, + [20] = { 79.1, 34, 130, 300 }, + [21] = { 61.5, 30.6, 130, 300 }, + [22] = { 82.3, 29, 130, 300 }, + [23] = { 60, 28.5, 130, 300 }, + [24] = { 61.7, 28.4, 130, 300 }, + [25] = { 81.8, 26.7, 130, 300 }, + [26] = { 60.1, 25.2, 130, 300 }, + [27] = { 60.6, 22.6, 130, 300 }, + [28] = { 62.7, 17.4, 130, 300 }, + [29] = { 79.3, 17.3, 130, 300 }, + [30] = { 66.6, 16.2, 130, 300 }, + [31] = { 68.2, 15, 130, 300 }, + [32] = { 71.1, 14.4, 130, 300 }, + [33] = { 75.9, 14.1, 130, 300 }, + [34] = { 73.1, 12.7, 130, 300 }, + [35] = { 74.7, 12.6, 130, 300 }, + [36] = { 71.4, 11.5, 130, 300 }, + [37] = { 51.5, 88.5, 1497, 300 }, + [38] = { 58.3, 88.1, 1497, 300 }, + }, + ["lvl"] = "15-16", + }, + [6034] = { + ["coords"] = { + [1] = { 30.6, 51.6, 141, 300 }, + [2] = { 64.4, 22.2, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [6035] = { + ["coords"] = {}, + ["lvl"] = "28-29", + ["rnk"] = "1", + }, + [6036] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "62", + }, + [6046] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "10", + }, + [6047] = { + ["coords"] = {}, + ["lvl"] = "22-23", + }, + [6066] = { + ["coords"] = {}, + ["lvl"] = "50", + }, + [6067] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "10", + }, + [6068] = { + ["coords"] = { + [1] = { 75.3, 68.1, 405, 300 }, + [2] = { 75.3, 68, 405, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "35-36", + }, + [6069] = { + ["coords"] = {}, + ["lvl"] = "39-40", + }, + [6070] = { + ["coords"] = {}, + ["lvl"] = "38-39", + }, + [6071] = { + ["coords"] = { + [1] = { 54, 2.9, 17, 300 }, + [2] = { 53.9, 2.9, 17, 300 }, + [3] = { 54, 2.8, 17, 300 }, + [4] = { 53.6, 2.4, 17, 300 }, + [5] = { 53.7, 2.4, 17, 300 }, + [6] = { 53.6, 2.3, 17, 300 }, + [7] = { 53.9, 1.7, 17, 300 }, + [8] = { 53.9, 1.6, 17, 300 }, + [9] = { 54, 1.5, 17, 300 }, + [10] = { 54.5, 0.8, 17, 300 }, + [11] = { 54.5, 0.7, 17, 300 }, + [12] = { 54.4, 0.7, 17, 300 }, + [13] = { 78.9, 84.7, 331, 300 }, + [14] = { 78.8, 84.7, 331, 300 }, + [15] = { 78.8, 84.6, 331, 300 }, + [16] = { 78.9, 84.6, 331, 300 }, + [17] = { 78.2, 83.9, 331, 300 }, + [18] = { 78.4, 83.8, 331, 300 }, + [19] = { 78.3, 83.8, 331, 300 }, + [20] = { 78.3, 83.7, 331, 300 }, + [21] = { 78.7, 82.5, 331, 300 }, + [22] = { 78.8, 82.4, 331, 300 }, + [23] = { 78.8, 82.3, 331, 300 }, + [24] = { 79.8, 81, 331, 300 }, + [25] = { 79.7, 81, 331, 300 }, + [26] = { 79.7, 80.9, 331, 300 }, + [27] = { 78.8, 80, 331, 300 }, + [28] = { 78.9, 80, 331, 300 }, + [29] = { 78.8, 79.9, 331, 300 }, + [30] = { 78.9, 79.8, 331, 300 }, + [31] = { 90, 76.6, 331, 300 }, + [32] = { 90.1, 76.5, 331, 300 }, + [33] = { 90, 76.5, 331, 300 }, + [34] = { 90.1, 76.4, 331, 300 }, + }, + ["lvl"] = "29-30", + }, + [6072] = { + ["coords"] = { + [1] = { 54, 2.9, 17, 275 }, + [2] = { 79, 84.7, 331, 275 }, + }, + ["lvl"] = "34", + }, + [6073] = { + ["coords"] = { + [1] = { 53.5, 3.1, 17, 300 }, + [2] = { 53.7, 2.9, 17, 300 }, + [3] = { 53.5, 2.8, 17, 300 }, + [4] = { 53.6, 2.7, 17, 300 }, + [5] = { 53.7, 2.5, 17, 300 }, + [6] = { 53.3, 2.5, 17, 300 }, + [7] = { 53.8, 2.4, 17, 300 }, + [8] = { 53.5, 2.4, 17, 300 }, + [9] = { 53.3, 2.2, 17, 300 }, + [10] = { 53.6, 2, 17, 300 }, + [11] = { 54.3, 1.5, 17, 300 }, + [12] = { 54.3, 1.5, 17, 275 }, + [13] = { 54, 1.4, 17, 300 }, + [14] = { 54.6, 1.4, 17, 300 }, + [15] = { 54, 1.3, 17, 300 }, + [16] = { 54.2, 1.2, 17, 300 }, + [17] = { 54.3, 1.1, 17, 300 }, + [18] = { 54.1, 1, 17, 300 }, + [19] = { 54.5, 0.8, 17, 300 }, + [20] = { 54.4, 0.7, 17, 300 }, + [21] = { 78, 85.1, 331, 300 }, + [22] = { 78.4, 84.8, 331, 300 }, + [23] = { 78, 84.6, 331, 300 }, + [24] = { 78.1, 84.4, 331, 300 }, + [25] = { 78.3, 84, 331, 300 }, + [26] = { 77.7, 84, 331, 300 }, + [27] = { 78.5, 83.9, 331, 300 }, + [28] = { 78, 83.9, 331, 300 }, + [29] = { 77.7, 83.5, 331, 300 }, + [30] = { 78.1, 83.1, 331, 300 }, + [31] = { 79.4, 82.3, 331, 300 }, + [32] = { 79.4, 82.2, 331, 275 }, + [33] = { 79, 82.1, 331, 300 }, + [34] = { 80, 82, 331, 300 }, + [35] = { 78.9, 81.9, 331, 300 }, + [36] = { 79.2, 81.7, 331, 300 }, + [37] = { 79.5, 81.6, 331, 300 }, + [38] = { 79.1, 81.4, 331, 300 }, + [39] = { 79.8, 81.1, 331, 300 }, + [40] = { 79.7, 80.9, 331, 300 }, + [41] = { 81.1, 79.8, 331, 300 }, + [42] = { 87.1, 79.3, 331, 300 }, + [43] = { 82.5, 79.3, 331, 300 }, + [44] = { 83, 78.6, 331, 300 }, + [45] = { 88.2, 78.5, 331, 300 }, + [46] = { 85.9, 78.5, 331, 300 }, + [47] = { 84.8, 77.9, 331, 300 }, + [48] = { 85.3, 77.6, 331, 300 }, + [49] = { 82.1, 77, 331, 300 }, + [50] = { 84.6, 75.1, 331, 300 }, + [51] = { 84.4, 73.4, 331, 300 }, + [52] = { 83, 71.7, 331, 300 }, + [53] = { 84.1, 71.6, 331, 300 }, + [54] = { 84.6, 71.1, 331, 300 }, + [55] = { 82.5, 71, 331, 300 }, + [56] = { 81.3, 70.8, 331, 300 }, + [57] = { 83.4, 70.7, 331, 300 }, + [58] = { 81.8, 70.1, 331, 300 }, + [59] = { 80.7, 70.1, 331, 300 }, + [60] = { 84, 70, 331, 300 }, + [61] = { 83.2, 69.9, 331, 300 }, + [62] = { 81.5, 69.2, 331, 300 }, + [63] = { 82.5, 69, 331, 300 }, + [64] = { 83.9, 68.5, 331, 300 }, + [65] = { 80.6, 68.2, 331, 300 }, + [66] = { 83, 68.1, 331, 300 }, + [67] = { 81.9, 67.8, 331, 300 }, + [68] = { 83.5, 67.6, 331, 300 }, + [69] = { 82.4, 67.4, 331, 300 }, + [70] = { 82.9, 66.6, 331, 300 }, + [71] = { 81.7, 66.5, 331, 300 }, + [72] = { 80.7, 66.5, 331, 300 }, + [73] = { 81.2, 65.7, 331, 300 }, + [74] = { 80.6, 64.9, 331, 300 }, + }, + ["lvl"] = "29-30", + }, + [6074] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [6075] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [6076] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [6086] = { + ["coords"] = { + [1] = { 37.5, 47.4, 148, 275 }, + [2] = { 36.5, 46, 148, 275 }, + [3] = { 39.4, 44.9, 148, 275 }, + [4] = { 39.3, 44.9, 148, 275 }, + [5] = { 39.6, 44.9, 148, 275 }, + [6] = { 37.6, 44.2, 148, 275 }, + [7] = { 36.4, 43.9, 148, 275 }, + [8] = { 37.4, 43.8, 148, 275 }, + [9] = { 38.9, 43.7, 148, 275 }, + [10] = { 36.4, 43.7, 148, 275 }, + [11] = { 36.3, 43.7, 148, 275 }, + [12] = { 32.5, 43.6, 148, 275 }, + [13] = { 32.4, 43.5, 148, 275 }, + [14] = { 38.7, 43.1, 148, 275 }, + [15] = { 39.2, 41.8, 148, 275 }, + [16] = { 37.7, 41.7, 148, 275 }, + [17] = { 38, 41.5, 148, 275 }, + [18] = { 31.3, 41.2, 148, 275 }, + [19] = { 33.2, 40.3, 148, 275 }, + [20] = { 33.1, 40.2, 148, 275 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [6087] = { + ["coords"] = { + [1] = { 50, 66.9, 331, 300 }, + [2] = { 50.3, 66.9, 331, 300 }, + [3] = { 50, 66, 331, 300 }, + [4] = { 50.3, 66, 331, 300 }, + [5] = { 37.2, 53.1, 331, 300 }, + [6] = { 37.3, 53, 331, 300 }, + [7] = { 37.2, 52.7, 331, 300 }, + [8] = { 36.1, 52.6, 331, 300 }, + [9] = { 35.9, 50.9, 331, 300 }, + [10] = { 35.7, 50.6, 331, 300 }, + [11] = { 36.7, 50.4, 331, 300 }, + [12] = { 35, 49.9, 331, 300 }, + [13] = { 34.2, 48.3, 331, 300 }, + [14] = { 34.7, 48.2, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [6089] = { + ["coords"] = { + [1] = { 74.3, 37.3, 1519, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [6090] = { + ["coords"] = { + [1] = { 73.8, 36.3, 1519, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [6091] = { + ["coords"] = { + [1] = { 59.6, 40.7, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "9", + }, + [6092] = { + ["coords"] = {}, + ["lvl"] = "14", + }, + [6093] = { + ["coords"] = { + [1] = { 89.3, 79, 12, 270 }, + }, + ["lvl"] = "11", + }, + [6094] = { + ["coords"] = { + [1] = { 55.3, 56.8, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "22", + }, + [6106] = { + ["coords"] = {}, + ["lvl"] = "22", + }, + [6107] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [6108] = { + ["coords"] = {}, + ["lvl"] = "38", + }, + [6109] = { + ["coords"] = { + [1] = { 56.8, 78.7, 16, 259200 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [6110] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "24", + }, + [6111] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "37", + }, + [6112] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [6113] = { + ["coords"] = { + [1] = { 27.8, 58, 1, 747 }, + }, + ["lvl"] = "11", + }, + [6114] = { + ["coords"] = { + [1] = { 70.8, 90.3, 1537, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [6115] = { + ["coords"] = { + [1] = { 53.5, 3.1, 17, 300 }, + [2] = { 53.7, 2.9, 17, 300 }, + [3] = { 53.5, 2.8, 17, 300 }, + [4] = { 53.6, 2.7, 17, 300 }, + [5] = { 53.7, 2.5, 17, 300 }, + [6] = { 53.3, 2.5, 17, 300 }, + [7] = { 53.8, 2.4, 17, 300 }, + [8] = { 53.5, 2.4, 17, 300 }, + [9] = { 53.3, 2.2, 17, 300 }, + [10] = { 53.6, 2, 17, 300 }, + [11] = { 54.3, 1.5, 17, 300 }, + [12] = { 54.3, 1.5, 17, 275 }, + [13] = { 54, 1.4, 17, 300 }, + [14] = { 54.6, 1.4, 17, 300 }, + [15] = { 54, 1.3, 17, 300 }, + [16] = { 54.2, 1.2, 17, 300 }, + [17] = { 54.3, 1.1, 17, 300 }, + [18] = { 54.1, 1, 17, 300 }, + [19] = { 54.5, 0.8, 17, 300 }, + [20] = { 54.4, 0.7, 17, 300 }, + [21] = { 78, 85.1, 331, 300 }, + [22] = { 78.4, 84.8, 331, 300 }, + [23] = { 78, 84.6, 331, 300 }, + [24] = { 78.1, 84.4, 331, 300 }, + [25] = { 78.3, 84, 331, 300 }, + [26] = { 77.7, 84, 331, 300 }, + [27] = { 78.5, 83.9, 331, 300 }, + [28] = { 78, 83.9, 331, 300 }, + [29] = { 77.7, 83.5, 331, 300 }, + [30] = { 78.1, 83.1, 331, 300 }, + [31] = { 79.4, 82.3, 331, 300 }, + [32] = { 79.4, 82.2, 331, 275 }, + [33] = { 79, 82.1, 331, 300 }, + [34] = { 80, 82, 331, 300 }, + [35] = { 78.9, 81.9, 331, 300 }, + [36] = { 79.2, 81.7, 331, 300 }, + [37] = { 79.5, 81.6, 331, 300 }, + [38] = { 79.1, 81.4, 331, 300 }, + [39] = { 79.8, 81.1, 331, 300 }, + [40] = { 79.7, 80.9, 331, 300 }, + [41] = { 81.1, 79.8, 331, 300 }, + [42] = { 87.1, 79.3, 331, 300 }, + [43] = { 82.5, 79.3, 331, 300 }, + [44] = { 83, 78.6, 331, 300 }, + [45] = { 88.2, 78.5, 331, 300 }, + [46] = { 85.9, 78.5, 331, 300 }, + [47] = { 84.8, 77.9, 331, 300 }, + [48] = { 85.3, 77.6, 331, 300 }, + [49] = { 82.1, 77, 331, 300 }, + [50] = { 84.6, 75.1, 331, 300 }, + [51] = { 84.4, 73.4, 331, 300 }, + [52] = { 83, 71.7, 331, 300 }, + [53] = { 84.1, 71.6, 331, 300 }, + [54] = { 84.6, 71.1, 331, 300 }, + [55] = { 82.5, 71, 331, 300 }, + [56] = { 81.3, 70.8, 331, 300 }, + [57] = { 83.4, 70.7, 331, 300 }, + [58] = { 81.8, 70.1, 331, 300 }, + [59] = { 80.7, 70.1, 331, 300 }, + [60] = { 84, 70, 331, 300 }, + [61] = { 83.2, 69.9, 331, 300 }, + [62] = { 81.5, 69.2, 331, 300 }, + [63] = { 82.5, 69, 331, 300 }, + [64] = { 83.9, 68.5, 331, 300 }, + [65] = { 80.6, 68.2, 331, 300 }, + [66] = { 83, 68.1, 331, 300 }, + [67] = { 81.9, 67.8, 331, 300 }, + [68] = { 83.5, 67.6, 331, 300 }, + [69] = { 82.4, 67.4, 331, 300 }, + [70] = { 82.9, 66.6, 331, 300 }, + [71] = { 81.7, 66.5, 331, 300 }, + [72] = { 80.7, 66.5, 331, 300 }, + [73] = { 81.2, 65.7, 331, 300 }, + [74] = { 80.6, 64.9, 331, 300 }, + }, + ["lvl"] = "29-30", + }, + [6116] = { + ["coords"] = { + [1] = { 15.9, 73.6, 16, 333 }, + [2] = { 14.7, 73.5, 16, 333 }, + [3] = { 13.5, 73.2, 16, 333 }, + [4] = { 16.6, 72.7, 16, 333 }, + [5] = { 14.6, 72.6, 16, 333 }, + [6] = { 14.5, 72.3, 16, 333 }, + [7] = { 14, 71.8, 16, 333 }, + [8] = { 16.6, 71.7, 16, 333 }, + [9] = { 17.2, 70.7, 16, 333 }, + [10] = { 16.6, 70.6, 16, 333 }, + [11] = { 17.9, 69.8, 16, 333 }, + [12] = { 16.6, 69.6, 16, 333 }, + [13] = { 18, 68.8, 16, 333 }, + [14] = { 16.5, 68.8, 16, 333 }, + [15] = { 17.2, 68.7, 16, 333 }, + [16] = { 17.9, 67.8, 16, 333 }, + [17] = { 16.6, 67.8, 16, 333 }, + [18] = { 17.3, 67.6, 16, 333 }, + [19] = { 17.7, 66.8, 16, 333 }, + [20] = { 17.1, 66.6, 16, 333 }, + [21] = { 17.1, 65.9, 16, 333 }, + [22] = { 98.2, 47, 331, 333 }, + [23] = { 99.1, 46.2, 331, 333 }, + [24] = { 98.6, 45.8, 331, 333 }, + }, + ["lvl"] = "45-46", + }, + [6117] = { + ["coords"] = { + [1] = { 15.9, 73.6, 16, 333 }, + [2] = { 14.7, 73.5, 16, 333 }, + [3] = { 13.5, 73.2, 16, 333 }, + [4] = { 16.6, 72.7, 16, 333 }, + [5] = { 14.6, 72.6, 16, 333 }, + [6] = { 14.5, 72.3, 16, 333 }, + [7] = { 14, 71.8, 16, 333 }, + [8] = { 16.6, 71.7, 16, 333 }, + [9] = { 17.2, 70.7, 16, 333 }, + [10] = { 16.6, 70.6, 16, 333 }, + [11] = { 17.9, 69.8, 16, 333 }, + [12] = { 16.6, 69.6, 16, 333 }, + [13] = { 18, 68.8, 16, 333 }, + [14] = { 16.5, 68.8, 16, 333 }, + [15] = { 17.2, 68.7, 16, 333 }, + [16] = { 17.9, 67.8, 16, 333 }, + [17] = { 16.6, 67.8, 16, 333 }, + [18] = { 17.3, 67.6, 16, 333 }, + [19] = { 17.7, 66.8, 16, 333 }, + [20] = { 17.1, 66.6, 16, 333 }, + [21] = { 17.1, 65.9, 16, 333 }, + [22] = { 98.2, 47, 331, 333 }, + [23] = { 99.1, 46.2, 331, 333 }, + [24] = { 98.6, 45.8, 331, 333 }, + }, + ["lvl"] = "46-47", + }, + [6118] = { + ["coords"] = { + [1] = { 13.2, 74.2, 16, 27000 }, + [2] = { 97.9, 47.9, 331, 27000 }, + }, + ["lvl"] = "48", + ["rnk"] = "4", + }, + [6119] = { + ["coords"] = { + [1] = { 47.3, 53.8, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [6120] = { + ["coords"] = { + [1] = { 47.6, 9.3, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [6121] = { + ["coords"] = { + [1] = { 44.5, 66.3, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [6122] = { + ["coords"] = { + [1] = { 25.3, 78.6, 1519, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [6123] = { + ["coords"] = { + [1] = { 78, 62.4, 1, 270 }, + [2] = { 77.4, 62.4, 1, 270 }, + [3] = { 76.8, 62.3, 1, 270 }, + [4] = { 77.8, 62.1, 1, 270 }, + [5] = { 78, 61.9, 1, 270 }, + [6] = { 77.4, 61.3, 1, 270 }, + [7] = { 78.1, 61.2, 1, 270 }, + [8] = { 77, 60.9, 1, 270 }, + [9] = { 77.5, 60.5, 1, 270 }, + [10] = { 78.1, 60, 1, 270 }, + [11] = { 76.9, 60, 1, 270 }, + [12] = { 77.4, 59.2, 1, 270 }, + }, + ["lvl"] = "9-10", + }, + [6124] = { + ["coords"] = { + [1] = { 77.9, 62.2, 1, 270 }, + }, + ["lvl"] = "11", + }, + [6125] = { + ["coords"] = { + [1] = { 19.2, 63.9, 16, 333 }, + [2] = { 19.8, 63.8, 16, 333 }, + [3] = { 20.5, 63.8, 16, 333 }, + [4] = { 19.2, 62.8, 16, 333 }, + [5] = { 20.2, 62.2, 16, 333 }, + [6] = { 19.9, 61.9, 16, 333 }, + [7] = { 21.1, 61.9, 16, 333 }, + [8] = { 19.3, 61.8, 16, 333 }, + [9] = { 20.6, 61.3, 16, 333 }, + [10] = { 19.2, 60.9, 16, 333 }, + [11] = { 19.8, 60.8, 16, 333 }, + [12] = { 20.2, 60.6, 16, 333 }, + [13] = { 20.6, 60.5, 16, 333 }, + [14] = { 21.3, 60.4, 16, 333 }, + [15] = { 21, 60, 16, 333 }, + }, + ["lvl"] = "45-46", + }, + [6126] = { + ["coords"] = { + [1] = { 19.2, 63.9, 16, 333 }, + [2] = { 19.8, 63.8, 16, 333 }, + [3] = { 20.5, 63.8, 16, 333 }, + [4] = { 19.2, 62.8, 16, 333 }, + [5] = { 20.2, 62.2, 16, 333 }, + [6] = { 19.9, 61.9, 16, 333 }, + [7] = { 21.1, 61.9, 16, 333 }, + [8] = { 19.3, 61.8, 16, 333 }, + [9] = { 20.6, 61.3, 16, 333 }, + [10] = { 19.2, 60.9, 16, 333 }, + [11] = { 19.8, 60.8, 16, 333 }, + [12] = { 20.2, 60.6, 16, 333 }, + [13] = { 20.6, 60.5, 16, 333 }, + [14] = { 21.3, 60.4, 16, 333 }, + [15] = { 21, 60, 16, 333 }, + }, + ["lvl"] = "45-47", + }, + [6127] = { + ["coords"] = { + [1] = { 19.2, 63.9, 16, 333 }, + [2] = { 19.8, 63.8, 16, 333 }, + [3] = { 20.5, 63.8, 16, 333 }, + [4] = { 19.2, 62.8, 16, 333 }, + [5] = { 20.2, 62.2, 16, 333 }, + [6] = { 19.9, 61.9, 16, 333 }, + [7] = { 21.1, 61.9, 16, 333 }, + [8] = { 19.3, 61.8, 16, 333 }, + [9] = { 20.6, 61.3, 16, 333 }, + [10] = { 19.2, 60.9, 16, 333 }, + [11] = { 19.8, 60.8, 16, 333 }, + [12] = { 20.2, 60.6, 16, 333 }, + [13] = { 20.6, 60.5, 16, 333 }, + [14] = { 21.3, 60.4, 16, 333 }, + [15] = { 21, 60, 16, 333 }, + }, + ["lvl"] = "46-47", + }, + [6128] = { + ["coords"] = { + [1] = { 47.2, 63.6, 141, 300 }, + }, + ["lvl"] = "10", + }, + [6129] = { + ["coords"] = { + [1] = { 39.5, 84.8, 16, 600 }, + [2] = { 42.4, 84, 16, 600 }, + [3] = { 43.5, 82, 16, 600 }, + [4] = { 41.8, 76.5, 16, 600 }, + [5] = { 42.7, 74.9, 16, 600 }, + }, + ["lvl"] = "53-54", + ["rnk"] = "1", + }, + [6130] = { + ["coords"] = { + [1] = { 39.5, 85.6, 16, 600 }, + [2] = { 42.9, 85.4, 16, 600 }, + [3] = { 42.2, 84.7, 16, 600 }, + [4] = { 41.6, 84.6, 16, 600 }, + [5] = { 42.9, 84.6, 16, 600 }, + [6] = { 40.3, 84.1, 16, 600 }, + [7] = { 39.4, 83.8, 16, 600 }, + [8] = { 42.3, 83.2, 16, 600 }, + [9] = { 43.5, 82.6, 16, 600 }, + [10] = { 42.9, 82.5, 16, 600 }, + [11] = { 44.1, 81.7, 16, 600 }, + [12] = { 43.4, 80.9, 16, 600 }, + [13] = { 41.4, 77.4, 16, 600 }, + [14] = { 41.5, 75.8, 16, 600 }, + [15] = { 42.2, 75.7, 16, 600 }, + [16] = { 43.6, 75.7, 16, 600 }, + [17] = { 42.9, 74.1, 16, 600 }, + }, + ["lvl"] = "52-53", + ["rnk"] = "1", + }, + [6131] = { + ["coords"] = { + [1] = { 39, 85.7, 16, 600 }, + [2] = { 40.3, 85.3, 16, 600 }, + [3] = { 38.9, 84.6, 16, 600 }, + [4] = { 43, 83.6, 16, 600 }, + [5] = { 43.2, 81.5, 16, 600 }, + [6] = { 43, 80.6, 16, 600 }, + [7] = { 43, 79.6, 16, 600 }, + [8] = { 42, 77.9, 16, 600 }, + [9] = { 42.8, 76.6, 16, 600 }, + [10] = { 42.2, 76.4, 16, 600 }, + [11] = { 42.7, 75.6, 16, 600 }, + [12] = { 42.3, 74.9, 16, 600 }, + [13] = { 43.5, 74.9, 16, 600 }, + [14] = { 37.5, 80.7, 16, 600 }, + [15] = { 38.2, 80.7, 16, 600 }, + [16] = { 37, 79.8, 16, 600 }, + [17] = { 36.9, 78.7, 16, 600 }, + [18] = { 41.1, 76.9, 16, 600 }, + [19] = { 40.4, 76.7, 16, 600 }, + [20] = { 39.5, 76.4, 16, 600 }, + [21] = { 36.9, 75.8, 16, 600 }, + [22] = { 38.3, 74.7, 16, 600 }, + [23] = { 36.4, 74.6, 16, 600 }, + [24] = { 37.1, 74.5, 16, 600 }, + [25] = { 37.5, 73.7, 16, 600 }, + [26] = { 36.4, 73.7, 16, 600 }, + [27] = { 36.8, 73.7, 16, 600 }, + [28] = { 38.3, 73.6, 16, 600 }, + [29] = { 36.4, 72.9, 16, 600 }, + }, + ["lvl"] = "51-52", + ["rnk"] = "1", + }, + [6132] = { + ["coords"] = { + [1] = { 43, 90.4, 17, 275 }, + [2] = { 43.3, 90.3, 17, 275 }, + [3] = { 43.5, 90.2, 17, 275 }, + [4] = { 42.6, 90.1, 17, 275 }, + [5] = { 29.5, 18, 400, 275 }, + [6] = { 30.3, 17.8, 400, 275 }, + [7] = { 30.8, 17.6, 400, 275 }, + [8] = { 28.6, 17.3, 400, 275 }, + }, + ["lvl"] = "23-24", + ["rnk"] = "1", + }, + [6133] = { + ["coords"] = { + [1] = { 31.6, 44.9, 148, 300 }, + }, + ["lvl"] = "11", + }, + [6134] = { + ["coords"] = { + [1] = { 77.1, 42.8, 16, 600 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [6135] = { + ["coords"] = { + [1] = { 76.3, 46.3, 16, 333 }, + [2] = { 76.8, 45.1, 16, 333 }, + [3] = { 76.5, 44.4, 16, 333 }, + [4] = { 73.2, 40.1, 16, 333 }, + [5] = { 72.4, 39.1, 16, 333 }, + [6] = { 78.3, 38.6, 16, 333 }, + [7] = { 74.5, 38.3, 16, 333 }, + [8] = { 77, 38.1, 16, 333 }, + [9] = { 75.8, 38.1, 16, 333 }, + [10] = { 81, 38, 16, 333 }, + [11] = { 77.5, 37.2, 16, 333 }, + [12] = { 76.3, 37.1, 16, 333 }, + [13] = { 75.1, 37, 16, 333 }, + [14] = { 75.8, 36.7, 16, 333 }, + [15] = { 78.2, 36.1, 16, 333 }, + [16] = { 81.7, 35, 16, 333 }, + [17] = { 78.8, 34.8, 16, 333 }, + [18] = { 78.9, 33.4, 16, 333 }, + [19] = { 76.4, 33.2, 16, 333 }, + [20] = { 80.1, 33.1, 16, 333 }, + [21] = { 79.6, 32.5, 16, 333 }, + [22] = { 75.8, 32.2, 16, 333 }, + [23] = { 79, 31.6, 16, 333 }, + [24] = { 80.2, 31.5, 16, 333 }, + }, + ["lvl"] = "53-54", + }, + [6136] = { + ["coords"] = { + [1] = { 76.1, 44.2, 16, 333 }, + [2] = { 77.7, 44, 16, 333 }, + [3] = { 75.1, 44, 16, 333 }, + [4] = { 78, 42.6, 16, 333 }, + [5] = { 76.6, 41.8, 16, 333 }, + [6] = { 73.6, 39, 16, 333 }, + [7] = { 80.4, 38.9, 16, 333 }, + [8] = { 79.6, 38.1, 16, 333 }, + [9] = { 79.2, 37.3, 16, 333 }, + [10] = { 73.7, 37, 16, 333 }, + [11] = { 81.2, 36.3, 16, 333 }, + [12] = { 72.9, 36.3, 16, 333 }, + [13] = { 76.8, 36.1, 16, 333 }, + [14] = { 81.2, 34.4, 16, 333 }, + [15] = { 77.7, 33.3, 16, 333 }, + [16] = { 76.9, 32.2, 16, 333 }, + [17] = { 78.3, 32.1, 16, 333 }, + [18] = { 77.7, 31.1, 16, 333 }, + }, + ["lvl"] = "53-54", + }, + [6137] = { + ["coords"] = { + [1] = { 77.2, 46.2, 16, 333 }, + [2] = { 76.1, 46.1, 16, 333 }, + [3] = { 78, 45.9, 16, 333 }, + [4] = { 76.3, 44.8, 16, 333 }, + [5] = { 76.1, 44.1, 16, 333 }, + [6] = { 77.3, 44.1, 16, 333 }, + [7] = { 75.1, 44, 16, 333 }, + [8] = { 77.6, 43.7, 16, 333 }, + [9] = { 77.4, 43.4, 16, 333 }, + [10] = { 76.2, 43.4, 16, 333 }, + [11] = { 76.9, 43.2, 16, 333 }, + [12] = { 75.3, 42.9, 16, 333 }, + [13] = { 76.5, 42.8, 16, 333 }, + [14] = { 75.6, 41.9, 16, 333 }, + [15] = { 77.9, 41.8, 16, 333 }, + [16] = { 76.5, 41.5, 16, 333 }, + [17] = { 73.4, 41.1, 16, 333 }, + [18] = { 76.7, 40.6, 16, 333 }, + [19] = { 77.8, 40.4, 16, 333 }, + [20] = { 79.6, 40, 16, 333 }, + [21] = { 79, 39.4, 16, 333 }, + [22] = { 75, 39.1, 16, 333 }, + [23] = { 79.3, 32.1, 16, 333 }, + }, + ["lvl"] = "54-55", + }, + [6138] = { + ["coords"] = { + [1] = { 76.7, 45.3, 16, 333 }, + [2] = { 77.2, 45.2, 16, 333 }, + [3] = { 75.3, 45.1, 16, 333 }, + [4] = { 78.4, 44.9, 16, 333 }, + [5] = { 76.8, 44.5, 16, 333 }, + [6] = { 77.5, 44.4, 16, 333 }, + [7] = { 76.5, 44.3, 16, 333 }, + [8] = { 78.4, 44.1, 16, 333 }, + [9] = { 76.4, 43.2, 16, 333 }, + [10] = { 78.3, 42.8, 16, 333 }, + [11] = { 77.2, 42.6, 16, 333 }, + [12] = { 78.7, 41.7, 16, 333 }, + [13] = { 77, 41.4, 16, 333 }, + [14] = { 77.7, 41, 16, 333 }, + [15] = { 72.7, 40.9, 16, 333 }, + [16] = { 74.5, 40.2, 16, 333 }, + [17] = { 77.8, 39, 16, 333 }, + [18] = { 78.5, 38.2, 16, 333 }, + [19] = { 73.7, 37.5, 16, 333 }, + [20] = { 75.7, 37, 16, 333 }, + }, + ["lvl"] = "54-55", + }, + [6139] = { + ["coords"] = { + [1] = { 17.1, 40.6, 400, 300 }, + [2] = { 10, 39.7, 400, 300 }, + }, + ["lvl"] = "28-29", + }, + [6140] = { + ["coords"] = { + [1] = { 56.7, 44.8, 16, 333 }, + }, + ["lvl"] = "55", + ["rnk"] = "1", + }, + [6141] = { + ["coords"] = { + [1] = { 43.3, 46.7, 406, 30 }, + [2] = { 45.2, 35.4, 406, 30 }, + }, + ["lvl"] = "21-22", + }, + [6142] = { + ["coords"] = { + [1] = { 29.6, 56.4, 141, 300 }, + [2] = { 59.5, 45.4, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "33", + }, + [6143] = { + ["coords"] = { + [1] = { 78.2, 73.9, 16, 180 }, + [2] = { 75.3, 72.7, 16, 180 }, + [3] = { 62.1, 70, 16, 600 }, + [4] = { 75.2, 69.1, 16, 180 }, + [5] = { 64.5, 69, 16, 600 }, + [6] = { 61.9, 62.1, 16, 600 }, + [7] = { 59.2, 61.3, 16, 600 }, + [8] = { 61.9, 57.7, 16, 600 }, + [9] = { 56.6, 46.2, 16, 600 }, + [10] = { 53.9, 45.1, 16, 600 }, + [11] = { 62.1, 42.1, 16, 600 }, + [12] = { 59.1, 41.3, 16, 600 }, + }, + ["lvl"] = "53-54", + ["rnk"] = "1", + }, + [6144] = { + ["coords"] = { + [1] = { 59.5, 64.7, 16, 600 }, + [2] = { 54.1, 60.5, 16, 600 }, + [3] = { 56.4, 57.8, 16, 600 }, + [4] = { 53.8, 56.8, 16, 600 }, + [5] = { 56.7, 54.1, 16, 600 }, + [6] = { 56.6, 50.1, 16, 600 }, + [7] = { 56.7, 42, 16, 600 }, + [8] = { 62, 38, 16, 600 }, + }, + ["lvl"] = "54-55", + ["rnk"] = "1", + }, + [6145] = { + ["coords"] = { + [1] = { 66, 93.3, 14, 180 }, + [2] = { 62.9, 90.6, 14, 180 }, + [3] = { 58.2, 81, 14, 180 }, + [4] = { 70.2, 78.9, 14, 180 }, + [5] = { 60, 77.7, 14, 180 }, + [6] = { 38.5, 76.2, 14, 300 }, + [7] = { 38.6, 75.8, 14, 180 }, + [8] = { 61.9, 75.2, 14, 180 }, + [9] = { 65.5, 71.7, 14, 180 }, + [10] = { 62.2, 70.4, 14, 180 }, + [11] = { 65.6, 60.7, 14, 180 }, + [12] = { 63.6, 58.6, 14, 180 }, + [13] = { 65.8, 58, 14, 180 }, + [14] = { 64.2, 55.5, 14, 180 }, + [15] = { 62.9, 53.7, 14, 180 }, + [16] = { 64.8, 51.7, 14, 180 }, + [17] = { 62.2, 49.9, 14, 180 }, + [18] = { 63.5, 48.9, 14, 180 }, + [19] = { 61.2, 48.1, 14, 180 }, + [20] = { 62.8, 47.3, 14, 180 }, + [21] = { 61.3, 44.2, 14, 180 }, + [22] = { 62.9, 43.1, 14, 180 }, + [23] = { 61.7, 39, 14, 180 }, + [24] = { 61.6, 20.7, 14, 180 }, + [25] = { 60.7, 14.4, 14, 180 }, + [26] = { 57.7, 9.8, 14, 180 }, + [27] = { 60.7, 66.4, 15, 300 }, + [28] = { 62.3, 65.7, 15, 300 }, + [29] = { 62.7, 65.6, 15, 300 }, + [30] = { 58.9, 65.4, 15, 300 }, + [31] = { 59.3, 64.4, 15, 300 }, + [32] = { 62.1, 63.3, 15, 300 }, + [33] = { 62.5, 63, 15, 300 }, + [34] = { 59.5, 62.8, 15, 300 }, + [35] = { 56.5, 62.3, 15, 300 }, + [36] = { 60.7, 62, 15, 300 }, + [37] = { 61.1, 61.7, 15, 300 }, + [38] = { 59, 61.7, 15, 300 }, + [39] = { 61.9, 60.9, 15, 300 }, + [40] = { 70.7, 60, 15, 300 }, + [41] = { 68.9, 58.5, 15, 300 }, + [42] = { 69.4, 58, 15, 300 }, + [43] = { 70.1, 56.7, 15, 300 }, + [44] = { 59.8, 53.7, 15, 300 }, + [45] = { 71.9, 49.9, 15, 300 }, + [46] = { 56.6, 49.3, 15, 300 }, + [47] = { 60.8, 46.7, 15, 300 }, + [48] = { 62.5, 46.2, 15, 300 }, + [49] = { 56.2, 45.7, 15, 300 }, + [50] = { 52.2, 45.6, 15, 300 }, + [51] = { 56.8, 45.4, 15, 300 }, + [52] = { 57.2, 45.1, 15, 300 }, + [53] = { 57.5, 44.7, 15, 300 }, + [54] = { 52.2, 44.5, 15, 300 }, + [55] = { 55.1, 42.4, 15, 300 }, + [56] = { 49.5, 41.6, 15, 300 }, + [57] = { 66.3, 41, 15, 300 }, + [58] = { 53.2, 39.5, 15, 300 }, + [59] = { 64.6, 39.1, 15, 300 }, + [60] = { 52.7, 38.6, 15, 360 }, + [61] = { 64.6, 38.1, 15, 300 }, + [62] = { 48.2, 36.5, 15, 300 }, + [63] = { 50, 35.7, 15, 300 }, + [64] = { 47.1, 31.9, 15, 300 }, + [65] = { 62.9, 31.8, 15, 300 }, + [66] = { 63.6, 24.3, 15, 300 }, + [67] = { 62.4, 22.3, 15, 300 }, + [68] = { 62.5, 21.8, 15, 300 }, + [69] = { 61.3, 16.1, 15, 300 }, + [70] = { 61.6, 15.3, 15, 300 }, + [71] = { 59.9, 13.8, 15, 300 }, + [72] = { 59.6, 13.8, 15, 300 }, + [73] = { 56.5, 12.9, 15, 300 }, + [74] = { 56.8, 12.5, 15, 300 }, + [75] = { 62, 10.8, 15, 300 }, + [76] = { 65, 60.4, 17, 300 }, + [77] = { 67.6, 59.5, 17, 300 }, + [78] = { 63.5, 54.2, 17, 300 }, + [79] = { 63.3, 52.7, 17, 300 }, + [80] = { 63.8, 50.4, 17, 300 }, + [81] = { 79.7, 45.8, 17, 180 }, + [82] = { 65.7, 44.6, 17, 300 }, + [83] = { 78.1, 44.4, 17, 180 }, + [84] = { 65.2, 40.9, 17, 300 }, + [85] = { 63.9, 40.3, 17, 300 }, + [86] = { 64.9, 38.4, 17, 300 }, + [87] = { 65.3, 36.9, 17, 300 }, + [88] = { 65.4, 36.7, 17, 180 }, + [89] = { 30.4, 88, 148, 300 }, + [90] = { 31.9, 85.4, 148, 300 }, + [91] = { 31.9, 81.1, 148, 300 }, + [92] = { 34.8, 77.4, 148, 300 }, + [93] = { 30.4, 74, 148, 300 }, + [94] = { 33.5, 66, 148, 300 }, + [95] = { 32.1, 62.9, 148, 300 }, + [96] = { 32.4, 58.3, 148, 300 }, + [97] = { 31.5, 55.5, 148, 300 }, + [98] = { 28.9, 52.9, 148, 300 }, + [99] = { 29, 48.9, 148, 300 }, + [100] = { 31.6, 43.9, 148, 300 }, + [101] = { 29.1, 43.5, 148, 300 }, + [102] = { 34.5, 42.7, 148, 300 }, + [103] = { 33.4, 39.5, 148, 300 }, + [104] = { 29.8, 38.3, 148, 300 }, + [105] = { 35, 35.4, 148, 300 }, + [106] = { 33.6, 34.7, 148, 300 }, + [107] = { 33.3, 34.6, 148, 300 }, + [108] = { 34, 29.4, 148, 300 }, + [109] = { 39, 28.2, 148, 300 }, + [110] = { 38.6, 27.9, 148, 300 }, + [111] = { 35.9, 26.6, 148, 300 }, + [112] = { 37.2, 25.1, 148, 300 }, + [113] = { 40.7, 22.7, 148, 300 }, + [114] = { 39.8, 22.1, 148, 300 }, + [115] = { 38.5, 21.8, 148, 300 }, + [116] = { 43.2, 18.8, 148, 300 }, + [117] = { 41, 18, 148, 300 }, + [118] = { 53.8, 17, 148, 300 }, + [119] = { 44.9, 15.6, 148, 300 }, + [120] = { 36.4, 54.3, 331, 300 }, + [121] = { 36.6, 53.4, 331, 300 }, + [122] = { 33.5, 49.1, 331, 300 }, + [123] = { 38.3, 48.3, 331, 300 }, + [124] = { 36.1, 47.3, 331, 300 }, + [125] = { 35.1, 47.2, 331, 300 }, + [126] = { 9.3, 33, 331, 300 }, + [127] = { 23.5, 79, 405, 300 }, + [128] = { 33.7, 35, 405, 300 }, + [129] = { 32.7, 28.4, 405, 300 }, + [130] = { 32.2, 24.6, 405, 300 }, + [131] = { 35.4, 21, 405, 300 }, + [132] = { 41.1, 19, 405, 300 }, + [133] = { 28.3, 12.5, 405, 300 }, + [134] = { 63.5, 42.6, 406, 300 }, + [135] = { 65, 42.3, 406, 300 }, + [136] = { 66.4, 41.8, 406, 300 }, + [137] = { 62, 40.7, 406, 300 }, + }, + ["lvl"] = "1", + }, + [6146] = { + ["coords"] = { + [1] = { 55.4, 89.9, 16, 600 }, + [2] = { 63.8, 87.3, 16, 600 }, + [3] = { 47.7, 85.7, 16, 600 }, + [4] = { 55.3, 85.1, 16, 600 }, + [5] = { 59.3, 83.4, 16, 600 }, + [6] = { 48.8, 83.4, 16, 600 }, + [7] = { 46.3, 83.4, 16, 600 }, + [8] = { 58.1, 82, 16, 600 }, + [9] = { 52.4, 81.7, 16, 600 }, + [10] = { 60.3, 81.7, 16, 600 }, + [11] = { 55.4, 81.3, 16, 600 }, + [12] = { 56.7, 79.8, 16, 600 }, + [13] = { 48.7, 79.4, 16, 600 }, + [14] = { 48.5, 75.7, 16, 600 }, + [15] = { 48.5, 70.8, 16, 600 }, + [16] = { 74.6, 26.9, 16, 600 }, + [17] = { 75.9, 20.3, 16, 600 }, + [18] = { 77.2, 18.5, 16, 600 }, + [19] = { 74.4, 18.5, 16, 600 }, + [20] = { 78.2, 17.1, 16, 600 }, + [21] = { 73.1, 16.6, 16, 600 }, + [22] = { 75.6, 16.2, 16, 600 }, + [23] = { 80, 14.4, 16, 600 }, + [24] = { 73.9, 14.4, 16, 600 }, + }, + ["lvl"] = "54-55", + ["rnk"] = "1", + }, + [6147] = { + ["coords"] = { + [1] = { 54.4, 90.1, 16, 600 }, + [2] = { 58.1, 89.4, 16, 600 }, + [3] = { 56.7, 87.4, 16, 600 }, + [4] = { 48.6, 87.2, 16, 600 }, + [5] = { 43.5, 87.2, 16, 600 }, + [6] = { 62.4, 86.8, 16, 600 }, + [7] = { 57.7, 85.5, 16, 600 }, + [8] = { 49.8, 85.4, 16, 600 }, + [9] = { 54.1, 83.3, 16, 600 }, + [10] = { 56.5, 83.1, 16, 600 }, + [11] = { 50, 81.7, 16, 600 }, + [12] = { 54.1, 81.1, 16, 600 }, + [13] = { 52.7, 79.3, 16, 600 }, + [14] = { 50.1, 77.7, 16, 600 }, + [15] = { 46.3, 76.1, 16, 600 }, + [16] = { 54.5, 74.4, 16, 600 }, + [17] = { 47.3, 73.8, 16, 600 }, + [18] = { 44.5, 71.1, 16, 600 }, + [19] = { 70.3, 24.2, 16, 600 }, + [20] = { 82.5, 22.5, 16, 600 }, + [21] = { 70.7, 20.5, 16, 600 }, + [22] = { 73.4, 20.4, 16, 600 }, + [23] = { 71.8, 18.8, 16, 600 }, + [24] = { 77.3, 14.8, 16, 600 }, + [25] = { 75.2, 13.9, 16, 600 }, + [26] = { 78.5, 13.4, 16, 600 }, + [27] = { 65.9, 12.9, 16, 600 }, + [28] = { 70.5, 12.5, 16, 600 }, + [29] = { 72, 12.4, 16, 600 }, + }, + ["lvl"] = "53-54", + ["rnk"] = "1", + }, + [6148] = { + ["coords"] = { + [1] = { 60.1, 89.7, 16, 600 }, + [2] = { 44.8, 85.5, 16, 600 }, + [3] = { 52.7, 85.4, 16, 600 }, + [4] = { 61.7, 83.6, 16, 600 }, + [5] = { 51.2, 83.5, 16, 600 }, + [6] = { 47.5, 81.7, 16, 600 }, + [7] = { 46.2, 79.9, 16, 600 }, + [8] = { 51.5, 79.6, 16, 600 }, + [9] = { 59, 79.4, 16, 600 }, + [10] = { 57.9, 78, 16, 600 }, + [11] = { 47.2, 77.5, 16, 600 }, + [12] = { 52.8, 75.4, 16, 600 }, + [13] = { 46.2, 71.6, 16, 600 }, + [14] = { 45.6, 69.1, 16, 600 }, + [15] = { 16.8, 53.8, 16, 600 }, + [16] = { 28.4, 50.1, 16, 600 }, + [17] = { 73.2, 24.1, 16, 600 }, + [18] = { 74.3, 23.3, 16, 600 }, + [19] = { 76.6, 22.1, 16, 600 }, + [20] = { 83.7, 20.5, 16, 600 }, + [21] = { 85, 18.7, 16, 600 }, + [22] = { 79.7, 18.6, 16, 600 }, + [23] = { 82.2, 18.3, 16, 600 }, + [24] = { 83.5, 16.7, 16, 600 }, + [25] = { 72.3, 14.4, 16, 600 }, + [26] = { 68.2, 12.5, 16, 600 }, + [27] = { 73.7, 11.7, 16, 600 }, + }, + ["lvl"] = "52-53", + ["rnk"] = "1", + }, + [6166] = { + ["coords"] = { + [1] = { 26.6, 44.7, 44, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "24", + }, + [6167] = { + ["coords"] = { + [1] = { 33.6, 74.7, 406, 300 }, + }, + ["lvl"] = "28", + }, + [6168] = { + ["coords"] = {}, + ["lvl"] = "28", + ["rnk"] = "1", + }, + [6169] = { + ["coords"] = { + [1] = { 67.9, 46.1, 1537, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "43-45", + }, + [6170] = { + ["coords"] = { + [1] = { 73.9, 77.2, 10, 300 }, + }, + ["lvl"] = "32", + }, + [6171] = { + ["coords"] = { + [1] = { 39.8, 29.8, 1519, 490 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [6172] = { + ["coords"] = { + [1] = { 72.6, 51.4, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [6173] = { + ["coords"] = { + [1] = { 38.6, 26.6, 1519, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "9", + }, + [6174] = { + ["coords"] = { + [1] = { 57.1, 61.7, 1519, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [6175] = { + ["coords"] = { + [1] = { 23.3, 61.9, 1537, 465 }, + }, + ["fac"] = "A", + ["lvl"] = "8", + }, + [6176] = { + ["coords"] = { + [1] = { 80.5, 66.9, 36, 300 }, + [2] = { 79.3, 7, 267, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [6177] = { + ["coords"] = { + [1] = { 78.3, 58.1, 1, 270 }, + }, + ["fac"] = "AH", + ["lvl"] = "8", + }, + [6178] = { + ["coords"] = { + [1] = { 23.5, 8.3, 1537, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [6179] = { + ["coords"] = { + [1] = { 27.6, 12.2, 1537, 490 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [6180] = { + ["coords"] = {}, + ["lvl"] = "17-18", + }, + [6181] = { + ["coords"] = { + [1] = { 52.5, 36.9, 1, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [6182] = { + ["coords"] = { + [1] = { 41.7, 89.2, 40, 45 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [6183] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "30", + }, + [6184] = { + ["coords"] = { + [1] = { 31.1, 46.2, 16, 333 }, + [2] = { 32.3, 46.1, 16, 333 }, + [3] = { 31.7, 46.1, 16, 333 }, + [4] = { 33, 46.1, 16, 333 }, + [5] = { 31.6, 45.3, 16, 333 }, + [6] = { 33, 44.9, 16, 333 }, + [7] = { 31.4, 44.8, 16, 333 }, + [8] = { 33, 44.1, 16, 333 }, + [9] = { 31.4, 43.5, 16, 333 }, + [10] = { 31.4, 43.3, 16, 333 }, + [11] = { 34.3, 43.2, 16, 333 }, + [12] = { 32.6, 42.9, 16, 333 }, + [13] = { 33.6, 42.2, 16, 333 }, + [14] = { 34.3, 42.1, 16, 333 }, + [15] = { 35, 42, 16, 333 }, + [16] = { 35, 41.2, 16, 333 }, + [17] = { 35.6, 41, 16, 333 }, + [18] = { 35, 40.2, 16, 333 }, + [19] = { 34.9, 39.1, 16, 333 }, + [20] = { 37.6, 37.2, 16, 333 }, + [21] = { 36.4, 36.1, 16, 333 }, + [22] = { 37, 35.3, 16, 333 }, + }, + ["lvl"] = "46-47", + }, + [6185] = { + ["coords"] = { + [1] = { 32.4, 45.6, 16, 333 }, + [2] = { 32, 45.5, 16, 333 }, + [3] = { 32.2, 45.4, 16, 333 }, + [4] = { 32.5, 45.2, 16, 333 }, + [5] = { 33.7, 43.2, 16, 333 }, + [6] = { 34.3, 41.2, 16, 333 }, + [7] = { 34.4, 40.8, 16, 333 }, + [8] = { 34.8, 40.7, 16, 333 }, + [9] = { 34.6, 40.6, 16, 333 }, + [10] = { 34.7, 40.3, 16, 333 }, + [11] = { 35.5, 38, 16, 333 }, + [12] = { 35.7, 37.3, 16, 333 }, + [13] = { 35.6, 35.9, 16, 333 }, + [14] = { 35.6, 35.7, 16, 333 }, + [15] = { 36.9, 35.1, 16, 333 }, + [16] = { 31.1, 46.2, 16, 333 }, + [17] = { 32.3, 46.1, 16, 333 }, + [18] = { 31.7, 46.1, 16, 333 }, + [19] = { 33, 46.1, 16, 333 }, + [20] = { 31.6, 45.3, 16, 333 }, + [21] = { 33, 44.9, 16, 333 }, + [22] = { 31.4, 44.8, 16, 333 }, + [23] = { 33, 44.1, 16, 333 }, + [24] = { 31.4, 43.5, 16, 333 }, + [25] = { 31.4, 43.3, 16, 333 }, + [26] = { 34.3, 43.2, 16, 333 }, + [27] = { 32.6, 42.9, 16, 333 }, + [28] = { 33.6, 42.2, 16, 333 }, + [29] = { 34.3, 42.1, 16, 333 }, + [30] = { 35, 42, 16, 333 }, + [31] = { 35, 41.2, 16, 333 }, + [32] = { 35.6, 41, 16, 333 }, + [33] = { 35, 40.2, 16, 333 }, + [34] = { 34.9, 39.1, 16, 333 }, + [35] = { 37.6, 37.2, 16, 333 }, + [36] = { 36.4, 36.1, 16, 333 }, + [37] = { 37, 35.3, 16, 333 }, + }, + ["lvl"] = "47-48", + }, + [6186] = { + ["coords"] = { + [1] = { 32.4, 45.6, 16, 333 }, + [2] = { 32, 45.5, 16, 333 }, + [3] = { 32.2, 45.4, 16, 333 }, + [4] = { 32.5, 45.2, 16, 333 }, + [5] = { 34.3, 41.2, 16, 333 }, + [6] = { 34.4, 40.8, 16, 333 }, + [7] = { 34.8, 40.7, 16, 333 }, + [8] = { 34.6, 40.6, 16, 333 }, + [9] = { 34.7, 40.3, 16, 333 }, + }, + ["lvl"] = "48-49", + }, + [6187] = { + ["coords"] = { + [1] = { 38.3, 32.5, 16, 333 }, + [2] = { 38.5, 32.4, 16, 333 }, + [3] = { 48.4, 31.1, 16, 333 }, + [4] = { 48.3, 30.7, 16, 333 }, + [5] = { 48.1, 30.4, 16, 333 }, + [6] = { 48.6, 30.4, 16, 333 }, + [7] = { 48.3, 30.3, 16, 333 }, + [8] = { 44.7, 26.6, 16, 333 }, + [9] = { 44.2, 26.6, 16, 333 }, + [10] = { 44.5, 26.1, 16, 333 }, + [11] = { 45.4, 22.5, 16, 333 }, + [12] = { 45, 22.1, 16, 333 }, + [13] = { 45.7, 22, 16, 333 }, + [14] = { 45.2, 22, 16, 333 }, + [15] = { 45.5, 22, 16, 333 }, + [16] = { 41.6, 20.4, 16, 333 }, + [17] = { 41.3, 20.2, 16, 333 }, + [18] = { 41.5, 19.5, 16, 333 }, + [19] = { 41.7, 19.3, 16, 333 }, + [20] = { 41.8, 18.9, 16, 333 }, + [21] = { 43.2, 18, 16, 333 }, + [22] = { 71.4, 82, 618, 333 }, + [23] = { 71.2, 81.8, 618, 333 }, + [24] = { 71.3, 81.3, 618, 333 }, + }, + ["lvl"] = "49-50", + }, + [6188] = { + ["coords"] = { + [1] = { 48, 32.4, 16, 333 }, + [2] = { 38.3, 32.4, 16, 333 }, + [3] = { 48, 31.6, 16, 333 }, + [4] = { 48.7, 31.4, 16, 333 }, + [5] = { 47.5, 31.3, 16, 333 }, + [6] = { 47.6, 30.3, 16, 333 }, + [7] = { 46.8, 29.4, 16, 333 }, + [8] = { 47.5, 29.4, 16, 333 }, + [9] = { 48.1, 29.3, 16, 333 }, + [10] = { 48.7, 29.3, 16, 333 }, + [11] = { 46.2, 29.3, 16, 333 }, + [12] = { 46, 28.4, 16, 333 }, + [13] = { 45.5, 28.4, 16, 333 }, + [14] = { 46.7, 28.3, 16, 333 }, + [15] = { 43.6, 27.5, 16, 333 }, + [16] = { 44.9, 27.4, 16, 333 }, + [17] = { 44.2, 27.2, 16, 333 }, + [18] = { 45.3, 27.1, 16, 333 }, + [19] = { 43.5, 26.4, 16, 333 }, + [20] = { 44.4, 26.3, 16, 333 }, + [21] = { 45.3, 26.2, 16, 333 }, + [22] = { 44.9, 25.5, 16, 333 }, + [23] = { 44.1, 25.4, 16, 333 }, + [24] = { 43.5, 25.4, 16, 333 }, + [25] = { 45.5, 25.4, 16, 333 }, + [26] = { 45.7, 24.5, 16, 333 }, + [27] = { 44.2, 24.4, 16, 333 }, + [28] = { 44.2, 23.4, 16, 333 }, + [29] = { 44.8, 23.4, 16, 333 }, + [30] = { 45.6, 23.3, 16, 333 }, + [31] = { 44.2, 22.6, 16, 333 }, + [32] = { 46.1, 22.5, 16, 333 }, + [33] = { 44.8, 22.5, 16, 333 }, + [34] = { 41.4, 21.8, 16, 333 }, + [35] = { 44.2, 21.5, 16, 333 }, + [36] = { 46.1, 21.4, 16, 333 }, + [37] = { 42.3, 21.4, 16, 333 }, + [38] = { 41.1, 21.3, 16, 333 }, + [39] = { 44.8, 21.3, 16, 333 }, + [40] = { 45.4, 21.3, 16, 333 }, + [41] = { 42.8, 20.6, 16, 333 }, + [42] = { 44.1, 20.5, 16, 333 }, + [43] = { 42.1, 20.4, 16, 333 }, + [44] = { 40.9, 20.4, 16, 333 }, + [45] = { 40.1, 19.6, 16, 333 }, + [46] = { 40.8, 19.6, 16, 333 }, + [47] = { 44.1, 19.5, 16, 333 }, + [48] = { 42.9, 19.5, 16, 333 }, + [49] = { 42.1, 19.5, 16, 333 }, + [50] = { 42.2, 18.7, 16, 333 }, + [51] = { 44.2, 18.6, 16, 333 }, + [52] = { 43.5, 18.5, 16, 333 }, + [53] = { 42.8, 18.4, 16, 333 }, + [54] = { 70.9, 82, 618, 333 }, + [55] = { 70.4, 81.5, 618, 333 }, + [56] = { 70.8, 81.4, 618, 333 }, + [57] = { 38.3, 32.5, 16, 333 }, + [58] = { 38.5, 32.4, 16, 333 }, + [59] = { 48.4, 31.1, 16, 333 }, + [60] = { 48.3, 30.7, 16, 333 }, + [61] = { 48.1, 30.4, 16, 333 }, + [62] = { 48.6, 30.4, 16, 333 }, + [63] = { 48.3, 30.3, 16, 333 }, + [64] = { 44.7, 26.6, 16, 333 }, + [65] = { 44.2, 26.6, 16, 333 }, + [66] = { 44.5, 26.1, 16, 333 }, + [67] = { 45.4, 22.5, 16, 333 }, + [68] = { 45, 22.1, 16, 333 }, + [69] = { 45.7, 22, 16, 333 }, + [70] = { 45.2, 22, 16, 333 }, + [71] = { 45.5, 22, 16, 333 }, + [72] = { 41.6, 20.4, 16, 333 }, + [73] = { 41.3, 20.2, 16, 333 }, + [74] = { 41.5, 19.5, 16, 333 }, + [75] = { 41.7, 19.3, 16, 333 }, + [76] = { 41.8, 18.9, 16, 333 }, + [77] = { 43.2, 18, 16, 333 }, + [78] = { 71.4, 82, 618, 333 }, + [79] = { 71.2, 81.8, 618, 333 }, + [80] = { 71.3, 81.3, 618, 333 }, + }, + ["lvl"] = "50-51", + }, + [6189] = { + ["coords"] = { + [1] = { 48, 32.4, 16, 333 }, + [2] = { 48, 31.6, 16, 333 }, + [3] = { 48.7, 31.4, 16, 333 }, + [4] = { 47.5, 31.3, 16, 333 }, + [5] = { 47.6, 30.3, 16, 333 }, + [6] = { 46.8, 29.4, 16, 333 }, + [7] = { 47.5, 29.4, 16, 333 }, + [8] = { 48.1, 29.3, 16, 333 }, + [9] = { 48.7, 29.3, 16, 333 }, + [10] = { 46.2, 29.3, 16, 333 }, + [11] = { 46, 28.4, 16, 333 }, + [12] = { 45.5, 28.4, 16, 333 }, + [13] = { 46.7, 28.3, 16, 333 }, + [14] = { 43.6, 27.5, 16, 333 }, + [15] = { 44.9, 27.4, 16, 333 }, + [16] = { 44.2, 27.2, 16, 333 }, + [17] = { 45.3, 27.1, 16, 333 }, + [18] = { 45.3, 26.2, 16, 333 }, + [19] = { 44.9, 25.5, 16, 333 }, + [20] = { 45.5, 25.4, 16, 333 }, + [21] = { 45.7, 24.5, 16, 333 }, + [22] = { 44.2, 24.4, 16, 333 }, + [23] = { 44.2, 23.4, 16, 333 }, + [24] = { 44.8, 23.4, 16, 333 }, + [25] = { 45.6, 23.3, 16, 333 }, + [26] = { 44.2, 22.6, 16, 333 }, + [27] = { 46.1, 22.5, 16, 333 }, + [28] = { 44.8, 22.5, 16, 333 }, + [29] = { 44.2, 21.5, 16, 333 }, + [30] = { 46.1, 21.4, 16, 333 }, + [31] = { 42.3, 21.4, 16, 333 }, + [32] = { 41.1, 21.3, 16, 333 }, + [33] = { 44.8, 21.3, 16, 333 }, + [34] = { 42.8, 20.6, 16, 333 }, + [35] = { 44.1, 20.5, 16, 333 }, + [36] = { 42.1, 20.4, 16, 333 }, + [37] = { 40.9, 20.4, 16, 333 }, + [38] = { 40.1, 19.6, 16, 333 }, + [39] = { 40.8, 19.6, 16, 333 }, + [40] = { 44.1, 19.5, 16, 333 }, + [41] = { 42.9, 19.5, 16, 333 }, + [42] = { 42.1, 19.5, 16, 333 }, + [43] = { 42.2, 18.7, 16, 333 }, + [44] = { 44.2, 18.6, 16, 333 }, + [45] = { 43.5, 18.5, 16, 333 }, + [46] = { 42.8, 18.4, 16, 333 }, + [47] = { 70.9, 82, 618, 333 }, + [48] = { 70.4, 81.5, 618, 333 }, + [49] = { 70.8, 81.4, 618, 333 }, + }, + ["lvl"] = "51-52", + }, + [6190] = { + ["coords"] = { + [1] = { 35.7, 62.7, 16, 333 }, + [2] = { 34.2, 62, 16, 333 }, + [3] = { 35.3, 61.6, 16, 333 }, + [4] = { 25.8, 61.6, 16, 333 }, + [5] = { 31.1, 61, 16, 333 }, + [6] = { 33.5, 60.8, 16, 333 }, + [7] = { 32.5, 60.7, 16, 333 }, + [8] = { 30, 60.5, 16, 333 }, + [9] = { 33.2, 60.1, 16, 333 }, + [10] = { 23.8, 59.9, 16, 333 }, + [11] = { 27.7, 59.8, 16, 333 }, + [12] = { 28.9, 59.8, 16, 333 }, + [13] = { 33.9, 59.5, 16, 333 }, + [14] = { 31.9, 59.2, 16, 333 }, + [15] = { 24.4, 58.9, 16, 333 }, + [16] = { 34.1, 58.1, 16, 333 }, + [17] = { 29, 58.1, 16, 333 }, + [18] = { 33.1, 57.6, 16, 333 }, + [19] = { 26.1, 57.2, 16, 333 }, + [20] = { 33.8, 56.9, 16, 333 }, + [21] = { 27.4, 56.2, 16, 333 }, + [22] = { 26.4, 56.1, 16, 333 }, + [23] = { 31.6, 56, 16, 333 }, + [24] = { 33.6, 55.6, 16, 333 }, + [25] = { 31, 55.1, 16, 333 }, + [26] = { 25.6, 54.9, 16, 333 }, + [27] = { 27.1, 54.7, 16, 333 }, + [28] = { 30.3, 54.4, 16, 333 }, + [29] = { 26.3, 54.4, 16, 333 }, + [30] = { 31.7, 53.7, 16, 333 }, + [31] = { 29.2, 53.7, 16, 333 }, + [32] = { 31, 53, 16, 333 }, + [33] = { 29.8, 53, 16, 333 }, + [34] = { 28.5, 52.8, 16, 333 }, + [35] = { 32.4, 52.7, 16, 333 }, + [36] = { 30.5, 52.3, 16, 333 }, + [37] = { 25.3, 52.1, 16, 333 }, + [38] = { 29.5, 52, 16, 333 }, + [39] = { 31.6, 52, 16, 333 }, + [40] = { 25.7, 50.9, 16, 333 }, + [41] = { 32.5, 50.9, 16, 333 }, + [42] = { 34.5, 50.4, 16, 333 }, + [43] = { 26.4, 50, 16, 333 }, + [44] = { 32.9, 49.8, 16, 333 }, + [45] = { 29, 49.8, 16, 333 }, + [46] = { 33.8, 49.6, 16, 333 }, + [47] = { 35, 49.2, 16, 333 }, + [48] = { 36.6, 46.2, 16, 333 }, + [49] = { 37.5, 45.8, 16, 333 }, + [50] = { 38.9, 44.7, 16, 333 }, + [51] = { 38.2, 42.8, 16, 333 }, + }, + ["lvl"] = "46-47", + }, + [6193] = { + ["coords"] = { + [1] = { 35.7, 62.7, 16, 333 }, + [2] = { 34.2, 62, 16, 333 }, + [3] = { 35.3, 61.6, 16, 333 }, + [4] = { 25.8, 61.6, 16, 333 }, + [5] = { 31.1, 61, 16, 333 }, + [6] = { 33.5, 60.8, 16, 333 }, + [7] = { 32.5, 60.7, 16, 333 }, + [8] = { 30, 60.5, 16, 333 }, + [9] = { 33.2, 60.1, 16, 333 }, + [10] = { 23.8, 59.9, 16, 333 }, + [11] = { 27.7, 59.8, 16, 333 }, + [12] = { 28.9, 59.8, 16, 333 }, + [13] = { 33.9, 59.5, 16, 333 }, + [14] = { 31.9, 59.2, 16, 333 }, + [15] = { 24.4, 58.9, 16, 333 }, + [16] = { 34.1, 58.1, 16, 333 }, + [17] = { 29, 58.1, 16, 333 }, + [18] = { 33.1, 57.6, 16, 333 }, + [19] = { 26.1, 57.2, 16, 333 }, + [20] = { 33.8, 56.9, 16, 333 }, + [21] = { 27.4, 56.2, 16, 333 }, + [22] = { 26.4, 56.1, 16, 333 }, + [23] = { 31.6, 56, 16, 333 }, + [24] = { 33.6, 55.6, 16, 333 }, + [25] = { 31, 55.1, 16, 333 }, + [26] = { 25.6, 54.9, 16, 333 }, + [27] = { 27.1, 54.7, 16, 333 }, + [28] = { 30.3, 54.4, 16, 333 }, + [29] = { 26.3, 54.4, 16, 333 }, + [30] = { 31.7, 53.7, 16, 333 }, + [31] = { 29.2, 53.7, 16, 333 }, + [32] = { 31, 53, 16, 333 }, + [33] = { 29.8, 53, 16, 333 }, + [34] = { 28.5, 52.8, 16, 333 }, + [35] = { 32.4, 52.7, 16, 333 }, + [36] = { 30.5, 52.3, 16, 333 }, + [37] = { 25.3, 52.1, 16, 333 }, + [38] = { 29.5, 52, 16, 333 }, + [39] = { 31.6, 52, 16, 333 }, + [40] = { 25.7, 50.9, 16, 333 }, + [41] = { 32.5, 50.9, 16, 333 }, + [42] = { 34.5, 50.4, 16, 333 }, + [43] = { 26.4, 50, 16, 333 }, + [44] = { 32.9, 49.8, 16, 333 }, + [45] = { 29, 49.8, 16, 333 }, + [46] = { 33.8, 49.6, 16, 333 }, + [47] = { 35, 49.2, 16, 333 }, + [48] = { 36.6, 46.2, 16, 333 }, + [49] = { 37.5, 45.8, 16, 333 }, + [50] = { 38.9, 44.7, 16, 333 }, + [51] = { 38.2, 42.8, 16, 333 }, + }, + ["lvl"] = "47-48", + }, + [6194] = { + ["coords"] = { + [1] = { 43.6, 64.7, 16, 333 }, + [2] = { 40.2, 64, 16, 333 }, + [3] = { 41.6, 63.9, 16, 333 }, + [4] = { 44, 63.7, 16, 333 }, + [5] = { 42.6, 63.6, 16, 333 }, + [6] = { 39.3, 62.7, 16, 333 }, + [7] = { 37.5, 61.9, 16, 333 }, + [8] = { 40.2, 61.8, 16, 333 }, + [9] = { 38.9, 61.7, 16, 333 }, + [10] = { 41.8, 61.6, 16, 333 }, + [11] = { 37.1, 61.4, 16, 333 }, + [12] = { 39.7, 61.2, 16, 333 }, + [13] = { 38.2, 60.9, 16, 333 }, + [14] = { 39, 59.8, 16, 333 }, + [15] = { 36.4, 59.8, 16, 333 }, + [16] = { 37.1, 59, 16, 333 }, + [17] = { 35.5, 58.8, 16, 333 }, + [18] = { 39.8, 58.6, 16, 333 }, + [19] = { 38.9, 58, 16, 333 }, + [20] = { 36.4, 57.9, 16, 333 }, + [21] = { 38.1, 57.2, 16, 333 }, + [22] = { 35.7, 57, 16, 333 }, + [23] = { 39.6, 56.9, 16, 333 }, + [24] = { 36.7, 56.7, 16, 333 }, + [25] = { 35, 56.1, 16, 333 }, + [26] = { 40.2, 56, 16, 333 }, + [27] = { 37.6, 56, 16, 333 }, + [28] = { 36.3, 55.9, 16, 333 }, + [29] = { 38.9, 55.9, 16, 333 }, + [30] = { 41.1, 55.8, 16, 333 }, + [31] = { 36.9, 55.3, 16, 333 }, + [32] = { 41.1, 55.3, 16, 333 }, + [33] = { 34.4, 55.1, 16, 333 }, + [34] = { 39.5, 55, 16, 333 }, + [35] = { 35.5, 55, 16, 333 }, + [36] = { 38.2, 54.7, 16, 333 }, + [37] = { 37.7, 54.4, 16, 333 }, + [38] = { 41.1, 54.3, 16, 333 }, + [39] = { 40.9, 54, 16, 333 }, + [40] = { 38.9, 54, 16, 333 }, + [41] = { 36, 54, 16, 333 }, + [42] = { 35.2, 53.9, 16, 333 }, + [43] = { 41.4, 53.7, 16, 333 }, + [44] = { 38.1, 53, 16, 333 }, + [45] = { 40.3, 53, 16, 333 }, + [46] = { 35.7, 52.9, 16, 333 }, + [47] = { 38.8, 52.3, 16, 333 }, + [48] = { 41.7, 52.1, 16, 333 }, + [49] = { 40.5, 52.1, 16, 333 }, + [50] = { 35, 52, 16, 333 }, + [51] = { 36.1, 52, 16, 333 }, + [52] = { 37.6, 51.9, 16, 333 }, + [53] = { 41.1, 51.8, 16, 333 }, + [54] = { 37, 51.1, 16, 333 }, + [55] = { 35.6, 51, 16, 333 }, + [56] = { 41, 51, 16, 333 }, + [57] = { 38.2, 50.9, 16, 333 }, + [58] = { 39.9, 50.8, 16, 333 }, + [59] = { 41, 50.4, 16, 333 }, + [60] = { 36.1, 50.1, 16, 333 }, + [61] = { 41.6, 49.9, 16, 333 }, + [62] = { 37.9, 49.8, 16, 333 }, + [63] = { 40.3, 49.7, 16, 333 }, + [64] = { 40.8, 49.2, 16, 333 }, + [65] = { 38.2, 49.1, 16, 333 }, + [66] = { 39.5, 49.1, 16, 333 }, + [67] = { 36.9, 49, 16, 333 }, + [68] = { 37.7, 48.4, 16, 333 }, + [69] = { 38.9, 48.1, 16, 333 }, + [70] = { 36.3, 48, 16, 333 }, + [71] = { 39.9, 48, 16, 333 }, + [72] = { 39.9, 47.2, 16, 333 }, + [73] = { 41.6, 46.4, 16, 333 }, + [74] = { 40.4, 46.2, 16, 333 }, + [75] = { 39, 46.2, 16, 333 }, + }, + ["lvl"] = "48-49", + }, + [6195] = { + ["coords"] = { + [1] = { 49.4, 67.7, 16, 333 }, + [2] = { 45.9, 67.1, 16, 333 }, + [3] = { 50.2, 66.7, 16, 333 }, + [4] = { 48.8, 66.7, 16, 333 }, + [5] = { 49.4, 65.8, 16, 333 }, + [6] = { 48.2, 65.7, 16, 333 }, + [7] = { 46.5, 65.7, 16, 333 }, + [8] = { 50.1, 65, 16, 333 }, + [9] = { 47.5, 64.9, 16, 333 }, + [10] = { 48.6, 64.5, 16, 333 }, + [11] = { 47, 64, 16, 333 }, + [12] = { 48.1, 63.7, 16, 333 }, + [13] = { 49.5, 63.7, 16, 333 }, + [14] = { 46.2, 63.2, 16, 333 }, + [15] = { 47.4, 63.1, 16, 333 }, + [16] = { 48.7, 62.7, 16, 333 }, + [17] = { 50.2, 62.6, 16, 333 }, + [18] = { 45.2, 62.1, 16, 333 }, + [19] = { 48.2, 62, 16, 333 }, + [20] = { 43.1, 62, 16, 333 }, + [21] = { 46.8, 61.8, 16, 333 }, + [22] = { 44, 61.5, 16, 333 }, + [23] = { 46.1, 60.9, 16, 333 }, + [24] = { 47.5, 60.9, 16, 333 }, + [25] = { 44.9, 60.7, 16, 333 }, + [26] = { 49.5, 60.2, 16, 333 }, + [27] = { 44.2, 60, 16, 333 }, + [28] = { 46.7, 60, 16, 333 }, + [29] = { 45.5, 59.9, 16, 333 }, + [30] = { 48.1, 59.8, 16, 333 }, + [31] = { 46.1, 59, 16, 333 }, + [32] = { 47.5, 59, 16, 333 }, + [33] = { 43.5, 58.9, 16, 333 }, + [34] = { 48.8, 58.8, 16, 333 }, + [35] = { 44.6, 58.8, 16, 333 }, + [36] = { 44.4, 58, 16, 333 }, + [37] = { 48.1, 57.9, 16, 333 }, + [38] = { 45.5, 57.9, 16, 333 }, + [39] = { 46.7, 57.9, 16, 333 }, + [40] = { 49.4, 57.6, 16, 333 }, + [41] = { 47.3, 57.2, 16, 333 }, + [42] = { 44.8, 57, 16, 333 }, + [43] = { 48.8, 57, 16, 333 }, + [44] = { 46.1, 57, 16, 333 }, + [45] = { 43.6, 56.9, 16, 333 }, + [46] = { 44.1, 56.3, 16, 333 }, + [47] = { 45.5, 56, 16, 333 }, + [48] = { 49.4, 56, 16, 333 }, + [49] = { 46.8, 55.9, 16, 333 }, + [50] = { 48.1, 55.9, 16, 333 }, + [51] = { 46.1, 55, 16, 333 }, + [52] = { 44.8, 55, 16, 333 }, + [53] = { 47.1, 54.8, 16, 333 }, + [54] = { 46.9, 54.3, 16, 333 }, + [55] = { 41.1, 54.2, 16, 333 }, + [56] = { 48.2, 54, 16, 333 }, + [57] = { 45.5, 54, 16, 333 }, + [58] = { 44.4, 53.9, 16, 333 }, + [59] = { 49.5, 53.8, 16, 333 }, + [60] = { 40.2, 53.1, 16, 333 }, + [61] = { 34.5, 53, 16, 333 }, + [62] = { 47.5, 53, 16, 333 }, + [63] = { 48.8, 53, 16, 333 }, + [64] = { 46.2, 53, 16, 333 }, + [65] = { 44.8, 52.9, 16, 333 }, + [66] = { 41.9, 52.7, 16, 333 }, + [67] = { 41.1, 52, 16, 333 }, + [68] = { 48.1, 52, 16, 333 }, + [69] = { 49.6, 51.9, 16, 333 }, + [70] = { 44.1, 51.9, 16, 333 }, + [71] = { 41.4, 51.7, 16, 333 }, + [72] = { 45.4, 51.6, 16, 333 }, + [73] = { 44.8, 51, 16, 333 }, + [74] = { 46.2, 51, 16, 333 }, + [75] = { 48.8, 51, 16, 333 }, + [76] = { 47.4, 51, 16, 333 }, + [77] = { 43.7, 50.9, 16, 333 }, + [78] = { 47.4, 50.9, 16, 333 }, + [79] = { 39, 50.1, 16, 333 }, + [80] = { 47.2, 50, 16, 333 }, + [81] = { 45.5, 50, 16, 333 }, + [82] = { 44.2, 50, 16, 333 }, + [83] = { 48.1, 50, 16, 333 }, + [84] = { 48.3, 49.9, 16, 333 }, + [85] = { 48.7, 49.4, 16, 333 }, + [86] = { 48.7, 49.1, 16, 333 }, + [87] = { 46.2, 49, 16, 333 }, + [88] = { 44.8, 49, 16, 333 }, + [89] = { 47.5, 49, 16, 333 }, + [90] = { 48.3, 48.3, 16, 333 }, + [91] = { 43.9, 48.3, 16, 333 }, + [92] = { 41.6, 48.1, 16, 333 }, + [93] = { 42.9, 48.1, 16, 333 }, + [94] = { 47.1, 47.8, 16, 333 }, + [95] = { 45.6, 47.5, 16, 333 }, + [96] = { 47.7, 47.2, 16, 333 }, + [97] = { 46.1, 47, 16, 333 }, + [98] = { 43.4, 46.9, 16, 333 }, + [99] = { 46.9, 46.4, 16, 333 }, + [100] = { 48.1, 46.1, 16, 333 }, + [101] = { 49.2, 45.9, 16, 333 }, + [102] = { 47.7, 45.3, 16, 333 }, + [103] = { 43.2, 45.2, 16, 333 }, + [104] = { 46.2, 45.1, 16, 333 }, + [105] = { 48.8, 45, 16, 333 }, + [106] = { 46.8, 44.1, 16, 333 }, + [107] = { 48.4, 44, 16, 333 }, + [108] = { 45.5, 44, 16, 333 }, + [109] = { 49.4, 43.7, 16, 333 }, + [110] = { 44.8, 43.5, 16, 333 }, + [111] = { 50.2, 43.1, 16, 333 }, + [112] = { 49, 43.1, 16, 333 }, + [113] = { 46.2, 43, 16, 333 }, + [114] = { 47.6, 43, 16, 333 }, + [115] = { 47.9, 42.3, 16, 333 }, + [116] = { 43.5, 42, 16, 333 }, + [117] = { 49.5, 42, 16, 333 }, + [118] = { 45.4, 42, 16, 333 }, + [119] = { 46.8, 41.3, 16, 333 }, + [120] = { 45.1, 41.2, 16, 333 }, + [121] = { 46.4, 39.7, 16, 333 }, + [122] = { 43.6, 64.7, 16, 333 }, + [123] = { 40.2, 64, 16, 333 }, + [124] = { 41.6, 63.9, 16, 333 }, + [125] = { 44, 63.7, 16, 333 }, + [126] = { 42.6, 63.6, 16, 333 }, + [127] = { 39.3, 62.7, 16, 333 }, + [128] = { 37.5, 61.9, 16, 333 }, + [129] = { 40.2, 61.8, 16, 333 }, + [130] = { 38.9, 61.7, 16, 333 }, + [131] = { 41.8, 61.6, 16, 333 }, + [132] = { 37.1, 61.4, 16, 333 }, + [133] = { 39.7, 61.2, 16, 333 }, + [134] = { 38.2, 60.9, 16, 333 }, + [135] = { 39, 59.8, 16, 333 }, + [136] = { 36.4, 59.8, 16, 333 }, + [137] = { 37.1, 59, 16, 333 }, + [138] = { 35.5, 58.8, 16, 333 }, + [139] = { 39.8, 58.6, 16, 333 }, + [140] = { 38.9, 58, 16, 333 }, + [141] = { 36.4, 57.9, 16, 333 }, + [142] = { 38.1, 57.2, 16, 333 }, + [143] = { 35.7, 57, 16, 333 }, + [144] = { 39.6, 56.9, 16, 333 }, + [145] = { 36.7, 56.7, 16, 333 }, + [146] = { 35, 56.1, 16, 333 }, + [147] = { 40.2, 56, 16, 333 }, + [148] = { 37.6, 56, 16, 333 }, + [149] = { 36.3, 55.9, 16, 333 }, + [150] = { 38.9, 55.9, 16, 333 }, + [151] = { 41.1, 55.8, 16, 333 }, + [152] = { 36.9, 55.3, 16, 333 }, + [153] = { 41.1, 55.3, 16, 333 }, + [154] = { 34.4, 55.1, 16, 333 }, + [155] = { 39.5, 55, 16, 333 }, + [156] = { 35.5, 55, 16, 333 }, + [157] = { 38.2, 54.7, 16, 333 }, + [158] = { 37.7, 54.4, 16, 333 }, + [159] = { 41.1, 54.3, 16, 333 }, + [160] = { 40.9, 54, 16, 333 }, + [161] = { 38.9, 54, 16, 333 }, + [162] = { 36, 54, 16, 333 }, + [163] = { 35.2, 53.9, 16, 333 }, + [164] = { 41.4, 53.7, 16, 333 }, + [165] = { 38.1, 53, 16, 333 }, + [166] = { 40.3, 53, 16, 333 }, + [167] = { 35.7, 52.9, 16, 333 }, + [168] = { 38.8, 52.3, 16, 333 }, + [169] = { 41.7, 52.1, 16, 333 }, + [170] = { 40.5, 52.1, 16, 333 }, + [171] = { 35, 52, 16, 333 }, + [172] = { 36.1, 52, 16, 333 }, + [173] = { 37.6, 51.9, 16, 333 }, + [174] = { 41.1, 51.8, 16, 333 }, + [175] = { 37, 51.1, 16, 333 }, + [176] = { 35.6, 51, 16, 333 }, + [177] = { 41, 51, 16, 333 }, + [178] = { 38.2, 50.9, 16, 333 }, + [179] = { 39.9, 50.8, 16, 333 }, + [180] = { 41, 50.4, 16, 333 }, + [181] = { 36.1, 50.1, 16, 333 }, + [182] = { 41.6, 49.9, 16, 333 }, + [183] = { 37.9, 49.8, 16, 333 }, + [184] = { 40.3, 49.7, 16, 333 }, + [185] = { 40.8, 49.2, 16, 333 }, + [186] = { 38.2, 49.1, 16, 333 }, + [187] = { 39.5, 49.1, 16, 333 }, + [188] = { 36.9, 49, 16, 333 }, + [189] = { 37.7, 48.4, 16, 333 }, + [190] = { 38.9, 48.1, 16, 333 }, + [191] = { 36.3, 48, 16, 333 }, + [192] = { 39.9, 48, 16, 333 }, + [193] = { 39.9, 47.2, 16, 333 }, + [194] = { 41.6, 46.4, 16, 333 }, + [195] = { 40.4, 46.2, 16, 333 }, + [196] = { 39, 46.2, 16, 333 }, + }, + ["lvl"] = "51-52", + }, + [6196] = { + ["coords"] = { + [1] = { 49.4, 67.7, 16, 333 }, + [2] = { 45.9, 67.1, 16, 333 }, + [3] = { 50.2, 66.7, 16, 333 }, + [4] = { 48.8, 66.7, 16, 333 }, + [5] = { 49.4, 65.8, 16, 333 }, + [6] = { 48.2, 65.7, 16, 333 }, + [7] = { 46.5, 65.7, 16, 333 }, + [8] = { 50.1, 65, 16, 333 }, + [9] = { 47.5, 64.9, 16, 333 }, + [10] = { 48.6, 64.5, 16, 333 }, + [11] = { 47, 64, 16, 333 }, + [12] = { 48.1, 63.7, 16, 333 }, + [13] = { 49.5, 63.7, 16, 333 }, + [14] = { 46.2, 63.2, 16, 333 }, + [15] = { 47.4, 63.1, 16, 333 }, + [16] = { 48.7, 62.7, 16, 333 }, + [17] = { 50.2, 62.6, 16, 333 }, + [18] = { 45.2, 62.1, 16, 333 }, + [19] = { 48.2, 62, 16, 333 }, + [20] = { 43.1, 62, 16, 333 }, + [21] = { 46.8, 61.8, 16, 333 }, + [22] = { 44, 61.5, 16, 333 }, + [23] = { 46.1, 60.9, 16, 333 }, + [24] = { 47.5, 60.9, 16, 333 }, + [25] = { 44.9, 60.7, 16, 333 }, + [26] = { 44.2, 60, 16, 333 }, + [27] = { 46.7, 60, 16, 333 }, + [28] = { 45.5, 59.9, 16, 333 }, + [29] = { 48.1, 59.8, 16, 333 }, + [30] = { 46.1, 59, 16, 333 }, + [31] = { 47.5, 59, 16, 333 }, + [32] = { 43.5, 58.9, 16, 333 }, + [33] = { 48.8, 58.8, 16, 333 }, + [34] = { 44.6, 58.8, 16, 333 }, + [35] = { 44.4, 58, 16, 333 }, + [36] = { 48.1, 57.9, 16, 333 }, + [37] = { 45.5, 57.9, 16, 333 }, + [38] = { 46.7, 57.9, 16, 333 }, + [39] = { 49.4, 57.6, 16, 333 }, + [40] = { 47.3, 57.2, 16, 333 }, + [41] = { 44.8, 57, 16, 333 }, + [42] = { 48.8, 57, 16, 333 }, + [43] = { 46.1, 57, 16, 333 }, + [44] = { 44.1, 56.3, 16, 333 }, + [45] = { 45.5, 56, 16, 333 }, + [46] = { 49.4, 56, 16, 333 }, + [47] = { 46.8, 55.9, 16, 333 }, + [48] = { 48.1, 55.9, 16, 333 }, + [49] = { 46.1, 55, 16, 333 }, + [50] = { 44.8, 55, 16, 333 }, + [51] = { 47.1, 54.8, 16, 333 }, + [52] = { 46.9, 54.3, 16, 333 }, + [53] = { 48.2, 54, 16, 333 }, + [54] = { 45.5, 54, 16, 333 }, + [55] = { 44.4, 53.9, 16, 333 }, + [56] = { 40.2, 53.1, 16, 333 }, + [57] = { 47.5, 53, 16, 333 }, + [58] = { 48.8, 53, 16, 333 }, + [59] = { 46.2, 53, 16, 333 }, + [60] = { 44.8, 52.9, 16, 333 }, + [61] = { 41.9, 52.7, 16, 333 }, + [62] = { 41.1, 52, 16, 333 }, + [63] = { 48.1, 52, 16, 333 }, + [64] = { 49.6, 51.9, 16, 333 }, + [65] = { 44.1, 51.9, 16, 333 }, + [66] = { 45.4, 51.6, 16, 333 }, + [67] = { 44.8, 51, 16, 333 }, + [68] = { 46.2, 51, 16, 333 }, + [69] = { 48.8, 51, 16, 333 }, + [70] = { 47.4, 51, 16, 333 }, + [71] = { 43.7, 50.9, 16, 333 }, + [72] = { 47.4, 50.9, 16, 333 }, + [73] = { 47.2, 50, 16, 333 }, + [74] = { 45.5, 50, 16, 333 }, + [75] = { 44.2, 50, 16, 333 }, + [76] = { 48.1, 50, 16, 333 }, + [77] = { 48.3, 49.9, 16, 333 }, + [78] = { 48.7, 49.4, 16, 333 }, + [79] = { 48.7, 49.1, 16, 333 }, + [80] = { 46.2, 49, 16, 333 }, + [81] = { 44.8, 49, 16, 333 }, + [82] = { 47.5, 49, 16, 333 }, + [83] = { 48.3, 48.3, 16, 333 }, + [84] = { 43.9, 48.3, 16, 333 }, + [85] = { 41.6, 48.1, 16, 333 }, + [86] = { 42.9, 48.1, 16, 333 }, + [87] = { 47.1, 47.8, 16, 333 }, + [88] = { 45.6, 47.5, 16, 333 }, + [89] = { 47.7, 47.2, 16, 333 }, + [90] = { 46.1, 47, 16, 333 }, + [91] = { 43.4, 46.9, 16, 333 }, + [92] = { 46.9, 46.4, 16, 333 }, + [93] = { 48.1, 46.1, 16, 333 }, + [94] = { 49.2, 45.9, 16, 333 }, + [95] = { 47.7, 45.3, 16, 333 }, + [96] = { 43.2, 45.2, 16, 333 }, + [97] = { 46.2, 45.1, 16, 333 }, + [98] = { 48.8, 45, 16, 333 }, + [99] = { 46.8, 44.1, 16, 333 }, + [100] = { 48.4, 44, 16, 333 }, + [101] = { 45.5, 44, 16, 333 }, + [102] = { 49.4, 43.7, 16, 333 }, + [103] = { 50.2, 43.1, 16, 333 }, + [104] = { 49, 43.1, 16, 333 }, + [105] = { 46.2, 43, 16, 333 }, + [106] = { 47.6, 43, 16, 333 }, + [107] = { 47.9, 42.3, 16, 333 }, + [108] = { 43.5, 42, 16, 333 }, + [109] = { 49.5, 42, 16, 333 }, + [110] = { 45.4, 42, 16, 333 }, + [111] = { 46.8, 41.3, 16, 333 }, + [112] = { 45.1, 41.2, 16, 333 }, + [113] = { 46.4, 39.7, 16, 333 }, + }, + ["lvl"] = "50-51", + }, + [6197] = { + ["coords"] = {}, + ["lvl"] = "49-50", + }, + [6198] = { + ["coords"] = { + [1] = { 58.3, 31, 16, 333 }, + [2] = { 55.8, 30.7, 16, 333 }, + [3] = { 57, 30.4, 16, 333 }, + [4] = { 57.9, 30.4, 16, 333 }, + [5] = { 55.7, 30.1, 16, 333 }, + [6] = { 56.6, 30, 16, 333 }, + [7] = { 56.2, 29.9, 16, 333 }, + [8] = { 56.2, 29.8, 16, 333 }, + [9] = { 56, 29.4, 16, 333 }, + [10] = { 55.5, 29.4, 16, 333 }, + [11] = { 59.1, 29.3, 16, 333 }, + [12] = { 58.8, 29.2, 16, 333 }, + [13] = { 56.4, 28.8, 16, 333 }, + [14] = { 55.4, 28.6, 16, 333 }, + [15] = { 58.8, 28.5, 16, 333 }, + [16] = { 58.6, 28.5, 16, 333 }, + [17] = { 59.2, 28.5, 16, 333 }, + [18] = { 58.7, 28.3, 16, 333 }, + [19] = { 58, 28.3, 16, 333 }, + [20] = { 56.7, 28.1, 16, 333 }, + [21] = { 55.3, 27.6, 16, 333 }, + [22] = { 58, 27.5, 16, 333 }, + [23] = { 58.7, 27.4, 16, 333 }, + [24] = { 56.7, 27.3, 16, 333 }, + [25] = { 55.9, 27, 16, 333 }, + [26] = { 55.3, 26.5, 16, 333 }, + [27] = { 57.9, 26.4, 16, 333 }, + [28] = { 57.4, 26.3, 16, 333 }, + [29] = { 55.9, 26.2, 16, 333 }, + [30] = { 56.6, 25.5, 16, 333 }, + }, + ["lvl"] = "51-52", + }, + [6199] = { + ["coords"] = { + [1] = { 58.3, 31, 16, 333 }, + [2] = { 55.8, 30.7, 16, 333 }, + [3] = { 57, 30.4, 16, 333 }, + [4] = { 57.9, 30.4, 16, 333 }, + [5] = { 55.7, 30.1, 16, 333 }, + [6] = { 56.6, 30, 16, 333 }, + [7] = { 56.2, 29.9, 16, 333 }, + [8] = { 56.2, 29.8, 16, 333 }, + [9] = { 56, 29.4, 16, 333 }, + [10] = { 55.5, 29.4, 16, 333 }, + [11] = { 59.1, 29.3, 16, 333 }, + [12] = { 58.8, 29.2, 16, 333 }, + [13] = { 56.4, 28.8, 16, 333 }, + [14] = { 55.4, 28.6, 16, 333 }, + [15] = { 58.8, 28.5, 16, 333 }, + [16] = { 58.6, 28.5, 16, 333 }, + [17] = { 59.2, 28.5, 16, 333 }, + [18] = { 58.7, 28.3, 16, 333 }, + [19] = { 58, 28.3, 16, 333 }, + [20] = { 56.7, 28.1, 16, 333 }, + [21] = { 55.3, 27.6, 16, 333 }, + [22] = { 58, 27.5, 16, 333 }, + [23] = { 58.7, 27.4, 16, 333 }, + [24] = { 56.7, 27.3, 16, 333 }, + [25] = { 55.9, 27, 16, 333 }, + [26] = { 55.3, 26.5, 16, 333 }, + [27] = { 57.9, 26.4, 16, 333 }, + [28] = { 57.4, 26.3, 16, 333 }, + [29] = { 55.9, 26.2, 16, 333 }, + [30] = { 56.6, 25.5, 16, 333 }, + }, + ["lvl"] = "52-53", + }, + [6200] = { + ["coords"] = { + [1] = { 61.9, 26.8, 16, 333 }, + [2] = { 61.2, 26.4, 16, 333 }, + [3] = { 62.4, 26.3, 16, 333 }, + [4] = { 62.1, 25.9, 16, 333 }, + [5] = { 62.8, 25.5, 16, 333 }, + [6] = { 60.6, 25.5, 16, 333 }, + [7] = { 61.4, 25.2, 16, 333 }, + [8] = { 60.7, 25.1, 16, 333 }, + [9] = { 61.4, 25, 16, 333 }, + [10] = { 61.8, 24.5, 16, 333 }, + [11] = { 60.6, 24.4, 16, 333 }, + [12] = { 60, 24.4, 16, 333 }, + [13] = { 62.6, 24.4, 16, 333 }, + [14] = { 61, 24.1, 16, 333 }, + [15] = { 61.8, 23.6, 16, 333 }, + [16] = { 61.2, 23.4, 16, 333 }, + [17] = { 60.7, 23.4, 16, 333 }, + [18] = { 62.6, 23.4, 16, 333 }, + [19] = { 51.8, 20.7, 16, 333 }, + [20] = { 52.1, 20.4, 16, 333 }, + [21] = { 66.4, 19.7, 16, 333 }, + [22] = { 50.1, 19.6, 16, 333 }, + [23] = { 66.8, 19.4, 16, 333 }, + [24] = { 52.1, 19.1, 16, 333 }, + [25] = { 52.5, 19, 16, 333 }, + [26] = { 52.1, 18.7, 16, 333 }, + [27] = { 65.8, 18.6, 16, 333 }, + [28] = { 66.4, 18.5, 16, 333 }, + [29] = { 67, 18.5, 16, 333 }, + [30] = { 50.7, 18.4, 16, 333 }, + [31] = { 68.6, 18.3, 16, 333 }, + [32] = { 51.4, 18.2, 16, 333 }, + [33] = { 67.2, 17.7, 16, 333 }, + [34] = { 68, 17.7, 16, 333 }, + [35] = { 66.6, 17.6, 16, 333 }, + [36] = { 50.8, 17.6, 16, 333 }, + [37] = { 65.8, 17.6, 16, 333 }, + [38] = { 51.3, 17.5, 16, 333 }, + [39] = { 65.2, 17.4, 16, 333 }, + [40] = { 52.2, 17.1, 16, 333 }, + [41] = { 65.9, 16.9, 16, 333 }, + [42] = { 66.4, 16.8, 16, 333 }, + [43] = { 66.2, 16.7, 16, 333 }, + [44] = { 66, 16.5, 16, 333 }, + [45] = { 65.3, 16.4, 16, 333 }, + [46] = { 67.2, 16.3, 16, 333 }, + [47] = { 65.9, 15.6, 16, 333 }, + [48] = { 66.6, 15.4, 16, 333 }, + }, + ["lvl"] = "51-52", + }, + [6201] = { + ["coords"] = { + [1] = { 61.9, 26.8, 16, 333 }, + [2] = { 61.2, 26.4, 16, 333 }, + [3] = { 62.4, 26.3, 16, 333 }, + [4] = { 62.1, 25.9, 16, 333 }, + [5] = { 62.8, 25.5, 16, 333 }, + [6] = { 60.6, 25.5, 16, 333 }, + [7] = { 61.4, 25.2, 16, 333 }, + [8] = { 60.7, 25.1, 16, 333 }, + [9] = { 61.4, 25, 16, 333 }, + [10] = { 61.8, 24.5, 16, 333 }, + [11] = { 60.6, 24.4, 16, 333 }, + [12] = { 60, 24.4, 16, 333 }, + [13] = { 62.6, 24.4, 16, 333 }, + [14] = { 61, 24.1, 16, 333 }, + [15] = { 61.8, 23.6, 16, 333 }, + [16] = { 61.2, 23.4, 16, 333 }, + [17] = { 60.7, 23.4, 16, 333 }, + [18] = { 62.6, 23.4, 16, 333 }, + [19] = { 51.8, 20.7, 16, 333 }, + [20] = { 52.1, 20.4, 16, 333 }, + [21] = { 66.4, 19.7, 16, 333 }, + [22] = { 50.1, 19.6, 16, 333 }, + [23] = { 66.8, 19.4, 16, 333 }, + [24] = { 52.1, 19.1, 16, 333 }, + [25] = { 52.5, 19, 16, 333 }, + [26] = { 52.1, 18.7, 16, 333 }, + [27] = { 65.8, 18.6, 16, 333 }, + [28] = { 66.4, 18.5, 16, 333 }, + [29] = { 67, 18.5, 16, 333 }, + [30] = { 50.7, 18.4, 16, 333 }, + [31] = { 68.6, 18.3, 16, 333 }, + [32] = { 51.4, 18.2, 16, 333 }, + [33] = { 67.2, 17.7, 16, 333 }, + [34] = { 68, 17.7, 16, 333 }, + [35] = { 66.6, 17.6, 16, 333 }, + [36] = { 50.8, 17.6, 16, 333 }, + [37] = { 65.8, 17.6, 16, 333 }, + [38] = { 51.3, 17.5, 16, 333 }, + [39] = { 65.2, 17.4, 16, 333 }, + [40] = { 52.2, 17.1, 16, 333 }, + [41] = { 65.9, 16.9, 16, 333 }, + [42] = { 66.4, 16.8, 16, 333 }, + [43] = { 66.2, 16.7, 16, 333 }, + [44] = { 66, 16.5, 16, 333 }, + [45] = { 65.3, 16.4, 16, 333 }, + [46] = { 67.2, 16.3, 16, 333 }, + [47] = { 65.9, 15.6, 16, 333 }, + [48] = { 66.6, 15.4, 16, 333 }, + }, + ["lvl"] = "51-53", + }, + [6202] = { + ["coords"] = { + [1] = { 61.9, 26.8, 16, 333 }, + [2] = { 61.2, 26.4, 16, 333 }, + [3] = { 62.4, 26.3, 16, 333 }, + [4] = { 62.1, 25.9, 16, 333 }, + [5] = { 62.8, 25.5, 16, 333 }, + [6] = { 60.6, 25.5, 16, 333 }, + [7] = { 61.4, 25.2, 16, 333 }, + [8] = { 60.7, 25.1, 16, 333 }, + [9] = { 61.4, 25, 16, 333 }, + [10] = { 61.8, 24.5, 16, 333 }, + [11] = { 60.6, 24.4, 16, 333 }, + [12] = { 60, 24.4, 16, 333 }, + [13] = { 62.6, 24.4, 16, 333 }, + [14] = { 61, 24.1, 16, 333 }, + [15] = { 61.8, 23.6, 16, 333 }, + [16] = { 61.2, 23.4, 16, 333 }, + [17] = { 60.7, 23.4, 16, 333 }, + [18] = { 62.6, 23.4, 16, 333 }, + [19] = { 51.8, 20.7, 16, 333 }, + [20] = { 52.1, 20.4, 16, 333 }, + [21] = { 66.4, 19.7, 16, 333 }, + [22] = { 50.1, 19.6, 16, 333 }, + [23] = { 66.8, 19.4, 16, 333 }, + [24] = { 52.1, 19.1, 16, 333 }, + [25] = { 52.5, 19, 16, 333 }, + [26] = { 52.1, 18.7, 16, 333 }, + [27] = { 65.8, 18.6, 16, 333 }, + [28] = { 66.4, 18.5, 16, 333 }, + [29] = { 67, 18.5, 16, 333 }, + [30] = { 50.7, 18.4, 16, 333 }, + [31] = { 68.6, 18.3, 16, 333 }, + [32] = { 51.4, 18.2, 16, 333 }, + [33] = { 67.2, 17.7, 16, 333 }, + [34] = { 68, 17.7, 16, 333 }, + [35] = { 66.6, 17.6, 16, 333 }, + [36] = { 50.8, 17.6, 16, 333 }, + [37] = { 65.8, 17.6, 16, 333 }, + [38] = { 51.3, 17.5, 16, 333 }, + [39] = { 65.2, 17.4, 16, 333 }, + [40] = { 52.2, 17.1, 16, 333 }, + [41] = { 65.9, 16.9, 16, 333 }, + [42] = { 66.4, 16.8, 16, 333 }, + [43] = { 66.2, 16.7, 16, 333 }, + [44] = { 66, 16.5, 16, 333 }, + [45] = { 65.3, 16.4, 16, 333 }, + [46] = { 67.2, 16.3, 16, 333 }, + [47] = { 65.9, 15.6, 16, 333 }, + [48] = { 66.6, 15.4, 16, 333 }, + }, + ["lvl"] = "52-53", + }, + [6206] = { + ["coords"] = {}, + ["lvl"] = "25-27", + ["rnk"] = "1", + }, + [6207] = { + ["coords"] = {}, + ["lvl"] = "25-27", + }, + [6208] = { + ["coords"] = { + [1] = { 18.1, 39.3, 1, 1677 }, + [2] = { 21.7, 34, 1, 1677 }, + [3] = { 21.8, 33.1, 1, 1677 }, + }, + ["lvl"] = "25-26", + ["rnk"] = "1", + }, + [6209] = { + ["coords"] = { + [1] = { 18.7, 38.7, 1, 1704 }, + [2] = { 19.3, 36.6, 1, 1704 }, + [3] = { 23, 31.9, 1, 1704 }, + [4] = { 21.1, 31.5, 1, 1704 }, + }, + ["lvl"] = "26", + ["rnk"] = "1", + }, + [6210] = { + ["coords"] = { + [1] = { 18.8, 39.2, 1, 1623 }, + [2] = { 20.4, 36.9, 1, 1623 }, + [3] = { 21.8, 33.7, 1, 1623 }, + }, + ["lvl"] = "24-25", + ["rnk"] = "1", + }, + [6211] = { + ["coords"] = {}, + ["lvl"] = "27-28", + ["rnk"] = "1", + }, + [6212] = { + ["coords"] = {}, + ["lvl"] = "32-33", + ["rnk"] = "1", + }, + [6213] = { + ["coords"] = { + [1] = { 19.3, 38.8, 1, 1650 }, + [2] = { 19.7, 36.7, 1, 1650 }, + [3] = { 20.9, 36, 1, 1650 }, + [4] = { 22.1, 34.1, 1, 1650 }, + [5] = { 21.8, 32.2, 1, 1650 }, + }, + ["lvl"] = "24-26", + ["rnk"] = "1", + }, + [6214] = { + ["coords"] = {}, + ["lvl"] = "27", + ["rnk"] = "1", + }, + [6215] = { + ["coords"] = {}, + ["lvl"] = "30", + ["rnk"] = "1", + }, + [6218] = { + ["coords"] = {}, + ["lvl"] = "27-28", + ["rnk"] = "1", + }, + [6219] = { + ["coords"] = {}, + ["lvl"] = "28-29", + ["rnk"] = "1", + }, + [6220] = { + ["coords"] = {}, + ["lvl"] = "28-29", + ["rnk"] = "1", + }, + [6221] = { + ["coords"] = { + [1] = { 23.1, 39.5, 1, 300 }, + [2] = { 22.4, 39.3, 1, 300 }, + [3] = { 22.8, 39.2, 1, 300 }, + [4] = { 21.8, 39.2, 1, 300 }, + [5] = { 22.6, 39.2, 1, 300 }, + [6] = { 22.5, 39.1, 1, 300 }, + [7] = { 22.2, 39.1, 1, 300 }, + [8] = { 22.8, 39.1, 1, 300 }, + [9] = { 22.8, 39, 1, 300 }, + [10] = { 23.5, 38.9, 1, 300 }, + [11] = { 22.5, 38.8, 1, 300 }, + [12] = { 21.9, 38.7, 1, 300 }, + [13] = { 21.9, 38.6, 1, 300 }, + }, + ["lvl"] = "24-25", + }, + [6222] = { + ["coords"] = {}, + ["lvl"] = "29-30", + }, + [6223] = { + ["coords"] = {}, + ["lvl"] = "28-29", + ["rnk"] = "1", + }, + [6224] = { + ["coords"] = {}, + ["lvl"] = "29-30", + }, + [6225] = { + ["coords"] = {}, + ["lvl"] = "29-30", + ["rnk"] = "1", + }, + [6226] = { + ["coords"] = {}, + ["lvl"] = "30-31", + ["rnk"] = "1", + }, + [6227] = { + ["coords"] = {}, + ["lvl"] = "31-32", + ["rnk"] = "1", + }, + [6228] = { + ["coords"] = {}, + ["lvl"] = "33", + ["rnk"] = "2", + }, + [6229] = { + ["coords"] = {}, + ["lvl"] = "32", + ["rnk"] = "1", + }, + [6230] = { + ["coords"] = {}, + ["lvl"] = "30-31", + ["rnk"] = "1", + }, + [6231] = { + ["coords"] = { + [1] = { 19.8, 31.9, 1, 120 }, + }, + ["lvl"] = "26", + ["rnk"] = "1", + }, + [6232] = { + ["coords"] = {}, + ["lvl"] = "32-33", + ["rnk"] = "1", + }, + [6233] = { + ["coords"] = {}, + ["lvl"] = "28-29", + ["rnk"] = "1", + }, + [6234] = { + ["coords"] = {}, + ["lvl"] = "31-32", + ["rnk"] = "1", + }, + [6235] = { + ["coords"] = {}, + ["lvl"] = "32", + ["rnk"] = "1", + }, + [6236] = { + ["coords"] = { + [1] = { 68.6, 49.2, 17, 275 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [6237] = { + ["coords"] = { + [1] = { 40.9, 57.3, 1519, 540 }, + [2] = { 40.6, 57.2, 1519, 540 }, + [3] = { 41.6, 56.6, 1519, 540 }, + [4] = { 41.5, 55.9, 1519, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [6238] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "33", + }, + [6239] = { + ["coords"] = {}, + ["lvl"] = "40", + ["rnk"] = "1", + }, + [6240] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "26-27", + }, + [6241] = { + ["coords"] = { + [1] = { 36, 44.9, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [6242] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [6243] = { + ["coords"] = {}, + ["lvl"] = "26", + ["rnk"] = "1", + }, + [6244] = { + ["coords"] = { + [1] = { 49.3, 57.1, 17, 275 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [6245] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "19", + }, + [6246] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "19", + }, + [6247] = { + ["coords"] = { + [1] = { 49.3, 57.2, 17, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "40", + }, + [6248] = { + ["coords"] = { + [1] = { 68.5, 48.8, 17, 275 }, + }, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [6249] = { + ["coords"] = { + [1] = { 68.6, 48.8, 17, 275 }, + [2] = { 68.7, 48.8, 17, 275 }, + [3] = { 68.5, 48.8, 17, 275 }, + [4] = { 68.6, 48.7, 17, 275 }, + [5] = { 68.7, 48.7, 17, 275 }, + [6] = { 68.6, 48.6, 17, 275 }, + }, + ["fac"] = "AH", + ["lvl"] = "22-43", + }, + [6250] = { + ["coords"] = {}, + ["lvl"] = "11-12", + }, + [6251] = { + ["coords"] = { + [1] = { 62.6, 35.5, 17, 275 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [6252] = { + ["coords"] = { + [1] = { 62.6, 35.2, 17, 413 }, + }, + ["fac"] = "AH", + ["lvl"] = "20", + }, + [6253] = { + ["coords"] = { + [1] = { 62.6, 35.2, 17, 413 }, + }, + ["fac"] = "AH", + ["lvl"] = "20", + }, + [6254] = { + ["coords"] = { + [1] = { 62.6, 35.3, 17, 413 }, + }, + ["fac"] = "AH", + ["lvl"] = "20", + }, + [6266] = { + ["coords"] = { + [1] = { 62.5, 35.4, 17, 275 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [6267] = { + ["coords"] = { + [1] = { 25.3, 76.1, 1519, 285 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [6268] = { + ["coords"] = { + [1] = { 79.3, 26.5, 45, 0 }, + [2] = { 55.8, 87.1, 47, 0 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [6269] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [6270] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "20", + }, + [6271] = { + ["coords"] = { + [1] = { 35.9, 76.6, 40, 300 }, + [2] = { 32.5, 71.8, 40, 300 }, + [3] = { 51.8, 53.9, 40, 300 }, + [4] = { 60.2, 43.3, 40, 300 }, + }, + ["lvl"] = "1", + }, + [6272] = { + ["coords"] = { + [1] = { 66.6, 45.2, 15, 360 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [6286] = { + ["coords"] = { + [1] = { 57.1, 61.3, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "13", + }, + [6287] = { + ["coords"] = { + [1] = { 42.1, 50, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "19", + }, + [6288] = { + ["coords"] = { + [1] = { 50, 67.3, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "23", + }, + [6289] = { + ["coords"] = { + [1] = { 65.6, 60, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "13", + }, + [6290] = { + ["coords"] = { + [1] = { 45.5, 57.8, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "8", + }, + [6291] = { + ["coords"] = { + [1] = { 39.9, 32.5, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [6292] = { + ["coords"] = { + [1] = { 30.5, 51.6, 141, 300 }, + [2] = { 64.1, 22.3, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [6293] = { + ["coords"] = { + [1] = { 75.9, 37.9, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [6294] = { + ["coords"] = { + [1] = { 74.2, 9.4, 1537, 285 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [6295] = { + ["coords"] = { + [1] = { 88.8, 71.3, 44, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "29", + }, + [6296] = { + ["coords"] = {}, + ["lvl"] = "17-18", + }, + [6297] = { + ["coords"] = { + [1] = { 38.2, 41, 148, 275 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [6298] = { + ["coords"] = { + [1] = { 38.2, 41.2, 148, 275 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [6299] = { + ["coords"] = { + [1] = { 38.2, 40.9, 148, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [6300] = { + ["coords"] = { + [1] = { 38.1, 41.1, 148, 275 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [6301] = { + ["coords"] = { + [1] = { 38.1, 41.2, 148, 275 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [6306] = { + ["coords"] = { + [1] = { 46.2, 62.2, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "12", + }, + [6326] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "45", + }, + [6327] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "45", + }, + [6328] = { + ["coords"] = { + [1] = { 47.3, 53.7, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "14", + }, + [6329] = { + ["coords"] = {}, + ["lvl"] = "25-26", + ["rnk"] = "1", + }, + [6346] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [6347] = { + ["coords"] = { + [1] = { 88.2, 17.4, 16, 333 }, + [2] = { 88.2, 15.7, 16, 333 }, + [3] = { 88.3, 13.5, 16, 333 }, + [4] = { 83.5, 12.7, 16, 333 }, + [5] = { 86.3, 12.6, 16, 333 }, + [6] = { 84.2, 11.8, 16, 333 }, + [7] = { 85.5, 11.7, 16, 333 }, + [8] = { 83, 11.6, 16, 333 }, + [9] = { 58, 9.9, 16, 333 }, + [10] = { 84.3, 8.4, 16, 333 }, + }, + ["lvl"] = "51-52", + }, + [6348] = { + ["coords"] = { + [1] = { 54.2, 42.3, 16, 333 }, + [2] = { 52.5, 42, 16, 333 }, + [3] = { 90.9, 38.2, 16, 333 }, + [4] = { 91.5, 37.3, 16, 333 }, + [5] = { 88.9, 37.3, 16, 333 }, + [6] = { 92.1, 36.3, 16, 333 }, + [7] = { 67.8, 33.1, 16, 333 }, + [8] = { 90.9, 32.5, 16, 333 }, + [9] = { 84.1, 32.3, 16, 333 }, + [10] = { 88.2, 32.1, 16, 333 }, + [11] = { 86.2, 31.1, 16, 333 }, + [12] = { 90.2, 31.1, 16, 333 }, + [13] = { 83.6, 29.2, 16, 333 }, + [14] = { 88.9, 29.1, 16, 333 }, + [15] = { 88.2, 28.5, 16, 333 }, + [16] = { 86.9, 26.5, 16, 333 }, + [17] = { 86.3, 25.6, 16, 333 }, + [18] = { 89.6, 22.4, 16, 333 }, + }, + ["lvl"] = "52-53", + }, + [6349] = { + ["coords"] = { + [1] = { 63.4, 97.6, 16, 333 }, + [2] = { 64.3, 97.5, 16, 333 }, + [3] = { 62.7, 96.3, 16, 333 }, + [4] = { 64, 96, 16, 333 }, + [5] = { 50.3, 95.6, 16, 333 }, + [6] = { 57.9, 95.2, 16, 333 }, + [7] = { 52.6, 95.2, 16, 333 }, + [8] = { 60, 94.3, 16, 333 }, + [9] = { 77.7, 94.2, 16, 180 }, + [10] = { 46.1, 93.7, 16, 333 }, + [11] = { 60.7, 93.6, 16, 333 }, + [12] = { 79.3, 92.8, 16, 180 }, + [13] = { 80.1, 91.8, 16, 180 }, + [14] = { 76.1, 91.1, 16, 180 }, + [15] = { 76.1, 90.7, 16, 180 }, + [16] = { 78.4, 88.6, 16, 180 }, + [17] = { 68.6, 88.3, 16, 333 }, + [18] = { 68.3, 87.8, 16, 333 }, + [19] = { 79.6, 87.4, 16, 180 }, + [20] = { 61.1, 86.9, 16, 333 }, + [21] = { 67.4, 86.1, 16, 333 }, + [22] = { 79, 84.7, 16, 180 }, + [23] = { 80.8, 83.8, 16, 180 }, + [24] = { 79.7, 79.6, 16, 180 }, + [25] = { 77.9, 75.4, 16, 180 }, + [26] = { 69.2, 75.1, 16, 333 }, + [27] = { 69.2, 73, 16, 333 }, + [28] = { 55.9, 71.7, 16, 333 }, + [29] = { 65.8, 71.7, 16, 333 }, + [30] = { 53.8, 68.8, 16, 333 }, + }, + ["lvl"] = "53-54", + }, + [6350] = { + ["coords"] = { + [1] = { 57.2, 96.1, 16, 333 }, + [2] = { 58.5, 96, 16, 333 }, + [3] = { 51.3, 95.4, 16, 333 }, + [4] = { 78.9, 93.9, 16, 180 }, + [5] = { 61.9, 93.5, 16, 333 }, + [6] = { 79.6, 89.4, 16, 180 }, + [7] = { 61.4, 88.3, 16, 333 }, + [8] = { 81, 87.7, 16, 180 }, + [9] = { 65.8, 86.5, 16, 333 }, + [10] = { 78, 81.6, 16, 180 }, + [11] = { 78.3, 79.5, 16, 180 }, + [12] = { 70.5, 74.8, 16, 333 }, + [13] = { 67.7, 74.5, 16, 333 }, + [14] = { 68.6, 74.2, 16, 333 }, + [15] = { 73.8, 73.7, 16, 180 }, + [16] = { 62.6, 73, 16, 333 }, + [17] = { 60, 72.8, 16, 333 }, + [18] = { 64.6, 71.9, 16, 333 }, + [19] = { 61.8, 71.6, 16, 333 }, + [20] = { 63.8, 70.9, 16, 333 }, + [21] = { 59.9, 70.7, 16, 333 }, + [22] = { 55.4, 70.4, 16, 333 }, + [23] = { 53.6, 69.7, 16, 333 }, + [24] = { 54.5, 67.9, 16, 333 }, + }, + ["lvl"] = "54-55", + }, + [6351] = { + ["coords"] = { + [1] = { 65, 96.5, 16, 333 }, + [2] = { 66.5, 96.1, 16, 333 }, + [3] = { 56.6, 95.7, 16, 333 }, + [4] = { 67.2, 95.6, 16, 333 }, + [5] = { 55.3, 95.3, 16, 333 }, + [6] = { 62, 95.1, 16, 333 }, + [7] = { 62.6, 94.5, 16, 333 }, + [8] = { 50.7, 94.1, 16, 333 }, + [9] = { 47, 92.2, 16, 333 }, + [10] = { 48.3, 92, 16, 333 }, + [11] = { 80.2, 89.5, 16, 180 }, + [12] = { 65.6, 85.4, 16, 333 }, + [13] = { 65.4, 84.7, 16, 333 }, + [14] = { 78.3, 84, 16, 180 }, + [15] = { 78, 84, 16, 180 }, + [16] = { 79.7, 83.3, 16, 180 }, + [17] = { 80.2, 81.6, 16, 180 }, + [18] = { 81, 79.6, 16, 180 }, + [19] = { 67.2, 78.8, 16, 333 }, + [20] = { 64.3, 78.2, 16, 333 }, + [21] = { 60.7, 76.6, 16, 333 }, + [22] = { 63.1, 74.1, 16, 333 }, + [23] = { 68.6, 71.9, 16, 333 }, + [24] = { 63.1, 71.7, 16, 333 }, + [25] = { 60.5, 71.6, 16, 333 }, + [26] = { 65.3, 71, 16, 333 }, + }, + ["lvl"] = "54-55", + }, + [6352] = { + ["coords"] = { + [1] = { 65.8, 97, 16, 333 }, + [2] = { 53.3, 96, 16, 333 }, + [3] = { 60.6, 95.5, 16, 333 }, + [4] = { 63.1, 95.3, 16, 333 }, + [5] = { 59.1, 95.3, 16, 333 }, + [6] = { 54, 95.2, 16, 333 }, + [7] = { 47.3, 93.3, 16, 333 }, + [8] = { 45.3, 92.3, 16, 333 }, + [9] = { 77.8, 87.7, 16, 180 }, + [10] = { 79.1, 86.3, 16, 180 }, + [11] = { 80.3, 85.3, 16, 180 }, + [12] = { 63.8, 85, 16, 333 }, + [13] = { 63, 83.5, 16, 333 }, + [14] = { 79, 82.6, 16, 180 }, + [15] = { 78.9, 77.7, 16, 180 }, + [16] = { 77.9, 77.6, 16, 180 }, + [17] = { 68.4, 75.7, 16, 333 }, + [18] = { 71.9, 74.9, 16, 333 }, + [19] = { 75.2, 74.5, 16, 180 }, + [20] = { 72.3, 73.5, 16, 180 }, + [21] = { 56.6, 73.5, 16, 333 }, + [22] = { 61.5, 72.7, 16, 333 }, + [23] = { 65.4, 72.5, 16, 333 }, + [24] = { 56.2, 72.5, 16, 333 }, + [25] = { 73.2, 71.8, 16, 180 }, + [26] = { 54.7, 69.3, 16, 333 }, + [27] = { 56.2, 69.1, 16, 333 }, + [28] = { 55.3, 68.6, 16, 333 }, + [29] = { 52.6, 44.4, 16, 333 }, + [30] = { 52.2, 42.7, 16, 333 }, + [31] = { 69.8, 36.5, 16, 333 }, + [32] = { 71.2, 36.3, 16, 333 }, + [33] = { 92, 34.4, 16, 333 }, + [34] = { 86.9, 34.3, 16, 333 }, + [35] = { 68.4, 34.2, 16, 333 }, + [36] = { 88.8, 31.6, 16, 333 }, + [37] = { 86.9, 30.5, 16, 333 }, + [38] = { 85.7, 30.4, 16, 333 }, + [39] = { 84.4, 30.3, 16, 333 }, + [40] = { 86.2, 29.4, 16, 333 }, + [41] = { 86.3, 27.7, 16, 333 }, + [42] = { 89, 27.5, 16, 333 }, + [43] = { 85.7, 26.3, 16, 333 }, + [44] = { 88.2, 26.1, 16, 333 }, + [45] = { 88.1, 22.6, 16, 333 }, + }, + ["lvl"] = "53-54", + }, + [6366] = { + ["coords"] = { + [1] = { 47.7, 44.3, 33, 300 }, + }, + ["lvl"] = "44", + }, + [6367] = { + ["coords"] = { + [1] = { 44.2, 53.4, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [6368] = { + ["coords"] = { + [1] = { 44.1, 54, 12, 270 }, + [2] = { 44.4, 53.8, 12, 270 }, + [3] = { 43.8, 53.6, 12, 270 }, + [4] = { 44.6, 53.5, 12, 270 }, + [5] = { 43.7, 53.1, 12, 270 }, + [6] = { 44.4, 52.9, 12, 270 }, + [7] = { 44, 52.9, 12, 270 }, + [8] = { 44.3, 52.7, 12, 270 }, + [9] = { 43.8, 52.6, 12, 270 }, + }, + ["lvl"] = "1", + }, + [6369] = { + ["coords"] = { + [1] = { 87.5, 16.5, 16, 333 }, + [2] = { 87.6, 14.7, 16, 333 }, + [3] = { 85.4, 13.5, 16, 333 }, + [4] = { 84.8, 12.7, 16, 333 }, + [5] = { 84.9, 10.8, 16, 333 }, + [6] = { 83.7, 10.5, 16, 333 }, + [7] = { 82.3, 8.8, 16, 333 }, + [8] = { 68.5, 7.9, 16, 333 }, + }, + ["lvl"] = "50-52", + }, + [6370] = { + ["coords"] = { + [1] = { 73.7, 45.1, 16, 333 }, + [2] = { 53.7, 41.4, 16, 333 }, + [3] = { 55.2, 40.1, 16, 333 }, + [4] = { 71.2, 38.1, 16, 333 }, + [5] = { 90.3, 37.3, 16, 333 }, + [6] = { 70.5, 35.1, 16, 333 }, + [7] = { 88.2, 34.1, 16, 333 }, + [8] = { 88.8, 33.1, 16, 333 }, + [9] = { 86.8, 32.4, 16, 333 }, + [10] = { 85.6, 32.4, 16, 333 }, + [11] = { 83.6, 31.4, 16, 333 }, + [12] = { 87.4, 29.3, 16, 333 }, + [13] = { 84.9, 29.2, 16, 333 }, + [14] = { 87.5, 27.5, 16, 333 }, + [15] = { 84.8, 27.5, 16, 333 }, + [16] = { 87.6, 25.5, 16, 333 }, + [17] = { 89, 23.2, 16, 333 }, + [18] = { 88.8, 21.3, 16, 333 }, + }, + ["lvl"] = "52-53", + }, + [6371] = { + ["coords"] = { + [1] = { 80.4, 45.1, 16, 333 }, + [2] = { 53.5, 39.9, 16, 333 }, + [3] = { 55.9, 39, 16, 333 }, + [4] = { 89.6, 38.2, 16, 333 }, + [5] = { 70.2, 37.3, 16, 333 }, + [6] = { 87.6, 35, 16, 333 }, + [7] = { 87.6, 33.4, 16, 333 }, + [8] = { 85, 31.1, 16, 333 }, + [9] = { 87.4, 30.9, 16, 333 }, + [10] = { 89.6, 30.5, 16, 333 }, + [11] = { 88.4, 30.4, 16, 333 }, + [12] = { 87, 28.4, 16, 333 }, + [13] = { 85.5, 28.3, 16, 333 }, + [14] = { 88.2, 24.3, 16, 333 }, + [15] = { 87.7, 23.6, 16, 333 }, + [16] = { 89.7, 19.5, 16, 333 }, + [17] = { 89.5, 17.3, 16, 333 }, + [18] = { 88.9, 16.7, 16, 333 }, + [19] = { 87, 15.6, 16, 333 }, + [20] = { 46.9, 14.8, 16, 333 }, + [21] = { 86.9, 13.3, 16, 333 }, + [22] = { 58.6, 8.7, 16, 333 }, + [23] = { 60, 8.7, 16, 333 }, + [24] = { 72.4, 8.5, 16, 333 }, + [25] = { 83, 7.8, 16, 333 }, + }, + ["lvl"] = "51-52", + }, + [6372] = { + ["coords"] = { + [1] = { 88.9, 18.4, 16, 333 }, + [2] = { 86.4, 14.5, 16, 333 }, + [3] = { 82.5, 10.8, 16, 333 }, + [4] = { 82.8, 9.6, 16, 333 }, + [5] = { 69.3, 8.7, 16, 333 }, + [6] = { 70.9, 78.7, 618, 333 }, + }, + ["lvl"] = "50-51", + }, + [6373] = { + ["coords"] = { + [1] = { 50.1, 42.7, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "8", + }, + [6374] = { + ["coords"] = { + [1] = { 44.4, 66, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "11", + }, + [6375] = { + ["coords"] = { + [1] = { 19.1, 65.8, 16, 333 }, + [2] = { 18.2, 63.2, 16, 333 }, + [3] = { 18, 61.9, 16, 333 }, + [4] = { 17.9, 58.9, 16, 333 }, + [5] = { 19.9, 58.1, 16, 333 }, + [6] = { 21.2, 57.2, 16, 333 }, + [7] = { 17.8, 57, 16, 333 }, + [8] = { 16.4, 56.2, 16, 333 }, + [9] = { 19.1, 55.8, 16, 333 }, + [10] = { 18.9, 54.9, 16, 333 }, + [11] = { 18, 54.8, 16, 333 }, + [12] = { 21.1, 54.2, 16, 333 }, + [13] = { 18.1, 53.7, 16, 333 }, + [14] = { 19.2, 52.8, 16, 333 }, + [15] = { 17.1, 52.7, 16, 333 }, + [16] = { 16.9, 52.1, 16, 333 }, + [17] = { 18.5, 51.8, 16, 333 }, + [18] = { 16.6, 50.6, 16, 333 }, + [19] = { 19.1, 49.3, 16, 333 }, + }, + ["lvl"] = "46-48", + }, + [6376] = { + ["coords"] = { + [1] = { 28.8, 66.2, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [6377] = { + ["coords"] = { + [1] = { 36.8, 84.6, 16, 333 }, + [2] = { 34.8, 84.3, 16, 333 }, + [3] = { 34.2, 82.7, 16, 333 }, + [4] = { 35.6, 82.1, 16, 333 }, + [5] = { 33.8, 81.9, 16, 333 }, + [6] = { 30.8, 80.9, 16, 333 }, + [7] = { 32.8, 80.5, 16, 333 }, + [8] = { 32.3, 79.8, 16, 333 }, + [9] = { 26.5, 79.8, 16, 333 }, + [10] = { 16.6, 79.8, 16, 333 }, + [11] = { 17.7, 79.8, 16, 333 }, + [12] = { 25.2, 79.7, 16, 333 }, + [13] = { 33.9, 79.6, 16, 333 }, + [14] = { 27.1, 79.4, 16, 333 }, + [15] = { 19.1, 79.4, 16, 333 }, + [16] = { 25.8, 79, 16, 333 }, + [17] = { 17.4, 78.7, 16, 333 }, + [18] = { 20.7, 78.7, 16, 333 }, + [19] = { 35.8, 44.2, 16, 333 }, + [20] = { 35, 44.1, 16, 333 }, + [21] = { 36.3, 42.9, 16, 333 }, + [22] = { 40.9, 41.9, 16, 333 }, + [23] = { 39.3, 41.8, 16, 333 }, + [24] = { 37.5, 41, 16, 333 }, + [25] = { 40.6, 40.9, 16, 333 }, + [26] = { 39.4, 40.1, 16, 333 }, + [27] = { 38.8, 38.8, 16, 333 }, + [28] = { 40.4, 37.3, 16, 333 }, + [29] = { 44.5, 36.6, 16, 333 }, + [30] = { 43.1, 36.6, 16, 333 }, + [31] = { 44.8, 35.2, 16, 333 }, + [32] = { 44.9, 34.9, 16, 333 }, + [33] = { 47.7, 34.8, 16, 333 }, + [34] = { 43.9, 34.7, 16, 333 }, + [35] = { 40.9, 34.4, 16, 333 }, + [36] = { 46, 33.7, 16, 333 }, + [37] = { 40.8, 32.4, 16, 333 }, + [38] = { 44.6, 32.3, 16, 333 }, + [39] = { 41.2, 31.2, 16, 333 }, + [40] = { 41.7, 27.6, 16, 333 }, + [41] = { 42.3, 23.2, 16, 333 }, + }, + ["lvl"] = "48-50", + }, + [6378] = { + ["coords"] = { + [1] = { 51.8, 38, 16, 333 }, + [2] = { 52, 37.2, 16, 333 }, + [3] = { 50, 34.4, 16, 333 }, + [4] = { 52.7, 34, 16, 333 }, + [5] = { 53.2, 32.7, 16, 333 }, + [6] = { 52, 32.3, 16, 333 }, + [7] = { 51.3, 29.5, 16, 333 }, + [8] = { 52, 28.8, 16, 333 }, + [9] = { 50.6, 28.7, 16, 333 }, + [10] = { 49.4, 28.1, 16, 333 }, + [11] = { 51.7, 27.9, 16, 333 }, + [12] = { 53.5, 27.3, 16, 333 }, + [13] = { 51.2, 26.4, 16, 333 }, + [14] = { 53.1, 25.7, 16, 333 }, + [15] = { 48.2, 25.6, 16, 333 }, + [16] = { 49.1, 25.5, 16, 333 }, + [17] = { 52, 25.2, 16, 333 }, + [18] = { 58.3, 24.5, 16, 333 }, + [19] = { 50.1, 24.4, 16, 333 }, + [20] = { 47.1, 24.2, 16, 333 }, + [21] = { 53.9, 24, 16, 333 }, + [22] = { 50.6, 23.9, 16, 333 }, + [23] = { 54.3, 23.8, 16, 333 }, + [24] = { 58.6, 23, 16, 333 }, + [25] = { 47.4, 22.8, 16, 333 }, + [26] = { 57.1, 22.6, 16, 333 }, + [27] = { 48.1, 22.5, 16, 333 }, + [28] = { 55.3, 22.2, 16, 333 }, + [29] = { 58, 22.1, 16, 333 }, + [30] = { 56.2, 22.1, 16, 333 }, + [31] = { 48.2, 21.7, 16, 333 }, + [32] = { 55.3, 21.5, 16, 333 }, + [33] = { 58.8, 21.4, 16, 333 }, + [34] = { 61.4, 21.4, 16, 333 }, + [35] = { 62.6, 21.2, 16, 333 }, + [36] = { 59.3, 20.6, 16, 333 }, + [37] = { 60.7, 20.3, 16, 333 }, + [38] = { 56.7, 20.2, 16, 333 }, + [39] = { 58, 20.2, 16, 333 }, + [40] = { 47.4, 19.7, 16, 333 }, + [41] = { 64.1, 19.6, 16, 333 }, + [42] = { 62.4, 19.5, 16, 333 }, + [43] = { 60.1, 19.5, 16, 333 }, + [44] = { 48.1, 19.4, 16, 333 }, + [45] = { 57.1, 19.3, 16, 333 }, + [46] = { 47.4, 19.1, 16, 333 }, + [47] = { 61.2, 19, 16, 333 }, + [48] = { 60.6, 18.8, 16, 333 }, + [49] = { 48.3, 18.8, 16, 333 }, + [50] = { 58, 18.5, 16, 333 }, + [51] = { 59.5, 18.5, 16, 333 }, + [52] = { 55.2, 17.6, 16, 333 }, + [53] = { 60.1, 17.5, 16, 333 }, + [54] = { 56.1, 17.4, 16, 333 }, + [55] = { 57.2, 17.3, 16, 333 }, + [56] = { 54.6, 16.8, 16, 333 }, + [57] = { 60.5, 16.7, 16, 333 }, + [58] = { 59.2, 16.3, 16, 333 }, + [59] = { 48.4, 16, 16, 333 }, + [60] = { 54.8, 15.6, 16, 333 }, + [61] = { 55.9, 15.4, 16, 333 }, + [62] = { 61.9, 14.7, 16, 333 }, + [63] = { 53.8, 14.4, 16, 333 }, + [64] = { 55.3, 14.3, 16, 333 }, + [65] = { 60.5, 14.3, 16, 333 }, + [66] = { 81.1, 80, 618, 333 }, + [67] = { 81.8, 79.9, 618, 333 }, + [68] = { 81.6, 78.5, 618, 333 }, + }, + ["lvl"] = "50-52", + }, + [6379] = { + ["coords"] = { + [1] = { 58.5, 88.2, 16, 333 }, + [2] = { 63, 87.7, 16, 333 }, + [3] = { 57.7, 83.8, 16, 333 }, + [4] = { 60.9, 82.6, 16, 333 }, + [5] = { 51.3, 81.9, 16, 333 }, + [6] = { 48.9, 81.6, 16, 333 }, + [7] = { 50.1, 80, 16, 333 }, + [8] = { 55.3, 79.6, 16, 333 }, + [9] = { 52.8, 79.6, 16, 333 }, + [10] = { 46, 77.8, 16, 333 }, + [11] = { 53.9, 74.8, 16, 333 }, + [12] = { 49.5, 70, 16, 333 }, + [13] = { 72.3, 30.5, 16, 333 }, + [14] = { 75.7, 29.5, 16, 333 }, + [15] = { 72.6, 28.5, 16, 333 }, + [16] = { 67, 28.2, 16, 333 }, + [17] = { 68, 27.3, 16, 333 }, + [18] = { 70, 26.4, 16, 333 }, + [19] = { 67, 26.3, 16, 333 }, + [20] = { 80.5, 26.3, 16, 333 }, + [21] = { 69.3, 25.4, 16, 333 }, + [22] = { 78.2, 24.7, 16, 333 }, + [23] = { 65.2, 23.4, 16, 333 }, + [24] = { 83.8, 23.2, 16, 333 }, + [25] = { 83.4, 18.4, 16, 333 }, + [26] = { 77.1, 16.5, 16, 333 }, + }, + ["lvl"] = "52-54", + }, + [6380] = { + ["coords"] = { + [1] = { 64.7, 87.5, 16, 333 }, + [2] = { 48.8, 85.6, 16, 333 }, + [3] = { 56.9, 85.5, 16, 333 }, + [4] = { 59, 85, 16, 333 }, + [5] = { 47.4, 84, 16, 333 }, + [6] = { 44.9, 83.9, 16, 333 }, + [7] = { 52.9, 83.6, 16, 333 }, + [8] = { 46.3, 81.4, 16, 333 }, + [9] = { 65, 81.1, 16, 333 }, + [10] = { 60.7, 79.8, 16, 333 }, + [11] = { 57.8, 79.6, 16, 333 }, + [12] = { 45.5, 78.3, 16, 333 }, + [13] = { 57.8, 75.9, 16, 333 }, + [14] = { 48.7, 74.1, 16, 333 }, + [15] = { 46.5, 73.9, 16, 333 }, + [16] = { 75.3, 34.1, 16, 333 }, + [17] = { 73.8, 34, 16, 333 }, + [18] = { 72.3, 32, 16, 333 }, + [19] = { 71.9, 31.2, 16, 333 }, + [20] = { 73.6, 30.4, 16, 333 }, + [21] = { 70, 30.3, 16, 333 }, + [22] = { 73.1, 28.8, 16, 333 }, + [23] = { 70, 28.4, 16, 333 }, + [24] = { 78.9, 28.3, 16, 333 }, + [25] = { 76.9, 27.3, 16, 333 }, + [26] = { 73, 27.1, 16, 333 }, + [27] = { 77, 26.9, 16, 333 }, + [28] = { 81.5, 26.6, 16, 333 }, + [29] = { 79, 26.5, 16, 333 }, + [30] = { 76.4, 26.3, 16, 333 }, + [31] = { 65.2, 25.5, 16, 333 }, + [32] = { 78.9, 24.5, 16, 333 }, + [33] = { 73.9, 24.3, 16, 333 }, + [34] = { 81.7, 24.1, 16, 333 }, + [35] = { 67.2, 23.6, 16, 333 }, + [36] = { 63.8, 23.6, 16, 333 }, + [37] = { 82.3, 21.3, 16, 333 }, + [38] = { 65.2, 20.6, 16, 333 }, + [39] = { 71.6, 20.4, 16, 333 }, + [40] = { 85.1, 20.2, 16, 333 }, + [41] = { 71.4, 17, 16, 333 }, + [42] = { 67.5, 12.9, 16, 333 }, + }, + ["lvl"] = "52-54", + }, + [6382] = { + ["coords"] = { + [1] = { 52.7, 6.1, 1537, 490 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [6386] = { + ["coords"] = {}, + ["lvl"] = "46", + }, + [6387] = { + ["coords"] = { + [1] = { 45.1, 59.1, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "15", + }, + [6388] = { + ["coords"] = {}, + ["lvl"] = "45", + }, + [6389] = { + ["coords"] = { + [1] = { 43.4, 41.7, 130, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [6390] = { + ["coords"] = {}, + ["lvl"] = "11", + }, + [6391] = { + ["coords"] = { + [1] = { 71, 38, 1, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "29-30", + ["rnk"] = "1", + }, + [6392] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "29-30", + ["rnk"] = "1", + }, + [6393] = { + ["coords"] = { + [1] = { 42, 33, 215, 250 }, + [2] = { 59.8, 79.7, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "62", + }, + [6394] = { + ["coords"] = { + [1] = { 44.7, 59.4, 17, 275 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [6395] = { + ["coords"] = { + [1] = { 48.7, 25.7, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "62", + }, + [6407] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "29-30", + ["rnk"] = "1", + }, + [6408] = { + ["coords"] = { + [1] = { 56.3, 74.3, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [6410] = { + ["coords"] = { + [1] = { 37.7, 28.2, 215, 250 }, + [2] = { 38.9, 56, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [6411] = { + ["coords"] = { + [1] = { 62.1, 39.1, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [6412] = { + ["coords"] = {}, + ["lvl"] = "24-25", + }, + [6426] = { + ["coords"] = {}, + ["lvl"] = "31-33", + ["rnk"] = "1", + }, + [6427] = { + ["coords"] = {}, + ["lvl"] = "32-33", + ["rnk"] = "1", + }, + [6446] = { + ["coords"] = { + [1] = { 42.7, 53.6, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [6466] = { + ["coords"] = { + [1] = { 54, 68, 1637, 300 }, + }, + ["lvl"] = "12", + }, + [6467] = { + ["coords"] = { + [1] = { 8, 67.4, 28, 300 }, + [2] = { 83.5, 69.1, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [6486] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [6487] = { + ["coords"] = {}, + ["lvl"] = "37", + ["rnk"] = "1", + }, + [6488] = { + ["coords"] = {}, + ["lvl"] = "33", + ["rnk"] = "2", + }, + [6489] = { + ["coords"] = {}, + ["lvl"] = "33", + ["rnk"] = "2", + }, + [6490] = { + ["coords"] = {}, + ["lvl"] = "33", + ["rnk"] = "2", + }, + [6491] = { + ["coords"] = { + [1] = { 29.5, 69.8, 1, 60 }, + [2] = { 47, 55.1, 1, 60 }, + [3] = { 54.2, 39, 1, 60 }, + [4] = { 8.3, 55.6, 3, 490 }, + [5] = { 57, 24.7, 3, 180 }, + [6] = { 51.1, 12.1, 4, 490 }, + [7] = { 50.3, 62.4, 8, 490 }, + [8] = { 75.1, 59, 10, 490 }, + [9] = { 20, 49, 10, 25 }, + [10] = { 11.7, 43.3, 11, 490 }, + [11] = { 49.4, 41.7, 11, 490 }, + [12] = { 83.6, 69.7, 12, 60 }, + [13] = { 39.5, 60.5, 12, 490 }, + [14] = { 49.5, 43.5, 12, 60 }, + [15] = { 57.5, 73.3, 14, 490 }, + [16] = { 44.2, 69.4, 14, 490 }, + [17] = { 53.5, 44.4, 14, 490 }, + [18] = { 47, 17.6, 14, 490 }, + [19] = { 63.6, 43.1, 15, 490 }, + [20] = { 39.7, 30.8, 15, 490 }, + [21] = { 14.5, 78.7, 16, 490 }, + [22] = { 54.3, 71.4, 16, 490 }, + [23] = { 70.4, 15.6, 16, 490 }, + [24] = { 43.4, 92.8, 17, 490 }, + [25] = { 45.3, 61.1, 17, 490 }, + [26] = { 60.2, 39.7, 17, 490 }, + [27] = { 50.7, 32.6, 17, 490 }, + [28] = { 45.5, 85.6, 28, 490 }, + [29] = { 65.6, 74.6, 28, 490 }, + [30] = { 25.3, 56.8, 28, 490 }, + [31] = { 30.1, 73.1, 33, 490 }, + [32] = { 38.4, 9, 33, 490 }, + [33] = { 62.6, 81.5, 36, 490 }, + [34] = { 83, 31.4, 36, 490 }, + [35] = { 32.5, 46.9, 38, 490 }, + [36] = { 51.7, 49.7, 40, 490 }, + [37] = { 40, 75.1, 41, 60 }, + [38] = { 20.8, 56.6, 44, 490 }, + [39] = { 48.8, 55.5, 45, 490 }, + [40] = { 63.1, 23.7, 46, 490 }, + [41] = { 72.7, 68.1, 47, 490 }, + [42] = { 16.9, 44.8, 47, 490 }, + [43] = { 35.5, 22.8, 51, 490 }, + [44] = { 82, 69.7, 85, 490 }, + [45] = { 62.2, 68, 85, 25 }, + [46] = { 31.2, 64.9, 85, 490 }, + [47] = { 56.4, 49.4, 85, 490 }, + [48] = { 79, 40.7, 85, 490 }, + [49] = { 44.3, 41.5, 130, 490 }, + [50] = { 39.1, 92.6, 139, 490 }, + [51] = { 38.3, 70.6, 139, 60 }, + [52] = { 80.1, 64.6, 139, 490 }, + [53] = { 47.3, 44.2, 139, 490 }, + [54] = { 56.2, 63.3, 141, 60 }, + [55] = { 33.2, 52.6, 141, 60 }, + [56] = { 58.7, 42.4, 141, 60 }, + [57] = { 43.5, 92.3, 148, 490 }, + [58] = { 41.9, 36.5, 148, 490 }, + [59] = { 42.6, 78.1, 215, 490 }, + [60] = { 46.4, 55.6, 215, 490 }, + [61] = { 41.3, 20.4, 215, 490 }, + [62] = { 51.8, 52.6, 267, 490 }, + [63] = { 63.7, 19.7, 267, 490 }, + [64] = { 80.7, 58, 331, 490 }, + [65] = { 40.1, 53.2, 331, 490 }, + [66] = { 27.9, 9.6, 331, 490 }, + [67] = { 31.6, 48, 357, 490 }, + [68] = { 54.8, 47.7, 357, 490 }, + [69] = { 73, 45, 357, 490 }, + [70] = { 56.3, 86.6, 361, 490 }, + [71] = { 49.6, 30.7, 361, 490 }, + [72] = { 69.2, 53.4, 400, 490 }, + [73] = { 30.5, 23.5, 400, 490 }, + [74] = { 50.3, 62.9, 405, 490 }, + [75] = { 57.4, 62, 406, 490 }, + [76] = { 53.9, 28.8, 440, 490 }, + [77] = { 32, 28.6, 440, 490 }, + [78] = { 80, 49.7, 490, 490 }, + [79] = { 21.8, 18.2, 490, 490 }, + [80] = { 62.2, 69.7, 493, 490 }, + [81] = { 61.2, 34.7, 618, 490 }, + [82] = { 28.1, 87.4, 1377, 60 }, + [83] = { 47, 38.5, 1377, 490 }, + [84] = { 80.7, 19.7, 1377, 490 }, + [85] = { 67.9, 14, 1497, 25 }, + [86] = { 77, 27.2, 1657, 60 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [6492] = { + ["coords"] = { + [1] = { 73.2, 9.8, 130, 60 }, + [2] = { 73, 9.6, 130, 60 }, + [3] = { 51.9, 75.9, 1497, 60 }, + [4] = { 51, 75.1, 1497, 60 }, + [5] = { 53.1, 72.8, 1497, 60 }, + [6] = { 51.3, 72.7, 1497, 60 }, + [7] = { 41.7, 90.1, 1519, 300 }, + [8] = { 40.5, 89.7, 1519, 300 }, + [9] = { 39.8, 87.8, 1519, 300 }, + }, + ["lvl"] = "16-17", + }, + [6493] = { + ["coords"] = {}, + ["lvl"] = "32-33", + ["rnk"] = "1", + }, + [6494] = { + ["coords"] = { + [1] = { 63.1, 44.3, 17, 413 }, + }, + ["lvl"] = "13", + }, + [6495] = { + ["coords"] = { + [1] = { 80, 76.2, 400, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [6496] = { + ["coords"] = { + [1] = { 77.3, 77, 400, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [6497] = { + ["coords"] = { + [1] = { 49.7, 32.2, 130, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "13", + }, + [6498] = { + ["coords"] = { + [1] = { 57.4, 62, 490, 600 }, + [2] = { 50, 60.7, 490, 600 }, + [3] = { 32.1, 37.1, 490, 600 }, + [4] = { 74.3, 34.7, 490, 600 }, + [5] = { 57.5, 24.9, 490, 600 }, + [6] = { 34.7, 23.8, 490, 900 }, + }, + ["lvl"] = "54-55", + ["rnk"] = "1", + }, + [6499] = { + ["coords"] = { + [1] = { 57.4, 62, 490, 600 }, + [2] = { 50, 60.7, 490, 600 }, + [3] = { 32.1, 37.1, 490, 600 }, + [4] = { 74.3, 34.7, 490, 600 }, + [5] = { 57.5, 24.9, 490, 600 }, + [6] = { 34.7, 23.8, 490, 900 }, + }, + ["lvl"] = "54-56", + ["rnk"] = "1", + }, + [6500] = { + ["coords"] = { + [1] = { 57.4, 62, 490, 600 }, + [2] = { 50, 60.7, 490, 600 }, + [3] = { 32.1, 37.1, 490, 600 }, + [4] = { 74.3, 34.7, 490, 600 }, + [5] = { 57.5, 24.9, 490, 600 }, + [6] = { 34.7, 23.8, 490, 900 }, + }, + ["lvl"] = "54-55", + ["rnk"] = "1", + }, + [6501] = { + ["coords"] = { + [1] = { 41.1, 77.7, 490, 600 }, + [2] = { 37.2, 77.7, 490, 600 }, + [3] = { 30.3, 77.5, 490, 600 }, + [4] = { 35.5, 74.7, 490, 600 }, + [5] = { 40.9, 72.5, 490, 600 }, + [6] = { 30.4, 72.4, 490, 600 }, + [7] = { 36.5, 72.3, 490, 600 }, + [8] = { 39, 69.7, 490, 600 }, + [9] = { 30, 67.2, 490, 600 }, + [10] = { 26.5, 67.1, 490, 600 }, + [11] = { 28.3, 64.5, 490, 600 }, + [12] = { 39, 64, 490, 600 }, + [13] = { 30, 61.6, 490, 600 }, + }, + ["lvl"] = "52-53", + ["rnk"] = "1", + }, + [6502] = { + ["coords"] = { + [1] = { 33.7, 77.2, 490, 600 }, + [2] = { 34.2, 67.2, 490, 600 }, + [3] = { 37.5, 67.2, 490, 600 }, + [4] = { 34, 61.8, 490, 600 }, + [5] = { 37.7, 61.2, 490, 600 }, + [6] = { 39.2, 58.9, 490, 600 }, + [7] = { 28.4, 58.3, 490, 600 }, + }, + ["lvl"] = "52-54", + ["rnk"] = "1", + }, + [6503] = { + ["coords"] = { + [1] = { 38.9, 80.7, 490, 600 }, + [2] = { 32.3, 74.7, 490, 600 }, + [3] = { 35.6, 69.3, 490, 600 }, + }, + ["lvl"] = "53-54", + ["rnk"] = "1", + }, + [6504] = { + ["coords"] = { + [1] = { 34.3, 72.3, 490, 600 }, + [2] = { 28.8, 69, 490, 600 }, + }, + ["lvl"] = "54-55", + ["rnk"] = "1", + }, + [6505] = { + ["coords"] = { + [1] = { 61.9, 83.2, 490, 300 }, + [2] = { 61.4, 81.9, 490, 300 }, + [3] = { 59.8, 81.6, 490, 300 }, + [4] = { 61, 81.6, 490, 300 }, + [5] = { 59.6, 81.1, 490, 300 }, + [6] = { 62.5, 80.4, 490, 300 }, + [7] = { 63.6, 80.2, 490, 300 }, + [8] = { 58.3, 80, 490, 300 }, + [9] = { 59.6, 79.2, 490, 300 }, + [10] = { 64.8, 79.1, 490, 300 }, + [11] = { 61.3, 78.8, 490, 300 }, + [12] = { 67.9, 78.7, 490, 300 }, + [13] = { 58, 78.5, 490, 300 }, + [14] = { 60.6, 78.1, 490, 300 }, + [15] = { 63.4, 78.1, 490, 300 }, + [16] = { 66.3, 77.8, 490, 300 }, + [17] = { 64, 77.5, 490, 300 }, + [18] = { 57.4, 77.1, 490, 300 }, + [19] = { 62.4, 76.8, 490, 300 }, + [20] = { 62.7, 76.3, 490, 300 }, + [21] = { 58.3, 76.1, 490, 300 }, + [22] = { 59.8, 75.9, 490, 300 }, + [23] = { 61.4, 75.8, 490, 300 }, + [24] = { 60.7, 75.3, 490, 300 }, + [25] = { 64.6, 75.1, 490, 300 }, + [26] = { 68, 75, 490, 300 }, + [27] = { 59.2, 74.7, 490, 300 }, + [28] = { 64.2, 74.2, 490, 300 }, + [29] = { 60, 73.7, 490, 300 }, + [30] = { 67.5, 73.6, 490, 300 }, + [31] = { 60.9, 73.4, 490, 300 }, + [32] = { 67.6, 72.9, 490, 300 }, + [33] = { 61.5, 72.7, 490, 300 }, + [34] = { 62.6, 72.3, 490, 300 }, + [35] = { 67.6, 72.1, 490, 300 }, + [36] = { 64.1, 72.1, 490, 300 }, + [37] = { 66.8, 71.1, 490, 300 }, + [38] = { 65.1, 71.1, 490, 300 }, + [39] = { 59.7, 71, 490, 300 }, + [40] = { 61.6, 70.9, 490, 300 }, + [41] = { 60.7, 69.7, 490, 300 }, + [42] = { 66.3, 68, 490, 300 }, + [43] = { 66.5, 68, 490, 300 }, + [44] = { 68.1, 67.4, 490, 300 }, + [45] = { 60.7, 67, 490, 300 }, + [46] = { 62.9, 66.7, 490, 300 }, + [47] = { 61.7, 66.3, 490, 300 }, + [48] = { 63.1, 66.3, 490, 300 }, + [49] = { 67.2, 65.7, 490, 300 }, + [50] = { 65.2, 65.4, 490, 300 }, + [51] = { 64.5, 64, 490, 300 }, + [52] = { 67, 62.9, 490, 300 }, + [53] = { 63.6, 62.7, 490, 300 }, + [54] = { 64.5, 61.9, 490, 300 }, + [55] = { 66.4, 61.8, 490, 300 }, + [56] = { 68.1, 61.5, 490, 300 }, + [57] = { 63.9, 61.1, 490, 300 }, + [58] = { 65.2, 60.6, 490, 300 }, + [59] = { 67.5, 60.2, 490, 300 }, + }, + ["lvl"] = "48-49", + }, + [6506] = { + ["coords"] = { + [1] = { 61.9, 83.2, 490, 300 }, + [2] = { 61.4, 81.9, 490, 300 }, + [3] = { 59.8, 81.6, 490, 300 }, + [4] = { 61, 81.6, 490, 300 }, + [5] = { 59.6, 81.1, 490, 300 }, + [6] = { 62.5, 80.4, 490, 300 }, + [7] = { 63.6, 80.2, 490, 300 }, + [8] = { 58.3, 80, 490, 300 }, + [9] = { 59.6, 79.2, 490, 300 }, + [10] = { 64.8, 79.1, 490, 300 }, + [11] = { 61.3, 78.8, 490, 300 }, + [12] = { 67.9, 78.7, 490, 300 }, + [13] = { 58, 78.5, 490, 300 }, + [14] = { 60.6, 78.1, 490, 300 }, + [15] = { 63.4, 78.1, 490, 300 }, + [16] = { 66.3, 77.8, 490, 300 }, + [17] = { 64, 77.5, 490, 300 }, + [18] = { 57.4, 77.1, 490, 300 }, + [19] = { 62.4, 76.8, 490, 300 }, + [20] = { 62.7, 76.3, 490, 300 }, + [21] = { 58.3, 76.1, 490, 300 }, + [22] = { 59.8, 75.9, 490, 300 }, + [23] = { 61.4, 75.8, 490, 300 }, + [24] = { 60.7, 75.3, 490, 300 }, + [25] = { 64.6, 75.1, 490, 300 }, + [26] = { 68, 75, 490, 300 }, + [27] = { 59.2, 74.7, 490, 300 }, + [28] = { 64.2, 74.2, 490, 300 }, + [29] = { 60, 73.7, 490, 300 }, + [30] = { 67.5, 73.6, 490, 300 }, + [31] = { 60.9, 73.4, 490, 300 }, + [32] = { 67.6, 72.9, 490, 300 }, + [33] = { 61.5, 72.7, 490, 300 }, + [34] = { 62.6, 72.3, 490, 300 }, + [35] = { 67.6, 72.1, 490, 300 }, + [36] = { 64.1, 72.1, 490, 300 }, + [37] = { 66.8, 71.1, 490, 300 }, + [38] = { 65.1, 71.1, 490, 300 }, + [39] = { 59.7, 71, 490, 300 }, + [40] = { 61.6, 70.9, 490, 300 }, + [41] = { 60.7, 69.7, 490, 300 }, + [42] = { 66.3, 68, 490, 300 }, + [43] = { 66.5, 68, 490, 300 }, + [44] = { 68.1, 67.4, 490, 300 }, + [45] = { 60.7, 67, 490, 300 }, + [46] = { 62.9, 66.7, 490, 300 }, + [47] = { 61.7, 66.3, 490, 300 }, + [48] = { 63.1, 66.3, 490, 300 }, + [49] = { 67.2, 65.7, 490, 300 }, + [50] = { 65.2, 65.4, 490, 300 }, + [51] = { 64.5, 64, 490, 300 }, + [52] = { 67, 62.9, 490, 300 }, + [53] = { 63.6, 62.7, 490, 300 }, + [54] = { 64.5, 61.9, 490, 300 }, + [55] = { 66.4, 61.8, 490, 300 }, + [56] = { 68.1, 61.5, 490, 300 }, + [57] = { 63.9, 61.1, 490, 300 }, + [58] = { 65.2, 60.6, 490, 300 }, + [59] = { 67.5, 60.2, 490, 300 }, + }, + ["lvl"] = "49-50", + }, + [6507] = { + ["coords"] = { + [1] = { 71.6, 61.5, 490, 300 }, + [2] = { 70.7, 60.1, 490, 300 }, + [3] = { 62.6, 59, 490, 300 }, + [4] = { 70.5, 58.8, 490, 300 }, + [5] = { 64.3, 58.7, 490, 300 }, + [6] = { 69, 57.4, 490, 300 }, + [7] = { 67.1, 57.3, 490, 300 }, + [8] = { 69.6, 56.1, 490, 300 }, + [9] = { 68.3, 56, 490, 300 }, + [10] = { 63.6, 54.9, 490, 300 }, + [11] = { 62.7, 54.8, 490, 300 }, + [12] = { 68.9, 54.7, 490, 300 }, + [13] = { 68, 53.5, 490, 300 }, + [14] = { 70.9, 53.5, 490, 300 }, + [15] = { 71.6, 53.4, 490, 300 }, + [16] = { 69.7, 53.3, 490, 300 }, + [17] = { 62.7, 53.3, 490, 300 }, + [18] = { 70.3, 52.9, 490, 300 }, + [19] = { 67.5, 52.8, 490, 300 }, + [20] = { 70.8, 52.1, 490, 300 }, + [21] = { 63.5, 52, 490, 300 }, + [22] = { 66.4, 51.8, 490, 300 }, + [23] = { 64.5, 50.7, 490, 300 }, + [24] = { 72.6, 50.6, 490, 300 }, + [25] = { 70.3, 50.6, 490, 300 }, + [26] = { 67.5, 50.5, 490, 300 }, + [27] = { 62.4, 50.5, 490, 300 }, + [28] = { 71.8, 50.3, 490, 300 }, + [29] = { 72.6, 50.2, 490, 300 }, + [30] = { 63.8, 50.1, 490, 300 }, + [31] = { 69.6, 49.7, 490, 300 }, + [32] = { 65.7, 49.5, 490, 300 }, + [33] = { 67.8, 49.4, 490, 300 }, + [34] = { 65.8, 49.1, 490, 300 }, + [35] = { 64.5, 49.1, 490, 300 }, + [36] = { 66.9, 49.1, 490, 300 }, + [37] = { 66.6, 48.1, 490, 300 }, + [38] = { 64.1, 47.8, 490, 300 }, + [39] = { 65.5, 46.8, 490, 300 }, + [40] = { 70.6, 45.4, 490, 300 }, + [41] = { 68, 45.2, 490, 300 }, + }, + ["lvl"] = "49-50", + }, + [6508] = { + ["coords"] = { + [1] = { 71.6, 61.5, 490, 300 }, + [2] = { 70.7, 60.1, 490, 300 }, + [3] = { 62.6, 59, 490, 300 }, + [4] = { 70.5, 58.8, 490, 300 }, + [5] = { 64.3, 58.7, 490, 300 }, + [6] = { 69, 57.4, 490, 300 }, + [7] = { 67.1, 57.3, 490, 300 }, + [8] = { 69.6, 56.1, 490, 300 }, + [9] = { 68.3, 56, 490, 300 }, + [10] = { 63.6, 54.9, 490, 300 }, + [11] = { 62.7, 54.8, 490, 300 }, + [12] = { 68.9, 54.7, 490, 300 }, + [13] = { 68, 53.5, 490, 300 }, + [14] = { 70.9, 53.5, 490, 300 }, + [15] = { 71.6, 53.4, 490, 300 }, + [16] = { 69.7, 53.3, 490, 300 }, + [17] = { 62.7, 53.3, 490, 300 }, + [18] = { 70.3, 52.9, 490, 300 }, + [19] = { 67.5, 52.8, 490, 300 }, + [20] = { 70.8, 52.1, 490, 300 }, + [21] = { 63.5, 52, 490, 300 }, + [22] = { 66.4, 51.8, 490, 300 }, + [23] = { 64.5, 50.7, 490, 300 }, + [24] = { 72.6, 50.6, 490, 300 }, + [25] = { 70.3, 50.6, 490, 300 }, + [26] = { 67.5, 50.5, 490, 300 }, + [27] = { 62.4, 50.5, 490, 300 }, + [28] = { 71.8, 50.3, 490, 300 }, + [29] = { 72.6, 50.2, 490, 300 }, + [30] = { 63.8, 50.1, 490, 300 }, + [31] = { 69.6, 49.7, 490, 300 }, + [32] = { 65.7, 49.5, 490, 300 }, + [33] = { 67.8, 49.4, 490, 300 }, + [34] = { 65.8, 49.1, 490, 300 }, + [35] = { 64.5, 49.1, 490, 300 }, + [36] = { 66.9, 49.1, 490, 300 }, + [37] = { 66.6, 48.1, 490, 300 }, + [38] = { 64.1, 47.8, 490, 300 }, + [39] = { 65.5, 46.8, 490, 300 }, + [40] = { 70.6, 45.4, 490, 300 }, + [41] = { 68, 45.2, 490, 300 }, + }, + ["lvl"] = "50-51", + }, + [6509] = { + ["coords"] = { + [1] = { 73.5, 69.8, 490, 300 }, + [2] = { 70.6, 65.8, 490, 300 }, + [3] = { 71.6, 64, 490, 300 }, + [4] = { 74.2, 50.8, 490, 300 }, + [5] = { 76.1, 48, 490, 300 }, + [6] = { 75.2, 46.7, 490, 300 }, + [7] = { 73.2, 46.3, 490, 300 }, + [8] = { 76.1, 45.3, 490, 300 }, + [9] = { 75, 44.7, 490, 300 }, + [10] = { 74.6, 43.7, 490, 300 }, + [11] = { 63.6, 43.7, 490, 300 }, + [12] = { 60.8, 41.2, 490, 300 }, + [13] = { 75.4, 41.1, 490, 300 }, + [14] = { 73, 41, 490, 300 }, + [15] = { 60.4, 40.4, 490, 300 }, + [16] = { 60.3, 39.8, 490, 300 }, + [17] = { 75, 39.6, 490, 300 }, + [18] = { 71, 39.3, 490, 300 }, + [19] = { 66.9, 38.9, 490, 300 }, + [20] = { 72.5, 38.6, 490, 300 }, + [21] = { 62.7, 38.6, 490, 300 }, + [22] = { 72.7, 37.7, 490, 300 }, + [23] = { 56.3, 37.1, 490, 300 }, + [24] = { 58.1, 37.1, 490, 300 }, + [25] = { 59.9, 36.6, 490, 300 }, + [26] = { 56.6, 36, 490, 300 }, + [27] = { 66.5, 35.9, 490, 300 }, + [28] = { 73.5, 35.4, 490, 300 }, + [29] = { 59.2, 35.3, 490, 300 }, + [30] = { 68.9, 34.4, 490, 300 }, + [31] = { 67.1, 34.4, 490, 300 }, + [32] = { 60.3, 34.1, 490, 300 }, + [33] = { 67.8, 33.6, 490, 300 }, + [34] = { 66, 33.5, 490, 300 }, + [35] = { 63.7, 33.4, 490, 300 }, + [36] = { 56.7, 33.1, 490, 300 }, + [37] = { 69.3, 31.9, 490, 300 }, + [38] = { 67.8, 31.8, 490, 300 }, + [39] = { 70.7, 31.7, 490, 300 }, + [40] = { 65.8, 31.7, 490, 300 }, + [41] = { 63.1, 31.6, 490, 300 }, + [42] = { 72, 30.7, 490, 300 }, + [43] = { 64.5, 30.4, 490, 300 }, + [44] = { 67, 30.1, 490, 300 }, + [45] = { 68.4, 30.1, 490, 300 }, + [46] = { 68.9, 29.7, 490, 300 }, + [47] = { 64.7, 29.3, 490, 300 }, + [48] = { 70.5, 28.4, 490, 300 }, + [49] = { 65.5, 27.8, 490, 300 }, + [50] = { 70.7, 27.7, 490, 300 }, + [51] = { 67.6, 27.6, 490, 300 }, + [52] = { 61.1, 27.6, 490, 300 }, + [53] = { 67.1, 26.4, 490, 300 }, + [54] = { 65.3, 26.4, 490, 300 }, + [55] = { 68.9, 24.9, 490, 300 }, + [56] = { 67.9, 24.4, 490, 300 }, + [57] = { 69.5, 23.1, 490, 300 }, + [58] = { 69.6, 22.5, 490, 300 }, + [59] = { 70.9, 21.9, 490, 300 }, + [60] = { 68.4, 21.4, 490, 300 }, + [61] = { 69.2, 20.5, 490, 300 }, + }, + ["lvl"] = "48-49", + }, + [6510] = { + ["coords"] = { + [1] = { 58.9, 83.7, 490, 300 }, + [2] = { 56.2, 80.2, 490, 300 }, + [3] = { 57.6, 73.7, 490, 300 }, + [4] = { 54.8, 72.4, 490, 300 }, + [5] = { 44.6, 71, 490, 300 }, + [6] = { 53.2, 70.8, 490, 300 }, + [7] = { 49.4, 70.6, 490, 300 }, + [8] = { 46.6, 68.8, 490, 300 }, + [9] = { 57, 68.6, 490, 300 }, + [10] = { 51.5, 68.5, 490, 300 }, + [11] = { 46.5, 68.3, 490, 300 }, + [12] = { 48.3, 67.8, 490, 300 }, + [13] = { 58.1, 66.9, 490, 300 }, + [14] = { 45.5, 66.9, 490, 300 }, + [15] = { 55.1, 66.7, 490, 300 }, + [16] = { 50, 65.1, 490, 300 }, + [17] = { 52.8, 64.4, 490, 300 }, + [18] = { 50.7, 64, 490, 300 }, + [19] = { 60.6, 63.9, 490, 300 }, + [20] = { 53.1, 62.5, 490, 300 }, + [21] = { 52.6, 61.9, 490, 300 }, + [22] = { 56.2, 61.7, 490, 300 }, + [23] = { 48.2, 61.5, 490, 300 }, + [24] = { 49.9, 61.4, 490, 300 }, + [25] = { 59.8, 61.1, 490, 300 }, + [26] = { 43.8, 60.2, 490, 300 }, + [27] = { 51.4, 60.2, 490, 300 }, + [28] = { 59.9, 58.1, 490, 300 }, + [29] = { 61, 56.3, 490, 300 }, + [30] = { 57.4, 54.5, 490, 300 }, + [31] = { 60.7, 54.2, 490, 300 }, + [32] = { 58.5, 52.6, 490, 300 }, + [33] = { 57.2, 49.7, 490, 300 }, + [34] = { 61.3, 48.9, 490, 300 }, + [35] = { 60.4, 46.5, 490, 300 }, + [36] = { 57.7, 46.5, 490, 300 }, + [37] = { 59, 45, 490, 300 }, + [38] = { 65.8, 42.9, 490, 300 }, + [39] = { 62.5, 42.4, 490, 300 }, + [40] = { 59.7, 41.5, 490, 300 }, + [41] = { 44.9, 36.9, 490, 300 }, + [42] = { 50.9, 34.5, 490, 300 }, + [43] = { 53.8, 31.1, 490, 300 }, + [44] = { 44.6, 30.6, 490, 300 }, + [45] = { 56.3, 30.4, 490, 300 }, + [46] = { 45.4, 29, 490, 300 }, + [47] = { 56.8, 28.9, 490, 300 }, + [48] = { 43.7, 28.7, 490, 300 }, + [49] = { 47.9, 27.6, 490, 300 }, + [50] = { 44.6, 27, 490, 300 }, + [51] = { 57.4, 25.7, 490, 300 }, + [52] = { 43.9, 25.5, 490, 300 }, + [53] = { 56.3, 25, 490, 300 }, + [54] = { 56.8, 23.5, 490, 300 }, + [55] = { 56.3, 22.4, 490, 300 }, + [56] = { 46.4, 22.2, 490, 300 }, + [57] = { 58.3, 19.8, 490, 300 }, + [58] = { 59.9, 19.6, 490, 300 }, + [59] = { 58.6, 17.3, 490, 300 }, + [60] = { 57.2, 16.6, 490, 300 }, + [61] = { 56.5, 15.6, 490, 300 }, + [62] = { 53.4, 14.8, 490, 300 }, + [63] = { 52, 14.5, 490, 300 }, + [64] = { 54.2, 13.7, 490, 300 }, + }, + ["lvl"] = "51-52", + }, + [6511] = { + ["coords"] = { + [1] = { 73.5, 69.8, 490, 300 }, + [2] = { 70.6, 65.8, 490, 300 }, + [3] = { 71.6, 64, 490, 300 }, + [4] = { 74.2, 50.8, 490, 300 }, + [5] = { 76.1, 48, 490, 300 }, + [6] = { 75.2, 46.7, 490, 300 }, + [7] = { 73.2, 46.3, 490, 300 }, + [8] = { 76.1, 45.3, 490, 300 }, + [9] = { 75, 44.7, 490, 300 }, + [10] = { 74.6, 43.7, 490, 300 }, + [11] = { 63.6, 43.7, 490, 300 }, + [12] = { 60.8, 41.2, 490, 300 }, + [13] = { 75.4, 41.1, 490, 300 }, + [14] = { 73, 41, 490, 300 }, + [15] = { 60.4, 40.4, 490, 300 }, + [16] = { 60.3, 39.8, 490, 300 }, + [17] = { 75, 39.6, 490, 300 }, + [18] = { 71, 39.3, 490, 300 }, + [19] = { 66.9, 38.9, 490, 300 }, + [20] = { 72.5, 38.6, 490, 300 }, + [21] = { 62.7, 38.6, 490, 300 }, + [22] = { 72.7, 37.7, 490, 300 }, + [23] = { 56.3, 37.1, 490, 300 }, + [24] = { 58.1, 37.1, 490, 300 }, + [25] = { 59.9, 36.6, 490, 300 }, + [26] = { 56.6, 36, 490, 300 }, + [27] = { 66.5, 35.9, 490, 300 }, + [28] = { 73.5, 35.4, 490, 300 }, + [29] = { 59.2, 35.3, 490, 300 }, + [30] = { 68.9, 34.4, 490, 300 }, + [31] = { 67.1, 34.4, 490, 300 }, + [32] = { 60.3, 34.1, 490, 300 }, + [33] = { 67.8, 33.6, 490, 300 }, + [34] = { 66, 33.5, 490, 300 }, + [35] = { 63.7, 33.4, 490, 300 }, + [36] = { 56.7, 33.1, 490, 300 }, + [37] = { 69.3, 31.9, 490, 300 }, + [38] = { 67.8, 31.8, 490, 300 }, + [39] = { 70.7, 31.7, 490, 300 }, + [40] = { 65.8, 31.7, 490, 300 }, + [41] = { 63.1, 31.6, 490, 300 }, + [42] = { 72, 30.7, 490, 300 }, + [43] = { 64.5, 30.4, 490, 300 }, + [44] = { 67, 30.1, 490, 300 }, + [45] = { 68.4, 30.1, 490, 300 }, + [46] = { 68.9, 29.7, 490, 300 }, + [47] = { 64.7, 29.3, 490, 300 }, + [48] = { 70.5, 28.4, 490, 300 }, + [49] = { 65.5, 27.8, 490, 300 }, + [50] = { 70.7, 27.7, 490, 300 }, + [51] = { 67.6, 27.6, 490, 300 }, + [52] = { 61.1, 27.6, 490, 300 }, + [53] = { 67.1, 26.4, 490, 300 }, + [54] = { 65.3, 26.4, 490, 300 }, + [55] = { 68.9, 24.9, 490, 300 }, + [56] = { 67.9, 24.4, 490, 300 }, + [57] = { 69.5, 23.1, 490, 300 }, + [58] = { 69.6, 22.5, 490, 300 }, + [59] = { 70.9, 21.9, 490, 300 }, + [60] = { 68.4, 21.4, 490, 300 }, + [61] = { 69.2, 20.5, 490, 300 }, + }, + ["lvl"] = "49-50", + }, + [6512] = { + ["coords"] = { + [1] = { 38.2, 81.7, 490, 300 }, + [2] = { 35.5, 78.9, 490, 300 }, + [3] = { 40.7, 78.8, 490, 300 }, + [4] = { 30.8, 77.1, 490, 300 }, + [5] = { 33.3, 76.7, 490, 300 }, + [6] = { 37.2, 75.3, 490, 300 }, + [7] = { 32.2, 72.5, 490, 300 }, + [8] = { 37, 69.8, 490, 300 }, + [9] = { 33.6, 69.3, 490, 300 }, + [10] = { 36.5, 68.2, 490, 300 }, + [11] = { 26.9, 68.1, 490, 300 }, + [12] = { 30.8, 65.9, 490, 300 }, + [13] = { 33, 65.7, 490, 300 }, + [14] = { 34.7, 62.7, 490, 300 }, + [15] = { 29.4, 59.7, 490, 300 }, + [16] = { 25, 57.9, 490, 300 }, + [17] = { 29.5, 57, 490, 300 }, + [18] = { 42.3, 55.9, 490, 300 }, + [19] = { 39.2, 54.9, 490, 300 }, + [20] = { 40.8, 54.2, 490, 300 }, + [21] = { 24.8, 52.1, 490, 300 }, + [22] = { 39.2, 51.9, 490, 300 }, + [23] = { 41.9, 48.1, 490, 300 }, + [24] = { 37.9, 47.9, 490, 300 }, + [25] = { 26.3, 46.7, 490, 300 }, + [26] = { 29.9, 44.3, 490, 300 }, + [27] = { 35.6, 43.9, 490, 300 }, + [28] = { 41.5, 43.3, 490, 300 }, + [29] = { 27.7, 43.2, 490, 300 }, + [30] = { 41.9, 42.5, 490, 300 }, + [31] = { 35.4, 40.7, 490, 300 }, + [32] = { 30.3, 40.7, 490, 300 }, + [33] = { 34.2, 40.6, 490, 300 }, + [34] = { 29, 39, 490, 300 }, + [35] = { 41.3, 38.9, 490, 300 }, + [36] = { 35.5, 38.3, 490, 300 }, + [37] = { 34.4, 35.8, 490, 300 }, + [38] = { 39.5, 35.8, 490, 300 }, + [39] = { 36.6, 34.5, 490, 300 }, + [40] = { 28.4, 33.1, 490, 300 }, + [41] = { 41.2, 32.5, 490, 300 }, + [42] = { 30.9, 31.6, 490, 300 }, + [43] = { 35.3, 30.4, 490, 300 }, + [44] = { 39.3, 30.3, 490, 300 }, + [45] = { 32.4, 28.4, 490, 300 }, + [46] = { 41, 25.1, 490, 300 }, + [47] = { 38.9, 24.6, 490, 300 }, + [48] = { 36.4, 23.5, 490, 300 }, + [49] = { 40.3, 23.3, 490, 300 }, + [50] = { 33.8, 22.5, 490, 300 }, + [51] = { 39.4, 21.6, 490, 300 }, + [52] = { 32.8, 21.5, 490, 300 }, + }, + ["lvl"] = "52-53", + }, + [6513] = { + ["coords"] = { + [1] = { 62.6, 19.6, 490, 300 }, + [2] = { 63.5, 18.3, 490, 300 }, + [3] = { 61.7, 18.2, 490, 300 }, + [4] = { 69.1, 17.6, 490, 300 }, + [5] = { 66.2, 17.3, 490, 300 }, + [6] = { 67.4, 17.3, 490, 300 }, + [7] = { 62.5, 17, 490, 300 }, + [8] = { 68.6, 16.9, 490, 300 }, + [9] = { 63.3, 16.8, 490, 300 }, + [10] = { 64.9, 16.8, 490, 300 }, + [11] = { 60.4, 16.7, 490, 300 }, + [12] = { 67.7, 16.6, 490, 300 }, + [13] = { 65.2, 16.6, 490, 300 }, + [14] = { 64.1, 16.3, 490, 300 }, + [15] = { 68.1, 15.9, 490, 300 }, + [16] = { 69.1, 15.8, 490, 300 }, + [17] = { 65.8, 15.6, 490, 300 }, + [18] = { 67.1, 15.3, 490, 300 }, + [19] = { 67.4, 15.2, 490, 300 }, + [20] = { 68.7, 15.1, 490, 300 }, + [21] = { 65.6, 14.7, 490, 300 }, + [22] = { 68.5, 14.4, 490, 300 }, + [23] = { 66.4, 14.4, 490, 300 }, + [24] = { 68.6, 14.2, 490, 300 }, + [25] = { 67.8, 13.8, 490, 300 }, + [26] = { 68.3, 13.1, 490, 300 }, + }, + ["lvl"] = "51-52", + }, + [6514] = { + ["coords"] = { + [1] = { 62.6, 19.6, 490, 300 }, + [2] = { 63.5, 18.3, 490, 300 }, + [3] = { 61.7, 18.2, 490, 300 }, + [4] = { 69.1, 17.6, 490, 300 }, + [5] = { 66.2, 17.3, 490, 300 }, + [6] = { 67.4, 17.3, 490, 300 }, + [7] = { 62.5, 17, 490, 300 }, + [8] = { 68.6, 16.9, 490, 300 }, + [9] = { 63.3, 16.8, 490, 300 }, + [10] = { 64.9, 16.8, 490, 300 }, + [11] = { 60.4, 16.7, 490, 300 }, + [12] = { 67.7, 16.6, 490, 300 }, + [13] = { 65.2, 16.6, 490, 300 }, + [14] = { 64.1, 16.3, 490, 300 }, + [15] = { 68.1, 15.9, 490, 300 }, + [16] = { 69.1, 15.8, 490, 300 }, + [17] = { 65.8, 15.6, 490, 300 }, + [18] = { 67.1, 15.3, 490, 300 }, + [19] = { 67.4, 15.2, 490, 300 }, + [20] = { 68.7, 15.1, 490, 300 }, + [21] = { 65.6, 14.7, 490, 300 }, + [22] = { 68.5, 14.4, 490, 300 }, + [23] = { 66.4, 14.4, 490, 300 }, + [24] = { 68.6, 14.2, 490, 300 }, + [25] = { 67.8, 13.8, 490, 300 }, + [26] = { 68.3, 13.1, 490, 300 }, + }, + ["lvl"] = "50-51", + }, + [6516] = { + ["coords"] = { + [1] = { 69.1, 17.6, 490, 300 }, + [2] = { 66.2, 17.3, 490, 300 }, + [3] = { 67.4, 17.3, 490, 300 }, + [4] = { 68.6, 16.9, 490, 300 }, + [5] = { 64.9, 16.8, 490, 300 }, + [6] = { 67.7, 16.6, 490, 300 }, + [7] = { 65.2, 16.6, 490, 300 }, + [8] = { 64.1, 16.3, 490, 300 }, + [9] = { 68.1, 15.9, 490, 300 }, + [10] = { 69.1, 15.8, 490, 300 }, + [11] = { 65.8, 15.6, 490, 300 }, + [12] = { 67.1, 15.3, 490, 300 }, + [13] = { 67.4, 15.2, 490, 300 }, + [14] = { 68.7, 15.1, 490, 300 }, + [15] = { 65.6, 14.7, 490, 300 }, + [16] = { 68.5, 14.4, 490, 300 }, + [17] = { 66.4, 14.4, 490, 300 }, + [18] = { 68.6, 14.2, 490, 300 }, + [19] = { 67.8, 13.8, 490, 300 }, + [20] = { 68.3, 13.1, 490, 300 }, + }, + ["lvl"] = "52-53", + }, + [6517] = { + ["coords"] = { + [1] = { 47.6, 36.1, 490, 300 }, + [2] = { 46.4, 35.8, 490, 300 }, + [3] = { 47.1, 34.6, 490, 300 }, + [4] = { 49.1, 33.9, 490, 300 }, + [5] = { 46.6, 33.4, 490, 300 }, + [6] = { 61.8, 33.4, 490, 300 }, + [7] = { 48.6, 33.1, 490, 300 }, + [8] = { 60, 33, 490, 300 }, + [9] = { 47.2, 31.9, 490, 300 }, + [10] = { 49, 31.8, 490, 300 }, + [11] = { 60.9, 31.7, 490, 300 }, + [12] = { 59, 31.7, 490, 300 }, + [13] = { 61.7, 30.5, 490, 300 }, + [14] = { 59.9, 30.4, 490, 300 }, + [15] = { 47.9, 30.1, 490, 300 }, + [16] = { 58.1, 30, 490, 300 }, + [17] = { 59, 29.2, 490, 300 }, + [18] = { 49.1, 29.1, 490, 300 }, + [19] = { 59.9, 24.9, 490, 300 }, + [20] = { 64.5, 24.2, 490, 300 }, + [21] = { 65.1, 24, 490, 300 }, + [22] = { 59.2, 23.7, 490, 300 }, + [23] = { 63.5, 23.6, 490, 300 }, + [24] = { 60.8, 23.5, 490, 300 }, + [25] = { 59.9, 22.8, 490, 300 }, + [26] = { 64.3, 22.2, 490, 300 }, + }, + ["lvl"] = "50-51", + }, + [6518] = { + ["coords"] = { + [1] = { 50, 27.8, 490, 300 }, + [2] = { 51.7, 27.7, 490, 300 }, + [3] = { 50.8, 26.4, 490, 300 }, + [4] = { 52.7, 26.4, 490, 300 }, + [5] = { 54, 26.1, 490, 300 }, + [6] = { 53.6, 25.5, 490, 300 }, + [7] = { 50.2, 25.3, 490, 300 }, + [8] = { 51.8, 25.1, 490, 300 }, + [9] = { 51.2, 24, 490, 300 }, + [10] = { 54.5, 23.7, 490, 300 }, + [11] = { 49.2, 23.5, 490, 300 }, + [12] = { 48.1, 22.4, 490, 300 }, + [13] = { 50, 22.4, 490, 300 }, + [14] = { 42.8, 22.2, 490, 300 }, + [15] = { 41.8, 21, 490, 300 }, + [16] = { 47.3, 20.9, 490, 300 }, + [17] = { 43.6, 20.9, 490, 300 }, + [18] = { 49.1, 20.8, 490, 300 }, + [19] = { 53.7, 19.9, 490, 300 }, + [20] = { 42.7, 19.7, 490, 300 }, + [21] = { 44.6, 19.6, 490, 300 }, + [22] = { 46.3, 19.5, 490, 300 }, + [23] = { 48.2, 19.4, 490, 300 }, + [24] = { 47.2, 18.3, 490, 300 }, + [25] = { 49.1, 18.2, 490, 300 }, + [26] = { 43.6, 18.2, 490, 300 }, + [27] = { 45.5, 18.2, 490, 300 }, + [28] = { 44.6, 17, 490, 300 }, + [29] = { 46.3, 16.9, 490, 300 }, + [30] = { 43.2, 16.6, 490, 300 }, + [31] = { 45.7, 15.5, 490, 300 }, + [32] = { 47.5, 15.1, 490, 300 }, + }, + ["lvl"] = "52-54", + }, + [6519] = { + ["coords"] = { + [1] = { 50, 27.8, 490, 300 }, + [2] = { 51.7, 27.7, 490, 300 }, + [3] = { 50.8, 26.4, 490, 300 }, + [4] = { 52.7, 26.4, 490, 300 }, + [5] = { 54, 26.1, 490, 300 }, + [6] = { 53.6, 25.5, 490, 300 }, + [7] = { 50.2, 25.3, 490, 300 }, + [8] = { 51.8, 25.1, 490, 300 }, + [9] = { 51.2, 24, 490, 300 }, + [10] = { 54.5, 23.7, 490, 300 }, + [11] = { 49.2, 23.5, 490, 300 }, + [12] = { 48.1, 22.4, 490, 300 }, + [13] = { 50, 22.4, 490, 300 }, + [14] = { 42.8, 22.2, 490, 300 }, + [15] = { 41.8, 21, 490, 300 }, + [16] = { 47.3, 20.9, 490, 300 }, + [17] = { 43.6, 20.9, 490, 300 }, + [18] = { 49.1, 20.8, 490, 300 }, + [19] = { 53.7, 19.9, 490, 300 }, + [20] = { 42.7, 19.7, 490, 300 }, + [21] = { 44.6, 19.6, 490, 300 }, + [22] = { 46.3, 19.5, 490, 300 }, + [23] = { 48.2, 19.4, 490, 300 }, + [24] = { 47.2, 18.3, 490, 300 }, + [25] = { 49.1, 18.2, 490, 300 }, + [26] = { 43.6, 18.2, 490, 300 }, + [27] = { 45.5, 18.2, 490, 300 }, + [28] = { 44.6, 17, 490, 300 }, + [29] = { 46.3, 16.9, 490, 300 }, + [30] = { 43.2, 16.6, 490, 300 }, + [31] = { 45.7, 15.5, 490, 300 }, + [32] = { 47.5, 15.1, 490, 300 }, + }, + ["lvl"] = "53-54", + }, + [6520] = { + ["coords"] = { + [1] = { 55.6, 57.7, 490, 300 }, + [2] = { 45.5, 56, 490, 300 }, + [3] = { 48.9, 55.8, 490, 300 }, + [4] = { 51.9, 54.9, 490, 300 }, + [5] = { 53.9, 54.9, 490, 300 }, + [6] = { 46.7, 53.8, 490, 300 }, + [7] = { 49.9, 53.3, 490, 300 }, + [8] = { 47.4, 53.1, 490, 300 }, + [9] = { 45.5, 51.9, 490, 300 }, + [10] = { 51.6, 51.8, 490, 300 }, + [11] = { 48.3, 51.6, 490, 300 }, + [12] = { 53.5, 51.2, 490, 300 }, + [13] = { 47.5, 50.6, 490, 300 }, + [14] = { 51, 49.6, 490, 300 }, + [15] = { 51.8, 49.1, 490, 300 }, + [16] = { 55.1, 48.8, 490, 300 }, + [17] = { 45.1, 48.5, 490, 300 }, + [18] = { 50.4, 48.1, 490, 300 }, + [19] = { 48.5, 48, 490, 300 }, + [20] = { 49.4, 47.7, 490, 300 }, + [21] = { 54.2, 47.2, 490, 300 }, + [22] = { 50.9, 47.1, 490, 300 }, + [23] = { 45.9, 46.8, 490, 300 }, + [24] = { 48.9, 46.5, 490, 300 }, + [25] = { 49.7, 46.1, 490, 300 }, + [26] = { 52.7, 45.7, 490, 300 }, + [27] = { 46.8, 45.4, 490, 300 }, + [28] = { 51.1, 45, 490, 300 }, + [29] = { 55.1, 44.7, 490, 300 }, + [30] = { 53.6, 44.4, 490, 300 }, + [31] = { 49.7, 44, 490, 300 }, + [32] = { 47.8, 44, 490, 300 }, + [33] = { 52.8, 42.7, 490, 300 }, + [34] = { 52.8, 42.6, 490, 300 }, + }, + ["lvl"] = "53-54", + }, + [6521] = { + ["coords"] = { + [1] = { 55.6, 57.7, 490, 300 }, + [2] = { 45.5, 56, 490, 300 }, + [3] = { 48.9, 55.8, 490, 300 }, + [4] = { 51.9, 54.9, 490, 300 }, + [5] = { 53.9, 54.9, 490, 300 }, + [6] = { 46.7, 53.8, 490, 300 }, + [7] = { 49.9, 53.3, 490, 300 }, + [8] = { 47.4, 53.1, 490, 300 }, + [9] = { 45.5, 51.9, 490, 300 }, + [10] = { 51.6, 51.8, 490, 300 }, + [11] = { 48.3, 51.6, 490, 300 }, + [12] = { 53.5, 51.2, 490, 300 }, + [13] = { 47.5, 50.6, 490, 300 }, + [14] = { 51, 49.6, 490, 300 }, + [15] = { 51.8, 49.1, 490, 300 }, + [16] = { 55.1, 48.8, 490, 300 }, + [17] = { 45.1, 48.5, 490, 300 }, + [18] = { 50.4, 48.1, 490, 300 }, + [19] = { 48.5, 48, 490, 300 }, + [20] = { 49.4, 47.7, 490, 300 }, + [21] = { 54.2, 47.2, 490, 300 }, + [22] = { 50.9, 47.1, 490, 300 }, + [23] = { 45.9, 46.8, 490, 300 }, + [24] = { 48.9, 46.5, 490, 300 }, + [25] = { 49.7, 46.1, 490, 300 }, + [26] = { 52.7, 45.7, 490, 300 }, + [27] = { 46.8, 45.4, 490, 300 }, + [28] = { 51.1, 45, 490, 300 }, + [29] = { 55.1, 44.7, 490, 300 }, + [30] = { 53.6, 44.4, 490, 300 }, + [31] = { 49.7, 44, 490, 300 }, + [32] = { 47.8, 44, 490, 300 }, + [33] = { 52.8, 42.7, 490, 300 }, + [34] = { 52.8, 42.6, 490, 300 }, + }, + ["lvl"] = "54-55", + }, + [6522] = { + ["coords"] = { + [1] = { 54.8, 76.3, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "15", + }, + [6523] = { + ["coords"] = { + [1] = { 48.6, 17.6, 11, 300 }, + [2] = { 48.8, 16, 11, 300 }, + [3] = { 49, 15.7, 11, 300 }, + }, + ["lvl"] = "27-28", + ["rnk"] = "1", + }, + [6526] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "0", + }, + [6527] = { + ["coords"] = { + [1] = { 47.6, 36.1, 490, 300 }, + [2] = { 46.4, 35.8, 490, 300 }, + [3] = { 47.1, 34.6, 490, 300 }, + [4] = { 49.1, 33.9, 490, 300 }, + [5] = { 46.6, 33.4, 490, 300 }, + [6] = { 61.8, 33.4, 490, 300 }, + [7] = { 48.6, 33.1, 490, 300 }, + [8] = { 60, 33, 490, 300 }, + [9] = { 47.2, 31.9, 490, 300 }, + [10] = { 49, 31.8, 490, 300 }, + [11] = { 60.9, 31.7, 490, 300 }, + [12] = { 59, 31.7, 490, 300 }, + [13] = { 61.7, 30.5, 490, 300 }, + [14] = { 59.9, 30.4, 490, 300 }, + [15] = { 47.9, 30.1, 490, 300 }, + [16] = { 58.1, 30, 490, 300 }, + [17] = { 59, 29.2, 490, 300 }, + [18] = { 49.1, 29.1, 490, 300 }, + [19] = { 59.9, 24.9, 490, 300 }, + [20] = { 64.5, 24.2, 490, 300 }, + [21] = { 65.1, 24, 490, 300 }, + [22] = { 59.2, 23.7, 490, 300 }, + [23] = { 63.5, 23.6, 490, 300 }, + [24] = { 60.8, 23.5, 490, 300 }, + [25] = { 59.9, 22.8, 490, 300 }, + [26] = { 64.3, 22.2, 490, 300 }, + }, + ["lvl"] = "51-52", + }, + [6546] = { + ["coords"] = { + [1] = { 46.1, 57.1, 15, 360 }, + }, + ["fac"] = "AH", + ["lvl"] = "62", + }, + [6547] = { + ["coords"] = { + [1] = { 80.8, 85.4, 139, 518 }, + [2] = { 80.8, 85.3, 139, 518 }, + [3] = { 80.6, 85.1, 139, 518 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [6548] = { + ["coords"] = { + [1] = { 78.3, 75.7, 400, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "51", + }, + [6549] = { + ["coords"] = {}, + ["lvl"] = "40", + ["rnk"] = "1", + }, + [6550] = { + ["coords"] = {}, + ["lvl"] = "40", + }, + [6551] = { + ["coords"] = { + [1] = { 47.8, 86.4, 490, 300 }, + [2] = { 53.3, 85.9, 490, 300 }, + [3] = { 55.4, 85.5, 490, 300 }, + [4] = { 52, 85.5, 490, 300 }, + [5] = { 56.4, 84.9, 490, 300 }, + [6] = { 45, 84.8, 490, 300 }, + [7] = { 46.5, 84.8, 490, 300 }, + [8] = { 51, 84.7, 490, 300 }, + [9] = { 54.1, 84.6, 490, 300 }, + [10] = { 50, 84.5, 490, 300 }, + [11] = { 55.4, 84.5, 490, 300 }, + [12] = { 52.7, 84.4, 490, 300 }, + [13] = { 47.3, 84.3, 490, 300 }, + [14] = { 43.8, 84, 490, 300 }, + [15] = { 44.8, 83.3, 490, 300 }, + [16] = { 52.1, 83.1, 490, 300 }, + [17] = { 53.4, 83, 490, 300 }, + [18] = { 42.7, 83, 490, 300 }, + [19] = { 54.8, 82.4, 490, 300 }, + [20] = { 49.5, 81.9, 490, 300 }, + [21] = { 46.9, 81.9, 490, 300 }, + [22] = { 46.5, 81.8, 490, 300 }, + [23] = { 48.3, 81.5, 490, 300 }, + [24] = { 52.3, 81, 490, 300 }, + [25] = { 45.5, 81, 490, 300 }, + [26] = { 51.8, 80.5, 490, 300 }, + [27] = { 43.7, 80.4, 490, 300 }, + [28] = { 48.1, 80.4, 490, 300 }, + [29] = { 44.6, 80.4, 490, 300 }, + [30] = { 43.1, 80.4, 490, 300 }, + [31] = { 48.7, 80, 490, 300 }, + [32] = { 54.3, 79.1, 490, 300 }, + [33] = { 44.6, 79.1, 490, 300 }, + [34] = { 43.9, 78.8, 490, 300 }, + [35] = { 44.6, 78.5, 490, 300 }, + [36] = { 52.1, 78.1, 490, 300 }, + [37] = { 50, 77.6, 490, 300 }, + [38] = { 51.1, 77.3, 490, 300 }, + [39] = { 46.3, 77.2, 490, 300 }, + [40] = { 48.3, 77.1, 490, 300 }, + [41] = { 48.7, 76.9, 490, 300 }, + [42] = { 45.3, 76.7, 490, 300 }, + [43] = { 47.2, 76.5, 490, 300 }, + [44] = { 43.3, 76.4, 490, 300 }, + [45] = { 53, 76.4, 490, 300 }, + [46] = { 53.7, 76.3, 490, 300 }, + [47] = { 50.1, 76, 490, 300 }, + [48] = { 54.8, 75.5, 490, 300 }, + [49] = { 51.5, 75.4, 490, 300 }, + [50] = { 44.5, 75.3, 490, 300 }, + [51] = { 48.1, 75.1, 490, 300 }, + [52] = { 53.8, 74.7, 490, 300 }, + [53] = { 46.4, 74.5, 490, 300 }, + [54] = { 51.2, 74, 490, 300 }, + [55] = { 47.3, 73.6, 490, 300 }, + [56] = { 52.2, 73, 490, 300 }, + [57] = { 51.2, 72.3, 490, 300 }, + [58] = { 45.5, 72.3, 490, 300 }, + }, + ["lvl"] = "51-52", + }, + [6552] = { + ["coords"] = { + [1] = { 47.8, 86.4, 490, 300 }, + [2] = { 53.3, 85.9, 490, 300 }, + [3] = { 55.4, 85.5, 490, 300 }, + [4] = { 52, 85.5, 490, 300 }, + [5] = { 56.4, 84.9, 490, 300 }, + [6] = { 45, 84.8, 490, 300 }, + [7] = { 46.5, 84.8, 490, 300 }, + [8] = { 51, 84.7, 490, 300 }, + [9] = { 54.1, 84.6, 490, 300 }, + [10] = { 50, 84.5, 490, 300 }, + [11] = { 55.4, 84.5, 490, 300 }, + [12] = { 52.7, 84.4, 490, 300 }, + [13] = { 47.3, 84.3, 490, 300 }, + [14] = { 43.8, 84, 490, 300 }, + [15] = { 44.8, 83.3, 490, 300 }, + [16] = { 52.1, 83.1, 490, 300 }, + [17] = { 53.4, 83, 490, 300 }, + [18] = { 42.7, 83, 490, 300 }, + [19] = { 54.8, 82.4, 490, 300 }, + [20] = { 49.5, 81.9, 490, 300 }, + [21] = { 46.9, 81.9, 490, 300 }, + [22] = { 46.5, 81.8, 490, 300 }, + [23] = { 48.3, 81.5, 490, 300 }, + [24] = { 52.3, 81, 490, 300 }, + [25] = { 45.5, 81, 490, 300 }, + [26] = { 51.8, 80.5, 490, 300 }, + [27] = { 43.7, 80.4, 490, 300 }, + [28] = { 48.1, 80.4, 490, 300 }, + [29] = { 44.6, 80.4, 490, 300 }, + [30] = { 43.1, 80.4, 490, 300 }, + [31] = { 48.7, 80, 490, 300 }, + [32] = { 54.3, 79.1, 490, 300 }, + [33] = { 44.6, 79.1, 490, 300 }, + [34] = { 43.9, 78.8, 490, 300 }, + [35] = { 44.6, 78.5, 490, 300 }, + [36] = { 52.1, 78.1, 490, 300 }, + [37] = { 50, 77.6, 490, 300 }, + [38] = { 51.1, 77.3, 490, 300 }, + [39] = { 46.3, 77.2, 490, 300 }, + [40] = { 48.3, 77.1, 490, 300 }, + [41] = { 48.7, 76.9, 490, 300 }, + [42] = { 45.3, 76.7, 490, 300 }, + [43] = { 47.2, 76.5, 490, 300 }, + [44] = { 43.3, 76.4, 490, 300 }, + [45] = { 53, 76.4, 490, 300 }, + [46] = { 53.7, 76.3, 490, 300 }, + [47] = { 50.1, 76, 490, 300 }, + [48] = { 54.8, 75.5, 490, 300 }, + [49] = { 51.5, 75.4, 490, 300 }, + [50] = { 44.5, 75.3, 490, 300 }, + [51] = { 48.1, 75.1, 490, 300 }, + [52] = { 53.8, 74.7, 490, 300 }, + [53] = { 46.4, 74.5, 490, 300 }, + [54] = { 51.2, 74, 490, 300 }, + [55] = { 47.3, 73.6, 490, 300 }, + [56] = { 52.2, 73, 490, 300 }, + [57] = { 51.2, 72.3, 490, 300 }, + [58] = { 45.5, 72.3, 490, 300 }, + }, + ["lvl"] = "51-52", + }, + [6553] = { + ["coords"] = { + [1] = { 45.8, 88.7, 490, 300 }, + [2] = { 46.7, 87.4, 490, 300 }, + [3] = { 48.6, 87.3, 490, 300 }, + [4] = { 46.9, 87, 490, 300 }, + [5] = { 47.7, 86.7, 490, 300 }, + [6] = { 47, 85.8, 490, 300 }, + [7] = { 49, 85.7, 490, 300 }, + [8] = { 46.4, 85.5, 490, 300 }, + [9] = { 48.4, 85.3, 490, 300 }, + [10] = { 47.4, 85.2, 490, 300 }, + [11] = { 45.9, 84.6, 490, 300 }, + [12] = { 49.4, 84.2, 490, 300 }, + [13] = { 47.9, 84.1, 490, 300 }, + [14] = { 44.9, 83.6, 490, 300 }, + [15] = { 45, 83.1, 490, 300 }, + [16] = { 46.7, 82.9, 490, 300 }, + [17] = { 49.4, 82.9, 490, 300 }, + [18] = { 45.3, 82.7, 490, 300 }, + [19] = { 48.4, 82, 490, 300 }, + [20] = { 44, 82, 490, 300 }, + [21] = { 43.5, 81.3, 490, 300 }, + [22] = { 50, 81.1, 490, 300 }, + [23] = { 44, 80.7, 490, 300 }, + [24] = { 50.3, 79.5, 490, 300 }, + }, + ["lvl"] = "51-53", + }, + [6554] = { + ["coords"] = { + [1] = { 45.8, 88.7, 490, 300 }, + [2] = { 46.7, 87.4, 490, 300 }, + [3] = { 48.6, 87.3, 490, 300 }, + [4] = { 46.9, 87, 490, 300 }, + [5] = { 47.7, 86.7, 490, 300 }, + [6] = { 47, 85.8, 490, 300 }, + [7] = { 49, 85.7, 490, 300 }, + [8] = { 46.4, 85.5, 490, 300 }, + [9] = { 48.4, 85.3, 490, 300 }, + [10] = { 47.4, 85.2, 490, 300 }, + [11] = { 45.9, 84.6, 490, 300 }, + [12] = { 49.4, 84.2, 490, 300 }, + [13] = { 47.9, 84.1, 490, 300 }, + [14] = { 44.9, 83.6, 490, 300 }, + [15] = { 45, 83.1, 490, 300 }, + [16] = { 46.7, 82.9, 490, 300 }, + [17] = { 49.4, 82.9, 490, 300 }, + [18] = { 45.3, 82.7, 490, 300 }, + [19] = { 48.4, 82, 490, 300 }, + [20] = { 44, 82, 490, 300 }, + [21] = { 43.5, 81.3, 490, 300 }, + [22] = { 50, 81.1, 490, 300 }, + [23] = { 44, 80.7, 490, 300 }, + [24] = { 50.3, 79.5, 490, 300 }, + }, + ["lvl"] = "52-53", + }, + [6555] = { + ["coords"] = { + [1] = { 45.8, 88.7, 490, 300 }, + [2] = { 46.7, 87.4, 490, 300 }, + [3] = { 48.6, 87.3, 490, 300 }, + [4] = { 46.9, 87, 490, 300 }, + [5] = { 47.7, 86.7, 490, 300 }, + [6] = { 47, 85.8, 490, 300 }, + [7] = { 49, 85.7, 490, 300 }, + [8] = { 46.4, 85.5, 490, 300 }, + [9] = { 48.4, 85.3, 490, 300 }, + [10] = { 47.4, 85.2, 490, 300 }, + [11] = { 45.9, 84.6, 490, 300 }, + [12] = { 49.4, 84.2, 490, 300 }, + [13] = { 47.9, 84.1, 490, 300 }, + [14] = { 44.9, 83.6, 490, 300 }, + [15] = { 45, 83.1, 490, 300 }, + [16] = { 46.7, 82.9, 490, 300 }, + [17] = { 49.4, 82.9, 490, 300 }, + [18] = { 45.3, 82.7, 490, 300 }, + [19] = { 48.4, 82, 490, 300 }, + [20] = { 44, 82, 490, 300 }, + [21] = { 43.5, 81.3, 490, 300 }, + [22] = { 50, 81.1, 490, 300 }, + [23] = { 44, 80.7, 490, 300 }, + [24] = { 50.3, 79.5, 490, 300 }, + }, + ["lvl"] = "52-53", + }, + [6556] = { + ["coords"] = { + [1] = { 72.6, 68.1, 490, 300 }, + [2] = { 74.3, 54.8, 490, 300 }, + [3] = { 72.6, 39.5, 490, 300 }, + [4] = { 57.2, 38.4, 490, 300 }, + [5] = { 60.9, 37.6, 490, 300 }, + [6] = { 64, 37, 490, 300 }, + [7] = { 67.9, 36.4, 490, 300 }, + [8] = { 74.3, 35.5, 490, 300 }, + [9] = { 69.7, 31.6, 490, 300 }, + [10] = { 70.8, 25.6, 490, 300 }, + [11] = { 61.8, 25.4, 490, 300 }, + [12] = { 66.6, 23.5, 490, 300 }, + }, + ["lvl"] = "48-50", + }, + [6557] = { + ["coords"] = { + [1] = { 57.5, 83, 490, 300 }, + [2] = { 55.5, 73.7, 490, 300 }, + [3] = { 48.3, 70.7, 490, 300 }, + [4] = { 46.1, 70.6, 490, 300 }, + [5] = { 58.1, 69.5, 490, 300 }, + [6] = { 44.2, 68.2, 490, 300 }, + [7] = { 56.1, 67.3, 490, 300 }, + [8] = { 51.4, 66.6, 490, 300 }, + [9] = { 44.4, 66.6, 490, 300 }, + [10] = { 57.2, 66.2, 490, 300 }, + [11] = { 51.8, 65.5, 490, 300 }, + [12] = { 43.5, 65.2, 490, 300 }, + [13] = { 58, 64, 490, 300 }, + [14] = { 49, 63.4, 490, 300 }, + [15] = { 54.3, 62.9, 490, 300 }, + [16] = { 45.3, 61.8, 490, 300 }, + [17] = { 61.5, 60.5, 490, 300 }, + [18] = { 59.9, 56.2, 490, 300 }, + [19] = { 57.3, 51.2, 490, 300 }, + [20] = { 61, 47.6, 490, 300 }, + [21] = { 58.2, 45.5, 490, 300 }, + [22] = { 51.2, 33.9, 490, 300 }, + [23] = { 51.2, 30.6, 490, 300 }, + [24] = { 47.3, 26.3, 490, 300 }, + [25] = { 46.1, 23.9, 490, 300 }, + [26] = { 51.8, 17.9, 490, 300 }, + [27] = { 38.5, 17.3, 490, 300 }, + }, + ["lvl"] = "50-52", + }, + [6559] = { + ["coords"] = { + [1] = { 37.6, 81.4, 490, 300 }, + [2] = { 31.1, 79.4, 490, 300 }, + [3] = { 38, 78.9, 490, 300 }, + [4] = { 34.1, 75.8, 490, 300 }, + [5] = { 30.8, 74.4, 490, 300 }, + [6] = { 38.6, 73.5, 490, 300 }, + [7] = { 36.4, 73.5, 490, 300 }, + [8] = { 35.3, 72.7, 490, 300 }, + [9] = { 28.6, 67.3, 490, 300 }, + [10] = { 35.1, 66.6, 490, 300 }, + [11] = { 29.4, 66.5, 490, 300 }, + [12] = { 36.4, 65.4, 490, 300 }, + [13] = { 36.7, 64.5, 490, 300 }, + [14] = { 41.3, 64.1, 490, 300 }, + [15] = { 33.1, 62.2, 490, 300 }, + [16] = { 40.2, 62.1, 490, 300 }, + [17] = { 28.5, 60.7, 490, 300 }, + [18] = { 31.1, 60.1, 490, 300 }, + [19] = { 38.2, 59.9, 490, 300 }, + [20] = { 38, 56.3, 490, 300 }, + [21] = { 42.9, 54.7, 490, 300 }, + [22] = { 42.1, 50.5, 490, 300 }, + [23] = { 37.2, 49.7, 490, 300 }, + [24] = { 39.5, 46.8, 490, 300 }, + [25] = { 41.1, 46.5, 490, 300 }, + [26] = { 32.7, 46.3, 490, 300 }, + [27] = { 25.6, 45.5, 490, 300 }, + [28] = { 24.7, 44, 490, 300 }, + [29] = { 38.5, 42.4, 490, 300 }, + [30] = { 31.3, 41.5, 490, 300 }, + [31] = { 32.1, 40.9, 490, 300 }, + [32] = { 36.7, 40.5, 490, 300 }, + [33] = { 40.1, 40, 490, 300 }, + [34] = { 38.9, 38.6, 490, 300 }, + [35] = { 34.5, 36.8, 490, 300 }, + [36] = { 28.2, 35.9, 490, 300 }, + [37] = { 37.5, 35.6, 490, 300 }, + [38] = { 33.3, 34.7, 490, 300 }, + [39] = { 38.7, 33.3, 490, 300 }, + [40] = { 31.6, 32.8, 490, 300 }, + [41] = { 37.9, 31.6, 490, 300 }, + [42] = { 34.2, 28.4, 490, 300 }, + [43] = { 38.6, 21.2, 490, 300 }, + }, + ["lvl"] = "52-54", + }, + [6560] = { + ["coords"] = { + [1] = { 70.7, 77.7, 490, 600 }, + [2] = { 72.2, 70.5, 490, 600 }, + [3] = { 76, 54.1, 490, 600 }, + [4] = { 70.6, 38.9, 490, 600 }, + [5] = { 52.9, 37.5, 490, 600 }, + [6] = { 53.9, 36.8, 490, 600 }, + [7] = { 43.5, 31.5, 490, 600 }, + }, + ["lvl"] = "60-61", + ["rnk"] = "1", + }, + [6561] = { + ["coords"] = {}, + ["lvl"] = "60-61", + ["rnk"] = "1", + }, + [6566] = { + ["coords"] = { + [1] = { 78.2, 76.3, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [6567] = { + ["coords"] = { + [1] = { 35.1, 30.8, 15, 360 }, + [2] = { 53.7, 69.9, 17, 360 }, + }, + ["fac"] = "H", + ["lvl"] = "43", + }, + [6568] = { + ["coords"] = { + [1] = { 51, 27.4, 440, 300 }, + }, + ["lvl"] = "50", + }, + [6569] = { + ["coords"] = { + [1] = { 69.2, 50.6, 1537, 285 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [6570] = { + ["coords"] = { + [1] = { 59.6, 33.9, 130, 413 }, + }, + ["lvl"] = "16", + }, + [6571] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [6572] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [6573] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [6574] = { + ["coords"] = { + [1] = { 72.7, 36.5, 45, 400 }, + }, + ["fac"] = "H", + ["lvl"] = "31", + }, + [6575] = { + ["coords"] = {}, + ["lvl"] = "30", + }, + [6576] = { + ["coords"] = { + [1] = { 89, 46, 357, 300 }, + [2] = { 7, 18, 400, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [6577] = { + ["coords"] = { + [1] = { 63.6, 47.9, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "16", + }, + [6578] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "1-2", + }, + [6579] = { + ["coords"] = { + [1] = { 55.5, 12.5, 1519, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "17", + }, + [6581] = { + ["coords"] = { + [1] = { 62.3, 65.9, 490, 54000 }, + }, + ["lvl"] = "50", + ["rnk"] = "4", + }, + [6582] = { + ["coords"] = { + [1] = { 48.7, 85.4, 490, 37800 }, + }, + ["lvl"] = "54", + ["rnk"] = "4", + }, + [6583] = { + ["coords"] = { + [1] = { 38.1, 75.5, 490, 108000 }, + }, + ["lvl"] = "57", + ["rnk"] = "2", + }, + [6584] = { + ["coords"] = { + [1] = { 35.3, 36, 490, 108000 }, + }, + ["lvl"] = "60", + ["rnk"] = "2", + }, + [6585] = { + ["coords"] = { + [1] = { 68.5, 12.7, 490, 18000 }, + }, + ["lvl"] = "52-53", + ["rnk"] = "4", + }, + [6586] = { + ["coords"] = { + [1] = { 55.5, 34, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [6606] = { + ["coords"] = { + [1] = { 55.8, 8.3, 17, 413 }, + }, + ["lvl"] = "16", + }, + [6607] = { + ["coords"] = { + [1] = { 55.4, 34.6, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "5", + }, + [6626] = { + ["coords"] = { + [1] = { 79.6, 75.6, 400, 300 }, + }, + ["lvl"] = "1", + }, + [6646] = { + ["coords"] = { + [1] = { 72.3, 20, 16, 172800 }, + }, + ["lvl"] = "54", + ["rnk"] = "2", + }, + [6647] = { + ["coords"] = { + [1] = { 58.5, 30.9, 16, 75600 }, + }, + ["lvl"] = "51-52", + ["rnk"] = "4", + }, + [6648] = { + ["coords"] = { + [1] = { 16.6, 54.1, 16, 115200 }, + }, + ["lvl"] = "50", + ["rnk"] = "4", + }, + [6649] = { + ["coords"] = { + [1] = { 35.4, 55.7, 16, 18000 }, + }, + ["lvl"] = "51", + ["rnk"] = "4", + }, + [6650] = { + ["coords"] = { + [1] = { 41.3, 54, 16, 37800 }, + }, + ["lvl"] = "51", + ["rnk"] = "4", + }, + [6651] = { + ["coords"] = { + [1] = { 38.3, 32.1, 16, 37800 }, + }, + ["lvl"] = "49-50", + ["rnk"] = "4", + }, + [6652] = { + ["coords"] = { + [1] = { 61.7, 25.4, 16, 75600 }, + }, + ["lvl"] = "51-52", + ["rnk"] = "4", + }, + [6653] = { + ["coords"] = { + [1] = { 74.6, 72.1, 8, 300 }, + [2] = { 82.5, 63.2, 8, 300 }, + [3] = { 14.7, 55.7, 8, 300 }, + [4] = { 58.1, 54.9, 8, 300 }, + [5] = { 26.9, 52.7, 8, 300 }, + [6] = { 40.9, 48.5, 8, 300 }, + [7] = { 30.7, 44.4, 8, 300 }, + [8] = { 13, 36.5, 8, 300 }, + [9] = { 80.4, 19.7, 8, 300 }, + [10] = { 73.8, 14.1, 8, 300 }, + }, + ["lvl"] = "1", + }, + [6666] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [6667] = { + ["coords"] = { + [1] = { 56.7, 13.5, 148, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "18", + }, + [6668] = { + ["coords"] = { + [1] = { 47.1, 85.8, 17, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "23", + }, + [6669] = { + ["coords"] = { + [1] = { 55.8, 18.3, 148, 275 }, + }, + ["fac"] = "AH", + ["lvl"] = "20", + ["rnk"] = "1", + }, + [6670] = { + ["coords"] = { + [1] = { 54.4, 54.1, 40, 300 }, + [2] = { 54, 53.8, 40, 300 }, + [3] = { 52.6, 53.8, 40, 300 }, + [4] = { 53.9, 53.6, 40, 300 }, + [5] = { 52.9, 53.5, 40, 300 }, + [6] = { 54.4, 53.4, 40, 300 }, + [7] = { 52.5, 53.2, 40, 300 }, + [8] = { 52.2, 52.8, 40, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [6687] = { + ["coords"] = {}, + ["lvl"] = "40", + }, + [6688] = { + ["coords"] = {}, + ["lvl"] = "40", + }, + [6706] = { + ["coords"] = { + [1] = { 64.7, 10.5, 405, 550 }, + [2] = { 39.3, 85.4, 406, 550 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [6707] = { + ["coords"] = { + [1] = { 84.4, 80.3, 36, 300 }, + [2] = { 82.7, 18.7, 267, 300 }, + }, + ["lvl"] = "60", + }, + [6726] = { + ["coords"] = { + [1] = { 21.6, 74.1, 405, 550 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [6727] = { + ["coords"] = { + [1] = { 27, 44.8, 44, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [6728] = { + ["coords"] = { + [1] = { 27, 44.8, 44, 300 }, + }, + ["lvl"] = "1", + }, + [6729] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "27", + }, + [6730] = { + ["coords"] = { + [1] = { 77.7, 77.9, 400, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [6731] = { + ["coords"] = { + [1] = { 18.2, 60, 331, 300 }, + [2] = { 53.2, 16.9, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "27", + }, + [6732] = { + ["coords"] = { + [1] = { 66.6, 45.2, 15, 360 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [6733] = { + ["coords"] = { + [1] = { 64.4, 45.5, 3, 300 }, + [2] = { 66.2, 44.9, 3, 300 }, + [3] = { 64.2, 42.5, 3, 300 }, + }, + ["lvl"] = "39-40", + ["rnk"] = "1", + }, + [6734] = { + ["coords"] = { + [1] = { 35.5, 48.4, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [6735] = { + ["coords"] = { + [1] = { 31.2, 50.2, 141, 300 }, + [2] = { 67.4, 15.6, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [6736] = { + ["coords"] = { + [1] = { 55.6, 59.8, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [6737] = { + ["coords"] = { + [1] = { 37, 44.1, 148, 275 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [6738] = { + ["coords"] = { + [1] = { 37, 49.2, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [6739] = { + ["coords"] = { + [1] = { 43.2, 41.3, 130, 275 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [6740] = { + ["coords"] = { + [1] = { 52.6, 65.7, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [6741] = { + ["coords"] = { + [1] = { 67.7, 37.9, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [6746] = { + ["coords"] = { + [1] = { 39.1, 30, 215, 250 }, + [2] = { 45.8, 64.7, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [6747] = { + ["coords"] = { + [1] = { 46.6, 61.1, 215, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [6748] = { + ["coords"] = {}, + ["lvl"] = "19", + }, + [6749] = { + ["coords"] = { + [1] = { 42.9, 65.9, 12, 375 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [6766] = { + ["coords"] = { + [1] = { 78.2, 81.9, 36, 300 }, + [2] = { 78.7, 81.8, 36, 300 }, + [3] = { 85.3, 79.6, 36, 300 }, + [4] = { 84.5, 79.4, 36, 300 }, + [5] = { 85.6, 79.1, 36, 300 }, + [6] = { 84.6, 78.7, 36, 300 }, + [7] = { 82, 78.1, 36, 300 }, + [8] = { 81.4, 76.9, 36, 300 }, + [9] = { 82.4, 73.8, 36, 300 }, + [10] = { 0.8, 56.6, 47, 300 }, + [11] = { 1, 56.2, 47, 300 }, + [12] = { 77.2, 20.1, 267, 300 }, + [13] = { 77.7, 20, 267, 300 }, + [14] = { 83.5, 18.1, 267, 300 }, + [15] = { 82.8, 17.9, 267, 300 }, + [16] = { 83.7, 17.7, 267, 300 }, + [17] = { 82.9, 17.3, 267, 300 }, + [18] = { 80.6, 16.8, 267, 300 }, + [19] = { 80.1, 15.7, 267, 300 }, + [20] = { 81, 13, 267, 300 }, + }, + ["lvl"] = "50", + }, + [6767] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [6768] = { + ["coords"] = { + [1] = { 86, 78.9, 36, 300 }, + [2] = { 1.3, 56.1, 47, 300 }, + [3] = { 84.1, 17.5, 267, 300 }, + }, + ["lvl"] = "60", + }, + [6769] = { + ["coords"] = {}, + ["lvl"] = "50", + }, + [6770] = { + ["coords"] = {}, + ["lvl"] = "50", + }, + [6771] = { + ["coords"] = { + [1] = { 85, 80.6, 36, 300 }, + [2] = { 84.8, 80.6, 36, 300 }, + [3] = { 85, 80.2, 36, 300 }, + [4] = { 84.9, 80.1, 36, 300 }, + [5] = { 85.9, 78.9, 36, 300 }, + [6] = { 86.1, 78.9, 36, 300 }, + [7] = { 0.5, 57.3, 47, 300 }, + [8] = { 0.5, 57, 47, 300 }, + [9] = { 1.2, 56.1, 47, 300 }, + [10] = { 1.4, 56.1, 47, 300 }, + [11] = { 83.2, 19, 267, 300 }, + [12] = { 83.1, 18.9, 267, 300 }, + [13] = { 83.2, 18.6, 267, 300 }, + [14] = { 83.1, 18.5, 267, 300 }, + [15] = { 84, 17.5, 267, 300 }, + [16] = { 84.2, 17.5, 267, 300 }, + }, + ["lvl"] = "50", + }, + [6772] = { + ["coords"] = {}, + ["lvl"] = "45", + }, + [6773] = { + ["coords"] = {}, + ["lvl"] = "45", + }, + [6774] = { + ["coords"] = { + [1] = { 45.6, 47.7, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [6775] = { + ["coords"] = { + [1] = { 38.5, 81.6, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "3", + }, + [6776] = { + ["coords"] = { + [1] = { 46.7, 60.7, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "6", + }, + [6777] = { + ["coords"] = { + [1] = { 86, 80, 36, 300 }, + [2] = { 1.3, 56.9, 47, 300 }, + [3] = { 84.1, 18.4, 267, 300 }, + }, + ["lvl"] = "60", + }, + [6778] = { + ["coords"] = { + [1] = { 43.4, 66.2, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "11", + }, + [6779] = { + ["coords"] = { + [1] = { 86.1, 79.6, 36, 300 }, + [2] = { 1.4, 56.6, 47, 300 }, + [3] = { 84.2, 18.1, 267, 300 }, + }, + ["lvl"] = "45", + }, + [6780] = { + ["coords"] = { + [1] = { 61.2, 47.6, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "7", + }, + [6781] = { + ["coords"] = { + [1] = { 55.7, 59.6, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [6782] = { + ["coords"] = { + [1] = { 33.8, 72.2, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [6783] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "10", + }, + [6784] = { + ["coords"] = { + [1] = { 38.2, 56.8, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "5", + }, + [6785] = { + ["coords"] = { + [1] = { 61.8, 52.2, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "7", + }, + [6786] = { + ["coords"] = { + [1] = { 52.1, 68.3, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "4", + }, + [6787] = { + ["coords"] = { + [1] = { 51.3, 41.5, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "16", + }, + [6788] = { + ["coords"] = { + [1] = { 51.5, 38.3, 148, 413 }, + [2] = { 36, 12.3, 361, 413 }, + }, + ["lvl"] = "18-19", + }, + [6789] = { + ["coords"] = { + [1] = { 51.4, 38.3, 148, 413 }, + [2] = { 51.6, 38.3, 148, 413 }, + [3] = { 51.5, 38.1, 148, 413 }, + [4] = { 51.6, 37.8, 148, 413 }, + [5] = { 36, 12.4, 361, 413 }, + [6] = { 36.1, 12.3, 361, 413 }, + [7] = { 36.1, 12.1, 361, 413 }, + [8] = { 36.1, 11.8, 361, 413 }, + }, + ["lvl"] = "9-10", + }, + [6790] = { + ["coords"] = { + [1] = { 73.9, 44.4, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [6791] = { + ["coords"] = { + [1] = { 62, 39.4, 17, 275 }, + }, + ["lvl"] = "35", + }, + [6806] = { + ["coords"] = { + [1] = { 47.2, 52.2, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [6807] = { + ["coords"] = { + [1] = { 27, 77.3, 33, 300 }, + }, + ["lvl"] = "46", + }, + [6826] = { + ["coords"] = { + [1] = { 36.4, 3.6, 1537, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [6827] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [6846] = { + ["coords"] = { + [1] = { 48.1, 87.3, 12, 270 }, + }, + ["lvl"] = "10", + }, + [6866] = { + ["coords"] = { + [1] = { 48.2, 87.6, 12, 0 }, + }, + ["lvl"] = "10", + }, + [6867] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [6868] = { + ["coords"] = { + [1] = { 2.4, 46.1, 3, 300 }, + [2] = { 81.4, 37.2, 51, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [6886] = { + ["coords"] = { + [1] = { 25.2, 44.5, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "12", + }, + [6887] = { + ["coords"] = { + [1] = { 37.4, 45.2, 148, 275 }, + }, + ["fac"] = "A", + ["lvl"] = "50-55", + }, + [6906] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "41", + ["rnk"] = "1", + }, + [6907] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "40", + ["rnk"] = "1", + }, + [6908] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "40", + ["rnk"] = "1", + }, + [6909] = { + ["coords"] = { + [1] = { 37.1, 22.8, 141, 10 }, + }, + ["lvl"] = "12", + }, + [6910] = { + ["coords"] = {}, + ["lvl"] = "40", + ["rnk"] = "1", + }, + [6911] = { + ["coords"] = { + [1] = { 37.5, 24.3, 141, 0 }, + }, + ["lvl"] = "8-10", + }, + [6912] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [6913] = { + ["coords"] = {}, + ["lvl"] = "25", + }, + [6926] = { + ["coords"] = {}, + ["lvl"] = "13", + }, + [6927] = { + ["coords"] = { + [1] = { 48.7, 87.3, 12, 270 }, + }, + ["lvl"] = "8-9", + }, + [6928] = { + ["coords"] = { + [1] = { 51.5, 41.6, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [6929] = { + ["coords"] = { + [1] = { 54.1, 68.4, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [6930] = { + ["coords"] = { + [1] = { 45.2, 56.7, 8, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [6931] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [6932] = { + ["coords"] = {}, + ["lvl"] = "40", + }, + [6946] = { + ["coords"] = { + [1] = { 75.8, 60.4, 1519, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [6966] = { + ["coords"] = { + [1] = { 28.1, 52, 44, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [6986] = { + ["coords"] = { + [1] = { 59.5, 36.6, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [6987] = { + ["coords"] = { + [1] = { 59.6, 36.9, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [7006] = { + ["coords"] = {}, + ["lvl"] = "18", + }, + [7007] = { + ["coords"] = { + [1] = { 37.3, 44.2, 130, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "22", + }, + [7008] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "20", + }, + [7009] = { + ["coords"] = { + [1] = { 28.1, 52.3, 44, 500 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + ["rnk"] = "1", + }, + [7010] = { + ["coords"] = { + [1] = { 56.3, 46.7, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [7011] = { + ["coords"] = {}, + ["lvl"] = "42-43", + }, + [7012] = { + ["coords"] = {}, + ["lvl"] = "42-43", + }, + [7013] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "17-18", + }, + [7014] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "30", + }, + [7015] = { + ["coords"] = { + [1] = { 36.7, 67.6, 148, 7200 }, + }, + ["lvl"] = "16", + ["rnk"] = "4", + }, + [7016] = { + ["coords"] = { + [1] = { 57.8, 21.4, 148, 30600 }, + }, + ["lvl"] = "22", + ["rnk"] = "4", + }, + [7017] = { + ["coords"] = { + [1] = { 55.4, 35.8, 148, 5400 }, + [2] = { 40.5, 9.5, 361, 5400 }, + }, + ["lvl"] = "15-16", + ["rnk"] = "4", + }, + [7022] = { + ["coords"] = {}, + ["lvl"] = "39-40", + ["rnk"] = "1", + }, + [7023] = { + ["coords"] = {}, + ["lvl"] = "42", + ["rnk"] = "1", + }, + [7024] = { + ["coords"] = { + [1] = { 68.5, 70.1, 40, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "22", + }, + [7025] = { + ["coords"] = { + [1] = { 48.8, 59.2, 46, 500 }, + [2] = { 49, 57, 46, 500 }, + [3] = { 45, 56.8, 46, 500 }, + [4] = { 42.5, 56.1, 46, 500 }, + [5] = { 42.3, 56, 46, 500 }, + [6] = { 42.4, 54.7, 46, 500 }, + [7] = { 55.4, 54.4, 46, 500 }, + [8] = { 55.6, 54.1, 46, 500 }, + [9] = { 44.6, 50.9, 46, 500 }, + [10] = { 45, 50.8, 46, 500 }, + [11] = { 44.5, 50.6, 46, 500 }, + }, + ["lvl"] = "55-56", + }, + [7026] = { + ["coords"] = { + [1] = { 50.5, 61.3, 46, 500 }, + [2] = { 50.7, 60.9, 46, 500 }, + [3] = { 44.7, 57.3, 46, 500 }, + [4] = { 43.9, 55.7, 46, 500 }, + [5] = { 51.4, 54.4, 46, 500 }, + [6] = { 49.8, 54, 46, 500 }, + [7] = { 55.3, 54, 46, 500 }, + [8] = { 53.5, 52.8, 46, 500 }, + [9] = { 53.4, 52.5, 46, 500 }, + [10] = { 43.1, 37, 46, 500 }, + [11] = { 40.5, 32.6, 46, 500 }, + }, + ["lvl"] = "55-56", + }, + [7027] = { + ["coords"] = { + [1] = { 41.8, 55.7, 46, 500 }, + [2] = { 39.3, 55.6, 46, 500 }, + [3] = { 41.2, 55.3, 46, 500 }, + [4] = { 49.8, 54.7, 46, 500 }, + [5] = { 51.5, 54.5, 46, 500 }, + [6] = { 55.8, 54.4, 46, 500 }, + [7] = { 38.8, 54.2, 46, 500 }, + [8] = { 55.3, 54, 46, 500 }, + [9] = { 55.6, 53.8, 46, 500 }, + [10] = { 51.2, 53.8, 46, 500 }, + [11] = { 56.2, 53.3, 46, 500 }, + [12] = { 56, 53.1, 46, 500 }, + [13] = { 43.8, 36.8, 46, 500 }, + [14] = { 42.4, 35.7, 46, 500 }, + [15] = { 43.5, 35.4, 46, 500 }, + [16] = { 43.7, 34.1, 46, 500 }, + [17] = { 41.2, 33.5, 46, 500 }, + [18] = { 41.1, 33.4, 46, 500 }, + [19] = { 41, 33.3, 46, 500 }, + [20] = { 39.9, 32.5, 46, 500 }, + }, + ["lvl"] = "56-57", + }, + [7028] = { + ["coords"] = { + [1] = { 50.4, 61.6, 46, 500 }, + [2] = { 55.7, 54.5, 46, 500 }, + [3] = { 55.2, 54.5, 46, 500 }, + [4] = { 42.7, 38.5, 46, 500 }, + [5] = { 42.9, 36.9, 46, 500 }, + [6] = { 40.6, 35.9, 46, 500 }, + [7] = { 40.5, 35.7, 46, 500 }, + [8] = { 39.8, 35.6, 46, 500 }, + [9] = { 41.7, 35.3, 46, 500 }, + [10] = { 39.1, 34.7, 46, 500 }, + [11] = { 43.5, 33.7, 46, 500 }, + [12] = { 41.1, 33.7, 46, 500 }, + [13] = { 17.7, 30.2, 46, 500 }, + [14] = { 17.1, 30.2, 46, 500 }, + [15] = { 18, 29.3, 46, 500 }, + [16] = { 17, 29.3, 46, 500 }, + [17] = { 17.5, 28.8, 46, 500 }, + }, + ["lvl"] = "56-57", + }, + [7029] = { + ["coords"] = { + [1] = { 39.2, 35, 46, 500 }, + [2] = { 41.1, 34.9, 46, 500 }, + [3] = { 40.2, 34.8, 46, 500 }, + [4] = { 39.9, 34.6, 46, 500 }, + [5] = { 40.6, 34, 46, 500 }, + [6] = { 40, 33.8, 46, 500 }, + [7] = { 40.6, 33, 46, 500 }, + [8] = { 39.8, 32.8, 46, 500 }, + }, + ["lvl"] = "57-58", + }, + [7030] = { + ["coords"] = {}, + ["lvl"] = "40-41", + ["rnk"] = "1", + }, + [7031] = { + ["coords"] = { + [1] = { 75.1, 69.2, 46, 500 }, + [2] = { 69.8, 59.9, 46, 500 }, + [3] = { 59.9, 57.9, 46, 500 }, + [4] = { 80.6, 50.6, 46, 500 }, + [5] = { 76.6, 38.3, 46, 500 }, + [6] = { 79.2, 37.4, 46, 500 }, + [7] = { 80.4, 34.2, 46, 500 }, + }, + ["lvl"] = "51-53", + }, + [7032] = { + ["coords"] = { + [1] = { 54.8, 62.5, 46, 500 }, + [2] = { 29.1, 62.3, 46, 500 }, + [3] = { 35.7, 61.1, 46, 500 }, + [4] = { 55.5, 49, 46, 500 }, + [5] = { 44.1, 43.6, 46, 500 }, + [6] = { 41.1, 43.5, 46, 500 }, + [7] = { 61.9, 31.8, 46, 500 }, + [8] = { 66.3, 31.5, 46, 500 }, + }, + ["lvl"] = "55-57", + }, + [7033] = { + ["coords"] = { + [1] = { 76.1, 56.4, 46, 500 }, + [2] = { 76.4, 55.9, 46, 500 }, + [3] = { 78.6, 55.5, 46, 500 }, + [4] = { 77.7, 54.9, 46, 500 }, + [5] = { 83.8, 53.6, 46, 500 }, + [6] = { 82.3, 53.5, 46, 500 }, + [7] = { 83.5, 52.2, 46, 500 }, + [8] = { 76.8, 51.3, 46, 500 }, + [9] = { 75.8, 50.4, 46, 500 }, + [10] = { 74.5, 48.8, 46, 500 }, + [11] = { 87, 48.7, 46, 500 }, + [12] = { 81.6, 48.2, 46, 500 }, + [13] = { 75.5, 48.2, 46, 500 }, + [14] = { 76.8, 47.8, 46, 500 }, + [15] = { 77.4, 47.2, 46, 500 }, + [16] = { 74.6, 47.1, 46, 500 }, + [17] = { 87, 47.1, 46, 500 }, + [18] = { 83.4, 46.7, 46, 500 }, + [19] = { 82, 46.6, 46, 500 }, + [20] = { 80.2, 46.1, 46, 500 }, + [21] = { 81.6, 45.9, 46, 500 }, + [22] = { 82.5, 45.7, 46, 500 }, + [23] = { 87, 45.3, 46, 500 }, + [24] = { 78.3, 45.3, 46, 500 }, + [25] = { 75.1, 45.3, 46, 500 }, + [26] = { 77.2, 45.2, 46, 500 }, + [27] = { 79.2, 45, 46, 500 }, + [28] = { 79.9, 44.6, 46, 500 }, + [29] = { 81.4, 44.1, 46, 500 }, + [30] = { 79, 44, 46, 500 }, + [31] = { 77.1, 43.7, 46, 500 }, + [32] = { 74.6, 43.6, 46, 500 }, + [33] = { 78.3, 43.6, 46, 500 }, + [34] = { 79.3, 43.5, 46, 500 }, + [35] = { 81.6, 43, 46, 500 }, + [36] = { 80, 42.6, 46, 500 }, + [37] = { 80.1, 42.1, 46, 500 }, + [38] = { 80.7, 41.8, 46, 500 }, + [39] = { 78.2, 41.4, 46, 500 }, + [40] = { 81.6, 41.2, 46, 500 }, + [41] = { 80.5, 40.9, 46, 500 }, + [42] = { 74.6, 40.3, 46, 500 }, + [43] = { 82.1, 39.6, 46, 500 }, + [44] = { 83.6, 38.7, 46, 500 }, + [45] = { 74.4, 38.4, 46, 500 }, + [46] = { 74.7, 37, 46, 500 }, + [47] = { 82.4, 36.5, 46, 500 }, + [48] = { 79.2, 35.3, 46, 500 }, + [49] = { 76.8, 34.8, 46, 500 }, + [50] = { 82.6, 33.6, 46, 500 }, + [51] = { 77.9, 33.5, 46, 500 }, + }, + ["lvl"] = "50-51", + }, + [7034] = { + ["coords"] = { + [1] = { 80.4, 48.2, 46, 500 }, + [2] = { 82.4, 48.1, 46, 500 }, + [3] = { 83.1, 47.7, 46, 500 }, + [4] = { 84.7, 47.2, 46, 500 }, + [5] = { 81, 46.6, 46, 500 }, + [6] = { 83.6, 45.4, 46, 500 }, + [7] = { 85, 45.3, 46, 500 }, + [8] = { 80.4, 45.1, 46, 500 }, + [9] = { 80, 44.6, 46, 500 }, + [10] = { 79.6, 44.6, 46, 500 }, + [11] = { 83, 43.4, 46, 500 }, + [12] = { 79.2, 43, 46, 500 }, + [13] = { 80.6, 42.8, 46, 500 }, + [14] = { 79.5, 42, 46, 500 }, + [15] = { 81.9, 42, 46, 500 }, + [16] = { 81.5, 41.8, 46, 500 }, + [17] = { 78.2, 40.4, 46, 500 }, + [18] = { 81.4, 39.5, 46, 500 }, + [19] = { 78.2, 38.5, 46, 500 }, + [20] = { 84.4, 36.7, 46, 500 }, + [21] = { 85.8, 36.3, 46, 500 }, + [22] = { 79.1, 35.4, 46, 500 }, + [23] = { 76.1, 56.4, 46, 500 }, + [24] = { 76.4, 55.9, 46, 500 }, + [25] = { 78.6, 55.5, 46, 500 }, + [26] = { 77.7, 54.9, 46, 500 }, + [27] = { 83.8, 53.6, 46, 500 }, + [28] = { 82.3, 53.5, 46, 500 }, + [29] = { 83.5, 52.2, 46, 500 }, + [30] = { 76.8, 51.3, 46, 500 }, + [31] = { 75.8, 50.4, 46, 500 }, + [32] = { 74.5, 48.8, 46, 500 }, + [33] = { 87, 48.7, 46, 500 }, + [34] = { 81.6, 48.2, 46, 500 }, + [35] = { 75.5, 48.2, 46, 500 }, + [36] = { 76.8, 47.8, 46, 500 }, + [37] = { 77.4, 47.2, 46, 500 }, + [38] = { 74.6, 47.1, 46, 500 }, + [39] = { 87, 47.1, 46, 500 }, + [40] = { 83.4, 46.7, 46, 500 }, + [41] = { 82, 46.6, 46, 500 }, + [42] = { 80.2, 46.1, 46, 500 }, + [43] = { 81.6, 45.9, 46, 500 }, + [44] = { 82.5, 45.7, 46, 500 }, + [45] = { 87, 45.3, 46, 500 }, + [46] = { 78.3, 45.3, 46, 500 }, + [47] = { 75.1, 45.3, 46, 500 }, + [48] = { 77.2, 45.2, 46, 500 }, + [49] = { 79.2, 45, 46, 500 }, + [50] = { 79.9, 44.6, 46, 500 }, + [51] = { 81.4, 44.1, 46, 500 }, + [52] = { 79, 44, 46, 500 }, + [53] = { 77.1, 43.7, 46, 500 }, + [54] = { 74.6, 43.6, 46, 500 }, + [55] = { 78.3, 43.6, 46, 500 }, + [56] = { 79.3, 43.5, 46, 500 }, + [57] = { 81.6, 43, 46, 500 }, + [58] = { 80, 42.6, 46, 500 }, + [59] = { 80.1, 42.1, 46, 500 }, + [60] = { 80.7, 41.8, 46, 500 }, + [61] = { 78.2, 41.4, 46, 500 }, + [62] = { 81.6, 41.2, 46, 500 }, + [63] = { 80.5, 40.9, 46, 500 }, + [64] = { 74.6, 40.3, 46, 500 }, + [65] = { 82.1, 39.6, 46, 500 }, + [66] = { 83.6, 38.7, 46, 500 }, + [67] = { 74.4, 38.4, 46, 500 }, + [68] = { 74.7, 37, 46, 500 }, + [69] = { 82.4, 36.5, 46, 500 }, + [70] = { 79.2, 35.3, 46, 500 }, + [71] = { 76.8, 34.8, 46, 500 }, + [72] = { 82.6, 33.6, 46, 500 }, + [73] = { 77.9, 33.5, 46, 500 }, + }, + ["lvl"] = "51-52", + }, + [7035] = { + ["coords"] = { + [1] = { 80.4, 48.2, 46, 500 }, + [2] = { 82.4, 48.1, 46, 500 }, + [3] = { 83.1, 47.7, 46, 500 }, + [4] = { 84.7, 47.2, 46, 500 }, + [5] = { 81, 46.6, 46, 500 }, + [6] = { 83.6, 45.4, 46, 500 }, + [7] = { 85, 45.3, 46, 500 }, + [8] = { 80.4, 45.1, 46, 500 }, + [9] = { 80, 44.6, 46, 500 }, + [10] = { 79.6, 44.6, 46, 500 }, + [11] = { 83, 43.4, 46, 500 }, + [12] = { 79.2, 43, 46, 500 }, + [13] = { 80.6, 42.8, 46, 500 }, + [14] = { 79.5, 42, 46, 500 }, + [15] = { 81.9, 42, 46, 500 }, + [16] = { 81.5, 41.8, 46, 500 }, + [17] = { 78.2, 40.4, 46, 500 }, + [18] = { 81.4, 39.5, 46, 500 }, + [19] = { 78.2, 38.5, 46, 500 }, + [20] = { 84.4, 36.7, 46, 500 }, + [21] = { 85.8, 36.3, 46, 500 }, + [22] = { 79.1, 35.4, 46, 500 }, + [23] = { 81.4, 44.1, 46, 500 }, + [24] = { 79.3, 43.5, 46, 500 }, + }, + ["lvl"] = "52-53", + }, + [7036] = { + ["coords"] = { + [1] = { 66.2, 44.2, 46, 500 }, + [2] = { 66, 42.8, 46, 500 }, + [3] = { 65.7, 42.2, 46, 500 }, + [4] = { 61.1, 42, 46, 500 }, + [5] = { 65.4, 41.5, 46, 500 }, + [6] = { 63.9, 40.9, 46, 500 }, + [7] = { 53.9, 40.5, 46, 500 }, + [8] = { 66.2, 40.4, 46, 500 }, + [9] = { 65.7, 40.1, 46, 500 }, + [10] = { 62.9, 39.5, 46, 500 }, + [11] = { 63.1, 38.8, 46, 500 }, + [12] = { 69.5, 38.6, 46, 500 }, + [13] = { 61.3, 37, 46, 500 }, + [14] = { 55.4, 36.9, 46, 500 }, + [15] = { 64.4, 36.6, 46, 500 }, + [16] = { 56.2, 36.4, 46, 500 }, + [17] = { 63.2, 36.3, 46, 500 }, + [18] = { 71, 36.2, 46, 500 }, + [19] = { 56.8, 36, 46, 500 }, + [20] = { 64.7, 34.3, 46, 500 }, + }, + ["lvl"] = "53-54", + }, + [7037] = { + ["coords"] = { + [1] = { 66.2, 44.2, 46, 500 }, + [2] = { 66, 42.8, 46, 500 }, + [3] = { 65.7, 42.2, 46, 500 }, + [4] = { 61.1, 42, 46, 500 }, + [5] = { 65.4, 41.5, 46, 500 }, + [6] = { 63.9, 40.9, 46, 500 }, + [7] = { 53.9, 40.5, 46, 500 }, + [8] = { 66.2, 40.4, 46, 500 }, + [9] = { 65.7, 40.1, 46, 500 }, + [10] = { 62.9, 39.5, 46, 500 }, + [11] = { 63.1, 38.8, 46, 500 }, + [12] = { 69.5, 38.6, 46, 500 }, + [13] = { 61.3, 37, 46, 500 }, + [14] = { 55.4, 36.9, 46, 500 }, + [15] = { 64.4, 36.6, 46, 500 }, + [16] = { 56.2, 36.4, 46, 500 }, + [17] = { 63.2, 36.3, 46, 500 }, + [18] = { 71, 36.2, 46, 500 }, + [19] = { 56.8, 36, 46, 500 }, + [20] = { 64.7, 34.3, 46, 500 }, + }, + ["lvl"] = "53-55", + }, + [7038] = { + ["coords"] = { + [1] = { 66.2, 44.2, 46, 500 }, + [2] = { 66, 42.8, 46, 500 }, + [3] = { 65.7, 42.2, 46, 500 }, + [4] = { 61.1, 42, 46, 500 }, + [5] = { 65.4, 41.5, 46, 500 }, + [6] = { 63.9, 40.9, 46, 500 }, + [7] = { 53.9, 40.5, 46, 500 }, + [8] = { 66.2, 40.4, 46, 500 }, + [9] = { 65.7, 40.1, 46, 500 }, + [10] = { 62.9, 39.5, 46, 500 }, + [11] = { 63.1, 38.8, 46, 500 }, + [12] = { 69.5, 38.6, 46, 500 }, + [13] = { 61.3, 37, 46, 500 }, + [14] = { 55.4, 36.9, 46, 500 }, + [15] = { 64.4, 36.6, 46, 500 }, + [16] = { 56.2, 36.4, 46, 500 }, + [17] = { 63.2, 36.3, 46, 500 }, + [18] = { 71, 36.2, 46, 500 }, + [19] = { 56.8, 36, 46, 500 }, + [20] = { 64.7, 34.3, 46, 500 }, + }, + ["lvl"] = "54-55", + }, + [7039] = { + ["coords"] = { + [1] = { 60.8, 43, 46, 500 }, + [2] = { 64.3, 41.8, 46, 500 }, + [3] = { 55.7, 40.5, 46, 500 }, + [4] = { 62.1, 40.5, 46, 500 }, + [5] = { 61.7, 40.4, 46, 500 }, + [6] = { 66.8, 40.4, 46, 500 }, + [7] = { 68.6, 38.9, 46, 500 }, + [8] = { 58.3, 38.3, 46, 500 }, + [9] = { 52.5, 38.3, 46, 500 }, + [10] = { 59.4, 37.8, 46, 500 }, + [11] = { 68.3, 37.7, 46, 500 }, + [12] = { 67.4, 37.6, 46, 500 }, + [13] = { 65.9, 36.5, 46, 500 }, + [14] = { 66.7, 36.3, 46, 500 }, + [15] = { 54.6, 35.9, 46, 500 }, + [16] = { 61.1, 35.4, 46, 500 }, + [17] = { 60.9, 35.1, 46, 500 }, + [18] = { 62.8, 35, 46, 500 }, + [19] = { 56.9, 34.6, 46, 500 }, + [20] = { 56.5, 34, 46, 500 }, + }, + ["lvl"] = "53-55", + }, + [7040] = { + ["coords"] = { + [1] = { 58.3, 64.5, 46, 500 }, + [2] = { 56.1, 64.4, 46, 500 }, + [3] = { 75.5, 62.5, 46, 500 }, + [4] = { 57, 61.4, 46, 500 }, + [5] = { 56.3, 60.6, 46, 500 }, + [6] = { 92.8, 57.5, 46, 500 }, + [7] = { 93.9, 55.4, 46, 500 }, + [8] = { 92.2, 54.6, 46, 500 }, + [9] = { 90.5, 54, 46, 500 }, + [10] = { 90.5, 52.3, 46, 500 }, + [11] = { 87.2, 39.8, 46, 500 }, + [12] = { 90.4, 38.4, 46, 500 }, + [13] = { 88.9, 37.7, 46, 500 }, + [14] = { 90.3, 36.9, 46, 500 }, + [15] = { 88.5, 36.4, 46, 500 }, + [16] = { 87.2, 35.1, 46, 500 }, + [17] = { 83.6, 28.6, 46, 500 }, + [18] = { 87, 28.3, 46, 500 }, + [19] = { 85.4, 27.2, 46, 500 }, + [20] = { 82.4, 26.6, 46, 500 }, + [21] = { 86.8, 26.3, 46, 500 }, + }, + ["lvl"] = "52-53", + ["rnk"] = "1", + }, + [7041] = { + ["coords"] = { + [1] = { 76.7, 62.5, 46, 500 }, + [2] = { 77.9, 62.2, 46, 500 }, + [3] = { 57.5, 62.2, 46, 500 }, + [4] = { 77.3, 61.9, 46, 500 }, + [5] = { 77.1, 61.6, 46, 500 }, + [6] = { 58.4, 60.8, 46, 500 }, + [7] = { 57.6, 60.6, 46, 500 }, + [8] = { 91.4, 55.9, 46, 500 }, + [9] = { 92.8, 53.8, 46, 500 }, + [10] = { 91.8, 53.2, 46, 500 }, + [11] = { 91.6, 50.3, 46, 500 }, + [12] = { 88.4, 40, 46, 500 }, + [13] = { 88.3, 37.5, 46, 500 }, + [14] = { 89.2, 35.5, 46, 500 }, + [15] = { 84.7, 28.7, 46, 500 }, + [16] = { 84, 26.9, 46, 500 }, + [17] = { 84.7, 26.9, 46, 500 }, + [18] = { 90.5, 54, 46, 500 }, + [19] = { 88.9, 37.7, 46, 500 }, + [20] = { 90.3, 36.9, 46, 500 }, + [21] = { 88.5, 36.4, 46, 500 }, + [22] = { 87, 28.3, 46, 500 }, + }, + ["lvl"] = "53-54", + ["rnk"] = "1", + }, + [7042] = { + ["coords"] = { + [1] = { 33.6, 71, 46, 500 }, + [2] = { 32.5, 71, 46, 500 }, + [3] = { 33.7, 69.8, 46, 500 }, + [4] = { 32.4, 69.3, 46, 500 }, + [5] = { 34.5, 68.9, 46, 500 }, + [6] = { 31.7, 66.5, 46, 500 }, + [7] = { 32.9, 66.5, 46, 500 }, + [8] = { 30, 62.8, 46, 500 }, + [9] = { 32.5, 62.4, 46, 500 }, + [10] = { 30.9, 62.3, 46, 500 }, + [11] = { 30.7, 61.4, 46, 500 }, + [12] = { 31.4, 61.3, 46, 500 }, + [13] = { 32.4, 60.6, 46, 500 }, + [14] = { 30, 60.5, 46, 500 }, + [15] = { 31.2, 59.1, 46, 500 }, + [16] = { 37.2, 49.1, 46, 500 }, + [17] = { 35.7, 49.1, 46, 500 }, + [18] = { 20.2, 48.8, 46, 500 }, + [19] = { 34.7, 48.7, 46, 500 }, + [20] = { 36.1, 48.6, 46, 500 }, + [21] = { 23.4, 47.6, 46, 500 }, + [22] = { 21.6, 47.4, 46, 500 }, + [23] = { 36.9, 47.2, 46, 500 }, + [24] = { 21.4, 46.4, 46, 500 }, + [25] = { 19.9, 45.4, 46, 500 }, + [26] = { 22.3, 45.2, 46, 500 }, + [27] = { 20.8, 45, 46, 500 }, + }, + ["lvl"] = "56-57", + ["rnk"] = "1", + }, + [7043] = { + ["coords"] = { + [1] = { 33.6, 71, 46, 500 }, + [2] = { 32.5, 71, 46, 500 }, + [3] = { 33.7, 69.8, 46, 500 }, + [4] = { 32.4, 69.3, 46, 500 }, + [5] = { 34.5, 68.9, 46, 500 }, + [6] = { 31.7, 66.5, 46, 500 }, + [7] = { 32.9, 66.5, 46, 500 }, + [8] = { 30, 62.8, 46, 500 }, + [9] = { 32.5, 62.4, 46, 500 }, + [10] = { 30.9, 62.3, 46, 500 }, + [11] = { 30.7, 61.4, 46, 500 }, + [12] = { 31.4, 61.3, 46, 500 }, + [13] = { 32.4, 60.6, 46, 500 }, + [14] = { 30, 60.5, 46, 500 }, + [15] = { 31.2, 59.1, 46, 500 }, + [16] = { 37.2, 49.1, 46, 500 }, + [17] = { 35.7, 49.1, 46, 500 }, + [18] = { 20.2, 48.8, 46, 500 }, + [19] = { 34.7, 48.7, 46, 500 }, + [20] = { 36.1, 48.6, 46, 500 }, + [21] = { 23.4, 47.6, 46, 500 }, + [22] = { 21.6, 47.4, 46, 500 }, + [23] = { 36.9, 47.2, 46, 500 }, + [24] = { 21.4, 46.4, 46, 500 }, + [25] = { 19.9, 45.4, 46, 500 }, + [26] = { 22.3, 45.2, 46, 500 }, + [27] = { 20.8, 45, 46, 500 }, + }, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [7044] = { + ["coords"] = { + [1] = { 82.4, 61.8, 46, 500 }, + [2] = { 93.7, 55.9, 46, 500 }, + [3] = { 82.9, 27.1, 46, 500 }, + }, + ["lvl"] = "50-52", + ["rnk"] = "1", + }, + [7045] = { + ["coords"] = { + [1] = { 54.1, 67.1, 46, 500 }, + [2] = { 57.6, 65.2, 46, 500 }, + }, + ["lvl"] = "53-55", + ["rnk"] = "1", + }, + [7046] = { + ["coords"] = { + [1] = { 32, 62, 46, 500 }, + [2] = { 23.1, 59.6, 46, 500 }, + [3] = { 17.4, 52.5, 46, 500 }, + }, + ["lvl"] = "56-58", + ["rnk"] = "1", + }, + [7047] = { + ["coords"] = { + [1] = { 84.6, 62.1, 46, 500 }, + [2] = { 90.5, 50.9, 46, 500 }, + [3] = { 90.6, 47.4, 46, 500 }, + [4] = { 90.5, 45.2, 46, 500 }, + [5] = { 89.5, 43.9, 46, 500 }, + [6] = { 91.5, 38.4, 46, 500 }, + [7] = { 91.7, 35.5, 46, 500 }, + [8] = { 87.8, 33.4, 46, 500 }, + [9] = { 91.6, 33.4, 46, 500 }, + [10] = { 84.9, 31.9, 46, 500 }, + [11] = { 86.9, 30.5, 46, 500 }, + [12] = { 88.2, 30, 46, 500 }, + [13] = { 81, 28.2, 46, 500 }, + [14] = { 81.4, 26.5, 46, 500 }, + }, + ["lvl"] = "51-52", + }, + [7048] = { + ["coords"] = { + [1] = { 55.7, 64.4, 46, 500 }, + [2] = { 59.9, 63.9, 46, 500 }, + [3] = { 37.8, 62.5, 46, 500 }, + [4] = { 70.9, 62.1, 46, 500 }, + [5] = { 64.4, 60.6, 46, 500 }, + [6] = { 63.8, 57.3, 46, 500 }, + [7] = { 34.6, 55.4, 46, 500 }, + [8] = { 40.9, 48.8, 46, 500 }, + [9] = { 38.7, 46.2, 46, 500 }, + [10] = { 59.2, 32.3, 46, 500 }, + [11] = { 57.6, 31.6, 46, 500 }, + [12] = { 61.1, 31.2, 46, 500 }, + [13] = { 72.4, 28.2, 46, 500 }, + [14] = { 78.4, 27.5, 46, 500 }, + [15] = { 73.2, 27.1, 46, 500 }, + [16] = { 52.7, 26, 46, 500 }, + [17] = { 66.6, 96.8, 51, 500 }, + }, + ["lvl"] = "53-54", + }, + [7049] = { + ["coords"] = { + [1] = { 23.3, 70.6, 46, 500 }, + [2] = { 24.4, 69.4, 46, 500 }, + [3] = { 22.4, 69.1, 46, 500 }, + [4] = { 24.3, 67.4, 46, 500 }, + [5] = { 22.3, 58.9, 46, 500 }, + [6] = { 28.7, 57.8, 46, 500 }, + [7] = { 17, 55.4, 46, 500 }, + [8] = { 24.8, 47.2, 46, 500 }, + [9] = { 25.4, 45.7, 46, 500 }, + }, + ["lvl"] = "55-56", + }, + [7050] = { + ["coords"] = { + [1] = { 12.2, 74.9, 10, 300 }, + [2] = { 71.8, 71.4, 40, 300 }, + [3] = { 71.8, 71.3, 40, 300 }, + }, + ["lvl"] = "22", + }, + [7051] = { + ["coords"] = { + [1] = { 69.5, 74, 40, 300 }, + }, + ["lvl"] = "23", + }, + [7052] = { + ["coords"] = { + [1] = { 70.4, 75.1, 40, 300 }, + [2] = { 70.4, 75, 40, 300 }, + }, + ["lvl"] = "23", + }, + [7053] = { + ["coords"] = { + [1] = { 70.6, 73.9, 40, 300 }, + }, + ["lvl"] = "23", + ["rnk"] = "1", + }, + [7055] = { + ["coords"] = { + [1] = { 49.2, 58.5, 46, 500 }, + [2] = { 44.6, 58, 46, 500 }, + [3] = { 48.7, 57.6, 46, 500 }, + [4] = { 38.7, 54.5, 46, 500 }, + [5] = { 55.7, 54.1, 46, 500 }, + [6] = { 51, 53.4, 46, 500 }, + }, + ["lvl"] = "54-55", + }, + [7056] = { + ["coords"] = { + [1] = { 71.1, 74.7, 40, 300 }, + [2] = { 71.1, 74.5, 40, 300 }, + }, + ["lvl"] = "24", + }, + [7057] = { + ["coords"] = { + [1] = { 41.3, 16.1, 3, 37800 }, + [2] = { 40.3, 90.7, 38, 37800 }, + }, + ["lvl"] = "38", + ["rnk"] = "2", + }, + [7067] = { + ["coords"] = { + [1] = { 55, 6, 17, 300 }, + [2] = { 70.7, 73, 40, 300 }, + [3] = { 70.6, 72.9, 40, 300 }, + }, + ["lvl"] = "22", + }, + [7068] = { + ["coords"] = { + [1] = { 19.7, 78.2, 267, 600 }, + [2] = { 18.3, 77.9, 267, 600 }, + [3] = { 19.8, 76.9, 267, 600 }, + [4] = { 18.3, 76.5, 267, 600 }, + }, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [7069] = { + ["coords"] = { + [1] = { 13.6, 83.4, 267, 600 }, + [2] = { 13.4, 80, 267, 600 }, + [3] = { 16, 77.6, 267, 600 }, + [4] = { 15.6, 77.2, 267, 600 }, + }, + ["lvl"] = "31-32", + }, + [7070] = { + ["coords"] = { + [1] = { 13.1, 82.8, 267, 600 }, + [2] = { 16.3, 80.9, 267, 600 }, + [3] = { 16.7, 80.5, 267, 600 }, + [4] = { 17.3, 80.4, 267, 600 }, + }, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [7071] = { + ["coords"] = { + [1] = { 13.2, 83.3, 267, 600 }, + [2] = { 19, 80.6, 267, 600 }, + [3] = { 18.4, 78.1, 267, 600 }, + [4] = { 17.3, 76.6, 267, 600 }, + [5] = { 19.7, 76.6, 267, 600 }, + [6] = { 15.8, 76.6, 267, 600 }, + [7] = { 18.4, 76.5, 267, 600 }, + [8] = { 20.3, 76, 267, 600 }, + }, + ["lvl"] = "30-31", + }, + [7072] = { + ["coords"] = { + [1] = { 14.1, 83.9, 267, 600 }, + [2] = { 16.9, 83.8, 267, 600 }, + [3] = { 15.4, 81.8, 267, 600 }, + [4] = { 15.6, 80.3, 267, 600 }, + }, + ["lvl"] = "32", + }, + [7073] = { + ["coords"] = { + [1] = { 16, 81.1, 267, 300 }, + }, + ["lvl"] = "35", + }, + [7074] = { + ["coords"] = { + [1] = { 16, 80.6, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "34", + }, + [7075] = { + ["coords"] = { + [1] = { 16.2, 84.9, 267, 600 }, + [2] = { 14, 84.1, 267, 600 }, + [3] = { 16.3, 82.2, 267, 600 }, + [4] = { 14.7, 82, 267, 600 }, + [5] = { 13.4, 80.9, 267, 600 }, + [6] = { 17.1, 80.7, 267, 600 }, + [7] = { 15.5, 77.4, 267, 600 }, + }, + ["lvl"] = "31-32", + }, + [7076] = { + ["coords"] = {}, + ["lvl"] = "44-45", + }, + [7077] = { + ["coords"] = {}, + ["lvl"] = "44-45", + }, + [7078] = { + ["coords"] = {}, + ["lvl"] = "35-36", + }, + [7079] = { + ["coords"] = {}, + ["lvl"] = "30", + ["rnk"] = "1", + }, + [7086] = { + ["coords"] = { + [1] = { 55.7, 85.4, 148, 300 }, + [2] = { 55.3, 85.2, 148, 300 }, + [3] = { 38.7, 72.7, 361, 300 }, + [4] = { 39.9, 72.6, 361, 300 }, + [5] = { 39, 72.6, 361, 300 }, + [6] = { 40.4, 72.5, 361, 300 }, + [7] = { 38.9, 71.9, 361, 300 }, + [8] = { 40.7, 71.9, 361, 300 }, + [9] = { 38.8, 71.5, 361, 300 }, + [10] = { 40.6, 71.3, 361, 300 }, + [11] = { 39.7, 71.2, 361, 300 }, + [12] = { 39.2, 71, 361, 300 }, + [13] = { 41.2, 70.9, 361, 300 }, + [14] = { 40.2, 70.8, 361, 300 }, + [15] = { 40.6, 70.6, 361, 300 }, + [16] = { 40.1, 68.2, 361, 300 }, + [17] = { 41.7, 67.9, 361, 300 }, + [18] = { 42.2, 67.7, 361, 300 }, + [19] = { 40.5, 67.7, 361, 300 }, + [20] = { 40.1, 67.5, 361, 300 }, + [21] = { 41.9, 67.2, 361, 300 }, + [22] = { 41.1, 67, 361, 300 }, + [23] = { 41.6, 66.7, 361, 300 }, + [24] = { 40.4, 66.6, 361, 300 }, + [25] = { 40.9, 66, 361, 300 }, + [26] = { 40.4, 65.7, 361, 300 }, + }, + ["lvl"] = "49-50", + }, + [7087] = { + ["coords"] = { + [1] = { 70.2, 59.2, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [7088] = { + ["coords"] = { + [1] = { 63.4, 45.4, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [7089] = { + ["coords"] = { + [1] = { 38.8, 25.6, 215, 250 }, + [2] = { 44.4, 43.2, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [7091] = { + ["coords"] = {}, + ["lvl"] = "43-44", + ["rnk"] = "1", + }, + [7092] = { + ["coords"] = { + [1] = { 49.8, 70, 148, 300 }, + [2] = { 50.4, 70, 148, 300 }, + [3] = { 40.7, 59.8, 361, 300 }, + [4] = { 40.6, 59.4, 361, 300 }, + [5] = { 40.5, 59.1, 361, 300 }, + [6] = { 40.9, 59, 361, 300 }, + [7] = { 40.3, 58.9, 361, 300 }, + [8] = { 40, 56, 361, 300 }, + [9] = { 40.5, 55.7, 361, 300 }, + [10] = { 40.1, 55.4, 361, 300 }, + [11] = { 39.7, 54.9, 361, 300 }, + [12] = { 40.1, 54.7, 361, 300 }, + [13] = { 39.2, 54.6, 361, 300 }, + [14] = { 39.3, 54.5, 361, 300 }, + [15] = { 40.4, 54.3, 361, 300 }, + [16] = { 39.5, 54, 361, 300 }, + [17] = { 42.8, 51.1, 361, 300 }, + [18] = { 42.6, 50.4, 361, 300 }, + [19] = { 41.5, 50.1, 361, 300 }, + [20] = { 42, 49.6, 361, 300 }, + [21] = { 39.5, 49.2, 361, 300 }, + [22] = { 38.5, 49.2, 361, 300 }, + [23] = { 41.7, 48.9, 361, 300 }, + [24] = { 43.9, 48.6, 361, 300 }, + [25] = { 34.2, 48.5, 361, 300 }, + [26] = { 34.9, 48.4, 361, 300 }, + [27] = { 39.3, 48.4, 361, 300 }, + [28] = { 43.5, 48.3, 361, 300 }, + [29] = { 39.7, 48.2, 361, 300 }, + [30] = { 40, 48.1, 361, 300 }, + [31] = { 42.6, 47.6, 361, 300 }, + [32] = { 41.2, 47.4, 361, 300 }, + [33] = { 42.2, 46.5, 361, 300 }, + [34] = { 44, 46.4, 361, 300 }, + [35] = { 40.9, 45.7, 361, 300 }, + [36] = { 41.4, 45.5, 361, 300 }, + }, + ["lvl"] = "51-52", + }, + [7093] = { + ["coords"] = { + [1] = { 36.5, 52.8, 361, 300 }, + [2] = { 36.9, 52.6, 361, 300 }, + [3] = { 37.5, 52, 361, 300 }, + [4] = { 37, 47.3, 361, 300 }, + [5] = { 36.6, 46.9, 361, 300 }, + [6] = { 36.7, 46.2, 361, 300 }, + [7] = { 36.9, 45.5, 361, 300 }, + [8] = { 37.1, 45.1, 361, 300 }, + [9] = { 37.3, 44.8, 361, 300 }, + }, + ["lvl"] = "53", + }, + [7094] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [7095] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [7096] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [7097] = { + ["coords"] = { + [1] = { 54.8, 88.1, 148, 300 }, + [2] = { 57.5, 26.6, 331, 300 }, + [3] = { 56.7, 90.9, 361, 300 }, + [4] = { 46.5, 87.7, 361, 300 }, + [5] = { 51.5, 85.6, 361, 300 }, + [6] = { 53.8, 84.3, 361, 300 }, + [7] = { 56.8, 83.6, 361, 300 }, + [8] = { 44.6, 82.8, 361, 300 }, + [9] = { 50.7, 82.1, 361, 300 }, + [10] = { 49, 81.5, 361, 300 }, + [11] = { 44.5, 81.5, 361, 300 }, + [12] = { 42.2, 81.5, 361, 300 }, + [13] = { 47.8, 77.2, 361, 300 }, + [14] = { 46.9, 73.8, 361, 300 }, + [15] = { 37.6, 72.8, 361, 300 }, + [16] = { 39.9, 69, 361, 300 }, + }, + ["lvl"] = "48-49", + }, + [7098] = { + ["coords"] = { + [1] = { 53.7, 27, 361, 300 }, + [2] = { 56.7, 26.4, 361, 300 }, + [3] = { 55.6, 23.3, 361, 300 }, + [4] = { 63.7, 21.9, 361, 300 }, + [5] = { 56.4, 21.4, 361, 300 }, + [6] = { 62.5, 19.4, 361, 300 }, + [7] = { 64, 18.3, 361, 300 }, + [8] = { 53.8, 16.2, 361, 300 }, + [9] = { 51.2, 16.2, 361, 300 }, + [10] = { 62.5, 16, 361, 300 }, + [11] = { 57.5, 15.9, 361, 300 }, + [12] = { 53.2, 11.6, 361, 300 }, + [13] = { 55.7, 10.8, 361, 300 }, + }, + ["lvl"] = "52-53", + }, + [7099] = { + ["coords"] = { + [1] = { 44.9, 69.9, 361, 300 }, + [2] = { 45, 66.9, 361, 300 }, + [3] = { 42.6, 64.6, 361, 300 }, + [4] = { 43.2, 63.4, 361, 300 }, + [5] = { 41.3, 57, 361, 300 }, + [6] = { 39.5, 56.8, 361, 300 }, + [7] = { 38.5, 55.1, 361, 300 }, + [8] = { 38.1, 53.7, 361, 300 }, + [9] = { 41.5, 53.7, 361, 300 }, + [10] = { 41.8, 50.1, 361, 300 }, + [11] = { 38.6, 49.4, 361, 300 }, + [12] = { 38.2, 42, 361, 300 }, + [13] = { 39.2, 37, 361, 300 }, + [14] = { 40.6, 34.3, 361, 300 }, + [15] = { 49.5, 33.6, 361, 300 }, + [16] = { 51.7, 29.5, 361, 300 }, + [17] = { 45.2, 17.6, 361, 300 }, + [18] = { 50.2, 16, 361, 300 }, + [19] = { 47.9, 15.4, 361, 300 }, + }, + ["lvl"] = "50-51", + }, + [7100] = { + ["coords"] = { + [1] = { 58, 22.4, 361, 300 }, + [2] = { 58.4, 22.4, 361, 300 }, + [3] = { 58.1, 22, 361, 300 }, + [4] = { 57.2, 21.9, 361, 300 }, + [5] = { 57.4, 21.7, 361, 300 }, + [6] = { 59.6, 21.4, 361, 300 }, + [7] = { 59.2, 21.2, 361, 300 }, + [8] = { 59, 21, 361, 300 }, + [9] = { 57.2, 21, 361, 300 }, + [10] = { 58.1, 20.4, 361, 300 }, + [11] = { 59.3, 20.2, 361, 300 }, + [12] = { 59.1, 19.9, 361, 300 }, + [13] = { 59.5, 19.7, 361, 300 }, + [14] = { 57.3, 19.7, 361, 300 }, + [15] = { 55, 19.6, 361, 300 }, + [16] = { 58.3, 19.1, 361, 300 }, + [17] = { 57.9, 19.1, 361, 300 }, + [18] = { 57.8, 18.5, 361, 300 }, + [19] = { 58.4, 18.4, 361, 300 }, + [20] = { 57.2, 18.3, 361, 300 }, + [21] = { 54.9, 17.8, 361, 300 }, + [22] = { 56.6, 17.8, 361, 300 }, + [23] = { 58.2, 17.7, 361, 300 }, + [24] = { 55.4, 17.7, 361, 300 }, + [25] = { 57.1, 17.5, 361, 300 }, + [26] = { 57.1, 17.2, 361, 300 }, + [27] = { 56, 17, 361, 300 }, + [28] = { 54.4, 16.9, 361, 300 }, + [29] = { 55.5, 16.6, 361, 300 }, + [30] = { 54.9, 15.7, 361, 300 }, + }, + ["lvl"] = "52-53", + }, + [7101] = { + ["coords"] = { + [1] = { 58, 22.4, 361, 300 }, + [2] = { 58.4, 22.4, 361, 300 }, + [3] = { 58.1, 22, 361, 300 }, + [4] = { 57.2, 21.9, 361, 300 }, + [5] = { 57.4, 21.7, 361, 300 }, + [6] = { 59.6, 21.4, 361, 300 }, + [7] = { 59.2, 21.2, 361, 300 }, + [8] = { 59, 21, 361, 300 }, + [9] = { 57.2, 21, 361, 300 }, + [10] = { 58.1, 20.4, 361, 300 }, + [11] = { 59.3, 20.2, 361, 300 }, + [12] = { 59.1, 19.9, 361, 300 }, + [13] = { 59.5, 19.7, 361, 300 }, + [14] = { 57.3, 19.7, 361, 300 }, + [15] = { 55, 19.6, 361, 300 }, + [16] = { 58.3, 19.1, 361, 300 }, + [17] = { 57.9, 19.1, 361, 300 }, + [18] = { 57.8, 18.5, 361, 300 }, + [19] = { 58.4, 18.4, 361, 300 }, + [20] = { 57.2, 18.3, 361, 300 }, + [21] = { 54.9, 17.8, 361, 300 }, + [22] = { 56.6, 17.8, 361, 300 }, + [23] = { 58.2, 17.7, 361, 300 }, + [24] = { 55.4, 17.7, 361, 300 }, + [25] = { 57.1, 17.5, 361, 300 }, + [26] = { 57.1, 17.2, 361, 300 }, + [27] = { 56, 17, 361, 300 }, + [28] = { 54.4, 16.9, 361, 300 }, + [29] = { 55.5, 16.6, 361, 300 }, + [30] = { 54.9, 15.7, 361, 300 }, + }, + ["lvl"] = "53-54", + }, + [7104] = { + ["coords"] = { + [1] = { 58.4, 17.9, 361, 37800 }, + }, + ["lvl"] = "56", + ["rnk"] = "2", + }, + [7105] = { + ["coords"] = { + [1] = { 40.2, 19.8, 331, 300 }, + [2] = { 38.9, 16.9, 331, 300 }, + [3] = { 43.3, 88.9, 361, 300 }, + [4] = { 43.8, 88.4, 361, 300 }, + [5] = { 42.8, 87.4, 361, 300 }, + [6] = { 43.4, 87.4, 361, 300 }, + [7] = { 44, 87.2, 361, 300 }, + [8] = { 41.7, 87.1, 361, 300 }, + [9] = { 42, 87, 361, 300 }, + [10] = { 41.9, 87, 361, 300 }, + [11] = { 43.5, 86.9, 361, 300 }, + [12] = { 40.7, 86.8, 361, 300 }, + [13] = { 42.6, 86.6, 361, 300 }, + [14] = { 41.6, 86.5, 361, 300 }, + [15] = { 42.2, 86.3, 361, 300 }, + [16] = { 41.1, 86, 361, 300 }, + [17] = { 44.3, 86, 361, 300 }, + [18] = { 41.6, 85.7, 361, 300 }, + [19] = { 40.8, 85.6, 361, 300 }, + [20] = { 40.3, 85.6, 361, 300 }, + [21] = { 40, 85.5, 361, 300 }, + [22] = { 42, 85.3, 361, 300 }, + [23] = { 39.8, 85.2, 361, 300 }, + [24] = { 39.7, 85, 361, 300 }, + [25] = { 41.8, 84.8, 361, 300 }, + [26] = { 41.7, 84.2, 361, 300 }, + [27] = { 42, 84.2, 361, 300 }, + [28] = { 41.8, 84.1, 361, 300 }, + [29] = { 39.3, 84.1, 361, 300 }, + [30] = { 42.3, 83.7, 361, 300 }, + [31] = { 39, 83.6, 361, 300 }, + [32] = { 39.3, 83, 361, 300 }, + [33] = { 39, 82.9, 361, 300 }, + [34] = { 39.1, 82.1, 361, 300 }, + [35] = { 38, 81.1, 361, 300 }, + [36] = { 38.1, 80.6, 361, 300 }, + [37] = { 38.7, 80.3, 361, 300 }, + }, + ["lvl"] = "49-50", + }, + [7106] = { + ["coords"] = { + [1] = { 48.2, 86.5, 148, 300 }, + [2] = { 47.9, 86.3, 148, 300 }, + [3] = { 49.1, 86.1, 148, 300 }, + [4] = { 49.6, 85.9, 148, 300 }, + [5] = { 48.7, 85.8, 148, 300 }, + [6] = { 48.6, 85.6, 148, 300 }, + [7] = { 47.9, 85.5, 148, 300 }, + [8] = { 48.2, 85.4, 148, 300 }, + [9] = { 37.2, 69.9, 361, 300 }, + [10] = { 37.8, 69.5, 361, 300 }, + [11] = { 38.1, 69.5, 361, 300 }, + [12] = { 37.7, 69.3, 361, 300 }, + [13] = { 37, 69.1, 361, 300 }, + [14] = { 38, 69.1, 361, 300 }, + [15] = { 37.4, 68.8, 361, 300 }, + [16] = { 36.8, 68.8, 361, 300 }, + [17] = { 37.7, 68.6, 361, 300 }, + [18] = { 37, 68.1, 361, 300 }, + [19] = { 37.4, 67.4, 361, 300 }, + [20] = { 37.1, 67.3, 361, 300 }, + [21] = { 32.3, 67.3, 361, 300 }, + [22] = { 37.5, 67.2, 361, 300 }, + [23] = { 31.9, 67, 361, 300 }, + [24] = { 35.4, 66.9, 361, 300 }, + [25] = { 36.9, 66.9, 361, 300 }, + [26] = { 35.5, 66.8, 361, 300 }, + [27] = { 33.4, 66.7, 361, 300 }, + [28] = { 35.3, 66.6, 361, 300 }, + [29] = { 37.3, 66.6, 361, 300 }, + [30] = { 33.9, 66.6, 361, 300 }, + [31] = { 37.6, 66.5, 361, 300 }, + [32] = { 32.9, 66.5, 361, 300 }, + [33] = { 37.5, 66.3, 361, 300 }, + [34] = { 32.8, 66.2, 361, 300 }, + [35] = { 37.4, 66.1, 361, 300 }, + [36] = { 31.9, 66.1, 361, 300 }, + [37] = { 32.3, 65.9, 361, 300 }, + }, + ["lvl"] = "50-51", + }, + [7107] = { + ["coords"] = { + [1] = { 54.3, 47, 148, 300 }, + [2] = { 54.1, 46.8, 148, 300 }, + [3] = { 57.4, 42.4, 148, 300 }, + [4] = { 57.3, 41.6, 148, 300 }, + [5] = { 57.2, 40.4, 148, 300 }, + [6] = { 57.2, 40.1, 148, 300 }, + [7] = { 36.7, 56.8, 361, 300 }, + [8] = { 39.2, 22.3, 361, 300 }, + [9] = { 39, 22.1, 361, 300 }, + [10] = { 41.3, 20.4, 361, 300 }, + [11] = { 41, 20.4, 361, 300 }, + [12] = { 40.7, 19.8, 361, 300 }, + [13] = { 42.4, 19.7, 361, 300 }, + [14] = { 41.6, 19.6, 361, 300 }, + [15] = { 41.8, 19.1, 361, 300 }, + [16] = { 42.2, 18.7, 361, 300 }, + [17] = { 42.8, 18.7, 361, 300 }, + [18] = { 42.5, 18.5, 361, 300 }, + [19] = { 42.7, 18, 361, 300 }, + [20] = { 42.4, 17.1, 361, 300 }, + [21] = { 42.8, 16.9, 361, 300 }, + [22] = { 43.4, 16.1, 361, 300 }, + [23] = { 42.7, 16.1, 361, 300 }, + [24] = { 43.1, 15.6, 361, 300 }, + [25] = { 43.2, 15.1, 361, 300 }, + [26] = { 42.6, 14.7, 361, 300 }, + [27] = { 42.5, 14.4, 361, 300 }, + [28] = { 46.2, 14.4, 361, 300 }, + [29] = { 45.1, 14.3, 361, 300 }, + [30] = { 44.9, 14, 361, 300 }, + [31] = { 44, 13.8, 361, 300 }, + }, + ["lvl"] = "52-53", + }, + [7108] = { + ["coords"] = { + [1] = { 54.3, 47, 148, 300 }, + [2] = { 54.1, 46.8, 148, 300 }, + [3] = { 57.4, 42.4, 148, 300 }, + [4] = { 57.3, 41.6, 148, 300 }, + [5] = { 57.2, 40.4, 148, 300 }, + [6] = { 57.2, 40.1, 148, 300 }, + [7] = { 39.2, 22.3, 361, 300 }, + [8] = { 39, 22.1, 361, 300 }, + [9] = { 41.3, 20.4, 361, 300 }, + [10] = { 41, 20.4, 361, 300 }, + [11] = { 40.7, 19.8, 361, 300 }, + [12] = { 42.4, 19.7, 361, 300 }, + [13] = { 41.6, 19.6, 361, 300 }, + [14] = { 41.8, 19.1, 361, 300 }, + [15] = { 42.2, 18.7, 361, 300 }, + [16] = { 42.8, 18.7, 361, 300 }, + [17] = { 42.5, 18.5, 361, 300 }, + [18] = { 42.7, 18, 361, 300 }, + [19] = { 42.4, 17.1, 361, 300 }, + [20] = { 42.8, 16.9, 361, 300 }, + [21] = { 43.4, 16.1, 361, 300 }, + [22] = { 42.7, 16.1, 361, 300 }, + [23] = { 43.1, 15.6, 361, 300 }, + [24] = { 43.2, 15.1, 361, 300 }, + [25] = { 42.6, 14.7, 361, 300 }, + [26] = { 42.5, 14.4, 361, 300 }, + [27] = { 46.2, 14.4, 361, 300 }, + [28] = { 45.1, 14.3, 361, 300 }, + [29] = { 44.9, 14, 361, 300 }, + [30] = { 44, 13.8, 361, 300 }, + }, + ["lvl"] = "52-53", + }, + [7109] = { + ["coords"] = { + [1] = { 41.3, 22.2, 331, 300 }, + [2] = { 40.7, 21.6, 331, 300 }, + [3] = { 40.9, 21.5, 331, 300 }, + [4] = { 44, 88.9, 361, 300 }, + [5] = { 43.1, 88.8, 361, 300 }, + [6] = { 42.9, 88.1, 361, 300 }, + [7] = { 43.1, 88.1, 361, 300 }, + [8] = { 43.2, 87.9, 361, 300 }, + [9] = { 40.4, 86.4, 361, 300 }, + [10] = { 44.2, 86.4, 361, 300 }, + [11] = { 39.8, 85.8, 361, 300 }, + [12] = { 40, 85.7, 361, 300 }, + [13] = { 40.7, 85.5, 361, 300 }, + [14] = { 42, 85, 361, 300 }, + [15] = { 40.2, 84.5, 361, 300 }, + [16] = { 42.9, 83.9, 361, 300 }, + [17] = { 40.7, 83.8, 361, 300 }, + [18] = { 42.7, 83.3, 361, 300 }, + [19] = { 38.8, 83.2, 361, 300 }, + [20] = { 38.9, 83, 361, 300 }, + [21] = { 38.9, 82.6, 361, 300 }, + [22] = { 39.2, 82.2, 361, 300 }, + [23] = { 38.6, 81.4, 361, 300 }, + [24] = { 48.2, 86.5, 148, 300 }, + [25] = { 47.9, 86.3, 148, 300 }, + [26] = { 49.1, 86.1, 148, 300 }, + [27] = { 49.6, 85.9, 148, 300 }, + [28] = { 48.7, 85.8, 148, 300 }, + [29] = { 48.6, 85.6, 148, 300 }, + [30] = { 47.9, 85.5, 148, 300 }, + [31] = { 48.2, 85.4, 148, 300 }, + [32] = { 42, 87, 361, 300 }, + [33] = { 42.2, 86.3, 361, 300 }, + [34] = { 41.6, 85.7, 361, 300 }, + [35] = { 37.2, 69.9, 361, 300 }, + [36] = { 37.8, 69.5, 361, 300 }, + [37] = { 38.1, 69.5, 361, 300 }, + [38] = { 37.7, 69.3, 361, 300 }, + [39] = { 37, 69.1, 361, 300 }, + [40] = { 38, 69.1, 361, 300 }, + [41] = { 37.4, 68.8, 361, 300 }, + [42] = { 36.8, 68.8, 361, 300 }, + [43] = { 37.7, 68.6, 361, 300 }, + [44] = { 37, 68.1, 361, 300 }, + [45] = { 37.4, 67.4, 361, 300 }, + [46] = { 37.1, 67.3, 361, 300 }, + [47] = { 32.3, 67.3, 361, 300 }, + [48] = { 37.5, 67.2, 361, 300 }, + [49] = { 31.9, 67, 361, 300 }, + [50] = { 35.4, 66.9, 361, 300 }, + [51] = { 36.9, 66.9, 361, 300 }, + [52] = { 35.5, 66.8, 361, 300 }, + [53] = { 33.4, 66.7, 361, 300 }, + [54] = { 35.3, 66.6, 361, 300 }, + [55] = { 37.3, 66.6, 361, 300 }, + [56] = { 33.9, 66.6, 361, 300 }, + [57] = { 37.6, 66.5, 361, 300 }, + [58] = { 32.9, 66.5, 361, 300 }, + [59] = { 37.5, 66.3, 361, 300 }, + [60] = { 32.8, 66.2, 361, 300 }, + [61] = { 37.4, 66.1, 361, 300 }, + [62] = { 31.9, 66.1, 361, 300 }, + [63] = { 32.3, 65.9, 361, 300 }, + }, + ["lvl"] = "50-51", + }, + [7110] = { + ["coords"] = { + [1] = { 48.2, 86.5, 148, 300 }, + [2] = { 47.9, 86.3, 148, 300 }, + [3] = { 49.1, 86.1, 148, 300 }, + [4] = { 49.6, 85.9, 148, 300 }, + [5] = { 48.7, 85.8, 148, 300 }, + [6] = { 48.6, 85.6, 148, 300 }, + [7] = { 47.9, 85.5, 148, 300 }, + [8] = { 48.2, 85.4, 148, 300 }, + [9] = { 37.2, 69.9, 361, 300 }, + [10] = { 37.8, 69.5, 361, 300 }, + [11] = { 38.1, 69.5, 361, 300 }, + [12] = { 37.7, 69.3, 361, 300 }, + [13] = { 37, 69.1, 361, 300 }, + [14] = { 38, 69.1, 361, 300 }, + [15] = { 37.4, 68.8, 361, 300 }, + [16] = { 36.8, 68.8, 361, 300 }, + [17] = { 37.7, 68.6, 361, 300 }, + [18] = { 37, 68.1, 361, 300 }, + [19] = { 37.4, 67.4, 361, 300 }, + [20] = { 37.1, 67.3, 361, 300 }, + [21] = { 32.3, 67.3, 361, 300 }, + [22] = { 37.5, 67.2, 361, 300 }, + [23] = { 31.9, 67, 361, 300 }, + [24] = { 35.4, 66.9, 361, 300 }, + [25] = { 36.9, 66.9, 361, 300 }, + [26] = { 35.5, 66.8, 361, 300 }, + [27] = { 33.4, 66.7, 361, 300 }, + [28] = { 35.3, 66.6, 361, 300 }, + [29] = { 37.3, 66.6, 361, 300 }, + [30] = { 33.9, 66.6, 361, 300 }, + [31] = { 37.6, 66.5, 361, 300 }, + [32] = { 32.9, 66.5, 361, 300 }, + [33] = { 37.5, 66.3, 361, 300 }, + [34] = { 32.8, 66.2, 361, 300 }, + [35] = { 37.4, 66.1, 361, 300 }, + [36] = { 31.9, 66.1, 361, 300 }, + [37] = { 32.3, 65.9, 361, 300 }, + }, + ["lvl"] = "51-52", + }, + [7111] = { + ["coords"] = { + [1] = { 54.3, 46.6, 148, 300 }, + [2] = { 54.4, 45.9, 148, 300 }, + [3] = { 55.9, 44.1, 148, 300 }, + [4] = { 57.1, 40.2, 148, 300 }, + [5] = { 57.8, 40.1, 148, 300 }, + [6] = { 58, 39.9, 148, 300 }, + [7] = { 36.8, 56.5, 361, 300 }, + [8] = { 39.9, 22.2, 361, 300 }, + [9] = { 39.6, 22, 361, 300 }, + [10] = { 39.3, 21.8, 361, 300 }, + [11] = { 41.7, 21.7, 361, 300 }, + [12] = { 39.4, 21, 361, 300 }, + [13] = { 41.2, 20.6, 361, 300 }, + [14] = { 41, 18.9, 361, 300 }, + [15] = { 42.9, 15, 361, 300 }, + [16] = { 42.4, 14.5, 361, 300 }, + [17] = { 43.3, 14.4, 361, 300 }, + [18] = { 43.4, 14.2, 361, 300 }, + }, + ["lvl"] = "53-54", + }, + [7112] = { + ["coords"] = { + [1] = { 50.9, 81.4, 148, 300 }, + [2] = { 51.3, 81.3, 148, 300 }, + [3] = { 50.7, 81.2, 148, 300 }, + [4] = { 50.4, 80.4, 148, 300 }, + [5] = { 51, 80.2, 148, 300 }, + [6] = { 50.2, 79.9, 148, 300 }, + [7] = { 39, 62.2, 361, 300 }, + [8] = { 38.1, 62.1, 361, 300 }, + [9] = { 38, 62.1, 361, 300 }, + [10] = { 38.9, 62, 361, 300 }, + [11] = { 38.5, 61.7, 361, 300 }, + [12] = { 38.7, 61.5, 361, 300 }, + [13] = { 38.2, 61.5, 361, 300 }, + [14] = { 36.5, 61.4, 361, 300 }, + [15] = { 35.3, 61.4, 361, 300 }, + [16] = { 36.3, 61.3, 361, 300 }, + [17] = { 37.7, 61.3, 361, 300 }, + [18] = { 35.8, 61.3, 361, 300 }, + [19] = { 36.9, 61.3, 361, 300 }, + [20] = { 37.7, 61.2, 361, 300 }, + [21] = { 35.1, 61.2, 361, 300 }, + [22] = { 38.1, 61.1, 361, 300 }, + [23] = { 38, 60.7, 361, 300 }, + [24] = { 38.6, 60.6, 361, 300 }, + [25] = { 38.2, 60.4, 361, 300 }, + [26] = { 34.9, 60.3, 361, 300 }, + [27] = { 35.4, 60, 361, 300 }, + [28] = { 34.5, 59.7, 361, 300 }, + [29] = { 39.2, 58.5, 361, 300 }, + [30] = { 39.5, 58.2, 361, 300 }, + }, + ["lvl"] = "51-52", + }, + [7113] = { + ["coords"] = { + [1] = { 51.4, 80.8, 148, 300 }, + [2] = { 50.5, 79.6, 148, 300 }, + [3] = { 51, 79.2, 148, 300 }, + [4] = { 36.4, 62.4, 361, 300 }, + [5] = { 36.1, 62.1, 361, 300 }, + [6] = { 37.5, 61.4, 361, 300 }, + [7] = { 38, 61.4, 361, 300 }, + [8] = { 38.5, 61.1, 361, 300 }, + [9] = { 38.1, 60.9, 361, 300 }, + [10] = { 35.9, 60.7, 361, 300 }, + [11] = { 38.8, 60.2, 361, 300 }, + [12] = { 38.3, 59.4, 361, 300 }, + [13] = { 35, 59.4, 361, 300 }, + [14] = { 39.3, 59.3, 361, 300 }, + [15] = { 35.5, 58.9, 361, 300 }, + [16] = { 38.5, 57.7, 361, 300 }, + [17] = { 50.4, 80.4, 148, 300 }, + [18] = { 51, 80.2, 148, 300 }, + [19] = { 36.9, 61.3, 361, 300 }, + [20] = { 34.9, 60.3, 361, 300 }, + [21] = { 35.4, 60, 361, 300 }, + }, + ["lvl"] = "50-51", + }, + [7114] = { + ["coords"] = { + [1] = { 51, 78.1, 148, 300 }, + [2] = { 35.5, 57.7, 361, 300 }, + [3] = { 36.7, 53.4, 361, 300 }, + [4] = { 36.1, 51.8, 361, 300 }, + [5] = { 39.5, 49.5, 361, 300 }, + [6] = { 40.5, 48.5, 361, 300 }, + [7] = { 40.5, 48.4, 361, 300 }, + [8] = { 37.6, 47.1, 361, 300 }, + [9] = { 38.8, 45.9, 361, 300 }, + }, + ["lvl"] = "52-53", + }, + [7115] = { + ["coords"] = { + [1] = { 50.9, 81.4, 148, 300 }, + [2] = { 51.3, 81.3, 148, 300 }, + [3] = { 50.7, 81.2, 148, 300 }, + [4] = { 50.2, 79.9, 148, 300 }, + [5] = { 39, 62.2, 361, 300 }, + [6] = { 38.1, 62.1, 361, 300 }, + [7] = { 38, 62.1, 361, 300 }, + [8] = { 38.9, 62, 361, 300 }, + [9] = { 38.5, 61.7, 361, 300 }, + [10] = { 38.7, 61.5, 361, 300 }, + [11] = { 38.2, 61.5, 361, 300 }, + [12] = { 36.5, 61.4, 361, 300 }, + [13] = { 35.3, 61.4, 361, 300 }, + [14] = { 36.3, 61.3, 361, 300 }, + [15] = { 37.7, 61.3, 361, 300 }, + [16] = { 35.8, 61.3, 361, 300 }, + [17] = { 37.7, 61.2, 361, 300 }, + [18] = { 35.1, 61.2, 361, 300 }, + [19] = { 38.1, 61.1, 361, 300 }, + [20] = { 38, 60.7, 361, 300 }, + [21] = { 38.6, 60.6, 361, 300 }, + [22] = { 38.2, 60.4, 361, 300 }, + [23] = { 34.5, 59.7, 361, 300 }, + [24] = { 39.2, 58.5, 361, 300 }, + [25] = { 39.5, 58.2, 361, 300 }, + [26] = { 50.4, 80.4, 148, 300 }, + [27] = { 51, 80.2, 148, 300 }, + [28] = { 36.9, 61.3, 361, 300 }, + [29] = { 34.9, 60.3, 361, 300 }, + [30] = { 35.4, 60, 361, 300 }, + }, + ["lvl"] = "51-52", + }, + [7116] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [7117] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [7118] = { + ["coords"] = { + [1] = { 51.1, 77.9, 148, 300 }, + [2] = { 51.2, 77.4, 148, 300 }, + [3] = { 35.6, 57.4, 361, 300 }, + [4] = { 35.7, 56.9, 361, 300 }, + [5] = { 36.1, 56.5, 361, 300 }, + [6] = { 36.5, 55.1, 361, 300 }, + [7] = { 37, 54.9, 361, 300 }, + [8] = { 37.1, 54.9, 361, 300 }, + [9] = { 38.2, 54.8, 361, 300 }, + [10] = { 37.6, 54.4, 361, 300 }, + [11] = { 38, 54, 361, 300 }, + [12] = { 36.7, 53.2, 361, 300 }, + [13] = { 37.1, 53.2, 361, 300 }, + [14] = { 37.5, 52.8, 361, 300 }, + [15] = { 36.5, 51.6, 361, 300 }, + [16] = { 36.9, 51.3, 361, 300 }, + [17] = { 37.8, 50.8, 361, 300 }, + [18] = { 38.5, 50.6, 361, 300 }, + [19] = { 38.6, 50.5, 361, 300 }, + [20] = { 38.4, 50.3, 361, 300 }, + [21] = { 38.5, 50.2, 361, 300 }, + [22] = { 40.2, 48.8, 361, 300 }, + [23] = { 39.9, 48.6, 361, 300 }, + [24] = { 40.7, 48.4, 361, 300 }, + [25] = { 40.1, 48, 361, 300 }, + [26] = { 37.6, 47.9, 361, 300 }, + [27] = { 38.1, 47.4, 361, 300 }, + [28] = { 39.8, 47.1, 361, 300 }, + [29] = { 37.2, 47, 361, 300 }, + [30] = { 39.2, 46.9, 361, 300 }, + [31] = { 38.5, 46.8, 361, 300 }, + [32] = { 38.1, 46.2, 361, 300 }, + [33] = { 37.8, 45.8, 361, 300 }, + [34] = { 37.5, 45.4, 361, 300 }, + }, + ["lvl"] = "53-54", + }, + [7119] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [7120] = { + ["coords"] = { + [1] = { 51.1, 77.9, 148, 300 }, + [2] = { 51.2, 77.4, 148, 300 }, + [3] = { 35.6, 57.4, 361, 300 }, + [4] = { 35.7, 56.9, 361, 300 }, + [5] = { 36.1, 56.5, 361, 300 }, + [6] = { 36.5, 55.1, 361, 300 }, + [7] = { 37, 54.9, 361, 300 }, + [8] = { 37.1, 54.9, 361, 300 }, + [9] = { 38.2, 54.8, 361, 300 }, + [10] = { 37.6, 54.4, 361, 300 }, + [11] = { 38, 54, 361, 300 }, + [12] = { 36.7, 53.2, 361, 300 }, + [13] = { 37.1, 53.2, 361, 300 }, + [14] = { 37.5, 52.8, 361, 300 }, + [15] = { 36.5, 51.6, 361, 300 }, + [16] = { 36.9, 51.3, 361, 300 }, + [17] = { 37.8, 50.8, 361, 300 }, + [18] = { 38.5, 50.6, 361, 300 }, + [19] = { 38.6, 50.5, 361, 300 }, + [20] = { 38.4, 50.3, 361, 300 }, + [21] = { 38.5, 50.2, 361, 300 }, + [22] = { 40.2, 48.8, 361, 300 }, + [23] = { 39.9, 48.6, 361, 300 }, + [24] = { 40.7, 48.4, 361, 300 }, + [25] = { 40.1, 48, 361, 300 }, + [26] = { 37.6, 47.9, 361, 300 }, + [27] = { 38.1, 47.4, 361, 300 }, + [28] = { 39.8, 47.1, 361, 300 }, + [29] = { 37.2, 47, 361, 300 }, + [30] = { 39.2, 46.9, 361, 300 }, + [31] = { 38.5, 46.8, 361, 300 }, + [32] = { 38.1, 46.2, 361, 300 }, + [33] = { 37.8, 45.8, 361, 300 }, + [34] = { 37.5, 45.4, 361, 300 }, + }, + ["lvl"] = "53-54", + }, + [7121] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [7122] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [7123] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [7124] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [7125] = { + ["coords"] = { + [1] = { 51.3, 80.6, 148, 300 }, + [2] = { 50.1, 80.5, 148, 300 }, + [3] = { 50.1, 80.3, 148, 300 }, + [4] = { 38.7, 61.9, 361, 300 }, + [5] = { 36.5, 61.8, 361, 300 }, + [6] = { 38.5, 61.4, 361, 300 }, + [7] = { 38.4, 61.1, 361, 300 }, + [8] = { 35.8, 60.6, 361, 300 }, + [9] = { 34.5, 60.4, 361, 300 }, + [10] = { 38.8, 60.4, 361, 300 }, + [11] = { 34.5, 60.1, 361, 300 }, + [12] = { 39.1, 59.2, 361, 300 }, + }, + ["lvl"] = "50-51", + }, + [7126] = { + ["coords"] = { + [1] = { 36.4, 56.5, 361, 300 }, + [2] = { 36.5, 56.4, 361, 300 }, + [3] = { 37.4, 54.7, 361, 300 }, + [4] = { 37.7, 54.2, 361, 300 }, + [5] = { 38.8, 47.7, 361, 300 }, + [6] = { 37.4, 46, 361, 300 }, + [7] = { 51, 78.1, 148, 300 }, + [8] = { 35.5, 57.7, 361, 300 }, + [9] = { 39.5, 49.5, 361, 300 }, + }, + ["lvl"] = "52-53", + }, + [7127] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [7128] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [7129] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [7130] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [7131] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [7132] = { + ["coords"] = { + [1] = { 49.7, 27.4, 361, 300 }, + [2] = { 50.4, 27.4, 361, 300 }, + [3] = { 50.8, 27, 361, 300 }, + [4] = { 49.2, 26.5, 361, 300 }, + [5] = { 49.6, 26.4, 361, 300 }, + [6] = { 48.8, 24.6, 361, 300 }, + [7] = { 48.3, 24.3, 361, 300 }, + [8] = { 48, 23.9, 361, 300 }, + [9] = { 50.4, 23.8, 361, 300 }, + [10] = { 51, 23.4, 361, 300 }, + [11] = { 49.5, 23.1, 361, 300 }, + [12] = { 50.7, 22.5, 361, 300 }, + }, + ["lvl"] = "53-54", + }, + [7133] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [7134] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [7135] = { + ["coords"] = {}, + ["lvl"] = "53-54", + ["rnk"] = "1", + }, + [7136] = { + ["coords"] = { + [1] = { 45.4, 42.3, 361, 300 }, + [2] = { 44.5, 41.3, 361, 300 }, + [3] = { 40.7, 39.7, 361, 300 }, + [4] = { 41.2, 37.6, 361, 300 }, + }, + ["lvl"] = "52-53", + ["rnk"] = "1", + }, + [7137] = { + ["coords"] = { + [1] = { 43.1, 41.4, 361, 37800 }, + }, + ["lvl"] = "56", + ["rnk"] = "2", + }, + [7138] = { + ["coords"] = { + [1] = { 46.6, 23.8, 361, 300 }, + [2] = { 53.4, 23.1, 361, 300 }, + [3] = { 48.7, 20.4, 361, 300 }, + }, + ["lvl"] = "52-53", + }, + [7139] = { + ["coords"] = { + [1] = { 48.6, 29.9, 361, 300 }, + [2] = { 49.7, 29.2, 361, 300 }, + [3] = { 48.4, 29.2, 361, 300 }, + [4] = { 48, 28, 361, 300 }, + [5] = { 47.8, 26.3, 361, 300 }, + [6] = { 51.8, 25.5, 361, 300 }, + [7] = { 46.7, 25.2, 361, 300 }, + [8] = { 51, 24.9, 361, 300 }, + [9] = { 52.5, 24.6, 361, 300 }, + [10] = { 51.7, 24.3, 361, 300 }, + [11] = { 46, 24.1, 361, 300 }, + [12] = { 46.8, 24, 361, 300 }, + [13] = { 53.1, 23.6, 361, 300 }, + [14] = { 47.1, 22.8, 361, 300 }, + [15] = { 53.2, 22.1, 361, 300 }, + [16] = { 51.5, 21.7, 361, 300 }, + [17] = { 52.6, 21.2, 361, 300 }, + [18] = { 48.5, 21.2, 361, 300 }, + [19] = { 50.7, 21.1, 361, 300 }, + [20] = { 50.6, 20.8, 361, 300 }, + [21] = { 49.2, 20.2, 361, 300 }, + [22] = { 48.8, 19.4, 361, 300 }, + [23] = { 51, 19.1, 361, 300 }, + [24] = { 50.3, 18.6, 361, 300 }, + [25] = { 49.3, 18.5, 361, 300 }, + [26] = { 49.5, 18, 361, 300 }, + }, + ["lvl"] = "52-53", + }, + [7143] = { + ["coords"] = {}, + ["lvl"] = "51-52", + }, + [7144] = { + ["coords"] = {}, + ["lvl"] = "53-54", + }, + [7146] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "55-56", + }, + [7149] = { + ["coords"] = { + [1] = { 51.6, 24.9, 361, 300 }, + }, + ["lvl"] = "55-56", + }, + [7150] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [7151] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [7152] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [7153] = { + ["coords"] = { + [1] = { 47.8, 94.1, 361, 300 }, + [2] = { 48.5, 94, 361, 300 }, + [3] = { 48.1, 93.7, 361, 300 }, + [4] = { 48.2, 93, 361, 300 }, + [5] = { 47.4, 92.7, 361, 300 }, + [6] = { 48.7, 92.6, 361, 300 }, + [7] = { 49, 92.6, 361, 300 }, + [8] = { 46.6, 92, 361, 300 }, + [9] = { 48.7, 91.9, 361, 300 }, + [10] = { 49.6, 91.6, 361, 300 }, + [11] = { 49, 91.5, 361, 300 }, + [12] = { 48.4, 91.4, 361, 300 }, + [13] = { 49, 91, 361, 300 }, + [14] = { 48.3, 90.9, 361, 300 }, + [15] = { 48.8, 90.4, 361, 300 }, + [16] = { 47.9, 89.3, 361, 300 }, + [17] = { 46.2, 89.1, 361, 300 }, + [18] = { 48.8, 88.9, 361, 300 }, + [19] = { 47.7, 88.7, 361, 300 }, + [20] = { 49.7, 88.3, 361, 300 }, + [21] = { 46.8, 88.3, 361, 300 }, + }, + ["lvl"] = "48-49", + }, + [7154] = { + ["coords"] = { + [1] = { 48.3, 91.4, 361, 300 }, + [2] = { 49.2, 91.4, 361, 300 }, + [3] = { 46.3, 90.6, 361, 300 }, + [4] = { 46.3, 89.9, 361, 300 }, + [5] = { 48.4, 89.8, 361, 300 }, + [6] = { 48.9, 89.1, 361, 300 }, + [7] = { 48.8, 88.9, 361, 300 }, + [8] = { 47.4, 92.7, 361, 300 }, + [9] = { 49, 92.6, 361, 300 }, + [10] = { 48.8, 90.4, 361, 300 }, + [11] = { 47.7, 88.7, 361, 300 }, + [12] = { 49.7, 88.3, 361, 300 }, + [13] = { 46.8, 88.3, 361, 300 }, + }, + ["lvl"] = "48-49", + }, + [7155] = { + ["coords"] = { + [1] = { 47.4, 93.4, 361, 300 }, + [2] = { 49.2, 91.7, 361, 300 }, + [3] = { 46.1, 89.9, 361, 300 }, + [4] = { 48.3, 89.5, 361, 300 }, + [5] = { 46.4, 88.9, 361, 300 }, + [6] = { 49, 91.5, 361, 300 }, + [7] = { 48.4, 91.4, 361, 300 }, + }, + ["lvl"] = "49-50", + }, + [7156] = { + ["coords"] = { + [1] = { 62.5, 13.2, 361, 300 }, + [2] = { 63.3, 12.9, 361, 300 }, + [3] = { 62.5, 12.6, 361, 300 }, + [4] = { 63.7, 12.3, 361, 300 }, + [5] = { 62.5, 11.8, 361, 300 }, + [6] = { 63.1, 11.7, 361, 300 }, + [7] = { 63.5, 11.6, 361, 300 }, + [8] = { 62.5, 11.6, 361, 300 }, + [9] = { 62.6, 11.2, 361, 300 }, + [10] = { 61.5, 11.1, 361, 300 }, + [11] = { 63.1, 10.9, 361, 300 }, + [12] = { 61.3, 10.5, 361, 300 }, + [13] = { 62.6, 10.4, 361, 300 }, + [14] = { 62.7, 10.1, 361, 300 }, + [15] = { 61.4, 10, 361, 300 }, + [16] = { 62.7, 9.9, 361, 300 }, + [17] = { 63.1, 9.8, 361, 300 }, + [18] = { 62.3, 9.2, 361, 300 }, + [19] = { 63.6, 9.1, 361, 300 }, + [20] = { 61, 9.1, 361, 300 }, + [21] = { 63.1, 9, 361, 300 }, + [22] = { 60.4, 8.7, 361, 300 }, + [23] = { 60.9, 8.4, 361, 300 }, + [24] = { 62.7, 8.4, 361, 300 }, + [25] = { 63.6, 8.3, 361, 300 }, + [26] = { 60.2, 8.3, 361, 300 }, + [27] = { 63.3, 8.2, 361, 300 }, + [28] = { 62.7, 7.9, 361, 300 }, + [29] = { 61.2, 7.7, 361, 300 }, + [30] = { 62.6, 7.7, 361, 300 }, + [31] = { 60.1, 7.4, 361, 300 }, + [32] = { 61.3, 7.4, 361, 300 }, + [33] = { 63, 7.3, 361, 300 }, + [34] = { 62, 7.3, 361, 300 }, + [35] = { 62.7, 7.1, 361, 300 }, + [36] = { 64, 6.8, 361, 300 }, + [37] = { 60.1, 6.5, 361, 300 }, + [38] = { 62.4, 6.4, 361, 300 }, + [39] = { 61.7, 6.3, 361, 300 }, + [40] = { 59.8, 6.2, 361, 300 }, + [41] = { 63.7, 6, 361, 300 }, + [42] = { 61.3, 5.9, 361, 300 }, + [43] = { 60.3, 5.9, 361, 300 }, + [44] = { 60.1, 5.8, 361, 300 }, + [45] = { 60.4, 5.6, 361, 300 }, + }, + ["lvl"] = "53-54", + }, + [7157] = { + ["coords"] = { + [1] = { 62.5, 13.2, 361, 300 }, + [2] = { 63.3, 12.9, 361, 300 }, + [3] = { 62.5, 12.6, 361, 300 }, + [4] = { 63.7, 12.3, 361, 300 }, + [5] = { 62.5, 11.8, 361, 300 }, + [6] = { 63.1, 11.7, 361, 300 }, + [7] = { 63.5, 11.6, 361, 300 }, + [8] = { 62.5, 11.6, 361, 300 }, + [9] = { 62.6, 11.2, 361, 300 }, + [10] = { 61.5, 11.1, 361, 300 }, + [11] = { 63.1, 10.9, 361, 300 }, + [12] = { 61.3, 10.5, 361, 300 }, + [13] = { 62.6, 10.4, 361, 300 }, + [14] = { 62.7, 10.1, 361, 300 }, + [15] = { 61.4, 10, 361, 300 }, + [16] = { 62.7, 9.9, 361, 300 }, + [17] = { 63.1, 9.8, 361, 300 }, + [18] = { 62.3, 9.2, 361, 300 }, + [19] = { 63.6, 9.1, 361, 300 }, + [20] = { 61, 9.1, 361, 300 }, + [21] = { 63.1, 9, 361, 300 }, + [22] = { 60.4, 8.7, 361, 300 }, + [23] = { 60.9, 8.4, 361, 300 }, + [24] = { 62.7, 8.4, 361, 300 }, + [25] = { 63.6, 8.3, 361, 300 }, + [26] = { 60.2, 8.3, 361, 300 }, + [27] = { 63.3, 8.2, 361, 300 }, + [28] = { 62.7, 7.9, 361, 300 }, + [29] = { 61.2, 7.7, 361, 300 }, + [30] = { 62.6, 7.7, 361, 300 }, + [31] = { 60.1, 7.4, 361, 300 }, + [32] = { 61.3, 7.4, 361, 300 }, + [33] = { 63, 7.3, 361, 300 }, + [34] = { 62, 7.3, 361, 300 }, + [35] = { 62.7, 7.1, 361, 300 }, + [36] = { 64, 6.8, 361, 300 }, + [37] = { 60.1, 6.5, 361, 300 }, + [38] = { 62.4, 6.4, 361, 300 }, + [39] = { 61.7, 6.3, 361, 300 }, + [40] = { 59.8, 6.2, 361, 300 }, + [41] = { 63.7, 6, 361, 300 }, + [42] = { 61.3, 5.9, 361, 300 }, + [43] = { 60.3, 5.9, 361, 300 }, + [44] = { 60.1, 5.8, 361, 300 }, + [45] = { 60.4, 5.6, 361, 300 }, + }, + ["lvl"] = "54-55", + }, + [7158] = { + ["coords"] = { + [1] = { 62.5, 13.2, 361, 300 }, + [2] = { 63.3, 12.9, 361, 300 }, + [3] = { 62.5, 12.6, 361, 300 }, + [4] = { 63.7, 12.3, 361, 300 }, + [5] = { 62.5, 11.8, 361, 300 }, + [6] = { 63.1, 11.7, 361, 300 }, + [7] = { 63.5, 11.6, 361, 300 }, + [8] = { 62.5, 11.6, 361, 300 }, + [9] = { 62.6, 11.2, 361, 300 }, + [10] = { 61.5, 11.1, 361, 300 }, + [11] = { 63.1, 10.9, 361, 300 }, + [12] = { 61.3, 10.5, 361, 300 }, + [13] = { 62.6, 10.4, 361, 300 }, + [14] = { 62.7, 10.1, 361, 300 }, + [15] = { 61.4, 10, 361, 300 }, + [16] = { 62.7, 9.9, 361, 300 }, + [17] = { 63.1, 9.8, 361, 300 }, + [18] = { 62.3, 9.2, 361, 300 }, + [19] = { 63.6, 9.1, 361, 300 }, + [20] = { 61, 9.1, 361, 300 }, + [21] = { 63.1, 9, 361, 300 }, + [22] = { 60.4, 8.7, 361, 300 }, + [23] = { 60.9, 8.4, 361, 300 }, + [24] = { 62.7, 8.4, 361, 300 }, + [25] = { 63.6, 8.3, 361, 300 }, + [26] = { 60.2, 8.3, 361, 300 }, + [27] = { 63.3, 8.2, 361, 300 }, + [28] = { 62.7, 7.9, 361, 300 }, + [29] = { 61.2, 7.7, 361, 300 }, + [30] = { 62.6, 7.7, 361, 300 }, + [31] = { 60.1, 7.4, 361, 300 }, + [32] = { 61.3, 7.4, 361, 300 }, + [33] = { 63, 7.3, 361, 300 }, + [34] = { 62, 7.3, 361, 300 }, + [35] = { 62.7, 7.1, 361, 300 }, + [36] = { 64, 6.8, 361, 300 }, + [37] = { 60.1, 6.5, 361, 300 }, + [38] = { 62.4, 6.4, 361, 300 }, + [39] = { 61.7, 6.3, 361, 300 }, + [40] = { 59.8, 6.2, 361, 300 }, + [41] = { 63.7, 6, 361, 300 }, + [42] = { 61.3, 5.9, 361, 300 }, + [43] = { 60.3, 5.9, 361, 300 }, + [44] = { 60.1, 5.8, 361, 300 }, + [45] = { 60.4, 5.6, 361, 300 }, + }, + ["lvl"] = "53-54", + }, + [7161] = { + ["coords"] = { + [1] = { 63.1, 36.3, 17, 413 }, + }, + ["lvl"] = "20", + }, + [7166] = { + ["coords"] = { + [1] = { 63.1, 36.3, 17, 413 }, + }, + ["lvl"] = "20", + }, + [7167] = { + ["coords"] = { + [1] = { 65, 45.4, 17, 0 }, + }, + ["lvl"] = "50", + }, + [7168] = { + ["coords"] = {}, + ["lvl"] = "18", + }, + [7170] = { + ["coords"] = { + [1] = { 55.3, 66.9, 38, 600 }, + }, + ["fac"] = "H", + ["lvl"] = "19-21", + ["rnk"] = "1", + }, + [7172] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [7173] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [7174] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [7175] = { + ["coords"] = {}, + ["lvl"] = "35", + }, + [7186] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [7206] = { + ["coords"] = {}, + ["lvl"] = "44", + ["rnk"] = "1", + }, + [7207] = { + ["coords"] = { + [1] = { 78, 58.8, 1519, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [7208] = { + ["coords"] = { + [1] = { 77.6, 58.6, 1519, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [7209] = { + ["coords"] = {}, + ["lvl"] = "35", + }, + [7226] = { + ["coords"] = {}, + ["lvl"] = "44", + }, + [7227] = { + ["coords"] = {}, + ["lvl"] = "48-49", + ["rnk"] = "1", + }, + [7228] = { + ["coords"] = {}, + ["lvl"] = "40", + ["rnk"] = "1", + }, + [7229] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [7230] = { + ["coords"] = { + [1] = { 80.2, 23.4, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [7231] = { + ["coords"] = { + [1] = { 81.9, 18, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [7232] = { + ["coords"] = { + [1] = { 51.3, 12.7, 1519, 490 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [7233] = { + ["coords"] = { + [1] = { 55.4, 5.6, 17, 600 }, + }, + ["lvl"] = "30", + ["rnk"] = "1", + }, + [7234] = { + ["coords"] = { + [1] = { 69.4, 53.4, 141, 300 }, + }, + ["lvl"] = "8", + }, + [7235] = { + ["coords"] = { + [1] = { 69.7, 55.2, 141, 300 }, + [2] = { 69.4, 53.2, 141, 300 }, + [3] = { 69.7, 52.9, 141, 300 }, + [4] = { 68.9, 52.4, 141, 300 }, + [5] = { 68.6, 52.3, 141, 300 }, + [6] = { 68.6, 52.2, 141, 300 }, + [7] = { 68.7, 52.8, 141, 300 }, + [8] = { 68, 52.5, 141, 300 }, + [9] = { 68.3, 52.1, 141, 300 }, + [10] = { 68.5, 51.7, 141, 300 }, + }, + ["lvl"] = "6-7", + }, + [7236] = { + ["coords"] = {}, + ["lvl"] = "62", + }, + [7246] = { + ["coords"] = {}, + ["lvl"] = "45-46", + ["rnk"] = "1", + }, + [7247] = { + ["coords"] = {}, + ["lvl"] = "45-46", + ["rnk"] = "1", + }, + [7266] = { + ["coords"] = {}, + ["lvl"] = "30", + }, + [7267] = { + ["coords"] = {}, + ["lvl"] = "48", + ["rnk"] = "1", + }, + [7268] = { + ["coords"] = {}, + ["lvl"] = "45-46", + ["rnk"] = "1", + }, + [7269] = { + ["coords"] = {}, + ["lvl"] = "44-46", + }, + [7270] = { + ["coords"] = {}, + ["lvl"] = "44-45", + ["rnk"] = "1", + }, + [7271] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "46", + ["rnk"] = "1", + }, + [7272] = { + ["coords"] = {}, + ["lvl"] = "45-46", + ["rnk"] = "1", + }, + [7273] = { + ["coords"] = {}, + ["lvl"] = "46", + ["rnk"] = "1", + }, + [7274] = { + ["coords"] = {}, + ["lvl"] = "46", + ["rnk"] = "1", + }, + [7275] = { + ["coords"] = {}, + ["lvl"] = "47", + ["rnk"] = "1", + }, + [7276] = { + ["coords"] = {}, + ["lvl"] = "45-46", + ["rnk"] = "1", + }, + [7286] = { + ["coords"] = {}, + ["lvl"] = "43-44", + ["rnk"] = "1", + }, + [7287] = { + ["coords"] = { + [1] = { 54.8, 6, 17, 413 }, + }, + ["lvl"] = "22", + }, + [7288] = { + ["coords"] = { + [1] = { 54.8, 5.6, 17, 360 }, + }, + ["lvl"] = "23", + ["rnk"] = "1", + }, + [7290] = { + ["coords"] = {}, + ["lvl"] = "43-44", + ["rnk"] = "1", + }, + [7291] = { + ["coords"] = {}, + ["lvl"] = "45", + ["rnk"] = "1", + }, + [7292] = { + ["coords"] = { + [1] = { 33.5, 60.2, 1537, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [7293] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "35", + }, + [7294] = { + ["coords"] = { + [1] = { 65.5, 22, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [7295] = { + ["coords"] = { + [1] = { 30.4, 53.3, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [7296] = { + ["coords"] = { + [1] = { 24.8, 48.3, 141, 300 }, + [2] = { 36.5, 6.7, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [7297] = { + ["coords"] = { + [1] = { 8.1, 66.6, 28, 300 }, + [2] = { 83.8, 65.6, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [7298] = { + ["coords"] = { + [1] = { 71.5, 84.6, 1537, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [7307] = { + ["coords"] = { + [1] = { 54.8, 5.8, 17, 413 }, + [2] = { 54.6, 5.8, 17, 413 }, + [3] = { 54.8, 5.5, 17, 413 }, + }, + ["lvl"] = "23", + }, + [7308] = { + ["coords"] = { + [1] = { 54.7, 5.7, 17, 413 }, + [2] = { 54.8, 5.6, 17, 413 }, + }, + ["lvl"] = "22", + }, + [7309] = { + ["coords"] = {}, + ["lvl"] = "44-45", + }, + [7310] = { + ["coords"] = { + [1] = { 54.8, 5.7, 17, 413 }, + [2] = { 54.7, 5.7, 17, 413 }, + }, + ["lvl"] = "25", + }, + [7311] = { + ["coords"] = { + [1] = { 42.9, 9.7, 14, 300 }, + [2] = { 39.2, 86.3, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [7312] = { + ["coords"] = { + [1] = { 27.2, 8.6, 1537, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [7313] = { + ["coords"] = { + [1] = { 24.8, 64.8, 141, 300 }, + [2] = { 36.7, 85.9, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [7314] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [7315] = { + ["coords"] = { + [1] = { 29.5, 54.3, 141, 300 }, + [2] = { 58.9, 35.3, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [7316] = { + ["coords"] = { + [1] = { 23.2, 56.5, 141, 300 }, + [2] = { 28.9, 45.8, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [7317] = { + ["coords"] = { + [1] = { 44.9, 61.6, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [7318] = { + ["coords"] = { + [1] = { 45.5, 58.6, 141, 300 }, + }, + ["lvl"] = "10", + }, + [7319] = { + ["coords"] = { + [1] = { 47.5, 26, 141, 300 }, + [2] = { 48.1, 25.1, 141, 180 }, + [3] = { 41.5, 25.1, 141, 300 }, + }, + ["lvl"] = "12", + }, + [7320] = { + ["coords"] = {}, + ["lvl"] = "44-45", + ["rnk"] = "1", + }, + [7321] = { + ["coords"] = {}, + ["lvl"] = "44-45", + ["rnk"] = "1", + }, + [7322] = { + ["coords"] = { + [1] = { 25.3, 50.2, 141, 300 }, + [2] = { 38.8, 15.8, 1657, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [7323] = { + ["coords"] = { + [1] = { 85.9, 79.1, 36, 300 }, + [2] = { 1.2, 56.2, 47, 300 }, + [3] = { 84, 17.6, 267, 300 }, + }, + ["lvl"] = "52", + }, + [7324] = { + ["coords"] = { + [1] = { 83.8, 79.8, 36, 300 }, + [2] = { 82.2, 18.3, 267, 300 }, + }, + ["lvl"] = "45", + }, + [7325] = { + ["coords"] = { + [1] = { 84, 81.3, 36, 300 }, + [2] = { 82.3, 19.6, 267, 300 }, + }, + ["lvl"] = "62", + }, + [7327] = { + ["coords"] = { + [1] = { 27.9, 75.7, 15, 300 }, + [2] = { 27.4, 75.4, 15, 300 }, + [3] = { 27.9, 75.2, 15, 300 }, + [4] = { 27.1, 74.7, 15, 300 }, + [5] = { 27.5, 74.5, 15, 300 }, + [6] = { 26.9, 74.4, 15, 300 }, + [7] = { 50, 93.2, 17, 300 }, + [8] = { 49.7, 93, 17, 300 }, + [9] = { 49.9, 92.9, 17, 300 }, + [10] = { 49.6, 92.6, 17, 300 }, + [11] = { 49.8, 92.5, 17, 300 }, + [12] = { 49.4, 92.5, 17, 300 }, + }, + ["lvl"] = "34-35", + ["rnk"] = "1", + }, + [7328] = { + ["coords"] = {}, + ["lvl"] = "35-36", + ["rnk"] = "1", + }, + [7329] = { + ["coords"] = {}, + ["lvl"] = "35-36", + ["rnk"] = "1", + }, + [7332] = { + ["coords"] = {}, + ["lvl"] = "34-35", + ["rnk"] = "1", + }, + [7333] = { + ["coords"] = {}, + ["lvl"] = "34", + }, + [7334] = { + ["coords"] = {}, + ["lvl"] = "37", + }, + [7335] = { + ["coords"] = { + [1] = { 28.1, 75.5, 15, 300 }, + [2] = { 28.3, 75.1, 15, 300 }, + [3] = { 28.8, 74.9, 15, 300 }, + [4] = { 27.1, 74.9, 15, 300 }, + [5] = { 27.8, 74.9, 15, 300 }, + [6] = { 28.8, 74.6, 15, 300 }, + [7] = { 28.1, 74.3, 15, 300 }, + [8] = { 50.1, 93.1, 17, 300 }, + [9] = { 50.2, 92.9, 17, 300 }, + [10] = { 50.4, 92.8, 17, 300 }, + [11] = { 49.5, 92.8, 17, 300 }, + [12] = { 49.9, 92.7, 17, 300 }, + [13] = { 50.4, 92.6, 17, 300 }, + [14] = { 50.1, 92.4, 17, 300 }, + }, + ["lvl"] = "35-36", + ["rnk"] = "1", + }, + [7337] = { + ["coords"] = {}, + ["lvl"] = "36-37", + ["rnk"] = "1", + }, + [7340] = { + ["coords"] = {}, + ["lvl"] = "36", + }, + [7341] = { + ["coords"] = {}, + ["lvl"] = "37-38", + ["rnk"] = "1", + }, + [7342] = { + ["coords"] = {}, + ["lvl"] = "39-40", + ["rnk"] = "1", + }, + [7343] = { + ["coords"] = {}, + ["lvl"] = "35", + }, + [7344] = { + ["coords"] = {}, + ["lvl"] = "37-38", + }, + [7345] = { + ["coords"] = {}, + ["lvl"] = "39-40", + ["rnk"] = "1", + }, + [7346] = { + ["coords"] = {}, + ["lvl"] = "38-39", + }, + [7347] = { + ["coords"] = {}, + ["lvl"] = "38-39", + ["rnk"] = "1", + }, + [7348] = { + ["coords"] = {}, + ["lvl"] = "37-38", + ["rnk"] = "1", + }, + [7349] = { + ["coords"] = {}, + ["lvl"] = "35", + }, + [7351] = { + ["coords"] = {}, + ["lvl"] = "37", + ["rnk"] = "1", + }, + [7352] = { + ["coords"] = {}, + ["lvl"] = "37-38", + ["rnk"] = "1", + }, + [7353] = { + ["coords"] = {}, + ["lvl"] = "39-40", + ["rnk"] = "1", + }, + [7354] = { + ["coords"] = {}, + ["lvl"] = "40", + ["rnk"] = "1", + }, + [7355] = { + ["coords"] = {}, + ["lvl"] = "40", + ["rnk"] = "1", + }, + [7356] = { + ["coords"] = {}, + ["lvl"] = "40", + ["rnk"] = "1", + }, + [7357] = { + ["coords"] = {}, + ["lvl"] = "39", + ["rnk"] = "1", + }, + [7358] = { + ["coords"] = {}, + ["lvl"] = "41", + ["rnk"] = "1", + }, + [7360] = { + ["coords"] = { + [1] = { 31.2, 56, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "28-29", + }, + [7361] = { + ["coords"] = {}, + ["lvl"] = "32", + ["rnk"] = "1", + }, + [7363] = { + ["coords"] = { + [1] = { 52, 35.6, 4, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [7364] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [7365] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "40", + }, + [7366] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "38", + }, + [7367] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "45", + }, + [7368] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "54", + }, + [7369] = { + ["coords"] = { + [1] = { 57.5, 76.7, 41, 600 }, + [2] = { 58.6, 75.3, 41, 600 }, + [3] = { 58.8, 67.8, 41, 600 }, + [4] = { 57.9, 64.9, 41, 600 }, + [5] = { 55.4, 62.9, 41, 600 }, + [6] = { 53.5, 60.4, 41, 600 }, + [7] = { 57.8, 59.6, 41, 600 }, + [8] = { 51.5, 58.7, 41, 600 }, + [9] = { 54.5, 56.7, 41, 600 }, + }, + ["lvl"] = "55-56", + }, + [7370] = { + ["coords"] = { + [1] = { 30, 29.2, 4, 600 }, + [2] = { 56.6, 81.1, 41, 600 }, + [3] = { 54.4, 80.7, 41, 600 }, + [4] = { 50.6, 80.1, 41, 600 }, + [5] = { 55.8, 79.7, 41, 600 }, + [6] = { 45.4, 78.5, 41, 600 }, + [7] = { 54.7, 78.4, 41, 600 }, + [8] = { 53.5, 78.4, 41, 600 }, + [9] = { 52, 78.2, 41, 600 }, + [10] = { 41.2, 75.5, 41, 600 }, + [11] = { 43.1, 73.2, 41, 600 }, + [12] = { 41.2, 72.4, 41, 600 }, + [13] = { 45.6, 71.5, 41, 600 }, + [14] = { 41.5, 69.5, 41, 600 }, + }, + ["lvl"] = "58-60", + }, + [7371] = { + ["coords"] = { + [1] = { 35, 25.8, 4, 600 }, + [2] = { 36.6, 24.1, 4, 600 }, + [3] = { 63.3, 76.5, 41, 600 }, + [4] = { 61.4, 74.8, 41, 600 }, + [5] = { 65.3, 74.2, 41, 600 }, + [6] = { 63, 73.1, 41, 600 }, + [7] = { 62.2, 72.8, 41, 600 }, + [8] = { 52.9, 64.8, 41, 600 }, + }, + ["lvl"] = "56-57", + }, + [7372] = { + ["coords"] = { + [1] = { 37.2, 26.7, 4, 600 }, + [2] = { 34.7, 26.2, 4, 600 }, + [3] = { 35.1, 24.8, 4, 600 }, + [4] = { 62.8, 77.1, 41, 600 }, + [5] = { 62.2, 75.8, 41, 600 }, + [6] = { 63.3, 75.3, 41, 600 }, + [7] = { 60.5, 61.7, 41, 600 }, + }, + ["lvl"] = "57-58", + }, + [7373] = { + ["coords"] = {}, + ["lvl"] = "59-60", + }, + [7374] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [7375] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [7376] = { + ["coords"] = { + [1] = { 44.7, 62.7, 41, 600 }, + [2] = { 41.3, 58.8, 41, 600 }, + [3] = { 40, 52.7, 41, 600 }, + [4] = { 48.1, 50.8, 41, 600 }, + [5] = { 41.4, 49.4, 41, 600 }, + [6] = { 50.1, 46.9, 41, 600 }, + [7] = { 43.2, 44.9, 41, 600 }, + [8] = { 37.9, 41.3, 41, 600 }, + [9] = { 40.9, 41.3, 41, 600 }, + [10] = { 35.6, 41.2, 41, 600 }, + [11] = { 36.6, 39.5, 41, 600 }, + [12] = { 38.1, 30.6, 41, 600 }, + [13] = { 47.2, 25, 41, 600 }, + }, + ["lvl"] = "55-56", + }, + [7377] = { + ["coords"] = {}, + ["lvl"] = "57-58", + }, + [7378] = { + ["coords"] = {}, + ["lvl"] = "59-60", + }, + [7379] = { + ["coords"] = { + [1] = { 59.5, 73.1, 41, 600 }, + [2] = { 57.8, 73, 41, 600 }, + [3] = { 59, 68.7, 41, 600 }, + [4] = { 52.6, 61.2, 41, 600 }, + [5] = { 52.4, 60.3, 41, 600 }, + [6] = { 58.3, 60.1, 41, 600 }, + [7] = { 52.4, 57, 41, 600 }, + [8] = { 53.9, 56.1, 41, 600 }, + }, + ["lvl"] = "55-57", + }, + [7380] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [7381] = { + ["coords"] = { + [1] = { 44.2, 53.3, 12, 300 }, + }, + ["lvl"] = "1", + }, + [7382] = { + ["coords"] = { + [1] = { 44.2, 53.2, 12, 300 }, + }, + ["lvl"] = "1", + }, + [7383] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [7384] = { + ["coords"] = { + [1] = { 44.1, 53.4, 12, 270 }, + }, + ["lvl"] = "1", + }, + [7385] = { + ["coords"] = { + [1] = { 44.2, 53.3, 12, 555 }, + }, + ["lvl"] = "1", + }, + [7386] = { + ["coords"] = { + [1] = { 35.5, 41.4, 1519, 180 }, + }, + ["lvl"] = "1", + }, + [7387] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [7388] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [7389] = { + ["coords"] = { + [1] = { 28.1, 74.5, 33, 300 }, + }, + ["lvl"] = "1", + }, + [7390] = { + ["coords"] = { + [1] = { 28.1, 74.4, 33, 300 }, + }, + ["lvl"] = "1", + }, + [7391] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [7392] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [7393] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [7394] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [7395] = { + ["coords"] = { + [1] = { 67.4, 44.5, 1497, 180 }, + [2] = { 67.6, 44.5, 1497, 180 }, + [3] = { 67.4, 44.3, 1497, 180 }, + [4] = { 67.5, 43.9, 1497, 180 }, + [5] = { 67.7, 43.8, 1497, 180 }, + [6] = { 67.4, 43.8, 1497, 180 }, + }, + ["lvl"] = "1", + }, + [7396] = { + ["coords"] = {}, + ["lvl"] = "44-45", + }, + [7397] = { + ["coords"] = {}, + ["lvl"] = "44-45", + }, + [7398] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "53", + }, + [7399] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "58", + }, + [7400] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [7401] = { + ["coords"] = {}, + ["lvl"] = "45", + }, + [7402] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [7403] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "53", + }, + [7404] = { + ["coords"] = { + [1] = { 48.4, 96.4, 17, 300 }, + [2] = { 42.1, 31.8, 400, 300 }, + [3] = { 42, 31.7, 400, 300 }, + }, + ["lvl"] = "30", + }, + [7405] = { + ["coords"] = {}, + ["lvl"] = "42-43", + }, + [7406] = { + ["coords"] = { + [1] = { 28.4, 76.4, 33, 300 }, + }, + ["lvl"] = "50", + }, + [7407] = { + ["coords"] = { + [1] = { 52.5, 28.5, 440, 300 }, + }, + ["lvl"] = "50", + }, + [7408] = { + ["coords"] = { + [1] = { 52.5, 28.4, 440, 300 }, + }, + ["lvl"] = "40", + }, + [7409] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [7410] = { + ["coords"] = { + [1] = { 77.2, 16.3, 1519, 1680 }, + }, + ["fac"] = "A", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [7411] = { + ["coords"] = { + [1] = { 25.4, 64.5, 141, 0 }, + [2] = { 39.3, 84.5, 1657, 0 }, + }, + ["fac"] = "AH", + ["lvl"] = "12", + }, + [7412] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "52", + }, + [7413] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "57", + }, + [7414] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "45", + }, + [7415] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "52", + }, + [7416] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "56", + }, + [7423] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "46", + }, + [7424] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "55", + }, + [7425] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "58", + }, + [7427] = { + ["coords"] = { + [1] = { 41.8, 32.5, 215, 500 }, + [2] = { 58.9, 76.8, 1638, 500 }, + }, + ["fac"] = "H", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [7428] = { + ["coords"] = { + [1] = { 61.9, 73, 618, 600 }, + [2] = { 63.6, 72.3, 618, 600 }, + [3] = { 64.4, 72.2, 618, 600 }, + [4] = { 63.8, 71.6, 618, 600 }, + [5] = { 65.5, 70.8, 618, 600 }, + [6] = { 60, 70.2, 618, 600 }, + [7] = { 62.9, 70, 618, 600 }, + [8] = { 59.5, 69.6, 618, 600 }, + [9] = { 62.6, 69.5, 618, 600 }, + [10] = { 63.4, 69.3, 618, 600 }, + [11] = { 58.7, 69.3, 618, 600 }, + [12] = { 65.7, 69.3, 618, 600 }, + [13] = { 63.3, 69.2, 618, 600 }, + [14] = { 64.3, 69, 618, 600 }, + [15] = { 58.1, 68.7, 618, 600 }, + [16] = { 62.9, 68.7, 618, 600 }, + [17] = { 61.9, 68.5, 618, 600 }, + [18] = { 61.4, 68, 618, 600 }, + [19] = { 60.4, 67.8, 618, 600 }, + [20] = { 58.3, 67.5, 618, 600 }, + [21] = { 58.2, 67.4, 618, 600 }, + [22] = { 61.1, 67.3, 618, 600 }, + [23] = { 60.1, 67.3, 618, 600 }, + [24] = { 63.8, 67.1, 618, 600 }, + [25] = { 64.3, 66.2, 618, 600 }, + [26] = { 59.8, 65.3, 618, 600 }, + [27] = { 60.6, 65.1, 618, 600 }, + }, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [7429] = { + ["coords"] = { + [1] = { 61.9, 73, 618, 600 }, + [2] = { 63.6, 72.3, 618, 600 }, + [3] = { 64.4, 72.2, 618, 600 }, + [4] = { 63.8, 71.6, 618, 600 }, + [5] = { 65.5, 70.8, 618, 600 }, + [6] = { 60, 70.2, 618, 600 }, + [7] = { 62.9, 70, 618, 600 }, + [8] = { 59.5, 69.6, 618, 600 }, + [9] = { 62.6, 69.5, 618, 600 }, + [10] = { 63.4, 69.3, 618, 600 }, + [11] = { 58.7, 69.3, 618, 600 }, + [12] = { 65.7, 69.3, 618, 600 }, + [13] = { 63.3, 69.2, 618, 600 }, + [14] = { 64.3, 69, 618, 600 }, + [15] = { 58.1, 68.7, 618, 600 }, + [16] = { 62.9, 68.7, 618, 600 }, + [17] = { 61.9, 68.5, 618, 600 }, + [18] = { 61.4, 68, 618, 600 }, + [19] = { 60.4, 67.8, 618, 600 }, + [20] = { 58.3, 67.5, 618, 600 }, + [21] = { 58.2, 67.4, 618, 600 }, + [22] = { 61.1, 67.3, 618, 600 }, + [23] = { 60.1, 67.3, 618, 600 }, + [24] = { 63.8, 67.1, 618, 600 }, + [25] = { 64.3, 66.2, 618, 600 }, + [26] = { 59.8, 65.3, 618, 600 }, + [27] = { 60.6, 65.1, 618, 600 }, + }, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [7430] = { + ["coords"] = { + [1] = { 48.9, 19, 618, 333 }, + [2] = { 48.9, 18.8, 618, 333 }, + [3] = { 50.2, 17.1, 618, 333 }, + [4] = { 50.3, 17, 618, 333 }, + [5] = { 52.2, 14.8, 618, 333 }, + [6] = { 52.1, 14.7, 618, 333 }, + [7] = { 55.7, 14.6, 618, 333 }, + [8] = { 55.7, 14.5, 618, 333 }, + [9] = { 48.9, 11.5, 618, 333 }, + [10] = { 48.9, 11.4, 618, 333 }, + [11] = { 51.7, 11.3, 618, 333 }, + [12] = { 54.7, 10.8, 618, 333 }, + [13] = { 54.6, 10.7, 618, 333 }, + [14] = { 51.9, 9.3, 618, 333 }, + [15] = { 49.6, 8.9, 618, 333 }, + [16] = { 49.6, 8.8, 618, 333 }, + [17] = { 48.5, 7.9, 618, 333 }, + [18] = { 48.5, 7.8, 618, 333 }, + [19] = { 49.6, 7, 618, 333 }, + [20] = { 49.7, 7, 618, 333 }, + }, + ["lvl"] = "55-56", + }, + [7431] = { + ["coords"] = { + [1] = { 51.1, 22.3, 618, 333 }, + [2] = { 50.7, 21.4, 618, 333 }, + [3] = { 50.5, 20.1, 618, 333 }, + [4] = { 50.7, 18.7, 618, 333 }, + [5] = { 49.8, 18.7, 618, 333 }, + [6] = { 53.7, 18.1, 618, 333 }, + [7] = { 54.5, 17.2, 618, 333 }, + [8] = { 55.5, 17.1, 618, 333 }, + [9] = { 53.1, 16.8, 618, 333 }, + [10] = { 54.4, 15.8, 618, 333 }, + [11] = { 56.8, 15.3, 618, 333 }, + [12] = { 53.1, 15.2, 618, 333 }, + [13] = { 54, 15.2, 618, 333 }, + [14] = { 54.9, 15.1, 618, 333 }, + [15] = { 56.9, 14, 618, 333 }, + [16] = { 54, 13.7, 618, 333 }, + [17] = { 54.9, 13.7, 618, 333 }, + [18] = { 54.5, 13, 618, 333 }, + [19] = { 56.3, 13, 618, 333 }, + [20] = { 55.5, 12.8, 618, 333 }, + [21] = { 56.8, 12.5, 618, 333 }, + [22] = { 54.8, 12.2, 618, 333 }, + [23] = { 56.4, 11.7, 618, 333 }, + }, + ["lvl"] = "56-57", + }, + [7432] = { + ["coords"] = { + [1] = { 51.5, 21.5, 618, 333 }, + [2] = { 50.1, 20.8, 618, 333 }, + [3] = { 49.8, 20, 618, 333 }, + [4] = { 51.2, 19.4, 618, 333 }, + [5] = { 50.2, 19.4, 618, 333 }, + [6] = { 50.2, 18, 618, 333 }, + [7] = { 48.4, 17.7, 618, 333 }, + [8] = { 49.8, 17.3, 618, 333 }, + [9] = { 50.7, 17.3, 618, 333 }, + [10] = { 56.6, 17.2, 618, 333 }, + [11] = { 48.9, 17, 618, 333 }, + [12] = { 56.7, 16.7, 618, 333 }, + [13] = { 55.9, 16.6, 618, 333 }, + [14] = { 54, 16.5, 618, 333 }, + [15] = { 55, 16.5, 618, 333 }, + [16] = { 49.4, 16.3, 618, 333 }, + [17] = { 48.9, 16, 618, 333 }, + [18] = { 56.3, 15.9, 618, 333 }, + [19] = { 53.6, 15.8, 618, 333 }, + [20] = { 52.7, 15.8, 618, 333 }, + [21] = { 49.9, 15.6, 618, 333 }, + [22] = { 55.7, 15.2, 618, 333 }, + [23] = { 51.1, 15.2, 618, 333 }, + [24] = { 48.3, 15.2, 618, 333 }, + [25] = { 52.1, 15.2, 618, 333 }, + [26] = { 50.1, 15.2, 618, 333 }, + [27] = { 48.8, 14.6, 618, 333 }, + [28] = { 52.5, 14.6, 618, 333 }, + [29] = { 56.4, 14.4, 618, 333 }, + [30] = { 49.7, 14.4, 618, 333 }, + [31] = { 55.5, 14.3, 618, 333 }, + [32] = { 51.6, 14.2, 618, 333 }, + [33] = { 48.3, 14, 618, 333 }, + [34] = { 50.3, 13.7, 618, 333 }, + [35] = { 50.9, 13.2, 618, 333 }, + [36] = { 53.5, 13, 618, 333 }, + [37] = { 54, 12.2, 618, 333 }, + [38] = { 53.1, 12.2, 618, 333 }, + [39] = { 53.6, 11.8, 618, 333 }, + [40] = { 53.9, 10.8, 618, 333 }, + [41] = { 50.7, 18.7, 618, 333 }, + [42] = { 49.8, 18.7, 618, 333 }, + [43] = { 54, 15.2, 618, 333 }, + [44] = { 54.9, 15.1, 618, 333 }, + [45] = { 54, 13.7, 618, 333 }, + [46] = { 54.9, 13.7, 618, 333 }, + [47] = { 54.5, 13, 618, 333 }, + }, + ["lvl"] = "59-60", + }, + [7433] = { + ["coords"] = { + [1] = { 50.4, 16.6, 618, 333 }, + [2] = { 50.8, 16, 618, 333 }, + [3] = { 51.6, 15.8, 618, 333 }, + [4] = { 49.3, 15.1, 618, 333 }, + [5] = { 50.8, 14.4, 618, 333 }, + [6] = { 52.6, 14.4, 618, 333 }, + [7] = { 53, 14.2, 618, 333 }, + [8] = { 51.2, 13.9, 618, 333 }, + [9] = { 49.2, 13.7, 618, 333 }, + [10] = { 48.6, 13, 618, 333 }, + [11] = { 49.3, 12.3, 618, 333 }, + [12] = { 52, 12.1, 618, 333 }, + [13] = { 48.6, 12.1, 618, 333 }, + [14] = { 52.6, 11.7, 618, 333 }, + [15] = { 54.9, 11.1, 618, 333 }, + [16] = { 53.1, 11, 618, 333 }, + [17] = { 49.4, 10.9, 618, 333 }, + [18] = { 52.2, 10.8, 618, 333 }, + [19] = { 51.7, 10.2, 618, 333 }, + [20] = { 52.4, 9.6, 618, 333 }, + [21] = { 49.3, 8.1, 618, 333 }, + [22] = { 50.2, 8.1, 618, 333 }, + [23] = { 51.3, 8, 618, 333 }, + [24] = { 49.8, 7.5, 618, 333 }, + [25] = { 48.7, 7.4, 618, 333 }, + [26] = { 50.4, 6.7, 618, 333 }, + [27] = { 50.2, 18, 618, 333 }, + [28] = { 49.8, 17.3, 618, 333 }, + [29] = { 50.7, 17.3, 618, 333 }, + }, + ["lvl"] = "58-59", + }, + [7434] = { + ["coords"] = { + [1] = { 48.3, 9.5, 618, 333 }, + [2] = { 51.7, 8.9, 618, 333 }, + [3] = { 50.7, 8.8, 618, 333 }, + [4] = { 50.7, 7.4, 618, 333 }, + [5] = { 49.3, 12.3, 618, 333 }, + }, + ["lvl"] = "59-60", + }, + [7435] = { + ["coords"] = { + [1] = { 52.8, 55.1, 618, 600 }, + [2] = { 54.4, 54.9, 618, 600 }, + [3] = { 58.7, 54.5, 618, 600 }, + [4] = { 53.9, 54.5, 618, 600 }, + [5] = { 59.2, 53.9, 618, 600 }, + [6] = { 60.6, 53.6, 618, 600 }, + [7] = { 59.6, 53.1, 618, 600 }, + [8] = { 57.4, 53, 618, 600 }, + [9] = { 54.6, 53, 618, 600 }, + [10] = { 57.2, 52.5, 618, 600 }, + [11] = { 54.8, 52.5, 618, 600 }, + [12] = { 54.7, 52.2, 618, 600 }, + [13] = { 59.6, 51.9, 618, 600 }, + [14] = { 56.7, 51.9, 618, 600 }, + [15] = { 54.7, 51.8, 618, 600 }, + [16] = { 56.7, 51.7, 618, 600 }, + [17] = { 58.8, 51.7, 618, 600 }, + [18] = { 58.3, 51.2, 618, 600 }, + [19] = { 58.9, 51.1, 618, 600 }, + [20] = { 61.2, 50.9, 618, 600 }, + [21] = { 54.3, 50.5, 618, 600 }, + [22] = { 55.2, 50.5, 618, 600 }, + [23] = { 55.8, 50.2, 618, 600 }, + [24] = { 56.7, 50.2, 618, 600 }, + [25] = { 56.5, 50, 618, 600 }, + [26] = { 55.3, 50, 618, 600 }, + [27] = { 54.5, 49.9, 618, 600 }, + [28] = { 54.3, 49.9, 618, 600 }, + [29] = { 60.7, 49.8, 618, 600 }, + [30] = { 56.4, 49.8, 618, 600 }, + [31] = { 56.1, 49.7, 618, 600 }, + [32] = { 58.1, 49.5, 618, 600 }, + [33] = { 55.6, 49.5, 618, 600 }, + [34] = { 57.7, 49.3, 618, 600 }, + [35] = { 59.7, 49.2, 618, 600 }, + [36] = { 58.4, 48.2, 618, 600 }, + }, + ["lvl"] = "55-56", + ["rnk"] = "1", + }, + [7436] = { + ["coords"] = { + [1] = { 52.8, 55.1, 618, 600 }, + [2] = { 54.4, 54.9, 618, 600 }, + [3] = { 58.7, 54.5, 618, 600 }, + [4] = { 53.9, 54.5, 618, 600 }, + [5] = { 59.2, 53.9, 618, 600 }, + [6] = { 60.6, 53.6, 618, 600 }, + [7] = { 59.6, 53.1, 618, 600 }, + [8] = { 57.4, 53, 618, 600 }, + [9] = { 54.6, 53, 618, 600 }, + [10] = { 57.2, 52.5, 618, 600 }, + [11] = { 54.8, 52.5, 618, 600 }, + [12] = { 54.7, 52.2, 618, 600 }, + [13] = { 59.6, 51.9, 618, 600 }, + [14] = { 56.7, 51.9, 618, 600 }, + [15] = { 54.7, 51.8, 618, 600 }, + [16] = { 56.7, 51.7, 618, 600 }, + [17] = { 58.8, 51.7, 618, 600 }, + [18] = { 58.3, 51.2, 618, 600 }, + [19] = { 58.9, 51.1, 618, 600 }, + [20] = { 61.2, 50.9, 618, 600 }, + [21] = { 54.3, 50.5, 618, 600 }, + [22] = { 55.2, 50.5, 618, 600 }, + [23] = { 55.8, 50.2, 618, 600 }, + [24] = { 56.7, 50.2, 618, 600 }, + [25] = { 56.5, 50, 618, 600 }, + [26] = { 55.3, 50, 618, 600 }, + [27] = { 54.5, 49.9, 618, 600 }, + [28] = { 54.3, 49.9, 618, 600 }, + [29] = { 60.7, 49.8, 618, 600 }, + [30] = { 56.4, 49.8, 618, 600 }, + [31] = { 56.1, 49.7, 618, 600 }, + [32] = { 58.1, 49.5, 618, 600 }, + [33] = { 55.6, 49.5, 618, 600 }, + [34] = { 57.7, 49.3, 618, 600 }, + [35] = { 59.7, 49.2, 618, 600 }, + [36] = { 58.4, 48.2, 618, 600 }, + }, + ["lvl"] = "56-57", + ["rnk"] = "1", + }, + [7437] = { + ["coords"] = { + [1] = { 52.8, 55.1, 618, 600 }, + [2] = { 54.4, 54.9, 618, 600 }, + [3] = { 58.7, 54.5, 618, 600 }, + [4] = { 53.9, 54.5, 618, 600 }, + [5] = { 59.2, 53.9, 618, 600 }, + [6] = { 60.6, 53.6, 618, 600 }, + [7] = { 59.6, 53.1, 618, 600 }, + [8] = { 57.4, 53, 618, 600 }, + [9] = { 54.6, 53, 618, 600 }, + [10] = { 57.2, 52.5, 618, 600 }, + [11] = { 54.8, 52.5, 618, 600 }, + [12] = { 54.7, 52.2, 618, 600 }, + [13] = { 59.6, 51.9, 618, 600 }, + [14] = { 56.7, 51.9, 618, 600 }, + [15] = { 54.7, 51.8, 618, 600 }, + [16] = { 56.7, 51.7, 618, 600 }, + [17] = { 58.8, 51.7, 618, 600 }, + [18] = { 58.3, 51.2, 618, 600 }, + [19] = { 58.9, 51.1, 618, 600 }, + [20] = { 61.2, 50.9, 618, 600 }, + [21] = { 54.3, 50.5, 618, 600 }, + [22] = { 55.2, 50.5, 618, 600 }, + [23] = { 55.8, 50.2, 618, 600 }, + [24] = { 56.7, 50.2, 618, 600 }, + [25] = { 56.5, 50, 618, 600 }, + [26] = { 55.3, 50, 618, 600 }, + [27] = { 54.5, 49.9, 618, 600 }, + [28] = { 54.3, 49.9, 618, 600 }, + [29] = { 60.7, 49.8, 618, 600 }, + [30] = { 56.4, 49.8, 618, 600 }, + [31] = { 56.1, 49.7, 618, 600 }, + [32] = { 58.1, 49.5, 618, 600 }, + [33] = { 55.6, 49.5, 618, 600 }, + [34] = { 57.7, 49.3, 618, 600 }, + [35] = { 59.7, 49.2, 618, 600 }, + [36] = { 58.4, 48.2, 618, 600 }, + }, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [7438] = { + ["coords"] = { + [1] = { 67.1, 39.9, 618, 240 }, + [2] = { 67.7, 39.4, 618, 240 }, + [3] = { 66.6, 39.1, 618, 240 }, + [4] = { 69.5, 38.3, 618, 240 }, + [5] = { 66.2, 38.3, 618, 240 }, + [6] = { 67.9, 38.1, 618, 240 }, + [7] = { 67.9, 37.9, 618, 240 }, + [8] = { 68.8, 37.8, 618, 240 }, + [9] = { 65.3, 37.7, 618, 240 }, + [10] = { 65.7, 37.7, 618, 240 }, + [11] = { 66.8, 37, 618, 240 }, + [12] = { 66.7, 37, 618, 240 }, + [13] = { 65.3, 37, 618, 240 }, + [14] = { 68.2, 36.9, 618, 240 }, + [15] = { 68.1, 36.9, 618, 240 }, + [16] = { 67.5, 39.8, 618, 240 }, + }, + ["lvl"] = "57-58", + }, + [7439] = { + ["coords"] = { + [1] = { 67.5, 39.8, 618, 240 }, + [2] = { 67.9, 37.9, 618, 240 }, + [3] = { 67.1, 36.2, 618, 240 }, + [4] = { 66.5, 35.9, 618, 240 }, + [5] = { 67.5, 35.9, 618, 240 }, + [6] = { 67.6, 35.7, 618, 240 }, + [7] = { 67.4, 35.2, 618, 240 }, + [8] = { 67.1, 39.9, 618, 240 }, + [9] = { 67.7, 39.4, 618, 240 }, + [10] = { 66.6, 39.1, 618, 240 }, + [11] = { 69.5, 38.3, 618, 240 }, + [12] = { 66.2, 38.3, 618, 240 }, + [13] = { 68.8, 37.8, 618, 240 }, + [14] = { 65.3, 37.7, 618, 240 }, + [15] = { 65.7, 37.7, 618, 240 }, + [16] = { 66.8, 37, 618, 240 }, + [17] = { 66.7, 37, 618, 240 }, + [18] = { 65.3, 37, 618, 240 }, + [19] = { 68.2, 36.9, 618, 240 }, + [20] = { 68.1, 36.9, 618, 240 }, + }, + ["lvl"] = "56-57", + }, + [7440] = { + ["coords"] = { + [1] = { 39.4, 44.7, 618, 240 }, + [2] = { 40.1, 44, 618, 240 }, + [3] = { 39.4, 44, 618, 240 }, + [4] = { 40.3, 43.9, 618, 240 }, + [5] = { 40.1, 43.3, 618, 240 }, + [6] = { 39.8, 43, 618, 240 }, + [7] = { 41.4, 42.7, 618, 240 }, + [8] = { 39.7, 42.7, 618, 240 }, + [9] = { 41.6, 42.6, 618, 240 }, + [10] = { 32.4, 37.7, 618, 240 }, + [11] = { 29.6, 37, 618, 240 }, + [12] = { 30.5, 37, 618, 240 }, + [13] = { 33, 36.8, 618, 240 }, + [14] = { 33.2, 36.8, 618, 240 }, + [15] = { 33.4, 36.4, 618, 240 }, + [16] = { 30.3, 36.3, 618, 240 }, + [17] = { 30, 36.3, 618, 240 }, + [18] = { 30.6, 35.9, 618, 240 }, + [19] = { 30.6, 35.6, 618, 240 }, + [20] = { 68.1, 35.6, 618, 240 }, + [21] = { 66.2, 35.5, 618, 240 }, + [22] = { 68.7, 34.9, 618, 240 }, + [23] = { 65.8, 34.9, 618, 240 }, + [24] = { 67, 34.5, 618, 240 }, + [25] = { 66.2, 34.2, 618, 240 }, + [26] = { 68.1, 34.2, 618, 240 }, + [27] = { 67.1, 34.1, 618, 240 }, + [28] = { 67.9, 37.9, 618, 240 }, + [29] = { 67.1, 36.2, 618, 240 }, + [30] = { 66.5, 35.9, 618, 240 }, + [31] = { 67.5, 35.9, 618, 240 }, + [32] = { 67.6, 35.7, 618, 240 }, + [33] = { 67.4, 35.2, 618, 240 }, + }, + ["lvl"] = "55-56", + }, + [7441] = { + ["coords"] = { + [1] = { 39.4, 44.7, 618, 240 }, + [2] = { 40.1, 44, 618, 240 }, + [3] = { 39.4, 44, 618, 240 }, + [4] = { 40.3, 43.9, 618, 240 }, + [5] = { 40.1, 43.3, 618, 240 }, + [6] = { 39.8, 43, 618, 240 }, + [7] = { 41.4, 42.7, 618, 240 }, + [8] = { 39.7, 42.7, 618, 240 }, + [9] = { 32.4, 37.7, 618, 240 }, + [10] = { 29.6, 37, 618, 240 }, + [11] = { 30.5, 37, 618, 240 }, + [12] = { 33, 36.8, 618, 240 }, + [13] = { 33.2, 36.8, 618, 240 }, + [14] = { 33.4, 36.4, 618, 240 }, + [15] = { 30.3, 36.3, 618, 240 }, + [16] = { 30, 36.3, 618, 240 }, + [17] = { 30.6, 35.9, 618, 240 }, + [18] = { 30.6, 35.6, 618, 240 }, + }, + ["lvl"] = "54-55", + }, + [7442] = { + ["coords"] = { + [1] = { 42, 44.8, 618, 333 }, + [2] = { 42.4, 44.1, 618, 333 }, + [3] = { 40.7, 43.8, 618, 333 }, + [4] = { 41.3, 43.3, 618, 333 }, + [5] = { 42.6, 43, 618, 333 }, + [6] = { 39, 42.8, 618, 333 }, + [7] = { 40.4, 42.7, 618, 333 }, + [8] = { 40.8, 42.6, 618, 333 }, + [9] = { 42.3, 42.6, 618, 333 }, + [10] = { 33.3, 37.7, 618, 333 }, + [11] = { 32.4, 37, 618, 333 }, + [12] = { 33.8, 37, 618, 333 }, + [13] = { 34.7, 37, 618, 333 }, + [14] = { 30.9, 36.7, 618, 333 }, + [15] = { 31.4, 36.3, 618, 333 }, + [16] = { 33.8, 36.2, 618, 333 }, + [17] = { 30.1, 35.6, 618, 333 }, + [18] = { 31.4, 34.9, 618, 333 }, + [19] = { 31, 34.8, 618, 333 }, + }, + ["lvl"] = "53-54", + }, + [7443] = { + ["coords"] = { + [1] = { 66.7, 54.4, 618, 333 }, + [2] = { 68.9, 53.8, 618, 333 }, + [3] = { 67.2, 52.9, 618, 333 }, + [4] = { 66.1, 51.4, 618, 333 }, + [5] = { 68.1, 50.2, 618, 333 }, + [6] = { 54.3, 49, 618, 333 }, + [7] = { 66.4, 48.9, 618, 333 }, + [8] = { 54.9, 48.3, 618, 333 }, + [9] = { 69, 48.3, 618, 333 }, + [10] = { 66.3, 48.3, 618, 333 }, + [11] = { 62.4, 48.2, 618, 333 }, + [12] = { 61.8, 48.1, 618, 333 }, + [13] = { 62.9, 47.8, 618, 333 }, + [14] = { 62.3, 46.4, 618, 333 }, + [15] = { 57.6, 46.1, 618, 333 }, + [16] = { 56.4, 46, 618, 333 }, + [17] = { 58.2, 46, 618, 333 }, + [18] = { 58.7, 45.9, 618, 333 }, + [19] = { 54.6, 45.5, 618, 333 }, + [20] = { 60.3, 45.4, 618, 333 }, + [21] = { 62.5, 44.9, 618, 333 }, + [22] = { 59.2, 44.8, 618, 333 }, + [23] = { 62.4, 44.8, 618, 333 }, + [24] = { 60.2, 44.7, 618, 333 }, + [25] = { 61.6, 43.9, 618, 333 }, + [26] = { 58.2, 43.8, 618, 333 }, + [27] = { 59.8, 42.6, 618, 333 }, + [28] = { 60.5, 42.1, 618, 333 }, + [29] = { 59.6, 41.8, 618, 333 }, + [30] = { 58.3, 41.3, 618, 333 }, + [31] = { 59.7, 41.3, 618, 333 }, + [32] = { 57.8, 40.5, 618, 333 }, + [33] = { 57.7, 40.3, 618, 333 }, + [34] = { 57.1, 39, 618, 333 }, + [35] = { 56.6, 38.7, 618, 333 }, + [36] = { 56.5, 38.4, 618, 333 }, + [37] = { 55.9, 38.3, 618, 333 }, + [38] = { 59.6, 34.4, 618, 333 }, + [39] = { 62.4, 33.4, 618, 333 }, + [40] = { 68.6, 32.9, 618, 333 }, + [41] = { 67.9, 32.7, 618, 333 }, + [42] = { 51.9, 32.6, 618, 333 }, + [43] = { 68.3, 32.5, 618, 333 }, + [44] = { 64.4, 32, 618, 333 }, + [45] = { 63, 31.7, 618, 333 }, + [46] = { 61.7, 31.7, 618, 333 }, + [47] = { 67.2, 31.4, 618, 333 }, + [48] = { 65.8, 30.8, 618, 333 }, + [49] = { 56.6, 30.8, 618, 333 }, + [50] = { 64, 28.7, 618, 333 }, + [51] = { 68, 28.6, 618, 333 }, + [52] = { 57.3, 28.6, 618, 333 }, + [53] = { 64.9, 27.7, 618, 333 }, + [54] = { 64.1, 26.5, 618, 333 }, + [55] = { 66, 26, 618, 333 }, + }, + ["lvl"] = "55-56", + }, + [7444] = { + ["coords"] = { + [1] = { 30.2, 47.2, 618, 333 }, + [2] = { 48.2, 46.7, 618, 333 }, + [3] = { 46.3, 46.7, 618, 333 }, + [4] = { 48.5, 46.4, 618, 333 }, + [5] = { 45.4, 45.8, 618, 333 }, + [6] = { 48.1, 45.7, 618, 333 }, + [7] = { 47.8, 44.3, 618, 333 }, + [8] = { 45.3, 44, 618, 333 }, + [9] = { 34.4, 43.9, 618, 333 }, + [10] = { 44.2, 43, 618, 333 }, + [11] = { 46, 41.9, 618, 333 }, + [12] = { 50.7, 39.6, 618, 333 }, + [13] = { 30.4, 39.4, 618, 333 }, + [14] = { 35.8, 39.3, 618, 333 }, + [15] = { 31.6, 39.3, 618, 333 }, + [16] = { 50.7, 39.2, 618, 333 }, + [17] = { 38.9, 39.2, 618, 333 }, + [18] = { 33.8, 39.1, 618, 333 }, + [19] = { 39.4, 39, 618, 333 }, + [20] = { 30.5, 39, 618, 333 }, + [21] = { 52, 38.7, 618, 333 }, + [22] = { 39.4, 38, 618, 333 }, + [23] = { 44.6, 37.9, 618, 333 }, + [24] = { 54.9, 37.7, 618, 333 }, + [25] = { 40.4, 37.2, 618, 333 }, + [26] = { 47.2, 37, 618, 333 }, + [27] = { 53.4, 37, 618, 333 }, + [28] = { 42.2, 37, 618, 333 }, + [29] = { 41.8, 36.3, 618, 333 }, + [30] = { 47.6, 35.9, 618, 333 }, + [31] = { 45.9, 34.9, 618, 333 }, + [32] = { 48.1, 34.8, 618, 333 }, + [33] = { 48.6, 34.3, 618, 333 }, + [34] = { 42.7, 34.1, 618, 333 }, + }, + ["lvl"] = "53-54", + }, + [7445] = { + ["coords"] = { + [1] = { 60.8, 64, 618, 333 }, + [2] = { 58.3, 60.5, 618, 333 }, + [3] = { 61.1, 58.7, 618, 333 }, + [4] = { 62.7, 55.1, 618, 333 }, + [5] = { 63.5, 55, 618, 333 }, + [6] = { 62.3, 29.5, 618, 333 }, + [7] = { 61.5, 27.3, 618, 333 }, + [8] = { 61.9, 26.9, 618, 333 }, + [9] = { 56.6, 26.4, 618, 333 }, + [10] = { 62.7, 26.2, 618, 333 }, + [11] = { 59.3, 25.9, 618, 333 }, + [12] = { 62.6, 24.9, 618, 333 }, + [13] = { 56.9, 24.9, 618, 333 }, + [14] = { 60.4, 24.6, 618, 333 }, + [15] = { 59.9, 24.2, 618, 333 }, + [16] = { 61.1, 24.2, 618, 333 }, + [17] = { 59.3, 23.7, 618, 333 }, + [18] = { 55.8, 23.6, 618, 333 }, + [19] = { 55.8, 22.2, 618, 333 }, + [20] = { 61.5, 21.6, 618, 333 }, + [21] = { 59, 21.3, 618, 333 }, + [22] = { 60.7, 21.1, 618, 333 }, + [23] = { 58.4, 20.8, 618, 333 }, + [24] = { 59.8, 20.3, 618, 333 }, + [25] = { 54.7, 20.2, 618, 333 }, + [26] = { 57.6, 19.5, 618, 333 }, + [27] = { 56.1, 19.4, 618, 333 }, + [28] = { 60.4, 18.1, 618, 333 }, + [29] = { 59.8, 17.9, 618, 333 }, + [30] = { 58.1, 16.7, 618, 333 }, + [31] = { 59.3, 16.6, 618, 333 }, + [32] = { 59.2, 16.5, 618, 333 }, + [33] = { 58.6, 15.8, 618, 333 }, + [34] = { 57.9, 15.3, 618, 333 }, + [35] = { 58.7, 15.2, 618, 333 }, + [36] = { 60.6, 15.2, 618, 333 }, + [37] = { 59.5, 15.1, 618, 333 }, + [38] = { 60.5, 14.4, 618, 333 }, + [39] = { 58.2, 14, 618, 333 }, + [40] = { 58.7, 13.8, 618, 333 }, + [41] = { 60.2, 13.8, 618, 333 }, + [42] = { 59.6, 13.7, 618, 333 }, + [43] = { 60.3, 12.7, 618, 333 }, + [44] = { 57.8, 12.6, 618, 333 }, + [45] = { 59.1, 12.1, 618, 333 }, + }, + ["lvl"] = "57-58", + }, + [7446] = { + ["coords"] = { + [1] = { 63.4, 74.4, 618, 333 }, + [2] = { 58.7, 74, 618, 333 }, + [3] = { 61.1, 72.9, 618, 333 }, + [4] = { 58.4, 72.3, 618, 333 }, + [5] = { 58, 72.2, 618, 333 }, + [6] = { 59.7, 72.2, 618, 333 }, + [7] = { 58.4, 71.8, 618, 333 }, + [8] = { 60.1, 71.5, 618, 333 }, + [9] = { 59.2, 71.5, 618, 333 }, + [10] = { 57.1, 71.4, 618, 333 }, + [11] = { 56.4, 71.4, 618, 333 }, + [12] = { 56.8, 70.9, 618, 333 }, + [13] = { 57.6, 70.8, 618, 333 }, + [14] = { 66.7, 70.6, 618, 333 }, + [15] = { 58.6, 70.6, 618, 333 }, + [16] = { 57.2, 69.9, 618, 333 }, + [17] = { 67.1, 69.8, 618, 333 }, + [18] = { 56.7, 69.3, 618, 333 }, + [19] = { 66.8, 69.3, 618, 333 }, + [20] = { 67.1, 69, 618, 333 }, + [21] = { 57.3, 68.7, 618, 333 }, + }, + ["lvl"] = "59-60", + }, + [7447] = { + ["coords"] = { + [1] = { 29.6, 48.5, 618, 333 }, + [2] = { 48.5, 45.2, 618, 333 }, + [3] = { 45.8, 44.9, 618, 333 }, + [4] = { 33.8, 44.6, 618, 333 }, + [5] = { 37.2, 44.5, 618, 333 }, + [6] = { 43.7, 43.8, 618, 333 }, + [7] = { 48.1, 42.7, 618, 333 }, + [8] = { 44.9, 42.2, 618, 333 }, + [9] = { 49, 40.8, 618, 333 }, + [10] = { 51.5, 38.7, 618, 333 }, + [11] = { 38.5, 38.5, 618, 333 }, + [12] = { 53.2, 37.7, 618, 333 }, + [13] = { 45, 36.3, 618, 333 }, + [14] = { 42.8, 35, 618, 333 }, + }, + ["lvl"] = "53-55", + }, + [7448] = { + ["coords"] = { + [1] = { 66.6, 53.3, 618, 333 }, + [2] = { 68, 53.3, 618, 333 }, + [3] = { 65.4, 53.1, 618, 333 }, + [4] = { 68.5, 52.8, 618, 333 }, + [5] = { 66.3, 52.5, 618, 333 }, + [6] = { 68.2, 51.8, 618, 333 }, + [7] = { 66.5, 51.2, 618, 333 }, + [8] = { 66.7, 49.8, 618, 333 }, + [9] = { 66.6, 49.6, 618, 333 }, + [10] = { 67.6, 48.7, 618, 333 }, + [11] = { 55.5, 48.5, 618, 333 }, + [12] = { 66.8, 47.4, 618, 333 }, + [13] = { 56.2, 46.9, 618, 333 }, + [14] = { 63.4, 46.9, 618, 333 }, + [15] = { 55.2, 46.6, 618, 333 }, + [16] = { 59.7, 45.9, 618, 333 }, + [17] = { 63.4, 45.8, 618, 333 }, + [18] = { 58, 44.6, 618, 333 }, + [19] = { 58.8, 43.5, 618, 333 }, + [20] = { 59.7, 42, 618, 333 }, + [21] = { 61.2, 41.7, 618, 333 }, + [22] = { 57.7, 41.6, 618, 333 }, + [23] = { 57.1, 40, 618, 333 }, + [24] = { 55.6, 37.1, 618, 333 }, + [25] = { 67.1, 30.8, 618, 333 }, + [26] = { 65.6, 30.7, 618, 333 }, + [27] = { 68.2, 30.3, 618, 333 }, + [28] = { 65.8, 29.8, 618, 333 }, + [29] = { 66.1, 27.6, 618, 333 }, + [30] = { 66.1, 26.8, 618, 333 }, + [31] = { 64.9, 24.6, 618, 333 }, + }, + ["lvl"] = "55-57", + }, + [7449] = { + ["coords"] = { + [1] = { 63.3, 62.1, 618, 333 }, + [2] = { 61.9, 54.7, 618, 333 }, + [3] = { 62.8, 54.5, 618, 333 }, + [4] = { 62, 29.9, 618, 333 }, + [5] = { 61.9, 25.9, 618, 333 }, + [6] = { 56.6, 25.6, 618, 333 }, + [7] = { 58.5, 25.5, 618, 333 }, + [8] = { 58.6, 25, 618, 333 }, + [9] = { 56.3, 24.1, 618, 333 }, + [10] = { 59.6, 23.5, 618, 333 }, + [11] = { 58.6, 23.5, 618, 333 }, + [12] = { 60.1, 23.4, 618, 333 }, + [13] = { 59.5, 23.1, 618, 333 }, + [14] = { 58, 23, 618, 333 }, + [15] = { 55.4, 22.9, 618, 333 }, + [16] = { 57.2, 22.8, 618, 333 }, + [17] = { 60, 22.1, 618, 333 }, + [18] = { 54.4, 21.8, 618, 333 }, + [19] = { 60.4, 21.8, 618, 333 }, + [20] = { 58.6, 21.5, 618, 333 }, + [21] = { 55.9, 21.5, 618, 333 }, + [22] = { 60, 21.4, 618, 333 }, + [23] = { 61, 21.1, 618, 333 }, + [24] = { 57.1, 20.6, 618, 333 }, + [25] = { 58.2, 19.9, 618, 333 }, + [26] = { 54.8, 19.8, 618, 333 }, + [27] = { 59.3, 19.4, 618, 333 }, + [28] = { 58, 19.1, 618, 333 }, + [29] = { 58.7, 17.5, 618, 333 }, + [30] = { 59.9, 17.4, 618, 333 }, + [31] = { 58.4, 16, 618, 333 }, + [32] = { 61.1, 15.8, 618, 333 }, + [33] = { 60.4, 14.8, 618, 333 }, + [34] = { 59, 14.3, 618, 333 }, + [35] = { 61.6, 13.9, 618, 333 }, + [36] = { 57.9, 13.5, 618, 333 }, + [37] = { 58.5, 13, 618, 333 }, + [38] = { 59.6, 12.3, 618, 333 }, + [39] = { 60.1, 11.5, 618, 333 }, + }, + ["lvl"] = "57-59", + }, + [7450] = { + ["coords"] = { + [1] = { 69.3, 23.1, 361, 333 }, + [2] = { 28.6, 48.3, 618, 333 }, + [3] = { 48.1, 46.4, 618, 333 }, + [4] = { 45.6, 46.3, 618, 333 }, + [5] = { 29, 45, 618, 333 }, + [6] = { 36.2, 44.3, 618, 333 }, + [7] = { 45.5, 42.9, 618, 333 }, + [8] = { 47.4, 42.8, 618, 333 }, + [9] = { 44.5, 42.8, 618, 333 }, + [10] = { 37.8, 40.6, 618, 333 }, + [11] = { 49.7, 39.9, 618, 333 }, + [12] = { 33.4, 39.7, 618, 333 }, + [13] = { 33, 39.3, 618, 333 }, + [14] = { 51.5, 39.3, 618, 333 }, + [15] = { 38.9, 38.5, 618, 333 }, + [16] = { 44.8, 38.3, 618, 333 }, + [17] = { 52.5, 38.1, 618, 333 }, + [18] = { 54.9, 37.7, 618, 333 }, + [19] = { 46.9, 37.6, 618, 333 }, + [20] = { 44, 37.6, 618, 333 }, + [21] = { 38.5, 37.6, 618, 333 }, + [22] = { 54, 37.2, 618, 333 }, + [23] = { 42.7, 37, 618, 333 }, + [24] = { 38.9, 36.3, 618, 333 }, + [25] = { 45.5, 35.9, 618, 333 }, + [26] = { 37, 35.6, 618, 333 }, + [27] = { 47.8, 35.5, 618, 333 }, + [28] = { 40.6, 35.3, 618, 333 }, + [29] = { 49.4, 35.1, 618, 333 }, + [30] = { 43.2, 34.5, 618, 333 }, + [31] = { 41.5, 34.1, 618, 333 }, + }, + ["lvl"] = "53-55", + }, + [7451] = { + ["coords"] = { + [1] = { 59.7, 36.8, 618, 333 }, + [2] = { 58, 34.8, 618, 333 }, + [3] = { 58.3, 34.4, 618, 333 }, + [4] = { 58.9, 34.2, 618, 333 }, + [5] = { 60.5, 33.9, 618, 333 }, + [6] = { 51.3, 33.8, 618, 333 }, + [7] = { 60.4, 33.3, 618, 333 }, + [8] = { 61.9, 32.9, 618, 333 }, + [9] = { 55.2, 32.5, 618, 333 }, + [10] = { 56.6, 32.1, 618, 333 }, + [11] = { 62.2, 31.8, 618, 333 }, + [12] = { 59.8, 31.7, 618, 333 }, + [13] = { 54.9, 31.6, 618, 333 }, + [14] = { 60.6, 29.9, 618, 333 }, + [15] = { 61.2, 29.8, 618, 333 }, + [16] = { 60.9, 29.8, 618, 333 }, + [17] = { 55.5, 28.6, 618, 333 }, + [18] = { 56.1, 28.5, 618, 333 }, + [19] = { 55, 28.2, 618, 333 }, + [20] = { 56, 28.2, 618, 333 }, + [21] = { 59.5, 28, 618, 333 }, + [22] = { 58.7, 27.8, 618, 333 }, + }, + ["lvl"] = "54-56", + }, + [7452] = { + ["coords"] = { + [1] = { 64.8, 65, 618, 333 }, + [2] = { 65.4, 64.4, 618, 333 }, + [3] = { 64, 64.4, 618, 333 }, + [4] = { 65.6, 62.7, 618, 333 }, + [5] = { 64.4, 62.3, 618, 333 }, + [6] = { 64.9, 62.3, 618, 333 }, + [7] = { 66.3, 61.8, 618, 333 }, + [8] = { 65.2, 61.8, 618, 333 }, + [9] = { 64.5, 61.2, 618, 333 }, + [10] = { 65.7, 61.1, 618, 333 }, + [11] = { 63.9, 61.1, 618, 333 }, + [12] = { 65.1, 61, 618, 333 }, + [13] = { 66, 60.4, 618, 333 }, + [14] = { 65.4, 60.4, 618, 333 }, + [15] = { 58.6, 60.3, 618, 333 }, + [16] = { 59.2, 60.3, 618, 333 }, + [17] = { 64.9, 60.1, 618, 333 }, + [18] = { 66.6, 60, 618, 333 }, + [19] = { 59.4, 59.8, 618, 333 }, + [20] = { 59.1, 59.7, 618, 333 }, + [21] = { 63.9, 59.6, 618, 333 }, + [22] = { 64.8, 59.5, 618, 333 }, + [23] = { 65.7, 59.4, 618, 333 }, + [24] = { 58.3, 59.4, 618, 333 }, + [25] = { 63.7, 59.1, 618, 333 }, + [26] = { 58.9, 59, 618, 333 }, + [27] = { 58.9, 58.6, 618, 333 }, + [28] = { 65.9, 58.6, 618, 333 }, + [29] = { 64.4, 58.1, 618, 333 }, + [30] = { 65.3, 57.9, 618, 333 }, + [31] = { 65.8, 57.7, 618, 333 }, + [32] = { 67.3, 25.6, 618, 333 }, + [33] = { 64.3, 25, 618, 333 }, + [34] = { 66.9, 24.9, 618, 333 }, + [35] = { 65.7, 24.3, 618, 333 }, + [36] = { 66.2, 23.6, 618, 333 }, + [37] = { 65.2, 23.6, 618, 333 }, + [38] = { 67.2, 23.5, 618, 333 }, + [39] = { 63.4, 23.5, 618, 333 }, + [40] = { 63.3, 23.4, 618, 333 }, + [41] = { 65.7, 22.9, 618, 333 }, + [42] = { 64.1, 22.9, 618, 333 }, + [43] = { 66.6, 22.9, 618, 333 }, + [44] = { 63.9, 22.9, 618, 333 }, + [45] = { 64.7, 22.7, 618, 333 }, + [46] = { 67.6, 22.6, 618, 333 }, + [47] = { 65.6, 22.3, 618, 333 }, + [48] = { 65.7, 22.3, 618, 333 }, + [49] = { 67.2, 22.2, 618, 333 }, + [50] = { 63.4, 22.2, 618, 333 }, + [51] = { 64.9, 22, 618, 333 }, + [52] = { 68, 22, 618, 333 }, + [53] = { 64.1, 21.8, 618, 333 }, + [54] = { 64.5, 21.7, 618, 333 }, + [55] = { 63.8, 21.5, 618, 333 }, + [56] = { 63, 21.5, 618, 333 }, + [57] = { 66.7, 21.4, 618, 333 }, + [58] = { 65.7, 21.1, 618, 333 }, + [59] = { 64.8, 20.8, 618, 333 }, + [60] = { 65.7, 20.8, 618, 333 }, + [61] = { 64.3, 20.8, 618, 333 }, + [62] = { 66.2, 20.8, 618, 333 }, + [63] = { 63.4, 20.7, 618, 333 }, + [64] = { 65.7, 20.1, 618, 333 }, + [65] = { 63.2, 19.9, 618, 333 }, + [66] = { 66.7, 19.8, 618, 333 }, + [67] = { 65.3, 19.4, 618, 333 }, + [68] = { 66.4, 19.4, 618, 333 }, + [69] = { 63.6, 19, 618, 333 }, + [70] = { 65.4, 18.5, 618, 333 }, + [71] = { 65.9, 18.1, 618, 333 }, + [72] = { 64.9, 17.8, 618, 333 }, + [73] = { 61.9, 17.7, 618, 333 }, + [74] = { 63, 17.3, 618, 333 }, + [75] = { 63.9, 17.2, 618, 333 }, + [76] = { 61.9, 16.6, 618, 333 }, + [77] = { 63.9, 16.5, 618, 333 }, + [78] = { 63.3, 16, 618, 333 }, + [79] = { 62.1, 15.6, 618, 333 }, + }, + ["lvl"] = "56-57", + }, + [7453] = { + ["coords"] = { + [1] = { 64.8, 65, 618, 333 }, + [2] = { 65.4, 64.4, 618, 333 }, + [3] = { 64, 64.4, 618, 333 }, + [4] = { 65.6, 62.7, 618, 333 }, + [5] = { 64.4, 62.3, 618, 333 }, + [6] = { 64.9, 62.3, 618, 333 }, + [7] = { 66.3, 61.8, 618, 333 }, + [8] = { 65.2, 61.8, 618, 333 }, + [9] = { 64.5, 61.2, 618, 333 }, + [10] = { 65.7, 61.1, 618, 333 }, + [11] = { 63.9, 61.1, 618, 333 }, + [12] = { 65.1, 61, 618, 333 }, + [13] = { 66, 60.4, 618, 333 }, + [14] = { 65.4, 60.4, 618, 333 }, + [15] = { 58.6, 60.3, 618, 333 }, + [16] = { 59.2, 60.3, 618, 333 }, + [17] = { 64.9, 60.1, 618, 333 }, + [18] = { 66.6, 60, 618, 333 }, + [19] = { 59.4, 59.8, 618, 333 }, + [20] = { 59.1, 59.7, 618, 333 }, + [21] = { 63.9, 59.6, 618, 333 }, + [22] = { 64.8, 59.5, 618, 333 }, + [23] = { 65.7, 59.4, 618, 333 }, + [24] = { 58.3, 59.4, 618, 333 }, + [25] = { 63.7, 59.1, 618, 333 }, + [26] = { 58.9, 59, 618, 333 }, + [27] = { 58.9, 58.6, 618, 333 }, + [28] = { 65.9, 58.6, 618, 333 }, + [29] = { 64.4, 58.1, 618, 333 }, + [30] = { 65.3, 57.9, 618, 333 }, + [31] = { 65.8, 57.7, 618, 333 }, + [32] = { 67.3, 25.6, 618, 333 }, + [33] = { 64.3, 25, 618, 333 }, + [34] = { 66.9, 24.9, 618, 333 }, + [35] = { 65.7, 24.3, 618, 333 }, + [36] = { 66.2, 23.6, 618, 333 }, + [37] = { 65.2, 23.6, 618, 333 }, + [38] = { 67.2, 23.5, 618, 333 }, + [39] = { 63.4, 23.5, 618, 333 }, + [40] = { 63.3, 23.4, 618, 333 }, + [41] = { 65.7, 22.9, 618, 333 }, + [42] = { 64.1, 22.9, 618, 333 }, + [43] = { 66.6, 22.9, 618, 333 }, + [44] = { 63.9, 22.9, 618, 333 }, + [45] = { 64.7, 22.7, 618, 333 }, + [46] = { 67.6, 22.6, 618, 333 }, + [47] = { 65.6, 22.3, 618, 333 }, + [48] = { 65.7, 22.3, 618, 333 }, + [49] = { 67.2, 22.2, 618, 333 }, + [50] = { 63.4, 22.2, 618, 333 }, + [51] = { 64.9, 22, 618, 333 }, + [52] = { 68, 22, 618, 333 }, + [53] = { 64.1, 21.8, 618, 333 }, + [54] = { 64.5, 21.7, 618, 333 }, + [55] = { 63.8, 21.5, 618, 333 }, + [56] = { 63, 21.5, 618, 333 }, + [57] = { 66.7, 21.4, 618, 333 }, + [58] = { 65.7, 21.1, 618, 333 }, + [59] = { 64.8, 20.8, 618, 333 }, + [60] = { 65.7, 20.8, 618, 333 }, + [61] = { 64.3, 20.8, 618, 333 }, + [62] = { 66.2, 20.8, 618, 333 }, + [63] = { 63.4, 20.7, 618, 333 }, + [64] = { 65.7, 20.1, 618, 333 }, + [65] = { 63.2, 19.9, 618, 333 }, + [66] = { 66.7, 19.8, 618, 333 }, + [67] = { 65.3, 19.4, 618, 333 }, + [68] = { 66.4, 19.4, 618, 333 }, + [69] = { 63.6, 19, 618, 333 }, + [70] = { 65.4, 18.5, 618, 333 }, + [71] = { 65.9, 18.1, 618, 333 }, + [72] = { 64.9, 17.8, 618, 333 }, + [73] = { 61.9, 17.7, 618, 333 }, + [74] = { 63, 17.3, 618, 333 }, + [75] = { 63.9, 17.2, 618, 333 }, + [76] = { 61.9, 16.6, 618, 333 }, + [77] = { 63.9, 16.5, 618, 333 }, + [78] = { 63.3, 16, 618, 333 }, + [79] = { 62.1, 15.6, 618, 333 }, + }, + ["lvl"] = "57-58", + }, + [7454] = { + ["coords"] = { + [1] = { 64.8, 65, 618, 333 }, + [2] = { 65.4, 64.4, 618, 333 }, + [3] = { 64, 64.4, 618, 333 }, + [4] = { 65.6, 62.7, 618, 333 }, + [5] = { 64.4, 62.3, 618, 333 }, + [6] = { 64.9, 62.3, 618, 333 }, + [7] = { 66.3, 61.8, 618, 333 }, + [8] = { 65.2, 61.8, 618, 333 }, + [9] = { 64.5, 61.2, 618, 333 }, + [10] = { 65.7, 61.1, 618, 333 }, + [11] = { 63.9, 61.1, 618, 333 }, + [12] = { 65.1, 61, 618, 333 }, + [13] = { 66, 60.4, 618, 333 }, + [14] = { 65.4, 60.4, 618, 333 }, + [15] = { 58.6, 60.3, 618, 333 }, + [16] = { 59.2, 60.3, 618, 333 }, + [17] = { 64.9, 60.1, 618, 333 }, + [18] = { 66.6, 60, 618, 333 }, + [19] = { 59.4, 59.8, 618, 333 }, + [20] = { 59.1, 59.7, 618, 333 }, + [21] = { 63.9, 59.6, 618, 333 }, + [22] = { 64.8, 59.5, 618, 333 }, + [23] = { 65.7, 59.4, 618, 333 }, + [24] = { 58.3, 59.4, 618, 333 }, + [25] = { 63.7, 59.1, 618, 333 }, + [26] = { 58.9, 59, 618, 333 }, + [27] = { 58.9, 58.6, 618, 333 }, + [28] = { 65.9, 58.6, 618, 333 }, + [29] = { 64.4, 58.1, 618, 333 }, + [30] = { 65.3, 57.9, 618, 333 }, + [31] = { 65.8, 57.7, 618, 333 }, + [32] = { 67.3, 25.6, 618, 333 }, + [33] = { 64.3, 25, 618, 333 }, + [34] = { 66.9, 24.9, 618, 333 }, + [35] = { 65.7, 24.3, 618, 333 }, + [36] = { 66.2, 23.6, 618, 333 }, + [37] = { 65.2, 23.6, 618, 333 }, + [38] = { 67.2, 23.5, 618, 333 }, + [39] = { 63.4, 23.5, 618, 333 }, + [40] = { 63.3, 23.4, 618, 333 }, + [41] = { 65.7, 22.9, 618, 333 }, + [42] = { 64.1, 22.9, 618, 333 }, + [43] = { 66.6, 22.9, 618, 333 }, + [44] = { 63.9, 22.9, 618, 333 }, + [45] = { 64.7, 22.7, 618, 333 }, + [46] = { 67.6, 22.6, 618, 333 }, + [47] = { 65.6, 22.3, 618, 333 }, + [48] = { 65.7, 22.3, 618, 333 }, + [49] = { 67.2, 22.2, 618, 333 }, + [50] = { 63.4, 22.2, 618, 333 }, + [51] = { 64.9, 22, 618, 333 }, + [52] = { 68, 22, 618, 333 }, + [53] = { 64.1, 21.8, 618, 333 }, + [54] = { 64.5, 21.7, 618, 333 }, + [55] = { 63.8, 21.5, 618, 333 }, + [56] = { 63, 21.5, 618, 333 }, + [57] = { 66.7, 21.4, 618, 333 }, + [58] = { 65.7, 21.1, 618, 333 }, + [59] = { 64.8, 20.8, 618, 333 }, + [60] = { 65.7, 20.8, 618, 333 }, + [61] = { 64.3, 20.8, 618, 333 }, + [62] = { 66.2, 20.8, 618, 333 }, + [63] = { 63.4, 20.7, 618, 333 }, + [64] = { 65.7, 20.1, 618, 333 }, + [65] = { 63.2, 19.9, 618, 333 }, + [66] = { 66.7, 19.8, 618, 333 }, + [67] = { 65.3, 19.4, 618, 333 }, + [68] = { 66.4, 19.4, 618, 333 }, + [69] = { 63.6, 19, 618, 333 }, + [70] = { 65.4, 18.5, 618, 333 }, + [71] = { 65.9, 18.1, 618, 333 }, + [72] = { 64.9, 17.8, 618, 333 }, + [73] = { 61.9, 17.7, 618, 333 }, + [74] = { 63, 17.3, 618, 333 }, + [75] = { 63.9, 17.2, 618, 333 }, + [76] = { 61.9, 16.6, 618, 333 }, + [77] = { 63.9, 16.5, 618, 333 }, + [78] = { 63.3, 16, 618, 333 }, + [79] = { 62.1, 15.6, 618, 333 }, + }, + ["lvl"] = "58-59", + }, + [7455] = { + ["coords"] = { + [1] = { 66.1, 54.2, 618, 333 }, + [2] = { 66.4, 51.9, 618, 333 }, + [3] = { 68.3, 51.5, 618, 333 }, + [4] = { 67.3, 49.5, 618, 333 }, + [5] = { 63.5, 48.3, 618, 333 }, + [6] = { 55.4, 47.2, 618, 333 }, + [7] = { 55.5, 46.7, 618, 333 }, + [8] = { 59.1, 46.2, 618, 333 }, + [9] = { 62.9, 45.4, 618, 333 }, + [10] = { 63.2, 43.9, 618, 333 }, + [11] = { 59.3, 43.6, 618, 333 }, + [12] = { 57.7, 43.4, 618, 333 }, + [13] = { 60.7, 41.2, 618, 333 }, + [14] = { 58.1, 40, 618, 333 }, + [15] = { 57.2, 37.6, 618, 333 }, + [16] = { 64.2, 36.8, 618, 333 }, + [17] = { 59.2, 35.5, 618, 333 }, + [18] = { 56.4, 34.6, 618, 333 }, + [19] = { 57.5, 34.3, 618, 333 }, + [20] = { 63.2, 34.1, 618, 333 }, + [21] = { 50.9, 34, 618, 333 }, + [22] = { 60.9, 33.9, 618, 333 }, + [23] = { 59.4, 33.7, 618, 333 }, + [24] = { 61.3, 33.2, 618, 333 }, + [25] = { 62.6, 33, 618, 333 }, + [26] = { 64.9, 33, 618, 333 }, + [27] = { 57.1, 32.9, 618, 333 }, + [28] = { 61.2, 32.9, 618, 333 }, + [29] = { 50.8, 32.8, 618, 333 }, + [30] = { 67.3, 32, 618, 333 }, + [31] = { 63.5, 31.5, 618, 333 }, + [32] = { 68.3, 31.3, 618, 333 }, + [33] = { 59.1, 30.9, 618, 333 }, + [34] = { 58.1, 30.1, 618, 333 }, + [35] = { 58.9, 29.9, 618, 333 }, + [36] = { 55.2, 29.8, 618, 333 }, + [37] = { 67.2, 29.3, 618, 333 }, + [38] = { 55.8, 29.3, 618, 333 }, + [39] = { 64.5, 29, 618, 333 }, + [40] = { 59, 28.9, 618, 333 }, + [41] = { 65.1, 28.8, 618, 333 }, + [42] = { 63.3, 27.5, 618, 333 }, + [43] = { 63.3, 27.2, 618, 333 }, + [44] = { 65.5, 27, 618, 333 }, + }, + ["lvl"] = "54-56", + }, + [7456] = { + ["coords"] = { + [1] = { 60.3, 64.5, 618, 333 }, + [2] = { 63, 63.6, 618, 333 }, + [3] = { 61.5, 62.3, 618, 333 }, + [4] = { 60, 61.6, 618, 333 }, + [5] = { 60.2, 61.5, 618, 333 }, + [6] = { 60.4, 61.2, 618, 333 }, + [7] = { 61.1, 60.6, 618, 333 }, + [8] = { 60.6, 60.3, 618, 333 }, + [9] = { 60.1, 59.9, 618, 333 }, + [10] = { 60.8, 59.8, 618, 333 }, + [11] = { 57.8, 59.7, 618, 333 }, + [12] = { 60.3, 58.8, 618, 333 }, + [13] = { 60.3, 58.2, 618, 333 }, + [14] = { 60.4, 58, 618, 333 }, + [15] = { 60.6, 55.8, 618, 333 }, + [16] = { 62.5, 55.7, 618, 333 }, + [17] = { 60.1, 55.3, 618, 333 }, + [18] = { 62.1, 55.2, 618, 333 }, + [19] = { 62.1, 53.9, 618, 333 }, + [20] = { 62.4, 53, 618, 333 }, + [21] = { 62.5, 27.9, 618, 333 }, + [22] = { 57.8, 27, 618, 333 }, + [23] = { 58.4, 26.5, 618, 333 }, + [24] = { 57.8, 25.2, 618, 333 }, + [25] = { 61.4, 24.1, 618, 333 }, + [26] = { 54.9, 23.3, 618, 333 }, + [27] = { 58.6, 21.5, 618, 333 }, + [28] = { 61.2, 21, 618, 333 }, + [29] = { 57.8, 21, 618, 333 }, + [30] = { 54.6, 20.6, 618, 333 }, + [31] = { 59.3, 19.4, 618, 333 }, + [32] = { 59.2, 19, 618, 333 }, + [33] = { 58.4, 17.7, 618, 333 }, + [34] = { 60.1, 15.9, 618, 333 }, + [35] = { 60.1, 14.4, 618, 333 }, + [36] = { 57.1, 13.2, 618, 333 }, + [37] = { 59.1, 11.8, 618, 333 }, + }, + ["lvl"] = "57-59", + }, + [7457] = { + ["coords"] = { + [1] = { 49, 46.8, 618, 333 }, + [2] = { 28.9, 46.5, 618, 333 }, + [3] = { 44.5, 44.5, 618, 333 }, + [4] = { 46.7, 44.4, 618, 333 }, + [5] = { 48, 44.2, 618, 333 }, + [6] = { 33.8, 44, 618, 333 }, + [7] = { 47.5, 43.9, 618, 333 }, + [8] = { 47, 42.9, 618, 333 }, + [9] = { 38.5, 41.2, 618, 333 }, + [10] = { 44.7, 41.1, 618, 333 }, + [11] = { 33.9, 40.4, 618, 333 }, + [12] = { 50.8, 40.1, 618, 333 }, + [13] = { 32.4, 40, 618, 333 }, + [14] = { 40.2, 39.3, 618, 333 }, + [15] = { 30.3, 39.2, 618, 333 }, + [16] = { 43.6, 38.4, 618, 333 }, + [17] = { 45.9, 38.1, 618, 333 }, + [18] = { 51.4, 37.8, 618, 333 }, + [19] = { 39.7, 37.8, 618, 333 }, + [20] = { 47.8, 37.7, 618, 333 }, + [21] = { 43.2, 37.5, 618, 333 }, + [22] = { 39.8, 37.5, 618, 333 }, + [23] = { 45.8, 37.4, 618, 333 }, + [24] = { 54.4, 36.3, 618, 333 }, + [25] = { 41.1, 36.1, 618, 333 }, + [26] = { 53.2, 35.9, 618, 333 }, + [27] = { 44.7, 35.6, 618, 333 }, + [28] = { 45, 35.4, 618, 333 }, + [29] = { 49.1, 34.4, 618, 333 }, + [30] = { 48.6, 34.3, 618, 333 }, + [31] = { 43.4, 33.2, 618, 333 }, + }, + ["lvl"] = "53-55", + }, + [7458] = { + ["coords"] = { + [1] = { 65.8, 46.2, 618, 333 }, + [2] = { 66.7, 46.1, 618, 333 }, + [3] = { 66.4, 45.6, 618, 333 }, + [4] = { 67.1, 45.5, 618, 333 }, + [5] = { 67.6, 45, 618, 333 }, + [6] = { 65.7, 44.7, 618, 333 }, + [7] = { 67, 44.2, 618, 333 }, + [8] = { 67.7, 44.1, 618, 333 }, + [9] = { 66.2, 44, 618, 333 }, + [10] = { 67.2, 43.3, 618, 333 }, + [11] = { 66.6, 43.3, 618, 333 }, + [12] = { 67.6, 42.9, 618, 333 }, + [13] = { 66.2, 42.6, 618, 333 }, + [14] = { 65.2, 42.4, 618, 333 }, + [15] = { 67.5, 41.8, 618, 333 }, + [16] = { 65.8, 41.7, 618, 333 }, + [17] = { 68, 41.5, 618, 333 }, + [18] = { 68.5, 41.4, 618, 333 }, + [19] = { 67.5, 41.2, 618, 333 }, + [20] = { 69.9, 41.2, 618, 333 }, + [21] = { 66.2, 41.2, 618, 333 }, + [22] = { 66.3, 41.1, 618, 333 }, + [23] = { 65.7, 40.4, 618, 333 }, + [24] = { 71.8, 40.2, 618, 333 }, + [25] = { 69.9, 40.2, 618, 333 }, + [26] = { 69.3, 40, 618, 333 }, + [27] = { 64, 39.8, 618, 333 }, + [28] = { 65.3, 39.6, 618, 333 }, + [29] = { 70.8, 39.4, 618, 333 }, + [30] = { 71, 38.8, 618, 333 }, + [31] = { 58.8, 34, 618, 333 }, + [32] = { 52.5, 33.8, 618, 333 }, + [33] = { 57.8, 33.4, 618, 333 }, + [34] = { 55.2, 33.2, 618, 333 }, + [35] = { 60.9, 32.7, 618, 333 }, + [36] = { 52.4, 32.4, 618, 333 }, + [37] = { 61.9, 31.4, 618, 333 }, + [38] = { 61.2, 31.3, 618, 333 }, + [39] = { 54.7, 30.1, 618, 333 }, + [40] = { 57.8, 29, 618, 333 }, + }, + ["lvl"] = "55-56", + }, + [7459] = { + ["coords"] = { + [1] = { 67.6, 46.3, 618, 333 }, + [2] = { 66.8, 44.9, 618, 333 }, + [3] = { 65.9, 43.6, 618, 333 }, + [4] = { 69.7, 42.2, 618, 333 }, + [5] = { 70.1, 42.1, 618, 333 }, + [6] = { 66.7, 41.9, 618, 333 }, + [7] = { 68.8, 41.6, 618, 333 }, + [8] = { 69.7, 41.6, 618, 333 }, + [9] = { 70, 41.2, 618, 333 }, + [10] = { 68.3, 41.1, 618, 333 }, + [11] = { 66.8, 41, 618, 333 }, + [12] = { 68.9, 41, 618, 333 }, + [13] = { 71.2, 40.7, 618, 333 }, + [14] = { 70.3, 40.5, 618, 333 }, + [15] = { 71.3, 40.5, 618, 333 }, + [16] = { 64.8, 40.5, 618, 333 }, + [17] = { 64.9, 40.4, 618, 333 }, + [18] = { 69.9, 39.8, 618, 333 }, + [19] = { 71.7, 39.5, 618, 333 }, + [20] = { 71.6, 39, 618, 333 }, + [21] = { 70.8, 38.8, 618, 333 }, + [22] = { 70.2, 38.8, 618, 333 }, + [23] = { 71.1, 38.7, 618, 333 }, + [24] = { 70.6, 38.3, 618, 333 }, + [25] = { 70.5, 37.6, 618, 333 }, + [26] = { 70.9, 37.5, 618, 333 }, + }, + ["lvl"] = "56-57", + }, + [7460] = { + ["coords"] = { + [1] = { 67.6, 46.3, 618, 333 }, + [2] = { 66.8, 44.9, 618, 333 }, + [3] = { 65.9, 43.6, 618, 333 }, + [4] = { 69.7, 42.2, 618, 333 }, + [5] = { 70.1, 42.1, 618, 333 }, + [6] = { 66.7, 41.9, 618, 333 }, + [7] = { 68.8, 41.6, 618, 333 }, + [8] = { 69.7, 41.6, 618, 333 }, + [9] = { 70, 41.2, 618, 333 }, + [10] = { 68.3, 41.1, 618, 333 }, + [11] = { 66.8, 41, 618, 333 }, + [12] = { 68.9, 41, 618, 333 }, + [13] = { 71.2, 40.7, 618, 333 }, + [14] = { 70.3, 40.5, 618, 333 }, + [15] = { 71.3, 40.5, 618, 333 }, + [16] = { 64.8, 40.5, 618, 333 }, + [17] = { 64.9, 40.4, 618, 333 }, + [18] = { 69.9, 39.8, 618, 333 }, + [19] = { 71.7, 39.5, 618, 333 }, + [20] = { 71.6, 39, 618, 333 }, + [21] = { 70.8, 38.8, 618, 333 }, + [22] = { 70.2, 38.8, 618, 333 }, + [23] = { 71.1, 38.7, 618, 333 }, + [24] = { 70.6, 38.3, 618, 333 }, + [25] = { 70.5, 37.6, 618, 333 }, + [26] = { 70.9, 37.5, 618, 333 }, + }, + ["lvl"] = "57-58", + }, + [7461] = { + ["coords"] = { + [1] = { 57.7, 88.7, 618, 600 }, + [2] = { 58.4, 87.8, 618, 600 }, + [3] = { 52.2, 84.7, 618, 600 }, + [4] = { 55.5, 84.2, 618, 600 }, + [5] = { 52.9, 84.1, 618, 600 }, + [6] = { 59.1, 83.9, 618, 600 }, + [7] = { 61.4, 83.6, 618, 600 }, + [8] = { 60.5, 83.6, 618, 600 }, + [9] = { 60.3, 83.2, 618, 600 }, + [10] = { 56.2, 80.3, 618, 600 }, + [11] = { 55.7, 80, 618, 600 }, + [12] = { 55.6, 79.8, 618, 600 }, + [13] = { 54.9, 79.5, 618, 600 }, + [14] = { 63.6, 79.2, 618, 600 }, + [15] = { 64.5, 78.8, 618, 600 }, + [16] = { 60.1, 78.1, 618, 600 }, + [17] = { 59.7, 76.6, 618, 600 }, + }, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [7462] = { + ["coords"] = { + [1] = { 52.2, 90.3, 618, 600 }, + [2] = { 52.5, 90.3, 618, 600 }, + [3] = { 52.4, 89.6, 618, 600 }, + [4] = { 52.4, 88.9, 618, 600 }, + [5] = { 57.1, 88.7, 618, 600 }, + [6] = { 58.5, 88.3, 618, 600 }, + [7] = { 57, 88, 618, 600 }, + [8] = { 57.8, 87.6, 618, 600 }, + [9] = { 59.3, 87.1, 618, 600 }, + [10] = { 58.1, 86.9, 618, 600 }, + [11] = { 56.8, 86.3, 618, 600 }, + [12] = { 56.5, 84.8, 618, 600 }, + [13] = { 53.4, 84.8, 618, 600 }, + [14] = { 61.6, 84.4, 618, 600 }, + [15] = { 58.4, 83.3, 618, 600 }, + [16] = { 60.7, 82.6, 618, 600 }, + [17] = { 64.2, 80.1, 618, 600 }, + [18] = { 55.7, 79.3, 618, 600 }, + [19] = { 55.4, 79.1, 618, 600 }, + [20] = { 56.7, 79, 618, 600 }, + [21] = { 58.9, 77.4, 618, 600 }, + }, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [7463] = { + ["coords"] = { + [1] = { 51.9, 89.8, 618, 600 }, + [2] = { 50.9, 88.2, 618, 600 }, + [3] = { 59.2, 88.1, 618, 600 }, + [4] = { 57.4, 86.7, 618, 600 }, + [5] = { 53.2, 85.6, 618, 600 }, + [6] = { 52.4, 85.5, 618, 600 }, + [7] = { 52.4, 85, 618, 600 }, + [8] = { 62.3, 83.6, 618, 600 }, + [9] = { 60.4, 83.2, 618, 600 }, + [10] = { 57.7, 79.8, 618, 600 }, + [11] = { 64.9, 79.7, 618, 600 }, + [12] = { 61, 79.7, 618, 600 }, + [13] = { 56.2, 79, 618, 600 }, + [14] = { 60.6, 78.5, 618, 600 }, + [15] = { 60.5, 78.5, 618, 600 }, + [16] = { 59.8, 75.2, 618, 600 }, + [17] = { 59.4, 75.1, 618, 600 }, + }, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [7464] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "38", + }, + [7465] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "51", + }, + [7466] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "56", + }, + [7467] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "34", + }, + [7468] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "57", + }, + [7469] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [7483] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "48", + }, + [7484] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "60", + }, + [7485] = { + ["coords"] = { + [1] = { 32.2, 29.3, 33, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [7486] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "43", + }, + [7487] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [7488] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "40", + }, + [7489] = { + ["coords"] = { + [1] = { 45.9, 43.3, 130, 275 }, + [2] = { 45.1, 43.1, 130, 275 }, + [3] = { 46.5, 42, 130, 275 }, + [4] = { 46.2, 40.8, 130, 275 }, + [5] = { 44.8, 40.2, 130, 275 }, + [6] = { 44.2, 38.3, 130, 275 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [7503] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [7504] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [7505] = { + ["coords"] = { + [1] = { 50.6, 14.2, 4, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [7506] = { + ["coords"] = { + [1] = { 50.6, 14.3, 4, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "53", + }, + [7523] = { + ["coords"] = { + [1] = { 51.2, 46.9, 618, 333 }, + [2] = { 50.9, 46.7, 618, 333 }, + [3] = { 51.1, 46.1, 618, 333 }, + [4] = { 51.7, 46, 618, 333 }, + [5] = { 51.2, 45.7, 618, 333 }, + [6] = { 50.7, 45.4, 618, 333 }, + [7] = { 51.9, 44.9, 618, 333 }, + [8] = { 55.8, 44.7, 618, 333 }, + [9] = { 56.8, 44.7, 618, 333 }, + [10] = { 52.2, 44.6, 618, 333 }, + [11] = { 51.7, 44.6, 618, 333 }, + [12] = { 53.7, 44.3, 618, 333 }, + [13] = { 53.6, 44.1, 618, 333 }, + [14] = { 53.1, 44.1, 618, 333 }, + [15] = { 55.9, 44, 618, 333 }, + [16] = { 52.1, 44, 618, 333 }, + [17] = { 55.5, 44, 618, 333 }, + [18] = { 56.4, 44, 618, 333 }, + [19] = { 54.5, 43.9, 618, 333 }, + [20] = { 53.6, 43.5, 618, 333 }, + [21] = { 55.3, 43.3, 618, 333 }, + [22] = { 56.5, 43.2, 618, 333 }, + [23] = { 55.9, 43.2, 618, 333 }, + [24] = { 56.7, 43, 618, 333 }, + [25] = { 50.3, 42.7, 618, 333 }, + [26] = { 53.5, 42.5, 618, 333 }, + [27] = { 50.6, 42.5, 618, 333 }, + [28] = { 56.3, 42.5, 618, 333 }, + [29] = { 56.9, 42.5, 618, 333 }, + [30] = { 53.5, 42.1, 618, 333 }, + [31] = { 50.7, 42, 618, 333 }, + [32] = { 52.1, 41.8, 618, 333 }, + [33] = { 54.1, 41.8, 618, 333 }, + [34] = { 52.6, 41.4, 618, 333 }, + [35] = { 50.2, 41.3, 618, 333 }, + [36] = { 53.1, 41.2, 618, 333 }, + [37] = { 51.7, 41, 618, 333 }, + [38] = { 53.5, 40.5, 618, 333 }, + [39] = { 52.4, 40.5, 618, 333 }, + [40] = { 52, 40.4, 618, 333 }, + [41] = { 52.5, 39.8, 618, 333 }, + [42] = { 53.5, 39.8, 618, 333 }, + }, + ["lvl"] = "54-55", + }, + [7524] = { + ["coords"] = { + [1] = { 51.2, 46.9, 618, 333 }, + [2] = { 50.9, 46.7, 618, 333 }, + [3] = { 51.1, 46.1, 618, 333 }, + [4] = { 51.7, 46, 618, 333 }, + [5] = { 51.2, 45.7, 618, 333 }, + [6] = { 50.7, 45.4, 618, 333 }, + [7] = { 51.9, 44.9, 618, 333 }, + [8] = { 55.8, 44.7, 618, 333 }, + [9] = { 56.8, 44.7, 618, 333 }, + [10] = { 52.2, 44.6, 618, 333 }, + [11] = { 51.7, 44.6, 618, 333 }, + [12] = { 53.7, 44.3, 618, 333 }, + [13] = { 53.6, 44.1, 618, 333 }, + [14] = { 53.1, 44.1, 618, 333 }, + [15] = { 55.9, 44, 618, 333 }, + [16] = { 52.1, 44, 618, 333 }, + [17] = { 55.5, 44, 618, 333 }, + [18] = { 56.4, 44, 618, 333 }, + [19] = { 54.5, 43.9, 618, 333 }, + [20] = { 53.6, 43.5, 618, 333 }, + [21] = { 55.3, 43.3, 618, 333 }, + [22] = { 56.5, 43.2, 618, 333 }, + [23] = { 55.9, 43.2, 618, 333 }, + [24] = { 56.7, 43, 618, 333 }, + [25] = { 50.3, 42.7, 618, 333 }, + [26] = { 53.5, 42.5, 618, 333 }, + [27] = { 50.6, 42.5, 618, 333 }, + [28] = { 56.3, 42.5, 618, 333 }, + [29] = { 56.9, 42.5, 618, 333 }, + [30] = { 53.5, 42.1, 618, 333 }, + [31] = { 50.7, 42, 618, 333 }, + [32] = { 52.1, 41.8, 618, 333 }, + [33] = { 54.1, 41.8, 618, 333 }, + [34] = { 52.6, 41.4, 618, 333 }, + [35] = { 50.2, 41.3, 618, 333 }, + [36] = { 53.1, 41.2, 618, 333 }, + [37] = { 51.7, 41, 618, 333 }, + [38] = { 53.5, 40.5, 618, 333 }, + [39] = { 52.4, 40.5, 618, 333 }, + [40] = { 52, 40.4, 618, 333 }, + [41] = { 52.5, 39.8, 618, 333 }, + [42] = { 53.5, 39.8, 618, 333 }, + }, + ["lvl"] = "55-56", + }, + [7525] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [7526] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [7527] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "43", + }, + [7528] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [7543] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [7544] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [7545] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [7546] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [7547] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [7548] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [7549] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [7550] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [7551] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [7552] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [7553] = { + ["coords"] = { + [1] = { 31.6, 56.7, 141, 300 }, + [2] = { 69.2, 46.8, 1657, 300 }, + }, + ["lvl"] = "1", + }, + [7554] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [7555] = { + ["coords"] = { + [1] = { 31.7, 56.6, 141, 300 }, + [2] = { 69.8, 46.7, 1657, 300 }, + }, + ["lvl"] = "1", + }, + [7556] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [7558] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [7559] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [7560] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [7561] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [7562] = { + ["coords"] = { + [1] = { 41.4, 8, 14, 180 }, + [2] = { 33.7, 80, 1637, 180 }, + }, + ["lvl"] = "1", + }, + [7563] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [7564] = { + ["coords"] = { + [1] = { 51.8, 28.7, 440, 300 }, + }, + ["lvl"] = "40", + }, + [7565] = { + ["coords"] = { + [1] = { 41.4, 8.1, 14, 180 }, + [2] = { 33.7, 80.4, 1637, 180 }, + }, + ["lvl"] = "1", + }, + [7566] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [7567] = { + ["coords"] = { + [1] = { 41.5, 8.1, 14, 180 }, + [2] = { 33.8, 80.3, 1637, 180 }, + }, + ["lvl"] = "1", + }, + [7568] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [7569] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [7570] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [7572] = { + ["coords"] = { + [1] = { 34.3, 66.1, 8, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [7583] = { + ["coords"] = { + [1] = { 51.1, 26.9, 440, 300 }, + }, + ["lvl"] = "30", + }, + [7584] = { + ["coords"] = { + [1] = { 57.4, 73.3, 357, 300 }, + [2] = { 73.5, 54.5, 357, 300 }, + [3] = { 54, 47.2, 357, 300 }, + [4] = { 73.9, 38.8, 357, 300 }, + [5] = { 44, 23, 357, 300 }, + }, + ["lvl"] = "44-46", + }, + [7603] = { + ["coords"] = {}, + ["lvl"] = "28-29", + }, + [7604] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "45", + ["rnk"] = "1", + }, + [7605] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "44", + ["rnk"] = "1", + }, + [7606] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "44", + ["rnk"] = "1", + }, + [7607] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "43", + ["rnk"] = "1", + }, + [7608] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "44", + ["rnk"] = "1", + }, + [7623] = { + ["coords"] = { + [1] = { 47.8, 54.9, 8, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [7624] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [7643] = { + ["coords"] = { + [1] = { 45, 57.4, 8, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [7663] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "40", + }, + [7664] = { + ["coords"] = { + [1] = { 47.8, 29.9, 4, 0 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [7665] = { + ["coords"] = { + [1] = { 42.6, 13, 4, 900 }, + }, + ["lvl"] = "58", + ["rnk"] = "1", + }, + [7666] = { + ["coords"] = { + [1] = { 66.7, 29.2, 4, 900 }, + }, + ["lvl"] = "58", + ["rnk"] = "1", + }, + [7667] = { + ["coords"] = { + [1] = { 40.8, 30, 4, 900 }, + }, + ["lvl"] = "59", + ["rnk"] = "1", + }, + [7668] = { + ["coords"] = { + [1] = { 53.3, 58.8, 4, 300 }, + [2] = { 51.8, 57.1, 4, 300 }, + [3] = { 62.8, 56.8, 4, 300 }, + [4] = { 63.1, 55.7, 4, 300 }, + [5] = { 54.1, 52.5, 4, 300 }, + [6] = { 61.8, 51.2, 4, 300 }, + [7] = { 55, 48.5, 4, 300 }, + }, + ["lvl"] = "57", + }, + [7669] = { + ["coords"] = { + [1] = { 49.4, 43.6, 4, 300 }, + [2] = { 41.2, 14.4, 4, 300 }, + [3] = { 43.4, 10.6, 4, 300 }, + [4] = { 20.6, 77.4, 8, 300 }, + }, + ["lvl"] = "53-54", + }, + [7670] = { + ["coords"] = { + [1] = { 64.3, 46.8, 4, 300 }, + [2] = { 63.4, 40.9, 4, 300 }, + [3] = { 64.4, 34.2, 4, 300 }, + }, + ["lvl"] = "54-55", + }, + [7671] = { + ["coords"] = { + [1] = { 43.3, 40.7, 4, 300 }, + [2] = { 41, 40.1, 4, 300 }, + [3] = { 38.2, 33.9, 4, 300 }, + }, + ["lvl"] = "55-56", + }, + [7683] = { + ["coords"] = { + [1] = { 58.6, 54.7, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [7684] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [7686] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [7687] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [7689] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [7690] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [7703] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [7704] = { + ["coords"] = { + [1] = { 55.3, 75.4, 14, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [7706] = { + ["coords"] = { + [1] = { 55.3, 75.3, 14, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [7707] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [7708] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [7709] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [7710] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [7711] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [7712] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [7713] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [7714] = { + ["coords"] = { + [1] = { 45.6, 59, 17, 275 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [7724] = { + ["coords"] = { + [1] = { 50.2, 27.5, 440, 300 }, + }, + ["lvl"] = "44", + }, + [7725] = { + ["coords"] = { + [1] = { 66.4, 48.2, 357, 300 }, + [2] = { 66.3, 47.9, 357, 300 }, + [3] = { 68.9, 47.9, 357, 300 }, + [4] = { 65.9, 47.8, 357, 300 }, + [5] = { 66.2, 47.5, 357, 300 }, + [6] = { 65.9, 47.4, 357, 300 }, + [7] = { 68.8, 47.3, 357, 300 }, + [8] = { 67, 47.3, 357, 300 }, + [9] = { 66.7, 47, 357, 300 }, + [10] = { 68.8, 47, 357, 300 }, + [11] = { 68.6, 46.9, 357, 300 }, + [12] = { 66.7, 46.8, 357, 300 }, + [13] = { 66.1, 46.7, 357, 300 }, + [14] = { 66.9, 46.7, 357, 300 }, + [15] = { 66.6, 46.7, 357, 300 }, + [16] = { 67.4, 46.5, 357, 300 }, + [17] = { 66.6, 46.4, 357, 300 }, + [18] = { 67.2, 46.4, 357, 300 }, + [19] = { 67.8, 46.4, 357, 300 }, + [20] = { 66.5, 46.3, 357, 300 }, + [21] = { 66.8, 46.2, 357, 300 }, + [22] = { 68.1, 46.1, 357, 300 }, + [23] = { 67, 45.9, 357, 300 }, + [24] = { 69, 40.7, 357, 300 }, + [25] = { 69.3, 40.6, 357, 300 }, + [26] = { 69, 40.6, 357, 300 }, + [27] = { 69, 40.2, 357, 300 }, + [28] = { 69, 40.1, 357, 300 }, + [29] = { 69.9, 39.9, 357, 300 }, + [30] = { 68.7, 39.9, 357, 300 }, + [31] = { 69, 39.5, 357, 300 }, + [32] = { 67.3, 39.4, 357, 300 }, + [33] = { 69.5, 39.3, 357, 300 }, + [34] = { 69.7, 39.3, 357, 300 }, + [35] = { 68.7, 39.3, 357, 300 }, + [36] = { 66.7, 39.2, 357, 300 }, + [37] = { 67, 39.2, 357, 300 }, + [38] = { 69.9, 39.1, 357, 300 }, + [39] = { 68.9, 39, 357, 300 }, + [40] = { 69.3, 39, 357, 300 }, + [41] = { 66.4, 38.8, 357, 300 }, + [42] = { 66.6, 38.8, 357, 300 }, + [43] = { 67.1, 38.8, 357, 300 }, + [44] = { 69.6, 38.8, 357, 300 }, + [45] = { 69.8, 38.6, 357, 300 }, + [46] = { 66.4, 38.5, 357, 300 }, + [47] = { 66.7, 38.5, 357, 300 }, + [48] = { 66.9, 38.5, 357, 300 }, + [49] = { 69.9, 38.4, 357, 300 }, + [50] = { 68.9, 38.4, 357, 300 }, + [51] = { 66.8, 38.3, 357, 300 }, + [52] = { 66.6, 38.2, 357, 300 }, + [53] = { 68.8, 37.9, 357, 300 }, + [54] = { 69.9, 37.7, 357, 300 }, + }, + ["lvl"] = "42-43", + }, + [7726] = { + ["coords"] = { + [1] = { 66.4, 48.2, 357, 300 }, + [2] = { 66.3, 47.9, 357, 300 }, + [3] = { 68.9, 47.9, 357, 300 }, + [4] = { 65.9, 47.8, 357, 300 }, + [5] = { 66.2, 47.5, 357, 300 }, + [6] = { 65.9, 47.4, 357, 300 }, + [7] = { 68.8, 47.3, 357, 300 }, + [8] = { 67, 47.3, 357, 300 }, + [9] = { 66.7, 47, 357, 300 }, + [10] = { 68.8, 47, 357, 300 }, + [11] = { 68.6, 46.9, 357, 300 }, + [12] = { 66.7, 46.8, 357, 300 }, + [13] = { 66.1, 46.7, 357, 300 }, + [14] = { 66.9, 46.7, 357, 300 }, + [15] = { 66.6, 46.7, 357, 300 }, + [16] = { 67.4, 46.5, 357, 300 }, + [17] = { 66.6, 46.4, 357, 300 }, + [18] = { 67.2, 46.4, 357, 300 }, + [19] = { 67.8, 46.4, 357, 300 }, + [20] = { 66.5, 46.3, 357, 300 }, + [21] = { 66.8, 46.2, 357, 300 }, + [22] = { 68.1, 46.1, 357, 300 }, + [23] = { 67, 45.9, 357, 300 }, + [24] = { 69, 40.7, 357, 300 }, + [25] = { 69.3, 40.6, 357, 300 }, + [26] = { 69, 40.6, 357, 300 }, + [27] = { 69, 40.2, 357, 300 }, + [28] = { 69, 40.1, 357, 300 }, + [29] = { 69.9, 39.9, 357, 300 }, + [30] = { 68.7, 39.9, 357, 300 }, + [31] = { 69, 39.5, 357, 300 }, + [32] = { 67.3, 39.4, 357, 300 }, + [33] = { 69.5, 39.3, 357, 300 }, + [34] = { 69.7, 39.3, 357, 300 }, + [35] = { 68.7, 39.3, 357, 300 }, + [36] = { 66.7, 39.2, 357, 300 }, + [37] = { 67, 39.2, 357, 300 }, + [38] = { 69.9, 39.1, 357, 300 }, + [39] = { 68.9, 39, 357, 300 }, + [40] = { 69.3, 39, 357, 300 }, + [41] = { 66.4, 38.8, 357, 300 }, + [42] = { 66.6, 38.8, 357, 300 }, + [43] = { 67.1, 38.8, 357, 300 }, + [44] = { 69.6, 38.8, 357, 300 }, + [45] = { 69.8, 38.6, 357, 300 }, + [46] = { 66.4, 38.5, 357, 300 }, + [47] = { 66.7, 38.5, 357, 300 }, + [48] = { 66.9, 38.5, 357, 300 }, + [49] = { 69.9, 38.4, 357, 300 }, + [50] = { 68.9, 38.4, 357, 300 }, + [51] = { 66.8, 38.3, 357, 300 }, + [52] = { 66.6, 38.2, 357, 300 }, + [53] = { 68.8, 37.9, 357, 300 }, + [54] = { 69.9, 37.7, 357, 300 }, + }, + ["lvl"] = "41-42", + }, + [7727] = { + ["coords"] = { + [1] = { 66.4, 48.2, 357, 300 }, + [2] = { 66.3, 47.9, 357, 300 }, + [3] = { 68.9, 47.9, 357, 300 }, + [4] = { 65.9, 47.8, 357, 300 }, + [5] = { 66.2, 47.5, 357, 300 }, + [6] = { 65.9, 47.4, 357, 300 }, + [7] = { 68.8, 47.3, 357, 300 }, + [8] = { 67, 47.3, 357, 300 }, + [9] = { 66.7, 47, 357, 300 }, + [10] = { 68.8, 47, 357, 300 }, + [11] = { 68.6, 46.9, 357, 300 }, + [12] = { 66.7, 46.8, 357, 300 }, + [13] = { 66.1, 46.7, 357, 300 }, + [14] = { 66.9, 46.7, 357, 300 }, + [15] = { 66.6, 46.7, 357, 300 }, + [16] = { 67.4, 46.5, 357, 300 }, + [17] = { 66.6, 46.4, 357, 300 }, + [18] = { 67.2, 46.4, 357, 300 }, + [19] = { 67.8, 46.4, 357, 300 }, + [20] = { 66.5, 46.3, 357, 300 }, + [21] = { 66.8, 46.2, 357, 300 }, + [22] = { 68.1, 46.1, 357, 300 }, + [23] = { 67, 45.9, 357, 300 }, + [24] = { 69, 40.7, 357, 300 }, + [25] = { 69.3, 40.6, 357, 300 }, + [26] = { 69, 40.6, 357, 300 }, + [27] = { 69, 40.2, 357, 300 }, + [28] = { 69, 40.1, 357, 300 }, + [29] = { 69.9, 39.9, 357, 300 }, + [30] = { 68.7, 39.9, 357, 300 }, + [31] = { 69, 39.5, 357, 300 }, + [32] = { 67.3, 39.4, 357, 300 }, + [33] = { 69.5, 39.3, 357, 300 }, + [34] = { 69.7, 39.3, 357, 300 }, + [35] = { 68.7, 39.3, 357, 300 }, + [36] = { 66.7, 39.2, 357, 300 }, + [37] = { 67, 39.2, 357, 300 }, + [38] = { 69.9, 39.1, 357, 300 }, + [39] = { 68.9, 39, 357, 300 }, + [40] = { 69.3, 39, 357, 300 }, + [41] = { 66.4, 38.8, 357, 300 }, + [42] = { 66.6, 38.8, 357, 300 }, + [43] = { 67.1, 38.8, 357, 300 }, + [44] = { 69.6, 38.8, 357, 300 }, + [45] = { 69.8, 38.6, 357, 300 }, + [46] = { 66.4, 38.5, 357, 300 }, + [47] = { 66.7, 38.5, 357, 300 }, + [48] = { 66.9, 38.5, 357, 300 }, + [49] = { 69.9, 38.4, 357, 300 }, + [50] = { 68.9, 38.4, 357, 300 }, + [51] = { 66.8, 38.3, 357, 300 }, + [52] = { 66.6, 38.2, 357, 300 }, + [53] = { 68.8, 37.9, 357, 300 }, + [54] = { 69.9, 37.7, 357, 300 }, + }, + ["lvl"] = "43-44", + }, + [7728] = { + ["coords"] = { + [1] = { 69.3, 30.8, 4, 900 }, + }, + ["lvl"] = "55", + ["rnk"] = "1", + }, + [7729] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [7730] = { + ["coords"] = { + [1] = { 38.7, 68.8, 406, 300 }, + [2] = { 38.8, 68.2, 406, 300 }, + [3] = { 44.6, 63.3, 406, 300 }, + [4] = { 44.7, 61.4, 406, 300 }, + [5] = { 44.6, 61.3, 406, 300 }, + [6] = { 47.8, 61.2, 406, 300 }, + [7] = { 49.7, 61.2, 406, 300 }, + [8] = { 49.6, 61, 406, 300 }, + [9] = { 49.6, 60.8, 406, 300 }, + [10] = { 44.8, 60.7, 406, 300 }, + [11] = { 47.5, 60.6, 406, 300 }, + [12] = { 46.4, 59.5, 406, 300 }, + [13] = { 46.6, 59.3, 406, 300 }, + [14] = { 47.8, 58.7, 406, 300 }, + [15] = { 45.9, 58.2, 406, 300 }, + [16] = { 46, 58.2, 406, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [7731] = { + ["coords"] = { + [1] = { 47.5, 62.1, 406, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [7732] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [7733] = { + ["coords"] = { + [1] = { 52.5, 27.9, 440, 300 }, + }, + ["lvl"] = "30", + }, + [7734] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [7735] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [7736] = { + ["coords"] = { + [1] = { 31, 43.5, 357, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [7737] = { + ["coords"] = { + [1] = { 74.8, 45.2, 357, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [7738] = { + ["coords"] = {}, + ["lvl"] = "30", + }, + [7739] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [7740] = { + ["coords"] = { + [1] = { 25.9, 64.7, 141, 300 }, + [2] = { 41.8, 85.6, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [7743] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [7744] = { + ["coords"] = { + [1] = { 13.6, 41.8, 47, 350 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [7745] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [7746] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [7747] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [7748] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [7749] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [7750] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [7763] = { + ["coords"] = { + [1] = { 52.4, 26.9, 440, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "48", + }, + [7764] = { + ["coords"] = { + [1] = { 31.8, 45.5, 357, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [7765] = { + ["coords"] = { + [1] = { 42.4, 22, 357, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [7766] = { + ["coords"] = { + [1] = { 69.2, 14.4, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "37", + }, + [7767] = { + ["coords"] = {}, + ["lvl"] = "45-46", + }, + [7768] = { + ["coords"] = {}, + ["lvl"] = "25", + }, + [7769] = { + ["coords"] = {}, + ["lvl"] = "45", + }, + [7770] = { + ["coords"] = { + [1] = { 65.7, 64.2, 440, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "40", + }, + [7771] = { + ["coords"] = { + [1] = { 52.7, 45.9, 440, 300 }, + }, + ["lvl"] = "40", + }, + [7772] = { + ["coords"] = { + [1] = { 49.2, 19.9, 357, 900 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [7773] = { + ["coords"] = { + [1] = { 45.8, 16.5, 357, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [7774] = { + ["coords"] = { + [1] = { 38.2, 10.3, 357, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [7775] = { + ["coords"] = { + [1] = { 45.1, 25.6, 357, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "45", + }, + [7776] = { + ["coords"] = { + [1] = { 76.2, 43.8, 357, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [7777] = { + ["coords"] = { + [1] = { 75.8, 43.6, 357, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [7778] = { + ["coords"] = { + [1] = { 13.3, 43.1, 47, 350 }, + [2] = { 98.6, 1.8, 267, 350 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [7779] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "25", + }, + [7780] = { + ["coords"] = { + [1] = { 30.7, 46.9, 47, 350 }, + }, + ["fac"] = "H", + ["lvl"] = "46", + }, + [7783] = { + ["coords"] = { + [1] = { 60.8, 66.4, 16, 333 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [7784] = { + ["coords"] = { + [1] = { 60.2, 64.7, 440, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "42", + }, + [7785] = { + ["coords"] = {}, + ["lvl"] = "46", + }, + [7786] = { + ["coords"] = {}, + ["lvl"] = "35", + }, + [7787] = { + ["coords"] = {}, + ["lvl"] = "43-44", + }, + [7788] = { + ["coords"] = {}, + ["lvl"] = "44-45", + }, + [7789] = { + ["coords"] = {}, + ["lvl"] = "43-45", + ["rnk"] = "1", + }, + [7790] = { + ["coords"] = { + [1] = { 79.2, 22.4, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [7791] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + ["rnk"] = "1", + }, + [7792] = { + ["coords"] = { + [1] = { 80.9, 23.3, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [7793] = { + ["coords"] = { + [1] = { 80.4, 23.5, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "53", + }, + [7794] = { + ["coords"] = { + [1] = { 28.9, 75.4, 33, 300 }, + }, + ["lvl"] = "55", + }, + [7795] = { + ["coords"] = {}, + ["lvl"] = "46", + ["rnk"] = "1", + }, + [7796] = { + ["coords"] = {}, + ["lvl"] = "45-46", + ["rnk"] = "1", + }, + [7797] = { + ["coords"] = {}, + ["lvl"] = "46", + ["rnk"] = "1", + }, + [7798] = { + ["coords"] = { + [1] = { 55.8, 16, 1519, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [7799] = { + ["coords"] = { + [1] = { 52.3, 28.9, 440, 300 }, + }, + ["lvl"] = "45", + }, + [7800] = { + ["coords"] = {}, + ["lvl"] = "34", + ["rnk"] = "1", + }, + [7801] = { + ["coords"] = { + [1] = { 26.7, 48.6, 47, 350 }, + }, + ["fac"] = "AH", + ["lvl"] = "45", + }, + [7802] = { + ["coords"] = { + [1] = { 50.6, 20.5, 33, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [7803] = { + ["coords"] = {}, + ["lvl"] = "46-47", + }, + [7804] = { + ["coords"] = { + [1] = { 51.4, 28.8, 440, 300 }, + }, + ["lvl"] = "55", + }, + [7805] = { + ["coords"] = {}, + ["lvl"] = "45", + }, + [7806] = { + ["coords"] = { + [1] = { 49.4, 37.7, 47, 350 }, + }, + ["fac"] = "AH", + ["lvl"] = "42", + }, + [7807] = { + ["coords"] = { + [1] = { 53.4, 55.7, 357, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "42", + }, + [7808] = { + ["coords"] = {}, + ["lvl"] = "46", + }, + [7809] = { + ["coords"] = {}, + ["lvl"] = "47", + }, + [7823] = { + ["coords"] = { + [1] = { 51, 29.3, 440, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [7824] = { + ["coords"] = { + [1] = { 51.6, 25.4, 440, 600 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [7825] = { + ["coords"] = { + [1] = { 73.1, 32.8, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [7826] = { + ["coords"] = { + [1] = { 67.6, 19.3, 4, 300 }, + }, + ["lvl"] = "55", + }, + [7843] = { + ["coords"] = { + [1] = { 23.7, 39.2, 1, 285 }, + [2] = { 70.6, 38.2, 1, 60 }, + [3] = { 70.8, 38.1, 1, 60 }, + }, + ["fac"] = "A", + ["lvl"] = "24-25", + }, + [7844] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "47", + }, + [7845] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "52", + }, + [7846] = { + ["coords"] = { + [1] = { 53.1, 39.6, 4, 72000 }, + }, + ["lvl"] = "60", + ["rnk"] = "3", + }, + [7847] = { + ["coords"] = { + [1] = { 61.8, 38.2, 440, 300 }, + }, + ["lvl"] = "46", + }, + [7848] = { + ["coords"] = {}, + ["lvl"] = "46", + }, + [7849] = { + ["coords"] = {}, + ["lvl"] = "25", + }, + [7850] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "28", + }, + [7851] = { + ["coords"] = { + [1] = { 64.4, 23.1, 4, 900 }, + [2] = { 64.2, 22.6, 4, 900 }, + [3] = { 64.2, 22.5, 4, 900 }, + [4] = { 65.7, 21.9, 4, 900 }, + [5] = { 65.5, 21.4, 4, 900 }, + [6] = { 65.4, 21.3, 4, 900 }, + [7] = { 67.2, 19.1, 4, 900 }, + [8] = { 67.2, 18.4, 4, 900 }, + [9] = { 65, 17, 4, 900 }, + [10] = { 65, 16.8, 4, 900 }, + [11] = { 63.5, 16.5, 4, 900 }, + [12] = { 63.5, 16.3, 4, 900 }, + [13] = { 65.1, 16.2, 4, 900 }, + [14] = { 63.6, 15.7, 4, 900 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [7852] = { + ["coords"] = { + [1] = { 30.6, 42.7, 357, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [7853] = { + ["coords"] = { + [1] = { 27.6, 77.5, 33, 300 }, + }, + ["lvl"] = "30", + }, + [7854] = { + ["coords"] = { + [1] = { 74.4, 42.9, 357, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "49", + }, + [7855] = { + ["coords"] = { + [1] = { 72.4, 48.6, 440, 300 }, + [2] = { 73.6, 48.4, 440, 300 }, + [3] = { 73.2, 48.4, 440, 300 }, + [4] = { 73.2, 48.3, 440, 300 }, + [5] = { 73.7, 48.3, 440, 300 }, + [6] = { 71.5, 48.1, 440, 300 }, + [7] = { 72.1, 48, 440, 300 }, + [8] = { 72.4, 48, 440, 300 }, + [9] = { 72.7, 48, 440, 300 }, + [10] = { 72.8, 47.9, 440, 300 }, + [11] = { 72.4, 47.4, 440, 300 }, + [12] = { 70.9, 47.3, 440, 300 }, + [13] = { 73.7, 47.3, 440, 300 }, + [14] = { 71.5, 47.3, 440, 300 }, + [15] = { 73, 47.2, 440, 300 }, + [16] = { 72, 47.2, 440, 300 }, + [17] = { 73.9, 46.6, 440, 300 }, + [18] = { 74.4, 46.5, 440, 300 }, + [19] = { 72.9, 46.5, 440, 300 }, + [20] = { 73.4, 46.5, 440, 300 }, + [21] = { 71.5, 46.5, 440, 300 }, + [22] = { 73, 46.2, 440, 300 }, + [23] = { 71.3, 45.9, 440, 300 }, + [24] = { 73.9, 45.9, 440, 300 }, + [25] = { 73.4, 45.9, 440, 300 }, + [26] = { 70.9, 45.8, 440, 300 }, + [27] = { 72, 45.8, 440, 300 }, + [28] = { 71.2, 45.8, 440, 300 }, + [29] = { 76.4, 45.6, 440, 300 }, + [30] = { 71.4, 45.6, 440, 300 }, + [31] = { 76.3, 45.6, 440, 300 }, + [32] = { 75.9, 45.5, 440, 300 }, + [33] = { 76.1, 45.4, 440, 300 }, + [34] = { 72.8, 45.3, 440, 300 }, + [35] = { 76.3, 45.3, 440, 300 }, + [36] = { 73, 45.2, 440, 300 }, + [37] = { 71.9, 45.1, 440, 300 }, + [38] = { 72.4, 45.1, 440, 300 }, + [39] = { 75.7, 45.1, 440, 300 }, + [40] = { 76, 45.1, 440, 300 }, + [41] = { 73.3, 45, 440, 300 }, + [42] = { 71.9, 44.4, 440, 300 }, + [43] = { 72.3, 44.3, 440, 300 }, + [44] = { 72.3, 44.2, 440, 300 }, + [45] = { 71.6, 43.8, 440, 300 }, + [46] = { 72, 43.7, 440, 300 }, + [47] = { 71.3, 43.5, 440, 300 }, + [48] = { 70.9, 43.1, 440, 300 }, + [49] = { 70.5, 43, 440, 300 }, + [50] = { 71.4, 42.9, 440, 300 }, + [51] = { 71, 42.4, 440, 300 }, + }, + ["lvl"] = "44-45", + }, + [7856] = { + ["coords"] = { + [1] = { 76.2, 45.3, 440, 300 }, + [2] = { 72.4, 48.6, 440, 300 }, + [3] = { 73.6, 48.4, 440, 300 }, + [4] = { 73.2, 48.4, 440, 300 }, + [5] = { 73.2, 48.3, 440, 300 }, + [6] = { 73.7, 48.3, 440, 300 }, + [7] = { 71.5, 48.1, 440, 300 }, + [8] = { 72.1, 48, 440, 300 }, + [9] = { 72.4, 48, 440, 300 }, + [10] = { 72.7, 48, 440, 300 }, + [11] = { 72.8, 47.9, 440, 300 }, + [12] = { 72.4, 47.4, 440, 300 }, + [13] = { 70.9, 47.3, 440, 300 }, + [14] = { 73.7, 47.3, 440, 300 }, + [15] = { 71.5, 47.3, 440, 300 }, + [16] = { 73, 47.2, 440, 300 }, + [17] = { 72, 47.2, 440, 300 }, + [18] = { 73.9, 46.6, 440, 300 }, + [19] = { 74.4, 46.5, 440, 300 }, + [20] = { 72.9, 46.5, 440, 300 }, + [21] = { 73.4, 46.5, 440, 300 }, + [22] = { 71.5, 46.5, 440, 300 }, + [23] = { 73, 46.2, 440, 300 }, + [24] = { 71.3, 45.9, 440, 300 }, + [25] = { 73.9, 45.9, 440, 300 }, + [26] = { 73.4, 45.9, 440, 300 }, + [27] = { 70.9, 45.8, 440, 300 }, + [28] = { 72, 45.8, 440, 300 }, + [29] = { 71.2, 45.8, 440, 300 }, + [30] = { 76.4, 45.6, 440, 300 }, + [31] = { 71.4, 45.6, 440, 300 }, + [32] = { 76.3, 45.6, 440, 300 }, + [33] = { 75.9, 45.5, 440, 300 }, + [34] = { 76.1, 45.4, 440, 300 }, + [35] = { 72.8, 45.3, 440, 300 }, + [36] = { 76.3, 45.3, 440, 300 }, + [37] = { 73, 45.2, 440, 300 }, + [38] = { 71.9, 45.1, 440, 300 }, + [39] = { 72.4, 45.1, 440, 300 }, + [40] = { 75.7, 45.1, 440, 300 }, + [41] = { 76, 45.1, 440, 300 }, + [42] = { 73.3, 45, 440, 300 }, + [43] = { 71.9, 44.4, 440, 300 }, + [44] = { 72.3, 44.3, 440, 300 }, + [45] = { 72.3, 44.2, 440, 300 }, + [46] = { 71.6, 43.8, 440, 300 }, + [47] = { 72, 43.7, 440, 300 }, + [48] = { 71.3, 43.5, 440, 300 }, + [49] = { 70.9, 43.1, 440, 300 }, + [50] = { 70.5, 43, 440, 300 }, + [51] = { 71.4, 42.9, 440, 300 }, + [52] = { 71, 42.4, 440, 300 }, + }, + ["lvl"] = "44-45", + }, + [7857] = { + ["coords"] = { + [1] = { 73.8, 48.3, 440, 300 }, + [2] = { 74.8, 48.3, 440, 300 }, + [3] = { 74.6, 48.3, 440, 300 }, + [4] = { 73.8, 48.2, 440, 300 }, + [5] = { 74.6, 48.1, 440, 300 }, + [6] = { 74.8, 48.1, 440, 300 }, + [7] = { 74.7, 48.1, 440, 300 }, + [8] = { 74.2, 48, 440, 300 }, + [9] = { 73.5, 47.9, 440, 300 }, + [10] = { 73, 47.9, 440, 300 }, + [11] = { 74.2, 47.9, 440, 300 }, + [12] = { 74.6, 47.8, 440, 300 }, + [13] = { 72.9, 47.8, 440, 300 }, + [14] = { 74.9, 47.8, 440, 300 }, + [15] = { 74.4, 47.7, 440, 300 }, + [16] = { 74.4, 47.6, 440, 300 }, + [17] = { 74.2, 47.5, 440, 300 }, + [18] = { 74.5, 47.4, 440, 300 }, + [19] = { 73.3, 47.4, 440, 300 }, + [20] = { 74.3, 47.4, 440, 300 }, + [21] = { 73.4, 47.3, 440, 300 }, + [22] = { 73.3, 47.3, 440, 300 }, + [23] = { 74.2, 47.3, 440, 300 }, + [24] = { 74.6, 47.3, 440, 300 }, + [25] = { 74.3, 47.2, 440, 300 }, + [26] = { 74.1, 47.2, 440, 300 }, + [27] = { 74.5, 47.2, 440, 300 }, + [28] = { 74.2, 47.2, 440, 300 }, + [29] = { 74.5, 47, 440, 300 }, + }, + ["lvl"] = "44-45", + }, + [7858] = { + ["coords"] = { + [1] = { 72.8, 48.1, 440, 300 }, + [2] = { 73.3, 47.9, 440, 300 }, + [3] = { 72.7, 47.7, 440, 300 }, + [4] = { 72.5, 47, 440, 300 }, + [5] = { 72.4, 46.9, 440, 300 }, + [6] = { 72.2, 46.8, 440, 300 }, + [7] = { 72.3, 46.8, 440, 300 }, + [8] = { 74.8, 46.7, 440, 300 }, + [9] = { 72.2, 46.7, 440, 300 }, + [10] = { 72.4, 46.6, 440, 300 }, + [11] = { 74.9, 46.6, 440, 300 }, + [12] = { 74.9, 46.1, 440, 300 }, + [13] = { 75.3, 46, 440, 300 }, + [14] = { 75.4, 45.9, 440, 300 }, + [15] = { 76.4, 45.8, 440, 300 }, + [16] = { 74.7, 45.8, 440, 300 }, + [17] = { 74.7, 45.7, 440, 300 }, + [18] = { 75.3, 45.7, 440, 300 }, + [19] = { 75.8, 45.6, 440, 300 }, + [20] = { 76.4, 45.6, 440, 300 }, + [21] = { 76.3, 45.5, 440, 300 }, + [22] = { 75.8, 45.3, 440, 300 }, + [23] = { 75.4, 45.3, 440, 300 }, + [24] = { 75.3, 45.2, 440, 300 }, + [25] = { 76, 45.1, 440, 300 }, + [26] = { 75.7, 45.1, 440, 300 }, + [27] = { 76.1, 45, 440, 300 }, + [28] = { 75.6, 44.9, 440, 300 }, + [29] = { 75.5, 44.8, 440, 300 }, + [30] = { 76.2, 45.3, 440, 300 }, + }, + ["lvl"] = "44-45", + }, + [7863] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [7864] = { + ["coords"] = { + [1] = { 38.8, 60.6, 16, 333 }, + [2] = { 39.1, 55.3, 16, 333 }, + [3] = { 35.2, 51.8, 16, 333 }, + [4] = { 39.4, 50.3, 16, 333 }, + [5] = { 36.3, 48, 16, 333 }, + [6] = { 40.3, 46.1, 16, 333 }, + }, + ["lvl"] = "48-50", + }, + [7865] = { + ["coords"] = { + [1] = { 11, 49.2, 47, 350 }, + [2] = { 12.8, 48.3, 47, 350 }, + [3] = { 11.9, 47.3, 47, 350 }, + [4] = { 11.3, 47.1, 47, 350 }, + [5] = { 12.2, 46.9, 47, 350 }, + [6] = { 15.6, 46.6, 47, 350 }, + [7] = { 14.1, 46.1, 47, 350 }, + [8] = { 14.6, 46, 47, 350 }, + [9] = { 12, 45.9, 47, 350 }, + [10] = { 11.2, 45.6, 47, 350 }, + [11] = { 95.8, 9.2, 267, 350 }, + [12] = { 98, 8.1, 267, 350 }, + [13] = { 96.9, 6.9, 267, 350 }, + [14] = { 96.1, 6.6, 267, 350 }, + [15] = { 97.2, 6.4, 267, 350 }, + [16] = { 99.5, 5.5, 267, 350 }, + [17] = { 97, 5.3, 267, 350 }, + [18] = { 96, 4.9, 267, 350 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [7866] = { + ["coords"] = { + [1] = { 37.6, 65.4, 16, 333 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [7867] = { + ["coords"] = { + [1] = { 62.7, 57.4, 3, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [7868] = { + ["coords"] = { + [1] = { 63.6, 76, 51, 500 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [7869] = { + ["coords"] = { + [1] = { 28.3, 45.1, 45, 400 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [7870] = { + ["coords"] = { + [1] = { 89.4, 46.6, 357, 300 }, + [2] = { 7.7, 19, 400, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [7871] = { + ["coords"] = { + [1] = { 36.5, 34.1, 33, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [7872] = { + ["coords"] = { + [1] = { 47.7, 95.6, 17, 275 }, + [2] = { 48.7, 95.6, 17, 275 }, + [3] = { 48, 94.4, 17, 275 }, + [4] = { 48.3, 92.4, 17, 275 }, + [5] = { 48.1, 92.4, 17, 275 }, + [6] = { 46.8, 92.1, 17, 275 }, + [7] = { 47, 91.8, 17, 275 }, + [8] = { 47.9, 90.7, 17, 275 }, + [9] = { 48.1, 90.3, 17, 275 }, + [10] = { 46.2, 90.2, 17, 275 }, + [11] = { 48.6, 89.9, 17, 275 }, + [12] = { 47.3, 89.8, 17, 275 }, + [13] = { 48, 88.6, 17, 275 }, + [14] = { 45.9, 87.7, 17, 275 }, + [15] = { 46.7, 87.7, 17, 275 }, + [16] = { 40.3, 30, 400, 275 }, + [17] = { 42.6, 29.9, 400, 275 }, + [18] = { 41, 27.3, 400, 275 }, + [19] = { 38.2, 21.9, 400, 275 }, + [20] = { 38.7, 21.2, 400, 275 }, + }, + ["lvl"] = "33-34", + ["rnk"] = "1", + }, + [7873] = { + ["coords"] = { + [1] = { 48.9, 95.6, 17, 275 }, + [2] = { 48.5, 95.5, 17, 275 }, + [3] = { 47.8, 95.2, 17, 275 }, + [4] = { 48.1, 94.9, 17, 275 }, + [5] = { 48, 94.6, 17, 275 }, + [6] = { 48.4, 94.1, 17, 275 }, + [7] = { 48.1, 94, 17, 275 }, + [8] = { 48.6, 93.4, 17, 275 }, + [9] = { 48.1, 93, 17, 275 }, + [10] = { 47.6, 92.8, 17, 275 }, + [11] = { 46.9, 92.7, 17, 275 }, + [12] = { 46.9, 92.1, 17, 275 }, + [13] = { 48.2, 92.1, 17, 275 }, + [14] = { 46.9, 91.7, 17, 275 }, + [15] = { 48.4, 91.7, 17, 275 }, + [16] = { 48.5, 91.7, 17, 275 }, + [17] = { 46.7, 91.6, 17, 275 }, + [18] = { 46.5, 91.3, 17, 275 }, + [19] = { 48.3, 90.9, 17, 275 }, + [20] = { 48.4, 90.6, 17, 275 }, + [21] = { 48, 90.4, 17, 275 }, + [22] = { 46.2, 90.4, 17, 275 }, + [23] = { 48.3, 90.4, 17, 275 }, + [24] = { 48.2, 90.1, 17, 275 }, + [25] = { 46.7, 90.1, 17, 275 }, + [26] = { 47.1, 90.1, 17, 275 }, + [27] = { 45.7, 89.9, 17, 275 }, + [28] = { 47.1, 89.9, 17, 275 }, + [29] = { 48.5, 89.9, 17, 275 }, + [30] = { 47.3, 89.9, 17, 275 }, + [31] = { 48.7, 89.8, 17, 275 }, + [32] = { 46.1, 89.8, 17, 275 }, + [33] = { 46.4, 89.8, 17, 275 }, + [34] = { 48.3, 89.2, 17, 275 }, + [35] = { 47.4, 89.1, 17, 275 }, + [36] = { 47.5, 89.1, 17, 275 }, + [37] = { 48.1, 88.9, 17, 275 }, + [38] = { 47.5, 88.9, 17, 275 }, + [39] = { 47.7, 88.7, 17, 275 }, + [40] = { 47.2, 88.6, 17, 275 }, + [41] = { 47.9, 88.5, 17, 275 }, + [42] = { 47.3, 88.5, 17, 275 }, + [43] = { 47.1, 88.3, 17, 275 }, + [44] = { 46.7, 88.1, 17, 275 }, + [45] = { 45.8, 87.8, 17, 275 }, + [46] = { 46.4, 87.8, 17, 275 }, + [47] = { 46.3, 87.8, 17, 275 }, + [48] = { 46.7, 87.6, 17, 275 }, + [49] = { 46, 87.5, 17, 275 }, + [50] = { 43.1, 30, 400, 275 }, + [51] = { 42.3, 29.7, 400, 275 }, + [52] = { 40.6, 29, 400, 275 }, + [53] = { 41.4, 28.3, 400, 275 }, + [54] = { 41.1, 27.6, 400, 275 }, + [55] = { 42.1, 26.6, 400, 275 }, + [56] = { 41.2, 26.3, 400, 275 }, + [57] = { 40.1, 23.6, 400, 275 }, + [58] = { 38.5, 23.2, 400, 275 }, + [59] = { 38.5, 22, 400, 275 }, + [60] = { 38.6, 21.1, 400, 275 }, + [61] = { 38, 20.7, 400, 275 }, + [62] = { 37.7, 20, 400, 275 }, + }, + ["lvl"] = "33-34", + ["rnk"] = "1", + }, + [7874] = { + ["coords"] = { + [1] = { 48.6, 95.6, 17, 275 }, + [2] = { 47.6, 95.5, 17, 275 }, + [3] = { 48.6, 95.2, 17, 275 }, + [4] = { 48.5, 94.5, 17, 275 }, + [5] = { 48.1, 94.1, 17, 275 }, + [6] = { 48.4, 93, 17, 275 }, + [7] = { 47.6, 92.9, 17, 275 }, + [8] = { 47.1, 92.7, 17, 275 }, + [9] = { 47.8, 92.7, 17, 275 }, + [10] = { 48.3, 92.5, 17, 275 }, + [11] = { 46.5, 92.3, 17, 275 }, + [12] = { 48.1, 92.2, 17, 275 }, + [13] = { 48.3, 92.2, 17, 275 }, + [14] = { 47.1, 91.7, 17, 275 }, + [15] = { 48.7, 91.4, 17, 275 }, + [16] = { 46.2, 91, 17, 275 }, + [17] = { 46.5, 90.7, 17, 275 }, + [18] = { 48.2, 90.7, 17, 275 }, + [19] = { 47.8, 90.6, 17, 275 }, + [20] = { 45.9, 90.3, 17, 275 }, + [21] = { 46.2, 90.3, 17, 275 }, + [22] = { 48.3, 89.8, 17, 275 }, + [23] = { 48.6, 89.7, 17, 275 }, + [24] = { 46.1, 87.7, 17, 275 }, + [25] = { 45.8, 87.6, 17, 275 }, + [26] = { 42.4, 30, 400, 275 }, + [27] = { 40.1, 29.7, 400, 275 }, + [28] = { 42.6, 29, 400, 275 }, + [29] = { 42.2, 27.6, 400, 275 }, + [30] = { 41.3, 26.6, 400, 275 }, + [31] = { 40.1, 23.8, 400, 275 }, + [32] = { 39.1, 23.4, 400, 275 }, + [33] = { 37.5, 22.3, 400, 275 }, + [34] = { 38.9, 21.1, 400, 275 }, + [35] = { 37.1, 19.4, 400, 275 }, + [36] = { 36.2, 17.9, 400, 275 }, + }, + ["lvl"] = "33-34", + ["rnk"] = "1", + }, + [7875] = { + ["coords"] = { + [1] = { 74.9, 42.5, 357, 600 }, + }, + ["fac"] = "H", + ["lvl"] = "57", + ["rnk"] = "1", + }, + [7876] = { + ["coords"] = { + [1] = { 51.6, 26.8, 440, 300 }, + }, + ["lvl"] = "45", + }, + [7877] = { + ["coords"] = { + [1] = { 30.4, 46.2, 357, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "57", + }, + [7878] = { + ["coords"] = { + [1] = { 30.1, 45.1, 357, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [7879] = { + ["coords"] = { + [1] = { 32.4, 43.8, 357, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [7880] = { + ["coords"] = { + [1] = { 31.9, 45.1, 357, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [7881] = { + ["coords"] = { + [1] = { 67.1, 24, 440, 300 }, + }, + ["lvl"] = "30", + }, + [7882] = { + ["coords"] = { + [1] = { 67.1, 23.9, 440, 300 }, + }, + ["lvl"] = "51", + }, + [7883] = { + ["coords"] = { + [1] = { 73.4, 47.1, 440, 300 }, + }, + ["lvl"] = "45", + }, + [7884] = { + ["coords"] = { + [1] = { 14.8, 44.6, 47, 350 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [7885] = { + ["coords"] = { + [1] = { 66.2, 92, 16, 333 }, + [2] = { 65.4, 91.7, 16, 333 }, + [3] = { 67.8, 91.6, 16, 333 }, + [4] = { 66.6, 91.5, 16, 333 }, + [5] = { 66, 91.4, 16, 333 }, + [6] = { 69.2, 91.4, 16, 333 }, + [7] = { 67.2, 90.6, 16, 333 }, + [8] = { 69.8, 90.5, 16, 333 }, + [9] = { 71, 90.4, 16, 333 }, + [10] = { 70.5, 89.7, 16, 333 }, + [11] = { 71.2, 89.6, 16, 333 }, + [12] = { 70.6, 89.5, 16, 333 }, + [13] = { 66.5, 89.3, 16, 333 }, + [14] = { 70.5, 87.5, 16, 333 }, + [15] = { 71.8, 85.6, 16, 333 }, + [16] = { 70.3, 85.2, 16, 333 }, + [17] = { 69.8, 84.4, 16, 333 }, + [18] = { 67.9, 83.5, 16, 333 }, + [19] = { 69.2, 83.5, 16, 333 }, + [20] = { 72, 83.4, 16, 333 }, + [21] = { 68.6, 82.8, 16, 333 }, + [22] = { 67.1, 82.7, 16, 333 }, + [23] = { 69.8, 82.5, 16, 333 }, + [24] = { 70.5, 81.4, 16, 333 }, + [25] = { 69.8, 80.7, 16, 333 }, + [26] = { 70.2, 80.6, 16, 333 }, + [27] = { 69.8, 80.4, 16, 333 }, + [28] = { 66.2, 77.8, 16, 333 }, + [29] = { 66, 77.1, 16, 333 }, + [30] = { 65.7, 77, 16, 333 }, + }, + ["lvl"] = "53-54", + }, + [7886] = { + ["coords"] = { + [1] = { 66.2, 92, 16, 333 }, + [2] = { 65.4, 91.7, 16, 333 }, + [3] = { 67.8, 91.6, 16, 333 }, + [4] = { 66.6, 91.5, 16, 333 }, + [5] = { 66, 91.4, 16, 333 }, + [6] = { 69.2, 91.4, 16, 333 }, + [7] = { 67.2, 90.6, 16, 333 }, + [8] = { 69.8, 90.5, 16, 333 }, + [9] = { 71, 90.4, 16, 333 }, + [10] = { 70.5, 89.7, 16, 333 }, + [11] = { 71.2, 89.6, 16, 333 }, + [12] = { 70.6, 89.5, 16, 333 }, + [13] = { 66.5, 89.3, 16, 333 }, + [14] = { 70.5, 87.5, 16, 333 }, + [15] = { 71.8, 85.6, 16, 333 }, + [16] = { 70.3, 85.2, 16, 333 }, + [17] = { 69.8, 84.4, 16, 333 }, + [18] = { 67.9, 83.5, 16, 333 }, + [19] = { 69.2, 83.5, 16, 333 }, + [20] = { 72, 83.4, 16, 333 }, + [21] = { 68.6, 82.8, 16, 333 }, + [22] = { 67.1, 82.7, 16, 333 }, + [23] = { 69.8, 82.5, 16, 333 }, + [24] = { 70.5, 81.4, 16, 333 }, + [25] = { 69.8, 80.7, 16, 333 }, + [26] = { 70.2, 80.6, 16, 333 }, + [27] = { 69.8, 80.4, 16, 333 }, + [28] = { 66.2, 77.8, 16, 333 }, + [29] = { 66, 77.1, 16, 333 }, + [30] = { 65.7, 77, 16, 333 }, + }, + ["lvl"] = "54-55", + }, + [7895] = { + ["coords"] = { + [1] = { 47.7, 90.7, 17, 37800 }, + [2] = { 45.8, 87.7, 17, 37800 }, + }, + ["lvl"] = "36", + ["rnk"] = "2", + }, + [7896] = { + ["coords"] = {}, + ["lvl"] = "44-45", + }, + [7897] = { + ["coords"] = {}, + ["lvl"] = "20", + }, + [7898] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [7899] = { + ["coords"] = {}, + ["lvl"] = "44-45", + }, + [7900] = { + ["coords"] = { + [1] = { 31.8, 45.6, 357, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [7901] = { + ["coords"] = {}, + ["lvl"] = "44-45", + }, + [7902] = { + ["coords"] = {}, + ["lvl"] = "44-45", + }, + [7903] = { + ["coords"] = { + [1] = { 31.8, 45.6, 357, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [7904] = { + ["coords"] = { + [1] = { 31.8, 45.6, 357, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [7906] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "22", + }, + [7907] = { + ["coords"] = { + [1] = { 55.4, 92.2, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [7915] = { + ["coords"] = {}, + ["lvl"] = "30", + }, + [7916] = { + ["coords"] = { + [1] = { 55.5, 92, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [7917] = { + ["coords"] = { + [1] = { 40.6, 31, 1519, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [7918] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [7919] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "43-45", + }, + [7935] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "10", + }, + [7936] = { + ["coords"] = { + [1] = { 64.7, 3.7, 1537, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [7937] = { + ["coords"] = { + [1] = { 68.8, 49, 1537, 6300 }, + }, + ["fac"] = "A", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [7938] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [7939] = { + ["coords"] = { + [1] = { 31.4, 46.7, 357, 300 }, + [2] = { 32.1, 46.3, 357, 300 }, + [3] = { 30.6, 45.9, 357, 300 }, + [4] = { 31.5, 45.9, 357, 300 }, + [5] = { 31.9, 44.8, 357, 300 }, + [6] = { 30.8, 44.8, 357, 300 }, + [7] = { 32.3, 44.5, 357, 300 }, + [8] = { 31, 44, 357, 300 }, + [9] = { 29.8, 43.8, 357, 300 }, + [10] = { 32.2, 43.7, 357, 300 }, + [11] = { 32.3, 43.5, 357, 300 }, + [12] = { 31.6, 43.4, 357, 300 }, + [13] = { 30, 42.9, 357, 300 }, + [14] = { 32.2, 42.8, 357, 300 }, + [15] = { 31.7, 42.6, 357, 300 }, + [16] = { 31.1, 42.6, 357, 300 }, + [17] = { 31.1, 40.8, 357, 300 }, + [18] = { 30.9, 40.8, 357, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [7940] = { + ["coords"] = { + [1] = { 51.5, 33.3, 493, 300 }, + }, + ["lvl"] = "53", + }, + [7941] = { + ["coords"] = { + [1] = { 31, 43.1, 357, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "54", + }, + [7942] = { + ["coords"] = { + [1] = { 30.6, 43.4, 357, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "53", + }, + [7943] = { + ["coords"] = { + [1] = { 31, 46.3, 357, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "49", + }, + [7944] = { + ["coords"] = { + [1] = { 69.5, 50.3, 1537, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "57", + }, + [7945] = { + ["coords"] = { + [1] = { 31.1, 46.1, 357, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "49", + }, + [7946] = { + ["coords"] = { + [1] = { 32.3, 41.6, 357, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "52", + }, + [7947] = { + ["coords"] = { + [1] = { 31.3, 43.5, 357, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "52", + }, + [7948] = { + ["coords"] = { + [1] = { 32.6, 43.8, 357, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "52", + }, + [7949] = { + ["coords"] = { + [1] = { 31.5, 44.3, 357, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "51", + }, + [7950] = { + ["coords"] = { + [1] = { 69.8, 48.1, 1537, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "57", + }, + [7951] = { + ["coords"] = { + [1] = { 69.3, 30.2, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [7952] = { + ["coords"] = { + [1] = { 55.2, 75.6, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [7953] = { + ["coords"] = { + [1] = { 55.3, 75.5, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [7954] = { + ["coords"] = { + [1] = { 49.1, 48.1, 1, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [7955] = { + ["coords"] = { + [1] = { 49.1, 48, 1, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [7956] = { + ["coords"] = { + [1] = { 65.9, 45.7, 357, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "42", + }, + [7957] = { + ["coords"] = { + [1] = { 65.9, 45.6, 357, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "36", + }, + [7975] = { + ["coords"] = { + [1] = { 38.1, 81.8, 215, 250 }, + [2] = { 37.7, 81.5, 215, 250 }, + [3] = { 38.3, 81.3, 215, 250 }, + [4] = { 36.7, 80.9, 215, 250 }, + [5] = { 37.9, 80.7, 215, 250 }, + [6] = { 37.1, 80, 215, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [7976] = { + ["coords"] = { + [1] = { 61.6, 89.4, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [7977] = { + ["coords"] = { + [1] = { 80.4, 58.2, 47, 350 }, + }, + ["lvl"] = "48", + ["rnk"] = "1", + }, + [7978] = { + ["coords"] = { + [1] = { 26.8, 27.7, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [7980] = { + ["coords"] = { + [1] = { 60.9, 59.1, 85, 300 }, + [2] = { 60.8, 59.1, 85, 300 }, + [3] = { 61, 58.5, 85, 300 }, + [4] = { 60.9, 58.5, 85, 300 }, + [5] = { 38.7, 56.1, 85, 300 }, + [6] = { 39, 55.8, 85, 300 }, + [7] = { 38.1, 55.8, 85, 300 }, + [8] = { 38.2, 55.6, 85, 300 }, + [9] = { 38.9, 55.5, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [7995] = { + ["coords"] = { + [1] = { 83.3, 17, 45, 350 }, + [2] = { 59.5, 78.3, 47, 350 }, + }, + ["lvl"] = "51", + ["rnk"] = "1", + }, + [7996] = { + ["coords"] = { + [1] = { 48.6, 68.2, 47, 350 }, + }, + ["lvl"] = "50", + ["rnk"] = "1", + }, + [7997] = { + ["coords"] = { + [1] = { 66.6, 47, 357, 300 }, + [2] = { 66.5, 47, 357, 300 }, + [3] = { 66.6, 46.9, 357, 300 }, + [4] = { 66.5, 46.9, 357, 300 }, + [5] = { 66.5, 46.8, 357, 300 }, + [6] = { 66.6, 46.8, 357, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "42-43", + }, + [7998] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "27", + ["rnk"] = "1", + }, + [7999] = { + ["coords"] = { + [1] = { 25.3, 63.9, 141, 7200 }, + [2] = { 39.1, 81.6, 1657, 7200 }, + }, + ["fac"] = "A", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [8015] = { + ["coords"] = { + [1] = { 59.1, 60, 331, 300 }, + [2] = { 59.3, 59.1, 331, 300 }, + [3] = { 59.5, 59.1, 331, 300 }, + [4] = { 59.4, 58.9, 331, 300 }, + [5] = { 59, 58.9, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [8016] = { + ["coords"] = { + [1] = { 39.1, 30.3, 17, 275 }, + [2] = { 39.4, 30.1, 17, 275 }, + [3] = { 39.3, 29.9, 17, 275 }, + [4] = { 39.3, 29.7, 17, 275 }, + [5] = { 39.4, 29.5, 17, 275 }, + [6] = { 39.6, 29.5, 17, 275 }, + [7] = { 39.6, 29.1, 17, 275 }, + [8] = { 48.2, 6.2, 17, 275 }, + [9] = { 48.4, 5.6, 17, 275 }, + [10] = { 47.7, 5.5, 17, 275 }, + [11] = { 69, 89.5, 331, 275 }, + [12] = { 67.9, 89.3, 331, 275 }, + [13] = { 67.7, 89.1, 331, 275 }, + [14] = { 68.4, 89, 331, 275 }, + [15] = { 67.9, 88.7, 331, 275 }, + [16] = { 68.5, 88.7, 331, 275 }, + [17] = { 68.1, 88.6, 331, 275 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [8017] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "55", + }, + [8018] = { + ["coords"] = { + [1] = { 11.1, 46.2, 47, 600 }, + [2] = { 95.9, 5.5, 267, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [8019] = { + ["coords"] = { + [1] = { 30.2, 43.2, 357, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [8020] = { + ["coords"] = { + [1] = { 75.4, 44.4, 357, 600 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [8021] = { + ["coords"] = { + [1] = { 75.7, 44.3, 357, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [8022] = { + ["coords"] = { + [1] = { 66.9, 19.5, 4, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [8023] = { + ["coords"] = { + [1] = { 53.4, 67.1, 47, 60 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [8024] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "55", + }, + [8025] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "55", + }, + [8026] = { + ["coords"] = { + [1] = { 30, 55.1, 141, 300 }, + [2] = { 61.8, 39.2, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [8035] = { + ["coords"] = {}, + ["lvl"] = "32-33", + }, + [8055] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "40", + }, + [8075] = { + ["coords"] = { + [1] = { 40.6, 8.6, 357, 0 }, + }, + ["lvl"] = "50", + ["rnk"] = "1", + }, + [8095] = { + ["coords"] = {}, + ["lvl"] = "45-47", + ["rnk"] = "1", + }, + [8096] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "40", + }, + [8115] = { + ["coords"] = { + [1] = { 74.4, 43.4, 357, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [8116] = { + ["coords"] = { + [1] = { 27.6, 77.7, 33, 120 }, + }, + ["lvl"] = "46", + }, + [8117] = { + ["coords"] = { + [1] = { 31.5, 62, 1537, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "38", + }, + [8118] = { + ["coords"] = { + [1] = { 55.2, 59, 1519, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "28-30", + }, + [8119] = { + ["coords"] = { + [1] = { 62.7, 37.4, 17, 275 }, + }, + ["lvl"] = "45", + }, + [8120] = { + ["coords"] = {}, + ["lvl"] = "47", + ["rnk"] = "1", + }, + [8121] = { + ["coords"] = { + [1] = { 61.7, 38.3, 17, 300 }, + }, + ["lvl"] = "24", + }, + [8122] = { + ["coords"] = { + [1] = { 74.8, 27.7, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "24", + }, + [8123] = { + ["coords"] = { + [1] = { 26.5, 76.5, 33, 300 }, + }, + ["lvl"] = "55", + }, + [8124] = { + ["coords"] = { + [1] = { 52.4, 28.9, 440, 300 }, + }, + ["lvl"] = "45", + }, + [8125] = { + ["coords"] = { + [1] = { 52.6, 28.1, 440, 300 }, + }, + ["lvl"] = "43", + }, + [8126] = { + ["coords"] = { + [1] = { 52.5, 27.3, 440, 300 }, + }, + ["lvl"] = "55", + }, + [8127] = { + ["coords"] = {}, + ["lvl"] = "48", + ["rnk"] = "1", + }, + [8128] = { + ["coords"] = { + [1] = { 51.1, 28.1, 440, 300 }, + }, + ["lvl"] = "40", + }, + [8129] = { + ["coords"] = { + [1] = { 50.8, 27.7, 440, 300 }, + }, + ["lvl"] = "40", + }, + [8130] = { + ["coords"] = {}, + ["lvl"] = "30-35", + ["rnk"] = "1", + }, + [8131] = { + ["coords"] = { + [1] = { 50.7, 27.5, 440, 300 }, + }, + ["lvl"] = "45", + }, + [8136] = { + ["coords"] = { + [1] = { 28.5, 70.5, 357, 300 }, + }, + ["lvl"] = "47", + }, + [8137] = { + ["coords"] = { + [1] = { 66.6, 22.1, 440, 300 }, + }, + ["lvl"] = "40", + }, + [8138] = { + ["coords"] = {}, + ["lvl"] = "39", + }, + [8139] = { + ["coords"] = { + [1] = { 67, 22, 440, 300 }, + }, + ["lvl"] = "40", + }, + [8140] = { + ["coords"] = { + [1] = { 67.4, 47.4, 15, 360 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [8141] = { + ["coords"] = { + [1] = { 67.9, 48.4, 15, 360 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [8142] = { + ["coords"] = { + [1] = { 76, 42.3, 357, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [8143] = { + ["coords"] = { + [1] = { 75.5, 43.9, 357, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "49", + }, + [8144] = { + ["coords"] = { + [1] = { 74.5, 43, 357, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "51", + }, + [8145] = { + ["coords"] = { + [1] = { 74.5, 42.7, 357, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [8146] = { + ["coords"] = { + [1] = { 76, 43.3, 357, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [8147] = { + ["coords"] = { + [1] = { 73.6, 46.7, 357, 300 }, + [2] = { 73.4, 46.6, 357, 300 }, + [3] = { 74, 45.4, 357, 300 }, + [4] = { 73.8, 45.2, 357, 300 }, + [5] = { 74.5, 44.7, 357, 300 }, + [6] = { 75.3, 44, 357, 300 }, + [7] = { 74.4, 44, 357, 300 }, + [8] = { 76, 43.8, 357, 300 }, + [9] = { 74.6, 43.7, 357, 300 }, + [10] = { 75.1, 43.4, 357, 300 }, + [11] = { 76.6, 43.3, 357, 300 }, + [12] = { 76.7, 43.1, 357, 300 }, + [13] = { 74.7, 43.1, 357, 300 }, + [14] = { 76, 42.9, 357, 300 }, + [15] = { 78.1, 42.9, 357, 300 }, + [16] = { 74.8, 42.7, 357, 300 }, + [17] = { 78, 42.6, 357, 300 }, + [18] = { 76.2, 42.5, 357, 300 }, + [19] = { 75.8, 41.7, 357, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [8148] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "42", + }, + [8149] = { + ["coords"] = {}, + ["lvl"] = "48", + ["rnk"] = "1", + }, + [8150] = { + ["coords"] = { + [1] = { 66.2, 6.6, 405, 300 }, + [2] = { 40.7, 81.7, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [8151] = { + ["coords"] = { + [1] = { 67.4, 16.2, 405, 300 }, + [2] = { 67.8, 15.7, 405, 300 }, + [3] = { 67.1, 12.6, 405, 300 }, + [4] = { 66.9, 12.6, 405, 300 }, + [5] = { 64.4, 11.1, 405, 300 }, + [6] = { 67.9, 10.3, 405, 300 }, + [7] = { 64.3, 9.7, 405, 300 }, + [8] = { 67.5, 9.4, 405, 300 }, + [9] = { 65.2, 9.4, 405, 300 }, + [10] = { 64.6, 8.6, 405, 300 }, + [11] = { 65.1, 6.6, 405, 300 }, + [12] = { 66, 6, 405, 300 }, + [13] = { 41.6, 87.3, 406, 300 }, + [14] = { 41.3, 87.3, 406, 300 }, + [15] = { 39.1, 85.9, 406, 300 }, + [16] = { 42.3, 85.1, 406, 300 }, + [17] = { 39, 84.6, 406, 300 }, + [18] = { 41.9, 84.4, 406, 300 }, + [19] = { 39.8, 84.3, 406, 300 }, + [20] = { 39.2, 83.6, 406, 300 }, + [21] = { 39.7, 81.7, 406, 300 }, + [22] = { 40.6, 81.2, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [8152] = { + ["coords"] = { + [1] = { 51.2, 53.3, 405, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [8153] = { + ["coords"] = { + [1] = { 55.2, 56.3, 405, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "42", + }, + [8154] = { + ["coords"] = { + [1] = { 56.5, 58.9, 405, 300 }, + [2] = { 55.8, 57.4, 405, 300 }, + [3] = { 55.9, 56.1, 405, 300 }, + [4] = { 55.4, 55, 405, 300 }, + [5] = { 52.7, 53.8, 405, 300 }, + [6] = { 51.6, 53.5, 405, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [8155] = { + ["coords"] = { + [1] = { 3.8, 47.4, 3, 300 }, + [2] = { 6.3, 46.9, 3, 300 }, + [3] = { 4, 46.8, 3, 300 }, + [4] = { 6.3, 46.2, 3, 300 }, + [5] = { 5.6, 44.1, 3, 300 }, + [6] = { 83, 38.7, 51, 300 }, + [7] = { 83.2, 38.1, 51, 300 }, + [8] = { 84.9, 35, 51, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [8156] = { + ["coords"] = {}, + ["lvl"] = "48", + ["rnk"] = "1", + }, + [8157] = { + ["coords"] = { + [1] = { 32.7, 44, 357, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "52", + }, + [8158] = { + ["coords"] = { + [1] = { 76.1, 43.3, 357, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "49", + }, + [8159] = { + ["coords"] = { + [1] = { 74.7, 42.6, 357, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [8160] = { + ["coords"] = { + [1] = { 13.3, 43.4, 47, 350 }, + [2] = { 98.5, 2.2, 267, 350 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [8161] = { + ["coords"] = { + [1] = { 13.4, 44.1, 47, 350 }, + [2] = { 98.7, 3.1, 267, 350 }, + }, + ["fac"] = "A", + ["lvl"] = "49", + }, + [8176] = { + ["coords"] = { + [1] = { 45.5, 51.4, 8, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [8177] = { + ["coords"] = { + [1] = { 45.4, 56.9, 8, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [8178] = { + ["coords"] = { + [1] = { 66.9, 18.2, 4, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "49", + }, + [8179] = { + ["coords"] = {}, + ["lvl"] = "45", + }, + [8196] = { + ["coords"] = { + [1] = { 61.8, 50.4, 440, 600 }, + }, + ["lvl"] = "50", + ["rnk"] = "1", + }, + [8197] = { + ["coords"] = { + [1] = { 64.9, 50.2, 440, 600 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [8198] = { + ["coords"] = { + [1] = { 63.3, 50.3, 440, 600 }, + }, + ["lvl"] = "52", + ["rnk"] = "1", + }, + [8199] = { + ["coords"] = { + [1] = { 38.8, 21.7, 440, 54000 }, + }, + ["lvl"] = "45", + ["rnk"] = "2", + }, + [8200] = { + ["coords"] = { + [1] = { 36.6, 24.6, 440, 54000 }, + }, + ["lvl"] = "46", + ["rnk"] = "2", + }, + [8201] = { + ["coords"] = { + [1] = { 38.7, 55.6, 440, 37800 }, + }, + ["lvl"] = "50", + ["rnk"] = "4", + }, + [8202] = { + ["coords"] = { + [1] = { 41.3, 54.7, 440, 115200 }, + }, + ["lvl"] = "48", + ["rnk"] = "4", + }, + [8203] = { + ["coords"] = { + [1] = { 73.2, 48.7, 440, 18000 }, + }, + ["lvl"] = "47", + ["rnk"] = "4", + }, + [8204] = { + ["coords"] = { + [1] = { 34.1, 44.7, 440, 18000 }, + }, + ["lvl"] = "50", + ["rnk"] = "4", + }, + [8205] = { + ["coords"] = { + [1] = { 56.2, 73.9, 440, 75600 }, + }, + ["lvl"] = "50", + ["rnk"] = "4", + }, + [8206] = { + ["coords"] = {}, + ["lvl"] = "51", + ["rnk"] = "2", + }, + [8207] = { + ["coords"] = { + [1] = { 54.2, 39.9, 440, 75600 }, + }, + ["lvl"] = "46", + ["rnk"] = "4", + }, + [8208] = { + ["coords"] = { + [1] = { 47.4, 25, 440, 115200 }, + }, + ["lvl"] = "43", + ["rnk"] = "4", + }, + [8210] = { + ["coords"] = { + [1] = { 37.1, 45.3, 47, 75600 }, + }, + ["lvl"] = "44", + ["rnk"] = "4", + }, + [8211] = { + ["coords"] = { + [1] = { 11.9, 53.7, 47, 37800 }, + [2] = { 96.9, 14.6, 267, 37800 }, + }, + ["lvl"] = "42", + ["rnk"] = "4", + }, + [8212] = { + ["coords"] = { + [1] = { 58.9, 43.1, 47, 115200 }, + [2] = { 45.8, 39.9, 47, 115200 }, + }, + ["lvl"] = "49", + ["rnk"] = "4", + }, + [8213] = { + ["coords"] = { + [1] = { 81.5, 49.2, 47, 37800 }, + }, + ["lvl"] = "51", + ["rnk"] = "4", + }, + [8214] = { + ["coords"] = { + [1] = { 30.3, 47.9, 47, 18000 }, + }, + ["fac"] = "A", + ["lvl"] = "49", + ["rnk"] = "4", + }, + [8215] = { + ["coords"] = { + [1] = { 70.2, 55.4, 47, 115200 }, + }, + ["lvl"] = "50", + ["rnk"] = "2", + }, + [8216] = { + ["coords"] = { + [1] = { 50.5, 64.1, 47, 18000 }, + }, + ["lvl"] = "48", + ["rnk"] = "4", + }, + [8217] = { + ["coords"] = { + [1] = { 64.4, 77.3, 47, 75600 }, + }, + ["lvl"] = "52", + ["rnk"] = "2", + }, + [8218] = { + ["coords"] = { + [1] = { 32.1, 72.7, 47, 37800 }, + }, + ["lvl"] = "45", + ["rnk"] = "4", + }, + [8219] = { + ["coords"] = { + [1] = { 32.4, 56.9, 47, 18000 }, + }, + ["lvl"] = "43", + ["rnk"] = "4", + }, + [8236] = { + ["coords"] = { + [1] = { 68.4, 48.7, 17, 413 }, + [2] = { 68.2, 48.7, 17, 413 }, + [3] = { 68.6, 48.7, 17, 413 }, + [4] = { 68, 48.7, 17, 413 }, + [5] = { 68.5, 48.7, 17, 413 }, + }, + ["lvl"] = "14-15", + }, + [8256] = { + ["coords"] = { + [1] = { 71.8, 16.1, 1537, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [8257] = { + ["coords"] = {}, + ["lvl"] = "40", + }, + [8276] = { + ["coords"] = { + [1] = { 11.2, 57.1, 47, 350 }, + [2] = { 37.9, 41.3, 47, 350 }, + [3] = { 96, 18.7, 267, 350 }, + }, + ["fac"] = "AH", + ["lvl"] = "40-42", + }, + [8277] = { + ["coords"] = { + [1] = { 61.9, 73.2, 51, 75600 }, + }, + ["lvl"] = "48", + ["rnk"] = "4", + }, + [8278] = { + ["coords"] = { + [1] = { 29.5, 62.4, 51, 37800 }, + }, + ["lvl"] = "50", + ["rnk"] = "4", + }, + [8279] = { + ["coords"] = { + [1] = { 45.9, 67.8, 51, 37800 }, + }, + ["lvl"] = "46", + ["rnk"] = "4", + }, + [8280] = { + ["coords"] = { + [1] = { 58.6, 56.6, 51, 115200 }, + }, + ["lvl"] = "47", + ["rnk"] = "4", + }, + [8281] = { + ["coords"] = { + [1] = { 51.2, 46.8, 51, 75600 }, + }, + ["lvl"] = "49", + ["rnk"] = "4", + }, + [8282] = { + ["coords"] = { + [1] = { 14.5, 37.2, 51, 18000 }, + }, + ["lvl"] = "51", + ["rnk"] = "2", + }, + [8283] = { + ["coords"] = { + [1] = { 42.4, 23.1, 51, 18000 }, + }, + ["lvl"] = "50", + ["rnk"] = "4", + }, + [8284] = { + ["coords"] = { + [1] = { 63.9, 61, 51, 500 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [8296] = { + ["coords"] = { + [1] = { 45.2, 16, 4, 18000 }, + }, + ["lvl"] = "48", + ["rnk"] = "4", + }, + [8297] = { + ["coords"] = { + [1] = { 49.7, 40.5, 4, 75600 }, + }, + ["lvl"] = "56", + ["rnk"] = "4", + }, + [8298] = { + ["coords"] = { + [1] = { 51.3, 53.1, 4, 18000 }, + }, + ["lvl"] = "54", + ["rnk"] = "4", + }, + [8299] = { + ["coords"] = { + [1] = { 61.1, 35.4, 4, 37800 }, + }, + ["lvl"] = "52", + ["rnk"] = "4", + }, + [8300] = { + ["coords"] = { + [1] = { 61.1, 36.6, 4, 37800 }, + }, + ["lvl"] = "51", + ["rnk"] = "4", + }, + [8301] = { + ["coords"] = { + [1] = { 48.3, 38.7, 4, 37800 }, + }, + ["lvl"] = "53", + ["rnk"] = "4", + }, + [8302] = { + ["coords"] = { + [1] = { 44.1, 25, 4, 75600 }, + }, + ["lvl"] = "49", + ["rnk"] = "4", + }, + [8303] = { + ["coords"] = { + [1] = { 56.1, 31.1, 4, 115200 }, + }, + ["lvl"] = "50", + ["rnk"] = "4", + }, + [8304] = { + ["coords"] = { + [1] = { 41.3, 38.7, 4, 18000 }, + }, + ["lvl"] = "57", + ["rnk"] = "4", + }, + [8305] = { + ["coords"] = { + [1] = { 50.2, 37.7, 11, 300 }, + }, + ["lvl"] = "25", + }, + [8306] = { + ["coords"] = { + [1] = { 55.3, 31.8, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "18", + }, + [8307] = { + ["coords"] = { + [1] = { 55.2, 32.1, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "22", + }, + [8308] = { + ["coords"] = { + [1] = { 18, 59.8, 331, 300 }, + [2] = { 52.9, 16.7, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "27", + }, + [8309] = { + ["coords"] = { + [1] = { 84.6, 82.5, 36, 300 }, + [2] = { 82.9, 20.6, 267, 300 }, + }, + ["lvl"] = "50", + }, + [8310] = { + ["coords"] = { + [1] = { 78.1, 49.5, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "37", + }, + [8311] = { + ["coords"] = {}, + ["lvl"] = "45-46", + }, + [8316] = { + ["coords"] = {}, + ["lvl"] = "10", + }, + [8317] = { + ["coords"] = {}, + ["lvl"] = "50-51", + ["rnk"] = "1", + }, + [8318] = { + ["coords"] = {}, + ["lvl"] = "46-47", + }, + [8319] = { + ["coords"] = {}, + ["lvl"] = "49-50", + }, + [8320] = { + ["coords"] = { + [1] = { 21.4, 37.3, 1, 1206 }, + }, + ["lvl"] = "28", + }, + [8321] = { + ["coords"] = {}, + ["lvl"] = "20", + }, + [8322] = { + ["coords"] = {}, + ["lvl"] = "30", + }, + [8323] = { + ["coords"] = {}, + ["lvl"] = "40", + }, + [8324] = { + ["coords"] = {}, + ["lvl"] = "46-47", + }, + [8336] = { + ["coords"] = {}, + ["lvl"] = "49-50", + ["rnk"] = "1", + }, + [8337] = { + ["coords"] = {}, + ["lvl"] = "42-45", + }, + [8338] = { + ["coords"] = {}, + ["lvl"] = "55", + }, + [8356] = { + ["coords"] = { + [1] = { 39.4, 28.6, 215, 250 }, + [2] = { 47.1, 57.9, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [8357] = { + ["coords"] = { + [1] = { 39.4, 28.9, 215, 250 }, + [2] = { 47.2, 59.3, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [8358] = { + ["coords"] = { + [1] = { 39.1, 28.3, 215, 250 }, + [2] = { 45.6, 56.6, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [8359] = { + ["coords"] = { + [1] = { 39.1, 28.2, 215, 250 }, + [2] = { 45.8, 55.8, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [8360] = { + ["coords"] = { + [1] = { 38.9, 28.3, 215, 250 }, + [2] = { 45, 56.6, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [8361] = { + ["coords"] = { + [1] = { 37.2, 28, 215, 250 }, + [2] = { 36.4, 54.9, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [8362] = { + ["coords"] = { + [1] = { 37.7, 30, 215, 250 }, + [2] = { 38.9, 64.7, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [8363] = { + ["coords"] = { + [1] = { 38.1, 29.9, 215, 250 }, + [2] = { 40.6, 64, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [8364] = { + ["coords"] = { + [1] = { 37.8, 29.9, 215, 250 }, + [2] = { 39.3, 64.3, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [8376] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [8377] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "47", + }, + [8378] = { + ["coords"] = { + [1] = { 53, 87.7, 16, 333 }, + }, + ["fac"] = "AH", + ["lvl"] = "45", + }, + [8379] = { + ["coords"] = { + [1] = { 29.2, 40.2, 16, 333 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [8380] = { + ["coords"] = { + [1] = { 53.1, 87.8, 16, 333 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [8381] = { + ["coords"] = { + [1] = { 53.1, 87.9, 16, 333 }, + }, + ["fac"] = "AH", + ["lvl"] = "47", + }, + [8382] = { + ["coords"] = { + [1] = { 53, 87.7, 16, 333 }, + }, + ["fac"] = "AH", + ["lvl"] = "46", + }, + [8383] = { + ["coords"] = { + [1] = { 79.2, 47.7, 1519, 490 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [8384] = { + ["coords"] = {}, + ["lvl"] = "47-49", + ["rnk"] = "1", + }, + [8385] = { + ["coords"] = { + [1] = { 42.9, 42, 130, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "22", + }, + [8386] = { + ["coords"] = { + [1] = { 49.8, 91.8, 16, 333 }, + [2] = { 52.9, 87.9, 16, 333 }, + [3] = { 53, 87.9, 16, 333 }, + [4] = { 53, 87.8, 16, 333 }, + [5] = { 53, 87.7, 16, 333 }, + [6] = { 52.9, 87.7, 16, 333 }, + [7] = { 53, 87.6, 16, 333 }, + }, + ["fac"] = "AH", + ["lvl"] = "42", + }, + [8387] = { + ["coords"] = { + [1] = { 73.7, 1.7, 14, 300 }, + }, + ["lvl"] = "43", + }, + [8388] = { + ["coords"] = { + [1] = { 73.8, 1.7, 14, 300 }, + }, + ["lvl"] = "42", + }, + [8389] = { + ["coords"] = { + [1] = { 73.8, 1.7, 14, 300 }, + }, + ["lvl"] = "42", + }, + [8390] = { + ["coords"] = { + [1] = { 48.7, 71.4, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [8391] = { + ["coords"] = {}, + ["lvl"] = "52", + ["rnk"] = "1", + }, + [8392] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "45", + }, + [8393] = { + ["coords"] = { + [1] = { 49, 70.8, 1497, 60 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [8394] = { + ["coords"] = { + [1] = { 73.7, 1.8, 14, 300 }, + }, + ["lvl"] = "43", + }, + [8395] = { + ["coords"] = { + [1] = { 28.1, 50.1, 16, 333 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [8396] = { + ["coords"] = { + [1] = { 25.5, 65.6, 141, 300 }, + [2] = { 39.7, 89.5, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "44", + }, + [8397] = { + ["coords"] = { + [1] = { 20.6, 62.1, 16, 333 }, + }, + ["fac"] = "A", + ["lvl"] = "44", + }, + [8398] = { + ["coords"] = { + [1] = { 40.6, 28.5, 215, 250 }, + [2] = { 52.9, 57.5, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [8399] = { + ["coords"] = { + [1] = { 26.5, 46.3, 16, 333 }, + }, + ["fac"] = "AH", + ["lvl"] = "39", + }, + [8400] = { + ["coords"] = { + [1] = { 41.8, 24.3, 51, 500 }, + }, + ["lvl"] = "52", + ["rnk"] = "1", + }, + [8401] = { + ["coords"] = { + [1] = { 42.4, 28.7, 215, 250 }, + [2] = { 62, 58.4, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [8402] = { + ["coords"] = { + [1] = { 39.9, 26.8, 51, 500 }, + [2] = { 41.5, 24.4, 51, 500 }, + [3] = { 41.7, 24.2, 51, 500 }, + [4] = { 39.2, 23.9, 51, 500 }, + [5] = { 41.9, 23.7, 51, 500 }, + [6] = { 40, 22.4, 51, 500 }, + }, + ["lvl"] = "46-47", + }, + [8403] = { + ["coords"] = { + [1] = { 67.6, 44.2, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [8404] = { + ["coords"] = { + [1] = { 41.5, 8, 14, 300 }, + [2] = { 33.8, 79.8, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [8405] = { + ["coords"] = { + [1] = { 42.4, 42.6, 16, 333 }, + }, + ["fac"] = "AH", + ["lvl"] = "45", + }, + [8406] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [8407] = { + ["coords"] = {}, + ["lvl"] = "53", + }, + [8408] = { + ["coords"] = { + [1] = { 41, 53.1, 16, 333 }, + }, + ["lvl"] = "55", + }, + [8409] = { + ["coords"] = { + [1] = { 43.8, 56.5, 16, 333 }, + }, + ["lvl"] = "53", + }, + [8416] = { + ["coords"] = { + [1] = { 28.5, 67.6, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "2", + }, + [8417] = { + ["coords"] = { + [1] = { 41.1, 25.6, 51, 500 }, + }, + ["lvl"] = "46-47", + }, + [8418] = { + ["coords"] = { + [1] = { 48.2, 32.8, 17, 413 }, + }, + ["fac"] = "AH", + ["lvl"] = "25", + }, + [8419] = { + ["coords"] = { + [1] = { 29.1, 26.7, 51, 500 }, + [2] = { 28.7, 26.3, 51, 500 }, + [3] = { 29.7, 25.9, 51, 500 }, + [4] = { 28.7, 25.4, 51, 500 }, + }, + ["lvl"] = "49-51", + ["rnk"] = "1", + }, + [8420] = { + ["coords"] = { + [1] = { 53.5, 21.8, 16, 333 }, + }, + ["lvl"] = "46", + }, + [8421] = { + ["coords"] = {}, + ["lvl"] = "50", + }, + [8436] = { + ["coords"] = { + [1] = { 29.6, 26.3, 51, 500 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [8437] = { + ["coords"] = {}, + ["lvl"] = "45-46", + }, + [8438] = { + ["coords"] = {}, + ["lvl"] = "49-50", + ["rnk"] = "1", + }, + [8439] = { + ["coords"] = { + [1] = { 41, 74.9, 51, 500 }, + }, + ["fac"] = "AH", + ["lvl"] = "48", + }, + [8440] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "49-50", + ["rnk"] = "1", + }, + [8441] = { + ["coords"] = { + [1] = { 40.8, 75.1, 51, 5 }, + }, + ["fac"] = "AH", + ["lvl"] = "48", + }, + [8442] = { + ["coords"] = { + [1] = { 59.7, 25.5, 51, 500 }, + [2] = { 59.5, 25.4, 51, 500 }, + [3] = { 59.6, 25.3, 51, 500 }, + [4] = { 59.8, 25.2, 51, 500 }, + [5] = { 59.6, 25, 51, 500 }, + }, + ["lvl"] = "47-50", + }, + [8443] = { + ["coords"] = {}, + ["lvl"] = "50", + ["rnk"] = "1", + }, + [8444] = { + ["coords"] = { + [1] = { 34.7, 52, 51, 500 }, + }, + ["lvl"] = "50", + }, + [8446] = { + ["coords"] = { + [1] = { 79.3, 91.9, 16, 0 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [8447] = { + ["coords"] = { + [1] = { 34.7, 51.9, 51, 500 }, + }, + ["lvl"] = "48", + ["rnk"] = "1", + }, + [8477] = { + ["coords"] = {}, + ["lvl"] = "57-58", + }, + [8478] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "43", + }, + [8479] = { + ["coords"] = { + [1] = { 39.1, 39, 51, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [8480] = { + ["coords"] = {}, + ["lvl"] = "55", + ["rnk"] = "1", + }, + [8496] = { + ["coords"] = { + [1] = { 62.4, 38.7, 17, 413 }, + }, + ["lvl"] = "17", + }, + [8497] = { + ["coords"] = {}, + ["lvl"] = "49-50", + ["rnk"] = "1", + }, + [8498] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [8499] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [8500] = { + ["coords"] = {}, + ["lvl"] = "1", + ["rnk"] = "1", + }, + [8501] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [8502] = { + ["coords"] = {}, + ["lvl"] = "1", + ["rnk"] = "1", + }, + [8503] = { + ["coords"] = { + [1] = { 27.4, 36.2, 1, 5400 }, + }, + ["lvl"] = "11", + ["rnk"] = "4", + }, + [8504] = { + ["coords"] = { + [1] = { 43.1, 62.1, 51, 500 }, + [2] = { 36.8, 60.2, 51, 500 }, + [3] = { 52.6, 58.1, 51, 500 }, + [4] = { 49.2, 55.9, 51, 500 }, + [5] = { 50.4, 55.5, 51, 500 }, + [6] = { 34.5, 54.2, 51, 500 }, + }, + ["lvl"] = "48", + ["rnk"] = "1", + }, + [8505] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [8506] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [8507] = { + ["coords"] = { + [1] = { 31, 4.8, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [8508] = { + ["coords"] = { + [1] = { 31.5, 44.7, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [8509] = { + ["coords"] = { + [1] = { 39.2, 39, 51, 500 }, + }, + ["fac"] = "AH", + ["lvl"] = "52", + }, + [8510] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "51", + }, + [8516] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "36", + }, + [8517] = { + ["coords"] = { + [1] = { 70.9, 94.6, 1537, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [8518] = { + ["coords"] = { + [1] = { 29.7, 16.9, 406, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "29", + ["rnk"] = "1", + }, + [8519] = { + ["coords"] = { + [1] = { 60.9, 83.4, 139, 345 }, + [2] = { 62.9, 83.2, 139, 345 }, + [3] = { 63.3, 81.8, 139, 345 }, + [4] = { 60.2, 81.5, 139, 345 }, + [5] = { 62.9, 80.6, 139, 345 }, + [6] = { 63.6, 79.3, 139, 345 }, + [7] = { 59.5, 78.9, 139, 345 }, + [8] = { 62.5, 78.1, 139, 345 }, + [9] = { 61.1, 77.5, 139, 345 }, + }, + ["lvl"] = "54-55", + }, + [8520] = { + ["coords"] = { + [1] = { 61.9, 82.1, 139, 345 }, + [2] = { 65.2, 82.1, 139, 345 }, + [3] = { 66.1, 81.4, 139, 345 }, + [4] = { 59.7, 80.9, 139, 345 }, + [5] = { 64.5, 80.8, 139, 345 }, + [6] = { 60.9, 80.4, 139, 345 }, + [7] = { 58.8, 79.8, 139, 345 }, + [8] = { 65.4, 79.6, 139, 345 }, + [9] = { 61.7, 79.6, 139, 345 }, + [10] = { 60.2, 79.3, 139, 345 }, + [11] = { 60.2, 76.8, 139, 345 }, + }, + ["lvl"] = "55-56", + }, + [8521] = { + ["coords"] = { + [1] = { 50, 51, 139, 345 }, + [2] = { 52, 50.7, 139, 345 }, + [3] = { 50.7, 49.7, 139, 345 }, + [4] = { 71.2, 35.7, 139, 345 }, + [5] = { 71.6, 34.1, 139, 345 }, + [6] = { 70.6, 32.4, 139, 345 }, + }, + ["lvl"] = "56-57", + }, + [8522] = { + ["coords"] = { + [1] = { 50.8, 51.9, 139, 345 }, + [2] = { 51.8, 48.1, 139, 345 }, + [3] = { 50.7, 47.3, 139, 345 }, + [4] = { 72.8, 35.2, 139, 345 }, + }, + ["lvl"] = "57-58", + }, + [8523] = { + ["coords"] = { + [1] = { 42.5, 38.5, 139, 345 }, + [2] = { 38.5, 37.9, 139, 345 }, + [3] = { 43.1, 36.8, 139, 345 }, + [4] = { 17.6, 35.7, 139, 345 }, + [5] = { 42.4, 35.6, 139, 345 }, + [6] = { 35.3, 35.4, 139, 345 }, + [7] = { 33.3, 35.4, 139, 345 }, + [8] = { 29.2, 34.6, 139, 345 }, + [9] = { 27.7, 34.6, 139, 345 }, + [10] = { 34.5, 34.5, 139, 345 }, + [11] = { 18.2, 34.4, 139, 345 }, + [12] = { 37.5, 34.2, 139, 345 }, + [13] = { 17.9, 32.6, 139, 345 }, + [14] = { 17.5, 32.5, 139, 345 }, + [15] = { 17.7, 32.2, 139, 345 }, + [16] = { 14.7, 32.2, 139, 345 }, + [17] = { 17.8, 32.1, 139, 345 }, + [18] = { 17.5, 31.8, 139, 345 }, + [19] = { 20.7, 31.5, 139, 345 }, + [20] = { 17.5, 31.3, 139, 345 }, + [21] = { 16.6, 30.8, 139, 345 }, + [22] = { 26.5, 30.7, 139, 345 }, + [23] = { 25.9, 29.7, 139, 345 }, + [24] = { 18, 29.1, 139, 345 }, + [25] = { 44.7, 27, 139, 345 }, + [26] = { 41.3, 26.5, 139, 345 }, + [27] = { 42.1, 25.2, 139, 345 }, + [28] = { 45.5, 24.9, 139, 345 }, + [29] = { 39.7, 23.9, 139, 345 }, + [30] = { 23.1, 20.1, 139, 345 }, + }, + ["lvl"] = "53-54", + }, + [8524] = { + ["coords"] = { + [1] = { 43.1, 39.1, 139, 345 }, + [2] = { 39.3, 36.8, 139, 345 }, + [3] = { 34.6, 36.7, 139, 345 }, + [4] = { 37.5, 35.3, 139, 345 }, + [5] = { 18.4, 34.8, 139, 345 }, + [6] = { 18.4, 34.7, 139, 345 }, + [7] = { 31.9, 33.2, 139, 345 }, + [8] = { 28.3, 33.1, 139, 345 }, + [9] = { 45.5, 33.1, 139, 345 }, + [10] = { 27.6, 31.3, 139, 345 }, + [11] = { 36, 30.5, 139, 345 }, + [12] = { 29.2, 29.7, 139, 345 }, + [13] = { 37, 29.4, 139, 345 }, + [14] = { 24, 28.9, 139, 345 }, + [15] = { 33.7, 27.1, 139, 345 }, + [16] = { 36.7, 26.7, 139, 345 }, + [17] = { 31.8, 26.3, 139, 345 }, + [18] = { 44.9, 23.8, 139, 345 }, + [19] = { 41.4, 23.8, 139, 345 }, + [20] = { 37.4, 21.4, 139, 345 }, + [21] = { 25.1, 20.1, 139, 345 }, + [22] = { 17.9, 32.6, 139, 345 }, + [23] = { 17.5, 32.5, 139, 345 }, + [24] = { 17.8, 32.1, 139, 345 }, + [25] = { 17.5, 31.8, 139, 345 }, + [26] = { 17.5, 31.3, 139, 345 }, + [27] = { 41.3, 26.5, 139, 345 }, + [28] = { 42.1, 25.2, 139, 345 }, + [29] = { 39.7, 23.9, 139, 345 }, + }, + ["lvl"] = "54-55", + }, + [8525] = { + ["coords"] = { + [1] = { 61.1, 72.9, 139, 345 }, + [2] = { 61.1, 70.4, 139, 345 }, + [3] = { 58.5, 70.3, 139, 345 }, + [4] = { 36.9, 31.3, 139, 345 }, + [5] = { 30.3, 25.4, 139, 345 }, + [6] = { 37.8, 25.1, 139, 345 }, + [7] = { 26.5, 23.6, 139, 345 }, + [8] = { 33.8, 22.7, 139, 345 }, + }, + ["lvl"] = "55-56", + }, + [8526] = { + ["coords"] = { + [1] = { 59.2, 71, 139, 345 }, + [2] = { 59.8, 70.5, 139, 345 }, + [3] = { 58, 68.8, 139, 345 }, + [4] = { 59.2, 68.2, 139, 345 }, + [5] = { 58.9, 67.8, 139, 345 }, + [6] = { 61.7, 66.9, 139, 345 }, + [7] = { 59, 66.7, 139, 345 }, + [8] = { 60.1, 66.7, 139, 345 }, + }, + ["lvl"] = "56-57", + }, + [8527] = { + ["coords"] = { + [1] = { 66.2, 40.9, 139, 345 }, + [2] = { 68.9, 40.8, 139, 345 }, + [3] = { 68.3, 40.7, 139, 345 }, + [4] = { 64.6, 40.5, 139, 345 }, + [5] = { 67.9, 40.3, 139, 345 }, + [6] = { 69.3, 39.8, 139, 345 }, + [7] = { 66.1, 39.2, 139, 345 }, + [8] = { 68.6, 38.5, 139, 345 }, + [9] = { 67.3, 38.3, 139, 345 }, + [10] = { 67.9, 38.2, 139, 345 }, + [11] = { 64.9, 36.9, 139, 345 }, + [12] = { 65.9, 36.8, 139, 345 }, + [13] = { 67.3, 35.6, 139, 345 }, + [14] = { 65.3, 35.4, 139, 345 }, + }, + ["lvl"] = "57-58", + }, + [8528] = { + ["coords"] = { + [1] = { 79.2, 56.1, 139, 345 }, + [2] = { 78.3, 55, 139, 345 }, + [3] = { 77.6, 54.1, 139, 345 }, + [4] = { 78.3, 52.5, 139, 345 }, + [5] = { 76.5, 52.4, 139, 345 }, + [6] = { 77, 52.3, 139, 345 }, + [7] = { 75.9, 52, 139, 345 }, + [8] = { 77.5, 51.1, 139, 345 }, + [9] = { 75.6, 50.9, 139, 345 }, + [10] = { 76.5, 50.8, 139, 345 }, + [11] = { 75.6, 50.5, 139, 345 }, + [12] = { 77.5, 49.9, 139, 345 }, + [13] = { 76.7, 48.4, 139, 345 }, + [14] = { 77.5, 47.4, 139, 345 }, + [15] = { 78.5, 45.8, 139, 345 }, + [16] = { 84.4, 45.8, 139, 345 }, + [17] = { 79.2, 44.9, 139, 345 }, + [18] = { 84.4, 44.5, 139, 345 }, + [19] = { 87, 44.1, 139, 345 }, + [20] = { 80.1, 44, 139, 345 }, + [21] = { 81.9, 44, 139, 345 }, + [22] = { 86.5, 43.7, 139, 345 }, + [23] = { 84.8, 43.4, 139, 345 }, + [24] = { 80.7, 43.4, 139, 345 }, + [25] = { 81.8, 42, 139, 345 }, + [26] = { 85.1, 41.9, 139, 345 }, + [27] = { 84.7, 40.9, 139, 345 }, + [28] = { 81.8, 40.7, 139, 345 }, + [29] = { 82.6, 38, 139, 345 }, + [30] = { 84.5, 37.4, 139, 345 }, + }, + ["lvl"] = "58-59", + }, + [8529] = { + ["coords"] = { + [1] = { 33.7, 66.4, 139, 345 }, + [2] = { 34.1, 65.7, 139, 345 }, + [3] = { 32.5, 65.3, 139, 345 }, + [4] = { 35.5, 64, 139, 345 }, + [5] = { 31.8, 63.9, 139, 345 }, + [6] = { 34, 63.7, 139, 345 }, + [7] = { 34.4, 62.6, 139, 345 }, + [8] = { 33.5, 61.1, 139, 345 }, + [9] = { 34, 59.9, 139, 345 }, + [10] = { 36.3, 58.9, 139, 345 }, + [11] = { 35.3, 58.7, 139, 345 }, + [12] = { 36.2, 57.6, 139, 345 }, + [13] = { 37, 57.4, 139, 345 }, + [14] = { 37.7, 57.3, 139, 345 }, + [15] = { 37, 56.7, 139, 345 }, + [16] = { 38.2, 56.2, 139, 345 }, + [17] = { 37.8, 55.5, 139, 345 }, + [18] = { 37.3, 54.7, 139, 345 }, + [19] = { 37.3, 53.6, 139, 345 }, + [20] = { 37.4, 52.4, 139, 345 }, + [21] = { 42, 52.4, 139, 345 }, + [22] = { 37.8, 52.1, 139, 345 }, + [23] = { 39.6, 52, 139, 345 }, + [24] = { 39.6, 49.7, 139, 345 }, + [25] = { 40.5, 48.5, 139, 345 }, + [26] = { 79.2, 56.1, 139, 345 }, + [27] = { 78.3, 55, 139, 345 }, + [28] = { 77.6, 54.1, 139, 345 }, + [29] = { 78.3, 52.5, 139, 345 }, + [30] = { 76.5, 52.4, 139, 345 }, + [31] = { 77, 52.3, 139, 345 }, + [32] = { 75.9, 52, 139, 345 }, + [33] = { 77.5, 51.1, 139, 345 }, + [34] = { 75.6, 50.9, 139, 345 }, + [35] = { 76.5, 50.8, 139, 345 }, + [36] = { 75.6, 50.5, 139, 345 }, + [37] = { 77.5, 49.9, 139, 345 }, + [38] = { 76.7, 48.4, 139, 345 }, + [39] = { 77.5, 47.4, 139, 345 }, + [40] = { 78.5, 45.8, 139, 345 }, + [41] = { 84.4, 45.8, 139, 345 }, + [42] = { 79.2, 44.9, 139, 345 }, + [43] = { 84.4, 44.5, 139, 345 }, + [44] = { 87, 44.1, 139, 345 }, + [45] = { 80.1, 44, 139, 345 }, + [46] = { 81.9, 44, 139, 345 }, + [47] = { 86.5, 43.7, 139, 345 }, + [48] = { 84.8, 43.4, 139, 345 }, + [49] = { 80.7, 43.4, 139, 345 }, + [50] = { 81.8, 42, 139, 345 }, + [51] = { 85.1, 41.9, 139, 345 }, + [52] = { 84.7, 40.9, 139, 345 }, + [53] = { 81.8, 40.7, 139, 345 }, + [54] = { 82.6, 38, 139, 345 }, + [55] = { 84.5, 37.4, 139, 345 }, + }, + ["lvl"] = "59-60", + }, + [8530] = { + ["coords"] = { + [1] = { 25.6, 37.1, 139, 345 }, + [2] = { 38, 36.6, 139, 345 }, + [3] = { 38.6, 35.5, 139, 345 }, + [4] = { 31, 34.7, 139, 345 }, + [5] = { 32.6, 34.3, 139, 345 }, + [6] = { 18.6, 34.3, 139, 345 }, + [7] = { 36.3, 33.7, 139, 345 }, + [8] = { 37.3, 33.1, 139, 345 }, + [9] = { 25.2, 33.1, 139, 345 }, + [10] = { 42.1, 33, 139, 345 }, + [11] = { 26.4, 32.6, 139, 345 }, + [12] = { 14.2, 32.5, 139, 345 }, + [13] = { 25.7, 31.7, 139, 345 }, + [14] = { 31.1, 31.3, 139, 345 }, + [15] = { 16.7, 30.9, 139, 345 }, + [16] = { 16.7, 30.4, 139, 345 }, + [17] = { 28.2, 30.2, 139, 345 }, + [18] = { 35.2, 29.2, 139, 345 }, + [19] = { 42.7, 28.1, 139, 345 }, + [20] = { 27.3, 26.6, 139, 345 }, + [21] = { 37.1, 23.7, 139, 345 }, + [22] = { 36.4, 22.7, 139, 345 }, + [23] = { 43.4, 22.3, 139, 345 }, + [24] = { 22.3, 21.4, 139, 345 }, + [25] = { 41.2, 21.3, 139, 345 }, + [26] = { 22.3, 19.4, 139, 345 }, + [27] = { 37, 29.4, 139, 345 }, + [28] = { 37.8, 25.1, 139, 345 }, + [29] = { 17.5, 32.5, 139, 345 }, + [30] = { 17.8, 32.1, 139, 345 }, + [31] = { 17.5, 31.8, 139, 345 }, + [32] = { 17.5, 31.3, 139, 345 }, + [33] = { 41.3, 26.5, 139, 345 }, + [34] = { 42.1, 25.2, 139, 345 }, + [35] = { 39.7, 23.9, 139, 345 }, + }, + ["lvl"] = "54-55", + }, + [8531] = { + ["coords"] = { + [1] = { 60.1, 73.6, 139, 345 }, + [2] = { 60.9, 73, 139, 345 }, + [3] = { 58.4, 72.9, 139, 345 }, + [4] = { 59.3, 69, 139, 345 }, + [5] = { 62.1, 67.8, 139, 345 }, + [6] = { 61.2, 67, 139, 345 }, + [7] = { 61.9, 65.4, 139, 345 }, + [8] = { 60.4, 65.1, 139, 345 }, + [9] = { 58.5, 70.3, 139, 345 }, + }, + ["lvl"] = "56-57", + }, + [8532] = { + ["coords"] = { + [1] = { 67.1, 40.8, 139, 345 }, + [2] = { 65.4, 40.8, 139, 345 }, + [3] = { 67.2, 39.9, 139, 345 }, + [4] = { 65.5, 39.7, 139, 345 }, + [5] = { 64.4, 39.2, 139, 345 }, + [6] = { 64.7, 38.3, 139, 345 }, + [7] = { 65.5, 38.3, 139, 345 }, + [8] = { 66, 35.9, 139, 345 }, + [9] = { 33.7, 66.4, 139, 345 }, + [10] = { 34.1, 65.7, 139, 345 }, + [11] = { 32.5, 65.3, 139, 345 }, + [12] = { 35.5, 64, 139, 345 }, + [13] = { 31.8, 63.9, 139, 345 }, + [14] = { 34, 63.7, 139, 345 }, + [15] = { 34.4, 62.6, 139, 345 }, + [16] = { 33.5, 61.1, 139, 345 }, + [17] = { 34, 59.9, 139, 345 }, + [18] = { 36.3, 58.9, 139, 345 }, + [19] = { 35.3, 58.7, 139, 345 }, + [20] = { 37, 57.4, 139, 345 }, + [21] = { 37.7, 57.3, 139, 345 }, + [22] = { 37, 56.7, 139, 345 }, + [23] = { 38.2, 56.2, 139, 345 }, + [24] = { 37.8, 55.5, 139, 345 }, + [25] = { 37.3, 54.7, 139, 345 }, + [26] = { 37.3, 53.6, 139, 345 }, + [27] = { 37.4, 52.4, 139, 345 }, + [28] = { 42, 52.4, 139, 345 }, + [29] = { 37.8, 52.1, 139, 345 }, + [30] = { 39.6, 52, 139, 345 }, + [31] = { 39.6, 49.7, 139, 345 }, + [32] = { 40.5, 48.5, 139, 345 }, + [33] = { 79.2, 56.1, 139, 345 }, + [34] = { 78.3, 55, 139, 345 }, + [35] = { 77.6, 54.1, 139, 345 }, + [36] = { 78.3, 52.5, 139, 345 }, + [37] = { 76.5, 52.4, 139, 345 }, + [38] = { 77, 52.3, 139, 345 }, + [39] = { 75.9, 52, 139, 345 }, + [40] = { 77.5, 51.1, 139, 345 }, + [41] = { 75.6, 50.9, 139, 345 }, + [42] = { 76.5, 50.8, 139, 345 }, + [43] = { 75.6, 50.5, 139, 345 }, + [44] = { 77.5, 49.9, 139, 345 }, + [45] = { 76.7, 48.4, 139, 345 }, + [46] = { 77.5, 47.4, 139, 345 }, + [47] = { 78.5, 45.8, 139, 345 }, + [48] = { 84.4, 45.8, 139, 345 }, + [49] = { 79.2, 44.9, 139, 345 }, + [50] = { 84.4, 44.5, 139, 345 }, + [51] = { 87, 44.1, 139, 345 }, + [52] = { 80.1, 44, 139, 345 }, + [53] = { 81.9, 44, 139, 345 }, + [54] = { 86.5, 43.7, 139, 345 }, + [55] = { 84.8, 43.4, 139, 345 }, + [56] = { 80.7, 43.4, 139, 345 }, + [57] = { 81.8, 42, 139, 345 }, + [58] = { 85.1, 41.9, 139, 345 }, + [59] = { 84.7, 40.9, 139, 345 }, + [60] = { 81.8, 40.7, 139, 345 }, + [61] = { 82.6, 38, 139, 345 }, + [62] = { 84.5, 37.4, 139, 345 }, + }, + ["lvl"] = "58-59", + }, + [8534] = { + ["coords"] = { + [1] = { 83.3, 66.9, 28, 345 }, + [2] = { 78.9, 56.5, 28, 345 }, + [3] = { 73.3, 54.8, 28, 345 }, + [4] = { 75.6, 44.6, 28, 345 }, + [5] = { 25.3, 91.1, 139, 345 }, + [6] = { 63.6, 86, 139, 345 }, + [7] = { 44.4, 83.1, 139, 345 }, + [8] = { 34.9, 82.6, 139, 345 }, + [9] = { 48.9, 79.9, 139, 345 }, + [10] = { 57.8, 79.8, 139, 345 }, + [11] = { 20.4, 79.6, 139, 345 }, + [12] = { 14.2, 77.7, 139, 345 }, + [13] = { 42.3, 77, 139, 345 }, + [14] = { 56.5, 76.5, 139, 345 }, + [15] = { 36.3, 72.9, 139, 345 }, + [16] = { 24.4, 71.7, 139, 345 }, + [17] = { 46.1, 70.7, 139, 345 }, + [18] = { 19.2, 68.4, 139, 345 }, + [19] = { 16.8, 66.3, 139, 345 }, + [20] = { 78.3, 66.2, 139, 345 }, + [21] = { 77.4, 63.4, 139, 345 }, + [22] = { 57.6, 61.2, 139, 345 }, + [23] = { 49.3, 60.3, 139, 345 }, + [24] = { 61.2, 58.7, 139, 345 }, + [25] = { 58.1, 58, 139, 345 }, + [26] = { 70.9, 57.6, 139, 345 }, + [27] = { 52.6, 53.6, 139, 345 }, + [28] = { 40.8, 33.4, 139, 345 }, + [29] = { 25.4, 32.4, 139, 345 }, + [30] = { 36.1, 32, 139, 345 }, + [31] = { 41.8, 25.2, 139, 345 }, + [32] = { 39, 21.5, 139, 345 }, + [33] = { 22.7, 18.9, 139, 345 }, + [34] = { 24.4, 18.7, 139, 345 }, + }, + ["lvl"] = "54-56", + }, + [8535] = { + ["coords"] = { + [1] = { 28.8, 41.6, 139, 345 }, + [2] = { 32.2, 38.4, 139, 345 }, + [3] = { 19.9, 37.5, 139, 345 }, + [4] = { 63.8, 30.1, 139, 345 }, + [5] = { 65.7, 28.5, 139, 345 }, + [6] = { 60.1, 28, 139, 345 }, + }, + ["lvl"] = "56-58", + }, + [8536] = { + ["coords"] = {}, + ["lvl"] = "58-60", + }, + [8537] = { + ["coords"] = {}, + ["lvl"] = "42-43", + }, + [8538] = { + ["coords"] = { + [1] = { 60.1, 72.6, 139, 345 }, + [2] = { 58, 68, 139, 345 }, + }, + ["lvl"] = "55-56", + }, + [8539] = { + ["coords"] = { + [1] = { 34.6, 60.1, 139, 345 }, + [2] = { 40.9, 49, 139, 345 }, + [3] = { 83.2, 44.6, 139, 345 }, + [4] = { 70.5, 30.4, 139, 345 }, + [5] = { 71.4, 30.3, 139, 345 }, + [6] = { 71.5, 30.2, 139, 345 }, + [7] = { 70.5, 29.6, 139, 345 }, + }, + ["lvl"] = "57-58", + }, + [8540] = { + ["coords"] = { + [1] = { 36.3, 36.7, 139, 345 }, + [2] = { 28.3, 35.9, 139, 345 }, + [3] = { 44.5, 34.4, 139, 345 }, + [4] = { 40.3, 33.3, 139, 345 }, + [5] = { 30.1, 33.2, 139, 345 }, + [6] = { 19.9, 32.9, 139, 345 }, + [7] = { 39.8, 31.9, 139, 345 }, + [8] = { 17.6, 31.8, 139, 345 }, + [9] = { 18.7, 31.7, 139, 345 }, + [10] = { 17.6, 31.4, 139, 345 }, + [11] = { 29.3, 31.3, 139, 345 }, + [12] = { 40.5, 31.1, 139, 345 }, + [13] = { 17.7, 31, 139, 345 }, + [14] = { 16.7, 30.4, 139, 345 }, + [15] = { 43, 29, 139, 345 }, + [16] = { 44.6, 28.9, 139, 345 }, + [17] = { 45.4, 27.9, 139, 345 }, + [18] = { 23.6, 27.8, 139, 345 }, + [19] = { 23.2, 25.7, 139, 345 }, + [20] = { 25.2, 25, 139, 345 }, + [21] = { 24.2, 24, 139, 345 }, + [22] = { 21.9, 23.9, 139, 345 }, + [23] = { 40.5, 23.1, 139, 345 }, + [24] = { 24.5, 22.9, 139, 345 }, + [25] = { 41.7, 22.8, 139, 345 }, + [26] = { 17.8, 32.1, 139, 345 }, + [27] = { 17.5, 31.8, 139, 345 }, + [28] = { 17.5, 31.3, 139, 345 }, + [29] = { 41.3, 26.5, 139, 345 }, + [30] = { 39.7, 23.9, 139, 345 }, + }, + ["lvl"] = "53-55", + }, + [8541] = { + ["coords"] = { + [1] = { 59.4, 73, 139, 345 }, + [2] = { 60, 72.5, 139, 345 }, + [3] = { 60.5, 71.7, 139, 345 }, + [4] = { 58.5, 71.7, 139, 345 }, + [5] = { 62, 71.6, 139, 345 }, + [6] = { 61.1, 71.5, 139, 345 }, + [7] = { 59.9, 70.8, 139, 345 }, + [8] = { 60.6, 70.5, 139, 345 }, + [9] = { 61.8, 70.2, 139, 345 }, + [10] = { 60.1, 69.7, 139, 345 }, + [11] = { 60.9, 69.2, 139, 345 }, + [12] = { 58.6, 69.1, 139, 345 }, + [13] = { 61.2, 69.1, 139, 345 }, + [14] = { 60, 69, 139, 345 }, + [15] = { 61.1, 67.8, 139, 345 }, + [16] = { 60.1, 67.7, 139, 345 }, + [17] = { 59.7, 67.7, 139, 345 }, + [18] = { 62.6, 66.7, 139, 345 }, + [19] = { 58.6, 66.2, 139, 345 }, + [20] = { 60.1, 66.1, 139, 345 }, + [21] = { 59.5, 65, 139, 345 }, + [22] = { 61, 65, 139, 345 }, + [23] = { 25.7, 27.5, 139, 345 }, + [24] = { 38.9, 26.4, 139, 345 }, + [25] = { 29, 26.3, 139, 345 }, + [26] = { 36.2, 25.3, 139, 345 }, + [27] = { 27.5, 25.1, 139, 345 }, + [28] = { 35.4, 23.9, 139, 345 }, + [29] = { 38, 22.5, 139, 345 }, + [30] = { 38.7, 21.8, 139, 345 }, + [31] = { 58.5, 70.3, 139, 345 }, + }, + ["lvl"] = "55-57", + }, + [8542] = { + ["coords"] = { + [1] = { 83.1, 40.5, 139, 345 }, + [2] = { 71.7, 32.4, 139, 345 }, + [3] = { 69.8, 31.8, 139, 345 }, + [4] = { 73, 31.6, 139, 345 }, + [5] = { 72.1, 31.5, 139, 345 }, + [6] = { 70, 30.9, 139, 345 }, + [7] = { 72.2, 30.7, 139, 345 }, + [8] = { 72.8, 30.5, 139, 345 }, + [9] = { 69.8, 30.4, 139, 345 }, + [10] = { 71.4, 29.3, 139, 345 }, + [11] = { 72.3, 29.2, 139, 345 }, + [12] = { 69.6, 29, 139, 345 }, + [13] = { 70.5, 27.9, 139, 345 }, + [14] = { 33.7, 66.4, 139, 345 }, + [15] = { 34.1, 65.7, 139, 345 }, + [16] = { 32.5, 65.3, 139, 345 }, + [17] = { 35.5, 64, 139, 345 }, + [18] = { 31.8, 63.9, 139, 345 }, + [19] = { 34, 63.7, 139, 345 }, + [20] = { 34.4, 62.6, 139, 345 }, + [21] = { 33.5, 61.1, 139, 345 }, + [22] = { 34, 59.9, 139, 345 }, + [23] = { 36.3, 58.9, 139, 345 }, + [24] = { 35.3, 58.7, 139, 345 }, + [25] = { 37, 57.4, 139, 345 }, + [26] = { 37.7, 57.3, 139, 345 }, + [27] = { 37, 56.7, 139, 345 }, + [28] = { 38.2, 56.2, 139, 345 }, + [29] = { 37.8, 55.5, 139, 345 }, + [30] = { 37.3, 54.7, 139, 345 }, + [31] = { 37.3, 53.6, 139, 345 }, + [32] = { 37.4, 52.4, 139, 345 }, + [33] = { 42, 52.4, 139, 345 }, + [34] = { 37.8, 52.1, 139, 345 }, + [35] = { 39.6, 52, 139, 345 }, + [36] = { 39.6, 49.7, 139, 345 }, + [37] = { 40.5, 48.5, 139, 345 }, + [38] = { 79.2, 56.1, 139, 345 }, + [39] = { 78.3, 55, 139, 345 }, + [40] = { 77.6, 54.1, 139, 345 }, + [41] = { 78.3, 52.5, 139, 345 }, + [42] = { 76.5, 52.4, 139, 345 }, + [43] = { 77, 52.3, 139, 345 }, + [44] = { 75.9, 52, 139, 345 }, + [45] = { 77.5, 51.1, 139, 345 }, + [46] = { 75.6, 50.9, 139, 345 }, + [47] = { 76.5, 50.8, 139, 345 }, + [48] = { 75.6, 50.5, 139, 345 }, + [49] = { 77.5, 49.9, 139, 345 }, + [50] = { 76.7, 48.4, 139, 345 }, + [51] = { 77.5, 47.4, 139, 345 }, + [52] = { 78.5, 45.8, 139, 345 }, + [53] = { 84.4, 45.8, 139, 345 }, + [54] = { 79.2, 44.9, 139, 345 }, + [55] = { 84.4, 44.5, 139, 345 }, + [56] = { 87, 44.1, 139, 345 }, + [57] = { 80.1, 44, 139, 345 }, + [58] = { 81.9, 44, 139, 345 }, + [59] = { 86.5, 43.7, 139, 345 }, + [60] = { 84.8, 43.4, 139, 345 }, + [61] = { 80.7, 43.4, 139, 345 }, + [62] = { 81.8, 42, 139, 345 }, + [63] = { 85.1, 41.9, 139, 345 }, + [64] = { 84.7, 40.9, 139, 345 }, + [65] = { 81.8, 40.7, 139, 345 }, + [66] = { 82.6, 38, 139, 345 }, + [67] = { 84.5, 37.4, 139, 345 }, + }, + ["lvl"] = "57-59", + }, + [8543] = { + ["coords"] = { + [1] = { 59.2, 73.3, 139, 345 }, + [2] = { 57.5, 70.4, 139, 345 }, + [3] = { 62.1, 69, 139, 345 }, + [4] = { 56.9, 68, 139, 345 }, + [5] = { 58.2, 63.6, 139, 345 }, + [6] = { 27.4, 39.4, 139, 345 }, + [7] = { 40.5, 35.5, 139, 345 }, + [8] = { 43.6, 35.3, 139, 345 }, + [9] = { 43, 34.5, 139, 345 }, + [10] = { 41.6, 34.5, 139, 345 }, + [11] = { 26, 33.8, 139, 345 }, + [12] = { 35.3, 32.9, 139, 345 }, + [13] = { 44.1, 32.7, 139, 345 }, + [14] = { 25.6, 32.2, 139, 345 }, + [15] = { 32.1, 31.6, 139, 345 }, + [16] = { 24.2, 31.4, 139, 345 }, + [17] = { 31.8, 31.2, 139, 345 }, + [18] = { 34.2, 31.1, 139, 345 }, + [19] = { 30.1, 30.4, 139, 345 }, + [20] = { 24.7, 30.3, 139, 345 }, + [21] = { 31.9, 30, 139, 345 }, + [22] = { 32.4, 29.9, 139, 345 }, + [23] = { 33.6, 29, 139, 345 }, + [24] = { 21.6, 28.9, 139, 345 }, + [25] = { 36.4, 28.1, 139, 345 }, + [26] = { 32.8, 27.7, 139, 345 }, + [27] = { 22.3, 26.8, 139, 345 }, + [28] = { 35.2, 26.4, 139, 345 }, + [29] = { 34.5, 25.3, 139, 345 }, + [30] = { 28.1, 24, 139, 345 }, + [31] = { 42.8, 23.8, 139, 345 }, + [32] = { 31.9, 23.7, 139, 345 }, + [33] = { 37.6, 20.5, 139, 345 }, + [34] = { 40.5, 20.3, 139, 345 }, + [35] = { 37.2, 20.1, 139, 345 }, + [36] = { 21.6, 19.8, 139, 345 }, + [37] = { 37.4, 18.9, 139, 345 }, + [38] = { 37.8, 18.8, 139, 345 }, + [39] = { 23.1, 17.6, 139, 345 }, + [40] = { 62.1, 67.8, 139, 345 }, + [41] = { 61.1, 67.8, 139, 345 }, + [42] = { 36.2, 25.3, 139, 345 }, + [43] = { 42.1, 25.2, 139, 345 }, + }, + ["lvl"] = "57-58", + }, + [8544] = { + ["coords"] = { + [1] = { 87, 40.1, 139, 345 }, + }, + ["lvl"] = "58-59", + }, + [8545] = { + ["coords"] = { + [1] = { 86.8, 40.7, 139, 345 }, + [2] = { 86.1, 39.4, 139, 345 }, + [3] = { 86.5, 39.2, 139, 345 }, + [4] = { 33.7, 66.4, 139, 345 }, + [5] = { 34.1, 65.7, 139, 345 }, + [6] = { 32.5, 65.3, 139, 345 }, + [7] = { 35.5, 64, 139, 345 }, + [8] = { 31.8, 63.9, 139, 345 }, + [9] = { 34, 63.7, 139, 345 }, + [10] = { 34.4, 62.6, 139, 345 }, + [11] = { 33.5, 61.1, 139, 345 }, + [12] = { 34, 59.9, 139, 345 }, + [13] = { 36.3, 58.9, 139, 345 }, + [14] = { 35.3, 58.7, 139, 345 }, + [15] = { 37, 57.4, 139, 345 }, + [16] = { 37.7, 57.3, 139, 345 }, + [17] = { 37, 56.7, 139, 345 }, + [18] = { 38.2, 56.2, 139, 345 }, + [19] = { 37.8, 55.5, 139, 345 }, + [20] = { 37.3, 54.7, 139, 345 }, + [21] = { 37.3, 53.6, 139, 345 }, + [22] = { 37.4, 52.4, 139, 345 }, + [23] = { 42, 52.4, 139, 345 }, + [24] = { 37.8, 52.1, 139, 345 }, + [25] = { 39.6, 52, 139, 345 }, + [26] = { 39.6, 49.7, 139, 345 }, + [27] = { 40.5, 48.5, 139, 345 }, + }, + ["lvl"] = "59-60", + }, + [8546] = { + ["coords"] = { + [1] = { 40.5, 54.9, 139, 345 }, + [2] = { 40.6, 54.7, 139, 345 }, + [3] = { 39.2, 54, 139, 345 }, + [4] = { 41.7, 54, 139, 345 }, + [5] = { 39, 53.7, 139, 345 }, + [6] = { 39.3, 51.5, 139, 345 }, + [7] = { 39.9, 51.4, 139, 345 }, + [8] = { 39.2, 51.2, 139, 345 }, + [9] = { 40.9, 50.6, 139, 345 }, + [10] = { 42, 50.3, 139, 345 }, + [11] = { 40.9, 50.3, 139, 345 }, + [12] = { 42, 50, 139, 345 }, + [13] = { 37.7, 50, 139, 345 }, + [14] = { 39.2, 48.9, 139, 345 }, + [15] = { 39.3, 48.6, 139, 345 }, + [16] = { 42, 47.9, 139, 345 }, + [17] = { 81.9, 46.6, 139, 345 }, + [18] = { 85.9, 46.1, 139, 345 }, + [19] = { 85.7, 46, 139, 345 }, + [20] = { 85.7, 44, 139, 345 }, + [21] = { 85.7, 43.7, 139, 345 }, + [22] = { 83.1, 43.4, 139, 345 }, + [23] = { 83, 43.1, 139, 345 }, + [24] = { 83.6, 42, 139, 345 }, + [25] = { 83.6, 40.3, 139, 345 }, + [26] = { 83.5, 40, 139, 345 }, + [27] = { 83.2, 39.1, 139, 345 }, + [28] = { 83.1, 39, 139, 345 }, + [29] = { 65.9, 37.8, 139, 345 }, + [30] = { 66, 37.7, 139, 345 }, + [31] = { 66.6, 37.3, 139, 345 }, + [32] = { 66.6, 37.2, 139, 345 }, + }, + ["lvl"] = "58-59", + }, + [8547] = { + ["coords"] = { + [1] = { 39.3, 34.2, 139, 345 }, + [2] = { 27, 28.9, 139, 345 }, + }, + ["lvl"] = "53-54", + }, + [8548] = { + ["coords"] = { + [1] = { 60.5, 71.7, 139, 345 }, + [2] = { 60.1, 71.2, 139, 345 }, + [3] = { 60, 70.8, 139, 345 }, + [4] = { 60.4, 70.8, 139, 345 }, + [5] = { 59.9, 70.7, 139, 345 }, + [6] = { 59.6, 70.3, 139, 345 }, + [7] = { 59.6, 69.9, 139, 345 }, + [8] = { 61.3, 69.2, 139, 345 }, + [9] = { 61.4, 68.9, 139, 345 }, + [10] = { 57.8, 68.6, 139, 345 }, + [11] = { 60.7, 68.2, 139, 345 }, + [12] = { 59.2, 67.6, 139, 345 }, + [13] = { 58.6, 67.5, 139, 345 }, + [14] = { 58.8, 67.2, 139, 345 }, + [15] = { 60.8, 66.3, 139, 345 }, + [16] = { 61, 65.9, 139, 345 }, + }, + ["lvl"] = "56-57", + }, + [8549] = { + ["coords"] = {}, + ["lvl"] = "57-58", + }, + [8550] = { + ["coords"] = { + [1] = { 40.5, 54.9, 139, 345 }, + [2] = { 40.6, 54.7, 139, 345 }, + [3] = { 39.2, 54, 139, 345 }, + [4] = { 41.7, 54, 139, 345 }, + [5] = { 39, 53.7, 139, 345 }, + [6] = { 39.3, 51.5, 139, 345 }, + [7] = { 39.9, 51.4, 139, 345 }, + [8] = { 39.2, 51.2, 139, 345 }, + [9] = { 40.9, 50.6, 139, 345 }, + [10] = { 42, 50.3, 139, 345 }, + [11] = { 40.9, 50.3, 139, 345 }, + [12] = { 42, 50, 139, 345 }, + [13] = { 37.7, 50, 139, 345 }, + [14] = { 39.2, 48.9, 139, 345 }, + [15] = { 39.3, 48.6, 139, 345 }, + [16] = { 42, 47.9, 139, 345 }, + [17] = { 81.9, 46.6, 139, 345 }, + [18] = { 85.9, 46.1, 139, 345 }, + [19] = { 85.7, 46, 139, 345 }, + [20] = { 85.7, 44, 139, 345 }, + [21] = { 85.7, 43.7, 139, 345 }, + [22] = { 83.1, 43.4, 139, 345 }, + [23] = { 83, 43.1, 139, 345 }, + [24] = { 83.6, 42, 139, 345 }, + [25] = { 83.6, 40.3, 139, 345 }, + [26] = { 83.5, 40, 139, 345 }, + [27] = { 83.2, 39.1, 139, 345 }, + [28] = { 83.1, 39, 139, 345 }, + [29] = { 65.9, 37.8, 139, 345 }, + [30] = { 66, 37.7, 139, 345 }, + [31] = { 66.6, 37.3, 139, 345 }, + [32] = { 66.6, 37.2, 139, 345 }, + }, + ["lvl"] = "59-60", + }, + [8551] = { + ["coords"] = { + [1] = { 60.4, 70.9, 139, 345 }, + [2] = { 60.1, 70.8, 139, 345 }, + [3] = { 59.7, 70.1, 139, 345 }, + [4] = { 61.6, 68.9, 139, 345 }, + }, + ["lvl"] = "55-56", + }, + [8552] = { + ["coords"] = {}, + ["lvl"] = "54-55", + }, + [8553] = { + ["coords"] = { + [1] = { 40.6, 38.2, 139, 345 }, + [2] = { 27, 36.6, 139, 345 }, + [3] = { 30.6, 28.1, 139, 345 }, + [4] = { 30.6, 27.7, 139, 345 }, + [5] = { 43.5, 25.7, 139, 345 }, + [6] = { 32.8, 23.8, 139, 345 }, + [7] = { 30.7, 21, 139, 345 }, + [8] = { 31.1, 20.9, 139, 345 }, + }, + ["lvl"] = "54-55", + }, + [8554] = { + ["coords"] = { + [1] = { 64.7, 77.7, 215, 375 }, + }, + ["lvl"] = "5", + }, + [8555] = { + ["coords"] = { + [1] = { 67.7, 21.1, 28, 345 }, + [2] = { 67.7, 19.9, 28, 345 }, + [3] = { 68.9, 19.2, 28, 345 }, + [4] = { 69.7, 18.6, 28, 345 }, + [5] = { 8, 40.2, 139, 345 }, + [6] = { 8, 38.9, 139, 345 }, + [7] = { 9.4, 38.1, 139, 345 }, + [8] = { 10.2, 37.5, 139, 345 }, + [9] = { 12.4, 33.7, 139, 345 }, + [10] = { 17, 33.1, 139, 345 }, + [11] = { 13.7, 32.9, 139, 345 }, + [12] = { 16.3, 32.8, 139, 345 }, + [13] = { 15.4, 32.4, 139, 345 }, + [14] = { 14.5, 31.9, 139, 345 }, + [15] = { 16.7, 31.8, 139, 345 }, + [16] = { 14.2, 30.4, 139, 345 }, + [17] = { 39.9, 25.8, 139, 345 }, + }, + ["lvl"] = "53-54", + }, + [8556] = { + ["coords"] = { + [1] = { 68.5, 18.7, 28, 345 }, + [2] = { 68.9, 17.4, 28, 345 }, + [3] = { 8.9, 37.5, 139, 345 }, + [4] = { 9.3, 36.1, 139, 345 }, + [5] = { 11.2, 34.7, 139, 345 }, + [6] = { 11.9, 34.3, 139, 345 }, + [7] = { 13.1, 33.6, 139, 345 }, + [8] = { 17.9, 33.4, 139, 345 }, + [9] = { 13.2, 33.4, 139, 345 }, + [10] = { 15, 31.2, 139, 345 }, + [11] = { 29.4, 23.9, 139, 345 }, + [12] = { 23.5, 21.9, 139, 345 }, + [13] = { 12.4, 33.7, 139, 345 }, + [14] = { 16.3, 32.8, 139, 345 }, + [15] = { 15.4, 32.4, 139, 345 }, + [16] = { 14.2, 30.4, 139, 345 }, + }, + ["lvl"] = "55-56", + }, + [8557] = { + ["coords"] = { + [1] = { 68.2, 21.2, 28, 345 }, + [2] = { 68.3, 20.6, 28, 345 }, + [3] = { 69.3, 17.8, 28, 345 }, + [4] = { 68.7, 17.8, 28, 345 }, + [5] = { 68.7, 17.4, 28, 345 }, + [6] = { 69.4, 16.7, 28, 345 }, + [7] = { 69.5, 16.6, 28, 345 }, + [8] = { 8.6, 40.3, 139, 345 }, + [9] = { 8.7, 39.7, 139, 345 }, + [10] = { 67.8, 39.6, 139, 345 }, + [11] = { 67.7, 39.6, 139, 345 }, + [12] = { 9.8, 36.6, 139, 345 }, + [13] = { 9.1, 36.6, 139, 345 }, + [14] = { 9.1, 36.1, 139, 345 }, + [15] = { 11.7, 35.3, 139, 345 }, + [16] = { 9.8, 35.3, 139, 345 }, + [17] = { 10, 35.3, 139, 345 }, + [18] = { 11.3, 33.9, 139, 345 }, + [19] = { 12.8, 31.7, 139, 345 }, + [20] = { 13.4, 31.1, 139, 345 }, + }, + ["lvl"] = "57-58", + }, + [8558] = { + ["coords"] = { + [1] = { 68.4, 20, 28, 345 }, + [2] = { 8.7, 39, 139, 345 }, + [3] = { 11.5, 35.2, 139, 345 }, + [4] = { 12.6, 32.3, 139, 345 }, + [5] = { 12.6, 32.1, 139, 345 }, + [6] = { 40.5, 54.9, 139, 345 }, + [7] = { 40.6, 54.7, 139, 345 }, + [8] = { 39.2, 54, 139, 345 }, + [9] = { 41.7, 54, 139, 345 }, + [10] = { 39, 53.7, 139, 345 }, + [11] = { 39.3, 51.5, 139, 345 }, + [12] = { 39.9, 51.4, 139, 345 }, + [13] = { 39.2, 51.2, 139, 345 }, + [14] = { 40.9, 50.6, 139, 345 }, + [15] = { 42, 50.3, 139, 345 }, + [16] = { 40.9, 50.3, 139, 345 }, + [17] = { 42, 50, 139, 345 }, + [18] = { 37.7, 50, 139, 345 }, + [19] = { 39.2, 48.9, 139, 345 }, + [20] = { 39.3, 48.6, 139, 345 }, + [21] = { 42, 47.9, 139, 345 }, + [22] = { 81.9, 46.6, 139, 345 }, + [23] = { 85.9, 46.1, 139, 345 }, + [24] = { 85.7, 46, 139, 345 }, + [25] = { 85.7, 44, 139, 345 }, + [26] = { 85.7, 43.7, 139, 345 }, + [27] = { 83.1, 43.4, 139, 345 }, + [28] = { 83, 43.1, 139, 345 }, + [29] = { 83.6, 42, 139, 345 }, + [30] = { 83.6, 40.3, 139, 345 }, + [31] = { 83.5, 40, 139, 345 }, + [32] = { 83.2, 39.1, 139, 345 }, + [33] = { 83.1, 39, 139, 345 }, + [34] = { 65.9, 37.8, 139, 345 }, + [35] = { 66, 37.7, 139, 345 }, + [36] = { 66.6, 37.3, 139, 345 }, + [37] = { 66.6, 37.2, 139, 345 }, + }, + ["lvl"] = "58-59", + }, + [8559] = { + ["coords"] = {}, + ["lvl"] = "60-61", + }, + [8560] = { + ["coords"] = { + [1] = { 64.1, 23.8, 139, 345 }, + [2] = { 63.5, 23.7, 139, 345 }, + [3] = { 64.5, 22, 139, 345 }, + [4] = { 68.5, 20.1, 139, 345 }, + [5] = { 71.1, 18.2, 139, 345 }, + [6] = { 71, 18.2, 139, 345 }, + [7] = { 69.6, 17.3, 139, 345 }, + [8] = { 71.6, 17.2, 139, 345 }, + [9] = { 70.3, 15.1, 139, 345 }, + [10] = { 70.1, 15, 139, 345 }, + [11] = { 70.3, 14.6, 139, 345 }, + [12] = { 70.5, 13.1, 139, 345 }, + }, + ["lvl"] = "57-58", + }, + [8561] = { + ["coords"] = { + [1] = { 65.5, 22.3, 139, 345 }, + [2] = { 65.2, 21.8, 139, 345 }, + [3] = { 64.8, 21.3, 139, 345 }, + [4] = { 67, 21.3, 139, 345 }, + [5] = { 68.5, 19.9, 139, 345 }, + [6] = { 70, 19.4, 139, 345 }, + [7] = { 71.5, 18.9, 139, 345 }, + [8] = { 72.7, 18.1, 139, 345 }, + [9] = { 72.7, 18, 139, 345 }, + [10] = { 71.5, 17, 139, 345 }, + [11] = { 72.8, 15.9, 139, 345 }, + [12] = { 71.1, 15.6, 139, 345 }, + [13] = { 72.8, 15.4, 139, 345 }, + [14] = { 72.8, 14.9, 139, 345 }, + [15] = { 71.6, 14.8, 139, 345 }, + [16] = { 72.9, 14.4, 139, 345 }, + [17] = { 73.6, 14.2, 139, 345 }, + [18] = { 69.8, 13.8, 139, 345 }, + [19] = { 73.3, 13.7, 139, 345 }, + [20] = { 71, 13.2, 139, 345 }, + [21] = { 71.3, 13.2, 139, 345 }, + [22] = { 72, 13.1, 139, 345 }, + [23] = { 71.7, 13.1, 139, 345 }, + [24] = { 72.4, 12.4, 139, 345 }, + [25] = { 72.1, 11.9, 139, 345 }, + }, + ["lvl"] = "58-59", + }, + [8562] = { + ["coords"] = { + [1] = { 65.1, 24.8, 139, 345 }, + [2] = { 66.1, 24.1, 139, 345 }, + [3] = { 63.6, 23.5, 139, 345 }, + [4] = { 65.6, 22.1, 139, 345 }, + [5] = { 66.3, 21.3, 139, 345 }, + [6] = { 68.9, 20.3, 139, 345 }, + [7] = { 70.7, 17.6, 139, 345 }, + [8] = { 68.8, 16.3, 139, 345 }, + [9] = { 73.6, 15.9, 139, 345 }, + [10] = { 73.5, 15.7, 139, 345 }, + [11] = { 69.2, 15.5, 139, 345 }, + [12] = { 69.2, 15.3, 139, 345 }, + [13] = { 70.6, 13.2, 139, 345 }, + }, + ["lvl"] = "57-59", + }, + [8563] = { + ["coords"] = { + [1] = { 51.8, 21.7, 139, 345 }, + [2] = { 52.8, 20, 139, 345 }, + [3] = { 53.1, 18.9, 139, 345 }, + [4] = { 54, 18.8, 139, 345 }, + [5] = { 50.7, 18.5, 139, 345 }, + [6] = { 51, 18.5, 139, 345 }, + [7] = { 50.6, 16.7, 139, 345 }, + [8] = { 53.9, 16.3, 139, 345 }, + [9] = { 53.9, 16.2, 139, 345 }, + }, + ["fac"] = "A", + ["lvl"] = "58-59", + }, + [8564] = { + ["coords"] = { + [1] = { 51.4, 21.7, 139, 345 }, + [2] = { 51, 20.1, 139, 345 }, + [3] = { 51.4, 20.1, 139, 345 }, + [4] = { 53.1, 19.5, 139, 345 }, + [5] = { 52.7, 19.4, 139, 345 }, + [6] = { 52.6, 18.9, 139, 345 }, + [7] = { 53.5, 18.7, 139, 345 }, + [8] = { 51.5, 18.1, 139, 345 }, + [9] = { 51.4, 17.3, 139, 345 }, + [10] = { 53.2, 17.1, 139, 345 }, + [11] = { 52.7, 17, 139, 345 }, + [12] = { 50.9, 16.6, 139, 345 }, + [13] = { 53.8, 16.5, 139, 345 }, + }, + ["fac"] = "A", + ["lvl"] = "59-60", + }, + [8565] = { + ["coords"] = { + [1] = { 51.5, 21.2, 139, 345 }, + [2] = { 53.7, 18.8, 139, 345 }, + [3] = { 53.8, 18.7, 139, 345 }, + [4] = { 53.6, 16.3, 139, 345 }, + [5] = { 53.8, 15.6, 139, 345 }, + }, + ["fac"] = "A", + ["lvl"] = "57-58", + }, + [8566] = { + ["coords"] = { + [1] = { 44.4, 62.2, 51, 500 }, + [2] = { 35.3, 62, 51, 500 }, + [3] = { 44.6, 60.9, 51, 500 }, + [4] = { 37.1, 60.8, 51, 500 }, + [5] = { 52.9, 59, 51, 500 }, + [6] = { 52.1, 58.9, 51, 500 }, + [7] = { 53.3, 58.4, 51, 500 }, + [8] = { 32.8, 55.1, 51, 500 }, + [9] = { 32.5, 54.9, 51, 500 }, + [10] = { 33.2, 53.3, 51, 500 }, + [11] = { 33.7, 51.8, 51, 500 }, + [12] = { 40.8, 36.1, 51, 500 }, + }, + ["lvl"] = "47-48", + }, + [8567] = { + ["coords"] = {}, + ["lvl"] = "40", + ["rnk"] = "1", + }, + [8576] = { + ["coords"] = { + [1] = { 22.3, 51.5, 16, 333 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [8578] = { + ["coords"] = { + [1] = { 59.5, 31.4, 16, 0 }, + }, + ["lvl"] = "55", + }, + [8579] = { + ["coords"] = { + [1] = { 67, 22.4, 440, 300 }, + }, + ["lvl"] = "41", + }, + [8580] = { + ["coords"] = {}, + ["lvl"] = "50", + ["rnk"] = "1", + }, + [8581] = { + ["coords"] = { + [1] = { 59.5, 31.4, 16, 0 }, + }, + ["lvl"] = "51", + }, + [8582] = { + ["coords"] = { + [1] = { 68.6, 89.1, 331, 275 }, + }, + ["fac"] = "H", + ["lvl"] = "31", + }, + [8583] = { + ["coords"] = { + [1] = { 60.9, 42, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "8", + }, + [8584] = { + ["coords"] = { + [1] = { 54.6, 33, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [8585] = { + ["coords"] = {}, + ["lvl"] = "41", + }, + [8586] = { + ["coords"] = { + [1] = { 22.5, 51.1, 16, 333 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [8587] = { + ["coords"] = { + [1] = { 22.6, 51.4, 16, 333 }, + }, + ["fac"] = "H", + ["lvl"] = "49", + }, + [8588] = { + ["coords"] = { + [1] = { 67.8, 27.4, 618, 333 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [8596] = { + ["coords"] = { + [1] = { 84.1, 69, 28, 345 }, + [2] = { 82.4, 68.5, 28, 345 }, + [3] = { 83.1, 64.7, 28, 345 }, + [4] = { 82.8, 64.1, 28, 345 }, + [5] = { 82.8, 61.6, 28, 345 }, + [6] = { 77.4, 58.6, 28, 345 }, + [7] = { 76, 57.4, 28, 345 }, + [8] = { 78.6, 57.2, 28, 345 }, + [9] = { 78.6, 57.1, 28, 345 }, + [10] = { 74, 56.9, 28, 345 }, + [11] = { 72, 56.5, 28, 345 }, + [12] = { 75.3, 56.4, 28, 345 }, + [13] = { 77.5, 56.1, 28, 345 }, + [14] = { 75.6, 56.1, 28, 345 }, + [15] = { 74.4, 55.8, 28, 345 }, + [16] = { 75.4, 55.8, 28, 345 }, + [17] = { 75.7, 55.6, 28, 345 }, + [18] = { 78, 55.3, 28, 345 }, + [19] = { 73, 54.8, 28, 345 }, + [20] = { 76.9, 54.8, 28, 345 }, + [21] = { 74, 52.8, 28, 345 }, + [22] = { 73.4, 52.6, 28, 345 }, + [23] = { 75.9, 52.4, 28, 345 }, + [24] = { 76.9, 51.6, 28, 345 }, + [25] = { 77.4, 48.4, 28, 345 }, + [26] = { 76.2, 47.9, 28, 345 }, + [27] = { 75.2, 44.8, 28, 345 }, + [28] = { 74.4, 43.6, 28, 345 }, + [29] = { 74.1, 43.4, 28, 345 }, + [30] = { 74.8, 42.2, 28, 345 }, + [31] = { 75.8, 40.9, 28, 345 }, + [32] = { 70.2, 37.5, 28, 345 }, + [33] = { 68, 34.2, 28, 345 }, + [34] = { 67.5, 33.4, 28, 345 }, + [35] = { 68.5, 30.6, 28, 345 }, + [36] = { 66.1, 23.8, 28, 345 }, + [37] = { 26.2, 93.5, 139, 345 }, + [38] = { 24.4, 92.9, 139, 345 }, + [39] = { 26.7, 89.1, 139, 345 }, + [40] = { 44.6, 88.9, 139, 345 }, + [41] = { 25.1, 88.7, 139, 345 }, + [42] = { 24.8, 88, 139, 345 }, + [43] = { 61.2, 87.3, 139, 345 }, + [44] = { 62, 86.7, 139, 345 }, + [45] = { 45.1, 86.6, 139, 345 }, + [46] = { 60.6, 85.9, 139, 345 }, + [47] = { 42.9, 85.8, 139, 345 }, + [48] = { 47.2, 85.6, 139, 345 }, + [49] = { 32.7, 85.3, 139, 345 }, + [50] = { 24.7, 85.2, 139, 345 }, + [51] = { 64.5, 84.9, 139, 345 }, + [52] = { 35.2, 84.5, 139, 345 }, + [53] = { 42, 84.5, 139, 345 }, + [54] = { 33.5, 84.5, 139, 345 }, + [55] = { 32, 84.4, 139, 345 }, + [56] = { 32.5, 84.3, 139, 345 }, + [57] = { 37.5, 84.2, 139, 345 }, + [58] = { 74, 84, 139, 345 }, + [59] = { 57.7, 83.8, 139, 345 }, + [60] = { 72, 83.7, 139, 345 }, + [61] = { 58.2, 83.2, 139, 345 }, + [62] = { 42.1, 82.6, 139, 345 }, + [63] = { 44.4, 82.5, 139, 345 }, + [64] = { 36.1, 82.4, 139, 345 }, + [65] = { 32, 82.4, 139, 345 }, + [66] = { 30.8, 82.3, 139, 345 }, + [67] = { 33.7, 82.3, 139, 345 }, + [68] = { 42, 82.2, 139, 345 }, + [69] = { 18.8, 81.8, 139, 345 }, + [70] = { 71.5, 81.7, 139, 345 }, + [71] = { 69.7, 81.6, 139, 345 }, + [72] = { 54.7, 80.9, 139, 345 }, + [73] = { 55.8, 80.8, 139, 345 }, + [74] = { 68.8, 80.6, 139, 345 }, + [75] = { 50.6, 80.6, 139, 345 }, + [76] = { 50.2, 80.6, 139, 345 }, + [77] = { 17.2, 80.5, 139, 345 }, + [78] = { 57.5, 80.4, 139, 345 }, + [79] = { 20.1, 80.3, 139, 345 }, + [80] = { 44.3, 80.2, 139, 345 }, + [81] = { 20.1, 80.2, 139, 345 }, + [82] = { 15, 80, 139, 345 }, + [83] = { 23.4, 79.9, 139, 345 }, + [84] = { 68.8, 79.9, 139, 345 }, + [85] = { 12.8, 79.6, 139, 345 }, + [86] = { 16.4, 79.4, 139, 345 }, + [87] = { 18.9, 79.1, 139, 345 }, + [88] = { 20.5, 79.1, 139, 345 }, + [89] = { 16.8, 79.1, 139, 345 }, + [90] = { 15.4, 78.8, 139, 345 }, + [91] = { 16.5, 78.7, 139, 345 }, + [92] = { 16.9, 78.6, 139, 345 }, + [93] = { 52.8, 78.3, 139, 345 }, + [94] = { 19.5, 78.2, 139, 345 }, + [95] = { 56.6, 78.1, 139, 345 }, + [96] = { 52.9, 77.8, 139, 345 }, + [97] = { 13.8, 77.7, 139, 345 }, + [98] = { 18.2, 77.7, 139, 345 }, + [99] = { 52.1, 77.6, 139, 345 }, + [100] = { 56.1, 77.3, 139, 345 }, + [101] = { 44.3, 77.2, 139, 345 }, + [102] = { 65.5, 77, 139, 345 }, + [103] = { 54.1, 76.8, 139, 345 }, + [104] = { 50, 76.6, 139, 345 }, + [105] = { 56.6, 76.4, 139, 345 }, + [106] = { 33.2, 76.2, 139, 345 }, + [107] = { 19.3, 76, 139, 345 }, + [108] = { 53.4, 75.9, 139, 345 }, + [109] = { 55, 75.6, 139, 345 }, + [110] = { 35.2, 75.5, 139, 345 }, + [111] = { 15, 75.5, 139, 345 }, + [112] = { 14.4, 75.2, 139, 345 }, + [113] = { 17.1, 75, 139, 345 }, + [114] = { 42.1, 74.9, 139, 345 }, + [115] = { 45.3, 74.8, 139, 345 }, + [116] = { 44.6, 74.8, 139, 345 }, + [117] = { 18.2, 74.1, 139, 345 }, + [118] = { 63.2, 74, 139, 345 }, + [119] = { 33.9, 73, 139, 345 }, + [120] = { 36.8, 72.5, 139, 345 }, + [121] = { 24.2, 72.4, 139, 345 }, + [122] = { 19.5, 72.3, 139, 345 }, + [123] = { 41.9, 71.7, 139, 345 }, + [124] = { 28.4, 71.5, 139, 345 }, + [125] = { 35.6, 71.5, 139, 345 }, + [126] = { 24.9, 71.4, 139, 345 }, + [127] = { 45.8, 71.2, 139, 345 }, + [128] = { 48.2, 71.1, 139, 345 }, + [129] = { 28.6, 70.7, 139, 345 }, + [130] = { 36.1, 70.6, 139, 345 }, + [131] = { 18.8, 70.5, 139, 345 }, + [132] = { 27.8, 70.5, 139, 345 }, + [133] = { 42.9, 70.3, 139, 345 }, + [134] = { 46.3, 70.1, 139, 345 }, + [135] = { 44.1, 70, 139, 345 }, + [136] = { 17.4, 70, 139, 345 }, + [137] = { 29.1, 69.7, 139, 345 }, + [138] = { 33.4, 69.1, 139, 345 }, + [139] = { 42, 69, 139, 345 }, + [140] = { 31, 68.6, 139, 345 }, + [141] = { 21.2, 68.4, 139, 345 }, + [142] = { 21.1, 68.2, 139, 345 }, + [143] = { 40, 68.1, 139, 345 }, + [144] = { 19.2, 68, 139, 345 }, + [145] = { 36.2, 68, 139, 345 }, + [146] = { 29.1, 67.9, 139, 345 }, + [147] = { 27.6, 67.7, 139, 345 }, + [148] = { 25.7, 67, 139, 345 }, + [149] = { 21.2, 66.8, 139, 345 }, + [150] = { 40.8, 66.7, 139, 345 }, + [151] = { 24.2, 66.6, 139, 345 }, + [152] = { 16.3, 66.5, 139, 345 }, + [153] = { 21.6, 66.4, 139, 345 }, + [154] = { 18.2, 66.2, 139, 345 }, + [155] = { 20.2, 66, 139, 345 }, + [156] = { 42.6, 65.5, 139, 345 }, + [157] = { 15.4, 65.2, 139, 345 }, + [158] = { 15.1, 65, 139, 345 }, + [159] = { 21.5, 64.7, 139, 345 }, + [160] = { 31.2, 64.2, 139, 345 }, + [161] = { 23, 64.1, 139, 345 }, + [162] = { 17.7, 64.1, 139, 345 }, + [163] = { 27.1, 64, 139, 345 }, + [164] = { 26.9, 63.8, 139, 345 }, + [165] = { 15.9, 63.7, 139, 345 }, + [166] = { 17, 62.2, 139, 345 }, + [167] = { 21.8, 62.1, 139, 345 }, + [168] = { 31.5, 61.4, 139, 345 }, + [169] = { 10.8, 58.4, 139, 345 }, + [170] = { 8.3, 54.8, 139, 345 }, + [171] = { 7.7, 53.9, 139, 345 }, + [172] = { 8.9, 50.7, 139, 345 }, + [173] = { 6.2, 43.2, 139, 345 }, + }, + ["lvl"] = "53-54", + }, + [8597] = { + ["coords"] = { + [1] = { 70.5, 72.6, 139, 345 }, + [2] = { 80.2, 71.9, 139, 345 }, + [3] = { 75.1, 71.9, 139, 345 }, + [4] = { 75.8, 71.6, 139, 345 }, + [5] = { 79.7, 70.5, 139, 345 }, + [6] = { 65.2, 70.1, 139, 345 }, + [7] = { 66.5, 69.5, 139, 345 }, + [8] = { 74.6, 69.4, 139, 345 }, + [9] = { 76.5, 68.1, 139, 345 }, + [10] = { 66.4, 67.7, 139, 345 }, + [11] = { 70, 66.9, 139, 345 }, + [12] = { 77.6, 66.7, 139, 345 }, + [13] = { 68, 64, 139, 345 }, + [14] = { 76.7, 63.2, 139, 345 }, + [15] = { 75.7, 63.1, 139, 345 }, + [16] = { 48.2, 62.7, 139, 345 }, + [17] = { 46.4, 62.7, 139, 345 }, + [18] = { 52.3, 62.2, 139, 345 }, + [19] = { 53.2, 62, 139, 345 }, + [20] = { 71.1, 61.1, 139, 345 }, + [21] = { 54.1, 61.1, 139, 345 }, + [22] = { 64.4, 60.8, 139, 345 }, + [23] = { 58.3, 60.8, 139, 345 }, + [24] = { 56.8, 59, 139, 345 }, + [25] = { 65.9, 58.8, 139, 345 }, + [26] = { 68.2, 58.7, 139, 345 }, + [27] = { 55.2, 58.7, 139, 345 }, + [28] = { 53.1, 57.9, 139, 345 }, + [29] = { 54.3, 57.6, 139, 345 }, + [30] = { 64, 56.1, 139, 345 }, + [31] = { 49.3, 56, 139, 345 }, + [32] = { 54.9, 54.8, 139, 345 }, + [33] = { 73.3, 54.2, 139, 345 }, + [34] = { 54.8, 53.9, 139, 345 }, + }, + ["lvl"] = "55-56", + }, + [8598] = { + ["coords"] = { + [1] = { 69.9, 49.6, 139, 345 }, + [2] = { 63.2, 48, 139, 345 }, + [3] = { 62.4, 47.7, 139, 345 }, + [4] = { 56.4, 46, 139, 345 }, + [5] = { 69.6, 46, 139, 345 }, + [6] = { 70.4, 44.7, 139, 345 }, + [7] = { 65.5, 44.6, 139, 345 }, + [8] = { 64.4, 44, 139, 345 }, + [9] = { 70.6, 43.3, 139, 345 }, + [10] = { 34.8, 43.2, 139, 345 }, + [11] = { 52.3, 43.1, 139, 345 }, + [12] = { 69.5, 42.1, 139, 345 }, + [13] = { 31.2, 41.9, 139, 345 }, + [14] = { 62.6, 41.6, 139, 345 }, + [15] = { 50.6, 41.6, 139, 345 }, + [16] = { 72.4, 41.4, 139, 345 }, + [17] = { 32.3, 40.7, 139, 345 }, + [18] = { 34.8, 40.6, 139, 345 }, + [19] = { 50.2, 40.5, 139, 345 }, + [20] = { 72.8, 40.5, 139, 345 }, + [21] = { 35.4, 40.5, 139, 345 }, + [22] = { 49.3, 39.7, 139, 345 }, + [23] = { 53.8, 39.6, 139, 345 }, + [24] = { 45, 39.4, 139, 345 }, + [25] = { 52.6, 39.3, 139, 345 }, + [26] = { 51.9, 39, 139, 345 }, + [27] = { 47.5, 38.9, 139, 345 }, + [28] = { 46.1, 38.8, 139, 345 }, + [29] = { 52.8, 38.5, 139, 345 }, + [30] = { 50.9, 38.2, 139, 345 }, + [31] = { 69.2, 38.2, 139, 345 }, + [32] = { 72.4, 37.9, 139, 345 }, + [33] = { 63.9, 37.8, 139, 345 }, + [34] = { 46.3, 37.5, 139, 345 }, + [35] = { 48.5, 37, 139, 345 }, + [36] = { 31.1, 36.9, 139, 345 }, + [37] = { 61.8, 36.8, 139, 345 }, + [38] = { 23.8, 36.8, 139, 345 }, + [39] = { 44.4, 36.4, 139, 345 }, + [40] = { 68.8, 36.2, 139, 345 }, + [41] = { 63.6, 35.7, 139, 345 }, + [42] = { 51.2, 35.6, 139, 345 }, + [43] = { 22.8, 35.3, 139, 345 }, + [44] = { 58.2, 34.7, 139, 345 }, + [45] = { 23.9, 34.3, 139, 345 }, + [46] = { 66.1, 34, 139, 345 }, + [47] = { 67.1, 34, 139, 345 }, + [48] = { 65.3, 33, 139, 345 }, + [49] = { 62.6, 33, 139, 345 }, + [50] = { 53.3, 32.9, 139, 345 }, + [51] = { 61.1, 32.7, 139, 345 }, + [52] = { 55.4, 31.5, 139, 345 }, + [53] = { 51.6, 31.4, 139, 345 }, + [54] = { 49.7, 30.7, 139, 345 }, + [55] = { 66.2, 30.5, 139, 345 }, + [56] = { 62.4, 30.2, 139, 345 }, + [57] = { 48.1, 29.8, 139, 345 }, + [58] = { 52.1, 29.8, 139, 345 }, + [59] = { 55.2, 29.7, 139, 345 }, + [60] = { 60.2, 29.6, 139, 345 }, + [61] = { 56.9, 29.1, 139, 345 }, + [62] = { 56.2, 28.5, 139, 345 }, + [63] = { 59.5, 28.4, 139, 345 }, + [64] = { 63.3, 27.9, 139, 345 }, + [65] = { 20.4, 26.8, 139, 345 }, + [66] = { 67.7, 26.3, 139, 345 }, + [67] = { 19.6, 25.9, 139, 345 }, + [68] = { 20.6, 25.9, 139, 345 }, + [69] = { 20.3, 24.7, 139, 345 }, + [70] = { 62.5, 24.4, 139, 345 }, + [71] = { 20, 22.7, 139, 345 }, + [72] = { 57.9, 21.3, 139, 345 }, + [73] = { 57.9, 20.2, 139, 345 }, + }, + ["lvl"] = "57-58", + }, + [8599] = { + ["coords"] = {}, + ["lvl"] = "43-44", + }, + [8600] = { + ["coords"] = { + [1] = { 84.1, 69, 28, 345 }, + [2] = { 82.4, 68.5, 28, 345 }, + [3] = { 83.1, 64.7, 28, 345 }, + [4] = { 82.8, 64.1, 28, 345 }, + [5] = { 82.8, 61.6, 28, 345 }, + [6] = { 77.4, 58.6, 28, 345 }, + [7] = { 76, 57.4, 28, 345 }, + [8] = { 78.6, 57.2, 28, 345 }, + [9] = { 78.6, 57.1, 28, 345 }, + [10] = { 74, 56.9, 28, 345 }, + [11] = { 72, 56.5, 28, 345 }, + [12] = { 75.3, 56.4, 28, 345 }, + [13] = { 77.5, 56.1, 28, 345 }, + [14] = { 75.6, 56.1, 28, 345 }, + [15] = { 74.4, 55.8, 28, 345 }, + [16] = { 75.4, 55.8, 28, 345 }, + [17] = { 75.7, 55.6, 28, 345 }, + [18] = { 78, 55.3, 28, 345 }, + [19] = { 73, 54.8, 28, 345 }, + [20] = { 76.9, 54.8, 28, 345 }, + [21] = { 74, 52.8, 28, 345 }, + [22] = { 73.4, 52.6, 28, 345 }, + [23] = { 75.9, 52.4, 28, 345 }, + [24] = { 76.9, 51.6, 28, 345 }, + [25] = { 77.4, 48.4, 28, 345 }, + [26] = { 76.2, 47.9, 28, 345 }, + [27] = { 75.2, 44.8, 28, 345 }, + [28] = { 74.4, 43.6, 28, 345 }, + [29] = { 74.1, 43.4, 28, 345 }, + [30] = { 74.8, 42.2, 28, 345 }, + [31] = { 75.8, 40.9, 28, 345 }, + [32] = { 70.2, 37.5, 28, 345 }, + [33] = { 68, 34.2, 28, 345 }, + [34] = { 67.5, 33.4, 28, 345 }, + [35] = { 68.5, 30.6, 28, 345 }, + [36] = { 66.1, 23.8, 28, 345 }, + [37] = { 26.2, 93.5, 139, 345 }, + [38] = { 24.4, 92.9, 139, 345 }, + [39] = { 26.7, 89.1, 139, 345 }, + [40] = { 44.6, 88.9, 139, 345 }, + [41] = { 25.1, 88.7, 139, 345 }, + [42] = { 24.8, 88, 139, 345 }, + [43] = { 61.2, 87.3, 139, 345 }, + [44] = { 62, 86.7, 139, 345 }, + [45] = { 45.1, 86.6, 139, 345 }, + [46] = { 60.6, 85.9, 139, 345 }, + [47] = { 42.9, 85.8, 139, 345 }, + [48] = { 47.2, 85.6, 139, 345 }, + [49] = { 32.7, 85.3, 139, 345 }, + [50] = { 24.7, 85.2, 139, 345 }, + [51] = { 64.5, 84.9, 139, 345 }, + [52] = { 35.2, 84.5, 139, 345 }, + [53] = { 42, 84.5, 139, 345 }, + [54] = { 33.5, 84.5, 139, 345 }, + [55] = { 32, 84.4, 139, 345 }, + [56] = { 32.5, 84.3, 139, 345 }, + [57] = { 37.5, 84.2, 139, 345 }, + [58] = { 74, 84, 139, 345 }, + [59] = { 57.7, 83.8, 139, 345 }, + [60] = { 72, 83.7, 139, 345 }, + [61] = { 58.2, 83.2, 139, 345 }, + [62] = { 42.1, 82.6, 139, 345 }, + [63] = { 44.4, 82.5, 139, 345 }, + [64] = { 36.1, 82.4, 139, 345 }, + [65] = { 32, 82.4, 139, 345 }, + [66] = { 30.8, 82.3, 139, 345 }, + [67] = { 33.7, 82.3, 139, 345 }, + [68] = { 42, 82.2, 139, 345 }, + [69] = { 18.8, 81.8, 139, 345 }, + [70] = { 71.5, 81.7, 139, 345 }, + [71] = { 69.7, 81.6, 139, 345 }, + [72] = { 54.7, 80.9, 139, 345 }, + [73] = { 55.8, 80.8, 139, 345 }, + [74] = { 68.8, 80.6, 139, 345 }, + [75] = { 50.6, 80.6, 139, 345 }, + [76] = { 50.2, 80.6, 139, 345 }, + [77] = { 17.2, 80.5, 139, 345 }, + [78] = { 57.5, 80.4, 139, 345 }, + [79] = { 20.1, 80.3, 139, 345 }, + [80] = { 44.3, 80.2, 139, 345 }, + [81] = { 20.1, 80.2, 139, 345 }, + [82] = { 15, 80, 139, 345 }, + [83] = { 23.4, 79.9, 139, 345 }, + [84] = { 68.8, 79.9, 139, 345 }, + [85] = { 12.8, 79.6, 139, 345 }, + [86] = { 16.4, 79.4, 139, 345 }, + [87] = { 18.9, 79.1, 139, 345 }, + [88] = { 20.5, 79.1, 139, 345 }, + [89] = { 16.8, 79.1, 139, 345 }, + [90] = { 15.4, 78.8, 139, 345 }, + [91] = { 16.5, 78.7, 139, 345 }, + [92] = { 16.9, 78.6, 139, 345 }, + [93] = { 52.8, 78.3, 139, 345 }, + [94] = { 19.5, 78.2, 139, 345 }, + [95] = { 56.6, 78.1, 139, 345 }, + [96] = { 52.9, 77.8, 139, 345 }, + [97] = { 13.8, 77.7, 139, 345 }, + [98] = { 18.2, 77.7, 139, 345 }, + [99] = { 52.1, 77.6, 139, 345 }, + [100] = { 56.1, 77.3, 139, 345 }, + [101] = { 44.3, 77.2, 139, 345 }, + [102] = { 65.5, 77, 139, 345 }, + [103] = { 54.1, 76.8, 139, 345 }, + [104] = { 50, 76.6, 139, 345 }, + [105] = { 56.6, 76.4, 139, 345 }, + [106] = { 33.2, 76.2, 139, 345 }, + [107] = { 19.3, 76, 139, 345 }, + [108] = { 53.4, 75.9, 139, 345 }, + [109] = { 55, 75.6, 139, 345 }, + [110] = { 35.2, 75.5, 139, 345 }, + [111] = { 15, 75.5, 139, 345 }, + [112] = { 14.4, 75.2, 139, 345 }, + [113] = { 17.1, 75, 139, 345 }, + [114] = { 42.1, 74.9, 139, 345 }, + [115] = { 45.3, 74.8, 139, 345 }, + [116] = { 44.6, 74.8, 139, 345 }, + [117] = { 18.2, 74.1, 139, 345 }, + [118] = { 63.2, 74, 139, 345 }, + [119] = { 33.9, 73, 139, 345 }, + [120] = { 36.8, 72.5, 139, 345 }, + [121] = { 24.2, 72.4, 139, 345 }, + [122] = { 19.5, 72.3, 139, 345 }, + [123] = { 41.9, 71.7, 139, 345 }, + [124] = { 28.4, 71.5, 139, 345 }, + [125] = { 35.6, 71.5, 139, 345 }, + [126] = { 24.9, 71.4, 139, 345 }, + [127] = { 45.8, 71.2, 139, 345 }, + [128] = { 48.2, 71.1, 139, 345 }, + [129] = { 28.6, 70.7, 139, 345 }, + [130] = { 36.1, 70.6, 139, 345 }, + [131] = { 18.8, 70.5, 139, 345 }, + [132] = { 27.8, 70.5, 139, 345 }, + [133] = { 42.9, 70.3, 139, 345 }, + [134] = { 46.3, 70.1, 139, 345 }, + [135] = { 44.1, 70, 139, 345 }, + [136] = { 17.4, 70, 139, 345 }, + [137] = { 29.1, 69.7, 139, 345 }, + [138] = { 33.4, 69.1, 139, 345 }, + [139] = { 42, 69, 139, 345 }, + [140] = { 31, 68.6, 139, 345 }, + [141] = { 21.2, 68.4, 139, 345 }, + [142] = { 21.1, 68.2, 139, 345 }, + [143] = { 40, 68.1, 139, 345 }, + [144] = { 19.2, 68, 139, 345 }, + [145] = { 36.2, 68, 139, 345 }, + [146] = { 29.1, 67.9, 139, 345 }, + [147] = { 27.6, 67.7, 139, 345 }, + [148] = { 25.7, 67, 139, 345 }, + [149] = { 21.2, 66.8, 139, 345 }, + [150] = { 40.8, 66.7, 139, 345 }, + [151] = { 24.2, 66.6, 139, 345 }, + [152] = { 16.3, 66.5, 139, 345 }, + [153] = { 21.6, 66.4, 139, 345 }, + [154] = { 18.2, 66.2, 139, 345 }, + [155] = { 20.2, 66, 139, 345 }, + [156] = { 42.6, 65.5, 139, 345 }, + [157] = { 15.4, 65.2, 139, 345 }, + [158] = { 15.1, 65, 139, 345 }, + [159] = { 21.5, 64.7, 139, 345 }, + [160] = { 31.2, 64.2, 139, 345 }, + [161] = { 23, 64.1, 139, 345 }, + [162] = { 17.7, 64.1, 139, 345 }, + [163] = { 27.1, 64, 139, 345 }, + [164] = { 26.9, 63.8, 139, 345 }, + [165] = { 15.9, 63.7, 139, 345 }, + [166] = { 17, 62.2, 139, 345 }, + [167] = { 21.8, 62.1, 139, 345 }, + [168] = { 31.5, 61.4, 139, 345 }, + [169] = { 10.8, 58.4, 139, 345 }, + [170] = { 8.3, 54.8, 139, 345 }, + [171] = { 7.7, 53.9, 139, 345 }, + [172] = { 8.9, 50.7, 139, 345 }, + [173] = { 6.2, 43.2, 139, 345 }, + }, + ["lvl"] = "53-55", + }, + [8601] = { + ["coords"] = { + [1] = { 72.2, 72.8, 139, 345 }, + [2] = { 78.2, 72.2, 139, 345 }, + [3] = { 68.6, 71.5, 139, 345 }, + [4] = { 80.8, 70.6, 139, 345 }, + [5] = { 65.1, 69.1, 139, 345 }, + [6] = { 44.8, 67.6, 139, 345 }, + [7] = { 49.1, 67.6, 139, 345 }, + [8] = { 68, 66.3, 139, 345 }, + [9] = { 46.2, 65.8, 139, 345 }, + [10] = { 67.4, 65.8, 139, 345 }, + [11] = { 49.6, 65.5, 139, 345 }, + [12] = { 64.8, 64.9, 139, 345 }, + [13] = { 45.4, 64.9, 139, 345 }, + [14] = { 64.7, 64.5, 139, 345 }, + [15] = { 48.5, 64.1, 139, 345 }, + [16] = { 45.6, 64, 139, 345 }, + [17] = { 47.3, 63.8, 139, 345 }, + [18] = { 69.8, 63.7, 139, 345 }, + [19] = { 66.5, 63.6, 139, 345 }, + [20] = { 50.7, 63.4, 139, 345 }, + [21] = { 52.8, 63.3, 139, 345 }, + [22] = { 62.5, 63, 139, 345 }, + [23] = { 70, 62.6, 139, 345 }, + [24] = { 72.5, 62.3, 139, 345 }, + [25] = { 67.3, 62.3, 139, 345 }, + [26] = { 48.8, 62.3, 139, 345 }, + [27] = { 56.3, 62.1, 139, 345 }, + [28] = { 69.2, 62.1, 139, 345 }, + [29] = { 50.1, 61.6, 139, 345 }, + [30] = { 73.6, 61.4, 139, 345 }, + [31] = { 60.9, 61, 139, 345 }, + [32] = { 49.8, 60.8, 139, 345 }, + [33] = { 52.7, 60.3, 139, 345 }, + [34] = { 51.2, 60.2, 139, 345 }, + [35] = { 76.5, 60.2, 139, 345 }, + [36] = { 48.8, 60.2, 139, 345 }, + [37] = { 61.9, 60, 139, 345 }, + [38] = { 66.6, 59.9, 139, 345 }, + [39] = { 74, 59.7, 139, 345 }, + [40] = { 60.1, 59.5, 139, 345 }, + [41] = { 57.7, 58.9, 139, 345 }, + [42] = { 48.8, 58.6, 139, 345 }, + [43] = { 58.4, 57.6, 139, 345 }, + [44] = { 61, 57.1, 139, 345 }, + [45] = { 69.5, 57.1, 139, 345 }, + [46] = { 68.6, 56.7, 139, 345 }, + [47] = { 69.8, 56.4, 139, 345 }, + [48] = { 52.1, 56.3, 139, 345 }, + [49] = { 73.2, 55.4, 139, 345 }, + [50] = { 56.4, 55.1, 139, 345 }, + [51] = { 70.6, 55, 139, 345 }, + [52] = { 60.1, 54.9, 139, 345 }, + [53] = { 50.1, 54.2, 139, 345 }, + [54] = { 57.7, 53.2, 139, 345 }, + [55] = { 55.3, 53.1, 139, 345 }, + [56] = { 56.9, 52.4, 139, 345 }, + [57] = { 53.5, 51.8, 139, 345 }, + [58] = { 53.5, 51.4, 139, 345 }, + [59] = { 55.5, 51, 139, 345 }, + [60] = { 53.3, 50.3, 139, 345 }, + }, + ["lvl"] = "54-56", + }, + [8602] = { + ["coords"] = { + [1] = { 67.7, 50.9, 139, 345 }, + [2] = { 62.1, 48.8, 139, 345 }, + [3] = { 60.1, 47.4, 139, 345 }, + [4] = { 51.6, 44.6, 139, 345 }, + [5] = { 65.1, 44, 139, 345 }, + [6] = { 31.9, 43.4, 139, 345 }, + [7] = { 71.6, 43.3, 139, 345 }, + [8] = { 32.7, 43.1, 139, 345 }, + [9] = { 43.5, 43, 139, 345 }, + [10] = { 55.8, 42.8, 139, 345 }, + [11] = { 51.5, 42, 139, 345 }, + [12] = { 29.6, 41.8, 139, 345 }, + [13] = { 51.7, 41.8, 139, 345 }, + [14] = { 53, 41.7, 139, 345 }, + [15] = { 33.3, 41.6, 139, 345 }, + [16] = { 45.8, 39.9, 139, 345 }, + [17] = { 33.5, 39.4, 139, 345 }, + [18] = { 30.9, 39.4, 139, 345 }, + [19] = { 69.9, 39.1, 139, 345 }, + [20] = { 51.6, 38.7, 139, 345 }, + [21] = { 62.2, 38.2, 139, 345 }, + [22] = { 20.6, 38, 139, 345 }, + [23] = { 31.3, 37.6, 139, 345 }, + [24] = { 21.7, 37.2, 139, 345 }, + [25] = { 22.3, 37.1, 139, 345 }, + [26] = { 46.2, 36.5, 139, 345 }, + [27] = { 50.6, 36.5, 139, 345 }, + [28] = { 19.2, 36.4, 139, 345 }, + [29] = { 19.9, 35.8, 139, 345 }, + [30] = { 75, 35.8, 139, 345 }, + [31] = { 48.3, 35.5, 139, 345 }, + [32] = { 63.5, 34.3, 139, 345 }, + [33] = { 60.6, 34.2, 139, 345 }, + [34] = { 75.8, 33.8, 139, 345 }, + [35] = { 67.8, 33.6, 139, 345 }, + [36] = { 55.6, 32.9, 139, 345 }, + [37] = { 75.2, 32, 139, 345 }, + [38] = { 60.1, 31.4, 139, 345 }, + [39] = { 60.2, 29.8, 139, 345 }, + [40] = { 66.7, 29.6, 139, 345 }, + [41] = { 62.3, 29.5, 139, 345 }, + [42] = { 64.4, 28.2, 139, 345 }, + [43] = { 47.5, 28.1, 139, 345 }, + [44] = { 19.5, 28, 139, 345 }, + [45] = { 51.1, 27.7, 139, 345 }, + [46] = { 49.7, 27.2, 139, 345 }, + [47] = { 63.3, 26.1, 139, 345 }, + [48] = { 18.8, 25.1, 139, 345 }, + [49] = { 49.5, 25, 139, 345 }, + [50] = { 51.5, 24.9, 139, 345 }, + [51] = { 52.8, 24.2, 139, 345 }, + [52] = { 53.1, 23.3, 139, 345 }, + [53] = { 19.1, 23.1, 139, 345 }, + [54] = { 20.2, 23, 139, 345 }, + [55] = { 57.7, 20.9, 139, 345 }, + [56] = { 55.3, 20.7, 139, 345 }, + [57] = { 20.8, 20.1, 139, 345 }, + }, + ["lvl"] = "56-58", + }, + [8603] = { + ["coords"] = { + [1] = { 83.2, 71.1, 28, 345 }, + [2] = { 83, 65.8, 28, 345 }, + [3] = { 76.6, 56.7, 28, 345 }, + [4] = { 76.5, 56.5, 28, 345 }, + [5] = { 72.2, 54.5, 28, 345 }, + [6] = { 75.9, 53.6, 28, 345 }, + [7] = { 75.4, 52.4, 28, 345 }, + [8] = { 75.6, 52.1, 28, 345 }, + [9] = { 75.9, 43.7, 28, 345 }, + [10] = { 69.5, 37.1, 28, 345 }, + [11] = { 65.8, 26.3, 28, 345 }, + [12] = { 67.3, 26.2, 28, 345 }, + [13] = { 66.6, 22.9, 28, 345 }, + [14] = { 25.2, 95.8, 139, 345 }, + [15] = { 44.5, 91, 139, 345 }, + [16] = { 25, 89.9, 139, 345 }, + [17] = { 61.7, 86.3, 139, 345 }, + [18] = { 31.1, 85.4, 139, 345 }, + [19] = { 64.4, 85.1, 139, 345 }, + [20] = { 43, 83.4, 139, 345 }, + [21] = { 34.4, 83.2, 139, 345 }, + [22] = { 36.1, 82.7, 139, 345 }, + [23] = { 70.2, 82.4, 139, 345 }, + [24] = { 39.8, 81.8, 139, 345 }, + [25] = { 57.4, 80.8, 139, 345 }, + [26] = { 70.6, 80.4, 139, 345 }, + [27] = { 23.6, 79.9, 139, 345 }, + [28] = { 17.9, 79.7, 139, 345 }, + [29] = { 46.5, 79.6, 139, 345 }, + [30] = { 17.7, 79.6, 139, 345 }, + [31] = { 54.6, 79.5, 139, 345 }, + [32] = { 22, 79.4, 139, 345 }, + [33] = { 49.8, 79.3, 139, 345 }, + [34] = { 55.6, 78.8, 139, 345 }, + [35] = { 51.4, 78.5, 139, 345 }, + [36] = { 54.6, 78.2, 139, 345 }, + [37] = { 31, 78.1, 139, 345 }, + [38] = { 12.9, 77.3, 139, 345 }, + [39] = { 72.4, 76.4, 139, 345 }, + [40] = { 17.1, 76.4, 139, 345 }, + [41] = { 16.6, 74.9, 139, 345 }, + [42] = { 16.7, 74.6, 139, 345 }, + [43] = { 33.8, 74.5, 139, 345 }, + [44] = { 70, 74.3, 139, 345 }, + [45] = { 37, 74.2, 139, 345 }, + [46] = { 75.5, 73.9, 139, 345 }, + [47] = { 47.2, 73.7, 139, 345 }, + [48] = { 23.1, 72.9, 139, 345 }, + [49] = { 78.1, 72.5, 139, 345 }, + [50] = { 44.3, 71.8, 139, 345 }, + [51] = { 21.4, 71.8, 139, 345 }, + [52] = { 72.9, 71.8, 139, 345 }, + [53] = { 33.6, 71.5, 139, 345 }, + [54] = { 66.1, 71.4, 139, 345 }, + [55] = { 68.7, 71.1, 139, 345 }, + [56] = { 34.8, 70.5, 139, 345 }, + [57] = { 25.8, 70.5, 139, 345 }, + [58] = { 41.3, 70.4, 139, 345 }, + [59] = { 78.6, 70, 139, 345 }, + [60] = { 30.2, 69.6, 139, 345 }, + [61] = { 40.7, 69.5, 139, 345 }, + [62] = { 20.7, 69.2, 139, 345 }, + [63] = { 36.9, 69, 139, 345 }, + [64] = { 80.1, 68.8, 139, 345 }, + [65] = { 43.1, 68, 139, 345 }, + [66] = { 68.3, 67.8, 139, 345 }, + [67] = { 66.4, 67.6, 139, 345 }, + [68] = { 75.8, 67.5, 139, 345 }, + [69] = { 47.5, 66.2, 139, 345 }, + [70] = { 19.3, 66.2, 139, 345 }, + [71] = { 49.5, 66, 139, 345 }, + [72] = { 68.6, 65.5, 139, 345 }, + [73] = { 17.1, 65.3, 139, 345 }, + [74] = { 41.1, 65.3, 139, 345 }, + [75] = { 65.5, 64.7, 139, 345 }, + [76] = { 77.7, 63.7, 139, 345 }, + [77] = { 32.3, 63.5, 139, 345 }, + [78] = { 70.7, 62.9, 139, 345 }, + [79] = { 51.5, 62.7, 139, 345 }, + [80] = { 47.6, 61.5, 139, 345 }, + [81] = { 59.2, 61.4, 139, 345 }, + [82] = { 66.8, 61.4, 139, 345 }, + [83] = { 67.9, 61, 139, 345 }, + [84] = { 48.4, 60.3, 139, 345 }, + [85] = { 55.2, 59.4, 139, 345 }, + [86] = { 69.6, 59.1, 139, 345 }, + [87] = { 75.6, 58.8, 139, 345 }, + [88] = { 50.8, 58.8, 139, 345 }, + [89] = { 59.3, 58.2, 139, 345 }, + [90] = { 10, 58, 139, 345 }, + [91] = { 66.5, 57.1, 139, 345 }, + [92] = { 51.5, 56.3, 139, 345 }, + [93] = { 55.3, 56.3, 139, 345 }, + [94] = { 54.7, 55.3, 139, 345 }, + [95] = { 58.5, 55, 139, 345 }, + [96] = { 72.4, 54.5, 139, 345 }, + [97] = { 60.9, 54.2, 139, 345 }, + [98] = { 60.1, 54.1, 139, 345 }, + [99] = { 51.2, 53.8, 139, 345 }, + [100] = { 55.7, 53.3, 139, 345 }, + [101] = { 55, 49.7, 139, 345 }, + [102] = { 5.8, 46, 139, 345 }, + [103] = { 7.6, 45.9, 139, 345 }, + [104] = { 6.8, 42.2, 139, 345 }, + }, + ["lvl"] = "54-55", + }, + [8605] = { + ["coords"] = { + [1] = { 70.4, 50.8, 139, 345 }, + [2] = { 69.9, 49, 139, 345 }, + [3] = { 58.5, 48.5, 139, 345 }, + [4] = { 70.3, 46.5, 139, 345 }, + [5] = { 32.3, 45.1, 139, 345 }, + [6] = { 67.5, 44.7, 139, 345 }, + [7] = { 50.6, 44.7, 139, 345 }, + [8] = { 62.9, 44.6, 139, 345 }, + [9] = { 72, 44.3, 139, 345 }, + [10] = { 32.9, 44.1, 139, 345 }, + [11] = { 32.2, 42.2, 139, 345 }, + [12] = { 69.2, 41.7, 139, 345 }, + [13] = { 52.3, 41.5, 139, 345 }, + [14] = { 45, 41.2, 139, 345 }, + [15] = { 43.8, 40.7, 139, 345 }, + [16] = { 31.8, 39.9, 139, 345 }, + [17] = { 46.6, 39.6, 139, 345 }, + [18] = { 35.8, 39.6, 139, 345 }, + [19] = { 48.9, 39.6, 139, 345 }, + [20] = { 73.9, 39.6, 139, 345 }, + [21] = { 23.1, 39, 139, 345 }, + [22] = { 56.3, 38.9, 139, 345 }, + [23] = { 53.8, 38.7, 139, 345 }, + [24] = { 53.5, 37.9, 139, 345 }, + [25] = { 63.4, 37.6, 139, 345 }, + [26] = { 69, 35.9, 139, 345 }, + [27] = { 62, 34.1, 139, 345 }, + [28] = { 68.7, 34.1, 139, 345 }, + [29] = { 54.5, 33.3, 139, 345 }, + [30] = { 75.1, 33.1, 139, 345 }, + [31] = { 59.1, 32.8, 139, 345 }, + [32] = { 64, 32.6, 139, 345 }, + [33] = { 61.6, 32.4, 139, 345 }, + [34] = { 66.9, 31.5, 139, 345 }, + [35] = { 63.9, 30.1, 139, 345 }, + [36] = { 18.7, 28.9, 139, 345 }, + [37] = { 66, 28.8, 139, 345 }, + [38] = { 49, 27.8, 139, 345 }, + [39] = { 65.4, 27.8, 139, 345 }, + [40] = { 18.1, 27.4, 139, 345 }, + [41] = { 68.9, 26.7, 139, 345 }, + [42] = { 65.5, 26.5, 139, 345 }, + [43] = { 60.1, 26.5, 139, 345 }, + [44] = { 61.3, 23.5, 139, 345 }, + }, + ["lvl"] = "56-57", + }, + [8606] = { + ["coords"] = { + [1] = { 54.5, 70.5, 139, 345 }, + [2] = { 53.3, 70.5, 139, 345 }, + [3] = { 51.7, 70.3, 139, 345 }, + [4] = { 52.7, 69.6, 139, 345 }, + [5] = { 50.7, 69, 139, 345 }, + [6] = { 55.9, 68.9, 139, 345 }, + [7] = { 52.7, 67.5, 139, 345 }, + [8] = { 72.1, 67.4, 139, 345 }, + [9] = { 52.3, 67.3, 139, 345 }, + [10] = { 55.8, 66.9, 139, 345 }, + [11] = { 57, 66.2, 139, 345 }, + [12] = { 73.7, 65.7, 139, 345 }, + [13] = { 74.3, 63.8, 139, 345 }, + [14] = { 72.7, 63.6, 139, 345 }, + [15] = { 73.6, 63.3, 139, 345 }, + [16] = { 76, 63.1, 139, 345 }, + [17] = { 77.3, 61.5, 139, 345 }, + [18] = { 72.7, 61.1, 139, 345 }, + [19] = { 74.9, 60.3, 139, 345 }, + [20] = { 76.4, 58.9, 139, 345 }, + [21] = { 77.1, 58, 139, 345 }, + [22] = { 76, 56.8, 139, 345 }, + }, + ["lvl"] = "55-56", + }, + [8607] = { + ["coords"] = { + [1] = { 56.6, 69.1, 139, 345 }, + [2] = { 54.2, 69, 139, 345 }, + [3] = { 54.8, 65.4, 139, 345 }, + [4] = { 76.3, 62.7, 139, 345 }, + [5] = { 74.7, 62.4, 139, 345 }, + [6] = { 73.9, 61.3, 139, 345 }, + [7] = { 76.6, 58.6, 139, 345 }, + [8] = { 76.4, 58.9, 139, 345 }, + [9] = { 77.1, 58, 139, 345 }, + [10] = { 76, 56.8, 139, 345 }, + }, + ["lvl"] = "54-55", + }, + [8608] = { + ["coords"] = {}, + ["lvl"] = "52-53", + }, + [8609] = { + ["coords"] = { + [1] = { 65.5, 24.3, 4, 900 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [8610] = { + ["coords"] = { + [1] = { 22, 49.6, 16, 600 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [8611] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [8612] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [8613] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "26", + }, + [8615] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "60", + }, + [8616] = { + ["coords"] = {}, + ["lvl"] = "55", + }, + [8617] = { + ["coords"] = { + [1] = { 67.7, 32.2, 440, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "45", + }, + [8636] = { + ["coords"] = { + [1] = { 48.8, 68.4, 47, 350 }, + }, + ["lvl"] = "50", + ["rnk"] = "1", + }, + [8637] = { + ["coords"] = { + [1] = { 62.3, 62.4, 51, 500 }, + [2] = { 62.7, 62.2, 51, 500 }, + [3] = { 62.5, 61.6, 51, 500 }, + [4] = { 63.6, 61.4, 51, 500 }, + [5] = { 63.9, 60.4, 51, 500 }, + [6] = { 63.1, 59.6, 51, 500 }, + [7] = { 63.6, 59.3, 51, 500 }, + [8] = { 63.1, 58.7, 51, 500 }, + [9] = { 62.9, 58.5, 51, 500 }, + [10] = { 62.7, 58.1, 51, 500 }, + [11] = { 69.2, 34.2, 51, 500 }, + [12] = { 68.9, 33.2, 51, 500 }, + [13] = { 69.3, 32.7, 51, 500 }, + }, + ["lvl"] = "44-45", + }, + [8656] = { + ["coords"] = {}, + ["lvl"] = "52", + }, + [8657] = { + ["coords"] = {}, + ["lvl"] = "52", + }, + [8658] = { + ["coords"] = {}, + ["lvl"] = "52", + }, + [8659] = { + ["coords"] = { + [1] = { 55.5, 34.1, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [8660] = { + ["coords"] = { + [1] = { 17.9, 65.6, 16, 115200 }, + }, + ["lvl"] = "48", + ["rnk"] = "4", + }, + [8661] = { + ["coords"] = { + [1] = { 52, 29.7, 440, 300 }, + }, + ["lvl"] = "50", + }, + [8662] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [8663] = { + ["coords"] = {}, + ["lvl"] = "43-44", + ["rnk"] = "1", + }, + [8664] = { + ["coords"] = { + [1] = { 42.7, 33.1, 215, 250 }, + [2] = { 63.3, 80.2, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [8665] = { + ["coords"] = { + [1] = { 31.7, 56.5, 141, 300 }, + [2] = { 69.6, 45.9, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [8666] = { + ["coords"] = { + [1] = { 35.5, 41.4, 1519, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [8667] = { + ["coords"] = { + [1] = { 36.1, 64.1, 440, 300 }, + [2] = { 59.6, 58.1, 440, 300 }, + [3] = { 43, 46.6, 440, 300 }, + [4] = { 45.6, 46, 440, 300 }, + [5] = { 38.6, 42.5, 440, 300 }, + }, + ["lvl"] = "43-45", + }, + [8668] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [8669] = { + ["coords"] = { + [1] = { 28.9, 57.7, 141, 300 }, + [2] = { 56.4, 51.8, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [8670] = { + ["coords"] = { + [1] = { 53.2, 60.8, 1519, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [8671] = { + ["coords"] = { + [1] = { 23.8, 71.8, 1537, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [8672] = { + ["coords"] = { + [1] = { 67.5, 52.4, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [8673] = { + ["coords"] = { + [1] = { 55.9, 62.7, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [8674] = { + ["coords"] = { + [1] = { 38, 27.4, 215, 250 }, + [2] = { 40.4, 51.8, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [8675] = { + ["coords"] = { + [1] = { 51.4, 44.3, 4, 300 }, + [2] = { 52.7, 42.7, 4, 300 }, + [3] = { 59.7, 42.3, 4, 300 }, + [4] = { 51.4, 41.5, 4, 300 }, + [5] = { 53.9, 41.4, 4, 300 }, + [6] = { 46.8, 40.9, 4, 300 }, + [7] = { 52.5, 39.1, 4, 300 }, + [8] = { 50, 38, 4, 300 }, + [9] = { 47, 38, 4, 300 }, + [10] = { 53.1, 37.9, 4, 300 }, + [11] = { 61.6, 36.6, 4, 300 }, + [12] = { 44.7, 36.1, 4, 300 }, + [13] = { 60.1, 35.1, 4, 300 }, + [14] = { 52, 33.6, 4, 300 }, + [15] = { 60.9, 45.5, 4, 300 }, + }, + ["lvl"] = "50-51", + }, + [8676] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [8677] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [8678] = { + ["coords"] = { + [1] = { 45.3, 90.9, 16, 333 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [8679] = { + ["coords"] = { + [1] = { 51.1, 35.2, 33, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "42", + }, + [8680] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [8681] = { + ["coords"] = { + [1] = { 43.4, 29.3, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [8696] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "36", + }, + [8716] = { + ["coords"] = { + [1] = { 39.2, 77.1, 4, 900 }, + [2] = { 39.2, 73.7, 4, 900 }, + [3] = { 38.1, 72.3, 4, 900 }, + [4] = { 37.2, 71.1, 4, 900 }, + [5] = { 34.9, 70.8, 4, 900 }, + [6] = { 34.6, 64.2, 4, 900 }, + [7] = { 74.2, 23.8, 33, 900 }, + [8] = { 73.8, 23.2, 33, 900 }, + [9] = { 72.6, 23, 33, 900 }, + [10] = { 72.4, 19.6, 33, 900 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [8717] = { + ["coords"] = { + [1] = { 40.1, 75.6, 4, 900 }, + [2] = { 39.5, 75.2, 4, 900 }, + [3] = { 40.2, 72.7, 4, 900 }, + [4] = { 40, 69.5, 4, 900 }, + [5] = { 39.2, 68, 4, 900 }, + [6] = { 41.1, 67.7, 4, 900 }, + [7] = { 42.2, 66.3, 4, 900 }, + [8] = { 38.3, 66.1, 4, 900 }, + [9] = { 41, 64.9, 4, 900 }, + [10] = { 38.9, 64.8, 4, 900 }, + [11] = { 42, 63.4, 4, 900 }, + [12] = { 41.1, 62, 4, 900 }, + [13] = { 34.8, 61.9, 4, 900 }, + [14] = { 39, 61.8, 4, 900 }, + [15] = { 43, 61.7, 4, 900 }, + [16] = { 34.2, 61, 4, 900 }, + [17] = { 42.2, 60.8, 4, 900 }, + [18] = { 42.5, 60.8, 4, 900 }, + [19] = { 40.1, 60.8, 4, 900 }, + [20] = { 38.2, 60.5, 4, 900 }, + [21] = { 44.1, 59.8, 4, 900 }, + [22] = { 41, 59.1, 4, 900 }, + [23] = { 37, 59.1, 4, 900 }, + [24] = { 44.1, 59, 4, 900 }, + [25] = { 34.9, 59, 4, 900 }, + [26] = { 38.9, 59, 4, 900 }, + [27] = { 43, 58.9, 4, 900 }, + [28] = { 38.2, 57.9, 4, 900 }, + [29] = { 41.8, 57.8, 4, 900 }, + [30] = { 40, 57.7, 4, 900 }, + [31] = { 57.2, 57.6, 4, 120 }, + [32] = { 43, 57.6, 4, 900 }, + [33] = { 59.3, 57.2, 4, 120 }, + [34] = { 60.1, 56.8, 4, 120 }, + [35] = { 56.5, 56.7, 4, 120 }, + [36] = { 38.9, 56, 4, 900 }, + [37] = { 59.6, 56, 4, 120 }, + [38] = { 56.9, 55.9, 4, 120 }, + [39] = { 36.9, 55.8, 4, 900 }, + [40] = { 41.3, 55.8, 4, 900 }, + [41] = { 57.6, 55.5, 4, 120 }, + [42] = { 59, 55.4, 4, 120 }, + [43] = { 58.2, 55.3, 4, 120 }, + [44] = { 40.1, 54.5, 4, 900 }, + [45] = { 36, 54.4, 4, 900 }, + [46] = { 34.3, 54.3, 4, 900 }, + [47] = { 38.1, 54.1, 4, 900 }, + [48] = { 39.2, 53.3, 4, 900 }, + [49] = { 37.2, 53.1, 4, 900 }, + [50] = { 35.2, 53.1, 4, 900 }, + [51] = { 35.8, 51.5, 4, 900 }, + [52] = { 74.4, 20.6, 33, 900 }, + [53] = { 72.5, 18.3, 33, 900 }, + [54] = { 72.2, 17.9, 33, 900 }, + [55] = { 74.3, 17.6, 33, 900 }, + [56] = { 73.7, 16.9, 33, 900 }, + [57] = { 72.6, 16.8, 33, 900 }, + [58] = { 74.3, 16.3, 33, 900 }, + [59] = { 73.6, 15.1, 33, 900 }, + [60] = { 73.2, 14.4, 33, 900 }, + [61] = { 72.2, 14.3, 33, 900 }, + [62] = { 74.3, 14.2, 33, 900 }, + [63] = { 73.8, 13.7, 33, 900 }, + [64] = { 72.7, 13.7, 33, 900 }, + [65] = { 73.1, 12.9, 33, 900 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [8718] = { + ["coords"] = { + [1] = { 39.8, 76.9, 4, 900 }, + [2] = { 43.4, 75.1, 4, 900 }, + [3] = { 39.6, 75.1, 4, 900 }, + [4] = { 39.7, 71.5, 4, 900 }, + [5] = { 40.2, 70.8, 4, 900 }, + [6] = { 42, 67.5, 4, 900 }, + [7] = { 40.2, 64.6, 4, 900 }, + [8] = { 42.3, 62.8, 4, 900 }, + [9] = { 42.1, 62.7, 4, 900 }, + [10] = { 44.1, 61.2, 4, 900 }, + [11] = { 35, 60.8, 4, 900 }, + [12] = { 43.3, 58.9, 4, 900 }, + [13] = { 57.1, 56.4, 4, 120 }, + [14] = { 58.9, 56.3, 4, 120 }, + [15] = { 37.9, 55.8, 4, 900 }, + [16] = { 36.4, 53.3, 4, 900 }, + [17] = { 72.6, 17.8, 33, 900 }, + [18] = { 74.2, 15.1, 33, 900 }, + [19] = { 73.4, 13.8, 33, 900 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [8719] = { + ["coords"] = { + [1] = { 53.6, 60.5, 1519, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [8720] = { + ["coords"] = { + [1] = { 24.2, 74.7, 1537, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [8721] = { + ["coords"] = { + [1] = { 64.4, 52.4, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [8722] = { + ["coords"] = { + [1] = { 37.7, 27, 215, 250 }, + [2] = { 38.9, 50.2, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [8723] = { + ["coords"] = { + [1] = { 28.9, 58.2, 141, 300 }, + [2] = { 56.2, 54, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [8724] = { + ["coords"] = { + [1] = { 55.8, 64.8, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [8736] = { + ["coords"] = { + [1] = { 52.3, 27.7, 440, 300 }, + }, + ["lvl"] = "53", + }, + [8737] = { + ["coords"] = { + [1] = { 44.7, 8.1, 490, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "40", + }, + [8738] = { + ["coords"] = { + [1] = { 62.7, 36.3, 17, 275 }, + }, + ["lvl"] = "40", + }, + [8756] = { + ["coords"] = { + [1] = { 60.9, 67, 16, 600 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + ["rnk"] = "1", + }, + [8757] = { + ["coords"] = { + [1] = { 60.1, 65.9, 16, 600 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + ["rnk"] = "1", + }, + [8758] = { + ["coords"] = { + [1] = { 60.6, 66, 16, 600 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + ["rnk"] = "1", + }, + [8759] = { + ["coords"] = { + [1] = { 12.7, 75.3, 16, 333 }, + [2] = { 19.7, 70.9, 16, 333 }, + [3] = { 20.9, 69.5, 16, 333 }, + [4] = { 20.7, 68.5, 16, 333 }, + [5] = { 19.2, 67.4, 16, 333 }, + [6] = { 19.5, 66.6, 16, 333 }, + [7] = { 20.4, 65.1, 16, 333 }, + [8] = { 22.1, 64.1, 16, 333 }, + [9] = { 22.5, 62.7, 16, 333 }, + [10] = { 22.5, 61.8, 16, 333 }, + [11] = { 22.9, 61.5, 16, 333 }, + [12] = { 17.9, 59.7, 16, 333 }, + [13] = { 18.8, 58.7, 16, 333 }, + [14] = { 22.6, 58.1, 16, 333 }, + [15] = { 21.5, 57.6, 16, 333 }, + [16] = { 22.4, 57.3, 16, 333 }, + [17] = { 20.5, 56.5, 16, 333 }, + [18] = { 23, 56.1, 16, 333 }, + [19] = { 21.8, 55.2, 16, 333 }, + [20] = { 22.4, 54.4, 16, 333 }, + [21] = { 18.7, 54.2, 16, 333 }, + [22] = { 20.5, 54.2, 16, 333 }, + [23] = { 21.1, 53.9, 16, 333 }, + [24] = { 16, 52.9, 16, 333 }, + [25] = { 18.4, 52.8, 16, 333 }, + [26] = { 18.4, 51.3, 16, 333 }, + [27] = { 19.8, 50.9, 16, 333 }, + [28] = { 20.7, 49.1, 16, 333 }, + [29] = { 23, 46.8, 16, 333 }, + [30] = { 97.4, 48.9, 331, 333 }, + }, + ["lvl"] = "45-47", + }, + [8760] = { + ["coords"] = { + [1] = { 13.7, 82.1, 16, 333 }, + [2] = { 25.9, 81.5, 16, 333 }, + [3] = { 34, 81.2, 16, 333 }, + [4] = { 33.8, 79, 16, 333 }, + [5] = { 20.3, 75.6, 16, 333 }, + }, + ["lvl"] = "49-50", + }, + [8761] = { + ["coords"] = { + [1] = { 57.3, 88.6, 16, 333 }, + [2] = { 56, 86.5, 16, 333 }, + [3] = { 57.2, 86.4, 16, 333 }, + [4] = { 47.6, 85.9, 16, 333 }, + [5] = { 57.3, 84.8, 16, 333 }, + [6] = { 53.4, 84.6, 16, 333 }, + [7] = { 54.6, 84.6, 16, 333 }, + [8] = { 46.8, 84.4, 16, 333 }, + [9] = { 58.6, 84.3, 16, 333 }, + [10] = { 56, 84.3, 16, 333 }, + [11] = { 49.4, 84.3, 16, 333 }, + [12] = { 46.1, 83.4, 16, 333 }, + [13] = { 46.8, 82.8, 16, 333 }, + [14] = { 60, 82.6, 16, 333 }, + [15] = { 45.6, 82.6, 16, 333 }, + [16] = { 53.2, 82.6, 16, 333 }, + [17] = { 50.7, 82.6, 16, 333 }, + [18] = { 52, 82.6, 16, 333 }, + [19] = { 49.4, 82.6, 16, 333 }, + [20] = { 48, 82.5, 16, 333 }, + [21] = { 54.7, 82.3, 16, 333 }, + [22] = { 58.6, 82.3, 16, 333 }, + [23] = { 44.9, 81.6, 16, 333 }, + [24] = { 53.4, 80.8, 16, 333 }, + [25] = { 49.6, 80.8, 16, 333 }, + [26] = { 45.5, 80.7, 16, 333 }, + [27] = { 48.1, 80.7, 16, 333 }, + [28] = { 54.7, 80.6, 16, 333 }, + [29] = { 50.9, 80.5, 16, 333 }, + [30] = { 51.8, 80.5, 16, 333 }, + [31] = { 60, 80.4, 16, 333 }, + [32] = { 58.6, 80.3, 16, 333 }, + [33] = { 44.9, 79.9, 16, 333 }, + [34] = { 57.4, 78.9, 16, 333 }, + [35] = { 49.3, 78.8, 16, 333 }, + [36] = { 53.6, 78.8, 16, 333 }, + [37] = { 43.9, 78.8, 16, 333 }, + [38] = { 46.7, 78.8, 16, 333 }, + [39] = { 54.6, 78.7, 16, 333 }, + [40] = { 51, 78.6, 16, 333 }, + [41] = { 58.6, 78.6, 16, 333 }, + [42] = { 58.5, 76.8, 16, 333 }, + [43] = { 57.2, 76.7, 16, 333 }, + [44] = { 45.5, 76.7, 16, 333 }, + [45] = { 52, 76.6, 16, 333 }, + [46] = { 49.3, 75.7, 16, 333 }, + [47] = { 50.8, 75.6, 16, 333 }, + [48] = { 46.7, 74.9, 16, 333 }, + [49] = { 48.1, 74.7, 16, 333 }, + [50] = { 40.9, 73.6, 16, 333 }, + [51] = { 39.6, 71.9, 16, 333 }, + [52] = { 40.3, 71.7, 16, 333 }, + [53] = { 43.1, 71.6, 16, 333 }, + [54] = { 37.7, 71.2, 16, 333 }, + [55] = { 42.3, 70.9, 16, 333 }, + [56] = { 37.3, 70.7, 16, 333 }, + [57] = { 40.6, 70, 16, 333 }, + [58] = { 36.6, 69.3, 16, 333 }, + [59] = { 40.4, 69.1, 16, 333 }, + [60] = { 38.2, 68.9, 16, 333 }, + [61] = { 35.5, 68.6, 16, 333 }, + [62] = { 36.9, 67, 16, 333 }, + [63] = { 35.8, 66.7, 16, 333 }, + [64] = { 35.2, 65.9, 16, 333 }, + [65] = { 36.1, 65.8, 16, 333 }, + [66] = { 52.1, 35.4, 16, 333 }, + [67] = { 73.2, 33.3, 16, 333 }, + [68] = { 52.1, 33, 16, 333 }, + [69] = { 51, 31.5, 16, 333 }, + [70] = { 72.9, 31.2, 16, 333 }, + [71] = { 52.9, 30.9, 16, 333 }, + [72] = { 50.3, 30.6, 16, 333 }, + [73] = { 53.2, 30.4, 16, 333 }, + [74] = { 71, 30.3, 16, 333 }, + [75] = { 70.5, 29.3, 16, 333 }, + [76] = { 52.7, 29.2, 16, 333 }, + [77] = { 76.3, 28.3, 16, 333 }, + [78] = { 70.5, 28.1, 16, 333 }, + [79] = { 51.1, 27.8, 16, 333 }, + [80] = { 66.4, 27.4, 16, 333 }, + [81] = { 81, 27.2, 16, 333 }, + [82] = { 49.4, 27.1, 16, 333 }, + [83] = { 50.2, 26.4, 16, 333 }, + [84] = { 47.5, 26.4, 16, 333 }, + [85] = { 68.4, 26.3, 16, 333 }, + [86] = { 48.7, 26.3, 16, 333 }, + [87] = { 52.7, 26.2, 16, 333 }, + [88] = { 78, 26.1, 16, 333 }, + [89] = { 50.7, 25.6, 16, 333 }, + [90] = { 79.6, 25.4, 16, 333 }, + [91] = { 78.3, 25.3, 16, 333 }, + [92] = { 51.6, 25, 16, 333 }, + [93] = { 49, 24.9, 16, 333 }, + [94] = { 52.8, 24.4, 16, 333 }, + [95] = { 64.4, 24.3, 16, 333 }, + [96] = { 83, 24.1, 16, 333 }, + [97] = { 56.1, 24, 16, 333 }, + [98] = { 66.5, 23.5, 16, 333 }, + [99] = { 75.7, 22.6, 16, 333 }, + [100] = { 64.6, 22.5, 16, 333 }, + [101] = { 73.1, 22.2, 16, 333 }, + [102] = { 56.6, 21.5, 16, 333 }, + [103] = { 57.6, 21.4, 16, 333 }, + [104] = { 61.8, 20.6, 16, 333 }, + [105] = { 48.5, 20.6, 16, 333 }, + [106] = { 58.5, 19.4, 16, 333 }, + [107] = { 55.2, 19, 16, 333 }, + [108] = { 46.2, 18.6, 16, 333 }, + [109] = { 81.2, 18.6, 16, 333 }, + [110] = { 56.5, 18.4, 16, 333 }, + [111] = { 61.9, 18.3, 16, 333 }, + [112] = { 62.6, 17.5, 16, 333 }, + [113] = { 63.9, 17.5, 16, 333 }, + [114] = { 58.5, 17.3, 16, 333 }, + [115] = { 55.3, 16.9, 16, 333 }, + [116] = { 56.7, 16.6, 16, 333 }, + [117] = { 63.3, 16.3, 16, 333 }, + [118] = { 61.2, 15.7, 16, 333 }, + [119] = { 68.4, 15.2, 16, 333 }, + [120] = { 53.6, 15, 16, 333 }, + [121] = { 52.3, 14.4, 16, 333 }, + [122] = { 61.3, 13.7, 16, 333 }, + [123] = { 81.2, 79.5, 618, 333 }, + [124] = { 82.2, 79.3, 618, 333 }, + }, + ["lvl"] = "52-53", + }, + [8762] = { + ["coords"] = { + [1] = { 24.4, 49.8, 16, 333 }, + [2] = { 31.7, 49.8, 16, 333 }, + [3] = { 30.7, 49.2, 16, 333 }, + [4] = { 24.9, 49.1, 16, 333 }, + [5] = { 30.7, 49, 16, 333 }, + [6] = { 32, 48.8, 16, 333 }, + [7] = { 32.3, 48.6, 16, 333 }, + [8] = { 30.4, 48.3, 16, 333 }, + [9] = { 25, 48.2, 16, 333 }, + [10] = { 25.7, 48, 16, 333 }, + [11] = { 29.7, 45.8, 16, 333 }, + [12] = { 41.2, 42.8, 16, 333 }, + [13] = { 37, 42, 16, 333 }, + [14] = { 38.5, 41.1, 16, 333 }, + [15] = { 37, 40.8, 16, 333 }, + [16] = { 37.6, 39.5, 16, 333 }, + [17] = { 40.3, 39.3, 16, 333 }, + [18] = { 38.7, 37.3, 16, 333 }, + [19] = { 45.1, 35.9, 16, 333 }, + [20] = { 40.8, 35.7, 16, 333 }, + [21] = { 40.4, 34, 16, 333 }, + [22] = { 47, 33.5, 16, 333 }, + [23] = { 46.1, 31.2, 16, 333 }, + [24] = { 41.3, 28.9, 16, 333 }, + }, + ["lvl"] = "47-48", + }, + [8763] = { + ["coords"] = { + [1] = { 36.6, 83.3, 16, 333 }, + [2] = { 35.5, 82.1, 16, 333 }, + [3] = { 32.2, 81.8, 16, 333 }, + [4] = { 25, 80.7, 16, 333 }, + [5] = { 29.3, 80.6, 16, 333 }, + [6] = { 20, 79.4, 16, 333 }, + [7] = { 37, 68.7, 16, 333 }, + }, + ["lvl"] = "49-50", + }, + [8764] = { + ["coords"] = { + [1] = { 74.5, 33.4, 16, 333 }, + [2] = { 73.6, 28.5, 16, 333 }, + [3] = { 77.4, 28, 16, 333 }, + [4] = { 78.3, 27, 16, 333 }, + [5] = { 71.1, 26.7, 16, 333 }, + [6] = { 64.5, 26, 16, 333 }, + [7] = { 68.6, 23.9, 16, 333 }, + [8] = { 65.7, 22.4, 16, 333 }, + [9] = { 82.3, 16.8, 16, 333 }, + [10] = { 74.4, 16.8, 16, 333 }, + }, + ["lvl"] = "52-53", + }, + [8765] = { + ["coords"] = {}, + ["lvl"] = "50-51", + }, + [8766] = { + ["coords"] = { + [1] = { 38.8, 71.3, 16, 333 }, + [2] = { 44.5, 71.1, 16, 333 }, + [3] = { 41.8, 69.8, 16, 333 }, + [4] = { 36.2, 67.9, 16, 333 }, + [5] = { 70.6, 31.2, 16, 333 }, + [6] = { 67.6, 29.6, 16, 333 }, + [7] = { 74.6, 29.5, 16, 333 }, + [8] = { 71.8, 29.2, 16, 333 }, + [9] = { 69.2, 27.4, 16, 333 }, + [10] = { 66.4, 25.5, 16, 333 }, + [11] = { 76.8, 25.4, 16, 333 }, + [12] = { 80.4, 24.5, 16, 333 }, + [13] = { 71.6, 24.3, 16, 333 }, + [14] = { 74.7, 12.7, 16, 333 }, + }, + ["lvl"] = "52-53", + }, + [8767] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [8776] = { + ["coords"] = {}, + ["lvl"] = "55", + }, + [8777] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "35", + }, + [8796] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [8816] = { + ["coords"] = { + [1] = { 48.2, 23.1, 4, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [8836] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [8837] = { + ["coords"] = { + [1] = { 17.7, 42.6, 51, 500 }, + [2] = { 17.2, 38.4, 51, 500 }, + [3] = { 13.6, 37.6, 51, 500 }, + [4] = { 15.7, 37.5, 51, 500 }, + [5] = { 16, 36.8, 51, 500 }, + [6] = { 13.5, 36, 51, 500 }, + [7] = { 15.9, 35.9, 51, 500 }, + [8] = { 15.4, 35.3, 51, 500 }, + [9] = { 14.4, 34.6, 51, 500 }, + }, + ["lvl"] = "47-49", + }, + [8856] = { + ["coords"] = { + [1] = { 69.8, 16.9, 1519, 240 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [8876] = { + ["coords"] = {}, + ["lvl"] = "42-44", + }, + [8877] = { + ["coords"] = {}, + ["lvl"] = "44-45", + }, + [8878] = { + ["coords"] = { + [1] = { 55.6, 56.5, 405, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [8879] = { + ["coords"] = { + [1] = { 38.4, 55.3, 1537, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [8880] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [8881] = { + ["coords"] = { + [1] = { 10.6, 59.8, 11, 300 }, + [2] = { 51, 26.4, 440, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [8882] = { + ["coords"] = { + [1] = { 50.9, 26.5, 440, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [8883] = { + ["coords"] = { + [1] = { 50.9, 26.4, 440, 300 }, + [2] = { 51.1, 26.4, 440, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [8884] = { + ["coords"] = { + [1] = { 50.4, 26.6, 440, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [8885] = { + ["coords"] = { + [1] = { 78, 80.5, 47, 300 }, + [2] = { 50.5, 26.6, 440, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [8886] = { + ["coords"] = {}, + ["lvl"] = "18-19", + }, + [8887] = { + ["coords"] = { + [1] = { 7.2, 93.6, 3, 500 }, + [2] = { 68, 21.1, 46, 500 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [8888] = { + ["coords"] = { + [1] = { 29, 28.9, 46, 500 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [8889] = { + ["coords"] = { + [1] = { 25.6, 21.6, 46, 370 }, + [2] = { 24.6, 20.7, 46, 370 }, + [3] = { 31.1, 90.9, 51, 370 }, + [4] = { 29.8, 89.8, 51, 370 }, + [5] = { 27.8, 87.2, 51, 370 }, + [6] = { 32.1, 86.3, 51, 370 }, + [7] = { 29.4, 84.3, 51, 370 }, + [8] = { 25.2, 79.3, 51, 370 }, + [9] = { 27.7, 77.2, 51, 370 }, + [10] = { 25.2, 75.2, 51, 370 }, + }, + ["lvl"] = "48-49", + ["rnk"] = "1", + }, + [8890] = { + ["coords"] = { + [1] = { 25.7, 88.5, 51, 370 }, + [2] = { 31.3, 88.4, 51, 370 }, + [3] = { 27.1, 84.7, 51, 370 }, + [4] = { 30.9, 83.2, 51, 370 }, + [5] = { 24.9, 79.3, 51, 370 }, + [6] = { 25.2, 77.1, 51, 370 }, + [7] = { 27.8, 87.2, 51, 370 }, + }, + ["lvl"] = "49-50", + ["rnk"] = "1", + }, + [8891] = { + ["coords"] = {}, + ["lvl"] = "50-51", + ["rnk"] = "1", + }, + [8892] = { + ["coords"] = {}, + ["lvl"] = "51-52", + ["rnk"] = "1", + }, + [8893] = { + ["coords"] = {}, + ["lvl"] = "52-53", + ["rnk"] = "1", + }, + [8894] = { + ["coords"] = {}, + ["lvl"] = "52-53", + ["rnk"] = "1", + }, + [8895] = { + ["coords"] = {}, + ["lvl"] = "53-54", + ["rnk"] = "1", + }, + [8896] = { + ["coords"] = {}, + ["lvl"] = "52-54", + }, + [8897] = { + ["coords"] = {}, + ["lvl"] = "52-54", + }, + [8898] = { + ["coords"] = {}, + ["lvl"] = "54-55", + ["rnk"] = "1", + }, + [8899] = { + ["coords"] = {}, + ["lvl"] = "54-55", + ["rnk"] = "1", + }, + [8900] = { + ["coords"] = {}, + ["lvl"] = "54-55", + }, + [8901] = { + ["coords"] = {}, + ["lvl"] = "54-55", + }, + [8902] = { + ["coords"] = {}, + ["lvl"] = "54-56", + }, + [8903] = { + ["coords"] = {}, + ["lvl"] = "55-56", + ["rnk"] = "1", + }, + [8904] = { + ["coords"] = {}, + ["lvl"] = "55-56", + }, + [8905] = { + ["coords"] = {}, + ["lvl"] = "53-54", + ["rnk"] = "1", + }, + [8906] = { + ["coords"] = {}, + ["lvl"] = "54-55", + ["rnk"] = "1", + }, + [8907] = { + ["coords"] = {}, + ["lvl"] = "55-56", + ["rnk"] = "1", + }, + [8908] = { + ["coords"] = {}, + ["lvl"] = "55-56", + ["rnk"] = "1", + }, + [8909] = { + ["coords"] = {}, + ["lvl"] = "50-52", + ["rnk"] = "1", + }, + [8910] = { + ["coords"] = {}, + ["lvl"] = "52-54", + ["rnk"] = "1", + }, + [8911] = { + ["coords"] = {}, + ["lvl"] = "54-56", + ["rnk"] = "1", + }, + [8912] = { + ["coords"] = {}, + ["lvl"] = "50-51", + ["rnk"] = "1", + }, + [8913] = { + ["coords"] = {}, + ["lvl"] = "52-53", + ["rnk"] = "1", + }, + [8914] = { + ["coords"] = {}, + ["lvl"] = "53-54", + ["rnk"] = "1", + }, + [8915] = { + ["coords"] = {}, + ["lvl"] = "54-55", + }, + [8916] = { + ["coords"] = {}, + ["lvl"] = "52-54", + }, + [8917] = { + ["coords"] = { + [1] = { 22.2, 22.9, 46, 500 }, + [2] = { 22.6, 22.5, 46, 500 }, + [3] = { 24.4, 22.4, 46, 500 }, + [4] = { 25.1, 22.3, 46, 500 }, + [5] = { 21, 22, 46, 500 }, + [6] = { 22.5, 21.8, 46, 500 }, + [7] = { 26.7, 20.6, 46, 500 }, + [8] = { 26.6, 92.6, 51, 500 }, + [9] = { 27.1, 92.2, 51, 500 }, + [10] = { 29.5, 92, 51, 500 }, + [11] = { 30.4, 91.9, 51, 500 }, + [12] = { 25, 91.4, 51, 500 }, + [13] = { 27, 91.2, 51, 500 }, + [14] = { 24.9, 90.5, 51, 500 }, + [15] = { 29.2, 90.5, 51, 500 }, + [16] = { 27.4, 90, 51, 500 }, + [17] = { 24.5, 89.8, 51, 500 }, + [18] = { 32.6, 89.6, 51, 500 }, + [19] = { 26.4, 89.5, 51, 500 }, + [20] = { 26.1, 89, 51, 500 }, + [21] = { 28.6, 88.9, 51, 500 }, + [22] = { 24.2, 88.1, 51, 500 }, + [23] = { 32.7, 87.1, 51, 500 }, + [24] = { 24.7, 86.7, 51, 500 }, + [25] = { 32.9, 86.5, 51, 500 }, + [26] = { 26, 86.4, 51, 500 }, + [27] = { 24.4, 86.2, 51, 500 }, + [28] = { 33, 85.3, 51, 500 }, + [29] = { 28.8, 85, 51, 500 }, + [30] = { 25.8, 84.5, 51, 500 }, + [31] = { 32.4, 84.2, 51, 500 }, + [32] = { 29, 84.1, 51, 500 }, + [33] = { 32.3, 83.5, 51, 500 }, + [34] = { 31.5, 83.4, 51, 500 }, + [35] = { 28.9, 82.6, 51, 500 }, + [36] = { 30.1, 82.4, 51, 500 }, + [37] = { 30.8, 82.3, 51, 500 }, + [38] = { 31.6, 82.2, 51, 500 }, + }, + ["lvl"] = "46-48", + }, + [8920] = { + ["coords"] = {}, + ["lvl"] = "54-56", + }, + [8921] = { + ["coords"] = {}, + ["lvl"] = "49-50", + }, + [8922] = { + ["coords"] = {}, + ["lvl"] = "54-55", + }, + [8923] = { + ["coords"] = {}, + ["lvl"] = "57", + ["rnk"] = "2", + }, + [8924] = { + ["coords"] = { + [1] = { 25.6, 87.7, 51, 108000 }, + }, + ["lvl"] = "50", + ["rnk"] = "2", + }, + [8925] = { + ["coords"] = {}, + ["lvl"] = "50-52", + }, + [8926] = { + ["coords"] = {}, + ["lvl"] = "50-52", + }, + [8927] = { + ["coords"] = {}, + ["lvl"] = "50-52", + }, + [8928] = { + ["coords"] = {}, + ["lvl"] = "50-52", + }, + [8929] = { + ["coords"] = {}, + ["lvl"] = "58", + ["rnk"] = "1", + }, + [8931] = { + ["coords"] = { + [1] = { 52.9, 53.7, 40, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [8932] = { + ["coords"] = {}, + ["lvl"] = "50-52", + }, + [8933] = { + ["coords"] = {}, + ["lvl"] = "50-52", + }, + [8934] = { + ["coords"] = { + [1] = { 52.2, 52.8, 40, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [8935] = { + ["coords"] = {}, + ["lvl"] = "20", + }, + [8937] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [8956] = { + ["coords"] = { + [1] = { 57.4, 25.5, 331, 300 }, + [2] = { 56.5, 89.8, 361, 300 }, + [3] = { 57.8, 87.5, 361, 300 }, + [4] = { 45.7, 87.4, 361, 300 }, + [5] = { 48, 87.2, 361, 300 }, + [6] = { 58.3, 87.2, 361, 300 }, + [7] = { 58.2, 86.8, 361, 300 }, + [8] = { 58, 86.7, 361, 300 }, + [9] = { 46.2, 86.5, 361, 300 }, + [10] = { 48.5, 86.4, 361, 300 }, + [11] = { 49.3, 85.5, 361, 300 }, + [12] = { 45.8, 85.4, 361, 300 }, + [13] = { 56.8, 84.9, 361, 300 }, + [14] = { 45.1, 84.9, 361, 300 }, + [15] = { 49.6, 84.7, 361, 300 }, + [16] = { 44.5, 83.9, 361, 300 }, + [17] = { 54.9, 83.8, 361, 300 }, + [18] = { 45.7, 83.8, 361, 300 }, + [19] = { 56.2, 83.7, 361, 300 }, + [20] = { 55.5, 83.2, 361, 300 }, + [21] = { 43.8, 82.8, 361, 300 }, + [22] = { 44.5, 82.1, 361, 300 }, + [23] = { 45.6, 82, 361, 300 }, + [24] = { 49.1, 79.7, 361, 300 }, + [25] = { 48.4, 78.8, 361, 300 }, + [26] = { 41.5, 78.7, 361, 300 }, + [27] = { 41.2, 78.5, 361, 300 }, + [28] = { 40.4, 78, 361, 300 }, + [29] = { 40.8, 77.2, 361, 300 }, + [30] = { 46.4, 77.2, 361, 300 }, + [31] = { 48.5, 76.8, 361, 300 }, + [32] = { 48, 76, 361, 300 }, + [33] = { 46.3, 75.5, 361, 300 }, + [34] = { 41.5, 75.3, 361, 300 }, + [35] = { 47.9, 74.6, 361, 300 }, + [36] = { 45.8, 74.2, 361, 300 }, + [37] = { 46.8, 74.2, 361, 300 }, + [38] = { 45.2, 73.6, 361, 300 }, + [39] = { 45.7, 73.5, 361, 300 }, + [40] = { 47.1, 73.1, 361, 300 }, + [41] = { 45.6, 72.8, 361, 300 }, + [42] = { 45.1, 72.7, 361, 300 }, + [43] = { 46.6, 72.5, 361, 300 }, + [44] = { 37.4, 71.9, 361, 300 }, + [45] = { 39.7, 70.1, 361, 300 }, + [46] = { 41.6, 70.1, 361, 300 }, + }, + ["lvl"] = "47-48", + }, + [8957] = { + ["coords"] = { + [1] = { 54.4, 28.1, 361, 300 }, + [2] = { 53.5, 28.1, 361, 300 }, + [3] = { 56.1, 27.4, 361, 300 }, + [4] = { 56.7, 26.5, 361, 300 }, + [5] = { 53.3, 26.4, 361, 300 }, + [6] = { 54.5, 25, 361, 300 }, + [7] = { 56.7, 24.9, 361, 300 }, + [8] = { 55.1, 24.1, 361, 300 }, + [9] = { 56.4, 24, 361, 300 }, + [10] = { 55.6, 23.4, 361, 300 }, + [11] = { 56.1, 22.2, 361, 300 }, + [12] = { 55.6, 21.1, 361, 300 }, + [13] = { 56.2, 20.6, 361, 300 }, + [14] = { 63, 19.7, 361, 300 }, + [15] = { 64.6, 19.7, 361, 300 }, + [16] = { 57.6, 17.8, 361, 300 }, + [17] = { 60.6, 17.1, 361, 300 }, + [18] = { 61.8, 17.1, 361, 300 }, + [19] = { 62.5, 16.1, 361, 300 }, + [20] = { 52.1, 16.1, 361, 300 }, + [21] = { 53.2, 16, 361, 300 }, + [22] = { 51.3, 15.4, 361, 300 }, + [23] = { 53.9, 15.4, 361, 300 }, + [24] = { 60.2, 14.9, 361, 300 }, + [25] = { 61.9, 13.5, 361, 300 }, + [26] = { 63.6, 13.5, 361, 300 }, + [27] = { 49.9, 13.1, 361, 300 }, + [28] = { 50.9, 12.7, 361, 300 }, + [29] = { 50.4, 12.6, 361, 300 }, + [30] = { 50.9, 12.2, 361, 300 }, + [31] = { 49.6, 12.2, 361, 300 }, + [32] = { 51.6, 12.1, 361, 300 }, + [33] = { 56.1, 11.7, 361, 300 }, + [34] = { 55.4, 10.8, 361, 300 }, + [35] = { 56, 9.9, 361, 300 }, + [36] = { 56.3, 6.6, 361, 300 }, + [37] = { 24.7, 45.5, 618, 300 }, + }, + ["lvl"] = "51-52", + }, + [8958] = { + ["coords"] = { + [1] = { 43.8, 67.6, 361, 300 }, + [2] = { 45, 67.4, 361, 300 }, + [3] = { 43.7, 65.7, 361, 300 }, + [4] = { 43.3, 65.6, 361, 300 }, + [5] = { 44.7, 65.5, 361, 300 }, + [6] = { 44.2, 65.3, 361, 300 }, + [7] = { 43.7, 65.2, 361, 300 }, + [8] = { 44.4, 64.9, 361, 300 }, + [9] = { 44, 64.8, 361, 300 }, + [10] = { 43, 63.7, 361, 300 }, + [11] = { 44.1, 63.4, 361, 300 }, + [12] = { 42.8, 63.3, 361, 300 }, + [13] = { 44.7, 63.3, 361, 300 }, + [14] = { 43.6, 62.9, 361, 300 }, + [15] = { 42.9, 62.9, 361, 300 }, + [16] = { 42.3, 62.5, 361, 300 }, + [17] = { 42, 58.6, 361, 300 }, + [18] = { 38.2, 56, 361, 300 }, + [19] = { 39.6, 51.6, 361, 300 }, + [20] = { 38.8, 45.3, 361, 300 }, + [21] = { 39.3, 45.1, 361, 300 }, + [22] = { 38.1, 45.1, 361, 300 }, + [23] = { 37.7, 45, 361, 300 }, + [24] = { 38.3, 44.4, 361, 300 }, + [25] = { 38.6, 44.3, 361, 300 }, + [26] = { 38.8, 44.3, 361, 300 }, + [27] = { 37.9, 43.9, 361, 300 }, + [28] = { 37.9, 43.2, 361, 300 }, + [29] = { 37.6, 42.9, 361, 300 }, + [30] = { 38.2, 41.9, 361, 300 }, + [31] = { 48, 38.5, 361, 300 }, + [32] = { 49.1, 35.9, 361, 300 }, + [33] = { 40, 32.9, 361, 300 }, + [34] = { 39.3, 31, 361, 300 }, + [35] = { 39.8, 30.7, 361, 300 }, + [36] = { 41.7, 24.5, 361, 300 }, + [37] = { 41.2, 23.6, 361, 300 }, + [38] = { 46.8, 19.6, 361, 300 }, + [39] = { 44.5, 18, 361, 300 }, + [40] = { 49.7, 16.3, 361, 300 }, + [41] = { 46.2, 15.6, 361, 300 }, + }, + ["lvl"] = "49-50", + }, + [8959] = { + ["coords"] = { + [1] = { 57.2, 27.5, 331, 300 }, + [2] = { 55.1, 27.3, 331, 300 }, + [3] = { 57.5, 26.7, 331, 300 }, + [4] = { 54.6, 26.6, 331, 300 }, + [5] = { 56, 25, 331, 300 }, + [6] = { 56.3, 91.8, 361, 300 }, + [7] = { 54.2, 91.6, 361, 300 }, + [8] = { 56.7, 90.9, 361, 300 }, + [9] = { 53.7, 90.8, 361, 300 }, + [10] = { 55.1, 89.2, 361, 300 }, + [11] = { 52.5, 89, 361, 300 }, + [12] = { 50.4, 87.6, 361, 300 }, + [13] = { 52.6, 87.3, 361, 300 }, + [14] = { 52, 86.3, 361, 300 }, + [15] = { 51.2, 86.2, 361, 300 }, + [16] = { 55, 85.8, 361, 300 }, + [17] = { 51.5, 85.6, 361, 300 }, + [18] = { 54.1, 85.4, 361, 300 }, + [19] = { 53.4, 84.8, 361, 300 }, + [20] = { 54.3, 84.8, 361, 300 }, + [21] = { 53.8, 84.1, 361, 300 }, + [22] = { 53.2, 83.4, 361, 300 }, + [23] = { 53.6, 83.3, 361, 300 }, + [24] = { 49.1, 83.2, 361, 300 }, + [25] = { 50.3, 83, 361, 300 }, + [26] = { 52.1, 82.9, 361, 300 }, + [27] = { 53.6, 82.8, 361, 300 }, + [28] = { 52.7, 82.3, 361, 300 }, + [29] = { 52.4, 82.2, 361, 300 }, + [30] = { 49.7, 82.1, 361, 300 }, + [31] = { 48.7, 82.1, 361, 300 }, + [32] = { 42.2, 82.1, 361, 300 }, + [33] = { 42, 81.8, 361, 300 }, + [34] = { 41.5, 81.7, 361, 300 }, + [35] = { 47.9, 81.4, 361, 300 }, + [36] = { 49.2, 81.4, 361, 300 }, + [37] = { 42.7, 81.2, 361, 300 }, + [38] = { 45, 81.2, 361, 300 }, + [39] = { 41.7, 81, 361, 300 }, + [40] = { 51.4, 80.6, 361, 300 }, + [41] = { 42.2, 80.6, 361, 300 }, + [42] = { 44.6, 80.5, 361, 300 }, + [43] = { 47.4, 80.5, 361, 300 }, + [44] = { 41.1, 80.5, 361, 300 }, + [45] = { 43.3, 80.4, 361, 300 }, + [46] = { 49.7, 80.4, 361, 300 }, + [47] = { 50.3, 80.1, 361, 300 }, + [48] = { 48, 79.6, 361, 300 }, + [49] = { 46.4, 78.6, 361, 300 }, + [50] = { 47.4, 77, 361, 300 }, + [51] = { 42, 76.2, 361, 300 }, + [52] = { 37.7, 74.6, 361, 300 }, + [53] = { 37.3, 73.6, 361, 300 }, + }, + ["lvl"] = "47-48", + }, + [8960] = { + ["coords"] = { + [1] = { 52.3, 62, 148, 300 }, + [2] = { 45, 70.9, 361, 300 }, + [3] = { 45.6, 70.6, 361, 300 }, + [4] = { 45.2, 70.4, 361, 300 }, + [5] = { 44.4, 70.2, 361, 300 }, + [6] = { 45.7, 70, 361, 300 }, + [7] = { 45.2, 69.7, 361, 300 }, + [8] = { 44.4, 69.4, 361, 300 }, + [9] = { 44.9, 69.4, 361, 300 }, + [10] = { 44.5, 68.3, 361, 300 }, + [11] = { 45.5, 68.2, 361, 300 }, + [12] = { 42.4, 57.7, 361, 300 }, + [13] = { 38, 54.4, 361, 300 }, + [14] = { 38, 52.8, 361, 300 }, + [15] = { 38.2, 50.8, 361, 300 }, + [16] = { 39.3, 50.6, 361, 300 }, + [17] = { 39.2, 47.3, 361, 300 }, + [18] = { 38.2, 47.2, 361, 300 }, + [19] = { 38.8, 46, 361, 300 }, + [20] = { 38.3, 39.7, 361, 300 }, + [21] = { 37, 39.3, 361, 300 }, + [22] = { 37.6, 38.9, 361, 300 }, + [23] = { 39.3, 38.8, 361, 300 }, + [24] = { 49.4, 35.5, 361, 300 }, + [25] = { 41.4, 34.3, 361, 300 }, + [26] = { 40.4, 34.3, 361, 300 }, + [27] = { 49.6, 33.6, 361, 300 }, + [28] = { 41.2, 33.5, 361, 300 }, + [29] = { 41.3, 33.5, 361, 300 }, + [30] = { 40.7, 33.3, 361, 300 }, + [31] = { 40.7, 32.9, 361, 300 }, + [32] = { 50.3, 32.6, 361, 300 }, + [33] = { 49.3, 32.6, 361, 300 }, + [34] = { 50.8, 31.9, 361, 300 }, + [35] = { 51.5, 31.9, 361, 300 }, + [36] = { 51.9, 31.8, 361, 300 }, + [37] = { 51.3, 31.6, 361, 300 }, + [38] = { 52.2, 30.9, 361, 300 }, + [39] = { 52.3, 30.6, 361, 300 }, + [40] = { 51.6, 30, 361, 300 }, + [41] = { 52, 29.8, 361, 300 }, + [42] = { 40.4, 25.3, 361, 300 }, + [43] = { 42.9, 24.1, 361, 300 }, + [44] = { 45, 24, 361, 300 }, + [45] = { 44.3, 22.5, 361, 300 }, + [46] = { 43.3, 22.2, 361, 300 }, + [47] = { 45.5, 18.5, 361, 300 }, + [48] = { 47.6, 16, 361, 300 }, + [49] = { 50.3, 15.4, 361, 300 }, + }, + ["lvl"] = "49-50", + }, + [8961] = { + ["coords"] = { + [1] = { 53.8, 27.7, 361, 300 }, + [2] = { 52.7, 27.5, 361, 300 }, + [3] = { 55.5, 26.9, 361, 300 }, + [4] = { 54.5, 26.6, 361, 300 }, + [5] = { 56.5, 21.2, 361, 300 }, + [6] = { 64.8, 20.4, 361, 300 }, + [7] = { 62.1, 20.3, 361, 300 }, + [8] = { 56.6, 19.4, 361, 300 }, + [9] = { 62, 19, 361, 300 }, + [10] = { 57.3, 18.6, 361, 300 }, + [11] = { 58.3, 16.9, 361, 300 }, + [12] = { 53.8, 13.5, 361, 300 }, + [13] = { 56.7, 12.9, 361, 300 }, + [14] = { 56.1, 8.2, 361, 300 }, + [15] = { 24.9, 46.1, 618, 300 }, + [16] = { 54.5, 25, 361, 300 }, + }, + ["lvl"] = "51-52", + }, + [8962] = { + ["coords"] = { + [1] = { 29.2, 53.6, 44, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [8963] = { + ["coords"] = { + [1] = { 29.2, 53.6, 44, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [8964] = { + ["coords"] = { + [1] = { 29.2, 33.6, 46, 900 }, + [2] = { 29.2, 27.2, 46, 900 }, + [3] = { 35.8, 98.3, 51, 900 }, + }, + ["lvl"] = "50-52", + ["rnk"] = "1", + }, + [8965] = { + ["coords"] = { + [1] = { 29.3, 53.6, 44, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [8976] = { + ["coords"] = { + [1] = { 26.2, 50.6, 46, 115200 }, + }, + ["lvl"] = "60", + ["rnk"] = "2", + }, + [8977] = { + ["coords"] = { + [1] = { 79.7, 47.4, 46, 500 }, + }, + ["lvl"] = "54", + }, + [8978] = { + ["coords"] = { + [1] = { 53.9, 40.8, 46, 18000 }, + }, + ["lvl"] = "57", + ["rnk"] = "4", + }, + [8979] = { + ["coords"] = { + [1] = { 39.8, 32.7, 46, 18000 }, + }, + ["lvl"] = "59", + ["rnk"] = "4", + }, + [8980] = { + ["coords"] = {}, + ["lvl"] = "53", + }, + [8981] = { + ["coords"] = { + [1] = { 77, 27, 46, 37800 }, + }, + ["lvl"] = "56", + ["rnk"] = "4", + }, + [8982] = { + ["coords"] = {}, + ["lvl"] = "56", + ["rnk"] = "1", + }, + [8983] = { + ["coords"] = {}, + ["lvl"] = "57", + ["rnk"] = "1", + }, + [8996] = { + ["coords"] = {}, + ["lvl"] = "47", + }, + [8997] = { + ["coords"] = { + [1] = { 38.3, 43, 148, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [9016] = { + ["coords"] = {}, + ["lvl"] = "54", + ["rnk"] = "1", + }, + [9017] = { + ["coords"] = {}, + ["lvl"] = "55", + ["rnk"] = "1", + }, + [9018] = { + ["coords"] = {}, + ["lvl"] = "52", + ["rnk"] = "1", + }, + [9019] = { + ["coords"] = {}, + ["lvl"] = "59", + ["rnk"] = "1", + }, + [9020] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "54", + ["rnk"] = "1", + }, + [9021] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "52", + ["rnk"] = "1", + }, + [9022] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "52", + ["rnk"] = "1", + }, + [9023] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "52", + ["rnk"] = "1", + }, + [9024] = { + ["coords"] = {}, + ["lvl"] = "52", + ["rnk"] = "2", + }, + [9025] = { + ["coords"] = {}, + ["lvl"] = "51", + ["rnk"] = "2", + }, + [9026] = { + ["coords"] = { + [1] = { 25, 76, 51, 900 }, + }, + ["lvl"] = "52", + ["rnk"] = "1", + }, + [9027] = { + ["coords"] = {}, + ["lvl"] = "56", + ["rnk"] = "1", + }, + [9028] = { + ["coords"] = {}, + ["lvl"] = "54", + ["rnk"] = "1", + }, + [9029] = { + ["coords"] = {}, + ["lvl"] = "54", + ["rnk"] = "1", + }, + [9030] = { + ["coords"] = {}, + ["lvl"] = "53", + ["rnk"] = "1", + }, + [9031] = { + ["coords"] = {}, + ["lvl"] = "54", + ["rnk"] = "1", + }, + [9032] = { + ["coords"] = {}, + ["lvl"] = "53", + ["rnk"] = "1", + }, + [9033] = { + ["coords"] = {}, + ["lvl"] = "57", + ["rnk"] = "1", + }, + [9034] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [9035] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [9036] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "56", + ["rnk"] = "1", + }, + [9037] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "56", + ["rnk"] = "1", + }, + [9038] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "56", + ["rnk"] = "1", + }, + [9039] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "57", + ["rnk"] = "1", + }, + [9040] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "56", + ["rnk"] = "1", + }, + [9041] = { + ["coords"] = {}, + ["lvl"] = "56", + ["rnk"] = "2", + }, + [9042] = { + ["coords"] = {}, + ["lvl"] = "55", + ["rnk"] = "2", + }, + [9043] = { + ["coords"] = { + [1] = { 34.7, 27.9, 46, 500 }, + [2] = { 35.4, 27.7, 46, 500 }, + [3] = { 35.9, 27.6, 46, 500 }, + [4] = { 35.5, 26.8, 46, 500 }, + [5] = { 33.4, 26.6, 46, 500 }, + [6] = { 35.4, 26.5, 46, 500 }, + [7] = { 34.4, 25.8, 46, 500 }, + [8] = { 43, 99.3, 51, 500 }, + [9] = { 44, 99, 51, 500 }, + [10] = { 44.6, 98.8, 51, 500 }, + [11] = { 44.1, 97.7, 51, 500 }, + [12] = { 41.3, 97.5, 51, 500 }, + [13] = { 44, 97.4, 51, 500 }, + [14] = { 42.6, 96.4, 51, 500 }, + }, + ["lvl"] = "53-54", + ["rnk"] = "1", + }, + [9044] = { + ["coords"] = { + [1] = { 32.8, 32, 46, 500 }, + [2] = { 32.6, 31.8, 46, 500 }, + [3] = { 34.8, 28.4, 46, 500 }, + [4] = { 33.3, 28.3, 46, 500 }, + [5] = { 34.6, 28.1, 46, 500 }, + [6] = { 33.2, 28, 46, 500 }, + [7] = { 34.6, 27.9, 46, 500 }, + [8] = { 35.9, 27.8, 46, 500 }, + [9] = { 33.2, 26.7, 46, 500 }, + [10] = { 34.6, 26.3, 46, 500 }, + [11] = { 34.4, 26.1, 46, 500 }, + [12] = { 34.5, 25.7, 46, 500 }, + [13] = { 43.1, 99.9, 51, 500 }, + [14] = { 41.2, 99.8, 51, 500 }, + [15] = { 42.9, 99.5, 51, 500 }, + [16] = { 41.1, 99.4, 51, 500 }, + [17] = { 42.9, 99.2, 51, 500 }, + [18] = { 44.6, 99.1, 51, 500 }, + [19] = { 41.1, 97.7, 51, 500 }, + [20] = { 42.9, 97.1, 51, 500 }, + [21] = { 42.6, 96.8, 51, 500 }, + [22] = { 42.8, 96.3, 51, 500 }, + }, + ["lvl"] = "53-54", + ["rnk"] = "1", + }, + [9045] = { + ["coords"] = {}, + ["lvl"] = "54-55", + ["rnk"] = "1", + }, + [9046] = { + ["coords"] = { + [1] = { 34.9, 27.9, 46, 150 }, + [2] = { 43.3, 99.2, 51, 150 }, + }, + ["lvl"] = "55", + ["rnk"] = "2", + }, + [9047] = { + ["coords"] = { + [1] = { 23.8, 48.6, 141, 300 }, + [2] = { 31.5, 8.2, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [9056] = { + ["coords"] = {}, + ["lvl"] = "54", + ["rnk"] = "1", + }, + [9076] = { + ["coords"] = { + [1] = { 45.5, 21.3, 215, 375 }, + [2] = { 77.5, 22, 1638, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [9077] = { + ["coords"] = { + [1] = { 5.8, 47.5, 3, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [9078] = { + ["coords"] = { + [1] = { 2.9, 47.8, 3, 300 }, + [2] = { 81.9, 39.1, 51, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "58", + }, + [9079] = { + ["coords"] = { + [1] = { 3, 47.8, 3, 300 }, + [2] = { 82.1, 39.1, 51, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "58", + }, + [9080] = { + ["coords"] = { + [1] = { 5.9, 47.6, 3, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "58", + }, + [9081] = { + ["coords"] = { + [1] = { 6, 47.7, 3, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "58", + }, + [9082] = { + ["coords"] = { + [1] = { 3.4, 48.1, 3, 300 }, + [2] = { 82.5, 39.4, 51, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [9083] = { + ["coords"] = { + [1] = { 3.1, 48.3, 3, 300 }, + [2] = { 82.2, 39.7, 51, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "52", + }, + [9084] = { + ["coords"] = { + [1] = { 3.3, 48.3, 3, 300 }, + [2] = { 82.4, 39.7, 51, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "52", + }, + [9085] = { + ["coords"] = { + [1] = { 3.2, 48.1, 3, 300 }, + [2] = { 82.3, 39.5, 51, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "52", + }, + [9086] = { + ["coords"] = { + [1] = { 3.2, 48.4, 3, 300 }, + [2] = { 82.3, 39.8, 51, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "52", + }, + [9087] = { + ["coords"] = { + [1] = { 44.2, 23.8, 215, 250 }, + [2] = { 71.1, 34.2, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [9096] = { + ["coords"] = {}, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [9097] = { + ["coords"] = {}, + ["lvl"] = "54-55", + ["rnk"] = "1", + }, + [9098] = { + ["coords"] = {}, + ["lvl"] = "54-55", + ["rnk"] = "1", + }, + [9099] = { + ["coords"] = { + [1] = { 49.3, 31.1, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [9116] = { + ["coords"] = { + [1] = { 51.3, 81.5, 361, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "57", + }, + [9117] = { + ["coords"] = { + [1] = { 41.9, 2.7, 490, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [9118] = { + ["coords"] = { + [1] = { 45.5, 8.7, 490, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "51", + }, + [9119] = { + ["coords"] = { + [1] = { 42.9, 9.6, 490, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "51", + }, + [9136] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "56", + }, + [9156] = { + ["coords"] = {}, + ["lvl"] = "57", + ["rnk"] = "1", + }, + [9157] = { + ["coords"] = { + [1] = { 43, 10, 490, 0 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [9158] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [9162] = { + ["coords"] = { + [1] = { 60.7, 38.9, 490, 300 }, + [2] = { 62.7, 35.9, 490, 300 }, + [3] = { 64.8, 35.4, 490, 300 }, + [4] = { 65.4, 35.3, 490, 300 }, + [5] = { 58.1, 33.9, 490, 300 }, + [6] = { 72.5, 31.6, 490, 300 }, + [7] = { 66.2, 30.4, 490, 300 }, + [8] = { 70.1, 28.1, 490, 300 }, + [9] = { 69, 26.4, 490, 300 }, + [10] = { 70.4, 20.6, 490, 300 }, + }, + ["lvl"] = "49-50", + }, + [9163] = { + ["coords"] = { + [1] = { 57.2, 80.4, 490, 300 }, + [2] = { 44, 72.7, 490, 300 }, + [3] = { 58.3, 72.5, 490, 300 }, + [4] = { 56.3, 72.4, 490, 300 }, + [5] = { 50.8, 71.2, 490, 300 }, + [6] = { 57.1, 70.6, 490, 300 }, + [7] = { 46.7, 69.9, 490, 300 }, + [8] = { 44.6, 69.9, 490, 300 }, + [9] = { 51, 69.8, 490, 300 }, + [10] = { 53.2, 69.8, 490, 300 }, + [11] = { 45.2, 69.4, 490, 300 }, + [12] = { 50, 68.5, 490, 300 }, + [13] = { 47.2, 67, 490, 300 }, + [14] = { 49.5, 66.7, 490, 300 }, + [15] = { 52.2, 66.3, 490, 300 }, + [16] = { 52.7, 65.6, 490, 300 }, + [17] = { 46.7, 65.2, 490, 300 }, + [18] = { 43, 65.2, 490, 300 }, + [19] = { 56.4, 65.1, 490, 300 }, + [20] = { 48.9, 65, 490, 300 }, + [21] = { 54.3, 63.9, 490, 300 }, + [22] = { 47, 63.8, 490, 300 }, + [23] = { 53.4, 63.3, 490, 300 }, + [24] = { 52, 63.1, 490, 300 }, + [25] = { 58.8, 63.1, 490, 300 }, + [26] = { 50.4, 62.9, 490, 300 }, + [27] = { 60.8, 62.9, 490, 300 }, + [28] = { 56.3, 62.9, 490, 300 }, + [29] = { 46.3, 62.7, 490, 300 }, + [30] = { 46.9, 61.7, 490, 300 }, + [31] = { 43.2, 61.4, 490, 300 }, + [32] = { 53.5, 61.3, 490, 300 }, + [33] = { 48.9, 60.4, 490, 300 }, + [34] = { 54.9, 60.3, 490, 300 }, + [35] = { 51.3, 60.2, 490, 300 }, + [36] = { 60.9, 60.2, 490, 300 }, + [37] = { 49.9, 60.1, 490, 300 }, + [38] = { 52.3, 59, 490, 300 }, + [39] = { 58.6, 56.9, 490, 300 }, + [40] = { 57.8, 54, 490, 300 }, + [41] = { 59.8, 51.4, 490, 300 }, + [42] = { 57.7, 51, 490, 300 }, + [43] = { 60.3, 48.9, 490, 300 }, + [44] = { 57.1, 47.6, 490, 300 }, + [45] = { 58.3, 46.3, 490, 300 }, + [46] = { 52.7, 31.8, 490, 300 }, + [47] = { 54.5, 28.5, 490, 300 }, + [48] = { 46.5, 28, 490, 300 }, + [49] = { 46.2, 24.7, 490, 300 }, + [50] = { 50.9, 19.6, 490, 300 }, + [51] = { 47.3, 26.3, 490, 300 }, + }, + ["lvl"] = "51-52", + }, + [9164] = { + ["coords"] = { + [1] = { 39.4, 83.5, 490, 300 }, + [2] = { 40.1, 81.2, 490, 300 }, + [3] = { 31.6, 78, 490, 300 }, + [4] = { 34.8, 76.8, 490, 300 }, + [5] = { 42.1, 76.2, 490, 300 }, + [6] = { 30, 76.1, 490, 300 }, + [7] = { 39, 76, 490, 300 }, + [8] = { 40.8, 75.4, 490, 300 }, + [9] = { 42.5, 73.6, 490, 300 }, + [10] = { 29.2, 73.4, 490, 300 }, + [11] = { 37.9, 71.3, 490, 300 }, + [12] = { 33.3, 70.7, 490, 300 }, + [13] = { 41.9, 70.6, 490, 300 }, + [14] = { 42.2, 69.1, 490, 300 }, + [15] = { 34.9, 69.1, 490, 300 }, + [16] = { 33, 68.7, 490, 300 }, + [17] = { 30.9, 68.3, 490, 300 }, + [18] = { 38.5, 67.8, 490, 300 }, + [19] = { 40.6, 67.3, 490, 300 }, + [20] = { 38.9, 67, 490, 300 }, + [21] = { 27.5, 66.1, 490, 300 }, + [22] = { 34.1, 64.4, 490, 300 }, + [23] = { 30.2, 64, 490, 300 }, + [24] = { 29.3, 62.9, 490, 300 }, + [25] = { 31.2, 62.9, 490, 300 }, + [26] = { 39.2, 61.4, 490, 300 }, + [27] = { 35.6, 61.1, 490, 300 }, + [28] = { 27, 60.2, 490, 300 }, + [29] = { 26.6, 58.9, 490, 300 }, + [30] = { 42, 58.7, 490, 300 }, + [31] = { 25.6, 57.4, 490, 300 }, + [32] = { 42.5, 57.3, 490, 300 }, + [33] = { 40, 56.1, 490, 300 }, + [34] = { 28.4, 56.1, 490, 300 }, + [35] = { 29.3, 54.8, 490, 300 }, + [36] = { 24.5, 54.2, 490, 300 }, + [37] = { 40.6, 50.2, 490, 300 }, + [38] = { 42.4, 49.8, 490, 300 }, + [39] = { 33.8, 47, 490, 300 }, + [40] = { 42.8, 46.7, 490, 300 }, + [41] = { 29.3, 45.2, 490, 300 }, + [42] = { 28.3, 44, 490, 300 }, + [43] = { 37.3, 43.8, 490, 300 }, + [44] = { 40.9, 41.4, 490, 300 }, + [45] = { 37.4, 38.5, 490, 300 }, + [46] = { 30.1, 38.5, 490, 300 }, + [47] = { 32.2, 38.4, 490, 300 }, + [48] = { 31.1, 37.1, 490, 300 }, + [49] = { 31.9, 35.9, 490, 300 }, + [50] = { 40.9, 35.7, 490, 300 }, + [51] = { 40.1, 34.5, 490, 300 }, + [52] = { 32.1, 30.2, 490, 300 }, + [53] = { 33.6, 30, 490, 300 }, + [54] = { 38.3, 23.6, 490, 300 }, + }, + ["lvl"] = "54-55", + }, + [9165] = { + ["coords"] = { + [1] = { 31.8, 35, 440, 300 }, + [2] = { 31.5, 34.2, 440, 300 }, + [3] = { 32.4, 34.2, 440, 300 }, + [4] = { 31.9, 33.7, 440, 300 }, + [5] = { 31.9, 24.2, 440, 300 }, + [6] = { 32.3, 23.4, 440, 300 }, + [7] = { 32.3, 23.3, 440, 300 }, + [8] = { 31.7, 22.6, 440, 300 }, + [9] = { 79.5, 61.5, 490, 300 }, + [10] = { 79.1, 60.1, 490, 300 }, + [11] = { 80.8, 60, 490, 300 }, + [12] = { 77.2, 59.7, 490, 300 }, + [13] = { 79.8, 59.1, 490, 300 }, + [14] = { 78, 58.7, 490, 300 }, + [15] = { 79.8, 41.4, 490, 300 }, + [16] = { 78, 41.1, 490, 300 }, + [17] = { 80.6, 40, 490, 300 }, + [18] = { 77.1, 39.9, 490, 300 }, + [19] = { 80.5, 39.7, 490, 300 }, + [20] = { 78.7, 39.5, 490, 300 }, + [21] = { 79.4, 38.4, 490, 300 }, + [22] = { 57.7, 35.3, 490, 300 }, + [23] = { 66.1, 34.5, 490, 300 }, + [24] = { 70.9, 22.3, 490, 300 }, + [25] = { 68.4, 21.4, 490, 300 }, + }, + ["lvl"] = "48-50", + }, + [9166] = { + ["coords"] = { + [1] = { 43.6, 92.7, 490, 300 }, + [2] = { 57.3, 92.4, 490, 300 }, + [3] = { 58, 91.4, 490, 300 }, + [4] = { 56.7, 91.2, 490, 300 }, + [5] = { 42.9, 91.1, 490, 300 }, + [6] = { 57.5, 90.5, 490, 300 }, + [7] = { 50.6, 90.2, 490, 300 }, + [8] = { 43.7, 89.9, 490, 300 }, + [9] = { 56.3, 88.5, 490, 300 }, + [10] = { 44.5, 88.4, 490, 300 }, + [11] = { 50.6, 87.4, 490, 300 }, + [12] = { 57.6, 87.4, 490, 300 }, + [13] = { 43.7, 87.3, 490, 300 }, + [14] = { 42.9, 85.9, 490, 300 }, + [15] = { 52.2, 69.8, 490, 300 }, + [16] = { 44.1, 66.2, 490, 300 }, + [17] = { 53.5, 62.9, 490, 300 }, + [18] = { 50.1, 61, 490, 300 }, + [19] = { 56.9, 12.4, 490, 300 }, + [20] = { 56.3, 11.5, 490, 300 }, + [21] = { 50.2, 11.5, 490, 300 }, + [22] = { 50.1, 10.2, 490, 300 }, + [23] = { 57.2, 10, 490, 300 }, + [24] = { 56.3, 8.9, 490, 300 }, + [25] = { 58, 8.8, 490, 300 }, + [26] = { 57.2, 7.4, 490, 300 }, + }, + ["lvl"] = "50-52", + }, + [9167] = { + ["coords"] = { + [1] = { 32.9, 79, 490, 300 }, + [2] = { 36.3, 78.6, 490, 300 }, + [3] = { 36.3, 76.6, 490, 300 }, + [4] = { 39.7, 76.4, 490, 300 }, + [5] = { 36.5, 71.2, 490, 300 }, + [6] = { 31.2, 70.9, 490, 300 }, + [7] = { 31.8, 67.5, 490, 300 }, + [8] = { 34.7, 66.1, 490, 300 }, + [9] = { 39.8, 65.7, 490, 300 }, + [10] = { 26.5, 64.5, 490, 300 }, + [11] = { 36.6, 62.3, 490, 300 }, + [12] = { 21.1, 61.3, 490, 300 }, + [13] = { 25.1, 60.8, 490, 300 }, + [14] = { 20.4, 60.3, 490, 300 }, + [15] = { 23.7, 59.9, 490, 300 }, + [16] = { 22, 59.5, 490, 300 }, + [17] = { 21.1, 58.7, 490, 300 }, + [18] = { 23.3, 57.9, 490, 300 }, + [19] = { 27.4, 57.7, 490, 300 }, + [20] = { 27.1, 55, 490, 300 }, + [21] = { 41.1, 52, 490, 300 }, + [22] = { 38.4, 51.3, 490, 300 }, + [23] = { 23.2, 50.1, 490, 300 }, + [24] = { 22.3, 50, 490, 300 }, + [25] = { 39.5, 49.8, 490, 300 }, + [26] = { 40, 47.9, 490, 300 }, + [27] = { 28.5, 46.8, 490, 300 }, + [28] = { 38.1, 45.8, 490, 300 }, + [29] = { 35.3, 45.5, 490, 300 }, + [30] = { 40.1, 45.3, 490, 300 }, + [31] = { 31.1, 45.3, 490, 300 }, + [32] = { 27.5, 45.3, 490, 300 }, + [33] = { 32, 43.9, 490, 300 }, + [34] = { 25.7, 42.8, 490, 300 }, + [35] = { 36.5, 42.7, 490, 300 }, + [36] = { 32.9, 42.7, 490, 300 }, + [37] = { 40.1, 42.5, 490, 300 }, + [38] = { 23, 41, 490, 300 }, + [39] = { 21.9, 40.7, 490, 300 }, + [40] = { 20.2, 40.3, 490, 300 }, + [41] = { 21.4, 40.2, 490, 300 }, + [42] = { 42.2, 40.1, 490, 300 }, + [43] = { 23.7, 39.9, 490, 300 }, + [44] = { 37.6, 39.7, 490, 300 }, + [45] = { 25.1, 39.2, 490, 300 }, + [46] = { 26.6, 38.7, 490, 300 }, + [47] = { 21, 38.5, 490, 300 }, + [48] = { 41.6, 37.3, 490, 300 }, + [49] = { 32.9, 37.1, 490, 300 }, + [50] = { 38, 37.1, 490, 300 }, + [51] = { 36.8, 36.7, 490, 300 }, + [52] = { 35.6, 35.7, 490, 300 }, + [53] = { 31, 35, 490, 300 }, + [54] = { 35.6, 33, 490, 300 }, + [55] = { 29.3, 31.8, 490, 300 }, + [56] = { 42.5, 31.6, 490, 300 }, + [57] = { 28.3, 30.3, 490, 300 }, + [58] = { 38.1, 28.4, 490, 300 }, + [59] = { 36.6, 27.9, 490, 300 }, + [60] = { 39.2, 19.6, 490, 300 }, + [61] = { 80, 65.5, 1377, 300 }, + [62] = { 79.2, 64.4, 1377, 300 }, + [63] = { 80.9, 63.5, 1377, 300 }, + [64] = { 80, 62.7, 1377, 300 }, + [65] = { 82, 43.9, 1377, 300 }, + [66] = { 80.8, 43.6, 1377, 300 }, + [67] = { 79, 43.2, 1377, 300 }, + [68] = { 80.3, 43.1, 1377, 300 }, + [69] = { 82.7, 42.7, 1377, 300 }, + [70] = { 84.2, 42, 1377, 300 }, + [71] = { 79.9, 41.2, 1377, 300 }, + }, + ["lvl"] = "52-54", + }, + [9176] = { + ["coords"] = { + [1] = { 39.3, 55.3, 46, 500 }, + }, + ["lvl"] = "54", + }, + [9177] = { + ["coords"] = { + [1] = { 84.6, 68.7, 46, 500 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [9178] = { + ["coords"] = {}, + ["lvl"] = "30", + }, + [9179] = { + ["coords"] = { + [1] = { 42.5, 52.5, 3, 330 }, + }, + ["lvl"] = "38", + }, + [9180] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [9196] = { + ["coords"] = {}, + ["lvl"] = "59", + ["rnk"] = "1", + }, + [9197] = { + ["coords"] = {}, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [9198] = { + ["coords"] = {}, + ["lvl"] = "55-56", + ["rnk"] = "1", + }, + [9199] = { + ["coords"] = {}, + ["lvl"] = "54-55", + ["rnk"] = "1", + }, + [9200] = { + ["coords"] = {}, + ["lvl"] = "55-56", + ["rnk"] = "1", + }, + [9201] = { + ["coords"] = {}, + ["lvl"] = "54-55", + ["rnk"] = "1", + }, + [9216] = { + ["coords"] = {}, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [9217] = { + ["coords"] = {}, + ["lvl"] = "58", + ["rnk"] = "2", + }, + [9218] = { + ["coords"] = {}, + ["lvl"] = "58", + ["rnk"] = "2", + }, + [9219] = { + ["coords"] = {}, + ["lvl"] = "57", + ["rnk"] = "2", + }, + [9236] = { + ["coords"] = {}, + ["lvl"] = "58", + ["rnk"] = "1", + }, + [9237] = { + ["coords"] = {}, + ["lvl"] = "59", + ["rnk"] = "1", + }, + [9238] = { + ["coords"] = { + [1] = { 78.3, 74.7, 400, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [9239] = { + ["coords"] = {}, + ["lvl"] = "55-56", + ["rnk"] = "1", + }, + [9240] = { + ["coords"] = {}, + ["lvl"] = "55-56", + ["rnk"] = "1", + }, + [9241] = { + ["coords"] = {}, + ["lvl"] = "56-57", + ["rnk"] = "1", + }, + [9256] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [9257] = { + ["coords"] = {}, + ["lvl"] = "54-55", + ["rnk"] = "1", + }, + [9258] = { + ["coords"] = {}, + ["lvl"] = "55-56", + ["rnk"] = "1", + }, + [9259] = { + ["coords"] = {}, + ["lvl"] = "56-57", + ["rnk"] = "1", + }, + [9260] = { + ["coords"] = {}, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [9261] = { + ["coords"] = {}, + ["lvl"] = "56-57", + ["rnk"] = "1", + }, + [9262] = { + ["coords"] = {}, + ["lvl"] = "56-57", + ["rnk"] = "1", + }, + [9263] = { + ["coords"] = {}, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [9264] = { + ["coords"] = {}, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [9265] = { + ["coords"] = {}, + ["lvl"] = "56-57", + ["rnk"] = "1", + }, + [9266] = { + ["coords"] = {}, + ["lvl"] = "56-57", + ["rnk"] = "1", + }, + [9267] = { + ["coords"] = {}, + ["lvl"] = "55-56", + ["rnk"] = "1", + }, + [9268] = { + ["coords"] = {}, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [9269] = { + ["coords"] = {}, + ["lvl"] = "56-57", + ["rnk"] = "1", + }, + [9270] = { + ["coords"] = { + [1] = { 43.9, 7.1, 490, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "48", + }, + [9271] = { + ["coords"] = { + [1] = { 43.9, 7.2, 490, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "45", + }, + [9272] = { + ["coords"] = { + [1] = { 43.5, 7.4, 490, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "45", + }, + [9273] = { + ["coords"] = { + [1] = { 43.7, 7.2, 490, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "46", + }, + [9274] = { + ["coords"] = { + [1] = { 43.6, 7.2, 490, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "45", + }, + [9275] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [9276] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [9296] = { + ["coords"] = { + [1] = { 50.7, 39.3, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "2", + }, + [9297] = { + ["coords"] = { + [1] = { 32.5, 29.4, 33, 1800 }, + [2] = { 73, 32.7, 45, 650 }, + [3] = { 26.9, 77.1, 33, 1800 }, + [4] = { 4, 44.8, 3, 600 }, + [5] = { 83.2, 35.8, 51, 600 }, + [6] = { 39.4, 27, 215, 500 }, + [7] = { 47, 49.8, 1638, 500 }, + [8] = { 34.8, 30.9, 51, 900 }, + [9] = { 45.1, 63.9, 1637, 600 }, + [10] = { 51.5, 30.3, 17, 600 }, + [11] = { 45.1, 59.8, 406, 600 }, + [12] = { 81.7, 81.8, 47, 600 }, + [13] = { 45.1, 49.1, 400, 600 }, + [14] = { 46.1, 54.8, 8, 900 }, + [15] = { 21.6, 74.1, 405, 550 }, + [16] = { 51.6, 25.4, 440, 600 }, + [17] = { 75.4, 44.4, 357, 600 }, + [18] = { 22, 49.6, 16, 600 }, + [19] = { 44.4, 59.2, 17, 600 }, + [20] = { 60.5, 36.3, 618, 600 }, + [21] = { 35.6, 31.9, 15, 1200 }, + [22] = { 53.9, 70.5, 17, 1200 }, + [23] = { 50.1, 74.9, 148, 600 }, + [24] = { 34.4, 54, 361, 600 }, + [25] = { 12.2, 33.8, 331, 600 }, + [26] = { 73.2, 61.6, 331, 600 }, + [27] = { 32.1, 66.6, 493, 600 }, + [28] = { 65.7, 24.2, 46, 900 }, + [29] = { 48.7, 36.7, 1377, 600 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [9298] = { + ["coords"] = { + [1] = { 31.3, 45.2, 618, 333 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [9299] = { + ["coords"] = { + [1] = { 54, 23.3, 440, 430 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [9316] = { + ["coords"] = { + [1] = { 49.1, 11.2, 17, 413 }, + }, + ["lvl"] = "19", + }, + [9317] = { + ["coords"] = { + [1] = { 76.5, 24.4, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "22", + }, + [9318] = { + ["coords"] = { + [1] = { 49.9, 39, 51, 300 }, + [2] = { 49.9, 39, 51, 1000 }, + [3] = { 51.6, 37.4, 51, 300 }, + [4] = { 51.6, 37.4, 51, 1000 }, + [5] = { 51.2, 33.7, 51, 300 }, + [6] = { 51.2, 33.7, 51, 1000 }, + [7] = { 50.1, 32.7, 51, 300 }, + [8] = { 50.1, 32.7, 51, 1000 }, + [9] = { 51.2, 29.2, 51, 300 }, + [10] = { 51.2, 29.2, 51, 1000 }, + [11] = { 43.4, 28.3, 51, 300 }, + [12] = { 43.4, 28.3, 51, 1000 }, + [13] = { 48.5, 26.5, 51, 300 }, + [14] = { 48.5, 26.5, 51, 1000 }, + [15] = { 50.4, 26, 51, 300 }, + [16] = { 50.4, 26, 51, 1000 }, + [17] = { 44.6, 24.9, 51, 300 }, + [18] = { 44.6, 24.9, 51, 1000 }, + [19] = { 49.5, 23.4, 51, 300 }, + [20] = { 49.5, 23.4, 51, 1000 }, + [21] = { 47.8, 21.6, 51, 300 }, + [22] = { 47.8, 21.6, 51, 1000 }, + [23] = { 45.1, 21.5, 51, 300 }, + [24] = { 45.1, 21.5, 51, 1000 }, + [25] = { 46.3, 20.1, 51, 300 }, + [26] = { 46.3, 20.1, 51, 1000 }, + }, + ["lvl"] = "47-49", + }, + [9319] = { + ["coords"] = {}, + ["lvl"] = "52", + ["rnk"] = "1", + }, + [9336] = { + ["coords"] = { + [1] = { 60, 4.1, 17, 413 }, + [2] = { 89.4, 86.9, 331, 413 }, + }, + ["lvl"] = "19", + }, + [9356] = { + ["coords"] = { + [1] = { 2.8, 45.9, 3, 300 }, + [2] = { 81.9, 37, 51, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [9376] = { + ["coords"] = { + [1] = { 49.4, 49.3, 490, 600 }, + }, + ["lvl"] = "56", + ["rnk"] = "1", + }, + [9377] = { + ["coords"] = { + [1] = { 71.6, 90.5, 400, 300 }, + [2] = { 77.3, 71.4, 400, 300 }, + [3] = { 71.9, 66.1, 400, 300 }, + [4] = { 82.2, 62.7, 400, 300 }, + [5] = { 71.2, 57.3, 400, 300 }, + [6] = { 75.3, 52.8, 400, 300 }, + }, + ["lvl"] = "33-34", + }, + [9396] = { + ["coords"] = { + [1] = { 51, 32.3, 440, 300 }, + [2] = { 48.9, 31.7, 440, 300 }, + [3] = { 45.5, 30.6, 440, 300 }, + }, + ["lvl"] = "41-43", + }, + [9397] = { + ["coords"] = { + [1] = { 30.4, 77.6, 440, 300 }, + [2] = { 49.8, 69.2, 440, 300 }, + }, + ["lvl"] = "47-49", + }, + [9398] = { + ["coords"] = {}, + ["lvl"] = "55-56", + ["rnk"] = "1", + }, + [9416] = { + ["coords"] = {}, + ["lvl"] = "53-54", + }, + [9417] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "2", + }, + [9436] = { + ["coords"] = {}, + ["lvl"] = "49-50", + }, + [9437] = { + ["coords"] = {}, + ["lvl"] = "55", + ["rnk"] = "1", + }, + [9438] = { + ["coords"] = {}, + ["lvl"] = "55", + ["rnk"] = "1", + }, + [9439] = { + ["coords"] = {}, + ["lvl"] = "55", + ["rnk"] = "1", + }, + [9441] = { + ["coords"] = {}, + ["lvl"] = "55", + ["rnk"] = "1", + }, + [9442] = { + ["coords"] = {}, + ["lvl"] = "55", + ["rnk"] = "1", + }, + [9443] = { + ["coords"] = {}, + ["lvl"] = "55", + ["rnk"] = "1", + }, + [9445] = { + ["coords"] = {}, + ["lvl"] = "53-54", + ["rnk"] = "1", + }, + [9447] = { + ["coords"] = { + [1] = { 79.3, 87.2, 139, 898 }, + [2] = { 83.1, 86.9, 139, 953 }, + [3] = { 82.9, 86.7, 139, 845 }, + [4] = { 83.5, 86.3, 139, 866 }, + [5] = { 81, 86.2, 139, 884 }, + [6] = { 81.1, 86.1, 139, 789 }, + [7] = { 81.1, 86.1, 139, 953 }, + [8] = { 80.6, 85.5, 139, 1016 }, + [9] = { 79.9, 85.3, 139, 827 }, + [10] = { 81.4, 85, 139, 811 }, + [11] = { 67.8, 84.8, 139, 972 }, + [12] = { 80.1, 84.8, 139, 963 }, + [13] = { 83.3, 84.8, 139, 721 }, + [14] = { 81.5, 84.8, 139, 881 }, + [15] = { 80.8, 84.8, 139, 870 }, + [16] = { 77.6, 84.8, 139, 976 }, + [17] = { 80.8, 84.7, 139, 979 }, + [18] = { 80.8, 84.6, 139, 952 }, + [19] = { 82.1, 84.6, 139, 886 }, + [20] = { 67.1, 84.6, 139, 1010 }, + [21] = { 68.7, 84.4, 139, 953 }, + [22] = { 82.7, 84.2, 139, 845 }, + [23] = { 80.2, 84.1, 139, 744 }, + [24] = { 80.3, 84, 139, 1016 }, + [25] = { 82.9, 84, 139, 860 }, + [26] = { 67.2, 83.8, 139, 948 }, + [27] = { 81.4, 83.3, 139, 935 }, + [28] = { 82.5, 83.2, 139, 947 }, + [29] = { 81.1, 83.1, 139, 903 }, + [30] = { 77.1, 83, 139, 907 }, + [31] = { 68.8, 83, 139, 971 }, + [32] = { 78.2, 83, 139, 725 }, + [33] = { 68, 82.5, 139, 726 }, + [34] = { 68.4, 82.4, 139, 887 }, + [35] = { 77.6, 82.2, 139, 837 }, + [36] = { 78.3, 82.1, 139, 971 }, + [37] = { 79.9, 81.9, 139, 776 }, + [38] = { 82.8, 81.2, 139, 881 }, + [39] = { 84.3, 81.2, 139, 818 }, + [40] = { 82.7, 81.2, 139, 947 }, + [41] = { 78.3, 81.1, 139, 962 }, + [42] = { 77.6, 81.1, 139, 976 }, + [43] = { 81.4, 80.5, 139, 800 }, + [44] = { 80.1, 80.5, 139, 907 }, + [45] = { 81.3, 80.5, 139, 721 }, + [46] = { 78.2, 80.3, 139, 1016 }, + [47] = { 77.7, 80.3, 139, 745 }, + [48] = { 82.7, 80.3, 139, 874 }, + [49] = { 77.7, 80.2, 139, 786 }, + [50] = { 77.2, 80.2, 139, 839 }, + [51] = { 82.6, 79.8, 139, 983 }, + [52] = { 81.9, 79.8, 139, 810 }, + [53] = { 83.2, 79.4, 139, 853 }, + [54] = { 78, 79.1, 139, 1015 }, + [55] = { 84.2, 78.7, 139, 840 }, + [56] = { 78, 77.4, 139, 741 }, + [57] = { 78.3, 77.3, 139, 733 }, + [58] = { 85.1, 76.9, 139, 749 }, + [59] = { 83.7, 75.9, 139, 803 }, + }, + ["lvl"] = "53-54", + ["rnk"] = "1", + }, + [9448] = { + ["coords"] = { + [1] = { 85, 87.7, 139, 864 }, + [2] = { 87.2, 87.3, 139, 1009 }, + [3] = { 88.1, 86.9, 139, 930 }, + [4] = { 88, 86.9, 139, 858 }, + [5] = { 83.9, 86.4, 139, 823 }, + [6] = { 85.6, 86.3, 139, 732 }, + [7] = { 87.2, 86.2, 139, 947 }, + [8] = { 88.2, 86, 139, 888 }, + [9] = { 87.6, 85.9, 139, 778 }, + [10] = { 84.5, 85.8, 139, 828 }, + [11] = { 85.3, 85.8, 139, 796 }, + [12] = { 88.5, 85.7, 139, 728 }, + [13] = { 87.6, 85.1, 139, 786 }, + [14] = { 86.3, 85, 139, 961 }, + [15] = { 87.5, 85, 139, 847 }, + [16] = { 85.9, 84.8, 139, 731 }, + [17] = { 88.5, 84.8, 139, 998 }, + [18] = { 84.1, 84.7, 139, 910 }, + [19] = { 86.4, 84.7, 139, 902 }, + [20] = { 86.1, 84.3, 139, 943 }, + [21] = { 84.1, 83.6, 139, 743 }, + [22] = { 85.3, 83.6, 139, 756 }, + [23] = { 84.2, 83.1, 139, 791 }, + [24] = { 84.9, 82.4, 139, 743 }, + [25] = { 87.4, 82.3, 139, 919 }, + [26] = { 86.2, 82, 139, 870 }, + [27] = { 85.9, 81.4, 139, 875 }, + [28] = { 87, 81.3, 139, 812 }, + [29] = { 86.9, 80.6, 139, 972 }, + [30] = { 87.2, 79.8, 139, 1002 }, + }, + ["lvl"] = "56-57", + ["rnk"] = "1", + }, + [9449] = { + ["coords"] = { + [1] = { 81.1, 86, 139, 963 }, + [2] = { 81.1, 86, 139, 947 }, + [3] = { 80.5, 85.4, 139, 812 }, + [4] = { 80, 85.3, 139, 741 }, + [5] = { 79.9, 85.2, 139, 824 }, + [6] = { 83.3, 85, 139, 1015 }, + [7] = { 80.2, 84.9, 139, 893 }, + [8] = { 80.9, 84.7, 139, 877 }, + [9] = { 82.2, 84.5, 139, 739 }, + [10] = { 80.3, 84.3, 139, 988 }, + [11] = { 81.6, 84.2, 139, 790 }, + [12] = { 81.5, 84.2, 139, 776 }, + [13] = { 81.7, 84, 139, 766 }, + [14] = { 68.1, 83.9, 139, 825 }, + [15] = { 80.5, 83.8, 139, 950 }, + [16] = { 80.4, 83.6, 139, 721 }, + [17] = { 79.9, 83.4, 139, 890 }, + [18] = { 77.4, 83.2, 139, 725 }, + [19] = { 67.8, 83.1, 139, 757 }, + [20] = { 78.3, 82.6, 139, 862 }, + [21] = { 79.5, 81.6, 139, 860 }, + [22] = { 84.2, 81.2, 139, 937 }, + [23] = { 77.3, 80.9, 139, 757 }, + [24] = { 85.2, 80.7, 139, 989 }, + [25] = { 83.4, 80.2, 139, 753 }, + [26] = { 83.4, 80.1, 139, 998 }, + [27] = { 83.2, 79.6, 139, 775 }, + [28] = { 84.2, 79.5, 139, 757 }, + [29] = { 84.7, 79.5, 139, 963 }, + [30] = { 84, 79.2, 139, 911 }, + [31] = { 79, 79, 139, 921 }, + [32] = { 83.4, 78.4, 139, 893 }, + [33] = { 78.5, 78.3, 139, 736 }, + [34] = { 78.4, 78.3, 139, 908 }, + [35] = { 83.6, 78.3, 139, 816 }, + [36] = { 83.7, 78.2, 139, 778 }, + [37] = { 85.1, 78, 139, 942 }, + [38] = { 83.9, 77.5, 139, 904 }, + [39] = { 83.8, 77.4, 139, 928 }, + [40] = { 83.6, 77.4, 139, 884 }, + [41] = { 84.3, 76.9, 139, 890 }, + [42] = { 76.7, 76.6, 139, 908 }, + [43] = { 78.4, 75.3, 139, 834 }, + [44] = { 77.8, 74.7, 139, 903 }, + }, + ["lvl"] = "54-55", + ["rnk"] = "1", + }, + [9450] = { + ["coords"] = { + [1] = { 87.3, 87.3, 139, 797 }, + [2] = { 85.4, 87, 139, 1001 }, + [3] = { 84.6, 87, 139, 818 }, + [4] = { 87.9, 86.2, 139, 817 }, + [5] = { 87.1, 86.1, 139, 752 }, + [6] = { 85.6, 86.1, 139, 955 }, + [7] = { 88.5, 85.8, 139, 965 }, + [8] = { 88.4, 85.6, 139, 744 }, + [9] = { 86.6, 83.1, 139, 804 }, + [10] = { 86, 83.1, 139, 786 }, + [11] = { 86.8, 82.2, 139, 940 }, + [12] = { 87.4, 82.2, 139, 955 }, + [13] = { 87.7, 80.7, 139, 938 }, + [14] = { 86.4, 79.9, 139, 906 }, + }, + ["lvl"] = "55-56", + ["rnk"] = "1", + }, + [9451] = { + ["coords"] = { + [1] = { 87.2, 87.3, 139, 925 }, + [2] = { 86.2, 87, 139, 760 }, + [3] = { 85.3, 86.3, 139, 1013 }, + [4] = { 87.1, 86, 139, 1009 }, + [5] = { 87.8, 85.8, 139, 865 }, + [6] = { 85.1, 84.6, 139, 865 }, + [7] = { 86.5, 83.1, 139, 788 }, + [8] = { 85.7, 82.9, 139, 746 }, + [9] = { 87.9, 82.8, 139, 777 }, + [10] = { 88, 82.8, 139, 889 }, + [11] = { 86.9, 81.2, 139, 977 }, + }, + ["lvl"] = "55-57", + ["rnk"] = "1", + }, + [9452] = { + ["coords"] = { + [1] = { 78.7, 86.4, 139, 1014 }, + [2] = { 83.5, 86.4, 139, 892 }, + [3] = { 80.7, 85.7, 139, 940 }, + [4] = { 80.6, 85.6, 139, 857 }, + [5] = { 80.7, 85.5, 139, 876 }, + [6] = { 83.1, 84.9, 139, 1012 }, + [7] = { 82.6, 84.9, 139, 1011 }, + [8] = { 81.8, 84.1, 139, 989 }, + [9] = { 68.1, 84, 139, 831 }, + [10] = { 80.6, 83.8, 139, 911 }, + [11] = { 80.6, 83.6, 139, 834 }, + [12] = { 80.5, 83.5, 139, 858 }, + [13] = { 82.9, 83.4, 139, 824 }, + [14] = { 67.7, 83.3, 139, 832 }, + [15] = { 82.9, 83.3, 139, 961 }, + [16] = { 81.8, 82.3, 139, 851 }, + [17] = { 83.6, 82.2, 139, 884 }, + [18] = { 82.5, 82.1, 139, 834 }, + [19] = { 77.3, 81.9, 139, 941 }, + [20] = { 78.6, 80.7, 139, 728 }, + [21] = { 77.4, 80, 139, 964 }, + [22] = { 84.6, 79.9, 139, 828 }, + [23] = { 84.6, 79.9, 139, 848 }, + [24] = { 83.7, 79.8, 139, 855 }, + [25] = { 83.7, 79.8, 139, 812 }, + [26] = { 83.9, 79.7, 139, 850 }, + [27] = { 81.9, 79.7, 139, 730 }, + [28] = { 83.9, 79.6, 139, 810 }, + [29] = { 84.6, 79.5, 139, 814 }, + [30] = { 84.7, 79.5, 139, 774 }, + [31] = { 83.2, 79.5, 139, 805 }, + [32] = { 84.6, 79.4, 139, 775 }, + [33] = { 84.7, 79.4, 139, 870 }, + [34] = { 84.1, 79.2, 139, 832 }, + [35] = { 82.9, 79.1, 139, 1013 }, + [36] = { 82.9, 79.1, 139, 773 }, + [37] = { 84.1, 78.6, 139, 953 }, + [38] = { 83.4, 78.5, 139, 800 }, + [39] = { 82.7, 78.2, 139, 744 }, + [40] = { 83.7, 77.5, 139, 789 }, + [41] = { 83.6, 77.5, 139, 807 }, + [42] = { 85.5, 75.4, 139, 927 }, + [43] = { 84.8, 75.1, 139, 1002 }, + [44] = { 84.7, 74.6, 139, 951 }, + }, + ["lvl"] = "53-55", + ["rnk"] = "1", + }, + [9453] = { + ["coords"] = { + [1] = { 71.8, 50.1, 440, 0 }, + }, + ["lvl"] = "54", + }, + [9454] = { + ["coords"] = { + [1] = { 48.1, 86.4, 148, 300 }, + [2] = { 32.2, 67.1, 361, 300 }, + }, + ["lvl"] = "54", + }, + [9456] = { + ["coords"] = {}, + ["lvl"] = "20", + ["rnk"] = "1", + }, + [9457] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "15-18", + }, + [9458] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "15-18", + }, + [9459] = { + ["coords"] = { + [1] = { 95.1, 31.6, 46, 900 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [9460] = { + ["coords"] = { + [1] = { 52.1, 29.5, 440, 300 }, + [2] = { 51.1, 29.4, 440, 300 }, + [3] = { 51.8, 29.4, 440, 300 }, + [4] = { 50.9, 29.4, 440, 300 }, + [5] = { 51.9, 29.3, 440, 300 }, + [6] = { 51.6, 29.2, 440, 300 }, + [7] = { 51.4, 29.1, 440, 300 }, + [8] = { 52, 29.1, 440, 300 }, + [9] = { 52.4, 28.8, 440, 300 }, + [10] = { 51, 28.8, 440, 300 }, + [11] = { 52.2, 28.8, 440, 300 }, + [12] = { 51.6, 28.8, 440, 300 }, + [13] = { 50.9, 28.7, 440, 300 }, + [14] = { 51.3, 28.7, 440, 300 }, + [15] = { 52.1, 28.6, 440, 300 }, + [16] = { 52.6, 28.4, 440, 300 }, + [17] = { 51.7, 28.3, 440, 300 }, + [18] = { 52.5, 28.1, 440, 300 }, + [19] = { 51.2, 28.1, 440, 300 }, + [20] = { 52.7, 27.9, 440, 300 }, + [21] = { 51, 27.7, 440, 300 }, + [22] = { 52.1, 27.5, 440, 300 }, + [23] = { 52.3, 27.4, 440, 300 }, + [24] = { 50.5, 27.4, 440, 300 }, + [25] = { 52.3, 27.1, 440, 300 }, + [26] = { 51, 27.1, 440, 300 }, + [27] = { 51.9, 27, 440, 300 }, + [28] = { 51.7, 27, 440, 300 }, + [29] = { 52, 26.4, 440, 300 }, + [30] = { 51.8, 26.4, 440, 300 }, + [31] = { 51.2, 26.3, 440, 300 }, + [32] = { 51.3, 26.3, 440, 300 }, + [33] = { 51.5, 25.6, 440, 300 }, + [34] = { 51.6, 25.3, 440, 300 }, + }, + ["lvl"] = "57", + }, + [9461] = { + ["coords"] = {}, + ["lvl"] = "54", + ["rnk"] = "1", + }, + [9462] = { + ["coords"] = { + [1] = { 62.8, 7.7, 361, 300 }, + }, + ["lvl"] = "56", + }, + [9464] = { + ["coords"] = { + [1] = { 48.2, 94.3, 361, 300 }, + }, + ["lvl"] = "51", + }, + [9465] = { + ["coords"] = { + [1] = { 61.9, 24.5, 361, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [9467] = { + ["coords"] = { + [1] = { 44.6, 10.5, 357, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [9476] = { + ["coords"] = {}, + ["lvl"] = "55", + ["rnk"] = "1", + }, + [9477] = { + ["coords"] = {}, + ["lvl"] = "50-52", + }, + [9496] = { + ["coords"] = { + [1] = { 49.5, 82.8, 490, 300 }, + }, + ["lvl"] = "50-51", + }, + [9498] = { + ["coords"] = {}, + ["lvl"] = "48", + }, + [9499] = { + ["coords"] = {}, + ["lvl"] = "55", + ["rnk"] = "1", + }, + [9500] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "54", + ["rnk"] = "1", + }, + [9501] = { + ["coords"] = { + [1] = { 73.8, 32.5, 45, 400 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [9502] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [9503] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "52-54", + }, + [9516] = { + ["coords"] = { + [1] = { 51.4, 66.5, 148, 600 }, + [2] = { 35.9, 44.4, 361, 600 }, + }, + ["lvl"] = "59", + ["rnk"] = "1", + }, + [9517] = { + ["coords"] = { + [1] = { 38.8, 46.8, 361, 300 }, + }, + ["lvl"] = "57", + }, + [9518] = { + ["coords"] = { + [1] = { 38.4, 50.5, 361, 300 }, + }, + ["lvl"] = "56", + }, + [9520] = { + ["coords"] = { + [1] = { 40.2, 34.2, 46, 900 }, + }, + ["fac"] = "H", + ["lvl"] = "56", + ["rnk"] = "1", + }, + [9521] = { + ["coords"] = { + [1] = { 45.6, 42.6, 130, 600 }, + [2] = { 58.6, 80.2, 36, 600 }, + [3] = { 60.1, 18.6, 267, 600 }, + [4] = { 63.3, 48.6, 1497, 900 }, + [5] = { 80.2, 57, 139, 610 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [9522] = { + ["coords"] = {}, + ["lvl"] = "54-55", + ["rnk"] = "1", + }, + [9523] = { + ["coords"] = {}, + ["lvl"] = "15-16", + }, + [9524] = { + ["coords"] = {}, + ["lvl"] = "16-17", + }, + [9525] = { + ["coords"] = { + [1] = { 46.3, 56.8, 400, 300 }, + [2] = { 43.4, 54.2, 400, 300 }, + [3] = { 43.2, 54.1, 400, 300 }, + [4] = { 42.6, 51, 400, 300 }, + [5] = { 45.6, 51, 400, 300 }, + [6] = { 46.2, 50.7, 400, 300 }, + [7] = { 45.4, 50.5, 400, 300 }, + [8] = { 44.5, 50.1, 400, 300 }, + [9] = { 46.2, 50.1, 400, 300 }, + [10] = { 46, 49.8, 400, 300 }, + [11] = { 44.5, 49.7, 400, 300 }, + [12] = { 45.4, 49.5, 400, 300 }, + [13] = { 45.8, 49.4, 400, 300 }, + [14] = { 44.6, 49.4, 400, 300 }, + [15] = { 47.7, 49.2, 400, 300 }, + [16] = { 44.8, 49.1, 400, 300 }, + [17] = { 46.7, 47.4, 400, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [9526] = { + ["coords"] = { + [1] = { 66.3, 62.1, 1519, 430 }, + [2] = { 56.6, 52.6, 40, 600 }, + [3] = { 30.6, 59.4, 44, 180 }, + [4] = { 9.5, 59.7, 11, 600 }, + [5] = { 96.1, 47.1, 1, 600 }, + [6] = { 33.9, 51, 38, 600 }, + [7] = { 55.5, 47.7, 1537, 430 }, + [8] = { 84.3, 68.3, 46, 900 }, + [9] = { 77.5, 44.3, 10, 600 }, + [10] = { 49.3, 52.3, 267, 600 }, + [11] = { 45.7, 46.1, 45, 400 }, + [12] = { 27.5, 77.8, 33, 1800 }, + [13] = { 37.9, 30.9, 51, 900 }, + [14] = { 67.5, 51.3, 15, 1200 }, + [15] = { 51, 29.3, 440, 600 }, + [16] = { 11.1, 46.2, 47, 600 }, + [17] = { 95.9, 5.5, 267, 600 }, + [18] = { 65.5, 24.3, 4, 900 }, + [19] = { 42.9, 85.1, 28, 660 }, + [20] = { 81.6, 59.3, 139, 610 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [9527] = { + ["coords"] = { + [1] = { 58.4, 94, 141, 600 }, + [2] = { 36.3, 45.6, 148, 500 }, + [3] = { 34.4, 48, 331, 600 }, + [4] = { 89.5, 45.9, 357, 600 }, + [5] = { 7.8, 17.9, 400, 600 }, + [6] = { 36.4, 7.2, 406, 600 }, + [7] = { 64.7, 10.5, 405, 550 }, + [8] = { 39.3, 85.4, 406, 550 }, + [9] = { 30.2, 43.2, 357, 600 }, + [10] = { 48.1, 67.3, 493, 600 }, + [11] = { 62.3, 36.6, 618, 600 }, + [12] = { 11.9, 77.6, 16, 600 }, + [13] = { 62.5, 24.2, 361, 600 }, + [14] = { 50.6, 34.4, 1377, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [9528] = { + ["coords"] = { + [1] = { 54.1, 86.8, 361, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [9529] = { + ["coords"] = { + [1] = { 46.7, 83.1, 361, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [9536] = { + ["coords"] = { + [1] = { 65.2, 23.9, 46, 500 }, + }, + ["lvl"] = "42", + }, + [9537] = { + ["coords"] = {}, + ["lvl"] = "55", + ["rnk"] = "1", + }, + [9538] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "60", + }, + [9539] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "58", + }, + [9540] = { + ["coords"] = { + [1] = { 63.6, 20.6, 4, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [9541] = { + ["coords"] = {}, + ["lvl"] = "53", + ["rnk"] = "1", + }, + [9542] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [9543] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "53", + ["rnk"] = "1", + }, + [9544] = { + ["coords"] = { + [1] = { 4.9, 94.7, 3, 500 }, + [2] = { 66.1, 22, 46, 500 }, + }, + ["lvl"] = "53", + }, + [9545] = { + ["coords"] = {}, + ["lvl"] = "48-52", + }, + [9546] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "42", + }, + [9547] = { + ["coords"] = {}, + ["lvl"] = "48-52", + }, + [9548] = { + ["coords"] = { + [1] = { 74.9, 45.7, 357, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "52", + }, + [9549] = { + ["coords"] = { + [1] = { 45.4, 59.1, 406, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [9550] = { + ["coords"] = { + [1] = { 50.9, 65.3, 1637, 180 }, + }, + ["fac"] = "H", + ["lvl"] = "41", + }, + [9551] = { + ["coords"] = { + [1] = { 44.9, 50.7, 400, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "37", + }, + [9552] = { + ["coords"] = { + [1] = { 35.5, 30.1, 15, 360 }, + [2] = { 53.9, 69.6, 17, 360 }, + }, + ["fac"] = "H", + ["lvl"] = "43", + }, + [9553] = { + ["coords"] = { + [1] = { 45, 39.3, 130, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [9554] = { + ["coords"] = {}, + ["lvl"] = "48-52", + ["rnk"] = "1", + }, + [9555] = { + ["coords"] = { + [1] = { 72.5, 33.4, 45, 400 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [9556] = { + ["coords"] = {}, + ["lvl"] = "54-55", + }, + [9557] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "50", + }, + [9558] = { + ["coords"] = { + [1] = { 63.5, 38.6, 17, 275 }, + }, + ["lvl"] = "45", + }, + [9559] = { + ["coords"] = { + [1] = { 26.1, 73.3, 33, 300 }, + }, + ["lvl"] = "45", + }, + [9560] = { + ["coords"] = { + [1] = { 84.7, 69, 46, 500 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [9561] = { + ["coords"] = { + [1] = { 85.4, 70.1, 46, 500 }, + }, + ["fac"] = "A", + ["lvl"] = "57", + }, + [9562] = { + ["coords"] = { + [1] = { 85.8, 68.9, 46, 500 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [9563] = { + ["coords"] = { + [1] = { 65, 23.8, 46, 500 }, + }, + ["fac"] = "AH", + ["lvl"] = "57", + }, + [9564] = { + ["coords"] = { + [1] = { 50.8, 13.5, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [9565] = { + ["coords"] = { + [1] = { 84.8, 69.1, 46, 500 }, + }, + ["fac"] = "A", + ["lvl"] = "57", + }, + [9566] = { + ["coords"] = { + [1] = { 60.7, 58.9, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [9567] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [9568] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [9576] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "50", + }, + [9577] = { + ["coords"] = {}, + ["lvl"] = "25", + }, + [9578] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "50", + }, + [9579] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "50", + }, + [9580] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "50", + }, + [9581] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "50", + }, + [9582] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "50", + }, + [9583] = { + ["coords"] = {}, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [9584] = { + ["coords"] = { + [1] = { 26.7, 77.7, 1519, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [9596] = { + ["coords"] = {}, + ["lvl"] = "59", + ["rnk"] = "2", + }, + [9598] = { + ["coords"] = { + [1] = { 49.6, 29.6, 361, 0 }, + }, + ["fac"] = "A", + ["lvl"] = "56", + }, + [9599] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [9600] = { + ["coords"] = { + [1] = { 56.3, 80.5, 490, 300 }, + [2] = { 32, 76.4, 490, 300 }, + [3] = { 39.4, 72.6, 490, 300 }, + [4] = { 31.1, 67, 490, 300 }, + [5] = { 36.2, 66.6, 490, 300 }, + [6] = { 53.3, 63.9, 490, 300 }, + [7] = { 40.2, 54.7, 490, 300 }, + [8] = { 58.7, 54.2, 490, 300 }, + [9] = { 60.3, 44.8, 490, 300 }, + [10] = { 60.1, 44.4, 490, 300 }, + [11] = { 31.2, 37, 490, 300 }, + }, + ["lvl"] = "1", + }, + [9601] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "52-53", + }, + [9602] = { + ["coords"] = { + [1] = { 81.6, 41.5, 46, 37800 }, + }, + ["lvl"] = "54", + ["rnk"] = "4", + }, + [9604] = { + ["coords"] = { + [1] = { 80.6, 41.3, 46, 75600 }, + }, + ["lvl"] = "54", + ["rnk"] = "4", + }, + [9605] = { + ["coords"] = {}, + ["lvl"] = "59", + }, + [9616] = { + ["coords"] = { + [1] = { 75.8, 23.4, 1537, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [9617] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "50", + }, + [9618] = { + ["coords"] = { + [1] = { 46.4, 13.4, 490, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "49", + }, + [9619] = { + ["coords"] = { + [1] = { 27.5, 42.7, 440, 300 }, + [2] = { 71.6, 76, 490, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "51", + }, + [9620] = { + ["coords"] = { + [1] = { 50.4, 73.8, 148, 300 }, + [2] = { 34.8, 52.7, 361, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [9621] = { + ["coords"] = {}, + ["lvl"] = "50-51", + }, + [9622] = { + ["coords"] = { + [1] = { 68.1, 12.6, 490, 300 }, + }, + ["lvl"] = "55", + }, + [9623] = { + ["coords"] = { + [1] = { 67.7, 16.8, 490, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "48", + }, + [9636] = { + ["coords"] = { + [1] = { 51, 53.6, 405, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "41", + }, + [9637] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "52", + }, + [9656] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [9657] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "1", + }, + [9658] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [9659] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [9660] = { + ["coords"] = { + [1] = { 14.2, 43.6, 47, 350 }, + [2] = { 99.6, 2.5, 267, 350 }, + }, + ["fac"] = "A", + ["lvl"] = "47", + }, + [9662] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [9676] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "24", + }, + [9677] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [9678] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "56", + ["rnk"] = "1", + }, + [9679] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "52", + ["rnk"] = "1", + }, + [9680] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "54", + ["rnk"] = "1", + }, + [9681] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "53", + ["rnk"] = "1", + }, + [9682] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "52", + ["rnk"] = "1", + }, + [9683] = { + ["coords"] = { + [1] = { 66.3, 63.9, 490, 25 }, + }, + ["lvl"] = "49-50", + }, + [9684] = { + ["coords"] = { + [1] = { 78.1, 50.1, 490, 0 }, + }, + ["lvl"] = "56", + }, + [9686] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "1", + }, + [9687] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "45", + }, + [9688] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "45", + }, + [9689] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "59", + }, + [9690] = { + ["coords"] = { + [1] = { 84.1, 60.6, 46, 500 }, + [2] = { 91.9, 59.3, 46, 500 }, + [3] = { 86.7, 55.5, 46, 500 }, + [4] = { 89.9, 51.7, 46, 500 }, + [5] = { 89.3, 50.6, 46, 500 }, + [6] = { 90.6, 40, 46, 500 }, + [7] = { 79.3, 30.6, 46, 500 }, + }, + ["lvl"] = "51-52", + }, + [9691] = { + ["coords"] = { + [1] = { 86.8, 59.7, 46, 500 }, + [2] = { 86.5, 57.6, 46, 500 }, + [3] = { 89.7, 55.5, 46, 500 }, + [4] = { 88.9, 45.4, 46, 500 }, + [5] = { 91.9, 44.3, 46, 500 }, + [6] = { 92.5, 37, 46, 500 }, + [7] = { 90.9, 32.9, 46, 500 }, + [8] = { 89.1, 31.3, 46, 500 }, + [9] = { 86.2, 30, 46, 500 }, + [10] = { 90, 29.7, 46, 500 }, + [11] = { 84.7, 22.7, 46, 500 }, + }, + ["lvl"] = "52-53", + }, + [9692] = { + ["coords"] = {}, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [9693] = { + ["coords"] = {}, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [9694] = { + ["coords"] = { + [1] = { 58.4, 63.9, 46, 500 }, + [2] = { 68.2, 61, 46, 500 }, + [3] = { 61.5, 59.9, 46, 500 }, + [4] = { 63.1, 54.3, 46, 500 }, + [5] = { 72.4, 46.9, 46, 500 }, + }, + ["lvl"] = "53-54", + }, + [9695] = { + ["coords"] = { + [1] = { 54.2, 67, 46, 500 }, + [2] = { 55.2, 65.8, 46, 500 }, + [3] = { 73.3, 64.8, 46, 500 }, + [4] = { 65, 60.9, 46, 500 }, + [5] = { 62.2, 57.7, 46, 500 }, + [6] = { 62.5, 55.6, 46, 500 }, + [7] = { 71, 45.2, 46, 500 }, + [8] = { 48.1, 29.2, 46, 500 }, + [9] = { 49.8, 28.2, 46, 500 }, + [10] = { 70.5, 28, 46, 500 }, + [11] = { 76, 27, 46, 500 }, + [12] = { 57.2, 26.6, 46, 500 }, + }, + ["lvl"] = "54-55", + }, + [9696] = { + ["coords"] = {}, + ["lvl"] = "56-57", + }, + [9697] = { + ["coords"] = { + [1] = { 26.5, 62.8, 46, 500 }, + [2] = { 23.6, 59.5, 46, 500 }, + [3] = { 26.5, 57.7, 46, 500 }, + [4] = { 24.4, 69.4, 46, 500 }, + [5] = { 22.4, 69.1, 46, 500 }, + }, + ["lvl"] = "55-56", + }, + [9698] = { + ["coords"] = { + [1] = { 25.6, 60.9, 46, 500 }, + [2] = { 26.7, 60.4, 46, 500 }, + [3] = { 27.8, 57.8, 46, 500 }, + [4] = { 29.3, 55.6, 46, 500 }, + [5] = { 32.4, 55.5, 46, 500 }, + [6] = { 27.3, 55.3, 46, 500 }, + [7] = { 32.7, 55.3, 46, 500 }, + [8] = { 24.4, 69.4, 46, 500 }, + [9] = { 22.4, 69.1, 46, 500 }, + }, + ["lvl"] = "56-57", + }, + [9699] = { + ["coords"] = { + [1] = { 23.5, 69.2, 46, 750 }, + [2] = { 57.9, 62.4, 46, 750 }, + [3] = { 64.7, 60.2, 46, 750 }, + [4] = { 17.1, 59.5, 46, 750 }, + [5] = { 47.2, 58.1, 46, 750 }, + [6] = { 81.3, 57.9, 46, 750 }, + [7] = { 40.6, 57.4, 46, 750 }, + [8] = { 54.8, 56.9, 46, 750 }, + [9] = { 72.3, 55.4, 46, 750 }, + [10] = { 50, 54.1, 46, 750 }, + [11] = { 44.9, 53.7, 46, 750 }, + [12] = { 18.8, 49.6, 46, 750 }, + [13] = { 66, 49.1, 46, 750 }, + [14] = { 89.4, 48.4, 46, 750 }, + [15] = { 72.2, 48, 46, 750 }, + [16] = { 39.5, 46.8, 46, 750 }, + [17] = { 79.5, 43.1, 46, 750 }, + [18] = { 43.5, 37.1, 46, 750 }, + [19] = { 67.5, 36.1, 46, 750 }, + [20] = { 89.5, 34.3, 46, 750 }, + [21] = { 84.7, 31.1, 46, 750 }, + [22] = { 78.5, 29.8, 46, 750 }, + [23] = { 59.2, 84.1, 51, 750 }, + [24] = { 21.4, 75.3, 51, 750 }, + [25] = { 29.6, 72.8, 51, 750 }, + [26] = { 35.4, 72, 51, 750 }, + [27] = { 43.4, 71.2, 51, 750 }, + [28] = { 62.4, 70.6, 51, 750 }, + [29] = { 49.3, 69.9, 51, 750 }, + [30] = { 54.4, 69.7, 51, 750 }, + [31] = { 47.7, 68.5, 51, 750 }, + [32] = { 32.9, 66.9, 51, 750 }, + [33] = { 62.3, 66.8, 51, 750 }, + [34] = { 50.2, 62.7, 51, 750 }, + [35] = { 32.4, 61.4, 51, 750 }, + [36] = { 58.8, 60.9, 51, 750 }, + [37] = { 57.9, 59.2, 51, 750 }, + [38] = { 28.2, 56.4, 51, 750 }, + [39] = { 46.8, 55.5, 51, 750 }, + [40] = { 68.7, 55, 51, 750 }, + [41] = { 34.3, 44.9, 51, 750 }, + [42] = { 54.7, 44.3, 51, 750 }, + [43] = { 28.1, 43.9, 51, 750 }, + [44] = { 44.8, 41, 51, 750 }, + [45] = { 51.8, 40.8, 51, 750 }, + [46] = { 48.8, 38.8, 51, 750 }, + [47] = { 56, 37.3, 51, 750 }, + [48] = { 68.2, 36.6, 51, 750 }, + [49] = { 24.1, 36.4, 51, 750 }, + [50] = { 25.5, 35.2, 51, 750 }, + [51] = { 73.5, 29.5, 51, 750 }, + [52] = { 57.6, 26.2, 51, 750 }, + [53] = { 35.6, 25.8, 51, 750 }, + [54] = { 74.7, 19.7, 51, 750 }, + }, + ["lvl"] = "1", + }, + [9700] = { + ["coords"] = { + [1] = { 78.7, 74.8, 46, 750 }, + [2] = { 75.3, 70.2, 46, 750 }, + [3] = { 35, 67.3, 46, 750 }, + [4] = { 54.5, 62.6, 46, 750 }, + [5] = { 49.3, 62.6, 46, 750 }, + [6] = { 28.9, 62.1, 46, 750 }, + [7] = { 70.3, 61.3, 46, 750 }, + [8] = { 35.7, 61.1, 46, 750 }, + [9] = { 35, 57.8, 46, 750 }, + [10] = { 59.7, 57.2, 46, 750 }, + [11] = { 77.8, 50.7, 46, 750 }, + [12] = { 46.3, 50.6, 46, 750 }, + [13] = { 51.5, 50.6, 46, 750 }, + [14] = { 55, 48.9, 46, 750 }, + [15] = { 33.3, 46.9, 46, 750 }, + [16] = { 78.8, 46.1, 46, 750 }, + [17] = { 35.4, 45.3, 46, 750 }, + [18] = { 23.5, 44.8, 46, 750 }, + [19] = { 44.2, 43.6, 46, 750 }, + [20] = { 21.9, 41.9, 46, 750 }, + [21] = { 76.9, 39.1, 46, 750 }, + [22] = { 62, 38.2, 46, 750 }, + [23] = { 51, 35.1, 46, 750 }, + [24] = { 80.9, 34.4, 46, 750 }, + [25] = { 36.3, 33.1, 46, 750 }, + [26] = { 15.9, 31.9, 46, 750 }, + [27] = { 62, 31.8, 46, 750 }, + [28] = { 70.8, 31.7, 46, 750 }, + [29] = { 65.8, 31.4, 46, 750 }, + [30] = { 14.8, 29.9, 46, 750 }, + [31] = { 38.5, 29.8, 46, 750 }, + [32] = { 19.6, 28.1, 46, 750 }, + [33] = { 39.3, 28, 46, 750 }, + [34] = { 65.5, 26.2, 46, 750 }, + [35] = { 65.2, 25.8, 46, 750 }, + [36] = { 63.2, 25.5, 46, 750 }, + [37] = { 49.1, 99.4, 51, 750 }, + [38] = { 36.2, 77.9, 51, 750 }, + [39] = { 58.9, 76.9, 51, 750 }, + [40] = { 38.2, 76.8, 51, 750 }, + [41] = { 31.3, 74.7, 51, 750 }, + [42] = { 34.7, 74.6, 51, 750 }, + [43] = { 58.2, 73.5, 51, 750 }, + [44] = { 38.6, 73.3, 51, 750 }, + [45] = { 32.8, 70.5, 51, 750 }, + [46] = { 30.8, 63.7, 51, 750 }, + [47] = { 27.8, 63.1, 51, 750 }, + [48] = { 52.5, 62.5, 51, 750 }, + [49] = { 46.2, 61.1, 51, 750 }, + [50] = { 40.2, 57.8, 51, 750 }, + [51] = { 53.3, 54.2, 51, 750 }, + [52] = { 56.4, 52.8, 51, 750 }, + [53] = { 49.6, 51.5, 51, 750 }, + [54] = { 45.6, 47.5, 51, 750 }, + [55] = { 53.6, 47.1, 51, 750 }, + [56] = { 57.9, 45.4, 51, 750 }, + [57] = { 31.1, 43.6, 51, 750 }, + [58] = { 38.3, 40.8, 51, 750 }, + [59] = { 56.2, 39.5, 51, 750 }, + [60] = { 43.3, 39, 51, 750 }, + [61] = { 43.5, 34.4, 51, 750 }, + [62] = { 29.1, 26.8, 51, 750 }, + }, + ["lvl"] = "1", + }, + [9701] = { + ["coords"] = {}, + ["lvl"] = "58", + }, + [9702] = { + ["coords"] = {}, + ["lvl"] = "18", + }, + [9703] = { + ["coords"] = {}, + ["lvl"] = "17", + }, + [9704] = { + ["coords"] = {}, + ["lvl"] = "17", + }, + [9705] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [9706] = { + ["coords"] = { + [1] = { 67, 24, 440, 300 }, + }, + ["lvl"] = "53", + }, + [9707] = { + ["coords"] = {}, + ["lvl"] = "54-55", + }, + [9708] = { + ["coords"] = {}, + ["lvl"] = "54-55", + }, + [9716] = { + ["coords"] = {}, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [9717] = { + ["coords"] = {}, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [9718] = { + ["coords"] = {}, + ["lvl"] = "59", + ["rnk"] = "2", + }, + [9736] = { + ["coords"] = {}, + ["lvl"] = "59", + ["rnk"] = "2", + }, + [9776] = { + ["coords"] = { + [1] = { 77.6, 75.3, 46, 500 }, + [2] = { 77.6, 74.7, 46, 500 }, + [3] = { 77.7, 51.5, 46, 500 }, + [4] = { 78, 51, 46, 500 }, + [5] = { 78.2, 50.8, 46, 500 }, + [6] = { 79.2, 46.6, 46, 500 }, + [7] = { 79, 46.2, 46, 500 }, + [8] = { 78.6, 45.7, 46, 500 }, + }, + ["lvl"] = "51-53", + }, + [9777] = { + ["coords"] = { + [1] = { 77.9, 75.3, 46, 500 }, + [2] = { 78.6, 74.9, 46, 500 }, + [3] = { 78.5, 73.4, 46, 500 }, + [4] = { 77.5, 51, 46, 500 }, + [5] = { 78.5, 50.4, 46, 500 }, + [6] = { 79.8, 47.2, 46, 500 }, + [7] = { 79.6, 47, 46, 500 }, + }, + ["lvl"] = "51-53", + }, + [9778] = { + ["coords"] = { + [1] = { 35.8, 64.5, 46, 500 }, + [2] = { 35.6, 63.9, 46, 500 }, + [3] = { 35.9, 63.8, 46, 500 }, + [4] = { 36, 63.7, 46, 500 }, + [5] = { 36, 63.2, 46, 500 }, + [6] = { 37.1, 61, 46, 500 }, + [7] = { 36.8, 60.7, 46, 500 }, + [8] = { 37, 60.6, 46, 500 }, + [9] = { 36.8, 60.6, 46, 500 }, + [10] = { 36.8, 60.3, 46, 500 }, + [11] = { 35.2, 58.7, 46, 500 }, + [12] = { 35.5, 58.3, 46, 500 }, + [13] = { 35.1, 58, 46, 500 }, + [14] = { 34.5, 58, 46, 500 }, + [15] = { 35, 57.3, 46, 500 }, + [16] = { 51.2, 35.4, 46, 500 }, + [17] = { 51, 35.1, 46, 500 }, + [18] = { 51, 35, 46, 500 }, + [19] = { 51.1, 34.9, 46, 500 }, + [20] = { 51.2, 34.8, 46, 500 }, + [21] = { 70.9, 31.9, 46, 500 }, + [22] = { 70.6, 31.6, 46, 500 }, + [23] = { 70.3, 31.5, 46, 500 }, + [24] = { 70.8, 31.5, 46, 500 }, + [25] = { 71, 31.3, 46, 500 }, + [26] = { 65.4, 29.7, 46, 500 }, + [27] = { 65.5, 29.3, 46, 500 }, + [28] = { 65.3, 29.3, 46, 500 }, + [29] = { 65.3, 29.1, 46, 500 }, + [30] = { 65.8, 29, 46, 500 }, + }, + ["lvl"] = "54-56", + }, + [9779] = { + ["coords"] = { + [1] = { 35.8, 64.5, 46, 500 }, + [2] = { 35.6, 63.9, 46, 500 }, + [3] = { 35.9, 63.8, 46, 500 }, + [4] = { 36, 63.7, 46, 500 }, + [5] = { 36, 63.2, 46, 500 }, + [6] = { 37.1, 61, 46, 500 }, + [7] = { 36.8, 60.7, 46, 500 }, + [8] = { 37, 60.6, 46, 500 }, + [9] = { 36.8, 60.6, 46, 500 }, + [10] = { 36.8, 60.3, 46, 500 }, + [11] = { 35.2, 58.7, 46, 500 }, + [12] = { 35.5, 58.3, 46, 500 }, + [13] = { 35.1, 58, 46, 500 }, + [14] = { 34.5, 58, 46, 500 }, + [15] = { 35, 57.3, 46, 500 }, + [16] = { 51.2, 35.4, 46, 500 }, + [17] = { 51, 35.1, 46, 500 }, + [18] = { 51, 35, 46, 500 }, + [19] = { 51.1, 34.9, 46, 500 }, + [20] = { 51.2, 34.8, 46, 500 }, + [21] = { 70.9, 31.9, 46, 500 }, + [22] = { 70.6, 31.6, 46, 500 }, + [23] = { 70.3, 31.5, 46, 500 }, + [24] = { 70.8, 31.5, 46, 500 }, + [25] = { 71, 31.3, 46, 500 }, + [26] = { 65.4, 29.7, 46, 500 }, + [27] = { 65.5, 29.3, 46, 500 }, + [28] = { 65.3, 29.3, 46, 500 }, + [29] = { 65.3, 29.1, 46, 500 }, + [30] = { 65.8, 29, 46, 500 }, + }, + ["lvl"] = "54-56", + }, + [9796] = { + ["coords"] = { + [1] = { 42.7, 67.2, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "8", + }, + [9816] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "3", + }, + [9817] = { + ["coords"] = {}, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [9818] = { + ["coords"] = {}, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [9819] = { + ["coords"] = {}, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [9820] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "45", + }, + [9836] = { + ["coords"] = { + [1] = { 65, 23.6, 46, 500 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [9837] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "59", + }, + [9856] = { + ["coords"] = { + [1] = { 55.3, 61.8, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [9857] = { + ["coords"] = { + [1] = { 61.4, 37.2, 618, 333 }, + }, + ["lvl"] = "50", + }, + [9858] = { + ["coords"] = { + [1] = { 27.8, 77, 33, 300 }, + }, + ["lvl"] = "50", + }, + [9859] = { + ["coords"] = { + [1] = { 25.8, 75.6, 1537, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [9860] = { + ["coords"] = { + [1] = { 38.8, 46.7, 361, 300 }, + }, + ["lvl"] = "54", + }, + [9861] = { + ["coords"] = { + [1] = { 38.8, 46.9, 361, 300 }, + }, + ["lvl"] = "52", + }, + [9862] = { + ["coords"] = { + [1] = { 36.3, 55.6, 361, 300 }, + [2] = { 37.9, 54.7, 361, 300 }, + [3] = { 37.8, 53.3, 361, 300 }, + [4] = { 38.6, 50.9, 361, 300 }, + [5] = { 40, 49.1, 361, 300 }, + [6] = { 36.1, 46.3, 361, 300 }, + [7] = { 37.7, 45.9, 361, 300 }, + [8] = { 36.2, 45.9, 361, 300 }, + }, + ["lvl"] = "55", + }, + [9876] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "48", + }, + [9877] = { + ["coords"] = { + [1] = { 36.8, 56.7, 361, 300 }, + }, + ["lvl"] = "55", + }, + [9878] = { + ["coords"] = { + [1] = { 41.2, 43.7, 361, 300 }, + [2] = { 40.1, 43.4, 361, 300 }, + [3] = { 41.6, 41.4, 361, 300 }, + [4] = { 42.8, 41.3, 361, 300 }, + [5] = { 42.5, 41.2, 361, 300 }, + [6] = { 44.6, 41, 361, 300 }, + [7] = { 43.9, 40.8, 361, 300 }, + [8] = { 44.5, 40.5, 361, 300 }, + [9] = { 43.4, 40.4, 361, 300 }, + [10] = { 41.8, 40.1, 361, 300 }, + [11] = { 41, 39.6, 361, 300 }, + [12] = { 40.3, 39.1, 361, 300 }, + [13] = { 44.5, 38.6, 361, 300 }, + [14] = { 42.7, 38.2, 361, 300 }, + [15] = { 41.3, 37.8, 361, 300 }, + [16] = { 42, 37.7, 361, 300 }, + }, + ["lvl"] = "51-52", + }, + [9879] = { + ["coords"] = { + [1] = { 40.5, 42.2, 361, 300 }, + [2] = { 40.3, 41.2, 361, 300 }, + [3] = { 45.1, 41, 361, 300 }, + [4] = { 43.4, 38.8, 361, 300 }, + [5] = { 45.7, 38.6, 361, 300 }, + [6] = { 41, 39.6, 361, 300 }, + [7] = { 40.3, 39.1, 361, 300 }, + }, + ["lvl"] = "53-54", + }, + [9896] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [9916] = { + ["coords"] = { + [1] = { 94.8, 52.1, 8, 300 }, + }, + ["lvl"] = "46", + }, + [9936] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [9937] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [9938] = { + ["coords"] = {}, + ["lvl"] = "57", + ["rnk"] = "1", + }, + [9956] = { + ["coords"] = {}, + ["lvl"] = "54-55", + }, + [9976] = { + ["coords"] = { + [1] = { 73.9, 33.1, 45, 400 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [9977] = { + ["coords"] = { + [1] = { 29.6, 51.2, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [9978] = { + ["coords"] = { + [1] = { 50.4, 58.8, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [9979] = { + ["coords"] = { + [1] = { 43.5, 41.2, 130, 275 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [9980] = { + ["coords"] = { + [1] = { 47, 52.7, 1, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [9981] = { + ["coords"] = { + [1] = { 51.7, 29.7, 17, 275 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [9982] = { + ["coords"] = { + [1] = { 26.8, 46.6, 44, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [9983] = { + ["coords"] = { + [1] = { 45.3, 58.7, 17, 275 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [9984] = { + ["coords"] = { + [1] = { 69.3, 83.6, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [9985] = { + ["coords"] = { + [1] = { 52.3, 28, 440, 300 }, + }, + ["lvl"] = "30", + }, + [9986] = { + ["coords"] = { + [1] = { 74.5, 43.3, 357, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [9987] = { + ["coords"] = { + [1] = { 52, 41.8, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [9988] = { + ["coords"] = { + [1] = { 70.4, 15, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [9989] = { + ["coords"] = { + [1] = { 34.6, 48.1, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [9990] = { + ["coords"] = { + [1] = { 44.8, 28.2, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "4", + }, + [9996] = { + ["coords"] = { + [1] = { 49.9, 73.4, 148, 300 }, + [2] = { 34.2, 52.3, 361, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "57", + }, + [9997] = { + ["coords"] = { + [1] = { 43.6, 8.5, 490, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "37", + }, + [9998] = { + ["coords"] = { + [1] = { 44.2, 11.6, 490, 300 }, + }, + ["lvl"] = "40", + }, + [9999] = { + ["coords"] = { + [1] = { 51.9, 49.8, 490, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "54", + }, + [10000] = { + ["coords"] = {}, + ["lvl"] = "26", + ["rnk"] = "1", + }, + [10016] = { + ["coords"] = { + [1] = { 57.7, 87.3, 361, 300 }, + [2] = { 45.5, 87.3, 361, 300 }, + [3] = { 56.6, 87.1, 361, 300 }, + [4] = { 47.4, 86.2, 361, 300 }, + [5] = { 46.3, 86.2, 361, 300 }, + [6] = { 57.2, 85.5, 361, 300 }, + [7] = { 55.5, 84, 361, 300 }, + [8] = { 44.5, 77.7, 361, 300 }, + [9] = { 46.1, 75.9, 361, 300 }, + [10] = { 45.2, 73.1, 361, 300 }, + [11] = { 40.6, 72.7, 361, 300 }, + [12] = { 38.7, 71.8, 361, 300 }, + [13] = { 38.2, 68.3, 361, 300 }, + [14] = { 37.7, 67.9, 361, 300 }, + [15] = { 39, 67, 361, 300 }, + [16] = { 43.4, 65.1, 361, 300 }, + [17] = { 41.1, 56.8, 361, 300 }, + [18] = { 41.8, 53, 361, 300 }, + [19] = { 41.3, 49.8, 361, 300 }, + [20] = { 38.4, 42, 361, 300 }, + [21] = { 45.8, 41.3, 361, 300 }, + [22] = { 46.8, 39.7, 361, 300 }, + [23] = { 39.3, 37.1, 361, 300 }, + [24] = { 39.7, 30.7, 361, 300 }, + [25] = { 50, 30.2, 361, 300 }, + [26] = { 47.9, 28.8, 361, 300 }, + [27] = { 49.5, 28.6, 361, 300 }, + [28] = { 56.9, 25.3, 361, 300 }, + [29] = { 50.6, 21.8, 361, 300 }, + [30] = { 48.9, 20.4, 361, 300 }, + [31] = { 54.8, 18.9, 361, 300 }, + [32] = { 49.6, 18.2, 361, 300 }, + [33] = { 49.9, 17.1, 361, 300 }, + [34] = { 65, 15.6, 361, 300 }, + [35] = { 60, 15.3, 361, 300 }, + [36] = { 25.1, 42.2, 618, 300 }, + }, + ["lvl"] = "1", + }, + [10017] = { + ["coords"] = { + [1] = { 48, 85.5, 148, 300 }, + [2] = { 55.8, 27.4, 331, 300 }, + [3] = { 57.1, 27.3, 331, 300 }, + [4] = { 54.6, 26.2, 331, 300 }, + [5] = { 55, 25.9, 331, 300 }, + [6] = { 56.9, 24.9, 331, 300 }, + [7] = { 56.5, 24.5, 331, 300 }, + [8] = { 48, 93.4, 361, 300 }, + [9] = { 54.9, 91.6, 361, 300 }, + [10] = { 56.3, 91.5, 361, 300 }, + [11] = { 53.8, 90.4, 361, 300 }, + [12] = { 54.1, 90.1, 361, 300 }, + [13] = { 56.1, 89.2, 361, 300 }, + [14] = { 55.6, 88.8, 361, 300 }, + [15] = { 50.4, 88.4, 361, 300 }, + [16] = { 54.1, 88.3, 361, 300 }, + [17] = { 48.2, 87.8, 361, 300 }, + [18] = { 49.6, 87.8, 361, 300 }, + [19] = { 46.4, 87.3, 361, 300 }, + [20] = { 52, 86.4, 361, 300 }, + [21] = { 55, 86.1, 361, 300 }, + [22] = { 46.4, 86, 361, 300 }, + [23] = { 54.6, 84.4, 361, 300 }, + [24] = { 56.6, 84.1, 361, 300 }, + [25] = { 56.2, 83.8, 361, 300 }, + [26] = { 53.2, 83, 361, 300 }, + [27] = { 44.1, 82.9, 361, 300 }, + [28] = { 53.2, 82.7, 361, 300 }, + [29] = { 48.8, 82.4, 361, 300 }, + [30] = { 47.7, 81.6, 361, 300 }, + [31] = { 43.3, 81.5, 361, 300 }, + [32] = { 44.2, 81.4, 361, 300 }, + [33] = { 41.6, 81.3, 361, 300 }, + [34] = { 50.5, 81.2, 361, 300 }, + [35] = { 49.5, 80.8, 361, 300 }, + [36] = { 41.4, 80, 361, 300 }, + [37] = { 43.8, 79.3, 361, 300 }, + [38] = { 41.3, 78.1, 361, 300 }, + [39] = { 47.9, 77.5, 361, 300 }, + [40] = { 48.1, 77, 361, 300 }, + [41] = { 47.9, 76.4, 361, 300 }, + [42] = { 46.7, 76, 361, 300 }, + [43] = { 46.3, 75.9, 361, 300 }, + [44] = { 41.8, 75.7, 361, 300 }, + [45] = { 42.1, 75.6, 361, 300 }, + [46] = { 46.3, 75.6, 361, 300 }, + [47] = { 48, 75.5, 361, 300 }, + [48] = { 37.5, 75, 361, 300 }, + [49] = { 47.7, 74.2, 361, 300 }, + [50] = { 38.6, 72.4, 361, 300 }, + [51] = { 40.3, 69.7, 361, 300 }, + [52] = { 44.8, 69.3, 361, 300 }, + [53] = { 43.6, 67.8, 361, 300 }, + [54] = { 37.1, 67.2, 361, 300 }, + [55] = { 32.1, 66, 361, 300 }, + [56] = { 43, 64.9, 361, 300 }, + [57] = { 41.6, 62.3, 361, 300 }, + [58] = { 41, 60.9, 361, 300 }, + [59] = { 41.8, 59, 361, 300 }, + [60] = { 41.8, 58.5, 361, 300 }, + [61] = { 38.7, 56.8, 361, 300 }, + [62] = { 39.8, 53.4, 361, 300 }, + [63] = { 43.7, 48.3, 361, 300 }, + [64] = { 38, 48.1, 361, 300 }, + [65] = { 44.8, 46.6, 361, 300 }, + [66] = { 37.9, 44.9, 361, 300 }, + [67] = { 44.2, 44.8, 361, 300 }, + [68] = { 45.3, 42.9, 361, 300 }, + [69] = { 46.4, 40.3, 361, 300 }, + [70] = { 38.3, 39.4, 361, 300 }, + [71] = { 37.6, 38.8, 361, 300 }, + [72] = { 48.6, 37.8, 361, 300 }, + [73] = { 41.4, 37.6, 361, 300 }, + [74] = { 49.7, 35.1, 361, 300 }, + [75] = { 41.5, 35, 361, 300 }, + [76] = { 49.2, 32.8, 361, 300 }, + [77] = { 39.6, 32.7, 361, 300 }, + [78] = { 51, 32.2, 361, 300 }, + [79] = { 40.4, 31.6, 361, 300 }, + [80] = { 41.8, 31.3, 361, 300 }, + [81] = { 49.6, 30.9, 361, 300 }, + [82] = { 50.6, 30.5, 361, 300 }, + [83] = { 40.8, 30.2, 361, 300 }, + [84] = { 48.3, 29.5, 361, 300 }, + [85] = { 40.9, 28.1, 361, 300 }, + [86] = { 54.1, 28.1, 361, 300 }, + [87] = { 53.6, 27.5, 361, 300 }, + [88] = { 40.8, 27.5, 361, 300 }, + [89] = { 56.2, 27.3, 361, 300 }, + [90] = { 47.8, 26.1, 361, 300 }, + [91] = { 53.9, 25.8, 361, 300 }, + [92] = { 55.1, 24.1, 361, 300 }, + [93] = { 46.1, 23.9, 361, 300 }, + [94] = { 45, 23.7, 361, 300 }, + [95] = { 43.2, 22.9, 361, 300 }, + [96] = { 47.3, 22.8, 361, 300 }, + [97] = { 44.4, 22.2, 361, 300 }, + [98] = { 56.6, 21.9, 361, 300 }, + [99] = { 55.7, 20.3, 361, 300 }, + [100] = { 48.8, 20.1, 361, 300 }, + [101] = { 62.3, 19.2, 361, 300 }, + [102] = { 57.5, 18.7, 361, 300 }, + [103] = { 64.2, 18.5, 361, 300 }, + [104] = { 43, 17.4, 361, 300 }, + [105] = { 62.3, 17.2, 361, 300 }, + [106] = { 58, 17.1, 361, 300 }, + [107] = { 62.7, 16.4, 361, 300 }, + [108] = { 53.2, 16.1, 361, 300 }, + [109] = { 52.8, 16.1, 361, 300 }, + [110] = { 50.4, 15.8, 361, 300 }, + [111] = { 46.4, 15.1, 361, 300 }, + [112] = { 45, 13.7, 361, 300 }, + [113] = { 61.5, 13.7, 361, 300 }, + [114] = { 55.5, 11.1, 361, 300 }, + [115] = { 56.3, 9, 361, 300 }, + [116] = { 63.7, 8.9, 361, 300 }, + [117] = { 60.4, 8.5, 361, 300 }, + [118] = { 56.1, 7.3, 361, 300 }, + [119] = { 60.4, 6.1, 361, 300 }, + }, + ["lvl"] = "1", + }, + [10036] = { + ["coords"] = { + [1] = { 35.9, 32.8, 15, 360 }, + [2] = { 36.2, 32.6, 15, 360 }, + [3] = { 36.9, 31.9, 15, 360 }, + [4] = { 37.6, 31.8, 15, 360 }, + [5] = { 37.6, 31.5, 15, 360 }, + [6] = { 35.4, 31.3, 15, 360 }, + [7] = { 34.4, 30.9, 15, 360 }, + [8] = { 35.4, 30.6, 15, 360 }, + [9] = { 34.4, 30.5, 15, 360 }, + [10] = { 35.1, 30.4, 15, 360 }, + [11] = { 35.8, 30.4, 15, 360 }, + [12] = { 35.2, 30.2, 15, 360 }, + [13] = { 35.9, 30.1, 15, 360 }, + [14] = { 36.1, 30, 15, 360 }, + [15] = { 35, 29.2, 15, 360 }, + [16] = { 35.2, 29.1, 15, 360 }, + [17] = { 54.1, 70.9, 17, 360 }, + [18] = { 54.3, 70.8, 17, 360 }, + [19] = { 54.6, 70.5, 17, 360 }, + [20] = { 55, 70.5, 17, 360 }, + [21] = { 55, 70.3, 17, 360 }, + [22] = { 53.8, 70.2, 17, 360 }, + [23] = { 53.3, 70, 17, 360 }, + [24] = { 53.9, 69.8, 17, 360 }, + [25] = { 53.3, 69.8, 17, 360 }, + [26] = { 53.7, 69.7, 17, 360 }, + [27] = { 54.1, 69.7, 17, 360 }, + [28] = { 53.7, 69.6, 17, 360 }, + [29] = { 54.1, 69.6, 17, 360 }, + [30] = { 54.2, 69.5, 17, 360 }, + [31] = { 53.7, 69.1, 17, 360 }, + [32] = { 53.7, 69, 17, 360 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [10037] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "55", + }, + [10038] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "40", + }, + [10040] = { + ["coords"] = { + [1] = { 44.1, 81.2, 490, 0 }, + [2] = { 44, 81.6, 490, 0 }, + [3] = { 44.2, 81.5, 490, 0 }, + [4] = { 44.2, 81.2, 490, 0 }, + [5] = { 44.1, 81.9, 490, 0 }, + [6] = { 43.6, 81.5, 490, 0 }, + [7] = { 43.6, 81, 490, 0 }, + }, + ["lvl"] = "54", + }, + [10041] = { + ["coords"] = { + [1] = { 43.5, 81.2, 490, 0 }, + }, + ["lvl"] = "56", + }, + [10042] = { + ["coords"] = {}, + ["lvl"] = "5", + }, + [10043] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "48-52", + ["rnk"] = "1", + }, + [10044] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "60", + }, + [10045] = { + ["coords"] = { + [1] = { 52.9, 53.1, 40, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [10046] = { + ["coords"] = { + [1] = { 10.5, 59.7, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [10047] = { + ["coords"] = { + [1] = { 66, 45.5, 15, 360 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [10048] = { + ["coords"] = { + [1] = { 47.9, 61.4, 406, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [10049] = { + ["coords"] = { + [1] = { 45.6, 55.2, 8, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [10050] = { + ["coords"] = { + [1] = { 46.8, 60.4, 215, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [10051] = { + ["coords"] = { + [1] = { 56.6, 59.6, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [10052] = { + ["coords"] = { + [1] = { 36.5, 50.4, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [10053] = { + ["coords"] = { + [1] = { 67.4, 37.6, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [10054] = { + ["coords"] = { + [1] = { 39, 29.1, 215, 250 }, + [2] = { 45.1, 60.2, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [10055] = { + ["coords"] = { + [1] = { 60, 52.2, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [10056] = { + ["coords"] = { + [1] = { 25.4, 49, 141, 300 }, + [2] = { 39.3, 10, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [10057] = { + ["coords"] = { + [1] = { 61.1, 81.4, 36, 300 }, + [2] = { 62.3, 19.7, 267, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [10058] = { + ["coords"] = { + [1] = { 3.7, 47.6, 3, 300 }, + [2] = { 82.8, 38.9, 51, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [10059] = { + ["coords"] = { + [1] = { 31.5, 43.1, 357, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [10060] = { + ["coords"] = { + [1] = { 27.3, 77.2, 33, 300 }, + }, + ["lvl"] = "46", + }, + [10061] = { + ["coords"] = { + [1] = { 14.4, 45.2, 47, 350 }, + [2] = { 99.9, 4.4, 267, 350 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [10062] = { + ["coords"] = { + [1] = { 74, 46.1, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [10063] = { + ["coords"] = { + [1] = { 62.2, 39.2, 17, 275 }, + }, + ["lvl"] = "35", + }, + [10076] = { + ["coords"] = {}, + ["lvl"] = "58", + ["rnk"] = "1", + }, + [10077] = { + ["coords"] = { + [1] = { 86.6, 49.6, 46, 18000 }, + [2] = { 75.3, 32.7, 46, 18000 }, + }, + ["lvl"] = "53", + ["rnk"] = "4", + }, + [10078] = { + ["coords"] = { + [1] = { 46.7, 43.4, 46, 75600 }, + }, + ["lvl"] = "55", + ["rnk"] = "4", + }, + [10079] = { + ["coords"] = { + [1] = { 44.2, 92.2, 17, 300 }, + [2] = { 32.2, 22.2, 400, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [10080] = { + ["coords"] = {}, + ["lvl"] = "45", + ["rnk"] = "2", + }, + [10081] = { + ["coords"] = {}, + ["lvl"] = "45", + ["rnk"] = "2", + }, + [10082] = { + ["coords"] = {}, + ["lvl"] = "45", + ["rnk"] = "2", + }, + [10083] = { + ["coords"] = {}, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [10084] = { + ["coords"] = {}, + ["lvl"] = "57", + }, + [10085] = { + ["coords"] = { + [1] = { 37.4, 44.3, 148, 275 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [10086] = { + ["coords"] = { + [1] = { 40.8, 33.9, 215, 250 }, + [2] = { 54.1, 84, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [10088] = { + ["coords"] = { + [1] = { 66.3, 14.8, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [10089] = { + ["coords"] = { + [1] = { 26, 48.8, 141, 300 }, + [2] = { 42.5, 9.2, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [10090] = { + ["coords"] = { + [1] = { 70.9, 85.8, 1537, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [10096] = { + ["coords"] = {}, + ["lvl"] = "52", + ["rnk"] = "1", + }, + [10116] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [10117] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [10118] = { + ["coords"] = { + [1] = { 56.3, 92.4, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [10119] = { + ["coords"] = { + [1] = { 74.3, 37.8, 46, 18000 }, + }, + ["lvl"] = "60", + ["rnk"] = "2", + }, + [10120] = { + ["coords"] = {}, + ["lvl"] = "45", + ["rnk"] = "1", + }, + [10136] = { + ["coords"] = { + [1] = { 72.2, 9.2, 130, 300 }, + [2] = { 47.5, 73.3, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [10156] = { + ["coords"] = {}, + ["lvl"] = "58", + ["rnk"] = "3", + }, + [10157] = { + ["coords"] = { + [1] = { 45.6, 53.1, 148, 413 }, + [2] = { 46, 50.3, 148, 413 }, + [3] = { 46.7, 45.8, 148, 413 }, + }, + ["lvl"] = "13-14", + }, + [10158] = { + ["coords"] = { + [1] = { 42.8, 53.2, 148, 413 }, + [2] = { 45.8, 52.9, 148, 413 }, + [3] = { 42.4, 52.7, 148, 413 }, + [4] = { 44.2, 52.5, 148, 413 }, + [5] = { 43.3, 52.2, 148, 413 }, + [6] = { 43.2, 51.5, 148, 413 }, + [7] = { 42.2, 50.9, 148, 413 }, + [8] = { 46.2, 50.7, 148, 413 }, + [9] = { 43, 50.7, 148, 413 }, + [10] = { 43.3, 50.5, 148, 413 }, + [11] = { 43.9, 50.4, 148, 413 }, + [12] = { 41.8, 50.1, 148, 413 }, + [13] = { 43, 49.3, 148, 413 }, + [14] = { 44.1, 49.1, 148, 413 }, + [15] = { 43.5, 48.9, 148, 413 }, + [16] = { 45.7, 48.6, 148, 413 }, + [17] = { 41.6, 48.5, 148, 413 }, + [18] = { 44.4, 48.5, 148, 413 }, + [19] = { 42.7, 48.3, 148, 413 }, + [20] = { 41.7, 47.1, 148, 413 }, + [21] = { 47.1, 46.4, 148, 413 }, + [22] = { 44.1, 46, 148, 413 }, + [23] = { 45.9, 44.7, 148, 413 }, + [24] = { 42, 44.6, 148, 413 }, + [25] = { 42.6, 44.5, 148, 413 }, + [26] = { 43.1, 44.4, 148, 413 }, + }, + ["lvl"] = "12-13", + }, + [10159] = { + ["coords"] = { + [1] = { 43.6, 53.4, 148, 413 }, + [2] = { 42, 52.3, 148, 413 }, + [3] = { 42.8, 52.2, 148, 413 }, + [4] = { 42.7, 49.8, 148, 413 }, + [5] = { 42.2, 49.4, 148, 413 }, + [6] = { 43.1, 47.7, 148, 413 }, + [7] = { 43.7, 46.8, 148, 413 }, + [8] = { 42.2, 46.1, 148, 413 }, + [9] = { 43, 45.5, 148, 413 }, + [10] = { 42.6, 45.4, 148, 413 }, + [11] = { 43.6, 45.4, 148, 413 }, + [12] = { 44, 45, 148, 413 }, + }, + ["lvl"] = "11-12", + }, + [10160] = { + ["coords"] = { + [1] = { 45.1, 54.6, 148, 413 }, + [2] = { 44.7, 53.9, 148, 413 }, + [3] = { 45.2, 52.6, 148, 413 }, + [4] = { 45.6, 51.9, 148, 413 }, + [5] = { 44.2, 50.9, 148, 413 }, + [6] = { 45.2, 50.6, 148, 413 }, + [7] = { 45.2, 49.3, 148, 413 }, + [8] = { 46.2, 49.2, 148, 413 }, + [9] = { 47.2, 48.7, 148, 413 }, + [10] = { 47.3, 48.5, 148, 413 }, + [11] = { 47.1, 48.2, 148, 413 }, + [12] = { 46.6, 48.2, 148, 413 }, + [13] = { 44.3, 47.9, 148, 413 }, + [14] = { 46, 47.5, 148, 413 }, + [15] = { 44.8, 47.3, 148, 413 }, + [16] = { 46.7, 46.8, 148, 413 }, + [17] = { 45.8, 46.6, 148, 413 }, + [18] = { 45.1, 46.1, 148, 413 }, + [19] = { 45.6, 45.6, 148, 413 }, + [20] = { 44.5, 45.6, 148, 413 }, + [21] = { 47.2, 44.8, 148, 413 }, + [22] = { 45.3, 44.8, 148, 413 }, + }, + ["lvl"] = "12-14", + }, + [10161] = { + ["coords"] = {}, + ["lvl"] = "56-57", + }, + [10162] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [10176] = { + ["coords"] = { + [1] = { 43.3, 68.5, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [10177] = { + ["coords"] = {}, + ["lvl"] = "58", + }, + [10178] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [10179] = { + ["coords"] = { + [1] = { 49, 48, 1, 270 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [10180] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [10181] = { + ["coords"] = { + [1] = { 74.6, 13.4, 130, 86400 }, + [2] = { 58.1, 91.8, 1497, 86400 }, + }, + ["fac"] = "H", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [10182] = { + ["coords"] = { + [1] = { 53.4, 6.8, 405, 550 }, + [2] = { 28.9, 81.9, 406, 550 }, + }, + ["fac"] = "H", + ["lvl"] = "62", + ["rnk"] = "1", + }, + [10183] = { + ["coords"] = {}, + ["lvl"] = "54-55", + }, + [10184] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [10196] = { + ["coords"] = { + [1] = { 55.3, 49.8, 618, 37800 }, + }, + ["lvl"] = "56-57", + ["rnk"] = "2", + }, + [10197] = { + ["coords"] = { + [1] = { 45, 37.4, 618, 18000 }, + }, + ["lvl"] = "55", + ["rnk"] = "4", + }, + [10198] = { + ["coords"] = { + [1] = { 63.4, 70.2, 618, 75600 }, + }, + ["lvl"] = "60", + ["rnk"] = "2", + }, + [10199] = { + ["coords"] = { + [1] = { 66.9, 35.6, 618, 18000 }, + }, + ["lvl"] = "59", + ["rnk"] = "4", + }, + [10200] = { + ["coords"] = { + [1] = { 51.1, 10.7, 618, 37800 }, + }, + ["lvl"] = "57", + ["rnk"] = "4", + }, + [10201] = { + ["coords"] = { + [1] = { 65, 80.3, 618, 115200 }, + }, + ["lvl"] = "61", + ["rnk"] = "2", + }, + [10202] = { + ["coords"] = { + [1] = { 66.5, 53.1, 618, 75600 }, + }, + ["lvl"] = "59", + ["rnk"] = "2", + }, + [10203] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "2", + }, + [10204] = { + ["coords"] = { + [1] = { 53.4, 6.8, 405, 550 }, + [2] = { 29, 82, 406, 550 }, + }, + ["fac"] = "H", + ["lvl"] = "62", + ["rnk"] = "1", + }, + [10216] = { + ["coords"] = { + [1] = { 36.1, 44.9, 148, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [10217] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "56-57", + }, + [10218] = { + ["coords"] = {}, + ["lvl"] = "56", + }, + [10219] = { + ["coords"] = { + [1] = { 36.6, 45.6, 148, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "21", + }, + [10220] = { + ["coords"] = {}, + ["lvl"] = "59", + ["rnk"] = "1", + }, + [10221] = { + ["coords"] = {}, + ["lvl"] = "52-53", + }, + [10236] = { + ["coords"] = {}, + ["lvl"] = "33", + ["rnk"] = "4", + }, + [10237] = { + ["coords"] = {}, + ["lvl"] = "35", + ["rnk"] = "4", + }, + [10238] = { + ["coords"] = {}, + ["lvl"] = "35", + ["rnk"] = "4", + }, + [10239] = { + ["coords"] = {}, + ["lvl"] = "38", + ["rnk"] = "2", + }, + [10256] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [10257] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "58", + ["rnk"] = "1", + }, + [10258] = { + ["coords"] = {}, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [10259] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [10260] = { + ["coords"] = { + [1] = { 4.7, 94.6, 3, 500 }, + [2] = { 65.9, 21.9, 46, 500 }, + }, + ["lvl"] = "56", + }, + [10261] = { + ["coords"] = {}, + ["lvl"] = "54-55", + }, + [10262] = { + ["coords"] = { + [1] = { 4.6, 94.4, 3, 500 }, + [2] = { 65.8, 21.7, 46, 500 }, + }, + ["lvl"] = "40", + }, + [10263] = { + ["coords"] = {}, + ["lvl"] = "56-57", + ["rnk"] = "2", + }, + [10264] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [10265] = { + ["coords"] = {}, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [10266] = { + ["coords"] = { + [1] = { 80.8, 23.7, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [10267] = { + ["coords"] = { + [1] = { 65.2, 24, 46, 500 }, + }, + ["lvl"] = "53", + }, + [10268] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [10276] = { + ["coords"] = { + [1] = { 52.4, 42.6, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "31", + }, + [10277] = { + ["coords"] = { + [1] = { 52.3, 41.9, 1537, 375 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [10278] = { + ["coords"] = { + [1] = { 37.8, 28.4, 215, 375 }, + [2] = { 39.4, 56.7, 1638, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "24", + }, + [10290] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [10291] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "50", + }, + [10292] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "40", + }, + [10293] = { + ["coords"] = { + [1] = { 30.8, 43.1, 357, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "51", + }, + [10294] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "40", + }, + [10295] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "40", + }, + [10296] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "54", + ["rnk"] = "1", + }, + [10297] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "40", + }, + [10298] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "40", + }, + [10299] = { + ["coords"] = {}, + ["lvl"] = "54-55", + ["rnk"] = "1", + }, + [10300] = { + ["coords"] = { + [1] = { 63.1, 59.5, 618, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "58", + }, + [10301] = { + ["coords"] = { + [1] = { 52.1, 30.4, 618, 333 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [10302] = { + ["coords"] = { + [1] = { 30.9, 50.4, 490, 300 }, + }, + ["lvl"] = "60", + }, + [10303] = { + ["coords"] = { + [1] = { 50.5, 73.9, 148, 333 }, + [2] = { 34.9, 52.9, 361, 333 }, + [3] = { 61.9, 38.4, 618, 333 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [10304] = { + ["coords"] = { + [1] = { 56.5, 24.3, 139, 345 }, + [2] = { 53.5, 22, 139, 345 }, + }, + ["fac"] = "AH", + ["lvl"] = "62", + }, + [10305] = { + ["coords"] = { + [1] = { 60.9, 37.6, 618, 333 }, + }, + ["lvl"] = "57", + }, + [10306] = { + ["coords"] = { + [1] = { 50.3, 73.8, 148, 300 }, + [2] = { 34.7, 52.8, 361, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [10307] = { + ["coords"] = { + [1] = { 42.1, 8.3, 14, 333 }, + [2] = { 61.9, 38.3, 618, 333 }, + [3] = { 36.2, 81, 1637, 333 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [10316] = { + ["coords"] = {}, + ["lvl"] = "59-60", + }, + [10317] = { + ["coords"] = {}, + ["lvl"] = "60-61", + ["rnk"] = "1", + }, + [10318] = { + ["coords"] = {}, + ["lvl"] = "60-61", + ["rnk"] = "1", + }, + [10319] = { + ["coords"] = {}, + ["lvl"] = "60-61", + ["rnk"] = "1", + }, + [10321] = { + ["coords"] = { + [1] = { 56.7, 87.7, 15, 1200 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [10322] = { + ["coords"] = { + [1] = { 25.2, 50.1, 141, 300 }, + [2] = { 38.4, 15.2, 1657, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [10323] = { + ["coords"] = {}, + ["lvl"] = "19", + }, + [10336] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [10337] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [10338] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [10339] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [10340] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "62", + ["rnk"] = "1", + }, + [10356] = { + ["coords"] = { + [1] = { 45.6, 47.5, 85, 3600 }, + }, + ["lvl"] = "10", + ["rnk"] = "4", + }, + [10357] = { + ["coords"] = { + [1] = { 42.9, 67.6, 85, 5400 }, + }, + ["lvl"] = "11", + ["rnk"] = "4", + }, + [10358] = { + ["coords"] = { + [1] = { 75, 60.5, 85, 5400 }, + }, + ["lvl"] = "12", + ["rnk"] = "4", + }, + [10359] = { + ["coords"] = { + [1] = { 88.2, 51.4, 85, 5400 }, + }, + ["lvl"] = "13", + ["rnk"] = "4", + }, + [10360] = { + ["coords"] = { + [1] = { 41.3, 32.4, 215, 500 }, + [2] = { 56.8, 76.5, 1638, 500 }, + }, + ["fac"] = "H", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [10361] = { + ["coords"] = { + [1] = { 22.2, 51.1, 16, 333 }, + }, + ["fac"] = "H", + ["lvl"] = "52", + }, + [10362] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "40", + }, + [10363] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "3", + }, + [10364] = { + ["coords"] = { + [1] = { 48.4, 80.3, 2597, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [10365] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "40", + }, + [10366] = { + ["coords"] = {}, + ["lvl"] = "60-61", + ["rnk"] = "1", + }, + [10367] = { + ["coords"] = { + [1] = { 48.5, 80.5, 2597, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [10368] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "40", + }, + [10369] = { + ["coords"] = { + [1] = { 56.5, 73.1, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "12", + }, + [10370] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "40", + }, + [10371] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [10372] = { + ["coords"] = {}, + ["lvl"] = "60-61", + ["rnk"] = "1", + }, + [10373] = { + ["coords"] = { + [1] = { 52.2, 33, 148, 0 }, + }, + ["lvl"] = "19", + }, + [10374] = { + ["coords"] = {}, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [10375] = { + ["coords"] = {}, + ["lvl"] = "55-56", + }, + [10376] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "2", + }, + [10377] = { + ["coords"] = { + [1] = { 44.9, 48.9, 400, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "28", + }, + [10378] = { + ["coords"] = { + [1] = { 44.4, 59.2, 17, 600 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [10379] = { + ["coords"] = { + [1] = { 50.4, 74.1, 148, 300 }, + [2] = { 34.8, 53.2, 361, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [10380] = { + ["coords"] = { + [1] = { 45.1, 59, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "15", + }, + [10381] = { + ["coords"] = {}, + ["lvl"] = "56-57", + ["rnk"] = "1", + }, + [10382] = { + ["coords"] = {}, + ["lvl"] = "55-56", + ["rnk"] = "1", + }, + [10383] = { + ["coords"] = {}, + ["lvl"] = "55-56", + }, + [10384] = { + ["coords"] = {}, + ["lvl"] = "55-56", + ["rnk"] = "1", + }, + [10385] = { + ["coords"] = {}, + ["lvl"] = "56-57", + ["rnk"] = "1", + }, + [10387] = { + ["coords"] = {}, + ["lvl"] = "56-57", + }, + [10388] = { + ["coords"] = {}, + ["lvl"] = "58-59", + }, + [10389] = { + ["coords"] = {}, + ["lvl"] = "60-61", + }, + [10390] = { + ["coords"] = {}, + ["lvl"] = "55-56", + }, + [10391] = { + ["coords"] = {}, + ["lvl"] = "56-57", + }, + [10393] = { + ["coords"] = {}, + ["lvl"] = "58", + ["rnk"] = "2", + }, + [10394] = { + ["coords"] = {}, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [10395] = { + ["coords"] = {}, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [10397] = { + ["coords"] = {}, + ["lvl"] = "61-62", + ["rnk"] = "1", + }, + [10398] = { + ["coords"] = {}, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [10399] = { + ["coords"] = {}, + ["lvl"] = "59-60", + }, + [10400] = { + ["coords"] = {}, + ["lvl"] = "60-61", + ["rnk"] = "1", + }, + [10401] = { + ["coords"] = {}, + ["lvl"] = "61-62", + ["rnk"] = "1", + }, + [10402] = { + ["coords"] = {}, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [10403] = { + ["coords"] = {}, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [10404] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + ["rnk"] = "1", + }, + [10405] = { + ["coords"] = {}, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [10406] = { + ["coords"] = {}, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [10407] = { + ["coords"] = {}, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [10408] = { + ["coords"] = {}, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [10409] = { + ["coords"] = {}, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [10411] = { + ["coords"] = {}, + ["lvl"] = "55-57", + }, + [10412] = { + ["coords"] = {}, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [10413] = { + ["coords"] = {}, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [10414] = { + ["coords"] = {}, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [10415] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [10416] = { + ["coords"] = {}, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [10417] = { + ["coords"] = {}, + ["lvl"] = "60-61", + ["rnk"] = "1", + }, + [10418] = { + ["coords"] = {}, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [10419] = { + ["coords"] = {}, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [10420] = { + ["coords"] = {}, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [10421] = { + ["coords"] = {}, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [10422] = { + ["coords"] = {}, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [10423] = { + ["coords"] = {}, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [10424] = { + ["coords"] = {}, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [10425] = { + ["coords"] = {}, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [10426] = { + ["coords"] = {}, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [10427] = { + ["coords"] = { + [1] = { 17.9, 40.6, 400, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [10428] = { + ["coords"] = { + [1] = { 21.5, 32.3, 400, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "28", + }, + [10429] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "3", + }, + [10430] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "3", + }, + [10431] = { + ["coords"] = { + [1] = { 61.3, 39, 618, 333 }, + }, + ["lvl"] = "55", + }, + [10432] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [10433] = { + ["coords"] = {}, + ["lvl"] = "58", + ["rnk"] = "1", + }, + [10435] = { + ["coords"] = {}, + ["lvl"] = "58", + ["rnk"] = "1", + }, + [10436] = { + ["coords"] = {}, + ["lvl"] = "59", + ["rnk"] = "1", + }, + [10437] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [10438] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [10439] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [10440] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [10441] = { + ["coords"] = {}, + ["lvl"] = "55", + }, + [10442] = { + ["coords"] = {}, + ["lvl"] = "57-58", + }, + [10443] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "40", + }, + [10444] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "40", + }, + [10445] = { + ["coords"] = { + [1] = { 41.7, 69.2, 12, 180 }, + [2] = { 36.9, 37.7, 215, 180 }, + }, + ["lvl"] = "30", + }, + [10446] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "40", + }, + [10447] = { + ["coords"] = {}, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [10448] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "40", + }, + [10449] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "40", + }, + [10450] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "40", + }, + [10451] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "40", + }, + [10452] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "40", + }, + [10453] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "40", + }, + [10454] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "40", + }, + [10455] = { + ["coords"] = { + [1] = { 45.6, 7.4, 1537, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [10456] = { + ["coords"] = { + [1] = { 46.5, 7.4, 1537, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [10459] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [10460] = { + ["coords"] = { + [1] = { 66.9, 24, 440, 300 }, + }, + ["lvl"] = "48", + }, + [10461] = { + ["coords"] = {}, + ["lvl"] = "55", + }, + [10463] = { + ["coords"] = {}, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [10464] = { + ["coords"] = {}, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [10466] = { + ["coords"] = {}, + ["lvl"] = "40", + }, + [10467] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "42", + }, + [10468] = { + ["coords"] = { + [1] = { 61.6, 38.6, 618, 333 }, + }, + ["lvl"] = "54", + }, + [10469] = { + ["coords"] = {}, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [10470] = { + ["coords"] = {}, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [10471] = { + ["coords"] = {}, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [10472] = { + ["coords"] = {}, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [10473] = { + ["coords"] = {}, + ["lvl"] = "40", + }, + [10475] = { + ["coords"] = {}, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [10476] = { + ["coords"] = {}, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [10477] = { + ["coords"] = {}, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [10478] = { + ["coords"] = {}, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [10479] = { + ["coords"] = {}, + ["lvl"] = "59", + }, + [10480] = { + ["coords"] = {}, + ["lvl"] = "58-59", + }, + [10481] = { + ["coords"] = {}, + ["lvl"] = "58-59", + }, + [10482] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [10483] = { + ["coords"] = {}, + ["lvl"] = "40-41", + }, + [10484] = { + ["coords"] = {}, + ["lvl"] = "40-41", + }, + [10485] = { + ["coords"] = {}, + ["lvl"] = "57-58", + }, + [10486] = { + ["coords"] = {}, + ["lvl"] = "59-61", + ["rnk"] = "1", + }, + [10487] = { + ["coords"] = {}, + ["lvl"] = "58-60", + ["rnk"] = "1", + }, + [10488] = { + ["coords"] = {}, + ["lvl"] = "58-61", + ["rnk"] = "1", + }, + [10489] = { + ["coords"] = {}, + ["lvl"] = "57-59", + ["rnk"] = "1", + }, + [10491] = { + ["coords"] = {}, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [10492] = { + ["coords"] = {}, + ["lvl"] = "41", + ["rnk"] = "1", + }, + [10493] = { + ["coords"] = {}, + ["lvl"] = "41", + }, + [10494] = { + ["coords"] = {}, + ["lvl"] = "40-41", + }, + [10495] = { + ["coords"] = {}, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [10497] = { + ["coords"] = {}, + ["lvl"] = "58", + ["rnk"] = "1", + }, + [10498] = { + ["coords"] = {}, + ["lvl"] = "58-60", + ["rnk"] = "1", + }, + [10499] = { + ["coords"] = {}, + ["lvl"] = "58-60", + ["rnk"] = "1", + }, + [10500] = { + ["coords"] = {}, + ["lvl"] = "58-61", + ["rnk"] = "1", + }, + [10502] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [10503] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [10504] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [10505] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [10506] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [10507] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [10508] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [10509] = { + ["coords"] = {}, + ["lvl"] = "59", + ["rnk"] = "2", + }, + [10510] = { + ["coords"] = {}, + ["lvl"] = "44", + }, + [10516] = { + ["coords"] = {}, + ["lvl"] = "57", + ["rnk"] = "1", + }, + [10536] = { + ["coords"] = {}, + ["lvl"] = "55", + }, + [10537] = { + ["coords"] = { + [1] = { 45.7, 50.7, 400, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [10538] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [10539] = { + ["coords"] = { + [1] = { 44.6, 50.3, 400, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [10540] = { + ["coords"] = { + [1] = { 34.3, 36.3, 1637, 86400 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "3", + }, + [10541] = { + ["coords"] = { + [1] = { 53.9, 55.2, 490, 300 }, + [2] = { 48.1, 53.3, 490, 300 }, + [3] = { 45.5, 48.5, 490, 300 }, + [4] = { 54, 47.6, 490, 300 }, + [5] = { 49.7, 45.6, 490, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [10556] = { + ["coords"] = { + [1] = { 42.3, 73.2, 14, 300 }, + [2] = { 44.7, 72.8, 14, 300 }, + [3] = { 41.2, 72.7, 14, 300 }, + [4] = { 47.6, 69.4, 14, 300 }, + [5] = { 45, 69.1, 14, 300 }, + [6] = { 45.6, 65.7, 14, 300 }, + [7] = { 47.2, 65.4, 14, 300 }, + [8] = { 38.8, 61.8, 14, 300 }, + [9] = { 46.8, 60.8, 14, 300 }, + [10] = { 40.9, 60.4, 14, 300 }, + [11] = { 41.3, 58.8, 14, 300 }, + [12] = { 47.1, 57.9, 14, 300 }, + [13] = { 43.8, 57.8, 14, 300 }, + [14] = { 42.7, 57.4, 14, 300 }, + [15] = { 67.3, 35.3, 17, 300 }, + [16] = { 66.8, 35, 17, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "4", + }, + [10557] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "46", + }, + [10558] = { + ["coords"] = {}, + ["lvl"] = "57", + ["rnk"] = "2", + }, + [10559] = { + ["coords"] = { + [1] = { 13.6, 24.7, 331, 14400 }, + }, + ["lvl"] = "22", + ["rnk"] = "4", + }, + [10577] = { + ["coords"] = {}, + ["lvl"] = "58", + }, + [10578] = { + ["coords"] = { + [1] = { 55.7, 75.4, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "8", + }, + [10579] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [10580] = { + ["coords"] = { + [1] = { 53.6, 68.2, 28, 315 }, + [2] = { 52.5, 67.6, 28, 315 }, + [3] = { 52.7, 65.1, 28, 315 }, + }, + ["lvl"] = "54-56", + }, + [10581] = { + ["coords"] = {}, + ["lvl"] = "20", + ["rnk"] = "1", + }, + [10582] = { + ["coords"] = { + [1] = { 45.2, 50.4, 400, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "10", + }, + [10583] = { + ["coords"] = { + [1] = { 45.2, 5.8, 490, 600 }, + }, + ["lvl"] = "55", + ["rnk"] = "1", + }, + [10584] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "2", + }, + [10596] = { + ["coords"] = {}, + ["lvl"] = "59", + ["rnk"] = "1", + }, + [10598] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [10599] = { + ["coords"] = { + [1] = { 50, 60.9, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "10", + }, + [10600] = { + ["coords"] = { + [1] = { 49.8, 60.2, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "11", + }, + [10601] = { + ["coords"] = {}, + ["lvl"] = "54-55", + ["rnk"] = "1", + }, + [10602] = { + ["coords"] = {}, + ["lvl"] = "54-55", + ["rnk"] = "1", + }, + [10603] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "1", + }, + [10604] = { + ["coords"] = { + [1] = { 56, 58.7, 141, 900 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [10605] = { + ["coords"] = { + [1] = { 38.7, 56, 28, 315 }, + [2] = { 38.6, 56, 28, 315 }, + [3] = { 38.7, 55.9, 28, 315 }, + [4] = { 40.8, 52.8, 28, 315 }, + [5] = { 40.7, 52.6, 28, 315 }, + [6] = { 40.4, 52.6, 28, 315 }, + [7] = { 41, 52.4, 28, 315 }, + [8] = { 40.8, 52.3, 28, 315 }, + [9] = { 40.3, 52.2, 28, 315 }, + [10] = { 41, 52, 28, 315 }, + [11] = { 40.8, 51.9, 28, 315 }, + [12] = { 40.5, 51.8, 28, 315 }, + [13] = { 40.9, 51.5, 28, 315 }, + [14] = { 47.3, 51.4, 28, 315 }, + [15] = { 40.5, 51.4, 28, 315 }, + [16] = { 47.4, 51.3, 28, 315 }, + [17] = { 47.3, 51.3, 28, 315 }, + [18] = { 51.7, 44.8, 28, 315 }, + [19] = { 52.1, 44.8, 28, 315 }, + [20] = { 51.9, 44.6, 28, 315 }, + [21] = { 52.2, 44.6, 28, 315 }, + [22] = { 51.6, 44.5, 28, 315 }, + [23] = { 52.2, 44.2, 28, 315 }, + [24] = { 51.4, 44.1, 28, 315 }, + [25] = { 51.7, 44, 28, 315 }, + [26] = { 52.2, 44, 28, 315 }, + [27] = { 51.9, 43.8, 28, 315 }, + }, + ["lvl"] = "52-54", + }, + [10606] = { + ["coords"] = { + [1] = { 56, 58.7, 141, 900 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [10607] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [10608] = { + ["coords"] = { + [1] = { 43.7, 20.4, 28, 767 }, + [2] = { 43.2, 20.2, 28, 1009 }, + [3] = { 42.9, 20.1, 28, 887 }, + [4] = { 46.8, 14.5, 28, 902 }, + }, + ["lvl"] = "55-57", + ["rnk"] = "1", + }, + [10610] = { + ["coords"] = { + [1] = { 40.7, 64.9, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "11", + }, + [10611] = { + ["coords"] = { + [1] = { 40.7, 64.9, 1, 1350 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [10612] = { + ["coords"] = { + [1] = { 45.4, 50.3, 400, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [10616] = { + ["coords"] = { + [1] = { 81.4, 66.1, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [10617] = { + ["coords"] = { + [1] = { 47.3, 96.9, 17, 300 }, + [2] = { 39.4, 33.1, 400, 300 }, + }, + ["lvl"] = "26", + }, + [10618] = { + ["coords"] = { + [1] = { 49.9, 9.8, 618, 333 }, + }, + ["fac"] = "A", + ["lvl"] = "62", + }, + [10619] = { + ["coords"] = { + [1] = { 49.9, 9.8, 618, 333 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [10620] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [10636] = { + ["coords"] = { + [1] = { 46.9, 8.4, 17, 275 }, + [2] = { 21.3, 32.9, 400, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [10637] = { + ["coords"] = { + [1] = { 61, 38.8, 618, 333 }, + }, + ["lvl"] = "59", + }, + [10638] = { + ["coords"] = { + [1] = { 21.3, 32.1, 400, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [10639] = { + ["coords"] = { + [1] = { 36.4, 36.3, 331, 14400 }, + }, + ["lvl"] = "25", + ["rnk"] = "4", + }, + [10640] = { + ["coords"] = { + [1] = { 56, 62.8, 331, 37800 }, + }, + ["lvl"] = "27", + ["rnk"] = "4", + }, + [10641] = { + ["coords"] = { + [1] = { 45.5, 47.3, 331, 19800 }, + }, + ["lvl"] = "25", + ["rnk"] = "4", + }, + [10642] = { + ["coords"] = { + [1] = { 52.8, 70, 331, 75600 }, + }, + ["lvl"] = "27", + ["rnk"] = "4", + }, + [10643] = { + ["coords"] = { + [1] = { 19.4, 42.7, 331, 30600 }, + }, + ["lvl"] = "23", + ["rnk"] = "4", + }, + [10644] = { + ["coords"] = { + [1] = { 20.9, 36.9, 331, 30600 }, + }, + ["lvl"] = "22", + ["rnk"] = "4", + }, + [10645] = { + ["coords"] = { + [1] = { 46, 51.6, 400, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [10646] = { + ["coords"] = { + [1] = { 46.6, 94.1, 17, 300 }, + [2] = { 37.9, 26.4, 400, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [10647] = { + ["coords"] = { + [1] = { 81.6, 48.5, 331, 18000 }, + }, + ["lvl"] = "32", + ["rnk"] = "4", + }, + [10648] = { + ["coords"] = { + [1] = { 54.1, 47, 148, 300 }, + [2] = { 39, 22.3, 361, 300 }, + }, + ["lvl"] = "55", + }, + [10656] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "30", + }, + [10657] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [10658] = { + ["coords"] = { + [1] = { 49.9, 73.4, 148, 30 }, + [2] = { 34.2, 52.4, 361, 30 }, + }, + ["lvl"] = "1", + }, + [10659] = { + ["coords"] = { + [1] = { 52.5, 56.2, 618, 333 }, + [2] = { 52.5, 56.1, 618, 333 }, + [3] = { 53.3, 55.7, 618, 333 }, + [4] = { 58.2, 54.5, 618, 333 }, + [5] = { 54.6, 54.2, 618, 333 }, + [6] = { 54.5, 54.2, 618, 333 }, + [7] = { 57.8, 51.7, 618, 333 }, + [8] = { 54.8, 51.3, 618, 333 }, + [9] = { 54.8, 51.1, 618, 333 }, + [10] = { 54.4, 50.9, 618, 333 }, + [11] = { 54.5, 50.8, 618, 333 }, + [12] = { 60.1, 50.6, 618, 333 }, + [13] = { 60.3, 50.2, 618, 333 }, + [14] = { 60.2, 50.1, 618, 333 }, + [15] = { 57.2, 49.8, 618, 333 }, + [16] = { 60.2, 49.5, 618, 333 }, + [17] = { 56.8, 49.3, 618, 333 }, + [18] = { 56.8, 48.6, 618, 333 }, + }, + ["lvl"] = "54-55", + }, + [10660] = { + ["coords"] = { + [1] = { 53.4, 55.9, 618, 333 }, + [2] = { 53.3, 55.8, 618, 333 }, + [3] = { 58, 53.9, 618, 333 }, + [4] = { 57.8, 51.7, 618, 333 }, + [5] = { 61.9, 51.3, 618, 333 }, + [6] = { 54.7, 51.3, 618, 333 }, + [7] = { 62.3, 51.2, 618, 333 }, + [8] = { 56.6, 51, 618, 333 }, + [9] = { 54.5, 51, 618, 333 }, + [10] = { 56.1, 50.9, 618, 333 }, + [11] = { 60.8, 50.8, 618, 333 }, + [12] = { 59, 50.6, 618, 333 }, + [13] = { 59.2, 50.5, 618, 333 }, + [14] = { 59.6, 50.4, 618, 333 }, + [15] = { 57.8, 50.3, 618, 333 }, + [16] = { 57.9, 50.3, 618, 333 }, + [17] = { 59.7, 50.3, 618, 333 }, + [18] = { 54.8, 50, 618, 333 }, + [19] = { 57.3, 50, 618, 333 }, + [20] = { 54.8, 49.9, 618, 333 }, + [21] = { 60.7, 49.9, 618, 333 }, + [22] = { 60, 49.7, 618, 333 }, + }, + ["lvl"] = "55-56", + }, + [10661] = { + ["coords"] = { + [1] = { 52.6, 56.1, 618, 333 }, + [2] = { 54.6, 54.3, 618, 333 }, + [3] = { 57.8, 53.8, 618, 333 }, + [4] = { 57.9, 51.7, 618, 333 }, + [5] = { 56.3, 51, 618, 333 }, + [6] = { 62.2, 50.9, 618, 333 }, + [7] = { 57.9, 50.3, 618, 333 }, + [8] = { 57.2, 50, 618, 333 }, + [9] = { 58.8, 50, 618, 333 }, + [10] = { 54.8, 49.8, 618, 333 }, + [11] = { 56.7, 48.9, 618, 333 }, + }, + ["lvl"] = "54-56", + }, + [10662] = { + ["coords"] = { + [1] = { 58.8, 47.5, 618, 600 }, + }, + ["lvl"] = "56", + ["rnk"] = "1", + }, + [10663] = { + ["coords"] = { + [1] = { 53.2, 54.2, 618, 600 }, + }, + ["lvl"] = "58", + ["rnk"] = "1", + }, + [10664] = { + ["coords"] = { + [1] = { 52.7, 55.9, 618, 600 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [10665] = { + ["coords"] = { + [1] = { 57.4, 48.8, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [10666] = { + ["coords"] = { + [1] = { 43.1, 54.7, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [10667] = { + ["coords"] = { + [1] = { 39.5, 66.8, 28, 315 }, + }, + ["fac"] = "AH", + ["lvl"] = "63", + }, + [10668] = { + ["coords"] = { + [1] = { 49.3, 50.3, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "16", + }, + [10676] = { + ["coords"] = { + [1] = { 44.1, 68.3, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [10678] = { + ["coords"] = {}, + ["lvl"] = "57-59", + }, + [10680] = { + ["coords"] = {}, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [10681] = { + ["coords"] = {}, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [10682] = { + ["coords"] = { + [1] = { 44.1, 68.2, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [10683] = { + ["coords"] = {}, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [10684] = { + ["coords"] = { + [1] = { 56.1, 44.4, 618, 333 }, + }, + ["fac"] = "A", + ["lvl"] = "56", + }, + [10685] = { + ["coords"] = { + [1] = { 43.6, 30.2, 14, 300 }, + [2] = { 43.7, 30.2, 14, 300 }, + [3] = { 43.8, 30.2, 14, 300 }, + [4] = { 43.6, 30.1, 14, 300 }, + [5] = { 43.8, 30.1, 14, 300 }, + [6] = { 43.5, 30, 14, 300 }, + [7] = { 48.7, 16.2, 14, 300 }, + [8] = { 48.5, 16.2, 14, 300 }, + [9] = { 49, 16, 14, 300 }, + [10] = { 48.5, 16, 14, 300 }, + [11] = { 48.3, 15.9, 14, 300 }, + [12] = { 48.8, 15.8, 14, 300 }, + [13] = { 48.6, 15.7, 14, 300 }, + [14] = { 48.3, 15.7, 14, 300 }, + [15] = { 43, 15.7, 14, 300 }, + [16] = { 42.7, 15.4, 14, 300 }, + [17] = { 43, 15.4, 14, 300 }, + [18] = { 42.8, 15.2, 14, 300 }, + [19] = { 42.7, 15.1, 14, 300 }, + [20] = { 42.8, 14.9, 14, 300 }, + [21] = { 42.6, 14.9, 14, 300 }, + [22] = { 43, 14.9, 14, 300 }, + [23] = { 54, 20.8, 17, 413 }, + [24] = { 53.9, 20.7, 17, 413 }, + [25] = { 54.1, 20.7, 17, 413 }, + [26] = { 53.9, 20.6, 17, 413 }, + [27] = { 54.1, 20.5, 17, 413 }, + [28] = { 48.2, 9.2, 17, 413 }, + [29] = { 48.1, 9.2, 17, 413 }, + [30] = { 48, 9, 17, 413 }, + [31] = { 48.1, 9, 17, 413 }, + [32] = { 47.9, 8.5, 17, 413 }, + [33] = { 47.8, 8.5, 17, 413 }, + [34] = { 47.8, 8.4, 17, 413 }, + }, + ["lvl"] = "3", + }, + [10696] = { + ["coords"] = { + [1] = { 44.7, 51.8, 45, 400 }, + [2] = { 43.2, 50.6, 45, 400 }, + [3] = { 45.8, 49.7, 45, 400 }, + [4] = { 47.6, 48.7, 45, 400 }, + [5] = { 44.5, 48.5, 45, 400 }, + [6] = { 44.3, 48.4, 45, 400 }, + [7] = { 43.2, 48.3, 45, 400 }, + [8] = { 46.6, 48.2, 45, 400 }, + [9] = { 45.1, 47.8, 45, 400 }, + [10] = { 47, 47.2, 45, 400 }, + [11] = { 43.7, 46.2, 45, 400 }, + [12] = { 47, 45.9, 45, 400 }, + [13] = { 46.4, 45.8, 45, 400 }, + [14] = { 46.5, 45.5, 45, 400 }, + [15] = { 46.6, 45.4, 45, 400 }, + [16] = { 48.1, 45.3, 45, 400 }, + [17] = { 47.9, 45.1, 45, 400 }, + [18] = { 48.1, 44.6, 45, 400 }, + [19] = { 46.8, 43.4, 45, 400 }, + [20] = { 45, 43.4, 45, 400 }, + [21] = { 48.6, 42.7, 45, 400 }, + }, + ["fac"] = "A", + ["lvl"] = "41-45", + }, + [10697] = { + ["coords"] = {}, + ["lvl"] = "59-60", + }, + [10698] = { + ["coords"] = { + [1] = { 60.1, 70.8, 139, 345 }, + [2] = { 59.5, 70.3, 139, 345 }, + }, + ["lvl"] = "53-54", + }, + [10699] = { + ["coords"] = {}, + ["lvl"] = "57-58", + }, + [10716] = { + ["coords"] = { + [1] = { 60.8, 51.4, 85, 60 }, + [2] = { 60.7, 51.3, 85, 60 }, + [3] = { 60.6, 51.3, 85, 60 }, + [4] = { 60.9, 51.2, 85, 60 }, + [5] = { 60.5, 51.1, 85, 60 }, + [6] = { 60.9, 51.1, 85, 60 }, + [7] = { 60.5, 50.9, 85, 60 }, + [8] = { 60.9, 50.9, 85, 60 }, + [9] = { 60.5, 50.7, 85, 60 }, + [10] = { 60.9, 50.7, 85, 60 }, + [11] = { 60.8, 50.7, 85, 60 }, + [12] = { 60.7, 50.7, 85, 60 }, + }, + ["lvl"] = "1", + }, + [10717] = { + ["coords"] = {}, + ["lvl"] = "55-57", + }, + [10718] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [10719] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "50", + }, + [10720] = { + ["coords"] = {}, + ["lvl"] = "27-28", + }, + [10721] = { + ["coords"] = { + [1] = { 49.7, 60.9, 215, 375 }, + [2] = { 50.1, 60.8, 215, 375 }, + [3] = { 50.2, 60.6, 215, 375 }, + [4] = { 49.6, 60.6, 215, 375 }, + [5] = { 50.2, 60.4, 215, 375 }, + [6] = { 49.7, 60.4, 215, 375 }, + [7] = { 49.7, 60.3, 215, 375 }, + [8] = { 50, 60.2, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "5", + }, + [10736] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [10737] = { + ["coords"] = { + [1] = { 49.5, 9.7, 618, 0 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [10738] = { + ["coords"] = { + [1] = { 69.6, 38.3, 618, 333 }, + }, + ["lvl"] = "59", + ["rnk"] = "1", + }, + [10739] = { + ["coords"] = { + [1] = { 53.7, 64.7, 28, 315 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [10740] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "57", + ["rnk"] = "1", + }, + [10741] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [10742] = { + ["coords"] = {}, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [10756] = { + ["coords"] = { + [1] = { 45.4, 97.2, 17, 300 }, + [2] = { 44.8, 97.1, 17, 300 }, + [3] = { 36.7, 39.2, 400, 300 }, + [4] = { 37.5, 37.7, 400, 300 }, + [5] = { 36.7, 36.9, 400, 300 }, + [6] = { 35.4, 35.9, 400, 300 }, + [7] = { 35.2, 34.8, 400, 300 }, + [8] = { 33, 34.5, 400, 300 }, + [9] = { 35.1, 33.6, 400, 300 }, + [10] = { 33.6, 33.5, 400, 300 }, + }, + ["lvl"] = "28-29", + }, + [10757] = { + ["coords"] = { + [1] = { 45.1, 97.1, 17, 300 }, + [2] = { 44.8, 96.7, 17, 300 }, + [3] = { 37.5, 39.1, 400, 300 }, + [4] = { 36.8, 38, 400, 300 }, + [5] = { 36, 35.8, 400, 300 }, + [6] = { 35.9, 34.8, 400, 300 }, + [7] = { 36.7, 34.7, 400, 300 }, + [8] = { 34.5, 33.4, 400, 300 }, + [9] = { 33.7, 32.5, 400, 300 }, + [10] = { 44.8, 97.1, 17, 300 }, + [11] = { 36.7, 36.9, 400, 300 }, + [12] = { 33, 34.5, 400, 300 }, + [13] = { 33.6, 33.5, 400, 300 }, + }, + ["lvl"] = "27-28", + }, + [10758] = { + ["coords"] = { + [1] = { 46.7, 98, 17, 300 }, + [2] = { 46.9, 97.9, 17, 300 }, + [3] = { 46.6, 97.9, 17, 300 }, + [4] = { 46.8, 97.8, 17, 300 }, + [5] = { 44.2, 96.8, 17, 300 }, + [6] = { 46.4, 96.7, 17, 300 }, + [7] = { 46.2, 96.6, 17, 300 }, + [8] = { 46.4, 96.6, 17, 300 }, + [9] = { 45.3, 96.5, 17, 300 }, + [10] = { 46.4, 96.4, 17, 300 }, + [11] = { 45.5, 96.1, 17, 300 }, + [12] = { 45.3, 96, 17, 300 }, + [13] = { 45.5, 96, 17, 300 }, + [14] = { 44.1, 95.6, 17, 300 }, + [15] = { 44.5, 94.8, 17, 300 }, + [16] = { 44.5, 94.7, 17, 300 }, + [17] = { 46.9, 94.6, 17, 300 }, + [18] = { 44.6, 94.5, 17, 300 }, + [19] = { 44.6, 94.4, 17, 300 }, + [20] = { 44.4, 94.4, 17, 300 }, + [21] = { 46.9, 94.3, 17, 300 }, + [22] = { 46.6, 94.2, 17, 300 }, + [23] = { 38.9, 40.6, 400, 300 }, + [24] = { 35.1, 39.2, 400, 300 }, + [25] = { 34.5, 39.1, 400, 300 }, + [26] = { 33.9, 39, 400, 300 }, + [27] = { 33.6, 38.6, 400, 300 }, + [28] = { 34.5, 38.1, 400, 300 }, + [29] = { 33.2, 38.1, 400, 300 }, + [30] = { 34, 38, 400, 300 }, + [31] = { 34.1, 38, 400, 300 }, + [32] = { 34, 37.2, 400, 300 }, + [33] = { 34.4, 37.1, 400, 300 }, + [34] = { 34.4, 36.9, 400, 300 }, + [35] = { 33.4, 36.7, 400, 300 }, + [36] = { 34.2, 36.5, 400, 300 }, + [37] = { 38, 35.6, 400, 300 }, + [38] = { 33.1, 35.4, 400, 300 }, + [39] = { 38.4, 35.4, 400, 300 }, + [40] = { 37.8, 35.3, 400, 300 }, + [41] = { 37.9, 35.2, 400, 300 }, + [42] = { 38.2, 35, 400, 300 }, + [43] = { 32.3, 32.7, 400, 300 }, + [44] = { 37.4, 32.5, 400, 300 }, + [45] = { 37, 32.4, 400, 300 }, + [46] = { 37.5, 32.3, 400, 300 }, + [47] = { 34.9, 32, 400, 300 }, + [48] = { 37.3, 31.7, 400, 300 }, + [49] = { 35.3, 31.2, 400, 300 }, + [50] = { 35.4, 31.2, 400, 300 }, + [51] = { 34.9, 31, 400, 300 }, + [52] = { 35.4, 30.9, 400, 300 }, + [53] = { 32.1, 30.1, 400, 300 }, + [54] = { 33.1, 28.1, 400, 300 }, + [55] = { 33, 28, 400, 300 }, + [56] = { 38.6, 27.8, 400, 300 }, + [57] = { 33.3, 27.4, 400, 300 }, + [58] = { 33.2, 27.3, 400, 300 }, + [59] = { 32.8, 27.2, 400, 300 }, + [60] = { 38.5, 26.9, 400, 300 }, + [61] = { 37.9, 26.8, 400, 300 }, + }, + ["lvl"] = "25-26", + }, + [10759] = { + ["coords"] = { + [1] = { 46.7, 98, 17, 300 }, + [2] = { 46.9, 97.9, 17, 300 }, + [3] = { 46.6, 97.9, 17, 300 }, + [4] = { 46.8, 97.8, 17, 300 }, + [5] = { 44.2, 96.8, 17, 300 }, + [6] = { 46.4, 96.7, 17, 300 }, + [7] = { 46.2, 96.6, 17, 300 }, + [8] = { 46.4, 96.6, 17, 300 }, + [9] = { 45.3, 96.5, 17, 300 }, + [10] = { 46.4, 96.4, 17, 300 }, + [11] = { 45.5, 96.1, 17, 300 }, + [12] = { 45.3, 96, 17, 300 }, + [13] = { 45.5, 96, 17, 300 }, + [14] = { 44.1, 95.6, 17, 300 }, + [15] = { 44.5, 94.8, 17, 300 }, + [16] = { 44.5, 94.7, 17, 300 }, + [17] = { 46.9, 94.6, 17, 300 }, + [18] = { 44.6, 94.5, 17, 300 }, + [19] = { 44.6, 94.4, 17, 300 }, + [20] = { 44.4, 94.4, 17, 300 }, + [21] = { 46.9, 94.3, 17, 300 }, + [22] = { 46.6, 94.2, 17, 300 }, + [23] = { 38.9, 40.6, 400, 300 }, + [24] = { 35.1, 39.2, 400, 300 }, + [25] = { 34.5, 39.1, 400, 300 }, + [26] = { 33.9, 39, 400, 300 }, + [27] = { 33.6, 38.6, 400, 300 }, + [28] = { 34.5, 38.1, 400, 300 }, + [29] = { 33.2, 38.1, 400, 300 }, + [30] = { 34, 38, 400, 300 }, + [31] = { 34.1, 38, 400, 300 }, + [32] = { 34, 37.2, 400, 300 }, + [33] = { 34.4, 37.1, 400, 300 }, + [34] = { 34.4, 36.9, 400, 300 }, + [35] = { 33.4, 36.7, 400, 300 }, + [36] = { 34.2, 36.5, 400, 300 }, + [37] = { 38, 35.6, 400, 300 }, + [38] = { 33.1, 35.4, 400, 300 }, + [39] = { 38.4, 35.4, 400, 300 }, + [40] = { 37.8, 35.3, 400, 300 }, + [41] = { 37.9, 35.2, 400, 300 }, + [42] = { 38.2, 35, 400, 300 }, + [43] = { 32.3, 32.7, 400, 300 }, + [44] = { 37.4, 32.5, 400, 300 }, + [45] = { 37, 32.4, 400, 300 }, + [46] = { 37.5, 32.3, 400, 300 }, + [47] = { 34.9, 32, 400, 300 }, + [48] = { 37.3, 31.7, 400, 300 }, + [49] = { 35.3, 31.2, 400, 300 }, + [50] = { 35.4, 31.2, 400, 300 }, + [51] = { 34.9, 31, 400, 300 }, + [52] = { 35.4, 30.9, 400, 300 }, + [53] = { 32.1, 30.1, 400, 300 }, + [54] = { 33.1, 28.1, 400, 300 }, + [55] = { 33, 28, 400, 300 }, + [56] = { 38.6, 27.8, 400, 300 }, + [57] = { 33.3, 27.4, 400, 300 }, + [58] = { 33.2, 27.3, 400, 300 }, + [59] = { 32.8, 27.2, 400, 300 }, + [60] = { 38.5, 26.9, 400, 300 }, + [61] = { 37.9, 26.8, 400, 300 }, + }, + ["lvl"] = "26-27", + }, + [10760] = { + ["coords"] = { + [1] = { 46.7, 98, 17, 300 }, + [2] = { 46.9, 97.9, 17, 300 }, + [3] = { 46.6, 97.9, 17, 300 }, + [4] = { 46.8, 97.8, 17, 300 }, + [5] = { 44.2, 96.8, 17, 300 }, + [6] = { 46.4, 96.7, 17, 300 }, + [7] = { 46.2, 96.6, 17, 300 }, + [8] = { 46.4, 96.6, 17, 300 }, + [9] = { 45.3, 96.5, 17, 300 }, + [10] = { 46.4, 96.4, 17, 300 }, + [11] = { 45.5, 96.1, 17, 300 }, + [12] = { 45.3, 96, 17, 300 }, + [13] = { 45.5, 96, 17, 300 }, + [14] = { 44.1, 95.6, 17, 300 }, + [15] = { 44.5, 94.8, 17, 300 }, + [16] = { 44.5, 94.7, 17, 300 }, + [17] = { 46.9, 94.6, 17, 300 }, + [18] = { 44.6, 94.5, 17, 300 }, + [19] = { 44.6, 94.4, 17, 300 }, + [20] = { 44.4, 94.4, 17, 300 }, + [21] = { 46.9, 94.3, 17, 300 }, + [22] = { 46.6, 94.2, 17, 300 }, + [23] = { 38.9, 40.6, 400, 300 }, + [24] = { 35.1, 39.2, 400, 300 }, + [25] = { 34.5, 39.1, 400, 300 }, + [26] = { 33.9, 39, 400, 300 }, + [27] = { 33.6, 38.6, 400, 300 }, + [28] = { 34.5, 38.1, 400, 300 }, + [29] = { 33.2, 38.1, 400, 300 }, + [30] = { 34, 38, 400, 300 }, + [31] = { 34.1, 38, 400, 300 }, + [32] = { 34, 37.2, 400, 300 }, + [33] = { 34.4, 37.1, 400, 300 }, + [34] = { 34.4, 36.9, 400, 300 }, + [35] = { 33.4, 36.7, 400, 300 }, + [36] = { 34.2, 36.5, 400, 300 }, + [37] = { 38, 35.6, 400, 300 }, + [38] = { 33.1, 35.4, 400, 300 }, + [39] = { 38.4, 35.4, 400, 300 }, + [40] = { 37.8, 35.3, 400, 300 }, + [41] = { 37.9, 35.2, 400, 300 }, + [42] = { 38.2, 35, 400, 300 }, + [43] = { 32.3, 32.7, 400, 300 }, + [44] = { 37.4, 32.5, 400, 300 }, + [45] = { 37, 32.4, 400, 300 }, + [46] = { 37.5, 32.3, 400, 300 }, + [47] = { 34.9, 32, 400, 300 }, + [48] = { 37.3, 31.7, 400, 300 }, + [49] = { 35.3, 31.2, 400, 300 }, + [50] = { 35.4, 31.2, 400, 300 }, + [51] = { 34.9, 31, 400, 300 }, + [52] = { 35.4, 30.9, 400, 300 }, + [53] = { 32.1, 30.1, 400, 300 }, + [54] = { 33.1, 28.1, 400, 300 }, + [55] = { 33, 28, 400, 300 }, + [56] = { 38.6, 27.8, 400, 300 }, + [57] = { 33.3, 27.4, 400, 300 }, + [58] = { 33.2, 27.3, 400, 300 }, + [59] = { 32.8, 27.2, 400, 300 }, + [60] = { 38.5, 26.9, 400, 300 }, + [61] = { 37.9, 26.8, 400, 300 }, + }, + ["lvl"] = "25-27", + }, + [10761] = { + ["coords"] = { + [1] = { 46.5, 94, 17, 300 }, + [2] = { 39.2, 41.6, 400, 300 }, + [3] = { 34.5, 40, 400, 300 }, + [4] = { 33.7, 39.9, 400, 300 }, + [5] = { 33.3, 39, 400, 300 }, + [6] = { 34.9, 38.1, 400, 300 }, + [7] = { 32.6, 38, 400, 300 }, + [8] = { 33, 37.5, 400, 300 }, + [9] = { 34.7, 37.5, 400, 300 }, + [10] = { 37.7, 26.4, 400, 300 }, + }, + ["lvl"] = "28", + }, + [10762] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [10776] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [10778] = { + ["coords"] = { + [1] = { 38.4, 54.1, 28, 473 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [10779] = { + ["coords"] = { + [1] = { 39, 79.1, 28, 473 }, + [2] = { 49.7, 54.7, 28, 473 }, + [3] = { 49, 47.9, 28, 473 }, + [4] = { 48.6, 42.9, 28, 473 }, + [5] = { 52.3, 38.6, 28, 473 }, + [6] = { 55.1, 31.3, 28, 473 }, + [7] = { 65.6, 57.4, 130, 413 }, + [8] = { 51.4, 54.4, 130, 413 }, + [9] = { 51.8, 12.4, 130, 413 }, + [10] = { 11.6, 15.9, 267, 413 }, + }, + ["lvl"] = "1", + }, + [10780] = { + ["coords"] = { + [1] = { 43.8, 81.2, 28, 473 }, + [2] = { 41.4, 80.6, 28, 473 }, + [3] = { 36.1, 75.3, 28, 473 }, + [4] = { 41.3, 55, 28, 473 }, + [5] = { 42.4, 51.5, 28, 473 }, + [6] = { 54.1, 35.8, 28, 473 }, + [7] = { 54.5, 29, 28, 473 }, + [8] = { 52.2, 22.8, 28, 473 }, + [9] = { 44.6, 18.7, 28, 473 }, + [10] = { 51.6, 76.8, 130, 413 }, + [11] = { 41.6, 24.7, 130, 413 }, + }, + ["lvl"] = "5", + }, + [10781] = { + ["coords"] = { + [1] = { 69.8, 43.2, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [10782] = { + ["coords"] = { + [1] = { 48.5, 30.5, 1519, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [10783] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [10784] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [10785] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [10786] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [10787] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [10788] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [10789] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [10790] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [10791] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [10792] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [10793] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [10794] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [10795] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [10796] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [10797] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [10798] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [10799] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [10800] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [10801] = { + ["coords"] = { + [1] = { 36.8, 58.2, 28, 315 }, + }, + ["lvl"] = "54", + }, + [10802] = { + ["coords"] = { + [1] = { 81, 26, 45, 350 }, + [2] = { 57.3, 86.6, 47, 350 }, + }, + ["lvl"] = "51", + ["rnk"] = "1", + }, + [10803] = { + ["coords"] = { + [1] = { 40.6, 64.9, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "8-9", + }, + [10804] = { + ["coords"] = { + [1] = { 40.6, 65, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "8-9", + }, + [10805] = { + ["coords"] = { + [1] = { 40.7, 64.9, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "6", + }, + [10806] = { + ["coords"] = { + [1] = { 64, 24.1, 618, 333 }, + }, + ["lvl"] = "56", + ["rnk"] = "1", + }, + [10807] = { + ["coords"] = { + [1] = { 62.5, 57.9, 618, 333 }, + }, + ["lvl"] = "58", + ["rnk"] = "1", + }, + [10808] = { + ["coords"] = {}, + ["lvl"] = "58", + ["rnk"] = "2", + }, + [10809] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "2", + }, + [10810] = { + ["coords"] = {}, + ["lvl"] = "59", + ["rnk"] = "2", + }, + [10811] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [10812] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [10813] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [10814] = { + ["coords"] = {}, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [10816] = { + ["coords"] = { + [1] = { 47.7, 49.9, 28, 120 }, + }, + ["lvl"] = "55", + }, + [10817] = { + ["coords"] = { + [1] = { 39.3, 70.5, 139, 37800 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "4", + }, + [10818] = { + ["coords"] = {}, + ["lvl"] = "43", + ["rnk"] = "4", + }, + [10819] = { + ["coords"] = { + [1] = { 39.4, 27, 139, 19800 }, + }, + ["lvl"] = "59", + ["rnk"] = "4", + }, + [10820] = { + ["coords"] = {}, + ["lvl"] = "45", + ["rnk"] = "4", + }, + [10821] = { + ["coords"] = { + [1] = { 66.1, 50.2, 139, 115200 }, + }, + ["lvl"] = "57", + ["rnk"] = "4", + }, + [10822] = { + ["coords"] = { + [1] = { 69, 18.8, 139, 18000 }, + }, + ["lvl"] = "58", + ["rnk"] = "4", + }, + [10823] = { + ["coords"] = { + [1] = { 72.2, 16.9, 139, 37800 }, + }, + ["lvl"] = "59", + ["rnk"] = "4", + }, + [10824] = { + ["coords"] = { + [1] = { 52.2, 18.5, 139, 18000 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "4", + }, + [10825] = { + ["coords"] = { + [1] = { 48.6, 41.4, 139, 75600 }, + }, + ["lvl"] = "56", + ["rnk"] = "4", + }, + [10826] = { + ["coords"] = { + [1] = { 26.2, 32.8, 139, 75600 }, + }, + ["lvl"] = "57", + ["rnk"] = "4", + }, + [10827] = { + ["coords"] = { + [1] = { 85.7, 45.3, 139, 18000 }, + }, + ["lvl"] = "56", + ["rnk"] = "4", + }, + [10828] = { + ["coords"] = { + [1] = { 88.5, 86.5, 139, 18000 }, + }, + ["lvl"] = "59", + ["rnk"] = "2", + }, + [10836] = { + ["coords"] = {}, + ["lvl"] = "56", + }, + [10837] = { + ["coords"] = { + [1] = { 26.5, 56, 28, 300 }, + [2] = { 83.1, 68.9, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "61", + }, + [10838] = { + ["coords"] = { + [1] = { 42.7, 84, 28, 315 }, + }, + ["fac"] = "A", + ["lvl"] = "61", + }, + [10839] = { + ["coords"] = { + [1] = { 26.6, 55.5, 28, 300 }, + [2] = { 83.2, 68.4, 85, 300 }, + }, + ["lvl"] = "60", + }, + [10840] = { + ["coords"] = { + [1] = { 43, 83.5, 28, 315 }, + }, + ["lvl"] = "60", + }, + [10856] = { + ["coords"] = { + [1] = { 26.6, 55.2, 28, 300 }, + [2] = { 83.3, 68.1, 85, 300 }, + }, + ["lvl"] = "58", + }, + [10857] = { + ["coords"] = { + [1] = { 42.8, 83.7, 28, 315 }, + }, + ["lvl"] = "58", + }, + [10876] = { + ["coords"] = {}, + ["lvl"] = "57", + }, + [10877] = { + ["coords"] = { + [1] = { 55.9, 81.4, 1537, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "3", + }, + [10878] = { + ["coords"] = { + [1] = { 27.1, 64, 141, 300 }, + [2] = { 47.8, 82, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "3", + }, + [10879] = { + ["coords"] = { + [1] = { 68.6, 48.1, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "3", + }, + [10880] = { + ["coords"] = { + [1] = { 42.5, 6.8, 14, 300 }, + [2] = { 37.6, 75.4, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "3", + }, + [10881] = { + ["coords"] = { + [1] = { 38.8, 28.8, 215, 375 }, + [2] = { 44.3, 58.8, 1638, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "3", + }, + [10882] = { + ["coords"] = {}, + ["lvl"] = "28", + ["rnk"] = "1", + }, + [10896] = { + ["coords"] = { + [1] = { 46.7, 94.2, 17, 300 }, + [2] = { 38.1, 26.9, 400, 300 }, + }, + ["lvl"] = "29", + }, + [10897] = { + ["coords"] = { + [1] = { 48.1, 67.3, 493, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [10898] = { + ["coords"] = {}, + ["lvl"] = "59", + ["rnk"] = "1", + }, + [10899] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [10901] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [10902] = { + ["coords"] = { + [1] = { 40, 71.6, 28, 473 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [10903] = { + ["coords"] = { + [1] = { 42.3, 66.2, 28, 473 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [10904] = { + ["coords"] = { + [1] = { 44.3, 63.3, 28, 473 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [10905] = { + ["coords"] = { + [1] = { 46.6, 71, 28, 473 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [10916] = { + ["coords"] = { + [1] = { 60.2, 5.8, 361, 300 }, + [2] = { 53.1, 34.8, 618, 333 }, + [3] = { 53.1, 34.7, 618, 333 }, + [4] = { 53.2, 34.6, 618, 333 }, + }, + ["lvl"] = "57", + }, + [10917] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [10918] = { + ["coords"] = { + [1] = { 63.9, 73.8, 618, 333 }, + }, + ["fac"] = "AH", + ["lvl"] = "61", + }, + [10919] = { + ["coords"] = { + [1] = { 68.1, 23.6, 148, 300 }, + [2] = { 68, 23.5, 148, 300 }, + [3] = { 68.1, 23.5, 148, 300 }, + [4] = { 68.5, 23.4, 148, 300 }, + [5] = { 68.6, 23.4, 148, 300 }, + [6] = { 69.2, 23, 148, 300 }, + [7] = { 68, 22.9, 148, 300 }, + [8] = { 68.1, 22.9, 148, 300 }, + [9] = { 67.9, 22.9, 148, 300 }, + [10] = { 68.1, 22.8, 148, 300 }, + [11] = { 69.3, 22.8, 148, 300 }, + [12] = { 67.9, 22.8, 148, 300 }, + [13] = { 68, 22.8, 148, 300 }, + [14] = { 67.8, 22.8, 148, 300 }, + [15] = { 68, 22.7, 148, 300 }, + [16] = { 68.1, 22.7, 148, 300 }, + [17] = { 68.2, 22.7, 148, 300 }, + [18] = { 68.3, 22.6, 148, 300 }, + [19] = { 68.2, 22.5, 148, 300 }, + [20] = { 68.1, 22.5, 148, 300 }, + [21] = { 68.2, 22.4, 148, 300 }, + [22] = { 69, 21.6, 148, 300 }, + [23] = { 69.9, 21.4, 148, 300 }, + [24] = { 70.2, 21.3, 148, 300 }, + [25] = { 69.1, 20, 148, 300 }, + [26] = { 68.9, 19.7, 148, 300 }, + [27] = { 69, 19.7, 148, 300 }, + [28] = { 68.2, 19.7, 148, 300 }, + [29] = { 68.8, 19.7, 148, 300 }, + [30] = { 69.1, 19.6, 148, 300 }, + [31] = { 69, 19.6, 148, 300 }, + [32] = { 68.2, 19.1, 148, 300 }, + [33] = { 68.6, 18.9, 148, 300 }, + [34] = { 68.8, 18.8, 148, 300 }, + [35] = { 68.7, 18.8, 148, 300 }, + [36] = { 68.3, 18.6, 148, 300 }, + [37] = { 68.4, 18.6, 148, 300 }, + [38] = { 68.1, 18.1, 148, 300 }, + [39] = { 68.3, 18.1, 148, 300 }, + [40] = { 68.2, 18, 148, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "52-58", + }, + [10920] = { + ["coords"] = { + [1] = { 51.1, 81.8, 361, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "57", + }, + [10921] = { + ["coords"] = { + [1] = { 50.9, 81.6, 361, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [10922] = { + ["coords"] = { + [1] = { 51.2, 82.1, 361, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "59", + }, + [10923] = { + ["coords"] = { + [1] = { 51, 82.5, 361, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "62", + }, + [10924] = { + ["coords"] = { + [1] = { 51, 81.6, 361, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "63", + }, + [10925] = { + ["coords"] = {}, + ["lvl"] = "50", + }, + [10926] = { + ["coords"] = { + [1] = { 36.5, 90.8, 139, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [10927] = { + ["coords"] = { + [1] = { 49.2, 78.6, 28, 473 }, + }, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [10928] = { + ["coords"] = {}, + ["lvl"] = "40", + }, + [10929] = { + ["coords"] = { + [1] = { 54.5, 51.2, 618, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "62", + ["rnk"] = "1", + }, + [10930] = { + ["coords"] = { + [1] = { 82.4, 62.4, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [10936] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [10937] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [10938] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [10939] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "58", + ["rnk"] = "1", + }, + [10940] = { + ["coords"] = { + [1] = { 38.6, 92.6, 139, 345 }, + }, + ["lvl"] = "55", + }, + [10941] = { + ["coords"] = { + [1] = { 21.4, 32.6, 400, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "31", + }, + [10942] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "3", + }, + [10943] = { + ["coords"] = {}, + ["lvl"] = "55-56", + }, + [10944] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [10945] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [10946] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [10947] = { + ["coords"] = {}, + ["lvl"] = "57-58", + }, + [10948] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "57-58", + }, + [10949] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [10950] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "56", + }, + [10951] = { + ["coords"] = {}, + ["lvl"] = "56-57", + }, + [10952] = { + ["coords"] = {}, + ["lvl"] = "56-57", + }, + [10953] = { + ["coords"] = {}, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [10954] = { + ["coords"] = {}, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [10955] = { + ["coords"] = {}, + ["lvl"] = "55-56", + }, + [10956] = { + ["coords"] = {}, + ["lvl"] = "55-57", + }, + [10976] = { + ["coords"] = { + [1] = { 39.4, 66.8, 28, 315 }, + }, + ["fac"] = "AH", + ["lvl"] = "58", + }, + [10977] = { + ["coords"] = { + [1] = { 43.7, 9.4, 490, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "53", + }, + [10978] = { + ["coords"] = { + [1] = { 61.5, 38.6, 618, 333 }, + }, + ["lvl"] = "57", + }, + [10979] = { + ["coords"] = {}, + ["lvl"] = "52-53", + }, + [10980] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [10981] = { + ["coords"] = { + [1] = { 54.3, 85, 2597, 430 }, + [2] = { 53.1, 82.6, 2597, 430 }, + [3] = { 54.9, 81.2, 2597, 430 }, + [4] = { 55.2, 78.5, 2597, 430 }, + [5] = { 50, 77.2, 2597, 430 }, + [6] = { 52, 77.1, 2597, 430 }, + [7] = { 52.4, 76.1, 2597, 430 }, + [8] = { 53.8, 75.5, 2597, 430 }, + [9] = { 50.7, 74.1, 2597, 430 }, + [10] = { 51.4, 74, 2597, 430 }, + [11] = { 53.2, 72.6, 2597, 430 }, + [12] = { 48.9, 70.4, 2597, 430 }, + [13] = { 49.4, 68.9, 2597, 430 }, + [14] = { 53, 68.8, 2597, 430 }, + [15] = { 46.7, 58.2, 2597, 430 }, + [16] = { 46.5, 55.5, 2597, 430 }, + [17] = { 45.2, 53.5, 2597, 430 }, + [18] = { 44.9, 51.9, 2597, 430 }, + }, + ["lvl"] = "50-51", + }, + [10982] = { + ["coords"] = { + [1] = { 47.9, 73.1, 2597, 300 }, + [2] = { 47.3, 72.9, 2597, 300 }, + [3] = { 43.3, 72.1, 2597, 300 }, + [4] = { 43.4, 72.1, 2597, 300 }, + [5] = { 46.8, 72.1, 2597, 300 }, + [6] = { 48.2, 71.9, 2597, 300 }, + [7] = { 46.7, 71.9, 2597, 300 }, + [8] = { 47, 71.5, 2597, 300 }, + [9] = { 46.8, 71.3, 2597, 300 }, + [10] = { 45.3, 71.2, 2597, 300 }, + [11] = { 47.9, 70.9, 2597, 300 }, + [12] = { 47.5, 70.6, 2597, 300 }, + [13] = { 43.3, 70.2, 2597, 300 }, + [14] = { 43.9, 69.2, 2597, 300 }, + [15] = { 45.1, 69.1, 2597, 300 }, + [16] = { 43.7, 68.7, 2597, 300 }, + [17] = { 44.1, 68.6, 2597, 300 }, + [18] = { 45.4, 67.7, 2597, 300 }, + }, + ["lvl"] = "52-53", + }, + [10983] = { + ["coords"] = { + [1] = { 41, 50.7, 2597, 430 }, + [2] = { 36.8, 47.5, 2597, 430 }, + [3] = { 45.2, 45.4, 2597, 430 }, + [4] = { 41.4, 43.8, 2597, 430 }, + [5] = { 36.8, 43.7, 2597, 430 }, + [6] = { 44.6, 37.8, 2597, 430 }, + }, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [10984] = { + ["coords"] = {}, + ["lvl"] = "61-62", + ["rnk"] = "1", + }, + [10985] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "50-51", + ["rnk"] = "1", + }, + [10986] = { + ["coords"] = { + [1] = { 37.9, 46.8, 2597, 120 }, + [2] = { 38.9, 38.7, 2597, 120 }, + [3] = { 38.5, 33.5, 2597, 120 }, + [4] = { 40.2, 29.3, 2597, 120 }, + [5] = { 49.5, 29, 2597, 120 }, + [6] = { 41.4, 28.9, 2597, 120 }, + [7] = { 43.2, 23.3, 2597, 120 }, + [8] = { 42.8, 22.4, 2597, 120 }, + [9] = { 43.3, 19.6, 2597, 120 }, + }, + ["lvl"] = "52-53", + }, + [10987] = { + ["coords"] = { + [1] = { 49.8, 10.1, 2597, 300 }, + [2] = { 49.6, 10, 2597, 300 }, + [3] = { 52.6, 9.5, 2597, 300 }, + [4] = { 49.9, 9.3, 2597, 300 }, + [5] = { 51.2, 9.3, 2597, 300 }, + [6] = { 50.2, 9, 2597, 300 }, + [7] = { 50.9, 8.9, 2597, 300 }, + [8] = { 49.8, 8.9, 2597, 300 }, + [9] = { 50.4, 8.9, 2597, 300 }, + [10] = { 50.7, 8.9, 2597, 300 }, + [11] = { 52.7, 8.9, 2597, 300 }, + [12] = { 51, 8.9, 2597, 300 }, + [13] = { 51.7, 8.4, 2597, 300 }, + [14] = { 50.1, 8.3, 2597, 300 }, + [15] = { 50.8, 8.2, 2597, 300 }, + [16] = { 51.2, 8.1, 2597, 300 }, + [17] = { 50.3, 8.1, 2597, 300 }, + [18] = { 50.7, 8, 2597, 300 }, + [19] = { 50.1, 7.7, 2597, 300 }, + [20] = { 51.8, 7.5, 2597, 300 }, + [21] = { 50.2, 7.4, 2597, 300 }, + [22] = { 50.3, 7.4, 2597, 300 }, + [23] = { 50.2, 7.3, 2597, 300 }, + [24] = { 51.9, 7.2, 2597, 300 }, + [25] = { 50.1, 7.1, 2597, 300 }, + [26] = { 51.3, 7, 2597, 300 }, + [27] = { 49.9, 7, 2597, 300 }, + [28] = { 51.6, 6.9, 2597, 300 }, + [29] = { 50.1, 6.8, 2597, 300 }, + [30] = { 52.3, 6.7, 2597, 300 }, + [31] = { 52.1, 6.7, 2597, 300 }, + [32] = { 53.2, 6.6, 2597, 300 }, + [33] = { 53.2, 6.2, 2597, 300 }, + [34] = { 51.4, 6.1, 2597, 300 }, + [35] = { 51.3, 6, 2597, 300 }, + [36] = { 51.4, 5.9, 2597, 300 }, + [37] = { 51.4, 5.8, 2597, 300 }, + [38] = { 50.5, 5.8, 2597, 300 }, + [39] = { 51, 5.6, 2597, 300 }, + [40] = { 51.8, 5.5, 2597, 300 }, + [41] = { 50.5, 5.5, 2597, 300 }, + [42] = { 51.6, 5.4, 2597, 300 }, + [43] = { 52.4, 5.4, 2597, 300 }, + [44] = { 51.1, 5.3, 2597, 300 }, + [45] = { 52.2, 5.2, 2597, 300 }, + [46] = { 49.7, 4.5, 2597, 300 }, + [47] = { 49.9, 4.5, 2597, 300 }, + [48] = { 52.8, 4.1, 2597, 300 }, + [49] = { 52.5, 4, 2597, 300 }, + }, + ["lvl"] = "52-53", + }, + [10988] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [10989] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "50-51", + ["rnk"] = "1", + }, + [10990] = { + ["coords"] = { + [1] = { 51.1, 42.6, 2597, 430 }, + [2] = { 46.6, 40.4, 2597, 430 }, + [3] = { 49.9, 34.8, 2597, 430 }, + [4] = { 49.6, 34.6, 2597, 430 }, + [5] = { 51.5, 32.9, 2597, 430 }, + [6] = { 52, 30.8, 2597, 430 }, + [7] = { 52, 29.5, 2597, 430 }, + [8] = { 48.2, 28.8, 2597, 430 }, + [9] = { 49, 28.2, 2597, 430 }, + [10] = { 49.1, 28, 2597, 430 }, + [11] = { 44.6, 27.1, 2597, 430 }, + [12] = { 43, 26.9, 2597, 430 }, + [13] = { 46.4, 26.8, 2597, 430 }, + [14] = { 44.8, 25.7, 2597, 430 }, + [15] = { 47, 25.7, 2597, 430 }, + [16] = { 50.2, 24.6, 2597, 430 }, + [17] = { 47.3, 23.5, 2597, 430 }, + [18] = { 45, 22.5, 2597, 430 }, + [19] = { 49.5, 22.5, 2597, 430 }, + [20] = { 42.7, 22.5, 2597, 430 }, + [21] = { 46.7, 22.1, 2597, 430 }, + [22] = { 45.7, 21.7, 2597, 430 }, + [23] = { 44.9, 21.5, 2597, 430 }, + [24] = { 44.8, 21.3, 2597, 430 }, + [25] = { 47.3, 21.2, 2597, 430 }, + [26] = { 52.7, 21.2, 2597, 430 }, + [27] = { 46.1, 21.2, 2597, 430 }, + [28] = { 43.6, 20.5, 2597, 430 }, + [29] = { 47.2, 20.4, 2597, 430 }, + [30] = { 49, 20.1, 2597, 430 }, + [31] = { 46.9, 20, 2597, 430 }, + [32] = { 53.3, 19.7, 2597, 430 }, + [33] = { 47.6, 15, 2597, 430 }, + [34] = { 48.1, 13.5, 2597, 430 }, + [35] = { 48.2, 13.2, 2597, 430 }, + }, + ["lvl"] = "50-51", + }, + [10991] = { + ["coords"] = { + [1] = { 51.9, 97.4, 2597, 120 }, + [2] = { 53.5, 93.1, 2597, 120 }, + [3] = { 52.3, 91.5, 2597, 120 }, + [4] = { 52.4, 91, 2597, 120 }, + }, + ["lvl"] = "52-53", + }, + [10992] = { + ["coords"] = { + [1] = { 40, 93.3, 17, 600 }, + [2] = { 22.8, 24.6, 400, 600 }, + }, + ["lvl"] = "30", + ["rnk"] = "1", + }, + [10993] = { + ["coords"] = { + [1] = { 37, 43.8, 17, 375 }, + [2] = { 61.9, 31.4, 215, 375 }, + }, + ["lvl"] = "25", + }, + [10996] = { + ["coords"] = {}, + ["lvl"] = "58-60", + ["rnk"] = "1", + }, + [10997] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11016] = { + ["coords"] = { + [1] = { 36.2, 55.5, 361, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "48", + }, + [11017] = { + ["coords"] = { + [1] = { 76.2, 25.2, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "46", + }, + [11018] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "48", + }, + [11019] = { + ["coords"] = { + [1] = { 51.3, 82, 361, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [11020] = { + ["coords"] = { + [1] = { 38.5, 50.4, 361, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [11021] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [11022] = { + ["coords"] = { + [1] = { 26.4, 58.8, 28, 900 }, + [2] = { 83.1, 71.6, 85, 900 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11023] = { + ["coords"] = { + [1] = { 43.5, 83.7, 28, 660 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11024] = { + ["coords"] = { + [1] = { 51.3, 82, 361, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "49", + }, + [11025] = { + ["coords"] = { + [1] = { 52.2, 40.8, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "26", + }, + [11026] = { + ["coords"] = { + [1] = { 54.6, 7.9, 1519, 285 }, + }, + ["fac"] = "A", + ["lvl"] = "24", + }, + [11027] = { + ["coords"] = {}, + ["lvl"] = "51", + }, + [11028] = { + ["coords"] = { + [1] = { 67.7, 44.2, 1537, 285 }, + }, + ["fac"] = "A", + ["lvl"] = "24", + }, + [11029] = { + ["coords"] = { + [1] = { 67.5, 42.9, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "31", + }, + [11030] = { + ["coords"] = {}, + ["lvl"] = "56-57", + }, + [11031] = { + ["coords"] = { + [1] = { 76.1, 74, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "33", + }, + [11032] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11033] = { + ["coords"] = { + [1] = { 80.6, 58, 139, 345 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [11034] = { + ["coords"] = { + [1] = { 81.7, 58, 139, 345 }, + }, + ["lvl"] = "62", + }, + [11035] = { + ["coords"] = { + [1] = { 81.5, 59.7, 139, 345 }, + }, + ["lvl"] = "57", + }, + [11036] = { + ["coords"] = { + [1] = { 80.6, 58.8, 139, 480 }, + [2] = { 81.7, 57.8, 139, 480 }, + }, + ["lvl"] = "60", + }, + [11037] = { + ["coords"] = { + [1] = { 38.3, 41.1, 148, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "26", + }, + [11038] = { + ["coords"] = { + [1] = { 79.5, 63.9, 139, 345 }, + }, + ["lvl"] = "52", + }, + [11039] = { + ["coords"] = { + [1] = { 81.4, 59.8, 139, 345 }, + }, + ["lvl"] = "60", + }, + [11040] = { + ["coords"] = { + [1] = { 74.6, 45.4, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [11041] = { + ["coords"] = { + [1] = { 28.7, 51.7, 141, 300 }, + [2] = { 55.4, 22.7, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "24", + }, + [11042] = { + ["coords"] = { + [1] = { 28.9, 52, 141, 300 }, + [2] = { 56.4, 24.2, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "32", + }, + [11043] = { + ["coords"] = {}, + ["lvl"] = "58-60", + ["rnk"] = "1", + }, + [11044] = { + ["coords"] = { + [1] = { 72, 9.4, 130, 300 }, + [2] = { 46.6, 74.1, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [11045] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "45", + }, + [11046] = { + ["coords"] = { + [1] = { 55.8, 32.9, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "23", + }, + [11047] = { + ["coords"] = { + [1] = { 39.3, 23.8, 215, 375 }, + [2] = { 46.7, 34.4, 1638, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [11048] = { + ["coords"] = { + [1] = { 70.1, 29.8, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "24", + }, + [11049] = { + ["coords"] = { + [1] = { 70, 30.6, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "32", + }, + [11050] = { + ["coords"] = { + [1] = { 30.4, 51.3, 141, 300 }, + [2] = { 63.5, 21.2, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [11051] = { + ["coords"] = { + [1] = { 38.8, 25.9, 215, 375 }, + [2] = { 44.3, 44.3, 1638, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "26", + }, + [11052] = { + ["coords"] = { + [1] = { 66.2, 51.8, 15, 360 }, + }, + ["fac"] = "A", + ["lvl"] = "51", + }, + [11053] = { + ["coords"] = { + [1] = { 43, 84.5, 28, 315 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [11054] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [11055] = { + ["coords"] = { + [1] = { 26.4, 59.1, 28, 300 }, + [2] = { 83, 71.9, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [11056] = { + ["coords"] = { + [1] = { 42.7, 83.8, 28, 315 }, + }, + ["fac"] = "A", + ["lvl"] = "58", + }, + [11057] = { + ["coords"] = { + [1] = { 26.7, 56.3, 28, 300 }, + [2] = { 83.3, 69.2, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "58", + }, + [11058] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [11063] = { + ["coords"] = { + [1] = { 81.5, 59.8, 139, 345 }, + }, + ["lvl"] = "58", + }, + [11064] = { + ["coords"] = { + [1] = { 25.6, 37.1, 139, 345 }, + [2] = { 38, 36.6, 139, 345 }, + [3] = { 38.6, 35.5, 139, 345 }, + [4] = { 31, 34.7, 139, 345 }, + [5] = { 32.6, 34.3, 139, 345 }, + [6] = { 18.6, 34.3, 139, 345 }, + [7] = { 36.3, 33.7, 139, 345 }, + [8] = { 37.3, 33.1, 139, 345 }, + [9] = { 25.2, 33.1, 139, 345 }, + [10] = { 42.1, 33, 139, 345 }, + [11] = { 26.4, 32.6, 139, 345 }, + [12] = { 14.2, 32.5, 139, 345 }, + [13] = { 25.7, 31.7, 139, 345 }, + [14] = { 31.1, 31.3, 139, 345 }, + [15] = { 16.7, 30.9, 139, 345 }, + [16] = { 16.7, 30.4, 139, 345 }, + [17] = { 28.2, 30.2, 139, 345 }, + [18] = { 35.2, 29.2, 139, 345 }, + [19] = { 42.7, 28.1, 139, 345 }, + [20] = { 27.3, 26.6, 139, 345 }, + [21] = { 37.1, 23.7, 139, 345 }, + [22] = { 36.4, 22.7, 139, 345 }, + [23] = { 43.4, 22.3, 139, 345 }, + [24] = { 22.3, 21.4, 139, 345 }, + [25] = { 41.2, 21.3, 139, 345 }, + [26] = { 22.3, 19.4, 139, 345 }, + [27] = { 37, 29.4, 139, 345 }, + [28] = { 37.8, 25.1, 139, 345 }, + [29] = { 17.5, 32.5, 139, 345 }, + [30] = { 17.8, 32.1, 139, 345 }, + [31] = { 17.5, 31.8, 139, 345 }, + [32] = { 17.5, 31.3, 139, 345 }, + [33] = { 41.3, 26.5, 139, 345 }, + [34] = { 42.1, 25.2, 139, 345 }, + [35] = { 39.7, 23.9, 139, 345 }, + [36] = { 60.1, 73.6, 139, 345 }, + [37] = { 60.9, 73, 139, 345 }, + [38] = { 58.4, 72.9, 139, 345 }, + [39] = { 59.3, 69, 139, 345 }, + [40] = { 62.1, 67.8, 139, 345 }, + [41] = { 61.2, 67, 139, 345 }, + [42] = { 61.9, 65.4, 139, 345 }, + [43] = { 60.4, 65.1, 139, 345 }, + [44] = { 58.5, 70.3, 139, 345 }, + [45] = { 67.1, 40.8, 139, 345 }, + [46] = { 65.4, 40.8, 139, 345 }, + [47] = { 67.2, 39.9, 139, 345 }, + [48] = { 65.5, 39.7, 139, 345 }, + [49] = { 64.4, 39.2, 139, 345 }, + [50] = { 64.7, 38.3, 139, 345 }, + [51] = { 65.5, 38.3, 139, 345 }, + [52] = { 66, 35.9, 139, 345 }, + [53] = { 33.7, 66.4, 139, 345 }, + [54] = { 34.1, 65.7, 139, 345 }, + [55] = { 32.5, 65.3, 139, 345 }, + [56] = { 35.5, 64, 139, 345 }, + [57] = { 31.8, 63.9, 139, 345 }, + [58] = { 34, 63.7, 139, 345 }, + [59] = { 34.4, 62.6, 139, 345 }, + [60] = { 33.5, 61.1, 139, 345 }, + [61] = { 34, 59.9, 139, 345 }, + [62] = { 36.3, 58.9, 139, 345 }, + [63] = { 35.3, 58.7, 139, 345 }, + [64] = { 37, 57.4, 139, 345 }, + [65] = { 37.7, 57.3, 139, 345 }, + [66] = { 37, 56.7, 139, 345 }, + [67] = { 38.2, 56.2, 139, 345 }, + [68] = { 37.8, 55.5, 139, 345 }, + [69] = { 37.3, 54.7, 139, 345 }, + [70] = { 37.3, 53.6, 139, 345 }, + [71] = { 37.4, 52.4, 139, 345 }, + [72] = { 42, 52.4, 139, 345 }, + [73] = { 37.8, 52.1, 139, 345 }, + [74] = { 39.6, 52, 139, 345 }, + [75] = { 39.6, 49.7, 139, 345 }, + [76] = { 40.5, 48.5, 139, 345 }, + [77] = { 79.2, 56.1, 139, 345 }, + [78] = { 78.3, 55, 139, 345 }, + [79] = { 77.6, 54.1, 139, 345 }, + [80] = { 78.3, 52.5, 139, 345 }, + [81] = { 76.5, 52.4, 139, 345 }, + [82] = { 77, 52.3, 139, 345 }, + [83] = { 75.9, 52, 139, 345 }, + [84] = { 77.5, 51.1, 139, 345 }, + [85] = { 75.6, 50.9, 139, 345 }, + [86] = { 76.5, 50.8, 139, 345 }, + [87] = { 75.6, 50.5, 139, 345 }, + [88] = { 77.5, 49.9, 139, 345 }, + [89] = { 76.7, 48.4, 139, 345 }, + [90] = { 77.5, 47.4, 139, 345 }, + [91] = { 78.5, 45.8, 139, 345 }, + [92] = { 84.4, 45.8, 139, 345 }, + [93] = { 79.2, 44.9, 139, 345 }, + [94] = { 84.4, 44.5, 139, 345 }, + [95] = { 87, 44.1, 139, 345 }, + [96] = { 80.1, 44, 139, 345 }, + [97] = { 81.9, 44, 139, 345 }, + [98] = { 86.5, 43.7, 139, 345 }, + [99] = { 84.8, 43.4, 139, 345 }, + [100] = { 80.7, 43.4, 139, 345 }, + [101] = { 81.8, 42, 139, 345 }, + [102] = { 85.1, 41.9, 139, 345 }, + [103] = { 84.7, 40.9, 139, 345 }, + [104] = { 81.8, 40.7, 139, 345 }, + [105] = { 82.6, 38, 139, 345 }, + [106] = { 84.5, 37.4, 139, 345 }, + }, + ["fac"] = "AH", + ["lvl"] = "56-57", + }, + [11065] = { + ["coords"] = { + [1] = { 60.3, 45.4, 1537, 375 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [11066] = { + ["coords"] = { + [1] = { 53.5, 38.6, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "26", + }, + [11067] = { + ["coords"] = { + [1] = { 62.5, 60.3, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "23", + }, + [11068] = { + ["coords"] = { + [1] = { 43.1, 63.7, 1519, 375 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [11069] = { + ["coords"] = { + [1] = { 61.5, 17.2, 1519, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [11070] = { + ["coords"] = { + [1] = { 29.4, 49.6, 141, 300 }, + [2] = { 58.8, 12.7, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "27", + }, + [11071] = { + ["coords"] = { + [1] = { 38.9, 24.7, 215, 375 }, + [2] = { 44.6, 38.5, 1638, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "21", + }, + [11072] = { + ["coords"] = { + [1] = { 64.9, 70.7, 12, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "44", + }, + [11073] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "54", + }, + [11074] = { + ["coords"] = { + [1] = { 49.2, 57.2, 406, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "46", + }, + [11075] = { + ["coords"] = {}, + ["lvl"] = "53", + }, + [11076] = { + ["coords"] = {}, + ["lvl"] = "56", + }, + [11077] = { + ["coords"] = {}, + ["lvl"] = "55", + }, + [11078] = { + ["coords"] = {}, + ["lvl"] = "58", + }, + [11079] = { + ["coords"] = { + [1] = { 52, 30.4, 618, 333 }, + }, + ["fac"] = "A", + ["lvl"] = "62", + }, + [11080] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [11081] = { + ["coords"] = { + [1] = { 30.7, 51.5, 141, 300 }, + [2] = { 64.8, 21.8, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "32", + }, + [11082] = { + ["coords"] = {}, + ["lvl"] = "57", + ["rnk"] = "1", + }, + [11083] = { + ["coords"] = { + [1] = { 30.6, 51.3, 141, 300 }, + [2] = { 64.4, 20.9, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "24", + }, + [11084] = { + ["coords"] = { + [1] = { 38.4, 25.5, 215, 250 }, + [2] = { 42.3, 42.6, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "36", + }, + [11096] = { + ["coords"] = { + [1] = { 67.8, 49.7, 1519, 285 }, + }, + ["fac"] = "A", + ["lvl"] = "24", + }, + [11097] = { + ["coords"] = { + [1] = { 13.4, 43.5, 47, 350 }, + [2] = { 98.7, 2.3, 267, 350 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [11098] = { + ["coords"] = { + [1] = { 74.4, 43.1, 357, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [11099] = { + ["coords"] = { + [1] = { 81.1, 58.8, 139, 610 }, + [2] = { 81, 58.5, 139, 610 }, + [3] = { 82.4, 57.5, 139, 25 }, + [4] = { 82.5, 57.3, 139, 25 }, + }, + ["lvl"] = "55", + }, + [11100] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "52", + }, + [11101] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [11102] = { + ["coords"] = { + [1] = { 80.3, 56.4, 139, 610 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11103] = { + ["coords"] = { + [1] = { 66.3, 6.6, 405, 300 }, + [2] = { 40.8, 81.7, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [11104] = { + ["coords"] = { + [1] = { 65.6, 7.8, 405, 300 }, + [2] = { 40.2, 82.9, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [11105] = { + ["coords"] = { + [1] = { 24.9, 68.7, 405, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [11106] = { + ["coords"] = { + [1] = { 24.1, 68.2, 405, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [11116] = { + ["coords"] = { + [1] = { 46.1, 51.5, 400, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [11117] = { + ["coords"] = { + [1] = { 45.8, 51.1, 400, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [11118] = { + ["coords"] = { + [1] = { 61.4, 38.8, 618, 333 }, + }, + ["lvl"] = "30", + }, + [11119] = { + ["coords"] = { + [1] = { 60.4, 37.9, 618, 333 }, + }, + ["lvl"] = "30", + }, + [11120] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11121] = { + ["coords"] = {}, + ["lvl"] = "61-62", + ["rnk"] = "1", + }, + [11122] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [11136] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [11137] = { + ["coords"] = { + [1] = { 35.8, 52, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [11138] = { + ["coords"] = { + [1] = { 62.3, 36.6, 618, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [11139] = { + ["coords"] = { + [1] = { 60.5, 36.3, 618, 600 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [11140] = { + ["coords"] = { + [1] = { 14.4, 33.7, 139, 345 }, + }, + ["fac"] = "AH", + ["lvl"] = "59", + }, + [11141] = { + ["coords"] = {}, + ["lvl"] = "53", + ["rnk"] = "1", + }, + [11142] = { + ["coords"] = {}, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [11143] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11144] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [11145] = { + ["coords"] = { + [1] = { 51.7, 41.4, 1537, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "53", + }, + [11146] = { + ["coords"] = { + [1] = { 50.3, 43.6, 1537, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "54", + }, + [11147] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [11148] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [11149] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [11150] = { + ["coords"] = { + [1] = { 49.1, 47.8, 1, 270 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [11151] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [11152] = { + ["coords"] = { + [1] = { 53.1, 66, 28, 473 }, + [2] = { 62.8, 58.8, 28, 473 }, + [3] = { 37.1, 57.2, 28, 473 }, + [4] = { 46.1, 52.3, 28, 473 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [11153] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "1", + }, + [11154] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "1", + }, + [11155] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "1", + }, + [11156] = { + ["coords"] = { + [1] = { 59.7, 52.7, 85, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [11176] = { + ["coords"] = { + [1] = { 80, 23.3, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "53", + }, + [11177] = { + ["coords"] = { + [1] = { 79.8, 24.1, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "52", + }, + [11178] = { + ["coords"] = { + [1] = { 79.4, 23.7, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "51", + }, + [11179] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [11180] = { + ["coords"] = { + [1] = { 50.1, 73.8, 148, 300 }, + [2] = { 50.5, 73.7, 148, 300 }, + [3] = { 50.3, 73.5, 148, 300 }, + [4] = { 50.5, 72.7, 148, 300 }, + [5] = { 50.3, 72.4, 148, 300 }, + [6] = { 50.1, 72.2, 148, 300 }, + [7] = { 34.5, 52.7, 361, 300 }, + [8] = { 34.9, 52.6, 361, 300 }, + [9] = { 34.6, 52.4, 361, 300 }, + [10] = { 34.9, 51.5, 361, 300 }, + [11] = { 34.7, 51.2, 361, 300 }, + [12] = { 34.4, 50.9, 361, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [11181] = { + ["coords"] = { + [1] = { 61.8, 23.7, 361, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "56", + }, + [11182] = { + ["coords"] = { + [1] = { 61.6, 37.9, 618, 333 }, + }, + ["lvl"] = "54", + }, + [11183] = { + ["coords"] = { + [1] = { 61.7, 37.8, 618, 333 }, + }, + ["lvl"] = "55", + }, + [11184] = { + ["coords"] = { + [1] = { 61.7, 38, 618, 333 }, + }, + ["lvl"] = "53", + }, + [11185] = { + ["coords"] = { + [1] = { 60.8, 38.6, 618, 333 }, + }, + ["lvl"] = "57", + }, + [11186] = { + ["coords"] = { + [1] = { 61.8, 38.6, 618, 333 }, + }, + ["lvl"] = "54", + }, + [11187] = { + ["coords"] = { + [1] = { 61.3, 39.2, 618, 333 }, + }, + ["lvl"] = "60", + }, + [11188] = { + ["coords"] = { + [1] = { 60.8, 37.8, 618, 333 }, + }, + ["lvl"] = "58", + }, + [11189] = { + ["coords"] = { + [1] = { 61.2, 37.2, 618, 333 }, + }, + ["lvl"] = "51", + }, + [11190] = { + ["coords"] = { + [1] = { 61.4, 39, 618, 333 }, + [2] = { 61.7, 38.7, 618, 333 }, + [3] = { 61, 38.7, 618, 333 }, + [4] = { 61.5, 38.5, 618, 333 }, + [5] = { 60.9, 38.5, 618, 333 }, + [6] = { 61.6, 38.4, 618, 333 }, + [7] = { 60.7, 38.3, 618, 333 }, + [8] = { 60.5, 38.3, 618, 333 }, + [9] = { 61.8, 38.3, 618, 333 }, + [10] = { 61.1, 38.2, 618, 333 }, + [11] = { 60.5, 38.1, 618, 333 }, + [12] = { 60.7, 38.1, 618, 333 }, + [13] = { 61.4, 37.9, 618, 333 }, + [14] = { 61.8, 37.7, 618, 333 }, + [15] = { 61.3, 37.3, 618, 333 }, + [16] = { 61.4, 37.3, 618, 333 }, + [17] = { 61.5, 37.1, 618, 333 }, + [18] = { 61.2, 37, 618, 333 }, + }, + ["lvl"] = "57", + }, + [11191] = { + ["coords"] = { + [1] = { 61.3, 37.1, 618, 333 }, + }, + ["lvl"] = "55", + }, + [11192] = { + ["coords"] = { + [1] = { 61.3, 37.1, 618, 333 }, + }, + ["lvl"] = "58", + }, + [11193] = { + ["coords"] = { + [1] = { 61.3, 37.2, 618, 333 }, + }, + ["lvl"] = "57", + }, + [11194] = { + ["coords"] = { + [1] = { 43, 83.6, 28, 315 }, + [2] = { 42.9, 83.6, 28, 315 }, + [3] = { 26.6, 55.6, 28, 300 }, + [4] = { 26.6, 55.4, 28, 300 }, + [5] = { 26.4, 55.2, 28, 300 }, + [6] = { 83.2, 68.6, 85, 300 }, + [7] = { 83.2, 68.3, 85, 300 }, + [8] = { 83.1, 68.2, 85, 300 }, + }, + ["lvl"] = "55", + }, + [11195] = { + ["coords"] = {}, + ["lvl"] = "40", + }, + [11196] = { + ["coords"] = { + [1] = { 67.7, 23.3, 148, 300 }, + [2] = { 67.8, 23.2, 148, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "52-58", + }, + [11197] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [11198] = { + ["coords"] = { + [1] = { 26.9, 33.1, 8, 300 }, + [2] = { 25.5, 32.6, 8, 300 }, + [3] = { 25.5, 31.9, 8, 300 }, + [4] = { 25.1, 31.5, 8, 300 }, + [5] = { 25.2, 31.2, 8, 300 }, + [6] = { 26, 30.9, 8, 300 }, + [7] = { 26.5, 30.4, 8, 300 }, + [8] = { 25.2, 30.3, 8, 300 }, + }, + ["lvl"] = "42", + }, + [11199] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "61", + }, + [11200] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [11216] = { + ["coords"] = { + [1] = { 70.2, 73.7, 28, 315 }, + }, + ["fac"] = "AH", + ["lvl"] = "54", + }, + [11217] = { + ["coords"] = { + [1] = { 70.3, 73.7, 28, 315 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [11218] = { + ["coords"] = { + [1] = { 44.4, 76.4, 148, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [11219] = { + ["coords"] = { + [1] = { 27.3, 35.6, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "42", + }, + [11236] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [11256] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11257] = { + ["coords"] = {}, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [11258] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [11259] = { + ["coords"] = { + [1] = { 55.4, 55.8, 405, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [11260] = { + ["coords"] = { + [1] = { 50.1, 44.4, 12, 270 }, + [2] = { 51.2, 42.9, 12, 270 }, + [3] = { 52.2, 41.1, 12, 270 }, + [4] = { 51.5, 39.6, 12, 270 }, + [5] = { 50.7, 38.8, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [11261] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11262] = { + ["coords"] = {}, + ["lvl"] = "56-57", + }, + [11263] = { + ["coords"] = {}, + ["lvl"] = "58-60", + }, + [11276] = { + ["coords"] = { + [1] = { 11.8, 78.4, 16, 333 }, + [2] = { 11.9, 78.1, 16, 333 }, + }, + ["fac"] = "A", + ["lvl"] = "44", + }, + [11277] = { + ["coords"] = { + [1] = { 68.2, 81.6, 28, 25 }, + [2] = { 68.5, 79.3, 28, 25 }, + [3] = { 68.5, 79.2, 28, 25 }, + [4] = { 69.9, 79.1, 28, 25 }, + [5] = { 65.2, 78.1, 28, 25 }, + [6] = { 69.3, 77.4, 28, 25 }, + [7] = { 69.2, 77.4, 28, 25 }, + [8] = { 70, 75.5, 28, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "12-60", + }, + [11278] = { + ["coords"] = { + [1] = { 68.1, 77.5, 28, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [11279] = { + ["coords"] = { + [1] = { 68.7, 80.6, 28, 25 }, + [2] = { 68.3, 80.3, 28, 25 }, + [3] = { 69.9, 74.2, 28, 25 }, + [4] = { 70.1, 74, 28, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "51-55", + }, + [11280] = { + ["coords"] = { + [1] = { 70, 76.9, 28, 25 }, + [2] = { 70, 76.8, 28, 25 }, + [3] = { 68.7, 76.3, 28, 25 }, + [4] = { 68.6, 76, 28, 25 }, + [5] = { 69.8, 75.3, 28, 25 }, + [6] = { 69.6, 75.2, 28, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "50-54", + }, + [11281] = { + ["coords"] = { + [1] = { 70, 75.6, 28, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "52-56", + }, + [11282] = { + ["coords"] = { + [1] = { 69.1, 78.6, 28, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [11283] = { + ["coords"] = { + [1] = { 69.1, 78.7, 28, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [11284] = { + ["coords"] = {}, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [11285] = { + ["coords"] = { + [1] = { 63.6, 75, 28, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [11286] = { + ["coords"] = { + [1] = { 70.5, 74, 28, 25 }, + [2] = { 69.4, 72.4, 28, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "57", + }, + [11287] = { + ["coords"] = { + [1] = { 69.5, 79.6, 28, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "37", + }, + [11288] = { + ["coords"] = { + [1] = { 51.2, 50.1, 139, 345 }, + [2] = { 51.2, 49.8, 139, 345 }, + }, + ["lvl"] = "57-58", + }, + [11289] = { + ["coords"] = { + [1] = { 51.2, 50.1, 139, 345 }, + [2] = { 51.2, 49.8, 139, 345 }, + }, + ["fac"] = "AH", + ["lvl"] = "57-58", + }, + [11290] = { + ["coords"] = { + [1] = { 28.4, 87.2, 139, 345 }, + [2] = { 27.9, 86.1, 139, 345 }, + [3] = { 27.5, 86.1, 139, 345 }, + [4] = { 28.4, 85.9, 139, 345 }, + [5] = { 26.7, 85.7, 139, 345 }, + [6] = { 27.8, 85.4, 139, 345 }, + [7] = { 27.6, 85.4, 139, 345 }, + [8] = { 27.5, 85, 139, 345 }, + [9] = { 29.2, 84.5, 139, 345 }, + [10] = { 27.5, 84.4, 139, 345 }, + [11] = { 26.8, 83.3, 139, 345 }, + [12] = { 28.3, 83.2, 139, 345 }, + [13] = { 28.5, 83, 139, 345 }, + }, + ["lvl"] = "53-54", + }, + [11291] = { + ["coords"] = { + [1] = { 27.6, 87.4, 139, 345 }, + [2] = { 27.4, 85.8, 139, 345 }, + [3] = { 27.3, 85.3, 139, 345 }, + [4] = { 26.6, 84.6, 139, 345 }, + [5] = { 28.4, 84.5, 139, 345 }, + [6] = { 27.5, 83.2, 139, 345 }, + [7] = { 28.4, 87.2, 139, 345 }, + [8] = { 27.9, 86.1, 139, 345 }, + [9] = { 27.5, 86.1, 139, 345 }, + [10] = { 28.4, 85.9, 139, 345 }, + [11] = { 27.8, 85.4, 139, 345 }, + [12] = { 27.6, 85.4, 139, 345 }, + [13] = { 27.5, 85, 139, 345 }, + [14] = { 29.2, 84.5, 139, 345 }, + [15] = { 27.5, 84.4, 139, 345 }, + }, + ["lvl"] = "54-55", + }, + [11292] = { + ["coords"] = {}, + ["lvl"] = "55", + }, + [11296] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [11316] = { + ["coords"] = { + [1] = { 68, 74.8, 28, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "31", + }, + [11317] = { + ["coords"] = { + [1] = { 22.5, 73.1, 405, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [11318] = { + ["coords"] = {}, + ["lvl"] = "13-15", + ["rnk"] = "1", + }, + [11319] = { + ["coords"] = {}, + ["lvl"] = "13-15", + ["rnk"] = "1", + }, + [11320] = { + ["coords"] = {}, + ["lvl"] = "13-14", + ["rnk"] = "1", + }, + [11321] = { + ["coords"] = {}, + ["lvl"] = "13-15", + ["rnk"] = "1", + }, + [11322] = { + ["coords"] = {}, + ["lvl"] = "13-15", + ["rnk"] = "1", + }, + [11323] = { + ["coords"] = {}, + ["lvl"] = "13-15", + ["rnk"] = "1", + }, + [11324] = { + ["coords"] = {}, + ["lvl"] = "13-15", + ["rnk"] = "1", + }, + [11325] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [11326] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [11327] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [11328] = { + ["coords"] = { + [1] = { 80.9, 69, 12, 270 }, + [2] = { 82.6, 69, 12, 270 }, + [3] = { 81.8, 68.9, 12, 270 }, + [4] = { 82.4, 68.7, 12, 270 }, + [5] = { 81.4, 68.4, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "6-7", + }, + [11337] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11338] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [11339] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [11340] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [11341] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11342] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11343] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11344] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11345] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11346] = { + ["coords"] = { + [1] = { 51.6, 18.4, 33, 1800 }, + [2] = { 52.9, 18.3, 33, 1800 }, + [3] = { 50.9, 18.2, 33, 1800 }, + [4] = { 52.3, 17.6, 33, 1800 }, + [5] = { 49.6, 17.5, 33, 1800 }, + [6] = { 52.9, 16.8, 33, 1800 }, + [7] = { 50.9, 16.7, 33, 1800 }, + [8] = { 52.3, 16.7, 33, 1800 }, + [9] = { 51.5, 16.7, 33, 1800 }, + }, + ["lvl"] = "55-56", + ["rnk"] = "1", + }, + [11347] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [11348] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [11349] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11350] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11351] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11352] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [11353] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11354] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11355] = { + ["coords"] = { + [1] = { 51.7, 18.6, 33, 1800 }, + [2] = { 51.3, 18.4, 33, 1800 }, + [3] = { 50.8, 18.4, 33, 1800 }, + [4] = { 53, 18.4, 33, 1800 }, + [5] = { 50.6, 18.3, 33, 1800 }, + [6] = { 53, 18.3, 33, 1800 }, + [7] = { 51.6, 17.7, 33, 1800 }, + [8] = { 49, 17.7, 33, 1800 }, + [9] = { 52.9, 17.7, 33, 1800 }, + [10] = { 52.9, 17.4, 33, 1800 }, + [11] = { 51.6, 17.4, 33, 1800 }, + [12] = { 49, 17.4, 33, 1800 }, + [13] = { 51.6, 16.8, 33, 1800 }, + [14] = { 53, 16.8, 33, 1800 }, + [15] = { 50.7, 16.8, 33, 1800 }, + [16] = { 50.5, 16.8, 33, 1800 }, + [17] = { 52.9, 16.7, 33, 1800 }, + [18] = { 51.3, 16.7, 33, 1800 }, + [19] = { 50.3, 16, 33, 1800 }, + }, + ["lvl"] = "54-55", + ["rnk"] = "1", + }, + [11356] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [11357] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11358] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11359] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [11360] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [11361] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11364] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11365] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11366] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11367] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11368] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [11369] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11370] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [11371] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11372] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11373] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11374] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11375] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11376] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11377] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11378] = { + ["coords"] = { + [1] = { 44.6, 68.7, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "4", + }, + [11379] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11380] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [11381] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11382] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [11383] = { + ["coords"] = { + [1] = { 50.7, 16.4, 33, 37800 }, + }, + ["lvl"] = "57", + ["rnk"] = "1", + }, + [11384] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11385] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11386] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11387] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [11388] = { + ["coords"] = {}, + ["lvl"] = "57-61", + ["rnk"] = "1", + }, + [11389] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [11390] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [11391] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [11392] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "30", + }, + [11393] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "35", + }, + [11394] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "40", + }, + [11395] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "45", + }, + [11396] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "60", + }, + [11397] = { + ["coords"] = { + [1] = { 20.7, 50.1, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [11398] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "35", + }, + [11399] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "30", + }, + [11400] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "45", + }, + [11401] = { + ["coords"] = { + [1] = { 25.4, 63.8, 141, 300 }, + [2] = { 39.5, 81.2, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [11402] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "30", + }, + [11403] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "35", + }, + [11404] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "40", + }, + [11405] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "45", + }, + [11406] = { + ["coords"] = { + [1] = { 24.7, 8.2, 1537, 25000 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [11407] = { + ["coords"] = { + [1] = { 47, 58.8, 215, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [11408] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "35", + }, + [11409] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "40", + }, + [11410] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "45", + }, + [11411] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "60", + }, + [11412] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "30", + }, + [11413] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "35", + }, + [11414] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "40", + }, + [11415] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "60", + }, + [11416] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "45", + }, + [11437] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "29-30", + }, + [11438] = { + ["coords"] = { + [1] = { 62.3, 39, 405, 300 }, + }, + ["lvl"] = "45", + }, + [11439] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [11440] = { + ["coords"] = { + [1] = { 58.8, 48.5, 357, 300 }, + [2] = { 59.1, 47.2, 357, 300 }, + [3] = { 60, 46.6, 357, 300 }, + [4] = { 58.3, 45.9, 357, 300 }, + [5] = { 60.3, 45.9, 357, 300 }, + [6] = { 58, 45.7, 357, 300 }, + [7] = { 63.7, 45.7, 357, 300 }, + [8] = { 54.5, 45.6, 357, 300 }, + [9] = { 54, 45.5, 357, 300 }, + [10] = { 64.3, 45.5, 357, 300 }, + [11] = { 54.9, 45.4, 357, 300 }, + [12] = { 56, 45.3, 357, 300 }, + [13] = { 58.9, 45.2, 357, 300 }, + [14] = { 59.4, 45.2, 357, 300 }, + [15] = { 63.1, 45.1, 357, 300 }, + [16] = { 57.4, 45, 357, 300 }, + [17] = { 60.9, 45, 357, 300 }, + [18] = { 55.3, 45, 357, 300 }, + [19] = { 56.5, 44.9, 357, 300 }, + [20] = { 53.7, 44.8, 357, 300 }, + [21] = { 64.6, 44.4, 357, 300 }, + [22] = { 63, 44.3, 357, 300 }, + [23] = { 62.7, 44.3, 357, 300 }, + [24] = { 55.2, 44.2, 357, 300 }, + [25] = { 57, 44.2, 357, 300 }, + [26] = { 58.5, 44, 357, 300 }, + [27] = { 65, 43.9, 357, 300 }, + [28] = { 61.9, 43.7, 357, 300 }, + [29] = { 62.4, 43.6, 357, 300 }, + [30] = { 55.8, 43.5, 357, 300 }, + [31] = { 61.7, 43.2, 357, 300 }, + [32] = { 56.6, 43.2, 357, 300 }, + [33] = { 56.9, 43.2, 357, 300 }, + [34] = { 59.2, 43, 357, 300 }, + [35] = { 61, 42.9, 357, 300 }, + [36] = { 57.3, 42.8, 357, 300 }, + [37] = { 59.7, 42.8, 357, 300 }, + [38] = { 58.5, 42.8, 357, 300 }, + [39] = { 60.3, 42.4, 357, 300 }, + [40] = { 58, 42.3, 357, 300 }, + [41] = { 58.8, 41.9, 357, 300 }, + [42] = { 59.4, 40.3, 357, 300 }, + [43] = { 61.2, 39.6, 357, 300 }, + [44] = { 58.9, 39.5, 357, 300 }, + [45] = { 61.8, 39.2, 357, 300 }, + [46] = { 59.6, 39.2, 357, 300 }, + [47] = { 62.2, 38.8, 357, 300 }, + [48] = { 59.9, 38.7, 357, 300 }, + [49] = { 61.7, 38.1, 357, 300 }, + [50] = { 63.8, 36.5, 357, 300 }, + [51] = { 61.8, 36.2, 357, 300 }, + [52] = { 65.6, 36.2, 357, 300 }, + [53] = { 65.4, 36, 357, 300 }, + [54] = { 61, 36, 357, 300 }, + [55] = { 60.2, 36, 357, 300 }, + [56] = { 64.5, 36, 357, 300 }, + [57] = { 62.2, 36, 357, 300 }, + [58] = { 63.8, 35.9, 357, 300 }, + [59] = { 59.3, 35.8, 357, 300 }, + [60] = { 63.8, 35.5, 357, 300 }, + [61] = { 65, 28.8, 357, 300 }, + [62] = { 64.8, 28.7, 357, 300 }, + [63] = { 64.9, 28.5, 357, 300 }, + }, + ["lvl"] = "53-54", + ["rnk"] = "1", + }, + [11441] = { + ["coords"] = {}, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [11442] = { + ["coords"] = { + [1] = { 64.7, 36.1, 357, 3300 }, + [2] = { 59.1, 36, 357, 3300 }, + [3] = { 63, 36, 357, 3300 }, + [4] = { 65.5, 35.8, 357, 3300 }, + [5] = { 63.1, 33.7, 357, 300 }, + [6] = { 63.8, 33.7, 357, 3300 }, + [7] = { 61.1, 33.5, 357, 3300 }, + [8] = { 64.1, 33.1, 357, 300 }, + [9] = { 62.5, 32.7, 357, 300 }, + [10] = { 63.3, 32.5, 357, 300 }, + [11] = { 61.7, 32.4, 357, 3300 }, + [12] = { 62, 32, 357, 300 }, + [13] = { 61.1, 31.9, 357, 3300 }, + [14] = { 64, 31.8, 357, 300 }, + [15] = { 63.1, 31.7, 357, 3300 }, + [16] = { 63.6, 30.7, 357, 300 }, + [17] = { 61.4, 30.6, 357, 300 }, + [18] = { 61.4, 29.9, 357, 3300 }, + [19] = { 63.7, 29.9, 357, 300 }, + [20] = { 64.2, 29.5, 357, 3300 }, + [21] = { 61, 29.2, 357, 3300 }, + [22] = { 63.6, 29, 357, 300 }, + [23] = { 61.6, 29, 357, 300 }, + [24] = { 63.4, 28.1, 357, 300 }, + [25] = { 61.7, 28.1, 357, 3300 }, + [26] = { 61.1, 28, 357, 300 }, + [27] = { 63.9, 28, 357, 300 }, + [28] = { 62.2, 27.5, 357, 300 }, + [29] = { 61.8, 27.4, 357, 300 }, + [30] = { 63.5, 27.3, 357, 300 }, + [31] = { 63.1, 27.1, 357, 3300 }, + [32] = { 61, 27.1, 357, 300 }, + [33] = { 62.6, 26.9, 357, 300 }, + [34] = { 64.1, 26.5, 357, 3300 }, + [35] = { 61.1, 26.3, 357, 3300 }, + [36] = { 63.2, 26.1, 357, 3300 }, + [37] = { 61.5, 26.1, 357, 3300 }, + }, + ["lvl"] = "53-54", + ["rnk"] = "1", + }, + [11443] = { + ["coords"] = { + [1] = { 62.6, 45.6, 357, 300 }, + [2] = { 58.6, 44.4, 357, 300 }, + [3] = { 61.3, 44.3, 357, 300 }, + [4] = { 60.9, 44.2, 357, 300 }, + [5] = { 58.8, 48.5, 357, 300 }, + [6] = { 59.1, 47.2, 357, 300 }, + [7] = { 60, 46.6, 357, 300 }, + [8] = { 58.3, 45.9, 357, 300 }, + [9] = { 60.3, 45.9, 357, 300 }, + [10] = { 58, 45.7, 357, 300 }, + [11] = { 63.7, 45.7, 357, 300 }, + [12] = { 54.5, 45.6, 357, 300 }, + [13] = { 54, 45.5, 357, 300 }, + [14] = { 64.3, 45.5, 357, 300 }, + [15] = { 54.9, 45.4, 357, 300 }, + [16] = { 56, 45.3, 357, 300 }, + [17] = { 58.9, 45.2, 357, 300 }, + [18] = { 59.4, 45.2, 357, 300 }, + [19] = { 63.1, 45.1, 357, 300 }, + [20] = { 57.4, 45, 357, 300 }, + [21] = { 60.9, 45, 357, 300 }, + [22] = { 55.3, 45, 357, 300 }, + [23] = { 56.5, 44.9, 357, 300 }, + [24] = { 53.7, 44.8, 357, 300 }, + [25] = { 64.6, 44.4, 357, 300 }, + [26] = { 63, 44.3, 357, 300 }, + [27] = { 62.7, 44.3, 357, 300 }, + [28] = { 55.2, 44.2, 357, 300 }, + [29] = { 57, 44.2, 357, 300 }, + [30] = { 58.5, 44, 357, 300 }, + [31] = { 65, 43.9, 357, 300 }, + [32] = { 61.9, 43.7, 357, 300 }, + [33] = { 62.4, 43.6, 357, 300 }, + [34] = { 55.8, 43.5, 357, 300 }, + [35] = { 61.7, 43.2, 357, 300 }, + [36] = { 56.6, 43.2, 357, 300 }, + [37] = { 56.9, 43.2, 357, 300 }, + [38] = { 59.2, 43, 357, 300 }, + [39] = { 61, 42.9, 357, 300 }, + [40] = { 57.3, 42.8, 357, 300 }, + [41] = { 59.7, 42.8, 357, 300 }, + [42] = { 58.5, 42.8, 357, 300 }, + [43] = { 60.3, 42.4, 357, 300 }, + [44] = { 58, 42.3, 357, 300 }, + [45] = { 58.8, 41.9, 357, 300 }, + [46] = { 59.4, 40.3, 357, 300 }, + [47] = { 61.2, 39.6, 357, 300 }, + [48] = { 58.9, 39.5, 357, 300 }, + [49] = { 61.8, 39.2, 357, 300 }, + [50] = { 59.6, 39.2, 357, 300 }, + [51] = { 62.2, 38.8, 357, 300 }, + [52] = { 59.9, 38.7, 357, 300 }, + [53] = { 61.7, 38.1, 357, 300 }, + [54] = { 63.8, 36.5, 357, 300 }, + [55] = { 61.8, 36.2, 357, 300 }, + [56] = { 65.6, 36.2, 357, 300 }, + [57] = { 64.7, 36.1, 357, 3300 }, + [58] = { 59.1, 36, 357, 3300 }, + [59] = { 65.4, 36, 357, 300 }, + [60] = { 61, 36, 357, 300 }, + [61] = { 63, 36, 357, 3300 }, + [62] = { 60.2, 36, 357, 300 }, + [63] = { 64.5, 36, 357, 300 }, + [64] = { 62.2, 36, 357, 300 }, + [65] = { 63.8, 35.9, 357, 300 }, + [66] = { 65.5, 35.8, 357, 3300 }, + [67] = { 59.3, 35.8, 357, 300 }, + [68] = { 63.8, 35.5, 357, 300 }, + [69] = { 63.1, 33.7, 357, 300 }, + [70] = { 63.8, 33.7, 357, 3300 }, + [71] = { 61.1, 33.5, 357, 3300 }, + [72] = { 64.1, 33.1, 357, 300 }, + [73] = { 62.5, 32.7, 357, 300 }, + [74] = { 63.3, 32.5, 357, 300 }, + [75] = { 61.7, 32.4, 357, 3300 }, + [76] = { 62, 32, 357, 300 }, + [77] = { 61.1, 31.9, 357, 3300 }, + [78] = { 64, 31.8, 357, 300 }, + [79] = { 63.1, 31.7, 357, 3300 }, + [80] = { 63.6, 30.7, 357, 300 }, + [81] = { 61.4, 30.6, 357, 300 }, + [82] = { 61.4, 29.9, 357, 3300 }, + [83] = { 63.7, 29.9, 357, 300 }, + [84] = { 64.2, 29.5, 357, 3300 }, + [85] = { 61, 29.2, 357, 3300 }, + [86] = { 63.6, 29, 357, 300 }, + [87] = { 61.6, 29, 357, 300 }, + [88] = { 65, 28.8, 357, 300 }, + [89] = { 64.8, 28.7, 357, 300 }, + [90] = { 64.9, 28.5, 357, 300 }, + [91] = { 63.4, 28.1, 357, 300 }, + [92] = { 61.7, 28.1, 357, 3300 }, + [93] = { 61.1, 28, 357, 300 }, + [94] = { 63.9, 28, 357, 300 }, + [95] = { 62.2, 27.5, 357, 300 }, + [96] = { 61.8, 27.4, 357, 300 }, + [97] = { 63.5, 27.3, 357, 300 }, + [98] = { 63.1, 27.1, 357, 3300 }, + [99] = { 61, 27.1, 357, 300 }, + [100] = { 62.6, 26.9, 357, 300 }, + [101] = { 64.1, 26.5, 357, 3300 }, + [102] = { 61.1, 26.3, 357, 3300 }, + [103] = { 63.2, 26.1, 357, 3300 }, + [104] = { 61.5, 26.1, 357, 3300 }, + }, + ["lvl"] = "52-53", + ["rnk"] = "1", + }, + [11444] = { + ["coords"] = {}, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [11445] = { + ["coords"] = {}, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [11446] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11447] = { + ["coords"] = { + [1] = { 62.5, 30, 357, 25200 }, + }, + ["lvl"] = "60", + ["rnk"] = "2", + }, + [11448] = { + ["coords"] = {}, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [11449] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11450] = { + ["coords"] = {}, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [11451] = { + ["coords"] = {}, + ["lvl"] = "55-56", + ["rnk"] = "1", + }, + [11452] = { + ["coords"] = {}, + ["lvl"] = "56-57", + ["rnk"] = "1", + }, + [11453] = { + ["coords"] = {}, + ["lvl"] = "56-57", + ["rnk"] = "1", + }, + [11454] = { + ["coords"] = {}, + ["lvl"] = "55-56", + ["rnk"] = "1", + }, + [11455] = { + ["coords"] = {}, + ["lvl"] = "55-56", + ["rnk"] = "1", + }, + [11456] = { + ["coords"] = {}, + ["lvl"] = "56", + ["rnk"] = "1", + }, + [11457] = { + ["coords"] = {}, + ["lvl"] = "56-57", + ["rnk"] = "1", + }, + [11458] = { + ["coords"] = {}, + ["lvl"] = "57-59", + ["rnk"] = "1", + }, + [11459] = { + ["coords"] = {}, + ["lvl"] = "57-59", + ["rnk"] = "1", + }, + [11460] = { + ["coords"] = {}, + ["lvl"] = "56", + }, + [11461] = { + ["coords"] = {}, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [11462] = { + ["coords"] = {}, + ["lvl"] = "54-55", + ["rnk"] = "1", + }, + [11463] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11464] = { + ["coords"] = {}, + ["lvl"] = "55-56", + ["rnk"] = "1", + }, + [11465] = { + ["coords"] = {}, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [11466] = { + ["coords"] = {}, + ["lvl"] = "55", + ["rnk"] = "1", + }, + [11467] = { + ["coords"] = {}, + ["lvl"] = "59", + ["rnk"] = "1", + }, + [11468] = { + ["coords"] = {}, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [11469] = { + ["coords"] = {}, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [11470] = { + ["coords"] = {}, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [11471] = { + ["coords"] = {}, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [11472] = { + ["coords"] = {}, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [11473] = { + ["coords"] = {}, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [11474] = { + ["coords"] = {}, + ["lvl"] = "42-43", + ["rnk"] = "1", + }, + [11475] = { + ["coords"] = {}, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [11476] = { + ["coords"] = {}, + ["lvl"] = "57-58", + }, + [11477] = { + ["coords"] = {}, + ["lvl"] = "58-59", + }, + [11478] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11479] = { + ["coords"] = {}, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [11480] = { + ["coords"] = {}, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [11481] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11483] = { + ["coords"] = {}, + ["lvl"] = "57-59", + ["rnk"] = "1", + }, + [11484] = { + ["coords"] = {}, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [11486] = { + ["coords"] = {}, + ["lvl"] = "60-61", + ["rnk"] = "1", + }, + [11487] = { + ["coords"] = {}, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [11488] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11489] = { + ["coords"] = {}, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [11490] = { + ["coords"] = {}, + ["lvl"] = "56-57", + ["rnk"] = "1", + }, + [11491] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "58", + ["rnk"] = "1", + }, + [11492] = { + ["coords"] = {}, + ["lvl"] = "58", + ["rnk"] = "1", + }, + [11493] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11494] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + ["rnk"] = "1", + }, + [11495] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11496] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [11497] = { + ["coords"] = { + [1] = { 62.5, 29.9, 357, 25200 }, + }, + ["lvl"] = "60", + ["rnk"] = "2", + }, + [11498] = { + ["coords"] = { + [1] = { 62.6, 30, 357, 25200 }, + }, + ["lvl"] = "58", + ["rnk"] = "2", + }, + [11499] = { + ["coords"] = {}, + ["lvl"] = "59", + ["rnk"] = "1", + }, + [11500] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + ["rnk"] = "1", + }, + [11501] = { + ["coords"] = {}, + ["lvl"] = "61-62", + ["rnk"] = "1", + }, + [11502] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [11516] = { + ["coords"] = { + [1] = { 65.2, 6.6, 361, 300 }, + [2] = { 64.9, 5.6, 361, 300 }, + [3] = { 67.9, 4.8, 361, 300 }, + [4] = { 64.4, 3.9, 361, 300 }, + [5] = { 64.7, 3.8, 361, 300 }, + [6] = { 66.5, 3.5, 361, 300 }, + [7] = { 66.8, 3.4, 361, 300 }, + [8] = { 65.1, 3, 361, 300 }, + [9] = { 65.3, 2.9, 361, 300 }, + [10] = { 65.6, 2.9, 361, 300 }, + [11] = { 65.3, 2.6, 361, 300 }, + [12] = { 65.5, 2.6, 361, 300 }, + [13] = { 25.2, 34.9, 618, 300 }, + [14] = { 25, 34.1, 618, 300 }, + [15] = { 27.4, 33.4, 618, 300 }, + [16] = { 26.3, 32.4, 618, 300 }, + [17] = { 26.5, 32.3, 618, 300 }, + [18] = { 25.5, 31.9, 618, 300 }, + }, + ["lvl"] = "53-54", + }, + [11517] = { + ["coords"] = {}, + ["lvl"] = "16", + ["rnk"] = "1", + }, + [11518] = { + ["coords"] = {}, + ["lvl"] = "16", + ["rnk"] = "1", + }, + [11519] = { + ["coords"] = {}, + ["lvl"] = "16", + ["rnk"] = "1", + }, + [11520] = { + ["coords"] = {}, + ["lvl"] = "16", + ["rnk"] = "1", + }, + [11521] = { + ["coords"] = {}, + ["lvl"] = "37-38", + }, + [11536] = { + ["coords"] = { + [1] = { 81.6, 60, 139, 345 }, + }, + ["lvl"] = "58", + }, + [11537] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [11538] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [11539] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [11540] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [11541] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [11542] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [11543] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [11544] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [11545] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [11546] = { + ["coords"] = { + [1] = { 61.6, 38.3, 618, 333 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [11547] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [11548] = { + ["coords"] = { + [1] = { 11.4, 78.2, 16, 333 }, + [2] = { 96.3, 51.4, 331, 333 }, + }, + ["fac"] = "AH", + ["lvl"] = "45", + }, + [11549] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "40", + }, + [11550] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "40", + }, + [11551] = { + ["coords"] = {}, + ["lvl"] = "58-60", + ["rnk"] = "1", + }, + [11552] = { + ["coords"] = {}, + ["lvl"] = "52-54", + }, + [11553] = { + ["coords"] = { + [1] = { 64.7, 4.5, 361, 300 }, + [2] = { 67, 3.7, 361, 300 }, + [3] = { 65.4, 1, 361, 300 }, + [4] = { 35, 82.9, 493, 300 }, + [5] = { 33.3, 78, 493, 300 }, + [6] = { 26.6, 32.6, 618, 300 }, + }, + ["lvl"] = "52-53", + }, + [11554] = { + ["coords"] = { + [1] = { 50.9, 85, 361, 300 }, + [2] = { 64.8, 8.2, 361, 300 }, + [3] = { 24.9, 36.2, 618, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [11555] = { + ["coords"] = { + [1] = { 65.2, 2.7, 361, 300 }, + }, + ["lvl"] = "55", + }, + [11556] = { + ["coords"] = { + [1] = { 68.3, 6.1, 361, 333 }, + [2] = { 27.7, 34.5, 618, 333 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [11557] = { + ["coords"] = { + [1] = { 65.7, 2.8, 361, 300 }, + [2] = { 25.6, 31.9, 618, 300 }, + }, + ["lvl"] = "55", + }, + [11558] = { + ["coords"] = { + [1] = { 65.4, 2.6, 361, 300 }, + }, + ["lvl"] = "55", + }, + [11559] = { + ["coords"] = { + [1] = { 63.9, 90.5, 405, 300 }, + [2] = { 65, 90.3, 405, 300 }, + [3] = { 59.9, 89.9, 405, 300 }, + [4] = { 63.4, 89.4, 405, 300 }, + }, + ["lvl"] = "39-40", + }, + [11560] = { + ["coords"] = {}, + ["lvl"] = "38-39", + }, + [11561] = { + ["coords"] = { + [1] = { 64.1, 92.2, 405, 300 }, + [2] = { 63, 92.1, 405, 300 }, + [3] = { 64.1, 91.4, 405, 300 }, + [4] = { 63.4, 91.3, 405, 300 }, + [5] = { 61.1, 90.9, 405, 300 }, + [6] = { 63.5, 90.8, 405, 300 }, + [7] = { 62.1, 90.6, 405, 300 }, + [8] = { 64.2, 90.3, 405, 300 }, + [9] = { 60.4, 90.2, 405, 300 }, + [10] = { 58.3, 90.2, 405, 300 }, + [11] = { 64.8, 90.1, 405, 300 }, + [12] = { 63, 90, 405, 300 }, + [13] = { 59.7, 89.9, 405, 300 }, + [14] = { 63.9, 89, 405, 300 }, + [15] = { 64.8, 89, 405, 300 }, + [16] = { 63.8, 88.9, 405, 300 }, + [17] = { 59.8, 88.1, 405, 300 }, + [18] = { 64.1, 88, 405, 300 }, + [19] = { 65, 87.9, 405, 300 }, + [20] = { 63.9, 87.2, 405, 300 }, + [21] = { 65.3, 86.6, 405, 300 }, + [22] = { 65.2, 85.8, 405, 300 }, + [23] = { 64.2, 84.6, 405, 300 }, + [24] = { 64.9, 83.5, 405, 300 }, + [25] = { 64.3, 82.9, 405, 300 }, + [26] = { 64.1, 81.3, 405, 300 }, + }, + ["lvl"] = "37-38", + }, + [11562] = { + ["coords"] = { + [1] = { 22.9, 84.1, 405, 300 }, + [2] = { 23.4, 82.5, 405, 300 }, + [3] = { 18.8, 82.4, 405, 300 }, + [4] = { 24.1, 81.9, 405, 300 }, + [5] = { 23.3, 80.3, 405, 300 }, + [6] = { 25, 80.2, 405, 300 }, + [7] = { 24, 79.6, 405, 300 }, + [8] = { 18.5, 79.1, 405, 300 }, + [9] = { 24.7, 78.7, 405, 300 }, + [10] = { 19.1, 77.6, 405, 300 }, + [11] = { 18.4, 77.4, 405, 300 }, + [12] = { 26.6, 76.6, 405, 300 }, + [13] = { 18, 75.4, 405, 300 }, + [14] = { 19.6, 72.2, 405, 300 }, + [15] = { 20.4, 69.9, 405, 300 }, + [16] = { 31.3, 35.8, 405, 300 }, + [17] = { 33.8, 34.7, 405, 300 }, + [18] = { 35.2, 34.6, 405, 300 }, + [19] = { 34.5, 33.5, 405, 300 }, + [20] = { 34.9, 31.4, 405, 300 }, + [21] = { 31.6, 31.2, 405, 300 }, + [22] = { 33.4, 30.1, 405, 300 }, + [23] = { 31.4, 27.9, 405, 300 }, + }, + ["lvl"] = "33-34", + }, + [11563] = { + ["coords"] = { + [1] = { 22.1, 84.5, 405, 300 }, + [2] = { 21.2, 83.7, 405, 300 }, + [3] = { 21.8, 82, 405, 300 }, + [4] = { 25.6, 81.7, 405, 300 }, + [5] = { 17.5, 79.5, 405, 300 }, + [6] = { 24.9, 79.3, 405, 300 }, + [7] = { 21.9, 79, 405, 300 }, + [8] = { 23.2, 78, 405, 300 }, + [9] = { 20.5, 77.7, 405, 300 }, + [10] = { 21, 77.6, 405, 300 }, + [11] = { 17.7, 72, 405, 300 }, + [12] = { 33, 35.5, 405, 300 }, + [13] = { 30.8, 34.8, 405, 300 }, + [14] = { 32.3, 34.6, 405, 300 }, + [15] = { 31.5, 33.5, 405, 300 }, + [16] = { 33, 31.2, 405, 300 }, + [17] = { 32.3, 29.7, 405, 300 }, + [18] = { 33.7, 29, 405, 300 }, + [19] = { 32, 27.9, 405, 300 }, + [20] = { 35.2, 34.6, 405, 300 }, + [21] = { 34.5, 33.5, 405, 300 }, + }, + ["lvl"] = "34-35", + }, + [11564] = { + ["coords"] = { + [1] = { 61.3, 62.7, 405, 300 }, + [2] = { 60.5, 61.7, 405, 300 }, + [3] = { 60.3, 61.5, 405, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [11576] = { + ["coords"] = { + [1] = { 45, 74.4, 405, 300 }, + [2] = { 35.7, 73.4, 405, 300 }, + [3] = { 69.7, 65.4, 405, 300 }, + [4] = { 70.4, 55.1, 405, 300 }, + [5] = { 64.6, 42.4, 405, 300 }, + [6] = { 45.2, 39, 405, 300 }, + [7] = { 48.6, 33.4, 405, 300 }, + [8] = { 42, 29.1, 405, 300 }, + [9] = { 62.2, 27.3, 405, 300 }, + [10] = { 44.6, 20.3, 405, 300 }, + [11] = { 55.9, 20.1, 405, 300 }, + [12] = { 50.1, 9, 405, 300 }, + [13] = { 25.9, 84, 406, 300 }, + [14] = { 47.8, 34.5, 405, 300 }, + }, + ["lvl"] = "32-34", + }, + [11577] = { + ["coords"] = { + [1] = { 43.3, 62.4, 405, 300 }, + [2] = { 42.6, 61.4, 405, 300 }, + [3] = { 42.5, 54.1, 405, 300 }, + [4] = { 77.2, 53.7, 405, 300 }, + [5] = { 41.9, 52, 405, 300 }, + [6] = { 41.1, 51, 405, 300 }, + [7] = { 61.6, 50.6, 405, 300 }, + [8] = { 51.5, 50, 405, 300 }, + [9] = { 53.9, 48, 405, 300 }, + [10] = { 52.2, 46.8, 405, 300 }, + [11] = { 40, 45.6, 405, 300 }, + [12] = { 54.6, 44.6, 405, 300 }, + [13] = { 43.4, 44.3, 405, 300 }, + [14] = { 41.3, 41.4, 405, 300 }, + [15] = { 73.8, 10.1, 405, 300 }, + [16] = { 47.7, 84.9, 406, 300 }, + }, + ["lvl"] = "35-37", + }, + [11578] = { + ["coords"] = { + [1] = { 58.1, 90.7, 405, 300 }, + [2] = { 49.4, 88.1, 405, 300 }, + [3] = { 58.2, 86.2, 405, 300 }, + [4] = { 56, 85, 405, 300 }, + [5] = { 30.8, 81.4, 405, 300 }, + [6] = { 29.3, 81.1, 405, 300 }, + [7] = { 31.7, 80.6, 405, 300 }, + [8] = { 61.6, 80.1, 405, 300 }, + [9] = { 62.6, 79.2, 405, 300 }, + [10] = { 61.3, 76.9, 405, 300 }, + [11] = { 61.9, 76.8, 405, 300 }, + [12] = { 59.8, 74.5, 405, 300 }, + [13] = { 32.1, 69.6, 405, 300 }, + }, + ["lvl"] = "32-34", + }, + [11579] = { + ["coords"] = {}, + ["lvl"] = "41", + }, + [11580] = { + ["coords"] = {}, + ["lvl"] = "41", + ["rnk"] = "4", + }, + [11581] = { + ["coords"] = {}, + ["lvl"] = "54-56", + ["rnk"] = "1", + }, + [11582] = { + ["coords"] = {}, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [11583] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [11596] = { + ["coords"] = { + [1] = { 60.9, 61.9, 405, 300 }, + }, + ["lvl"] = "45", + }, + [11597] = { + ["coords"] = {}, + ["lvl"] = "40", + }, + [11598] = { + ["coords"] = {}, + ["lvl"] = "59-61", + }, + [11599] = { + ["coords"] = {}, + ["lvl"] = "53-54", + ["rnk"] = "1", + }, + [11600] = { + ["coords"] = { + [1] = { 49.7, 9.8, 2597, 300 }, + [2] = { 52.8, 9.4, 2597, 300 }, + [3] = { 49.6, 9.2, 2597, 300 }, + [4] = { 50.3, 9.2, 2597, 300 }, + [5] = { 51.8, 9.1, 2597, 300 }, + [6] = { 50.8, 8.7, 2597, 300 }, + [7] = { 50.2, 8.4, 2597, 300 }, + [8] = { 52.1, 7.5, 2597, 300 }, + [9] = { 50.1, 7.4, 2597, 300 }, + [10] = { 50.2, 7.2, 2597, 300 }, + [11] = { 51.5, 7.2, 2597, 300 }, + [12] = { 50, 6.7, 2597, 300 }, + [13] = { 52.2, 6.5, 2597, 300 }, + [14] = { 52.9, 6.2, 2597, 300 }, + [15] = { 51.4, 5.8, 2597, 300 }, + [16] = { 51.4, 5.7, 2597, 300 }, + [17] = { 51.5, 5.7, 2597, 300 }, + [18] = { 52.2, 5.4, 2597, 300 }, + [19] = { 50.3, 5.3, 2597, 300 }, + [20] = { 51, 5.2, 2597, 300 }, + [21] = { 49.9, 4.8, 2597, 300 }, + [22] = { 52.7, 4.4, 2597, 300 }, + }, + ["lvl"] = "53-54", + }, + [11601] = { + ["coords"] = {}, + ["lvl"] = "52-53", + ["rnk"] = "1", + }, + [11602] = { + ["coords"] = { + [1] = { 52.8, 9.1, 2597, 300 }, + [2] = { 51.2, 9, 2597, 300 }, + [3] = { 50.6, 8.4, 2597, 300 }, + [4] = { 52.5, 8, 2597, 300 }, + [5] = { 52.6, 7.7, 2597, 300 }, + [6] = { 52.6, 6.5, 2597, 300 }, + [7] = { 49.7, 6.4, 2597, 300 }, + [8] = { 51.3, 5.1, 2597, 300 }, + [9] = { 49.9, 5.1, 2597, 300 }, + }, + ["lvl"] = "54-55", + }, + [11603] = { + ["coords"] = { + [1] = { 42.9, 73.1, 2597, 300 }, + [2] = { 42.9, 72.9, 2597, 300 }, + [3] = { 44.1, 72.5, 2597, 300 }, + [4] = { 46.5, 72.4, 2597, 300 }, + [5] = { 44.2, 72.4, 2597, 300 }, + [6] = { 46.3, 72.1, 2597, 300 }, + [7] = { 46.5, 72.1, 2597, 300 }, + [8] = { 44.7, 72.1, 2597, 300 }, + [9] = { 45.4, 72, 2597, 300 }, + [10] = { 43.5, 72, 2597, 300 }, + [11] = { 46.1, 72, 2597, 300 }, + [12] = { 45.3, 71.9, 2597, 300 }, + [13] = { 43.4, 71.8, 2597, 300 }, + [14] = { 45.7, 71.6, 2597, 300 }, + [15] = { 45.7, 71.4, 2597, 300 }, + [16] = { 45, 71.1, 2597, 300 }, + [17] = { 43.1, 70.9, 2597, 300 }, + [18] = { 45.2, 70.9, 2597, 300 }, + [19] = { 45.5, 70.8, 2597, 300 }, + [20] = { 43.1, 70.7, 2597, 300 }, + [21] = { 45.6, 70.5, 2597, 300 }, + [22] = { 45.5, 70.5, 2597, 300 }, + [23] = { 44, 70.5, 2597, 300 }, + [24] = { 44.2, 70.4, 2597, 300 }, + [25] = { 43.6, 70.4, 2597, 300 }, + [26] = { 43.5, 70.3, 2597, 300 }, + [27] = { 45, 70.1, 2597, 300 }, + [28] = { 45.8, 70.1, 2597, 300 }, + [29] = { 44.9, 70, 2597, 300 }, + [30] = { 44.4, 69.5, 2597, 300 }, + [31] = { 45.1, 69.5, 2597, 300 }, + [32] = { 43.4, 69.4, 2597, 300 }, + [33] = { 42.9, 69.4, 2597, 300 }, + [34] = { 45.6, 69.4, 2597, 300 }, + [35] = { 43.4, 69.3, 2597, 300 }, + [36] = { 45.6, 69.3, 2597, 300 }, + [37] = { 43.5, 69.2, 2597, 300 }, + [38] = { 45.6, 69.2, 2597, 300 }, + [39] = { 42.2, 69.2, 2597, 300 }, + [40] = { 44, 69.2, 2597, 300 }, + [41] = { 43, 69.1, 2597, 300 }, + [42] = { 43.9, 68.9, 2597, 300 }, + [43] = { 42.1, 68.6, 2597, 300 }, + [44] = { 45.6, 68.1, 2597, 300 }, + [45] = { 45.2, 68, 2597, 300 }, + }, + ["lvl"] = "52-53", + }, + [11604] = { + ["coords"] = { + [1] = { 43.1, 73, 2597, 300 }, + [2] = { 44.1, 72.9, 2597, 300 }, + [3] = { 46.1, 72.4, 2597, 300 }, + [4] = { 46.4, 72.2, 2597, 300 }, + [5] = { 46.7, 72.1, 2597, 300 }, + [6] = { 45.4, 71.7, 2597, 300 }, + [7] = { 45.8, 71.5, 2597, 300 }, + [8] = { 43, 71, 2597, 300 }, + [9] = { 45.6, 70.8, 2597, 300 }, + [10] = { 44.8, 70.4, 2597, 300 }, + [11] = { 44, 70.2, 2597, 300 }, + [12] = { 45.6, 70.1, 2597, 300 }, + [13] = { 44.7, 69.9, 2597, 300 }, + [14] = { 43, 69.4, 2597, 300 }, + [15] = { 45.5, 69.2, 2597, 300 }, + [16] = { 43.5, 69.2, 2597, 300 }, + [17] = { 44.4, 69.1, 2597, 300 }, + [18] = { 45.5, 69.1, 2597, 300 }, + [19] = { 43.5, 69.1, 2597, 300 }, + [20] = { 42.5, 68.9, 2597, 300 }, + [21] = { 44.3, 68.4, 2597, 300 }, + [22] = { 45.6, 67.7, 2597, 300 }, + [23] = { 43.4, 67.7, 2597, 300 }, + [24] = { 43.6, 67.6, 2597, 300 }, + }, + ["lvl"] = "53-54", + }, + [11605] = { + ["coords"] = {}, + ["lvl"] = "54-55", + }, + [11606] = { + ["coords"] = {}, + ["lvl"] = "63", + }, + [11608] = { + ["coords"] = { + [1] = { 26.8, 58.9, 28, 300 }, + [2] = { 83.4, 71.7, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [11609] = { + ["coords"] = { + [1] = { 42.9, 84, 28, 315 }, + }, + ["fac"] = "A", + ["lvl"] = "51", + }, + [11610] = { + ["coords"] = { + [1] = { 51.9, 28.1, 28, 315 }, + }, + ["fac"] = "AH", + ["lvl"] = "53", + }, + [11611] = { + ["coords"] = { + [1] = { 55.2, 23.6, 28, 315 }, + }, + ["lvl"] = "57", + }, + [11613] = { + ["coords"] = { + [1] = { 57.8, 36.1, 28, 315 }, + }, + ["lvl"] = "56", + }, + [11614] = { + ["coords"] = {}, + ["lvl"] = "54", + }, + [11615] = { + ["coords"] = { + [1] = { 26.7, 59.6, 28, 300 }, + [2] = { 83.3, 72.3, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [11616] = { + ["coords"] = { + [1] = { 43.4, 84.8, 28, 315 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [11617] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [11618] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "57", + }, + [11619] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "57", + }, + [11620] = { + ["coords"] = { + [1] = { 54.3, 66.1, 139, 345 }, + [2] = { 54.1, 66, 139, 345 }, + [3] = { 54.6, 65.9, 139, 345 }, + [4] = { 54.4, 65.8, 139, 345 }, + }, + ["lvl"] = "57-58", + }, + [11621] = { + ["coords"] = { + [1] = { 54.6, 66, 139, 345 }, + [2] = { 54, 66, 139, 345 }, + [3] = { 54.4, 65.9, 139, 345 }, + [4] = { 54.5, 65.9, 139, 345 }, + [5] = { 54, 65.9, 139, 345 }, + [6] = { 54.1, 65.9, 139, 345 }, + }, + ["lvl"] = "57-58", + }, + [11622] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [11623] = { + ["coords"] = { + [1] = { 40.4, 72, 28, 480 }, + [2] = { 46.6, 71.7, 28, 480 }, + [3] = { 42.6, 65.8, 28, 480 }, + [4] = { 43.9, 63.1, 28, 480 }, + }, + ["lvl"] = "60", + }, + [11624] = { + ["coords"] = { + [1] = { 25.8, 68.2, 405, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [11625] = { + ["coords"] = { + [1] = { 39.5, 78.1, 405, 1800 }, + }, + ["fac"] = "AH", + ["lvl"] = "38", + }, + [11626] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "36", + }, + [11627] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "34-37", + }, + [11628] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [11629] = { + ["coords"] = { + [1] = { 61.3, 39, 618, 333 }, + }, + ["lvl"] = "50", + }, + [11636] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [11637] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [11656] = { + ["coords"] = { + [1] = { 69.2, 83.5, 331, 300 }, + [2] = { 70.5, 82.5, 331, 300 }, + [3] = { 71.4, 82.3, 331, 300 }, + [4] = { 71.7, 80.3, 331, 300 }, + [5] = { 72.9, 79, 331, 300 }, + [6] = { 88.6, 64.3, 331, 300 }, + [7] = { 87.9, 64.3, 331, 300 }, + [8] = { 85.3, 63.9, 331, 300 }, + [9] = { 87.4, 63.7, 331, 300 }, + [10] = { 84.2, 63.5, 331, 300 }, + [11] = { 84.3, 63, 331, 300 }, + [12] = { 84.1, 62.9, 331, 300 }, + [13] = { 83.7, 62.9, 331, 300 }, + [14] = { 84.4, 61.5, 331, 300 }, + [15] = { 85, 61.1, 331, 300 }, + [16] = { 83.9, 61.1, 331, 300 }, + [17] = { 84.6, 60.8, 331, 300 }, + [18] = { 83.4, 60.7, 331, 300 }, + [19] = { 85.4, 59.2, 331, 300 }, + [20] = { 83.7, 59.1, 331, 300 }, + [21] = { 85.2, 58.8, 331, 300 }, + [22] = { 85.8, 58.6, 331, 300 }, + [23] = { 84.3, 58.3, 331, 300 }, + [24] = { 85.6, 58.2, 331, 300 }, + [25] = { 86.1, 58.1, 331, 300 }, + [26] = { 85.6, 57.8, 331, 300 }, + [27] = { 85.6, 57.4, 331, 300 }, + [28] = { 86.9, 57.1, 331, 300 }, + [29] = { 86.7, 56.7, 331, 300 }, + [30] = { 83.6, 56.3, 331, 300 }, + [31] = { 85.1, 56, 331, 300 }, + [32] = { 86.7, 55.8, 331, 300 }, + [33] = { 85.7, 55.7, 331, 300 }, + [34] = { 87, 55.3, 331, 300 }, + [35] = { 85.9, 55, 331, 300 }, + [36] = { 88.5, 54.1, 331, 300 }, + [37] = { 88, 53.7, 331, 300 }, + [38] = { 87.7, 52.6, 331, 300 }, + [39] = { 89, 52.1, 331, 300 }, + [40] = { 88.5, 51, 331, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "26-27", + }, + [11657] = { + ["coords"] = { + [1] = { 52.5, 7.8, 2597, 432000 }, + }, + ["lvl"] = "58", + }, + [11658] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [11659] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [11660] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [11661] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [11662] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [11663] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11664] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [11665] = { + ["coords"] = {}, + ["lvl"] = "61-62", + ["rnk"] = "1", + }, + [11666] = { + ["coords"] = {}, + ["lvl"] = "61-62", + ["rnk"] = "1", + }, + [11667] = { + ["coords"] = {}, + ["lvl"] = "61-62", + ["rnk"] = "1", + }, + [11668] = { + ["coords"] = {}, + ["lvl"] = "61-62", + ["rnk"] = "1", + }, + [11669] = { + ["coords"] = {}, + ["lvl"] = "61-62", + ["rnk"] = "1", + }, + [11670] = { + ["coords"] = {}, + ["lvl"] = "62", + }, + [11671] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [11672] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [11673] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [11675] = { + ["coords"] = { + [1] = { 41.2, 37.6, 2597, 120 }, + [2] = { 39.8, 31.6, 2597, 120 }, + [3] = { 39.4, 30.7, 2597, 120 }, + [4] = { 41.9, 28.9, 2597, 120 }, + [5] = { 49.6, 27.3, 2597, 120 }, + [6] = { 49.5, 27.3, 2597, 120 }, + [7] = { 43, 23, 2597, 120 }, + }, + ["lvl"] = "53-54", + }, + [11676] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [11677] = { + ["coords"] = { + [1] = { 45.1, 74.5, 2597, 120 }, + [2] = { 44.2, 68.5, 2597, 432000 }, + }, + ["lvl"] = "58", + }, + [11678] = { + ["coords"] = { + [1] = { 39.9, 38.6, 2597, 120 }, + [2] = { 38.1, 36.8, 2597, 120 }, + [3] = { 40, 34.5, 2597, 120 }, + [4] = { 40, 30.1, 2597, 120 }, + [5] = { 44.9, 23.3, 2597, 120 }, + }, + ["lvl"] = "52-53", + }, + [11679] = { + ["coords"] = { + [1] = { 44.6, 45.6, 2597, 432000 }, + [2] = { 40.9, 44.2, 2597, 120 }, + }, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [11680] = { + ["coords"] = { + [1] = { 69.7, 84.5, 331, 300 }, + [2] = { 69.7, 84.4, 331, 300 }, + [3] = { 70.9, 83.8, 331, 300 }, + [4] = { 69.5, 83.7, 331, 300 }, + [5] = { 69.3, 82.4, 331, 300 }, + [6] = { 70.9, 82, 331, 300 }, + [7] = { 72.4, 82, 331, 300 }, + [8] = { 73.4, 81.2, 331, 300 }, + [9] = { 73.6, 79.4, 331, 300 }, + [10] = { 71.5, 79.2, 331, 300 }, + [11] = { 72.5, 78.8, 331, 300 }, + [12] = { 87.4, 64.9, 331, 300 }, + [13] = { 87.1, 64.7, 331, 300 }, + [14] = { 87.1, 64.4, 331, 300 }, + [15] = { 89.6, 62.8, 331, 300 }, + [16] = { 85.3, 62.4, 331, 300 }, + [17] = { 89.8, 62.4, 331, 300 }, + [18] = { 87.6, 62.3, 331, 300 }, + [19] = { 89.4, 62.3, 331, 300 }, + [20] = { 86.6, 62.1, 331, 300 }, + [21] = { 83.1, 62.1, 331, 300 }, + [22] = { 88.1, 61.4, 331, 300 }, + [23] = { 85.2, 60.6, 331, 300 }, + [24] = { 86.3, 60.4, 331, 300 }, + [25] = { 87, 59.4, 331, 300 }, + [26] = { 84.8, 59.2, 331, 300 }, + [27] = { 84.1, 58.8, 331, 300 }, + [28] = { 87.5, 58.5, 331, 300 }, + [29] = { 86.9, 58.1, 331, 300 }, + [30] = { 88.2, 57.7, 331, 300 }, + [31] = { 85.8, 57.6, 331, 300 }, + [32] = { 86.2, 57.1, 331, 300 }, + [33] = { 86.4, 57.1, 331, 300 }, + [34] = { 85.7, 56.3, 331, 300 }, + [35] = { 86.5, 54.8, 331, 300 }, + [36] = { 89.1, 54.6, 331, 300 }, + [37] = { 92.2, 54.3, 331, 300 }, + [38] = { 91.9, 54, 331, 300 }, + [39] = { 91.9, 53.9, 331, 300 }, + [40] = { 87.5, 53.6, 331, 300 }, + [41] = { 89.3, 52.8, 331, 300 }, + [42] = { 89.2, 51.2, 331, 300 }, + [43] = { 88.7, 50.2, 331, 300 }, + [44] = { 89.2, 50, 331, 300 }, + [45] = { 89.6, 49.3, 331, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "26-28", + }, + [11681] = { + ["coords"] = { + [1] = { 69.8, 84, 331, 300 }, + [2] = { 70.2, 82.7, 331, 300 }, + [3] = { 71.4, 81.9, 331, 300 }, + [4] = { 71.6, 79.9, 331, 300 }, + [5] = { 73, 79.5, 331, 300 }, + [6] = { 86.8, 63.4, 331, 300 }, + [7] = { 84.9, 63.2, 331, 300 }, + [8] = { 83.1, 61.1, 331, 300 }, + [9] = { 84, 60.5, 331, 300 }, + [10] = { 83.6, 59.6, 331, 300 }, + [11] = { 84.7, 58.9, 331, 300 }, + [12] = { 86.4, 58.8, 331, 300 }, + [13] = { 84.1, 58, 331, 300 }, + [14] = { 83.6, 57.2, 331, 300 }, + [15] = { 85.1, 57.1, 331, 300 }, + [16] = { 84.8, 56.8, 331, 300 }, + [17] = { 88.2, 52.9, 331, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "27-28", + }, + [11682] = { + ["coords"] = { + [1] = { 71.7, 80.5, 331, 300 }, + [2] = { 72.9, 80.4, 331, 300 }, + [3] = { 72.2, 80, 331, 300 }, + [4] = { 90.8, 58.4, 331, 300 }, + [5] = { 89.8, 58.3, 331, 300 }, + [6] = { 88.5, 58.1, 331, 300 }, + [7] = { 89.8, 57.7, 331, 300 }, + [8] = { 89.2, 57.7, 331, 300 }, + [9] = { 88.6, 57.7, 331, 300 }, + [10] = { 89.7, 57.5, 331, 300 }, + [11] = { 91, 57.3, 331, 300 }, + [12] = { 88.9, 56.8, 331, 300 }, + [13] = { 88.2, 56, 331, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "29-30", + }, + [11683] = { + ["coords"] = { + [1] = { 71.9, 81, 331, 300 }, + [2] = { 71.5, 81, 331, 300 }, + [3] = { 72.4, 81, 331, 300 }, + [4] = { 72.2, 80.9, 331, 300 }, + [5] = { 73, 80.7, 331, 300 }, + [6] = { 72.8, 80, 331, 300 }, + [7] = { 72.4, 79.5, 331, 300 }, + [8] = { 86.4, 60.3, 331, 300 }, + [9] = { 88.9, 59.7, 331, 300 }, + [10] = { 91.3, 58.8, 331, 300 }, + [11] = { 90.6, 58.7, 331, 300 }, + [12] = { 91.1, 58.4, 331, 300 }, + [13] = { 88.9, 58.3, 331, 300 }, + [14] = { 90.9, 58.2, 331, 300 }, + [15] = { 91.1, 57.9, 331, 300 }, + [16] = { 90.8, 57.9, 331, 300 }, + [17] = { 90.6, 57.6, 331, 300 }, + [18] = { 91.3, 57.6, 331, 300 }, + [19] = { 88.9, 56.6, 331, 300 }, + [20] = { 89.5, 56.4, 331, 300 }, + [21] = { 88.5, 55.3, 331, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "28-29", + }, + [11684] = { + ["coords"] = { + [1] = { 72.5, 80.3, 331, 300 }, + [2] = { 88.4, 64.7, 331, 300 }, + [3] = { 85.3, 62.2, 331, 300 }, + [4] = { 84.6, 61.3, 331, 300 }, + [5] = { 83.1, 56.1, 331, 300 }, + [6] = { 86.6, 55.7, 331, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "27-28", + }, + [11685] = { + ["coords"] = { + [1] = { 28.2, 62.6, 405, 300 }, + [2] = { 30.7, 60.5, 405, 300 }, + }, + ["lvl"] = "40-42", + }, + [11686] = { + ["coords"] = { + [1] = { 28.4, 63.8, 405, 300 }, + [2] = { 27.4, 63.2, 405, 300 }, + [3] = { 28.7, 62.9, 405, 300 }, + [4] = { 30.4, 62.9, 405, 300 }, + [5] = { 27.9, 62.6, 405, 300 }, + [6] = { 29.1, 62.4, 405, 300 }, + [7] = { 28.3, 61.8, 405, 300 }, + [8] = { 30.4, 61.5, 405, 300 }, + }, + ["lvl"] = "40-41", + }, + [11687] = { + ["coords"] = { + [1] = { 28.3, 65, 405, 300 }, + [2] = { 27.7, 63.6, 405, 300 }, + [3] = { 28.2, 63.2, 405, 300 }, + [4] = { 31, 61.7, 405, 300 }, + [5] = { 27.4, 63.2, 405, 300 }, + [6] = { 28.7, 62.9, 405, 300 }, + [7] = { 30.4, 62.9, 405, 300 }, + [8] = { 29.1, 62.4, 405, 300 }, + [9] = { 28.3, 61.8, 405, 300 }, + [10] = { 30.4, 61.5, 405, 300 }, + }, + ["lvl"] = "41-42", + }, + [11688] = { + ["coords"] = { + [1] = { 30.5, 60.7, 405, 27000 }, + }, + ["lvl"] = "43", + ["rnk"] = "4", + }, + [11689] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [11690] = { + ["coords"] = {}, + ["lvl"] = "8", + }, + [11696] = { + ["coords"] = { + [1] = { 67.8, 27.3, 618, 333 }, + }, + ["fac"] = "A", + ["lvl"] = "53", + }, + [11697] = { + ["coords"] = { + [1] = { 54.3, 1.1, 17, 300 }, + [2] = { 54, 1, 17, 300 }, + [3] = { 54.1, 0.7, 17, 300 }, + [4] = { 54.5, 0.5, 17, 300 }, + [5] = { 79.4, 81.5, 331, 300 }, + [6] = { 78.9, 81.4, 331, 300 }, + [7] = { 79.1, 80.9, 331, 300 }, + [8] = { 79.7, 80.4, 331, 300 }, + [9] = { 78.9, 80.4, 331, 300 }, + [10] = { 88.9, 77.8, 331, 300 }, + [11] = { 89.7, 77.1, 331, 300 }, + [12] = { 89.3, 77, 331, 300 }, + [13] = { 89.6, 76.5, 331, 300 }, + [14] = { 53.5, 3.1, 17, 300 }, + [15] = { 53.7, 2.9, 17, 300 }, + [16] = { 53.5, 2.8, 17, 300 }, + [17] = { 53.6, 2.7, 17, 300 }, + [18] = { 53.7, 2.5, 17, 300 }, + [19] = { 53.3, 2.5, 17, 300 }, + [20] = { 53.8, 2.4, 17, 300 }, + [21] = { 53.5, 2.4, 17, 300 }, + [22] = { 53.3, 2.2, 17, 300 }, + [23] = { 53.6, 2, 17, 300 }, + [24] = { 54.3, 1.5, 17, 300 }, + [25] = { 54.3, 1.5, 17, 275 }, + [26] = { 54, 1.4, 17, 300 }, + [27] = { 54.6, 1.4, 17, 300 }, + [28] = { 54, 1.3, 17, 300 }, + [29] = { 54.2, 1.2, 17, 300 }, + [30] = { 54.1, 1, 17, 300 }, + [31] = { 54.5, 0.8, 17, 300 }, + [32] = { 54.4, 0.7, 17, 300 }, + [33] = { 78, 85.1, 331, 300 }, + [34] = { 78.4, 84.8, 331, 300 }, + [35] = { 78, 84.6, 331, 300 }, + [36] = { 78.1, 84.4, 331, 300 }, + [37] = { 78.3, 84, 331, 300 }, + [38] = { 77.7, 84, 331, 300 }, + [39] = { 78.5, 83.9, 331, 300 }, + [40] = { 78, 83.9, 331, 300 }, + [41] = { 77.7, 83.5, 331, 300 }, + [42] = { 78.1, 83.1, 331, 300 }, + [43] = { 79.4, 82.3, 331, 300 }, + [44] = { 79.4, 82.2, 331, 275 }, + [45] = { 79, 82.1, 331, 300 }, + [46] = { 80, 82, 331, 300 }, + [47] = { 78.9, 81.9, 331, 300 }, + [48] = { 79.2, 81.7, 331, 300 }, + [49] = { 79.5, 81.6, 331, 300 }, + [50] = { 79.1, 81.4, 331, 300 }, + [51] = { 79.8, 81.1, 331, 300 }, + [52] = { 79.7, 80.9, 331, 300 }, + [53] = { 81.1, 79.8, 331, 300 }, + [54] = { 87.1, 79.3, 331, 300 }, + [55] = { 82.5, 79.3, 331, 300 }, + [56] = { 83, 78.6, 331, 300 }, + [57] = { 88.2, 78.5, 331, 300 }, + [58] = { 85.9, 78.5, 331, 300 }, + [59] = { 84.8, 77.9, 331, 300 }, + [60] = { 85.3, 77.6, 331, 300 }, + [61] = { 82.1, 77, 331, 300 }, + [62] = { 84.6, 75.1, 331, 300 }, + [63] = { 84.4, 73.4, 331, 300 }, + [64] = { 83, 71.7, 331, 300 }, + [65] = { 84.1, 71.6, 331, 300 }, + [66] = { 84.6, 71.1, 331, 300 }, + [67] = { 82.5, 71, 331, 300 }, + [68] = { 81.3, 70.8, 331, 300 }, + [69] = { 83.4, 70.7, 331, 300 }, + [70] = { 81.8, 70.1, 331, 300 }, + [71] = { 80.7, 70.1, 331, 300 }, + [72] = { 84, 70, 331, 300 }, + [73] = { 83.2, 69.9, 331, 300 }, + [74] = { 81.5, 69.2, 331, 300 }, + [75] = { 82.5, 69, 331, 300 }, + [76] = { 83.9, 68.5, 331, 300 }, + [77] = { 80.6, 68.2, 331, 300 }, + [78] = { 83, 68.1, 331, 300 }, + [79] = { 81.9, 67.8, 331, 300 }, + [80] = { 83.5, 67.6, 331, 300 }, + [81] = { 82.4, 67.4, 331, 300 }, + [82] = { 82.9, 66.6, 331, 300 }, + [83] = { 81.7, 66.5, 331, 300 }, + [84] = { 80.7, 66.5, 331, 300 }, + [85] = { 81.2, 65.7, 331, 300 }, + [86] = { 80.6, 64.9, 331, 300 }, + }, + ["lvl"] = "29-30", + }, + [11698] = { + ["coords"] = { + [1] = { 56.1, 49.8, 1377, 300 }, + [2] = { 50.2, 49.6, 1377, 300 }, + [3] = { 49.5, 48.5, 1377, 300 }, + [4] = { 47.2, 45.9, 1377, 300 }, + [5] = { 54.1, 44.9, 1377, 300 }, + [6] = { 56.3, 44.2, 1377, 300 }, + [7] = { 48.5, 43.9, 1377, 300 }, + [8] = { 51, 43, 1377, 300 }, + [9] = { 47.7, 42.9, 1377, 300 }, + [10] = { 51.9, 41.1, 1377, 300 }, + [11] = { 50.2, 41, 1377, 300 }, + [12] = { 53.5, 39.9, 1377, 300 }, + [13] = { 42.1, 30.4, 1377, 300 }, + [14] = { 46.6, 29.8, 1377, 300 }, + [15] = { 47.9, 25.8, 1377, 300 }, + [16] = { 46.5, 24.2, 1377, 300 }, + [17] = { 46.4, 23, 1377, 300 }, + [18] = { 43.6, 17.7, 1377, 300 }, + [19] = { 42.5, 12.6, 1377, 300 }, + }, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [11699] = { + ["coords"] = { + [1] = { 76.7, 19.5, 15, 1200 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [11700] = { + ["coords"] = { + [1] = { 23.3, 56.6, 141, 300 }, + [2] = { 29.2, 46.7, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [11701] = { + ["coords"] = { + [1] = { 71.6, 73.9, 490, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [11702] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "60", + }, + [11703] = { + ["coords"] = { + [1] = { 41.5, 75, 51, 500 }, + }, + ["fac"] = "A", + ["lvl"] = "58", + }, + [11704] = { + ["coords"] = { + [1] = { 56.5, 24.5, 139, 345 }, + [2] = { 53.4, 22.1, 139, 345 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [11705] = { + ["coords"] = { + [1] = { 30, 40.2, 16, 333 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [11706] = { + ["coords"] = { + [1] = { 58.4, 16.9, 139, 345 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [11707] = { + ["coords"] = { + [1] = { 30, 40.1, 16, 333 }, + }, + ["fac"] = "AH", + ["lvl"] = "59", + }, + [11708] = { + ["coords"] = { + [1] = { 29.7, 41.4, 16, 333 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [11709] = { + ["coords"] = { + [1] = { 31.7, 58.5, 141, 300 }, + [2] = { 69.7, 55.5, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "16", + }, + [11710] = { + ["coords"] = { + [1] = { 67.2, 24, 28, 345 }, + [2] = { 7.4, 43.5, 139, 345 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [11711] = { + ["coords"] = { + [1] = { 45.9, 90.3, 148, 65 }, + [2] = { 29.7, 71.5, 361, 65 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [11712] = { + ["coords"] = { + [1] = { 22.7, 52.7, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "41", + }, + [11713] = { + ["coords"] = {}, + ["lvl"] = "14-15", + }, + [11714] = { + ["coords"] = {}, + ["lvl"] = "16", + }, + [11715] = { + ["coords"] = { + [1] = { 68.5, 8.9, 405, 300 }, + [2] = { 42.8, 83.9, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [11716] = { + ["coords"] = { + [1] = { 54.5, 35.6, 493, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [11717] = { + ["coords"] = { + [1] = { 32.4, 44, 357, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "43", + }, + [11718] = { + ["coords"] = { + [1] = { 58.3, 12.8, 618, 333 }, + }, + ["fac"] = "H", + ["lvl"] = "53", + }, + [11719] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "35", + }, + [11720] = { + ["coords"] = { + [1] = { 73.3, 59.3, 331, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "44", + }, + [11721] = { + ["coords"] = { + [1] = { 44.4, 30.3, 1377, 300 }, + [2] = { 44.4, 30.3, 1377, 1680 }, + [3] = { 47.4, 27.4, 1377, 300 }, + [4] = { 47.4, 27.4, 1377, 1680 }, + [5] = { 45.7, 26.9, 1377, 300 }, + [6] = { 45.7, 26.9, 1377, 1680 }, + [7] = { 50.6, 26.7, 1377, 300 }, + [8] = { 50.6, 26.7, 1377, 1680 }, + [9] = { 49.1, 23.9, 1377, 300 }, + [10] = { 49.1, 23.9, 1377, 1680 }, + [11] = { 48, 23, 1377, 300 }, + [12] = { 48, 23, 1377, 1680 }, + [13] = { 43.3, 18.2, 1377, 300 }, + [14] = { 43.3, 18.2, 1377, 1680 }, + [15] = { 43.9, 16.8, 1377, 300 }, + [16] = { 43.9, 16.8, 1377, 1680 }, + [17] = { 40.4, 15.2, 1377, 300 }, + [18] = { 40.4, 15.2, 1377, 1680 }, + [19] = { 45.7, 13.2, 1377, 300 }, + [20] = { 45.7, 13.2, 1377, 1680 }, + [21] = { 41.5, 11.9, 1377, 300 }, + [22] = { 41.5, 11.9, 1377, 1680 }, + }, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [11722] = { + ["coords"] = { + [1] = { 60.8, 84.2, 357, 300 }, + [2] = { 61.4, 83.7, 357, 300 }, + [3] = { 45.4, 30.8, 1377, 300 }, + [4] = { 47.5, 30.8, 1377, 300 }, + [5] = { 43.9, 30.1, 1377, 300 }, + [6] = { 42, 28, 1377, 300 }, + [7] = { 47.4, 27.4, 1377, 300 }, + [8] = { 40.6, 27.4, 1377, 300 }, + [9] = { 40.6, 27.3, 1377, 300 }, + [10] = { 50, 26.8, 1377, 300 }, + [11] = { 48.2, 26.6, 1377, 300 }, + [12] = { 45.6, 25.6, 1377, 300 }, + [13] = { 49.7, 24.7, 1377, 300 }, + [14] = { 39.5, 22, 1377, 300 }, + [15] = { 43.2, 18.6, 1377, 300 }, + [16] = { 48.5, 18.4, 1377, 300 }, + [17] = { 40.8, 18.3, 1377, 300 }, + [18] = { 40.5, 16.6, 1377, 300 }, + [19] = { 47.2, 16.4, 1377, 300 }, + [20] = { 44, 15.7, 1377, 300 }, + [21] = { 38.9, 15.4, 1377, 300 }, + [22] = { 40.8, 13.9, 1377, 300 }, + [23] = { 37.9, 13.3, 1377, 300 }, + [24] = { 43.8, 12.7, 1377, 300 }, + [25] = { 39, 12.3, 1377, 300 }, + [26] = { 41.6, 12, 1377, 300 }, + }, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [11723] = { + ["coords"] = { + [1] = { 62, 83.7, 357, 300 }, + [2] = { 46, 32.2, 1377, 300 }, + [3] = { 49.7, 31.3, 1377, 300 }, + [4] = { 50.4, 26.8, 1377, 300 }, + [5] = { 51.1, 26.3, 1377, 300 }, + [6] = { 48, 24.1, 1377, 300 }, + [7] = { 50.3, 23.9, 1377, 300 }, + [8] = { 38.7, 23.2, 1377, 300 }, + [9] = { 41.7, 22.3, 1377, 300 }, + [10] = { 42.9, 20.3, 1377, 300 }, + [11] = { 43.5, 19.1, 1377, 300 }, + [12] = { 42.1, 19.1, 1377, 300 }, + [13] = { 38.6, 16.6, 1377, 300 }, + [14] = { 46.8, 15.9, 1377, 300 }, + [15] = { 39.8, 14.8, 1377, 300 }, + [16] = { 44.5, 13.8, 1377, 300 }, + [17] = { 40.3, 12.4, 1377, 300 }, + }, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [11724] = { + ["coords"] = { + [1] = { 61.8, 83.9, 357, 300 }, + [2] = { 61.4, 83.4, 357, 300 }, + [3] = { 53.3, 54.1, 1377, 300 }, + [4] = { 54.2, 53.4, 1377, 300 }, + [5] = { 52.1, 52.6, 1377, 300 }, + [6] = { 53.2, 51.8, 1377, 300 }, + [7] = { 54.9, 51.5, 1377, 300 }, + [8] = { 49.2, 51.4, 1377, 300 }, + [9] = { 51.7, 51.4, 1377, 300 }, + [10] = { 53.9, 50.1, 1377, 300 }, + [11] = { 48.5, 49.9, 1377, 300 }, + [12] = { 55.1, 48.5, 1377, 300 }, + [13] = { 47.3, 48.4, 1377, 300 }, + [14] = { 55.9, 47.4, 1377, 300 }, + [15] = { 48.5, 47.1, 1377, 300 }, + [16] = { 54.9, 45.2, 1377, 300 }, + [17] = { 53.5, 43.6, 1377, 300 }, + [18] = { 55, 42.8, 1377, 300 }, + [19] = { 49.5, 42.8, 1377, 300 }, + [20] = { 53.8, 41.1, 1377, 300 }, + [21] = { 53.6, 40.2, 1377, 300 }, + [22] = { 45.3, 33.7, 1377, 300 }, + [23] = { 43.1, 31.8, 1377, 300 }, + [24] = { 46.2, 28.7, 1377, 300 }, + [25] = { 40.8, 28.1, 1377, 300 }, + [26] = { 49.3, 27.9, 1377, 300 }, + [27] = { 42.4, 27.9, 1377, 300 }, + [28] = { 51, 27.3, 1377, 300 }, + [29] = { 44.4, 27.3, 1377, 300 }, + [30] = { 39.6, 25.5, 1377, 300 }, + [31] = { 48, 25.1, 1377, 300 }, + [32] = { 44.5, 24, 1377, 300 }, + [33] = { 43.8, 22.8, 1377, 300 }, + [34] = { 47, 22.6, 1377, 300 }, + [35] = { 47.6, 22.3, 1377, 300 }, + [36] = { 48.9, 22.1, 1377, 300 }, + [37] = { 41.3, 20.8, 1377, 300 }, + [38] = { 47.7, 20.2, 1377, 300 }, + [39] = { 43.9, 16.6, 1377, 300 }, + [40] = { 40.6, 15.2, 1377, 300 }, + [41] = { 39.2, 14.5, 1377, 300 }, + [42] = { 38.8, 13.9, 1377, 300 }, + [43] = { 45.1, 13.7, 1377, 300 }, + [44] = { 39.8, 12.8, 1377, 300 }, + [45] = { 39.2, 11.8, 1377, 300 }, + [46] = { 44.5, 11.3, 1377, 300 }, + [47] = { 45.5, 11.3, 1377, 300 }, + }, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [11725] = { + ["coords"] = { + [1] = { 23.3, 71.7, 1377, 300 }, + [2] = { 20.8, 70.7, 1377, 300 }, + [3] = { 24.4, 69.8, 1377, 300 }, + [4] = { 30.6, 68.3, 1377, 300 }, + [5] = { 22.9, 68, 1377, 300 }, + [6] = { 26.7, 65, 1377, 300 }, + [7] = { 35.1, 64.9, 1377, 300 }, + [8] = { 34.3, 63.7, 1377, 300 }, + [9] = { 32.5, 63.5, 1377, 300 }, + [10] = { 22.8, 62.1, 1377, 300 }, + [11] = { 24.1, 61.7, 1377, 300 }, + [12] = { 25.8, 61.5, 1377, 300 }, + [13] = { 21.6, 61, 1377, 300 }, + [14] = { 26.6, 59.7, 1377, 300 }, + [15] = { 23.4, 59.6, 1377, 300 }, + [16] = { 31.7, 58.2, 1377, 300 }, + [17] = { 24.9, 55.5, 1377, 300 }, + [18] = { 26.4, 55.1, 1377, 300 }, + [19] = { 23.9, 50.6, 1377, 300 }, + [20] = { 29.6, 49.2, 1377, 300 }, + [21] = { 22.2, 48.6, 1377, 300 }, + }, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [11726] = { + ["coords"] = { + [1] = { 22.7, 72.7, 1377, 300 }, + [2] = { 22.7, 72.7, 1377, 1680 }, + [3] = { 22.5, 71, 1377, 300 }, + [4] = { 22.5, 71, 1377, 1680 }, + [5] = { 27.4, 68.7, 1377, 300 }, + [6] = { 27.4, 68.7, 1377, 1680 }, + [7] = { 19.1, 66.8, 1377, 300 }, + [8] = { 19.1, 66.8, 1377, 1680 }, + [9] = { 32.5, 64.1, 1377, 300 }, + [10] = { 32.5, 64.1, 1377, 1680 }, + [11] = { 37.1, 63.6, 1377, 300 }, + [12] = { 37.1, 63.6, 1377, 1680 }, + [13] = { 26.4, 61.8, 1377, 300 }, + [14] = { 26.4, 61.8, 1377, 1680 }, + [15] = { 23.2, 58.6, 1377, 300 }, + [16] = { 23.2, 58.6, 1377, 1680 }, + [17] = { 21.5, 52.3, 1377, 300 }, + [18] = { 21.5, 52.3, 1377, 1680 }, + }, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [11727] = { + ["coords"] = { + [1] = { 22.5, 71.6, 1377, 300 }, + [2] = { 22, 71.4, 1377, 300 }, + [3] = { 22.7, 71.1, 1377, 300 }, + [4] = { 21.9, 71, 1377, 300 }, + [5] = { 22.5, 70.8, 1377, 300 }, + [6] = { 27.2, 70.3, 1377, 300 }, + [7] = { 27.1, 70.2, 1377, 300 }, + [8] = { 27.2, 70.1, 1377, 300 }, + [9] = { 27.3, 70.1, 1377, 300 }, + [10] = { 27.2, 70, 1377, 300 }, + [11] = { 18.4, 69.2, 1377, 300 }, + [12] = { 27, 69, 1377, 300 }, + [13] = { 27.5, 68.9, 1377, 300 }, + [14] = { 18.3, 68.8, 1377, 300 }, + [15] = { 27.2, 68.8, 1377, 300 }, + [16] = { 33, 68.7, 1377, 300 }, + [17] = { 33.5, 68.6, 1377, 300 }, + [18] = { 18.1, 68.5, 1377, 300 }, + [19] = { 18.9, 68.5, 1377, 300 }, + [20] = { 32.8, 68.5, 1377, 300 }, + [21] = { 16.8, 68.3, 1377, 300 }, + [22] = { 17, 67.9, 1377, 300 }, + [23] = { 33.5, 67.8, 1377, 300 }, + [24] = { 17, 67.4, 1377, 300 }, + [25] = { 19.4, 67, 1377, 300 }, + [26] = { 17.3, 67, 1377, 300 }, + [27] = { 18.5, 66.9, 1377, 300 }, + [28] = { 19, 66.7, 1377, 300 }, + [29] = { 18.7, 66.5, 1377, 300 }, + [30] = { 37.1, 63.5, 1377, 300 }, + [31] = { 37.3, 63.4, 1377, 300 }, + [32] = { 21.4, 63.3, 1377, 300 }, + [33] = { 36.7, 63.2, 1377, 300 }, + [34] = { 37, 63.2, 1377, 300 }, + [35] = { 20.6, 63.2, 1377, 300 }, + [36] = { 21.1, 62.9, 1377, 300 }, + [37] = { 36.8, 62.8, 1377, 300 }, + [38] = { 21.4, 62.7, 1377, 300 }, + [39] = { 38.1, 62.6, 1377, 300 }, + [40] = { 20.7, 62.5, 1377, 300 }, + [41] = { 37.9, 62.3, 1377, 300 }, + [42] = { 38, 62, 1377, 300 }, + [43] = { 37.7, 61.9, 1377, 300 }, + [44] = { 27.9, 61.8, 1377, 300 }, + [45] = { 23.4, 61.7, 1377, 300 }, + [46] = { 20, 61.7, 1377, 300 }, + [47] = { 36.1, 61.7, 1377, 300 }, + [48] = { 23.4, 61.6, 1377, 300 }, + [49] = { 23.5, 61.6, 1377, 300 }, + [50] = { 20.1, 61.6, 1377, 300 }, + [51] = { 37.8, 61.6, 1377, 300 }, + [52] = { 20, 61.5, 1377, 300 }, + [53] = { 31.4, 61.5, 1377, 300 }, + [54] = { 19.9, 61.5, 1377, 300 }, + [55] = { 36.5, 61.5, 1377, 300 }, + [56] = { 20, 61.4, 1377, 300 }, + [57] = { 31.3, 61.4, 1377, 300 }, + [58] = { 31.2, 61.4, 1377, 300 }, + [59] = { 31.3, 61.3, 1377, 300 }, + [60] = { 36.8, 61.3, 1377, 300 }, + [61] = { 28.2, 61.3, 1377, 300 }, + [62] = { 28, 60.9, 1377, 300 }, + [63] = { 36.2, 60.9, 1377, 300 }, + [64] = { 36.5, 60.9, 1377, 300 }, + [65] = { 27.7, 60.8, 1377, 300 }, + [66] = { 19.6, 59.4, 1377, 300 }, + [67] = { 19.5, 59.3, 1377, 300 }, + [68] = { 26.2, 59.2, 1377, 300 }, + [69] = { 26.5, 59.1, 1377, 300 }, + [70] = { 27.6, 59.1, 1377, 300 }, + [71] = { 25.9, 59, 1377, 300 }, + [72] = { 20.1, 59, 1377, 300 }, + [73] = { 27.5, 59, 1377, 300 }, + [74] = { 19.1, 58.8, 1377, 300 }, + [75] = { 27.5, 58.8, 1377, 300 }, + [76] = { 19, 58.8, 1377, 300 }, + [77] = { 27.1, 58, 1377, 300 }, + [78] = { 20.3, 57.8, 1377, 300 }, + [79] = { 26.8, 57.8, 1377, 300 }, + [80] = { 20.1, 57.7, 1377, 300 }, + [81] = { 25.8, 57.7, 1377, 300 }, + [82] = { 20.4, 57.5, 1377, 300 }, + [83] = { 20.2, 57.3, 1377, 300 }, + [84] = { 26.5, 57.3, 1377, 300 }, + [85] = { 19.8, 57.3, 1377, 300 }, + [86] = { 28.1, 56.2, 1377, 300 }, + [87] = { 28.1, 55.4, 1377, 300 }, + [88] = { 28.5, 55.3, 1377, 300 }, + [89] = { 31.2, 52.5, 1377, 300 }, + [90] = { 31.1, 52.4, 1377, 300 }, + [91] = { 31.2, 52.3, 1377, 300 }, + [92] = { 31.1, 52.2, 1377, 300 }, + [93] = { 21.4, 52.2, 1377, 300 }, + [94] = { 21.9, 51.9, 1377, 300 }, + [95] = { 21.2, 51.7, 1377, 300 }, + [96] = { 21.2, 51.5, 1377, 300 }, + [97] = { 21.1, 51.5, 1377, 300 }, + [98] = { 21.5, 51.1, 1377, 300 }, + [99] = { 25.1, 47.6, 1377, 300 }, + [100] = { 25.2, 47.5, 1377, 300 }, + [101] = { 25.3, 47.4, 1377, 300 }, + [102] = { 27.4, 46.8, 1377, 300 }, + [103] = { 27.6, 46.8, 1377, 300 }, + [104] = { 27.5, 46.7, 1377, 300 }, + [105] = { 27.5, 46.6, 1377, 300 }, + }, + ["lvl"] = "58-59", + }, + [11728] = { + ["coords"] = { + [1] = { 23.1, 72.6, 1377, 300 }, + [2] = { 22.1, 69.6, 1377, 300 }, + [3] = { 20.3, 69.5, 1377, 300 }, + [4] = { 29, 69.4, 1377, 300 }, + [5] = { 24.9, 69.3, 1377, 300 }, + [6] = { 22.8, 68.7, 1377, 300 }, + [7] = { 31.8, 66.3, 1377, 300 }, + [8] = { 35.4, 65.4, 1377, 300 }, + [9] = { 36.1, 64.2, 1377, 300 }, + [10] = { 21.6, 64.1, 1377, 300 }, + [11] = { 25.9, 64, 1377, 300 }, + [12] = { 24.6, 63.7, 1377, 300 }, + [13] = { 34.1, 63.3, 1377, 300 }, + [14] = { 30.8, 62.6, 1377, 300 }, + [15] = { 22.8, 62.5, 1377, 300 }, + [16] = { 35.2, 62.2, 1377, 300 }, + [17] = { 22.3, 62.1, 1377, 300 }, + [18] = { 33, 61.4, 1377, 300 }, + [19] = { 25.5, 60.6, 1377, 300 }, + [20] = { 24.2, 59.8, 1377, 300 }, + [21] = { 23.2, 58.8, 1377, 300 }, + [22] = { 25.9, 58.4, 1377, 300 }, + [23] = { 31.6, 56.3, 1377, 300 }, + [24] = { 24.5, 56, 1377, 300 }, + [25] = { 25.3, 56, 1377, 300 }, + [26] = { 23.4, 55.6, 1377, 300 }, + [27] = { 21.4, 54.5, 1377, 300 }, + [28] = { 29.8, 51.1, 1377, 300 }, + [29] = { 24.5, 48.4, 1377, 300 }, + }, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [11729] = { + ["coords"] = { + [1] = { 24.8, 72.8, 1377, 300 }, + [2] = { 24.3, 72.2, 1377, 300 }, + [3] = { 23.3, 69.4, 1377, 300 }, + [4] = { 30.2, 68.4, 1377, 300 }, + [5] = { 23.3, 67.6, 1377, 300 }, + [6] = { 28.6, 67.2, 1377, 300 }, + [7] = { 31.2, 67.1, 1377, 300 }, + [8] = { 27.3, 65.6, 1377, 300 }, + [9] = { 33.2, 65.5, 1377, 300 }, + [10] = { 20.1, 65.4, 1377, 300 }, + [11] = { 33.4, 64.9, 1377, 300 }, + [12] = { 31.3, 64.6, 1377, 300 }, + [13] = { 24, 64.3, 1377, 300 }, + [14] = { 20.9, 64.3, 1377, 300 }, + [15] = { 22.9, 64.2, 1377, 300 }, + [16] = { 26.5, 63.8, 1377, 300 }, + [17] = { 24.4, 62.9, 1377, 300 }, + [18] = { 24.5, 62.7, 1377, 300 }, + [19] = { 35, 62.6, 1377, 300 }, + [20] = { 33.4, 62.3, 1377, 300 }, + [21] = { 25.4, 61.5, 1377, 300 }, + [22] = { 24.9, 60.7, 1377, 300 }, + [23] = { 32.1, 57.3, 1377, 300 }, + [24] = { 19.6, 55.1, 1377, 300 }, + [25] = { 29.6, 54.9, 1377, 300 }, + [26] = { 24.2, 51.6, 1377, 300 }, + [27] = { 25.3, 50.3, 1377, 300 }, + [28] = { 28.3, 48.5, 1377, 300 }, + [29] = { 21.7, 47, 1377, 300 }, + }, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [11730] = { + ["coords"] = { + [1] = { 62.6, 99.9, 1377, 300 }, + [2] = { 53.2, 99.1, 1377, 300 }, + [3] = { 62.4, 97.8, 1377, 300 }, + [4] = { 53.1, 97.4, 1377, 300 }, + [5] = { 61, 95.7, 1377, 300 }, + [6] = { 50.6, 93.6, 1377, 300 }, + [7] = { 61.7, 93.1, 1377, 300 }, + [8] = { 61.9, 90.3, 1377, 300 }, + [9] = { 53.9, 88.4, 1377, 300 }, + [10] = { 56.1, 86.9, 1377, 300 }, + [11] = { 58.1, 86.9, 1377, 300 }, + [12] = { 66.4, 83.7, 1377, 300 }, + [13] = { 60.8, 83.1, 1377, 300 }, + [14] = { 66, 82.9, 1377, 300 }, + [15] = { 62, 80.3, 1377, 300 }, + [16] = { 49.3, 80.1, 1377, 300 }, + [17] = { 52.3, 78.5, 1377, 300 }, + [18] = { 64.8, 76.6, 1377, 300 }, + [19] = { 48.5, 76.2, 1377, 300 }, + [20] = { 65.3, 75.5, 1377, 300 }, + [21] = { 65.8, 75, 1377, 300 }, + [22] = { 61, 72.4, 1377, 300 }, + }, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [11731] = { + ["coords"] = { + [1] = { 60.6, 95.3, 1377, 300 }, + [2] = { 60.6, 95.3, 1377, 1680 }, + [3] = { 54.4, 94.9, 1377, 300 }, + [4] = { 54.4, 94.9, 1377, 1680 }, + [5] = { 53.6, 85.1, 1377, 300 }, + [6] = { 53.6, 85.1, 1377, 1680 }, + [7] = { 51.8, 81.2, 1377, 300 }, + [8] = { 51.8, 81.2, 1377, 1680 }, + [9] = { 64.4, 80.9, 1377, 300 }, + [10] = { 64.4, 80.9, 1377, 1680 }, + [11] = { 61, 78.8, 1377, 300 }, + [12] = { 61, 78.8, 1377, 1680 }, + [13] = { 65.4, 75, 1377, 300 }, + [14] = { 65.4, 75, 1377, 1680 }, + [15] = { 59.9, 71.7, 1377, 300 }, + [16] = { 59.9, 71.7, 1377, 1680 }, + [17] = { 64.9, 71.3, 1377, 300 }, + [18] = { 64.9, 71.3, 1377, 1680 }, + [19] = { 54.8, 71, 1377, 300 }, + [20] = { 54.8, 71, 1377, 1680 }, + }, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [11732] = { + ["coords"] = { + [1] = { 53.4, 99.6, 1377, 300 }, + [2] = { 58.9, 99.5, 1377, 300 }, + [3] = { 60, 98.3, 1377, 300 }, + [4] = { 52.9, 96, 1377, 300 }, + [5] = { 62.1, 95.2, 1377, 300 }, + [6] = { 62.2, 95.1, 1377, 300 }, + [7] = { 50.7, 92.8, 1377, 300 }, + [8] = { 52.3, 89.7, 1377, 300 }, + [9] = { 58.2, 89.5, 1377, 300 }, + [10] = { 63, 89, 1377, 300 }, + [11] = { 60.2, 87.7, 1377, 300 }, + [12] = { 60.4, 85.8, 1377, 300 }, + [13] = { 54, 85.7, 1377, 300 }, + [14] = { 58.3, 84.1, 1377, 300 }, + [15] = { 50.7, 83.4, 1377, 300 }, + [16] = { 67, 83.4, 1377, 300 }, + [17] = { 65.5, 83.3, 1377, 300 }, + [18] = { 49.3, 82.7, 1377, 300 }, + [19] = { 62.8, 81.3, 1377, 300 }, + [20] = { 56.4, 81.2, 1377, 300 }, + [21] = { 60.8, 80.2, 1377, 300 }, + [22] = { 58.8, 80, 1377, 300 }, + [23] = { 51.6, 79.8, 1377, 300 }, + [24] = { 54.3, 78.9, 1377, 300 }, + [25] = { 66.2, 77.5, 1377, 300 }, + [26] = { 51, 77.1, 1377, 300 }, + [27] = { 51.4, 77.1, 1377, 300 }, + [28] = { 61.3, 75.2, 1377, 300 }, + [29] = { 55.5, 75.1, 1377, 300 }, + [30] = { 54.9, 74.9, 1377, 300 }, + [31] = { 64, 74.3, 1377, 300 }, + [32] = { 53.1, 73.9, 1377, 300 }, + [33] = { 62.9, 73.5, 1377, 300 }, + [34] = { 49.5, 73.3, 1377, 300 }, + [35] = { 60.2, 72.5, 1377, 300 }, + }, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [11733] = { + ["coords"] = { + [1] = { 57.3, 99.6, 1377, 300 }, + [2] = { 51.6, 99.4, 1377, 300 }, + [3] = { 61.5, 97.8, 1377, 300 }, + [4] = { 51.9, 97.8, 1377, 300 }, + [5] = { 63.1, 97.4, 1377, 300 }, + [6] = { 54.2, 96.9, 1377, 300 }, + [7] = { 53.9, 95.2, 1377, 300 }, + [8] = { 52.5, 95.1, 1377, 300 }, + [9] = { 50.9, 94.1, 1377, 300 }, + [10] = { 52.8, 93, 1377, 300 }, + [11] = { 62.6, 91.5, 1377, 300 }, + [12] = { 58.9, 91.3, 1377, 300 }, + [13] = { 62.7, 90.6, 1377, 300 }, + [14] = { 60.5, 90.2, 1377, 300 }, + [15] = { 52.2, 90, 1377, 300 }, + [16] = { 49.8, 88.8, 1377, 300 }, + [17] = { 53.3, 88.6, 1377, 300 }, + [18] = { 53.4, 85.3, 1377, 300 }, + [19] = { 57.4, 83.4, 1377, 300 }, + [20] = { 54.9, 83.1, 1377, 300 }, + [21] = { 66.9, 82.2, 1377, 300 }, + [22] = { 65.1, 82, 1377, 300 }, + [23] = { 60, 81.2, 1377, 300 }, + [24] = { 52.1, 81.1, 1377, 300 }, + [25] = { 62.3, 80.8, 1377, 300 }, + [26] = { 65.9, 79.1, 1377, 300 }, + [27] = { 58.2, 79, 1377, 300 }, + [28] = { 61.5, 78.7, 1377, 300 }, + [29] = { 56.3, 78.5, 1377, 300 }, + [30] = { 53.2, 77.6, 1377, 300 }, + [31] = { 58.6, 77.4, 1377, 300 }, + [32] = { 61.2, 77, 1377, 300 }, + [33] = { 63.1, 76.6, 1377, 300 }, + [34] = { 55.1, 76.3, 1377, 300 }, + [35] = { 59.9, 75.7, 1377, 300 }, + [36] = { 57.3, 74.6, 1377, 300 }, + [37] = { 63.5, 73.9, 1377, 300 }, + [38] = { 54, 73.1, 1377, 300 }, + [39] = { 60.8, 71.5, 1377, 300 }, + [40] = { 55.1, 71.2, 1377, 300 }, + }, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [11734] = { + ["coords"] = { + [1] = { 63.8, 99.4, 1377, 300 }, + [2] = { 61.6, 98.9, 1377, 300 }, + [3] = { 63.1, 98.4, 1377, 300 }, + [4] = { 51.4, 97.8, 1377, 300 }, + [5] = { 54.9, 97, 1377, 300 }, + [6] = { 63.1, 94.2, 1377, 300 }, + [7] = { 63, 94.1, 1377, 300 }, + [8] = { 51.4, 93.5, 1377, 300 }, + [9] = { 61.2, 91.4, 1377, 300 }, + [10] = { 50.6, 89.5, 1377, 300 }, + [11] = { 60.9, 88.8, 1377, 300 }, + [12] = { 59.3, 88, 1377, 300 }, + [13] = { 54.1, 87.2, 1377, 300 }, + [14] = { 61.8, 86.8, 1377, 300 }, + [15] = { 62.1, 84.9, 1377, 300 }, + [16] = { 57.8, 81.8, 1377, 300 }, + [17] = { 64, 81.6, 1377, 300 }, + [18] = { 66.3, 81.2, 1377, 300 }, + [19] = { 57.3, 80.4, 1377, 300 }, + [20] = { 53.1, 80, 1377, 300 }, + [21] = { 55, 79.9, 1377, 300 }, + [22] = { 61.5, 78.8, 1377, 300 }, + [23] = { 59.6, 78.5, 1377, 300 }, + [24] = { 65.9, 75.8, 1377, 300 }, + [25] = { 54.7, 75.6, 1377, 300 }, + [26] = { 60.9, 74.9, 1377, 300 }, + [27] = { 65.9, 73.7, 1377, 300 }, + [28] = { 56.3, 72.9, 1377, 300 }, + [29] = { 64.9, 72.7, 1377, 300 }, + [30] = { 53.1, 71.9, 1377, 300 }, + [31] = { 59, 71.3, 1377, 300 }, + }, + ["lvl"] = "59-61", + ["rnk"] = "1", + }, + [11735] = { + ["coords"] = { + [1] = { 10.4, 42.7, 490, 300 }, + [2] = { 9.3, 42.6, 490, 300 }, + [3] = { 9.5, 41.8, 490, 300 }, + [4] = { 11.5, 41.1, 490, 300 }, + [5] = { 7.5, 40.2, 490, 300 }, + [6] = { 10.3, 39.9, 490, 300 }, + [7] = { 7.6, 39.2, 490, 300 }, + [8] = { 8.7, 37.4, 490, 300 }, + [9] = { 13.9, 37.3, 490, 300 }, + [10] = { 11, 37.1, 490, 300 }, + [11] = { 11.3, 37.1, 490, 300 }, + [12] = { 11.7, 36.8, 490, 300 }, + [13] = { 9.7, 36.3, 490, 300 }, + [14] = { 15.5, 35.5, 490, 300 }, + [15] = { 14.2, 34.3, 490, 300 }, + [16] = { 13, 33.1, 490, 300 }, + [17] = { 12.9, 33.1, 490, 300 }, + [18] = { 12, 32.9, 490, 300 }, + [19] = { 15.8, 31.5, 490, 300 }, + [20] = { 17.1, 30.9, 490, 300 }, + [21] = { 10.8, 30.7, 490, 300 }, + [22] = { 11.1, 30.2, 490, 300 }, + [23] = { 17.4, 29, 490, 300 }, + [24] = { 18.2, 28.8, 490, 300 }, + [25] = { 18.3, 27.5, 490, 300 }, + [26] = { 17.7, 27.3, 490, 300 }, + [27] = { 68.6, 45.7, 1377, 300 }, + [28] = { 67.4, 45.5, 1377, 300 }, + [29] = { 64.6, 45.3, 1377, 300 }, + [30] = { 62.1, 44.9, 1377, 300 }, + [31] = { 67.6, 44.8, 1377, 300 }, + [32] = { 69.8, 44, 1377, 300 }, + [33] = { 62.1, 43.9, 1377, 300 }, + [34] = { 62.9, 43.6, 1377, 300 }, + [35] = { 65.5, 43, 1377, 300 }, + [36] = { 60.9, 43, 1377, 300 }, + [37] = { 68.5, 42.7, 1377, 300 }, + [38] = { 44.6, 42.6, 1377, 300 }, + [39] = { 65.6, 42, 1377, 300 }, + [40] = { 43, 41.1, 1377, 300 }, + [41] = { 61.7, 41, 1377, 300 }, + [42] = { 64, 40.8, 1377, 300 }, + [43] = { 44.8, 40.7, 1377, 300 }, + [44] = { 62.9, 40.5, 1377, 300 }, + [45] = { 61.6, 40.1, 1377, 300 }, + [46] = { 66.8, 40.1, 1377, 300 }, + [47] = { 72.3, 40, 1377, 300 }, + [48] = { 69.2, 39.8, 1377, 300 }, + [49] = { 69.6, 39.8, 1377, 300 }, + [50] = { 70, 39.4, 1377, 300 }, + [51] = { 67.8, 38.9, 1377, 300 }, + [52] = { 60.4, 38.6, 1377, 300 }, + [53] = { 40.7, 38.4, 1377, 300 }, + [54] = { 42.7, 38.4, 1377, 300 }, + [55] = { 74, 38, 1377, 300 }, + [56] = { 65.7, 37.6, 1377, 300 }, + [57] = { 39.4, 37.1, 1377, 300 }, + [58] = { 44.4, 37.1, 1377, 300 }, + [59] = { 72.6, 36.8, 1377, 300 }, + [60] = { 40.5, 36.7, 1377, 300 }, + [61] = { 71.4, 35.5, 1377, 300 }, + [62] = { 71.2, 35.5, 1377, 300 }, + [63] = { 38, 35.3, 1377, 300 }, + [64] = { 70.3, 35.3, 1377, 300 }, + [65] = { 42.3, 35.1, 1377, 300 }, + [66] = { 36.3, 34, 1377, 300 }, + [67] = { 57.1, 33.8, 1377, 300 }, + [68] = { 74.3, 33.8, 1377, 300 }, + [69] = { 38.9, 33.2, 1377, 300 }, + [70] = { 75.7, 33.2, 1377, 300 }, + [71] = { 69, 32.9, 1377, 300 }, + [72] = { 39.8, 32.8, 1377, 300 }, + [73] = { 66.4, 32.7, 1377, 300 }, + [74] = { 56.5, 32.6, 1377, 300 }, + [75] = { 69.4, 32.5, 1377, 300 }, + [76] = { 63, 32.2, 1377, 300 }, + [77] = { 63.9, 32.2, 1377, 300 }, + [78] = { 68.3, 32, 1377, 300 }, + [79] = { 60.9, 31.9, 1377, 300 }, + [80] = { 58, 31.8, 1377, 300 }, + [81] = { 36.9, 31.6, 1377, 300 }, + [82] = { 35.6, 31.5, 1377, 300 }, + [83] = { 33.9, 31.5, 1377, 300 }, + [84] = { 61.1, 31.4, 1377, 300 }, + [85] = { 64.7, 31.3, 1377, 300 }, + [86] = { 40, 31.3, 1377, 300 }, + [87] = { 62.8, 31.2, 1377, 300 }, + [88] = { 76, 31.2, 1377, 300 }, + [89] = { 76.8, 30.9, 1377, 300 }, + [90] = { 53.7, 30.7, 1377, 300 }, + [91] = { 54.1, 30.3, 1377, 300 }, + [92] = { 51, 30.3, 1377, 300 }, + [93] = { 56.1, 30.2, 1377, 300 }, + [94] = { 36.7, 29.9, 1377, 300 }, + [95] = { 65, 29.7, 1377, 300 }, + [96] = { 66.9, 29.6, 1377, 300 }, + [97] = { 52.5, 29.6, 1377, 300 }, + [98] = { 76.9, 29.5, 1377, 300 }, + [99] = { 76.3, 29.3, 1377, 300 }, + [100] = { 33.1, 29.3, 1377, 300 }, + [101] = { 66.5, 29, 1377, 300 }, + [102] = { 63.9, 28.9, 1377, 300 }, + [103] = { 34.4, 28.7, 1377, 300 }, + [104] = { 53.4, 28.4, 1377, 300 }, + [105] = { 31.8, 28.3, 1377, 300 }, + [106] = { 59.9, 28.1, 1377, 300 }, + [107] = { 36, 28.1, 1377, 300 }, + [108] = { 64.6, 28, 1377, 300 }, + [109] = { 59.8, 27.9, 1377, 300 }, + [110] = { 58.5, 27.7, 1377, 300 }, + [111] = { 56.7, 27.6, 1377, 300 }, + [112] = { 36.8, 27.3, 1377, 300 }, + [113] = { 65.5, 27.2, 1377, 300 }, + [114] = { 53, 27.1, 1377, 300 }, + [115] = { 64.3, 27, 1377, 300 }, + [116] = { 56, 27, 1377, 300 }, + [117] = { 58.7, 26.9, 1377, 300 }, + [118] = { 34.5, 26.7, 1377, 300 }, + [119] = { 61.8, 26.6, 1377, 300 }, + [120] = { 31.4, 26.2, 1377, 300 }, + [121] = { 60.5, 25.7, 1377, 300 }, + [122] = { 53.5, 25.6, 1377, 300 }, + [123] = { 30.5, 25.6, 1377, 300 }, + [124] = { 62.7, 25.5, 1377, 300 }, + [125] = { 58.9, 25.4, 1377, 300 }, + [126] = { 34.1, 25.4, 1377, 300 }, + [127] = { 52.2, 24.7, 1377, 300 }, + [128] = { 54.5, 24.5, 1377, 300 }, + [129] = { 62.9, 24.1, 1377, 300 }, + [130] = { 62.8, 24.1, 1377, 300 }, + [131] = { 58, 24, 1377, 300 }, + [132] = { 36.6, 23.6, 1377, 300 }, + [133] = { 66.1, 23.4, 1377, 300 }, + [134] = { 64.4, 23.4, 1377, 300 }, + [135] = { 58.3, 22.8, 1377, 300 }, + [136] = { 55.6, 22.8, 1377, 300 }, + [137] = { 53.2, 22.7, 1377, 300 }, + [138] = { 36, 22.5, 1377, 300 }, + [139] = { 56.1, 22.4, 1377, 300 }, + [140] = { 61, 22.3, 1377, 300 }, + [141] = { 34, 21.8, 1377, 300 }, + [142] = { 34.6, 21.4, 1377, 300 }, + [143] = { 33.1, 21.1, 1377, 300 }, + [144] = { 37.7, 20.9, 1377, 300 }, + [145] = { 57.8, 20.6, 1377, 300 }, + [146] = { 59.9, 20.5, 1377, 300 }, + [147] = { 58.8, 20.5, 1377, 300 }, + [148] = { 34.4, 20.2, 1377, 300 }, + [149] = { 37.3, 19.9, 1377, 300 }, + [150] = { 62.6, 19.7, 1377, 300 }, + [151] = { 35.9, 19.6, 1377, 300 }, + [152] = { 51.3, 19.6, 1377, 300 }, + [153] = { 57.2, 19.6, 1377, 300 }, + [154] = { 53.5, 19.6, 1377, 300 }, + [155] = { 60.2, 19.5, 1377, 300 }, + [156] = { 38.7, 18.7, 1377, 300 }, + [157] = { 60.1, 18.4, 1377, 300 }, + [158] = { 63, 18.3, 1377, 300 }, + [159] = { 61.8, 18.1, 1377, 300 }, + [160] = { 35.7, 18.1, 1377, 300 }, + [161] = { 58.1, 18, 1377, 300 }, + [162] = { 61.1, 17.2, 1377, 300 }, + [163] = { 63.7, 17, 1377, 300 }, + [164] = { 55.2, 16.8, 1377, 300 }, + [165] = { 50.5, 16.8, 1377, 300 }, + [166] = { 56.6, 16.8, 1377, 300 }, + [167] = { 36.9, 16.7, 1377, 300 }, + [168] = { 63.7, 16, 1377, 300 }, + [169] = { 50.2, 15.3, 1377, 300 }, + [170] = { 61.5, 15.2, 1377, 300 }, + [171] = { 38.7, 15, 1377, 300 }, + [172] = { 54.4, 14.5, 1377, 300 }, + [173] = { 61.4, 14.5, 1377, 300 }, + [174] = { 64.1, 14.2, 1377, 300 }, + [175] = { 55.1, 13.9, 1377, 300 }, + [176] = { 51.6, 13.9, 1377, 300 }, + [177] = { 48.9, 13.4, 1377, 300 }, + [178] = { 59, 13.3, 1377, 300 }, + [179] = { 57.9, 12.5, 1377, 300 }, + [180] = { 53.7, 12.2, 1377, 300 }, + [181] = { 56.8, 11.3, 1377, 300 }, + [182] = { 56.9, 9.5, 1377, 300 }, + }, + ["lvl"] = "54-55", + }, + [11736] = { + ["coords"] = { + [1] = { 7.5, 57.7, 490, 300 }, + [2] = { 34.1, 66.8, 1377, 300 }, + [3] = { 40.3, 66.7, 1377, 300 }, + [4] = { 62.6, 66, 1377, 300 }, + [5] = { 58.4, 65.8, 1377, 300 }, + [6] = { 45.7, 65.8, 1377, 300 }, + [7] = { 49.6, 65.7, 1377, 300 }, + [8] = { 38, 65.6, 1377, 300 }, + [9] = { 57.7, 64.7, 1377, 300 }, + [10] = { 42.3, 64.6, 1377, 300 }, + [11] = { 50.7, 64.4, 1377, 300 }, + [12] = { 55.1, 64.2, 1377, 300 }, + [13] = { 37.4, 64.2, 1377, 300 }, + [14] = { 60.4, 64.1, 1377, 300 }, + [15] = { 48.6, 64, 1377, 300 }, + [16] = { 62.4, 64, 1377, 300 }, + [17] = { 38.4, 63.9, 1377, 300 }, + [18] = { 35.2, 63.4, 1377, 300 }, + [19] = { 57.2, 63.4, 1377, 300 }, + [20] = { 45.8, 63.3, 1377, 300 }, + [21] = { 58.8, 63.2, 1377, 300 }, + [22] = { 52.2, 62.9, 1377, 300 }, + [23] = { 49.5, 62.8, 1377, 300 }, + [24] = { 61, 62.8, 1377, 300 }, + [25] = { 41, 62.8, 1377, 300 }, + [26] = { 39, 62.7, 1377, 300 }, + [27] = { 55.3, 62.3, 1377, 300 }, + [28] = { 51.4, 62.3, 1377, 300 }, + [29] = { 33.7, 62.1, 1377, 300 }, + [30] = { 65.2, 62.1, 1377, 300 }, + [31] = { 46.1, 61.7, 1377, 300 }, + [32] = { 61.4, 61.6, 1377, 300 }, + [33] = { 65.5, 61.6, 1377, 300 }, + [34] = { 42.8, 61.5, 1377, 300 }, + [35] = { 41, 61.4, 1377, 300 }, + [36] = { 36, 61.3, 1377, 300 }, + [37] = { 37, 61.3, 1377, 300 }, + [38] = { 56, 61.2, 1377, 300 }, + [39] = { 39.4, 60.8, 1377, 300 }, + [40] = { 48.3, 60.4, 1377, 300 }, + [41] = { 63.7, 60.4, 1377, 300 }, + [42] = { 47.1, 60.3, 1377, 300 }, + [43] = { 59.8, 60.1, 1377, 300 }, + [44] = { 35.1, 59.9, 1377, 300 }, + [45] = { 49.3, 59.9, 1377, 300 }, + [46] = { 36.5, 59.3, 1377, 300 }, + [47] = { 43.1, 59.1, 1377, 300 }, + [48] = { 56.1, 58.9, 1377, 300 }, + [49] = { 35, 58.6, 1377, 300 }, + [50] = { 51.4, 58.6, 1377, 300 }, + [51] = { 46.5, 58.4, 1377, 300 }, + [52] = { 51.8, 58.4, 1377, 300 }, + [53] = { 37, 58.3, 1377, 300 }, + [54] = { 35.9, 57.9, 1377, 300 }, + [55] = { 53, 57.2, 1377, 300 }, + [56] = { 54.2, 57, 1377, 300 }, + [57] = { 57.1, 56.9, 1377, 300 }, + [58] = { 42.2, 56.9, 1377, 300 }, + [59] = { 44.9, 56.3, 1377, 300 }, + [60] = { 49, 56, 1377, 300 }, + [61] = { 42, 55.7, 1377, 300 }, + [62] = { 38.4, 55.6, 1377, 300 }, + [63] = { 50.4, 55.6, 1377, 300 }, + [64] = { 55.9, 55.2, 1377, 300 }, + [65] = { 35.3, 55.2, 1377, 300 }, + [66] = { 33.9, 55.2, 1377, 300 }, + [67] = { 41.9, 54.7, 1377, 300 }, + [68] = { 34.9, 54.1, 1377, 300 }, + [69] = { 40.4, 54, 1377, 300 }, + [70] = { 39.5, 53, 1377, 300 }, + [71] = { 46.9, 52.8, 1377, 300 }, + [72] = { 37.9, 52.3, 1377, 300 }, + [73] = { 43.3, 52.2, 1377, 300 }, + [74] = { 42.1, 52, 1377, 300 }, + [75] = { 36.7, 51.1, 1377, 300 }, + [76] = { 43.6, 49.9, 1377, 300 }, + [77] = { 32.2, 48.8, 1377, 300 }, + [78] = { 34.2, 47.3, 1377, 300 }, + [79] = { 33.9, 46.9, 1377, 300 }, + [80] = { 34.4, 45.4, 1377, 300 }, + [81] = { 43.4, 45, 1377, 300 }, + [82] = { 35, 44.9, 1377, 300 }, + [83] = { 25.5, 44.3, 1377, 300 }, + [84] = { 22.7, 44.2, 1377, 300 }, + [85] = { 28.5, 43.2, 1377, 300 }, + [86] = { 21.7, 43.2, 1377, 300 }, + [87] = { 26.7, 43, 1377, 300 }, + [88] = { 21.5, 42.6, 1377, 300 }, + [89] = { 32.5, 42.5, 1377, 300 }, + [90] = { 24.4, 42.5, 1377, 300 }, + [91] = { 32.9, 41.4, 1377, 300 }, + [92] = { 23.6, 41, 1377, 300 }, + [93] = { 36.4, 40.7, 1377, 300 }, + [94] = { 22.9, 40.1, 1377, 300 }, + [95] = { 21.5, 39.9, 1377, 300 }, + [96] = { 33.3, 39.8, 1377, 300 }, + [97] = { 33.2, 39.2, 1377, 300 }, + [98] = { 34.7, 38.8, 1377, 300 }, + [99] = { 28.9, 38.7, 1377, 300 }, + [100] = { 31.3, 38.4, 1377, 300 }, + [101] = { 31, 36.6, 1377, 300 }, + [102] = { 21.5, 36.5, 1377, 300 }, + [103] = { 32.3, 36.1, 1377, 300 }, + [104] = { 34.6, 35.8, 1377, 300 }, + [105] = { 32.9, 35.3, 1377, 300 }, + [106] = { 31.4, 34.4, 1377, 300 }, + [107] = { 33.9, 34.3, 1377, 300 }, + [108] = { 19.8, 34.1, 1377, 300 }, + [109] = { 32.4, 33.2, 1377, 300 }, + [110] = { 30.5, 28.9, 1377, 300 }, + [111] = { 31.1, 28.7, 1377, 300 }, + [112] = { 28.9, 27, 1377, 300 }, + }, + ["lvl"] = "56", + }, + [11737] = { + ["coords"] = { + [1] = { 9.7, 73.4, 490, 300 }, + [2] = { 44.9, 92.3, 1377, 300 }, + [3] = { 44.9, 92.2, 1377, 300 }, + [4] = { 35.3, 91.1, 1377, 300 }, + [5] = { 24.3, 89.9, 1377, 300 }, + [6] = { 37.1, 89.6, 1377, 300 }, + [7] = { 36.8, 88.8, 1377, 300 }, + [8] = { 34.9, 88.7, 1377, 300 }, + [9] = { 23.1, 88.6, 1377, 300 }, + [10] = { 38, 88.3, 1377, 300 }, + [11] = { 44.4, 88.1, 1377, 300 }, + [12] = { 44.5, 87.5, 1377, 300 }, + [13] = { 45.4, 87.2, 1377, 300 }, + [14] = { 46.6, 87.2, 1377, 300 }, + [15] = { 42.2, 87.2, 1377, 300 }, + [16] = { 38.9, 87.1, 1377, 300 }, + [17] = { 23.6, 86.8, 1377, 300 }, + [18] = { 37.2, 86.7, 1377, 300 }, + [19] = { 34.8, 86.5, 1377, 300 }, + [20] = { 64.9, 86.3, 1377, 300 }, + [21] = { 39.8, 86.3, 1377, 300 }, + [22] = { 46.7, 86.1, 1377, 300 }, + [23] = { 36, 86, 1377, 300 }, + [24] = { 23.5, 85.8, 1377, 300 }, + [25] = { 41.8, 85.8, 1377, 300 }, + [26] = { 38, 85.4, 1377, 300 }, + [27] = { 44.8, 84.9, 1377, 300 }, + [28] = { 43.7, 84.8, 1377, 300 }, + [29] = { 42.4, 84.7, 1377, 300 }, + [30] = { 46.2, 84.5, 1377, 300 }, + [31] = { 37.9, 84.5, 1377, 300 }, + [32] = { 27.9, 84.4, 1377, 300 }, + [33] = { 37, 84.3, 1377, 300 }, + [34] = { 23.4, 84.1, 1377, 300 }, + [35] = { 45.6, 84, 1377, 300 }, + [36] = { 40.6, 83.9, 1377, 300 }, + [37] = { 40.2, 83.8, 1377, 300 }, + [38] = { 41.4, 83.4, 1377, 300 }, + [39] = { 30.3, 83.4, 1377, 300 }, + [40] = { 36.4, 83, 1377, 300 }, + [41] = { 28.6, 82.9, 1377, 300 }, + [42] = { 31.8, 82.8, 1377, 300 }, + [43] = { 43.7, 82.8, 1377, 300 }, + [44] = { 27.4, 82.7, 1377, 300 }, + [45] = { 44.7, 82.6, 1377, 300 }, + [46] = { 24.5, 82.5, 1377, 300 }, + [47] = { 31.1, 82.1, 1377, 300 }, + [48] = { 37.9, 81.9, 1377, 300 }, + [49] = { 24.7, 81.7, 1377, 300 }, + [50] = { 39.9, 81.7, 1377, 300 }, + [51] = { 26.4, 81.5, 1377, 300 }, + [52] = { 37, 81.5, 1377, 300 }, + [53] = { 29.5, 81.4, 1377, 300 }, + [54] = { 42.6, 81.2, 1377, 300 }, + [55] = { 38, 81, 1377, 300 }, + [56] = { 25.1, 81, 1377, 300 }, + [57] = { 42.5, 80.6, 1377, 300 }, + [58] = { 41, 80.5, 1377, 300 }, + [59] = { 67, 80.2, 1377, 300 }, + [60] = { 24.4, 80.1, 1377, 300 }, + [61] = { 40.8, 80.1, 1377, 300 }, + [62] = { 45.6, 80, 1377, 300 }, + [63] = { 32.6, 80, 1377, 300 }, + [64] = { 40.7, 80, 1377, 300 }, + [65] = { 27.4, 80, 1377, 300 }, + [66] = { 30.2, 79.9, 1377, 300 }, + [67] = { 42.2, 79.8, 1377, 300 }, + [68] = { 34.2, 79.7, 1377, 300 }, + [69] = { 28.1, 79.3, 1377, 300 }, + [70] = { 23, 79.3, 1377, 300 }, + [71] = { 33.5, 79.2, 1377, 300 }, + [72] = { 43, 79.1, 1377, 300 }, + [73] = { 29.4, 78.6, 1377, 300 }, + [74] = { 22.6, 78.6, 1377, 300 }, + [75] = { 22.2, 78.6, 1377, 300 }, + [76] = { 35, 78.5, 1377, 300 }, + [77] = { 44.9, 78.5, 1377, 300 }, + [78] = { 25.9, 78.4, 1377, 300 }, + [79] = { 31.7, 78.4, 1377, 300 }, + [80] = { 40.7, 78.3, 1377, 300 }, + [81] = { 67.8, 78.3, 1377, 300 }, + [82] = { 36, 78.1, 1377, 300 }, + [83] = { 26.7, 77.9, 1377, 300 }, + [84] = { 34.3, 77.5, 1377, 300 }, + [85] = { 19.6, 77.4, 1377, 300 }, + [86] = { 27.4, 77.2, 1377, 300 }, + [87] = { 32.1, 77.1, 1377, 300 }, + [88] = { 23.2, 77.1, 1377, 300 }, + [89] = { 66.6, 77.1, 1377, 300 }, + [90] = { 29.3, 77, 1377, 300 }, + [91] = { 22.6, 77, 1377, 300 }, + [92] = { 25.5, 76.9, 1377, 300 }, + [93] = { 28, 76.9, 1377, 300 }, + [94] = { 20.2, 76.9, 1377, 300 }, + [95] = { 65.3, 76.8, 1377, 300 }, + [96] = { 63.5, 76.8, 1377, 300 }, + [97] = { 42.1, 76.8, 1377, 300 }, + [98] = { 25, 76.6, 1377, 300 }, + [99] = { 43.3, 76.6, 1377, 300 }, + [100] = { 67.6, 76.1, 1377, 300 }, + [101] = { 33.7, 75.9, 1377, 300 }, + [102] = { 38.5, 75.8, 1377, 300 }, + [103] = { 45.3, 75.7, 1377, 300 }, + [104] = { 36, 75.7, 1377, 300 }, + [105] = { 65.6, 75.6, 1377, 300 }, + [106] = { 31.2, 75.5, 1377, 300 }, + [107] = { 42.5, 75.5, 1377, 300 }, + [108] = { 33.2, 75.3, 1377, 300 }, + [109] = { 29.7, 75.3, 1377, 300 }, + [110] = { 27.2, 75.3, 1377, 300 }, + [111] = { 45.6, 74.6, 1377, 300 }, + [112] = { 26.1, 74.6, 1377, 300 }, + [113] = { 32.3, 74.5, 1377, 300 }, + [114] = { 30.9, 74.5, 1377, 300 }, + [115] = { 64.7, 74.3, 1377, 300 }, + [116] = { 36, 74.3, 1377, 300 }, + [117] = { 66.5, 74.3, 1377, 300 }, + [118] = { 39.2, 74.3, 1377, 300 }, + [119] = { 28.4, 74.1, 1377, 300 }, + [120] = { 43.1, 73.9, 1377, 300 }, + [121] = { 33.6, 73.9, 1377, 300 }, + [122] = { 62.7, 73.8, 1377, 300 }, + [123] = { 36.7, 73.7, 1377, 300 }, + [124] = { 34.9, 73.5, 1377, 300 }, + [125] = { 40.9, 73.3, 1377, 300 }, + [126] = { 33.1, 72.9, 1377, 300 }, + [127] = { 45.2, 72.9, 1377, 300 }, + [128] = { 65.4, 72.7, 1377, 300 }, + [129] = { 45, 72.6, 1377, 300 }, + [130] = { 31.6, 72.5, 1377, 300 }, + [131] = { 34.1, 72.5, 1377, 300 }, + [132] = { 63.4, 72.5, 1377, 300 }, + [133] = { 45.7, 71.5, 1377, 300 }, + [134] = { 33.1, 71.4, 1377, 300 }, + [135] = { 39.7, 71.3, 1377, 300 }, + [136] = { 33.4, 71.2, 1377, 300 }, + [137] = { 48.9, 70.9, 1377, 300 }, + [138] = { 35.4, 70.9, 1377, 300 }, + [139] = { 63.8, 70.4, 1377, 300 }, + [140] = { 64.7, 70.4, 1377, 300 }, + [141] = { 44.9, 70.2, 1377, 300 }, + [142] = { 38.7, 70, 1377, 300 }, + [143] = { 36.9, 70, 1377, 300 }, + [144] = { 41.4, 69.9, 1377, 300 }, + [145] = { 47.5, 69.9, 1377, 300 }, + [146] = { 35.1, 69.8, 1377, 300 }, + [147] = { 47.7, 69.8, 1377, 300 }, + [148] = { 44.6, 69.8, 1377, 300 }, + [149] = { 41.2, 69.7, 1377, 300 }, + [150] = { 48.3, 69.6, 1377, 300 }, + [151] = { 62.3, 69.3, 1377, 300 }, + [152] = { 36, 68.7, 1377, 300 }, + [153] = { 41.9, 68.7, 1377, 300 }, + [154] = { 39.5, 68.6, 1377, 300 }, + [155] = { 33, 67.8, 1377, 300 }, + [156] = { 31.8, 67.8, 1377, 300 }, + [157] = { 41.8, 67.5, 1377, 300 }, + [158] = { 39.3, 67.2, 1377, 300 }, + [159] = { 48.6, 67.2, 1377, 300 }, + [160] = { 63.8, 67.2, 1377, 300 }, + [161] = { 34, 67.1, 1377, 300 }, + [162] = { 61.5, 67.1, 1377, 300 }, + [163] = { 40.4, 66.7, 1377, 300 }, + [164] = { 64.2, 66.6, 1377, 300 }, + [165] = { 49.5, 66.6, 1377, 300 }, + [166] = { 37.1, 66.1, 1377, 300 }, + }, + ["lvl"] = "57-58", + }, + [11738] = { + ["coords"] = { + [1] = { 10.4, 42.7, 490, 300 }, + [2] = { 9.3, 42.6, 490, 300 }, + [3] = { 9.5, 41.8, 490, 300 }, + [4] = { 11.5, 41.1, 490, 300 }, + [5] = { 7.5, 40.2, 490, 300 }, + [6] = { 10.3, 39.9, 490, 300 }, + [7] = { 7.6, 39.2, 490, 300 }, + [8] = { 8.7, 37.4, 490, 300 }, + [9] = { 13.9, 37.3, 490, 300 }, + [10] = { 11, 37.1, 490, 300 }, + [11] = { 11.3, 37.1, 490, 300 }, + [12] = { 11.7, 36.8, 490, 300 }, + [13] = { 9.7, 36.3, 490, 300 }, + [14] = { 15.5, 35.5, 490, 300 }, + [15] = { 14.2, 34.3, 490, 300 }, + [16] = { 13, 33.1, 490, 300 }, + [17] = { 12.9, 33.1, 490, 300 }, + [18] = { 12, 32.9, 490, 300 }, + [19] = { 15.8, 31.5, 490, 300 }, + [20] = { 17.1, 30.9, 490, 300 }, + [21] = { 10.8, 30.7, 490, 300 }, + [22] = { 11.1, 30.2, 490, 300 }, + [23] = { 17.4, 29, 490, 300 }, + [24] = { 18.2, 28.8, 490, 300 }, + [25] = { 18.3, 27.5, 490, 300 }, + [26] = { 17.7, 27.3, 490, 300 }, + [27] = { 68.6, 45.7, 1377, 300 }, + [28] = { 67.4, 45.5, 1377, 300 }, + [29] = { 64.6, 45.3, 1377, 300 }, + [30] = { 62.1, 44.9, 1377, 300 }, + [31] = { 67.6, 44.8, 1377, 300 }, + [32] = { 69.8, 44, 1377, 300 }, + [33] = { 62.1, 43.9, 1377, 300 }, + [34] = { 62.9, 43.6, 1377, 300 }, + [35] = { 65.5, 43, 1377, 300 }, + [36] = { 60.9, 43, 1377, 300 }, + [37] = { 68.5, 42.7, 1377, 300 }, + [38] = { 44.6, 42.6, 1377, 300 }, + [39] = { 65.6, 42, 1377, 300 }, + [40] = { 43, 41.1, 1377, 300 }, + [41] = { 61.7, 41, 1377, 300 }, + [42] = { 64, 40.8, 1377, 300 }, + [43] = { 44.8, 40.7, 1377, 300 }, + [44] = { 62.9, 40.5, 1377, 300 }, + [45] = { 61.6, 40.1, 1377, 300 }, + [46] = { 66.8, 40.1, 1377, 300 }, + [47] = { 72.3, 40, 1377, 300 }, + [48] = { 69.2, 39.8, 1377, 300 }, + [49] = { 69.6, 39.8, 1377, 300 }, + [50] = { 70, 39.4, 1377, 300 }, + [51] = { 67.8, 38.9, 1377, 300 }, + [52] = { 60.4, 38.6, 1377, 300 }, + [53] = { 40.7, 38.4, 1377, 300 }, + [54] = { 42.7, 38.4, 1377, 300 }, + [55] = { 74, 38, 1377, 300 }, + [56] = { 65.7, 37.6, 1377, 300 }, + [57] = { 39.4, 37.1, 1377, 300 }, + [58] = { 44.4, 37.1, 1377, 300 }, + [59] = { 72.6, 36.8, 1377, 300 }, + [60] = { 40.5, 36.7, 1377, 300 }, + [61] = { 71.4, 35.5, 1377, 300 }, + [62] = { 71.2, 35.5, 1377, 300 }, + [63] = { 38, 35.3, 1377, 300 }, + [64] = { 70.3, 35.3, 1377, 300 }, + [65] = { 42.3, 35.1, 1377, 300 }, + [66] = { 36.3, 34, 1377, 300 }, + [67] = { 57.1, 33.8, 1377, 300 }, + [68] = { 74.3, 33.8, 1377, 300 }, + [69] = { 38.9, 33.2, 1377, 300 }, + [70] = { 75.7, 33.2, 1377, 300 }, + [71] = { 69, 32.9, 1377, 300 }, + [72] = { 39.8, 32.8, 1377, 300 }, + [73] = { 66.4, 32.7, 1377, 300 }, + [74] = { 56.5, 32.6, 1377, 300 }, + [75] = { 69.4, 32.5, 1377, 300 }, + [76] = { 63, 32.2, 1377, 300 }, + [77] = { 63.9, 32.2, 1377, 300 }, + [78] = { 68.3, 32, 1377, 300 }, + [79] = { 60.9, 31.9, 1377, 300 }, + [80] = { 58, 31.8, 1377, 300 }, + [81] = { 36.9, 31.6, 1377, 300 }, + [82] = { 35.6, 31.5, 1377, 300 }, + [83] = { 33.9, 31.5, 1377, 300 }, + [84] = { 61.1, 31.4, 1377, 300 }, + [85] = { 64.7, 31.3, 1377, 300 }, + [86] = { 40, 31.3, 1377, 300 }, + [87] = { 62.8, 31.2, 1377, 300 }, + [88] = { 76, 31.2, 1377, 300 }, + [89] = { 76.8, 30.9, 1377, 300 }, + [90] = { 53.7, 30.7, 1377, 300 }, + [91] = { 54.1, 30.3, 1377, 300 }, + [92] = { 51, 30.3, 1377, 300 }, + [93] = { 56.1, 30.2, 1377, 300 }, + [94] = { 36.7, 29.9, 1377, 300 }, + [95] = { 65, 29.7, 1377, 300 }, + [96] = { 66.9, 29.6, 1377, 300 }, + [97] = { 52.5, 29.6, 1377, 300 }, + [98] = { 76.9, 29.5, 1377, 300 }, + [99] = { 76.3, 29.3, 1377, 300 }, + [100] = { 33.1, 29.3, 1377, 300 }, + [101] = { 66.5, 29, 1377, 300 }, + [102] = { 63.9, 28.9, 1377, 300 }, + [103] = { 34.4, 28.7, 1377, 300 }, + [104] = { 53.4, 28.4, 1377, 300 }, + [105] = { 31.8, 28.3, 1377, 300 }, + [106] = { 59.9, 28.1, 1377, 300 }, + [107] = { 36, 28.1, 1377, 300 }, + [108] = { 64.6, 28, 1377, 300 }, + [109] = { 59.8, 27.9, 1377, 300 }, + [110] = { 58.5, 27.7, 1377, 300 }, + [111] = { 56.7, 27.6, 1377, 300 }, + [112] = { 36.8, 27.3, 1377, 300 }, + [113] = { 65.5, 27.2, 1377, 300 }, + [114] = { 53, 27.1, 1377, 300 }, + [115] = { 64.3, 27, 1377, 300 }, + [116] = { 56, 27, 1377, 300 }, + [117] = { 58.7, 26.9, 1377, 300 }, + [118] = { 34.5, 26.7, 1377, 300 }, + [119] = { 61.8, 26.6, 1377, 300 }, + [120] = { 31.4, 26.2, 1377, 300 }, + [121] = { 60.5, 25.7, 1377, 300 }, + [122] = { 53.5, 25.6, 1377, 300 }, + [123] = { 30.5, 25.6, 1377, 300 }, + [124] = { 62.7, 25.5, 1377, 300 }, + [125] = { 58.9, 25.4, 1377, 300 }, + [126] = { 34.1, 25.4, 1377, 300 }, + [127] = { 52.2, 24.7, 1377, 300 }, + [128] = { 54.5, 24.5, 1377, 300 }, + [129] = { 62.9, 24.1, 1377, 300 }, + [130] = { 62.8, 24.1, 1377, 300 }, + [131] = { 58, 24, 1377, 300 }, + [132] = { 36.6, 23.6, 1377, 300 }, + [133] = { 66.1, 23.4, 1377, 300 }, + [134] = { 64.4, 23.4, 1377, 300 }, + [135] = { 58.3, 22.8, 1377, 300 }, + [136] = { 55.6, 22.8, 1377, 300 }, + [137] = { 53.2, 22.7, 1377, 300 }, + [138] = { 36, 22.5, 1377, 300 }, + [139] = { 56.1, 22.4, 1377, 300 }, + [140] = { 61, 22.3, 1377, 300 }, + [141] = { 34, 21.8, 1377, 300 }, + [142] = { 34.6, 21.4, 1377, 300 }, + [143] = { 33.1, 21.1, 1377, 300 }, + [144] = { 37.7, 20.9, 1377, 300 }, + [145] = { 57.8, 20.6, 1377, 300 }, + [146] = { 59.9, 20.5, 1377, 300 }, + [147] = { 58.8, 20.5, 1377, 300 }, + [148] = { 34.4, 20.2, 1377, 300 }, + [149] = { 37.3, 19.9, 1377, 300 }, + [150] = { 62.6, 19.7, 1377, 300 }, + [151] = { 35.9, 19.6, 1377, 300 }, + [152] = { 51.3, 19.6, 1377, 300 }, + [153] = { 57.2, 19.6, 1377, 300 }, + [154] = { 53.5, 19.6, 1377, 300 }, + [155] = { 60.2, 19.5, 1377, 300 }, + [156] = { 38.7, 18.7, 1377, 300 }, + [157] = { 60.1, 18.4, 1377, 300 }, + [158] = { 63, 18.3, 1377, 300 }, + [159] = { 61.8, 18.1, 1377, 300 }, + [160] = { 35.7, 18.1, 1377, 300 }, + [161] = { 58.1, 18, 1377, 300 }, + [162] = { 61.1, 17.2, 1377, 300 }, + [163] = { 63.7, 17, 1377, 300 }, + [164] = { 55.2, 16.8, 1377, 300 }, + [165] = { 50.5, 16.8, 1377, 300 }, + [166] = { 56.6, 16.8, 1377, 300 }, + [167] = { 36.9, 16.7, 1377, 300 }, + [168] = { 63.7, 16, 1377, 300 }, + [169] = { 50.2, 15.3, 1377, 300 }, + [170] = { 61.5, 15.2, 1377, 300 }, + [171] = { 38.7, 15, 1377, 300 }, + [172] = { 54.4, 14.5, 1377, 300 }, + [173] = { 61.4, 14.5, 1377, 300 }, + [174] = { 64.1, 14.2, 1377, 300 }, + [175] = { 55.1, 13.9, 1377, 300 }, + [176] = { 51.6, 13.9, 1377, 300 }, + [177] = { 48.9, 13.4, 1377, 300 }, + [178] = { 59, 13.3, 1377, 300 }, + [179] = { 57.9, 12.5, 1377, 300 }, + [180] = { 53.7, 12.2, 1377, 300 }, + [181] = { 56.8, 11.3, 1377, 300 }, + [182] = { 56.9, 9.5, 1377, 300 }, + }, + ["lvl"] = "55-56", + }, + [11739] = { + ["coords"] = { + [1] = { 9.7, 73.4, 490, 300 }, + [2] = { 44.9, 92.3, 1377, 300 }, + [3] = { 44.9, 92.2, 1377, 300 }, + [4] = { 35.3, 91.1, 1377, 300 }, + [5] = { 24.3, 89.9, 1377, 300 }, + [6] = { 37.1, 89.6, 1377, 300 }, + [7] = { 36.8, 88.8, 1377, 300 }, + [8] = { 34.9, 88.7, 1377, 300 }, + [9] = { 23.1, 88.6, 1377, 300 }, + [10] = { 38, 88.3, 1377, 300 }, + [11] = { 44.4, 88.1, 1377, 300 }, + [12] = { 44.5, 87.5, 1377, 300 }, + [13] = { 45.4, 87.2, 1377, 300 }, + [14] = { 46.6, 87.2, 1377, 300 }, + [15] = { 42.2, 87.2, 1377, 300 }, + [16] = { 38.9, 87.1, 1377, 300 }, + [17] = { 23.6, 86.8, 1377, 300 }, + [18] = { 37.2, 86.7, 1377, 300 }, + [19] = { 34.8, 86.5, 1377, 300 }, + [20] = { 64.9, 86.3, 1377, 300 }, + [21] = { 39.8, 86.3, 1377, 300 }, + [22] = { 46.7, 86.1, 1377, 300 }, + [23] = { 36, 86, 1377, 300 }, + [24] = { 23.5, 85.8, 1377, 300 }, + [25] = { 41.8, 85.8, 1377, 300 }, + [26] = { 38, 85.4, 1377, 300 }, + [27] = { 44.8, 84.9, 1377, 300 }, + [28] = { 43.7, 84.8, 1377, 300 }, + [29] = { 42.4, 84.7, 1377, 300 }, + [30] = { 46.2, 84.5, 1377, 300 }, + [31] = { 37.9, 84.5, 1377, 300 }, + [32] = { 27.9, 84.4, 1377, 300 }, + [33] = { 37, 84.3, 1377, 300 }, + [34] = { 23.4, 84.1, 1377, 300 }, + [35] = { 45.6, 84, 1377, 300 }, + [36] = { 40.6, 83.9, 1377, 300 }, + [37] = { 40.2, 83.8, 1377, 300 }, + [38] = { 41.4, 83.4, 1377, 300 }, + [39] = { 30.3, 83.4, 1377, 300 }, + [40] = { 36.4, 83, 1377, 300 }, + [41] = { 28.6, 82.9, 1377, 300 }, + [42] = { 31.8, 82.8, 1377, 300 }, + [43] = { 43.7, 82.8, 1377, 300 }, + [44] = { 27.4, 82.7, 1377, 300 }, + [45] = { 44.7, 82.6, 1377, 300 }, + [46] = { 24.5, 82.5, 1377, 300 }, + [47] = { 31.1, 82.1, 1377, 300 }, + [48] = { 37.9, 81.9, 1377, 300 }, + [49] = { 24.7, 81.7, 1377, 300 }, + [50] = { 39.9, 81.7, 1377, 300 }, + [51] = { 26.4, 81.5, 1377, 300 }, + [52] = { 37, 81.5, 1377, 300 }, + [53] = { 29.5, 81.4, 1377, 300 }, + [54] = { 42.6, 81.2, 1377, 300 }, + [55] = { 38, 81, 1377, 300 }, + [56] = { 25.1, 81, 1377, 300 }, + [57] = { 42.5, 80.6, 1377, 300 }, + [58] = { 41, 80.5, 1377, 300 }, + [59] = { 67, 80.2, 1377, 300 }, + [60] = { 24.4, 80.1, 1377, 300 }, + [61] = { 40.8, 80.1, 1377, 300 }, + [62] = { 45.6, 80, 1377, 300 }, + [63] = { 32.6, 80, 1377, 300 }, + [64] = { 40.7, 80, 1377, 300 }, + [65] = { 27.4, 80, 1377, 300 }, + [66] = { 30.2, 79.9, 1377, 300 }, + [67] = { 42.2, 79.8, 1377, 300 }, + [68] = { 34.2, 79.7, 1377, 300 }, + [69] = { 28.1, 79.3, 1377, 300 }, + [70] = { 23, 79.3, 1377, 300 }, + [71] = { 33.5, 79.2, 1377, 300 }, + [72] = { 43, 79.1, 1377, 300 }, + [73] = { 29.4, 78.6, 1377, 300 }, + [74] = { 22.6, 78.6, 1377, 300 }, + [75] = { 22.2, 78.6, 1377, 300 }, + [76] = { 35, 78.5, 1377, 300 }, + [77] = { 44.9, 78.5, 1377, 300 }, + [78] = { 25.9, 78.4, 1377, 300 }, + [79] = { 31.7, 78.4, 1377, 300 }, + [80] = { 40.7, 78.3, 1377, 300 }, + [81] = { 67.8, 78.3, 1377, 300 }, + [82] = { 36, 78.1, 1377, 300 }, + [83] = { 26.7, 77.9, 1377, 300 }, + [84] = { 34.3, 77.5, 1377, 300 }, + [85] = { 19.6, 77.4, 1377, 300 }, + [86] = { 27.4, 77.2, 1377, 300 }, + [87] = { 32.1, 77.1, 1377, 300 }, + [88] = { 23.2, 77.1, 1377, 300 }, + [89] = { 66.6, 77.1, 1377, 300 }, + [90] = { 29.3, 77, 1377, 300 }, + [91] = { 22.6, 77, 1377, 300 }, + [92] = { 25.5, 76.9, 1377, 300 }, + [93] = { 28, 76.9, 1377, 300 }, + [94] = { 20.2, 76.9, 1377, 300 }, + [95] = { 65.3, 76.8, 1377, 300 }, + [96] = { 63.5, 76.8, 1377, 300 }, + [97] = { 42.1, 76.8, 1377, 300 }, + [98] = { 25, 76.6, 1377, 300 }, + [99] = { 43.3, 76.6, 1377, 300 }, + [100] = { 67.6, 76.1, 1377, 300 }, + [101] = { 33.7, 75.9, 1377, 300 }, + [102] = { 38.5, 75.8, 1377, 300 }, + [103] = { 45.3, 75.7, 1377, 300 }, + [104] = { 36, 75.7, 1377, 300 }, + [105] = { 65.6, 75.6, 1377, 300 }, + [106] = { 31.2, 75.5, 1377, 300 }, + [107] = { 42.5, 75.5, 1377, 300 }, + [108] = { 33.2, 75.3, 1377, 300 }, + [109] = { 29.7, 75.3, 1377, 300 }, + [110] = { 27.2, 75.3, 1377, 300 }, + [111] = { 45.6, 74.6, 1377, 300 }, + [112] = { 26.1, 74.6, 1377, 300 }, + [113] = { 32.3, 74.5, 1377, 300 }, + [114] = { 30.9, 74.5, 1377, 300 }, + [115] = { 64.7, 74.3, 1377, 300 }, + [116] = { 36, 74.3, 1377, 300 }, + [117] = { 66.5, 74.3, 1377, 300 }, + [118] = { 39.2, 74.3, 1377, 300 }, + [119] = { 28.4, 74.1, 1377, 300 }, + [120] = { 43.1, 73.9, 1377, 300 }, + [121] = { 33.6, 73.9, 1377, 300 }, + [122] = { 62.7, 73.8, 1377, 300 }, + [123] = { 36.7, 73.7, 1377, 300 }, + [124] = { 34.9, 73.5, 1377, 300 }, + [125] = { 40.9, 73.3, 1377, 300 }, + [126] = { 33.1, 72.9, 1377, 300 }, + [127] = { 45.2, 72.9, 1377, 300 }, + [128] = { 65.4, 72.7, 1377, 300 }, + [129] = { 45, 72.6, 1377, 300 }, + [130] = { 31.6, 72.5, 1377, 300 }, + [131] = { 34.1, 72.5, 1377, 300 }, + [132] = { 63.4, 72.5, 1377, 300 }, + [133] = { 45.7, 71.5, 1377, 300 }, + [134] = { 33.1, 71.4, 1377, 300 }, + [135] = { 39.7, 71.3, 1377, 300 }, + [136] = { 33.4, 71.2, 1377, 300 }, + [137] = { 48.9, 70.9, 1377, 300 }, + [138] = { 35.4, 70.9, 1377, 300 }, + [139] = { 63.8, 70.4, 1377, 300 }, + [140] = { 64.7, 70.4, 1377, 300 }, + [141] = { 44.9, 70.2, 1377, 300 }, + [142] = { 38.7, 70, 1377, 300 }, + [143] = { 36.9, 70, 1377, 300 }, + [144] = { 41.4, 69.9, 1377, 300 }, + [145] = { 47.5, 69.9, 1377, 300 }, + [146] = { 35.1, 69.8, 1377, 300 }, + [147] = { 47.7, 69.8, 1377, 300 }, + [148] = { 44.6, 69.8, 1377, 300 }, + [149] = { 41.2, 69.7, 1377, 300 }, + [150] = { 48.3, 69.6, 1377, 300 }, + [151] = { 62.3, 69.3, 1377, 300 }, + [152] = { 36, 68.7, 1377, 300 }, + [153] = { 41.9, 68.7, 1377, 300 }, + [154] = { 39.5, 68.6, 1377, 300 }, + [155] = { 33, 67.8, 1377, 300 }, + [156] = { 31.8, 67.8, 1377, 300 }, + [157] = { 41.8, 67.5, 1377, 300 }, + [158] = { 39.3, 67.2, 1377, 300 }, + [159] = { 48.6, 67.2, 1377, 300 }, + [160] = { 63.8, 67.2, 1377, 300 }, + [161] = { 34, 67.1, 1377, 300 }, + [162] = { 61.5, 67.1, 1377, 300 }, + [163] = { 40.4, 66.7, 1377, 300 }, + [164] = { 64.2, 66.6, 1377, 300 }, + [165] = { 49.5, 66.6, 1377, 300 }, + [166] = { 37.1, 66.1, 1377, 300 }, + }, + ["lvl"] = "57-58", + }, + [11740] = { + ["coords"] = { + [1] = { 9.4, 44, 490, 300 }, + [2] = { 7.7, 41.7, 490, 300 }, + [3] = { 10, 38.8, 490, 300 }, + [4] = { 11, 37.5, 490, 300 }, + [5] = { 13.2, 35.7, 490, 300 }, + [6] = { 14.8, 34.3, 490, 300 }, + [7] = { 12.1, 30.4, 490, 300 }, + [8] = { 10.6, 28.8, 490, 300 }, + [9] = { 12.4, 28.3, 490, 300 }, + [10] = { 67.5, 47.1, 1377, 300 }, + [11] = { 65.7, 44.6, 1377, 300 }, + [12] = { 64, 44.1, 1377, 300 }, + [13] = { 60.2, 41.7, 1377, 300 }, + [14] = { 68.2, 41.5, 1377, 300 }, + [15] = { 65, 40.4, 1377, 300 }, + [16] = { 69.2, 40.1, 1377, 300 }, + [17] = { 42, 39.3, 1377, 300 }, + [18] = { 63.8, 39.3, 1377, 300 }, + [19] = { 45.1, 38.9, 1377, 300 }, + [20] = { 71.6, 38.3, 1377, 300 }, + [21] = { 62.4, 37.8, 1377, 300 }, + [22] = { 42.6, 37, 1377, 300 }, + [23] = { 73.2, 36.8, 1377, 300 }, + [24] = { 44.7, 36.6, 1377, 300 }, + [25] = { 36.9, 35.3, 1377, 300 }, + [26] = { 39.3, 34.9, 1377, 300 }, + [27] = { 38.2, 34.3, 1377, 300 }, + [28] = { 36.9, 33.3, 1377, 300 }, + [29] = { 60.4, 33.1, 1377, 300 }, + [30] = { 60.7, 33, 1377, 300 }, + [31] = { 61.7, 32.8, 1377, 300 }, + [32] = { 55.2, 32.6, 1377, 300 }, + [33] = { 70.4, 32.6, 1377, 300 }, + [34] = { 34.5, 32.6, 1377, 300 }, + [35] = { 54.1, 32.6, 1377, 300 }, + [36] = { 51.4, 32, 1377, 300 }, + [37] = { 58.9, 31.3, 1377, 300 }, + [38] = { 66.3, 31.2, 1377, 300 }, + [39] = { 54.8, 31.1, 1377, 300 }, + [40] = { 68.8, 30.9, 1377, 300 }, + [41] = { 70.7, 30.4, 1377, 300 }, + [42] = { 58.4, 29.7, 1377, 300 }, + [43] = { 34.1, 29.6, 1377, 300 }, + [44] = { 55.7, 28.6, 1377, 300 }, + [45] = { 38.9, 28.5, 1377, 300 }, + [46] = { 37.8, 28.5, 1377, 300 }, + [47] = { 54.1, 28.1, 1377, 300 }, + [48] = { 62.5, 28, 1377, 300 }, + [49] = { 59.9, 26.7, 1377, 300 }, + [50] = { 31.4, 25.8, 1377, 300 }, + [51] = { 57.2, 25.7, 1377, 300 }, + [52] = { 32.6, 24.6, 1377, 300 }, + [53] = { 56.4, 23.9, 1377, 300 }, + [54] = { 63.7, 22.7, 1377, 300 }, + [55] = { 58.6, 22.5, 1377, 300 }, + [56] = { 56.7, 22.3, 1377, 300 }, + [57] = { 61.8, 21.9, 1377, 300 }, + [58] = { 64.4, 21.7, 1377, 300 }, + [59] = { 52.7, 21, 1377, 300 }, + [60] = { 54, 21, 1377, 300 }, + [61] = { 50.8, 19, 1377, 300 }, + [62] = { 51.7, 18.4, 1377, 300 }, + [63] = { 34.8, 18.3, 1377, 300 }, + [64] = { 55.9, 17.7, 1377, 300 }, + [65] = { 59.4, 17.7, 1377, 300 }, + [66] = { 53.9, 17.6, 1377, 300 }, + [67] = { 52.9, 16.9, 1377, 300 }, + [68] = { 36.5, 15.9, 1377, 300 }, + [69] = { 60.3, 15.8, 1377, 300 }, + [70] = { 59, 15.7, 1377, 300 }, + [71] = { 52.2, 14.7, 1377, 300 }, + [72] = { 56, 13.8, 1377, 300 }, + [73] = { 60.6, 12.8, 1377, 300 }, + [74] = { 53.6, 12.6, 1377, 300 }, + [75] = { 57, 12.5, 1377, 300 }, + [76] = { 54.7, 11, 1377, 300 }, + }, + ["lvl"] = "55-56", + }, + [11741] = { + ["coords"] = { + [1] = { 36.2, 66, 1377, 300 }, + [2] = { 52.2, 65.7, 1377, 300 }, + [3] = { 33.1, 65.7, 1377, 300 }, + [4] = { 42.3, 64.4, 1377, 300 }, + [5] = { 53.3, 64.4, 1377, 300 }, + [6] = { 63.6, 63.1, 1377, 300 }, + [7] = { 48.2, 62.9, 1377, 300 }, + [8] = { 37.8, 62.9, 1377, 300 }, + [9] = { 53.2, 62.7, 1377, 300 }, + [10] = { 63, 62, 1377, 300 }, + [11] = { 32.9, 61.6, 1377, 300 }, + [12] = { 38.9, 61.3, 1377, 300 }, + [13] = { 55.1, 61.3, 1377, 300 }, + [14] = { 52.9, 61.2, 1377, 300 }, + [15] = { 41.9, 61.2, 1377, 300 }, + [16] = { 53.7, 60.6, 1377, 300 }, + [17] = { 38, 60.1, 1377, 300 }, + [18] = { 33.3, 59.9, 1377, 300 }, + [19] = { 55.1, 59.8, 1377, 300 }, + [20] = { 50.7, 59.1, 1377, 300 }, + [21] = { 57.8, 59, 1377, 300 }, + [22] = { 48.5, 58.5, 1377, 300 }, + [23] = { 51.9, 57.2, 1377, 300 }, + [24] = { 49, 56.9, 1377, 300 }, + [25] = { 39.7, 56.9, 1377, 300 }, + [26] = { 48.3, 56.9, 1377, 300 }, + [27] = { 37.9, 56.9, 1377, 300 }, + [28] = { 55.1, 56.8, 1377, 300 }, + [29] = { 34.9, 55.8, 1377, 300 }, + [30] = { 37.7, 55.6, 1377, 300 }, + [31] = { 48, 54.8, 1377, 300 }, + [32] = { 38.7, 54.2, 1377, 300 }, + [33] = { 49.5, 53.5, 1377, 300 }, + [34] = { 40.8, 52.7, 1377, 300 }, + [35] = { 34.8, 52.1, 1377, 300 }, + [36] = { 43.8, 51.3, 1377, 300 }, + [37] = { 39.5, 50.8, 1377, 300 }, + [38] = { 39.3, 50.3, 1377, 300 }, + [39] = { 40.9, 49.3, 1377, 300 }, + [40] = { 33.1, 48.7, 1377, 300 }, + [41] = { 44.2, 48.2, 1377, 300 }, + [42] = { 20, 47.3, 1377, 300 }, + [43] = { 30.7, 46.4, 1377, 300 }, + [44] = { 30.2, 45.4, 1377, 300 }, + [45] = { 29.5, 44.5, 1377, 300 }, + [46] = { 28.3, 44.1, 1377, 300 }, + [47] = { 33.2, 44.1, 1377, 300 }, + [48] = { 34, 43.7, 1377, 300 }, + [49] = { 31, 43.5, 1377, 300 }, + [50] = { 30.1, 43.4, 1377, 300 }, + [51] = { 20.6, 42.6, 1377, 300 }, + [52] = { 28, 41.4, 1377, 300 }, + [53] = { 29.4, 41.1, 1377, 300 }, + [54] = { 32.8, 41.1, 1377, 300 }, + [55] = { 25.3, 41, 1377, 300 }, + [56] = { 35, 40.4, 1377, 300 }, + [57] = { 30.6, 39.6, 1377, 300 }, + [58] = { 21.5, 39.3, 1377, 300 }, + [59] = { 28.3, 39.2, 1377, 300 }, + [60] = { 36.3, 38.9, 1377, 300 }, + [61] = { 34.3, 37.9, 1377, 300 }, + [62] = { 36.9, 37.1, 1377, 300 }, + [63] = { 21, 36.8, 1377, 300 }, + [64] = { 32.4, 31.3, 1377, 300 }, + [65] = { 26.6, 27.8, 1377, 300 }, + [66] = { 28.2, 27.8, 1377, 300 }, + }, + ["lvl"] = "57-58", + }, + [11742] = { + ["coords"] = {}, + ["lvl"] = "54-55", + }, + [11743] = { + ["coords"] = {}, + ["lvl"] = "54-55", + }, + [11744] = { + ["coords"] = { + [1] = { 58.9, 84.3, 357, 300 }, + [2] = { 58.5, 84, 357, 300 }, + [3] = { 59.2, 83.8, 357, 300 }, + [4] = { 10.5, 30.3, 490, 300 }, + [5] = { 41.4, 37.1, 1377, 300 }, + [6] = { 52.2, 33.7, 1377, 300 }, + [7] = { 68.7, 32.6, 1377, 300 }, + [8] = { 18.1, 32.5, 1377, 300 }, + [9] = { 19.9, 32, 1377, 300 }, + [10] = { 62.7, 31.3, 1377, 300 }, + [11] = { 20.4, 31.2, 1377, 300 }, + [12] = { 21.6, 29.8, 1377, 300 }, + [13] = { 19.8, 29.7, 1377, 300 }, + [14] = { 18, 29.5, 1377, 300 }, + [15] = { 18.7, 28.5, 1377, 300 }, + [16] = { 20.6, 28.3, 1377, 300 }, + [17] = { 22.8, 28.2, 1377, 300 }, + [18] = { 23.6, 27, 1377, 300 }, + [19] = { 19.7, 27, 1377, 300 }, + [20] = { 21.7, 26.9, 1377, 300 }, + [21] = { 17.1, 26.7, 1377, 300 }, + [22] = { 17.6, 26.6, 1377, 300 }, + [23] = { 18.8, 25.6, 1377, 300 }, + [24] = { 20.7, 25.5, 1377, 300 }, + [25] = { 34.7, 25.5, 1377, 300 }, + [26] = { 22.5, 25.4, 1377, 300 }, + [27] = { 17, 24.9, 1377, 300 }, + [28] = { 21.7, 24.1, 1377, 300 }, + [29] = { 17.6, 23.6, 1377, 300 }, + [30] = { 56.1, 23.5, 1377, 300 }, + [31] = { 20.5, 23.1, 1377, 300 }, + [32] = { 22.4, 22.6, 1377, 300 }, + [33] = { 28.5, 22.5, 1377, 300 }, + [34] = { 19, 22.2, 1377, 300 }, + [35] = { 19.7, 21.3, 1377, 300 }, + [36] = { 21.7, 21.3, 1377, 300 }, + [37] = { 29.4, 21.2, 1377, 300 }, + [38] = { 67.4, 21.1, 1377, 300 }, + [39] = { 18.7, 19.9, 1377, 300 }, + [40] = { 28.6, 19.8, 1377, 300 }, + [41] = { 30.2, 19.7, 1377, 300 }, + [42] = { 29.3, 18.4, 1377, 300 }, + [43] = { 31.2, 18.3, 1377, 300 }, + [44] = { 19.9, 18.2, 1377, 300 }, + [45] = { 27.5, 18.1, 1377, 300 }, + [46] = { 28.4, 17.5, 1377, 300 }, + [47] = { 61.9, 17, 1377, 300 }, + [48] = { 30.3, 16.9, 1377, 300 }, + [49] = { 32.2, 16.9, 1377, 300 }, + [50] = { 31.2, 16, 1377, 300 }, + [51] = { 29.3, 15.5, 1377, 300 }, + [52] = { 33.1, 15.4, 1377, 300 }, + [53] = { 30.3, 14.1, 1377, 300 }, + [54] = { 32.2, 14.1, 1377, 300 }, + [55] = { 34.2, 13.5, 1377, 300 }, + [56] = { 33.3, 12.9, 1377, 300 }, + [57] = { 34.7, 12.4, 1377, 300 }, + }, + ["lvl"] = "55-57", + }, + [11745] = { + ["coords"] = { + [1] = { 32.1, 83.2, 1377, 300 }, + [2] = { 43.4, 78.7, 1377, 300 }, + [3] = { 45, 62.2, 1377, 300 }, + [4] = { 36.4, 59.6, 1377, 300 }, + [5] = { 47.3, 59.5, 1377, 300 }, + }, + ["lvl"] = "57-59", + }, + [11746] = { + ["coords"] = { + [1] = { 52.8, 83.3, 357, 300 }, + [2] = { 54.1, 83.1, 357, 300 }, + [3] = { 55.3, 83, 357, 300 }, + [4] = { 52.6, 82.5, 357, 300 }, + [5] = { 53.6, 82.4, 357, 300 }, + [6] = { 54.4, 82.4, 357, 300 }, + [7] = { 52.9, 81.8, 357, 300 }, + [8] = { 46.4, 53.4, 1377, 300 }, + [9] = { 21.5, 40.3, 1377, 300 }, + [10] = { 22.6, 19.6, 1377, 300 }, + [11] = { 23.5, 18.1, 1377, 300 }, + [12] = { 21.5, 17.8, 1377, 300 }, + [13] = { 22.7, 17.4, 1377, 300 }, + [14] = { 18.7, 17.1, 1377, 300 }, + [15] = { 20.7, 16.8, 1377, 300 }, + [16] = { 21.8, 15.8, 1377, 300 }, + [17] = { 27, 15.5, 1377, 300 }, + [18] = { 19.8, 15.5, 1377, 300 }, + [19] = { 25.5, 15.4, 1377, 300 }, + [20] = { 23.5, 15.3, 1377, 300 }, + [21] = { 22.7, 14.5, 1377, 300 }, + [22] = { 26.4, 14.2, 1377, 300 }, + [23] = { 24.6, 14, 1377, 300 }, + [24] = { 28.3, 14, 1377, 300 }, + [25] = { 20.7, 13.9, 1377, 300 }, + [26] = { 21.8, 12.7, 1377, 300 }, + [27] = { 25.5, 12.5, 1377, 300 }, + [28] = { 22, 11.6, 1377, 300 }, + [29] = { 24.5, 11.1, 1377, 300 }, + [30] = { 26.9, 11, 1377, 300 }, + [31] = { 21.1, 10.6, 1377, 300 }, + [32] = { 21.6, 10, 1377, 300 }, + [33] = { 23.5, 9.8, 1377, 300 }, + [34] = { 25.2, 9.7, 1377, 300 }, + [35] = { 22.2, 8.6, 1377, 300 }, + }, + ["lvl"] = "56-58", + }, + [11747] = { + ["coords"] = { + [1] = { 24.2, 90, 1377, 300 }, + [2] = { 48.3, 89.8, 1377, 300 }, + [3] = { 38.9, 67.6, 1377, 300 }, + }, + ["lvl"] = "58-59", + }, + [11748] = { + ["coords"] = { + [1] = { 46.1, 90.1, 10, 300 }, + [2] = { 41.2, 4, 33, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [11749] = { + ["coords"] = { + [1] = { 69.9, 71.7, 331, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "57", + }, + [11750] = { + ["coords"] = { + [1] = { 71.5, 6.7, 130, 413 }, + [2] = { 44.6, 62.3, 1497, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "8", + }, + [11751] = { + ["coords"] = { + [1] = { 58.3, 12.9, 618, 500 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [11752] = { + ["coords"] = { + [1] = { 74.9, 44, 357, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "47", + }, + [11753] = { + ["coords"] = { + [1] = { 61.2, 38.6, 618, 333 }, + }, + ["lvl"] = "58", + }, + [11754] = { + ["coords"] = { + [1] = { 61.7, 38.5, 618, 333 }, + }, + ["lvl"] = "60", + }, + [11755] = { + ["coords"] = { + [1] = { 61.1, 38.4, 618, 333 }, + }, + ["lvl"] = "54", + }, + [11756] = { + ["coords"] = { + [1] = { 51.1, 27.9, 440, 300 }, + }, + ["lvl"] = "35", + }, + [11757] = { + ["coords"] = { + [1] = { 61.9, 38.2, 618, 333 }, + }, + ["lvl"] = "42", + }, + [11758] = { + ["coords"] = { + [1] = { 52.8, 27.4, 440, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "48", + }, + [11776] = { + ["coords"] = { + [1] = { 86.2, 79.6, 36, 300 }, + [2] = { 1.4, 56.6, 47, 300 }, + [3] = { 84.3, 18.1, 267, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [11777] = { + ["coords"] = { + [1] = { 28.9, 58.3, 405, 300 }, + [2] = { 28, 58.1, 405, 300 }, + [3] = { 27.2, 57.7, 405, 300 }, + [4] = { 26.6, 57, 405, 300 }, + [5] = { 29.8, 56.2, 405, 300 }, + [6] = { 28.1, 55.6, 405, 300 }, + [7] = { 27.5, 54.2, 405, 300 }, + [8] = { 26.6, 53.4, 405, 300 }, + }, + ["lvl"] = "40-41", + ["rnk"] = "1", + }, + [11778] = { + ["coords"] = { + [1] = { 27.7, 58.4, 405, 300 }, + [2] = { 27.9, 57.2, 405, 300 }, + [3] = { 29.6, 56.1, 405, 300 }, + [4] = { 27.1, 55.2, 405, 300 }, + [5] = { 28.4, 54.4, 405, 300 }, + [6] = { 26.7, 54.2, 405, 300 }, + [7] = { 27, 53.7, 405, 300 }, + }, + ["lvl"] = "41-42", + ["rnk"] = "1", + }, + [11779] = { + ["coords"] = {}, + ["lvl"] = "38", + ["rnk"] = "1", + }, + [11780] = { + ["coords"] = {}, + ["lvl"] = "36", + ["rnk"] = "1", + }, + [11781] = { + ["coords"] = { + [1] = { 32.4, 65.4, 405, 300 }, + [2] = { 29.6, 65.1, 405, 300 }, + }, + ["lvl"] = "40-41", + ["rnk"] = "1", + }, + [11782] = { + ["coords"] = { + [1] = { 35.1, 63.2, 405, 300 }, + [2] = { 35.7, 61.6, 405, 300 }, + }, + ["lvl"] = "42-43", + ["rnk"] = "1", + }, + [11783] = { + ["coords"] = {}, + ["lvl"] = "46", + }, + [11784] = { + ["coords"] = {}, + ["lvl"] = "47-48", + ["rnk"] = "1", + }, + [11785] = { + ["coords"] = { + [1] = { 34, 68.4, 405, 300 }, + [2] = { 33.2, 67.7, 405, 300 }, + [3] = { 34.4, 66.7, 405, 300 }, + [4] = { 32.6, 66.6, 405, 300 }, + [5] = { 33.7, 66.3, 405, 300 }, + [6] = { 30.2, 65.3, 405, 300 }, + [7] = { 31.5, 64.6, 405, 300 }, + [8] = { 35, 64.2, 405, 300 }, + [9] = { 35.1, 64.1, 405, 300 }, + [10] = { 34.2, 63.5, 405, 300 }, + [11] = { 33.9, 62.1, 405, 300 }, + [12] = { 35.2, 61.1, 405, 300 }, + [13] = { 33.8, 59.8, 405, 300 }, + [14] = { 35, 58.9, 405, 300 }, + }, + ["lvl"] = "40-41", + ["rnk"] = "1", + }, + [11786] = { + ["coords"] = { + [1] = { 29.7, 65.4, 405, 300 }, + [2] = { 32.5, 63.7, 405, 300 }, + [3] = { 36.6, 62.8, 405, 300 }, + [4] = { 34.7, 62.7, 405, 300 }, + [5] = { 34.9, 61.3, 405, 300 }, + [6] = { 36.4, 61.2, 405, 300 }, + [7] = { 34, 60.9, 405, 300 }, + [8] = { 36.6, 60.8, 405, 300 }, + }, + ["lvl"] = "41-42", + ["rnk"] = "1", + }, + [11787] = { + ["coords"] = { + [1] = { 29.7, 58.5, 405, 300 }, + [2] = { 29.6, 57.3, 405, 300 }, + [3] = { 29.1, 57.3, 405, 300 }, + [4] = { 28.8, 56.9, 405, 300 }, + [5] = { 28.2, 56.4, 405, 300 }, + [6] = { 29.4, 56.4, 405, 300 }, + [7] = { 26.7, 56.4, 405, 300 }, + [8] = { 28.6, 56, 405, 300 }, + [9] = { 27.7, 55.2, 405, 300 }, + [10] = { 28.3, 55, 405, 300 }, + [11] = { 27.3, 54.9, 405, 300 }, + [12] = { 27.5, 54.2, 405, 300 }, + }, + ["lvl"] = "40-41", + ["rnk"] = "1", + }, + [11788] = { + ["coords"] = { + [1] = { 28.3, 57.2, 405, 300 }, + [2] = { 27.9, 56.3, 405, 300 }, + [3] = { 27.3, 55.9, 405, 300 }, + [4] = { 29.3, 55.8, 405, 300 }, + [5] = { 29.5, 55.4, 405, 300 }, + [6] = { 26.6, 55.3, 405, 300 }, + [7] = { 26.7, 54.9, 405, 300 }, + [8] = { 28.6, 53.3, 405, 300 }, + [9] = { 29.7, 58.5, 405, 300 }, + [10] = { 28.8, 56.9, 405, 300 }, + }, + ["lvl"] = "41-42", + ["rnk"] = "1", + }, + [11789] = { + ["coords"] = {}, + ["lvl"] = "46-48", + }, + [11790] = { + ["coords"] = {}, + ["lvl"] = "43-44", + ["rnk"] = "1", + }, + [11791] = { + ["coords"] = {}, + ["lvl"] = "44-45", + ["rnk"] = "1", + }, + [11792] = { + ["coords"] = {}, + ["lvl"] = "42-44", + ["rnk"] = "1", + }, + [11793] = { + ["coords"] = {}, + ["lvl"] = "45-46", + ["rnk"] = "1", + }, + [11794] = { + ["coords"] = {}, + ["lvl"] = "46-47", + ["rnk"] = "1", + }, + [11795] = { + ["coords"] = { + [1] = { 51.8, 32.6, 493, 300 }, + }, + ["lvl"] = "60", + }, + [11796] = { + ["coords"] = { + [1] = { 48.3, 31.6, 493, 300 }, + }, + ["lvl"] = "60", + }, + [11797] = { + ["coords"] = { + [1] = { 49.8, 43.2, 493, 300 }, + }, + ["lvl"] = "60", + }, + [11798] = { + ["coords"] = { + [1] = { 44.3, 45.9, 493, 300 }, + }, + ["lvl"] = "60", + }, + [11799] = { + ["coords"] = { + [1] = { 36.5, 40.1, 493, 300 }, + }, + ["lvl"] = "60", + }, + [11800] = { + ["coords"] = { + [1] = { 44.1, 45.2, 493, 300 }, + }, + ["lvl"] = "60", + }, + [11801] = { + ["coords"] = { + [1] = { 51.7, 45.1, 493, 300 }, + }, + ["lvl"] = "60", + }, + [11802] = { + ["coords"] = { + [1] = { 56.2, 30.6, 493, 300 }, + }, + ["lvl"] = "60", + }, + [11803] = { + ["coords"] = { + [1] = { 16, 85.8, 1377, 300 }, + }, + ["lvl"] = "60", + }, + [11804] = { + ["coords"] = { + [1] = { 40.4, 41.6, 1377, 300 }, + }, + ["lvl"] = "60", + }, + [11805] = { + ["coords"] = { + [1] = { 23.1, 16.7, 490, 300 }, + [2] = { 82.1, 18.1, 1377, 300 }, + }, + ["lvl"] = "55", + }, + [11806] = { + ["coords"] = { + [1] = { 26.6, 36.7, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [11807] = { + ["coords"] = { + [1] = { 31.4, 44.4, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [11808] = { + ["coords"] = { + [1] = { 49.3, 30.3, 618, 333 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [11809] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "26", + }, + [11810] = { + ["coords"] = { + [1] = { 16.3, 47.2, 47, 350 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [11811] = { + ["coords"] = { + [1] = { 65.2, 18.6, 440, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "45", + }, + [11812] = { + ["coords"] = { + [1] = { 16.4, 47.6, 47, 350 }, + }, + ["fac"] = "A", + ["lvl"] = "43", + }, + [11813] = { + ["coords"] = { + [1] = { 15.9, 47, 47, 350 }, + }, + ["fac"] = "A", + ["lvl"] = "41", + }, + [11814] = { + ["coords"] = { + [1] = { 56.1, 74.2, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "12", + }, + [11815] = { + ["coords"] = { + [1] = { 68.1, 23.7, 148, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "56", + }, + [11816] = { + ["coords"] = { + [1] = { 68.1, 17.9, 148, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "12", + }, + [11817] = { + ["coords"] = { + [1] = { 69.1, 19.7, 148, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [11818] = { + ["coords"] = { + [1] = { 76.3, 42.6, 357, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "42", + }, + [11819] = { + ["coords"] = { + [1] = { 69, 19.6, 148, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "58", + }, + [11820] = { + ["coords"] = { + [1] = { 71.4, 67.6, 331, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "28", + }, + [11821] = { + ["coords"] = { + [1] = { 73.2, 94.9, 406, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [11822] = { + ["coords"] = { + [1] = { 61.1, 66.5, 493, 300 }, + [2] = { 71.4, 62, 493, 300 }, + [3] = { 71.6, 61.4, 493, 300 }, + [4] = { 65.8, 60.9, 493, 300 }, + [5] = { 65.8, 60.1, 493, 300 }, + [6] = { 65.8, 59.8, 493, 300 }, + [7] = { 71.3, 56.6, 493, 300 }, + [8] = { 71, 56.1, 493, 300 }, + [9] = { 68.4, 52.7, 493, 300 }, + [10] = { 68.8, 52.4, 493, 300 }, + [11] = { 44.7, 45.7, 493, 300 }, + [12] = { 45.2, 45.2, 493, 300 }, + [13] = { 44.5, 44.9, 493, 300 }, + [14] = { 45, 44.7, 493, 300 }, + [15] = { 51.4, 44.2, 493, 300 }, + [16] = { 51.9, 44.1, 493, 300 }, + [17] = { 46, 43.3, 493, 300 }, + [18] = { 35.3, 42.8, 493, 300 }, + [19] = { 36.6, 42.5, 493, 300 }, + [20] = { 46, 42.5, 493, 300 }, + [21] = { 36.8, 42.1, 493, 300 }, + [22] = { 51, 40.5, 493, 300 }, + [23] = { 45, 39.8, 493, 300 }, + [24] = { 51.7, 39.2, 493, 300 }, + [25] = { 48.1, 37.3, 493, 300 }, + [26] = { 48.5, 37.2, 493, 300 }, + [27] = { 42.9, 35.3, 493, 300 }, + [28] = { 51.5, 34.9, 493, 300 }, + [29] = { 52.8, 34.8, 493, 300 }, + [30] = { 42.9, 34.4, 493, 300 }, + [31] = { 48.3, 33.5, 493, 300 }, + [32] = { 55.8, 32.8, 493, 300 }, + [33] = { 56.7, 32.5, 493, 300 }, + [34] = { 55.7, 31.4, 493, 300 }, + [35] = { 54.8, 29.9, 493, 300 }, + }, + ["lvl"] = "55", + }, + [11823] = { + ["coords"] = { + [1] = { 23.2, 70.3, 405, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "10", + }, + [11824] = { + ["coords"] = { + [1] = { 28.9, 42.5, 357, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [11825] = { + ["coords"] = { + [1] = { 28.9, 42.5, 357, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "46", + }, + [11826] = { + ["coords"] = { + [1] = { 89.3, 46.2, 357, 300 }, + [2] = { 7.6, 18.4, 400, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [11827] = { + ["coords"] = { + [1] = { 23.8, 51.9, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [11828] = { + ["coords"] = { + [1] = { 18.6, 53.7, 1519, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [11829] = { + ["coords"] = { + [1] = { 73.1, 61.4, 331, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "42", + }, + [11830] = { + ["coords"] = { + [1] = { 51.6, 18.4, 33, 1800 }, + [2] = { 53.1, 18.4, 33, 1800 }, + [3] = { 50.7, 18.3, 33, 1800 }, + [4] = { 52.9, 18.3, 33, 1800 }, + [5] = { 50.9, 18.2, 33, 1800 }, + [6] = { 52.3, 17.6, 33, 1800 }, + [7] = { 51.2, 17.6, 33, 1800 }, + [8] = { 49.6, 17.5, 33, 1800 }, + [9] = { 52.9, 16.8, 33, 1800 }, + [10] = { 53, 16.7, 33, 1800 }, + [11] = { 50.8, 16.7, 33, 1800 }, + [12] = { 50.7, 16.7, 33, 1800 }, + [13] = { 51.5, 16.7, 33, 1800 }, + [14] = { 52.3, 16.7, 33, 1800 }, + [15] = { 51.4, 16.7, 33, 1800 }, + }, + ["lvl"] = "54-55", + ["rnk"] = "1", + }, + [11831] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11832] = { + ["coords"] = { + [1] = { 36.2, 41.8, 493, 180 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [11833] = { + ["coords"] = { + [1] = { 44.1, 22.8, 215, 375 }, + [2] = { 70.1, 29.5, 1638, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [11834] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "14", + }, + [11835] = { + ["coords"] = { + [1] = { 71.9, 8.9, 130, 300 }, + [2] = { 46.3, 71.9, 1497, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [11836] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "13-14", + }, + [11837] = { + ["coords"] = { + [1] = { 51.3, 95.7, 2597, 120 }, + [2] = { 51.4, 93.9, 2597, 120 }, + }, + ["lvl"] = "53-54", + }, + [11838] = { + ["coords"] = { + [1] = { 52.4, 95.5, 2597, 120 }, + }, + ["lvl"] = "56-57", + }, + [11839] = { + ["coords"] = { + [1] = { 52.6, 96.7, 2597, 120 }, + [2] = { 53.4, 93.8, 2597, 120 }, + [3] = { 50.2, 93.4, 2597, 120 }, + [4] = { 53.3, 90.7, 2597, 120 }, + }, + ["lvl"] = "56-57", + }, + [11840] = { + ["coords"] = { + [1] = { 51.7, 94.8, 2597, 120 }, + [2] = { 52.6, 93.9, 2597, 120 }, + [3] = { 52.1, 91, 2597, 120 }, + }, + ["lvl"] = "58-59", + }, + [11856] = { + ["coords"] = { + [1] = { 73.5, 85.6, 406, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "15", + }, + [11857] = { + ["coords"] = { + [1] = { 35.2, 27.8, 17, 25 }, + [2] = { 85.8, 97.7, 406, 25 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [11858] = { + ["coords"] = { + [1] = { 73.6, 86.1, 406, 300 }, + }, + ["lvl"] = "18", + }, + [11859] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [11860] = { + ["coords"] = { + [1] = { 47.2, 61.2, 406, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [11861] = { + ["coords"] = { + [1] = { 47.2, 64, 406, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [11862] = { + ["coords"] = { + [1] = { 47.4, 64.3, 406, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [11863] = { + ["coords"] = { + [1] = { 38.9, 27.2, 405, 300 }, + }, + ["lvl"] = "60", + }, + [11864] = { + ["coords"] = { + [1] = { 47.5, 58.4, 406, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [11865] = { + ["coords"] = { + [1] = { 61.2, 89.5, 1537, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + ["rnk"] = "1", + }, + [11866] = { + ["coords"] = { + [1] = { 29.2, 56.7, 141, 600 }, + [2] = { 57.6, 46.7, 1657, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + ["rnk"] = "1", + }, + [11867] = { + ["coords"] = { + [1] = { 57.1, 57.7, 1519, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + ["rnk"] = "1", + }, + [11868] = { + ["coords"] = { + [1] = { 81.7, 19.5, 1637, 600 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + ["rnk"] = "1", + }, + [11869] = { + ["coords"] = { + [1] = { 38.1, 29.6, 215, 500 }, + [2] = { 40.9, 62.7, 1638, 500 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + ["rnk"] = "1", + }, + [11870] = { + ["coords"] = { + [1] = { 57.3, 32.8, 1497, 900 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + ["rnk"] = "1", + }, + [11871] = { + ["coords"] = { + [1] = { 81.9, 19.5, 1637, 600 }, + }, + ["fac"] = "H", + ["lvl"] = "48", + ["rnk"] = "1", + }, + [11872] = { + ["coords"] = { + [1] = { 50.8, 77.8, 28, 315 }, + }, + ["fac"] = "AH", + ["lvl"] = "58", + }, + [11873] = { + ["coords"] = { + [1] = { 45.6, 69.4, 28, 315 }, + [2] = { 45.5, 69.2, 28, 315 }, + [3] = { 45.6, 69.1, 28, 315 }, + }, + ["lvl"] = "60", + }, + [11874] = { + ["coords"] = { + [1] = { 26.5, 31.5, 8, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "44", + }, + [11875] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "14", + }, + [11876] = { + ["coords"] = {}, + ["lvl"] = "37", + }, + [11877] = { + ["coords"] = { + [1] = { 25, 72.3, 405, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [11878] = { + ["coords"] = { + [1] = { 26.5, 74.7, 139, 1200 }, + }, + ["fac"] = "H", + ["lvl"] = "62", + ["rnk"] = "1", + }, + [11880] = { + ["coords"] = { + [1] = { 19.6, 88.7, 1377, 300 }, + [2] = { 20.7, 88.4, 1377, 300 }, + [3] = { 20.7, 87.2, 1377, 300 }, + [4] = { 17, 87.1, 1377, 300 }, + [5] = { 18.8, 87.1, 1377, 300 }, + [6] = { 19.6, 87.1, 1377, 300 }, + [7] = { 18.8, 85.8, 1377, 300 }, + [8] = { 20.7, 85.7, 1377, 300 }, + [9] = { 21.7, 85.7, 1377, 300 }, + [10] = { 16.8, 85.5, 1377, 300 }, + [11] = { 17.6, 85.4, 1377, 300 }, + [12] = { 18.1, 84.5, 1377, 300 }, + [13] = { 21.5, 84.4, 1377, 300 }, + [14] = { 20.7, 84.2, 1377, 300 }, + [15] = { 17.2, 83.8, 1377, 300 }, + [16] = { 20, 83.2, 1377, 300 }, + [17] = { 17, 82.9, 1377, 300 }, + [18] = { 17.8, 82.9, 1377, 300 }, + [19] = { 18.7, 82.9, 1377, 300 }, + [20] = { 20.6, 82.8, 1377, 300 }, + [21] = { 19.6, 82, 1377, 300 }, + [22] = { 17.5, 81.7, 1377, 300 }, + [23] = { 17.9, 80.1, 1377, 300 }, + [24] = { 18.8, 80.1, 1377, 300 }, + [25] = { 26.3, 71.4, 1377, 1620 }, + [26] = { 26.2, 71.3, 1377, 1620 }, + [27] = { 26.2, 71.1, 1377, 1620 }, + [28] = { 26.4, 71, 1377, 1620 }, + [29] = { 39.3, 47.2, 1377, 300 }, + [30] = { 38.9, 47.2, 1377, 300 }, + [31] = { 40.7, 47.1, 1377, 300 }, + [32] = { 37.8, 46.9, 1377, 300 }, + [33] = { 39.8, 46.9, 1377, 300 }, + [34] = { 38.8, 46.3, 1377, 300 }, + [35] = { 39.8, 46, 1377, 300 }, + [36] = { 39.5, 46, 1377, 300 }, + [37] = { 40.2, 45.9, 1377, 300 }, + [38] = { 39.2, 45.8, 1377, 300 }, + [39] = { 41.7, 45.5, 1377, 300 }, + [40] = { 38, 45.5, 1377, 300 }, + [41] = { 40.6, 45.3, 1377, 300 }, + [42] = { 39.9, 44.9, 1377, 300 }, + [43] = { 37.1, 44.8, 1377, 300 }, + [44] = { 40.4, 44.8, 1377, 300 }, + [45] = { 37.8, 44.4, 1377, 300 }, + [46] = { 40.7, 44.3, 1377, 300 }, + [47] = { 41.8, 44.2, 1377, 300 }, + [48] = { 37, 44, 1377, 300 }, + [49] = { 41.1, 44, 1377, 300 }, + [50] = { 37.9, 43.9, 1377, 300 }, + [51] = { 38.1, 43.6, 1377, 300 }, + [52] = { 40.8, 43.5, 1377, 300 }, + [53] = { 39.6, 42.9, 1377, 300 }, + [54] = { 37, 42.7, 1377, 300 }, + [55] = { 40.8, 42.6, 1377, 300 }, + [56] = { 39, 42.6, 1377, 300 }, + [57] = { 37.9, 41.3, 1377, 300 }, + [58] = { 39.8, 41.1, 1377, 300 }, + [59] = { 38.8, 40.8, 1377, 300 }, + [60] = { 24.8, 40.1, 1377, 3000 }, + [61] = { 24.8, 40, 1377, 3000 }, + [62] = { 24.8, 39.9, 1377, 3000 }, + [63] = { 24.7, 39.8, 1377, 3000 }, + [64] = { 24.8, 38.5, 1377, 300 }, + [65] = { 26.3, 37, 1377, 300 }, + [66] = { 24.4, 36.9, 1377, 300 }, + [67] = { 24.8, 36.7, 1377, 300 }, + [68] = { 25.3, 36.7, 1377, 300 }, + [69] = { 25.4, 36.7, 1377, 300 }, + [70] = { 25, 36.1, 1377, 300 }, + [71] = { 25.2, 36, 1377, 300 }, + [72] = { 27.5, 35.6, 1377, 300 }, + [73] = { 23.7, 35.5, 1377, 300 }, + [74] = { 25.4, 35.5, 1377, 300 }, + [75] = { 26.5, 35.4, 1377, 300 }, + [76] = { 24.5, 35.4, 1377, 300 }, + [77] = { 27, 34.9, 1377, 300 }, + [78] = { 24.8, 34.4, 1377, 300 }, + [79] = { 26.4, 34.1, 1377, 300 }, + [80] = { 27.2, 34.1, 1377, 300 }, + [81] = { 23.6, 34, 1377, 300 }, + [82] = { 25.1, 34, 1377, 300 }, + [83] = { 28.2, 34, 1377, 300 }, + [84] = { 25.5, 33.1, 1377, 300 }, + [85] = { 25.6, 33.1, 1377, 300 }, + [86] = { 24.6, 32.7, 1377, 300 }, + [87] = { 27.4, 32.7, 1377, 300 }, + [88] = { 28.3, 32.7, 1377, 300 }, + [89] = { 29.1, 32.5, 1377, 300 }, + [90] = { 28.4, 31.7, 1377, 300 }, + [91] = { 25.4, 31.5, 1377, 300 }, + [92] = { 27.4, 31.2, 1377, 300 }, + [93] = { 26.4, 31.2, 1377, 300 }, + [94] = { 28.4, 31, 1377, 300 }, + [95] = { 66.2, 22.4, 1377, 300 }, + [96] = { 65.6, 22.1, 1377, 300 }, + [97] = { 66.7, 21.7, 1377, 300 }, + [98] = { 67.3, 21.3, 1377, 300 }, + [99] = { 65.6, 21.2, 1377, 300 }, + [100] = { 67.3, 20.7, 1377, 300 }, + [101] = { 67, 20.4, 1377, 300 }, + [102] = { 65.1, 19.8, 1377, 300 }, + [103] = { 66.6, 19.7, 1377, 300 }, + [104] = { 65.8, 19, 1377, 300 }, + [105] = { 67.5, 18.4, 1377, 300 }, + [106] = { 68.6, 18.2, 1377, 300 }, + [107] = { 65.6, 16.9, 1377, 300 }, + [108] = { 67.6, 16.9, 1377, 300 }, + [109] = { 73.1, 15.8, 1377, 300 }, + [110] = { 64.9, 15.5, 1377, 300 }, + [111] = { 66.6, 15.4, 1377, 300 }, + [112] = { 67.6, 15.4, 1377, 300 }, + [113] = { 72.6, 15.3, 1377, 300 }, + [114] = { 65.4, 15.2, 1377, 300 }, + [115] = { 70.9, 13.1, 1377, 300 }, + [116] = { 70.9, 12.9, 1377, 300 }, + [117] = { 71.3, 12.2, 1377, 300 }, + [118] = { 72.3, 12, 1377, 300 }, + [119] = { 74.3, 11.7, 1377, 300 }, + }, + ["lvl"] = "58-59", + }, + [11881] = { + ["coords"] = { + [1] = { 19.6, 88.7, 1377, 300 }, + [2] = { 20.7, 88.4, 1377, 300 }, + [3] = { 20.7, 87.2, 1377, 300 }, + [4] = { 17, 87.1, 1377, 300 }, + [5] = { 18.8, 87.1, 1377, 300 }, + [6] = { 19.6, 87.1, 1377, 300 }, + [7] = { 18.8, 85.8, 1377, 300 }, + [8] = { 20.7, 85.7, 1377, 300 }, + [9] = { 21.7, 85.7, 1377, 300 }, + [10] = { 16.8, 85.5, 1377, 300 }, + [11] = { 17.6, 85.4, 1377, 300 }, + [12] = { 18.1, 84.5, 1377, 300 }, + [13] = { 21.5, 84.4, 1377, 300 }, + [14] = { 20.7, 84.2, 1377, 300 }, + [15] = { 17.2, 83.8, 1377, 300 }, + [16] = { 20, 83.2, 1377, 300 }, + [17] = { 17, 82.9, 1377, 300 }, + [18] = { 17.8, 82.9, 1377, 300 }, + [19] = { 18.7, 82.9, 1377, 300 }, + [20] = { 20.6, 82.8, 1377, 300 }, + [21] = { 19.6, 82, 1377, 300 }, + [22] = { 17.5, 81.7, 1377, 300 }, + [23] = { 17.9, 80.1, 1377, 300 }, + [24] = { 18.8, 80.1, 1377, 300 }, + [25] = { 26.3, 71.4, 1377, 1620 }, + [26] = { 26.2, 71.3, 1377, 1620 }, + [27] = { 26.2, 71.1, 1377, 1620 }, + [28] = { 26.4, 71, 1377, 1620 }, + [29] = { 39.3, 47.2, 1377, 300 }, + [30] = { 38.9, 47.2, 1377, 300 }, + [31] = { 40.7, 47.1, 1377, 300 }, + [32] = { 37.8, 46.9, 1377, 300 }, + [33] = { 39.8, 46.9, 1377, 300 }, + [34] = { 38.8, 46.3, 1377, 300 }, + [35] = { 39.8, 46, 1377, 300 }, + [36] = { 39.5, 46, 1377, 300 }, + [37] = { 40.2, 45.9, 1377, 300 }, + [38] = { 39.2, 45.8, 1377, 300 }, + [39] = { 41.7, 45.5, 1377, 300 }, + [40] = { 38, 45.5, 1377, 300 }, + [41] = { 40.6, 45.3, 1377, 300 }, + [42] = { 39.9, 44.9, 1377, 300 }, + [43] = { 37.1, 44.8, 1377, 300 }, + [44] = { 40.4, 44.8, 1377, 300 }, + [45] = { 37.8, 44.4, 1377, 300 }, + [46] = { 40.7, 44.3, 1377, 300 }, + [47] = { 41.8, 44.2, 1377, 300 }, + [48] = { 37, 44, 1377, 300 }, + [49] = { 41.1, 44, 1377, 300 }, + [50] = { 37.9, 43.9, 1377, 300 }, + [51] = { 38.1, 43.6, 1377, 300 }, + [52] = { 40.8, 43.5, 1377, 300 }, + [53] = { 39.6, 42.9, 1377, 300 }, + [54] = { 37, 42.7, 1377, 300 }, + [55] = { 40.8, 42.6, 1377, 300 }, + [56] = { 39, 42.6, 1377, 300 }, + [57] = { 37.9, 41.3, 1377, 300 }, + [58] = { 39.8, 41.1, 1377, 300 }, + [59] = { 38.8, 40.8, 1377, 300 }, + [60] = { 24.8, 40.1, 1377, 3000 }, + [61] = { 24.8, 40, 1377, 3000 }, + [62] = { 24.8, 39.9, 1377, 3000 }, + [63] = { 24.7, 39.8, 1377, 3000 }, + [64] = { 24.8, 38.5, 1377, 300 }, + [65] = { 26.3, 37, 1377, 300 }, + [66] = { 24.4, 36.9, 1377, 300 }, + [67] = { 24.8, 36.7, 1377, 300 }, + [68] = { 25.3, 36.7, 1377, 300 }, + [69] = { 25.4, 36.7, 1377, 300 }, + [70] = { 25, 36.1, 1377, 300 }, + [71] = { 25.2, 36, 1377, 300 }, + [72] = { 27.5, 35.6, 1377, 300 }, + [73] = { 23.7, 35.5, 1377, 300 }, + [74] = { 25.4, 35.5, 1377, 300 }, + [75] = { 26.5, 35.4, 1377, 300 }, + [76] = { 24.5, 35.4, 1377, 300 }, + [77] = { 27, 34.9, 1377, 300 }, + [78] = { 24.8, 34.4, 1377, 300 }, + [79] = { 26.4, 34.1, 1377, 300 }, + [80] = { 27.2, 34.1, 1377, 300 }, + [81] = { 23.6, 34, 1377, 300 }, + [82] = { 25.1, 34, 1377, 300 }, + [83] = { 28.2, 34, 1377, 300 }, + [84] = { 25.5, 33.1, 1377, 300 }, + [85] = { 25.6, 33.1, 1377, 300 }, + [86] = { 24.6, 32.7, 1377, 300 }, + [87] = { 27.4, 32.7, 1377, 300 }, + [88] = { 28.3, 32.7, 1377, 300 }, + [89] = { 29.1, 32.5, 1377, 300 }, + [90] = { 28.4, 31.7, 1377, 300 }, + [91] = { 25.4, 31.5, 1377, 300 }, + [92] = { 27.4, 31.2, 1377, 300 }, + [93] = { 26.4, 31.2, 1377, 300 }, + [94] = { 28.4, 31, 1377, 300 }, + [95] = { 67.3, 20.7, 1377, 300 }, + }, + ["lvl"] = "59-60", + }, + [11882] = { + ["coords"] = { + [1] = { 18.5, 84.9, 1377, 300 }, + [2] = { 18.8, 84.8, 1377, 300 }, + [3] = { 18.3, 84.7, 1377, 300 }, + [4] = { 18.9, 84.4, 1377, 300 }, + [5] = { 18.2, 84.3, 1377, 300 }, + [6] = { 18.9, 83.9, 1377, 300 }, + [7] = { 18.3, 83.9, 1377, 300 }, + [8] = { 18.6, 83.8, 1377, 300 }, + [9] = { 39, 44.8, 1377, 300 }, + [10] = { 39.2, 44.6, 1377, 300 }, + [11] = { 38.7, 44.5, 1377, 300 }, + [12] = { 38.6, 44.2, 1377, 300 }, + [13] = { 39.3, 44.1, 1377, 300 }, + [14] = { 38.7, 43.9, 1377, 300 }, + [15] = { 39.2, 43.7, 1377, 300 }, + [16] = { 38.9, 43.6, 1377, 300 }, + [17] = { 26.5, 33.6, 1377, 300 }, + [18] = { 26.2, 33.5, 1377, 300 }, + [19] = { 26.8, 33.2, 1377, 300 }, + [20] = { 25.9, 33.1, 1377, 300 }, + [21] = { 26.7, 32.7, 1377, 300 }, + [22] = { 25.9, 32.6, 1377, 300 }, + [23] = { 26.2, 32.4, 1377, 300 }, + [24] = { 26.6, 32.4, 1377, 300 }, + }, + ["lvl"] = "59-60", + }, + [11883] = { + ["coords"] = { + [1] = { 20.3, 85.1, 1377, 300 }, + [2] = { 19.6, 84.9, 1377, 300 }, + [3] = { 17.9, 82.3, 1377, 300 }, + [4] = { 18.9, 82.1, 1377, 300 }, + [5] = { 66.3, 21.5, 1377, 300 }, + [6] = { 66.9, 20.6, 1377, 300 }, + [7] = { 67.7, 19.5, 1377, 300 }, + [8] = { 66.4, 17.8, 1377, 300 }, + [9] = { 68.6, 17.1, 1377, 300 }, + }, + ["lvl"] = "60", + }, + [11884] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [11885] = { + ["coords"] = { + [1] = { 26.5, 75, 139, 1200 }, + [2] = { 26.5, 74.5, 139, 1200 }, + }, + ["fac"] = "H", + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [11886] = { + ["coords"] = { + [1] = { 27.7, 86.3, 139, 0 }, + }, + ["lvl"] = "57", + }, + [11887] = { + ["coords"] = { + [1] = { 27.6, 86.4, 139, 0 }, + [2] = { 27.7, 86.2, 139, 0 }, + [3] = { 27.6, 86.3, 139, 0 }, + }, + ["lvl"] = "54-55", + }, + [11896] = { + ["coords"] = { + [1] = { 54.8, 31.8, 139, 345 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [11897] = { + ["coords"] = { + [1] = { 30.8, 69.8, 139, 345 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11898] = { + ["coords"] = { + [1] = { 85.4, 83.2, 139, 610 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11899] = { + ["coords"] = { + [1] = { 35.6, 31.9, 15, 1200 }, + [2] = { 53.9, 70.5, 17, 1200 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [11900] = { + ["coords"] = { + [1] = { 50.1, 74.9, 148, 600 }, + [2] = { 34.4, 54, 361, 600 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [11901] = { + ["coords"] = { + [1] = { 12.2, 33.8, 331, 600 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [11902] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "1", + }, + [11903] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "1", + }, + [11904] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "1", + }, + [11905] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "1", + }, + [11906] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "1", + }, + [11907] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "1", + }, + [11908] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "1", + }, + [11909] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "1", + }, + [11910] = { + ["coords"] = { + [1] = { 32.8, 27, 17, 300 }, + [2] = { 32.4, 26.4, 17, 300 }, + [3] = { 30.6, 24.4, 17, 300 }, + [4] = { 31.5, 24.4, 17, 300 }, + [5] = { 33.6, 24.3, 17, 300 }, + [6] = { 33.5, 24.3, 17, 300 }, + [7] = { 32.9, 24.2, 17, 300 }, + [8] = { 32.7, 24.1, 17, 300 }, + [9] = { 32.8, 24, 17, 300 }, + [10] = { 33.5, 23.9, 17, 300 }, + [11] = { 33.6, 23.9, 17, 300 }, + [12] = { 32.6, 23.8, 17, 300 }, + [13] = { 32.8, 23.8, 17, 300 }, + [14] = { 32.8, 23.7, 17, 300 }, + [15] = { 32.7, 23.6, 17, 300 }, + [16] = { 32.2, 23.4, 17, 300 }, + [17] = { 33.6, 23.2, 17, 300 }, + [18] = { 33.5, 23.1, 17, 300 }, + [19] = { 33.7, 23.1, 17, 300 }, + [20] = { 33.9, 23.1, 17, 300 }, + [21] = { 33.6, 23.1, 17, 300 }, + [22] = { 33.1, 23, 17, 300 }, + [23] = { 33.2, 22.9, 17, 300 }, + [24] = { 33, 22.9, 17, 300 }, + [25] = { 33.1, 22.8, 17, 300 }, + [26] = { 34.1, 22.8, 17, 300 }, + [27] = { 33.5, 22.6, 17, 300 }, + [28] = { 33.3, 22.5, 17, 300 }, + [29] = { 33.3, 22.4, 17, 300 }, + [30] = { 33.2, 22.4, 17, 300 }, + [31] = { 34.2, 22.3, 17, 300 }, + [32] = { 33.4, 22.3, 17, 300 }, + [33] = { 33.8, 22.2, 17, 300 }, + [34] = { 34.1, 22.2, 17, 300 }, + [35] = { 33.1, 22.2, 17, 300 }, + [36] = { 33.3, 22.2, 17, 300 }, + [37] = { 33.5, 22.2, 17, 300 }, + [38] = { 34.2, 22.2, 17, 300 }, + [39] = { 33.8, 22.1, 17, 300 }, + [40] = { 33.8, 22, 17, 300 }, + [41] = { 34.1, 21.7, 17, 300 }, + [42] = { 33.7, 21.7, 17, 300 }, + [43] = { 34.2, 21.7, 17, 300 }, + [44] = { 34.3, 21.6, 17, 300 }, + [45] = { 34.7, 21.6, 17, 300 }, + [46] = { 34.7, 21.4, 17, 300 }, + [47] = { 34.6, 21.4, 17, 300 }, + [48] = { 34.7, 21.2, 17, 300 }, + [49] = { 34.8, 21, 17, 300 }, + [50] = { 80.8, 96.1, 406, 300 }, + [51] = { 80.1, 94.8, 406, 300 }, + [52] = { 76.2, 90.7, 406, 300 }, + [53] = { 78.2, 90.6, 406, 300 }, + [54] = { 82.5, 90.4, 406, 300 }, + [55] = { 82.3, 90.4, 406, 300 }, + [56] = { 80.9, 90.3, 406, 300 }, + [57] = { 80.6, 90, 406, 300 }, + [58] = { 80.8, 89.8, 406, 300 }, + [59] = { 82.2, 89.7, 406, 300 }, + [60] = { 82.4, 89.7, 406, 300 }, + [61] = { 80.5, 89.5, 406, 300 }, + [62] = { 80.8, 89.4, 406, 300 }, + [63] = { 80.8, 89.2, 406, 300 }, + [64] = { 80.6, 89.1, 406, 300 }, + [65] = { 79.6, 88.6, 406, 300 }, + [66] = { 82.6, 88.2, 406, 300 }, + [67] = { 82.3, 88, 406, 300 }, + [68] = { 82.6, 88, 406, 300 }, + [69] = { 83.2, 88, 406, 300 }, + [70] = { 82.4, 87.9, 406, 300 }, + [71] = { 81.4, 87.7, 406, 300 }, + [72] = { 81.7, 87.6, 406, 300 }, + [73] = { 81.2, 87.6, 406, 300 }, + [74] = { 81.5, 87.3, 406, 300 }, + [75] = { 81.3, 87.3, 406, 300 }, + [76] = { 83.6, 87.3, 406, 300 }, + [77] = { 82.3, 86.9, 406, 300 }, + [78] = { 82, 86.8, 406, 300 }, + [79] = { 81.8, 86.5, 406, 300 }, + [80] = { 81.7, 86.4, 406, 300 }, + [81] = { 83.8, 86.4, 406, 300 }, + [82] = { 82.2, 86.4, 406, 300 }, + [83] = { 82.8, 86.2, 406, 300 }, + [84] = { 83.6, 86.2, 406, 300 }, + [85] = { 81.5, 86.2, 406, 300 }, + [86] = { 81.9, 86.1, 406, 300 }, + [87] = { 82.3, 86.1, 406, 300 }, + [88] = { 83.7, 86, 406, 300 }, + [89] = { 82.9, 86, 406, 300 }, + [90] = { 82.8, 85.8, 406, 300 }, + [91] = { 83.5, 85.1, 406, 300 }, + [92] = { 82.7, 85.1, 406, 300 }, + [93] = { 83.7, 85, 406, 300 }, + [94] = { 83.9, 84.9, 406, 300 }, + [95] = { 84.7, 84.8, 406, 300 }, + [96] = { 84.9, 84.4, 406, 300 }, + [97] = { 84.6, 84.3, 406, 300 }, + [98] = { 84.7, 84, 406, 300 }, + [99] = { 85, 83.6, 406, 300 }, + }, + ["lvl"] = "14-15", + }, + [11911] = { + ["coords"] = { + [1] = { 32.8, 27, 17, 300 }, + [2] = { 32.4, 26.4, 17, 300 }, + [3] = { 30.6, 24.4, 17, 300 }, + [4] = { 31.5, 24.4, 17, 300 }, + [5] = { 33.6, 24.3, 17, 300 }, + [6] = { 33.5, 24.3, 17, 300 }, + [7] = { 32.9, 24.2, 17, 300 }, + [8] = { 32.7, 24.1, 17, 300 }, + [9] = { 32.8, 24, 17, 300 }, + [10] = { 33.5, 23.9, 17, 300 }, + [11] = { 33.6, 23.9, 17, 300 }, + [12] = { 32.6, 23.8, 17, 300 }, + [13] = { 32.8, 23.8, 17, 300 }, + [14] = { 32.8, 23.7, 17, 300 }, + [15] = { 32.7, 23.6, 17, 300 }, + [16] = { 32.2, 23.4, 17, 300 }, + [17] = { 33.6, 23.2, 17, 300 }, + [18] = { 33.5, 23.1, 17, 300 }, + [19] = { 33.7, 23.1, 17, 300 }, + [20] = { 33.9, 23.1, 17, 300 }, + [21] = { 33.6, 23.1, 17, 300 }, + [22] = { 33.1, 23, 17, 300 }, + [23] = { 33.2, 22.9, 17, 300 }, + [24] = { 33, 22.9, 17, 300 }, + [25] = { 33.1, 22.8, 17, 300 }, + [26] = { 34.1, 22.8, 17, 300 }, + [27] = { 33.5, 22.6, 17, 300 }, + [28] = { 33.3, 22.5, 17, 300 }, + [29] = { 33.3, 22.4, 17, 300 }, + [30] = { 33.2, 22.4, 17, 300 }, + [31] = { 34.2, 22.3, 17, 300 }, + [32] = { 33.4, 22.3, 17, 300 }, + [33] = { 33.8, 22.2, 17, 300 }, + [34] = { 34.1, 22.2, 17, 300 }, + [35] = { 33.1, 22.2, 17, 300 }, + [36] = { 33.3, 22.2, 17, 300 }, + [37] = { 33.5, 22.2, 17, 300 }, + [38] = { 34.2, 22.2, 17, 300 }, + [39] = { 33.8, 22.1, 17, 300 }, + [40] = { 33.8, 22, 17, 300 }, + [41] = { 34.1, 21.7, 17, 300 }, + [42] = { 33.7, 21.7, 17, 300 }, + [43] = { 34.2, 21.7, 17, 300 }, + [44] = { 34.3, 21.6, 17, 300 }, + [45] = { 34.7, 21.6, 17, 300 }, + [46] = { 34.7, 21.4, 17, 300 }, + [47] = { 34.6, 21.4, 17, 300 }, + [48] = { 34.7, 21.2, 17, 300 }, + [49] = { 34.8, 21, 17, 300 }, + [50] = { 80.8, 96.1, 406, 300 }, + [51] = { 80.1, 94.8, 406, 300 }, + [52] = { 76.2, 90.7, 406, 300 }, + [53] = { 78.2, 90.6, 406, 300 }, + [54] = { 82.5, 90.4, 406, 300 }, + [55] = { 82.3, 90.4, 406, 300 }, + [56] = { 80.9, 90.3, 406, 300 }, + [57] = { 80.6, 90, 406, 300 }, + [58] = { 80.8, 89.8, 406, 300 }, + [59] = { 82.2, 89.7, 406, 300 }, + [60] = { 82.4, 89.7, 406, 300 }, + [61] = { 80.5, 89.5, 406, 300 }, + [62] = { 80.8, 89.4, 406, 300 }, + [63] = { 80.8, 89.2, 406, 300 }, + [64] = { 80.6, 89.1, 406, 300 }, + [65] = { 79.6, 88.6, 406, 300 }, + [66] = { 82.6, 88.2, 406, 300 }, + [67] = { 82.3, 88, 406, 300 }, + [68] = { 82.6, 88, 406, 300 }, + [69] = { 83.2, 88, 406, 300 }, + [70] = { 82.4, 87.9, 406, 300 }, + [71] = { 81.4, 87.7, 406, 300 }, + [72] = { 81.7, 87.6, 406, 300 }, + [73] = { 81.2, 87.6, 406, 300 }, + [74] = { 81.5, 87.3, 406, 300 }, + [75] = { 81.3, 87.3, 406, 300 }, + [76] = { 83.6, 87.3, 406, 300 }, + [77] = { 82.3, 86.9, 406, 300 }, + [78] = { 82, 86.8, 406, 300 }, + [79] = { 81.8, 86.5, 406, 300 }, + [80] = { 81.7, 86.4, 406, 300 }, + [81] = { 83.8, 86.4, 406, 300 }, + [82] = { 82.2, 86.4, 406, 300 }, + [83] = { 82.8, 86.2, 406, 300 }, + [84] = { 83.6, 86.2, 406, 300 }, + [85] = { 81.5, 86.2, 406, 300 }, + [86] = { 81.9, 86.1, 406, 300 }, + [87] = { 82.3, 86.1, 406, 300 }, + [88] = { 83.7, 86, 406, 300 }, + [89] = { 82.9, 86, 406, 300 }, + [90] = { 82.8, 85.8, 406, 300 }, + [91] = { 83.5, 85.1, 406, 300 }, + [92] = { 82.7, 85.1, 406, 300 }, + [93] = { 83.7, 85, 406, 300 }, + [94] = { 83.9, 84.9, 406, 300 }, + [95] = { 84.7, 84.8, 406, 300 }, + [96] = { 84.9, 84.4, 406, 300 }, + [97] = { 84.6, 84.3, 406, 300 }, + [98] = { 84.7, 84, 406, 300 }, + [99] = { 85, 83.6, 406, 300 }, + }, + ["lvl"] = "14-15", + }, + [11912] = { + ["coords"] = { + [1] = { 33.6, 24, 17, 300 }, + [2] = { 32.8, 23.6, 17, 300 }, + [3] = { 30.5, 22.6, 17, 300 }, + [4] = { 32.3, 22.6, 17, 300 }, + [5] = { 30.6, 22.5, 17, 300 }, + [6] = { 32.2, 22.4, 17, 300 }, + [7] = { 32.3, 22.4, 17, 300 }, + [8] = { 31.3, 22.3, 17, 300 }, + [9] = { 33.3, 22.2, 17, 300 }, + [10] = { 31.7, 22.2, 17, 300 }, + [11] = { 31.5, 22.2, 17, 300 }, + [12] = { 31.7, 22.1, 17, 300 }, + [13] = { 31.3, 22.1, 17, 300 }, + [14] = { 31.9, 22, 17, 300 }, + [15] = { 32.3, 22, 17, 300 }, + [16] = { 31.3, 22, 17, 300 }, + [17] = { 31.7, 21.9, 17, 300 }, + [18] = { 31.2, 21.9, 17, 300 }, + [19] = { 31.6, 21.9, 17, 300 }, + [20] = { 31.6, 21.8, 17, 300 }, + [21] = { 31.4, 21.8, 17, 300 }, + [22] = { 34.8, 21.4, 17, 300 }, + [23] = { 30.7, 20.9, 17, 300 }, + [24] = { 30.5, 20.7, 17, 300 }, + [25] = { 82.5, 89.9, 406, 300 }, + [26] = { 80.9, 89, 406, 300 }, + [27] = { 76.1, 87, 406, 300 }, + [28] = { 75.6, 86.9, 406, 300 }, + [29] = { 79.8, 86.9, 406, 300 }, + [30] = { 74.1, 86.7, 406, 300 }, + [31] = { 76.3, 86.7, 406, 300 }, + [32] = { 71.7, 86.7, 406, 300 }, + [33] = { 75.9, 86.6, 406, 300 }, + [34] = { 79.5, 86.6, 406, 300 }, + [35] = { 79.8, 86.5, 406, 300 }, + [36] = { 71.4, 86.4, 406, 300 }, + [37] = { 75.4, 86.3, 406, 300 }, + [38] = { 77.8, 86.3, 406, 300 }, + [39] = { 71.7, 86.3, 406, 300 }, + [40] = { 73.3, 86.3, 406, 300 }, + [41] = { 81.8, 86.2, 406, 300 }, + [42] = { 78.5, 86.2, 406, 300 }, + [43] = { 78.2, 86.1, 406, 300 }, + [44] = { 72.1, 86.1, 406, 300 }, + [45] = { 74.3, 86, 406, 300 }, + [46] = { 78.5, 85.9, 406, 300 }, + [47] = { 77.7, 85.9, 406, 300 }, + [48] = { 73.8, 85.8, 406, 300 }, + [49] = { 79, 85.8, 406, 300 }, + [50] = { 79.7, 85.8, 406, 300 }, + [51] = { 77.8, 85.7, 406, 300 }, + [52] = { 74.8, 85.6, 406, 300 }, + [53] = { 74.5, 85.6, 406, 300 }, + [54] = { 74, 85.6, 406, 300 }, + [55] = { 78.6, 85.5, 406, 300 }, + [56] = { 77.5, 85.4, 406, 300 }, + [57] = { 78.3, 85.4, 406, 300 }, + [58] = { 78.4, 85.3, 406, 300 }, + [59] = { 78, 85.3, 406, 300 }, + [60] = { 74.8, 84.6, 406, 300 }, + [61] = { 74.7, 84.5, 406, 300 }, + [62] = { 84.9, 84.5, 406, 300 }, + [63] = { 75.6, 83.6, 406, 300 }, + [64] = { 76.4, 83.5, 406, 300 }, + [65] = { 76, 83, 406, 300 }, + }, + ["lvl"] = "15-16", + }, + [11913] = { + ["coords"] = { + [1] = { 33.6, 24, 17, 300 }, + [2] = { 32.8, 23.6, 17, 300 }, + [3] = { 30.5, 22.6, 17, 300 }, + [4] = { 32.3, 22.6, 17, 300 }, + [5] = { 30.6, 22.5, 17, 300 }, + [6] = { 32.2, 22.4, 17, 300 }, + [7] = { 32.3, 22.4, 17, 300 }, + [8] = { 31.3, 22.3, 17, 300 }, + [9] = { 33.3, 22.2, 17, 300 }, + [10] = { 31.7, 22.2, 17, 300 }, + [11] = { 31.5, 22.2, 17, 300 }, + [12] = { 31.7, 22.1, 17, 300 }, + [13] = { 31.3, 22.1, 17, 300 }, + [14] = { 31.9, 22, 17, 300 }, + [15] = { 32.3, 22, 17, 300 }, + [16] = { 31.3, 22, 17, 300 }, + [17] = { 31.7, 21.9, 17, 300 }, + [18] = { 31.2, 21.9, 17, 300 }, + [19] = { 31.6, 21.9, 17, 300 }, + [20] = { 31.6, 21.8, 17, 300 }, + [21] = { 31.4, 21.8, 17, 300 }, + [22] = { 34.8, 21.4, 17, 300 }, + [23] = { 30.7, 20.9, 17, 300 }, + [24] = { 30.5, 20.7, 17, 300 }, + [25] = { 82.5, 89.9, 406, 300 }, + [26] = { 80.9, 89, 406, 300 }, + [27] = { 76.1, 87, 406, 300 }, + [28] = { 75.6, 86.9, 406, 300 }, + [29] = { 79.8, 86.9, 406, 300 }, + [30] = { 74.1, 86.7, 406, 300 }, + [31] = { 76.3, 86.7, 406, 300 }, + [32] = { 71.7, 86.7, 406, 300 }, + [33] = { 75.9, 86.6, 406, 300 }, + [34] = { 79.5, 86.6, 406, 300 }, + [35] = { 79.8, 86.5, 406, 300 }, + [36] = { 71.4, 86.4, 406, 300 }, + [37] = { 75.4, 86.3, 406, 300 }, + [38] = { 77.8, 86.3, 406, 300 }, + [39] = { 71.7, 86.3, 406, 300 }, + [40] = { 73.3, 86.3, 406, 300 }, + [41] = { 81.8, 86.2, 406, 300 }, + [42] = { 78.5, 86.2, 406, 300 }, + [43] = { 78.2, 86.1, 406, 300 }, + [44] = { 72.1, 86.1, 406, 300 }, + [45] = { 74.3, 86, 406, 300 }, + [46] = { 78.5, 85.9, 406, 300 }, + [47] = { 77.7, 85.9, 406, 300 }, + [48] = { 73.8, 85.8, 406, 300 }, + [49] = { 79, 85.8, 406, 300 }, + [50] = { 79.7, 85.8, 406, 300 }, + [51] = { 77.8, 85.7, 406, 300 }, + [52] = { 74.8, 85.6, 406, 300 }, + [53] = { 74.5, 85.6, 406, 300 }, + [54] = { 74, 85.6, 406, 300 }, + [55] = { 78.6, 85.5, 406, 300 }, + [56] = { 77.5, 85.4, 406, 300 }, + [57] = { 78.3, 85.4, 406, 300 }, + [58] = { 78.4, 85.3, 406, 300 }, + [59] = { 78, 85.3, 406, 300 }, + [60] = { 74.8, 84.6, 406, 300 }, + [61] = { 74.7, 84.5, 406, 300 }, + [62] = { 84.9, 84.5, 406, 300 }, + [63] = { 75.6, 83.6, 406, 300 }, + [64] = { 76.4, 83.5, 406, 300 }, + [65] = { 76, 83, 406, 300 }, + }, + ["lvl"] = "15-16", + }, + [11914] = { + ["coords"] = { + [1] = { 31.1, 21.9, 17, 300 }, + [2] = { 77.4, 85.4, 406, 300 }, + }, + ["lvl"] = "17", + }, + [11915] = { + ["coords"] = { + [1] = { 89.5, 19.4, 405, 300 }, + [2] = { 89.2, 19.3, 405, 300 }, + [3] = { 89.5, 18.9, 405, 300 }, + [4] = { 86.7, 18.6, 405, 300 }, + [5] = { 90, 18.3, 405, 300 }, + [6] = { 88.3, 18.2, 405, 300 }, + [7] = { 89.8, 18, 405, 300 }, + [8] = { 87.3, 17.8, 405, 300 }, + [9] = { 85.5, 17.1, 405, 300 }, + [10] = { 87.7, 17.1, 405, 300 }, + [11] = { 87.7, 16.7, 405, 300 }, + [12] = { 88.5, 16.6, 405, 300 }, + [13] = { 85.1, 16.4, 405, 300 }, + [14] = { 87.1, 15.8, 405, 300 }, + [15] = { 86.7, 15.8, 405, 300 }, + [16] = { 86.1, 15.5, 405, 300 }, + [17] = { 85.3, 15.4, 405, 300 }, + [18] = { 85.8, 15.1, 405, 300 }, + [19] = { 62.2, 93.6, 406, 300 }, + [20] = { 61.9, 93.4, 406, 300 }, + [21] = { 62.1, 93.1, 406, 300 }, + [22] = { 59.6, 92.8, 406, 300 }, + [23] = { 62.7, 92.6, 406, 300 }, + [24] = { 61.1, 92.5, 406, 300 }, + [25] = { 62.4, 92.2, 406, 300 }, + [26] = { 60.1, 92.1, 406, 300 }, + [27] = { 58.5, 91.5, 406, 300 }, + [28] = { 60.5, 91.4, 406, 300 }, + [29] = { 60.5, 91.1, 406, 300 }, + [30] = { 61.3, 91, 406, 300 }, + [31] = { 58.1, 90.7, 406, 300 }, + [32] = { 60, 90.3, 406, 300 }, + [33] = { 59.6, 90.3, 406, 300 }, + [34] = { 59, 89.9, 406, 300 }, + [35] = { 58.3, 89.9, 406, 300 }, + [36] = { 58.7, 89.6, 406, 300 }, + }, + ["lvl"] = "16-17", + }, + [11916] = { + ["coords"] = { + [1] = { 18.1, 49.4, 1519, 375 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [11917] = { + ["coords"] = { + [1] = { 85.8, 19.1, 405, 300 }, + [2] = { 88.7, 18.8, 405, 300 }, + [3] = { 88.9, 18.8, 405, 300 }, + [4] = { 85.4, 18.5, 405, 300 }, + [5] = { 86.2, 18.5, 405, 300 }, + [6] = { 86.6, 18.2, 405, 300 }, + [7] = { 87, 18.2, 405, 300 }, + [8] = { 88.4, 18.1, 405, 300 }, + [9] = { 87.2, 18.1, 405, 300 }, + [10] = { 87.4, 17.6, 405, 300 }, + [11] = { 88.1, 17.5, 405, 300 }, + [12] = { 88, 16.8, 405, 300 }, + [13] = { 86.7, 16.7, 405, 300 }, + [14] = { 86.1, 16.6, 405, 300 }, + [15] = { 87.2, 16.5, 405, 300 }, + [16] = { 86.6, 15.8, 405, 300 }, + [17] = { 85.7, 15.5, 405, 300 }, + [18] = { 84.3, 15.5, 405, 300 }, + [19] = { 86.1, 15, 405, 300 }, + [20] = { 84.3, 14.9, 405, 300 }, + [21] = { 58.7, 93.3, 406, 300 }, + [22] = { 61.5, 93, 406, 300 }, + [23] = { 61.6, 93, 406, 300 }, + [24] = { 58.4, 92.8, 406, 300 }, + [25] = { 59.1, 92.7, 406, 300 }, + [26] = { 59.5, 92.5, 406, 300 }, + [27] = { 59.9, 92.5, 406, 300 }, + [28] = { 61.1, 92.3, 406, 300 }, + [29] = { 60, 92.3, 406, 300 }, + [30] = { 60.2, 91.9, 406, 300 }, + [31] = { 60.9, 91.8, 406, 300 }, + [32] = { 60.8, 91.2, 406, 300 }, + [33] = { 59.6, 91.1, 406, 300 }, + [34] = { 59.1, 91, 406, 300 }, + [35] = { 60, 90.9, 406, 300 }, + [36] = { 59.5, 90.2, 406, 300 }, + [37] = { 58.7, 90, 406, 300 }, + [38] = { 57.3, 89.9, 406, 300 }, + [39] = { 59, 89.5, 406, 300 }, + [40] = { 57.4, 89.4, 406, 300 }, + }, + ["lvl"] = "16-17", + }, + [11918] = { + ["coords"] = { + [1] = { 85.8, 19.6, 405, 300 }, + [2] = { 85.3, 19.1, 405, 300 }, + [3] = { 86.1, 18.5, 405, 300 }, + [4] = { 86.8, 18.4, 405, 300 }, + [5] = { 88.1, 17.9, 405, 300 }, + [6] = { 86.3, 17.7, 405, 300 }, + [7] = { 85.8, 17.2, 405, 300 }, + [8] = { 86.8, 17, 405, 300 }, + [9] = { 86.4, 17, 405, 300 }, + [10] = { 86.7, 16.7, 405, 300 }, + [11] = { 84.2, 15.2, 405, 300 }, + [12] = { 58.8, 93.8, 406, 300 }, + [13] = { 58.3, 93.3, 406, 300 }, + [14] = { 59, 92.7, 406, 300 }, + [15] = { 59.7, 92.6, 406, 300 }, + [16] = { 60.9, 92.2, 406, 300 }, + [17] = { 59.2, 91.9, 406, 300 }, + [18] = { 58.8, 91.5, 406, 300 }, + [19] = { 59.7, 91.4, 406, 300 }, + [20] = { 59.3, 91.4, 406, 300 }, + [21] = { 59.6, 91.1, 406, 300 }, + [22] = { 57.3, 89.6, 406, 300 }, + }, + ["lvl"] = "17-18", + }, + [11919] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "25", + }, + [11920] = { + ["coords"] = {}, + ["lvl"] = "20", + ["rnk"] = "1", + }, + [11921] = { + ["coords"] = { + [1] = { 52, 73.9, 406, 300 }, + }, + ["lvl"] = "21", + ["rnk"] = "1", + }, + [11926] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [11936] = { + ["coords"] = { + [1] = { 65.8, 75.4, 28, 473 }, + }, + ["fac"] = "AH", + ["lvl"] = "12", + }, + [11937] = { + ["coords"] = {}, + ["lvl"] = "38", + }, + [11938] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [11939] = { + ["coords"] = { + [1] = { 44.9, 35.6, 493, 300 }, + }, + ["lvl"] = "55", + }, + [11940] = { + ["coords"] = { + [1] = { 47.4, 41.9, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [11941] = { + ["coords"] = { + [1] = { 30.1, 71.7, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [11942] = { + ["coords"] = { + [1] = { 58.8, 44.4, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [11943] = { + ["coords"] = { + [1] = { 43, 69.4, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "5", + }, + [11944] = { + ["coords"] = { + [1] = { 44.4, 77, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "5", + }, + [11945] = { + ["coords"] = { + [1] = { 32.1, 66.5, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "5", + }, + [11946] = { + ["coords"] = { + [1] = { 47.2, 86.9, 2597, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "62", + ["rnk"] = "1", + }, + [11947] = { + ["coords"] = { + [1] = { 45.9, 57.7, 2597, 432000 }, + }, + ["fac"] = "H", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [11948] = { + ["coords"] = { + [1] = { 42.3, 12.8, 2597, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "62", + ["rnk"] = "1", + }, + [11949] = { + ["coords"] = { + [1] = { 48.8, 40.5, 2597, 432000 }, + }, + ["fac"] = "A", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [11956] = { + ["coords"] = { + [1] = { 39.1, 27.5, 493, 300 }, + }, + ["lvl"] = "60", + }, + [11957] = { + ["coords"] = { + [1] = { 58.4, 73.8, 493, 300 }, + }, + ["lvl"] = "60", + }, + [11958] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11959] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [11978] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "3", + }, + [11979] = { + ["coords"] = { + [1] = { 35.8, 59.3, 12, 375 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [11980] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "3", + }, + [11981] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [11982] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [11983] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [11988] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [11994] = { + ["coords"] = { + [1] = { 36, 59.2, 12, 375 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [11996] = { + ["coords"] = { + [1] = { 36.4, 59.6, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [11997] = { + ["coords"] = { + [1] = { 53.6, 9.6, 2597, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [11998] = { + ["coords"] = { + [1] = { 58.1, 64.4, 2597, 490 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [12017] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [12018] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [12019] = { + ["coords"] = { + [1] = { 48.9, 39.2, 493, 300 }, + }, + ["lvl"] = "51", + }, + [12020] = { + ["coords"] = {}, + ["lvl"] = "51", + }, + [12021] = { + ["coords"] = { + [1] = { 45.2, 34.7, 493, 300 }, + }, + ["lvl"] = "51", + }, + [12022] = { + ["coords"] = { + [1] = { 48.2, 40.1, 493, 300 }, + }, + ["lvl"] = "51", + }, + [12023] = { + ["coords"] = { + [1] = { 56.6, 29.9, 493, 300 }, + }, + ["lvl"] = "51", + }, + [12024] = { + ["coords"] = { + [1] = { 51.2, 42.3, 493, 300 }, + }, + ["lvl"] = "51", + }, + [12025] = { + ["coords"] = { + [1] = { 45.4, 47, 493, 300 }, + }, + ["lvl"] = "51", + }, + [12026] = { + ["coords"] = { + [1] = { 44.5, 33.9, 493, 300 }, + }, + ["lvl"] = "51", + }, + [12027] = { + ["coords"] = { + [1] = { 24.9, 71.8, 405, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [12028] = { + ["coords"] = { + [1] = { 23.1, 71.6, 405, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [12029] = { + ["coords"] = { + [1] = { 53.3, 42.7, 493, 300 }, + }, + ["lvl"] = "51", + }, + [12030] = { + ["coords"] = { + [1] = { 23.2, 69.7, 405, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [12031] = { + ["coords"] = { + [1] = { 22.6, 72, 405, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [12032] = { + ["coords"] = { + [1] = { 22.7, 72.4, 405, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [12033] = { + ["coords"] = { + [1] = { 26.2, 69.6, 405, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [12034] = { + ["coords"] = { + [1] = { 47.4, 29.7, 17, 275 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [12035] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "55", + }, + [12036] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "55", + }, + [12037] = { + ["coords"] = { + [1] = { 83.4, 48.5, 331, 37800 }, + }, + ["lvl"] = "31", + ["rnk"] = "4", + }, + [12038] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "55", + }, + [12039] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "55", + }, + [12040] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "55", + }, + [12042] = { + ["coords"] = { + [1] = { 52.5, 40.6, 493, 300 }, + }, + ["lvl"] = "51", + }, + [12043] = { + ["coords"] = { + [1] = { 45.4, 59.3, 406, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "32", + }, + [12044] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "32", + }, + [12045] = { + ["coords"] = { + [1] = { 25.8, 71, 405, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [12046] = { + ["coords"] = { + [1] = { 41.5, 57.8, 440, 300 }, + }, + ["lvl"] = "49", + }, + [12047] = { + ["coords"] = { + [1] = { 68.7, 18.6, 1, 300 }, + [2] = { 48.2, 42.4, 2597, 120 }, + [3] = { 48.3, 42.4, 2597, 120 }, + [4] = { 51.3, 35, 2597, 120 }, + [5] = { 51.2, 35, 2597, 120 }, + [6] = { 50.3, 34.3, 2597, 120 }, + [7] = { 50.3, 34.2, 2597, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [12048] = { + ["coords"] = { + [1] = { 46.8, 42.4, 2597, 430 }, + [2] = { 46.6, 42.2, 2597, 430 }, + [3] = { 47, 41.9, 2597, 430 }, + [4] = { 50.3, 39.9, 2597, 430 }, + [5] = { 49.2, 38.5, 2597, 430 }, + [6] = { 48.9, 38.4, 2597, 430 }, + [7] = { 51.6, 38.3, 2597, 120 }, + [8] = { 51.7, 38.2, 2597, 120 }, + [9] = { 48.7, 37.3, 2597, 430 }, + [10] = { 49.5, 37.3, 2597, 430 }, + [11] = { 48.1, 35.8, 2597, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [12050] = { + ["coords"] = { + [1] = { 49.4, 88.3, 2597, 120 }, + [2] = { 49.2, 88.2, 2597, 120 }, + [3] = { 49.2, 88, 2597, 120 }, + [4] = { 49.4, 88, 2597, 120 }, + [5] = { 50.1, 77, 2597, 120 }, + [6] = { 49.9, 76.7, 2597, 120 }, + [7] = { 50.2, 76.7, 2597, 120 }, + [8] = { 50.1, 76.6, 2597, 120 }, + [9] = { 51.4, 60.2, 2597, 120 }, + [10] = { 51.3, 60.2, 2597, 120 }, + [11] = { 51.5, 60, 2597, 120 }, + [12] = { 51.3, 60, 2597, 120 }, + [13] = { 44.6, 45.8, 2597, 120 }, + [14] = { 44.8, 45.6, 2597, 120 }, + [15] = { 44.6, 45.6, 2597, 120 }, + [16] = { 44.7, 45.4, 2597, 120 }, + [17] = { 51.6, 35.8, 2597, 120 }, + [18] = { 51.7, 35.7, 2597, 120 }, + [19] = { 51.5, 35.7, 2597, 120 }, + [20] = { 51.6, 35.5, 2597, 120 }, + [21] = { 42.7, 15.9, 2597, 120 }, + [22] = { 42.8, 15.9, 2597, 120 }, + [23] = { 42.7, 15.7, 2597, 120 }, + [24] = { 42.8, 15.7, 2597, 120 }, + [25] = { 49, 14.9, 2597, 120 }, + [26] = { 48.8, 14.8, 2597, 120 }, + [27] = { 49.1, 14.7, 2597, 120 }, + [28] = { 48.9, 14.6, 2597, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "58", + }, + [12051] = { + ["coords"] = { + [1] = { 48.8, 86.3, 2597, 120 }, + [2] = { 48.8, 86, 2597, 120 }, + [3] = { 48.9, 85.5, 2597, 120 }, + [4] = { 50.7, 83.6, 2597, 120 }, + [5] = { 51.1, 83.6, 2597, 120 }, + [6] = { 51, 83.4, 2597, 120 }, + [7] = { 49.3, 81.8, 2597, 120 }, + [8] = { 48.2, 81.3, 2597, 120 }, + [9] = { 50.3, 79.5, 2597, 120 }, + [10] = { 50.5, 79.4, 2597, 120 }, + [11] = { 50.4, 78.5, 2597, 120 }, + [12] = { 50.3, 78.4, 2597, 120 }, + [13] = { 49.9, 76.4, 2597, 120 }, + [14] = { 51, 70.5, 2597, 120 }, + [15] = { 51.1, 70.4, 2597, 120 }, + [16] = { 51.7, 67.9, 2597, 120 }, + [17] = { 50.1, 65.1, 2597, 120 }, + [18] = { 52.7, 64.7, 2597, 120 }, + [19] = { 52.5, 63.6, 2597, 120 }, + [20] = { 45.8, 58.1, 2597, 120 }, + [21] = { 46.2, 58.1, 2597, 120 }, + [22] = { 48.4, 57.8, 2597, 120 }, + [23] = { 46.3, 57.4, 2597, 120 }, + [24] = { 45.8, 57, 2597, 120 }, + [25] = { 46.7, 54.1, 2597, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "57", + }, + [12052] = { + ["coords"] = { + [1] = { 50.6, 63.5, 2597, 120 }, + [2] = { 50.5, 63.4, 2597, 120 }, + [3] = { 51.4, 60.6, 2597, 120 }, + [4] = { 49.1, 58.9, 2597, 120 }, + [5] = { 49.5, 58.9, 2597, 120 }, + [6] = { 49.6, 58.9, 2597, 120 }, + [7] = { 49.2, 58.9, 2597, 120 }, + [8] = { 47.6, 57.5, 2597, 120 }, + [9] = { 47.6, 57.4, 2597, 430 }, + [10] = { 47.7, 57.4, 2597, 120 }, + [11] = { 50, 55.8, 2597, 430 }, + [12] = { 48.7, 55.7, 2597, 120 }, + [13] = { 48.8, 55.6, 2597, 120 }, + [14] = { 46.7, 55.4, 2597, 120 }, + [15] = { 50.4, 54.7, 2597, 430 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [12053] = { + ["coords"] = { + [1] = { 49.4, 88.3, 2597, 120 }, + [2] = { 49.2, 88.2, 2597, 120 }, + [3] = { 49.2, 88, 2597, 120 }, + [4] = { 49.4, 88, 2597, 120 }, + [5] = { 50.1, 77, 2597, 120 }, + [6] = { 49.9, 76.7, 2597, 120 }, + [7] = { 50.2, 76.7, 2597, 120 }, + [8] = { 50.1, 76.6, 2597, 120 }, + [9] = { 51.4, 60.2, 2597, 120 }, + [10] = { 51.3, 60.2, 2597, 120 }, + [11] = { 51.5, 60, 2597, 120 }, + [12] = { 51.3, 60, 2597, 120 }, + [13] = { 44.6, 45.8, 2597, 120 }, + [14] = { 44.8, 45.6, 2597, 120 }, + [15] = { 44.6, 45.6, 2597, 120 }, + [16] = { 44.7, 45.4, 2597, 120 }, + [17] = { 51.6, 35.8, 2597, 120 }, + [18] = { 51.7, 35.7, 2597, 120 }, + [19] = { 51.5, 35.7, 2597, 120 }, + [20] = { 51.6, 35.5, 2597, 120 }, + [21] = { 42.7, 15.9, 2597, 120 }, + [22] = { 42.8, 15.9, 2597, 120 }, + [23] = { 42.7, 15.7, 2597, 120 }, + [24] = { 42.8, 15.7, 2597, 120 }, + [25] = { 49, 14.9, 2597, 120 }, + [26] = { 48.8, 14.8, 2597, 120 }, + [27] = { 49.1, 14.7, 2597, 120 }, + [28] = { 48.9, 14.6, 2597, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "58", + }, + [12054] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [12056] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [12057] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [12076] = { + ["coords"] = {}, + ["lvl"] = "61-62", + ["rnk"] = "1", + }, + [12096] = { + ["coords"] = { + [1] = { 43.1, 17.6, 2597, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [12097] = { + ["coords"] = { + [1] = { 46.6, 84.2, 2597, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [12098] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [12099] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [12100] = { + ["coords"] = {}, + ["lvl"] = "62-63", + ["rnk"] = "1", + }, + [12101] = { + ["coords"] = {}, + ["lvl"] = "61-62", + ["rnk"] = "1", + }, + [12116] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "2", + }, + [12118] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [12119] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [12120] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [12121] = { + ["coords"] = { + [1] = { 47.3, 87, 2597, 1785 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [12122] = { + ["coords"] = { + [1] = { 47.2, 86.8, 2597, 1785 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [12123] = { + ["coords"] = {}, + ["lvl"] = "21-22", + ["rnk"] = "1", + }, + [12124] = { + ["coords"] = {}, + ["lvl"] = "52", + ["rnk"] = "1", + }, + [12125] = { + ["coords"] = { + [1] = { 78.1, 94.6, 16, 900 }, + [2] = { 79.6, 91.5, 16, 900 }, + [3] = { 79.1, 75.6, 16, 900 }, + [4] = { 76.3, 74.9, 16, 900 }, + [5] = { 61.1, 52.2, 16, 900 }, + [6] = { 64, 38.8, 16, 900 }, + [7] = { 69.4, 35.3, 16, 900 }, + [8] = { 64.7, 6.9, 16, 900 }, + [9] = { 67.1, 5.2, 16, 900 }, + [10] = { 87.9, 72.4, 618, 900 }, + [11] = { 89.6, 71.2, 618, 900 }, + }, + ["lvl"] = "54", + ["rnk"] = "1", + }, + [12126] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "63", + ["rnk"] = "1", + }, + [12127] = { + ["coords"] = { + [1] = { 51.3, 36.3, 2597, 120 }, + [2] = { 51.1, 34, 2597, 120 }, + [3] = { 51, 33.9, 2597, 120 }, + [4] = { 51.9, 30.1, 2597, 120 }, + [5] = { 51.3, 25.8, 2597, 120 }, + [6] = { 52.3, 22.8, 2597, 120 }, + [7] = { 52.3, 22.7, 2597, 120 }, + [8] = { 50.9, 22.6, 2597, 120 }, + [9] = { 51.4, 19, 2597, 120 }, + [10] = { 50, 17.1, 2597, 120 }, + [11] = { 49.9, 17, 2597, 120 }, + [12] = { 47.5, 16.3, 2597, 120 }, + [13] = { 45.6, 16.3, 2597, 120 }, + [14] = { 48.5, 16.2, 2597, 120 }, + [15] = { 43.1, 15.9, 2597, 120 }, + [16] = { 47.5, 15.9, 2597, 120 }, + [17] = { 43.3, 15.9, 2597, 120 }, + [18] = { 43.2, 15.8, 2597, 120 }, + [19] = { 48.4, 15.6, 2597, 120 }, + [20] = { 44.5, 15.6, 2597, 120 }, + [21] = { 44.6, 15.5, 2597, 120 }, + [22] = { 42.6, 15.2, 2597, 120 }, + [23] = { 42.9, 15, 2597, 120 }, + [24] = { 52.3, 13.8, 2597, 120 }, + [25] = { 52.3, 13.7, 2597, 120 }, + [26] = { 42, 13, 2597, 120 }, + [27] = { 42.5, 12.8, 2597, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "57", + }, + [12128] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [12129] = { + ["coords"] = {}, + ["lvl"] = "60-63", + ["rnk"] = "1", + }, + [12136] = { + ["coords"] = { + [1] = { 50.7, 12.9, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [12137] = { + ["coords"] = { + [1] = { 31.5, 29.4, 33, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [12138] = { + ["coords"] = { + [1] = { 42.8, 45, 148, 0 }, + [2] = { 42.1, 60.1, 17, 0 }, + [3] = { 71.9, 63.4, 215, 0 }, + }, + ["lvl"] = "12", + }, + [12140] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "60", + }, + [12141] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "53-54", + }, + [12142] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [12143] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [12144] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "13", + }, + [12145] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [12146] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [12147] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [12148] = { + ["coords"] = { + [1] = { 47.5, 58.8, 215, 375 }, + }, + ["fac"] = "AH", + ["lvl"] = "12", + }, + [12149] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [12150] = { + ["coords"] = { + [1] = { 60.5, 37.8, 618, 500 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [12151] = { + ["coords"] = { + [1] = { 47.5, 58.7, 215, 375 }, + }, + ["fac"] = "AH", + ["lvl"] = "12", + }, + [12152] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [12156] = { + ["coords"] = { + [1] = { 44.4, 46.2, 2597, 430 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [12157] = { + ["coords"] = { + [1] = { 44, 47.1, 2597, 432000 }, + [2] = { 45.4, 45.2, 2597, 432000 }, + [3] = { 41.4, 44.2, 2597, 120 }, + }, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [12158] = { + ["coords"] = {}, + ["lvl"] = "59", + ["rnk"] = "1", + }, + [12159] = { + ["coords"] = { + [1] = { 49.2, 47.5, 2597, 432000 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [12160] = { + ["coords"] = { + [1] = { 61, 48.6, 141, 300 }, + [2] = { 61.5, 48.5, 141, 300 }, + [3] = { 61.3, 48.1, 141, 300 }, + [4] = { 61.2, 48.1, 141, 300 }, + [5] = { 61.2, 47.9, 141, 300 }, + [6] = { 61.4, 47.9, 141, 300 }, + [7] = { 60.3, 42.3, 141, 300 }, + [8] = { 57.4, 41.6, 141, 300 }, + [9] = { 59.2, 40.7, 141, 300 }, + [10] = { 59.4, 40.5, 141, 300 }, + [11] = { 59, 40.4, 141, 300 }, + [12] = { 59.1, 39.6, 141, 300 }, + [13] = { 59.2, 39.4, 141, 300 }, + [14] = { 59.1, 39.2, 141, 300 }, + [15] = { 59.2, 39.2, 141, 300 }, + [16] = { 59.4, 38.9, 141, 300 }, + [17] = { 59.2, 38.8, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [12176] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "40", + }, + [12177] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "36-37", + ["rnk"] = "1", + }, + [12178] = { + ["coords"] = { + [1] = { 7.7, 45.1, 490, 300 }, + [2] = { 64, 58.4, 1377, 300 }, + [3] = { 60.9, 58.4, 1377, 300 }, + [4] = { 62.7, 58.4, 1377, 300 }, + [5] = { 59.8, 56.9, 1377, 300 }, + [6] = { 61.9, 55.6, 1377, 300 }, + [7] = { 63.5, 54.5, 1377, 300 }, + [8] = { 60.9, 54.2, 1377, 300 }, + [9] = { 61.8, 54.2, 1377, 300 }, + [10] = { 59.8, 54.1, 1377, 300 }, + [11] = { 62.7, 52.8, 1377, 300 }, + [12] = { 61.8, 52.8, 1377, 300 }, + [13] = { 58.8, 52.8, 1377, 300 }, + [14] = { 62.8, 50.9, 1377, 300 }, + [15] = { 62.7, 50.9, 1377, 300 }, + [16] = { 62.6, 50.3, 1377, 300 }, + [17] = { 60.4, 50.1, 1377, 300 }, + [18] = { 63, 50.1, 1377, 300 }, + [19] = { 60.9, 49.8, 1377, 300 }, + [20] = { 62.7, 49.8, 1377, 300 }, + [21] = { 65.7, 48.3, 1377, 300 }, + [22] = { 63.9, 48.3, 1377, 300 }, + [23] = { 63.7, 47.2, 1377, 300 }, + [24] = { 64.9, 47.1, 1377, 300 }, + }, + ["lvl"] = "55-56", + }, + [12179] = { + ["coords"] = { + [1] = { 6.6, 50.7, 490, 300 }, + [2] = { 6.6, 49.1, 490, 300 }, + [3] = { 7.9, 46.6, 490, 300 }, + [4] = { 61.8, 58.5, 1377, 300 }, + [5] = { 64.7, 58.2, 1377, 300 }, + [6] = { 61.1, 56.1, 1377, 300 }, + [7] = { 63.4, 56, 1377, 300 }, + [8] = { 62.7, 55.8, 1377, 300 }, + [9] = { 60.1, 55.7, 1377, 300 }, + [10] = { 58.8, 55.6, 1377, 300 }, + [11] = { 63.4, 55, 1377, 300 }, + [12] = { 62.7, 54.4, 1377, 300 }, + [13] = { 64.6, 54.2, 1377, 300 }, + [14] = { 63.4, 53.9, 1377, 300 }, + [15] = { 63.6, 52.8, 1377, 300 }, + [16] = { 60.2, 52.8, 1377, 300 }, + [17] = { 60.2, 52.5, 1377, 300 }, + [18] = { 64.5, 52.5, 1377, 300 }, + [19] = { 63.7, 51.5, 1377, 300 }, + [20] = { 62.9, 50.8, 1377, 300 }, + [21] = { 62.8, 50.8, 1377, 300 }, + [22] = { 65.9, 49.9, 1377, 300 }, + [23] = { 63.7, 49.9, 1377, 300 }, + [24] = { 62.7, 49.9, 1377, 300 }, + [25] = { 61.6, 48.5, 1377, 300 }, + [26] = { 62.7, 48.1, 1377, 300 }, + [27] = { 7.7, 45.1, 490, 300 }, + [28] = { 61.9, 55.6, 1377, 300 }, + [29] = { 60.9, 54.2, 1377, 300 }, + [30] = { 61.8, 52.8, 1377, 300 }, + [31] = { 62.8, 50.9, 1377, 300 }, + [32] = { 62.7, 49.8, 1377, 300 }, + [33] = { 65.7, 48.3, 1377, 300 }, + [34] = { 64.9, 47.1, 1377, 300 }, + }, + ["lvl"] = "56-57", + }, + [12180] = { + ["coords"] = {}, + ["lvl"] = "59", + ["rnk"] = "1", + }, + [12196] = { + ["coords"] = { + [1] = { 74, 60.6, 331, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [12197] = { + ["coords"] = { + [1] = { 69.9, 90.4, 1537, 6300 }, + }, + ["fac"] = "A", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [12198] = { + ["coords"] = { + [1] = { 35.6, 21.1, 215, 500 }, + [2] = { 89.3, 48.3, 405, 500 }, + [3] = { 28.7, 20.9, 1638, 500 }, + }, + ["fac"] = "H", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [12199] = { + ["coords"] = { + [1] = { 62.8, 50.9, 1377, 300 }, + [2] = { 62.7, 49.8, 1377, 300 }, + }, + ["lvl"] = "58", + }, + [12200] = { + ["coords"] = {}, + ["lvl"] = "49-50", + ["rnk"] = "1", + }, + [12201] = { + ["coords"] = {}, + ["lvl"] = "51", + ["rnk"] = "1", + }, + [12202] = { + ["coords"] = { + [1] = { 26.8, 75.8, 139, 345 }, + [2] = { 26.3, 75.6, 139, 345 }, + [3] = { 26.6, 75.4, 139, 345 }, + [4] = { 26.9, 75.4, 139, 345 }, + [5] = { 27, 74.8, 139, 345 }, + [6] = { 27, 74.2, 139, 345 }, + [7] = { 26.3, 74, 139, 345 }, + [8] = { 26.7, 73.8, 139, 345 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [12203] = { + ["coords"] = {}, + ["lvl"] = "50", + ["rnk"] = "1", + }, + [12204] = { + ["coords"] = {}, + ["lvl"] = "48-49", + }, + [12205] = { + ["coords"] = {}, + ["lvl"] = "49-50", + }, + [12206] = { + ["coords"] = {}, + ["lvl"] = "48-49", + ["rnk"] = "1", + }, + [12207] = { + ["coords"] = {}, + ["lvl"] = "46-47", + ["rnk"] = "1", + }, + [12208] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "58", + }, + [12216] = { + ["coords"] = {}, + ["lvl"] = "42-43", + }, + [12217] = { + ["coords"] = {}, + ["lvl"] = "42-43", + }, + [12218] = { + ["coords"] = {}, + ["lvl"] = "45-47", + }, + [12219] = { + ["coords"] = {}, + ["lvl"] = "44-45", + ["rnk"] = "1", + }, + [12220] = { + ["coords"] = {}, + ["lvl"] = "45-46", + ["rnk"] = "1", + }, + [12221] = { + ["coords"] = {}, + ["lvl"] = "46-47", + ["rnk"] = "1", + }, + [12222] = { + ["coords"] = {}, + ["lvl"] = "45-46", + ["rnk"] = "1", + }, + [12223] = { + ["coords"] = {}, + ["lvl"] = "45-46", + ["rnk"] = "1", + }, + [12224] = { + ["coords"] = {}, + ["lvl"] = "46-47", + ["rnk"] = "1", + }, + [12225] = { + ["coords"] = {}, + ["lvl"] = "49", + ["rnk"] = "1", + }, + [12236] = { + ["coords"] = {}, + ["lvl"] = "47", + ["rnk"] = "1", + }, + [12237] = { + ["coords"] = {}, + ["lvl"] = "48", + ["rnk"] = "2", + }, + [12238] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [12239] = { + ["coords"] = { + [1] = { 29.4, 56.9, 405, 550 }, + }, + ["fac"] = "AH", + ["lvl"] = "42", + ["rnk"] = "1", + }, + [12240] = { + ["coords"] = { + [1] = { 29.7, 60.5, 405, 550 }, + }, + ["fac"] = "AH", + ["lvl"] = "43", + ["rnk"] = "1", + }, + [12241] = { + ["coords"] = { + [1] = { 35.8, 60.4, 405, 550 }, + }, + ["fac"] = "AH", + ["lvl"] = "43", + ["rnk"] = "1", + }, + [12242] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "46", + ["rnk"] = "1", + }, + [12243] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "47", + ["rnk"] = "1", + }, + [12244] = { + ["coords"] = { + [1] = { 23.5, 21.9, 139, 518 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [12245] = { + ["coords"] = { + [1] = { 60.3, 38.2, 405, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "38", + }, + [12246] = { + ["coords"] = { + [1] = { 40.5, 79.3, 405, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "36", + }, + [12247] = { + ["coords"] = { + [1] = { 40.7, 38.6, 139, 518 }, + [2] = { 27, 36.6, 139, 518 }, + [3] = { 32.2, 30.8, 139, 518 }, + [4] = { 43.5, 26.2, 139, 518 }, + [5] = { 29.3, 24, 139, 518 }, + [6] = { 33, 23.9, 139, 518 }, + [7] = { 23.5, 21.9, 139, 518 }, + [8] = { 37.7, 19.7, 139, 518 }, + }, + ["lvl"] = "1", + }, + [12248] = { + ["coords"] = { + [1] = { 70.5, 16.4, 139, 345 }, + }, + ["lvl"] = "60", + }, + [12249] = { + ["coords"] = { + [1] = { 27.1, 36.6, 139, 518 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [12250] = { + ["coords"] = { + [1] = { 27.5, 84.9, 139, 345 }, + }, + ["lvl"] = "55", + }, + [12251] = { + ["coords"] = { + [1] = { 29.3, 24, 139, 518 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [12252] = { + ["coords"] = { + [1] = { 33, 23.9, 139, 518 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [12253] = { + ["coords"] = { + [1] = { 32.2, 30.8, 139, 518 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [12254] = { + ["coords"] = { + [1] = { 37.7, 19.7, 139, 518 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [12255] = { + ["coords"] = { + [1] = { 43.5, 26.2, 139, 518 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [12256] = { + ["coords"] = { + [1] = { 40.7, 38.6, 139, 518 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [12257] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "58", + }, + [12258] = { + ["coords"] = {}, + ["lvl"] = "48", + ["rnk"] = "1", + }, + [12259] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [12260] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + ["rnk"] = "1", + }, + [12261] = { + ["coords"] = {}, + ["lvl"] = "57-58", + }, + [12262] = { + ["coords"] = { + [1] = { 40.7, 38.9, 139, 345 }, + [2] = { 27.1, 36.3, 139, 345 }, + [3] = { 43.5, 26.4, 139, 345 }, + [4] = { 29.2, 24.2, 139, 345 }, + [5] = { 33.1, 24.1, 139, 345 }, + [6] = { 23.5, 22.2, 139, 345 }, + }, + ["lvl"] = "58", + ["rnk"] = "1", + }, + [12263] = { + ["coords"] = { + [1] = { 32.3, 30.5, 139, 345 }, + [2] = { 37.5, 19.9, 139, 345 }, + }, + ["lvl"] = "58", + ["rnk"] = "1", + }, + [12264] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [12265] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [12276] = { + ["coords"] = {}, + ["lvl"] = "20", + }, + [12277] = { + ["coords"] = { + [1] = { 33.9, 53.5, 405, 300 }, + }, + ["lvl"] = "39", + }, + [12296] = { + ["coords"] = { + [1] = { 43.7, 39.3, 17, 413 }, + [2] = { 56.9, 39, 17, 413 }, + [3] = { 55, 38.7, 17, 413 }, + [4] = { 51.1, 38.5, 17, 413 }, + [5] = { 53.3, 38, 17, 413 }, + [6] = { 58, 37.1, 17, 413 }, + [7] = { 48.7, 36.9, 17, 413 }, + [8] = { 48.8, 36.5, 17, 413 }, + [9] = { 42.7, 36, 17, 413 }, + [10] = { 50.7, 35.9, 17, 413 }, + [11] = { 50.5, 35.8, 17, 413 }, + [12] = { 55.1, 35.4, 17, 413 }, + [13] = { 60.3, 35.3, 17, 413 }, + [14] = { 58.4, 34.7, 17, 413 }, + [15] = { 57.4, 34, 17, 413 }, + [16] = { 44.7, 33.8, 17, 413 }, + [17] = { 54.5, 32.1, 17, 413 }, + [18] = { 50.3, 31.5, 17, 413 }, + [19] = { 59.9, 31, 17, 413 }, + [20] = { 50, 30.4, 17, 413 }, + [21] = { 54.7, 30, 17, 413 }, + [22] = { 46.1, 30, 17, 413 }, + [23] = { 48.8, 29.6, 17, 413 }, + [24] = { 60.3, 28.1, 17, 413 }, + [25] = { 43.3, 28.1, 17, 413 }, + [26] = { 49.3, 27.2, 17, 413 }, + [27] = { 53.4, 26.8, 17, 413 }, + [28] = { 45.4, 26.7, 17, 413 }, + [29] = { 48.3, 26.3, 17, 413 }, + [30] = { 41.2, 25.7, 17, 413 }, + [31] = { 54.3, 24.2, 17, 413 }, + [32] = { 47, 24.2, 17, 413 }, + [33] = { 58.2, 23.9, 17, 413 }, + [34] = { 48.8, 23.8, 17, 413 }, + [35] = { 50.2, 23.3, 17, 413 }, + [36] = { 41.5, 22.7, 17, 413 }, + [37] = { 58.7, 22.1, 17, 413 }, + [38] = { 54.4, 21.9, 17, 413 }, + [39] = { 54.3, 21.8, 17, 413 }, + [40] = { 60.3, 21.6, 17, 413 }, + [41] = { 53.4, 20.8, 17, 413 }, + [42] = { 57.7, 20.8, 17, 413 }, + [43] = { 40.8, 20.7, 17, 413 }, + [44] = { 42.5, 20.5, 17, 413 }, + [45] = { 57.6, 20.5, 17, 413 }, + [46] = { 51.7, 20.4, 17, 413 }, + [47] = { 44.2, 19.8, 17, 413 }, + [48] = { 51, 19.5, 17, 413 }, + [49] = { 52.8, 18.6, 17, 413 }, + [50] = { 57.4, 18.1, 17, 413 }, + [51] = { 56.7, 18.1, 17, 413 }, + [52] = { 59.2, 17.7, 17, 413 }, + [53] = { 44.5, 17.6, 17, 413 }, + [54] = { 56.6, 16.6, 17, 413 }, + [55] = { 50.4, 15.4, 17, 413 }, + [56] = { 42.8, 15.3, 17, 413 }, + [57] = { 45.5, 14.7, 17, 413 }, + [58] = { 48.1, 14.5, 17, 413 }, + [59] = { 52.4, 14.3, 17, 413 }, + [60] = { 55, 13.3, 17, 413 }, + [61] = { 50.5, 13, 17, 413 }, + [62] = { 52.4, 12.7, 17, 413 }, + [63] = { 53.8, 12.2, 17, 413 }, + [64] = { 54.7, 10.6, 17, 413 }, + }, + ["lvl"] = "3", + }, + [12297] = { + ["coords"] = {}, + ["lvl"] = "3", + }, + [12298] = { + ["coords"] = { + [1] = { 37.1, 91.2, 148, 413 }, + [2] = { 39.1, 89.9, 148, 413 }, + [3] = { 40.7, 89.8, 148, 413 }, + [4] = { 35.2, 89.3, 148, 413 }, + [5] = { 43.2, 88.4, 148, 413 }, + [6] = { 34.6, 87.3, 148, 413 }, + [7] = { 43.5, 83.4, 148, 413 }, + [8] = { 36.2, 81.9, 148, 413 }, + [9] = { 40.3, 81.8, 148, 413 }, + [10] = { 44, 80.1, 148, 413 }, + [11] = { 41, 77.8, 148, 413 }, + [12] = { 38.4, 77.5, 148, 413 }, + [13] = { 43.1, 75.5, 148, 413 }, + [14] = { 42.2, 73.4, 148, 413 }, + [15] = { 38.9, 70.4, 148, 413 }, + [16] = { 40.1, 69.8, 148, 413 }, + [17] = { 41.9, 69.7, 148, 413 }, + [18] = { 43.3, 66.9, 148, 413 }, + [19] = { 43.7, 64, 148, 413 }, + [20] = { 39.1, 61.9, 148, 413 }, + [21] = { 40.8, 60.2, 148, 413 }, + [22] = { 38.6, 59.2, 148, 413 }, + [23] = { 38.7, 54.5, 148, 413 }, + [24] = { 44, 52.9, 148, 413 }, + [25] = { 41.4, 52.7, 148, 413 }, + [26] = { 40.3, 52.3, 148, 413 }, + [27] = { 46.8, 51.2, 148, 413 }, + [28] = { 41.2, 48.3, 148, 413 }, + [29] = { 46.1, 48.3, 148, 413 }, + [30] = { 43.8, 48.2, 148, 413 }, + [31] = { 39.1, 47.9, 148, 413 }, + [32] = { 41.5, 46.1, 148, 413 }, + [33] = { 45, 44.3, 148, 413 }, + [34] = { 47, 44.1, 148, 413 }, + [35] = { 47.1, 42.2, 148, 413 }, + [36] = { 45.8, 41.5, 148, 413 }, + [37] = { 46, 41.4, 148, 413 }, + [38] = { 43.8, 41.4, 148, 413 }, + [39] = { 47.2, 41.3, 148, 413 }, + [40] = { 43.4, 40.8, 148, 413 }, + [41] = { 42.3, 39.6, 148, 413 }, + [42] = { 48.2, 39, 148, 413 }, + [43] = { 41.8, 38.1, 148, 413 }, + [44] = { 49.1, 36.1, 148, 413 }, + [45] = { 38.6, 36.1, 148, 413 }, + [46] = { 49.5, 35.2, 148, 413 }, + [47] = { 41, 34.8, 148, 413 }, + [48] = { 48.1, 34, 148, 413 }, + [49] = { 46.9, 33.9, 148, 413 }, + [50] = { 51.1, 33.5, 148, 413 }, + [51] = { 51.9, 32.8, 148, 413 }, + [52] = { 45.6, 31.7, 148, 413 }, + [53] = { 43.6, 31.4, 148, 413 }, + [54] = { 51.2, 29.8, 148, 413 }, + [55] = { 49.5, 28.6, 148, 413 }, + [56] = { 44.6, 27.6, 148, 413 }, + [57] = { 47.7, 27.5, 148, 413 }, + [58] = { 46.6, 25, 148, 413 }, + [59] = { 44.5, 24.4, 148, 413 }, + }, + ["lvl"] = "5", + }, + [12299] = { + ["coords"] = {}, + ["lvl"] = "5", + }, + [12317] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [12319] = { + ["coords"] = {}, + ["lvl"] = "14", + }, + [12320] = { + ["coords"] = {}, + ["lvl"] = "13", + }, + [12321] = { + ["coords"] = { + [1] = { 54.9, 33.2, 148, 0 }, + }, + ["lvl"] = "15", + }, + [12322] = { + ["coords"] = { + [1] = { 52.2, 18.4, 139, 345 }, + [2] = { 52.1, 18.4, 139, 345 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [12336] = { + ["coords"] = { + [1] = { 42.6, 24.2, 1519, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "44", + }, + [12337] = { + ["coords"] = { + [1] = { 58.9, 38.2, 139, 610 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [12338] = { + ["coords"] = { + [1] = { 26.6, 75, 405, 300 }, + [2] = { 26.3, 74.9, 405, 300 }, + [3] = { 26, 74.7, 405, 300 }, + [4] = { 26.4, 74.7, 405, 300 }, + [5] = { 25.3, 73.1, 405, 300 }, + [6] = { 25.5, 72.8, 405, 300 }, + [7] = { 23.3, 72.7, 405, 300 }, + [8] = { 25.5, 71.1, 405, 300 }, + [9] = { 25, 70.9, 405, 300 }, + [10] = { 24, 70.8, 405, 300 }, + [11] = { 24.9, 70.8, 405, 300 }, + [12] = { 23.9, 70.7, 405, 300 }, + [13] = { 26.1, 70.3, 405, 300 }, + [14] = { 23.5, 70.3, 405, 300 }, + [15] = { 26, 70.2, 405, 300 }, + [16] = { 24.9, 70.2, 405, 300 }, + [17] = { 24.1, 70.1, 405, 300 }, + [18] = { 25.7, 69.7, 405, 300 }, + [19] = { 26.1, 69.7, 405, 300 }, + [20] = { 24.7, 69.1, 405, 300 }, + [21] = { 26, 67.9, 405, 300 }, + [22] = { 25.4, 67.7, 405, 300 }, + [23] = { 25.7, 67.6, 405, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [12339] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [12340] = { + ["coords"] = { + [1] = { 23.3, 72.9, 405, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [12341] = { + ["coords"] = { + [1] = { 59.9, 52.9, 85, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [12342] = { + ["coords"] = { + [1] = { 59.8, 52.5, 85, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [12343] = { + ["coords"] = { + [1] = { 60, 52.7, 85, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [12344] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [12345] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [12346] = { + ["coords"] = { + [1] = { 55.2, 75.7, 14, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [12347] = { + ["coords"] = { + [1] = { 24.8, 46, 405, 300 }, + [2] = { 24.1, 42.4, 405, 300 }, + [3] = { 26.5, 41.1, 405, 300 }, + [4] = { 24.8, 39.5, 405, 300 }, + [5] = { 25.7, 38.8, 405, 300 }, + [6] = { 28, 37.5, 405, 300 }, + [7] = { 34.3, 35.9, 405, 300 }, + [8] = { 31, 35.7, 405, 300 }, + [9] = { 32.5, 33.8, 405, 300 }, + [10] = { 33.9, 33.2, 405, 300 }, + [11] = { 30.5, 31.9, 405, 300 }, + [12] = { 33.2, 30.4, 405, 300 }, + [13] = { 34.5, 29.1, 405, 300 }, + [14] = { 31.6, 28.2, 405, 300 }, + [15] = { 32.8, 26.6, 405, 300 }, + [16] = { 34.6, 25.9, 405, 300 }, + [17] = { 36.6, 24.6, 405, 300 }, + [18] = { 30.9, 24.4, 405, 300 }, + [19] = { 35.1, 22.5, 405, 300 }, + }, + ["lvl"] = "30-32", + }, + [12348] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [12349] = { + ["coords"] = { + [1] = { 55.2, 75.3, 14, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [12350] = { + ["coords"] = { + [1] = { 55.1, 75.8, 14, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [12351] = { + ["coords"] = { + [1] = { 69.8, 11.9, 1637, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [12352] = { + ["coords"] = {}, + ["lvl"] = "58-59", + }, + [12353] = { + ["coords"] = { + [1] = { 69.4, 11.6, 1637, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [12354] = { + ["coords"] = { + [1] = { 47.7, 58.6, 215, 375 }, + }, + ["fac"] = "AH", + ["lvl"] = "11-12", + }, + [12355] = { + ["coords"] = { + [1] = { 47.8, 58.6, 215, 375 }, + }, + ["fac"] = "AH", + ["lvl"] = "11-12", + }, + [12356] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "12", + }, + [12357] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "12", + }, + [12358] = { + ["coords"] = { + [1] = { 25.3, 50, 141, 300 }, + [2] = { 38.9, 15, 1657, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [12359] = { + ["coords"] = { + [1] = { 25.4, 50.2, 141, 300 }, + [2] = { 39.4, 15.7, 1657, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [12360] = { + ["coords"] = { + [1] = { 25.4, 50, 141, 300 }, + [2] = { 39.4, 14.9, 1657, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [12361] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [12362] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [12363] = { + ["coords"] = { + [1] = { 49.1, 48.2, 1, 270 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [12364] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [12365] = { + ["coords"] = { + [1] = { 49.2, 48.2, 1, 270 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [12366] = { + ["coords"] = { + [1] = { 49, 48.1, 1, 270 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [12367] = { + ["coords"] = { + [1] = { 49.1, 48.2, 1, 270 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [12368] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [12369] = { + ["coords"] = {}, + ["lvl"] = "38", + }, + [12370] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [12371] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [12372] = { + ["coords"] = { + [1] = { 64.1, 50.2, 1, 270 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [12373] = { + ["coords"] = { + [1] = { 64, 50.5, 1, 270 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [12374] = { + ["coords"] = { + [1] = { 64.3, 50.2, 1, 270 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [12375] = { + ["coords"] = { + [1] = { 8.9, 54.3, 11, 300 }, + [2] = { 84.7, 64.7, 12, 270 }, + [3] = { 65.1, 51.8, 15, 300 }, + [4] = { 52.1, 55.3, 267, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [12376] = { + ["coords"] = { + [1] = { 7.9, 54.1, 11, 300 }, + [2] = { 84.3, 64.5, 12, 270 }, + [3] = { 65.1, 51.5, 15, 300 }, + [4] = { 52.3, 55.6, 267, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [12377] = { + ["coords"] = { + [1] = { 28.5, 30.2, 4, 600 }, + [2] = { 28.5, 29.5, 4, 600 }, + [3] = { 54.6, 82.4, 41, 600 }, + [4] = { 54.6, 81.5, 41, 600 }, + [5] = { 55.6, 81.1, 41, 600 }, + [6] = { 54.3, 80.6, 41, 600 }, + [7] = { 54.5, 79.6, 41, 600 }, + [8] = { 52.8, 79.4, 41, 600 }, + [9] = { 49.7, 79, 41, 600 }, + [10] = { 56.8, 78.6, 41, 600 }, + [11] = { 55.7, 78.4, 41, 600 }, + [12] = { 52.9, 78.1, 41, 600 }, + [13] = { 53.9, 76.9, 41, 600 }, + [14] = { 45.6, 76.8, 41, 600 }, + [15] = { 42.4, 75.8, 41, 600 }, + [16] = { 46.8, 74.4, 41, 600 }, + [17] = { 55.2, 74.2, 41, 600 }, + [18] = { 45.7, 72.2, 41, 600 }, + [19] = { 41.3, 70, 41, 600 }, + [20] = { 43.1, 73.2, 41, 600 }, + [21] = { 41.2, 72.4, 41, 600 }, + }, + ["lvl"] = "58-60", + }, + [12378] = { + ["coords"] = { + [1] = { 29.3, 30.2, 4, 600 }, + [2] = { 55.6, 82.5, 41, 600 }, + [3] = { 53.6, 82.3, 41, 600 }, + [4] = { 53.6, 80.9, 41, 600 }, + [5] = { 51.8, 80.1, 41, 600 }, + [6] = { 49.6, 79.9, 41, 600 }, + [7] = { 50.9, 78.2, 41, 600 }, + [8] = { 54.7, 77, 41, 600 }, + [9] = { 43.4, 73.6, 41, 600 }, + [10] = { 43.2, 73.3, 41, 600 }, + [11] = { 43, 70.2, 41, 600 }, + [12] = { 43.5, 70.2, 41, 600 }, + [13] = { 42.4, 75.8, 41, 600 }, + }, + ["lvl"] = "59-60", + }, + [12379] = { + ["coords"] = { + [1] = { 52.6, 80.7, 41, 600 }, + [2] = { 53.8, 78.4, 41, 600 }, + [3] = { 49.8, 78, 41, 600 }, + [4] = { 55.7, 77.2, 41, 600 }, + [5] = { 55, 76.2, 41, 600 }, + [6] = { 43.6, 75.9, 41, 600 }, + [7] = { 44.8, 73.9, 41, 600 }, + [8] = { 44.1, 72.8, 41, 600 }, + [9] = { 43.4, 73.6, 41, 600 }, + [10] = { 43, 70.2, 41, 600 }, + }, + ["lvl"] = "59-60", + }, + [12380] = { + ["coords"] = { + [1] = { 47.2, 81.1, 41, 600 }, + [2] = { 47.9, 79.4, 41, 600 }, + [3] = { 46.6, 79.1, 41, 600 }, + [4] = { 41, 79, 41, 600 }, + [5] = { 45.3, 79, 41, 600 }, + [6] = { 44.4, 78.6, 41, 600 }, + [7] = { 40.8, 78.3, 41, 600 }, + [8] = { 45.2, 78, 41, 600 }, + [9] = { 49.6, 77.9, 41, 600 }, + [10] = { 46.9, 77.6, 41, 600 }, + [11] = { 46.8, 77.3, 41, 600 }, + [12] = { 41.8, 77.2, 41, 600 }, + [13] = { 45.4, 77.2, 41, 600 }, + [14] = { 49.4, 76.8, 41, 600 }, + [15] = { 54.9, 75.1, 41, 600 }, + [16] = { 49.9, 75, 41, 600 }, + [17] = { 48.7, 74.9, 41, 600 }, + [18] = { 43.3, 74.4, 41, 600 }, + [19] = { 41.9, 71.6, 41, 600 }, + [20] = { 42.4, 75.8, 41, 600 }, + [21] = { 43.1, 73.2, 41, 600 }, + [22] = { 41.2, 72.4, 41, 600 }, + }, + ["lvl"] = "59-60", + }, + [12381] = { + ["coords"] = { + [1] = { 48, 78.6, 41, 340 }, + [2] = { 50.4, 77.2, 41, 340 }, + [3] = { 44.2, 67.6, 41, 340 }, + [4] = { 45.4, 63.3, 41, 340 }, + [5] = { 49.6, 56.4, 41, 340 }, + }, + ["lvl"] = "57-58", + }, + [12382] = { + ["coords"] = { + [1] = { 48, 78.6, 41, 340 }, + [2] = { 50.4, 77.2, 41, 340 }, + [3] = { 44.2, 67.6, 41, 340 }, + [4] = { 45.4, 63.3, 41, 340 }, + [5] = { 49.6, 56.4, 41, 340 }, + }, + ["lvl"] = "56-57", + }, + [12383] = { + ["coords"] = { + [1] = { 42.4, 28.6, 215, 375 }, + [2] = { 62.1, 57.8, 1638, 375 }, + }, + ["lvl"] = "1", + }, + [12384] = { + ["coords"] = { + [1] = { 14.4, 33.5, 139, 345 }, + [2] = { 12.6, 32.3, 139, 345 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [12385] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "1", + }, + [12386] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [12387] = { + ["coords"] = { + [1] = { 63.3, 37.1, 28, 315 }, + }, + ["lvl"] = "56-57", + }, + [12396] = { + ["coords"] = { + [1] = { 40, 78.7, 4, 900 }, + [2] = { 41.7, 78.5, 4, 900 }, + [3] = { 43.1, 77.2, 4, 900 }, + [4] = { 44.3, 75.3, 4, 900 }, + [5] = { 42.9, 74.1, 4, 900 }, + [6] = { 45.1, 73.4, 4, 900 }, + [7] = { 44.9, 73.2, 4, 900 }, + [8] = { 44.8, 73, 4, 900 }, + [9] = { 38, 69.2, 4, 900 }, + [10] = { 40.1, 66.5, 4, 900 }, + [11] = { 34.9, 63.7, 4, 900 }, + [12] = { 34.6, 63.7, 4, 900 }, + [13] = { 40.1, 63.3, 4, 900 }, + [14] = { 57.4, 58.5, 4, 120 }, + [15] = { 56.9, 58.1, 4, 120 }, + [16] = { 59.5, 57.8, 4, 120 }, + [17] = { 60, 57.5, 4, 120 }, + [18] = { 74.2, 22.2, 33, 900 }, + [19] = { 72.6, 19.3, 33, 900 }, + [20] = { 72.4, 19.3, 33, 900 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [12397] = { + ["coords"] = { + [1] = { 35.6, 74.3, 4, 259200 }, + [2] = { 72.9, 24.9, 33, 259200 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [12416] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [12417] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [12418] = { + ["coords"] = { + [1] = { 59.9, 45.9, 357, 300 }, + [2] = { 57.8, 45.5, 357, 300 }, + [3] = { 56.3, 43.6, 357, 300 }, + [4] = { 61.3, 43.3, 357, 300 }, + [5] = { 61.3, 43.2, 357, 300 }, + [6] = { 61.2, 43.1, 357, 300 }, + [7] = { 57.7, 43, 357, 300 }, + [8] = { 57.6, 42.9, 357, 300 }, + [9] = { 57.7, 42.9, 357, 300 }, + [10] = { 57.7, 42.8, 357, 300 }, + [11] = { 62, 38.4, 357, 300 }, + [12] = { 62.4, 36.1, 357, 300 }, + [13] = { 63.9, 32.7, 357, 300 }, + [14] = { 63.1, 32.1, 357, 300 }, + [15] = { 61.1, 30.6, 357, 300 }, + [16] = { 61, 30.6, 357, 300 }, + [17] = { 61.4, 30.6, 357, 300 }, + [18] = { 61.6, 30.6, 357, 300 }, + [19] = { 61.5, 30.6, 357, 300 }, + [20] = { 61.1, 30.5, 357, 300 }, + [21] = { 61, 30.5, 357, 300 }, + [22] = { 61.2, 29.6, 357, 300 }, + [23] = { 61.3, 29.6, 357, 300 }, + [24] = { 61.4, 29.6, 357, 300 }, + }, + ["lvl"] = "52-54", + }, + [12419] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "1", + }, + [12420] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [12421] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [12422] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [12423] = { + ["coords"] = { + [1] = { 48.1, 68, 12, 60 }, + }, + ["fac"] = "A", + ["lvl"] = "7", + }, + [12425] = { + ["coords"] = { + [1] = { 43.6, 84.5, 28, 660 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [12426] = { + ["coords"] = {}, + ["lvl"] = "55", + }, + [12427] = { + ["coords"] = { + [1] = { 45.8, 54.6, 1, 60 }, + }, + ["fac"] = "A", + ["lvl"] = "7", + }, + [12428] = { + ["coords"] = { + [1] = { 59.2, 46.5, 85, 60 }, + }, + ["fac"] = "H", + ["lvl"] = "7", + }, + [12429] = { + ["coords"] = { + [1] = { 57.2, 63.5, 141, 60 }, + }, + ["fac"] = "A", + ["lvl"] = "7", + }, + [12430] = { + ["coords"] = { + [1] = { 53.1, 46.5, 14, 60 }, + }, + ["fac"] = "H", + ["lvl"] = "7", + }, + [12431] = { + ["coords"] = { + [1] = { 59.5, 7.6, 130, 5400 }, + }, + ["lvl"] = "13", + ["rnk"] = "4", + }, + [12432] = { + ["coords"] = { + [1] = { 53.8, 51.9, 130, 5400 }, + }, + ["lvl"] = "14", + ["rnk"] = "4", + }, + [12433] = { + ["coords"] = {}, + ["lvl"] = "15", + ["rnk"] = "4", + }, + [12434] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [12435] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [12457] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [12458] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [12459] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [12460] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [12461] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [12462] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [12463] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [12464] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [12465] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [12466] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [12467] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [12468] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [12469] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [12470] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [12473] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [12474] = { + ["coords"] = { + [1] = { 95, 39.8, 331, 1800 }, + [2] = { 94.9, 39.8, 331, 1800 }, + [3] = { 95.1, 39.8, 331, 1800 }, + [4] = { 89.5, 39.8, 331, 1800 }, + [5] = { 89.6, 39.7, 331, 1800 }, + [6] = { 89.5, 39.6, 331, 1800 }, + [7] = { 92.8, 39.5, 331, 1800 }, + [8] = { 92.9, 39.5, 331, 1800 }, + [9] = { 91.5, 39.1, 331, 1800 }, + [10] = { 91.6, 38.9, 331, 1800 }, + [11] = { 91.5, 38.9, 331, 1800 }, + [12] = { 90.4, 38.8, 331, 1800 }, + [13] = { 90.3, 38.8, 331, 1800 }, + [14] = { 90.4, 38.7, 331, 1800 }, + [15] = { 95.3, 37.3, 331, 1800 }, + [16] = { 95.2, 37.3, 331, 1800 }, + [17] = { 92.6, 37.2, 331, 1800 }, + [18] = { 92.7, 37.2, 331, 1800 }, + [19] = { 95.3, 37.2, 331, 1800 }, + [20] = { 92.6, 37.1, 331, 1800 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [12475] = { + ["coords"] = { + [1] = { 95, 39.8, 331, 1800 }, + [2] = { 94.9, 39.8, 331, 1800 }, + [3] = { 95.1, 39.8, 331, 1800 }, + [4] = { 89.5, 39.8, 331, 1800 }, + [5] = { 89.6, 39.7, 331, 1800 }, + [6] = { 89.5, 39.6, 331, 1800 }, + [7] = { 92.8, 39.5, 331, 1800 }, + [8] = { 92.9, 39.5, 331, 1800 }, + [9] = { 91.5, 39.1, 331, 1800 }, + [10] = { 91.6, 38.9, 331, 1800 }, + [11] = { 91.5, 38.9, 331, 1800 }, + [12] = { 90.4, 38.8, 331, 1800 }, + [13] = { 90.3, 38.8, 331, 1800 }, + [14] = { 90.4, 38.7, 331, 1800 }, + [15] = { 95.3, 37.3, 331, 1800 }, + [16] = { 95.2, 37.3, 331, 1800 }, + [17] = { 92.6, 37.2, 331, 1800 }, + [18] = { 92.7, 37.2, 331, 1800 }, + [19] = { 95.3, 37.2, 331, 1800 }, + [20] = { 92.6, 37.1, 331, 1800 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [12476] = { + ["coords"] = { + [1] = { 95, 39.8, 331, 1800 }, + [2] = { 94.9, 39.8, 331, 1800 }, + [3] = { 95.1, 39.8, 331, 1800 }, + [4] = { 89.5, 39.8, 331, 1800 }, + [5] = { 89.6, 39.7, 331, 1800 }, + [6] = { 89.5, 39.6, 331, 1800 }, + [7] = { 92.8, 39.5, 331, 1800 }, + [8] = { 92.9, 39.5, 331, 1800 }, + [9] = { 91.5, 39.1, 331, 1800 }, + [10] = { 91.6, 38.9, 331, 1800 }, + [11] = { 91.5, 38.9, 331, 1800 }, + [12] = { 90.4, 38.8, 331, 1800 }, + [13] = { 90.3, 38.8, 331, 1800 }, + [14] = { 90.4, 38.7, 331, 1800 }, + [15] = { 95.3, 37.3, 331, 1800 }, + [16] = { 95.2, 37.3, 331, 1800 }, + [17] = { 92.6, 37.2, 331, 1800 }, + [18] = { 92.7, 37.2, 331, 1800 }, + [19] = { 95.3, 37.2, 331, 1800 }, + [20] = { 92.6, 37.1, 331, 1800 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [12477] = { + ["coords"] = { + [1] = { 64.9, 33.7, 47, 1800 }, + [2] = { 64.9, 33.6, 47, 1800 }, + [3] = { 65, 33.5, 47, 1800 }, + [4] = { 60.7, 31.2, 47, 1800 }, + [5] = { 60.6, 31.2, 47, 1800 }, + [6] = { 60.7, 31.1, 47, 1800 }, + [7] = { 62.8, 30.8, 47, 1800 }, + [8] = { 67.6, 30.7, 47, 1800 }, + [9] = { 59, 30.7, 47, 1800 }, + [10] = { 67.5, 30.7, 47, 1800 }, + [11] = { 62.8, 30.7, 47, 1800 }, + [12] = { 58.9, 30.7, 47, 1800 }, + [13] = { 67.5, 30.6, 47, 1800 }, + [14] = { 59, 30.6, 47, 1800 }, + [15] = { 66.4, 28.2, 47, 1800 }, + [16] = { 66.4, 28.1, 47, 1800 }, + [17] = { 66.3, 28.1, 47, 1800 }, + [18] = { 68.5, 28.1, 47, 1800 }, + [19] = { 68.4, 27.9, 47, 1800 }, + [20] = { 68.5, 27.9, 47, 1800 }, + [21] = { 61.6, 27.8, 47, 1800 }, + [22] = { 61.6, 27.7, 47, 1800 }, + [23] = { 59.8, 25.6, 47, 1800 }, + [24] = { 59.8, 25.5, 47, 1800 }, + [25] = { 59.7, 25.5, 47, 1800 }, + [26] = { 65.4, 25, 47, 1800 }, + [27] = { 65.3, 24.9, 47, 1800 }, + [28] = { 65.4, 24.9, 47, 1800 }, + [29] = { 65.8, 23, 47, 1800 }, + [30] = { 65.7, 23, 47, 1800 }, + [31] = { 58.6, 18.4, 47, 1800 }, + [32] = { 66.7, 18, 47, 1800 }, + [33] = { 66.7, 17.9, 47, 1800 }, + [34] = { 66.6, 17.8, 47, 1800 }, + [35] = { 61.6, 15.9, 47, 1800 }, + [36] = { 61.5, 15.9, 47, 1800 }, + [37] = { 61.6, 15.8, 47, 1800 }, + [38] = { 69.7, 14.6, 47, 1800 }, + [39] = { 69.7, 14.5, 47, 1800 }, + [40] = { 69.7, 14.4, 47, 1800 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [12478] = { + ["coords"] = { + [1] = { 64.9, 33.7, 47, 1800 }, + [2] = { 64.9, 33.6, 47, 1800 }, + [3] = { 65, 33.5, 47, 1800 }, + [4] = { 60.7, 31.2, 47, 1800 }, + [5] = { 60.6, 31.2, 47, 1800 }, + [6] = { 60.7, 31.1, 47, 1800 }, + [7] = { 62.8, 30.8, 47, 1800 }, + [8] = { 67.6, 30.7, 47, 1800 }, + [9] = { 59, 30.7, 47, 1800 }, + [10] = { 67.5, 30.7, 47, 1800 }, + [11] = { 62.8, 30.7, 47, 1800 }, + [12] = { 58.9, 30.7, 47, 1800 }, + [13] = { 67.5, 30.6, 47, 1800 }, + [14] = { 59, 30.6, 47, 1800 }, + [15] = { 66.4, 28.2, 47, 1800 }, + [16] = { 66.4, 28.1, 47, 1800 }, + [17] = { 66.3, 28.1, 47, 1800 }, + [18] = { 68.5, 28.1, 47, 1800 }, + [19] = { 68.4, 27.9, 47, 1800 }, + [20] = { 68.5, 27.9, 47, 1800 }, + [21] = { 61.6, 27.8, 47, 1800 }, + [22] = { 61.6, 27.7, 47, 1800 }, + [23] = { 59.8, 25.6, 47, 1800 }, + [24] = { 59.8, 25.5, 47, 1800 }, + [25] = { 59.7, 25.5, 47, 1800 }, + [26] = { 65.4, 25, 47, 1800 }, + [27] = { 65.3, 24.9, 47, 1800 }, + [28] = { 65.4, 24.9, 47, 1800 }, + [29] = { 65.8, 23, 47, 1800 }, + [30] = { 65.7, 23, 47, 1800 }, + [31] = { 58.6, 18.4, 47, 1800 }, + [32] = { 66.7, 18, 47, 1800 }, + [33] = { 66.7, 17.9, 47, 1800 }, + [34] = { 66.6, 17.8, 47, 1800 }, + [35] = { 61.6, 15.9, 47, 1800 }, + [36] = { 61.5, 15.9, 47, 1800 }, + [37] = { 61.6, 15.8, 47, 1800 }, + [38] = { 69.7, 14.6, 47, 1800 }, + [39] = { 69.7, 14.5, 47, 1800 }, + [40] = { 69.7, 14.4, 47, 1800 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [12479] = { + ["coords"] = { + [1] = { 64.9, 33.7, 47, 1800 }, + [2] = { 64.9, 33.6, 47, 1800 }, + [3] = { 65, 33.5, 47, 1800 }, + [4] = { 60.7, 31.2, 47, 1800 }, + [5] = { 60.6, 31.2, 47, 1800 }, + [6] = { 60.7, 31.1, 47, 1800 }, + [7] = { 62.8, 30.8, 47, 1800 }, + [8] = { 67.6, 30.7, 47, 1800 }, + [9] = { 59, 30.7, 47, 1800 }, + [10] = { 67.5, 30.7, 47, 1800 }, + [11] = { 62.8, 30.7, 47, 1800 }, + [12] = { 58.9, 30.7, 47, 1800 }, + [13] = { 67.5, 30.6, 47, 1800 }, + [14] = { 59, 30.6, 47, 1800 }, + [15] = { 66.4, 28.2, 47, 1800 }, + [16] = { 66.4, 28.1, 47, 1800 }, + [17] = { 66.3, 28.1, 47, 1800 }, + [18] = { 68.5, 28.1, 47, 1800 }, + [19] = { 68.4, 27.9, 47, 1800 }, + [20] = { 68.5, 27.9, 47, 1800 }, + [21] = { 61.6, 27.8, 47, 1800 }, + [22] = { 61.6, 27.7, 47, 1800 }, + [23] = { 59.8, 25.6, 47, 1800 }, + [24] = { 59.8, 25.5, 47, 1800 }, + [25] = { 59.7, 25.5, 47, 1800 }, + [26] = { 65.4, 25, 47, 1800 }, + [27] = { 65.3, 24.9, 47, 1800 }, + [28] = { 65.4, 24.9, 47, 1800 }, + [29] = { 65.8, 23, 47, 1800 }, + [30] = { 65.7, 23, 47, 1800 }, + [31] = { 58.6, 18.4, 47, 1800 }, + [32] = { 66.7, 18, 47, 1800 }, + [33] = { 66.7, 17.9, 47, 1800 }, + [34] = { 66.6, 17.8, 47, 1800 }, + [35] = { 61.6, 15.9, 47, 1800 }, + [36] = { 61.5, 15.9, 47, 1800 }, + [37] = { 61.6, 15.8, 47, 1800 }, + [38] = { 69.7, 14.6, 47, 1800 }, + [39] = { 69.7, 14.5, 47, 1800 }, + [40] = { 69.7, 14.4, 47, 1800 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [12480] = { + ["coords"] = { + [1] = { 55.9, 60.9, 1519, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "58", + }, + [12481] = { + ["coords"] = { + [1] = { 55.8, 61, 1519, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "57", + }, + [12496] = { + ["coords"] = { + [1] = { 62.9, 25.8, 47, 600 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [12497] = { + ["coords"] = { + [1] = { 51.3, 7.2, 357, 600 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [12498] = { + ["coords"] = { + [1] = { 94, 37.1, 331, 600 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [12516] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [12517] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [12536] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [12557] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [12576] = { + ["coords"] = { + [1] = { 44, 92, 17, 300 }, + [2] = { 31.9, 21.7, 400, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [12577] = { + ["coords"] = { + [1] = { 11.9, 77.6, 16, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [12578] = { + ["coords"] = { + [1] = { 62.5, 24.2, 361, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [12579] = { + ["coords"] = { + [1] = { 30.8, 61.9, 406, 300 }, + }, + ["lvl"] = "26", + ["rnk"] = "1", + }, + [12580] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "63", + ["rnk"] = "1", + }, + [12581] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "2", + }, + [12596] = { + ["coords"] = { + [1] = { 42.9, 85.1, 28, 660 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [12616] = { + ["coords"] = { + [1] = { 73.2, 61.6, 331, 600 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [12617] = { + ["coords"] = { + [1] = { 81.6, 59.3, 139, 610 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [12636] = { + ["coords"] = { + [1] = { 80.2, 57, 139, 610 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [12656] = { + ["coords"] = { + [1] = { 32.7, 42.1, 148, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [12657] = { + ["coords"] = { + [1] = { 5, 57.1, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [12658] = { + ["coords"] = { + [1] = { 5.3, 63.8, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [12676] = { + ["coords"] = { + [1] = { 75, 70.1, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "31", + }, + [12677] = { + ["coords"] = { + [1] = { 57.5, 56.1, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "28", + }, + [12678] = { + ["coords"] = { + [1] = { 39.8, 65.2, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [12696] = { + ["coords"] = { + [1] = { 73.8, 61.5, 331, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [12716] = { + ["coords"] = { + [1] = { 71.3, 56.3, 15, 360 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [12717] = { + ["coords"] = { + [1] = { 12.1, 34.6, 331, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [12718] = { + ["coords"] = { + [1] = { 70, 71.2, 331, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [12719] = { + ["coords"] = { + [1] = { 11.7, 34.9, 331, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [12720] = { + ["coords"] = { + [1] = { 72.9, 63, 331, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "32", + }, + [12721] = { + ["coords"] = { + [1] = { 11.6, 34.9, 331, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "31", + }, + [12722] = { + ["coords"] = { + [1] = { 74.1, 60.2, 331, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "29", + }, + [12723] = { + ["coords"] = { + [1] = { 72.9, 60.6, 331, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "28", + }, + [12724] = { + ["coords"] = { + [1] = { 73.1, 61.5, 331, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "34", + }, + [12736] = { + ["coords"] = { + [1] = { 11.6, 34.3, 331, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [12737] = { + ["coords"] = { + [1] = { 73.7, 60, 331, 600 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + ["rnk"] = "1", + }, + [12738] = { + ["coords"] = { + [1] = { 25, 76, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [12739] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [12740] = { + ["coords"] = { + [1] = { 32.1, 66.6, 493, 600 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [12741] = { + ["coords"] = {}, + ["lvl"] = "40", + }, + [12756] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "62", + ["rnk"] = "3", + }, + [12757] = { + ["coords"] = { + [1] = { 11.9, 34.5, 331, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [12758] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [12759] = { + ["coords"] = { + [1] = { 48.7, 70.6, 331, 300 }, + }, + ["lvl"] = "27", + }, + [12776] = { + ["coords"] = { + [1] = { 40.6, 68.4, 14, 300 }, + [2] = { 66.4, 32.8, 17, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "9", + }, + [12777] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [12778] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "55", + }, + [12779] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "55", + }, + [12780] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "55", + }, + [12781] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [12782] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [12783] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [12784] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "55", + }, + [12785] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "55", + }, + [12786] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "62", + }, + [12787] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "62", + }, + [12788] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "62", + }, + [12789] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "62", + }, + [12790] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "62", + }, + [12791] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "62", + }, + [12792] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [12793] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [12794] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "55", + }, + [12795] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "55", + }, + [12796] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [12797] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "62", + }, + [12798] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "62", + }, + [12799] = { + ["coords"] = { + [1] = { 41.5, 68.6, 1637, 420 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [12800] = { + ["coords"] = { + [1] = { 31.3, 87.8, 357, 600 }, + [2] = { 30.2, 85.3, 357, 600 }, + [3] = { 30.3, 82.7, 357, 600 }, + [4] = { 29.7, 81, 357, 600 }, + [5] = { 29.8, 80.9, 357, 600 }, + [6] = { 28, 76.5, 357, 600 }, + [7] = { 28.2, 74.5, 357, 600 }, + [8] = { 28.2, 73.8, 357, 600 }, + }, + ["lvl"] = "60-61", + ["rnk"] = "1", + }, + [12801] = { + ["coords"] = { + [1] = { 30.2, 87.8, 357, 600 }, + [2] = { 30.9, 85.5, 357, 600 }, + [3] = { 30.6, 85.2, 357, 600 }, + [4] = { 30.6, 80.2, 357, 600 }, + [5] = { 30.1, 79.5, 357, 600 }, + [6] = { 29.6, 78.8, 357, 600 }, + [7] = { 28.6, 77.4, 357, 600 }, + [8] = { 29.2, 75.5, 357, 600 }, + [9] = { 28.1, 73.1, 357, 600 }, + }, + ["lvl"] = "60-62", + ["rnk"] = "1", + }, + [12802] = { + ["coords"] = { + [1] = { 29.7, 80.2, 357, 600 }, + [2] = { 29.1, 79.5, 357, 600 }, + [3] = { 28.7, 78.9, 357, 600 }, + [4] = { 29.2, 78.1, 357, 600 }, + [5] = { 29.1, 76.7, 357, 600 }, + [6] = { 29.6, 75.9, 357, 600 }, + [7] = { 30.6, 75.8, 357, 600 }, + [8] = { 28.5, 71.4, 357, 600 }, + [9] = { 29, 71.3, 357, 600 }, + }, + ["lvl"] = "61-62", + ["rnk"] = "1", + }, + [12803] = { + ["coords"] = { + [1] = { 29.3, 72.6, 357, 600 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [12804] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [12805] = { + ["coords"] = { + [1] = { 73.8, 53.6, 1519, 420 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [12806] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [12807] = { + ["coords"] = { + [1] = { 48.6, 55.3, 8, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [12816] = { + ["coords"] = { + [1] = { 71.2, 95, 406, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [12818] = { + ["coords"] = { + [1] = { 41.5, 34.5, 331, 300 }, + [2] = { 40.6, 98.8, 361, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "26", + }, + [12819] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [12836] = { + ["coords"] = { + [1] = { 46.4, 64.9, 331, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + ["rnk"] = "1", + }, + [12837] = { + ["coords"] = { + [1] = { 74.1, 60.9, 331, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "26", + }, + [12856] = { + ["coords"] = { + [1] = { 72.3, 76.4, 331, 240 }, + [2] = { 70, 76.2, 331, 240 }, + [3] = { 71, 76.1, 331, 240 }, + [4] = { 73.9, 75.1, 331, 240 }, + [5] = { 71.8, 74.6, 331, 240 }, + [6] = { 71.9, 73.7, 331, 240 }, + [7] = { 76.1, 73.1, 331, 240 }, + [8] = { 71, 72.6, 331, 240 }, + [9] = { 72.5, 72.5, 331, 240 }, + [10] = { 74.5, 72.4, 331, 240 }, + [11] = { 75.8, 71.6, 331, 240 }, + [12] = { 73.7, 70.8, 331, 240 }, + [13] = { 75.2, 70.7, 331, 240 }, + [14] = { 76.3, 70.6, 331, 240 }, + [15] = { 75.6, 70.4, 331, 240 }, + [16] = { 72.1, 70.3, 331, 240 }, + [17] = { 72.9, 70.2, 331, 240 }, + [18] = { 74.2, 69.5, 331, 240 }, + [19] = { 72.6, 69.4, 331, 240 }, + [20] = { 76.1, 69, 331, 240 }, + }, + ["fac"] = "A", + ["lvl"] = "23-24", + }, + [12857] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [12858] = { + ["coords"] = { + [1] = { 68.3, 75.3, 331, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "24", + }, + [12859] = { + ["coords"] = { + [1] = { 68.3, 75.4, 331, 900 }, + [2] = { 68.4, 75.4, 331, 900 }, + }, + ["fac"] = "H", + ["lvl"] = "21-22", + }, + [12860] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "24", + }, + [12861] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [12862] = { + ["coords"] = { + [1] = { 71, 68.4, 331, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "28", + }, + [12863] = { + ["coords"] = { + [1] = { 12.2, 34.2, 331, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "29", + }, + [12864] = { + ["coords"] = { + [1] = { 81.8, 53.5, 331, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [12865] = { + ["coords"] = { + [1] = { 48.5, 95.6, 17, 275 }, + [2] = { 42.3, 30, 400, 275 }, + }, + ["lvl"] = "36", + ["rnk"] = "1", + }, + [12866] = { + ["coords"] = { + [1] = { 49, 94.9, 17, 275 }, + [2] = { 43.4, 28.5, 400, 275 }, + }, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [12867] = { + ["coords"] = { + [1] = { 71.1, 68.1, 331, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [12876] = { + ["coords"] = {}, + ["lvl"] = "28", + ["rnk"] = "1", + }, + [12877] = { + ["coords"] = { + [1] = { 73, 62.5, 331, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [12896] = { + ["coords"] = { + [1] = { 65.3, 75.5, 331, 300 }, + [2] = { 65, 75.5, 331, 300 }, + [3] = { 64.3, 75.3, 331, 300 }, + [4] = { 65.4, 75.2, 331, 300 }, + [5] = { 64.6, 75.2, 331, 300 }, + [6] = { 65.8, 75, 331, 300 }, + [7] = { 66.1, 74.5, 331, 300 }, + [8] = { 64.3, 74.3, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "22-23", + }, + [12897] = { + ["coords"] = { + [1] = { 64.6, 75.5, 331, 300 }, + [2] = { 64.9, 75.2, 331, 300 }, + [3] = { 64.4, 74.8, 331, 300 }, + [4] = { 65.9, 74.7, 331, 300 }, + [5] = { 63.8, 74.3, 331, 300 }, + [6] = { 64.2, 73.5, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "21-22", + }, + [12898] = { + ["coords"] = { + [1] = { 92.8, 38.7, 331, 5400 }, + }, + ["lvl"] = "62", + }, + [12899] = { + ["coords"] = { + [1] = { 81.8, 48.2, 11, 600 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [12900] = { + ["coords"] = { + [1] = { 74.2, 68, 8, 600 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [12902] = { + ["coords"] = {}, + ["lvl"] = "26", + ["rnk"] = "1", + }, + [12903] = { + ["coords"] = { + [1] = { 69.7, 71.7, 331, 300 }, + [2] = { 70.1, 71.5, 331, 300 }, + [3] = { 69.8, 71.3, 331, 300 }, + [4] = { 71, 68.7, 331, 300 }, + [5] = { 70.7, 68.1, 331, 300 }, + [6] = { 71.3, 67.9, 331, 300 }, + [7] = { 71.6, 67.5, 331, 300 }, + [8] = { 73.3, 63.7, 331, 300 }, + [9] = { 73.7, 63.7, 331, 300 }, + [10] = { 73.4, 63.6, 331, 300 }, + [11] = { 73.6, 63.6, 331, 300 }, + [12] = { 72.9, 63.1, 331, 300 }, + [13] = { 74.2, 62.9, 331, 300 }, + [14] = { 73.1, 62.9, 331, 300 }, + [15] = { 74, 62.8, 331, 300 }, + [16] = { 72.8, 62.6, 331, 300 }, + [17] = { 74, 62.2, 331, 300 }, + [18] = { 73.2, 61.9, 331, 300 }, + [19] = { 73.7, 61.6, 331, 300 }, + [20] = { 73.7, 61.2, 331, 300 }, + [21] = { 73.2, 60.7, 331, 300 }, + [22] = { 73.3, 59.7, 331, 300 }, + [23] = { 73.4, 59.7, 331, 300 }, + [24] = { 73.2, 59.4, 331, 300 }, + [25] = { 12, 34.7, 331, 300 }, + [26] = { 11.8, 34.4, 331, 300 }, + [27] = { 12.2, 34.4, 331, 300 }, + [28] = { 11.9, 33.6, 331, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [12904] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [12916] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [12917] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [12918] = { + ["coords"] = { + [1] = { 56.7, 64.1, 331, 0 }, + }, + ["lvl"] = "26", + }, + [12919] = { + ["coords"] = { + [1] = { 58.6, 59.9, 15, 360 }, + }, + ["fac"] = "AH", + ["lvl"] = "45", + }, + [12920] = { + ["coords"] = { + [1] = { 73.4, 36.9, 45, 400 }, + }, + ["fac"] = "H", + ["lvl"] = "48", + }, + [12921] = { + ["coords"] = {}, + ["lvl"] = "23-24", + }, + [12922] = { + ["coords"] = {}, + ["lvl"] = "46", + }, + [12923] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "43-46", + }, + [12924] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "44-48", + }, + [12925] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "46-50", + }, + [12936] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "44-48", + }, + [12937] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "46-50", + }, + [12938] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "43-46", + }, + [12939] = { + ["coords"] = { + [1] = { 67.8, 49, 15, 360 }, + }, + ["fac"] = "A", + ["lvl"] = "48", + }, + [12940] = { + ["coords"] = {}, + ["lvl"] = "22", + }, + [12941] = { + ["coords"] = { + [1] = { 80.6, 57.6, 139, 345 }, + }, + ["lvl"] = "56", + }, + [12942] = { + ["coords"] = { + [1] = { 43.1, 84.3, 28, 315 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [12943] = { + ["coords"] = { + [1] = { 26.7, 56.8, 28, 300 }, + [2] = { 83.3, 69.7, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [12944] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [12956] = { + ["coords"] = { + [1] = { 23, 16.4, 490, 300 }, + [2] = { 82, 17.7, 1377, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "59", + }, + [12957] = { + ["coords"] = { + [1] = { 45.2, 90.8, 16, 333 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [12958] = { + ["coords"] = { + [1] = { 34.5, 38.6, 47, 350 }, + }, + ["fac"] = "AH", + ["lvl"] = "52", + }, + [12959] = { + ["coords"] = { + [1] = { 43.3, 7.7, 490, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "52", + }, + [12960] = { + ["coords"] = { + [1] = { 66.6, 7, 405, 300 }, + [2] = { 41.1, 82.1, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [12961] = { + ["coords"] = { + [1] = { 10.8, 33.7, 331, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [12962] = { + ["coords"] = { + [1] = { 11.7, 34.1, 331, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [12976] = { + ["coords"] = {}, + ["lvl"] = "33-34", + }, + [12977] = { + ["coords"] = {}, + ["lvl"] = "34-35", + }, + [12996] = { + ["coords"] = { + [1] = { 71, 31.2, 1, 300 }, + [2] = { 70.3, 26.6, 1, 300 }, + [3] = { 69.1, 19.7, 1, 300 }, + [4] = { 69.7, 18.8, 1, 300 }, + [5] = { 24.5, 68.1, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [12997] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "12", + }, + [12998] = { + ["coords"] = { + [1] = { 16.4, 71.2, 11, 60 }, + [2] = { 21, 69.9, 11, 60 }, + [3] = { 25.7, 68.3, 11, 60 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [12999] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [13000] = { + ["coords"] = { + [1] = { 84.1, 41.5, 1, 855 }, + [2] = { 27.3, 36.2, 1, 855 }, + [3] = { 71.2, 27.5, 1, 300 }, + [4] = { 70, 26.7, 1, 300 }, + [5] = { 71.3, 26.6, 1, 300 }, + [6] = { 71.2, 26.6, 1, 300 }, + [7] = { 71.2, 26.3, 1, 300 }, + [8] = { 71.1, 25.3, 1, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [13016] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [13017] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [13018] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "12", + }, + [13019] = { + ["coords"] = { + [1] = { 55.2, 30.2, 405, 300 }, + }, + ["lvl"] = "33", + }, + [13020] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [13021] = { + ["coords"] = {}, + ["lvl"] = "56", + ["rnk"] = "1", + }, + [13022] = { + ["coords"] = {}, + ["lvl"] = "54", + }, + [13036] = { + ["coords"] = {}, + ["lvl"] = "57-59", + }, + [13056] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [13076] = { + ["coords"] = { + [1] = { 68.1, 56.2, 1, 300 }, + [2] = { 68, 56.1, 1, 300 }, + [3] = { 68.9, 55, 1, 300 }, + [4] = { 68, 55, 1, 300 }, + [5] = { 68.3, 54.9, 1, 300 }, + [6] = { 62.8, 54.6, 1, 300 }, + [7] = { 67.7, 53.7, 1, 300 }, + [8] = { 84.7, 51.3, 1, 300 }, + [9] = { 85.2, 50.5, 1, 300 }, + [10] = { 86.1, 50.5, 1, 300 }, + [11] = { 30.2, 46.3, 1, 300 }, + [12] = { 30.1, 45.9, 1, 300 }, + [13] = { 30.6, 45.8, 1, 300 }, + [14] = { 30.6, 45.2, 1, 300 }, + [15] = { 30, 45, 1, 300 }, + [16] = { 83, 40.1, 1, 300 }, + [17] = { 83.8, 39.6, 1, 300 }, + [18] = { 82.8, 37.3, 1, 300 }, + [19] = { 83.7, 36.2, 1, 300 }, + [20] = { 83.5, 35.1, 1, 300 }, + [21] = { 83.1, 34.3, 1, 300 }, + [22] = { 83.5, 34.2, 1, 300 }, + [23] = { 84.4, 32.7, 1, 300 }, + [24] = { 13, 25.3, 38, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [13078] = { + ["coords"] = { + [1] = { 52.5, 7.3, 2597, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "58", + }, + [13079] = { + ["coords"] = { + [1] = { 52.5, 7.3, 2597, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "58", + }, + [13080] = { + ["coords"] = { + [1] = { 52.8, 9.1, 2597, 300 }, + [2] = { 51.2, 9, 2597, 300 }, + [3] = { 50.6, 8.4, 2597, 300 }, + [4] = { 52.4, 8, 2597, 300 }, + [5] = { 52.6, 7.7, 2597, 300 }, + [6] = { 52.6, 6.5, 2597, 300 }, + [7] = { 49.7, 6.4, 2597, 300 }, + [8] = { 51.3, 5.1, 2597, 300 }, + [9] = { 49.9, 5.1, 2597, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "54-55", + }, + [13081] = { + ["coords"] = { + [1] = { 52.8, 9.1, 2597, 300 }, + [2] = { 51.2, 9, 2597, 300 }, + [3] = { 50.6, 8.4, 2597, 300 }, + [4] = { 52.4, 8, 2597, 300 }, + [5] = { 52.6, 7.7, 2597, 300 }, + [6] = { 52.6, 6.5, 2597, 300 }, + [7] = { 49.7, 6.4, 2597, 300 }, + [8] = { 51.3, 5.1, 2597, 300 }, + [9] = { 49.9, 5.1, 2597, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "54-55", + }, + [13082] = { + ["coords"] = {}, + ["lvl"] = "33", + ["rnk"] = "1", + }, + [13083] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [13084] = { + ["coords"] = { + [1] = { 62.2, 89.6, 1537, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + ["rnk"] = "1", + }, + [13085] = { + ["coords"] = { + [1] = { 84.9, 80.4, 36, 600 }, + [2] = { 0.5, 57.2, 47, 600 }, + [3] = { 83.2, 18.8, 267, 600 }, + }, + ["lvl"] = "57", + ["rnk"] = "1", + }, + [13086] = { + ["coords"] = { + [1] = { 44.2, 68.5, 2597, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "58", + }, + [13087] = { + ["coords"] = { + [1] = { 47.9, 73.1, 2597, 300 }, + [2] = { 47.3, 72.9, 2597, 300 }, + [3] = { 43.3, 72.1, 2597, 300 }, + [4] = { 43.4, 72.1, 2597, 300 }, + [5] = { 46.8, 72.1, 2597, 300 }, + [6] = { 48.2, 71.9, 2597, 300 }, + [7] = { 46.7, 71.9, 2597, 300 }, + [8] = { 47, 71.5, 2597, 300 }, + [9] = { 46.8, 71.3, 2597, 300 }, + [10] = { 45.3, 71.2, 2597, 300 }, + [11] = { 47.9, 70.9, 2597, 300 }, + [12] = { 47.5, 70.6, 2597, 300 }, + [13] = { 43.3, 70.2, 2597, 300 }, + [14] = { 45.6, 70.1, 2597, 300 }, + [15] = { 45.1, 69, 2597, 300 }, + [16] = { 43.7, 68.7, 2597, 300 }, + [17] = { 44.1, 68.6, 2597, 300 }, + [18] = { 45.4, 67.7, 2597, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "54-55", + }, + [13088] = { + ["coords"] = { + [1] = { 44.2, 68.5, 2597, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "58", + }, + [13089] = { + ["coords"] = { + [1] = { 47.9, 73.1, 2597, 300 }, + [2] = { 47.3, 72.9, 2597, 300 }, + [3] = { 43.3, 72.1, 2597, 300 }, + [4] = { 43.4, 72.1, 2597, 300 }, + [5] = { 46.8, 72.1, 2597, 300 }, + [6] = { 48.2, 71.9, 2597, 300 }, + [7] = { 46.7, 71.9, 2597, 300 }, + [8] = { 47, 71.5, 2597, 300 }, + [9] = { 46.8, 71.3, 2597, 300 }, + [10] = { 45.3, 71.2, 2597, 300 }, + [11] = { 47.9, 70.9, 2597, 300 }, + [12] = { 47.5, 70.6, 2597, 300 }, + [13] = { 43.3, 70.2, 2597, 300 }, + [14] = { 45.6, 70.1, 2597, 300 }, + [15] = { 43.9, 69.2, 2597, 300 }, + [16] = { 45.1, 69.1, 2597, 300 }, + [17] = { 43.7, 68.7, 2597, 300 }, + [18] = { 44.1, 68.6, 2597, 300 }, + [19] = { 45.4, 67.7, 2597, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "54-55", + }, + [13096] = { + ["coords"] = { + [1] = { 43.1, 73, 2597, 300 }, + [2] = { 44.1, 72.9, 2597, 300 }, + [3] = { 46.1, 72.4, 2597, 300 }, + [4] = { 46.4, 72.2, 2597, 300 }, + [5] = { 43.3, 72.1, 2597, 300 }, + [6] = { 46.7, 72.1, 2597, 300 }, + [7] = { 45.4, 71.7, 2597, 300 }, + [8] = { 45.8, 71.5, 2597, 300 }, + [9] = { 43, 71, 2597, 300 }, + [10] = { 45.6, 70.8, 2597, 300 }, + [11] = { 44.8, 70.4, 2597, 300 }, + [12] = { 44, 70.2, 2597, 300 }, + [13] = { 43.3, 70.2, 2597, 300 }, + [14] = { 44.7, 69.9, 2597, 300 }, + [15] = { 43, 69.4, 2597, 300 }, + [16] = { 43.5, 69.2, 2597, 300 }, + [17] = { 45.5, 69.2, 2597, 300 }, + [18] = { 43.9, 69.2, 2597, 300 }, + [19] = { 44.4, 69.1, 2597, 300 }, + [20] = { 45.5, 69.1, 2597, 300 }, + [21] = { 43.5, 69.1, 2597, 300 }, + [22] = { 42.5, 68.9, 2597, 300 }, + [23] = { 44.3, 68.4, 2597, 300 }, + [24] = { 45.6, 67.7, 2597, 300 }, + [25] = { 43.4, 67.7, 2597, 300 }, + [26] = { 43.6, 67.6, 2597, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "54-55", + }, + [13097] = { + ["coords"] = { + [1] = { 43.1, 73, 2597, 300 }, + [2] = { 44.1, 72.9, 2597, 300 }, + [3] = { 46.1, 72.4, 2597, 300 }, + [4] = { 46.4, 72.2, 2597, 300 }, + [5] = { 46.7, 72.1, 2597, 300 }, + [6] = { 45.4, 71.7, 2597, 300 }, + [7] = { 45.8, 71.5, 2597, 300 }, + [8] = { 43, 71, 2597, 300 }, + [9] = { 45.6, 70.8, 2597, 300 }, + [10] = { 44.8, 70.4, 2597, 300 }, + [11] = { 44, 70.2, 2597, 300 }, + [12] = { 44.7, 69.9, 2597, 300 }, + [13] = { 43, 69.4, 2597, 300 }, + [14] = { 45.5, 69.2, 2597, 300 }, + [15] = { 43.5, 69.2, 2597, 300 }, + [16] = { 44.4, 69.1, 2597, 300 }, + [17] = { 45.5, 69.1, 2597, 300 }, + [18] = { 43.5, 69.1, 2597, 300 }, + [19] = { 42.5, 68.9, 2597, 300 }, + [20] = { 44.3, 68.4, 2597, 300 }, + [21] = { 45.6, 67.7, 2597, 300 }, + [22] = { 43.4, 67.7, 2597, 300 }, + [23] = { 43.6, 67.6, 2597, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "54-55", + }, + [13098] = { + ["coords"] = { + [1] = { 49.7, 9.8, 2597, 300 }, + [2] = { 52.8, 9.4, 2597, 300 }, + [3] = { 49.6, 9.2, 2597, 300 }, + [4] = { 50.3, 9.2, 2597, 300 }, + [5] = { 51.8, 9.1, 2597, 300 }, + [6] = { 50.8, 8.7, 2597, 300 }, + [7] = { 50.2, 8.4, 2597, 300 }, + [8] = { 52.1, 7.5, 2597, 300 }, + [9] = { 50.1, 7.4, 2597, 300 }, + [10] = { 50.2, 7.2, 2597, 300 }, + [11] = { 51.5, 7.2, 2597, 300 }, + [12] = { 50, 6.7, 2597, 300 }, + [13] = { 52.2, 6.5, 2597, 300 }, + [14] = { 52.9, 6.2, 2597, 300 }, + [15] = { 51.4, 5.8, 2597, 300 }, + [16] = { 51.4, 5.7, 2597, 300 }, + [17] = { 51.5, 5.7, 2597, 300 }, + [18] = { 52.2, 5.4, 2597, 300 }, + [19] = { 50.3, 5.3, 2597, 300 }, + [20] = { 51, 5.2, 2597, 300 }, + [21] = { 49.9, 4.8, 2597, 300 }, + [22] = { 52.7, 4.4, 2597, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "54-55", + }, + [13099] = { + ["coords"] = { + [1] = { 49.7, 9.8, 2597, 300 }, + [2] = { 52.8, 9.4, 2597, 300 }, + [3] = { 49.6, 9.2, 2597, 300 }, + [4] = { 50.3, 9.2, 2597, 300 }, + [5] = { 51.8, 9.1, 2597, 300 }, + [6] = { 50.8, 8.7, 2597, 300 }, + [7] = { 50.2, 8.4, 2597, 300 }, + [8] = { 52.1, 7.5, 2597, 300 }, + [9] = { 50.1, 7.4, 2597, 300 }, + [10] = { 50.2, 7.2, 2597, 300 }, + [11] = { 51.5, 7.2, 2597, 300 }, + [12] = { 50, 6.7, 2597, 300 }, + [13] = { 52.2, 6.5, 2597, 300 }, + [14] = { 52.9, 6.2, 2597, 300 }, + [15] = { 51.4, 5.8, 2597, 300 }, + [16] = { 51.4, 5.7, 2597, 300 }, + [17] = { 51.6, 5.7, 2597, 300 }, + [18] = { 52.2, 5.4, 2597, 300 }, + [19] = { 50.3, 5.3, 2597, 300 }, + [20] = { 51, 5.2, 2597, 300 }, + [21] = { 49.9, 4.8, 2597, 300 }, + [22] = { 52.7, 4.4, 2597, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "54-55", + }, + [13116] = { + ["coords"] = { + [1] = { 49.9, 91.4, 2597, 120 }, + [2] = { 48, 77, 2597, 120 }, + [3] = { 51.6, 57.2, 2597, 120 }, + [4] = { 41.3, 44, 2597, 120 }, + [5] = { 53.8, 35.8, 2597, 120 }, + [6] = { 41, 15.7, 2597, 120 }, + [7] = { 50.9, 14.5, 2597, 120 }, + [8] = { 53.6, 7.5, 2597, 120 }, + [9] = { 42.5, 26.7, 3277, 86400 }, + [10] = { 37.1, 62.6, 3358, 86400 }, + [11] = { 60.7, 57.7, 3358, 86400 }, + [12] = { 51.1, 41.9, 3358, 86400 }, + [13] = { 39.1, 26.3, 3358, 86400 }, + [14] = { 61, 25.7, 3358, 86400 }, + [15] = { 32.9, 12.9, 3358, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [13117] = { + ["coords"] = { + [1] = { 49.9, 91.4, 2597, 120 }, + [2] = { 48, 77, 2597, 120 }, + [3] = { 56.6, 67.4, 2597, 120 }, + [4] = { 51.6, 57.2, 2597, 120 }, + [5] = { 41.3, 44, 2597, 120 }, + [6] = { 53.8, 35.8, 2597, 120 }, + [7] = { 41, 15.7, 2597, 120 }, + [8] = { 50.9, 14.5, 2597, 120 }, + [9] = { 57.1, 77.5, 3277, 86400 }, + [10] = { 69, 67.8, 3358, 86400 }, + [11] = { 37.1, 62.6, 3358, 86400 }, + [12] = { 60.7, 57.7, 3358, 86400 }, + [13] = { 51.1, 41.9, 3358, 86400 }, + [14] = { 39.1, 26.3, 3358, 86400 }, + [15] = { 61, 25.7, 3358, 86400 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [13118] = { + ["coords"] = { + [1] = { 59.1, 38.4, 139, 610 }, + [2] = { 59.1, 38.3, 139, 610 }, + [3] = { 58.9, 38, 139, 610 }, + [4] = { 58.8, 37.9, 139, 610 }, + }, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [13136] = { + ["coords"] = {}, + ["lvl"] = "57-58", + }, + [13137] = { + ["coords"] = { + [1] = { 50.9, 61, 2597, 432000 }, + }, + ["fac"] = "H", + ["lvl"] = "59", + ["rnk"] = "1", + }, + [13138] = { + ["coords"] = { + [1] = { 51.9, 35.6, 2597, 432000 }, + }, + ["fac"] = "A", + ["lvl"] = "59", + ["rnk"] = "1", + }, + [13139] = { + ["coords"] = { + [1] = { 52.9, 44.1, 2597, 432000 }, + }, + ["fac"] = "A", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [13140] = { + ["coords"] = { + [1] = { 48.3, 58.6, 2597, 432000 }, + }, + ["fac"] = "H", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [13141] = { + ["coords"] = {}, + ["lvl"] = "43-44", + ["rnk"] = "1", + }, + [13142] = { + ["coords"] = {}, + ["lvl"] = "44-45", + ["rnk"] = "1", + }, + [13143] = { + ["coords"] = { + [1] = { 51.6, 60, 2597, 432000 }, + }, + ["fac"] = "H", + ["lvl"] = "59", + ["rnk"] = "1", + }, + [13144] = { + ["coords"] = { + [1] = { 46.6, 56.1, 2597, 432000 }, + }, + ["fac"] = "H", + ["lvl"] = "59", + ["rnk"] = "1", + }, + [13145] = { + ["coords"] = { + [1] = { 48.8, 55.8, 2597, 432000 }, + }, + ["fac"] = "H", + ["lvl"] = "59", + ["rnk"] = "1", + }, + [13146] = { + ["coords"] = { + [1] = { 49.6, 59.2, 2597, 432000 }, + }, + ["fac"] = "H", + ["lvl"] = "59", + ["rnk"] = "1", + }, + [13147] = { + ["coords"] = { + [1] = { 46.2, 55.8, 2597, 432000 }, + }, + ["fac"] = "H", + ["lvl"] = "59", + ["rnk"] = "1", + }, + [13148] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [13149] = { + ["coords"] = {}, + ["lvl"] = "53", + ["rnk"] = "1", + }, + [13150] = { + ["coords"] = {}, + ["lvl"] = "57", + ["rnk"] = "1", + }, + [13151] = { + ["coords"] = { + [1] = { 56.9, 49.9, 2597, 490 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [13152] = { + ["coords"] = { + [1] = { 50.3, 77, 2597, 432000 }, + }, + ["fac"] = "H", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [13153] = { + ["coords"] = { + [1] = { 49.4, 88.2, 2597, 432000 }, + }, + ["fac"] = "H", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [13154] = { + ["coords"] = { + [1] = { 50.4, 65.5, 2597, 432000 }, + }, + ["fac"] = "H", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [13155] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [13156] = { + ["coords"] = {}, + ["lvl"] = "12", + }, + [13157] = { + ["coords"] = { + [1] = { 61.5, 66.3, 14, 300 }, + }, + ["lvl"] = "12", + }, + [13158] = { + ["coords"] = { + [1] = { 30.8, 29.7, 28, 300 }, + [2] = { 87.2, 43.9, 85, 300 }, + }, + ["lvl"] = "12", + }, + [13159] = { + ["coords"] = { + [1] = { 78.6, 67.1, 12, 270 }, + }, + ["lvl"] = "12", + }, + [13160] = { + ["coords"] = {}, + ["lvl"] = "57-58", + }, + [13161] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [13176] = { + ["coords"] = { + [1] = { 49.5, 82.7, 2597, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [13177] = { + ["coords"] = { + [1] = { 65.7, 24.2, 46, 900 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [13178] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [13179] = { + ["coords"] = { + [1] = { 50.5, 31, 2597, 432000 }, + }, + ["fac"] = "H", + ["lvl"] = "59", + ["rnk"] = "1", + }, + [13180] = { + ["coords"] = { + [1] = { 53.8, 26.9, 2597, 432000 }, + }, + ["fac"] = "H", + ["lvl"] = "58", + ["rnk"] = "1", + }, + [13181] = { + ["coords"] = { + [1] = { 45.4, 13.9, 2597, 432000 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [13196] = { + ["coords"] = {}, + ["lvl"] = "54-55", + ["rnk"] = "1", + }, + [13197] = { + ["coords"] = {}, + ["lvl"] = "56", + ["rnk"] = "1", + }, + [13216] = { + ["coords"] = { + [1] = { 44.3, 18.2, 2597, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "58", + ["rnk"] = "1", + }, + [13217] = { + ["coords"] = { + [1] = { 39.4, 81.7, 36, 600 }, + [2] = { 43.4, 19.9, 267, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "58", + ["rnk"] = "1", + }, + [13218] = { + ["coords"] = { + [1] = { 49.3, 82.5, 2597, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "58", + ["rnk"] = "1", + }, + [13219] = { + ["coords"] = { + [1] = { 62.8, 59.3, 36, 600 }, + }, + ["fac"] = "H", + ["lvl"] = "58", + ["rnk"] = "1", + }, + [13220] = { + ["coords"] = { + [1] = { 22.9, 17.5, 490, 300 }, + [2] = { 81.9, 18.9, 1377, 300 }, + }, + ["lvl"] = "55", + }, + [13221] = { + ["coords"] = {}, + ["lvl"] = "58", + ["rnk"] = "1", + }, + [13236] = { + ["coords"] = { + [1] = { 50.1, 85.1, 2597, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [13256] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "61", + ["rnk"] = "3", + }, + [13257] = { + ["coords"] = { + [1] = { 43.5, 15.5, 2597, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [13276] = { + ["coords"] = {}, + ["lvl"] = "56", + }, + [13277] = { + ["coords"] = { + [1] = { 66.8, 45.1, 15, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [13278] = { + ["coords"] = { + [1] = { 79.2, 73.6, 16, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [13279] = { + ["coords"] = {}, + ["lvl"] = "54-57", + }, + [13280] = { + ["coords"] = {}, + ["lvl"] = "57", + ["rnk"] = "1", + }, + [13281] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "60", + }, + [13282] = { + ["coords"] = {}, + ["lvl"] = "48", + ["rnk"] = "1", + }, + [13283] = { + ["coords"] = { + [1] = { 78.3, 57, 1519, 490 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [13284] = { + ["coords"] = { + [1] = { 50.2, 85.2, 2597, 120 }, + [2] = { 50.2, 85.1, 2597, 120 }, + [3] = { 50.2, 85, 2597, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "58", + ["rnk"] = "1", + }, + [13285] = { + ["coords"] = {}, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [13296] = { + ["coords"] = { + [1] = { 49.6, 38.1, 2597, 432000 }, + }, + ["fac"] = "A", + ["lvl"] = "59", + ["rnk"] = "1", + }, + [13297] = { + ["coords"] = { + [1] = { 49.1, 37.8, 2597, 432000 }, + }, + ["fac"] = "A", + ["lvl"] = "59", + ["rnk"] = "1", + }, + [13298] = { + ["coords"] = { + [1] = { 48.6, 37.9, 2597, 432000 }, + }, + ["fac"] = "A", + ["lvl"] = "59", + ["rnk"] = "1", + }, + [13299] = { + ["coords"] = { + [1] = { 51.7, 31.5, 2597, 432000 }, + }, + ["fac"] = "A", + ["lvl"] = "59", + ["rnk"] = "1", + }, + [13300] = { + ["coords"] = { + [1] = { 53.4, 39.9, 2597, 432000 }, + }, + ["fac"] = "A", + ["lvl"] = "59", + ["rnk"] = "1", + }, + [13301] = { + ["coords"] = {}, + ["lvl"] = "56-57", + }, + [13316] = { + ["coords"] = { + [1] = { 42.9, 73.1, 2597, 300 }, + [2] = { 42.9, 72.9, 2597, 300 }, + [3] = { 44.1, 72.5, 2597, 300 }, + [4] = { 46.5, 72.4, 2597, 300 }, + [5] = { 44.2, 72.4, 2597, 300 }, + [6] = { 46.3, 72.1, 2597, 300 }, + [7] = { 46.5, 72.1, 2597, 300 }, + [8] = { 44.7, 72.1, 2597, 300 }, + [9] = { 45.4, 72, 2597, 300 }, + [10] = { 43.5, 72, 2597, 300 }, + [11] = { 46.1, 72, 2597, 300 }, + [12] = { 45.3, 71.9, 2597, 300 }, + [13] = { 43.4, 71.8, 2597, 300 }, + [14] = { 45.7, 71.6, 2597, 300 }, + [15] = { 45.7, 71.4, 2597, 300 }, + [16] = { 45, 71.1, 2597, 300 }, + [17] = { 43.1, 70.9, 2597, 300 }, + [18] = { 45.2, 70.9, 2597, 300 }, + [19] = { 45.5, 70.8, 2597, 300 }, + [20] = { 43.1, 70.7, 2597, 300 }, + [21] = { 45.6, 70.5, 2597, 300 }, + [22] = { 45.5, 70.5, 2597, 300 }, + [23] = { 44, 70.5, 2597, 300 }, + [24] = { 44.2, 70.4, 2597, 300 }, + [25] = { 43.6, 70.4, 2597, 300 }, + [26] = { 43.5, 70.3, 2597, 300 }, + [27] = { 45, 70.1, 2597, 300 }, + [28] = { 45.8, 70.1, 2597, 300 }, + [29] = { 44.9, 70, 2597, 300 }, + [30] = { 44.4, 69.5, 2597, 300 }, + [31] = { 45.1, 69.5, 2597, 300 }, + [32] = { 43.4, 69.4, 2597, 300 }, + [33] = { 42.9, 69.4, 2597, 300 }, + [34] = { 45.6, 69.4, 2597, 300 }, + [35] = { 43.4, 69.3, 2597, 300 }, + [36] = { 45.6, 69.3, 2597, 300 }, + [37] = { 43.5, 69.2, 2597, 300 }, + [38] = { 45.6, 69.2, 2597, 300 }, + [39] = { 42.2, 69.2, 2597, 300 }, + [40] = { 44, 69.2, 2597, 300 }, + [41] = { 43, 69.1, 2597, 300 }, + [42] = { 43.9, 68.9, 2597, 300 }, + [43] = { 42.1, 68.6, 2597, 300 }, + [44] = { 45.6, 68.1, 2597, 300 }, + [45] = { 45.2, 68, 2597, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "52-53", + }, + [13317] = { + ["coords"] = { + [1] = { 42.9, 73.1, 2597, 300 }, + [2] = { 42.9, 72.9, 2597, 300 }, + [3] = { 44.1, 72.5, 2597, 300 }, + [4] = { 46.5, 72.4, 2597, 300 }, + [5] = { 44.2, 72.4, 2597, 300 }, + [6] = { 46.3, 72.1, 2597, 300 }, + [7] = { 46.5, 72.1, 2597, 300 }, + [8] = { 44.7, 72.1, 2597, 300 }, + [9] = { 45.4, 72, 2597, 300 }, + [10] = { 43.5, 72, 2597, 300 }, + [11] = { 46.1, 72, 2597, 300 }, + [12] = { 45.3, 71.9, 2597, 300 }, + [13] = { 43.4, 71.8, 2597, 300 }, + [14] = { 45.7, 71.6, 2597, 300 }, + [15] = { 45.7, 71.4, 2597, 300 }, + [16] = { 45, 71.1, 2597, 300 }, + [17] = { 43.1, 70.9, 2597, 300 }, + [18] = { 45.2, 70.9, 2597, 300 }, + [19] = { 45.5, 70.8, 2597, 300 }, + [20] = { 43.1, 70.7, 2597, 300 }, + [21] = { 45.6, 70.5, 2597, 300 }, + [22] = { 45.5, 70.5, 2597, 300 }, + [23] = { 44, 70.5, 2597, 300 }, + [24] = { 44.2, 70.4, 2597, 300 }, + [25] = { 43.6, 70.4, 2597, 300 }, + [26] = { 43.5, 70.3, 2597, 300 }, + [27] = { 45, 70.1, 2597, 300 }, + [28] = { 45.8, 70.1, 2597, 300 }, + [29] = { 44.9, 70, 2597, 300 }, + [30] = { 44.4, 69.5, 2597, 300 }, + [31] = { 45.1, 69.5, 2597, 300 }, + [32] = { 43.4, 69.4, 2597, 300 }, + [33] = { 42.9, 69.4, 2597, 300 }, + [34] = { 45.6, 69.4, 2597, 300 }, + [35] = { 43.4, 69.3, 2597, 300 }, + [36] = { 45.6, 69.3, 2597, 300 }, + [37] = { 43.5, 69.2, 2597, 300 }, + [38] = { 45.6, 69.2, 2597, 300 }, + [39] = { 42.2, 69.2, 2597, 300 }, + [40] = { 44, 69.2, 2597, 300 }, + [41] = { 43, 69.1, 2597, 300 }, + [42] = { 43.9, 68.9, 2597, 300 }, + [43] = { 42.1, 68.6, 2597, 300 }, + [44] = { 45.6, 68.1, 2597, 300 }, + [45] = { 45.2, 68, 2597, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "52-53", + }, + [13318] = { + ["coords"] = { + [1] = { 44.8, 15.3, 2597, 432000 }, + }, + ["fac"] = "A", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [13319] = { + ["coords"] = { + [1] = { 48.8, 14.6, 2597, 432000 }, + }, + ["fac"] = "A", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [13320] = { + ["coords"] = { + [1] = { 50.9, 30.8, 2597, 432000 }, + }, + ["fac"] = "A", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [13321] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [13322] = { + ["coords"] = { + [1] = { 79.5, 76.3, 16, 180 }, + [2] = { 78.2, 75.5, 16, 180 }, + [3] = { 80.1, 74.8, 16, 180 }, + [4] = { 78.2, 74.2, 16, 180 }, + [5] = { 78.3, 72.8, 16, 180 }, + [6] = { 80.2, 71.8, 16, 180 }, + [7] = { 79, 71.7, 16, 180 }, + }, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [13323] = { + ["coords"] = {}, + ["lvl"] = "46-48", + ["rnk"] = "1", + }, + [13324] = { + ["coords"] = { + [1] = { 51.3, 36.3, 2597, 120 }, + [2] = { 51.1, 34, 2597, 120 }, + [3] = { 51, 33.9, 2597, 120 }, + [4] = { 51.3, 25.8, 2597, 120 }, + [5] = { 52.3, 22.8, 2597, 120 }, + [6] = { 52.3, 22.7, 2597, 120 }, + [7] = { 50.9, 22.6, 2597, 120 }, + [8] = { 51.4, 19, 2597, 120 }, + [9] = { 50, 17.1, 2597, 120 }, + [10] = { 49.9, 17, 2597, 120 }, + [11] = { 47.5, 16.3, 2597, 120 }, + [12] = { 45.6, 16.3, 2597, 120 }, + [13] = { 48.5, 16.2, 2597, 120 }, + [14] = { 43.1, 15.9, 2597, 120 }, + [15] = { 47.5, 15.9, 2597, 120 }, + [16] = { 43.3, 15.9, 2597, 120 }, + [17] = { 43.2, 15.8, 2597, 120 }, + [18] = { 48.4, 15.6, 2597, 120 }, + [19] = { 44.5, 15.6, 2597, 120 }, + [20] = { 44.6, 15.5, 2597, 120 }, + [21] = { 42.6, 15.2, 2597, 120 }, + [22] = { 42.9, 15, 2597, 120 }, + [23] = { 52.3, 13.8, 2597, 120 }, + [24] = { 52.3, 13.7, 2597, 120 }, + [25] = { 42, 13, 2597, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "58", + }, + [13325] = { + ["coords"] = { + [1] = { 48.2, 42.4, 2597, 120 }, + [2] = { 48.3, 42.4, 2597, 120 }, + [3] = { 51.3, 35, 2597, 120 }, + [4] = { 51.2, 35, 2597, 120 }, + [5] = { 50.3, 34.3, 2597, 120 }, + [6] = { 50.3, 34.2, 2597, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "56", + }, + [13326] = { + ["coords"] = { + [1] = { 49.4, 88.3, 2597, 120 }, + [2] = { 49.2, 88.2, 2597, 120 }, + [3] = { 49.2, 88, 2597, 120 }, + [4] = { 49.4, 88, 2597, 120 }, + [5] = { 50.1, 77, 2597, 120 }, + [6] = { 49.9, 76.7, 2597, 120 }, + [7] = { 50.2, 76.7, 2597, 120 }, + [8] = { 50.1, 76.6, 2597, 120 }, + [9] = { 51.4, 60.2, 2597, 120 }, + [10] = { 51.3, 60.2, 2597, 120 }, + [11] = { 51.5, 60, 2597, 120 }, + [12] = { 51.3, 60, 2597, 120 }, + [13] = { 44.6, 45.8, 2597, 120 }, + [14] = { 44.8, 45.6, 2597, 120 }, + [15] = { 44.6, 45.6, 2597, 120 }, + [16] = { 44.7, 45.4, 2597, 120 }, + [17] = { 51.6, 35.8, 2597, 120 }, + [18] = { 51.7, 35.7, 2597, 120 }, + [19] = { 51.5, 35.7, 2597, 120 }, + [20] = { 51.6, 35.5, 2597, 120 }, + [21] = { 42.7, 15.9, 2597, 120 }, + [22] = { 42.8, 15.9, 2597, 120 }, + [23] = { 42.7, 15.7, 2597, 120 }, + [24] = { 42.8, 15.7, 2597, 120 }, + [25] = { 49, 14.9, 2597, 120 }, + [26] = { 48.8, 14.8, 2597, 120 }, + [27] = { 49.1, 14.7, 2597, 120 }, + [28] = { 48.9, 14.6, 2597, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "59", + }, + [13327] = { + ["coords"] = { + [1] = { 46.8, 42.4, 2597, 430 }, + [2] = { 46.6, 42.2, 2597, 430 }, + [3] = { 47, 41.9, 2597, 430 }, + [4] = { 50.3, 39.9, 2597, 430 }, + [5] = { 49.2, 38.5, 2597, 430 }, + [6] = { 48.9, 38.4, 2597, 430 }, + [7] = { 51.6, 38.3, 2597, 120 }, + [8] = { 51.7, 38.2, 2597, 120 }, + [9] = { 48.7, 37.3, 2597, 430 }, + [10] = { 49.5, 37.3, 2597, 430 }, + [11] = { 48.1, 35.8, 2597, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "56", + }, + [13328] = { + ["coords"] = { + [1] = { 49.4, 88.3, 2597, 120 }, + [2] = { 49.2, 88.2, 2597, 120 }, + [3] = { 49.2, 88, 2597, 120 }, + [4] = { 49.4, 88, 2597, 120 }, + [5] = { 50.1, 77, 2597, 120 }, + [6] = { 49.9, 76.7, 2597, 120 }, + [7] = { 50.2, 76.7, 2597, 120 }, + [8] = { 50.1, 76.6, 2597, 120 }, + [9] = { 51.4, 60.2, 2597, 120 }, + [10] = { 51.3, 60.2, 2597, 120 }, + [11] = { 51.5, 60, 2597, 120 }, + [12] = { 51.3, 60, 2597, 120 }, + [13] = { 44.6, 45.8, 2597, 120 }, + [14] = { 44.8, 45.6, 2597, 120 }, + [15] = { 44.6, 45.6, 2597, 120 }, + [16] = { 44.7, 45.4, 2597, 120 }, + [17] = { 51.6, 35.8, 2597, 120 }, + [18] = { 51.7, 35.7, 2597, 120 }, + [19] = { 51.5, 35.7, 2597, 120 }, + [20] = { 51.6, 35.5, 2597, 120 }, + [21] = { 42.7, 15.9, 2597, 120 }, + [22] = { 42.8, 15.9, 2597, 120 }, + [23] = { 42.7, 15.7, 2597, 120 }, + [24] = { 42.8, 15.7, 2597, 120 }, + [25] = { 49, 14.9, 2597, 120 }, + [26] = { 48.8, 14.8, 2597, 120 }, + [27] = { 49.1, 14.7, 2597, 120 }, + [28] = { 48.9, 14.6, 2597, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "59", + }, + [13329] = { + ["coords"] = { + [1] = { 48.8, 86.3, 2597, 120 }, + [2] = { 48.8, 86, 2597, 120 }, + [3] = { 48.9, 85.5, 2597, 120 }, + [4] = { 50.7, 83.6, 2597, 120 }, + [5] = { 51.1, 83.6, 2597, 120 }, + [6] = { 51, 83.4, 2597, 120 }, + [7] = { 49.3, 81.8, 2597, 120 }, + [8] = { 48.2, 81.3, 2597, 120 }, + [9] = { 50.3, 79.5, 2597, 120 }, + [10] = { 50.5, 79.4, 2597, 120 }, + [11] = { 50.4, 78.5, 2597, 120 }, + [12] = { 50.3, 78.4, 2597, 120 }, + [13] = { 49.9, 76.4, 2597, 120 }, + [14] = { 51, 70.5, 2597, 120 }, + [15] = { 51.1, 70.4, 2597, 120 }, + [16] = { 51.7, 67.9, 2597, 120 }, + [17] = { 50.1, 65.1, 2597, 120 }, + [18] = { 52.7, 64.7, 2597, 120 }, + [19] = { 52.5, 63.6, 2597, 120 }, + [20] = { 45.8, 58.1, 2597, 120 }, + [21] = { 46.2, 58.1, 2597, 120 }, + [22] = { 48.4, 57.8, 2597, 120 }, + [23] = { 46.3, 57.4, 2597, 120 }, + [24] = { 45.8, 57, 2597, 120 }, + [25] = { 46.7, 54.1, 2597, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "58", + }, + [13330] = { + ["coords"] = { + [1] = { 50.6, 63.5, 2597, 120 }, + [2] = { 50.5, 63.4, 2597, 120 }, + [3] = { 51.4, 60.6, 2597, 120 }, + [4] = { 49.1, 58.9, 2597, 120 }, + [5] = { 49.5, 58.9, 2597, 120 }, + [6] = { 49.6, 58.9, 2597, 120 }, + [7] = { 49.2, 58.9, 2597, 120 }, + [8] = { 47.6, 57.5, 2597, 120 }, + [9] = { 47.6, 57.4, 2597, 430 }, + [10] = { 47.7, 57.4, 2597, 120 }, + [11] = { 50, 55.8, 2597, 430 }, + [12] = { 48.7, 55.7, 2597, 120 }, + [13] = { 48.8, 55.6, 2597, 120 }, + [14] = { 46.7, 55.4, 2597, 120 }, + [15] = { 50.4, 54.7, 2597, 430 }, + }, + ["fac"] = "H", + ["lvl"] = "56", + }, + [13331] = { + ["coords"] = { + [1] = { 49.4, 88.3, 2597, 120 }, + [2] = { 49.2, 88.2, 2597, 120 }, + [3] = { 49.2, 88, 2597, 120 }, + [4] = { 49.4, 88, 2597, 120 }, + [5] = { 50.1, 77, 2597, 120 }, + [6] = { 49.9, 76.7, 2597, 120 }, + [7] = { 50.2, 76.7, 2597, 120 }, + [8] = { 50.1, 76.6, 2597, 120 }, + [9] = { 51.4, 60.2, 2597, 120 }, + [10] = { 51.3, 60.2, 2597, 120 }, + [11] = { 51.5, 60, 2597, 120 }, + [12] = { 51.3, 60, 2597, 120 }, + [13] = { 44.6, 45.8, 2597, 120 }, + [14] = { 44.8, 45.6, 2597, 120 }, + [15] = { 44.6, 45.6, 2597, 120 }, + [16] = { 44.7, 45.4, 2597, 120 }, + [17] = { 51.6, 35.8, 2597, 120 }, + [18] = { 51.7, 35.7, 2597, 120 }, + [19] = { 51.5, 35.7, 2597, 120 }, + [20] = { 51.6, 35.5, 2597, 120 }, + [21] = { 42.7, 15.9, 2597, 120 }, + [22] = { 42.8, 15.9, 2597, 120 }, + [23] = { 42.7, 15.7, 2597, 120 }, + [24] = { 42.8, 15.7, 2597, 120 }, + [25] = { 49, 14.9, 2597, 120 }, + [26] = { 48.8, 14.8, 2597, 120 }, + [27] = { 49.1, 14.7, 2597, 120 }, + [28] = { 48.9, 14.6, 2597, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [13332] = { + ["coords"] = { + [1] = { 49.4, 88.3, 2597, 120 }, + [2] = { 49.2, 88.2, 2597, 120 }, + [3] = { 49.2, 88, 2597, 120 }, + [4] = { 49.4, 88, 2597, 120 }, + [5] = { 50.1, 77, 2597, 120 }, + [6] = { 49.9, 76.7, 2597, 120 }, + [7] = { 50.2, 76.7, 2597, 120 }, + [8] = { 50.1, 76.6, 2597, 120 }, + [9] = { 51.4, 60.2, 2597, 120 }, + [10] = { 51.3, 60.2, 2597, 120 }, + [11] = { 51.5, 60, 2597, 120 }, + [12] = { 51.3, 60, 2597, 120 }, + [13] = { 44.6, 45.8, 2597, 120 }, + [14] = { 44.8, 45.6, 2597, 120 }, + [15] = { 44.6, 45.6, 2597, 120 }, + [16] = { 44.7, 45.4, 2597, 120 }, + [17] = { 51.6, 35.8, 2597, 120 }, + [18] = { 51.7, 35.7, 2597, 120 }, + [19] = { 51.5, 35.7, 2597, 120 }, + [20] = { 51.6, 35.5, 2597, 120 }, + [21] = { 42.7, 15.9, 2597, 120 }, + [22] = { 42.8, 15.9, 2597, 120 }, + [23] = { 42.7, 15.7, 2597, 120 }, + [24] = { 42.8, 15.7, 2597, 120 }, + [25] = { 49, 14.9, 2597, 120 }, + [26] = { 48.8, 14.8, 2597, 120 }, + [27] = { 49.1, 14.7, 2597, 120 }, + [28] = { 48.9, 14.6, 2597, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [13333] = { + ["coords"] = { + [1] = { 51.3, 36.3, 2597, 120 }, + [2] = { 51.1, 34, 2597, 120 }, + [3] = { 51, 33.9, 2597, 120 }, + [4] = { 51.3, 25.8, 2597, 120 }, + [5] = { 52.3, 22.8, 2597, 120 }, + [6] = { 52.3, 22.7, 2597, 120 }, + [7] = { 50.9, 22.6, 2597, 120 }, + [8] = { 51.4, 19, 2597, 120 }, + [9] = { 50, 17.1, 2597, 120 }, + [10] = { 49.9, 17, 2597, 120 }, + [11] = { 47.5, 16.3, 2597, 120 }, + [12] = { 45.6, 16.3, 2597, 120 }, + [13] = { 48.5, 16.2, 2597, 120 }, + [14] = { 43.1, 15.9, 2597, 120 }, + [15] = { 47.5, 15.9, 2597, 120 }, + [16] = { 43.3, 15.9, 2597, 120 }, + [17] = { 43.2, 15.8, 2597, 120 }, + [18] = { 48.4, 15.6, 2597, 120 }, + [19] = { 44.5, 15.6, 2597, 120 }, + [20] = { 44.6, 15.5, 2597, 120 }, + [21] = { 42.6, 15.2, 2597, 120 }, + [22] = { 42.9, 15, 2597, 120 }, + [23] = { 52.3, 13.8, 2597, 120 }, + [24] = { 52.3, 13.7, 2597, 120 }, + [25] = { 42, 13, 2597, 120 }, + [26] = { 42.5, 12.8, 2597, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "59", + }, + [13334] = { + ["coords"] = { + [1] = { 48.8, 86.3, 2597, 120 }, + [2] = { 48.8, 86, 2597, 120 }, + [3] = { 48.9, 85.5, 2597, 120 }, + [4] = { 50.7, 83.6, 2597, 120 }, + [5] = { 51.1, 83.6, 2597, 120 }, + [6] = { 51, 83.4, 2597, 120 }, + [7] = { 49.3, 81.8, 2597, 120 }, + [8] = { 48.2, 81.3, 2597, 120 }, + [9] = { 50.3, 79.5, 2597, 120 }, + [10] = { 50.5, 79.4, 2597, 120 }, + [11] = { 50.4, 78.5, 2597, 120 }, + [12] = { 50.3, 78.4, 2597, 120 }, + [13] = { 49.9, 76.4, 2597, 120 }, + [14] = { 51, 70.5, 2597, 120 }, + [15] = { 51.1, 70.4, 2597, 120 }, + [16] = { 51.7, 67.9, 2597, 120 }, + [17] = { 50.1, 65.1, 2597, 120 }, + [18] = { 52.7, 64.7, 2597, 120 }, + [19] = { 52.5, 63.6, 2597, 120 }, + [20] = { 45.8, 58.1, 2597, 120 }, + [21] = { 46.2, 58.1, 2597, 120 }, + [22] = { 48.4, 57.8, 2597, 120 }, + [23] = { 46.3, 57.4, 2597, 120 }, + [24] = { 45.8, 57, 2597, 120 }, + [25] = { 46.7, 54.1, 2597, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "59", + }, + [13335] = { + ["coords"] = { + [1] = { 48.2, 42.4, 2597, 120 }, + [2] = { 48.3, 42.4, 2597, 120 }, + [3] = { 51.3, 35, 2597, 120 }, + [4] = { 51.2, 35, 2597, 120 }, + [5] = { 50.3, 34.3, 2597, 120 }, + [6] = { 50.3, 34.2, 2597, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "57", + }, + [13336] = { + ["coords"] = { + [1] = { 46.8, 42.4, 2597, 430 }, + [2] = { 46.6, 42.2, 2597, 430 }, + [3] = { 47, 41.9, 2597, 430 }, + [4] = { 50.3, 39.9, 2597, 430 }, + [5] = { 49.2, 38.5, 2597, 430 }, + [6] = { 48.9, 38.4, 2597, 430 }, + [7] = { 51.6, 38.3, 2597, 120 }, + [8] = { 51.7, 38.2, 2597, 120 }, + [9] = { 48.7, 37.3, 2597, 430 }, + [10] = { 49.5, 37.3, 2597, 430 }, + [11] = { 48.1, 35.8, 2597, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "57", + }, + [13337] = { + ["coords"] = { + [1] = { 50.6, 63.5, 2597, 120 }, + [2] = { 50.5, 63.4, 2597, 120 }, + [3] = { 51.4, 60.6, 2597, 120 }, + [4] = { 49.1, 58.9, 2597, 120 }, + [5] = { 49.5, 58.9, 2597, 120 }, + [6] = { 49.6, 58.9, 2597, 120 }, + [7] = { 49.2, 58.9, 2597, 120 }, + [8] = { 47.6, 57.5, 2597, 120 }, + [9] = { 47.6, 57.4, 2597, 430 }, + [10] = { 47.7, 57.4, 2597, 120 }, + [11] = { 50, 55.8, 2597, 430 }, + [12] = { 48.7, 55.7, 2597, 120 }, + [13] = { 48.8, 55.6, 2597, 120 }, + [14] = { 46.7, 55.4, 2597, 120 }, + [15] = { 50.4, 54.7, 2597, 430 }, + }, + ["fac"] = "H", + ["lvl"] = "57", + }, + [13338] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [13339] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [13356] = { + ["coords"] = { + [1] = { 50.6, 29.8, 2597, 432000 }, + }, + ["fac"] = "A", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [13357] = { + ["coords"] = { + [1] = { 50.2, 65.4, 2597, 432000 }, + }, + ["fac"] = "H", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [13358] = { + ["coords"] = { + [1] = { 52.7, 44.5, 2597, 120 }, + [2] = { 52.4, 44.4, 2597, 120 }, + [3] = { 52.3, 44.2, 2597, 120 }, + [4] = { 52.3, 43.6, 2597, 120 }, + [5] = { 50.8, 31.6, 2597, 120 }, + [6] = { 51.1, 31.4, 2597, 120 }, + [7] = { 51.1, 30.8, 2597, 120 }, + [8] = { 50.7, 30.4, 2597, 120 }, + [9] = { 44.4, 18.3, 2597, 120 }, + [10] = { 43.8, 18.2, 2597, 120 }, + [11] = { 44.2, 18.1, 2597, 120 }, + [12] = { 44, 18.1, 2597, 120 }, + [13] = { 45.3, 15, 2597, 120 }, + [14] = { 45.1, 15, 2597, 120 }, + [15] = { 45.5, 14.9, 2597, 120 }, + [16] = { 44.9, 14.8, 2597, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "59-60", + }, + [13359] = { + ["coords"] = { + [1] = { 49.3, 84.7, 2597, 120 }, + [2] = { 48.5, 84.6, 2597, 120 }, + [3] = { 48.6, 84.3, 2597, 120 }, + [4] = { 49.6, 84.2, 2597, 120 }, + [5] = { 49.4, 84.2, 2597, 120 }, + [6] = { 48.2, 84, 2597, 120 }, + [7] = { 48.4, 83.9, 2597, 120 }, + [8] = { 50.4, 65.8, 2597, 120 }, + [9] = { 50.4, 65.6, 2597, 120 }, + [10] = { 50.4, 65.3, 2597, 120 }, + [11] = { 50.7, 65.3, 2597, 120 }, + [12] = { 48.5, 58.7, 2597, 120 }, + [13] = { 48, 58.6, 2597, 120 }, + [14] = { 48.4, 58.5, 2597, 120 }, + [15] = { 48.2, 58.3, 2597, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "59-60", + }, + [13377] = { + ["coords"] = { + [1] = { 41, 43.8, 2597, 6300 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [13378] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [13396] = { + ["coords"] = { + [1] = { 49.8, 10.1, 2597, 300 }, + [2] = { 49.6, 10, 2597, 300 }, + [3] = { 52.6, 9.5, 2597, 300 }, + [4] = { 51.2, 9.4, 2597, 300 }, + [5] = { 49.9, 9.3, 2597, 300 }, + [6] = { 50.2, 9, 2597, 300 }, + [7] = { 50.9, 8.9, 2597, 300 }, + [8] = { 49.8, 8.9, 2597, 300 }, + [9] = { 50.4, 8.9, 2597, 300 }, + [10] = { 50.7, 8.9, 2597, 300 }, + [11] = { 52.7, 8.9, 2597, 300 }, + [12] = { 51, 8.9, 2597, 300 }, + [13] = { 51.7, 8.4, 2597, 300 }, + [14] = { 50.1, 8.3, 2597, 300 }, + [15] = { 50.8, 8.2, 2597, 300 }, + [16] = { 51.2, 8.1, 2597, 300 }, + [17] = { 50.3, 8.1, 2597, 300 }, + [18] = { 50.7, 8, 2597, 300 }, + [19] = { 50.1, 7.7, 2597, 300 }, + [20] = { 51.8, 7.5, 2597, 300 }, + [21] = { 50.2, 7.4, 2597, 300 }, + [22] = { 50.3, 7.4, 2597, 300 }, + [23] = { 50.2, 7.3, 2597, 300 }, + [24] = { 51.9, 7.2, 2597, 300 }, + [25] = { 50.1, 7.1, 2597, 300 }, + [26] = { 51.3, 7, 2597, 300 }, + [27] = { 49.9, 7, 2597, 300 }, + [28] = { 51.6, 6.9, 2597, 300 }, + [29] = { 50.1, 6.8, 2597, 300 }, + [30] = { 52.3, 6.7, 2597, 300 }, + [31] = { 52.1, 6.7, 2597, 300 }, + [32] = { 53.2, 6.6, 2597, 300 }, + [33] = { 53.2, 6.2, 2597, 300 }, + [34] = { 51.4, 6.1, 2597, 300 }, + [35] = { 51.3, 6, 2597, 300 }, + [36] = { 51.4, 5.9, 2597, 300 }, + [37] = { 51.4, 5.8, 2597, 300 }, + [38] = { 50.5, 5.8, 2597, 300 }, + [39] = { 51, 5.6, 2597, 300 }, + [40] = { 51.8, 5.5, 2597, 300 }, + [41] = { 50.5, 5.5, 2597, 300 }, + [42] = { 51.6, 5.4, 2597, 300 }, + [43] = { 52.4, 5.4, 2597, 300 }, + [44] = { 51.1, 5.3, 2597, 300 }, + [45] = { 52.2, 5.2, 2597, 300 }, + [46] = { 49.7, 4.5, 2597, 300 }, + [47] = { 49.9, 4.5, 2597, 300 }, + [48] = { 52.8, 4.1, 2597, 300 }, + [49] = { 52.5, 4, 2597, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "52-53", + }, + [13397] = { + ["coords"] = { + [1] = { 49.8, 10.1, 2597, 300 }, + [2] = { 49.6, 10, 2597, 300 }, + [3] = { 52.6, 9.5, 2597, 300 }, + [4] = { 49.9, 9.3, 2597, 300 }, + [5] = { 51.2, 9.3, 2597, 300 }, + [6] = { 50.2, 9, 2597, 300 }, + [7] = { 50.9, 8.9, 2597, 300 }, + [8] = { 49.8, 8.9, 2597, 300 }, + [9] = { 50.4, 8.9, 2597, 300 }, + [10] = { 50.7, 8.9, 2597, 300 }, + [11] = { 52.7, 8.9, 2597, 300 }, + [12] = { 51, 8.9, 2597, 300 }, + [13] = { 51.7, 8.4, 2597, 300 }, + [14] = { 50.1, 8.3, 2597, 300 }, + [15] = { 50.8, 8.2, 2597, 300 }, + [16] = { 51.2, 8.1, 2597, 300 }, + [17] = { 50.3, 8.1, 2597, 300 }, + [18] = { 50.7, 8, 2597, 300 }, + [19] = { 50.1, 7.7, 2597, 300 }, + [20] = { 51.8, 7.5, 2597, 300 }, + [21] = { 50.2, 7.4, 2597, 300 }, + [22] = { 50.3, 7.4, 2597, 300 }, + [23] = { 50.2, 7.3, 2597, 300 }, + [24] = { 51.9, 7.2, 2597, 300 }, + [25] = { 50.1, 7.1, 2597, 300 }, + [26] = { 51.3, 7, 2597, 300 }, + [27] = { 49.9, 7, 2597, 300 }, + [28] = { 51.6, 6.9, 2597, 300 }, + [29] = { 50.1, 6.8, 2597, 300 }, + [30] = { 52.3, 6.7, 2597, 300 }, + [31] = { 52.1, 6.7, 2597, 300 }, + [32] = { 53.2, 6.6, 2597, 300 }, + [33] = { 53.2, 6.2, 2597, 300 }, + [34] = { 51.4, 6.1, 2597, 300 }, + [35] = { 51.3, 6, 2597, 300 }, + [36] = { 51.4, 5.9, 2597, 300 }, + [37] = { 51.4, 5.8, 2597, 300 }, + [38] = { 50.5, 5.8, 2597, 300 }, + [39] = { 51, 5.6, 2597, 300 }, + [40] = { 51.8, 5.5, 2597, 300 }, + [41] = { 50.5, 5.5, 2597, 300 }, + [42] = { 51.6, 5.4, 2597, 300 }, + [43] = { 52.4, 5.4, 2597, 300 }, + [44] = { 51.1, 5.3, 2597, 300 }, + [45] = { 52.2, 5.2, 2597, 300 }, + [46] = { 49.7, 4.5, 2597, 300 }, + [47] = { 49.9, 4.5, 2597, 300 }, + [48] = { 52.8, 4.1, 2597, 300 }, + [49] = { 52.5, 4, 2597, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "52-53", + }, + [13416] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [13417] = { + ["coords"] = { + [1] = { 38.7, 35.9, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [13418] = { + ["coords"] = { + [1] = { 53.3, 66.5, 1637, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [13419] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "61", + ["rnk"] = "3", + }, + [13420] = { + ["coords"] = { + [1] = { 53.2, 65.9, 1637, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [13421] = { + ["coords"] = { + [1] = { 49.4, 88.3, 2597, 120 }, + [2] = { 49.2, 88.2, 2597, 120 }, + [3] = { 49.2, 88, 2597, 120 }, + [4] = { 49.4, 88, 2597, 120 }, + [5] = { 50.1, 77, 2597, 120 }, + [6] = { 49.9, 76.7, 2597, 120 }, + [7] = { 50.2, 76.7, 2597, 120 }, + [8] = { 50.1, 76.6, 2597, 120 }, + [9] = { 51.4, 60.2, 2597, 120 }, + [10] = { 51.3, 60.2, 2597, 120 }, + [11] = { 51.5, 60, 2597, 120 }, + [12] = { 51.3, 60, 2597, 120 }, + [13] = { 44.6, 45.8, 2597, 120 }, + [14] = { 44.8, 45.6, 2597, 120 }, + [15] = { 44.6, 45.6, 2597, 120 }, + [16] = { 44.7, 45.4, 2597, 120 }, + [17] = { 51.6, 35.8, 2597, 120 }, + [18] = { 51.7, 35.7, 2597, 120 }, + [19] = { 51.5, 35.7, 2597, 120 }, + [20] = { 51.6, 35.5, 2597, 120 }, + [21] = { 42.7, 15.9, 2597, 120 }, + [22] = { 42.8, 15.9, 2597, 120 }, + [23] = { 42.7, 15.7, 2597, 120 }, + [24] = { 42.8, 15.7, 2597, 120 }, + [25] = { 49, 14.9, 2597, 120 }, + [26] = { 48.8, 14.8, 2597, 120 }, + [27] = { 49.1, 14.7, 2597, 120 }, + [28] = { 48.9, 14.6, 2597, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "61", + }, + [13422] = { + ["coords"] = { + [1] = { 49.4, 88.3, 2597, 120 }, + [2] = { 49.2, 88.2, 2597, 120 }, + [3] = { 49.2, 88, 2597, 120 }, + [4] = { 49.4, 88, 2597, 120 }, + [5] = { 50.1, 77, 2597, 120 }, + [6] = { 49.9, 76.7, 2597, 120 }, + [7] = { 50.2, 76.7, 2597, 120 }, + [8] = { 50.1, 76.6, 2597, 120 }, + [9] = { 51.4, 60.2, 2597, 120 }, + [10] = { 51.3, 60.2, 2597, 120 }, + [11] = { 51.5, 60, 2597, 120 }, + [12] = { 51.3, 60, 2597, 120 }, + [13] = { 44.6, 45.8, 2597, 120 }, + [14] = { 44.8, 45.6, 2597, 120 }, + [15] = { 44.6, 45.6, 2597, 120 }, + [16] = { 44.7, 45.4, 2597, 120 }, + [17] = { 51.6, 35.8, 2597, 120 }, + [18] = { 51.7, 35.7, 2597, 120 }, + [19] = { 51.5, 35.7, 2597, 120 }, + [20] = { 51.6, 35.5, 2597, 120 }, + [21] = { 42.7, 15.9, 2597, 120 }, + [22] = { 42.8, 15.9, 2597, 120 }, + [23] = { 42.7, 15.7, 2597, 120 }, + [24] = { 42.8, 15.7, 2597, 120 }, + [25] = { 49, 14.9, 2597, 120 }, + [26] = { 48.8, 14.8, 2597, 120 }, + [27] = { 49.1, 14.7, 2597, 120 }, + [28] = { 48.9, 14.6, 2597, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "61", + }, + [13424] = { + ["coords"] = { + [1] = { 51.3, 36.3, 2597, 120 }, + [2] = { 51.1, 34, 2597, 120 }, + [3] = { 51, 33.9, 2597, 120 }, + [4] = { 51.3, 25.8, 2597, 120 }, + [5] = { 52.3, 22.8, 2597, 120 }, + [6] = { 52.3, 22.7, 2597, 120 }, + [7] = { 50.9, 22.6, 2597, 120 }, + [8] = { 51.4, 19, 2597, 120 }, + [9] = { 50, 17.1, 2597, 120 }, + [10] = { 49.9, 17, 2597, 120 }, + [11] = { 47.5, 16.3, 2597, 120 }, + [12] = { 45.6, 16.3, 2597, 120 }, + [13] = { 48.5, 16.2, 2597, 120 }, + [14] = { 43.1, 15.9, 2597, 120 }, + [15] = { 47.5, 15.9, 2597, 120 }, + [16] = { 43.3, 15.9, 2597, 120 }, + [17] = { 43.2, 15.8, 2597, 120 }, + [18] = { 48.4, 15.6, 2597, 120 }, + [19] = { 44.5, 15.6, 2597, 120 }, + [20] = { 44.6, 15.5, 2597, 120 }, + [21] = { 42.6, 15.2, 2597, 120 }, + [22] = { 42.9, 15, 2597, 120 }, + [23] = { 52.3, 13.8, 2597, 120 }, + [24] = { 52.3, 13.7, 2597, 120 }, + [25] = { 42, 13, 2597, 120 }, + [26] = { 42.5, 12.8, 2597, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [13425] = { + ["coords"] = { + [1] = { 48.8, 86.3, 2597, 120 }, + [2] = { 48.8, 86, 2597, 120 }, + [3] = { 48.9, 85.5, 2597, 120 }, + [4] = { 50.7, 83.6, 2597, 120 }, + [5] = { 51.1, 83.6, 2597, 120 }, + [6] = { 51, 83.4, 2597, 120 }, + [7] = { 49.3, 81.8, 2597, 120 }, + [8] = { 48.2, 81.3, 2597, 120 }, + [9] = { 50.3, 79.5, 2597, 120 }, + [10] = { 50.5, 79.4, 2597, 120 }, + [11] = { 50.4, 78.5, 2597, 120 }, + [12] = { 50.3, 78.4, 2597, 120 }, + [13] = { 49.9, 76.4, 2597, 120 }, + [14] = { 51, 70.5, 2597, 120 }, + [15] = { 51.1, 70.4, 2597, 120 }, + [16] = { 51.7, 67.9, 2597, 120 }, + [17] = { 50.1, 65.1, 2597, 120 }, + [18] = { 52.7, 64.7, 2597, 120 }, + [19] = { 52.5, 63.6, 2597, 120 }, + [20] = { 45.8, 58.1, 2597, 120 }, + [21] = { 46.2, 58.1, 2597, 120 }, + [22] = { 48.4, 57.8, 2597, 120 }, + [23] = { 46.3, 57.4, 2597, 120 }, + [24] = { 45.8, 57, 2597, 120 }, + [25] = { 46.7, 54.1, 2597, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [13426] = { + ["coords"] = { + [1] = { 48.2, 42.4, 2597, 120 }, + [2] = { 48.3, 42.4, 2597, 120 }, + [3] = { 51.3, 35, 2597, 120 }, + [4] = { 51.2, 35, 2597, 120 }, + [5] = { 50.3, 34.3, 2597, 120 }, + [6] = { 50.3, 34.2, 2597, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "58", + }, + [13427] = { + ["coords"] = { + [1] = { 46.8, 42.4, 2597, 430 }, + [2] = { 46.6, 42.2, 2597, 430 }, + [3] = { 47, 41.9, 2597, 430 }, + [4] = { 50.3, 39.9, 2597, 430 }, + [5] = { 49.2, 38.5, 2597, 430 }, + [6] = { 48.9, 38.4, 2597, 430 }, + [7] = { 51.6, 38.3, 2597, 120 }, + [8] = { 51.7, 38.2, 2597, 120 }, + [9] = { 48.7, 37.3, 2597, 430 }, + [10] = { 49.5, 37.3, 2597, 430 }, + [11] = { 48.1, 35.8, 2597, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "58", + }, + [13428] = { + ["coords"] = { + [1] = { 50.6, 63.5, 2597, 120 }, + [2] = { 50.5, 63.4, 2597, 120 }, + [3] = { 51.4, 60.6, 2597, 120 }, + [4] = { 49.1, 58.9, 2597, 120 }, + [5] = { 49.5, 58.9, 2597, 120 }, + [6] = { 49.6, 58.9, 2597, 120 }, + [7] = { 49.2, 58.9, 2597, 120 }, + [8] = { 47.6, 57.5, 2597, 120 }, + [9] = { 47.6, 57.4, 2597, 430 }, + [10] = { 47.7, 57.4, 2597, 120 }, + [11] = { 50, 55.8, 2597, 430 }, + [12] = { 48.7, 55.7, 2597, 120 }, + [13] = { 48.8, 55.6, 2597, 120 }, + [14] = { 46.7, 55.4, 2597, 120 }, + [15] = { 50.4, 54.7, 2597, 430 }, + }, + ["fac"] = "H", + ["lvl"] = "58", + }, + [13429] = { + ["coords"] = { + [1] = { 68.2, 38.9, 1497, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [13430] = { + ["coords"] = { + [1] = { 68.1, 38.6, 1497, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [13431] = { + ["coords"] = { + [1] = { 38.7, 28.8, 215, 300 }, + [2] = { 43.8, 58.8, 1638, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [13432] = { + ["coords"] = { + [1] = { 38.7, 28.9, 215, 1480 }, + [2] = { 43.7, 59.2, 1638, 1480 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [13433] = { + ["coords"] = { + [1] = { 33.7, 67.2, 1537, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [13434] = { + ["coords"] = { + [1] = { 33.6, 67.7, 1537, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [13435] = { + ["coords"] = { + [1] = { 55, 59, 1519, 840 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [13436] = { + ["coords"] = { + [1] = { 55.2, 59, 1519, 840 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [13437] = { + ["coords"] = { + [1] = { 48.3, 84.1, 2597, 432000 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [13438] = { + ["coords"] = { + [1] = { 50.7, 65.7, 2597, 432000 }, + }, + ["fac"] = "A", + ["lvl"] = "58", + ["rnk"] = "1", + }, + [13439] = { + ["coords"] = { + [1] = { 50.4, 81.7, 2597, 432000 }, + }, + ["fac"] = "A", + ["lvl"] = "59", + ["rnk"] = "1", + }, + [13440] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "58", + ["rnk"] = "1", + }, + [13441] = { + ["coords"] = { + [1] = { 57, 82.6, 2597, 1785 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [13442] = { + ["coords"] = { + [1] = { 43.9, 12.6, 2597, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [13443] = { + ["coords"] = { + [1] = { 44, 12.8, 2597, 120 }, + [2] = { 43.9, 12.7, 2597, 120 }, + [3] = { 44, 12.6, 2597, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [13444] = { + ["coords"] = { + [1] = { 33.2, 65.4, 1537, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [13445] = { + ["coords"] = { + [1] = { 52.5, 69.2, 1637, 180 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [13446] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [13447] = { + ["coords"] = { + [1] = { 44, 17.3, 2597, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [13448] = { + ["coords"] = { + [1] = { 48.2, 81.3, 2597, 430 }, + }, + ["fac"] = "H", + ["lvl"] = "56-57", + }, + [13449] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [13456] = { + ["coords"] = {}, + ["lvl"] = "46", + }, + [13476] = { + ["coords"] = { + [1] = { 36.5, 30.4, 15, 360 }, + [2] = { 54.4, 69.7, 17, 360 }, + }, + ["fac"] = "H", + ["lvl"] = "43", + }, + [13477] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [13496] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [13516] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "56", + ["rnk"] = "1", + }, + [13517] = { + ["coords"] = { + [1] = { 49.3, 84.7, 2597, 120 }, + [2] = { 48.5, 84.6, 2597, 120 }, + [3] = { 48.6, 84.3, 2597, 120 }, + [4] = { 49.6, 84.2, 2597, 120 }, + [5] = { 49.4, 84.2, 2597, 120 }, + [6] = { 48.2, 84, 2597, 120 }, + [7] = { 48.4, 83.9, 2597, 120 }, + [8] = { 50.4, 65.8, 2597, 120 }, + [9] = { 50.4, 65.6, 2597, 120 }, + [10] = { 50.4, 65.3, 2597, 120 }, + [11] = { 50.7, 65.3, 2597, 120 }, + [12] = { 48.5, 58.7, 2597, 120 }, + [13] = { 48, 58.6, 2597, 120 }, + [14] = { 48.4, 58.5, 2597, 120 }, + [15] = { 48.2, 58.3, 2597, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "57", + ["rnk"] = "1", + }, + [13518] = { + ["coords"] = { + [1] = { 49.3, 84.7, 2597, 120 }, + [2] = { 48.5, 84.6, 2597, 120 }, + [3] = { 48.6, 84.3, 2597, 120 }, + [4] = { 49.6, 84.2, 2597, 120 }, + [5] = { 49.4, 84.2, 2597, 120 }, + [6] = { 48.2, 84, 2597, 120 }, + [7] = { 48.4, 83.9, 2597, 120 }, + [8] = { 50.4, 65.8, 2597, 120 }, + [9] = { 50.4, 65.6, 2597, 120 }, + [10] = { 50.4, 65.3, 2597, 120 }, + [11] = { 50.7, 65.3, 2597, 120 }, + [12] = { 48.5, 58.7, 2597, 120 }, + [13] = { 48, 58.6, 2597, 120 }, + [14] = { 48.4, 58.5, 2597, 120 }, + [15] = { 48.2, 58.3, 2597, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "58", + ["rnk"] = "1", + }, + [13519] = { + ["coords"] = { + [1] = { 49.3, 84.7, 2597, 120 }, + [2] = { 48.5, 84.6, 2597, 120 }, + [3] = { 48.6, 84.3, 2597, 120 }, + [4] = { 49.6, 84.2, 2597, 120 }, + [5] = { 49.4, 84.2, 2597, 120 }, + [6] = { 48.2, 84, 2597, 120 }, + [7] = { 48.4, 83.9, 2597, 120 }, + [8] = { 50.4, 65.8, 2597, 120 }, + [9] = { 50.4, 65.6, 2597, 120 }, + [10] = { 50.4, 65.3, 2597, 120 }, + [11] = { 50.7, 65.3, 2597, 120 }, + [12] = { 48.5, 58.7, 2597, 120 }, + [13] = { 48, 58.6, 2597, 120 }, + [14] = { 48.4, 58.5, 2597, 120 }, + [15] = { 48.2, 58.3, 2597, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [13520] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "56", + ["rnk"] = "1", + }, + [13521] = { + ["coords"] = { + [1] = { 52.7, 44.5, 2597, 120 }, + [2] = { 52.4, 44.4, 2597, 120 }, + [3] = { 52.3, 44.2, 2597, 120 }, + [4] = { 52.3, 43.6, 2597, 120 }, + [5] = { 50.8, 31.6, 2597, 120 }, + [6] = { 51.1, 31.4, 2597, 120 }, + [7] = { 51.1, 30.8, 2597, 120 }, + [8] = { 50.7, 30.4, 2597, 120 }, + [9] = { 44.4, 18.3, 2597, 120 }, + [10] = { 43.8, 18.2, 2597, 120 }, + [11] = { 44.2, 18.1, 2597, 120 }, + [12] = { 44, 18.1, 2597, 120 }, + [13] = { 45.3, 15, 2597, 120 }, + [14] = { 45.1, 15, 2597, 120 }, + [15] = { 45.5, 14.9, 2597, 120 }, + [16] = { 44.9, 14.8, 2597, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "57", + ["rnk"] = "1", + }, + [13522] = { + ["coords"] = { + [1] = { 52.7, 44.5, 2597, 120 }, + [2] = { 52.4, 44.4, 2597, 120 }, + [3] = { 52.3, 44.2, 2597, 120 }, + [4] = { 52.3, 43.6, 2597, 120 }, + [5] = { 50.8, 31.6, 2597, 120 }, + [6] = { 51.1, 31.4, 2597, 120 }, + [7] = { 51.1, 30.8, 2597, 120 }, + [8] = { 50.7, 30.4, 2597, 120 }, + [9] = { 44.4, 18.3, 2597, 120 }, + [10] = { 43.8, 18.2, 2597, 120 }, + [11] = { 44.2, 18.1, 2597, 120 }, + [12] = { 44, 18.1, 2597, 120 }, + [13] = { 45.3, 15, 2597, 120 }, + [14] = { 45.1, 15, 2597, 120 }, + [15] = { 45.5, 14.9, 2597, 120 }, + [16] = { 44.9, 14.8, 2597, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "59", + ["rnk"] = "1", + }, + [13523] = { + ["coords"] = { + [1] = { 52.7, 44.5, 2597, 120 }, + [2] = { 52.4, 44.4, 2597, 120 }, + [3] = { 52.3, 44.2, 2597, 120 }, + [4] = { 52.3, 43.6, 2597, 120 }, + [5] = { 50.8, 31.6, 2597, 120 }, + [6] = { 51.1, 31.4, 2597, 120 }, + [7] = { 51.1, 30.8, 2597, 120 }, + [8] = { 50.7, 30.4, 2597, 120 }, + [9] = { 44.4, 18.3, 2597, 120 }, + [10] = { 43.8, 18.2, 2597, 120 }, + [11] = { 44.2, 18.1, 2597, 120 }, + [12] = { 44, 18.1, 2597, 120 }, + [13] = { 45.3, 15, 2597, 120 }, + [14] = { 45.1, 15, 2597, 120 }, + [15] = { 45.5, 14.9, 2597, 120 }, + [16] = { 44.9, 14.8, 2597, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [13524] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "56", + ["rnk"] = "1", + }, + [13525] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "59", + ["rnk"] = "1", + }, + [13526] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [13527] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [13528] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "59", + ["rnk"] = "1", + }, + [13529] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "59", + ["rnk"] = "1", + }, + [13530] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [13531] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [13533] = { + ["coords"] = {}, + ["lvl"] = "45-47", + ["rnk"] = "1", + }, + [13534] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "56-57", + }, + [13535] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "58-59", + }, + [13536] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "60", + }, + [13537] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "56-57", + }, + [13538] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "58-59", + }, + [13539] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "60", + }, + [13540] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "56-57", + }, + [13541] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "58-59", + }, + [13542] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "60", + }, + [13543] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "56-57", + }, + [13544] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "58-59", + }, + [13545] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "60", + }, + [13546] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "56-57", + }, + [13547] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "58-59", + }, + [13548] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "60", + }, + [13549] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "56-57", + }, + [13550] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "58-59", + }, + [13551] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "60", + }, + [13552] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "56-57", + }, + [13553] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "58-59", + }, + [13554] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "60", + }, + [13555] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "56-57", + }, + [13556] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "58-59", + }, + [13557] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "60", + }, + [13576] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "58", + ["rnk"] = "1", + }, + [13577] = { + ["coords"] = { + [1] = { 42.1, 17.2, 2597, 1785 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [13596] = { + ["coords"] = {}, + ["lvl"] = "50", + ["rnk"] = "1", + }, + [13597] = { + ["coords"] = { + [1] = { 49.6, 82.3, 2597, 430 }, + }, + ["fac"] = "H", + ["lvl"] = "59", + ["rnk"] = "1", + }, + [13598] = { + ["coords"] = { + [1] = { 42.8, 17, 2597, 432000 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [13599] = { + ["coords"] = {}, + ["lvl"] = "46-47", + }, + [13601] = { + ["coords"] = {}, + ["lvl"] = "50", + ["rnk"] = "1", + }, + [13602] = { + ["coords"] = { + [1] = { 34.3, 68.1, 36, 600 }, + [2] = { 40.8, 67.8, 36, 180 }, + [3] = { 41.4, 63.6, 36, 600 }, + [4] = { 29.9, 61, 36, 600 }, + [5] = { 31.6, 50.8, 36, 600 }, + [6] = { 38.9, 8, 267, 600 }, + [7] = { 44.6, 7.7, 267, 180 }, + [8] = { 45.1, 4.1, 267, 600 }, + }, + ["lvl"] = "36", + ["rnk"] = "1", + }, + [13616] = { + ["coords"] = { + [1] = { 57.1, 82.5, 2597, 490 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [13617] = { + ["coords"] = { + [1] = { 42.6, 16.8, 2597, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [13618] = { + ["coords"] = { + [1] = { 55.2, 90.6, 2597, 120 }, + [2] = { 56.3, 83.4, 2597, 120 }, + [3] = { 56.4, 83.3, 2597, 430 }, + [4] = { 56.1, 83.3, 2597, 430 }, + [5] = { 56, 83.3, 2597, 430 }, + [6] = { 56.4, 82.8, 2597, 120 }, + [7] = { 56.3, 82.8, 2597, 430 }, + [8] = { 56, 82.8, 2597, 120 }, + [9] = { 56.2, 82.8, 2597, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [13619] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [13620] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [13636] = { + ["coords"] = { + [1] = { 35.4, 72.5, 36, 180 }, + [2] = { 39.9, 11.8, 267, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [13656] = { + ["coords"] = { + [1] = { 62.2, 39.6, 405, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "45", + }, + [13676] = { + ["coords"] = { + [1] = { 52.7, 38.6, 2597, 430 }, + [2] = { 52.4, 38.3, 2597, 430 }, + [3] = { 42, 17.4, 2597, 120 }, + [4] = { 42.3, 17.3, 2597, 120 }, + [5] = { 41.9, 17.1, 2597, 120 }, + [6] = { 42.2, 16.9, 2597, 120 }, + }, + ["lvl"] = "50-51", + }, + [13696] = { + ["coords"] = {}, + ["lvl"] = "45-46", + }, + [13697] = { + ["coords"] = { + [1] = { 32, 63.7, 405, 550 }, + }, + ["fac"] = "AH", + ["lvl"] = "45", + ["rnk"] = "1", + }, + [13698] = { + ["coords"] = { + [1] = { 63.8, 10.7, 405, 300 }, + [2] = { 38.5, 85.5, 406, 300 }, + }, + ["lvl"] = "43", + }, + [13699] = { + ["coords"] = { + [1] = { 26.9, 77.7, 405, 300 }, + }, + ["lvl"] = "40", + }, + [13716] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "49", + ["rnk"] = "1", + }, + [13717] = { + ["coords"] = { + [1] = { 50.5, 86.7, 405, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "42", + }, + [13718] = { + ["coords"] = { + [1] = { 28.2, 62.4, 405, 550 }, + }, + ["lvl"] = "41", + ["rnk"] = "1", + }, + [13736] = { + ["coords"] = {}, + ["lvl"] = "45-46", + }, + [13737] = { + ["coords"] = { + [1] = { 26.8, 77.9, 405, 300 }, + [2] = { 27.1, 77.6, 405, 300 }, + [3] = { 26.9, 77.6, 405, 300 }, + [4] = { 64.1, 10.4, 405, 300 }, + [5] = { 64, 10.1, 405, 300 }, + [6] = { 38.8, 85.2, 406, 300 }, + [7] = { 38.7, 85, 406, 300 }, + }, + ["lvl"] = "36", + }, + [13738] = { + ["coords"] = {}, + ["lvl"] = "47", + ["rnk"] = "1", + }, + [13739] = { + ["coords"] = {}, + ["lvl"] = "46", + ["rnk"] = "1", + }, + [13740] = { + ["coords"] = {}, + ["lvl"] = "43", + ["rnk"] = "1", + }, + [13741] = { + ["coords"] = {}, + ["lvl"] = "42", + ["rnk"] = "1", + }, + [13742] = { + ["coords"] = {}, + ["lvl"] = "43", + ["rnk"] = "1", + }, + [13743] = { + ["coords"] = {}, + ["lvl"] = "44", + }, + [13756] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [13776] = { + ["coords"] = { + [1] = { 65.6, 55.1, 36, 600 }, + }, + ["fac"] = "H", + ["lvl"] = "56-57", + ["rnk"] = "1", + }, + [13777] = { + ["coords"] = { + [1] = { 36.8, 77.2, 36, 600 }, + [2] = { 41, 16, 267, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [13778] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [13796] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [13797] = { + ["coords"] = { + [1] = { 45.6, 16.7, 2597, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "60-61", + ["rnk"] = "1", + }, + [13798] = { + ["coords"] = { + [1] = { 50.8, 81.4, 2597, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "60-61", + ["rnk"] = "1", + }, + [13816] = { + ["coords"] = { + [1] = { 40.7, 79.6, 36, 300 }, + [2] = { 44.4, 18.1, 267, 300 }, + [3] = { 42.6, 13.5, 2597, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "61", + }, + [13817] = { + ["coords"] = { + [1] = { 63.8, 60.5, 36, 300 }, + [2] = { 64.7, 1.4, 267, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "61", + }, + [13836] = { + ["coords"] = { + [1] = { 79.8, 80, 405, 300 }, + [2] = { 79.8, 79.8, 405, 300 }, + [3] = { 79.6, 79.4, 405, 300 }, + }, + ["lvl"] = "40", + }, + [13837] = { + ["coords"] = { + [1] = { 79.5, 79.8, 405, 300 }, + [2] = { 79.9, 79.4, 405, 300 }, + }, + ["lvl"] = "40", + }, + [13838] = { + ["coords"] = {}, + ["lvl"] = "10", + }, + [13839] = { + ["coords"] = { + [1] = { 74.1, 15, 130, 900 }, + [2] = { 75.2, 14.6, 130, 900 }, + [3] = { 73.3, 13.8, 130, 900 }, + [4] = { 73.1, 13, 130, 900 }, + [5] = { 75.6, 12.9, 130, 900 }, + [6] = { 73.2, 12.6, 130, 900 }, + [7] = { 72.3, 12.5, 130, 900 }, + [8] = { 72.4, 12.2, 130, 900 }, + [9] = { 73.6, 12.1, 130, 900 }, + [10] = { 74.8, 11.6, 130, 900 }, + [11] = { 71.7, 11.4, 130, 900 }, + [12] = { 71.9, 11.3, 130, 900 }, + [13] = { 71.8, 10.2, 130, 900 }, + [14] = { 71.6, 10.1, 130, 900 }, + [15] = { 72.1, 9.1, 130, 900 }, + [16] = { 71.9, 8.8, 130, 900 }, + [17] = { 55.9, 98.7, 1497, 900 }, + [18] = { 60.8, 96.8, 1497, 900 }, + [19] = { 52.4, 93.2, 1497, 900 }, + [20] = { 51.4, 89.9, 1497, 900 }, + [21] = { 62.2, 89.3, 1497, 900 }, + [22] = { 51.7, 88.3, 1497, 900 }, + [23] = { 47.7, 87.6, 1497, 900 }, + [24] = { 48.5, 86.4, 1497, 900 }, + [25] = { 53.6, 86.1, 1497, 900 }, + [26] = { 58.7, 83.8, 1497, 900 }, + [27] = { 45.3, 82.9, 1497, 900 }, + [28] = { 46.4, 82.4, 1497, 900 }, + [29] = { 45.9, 77.5, 1497, 900 }, + [30] = { 44.8, 77, 1497, 900 }, + [31] = { 47.1, 72.7, 1497, 900 }, + [32] = { 46.4, 71.5, 1497, 900 }, + [33] = { 50, 68.4, 1497, 900 }, + [34] = { 49.2, 67.3, 1497, 900 }, + [35] = { 53.2, 65, 1497, 900 }, + [36] = { 51.8, 62.9, 1497, 900 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [13840] = { + ["coords"] = { + [1] = { 62.3, 58.9, 36, 600 }, + }, + ["fac"] = "H", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [13841] = { + ["coords"] = { + [1] = { 39.5, 81.2, 36, 600 }, + [2] = { 43.4, 19.5, 267, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [13842] = { + ["coords"] = { + [1] = { 49.6, 71.2, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [13843] = { + ["coords"] = { + [1] = { 32.2, 63.3, 1537, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [13856] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "60", + }, + [13857] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "60", + }, + [13876] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [13896] = { + ["coords"] = { + [1] = { 52.6, 47.4, 16, 18000 }, + }, + ["lvl"] = "52", + ["rnk"] = "2", + }, + [13916] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [13917] = { + ["coords"] = { + [1] = { 61.5, 37, 618, 333 }, + }, + ["lvl"] = "55", + }, + [13936] = { + ["coords"] = { + [1] = { 81.3, 74.6, 36, 300 }, + [2] = { 80, 13.7, 267, 300 }, + }, + ["lvl"] = "1", + }, + [13956] = { + ["coords"] = { + [1] = { 41.2, 51.2, 2597, 430 }, + [2] = { 37.6, 46.2, 2597, 430 }, + [3] = { 44.8, 45.6, 2597, 120 }, + [4] = { 35.7, 45.3, 2597, 430 }, + [5] = { 40.9, 43.3, 2597, 430 }, + [6] = { 37.1, 42.1, 2597, 430 }, + }, + ["lvl"] = "58", + ["rnk"] = "1", + }, + [13957] = { + ["coords"] = { + [1] = { 44.1, 47.5, 2597, 432000 }, + [2] = { 45.8, 44.6, 2597, 432000 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [13958] = { + ["coords"] = { + [1] = { 44.7, 45.7, 2597, 430 }, + }, + ["lvl"] = "59", + ["rnk"] = "1", + }, + [13959] = { + ["coords"] = { + [1] = { 52.1, 97.1, 2597, 430 }, + [2] = { 52.2, 95.1, 2597, 430 }, + [3] = { 52.3, 94.5, 2597, 430 }, + [4] = { 53.6, 94.3, 2597, 430 }, + [5] = { 51, 94.2, 2597, 430 }, + [6] = { 53.2, 93.1, 2597, 430 }, + [7] = { 50.6, 92.7, 2597, 430 }, + [8] = { 38.2, 38.3, 2597, 430 }, + [9] = { 40.6, 37.3, 2597, 430 }, + [10] = { 37.6, 35.9, 2597, 430 }, + [11] = { 38.9, 35.1, 2597, 430 }, + [12] = { 40.5, 33.2, 2597, 430 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [13976] = { + ["coords"] = {}, + ["lvl"] = "40", + ["rnk"] = "1", + }, + [13977] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "2", + }, + [13996] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14016] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "2", + }, + [14017] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14018] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "2", + }, + [14019] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "2", + }, + [14020] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [14021] = { + ["coords"] = {}, + ["lvl"] = "1", + ["rnk"] = "1", + }, + [14022] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [14023] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [14024] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [14025] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [14026] = { + ["coords"] = { + [1] = { 51, 30.8, 2597, 432000 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14027] = { + ["coords"] = { + [1] = { 45.2, 14.8, 2597, 432000 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14028] = { + ["coords"] = { + [1] = { 53.9, 27, 2597, 432000 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14029] = { + ["coords"] = { + [1] = { 48.3, 84.6, 2597, 432000 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14030] = { + ["coords"] = { + [1] = { 50.2, 65.4, 2597, 432000 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14031] = { + ["coords"] = { + [1] = { 50.3, 81.8, 2597, 432000 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14041] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "20", + }, + [14042] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "61", + }, + [14061] = { + ["coords"] = {}, + ["lvl"] = "53-55", + ["rnk"] = "1", + }, + [14062] = { + ["coords"] = {}, + ["lvl"] = "53-55", + ["rnk"] = "1", + }, + [14063] = { + ["coords"] = {}, + ["lvl"] = "53-55", + ["rnk"] = "1", + }, + [14081] = { + ["coords"] = {}, + ["lvl"] = "61", + }, + [14101] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14121] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "20", + }, + [14122] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [14123] = { + ["coords"] = { + [1] = { 73.3, 43, 440, 300 }, + [2] = { 72.5, 42.3, 440, 300 }, + [3] = { 73, 42.3, 440, 300 }, + [4] = { 71.8, 41.2, 440, 300 }, + [5] = { 70.8, 41.1, 440, 300 }, + [6] = { 71.5, 39.9, 440, 300 }, + [7] = { 68.3, 39.7, 440, 300 }, + [8] = { 70.4, 39.3, 440, 300 }, + [9] = { 67.4, 39.3, 440, 300 }, + [10] = { 68.8, 39.1, 440, 300 }, + [11] = { 67.8, 38.6, 440, 300 }, + [12] = { 67, 38, 440, 300 }, + [13] = { 68.1, 37.8, 440, 300 }, + [14] = { 67.7, 37.3, 440, 300 }, + [15] = { 68.4, 37, 440, 300 }, + [16] = { 67.5, 36.2, 440, 300 }, + [17] = { 68.3, 35.8, 440, 300 }, + [18] = { 68.5, 35.3, 440, 300 }, + [19] = { 68.1, 34.3, 440, 300 }, + [20] = { 68.5, 33.5, 440, 300 }, + [21] = { 68.5, 32.7, 440, 300 }, + [22] = { 68.5, 30.1, 440, 300 }, + [23] = { 67.8, 29.7, 440, 300 }, + [24] = { 68, 28.5, 440, 300 }, + [25] = { 67.1, 28.3, 440, 300 }, + [26] = { 67.1, 27.7, 440, 300 }, + [27] = { 68.3, 27.5, 440, 300 }, + [28] = { 67.6, 26.3, 440, 300 }, + [29] = { 68, 25.8, 440, 300 }, + [30] = { 65, 25.1, 440, 300 }, + [31] = { 67.6, 24.9, 440, 300 }, + [32] = { 68.1, 23.8, 440, 300 }, + [33] = { 65.8, 22.3, 440, 300 }, + [34] = { 68.2, 21.8, 440, 300 }, + [35] = { 67.8, 21.5, 440, 300 }, + [36] = { 66.2, 20.8, 440, 300 }, + [37] = { 67.3, 20.2, 440, 300 }, + [38] = { 68.2, 19.6, 440, 300 }, + [39] = { 67.8, 19.6, 440, 300 }, + [40] = { 67, 18.9, 440, 300 }, + [41] = { 67.2, 18.2, 440, 300 }, + [42] = { 67.3, 17.9, 440, 300 }, + [43] = { 67.7, 17.4, 440, 300 }, + }, + ["lvl"] = "42-43", + }, + [14141] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "58", + ["rnk"] = "1", + }, + [14142] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "58", + ["rnk"] = "1", + }, + [14143] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "61", + }, + [14144] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "61", + }, + [14145] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "61", + }, + [14146] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "61", + }, + [14147] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "61", + }, + [14148] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "61", + }, + [14161] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "61", + }, + [14162] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [14181] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [14182] = { + ["coords"] = { + [1] = { 75, 23.1, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [14183] = { + ["coords"] = { + [1] = { 19.6, 51.8, 1537, 490 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [14184] = { + ["coords"] = {}, + ["lvl"] = "53-55", + ["rnk"] = "1", + }, + [14185] = { + ["coords"] = { + [1] = { 50, 83.4, 2597, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "59", + }, + [14186] = { + ["coords"] = { + [1] = { 49.9, 83.3, 2597, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [14187] = { + ["coords"] = { + [1] = { 43.6, 15.5, 2597, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [14188] = { + ["coords"] = { + [1] = { 43.6, 15.5, 2597, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "59", + }, + [14201] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "20", + }, + [14221] = { + ["coords"] = { + [1] = { 58.2, 42, 36, 18000 }, + }, + ["lvl"] = "36", + ["rnk"] = "4", + }, + [14222] = { + ["coords"] = { + [1] = { 39, 91.2, 36, 75600 }, + [2] = { 31, 86, 36, 75600 }, + [3] = { 30.2, 72.1, 36, 75600 }, + [4] = { 43, 28.3, 267, 75600 }, + [5] = { 36, 23.7, 267, 75600 }, + [6] = { 35.3, 11.5, 267, 75600 }, + }, + ["lvl"] = "35", + ["rnk"] = "4", + }, + [14223] = { + ["coords"] = { + [1] = { 37.3, 19.8, 36, 115200 }, + }, + ["lvl"] = "32", + ["rnk"] = "4", + }, + [14224] = { + ["coords"] = { + [1] = { 55.1, 83.6, 3, 115200 }, + }, + ["lvl"] = "41", + ["rnk"] = "4", + }, + [14225] = { + ["coords"] = { + [1] = { 78.9, 21.2, 405, 75600 }, + }, + ["lvl"] = "33", + ["rnk"] = "4", + }, + [14226] = { + ["coords"] = { + [1] = { 51.2, 86.1, 405, 115200 }, + }, + ["lvl"] = "40", + ["rnk"] = "4", + }, + [14227] = { + ["coords"] = { + [1] = { 52.9, 50.1, 405, 37800 }, + }, + ["lvl"] = "37", + ["rnk"] = "4", + }, + [14228] = { + ["coords"] = { + [1] = { 61.3, 28.9, 405, 37800 }, + }, + ["lvl"] = "34", + ["rnk"] = "4", + }, + [14229] = { + ["coords"] = { + [1] = { 42.2, 19, 405, 75600 }, + }, + ["lvl"] = "38", + ["rnk"] = "4", + }, + [14230] = { + ["coords"] = { + [1] = { 62.6, 19, 15, 18000 }, + [2] = { 59, 9.4, 15, 18000 }, + [3] = { 66.1, 58.8, 17, 18000 }, + }, + ["lvl"] = "38", + ["rnk"] = "4", + }, + [14231] = { + ["coords"] = { + [1] = { 41, 21.9, 15, 18000 }, + [2] = { 38.8, 16.4, 15, 18000 }, + }, + ["lvl"] = "37", + ["rnk"] = "4", + }, + [14232] = { + ["coords"] = { + [1] = { 48.1, 16, 15, 18000 }, + }, + ["lvl"] = "38", + ["rnk"] = "4", + }, + [14233] = { + ["coords"] = { + [1] = { 49.2, 57.4, 15, 37800 }, + [2] = { 42, 55.3, 15, 37800 }, + }, + ["lvl"] = "39", + ["rnk"] = "4", + }, + [14234] = { + ["coords"] = { + [1] = { 52, 62.9, 15, 38000 }, + }, + ["lvl"] = "41", + ["rnk"] = "4", + }, + [14235] = { + ["coords"] = { + [1] = { 52.9, 57.4, 15, 75600 }, + }, + ["lvl"] = "43", + ["rnk"] = "4", + }, + [14236] = { + ["coords"] = { + [1] = { 54.7, 63.4, 15, 75600 }, + }, + ["lvl"] = "44", + ["rnk"] = "4", + }, + [14237] = { + ["coords"] = { + [1] = { 36.9, 62.1, 15, 115200 }, + [2] = { 54.6, 86.1, 17, 115200 }, + }, + ["lvl"] = "42", + ["rnk"] = "4", + }, + [14241] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "58", + ["rnk"] = "1", + }, + [14242] = { + ["coords"] = { + [1] = { 21.2, 15.7, 490, 420 }, + [2] = { 80, 17, 1377, 420 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [14261] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14262] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14263] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14264] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14265] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14266] = { + ["coords"] = { + [1] = { 78.1, 52.4, 38, 14400 }, + }, + ["lvl"] = "19", + ["rnk"] = "4", + }, + [14267] = { + ["coords"] = { + [1] = { 69.7, 25.9, 38, 38000 }, + }, + ["lvl"] = "19", + ["rnk"] = "2", + }, + [14268] = { + ["coords"] = { + [1] = { 77.7, 74.9, 38, 14400 }, + }, + ["lvl"] = "16", + ["rnk"] = "4", + }, + [14269] = { + ["coords"] = { + [1] = { 60.1, 56.2, 44, 61200 }, + }, + ["lvl"] = "21", + ["rnk"] = "4", + }, + [14270] = { + ["coords"] = { + [1] = { 38.7, 56.3, 44, 7200 }, + }, + ["lvl"] = "19", + ["rnk"] = "4", + }, + [14271] = { + ["coords"] = { + [1] = { 16.1, 65.3, 44, 7200 }, + }, + ["lvl"] = "17", + ["rnk"] = "4", + }, + [14272] = { + ["coords"] = { + [1] = { 42.5, 31, 44, 7200 }, + }, + ["lvl"] = "18", + ["rnk"] = "4", + }, + [14273] = { + ["coords"] = { + [1] = { 88.9, 66.8, 44, 30600 }, + }, + ["lvl"] = "25", + ["rnk"] = "4", + }, + [14274] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [14275] = { + ["coords"] = { + [1] = { 10.6, 51, 45, 18000 }, + [2] = { 11.4, 49.9, 45, 18000 }, + [3] = { 9.1, 47.2, 45, 18000 }, + [4] = { 72.3, 82.3, 267, 18000 }, + [5] = { 73.3, 81.1, 267, 18000 }, + [6] = { 70.7, 78.1, 267, 18000 }, + }, + ["fac"] = "A", + ["lvl"] = "28", + ["rnk"] = "2", + }, + [14276] = { + ["coords"] = { + [1] = { 29.1, 73.6, 267, 18000 }, + }, + ["lvl"] = "30", + ["rnk"] = "4", + }, + [14277] = { + ["coords"] = { + [1] = { 6.5, 55.8, 45, 18000 }, + [2] = { 67.7, 87.8, 267, 18000 }, + }, + ["lvl"] = "33", + ["rnk"] = "4", + }, + [14278] = { + ["coords"] = { + [1] = { 65.6, 60, 267, 18000 }, + }, + ["lvl"] = "28", + ["rnk"] = "4", + }, + [14279] = { + ["coords"] = { + [1] = { 38.6, 58.4, 267, 30600 }, + }, + ["lvl"] = "24", + ["rnk"] = "4", + }, + [14280] = { + ["coords"] = { + [1] = { 86, 39.9, 267, 37800 }, + }, + ["lvl"] = "27", + ["rnk"] = "4", + }, + [14281] = { + ["coords"] = { + [1] = { 47.5, 82.4, 36, 75600 }, + [2] = { 58.6, 69.3, 36, 75600 }, + [3] = { 50.4, 20.5, 267, 75600 }, + [4] = { 60.1, 9.1, 267, 75600 }, + }, + ["lvl"] = "23", + ["rnk"] = "4", + }, + [14282] = { + ["coords"] = { + [1] = { 49.3, 81.8, 2597, 120 }, + [2] = { 49.3, 81.7, 2597, 120 }, + [3] = { 55.4, 69.2, 2597, 120 }, + [4] = { 55.3, 69.1, 2597, 120 }, + [5] = { 51.7, 67.9, 2597, 120 }, + [6] = { 51.7, 67.8, 2597, 120 }, + [7] = { 56.8, 67.5, 2597, 120 }, + [8] = { 56.8, 67.4, 2597, 120 }, + [9] = { 50.1, 64.7, 2597, 120 }, + [10] = { 50.2, 64.7, 2597, 120 }, + [11] = { 48.5, 57.9, 2597, 120 }, + [12] = { 48.5, 57.8, 2597, 120 }, + [13] = { 46.8, 54.1, 2597, 120 }, + [14] = { 46.7, 54.1, 2597, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "53-54", + }, + [14283] = { + ["coords"] = { + [1] = { 51.3, 25.8, 2597, 120 }, + [2] = { 51.2, 25.8, 2597, 120 }, + [3] = { 53.7, 7.3, 2597, 120 }, + [4] = { 53.7, 7.2, 2597, 120 }, + [5] = { 54.1, 5.4, 2597, 120 }, + [6] = { 54.2, 5.3, 2597, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "53-54", + }, + [14284] = { + ["coords"] = { + [1] = { 39.2, 80.2, 36, 600 }, + [2] = { 39.2, 80.1, 36, 600 }, + [3] = { 36.9, 78, 36, 600 }, + [4] = { 37, 77.2, 36, 600 }, + [5] = { 36.9, 77.2, 36, 600 }, + [6] = { 36.1, 77, 36, 600 }, + [7] = { 36.5, 77, 36, 600 }, + [8] = { 36.2, 76.9, 36, 600 }, + [9] = { 36.5, 76.8, 36, 600 }, + [10] = { 34.6, 75.2, 36, 600 }, + [11] = { 34.7, 75.2, 36, 600 }, + [12] = { 34.4, 74.7, 36, 600 }, + [13] = { 34.5, 74.6, 36, 600 }, + [14] = { 43.1, 18.6, 267, 600 }, + [15] = { 43.2, 18.6, 267, 600 }, + [16] = { 41.1, 16.7, 267, 600 }, + [17] = { 41.3, 16, 267, 600 }, + [18] = { 41.1, 16, 267, 600 }, + [19] = { 40.5, 15.8, 267, 600 }, + [20] = { 40.8, 15.8, 267, 600 }, + [21] = { 40.6, 15.7, 267, 600 }, + [22] = { 40.8, 15.6, 267, 600 }, + [23] = { 39.1, 14.3, 267, 600 }, + [24] = { 39.2, 14.2, 267, 600 }, + [25] = { 39, 13.8, 267, 600 }, + [26] = { 39.1, 13.7, 267, 600 }, + [27] = { 53.8, 11, 2597, 430 }, + [28] = { 53.5, 11, 2597, 430 }, + [29] = { 53.5, 10.9, 2597, 430 }, + [30] = { 53.6, 9.5, 2597, 430 }, + [31] = { 53.9, 9, 2597, 430 }, + [32] = { 53.7, 8.2, 2597, 430 }, + [33] = { 53.7, 8.1, 2597, 430 }, + [34] = { 54, 7.7, 2597, 430 }, + [35] = { 53.9, 7.4, 2597, 430 }, + [36] = { 53.7, 7.3, 2597, 430 }, + [37] = { 53.8, 7.1, 2597, 430 }, + [38] = { 54.1, 5.3, 2597, 430 }, + [39] = { 54.3, 5.3, 2597, 430 }, + [40] = { 54, 5.3, 2597, 430 }, + [41] = { 53.9, 5.2, 2597, 430 }, + [42] = { 54.1, 4.9, 2597, 430 }, + [43] = { 54, 4.8, 2597, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [14285] = { + ["coords"] = { + [1] = { 64, 59, 36, 600 }, + [2] = { 63.9, 58.9, 36, 600 }, + [3] = { 65.5, 54.8, 36, 600 }, + [4] = { 65.6, 54.7, 36, 600 }, + [5] = { 65.5, 54.1, 36, 600 }, + [6] = { 65.5, 54, 36, 600 }, + [7] = { 66.6, 51.9, 36, 600 }, + [8] = { 66.6, 51.7, 36, 600 }, + [9] = { 66.9, 51.5, 36, 600 }, + [10] = { 66.9, 51.4, 36, 600 }, + [11] = { 54.9, 69.8, 2597, 430 }, + [12] = { 54.7, 69.5, 2597, 430 }, + [13] = { 54.8, 69.5, 2597, 430 }, + [14] = { 55.4, 69.1, 2597, 430 }, + [15] = { 55.6, 68.7, 2597, 430 }, + [16] = { 56, 68.7, 2597, 430 }, + [17] = { 56.8, 68, 2597, 430 }, + [18] = { 56.8, 67.9, 2597, 430 }, + [19] = { 56.3, 67.8, 2597, 430 }, + [20] = { 56.3, 67.7, 2597, 430 }, + [21] = { 56.9, 67.7, 2597, 430 }, + [22] = { 56.8, 67.5, 2597, 430 }, + [23] = { 57.6, 67.4, 2597, 430 }, + [24] = { 56.9, 67.3, 2597, 430 }, + [25] = { 58, 66, 2597, 430 }, + [26] = { 58.2, 65.7, 2597, 430 }, + [27] = { 57.9, 65.3, 2597, 430 }, + [28] = { 58.2, 65.1, 2597, 430 }, + [29] = { 58.6, 64.4, 2597, 430 }, + [30] = { 58.7, 64.3, 2597, 430 }, + [31] = { 58.5, 64.1, 2597, 430 }, + [32] = { 58.6, 64.1, 2597, 430 }, + }, + ["fac"] = "H", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [14301] = { + ["coords"] = { + [1] = { 12, 78.4, 16, 333 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [14302] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14303] = { + ["coords"] = {}, + ["lvl"] = "57-59", + ["rnk"] = "1", + }, + [14304] = { + ["coords"] = { + [1] = { 33.5, 41, 1637, 300 }, + [2] = { 33.4, 40.1, 1637, 300 }, + [3] = { 31.9, 40.1, 1637, 300 }, + [4] = { 35, 39.8, 1637, 300 }, + [5] = { 33.5, 39.7, 1637, 300 }, + [6] = { 34.9, 38.9, 1637, 300 }, + [7] = { 31.6, 38.7, 1637, 300 }, + [8] = { 32.5, 38.4, 1637, 300 }, + [9] = { 35.3, 37.9, 1637, 300 }, + [10] = { 37.3, 37.6, 1637, 300 }, + [11] = { 40.3, 37.3, 1637, 300 }, + [12] = { 39.8, 37.3, 1637, 300 }, + [13] = { 32.4, 37.1, 1637, 300 }, + [14] = { 31.6, 37.1, 1637, 300 }, + [15] = { 35.3, 37, 1637, 300 }, + [16] = { 40.3, 37, 1637, 300 }, + [17] = { 37.3, 37, 1637, 300 }, + [18] = { 39.8, 36.7, 1637, 300 }, + [19] = { 40.2, 36.6, 1637, 300 }, + [20] = { 34.8, 36.4, 1637, 300 }, + [21] = { 31.6, 35.5, 1637, 300 }, + [22] = { 33.2, 35.2, 1637, 300 }, + [23] = { 34.8, 35.2, 1637, 300 }, + [24] = { 33.2, 34.4, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [14305] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "4", + }, + [14306] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [14307] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [14308] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14309] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [14310] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [14311] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [14312] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [14321] = { + ["coords"] = {}, + ["lvl"] = "59", + ["rnk"] = "1", + }, + [14322] = { + ["coords"] = {}, + ["lvl"] = "59", + ["rnk"] = "1", + }, + [14323] = { + ["coords"] = {}, + ["lvl"] = "59", + ["rnk"] = "1", + }, + [14324] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14325] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [14326] = { + ["coords"] = {}, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [14327] = { + ["coords"] = {}, + ["lvl"] = "57", + ["rnk"] = "1", + }, + [14329] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [14330] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [14331] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [14332] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [14333] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [14334] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [14335] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [14336] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [14337] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [14338] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [14339] = { + ["coords"] = { + [1] = { 50, 77.1, 361, 75600 }, + }, + ["lvl"] = "49", + ["rnk"] = "4", + }, + [14340] = { + ["coords"] = { + [1] = { 39.1, 16.8, 331, 18000 }, + [2] = { 38.2, 81, 361, 18000 }, + }, + ["lvl"] = "54", + ["rnk"] = "4", + }, + [14341] = { + ["coords"] = {}, + ["lvl"] = "53-54", + ["rnk"] = "4", + }, + [14342] = { + ["coords"] = { + [1] = { 47.7, 93.1, 361, 18000 }, + }, + ["lvl"] = "51", + ["rnk"] = "4", + }, + [14343] = { + ["coords"] = { + [1] = { 50.2, 32.8, 361, 75600 }, + }, + ["lvl"] = "52", + ["rnk"] = "4", + }, + [14344] = { + ["coords"] = { + [1] = { 42.1, 75.2, 361, 115200 }, + }, + ["lvl"] = "50", + ["rnk"] = "4", + }, + [14345] = { + ["coords"] = { + [1] = { 42.2, 49.9, 361, 115200 }, + }, + ["lvl"] = "51", + ["rnk"] = "4", + }, + [14346] = { + ["coords"] = {}, + ["lvl"] = "52-53", + ["rnk"] = "1", + }, + [14347] = { + ["coords"] = { + [1] = { 52.7, 81.8, 357, 600 }, + [2] = { 21.7, 8.6, 1377, 600 }, + }, + ["fac"] = "AH", + ["lvl"] = "62", + ["rnk"] = "1", + }, + [14348] = { + ["coords"] = { + [1] = { 54, 90.4, 618, 600 }, + }, + ["fac"] = "AH", + ["lvl"] = "62", + ["rnk"] = "1", + }, + [14349] = { + ["coords"] = {}, + ["lvl"] = "56", + ["rnk"] = "1", + }, + [14350] = { + ["coords"] = {}, + ["lvl"] = "57", + }, + [14351] = { + ["coords"] = {}, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [14352] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [14353] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14354] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "57", + ["rnk"] = "1", + }, + [14355] = { + ["coords"] = { + [1] = { 76.9, 37.4, 357, 300 }, + }, + ["lvl"] = "60", + }, + [14356] = { + ["coords"] = { + [1] = { 73.2, 60.5, 8, 300 }, + [2] = { 69.6, 60, 8, 300 }, + [3] = { 66.6, 57.3, 8, 300 }, + [4] = { 73.9, 56.3, 8, 300 }, + [5] = { 66.4, 52.4, 8, 300 }, + [6] = { 74.1, 51.9, 8, 300 }, + [7] = { 72.5, 47.5, 8, 300 }, + [8] = { 68.7, 46, 8, 300 }, + }, + ["lvl"] = "38-40", + }, + [14357] = { + ["coords"] = { + [1] = { 42.4, 64.4, 44, 600 }, + [2] = { 45.5, 56.1, 44, 600 }, + }, + ["lvl"] = "25", + ["rnk"] = "1", + }, + [14358] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14361] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [14362] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [14363] = { + ["coords"] = { + [1] = { 29.1, 69, 1537, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14364] = { + ["coords"] = {}, + ["lvl"] = "56-58", + ["rnk"] = "1", + }, + [14365] = { + ["coords"] = { + [1] = { 28.7, 73.7, 1537, 900 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14366] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [14367] = { + ["coords"] = { + [1] = { 63.4, 14.3, 1537, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14368] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14369] = { + ["coords"] = {}, + ["lvl"] = "59", + ["rnk"] = "1", + }, + [14370] = { + ["coords"] = {}, + ["lvl"] = "58-60", + }, + [14371] = { + ["coords"] = {}, + ["lvl"] = "52", + ["rnk"] = "1", + }, + [14372] = { + ["coords"] = {}, + ["lvl"] = "56-57", + }, + [14373] = { + ["coords"] = { + [1] = { 75.2, 43.8, 357, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "59", + }, + [14374] = { + ["coords"] = { + [1] = { 31.2, 44.6, 357, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "59", + }, + [14375] = { + ["coords"] = { + [1] = { 50.7, 71.8, 1637, 600 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14376] = { + ["coords"] = { + [1] = { 17.4, 61.4, 1637, 600 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14377] = { + ["coords"] = { + [1] = { 52.5, 67.2, 1637, 600 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14378] = { + ["coords"] = { + [1] = { 25.3, 60.4, 141, 600 }, + [2] = { 38.9, 64.7, 1657, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14379] = { + ["coords"] = { + [1] = { 26.2, 55.6, 141, 600 }, + [2] = { 43.1, 41.6, 1657, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14380] = { + ["coords"] = { + [1] = { 30.6, 61.6, 141, 600 }, + [2] = { 64.6, 70.7, 1657, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14381] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14382] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14383] = { + ["coords"] = {}, + ["lvl"] = "58", + ["rnk"] = "1", + }, + [14385] = { + ["coords"] = {}, + ["lvl"] = "59-60", + }, + [14386] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [14387] = { + ["coords"] = { + [1] = { 26.4, 24.5, 46, 900 }, + [2] = { 32.1, 94.7, 51, 900 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14388] = { + ["coords"] = { + [1] = { 10.7, 56.6, 46, 300 }, + }, + ["lvl"] = "50-52", + ["rnk"] = "1", + }, + [14389] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14390] = { + ["coords"] = { + [1] = { 10.9, 58.9, 46, 240 }, + [2] = { 11.1, 58.9, 46, 240 }, + [3] = { 10.9, 58.7, 46, 240 }, + [4] = { 11, 58.6, 46, 240 }, + [5] = { 11, 58.5, 46, 240 }, + }, + ["fac"] = "A", + ["lvl"] = "36-40", + ["rnk"] = "1", + }, + [14391] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [14392] = { + ["coords"] = { + [1] = { 46.2, 6.8, 14, 600 }, + [2] = { 51.7, 75.5, 1637, 600 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14393] = { + ["coords"] = { + [1] = { 11, 58.8, 46, 240 }, + [2] = { 11.2, 58.6, 46, 5 }, + }, + ["fac"] = "A", + ["lvl"] = "37-42", + ["rnk"] = "1", + }, + [14394] = { + ["coords"] = { + [1] = { 61.4, 78.9, 1519, 490 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14395] = { + ["coords"] = { + [1] = { 62, 30.1, 357, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "57-58", + }, + [14396] = { + ["coords"] = {}, + ["lvl"] = "59", + }, + [14397] = { + ["coords"] = {}, + ["lvl"] = "59-60", + }, + [14398] = { + ["coords"] = {}, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [14399] = { + ["coords"] = {}, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [14400] = { + ["coords"] = {}, + ["lvl"] = "59-60", + }, + [14401] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14402] = { + ["coords"] = { + [1] = { 64.3, 46, 1497, 900 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14403] = { + ["coords"] = { + [1] = { 67.7, 42, 1497, 900 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14404] = { + ["coords"] = { + [1] = { 68.2, 40.8, 1497, 900 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14406] = { + ["coords"] = {}, + ["lvl"] = "36-37", + }, + [14421] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [14422] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [14423] = { + ["coords"] = { + [1] = { 62.3, 62.1, 1519, 350 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14424] = { + ["coords"] = { + [1] = { 22.3, 22, 11, 30600 }, + }, + ["lvl"] = "25", + ["rnk"] = "4", + }, + [14425] = { + ["coords"] = { + [1] = { 30.1, 30.7, 11, 61200 }, + }, + ["lvl"] = "24", + ["rnk"] = "4", + }, + [14426] = { + ["coords"] = { + [1] = { 46.3, 96.8, 17, 18000 }, + [2] = { 37.1, 32.8, 400, 18000 }, + }, + ["lvl"] = "27", + ["rnk"] = "4", + }, + [14427] = { + ["coords"] = { + [1] = { 55.6, 50.4, 400, 37800 }, + }, + ["lvl"] = "28", + ["rnk"] = "4", + }, + [14428] = { + ["coords"] = { + [1] = { 67.1, 58.6, 141, 3600 }, + }, + ["lvl"] = "7", + ["rnk"] = "4", + }, + [14429] = { + ["coords"] = { + [1] = { 42.5, 79.5, 141, 5400 }, + }, + ["lvl"] = "11", + ["rnk"] = "4", + }, + [14430] = { + ["coords"] = { + [1] = { 58.1, 76.6, 141, 3600 }, + }, + ["lvl"] = "9", + ["rnk"] = "4", + }, + [14431] = { + ["coords"] = { + [1] = { 34.8, 34.9, 141, 3600 }, + }, + ["lvl"] = "8", + ["rnk"] = "4", + }, + [14432] = { + ["coords"] = { + [1] = { 51.4, 50.6, 141, 3600 }, + }, + ["lvl"] = "6", + ["rnk"] = "4", + }, + [14433] = { + ["coords"] = { + [1] = { 12.6, 67.5, 11, 75600 }, + }, + ["lvl"] = "30", + ["rnk"] = "4", + }, + [14434] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [14435] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [14436] = { + ["coords"] = { + [1] = { 12.7, 31.6, 46, 500 }, + }, + ["fac"] = "AH", + ["lvl"] = "61", + }, + [14437] = { + ["coords"] = { + [1] = { 12.4, 31.6, 46, 500 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [14438] = { + ["coords"] = { + [1] = { 52, 61.1, 1519, 350 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14439] = { + ["coords"] = { + [1] = { 63.8, 36, 1519, 350 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14440] = { + ["coords"] = { + [1] = { 42.3, 31.2, 215, 500 }, + [2] = { 61.7, 70.7, 1638, 500 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14441] = { + ["coords"] = { + [1] = { 39.4, 28.8, 215, 500 }, + [2] = { 47.1, 58.8, 1638, 500 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14442] = { + ["coords"] = { + [1] = { 39.6, 27.1, 215, 500 }, + [2] = { 48.3, 50.5, 1638, 500 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14443] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [14444] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "4", + }, + [14445] = { + ["coords"] = { + [1] = { 68.9, 38.9, 8, 18000 }, + }, + ["lvl"] = "45", + ["rnk"] = "2", + }, + [14446] = { + ["coords"] = { + [1] = { 71.4, 15, 4, 37800 }, + [2] = { 61.4, 83.7, 8, 37800 }, + }, + ["lvl"] = "43", + ["rnk"] = "4", + }, + [14447] = { + ["coords"] = { + [1] = { 95.9, 64.4, 8, 75600 }, + }, + ["lvl"] = "43", + ["rnk"] = "4", + }, + [14448] = { + ["coords"] = { + [1] = { 23.3, 49.2, 8, 75600 }, + }, + ["lvl"] = "42", + ["rnk"] = "4", + }, + [14449] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [14450] = { + ["coords"] = { + [1] = { 47.4, 38.2, 1519, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [14451] = { + ["coords"] = { + [1] = { 70.7, 25.2, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "10", + }, + [14452] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [14453] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [14454] = { + ["coords"] = { + [1] = { 21.9, 31.6, 1377, 999999999 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14455] = { + ["coords"] = { + [1] = { 21.9, 32, 1377, 604800 }, + [2] = { 21.7, 31.7, 1377, 604800 }, + [3] = { 21.7, 31.3, 1377, 604800 }, + }, + ["lvl"] = "57-58", + }, + [14456] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [14457] = { + ["coords"] = { + [1] = { 52.4, 42.7, 618, 999999999 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14458] = { + ["coords"] = { + [1] = { 52.3, 42.8, 618, 604800 }, + [2] = { 52.5, 42.8, 618, 604800 }, + [3] = { 52.3, 42.6, 618, 604800 }, + [4] = { 52.5, 42.5, 618, 604800 }, + }, + ["lvl"] = "56-58", + }, + [14459] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [14460] = { + ["coords"] = { + [1] = { 47.2, 56.6, 490, 604800 }, + [2] = { 47.3, 56.3, 490, 604800 }, + [3] = { 47.5, 56.2, 490, 604800 }, + }, + ["lvl"] = "54-56", + }, + [14461] = { + ["coords"] = { + [1] = { 47.4, 56.5, 490, 999999999 }, + }, + ["lvl"] = "58", + ["rnk"] = "1", + }, + [14462] = { + ["coords"] = { + [1] = { 82, 22.4, 16, 604800 }, + [2] = { 81.9, 22.3, 16, 604800 }, + [3] = { 82.2, 22.3, 16, 604800 }, + }, + ["lvl"] = "55-57", + }, + [14463] = { + ["coords"] = { + [1] = { 34.1, 50.1, 4, 300 }, + [2] = { 72.2, 12.2, 33, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [14464] = { + ["coords"] = { + [1] = { 82, 22.1, 16, 999999999 }, + }, + ["lvl"] = "58", + ["rnk"] = "1", + }, + [14465] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [14466] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [14467] = { + ["coords"] = { + [1] = { 45.3, 35.3, 361, 180 }, + }, + ["lvl"] = "55", + ["rnk"] = "1", + }, + [14469] = { + ["coords"] = { + [1] = { 41.4, 44.9, 361, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "56", + }, + [14470] = { + ["coords"] = { + [1] = { 41.4, 45, 361, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "56", + }, + [14471] = { + ["coords"] = { + [1] = { 29.6, 86.6, 1377, 172800 }, + }, + ["lvl"] = "61", + ["rnk"] = "2", + }, + [14472] = { + ["coords"] = { + [1] = { 39.3, 55.4, 1377, 115200 }, + }, + ["lvl"] = "57", + ["rnk"] = "4", + }, + [14473] = { + ["coords"] = { + [1] = { 63, 93.8, 1377, 115200 }, + }, + ["lvl"] = "60", + ["rnk"] = "2", + }, + [14474] = { + ["coords"] = { + [1] = { 23.6, 61.1, 1377, 75600 }, + }, + ["lvl"] = "59", + ["rnk"] = "2", + }, + [14475] = { + ["coords"] = { + [1] = { 45.7, 28.9, 1377, 75600 }, + }, + ["lvl"] = "57", + ["rnk"] = "2", + }, + [14476] = { + ["coords"] = { + [1] = { 63.2, 16.7, 1377, 37800 }, + }, + ["lvl"] = "56", + ["rnk"] = "4", + }, + [14477] = { + ["coords"] = { + [1] = { 44.4, 80.8, 1377, 54000 }, + }, + ["lvl"] = "58", + ["rnk"] = "4", + }, + [14478] = { + ["coords"] = { + [1] = { 21.9, 16.7, 1377, 18000 }, + }, + ["lvl"] = "58", + ["rnk"] = "4", + }, + [14479] = { + ["coords"] = { + [1] = { 18.2, 85.8, 1377, 18000 }, + }, + ["lvl"] = "60", + ["rnk"] = "4", + }, + [14480] = { + ["coords"] = { + [1] = { 52.2, 69.1, 1637, 720 }, + }, + ["fac"] = "H", + ["lvl"] = "10", + }, + [14481] = { + ["coords"] = { + [1] = { 53.8, 65.4, 1519, 720 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [14482] = { + ["coords"] = {}, + ["lvl"] = "59-60", + }, + [14483] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14484] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "51-52", + }, + [14485] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "52-53", + }, + [14486] = { + ["coords"] = {}, + ["lvl"] = "57-59", + }, + [14487] = { + ["coords"] = { + [1] = { 33.3, 22.5, 33, 37800 }, + }, + ["lvl"] = "37", + ["rnk"] = "4", + }, + [14488] = { + ["coords"] = { + [1] = { 37.4, 31.2, 33, 75600 }, + }, + ["lvl"] = "38", + ["rnk"] = "4", + }, + [14489] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [14490] = { + ["coords"] = { + [1] = { 27.2, 57.1, 33, 115200 }, + }, + ["lvl"] = "44", + ["rnk"] = "4", + }, + [14491] = { + ["coords"] = { + [1] = { 37.8, 61.2, 33, 115200 }, + }, + ["lvl"] = "42", + ["rnk"] = "4", + }, + [14492] = { + ["coords"] = { + [1] = { 36.5, 57.1, 33, 75600 }, + }, + ["lvl"] = "42", + ["rnk"] = "4", + }, + [14493] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [14494] = { + ["coords"] = { + [1] = { 20.9, 18.4, 139, 7200 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14495] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [14496] = { + ["coords"] = { + [1] = { 46.8, 38.6, 1519, 120 }, + [2] = { 46.6, 38.4, 1519, 120 }, + [3] = { 46.7, 38.3, 1519, 120 }, + [4] = { 48.4, 37.7, 1519, 120 }, + [5] = { 47.5, 36.2, 1519, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "1-3", + }, + [14497] = { + ["coords"] = { + [1] = { 48.3, 36.3, 1519, 285 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [14498] = { + ["coords"] = { + [1] = { 70.6, 23.7, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "34", + }, + [14499] = { + ["coords"] = { + [1] = { 69.9, 26.2, 1637, 300 }, + [2] = { 71.1, 23.3, 1637, 300 }, + [3] = { 70.4, 22.7, 1637, 300 }, + [4] = { 71.1, 22.5, 1637, 300 }, + [5] = { 70.8, 22.4, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "1-3", + }, + [14500] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "58", + }, + [14501] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [14502] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [14503] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [14504] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [14505] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [14506] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [14507] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [14508] = { + ["coords"] = { + [1] = { 29.6, 47.4, 33, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "47", + }, + [14509] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [14510] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [14511] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14512] = { + ["coords"] = {}, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [14513] = { + ["coords"] = {}, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [14514] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [14515] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [14516] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [14517] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [14518] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14519] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14520] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14521] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14522] = { + ["coords"] = { + [1] = { 36.2, 44.5, 361, 300 }, + }, + ["lvl"] = "54", + }, + [14523] = { + ["coords"] = { + [1] = { 40.8, 48.4, 361, 300 }, + }, + ["lvl"] = "57", + }, + [14524] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "63", + ["rnk"] = "1", + }, + [14525] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "63", + ["rnk"] = "1", + }, + [14526] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "63", + ["rnk"] = "1", + }, + [14527] = { + ["coords"] = { + [1] = { 31.5, 47.4, 490, 10800 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14528] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14529] = { + ["coords"] = { + [1] = { 24.8, 65.9, 46, 10800 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14530] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14531] = { + ["coords"] = { + [1] = { 60.3, 13.2, 618, 10800 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14532] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14533] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14534] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14535] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14536] = { + ["coords"] = { + [1] = { 24.7, 76, 1377, 10800 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14538] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14539] = { + ["coords"] = { + [1] = { 69.6, 12.9, 1637, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [14540] = { + ["coords"] = { + [1] = { 69, 12, 1637, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [14541] = { + ["coords"] = { + [1] = { 69.1, 12.6, 1637, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [14542] = { + ["coords"] = { + [1] = { 47.5, 58.8, 215, 250 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [14543] = { + ["coords"] = { + [1] = { 55.3, 75.3, 14, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [14544] = { + ["coords"] = { + [1] = { 55.3, 75.6, 14, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [14545] = { + ["coords"] = { + [1] = { 55.3, 75.4, 14, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [14546] = { + ["coords"] = { + [1] = { 64.5, 50.3, 1, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [14547] = { + ["coords"] = { + [1] = { 63.7, 50.5, 1, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [14548] = { + ["coords"] = { + [1] = { 64.2, 50.4, 1, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [14549] = { + ["coords"] = { + [1] = { 47.5, 58.7, 215, 250 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [14550] = { + ["coords"] = { + [1] = { 47.4, 58.6, 215, 250 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [14551] = { + ["coords"] = { + [1] = { 49.1, 47.8, 1, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [14552] = { + ["coords"] = { + [1] = { 49, 48, 1, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [14553] = { + ["coords"] = { + [1] = { 49.1, 47.9, 1, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [14554] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [14555] = { + ["coords"] = { + [1] = { 25.3, 50.2, 141, 300 }, + [2] = { 38.8, 15.8, 1657, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [14556] = { + ["coords"] = { + [1] = { 25.2, 50.1, 141, 300 }, + [2] = { 38.3, 15.3, 1657, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [14557] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [14558] = { + ["coords"] = { + [1] = { 59.8, 52.7, 85, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [14559] = { + ["coords"] = { + [1] = { 84.2, 65.5, 12, 180 }, + [2] = { 65.2, 51.7, 15, 360 }, + [3] = { 52.3, 55.2, 267, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [14560] = { + ["coords"] = { + [1] = { 84.9, 64.7, 12, 180 }, + [2] = { 65.3, 51.9, 15, 360 }, + [3] = { 52.3, 55.1, 267, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [14561] = { + ["coords"] = { + [1] = { 84.9, 65, 12, 180 }, + [2] = { 65.1, 51.9, 15, 360 }, + [3] = { 52.5, 55.4, 267, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [14562] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [14563] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [14564] = { + ["coords"] = {}, + ["lvl"] = "59-60", + }, + [14565] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [14566] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [14567] = { + ["coords"] = { + [1] = { 51.4, 28.7, 440, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "52", + }, + [14568] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [14581] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [14601] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [14602] = { + ["coords"] = { + [1] = { 25.3, 50, 141, 300 }, + [2] = { 38.8, 14.9, 1657, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [14603] = { + ["coords"] = {}, + ["lvl"] = "48-49", + }, + [14604] = { + ["coords"] = {}, + ["lvl"] = "48-49", + }, + [14605] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14606] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [14621] = { + ["coords"] = { + [1] = { 40.8, 35.7, 51, 500 }, + }, + ["lvl"] = "50", + ["rnk"] = "1", + }, + [14622] = { + ["coords"] = { + [1] = { 38.4, 29, 51, 500 }, + [2] = { 38.5, 27.6, 51, 500 }, + [3] = { 36.2, 26.9, 51, 500 }, + [4] = { 37.4, 26.5, 51, 500 }, + [5] = { 37.8, 26.1, 51, 500 }, + [6] = { 34.9, 25.4, 51, 500 }, + }, + ["lvl"] = "50-52", + }, + [14623] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [14624] = { + ["coords"] = { + [1] = { 38.8, 28.5, 51, 500 }, + }, + ["lvl"] = "52", + }, + [14625] = { + ["coords"] = { + [1] = { 38.1, 27, 51, 500 }, + }, + ["lvl"] = "60", + }, + [14626] = { + ["coords"] = { + [1] = { 39, 27.5, 51, 500 }, + }, + ["lvl"] = "54", + }, + [14627] = { + ["coords"] = { + [1] = { 38.6, 27.8, 51, 500 }, + }, + ["lvl"] = "53", + }, + [14628] = { + ["coords"] = { + [1] = { 38.4, 27.7, 51, 500 }, + }, + ["lvl"] = "51", + }, + [14629] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [14630] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [14631] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [14632] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [14633] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [14634] = { + ["coords"] = { + [1] = { 37.7, 26.6, 51, 500 }, + }, + ["lvl"] = "59", + }, + [14635] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [14636] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + ["rnk"] = "1", + }, + [14637] = { + ["coords"] = { + [1] = { 44.8, 43.4, 357, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "40", + }, + [14638] = { + ["coords"] = {}, + ["lvl"] = "47-48", + }, + [14639] = { + ["coords"] = {}, + ["lvl"] = "47-49", + }, + [14640] = { + ["coords"] = {}, + ["lvl"] = "49-50", + }, + [14641] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "1", + }, + [14642] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "1", + }, + [14643] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "60", + }, + [14644] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "60", + }, + [14645] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "1", + }, + [14646] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [14661] = { + ["coords"] = { + [1] = { 77, 61.6, 357, 300 }, + }, + ["lvl"] = "47", + }, + [14662] = { + ["coords"] = {}, + ["lvl"] = "52", + }, + [14663] = { + ["coords"] = {}, + ["lvl"] = "54", + }, + [14664] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [14666] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [14667] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [14668] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [14681] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [14682] = { + ["coords"] = {}, + ["lvl"] = "25", + ["rnk"] = "1", + }, + [14683] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [14684] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14685] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [14686] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "40", + ["rnk"] = "1", + }, + [14687] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [14688] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14689] = { + ["coords"] = {}, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [14690] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14691] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [14692] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [14693] = { + ["coords"] = {}, + ["lvl"] = "34", + ["rnk"] = "1", + }, + [14694] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [14695] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14696] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [14697] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "4", + }, + [14698] = { + ["coords"] = {}, + ["lvl"] = "57-59", + }, + [14699] = { + ["coords"] = {}, + ["lvl"] = "54-55", + ["rnk"] = "1", + }, + [14700] = { + ["coords"] = {}, + ["lvl"] = "57-59", + }, + [14701] = { + ["coords"] = {}, + ["lvl"] = "54-55", + ["rnk"] = "1", + }, + [14702] = { + ["coords"] = {}, + ["lvl"] = "57-59", + }, + [14703] = { + ["coords"] = {}, + ["lvl"] = "56-57", + ["rnk"] = "1", + }, + [14704] = { + ["coords"] = {}, + ["lvl"] = "54-55", + ["rnk"] = "1", + }, + [14705] = { + ["coords"] = {}, + ["lvl"] = "57-59", + }, + [14706] = { + ["coords"] = {}, + ["lvl"] = "54-55", + ["rnk"] = "1", + }, + [14707] = { + ["coords"] = {}, + ["lvl"] = "57-59", + }, + [14708] = { + ["coords"] = {}, + ["lvl"] = "57-59", + }, + [14709] = { + ["coords"] = {}, + ["lvl"] = "54-55", + ["rnk"] = "1", + }, + [14710] = { + ["coords"] = {}, + ["lvl"] = "55-56", + ["rnk"] = "1", + }, + [14711] = { + ["coords"] = {}, + ["lvl"] = "57-59", + }, + [14712] = { + ["coords"] = {}, + ["lvl"] = "55-56", + ["rnk"] = "1", + }, + [14713] = { + ["coords"] = {}, + ["lvl"] = "57-59", + }, + [14714] = { + ["coords"] = {}, + ["lvl"] = "56-57", + ["rnk"] = "1", + }, + [14715] = { + ["coords"] = { + [1] = { 61.7, 84.3, 331, 600 }, + [2] = { 61.6, 84.3, 331, 600 }, + [3] = { 61.8, 84.2, 331, 600 }, + [4] = { 61.6, 84.2, 331, 600 }, + [5] = { 61.8, 83.8, 331, 600 }, + [6] = { 61.6, 83.8, 331, 600 }, + [7] = { 61.4, 83.7, 331, 600 }, + [8] = { 61.5, 83.7, 331, 600 }, + [9] = { 62.3, 83, 331, 600 }, + [10] = { 62.2, 82.9, 331, 600 }, + [11] = { 62.4, 82.9, 331, 600 }, + [12] = { 62.5, 82.8, 331, 600 }, + [13] = { 62.2, 82, 331, 600 }, + [14] = { 62, 82, 331, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [14717] = { + ["coords"] = { + [1] = { 46.6, 8.6, 17, 600 }, + [2] = { 46.5, 8.6, 17, 600 }, + [3] = { 46.5, 8.5, 17, 600 }, + [4] = { 46.6, 8.5, 17, 600 }, + [5] = { 47.2, 8.3, 17, 600 }, + [6] = { 47.3, 8.2, 17, 600 }, + [7] = { 47.2, 8.2, 17, 600 }, + [8] = { 47.2, 8.1, 17, 600 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [14718] = { + ["coords"] = { + [1] = { 46.9, 8.9, 17, 413 }, + [2] = { 47, 8.8, 17, 413 }, + [3] = { 46.7, 8.6, 17, 413 }, + [4] = { 47.1, 8.6, 17, 413 }, + [5] = { 46.7, 8.4, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "26-27", + }, + [14719] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14720] = { + ["coords"] = { + [1] = { 46, 6.9, 14, 600 }, + [2] = { 49.4, 35.2, 1377, 25 }, + [3] = { 51, 75.7, 1637, 600 }, + }, + ["fac"] = "H", + ["lvl"] = "62", + ["rnk"] = "1", + }, + [14721] = { + ["coords"] = { + [1] = { 66.9, 72.4, 1519, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "62", + ["rnk"] = "1", + }, + [14722] = { + ["coords"] = { + [1] = { 44.3, 74, 1519, 325 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [14723] = { + ["coords"] = { + [1] = { 43.2, 31.6, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [14724] = { + ["coords"] = { + [1] = { 74.1, 48.2, 1537, 25000 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [14725] = { + ["coords"] = { + [1] = { 30.5, 51.7, 141, 300 }, + [2] = { 64, 23, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [14726] = { + ["coords"] = { + [1] = { 63.6, 51.2, 1637, 300 }, + [2] = { 63.4, 44, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [14727] = { + ["coords"] = { + [1] = { 42.5, 10.1, 14, 300 }, + [2] = { 37.7, 87.9, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [14728] = { + ["coords"] = { + [1] = { 38.6, 25.5, 215, 250 }, + [2] = { 43, 42.7, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [14729] = { + ["coords"] = { + [1] = { 71.7, 29.2, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [14730] = { + ["coords"] = { + [1] = { 81.7, 82.2, 47, 350 }, + [2] = { 76.9, 82.2, 47, 350 }, + [3] = { 77.4, 82.1, 47, 350 }, + [4] = { 78.5, 81.9, 47, 350 }, + [5] = { 81, 81.8, 47, 350 }, + [6] = { 80.9, 81.8, 47, 350 }, + [7] = { 76.5, 81.5, 47, 350 }, + [8] = { 79.9, 81, 47, 350 }, + [9] = { 77.8, 80.8, 47, 350 }, + [10] = { 79.9, 80.7, 47, 350 }, + [11] = { 78.8, 80.4, 47, 350 }, + [12] = { 78.7, 80.3, 47, 350 }, + [13] = { 78.2, 79.9, 47, 350 }, + [14] = { 76.6, 79.6, 47, 350 }, + [15] = { 78.3, 79.5, 47, 350 }, + [16] = { 79.8, 79.5, 47, 350 }, + [17] = { 80.1, 79.3, 47, 350 }, + [18] = { 76.3, 79.1, 47, 350 }, + [19] = { 78.6, 79, 47, 350 }, + [20] = { 78.9, 77.4, 47, 350 }, + [21] = { 76.6, 77.3, 47, 350 }, + [22] = { 77.2, 77.2, 47, 350 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [14731] = { + ["coords"] = { + [1] = { 78.1, 81.4, 47, 350 }, + }, + ["fac"] = "H", + ["lvl"] = "48", + }, + [14732] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [14733] = { + ["coords"] = { + [1] = { 61.9, 83.9, 331, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [14734] = { + ["coords"] = { + [1] = { 79.5, 79.1, 47, 350 }, + [2] = { 79.4, 79, 47, 350 }, + [3] = { 79.4, 78.9, 47, 350 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [14735] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "63", + }, + [14736] = { + ["coords"] = { + [1] = { 78.2, 81.2, 47, 350 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [14737] = { + ["coords"] = { + [1] = { 77.5, 80.4, 47, 350 }, + }, + ["fac"] = "H", + ["lvl"] = "47", + }, + [14738] = { + ["coords"] = { + [1] = { 79.4, 79.1, 47, 350 }, + }, + ["fac"] = "H", + ["lvl"] = "48", + }, + [14739] = { + ["coords"] = { + [1] = { 78.8, 78.2, 47, 350 }, + }, + ["fac"] = "H", + ["lvl"] = "48", + }, + [14740] = { + ["coords"] = { + [1] = { 80.3, 81.5, 47, 25 }, + }, + ["fac"] = "H", + ["lvl"] = "42", + }, + [14741] = { + ["coords"] = { + [1] = { 79.2, 79.5, 47, 350 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [14742] = { + ["coords"] = { + [1] = { 61.2, 37.6, 618, 333 }, + }, + ["lvl"] = "56", + }, + [14743] = { + ["coords"] = { + [1] = { 52.3, 26.9, 440, 300 }, + }, + ["lvl"] = "50", + }, + [14744] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "1", + }, + [14745] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "1", + }, + [14746] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14748] = { + ["coords"] = {}, + ["lvl"] = "49", + }, + [14750] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [14751] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "1", + }, + [14752] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [14753] = { + ["coords"] = { + [1] = { 61.5, 83.9, 331, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [14754] = { + ["coords"] = { + [1] = { 46.7, 8.4, 17, 600 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [14755] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [14756] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [14757] = { + ["coords"] = { + [1] = { 83.5, 16.6, 45, 350 }, + [2] = { 59.7, 77.8, 47, 350 }, + }, + ["fac"] = "H", + ["lvl"] = "48", + }, + [14758] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [14761] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [14762] = { + ["coords"] = { + [1] = { 42.5, 12.5, 2597, 432000 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14763] = { + ["coords"] = { + [1] = { 42, 12.7, 2597, 432000 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14764] = { + ["coords"] = { + [1] = { 42.1, 12.6, 2597, 432000 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14765] = { + ["coords"] = { + [1] = { 42.4, 12.5, 2597, 432000 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14766] = { + ["coords"] = { + [1] = { 42.2, 12.6, 2597, 432000 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14767] = { + ["coords"] = { + [1] = { 42.2, 12.6, 2597, 432000 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14768] = { + ["coords"] = { + [1] = { 42.4, 12.5, 2597, 432000 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14769] = { + ["coords"] = { + [1] = { 42, 12.7, 2597, 432000 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14770] = { + ["coords"] = { + [1] = { 47.3, 86.6, 2597, 432000 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14771] = { + ["coords"] = { + [1] = { 47.3, 86.7, 2597, 432000 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14772] = { + ["coords"] = { + [1] = { 47.6, 86.7, 2597, 432000 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14773] = { + ["coords"] = { + [1] = { 47.2, 86.8, 2597, 432000 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14774] = { + ["coords"] = { + [1] = { 47.4, 87.1, 2597, 432000 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14775] = { + ["coords"] = { + [1] = { 47.5, 86.6, 2597, 432000 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14776] = { + ["coords"] = { + [1] = { 47.6, 86.9, 2597, 432000 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14777] = { + ["coords"] = { + [1] = { 47.5, 87.1, 2597, 432000 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14781] = { + ["coords"] = { + [1] = { 46.6, 8.4, 17, 600 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [14801] = { + ["coords"] = {}, + ["lvl"] = "3", + }, + [14821] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14822] = { + ["coords"] = { + [1] = { 42.1, 69, 12, 180 }, + [2] = { 36.9, 38.4, 215, 420 }, + }, + ["lvl"] = "55", + }, + [14823] = { + ["coords"] = { + [1] = { 41.9, 68.7, 12, 180 }, + [2] = { 37.6, 38.3, 215, 420 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [14824] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [14825] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14826] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [14827] = { + ["coords"] = { + [1] = { 42, 69.9, 12, 180 }, + [2] = { 37.1, 38, 215, 420 }, + }, + ["lvl"] = "60", + }, + [14828] = { + ["coords"] = { + [1] = { 41.5, 68.9, 12, 270 }, + [2] = { 37.3, 37.7, 215, 630 }, + }, + ["lvl"] = "25", + }, + [14829] = { + ["coords"] = { + [1] = { 40.2, 69.5, 12, 180 }, + [2] = { 37.5, 39.6, 215, 420 }, + }, + ["lvl"] = "55", + }, + [14830] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [14831] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [14832] = { + ["coords"] = { + [1] = { 40.5, 69.9, 12, 180 }, + [2] = { 37.9, 39.8, 215, 420 }, + }, + ["lvl"] = "55", + }, + [14833] = { + ["coords"] = { + [1] = { 43.6, 70.8, 12, 25 }, + [2] = { 36.2, 35.2, 215, 420 }, + }, + ["lvl"] = "55", + }, + [14834] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [14841] = { + ["coords"] = { + [1] = { 41.7, 70.7, 12, 180 }, + [2] = { 37.1, 37.3, 215, 420 }, + }, + ["lvl"] = "55", + }, + [14842] = { + ["coords"] = { + [1] = { 31.6, 78.4, 1537, 300 }, + }, + ["lvl"] = "30", + }, + [14843] = { + ["coords"] = { + [1] = { 52.9, 66.6, 1637, 370 }, + }, + ["lvl"] = "30", + }, + [14844] = { + ["coords"] = { + [1] = { 42.2, 70.1, 12, 180 }, + [2] = { 36.7, 38.3, 215, 420 }, + }, + ["lvl"] = "35", + }, + [14845] = { + ["coords"] = { + [1] = { 42.2, 70.2, 12, 180 }, + [2] = { 36.6, 38.3, 215, 420 }, + }, + ["lvl"] = "35", + }, + [14846] = { + ["coords"] = { + [1] = { 41.2, 69.9, 12, 180 }, + [2] = { 36.4, 38, 215, 420 }, + }, + ["lvl"] = "35", + }, + [14847] = { + ["coords"] = { + [1] = { 41.3, 70.1, 12, 180 }, + [2] = { 36.4, 38.1, 215, 420 }, + }, + ["lvl"] = "35", + }, + [14848] = { + ["coords"] = { + [1] = { 60.1, 92.9, 2597, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [14849] = { + ["coords"] = { + [1] = { 42.5, 70.9, 12, 270 }, + [2] = { 41.6, 70.5, 12, 270 }, + [3] = { 40.4, 69.7, 12, 270 }, + [4] = { 42.1, 69.5, 12, 270 }, + [5] = { 40.7, 69.4, 12, 270 }, + [6] = { 42.1, 69.3, 12, 270 }, + [7] = { 42.2, 69, 12, 270 }, + [8] = { 42.3, 68.8, 12, 270 }, + [9] = { 41.5, 68.7, 12, 270 }, + [10] = { 41.6, 68.7, 12, 270 }, + [11] = { 37.5, 39.4, 215, 25 }, + [12] = { 37.6, 39.1, 215, 270 }, + [13] = { 36.8, 38.4, 215, 25 }, + [14] = { 36.6, 38.1, 215, 270 }, + [15] = { 37, 37.3, 215, 25 }, + [16] = { 36.5, 37.3, 215, 25 }, + [17] = { 36.4, 37.3, 215, 270 }, + [18] = { 36.9, 37.1, 215, 25 }, + [19] = { 36.5, 37, 215, 270 }, + [20] = { 36.5, 36.6, 215, 270 }, + }, + ["lvl"] = "25", + }, + [14850] = { + ["coords"] = { + [1] = { 55.4, 31.8, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "1", + }, + [14851] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "1", + }, + [14852] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "1", + }, + [14853] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "1", + }, + [14854] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "1", + }, + [14855] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "1", + }, + [14856] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "1", + }, + [14857] = { + ["coords"] = { + [1] = { 51.7, 24.3, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "2", + }, + [14858] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "1", + }, + [14859] = { + ["coords"] = { + [1] = { 55.4, 31.7, 17, 275 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [14860] = { + ["coords"] = { + [1] = { 43.2, 71, 12, 270 }, + [2] = { 36.5, 37.1, 215, 630 }, + }, + ["lvl"] = "4", + }, + [14861] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [14862] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [14864] = { + ["coords"] = { + [1] = { 40.5, 69.4, 12, 270 }, + [2] = { 40.9, 69.2, 12, 270 }, + [3] = { 37.7, 39.8, 215, 630 }, + [4] = { 38.1, 39.5, 215, 630 }, + }, + ["lvl"] = "5", + }, + [14865] = { + ["coords"] = { + [1] = { 40.9, 69.8, 12, 180 }, + [2] = { 37.8, 39.4, 215, 420 }, + }, + ["lvl"] = "10", + ["rnk"] = "1", + }, + [14866] = { + ["coords"] = { + [1] = { 43.2, 71, 12, 270 }, + [2] = { 36.5, 37.1, 215, 630 }, + }, + ["lvl"] = "5", + }, + [14867] = { + ["coords"] = { + [1] = { 41.9, 71.1, 12, 300 }, + [2] = { 37.7, 37.3, 215, 300 }, + }, + ["lvl"] = "5", + }, + [14868] = { + ["coords"] = { + [1] = { 40.4, 69.1, 12, 270 }, + [2] = { 38.1, 39.7, 215, 630 }, + }, + ["lvl"] = "8", + }, + [14869] = { + ["coords"] = { + [1] = { 40.6, 69.8, 12, 270 }, + [2] = { 41, 69.6, 12, 270 }, + [3] = { 40.3, 69.5, 12, 270 }, + [4] = { 40.7, 69.2, 12, 270 }, + [5] = { 37.7, 39.8, 215, 630 }, + [6] = { 38.1, 39.5, 215, 630 }, + [7] = { 37.7, 39.5, 215, 630 }, + [8] = { 37.9, 39.5, 215, 630 }, + }, + ["lvl"] = "1", + }, + [14870] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [14871] = { + ["coords"] = { + [1] = { 43.3, 70.3, 12, 270 }, + [2] = { 35.9, 35.2, 215, 630 }, + }, + ["lvl"] = "12", + }, + [14872] = { + ["coords"] = { + [1] = { 54.1, 21.2, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "2", + }, + [14873] = { + ["coords"] = { + [1] = { 55.9, 19.9, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "1", + }, + [14874] = { + ["coords"] = { + [1] = { 54.5, 20.3, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "1", + }, + [14875] = { + ["coords"] = { + [1] = { 15, 15.1, 33, 1800 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14876] = { + ["coords"] = { + [1] = { 15.2, 17.2, 33, 1800 }, + [2] = { 15.8, 16.5, 33, 1800 }, + [3] = { 15.2, 16.1, 33, 1800 }, + [4] = { 15.3, 15.1, 33, 1800 }, + [5] = { 15.1, 14.5, 33, 1800 }, + [6] = { 14.3, 13.7, 33, 1800 }, + [7] = { 15, 13.6, 33, 1800 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14877] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + ["rnk"] = "1", + }, + [14878] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [14879] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [14880] = { + ["coords"] = {}, + ["lvl"] = "56-58", + ["rnk"] = "1", + }, + [14881] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [14882] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14883] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14884] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [14885] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [14886] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [14887] = { + ["coords"] = { + [1] = { 62.4, 23.9, 47, 999999999 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [14888] = { + ["coords"] = { + [1] = { 51.2, 10.9, 357, 999999999 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [14889] = { + ["coords"] = { + [1] = { 45.4, 39.6, 10, 999999999 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [14890] = { + ["coords"] = { + [1] = { 94.2, 35.7, 331, 999999999 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [14892] = { + ["coords"] = { + [1] = { 51.7, 24.3, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "1", + }, + [14893] = { + ["coords"] = { + [1] = { 52.5, 23.1, 17, 275 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [14894] = { + ["coords"] = { + [1] = { 54.1, 21.2, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "1", + }, + [14901] = { + ["coords"] = { + [1] = { 42, 59.5, 17, 413 }, + [2] = { 57.3, 33.3, 17, 413 }, + [3] = { 57.1, 33.2, 17, 413 }, + [4] = { 57.3, 33.2, 17, 413 }, + [5] = { 57.3, 33.1, 17, 413 }, + [6] = { 57.2, 33, 17, 413 }, + [7] = { 57, 32.4, 17, 413 }, + [8] = { 57, 32.1, 17, 413 }, + [9] = { 57.1, 32.1, 17, 413 }, + [10] = { 57.1, 31.9, 17, 413 }, + [11] = { 57, 31.7, 17, 413 }, + [12] = { 56.9, 31.6, 17, 413 }, + [13] = { 57.1, 31.4, 17, 413 }, + [14] = { 57, 31.4, 17, 413 }, + [15] = { 61.4, 24.1, 17, 413 }, + [16] = { 61.9, 23.9, 17, 413 }, + [17] = { 71.6, 62.3, 215, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "4", + }, + [14902] = { + ["coords"] = { + [1] = { 15.3, 14.4, 33, 1800 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14903] = { + ["coords"] = { + [1] = { 15.3, 16.1, 33, 1800 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14904] = { + ["coords"] = { + [1] = { 15.3, 16, 33, 1800 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14905] = { + ["coords"] = { + [1] = { 14.1, 13.7, 33, 1800 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14906] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + ["rnk"] = "1", + }, + [14908] = { + ["coords"] = { + [1] = { 48.1, 8.5, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "1", + }, + [14909] = { + ["coords"] = { + [1] = { 47.9, 8.8, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "15", + }, + [14910] = { + ["coords"] = { + [1] = { 15.3, 15.5, 33, 60 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14911] = { + ["coords"] = { + [1] = { 15.1, 15.7, 33, 60 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14912] = { + ["coords"] = { + [1] = { 15.1, 15.7, 33, 60 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14913] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "0", + }, + [14921] = { + ["coords"] = { + [1] = { 15.1, 16, 33, 1800 }, + }, + ["lvl"] = "56", + ["rnk"] = "1", + }, + [14941] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + ["rnk"] = "1", + }, + [14942] = { + ["coords"] = { + [1] = { 78.9, 31.3, 1637, 600 }, + }, + ["fac"] = "H", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [14943] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14944] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14945] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14946] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14947] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14948] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14961] = { + ["coords"] = { + [1] = { 40.1, 80.2, 36, 300 }, + [2] = { 43.9, 18.6, 267, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [14962] = { + ["coords"] = { + [1] = { 62, 58.6, 36, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [14963] = { + ["coords"] = { + [1] = { 62.1, 82.8, 331, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [14964] = { + ["coords"] = { + [1] = { 46.7, 8.3, 17, 413 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [14965] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [14966] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + ["rnk"] = "1", + }, + [14967] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + ["rnk"] = "1", + }, + [14968] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + ["rnk"] = "1", + }, + [14981] = { + ["coords"] = { + [1] = { 79, 19.6, 1519, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [14982] = { + ["coords"] = { + [1] = { 70.7, 89, 1537, 6300 }, + }, + ["fac"] = "A", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [14983] = { + ["coords"] = { + [1] = { 45.8, 45.5, 45, 400 }, + }, + ["fac"] = "A", + ["lvl"] = "62", + }, + [14984] = { + ["coords"] = { + [1] = { 45.9, 45.3, 45, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "62", + }, + [14986] = { + ["coords"] = {}, + ["lvl"] = "57-60", + }, + [14987] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [14988] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "3", + }, + [14989] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [14990] = { + ["coords"] = { + [1] = { 75.4, 13.6, 130, 300 }, + [2] = { 75.4, 13.5, 130, 300 }, + [3] = { 41.5, 32.7, 215, 120 }, + [4] = { 41.1, 32.4, 215, 300 }, + [5] = { 37.2, 29.3, 215, 300 }, + [6] = { 38.8, 28.5, 215, 300 }, + [7] = { 38.7, 28.4, 215, 300 }, + [8] = { 40.2, 23.9, 215, 300 }, + [9] = { 35.3, 22.7, 215, 300 }, + [10] = { 35.3, 83.3, 267, 300 }, + [11] = { 88.9, 50.1, 405, 300 }, + [12] = { 61.6, 92.6, 1497, 300 }, + [13] = { 61.7, 92, 1497, 300 }, + [14] = { 66.1, 55.7, 1497, 300 }, + [15] = { 65.8, 55.5, 1497, 300 }, + [16] = { 73.6, 44.4, 1497, 300 }, + [17] = { 58.1, 44.4, 1497, 300 }, + [18] = { 58.1, 44, 1497, 300 }, + [19] = { 73.9, 43.8, 1497, 300 }, + [20] = { 72, 38.3, 1497, 120 }, + [21] = { 72.2, 38.2, 1497, 120 }, + [22] = { 50.5, 65.7, 1637, 300 }, + [23] = { 50.3, 65.6, 1637, 300 }, + [24] = { 47.4, 65, 1637, 300 }, + [25] = { 47.5, 64.8, 1637, 300 }, + [26] = { 20.4, 56.7, 1637, 300 }, + [27] = { 20.3, 56.3, 1637, 300 }, + [28] = { 73.4, 36.1, 1637, 300 }, + [29] = { 73.2, 36, 1637, 300 }, + [30] = { 74.3, 34.4, 1637, 120 }, + [31] = { 74.3, 34.2, 1637, 120 }, + [32] = { 57.8, 78.2, 1638, 120 }, + [33] = { 57.7, 77.8, 1638, 120 }, + [34] = { 55.4, 76.4, 1638, 300 }, + [35] = { 36.2, 61.5, 1638, 300 }, + [36] = { 36.5, 61.2, 1638, 300 }, + [37] = { 44.3, 57.2, 1638, 300 }, + [38] = { 43.9, 56.8, 1638, 300 }, + [39] = { 51.2, 34.7, 1638, 300 }, + [40] = { 51, 34.5, 1638, 300 }, + [41] = { 27, 28.8, 1638, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [14991] = { + ["coords"] = { + [1] = { 55.4, 35.2, 1, 300 }, + [2] = { 24.9, 62.1, 141, 300 }, + [3] = { 25, 62, 141, 300 }, + [4] = { 33.9, 55.4, 141, 120 }, + [5] = { 26.1, 55.2, 141, 300 }, + [6] = { 32.1, 55.1, 141, 300 }, + [7] = { 26.1, 55.1, 141, 300 }, + [8] = { 32.2, 55.1, 141, 300 }, + [9] = { 28.8, 54.4, 141, 300 }, + [10] = { 28.9, 54.4, 141, 300 }, + [11] = { 62.4, 66.7, 1519, 300 }, + [12] = { 62.2, 66.3, 1519, 300 }, + [13] = { 59.1, 64.1, 1519, 300 }, + [14] = { 58.9, 63.8, 1519, 300 }, + [15] = { 54.2, 62.7, 1519, 300 }, + [16] = { 54.3, 62.5, 1519, 300 }, + [17] = { 62.9, 32.5, 1519, 120 }, + [18] = { 62.8, 32.4, 1519, 120 }, + [19] = { 78.3, 15.3, 1519, 300 }, + [20] = { 78.5, 15.1, 1519, 300 }, + [21] = { 60, 14.8, 1519, 300 }, + [22] = { 59.7, 14.5, 1519, 300 }, + [23] = { 69.3, 88.7, 1537, 300 }, + [24] = { 69.9, 88.1, 1537, 300 }, + [25] = { 27.5, 88, 1537, 300 }, + [26] = { 27, 87.9, 1537, 300 }, + [27] = { 58.7, 83, 1537, 120 }, + [28] = { 59, 81.8, 1537, 120 }, + [29] = { 17.5, 65.8, 1537, 300 }, + [30] = { 17, 65.8, 1537, 300 }, + [31] = { 57.6, 51.2, 1537, 300 }, + [32] = { 57.9, 50.7, 1537, 300 }, + [33] = { 34.3, 21.6, 1537, 300 }, + [34] = { 34.4, 21.1, 1537, 300 }, + [35] = { 37.2, 72.8, 1657, 300 }, + [36] = { 37.4, 72.4, 1657, 300 }, + [37] = { 80.2, 40.7, 1657, 120 }, + [38] = { 80.2, 40.5, 1657, 120 }, + [39] = { 42.9, 39.5, 1657, 300 }, + [40] = { 71.7, 39.3, 1657, 300 }, + [41] = { 42.6, 39.1, 1657, 300 }, + [42] = { 72.1, 39, 1657, 300 }, + [43] = { 55.6, 36.1, 1657, 300 }, + [44] = { 56, 36, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [14994] = { + ["coords"] = { + [1] = { 14.7, 15.9, 33, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15001] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15002] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15003] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15004] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15005] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15006] = { + ["coords"] = { + [1] = { 79.6, 29, 1637, 600 }, + }, + ["fac"] = "H", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15007] = { + ["coords"] = { + [1] = { 75.4, 13.7, 130, 900 }, + [2] = { 61.4, 93, 1497, 900 }, + }, + ["fac"] = "H", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15008] = { + ["coords"] = { + [1] = { 78.3, 15.8, 1519, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15009] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15010] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [15011] = { + ["coords"] = { + [1] = { 52.6, 36, 1, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [15012] = { + ["coords"] = { + [1] = { 46.1, 13.8, 14, 180 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [15021] = { + ["coords"] = { + [1] = { 73.3, 29.7, 45, 400 }, + }, + ["fac"] = "H", + ["lvl"] = "62", + }, + [15022] = { + ["coords"] = { + [1] = { 73.5, 29.8, 45, 400 }, + }, + ["fac"] = "H", + ["lvl"] = "62", + }, + [15041] = { + ["coords"] = {}, + ["lvl"] = "59-60", + }, + [15042] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15043] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15045] = { + ["coords"] = { + [1] = { 58.9, 61.7, 3358, 345600 }, + [2] = { 58.9, 61.1, 3358, 7200 }, + [3] = { 57.6, 60.6, 3358, 345600 }, + [4] = { 60.7, 59.5, 3358, 345600 }, + [5] = { 58.5, 59.1, 3358, 345600 }, + [6] = { 56.3, 58.6, 3358, 345600 }, + [7] = { 56.6, 56.9, 3358, 345600 }, + [8] = { 58.2, 56.5, 3358, 345600 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [15046] = { + ["coords"] = { + [1] = { 59, 61.2, 3358, 7200 }, + [2] = { 57.5, 60.6, 3358, 345600 }, + [3] = { 60.7, 59.4, 3358, 345600 }, + [4] = { 58.5, 59.2, 3358, 345600 }, + [5] = { 56.4, 58.6, 3358, 345600 }, + [6] = { 59.3, 58.5, 3358, 345600 }, + [7] = { 57, 56.8, 3358, 345600 }, + [8] = { 58.4, 56.3, 3358, 345600 }, + }, + ["fac"] = "H", + ["lvl"] = "5", + }, + [15047] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [15061] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [15062] = { + ["coords"] = { + [1] = { 37.6, 64.6, 3358, 345600 }, + [2] = { 44.1, 63.9, 3358, 345600 }, + [3] = { 42.1, 63.3, 3358, 345600 }, + [4] = { 39.7, 59.5, 3358, 345600 }, + [5] = { 43.8, 59.1, 3358, 345600 }, + [6] = { 41.1, 57.9, 3358, 345600 }, + [7] = { 35.1, 57.2, 3358, 345600 }, + [8] = { 33.8, 54.3, 3358, 345600 }, + [9] = { 38.8, 53.3, 3358, 345600 }, + [10] = { 38.4, 51.2, 3358, 345600 }, + [11] = { 35.6, 51.1, 3358, 345600 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [15063] = { + ["coords"] = { + [1] = { 48.9, 46.1, 3358, 7200 }, + [2] = { 49, 45.2, 3358, 7200 }, + [3] = { 49.5, 45.1, 3358, 7200 }, + [4] = { 48.4, 44.8, 3358, 7200 }, + [5] = { 48, 44.3, 3358, 7200 }, + [6] = { 48.8, 44.1, 3358, 7200 }, + [7] = { 48.7, 43.7, 3358, 7200 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [15064] = { + ["coords"] = { + [1] = { 48.9, 46.1, 3358, 7200 }, + [2] = { 49, 45.2, 3358, 7200 }, + [3] = { 48.4, 44.8, 3358, 7200 }, + [4] = { 48, 44.2, 3358, 7200 }, + [5] = { 48.7, 43.7, 3358, 7200 }, + }, + ["fac"] = "H", + ["lvl"] = "5", + }, + [15065] = { + ["coords"] = { + [1] = { 48.5, 42.7, 3358, 7200 }, + }, + ["lvl"] = "5", + }, + [15066] = { + ["coords"] = { + [1] = { 48.4, 41.9, 3358, 345600 }, + }, + ["lvl"] = "5", + }, + [15067] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15068] = { + ["coords"] = {}, + ["lvl"] = "57-60", + ["rnk"] = "1", + }, + [15069] = { + ["coords"] = {}, + ["lvl"] = "63", + }, + [15070] = { + ["coords"] = { + [1] = { 14.5, 15.8, 33, 1800 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15071] = { + ["coords"] = { + [1] = { 47, 45.3, 3358, 345600 }, + }, + ["lvl"] = "5", + }, + [15072] = { + ["coords"] = { + [1] = { 48.5, 42.7, 3358, 7200 }, + }, + ["lvl"] = "5", + }, + [15073] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [15074] = { + ["coords"] = { + [1] = { 59.6, 31.6, 3358, 7200 }, + [2] = { 59.7, 31.5, 3358, 7200 }, + [3] = { 58.3, 27.7, 3358, 7200 }, + [4] = { 56.8, 26.5, 3358, 345600 }, + [5] = { 59.6, 26.2, 3358, 7200 }, + [6] = { 60.1, 25.1, 3358, 7200 }, + [7] = { 59.3, 24.1, 3358, 7200 }, + [8] = { 61, 23.7, 3358, 7200 }, + [9] = { 60.1, 23.3, 3358, 7200 }, + [10] = { 60.6, 22.1, 3358, 7200 }, + [11] = { 61.6, 21.4, 3358, 7200 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [15075] = { + ["coords"] = { + [1] = { 55.4, 27.5, 3358, 7200 }, + [2] = { 57.4, 26.7, 3358, 345600 }, + [3] = { 60.1, 26.3, 3358, 7200 }, + [4] = { 59.7, 25.4, 3358, 7200 }, + [5] = { 59.8, 23.8, 3358, 7200 }, + [6] = { 60.9, 23.5, 3358, 7200 }, + [7] = { 59.8, 22.7, 3358, 7200 }, + [8] = { 60.6, 22, 3358, 7200 }, + [9] = { 61.6, 21.4, 3358, 7200 }, + }, + ["fac"] = "H", + ["lvl"] = "5", + }, + [15076] = { + ["coords"] = { + [1] = { 27.3, 77.1, 33, 1800 }, + }, + ["lvl"] = "55", + ["rnk"] = "1", + }, + [15077] = { + ["coords"] = { + [1] = { 27.4, 76.8, 33, 18000 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [15078] = { + ["coords"] = { + [1] = { 27.4, 76.8, 33, 550 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [15079] = { + ["coords"] = { + [1] = { 27.3, 76.9, 33, 550 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [15080] = { + ["coords"] = { + [1] = { 13.8, 15.4, 33, 1800 }, + [2] = { 13.9, 15.2, 33, 1800 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15081] = { + ["coords"] = {}, + ["lvl"] = "45-46", + ["rnk"] = "1", + }, + [15082] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15083] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15084] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15085] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15086] = { + ["coords"] = { + [1] = { 39.6, 29.9, 3358, 345600 }, + [2] = { 37.5, 27.6, 3358, 345600 }, + [3] = { 37.6, 25.7, 3358, 7200 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [15087] = { + ["coords"] = { + [1] = { 38.5, 29.1, 3358, 7200 }, + [2] = { 37.5, 27.4, 3358, 345600 }, + [3] = { 38.9, 26.2, 3358, 7200 }, + }, + ["fac"] = "H", + ["lvl"] = "5", + }, + [15088] = { + ["coords"] = { + [1] = { 27.2, 77.1, 33, 300 }, + [2] = { 27.5, 76.8, 33, 300 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15089] = { + ["coords"] = { + [1] = { 35, 65.4, 3358, 345600 }, + [2] = { 37.6, 64.6, 3358, 345600 }, + [3] = { 44.2, 63.8, 3358, 345600 }, + [4] = { 40.5, 63.5, 3358, 345600 }, + [5] = { 35.8, 61.5, 3358, 345600 }, + [6] = { 39.7, 59.4, 3358, 345600 }, + [7] = { 43.8, 59.1, 3358, 345600 }, + [8] = { 35.4, 57.8, 3358, 345600 }, + [9] = { 33.8, 54.3, 3358, 345600 }, + [10] = { 38.8, 53.3, 3358, 345600 }, + [11] = { 34.7, 51.2, 3358, 345600 }, + [12] = { 38.4, 51.2, 3358, 345600 }, + [13] = { 35.6, 51.1, 3358, 345600 }, + [14] = { 31.1, 50.8, 3358, 345600 }, + [15] = { 34.5, 50.2, 3358, 345600 }, + }, + ["fac"] = "H", + ["lvl"] = "5", + }, + [15090] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15091] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [15101] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [15102] = { + ["coords"] = { + [1] = { 55.4, 35.2, 1, 300 }, + [2] = { 24.9, 62.1, 141, 300 }, + [3] = { 25, 62, 141, 300 }, + [4] = { 33.9, 55.4, 141, 120 }, + [5] = { 26.1, 55.2, 141, 300 }, + [6] = { 32.1, 55.1, 141, 300 }, + [7] = { 26.1, 55.1, 141, 300 }, + [8] = { 32.2, 55.1, 141, 300 }, + [9] = { 28.8, 54.4, 141, 300 }, + [10] = { 28.9, 54.4, 141, 300 }, + [11] = { 62.4, 66.7, 1519, 300 }, + [12] = { 62.2, 66.3, 1519, 300 }, + [13] = { 59.1, 64.1, 1519, 300 }, + [14] = { 58.9, 63.8, 1519, 300 }, + [15] = { 54.2, 62.7, 1519, 300 }, + [16] = { 54.3, 62.5, 1519, 300 }, + [17] = { 62.9, 32.5, 1519, 120 }, + [18] = { 62.8, 32.4, 1519, 120 }, + [19] = { 79.1, 20.3, 1519, 300 }, + [20] = { 79.4, 19.9, 1519, 300 }, + [21] = { 60, 14.8, 1519, 300 }, + [22] = { 59.7, 14.5, 1519, 300 }, + [23] = { 27.5, 88, 1537, 300 }, + [24] = { 27, 87.9, 1537, 300 }, + [25] = { 70.3, 87.5, 1537, 300 }, + [26] = { 70.1, 86.6, 1537, 300 }, + [27] = { 58.7, 83, 1537, 120 }, + [28] = { 59, 81.8, 1537, 120 }, + [29] = { 17.5, 65.8, 1537, 300 }, + [30] = { 17, 65.8, 1537, 300 }, + [31] = { 57.6, 51.2, 1537, 300 }, + [32] = { 57.9, 50.7, 1537, 300 }, + [33] = { 34.3, 21.6, 1537, 300 }, + [34] = { 34.4, 21.1, 1537, 300 }, + [35] = { 37.2, 72.8, 1657, 300 }, + [36] = { 37.4, 72.4, 1657, 300 }, + [37] = { 80.2, 40.7, 1657, 120 }, + [38] = { 80.2, 40.5, 1657, 120 }, + [39] = { 42.9, 39.5, 1657, 300 }, + [40] = { 71.7, 39.3, 1657, 300 }, + [41] = { 42.6, 39.1, 1657, 300 }, + [42] = { 72.1, 39, 1657, 300 }, + [43] = { 55.6, 36.1, 1657, 300 }, + [44] = { 56, 36, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "22-23", + }, + [15103] = { + ["coords"] = { + [1] = { 55.4, 35.2, 1, 300 }, + [2] = { 24.9, 62.1, 141, 300 }, + [3] = { 25, 62, 141, 300 }, + [4] = { 28.9, 56.4, 141, 300 }, + [5] = { 28.8, 56.4, 141, 300 }, + [6] = { 33.9, 55.4, 141, 120 }, + [7] = { 26.1, 55.2, 141, 300 }, + [8] = { 32.1, 55.1, 141, 300 }, + [9] = { 26.1, 55.1, 141, 300 }, + [10] = { 32.2, 55.1, 141, 300 }, + [11] = { 62.4, 66.7, 1519, 300 }, + [12] = { 62.2, 66.3, 1519, 300 }, + [13] = { 59.1, 64.1, 1519, 300 }, + [14] = { 58.9, 63.8, 1519, 300 }, + [15] = { 54.2, 62.7, 1519, 300 }, + [16] = { 54.3, 62.5, 1519, 300 }, + [17] = { 62.9, 32.5, 1519, 120 }, + [18] = { 62.8, 32.4, 1519, 120 }, + [19] = { 76.9, 16, 1519, 300 }, + [20] = { 77.2, 15.6, 1519, 300 }, + [21] = { 60, 14.8, 1519, 300 }, + [22] = { 59.7, 14.5, 1519, 300 }, + [23] = { 69, 89, 1537, 300 }, + [24] = { 68.5, 88.9, 1537, 300 }, + [25] = { 27.5, 88, 1537, 300 }, + [26] = { 27, 87.9, 1537, 300 }, + [27] = { 58.7, 83, 1537, 120 }, + [28] = { 59, 81.8, 1537, 120 }, + [29] = { 17.5, 65.8, 1537, 300 }, + [30] = { 17, 65.8, 1537, 300 }, + [31] = { 57.6, 51.2, 1537, 300 }, + [32] = { 57.9, 50.7, 1537, 300 }, + [33] = { 34.3, 21.6, 1537, 300 }, + [34] = { 34.4, 21.1, 1537, 300 }, + [35] = { 37.2, 72.8, 1657, 300 }, + [36] = { 37.4, 72.4, 1657, 300 }, + [37] = { 56, 45.6, 1657, 300 }, + [38] = { 55.7, 45.6, 1657, 300 }, + [39] = { 80.2, 40.7, 1657, 120 }, + [40] = { 80.2, 40.5, 1657, 120 }, + [41] = { 42.9, 39.5, 1657, 300 }, + [42] = { 71.7, 39.3, 1657, 300 }, + [43] = { 42.6, 39.1, 1657, 300 }, + [44] = { 72.1, 39, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [15104] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15105] = { + ["coords"] = { + [1] = { 73.9, 14.6, 130, 300 }, + [2] = { 73.8, 14.5, 130, 300 }, + [3] = { 41.1, 32.4, 215, 300 }, + [4] = { 41.1, 32.3, 215, 300 }, + [5] = { 37.2, 29.3, 215, 300 }, + [6] = { 38.8, 28.5, 215, 300 }, + [7] = { 38.7, 28.4, 215, 300 }, + [8] = { 40.2, 23.9, 215, 300 }, + [9] = { 54.7, 96.7, 1497, 300 }, + [10] = { 54.4, 96.4, 1497, 300 }, + [11] = { 66.1, 55.7, 1497, 300 }, + [12] = { 65.8, 55.5, 1497, 300 }, + [13] = { 73.6, 44.5, 1497, 300 }, + [14] = { 58.1, 44.4, 1497, 300 }, + [15] = { 58.1, 44, 1497, 300 }, + [16] = { 73.9, 43.8, 1497, 300 }, + [17] = { 50.5, 65.7, 1637, 300 }, + [18] = { 50.3, 65.6, 1637, 300 }, + [19] = { 47.4, 65, 1637, 300 }, + [20] = { 47.5, 64.8, 1637, 300 }, + [21] = { 20.4, 56.7, 1637, 300 }, + [22] = { 20.3, 56.3, 1637, 300 }, + [23] = { 73.5, 36, 1637, 300 }, + [24] = { 73.2, 36, 1637, 300 }, + [25] = { 55.4, 76.4, 1638, 300 }, + [26] = { 55.4, 75.8, 1638, 300 }, + [27] = { 36.2, 61.5, 1638, 300 }, + [28] = { 36.5, 61.2, 1638, 300 }, + [29] = { 44.3, 57.2, 1638, 300 }, + [30] = { 43.9, 56.8, 1638, 300 }, + [31] = { 51.2, 34.7, 1638, 300 }, + [32] = { 51, 34.5, 1638, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [15106] = { + ["coords"] = { + [1] = { 73.9, 12.1, 130, 300 }, + [2] = { 74, 12, 130, 300 }, + [3] = { 41.1, 32.4, 215, 300 }, + [4] = { 41.1, 32.3, 215, 300 }, + [5] = { 37.2, 29.3, 215, 300 }, + [6] = { 38.8, 28.5, 215, 300 }, + [7] = { 38.7, 28.4, 215, 300 }, + [8] = { 40.2, 23.9, 215, 300 }, + [9] = { 55.1, 85.7, 1497, 300 }, + [10] = { 55.6, 85.4, 1497, 300 }, + [11] = { 66, 55.8, 1497, 300 }, + [12] = { 65.8, 55.5, 1497, 300 }, + [13] = { 73.6, 44.5, 1497, 300 }, + [14] = { 58.1, 44.4, 1497, 300 }, + [15] = { 73.9, 44, 1497, 300 }, + [16] = { 58.1, 43.9, 1497, 300 }, + [17] = { 50.5, 65.7, 1637, 300 }, + [18] = { 50.3, 65.6, 1637, 300 }, + [19] = { 47.4, 65, 1637, 300 }, + [20] = { 47.5, 64.8, 1637, 300 }, + [21] = { 20.4, 56.7, 1637, 300 }, + [22] = { 20.3, 56.3, 1637, 300 }, + [23] = { 73.6, 36, 1637, 300 }, + [24] = { 73.4, 35.9, 1637, 300 }, + [25] = { 55.4, 76.4, 1638, 300 }, + [26] = { 55.4, 75.8, 1638, 300 }, + [27] = { 36.2, 61.5, 1638, 300 }, + [28] = { 36.5, 61.2, 1638, 300 }, + [29] = { 44.3, 57.2, 1638, 300 }, + [30] = { 43.9, 56.8, 1638, 300 }, + [31] = { 51.2, 34.7, 1638, 300 }, + [32] = { 51, 34.5, 1638, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [15107] = { + ["coords"] = { + [1] = { 40.1, 30.3, 3358, 7200 }, + [2] = { 39, 30, 3358, 7200 }, + [3] = { 39.5, 29.9, 3358, 7200 }, + [4] = { 39.6, 29, 3358, 7200 }, + [5] = { 38, 27.5, 3358, 7200 }, + [6] = { 38.6, 27.4, 3358, 7200 }, + [7] = { 38.4, 27.2, 3358, 7200 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [15108] = { + ["coords"] = { + [1] = { 39.2, 29.7, 3358, 7200 }, + [2] = { 38.3, 29.1, 3358, 7200 }, + [3] = { 40.7, 28.8, 3358, 7200 }, + [4] = { 40, 28.5, 3358, 7200 }, + [5] = { 38.7, 27.6, 3358, 7200 }, + [6] = { 38, 27.5, 3358, 7200 }, + [7] = { 38.3, 27.1, 3358, 7200 }, + }, + ["fac"] = "H", + ["lvl"] = "1-2", + }, + [15109] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15110] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15111] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15112] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [15113] = { + ["coords"] = { + [1] = { 53, 37.3, 1, 180 }, + [2] = { 53, 37.1, 1, 180 }, + [3] = { 52.8, 37.1, 1, 180 }, + [4] = { 52.8, 36.9, 1, 180 }, + [5] = { 52.7, 36.9, 1, 180 }, + [6] = { 52.9, 36.8, 1, 180 }, + [7] = { 52.6, 36.7, 1, 180 }, + [8] = { 52.7, 36.6, 1, 180 }, + [9] = { 52.9, 36.5, 1, 180 }, + [10] = { 52.7, 36.3, 1, 180 }, + [11] = { 52.8, 36.3, 1, 180 }, + [12] = { 52.9, 36.2, 1, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15114] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15115] = { + ["coords"] = { + [1] = { 46.6, 13.8, 14, 180 }, + [2] = { 46.5, 13.8, 14, 180 }, + [3] = { 46.3, 13.8, 14, 180 }, + [4] = { 46.7, 13.7, 14, 180 }, + [5] = { 46.2, 13.6, 14, 180 }, + [6] = { 46.1, 13.5, 14, 180 }, + [7] = { 46.8, 13.4, 14, 180 }, + [8] = { 46.2, 13.3, 14, 180 }, + [9] = { 46.7, 13.2, 14, 180 }, + [10] = { 46.6, 13.1, 14, 180 }, + [11] = { 46.3, 13, 14, 180 }, + [12] = { 46.5, 13, 14, 180 }, + [13] = { 53.6, 99.4, 1637, 180 }, + [14] = { 53.3, 99.2, 1637, 180 }, + [15] = { 52, 98.9, 1637, 180 }, + [16] = { 52.7, 98.7, 1637, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15116] = { + ["coords"] = { + [1] = { 52.5, 72.8, 1637, 550 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [15117] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15118] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "38-40", + }, + [15119] = { + ["coords"] = { + [1] = { 28.2, 75, 1537, 550 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [15121] = { + ["coords"] = {}, + ["lvl"] = "51", + }, + [15122] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + ["rnk"] = "1", + }, + [15123] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15124] = { + ["coords"] = { + [1] = { 46.5, 45.3, 45, 400 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [15125] = { + ["coords"] = { + [1] = { 74.2, 29.3, 45, 400 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [15126] = { + ["coords"] = { + [1] = { 73.4, 29.7, 45, 650 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [15127] = { + ["coords"] = { + [1] = { 46, 45.2, 45, 650 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [15128] = { + ["coords"] = { + [1] = { 73.5, 29.5, 45, 650 }, + [2] = { 74, 29.2, 45, 650 }, + [3] = { 73.5, 28.9, 45, 650 }, + [4] = { 73.7, 28.7, 45, 650 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [15130] = { + ["coords"] = { + [1] = { 46.4, 45.2, 45, 650 }, + [2] = { 46, 45.1, 45, 650 }, + [3] = { 46.4, 44.8, 45, 650 }, + [4] = { 46.1, 44.8, 45, 650 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [15131] = { + ["coords"] = { + [1] = { 73.4, 61, 331, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [15133] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [15134] = { + ["coords"] = {}, + ["lvl"] = "70", + }, + [15135] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [15136] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "55", + }, + [15137] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "55", + }, + [15138] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "55", + }, + [15139] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15140] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [15141] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [15142] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [15143] = { + ["coords"] = {}, + ["lvl"] = "63", + }, + [15144] = { + ["coords"] = {}, + ["lvl"] = "65", + }, + [15145] = { + ["coords"] = {}, + ["lvl"] = "67", + }, + [15146] = { + ["coords"] = {}, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [15151] = { + ["coords"] = {}, + ["lvl"] = "55", + }, + [15152] = { + ["coords"] = {}, + ["lvl"] = "56", + }, + [15153] = { + ["coords"] = {}, + ["lvl"] = "57", + }, + [15154] = { + ["coords"] = {}, + ["lvl"] = "58", + }, + [15155] = { + ["coords"] = {}, + ["lvl"] = "59", + }, + [15156] = { + ["coords"] = {}, + ["lvl"] = "61", + }, + [15157] = { + ["coords"] = {}, + ["lvl"] = "62", + }, + [15158] = { + ["coords"] = {}, + ["lvl"] = "64", + }, + [15159] = { + ["coords"] = {}, + ["lvl"] = "66", + }, + [15160] = { + ["coords"] = {}, + ["lvl"] = "68", + }, + [15161] = { + ["coords"] = {}, + ["lvl"] = "69", + }, + [15162] = { + ["coords"] = { + [1] = { 80.6, 85.6, 139, 868 }, + [2] = { 80.7, 85.2, 139, 814 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15163] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [15164] = { + ["coords"] = { + [1] = { 41.2, 27.8, 215, 375 }, + [2] = { 56.3, 53.8, 1638, 375 }, + }, + ["lvl"] = "60", + }, + [15165] = { + ["coords"] = { + [1] = { 66.6, 22.3, 440, 300 }, + }, + ["lvl"] = "51", + }, + [15166] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15167] = { + ["coords"] = {}, + ["lvl"] = "45", + }, + [15168] = { + ["coords"] = {}, + ["lvl"] = "55", + }, + [15169] = { + ["coords"] = { + [1] = { 70.3, 25.3, 1377, 300 }, + }, + ["lvl"] = "60", + }, + [15170] = { + ["coords"] = { + [1] = { 41.3, 88.5, 1377, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15171] = { + ["coords"] = { + [1] = { 40.8, 88.9, 1377, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15172] = { + ["coords"] = { + [1] = { 41, 88.3, 1377, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "62", + }, + [15173] = { + ["coords"] = {}, + ["lvl"] = "54", + }, + [15174] = { + ["coords"] = { + [1] = { 51.9, 39.2, 1377, 300 }, + }, + ["lvl"] = "54", + }, + [15175] = { + ["coords"] = { + [1] = { 48.7, 37, 1377, 300 }, + }, + ["lvl"] = "57", + }, + [15176] = { + ["coords"] = { + [1] = { 51.2, 38.9, 1377, 300 }, + }, + ["lvl"] = "57", + }, + [15177] = { + ["coords"] = { + [1] = { 50.6, 34.4, 1377, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [15178] = { + ["coords"] = { + [1] = { 48.7, 36.7, 1377, 600 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [15179] = { + ["coords"] = { + [1] = { 49.9, 36.3, 1377, 300 }, + }, + ["lvl"] = "58", + }, + [15180] = { + ["coords"] = { + [1] = { 49.5, 36.4, 1377, 300 }, + }, + ["lvl"] = "60", + }, + [15181] = { + ["coords"] = { + [1] = { 49.2, 34.2, 1377, 600 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [15182] = { + ["coords"] = { + [1] = { 50.8, 33.7, 1377, 600 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15183] = { + ["coords"] = { + [1] = { 49.7, 37.3, 1377, 300 }, + }, + ["lvl"] = "60", + }, + [15184] = { + ["coords"] = { + [1] = { 51.2, 39.6, 1377, 600 }, + [2] = { 51.9, 39.6, 1377, 600 }, + [3] = { 52.1, 39.5, 1377, 600 }, + [4] = { 47.6, 39.3, 1377, 600 }, + [5] = { 47.8, 39.2, 1377, 600 }, + [6] = { 51.7, 39.1, 1377, 600 }, + [7] = { 51.6, 38.8, 1377, 600 }, + [8] = { 50.9, 38.5, 1377, 600 }, + [9] = { 51.3, 38.1, 1377, 600 }, + [10] = { 51.7, 37.9, 1377, 600 }, + [11] = { 50.4, 37.5, 1377, 600 }, + [12] = { 48.7, 37.3, 1377, 600 }, + [13] = { 50.1, 37, 1377, 600 }, + [14] = { 50.6, 37, 1377, 600 }, + [15] = { 52.2, 37, 1377, 600 }, + [16] = { 52, 36.8, 1377, 600 }, + [17] = { 49.1, 36.5, 1377, 600 }, + [18] = { 52.1, 36.4, 1377, 600 }, + [19] = { 50.7, 36.3, 1377, 600 }, + [20] = { 50.3, 36.3, 1377, 600 }, + [21] = { 48.7, 36.2, 1377, 600 }, + [22] = { 50.2, 35.6, 1377, 600 }, + [23] = { 49.2, 34.9, 1377, 600 }, + [24] = { 49.5, 34.7, 1377, 600 }, + [25] = { 50.8, 34.5, 1377, 600 }, + [26] = { 51, 34.5, 1377, 600 }, + [27] = { 51, 34.4, 1377, 600 }, + [28] = { 51.2, 34.3, 1377, 600 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15185] = { + ["coords"] = { + [1] = { 61.1, 81.3, 357, 600 }, + [2] = { 41, 94.2, 1377, 600 }, + [3] = { 20.2, 92.2, 1377, 600 }, + [4] = { 14.2, 73.6, 1377, 600 }, + [5] = { 38.6, 7.5, 1377, 600 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [15186] = { + ["coords"] = { + [1] = { 50, 13, 1537, 300 }, + [2] = { 69.2, 30.1, 1637, 180 }, + }, + ["lvl"] = "1", + }, + [15187] = { + ["coords"] = { + [1] = { 58.5, 47.3, 1537, 430 }, + }, + ["lvl"] = "55", + }, + [15188] = { + ["coords"] = { + [1] = { 47.6, 65.8, 1637, 300 }, + }, + ["lvl"] = "55", + }, + [15189] = { + ["coords"] = { + [1] = { 51.6, 38.6, 1377, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "56-57", + }, + [15190] = { + ["coords"] = { + [1] = { 51.6, 38.5, 1377, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "55-56", + }, + [15191] = { + ["coords"] = { + [1] = { 51.2, 38.3, 1377, 300 }, + }, + ["lvl"] = "55-57", + }, + [15192] = { + ["coords"] = { + [1] = { 65.2, 50, 440, 300 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15193] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15194] = { + ["coords"] = { + [1] = { 9.1, 65.4, 490, 300 }, + [2] = { 67.2, 69.8, 1377, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "56-58", + }, + [15195] = { + ["coords"] = { + [1] = { 55.8, 70.5, 85, 300 }, + [2] = { 55, 70, 85, 300 }, + [3] = { 55.8, 69.3, 85, 300 }, + [4] = { 37.7, 25.8, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15196] = { + ["coords"] = { + [1] = { 45.1, 92.3, 1377, 600 }, + }, + ["lvl"] = "59", + ["rnk"] = "1", + }, + [15197] = { + ["coords"] = { + [1] = { 55.6, 69.9, 85, 300 }, + [2] = { 36.6, 22.8, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15198] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "63", + }, + [15199] = { + ["coords"] = { + [1] = { 50, 57.3, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15200] = { + ["coords"] = { + [1] = { 26.3, 36.6, 1377, 300 }, + }, + ["lvl"] = "60", + }, + [15201] = { + ["coords"] = { + [1] = { 72.6, 14.5, 1377, 300 }, + [2] = { 70.1, 14.4, 1377, 300 }, + [3] = { 71.9, 14.4, 1377, 300 }, + [4] = { 71, 14.4, 1377, 300 }, + [5] = { 69.8, 14.3, 1377, 300 }, + [6] = { 72.5, 13.6, 1377, 300 }, + [7] = { 71.7, 13.2, 1377, 300 }, + [8] = { 73.1, 13, 1377, 300 }, + [9] = { 71.1, 12.7, 1377, 300 }, + [10] = { 72.8, 12.7, 1377, 300 }, + [11] = { 73, 12.6, 1377, 300 }, + [12] = { 74.1, 12.4, 1377, 300 }, + }, + ["lvl"] = "60", + }, + [15202] = { + ["coords"] = { + [1] = { 72.4, 15.6, 1377, 300 }, + }, + ["lvl"] = "61", + }, + [15203] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15204] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15205] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15206] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [15207] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [15208] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [15209] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15210] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [15211] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15212] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15213] = { + ["coords"] = { + [1] = { 66.2, 22.4, 1377, 300 }, + [2] = { 65.6, 22.1, 1377, 300 }, + [3] = { 66.7, 21.7, 1377, 300 }, + [4] = { 67.3, 21.3, 1377, 300 }, + [5] = { 65.6, 21.2, 1377, 300 }, + [6] = { 67, 20.4, 1377, 300 }, + [7] = { 65.1, 19.8, 1377, 300 }, + [8] = { 66.6, 19.7, 1377, 300 }, + [9] = { 65.8, 19, 1377, 300 }, + [10] = { 67.5, 18.4, 1377, 300 }, + [11] = { 68.6, 18.2, 1377, 300 }, + [12] = { 65.6, 16.9, 1377, 300 }, + [13] = { 67.6, 16.9, 1377, 300 }, + [14] = { 73.1, 15.8, 1377, 300 }, + [15] = { 64.9, 15.5, 1377, 300 }, + [16] = { 66.6, 15.4, 1377, 300 }, + [17] = { 67.6, 15.4, 1377, 300 }, + [18] = { 72.6, 15.3, 1377, 300 }, + [19] = { 65.4, 15.2, 1377, 300 }, + [20] = { 70.9, 13.1, 1377, 300 }, + [21] = { 70.9, 12.9, 1377, 300 }, + [22] = { 71.3, 12.2, 1377, 300 }, + [23] = { 72.3, 12, 1377, 300 }, + [24] = { 74.3, 11.7, 1377, 300 }, + }, + ["lvl"] = "60-61", + }, + [15214] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15215] = { + ["coords"] = {}, + ["lvl"] = "61-62", + ["rnk"] = "1", + }, + [15216] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15217] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15218] = { + ["coords"] = { + [1] = { 44.5, 70.5, 12, 120 }, + [2] = { 38.2, 30.7, 215, 120 }, + [3] = { 41.2, 68.3, 1638, 120 }, + }, + ["lvl"] = "60", + }, + [15219] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [15220] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [15221] = { + ["coords"] = { + [1] = { 40.6, 89.2, 1377, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15222] = { + ["coords"] = { + [1] = { 41.3, 88.8, 1377, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15223] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [15224] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15226] = { + ["coords"] = {}, + ["lvl"] = "60-61", + ["rnk"] = "1", + }, + [15227] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15228] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15229] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15230] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15231] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15232] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15233] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15234] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15235] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [15236] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15237] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15238] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15239] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15240] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [15241] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + ["rnk"] = "1", + }, + [15242] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + ["rnk"] = "1", + }, + [15243] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15244] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15245] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15246] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15247] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15248] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15249] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15250] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15251] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15252] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [15253] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15254] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15255] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15256] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15257] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15258] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15259] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15260] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [15261] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [15262] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15263] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15264] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15270] = { + ["coords"] = { + [1] = { 48.6, 37.9, 1377, 300 }, + }, + ["lvl"] = "60", + }, + [15275] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15276] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15277] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [15282] = { + ["coords"] = { + [1] = { 52, 38.2, 1377, 300 }, + }, + ["lvl"] = "60", + }, + [15286] = { + ["coords"] = { + [1] = { 49.1, 56, 1377, 0 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [15288] = { + ["coords"] = { + [1] = { 49.3, 54.5, 1377, 0 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [15290] = { + ["coords"] = { + [1] = { 47.6, 56.4, 1377, 0 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [15293] = { + ["coords"] = { + [1] = { 62.6, 49.8, 1377, 300 }, + }, + ["lvl"] = "60", + }, + [15299] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15300] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [15302] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15303] = { + ["coords"] = { + [1] = { 44.5, 70.4, 12, 180 }, + [2] = { 38.2, 30.6, 215, 25 }, + [3] = { 41.3, 67.5, 1638, 25 }, + }, + ["lvl"] = "35", + }, + [15304] = { + ["coords"] = {}, + ["lvl"] = "52", + }, + [15305] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15306] = { + ["coords"] = { + [1] = { 48.6, 37.8, 1377, 300 }, + }, + ["lvl"] = "56-58", + }, + [15307] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15308] = { + ["coords"] = { + [1] = { 26.3, 71.2, 1377, 3600 }, + [2] = { 25.9, 40.1, 1377, 2400 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15309] = { + ["coords"] = { + [1] = { 71.4, 22.8, 1637, 270 }, + }, + ["fac"] = "H", + ["lvl"] = "1", + }, + [15310] = { + ["coords"] = { + [1] = { 47.6, 35.3, 1519, 477 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [15311] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [15312] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15313] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15314] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15315] = { + ["coords"] = { + [1] = { 62.4, 25.8, 361, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [15316] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [15317] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [15318] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15319] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15320] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15322] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15323] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15324] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15325] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15326] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15327] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15328] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15329] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15330] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15331] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15332] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15333] = { + ["coords"] = {}, + ["lvl"] = "55", + }, + [15334] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15335] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [15336] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15337] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15338] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15339] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15340] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15341] = { + ["coords"] = { + [1] = { 29.1, 93.6, 1377, 25 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15342] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15343] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15344] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15345] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15346] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15347] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15348] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15349] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15350] = { + ["coords"] = { + [1] = { 46.7, 8.7, 17, 25 }, + [2] = { 63.1, 59.9, 36, 25 }, + [3] = { 73.5, 29.1, 45, 25 }, + [4] = { 74.7, 14.8, 130, 120 }, + [5] = { 41.6, 32.4, 215, 250 }, + [6] = { 64.1, 0.8, 267, 25 }, + [7] = { 58.3, 97.9, 1497, 120 }, + [8] = { 80.7, 30.5, 1637, 300 }, + [9] = { 57.8, 76.3, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [15351] = { + ["coords"] = { + [1] = { 39.3, 82.3, 36, 25 }, + [2] = { 45.7, 45.7, 45, 300 }, + [3] = { 29.3, 54.1, 141, 300 }, + [4] = { 43.2, 20.5, 267, 25 }, + [5] = { 61.9, 83.8, 331, 25 }, + [6] = { 79.5, 18.2, 1519, 300 }, + [7] = { 70.4, 91.1, 1537, 300 }, + [8] = { 58, 34.5, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [15352] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [15353] = { + ["coords"] = { + [1] = { 34.1, 66.2, 1537, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [15354] = { + ["coords"] = { + [1] = { 53.6, 65.9, 1637, 840 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [15355] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [15356] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [15357] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [15358] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [15359] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [15360] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [15361] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [15362] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15363] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [15364] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15368] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15369] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15370] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15373] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15374] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15375] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15376] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + ["rnk"] = "1", + }, + [15377] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + ["rnk"] = "1", + }, + [15378] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15379] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15380] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15381] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15382] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15383] = { + ["coords"] = { + [1] = { 64.4, 67.3, 1537, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "56", + ["rnk"] = "1", + }, + [15384] = { + ["coords"] = { + [1] = { 46.4, 35.2, 10, 300 }, + [2] = { 46.8, 34.7, 10, 300 }, + [3] = { 46.1, 34.7, 10, 300 }, + [4] = { 46.6, 34.5, 10, 300 }, + [5] = { 5.8, 63.4, 11, 300 }, + [6] = { 5.2, 57.7, 11, 300 }, + [7] = { 71.6, 56.1, 15, 360 }, + [8] = { 63.7, 38.5, 17, 275 }, + [9] = { 32.3, 43.8, 148, 275 }, + [10] = { 30.8, 40.8, 148, 275 }, + [11] = { 33.3, 40.2, 148, 275 }, + [12] = { 43.3, 42.9, 357, 300 }, + [13] = { 30.9, 39.8, 357, 300 }, + }, + ["lvl"] = "60", + }, + [15385] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [15386] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [15387] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15388] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [15389] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [15390] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [15391] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [15392] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [15393] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15394] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15395] = { + ["coords"] = { + [1] = { 64.8, 8.1, 361, 300 }, + [2] = { 24.9, 36.2, 618, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [15410] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + ["rnk"] = "3", + }, + [15411] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + ["rnk"] = "3", + }, + [15412] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + ["rnk"] = "3", + }, + [15413] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + ["rnk"] = "3", + }, + [15414] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15415] = { + ["coords"] = { + [1] = { 49.1, 58.8, 267, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15419] = { + ["coords"] = { + [1] = { 52, 39.7, 1377, 300 }, + }, + ["lvl"] = "54", + }, + [15421] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15422] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15423] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "58-60", + }, + [15424] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15425] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15426] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [15427] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + ["rnk"] = "3", + }, + [15428] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [15429] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [15431] = { + ["coords"] = { + [1] = { 65, 65.4, 1537, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "58", + ["rnk"] = "1", + }, + [15432] = { + ["coords"] = { + [1] = { 63.9, 68.4, 1537, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15434] = { + ["coords"] = { + [1] = { 70.9, 72.6, 1537, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "56", + ["rnk"] = "1", + }, + [15435] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15436] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15437] = { + ["coords"] = { + [1] = { 71.9, 71.3, 1537, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "58", + ["rnk"] = "1", + }, + [15440] = { + ["coords"] = { + [1] = { 33, 52.1, 1377, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15441] = { + ["coords"] = { + [1] = { 32.9, 52.5, 1377, 300 }, + [2] = { 32.5, 52.1, 1377, 300 }, + [3] = { 33.2, 52.1, 1377, 300 }, + [4] = { 33, 52, 1377, 300 }, + [5] = { 32.6, 51.9, 1377, 300 }, + [6] = { 32.9, 51.9, 1377, 300 }, + [7] = { 33, 51.9, 1377, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [15442] = { + ["coords"] = { + [1] = { 33.2, 52.3, 1377, 600 }, + [2] = { 32.9, 52, 1377, 600 }, + [3] = { 33, 51.9, 1377, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15443] = { + ["coords"] = { + [1] = { 32.9, 52.5, 1377, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15444] = { + ["coords"] = { + [1] = { 32.5, 52, 1377, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15445] = { + ["coords"] = { + [1] = { 70.9, 71.9, 1537, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15446] = { + ["coords"] = { + [1] = { 57.6, 76.4, 1537, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "56", + ["rnk"] = "1", + }, + [15448] = { + ["coords"] = { + [1] = { 58.5, 75.2, 1537, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "58", + ["rnk"] = "1", + }, + [15449] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15450] = { + ["coords"] = { + [1] = { 59, 75.9, 1537, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15451] = { + ["coords"] = { + [1] = { 55.4, 76.3, 1537, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "56", + ["rnk"] = "1", + }, + [15452] = { + ["coords"] = { + [1] = { 55.1, 77.7, 1537, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "58", + ["rnk"] = "1", + }, + [15453] = { + ["coords"] = { + [1] = { 54.2, 77.8, 1537, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15454] = { + ["coords"] = { + [1] = { 29.1, 91.2, 1377, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15455] = { + ["coords"] = { + [1] = { 71, 69.9, 1537, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "56", + ["rnk"] = "1", + }, + [15456] = { + ["coords"] = { + [1] = { 71.3, 70.3, 1537, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "58", + ["rnk"] = "1", + }, + [15457] = { + ["coords"] = { + [1] = { 71.5, 69.1, 1537, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15458] = { + ["coords"] = { + [1] = { 31.2, 68.8, 1637, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15459] = { + ["coords"] = { + [1] = { 31.6, 66.7, 1637, 25 }, + }, + ["fac"] = "H", + ["lvl"] = "56", + ["rnk"] = "1", + }, + [15460] = { + ["coords"] = { + [1] = { 31.1, 65, 1637, 25 }, + }, + ["fac"] = "H", + ["lvl"] = "58", + ["rnk"] = "1", + }, + [15461] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15462] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15463] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "60", + }, + [15464] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "60", + }, + [15466] = { + ["coords"] = { + [1] = { 64.7, 69.5, 493, 300 }, + [2] = { 60.7, 67.2, 493, 300 }, + [3] = { 63.7, 66.4, 493, 300 }, + [4] = { 60.8, 65.5, 493, 300 }, + [5] = { 64.8, 65, 493, 300 }, + [6] = { 66.2, 63.3, 493, 300 }, + [7] = { 65.4, 61.2, 493, 300 }, + [8] = { 65.1, 59.2, 493, 300 }, + [9] = { 65.4, 57.3, 493, 300 }, + [10] = { 66.4, 56.5, 493, 300 }, + [11] = { 67.6, 56.4, 493, 300 }, + [12] = { 66.2, 54.6, 493, 300 }, + [13] = { 65.1, 54.6, 493, 300 }, + [14] = { 66.2, 52.7, 493, 300 }, + [15] = { 65.2, 52.5, 493, 300 }, + [16] = { 66.3, 50.4, 493, 300 }, + [17] = { 63.7, 50, 493, 300 }, + [18] = { 65.2, 49.9, 493, 300 }, + [19] = { 63.3, 48.1, 493, 300 }, + [20] = { 65.2, 47.9, 493, 300 }, + [21] = { 63.6, 46.1, 493, 300 }, + [22] = { 65.1, 45.9, 493, 300 }, + [23] = { 62.4, 44.9, 493, 300 }, + }, + ["lvl"] = "59-60", + }, + [15467] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15469] = { + ["coords"] = { + [1] = { 31.3, 66.1, 1637, 25 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15471] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15472] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [15473] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15475] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [15476] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [15477] = { + ["coords"] = { + [1] = { 33.1, 70.4, 1637, 25 }, + }, + ["fac"] = "H", + ["lvl"] = "56", + ["rnk"] = "1", + }, + [15481] = { + ["coords"] = { + [1] = { 58.8, 83.1, 16, 180 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15491] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15495] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60-61", + ["rnk"] = "1", + }, + [15498] = { + ["coords"] = { + [1] = { 52, 38.2, 1377, 300 }, + }, + ["lvl"] = "55-57", + }, + [15499] = { + ["coords"] = { + [1] = { 51.1, 38.9, 1377, 300 }, + }, + ["lvl"] = "56-58", + }, + [15500] = { + ["coords"] = { + [1] = { 51.8, 39.5, 1377, 600 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15502] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15503] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15504] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15505] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15506] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15507] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15508] = { + ["coords"] = { + [1] = { 33.4, 69.3, 1637, 25 }, + }, + ["fac"] = "H", + ["lvl"] = "58", + ["rnk"] = "1", + }, + [15509] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15510] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15511] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15512] = { + ["coords"] = { + [1] = { 32.9, 68.5, 1637, 25 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15514] = { + ["coords"] = {}, + ["lvl"] = "55", + }, + [15515] = { + ["coords"] = { + [1] = { 35.6, 73.3, 1637, 25 }, + }, + ["fac"] = "H", + ["lvl"] = "56", + ["rnk"] = "1", + }, + [15516] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15517] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15518] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "0", + }, + [15519] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "0", + }, + [15520] = { + ["coords"] = { + [1] = { 65.4, 19, 440, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [15521] = { + ["coords"] = {}, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [15522] = { + ["coords"] = { + [1] = { 34.1, 72.8, 1637, 25 }, + }, + ["fac"] = "H", + ["lvl"] = "56-58", + ["rnk"] = "1", + }, + [15524] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15525] = { + ["coords"] = { + [1] = { 35.2, 72.5, 1637, 25 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15526] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15527] = { + ["coords"] = {}, + ["lvl"] = "57-60", + ["rnk"] = "1", + }, + [15528] = { + ["coords"] = { + [1] = { 31, 74.2, 1637, 25 }, + }, + ["fac"] = "H", + ["lvl"] = "56", + ["rnk"] = "1", + }, + [15529] = { + ["coords"] = { + [1] = { 32, 74.7, 1637, 25 }, + }, + ["fac"] = "H", + ["lvl"] = "56-58", + ["rnk"] = "1", + }, + [15530] = { + ["coords"] = {}, + ["lvl"] = "56", + }, + [15532] = { + ["coords"] = { + [1] = { 31.6, 75.8, 1637, 25 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15533] = { + ["coords"] = { + [1] = { 28.8, 67.4, 1637, 25 }, + }, + ["fac"] = "H", + ["lvl"] = "56", + ["rnk"] = "1", + }, + [15534] = { + ["coords"] = { + [1] = { 29.1, 68.9, 1637, 25 }, + }, + ["fac"] = "H", + ["lvl"] = "58", + ["rnk"] = "1", + }, + [15535] = { + ["coords"] = { + [1] = { 28.8, 68.4, 1637, 25 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15536] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "56-57", + }, + [15537] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [15538] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [15539] = { + ["coords"] = { + [1] = { 63.8, 78.1, 1537, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15540] = { + ["coords"] = { + [1] = { 50, 36.4, 1377, 600 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15541] = { + ["coords"] = { + [1] = { 57.6, 17.9, 1377, 600 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15542] = { + ["coords"] = { + [1] = { 57.5, 17.5, 1377, 600 }, + [2] = { 57.4, 17.5, 1377, 600 }, + [3] = { 57.2, 17.4, 1377, 600 }, + [4] = { 57, 17.3, 1377, 600 }, + }, + ["lvl"] = "58-59", + }, + [15543] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15544] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15545] = { + ["coords"] = { + [1] = { 10.6, 33.8, 490, 300 }, + [2] = { 11, 33.7, 490, 300 }, + [3] = { 10.7, 33.6, 490, 300 }, + [4] = { 10.9, 33.3, 490, 300 }, + [5] = { 38.6, 78.7, 1377, 300 }, + [6] = { 38.8, 78.2, 1377, 300 }, + [7] = { 39.1, 78.1, 1377, 300 }, + [8] = { 38.7, 77.7, 1377, 300 }, + [9] = { 23.8, 45.9, 1377, 300 }, + [10] = { 23.1, 45.4, 1377, 300 }, + [11] = { 23.6, 45.4, 1377, 300 }, + [12] = { 24, 45.1, 1377, 300 }, + [13] = { 68.8, 36.2, 1377, 300 }, + [14] = { 69.2, 36.1, 1377, 300 }, + [15] = { 68.9, 36.1, 1377, 300 }, + [16] = { 69.1, 35.8, 1377, 300 }, + }, + ["lvl"] = "60", + }, + [15546] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [15547] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15549] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15552] = { + ["coords"] = { + [1] = { 77.8, 17.1, 15, 1200 }, + [2] = { 67.2, 72.8, 618, 0 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [15553] = { + ["coords"] = { + [1] = { 77.4, 18.5, 15, 360 }, + [2] = { 68.7, 71.1, 618, 0 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15554] = { + ["coords"] = { + [1] = { 67.2, 72.6, 618, 0 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15555] = { + ["coords"] = {}, + ["lvl"] = "59-60", + }, + [15556] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15557] = { + ["coords"] = { + [1] = { 82.2, 46.5, 46, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15558] = { + ["coords"] = { + [1] = { 33.3, 46.5, 38, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15559] = { + ["coords"] = { + [1] = { 50, 48, 47, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15560] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15561] = { + ["coords"] = { + [1] = { 45, 41.1, 130, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15562] = { + ["coords"] = { + [1] = { 21.4, 53.9, 1519, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15563] = { + ["coords"] = { + [1] = { 58.8, 51.7, 4, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15564] = { + ["coords"] = { + [1] = { 66.6, 38.2, 1497, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15565] = { + ["coords"] = { + [1] = { 39.8, 63.7, 12, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15566] = { + ["coords"] = { + [1] = { 81.5, 60.5, 139, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15567] = { + ["coords"] = { + [1] = { 21.3, 79.1, 51, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15568] = { + ["coords"] = { + [1] = { 61.9, 53.8, 85, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15569] = { + ["coords"] = { + [1] = { 46.8, 51.6, 1, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15570] = { + ["coords"] = { + [1] = { 23.1, 11.8, 1377, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15571] = { + ["coords"] = { + [1] = { 68, 52.5, 16, 0 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15572] = { + ["coords"] = { + [1] = { 53.2, 43.7, 14, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15573] = { + ["coords"] = { + [1] = { 36.3, 80.5, 440, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15574] = { + ["coords"] = { + [1] = { 61.4, 37.8, 618, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15575] = { + ["coords"] = { + [1] = { 48.4, 53.4, 215, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15576] = { + ["coords"] = { + [1] = { 27.6, 74.3, 33, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15577] = { + ["coords"] = { + [1] = { 56.6, 47.1, 40, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15578] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15579] = { + ["coords"] = { + [1] = { 41.1, 33.8, 1637, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15580] = { + ["coords"] = { + [1] = { 44.6, 21.6, 215, 120 }, + [2] = { 73, 23.4, 1638, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15581] = { + ["coords"] = { + [1] = { 76.7, 37.9, 357, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15582] = { + ["coords"] = { + [1] = { 62.6, 36.7, 17, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15583] = { + ["coords"] = { + [1] = { 50.4, 76.2, 490, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15584] = { + ["coords"] = { + [1] = { 45.4, 50.1, 400, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15585] = { + ["coords"] = { + [1] = { 64.5, 24.1, 46, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15586] = { + ["coords"] = { + [1] = { 51.5, 27.8, 440, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15587] = { + ["coords"] = { + [1] = { 62.6, 31.1, 357, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15588] = { + ["coords"] = { + [1] = { 45.1, 57.9, 17, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15589] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15590] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [15591] = { + ["coords"] = { + [1] = { 77.4, 18.6, 15, 1200 }, + [2] = { 77.4, 18.4, 15, 1200 }, + [3] = { 77.8, 17.9, 15, 1200 }, + [4] = { 77.8, 17.8, 15, 1200 }, + [5] = { 77.6, 17.7, 15, 1200 }, + [6] = { 77.6, 17.2, 15, 1200 }, + [7] = { 77.7, 17.1, 15, 1200 }, + [8] = { 77.4, 17.1, 15, 1200 }, + }, + ["lvl"] = "60-61", + ["rnk"] = "1", + }, + [15592] = { + ["coords"] = { + [1] = { 39.7, 75.4, 139, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15593] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15594] = { + ["coords"] = { + [1] = { 69.2, 73.4, 28, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15595] = { + ["coords"] = { + [1] = { 57.3, 60.8, 141, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15596] = { + ["coords"] = { + [1] = { 53.1, 18.5, 33, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15597] = { + ["coords"] = { + [1] = { 51.4, 30.7, 17, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15598] = { + ["coords"] = { + [1] = { 24.2, 49.9, 141, 120 }, + [2] = { 33.5, 14.3, 1657, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15599] = { + ["coords"] = { + [1] = { 49, 37.7, 1377, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15600] = { + ["coords"] = { + [1] = { 72.5, 85.1, 16, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15601] = { + ["coords"] = { + [1] = { 36.8, 46.7, 148, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15602] = { + ["coords"] = { + [1] = { 66, 47.8, 28, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15603] = { + ["coords"] = { + [1] = { 37.7, 53, 361, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15604] = { + ["coords"] = { + [1] = { 79.2, 77, 400, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15605] = { + ["coords"] = { + [1] = { 35.5, 48.9, 331, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15606] = { + ["coords"] = { + [1] = { 55.6, 43.7, 618, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15607] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15608] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15609] = { + ["coords"] = { + [1] = { 53.7, 97.5, 1377, 600 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15610] = { + ["coords"] = { + [1] = { 23.6, 62.4, 1377, 600 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15611] = { + ["coords"] = { + [1] = { 43.9, 13.8, 1377, 600 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15612] = { + ["coords"] = { + [1] = { 52.2, 68.4, 1377, 25 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15613] = { + ["coords"] = { + [1] = { 51.9, 68, 1377, 600 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15614] = { + ["coords"] = { + [1] = { 52.1, 38.8, 1377, 600 }, + }, + ["fac"] = "AH", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15615] = { + ["coords"] = { + [1] = { 51.3, 68.8, 1377, 600 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15616] = { + ["coords"] = { + [1] = { 52, 68.7, 1377, 600 }, + [2] = { 52, 68.5, 1377, 600 }, + [3] = { 52, 68.3, 1377, 600 }, + [4] = { 52, 68.2, 1377, 600 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15617] = { + ["coords"] = { + [1] = { 51.6, 68.8, 1377, 600 }, + [2] = { 51.5, 68.8, 1377, 600 }, + [3] = { 51.6, 68.7, 1377, 600 }, + [4] = { 51.4, 68.7, 1377, 600 }, + [5] = { 51.6, 68.6, 1377, 600 }, + [6] = { 51.5, 68.6, 1377, 600 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15618] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15619] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15620] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15621] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15622] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15623] = { + ["coords"] = { + [1] = { 69.8, 38.2, 618, 0 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [15624] = { + ["coords"] = { + [1] = { 37.6, 47.9, 141, 300 }, + [2] = { 97.9, 4.7, 1657, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "6-8", + }, + [15625] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15626] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [15627] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [15628] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15629] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [15630] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [15631] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [15632] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [15633] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15634] = { + ["coords"] = { + [1] = { 49, 38.1, 1377, 25 }, + [2] = { 49.1, 37.9, 1377, 25 }, + [3] = { 48.7, 37.9, 1377, 25 }, + [4] = { 48.8, 37.7, 1377, 25 }, + [5] = { 49.2, 37.6, 1377, 25 }, + [6] = { 48.7, 37.5, 1377, 25 }, + [7] = { 49.2, 37.4, 1377, 25 }, + [8] = { 49.2, 37.3, 1377, 25 }, + [9] = { 49.1, 37.3, 1377, 25 }, + [10] = { 48.9, 37.1, 1377, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15659] = { + ["coords"] = { + [1] = { 53.6, 59.8, 1519, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [15660] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15661] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15663] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "30", + }, + [15664] = { + ["coords"] = { + [1] = { 68.8, 34.2, 51, 20 }, + [2] = { 73.3, 48.1, 440, 20 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [15665] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15666] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15667] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [15675] = { + ["coords"] = { + [1] = { 71.4, 46.7, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [15676] = { + ["coords"] = { + [1] = { 71.5, 41.9, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [15677] = { + ["coords"] = { + [1] = { 28.4, 75.9, 33, 300 }, + }, + ["lvl"] = "50", + }, + [15678] = { + ["coords"] = { + [1] = { 29.1, 58.1, 141, 300 }, + [2] = { 57.3, 53.6, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [15679] = { + ["coords"] = { + [1] = { 28.8, 57.8, 141, 300 }, + [2] = { 55.6, 52.4, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [15680] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "50", + }, + [15681] = { + ["coords"] = { + [1] = { 26.6, 76.3, 33, 300 }, + }, + ["lvl"] = "50", + }, + [15682] = { + ["coords"] = { + [1] = { 67.7, 35.9, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [15683] = { + ["coords"] = { + [1] = { 64.4, 35.8, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [15684] = { + ["coords"] = { + [1] = { 60.5, 41.8, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [15685] = { + ["coords"] = { + [1] = { 73.4, 47.9, 440, 180 }, + [2] = { 73.9, 47.6, 440, 180 }, + [3] = { 73.8, 47.6, 440, 180 }, + [4] = { 73, 47.4, 440, 180 }, + [5] = { 73.9, 47.4, 440, 180 }, + }, + ["lvl"] = "45", + }, + [15686] = { + ["coords"] = { + [1] = { 60.5, 46.4, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [15692] = { + ["coords"] = { + [1] = { 67.7, 36.1, 51, 180 }, + [2] = { 69.4, 35.6, 51, 180 }, + [3] = { 68.8, 34.5, 51, 180 }, + [4] = { 68.5, 34.2, 51, 180 }, + [5] = { 69, 34.2, 51, 180 }, + [6] = { 68.7, 33.9, 51, 180 }, + [7] = { 70, 33.8, 51, 180 }, + [8] = { 69.2, 33.1, 51, 180 }, + [9] = { 67.8, 33.1, 51, 180 }, + [10] = { 69.6, 33, 51, 180 }, + }, + ["lvl"] = "45", + }, + [15693] = { + ["coords"] = { + [1] = { 25.9, 91, 1377, 600 }, + }, + ["fac"] = "AH", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15694] = { + ["coords"] = { + [1] = { 35.7, 59.1, 493, 120 }, + [2] = { 35.8, 59, 493, 120 }, + [3] = { 35.5, 58.9, 493, 120 }, + [4] = { 35.8, 58.7, 493, 120 }, + [5] = { 35.6, 58.6, 493, 120 }, + [6] = { 65.4, 88.7, 1519, 120 }, + [7] = { 65.6, 88.5, 1519, 120 }, + [8] = { 65.5, 88.4, 1519, 120 }, + [9] = { 67.2, 82.8, 1519, 120 }, + [10] = { 67.3, 82.7, 1519, 120 }, + [11] = { 67.2, 82.6, 1519, 120 }, + [12] = { 68.3, 82.5, 1519, 120 }, + [13] = { 68.2, 82.2, 1519, 120 }, + [14] = { 73.4, 79.7, 1519, 120 }, + [15] = { 73.3, 79.5, 1519, 120 }, + [16] = { 73.5, 79.5, 1519, 120 }, + [17] = { 73.7, 78.2, 1519, 120 }, + [18] = { 73.7, 78, 1519, 120 }, + [19] = { 55.5, 63.4, 1519, 120 }, + [20] = { 55.4, 63.3, 1519, 120 }, + [21] = { 55.4, 61.6, 1519, 120 }, + [22] = { 55.7, 61.6, 1519, 120 }, + [23] = { 55.5, 61.4, 1519, 120 }, + [24] = { 55.4, 61.4, 1519, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "1-60", + }, + [15695] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [15696] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "30", + }, + [15698] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15699] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15700] = { + ["coords"] = { + [1] = { 35.7, 74.3, 1637, 25 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15701] = { + ["coords"] = { + [1] = { 64.3, 79.5, 1537, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15702] = { + ["coords"] = { + [1] = { 37.9, 27.3, 215, 25 }, + [2] = { 39.9, 51.7, 1638, 25 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15703] = { + ["coords"] = { + [1] = { 62.6, 47.7, 1497, 25 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15704] = { + ["coords"] = { + [1] = { 51.6, 66.4, 1637, 25 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15705] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15706] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "1", + }, + [15707] = { + ["coords"] = { + [1] = { 27.5, 73.3, 1537, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15708] = { + ["coords"] = { + [1] = { 54.1, 59.7, 1519, 3540 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15709] = { + ["coords"] = { + [1] = { 25.9, 55.6, 141, 25 }, + [2] = { 42, 41.5, 1657, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15710] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15712] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [15713] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15714] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15715] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15716] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15717] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15718] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15719] = { + ["coords"] = { + [1] = { 40.5, 34.3, 215, 120 }, + [2] = { 40.6, 34.3, 215, 120 }, + [3] = { 38.1, 30.8, 215, 120 }, + [4] = { 38, 30.6, 215, 120 }, + [5] = { 37.9, 30.5, 215, 120 }, + [6] = { 38, 30.5, 215, 120 }, + [7] = { 38.3, 30.4, 215, 120 }, + [8] = { 38.2, 30.3, 215, 120 }, + [9] = { 37.8, 29.4, 215, 120 }, + [10] = { 37.7, 29.4, 215, 120 }, + [11] = { 37.8, 29.3, 215, 120 }, + [12] = { 38.5, 28.4, 215, 120 }, + [13] = { 40.6, 27.3, 215, 120 }, + [14] = { 40.7, 27.3, 215, 120 }, + [15] = { 41.7, 27.1, 215, 120 }, + [16] = { 41.7, 27, 215, 120 }, + [17] = { 36, 58, 493, 120 }, + [18] = { 35.8, 58, 493, 120 }, + [19] = { 36.2, 57.7, 493, 120 }, + [20] = { 35.8, 57.6, 493, 120 }, + [21] = { 36, 57.5, 493, 120 }, + [22] = { 52.6, 86.1, 1638, 120 }, + [23] = { 52.7, 86.1, 1638, 120 }, + [24] = { 53, 86, 1638, 120 }, + [25] = { 52.9, 85.8, 1638, 120 }, + [26] = { 40.7, 68.5, 1638, 120 }, + [27] = { 40.4, 67.5, 1638, 120 }, + [28] = { 40.1, 67.3, 1638, 120 }, + [29] = { 40.3, 67.3, 1638, 120 }, + [30] = { 41.6, 66.7, 1638, 120 }, + [31] = { 41.5, 66.4, 1638, 120 }, + [32] = { 39.2, 61.8, 1638, 120 }, + [33] = { 39.1, 61.6, 1638, 120 }, + [34] = { 39.2, 61.5, 1638, 120 }, + [35] = { 43, 56.7, 1638, 120 }, + [36] = { 53.4, 51.5, 1638, 120 }, + [37] = { 53.6, 51.5, 1638, 120 }, + [38] = { 53.4, 51.2, 1638, 120 }, + [39] = { 58.7, 50.4, 1638, 120 }, + [40] = { 58.8, 50.2, 1638, 120 }, + [41] = { 58.6, 50, 1638, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "1-60", + }, + [15720] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15721] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "58", + }, + [15722] = { + ["coords"] = { + [1] = { 49.3, 36.4, 1377, 300 }, + }, + ["lvl"] = "60", + }, + [15723] = { + ["coords"] = { + [1] = { 27.6, 77, 33, 120 }, + [2] = { 27.6, 76.9, 33, 120 }, + [3] = { 28.2, 76.2, 33, 120 }, + [4] = { 28.2, 76.1, 33, 120 }, + [5] = { 28.3, 76, 33, 120 }, + [6] = { 28.2, 75.8, 33, 120 }, + [7] = { 28.9, 75.3, 33, 120 }, + [8] = { 27.8, 74.6, 33, 120 }, + [9] = { 27.9, 74.5, 33, 120 }, + [10] = { 27.8, 74.5, 33, 120 }, + [11] = { 27.9, 74.2, 33, 120 }, + [12] = { 27.9, 74.1, 33, 120 }, + [13] = { 26.2, 73.5, 33, 120 }, + [14] = { 26.5, 73.5, 33, 120 }, + [15] = { 26.4, 73.5, 33, 120 }, + [16] = { 26.4, 73.4, 33, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-60", + }, + [15724] = { + ["coords"] = {}, + ["lvl"] = "57", + }, + [15725] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [15726] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [15727] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15728] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15729] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15730] = { + ["coords"] = { + [1] = { 53.2, 35.7, 1, 180 }, + [2] = { 9.3, 58.3, 11, 180 }, + [3] = { 50, 13.5, 14, 180 }, + [4] = { 26.7, 73.5, 33, 180 }, + [5] = { 61.1, 59.3, 85, 180 }, + [6] = { 53.6, 28.1, 440, 180 }, + [7] = { 62.6, 60.7, 1519, 180 }, + }, + ["lvl"] = "60", + }, + [15731] = { + ["coords"] = { + [1] = { 61.2, 69.4, 1537, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [15732] = { + ["coords"] = { + [1] = { 53.2, 35.6, 1, 180 }, + [2] = { 9.2, 58.4, 11, 180 }, + [3] = { 50, 13.6, 14, 180 }, + [4] = { 26.7, 73.5, 33, 180 }, + [5] = { 61, 59.4, 85, 180 }, + [6] = { 53.5, 28, 440, 180 }, + [7] = { 62.3, 60.7, 1519, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [15733] = { + ["coords"] = { + [1] = { 58.6, 72.6, 1537, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [15734] = { + ["coords"] = { + [1] = { 61.1, 77, 1537, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [15735] = { + ["coords"] = { + [1] = { 63.3, 69.3, 1537, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [15736] = { + ["coords"] = { + [1] = { 30.8, 73.7, 1637, 25 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [15737] = { + ["coords"] = { + [1] = { 30, 70.1, 1637, 25 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [15738] = { + ["coords"] = { + [1] = { 30.4, 65.6, 1637, 25 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [15739] = { + ["coords"] = { + [1] = { 33, 71.6, 1637, 25 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [15740] = { + ["coords"] = { + [1] = { 25.7, 59.5, 1377, 25 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15741] = { + ["coords"] = { + [1] = { 53.8, 80.3, 1377, 25 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15742] = { + ["coords"] = { + [1] = { 45.1, 25.3, 1377, 25 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15743] = { + ["coords"] = { + [1] = { 30.4, 99.8, 1377, 300 }, + [2] = { 28.9, 99.2, 1377, 300 }, + [3] = { 26.8, 99, 1377, 300 }, + [4] = { 31.7, 97.9, 1377, 300 }, + [5] = { 28.9, 95.7, 1377, 300 }, + [6] = { 26.6, 95.7, 1377, 300 }, + [7] = { 30.1, 92.6, 1377, 300 }, + [8] = { 28.2, 92.5, 1377, 300 }, + [9] = { 29.5, 90.3, 1377, 1200 }, + [10] = { 28.8, 90.3, 1377, 1200 }, + [11] = { 28.3, 89.9, 1377, 1200 }, + [12] = { 28.9, 88.2, 1377, 1200 }, + [13] = { 27.8, 87.9, 1377, 1200 }, + [14] = { 28.4, 87.2, 1377, 1200 }, + [15] = { 28, 85.2, 1377, 1200 }, + [16] = { 30.7, 84.3, 1377, 1200 }, + [17] = { 38.8, 79.3, 1377, 1200 }, + [18] = { 38.2, 79.1, 1377, 1200 }, + [19] = { 39.4, 79, 1377, 1200 }, + [20] = { 40, 78.3, 1377, 1200 }, + [21] = { 38.5, 78.1, 1377, 1200 }, + [22] = { 39, 77.7, 1377, 1200 }, + [23] = { 38.1, 77.4, 1377, 1200 }, + [24] = { 38.5, 77.2, 1377, 1200 }, + [25] = { 39.8, 77.1, 1377, 1200 }, + [26] = { 39, 76.2, 1377, 1200 }, + }, + ["lvl"] = "61-62", + ["rnk"] = "1", + }, + [15744] = { + ["coords"] = { + [1] = { 29.5, 92.5, 1377, 300 }, + [2] = { 28.6, 92.5, 1377, 300 }, + [3] = { 28.6, 91.9, 1377, 300 }, + [4] = { 28.2, 91.9, 1377, 25 }, + [5] = { 30, 91.8, 1377, 25 }, + [6] = { 29.5, 91.8, 1377, 300 }, + [7] = { 30.1, 90.7, 1377, 1200 }, + [8] = { 29.7, 89.5, 1377, 1200 }, + [9] = { 28, 88.8, 1377, 1200 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [15745] = { + ["coords"] = { + [1] = { 33.2, 65.1, 1537, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [15746] = { + ["coords"] = { + [1] = { 52.3, 68.9, 1637, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [15747] = { + ["coords"] = { + [1] = { 47.9, 54.1, 400, 900 }, + }, + ["lvl"] = "35", + ["rnk"] = "1", + }, + [15748] = { + ["coords"] = { + [1] = { 47.9, 54.1, 400, 720 }, + }, + ["lvl"] = "33-35", + ["rnk"] = "1", + }, + [15749] = { + ["coords"] = { + [1] = { 47.9, 54.1, 400, 600 }, + }, + ["lvl"] = "29-31", + ["rnk"] = "1", + }, + [15750] = { + ["coords"] = { + [1] = { 76.1, 84.3, 400, 900 }, + }, + ["lvl"] = "45-48", + ["rnk"] = "1", + }, + [15751] = { + ["coords"] = { + [1] = { 76.1, 84.3, 400, 720 }, + }, + ["lvl"] = "43-45", + ["rnk"] = "1", + }, + [15752] = { + ["coords"] = { + [1] = { 76.1, 84.3, 400, 600 }, + }, + ["lvl"] = "40-44", + ["rnk"] = "1", + }, + [15753] = { + ["coords"] = { + [1] = { 31, 44.5, 357, 900 }, + [2] = { 48.8, 33.6, 440, 900 }, + [3] = { 51.5, 28.3, 440, 900 }, + [4] = { 53.5, 72.9, 490, 900 }, + [5] = { 22.9, 82.2, 1377, 900 }, + [6] = { 25.9, 43.8, 1377, 900 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15754] = { + ["coords"] = { + [1] = { 31, 44.5, 357, 720 }, + [2] = { 48.8, 33.6, 440, 720 }, + [3] = { 51.5, 28.3, 440, 720 }, + [4] = { 53.5, 72.9, 490, 720 }, + [5] = { 22.9, 82.2, 1377, 720 }, + [6] = { 25.9, 43.8, 1377, 720 }, + }, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [15756] = { + ["coords"] = { + [1] = { 31, 44.5, 357, 600 }, + [2] = { 48.8, 33.6, 440, 600 }, + [3] = { 51.6, 28.4, 440, 600 }, + [4] = { 51.5, 28.3, 440, 600 }, + [5] = { 53.5, 72.9, 490, 600 }, + [6] = { 22.9, 82.2, 1377, 600 }, + [7] = { 25.9, 43.8, 1377, 600 }, + }, + ["lvl"] = "54-57", + ["rnk"] = "1", + }, + [15757] = { + ["coords"] = { + [1] = { 33.5, 55.8, 440, 900 }, + [2] = { 55.1, 58.2, 1377, 900 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15758] = { + ["coords"] = { + [1] = { 33.5, 55.8, 440, 720 }, + [2] = { 55.1, 58.2, 1377, 720 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [15759] = { + ["coords"] = { + [1] = { 33.5, 55.8, 440, 600 }, + [2] = { 55.1, 58.2, 1377, 600 }, + }, + ["lvl"] = "60-61", + ["rnk"] = "1", + }, + [15760] = { + ["coords"] = { + [1] = { 47.3, 51.9, 1, 300 }, + [2] = { 47.2, 51.9, 1, 300 }, + [3] = { 3.6, 46.8, 3, 300 }, + [4] = { 3.6, 46.6, 3, 300 }, + [5] = { 44.7, 56.9, 8, 300 }, + [6] = { 44.8, 56.8, 8, 300 }, + [7] = { 73.9, 44.8, 10, 300 }, + [8] = { 74, 44.8, 10, 300 }, + [9] = { 10.5, 60.2, 11, 300 }, + [10] = { 10.6, 60.1, 11, 300 }, + [11] = { 43.5, 66, 12, 300 }, + [12] = { 43.5, 65.9, 12, 300 }, + [13] = { 51.6, 41.9, 14, 300 }, + [14] = { 51.5, 41.9, 14, 300 }, + [15] = { 66.4, 45.3, 15, 300 }, + [16] = { 45.4, 58.9, 17, 300 }, + [17] = { 62.1, 39.4, 17, 300 }, + [18] = { 62, 39.3, 17, 300 }, + [19] = { 52.1, 30, 17, 300 }, + [20] = { 27.1, 77.4, 33, 300 }, + [21] = { 31.5, 29.6, 33, 300 }, + [22] = { 61.3, 81, 36, 300 }, + [23] = { 61.3, 80.9, 36, 300 }, + [24] = { 35.3, 48.7, 38, 300 }, + [25] = { 35.3, 48.6, 38, 300 }, + [26] = { 52.6, 53.5, 40, 300 }, + [27] = { 52.5, 53.4, 40, 300 }, + [28] = { 26.9, 44.9, 44, 300 }, + [29] = { 26.9, 44.8, 44, 300 }, + [30] = { 74, 32.9, 45, 300 }, + [31] = { 73.9, 32.9, 45, 300 }, + [32] = { 78, 81.7, 47, 300 }, + [33] = { 77.9, 81.7, 47, 300 }, + [34] = { 13.5, 41.6, 47, 300 }, + [35] = { 82.7, 38, 51, 300 }, + [36] = { 82.8, 37.8, 51, 300 }, + [37] = { 61.8, 52.7, 85, 300 }, + [38] = { 61.8, 52.6, 85, 300 }, + [39] = { 43.1, 41.5, 130, 300 }, + [40] = { 43.1, 41.3, 130, 300 }, + [41] = { 56.1, 59.4, 141, 300 }, + [42] = { 56.1, 59.3, 141, 300 }, + [43] = { 31.3, 50.2, 141, 300 }, + [44] = { 31.4, 50.1, 141, 300 }, + [45] = { 37, 44.1, 148, 300 }, + [46] = { 46.6, 61.4, 215, 300 }, + [47] = { 46.5, 61.4, 215, 300 }, + [48] = { 39, 29.8, 215, 300 }, + [49] = { 38.9, 29.7, 215, 300 }, + [50] = { 50.8, 59, 267, 300 }, + [51] = { 62.5, 19.3, 267, 300 }, + [52] = { 62.5, 19.2, 267, 300 }, + [53] = { 74.2, 60.8, 331, 300 }, + [54] = { 74.2, 60.7, 331, 300 }, + [55] = { 36.8, 49.9, 331, 300 }, + [56] = { 36.7, 49.9, 331, 300 }, + [57] = { 74.7, 44.8, 357, 300 }, + [58] = { 31, 42.8, 357, 300 }, + [59] = { 45.9, 51, 400, 300 }, + [60] = { 23.9, 68, 405, 300 }, + [61] = { 66.2, 6.8, 405, 300 }, + [62] = { 66.1, 6.8, 405, 300 }, + [63] = { 40.7, 82, 406, 300 }, + [64] = { 40.6, 81.9, 406, 300 }, + [65] = { 47.7, 61.7, 406, 300 }, + [66] = { 47.7, 61.6, 406, 300 }, + [67] = { 52.5, 28, 440, 300 }, + [68] = { 52.6, 27.9, 440, 300 }, + [69] = { 61.4, 38.9, 618, 300 }, + [70] = { 51.7, 38.6, 1377, 300 }, + [71] = { 51.7, 38.5, 1377, 300 }, + [72] = { 66.7, 37.8, 1497, 300 }, + [73] = { 66.4, 37.6, 1497, 300 }, + [74] = { 52.4, 65.5, 1519, 300 }, + [75] = { 52.4, 65.3, 1519, 300 }, + [76] = { 19.8, 53.8, 1537, 300 }, + [77] = { 20.1, 53.8, 1537, 300 }, + [78] = { 54.1, 68.9, 1637, 300 }, + [79] = { 54, 68.8, 1637, 300 }, + [80] = { 45.1, 63.8, 1638, 300 }, + [81] = { 45, 63.5, 1638, 300 }, + [82] = { 68, 15.6, 1657, 300 }, + [83] = { 68.1, 15.3, 1657, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "30-40", + }, + [15761] = { + ["coords"] = { + [1] = { 46.3, 35.1, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [15762] = { + ["coords"] = { + [1] = { 25.2, 55, 141, 300 }, + [2] = { 38.2, 38.7, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [15763] = { + ["coords"] = { + [1] = { 69.7, 46, 1537, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [15764] = { + ["coords"] = { + [1] = { 43.2, 46.5, 1537, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [15765] = { + ["coords"] = { + [1] = { 42.5, 38.7, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [15766] = { + ["coords"] = { + [1] = { 55.2, 64.7, 1519, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [15767] = { + ["coords"] = { + [1] = { 38.4, 28.4, 215, 250 }, + [2] = { 42.4, 57, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [15768] = { + ["coords"] = { + [1] = { 61.9, 45.3, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [15769] = { + ["coords"] = { + [1] = { 44.7, 74.4, 17, 25 }, + [2] = { 45.4, 63.3, 17, 25 }, + [3] = { 31, 44.5, 357, 25 }, + [4] = { 76.1, 84.3, 400, 25 }, + [5] = { 47.9, 54.1, 400, 25 }, + [6] = { 33.5, 55.8, 440, 25 }, + [7] = { 48.8, 33.6, 440, 25 }, + [8] = { 51.5, 28.3, 440, 25 }, + [9] = { 53.5, 72.9, 490, 25 }, + [10] = { 22.9, 82.2, 1377, 25 }, + [11] = { 55.1, 58.2, 1377, 25 }, + [12] = { 25.9, 43.8, 1377, 25 }, + }, + ["lvl"] = "35", + ["rnk"] = "1", + }, + [15770] = { + ["coords"] = {}, + ["lvl"] = "45", + ["rnk"] = "1", + }, + [15771] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [15772] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + ["rnk"] = "1", + }, + [15773] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + ["rnk"] = "1", + }, + [15774] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + ["rnk"] = "1", + }, + [15775] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "56", + ["rnk"] = "1", + }, + [15776] = { + ["coords"] = {}, + ["lvl"] = "1", + ["rnk"] = "3", + }, + [15777] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + ["rnk"] = "1", + }, + [15778] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15780] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15781] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15782] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15783] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15784] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15785] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15786] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15787] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15788] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15789] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15790] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15791] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15792] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15793] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15794] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15795] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15796] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + ["rnk"] = "1", + }, + [15797] = { + ["coords"] = { + [1] = { 49.5, 37.4, 1377, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15798] = { + ["coords"] = { + [1] = { 49.5, 37.3, 1377, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15799] = { + ["coords"] = { + [1] = { 49.6, 37.3, 1377, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15800] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [15801] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-11", + }, + [15802] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [15803] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15804] = { + ["coords"] = {}, + ["lvl"] = "25", + ["rnk"] = "1", + }, + [15805] = { + ["coords"] = {}, + ["lvl"] = "15", + ["rnk"] = "1", + }, + [15806] = { + ["coords"] = { + [1] = { 44.7, 74.5, 17, 900 }, + }, + ["lvl"] = "28", + ["rnk"] = "1", + }, + [15807] = { + ["coords"] = { + [1] = { 44.7, 74.4, 17, 720 }, + }, + ["lvl"] = "25", + ["rnk"] = "1", + }, + [15808] = { + ["coords"] = { + [1] = { 44.8, 74.4, 17, 600 }, + [2] = { 44.7, 74.4, 17, 600 }, + }, + ["lvl"] = "21-23", + ["rnk"] = "1", + }, + [15809] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15810] = { + ["coords"] = { + [1] = { 45.4, 63.3, 17, 720 }, + }, + ["lvl"] = "16-18", + ["rnk"] = "1", + }, + [15811] = { + ["coords"] = { + [1] = { 45.4, 63.3, 17, 600 }, + }, + ["lvl"] = "11-14", + ["rnk"] = "1", + }, + [15812] = { + ["coords"] = { + [1] = { 45.4, 63.3, 17, 900 }, + }, + ["lvl"] = "18-20", + ["rnk"] = "1", + }, + [15813] = { + ["coords"] = { + [1] = { 45.4, 63.3, 17, 900 }, + }, + ["lvl"] = "20", + ["rnk"] = "1", + }, + [15814] = { + ["coords"] = { + [1] = { 44.7, 74.5, 17, 900 }, + }, + ["lvl"] = "28", + ["rnk"] = "1", + }, + [15815] = { + ["coords"] = { + [1] = { 47.9, 54.1, 400, 900 }, + }, + ["lvl"] = "40", + ["rnk"] = "1", + }, + [15816] = { + ["coords"] = { + [1] = { 76.1, 84.3, 400, 900 }, + }, + ["lvl"] = "50", + ["rnk"] = "1", + }, + [15817] = { + ["coords"] = { + [1] = { 53.5, 72.9, 490, 900 }, + [2] = { 31, 44.5, 357, 900 }, + [3] = { 48.8, 33.6, 440, 900 }, + [4] = { 51.5, 28.3, 440, 900 }, + [5] = { 22.9, 82.2, 1377, 900 }, + [6] = { 25.9, 43.8, 1377, 900 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15818] = { + ["coords"] = { + [1] = { 33.5, 55.8, 440, 900 }, + [2] = { 55.1, 58.2, 1377, 900 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15832] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15835] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15838] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [15839] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "13-15", + }, + [15840] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "15", + }, + [15841] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "45-46", + }, + [15842] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "36", + }, + [15843] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "55-56", + }, + [15844] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15845] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15846] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "45-46", + }, + [15847] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "25", + }, + [15848] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "56-59", + }, + [15849] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [15850] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "35-36", + }, + [15851] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "59", + }, + [15852] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60-61", + ["rnk"] = "1", + }, + [15853] = { + ["coords"] = { + [1] = { 45.8, 44.1, 1377, 25 }, + [2] = { 45.7, 44, 1377, 25 }, + [3] = { 45.8, 44, 1377, 25 }, + [4] = { 45.8, 43.9, 1377, 25 }, + [5] = { 45.9, 43.8, 1377, 25 }, + [6] = { 45.8, 43.7, 1377, 25 }, + [7] = { 46, 43.7, 1377, 25 }, + [8] = { 45.9, 43.6, 1377, 25 }, + [9] = { 46, 43.5, 1377, 25 }, + [10] = { 45.9, 43.5, 1377, 25 }, + [11] = { 46.1, 43.4, 1377, 25 }, + [12] = { 46, 43.3, 1377, 25 }, + [13] = { 46.1, 43.3, 1377, 25 }, + [14] = { 46.1, 43.2, 1377, 25 }, + [15] = { 46.2, 43.2, 1377, 25 }, + [16] = { 46.1, 43.1, 1377, 25 }, + [17] = { 46.3, 43, 1377, 25 }, + [18] = { 46.2, 42.9, 1377, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [15854] = { + ["coords"] = { + [1] = { 45.2, 47.1, 1377, 25 }, + [2] = { 45.2, 46.9, 1377, 25 }, + [3] = { 45.2, 46.8, 1377, 25 }, + [4] = { 45.2, 46.5, 1377, 25 }, + [5] = { 45.2, 46.4, 1377, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15855] = { + ["coords"] = { + [1] = { 45.9, 44.2, 1377, 25 }, + [2] = { 45.9, 44, 1377, 25 }, + [3] = { 46, 43.9, 1377, 25 }, + [4] = { 46.1, 43.8, 1377, 25 }, + [5] = { 46.1, 43.6, 1377, 25 }, + [6] = { 46.2, 43.5, 1377, 25 }, + [7] = { 46.2, 43.4, 1377, 25 }, + [8] = { 46.3, 43.3, 1377, 25 }, + [9] = { 46.3, 43.1, 1377, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15856] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15857] = { + ["coords"] = { + [1] = { 54.7, 37.6, 1377, 25 }, + [2] = { 54.5, 37.5, 1377, 25 }, + [3] = { 54.6, 37.1, 1377, 25 }, + [4] = { 54.6, 35.9, 1377, 25 }, + [5] = { 54.5, 35.6, 1377, 25 }, + [6] = { 54.6, 35.6, 1377, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15858] = { + ["coords"] = { + [1] = { 54.8, 37.6, 1377, 25 }, + [2] = { 54.6, 37.5, 1377, 25 }, + [3] = { 54.4, 37.3, 1377, 25 }, + [4] = { 54.6, 37.3, 1377, 25 }, + [5] = { 54.5, 37.2, 1377, 25 }, + [6] = { 54.4, 37.1, 1377, 25 }, + [7] = { 54.6, 35.8, 1377, 25 }, + [8] = { 54.5, 35.7, 1377, 25 }, + [9] = { 54.7, 35.7, 1377, 25 }, + [10] = { 54.4, 35.7, 1377, 25 }, + [11] = { 54.7, 35.6, 1377, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [15859] = { + ["coords"] = { + [1] = { 54.5, 37.4, 1377, 25 }, + [2] = { 54.6, 35.7, 1377, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "62", + ["rnk"] = "1", + }, + [15860] = { + ["coords"] = { + [1] = { 47.1, 41.4, 1377, 25 }, + [2] = { 47.7, 41.1, 1377, 25 }, + [3] = { 47.8, 40.6, 1377, 25 }, + [4] = { 48.3, 40.3, 1377, 25 }, + [5] = { 48.1, 40.1, 1377, 25 }, + [6] = { 48.8, 39.9, 1377, 25 }, + [7] = { 49, 39.5, 1377, 25 }, + [8] = { 49.5, 39.1, 1377, 25 }, + [9] = { 49.9, 38.9, 1377, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15861] = { + ["coords"] = { + [1] = { 45.2, 43.5, 1377, 25 }, + [2] = { 45.3, 43.4, 1377, 25 }, + [3] = { 45.2, 43.3, 1377, 25 }, + [4] = { 45.3, 43.3, 1377, 25 }, + [5] = { 45.3, 43.2, 1377, 25 }, + [6] = { 45.4, 43.1, 1377, 25 }, + [7] = { 45.5, 43, 1377, 25 }, + [8] = { 45.4, 43, 1377, 25 }, + [9] = { 45.6, 42.9, 1377, 25 }, + [10] = { 45.5, 42.8, 1377, 25 }, + [11] = { 45.6, 42.8, 1377, 25 }, + [12] = { 45.6, 42.7, 1377, 25 }, + [13] = { 45.7, 42.7, 1377, 25 }, + [14] = { 45.6, 42.6, 1377, 25 }, + [15] = { 45.7, 42.5, 1377, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [15862] = { + ["coords"] = { + [1] = { 44.9, 47.3, 1377, 25 }, + [2] = { 44.9, 47.2, 1377, 25 }, + [3] = { 44.9, 47, 1377, 25 }, + [4] = { 44.9, 46.9, 1377, 25 }, + [5] = { 45, 46.7, 1377, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15863] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15864] = { + ["coords"] = { + [1] = { 53.7, 35.3, 493, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [15865] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "55-56", + }, + [15866] = { + ["coords"] = { + [1] = { 49.6, 35.3, 1377, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "63", + ["rnk"] = "1", + }, + [15867] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15868] = { + ["coords"] = { + [1] = { 49.4, 35.5, 1377, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "63", + ["rnk"] = "1", + }, + [15869] = { + ["coords"] = { + [1] = { 49.3, 35.2, 1377, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15870] = { + ["coords"] = { + [1] = { 49.5, 35.5, 1377, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "63", + ["rnk"] = "1", + }, + [15871] = { + ["coords"] = { + [1] = { 29.2, 17.1, 1537, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15872] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [15873] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [15874] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [15875] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15876] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15877] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15878] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15879] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [15880] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [15881] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15882] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15883] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [15884] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [15885] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15886] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15887] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15888] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15889] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15890] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [15891] = { + ["coords"] = { + [1] = { 37.6, 29.7, 215, 120 }, + [2] = { 44.4, 22.3, 215, 120 }, + [3] = { 44.2, 22.2, 215, 120 }, + [4] = { 44.4, 22, 215, 120 }, + [5] = { 66.7, 43.4, 1497, 120 }, + [6] = { 66, 37.5, 1497, 120 }, + [7] = { 66.4, 36.6, 1497, 120 }, + [8] = { 65.7, 36.6, 1497, 120 }, + [9] = { 51, 70.5, 1637, 120 }, + [10] = { 40.8, 31.7, 1637, 120 }, + [11] = { 41.5, 31, 1637, 120 }, + [12] = { 40.8, 30.5, 1637, 120 }, + [13] = { 38.4, 63.4, 1638, 120 }, + [14] = { 71.9, 26.8, 1638, 120 }, + [15] = { 71, 26.2, 1638, 120 }, + [16] = { 71.8, 25.4, 1638, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [15892] = { + ["coords"] = { + [1] = { 26, 56.1, 141, 120 }, + [2] = { 23.8, 49.6, 141, 120 }, + [3] = { 23.9, 49.5, 141, 120 }, + [4] = { 23.8, 49.4, 141, 120 }, + [5] = { 54.4, 66.3, 1519, 120 }, + [6] = { 22.6, 52.9, 1519, 120 }, + [7] = { 23.2, 52.3, 1519, 120 }, + [8] = { 22.5, 52, 1519, 120 }, + [9] = { 30.9, 61.6, 1537, 120 }, + [10] = { 31.1, 18.6, 1537, 120 }, + [11] = { 29.9, 17.9, 1537, 120 }, + [12] = { 30.9, 16.7, 1537, 120 }, + [13] = { 42.2, 44, 1657, 120 }, + [14] = { 31.7, 13, 1657, 120 }, + [15] = { 32.1, 12.3, 1657, 120 }, + [16] = { 31.5, 12.1, 1657, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [15893] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [15894] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [15895] = { + ["coords"] = { + [1] = { 24, 49.4, 141, 120 }, + [2] = { 44.3, 22.6, 215, 120 }, + [3] = { 65.6, 36, 1497, 120 }, + [4] = { 23.2, 53.2, 1519, 120 }, + [5] = { 28.8, 16.2, 1537, 120 }, + [6] = { 41.7, 32, 1637, 120 }, + [7] = { 71.1, 28.2, 1638, 120 }, + [8] = { 32.6, 12, 1657, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [15896] = { + ["coords"] = {}, + ["lvl"] = "63", + }, + [15897] = { + ["coords"] = { + [1] = { 23.8, 49.5, 141, 120 }, + [2] = { 44.3, 22.2, 215, 120 }, + [3] = { 36.4, 59.9, 493, 120 }, + [4] = { 37.2, 59.5, 493, 120 }, + [5] = { 35.7, 58.9, 493, 120 }, + [6] = { 37.5, 58.2, 493, 120 }, + [7] = { 36, 57.7, 493, 120 }, + [8] = { 36.7, 57.2, 493, 120 }, + [9] = { 66, 36.8, 1497, 120 }, + [10] = { 22.8, 52.4, 1519, 120 }, + [11] = { 30.7, 17.8, 1537, 120 }, + [12] = { 41, 31.1, 1637, 120 }, + [13] = { 71.6, 26.1, 1638, 120 }, + [14] = { 31.8, 12.4, 1657, 120 }, + }, + ["lvl"] = "60", + }, + [15898] = { + ["coords"] = { + [1] = { 24.4, 49.6, 141, 120 }, + [2] = { 44.1, 22.5, 215, 120 }, + [3] = { 36.3, 58.5, 493, 120 }, + [4] = { 36.6, 58.1, 493, 120 }, + [5] = { 66.5, 36, 1497, 120 }, + [6] = { 22.8, 51.2, 1519, 120 }, + [7] = { 29.9, 14.2, 1537, 120 }, + [8] = { 41.3, 32.4, 1637, 120 }, + [9] = { 70.6, 27.8, 1638, 120 }, + [10] = { 34.6, 12.8, 1657, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [15899] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [15900] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [15901] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15902] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [15903] = { + ["coords"] = { + [1] = { 32.6, 51.8, 1377, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [15904] = { + ["coords"] = {}, + ["lvl"] = "63", + }, + [15905] = { + ["coords"] = { + [1] = { 55.1, 95.4, 141, 120 }, + [2] = { 55.1, 95.3, 141, 120 }, + [3] = { 55.1, 94.9, 141, 120 }, + [4] = { 55.2, 94.6, 141, 120 }, + [5] = { 55.2, 94.5, 141, 120 }, + [6] = { 55.1, 94.4, 141, 120 }, + [7] = { 55.3, 94.1, 141, 120 }, + [8] = { 55.3, 94, 141, 120 }, + [9] = { 57.8, 93.8, 141, 120 }, + [10] = { 55.4, 93.7, 141, 120 }, + [11] = { 55.5, 93.4, 141, 120 }, + [12] = { 57, 92.8, 141, 120 }, + [13] = { 57.1, 92.8, 141, 120 }, + [14] = { 55, 92, 141, 120 }, + [15] = { 36.7, 57.4, 493, 120 }, + [16] = { 36.6, 57.3, 493, 120 }, + [17] = { 36.9, 57.2, 493, 120 }, + [18] = { 36.6, 57, 493, 120 }, + [19] = { 36.8, 57, 493, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "1-60", + }, + [15906] = { + ["coords"] = { + [1] = { 54.3, 39.3, 1, 120 }, + [2] = { 54.2, 39.2, 1, 120 }, + [3] = { 54.1, 39, 1, 120 }, + [4] = { 54.1, 38.9, 1, 120 }, + [5] = { 53.9, 38.8, 1, 120 }, + [6] = { 53, 37.3, 1, 120 }, + [7] = { 52.9, 37.2, 1, 120 }, + [8] = { 52.8, 37.2, 1, 120 }, + [9] = { 52.3, 36.8, 1, 120 }, + [10] = { 52.5, 36.4, 1, 120 }, + [11] = { 52.4, 36, 1, 120 }, + [12] = { 53.2, 35.4, 1, 120 }, + [13] = { 53.3, 35.4, 1, 120 }, + [14] = { 52.8, 35.2, 1, 120 }, + [15] = { 53.1, 35.1, 1, 120 }, + [16] = { 53.2, 35.1, 1, 120 }, + [17] = { 36.3, 60.1, 493, 120 }, + [18] = { 36.5, 60, 493, 120 }, + [19] = { 36.2, 59.9, 493, 120 }, + [20] = { 36.2, 59.6, 493, 120 }, + [21] = { 36.5, 59.6, 493, 120 }, + [22] = { 13.5, 89.3, 1537, 120 }, + [23] = { 13.7, 89.3, 1537, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "1-60", + }, + [15907] = { + ["coords"] = { + [1] = { 62.8, 68.4, 85, 120 }, + [2] = { 60.9, 68.2, 85, 120 }, + [3] = { 60.9, 68.1, 85, 120 }, + [4] = { 60.9, 67.9, 85, 120 }, + [5] = { 62, 67.6, 85, 120 }, + [6] = { 61.3, 67.5, 85, 120 }, + [7] = { 62.5, 67.5, 85, 120 }, + [8] = { 62.4, 67.5, 85, 120 }, + [9] = { 61.3, 67.4, 85, 120 }, + [10] = { 61.7, 67.3, 85, 120 }, + [11] = { 62.8, 67, 85, 120 }, + [12] = { 62.8, 66.9, 85, 120 }, + [13] = { 60.9, 66.8, 85, 120 }, + [14] = { 61.4, 62.4, 85, 120 }, + [15] = { 61.5, 62.4, 85, 120 }, + [16] = { 37.1, 59.7, 493, 120 }, + [17] = { 37.2, 59.7, 493, 120 }, + [18] = { 37, 59.5, 493, 120 }, + [19] = { 37.3, 59.4, 493, 120 }, + [20] = { 37.1, 59.3, 493, 120 }, + [21] = { 70.7, 16.1, 1497, 120 }, + [22] = { 70.6, 15.9, 1497, 120 }, + [23] = { 61.7, 14.7, 1497, 120 }, + [24] = { 61.7, 14.4, 1497, 120 }, + [25] = { 61.8, 13.3, 1497, 120 }, + [26] = { 67, 12.2, 1497, 120 }, + [27] = { 63.6, 11.7, 1497, 120 }, + [28] = { 69.1, 11.7, 1497, 120 }, + [29] = { 68.9, 11.6, 1497, 120 }, + [30] = { 63.6, 11, 1497, 120 }, + [31] = { 65.4, 10.6, 1497, 120 }, + [32] = { 65.5, 10.4, 1497, 120 }, + [33] = { 70.6, 9.4, 1497, 120 }, + [34] = { 70.5, 9.1, 1497, 120 }, + [35] = { 70.6, 8.8, 1497, 120 }, + [36] = { 61.8, 8.2, 1497, 120 }, + [37] = { 61.7, 8.1, 1497, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "1-60", + }, + [15908] = { + ["coords"] = { + [1] = { 46.1, 14.6, 14, 120 }, + [2] = { 45.6, 14.4, 14, 120 }, + [3] = { 46, 14.1, 14, 120 }, + [4] = { 46.1, 14.1, 14, 120 }, + [5] = { 45.7, 14, 14, 120 }, + [6] = { 45.7, 13.9, 14, 120 }, + [7] = { 45.4, 13.5, 14, 120 }, + [8] = { 45.3, 13.4, 14, 120 }, + [9] = { 46.1, 13.4, 14, 120 }, + [10] = { 45.9, 13.2, 14, 120 }, + [11] = { 46.1, 10.8, 14, 120 }, + [12] = { 46.2, 10.8, 14, 120 }, + [13] = { 45.7, 10.5, 14, 120 }, + [14] = { 46, 8.1, 14, 120 }, + [15] = { 37.4, 58.5, 493, 120 }, + [16] = { 37.7, 58.4, 493, 120 }, + [17] = { 37.3, 58.2, 493, 120 }, + [18] = { 37.7, 58, 493, 120 }, + [19] = { 37.4, 57.9, 493, 120 }, + [20] = { 50.6, 99.6, 1637, 120 }, + [21] = { 50.7, 99.4, 1637, 120 }, + [22] = { 51.5, 90.6, 1637, 120 }, + [23] = { 51.6, 90.4, 1637, 120 }, + [24] = { 51.4, 90.4, 1637, 120 }, + [25] = { 49.7, 89.5, 1637, 120 }, + [26] = { 49.6, 89.3, 1637, 120 }, + [27] = { 51, 80.5, 1637, 120 }, + [28] = { 50.8, 80.4, 1637, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "1-60", + }, + [15909] = { + ["coords"] = { + [1] = { 53.8, 35.3, 493, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15910] = { + ["coords"] = {}, + ["lvl"] = "63", + }, + [15911] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15912] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15913] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15914] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15915] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15916] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15917] = { + ["coords"] = { + [1] = { 52.4, 63.2, 493, 120 }, + [2] = { 52.3, 63.1, 493, 120 }, + [3] = { 49.5, 61.4, 493, 120 }, + [4] = { 49.2, 61.4, 493, 120 }, + [5] = { 49.3, 61.3, 493, 120 }, + [6] = { 48.3, 60.4, 493, 120 }, + [7] = { 48.2, 60.3, 493, 120 }, + [8] = { 47, 59.6, 493, 120 }, + [9] = { 45.6, 57.5, 493, 120 }, + [10] = { 45.6, 57.3, 493, 120 }, + [11] = { 44.8, 54.4, 493, 120 }, + [12] = { 44.7, 54.2, 493, 120 }, + [13] = { 43.3, 51.7, 493, 120 }, + [14] = { 43.2, 51.5, 493, 120 }, + [15] = { 61.5, 50.1, 493, 120 }, + [16] = { 61.5, 49.9, 493, 120 }, + [17] = { 61.4, 49.7, 493, 120 }, + [18] = { 44.8, 48.3, 493, 120 }, + [19] = { 44.9, 48.3, 493, 120 }, + [20] = { 60.4, 47.7, 493, 120 }, + [21] = { 60.6, 47.5, 493, 120 }, + [22] = { 51.2, 47.4, 493, 120 }, + [23] = { 51, 47.4, 493, 120 }, + [24] = { 60.7, 47.4, 493, 120 }, + [25] = { 61.7, 45.6, 493, 120 }, + [26] = { 61.8, 45.4, 493, 120 }, + [27] = { 59.7, 40, 493, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [15918] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [15922] = { + ["coords"] = {}, + ["lvl"] = "63", + }, + [15925] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [15928] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15929] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15930] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15931] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15932] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15933] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [15934] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15936] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15952] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15953] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15954] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15956] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15957] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [15961] = { + ["coords"] = { + [1] = { 36.5, 60.6, 493, 120 }, + [2] = { 35.7, 60.4, 493, 120 }, + [3] = { 37.6, 59.2, 493, 120 }, + [4] = { 36.4, 58.8, 493, 120 }, + [5] = { 35.3, 58.7, 493, 120 }, + [6] = { 35.6, 57.6, 493, 120 }, + [7] = { 37.9, 57.6, 493, 120 }, + [8] = { 36.7, 55.9, 493, 120 }, + [9] = { 54, 35.4, 493, 120 }, + [10] = { 53.5, 35.2, 493, 120 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15962] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [15963] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15964] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [15972] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15973] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + ["rnk"] = "1", + }, + [15974] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15975] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15976] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15977] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15978] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15979] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15980] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15981] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15982] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-60", + }, + [15983] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-60", + }, + [15984] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15985] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15989] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15990] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15991] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15992] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15993] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15996] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15997] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15998] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15999] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [16001] = { + ["coords"] = { + [1] = { 25.9, 55.7, 141, 120 }, + [2] = { 42, 42.3, 1657, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [16002] = { + ["coords"] = { + [1] = { 54.3, 66, 1519, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [16003] = { + ["coords"] = { + [1] = { 60.7, 59.5, 85, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "5", + }, + [16004] = { + ["coords"] = { + [1] = { 66.9, 45.2, 1497, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "5", + }, + [16005] = { + ["coords"] = { + [1] = { 57.1, 59.6, 1519, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [16006] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [16007] = { + ["coords"] = { + [1] = { 51.3, 70.2, 1637, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "5", + }, + [16008] = { + ["coords"] = { + [1] = { 38.9, 29.1, 215, 120 }, + [2] = { 44.8, 60.1, 1638, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "5", + }, + [16009] = { + ["coords"] = { + [1] = { 32.6, 66.2, 1537, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [16011] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [16012] = { + ["coords"] = { + [1] = { 34.9, 38.3, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [16013] = { + ["coords"] = { + [1] = { 43.5, 52.6, 1537, 25000 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [16014] = { + ["coords"] = { + [1] = { 52.5, 27.2, 440, 300 }, + }, + ["lvl"] = "60", + }, + [16015] = { + ["coords"] = { + [1] = { 58.9, 78.4, 618, 333 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [16016] = { + ["coords"] = { + [1] = { 30.9, 17.1, 139, 250 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [16017] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16018] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16019] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "35", + }, + [16020] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16021] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [16022] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16023] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "35", + }, + [16024] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16025] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [16026] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [16027] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16028] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [16029] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [16030] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [16031] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [16032] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [16033] = { + ["coords"] = { + [1] = { 32.2, 25.8, 46, 25 }, + [2] = { 39.8, 96.5, 51, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [16034] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16035] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16036] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16037] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16038] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16039] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16040] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16041] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16042] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [16043] = { + ["coords"] = { + [1] = { 35.4, 57.8, 46, 500 }, + }, + ["lvl"] = "60", + }, + [16044] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [16045] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [16046] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [16047] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [16048] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [16049] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16050] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16051] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16052] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16053] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16054] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16055] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16056] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16057] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16058] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16059] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16060] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [16061] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [16062] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [16063] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [16064] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [16065] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [16066] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [16067] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16068] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [16069] = { + ["coords"] = { + [1] = { 49.6, 14, 1537, 300 }, + [2] = { 69.6, 30.4, 1637, 180 }, + }, + ["lvl"] = "1", + }, + [16070] = { + ["coords"] = { + [1] = { 49.8, 13.7, 1537, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [16072] = { + ["coords"] = { + [1] = { 76.5, 19.5, 15, 1200 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [16073] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "63", + ["rnk"] = "1", + }, + [16075] = { + ["coords"] = { + [1] = { 74.2, 13.2, 130, 120 }, + [2] = { 74, 13, 130, 120 }, + [3] = { 25.5, 63.8, 141, 120 }, + [4] = { 25.1, 63.7, 141, 120 }, + [5] = { 41.8, 27.5, 215, 120 }, + [6] = { 42.2, 27.1, 215, 120 }, + [7] = { 56.4, 90.8, 1497, 120 }, + [8] = { 55.2, 89.9, 1497, 120 }, + [9] = { 77.8, 18.5, 1519, 120 }, + [10] = { 78.7, 17.5, 1519, 120 }, + [11] = { 40.3, 56.6, 1537, 120 }, + [12] = { 40.1, 56.4, 1537, 120 }, + [13] = { 32.7, 38, 1637, 120 }, + [14] = { 32.6, 36.8, 1637, 120 }, + [15] = { 59.2, 52.2, 1638, 120 }, + [16] = { 60.9, 50.3, 1638, 120 }, + [17] = { 39.7, 81.1, 1657, 120 }, + [18] = { 38.1, 80.5, 1657, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [16076] = { + ["coords"] = { + [1] = { 69.5, 30.4, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [16077] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [16078] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [16079] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [16080] = { + ["coords"] = {}, + ["lvl"] = "58-60", + ["rnk"] = "1", + }, + [16081] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [16082] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [16083] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + ["rnk"] = "1", + }, + [16084] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [16085] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [16086] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [16089] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [16090] = { + ["coords"] = { + [1] = { 6.7, 52.3, 45, 300 }, + [2] = { 67.9, 83.9, 267, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "48", + }, + [16091] = { + ["coords"] = { + [1] = { 52.1, 39.1, 1377, 600 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16092] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [16093] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [16094] = { + ["coords"] = { + [1] = { 31.9, 29.5, 33, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [16095] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [16096] = { + ["coords"] = { + [1] = { 51.1, 13.3, 14, 600 }, + [2] = { 50.6, 13.3, 14, 600 }, + [3] = { 51, 12.9, 14, 600 }, + [4] = { 31.4, 29.8, 33, 1800 }, + [5] = { 31.6, 29.7, 33, 1800 }, + [6] = { 31.7, 29.4, 33, 1800 }, + [7] = { 61.8, 59.2, 85, 900 }, + [8] = { 61.8, 59.1, 85, 900 }, + [9] = { 61.9, 59, 85, 900 }, + [10] = { 60.7, 58.9, 85, 900 }, + [11] = { 60.7, 58.6, 85, 900 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [16097] = { + ["coords"] = {}, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [16098] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16099] = { + ["coords"] = {}, + ["lvl"] = "63", + }, + [16100] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [16101] = { + ["coords"] = {}, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [16102] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16103] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [16104] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [16105] = { + ["coords"] = { + [1] = { 54.6, 65.3, 1519, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [16106] = { + ["coords"] = { + [1] = { 39.8, 47, 1519, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [16107] = { + ["coords"] = { + [1] = { 89.4, 74.9, 36, 120 }, + [2] = { 3.7, 53.2, 47, 120 }, + [3] = { 87.1, 14, 267, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [16108] = { + ["coords"] = { + [1] = { 66.7, 44.7, 1497, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "5", + }, + [16109] = { + ["coords"] = { + [1] = { 70.7, 29.2, 1497, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "5", + }, + [16110] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [16111] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [16112] = { + ["coords"] = { + [1] = { 81.8, 58.1, 139, 610 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16113] = { + ["coords"] = { + [1] = { 81.5, 58.2, 139, 610 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16114] = { + ["coords"] = { + [1] = { 81.4, 58.3, 139, 610 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16115] = { + ["coords"] = { + [1] = { 81.5, 58.2, 139, 610 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16116] = { + ["coords"] = { + [1] = { 81.5, 58.3, 139, 60 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16117] = { + ["coords"] = { + [1] = { 18.1, 35.3, 139, 345 }, + [2] = { 17.9, 34.8, 139, 345 }, + [3] = { 17.7, 34.4, 139, 345 }, + [4] = { 18.9, 34.3, 139, 345 }, + [5] = { 18.8, 33.8, 139, 345 }, + [6] = { 14.1, 33.7, 139, 345 }, + [7] = { 14.7, 33.7, 139, 345 }, + [8] = { 15.5, 33.2, 139, 345 }, + [9] = { 18.2, 33.1, 139, 345 }, + [10] = { 15.1, 33, 139, 345 }, + [11] = { 13.8, 33, 139, 345 }, + [12] = { 18.3, 32.1, 139, 345 }, + [13] = { 14.9, 31.9, 139, 345 }, + [14] = { 17.1, 31.2, 139, 345 }, + [15] = { 17.9, 30.5, 139, 345 }, + [16] = { 16.2, 30.3, 139, 345 }, + [17] = { 16.4, 29.6, 139, 345 }, + }, + ["lvl"] = "60", + }, + [16118] = { + ["coords"] = {}, + ["lvl"] = "58-60", + ["rnk"] = "1", + }, + [16119] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [16120] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16121] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [16123] = { + ["coords"] = { + [1] = { 27.8, 77.3, 33, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [16124] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [16125] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16126] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [16127] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16128] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [16129] = { + ["coords"] = {}, + ["lvl"] = "63", + }, + [16131] = { + ["coords"] = { + [1] = { 81.4, 58.5, 139, 610 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16132] = { + ["coords"] = { + [1] = { 81.5, 58.6, 139, 610 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16133] = { + ["coords"] = { + [1] = { 81.4, 58.2, 139, 610 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16134] = { + ["coords"] = { + [1] = { 81.1, 59, 139, 610 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16135] = { + ["coords"] = { + [1] = { 81.2, 59, 139, 610 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16136] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [16137] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [16138] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [16139] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16140] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [16141] = { + ["coords"] = {}, + ["lvl"] = "59-60", + }, + [16142] = { + ["coords"] = {}, + ["lvl"] = "62", + }, + [16143] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16145] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16146] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16148] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [16149] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [16150] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [16154] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16156] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16157] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16158] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16163] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16164] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16165] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16166] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [16167] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16168] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16172] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [16182] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [16184] = { + ["coords"] = { + [1] = { 67.8, 19.3, 28, 5191 }, + [2] = { 8.1, 38.2, 139, 5191 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16188] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [16193] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16194] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16211] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [16212] = { + ["coords"] = { + [1] = { 81.1, 57.5, 139, 345 }, + }, + ["lvl"] = "60", + }, + [16214] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [16215] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16216] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16218] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [16225] = { + ["coords"] = { + [1] = { 80.3, 58.1, 139, 518 }, + [2] = { 80.3, 58, 139, 518 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [16226] = { + ["coords"] = { + [1] = { 80.1, 57.9, 139, 14400 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16227] = { + ["coords"] = { + [1] = { 63.1, 37.2, 17, 600 }, + }, + ["lvl"] = "55", + ["rnk"] = "1", + }, + [16228] = { + ["coords"] = { + [1] = { 47.5, 43.1, 139, 345 }, + [2] = { 47.6, 42.9, 139, 345 }, + [3] = { 47, 42.4, 139, 345 }, + [4] = { 47, 42.3, 139, 345 }, + [5] = { 48.8, 40.7, 139, 345 }, + [6] = { 47.9, 40.5, 139, 345 }, + }, + ["lvl"] = "59-60", + }, + [16229] = { + ["coords"] = { + [1] = { 46.9, 43.7, 139, 345 }, + [2] = { 46.8, 43.5, 139, 345 }, + [3] = { 46.8, 43.4, 139, 345 }, + }, + ["lvl"] = "59-60", + }, + [16230] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [16232] = { + ["coords"] = { + [1] = { 80.2, 57.9, 139, 14400 }, + [2] = { 80.3, 57.9, 139, 14400 }, + [3] = { 80.4, 57.8, 139, 14400 }, + [4] = { 80.2, 57.8, 139, 14400 }, + [5] = { 80.3, 57.7, 139, 14400 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [16233] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16234] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16235] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16236] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16241] = { + ["coords"] = { + [1] = { 25.4, 56.4, 141, 120 }, + [2] = { 25.6, 56.3, 141, 120 }, + [3] = { 54.9, 61.8, 1519, 120 }, + [4] = { 34.1, 68.1, 1537, 120 }, + [5] = { 29.8, 61.6, 1537, 120 }, + [6] = { 39.5, 45.3, 1657, 120 }, + [7] = { 40.4, 45.2, 1657, 120 }, + }, + ["lvl"] = "55", + }, + [16243] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16244] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16254] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16255] = { + ["coords"] = { + [1] = { 38.5, 28.8, 215, 120 }, + [2] = { 66.2, 46.7, 1497, 120 }, + [3] = { 52.5, 73.7, 1637, 120 }, + [4] = { 43, 58.7, 1638, 120 }, + }, + ["lvl"] = "55", + }, + [16256] = { + ["coords"] = { + [1] = { 81.6, 58.1, 139, 345 }, + }, + ["lvl"] = "52", + }, + [16281] = { + ["coords"] = { + [1] = { 80.9, 60.3, 139, 120 }, + }, + ["lvl"] = "55", + }, + [16283] = { + ["coords"] = { + [1] = { 80.4, 58, 139, 345 }, + }, + ["lvl"] = "59", + }, + [16284] = { + ["coords"] = { + [1] = { 80.6, 57.7, 139, 345 }, + [2] = { 46.9, 43.5, 139, 345 }, + }, + ["lvl"] = "57-58", + }, + [16285] = { + ["coords"] = { + [1] = { 80.9, 60.1, 139, 120 }, + [2] = { 25.5, 56.3, 141, 120 }, + [3] = { 55.1, 61.6, 1519, 120 }, + [4] = { 34.3, 68.4, 1537, 120 }, + [5] = { 30.1, 61.7, 1537, 120 }, + [6] = { 39.7, 45.3, 1657, 120 }, + }, + ["lvl"] = "55", + }, + [16286] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [16290] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16297] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16298] = { + ["coords"] = {}, + ["lvl"] = "59-60", + }, + [16299] = { + ["coords"] = {}, + ["lvl"] = "59-60", + }, + [16306] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [16336] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [16338] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [16356] = { + ["coords"] = { + [1] = { 61.3, 45.9, 4, 120 }, + [2] = { 60.2, 45.9, 4, 120 }, + [3] = { 59.6, 45.7, 4, 120 }, + [4] = { 60.7, 45.6, 4, 120 }, + [5] = { 61.8, 45.5, 4, 120 }, + [6] = { 60.1, 45.3, 4, 120 }, + [7] = { 61.1, 45.2, 4, 120 }, + [8] = { 60.6, 45, 4, 120 }, + [9] = { 61.9, 44.9, 4, 120 }, + [10] = { 59.6, 44.9, 4, 120 }, + [11] = { 60.1, 44.6, 4, 120 }, + [12] = { 61, 44.5, 4, 120 }, + [13] = { 61.5, 44.4, 4, 120 }, + [14] = { 60.5, 44.2, 4, 120 }, + [15] = { 62, 44, 4, 120 }, + [16] = { 59.8, 43.9, 4, 120 }, + [17] = { 60.3, 43.6, 4, 120 }, + [18] = { 60.7, 43.6, 4, 120 }, + [19] = { 61.1, 43.5, 4, 120 }, + [20] = { 61.6, 43.5, 4, 120 }, + [21] = { 62.3, 43.3, 4, 120 }, + [22] = { 60.9, 42.9, 4, 120 }, + [23] = { 61.9, 42.9, 4, 120 }, + [24] = { 59.8, 42.9, 4, 120 }, + [25] = { 60.4, 42.7, 4, 120 }, + [26] = { 61.4, 42.7, 4, 120 }, + [27] = { 61.9, 42.2, 4, 120 }, + [28] = { 61, 42.2, 4, 120 }, + [29] = { 47.6, 39.9, 4, 120 }, + [30] = { 46.3, 39.9, 4, 120 }, + [31] = { 46.8, 39.7, 4, 120 }, + [32] = { 48.3, 39.5, 4, 120 }, + [33] = { 46, 39.3, 4, 120 }, + [34] = { 47.3, 39.2, 4, 120 }, + [35] = { 47.8, 39.2, 4, 120 }, + [36] = { 46.9, 38.9, 4, 120 }, + [37] = { 47.3, 38.6, 4, 120 }, + [38] = { 46, 38.5, 4, 120 }, + [39] = { 46.6, 38.4, 4, 120 }, + [40] = { 47.7, 38.4, 4, 120 }, + [41] = { 48.3, 38.2, 4, 120 }, + [42] = { 46.3, 37.9, 4, 120 }, + [43] = { 47.5, 37.8, 4, 120 }, + [44] = { 46.7, 37.7, 4, 120 }, + [45] = { 45.8, 37.7, 4, 120 }, + [46] = { 47.9, 37.5, 4, 120 }, + [47] = { 47.3, 37.3, 4, 120 }, + [48] = { 46.2, 37, 4, 120 }, + [49] = { 46.9, 37, 4, 120 }, + [50] = { 47.6, 36.8, 4, 120 }, + [51] = { 48.2, 36.8, 4, 120 }, + [52] = { 45.8, 36.8, 4, 120 }, + [53] = { 47.2, 36.4, 4, 120 }, + [54] = { 58, 36.3, 4, 120 }, + [55] = { 56.2, 36.3, 4, 120 }, + [56] = { 56.6, 36.3, 4, 120 }, + [57] = { 46.1, 36.2, 4, 120 }, + [58] = { 57.5, 36.2, 4, 120 }, + [59] = { 47.8, 36.1, 4, 120 }, + [60] = { 46.7, 36.1, 4, 120 }, + [61] = { 57, 36.1, 4, 120 }, + [62] = { 55.7, 36, 4, 120 }, + [63] = { 56.4, 35.7, 4, 120 }, + [64] = { 57.7, 35.7, 4, 120 }, + [65] = { 56.8, 35.6, 4, 120 }, + [66] = { 57.2, 35.6, 4, 120 }, + [67] = { 58.2, 35.5, 4, 120 }, + [68] = { 56.1, 35.3, 4, 120 }, + [69] = { 56.5, 35.1, 4, 120 }, + [70] = { 57.6, 34.9, 4, 120 }, + [71] = { 58, 34.9, 4, 120 }, + [72] = { 55.8, 34.8, 4, 120 }, + [73] = { 56.3, 34.5, 4, 120 }, + [74] = { 57.1, 34.4, 4, 120 }, + [75] = { 58.3, 34.3, 4, 120 }, + [76] = { 57.7, 34.2, 4, 120 }, + [77] = { 56.7, 34.2, 4, 120 }, + [78] = { 55.9, 33.9, 4, 120 }, + [79] = { 56.3, 33.8, 4, 120 }, + [80] = { 57.4, 33.7, 4, 120 }, + [81] = { 58, 33.6, 4, 120 }, + [82] = { 56.8, 33.4, 4, 120 }, + [83] = { 56, 33.1, 4, 120 }, + [84] = { 57.2, 33.1, 4, 120 }, + [85] = { 63.1, 32.5, 4, 120 }, + [86] = { 64.1, 32.3, 4, 120 }, + [87] = { 62.7, 32.3, 4, 120 }, + [88] = { 63.6, 32.3, 4, 120 }, + [89] = { 63.2, 31.8, 4, 120 }, + [90] = { 62, 31.7, 4, 120 }, + [91] = { 62.8, 31.6, 4, 120 }, + [92] = { 64, 31.6, 4, 120 }, + [93] = { 63.5, 31.3, 4, 120 }, + [94] = { 63.1, 31.1, 4, 120 }, + [95] = { 64.3, 31, 4, 120 }, + [96] = { 62.6, 31, 4, 120 }, + [97] = { 62.2, 30.7, 4, 120 }, + [98] = { 63.8, 30.6, 4, 120 }, + [99] = { 63.3, 30.6, 4, 120 }, + [100] = { 62.6, 30.3, 4, 120 }, + [101] = { 64.2, 30.1, 4, 120 }, + [102] = { 61.6, 30.1, 4, 120 }, + [103] = { 63, 29.9, 4, 120 }, + [104] = { 63.5, 29.9, 4, 120 }, + [105] = { 62.1, 29.8, 4, 120 }, + [106] = { 62.6, 29.6, 4, 120 }, + [107] = { 50.9, 29.4, 4, 120 }, + [108] = { 52.6, 29.4, 4, 120 }, + [109] = { 52, 29.3, 4, 120 }, + [110] = { 53.2, 29.3, 4, 120 }, + [111] = { 63, 29.2, 4, 120 }, + [112] = { 64.2, 29.2, 4, 120 }, + [113] = { 61.7, 29.2, 4, 120 }, + [114] = { 63.6, 29.1, 4, 120 }, + [115] = { 62.2, 29.1, 4, 120 }, + [116] = { 51.1, 28.7, 4, 120 }, + [117] = { 52.9, 28.7, 4, 120 }, + [118] = { 52.3, 28.7, 4, 120 }, + [119] = { 62.7, 28.7, 4, 120 }, + [120] = { 51.6, 28.6, 4, 120 }, + [121] = { 53.2, 28.1, 4, 120 }, + [122] = { 52.6, 28, 4, 120 }, + [123] = { 51.8, 28, 4, 120 }, + [124] = { 51.4, 28, 4, 120 }, + [125] = { 50.9, 27.6, 4, 120 }, + [126] = { 51.7, 27.5, 4, 120 }, + [127] = { 52.8, 27.4, 4, 120 }, + [128] = { 53.3, 27.3, 4, 120 }, + [129] = { 52.4, 27.3, 4, 120 }, + [130] = { 51.9, 27, 4, 120 }, + [131] = { 51.4, 26.9, 4, 120 }, + [132] = { 52.8, 26.7, 4, 120 }, + [133] = { 50.7, 26.6, 4, 120 }, + [134] = { 52.4, 26.6, 4, 120 }, + [135] = { 52, 26.3, 4, 120 }, + [136] = { 51.4, 26.2, 4, 120 }, + [137] = { 52.9, 26, 4, 120 }, + [138] = { 51.1, 25.9, 4, 120 }, + [139] = { 52.3, 25.9, 4, 120 }, + [140] = { 51.7, 25.8, 4, 120 }, + [141] = { 46.1, 22.2, 4, 120 }, + [142] = { 47.2, 22.1, 4, 120 }, + [143] = { 46.6, 22, 4, 120 }, + [144] = { 45.4, 22, 4, 120 }, + [145] = { 45.9, 21.4, 4, 120 }, + [146] = { 47, 21.3, 4, 120 }, + [147] = { 45, 21.2, 4, 120 }, + [148] = { 46.4, 21, 4, 120 }, + [149] = { 45.5, 20.9, 4, 120 }, + [150] = { 46, 20.8, 4, 120 }, + [151] = { 46.8, 20.6, 4, 120 }, + [152] = { 47.2, 20.5, 4, 120 }, + [153] = { 46.3, 20.4, 4, 120 }, + [154] = { 45.7, 20.3, 4, 120 }, + [155] = { 45.1, 20.2, 4, 120 }, + [156] = { 44.7, 19.8, 4, 120 }, + [157] = { 47, 19.8, 4, 120 }, + [158] = { 45.4, 19.6, 4, 120 }, + [159] = { 45.9, 19.6, 4, 120 }, + [160] = { 46.4, 19.6, 4, 120 }, + [161] = { 47.4, 19.2, 4, 120 }, + [162] = { 45.2, 19, 4, 120 }, + [163] = { 45.7, 19, 4, 120 }, + [164] = { 46.3, 19, 4, 120 }, + [165] = { 46.9, 18.9, 4, 120 }, + [166] = { 45.4, 18.4, 4, 120 }, + [167] = { 46, 18.3, 4, 120 }, + [168] = { 46.7, 18.2, 4, 120 }, + [169] = { 18.6, 67.7, 16, 120 }, + [170] = { 18.1, 67.6, 16, 120 }, + [171] = { 18.3, 67.4, 16, 120 }, + [172] = { 18.8, 67.3, 16, 120 }, + [173] = { 17.8, 67.2, 16, 120 }, + [174] = { 18.6, 67.2, 16, 120 }, + [175] = { 18.1, 67.2, 16, 120 }, + [176] = { 18.4, 67, 16, 120 }, + [177] = { 19.3, 67, 16, 120 }, + [178] = { 19, 66.9, 16, 120 }, + [179] = { 18.7, 66.9, 16, 120 }, + [180] = { 17.8, 66.8, 16, 120 }, + [181] = { 18.2, 66.8, 16, 120 }, + [182] = { 18.9, 66.6, 16, 120 }, + [183] = { 18, 66.6, 16, 120 }, + [184] = { 19.2, 66.6, 16, 120 }, + [185] = { 18.3, 66.5, 16, 120 }, + [186] = { 18.7, 66.4, 16, 120 }, + [187] = { 18.9, 66.2, 16, 120 }, + [188] = { 18.5, 66.2, 16, 120 }, + [189] = { 19.2, 66.1, 16, 120 }, + [190] = { 17.9, 66.1, 16, 120 }, + [191] = { 18.2, 66.1, 16, 120 }, + [192] = { 18.7, 66, 16, 120 }, + [193] = { 19, 65.8, 16, 120 }, + [194] = { 18.4, 65.8, 16, 120 }, + [195] = { 18.2, 65.6, 16, 120 }, + [196] = { 18.7, 65.6, 16, 120 }, + [197] = { 24, 60.5, 16, 120 }, + [198] = { 24.9, 60.3, 16, 120 }, + [199] = { 24.3, 60.3, 16, 120 }, + [200] = { 23.8, 60, 16, 120 }, + [201] = { 25.1, 59.9, 16, 120 }, + [202] = { 23.5, 59.8, 16, 120 }, + [203] = { 24.1, 59.8, 16, 120 }, + [204] = { 24.5, 59.7, 16, 120 }, + [205] = { 24.8, 59.7, 16, 120 }, + [206] = { 23.8, 59.5, 16, 120 }, + [207] = { 24.3, 59.4, 16, 120 }, + [208] = { 45.3, 59.4, 16, 120 }, + [209] = { 24.6, 59.4, 16, 120 }, + [210] = { 25.1, 59.4, 16, 120 }, + [211] = { 45.1, 59.4, 16, 120 }, + [212] = { 24.1, 59.3, 16, 120 }, + [213] = { 23.5, 59.2, 16, 120 }, + [214] = { 24.8, 59.2, 16, 120 }, + [215] = { 25.4, 59.2, 16, 120 }, + [216] = { 24.3, 59.1, 16, 120 }, + [217] = { 44.9, 59.1, 16, 120 }, + [218] = { 45.5, 59.1, 16, 120 }, + [219] = { 45.3, 59.1, 16, 120 }, + [220] = { 24.5, 59.1, 16, 120 }, + [221] = { 45.1, 58.9, 16, 120 }, + [222] = { 25.1, 58.9, 16, 120 }, + [223] = { 44.7, 58.9, 16, 120 }, + [224] = { 45.7, 58.8, 16, 120 }, + [225] = { 24, 58.8, 16, 120 }, + [226] = { 45.5, 58.7, 16, 120 }, + [227] = { 24.4, 58.7, 16, 120 }, + [228] = { 45.3, 58.6, 16, 120 }, + [229] = { 24.8, 58.6, 16, 120 }, + [230] = { 44.5, 58.5, 16, 120 }, + [231] = { 25.6, 58.5, 16, 120 }, + [232] = { 44.8, 58.5, 16, 120 }, + [233] = { 25.1, 58.4, 16, 120 }, + [234] = { 45.4, 58.4, 16, 120 }, + [235] = { 45.6, 58.4, 16, 120 }, + [236] = { 45.9, 58.4, 16, 120 }, + [237] = { 45, 58.2, 16, 120 }, + [238] = { 44.6, 58.2, 16, 120 }, + [239] = { 45.3, 58.2, 16, 120 }, + [240] = { 24.2, 58.2, 16, 120 }, + [241] = { 24.5, 58.1, 16, 120 }, + [242] = { 45.5, 58.1, 16, 120 }, + [243] = { 45.7, 58.1, 16, 120 }, + [244] = { 24.9, 58, 16, 120 }, + [245] = { 45.1, 57.9, 16, 120 }, + [246] = { 44.9, 57.8, 16, 120 }, + [247] = { 44.6, 57.8, 16, 120 }, + [248] = { 45.3, 57.8, 16, 120 }, + [249] = { 45.5, 57.7, 16, 120 }, + [250] = { 44.9, 57.5, 16, 120 }, + [251] = { 45.1, 57.5, 16, 120 }, + [252] = { 45.3, 57.4, 16, 120 }, + [253] = { 16.9, 55.2, 16, 120 }, + [254] = { 17.7, 55, 16, 120 }, + [255] = { 17.4, 54.9, 16, 120 }, + [256] = { 48, 54.8, 16, 120 }, + [257] = { 16.8, 54.8, 16, 120 }, + [258] = { 48.4, 54.7, 16, 120 }, + [259] = { 47.5, 54.7, 16, 120 }, + [260] = { 47.8, 54.7, 16, 120 }, + [261] = { 48.3, 54.6, 16, 120 }, + [262] = { 17.1, 54.6, 16, 120 }, + [263] = { 17.9, 54.5, 16, 120 }, + [264] = { 17.6, 54.5, 16, 120 }, + [265] = { 48.1, 54.5, 16, 120 }, + [266] = { 17.3, 54.5, 16, 120 }, + [267] = { 48.4, 54.4, 16, 120 }, + [268] = { 48.6, 54.4, 16, 120 }, + [269] = { 47.6, 54.3, 16, 120 }, + [270] = { 16.9, 54.3, 16, 120 }, + [271] = { 47.9, 54.2, 16, 120 }, + [272] = { 16.7, 54.2, 16, 120 }, + [273] = { 47.3, 54.2, 16, 120 }, + [274] = { 17.1, 54.2, 16, 120 }, + [275] = { 48.2, 54.1, 16, 120 }, + [276] = { 17.8, 54.1, 16, 120 }, + [277] = { 18.1, 54.1, 16, 120 }, + [278] = { 17.4, 54.1, 16, 120 }, + [279] = { 48.5, 54.1, 16, 120 }, + [280] = { 47.6, 54, 16, 120 }, + [281] = { 16.9, 54, 16, 120 }, + [282] = { 48.8, 53.9, 16, 120 }, + [283] = { 16.6, 53.9, 16, 120 }, + [284] = { 17.6, 53.8, 16, 120 }, + [285] = { 48.4, 53.8, 16, 120 }, + [286] = { 17.1, 53.8, 16, 120 }, + [287] = { 47.3, 53.8, 16, 120 }, + [288] = { 17.9, 53.8, 16, 120 }, + [289] = { 17.4, 53.7, 16, 120 }, + [290] = { 47.8, 53.7, 16, 120 }, + [291] = { 47.6, 53.7, 16, 120 }, + [292] = { 16.8, 53.7, 16, 120 }, + [293] = { 48.6, 53.6, 16, 120 }, + [294] = { 17.7, 53.5, 16, 120 }, + [295] = { 17.2, 53.4, 16, 120 }, + [296] = { 48, 53.4, 16, 120 }, + [297] = { 47.5, 53.4, 16, 120 }, + [298] = { 47.7, 53.3, 16, 120 }, + [299] = { 16.8, 53.3, 16, 120 }, + [300] = { 17, 53.3, 16, 120 }, + [301] = { 17.4, 53.2, 16, 120 }, + [302] = { 48.4, 53.2, 16, 120 }, + [303] = { 48.7, 53.2, 16, 120 }, + [304] = { 17.7, 53.2, 16, 120 }, + [305] = { 48.2, 53.1, 16, 120 }, + [306] = { 47.8, 52.9, 16, 120 }, + [307] = { 17.2, 52.9, 16, 120 }, + [308] = { 48, 52.9, 16, 120 }, + [309] = { 44.6, 50.6, 16, 120 }, + [310] = { 44.3, 50.6, 16, 120 }, + [311] = { 44.8, 50.4, 16, 120 }, + [312] = { 44.6, 50.3, 16, 120 }, + [313] = { 44.4, 50.1, 16, 120 }, + [314] = { 44.1, 50.1, 16, 120 }, + [315] = { 44.9, 50, 16, 120 }, + [316] = { 45.1, 50, 16, 120 }, + [317] = { 44.7, 49.9, 16, 120 }, + [318] = { 44.3, 49.8, 16, 120 }, + [319] = { 44, 49.7, 16, 120 }, + [320] = { 45.1, 49.7, 16, 120 }, + [321] = { 44.8, 49.6, 16, 120 }, + [322] = { 45.3, 49.6, 16, 120 }, + [323] = { 44.1, 49.4, 16, 120 }, + [324] = { 43.8, 49.4, 16, 120 }, + [325] = { 44.7, 49.3, 16, 120 }, + [326] = { 45.1, 49.3, 16, 120 }, + [327] = { 44.4, 49.2, 16, 120 }, + [328] = { 44.9, 49.2, 16, 120 }, + [329] = { 44.1, 49.1, 16, 120 }, + [330] = { 44.5, 48.9, 16, 120 }, + [331] = { 44.7, 48.9, 16, 120 }, + [332] = { 44.3, 48.9, 16, 120 }, + [333] = { 44.9, 48.8, 16, 120 }, + [334] = { 44.1, 48.7, 16, 120 }, + [335] = { 44.5, 48.6, 16, 120 }, + [336] = { 44.8, 48.5, 16, 120 }, + [337] = { 80.1, 62.6, 28, 120 }, + [338] = { 79.8, 62.6, 28, 120 }, + [339] = { 80.4, 62.4, 28, 120 }, + [340] = { 80.6, 62.1, 28, 120 }, + [341] = { 80.8, 62.1, 28, 120 }, + [342] = { 80.3, 62, 28, 120 }, + [343] = { 80, 61.9, 28, 120 }, + [344] = { 80.7, 61.7, 28, 120 }, + [345] = { 80.9, 61.6, 28, 120 }, + [346] = { 81.3, 61.3, 28, 120 }, + [347] = { 80.7, 61.3, 28, 120 }, + [348] = { 79.9, 61.2, 28, 120 }, + [349] = { 80.5, 61.1, 28, 120 }, + [350] = { 80.2, 61, 28, 120 }, + [351] = { 80.7, 60.9, 28, 120 }, + [352] = { 80.4, 60.7, 28, 120 }, + [353] = { 80.1, 60.7, 28, 120 }, + [354] = { 81.1, 60.7, 28, 120 }, + [355] = { 80.7, 60.4, 28, 120 }, + [356] = { 80.2, 60.3, 28, 120 }, + [357] = { 75.3, 56.2, 28, 120 }, + [358] = { 75.7, 56.2, 28, 120 }, + [359] = { 76.1, 55.9, 28, 120 }, + [360] = { 76.4, 55.9, 28, 120 }, + [361] = { 75.6, 55.7, 28, 120 }, + [362] = { 75.9, 55.5, 28, 120 }, + [363] = { 76.3, 55.5, 28, 120 }, + [364] = { 74.7, 55.2, 28, 120 }, + [365] = { 75.4, 55.2, 28, 120 }, + [366] = { 76.1, 55.1, 28, 120 }, + [367] = { 75.1, 55, 28, 120 }, + [368] = { 76.4, 55, 28, 120 }, + [369] = { 75.7, 55, 28, 120 }, + [370] = { 76.7, 54.8, 28, 120 }, + [371] = { 76.2, 54.6, 28, 120 }, + [372] = { 77, 54.4, 28, 120 }, + [373] = { 76.5, 54.4, 28, 120 }, + [374] = { 75.1, 54.3, 28, 120 }, + [375] = { 76.7, 54.2, 28, 120 }, + [376] = { 74.6, 54, 28, 120 }, + [377] = { 76.4, 53.8, 28, 120 }, + [378] = { 75.2, 53.8, 28, 120 }, + [379] = { 75.8, 53.8, 28, 120 }, + [380] = { 74.8, 53.5, 28, 120 }, + [381] = { 75.4, 53.4, 28, 120 }, + [382] = { 75.9, 53.4, 28, 120 }, + [383] = { 76.3, 53.2, 28, 120 }, + [384] = { 75.7, 53, 28, 120 }, + [385] = { 33.6, 71.9, 46, 120 }, + [386] = { 33.1, 71.7, 46, 120 }, + [387] = { 32.9, 71.3, 46, 120 }, + [388] = { 33.6, 71.2, 46, 120 }, + [389] = { 24.4, 71, 46, 120 }, + [390] = { 33.3, 71, 46, 120 }, + [391] = { 34.2, 71, 46, 120 }, + [392] = { 32.7, 70.8, 46, 120 }, + [393] = { 33.9, 70.7, 46, 120 }, + [394] = { 23.9, 70.7, 46, 120 }, + [395] = { 23.4, 70.6, 46, 120 }, + [396] = { 33.1, 70.6, 46, 120 }, + [397] = { 33.6, 70.5, 46, 120 }, + [398] = { 25.4, 70.5, 46, 120 }, + [399] = { 34.3, 70.4, 46, 120 }, + [400] = { 24.7, 70.3, 46, 120 }, + [401] = { 33.8, 70.2, 46, 120 }, + [402] = { 24.2, 70.2, 46, 120 }, + [403] = { 32.9, 70.1, 46, 120 }, + [404] = { 23.2, 70, 46, 120 }, + [405] = { 32.4, 70, 46, 120 }, + [406] = { 23.7, 70, 46, 120 }, + [407] = { 34.1, 69.8, 46, 120 }, + [408] = { 33.7, 69.8, 46, 120 }, + [409] = { 33.2, 69.6, 46, 120 }, + [410] = { 24.5, 69.5, 46, 120 }, + [411] = { 32.8, 69.5, 46, 120 }, + [412] = { 24.1, 69.5, 46, 120 }, + [413] = { 32.4, 69.4, 46, 120 }, + [414] = { 23.7, 69.4, 46, 120 }, + [415] = { 34.4, 69.3, 46, 120 }, + [416] = { 33.6, 69.3, 46, 120 }, + [417] = { 23, 69.3, 46, 120 }, + [418] = { 34, 69.1, 46, 120 }, + [419] = { 23.3, 69.1, 46, 120 }, + [420] = { 33.3, 68.9, 46, 120 }, + [421] = { 24.7, 68.9, 46, 120 }, + [422] = { 24.2, 68.8, 46, 120 }, + [423] = { 34.9, 68.8, 46, 120 }, + [424] = { 32.8, 68.7, 46, 120 }, + [425] = { 23, 68.6, 46, 120 }, + [426] = { 22.6, 68.6, 46, 120 }, + [427] = { 33.8, 68.5, 46, 120 }, + [428] = { 23.4, 68.4, 46, 120 }, + [429] = { 24.3, 68.2, 46, 120 }, + [430] = { 33.3, 68.1, 46, 120 }, + [431] = { 24.8, 68, 46, 120 }, + [432] = { 34.4, 68, 46, 120 }, + [433] = { 23, 67.9, 46, 120 }, + [434] = { 23.9, 67.9, 46, 120 }, + [435] = { 22.5, 67.8, 46, 120 }, + [436] = { 23.5, 67.6, 46, 120 }, + [437] = { 24.3, 67.5, 46, 120 }, + [438] = { 24.7, 67.4, 46, 120 }, + [439] = { 23.8, 67.1, 46, 120 }, + [440] = { 24.2, 66.7, 46, 120 }, + [441] = { 25.6, 53.7, 46, 120 }, + [442] = { 24.9, 53.2, 46, 120 }, + [443] = { 24.8, 52.6, 46, 120 }, + [444] = { 25.3, 52.6, 46, 120 }, + [445] = { 24.3, 52.4, 46, 120 }, + [446] = { 26.3, 52, 46, 120 }, + [447] = { 23.7, 52, 46, 120 }, + [448] = { 25.7, 51.9, 46, 120 }, + [449] = { 24.9, 51.9, 46, 120 }, + [450] = { 23.2, 51.4, 46, 120 }, + [451] = { 23.6, 51.4, 46, 120 }, + [452] = { 25.4, 51.3, 46, 120 }, + [453] = { 24.9, 50.8, 46, 120 }, + [454] = { 74.4, 50.8, 46, 120 }, + [455] = { 74, 50.7, 46, 120 }, + [456] = { 24.5, 50.7, 46, 120 }, + [457] = { 73.4, 50.6, 46, 120 }, + [458] = { 25.9, 50.6, 46, 120 }, + [459] = { 73, 50.6, 46, 120 }, + [460] = { 24.1, 50.6, 46, 120 }, + [461] = { 23.3, 50.5, 46, 120 }, + [462] = { 74.6, 50.2, 46, 120 }, + [463] = { 74.2, 50.1, 46, 120 }, + [464] = { 73.7, 50.1, 46, 120 }, + [465] = { 73.2, 50, 46, 120 }, + [466] = { 23.7, 49.7, 46, 120 }, + [467] = { 24.5, 49.7, 46, 120 }, + [468] = { 25.5, 49.5, 46, 120 }, + [469] = { 74.3, 49.5, 46, 120 }, + [470] = { 73.9, 49.4, 46, 120 }, + [471] = { 73.5, 49.4, 46, 120 }, + [472] = { 74.7, 49.1, 46, 120 }, + [473] = { 73.2, 49.1, 46, 120 }, + [474] = { 24.9, 48.9, 46, 120 }, + [475] = { 75.1, 48.8, 46, 120 }, + [476] = { 74.4, 48.7, 46, 120 }, + [477] = { 23.6, 48.7, 46, 120 }, + [478] = { 73.6, 48.7, 46, 120 }, + [479] = { 72.9, 48.7, 46, 120 }, + [480] = { 24.4, 48.5, 46, 120 }, + [481] = { 74.7, 48.3, 46, 120 }, + [482] = { 73.2, 48.3, 46, 120 }, + [483] = { 74.4, 48, 46, 120 }, + [484] = { 73.6, 47.9, 46, 120 }, + [485] = { 74, 47.9, 46, 120 }, + [486] = { 73, 47.8, 46, 120 }, + [487] = { 74.7, 47.5, 46, 120 }, + [488] = { 74.2, 47.3, 46, 120 }, + [489] = { 73.2, 47.3, 46, 120 }, + [490] = { 73.7, 47.2, 46, 120 }, + [491] = { 74, 46.7, 46, 120 }, + [492] = { 67.5, 37.7, 46, 120 }, + [493] = { 67.1, 37.6, 46, 120 }, + [494] = { 67.9, 37.4, 46, 120 }, + [495] = { 66.4, 37.1, 46, 120 }, + [496] = { 67.5, 37.1, 46, 120 }, + [497] = { 66.7, 37, 46, 120 }, + [498] = { 68.4, 37, 46, 120 }, + [499] = { 67, 36.8, 46, 120 }, + [500] = { 67.8, 36.7, 46, 120 }, + [501] = { 66.4, 36.6, 46, 120 }, + [502] = { 66, 36.5, 46, 120 }, + [503] = { 67.4, 36.5, 46, 120 }, + [504] = { 66.8, 36.4, 46, 120 }, + [505] = { 68.2, 36.3, 46, 120 }, + [506] = { 67.7, 36.1, 46, 120 }, + [507] = { 66, 35.9, 46, 120 }, + [508] = { 66.5, 35.9, 46, 120 }, + [509] = { 68.3, 35.6, 46, 120 }, + [510] = { 67.4, 35.6, 46, 120 }, + [511] = { 67.8, 35.5, 46, 120 }, + [512] = { 66.8, 35.4, 46, 120 }, + [513] = { 65.9, 35.3, 46, 120 }, + [514] = { 66.4, 35.3, 46, 120 }, + [515] = { 67.1, 35.1, 46, 120 }, + [516] = { 67.4, 35, 46, 120 }, + [517] = { 67.9, 35, 46, 120 }, + [518] = { 66.7, 34.8, 46, 120 }, + [519] = { 67.1, 34.4, 46, 120 }, + [520] = { 80, 31.2, 46, 120 }, + [521] = { 79, 31.2, 46, 120 }, + [522] = { 79.6, 31.1, 46, 120 }, + [523] = { 78.5, 30.6, 46, 120 }, + [524] = { 80, 30.5, 46, 120 }, + [525] = { 79, 30.5, 46, 120 }, + [526] = { 79.5, 30.4, 46, 120 }, + [527] = { 80.8, 30.1, 46, 120 }, + [528] = { 80.3, 30, 46, 120 }, + [529] = { 79.8, 29.9, 46, 120 }, + [530] = { 78.6, 29.9, 46, 120 }, + [531] = { 79.1, 29.8, 46, 120 }, + [532] = { 81.2, 29.6, 46, 120 }, + [533] = { 80.1, 29.5, 46, 120 }, + [534] = { 80.7, 29.5, 46, 120 }, + [535] = { 78.8, 29.2, 46, 120 }, + [536] = { 78.2, 29.1, 46, 120 }, + [537] = { 79.9, 28.9, 46, 120 }, + [538] = { 80.4, 28.9, 46, 120 }, + [539] = { 80.9, 28.8, 46, 120 }, + [540] = { 79.2, 28.7, 46, 120 }, + [541] = { 79.6, 28.5, 46, 120 }, + [542] = { 78.7, 28.5, 46, 120 }, + [543] = { 80.5, 28.3, 46, 120 }, + [544] = { 80.1, 28.3, 46, 120 }, + [545] = { 79.1, 28, 46, 120 }, + [546] = { 79.6, 27.8, 46, 120 }, + [547] = { 78.7, 27.8, 46, 120 }, + [548] = { 21.8, 86.3, 139, 120 }, + [549] = { 21.5, 86.3, 139, 120 }, + [550] = { 22.1, 86.1, 139, 120 }, + [551] = { 22.3, 85.8, 139, 120 }, + [552] = { 22.5, 85.7, 139, 120 }, + [553] = { 22, 85.7, 139, 120 }, + [554] = { 21.7, 85.6, 139, 120 }, + [555] = { 22.4, 85.4, 139, 120 }, + [556] = { 22.7, 85.2, 139, 120 }, + [557] = { 23.1, 84.9, 139, 120 }, + [558] = { 22.5, 84.8, 139, 120 }, + [559] = { 21.6, 84.8, 139, 120 }, + [560] = { 22.2, 84.6, 139, 120 }, + [561] = { 21.9, 84.6, 139, 120 }, + [562] = { 22.4, 84.4, 139, 120 }, + [563] = { 22.1, 84.2, 139, 120 }, + [564] = { 21.7, 84.2, 139, 120 }, + [565] = { 22.8, 84.2, 139, 120 }, + [566] = { 22.4, 83.9, 139, 120 }, + [567] = { 21.9, 83.7, 139, 120 }, + [568] = { 16.5, 79.3, 139, 120 }, + [569] = { 16.9, 79.2, 139, 120 }, + [570] = { 17.3, 78.9, 139, 120 }, + [571] = { 17.7, 78.9, 139, 120 }, + [572] = { 16.7, 78.6, 139, 120 }, + [573] = { 17.1, 78.4, 139, 120 }, + [574] = { 17.5, 78.4, 139, 120 }, + [575] = { 15.8, 78.1, 139, 120 }, + [576] = { 16.6, 78.1, 139, 120 }, + [577] = { 17.3, 77.9, 139, 120 }, + [578] = { 16.2, 77.9, 139, 120 }, + [579] = { 17.7, 77.9, 139, 120 }, + [580] = { 16.9, 77.8, 139, 120 }, + [581] = { 18, 77.6, 139, 120 }, + [582] = { 17.4, 77.5, 139, 120 }, + [583] = { 18.3, 77.2, 139, 120 }, + [584] = { 17.7, 77.2, 139, 120 }, + [585] = { 16.2, 77.1, 139, 120 }, + [586] = { 18, 76.9, 139, 120 }, + [587] = { 15.7, 76.8, 139, 120 }, + [588] = { 17.7, 76.6, 139, 120 }, + [589] = { 16.3, 76.5, 139, 120 }, + [590] = { 16.9, 76.5, 139, 120 }, + [591] = { 15.9, 76.2, 139, 120 }, + [592] = { 16.6, 76.1, 139, 120 }, + [593] = { 17.1, 76.1, 139, 120 }, + [594] = { 17.6, 75.9, 139, 120 }, + [595] = { 16.8, 75.7, 139, 120 }, + [596] = { 66.9, 74.4, 139, 120 }, + [597] = { 66.8, 73.6, 139, 120 }, + [598] = { 67.7, 73.5, 139, 120 }, + [599] = { 66.4, 73.3, 139, 120 }, + [600] = { 67.7, 73.2, 139, 120 }, + [601] = { 66.7, 73, 139, 120 }, + [602] = { 67.6, 73, 139, 120 }, + [603] = { 75.4, 72.9, 139, 120 }, + [604] = { 65.7, 72.8, 139, 120 }, + [605] = { 66.4, 72.8, 139, 120 }, + [606] = { 23.4, 72.7, 139, 120 }, + [607] = { 67.5, 72.7, 139, 120 }, + [608] = { 76.5, 72.6, 139, 120 }, + [609] = { 24, 72.6, 139, 120 }, + [610] = { 66.9, 72.5, 139, 120 }, + [611] = { 67.2, 72.5, 139, 120 }, + [612] = { 67.8, 72.5, 139, 120 }, + [613] = { 24.4, 72.4, 139, 120 }, + [614] = { 66, 72.4, 139, 120 }, + [615] = { 23.8, 72.3, 139, 120 }, + [616] = { 75.5, 72.3, 139, 120 }, + [617] = { 23.4, 72.3, 139, 120 }, + [618] = { 23.1, 72.2, 139, 120 }, + [619] = { 75.9, 72.2, 139, 120 }, + [620] = { 76.2, 72.2, 139, 120 }, + [621] = { 77.1, 72.1, 139, 120 }, + [622] = { 65.7, 72.1, 139, 120 }, + [623] = { 76.7, 72.1, 139, 120 }, + [624] = { 75.1, 72.1, 139, 120 }, + [625] = { 67.1, 72, 139, 120 }, + [626] = { 23.9, 72, 139, 120 }, + [627] = { 67.5, 72, 139, 120 }, + [628] = { 23.6, 71.9, 139, 120 }, + [629] = { 66.2, 71.9, 139, 120 }, + [630] = { 24.1, 71.8, 139, 120 }, + [631] = { 75.7, 71.8, 139, 120 }, + [632] = { 23.2, 71.8, 139, 120 }, + [633] = { 76, 71.8, 139, 120 }, + [634] = { 76.4, 71.8, 139, 120 }, + [635] = { 22.8, 71.8, 139, 120 }, + [636] = { 24.4, 71.7, 139, 120 }, + [637] = { 75.4, 71.6, 139, 120 }, + [638] = { 77.4, 71.6, 139, 120 }, + [639] = { 66.7, 71.6, 139, 120 }, + [640] = { 76.7, 71.6, 139, 120 }, + [641] = { 24, 71.6, 139, 120 }, + [642] = { 23.1, 71.5, 139, 120 }, + [643] = { 75.2, 71.4, 139, 120 }, + [644] = { 77, 71.4, 139, 120 }, + [645] = { 24.3, 71.4, 139, 120 }, + [646] = { 75.7, 71.3, 139, 120 }, + [647] = { 66.4, 71.3, 139, 120 }, + [648] = { 76.4, 71.3, 139, 120 }, + [649] = { 23.3, 71.2, 139, 120 }, + [650] = { 66, 71.2, 139, 120 }, + [651] = { 24.1, 71.1, 139, 120 }, + [652] = { 75.4, 71.1, 139, 120 }, + [653] = { 65.4, 71, 139, 120 }, + [654] = { 76.7, 71, 139, 120 }, + [655] = { 24.4, 70.9, 139, 120 }, + [656] = { 75.7, 70.9, 139, 120 }, + [657] = { 23.8, 70.8, 139, 120 }, + [658] = { 75.2, 70.8, 139, 120 }, + [659] = { 23.5, 70.8, 139, 120 }, + [660] = { 77.1, 70.8, 139, 120 }, + [661] = { 76.4, 70.8, 139, 120 }, + [662] = { 23.2, 70.8, 139, 120 }, + [663] = { 24.1, 70.7, 139, 120 }, + [664] = { 66.3, 70.6, 139, 120 }, + [665] = { 75.4, 70.6, 139, 120 }, + [666] = { 76.7, 70.5, 139, 120 }, + [667] = { 24.4, 70.4, 139, 120 }, + [668] = { 23.8, 70.4, 139, 120 }, + [669] = { 67.6, 70.4, 139, 120 }, + [670] = { 65.8, 70.3, 139, 120 }, + [671] = { 76.3, 70.3, 139, 120 }, + [672] = { 23.4, 70.2, 139, 120 }, + [673] = { 22.9, 70.2, 139, 120 }, + [674] = { 66.2, 70.2, 139, 120 }, + [675] = { 24.1, 70, 139, 120 }, + [676] = { 66.7, 69.8, 139, 120 }, + [677] = { 23.6, 69.8, 139, 120 }, + [678] = { 66.2, 69.8, 139, 120 }, + [679] = { 70.5, 58.6, 139, 120 }, + [680] = { 70, 58.5, 139, 120 }, + [681] = { 71.1, 58.3, 139, 120 }, + [682] = { 72.5, 58.2, 139, 120 }, + [683] = { 70.4, 58.1, 139, 120 }, + [684] = { 70.8, 58, 139, 120 }, + [685] = { 71.4, 57.9, 139, 120 }, + [686] = { 69.9, 57.8, 139, 120 }, + [687] = { 70.6, 57.4, 139, 120 }, + [688] = { 72.6, 57.3, 139, 120 }, + [689] = { 71.6, 57.2, 139, 120 }, + [690] = { 72, 57.1, 139, 120 }, + [691] = { 71.1, 57, 139, 120 }, + [692] = { 70.7, 56.8, 139, 120 }, + [693] = { 70.3, 56.8, 139, 120 }, + [694] = { 71.5, 56.6, 139, 120 }, + [695] = { 71.8, 56.5, 139, 120 }, + [696] = { 71, 56.5, 139, 120 }, + [697] = { 72.3, 56.4, 139, 120 }, + [698] = { 70.5, 56.2, 139, 120 }, + [699] = { 70, 56.2, 139, 120 }, + [700] = { 71.4, 56, 139, 120 }, + [701] = { 71.8, 55.8, 139, 120 }, + [702] = { 70.7, 55.7, 139, 120 }, + [703] = { 70.3, 55.5, 139, 120 }, + [704] = { 34.6, 65.2, 440, 120 }, + [705] = { 34.9, 65, 440, 120 }, + [706] = { 34.7, 65, 440, 120 }, + [707] = { 34.4, 65, 440, 120 }, + [708] = { 34.5, 64.9, 440, 120 }, + [709] = { 34.2, 64.9, 440, 120 }, + [710] = { 34.4, 64.8, 440, 120 }, + [711] = { 34.9, 64.8, 440, 120 }, + [712] = { 34.7, 64.7, 440, 120 }, + [713] = { 34.5, 64.7, 440, 120 }, + [714] = { 34, 64.6, 440, 120 }, + [715] = { 35.1, 64.6, 440, 120 }, + [716] = { 34.2, 64.6, 440, 120 }, + [717] = { 34.4, 64.5, 440, 120 }, + [718] = { 34.9, 64.5, 440, 120 }, + [719] = { 34.7, 64.5, 440, 120 }, + [720] = { 34.8, 64.3, 440, 120 }, + [721] = { 35, 64.3, 440, 120 }, + [722] = { 34.2, 64.3, 440, 120 }, + [723] = { 34, 64.3, 440, 120 }, + [724] = { 34.9, 64.1, 440, 120 }, + [725] = { 34.7, 64.1, 440, 120 }, + [726] = { 34.3, 64.1, 440, 120 }, + [727] = { 34.1, 64, 440, 120 }, + [728] = { 34.5, 63.9, 440, 120 }, + [729] = { 34.7, 63.8, 440, 120 }, + [730] = { 34.3, 63.7, 440, 120 }, + [731] = { 34.5, 63.5, 440, 120 }, + [732] = { 29.9, 58.6, 440, 120 }, + [733] = { 30.3, 58.6, 440, 120 }, + [734] = { 36.1, 58.6, 440, 120 }, + [735] = { 35.9, 58.6, 440, 120 }, + [736] = { 30, 58.5, 440, 120 }, + [737] = { 30.5, 58.5, 440, 120 }, + [738] = { 35.7, 58.4, 440, 120 }, + [739] = { 29.9, 58.3, 440, 120 }, + [740] = { 30.3, 58.3, 440, 120 }, + [741] = { 36.3, 58.3, 440, 120 }, + [742] = { 30.1, 58.3, 440, 120 }, + [743] = { 36.1, 58.3, 440, 120 }, + [744] = { 29.7, 58.2, 440, 120 }, + [745] = { 30.5, 58.2, 440, 120 }, + [746] = { 35.9, 58.2, 440, 120 }, + [747] = { 35.6, 58.2, 440, 120 }, + [748] = { 30, 58.1, 440, 120 }, + [749] = { 30.2, 58.1, 440, 120 }, + [750] = { 30.4, 58.1, 440, 120 }, + [751] = { 29.6, 58, 440, 120 }, + [752] = { 29.8, 58, 440, 120 }, + [753] = { 36.3, 58, 440, 120 }, + [754] = { 35.8, 58, 440, 120 }, + [755] = { 36.6, 58, 440, 120 }, + [756] = { 36.1, 57.9, 440, 120 }, + [757] = { 30.5, 57.9, 440, 120 }, + [758] = { 35.7, 57.9, 440, 120 }, + [759] = { 29.9, 57.8, 440, 120 }, + [760] = { 35.4, 57.8, 440, 120 }, + [761] = { 30.3, 57.8, 440, 120 }, + [762] = { 30.7, 57.8, 440, 120 }, + [763] = { 36.2, 57.7, 440, 120 }, + [764] = { 29.7, 57.7, 440, 120 }, + [765] = { 36.5, 57.7, 440, 120 }, + [766] = { 30.5, 57.6, 440, 120 }, + [767] = { 35.8, 57.6, 440, 120 }, + [768] = { 36.1, 57.6, 440, 120 }, + [769] = { 29.9, 57.5, 440, 120 }, + [770] = { 35.6, 57.5, 440, 120 }, + [771] = { 30.3, 57.5, 440, 120 }, + [772] = { 30.1, 57.5, 440, 120 }, + [773] = { 36.5, 57.4, 440, 120 }, + [774] = { 29.7, 57.4, 440, 120 }, + [775] = { 36.3, 57.4, 440, 120 }, + [776] = { 36, 57.4, 440, 120 }, + [777] = { 30.5, 57.3, 440, 120 }, + [778] = { 30, 57.3, 440, 120 }, + [779] = { 52.4, 57.3, 440, 120 }, + [780] = { 30.3, 57.3, 440, 120 }, + [781] = { 35.5, 57.3, 440, 120 }, + [782] = { 35.8, 57.2, 440, 120 }, + [783] = { 36.2, 57.1, 440, 120 }, + [784] = { 52.2, 57.1, 440, 120 }, + [785] = { 36.4, 57.1, 440, 120 }, + [786] = { 52.3, 57, 440, 120 }, + [787] = { 52.5, 57, 440, 120 }, + [788] = { 52, 57, 440, 120 }, + [789] = { 30.2, 57, 440, 120 }, + [790] = { 36, 56.9, 440, 120 }, + [791] = { 35.8, 56.9, 440, 120 }, + [792] = { 52.2, 56.8, 440, 120 }, + [793] = { 36.2, 56.8, 440, 120 }, + [794] = { 51.8, 56.8, 440, 120 }, + [795] = { 52.4, 56.7, 440, 120 }, + [796] = { 52.6, 56.7, 440, 120 }, + [797] = { 52, 56.7, 440, 120 }, + [798] = { 52.8, 56.6, 440, 120 }, + [799] = { 52.5, 56.5, 440, 120 }, + [800] = { 52.7, 56.4, 440, 120 }, + [801] = { 51.9, 56.4, 440, 120 }, + [802] = { 52.1, 56.4, 440, 120 }, + [803] = { 51.7, 56.4, 440, 120 }, + [804] = { 52.9, 56.3, 440, 120 }, + [805] = { 52.4, 56.3, 440, 120 }, + [806] = { 52.6, 56.2, 440, 120 }, + [807] = { 52.2, 56.1, 440, 120 }, + [808] = { 52, 56.1, 440, 120 }, + [809] = { 51.8, 56.1, 440, 120 }, + [810] = { 52.8, 56, 440, 120 }, + [811] = { 52.4, 55.9, 440, 120 }, + [812] = { 52.6, 55.8, 440, 120 }, + [813] = { 52, 55.8, 440, 120 }, + [814] = { 52.2, 55.7, 440, 120 }, + [815] = { 52.4, 55.6, 440, 120 }, + [816] = { 58, 54.3, 440, 120 }, + [817] = { 57.8, 54.3, 440, 120 }, + [818] = { 57.4, 54.1, 440, 120 }, + [819] = { 57.6, 54, 440, 120 }, + [820] = { 58, 54, 440, 120 }, + [821] = { 57.8, 53.9, 440, 120 }, + [822] = { 57.2, 53.8, 440, 120 }, + [823] = { 57.4, 53.8, 440, 120 }, + [824] = { 57.6, 53.7, 440, 120 }, + [825] = { 58.1, 53.7, 440, 120 }, + [826] = { 57.9, 53.6, 440, 120 }, + [827] = { 57.2, 53.5, 440, 120 }, + [828] = { 57.4, 53.5, 440, 120 }, + [829] = { 58, 53.4, 440, 120 }, + [830] = { 58.3, 53.4, 440, 120 }, + [831] = { 57.6, 53.3, 440, 120 }, + [832] = { 57.4, 53.2, 440, 120 }, + [833] = { 57, 53.2, 440, 120 }, + [834] = { 57.9, 53.2, 440, 120 }, + [835] = { 58.1, 53.1, 440, 120 }, + [836] = { 57.7, 53, 440, 120 }, + [837] = { 57.5, 53, 440, 120 }, + [838] = { 57.2, 52.9, 440, 120 }, + [839] = { 57.9, 52.9, 440, 120 }, + [840] = { 58.1, 52.8, 440, 120 }, + [841] = { 57.6, 52.7, 440, 120 }, + [842] = { 57.4, 52.6, 440, 120 }, + [843] = { 57.8, 52.5, 440, 120 }, + [844] = { 52, 50.6, 440, 120 }, + [845] = { 51.6, 50.4, 440, 120 }, + [846] = { 52.4, 50.4, 440, 120 }, + [847] = { 51.8, 50.4, 440, 120 }, + [848] = { 52.2, 50.3, 440, 120 }, + [849] = { 52, 50.3, 440, 120 }, + [850] = { 51.7, 50.2, 440, 120 }, + [851] = { 51.8, 50.1, 440, 120 }, + [852] = { 52.3, 50.1, 440, 120 }, + [853] = { 52.1, 50, 440, 120 }, + [854] = { 51.7, 49.9, 440, 120 }, + [855] = { 51.5, 49.9, 440, 120 }, + [856] = { 52.2, 49.8, 440, 120 }, + [857] = { 52.5, 49.8, 440, 120 }, + [858] = { 51.8, 49.7, 440, 120 }, + [859] = { 52.1, 49.6, 440, 120 }, + [860] = { 51.6, 49.6, 440, 120 }, + [861] = { 51.4, 49.6, 440, 120 }, + [862] = { 52.3, 49.5, 440, 120 }, + [863] = { 52.5, 49.5, 440, 120 }, + [864] = { 51.9, 49.5, 440, 120 }, + [865] = { 51.8, 49.4, 440, 120 }, + [866] = { 52.1, 49.3, 440, 120 }, + [867] = { 51.5, 49.3, 440, 120 }, + [868] = { 52.3, 49.2, 440, 120 }, + [869] = { 51.9, 49.1, 440, 120 }, + [870] = { 51.7, 49.1, 440, 120 }, + [871] = { 52.1, 48.9, 440, 120 }, + [872] = { 50.9, 38.8, 440, 120 }, + [873] = { 51, 38.8, 440, 120 }, + [874] = { 50.7, 38.7, 440, 120 }, + [875] = { 50.8, 38.7, 440, 120 }, + [876] = { 51.3, 38.6, 440, 120 }, + [877] = { 51.1, 38.6, 440, 120 }, + [878] = { 51, 38.6, 440, 120 }, + [879] = { 50.4, 38.5, 440, 120 }, + [880] = { 50.6, 38.5, 440, 120 }, + [881] = { 50.8, 38.4, 440, 120 }, + [882] = { 51.2, 38.4, 440, 120 }, + [883] = { 51.1, 38.4, 440, 120 }, + [884] = { 50.7, 38.2, 440, 120 }, + [885] = { 50.4, 38.2, 440, 120 }, + [886] = { 51.2, 38.1, 440, 120 }, + [887] = { 51.4, 38.1, 440, 120 }, + [888] = { 50.8, 38, 440, 120 }, + [889] = { 50.6, 37.9, 440, 120 }, + [890] = { 51.1, 37.9, 440, 120 }, + [891] = { 51.2, 37.8, 440, 120 }, + [892] = { 51.4, 37.8, 440, 120 }, + [893] = { 50.9, 37.7, 440, 120 }, + [894] = { 50.7, 37.7, 440, 120 }, + [895] = { 50.6, 37.6, 440, 120 }, + [896] = { 51.1, 37.6, 440, 120 }, + [897] = { 51.3, 37.5, 440, 120 }, + [898] = { 50.9, 37.3, 440, 120 }, + [899] = { 51.1, 37.3, 440, 120 }, + [900] = { 54.5, 32.2, 440, 120 }, + [901] = { 54.2, 32.2, 440, 120 }, + [902] = { 54.3, 32.2, 440, 120 }, + [903] = { 54.6, 32.1, 440, 120 }, + [904] = { 54, 32, 440, 120 }, + [905] = { 54.5, 32, 440, 120 }, + [906] = { 54.2, 32, 440, 120 }, + [907] = { 54.3, 31.9, 440, 120 }, + [908] = { 53.9, 31.9, 440, 120 }, + [909] = { 54.1, 31.8, 440, 120 }, + [910] = { 54.8, 31.8, 440, 120 }, + [911] = { 54.7, 31.8, 440, 120 }, + [912] = { 54.2, 31.8, 440, 120 }, + [913] = { 54.5, 31.8, 440, 120 }, + [914] = { 53.9, 31.7, 440, 120 }, + [915] = { 54.1, 31.6, 440, 120 }, + [916] = { 54.6, 31.6, 440, 120 }, + [917] = { 54.8, 31.6, 440, 120 }, + [918] = { 54.5, 31.4, 440, 120 }, + [919] = { 54.6, 31.4, 440, 120 }, + [920] = { 53.9, 31.4, 440, 120 }, + [921] = { 54.2, 31.4, 440, 120 }, + [922] = { 54.1, 31.4, 440, 120 }, + [923] = { 54.3, 31.2, 440, 120 }, + [924] = { 54.5, 31.2, 440, 120 }, + [925] = { 54.2, 31.2, 440, 120 }, + [926] = { 54.1, 31.1, 440, 120 }, + [927] = { 54.4, 31, 440, 120 }, + [928] = { 48.3, 30.5, 440, 120 }, + [929] = { 48, 30.4, 440, 120 }, + [930] = { 48.2, 30.4, 440, 120 }, + [931] = { 48.5, 30.3, 440, 120 }, + [932] = { 48.3, 30.3, 440, 120 }, + [933] = { 47.9, 30.2, 440, 120 }, + [934] = { 48, 30.2, 440, 120 }, + [935] = { 48.2, 30.1, 440, 120 }, + [936] = { 48.6, 30.1, 440, 120 }, + [937] = { 48.5, 30.1, 440, 120 }, + [938] = { 47.8, 30, 440, 120 }, + [939] = { 47.9, 30, 440, 120 }, + [940] = { 48.1, 30, 440, 120 }, + [941] = { 48.3, 30, 440, 120 }, + [942] = { 48.6, 29.9, 440, 120 }, + [943] = { 48.4, 29.9, 440, 120 }, + [944] = { 48, 29.8, 440, 120 }, + [945] = { 47.8, 29.8, 440, 120 }, + [946] = { 48.6, 29.7, 440, 120 }, + [947] = { 48.5, 29.6, 440, 120 }, + [948] = { 48.3, 29.6, 440, 120 }, + [949] = { 48.1, 29.6, 440, 120 }, + [950] = { 47.9, 29.5, 440, 120 }, + [951] = { 48.2, 29.5, 440, 120 }, + [952] = { 48.3, 29.4, 440, 120 }, + [953] = { 48.5, 29.4, 440, 120 }, + [954] = { 48, 29.4, 440, 120 }, + [955] = { 48.2, 29.2, 440, 120 }, + [956] = { 62.2, 53.1, 618, 120 }, + [957] = { 62.5, 53.1, 618, 120 }, + [958] = { 62.8, 53, 618, 120 }, + [959] = { 66.7, 53, 618, 120 }, + [960] = { 66.9, 52.9, 618, 120 }, + [961] = { 66.4, 52.9, 618, 120 }, + [962] = { 62.4, 52.9, 618, 120 }, + [963] = { 63.1, 52.9, 618, 120 }, + [964] = { 62.6, 52.8, 618, 120 }, + [965] = { 66.2, 52.8, 618, 120 }, + [966] = { 66.7, 52.7, 618, 120 }, + [967] = { 62.1, 52.6, 618, 120 }, + [968] = { 66.4, 52.6, 618, 120 }, + [969] = { 61.9, 52.5, 618, 120 }, + [970] = { 62.6, 52.5, 618, 120 }, + [971] = { 66.9, 52.5, 618, 120 }, + [972] = { 66, 52.5, 618, 120 }, + [973] = { 66.6, 52.4, 618, 120 }, + [974] = { 66.2, 52.3, 618, 120 }, + [975] = { 66.5, 52.3, 618, 120 }, + [976] = { 62.3, 52.2, 618, 120 }, + [977] = { 65.9, 52.2, 618, 120 }, + [978] = { 62.9, 52.2, 618, 120 }, + [979] = { 67, 52.1, 618, 120 }, + [980] = { 66.7, 52.1, 618, 120 }, + [981] = { 66.3, 52, 618, 120 }, + [982] = { 62.1, 51.9, 618, 120 }, + [983] = { 62.8, 51.9, 618, 120 }, + [984] = { 66.1, 51.9, 618, 120 }, + [985] = { 67.2, 51.8, 618, 120 }, + [986] = { 62.6, 51.8, 618, 120 }, + [987] = { 63, 51.7, 618, 120 }, + [988] = { 62, 51.7, 618, 120 }, + [989] = { 62.8, 51.6, 618, 120 }, + [990] = { 62.4, 51.5, 618, 120 }, + [991] = { 66, 51.5, 618, 120 }, + [992] = { 62.6, 51.5, 618, 120 }, + [993] = { 66.5, 51.4, 618, 120 }, + [994] = { 66.6, 51.4, 618, 120 }, + [995] = { 66.2, 51.2, 618, 120 }, + [996] = { 67, 51.2, 618, 120 }, + [997] = { 66.5, 51.1, 618, 120 }, + [998] = { 66.7, 51.1, 618, 120 }, + [999] = { 62.9, 48.4, 618, 120 }, + [1000] = { 63.5, 48.4, 618, 120 }, + [1001] = { 63.2, 48.3, 618, 120 }, + [1002] = { 62.5, 48.3, 618, 120 }, + [1003] = { 63.1, 48, 618, 120 }, + [1004] = { 63.4, 48, 618, 120 }, + [1005] = { 62.8, 47.9, 618, 120 }, + [1006] = { 62.6, 47.9, 618, 120 }, + [1007] = { 62.3, 47.9, 618, 120 }, + [1008] = { 63, 47.7, 618, 120 }, + [1009] = { 62.8, 47.7, 618, 120 }, + [1010] = { 63.5, 47.6, 618, 120 }, + [1011] = { 63.2, 47.6, 618, 120 }, + [1012] = { 63.3, 47.3, 618, 120 }, + [1013] = { 63.5, 47.2, 618, 120 }, + [1014] = { 62.4, 47.2, 618, 120 }, + [1015] = { 62.8, 46.9, 618, 120 }, + [1016] = { 63.5, 46.8, 618, 120 }, + [1017] = { 63.1, 46.7, 618, 120 }, + [1018] = { 63.3, 46.6, 618, 120 }, + [1019] = { 45.1, 42.8, 618, 120 }, + [1020] = { 44.7, 42.6, 618, 120 }, + [1021] = { 44.5, 42.4, 618, 120 }, + [1022] = { 44.8, 42.4, 618, 120 }, + [1023] = { 45.1, 42.3, 618, 120 }, + [1024] = { 44, 42.3, 618, 120 }, + [1025] = { 44.7, 42.2, 618, 120 }, + [1026] = { 44.9, 42.1, 618, 120 }, + [1027] = { 44.1, 42, 618, 120 }, + [1028] = { 45.2, 42, 618, 120 }, + [1029] = { 44.3, 41.9, 618, 120 }, + [1030] = { 44.4, 41.8, 618, 120 }, + [1031] = { 44.8, 41.8, 618, 120 }, + [1032] = { 44.9, 41.8, 618, 120 }, + [1033] = { 44, 41.8, 618, 120 }, + [1034] = { 45.1, 41.6, 618, 120 }, + [1035] = { 44.8, 41.6, 618, 120 }, + [1036] = { 44.4, 41.5, 618, 120 }, + [1037] = { 44.6, 41.4, 618, 120 }, + [1038] = { 44.8, 41.2, 618, 120 }, + [1039] = { 44.5, 41.2, 618, 120 }, + [1040] = { 44.7, 41, 618, 120 }, + [1041] = { 42.8, 38.8, 618, 120 }, + [1042] = { 43.1, 38.6, 618, 120 }, + [1043] = { 42.5, 38.5, 618, 120 }, + [1044] = { 42.3, 38.5, 618, 120 }, + [1045] = { 42.9, 38.4, 618, 120 }, + [1046] = { 43.3, 38.3, 618, 120 }, + [1047] = { 42.7, 38.3, 618, 120 }, + [1048] = { 42.5, 38.2, 618, 120 }, + [1049] = { 42.3, 38.2, 618, 120 }, + [1050] = { 43, 38.1, 618, 120 }, + [1051] = { 42.8, 38, 618, 120 }, + [1052] = { 45.9, 38, 618, 120 }, + [1053] = { 42.6, 38, 618, 120 }, + [1054] = { 42.4, 37.9, 618, 120 }, + [1055] = { 43.3, 37.9, 618, 120 }, + [1056] = { 42.1, 37.8, 618, 120 }, + [1057] = { 46.6, 37.8, 618, 120 }, + [1058] = { 46.3, 37.8, 618, 120 }, + [1059] = { 43.1, 37.8, 618, 120 }, + [1060] = { 42.9, 37.8, 618, 120 }, + [1061] = { 45.7, 37.8, 618, 120 }, + [1062] = { 45.9, 37.7, 618, 120 }, + [1063] = { 46.2, 37.7, 618, 120 }, + [1064] = { 42.6, 37.6, 618, 120 }, + [1065] = { 45.4, 37.6, 618, 120 }, + [1066] = { 42.8, 37.6, 618, 120 }, + [1067] = { 46.4, 37.5, 618, 120 }, + [1068] = { 42.4, 37.5, 618, 120 }, + [1069] = { 43.2, 37.5, 618, 120 }, + [1070] = { 46.1, 37.5, 618, 120 }, + [1071] = { 43, 37.4, 618, 120 }, + [1072] = { 42.2, 37.3, 618, 120 }, + [1073] = { 46.2, 37.3, 618, 120 }, + [1074] = { 42.6, 37.3, 618, 120 }, + [1075] = { 46.4, 37.3, 618, 120 }, + [1076] = { 45.7, 37.3, 618, 120 }, + [1077] = { 45.9, 37.3, 618, 120 }, + [1078] = { 45.4, 37.2, 618, 120 }, + [1079] = { 46.5, 37.2, 618, 120 }, + [1080] = { 42.9, 37.2, 618, 120 }, + [1081] = { 42.4, 37.1, 618, 120 }, + [1082] = { 43.3, 37, 618, 120 }, + [1083] = { 45.9, 37, 618, 120 }, + [1084] = { 46.3, 37, 618, 120 }, + [1085] = { 42.5, 36.8, 618, 120 }, + [1086] = { 46, 36.8, 618, 120 }, + [1087] = { 46.6, 36.7, 618, 120 }, + [1088] = { 46.2, 36.7, 618, 120 }, + [1089] = { 45.8, 36.6, 618, 120 }, + [1090] = { 46.4, 36.6, 618, 120 }, + [1091] = { 46.1, 36.4, 618, 120 }, + [1092] = { 46.5, 36.2, 618, 120 }, + [1093] = { 45.8, 36.2, 618, 120 }, + [1094] = { 50.3, 18.8, 618, 120 }, + [1095] = { 50, 18.7, 618, 120 }, + [1096] = { 49.8, 18.7, 618, 120 }, + [1097] = { 50.5, 18.6, 618, 120 }, + [1098] = { 50.2, 18.5, 618, 120 }, + [1099] = { 50, 18.4, 618, 120 }, + [1100] = { 49.8, 18.4, 618, 120 }, + [1101] = { 50.6, 18.3, 618, 120 }, + [1102] = { 50.3, 18.3, 618, 120 }, + [1103] = { 49.9, 18.1, 618, 120 }, + [1104] = { 49.6, 18.1, 618, 120 }, + [1105] = { 50.7, 18.1, 618, 120 }, + [1106] = { 50.1, 18, 618, 120 }, + [1107] = { 50.3, 18, 618, 120 }, + [1108] = { 50.4, 17.9, 618, 120 }, + [1109] = { 49.7, 17.8, 618, 120 }, + [1110] = { 50, 17.8, 618, 120 }, + [1111] = { 49.8, 17.7, 618, 120 }, + [1112] = { 50.2, 17.7, 618, 120 }, + [1113] = { 50.8, 17.7, 618, 120 }, + [1114] = { 49.8, 17.5, 618, 120 }, + [1115] = { 50.3, 17.5, 618, 120 }, + [1116] = { 50.6, 17.4, 618, 120 }, + [1117] = { 50.1, 17.4, 618, 120 }, + [1118] = { 49.6, 17.4, 618, 120 }, + [1119] = { 50.2, 17.2, 618, 120 }, + [1120] = { 50, 17.1, 618, 120 }, + [1121] = { 50.5, 17.1, 618, 120 }, + [1122] = { 54.6, 15.7, 618, 120 }, + [1123] = { 55, 15.7, 618, 120 }, + [1124] = { 55.4, 15.6, 618, 120 }, + [1125] = { 54.8, 15.6, 618, 120 }, + [1126] = { 55.2, 15.6, 618, 120 }, + [1127] = { 55, 15.4, 618, 120 }, + [1128] = { 55.4, 15.4, 618, 120 }, + [1129] = { 55.5, 15.3, 618, 120 }, + [1130] = { 54.7, 15.3, 618, 120 }, + [1131] = { 55.2, 15.3, 618, 120 }, + [1132] = { 54.5, 15.3, 618, 120 }, + [1133] = { 54.9, 15.2, 618, 120 }, + [1134] = { 55.1, 15.1, 618, 120 }, + [1135] = { 55.5, 15.1, 618, 120 }, + [1136] = { 54.5, 15, 618, 120 }, + [1137] = { 55.2, 15, 618, 120 }, + [1138] = { 54.7, 15, 618, 120 }, + [1139] = { 54.9, 14.9, 618, 120 }, + [1140] = { 55.1, 14.9, 618, 120 }, + [1141] = { 55.4, 14.8, 618, 120 }, + [1142] = { 55.6, 14.8, 618, 120 }, + [1143] = { 54.6, 14.8, 618, 120 }, + [1144] = { 54.8, 14.7, 618, 120 }, + [1145] = { 55.2, 14.6, 618, 120 }, + [1146] = { 55, 14.5, 618, 120 }, + [1147] = { 55.4, 14.5, 618, 120 }, + [1148] = { 54.8, 14.2, 618, 120 }, + [1149] = { 55.1, 14.2, 618, 120 }, + [1150] = { 50.2, 13.4, 618, 120 }, + [1151] = { 50, 13.3, 618, 120 }, + [1152] = { 50.4, 13.1, 618, 120 }, + [1153] = { 50.1, 13, 618, 120 }, + [1154] = { 49.9, 13, 618, 120 }, + [1155] = { 49.6, 12.8, 618, 120 }, + [1156] = { 50.4, 12.8, 618, 120 }, + [1157] = { 50, 12.7, 618, 120 }, + [1158] = { 50.2, 12.7, 618, 120 }, + [1159] = { 49.8, 12.6, 618, 120 }, + [1160] = { 50.6, 12.6, 618, 120 }, + [1161] = { 49.4, 12.5, 618, 120 }, + [1162] = { 49.6, 12.5, 618, 120 }, + [1163] = { 50.4, 12.5, 618, 120 }, + [1164] = { 49.9, 12.4, 618, 120 }, + [1165] = { 49.8, 12.4, 618, 120 }, + [1166] = { 50.1, 12.3, 618, 120 }, + [1167] = { 49.5, 12.3, 618, 120 }, + [1168] = { 50.5, 12.2, 618, 120 }, + [1169] = { 49.4, 12.2, 618, 120 }, + [1170] = { 50.3, 12.2, 618, 120 }, + [1171] = { 49.7, 12.2, 618, 120 }, + [1172] = { 50, 12.2, 618, 120 }, + [1173] = { 49.8, 12.1, 618, 120 }, + [1174] = { 50.2, 12.1, 618, 120 }, + [1175] = { 49.5, 12, 618, 120 }, + [1176] = { 50.5, 12, 618, 120 }, + [1177] = { 49.9, 12, 618, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [16359] = { + ["coords"] = { + [1] = { 38.5, 28.8, 215, 120 }, + [2] = { 65.8, 46.7, 1497, 120 }, + [3] = { 52.8, 73.6, 1637, 120 }, + [4] = { 43, 59.1, 1638, 120 }, + }, + ["lvl"] = "55", + }, + [16360] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16361] = { + ["coords"] = { + [1] = { 80.9, 60.4, 139, 120 }, + }, + ["lvl"] = "55", + }, + [16363] = { + ["coords"] = {}, + ["lvl"] = "63", + }, + [16365] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16368] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [16369] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [16371] = { + ["coords"] = {}, + ["lvl"] = "3", + }, + [16372] = { + ["coords"] = {}, + ["lvl"] = "3", + }, + [16373] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [16374] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [16375] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16376] = { + ["coords"] = { + [1] = { 81, 59.6, 139, 345 }, + }, + ["lvl"] = "57", + }, + [16377] = { + ["coords"] = {}, + ["lvl"] = "3", + }, + [16378] = { + ["coords"] = { + [1] = { 80.6, 62.7, 139, 610 }, + [2] = { 80.7, 61.4, 139, 610 }, + [3] = { 81.9, 61.1, 139, 610 }, + [4] = { 80.3, 61, 139, 610 }, + [5] = { 81.5, 60.2, 139, 610 }, + [6] = { 81.7, 59.5, 139, 610 }, + [7] = { 82.4, 59.2, 139, 610 }, + [8] = { 80, 59.2, 139, 610 }, + [9] = { 81.5, 59.1, 139, 610 }, + [10] = { 82.9, 59.1, 139, 610 }, + [11] = { 80.3, 58.9, 139, 610 }, + [12] = { 81.1, 58.8, 139, 610 }, + [13] = { 80.3, 58.7, 139, 610 }, + [14] = { 80, 58.6, 139, 610 }, + [15] = { 81, 58.5, 139, 610 }, + [16] = { 81.8, 58.2, 139, 610 }, + [17] = { 81.6, 57.8, 139, 610 }, + [18] = { 80.2, 57.5, 139, 610 }, + [19] = { 80.3, 57.3, 139, 610 }, + [20] = { 81.1, 57.2, 139, 610 }, + [21] = { 80.5, 56.9, 139, 610 }, + [22] = { 82.3, 56.5, 139, 610 }, + [23] = { 80.9, 56, 139, 610 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16379] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "4", + }, + [16380] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "4", + }, + [16381] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16382] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16383] = { + ["coords"] = {}, + ["lvl"] = "53-55", + ["rnk"] = "1", + }, + [16384] = { + ["coords"] = { + [1] = { 38.4, 28.7, 215, 120 }, + [2] = { 65.2, 45.8, 1497, 120 }, + [3] = { 52.1, 74, 1637, 120 }, + [4] = { 42.3, 58.5, 1638, 120 }, + }, + ["lvl"] = "55", + }, + [16385] = { + ["coords"] = {}, + ["lvl"] = "62", + }, + [16386] = { + ["coords"] = { + [1] = { 61.3, 41.7, 4, 120 }, + [2] = { 59.1, 36, 4, 120 }, + [3] = { 47.3, 35.6, 4, 120 }, + [4] = { 62.6, 32.7, 4, 120 }, + [5] = { 50.4, 28.4, 4, 120 }, + [6] = { 46.6, 23.5, 4, 120 }, + [7] = { 19.1, 64.3, 16, 120 }, + [8] = { 22.8, 60, 16, 120 }, + [9] = { 45.6, 56.4, 16, 120 }, + [10] = { 18, 56, 16, 120 }, + [11] = { 47.4, 53.6, 16, 120 }, + [12] = { 45.1, 51.1, 16, 120 }, + [13] = { 80.2, 59.7, 28, 120 }, + [14] = { 77.1, 54.9, 28, 120 }, + [15] = { 32.4, 66.7, 46, 120 }, + [16] = { 25.1, 66.1, 46, 120 }, + [17] = { 26.2, 54.8, 46, 120 }, + [18] = { 74, 44.5, 46, 120 }, + [19] = { 69.4, 36, 46, 120 }, + [20] = { 77.9, 31.5, 46, 120 }, + [21] = { 21.9, 83.1, 139, 120 }, + [22] = { 18.5, 77.8, 139, 120 }, + [23] = { 23.3, 73.6, 139, 120 }, + [24] = { 68.2, 69.7, 139, 120 }, + [25] = { 73.9, 69.5, 139, 120 }, + [26] = { 71, 60.7, 139, 120 }, + [27] = { 34, 62.9, 440, 120 }, + [28] = { 31.1, 58.5, 440, 120 }, + [29] = { 35, 58.5, 440, 120 }, + [30] = { 52.9, 55.6, 440, 120 }, + [31] = { 56.7, 53.4, 440, 120 }, + [32] = { 52.7, 51.1, 440, 120 }, + [33] = { 50.9, 36.8, 440, 120 }, + [34] = { 53.2, 32.2, 440, 120 }, + [35] = { 49.1, 30.7, 440, 120 }, + [36] = { 63.3, 51.3, 618, 120 }, + [37] = { 66, 51.3, 618, 120 }, + [38] = { 63.8, 48.5, 618, 120 }, + [39] = { 44.3, 40.9, 618, 120 }, + [40] = { 43.1, 38.4, 618, 120 }, + [41] = { 45.6, 37.6, 618, 120 }, + [42] = { 50.7, 17.5, 618, 120 }, + [43] = { 53.9, 15.5, 618, 120 }, + [44] = { 50.8, 13.8, 618, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [16387] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [16390] = { + ["coords"] = {}, + ["lvl"] = "61", + }, + [16392] = { + ["coords"] = { + [1] = { 34.6, 74.8, 36, 600 }, + [2] = { 39.2, 13.9, 267, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16394] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16395] = { + ["coords"] = { + [1] = { 80.7, 60, 139, 120 }, + [2] = { 25.4, 56.6, 141, 120 }, + [3] = { 54.9, 62, 1519, 120 }, + [4] = { 29.4, 60.5, 1537, 120 }, + [5] = { 39.4, 46.7, 1657, 120 }, + }, + ["lvl"] = "55", + }, + [16396] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16398] = { + ["coords"] = { + [1] = { 61.5, 40.6, 4, 120 }, + [2] = { 61.4, 37.1, 4, 120 }, + [3] = { 62.4, 34.8, 4, 120 }, + [4] = { 47.5, 32.7, 4, 120 }, + [5] = { 49.2, 29.1, 4, 120 }, + [6] = { 47.2, 26.7, 4, 120 }, + [7] = { 19.5, 62.3, 16, 120 }, + [8] = { 21.3, 60.4, 16, 120 }, + [9] = { 18.8, 58.5, 16, 120 }, + [10] = { 45.8, 54.8, 16, 120 }, + [11] = { 46.7, 53.4, 16, 120 }, + [12] = { 45.7, 52.6, 16, 120 }, + [13] = { 80.2, 57.6, 28, 120 }, + [14] = { 30.7, 63.3, 46, 120 }, + [15] = { 27.3, 63.3, 46, 120 }, + [16] = { 27.5, 58.7, 46, 120 }, + [17] = { 74, 40.2, 46, 120 }, + [18] = { 71.7, 36, 46, 120 }, + [19] = { 75.9, 33.9, 46, 120 }, + [20] = { 21.9, 80.7, 139, 120 }, + [21] = { 20.2, 78.4, 139, 120 }, + [22] = { 22.8, 76.2, 139, 120 }, + [23] = { 69.8, 67.5, 139, 120 }, + [24] = { 71.9, 67.4, 139, 120 }, + [25] = { 71, 64, 139, 120 }, + [26] = { 33.6, 61.4, 440, 120 }, + [27] = { 34, 59.2, 440, 120 }, + [28] = { 32.1, 59.2, 440, 120 }, + [29] = { 53.5, 54.6, 440, 120 }, + [30] = { 55.5, 53.5, 440, 120 }, + [31] = { 53.6, 52.3, 440, 120 }, + [32] = { 50.9, 35, 440, 120 }, + [33] = { 52.1, 32.7, 440, 120 }, + [34] = { 50, 31.7, 440, 120 }, + [35] = { 65.4, 50.5, 618, 120 }, + [36] = { 64.3, 50.2, 618, 120 }, + [37] = { 64.2, 49, 618, 120 }, + [38] = { 44.3, 40.5, 618, 120 }, + [39] = { 43.6, 39.2, 618, 120 }, + [40] = { 44.8, 38.7, 618, 120 }, + [41] = { 51.2, 17.1, 618, 120 }, + [42] = { 53.1, 16, 618, 120 }, + [43] = { 51.6, 15.2, 618, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [16399] = { + ["coords"] = { + [1] = { 31.8, 70.9, 33, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "43-44", + }, + [16400] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [16401] = { + ["coords"] = { + [1] = { 61.9, 37.4, 4, 120 }, + [2] = { 47.8, 29.9, 4, 120 }, + [3] = { 20.2, 60.4, 16, 120 }, + [4] = { 46, 53.1, 16, 120 }, + [5] = { 28.4, 61.6, 46, 120 }, + [6] = { 73.9, 36, 46, 120 }, + [7] = { 21.9, 78.8, 139, 120 }, + [8] = { 70.9, 65.8, 139, 120 }, + [9] = { 33.1, 60, 440, 120 }, + [10] = { 54.3, 53.4, 440, 120 }, + [11] = { 50.9, 33.2, 440, 120 }, + [12] = { 64.7, 49.6, 618, 120 }, + [13] = { 44, 39.9, 618, 120 }, + [14] = { 52.3, 16.4, 618, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [16416] = { + ["coords"] = { + [1] = { 59.8, 39.7, 618, 333 }, + }, + ["fac"] = "AH", + ["lvl"] = "55-56", + }, + [16417] = { + ["coords"] = { + [1] = { 50.4, 26.2, 440, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "44", + }, + [16418] = { + ["coords"] = { + [1] = { 61.2, 37.9, 17, 413 }, + }, + ["fac"] = "AH", + ["lvl"] = "20", + }, + [16419] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16420] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [16421] = { + ["coords"] = { + [1] = { 61.9, 37.4, 4, 120 }, + [2] = { 47.8, 29.9, 4, 120 }, + [3] = { 20.2, 60.4, 16, 120 }, + [4] = { 46, 53.1, 16, 120 }, + [5] = { 28.4, 61.6, 46, 120 }, + [6] = { 73.9, 36, 46, 120 }, + [7] = { 21.9, 78.8, 139, 120 }, + [8] = { 70.9, 65.8, 139, 120 }, + [9] = { 33.1, 60, 440, 120 }, + [10] = { 54.3, 53.4, 440, 120 }, + [11] = { 50.9, 33.2, 440, 120 }, + [12] = { 64.7, 49.6, 618, 120 }, + [13] = { 44, 39.9, 618, 120 }, + [14] = { 52.3, 16.4, 618, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [16422] = { + ["coords"] = { + [1] = { 36.8, 55.6, 12, 120 }, + [2] = { 34, 55.6, 12, 120 }, + [3] = { 34.9, 55.5, 12, 120 }, + [4] = { 33.8, 55.1, 12, 120 }, + [5] = { 34, 54.9, 12, 120 }, + [6] = { 34.9, 54.8, 12, 120 }, + [7] = { 36.9, 54.8, 12, 120 }, + [8] = { 31.9, 54.7, 12, 120 }, + [9] = { 32, 54, 12, 120 }, + [10] = { 32.5, 53.3, 12, 120 }, + [11] = { 32.5, 52.6, 12, 120 }, + [12] = { 32.5, 52.5, 12, 120 }, + [13] = { 34.4, 51.8, 12, 120 }, + [14] = { 35.3, 51.2, 12, 120 }, + [15] = { 34.4, 50.6, 12, 120 }, + [16] = { 33.9, 50.5, 12, 120 }, + [17] = { 34.9, 50.5, 12, 120 }, + [18] = { 35.4, 49.9, 12, 120 }, + [19] = { 34, 49.1, 12, 120 }, + [20] = { 35.5, 49.1, 12, 120 }, + [21] = { 34.4, 49, 12, 120 }, + [22] = { 34.9, 48.7, 12, 120 }, + [23] = { 34.4, 48.4, 12, 120 }, + [24] = { 60.3, 62.4, 85, 120 }, + [25] = { 59.6, 61.9, 85, 120 }, + [26] = { 60, 61.7, 85, 120 }, + [27] = { 60.7, 61.3, 85, 120 }, + [28] = { 61, 60.8, 85, 120 }, + [29] = { 60.3, 60.7, 85, 120 }, + [30] = { 59.5, 60.6, 85, 120 }, + [31] = { 60, 60.6, 85, 120 }, + [32] = { 60.6, 60.2, 85, 120 }, + [33] = { 60.3, 60.1, 85, 120 }, + }, + ["lvl"] = "6-7", + }, + [16423] = { + ["coords"] = { + [1] = { 34.9, 56.2, 12, 120 }, + [2] = { 35.4, 55.6, 12, 120 }, + [3] = { 33.5, 55.6, 12, 120 }, + [4] = { 34.5, 55.5, 12, 120 }, + [5] = { 32.5, 55.4, 12, 120 }, + [6] = { 33.7, 55.3, 12, 120 }, + [7] = { 35.4, 54.8, 12, 120 }, + [8] = { 34.5, 54.8, 12, 120 }, + [9] = { 33.9, 54.1, 12, 120 }, + [10] = { 33.4, 54, 12, 120 }, + [11] = { 32.9, 53.3, 12, 120 }, + [12] = { 34.5, 51.3, 12, 120 }, + [13] = { 34.9, 51.3, 12, 120 }, + [14] = { 34, 51.2, 12, 120 }, + [15] = { 35.3, 50.5, 12, 120 }, + [16] = { 34.4, 49.8, 12, 120 }, + [17] = { 34.8, 49.8, 12, 120 }, + [18] = { 33.9, 48.4, 12, 120 }, + [19] = { 34.4, 47.9, 12, 120 }, + [20] = { 34, 47.8, 12, 120 }, + [21] = { 34.9, 47.7, 12, 120 }, + [22] = { 59.6, 62.4, 85, 120 }, + [23] = { 59.9, 62.3, 85, 120 }, + [24] = { 60.3, 61.8, 85, 120 }, + [25] = { 60.6, 61.7, 85, 120 }, + [26] = { 59.5, 61.3, 85, 120 }, + [27] = { 61, 61.3, 85, 120 }, + [28] = { 60.3, 61.2, 85, 120 }, + [29] = { 60.5, 61.1, 85, 120 }, + [30] = { 59.8, 60.9, 85, 120 }, + [31] = { 60.7, 60.7, 85, 120 }, + [32] = { 59.9, 60.2, 85, 120 }, + [33] = { 59.9, 59.6, 85, 120 }, + [34] = { 76.1, 87.1, 1519, 120 }, + [35] = { 76.3, 85.5, 1519, 120 }, + }, + ["lvl"] = "6-7", + }, + [16427] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16428] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16429] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16430] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [16431] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [16432] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16433] = { + ["coords"] = { + [1] = { 80.7, 60, 139, 120 }, + [2] = { 25.4, 56.6, 141, 120 }, + [3] = { 54.9, 62, 1519, 120 }, + [4] = { 29.4, 60.5, 1537, 120 }, + [5] = { 39.4, 46.7, 1657, 120 }, + }, + ["lvl"] = "55", + }, + [16434] = { + ["coords"] = { + [1] = { 80.7, 60, 139, 120 }, + [2] = { 25.4, 56.6, 141, 120 }, + [3] = { 54.9, 62, 1519, 120 }, + [4] = { 29.4, 60.5, 1537, 120 }, + [5] = { 39.4, 46.7, 1657, 120 }, + }, + ["lvl"] = "55", + }, + [16435] = { + ["coords"] = { + [1] = { 38.4, 28.7, 215, 120 }, + [2] = { 65.2, 45.8, 1497, 120 }, + [3] = { 52.1, 74, 1637, 120 }, + [4] = { 42.3, 58.5, 1638, 120 }, + }, + ["lvl"] = "55", + }, + [16436] = { + ["coords"] = { + [1] = { 38.4, 28.7, 215, 120 }, + [2] = { 65.2, 45.8, 1497, 120 }, + [3] = { 52.1, 74, 1637, 120 }, + [4] = { 42.3, 58.5, 1638, 120 }, + }, + ["lvl"] = "55", + }, + [16437] = { + ["coords"] = { + [1] = { 48.3, 40.6, 1, 120 }, + [2] = { 47.9, 40.1, 1, 120 }, + [3] = { 48.9, 40.1, 1, 120 }, + [4] = { 49.6, 40.1, 1, 120 }, + [5] = { 48.3, 40.1, 1, 120 }, + [6] = { 49.3, 39.6, 1, 120 }, + [7] = { 50.1, 39.5, 1, 120 }, + [8] = { 48.9, 39.1, 1, 120 }, + [9] = { 50, 39, 1, 120 }, + [10] = { 48.6, 39, 1, 120 }, + [11] = { 49.3, 38.5, 1, 120 }, + [12] = { 49.6, 38.4, 1, 120 }, + [13] = { 50.2, 38.1, 1, 120 }, + [14] = { 48.2, 38, 1, 120 }, + [15] = { 48.9, 38, 1, 120 }, + [16] = { 44.7, 18.8, 14, 120 }, + [17] = { 45, 18.5, 14, 120 }, + [18] = { 45, 18.1, 14, 120 }, + [19] = { 44.4, 18, 14, 120 }, + [20] = { 44.6, 17.6, 14, 120 }, + [21] = { 45.3, 17.5, 14, 120 }, + [22] = { 44, 17.5, 14, 120 }, + [23] = { 44.9, 17.1, 14, 120 }, + [24] = { 44, 17, 14, 120 }, + [25] = { 44.6, 17, 14, 120 }, + [26] = { 44.8, 16.7, 14, 120 }, + [27] = { 44.7, 16.5, 14, 120 }, + [28] = { 44.4, 16.5, 14, 120 }, + [29] = { 45.1, 16.4, 14, 120 }, + [30] = { 44.4, 16.1, 14, 120 }, + [31] = { 45.3, 16, 14, 120 }, + [32] = { 45.6, 15.6, 14, 120 }, + [33] = { 38.4, 57.7, 141, 120 }, + [34] = { 38, 57.7, 141, 120 }, + [35] = { 38.1, 57.1, 141, 120 }, + [36] = { 38.8, 56.7, 141, 120 }, + [37] = { 37.8, 56.7, 141, 120 }, + [38] = { 37.5, 56.3, 141, 120 }, + [39] = { 38, 56.2, 141, 120 }, + [40] = { 39.1, 56.2, 141, 120 }, + [41] = { 38.4, 56.1, 141, 120 }, + [42] = { 37.1, 55.8, 141, 120 }, + [43] = { 36.8, 55.7, 141, 120 }, + [44] = { 36.5, 55.7, 141, 120 }, + [45] = { 37.8, 55.6, 141, 120 }, + [46] = { 36.8, 55.3, 141, 120 }, + [47] = { 37.1, 55.2, 141, 120 }, + [48] = { 39, 38, 215, 120 }, + [49] = { 39.4, 38, 215, 120 }, + [50] = { 38.3, 38, 215, 120 }, + [51] = { 39.1, 37.5, 215, 120 }, + [52] = { 40.3, 37.5, 215, 120 }, + [53] = { 38.7, 37.1, 215, 120 }, + [54] = { 38.1, 37, 215, 120 }, + [55] = { 39.4, 37, 215, 120 }, + [56] = { 38.8, 36.5, 215, 120 }, + [57] = { 39, 36.5, 215, 120 }, + [58] = { 38.1, 36.1, 215, 120 }, + [59] = { 38.4, 36, 215, 120 }, + [60] = { 38.7, 35.5, 215, 120 }, + [61] = { 38.1, 35.5, 215, 120 }, + [62] = { 39.7, 35.1, 215, 120 }, + [63] = { 99.8, 51.6, 1657, 120 }, + [64] = { 99, 46.9, 1657, 120 }, + [65] = { 97.5, 45, 1657, 120 }, + [66] = { 95.8, 42.4, 1657, 120 }, + [67] = { 94.3, 42.2, 1657, 120 }, + [68] = { 93, 42.2, 1657, 120 }, + [69] = { 99.2, 41.8, 1657, 120 }, + [70] = { 94, 40.2, 1657, 120 }, + [71] = { 95.7, 39.8, 1657, 120 }, + }, + ["lvl"] = "9-10", + }, + [16438] = { + ["coords"] = { + [1] = { 49, 40.6, 1, 120 }, + [2] = { 48.6, 40.1, 1, 120 }, + [3] = { 50, 40.1, 1, 120 }, + [4] = { 49.3, 40, 1, 120 }, + [5] = { 47.8, 39.6, 1, 120 }, + [6] = { 49.7, 39.6, 1, 120 }, + [7] = { 48.6, 39.6, 1, 120 }, + [8] = { 48.3, 39.5, 1, 120 }, + [9] = { 48.9, 39.4, 1, 120 }, + [10] = { 49.6, 39, 1, 120 }, + [11] = { 48.3, 39, 1, 120 }, + [12] = { 49.3, 39, 1, 120 }, + [13] = { 49, 38.6, 1, 120 }, + [14] = { 48.5, 38.6, 1, 120 }, + [15] = { 50, 38.5, 1, 120 }, + [16] = { 44.4, 18.5, 14, 120 }, + [17] = { 44.7, 18, 14, 120 }, + [18] = { 43.9, 18, 14, 120 }, + [19] = { 45.3, 18, 14, 120 }, + [20] = { 45, 17.6, 14, 120 }, + [21] = { 44.3, 17.5, 14, 120 }, + [22] = { 45.3, 17, 14, 120 }, + [23] = { 44.4, 17, 14, 120 }, + [24] = { 45.3, 16.6, 14, 120 }, + [25] = { 44, 16.6, 14, 120 }, + [26] = { 45, 16.5, 14, 120 }, + [27] = { 45.6, 16.5, 14, 120 }, + [28] = { 44.9, 16.4, 14, 120 }, + [29] = { 44.7, 16.1, 14, 120 }, + [30] = { 45.6, 16, 14, 120 }, + [31] = { 45.8, 15.9, 14, 120 }, + [32] = { 38.2, 57.7, 141, 120 }, + [33] = { 38.4, 57.2, 141, 120 }, + [34] = { 38.7, 57.1, 141, 120 }, + [35] = { 38.4, 56.7, 141, 120 }, + [36] = { 38.1, 56.7, 141, 120 }, + [37] = { 37.8, 56.2, 141, 120 }, + [38] = { 36.8, 56.2, 141, 120 }, + [39] = { 38.8, 56.1, 141, 120 }, + [40] = { 36.4, 56.1, 141, 120 }, + [41] = { 38.1, 55.7, 141, 120 }, + [42] = { 38.4, 55.6, 141, 120 }, + [43] = { 37.5, 55.2, 141, 120 }, + [44] = { 38.1, 55.1, 141, 120 }, + [45] = { 36.8, 54.8, 141, 120 }, + [46] = { 37.1, 54.8, 141, 120 }, + [47] = { 36.8, 54.7, 141, 120 }, + [48] = { 39.4, 38.6, 215, 120 }, + [49] = { 39.1, 38.5, 215, 120 }, + [50] = { 38.7, 38.5, 215, 120 }, + [51] = { 38.7, 38, 215, 120 }, + [52] = { 39.4, 37.6, 215, 120 }, + [53] = { 38.7, 37.5, 215, 120 }, + [54] = { 38.4, 37.5, 215, 120 }, + [55] = { 39, 37.1, 215, 120 }, + [56] = { 40.3, 37, 215, 120 }, + [57] = { 38.4, 37, 215, 120 }, + [58] = { 39.4, 36.5, 215, 120 }, + [59] = { 38.4, 36.5, 215, 120 }, + [60] = { 39, 36.1, 215, 120 }, + [61] = { 38.7, 36, 215, 120 }, + [62] = { 38.4, 35.5, 215, 120 }, + [63] = { 98.9, 44.6, 1657, 120 }, + [64] = { 94.4, 44.4, 1657, 120 }, + [65] = { 92.5, 44.2, 1657, 120 }, + [66] = { 97.7, 39.6, 1657, 120 }, + [67] = { 94.2, 37.7, 1657, 120 }, + [68] = { 95.6, 37.6, 1657, 120 }, + [69] = { 94.1, 37.1, 1657, 120 }, + }, + ["lvl"] = "9-10", + }, + [16439] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + ["rnk"] = "1", + }, + [16440] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + ["rnk"] = "3", + }, + [16441] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16445] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [16446] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16447] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16448] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16449] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16450] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [16451] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [16452] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [16453] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16454] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [16455] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [16456] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [16458] = { + ["coords"] = { + [1] = { 35.8, 5.7, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [16474] = { + ["coords"] = {}, + ["lvl"] = "63", + }, + [16478] = { + ["coords"] = { + [1] = { 63.8, 75.5, 1519, 120 }, + }, + ["lvl"] = "10", + }, + [16479] = { + ["coords"] = {}, + ["lvl"] = "10", + }, + [16484] = { + ["coords"] = { + [1] = { 53, 35, 1, 120 }, + }, + ["lvl"] = "10", + }, + [16486] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [16490] = { + ["coords"] = { + [1] = { 36.1, 31.4, 215, 120 }, + [2] = { 31.1, 71.4, 1638, 120 }, + }, + ["lvl"] = "10", + }, + [16493] = { + ["coords"] = { + [1] = { 46.2, 8.4, 14, 120 }, + [2] = { 51.6, 81.4, 1637, 120 }, + }, + ["lvl"] = "10", + }, + [16494] = { + ["coords"] = { + [1] = { 66, 22, 1497, 120 }, + }, + ["lvl"] = "10", + }, + [16495] = { + ["coords"] = { + [1] = { 33.4, 55.7, 141, 120 }, + [2] = { 77.9, 42.4, 1657, 120 }, + }, + ["lvl"] = "10", + }, + [16505] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16506] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16508] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [16509] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [16510] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [16511] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [16512] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [16513] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [16531] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [16536] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [16543] = { + ["coords"] = { + [1] = { 52.5, 38.6, 1377, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [16547] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [16548] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [16549] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [16573] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16592] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [16604] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [16606] = { + ["coords"] = { + [1] = { 54.1, 31.4, 4, 120 }, + [2] = { 51.2, 17.1, 11, 120 }, + [3] = { 41.5, 43.2, 16, 120 }, + [4] = { 59.8, 39.3, 17, 120 }, + [5] = { 52, 97.6, 36, 120 }, + [6] = { 34, 80.4, 40, 120 }, + [7] = { 62.1, 53.4, 47, 120 }, + [8] = { 32.9, 73.1, 51, 120 }, + [9] = { 54.2, 69.8, 130, 120 }, + [10] = { 57.5, 72.7, 139, 120 }, + [11] = { 56.7, 92.3, 141, 120 }, + [12] = { 41.5, 90.7, 148, 120 }, + [13] = { 34.1, 22.3, 215, 120 }, + [14] = { 54.4, 33.8, 267, 120 }, + [15] = { 64.8, 71.7, 331, 120 }, + [16] = { 87.6, 49.6, 405, 120 }, + [17] = { 59.5, 72.5, 406, 120 }, + [18] = { 70.3, 75.9, 490, 120 }, + [19] = { 19.3, 17.4, 490, 120 }, + [20] = { 30.7, 43.1, 618, 120 }, + [21] = { 78, 18.8, 1377, 120 }, + [22] = { 66, 36.8, 1497, 120 }, + [23] = { 38.8, 61.8, 1519, 120 }, + [24] = { 64.6, 24.8, 1537, 120 }, + [25] = { 42.1, 34.2, 1637, 120 }, + [26] = { 21, 26.7, 1638, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [16609] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16697] = { + ["coords"] = {}, + ["lvl"] = "63", + }, + [16698] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [16701] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [16775] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [16776] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [16777] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [16778] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [16779] = { + ["coords"] = {}, + ["lvl"] = "3", + }, + [16781] = { + ["coords"] = { + [1] = { 54, 31.8, 4, 120 }, + [2] = { 54.3, 31.5, 4, 120 }, + [3] = { 54.3, 31.4, 4, 120 }, + [4] = { 51.4, 17.4, 11, 120 }, + [5] = { 51.4, 17.3, 11, 120 }, + [6] = { 41.3, 43.3, 16, 120 }, + [7] = { 41.6, 43.1, 16, 120 }, + [8] = { 41.5, 43, 16, 120 }, + [9] = { 59.8, 39.4, 17, 120 }, + [10] = { 52.3, 97.6, 36, 120 }, + [11] = { 52.2, 97.4, 36, 120 }, + [12] = { 34, 80.7, 40, 120 }, + [13] = { 34.1, 80.6, 40, 120 }, + [14] = { 34.2, 80.3, 40, 120 }, + [15] = { 61.9, 53.2, 47, 120 }, + [16] = { 61.9, 53.1, 47, 120 }, + [17] = { 32.6, 73.3, 51, 120 }, + [18] = { 33, 72.6, 51, 120 }, + [19] = { 32.8, 72.6, 51, 120 }, + [20] = { 54.3, 69.8, 130, 120 }, + [21] = { 54.3, 69.7, 130, 120 }, + [22] = { 54.5, 69.4, 130, 120 }, + [23] = { 57.5, 73, 139, 120 }, + [24] = { 57.4, 72.9, 139, 120 }, + [25] = { 57.5, 72.4, 139, 120 }, + [26] = { 57.6, 72.3, 139, 120 }, + [27] = { 41.6, 90.7, 148, 120 }, + [28] = { 41.4, 90.7, 148, 120 }, + [29] = { 41.6, 90.6, 148, 120 }, + [30] = { 54.6, 33.8, 267, 120 }, + [31] = { 54.5, 33.6, 267, 120 }, + [32] = { 64.7, 71.5, 331, 120 }, + [33] = { 64.8, 71.5, 331, 120 }, + [34] = { 64.7, 71.3, 331, 120 }, + [35] = { 59.6, 72.6, 406, 120 }, + [36] = { 59.4, 72.6, 406, 120 }, + [37] = { 59.4, 72.4, 406, 120 }, + [38] = { 70.1, 76, 490, 120 }, + [39] = { 70.1, 75.9, 490, 120 }, + [40] = { 19.4, 17.4, 490, 120 }, + [41] = { 19.5, 17.3, 490, 120 }, + [42] = { 30.8, 43.1, 618, 120 }, + [43] = { 30.8, 43, 618, 120 }, + [44] = { 78.2, 18.8, 1377, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-60", + }, + [16783] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16784] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16785] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16786] = { + ["coords"] = { + [1] = { 80.7, 59.9, 139, 120 }, + [2] = { 81, 59.7, 139, 120 }, + [3] = { 25.4, 56.7, 141, 120 }, + [4] = { 25.3, 56.4, 141, 120 }, + [5] = { 54.6, 62.2, 1519, 120 }, + [6] = { 54.8, 62.1, 1519, 120 }, + [7] = { 33.9, 67.8, 1537, 120 }, + [8] = { 29.6, 61.4, 1537, 120 }, + [9] = { 29.4, 60, 1537, 120 }, + [10] = { 39.5, 46.9, 1657, 120 }, + [11] = { 39.1, 45.4, 1657, 120 }, + }, + ["lvl"] = "55", + }, + [16787] = { + ["coords"] = { + [1] = { 80.8, 59.5, 139, 120 }, + [2] = { 38.4, 28.7, 215, 120 }, + [3] = { 38.6, 28.7, 215, 120 }, + [4] = { 65.5, 46.6, 1497, 120 }, + [5] = { 65, 45.6, 1497, 120 }, + [6] = { 52.1, 73.8, 1637, 120 }, + [7] = { 53.1, 73.5, 1637, 120 }, + [8] = { 42.1, 58.5, 1638, 120 }, + [9] = { 43.1, 58.3, 1638, 120 }, + }, + ["lvl"] = "55", + }, + [16788] = { + ["coords"] = { + [1] = { 56.5, 92, 141, 120 }, + [2] = { 34.2, 22.1, 215, 120 }, + [3] = { 87.7, 49.4, 405, 120 }, + [4] = { 65.5, 36.3, 1497, 120 }, + [5] = { 38.5, 61.3, 1519, 120 }, + [6] = { 63.6, 24.7, 1537, 120 }, + [7] = { 42.6, 34.3, 1637, 120 }, + [8] = { 21.5, 25.9, 1638, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16803] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16817] = { + ["coords"] = { + [1] = { 56.6, 92.3, 141, 120 }, + [2] = { 39.2, 61.4, 1519, 120 }, + [3] = { 63.8, 25.5, 1537, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16818] = { + ["coords"] = { + [1] = { 34.2, 22.4, 215, 120 }, + [2] = { 87.7, 49.7, 405, 120 }, + [3] = { 66.5, 38.1, 1497, 120 }, + [4] = { 42.5, 34.6, 1637, 120 }, + [5] = { 21.5, 27.2, 1638, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16861] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16889] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "1-60", + }, + [16890] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "1-60", + }, + [16891] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [16892] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "1-60", + }, + [16893] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "1-60", + }, + [16894] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "1-60", + }, + [16895] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "1-60", + }, + [16979] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [16980] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [16981] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16982] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16983] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16984] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16985] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [16986] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [16987] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [16988] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [16989] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [16990] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [16995] = { + ["coords"] = { + [1] = { 46.4, 9.1, 14, 120 }, + [2] = { 61.8, 67.4, 85, 120 }, + [3] = { 30.8, 55.3, 141, 120 }, + [4] = { 36.5, 30, 215, 120 }, + [5] = { 66.2, 11.3, 1497, 120 }, + [6] = { 60.3, 75.5, 1519, 120 }, + [7] = { 21.8, 77.6, 1537, 120 }, + [8] = { 52.4, 84, 1637, 120 }, + [9] = { 32.9, 64.7, 1638, 120 }, + [10] = { 65.4, 40.4, 1657, 120 }, + }, + ["lvl"] = "60", + }, + [16998] = { + ["coords"] = {}, + ["lvl"] = "5", + }, + [16999] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [17003] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [17025] = { + ["coords"] = {}, + ["lvl"] = "63", + }, + [17031] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "35", + }, + [17032] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "35", + }, + [17038] = { + ["coords"] = { + [1] = { 38.8, 62.5, 1519, 120 }, + [2] = { 38.6, 62.3, 1519, 120 }, + [3] = { 37.9, 61.6, 1519, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "1-60", + }, + [17041] = { + ["coords"] = { + [1] = { 42.6, 33.7, 1637, 120 }, + [2] = { 42.7, 33.6, 1637, 120 }, + [3] = { 43.4, 33.1, 1637, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "1-60", + }, + [17048] = { + ["coords"] = { + [1] = { 64.5, 26.2, 1537, 120 }, + [2] = { 64.2, 26, 1537, 120 }, + [3] = { 64.4, 23.3, 1537, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "1-60", + }, + [17049] = { + ["coords"] = { + [1] = { 56.6, 92.1, 141, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "1-60", + }, + [17050] = { + ["coords"] = { + [1] = { 34, 22.5, 215, 120 }, + [2] = { 34, 22.4, 215, 120 }, + [3] = { 87.5, 49.9, 405, 120 }, + [4] = { 87.4, 49.8, 405, 120 }, + [5] = { 20.8, 27.8, 1638, 120 }, + [6] = { 20.4, 27.3, 1638, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "1-60", + }, + [17051] = { + ["coords"] = { + [1] = { 65.5, 37.3, 1497, 120 }, + [2] = { 66.6, 36.5, 1497, 120 }, + [3] = { 66.5, 36.2, 1497, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "1-60", + }, + [17055] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [17066] = { + ["coords"] = { + [1] = { 53.9, 32, 4, 120 }, + [2] = { 51, 17.3, 11, 120 }, + [3] = { 41.7, 42.7, 16, 120 }, + [4] = { 59.8, 39.1, 17, 120 }, + [5] = { 51.7, 97.2, 36, 120 }, + [6] = { 34.3, 80, 40, 120 }, + [7] = { 62.3, 53.1, 47, 120 }, + [8] = { 32.7, 73.9, 51, 120 }, + [9] = { 54.2, 69.2, 130, 120 }, + [10] = { 57.8, 72.6, 139, 120 }, + [11] = { 56.6, 91.5, 141, 120 }, + [12] = { 41.6, 90.8, 148, 120 }, + [13] = { 33.8, 22.3, 215, 120 }, + [14] = { 54.1, 33.5, 267, 120 }, + [15] = { 64.9, 71.1, 331, 120 }, + [16] = { 87.2, 49.6, 405, 120 }, + [17] = { 59.7, 72.7, 406, 120 }, + [18] = { 69.8, 75.3, 490, 120 }, + [19] = { 19.7, 17.4, 490, 120 }, + [20] = { 30.4, 43.3, 618, 120 }, + [21] = { 78.4, 18.8, 1377, 120 }, + [22] = { 67.2, 35.6, 1497, 120 }, + [23] = { 39.4, 62.5, 1519, 120 }, + [24] = { 66.2, 25.4, 1537, 120 }, + [25] = { 42.2, 32.6, 1637, 120 }, + [26] = { 19.7, 26.7, 1638, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [17068] = { + ["coords"] = { + [1] = { 33.3, 51.1, 1377, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [17069] = { + ["coords"] = { + [1] = { 81.3, 59.4, 139, 345 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [17070] = { + ["coords"] = { + [1] = { 50.7, 69.7, 1377, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [17072] = { + ["coords"] = { + [1] = { 80, 57.4, 139, 345 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [17074] = { + ["coords"] = { + [1] = { 47.3, 38, 1377, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [17075] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "2", + }, + [17078] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [17079] = { + ["coords"] = { + [1] = { 50.8, 69.5, 1377, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [17080] = { + ["coords"] = { + [1] = { 33.3, 51.1, 1377, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [17081] = { + ["coords"] = { + [1] = { 49, 36.7, 1377, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [17082] = { + ["coords"] = { + [1] = { 50.7, 34.7, 1377, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [17090] = { + ["coords"] = { + [1] = { 32.9, 50.8, 1377, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [17163] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [17209] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [17231] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [17239] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [17249] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [17254] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [17255] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [17258] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [17266] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [17284] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [17286] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [17293] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [17313] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [17415] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [17466] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [17598] = { + ["coords"] = { + [1] = { 76.9, 81.4, 47, 350 }, + }, + ["fac"] = "H", + ["lvl"] = "46", + }, + [17635] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "60", + }, + [17647] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "60", + }, + [17660] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [17685] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [17688] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [17689] = { + ["coords"] = { + [1] = { 39.7, 75.4, 139, 518 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [17690] = { + ["coords"] = { + [1] = { 67.4, 48, 139, 518 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [17691] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [17696] = { + ["coords"] = { + [1] = { 56.6, 24.4, 139, 518 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [17697] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [17698] = { + ["coords"] = { + [1] = { 22, 32, 139, 518 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [17699] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [17719] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "60", + }, + [17720] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "60", + }, + [17765] = { + ["coords"] = { + [1] = { 33, 50.7, 1377, 600 }, + [2] = { 32.8, 50.7, 1377, 600 }, + [3] = { 32.6, 50.6, 1377, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [17766] = { + ["coords"] = { + [1] = { 51.1, 70.5, 1377, 600 }, + [2] = { 51.3, 70.5, 1377, 600 }, + [3] = { 50.9, 70.3, 1377, 600 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [17794] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "1", + }, + [17795] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "1", + }, + [17804] = { + ["coords"] = { + [1] = { 70.4, 85.2, 1519, 420 }, + }, + ["fac"] = "A", + ["lvl"] = "52", + }, + [17869] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [17995] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "60", + }, + [17996] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "60", + }, + [18039] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [18078] = { + ["coords"] = {}, + ["lvl"] = "5", + }, + [18153] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [18199] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [21000] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [21010] = { + ["coords"] = { + [1] = { 45.1, 47.8, 1377, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, +} + +-- Source: https://raw.githubusercontent.com/shagu/pfQuest-turtle/master/db/enUS/units-turtle.lua +RelationshipsQuestAndItemBrowserData["units"]["enUS-turtle"] = { + [4] = "Snowy Gryphon", + [5] = "Ebon Gryphon", + [7] = "*", + [8] = "Trash Collector Gaston", + [9] = "Baron Bobby", + [10] = "invisible_npc-controller", + [11] = "Knockback Trigger", + [12] = "Feid Rota", + [13] = "Armored Snowy Gryphon", + [14] = "Armored Ebon Gryphon", + [15] = "Argent Hippogryph", + [16] = "Stormwrought Deathsteed", + [17] = "Illusion: Blood Elf", + [18] = "Forbidden Area Trigger", + [19] = "_", + [20] = "invisible_npc-controller(for go gossip)", + [21] = "Forest Dryad", + [22] = "Illusion: Pandaren", + [23] = "Illusion: Flamewaker", + [24] = "Illusion: Chromie", + [25] = "Illusion: Rat", + [26] = "Illusion: Bone Serpent", + [27] = "Illusion: Dreadlord", + [28] = "Illusion: Smolderthorn Berserker", + [29] = "Illusion: Naga Explorer", + [32] = "Frost Dryad", + [33] = "Illusion: Naga Siren", + [34] = "Illusion: Shade", + [35] = "Illusion: Bishop", + [37] = "Mirkfallon Dryad", + [39] = "Twisted Grove Dryad", + [41] = "Amberleaf Dryad", + [42] = "Illusion: King", + [44] = "Lunar Dryad", + [47] = "Illusion: Rook", + [49] = "Illusion: Green Dragonkin", + [50] = "Illusion: Incubus", + [63] = "Illusion: Banshee", + [64] = "Illusion: Harpy", + [70] = "Illusion: Worgen", + [71] = "Illusion: Gnoll", + [72] = "Illusion: Satyr", + [73] = "Illusion: Succubus", + [75] = "Illusion: Gilnean Worgen", + [76] = "Illusion: Ghoul", + [77] = "Illusion: Felguard", + [81] = "Illusion: Murloc", + [82] = "_", + [83] = "Illusion: Ghost", + [84] = "Illusion: Baby Murloc", + [85] = "Illusion: Celestial Dragon", + [86] = "Illusion: Zombie", + [87] = "Illusion: Blue Dragonkin", + [88] = "Illusion: Scourge Mage", + [90] = "Illusion: Two-headed Ogre", + [91] = "Illusion: Furbolg", + [93] = "Illusion: Serpent Lord", + [101] = "Illusion: Prismatic Dragonkin", + [102] = "Illusion: Chromatic Dragonkin", + [104] = "Illusion: Infinite Dragonkin", + [105] = "Illusion: Bronze Dragonkin", + [106] = "Illusion: Dryad", + [107] = "Illusion: Keeper of the Grove", + [108] = "_", + [109] = "_", + [111] = "_", + [112] = "_", + [120] = "_", + [129] = "_", + [130] = "_", + [149] = "_", + [150] = "_", + [153] = "_", + [161] = "_", + [163] = "_", + [165] = "_", + [172] = "Snippy", + [192] = "_", + [200] = "_", + [201] = "_", + [204] = "_", + [207] = "_", + [208] = "_", + [209] = "_", + [211] = "_", + [219] = "_", + [220] = "_", + [221] = "_", + [224] = "_", + [229] = "_", + [230] = "_", + [242] = "_", + [243] = "_", + [260] = "_", + [262] = "_", + [280] = "_", + [281] = "_", + [282] = "_", + [283] = "_", + [284] = "Brown Riding Horse", + [286] = "_", + [287] = "_", + [290] = "_", + [291] = "_", + [296] = "_", + [298] = "_", + [301] = "_", + [303] = "_", + [305] = "White Stallion", + [308] = "Black Stallion", + [309] = "_", + [318] = "_", + [319] = "_", + [320] = "_", + [321] = "_", + [322] = "_", + [323] = "_", + [324] = "_", + [326] = "_", + [333] = "_", + [336] = "_", + [339] = "_", + [353] = "_", + [354] = "_", + [361] = "_", + [365] = "Illusion: Forest Warden", + [366] = "Illusion: Winter Forest Warden", + [367] = "Illusion: Mirkfallon Warden", + [368] = "Illusion: Mirkfallon Warden", + [369] = "Illusion: Amberleaf Protector", + [370] = "_", + [371] = "_", + [373] = "_", + [380] = "_", + [386] = "_", + [387] = "_", + [388] = "Illusion: Scourge Warrior", + [389] = "_", + [393] = "_", + [399] = "_", + [400] = "_", + [401] = "_", + [402] = "_", + [403] = "_", + [404] = "_", + [405] = "_", + [406] = "_", + [407] = "_", + [408] = "_", + [409] = "_", + [410] = "_", + [411] = "_", + [418] = "_", + [421] = "_", + [444] = "_", + [470] = "_", + [496] = "_", + [497] = "_", + [498] = "_", + [509] = "_", + [516] = "_", + [535] = "_", + [536] = "_", + [538] = "_", + [542] = "_", + [564] = "_", + [566] = "_", + [567] = "_", + [586] = "_", + [592] = "_", + [601] = "_", + [605] = "_", + [606] = "_", + [607] = "_", + [609] = "_", + [610] = "_", + [611] = "_", + [612] = "_", + [613] = "_", + [614] = "_", + [631] = "_", + [638] = "_", + [648] = "_", + [649] = "_", + [650] = "_", + [651] = "_", + [652] = "_", + [653] = "_", + [693] = "_", + [700] = "_", + [725] = "_", + [749] = "_", + [753] = "_", + [758] = "_", + [803] = "Quel\'dorei Dragonhawk", + [809] = "_", + [841] = "_", + [860] = "_", + [882] = "_", + [897] = "_", + [904] = "_", + [919] = "_", + [924] = "_", + [929] = "Dreadlord", + [953] = "_", + [994] = "_", + [995] = "_", + [996] = "_", + [1055] = "_", + [1056] = "_", + [1058] = "_", + [1066] = "_", + [1067] = "_", + [1171] = "_", + [1227] = "_", + [1230] = "_", + [1235] = "_", + [1262] = "_", + [1288] = "_", + [1290] = "_", + [1293] = "_", + [1306] = "_", + [1361] = "_", + [1384] = "_", + [1392] = "_", + [1401] = "_", + [1403] = "_", + [1406] = "_", + [1408] = "_", + [1409] = "_", + [1410] = "_", + [1455] = "_", + [1467] = "_", + [1468] = "_", + [1485] = "_", + [1541] = "_", + [1546] = "_", + [1567] = "_", + [1574] = "_", + [1575] = "_", + [1576] = "_", + [1577] = "_", + [1578] = "_", + [1579] = "_", + [1580] = "_", + [1581] = "_", + [1582] = "_", + [1583] = "_", + [1584] = "_", + [1585] = "_", + [1586] = "_", + [1587] = "_", + [1588] = "_", + [1589] = "_", + [1590] = "_", + [1591] = "_", + [1592] = "_", + [1593] = "_", + [1594] = "_", + [1595] = "_", + [1596] = "_", + [1597] = "_", + [1598] = "_", + [1599] = "_", + [1600] = "_", + [1601] = "_", + [1602] = "_", + [1603] = "_", + [1604] = "_", + [1605] = "_", + [1606] = "_", + [1607] = "_", + [1608] = "_", + [1609] = "_", + [1613] = "_", + [1614] = "_", + [1615] = "_", + [1616] = "_", + [1617] = "_", + [1618] = "_", + [1619] = "_", + [1620] = "_", + [1621] = "_", + [1622] = "_", + [1623] = "_", + [1624] = "_", + [1625] = "_", + [1626] = "_", + [1627] = "_", + [1628] = "_", + [1629] = "_", + [1631] = "_", + [1633] = "_", + [1634] = "_", + [1635] = "_", + [1636] = "_", + [1637] = "_", + [1638] = "_", + [1639] = "_", + [1640] = "_", + [1641] = "_", + [1643] = "_", + [1644] = "_", + [1649] = "_", + [1659] = "_", + [1677] = "_", + [1714] = "_", + [1723] = "_", + [1724] = "_", + [1730] = "_", + [1757] = "_", + [1758] = "_", + [1759] = "_", + [1760] = "_", + [1761] = "_", + [1762] = "_", + [1798] = "_", + [1810] = "_", + [1811] = "_", + [1819] = "_", + [1820] = "_", + [1849] = "_", + [1857] = "_", + [1858] = "_", + [1859] = "_", + [1861] = "_", + [1862] = "_", + [1864] = "_", + [1879] = "_", + [1881] = "_", + [1925] = "_", + [1926] = "_", + [1927] = "_", + [1928] = "_", + [1929] = "_", + [1930] = "_", + [1932] = "_", + [1945] = "_", + [1979] = "_", + [1980] = "_", + [1987] = "_", + [1990] = "_", + [1991] = "_", + [2040] = "_", + [2045] = "_", + [2051] = "_", + [2052] = "_", + [2087] = "_", + [2095] = "_", + [2109] = "_", + [2133] = "_", + [2138] = "_", + [2154] = "_", + [2197] = "_", + [2199] = "_", + [2200] = "_", + [2213] = "_", + [2217] = "_", + [2218] = "_", + [2219] = "_", + [2220] = "_", + [2221] = "_", + [2222] = "_", + [2223] = "_", + [2279] = "_", + [2280] = "_", + [2281] = "_", + [2282] = "_", + [2286] = "_", + [2288] = "_", + [2289] = "_", + [2290] = "_", + [2291] = "_", + [2292] = "_", + [2293] = "_", + [2294] = "_", + [2295] = "_", + [2296] = "_", + [2297] = "_", + [2298] = "_", + [2300] = "_", + [2301] = "_", + [2312] = "_", + [2313] = "_", + [2325] = "_", + [2424] = "_", + [2441] = "_", + [2472] = "_", + [2593] = "_", + [2614] = "_", + [2615] = "_", + [2617] = "_", + [2637] = "_", + [2662] = "_", + [2665] = "_", + [2689] = "_", + [2690] = "_", + [2702] = "_", + [2709] = "_", + [2710] = "_", + [2741] = "_", + [2746] = "_", + [2756] = "_", + [2797] = "_", + [2807] = "_", + [2809] = "_", + [2813] = "_", + [2815] = "_", + [2833] = "_", + [2862] = "_", + [2863] = "_", + [2864] = "_", + [2865] = "_", + [2866] = "_", + [2867] = "_", + [2868] = "_", + [2869] = "_", + [2871] = "_", + [2872] = "_", + [2873] = "_", + [2874] = "_", + [2875] = "_", + [2877] = "_", + [2883] = "_", + [2885] = "_", + [2886] = "_", + [2889] = "_", + [2890] = "_", + [2891] = "_", + [2896] = "_", + [2899] = "_", + [2935] = "_", + [2938] = "_", + [2939] = "_", + [2940] = "_", + [2942] = "_", + [3070] = "_", + [3071] = "_", + [3082] = "_", + [3146] = "_", + [3148] = "_", + [3151] = "_", + [3152] = "_", + [3176] = "_", + [3200] = "_", + [3201] = "_", + [3202] = "_", + [3259] = "_", + [3262] = "_", + [3299] = "_", + [3302] = "_", + [3303] = "_", + [3307] = "_", + [3420] = "_", + [3427] = "_", + [3437] = "_", + [3440] = "_", + [3460] = "_", + [3462] = "_", + [3525] = "_", + [3558] = "_", + [3559] = "_", + [3564] = "_", + [3565] = "_", + [3575] = "_", + [3580] = "_", + [3623] = "_", + [3642] = "_", + [3651] = "_", + [3668] = "_", + [3697] = "_", + [3699] = "_", + [3718] = "_", + [3777] = "_", + [3778] = "_", + [3793] = "_", + [3794] = "_", + [3795] = "_", + [3796] = "_", + [3826] = "_", + [3831] = "_", + [3832] = "_", + [3839] = "_", + [3852] = "_", + [3860] = "_", + [3869] = "_", + [3870] = "_", + [3876] = "_", + [3878] = "_", + [3895] = "_", + [3896] = "Captain Placeholder", + [3938] = "_", + [3957] = "_", + [3966] = "_", + [3971] = "_", + [3972] = "_", + [3973] = "_", + [3990] = "_", + [3997] = "_", + [4033] = "_", + [4039] = "_", + [4045] = "_", + [4055] = "_", + [4069] = "_", + [4071] = "_", + [4098] = "_", + [4115] = "_", + [4121] = "_", + [4149] = "_", + [4153] = "_", + [4157] = "_", + [4174] = "_", + [4176] = "_", + [4178] = "_", + [4179] = "_", + [4206] = "_", + [4207] = "_", + [4224] = "_", + [4237] = "_", + [4239] = "_", + [4245] = "_", + [4246] = "_", + [4247] = "_", + [4313] = "_", + [4315] = "_", + [4318] = "_", + [4322] = "_", + [4333] = "_", + [4340] = "_", + [4395] = "_", + [4439] = "_", + [4443] = "_", + [4445] = "_", + [4446] = "_", + [4449] = "_", + [4450] = "_", + [4476] = "_", + [4482] = "_", + [4487] = "_", + [4491] = "_", + [4497] = "_", + [4579] = "_", + [4621] = "_", + [4626] = "_", + [4669] = "_", + [4683] = "_", + [4691] = "_", + [4703] = "_", + [4704] = "_", + [4710] = "Gray Riding Ram", + [4717] = "_", + [4724] = "_", + [4725] = "_", + [4779] = "Brown Riding Ram", + [4816] = "_", + [4862] = "_", + [4881] = "_", + [4882] = "_", + [4942] = "_", + [4955] = "_", + [4957] = "_", + [4970] = "_", + [4975] = "_", + [4976] = "_", + [4985] = "_", + [4986] = "_", + [4987] = "_", + [4988] = "_", + [4989] = "_", + [4990] = "_", + [4991] = "_", + [4992] = "_", + [4993] = "_", + [4994] = "_", + [4997] = "_", + [4998] = "_", + [4999] = "_", + [5000] = "_", + [5001] = "_", + [5002] = "_", + [5003] = "_", + [5004] = "_", + [5005] = "_", + [5006] = "_", + [5007] = "_", + [5008] = "_", + [5009] = "_", + [5010] = "_", + [5011] = "_", + [5012] = "_", + [5013] = "_", + [5014] = "_", + [5015] = "_", + [5016] = "_", + [5017] = "_", + [5018] = "_", + [5019] = "_", + [5020] = "_", + [5021] = "_", + [5022] = "_", + [5023] = "_", + [5024] = "_", + [5026] = "_", + [5027] = "_", + [5028] = "_", + [5029] = "_", + [5030] = "_", + [5031] = "_", + [5033] = "_", + [5034] = "_", + [5035] = "_", + [5036] = "_", + [5039] = "_", + [5050] = "_", + [5051] = "_", + [5059] = "_", + [5060] = "_", + [5061] = "_", + [5062] = "_", + [5063] = "_", + [5064] = "_", + [5084] = "_", + [5098] = "_", + [5104] = "_", + [5105] = "_", + [5131] = "_", + [5187] = "_", + [5192] = "_", + [5201] = "_", + [5231] = "_", + [5264] = "_", + [5315] = "_", + [5326] = "_", + [5348] = "_", + [5355] = "_", + [5367] = "_", + [5415] = "_", + [5433] = "_", + [5436] = "_", + [5437] = "_", + [5438] = "_", + [5439] = "_", + [5440] = "_", + [5442] = "_", + [5443] = "_", + [5444] = "_", + [5445] = "_", + [5446] = "_", + [5447] = "_", + [5448] = "_", + [5449] = "_", + [5468] = "_", + [5507] = "_", + [5521] = "_", + [5522] = "_", + [5524] = "_", + [5525] = "_", + [5526] = "_", + [5542] = "_", + [5544] = "_", + [5548] = "_", + [5549] = "_", + [5550] = "_", + [5551] = "_", + [5552] = "_", + [5553] = "_", + [5554] = "_", + [5555] = "_", + [5556] = "_", + [5557] = "_", + [5558] = "_", + [5559] = "_", + [5560] = "_", + [5561] = "_", + [5562] = "_", + [5563] = "_", + [5587] = "_", + [5588] = "_", + [5589] = "_", + [5590] = "_", + [5596] = "_", + [5604] = "_", + [5621] = "_", + [5625] = "_", + [5626] = "_", + [5627] = "_", + [5628] = "_", + [5629] = "_", + [5630] = "_", + [5631] = "_", + [5632] = "_", + [5633] = "_", + [5671] = "_", + [5672] = "_", + [5678] = "_", + [5689] = "_", + [5735] = "Caged Human", + [5736] = "Caged Human", + [5737] = "_", + [5740] = "_", + [5745] = "_", + [5746] = "_", + [5764] = "_", + [5776] = "_", + [5777] = "_", + [5778] = "_", + [5779] = "_", + [5788] = "_", + [5789] = "_", + [5790] = "_", + [5793] = "_", + [5794] = "_", + [5795] = "_", + [5796] = "_", + [5801] = "_", + [5813] = "_", + [5818] = "_", + [5825] = "_", + [5866] = "_", + [5867] = "_", + [5868] = "_", + [5876] = "_", + [5877] = "_", + [5903] = "_", + [5904] = "_", + [5936] = "_", + [5945] = "_", + [5948] = "Pirate", + [5949] = " Pirate", + [5954] = "_", + [5956] = "_", + [5959] = "_", + [5960] = "_", + [5961] = "_", + [5962] = "_", + [5963] = "_", + [5964] = "_", + [5965] = "_", + [5966] = "_", + [5967] = "_", + [5968] = "_", + [5969] = "_", + [5970] = "_", + [5971] = "_", + [5972] = "_", + [5973] = "_", + [5980] = "_", + [5986] = "_", + [5987] = "_", + [5989] = "_", + [5995] = "_", + [6022] = "_", + [6023] = "_", + [6029] = "High Elf Hunter", + [6032] = "_", + [6036] = "Infinite Whelp", + [6046] = "_", + [6067] = "_", + [6092] = "_", + [6106] = "_", + [6107] = "_", + [6108] = "_", + [6183] = "_", + [6197] = "_", + [6214] = "_", + [6242] = "_", + [6269] = "_", + [6270] = "_", + [6296] = "_", + [6326] = "_", + [6327] = "_", + [6346] = "_", + [6526] = "_", + [6561] = "_", + [6578] = "_", + [6687] = "_", + [6688] = "_", + [6767] = "_", + [6769] = "_", + [6770] = "_", + [6772] = "_", + [6773] = "_", + [6783] = "_", + [6827] = "_", + [6926] = "_", + [6931] = "_", + [7006] = "_", + [7008] = "_", + [7013] = "_", + [7014] = "_", + [7094] = "_", + [7095] = "_", + [7096] = "_", + [7116] = "_", + [7117] = "_", + [7119] = "_", + [7121] = "_", + [7122] = "_", + [7123] = "_", + [7124] = "_", + [7127] = "_", + [7128] = "_", + [7129] = "_", + [7130] = "_", + [7131] = "_", + [7133] = "_", + [7134] = "_", + [7143] = "_", + [7144] = "_", + [7146] = "_", + [7150] = "_", + [7151] = "_", + [7152] = "_", + [7173] = "_", + [7174] = "_", + [7186] = "_", + [7227] = "_", + [7229] = "_", + [7236] = "_", + [7270] = "_", + [7299] = "Icepoint Rock Boat", + [7314] = "_", + [7373] = "_", + [7374] = "_", + [7375] = "_", + [7377] = "_", + [7378] = "_", + [7383] = "Black Tabby", + [7388] = "_", + [7392] = "Farm Chicken", + [7393] = "_", + [7488] = "_", + [7525] = "_", + [7526] = "_", + [7528] = "_", + [7560] = "Snowshoe", + [7563] = "_", + [7570] = "Forest Wisp", + [7624] = "_", + [7663] = "_", + [7743] = "_", + [7745] = "_", + [7746] = "_", + [7747] = "_", + [7748] = "_", + [7896] = "_", + [7906] = "_", + [7919] = "_", + [7935] = "_", + [7938] = "_", + [8148] = "_", + [8206] = "_", + [8316] = "_", + [8321] = "_", + [8322] = "_", + [8323] = "_", + [8377] = "_", + [8406] = "_", + [8407] = "_", + [8450] = "Goblin\'s Flying Machine", + [8498] = "_", + [8499] = "_", + [8500] = "_", + [8501] = "_", + [8502] = "_", + [8536] = "_", + [8537] = "_", + [8549] = "_", + [8552] = "_", + [8559] = "_", + [8599] = "_", + [8613] = "_", + [8620] = "Incubus", + [8663] = "_", + [8676] = "_", + [8677] = "_", + [8765] = "_", + [8777] = "_", + [8796] = "_", + [8880] = "_", + [8935] = "_", + [9180] = "_", + [9275] = "_", + [9276] = "_", + [9320] = "Pipoca the Searunner", + [9417] = "_", + [9557] = "_", + [9567] = "_", + [9576] = "_", + [9577] = "_", + [9578] = "_", + [9579] = "_", + [9580] = "_", + [9581] = "_", + [9582] = "_", + [9617] = "_", + [9658] = "_", + [9659] = "_", + [9660] = "Agnar Beasttamer", + [9686] = "_", + [9702] = "_", + [9703] = "_", + [9704] = "_", + [9820] = "_", + [9837] = "_", + [9896] = "_", + [9939] = "Mr. Shang", + [9940] = "The Peach King", + [9941] = "Dragunastrasz", + [9947] = "Kiki", + [9948] = "Talos", + [9958] = "Whiskers", + [10044] = "_", + [10084] = "_", + [10156] = "_", + [10203] = "_", + [10236] = "_", + [10237] = "_", + [10238] = "_", + [10239] = "_", + [10256] = "_", + [10265] = "_", + [10291] = "_", + [10292] = "_", + [10294] = "_", + [10295] = "_", + [10297] = "_", + [10298] = "_", + [10362] = "_", + [10365] = "_", + [10368] = "_", + [10395] = "_", + [10397] = "_", + [10401] = "_", + [10402] = "_", + [10403] = "_", + [10404] = "_", + [10443] = "_", + [10444] = "_", + [10446] = "_", + [10448] = "_", + [10449] = "_", + [10450] = "_", + [10451] = "_", + [10452] = "_", + [10453] = "_", + [10454] = "_", + [10466] = "_", + [10473] = "_", + [10483] = "_", + [10484] = "_", + [10492] = "_", + [10493] = "_", + [10494] = "_", + [10510] = "_", + [10607] = "_", + [10620] = "_", + [10736] = "_", + [10810] = "_", + [10818] = "_", + [10820] = "_", + [10898] = "_", + [10931] = "Aurius", + [10985] = "Muzzled Frostwolf", + [10989] = "Tamed Alterac Ram", + [11045] = "_", + [11058] = "Halric Emberlain", + [11080] = "_", + [11144] = "_", + [11292] = "_", + [11337] = "_", + [11341] = "_", + [11342] = "_", + [11343] = "_", + [11344] = "_", + [11345] = "_", + [11349] = "_", + [11354] = "_", + [11358] = "_", + [11364] = "_", + [11366] = "_", + [11367] = "_", + [11369] = "_", + [11375] = "_", + [11376] = "_", + [11377] = "_", + [11379] = "_", + [11381] = "_", + [11384] = "_", + [11385] = "_", + [11386] = "_", + [11392] = "_", + [11393] = "_", + [11394] = "_", + [11395] = "_", + [11396] = "_", + [11398] = "_", + [11399] = "_", + [11400] = "_", + [11402] = "_", + [11403] = "_", + [11404] = "_", + [11405] = "_", + [11408] = "_", + [11409] = "_", + [11410] = "_", + [11411] = "_", + [11412] = "_", + [11413] = "_", + [11414] = "_", + [11415] = "_", + [11416] = "_", + [11449] = "_", + [11463] = "_", + [11468] = "_", + [11474] = "_", + [11478] = "_", + [11479] = "_", + [11481] = "_", + [11493] = "_", + [11495] = "_", + [11499] = "_", + [11500] = "Ganum Highmountain", + [11537] = "_", + [11538] = "_", + [11539] = "_", + [11540] = "_", + [11541] = "_", + [11542] = "_", + [11543] = "_", + [11544] = "_", + [11545] = "_", + [11549] = "_", + [11550] = "_", + [11579] = "_", + [11580] = "_", + [11581] = "_", + [11597] = "_", + [11599] = "_", + [11601] = "_", + [11606] = "_", + [11617] = "_", + [11618] = "_", + [11619] = "_", + [11660] = "_", + [11670] = "_", + [11676] = "_", + [11719] = "_", + [11742] = "_", + [11743] = "_", + [11779] = "_", + [11780] = "_", + [11809] = "_", + [11902] = "_", + [11903] = "_", + [11904] = "_", + [11905] = "_", + [11906] = "_", + [11907] = "_", + [11908] = "_", + [11909] = "_", + [11919] = "_", + [11926] = "_", + [11938] = "_", + [11958] = "_", + [11959] = "_", + [11978] = "_", + [11980] = "_", + [12020] = "_", + [12035] = "_", + [12036] = "_", + [12038] = "_", + [12039] = "_", + [12040] = "_", + [12044] = "_", + [12054] = "_", + [12142] = "_", + [12176] = "_", + [12177] = "_", + [12180] = "_", + [12200] = "_", + [12317] = "_", + [12386] = "_", + [12417] = "_", + [12421] = "_", + [12462] = "_", + [12466] = "_", + [12469] = "_", + [12470] = "_", + [12516] = "_", + [12517] = "_", + [12536] = "_", + [12741] = "_", + [12804] = "_", + [12806] = "_", + [12857] = "_", + [12916] = "_", + [12917] = "_", + [13056] = "_", + [13156] = "_", + [13281] = "_", + [13305] = "Mechanical Horse", + [13339] = "_", + [13496] = "_", + [13760] = "Alurzion", + [13761] = "Alurzion", + [13838] = "_", + [13856] = "_", + [13857] = "_", + [13977] = "_", + [14016] = "_", + [14017] = "_", + [14018] = "_", + [14019] = "_", + [14042] = "_", + [14141] = "_", + [14142] = "_", + [14143] = "_", + [14144] = "_", + [14145] = "_", + [14146] = "_", + [14147] = "_", + [14148] = "_", + [14161] = "_", + [14162] = "_", + [14181] = "_", + [14201] = "_", + [14242] = "_", + [14341] = "_", + [14346] = "_", + [14352] = "_", + [14391] = "_", + [14406] = "_", + [14599] = "High Priest Thekal", + [14641] = "_", + [14642] = "_", + [14643] = "_", + [14644] = "_", + [14683] = "_", + [14685] = "_", + [14687] = "_", + [14688] = "_", + [14689] = "_", + [14691] = "_", + [14692] = "_", + [14694] = "_", + [14696] = "_", + [14698] = "_", + [14699] = "_", + [14700] = "_", + [14701] = "_", + [14702] = "_", + [14703] = "_", + [14704] = "_", + [14705] = "_", + [14706] = "_", + [14707] = "_", + [14708] = "_", + [14709] = "_", + [14710] = "_", + [14711] = "_", + [14712] = "_", + [14713] = "_", + [14714] = "_", + [14719] = "_", + [14735] = "_", + [14746] = "_", + [14801] = "_", + [14824] = "_", + [14830] = "_", + [14831] = "_", + [14851] = "_", + [14852] = "_", + [14853] = "_", + [14854] = "_", + [14855] = "_", + [14856] = "_", + [14858] = "_", + [14870] = "_", + [14885] = "_", + [14886] = "_", + [14891] = "Charlotte", + [14906] = "_", + [14913] = "_", + [15000] = "Spiderling", + [15081] = "_", + [15118] = "_", + [15121] = "_", + [15123] = "_", + [15133] = "_", + [15134] = "_", + [15142] = "_", + [15143] = "_", + [15144] = "_", + [15145] = "_", + [15151] = "_", + [15152] = "_", + [15153] = "_", + [15154] = "_", + [15155] = "_", + [15156] = "_", + [15157] = "_", + [15158] = "_", + [15159] = "_", + [15160] = "_", + [15161] = "_", + [15166] = "_", + [15167] = "_", + [15173] = "_", + [15198] = "_", + [15210] = "_", + [15219] = "_", + [15223] = "_", + [15226] = "_", + [15227] = "_", + [15228] = "_", + [15231] = "_", + [15232] = "_", + [15234] = "_", + [15237] = "_", + [15238] = "_", + [15239] = "_", + [15241] = "_", + [15242] = "_", + [15243] = "_", + [15244] = "_", + [15245] = "_", + [15248] = "_", + [15251] = "_", + [15253] = "_", + [15254] = "_", + [15255] = "_", + [15256] = "_", + [15257] = "_", + [15258] = "_", + [15259] = "_", + [15322] = "_", + [15326] = "_", + [15329] = "_", + [15330] = "_", + [15331] = "_", + [15332] = "_", + [15337] = "_", + [15342] = "_", + [15345] = "_", + [15346] = "_", + [15347] = "_", + [15352] = "_", + [15356] = "_", + [15357] = "_", + [15358] = "_", + [15359] = "_", + [15360] = "_", + [15393] = "_", + [15435] = "_", + [15472] = "_", + [15506] = "_", + [15518] = "_", + [15519] = "_", + [15530] = "_", + [15536] = "_", + [15608] = "_", + [15618] = "_", + [15619] = "_", + [15626] = "_", + [15627] = "_", + [15632] = "_", + [15680] = "_", + [15899] = "_", + [15900] = "_", + [15982] = "_", + [15983] = "_", + [15985] = "_", + [15991] = "_", + [15992] = "_", + [15993] = "_", + [15996] = "_", + [15997] = "_", + [15998] = "_", + [15999] = "_", + [16000] = "Spirit Worg", + [16019] = "_", + [16023] = "_", + [16026] = "_", + [16035] = "_", + [16038] = "_", + [16039] = "_", + [16040] = "_", + [16041] = "_", + [16077] = "_", + [16078] = "_", + [16081] = "_", + [16084] = "_", + [16089] = "_", + [16096] = "Durotar Labor Union Bruiser", + [16099] = "_", + [16128] = "_", + [16138] = "_", + [16140] = "_", + [16182] = "_", + [16188] = "_", + [16214] = "_", + [16233] = "_", + [16234] = "_", + [16235] = "_", + [16450] = "_", + [16454] = "_", + [16455] = "_", + [16457] = "Toy Knight", + [16536] = "_", + [16604] = "_", + [16609] = "_", + [16889] = "_", + [16890] = "_", + [16891] = "_", + [16892] = "_", + [16893] = "_", + [16894] = "_", + [16895] = "_", + [16999] = "_", + [17031] = "_", + [17032] = "_", + [17069] = "Emissary Whitebeard", + [17072] = "Emissary Gormok", + [17075] = "_", + [17078] = "_", + [17163] = "_", + [17239] = "_", + [17249] = "_", + [17252] = "Felguard", + [17284] = "_", + [17293] = "_", + [17313] = "_", + [17415] = "_", + [17466] = "_", + [17685] = "_", + [17719] = "_", + [17720] = "_", + [17869] = "_", + [18078] = "_", + [18153] = "_", + [18199] = "_", + [18533] = "Armored Ivory Deathcharger", + [19000] = "Qiuyue", + [19001] = "Moon Rabbit", + [20115] = "Nordrassil Stag", + [20116] = "Inferno\'s Shadow", + [20120] = "Quest 39001 Custom Trigger", + [20121] = "Blood Ring Gladiator", + [20122] = "Blood Ring Gladiator", + [20123] = "Sunnyglade Emissary", + [20124] = "Marius the Wise", + [20125] = "Bao Mao", + [20200] = "Lordaeron Soldier", + [21001] = "Caretaker Brambleclaw", + [21002] = "Squire Boltfling", + [22000] = "Mr. Duckling", + [22001] = "Mr. Goose", + [22200] = "White Riding Talbuk", + [22201] = "Talbuk 2 [PH]", + [22202] = "Talbuk 3 [PH]", + [22203] = "Black Talbuk", + [22204] = "Cobalt Talbuk", + [22205] = "Talbuk 6 [PH]", + [22206] = "Talbuk 6 [PH]", + [22207] = "Talbuk 6 [PH]", + [22208] = "Black Armored Talbuk", + [22209] = "Cobalt Armored Talbuk", + [22210] = "Plagued Whelpling", + [22211] = "Lovely Pink Fox", + [22212] = "Unholy Toy Axe", + [22213] = "Unholy Toy Staff", + [22214] = "Kruxis", + [22215] = "Cockatoo", + [22216] = "White Plymouth", + [22217] = "Sammy", + [22218] = "Young Mutant Warturtl", + [22220] = "Sylvan Gemcrafter", + [23000] = "Heavenly War Dragon", + [23001] = "Swift War Turtle", + [23002] = "Despair", + [23003] = "Ruin", + [23004] = "Mayhem", + [23005] = "Rampage", + [23006] = "Swift Vermilion Serpent", + [23007] = "Swift Onyx Serpent", + [23008] = "Swift Azure Serpent", + [23009] = "Swift Jade Serpent", + [23010] = "Swift White Serpent", + [23011] = "Swift Golden Serpent", + [23012] = "Flames of the Firelands", + [23013] = "Swift Feylord", + [23014] = "White Living Statue", + [23015] = "Jade Living Statue", + [23016] = "Golden Living Statue", + [23017] = "Azure Living Statue", + [23018] = "Heavenly Onyx Serpent", + [23019] = "Heavenly Azure Serpent", + [23020] = "Heavenly Jade Serpent", + [23021] = "Heavenly Vermillion Serpent", + [23022] = "Lord of Ravens", + [23023] = "Galleon of the Drowned", + [23024] = "Swift Azshari Saber", + [23025] = "Infernal Fire", + [23026] = "Swift Nerubian Warspider", + [23050] = "Spotted Qiraji Battle Tank", + [23051] = "Black Drake", + [23052] = "Red Nerubian Bloodfeaster", + [23053] = "Green Nerubian Bloodfeaster", + [23054] = "White Nerubian Bloodfeaster", + [23055] = "Black Nerubian Bloodfeaster", + [23056] = "Sunwarmed Furline", + [23057] = "Arcane Furline", + [23058] = "Titanic Wombat", + [23059] = "Void-Infused Felbeast", + [23060] = "Anu\'relos, Flame\'s Guidance", + [23061] = "Armored War Lion", + [23062] = "Victorious Alliance Steed", + [23063] = "Victorious Horde Wolf", + [23064] = "Grey Marshjumper", + [23065] = "Blue Marshjumper", + [23066] = "Green Marshjumper", + [23067] = "Swamper", + [23068] = "Black War Scorpion", + [23069] = "Ember War Scorpion", + [23070] = "Emerald War Scorpion", + [23071] = "Treebeard the Ancient", + [23072] = "Squeakers", + [23073] = "Aquamarine Greatwyrm", + [23074] = "Golden Koi", + [23075] = "Enraged Bloodbeast", + [23076] = "Mossy Bloodbeast", + [23077] = "D.L.U. Rocket", + [23078] = "Golden Yak", + [23079] = "Nert\'s Steampounder", + [23080] = "Sewer Rat", + [23081] = "Blue Snapback Scuttler", + [23082] = "Orange Snapback Scuttler", + [23083] = "Reanimated Amani Raptor", + [23084] = "Gilded Zandalari Raptor", + [23085] = "Pig of Fortune", + [23086] = "Green Gargantuan Murloc", + [23087] = "Black Gargantuan Murloc", + [23088] = "Blue Gargantuan Murloc", + [23089] = "Orange Gargantuan Murloc", + [23090] = "Purple Gargantuan Murloc", + [23091] = "Black Crane", + [23092] = "Ivory Crane", + [23093] = "Pink Crane", + [23094] = "D.L.U. Zeppelin", + [23095] = "Golden Foxwyvern", + [23096] = "Essence of Zalmos", + [23097] = "Serpent of Ula-Tek", + [23098] = "Serpent of C\'Thun", + [23099] = "Serpent of Yogg-Saron", + [23100] = "Serpent of the Unknown Gods", + [23101] = "Hand of Icecrown", + [23102] = "Hand of Menethil", + [23103] = "Hand of Death", + [23104] = "Shu-Zen, Faithful Companion", + [23105] = "Celestial Fox", + [23106] = "Celestial Rabbit", + [23107] = "Loremaster\'s Mouse", + [23108] = "Celestial Tiger", + [23109] = "Honeyback Harvester", + [23110] = "Red Thalassian Hawkstrider", + [23111] = "Black Thalassian Hawkstrider", + [23112] = "Azure Thalassian Hawkstrider", + [23113] = "Green Thalassian Hawkstrider", + [23114] = "Violet Thalassian Hawkstrider", + [23115] = "Ivory Thalassian Hawkstrider", + [23116] = "Victorious Thalassian Hawkstrider", + [23117] = "Grey Riding Elekk", + [23118] = "Purple Riding Elekk", + [23119] = "Blue Wind Rider", + [23120] = "Tawny Wind Rider", + [23121] = "Green Wind Rider", + [23122] = "Outlandish Nether Ray", + [23123] = "Draenic Nether Ray", + [29000] = "Feral Spirit", + [29001] = "Greater Feral Spirit", + [29002] = "Stormpike Tent Trigger", + [29477] = "Faerie Darter", + [29478] = "Black Unicorn", + [30000] = "Risen Guard", + [30001] = "Risen Guard", + [30002] = "Risen Guard", + [30003] = "Risen Guard", + [30004] = "Risen Guard", + [30005] = "Risen Guard", + [30008] = "Skitterweb Egg", + [30040] = "Admiral Grumbleshell", + [33000] = "Black Tournament Charger", + [33001] = "Gilded Scarlet Charger", + [33002] = "Albino Riding Crocolisk", + [33003] = "Marsh Riding Crocolisk", + [33004] = "River Riding Crocolisk", + [33005] = "Swamp Riding Crocolisk", + [33006] = "Bronze Riding Crab", + [33007] = "Sandy Riding Crab", + [33008] = "Dark Riding Crab", + [33009] = "Vermillion Riding Crab", + [33010] = "Infinite Crustacean", + [33011] = "Diamond Crustacean", + [33012] = "Black Thunder Lizard", + [33013] = "Azure Thunder Lizard", + [33014] = "Green Thunder Lizard", + [33015] = "Pale Thunder Lizard", + [33016] = "Red Thunder Lizard", + [33017] = "Onyxian Drake", + [33018] = "Emerald Drake", + [33019] = "Beige Riding Scorpid", + [33020] = "Black Riding Scorpid", + [33021] = "Blue Riding Scorpid", + [33022] = "Dark Iron Scorpid", + [33023] = "Golden Riding Scorpid", + [33024] = "Red Riding Scorpid", + [33025] = "Silver Riding Scorpid", + [33026] = "Desert Riding Scorpid", + [36500] = "Sunfire Fox", + [36501] = "Tangerine Wind Serpent", + [36502] = "Dark Wind Serpent", + [36503] = "Emerald Wind Serpent", + [36504] = "Azure Wind Serpent", + [36505] = "Crimson Sabercat Cub", + [36506] = "Alliance Lion Cub", + [36507] = "Spot", + [36508] = "Twilight Paws", + [36509] = "Black Panther Cub", + [36510] = "Tawny", + [36511] = "Nightsaber Cub", + [36512] = "Snow Cub", + [36513] = "Stangletorn Tiger Cub", + [36514] = "Frostsaber Cub", + [36515] = "Cheetah Cub", + [36516] = "Chestnut", + [36518] = "Billy", + [37000] = "Webwood Hatchling", + [37001] = "Wildthorn Hatchling", + [37002] = "Lava Hatchling", + [37003] = "Tarantula Hatchling", + [37004] = "Timberweb Hatchling", + [37005] = "Mistbark Hatchling", + [37006] = "Skitterweb Hatchling", + [37007] = "Black Widow Hatchling", + [37008] = "Night Web Hatchling", + [37009] = "Cavernweb Hatchling", + [37010] = "Razzashi Hatchling", + [37011] = "Araxxna\'s Hatchling", + [37012] = "Maexxna\'s Hatchling", + [37013] = "Darkmist Hatchling", + [37014] = "Magus Alfred Wartbeard", + [39998] = "Winterax Cook", + [39999] = "Winterax Elder", + [40000] = "Red Fox", + [40001] = "Spectral Tiger", + [40002] = "Dryad", + [40003] = "Keeper of the Grove", + [40004] = "Fox", + [40005] = "Swift Rooster", + [40006] = "White Riding Bear", + [40007] = "Black Riding Bear", + [40008] = "Ash Riding Bear", + [40009] = "Dark Brown Riding Bear", + [40010] = "Snowy Riding Bear", + [40011] = "Brown Riding Bear", + [40012] = "Enchanted Broom", + [40013] = "Thalassian Tender", + [40014] = "Dryad Fawn", + [40015] = "Thalassian Warhorse", + [40016] = "Argent Warhorse", + [40017] = "Thalassian Charger", + [40018] = "Argent Charger", + [40019] = "Dragonhawk Hatchling", + [40020] = "High Elf Orphan", + [40021] = "Tiki", + [40023] = "Scarlet Warhorse", + [40024] = "Scarlet Charger", + [40025] = "Spectral Fox", + [40026] = "Arcane Elemental", + [40027] = "Swift Red Ram", + [40028] = "Swift Brewfest Ram", + [40029] = "Brewfest Ram", + [40030] = "Flaxen Riding Saber", + [40031] = "Swift Darnassian Saber", + [40032] = "Swift Horde Worg", + [40033] = "Swift Grey Worg", + [40034] = "Swift Alliance Steed", + [40035] = "Swift Grey Steed", + [40036] = "Swift Blue Riding Raptor", + [40037] = "Swift Crimson Skeletal Steed", + [40038] = "Swift Forsaken Skeletal Steed", + [40039] = "Swift Blood Kodo", + [40040] = "Swift Brewfest Kodo", + [40041] = "Swift Gnomeregan Mechastrider", + [40043] = "Armored Thalassian Unicorn", + [40044] = "Ornate Thalassian Unicorn", + [40045] = "White Thalassian Unicorn", + [40046] = "Blue Rocket Car", + [40047] = "Red Rocket Car", + [40048] = "Green Rocket Car", + [40049] = "Vizlow", + [40050] = "Tree Form (Night Elf Druid)", + [40051] = "Tree Form (Tauren Druid)", + [40052] = "Snarles Shadowpaw", + [40053] = "Brunilda Wildstout", + [40054] = "Scytheclaw Pureborn", + [41000] = "Tamamo", + [48600] = "Frosty Hedgehog", + [48601] = "Northwind Hedgehog", + [48602] = "Frosty Vulpen", + [48603] = "Crimson Vulpen", + [48604] = "Emerald Vulpen", + [48605] = "Arcane Vulpen", + [48606] = "Son of Deathwing", + [48607] = "Infernal Beast", + [48608] = "Moonwhisper Moth", + [48609] = "Winterspring Moth", + [48610] = "Azure Slitherer", + [48611] = "Olive Slitherer", + [48612] = "Orange Slitherer", + [48613] = "Celestial Construct", + [48614] = "Abyssal Construct", + [48615] = "Nimble Skitterer", + [48616] = "Frozen Skitterer", + [48617] = "Tropical Skitterer", + [48618] = "Fiery Skitterer", + [48619] = "Fel-Powered Chopper", + [48620] = "Infernal Chopper", + [48621] = "Voidborne Chopper", + [48622] = "Jade Slug", + [48623] = "Crimson Slug", + [48624] = "Tanaris Alpaca", + [48625] = "Sandy Alpaca", + [48626] = "Frosty Alpaca", + [48627] = "Nazjatar Shark", + [48628] = "Northrend Moose", + [48629] = "Festival Rocket", + [48630] = "Polly", + [48631] = "Lapidis Parrot", + [48632] = "Gillijim’s Parrot", + [48633] = "Tuskarr Ottuk", + [48634] = "Icepoint Ottuk", + [48635] = "Snowstorm", + [48636] = "Dark Riding Hound", + [48637] = "Brown Riding Hound", + [48638] = "Snowy Riding Hound", + [48639] = "Feralas Chimaera", + [48640] = "Nordrassil Drake", + [48641] = "Lunar Serpent", + [48642] = "Cloudy Red Panda", + [48643] = "Sunset Red Panda", + [48644] = "Dreamy Red Panda", + [48645] = "Mechano-Rex", + [48646] = "Voidborne Tiger", + [48647] = "Infernal Steed", + [48648] = "Skeletal Raptor", + [48649] = "Gnomeregan Chopper", + [49001] = "Tarangos", + [49002] = "Blademaster Kargron", + [49003] = "Xalvic Blackclaw", + [49004] = "Mallon The Moontouched", + [49005] = "Grug\'thok the Seer", + [49006] = "Twilight-Watcher Crendus", + [49007] = "The Wandering Knight", + [49008] = "Crusader Larsarius", + [49009] = "Zareth Terrorblade", + [49010] = "Jal\'akar", + [49011] = "Explorer Ashbeard", + [49012] = "Broken Rook", + [49013] = "Decaying Bishop", + [49014] = "Malfunctioning Knight", + [49015] = "Withering Pawn", + [50002] = "Professor Malkovich", + [50003] = "Annoying Peasant", + [50004] = "Professor Papucho", + [50005] = "Stupefied Orcish Peon", + [50006] = "Suspicious Defias Footpad", + [50007] = "Suspicious Dark Iron Dwarf", + [50008] = "Suspicious Southsea Pirate", + [50009] = "Suspicious Dalaran Wizard", + [50010] = "Suspicious Stonesplinter Trogg", + [50011] = "Suspicious Syndicate Highwayman", + [50012] = "Ol\' Biggins", + [50013] = "Moroves", + [50014] = "Truvicus", + [50015] = "Trixy Gollavix", + [50017] = "Arena Spectator", + [50018] = "Arena Spectator", + [50019] = "Arena Spectator", + [50020] = "Arena Spectator", + [50021] = "Arena Spectator", + [50022] = "Arena Spectator", + [50023] = "Arena Spectator", + [50024] = "Arena Spectator", + [50025] = "Arena Spectator", + [50027] = "Karn Deepeye", + [50028] = "Joseph Dalton", + [50031] = "E\'llo Turtle\'mon", + [50032] = "El\'tsa", + [50033] = "Tabitha Turtleton", + [50034] = "Little Lost Turtle", + [50035] = "Tamed Turtle", + [50036] = "Bone Golem", + [50037] = "Mini Krampus", + [50038] = "Pebblemoon", + [50039] = "Black Piglet", + [50040] = "Forworn Mule", + [50041] = "Field Repair Bot 75B", + [50042] = "Mechanical Auctioneer", + [50043] = "Blitzen", + [50044] = "Kirin Tor Familiar", + [50045] = "Frostwolf Ghostpup", + [50050] = "Darkmoon Steam Tonk", + [50051] = "Durgen Turtlehammer", + [50052] = "Braken Greyturtle", + [50053] = "Isabella Locksley", + [50054] = "Grizzo Greasecomb", + [50055] = "Avatar of Pompa", + [50057] = "Son of Turtlhu", + [50058] = "Chromie", + [50059] = "Alurmi", + [50060] = "Turtlhu", + [50070] = "Rufus Hardwick", + [50073] = "Clyde \"The Shaddy\"", + [50074] = "Bustus \"The Rascal\"", + [50075] = "Auctioneer Kuzzlin", + [50077] = "Kodo Calfling", + [50079] = "Dirge", + [50080] = "Commander Gerastrasz", + [50088] = "Echo of Gerastrasz", + [50089] = "Guntrus Barleybeard", + [50090] = "Quel\'dorei Steed", + [50091] = "Barrens Zhevra", + [50092] = "Ivory War Raptor", + [50093] = "Violet War Raptor", + [50094] = "Obsidian War Raptor", + [50095] = "Red War Raptor", + [50096] = "Spectral Gryphon", + [50097] = "Shadowhorn Stag", + [50098] = "Nightmare Dreamrunner", + [50099] = "Gorug", + [50100] = "Riding Frayfeather Hippogryph", + [50101] = "Thomas Berkley", + [50102] = "Zebra", + [50103] = "Zebrian the Mad", + [50104] = "Godrick Bell", + [50105] = "Medivh", + [50106] = "Time Anomaly", + [50107] = "Albino Drake", + [50108] = "Albino Dragonspawn", + [50109] = "Frostbitten Bronze Soldier", + [50110] = "Bronze Defender", + [50111] = "Corrupted Bronze Defender", + [50112] = "Snowball", + [50113] = "Bronze Drake", + [50114] = "Little Pony", + [50115] = "Little Cow", + [50116] = "Chromie", + [50117] = "Chronormu", + [50122] = "Corrupted Red Whelp", + [50123] = "Corrupted Green Whelp", + [50124] = "Corrupted Blue Whelp", + [50125] = "Corrupted Bronze Whelp", + [50140] = "Eiendor Stormcloud", + [50141] = "Baby Turtle", + [50506] = "Godrick Bell", + [50507] = "Benjamin Bradley", + [50508] = "Undead Slayer", + [50509] = "Constantinus Hartford", + [50510] = "Kim Preston", + [50511] = "Goar\'thrak", + [50512] = "Quartermaster Braden", + [50513] = "Sheep", + [50514] = "Heroic Training Dummy", + [50515] = "Apprentice Training Dummy", + [50516] = "Expert Training Dummy", + [50517] = "Apprentice Archery Target", + [50519] = "Baron Rivendare", + [50520] = "Mazoga", + [50521] = "Jizzle Grikbot", + [50522] = "Gregor Fizzwuzz", + [50523] = "Race Spectator", + [50524] = "Race Spectator", + [50525] = "Race Spectator", + [50526] = "Race Spectator", + [50527] = "Green Steam Tonk", + [50528] = "Purple Steam Tonk", + [50529] = "Gnome Car Controller", + [50530] = "Fara Boltbreaker", + [50531] = "Goblin Car Controller", + [50533] = "Dolores", + [50534] = "Greenix Oiljuices", + [50535] = "Mek Sparkshake", + [50537] = "Kogram Redcrag", + [50538] = "Teldrassil Sproutling", + [50539] = "Jason Redick", + [50540] = "Izzy Gearfuse", + [50541] = "Braxo Gearfuse", + [50542] = "Sikko Nitroblast", + [50543] = "Miralda Nitroblast", + [50550] = "Anachronos", + [50555] = "Hamlet", + [50556] = "Ferryman Ike", + [50557] = "Alice", + [50559] = "Felicia Draug", + [50560] = "Isabela Mondragon", + [50561] = "Corrupted Red Whelp", + [50562] = "Corrupted Green Whelp", + [50563] = "Corrupted Blue Whelp", + [50564] = "Corrupted Bronze Whelp", + [50565] = "Warden of Time", + [50566] = "Corrupted Warden of Time", + [50580] = "Gnome Pit Crewman", + [50581] = "Gnome Pit Crewman", + [50582] = "Gnome Pit Crewman", + [50583] = "Gnome Pit Crewman", + [50584] = "Gnome Pit Crewman", + [50585] = "Goblin Pit Crewman", + [50586] = "Goblin Pit Crewman", + [50587] = "Goblin Pit Crewman", + [50588] = "Goblin Pit Crewman", + [50589] = "Goblin Pit Crewman", + [50590] = "Goblin Pit Crewman", + [50591] = "Goblin Pit Crewman", + [50592] = "Goblin Pit Crewman", + [50593] = "Lovely Pink Pony", + [50594] = "White Stag", + [50595] = "Lovely Pink Talbuk", + [50597] = "Gazzik\'s Flying Machine", + [50598] = "Blackstone Flying Machine", + [50600] = "Colossus of Gorexxi", + [50604] = "Ol\' Reinald Osworth", + [50605] = "Julie Osworth", + [50607] = "Farm Sheep", + [50608] = "Lulu", + [50609] = "Lost Farm Sheep", + [50610] = "Lost Farm Sheep", + [50611] = "Lulu", + [50612] = "Lesser Doomguard", + [50620] = "Silithid Tunneler", + [50621] = "Silithid Tunneler", + [50622] = "Silithid Brood", + [50623] = "Silithid Stinger", + [50624] = "Silithid Swarmer", + [50625] = "Silithid Stinger", + [50626] = "Silithid Brood", + [50627] = "Silithid Swarmer", + [50628] = "Silithid Brood", + [50629] = "Silithid Stinger", + [50630] = "Silithid Swarmer", + [50631] = "Silithid Brood", + [50632] = "Akk\'nariji, Taskmaster of the Swarm", + [50635] = "Onyxian Whelpling", + [50636] = "Drake", + [50637] = "Shivering Moonkin Hatchling", + [50638] = "Rosemary Riley", + [50639] = "Meizu Dirgeheart", + [50640] = "Vesstra Nightbreath", + [50641] = "Mu\'ju", + [50642] = "Endoga Wolfchain", + [50643] = "Rasi Falseblaster", + [50644] = "Marigold Hale", + [50645] = "Holly Tallhair", + [50646] = "Donavan Hale", + [50647] = "Bomarn Fireaxe", + [50648] = "Florianus Hartford", + [50649] = "Gremm Tuskteeth", + [50650] = "Min\'tu", + [50651] = "Hototo Fogrunner", + [50652] = "Carus Silversnow", + [50653] = "Quark", + [50654] = "Mr. Mistletoe", + [50660] = "Lantaria Woodshadow", + [50661] = "Frosty", + [50662] = "Tinsel Lost-Gloves", + [50663] = "Hedwig", + [50665] = "Quest 80702 & 80720 Custom Trigger 1", + [50666] = "Quest 80702 & 80720 Custom Trigger 2", + [50667] = "Quest 80702 & 80720 Custom Trigger 3", + [50668] = "Quest 80703 & 80722 Custom Trigger 1", + [50669] = "Quest 80703 Custom Trigger 2", + [50670] = "Quest 80703 & 80722 Custom Trigger 3", + [50671] = "Quest 80703 Custom Trigger 3", + [50672] = "Dwarf Mountaineer", + [50673] = "Scarlet Recruit", + [50674] = "Vladeus Springriver", + [50675] = "Quest 80705 & 80706 Custom Trigger 3", + [50676] = "Vladeus Springriver", + [50677] = "Mavel Brightwood", + [50680] = "Scarlet Magician", + [50681] = "Scarlet Guard", + [50682] = "Scarlet Alchemist", + [50683] = "Archmage Alphus Wordwill", + [50684] = "Find the first clue", + [50685] = "Find the second clue", + [50686] = "Find the third clue", + [50760] = "Tansy Sparkpen", + [51234] = "Private Security", + [51235] = "Orgrimmar Commoner", + [51236] = "Skeptic Peon", + [51237] = "Shellcoin Promoter", + [51238] = "Ape", + [51239] = "Shell Co Associate", + [51240] = "Successful Investor", + [51241] = "Fanatical Investor", + [51242] = "Foreign Associate", + [51243] = "K\'ron Tusk", + [51244] = "Foreign Investor", + [51245] = "Female Admirer", + [51246] = "Successful Investor", + [51247] = "Novice Investor", + [51248] = "Boy", + [51249] = "Winter Veil Reindeer", + [51250] = "Investment Broker", + [51251] = "Investment Broker", + [51252] = "Marlos Catos", + [51253] = "Snowpelt", + [51254] = "Grizzlore", + [51260] = "Thomas Pestle", + [51261] = "Gina Weller", + [51264] = "Prince Herman II", + [51266] = "Reas", + [51270] = "William Halford", + [51271] = "Braelnor", + [51275] = "Risen Lordaeronian Knight", + [51276] = "Plagued Fisherman", + [51277] = "Ferryman of Fenris", + [51278] = "Rothide Slayer", + [51279] = "Stiched Fenris Horror", + [51280] = "Lady Janira", + [51290] = "Felicia", + [51291] = "Herrina", + [51292] = "Ophelia Worthington", + [51293] = "Zora", + [51295] = "Glitterglam", + [51299] = "DUMMY_SPEAK_TO_PLAYER", + [51300] = "Caravan Kodo", + [51301] = "DUMMY_STORMWIND_FOUNTAIN", + [51302] = "Teresa Palin", + [51303] = "Shivertail", + [51305] = "Little Fawn", + [51308] = "Jake", + [51510] = "Joshua Westfield", + [51511] = "Gary", + [51513] = "Aspirant Shadewalker", + [51520] = "Lacy Knottley", + [51521] = "Lwaxana", + [51523] = "Lil\'Foot", + [51526] = "Blood Siphon Channeler", + [51530] = "Mortimer Stansfield", + [51531] = "Betty", + [51532] = "Kern Mosshoof", + [51533] = "Yrta Younghoof", + [51536] = "Mal\'adaris", + [51537] = "Gorlag", + [51538] = "Charlie Riley", + [51539] = "Nerubling", + [51550] = "Turtle WoW", + [51560] = "White Stallion", + [51561] = "Palomino", + [51562] = "Kelton\'s Riding Gryphon", + [51563] = "Rholo", + [51564] = "Kelton Clemons", + [51566] = "Drakin Swiftaxe", + [51567] = "Deathguard Maverick", + [51568] = "Beatha Fisher", + [51569] = "Riding Gryphon", + [51570] = "Kleo Ficklevolt", + [51571] = "Kizzi Sparkletwist", + [51572] = "Felix Lazyrocket", + [51573] = "WORMHOLE QUEST OBJECTIVE", + [51574] = "Hubi Sparkletwist", + [51575] = "Alpha", + [51576] = "Meow Meat", + [51577] = "Ghost of Space", + [51578] = "Moonkin", + [51579] = "Chixpixx", + [51580] = "Dire Riding Wolf", + [51581] = "Timber Riding Wolf", + [51582] = "Trapped in the Nightmare Trigger", + [51583] = "Beaky", + [51584] = "Chromatic Whelp", + [51585] = "Tirisfal Batling", + [51587] = "Brown Skeletal Horse", + [51588] = "Red Skeletal Horse", + [51589] = "Blue Skeletal Horse", + [51590] = "Charlie the Cheerful", + [51591] = "Zha\'nu", + [51592] = "Miss Randy", + [51593] = "Alaenas", + [51594] = "Yaelara Strongfeather", + [51595] = "Delarya Stonemoon", + [51596] = "Syleria Silentbranch", + [51598] = "Spirit of Palkeote", + [51599] = "Kodo Calfling Spirit", + [51600] = "Snufflesnout", + [51601] = "Traaz Ironfinger", + [51605] = "Ro\'Paw", + [51607] = "Morgan the Storm", + [51620] = "Innkeeper Hern", + [51621] = "Rell", + [51622] = "Grunt", + [51623] = "Morgan", + [51650] = "Volatala Zilmbu", + [51651] = "Sharpspin Earhole", + [51652] = "Um\'bundi Sumobi", + [51653] = "Nannosh Tralhtar", + [51654] = "Zazu", + [51655] = "Zeemo", + [51656] = "Rug", + [51657] = "Ram", + [51658] = "Infinite Whelpling", + [51660] = "Amro", + [51661] = "Paws", + [51662] = "Ed \"Maddog\" McLoud", + [51663] = "Mojo Erisen", + [51664] = "Naire", + [51665] = "Kolos", + [51666] = "Bray Harley", + [51667] = "Maya", + [51668] = "Cute", + [51680] = "Auctioneer Drezbit", + [51681] = "Sniptip", + [51682] = "Dr. Topnose", + [51685] = "Riding Wyvern", + [51686] = "Beaky", + [51688] = "Lamella", + [51689] = "Bumper", + [51690] = "Image of Pa\'dal", + [52000] = "Howland Hooch", + [52001] = "Terry Robins", + [52002] = "Warren Reed", + [52003] = "Viktor", + [52004] = "Artemis", + [52005] = "Anthony Dursley", + [52006] = "Robb Dursley", + [52007] = "Barty Peverell", + [52008] = "Hoster", + [52009] = "Charlie Gladstone", + [52010] = "Cormac Gryffin", + [52011] = "Gilderoy", + [52012] = "Vernon Nott", + [52013] = "Robert Wood", + [52014] = "Galion Goldmore", + [52015] = "Samuel Vickers", + [52016] = "Robb Carrow", + [52017] = "Bert Mano", + [52018] = "Kevan Dumble", + [52019] = "Rufus Steelborn", + [52020] = "Harry Lapoy", + [52021] = "Poppy Zabini", + [52022] = "Percival Finnigan", + [52023] = "Arthur Steelborn", + [52024] = "Lord Commander Ryke", + [52025] = "Madam Carrow", + [52026] = "Griselda", + [52027] = "Amelia Hawkes", + [52028] = "Sturgis Skinner", + [52029] = "Chef Galadriel", + [52030] = "Jaime Sparrow", + [52031] = "Brandon Fletchley", + [52032] = "Edgard Hawthorne", + [52033] = "Penelope Krum", + [52034] = "Parvati Robins", + [52035] = "Dori Smith", + [52036] = "Arabella Black", + [52037] = "Molly Krueger", + [52038] = "Petunia Zoldyck", + [52039] = "Marge Blackwood", + [52040] = "Romilda", + [52041] = "Angelina Hackett", + [52042] = "Rita Marsh", + [52043] = "Katie Marsh", + [52044] = "Nori Dolohov", + [52045] = "Rose Dolohov", + [52046] = "Amycus Seaworth", + [52047] = "Hannah Edgecombe", + [52048] = "Helena Flitwick", + [52049] = "Lenina Watson", + [52050] = "Myrcella Moon", + [52051] = "Aerys Bell", + [52052] = "Hilda Smith", + [52053] = "Marietta Hooch", + [52054] = "Elwing Ogden", + [52055] = "Blaise Cattermole", + [52056] = "Alannys", + [52057] = "Alicia Maxime", + [52058] = "Mary Magcub", + [52059] = "Macaw", + [52060] = "Elendil Limarch", + [52061] = "Lyanna Brown", + [52062] = "Roy Smythe", + [52063] = "Judy Fletcher", + [52064] = "Vigil Footman", + [52065] = "Vigil Cavalryman", + [52066] = "Barthos Thundercrank", + [52067] = "Chubb Goldstein", + [52068] = "Barltok Kettleburn", + [52069] = "Grovug Mithrilmane", + [52070] = "Lokgrean Flaskarm", + [52071] = "Lomnic Embershield", + [52072] = "Brakrur Brickchin", + [52073] = "Thingol Greyback", + [52074] = "Korbeak Warheart", + [52075] = "Rickard Ashbeard", + [52076] = "Yani Stoutcaller", + [52077] = "Rooster", + [52078] = "Gregor", + [52079] = "Miya Bloomdale", + [52080] = "Rann Blackbeard", + [52081] = "Wolfrick Finecomb", + [52082] = "Khazal Blinken", + [52083] = "Garrick Marblebrew", + [52084] = "Gror Aleburn", + [52085] = "Ernie Carrow", + [52086] = "Mary Morris", + [52087] = "Cadmus Shacklebolt", + [52088] = "Kitty", + [52090] = "Gladdus Podmore", + [52091] = "Silas Overden", + [52092] = "Nathan Wolfspear", + [52093] = "Falok Thurden", + [52094] = "Greta Stonehammer", + [52095] = "Captain Snowbeard", + [52096] = "Chester Cogburn", + [52097] = "Brune Shunpike", + [52099] = "Void Zone", + [52100] = "Gragin Barrelbrew", + [52101] = "Glyn Hatchet", + [52102] = "Orion Coalborn", + [52103] = "Orlin Kragrog", + [52104] = "Ori Figgstout", + [52105] = "Kelvar Greybrew", + [52106] = "Garrick Strongrock", + [52107] = "Igor", + [52108] = "Thror", + [52109] = "Vidra Bullhorn", + [52111] = "Gwenna", + [52112] = "Myrtle Longbraid", + [52114] = "Dorris Pringlebrule", + [52115] = "Minisa Dawlish", + [52116] = "Irma Redtop", + [52117] = "Elena Firebrew", + [52118] = "Innkeeper Heidi", + [52119] = "Harlus Ashbuckle", + [52120] = "Distraught Investor", + [52121] = "Very Sad Investor", + [52122] = "Shell Co Lobbyist", + [52123] = "Sam", + [52124] = "Jonas", + [52125] = "Jessica", + [52126] = "Sophie", + [52127] = "Canary", + [52128] = "Ormus Grindelbeard", + [52129] = "Guard", + [52130] = "Zephyr", + [52140] = "Ivory Boar", + [52141] = "Plagued Boar", + [52142] = "Armored Brown Boar", + [52143] = "Black Boar", + [52144] = "Windfury Totem", + [52145] = "Incindis", + [52146] = "Small Incendic Egg", + [52147] = "Large Incendic Egg", + [52148] = "Spawn of Incindis", + [52149] = "Flameskin Incendosaur", + [52150] = "Shadowforge Guardian", + [52151] = "Shadowforge Hierophant", + [52152] = "Shadowforge Blazeweaver", + [57640] = "Thalassian Emberfox", + [57641] = "Gnome Professor", + [57642] = "Sorcerer-Thane Thaurissan", + [57643] = "Image of Sorcerer-Thane Thaurissan", + [57644] = "Sproutling", + [57645] = "Sorcerer-Thane Thaurissan", + [59810] = "Queen", + [59811] = "Knight", + [59812] = "King", + [59813] = "Bishop", + [59814] = "Rook", + [59815] = "Pawn", + [59901] = "Felheart", + [59952] = "Lycan Portal", + [59953] = "Queen", + [59954] = "Queen", + [59955] = "Manascale Whelp", + [59956] = "Dirt Mound", + [59957] = "Fragment of Rupturan", + [59958] = "Living Fragment", + [59959] = "Living Stone", + [59960] = "Crumbling Exile", + [59961] = "Rupturan the Broken", + [59962] = "Pet Bomb", + [59963] = "Cla\'ckora", + [59964] = "Icy Fissure", + [59965] = "Abyssal Oracle", + [59966] = "Abyssal Tidehunter", + [59967] = "King", + [59968] = "Knight", + [59969] = "Ghastly Horseman", + [59970] = "Rook", + [59971] = "Bishop", + [59972] = "Pawn", + [59973] = "Rift Portal", + [59974] = "Rift Elemental", + [59975] = "Rift-Lost Draenei", + [59976] = "Draenei Riftstalker", + [59977] = "Draenei Riftwalker", + [59978] = "Draenei Netherwalker", + [59979] = "Shadow-Lost Draenei", + [59980] = "Draenei Truthseeker", + [59981] = "Sanv Tas\'dal", + [59982] = "Mana Affinity", + [59983] = "Black Affinity", + [59984] = "Blue Affinity", + [59985] = "Green Affinity", + [59986] = "Red Affinity", + [59987] = "Crystal Affinity", + [59988] = "Manascale Whelp", + [59989] = "Manascale Ley-Seeker", + [59990] = "Nether Infernal", + [59991] = "Kruul", + [59992] = "Minor Arcane Elemental", + [59993] = "The Lost", + [59994] = "Shade of Medivh", + [59995] = "Unstoppable Infernal", + [59996] = "Unstable Magic Zone", + [59997] = "Red Owl", + [59998] = "Blue Owl", + [59999] = "Blood Raven", + [60000] = "Snowball Hit Trigger: GetClass", + [60001] = "Snowball Hit Trigger: GetClass", + [60002] = "Snowball Hit Trigger: GetClass", + [60003] = "Snowball Hit Trigger: GetClass", + [60004] = "Snowball Hit Trigger: GetClass", + [60005] = "Snowball Hit Trigger: GetClass", + [60006] = "Snowball Hit Trigger: GetClass", + [60007] = "Snowball Hit Trigger: GetClass", + [60008] = "quest_40698_dummy_triger", + [60009] = "quest_40713_dummy_triger", + [60010] = "quest_40714_dummy_triger", + [60011] = "quest_40718_dummy_triger", + [60012] = "quest_40721_dummy_triger", + [60013] = "quest_40733_dummy_triger", + [60014] = "quest_40771_dummy_triger", + [60015] = "quest_40780_dummy_triger", + [60016] = "quest_40780_dummy_triger", + [60017] = "quest_40780_dummy_triger", + [60018] = "quest_40781_dummy_triger", + [60019] = "quest_40781_dummy_triger", + [60020] = "quest_40781_dummy_triger", + [60021] = "quest_40782_dummy_triger", + [60022] = "quest_40782_dummy_triger", + [60023] = "quest_40782_dummy_triger", + [60024] = "quest_40783_dummy_triger", + [60025] = "quest_40783_dummy_triger", + [60026] = "quest_40783_dummy_triger", + [60027] = "Horde Defender", + [60028] = "quest_40799_dummy_triger", + [60029] = "quest_40799_dummy_triger", + [60030] = "quest_40799_dummy_triger", + [60031] = "quest_40800_dummy_triger", + [60032] = "quest_40801_dummy_triger", + [60033] = "quest_40807_dummy_triger", + [60034] = "quest_40817_dummy_triger", + [60035] = "quest_40825_dummy_triger", + [60036] = "quest_40826_dummy_triger", + [60037] = "quest_40826_dummy_triger", + [60038] = "quest_40826_dummy_triger", + [60039] = "quest_40826_dummy_triger", + [60040] = "quest_40829_dummy_triger", + [60041] = "quest_40837_dummy_triger", + [60042] = "quest_40856_dummy_triger", + [60043] = "quest_40856_dummy_triger", + [60044] = "quest_40957_dummy_triger", + [60045] = "quest_40961_dummy_triger", + [60046] = "quest_40972_dummy_triger", + [60047] = "quest_40982_dummy_triger", + [60048] = "quest_40985_dummy_triger", + [60049] = "quest_41014_dummy_triger", + [60050] = "quest_41030_dummy_triger", + [60051] = "quest_41110_dummy_triger", + [60052] = "quest_41143_dummy_triger", + [60053] = "quest_41240_dummy_triger", + [60054] = "quest_41339_dummy_triger", + [60055] = "quest_41372_dummy_triger", + [60056] = "quest_41383_dummy_triger", + [60057] = "quest_41388_dummy_triger_1", + [60058] = "quest_41388_dummy_triger_2", + [60059] = "quest_41388_dummy_triger_3", + [60060] = "quest_41388_dummy_triger_4", + [60061] = "Resonating Crystal", + [60062] = "Lingering Doom", + [60063] = "Echo of Sargeras", + [60064] = "Corrupted Ashbringer", + [60065] = "quest_41637_dummy_triger_4", + [60066] = "quest_41643_dummy_triger_1", + [60067] = "quest_41643_dummy_triger_2", + [60068] = "quest_41643_dummy_triger_3", + [60069] = "quest_41649_dummy_triger_1", + [60070] = "quest_41677_dummy_triger", + [60071] = "quest_41684_dummy_triger", + [60072] = "quest_41694_dummy_triger_1", + [60073] = "quest_41694_dummy_triger_2", + [60074] = "quest_41694_dummy_triger_3", + [60075] = "quest_41698_dummy_triger_1", + [60076] = "quest_41698_dummy_triger_2", + [60077] = "quest_41698_dummy_triger_3", + [60078] = "quest_41637_dummy_triger_1", + [60079] = "quest_41731_dummy_triger", + [60080] = "quest_41745_dummy_triger", + [60081] = "quest_41803_dummy_triger", + [60150] = "Gizbert Eggwell", + [60300] = "Shagu", + [60301] = "quest_40003_dummy_triger", + [60302] = "Fluppi", + [60310] = "Malanys Cloudpiercer", + [60311] = "Ilyara Skyvault", + [60312] = "quest_40124_dummy_triger", + [60313] = "quest_40026_dummy_triger", + [60314] = "quest_40049_dummy_triger", + [60315] = "quest_40058_dummy_triger", + [60316] = "quest_40058_dummy_triger", + [60317] = "quest_40060_dummy_triger", + [60318] = "quest_40060_dummy_triger", + [60319] = "quest_40067_dummy_triger", + [60320] = "quest_40069_dummy_triger", + [60321] = "quest_40069_dummy_triger", + [60322] = "quest_40070_dummy_triger", + [60323] = "quest_40099_dummy_triger", + [60324] = "quest_40132_dummy_triger", + [60325] = "quest_40141_dummy_triger", + [60326] = "quest_40141_dummy_triger", + [60327] = "quest_40166_dummy_triger", + [60328] = "quest_40174_dummy_triger", + [60329] = "quest_40174_dummy_triger", + [60330] = "quest_40186_dummy_triger", + [60331] = "quest_40187_dummy_triger", + [60332] = "quest_40172_dummy_triger", + [60333] = "quest_40180_dummy_triger", + [60334] = "quest_40210_dummy_triger", + [60335] = "quest_40247_dummy_triger", + [60336] = "quest_40253_dummy_triger", + [60337] = "quest_40264_dummy_triger", + [60338] = "quest_40266_dummy_triger", + [60339] = "quest_40272_dummy_triger", + [60340] = "quest_40285_dummy_triger", + [60341] = "quest_40289_dummy_triger", + [60342] = "quest_40293_dummy_triger", + [60343] = "quest_40295_dummy_triger", + [60344] = "quest_40309_dummy_triger", + [60345] = "quest_40316_dummy_triger", + [60347] = "quest_40338_dummy_triger", + [60348] = "quest_40346_dummy_triger", + [60349] = "quest_40348_dummy_triger", + [60350] = "quest_40348_dummy_triger", + [60351] = "quest_40348_dummy_triger", + [60352] = "quest_40351_dummy_triger", + [60353] = "quest_40352_dummy_triger", + [60354] = "quest_40354_dummy_triger", + [60355] = "quest_40362_dummy_triger", + [60356] = "quest_40366_dummy_triger", + [60369] = "Pack Ally", + [60370] = "quest_65006_dummy_triger", + [60373] = "quest_80411_dummy_triger", + [60374] = "quest_40420_dummy_triger", + [60375] = "quest_40460_dummy_triger", + [60376] = "quest_40486_dummy_triger", + [60377] = "quest_40524_dummy_triger", + [60378] = "quest_40532_dummy_triger", + [60379] = "quest_40533_dummy_triger", + [60380] = "quest_40534_dummy_triger", + [60381] = "quest_40529_dummy_triger", + [60382] = "quest_40536_dummy_triger", + [60383] = "quest_40541_dummy_triger", + [60384] = "quest_40541_dummy_triger", + [60385] = "quest_40554_dummy_triger", + [60386] = "quest_40554_dummy_triger", + [60387] = "quest_40554_dummy_triger", + [60388] = "quest_40558_dummy_triger", + [60389] = "quest_40562_dummy_triger", + [60390] = "quest_40564_dummy_triger", + [60391] = "quest_40567_dummy_triger", + [60392] = "quest_40597_dummy_triger", + [60393] = "quest_40616_dummy_triger", + [60394] = "quest_40629_dummy_triger", + [60395] = "quest_40660_dummy_triger", + [60396] = "quest_40660_dummy_triger", + [60397] = "quest_40660_dummy_triger", + [60398] = "quest_40670_dummy_triger", + [60399] = "quest_40691_dummy_triger", + [60400] = "Vess", + [60401] = "Bannor", + [60403] = "Grungi", + [60404] = "Dietmar Onlooker", + [60405] = "Zokk Flamefist", + [60406] = "Wahjez\'fon", + [60407] = "Jovany Staunch", + [60408] = "Logrash", + [60409] = "Naxiar", + [60410] = "Re\'than", + [60411] = "Korvir", + [60412] = "Korvir\'s Prey", + [60413] = "The Tortured Elf", + [60414] = "Tulu", + [60415] = "Fallen Warrior", + [60416] = "Fallen Warrior", + [60417] = "Fallen Soldier", + [60418] = "Fallen Soldier", + [60420] = "Ghoststalker", + [60421] = "Draenei Exile", + [60422] = "Draenei Exile", + [60423] = "Draenei Exile", + [60424] = "Draenei Exile", + [60425] = "Dra\'lox Felstar", + [60426] = "Felstone Guardian", + [60427] = "Felstone Guardian", + [60428] = "Konrad Bardak", + [60429] = "Summoned Guardian", + [60430] = "Furious Ogre", + [60431] = "Tu\'whak", + [60432] = "Tide Lord Naszharr", + [60433] = "Laszan", + [60434] = "Moonwell Sentinel", + [60435] = "Moon Priestess Alunasha", + [60436] = "Alah\'Thalas Citizen", + [60437] = "Alah\'Thalas Citizen", + [60438] = "Alah\'Thalas Citizen", + [60439] = "Alah\'Thalas Citizen", + [60440] = "Moonwell Sentinel", + [60441] = "Torble Sparksprocket", + [60442] = "Bael Modan Golem", + [60443] = "Kex Blowmaster", + [60444] = "Analyzer X-51", + [60445] = "Analyzer X-48", + [60446] = "Insom\'ni", + [60447] = "Fishface Joe", + [60448] = "Dirty Jacob", + [60449] = "Sark Blacktooth", + [60450] = "Gold-Tooth Gary", + [60451] = "Jessie Sugar-Tongue", + [60452] = "First Mate McCoy", + [60453] = "Garfield Sparkblast", + [60454] = "Old-Tide Sam", + [60455] = "Fazzle \'The Slick\'", + [60456] = "Belgrush Daggerfist", + [60457] = "Mabel \'The Hook\'", + [60458] = "One-Ear Nellie", + [60459] = "Vil\'do One-Tusk", + [60460] = "\'Ale Saint\' Grida", + [60461] = "Pethax Blackhorn", + [60462] = "Nagzel Powdernose", + [60463] = "Thirael Blistersong", + [60464] = "Thirael Blistersong", + [60465] = "Malos Lunarspear", + [60466] = "Treant Protector", + [60467] = "Arch Hydromancer Lapidis", + [60468] = "Twisted Water Elemental", + [60469] = "Thistlefur Recluse", + [60470] = "Old Greypaw", + [60471] = "Faldan Moonshatter", + [60472] = "Hadanos Greenblade", + [60473] = "Adaena Oakleaf", + [60474] = "Sentinel Danala", + [60475] = "Distorted Treant", + [60476] = "Embergut", + [60477] = "Lagg\'osh", + [60478] = "Borhgk", + [60479] = "\'Wincing\' Willy", + [60480] = "Falgig Wazzlewrench", + [60481] = "Raga Darkeye", + [60482] = "Tesala Whitefeather", + [60483] = "Morpheus Ribcage", + [60484] = "Liott Maneskin", + [60485] = "Noel Bearfinger", + [60486] = "Vaya Spidersbite", + [60487] = "Valdos Madhound", + [60488] = "Diane Willowfield", + [60489] = "Redwing", + [60490] = "Blackpaw", + [60491] = "Putridfang", + [60492] = "Angerclaw", + [60493] = "Blackest Widow", + [60494] = "Sorrowclaw", + [60495] = "Bakarsh", + [60496] = "Garfield Sparkblast", + [60497] = "First Mate McGillicuddy", + [60498] = "Insomnius", + [60499] = "Fearoth", + [60500] = "Shizwackle Tangrig", + [60501] = "Glasseye", + [60502] = "\'Slip\'", + [60503] = "Lorthiras", + [60504] = "Yig Oilfuse", + [60505] = "Thoregg", + [60506] = "Wally Wisecrack", + [60507] = "Conservationist Yalus", + [60508] = "Jacob Malwright", + [60509] = "Najhaz the Raider", + [60510] = "Grubgar", + [60511] = "Zantiki", + [60512] = "Keeper Laena", + [60513] = "Boltrus", + [60516] = "Marrek Stromnur", + [60518] = "Crimson", + [60519] = "High Judge Morice", + [60520] = "Lancaster Lightblessed", + [60521] = "Magistrate Aldous", + [60522] = "High Captain Justus", + [60523] = "Lost Crewman", + [60524] = "Wallowing Crewman", + [60525] = "Admiral Barean Westwind", + [60526] = "Dunstan Whitereach", + [60527] = "Taldran Salwright", + [60528] = "Orin Stonefury", + [60529] = "Joshua Ambercrest", + [60530] = "Andrea Paxton", + [60531] = "Captain Haroldson", + [60532] = "Bartholos", + [60533] = "First Mate Dorrul", + [60534] = "Embertide Crewman", + [60535] = "Scarlet Prisoner", + [60536] = "Mit\'szi", + [60537] = "Beaky", + [60538] = "Modopo", + [60539] = "Bristlefur", + [60540] = "Aputuq", + [60541] = "Tonlok", + [60542] = "Panukuki", + [60543] = "Inuksuk", + [60544] = "Tarqsiku", + [60545] = "Icepoint Whiteclaw", + [60546] = "Citizen Schreimeier", + [60547] = "Citizen Fredriks", + [60548] = "Sonnet Grahamsift", + [60549] = "Gallen Grahamsift", + [60550] = "Josh Bauer", + [60551] = "John Comley", + [60552] = "Morgan Maxwell", + [60553] = "High Elf Refugee", + [60554] = "Breanna Haberle", + [60555] = "Chelly Saintsing", + [60556] = "Splinter", + [60557] = "Captain Joq", + [60558] = "\"Grumpy\" Norton", + [60559] = "Cheyenne Reynolds", + [60560] = "Arden Godshall", + [60561] = "Nick Ford", + [60562] = "Docks Crier", + [60563] = "Officer Visser", + [60564] = "John Gates", + [60565] = "Kaay Carlson", + [60566] = "Savanna Palesotti", + [60567] = "Branden Mullins", + [60568] = "Amy Maciulewicz", + [60569] = "Dave \"Ozy\" Norton", + [60570] = "Jonathan Gonzalez", + [60571] = "Ol\' Grigg", + [60572] = "Dock Unloader", + [60573] = "Dock Worker", + [60574] = "Dock Fisher", + [60575] = "Dock Fisher", + [60576] = "Dock Logger", + [60577] = "Dock Logger", + [60578] = "Woodworker", + [60579] = "Stormwind Woodworker", + [60580] = "Gnome Expeditioner", + [60581] = "Expeditioner", + [60582] = "Corey", + [60583] = "Cody", + [60584] = "Amber", + [60585] = "Annabelle", + [60586] = "Tina Murray", + [60587] = "Andrew Bigglesell", + [60588] = "Stormwind Citizen", + [60589] = "Stormwind Citizen", + [60590] = "Stormwind Citizen", + [60591] = "Devon Miller", + [60592] = "Jacob", + [60593] = "Patricia", + [60594] = "Blair", + [60595] = "Logger", + [60596] = "Runic Construct", + [60597] = "Maddened Vault Guard", + [60598] = "Black Blood of the Demented", + [60599] = "Soulless Husk", + [60600] = "Netherspawn Flayer", + [60601] = "Grellkin Sorcerer", + [60602] = "Grellkin Scorcher", + [60603] = "Manacrazed Grell", + [60604] = "Wicked Skitterer", + [60605] = "Ice Crawler", + [60606] = "Magus Ariden Dusktower", + [60607] = "Kor\'gan", + [60608] = "Captain Rothynn", + [60609] = "Groundskeeper Jacoby", + [60610] = "Var\'zhog", + [60611] = "Inunquaq", + [60612] = "Frigid Guardian", + [60613] = "Web Cocoon", + [60614] = "\'Charming\' Rudair", + [60615] = "Citadel Wizard", + [60616] = "Citadel Preacher", + [60617] = "Citadel Watchman", + [60618] = "Duke Oswald III", + [60619] = "Groundskeeper Samual", + [60620] = "Butcher Pete", + [60621] = "Aerla Goldenmoon", + [60622] = "Tyvadrius", + [60623] = "Tin\'go", + [60624] = "Merk Boltratch", + [60625] = "Tizak Boltratch", + [60626] = "Razen Mudvalve", + [60627] = "Taklo Ringpipe", + [60628] = "Grimdar Firebrow", + [60629] = "Tholdan Mountainheart", + [60630] = "Grash", + [60631] = "N\'ribbi", + [60632] = "Clampjaw", + [60633] = "Duke Tavinrad", + [60634] = "Custodian A-01", + [60635] = "Earthshaper Thoron", + [60636] = "Razzik Goldbucket", + [60637] = "Dragga Stonehand", + [60638] = "Bosh the Basher", + [60639] = "Southfury Bruiser", + [60640] = "Sergeant Perth", + [60641] = "Goma", + [60642] = "Arcanist Sovatir", + [60643] = "Fazgel Mechaflame", + [60644] = "Arcanist Sovatir", + [60645] = "Mr. Twinkle", + [60646] = "Evatax", + [60647] = "Artist", + [60648] = "Olom", + [60649] = "Rainn Farred", + [60650] = "Pipnam", + [60651] = "Elerona", + [60652] = "Waya Tallgrain", + [60653] = "Skeletal Blacksmith", + [60654] = "Ghoul", + [60655] = "Abomination", + [60656] = "Ordin Frostbane", + [60657] = "Krilana", + [60658] = "Mournful Apparition", + [60659] = "Cydas Moonshadow", + [60660] = "Vala\'shan the Ancient", + [60661] = "Lefwen The Protector", + [60662] = "Bannermaster Shonte Daud", + [60663] = "Grin Harold", + [60664] = "Blacktooth Grunt", + [60665] = "Raider Vilefeast", + [60666] = "Vestia Moonspear", + [60667] = "Speaker Vereesa Windrunner", + [60668] = "Quorthon", + [60669] = "Tyrande Whisperwind", + [60670] = "Captain James Darrowmont", + [60671] = "Theramore Marine", + [60672] = "Alah\'thalas Ranger", + [60673] = "Lady Ripper", + [60674] = "Dre\'gheor Frostshiv", + [60675] = "Scourge Soldier", + [60676] = "Scourge Commander", + [60677] = "Ranger-Captain Nasuna Dawnbringer", + [60678] = "Southfury Peon", + [60679] = "Spirit of the Turtle", + [60680] = "Extravagant Red Firework Quest Credit", + [60681] = "Extravagant Green Firework Quest Credit", + [60682] = "Extravagant Yellow Firework Quest Credit", + [60683] = "The Greater Spirit of Harmony", + [60697] = "Soothound", + [60698] = "Ambassador Gessendar", + [60700] = "Nantai Truthwind", + [60701] = "Gress", + [60702] = "Sarn Strongrog", + [60703] = "Vean\'za", + [60704] = "Blossom", + [60705] = "Zibs Smallcoil", + [60706] = "Taranarion", + [60707] = "Darren Jones", + [60708] = "Death\'s Head Cultist", + [60709] = "Cookie", + [60710] = "Niremius Darkwind", + [60711] = "Pustax", + [60712] = "Decoy Dragonling", + [60713] = "Peculiar Broodling", + [60714] = "Marglum Blood-eye", + [60715] = "\'Broody\'", + [60716] = "Hateforge Watcher", + [60717] = "Hateforge Chemist", + [60718] = "Hateforge Cleric", + [60719] = "Hateforge Craftsman", + [60720] = "Hateforge Engineer", + [60721] = "Hateforge Miner", + [60722] = "Hateforge Overseer", + [60723] = "Hateforge Taskmaster", + [60724] = "Hateforge Warden", + [60725] = "Twilight Fireblade", + [60726] = "Twilight Shadowcaller", + [60727] = "Colonel Breen", + [60728] = "Old Bryan", + [60729] = "Captain Wallace Cross", + [60730] = "Captain Harker", + [60731] = "Magus Halister", + [60732] = "Sergeant Terresa", + [60733] = "Dockmaster Lorman", + [60734] = "Hatereaver Annihilator", + [60735] = "High Foreman Bargul Blackhammer", + [60736] = "Engineer Figgles", + [60737] = "Har\'gesh Doomcaller", + [60738] = "Faceless Terror", + [60739] = "Winston Chesterson", + [60740] = "Bald\'aan The Quiet", + [60741] = "Crimson Guard", + [60742] = "Sanctum Dreamer", + [60743] = "Sanctum Dragonkin", + [60744] = "Sanctum Wyrm", + [60745] = "Sanctum Wyrmkin", + [60746] = "Sanctum Scalebane", + [60747] = "Erennius", + [60748] = "Solnius", + [60749] = "Champion Taza\'go", + [60750] = "Ekka", + [60751] = "Hingozu", + [60752] = "Seer Maz\'ek", + [60753] = "Tinubi", + [60754] = "Yaz\'rik", + [60755] = "Viceclaw", + [60757] = "Muckshell Makrura", + [60758] = "Mol\'gol", + [60759] = "Sorlugg", + [60760] = "Bagaroh", + [60761] = "Jaiymu", + [60762] = "Blacksmith Torren", + [60763] = "Darkseer Geshtol", + [60764] = "Dagesh the Evoker", + [60765] = "Raider Fargosh", + [60766] = "Golsh", + [60767] = "Karfang Grunt", + [60768] = "Herekk", + [60769] = "Molk", + [60770] = "Karfang", + [60771] = "Sarkensh", + [60772] = "Councilor Vargek", + [60773] = "Soresh", + [60774] = "Taskmaster Ok\'gog", + [60775] = "Mistress Katalla", + [60776] = "Valril the Seeker", + [60777] = "Gazush the Rabid", + [60778] = "Yur Dragonfist", + [60779] = "\'Chaser\'", + [60780] = "Annabelle Livingstone", + [60781] = "Oswald Livingstone", + [60782] = "Brian Livingstone", + [60783] = "Marjorie Natheldon", + [60784] = "Bart Natheldon", + [60785] = "Eperius", + [60786] = "Tarral Holk", + [60787] = "Peter Yarrel", + [60788] = "Sergeant Karster", + [60789] = "Hazel Luppel", + [60790] = "Mathilda Beckett", + [60791] = "Adjutant Scheer", + [60792] = "Sergeant Burnside", + [60793] = "Commander Baelos", + [60794] = "Engineer Wigglestip", + [60795] = "Harguf", + [60796] = "\'Sugarcoat\' X00 Prototype", + [60797] = "\'Nugget\' D01 Battle Chicken", + [60798] = "\'Buttercup\' X01 Prototype", + [60799] = "Hertha", + [60800] = "Jurag", + [60801] = "Nelly", + [60802] = "Mushu", + [60803] = "Tyrion Bouden", + [60804] = "Dragonsworn Lookout", + [60805] = "Blackwing Guard", + [60806] = "Master Genko", + [60807] = "Hard Knocks Bruiser", + [60808] = "Razza Sparkfizzle", + [60809] = "Vault Baron", + [60810] = "Arcane Golem", + [60811] = "Pathstrider Protector", + [60812] = "Quartermaster Anvilward", + [60813] = "Ahnja Summerwind", + [60814] = "Brave Cloudhorn", + [60815] = "Brave Runebrace", + [60816] = "Kolgo Highmane", + [60817] = "Trainer Sinopa", + [60818] = "Trainer Tokala", + [60819] = "Skyrider", + [60820] = "Bluffclaw", + [60821] = "Sunchaser", + [60822] = "Brave Proudspear", + [60823] = "Elder Pyrestrider", + [60824] = "Kiona Stonefeather", + [60825] = "Metahnze Hawkdreamer", + [60826] = "Sokahn Truthwalker", + [60827] = "Troll Hunter Penthar", + [60828] = "Darlen Darkgrin", + [60829] = "Corrosis", + [60830] = "Hateforge Excavator", + [60831] = "Hateforge Geologist", + [60832] = "Morgrim Firepike", + [60833] = "Orvak Sternrock", + [60834] = "Radgan Deepblaze", + [60835] = "Raz\'gol Deadtusk", + [60836] = "Slaver Vilegrip", + [60837] = "Ambassador Gessendar", + [60838] = "Boulderclaw Tunneler", + [60839] = "Boulderclaw Geomancer", + [60840] = "Boulderclaw Ambusher", + [60841] = "Enraged Cave Rumbler", + [60842] = "Boulderclaw Basher", + [60843] = "Kroshmak the Smasher", + [60844] = "Gorlush the Trampler", + [60845] = "Kalman Azureborn", + [60846] = "Lashog", + [60847] = "Bristleback Rockshaper", + [60848] = "Bristleback Boar", + [60849] = "Bristleback Trapper", + [60850] = "Kas\'tal", + [60851] = "Ley-Technician Vorthal", + [60852] = "Roost Hatchling", + [60853] = "Tasag", + [60854] = "Farad Wrightsow", + [60855] = "Foreman Tanoth", + [60856] = "Hansu Go\'sha", + [60857] = "Soja", + [60858] = "Maltimor Gartside", + [60859] = "Gazzirik", + [60860] = "Xoro III", + [60861] = "Recluta", + [60862] = "Private Holson", + [60863] = "Ancestor of Wisdom", + [60864] = "Ancestor of Virtue", + [60865] = "Ancestor of Humility", + [60866] = "Toad", + [60867] = "Toad", + [60868] = "Toad", + [60869] = "Senator Granitebelt", + [60870] = "Varlag Duskbeard", + [60871] = "Harvest Reaper", + [60872] = "Masey Wirefuse", + [60873] = "Young Blackrock Worg", + [60874] = "Lady Meldralis Windsong", + [60875] = "Technician Nel\'doriel", + [60876] = "Broken Arcane Golem", + [60877] = "Ansela Dawnshield", + [60878] = "Carver Molsen", + [60879] = "Larry Ryder", + [60880] = "Krull Fireblood", + [60881] = "Kodiak Killbrew", + [60882] = "Aerdri", + [60883] = "Fiddlemaster", + [60884] = "Koniwa", + [60885] = "Gavlan Complainfist", + [60886] = "Talon Recruit", + [60887] = "Heralt \"Keeper Of The Hawk\"", + [60888] = "Herodwartus \"The Historian\" Minimus", + [60889] = "Aldein Smoothgore", + [60890] = "Zoltan Kork", + [60891] = "Elizabeth Herby", + [60892] = "Nobelke", + [60893] = "Expedition Commando", + [60894] = "Expedition Cleric", + [60895] = "Expedition Sailor", + [60896] = "Expedition Officer", + [60897] = "Expedition Soldier", + [60898] = "Expedition Scout", + [60899] = "Hydromancer Shaleborn", + [60900] = "Deckmaster Darkhollow", + [60901] = "Lieutenant Alverold", + [60902] = "Sir Danuvis", + [60903] = "Shadowforge Skinner", + [60904] = "Shadowforge Trapper", + [60905] = "Shadowforge Wyrm Hunter", + [60906] = "Kegdesh Foulmantle", + [60907] = "Shadowforge Excavator", + [60908] = "Borrin Gloombeard", + [60909] = "Azurescale Whelp", + [60910] = "Azurescale Manaweaver", + [60911] = "Drathos Runebreaker", + [60912] = "Ancient Warrior", + [60913] = "Ancient Warrior", + [60914] = "Ancient Warrior", + [60915] = "Ancient Warrior", + [60916] = "Forgotten Keeper", + [60917] = "Marauder King Corthan", + [60918] = "Stonevault Brute", + [60919] = "Stonevault Pillager", + [60920] = "Earthen Curator", + [60921] = "Earthen Rockshaper", + [60922] = "Orthal the Steward", + [60923] = "Surveyor Bronzehorn", + [60924] = "Torlig Redbrand", + [60925] = "Lord Nazgrim Redbrand", + [60926] = "Commando Harwall", + [60927] = "Darwin Holdfall", + [60928] = "Kelly Vaulstone", + [60929] = "Petty Officer Milldough", + [60930] = "Quartermaster Alden", + [60931] = "Sailor Borus", + [60932] = "Sailor Shalwynd", + [60933] = "Sailor Valia", + [60934] = "Vice Admiral Renhoff", + [60935] = "Marine Dalus", + [60936] = "Marine Hornby", + [60937] = "Marine Larwell", + [60938] = "Deckmaster Javin", + [60939] = "Deserter Exile", + [60940] = "Deserter Turncoat", + [60941] = "Sellick Voss", + [60942] = "Blackhorn Mystic", + [60943] = "Blackhorn Warrior", + [60944] = "Targos Hatewind", + [60945] = "Asza", + [60946] = "Murloc Tadpole", + [60947] = "Kraul Lookout", + [60948] = "Chieftain Razortusk", + [60949] = "Private Talmand", + [60950] = "Private Sleightor", + [60951] = "Private Valnor", + [60952] = "Disturbed Ghost", + [60953] = "Paval Reethe", + [60954] = "Hedania", + [60955] = "Gelwig Darkbrow", + [60956] = "Curator Fizwhizzle", + [60957] = "Baggle Hackrust", + [60958] = "Ginlo Taxxo", + [60959] = "Technician Tixx", + [60960] = "Technician Steelbolt", + [60961] = "Head Technician Klazfit", + [60962] = "Fusemaster Blammo", + [60963] = "Salrog", + [60964] = "Artemus Halloway", + [60965] = "Shali Nosewrench", + [60966] = "Tanzig Wexlight", + [60967] = "Gig Xevno", + [60968] = "Treenza Fastfeet", + [60969] = "Neekik Wazfinger", + [60970] = "Security Officer Mort Tozzlefume", + [60971] = "Powder Town Bruiser", + [60972] = "Bogpaw Truthsay", + [60973] = "Dagdag Mossbelt", + [60974] = "Ikk-ikk Fenfur", + [60975] = "Rekk", + [60976] = "Muckhowl", + [60977] = "Melyndella", + [60978] = "Kaylee", + [60979] = "Bramblethorn Quilboar", + [60980] = "Bramblethorn Boar", + [60981] = "Bramblethorn Thornweaver", + [60982] = "Bramblethorn Trapper", + [60983] = "Bramblethorn Quilguard", + [60984] = "Bramblethorn Spirit", + [60985] = "Bramblethorn Haunted", + [60986] = "Gorras Thorncrusher", + [60987] = "Hemnock the Wise", + [60988] = "Bael Hardul Mountaineer", + [60989] = "Borrin Dustshoulder", + [60990] = "Darrak Redbrand", + [60991] = "Brundah Cliffbrow", + [60992] = "Throki Cliffbrow", + [60993] = "Grumnir Battlebeard", + [60994] = "Mountaineer Truthforge", + [60995] = "Unilda Thunderstone", + [60996] = "Prospector Flinthammer", + [60997] = "Lead Explorer Whitepeak", + [60998] = "Maloran Oakbranch", + [60999] = "Spigol Kneebolt", + [61000] = "Engineer Tansi Sparkfuse", + [61001] = "Farmer Segwar Ironback", + [61002] = "Orman Granitemantle", + [61003] = "Dugin Coalborn", + [61004] = "Garwen Loadstone", + [61005] = "Begwynn Blackmallet", + [61006] = "Harlek Vaultshield", + [61007] = "Tarlegg Redbrand", + [61008] = "Belwyth Redbrand", + [61009] = "Gimle Redbrand", + [61010] = "Torwyn Redbrand", + [61011] = "Halfdan Coalborn", + [61012] = "Magna Runecleave", + [61013] = "Sailor Hylreth", + [61014] = "Sailor Capewind", + [61015] = "Sailor Brewen", + [61016] = "Sailor Pardol", + [61017] = "Emissary Godwin Valorcall", + [61018] = "Plateau Fleshripper", + [61019] = "Private Glenndel", + [61020] = "Bar\'thog the Wicked", + [61021] = "Risen Marine", + [61022] = "Anguished Ghoul", + [61023] = "Westhaven Skeleton", + [61024] = "Senior Foreman Nazz Firecracker", + [61025] = "Mister Wick", + [61026] = "Warbringer Dar\'nakk", + [61027] = "Leprous Worker", + [61028] = "Overseer Vermintooth", + [61029] = "Blacksand Engineer", + [61030] = "Blacksand Laborer", + [61031] = "Blacksand Enforcer", + [61032] = "Blacksand Oilworker", + [61033] = "Blacksand Mechanic", + [61034] = "Blacksand Woodworker", + [61035] = "Pipemaster Zanglefuss", + [61036] = "Oilmaster Higgle Wirefuse", + [61037] = "B-33 Shredder", + [61038] = "Rumbling Earth Elemental", + [61039] = "Living Oil Blaze", + [61040] = "Jochi", + [61041] = "Warcaller Dekshar", + [61042] = "Almaudrak", + [61043] = "Baelfyr", + [61044] = "Yesu\'gei", + [61045] = "Warleader Temukar", + [61046] = "Fontenus", + [61048] = "Tiny Gelkis Rumbler", + [61049] = "Bonepaw Pup", + [61050] = "Daron Truthkeeper", + [61051] = "Senator Ryedol", + [61052] = "Mally O\'Flor", + [61053] = "Chen Stormstout", + [61054] = "Stormwind Commoner", + [61055] = "Orgrimmar Commoner", + [61056] = "Kagoro", + [61057] = "Gizzin Wildbucket", + [61058] = "Tazo Wirelight", + [61059] = "Hork", + [61060] = "Frenz Lodefire", + [61061] = "Disturbed Earth Elemental", + [61062] = "Scartusk", + [61063] = "Silmaron", + [61064] = "Archmage Talyvanah", + [61065] = "Magus Palon", + [61066] = "Echo of Corthan", + [61067] = "Forgotten Chieftain", + [61068] = "Forgotten Warlord", + [61069] = "Zetharia", + [61070] = "Dorothea", + [61071] = "Valund Halle", + [61072] = "Coastal Ripper", + [61073] = "Makrura Siltshell", + [61074] = "Highvale Gorilla", + [61075] = "Rockshell Crawler", + [61076] = "Sandshell Crawler", + [61077] = "Highvale Chimpanzee", + [61078] = "Highvale Monkey", + [61079] = "Makrura Deepclaw", + [61080] = "Elder Highvale Gorilla", + [61081] = "Grimeclaw", + [61082] = "Highvale Thunderer", + [61083] = "Spitefin Murloc", + [61084] = "Spitefin Netter", + [61085] = "Spitefin Tidecaller", + [61086] = "Spitefin Tidehunter", + [61087] = "Spitefin Wavecreeper", + [61088] = "Spitefin Oracle", + [61089] = "Glrgbl", + [61090] = "Brushtail Cobra", + [61091] = "Brushtail Adder", + [61092] = "Gravelhide Basilisk", + [61093] = "Agitated Rock Elemental", + [61094] = "Spiritual Wanderer", + [61095] = "Venomflayer Screecher", + [61096] = "Venomflayer Serpent", + [61097] = "Deepwater Hammerhead", + [61098] = "King Morogo Thunderfoot", + [61099] = "Jima", + [61100] = "Tazzo Gearfire", + [61101] = "Bixxle Screwfuse", + [61102] = "Baron Telraz", + [61103] = "Tel Co. Enforcer", + [61104] = "Tel Co. Worker", + [61105] = "Zalwiz Hardlug", + [61106] = "Razin Brasslight", + [61107] = "Klazz", + [61108] = "Wazlon Headiron", + [61109] = "Nokrot Felwaz", + [61110] = "Wrex Ozzlelight", + [61111] = "Pumpworker Zalwan", + [61112] = "Chef Danonzo Laxjolt", + [61113] = "Sneel Fizzwack", + [61114] = "O\'ggon", + [61115] = "Wezzy Coppersaw", + [61116] = "Leezza Fraxtoggle", + [61117] = "Archaeologist Trixia Goldspark", + [61118] = "Vengeful Spirit", + [61119] = "Shade of the Temptress", + [61120] = "Rethevus", + [61121] = "Chieftain Icepaw", + [61122] = "Seer Coldsnout", + [61123] = "Icepaw Reveler", + [61124] = "Icepaw Celebrator", + [61125] = "Bitterhide", + [61126] = "Ebu", + [61127] = "Winter Grell Trickster", + [61128] = "Winter Grell Schemer", + [61129] = "Wavecrest Explorer", + [61130] = "Wavecrest Siren", + [61131] = "Wavecrest Tidefinder", + [61132] = "Tezzin Skyfuse", + [61133] = "Razzit", + [61134] = "Simbu", + [61135] = "Abominable Snow Yeti", + [61136] = "Coldhowl", + [61137] = "Dolvan Bracewind", + [61138] = "Jamey", + [61139] = "Darneg Darkbeard", + [61140] = "Azmela Shadowcrest", + [61141] = "Erus Moonwake", + [61142] = "Sentinel Amandana", + [61143] = "Commander Starwind", + [61144] = "Valon Oaklight", + [61145] = "Delos Talonheart", + [61146] = "Kerrulg", + [61147] = "Brolthan Ironglade", + [61148] = "Malora Valeheart", + [61149] = "Taloras Gladewind", + [61150] = "Huntress Daelara", + [61151] = "Calaran Windseeker", + [61152] = "Saloran Nightwell", + [61153] = "Raela Moonarrow", + [61154] = "Sentinel Amaera", + [61155] = "Shaewyn", + [61156] = "Vana Gracefall", + [61157] = "Nibu", + [61158] = "Linthea", + [61159] = "Daniel", + [61160] = "Vhreka", + [61161] = "Zoki", + [61162] = "Blood Elf Loyalist", + [61163] = "Krampus", + [61164] = "Faladar Starsplinter", + [61165] = "Sapling of Ethwyr", + [61166] = "Torgen Blackscar", + [61167] = "Apothecary Clarkson", + [61168] = "Great Spirit of Winter", + [61169] = "Ancient of Winter", + [61170] = "Father Bear", + [61171] = "Greatfather Winter", + [61172] = "The Winter Patriarch", + [61173] = "Great-Father Winter", + [61174] = "Kuz Kusstusk", + [61175] = "Alika Ripfrost", + [61176] = "Melaniah Belore\'Danil", + [61177] = "Raz\'umdaj Frostnose", + [61178] = "Alaya Dawnrose", + [61179] = "Henning Silverbeard", + [61180] = "Brandon Sawyer", + [61181] = "Urghor the Talker", + [61182] = "Tylekinah Lunalumina", + [61183] = "Lukza Herbspreader", + [61184] = "Bulor Wheathoof", + [61185] = "Bradley Chillbone", + [61186] = "Tikor Goldspin", + [61187] = "Brum Bamse", + [61188] = "Dali Spinflux", + [61189] = "Mulin Snowbeard", + [61190] = "Dutch Haveshine", + [61191] = "Shadowbane Alpha", + [61192] = "Shadowbane Darkcaster", + [61193] = "Shadowbane Ambusher", + [61194] = "Shadowbane Ragefang", + [61195] = "Grellkin Shadow Weaver", + [61196] = "Grellkin Primalist", + [61197] = "Grellkin Channeler", + [61198] = "Shattercage Spearman", + [61199] = "Shattercage Magiskull", + [61200] = "Phantom Guardsman", + [61201] = "Haunted Stable Tender", + [61202] = "Haunted Blacksmith", + [61203] = "Dark Rider Apprentice", + [61204] = "Dark Rider Champion", + [61205] = "Phantom Servant", + [61206] = "Skitterweb Crawler", + [61207] = "Skitterweb Darkfang", + [61208] = "Skitterweb Venomfang", + [61209] = "Skitterweb Leaper", + [61210] = "Phantom Cook", + [61211] = "Shadowbane Glutton", + [61212] = "Sanctum Supressor", + [61213] = "Ravos Ragepaw", + [61214] = "Delas Dreamwalker", + [61215] = "Ancient Protector", + [61216] = "Emerald Grovekeeper", + [61217] = "Zephyra", + [61218] = "Deviate Coiler Hatchling", + [61219] = "Sirandil Swiftsilver", + [61220] = "Spectral Steed", + [61221] = "Brood Queen Araxxna", + [61222] = "Lord Blackwald II", + [61223] = "Clawlord Howlfang", + [61224] = "Grizikil", + [61225] = "Moroes", + [61226] = "Moroes", + [61227] = "Duskpelt Prowler", + [61228] = "Duskpelt Stalker", + [61229] = "Starving Duskpelt", + [61230] = "Vilewing Batling", + [61231] = "Vilewing Bat", + [61232] = "Hollow Web Spider", + [61233] = "Hollow Web Venomspitter", + [61234] = "Lingering Skeleton", + [61235] = "Shambling Dead", + [61236] = "Nighthowl Worgen", + [61237] = "Nighthowl Alpha", + [61238] = "Nighthowl Shadowcaster", + [61239] = "Ravenwood Spectre", + [61240] = "Ravenwood Apparition", + [61241] = "Custodian Mathias", + [61242] = "Sergeant Gately", + [61243] = "Brol\'ok Ogre", + [61244] = "Brol\'ok Mauler", + [61245] = "Brol\'ok Shaman", + [61246] = "Brol\'ok Smasher", + [61247] = "Chief Maulfist", + [61248] = "Foulhide Basher", + [61249] = "Foulhide Gnoll", + [61250] = "Foulhide Mystic", + [61251] = "Bloodclaw Worgen", + [61252] = "Bloodclaw Alpha", + [61253] = "Bloodclaw Rager", + [61254] = "\"Legalbrow\"", + [61255] = "Lord Ebonlocke", + [61256] = "Magistrate Burton", + [61257] = "Baron Caliban Silverlaine", + [61258] = "Elaroth Ranworth", + [61259] = "Lord Darius Ravenwood", + [61260] = "Moranna Rosenberg", + [61261] = "Ravenshire Guard", + [61262] = "Ravenshire Guard", + [61263] = "Regent-Lady Celia Harlow", + [61264] = "Regent-Lord Mortimer Harlow", + [61265] = "Sergeant Arbington", + [61266] = "Alexandra", + [61267] = "Perimus", + [61268] = "Valius", + [61269] = "Historian Samual Ravencrest", + [61270] = "Magistrate Carson", + [61271] = "Magus Orelius", + [61272] = "Samantha Stewards", + [61273] = "Jacob Stewards", + [61274] = "Tanner Fralsh", + [61275] = "Dockwatcher Vorren", + [61276] = "Larry Bolder", + [61277] = "Todd Bolder", + [61278] = "Narwick Everton", + [61279] = "Lance Everton", + [61280] = "Hailey Everton", + [61281] = "Dark Bishop Mordren", + [61282] = "Deathstalker Alynna", + [61283] = "Deathstalker Vernon", + [61284] = "Dominic Larson", + [61285] = "Harlan Ballow", + [61286] = "Orvan Darkeye", + [61287] = "Harrison Blackheart", + [61288] = "Savenna Mosscage", + [61289] = "Tamara Gracefall", + [61290] = "Joshua Ebonmere", + [61291] = "Balgon Slin", + [61292] = "Alleana Moonfeather", + [61293] = "Basutei", + [61294] = "Ogren Redbeard", + [61295] = "Codger of Shadows", + [61296] = "Nyhm", + [61297] = "Lee Roy", + [61298] = "Mysterious Sheep", + [61299] = "Tharmula Cloudwinds", + [61300] = "Ambassador Arenia Boughshadow", + [61301] = "Echami Roosttender", + [61302] = "Windserpent Tender Fahemi", + [61303] = "Spirit Guide Khana", + [61304] = "Wind Serpent", + [61305] = "Boinklett", + [61306] = "Boinker", + [61307] = "The Unseen", + [61308] = "Ghostly Caretaker", + [61309] = "Fallen Hero", + [61310] = "Huckleberry", + [61311] = "El Choppa", + [61312] = "Hayllary", + [61313] = "Kenny", + [61314] = "Bo Peep", + [61315] = "Jolly Rancher", + [61316] = "Drifting Avatar of Sand", + [61317] = "Temporal Dust", + [61318] = "Echo of Time", + [61319] = "Master Blacksmith Rolfen", + [61320] = "Duke Rothlen", + [61321] = "Judge Freelan Carlisle", + [61322] = "Councilman Kyleson", + [61323] = "Countess Tillia Earlwake", + [61324] = "Spectral Noble", + [61325] = "Lantho Talonmoon", + [61326] = "Ralathius", + [61327] = "Tanalla Sagebranch", + [61328] = "The Cook", + [61329] = "Echo of Medivh", + [61330] = "Council Spirit", + [61331] = "Council Spirit", + [61332] = "Misthoof Stag", + [61333] = "Misthoof Sprinter", + [61334] = "Repulsing Ooze", + [61335] = "Verdant Ooze", + [61336] = "Greathorn Owl", + [61337] = "Greathorn Hunter", + [61338] = "Vilemusk Satyr", + [61339] = "Vilemusk Felsworn", + [61340] = "Vilemusk Shadowstalker", + [61341] = "Vilemusk Hellcaller", + [61342] = "Barkskin Ursa", + [61343] = "Barkskin Pathfinder", + [61344] = "Barkskin Avenger", + [61345] = "Barkskin Gardener", + [61346] = "Barkskin Den Watcher", + [61347] = "Barkskin Windtalker", + [61348] = "Elder Growlheart", + [61349] = "Relentless Infernal", + [61350] = "Relentless Temptress", + [61351] = "Relentless Felguard", + [61352] = "Enduring Doomguard", + [61353] = "Dreadlord Commander", + [61354] = "Mana Stalker", + [61355] = "Naesanna Moongrace", + [61356] = "Shadeflayer Berserker", + [61357] = "Shadeflayer Shadowhunter", + [61358] = "Shadeflayer Shaman", + [61359] = "Shadeflayer Trapper", + [61360] = "Warlord Hanzento", + [61361] = "Speaker Gan\'hota", + [61362] = "Foulhide Overseer", + [61363] = "Greymane Preserver", + [61364] = "Greymane Arbalest", + [61365] = "Greymane Knight", + [61366] = "Greymane Instigator", + [61367] = "Shadeflayer Troll", + [61368] = "Handon Blackhammer", + [61369] = "Anati Gapper", + [61370] = "Nolan Tanner", + [61371] = "Learic Veylon", + [61372] = "Adam Bonlay", + [61373] = "Mariette Shademore", + [61374] = "Dark Ranger Anya", + [61375] = "Blackthorn", + [61376] = "Livia Strongarm", + [61377] = "Luke Agamand", + [61378] = "Blackthorn Footpad", + [61379] = "Greta Longpike", + [61380] = "Odon Shademore", + [61381] = "Frell Rosewick", + [61382] = "Cook Harry", + [61383] = "Maxwell Givings", + [61384] = "Donald Rosewick", + [61385] = "Darrow Shademore", + [61386] = "Father Oblen", + [61387] = "Brother Elias", + [61388] = "Greymane Elite", + [61389] = "Greymane Footman", + [61390] = "Greymane Noble", + [61391] = "Greymane Cleric", + [61392] = "Foulhide Shaman", + [61393] = "Greymane Watcher", + [61394] = "Greymane Worker", + [61395] = "Greymane Miner", + [61396] = "Greymane Taskmaster", + [61397] = "Greymane Enforcer", + [61398] = "Cannoneer Rileson", + [61399] = "Foulhide Miner", + [61400] = "Enslaved Worker", + [61401] = "Greater Vilewing Bat", + [61402] = "Spitecrest Wavesinger", + [61403] = "Spitecrest Myrmidon", + [61404] = "Mistress Hesszha", + [61405] = "Snarlclaw", + [61406] = "Lord Zarsan", + [61407] = "Spitecrest Naga", + [61408] = "Spitecrest Netter", + [61409] = "Spitecrest Murloc", + [61416] = "Kurnen Oathbrace", + [61417] = "Greymane Justicar", + [61418] = "Genn Greymane", + [61419] = "Matthias Holtz", + [61420] = "Packmaster Ragetooth", + [61421] = "Judge Sutherland", + [61422] = "Dustivan Blackcowl", + [61423] = "Marshal Magnus Greystone", + [61424] = "Darkpelt Rager", + [61425] = "Darkpelt Alpha", + [61426] = "Darkpelt Shadowcaster", + [61427] = "Varaxxius", + [61428] = "Technician Hizzleflash", + [61429] = "Technician Stormlight", + [61430] = "Technician Voltgear", + [61431] = "Reclamation Guardian", + [61432] = "Automated Servitor", + [61433] = "Chemist Glowsight", + [61434] = "Chemist Lizzbang", + [61435] = "Teezle Dualflash", + [61436] = "Master Chemist Volterwhite", + [61437] = "Master Technician Wirespanner", + [61438] = "Cassie Copperlight", + [61439] = "Bimock Sparkbrake", + [61440] = "Gnidabern Coilspinner", + [61441] = "Weezan Littlegear", + [61442] = "Geebirn Coilspinner", + [61443] = "Dimbil Stormshot", + [61444] = "Tindlee Clockbadge", + [61445] = "Krilee Stormshot", + [61446] = "Tenner Pipegadge", + [61447] = "Mother Tanya", + [61448] = "Tess Greymane", + [61449] = "Mustang", + [61450] = "Demetreus", + [61451] = "Gilneas Citizen", + [61452] = "Lurn Five-Pelts", + [61453] = "Armed Greymane Militia", + [61454] = "Levandra", + [61455] = "Avram Duskgarde", + [61456] = "Henkel Togglepitch", + [61457] = "Liam Greymane", + [61458] = "Liam Greymane", + [61459] = "Bearbane", + [61460] = "Ethan Ravencroft", + [61461] = "Auctioneer Sizewrench", + [61462] = "Darkpelt Worgen", + [61463] = "Unbalanced Aqua", + [61464] = "Malfunctioning Servitor", + [61465] = "Corrosive Backup", + [61466] = "XV - 81", + [61467] = "Gelwin Brasspipe", + [61468] = "Winlassah Dawnstar", + [61469] = "Shanyra El\'aluna", + [61470] = "Kanarius Spellstalker", + [61471] = "Leoserith Spellbinder", + [61472] = "Toryn Khadinus", + [61473] = "Kalara Shadebough", + [61474] = "Talorum Autumnsleaf", + [61475] = "Anarea Sundawn", + [61476] = "Grand Arcanist Azj\'Tordin", + [61477] = "Defender of Ronae\'thalas", + [61478] = "Talavana Andalorah", + [61479] = "Illanaya Spellwind", + [61480] = "Brilliant Wind Serpent", + [61481] = "Shinban Four-Eyes", + [61482] = "Neevan Gubblewire", + [61483] = "Azshanaya Spellwind", + [61484] = "Kalaya Spellbinder", + [61485] = "Evandil Nightwind", + [61486] = "Clemence the Counter", + [61487] = "Barkskin Fisher", + [61488] = "Azurebeak", + [61489] = "Volatile Aqua Elemental", + [61490] = "Whitestripe Tiger", + [61491] = "Tanthos Everbreeze", + [61492] = "Jancel Stardust", + [61493] = "Vannamyr Featherwind", + [61494] = "Enthos", + [61495] = "Paranus", + [61496] = "Everwyl Moonseeker", + [61497] = "Loremaster Taerlon", + [61498] = "M-0L1Y", + [61499] = "Shade Mage", + [61500] = "Highvale Silverback", + [61501] = "Stoneshell", + [61502] = "Witch Doctor Tan\'zo", + [61503] = "Blazespark", + [61504] = "Earthcaller Rezengal", + [61505] = "Talona Gladeheart", + [61506] = "Elder Barkmaw", + [61507] = "Nargg", + [61508] = "Belgrashh", + [61509] = "Speaker Frulgg", + [61510] = "Winterfall Envoy", + [61511] = "Deadwood Envoy", + [61512] = "Arch Druid Dreamwind", + [61513] = "Aliattan Anderson", + [61514] = "Willow", + [61515] = "Ripjaw", + [61516] = "Embereye", + [61517] = "Ruk\'thok the Pyromancer", + [61518] = "Aquitus", + [61519] = "Vaenar Hollowstar", + [61520] = "Gaethas Fargaze", + [61521] = "Danthar Oakmantle", + [61522] = "Ilsa Hollowstar", + [61523] = "Naytha Grovelight", + [61524] = "Relthan Highmoon", + [61525] = "Vorthos Everbreeze", + [61526] = "Glade Treant", + [61527] = "Nordanaar Guardian", + [61528] = "Glanthas the Ancient", + [61529] = "Huntress Eldasana", + [61530] = "Rosarth Valebright", + [61531] = "Slumbnaz", + [61532] = "Levenda Skytalon", + [61533] = "Shadeflayer Goliath", + [61534] = "Councilor Ravencrest", + [61535] = "Camp Leader Gethenor", + [61536] = "Camp Chef Velden", + [61537] = "\'Quaking\' Kevin", + [61538] = "Vagrant Camp Refugee", + [61539] = "Clerk Ebonmere", + [61540] = "Corporal Ranworth", + [61541] = "Brigade Footman", + [61542] = "High Officer Osmark", + [61543] = "Guard Captain Marson", + [61544] = "Nightmare Apparition", + [61545] = "Ysera", + [61546] = "Ursoc", + [61547] = "Goldrinn", + [61548] = "Andana", + [61549] = "Maria Galwest", + [61550] = "Baron Perenolde", + [61551] = "Maltimor\'s Prototype", + [61552] = "Duskskitterer", + [61553] = "Widow of the Woods", + [61554] = "Dawnhowl", + [61555] = "Bonecruncher", + [61556] = "Larannikus", + [61557] = "Corporal Danmere", + [61558] = "Firstborn of Arugal", + [61559] = "Angered Phantom", + [61560] = "Endaras Fadewood", + [61561] = "Buthok Cloudhorn", + [61562] = "Farana Leafblade", + [61563] = "Arayna Softwind", + [61564] = "Enthelar Valebranch", + [61565] = "Xalthix", + [61566] = "Captain Veller", + [61567] = "Refrik", + [61568] = "Hanvar the Righteous", + [61569] = "High Judicator Frensworth", + [61570] = "Parnabus", + [61571] = "Doorman Montigue", + [61572] = "Tanner Brightbelt", + [61573] = "Rollo Idleman", + [61574] = "\'Stickypaws\'", + [61575] = "Epidamu", + [61576] = "Canos Clearwood", + [61577] = "Annesastrasza", + [61578] = "Shadowhunter Trak\'nal", + [61579] = "Melanastrasza", + [61580] = "Faelindella", + [61581] = "Kiri Starstalker", + [61582] = "Nordrassil Nymph", + [61583] = "Commander Anashya Starfall", + [61584] = "Larodar Wildwhisper", + [61585] = "Sentinel Glensha", + [61586] = "Cenerron", + [61587] = "Bethelon Wildwhisper", + [61588] = "Velos Sharpstrike", + [61589] = "Voltra", + [61590] = "Lataro Swifthoof", + [61591] = "Sentinel Briariel", + [61592] = "Yohan Wildwalker", + [61593] = "Marlonias Shademoon", + [61594] = "Dark Spirit of Loresh", + [61595] = "Spirit of Loresh", + [61596] = "Venomlash Chimaera", + [61597] = "Dunebound Chimaera", + [61598] = "Marat Grimtotem", + [61599] = "Darksaber", + [61600] = "Thalanaar Sentinel", + [61601] = "Ancient Guardian", + [61602] = "Matthew Beckett", + [61603] = "Thunder", + [61604] = "Gilneas Stable Horse", + [61605] = "Horsemaster Levvin", + [61606] = "Hederine Manastalker", + [61607] = "Elvanor Heartsong", + [61608] = "Dark Rider", + [61609] = "Lord Xanvarak", + [61610] = "Hierophant Nerseus", + [61611] = "Postworker Albertus Manethas", + [61612] = "Postworker Katya Hastings", + [61613] = "Zafan", + [61614] = "Lord Ivar Pyrewood", + [61615] = "Overlord Grigor", + [61616] = "Bradley Steel", + [61617] = "Arghon Stonewall", + [61618] = "Vagron Bloodheart", + [61619] = "Kenja Blacktusk", + [61620] = "Henley Rothand", + [61621] = "Gordon Hardfoot", + [61622] = "Tanovan Darkwell", + [61623] = "Orrik Thunderbeard", + [61624] = "AJ Springberry", + [61625] = "Daisy Windhelm", + [61626] = "Diane Cloverfield", + [61627] = "Old Jonah", + [61628] = "Willhelm Rockdust", + [61629] = "Marven", + [61630] = "Heartclaw", + [61631] = "Benny", + [61632] = "Dakikon", + [61633] = "Jim\'bala", + [61634] = "Zin\'jashi", + [61635] = "Zim\'bwaba", + [61636] = "Mezaji", + [61637] = "Ka\'zinka", + [61638] = "Grenthor", + [61639] = "Frixxle Blastvalve", + [61640] = "Marksman Rembrandt Olar", + [61641] = "Zappo Zapblast", + [61642] = "Radio Technician", + [61643] = "Raven", + [61644] = "Torkspark Boomwrench", + [61645] = "Grok Twigleg", + [61646] = "Helmsman Vic", + [61647] = "Johnny Deepdrowned", + [61648] = "Alvida", + [61649] = "Captain Screech", + [61650] = "Ragnak Helmcleaver", + [61651] = "Vi\'cha Spirithowler", + [61652] = "Taka\'che Bloodhide", + [61653] = "Elder Orgrun", + [61654] = "Rahna Longstrider", + [61655] = "Witchdoctor T\'zabagesh", + [61656] = "Ashfeather Buzzard", + [61657] = "Ashfeather Swooper", + [61658] = "Ashpaw Hyena", + [61659] = "Ashpaw Hunter", + [61660] = "Stonetail Scorpid", + [61661] = "Stonetail Lasher", + [61662] = "Blackvenom Scorpid", + [61663] = "Mudpaw Gnoll", + [61664] = "Mudpaw Scavenger", + [61665] = "Mudpaw Brute", + [61666] = "Mudpaw Mystic", + [61667] = "Mudpaw Shell Collector", + [61668] = "Mudpaw Miner", + [61669] = "Mudpaw Overseer", + [61670] = "Gelwex Goldfingers", + [61671] = "Supervisor Laggle", + [61672] = "Venture Co. Instigator", + [61673] = "Venture Co. Thug", + [61674] = "Venture Co. Drifter", + [61675] = "Venture Co. Lumber Worker", + [61676] = "Venture Co. Vandal", + [61677] = "Venture Co. Cartographer", + [61678] = "Stoneshell Makrura", + [61679] = "Stoneshell Scrabbler", + [61680] = "Muckreef Crawler", + [61681] = "Young Muckreef Crawler", + [61682] = "Muckfin Murloc", + [61683] = "Muckfin Trapper", + [61684] = "Muckfin Lurker", + [61685] = "Muckfin Tidecaller", + [61686] = "Ashfeather Scavenger", + [61687] = "Malfunctioning Mine-Bot", + [61688] = "Faulty Battletron 1000", + [61689] = "Young Thalassian Boar", + [61690] = "Young Crimson Lynx", + [61691] = "Forest Hawkstrider", + [61692] = "Thalassian Boar", + [61693] = "Crimson Lynx", + [61694] = "Thalassian Stag", + [61695] = "Ivory Hawkstrider", + [61696] = "Elder Thalassian Boar", + [61697] = "Bright Lynx", + [61698] = "Bright Lynx Matriarch", + [61699] = "Shar\'lan", + [61700] = "Elder Crimson Lynx", + [61701] = "Thalassian Treant", + [61702] = "Farstride Netter", + [61703] = "Farstride Coastrunner", + [61704] = "Farstride Crawler", + [61705] = "Deepmurk Oracle", + [61706] = "Deepmurk Warrior", + [61707] = "Deepmurk Darkhunter", + [61708] = "Murkblood", + [61709] = "Reefscale Sorceress", + [61710] = "Reefscale Warrior", + [61711] = "Reefscale Sunderer", + [61712] = "Lord Vash\'arj", + [61713] = "Lady Renirja", + [61714] = "Autumnal Treant", + [61715] = "Stallhorn Stag", + [61716] = "Crimson Hawkstrider", + [61717] = "Thalassian Fox", + [61718] = "Highborne Soulwraith", + [61719] = "Vanthalir\'il Theron", + [61720] = "Tantaz Coppermud", + [61721] = "Daxx Rightblast", + [61722] = "Sazzlix", + [61723] = "Blackstone Bruiser", + [61724] = "Brax Goldgrasp", + [61725] = "Foreman Pipelatch", + [61726] = "Kana Togglebend", + [61727] = "Rankle", + [61728] = "Shazzlan", + [61729] = "Taxxlo Rustgate", + [61730] = "Supplymaster Maxlo", + [61731] = "Sindor Packfuse", + [61732] = "Gox Borelight", + [61733] = "Supervisor Ozzick", + [61734] = "Black Ash Digger", + [61735] = "Blackstone Slave", + [61736] = "Blackstone Miner", + [61737] = "Overseer Kizzcrack", + [61738] = "Tinkerer Ozzlo", + [61739] = "Sasha Linelight", + [61740] = "Yox Rackgadget", + [61741] = "Balnack Copperlight", + [61742] = "Mazin Forkblast", + [61743] = "Hazlor Torkfuse", + [61744] = "Pumpworker Fizzlo", + [61745] = "Pumpworker Kanzal", + [61746] = "Pumpmaster Galvax", + [61747] = "Bruiser Yevo", + [61748] = "Gazzik", + [61749] = "Fanzo Edgeline", + [61750] = "Gereno Topside", + [61751] = "Kango Boltblast", + [61752] = "Bruiser Rakklan", + [61753] = "Technician Spux", + [61754] = "Dazlon Brassdigger", + [61755] = "Ranala Greedvolt", + [61756] = "Brok Thunderforge", + [61757] = "Sindri Thunderforge", + [61758] = "Frig Thunderforge", + [61759] = "DV-500", + [61760] = "Technician Reyvo", + [61761] = "Mining Foreman Bizzlo", + [61762] = "Schera Framesnap", + [61763] = "Dean LeGuin", + [61764] = "High Widow Arania", + [61765] = "Gunther", + [61766] = "Overzealous Student", + [61767] = "Bonereaver Sentinel", + [61768] = "Skittering Horror", + [61769] = "Failed Student Experiment", + [61770] = "Thalassian Sentinel", + [61771] = "Alah\'Thalas Sentinel", + [61772] = "Tenris Mirkblood", + [61773] = "Withered Refugee", + [61774] = "Brilliant Mana Wyrm", + [61775] = "Emerald Mana Wyrm", + [61776] = "Lavender Mana Wyrm", + [61777] = "Malfunctioning Arcane Golem", + [61778] = "Defective Arcane Golem", + [61779] = "Arcane Pounder", + [61780] = "Blood Elf Ranger", + [61781] = "Blood Elf Darkcaster", + [61782] = "Blood Elf Marauder", + [61783] = "Illidari Felhunter", + [61784] = "Gilaras Sunfury", + [61785] = "Ithirilen Shadewind", + [61786] = "Blood Elf Spy", + [61787] = "Veloren Brightstar", + [61788] = "Eldin Sunstrider", + [61789] = "Moonfeather", + [61790] = "Arcandir", + [61791] = "Kal\'mantir the Mad", + [61792] = "The Snipper", + [61793] = "Dysfunctional Shreddertron 1200", + [61794] = "Vanessa Moneybutton", + [61795] = "Dex Lodespark", + [61796] = "Ordenal Owlmane", + [61797] = "Warden Sira Moonwarden", + [61798] = "Viz\'neya Firefly", + [61799] = "Lor\'themar Theron", + [61800] = "Grand Magister Rommath", + [61801] = "Halduron Brightwing", + [61802] = "Farenia Roseheart", + [61803] = "Astalor Sunsworn", + [61804] = "Voren\'thal the Scryer", + [61805] = "Miralin Wavesinger", + [61806] = "Liadrin", + [61807] = "Aerthand Skyshield", + [61808] = "Amara Highbreeze", + [61809] = "Avenant", + [61810] = "Briella Brightsun", + [61811] = "Calhir Dawnchaser", + [61812] = "Celia Daywing", + [61813] = "Elenia Everdawn", + [61814] = "Edrion Ironstrike", + [61815] = "Fainriel Silverharp", + [61816] = "Taliren Lightborn", + [61817] = "Jolie Keenwit", + [61818] = "Kaelin Bladesong", + [61819] = "Lin Swiftblade", + [61820] = "Liris Fairlocks", + [61821] = "Maelor Steelguard", + [61822] = "Magister Sylvus Silkspinner", + [61823] = "Melanthe Shadesong", + [61824] = "Nirenia Swiftsun", + [61825] = "Othorion Whitelance", + [61826] = "Raelus Morninglight", + [61827] = "Saelyn Seastrider", + [61828] = "Thalion Noblewarden", + [61829] = "Phylas Hawkwing", + [61830] = "Niniel Snowgleam", + [61831] = "Tiriel Brightwater", + [61832] = "Vanudal Goldweaver", + [61833] = "Aelira Dawnhand", + [61834] = "Fenrion Rendall", + [61835] = "Telina Shadehand", + [61836] = "Velessa Brightstar", + [61837] = "Geherion Whitesnake", + [61838] = "Talvas Whitesnake", + [61839] = "Daemar Swiftstrike", + [61840] = "Shandlar Thethis", + [61841] = "Leshandra Fintri", + [61842] = "Delarion Featherwing", + [61843] = "Ancient of Arcane", + [61844] = "Sister of Autumn", + [61845] = "Rine", + [61846] = "John Fendi", + [61847] = "Image of Kael\'thas", + [61848] = "Silver Covenant Recruit", + [61849] = "Commander Braedin", + [61850] = "Ranathir", + [61851] = "Commander Anarileth", + [61852] = "Ka\'zmir Somberwind", + [61853] = "Professor Lysander", + [61854] = "Venture Co. Investigator", + [61855] = "Venture Co. Operative", + [61856] = "Venture Co. Analyst", + [61857] = "Venture Co. Woodcutter", + [61858] = "Venture Co. Watcher", + [61859] = "Deepmoss Lurker", + [61860] = "Overseer Fazwick Longfuse", + [61861] = "Galmo Tazzwrench", + [61862] = "Hydrophus", + [61863] = "Grabb Mudhide", + [61864] = "Stormwind Volunteer", + [61865] = "Ironforge Volunteer", + [61866] = "Darnassus Volunteer", + [61867] = "Orik Greystone", + [61868] = "Lord Firian Northshire", + [61869] = "Denala Moonwind", + [61870] = "Yagon Grimbeard", + [61871] = "Lord Horghita Ironmane", + [61872] = "Captain Velari Shadelain", + [61873] = "Isilan Bearmane", + [61874] = "Withering Refugee", + [61875] = "Auctioneer Reilin", + [61876] = "Banker Shalanna", + [61877] = "Navanir Thedal", + [61878] = "Solenia Solarcrest", + [61879] = "Relaina Whiteshore", + [61880] = "Firalius Arrowstrike", + [61881] = "Dalicia Sweetsilver", + [61882] = "Brindel Morningsun", + [61883] = "Verrus Trueshine", + [61884] = "Eirwen Aniron", + [61885] = "Alah\'Thalas Researcher", + [61886] = "Miriam Lenheim", + [61887] = "Dalanas Swiftfeather", + [61888] = "Marrondra", + [61889] = "Dragonmaw Mindslave", + [61890] = "Ember Talon Whelp", + [61891] = "Ember Talon Drake", + [61892] = "Ember Talon Runebreaker", + [61893] = "Ember Talon Flamespeaker", + [61894] = "Sinodas Azuresky", + [61895] = "Aeltalor Flameshard", + [61896] = "Alix Gres", + [61897] = "Dior Lagerfield", + [61898] = "Lili St. Laurent", + [61899] = "Mr.Freeze", + [61900] = "Valentino Westwood", + [61901] = "Stella de Givenchy", + [61902] = "Coco Gucci", + [61903] = "Vera Lauren", + [61904] = "Ralph Jacobs", + [61905] = "Otto Fencer", + [61906] = "Brandon Fencer", + [61907] = "Kalvan Fencer", + [61908] = "Tavia Fencer", + [61909] = "Dagred Flintbeard", + [61910] = "Frabus Barleymantle", + [61911] = "Torvag Thunderhand", + [61912] = "Mayva Togview", + [61913] = "Fanzy Sparkspring", + [61914] = "Gonzo Snaphands", + [61915] = "Panella Evercrest", + [61916] = "Ranellius Pureheart", + [61917] = "Ethennar Somberfall", + [61918] = "Asoran", + [61919] = "Kalnag", + [61920] = "Anara", + [61921] = "Edgar Tullson", + [61922] = "Yath Ruzzblast", + [61923] = "Mayvelle Tonberg", + [61924] = "Gulmire Fartower", + [61925] = "Gelpan Rizspark", + [61926] = "Yavon Sharplight", + [61927] = "Tacknazz Copperfire", + [61928] = "Boreghast", + [61929] = "Mato\'gar", + [61930] = "Motsog Kegsipper", + [61931] = "Brutish Bouncer", + [61932] = "Vampiric Gloomwing", + [61933] = "Greater Gloomwing", + [61934] = "Spectral Worker", + [61935] = "Duskfang Creeper", + [61936] = "Shadowclaw Darkbringer", + [61937] = "Shadowclaw Worgen", + [61938] = "Shadowclaw Rager", + [61939] = "Keeper Gnarlmoon", + [61940] = "Manascale Drake", + [61941] = "Manascape Whelp", + [61942] = "Manascale Dragon Guard", + [61943] = "Manascale Suppressor", + [61944] = "Manascale Mageweaver", + [61945] = "Manascale Overseer", + [61946] = "Ley-Watcher Incantagos", + [61947] = "Arcane Overflow", + [61948] = "Unstable Arcane Elemental", + [61949] = "Disrupted Arcane Elemental", + [61950] = "Arcane Anomaly", + [61951] = "Anomalus", + [61952] = "Crumbling Protector", + [61953] = "Karazhan Protector Golem", + [61954] = "Lingering Magus", + [61955] = "Lingering Arcanist", + [61956] = "Lingering Astrologist", + [61957] = "Lingering Enchanter", + [61958] = "Echo of Medivh", + [61959] = "Defias Chemist", + [61960] = "Defias Mixologist", + [61961] = "Jared Voss", + [61962] = "Manufactured Golem", + [61963] = "Masterpiece Harvester", + [61964] = "Unnatural Overgrowth", + [61965] = "Vangros", + [61966] = "Kolkar Truthseeker", + [61967] = "Kolkar Explorer", + [61968] = "Zandara Windhoof", + [61969] = "Prelate Ironmane", + [61970] = "Spectral Cleric", + [61971] = "Scarlet Jailer", + [61972] = "Duke Dreadmoore", + [61973] = "Suspicious Goblin", + [61974] = "Grizzby\'s Corpse", + [61975] = "Hightusk Boar", + [61976] = "Invading Riftwalker", + [61977] = "Traxis", + [61978] = "Bovar\'kez", + [61979] = "Tharessa", + [61980] = "Amplified Arcane Monstrosity", + [61981] = "Volatile Arcane Monstrosity", + [61982] = "Armory Quartermaster Daghelm", + [61983] = "Brother Wystan", + [61984] = "Fading Apparition", + [61985] = "Sanv Tas\'dal", + [61986] = "Akh Z\'ador", + [61987] = "Akh Z\'ador", + [61988] = "Dissipating Spectre", + [61989] = "Venethas", + [61990] = "Big Whiskers", + [61991] = "Archibald Earlwake", + [61992] = "Harold Coldsworth", + [61994] = "Abyssal Oracle", + [61995] = "Abyssal Tidehunter", + [61996] = "Anelace the Clairvoyant", + [61997] = "Amaldea Clotilde", + [61998] = "Dominique MacDowell", + [61999] = "Stewardess Arseid", + [62000] = "Filius Crosner", + [62001] = "Horatio Millstein", + [62002] = "Wilbert Astray", + [62003] = "Winston Selnate", + [62004] = "Lord Rygel", + [62005] = "Serpent Pet Test", + [62006] = "Fox Pet Test", + [62007] = "Al\'Dorel", + [62008] = "Faredin", + [62009] = "Lorien", + [62010] = "Gewana", + [62011] = "Golgan", + [62012] = "Arthur", + [62014] = "Private William", + [62015] = "Dreadlord Doomseeker", + [62016] = "Doomguard Annihilator", + [62017] = "Infernal Destroyer", + [62018] = "Darkflame Imp", + [62019] = "Warbringer Overseer", + [62020] = "Outcast Souleater", + [62021] = "Draenei Darkbinder", + [62022] = "Draenei Worshipper", + [62023] = "Draenei Villager", + [62024] = "Starving Draenei", + [62025] = "Draenei Waterseeker", + [62026] = "Muk B\'ang", + [62027] = "Na\'va D\'at", + [62028] = "Kasat T\'andr", + [62029] = "Rud\'an Malas", + [62030] = "Pa\'dal", + [62031] = "Mathias Brightheart", + [62032] = "Sakgoth Ironjaw", + [62033] = "Rodon Blackstout", + [62034] = "Nora Steamsight", + [62035] = "Dragonmaw Ambusher", + [62036] = "Dragonmaw Bonespeaker", + [62037] = "Zuluhed the Whacked", + [62038] = "Elder Hollowblood", + [62039] = "Dragonmaw Fireseeker", + [62040] = "Dragonmaw Hatcher", + [62041] = "Dragonmaw Whelp", + [62042] = "Dragonmaw Hunter", + [62043] = "Tamed Crocolisk", + [62044] = "Mosshide Miner", + [62045] = "Dragonmaw Soldier", + [62046] = "Dragonmaw Tracker", + [62047] = "Dragonmaw Wyrmguard", + [62048] = "Dragonmaw Outrunner", + [62049] = "Overseer Ragechewer", + [62050] = "Dragonmaw Pathfinder", + [62051] = "Dragonmaw Veteran", + [62052] = "Mosshide Scavenger", + [62053] = "Mosshide Shaman", + [62054] = "Mosshide Overseer", + [62055] = "Mosshide Bruiser", + [62056] = "Bogpaw Truthsay", + [62057] = "Gowlfang", + [62058] = "Ovan Gradal", + [62059] = "Father Lycan", + [62060] = "Bloodborn Invader", + [62061] = "Bloodborn Warder", + [62062] = "Bloodborn Channeler", + [62063] = "Ka\'fai", + [62064] = "Blitzy Pouchcutter", + [62065] = "Rholgast", + [62066] = "Cavernweb Broodmother", + [62067] = "Web Master Torkon", + [62068] = "Slagfist Destroyer", + [62069] = "Halgan Redbrand", + [62070] = "Overlord Blackheart", + [62071] = "Garlok Flamekeeper", + [62072] = "Searistrasz", + [62073] = "Cavernweb Spider", + [62074] = "Cavernweb Creeper", + [62075] = "Cavernweb Venomspitter", + [62076] = "Forgotten Ancestor", + [62077] = "Wandering Forebearer", + [62078] = "Crumbling Stone Golem", + [62079] = "Specterwing", + [62080] = "Ol\' Gazeno", + [62081] = "Edrian", + [62082] = "Callon Sunsail", + [62083] = "Saeldor Dawnspark", + [62084] = "Thessalia Dawnspark", + [62085] = "Lyrei Silverbrook", + [62086] = "Meldor Swiftlance", + [62087] = "Faelon Brightwood", + [62088] = "Laithor Morningleaf", + [62089] = "Viessa Windseeker", + [62090] = "Elwion Windseeker", + [62091] = "Ravondir Valgwyn", + [62092] = "Oriel Dendalion", + [62093] = "Amathion Seawhisper", + [62094] = "Calaire Solarguard", + [62095] = "Calina Highwing", + [62096] = "Aira Starsworn", + [62097] = "Taeldras Seastrider", + [62098] = "Gozzlek", + [62099] = "Guzhek", + [62100] = "Nelly Cogwheel", + [62101] = "Mary Willowfield", + [62102] = "Jr. Architect Buford", + [62103] = "Vithekus", + [62104] = "Sithendrus", + [62105] = "Malorne", + [62106] = "Nightmare Pursuer", + [62107] = "Kazud Fireforged", + [62108] = "Geldra Bronzewhiskers", + [62109] = "Melus Ironeye", + [62110] = "Raised Skeleton", + [62111] = "Grommash Hellscream", + [62112] = "Spirit of Eskhandar", + [62113] = "Crackling Arcane Minion", + [62114] = "Defias Robber", + [62115] = "Defias Cutthroat", + [62116] = "Defias Arcanist", + [62117] = "Red Jenny", + [62118] = "Defias Shadow Wizard", + [62119] = "Defias Infiltrator", + [62120] = "Edward Paddley", + [62121] = "Goldbristle Boar", + [62122] = "Burly Goldbristle Boar", + [62123] = "Goldpelt Bear", + [62124] = "Goldpelt Grizzly", + [62125] = "Elder Timber Wolf", + [62126] = "Timber Wolf Alpha", + [62127] = "Glumbo", + [62128] = "Mutt", + [62129] = "Northwind Quacker", + [62130] = "Northwind Duckling", + [62131] = "Amberpaw Gnoll", + [62132] = "Amberpaw Shaman", + [62133] = "Amberpaw Scout", + [62134] = "Amberpaw Alpha", + [62135] = "Amberfin Murloc", + [62136] = "Amberfin Lakestalker", + [62137] = "Amberfin Tidecaller", + [62138] = "Bristlewhisker Digger", + [62139] = "Bristlewhisker Kobold", + [62140] = "Bristlewhisker Overseer", + [62141] = "Alison Swift", + [62142] = "Frederik Hewg", + [62143] = "Smith Martin", + [62144] = "Griselda Tilley", + [62145] = "Thomas Arello", + [62146] = "Marisa Arello", + [62147] = "Leonhart Hamel", + [62148] = "Wisteria Gallagher", + [62149] = "Lucia Gallagher", + [62150] = "Florette DeMure", + [62151] = "Ulrich Buckert", + [62152] = "Herbert Kent", + [62153] = "Bailiff Lancaster", + [62154] = "Ignatz", + [62155] = "Mayor Birkton", + [62156] = "Henry", + [62157] = "Theresa", + [62158] = "Jarold Thorpe", + [62159] = "Beverly Gale", + [62160] = "Albert Russell", + [62161] = "Leander Hering", + [62162] = "Duke Sherwood", + [62163] = "Lady Mildenhall", + [62164] = "Sir Amberwood", + [62165] = "Lord Amberwood", + [62166] = "Northwind Guard", + [62167] = "Amberwood Trainee", + [62168] = "Meredith Rutland", + [62169] = "Dark Iron Demolisher", + [62170] = "Dark Iron Firecaller", + [62171] = "Dark Iron Golem", + [62172] = "Dark Iron Supervisor", + [62173] = "Dark Iron Slave Driver", + [62174] = "Overseer Bragordi", + [62175] = "Blackrock Marauder", + [62176] = "Blackrock Invader", + [62177] = "Blackrock Conjurer", + [62178] = "Blackrock Centurion", + [62179] = "Blackrock Poacher", + [62180] = "Ozuk Doomspike", + [62181] = "Shuni Steeltooth", + [62182] = "Overlord Throkk", + [62183] = "Horsekeeper Geringt", + [62184] = "Nadia Geringt", + [62185] = "Stablehand Jorg", + [62186] = "Mitchell Huckabee", + [62187] = "Mariah Huckabee", + [62188] = "Friar Montero", + [62189] = "Grimmen Thresher", + [62190] = "Bruno", + [62191] = "Goldtusk", + [62192] = "Lieutenant Grimefang", + [62193] = "Quistis the Malign", + [62194] = "Renegade Air Elemental", + [62195] = "Razorgust", + [62196] = "Tectonius", + [62197] = "Farseer Greka", + [62198] = "Zo\'luuli", + [62199] = "Durmir Rugford", + [62200] = "Hurl Cinderfist", + [62201] = "Thaldon Thunderbrew", + [62202] = "Hal\'togg Hornfang", + [62203] = "Hornfang Ale Supplier", + [62204] = "Thunderbrew Ale Supplier", + [62205] = "Brewfest Reveler", + [62206] = "Brewfest Provisioner", + [62207] = "The Great Magical Hoppity Hops Rabbit", + [62208] = "Brewfest Reveler Brendo", + [62209] = "Pietro Paraveno", + [62210] = "Dragonmaw Pillager", + [62211] = "Dragonmaw Handler", + [62212] = "Entranced Cinderscale Whelp", + [62213] = "Dragonmaw Renegade", + [62214] = "Dragonmaw Flamebinder", + [62215] = "Dragonmaw Invader", + [62216] = "Dragonmaw Acolyte", + [62217] = "Geshgan Blackhollow", + [62218] = "Rethkag Mirefang", + [62219] = "Commander Korlag Doomsong", + [62220] = "Dragonmaw Darkweaver", + [62221] = "Dragonmaw Elite", + [62222] = "Dragonmaw Champion", + [62223] = "Grimscale Raptor", + [62224] = "Grimscale Screecher", + [62225] = "Grimscale Thrasher", + [62226] = "Stonehide Boar", + [62227] = "Elder Stonehide Boar", + [62228] = "Bonesplitter Trogg", + [62230] = "Bonesplitter Seer", + [62231] = "Bonesplitter Skullthumper", + [62232] = "Bonesplitter Bonesnapper", + [62233] = "Bonesplitter Geomancer", + [62234] = "Wild Reachfeather Gryphon", + [62235] = "Displaced Ancestor", + [62236] = "Wandering Soul", + [62237] = "Cinder Scale Whelp", + [62238] = "Cinder Scale Flamecaller", + [62239] = "Cinder Scale Dragonspawn", + [62240] = "Miregill Lurker", + [62241] = "Miregill Murloc", + [62242] = "Miregill Muckdweller", + [62243] = "Miregill Oracle", + [62244] = "Gargill the Butcher", + [62245] = "Viscous Ooze", + [62246] = "Repugnant Ooze", + [62247] = "Brown Recluse", + [62248] = "Greater Brown Recluse", + [62249] = "Old Feralclaw", + [62250] = "Wild Maw Yeti", + [62251] = "Hulking Wild Maw", + [62252] = "Shadowforge Appraiser", + [62253] = "Shadowforge Agent", + [62254] = "Shadowforge Dreadweaver", + [62255] = "Shadowforge Drudger", + [62256] = "Clearwater Snapjaw", + [62257] = "Sickly Clearwater Snapjaw", + [62258] = "Razortooth Crocolisk", + [62259] = "Giant Razortooth Crocolisk", + [62260] = "Forest Boar", + [62261] = "Elder Forest Boar", + [62262] = "Mesa Boar", + [62263] = "Dragonmaw Marauder", + [62264] = "Dragonmaw Sentry", + [62265] = "Stormreaver Tracker", + [62266] = "Burnt Monk", + [62267] = "Restless Sister", + [62268] = "The Wailing Nun", + [62269] = "Twitching Corpse", + [62270] = "Wandering Carcass", + [62271] = "Young Goldbristle Boar", + [62272] = "Young Timber Wolf", + [62273] = "Triston Lancaster", + [62274] = "Dul Wolfsnarl", + [62275] = "Guard Gaspar", + [62276] = "Guard Mike", + [62277] = "Guard Ellington", + [62278] = "Leon Cassidy", + [62279] = "Ingvild Ellerian", + [62280] = "Groundskeeper Clive", + [62281] = "Jacqueline Marlowe", + [62282] = "Linus Huxley", + [62283] = "Servant Becca", + [62284] = "Servant Robert", + [62285] = "Custodian Lambert", + [62286] = "Pinky Tosslehouse", + [62287] = "Fidel Prescott", + [62288] = "Rohlof Bergard", + [62289] = "Argor Smugshield", + [62290] = "Enchantress Magilou", + [62291] = "Thronda", + [62292] = "Old Hamilton", + [62293] = "Mirabelle Hamilton", + [62294] = "Arnold", + [62295] = "Trevor Melain", + [62296] = "Sister Argent", + [62297] = "Brother Graham", + [62298] = "Cutpurse Warren", + [62299] = "The Witch of Northwind", + [62300] = "Lloyd", + [62301] = "Ellie", + [62302] = "Randolph", + [62303] = "Tio", + [62304] = "Estelle", + [62305] = "Joshua", + [62306] = "General Bright", + [62307] = "Barbara Lee", + [62308] = "Inquisitor Abbadon", + [62309] = "Old Man Crawford", + [62310] = "Jeremiah Crawford", + [62311] = "Gregory Crawford", + [62312] = "Christine Crawford", + [62313] = "Margaret Crawford", + [62314] = "Untamed Imp", + [62315] = "Thirsting Felhunter", + [62316] = "Mistress of Pain", + [62317] = "Lady Harelyss", + [62318] = "Living Mushroom Beast", + [62319] = "Poisonous Mushroom Beast", + [62320] = "Hyphaenus", + [62321] = "Rotting Resident", + [62322] = "Spikebone Miner", + [62323] = "Foul Overseer", + [62324] = "Lingering Peasant", + [62325] = "Spectral Worker", + [62326] = "Vengeful Memory", + [62327] = "Wrathful Custodian", + [62328] = "Abiding Crypt Keeper", + [62329] = "Bilgerat Corsair", + [62330] = "Bilgerat Wavecrasher", + [62331] = "Bilgerat Slasher", + [62332] = "Second Mate O\'Donovan", + [62333] = "Cook Snickerfang", + [62334] = "Outlook Goro", + [62335] = "Blistering Remains", + [62336] = "Purulent Mass", + [62337] = "Scourge Soldier", + [62338] = "Stormwing Buzzard", + [62339] = "Stormwing Vulture", + [62340] = "Ragged Crag Coyote", + [62341] = "Slavering Crag Coyote", + [62342] = "Mistbark Spider", + [62343] = "Mistbark Webweaver", + [62344] = "Mother Mistbark", + [62345] = "Sorrowmore Crocolisk", + [62346] = "Muckgill Hunter", + [62347] = "Muckgill Murloc", + [62348] = "Muckgill Oracle", + [62349] = "Muckgill Tidehunter", + [62350] = "Tidecaller Mrglrar", + [62351] = "Kelpshell Makrura", + [62352] = "Kelpshell Deepseer", + [62353] = "Tidelord Makrani", + [62354] = "Kitefin Shark", + [62355] = "Abysstide Siren", + [62356] = "Stormreaver Mystic", + [62357] = "Stormreaver Necromancer", + [62358] = "Stormreaver Outrunner", + [62359] = "Stormreaver Raider", + [62360] = "Stormreaver Acolyte", + [62361] = "Stormreaver Drone", + [62362] = "Stormreaver Ravager", + [62363] = "Stormreaver Ritualist", + [62364] = "Stormreaver Warlock", + [62365] = "Stormreaver Shadowcaller", + [62366] = "Stormreaver Torturer", + [62367] = "Thromli Embercast", + [62368] = "Gardim Goldilocks", + [62369] = "Burdened Ram", + [62370] = "Maener Owlgarden", + [62371] = "Steria Owlgarden", + [62372] = "Olga Forgewarmth", + [62373] = "Alastair Murray", + [62374] = "Bogdan Novak", + [62375] = "Simon Poppyfield", + [62376] = "Hathor Ashenforge", + [62377] = "Brick", + [62378] = "Mark Gallagher", + [62379] = "Sebastian Gallagher", + [62380] = "Mia Hazelsprout", + [62381] = "Barry Springberry", + [62382] = "Logan Fuller", + [62383] = "Custodian Abellas", + [62384] = "Minty", + [62385] = "Dun Kithas Mountaineer", + [62386] = "Mountaineer Steelwind", + [62387] = "Dorlegg Firegrip", + [62388] = "Mountaineer Lightboots", + [62389] = "Enumerator Gravelcrest", + [62390] = "Sorgan Trustgrip", + [62391] = "Historian Sternhand", + [62392] = "Telga Wildward", + [62393] = "Keeper Blackforge", + [62394] = "Dandegg Shortbelly", + [62395] = "Magistrate Hurdam Toughhand", + [62396] = "Alfog Bravebrew", + [62397] = "Marshal Rorin Palepike", + [62398] = "Velwin Gravelcrest", + [62399] = "Harfig Ironbrow", + [62400] = "Crier Sternhand", + [62401] = "Farwyn Barleynight", + [62402] = "Kargun Mightfall", + [62403] = "Vohand Blundergate", + [62404] = "Kazand Blundergate", + [62405] = "Groldan Blackforge", + [62406] = "Argaz Marblemight", + [62407] = "Hilga Snowbrew", + [62408] = "Gormand Belchbrew", + [62409] = "Gazla Blackforge", + [62410] = "Barwegg Loadstone", + [62411] = "Foreman Kegg Boulderboots", + [62412] = "Garlin Redbrand", + [62413] = "Degan Sprocketlight", + [62414] = "Prospector Dustshoulder", + [62415] = "Krangosh Thunderwind", + [62416] = "Tarwegg Dustbrow", + [62417] = "Farleg Slatebeard", + [62418] = "Margella Slatebeard", + [62419] = "Grukson Slatebeard", + [62420] = "Ragdan Hammerhearth", + [62421] = "Sarthyss Scaleheart", + [62422] = "Dorthas Read", + [62423] = "Gimban Togglefuse", + [62424] = "Shatterblade Grunt", + [62425] = "Grunt Morkan", + [62426] = "Gar\'gekk", + [62427] = "Tal\'garr", + [62428] = "Ragnaz", + [62429] = "Bargolnak", + [62430] = "Targen Bladecall", + [62431] = "Harlekk", + [62432] = "Far Seer Mothang", + [62433] = "Commander Aggnash", + [62434] = "Advisor Ranagg", + [62435] = "Torva", + [62436] = "Hagrekk", + [62437] = "Maktha", + [62438] = "Razikgar", + [62439] = "Tashga", + [62440] = "Vagrog", + [62441] = "Bagnash", + [62442] = "Yor\'thegg the Wise", + [62443] = "Cheese Wizard", + [62444] = "Bobby Joe", + [62445] = "Misty", + [62446] = "Monkey", + [62447] = "Charlie", + [62448] = "Jeremiah", + [62449] = "Beatrice", + [62450] = "Derek Wilson", + [62451] = "Jousting Spectator", + [62452] = "Jousting Spectator", + [62453] = "Dragonmaw Enchanter", + [62454] = "Ghostly Farmhand", + [62455] = "Verona Gillian", + [62456] = "Kinrial", + [62457] = "Nippsy Spickerspan", + [62458] = "Noppsy Spickerspan", + [62459] = "Rufus Hammerstrike", + [62460] = "Hydromancer Finnigan", + [62461] = "SI:7 Operative", + [62462] = "Elindra Swiftluck", + [62463] = "Fanny Forgeguard", + [62464] = "Fydent Mossrage", + [62465] = "Nundir Feathersoar", + [62466] = "Alfin Grahan", + [62467] = "Lord Olivert Grahan", + [62468] = "Mechanic Kixqal", + [62469] = "Navigator Weebletax", + [62470] = "Olmir Halfhorn", + [62471] = "Methendra Owltalon", + [62472] = "Alessa Farwind", + [62473] = "Boris Farwind", + [62474] = "Lieutenant Bravestorm", + [62475] = "Bremen Hartford", + [62476] = "Heidi Livingstone", + [62477] = "Commander Leder", + [62478] = "Malleville Graeme", + [62479] = "Arielle Cotton", + [62480] = "First Mate Levoy", + [62481] = "Huey Stafford", + [62482] = "Agnese Newbery", + [62483] = "Magistrate Modera", + [62484] = "Colonel Driscol", + [62485] = "The Dark Knight", + [62486] = "Injured Lumberjack", + [62487] = "Recuperating Contestant", + [62488] = "Operative Baltimore Hawthorne", + [62489] = "Judith Flenning", + [62490] = "Sara Flenning", + [62491] = "Bristlewhisker Slave", + [62492] = "Mangled Corpse", + [62493] = "Injured Northwind Quacker", + [62494] = "Gertrud Selind", + [62495] = "Zel\'jeb the Ancient", + [62496] = "Kath\'zen the Brutal", + [62497] = "Juthza the Cunning", + [62498] = "Champion Razjal the Quick", + [62499] = "Sandfury Scorpid", + [62500] = "Sandfury Ritualist", + [62501] = "Bramblehide Rootshaper", + [62502] = "Gnarled Bramblehide", + [62503] = "Rotthorn", + [62504] = "Snugg", + [62505] = "Mutated Croaker", + [62506] = "Swiftbreeze", + [62507] = "Songstress Asha", + [62508] = "Ziatajie", + [62509] = "Gnaws", + [62510] = "Goblin Corpse", + [62511] = "Hufan Earthbow", + [62512] = "Lissandra Skysoar", + [62513] = "Elenar Dewblade", + [62514] = "Aladrel Dewblade", + [62515] = "Rutherford Justino", + [62516] = "Sheena Justino", + [62517] = "Count Femur", + [62518] = "Bristlebelly", + [62519] = "Penny Plainsteel", + [62520] = "Rikki Fizmask", + [62521] = "Yunie Quicktrigger", + [62522] = "Stormreaver Brute", + [62523] = "Jailor Bloodhand", + [62524] = "Shadowlord Ar\'kor", + [62525] = "SI:7 Scout", + [62526] = "Essie Zoya", + [62527] = "Polly Chromatic", + [62528] = "Fallenroot Darkweaver", + [62529] = "Lingering Priestess", + [62530] = "Velthelaxx the Defiler", + [62531] = "Woji the Toad", + [62532] = "Stormreaver Berserker", + [62533] = "Stormreaver Ambusher", + [62534] = "Stormreaver Hunter", + [62535] = "Stormreaver Firecaller", + [62536] = "Stormreaver Slaver", + [62537] = "Stormreaver Battlemaster", + [62538] = "Stormreaver Grunt", + [62539] = "Stormreaver Sorcerer", + [62540] = "Stormreaver Necrolyte", + [62541] = "Translucent Guest", + [62542] = "Corroding Mass", + [62543] = "Tethered Noble", + [62544] = "Befouled Arisen", + [62545] = "Stormcage Skeleton", + [62546] = "Corroding Oozeling", + [62547] = "Dagar the Glutton", + [62548] = "Oronok Torn-Heart", + [62549] = "Duke Balor the IV", + [62550] = "Deathlord Tidebane", + [62551] = "Chieftain Stormsong", + [62552] = "Librarian Theodorus", + [62553] = "Grrblga", + [62554] = "Wiggles", + [62555] = "Blackrock Pyremaster", + [62556] = "Agent Deryl", + [62557] = "Agent Flynn", + [62558] = "Agent Cherys", + [62559] = "Green Puddle", + [62560] = "Helmsman Verix", + [62561] = "Dying Woman", + [62562] = "Crystalmaw", + [62563] = "Bleeding Hollow Scout", + [62564] = "Stormreaver Stormblade", + [62565] = "Warlord Jawbreaker", + [62566] = "Nethercaller Mahlgus", + [62567] = "Pebbles", + [62568] = "Torlag", + [62569] = "Razzo Copperfume", + [62570] = "Seer Sarno", + [62571] = "Grexx", + [62572] = "Zohze", + [62573] = "Nijima", + [62574] = "Hefeni", + [62575] = "Stormbreaker Guard", + [62576] = "Russel", + [62577] = "Bentley", + [62578] = "Lissie", + [62579] = "Noa", + [62580] = "Sir Hans Dale", + [62581] = "Repository Assistant", + [62582] = "Ralwen Ivon", + [62583] = "Operative Simmons", + [62584] = "Anguished Elemental", + [62585] = "Flame of Dagnoth", + [62586] = "O\'jin", + [62587] = "Mok\'gun Frostfingers", + [62588] = "Uda\'pe Sungrass", + [62589] = "Gre\'shka Wolfbite", + [62590] = "Kilrogg Deadeye", + [62591] = "Echo of Khadgar", + [62592] = "Echo of Llane Wrynn", + [62593] = "Echo of Anduin Lothar", + [62594] = "Faded Visitor", + [62595] = "Faded Servant", + [62596] = "Faded Apprentice", + [62597] = "Dysfunctional Curator", + [62598] = "Echo of Aran", + [62599] = "Echo of Vandol Bracewind", + [62600] = "Echo of Talon", + [62601] = "Magical Broom", + [62602] = "Arcane Rat", + [62603] = "Miniature Arcane Wyrm", + [62604] = "Desolate Invader", + [62605] = "Desolate Destroyer", + [62606] = "Ima\'ghaol, Herald of Desolation", + [62607] = "Forgotten Echo", + [62608] = "Disturbed Imp", + [62609] = "Echo of the Mysterious Stranger", + [62610] = "Sister of Remulos", + [62611] = "Anthoros Fallwind", + [62612] = "Animated Oil", + [62613] = "Venture Co. Oil Igniter", + [62614] = "Venture Co. Infiltrator", + [62615] = "Hired Freebooter", + [62616] = "Hired Outlaw", + [62617] = "Venture Co. Plunderer", + [62618] = "Grexez Shrillfluke", + [62619] = "Slickwick Worker", + [62620] = "Cherox Whizzbake", + [62621] = "Brotna Whizzbake", + [62622] = "Slickwick Bruiser", + [62623] = "Kwabit", + [62624] = "Treggi", + [62625] = "Waitress Peenqi", + [62626] = "Ibi Greaselock", + [62627] = "Chief Engineer Kalke", + [62628] = "Nyxma Niftpatch", + [62629] = "Grathnol", + [62630] = "Nathok", + [62631] = "Kathor the Brave", + [62632] = "Darg", + [62633] = "Lesser Arcane Elemental", + [62634] = "Antonas Riftgaze", + [62635] = "Ralthas", + [62636] = "Grimbite", + [62637] = "Nydiszanz", + [62638] = "Okul", + [62639] = "Bagalosh", + [62640] = "Arashna", + [62641] = "Emastrasz", + [62642] = "Razorscale", + [62643] = "Dorosh Headsplitter", + [62644] = "Bruhm Cinderfist", + [62645] = "Shadow Council Alchemist", + [62646] = "Shadow Council Researcher", + [62647] = "Shadow Council Summoner", + [62648] = "Bilefin Frenzy", + [62649] = "Leechspore Horror", + [62650] = "Leechspore Shambler", + [62651] = "Shadow Council Cultist", + [62652] = "Subjugator Halthas Shadecrest", + [62653] = "Corroding Sludge", + [62654] = "Leechmist Lurker", + [62655] = "Ancient Treshadon", + [62656] = "Rotgrip Strangler", + [62657] = "Rotgrip Lasher", + [62658] = "Disgorging Razormaw", + [62659] = "Shadow Council Torturer", + [62660] = "Acrid Razormaw", + [62661] = "Eldermaw the Primordial", + [62662] = "Blooddrained Carcass", + [62663] = "Sinister Interrogator", + [62664] = "Mycellakos", + [62665] = "Lady Drazare", + [62666] = "Brutish Felguard", + [62667] = "Cackling Impling", + [62668] = "Agonizing Remnants", + [62669] = "Shadow Council Soulweaver", + [62670] = "Remains of the Innocent", + [62671] = "Ighal\'for", + [62672] = "Rifttorn Nether Imp", + [62673] = "Mergothid", + [62674] = "Eldermaw Crocolisk", + [62675] = "Growth of Mycellekos", + [62676] = "Death\'s Head Worshipper", + [62677] = "Death\'s Head Servitor", + [62678] = "Death\'s Head Battleguard", + [62679] = "Death Prophet Rakameg", + [62680] = "Cerisella", + [62681] = "Boss Slickwick", + [62682] = "Assistant Steamflare", + [62683] = "Blaxbi", + [62684] = "Shady Individual", + [62685] = "Jousting Spectator", + [62686] = "Jousting Spectator", + [62687] = "Jousting Spectator", + [62688] = "Jousting Spectator", + [62689] = "Jousting Spectator", + [62690] = "Jousting Spectator", + [62691] = "Sir Reginald of Stormwind", + [62692] = "Rudolf of Strom", + [62693] = "Estanor of Dalaran", + [62694] = "The Black Knight", + [62695] = "Halfar of Kul Tiras", + [62696] = "Ferdinand of Theramore", + [62697] = "Udo Keller", + [62698] = "Fisherman Nudrew", + [62699] = "Tosia", + [62700] = "Jama\'nali", + [62701] = "Bruford of Stormwind", + [62702] = "Sir Barnabas of Strom", + [62703] = "Lumiere of Dalaran", + [62704] = "Fritz of Kul Tiras", + [62705] = "Sir Lorenz of Theramore", + [62706] = "Kizko", + [62707] = "Lighthouse Keeper Tremond", + [62708] = "Nizzle", + [62709] = "Guffer", + [62710] = "Drak\'thul", + [62711] = "Ursan Marauder", + [62712] = "Ursan Shaman", + [62713] = "Ursan Ambusher", + [62714] = "Ursan Furbolg", + [62715] = "Arkod the White", + [62716] = "Dying Ancient Protector", + [62717] = "Disturbed Treant", + [62718] = "Drethanis Mournshade", + [62719] = "Markus Farwind", + [62720] = "Ronald Gillian", + [62721] = "Henrietta Gillian", + [62722] = "Adella Gillian", + [62723] = "Quartermaster Barnaby Burnhammer", + [62724] = "Torlath Ironhard", + [62725] = "Thromrar Darkflame", + [62726] = "Zalsu the Wanderer", + [62727] = "Aelennia Starbloom", + [62728] = "Sea Herald", + [62729] = "Nuddok Stonebelt", + [62730] = "Arthur Vandris", + [62731] = "Ighalfor Trigger", + [62732] = "Ranger Sinastria Viltmoore", + [62733] = "Ranger Darthal Whitemane", + [62734] = "Ranger Faellina Swiftstride", + [62735] = "Stormreaver Prisoner", + [62736] = "Stormreaver Captive", + [62737] = "Pargrak the Sleeper", + [62738] = "Ranthak", + [62739] = "Orthol the Tracker", + [62740] = "Narkogg the Dark", + [62741] = "Rethevus", + [62742] = "Enraged Sea Elemental", + [62743] = "Grathok Flamehand", + [62744] = "Shadow-Cursed Wraith", + [62745] = "Shadow-Cursed Phantom", + [62746] = "Thane Falod Swifthammer", + [62747] = "Reach Ram", + [62748] = "Typharion", + [62749] = "Servant of Typharion", + [62750] = "Magmalash Scorpid", + [62751] = "Gro\'tul Deathrattle", + [62752] = "Mountaineer Barleycrest", + [62753] = "Dark Iron Surveillance Bot", + [62754] = "Rooti Flamebeard", + [62755] = "Selja", + [62756] = "Engineer Sootbeard", + [64898] = "Franella Rustgleam", + [64899] = "Draxfort Rustgleam", + [64900] = "Rat\'dal", + [65000] = "Eremzion", + [65001] = "Bronze Defender", + [65002] = "Ethernos", + [65003] = "Chradarmu", + [65004] = "Kheyna Spinpistol", + [65005] = "Chromie", + [65006] = "Kaizormi", + [65007] = "Zidormi", + [65008] = "Alurmi", + [65009] = "Ta\'as", + [65010] = "Agezrion", + [65011] = "Telumrius", + [65012] = "Taradormi", + [65013] = "Rimus", + [65014] = "Aunassi", + [65015] = "Mazornos", + [65016] = "Bronze Time Weaver", + [65017] = "Bronze Guardian", + [65018] = "Alormion", + [65019] = "Chromie", + [65020] = "Basalthar", + [65021] = "Smoldaris", + [65100] = "Infinite Dragonspawn", + [65101] = "Infinite Riftguard", + [65102] = "Infinite Riftweaver", + [65103] = "Infinite Whelp", + [65104] = "Infinite Timeripper", + [65105] = "Infinite Rift-Lord", + [65106] = "Infinite Timereaver", + [65107] = "Aqir Cleric", + [65108] = "Aqir Warrior", + [65109] = "Aqir Drone", + [65110] = "Darkwater Python", + [65111] = "Murkwater Crocolisk", + [65112] = "Blackfang Tarantula", + [65113] = "Chronar", + [65114] = "Harbinger Aph\'ygth", + [65115] = "Aqir Larva", + [65116] = "Time-Lord Epochronos", + [65117] = "Echo of the Lich King", + [65118] = "Echo of Kael\'thas Sunstrider", + [65119] = "Echo of Lady Vashj", + [65120] = "Poison Cloud", + [65121] = "Infinite Chromie", + [65122] = "Rotmaw", + [65123] = "Infinite Dragonspawn", + [65124] = "Mossheart", + [65125] = "Antnormi", + [65126] = "Bronze Defender", + [65127] = "Infinite Dragonspawn", + [65128] = "Injured Bronze Defender", + [65129] = "Time Rift", + [65130] = "Neto the Time Weaver", + [65131] = "Go\'el", + [65132] = "Gatekeeper Rageroar", + [65133] = "Varian Wrynn", + [65134] = "Thomas Miller", + [65135] = "Kobold Digger", + [65137] = "Tamaala Bloodhoof", + [65138] = "Zo\'hjik", + [65139] = "Dalaran Magi", + [65140] = "High Elven Magister", + [65142] = "whistle_dummy", + [65143] = "Gnome Racing Car", + [65144] = "Goblin Racing Car", + [65145] = "Invisible Driver", + [65146] = "Spirit Protector", + [65147] = "Tiny Timflake", + [66000] = "Junior Foreman Silverhand", + [66001] = "Denalah Silverpoint", + [66002] = "Kherra", + [66003] = "An Unknown Entity", + [66004] = "Ancient Wolf Spirit", + [66005] = "Margok Hatewind", + [68000] = "testing buff guy", + [70000] = "Snowball Hit Trigger: GetGUID", + [70001] = "Snowball Hit Trigger: GetGUID", + [70002] = "Snowball Hit Trigger: GetGUID", + [70003] = "Snowball Hit Trigger: GetGUID", + [70004] = "DUMMY_PLAYER_JOHN", + [70005] = "DUMMY_PLAYER_ER", + [70006] = "DUMMY_PLAYER_AURRIUS", + [70007] = "DUMMY_PLAYER_MOMO", + [70008] = "DUMMY_PLAYER_CHLOTHAR", + [70009] = "DUMMY_PLAYER_NOXUL", + [70010] = "DUMMY_PLAYER_YOURSELF", + [70011] = "DUMMY_PLAYER_DANCE", + [70012] = "DUMMY_PLAYER_YOURSELF", + [70013] = "DUMMY_PLAYER_YOURSELF", + [70014] = "DUMMY_PLAYER_AZTEQ", + [70015] = "DUMMY_PLAYER_ARISTOXENUS", + [70018] = "Finn", + [70019] = "Mr. Tails", + [70020] = "Taupo Foreststrider", + [70022] = "Norvok Hawkspear", + [70023] = "Commander Grushak", + [70025] = "Ashenvale Stalker", + [70027] = "Farseer Grimeye", + [70028] = "Quest 70029 Custom Trigger", + [70040] = "Glacier Penguin", + [70060] = "Pezzik Villamar", + [70067] = "Airfield Engineer", + [70891] = "Blood of Shalla\'Aran", + [73000] = "Gorxirn Deepnephew", + [73001] = "Thadorond Babagiega", + [73002] = "Junno Athenabrow", + [73003] = "Armok Noxulbrew", + [73004] = "Zeaus Battleshout", + [73005] = "Thunder Ale Patron", + [73006] = "Thunder Ale Patron", + [73010] = "Spectral Cub", + [73101] = "The Artificer", + [73102] = "Thegren", + [73103] = "Corgi", + [73104] = "Corgi", + [80007] = "Quest 80395 Custom Trigger 1", + [80008] = "Aubrey Merton", + [80100] = "Nert Blastentom", + [80101] = "Sprat Nozzleton", + [80102] = "Ohgi Cardya", + [80103] = "Venture Co. Bruiser", + [80104] = "Grizzie the Enforcer", + [80105] = "Mayten Boomrifle", + [80106] = "Leyti Quicktongue", + [80107] = "Amri Demondeal", + [80108] = "Wizette Icewhistle", + [80109] = "Flarnt Tightstitch", + [80110] = "Toxx Ringweave", + [80111] = "Nagus", + [80112] = "Whirling Whizz-Bot", + [80113] = "Plateau Vulture", + [80114] = "Stonetalon Environmentalist", + [80115] = "Highpeak Lasher", + [80116] = "Risen Oilblaze", + [80117] = "Haywire Battlechicken", + [80118] = "Animated Shredder", + [80119] = "Muttering Vulture", + [80120] = "Tomb Shadow", + [80121] = "Nert Blastentom", + [80122] = "Sprat Nozzleton", + [80123] = "Nagus", + [80124] = "Grizzie the Enforcer", + [80125] = "Mayten Boomrifle", + [80126] = "Leyti Quicktongue", + [80127] = "Amri Demondeal", + [80128] = "Wizette Icewhistle", + [80129] = "Imp", + [80130] = "Fareck", + [80131] = "Kazznik", + [80132] = "Greely", + [80133] = "Szabo", + [80135] = "Quest 80123 Custom Objective", + [80136] = "Gaxx Speedcrank", + [80137] = "Dizzle Fuelbopper", + [80140] = "Illidari Dragonhawk", + [80141] = "Armored Frostmane Riding Bear", + [80142] = "Blizzcon Riding Bear", + [80143] = "Armored Amani Riding Bear", + [80145] = "Dragonhawk", + [80146] = "Riding Ice Saber", + [80147] = "Riding Aqua Saber", + [80148] = "Black Bear Cub", + [80149] = "Wally", + [80150] = "White Bear Cub", + [80151] = "Gray Bear Cub", + [80152] = "Black Fox", + [80153] = "Riding Chromatic Drake", + [80154] = "Riding Black Drake", + [80155] = "Riding Blue Drake", + [80156] = "Bronze Drake", + [80157] = "Riding Green Drake", + [80158] = "Riding Red Drake", + [80159] = "Mysterious Warp Stalker", + [80160] = "Immortal Champion\'s Charger", + [80161] = "Riding Void Drake", + [80162] = "Riding Infinite Drake", + [80163] = "Steelwing", + [80164] = "Riding Armored Gryphon", + [80165] = "Riding Cenarion Hippogryph", + [80166] = "Riding Wyvern", + [80167] = "Riding Armored Wyvern", + [80168] = "Dark Rider\'s Steed [Deprecated]", + [80178] = "Grand Taskmaster Nert Blastentom", + [80179] = "Spawn of Cla\'ckora", + [80200] = "Malvinah Sunblade", + [80201] = "Trogg Vermin", + [80202] = "Kathy Wake", + [80203] = "Quest 80204 Custom Objective", + [80204] = "Quest 80206 Custom Objective", + [80205] = "Shadowforge Fire Priest", + [80206] = "Quest 80207 Custom Objective", + [80207] = "Shadowforge Prowler", + [80208] = "High Elf Refugee", + [80209] = "High Elf Refugee", + [80210] = "Arisha Sunblade", + [80211] = "Quest 80208 Custom Objective", + [80212] = "Quest 80209 Custom Objective", + [80213] = "Magistrix Ishalah", + [80214] = "Malanius Silvershine", + [80215] = "Alyssia Solar", + [80216] = "Ranger Protector", + [80217] = "Valanos Dawnfire", + [80218] = "Magister Ala\'shor Sunblood", + [80219] = "Ranger Rubinah Sunsworn", + [80220] = "Lor\'thas the Holy", + [80221] = "Priestess Maelah Sunsworn", + [80222] = "Melonius Silvershine", + [80223] = "Leela the Shadow", + [80224] = "Captured Refugee", + [80225] = "Captured Refugee", + [80226] = "Caravan Escort", + [80227] = "Ashanya Quel\'belore", + [80228] = "Toranial Mishulas", + [80229] = "Quest 80250 Custom Objective", + [80230] = "High Elf Ranger", + [80231] = "Arcanist Anu\'delen", + [80232] = "Ranger-Captain Nasuna Dawnbringer", + [80233] = "Quest 80255 Custom Objective", + [80234] = "Alah\'Thalas Magister", + [80235] = "Alah\'Thalas Citizen", + [80236] = "High Elf Child", + [80237] = "Teslinah", + [80238] = "Joalar Solar", + [80239] = "Tanilaeh Sunkiss", + [80240] = "Amanaria Sunblade", + [80241] = "Malfunctioning Arcane Construct", + [80242] = "Ashylah Starcaller", + [80243] = "High Priest Raemoran Alah\'belore", + [80244] = "Andalideth Suncaller", + [80245] = "Damilara Sunsorrow", + [80246] = "Grand Magistrix Merisa Dawnbreaker", + [80247] = "Larane Dawnbringer", + [80248] = "Loriel", + [80249] = "Ralonius Sundew", + [80250] = "Crimson Lynx", + [80252] = "Young Arctic Fox", + [80254] = "Young Brown Fox", + [80255] = "Brown Fox", + [80256] = "Silver Fox", + [80257] = "Red Fox", + [80258] = "Young Mist Fox", + [80259] = "Mist Fox", + [80260] = "Spirit Fox", + [80265] = "Teslinah", + [80266] = "Soalara Dawnstar", + [80267] = "Torial Dawnrise", + [80268] = "Melkolar Dawnrise", + [80269] = "Kin\'Tozo", + [80270] = "Quest 80261 Custom Objective", + [80271] = "Quest 80261 Custom Objective", + [80272] = "Quest 80261 Custom Objective", + [80273] = "Quest 80261 Custom Objective", + [80274] = "Quest 80261 Custom Objective", + [80275] = "Quest 80261 Custom Objective", + [80276] = "Quest 80261 Custom Objective", + [80277] = "Quest 80261 Custom Objective", + [80278] = "Quest 80261 Custom Objective", + [80279] = "Quest 80261 Custom Objective", + [80280] = "Quest 80261 Custom Objective", + [80281] = "Quest 80261 Custom Objective", + [80282] = "Quest 80261 Custom Objective", + [80283] = "Quest 80261 Custom Objective", + [80284] = "Quest 80261 Custom Objective", + [80285] = "Quest 80261 Custom Objective", + [80286] = "Quest 80261 Custom Objective", + [80287] = "Quest 80261 Custom Objective", + [80288] = "Quest 80261 Custom Objective", + [80289] = "Quest 80261 Custom Objective", + [80300] = "Blue Rocket Car", + [80301] = "Red Rocket Car", + [80302] = "Green Rocket Car", + [80303] = "Red Goblin Shredder", + [80304] = "Green Goblin Shredder", + [80305] = "Red Spidertank", + [80306] = "Black Spidertank", + [80307] = "Blue Spidertank", + [80308] = "Green Spidertank", + [80309] = "Black Pounder", + [80310] = "Blue Pounder", + [80311] = "Green Pounder", + [80312] = "Armored Ebon Deathcharger", + [80313] = "Armored Crimson Deathcharger", + [80314] = "Armored Emerald Deathcharger", + [80319] = "Red Pounder", + [80320] = "Rodfather", + [80321] = "Emiga", + [80400] = "Alisaiah Sunblade", + [80401] = "Manloran Dawnstrike", + [80402] = "Ley-Technician Aemara Sunsorrow", + [80403] = "Tolif Valanor", + [80404] = "Amelanoh Dawnstar", + [80405] = "Illyanah Dawnstar", + [80450] = "Pepin Ainsworth", + [80451] = "Koli Steamheart", + [80452] = "Chaddus Suncarrier", + [80453] = "Vanira Quel\'Belore", + [80454] = "Unicorn", + [80455] = "Armored Unicorn", + [80457] = "Andrelas Thas\'danil", + [80458] = "Ranger Canarah Kim\'Alah", + [80459] = "Alinerenah Sunsparrow", + [80460] = "Applebough", + [80466] = "Tirisfal Plagued Bear", + [80467] = "Viridian Hippogryph", + [80500] = "Fel Wretched Elf (Deadscar)", + [80501] = "Fel Elf Warlock Female (Deadscar)", + [80502] = "Fel Elf Ranger (Deadscar)", + [80503] = "Fel Elf Warlock Male (Deadscar)", + [80504] = "Fel Elf Warrior (Deadscar)", + [80505] = "Eredar Lord (Outland)", + [80506] = "Arcane Guardian", + [80507] = "Young Boar", + [80508] = "Young Bear", + [80600] = "Quest 80300 Custom Objective", + [80601] = "Quark", + [80602] = "Agne", + [80603] = "The Rov", + [80604] = "Sturk the Rat", + [80605] = "Odo", + [80606] = "Quest 80304 Custom Objective", + [80607] = "Lil\' K.T.", + [80608] = "Core Hound Pup", + [80609] = "Lil\' Ragnaros", + [80799] = "Volz\'draza", + [80800] = "Revantusk Watcher", + [80801] = "Mystic Guya\'jin", + [80802] = "Warleader Zol\'majin", + [80803] = "Quest 80301 Custom Objective", + [80804] = "Quest 80302 Custom Objective", + [80805] = "Amani\'Alor Settler", + [80806] = "Risen Troll", + [80807] = "Reolis Riptusk", + [80808] = "Ranor Riptusk", + [80809] = "Talkharu Riptusk", + [80810] = "Rinja Scenttusk", + [80811] = "Zul\'Mabe Bearclaw", + [80812] = "Lord Naz\'thaj", + [80813] = "Illidari Demon Hunter", + [80814] = "Illidari Naga Myrmidon", + [80815] = "Amani Eagle", + [80816] = "Hinterlands Eagle", + [80830] = "Nazorna", + [80831] = "Chok\'Garok", + [80850] = "Black Bride", + [80851] = "Volkan Cruelblade", + [80852] = "Tham\'Grarr", + [80853] = "Aszosh Grimflame", + [80854] = "Damian", + [80855] = "Clover Spinpistol", + [80856] = "Twinkie Boomstick", + [80857] = "Ureda", + [80860] = "Illidari Spellbreaker", + [80861] = "Lord Illidan", + [80862] = "Prince Kael\'thas", + [80863] = "Maiev Shadowsong", + [80864] = "Akama", + [80865] = "[Test] Custom spell cast", + [80866] = "Lady Vashj", + [80867] = "Zul\'jin", + [80868] = "Infinite Chromie", + [80869] = "Cho\'gall", + [80870] = "Wildlord Cenarius", + [80871] = "Warden Watcher", + [80872] = "Lord Naz\'thaj", + [80873] = "Illidari Demon Hunter", + [80874] = "Illidari Naga Myrmidon", + [80875] = "Illidari Naga Siren", + [80876] = "Scourge Necromancer", + [80877] = "Vereesa Windrunner", + [80900] = "Iluria Nightwhisper", + [80901] = "Knobby Tinfault", + [80902] = "Miley Wildbit", + [80903] = "Viz Fizbeast", + [80912] = "Ho\'jo", + [80915] = "Tan\'Pogo", + [80917] = "Teller Plushner", + [80918] = "Are", + [80920] = "Amani Eagle", + [80925] = "Elise Laughlin", + [80926] = "Goroth", + [80927] = "Fergus", + [80930] = "Innkeeper Frizzo", + [80931] = "Krixil Slogswitch", + [80932] = "Drazzit Dripvalve", + [80933] = "Gizzix Grimegurgle", + [80934] = "Razbo Rustgear", + [80935] = "Ostarius", + [80936] = "Dark Reaver of Karazhan", + [80937] = "Forlorn Spirit", + [80938] = "Gate Construct", + [80939] = "Defense Sentry", + [80940] = "Axis Spinpistol", + [80941] = "Earthcaller Jalyssa", + [80942] = "Deathcaller Aisha", + [80943] = "Dronormu", + [80944] = "Lorath Silverwing", + [80945] = "Elisandra Spellbinder", + [80946] = "Anna Lacroix", + [80947] = "Alyssa Stormbolt", + [80948] = "Lansa Skyseer", + [80949] = "Vuh\'sha Torntusk", + [80951] = "Loren Goodcorn", + [80952] = "Hemming Silverbeard", + [80953] = "Lonum Magicus", + [80954] = "Valiant", + [80955] = "Gorrok", + [80956] = "John Smith", + [80957] = "Larry Bladeknuckle", + [80958] = "Landro Longshot", + [80959] = "Anisalah Starcaller", + [80960] = "Bourok", + [80961] = "Vanessa Clang", + [80962] = "Hydrolon", + [80963] = "Lisa Jenkins", + [80964] = "Ewe\'luas", + [80965] = "Lake Toad", + [80966] = "Shanala Sunsorrow", + [80967] = "Lord Darkhallow", + [80968] = "Daemona Des", + [80969] = "Uldum Pedestal Target Bunny", + [80970] = "Uldum Pedestal", + [80975] = "Dalaran Charger", + [80976] = "Knight\'s Charger", + [80977] = "Riding Sea Turtle", + [80978] = "Darkmoon Dancing Bear", + [80990] = "Risa Sandrocket", + [80991] = "Lizzi Saltcrabs", + [80992] = "Aelienne Summerbreeze", + [80993] = "Ben Goldflame", + [80994] = "Wildixle Fizzmind", + [80995] = "Nanze", + [80996] = "Kestren Rainmight", + [80997] = "Toci Flipper", + [81000] = "Quest trigger: invite Gazlowe", + [81001] = "Quest trigger: invite Reviglaz", + [81002] = "Quest trigger: save shark", + [81005] = "Frayfeather Hippogryph", + [81006] = "Shark", + [81008] = "Phoenix Hatchling", + [81009] = "Spirit Darter", + [81010] = "Tiny Pterodactyl", + [81012] = "Armored Purple War Bear", + [81013] = "Armored Brown War Bear", + [81014] = "Armored Red War Bear", + [81015] = "Armored Dragonhawk", + [81016] = "Armored Green War Bear", + [81017] = "Armored White War Bear", + [81019] = "Pinchy", + [81020] = "Sunscale Hatchling", + [81022] = "Innkeeper Gazz", + [81023] = "Niffy Goodsteel", + [81024] = "Sanzi Sparks", + [81025] = "Dazzle Luckycatch", + [81026] = "Vurtne", + [81027] = "Rozzy", + [81028] = "Gizmax Leaprocket", + [81031] = "Dalaran Cloud Familiar", + [81033] = "Naznik Sharpshear", + [81034] = "[Deprecated] Bebri Coifcurl", + [81035] = "Jake Booker", + [81041] = "Kheyna Spinpistol", + [81042] = "Loania", + [81043] = "Lieren", + [81044] = "Voldana", + [81046] = "Inunquaq", + [81048] = "Time Rift", + [81049] = "Strigoi", + [81050] = "Dark Ranger Lanissa", + [81051] = "Chromie\'s Time Rift", + [81055] = "Ravika", + [81056] = "Blamen Ramen", + [81057] = "Eliana Firestorm", + [81058] = "Crowley Jr.", + [81060] = "Prospector Brotalus", + [81061] = "Noli", + [81063] = "Craggle Wobbletop", + [81100] = "Raven Lord", + [81102] = "Chieftain\'s Kodo", + [81250] = "Moxie Steelgrille", + [81252] = "Quest 80407 Trigger", + [81258] = "Vixie Dampknob", + [81259] = "Qik Peddlechin", + [81260] = "Bulum", + [81261] = "Dinka Dinker", + [81264] = "Shalandis Isle: Distance Trigger", + [81265] = "Antnormi", + [81266] = "Lurking Shadow", + [81267] = "Time Rift", + [83100] = "Big Turtle WoW Bear", + [83101] = "Black Spectral Tiger", + [83102] = "Green Spectral Tiger", + [83103] = "Ice Raptor", + [83104] = "Armored Ice Raptor", + [83105] = "Scarlet Charger", + [83106] = "Kul Tiran Warhorse", + [83107] = "Greymane Charger", + [83108] = "Brown Zhevra", + [83109] = "Grim Totem Kodo", + [83110] = "Emerald Retainer", + [89000] = "Raven", + [89001] = "Tiny Warp Stalker", + [89002] = "Scotty", + [89003] = "Flipper", + [89004] = "Pengu", + [89005] = "Midnight", + [89006] = "Glitterwing", + [89020] = "Magic Broom", + [89021] = "White Stag", + [90150] = "Saxekle Boltbite", + [90974] = "Thandol Span Attack Trigger", + [90975] = "Armored Dalaran Warhorse", + [90976] = "Armored Knight\'s Warhorse", + [90977] = "Turbo-Charged Flying Machine", + [90978] = "Happy Whimsyshire Cloud", + [90979] = "Sad Whimsyshire Cloud", + [90980] = "Zulian Panther", + [90981] = "Zulian Panther", + [90985] = "Water Waveling", + [90986] = "Mr. Bigglesworth", + [90987] = "Wally Burnside", + [90989] = "Lil\' Tinyfin", + [90990] = "Cherry", + [91000] = "Bronze Drakonid", + [91001] = "Large Time Rift", + [91002] = "Chromie", + [91003] = "Chromie", + [91190] = "Grant Lafford", + [91191] = "Saul Buckwaldt", + [91193] = "Makrura Thresher", + [91194] = "Makrura Oilclaw", + [91195] = "Travel through the Northeast Passage", + [91200] = "Wrix Ozzlenut", + [91201] = "Grazzle Steamscrew", + [91202] = "Tammix Razzfire", + [91203] = "Rugnar", + [91204] = "Karnag the Drunk", + [91205] = "Zeet Waxwrench", + [91206] = "Fisherman Shix", + [91207] = "Maleka", + [91208] = "Oilworker Razlik", + [91209] = "Bazz Eagerblast", + [91210] = "Meek Fusemix", + [91211] = "Sazzy Gearlight", + [91212] = "Rixxle Copperdrive", + [91213] = "Oil Manager Tizzleflux", + [91214] = "Technician Spuzzle", + [91215] = "Nazzle Moreflak", + [91216] = "Wuzgut", + [91217] = "Lumberworker Pluckwrench", + [91218] = "Lumberworker Kazz", + [91219] = "Lumberworker Ruzbolt", + [91220] = "Lozzle", + [91221] = "Faz", + [91222] = "Oilworker Gullydagger", + [91223] = "Oilworker Brassrust", + [91224] = "Craneoperator Bizzrocket", + [91225] = "Chief Shang", + [91226] = "Varna Wireburn", + [91227] = "Hargosh", + [91228] = "Haylee Bucketblast", + [91229] = "Dockworker Shazklench", + [91230] = "Cannoneer Gaxbruise", + [91231] = "Cannoneer Dazzcrank", + [91232] = "Krez the Wise", + [91233] = "Technician Haztick", + [91234] = "Technician Grimzlow", + [91235] = "Technician Balwaz", + [91236] = "Sparkwater Bruiser", + [91237] = "Tradesman Laz", + [91238] = "Lena Zapscrew", + [91239] = "Hangman Glix", + [91240] = "Thorg the Big", + [91241] = "Tikku", + [91242] = "Wazzrocket", + [91243] = "Gowlfang", + [91244] = "Targosh", + [91245] = "Narena", + [91246] = "Valkar", + [91247] = "Karey Gozzleratch", + [91248] = "Wixx", + [91249] = "Hizzle", + [91250] = "Nixx Oldfuse", + [91251] = "Grunt Karg", + [91252] = "Oilworker Skazjaw", + [91253] = "Lix Tinwrench", + [91254] = "Gazztoggle Krewpipe", + [91255] = "Frix Tallycog", + [91256] = "Razzle Longpipe", + [91257] = "Bizzle Cracksaw", + [91258] = "Wendy Copperhack", + [91259] = "Pazzle Brightwrench", + [91260] = "Shak \'The Hack\'", + [91261] = "Hiz Boltmuck", + [91262] = "Wastemanager Taxx", + [91263] = "Minx Oggbolt", + [91264] = "Woodworker Grack", + [91265] = "Woodworker Rustlug", + [91266] = "Nazgro Wacktoggle", + [91267] = "Shredder Operator Boltratchet", + [91268] = "Technician Fraxdust", + [91269] = "Miner Gralwax", + [91270] = "Miner Kazzlebucket", + [91271] = "Miner Igglesocket", + [91272] = "Miner Axel", + [91273] = "Miner Werrywrench", + [91274] = "Big Fraggle", + [91275] = "Grimm Onearm", + [91276] = "Mememgem", + [91277] = "Miner Glaktor", + [91278] = "Jock Tossbucket", + [91279] = "Woodworker Shlax", + [91280] = "Brizclang Spuckettool", + [91281] = "Spanessa Fogwater", + [91282] = "Shalgrig Pipeshack", + [91283] = "Lieutenant Azsalus", + [91284] = "Captain Salt Tooth", + [91285] = "Grol the Exile", + [91286] = "Shredder Operator Kixol", + [91287] = "Daela Evermoon", + [91288] = "Ardaen Evermoon", + [91289] = "Lord Rog", + [91290] = "Shadow Hunter Yin\'do", + [91291] = "Sagepaw", + [91292] = "Tarlo Farcrack", + [91293] = "Archivist Landas", + [91294] = "Quest 55030 Custom Objective Trigger", + [91295] = "Ozwack Tigflint", + [91296] = "Quest 55048 Custom Objective Trigger", + [91297] = "Baxxil", + [91298] = "Shazknock", + [91299] = "Little Grizlik", + [91300] = "Squeaks", + [91301] = "Quest 55211 Custom Objective Trigger", + [91302] = "Foreman Klix", + [91303] = "The Scorpid King", + [91320] = "Quest 80800 Custom Objective Trigger", + [91350] = "Magus Bromley", + [91351] = "Damion Steelborn", + [91352] = "Remnants Footman", + [91353] = "Remnants Knight", + [91354] = "Duke Ramon III", + [91400] = "Raz\'Dag", + [91401] = "Daffar", + [91402] = "Jinz\'ah", + [91403] = "Kintello", + [91404] = "Shan\'ara", + [91405] = "Drummer Ata\'nal", + [91406] = "Watcher Razil", + [91407] = "Watcher Hala", + [91408] = "Watcher Lazran", + [91409] = "Watcher Eh\'kal", + [91410] = "Watcher Oto\'be", + [91411] = "Speaker Ganz\'ih", + [91412] = "Gortog", + [91413] = "Lozo", + [91414] = "Prida", + [91415] = "Titiki", + [91710] = "Old Farwell", + [91711] = "Duchess Grelda", + [91712] = "Duke Nargelas", + [91713] = "Apothecary Volgrin", + [91714] = "Foreman Bill", + [91715] = "Pack Leader Sharn", + [91716] = "Chief Rnarl", + [91717] = "Belgar", + [91718] = "Storn", + [91719] = "Magister Salorn", + [91720] = "Norga", + [91721] = "Duchess Faliona", + [91722] = "Keeper Iselus", + [91723] = "Speaker Lazoko", + [91724] = "Ryan Oxcrest", + [91725] = "Darren Mistwall", + [91726] = "Father Brightcopf", + [91727] = "Butcher Reeves", + [91728] = "Marlow Neggle", + [91729] = "Harry Upperson", + [91730] = "Deathguard Markus", + [91731] = "Deathguard Robert", + [91732] = "Deathguard Yannis", + [91733] = "Deathguard Lena", + [91734] = "Deathguard Jenkor", + [91735] = "Pesterhide Forager", + [91736] = "Pesterhide Gnoll", + [91737] = "Pesterhide Warrior", + [91738] = "Pesterhide Mystic", + [91739] = "Tirisclaw Scavenger", + [91740] = "Tirisclaw Ravager", + [91741] = "Tirisclaw Shadowcaster", + [91742] = "House Guard Dilgar", + [91743] = "Leyna Dayton", + [91744] = "House Guard Melia", + [91745] = "Injured Guard Bill", + [91746] = "Injured Guard Nela", + [91747] = "Chef Borl", + [91748] = "Innkeeper Natt", + [91749] = "Bounty Hunter Knox", + [91750] = "Apothecary Villa", + [91751] = "Deathguard Jalen", + [91752] = "Deathguard Mike", + [91753] = "Vathras Millson", + [91754] = "Nina Millson", + [91755] = "Dockmaster Ormen", + [91756] = "Wretched Farmhand", + [91757] = "Wretched Guard", + [91758] = "Wretched Bodyguard", + [91759] = "Necromancer Reginald", + [91760] = "Tirisclaw Ambusher", + [91761] = "Rogue Enforcer", + [91762] = "Rogue Conjurer", + [91763] = "Rogue Arcanist", + [91765] = "Misty Farwell", + [91766] = "Captain Barlgruf", + [91767] = "Senator Broadbelt", + [91768] = "Gigno Flaxwhisker", + [91769] = "Lorie Gearwatch", + [91770] = "Fendo Wobblefizz", + [91771] = "Korm\'dar", + [91772] = "Remnants Sentry", + [91773] = "Remnants Scout", + [91774] = "Dinkle Togpipe", + [91775] = "Analyzor 53G", + [91776] = "Tide Mistress Rashal", + [91777] = "Myrmidon Sasz", + [91778] = "Glmmgll", + [91779] = "Hashaz", + [91780] = "Skrak", + [91781] = "Sanv K\'la", + [91782] = "Akh Z\'ador", + [91783] = "Keeper Kaena", + [91784] = "Witherbark Raider", + [91785] = "Witherbark Rogue", + [91786] = "Witherbark Soothsayer", + [91787] = "Witherbark Pathfinder", + [91788] = "Witherbark Darkcaller", + [91789] = "Warleader Kintoza", + [91790] = "Speaker Gan\'to", + [91791] = "Heketh", + [91794] = "Mmrmglul", + [91795] = "Tas Lanq", + [91796] = "Har Na\'lan", + [91797] = "Buttercup", + [91798] = "Bessy", + [91799] = "Moo", + [91800] = "Sir Jessy", + [91801] = "Butterscotch", + [91802] = "Marcus", + [91803] = "Domino", + [91804] = "Brandy", + [91805] = "Clewsee the Scourge", + [91806] = "Scryer Lordal Thas\'alah", + [91807] = "Black Blood of Shalla\'Aran", + [91808] = "Highborne Wraith", + [91809] = "Hazzuri Troll", + [91810] = "Hazzuri Warrior", + [91811] = "Hazzuri Hexxer", + [91812] = "Hazzuri Darkcaller", + [91813] = "Darkmaster Haza\'gi", + [91814] = "Hazzuri Defender", + [91815] = "Hazzuri Stalker", + [91816] = "Hazzuri Headhunter", + [91817] = "Champion Raggazi", + [91818] = "Chieftain Woh\'zo", + [91819] = "Hazzuri Tiger", + [91820] = "Hazzuri Skinner", + [91821] = "Hazzuri Beastkeeper", + [91822] = "Hazzuri Fisherman", + [91823] = "Hazzuri Darkpriest", + [91824] = "Hazzuri Scavenger", + [91825] = "Young Bengal Tiger", + [91826] = "Bengal Matriarch", + [91827] = "Bengal Tiger", + [91828] = "Bengal Alpha", + [91829] = "Jungleback Stomper", + [91830] = "Jungleback Thrasher", + [91831] = "Bright Crawler", + [91832] = "Island Pincer", + [91833] = "Rock Crawler", + [91834] = "Deepsnap Makrura", + [91835] = "Deepsnap Viceclaw", + [91836] = "Deepsnap Hardshell", + [91837] = "Shank Reef Ripper", + [91838] = "Deepshell Snapper", + [91839] = "Margon the Mighty", + [91840] = "Deeptide Myrmidon", + [91841] = "Deeptide Siren", + [91842] = "Deeptide Tidehunter", + [91843] = "Deeptide Serpent Guard", + [91844] = "Southsea Buccaneer", + [91845] = "Southsea Corsair", + [91846] = "\'Water Rat\' Jorgy", + [91847] = "Southsea Pillager", + [91848] = "Gor\'dosh Ogre", + [91849] = "Gor\'dosh Brute", + [91850] = "Gor\'dosh Butcher", + [91851] = "Gor\'dosh Shaman", + [91852] = "Gor\'dosh Firethrower", + [91853] = "Tyrant King Brog\'dosh", + [91854] = "Seer Bol\'ukk", + [91855] = "Ambassador Krok", + [91856] = "Hazzuri Speaker", + [91857] = "Wallowfin Murloc", + [91858] = "Wallowfin Devourer", + [91860] = "Wallowfin Tidecaller", + [91861] = "Wallowfin Shorerunner", + [91862] = "Wallowfin Netter", + [91863] = "Wallowtalker", + [91864] = "Deepwater Shark", + [91865] = "Primalist Bin\'doga", + [91866] = "Primalist Liganni", + [91867] = "Primalist Jongi", + [91868] = "Primalist Gojo", + [91869] = "Primalist Palaz", + [91870] = "Primalist Yango", + [91871] = "Head-Primalist Manaz\'ago", + [91872] = "\'Slim\'", + [91873] = "Fellis Bander", + [91874] = "Kelgun Blackmug", + [91875] = "Duke Larker IV", + [91876] = "Foreman Nate Mud", + [91877] = "Lumberworker Oppol", + [91878] = "Lumberworker Baste", + [91879] = "Lumberworker Jacob", + [91880] = "Shipworker Calub", + [91881] = "Shipworker Donovan", + [91882] = "Dudley", + [91883] = "Arnold Boran", + [91884] = "Shipworker Larry", + [91885] = "Shipworker Gandrel", + [91886] = "Cannoneer Darlug", + [91887] = "Cannoneer Breck", + [91888] = "Angela Goodwill", + [91889] = "Sean Pinerock", + [91890] = "Eliza Caldwell", + [91891] = "Tarsokk", + [91892] = "Hazzuri Dark Kin", + [91893] = "Dentarg", + [91900] = "Babe", + [91901] = "Bonny", + [91902] = "Molasses", + [91903] = "Duke", + [91904] = "Larry", + [91905] = "Sailor Darkbay", + [91906] = "Deepwater Hydra", + [91910] = "Ravenous Strigoi", + [91911] = "Forgotten Soul", + [91912] = "Possessed Axe", + [91913] = "Forlorn Shrieker", + [91914] = "Undead Frenzy", + [91915] = "Cursed Blades", + [91916] = "Archlich Enkhraz", + [91917] = "Corpsemuncher", + [91918] = "Shadowblade Spectre", + [91919] = "Commander Andreon", + [91920] = "Marrowspike", + [91922] = "Crypt Fearfeaster", + [91923] = "Unseen Stalker", + [91924] = "Skeletal Remains", + [91925] = "Risen Crypt Guard", + [91926] = "Rotten Zombie", + [91927] = "Midnight", + [91928] = "Alarus", + [91929] = "Hivaxxis", + [91930] = "Tomb Creeper", + [91931] = "Crypt Watcher", + [91932] = "Drowned Sinner", + [91950] = "Chef Jenkel", + [91951] = "Cook Lopperson", + [91952] = "Devon Harkwave", + [91953] = "Father Benofar", + [91954] = "Fisherman Delavey", + [91955] = "Milroy Haveshine", + [91956] = "Denia Hale", + [91957] = "Sailor Kark", + [91958] = "Salty\' O\'Keef", + [91959] = "Sailor \'Deepmug\'", + [91960] = "Junglepaw Panther", + [91961] = "Junglepaw Shadow Panther", + [91962] = "Saltsnap Crocolisk", + [91963] = "Deepstone Basilisk", + [91964] = "Saltjaw Basilisk", + [91965] = "Lurking Jungle Creeper", + [91966] = "Venomous Jungle Serpent", + [91967] = "Enraged Water Elemental", + [91968] = "Lykourgos the Reaver", + [91969] = "Miner Gill", + [91970] = "Miner Miya", + [91971] = "Miner Nerik", + [91972] = "Barmaid Dela", + [91973] = "Grock", + [91974] = "Captain Silas", + [91975] = "Remnants Priest", + [91976] = "Barkeep Clemens", + [91977] = "Olfan Goldenbrow", + [91978] = "Cort Barton", + [91979] = "Brayton Garthside", + [91980] = "Remnants Farmer", + [91981] = "Remnants Militia", + [91982] = "Argon Halmantle", + [91983] = "Randal Portman", + [91984] = "Tirisclaw Bear", + [91985] = "Tirisclaw Cub", + [91986] = "Tirisclaw Roamer", + [91987] = "Cragtusk Boar", + [91988] = "Graypaw Roamer", + [91989] = "Graypaw Wolf", + [91990] = "Graypaw Alpha", + [91991] = "Celestial Steed", + [91992] = "Invincible", + [91993] = "Crimson Spectral Tiger", + [92000] = "Hydromancer Vanessa", + [92001] = "Hydromancer Flakereef", + [92002] = "Colonel Hardinus", + [92003] = "Deckmaster Breachcrest", + [92004] = "Marine Clifftower", + [92005] = "Sergeant Blackwell", + [92006] = "Marine Dagby", + [92007] = "Marine Logan", + [92008] = "Stablemaster Yannis", + [92009] = "Sailor Patterson", + [92010] = "Sailor Larson", + [92011] = "Valdarion Smite", + [92012] = "Watch Sergeant Arthur", + [92013] = "Watchman Banal", + [92014] = "Watchman Damion", + [92015] = "Watchman Hanson", + [92016] = "Watchman Tyrial", + [92017] = "Watch Paladin Janathos", + [92018] = "Sir Areyntall", + [92019] = "Janet Hollowworth", + [92020] = "Howard Gray", + [92021] = "Lucas", + [92022] = "\'Sly\' Duncan", + [92023] = "Quartermaster Davin", + [92024] = "Dag\'grak Bloodfist", + [92025] = "Sailor Percy", + [92100] = "Groveweald Warrior", + [92101] = "Groveweald Shaman", + [92102] = "Groveweald Pathfinder", + [92103] = "Groveweald Warder", + [92104] = "Groveweald Ursa", + [92105] = "Elder \'One Eye\'", + [92106] = "Elder Blackmaw", + [92107] = "Grovetender Engryss", + [92108] = "High Priestess A\'lathea", + [92109] = "Keeper Ranathos", + [92110] = "Master Raxxieth", + [92111] = "Fenektis the Deceiver", + [92112] = "Raging Infernal", + [92113] = "Grove Sprite Corruptor", + [92114] = "Wandering Faerie Dragon", + [92115] = "Enraged Sharpclaw", + [92116] = "Glade Creeper", + [92117] = "Deranged Ancient", + [92118] = "Disturbed Spirit", + [92119] = "Wallowing Spirit", + [92120] = "Roaming Felguard", + [92121] = "Mana Hunter", + [92122] = "Wicked Manipulator", + [92123] = "Blacktalon Trickster", + [92124] = "Blacktalon Felsworn", + [92125] = "Blacktalon Flamecaller", + [92126] = "Blacktalon Corruptor", + [92127] = "Twisted Ancient", + [92128] = "Warden Liferoot", + [92129] = "Warden Treeshade", + [92130] = "Speaker Gnarr", + [92131] = "Speaker Ragnaf", + [92132] = "Swordsman Daelus", + [92133] = "Inuvias Brightlance", + [92134] = "Southsea Miner", + [92135] = "Southsea Bootlegger", + [92136] = "Southsea Distiller", + [92137] = "\'Moonshine\' Marty", + [92138] = "Southsea Sea Wolf", + [92139] = "Southsea Outlaw", + [92140] = "Southsea Deckhand", + [92141] = "Foreman Darkskull", + [92142] = "Captain Ironhoof", + [92143] = "Captain Blackeye", + [92144] = "Captain Saltbeard", + [92145] = "Smallgill", + [92146] = "Strand Crawler", + [92147] = "Silver Coast Crawler", + [92148] = "Razzari Priest", + [92149] = "Razzari Worshipper", + [92150] = "Razzari Tribesman", + [92151] = "Razzari Warrior", + [92152] = "Razzari Guardian", + [92153] = "Razzari Scout", + [92154] = "Razzari Mystic", + [92155] = "Speaker Ujuwa", + [92156] = "Chief Imaz\'ul", + [92157] = "Seer Jang\'zo", + [92158] = "Deeptide Shorerunner", + [92159] = "Deeptide Murloc", + [92160] = "Deeptide Mystic", + [92161] = "Tidelord Hakash", + [92162] = "Princess Shasza", + [92163] = "Letashaz", + [92164] = "Drowned Soul", + [92165] = "Forgotten Crew", + [92166] = "Forgotten Swordsman", + [92167] = "Captain Faelon", + [92168] = "Achaikos", + [92169] = "Kryillos", + [92170] = "Isidora", + [92171] = "Eudokia", + [92172] = "Karpos", + [92173] = "Tarokar", + [92174] = "Tarokar", + [92175] = "Maul\'ogg Enforcer", + [92176] = "Blatarg", + [92177] = "Garto\'ogg", + [92178] = "Jarg\'ukk", + [92179] = "Enforcer Zulrokk", + [92180] = "Lord Cruk\'Zogg", + [92181] = "Ambassador Rotog", + [92182] = "Explorer Fangosh", + [92183] = "Thrak the Cook", + [92184] = "Haz\'gorg the Great Seer", + [92185] = "Seer Jalokk", + [92186] = "Seer Borgorr", + [92187] = "Flaz Fusemix", + [92188] = "Yeggle Powderscrew", + [92189] = "Windo", + [92190] = "Jubo", + [92191] = "Blazno Blastpipe", + [92192] = "Yei\'zo", + [92193] = "Bloodfist Grunt", + [92194] = "Grunt Har\'gak", + [92195] = "Otor Nar\'gakk", + [92196] = "Katokar Bladewind", + [92197] = "Yharg\'osh", + [92198] = "Battlebreaker", + [92199] = "Talom Stridecloud", + [92200] = "Bhatra", + [92201] = "Brutan Palehoof", + [92202] = "Nulda", + [92203] = "Ruins Creeper", + [92204] = "Tanglemoss", + [92210] = "Gozzo", + [92211] = "Liang", + [92212] = "Jabiry", + [92213] = "Concavius", + [92214] = "Twilight Darkblade", + [92215] = "Twilight Shadowmancer", + [92216] = "Twilight Overseer", + [92217] = "Ticas Quirkfuzz", + [92218] = "Fixie Steamspark", + [92219] = "Genzil Spannerlight", + [92220] = "Hasey Wobblefuse", + [92221] = "Hal\'dah Plainsguard", + [92222] = "First Mate Sidney \"One ear\" Velvet", + [92223] = "Kalanar Brightshine", + [92224] = "Gusbowl", + [92935] = "Guard Captain Gort", + [92936] = "Samual Boran", + [92937] = "Hargul the Hardy", + [92938] = "Magus Valgon", + [92939] = "Hydrox", + [92940] = "Marine Lockside", + [92941] = "Cannoneer Hancock", + [92942] = "Grommok", + [92943] = "Vifri Brent", + [93000] = "Marshal Greywall", + [93001] = "Human Footman", + [93002] = "Human Archer", + [93003] = "Human Conjurer", + [93004] = "Human Cleric", + [93005] = "Warlord Blackskull", + [93006] = "Orc Grunt", + [93007] = "Orc Spearman", + [93008] = "Orc Necrolyte", + [93009] = "Orc Warlock", + [93100] = "Voryn Skystrider", + [93101] = "Vanessa Porter ", + [93102] = "Nal\'rak", + [93105] = "Shadow Creeper", + [93106] = "Hungry Vault Rat", + [93107] = "Arc\'tiras", + [93108] = "Frigid Guardian", + [93115] = "Baltocris", + [93116] = "Defias Dark Wizard", + [93117] = "Molten Corehound", + [93118] = "Tel\'Abim Gorilla", + [93119] = "Felforged Dreadhound", + [93200] = "Azure Frog", + [93201] = "Dream Frog", + [93202] = "Bullfrog", + [93203] = "Infinite Frog", + [93204] = "Poison Frog", + [93205] = "Snow Frog", + [93206] = "Pink Frog", + [93207] = "Golden Frog", + [93208] = "Pond Frog", + [93210] = "Polymorphed Rodent", + [93211] = "Armored Black Deathcharger", + [93332] = "Desolate Doomguard", + [93333] = "Mephistroth", + [93334] = "Demonic Eye", + [93335] = "Nightmare Crawler", + [93336] = "Hellfire Doomguard", + [93337] = "Hellfire Imp", + [93338] = "Hellfury Shard", + [93340] = "Winter Veil Hippogryph", + [93341] = "Plagued Riding Spider", + [93342] = "Cave Riding Spider", + [93343] = "Violet Feral Raptor", + [93344] = "Blue Feral Raptor", + [93345] = "Red Feral Raptor", + [93346] = "Corrupted Feral Raptor", + [93347] = "Obsidian Feral Raptor", + [112180] = "Area Trigger for quest 5321", + [131313] = "Pierre \"Le Coiffeur\" Dufresne", + [131314] = "Fizzle \"The Sharpened Scissors\"", + [160016] = "Burning Adrenaline Trigger", + [160018] = "CannonBall", + [160100] = "Den Trainee", + [160101] = "Den Trainee", + [160102] = "Den Commander", + [160103] = "Den Trainee", + [160104] = "Invis Target", + [160105] = "Den Archer Commander", + [161207] = "Chromie", + [161208] = "The Black Widow", + [161209] = "Krucios the Soulless", + [161210] = "Blademaster Axun", + [161211] = "Lady Katrin", + [161212] = "Spiderling", + [533001] = "Plague Fissure", + [533002] = "Plague Cloud", + [533003] = "Anub\'Rekhan", + [533004] = "Faerlina RP", + [604250] = "Area Trigger for quest 40377", + [987000] = "High Overlord Saurfang", + [987800] = "Madness Trigger", + [988001] = "Blackwing Technician", + [988002] = "Blackwing Technician", + [988003] = "Blackwing Technician", + [988004] = "Blackwing Technician", + [988005] = "Blackwing Technician", + [988006] = "Blackwing Technician", + [990000] = "Pandaren", + [1000002] = "COT Start Event Trigger", + [1001000] = "GM Loot Helper", + [2000000] = "Sacred Fist Daelus", + [2000001] = "Grand Sorcerer Ardaeus", + [2000002] = "High Inquisitor Mariella", + [2000003] = "High General Abbendis", + [2000004] = "Brother Eric Vesper", + [2000005] = "Scarlet Chaplain", + [2000006] = "Scarlet Sister", + [2000007] = "Nolin", + [2000008] = "Bokkeum", + [2000009] = "SECOND_WING_TRASH_PLACEHOLDER", + [2000010] = "Malor", + [2000011] = "Jordan", + [2000012] = "Durgen", + [2000013] = "Fallen Spirit", + [2000014] = "Citadel Inquisitor", + [2000015] = "Citadel Valiant", + [2000016] = "Void Zone", + [2000017] = "Felhound", + [2000018] = "Kill Zone", + [2000019] = "Sun", + [2000020] = "Invar One-Arm", + [2000021] = "Arellas Fireleaf", + [2000022] = "Holia Sunshield", + [2000023] = "Ferren Marcus", + [2000024] = "Yana Bloodspear", + [2000025] = "Orman of Stromgarde", + [2000026] = "Fellari Swiftarrow", + [2000027] = "Dorgar Stoenbrow", + [2000028] = "Valea Twinblades", + [2000029] = "Harthal Truesight", + [2000030] = "Admiral Barean Westwind", + [2000031] = "ARDAEUS_STATUE_NPC", + [2000032] = "ANTI_EXPLOIT_TELEPORTER", + [2000033] = "Citadel Inquisitor", + [2000034] = "Citadel Valiant", + [2000035] = "Citadel Footman", + [2000036] = "Citadel Interrogator", + [2000037] = "Darkcaller Rayn", + [2000090] = "Tirion Fordring", + [2000091] = "Spirit of Alexandros Mograine", + [2000092] = "Grand Crusader Dathrohan", + [2000093] = "Highlord Mograine", + [2000094] = "Sir Zeliek", + [2000095] = "Thane Korth\'azz", + [2000096] = "Lady Blaumeux", + [2509000] = "Field Duty (Alliance) Trigger", +} + +-- Source: https://raw.githubusercontent.com/shagu/pfQuest-turtle/master/db/units-turtle.lua +RelationshipsQuestAndItemBrowserData["units"]["data-turtle"] = { + [3] = { + ["coords"] = { + [1] = { 23.8, 39.2, 10, 300 }, + [2] = { 22.8, 39.1, 10, 300 }, + [3] = { 25.4, 39, 10, 300 }, + [4] = { 21.7, 38.3, 10, 300 }, + [5] = { 25.1, 38.2, 10, 300 }, + [6] = { 22.2, 37, 10, 300 }, + [7] = { 25.4, 36, 10, 300 }, + [8] = { 25.7, 34.4, 10, 300 }, + [9] = { 22, 32.6, 10, 300 }, + }, + ["lvl"] = "24-25", + }, + [4] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [5] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [6] = { + ["coords"] = { + [1] = { 50.5, 37.6, 12, 270 }, + [2] = { 51, 37.6, 12, 270 }, + [3] = { 50.8, 37.5, 12, 270 }, + [4] = { 51.3, 37.4, 12, 270 }, + [5] = { 51.4, 37, 12, 270 }, + [6] = { 51.7, 37, 12, 270 }, + [7] = { 48.1, 37, 12, 270 }, + [8] = { 49.1, 36.9, 12, 270 }, + [9] = { 47.7, 36.9, 12, 270 }, + [10] = { 48.4, 36.7, 12, 270 }, + [11] = { 49.2, 36.5, 12, 270 }, + [12] = { 51.3, 36.5, 12, 270 }, + [13] = { 48.9, 36.4, 12, 270 }, + [14] = { 47.6, 36.4, 12, 270 }, + [15] = { 47.4, 36.3, 12, 270 }, + [16] = { 49.9, 36.3, 12, 270 }, + [17] = { 47.9, 36.3, 12, 270 }, + [18] = { 48.5, 36.1, 12, 270 }, + [19] = { 49.6, 36.1, 12, 270 }, + [20] = { 51.2, 36, 12, 270 }, + [21] = { 47.2, 36, 12, 270 }, + [22] = { 47.6, 35.9, 12, 270 }, + [23] = { 49.3, 35.8, 12, 270 }, + [24] = { 49.7, 35.8, 12, 270 }, + [25] = { 47.6, 35.7, 12, 270 }, + [26] = { 51.6, 35.7, 12, 270 }, + [27] = { 46.9, 35.7, 12, 270 }, + [28] = { 47.9, 35.5, 12, 270 }, + [29] = { 50, 35.5, 12, 270 }, + [30] = { 49.4, 35.3, 12, 270 }, + [31] = { 49.8, 35.2, 12, 270 }, + [32] = { 48.9, 35.1, 12, 270 }, + [33] = { 47.6, 35, 12, 270 }, + }, + ["lvl"] = "1-2", + }, + [7] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [8] = { + ["coords"] = { + [1] = { 62.8, 37.4, 17, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [9] = { + ["coords"] = { + [1] = { 63.4, 73.3, 1519, 120 }, + [2] = { 52.4, 70, 1637, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [10] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [11] = { + ["coords"] = { + [1] = { 52.7, 44.5, 2597, 120 }, + [2] = { 52.5, 44.4, 2597, 120 }, + [3] = { 52.9, 44.4, 2597, 120 }, + [4] = { 53, 44.2, 2597, 120 }, + [5] = { 52.3, 44.2, 2597, 120 }, + [6] = { 53, 43.9, 2597, 120 }, + [7] = { 52.3, 43.7, 2597, 120 }, + [8] = { 52.9, 43.6, 2597, 120 }, + [9] = { 52.5, 43.5, 2597, 120 }, + [10] = { 52.8, 43.5, 2597, 120 }, + [11] = { 52.6, 43.4, 2597, 120 }, + [12] = { 50.6, 31.6, 2597, 120 }, + [13] = { 50.9, 31.5, 2597, 120 }, + [14] = { 50.4, 31.3, 2597, 120 }, + [15] = { 51, 31.3, 2597, 120 }, + [16] = { 51.1, 31, 2597, 120 }, + [17] = { 50.4, 30.8, 2597, 120 }, + [18] = { 50.9, 30.6, 2597, 120 }, + [19] = { 50.5, 30.6, 2597, 120 }, + [20] = { 50.7, 30.5, 2597, 120 }, + [21] = { 44, 19.1, 2597, 120 }, + [22] = { 44.2, 19.1, 2597, 120 }, + [23] = { 43.9, 19, 2597, 120 }, + [24] = { 44.4, 18.8, 2597, 120 }, + [25] = { 43.7, 18.7, 2597, 120 }, + [26] = { 44.3, 18.4, 2597, 120 }, + [27] = { 43.9, 18.3, 2597, 120 }, + [28] = { 44.1, 18.2, 2597, 120 }, + [29] = { 45.3, 14.9, 2597, 120 }, + [30] = { 45.1, 14.9, 2597, 120 }, + [31] = { 45.5, 14.7, 2597, 120 }, + [32] = { 44.9, 14.6, 2597, 120 }, + [33] = { 45.6, 14.3, 2597, 120 }, + [34] = { 44.9, 14.2, 2597, 120 }, + [35] = { 45.5, 14, 2597, 120 }, + [36] = { 45.1, 13.9, 2597, 120 }, + [37] = { 45.3, 13.9, 2597, 120 }, + [38] = { 43.4, 13.5, 2597, 120 }, + [39] = { 35.5, 10.1, 5148, 120 }, + [40] = { 35.6, 9.8, 5148, 120 }, + [41] = { 35.6, 9.1, 5148, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "63", + }, + [12] = { + ["coords"] = { + [1] = { 62.9, 37.3, 17, 120 }, + [2] = { 55.2, 55.8, 876, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [13] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [14] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [15] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [16] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [17] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [18] = { + ["coords"] = { + [1] = { 42, 14.8, 2597, 120 }, + [2] = { 42.3, 14.6, 2597, 120 }, + [3] = { 42.4, 14.6, 2597, 120 }, + [4] = { 42.6, 14.5, 2597, 120 }, + [5] = { 42.7, 14.5, 2597, 120 }, + [6] = { 42.9, 14.4, 2597, 120 }, + [7] = { 43.1, 14.4, 2597, 120 }, + [8] = { 43.3, 14.2, 2597, 120 }, + [9] = { 43.3, 14, 2597, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "63", + }, + [19] = "_", + [20] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [21] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [22] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [24] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [25] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [26] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [27] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [28] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [30] = { + ["coords"] = { + [1] = { 35.2, 87, 12, 120 }, + [2] = { 42, 81.6, 12, 120 }, + [3] = { 34.3, 79.4, 12, 120 }, + [4] = { 39.5, 78.7, 12, 270 }, + [5] = { 43.9, 76.7, 12, 270 }, + [6] = { 40.8, 75.1, 12, 270 }, + [7] = { 33.5, 73.8, 12, 270 }, + [8] = { 38.8, 73.3, 12, 270 }, + [9] = { 38.2, 72.8, 12, 270 }, + [10] = { 41.9, 72.2, 12, 270 }, + [11] = { 46.5, 72, 12, 120 }, + [12] = { 44.6, 71.2, 12, 270 }, + [13] = { 38, 70, 12, 270 }, + [14] = { 34.1, 69.9, 12, 120 }, + [15] = { 35.8, 69.1, 12, 270 }, + [16] = { 31.9, 68.5, 12, 270 }, + [17] = { 28.5, 66.7, 12, 270 }, + [18] = { 36, 62.7, 12, 270 }, + [19] = { 38.5, 62.4, 12, 270 }, + [20] = { 50.3, 59.9, 12, 120 }, + [21] = { 37.5, 58.9, 12, 120 }, + [22] = { 31.4, 57, 12, 270 }, + [23] = { 42.1, 56.4, 12, 120 }, + [24] = { 36.4, 55.9, 12, 270 }, + }, + ["lvl"] = "5-6", + }, + [31] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [32] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [33] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [34] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [35] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [36] = { + ["coords"] = { + [1] = { 46.5, 69.1, 40, 300 }, + [2] = { 47.1, 67.6, 40, 300 }, + [3] = { 46.9, 67, 40, 300 }, + [4] = { 47.5, 66.5, 40, 300 }, + [5] = { 46.7, 65.9, 40, 300 }, + [6] = { 34.3, 47.8, 40, 300 }, + [7] = { 35.4, 47.2, 40, 300 }, + [8] = { 36.1, 46.9, 40, 300 }, + [9] = { 34.1, 46.5, 40, 25 }, + [10] = { 34.5, 46, 40, 300 }, + [11] = { 35.8, 45.9, 40, 300 }, + [12] = { 32.9, 37.3, 40, 300 }, + [13] = { 32.5, 36.4, 40, 300 }, + [14] = { 57, 36.3, 40, 300 }, + [15] = { 33.4, 36.2, 40, 300 }, + [16] = { 56.3, 35.9, 40, 300 }, + [17] = { 56.8, 35.7, 40, 300 }, + [18] = { 32.9, 35.5, 40, 300 }, + [19] = { 57.3, 35.4, 40, 300 }, + [20] = { 56.5, 35.1, 40, 300 }, + [21] = { 56.9, 34.3, 40, 300 }, + [22] = { 57.2, 34, 40, 300 }, + [23] = { 50.3, 34, 40, 300 }, + [24] = { 49, 33.8, 40, 300 }, + [25] = { 47.9, 33.5, 40, 300 }, + [26] = { 49.7, 33, 40, 300 }, + [27] = { 48.7, 32.3, 40, 300 }, + [28] = { 48.7, 32.2, 40, 300 }, + }, + ["lvl"] = "11-12", + }, + [37] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [38] = { + ["coords"] = { + [1] = { 54.1, 52.2, 12, 270 }, + [2] = { 54.9, 52.1, 12, 270 }, + [3] = { 52.6, 51.9, 12, 270 }, + [4] = { 52.4, 51.7, 12, 270 }, + [5] = { 53.6, 51.5, 12, 270 }, + [6] = { 51.8, 51.4, 12, 270 }, + [7] = { 54.5, 51.3, 12, 270 }, + [8] = { 55.5, 51.2, 12, 270 }, + [9] = { 52, 51, 12, 270 }, + [10] = { 51.3, 50.7, 12, 270 }, + [11] = { 54, 50.6, 12, 270 }, + [12] = { 53.2, 50.6, 12, 270 }, + [13] = { 54.6, 50.2, 12, 270 }, + [14] = { 52.2, 50.1, 12, 270 }, + [15] = { 54.5, 49.9, 12, 270 }, + [16] = { 56.4, 49.7, 12, 270 }, + [17] = { 53.8, 49.7, 12, 270 }, + [18] = { 55.7, 49.7, 12, 270 }, + [19] = { 53.3, 49.6, 12, 270 }, + [20] = { 52.3, 49.5, 12, 270 }, + [21] = { 52.9, 49.4, 12, 270 }, + [22] = { 52.9, 49.3, 12, 270 }, + [23] = { 51.4, 49.3, 12, 270 }, + [24] = { 51.1, 49.2, 12, 270 }, + [25] = { 53.8, 49.2, 12, 270 }, + [26] = { 53.9, 49.2, 12, 270 }, + [27] = { 55.1, 49.2, 12, 270 }, + [28] = { 53.8, 49.1, 12, 270 }, + [29] = { 55.1, 49, 12, 270 }, + [30] = { 54.5, 48.9, 12, 270 }, + [31] = { 52.6, 48.8, 12, 270 }, + [32] = { 52, 48.5, 12, 270 }, + [33] = { 54.9, 48.5, 12, 270 }, + [34] = { 53.6, 48.3, 12, 270 }, + [35] = { 53.2, 48.2, 12, 270 }, + [36] = { 56.1, 48.1, 12, 270 }, + [37] = { 57.4, 48.1, 12, 120 }, + [38] = { 54.1, 47.8, 12, 270 }, + [39] = { 55, 47.8, 12, 270 }, + [40] = { 53.6, 47.8, 12, 270 }, + [41] = { 51.9, 47.5, 12, 270 }, + [42] = { 55.7, 47.3, 12, 270 }, + [43] = { 52.9, 47.3, 12, 270 }, + [44] = { 53, 47.2, 12, 270 }, + [45] = { 52.5, 47.1, 12, 270 }, + [46] = { 52.8, 47, 12, 270 }, + [47] = { 54.6, 47, 12, 270 }, + [48] = { 55.3, 47, 12, 270 }, + [49] = { 54.1, 46.9, 12, 270 }, + [50] = { 54.7, 46, 12, 270 }, + [51] = { 55.5, 45.8, 12, 270 }, + [52] = { 53.2, 45.6, 12, 270 }, + [53] = { 56.1, 45, 12, 270 }, + [54] = { 54, 44.9, 12, 270 }, + [55] = { 54, 44.8, 12, 270 }, + [56] = { 53.9, 44.3, 12, 270 }, + [57] = { 54.9, 44.2, 12, 270 }, + [58] = { 56.7, 44, 12, 270 }, + [59] = { 55.5, 44, 12, 270 }, + [60] = { 56.4, 43.9, 12, 270 }, + [61] = { 56.6, 43.7, 12, 270 }, + [62] = { 55, 43.1, 12, 270 }, + [63] = { 54.6, 42.9, 12, 270 }, + [64] = { 54.5, 42.8, 12, 270 }, + [65] = { 57.1, 42.5, 12, 270 }, + [66] = { 55.2, 42.3, 12, 270 }, + [67] = { 55.9, 42.2, 12, 270 }, + [68] = { 55.5, 42.1, 12, 270 }, + [69] = { 54.6, 42.1, 12, 270 }, + [70] = { 54.8, 41.7, 12, 270 }, + [71] = { 54.6, 41.6, 12, 270 }, + [72] = { 55.7, 41, 12, 270 }, + [73] = { 55.5, 40.9, 12, 270 }, + [74] = { 57.1, 40.9, 12, 270 }, + [75] = { 56.1, 40.6, 12, 270 }, + [76] = { 55, 40.2, 12, 270 }, + }, + ["lvl"] = "3-4", + }, + [39] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [40] = { + ["coords"] = { + [1] = { 41.9, 81.3, 12, 270 }, + [2] = { 39.9, 81.1, 12, 270 }, + [3] = { 41.1, 81, 12, 270 }, + [4] = { 40.9, 80.7, 12, 270 }, + [5] = { 40.8, 80.4, 12, 270 }, + [6] = { 40.4, 80.3, 12, 270 }, + [7] = { 40, 80.1, 12, 270 }, + [8] = { 41.6, 80.1, 12, 270 }, + [9] = { 41.6, 80, 12, 270 }, + [10] = { 41, 79.9, 12, 270 }, + [11] = { 41.4, 79.9, 12, 270 }, + [12] = { 40.2, 79.6, 12, 270 }, + [13] = { 41.3, 79.3, 12, 270 }, + [14] = { 39.8, 79.1, 12, 270 }, + [15] = { 41.7, 78.7, 12, 270 }, + [16] = { 39.9, 78.6, 12, 270 }, + [17] = { 41, 78.2, 12, 270 }, + [18] = { 41.5, 77.9, 12, 120 }, + [19] = { 40.3, 77.7, 12, 270 }, + [20] = { 40.8, 77.5, 12, 270 }, + [21] = { 63.7, 61.1, 12, 270 }, + [22] = { 62.9, 60, 12, 270 }, + [23] = { 64.8, 59.9, 12, 270 }, + [24] = { 58, 59.8, 12, 270 }, + [25] = { 60.9, 59.7, 12, 270 }, + [26] = { 62, 58.3, 12, 270 }, + [27] = { 63.8, 58.2, 12, 270 }, + [28] = { 64.5, 57.4, 12, 270 }, + [29] = { 60.1, 57.4, 12, 270 }, + [30] = { 64.6, 56.9, 12, 270 }, + [31] = { 64.3, 56.8, 12, 270 }, + [32] = { 63.1, 56.6, 12, 270 }, + [33] = { 64.8, 56.4, 12, 270 }, + [34] = { 61.1, 56.4, 12, 270 }, + [35] = { 63.6, 55.4, 12, 270 }, + [36] = { 62, 55.3, 12, 270 }, + [37] = { 62.8, 53.8, 12, 270 }, + [38] = { 61.5, 53.3, 12, 270 }, + [39] = { 60.7, 52.8, 12, 270 }, + [40] = { 61.5, 51.9, 12, 270 }, + [41] = { 61.4, 51.5, 12, 270 }, + [42] = { 61.2, 50.9, 12, 270 }, + [43] = { 60.6, 50.8, 12, 270 }, + [44] = { 61.5, 50.2, 12, 270 }, + [45] = { 61.1, 49.9, 12, 270 }, + [46] = { 61.2, 49.6, 12, 270 }, + [47] = { 60.3, 49.6, 12, 270 }, + [48] = { 60.8, 49.5, 12, 270 }, + [49] = { 61, 49.2, 12, 270 }, + }, + ["lvl"] = "6-7", + }, + [41] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [42] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [43] = { + ["coords"] = { + [1] = { 60, 48.7, 12, 270 }, + [2] = { 62, 47.9, 12, 270 }, + [3] = { 60.2, 47.6, 12, 270 }, + [4] = { 61.8, 47.5, 12, 270 }, + [5] = { 61.1, 47.3, 12, 270 }, + [6] = { 61.9, 47.1, 12, 270 }, + [7] = { 61.6, 46.9, 12, 270 }, + [8] = { 60.5, 46.9, 12, 270 }, + }, + ["lvl"] = "8-9", + }, + [44] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [46] = { + ["coords"] = { + [1] = { 71.1, 12.6, 10, 270 }, + [2] = { 62.2, 11.2, 10, 300 }, + [3] = { 62.2, 11.1, 10, 270 }, + [4] = { 58.6, 9.8, 10, 270 }, + [5] = { 55.4, 7.7, 10, 270 }, + [6] = { 52.3, 86.7, 12, 270 }, + [7] = { 75.6, 86.6, 12, 270 }, + [8] = { 76.3, 86.5, 12, 270 }, + [9] = { 77.8, 86.1, 12, 270 }, + [10] = { 77.6, 85.9, 12, 270 }, + [11] = { 76.8, 85.9, 12, 270 }, + [12] = { 75.9, 85.9, 12, 270 }, + [13] = { 76.6, 85.6, 12, 270 }, + [14] = { 68.6, 85.5, 12, 300 }, + [15] = { 68.6, 85.4, 12, 270 }, + [16] = { 74.7, 85.3, 12, 270 }, + [17] = { 56.4, 85.2, 12, 270 }, + [18] = { 77.2, 85.2, 12, 270 }, + [19] = { 76.2, 84.9, 12, 270 }, + [20] = { 65.8, 84.4, 12, 270 }, + [21] = { 57, 84.2, 12, 270 }, + [22] = { 70, 84.1, 12, 270 }, + [23] = { 67.9, 83.7, 12, 270 }, + [24] = { 64.7, 83, 12, 270 }, + [25] = { 63.4, 82.8, 12, 270 }, + [26] = { 76.7, 82.8, 12, 270 }, + [27] = { 59.3, 82.4, 12, 270 }, + [28] = { 61.2, 82.4, 12, 270 }, + [29] = { 61.9, 80.6, 12, 270 }, + [30] = { 79.4, 58, 12, 270 }, + [31] = { 79.3, 57.2, 12, 270 }, + [32] = { 79.3, 56.9, 12, 270 }, + [33] = { 78.4, 56.6, 12, 270 }, + [34] = { 79.4, 56.4, 12, 270 }, + [35] = { 78.5, 56.2, 12, 270 }, + [36] = { 78.8, 55.7, 12, 270 }, + [37] = { 79.6, 55.2, 12, 270 }, + [38] = { 78.9, 55, 12, 270 }, + [39] = { 79.2, 54.2, 12, 270 }, + [40] = { 79.3, 54.1, 12, 270 }, + [41] = { 79.5, 50.7, 12, 270 }, + [42] = { 79.5, 48.2, 12, 270 }, + [43] = { 79.4, 48, 12, 270 }, + [44] = { 79.4, 47.7, 12, 270 }, + [45] = { 79.2, 47.4, 12, 270 }, + [46] = { 79.5, 47.2, 12, 270 }, + [47] = { 79.5, 46.3, 12, 270 }, + [48] = { 80, 46.3, 12, 270 }, + [49] = { 79.1, 46, 12, 270 }, + [50] = { 79.5, 45.4, 12, 270 }, + [51] = { 79.3, 45.2, 12, 270 }, + [52] = { 80.3, 45.2, 12, 270 }, + [53] = { 79.2, 45.2, 12, 270 }, + [54] = { 77.9, 45.1, 12, 270 }, + [55] = { 78.6, 44.9, 12, 270 }, + [56] = { 78.2, 44.9, 12, 270 }, + [57] = { 78.8, 44.5, 12, 270 }, + [58] = { 77.9, 44.4, 12, 270 }, + [59] = { 77.7, 44.3, 12, 270 }, + [60] = { 77.3, 44.1, 12, 270 }, + [61] = { 79.5, 43.5, 12, 270 }, + [62] = { 78.6, 43.2, 12, 270 }, + [63] = { 78.6, 42.1, 12, 270 }, + }, + ["lvl"] = "9-10", + }, + [47] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [48] = { + ["coords"] = { + [1] = { 80.8, 73.8, 10, 300 }, + [2] = { 77.4, 73.8, 10, 300 }, + [3] = { 79.7, 73, 10, 300 }, + [4] = { 76.9, 72.2, 10, 300 }, + [5] = { 80.3, 72, 10, 300 }, + [6] = { 77.7, 71.8, 10, 300 }, + [7] = { 78.6, 70.8, 10, 300 }, + [8] = { 76.9, 70.2, 10, 300 }, + [9] = { 80.6, 70.2, 10, 300 }, + [10] = { 79, 69.7, 10, 300 }, + [11] = { 81, 69.3, 10, 300 }, + [12] = { 79.8, 68.8, 10, 300 }, + [13] = { 82.1, 68.7, 10, 300 }, + [14] = { 78, 67, 10, 300 }, + [15] = { 80.6, 66.7, 10, 300 }, + }, + ["lvl"] = "21-22", + }, + [49] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [50] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [55] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [61] = { + ["coords"] = { + [1] = { 50.7, 83.1, 12, 9000 }, + [2] = { 89.4, 79.7, 12, 9000 }, + [3] = { 52.5, 58.8, 12, 9000 }, + [4] = { 29.5, 58.1, 12, 9000 }, + }, + ["lvl"] = "11", + ["rnk"] = "4", + }, + [62] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [63] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [64] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [65] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [67] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [68] = { + ["coords"] = { + [1] = { 32.1, 49.9, 12, 900 }, + [2] = { 32.5, 49.5, 12, 900 }, + [3] = { 72.2, 87.4, 1519, 900 }, + [4] = { 69.4, 84.1, 1519, 900 }, + [5] = { 68.2, 82.4, 1519, 900 }, + [6] = { 69.3, 81.4, 1519, 900 }, + [7] = { 66, 77.7, 1519, 900 }, + [8] = { 62.3, 77.2, 1519, 900 }, + [9] = { 66.6, 77, 1519, 900 }, + [10] = { 62.6, 77, 1519, 900 }, + [11] = { 45.2, 74.3, 1519, 430 }, + [12] = { 68, 74.1, 1519, 900 }, + [13] = { 57.6, 72.6, 1519, 900 }, + [14] = { 68, 72.3, 1519, 900 }, + [15] = { 52.5, 70.9, 1519, 430 }, + [16] = { 52.9, 70.6, 1519, 900 }, + [17] = { 49.5, 69.7, 1519, 430 }, + [18] = { 49.4, 69.3, 1519, 430 }, + [19] = { 65.9, 59.7, 1519, 900 }, + [20] = { 66.1, 59.4, 1519, 900 }, + [21] = { 55.9, 58.2, 1519, 120 }, + [22] = { 52.6, 55.9, 1519, 25000 }, + [23] = { 42.4, 52.6, 1519, 180 }, + [24] = { 31.6, 51.6, 1519, 180 }, + [25] = { 32.2, 51.6, 1519, 180 }, + [26] = { 41.7, 51.2, 1519, 180 }, + [27] = { 43.8, 50.9, 1519, 180 }, + [28] = { 30.3, 50.6, 1519, 180 }, + [29] = { 40.5, 49.8, 1519, 180 }, + [30] = { 43.1, 49.6, 1519, 180 }, + [31] = { 30.3, 49.4, 1519, 180 }, + [32] = { 42.4, 47.6, 1519, 180 }, + [33] = { 39.1, 47.3, 1519, 180 }, + [34] = { 42.5, 46.1, 1519, 180 }, + [35] = { 59.5, 46, 1519, 25000 }, + [36] = { 29.5, 45.9, 1519, 180 }, + [37] = { 43.3, 44.3, 1519, 180 }, + [38] = { 43.8, 43.8, 1519, 180 }, + [39] = { 42.7, 42.9, 1519, 180 }, + [40] = { 30.3, 42.4, 1519, 180 }, + [41] = { 34.1, 42.1, 1519, 180 }, + [42] = { 30.3, 41.2, 1519, 180 }, + [43] = { 41.9, 40.5, 1519, 180 }, + [44] = { 39.4, 40.5, 1519, 180 }, + [45] = { 30.3, 37.2, 1519, 180 }, + [46] = { 34.1, 36.1, 1519, 180 }, + [47] = { 30.3, 36, 1519, 180 }, + [48] = { 27.2, 34.7, 1519, 180 }, + [49] = { 37.4, 34.2, 1519, 180 }, + [50] = { 37.2, 33.8, 1519, 180 }, + [51] = { 30.3, 32.1, 1519, 180 }, + [52] = { 27.2, 32.1, 1519, 180 }, + [53] = { 30.3, 30.9, 1519, 180 }, + [54] = { 33.4, 30.8, 1519, 180 }, + [55] = { 33, 30.8, 1519, 180 }, + [56] = { 65.4, 30, 1519, 120 }, + [57] = { 67.2, 29.4, 1519, 120 }, + [58] = { 65.9, 29.3, 1519, 120 }, + [59] = { 65.7, 28.9, 1519, 120 }, + [60] = { 64.8, 28.5, 1519, 120 }, + [61] = { 68.4, 27.6, 1519, 120 }, + [62] = { 30.3, 27, 1519, 180 }, + [63] = { 66.3, 26.6, 1519, 120 }, + [64] = { 30.3, 25.8, 1519, 180 }, + [65] = { 67.4, 25.7, 1519, 120 }, + [66] = { 27.2, 22.1, 1519, 180 }, + [67] = { 27.2, 21.1, 1519, 180 }, + [68] = { 34.8, 100, 5581, 180 }, + [69] = { 32.7, 99.5, 5581, 180 }, + [70] = { 39, 99.1, 5581, 180 }, + [71] = { 37.6, 99.1, 5581, 180 }, + [72] = { 32.7, 97.3, 5581, 180 }, + [73] = { 34.8, 96.7, 5581, 180 }, + [74] = { 32.7, 96.7, 5581, 180 }, + [75] = { 31.1, 96, 5581, 180 }, + [76] = { 36.6, 95.7, 5581, 180 }, + [77] = { 36.5, 95.5, 5581, 180 }, + [78] = { 32.7, 94.6, 5581, 180 }, + [79] = { 31.1, 94.6, 5581, 180 }, + [80] = { 32.8, 94, 5581, 180 }, + [81] = { 34.4, 93.9, 5581, 180 }, + [82] = { 34.2, 93.9, 5581, 180 }, + [83] = { 51.6, 93.5, 5581, 120 }, + [84] = { 52.5, 93.1, 5581, 120 }, + [85] = { 51.8, 93.1, 5581, 120 }, + [86] = { 51.7, 92.9, 5581, 120 }, + [87] = { 51.3, 92.7, 5581, 120 }, + [88] = { 53.2, 92.2, 5581, 120 }, + [89] = { 32.7, 91.8, 5581, 180 }, + [90] = { 52.1, 91.7, 5581, 120 }, + [91] = { 32.8, 91.2, 5581, 180 }, + [92] = { 52.7, 91.2, 5581, 120 }, + [93] = { 31.1, 89.2, 5581, 180 }, + [94] = { 31.1, 88.7, 5581, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [69] = { + ["coords"] = { + [1] = { 49.5, 49.3, 12, 270 }, + [2] = { 49.3, 47.5, 12, 270 }, + [3] = { 49, 47, 12, 270 }, + [4] = { 49.9, 46.6, 12, 270 }, + [5] = { 51.4, 45.6, 12, 270 }, + [6] = { 49.2, 45.4, 12, 270 }, + [7] = { 50.4, 44.9, 12, 270 }, + [8] = { 50.9, 44.1, 12, 270 }, + [9] = { 51.5, 43.7, 12, 270 }, + [10] = { 51.7, 43.1, 12, 270 }, + [11] = { 51.6, 42.4, 12, 270 }, + [12] = { 52.5, 42.2, 12, 270 }, + [13] = { 51.9, 41.6, 12, 270 }, + [14] = { 51.2, 40.4, 12, 270 }, + [15] = { 45.9, 40.3, 12, 270 }, + [16] = { 46.7, 39.4, 12, 270 }, + [17] = { 52.5, 39.1, 12, 270 }, + [18] = { 53.1, 38.7, 12, 270 }, + [19] = { 52.7, 38.4, 12, 270 }, + [20] = { 49.4, 37.8, 12, 270 }, + [21] = { 50.2, 37.4, 12, 270 }, + [22] = { 48.2, 37.4, 12, 270 }, + [23] = { 46.2, 36.7, 12, 270 }, + [24] = { 46, 36.4, 12, 270 }, + [25] = { 50.9, 35.7, 12, 270 }, + [26] = { 46.1, 35.5, 12, 270 }, + [27] = { 45.2, 35.2, 12, 270 }, + [28] = { 52.7, 35.1, 12, 270 }, + [29] = { 46.6, 35.1, 12, 270 }, + [30] = { 45.7, 35, 12, 270 }, + [31] = { 48.1, 34.9, 12, 270 }, + [32] = { 47, 34.5, 12, 270 }, + [33] = { 46.3, 34.4, 12, 270 }, + [34] = { 48.5, 33.7, 12, 270 }, + }, + ["lvl"] = "2", + }, + [70] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [71] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [73] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [75] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [76] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [77] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [79] = { + ["coords"] = { + [1] = { 40.9, 77.5, 12, 9000 }, + }, + ["lvl"] = "10", + ["rnk"] = "4", + }, + [80] = { + ["coords"] = { + [1] = { 47.8, 31.6, 12, 270 }, + [2] = { 47.9, 30.9, 12, 270 }, + [3] = { 47.5, 30.3, 12, 270 }, + [4] = { 48.4, 30.3, 12, 270 }, + [5] = { 48.1, 30.2, 12, 270 }, + [6] = { 47.4, 30.1, 12, 270 }, + [7] = { 48.4, 29.9, 12, 270 }, + [8] = { 48.4, 29.2, 12, 270 }, + [9] = { 48.6, 29.1, 12, 270 }, + [10] = { 49.2, 29, 12, 270 }, + [11] = { 48.3, 28.9, 12, 270 }, + [12] = { 48.2, 28.6, 12, 270 }, + [13] = { 49.3, 28.3, 12, 270 }, + [14] = { 48.5, 28.1, 12, 270 }, + [15] = { 49.2, 27.7, 12, 270 }, + [16] = { 48.6, 27.3, 12, 270 }, + [17] = { 50.1, 27, 12, 270 }, + [18] = { 50.5, 26.9, 12, 270 }, + [19] = { 50.3, 26.8, 12, 270 }, + [20] = { 48.5, 26.6, 12, 270 }, + [21] = { 48.9, 26.4, 12, 270 }, + [22] = { 50.2, 26.3, 12, 270 }, + [23] = { 49.5, 25.8, 12, 270 }, + [24] = { 50, 25.7, 12, 270 }, + }, + ["lvl"] = "3-4", + }, + [81] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [82] = "_", + [83] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [84] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [85] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [86] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [87] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [88] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [90] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [91] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [92] = { + ["coords"] = { + [1] = { 42.8, 88.2, 3, 300 }, + [2] = { 43, 86.3, 3, 300 }, + [3] = { 44.2, 85.8, 3, 300 }, + [4] = { 43.3, 84.2, 3, 300 }, + [5] = { 44.3, 83.9, 3, 300 }, + [6] = { 41.8, 83.7, 3, 300 }, + [7] = { 44.5, 82.3, 3, 300 }, + [8] = { 41.3, 82.2, 3, 300 }, + [9] = { 42.9, 82, 3, 300 }, + [10] = { 45.5, 81.4, 3, 300 }, + [11] = { 44.4, 80.6, 3, 300 }, + [12] = { 41, 79.3, 3, 300 }, + [13] = { 42.6, 78.4, 3, 300 }, + [14] = { 40.5, 78.3, 3, 300 }, + [15] = { 39, 77.8, 3, 300 }, + [16] = { 46.1, 77.6, 3, 300 }, + [17] = { 41.8, 77.1, 3, 300 }, + [18] = { 37.4, 75.9, 3, 300 }, + [19] = { 40.4, 75.8, 3, 300 }, + [20] = { 36.1, 75.7, 3, 300 }, + [21] = { 35.1, 75.4, 3, 300 }, + [22] = { 36.6, 74.1, 3, 300 }, + [23] = { 38.5, 73.5, 3, 300 }, + [24] = { 13.9, 36.3, 3, 300 }, + [25] = { 16.6, 36.1, 3, 300 }, + [26] = { 15, 35.3, 3, 300 }, + [27] = { 12, 34.3, 3, 300 }, + [28] = { 14.8, 33.9, 3, 300 }, + [29] = { 98.2, 16.4, 46, 300 }, + [30] = { 98.4, 14.8, 46, 300 }, + [31] = { 99.4, 14.4, 46, 300 }, + [32] = { 98.7, 13, 46, 300 }, + [33] = { 97.4, 12.6, 46, 300 }, + [34] = { 97, 11.3, 46, 300 }, + [35] = { 98.3, 11.2, 46, 300 }, + [36] = { 95, 7.6, 46, 300 }, + [37] = { 7.1, 99.6, 5602, 300 }, + [38] = { 5.7, 99.2, 5602, 300 }, + [39] = { 7, 99, 5602, 300 }, + [40] = { 6.3, 98.8, 5602, 300 }, + [41] = { 7.3, 98.2, 5602, 300 }, + }, + ["lvl"] = "39-40", + }, + [93] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [94] = { + ["coords"] = { + [1] = { 31.1, 67.2, 12, 270 }, + [2] = { 36.2, 66.8, 12, 270 }, + [3] = { 30.7, 66.5, 12, 270 }, + [4] = { 35.3, 66.2, 12, 270 }, + [5] = { 36.9, 66.2, 12, 270 }, + [6] = { 36.3, 65.9, 12, 270 }, + [7] = { 30.4, 65.9, 12, 270 }, + [8] = { 32, 65.7, 12, 270 }, + [9] = { 29.5, 65.4, 12, 270 }, + [10] = { 36.1, 58.2, 12, 270 }, + [11] = { 38.4, 57.9, 12, 270 }, + [12] = { 44.9, 57.2, 12, 270 }, + [13] = { 44.6, 56.7, 12, 270 }, + [14] = { 40.7, 56.3, 12, 270 }, + [15] = { 43.1, 56.1, 12, 270 }, + [16] = { 37.3, 55.2, 12, 270 }, + [17] = { 37.5, 55.2, 12, 270 }, + [18] = { 43.7, 55.2, 12, 270 }, + [19] = { 40, 55.2, 12, 270 }, + [20] = { 43.7, 55, 12, 270 }, + [21] = { 40.4, 54.9, 12, 270 }, + [22] = { 42.1, 54.4, 12, 270 }, + [23] = { 38.9, 54.3, 12, 270 }, + [24] = { 39.1, 54.2, 12, 270 }, + [25] = { 38.8, 54, 12, 270 }, + [26] = { 41, 54, 12, 270 }, + [27] = { 40.8, 53.8, 12, 270 }, + [28] = { 41.9, 53.7, 12, 270 }, + [29] = { 43.2, 53.5, 12, 270 }, + [30] = { 42, 53.4, 12, 270 }, + [31] = { 41.5, 52.8, 12, 270 }, + [32] = { 41.8, 52.8, 12, 270 }, + [33] = { 41.7, 52.7, 12, 270 }, + [34] = { 42.7, 52.1, 12, 270 }, + [35] = { 42.6, 52, 12, 270 }, + [36] = { 42.9, 51.1, 12, 270 }, + [37] = { 43.1, 51, 12, 270 }, + [38] = { 43.8, 50.8, 12, 270 }, + [39] = { 44, 50.5, 12, 270 }, + }, + ["lvl"] = "5-6", + }, + [95] = { + ["coords"] = { + [1] = { 46.6, 53.4, 40, 300 }, + [2] = { 46.7, 52.5, 40, 300 }, + [3] = { 48.6, 47.7, 40, 300 }, + [4] = { 50.6, 47.3, 40, 300 }, + [5] = { 50.7, 47.2, 40, 300 }, + [6] = { 48.2, 47, 40, 300 }, + [7] = { 51.4, 46.8, 40, 300 }, + [8] = { 48.2, 46.7, 40, 300 }, + [9] = { 51.6, 46.6, 40, 300 }, + [10] = { 48.2, 46.6, 40, 300 }, + [11] = { 49.5, 46.4, 40, 300 }, + [12] = { 47.2, 46.2, 40, 300 }, + [13] = { 47.8, 45.8, 40, 300 }, + [14] = { 48.5, 45.2, 40, 300 }, + [15] = { 48.5, 45.1, 40, 300 }, + [16] = { 47.7, 43.4, 40, 300 }, + [17] = { 41.1, 41.8, 40, 300 }, + [18] = { 41.5, 41.1, 40, 300 }, + [19] = { 40.8, 40.9, 40, 300 }, + [20] = { 50.3, 40.8, 40, 300 }, + [21] = { 41.4, 40.6, 40, 300 }, + [22] = { 41.8, 40.5, 40, 300 }, + [23] = { 51.2, 40.4, 40, 300 }, + [24] = { 50.8, 40.1, 40, 300 }, + [25] = { 46.3, 39.7, 40, 300 }, + [26] = { 45.8, 39.6, 40, 300 }, + [27] = { 40.8, 39.5, 40, 300 }, + [28] = { 51.1, 39.4, 40, 300 }, + [29] = { 50.6, 39.3, 40, 300 }, + [30] = { 46.2, 39.1, 40, 300 }, + [31] = { 46.1, 39.1, 40, 300 }, + [32] = { 46.8, 39.1, 40, 300 }, + [33] = { 46, 38.2, 40, 300 }, + [34] = { 46.6, 37.8, 40, 300 }, + [35] = { 46.5, 37.6, 40, 300 }, + [36] = { 46.4, 36.9, 40, 300 }, + [37] = { 47.4, 36.3, 40, 300 }, + [38] = { 46.6, 27.3, 40, 300 }, + [39] = { 45.3, 26.9, 40, 300 }, + [40] = { 43.9, 26.8, 40, 300 }, + [41] = { 46, 26.6, 40, 300 }, + [42] = { 44.7, 26.3, 40, 300 }, + [43] = { 44, 25.9, 40, 300 }, + [44] = { 44.2, 25.8, 40, 300 }, + [45] = { 44.7, 25.6, 40, 300 }, + [46] = { 45.9, 25.6, 40, 300 }, + [47] = { 43.9, 25.2, 40, 300 }, + [48] = { 44.9, 25.2, 40, 300 }, + [49] = { 44.6, 24.8, 40, 300 }, + [50] = { 44.5, 24.6, 40, 300 }, + [51] = { 44.7, 24, 40, 300 }, + [52] = { 44.1, 23.3, 40, 300 }, + [53] = { 44.8, 22.4, 40, 300 }, + [54] = { 44.8, 22, 40, 300 }, + [55] = { 45.5, 21.7, 40, 300 }, + [56] = { 44.5, 21.5, 40, 300 }, + [57] = { 45.3, 21.2, 40, 300 }, + [58] = { 45.5, 21, 40, 300 }, + [59] = { 48.7, 20.9, 40, 300 }, + [60] = { 48.8, 20.7, 40, 300 }, + [61] = { 45.7, 20.5, 40, 300 }, + [62] = { 48.8, 20.4, 40, 300 }, + [63] = { 48.4, 20.3, 40, 300 }, + [64] = { 48.4, 19.9, 40, 300 }, + [65] = { 49.8, 19.8, 40, 300 }, + [66] = { 46.6, 19.6, 40, 300 }, + [67] = { 46, 19.4, 40, 300 }, + [68] = { 44.7, 19.4, 40, 300 }, + [69] = { 48.3, 19.2, 40, 300 }, + [70] = { 49.4, 19.2, 40, 300 }, + [71] = { 46, 18.9, 40, 300 }, + [72] = { 50.1, 18.4, 40, 300 }, + [73] = { 45.5, 18.1, 40, 300 }, + }, + ["lvl"] = "11-12", + }, + [97] = { + ["coords"] = { + [1] = { 24.3, 93.6, 12, 270 }, + [2] = { 26.1, 91.7, 12, 270 }, + [3] = { 26.2, 91.7, 12, 270 }, + [4] = { 25.3, 89.3, 12, 270 }, + [5] = { 30.9, 89.1, 12, 270 }, + [6] = { 25.1, 88.9, 12, 270 }, + [7] = { 27.7, 88.3, 12, 270 }, + [8] = { 28.3, 87.4, 12, 270 }, + [9] = { 26.5, 86.6, 12, 270 }, + [10] = { 27.7, 86.6, 12, 270 }, + [11] = { 27.7, 86.1, 12, 270 }, + [12] = { 30.8, 82.8, 12, 270 }, + [13] = { 31.6, 80.6, 12, 270 }, + [14] = { 68.6, 46.5, 12, 270 }, + [15] = { 67.8, 46.4, 12, 270 }, + [16] = { 68.4, 45.3, 12, 270 }, + [17] = { 68.4, 44.9, 12, 270 }, + [18] = { 66.4, 41.3, 12, 270 }, + [19] = { 66.3, 40.6, 12, 270 }, + [20] = { 68.8, 39.5, 12, 270 }, + [21] = { 66.6, 39.4, 12, 270 }, + [22] = { 68.1, 39.4, 12, 270 }, + [23] = { 65.9, 39.3, 12, 270 }, + [24] = { 70.8, 39.2, 12, 270 }, + [25] = { 69.2, 39, 12, 270 }, + [26] = { 68.7, 38.2, 12, 270 }, + [27] = { 67.4, 26, 40, 270 }, + [28] = { 67.2, 25.6, 40, 270 }, + }, + ["lvl"] = "8-9", + }, + [99] = { + ["coords"] = { + [1] = { 30.8, 64.7, 12, 9000 }, + }, + ["lvl"] = "10", + ["rnk"] = "4", + }, + [100] = { + ["coords"] = { + [1] = { 25.4, 89.8, 12, 9000 }, + }, + ["lvl"] = "12", + ["rnk"] = "4", + }, + [101] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [102] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [103] = { + ["coords"] = { + [1] = { 57.5, 48.3, 12, 120 }, + }, + ["lvl"] = "5", + }, + [104] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [105] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [106] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [107] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [108] = "_", + [109] = "_", + [111] = "_", + [112] = "_", + [113] = { + ["coords"] = { + [1] = { 40.9, 91.9, 12, 270 }, + [2] = { 36.2, 91.3, 12, 270 }, + [3] = { 39.6, 90.8, 12, 270 }, + [4] = { 37.8, 90.7, 12, 270 }, + [5] = { 38.8, 90.1, 12, 270 }, + [6] = { 37.4, 89.9, 12, 270 }, + [7] = { 40.8, 89.9, 12, 270 }, + [8] = { 35.2, 89.8, 12, 270 }, + [9] = { 33.3, 89.7, 12, 270 }, + [10] = { 33.8, 89.4, 12, 270 }, + [11] = { 38.1, 89.2, 12, 270 }, + [12] = { 37, 88.6, 12, 270 }, + [13] = { 39.7, 88.5, 12, 270 }, + [14] = { 41, 88.3, 12, 270 }, + [15] = { 41.8, 88.1, 12, 270 }, + [16] = { 35.3, 87.8, 12, 270 }, + [17] = { 41, 86.8, 12, 270 }, + [18] = { 32, 86.6, 12, 270 }, + [19] = { 33.4, 86.6, 12, 270 }, + [20] = { 42.9, 86.6, 12, 270 }, + [21] = { 41.8, 86.5, 12, 270 }, + [22] = { 38.6, 86.2, 12, 270 }, + [23] = { 31.5, 86, 12, 270 }, + [24] = { 31.9, 85.9, 12, 270 }, + [25] = { 41.6, 85.8, 12, 270 }, + [26] = { 33.4, 85.1, 12, 270 }, + [27] = { 41, 85, 12, 270 }, + [28] = { 30.9, 84.1, 12, 270 }, + [29] = { 32.2, 83.9, 12, 270 }, + [30] = { 31.3, 82.6, 12, 270 }, + [31] = { 32.4, 81.4, 12, 270 }, + [32] = { 34, 81.3, 12, 270 }, + [33] = { 31.1, 81, 12, 270 }, + [34] = { 33, 80.2, 12, 270 }, + [35] = { 31.7, 80.1, 12, 270 }, + [36] = { 38.8, 78.6, 12, 270 }, + [37] = { 41.7, 77.7, 12, 270 }, + [38] = { 37.1, 76.8, 12, 270 }, + [39] = { 39, 76.8, 12, 270 }, + [40] = { 38.1, 75.4, 12, 270 }, + [41] = { 41, 75.3, 12, 270 }, + [42] = { 41.8, 75.3, 12, 270 }, + [43] = { 42.6, 73.2, 12, 270 }, + [44] = { 43.7, 72.3, 12, 270 }, + [45] = { 42.7, 71.5, 12, 270 }, + [46] = { 37.6, 70.8, 12, 270 }, + [47] = { 40.6, 70.7, 12, 270 }, + [48] = { 39.9, 69.7, 12, 270 }, + [49] = { 40.9, 69.5, 12, 270 }, + [50] = { 41.8, 69.5, 12, 270 }, + [51] = { 44.1, 69.4, 12, 270 }, + [52] = { 38.8, 68.7, 12, 270 }, + }, + ["lvl"] = "5-6", + }, + [114] = { + ["coords"] = { + [1] = { 39, 54.8, 40, 300 }, + [2] = { 38, 53.5, 40, 300 }, + [3] = { 39.9, 53.5, 40, 300 }, + [4] = { 37.1, 52.3, 40, 300 }, + [5] = { 40.8, 52.2, 40, 300 }, + [6] = { 39.1, 52.1, 40, 300 }, + [7] = { 40, 51, 40, 300 }, + [8] = { 36.1, 50.8, 40, 300 }, + [9] = { 38.1, 50.8, 40, 300 }, + [10] = { 37.4, 49.3, 40, 300 }, + [11] = { 39, 49.3, 40, 300 }, + [12] = { 38, 47.8, 40, 300 }, + [13] = { 44.7, 38, 40, 300 }, + [14] = { 43.8, 36.5, 40, 300 }, + [15] = { 45.9, 36.1, 40, 300 }, + [16] = { 43, 36, 40, 300 }, + [17] = { 53.9, 35.2, 40, 300 }, + [18] = { 43.7, 35.1, 40, 300 }, + [19] = { 46.9, 35.1, 40, 300 }, + [20] = { 55.3, 33.7, 40, 300 }, + [21] = { 53.3, 33.6, 40, 300 }, + [22] = { 45, 33.3, 40, 300 }, + [23] = { 45.6, 33.2, 40, 300 }, + [24] = { 52.2, 32.4, 40, 300 }, + [25] = { 54.4, 32.2, 40, 300 }, + [26] = { 54, 31, 40, 300 }, + [27] = { 53.2, 30.6, 40, 300 }, + [28] = { 51.5, 24.9, 40, 300 }, + [29] = { 52, 23.4, 40, 300 }, + [30] = { 51, 23.2, 40, 300 }, + [31] = { 53, 23.1, 40, 300 }, + [32] = { 50.1, 22.6, 40, 300 }, + [33] = { 51.7, 21.7, 40, 300 }, + [34] = { 49.9, 21.3, 40, 300 }, + [35] = { 51.1, 20.1, 40, 300 }, + }, + ["lvl"] = "14-15", + }, + [115] = { + ["coords"] = { + [1] = { 65.6, 62.1, 40, 300 }, + [2] = { 61.6, 62, 40, 300 }, + [3] = { 64.6, 61.9, 40, 300 }, + [4] = { 63.6, 61.4, 40, 300 }, + [5] = { 65.7, 61.1, 40, 300 }, + [6] = { 60.9, 60.9, 40, 300 }, + [7] = { 65, 60.3, 40, 300 }, + [8] = { 62.3, 59.2, 40, 300 }, + [9] = { 63, 57.7, 40, 300 }, + }, + ["lvl"] = "17-18", + }, + [116] = { + ["coords"] = { + [1] = { 46.6, 85.5, 12, 270 }, + [2] = { 49.7, 83.8, 12, 270 }, + [3] = { 48.7, 83.3, 12, 270 }, + [4] = { 50.5, 83.1, 12, 270 }, + [5] = { 47.8, 83.1, 12, 270 }, + [6] = { 50.6, 83, 12, 270 }, + [7] = { 46.8, 83, 12, 270 }, + [8] = { 68.4, 82, 12, 270 }, + [9] = { 70.7, 81.5, 12, 270 }, + [10] = { 47.5, 81.2, 12, 270 }, + [11] = { 49.7, 80.9, 12, 270 }, + [12] = { 68.1, 80.5, 12, 270 }, + [13] = { 89.4, 80.2, 12, 270 }, + [14] = { 88.8, 80, 12, 270 }, + [15] = { 90, 80, 12, 270 }, + [16] = { 89.6, 79.3, 12, 270 }, + [17] = { 89.2, 79.2, 12, 270 }, + [18] = { 90.2, 79.1, 12, 270 }, + [19] = { 70.7, 78.9, 12, 270 }, + [20] = { 89.9, 78.2, 12, 270 }, + [21] = { 88.8, 78.2, 12, 270 }, + [22] = { 67.7, 78, 12, 270 }, + [23] = { 68.3, 77.7, 12, 270 }, + [24] = { 68.5, 77.4, 12, 270 }, + [25] = { 71.3, 76.7, 12, 270 }, + [26] = { 68.6, 76.7, 12, 270 }, + [27] = { 45.6, 76.2, 12, 270 }, + [28] = { 46.3, 75.4, 12, 270 }, + [29] = { 44.4, 74.9, 12, 270 }, + [30] = { 47.5, 74.1, 12, 270 }, + [31] = { 45.9, 73.8, 12, 270 }, + [32] = { 30.9, 65.2, 12, 270 }, + [33] = { 31.2, 65.1, 12, 270 }, + [34] = { 30.6, 65, 12, 270 }, + [35] = { 30.7, 64.9, 12, 270 }, + [36] = { 31.3, 64.9, 12, 270 }, + [37] = { 30.2, 64.7, 12, 270 }, + [38] = { 30.3, 64.5, 12, 270 }, + [39] = { 55.3, 59.9, 12, 270 }, + [40] = { 28.6, 59.8, 12, 270 }, + [41] = { 52.2, 59.4, 12, 270 }, + [42] = { 52.1, 59.2, 12, 270 }, + [43] = { 52.5, 59.1, 12, 270 }, + [44] = { 29.1, 58.9, 12, 270 }, + [45] = { 29.2, 58.3, 12, 270 }, + [46] = { 29.9, 58.2, 12, 270 }, + [47] = { 31, 57.5, 12, 270 }, + }, + ["lvl"] = "8-9", + }, + [117] = { + ["coords"] = { + [1] = { 40.8, 22, 40, 300 }, + [2] = { 42, 20.9, 40, 300 }, + [3] = { 41, 20.7, 40, 300 }, + [4] = { 42.3, 19.9, 40, 300 }, + [5] = { 41.7, 19.4, 40, 300 }, + [6] = { 45.6, 16.6, 40, 300 }, + [7] = { 43.9, 16.6, 40, 300 }, + [8] = { 44.6, 16.2, 40, 300 }, + [9] = { 46.4, 15.1, 40, 300 }, + [10] = { 51.9, 15.1, 40, 300 }, + [11] = { 42.9, 14.9, 40, 300 }, + [12] = { 44.6, 14.8, 40, 300 }, + [13] = { 52.1, 14.8, 40, 300 }, + [14] = { 45, 14.3, 40, 300 }, + [15] = { 57.2, 14.2, 40, 300 }, + [16] = { 44.7, 14.2, 40, 300 }, + [17] = { 52.2, 14.1, 40, 300 }, + [18] = { 52.3, 14.1, 40, 300 }, + [19] = { 44.9, 14, 40, 300 }, + [20] = { 44.7, 13.9, 40, 300 }, + [21] = { 45, 13.7, 40, 300 }, + [22] = { 44.9, 13.6, 40, 300 }, + [23] = { 56.3, 13.6, 40, 300 }, + [24] = { 56.5, 13.5, 40, 300 }, + [25] = { 57.9, 13.4, 40, 300 }, + [26] = { 56.3, 13.4, 40, 300 }, + [27] = { 57.9, 13.2, 40, 300 }, + [28] = { 45.3, 13.1, 40, 300 }, + [29] = { 56.9, 13, 40, 300 }, + [30] = { 56.6, 13, 40, 300 }, + [31] = { 56.3, 12.7, 40, 300 }, + [32] = { 45, 12.6, 40, 300 }, + [33] = { 56.5, 12.6, 40, 300 }, + }, + ["lvl"] = "11-12", + }, + [118] = { + ["coords"] = { + [1] = { 83, 85.5, 12, 270 }, + [2] = { 85.6, 85.5, 12, 270 }, + [3] = { 83.6, 84.1, 12, 270 }, + [4] = { 82.2, 84, 12, 270 }, + [5] = { 85.5, 83.9, 12, 270 }, + [6] = { 80.2, 83.2, 12, 270 }, + [7] = { 85, 82.9, 12, 270 }, + [8] = { 79.2, 82.8, 12, 270 }, + [9] = { 81.3, 82.5, 12, 270 }, + [10] = { 87.4, 81.8, 12, 270 }, + [11] = { 80.1, 81.8, 12, 270 }, + [12] = { 80.4, 81.7, 12, 270 }, + [13] = { 90.4, 81.7, 12, 270 }, + [14] = { 87.6, 81.3, 12, 270 }, + [15] = { 80.8, 81.2, 12, 270 }, + [16] = { 80.3, 81.1, 12, 270 }, + [17] = { 80.6, 80.2, 12, 270 }, + [18] = { 79.3, 79.7, 12, 270 }, + [19] = { 91.2, 79.4, 12, 270 }, + [20] = { 87.1, 79.4, 12, 270 }, + [21] = { 80.6, 78.8, 12, 270 }, + [22] = { 87.9, 78.3, 12, 270 }, + [23] = { 80.3, 78.2, 12, 270 }, + [24] = { 80.3, 78.1, 12, 270 }, + [25] = { 77.9, 77.9, 12, 270 }, + [26] = { 81.5, 77.9, 12, 270 }, + [27] = { 76.2, 77.9, 12, 270 }, + [28] = { 82.1, 77.6, 12, 270 }, + [29] = { 87.1, 77.4, 12, 270 }, + [30] = { 88.8, 77.4, 12, 270 }, + [31] = { 90.3, 77.4, 12, 270 }, + [32] = { 77.3, 76.5, 12, 270 }, + [33] = { 79.1, 76.3, 12, 270 }, + [34] = { 75.6, 76, 12, 270 }, + [35] = { 76.2, 76, 12, 270 }, + [36] = { 89.6, 75, 12, 270 }, + [37] = { 77.4, 74.5, 12, 270 }, + [38] = { 75.5, 74.2, 12, 270 }, + [39] = { 85.9, 72.3, 12, 270 }, + [40] = { 88, 72.1, 12, 270 }, + [41] = { 83.8, 72, 12, 270 }, + [42] = { 88.4, 70.9, 12, 270 }, + [43] = { 87.1, 69.2, 12, 270 }, + [44] = { 87.3, 68.8, 12, 270 }, + [45] = { 88.7, 68.6, 12, 270 }, + [46] = { 87.4, 68.5, 12, 270 }, + [47] = { 86.9, 66.1, 12, 270 }, + [48] = { 72.3, 65.8, 12, 270 }, + [49] = { 71.8, 65.3, 12, 270 }, + [50] = { 72.4, 65.2, 12, 270 }, + [51] = { 72.3, 64.8, 12, 270 }, + [52] = { 86.4, 64.2, 12, 270 }, + [53] = { 86.4, 63.8, 12, 270 }, + [54] = { 87.8, 63.8, 12, 270 }, + [55] = { 76.2, 63.3, 12, 270 }, + [56] = { 78.4, 62.7, 12, 270 }, + [57] = { 79.3, 62.2, 12, 270 }, + [58] = { 85, 62, 12, 270 }, + [59] = { 85.1, 62, 12, 270 }, + [60] = { 77.7, 61.7, 12, 270 }, + [61] = { 85.9, 61.3, 12, 270 }, + [62] = { 84.6, 61.2, 12, 270 }, + [63] = { 80, 60.7, 12, 270 }, + [64] = { 81.9, 60.7, 12, 270 }, + [65] = { 78, 60.7, 12, 270 }, + [66] = { 83.2, 59.7, 12, 270 }, + [67] = { 66.6, 45.2, 12, 270 }, + [68] = { 65.4, 43.3, 12, 270 }, + [69] = { 70.5, 41.9, 12, 270 }, + [70] = { 77.5, 40.9, 12, 270 }, + [71] = { 78.9, 40.9, 12, 270 }, + [72] = { 69.9, 40.8, 12, 270 }, + [73] = { 76.6, 40.6, 12, 270 }, + [74] = { 72.1, 40.5, 12, 270 }, + [75] = { 73.7, 40.5, 12, 270 }, + [76] = { 75.2, 40.4, 12, 270 }, + [77] = { 73.6, 40, 12, 270 }, + [78] = { 75.2, 39.7, 12, 270 }, + [79] = { 70.3, 39.6, 12, 270 }, + [80] = { 73.6, 38.1, 12, 270 }, + [81] = { 74.2, 37.7, 12, 270 }, + [82] = { 71.4, 37.5, 12, 270 }, + [83] = { 75.4, 37.3, 12, 270 }, + [84] = { 2.8, 83.1, 44, 270 }, + }, + ["lvl"] = "9-10", + }, + [119] = { + ["coords"] = { + [1] = { 24.6, 88.5, 12, 300 }, + [2] = { 24.7, 87, 12, 300 }, + [3] = { 25, 85.8, 12, 300 }, + [4] = { 25, 84.8, 12, 300 }, + [5] = { 24.3, 83.7, 12, 300 }, + [6] = { 24.3, 82.7, 12, 300 }, + [7] = { 26.4, 82.3, 12, 300 }, + [8] = { 25.5, 82.2, 12, 300 }, + [9] = { 25.7, 79.8, 12, 300 }, + [10] = { 66.7, 25.2, 40, 300 }, + [11] = { 66.8, 23.7, 40, 300 }, + [12] = { 67.1, 22.5, 40, 300 }, + }, + ["lvl"] = "10-11", + }, + [120] = "_", + [121] = { + ["coords"] = { + [1] = { 46.2, 79.2, 40, 300 }, + [2] = { 50.4, 78.5, 40, 300 }, + [3] = { 49.3, 77.3, 40, 300 }, + [4] = { 36, 76.9, 40, 300 }, + [5] = { 37.4, 75.7, 40, 300 }, + [6] = { 37.4, 75.4, 40, 300 }, + [7] = { 37, 75.2, 40, 300 }, + [8] = { 51.2, 75.2, 40, 300 }, + [9] = { 52.8, 73.5, 40, 300 }, + [10] = { 38.7, 69.9, 40, 300 }, + [11] = { 39, 69.4, 40, 300 }, + [12] = { 87.3, 64.4, 1581, 300 }, + [13] = { 8.3, 46.7, 1581, 300 }, + [14] = { 18.7, 37.1, 1581, 300 }, + [15] = { 19.1, 34.7, 1581, 300 }, + [16] = { 15.8, 33.4, 1581, 300 }, + }, + ["lvl"] = "15-16", + }, + [122] = { + ["coords"] = { + [1] = { 37.1, 82.5, 40, 300 }, + [2] = { 36.8, 82.4, 40, 300 }, + [3] = { 37.1, 82, 40, 300 }, + [4] = { 38, 81.3, 40, 300 }, + [5] = { 46.9, 81.1, 40, 300 }, + [6] = { 38.1, 80.6, 40, 300 }, + [7] = { 42.1, 80.5, 40, 300 }, + [8] = { 37.1, 80.5, 40, 300 }, + [9] = { 37.4, 80.4, 40, 300 }, + [10] = { 43.3, 79.7, 40, 300 }, + [11] = { 41, 79.5, 40, 300 }, + [12] = { 39, 79.3, 40, 300 }, + [13] = { 53.1, 79.1, 40, 300 }, + [14] = { 53.3, 79, 40, 300 }, + [15] = { 53, 78.7, 40, 300 }, + [16] = { 52.7, 78.4, 40, 300 }, + [17] = { 46.4, 78.3, 40, 300 }, + [18] = { 48.1, 77.2, 40, 300 }, + [19] = { 51.7, 77.2, 40, 300 }, + [20] = { 49.4, 76.6, 40, 300 }, + [21] = { 52.2, 75.3, 40, 300 }, + [22] = { 50.8, 75.2, 40, 300 }, + [23] = { 52.6, 73.8, 40, 300 }, + [24] = { 52.1, 72.9, 40, 300 }, + [25] = { 60.1, 59.9, 40, 300 }, + [26] = { 60.5, 59.3, 40, 300 }, + [27] = { 60.7, 58.8, 40, 300 }, + [28] = { 61.4, 58.6, 40, 300 }, + [29] = { 60.8, 58.2, 40, 120 }, + [30] = { 61.1, 58, 40, 300 }, + [31] = { 16.7, 90.2, 1581, 300 }, + [32] = { 14.5, 89.2, 1581, 300 }, + [33] = { 16.3, 86.3, 1581, 300 }, + [34] = { 23.8, 80.4, 1581, 300 }, + [35] = { 93, 79.2, 1581, 300 }, + [36] = { 24.4, 75.6, 1581, 300 }, + [37] = { 55.2, 74.7, 1581, 300 }, + [38] = { 16.5, 74.3, 1581, 300 }, + [39] = { 18.7, 73.8, 1581, 300 }, + [40] = { 64.9, 68.5, 1581, 300 }, + [41] = { 47.1, 66.4, 1581, 300 }, + [42] = { 31.6, 65.2, 1581, 300 }, + [43] = { 88.9, 57.3, 1581, 300 }, + }, + ["lvl"] = "17-18", + }, + [123] = { + ["coords"] = { + [1] = { 32.5, 73.7, 40, 300 }, + [2] = { 31.8, 73.4, 40, 300 }, + [3] = { 31.5, 72.4, 40, 300 }, + [4] = { 31.6, 72.3, 40, 300 }, + [5] = { 32.3, 72.2, 40, 300 }, + [6] = { 31.3, 72.1, 40, 300 }, + [7] = { 31.5, 72.1, 40, 300 }, + [8] = { 31.3, 70.6, 40, 300 }, + [9] = { 31, 69.6, 40, 300 }, + [10] = { 32.8, 68.4, 40, 300 }, + [11] = { 32.8, 68, 40, 300 }, + [12] = { 29.9, 66.3, 40, 300 }, + [13] = { 29.2, 66.1, 40, 300 }, + [14] = { 29.2, 65.5, 40, 300 }, + [15] = { 29.4, 65.4, 40, 300 }, + [16] = { 28.6, 65.4, 40, 300 }, + [17] = { 29.5, 65.3, 40, 300 }, + [18] = { 29.1, 65.3, 40, 300 }, + [19] = { 28.9, 64.7, 40, 300 }, + [20] = { 29.8, 63.8, 40, 300 }, + [21] = { 35.9, 61.6, 40, 300 }, + [22] = { 35.5, 61.5, 40, 300 }, + [23] = { 35.8, 61.1, 40, 300 }, + [24] = { 29.9, 59.6, 40, 300 }, + [25] = { 30.3, 58.1, 40, 300 }, + [26] = { 30.6, 58, 40, 300 }, + [27] = { 30.3, 57.9, 40, 300 }, + [28] = { 30.4, 57.9, 40, 300 }, + [29] = { 30.4, 57.7, 40, 300 }, + [30] = { 30.3, 57.5, 40, 300 }, + [31] = { 30, 56.6, 40, 300 }, + [32] = { 30.4, 53.7, 40, 300 }, + [33] = { 30.4, 52.4, 40, 300 }, + [34] = { 31.6, 52.3, 40, 300 }, + [35] = { 29.6, 52.3, 40, 300 }, + [36] = { 30.7, 52.1, 40, 300 }, + [37] = { 30.4, 52, 40, 300 }, + [38] = { 30.7, 51.8, 40, 300 }, + [39] = { 30.5, 51.7, 40, 300 }, + [40] = { 31.5, 50.8, 40, 300 }, + [41] = { 29.6, 50.8, 40, 300 }, + [42] = { 30.5, 50.7, 40, 300 }, + [43] = { 29.8, 50.7, 40, 300 }, + [44] = { 30.2, 49.9, 40, 300 }, + [45] = { 30.1, 49.8, 40, 300 }, + [46] = { 29.5, 49.7, 40, 300 }, + [47] = { 30.4, 49.6, 40, 300 }, + [48] = { 30.1, 49.4, 40, 300 }, + [49] = { 30.2, 49.3, 40, 300 }, + [50] = { 31.3, 49, 40, 300 }, + [51] = { 29.8, 48.1, 40, 300 }, + [52] = { 30.4, 48, 40, 300 }, + [53] = { 37.5, 34.1, 40, 300 }, + [54] = { 36.6, 32.1, 40, 300 }, + [55] = { 36.8, 32, 40, 300 }, + [56] = { 35.5, 31.8, 40, 300 }, + [57] = { 39.1, 31.7, 40, 300 }, + [58] = { 36.8, 31.7, 40, 300 }, + [59] = { 36.6, 31.6, 40, 300 }, + [60] = { 32.8, 29.4, 40, 300 }, + [61] = { 38.1, 28.5, 40, 300 }, + [62] = { 34.3, 27.3, 40, 300 }, + [63] = { 34.2, 26.9, 40, 300 }, + [64] = { 34.4, 26.8, 40, 300 }, + [65] = { 34.3, 26.6, 40, 300 }, + [66] = { 33.9, 26.4, 40, 300 }, + [67] = { 34.1, 25.7, 40, 300 }, + }, + ["lvl"] = "13-14", + }, + [124] = { + ["coords"] = { + [1] = { 64.9, 73.2, 40, 300 }, + [2] = { 31.2, 72.9, 40, 300 }, + [3] = { 31.3, 72.4, 40, 300 }, + [4] = { 31.5, 71.3, 40, 300 }, + [5] = { 57.3, 70.5, 40, 300 }, + [6] = { 30.7, 69.8, 40, 300 }, + [7] = { 31.2, 69.4, 40, 300 }, + [8] = { 31, 69.3, 40, 300 }, + [9] = { 32.8, 69.1, 40, 300 }, + [10] = { 32.2, 69, 40, 300 }, + [11] = { 32.6, 68.5, 40, 300 }, + [12] = { 32.5, 68.5, 40, 300 }, + [13] = { 32.5, 68.3, 40, 300 }, + [14] = { 32.6, 68.2, 40, 300 }, + [15] = { 30.4, 67.8, 40, 300 }, + [16] = { 31.3, 67.7, 40, 300 }, + [17] = { 52.1, 63.1, 40, 300 }, + [18] = { 52.9, 62.8, 40, 300 }, + [19] = { 48.6, 62.4, 40, 300 }, + [20] = { 53, 62.3, 40, 300 }, + [21] = { 49.5, 62, 40, 300 }, + [22] = { 48.2, 61.9, 40, 300 }, + [23] = { 48.2, 60.9, 40, 300 }, + [24] = { 48.3, 60.8, 40, 300 }, + [25] = { 53.3, 60.8, 40, 300 }, + [26] = { 29, 49.1, 40, 300 }, + }, + ["lvl"] = "15-16", + }, + [125] = { + ["coords"] = { + [1] = { 60.9, 77.8, 40, 300 }, + [2] = { 63.5, 77.6, 40, 300 }, + }, + ["lvl"] = "19", + }, + [126] = { + ["coords"] = { + [1] = { 33.9, 16.7, 40, 300 }, + [2] = { 42.5, 12.3, 40, 300 }, + [3] = { 42.7, 12.3, 40, 300 }, + [4] = { 42, 12.1, 40, 300 }, + [5] = { 43, 11.7, 40, 300 }, + [6] = { 42.2, 11.5, 40, 300 }, + [7] = { 42.5, 11.4, 40, 300 }, + [8] = { 53.7, 11.3, 40, 300 }, + [9] = { 53, 11.3, 40, 300 }, + [10] = { 53.2, 11.1, 40, 300 }, + [11] = { 53.2, 10.6, 40, 300 }, + [12] = { 52.2, 10.3, 40, 300 }, + [13] = { 41.2, 10.2, 40, 300 }, + [14] = { 55.3, 10.1, 40, 300 }, + [15] = { 47.4, 9.9, 40, 300 }, + [16] = { 42, 9.7, 40, 300 }, + [17] = { 53.9, 9.6, 40, 300 }, + [18] = { 56.3, 9.6, 40, 300 }, + [19] = { 52.7, 9.6, 40, 300 }, + [20] = { 54.1, 9.6, 40, 300 }, + [21] = { 55.3, 9.5, 40, 300 }, + [22] = { 47.4, 9.4, 40, 300 }, + [23] = { 52, 9.3, 40, 300 }, + [24] = { 43.5, 9.2, 40, 300 }, + [25] = { 42.8, 9, 40, 300 }, + [26] = { 55.7, 8.9, 40, 300 }, + [27] = { 45, 8.9, 40, 300 }, + [28] = { 53.1, 8.9, 40, 300 }, + [29] = { 56.5, 8.8, 40, 300 }, + [30] = { 44.5, 8.8, 40, 300 }, + [31] = { 55.7, 8.6, 40, 300 }, + [32] = { 55.8, 8.2, 40, 300 }, + [33] = { 45.4, 8.2, 40, 300 }, + [34] = { 43, 8.2, 40, 300 }, + [35] = { 44.9, 8.2, 40, 300 }, + [36] = { 43.2, 8.1, 40, 300 }, + [37] = { 45, 8.1, 40, 300 }, + [38] = { 55.6, 8, 40, 300 }, + [39] = { 43.9, 7.9, 40, 300 }, + [40] = { 44.7, 7.9, 40, 300 }, + [41] = { 44.8, 7.7, 40, 300 }, + [42] = { 55.9, 7.6, 40, 300 }, + [43] = { 55.7, 7.3, 40, 300 }, + }, + ["lvl"] = "12-13", + }, + [127] = { + ["coords"] = { + [1] = { 34.1, 86.3, 40, 300 }, + [2] = { 34.6, 86.2, 40, 300 }, + [3] = { 34.5, 85.9, 40, 300 }, + [4] = { 35, 85.4, 40, 300 }, + [5] = { 34.6, 85.3, 40, 300 }, + [6] = { 35.1, 85.3, 40, 300 }, + [7] = { 33.9, 84.8, 40, 300 }, + [8] = { 34.9, 84.5, 40, 300 }, + [9] = { 34.6, 84.3, 40, 300 }, + [10] = { 35.3, 84.2, 40, 300 }, + [11] = { 34.8, 84.2, 40, 300 }, + [12] = { 28, 75.7, 40, 300 }, + [13] = { 27.3, 75.5, 40, 300 }, + [14] = { 26.5, 74.8, 40, 300 }, + [15] = { 27.9, 74.5, 40, 300 }, + [16] = { 26.1, 74.4, 40, 300 }, + [17] = { 27.2, 74.4, 40, 300 }, + [18] = { 25.5, 74, 40, 300 }, + [19] = { 26.6, 73.8, 40, 300 }, + [20] = { 25.9, 73.7, 40, 300 }, + [21] = { 26.1, 73.7, 40, 300 }, + [22] = { 26.8, 73.2, 40, 300 }, + [23] = { 28, 73.1, 40, 300 }, + [24] = { 26, 72.2, 40, 300 }, + [25] = { 26.8, 72.1, 40, 300 }, + [26] = { 26.6, 72, 40, 300 }, + [27] = { 27.1, 71.7, 40, 300 }, + [28] = { 26.2, 71.7, 40, 300 }, + [29] = { 28.4, 70.3, 40, 300 }, + [30] = { 26.8, 70.2, 40, 300 }, + [31] = { 27.7, 70, 40, 300 }, + [32] = { 28.2, 69.3, 40, 300 }, + [33] = { 28, 69.2, 40, 300 }, + [34] = { 28.2, 69, 40, 300 }, + [35] = { 27.7, 68.8, 40, 300 }, + [36] = { 23.7, 57.1, 40, 300 }, + [37] = { 99.8, 6.4, 409, 300 }, + [38] = { 99, 6.2, 409, 300 }, + [39] = { 98, 5.3, 409, 300 }, + [40] = { 99.7, 5, 409, 300 }, + [41] = { 97.6, 4.9, 409, 300 }, + [42] = { 98.8, 4.8, 409, 300 }, + [43] = { 96.8, 4.4, 409, 300 }, + [44] = { 98.2, 4.1, 409, 300 }, + [45] = { 97.3, 4, 409, 300 }, + [46] = { 97.5, 3.9, 409, 300 }, + [47] = { 98.4, 3.3, 409, 300 }, + [48] = { 99.9, 3.2, 409, 300 }, + [49] = { 97.4, 2.2, 409, 300 }, + [50] = { 98.4, 2.1, 409, 300 }, + [51] = { 98.1, 1.9, 409, 300 }, + [52] = { 98.7, 1.6, 409, 300 }, + [53] = { 97.7, 1.5, 409, 300 }, + }, + ["lvl"] = "18-19", + }, + [129] = "_", + [130] = "_", + [149] = "_", + [150] = "_", + [153] = "_", + [154] = { + ["coords"] = { + [1] = { 58.8, 64.2, 40, 300 }, + [2] = { 59.4, 62.7, 40, 300 }, + [3] = { 62.6, 60.6, 40, 300 }, + [4] = { 58.7, 60.4, 40, 300 }, + [5] = { 59.1, 59.3, 40, 300 }, + [6] = { 63.9, 55.1, 40, 300 }, + [7] = { 61.1, 54.8, 40, 300 }, + [8] = { 59.4, 52.3, 40, 300 }, + [9] = { 62.7, 50.6, 40, 300 }, + [10] = { 61.9, 49.2, 40, 300 }, + [11] = { 26.6, 44.1, 40, 300 }, + [12] = { 26.4, 42.6, 40, 300 }, + [13] = { 27.1, 42.4, 40, 300 }, + }, + ["lvl"] = "16-17", + }, + [157] = { + ["coords"] = { + [1] = { 35.7, 80.8, 40, 300 }, + [2] = { 34.7, 79.4, 40, 300 }, + [3] = { 31.7, 78.1, 40, 300 }, + [4] = { 34.3, 77.8, 40, 300 }, + [5] = { 31.7, 75.9, 40, 300 }, + [6] = { 37.3, 72, 40, 300 }, + [7] = { 35.2, 69.3, 40, 300 }, + [8] = { 38.1, 66.3, 40, 300 }, + [9] = { 53.9, 64.9, 40, 300 }, + [10] = { 42.3, 64.1, 40, 300 }, + [11] = { 56.1, 63.7, 40, 300 }, + [12] = { 37.2, 63.7, 40, 300 }, + [13] = { 47.2, 62.2, 40, 300 }, + [14] = { 43.7, 62.2, 40, 300 }, + [15] = { 45.3, 62.1, 40, 300 }, + [16] = { 39.4, 60.9, 40, 300 }, + [17] = { 51.4, 60.6, 40, 300 }, + [18] = { 37.2, 60.2, 40, 300 }, + [19] = { 57.1, 59.2, 40, 300 }, + [20] = { 44.6, 59.1, 40, 300 }, + [21] = { 54.1, 59, 40, 300 }, + [22] = { 51.2, 59, 40, 300 }, + [23] = { 35.4, 58, 40, 300 }, + [24] = { 41.3, 57.6, 40, 300 }, + [25] = { 49.5, 57.5, 40, 300 }, + [26] = { 45.6, 57.4, 40, 300 }, + [27] = { 44.7, 56.9, 40, 300 }, + [28] = { 46.4, 56, 40, 300 }, + [29] = { 45.6, 55.4, 40, 300 }, + [30] = { 48.3, 52.6, 40, 300 }, + [31] = { 43.9, 52.2, 40, 300 }, + [32] = { 46.3, 51.8, 40, 300 }, + [33] = { 45.1, 50.5, 40, 300 }, + [34] = { 44.8, 49.2, 40, 300 }, + [35] = { 43, 48.9, 40, 300 }, + [36] = { 60.9, 47.7, 40, 300 }, + [37] = { 60.1, 45.5, 40, 300 }, + [38] = { 44.4, 45.1, 40, 300 }, + [39] = { 61.3, 45, 40, 300 }, + [40] = { 40.9, 44.8, 40, 300 }, + [41] = { 59.7, 44.6, 40, 300 }, + [42] = { 59.1, 43.6, 40, 300 }, + [43] = { 42.9, 43.6, 40, 300 }, + [44] = { 38.1, 42.5, 40, 300 }, + [45] = { 59.8, 42.5, 40, 300 }, + [46] = { 37.8, 41, 40, 300 }, + [47] = { 40.8, 39.8, 40, 300 }, + [48] = { 44, 39.6, 40, 300 }, + [49] = { 41.9, 38.8, 40, 300 }, + [50] = { 33.6, 37.9, 40, 300 }, + [51] = { 35.4, 36.6, 40, 300 }, + [52] = { 41.2, 33.2, 40, 300 }, + [53] = { 33.7, 31, 40, 300 }, + [54] = { 39.1, 27.9, 40, 300 }, + [55] = { 5.7, 76.8, 1581, 300 }, + [56] = { 17.8, 8, 1581, 300 }, + }, + ["lvl"] = "14-15", + }, + [161] = "_", + [163] = "_", + [165] = "_", + [167] = { + ["coords"] = { + [1] = { 34, 46.5, 38, 300 }, + [2] = { 16, 68.1, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "13", + }, + [171] = { + ["coords"] = { + [1] = { 23.7, 57.3, 40, 300 }, + [2] = { 25.2, 56.6, 40, 300 }, + [3] = { 25.2, 56.2, 40, 300 }, + [4] = { 25.2, 55.3, 40, 300 }, + [5] = { 25.2, 55, 40, 300 }, + [6] = { 25.9, 50.1, 40, 300 }, + [7] = { 25.2, 49.8, 40, 300 }, + [8] = { 26.2, 49.5, 40, 300 }, + [9] = { 25.8, 49.1, 40, 300 }, + [10] = { 25.4, 48.9, 40, 300 }, + [11] = { 24.7, 48.9, 40, 300 }, + [12] = { 25, 48.9, 40, 300 }, + [13] = { 25.2, 48.6, 40, 300 }, + [14] = { 24.6, 48.3, 40, 300 }, + [15] = { 24.8, 48.3, 40, 300 }, + [16] = { 26.6, 48.3, 40, 300 }, + [17] = { 25.3, 48, 40, 300 }, + [18] = { 25.8, 47.9, 40, 300 }, + [19] = { 26, 47.4, 40, 300 }, + [20] = { 25.5, 47, 40, 300 }, + [21] = { 25.7, 46.8, 40, 300 }, + [22] = { 27.6, 40.7, 40, 300 }, + [23] = { 26.5, 40.6, 40, 300 }, + [24] = { 27.7, 39.1, 40, 300 }, + [25] = { 26.7, 39, 40, 300 }, + [26] = { 26.7, 38.1, 40, 300 }, + [27] = { 27.8, 38, 40, 300 }, + [28] = { 26.6, 36.5, 40, 300 }, + [29] = { 28.8, 35.8, 40, 300 }, + [30] = { 29, 35.6, 40, 300 }, + [31] = { 28.8, 35.5, 40, 300 }, + [32] = { 27.6, 35.1, 40, 300 }, + [33] = { 29.3, 34.4, 40, 300 }, + [34] = { 27.7, 33.7, 40, 300 }, + [35] = { 28.4, 33.4, 40, 300 }, + [36] = { 28.2, 33.2, 40, 300 }, + [37] = { 28.4, 33, 40, 300 }, + [38] = { 29.3, 32.9, 40, 300 }, + [39] = { 28.4, 32.9, 40, 300 }, + [40] = { 29.2, 31.9, 40, 300 }, + [41] = { 28.3, 29.4, 40, 300 }, + [42] = { 29.4, 28.6, 40, 300 }, + [43] = { 30.3, 28.6, 40, 300 }, + [44] = { 28.3, 28.2, 40, 300 }, + [45] = { 29.6, 27.8, 40, 300 }, + [46] = { 29, 27.6, 40, 300 }, + [47] = { 30.2, 27.5, 40, 300 }, + [48] = { 29.1, 27.4, 40, 300 }, + [49] = { 29.6, 27.2, 40, 300 }, + [50] = { 28.7, 27.2, 40, 300 }, + [51] = { 30.4, 26.7, 40, 300 }, + [52] = { 32.2, 26.6, 40, 300 }, + [53] = { 32.4, 26.6, 40, 300 }, + [54] = { 29.3, 26.4, 40, 300 }, + [55] = { 32.5, 26.3, 40, 300 }, + [56] = { 31.8, 26.1, 40, 300 }, + [57] = { 32.3, 25.4, 40, 300 }, + [58] = { 30.3, 25.4, 40, 300 }, + [59] = { 34.5, 22.7, 40, 300 }, + [60] = { 35.5, 22.1, 40, 300 }, + [61] = { 34.6, 22, 40, 300 }, + [62] = { 35.4, 21.8, 40, 300 }, + [63] = { 35.8, 21.6, 40, 300 }, + [64] = { 34.9, 20.9, 40, 300 }, + [65] = { 35.6, 20.8, 40, 300 }, + [66] = { 34.8, 20.4, 40, 300 }, + }, + ["lvl"] = "15-16", + }, + [172] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [192] = "_", + [196] = { + ["coords"] = { + [1] = { 48.9, 40.2, 12, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "3", + }, + [197] = { + ["coords"] = { + [1] = { 48.9, 41.6, 12, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [199] = { + ["coords"] = { + [1] = { 16.6, 77.1, 12, 300 }, + [2] = { 53.7, 43.9, 40, 300 }, + [3] = { 51.4, 42.2, 40, 300 }, + [4] = { 61.3, 40.2, 40, 300 }, + [5] = { 48.4, 40, 40, 300 }, + [6] = { 60, 39.8, 40, 300 }, + [7] = { 54.2, 39.8, 40, 300 }, + [8] = { 57.1, 39.7, 40, 300 }, + [9] = { 49.4, 37.2, 40, 300 }, + [10] = { 48.9, 35.9, 40, 300 }, + [11] = { 52.7, 35.7, 40, 300 }, + [12] = { 61.8, 35.3, 40, 300 }, + [13] = { 43, 33.7, 40, 300 }, + [14] = { 59.8, 32.3, 40, 300 }, + [15] = { 38.1, 32.1, 40, 300 }, + [16] = { 48.8, 30.9, 40, 300 }, + [17] = { 48.4, 30.2, 40, 300 }, + [18] = { 45.8, 29.4, 40, 300 }, + [19] = { 61, 29.3, 40, 300 }, + [20] = { 60.9, 28, 40, 300 }, + [21] = { 62.8, 27.8, 40, 300 }, + [22] = { 48.4, 27.8, 40, 300 }, + [23] = { 52.4, 27.7, 40, 300 }, + [24] = { 51.9, 27.7, 40, 300 }, + [25] = { 36.3, 26.5, 40, 300 }, + [26] = { 42.9, 25.1, 40, 300 }, + [27] = { 49.5, 24.7, 40, 300 }, + [28] = { 56.2, 24.6, 40, 300 }, + [29] = { 60.1, 24.2, 40, 300 }, + [30] = { 44.6, 20.1, 40, 300 }, + [31] = { 38.2, 19.9, 40, 300 }, + [32] = { 43.6, 18.8, 40, 300 }, + [33] = { 52.4, 18.7, 40, 300 }, + [34] = { 47.8, 18.2, 40, 300 }, + [35] = { 55.2, 17.6, 40, 300 }, + [36] = { 41.9, 16.5, 40, 300 }, + [37] = { 50.6, 16.3, 40, 300 }, + [38] = { 58.8, 13.9, 40, 300 }, + }, + ["lvl"] = "10-11", + }, + [200] = "_", + [201] = "_", + [202] = { + ["coords"] = { + [1] = { 79.7, 61.9, 10, 300 }, + [2] = { 81, 61.7, 10, 300 }, + [3] = { 81.7, 60.5, 10, 300 }, + [4] = { 80.1, 60.5, 10, 300 }, + [5] = { 80.6, 59.4, 10, 300 }, + [6] = { 79.4, 59.1, 10, 300 }, + [7] = { 81.2, 58, 10, 300 }, + [8] = { 79.2, 57.5, 10, 300 }, + [9] = { 82, 57.1, 10, 300 }, + [10] = { 81.1, 56.2, 10, 300 }, + [11] = { 16.4, 48.3, 10, 300 }, + [12] = { 21.6, 48.3, 10, 300 }, + [13] = { 20.6, 47.9, 10, 300 }, + [14] = { 14.5, 47.9, 10, 300 }, + [15] = { 17.8, 47.9, 10, 300 }, + [16] = { 22.3, 47.6, 10, 300 }, + [17] = { 20.6, 47.5, 10, 300 }, + [18] = { 17.6, 47.1, 10, 300 }, + [19] = { 23.1, 47.1, 10, 300 }, + [20] = { 14.4, 46.2, 10, 300 }, + [21] = { 16.3, 45.5, 10, 300 }, + [22] = { 24.2, 43.3, 10, 300 }, + [23] = { 21.3, 42.9, 10, 300 }, + [24] = { 14.1, 42.2, 10, 300 }, + [25] = { 24.6, 41.9, 10, 300 }, + }, + ["lvl"] = "23-24", + }, + [203] = { + ["coords"] = { + [1] = { 78.2, 75.6, 10, 300 }, + [2] = { 79.6, 74.5, 10, 300 }, + [3] = { 78.6, 73, 10, 300 }, + [4] = { 80.9, 72.7, 10, 300 }, + [5] = { 82, 72, 10, 300 }, + [6] = { 78.9, 71.8, 10, 300 }, + [7] = { 79.5, 71.2, 10, 300 }, + [8] = { 82, 70.2, 10, 300 }, + [9] = { 79.7, 69.3, 10, 300 }, + [10] = { 78.2, 68.2, 10, 300 }, + [11] = { 76.9, 68.2, 10, 300 }, + [12] = { 79.8, 66.1, 10, 300 }, + }, + ["lvl"] = "22-23", + }, + [204] = "_", + [205] = { + ["coords"] = { + [1] = { 67.2, 77.5, 10, 300 }, + [2] = { 65.6, 77.5, 10, 300 }, + [3] = { 66.3, 76.9, 10, 300 }, + [4] = { 66.1, 76.5, 10, 300 }, + [5] = { 66.4, 76.4, 10, 300 }, + [6] = { 61.2, 76.1, 10, 300 }, + [7] = { 65.5, 75.7, 10, 300 }, + [8] = { 62.8, 75.7, 10, 300 }, + [9] = { 61.6, 75.5, 10, 300 }, + [10] = { 63.7, 75.5, 10, 300 }, + [11] = { 60.5, 75.3, 10, 300 }, + [12] = { 60.9, 75.2, 10, 300 }, + [13] = { 66.1, 75.1, 10, 300 }, + [14] = { 60.4, 74.5, 10, 300 }, + [15] = { 62.2, 74.3, 10, 300 }, + [16] = { 66.2, 74, 10, 300 }, + [17] = { 63.9, 73.7, 10, 300 }, + [18] = { 63.7, 73.4, 10, 300 }, + [19] = { 61.1, 73.4, 10, 300 }, + [20] = { 64.4, 73.1, 10, 300 }, + [21] = { 64.1, 72.7, 10, 300 }, + [22] = { 65.2, 70, 10, 300 }, + [23] = { 65.9, 69.4, 10, 300 }, + [24] = { 67.3, 69.2, 10, 300 }, + [25] = { 64.6, 69.2, 10, 300 }, + [26] = { 66, 69.1, 10, 300 }, + [27] = { 66.3, 67.9, 10, 300 }, + [28] = { 65.4, 67.8, 10, 300 }, + [29] = { 65.4, 67.7, 10, 300 }, + [30] = { 65.1, 67.4, 10, 300 }, + [31] = { 65.6, 67.2, 10, 300 }, + [32] = { 65.6, 67, 10, 300 }, + [33] = { 64.8, 66, 10, 300 }, + [34] = { 65.6, 65.9, 10, 300 }, + [35] = { 64.7, 51.9, 10, 300 }, + [36] = { 63.6, 51.7, 10, 300 }, + [37] = { 64.1, 51.7, 10, 300 }, + [38] = { 64.3, 50.8, 10, 300 }, + [39] = { 63.2, 50.8, 10, 300 }, + [40] = { 64, 49.8, 10, 300 }, + [41] = { 67.1, 49.6, 10, 300 }, + [42] = { 66.2, 47.7, 10, 300 }, + [43] = { 67.6, 45.9, 10, 300 }, + [44] = { 60, 45.2, 10, 300 }, + [45] = { 66.3, 44.8, 10, 300 }, + [46] = { 62.1, 42.7, 10, 300 }, + [47] = { 60.4, 42.2, 10, 300 }, + [48] = { 60.9, 41.7, 10, 300 }, + [49] = { 60.8, 41.5, 10, 300 }, + [50] = { 61.2, 41.3, 10, 300 }, + [51] = { 60.7, 41, 10, 300 }, + [52] = { 60.1, 40.9, 10, 300 }, + [53] = { 63.8, 40.9, 10, 300 }, + [54] = { 60.6, 39.9, 10, 300 }, + [55] = { 60.9, 39.8, 10, 300 }, + [56] = { 60, 39.6, 10, 300 }, + [57] = { 62.2, 38.8, 10, 300 }, + }, + ["lvl"] = "28-29", + }, + [206] = { + ["coords"] = { + [1] = { 61.6, 82.2, 10, 300 }, + [2] = { 61.9, 81.9, 10, 300 }, + [3] = { 61.8, 81, 10, 300 }, + [4] = { 62.6, 79.8, 10, 300 }, + [5] = { 62.7, 79.2, 10, 300 }, + [6] = { 72, 74.7, 10, 300 }, + [7] = { 72.6, 73.6, 10, 300 }, + [8] = { 71.8, 72.8, 10, 300 }, + [9] = { 73, 72.7, 10, 300 }, + [10] = { 73.4, 72.6, 10, 300 }, + [11] = { 71.9, 72.3, 10, 300 }, + [12] = { 72.9, 72.1, 10, 300 }, + [13] = { 71.6, 71.7, 10, 300 }, + [14] = { 71.1, 71.5, 10, 300 }, + [15] = { 73.3, 70.7, 10, 300 }, + [16] = { 72.3, 70.2, 10, 300 }, + [17] = { 73.7, 69.9, 10, 300 }, + [18] = { 72.4, 69.6, 10, 300 }, + [19] = { 73.5, 68.5, 10, 300 }, + [20] = { 72.3, 68.4, 10, 300 }, + [21] = { 72.4, 67.4, 10, 300 }, + }, + ["lvl"] = "29-30", + }, + [207] = "_", + [208] = "_", + [209] = "_", + [210] = { + ["coords"] = { + [1] = { 24.3, 37.5, 10, 300 }, + [2] = { 25.1, 35.9, 10, 300 }, + [3] = { 22.4, 35.7, 10, 300 }, + [4] = { 24.8, 34.7, 10, 300 }, + [5] = { 22.9, 34.2, 10, 300 }, + [6] = { 25.8, 32.9, 10, 300 }, + [7] = { 23.2, 32.8, 10, 300 }, + [8] = { 18.2, 27.3, 10, 300 }, + [9] = { 25.1, 27.2, 10, 300 }, + [10] = { 19.3, 26.4, 10, 300 }, + }, + ["lvl"] = "26-27", + }, + [211] = "_", + [212] = { + ["coords"] = { + [1] = { 36.6, 80, 10, 300 }, + [2] = { 35.3, 79.4, 10, 300 }, + [3] = { 36.8, 78.8, 10, 300 }, + [4] = { 34.1, 76.8, 10, 300 }, + [5] = { 33.7, 76, 10, 300 }, + [6] = { 34.7, 75.7, 10, 300 }, + [7] = { 33.1, 75.2, 10, 300 }, + [8] = { 32.9, 71.1, 10, 300 }, + [9] = { 32.4, 70.3, 10, 300 }, + [10] = { 32.9, 69.6, 10, 300 }, + [11] = { 32.2, 69.1, 10, 300 }, + }, + ["lvl"] = "29-30", + }, + [213] = { + ["coords"] = { + [1] = { 12.6, 66.8, 10, 300 }, + [2] = { 10.7, 47.9, 10, 300 }, + [3] = { 10.8, 29.5, 10, 300 }, + [4] = { 22, 29, 10, 300 }, + [5] = { 29.1, 28.3, 10, 300 }, + [6] = { 12.6, 28.3, 10, 300 }, + [7] = { 23.4, 28, 10, 300 }, + [8] = { 31.6, 27.2, 10, 300 }, + [9] = { 33.6, 26.7, 10, 300 }, + [10] = { 27.3, 26.3, 10, 300 }, + [11] = { 28.2, 26.1, 10, 300 }, + [12] = { 25.4, 26, 10, 300 }, + [13] = { 22.6, 25.9, 10, 300 }, + [14] = { 30.5, 25.6, 10, 300 }, + [15] = { 35.6, 24.5, 10, 300 }, + [16] = { 33.6, 24.5, 10, 300 }, + [17] = { 31.5, 24.4, 10, 300 }, + [18] = { 19.3, 24, 10, 300 }, + [19] = { 17.4, 23.3, 10, 300 }, + [20] = { 16.5, 22.9, 10, 300 }, + [21] = { 32.4, 22.6, 10, 300 }, + [22] = { 36.7, 21.6, 10, 300 }, + [23] = { 35.3, 21.5, 10, 300 }, + [24] = { 35.8, 20.9, 10, 300 }, + [25] = { 41.3, 20.5, 10, 300 }, + [26] = { 43.9, 20.4, 10, 300 }, + [27] = { 39, 19.6, 10, 300 }, + [28] = { 37.7, 19.2, 10, 300 }, + [29] = { 40, 19.1, 10, 300 }, + [30] = { 77.1, 19.1, 10, 300 }, + [31] = { 80.4, 18.7, 10, 300 }, + [32] = { 42.5, 18.7, 10, 300 }, + [33] = { 45, 18.5, 10, 300 }, + [34] = { 63.9, 17.1, 10, 300 }, + [35] = { 58.8, 16.9, 10, 300 }, + [36] = { 46.5, 16.8, 10, 300 }, + [37] = { 86.2, 16.1, 10, 300 }, + [38] = { 57.8, 15.6, 10, 300 }, + [39] = { 41.5, 97.3, 12, 300 }, + [40] = { 42.1, 97.1, 12, 300 }, + [41] = { 45.4, 94.4, 12, 300 }, + [42] = { 48.1, 93.1, 12, 300 }, + [43] = { 87.3, 89.3, 12, 300 }, + }, + ["lvl"] = "19-20", + }, + [215] = { + ["coords"] = { + [1] = { 52.1, 76.8, 10, 300 }, + [2] = { 50.9, 75, 10, 300 }, + [3] = { 53.1, 74.7, 10, 300 }, + [4] = { 49, 74.3, 10, 300 }, + [5] = { 50, 74, 10, 300 }, + [6] = { 56.4, 72.6, 10, 300 }, + [7] = { 49, 72.2, 10, 300 }, + [8] = { 50.7, 71.4, 10, 300 }, + [9] = { 22, 70.7, 10, 300 }, + [10] = { 48.5, 70.2, 10, 300 }, + [11] = { 24.8, 69.3, 10, 300 }, + [12] = { 22.9, 68.3, 10, 300 }, + [13] = { 20.1, 68, 10, 300 }, + [14] = { 21.2, 65.5, 10, 300 }, + [15] = { 21.3, 65.5, 10, 300 }, + [16] = { 23.9, 64.3, 10, 300 }, + }, + ["lvl"] = "24-25", + }, + [217] = { + ["coords"] = { + [1] = { 15.7, 72.6, 10, 300 }, + [2] = { 15.3, 71.3, 10, 300 }, + [3] = { 15, 68.1, 10, 300 }, + [4] = { 17.3, 67.6, 10, 300 }, + [5] = { 14.5, 67.5, 10, 300 }, + [6] = { 15.7, 66.8, 10, 300 }, + [7] = { 11.2, 54.8, 10, 300 }, + [8] = { 13.1, 47.5, 10, 300 }, + [9] = { 10.8, 46.6, 10, 300 }, + [10] = { 12.1, 46, 10, 300 }, + [11] = { 10.5, 44.7, 10, 300 }, + [12] = { 9.3, 40, 10, 300 }, + [13] = { 10.7, 38, 10, 300 }, + [14] = { 22.1, 28.2, 10, 300 }, + [15] = { 18.9, 27.3, 10, 300 }, + [16] = { 31.9, 26.6, 10, 300 }, + [17] = { 16.9, 25.8, 10, 300 }, + [18] = { 78, 24.3, 10, 300 }, + [19] = { 70.8, 21.6, 10, 300 }, + [20] = { 41.8, 20.8, 10, 300 }, + [21] = { 66.7, 20.8, 10, 300 }, + [22] = { 68.6, 20.2, 10, 300 }, + [23] = { 73.8, 20, 10, 300 }, + [24] = { 76, 19.9, 10, 300 }, + [25] = { 66.6, 18.8, 10, 270 }, + [26] = { 60.2, 18.6, 10, 300 }, + [27] = { 57.5, 18.6, 10, 300 }, + [28] = { 62.5, 18.5, 10, 300 }, + [29] = { 49.8, 18.3, 10, 300 }, + [30] = { 66.2, 18.1, 10, 270 }, + [31] = { 47.6, 17.9, 10, 300 }, + [32] = { 52.2, 16.9, 10, 300 }, + [33] = { 54.2, 16.7, 10, 300 }, + [34] = { 56.3, 14.6, 10, 300 }, + }, + ["lvl"] = "19-20", + }, + [218] = { + ["coords"] = { + [1] = { 14.6, 44.5, 10, 300 }, + [2] = { 14.5, 44.4, 10, 300 }, + [3] = { 14.8, 44.4, 10, 300 }, + }, + ["lvl"] = "24-25", + }, + [219] = "_", + [220] = "_", + [221] = "_", + [222] = { + ["coords"] = { + [1] = { 67.4, 91.5, 11, 300 }, + [2] = { 42.9, 9.9, 38, 300 }, + [3] = { 20.5, 49.3, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "19", + }, + [224] = "_", + [229] = "_", + [230] = "_", + [233] = { + ["coords"] = { + [1] = { 56, 31.2, 40, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [235] = { + ["coords"] = { + [1] = { 56.4, 30.5, 40, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [237] = { + ["coords"] = { + [1] = { 60, 19.4, 40, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [238] = { + ["coords"] = { + [1] = { 59.9, 19.4, 40, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [239] = { + ["coords"] = { + [1] = { 44.6, 80.3, 40, 30 }, + [2] = { 75.2, 72.6, 1581, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [240] = { + ["coords"] = { + [1] = { 42.1, 65.9, 12, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [241] = { + ["coords"] = { + [1] = { 42.1, 67.3, 12, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [242] = "_", + [243] = "_", + [244] = { + ["coords"] = { + [1] = { 34.7, 84.5, 12, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "3", + }, + [246] = { + ["coords"] = { + [1] = { 34.5, 84.3, 12, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "6", + }, + [248] = { + ["coords"] = { + [1] = { 34.9, 83.9, 12, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "3", + }, + [251] = { + ["coords"] = { + [1] = { 43.2, 89.6, 12, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "2", + }, + [252] = { + ["coords"] = { + [1] = { 29.8, 86, 12, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "2", + }, + [253] = { + ["coords"] = { + [1] = { 43.3, 65.7, 12, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "6", + }, + [255] = { + ["coords"] = { + [1] = { 43.1, 85.5, 12, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "6", + }, + [257] = { + ["coords"] = { + [1] = { 51.1, 38.2, 12, 270 }, + [2] = { 51.5, 38, 12, 270 }, + [3] = { 50.8, 37.9, 12, 270 }, + [4] = { 51.3, 37.7, 12, 270 }, + [5] = { 51.7, 37.7, 12, 270 }, + [6] = { 47.3, 36.6, 12, 270 }, + [7] = { 51.5, 36.6, 12, 270 }, + [8] = { 52.2, 36.4, 12, 270 }, + [9] = { 51.6, 36.2, 12, 270 }, + [10] = { 47.6, 35.9, 12, 270 }, + [11] = { 48.2, 35.9, 12, 270 }, + [12] = { 52.1, 35.8, 12, 270 }, + [13] = { 47.5, 35.8, 12, 270 }, + [14] = { 48.8, 35.6, 12, 270 }, + [15] = { 51, 35.5, 12, 270 }, + [16] = { 49.2, 35.3, 12, 270 }, + [17] = { 47.2, 35.1, 12, 270 }, + [18] = { 49.3, 34.7, 12, 270 }, + [19] = { 49.8, 34.6, 12, 270 }, + [20] = { 49.9, 34.3, 12, 270 }, + [21] = { 50.2, 34.2, 12, 270 }, + [22] = { 48.1, 34, 12, 270 }, + [23] = { 47.4, 34, 12, 270 }, + [24] = { 50.2, 33.8, 12, 270 }, + [25] = { 48.7, 33.8, 12, 270 }, + [26] = { 47.1, 33.7, 12, 270 }, + [27] = { 48.4, 33.6, 12, 270 }, + [28] = { 46.8, 33.4, 12, 270 }, + [29] = { 47.4, 33.2, 12, 270 }, + [30] = { 48, 33.1, 12, 270 }, + [31] = { 50.1, 33.1, 12, 270 }, + [32] = { 47.6, 32.9, 12, 270 }, + [33] = { 48.9, 32.8, 12, 270 }, + [34] = { 46.3, 32.8, 12, 270 }, + [35] = { 47.2, 32.6, 12, 270 }, + [36] = { 47.5, 32.6, 12, 270 }, + [37] = { 46.6, 32.5, 12, 270 }, + [38] = { 47.3, 32.3, 12, 270 }, + [39] = { 46.3, 32.2, 12, 270 }, + [40] = { 47.7, 32, 12, 270 }, + [41] = { 47.9, 31.6, 12, 270 }, + [42] = { 47.6, 31.4, 12, 270 }, + }, + ["lvl"] = "3", + }, + [260] = "_", + [261] = { + ["coords"] = { + [1] = { 74, 72.2, 12, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [262] = "_", + [263] = { + ["coords"] = { + [1] = { 71.9, 46.4, 10, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [264] = { + ["coords"] = { + [1] = { 73.6, 46.9, 10, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [265] = { + ["coords"] = { + [1] = { 75.8, 45.3, 10, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [266] = { + ["coords"] = { + [1] = { 26.5, 45.3, 44, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "26", + }, + [267] = { + ["coords"] = { + [1] = { 72.5, 46.9, 10, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "31", + }, + [268] = { + ["coords"] = { + [1] = { 72.6, 47.6, 10, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "24", + }, + [270] = { + ["coords"] = { + [1] = { 71.9, 47.8, 10, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "28", + }, + [271] = { + ["coords"] = { + [1] = { 72.1, 47.3, 10, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [272] = { + ["coords"] = { + [1] = { 73.9, 43.5, 10, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [273] = { + ["coords"] = { + [1] = { 73.8, 44.5, 10, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "22", + }, + [276] = { + ["coords"] = { + [1] = { 79.8, 48, 10, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "28", + }, + [277] = { + ["coords"] = { + [1] = { 60, 76.9, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [278] = { + ["coords"] = { + [1] = { 79.5, 68.8, 12, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [279] = { + ["coords"] = { + [1] = { 63.2, 74.4, 1519, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [280] = "_", + [281] = "_", + [282] = "_", + [283] = "_", + [284] = { + ["coords"] = { + [1] = { 92.6, 13.6, 10, 25 }, + [2] = { 30.4, 27.7, 1519, 180 }, + [3] = { 32.8, 92.3, 5581, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [285] = { + ["coords"] = { + [1] = { 52, 68.7, 12, 270 }, + [2] = { 55.9, 67.6, 12, 270 }, + [3] = { 50.3, 67.6, 12, 270 }, + [4] = { 56.8, 67.4, 12, 270 }, + [5] = { 57, 67.3, 12, 270 }, + [6] = { 50.7, 67.1, 12, 270 }, + [7] = { 51.2, 67.1, 12, 270 }, + [8] = { 54.6, 66.9, 12, 270 }, + [9] = { 56.9, 66.9, 12, 270 }, + [10] = { 50.2, 66.8, 12, 270 }, + [11] = { 54.3, 66.8, 12, 270 }, + [12] = { 55.4, 66.8, 12, 270 }, + [13] = { 56, 66.8, 12, 270 }, + [14] = { 54.4, 66.8, 12, 270 }, + [15] = { 53.7, 66.8, 12, 270 }, + [16] = { 54.9, 66.7, 12, 270 }, + [17] = { 55.6, 66.7, 12, 270 }, + [18] = { 56.4, 66.7, 12, 270 }, + [19] = { 56.5, 66.7, 12, 270 }, + [20] = { 56.6, 66.5, 12, 270 }, + [21] = { 55, 66.4, 12, 270 }, + [22] = { 49.8, 66.4, 12, 270 }, + [23] = { 54, 66.4, 12, 270 }, + [24] = { 54.4, 66.3, 12, 270 }, + [25] = { 56.7, 66.3, 12, 270 }, + [26] = { 54.6, 66.3, 12, 270 }, + [27] = { 55.3, 66.3, 12, 270 }, + [28] = { 50.6, 66.2, 12, 270 }, + [29] = { 50.4, 66.2, 12, 270 }, + [30] = { 55.3, 66.2, 12, 270 }, + [31] = { 55.2, 66.1, 12, 270 }, + [32] = { 56.7, 65.9, 12, 270 }, + [33] = { 53.8, 65.5, 12, 270 }, + [34] = { 54.8, 65.3, 12, 270 }, + [35] = { 52.7, 65.2, 12, 270 }, + }, + ["lvl"] = "6-7", + }, + [286] = "_", + [287] = "_", + [288] = { + ["coords"] = { + [1] = { 18.4, 56.4, 10, 30 }, + }, + ["fac"] = "AH", + ["lvl"] = "25", + }, + [289] = { + ["coords"] = { + [1] = { 28.1, 31.5, 10, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [290] = "_", + [291] = "_", + [294] = { + ["coords"] = { + [1] = { 84.6, 69.4, 12, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [295] = { + ["coords"] = { + [1] = { 43.6, 66, 12, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [296] = "_", + [297] = { + ["coords"] = { + [1] = { 42.5, 72.4, 1519, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [298] = "_", + [299] = { + ["coords"] = { + [1] = { 42.6, 61, 12, 270 }, + [2] = { 44.5, 58.3, 12, 270 }, + [3] = { 41.6, 58.3, 12, 270 }, + [4] = { 44.8, 57.5, 12, 270 }, + [5] = { 45.4, 55.4, 12, 270 }, + [6] = { 42.9, 55.4, 12, 270 }, + [7] = { 47.5, 46.9, 12, 270 }, + [8] = { 48.3, 46.8, 12, 270 }, + [9] = { 48, 45.9, 12, 270 }, + [10] = { 48.7, 45.5, 12, 270 }, + [11] = { 49.4, 45.3, 12, 270 }, + [12] = { 46.1, 44.9, 12, 270 }, + [13] = { 45.8, 44.6, 12, 270 }, + [14] = { 46.8, 44.5, 12, 270 }, + [15] = { 50.9, 44.4, 12, 270 }, + [16] = { 45.6, 43.8, 12, 270 }, + [17] = { 46.7, 43.7, 12, 270 }, + [18] = { 45.7, 43.1, 12, 270 }, + [19] = { 45.3, 42.6, 12, 270 }, + [20] = { 45.8, 42.3, 12, 270 }, + [21] = { 46.4, 42.3, 12, 270 }, + [22] = { 52.1, 41.6, 12, 270 }, + [23] = { 46.7, 40.9, 12, 270 }, + [24] = { 45.9, 40.8, 12, 270 }, + [25] = { 45.7, 40.6, 12, 270 }, + [26] = { 47.5, 40.5, 12, 270 }, + [27] = { 46.3, 40.1, 12, 270 }, + [28] = { 46.8, 39.8, 12, 270 }, + [29] = { 48, 39.6, 12, 270 }, + [30] = { 47.3, 39.5, 12, 270 }, + [31] = { 45.5, 39.1, 12, 270 }, + [32] = { 48.1, 38.8, 12, 270 }, + [33] = { 46.2, 38.4, 12, 270 }, + [34] = { 47.1, 38.3, 12, 270 }, + [35] = { 48.8, 38.3, 12, 270 }, + [36] = { 45.9, 38.2, 12, 270 }, + [37] = { 46.5, 38.1, 12, 270 }, + [38] = { 46.9, 38, 12, 270 }, + [39] = { 47.4, 37.9, 12, 270 }, + [40] = { 49.4, 37.6, 12, 270 }, + [41] = { 46.9, 37.5, 12, 270 }, + [42] = { 48.4, 37.4, 12, 270 }, + [43] = { 46.3, 37.1, 12, 270 }, + }, + ["lvl"] = "1", + }, + [300] = { + ["coords"] = { + [1] = { 36.8, 83.8, 10, 300 }, + [2] = { 37.3, 1.3, 33, 300 }, + }, + ["lvl"] = "30", + }, + [301] = "_", + [302] = { + ["coords"] = { + [1] = { 82, 59.1, 10, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [303] = "_", + [308] = { + ["coords"] = { + [1] = { 42.9, 68.1, 5581, 120 }, + [2] = { 41.5, 64.4, 5581, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [309] = "_", + [311] = { + ["coords"] = { + [1] = { 7.8, 34.1, 10, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [313] = { + ["coords"] = { + [1] = { 65.2, 69.7, 12, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "24", + }, + [315] = { + ["coords"] = { + [1] = { 77.3, 36.2, 10, 300 }, + }, + ["lvl"] = "32", + }, + [318] = "_", + [319] = "_", + [320] = "_", + [321] = "_", + [322] = "_", + [323] = "_", + [324] = "_", + [326] = "_", + [327] = { + ["coords"] = { + [1] = { 41.7, 78, 12, 120 }, + }, + ["lvl"] = "8", + }, + [328] = { + ["coords"] = { + [1] = { 43.2, 66.2, 12, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "13", + }, + [330] = { + ["coords"] = { + [1] = { 69.7, 79.3, 12, 120 }, + }, + ["lvl"] = "9", + }, + [331] = { + ["coords"] = { + [1] = { 49.3, 87.8, 1519, 490 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [332] = { + ["coords"] = { + [1] = { 78.3, 70.7, 1519, 2100 }, + }, + ["fac"] = "A", + ["lvl"] = "62", + }, + [333] = "_", + [336] = "_", + [338] = { + ["coords"] = { + [1] = { 51.8, 74.2, 1519, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "44", + }, + [339] = "_", + [340] = { + ["coords"] = { + [1] = { 77.5, 52.7, 1519, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [341] = { + ["coords"] = { + [1] = { 32.1, 48.6, 44, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [342] = { + ["coords"] = { + [1] = { 21.9, 46.3, 44, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [343] = { + ["coords"] = { + [1] = { 22.7, 43.8, 44, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "19", + }, + [344] = { + ["coords"] = { + [1] = { 30, 44.5, 44, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "36", + }, + [345] = { + ["coords"] = { + [1] = { 15.7, 49.3, 44, 300 }, + }, + ["lvl"] = "24", + }, + [346] = { + ["coords"] = { + [1] = { 26.5, 44, 44, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "21", + }, + [351] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [352] = { + ["coords"] = { + [1] = { 71, 72.5, 1519, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [353] = "_", + [354] = "_", + [361] = "_", + [364] = { + ["coords"] = { + [1] = { 78.7, 80.3, 331, 300 }, + }, + ["lvl"] = "1", + }, + [365] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [366] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [367] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [368] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [369] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [370] = "_", + [371] = "_", + [372] = { + ["coords"] = { + [1] = { 37.1, 47.2, 38, 300 }, + [2] = { 17.6, 68.4, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "16", + }, + [373] = "_", + [375] = { + ["coords"] = { + [1] = { 49.8, 39.5, 12, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [376] = { + ["coords"] = { + [1] = { 49.5, 44.6, 1519, 490 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [377] = { + ["coords"] = { + [1] = { 43.3, 65.7, 12, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "13", + }, + [379] = { + ["coords"] = { + [1] = { 26.7, 44.3, 44, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [380] = "_", + [381] = { + ["coords"] = { + [1] = { 27.7, 47.4, 44, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [382] = { + ["coords"] = { + [1] = { 33.5, 49, 44, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [384] = { + ["coords"] = { + [1] = { 84.2, 65.5, 12, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [385] = { + ["coords"] = { + [1] = { 26.6, 36.3, 1, 300 }, + [2] = { 84.9, 64.9, 12, 300 }, + [3] = { 40.7, 63.9, 12, 25 }, + [4] = { 83.5, 63.8, 12, 270 }, + [5] = { 28, 46.2, 44, 300 }, + [6] = { 93.8, 69, 721, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [386] = "_", + [387] = "_", + [388] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [389] = "_", + [390] = { + ["coords"] = { + [1] = { 69.7, 79.2, 12, 120 }, + [2] = { 69.6, 79.1, 12, 120 }, + }, + ["lvl"] = "7", + }, + [391] = { + ["coords"] = { + [1] = { 34, 84, 40, 300 }, + }, + ["lvl"] = "20", + }, + [393] = "_", + [399] = "_", + [400] = "_", + [401] = "_", + [402] = "_", + [403] = "_", + [404] = "_", + [405] = "_", + [406] = "_", + [407] = "_", + [408] = "_", + [409] = "_", + [410] = "_", + [411] = "_", + [415] = { + ["coords"] = { + [1] = { 31, 47.3, 44, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [417] = { + ["coords"] = { + [1] = { 49.9, 6.2, 1537, 1308 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [418] = "_", + [421] = "_", + [422] = { + ["coords"] = { + [1] = { 47.7, 71.2, 44, 300 }, + [2] = { 50.3, 70.9, 44, 300 }, + [3] = { 59.4, 62.5, 44, 300 }, + [4] = { 57.7, 62.1, 44, 300 }, + [5] = { 60.9, 61.6, 44, 300 }, + [6] = { 59.4, 61.1, 44, 300 }, + [7] = { 57.9, 60.8, 44, 300 }, + [8] = { 56, 60.3, 44, 300 }, + [9] = { 58.5, 59.5, 44, 300 }, + [10] = { 40.8, 55.6, 44, 300 }, + [11] = { 43.9, 54.2, 44, 300 }, + [12] = { 46.6, 51.5, 44, 300 }, + [13] = { 42.5, 50.5, 44, 300 }, + [14] = { 41.9, 49.4, 44, 300 }, + [15] = { 40.1, 48.2, 44, 300 }, + [16] = { 39.1, 47.1, 44, 300 }, + [17] = { 40.2, 45, 44, 300 }, + }, + ["lvl"] = "18-19", + }, + [423] = { + ["coords"] = { + [1] = { 29.4, 84.4, 44, 300 }, + [2] = { 29.9, 84.1, 44, 300 }, + [3] = { 31.1, 84, 44, 300 }, + [4] = { 34.5, 82.9, 44, 300 }, + [5] = { 32.4, 82.8, 44, 300 }, + [6] = { 32.1, 82.5, 44, 300 }, + [7] = { 30.4, 81.2, 44, 300 }, + [8] = { 41.9, 71.7, 44, 300 }, + [9] = { 43.6, 71.1, 44, 300 }, + [10] = { 16.6, 66.7, 44, 300 }, + [11] = { 14.5, 65.8, 44, 300 }, + [12] = { 15.3, 63.9, 44, 300 }, + [13] = { 16.7, 63, 44, 300 }, + [14] = { 16.3, 61.9, 44, 300 }, + [15] = { 14.8, 61.5, 44, 300 }, + [16] = { 15.1, 61, 44, 300 }, + [17] = { 15.6, 59.5, 44, 300 }, + }, + ["lvl"] = "15-16", + }, + [424] = { + ["coords"] = { + [1] = { 29.1, 84.4, 44, 300 }, + [2] = { 30.9, 84.2, 44, 300 }, + [3] = { 35.3, 83.8, 44, 300 }, + [4] = { 29.3, 83.7, 44, 300 }, + [5] = { 34.7, 83.1, 44, 300 }, + [6] = { 32.1, 82.9, 44, 300 }, + [7] = { 34.7, 82.8, 44, 300 }, + [8] = { 32, 82.7, 44, 300 }, + [9] = { 32.3, 82.3, 44, 300 }, + [10] = { 31.3, 81.1, 44, 300 }, + [11] = { 31, 79.5, 44, 300 }, + [12] = { 32.4, 79.5, 44, 300 }, + [13] = { 28.3, 79.4, 44, 300 }, + [14] = { 43.2, 72.1, 44, 300 }, + [15] = { 41.8, 71.8, 44, 300 }, + [16] = { 43.3, 71.3, 44, 300 }, + [17] = { 44.2, 71.1, 44, 300 }, + [18] = { 43.2, 70.6, 44, 300 }, + }, + ["lvl"] = "16-17", + }, + [426] = { + ["coords"] = { + [1] = { 20.8, 40, 44, 300 }, + [2] = { 21.9, 38.3, 44, 300 }, + [3] = { 29.5, 37.9, 44, 300 }, + [4] = { 24.1, 37.3, 44, 300 }, + [5] = { 21.2, 36.4, 44, 300 }, + [6] = { 21.5, 36.2, 44, 300 }, + [7] = { 21.2, 36.1, 44, 300 }, + [8] = { 24, 34.9, 44, 300 }, + [9] = { 38.6, 34.7, 44, 300 }, + [10] = { 20.1, 33.3, 44, 300 }, + [11] = { 24.1, 32.6, 44, 300 }, + [12] = { 40.7, 32, 44, 300 }, + [13] = { 38.9, 31.8, 44, 300 }, + [14] = { 38.5, 31.7, 44, 300 }, + [15] = { 38.8, 31.6, 44, 300 }, + [16] = { 39.5, 31.4, 44, 300 }, + }, + ["lvl"] = "17-18", + }, + [428] = { + ["coords"] = { + [1] = { 60.8, 78.3, 44, 300 }, + [2] = { 46, 77.5, 44, 300 }, + [3] = { 55.3, 76.8, 44, 300 }, + [4] = { 61.5, 76.4, 44, 300 }, + [5] = { 64.1, 76.4, 44, 300 }, + [6] = { 57.1, 76.2, 44, 300 }, + [7] = { 59.8, 76.1, 44, 300 }, + [8] = { 50.7, 74.7, 44, 300 }, + [9] = { 55.3, 73.4, 44, 300 }, + [10] = { 35.5, 70.2, 44, 300 }, + [11] = { 55.2, 46.1, 44, 300 }, + [12] = { 57.3, 44.9, 44, 300 }, + [13] = { 57.1, 41.6, 44, 300 }, + [14] = { 54.3, 40.3, 44, 300 }, + [15] = { 52.4, 38.8, 44, 300 }, + [16] = { 45.8, 35.8, 44, 300 }, + [17] = { 48.6, 35, 44, 300 }, + [18] = { 50.1, 33.9, 44, 300 }, + [19] = { 47.3, 32.5, 44, 300 }, + [20] = { 42.2, 32.4, 44, 300 }, + }, + ["lvl"] = "18-19", + }, + [430] = { + ["coords"] = { + [1] = { 36.1, 37.4, 44, 300 }, + [2] = { 24, 37.3, 44, 300 }, + [3] = { 27, 37.2, 44, 300 }, + [4] = { 37.3, 36, 44, 300 }, + [5] = { 26.8, 35.7, 44, 300 }, + [6] = { 21.4, 35.5, 44, 300 }, + [7] = { 39.7, 35, 44, 300 }, + [8] = { 41.8, 34, 44, 300 }, + [9] = { 20.2, 33, 44, 300 }, + [10] = { 24.8, 31.7, 44, 300 }, + [11] = { 39.2, 30.8, 44, 300 }, + [12] = { 23.9, 29.8, 44, 300 }, + [13] = { 32.1, 29.4, 44, 300 }, + [14] = { 28.1, 28.9, 44, 300 }, + [15] = { 28.6, 28.3, 44, 300 }, + [16] = { 28.5, 27.9, 44, 300 }, + [17] = { 23.3, 27.4, 44, 300 }, + [18] = { 22.7, 26.5, 44, 300 }, + [19] = { 33.1, 25.5, 44, 300 }, + [20] = { 34.5, 25.4, 44, 300 }, + [21] = { 34.5, 25.1, 44, 300 }, + [22] = { 31.1, 23.5, 44, 300 }, + [23] = { 27.1, 23, 44, 300 }, + [24] = { 25.6, 22.9, 44, 300 }, + [25] = { 33.6, 22.6, 44, 300 }, + [26] = { 29.4, 22, 44, 300 }, + [27] = { 27.7, 22, 44, 300 }, + [28] = { 16.9, 17.7, 44, 300 }, + }, + ["lvl"] = "18-19", + }, + [431] = { + ["coords"] = { + [1] = { 82.8, 59.3, 44, 300 }, + [2] = { 83.9, 58, 44, 300 }, + [3] = { 83.6, 57.5, 44, 300 }, + [4] = { 84.6, 57.4, 44, 300 }, + [5] = { 84.7, 56.4, 44, 300 }, + [6] = { 81.8, 55.9, 44, 300 }, + [7] = { 77.5, 55.5, 44, 300 }, + [8] = { 81.7, 54.9, 44, 300 }, + [9] = { 77.1, 53.9, 44, 300 }, + [10] = { 78.6, 52.9, 44, 300 }, + [11] = { 79.7, 49.5, 44, 300 }, + [12] = { 81, 49.1, 44, 300 }, + [13] = { 81, 48.6, 44, 300 }, + [14] = { 80.3, 48.6, 44, 300 }, + [15] = { 82.2, 47.8, 44, 300 }, + [16] = { 80.2, 37.1, 44, 300 }, + [17] = { 74.3, 36.2, 44, 300 }, + [18] = { 74.2, 35.5, 44, 300 }, + [19] = { 75.9, 30, 44, 300 }, + }, + ["lvl"] = "25-26", + }, + [432] = { + ["coords"] = { + [1] = { 73.5, 54.9, 44, 300 }, + [2] = { 75.1, 46.3, 44, 300 }, + [3] = { 77.1, 45.5, 44, 300 }, + [4] = { 81.4, 44.2, 44, 300 }, + [5] = { 79, 41, 44, 300 }, + [6] = { 79.2, 40.9, 44, 300 }, + [7] = { 80.3, 40.6, 44, 300 }, + [8] = { 79, 40.4, 44, 300 }, + [9] = { 79.9, 37.9, 44, 300 }, + [10] = { 76.6, 37.4, 44, 300 }, + [11] = { 78.9, 37, 44, 300 }, + [12] = { 81.2, 36.3, 44, 300 }, + [13] = { 80.3, 35.1, 44, 300 }, + }, + ["lvl"] = "23-24", + }, + [433] = { + ["coords"] = { + [1] = { 72.5, 58.9, 44, 300 }, + [2] = { 71.5, 58.9, 44, 300 }, + [3] = { 73.4, 55.7, 44, 300 }, + [4] = { 73.5, 55.4, 44, 300 }, + [5] = { 73.3, 54.8, 44, 300 }, + [6] = { 77.4, 54.5, 44, 300 }, + [7] = { 74.9, 52.2, 44, 300 }, + [8] = { 72.3, 51.5, 44, 300 }, + [9] = { 75.9, 51.1, 44, 300 }, + [10] = { 75.2, 49.8, 44, 300 }, + [11] = { 74.2, 49.2, 44, 300 }, + [12] = { 75.8, 47.5, 44, 300 }, + [13] = { 75.7, 47.2, 44, 300 }, + [14] = { 68.7, 45.7, 44, 300 }, + [15] = { 76.8, 45.7, 44, 300 }, + [16] = { 76.6, 45.3, 44, 300 }, + [17] = { 74.7, 44.1, 44, 300 }, + [18] = { 71.9, 43.9, 44, 300 }, + [19] = { 74.1, 40.7, 44, 300 }, + }, + ["lvl"] = "22-23", + }, + [434] = { + ["coords"] = { + [1] = { 73, 58.4, 44, 300 }, + [2] = { 77.9, 55.4, 44, 300 }, + [3] = { 72.7, 54.8, 44, 300 }, + [4] = { 71.4, 54.2, 44, 300 }, + [5] = { 73.4, 53.9, 44, 300 }, + [6] = { 75, 50, 44, 300 }, + [7] = { 75, 49.6, 44, 300 }, + [8] = { 75.6, 46.9, 44, 300 }, + [9] = { 75.9, 46.8, 44, 300 }, + [10] = { 72.3, 40.4, 44, 300 }, + }, + ["lvl"] = "21-22", + }, + [435] = { + ["coords"] = { + [1] = { 28.6, 17.3, 44, 300 }, + [2] = { 28.2, 16.8, 44, 300 }, + [3] = { 27.3, 16.4, 44, 300 }, + [4] = { 27.5, 16.3, 44, 300 }, + [5] = { 30.6, 15.5, 44, 300 }, + [6] = { 28.6, 15.4, 44, 300 }, + [7] = { 29.6, 14.1, 44, 300 }, + [8] = { 28.7, 13.9, 44, 300 }, + [9] = { 31.7, 13.1, 44, 300 }, + [10] = { 31.4, 12.8, 44, 300 }, + [11] = { 29.3, 12, 44, 300 }, + [12] = { 28.6, 11.7, 44, 300 }, + [13] = { 28.6, 11.5, 44, 300 }, + [14] = { 29.6, 11.2, 44, 300 }, + [15] = { 30.4, 9.9, 44, 300 }, + [16] = { 27, 9.7, 44, 300 }, + [17] = { 30.5, 8.8, 44, 300 }, + [18] = { 29.5, 8.5, 44, 300 }, + [19] = { 26.6, 8.2, 44, 300 }, + [20] = { 34.4, 7.8, 44, 300 }, + [21] = { 35.7, 7.7, 44, 300 }, + [22] = { 31, 7.2, 44, 300 }, + [23] = { 34.4, 6.7, 44, 300 }, + [24] = { 31.4, 5.7, 44, 300 }, + [25] = { 66.3, 88, 46, 300 }, + [26] = { 65.7, 87.8, 46, 300 }, + [27] = { 65.7, 87.6, 46, 300 }, + [28] = { 66.5, 87.4, 46, 300 }, + [29] = { 67, 86.4, 46, 300 }, + [30] = { 64.5, 86.3, 46, 300 }, + [31] = { 67.1, 85.6, 46, 300 }, + [32] = { 66.4, 85.4, 46, 300 }, + [33] = { 64.2, 85.2, 46, 300 }, + [34] = { 70.1, 84.9, 46, 300 }, + [35] = { 71, 84.8, 46, 300 }, + [36] = { 67.5, 84.4, 46, 300 }, + [37] = { 70, 84.1, 46, 300 }, + [38] = { 67.8, 83.3, 46, 300 }, + }, + ["lvl"] = "24-25", + }, + [436] = { + ["coords"] = { + [1] = { 63.7, 59.1, 44, 900 }, + [2] = { 68.2, 59, 44, 900 }, + [3] = { 69.5, 58.4, 44, 900 }, + [4] = { 69.9, 57.4, 44, 900 }, + [5] = { 66.1, 56.9, 44, 900 }, + [6] = { 69.1, 56.8, 44, 900 }, + [7] = { 66.5, 56.5, 44, 900 }, + [8] = { 68.3, 56.3, 44, 900 }, + [9] = { 67, 56.3, 44, 900 }, + [10] = { 69, 55.5, 44, 900 }, + [11] = { 69.3, 55.5, 44, 900 }, + [12] = { 69, 55.4, 44, 900 }, + [13] = { 65.4, 54.8, 44, 900 }, + [14] = { 68.2, 54.6, 44, 900 }, + [15] = { 69.6, 54.3, 44, 900 }, + [16] = { 69.7, 54.1, 44, 900 }, + [17] = { 67.1, 54.1, 44, 900 }, + }, + ["lvl"] = "22-23", + ["rnk"] = "1", + }, + [437] = { + ["coords"] = { + [1] = { 78.8, 69.2, 44, 300 }, + [2] = { 76.1, 69.1, 44, 300 }, + [3] = { 77, 67.2, 44, 300 }, + [4] = { 77.1, 67, 44, 300 }, + [5] = { 77.8, 67, 44, 300 }, + [6] = { 60, 65.7, 44, 300 }, + [7] = { 60.3, 65.4, 44, 300 }, + [8] = { 79.7, 64.5, 44, 300 }, + [9] = { 43.5, 18.4, 44, 300 }, + [10] = { 43.5, 18.2, 44, 300 }, + [11] = { 48.2, 16.5, 44, 300 }, + [12] = { 44.4, 12.4, 44, 300 }, + }, + ["lvl"] = "21-22", + }, + [440] = { + ["coords"] = { + [1] = { 77.6, 86.1, 44, 300 }, + [2] = { 75.1, 84.1, 44, 300 }, + [3] = { 75.6, 83, 44, 300 }, + [4] = { 76.4, 82.9, 44, 300 }, + [5] = { 74.9, 81.6, 44, 300 }, + [6] = { 76.5, 80.6, 44, 300 }, + [7] = { 73.6, 79, 44, 300 }, + [8] = { 70.7, 78.7, 44, 300 }, + [9] = { 73.9, 78.3, 44, 300 }, + [10] = { 76.7, 74.3, 44, 300 }, + [11] = { 62.5, 45.6, 44, 300 }, + [12] = { 62.4, 45.3, 44, 300 }, + [13] = { 59.4, 44.3, 44, 300 }, + [14] = { 59, 43.7, 44, 300 }, + [15] = { 61.1, 43.4, 44, 300 }, + [16] = { 61, 42.8, 44, 300 }, + [17] = { 59.6, 42.2, 44, 300 }, + [18] = { 59.8, 42, 44, 300 }, + [19] = { 40.6, 41.4, 44, 300 }, + [20] = { 62.4, 41.4, 44, 300 }, + [21] = { 39, 40.8, 44, 300 }, + }, + ["lvl"] = "19-20", + }, + [441] = { + ["coords"] = { + [1] = { 61.4, 78.6, 44, 300 }, + [2] = { 57.7, 78.4, 44, 300 }, + [3] = { 50.1, 78.1, 44, 300 }, + [4] = { 43.5, 78, 44, 300 }, + [5] = { 48.3, 77.4, 44, 300 }, + [6] = { 57.9, 77.3, 44, 300 }, + [7] = { 66.9, 76.6, 44, 300 }, + [8] = { 33.9, 76.4, 44, 300 }, + [9] = { 65.9, 76.3, 44, 300 }, + [10] = { 53.8, 76.2, 44, 300 }, + [11] = { 30.7, 75.7, 44, 300 }, + [12] = { 60.6, 75.2, 44, 300 }, + [13] = { 62.2, 75.1, 44, 300 }, + [14] = { 58.6, 74.8, 44, 300 }, + [15] = { 32, 74.8, 44, 300 }, + [16] = { 51.8, 74.7, 44, 300 }, + [17] = { 27.4, 74.5, 44, 300 }, + [18] = { 36, 73.9, 44, 300 }, + [19] = { 54.6, 73.7, 44, 300 }, + [20] = { 34.2, 73.4, 44, 300 }, + [21] = { 37.8, 72.8, 44, 300 }, + [22] = { 36.4, 72.7, 44, 300 }, + [23] = { 34.9, 68.4, 44, 300 }, + [24] = { 33.3, 67, 44, 300 }, + [25] = { 35.8, 63.3, 44, 300 }, + [26] = { 27.7, 63.3, 44, 300 }, + [27] = { 33.1, 63.3, 44, 300 }, + [28] = { 23.9, 63.2, 44, 300 }, + [29] = { 37, 63, 44, 300 }, + [30] = { 43.6, 40.9, 44, 300 }, + [31] = { 46.3, 35.4, 44, 300 }, + [32] = { 23.8, 35.2, 44, 300 }, + [33] = { 42.4, 33, 44, 300 }, + [34] = { 42.6, 29.6, 44, 300 }, + }, + ["lvl"] = "17-18", + }, + [442] = { + ["coords"] = { + [1] = { 98.2, 11.6, 10, 300 }, + [2] = { 95.1, 80.7, 12, 300 }, + [3] = { 95.6, 79.4, 12, 300 }, + [4] = { 96.2, 77.9, 12, 300 }, + [5] = { 95, 75.6, 12, 300 }, + [6] = { 95.6, 75.4, 12, 300 }, + [7] = { 11.4, 93.3, 44, 300 }, + [8] = { 13.3, 93.1, 44, 300 }, + [9] = { 12.9, 85.2, 44, 300 }, + [10] = { 9, 85.1, 44, 300 }, + [11] = { 9.8, 83, 44, 300 }, + [12] = { 13.8, 82.1, 44, 300 }, + [13] = { 10.7, 80.6, 44, 300 }, + [14] = { 11.2, 79.6, 44, 300 }, + [15] = { 12.6, 78.2, 44, 300 }, + [16] = { 8.8, 77, 44, 300 }, + [17] = { 12.4, 77, 44, 300 }, + [18] = { 9.8, 76.7, 44, 300 }, + [19] = { 22.8, 76.3, 44, 300 }, + [20] = { 26.6, 75.8, 44, 300 }, + [21] = { 14.1, 75.7, 44, 300 }, + [22] = { 35, 75.1, 44, 300 }, + [23] = { 11.7, 72.7, 44, 300 }, + [24] = { 18.1, 71.7, 44, 300 }, + [25] = { 19.5, 71.7, 44, 300 }, + [26] = { 22.2, 67.2, 44, 300 }, + [27] = { 22.4, 66.4, 44, 300 }, + [28] = { 20.1, 65.4, 44, 300 }, + }, + ["lvl"] = "15-16", + }, + [444] = "_", + [445] = { + ["coords"] = { + [1] = { 25.7, 23.4, 44, 300 }, + [2] = { 27.2, 23.1, 44, 300 }, + [3] = { 27.4, 21.7, 44, 300 }, + [4] = { 28, 21.6, 44, 300 }, + [5] = { 27.5, 21.4, 44, 300 }, + [6] = { 26.5, 21.3, 44, 300 }, + [7] = { 17.2, 17.8, 44, 300 }, + }, + ["lvl"] = "21-22", + }, + [446] = { + ["coords"] = { + [1] = { 28.5, 31.5, 44, 300 }, + [2] = { 29.9, 31.2, 44, 300 }, + [3] = { 19.4, 30.8, 44, 300 }, + [4] = { 28.3, 30.5, 44, 300 }, + [5] = { 28.9, 30.2, 44, 300 }, + [6] = { 27.4, 29.4, 44, 300 }, + [7] = { 32.4, 29.2, 44, 300 }, + [8] = { 28.3, 28.4, 44, 300 }, + [9] = { 35.3, 28, 44, 300 }, + [10] = { 28.3, 27.8, 44, 300 }, + [11] = { 27.5, 27.4, 44, 300 }, + [12] = { 23.3, 26.8, 44, 300 }, + [13] = { 22.7, 26.5, 44, 300 }, + [14] = { 23.5, 26.2, 44, 300 }, + [15] = { 19.4, 25.9, 44, 300 }, + [16] = { 35.2, 25.8, 44, 300 }, + [17] = { 28.7, 25.6, 44, 300 }, + [18] = { 34.1, 25.3, 44, 300 }, + [19] = { 23.6, 25.2, 44, 300 }, + [20] = { 34.3, 25, 44, 300 }, + [21] = { 34, 24.8, 44, 300 }, + [22] = { 23.5, 24.1, 44, 300 }, + [23] = { 31.9, 24, 44, 300 }, + [24] = { 19.5, 23.9, 44, 300 }, + [25] = { 18.3, 23.1, 44, 300 }, + [26] = { 31, 22.8, 44, 300 }, + [27] = { 16.7, 21.9, 44, 300 }, + [28] = { 19.5, 21.7, 44, 300 }, + [29] = { 18.5, 20.3, 44, 300 }, + [30] = { 17.6, 19.9, 44, 300 }, + [31] = { 23.1, 18.3, 44, 300 }, + [32] = { 18.6, 18.2, 44, 300 }, + [33] = { 21.9, 15.3, 44, 300 }, + [34] = { 60.8, 90.4, 46, 300 }, + }, + ["lvl"] = "19-20", + }, + [448] = { + ["coords"] = { + [1] = { 26.6, 93.9, 12, 60 }, + }, + ["lvl"] = "11", + ["rnk"] = "1", + }, + [449] = { + ["coords"] = { + [1] = { 46.6, 81.4, 40, 300 }, + [2] = { 36.2, 80.3, 40, 300 }, + [3] = { 49.5, 78.9, 40, 300 }, + [4] = { 49.3, 78.9, 40, 300 }, + [5] = { 50.5, 78.8, 40, 300 }, + [6] = { 50.9, 78.6, 40, 300 }, + [7] = { 51.6, 78.2, 40, 300 }, + [8] = { 36.9, 75.8, 40, 300 }, + [9] = { 37.2, 75.3, 40, 300 }, + [10] = { 37.7, 75.2, 40, 300 }, + [11] = { 36.4, 74.6, 40, 300 }, + [12] = { 38.7, 73.4, 40, 300 }, + [13] = { 35.2, 71.8, 40, 300 }, + [14] = { 90.8, 81.7, 1581, 300 }, + [15] = { 10, 72.8, 1581, 300 }, + [16] = { 15.4, 38.3, 1581, 300 }, + [17] = { 17.7, 34.2, 1581, 300 }, + [18] = { 21.1, 32.9, 1581, 300 }, + [19] = { 11.3, 28.4, 1581, 300 }, + [20] = { 29.2, 19.6, 1581, 300 }, + [21] = { 1.9, 7.1, 1581, 300 }, + }, + ["lvl"] = "16-17", + }, + [450] = { + ["coords"] = { + [1] = { 37.1, 82, 40, 300 }, + [2] = { 53.1, 79.1, 40, 300 }, + [3] = { 16.3, 86.3, 1581, 300 }, + }, + ["lvl"] = "18-19", + }, + [452] = { + ["coords"] = { + [1] = { 56.3, 75.3, 40, 300 }, + [2] = { 59.4, 74.4, 40, 300 }, + [3] = { 56.6, 74.3, 40, 300 }, + [4] = { 59.5, 74.3, 40, 300 }, + [5] = { 59.3, 74.3, 40, 300 }, + [6] = { 56.3, 74.2, 40, 300 }, + [7] = { 59.3, 74.1, 40, 300 }, + [8] = { 58.7, 73.9, 40, 300 }, + [9] = { 56.2, 73.5, 40, 300 }, + [10] = { 57.2, 73, 40, 300 }, + [11] = { 61.1, 71.2, 40, 300 }, + [12] = { 56.2, 71, 40, 300 }, + [13] = { 62.6, 70.8, 40, 300 }, + [14] = { 60.7, 70.7, 40, 300 }, + [15] = { 57.2, 70.7, 40, 300 }, + [16] = { 64.6, 70.5, 40, 300 }, + [17] = { 60.6, 70.5, 40, 300 }, + [18] = { 63.8, 70.4, 40, 300 }, + [19] = { 63.9, 70.3, 40, 300 }, + [20] = { 56.4, 70.2, 40, 300 }, + [21] = { 64, 70.1, 40, 300 }, + [22] = { 63.8, 70, 40, 300 }, + [23] = { 56.3, 70, 40, 300 }, + [24] = { 60, 69.9, 40, 300 }, + [25] = { 56.5, 69.8, 40, 300 }, + [26] = { 56.4, 69.8, 40, 300 }, + [27] = { 55.8, 69.7, 40, 300 }, + [28] = { 63, 69.6, 40, 300 }, + [29] = { 56.5, 69.3, 40, 300 }, + [30] = { 60.8, 69.1, 40, 300 }, + [31] = { 53.4, 63.3, 40, 300 }, + [32] = { 52, 63, 40, 300 }, + [33] = { 53.1, 62.7, 40, 300 }, + [34] = { 47.7, 62.4, 40, 300 }, + [35] = { 52.8, 62.4, 40, 300 }, + [36] = { 54.3, 62.3, 40, 300 }, + [37] = { 48.4, 61.3, 40, 300 }, + [38] = { 48.2, 61.2, 40, 300 }, + [39] = { 49.6, 60.8, 40, 300 }, + [40] = { 50.1, 60.3, 40, 300 }, + }, + ["lvl"] = "16-17", + }, + [454] = { + ["coords"] = { + [1] = { 20.8, 86.9, 12, 300 }, + [2] = { 16.7, 76.9, 12, 300 }, + [3] = { 51.9, 49, 40, 300 }, + [4] = { 53, 46.2, 40, 300 }, + [5] = { 53.7, 45, 40, 300 }, + [6] = { 52.3, 44.9, 40, 300 }, + [7] = { 55.2, 43.7, 40, 300 }, + [8] = { 56.2, 42.5, 40, 300 }, + [9] = { 49.5, 42.2, 40, 300 }, + [10] = { 54.2, 42.2, 40, 300 }, + [11] = { 49.2, 41.6, 40, 300 }, + [12] = { 52.1, 41.2, 40, 300 }, + [13] = { 53.9, 40.9, 40, 300 }, + [14] = { 52.7, 39.9, 40, 300 }, + [15] = { 57.1, 39.2, 40, 300 }, + [16] = { 63.2, 38.2, 40, 300 }, + [17] = { 49.9, 36.8, 40, 300 }, + [18] = { 61.2, 36.5, 40, 300 }, + [19] = { 36.2, 35, 40, 300 }, + [20] = { 34.3, 34.8, 40, 300 }, + [21] = { 33.5, 34.5, 40, 300 }, + [22] = { 39.4, 33.8, 40, 300 }, + [23] = { 60, 33.6, 40, 300 }, + [24] = { 60.3, 32.3, 40, 300 }, + [25] = { 43.8, 32.2, 40, 300 }, + [26] = { 37.4, 30.7, 40, 300 }, + [27] = { 44.3, 30.5, 40, 300 }, + [28] = { 40.9, 30.1, 40, 300 }, + [29] = { 60.6, 30, 40, 300 }, + [30] = { 50.4, 29.4, 40, 300 }, + [31] = { 42.8, 28.2, 40, 300 }, + [32] = { 61.9, 27.8, 40, 300 }, + [33] = { 54.2, 26.7, 40, 300 }, + [34] = { 37.8, 25.9, 40, 300 }, + [35] = { 42.2, 23.7, 40, 300 }, + [36] = { 62.9, 23.6, 40, 300 }, + [37] = { 49.7, 23.5, 40, 300 }, + [38] = { 51.3, 23.3, 40, 300 }, + [39] = { 56.1, 20.8, 40, 300 }, + [40] = { 52.1, 20.5, 40, 300 }, + [41] = { 51.2, 20.2, 40, 300 }, + [42] = { 55.3, 19.5, 40, 300 }, + [43] = { 46.6, 19.3, 40, 300 }, + [44] = { 48.7, 19.1, 40, 300 }, + [45] = { 52.4, 17.5, 40, 300 }, + [46] = { 56.9, 16.1, 40, 300 }, + [47] = { 58.9, 13.7, 40, 300 }, + [48] = { 58.4, 12.4, 40, 300 }, + }, + ["lvl"] = "12-13", + }, + [456] = { + ["coords"] = { + [1] = { 35.8, 22.6, 40, 300 }, + [2] = { 33.9, 18.7, 40, 300 }, + [3] = { 34.7, 18.4, 40, 300 }, + [4] = { 33.5, 17.9, 40, 300 }, + [5] = { 33.5, 17.7, 40, 300 }, + [6] = { 32.9, 17.5, 40, 300 }, + [7] = { 33.7, 17.5, 40, 300 }, + [8] = { 34, 17.4, 40, 300 }, + [9] = { 33.4, 17.2, 40, 300 }, + [10] = { 34.1, 17.2, 40, 300 }, + [11] = { 33.5, 17.1, 40, 300 }, + [12] = { 35, 16.9, 40, 300 }, + [13] = { 34, 16.8, 40, 300 }, + [14] = { 33.7, 16.7, 40, 300 }, + [15] = { 34.3, 16.7, 40, 300 }, + [16] = { 34.1, 16.7, 40, 300 }, + [17] = { 37.4, 16.5, 40, 300 }, + [18] = { 33.7, 16.5, 40, 300 }, + [19] = { 33.9, 16.4, 40, 300 }, + [20] = { 38.1, 16.3, 40, 300 }, + [21] = { 38.8, 16.2, 40, 300 }, + [22] = { 34.1, 16.2, 40, 300 }, + [23] = { 34.4, 16.1, 40, 300 }, + [24] = { 33.9, 16.1, 40, 300 }, + [25] = { 34.3, 15.9, 40, 300 }, + [26] = { 34.6, 15.9, 40, 300 }, + [27] = { 34.2, 15.9, 40, 300 }, + [28] = { 37.2, 15.8, 40, 300 }, + [29] = { 34.4, 15.7, 40, 300 }, + [30] = { 34.5, 15.6, 40, 300 }, + [31] = { 39, 15.4, 40, 300 }, + [32] = { 38.3, 15.3, 40, 300 }, + [33] = { 37.7, 15.2, 40, 300 }, + [34] = { 33.4, 15.1, 40, 300 }, + [35] = { 38.9, 14.7, 40, 300 }, + [36] = { 38.5, 14.3, 40, 300 }, + [37] = { 33.9, 16.7, 40, 300 }, + [38] = { 42.5, 12.3, 40, 300 }, + [39] = { 42.7, 12.3, 40, 300 }, + [40] = { 42, 12.1, 40, 300 }, + [41] = { 43, 11.7, 40, 300 }, + [42] = { 42.2, 11.5, 40, 300 }, + [43] = { 42.5, 11.4, 40, 300 }, + [44] = { 41.2, 10.2, 40, 300 }, + [45] = { 42, 9.7, 40, 300 }, + [46] = { 43.5, 9.2, 40, 300 }, + [47] = { 42.8, 9, 40, 300 }, + [48] = { 43, 8.2, 40, 300 }, + [49] = { 43.2, 8.1, 40, 300 }, + }, + ["lvl"] = "12-14", + }, + [458] = { + ["coords"] = { + [1] = { 35.5, 85.9, 40, 300 }, + [2] = { 33.8, 83.2, 40, 300 }, + [3] = { 27.1, 72.7, 40, 300 }, + [4] = { 26.6, 60.3, 40, 300 }, + [5] = { 27.9, 60, 40, 300 }, + [6] = { 27.5, 59.9, 40, 300 }, + [7] = { 27.7, 59.9, 40, 300 }, + [8] = { 26.8, 59.5, 40, 300 }, + [9] = { 26.1, 59, 40, 300 }, + [10] = { 27.3, 58.7, 40, 300 }, + [11] = { 27.7, 58.6, 40, 300 }, + [12] = { 26.7, 58.2, 40, 300 }, + [13] = { 27.4, 57.9, 40, 300 }, + [14] = { 27, 55.3, 40, 300 }, + [15] = { 27.3, 54.8, 40, 300 }, + [16] = { 27.8, 54.2, 40, 300 }, + [17] = { 26.9, 54.2, 40, 300 }, + [18] = { 27.8, 54, 40, 300 }, + [19] = { 27.5, 53.6, 40, 300 }, + [20] = { 26.9, 53.4, 40, 300 }, + [21] = { 27.7, 52.9, 40, 300 }, + [22] = { 27.4, 52.5, 40, 300 }, + [23] = { 98.8, 2.8, 409, 300 }, + [24] = { 23.7, 57.3, 40, 300 }, + [25] = { 25.2, 56.6, 40, 300 }, + [26] = { 25.2, 56.2, 40, 300 }, + [27] = { 25.2, 55.3, 40, 300 }, + [28] = { 25.2, 55, 40, 300 }, + [29] = { 25.9, 50.1, 40, 300 }, + [30] = { 25.2, 49.8, 40, 300 }, + [31] = { 26.2, 49.5, 40, 300 }, + [32] = { 25.8, 49.1, 40, 300 }, + [33] = { 25.4, 48.9, 40, 300 }, + [34] = { 24.7, 48.9, 40, 300 }, + [35] = { 25, 48.9, 40, 300 }, + [36] = { 25.2, 48.6, 40, 300 }, + [37] = { 24.6, 48.3, 40, 300 }, + [38] = { 24.8, 48.3, 40, 300 }, + [39] = { 26.6, 48.3, 40, 300 }, + [40] = { 25.3, 48, 40, 300 }, + [41] = { 25.8, 47.9, 40, 300 }, + [42] = { 26, 47.4, 40, 300 }, + [43] = { 25.5, 47, 40, 300 }, + [44] = { 25.7, 46.8, 40, 300 }, + [45] = { 27.6, 40.7, 40, 300 }, + [46] = { 26.5, 40.6, 40, 300 }, + [47] = { 27.7, 39.1, 40, 300 }, + [48] = { 26.7, 39, 40, 300 }, + [49] = { 26.7, 38.1, 40, 300 }, + [50] = { 27.8, 38, 40, 300 }, + [51] = { 26.6, 36.5, 40, 300 }, + [52] = { 28.8, 35.8, 40, 300 }, + [53] = { 29, 35.6, 40, 300 }, + [54] = { 28.8, 35.5, 40, 300 }, + [55] = { 27.6, 35.1, 40, 300 }, + [56] = { 27.7, 33.7, 40, 300 }, + [57] = { 28.4, 33.4, 40, 300 }, + [58] = { 28.2, 33.2, 40, 300 }, + [59] = { 28.4, 33, 40, 300 }, + [60] = { 29.3, 32.9, 40, 300 }, + [61] = { 28.4, 32.9, 40, 300 }, + [62] = { 29.2, 31.9, 40, 300 }, + [63] = { 28.3, 29.4, 40, 300 }, + [64] = { 29.4, 28.6, 40, 300 }, + [65] = { 30.3, 28.6, 40, 300 }, + [66] = { 28.3, 28.2, 40, 300 }, + [67] = { 29.6, 27.8, 40, 300 }, + [68] = { 29, 27.6, 40, 300 }, + [69] = { 30.2, 27.5, 40, 300 }, + [70] = { 29.1, 27.4, 40, 300 }, + [71] = { 28.7, 27.2, 40, 300 }, + [72] = { 29.3, 26.4, 40, 300 }, + [73] = { 30.3, 25.4, 40, 300 }, + }, + ["lvl"] = "16-17", + }, + [459] = { + ["coords"] = { + [1] = { 49.9, 42.6, 12, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [460] = { + ["coords"] = { + [1] = { 28.6, 66.1, 1, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [461] = { + ["coords"] = { + [1] = { 39.2, 85, 1519, 490 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [462] = { + ["coords"] = { + [1] = { 62, 75.5, 40, 108000 }, + [2] = { 62.6, 74.2, 40, 108000 }, + [3] = { 61.5, 73.9, 40, 108000 }, + [4] = { 36.8, 62.5, 40, 108000 }, + [5] = { 40.6, 60.5, 40, 108000 }, + [6] = { 45.7, 60.1, 40, 108000 }, + [7] = { 65.5, 58.7, 40, 108000 }, + [8] = { 63.9, 58.2, 40, 108000 }, + [9] = { 46.1, 57.7, 40, 108000 }, + [10] = { 63.3, 57, 40, 108000 }, + [11] = { 44.1, 46.2, 40, 108000 }, + [12] = { 46.8, 44.2, 40, 108000 }, + [13] = { 45.4, 43.9, 40, 108000 }, + [14] = { 50.6, 43.5, 40, 108000 }, + [15] = { 51.1, 23.8, 40, 108000 }, + [16] = { 54.8, 23.2, 40, 108000 }, + }, + ["lvl"] = "26", + ["rnk"] = "4", + }, + [464] = { + ["coords"] = { + [1] = { 15.3, 71.5, 44, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [466] = { + ["coords"] = { + [1] = { 69.2, 82.7, 1519, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "62", + ["rnk"] = "1", + }, + [470] = "_", + [471] = { + ["coords"] = { + [1] = { 62.1, 48.1, 12, 9000 }, + }, + ["lvl"] = "10", + ["rnk"] = "4", + }, + [472] = { + ["coords"] = { + [1] = { 68.1, 44.9, 12, 9000 }, + }, + ["lvl"] = "12", + ["rnk"] = "4", + }, + [473] = { + ["coords"] = { + [1] = { 71.1, 80.6, 12, 120 }, + }, + ["lvl"] = "10", + }, + [474] = { + ["coords"] = { + [1] = { 50.7, 83.2, 12, 270 }, + [2] = { 29, 62.6, 12, 270 }, + [3] = { 28.9, 62.2, 12, 270 }, + [4] = { 29.7, 61, 12, 270 }, + [5] = { 29.1, 60.9, 12, 270 }, + [6] = { 52.6, 58.8, 12, 270 }, + [7] = { 29.5, 58.2, 12, 270 }, + [8] = { 72.5, 56.4, 12, 270 }, + [9] = { 74, 55.6, 12, 270 }, + [10] = { 72.3, 55, 12, 270 }, + [11] = { 73.1, 54.2, 12, 270 }, + [12] = { 74.5, 54, 12, 270 }, + [13] = { 76.6, 53.4, 12, 270 }, + [14] = { 73.4, 52.5, 12, 270 }, + [15] = { 74.6, 52.4, 12, 270 }, + [16] = { 74.9, 52.1, 12, 270 }, + [17] = { 71.7, 52, 12, 270 }, + [18] = { 74.1, 51.8, 12, 270 }, + [19] = { 77.2, 51.7, 12, 270 }, + [20] = { 73.6, 51.2, 12, 270 }, + [21] = { 74.2, 50.9, 12, 270 }, + [22] = { 73.4, 49.8, 12, 270 }, + [23] = { 71.7, 49.7, 12, 270 }, + [24] = { 74.5, 49.3, 12, 270 }, + [25] = { 76.8, 48.6, 12, 270 }, + [26] = { 76, 47.4, 12, 270 }, + [27] = { 74.4, 47, 12, 270 }, + [28] = { 72.6, 46.4, 12, 270 }, + }, + ["lvl"] = "9-10", + }, + [475] = { + ["coords"] = { + [1] = { 37.8, 87.1, 12, 270 }, + [2] = { 39.1, 85, 12, 270 }, + [3] = { 37.7, 84.9, 12, 270 }, + [4] = { 39.8, 84.2, 12, 270 }, + [5] = { 38.6, 84.1, 12, 270 }, + [6] = { 36.7, 84, 12, 270 }, + [7] = { 38, 83.8, 12, 270 }, + [8] = { 37.4, 83.5, 12, 270 }, + [9] = { 39.3, 83.2, 12, 270 }, + [10] = { 39.7, 82.9, 12, 270 }, + [11] = { 36, 82.7, 12, 270 }, + [12] = { 39.1, 82.6, 12, 270 }, + [13] = { 38.1, 82.6, 12, 270 }, + [14] = { 40.3, 82.5, 12, 270 }, + [15] = { 38.5, 82.3, 12, 270 }, + [16] = { 39.6, 82.1, 12, 270 }, + [17] = { 38.8, 81.8, 12, 270 }, + [18] = { 38, 81.6, 12, 270 }, + [19] = { 40.6, 81.6, 12, 270 }, + [20] = { 38.9, 81.5, 12, 270 }, + [21] = { 38.5, 81.5, 12, 270 }, + [22] = { 39, 81.4, 12, 270 }, + [23] = { 40.5, 81.2, 12, 270 }, + [24] = { 40.8, 81.1, 12, 270 }, + [25] = { 39, 80.7, 12, 270 }, + [26] = { 37.3, 80.6, 12, 270 }, + [27] = { 41.3, 80.4, 12, 270 }, + [28] = { 39.4, 80.4, 12, 270 }, + [29] = { 41.1, 80.3, 12, 270 }, + [30] = { 41.8, 79.7, 12, 270 }, + [31] = { 36.2, 79.1, 12, 270 }, + [32] = { 37.6, 79, 12, 270 }, + [33] = { 38.7, 78.6, 12, 270 }, + [34] = { 40.7, 78.3, 12, 270 }, + [35] = { 41.1, 78.2, 12, 270 }, + [36] = { 40.2, 77.5, 12, 270 }, + }, + ["lvl"] = "5-6", + }, + [476] = { + ["coords"] = { + [1] = { 63.5, 58.3, 12, 270 }, + [2] = { 64.7, 56.9, 12, 270 }, + [3] = { 64.5, 56.7, 12, 270 }, + [4] = { 64.5, 56.6, 12, 270 }, + [5] = { 61, 56.5, 12, 270 }, + [6] = { 62.2, 55.7, 12, 270 }, + [7] = { 61.2, 51.6, 12, 270 }, + [8] = { 61.1, 49.3, 12, 270 }, + }, + ["lvl"] = "7-8", + }, + [478] = { + ["coords"] = { + [1] = { 26.5, 95.4, 12, 270 }, + [2] = { 27.7, 94.5, 12, 270 }, + [3] = { 25.4, 94.2, 12, 270 }, + [4] = { 24.5, 94.1, 12, 270 }, + [5] = { 23.7, 94.1, 12, 270 }, + [6] = { 24.3, 93.8, 12, 270 }, + [7] = { 28.6, 93, 12, 270 }, + [8] = { 24.8, 92.9, 12, 270 }, + [9] = { 26, 92.7, 12, 270 }, + [10] = { 26.1, 92.1, 12, 270 }, + [11] = { 26, 92.1, 12, 270 }, + [12] = { 26.2, 90.3, 12, 270 }, + [13] = { 25.5, 90.1, 12, 270 }, + [14] = { 27.5, 89.5, 12, 270 }, + [15] = { 25.1, 89.2, 12, 270 }, + [16] = { 25.3, 89.1, 12, 270 }, + [17] = { 25.4, 88.6, 12, 270 }, + [18] = { 27.8, 88.4, 12, 270 }, + [19] = { 28, 88.2, 12, 270 }, + [20] = { 28.5, 88.2, 12, 270 }, + [21] = { 28.6, 87.3, 12, 270 }, + [22] = { 25.1, 87, 12, 270 }, + [23] = { 26.3, 86.8, 12, 270 }, + [24] = { 26.5, 86.8, 12, 270 }, + [25] = { 27.4, 86.2, 12, 270 }, + [26] = { 27.6, 86.1, 12, 270 }, + [27] = { 26.3, 85, 12, 270 }, + [28] = { 27.3, 82.4, 12, 270 }, + [29] = { 26.4, 81.4, 12, 270 }, + [30] = { 28, 81.3, 12, 270 }, + [31] = { 27.5, 79.9, 12, 270 }, + [32] = { 68.6, 54.8, 12, 270 }, + [33] = { 68.2, 50.9, 12, 270 }, + [34] = { 68.2, 48.9, 12, 270 }, + [35] = { 67.8, 45.7, 12, 270 }, + [36] = { 68.9, 45.2, 12, 270 }, + [37] = { 68.1, 45.1, 12, 270 }, + [38] = { 67.8, 44.9, 12, 270 }, + [39] = { 66.7, 43.8, 12, 270 }, + [40] = { 68.8, 43.2, 12, 270 }, + [41] = { 67.7, 42.3, 12, 270 }, + [42] = { 65.7, 42.1, 12, 270 }, + [43] = { 66.7, 41.3, 12, 270 }, + [44] = { 66, 41, 12, 270 }, + [45] = { 66.7, 40.9, 12, 270 }, + [46] = { 66.9, 40.6, 12, 270 }, + [47] = { 69.1, 40.4, 12, 270 }, + [48] = { 66.6, 40.3, 12, 270 }, + [49] = { 76.8, 40.2, 12, 270 }, + [50] = { 67.8, 40.2, 12, 270 }, + [51] = { 68, 39.8, 12, 270 }, + [52] = { 69.7, 39.3, 12, 270 }, + [53] = { 67.6, 39.2, 12, 270 }, + [54] = { 68.9, 38.8, 12, 270 }, + [55] = { 68.2, 38.7, 12, 270 }, + [56] = { 69.6, 38.7, 12, 270 }, + [57] = { 69.2, 38.4, 12, 270 }, + [58] = { 72.9, 38.3, 12, 270 }, + [59] = { 65.9, 30.7, 40, 270 }, + [60] = { 66.4, 30.4, 40, 270 }, + [61] = { 67.3, 25.9, 40, 270 }, + [62] = { 67.4, 25.8, 40, 270 }, + [63] = { 67.2, 23.8, 40, 270 }, + }, + ["lvl"] = "9-10", + }, + [480] = { + ["coords"] = { + [1] = { 54.4, 25.6, 40, 300 }, + [2] = { 53.4, 25.6, 40, 300 }, + [3] = { 53.9, 25.1, 40, 300 }, + [4] = { 55, 25.1, 40, 300 }, + [5] = { 53.4, 25, 40, 300 }, + [6] = { 55.3, 24.6, 40, 300 }, + [7] = { 54.4, 24.4, 40, 300 }, + [8] = { 57.1, 21.2, 40, 300 }, + [9] = { 56.6, 21, 40, 300 }, + [10] = { 57.5, 20.8, 40, 300 }, + [11] = { 57.1, 20.1, 40, 300 }, + [12] = { 57.4, 19.8, 40, 300 }, + [13] = { 58.2, 19, 40, 300 }, + [14] = { 59.1, 18.2, 40, 300 }, + [15] = { 57.5, 18.1, 40, 300 }, + [16] = { 58.2, 16.6, 40, 300 }, + }, + ["lvl"] = "9-10", + }, + [481] = { + ["coords"] = { + [1] = { 56.7, 19.8, 40, 300 }, + [2] = { 56.6, 19.3, 40, 300 }, + [3] = { 56.1, 19.2, 40, 300 }, + [4] = { 56.8, 19.2, 40, 300 }, + [5] = { 56.7, 18.9, 40, 300 }, + }, + ["lvl"] = "10-11", + }, + [482] = { + ["coords"] = { + [1] = { 66, 74.1, 1519, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [483] = { + ["coords"] = { + [1] = { 64, 58.9, 876, 120 }, + [2] = { 57.2, 52.7, 876, 120 }, + [3] = { 66.6, 73.4, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [485] = { + ["coords"] = { + [1] = { 77.8, 85.7, 44, 300 }, + [2] = { 77.4, 85.7, 44, 300 }, + [3] = { 76, 84.6, 44, 300 }, + [4] = { 77, 83.4, 44, 300 }, + [5] = { 72.3, 81.7, 44, 300 }, + [6] = { 72.4, 80.1, 44, 300 }, + [7] = { 74.4, 78.8, 44, 300 }, + [8] = { 68.9, 78.4, 44, 300 }, + [9] = { 69.9, 76.7, 44, 300 }, + [10] = { 71.5, 74.8, 44, 300 }, + [11] = { 72.9, 74.6, 44, 300 }, + [12] = { 75.1, 74.3, 44, 300 }, + [13] = { 77.9, 73.3, 44, 300 }, + [14] = { 75.4, 72.6, 44, 300 }, + [15] = { 77.7, 69.4, 44, 300 }, + [16] = { 78, 67.4, 44, 300 }, + [17] = { 77.7, 67.3, 44, 300 }, + [18] = { 77.2, 67.2, 44, 300 }, + [19] = { 75.7, 63.6, 44, 300 }, + [20] = { 63, 63.4, 44, 300 }, + [21] = { 64.5, 62.1, 44, 300 }, + [22] = { 37.2, 45.7, 44, 300 }, + [23] = { 37.1, 45.6, 44, 300 }, + [24] = { 62.7, 45.5, 44, 300 }, + [25] = { 37.1, 45.2, 44, 300 }, + [26] = { 60.6, 43, 44, 300 }, + [27] = { 60.2, 42.1, 44, 300 }, + [28] = { 62.6, 41.4, 44, 300 }, + [29] = { 38.3, 41.2, 44, 300 }, + [30] = { 39.9, 40.1, 44, 300 }, + [31] = { 45.4, 38.9, 44, 300 }, + [32] = { 41.1, 37.6, 44, 300 }, + [33] = { 41.8, 37, 44, 300 }, + [34] = { 44.5, 19.4, 44, 300 }, + [35] = { 42.5, 17.9, 44, 300 }, + }, + ["lvl"] = "20-21", + }, + [486] = { + ["coords"] = { + [1] = { 69.3, 59.9, 44, 900 }, + }, + ["lvl"] = "24", + ["rnk"] = "1", + }, + [491] = { + ["coords"] = { + [1] = { 57, 47.2, 40, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [496] = "_", + [497] = "_", + [498] = "_", + [500] = { + ["coords"] = { + [1] = { 40.2, 33.2, 40, 300 }, + [2] = { 39, 32, 40, 300 }, + [3] = { 36.6, 31.9, 40, 300 }, + [4] = { 36.5, 31.7, 40, 300 }, + [5] = { 34, 29.2, 40, 300 }, + [6] = { 38.1, 28.3, 40, 300 }, + [7] = { 37.1, 28.3, 40, 300 }, + [8] = { 33.7, 28.3, 40, 300 }, + [9] = { 42.2, 22, 40, 300 }, + [10] = { 41.6, 20.8, 40, 300 }, + [11] = { 41.8, 20.7, 40, 300 }, + [12] = { 41.9, 20.5, 40, 300 }, + [13] = { 41.8, 20.4, 40, 300 }, + [14] = { 52.1, 15.2, 40, 300 }, + [15] = { 52.2, 14.9, 40, 300 }, + [16] = { 40.8, 22, 40, 300 }, + [17] = { 42, 20.9, 40, 300 }, + [18] = { 41, 20.7, 40, 300 }, + [19] = { 42.3, 19.9, 40, 300 }, + [20] = { 41.7, 19.4, 40, 300 }, + [21] = { 45.6, 16.6, 40, 300 }, + [22] = { 43.9, 16.6, 40, 300 }, + [23] = { 44.6, 16.2, 40, 300 }, + [24] = { 46.4, 15.1, 40, 300 }, + [25] = { 51.9, 15.1, 40, 300 }, + [26] = { 42.9, 14.9, 40, 300 }, + [27] = { 44.6, 14.8, 40, 300 }, + [28] = { 52.1, 14.8, 40, 300 }, + [29] = { 45, 14.3, 40, 300 }, + [30] = { 57.2, 14.2, 40, 300 }, + [31] = { 44.7, 14.2, 40, 300 }, + [32] = { 52.2, 14.1, 40, 300 }, + [33] = { 52.3, 14.1, 40, 300 }, + [34] = { 44.9, 14, 40, 300 }, + [35] = { 44.7, 13.9, 40, 300 }, + [36] = { 45, 13.7, 40, 300 }, + [37] = { 44.9, 13.6, 40, 300 }, + [38] = { 56.3, 13.6, 40, 300 }, + [39] = { 56.5, 13.5, 40, 300 }, + [40] = { 57.9, 13.4, 40, 300 }, + [41] = { 56.3, 13.4, 40, 300 }, + [42] = { 57.9, 13.2, 40, 300 }, + [43] = { 45.3, 13.1, 40, 300 }, + [44] = { 56.9, 13, 40, 300 }, + [45] = { 56.6, 13, 40, 300 }, + [46] = { 56.3, 12.7, 40, 300 }, + [47] = { 45, 12.6, 40, 300 }, + [48] = { 56.5, 12.6, 40, 300 }, + }, + ["lvl"] = "12-13", + }, + [501] = { + ["coords"] = { + [1] = { 32.5, 73.7, 40, 300 }, + [2] = { 31.8, 73.4, 40, 300 }, + [3] = { 31.6, 72.3, 40, 300 }, + [4] = { 32.3, 72.2, 40, 300 }, + [5] = { 31.3, 70.6, 40, 300 }, + [6] = { 31, 69.6, 40, 300 }, + [7] = { 32.8, 68.4, 40, 300 }, + [8] = { 32.8, 68, 40, 300 }, + [9] = { 29.9, 66.3, 40, 300 }, + [10] = { 29.2, 66.1, 40, 300 }, + [11] = { 29.2, 65.5, 40, 300 }, + [12] = { 29.4, 65.4, 40, 300 }, + [13] = { 28.6, 65.4, 40, 300 }, + [14] = { 29.5, 65.3, 40, 300 }, + [15] = { 29.1, 65.3, 40, 300 }, + [16] = { 28.9, 64.7, 40, 300 }, + [17] = { 29.8, 63.8, 40, 300 }, + [18] = { 35.9, 61.6, 40, 300 }, + [19] = { 35.5, 61.5, 40, 300 }, + [20] = { 35.8, 61.1, 40, 300 }, + [21] = { 29.9, 59.6, 40, 300 }, + [22] = { 30.3, 58.1, 40, 300 }, + [23] = { 30.6, 58, 40, 300 }, + [24] = { 30.3, 57.9, 40, 300 }, + [25] = { 30.4, 57.9, 40, 300 }, + [26] = { 30.4, 57.7, 40, 300 }, + [27] = { 30.3, 57.5, 40, 300 }, + [28] = { 30, 56.6, 40, 300 }, + [29] = { 30.4, 53.7, 40, 300 }, + [30] = { 30.4, 52.4, 40, 300 }, + [31] = { 31.6, 52.3, 40, 300 }, + [32] = { 29.6, 52.3, 40, 300 }, + [33] = { 30.7, 52.1, 40, 300 }, + [34] = { 30.4, 52, 40, 300 }, + [35] = { 30.7, 51.8, 40, 300 }, + [36] = { 30.5, 51.7, 40, 300 }, + [37] = { 31.5, 50.8, 40, 300 }, + [38] = { 29.6, 50.8, 40, 300 }, + [39] = { 30.5, 50.7, 40, 300 }, + [40] = { 30.2, 49.9, 40, 300 }, + [41] = { 30.1, 49.8, 40, 300 }, + [42] = { 29.5, 49.7, 40, 300 }, + [43] = { 30.4, 49.6, 40, 300 }, + [44] = { 30.1, 49.4, 40, 300 }, + [45] = { 30.2, 49.3, 40, 300 }, + [46] = { 31.3, 49, 40, 300 }, + [47] = { 29.8, 48.1, 40, 300 }, + [48] = { 30.4, 48, 40, 300 }, + [49] = { 32.8, 29.4, 40, 300 }, + }, + ["lvl"] = "14-15", + }, + [503] = { + ["coords"] = { + [1] = { 21.1, 27.2, 10, 27000 }, + }, + ["lvl"] = "31", + ["rnk"] = "2", + }, + [504] = { + ["coords"] = { + [1] = { 32.2, 34.6, 40, 300 }, + [2] = { 31.7, 34.6, 40, 300 }, + [3] = { 32, 33.9, 40, 300 }, + [4] = { 31.4, 33.8, 40, 300 }, + [5] = { 31.3, 33.7, 40, 300 }, + [6] = { 31.3, 33.6, 40, 300 }, + [7] = { 32.5, 33.4, 40, 300 }, + [8] = { 30.9, 33.1, 40, 300 }, + [9] = { 31.7, 32.9, 40, 300 }, + [10] = { 31.3, 32.5, 40, 300 }, + [11] = { 46.6, 53.4, 40, 300 }, + [12] = { 46.7, 52.5, 40, 300 }, + [13] = { 48.6, 47.7, 40, 300 }, + [14] = { 50.6, 47.3, 40, 300 }, + [15] = { 50.7, 47.2, 40, 300 }, + [16] = { 48.2, 47, 40, 300 }, + [17] = { 51.4, 46.8, 40, 300 }, + [18] = { 48.2, 46.7, 40, 300 }, + [19] = { 51.6, 46.6, 40, 300 }, + [20] = { 48.2, 46.6, 40, 300 }, + [21] = { 49.5, 46.4, 40, 300 }, + [22] = { 47.2, 46.2, 40, 300 }, + [23] = { 47.8, 45.8, 40, 300 }, + [24] = { 48.5, 45.2, 40, 300 }, + [25] = { 48.5, 45.1, 40, 300 }, + [26] = { 47.7, 43.4, 40, 300 }, + [27] = { 41.1, 41.8, 40, 300 }, + [28] = { 41.5, 41.1, 40, 300 }, + [29] = { 40.8, 40.9, 40, 300 }, + [30] = { 50.3, 40.8, 40, 300 }, + [31] = { 41.4, 40.6, 40, 300 }, + [32] = { 41.8, 40.5, 40, 300 }, + [33] = { 51.2, 40.4, 40, 300 }, + [34] = { 50.8, 40.1, 40, 300 }, + [35] = { 46.3, 39.7, 40, 300 }, + [36] = { 45.8, 39.6, 40, 300 }, + [37] = { 40.8, 39.5, 40, 300 }, + [38] = { 51.1, 39.4, 40, 300 }, + [39] = { 50.6, 39.3, 40, 300 }, + [40] = { 46.2, 39.1, 40, 300 }, + [41] = { 46.1, 39.1, 40, 300 }, + [42] = { 46.8, 39.1, 40, 300 }, + [43] = { 46, 38.2, 40, 300 }, + [44] = { 46.6, 37.8, 40, 300 }, + [45] = { 46.5, 37.6, 40, 300 }, + [46] = { 46.4, 36.9, 40, 300 }, + [47] = { 47.4, 36.3, 40, 300 }, + [48] = { 46.6, 27.3, 40, 300 }, + [49] = { 45.3, 26.9, 40, 300 }, + [50] = { 43.9, 26.8, 40, 300 }, + [51] = { 46, 26.6, 40, 300 }, + [52] = { 44.7, 26.3, 40, 300 }, + [53] = { 44, 25.9, 40, 300 }, + [54] = { 44.2, 25.8, 40, 300 }, + [55] = { 44.7, 25.6, 40, 300 }, + [56] = { 45.9, 25.6, 40, 300 }, + [57] = { 43.9, 25.2, 40, 300 }, + [58] = { 44.9, 25.2, 40, 300 }, + [59] = { 44.6, 24.8, 40, 300 }, + [60] = { 44.5, 24.6, 40, 300 }, + [61] = { 44.7, 24, 40, 300 }, + [62] = { 44.1, 23.3, 40, 300 }, + [63] = { 44.8, 22.4, 40, 300 }, + [64] = { 44.8, 22, 40, 300 }, + [65] = { 45.5, 21.7, 40, 300 }, + [66] = { 44.5, 21.5, 40, 300 }, + [67] = { 45.3, 21.2, 40, 300 }, + [68] = { 45.5, 21, 40, 300 }, + [69] = { 48.7, 20.9, 40, 300 }, + [70] = { 48.8, 20.7, 40, 300 }, + [71] = { 45.7, 20.5, 40, 300 }, + [72] = { 48.8, 20.4, 40, 300 }, + [73] = { 48.4, 20.3, 40, 300 }, + [74] = { 48.4, 19.9, 40, 300 }, + [75] = { 49.8, 19.8, 40, 300 }, + [76] = { 46.6, 19.6, 40, 300 }, + [77] = { 46, 19.4, 40, 300 }, + [78] = { 44.7, 19.4, 40, 300 }, + [79] = { 48.3, 19.2, 40, 300 }, + [80] = { 49.4, 19.2, 40, 300 }, + [81] = { 46, 18.9, 40, 300 }, + [82] = { 50.1, 18.4, 40, 300 }, + [83] = { 45.5, 18.1, 40, 300 }, + }, + ["lvl"] = "12-13", + }, + [505] = { + ["coords"] = { + [1] = { 67.2, 76.6, 44, 300 }, + [2] = { 57.1, 46.6, 44, 300 }, + [3] = { 53.8, 43.6, 44, 300 }, + [4] = { 55.9, 43.4, 44, 300 }, + [5] = { 55.1, 43.2, 44, 300 }, + [6] = { 52.4, 42.1, 44, 300 }, + [7] = { 51.9, 41.2, 44, 300 }, + [8] = { 50.6, 40.6, 44, 300 }, + [9] = { 52.9, 39, 44, 300 }, + [10] = { 47.8, 38.5, 44, 300 }, + [11] = { 53.8, 38.2, 44, 300 }, + [12] = { 52.5, 37.6, 44, 300 }, + [13] = { 53.7, 36.4, 44, 300 }, + }, + ["lvl"] = "19-20", + }, + [506] = { + ["coords"] = { + [1] = { 36.9, 31.9, 40, 9000 }, + }, + ["lvl"] = "18", + ["rnk"] = "4", + }, + [507] = { + ["coords"] = { + [1] = { 61.7, 36.8, 10, 27000 }, + }, + ["lvl"] = "32", + ["rnk"] = "2", + }, + [509] = "_", + [513] = { + ["coords"] = { + [1] = { 29.3, 34.4, 40, 300 }, + [2] = { 29.6, 27.2, 40, 300 }, + [3] = { 30.4, 26.7, 40, 300 }, + [4] = { 32.2, 26.6, 40, 300 }, + [5] = { 32.4, 26.6, 40, 300 }, + [6] = { 32.5, 26.3, 40, 300 }, + [7] = { 31.8, 26.1, 40, 300 }, + [8] = { 32.3, 25.4, 40, 300 }, + [9] = { 34.5, 22.7, 40, 300 }, + [10] = { 35.8, 22.6, 40, 300 }, + [11] = { 35.5, 22.1, 40, 300 }, + [12] = { 34.6, 22, 40, 300 }, + [13] = { 35.4, 21.8, 40, 300 }, + [14] = { 35.8, 21.6, 40, 300 }, + [15] = { 34.9, 20.9, 40, 300 }, + [16] = { 35.6, 20.8, 40, 300 }, + [17] = { 34.8, 20.4, 40, 300 }, + [18] = { 33.9, 18.7, 40, 300 }, + [19] = { 34.7, 18.4, 40, 300 }, + [20] = { 33.5, 17.9, 40, 300 }, + [21] = { 33.5, 17.7, 40, 300 }, + [22] = { 32.9, 17.5, 40, 300 }, + [23] = { 33.7, 17.5, 40, 300 }, + [24] = { 34, 17.4, 40, 300 }, + [25] = { 33.4, 17.2, 40, 300 }, + [26] = { 34.1, 17.2, 40, 300 }, + [27] = { 33.5, 17.1, 40, 300 }, + [28] = { 35, 16.9, 40, 300 }, + [29] = { 34, 16.8, 40, 300 }, + [30] = { 33.7, 16.7, 40, 300 }, + [31] = { 34.3, 16.7, 40, 300 }, + [32] = { 34.1, 16.7, 40, 300 }, + [33] = { 37.4, 16.5, 40, 300 }, + [34] = { 33.7, 16.5, 40, 300 }, + [35] = { 33.9, 16.4, 40, 300 }, + [36] = { 38.1, 16.3, 40, 300 }, + [37] = { 38.8, 16.2, 40, 300 }, + [38] = { 34.1, 16.2, 40, 300 }, + [39] = { 34.4, 16.1, 40, 300 }, + [40] = { 33.9, 16.1, 40, 300 }, + [41] = { 34.3, 15.9, 40, 300 }, + [42] = { 34.6, 15.9, 40, 300 }, + [43] = { 34.2, 15.9, 40, 300 }, + [44] = { 37.2, 15.8, 40, 300 }, + [45] = { 34.4, 15.7, 40, 300 }, + [46] = { 34.5, 15.6, 40, 300 }, + [47] = { 39, 15.4, 40, 300 }, + [48] = { 38.3, 15.3, 40, 300 }, + [49] = { 37.7, 15.2, 40, 300 }, + [50] = { 33.4, 15.1, 40, 300 }, + [51] = { 38.9, 14.7, 40, 300 }, + [52] = { 38.5, 14.3, 40, 300 }, + }, + ["lvl"] = "14-15", + }, + [514] = { + ["coords"] = { + [1] = { 41.7, 65.5, 12, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "24", + }, + [515] = { + ["coords"] = { + [1] = { 53, 11.3, 40, 300 }, + [2] = { 53.2, 11.1, 40, 300 }, + [3] = { 53.2, 10.6, 40, 300 }, + [4] = { 52.2, 10.3, 40, 300 }, + [5] = { 55.3, 10.1, 40, 300 }, + [6] = { 47.4, 9.9, 40, 300 }, + [7] = { 53.9, 9.6, 40, 300 }, + [8] = { 56.3, 9.6, 40, 300 }, + [9] = { 52.7, 9.6, 40, 300 }, + [10] = { 54.1, 9.6, 40, 300 }, + [11] = { 55.3, 9.5, 40, 300 }, + [12] = { 47.4, 9.4, 40, 300 }, + [13] = { 52, 9.3, 40, 300 }, + [14] = { 55.7, 8.9, 40, 300 }, + [15] = { 45, 8.9, 40, 300 }, + [16] = { 53.1, 8.9, 40, 300 }, + [17] = { 56.5, 8.8, 40, 300 }, + [18] = { 44.5, 8.8, 40, 300 }, + [19] = { 55.7, 8.6, 40, 300 }, + [20] = { 45.4, 8.2, 40, 300 }, + [21] = { 44.9, 8.2, 40, 300 }, + [22] = { 45, 8.1, 40, 300 }, + [23] = { 55.6, 8, 40, 300 }, + [24] = { 43.9, 7.9, 40, 300 }, + [25] = { 44.7, 7.9, 40, 300 }, + [26] = { 44.8, 7.7, 40, 300 }, + [27] = { 55.9, 7.6, 40, 300 }, + [28] = { 55.7, 7.3, 40, 300 }, + }, + ["lvl"] = "11-12", + }, + [516] = "_", + [517] = { + ["coords"] = { + [1] = { 34.1, 86.3, 40, 300 }, + [2] = { 34.6, 86.2, 40, 300 }, + [3] = { 34.5, 85.9, 40, 300 }, + [4] = { 35.5, 85.9, 40, 300 }, + [5] = { 35, 85.4, 40, 300 }, + [6] = { 34.6, 85.3, 40, 300 }, + [7] = { 35.1, 85.3, 40, 300 }, + [8] = { 33.9, 84.8, 40, 300 }, + [9] = { 34.9, 84.5, 40, 300 }, + [10] = { 34.6, 84.3, 40, 300 }, + [11] = { 35.3, 84.2, 40, 300 }, + [12] = { 34.8, 84.2, 40, 300 }, + [13] = { 33.8, 83.2, 40, 300 }, + [14] = { 28, 75.7, 40, 300 }, + [15] = { 27.3, 75.5, 40, 300 }, + [16] = { 26.5, 74.8, 40, 300 }, + [17] = { 27.9, 74.5, 40, 300 }, + [18] = { 26.1, 74.4, 40, 300 }, + [19] = { 27.2, 74.4, 40, 300 }, + [20] = { 25.5, 74, 40, 300 }, + [21] = { 26.6, 73.8, 40, 300 }, + [22] = { 25.9, 73.7, 40, 300 }, + [23] = { 26.1, 73.7, 40, 300 }, + [24] = { 26.8, 73.2, 40, 300 }, + [25] = { 28, 73.1, 40, 300 }, + [26] = { 27.1, 72.7, 40, 300 }, + [27] = { 26, 72.2, 40, 300 }, + [28] = { 26.8, 72.1, 40, 300 }, + [29] = { 26.6, 72, 40, 300 }, + [30] = { 27.1, 71.7, 40, 300 }, + [31] = { 26.2, 71.7, 40, 300 }, + [32] = { 28.4, 70.3, 40, 300 }, + [33] = { 26.8, 70.2, 40, 300 }, + [34] = { 27.7, 70, 40, 300 }, + [35] = { 28.2, 69.3, 40, 300 }, + [36] = { 28, 69.2, 40, 300 }, + [37] = { 28.2, 69, 40, 300 }, + [38] = { 27.7, 68.8, 40, 300 }, + [39] = { 26.6, 60.3, 40, 300 }, + [40] = { 27.9, 60, 40, 300 }, + [41] = { 27.5, 59.9, 40, 300 }, + [42] = { 27.7, 59.9, 40, 300 }, + [43] = { 26.8, 59.5, 40, 300 }, + [44] = { 26.1, 59, 40, 300 }, + [45] = { 27.3, 58.7, 40, 300 }, + [46] = { 27.7, 58.6, 40, 300 }, + [47] = { 26.7, 58.2, 40, 300 }, + [48] = { 27.4, 57.9, 40, 300 }, + [49] = { 23.7, 57.1, 40, 300 }, + [50] = { 27, 55.3, 40, 300 }, + [51] = { 27.3, 54.8, 40, 300 }, + [52] = { 27.8, 54.2, 40, 300 }, + [53] = { 26.9, 54.2, 40, 300 }, + [54] = { 27.8, 54, 40, 300 }, + [55] = { 27.5, 53.6, 40, 300 }, + [56] = { 26.9, 53.4, 40, 300 }, + [57] = { 27.7, 52.9, 40, 300 }, + [58] = { 27.4, 52.5, 40, 300 }, + [59] = { 99.8, 6.4, 409, 300 }, + [60] = { 99, 6.2, 409, 300 }, + [61] = { 98, 5.3, 409, 300 }, + [62] = { 99.7, 5, 409, 300 }, + [63] = { 97.6, 4.9, 409, 300 }, + [64] = { 98.8, 4.8, 409, 300 }, + [65] = { 96.8, 4.4, 409, 300 }, + [66] = { 98.2, 4.1, 409, 300 }, + [67] = { 97.3, 4, 409, 300 }, + [68] = { 97.5, 3.9, 409, 300 }, + [69] = { 98.4, 3.3, 409, 300 }, + [70] = { 99.9, 3.2, 409, 300 }, + [71] = { 98.8, 2.8, 409, 300 }, + [72] = { 97.4, 2.2, 409, 300 }, + [73] = { 98.4, 2.1, 409, 300 }, + [74] = { 98.1, 1.9, 409, 300 }, + [75] = { 98.7, 1.6, 409, 300 }, + [76] = { 97.7, 1.5, 409, 300 }, + }, + ["lvl"] = "17-18", + }, + [519] = { + ["coords"] = { + [1] = { 31.6, 26, 40, 9000 }, + }, + ["lvl"] = "15", + ["rnk"] = "4", + }, + [520] = { + ["coords"] = { + [1] = { 27.3, 44.5, 40, 9000 }, + }, + ["lvl"] = "19", + ["rnk"] = "4", + }, + [521] = { + ["coords"] = { + [1] = { 14.9, 29, 10, 14400 }, + [2] = { 32.6, 25.8, 10, 14400 }, + [3] = { 64.3, 24, 10, 14400 }, + }, + ["lvl"] = "23", + ["rnk"] = "2", + }, + [523] = { + ["coords"] = { + [1] = { 56.6, 52.6, 40, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [524] = { + ["coords"] = { + [1] = { 45, 89.6, 12, 270 }, + [2] = { 45.6, 88, 12, 270 }, + [3] = { 44.6, 87.2, 12, 270 }, + [4] = { 54.9, 85.9, 12, 270 }, + [5] = { 53.6, 85.4, 12, 270 }, + [6] = { 46.6, 85.1, 12, 270 }, + [7] = { 52.7, 84.4, 12, 270 }, + [8] = { 56.4, 83.9, 12, 270 }, + [9] = { 44.5, 83.8, 12, 270 }, + [10] = { 54.4, 83.7, 12, 270 }, + [11] = { 71.4, 83.6, 12, 270 }, + [12] = { 45.9, 82.9, 12, 270 }, + [13] = { 72.9, 82.7, 12, 270 }, + [14] = { 70.7, 82.6, 12, 270 }, + [15] = { 66.9, 82.5, 12, 270 }, + [16] = { 57.2, 82.4, 12, 270 }, + [17] = { 53.2, 82.4, 12, 270 }, + [18] = { 43, 82, 12, 270 }, + [19] = { 74.4, 81.9, 12, 270 }, + [20] = { 52.6, 81.5, 12, 270 }, + [21] = { 60.5, 81.4, 12, 270 }, + [22] = { 65.7, 81.3, 12, 270 }, + [23] = { 46.6, 81, 12, 270 }, + [24] = { 44, 81, 12, 270 }, + [25] = { 48.3, 80.9, 12, 270 }, + [26] = { 54.7, 80.9, 12, 270 }, + [27] = { 73.5, 80.8, 12, 270 }, + [28] = { 58, 80.8, 12, 270 }, + [29] = { 64, 80.6, 12, 270 }, + [30] = { 46.4, 80.2, 12, 270 }, + [31] = { 74.4, 80.1, 12, 270 }, + [32] = { 53.4, 79.9, 12, 270 }, + [33] = { 66.9, 79.9, 12, 270 }, + [34] = { 54.9, 79.9, 12, 270 }, + [35] = { 62.9, 79.8, 12, 270 }, + [36] = { 60.6, 79.7, 12, 270 }, + [37] = { 50.1, 79.7, 12, 270 }, + [38] = { 61, 79.7, 12, 270 }, + [39] = { 64.6, 79.6, 12, 270 }, + [40] = { 72.7, 79.6, 12, 270 }, + [41] = { 47.2, 79.4, 12, 270 }, + [42] = { 44.1, 79.3, 12, 270 }, + [43] = { 44.5, 79.2, 12, 270 }, + [44] = { 50.1, 78.7, 12, 270 }, + [45] = { 47.9, 78.6, 12, 270 }, + [46] = { 46.6, 78.6, 12, 270 }, + [47] = { 73.8, 78.5, 12, 270 }, + [48] = { 64.1, 78.4, 12, 270 }, + [49] = { 61.7, 78.3, 12, 270 }, + [50] = { 61.6, 78.3, 12, 270 }, + [51] = { 60.3, 78.2, 12, 270 }, + [52] = { 60.2, 78.1, 12, 270 }, + [53] = { 52.1, 78, 12, 270 }, + [54] = { 54.2, 77.9, 12, 270 }, + [55] = { 43.3, 77.9, 12, 270 }, + [56] = { 65.8, 77.7, 12, 270 }, + [57] = { 61, 77.2, 12, 270 }, + [58] = { 67.3, 76.9, 12, 270 }, + [59] = { 65, 76.7, 12, 270 }, + [60] = { 55.5, 76.6, 12, 270 }, + [61] = { 59.1, 76.5, 12, 270 }, + [62] = { 73, 76.5, 12, 270 }, + [63] = { 53.4, 76.5, 12, 270 }, + [64] = { 57.2, 76.4, 12, 270 }, + [65] = { 62.9, 76.2, 12, 270 }, + [66] = { 49, 76.1, 12, 270 }, + [67] = { 48, 76, 12, 270 }, + [68] = { 63.9, 75.8, 12, 270 }, + [69] = { 52.5, 75.8, 12, 270 }, + [70] = { 47.3, 75.8, 12, 270 }, + [71] = { 49.5, 75.7, 12, 270 }, + [72] = { 65.5, 75.6, 12, 270 }, + [73] = { 69.5, 75.5, 12, 270 }, + [74] = { 62.1, 75.4, 12, 270 }, + [75] = { 60.1, 75.4, 12, 270 }, + [76] = { 54.6, 75.2, 12, 270 }, + [77] = { 71.8, 75.2, 12, 270 }, + [78] = { 56.4, 75.2, 12, 270 }, + [79] = { 58.6, 74.8, 12, 270 }, + [80] = { 58.5, 74.7, 12, 270 }, + [81] = { 51.9, 74.7, 12, 270 }, + [82] = { 59.3, 74.5, 12, 270 }, + [83] = { 59.1, 74.3, 12, 270 }, + [84] = { 53.1, 74, 12, 270 }, + [85] = { 55.6, 73.8, 12, 270 }, + [86] = { 57.1, 73.8, 12, 270 }, + [87] = { 70.8, 73.7, 12, 270 }, + [88] = { 58.4, 72.8, 12, 270 }, + [89] = { 69.7, 72.6, 12, 270 }, + [90] = { 58.3, 72.4, 12, 270 }, + }, + ["lvl"] = "7-8", + }, + [525] = { + ["coords"] = { + [1] = { 23.6, 77, 12, 270 }, + [2] = { 32.4, 76.7, 12, 270 }, + [3] = { 21.7, 76.4, 12, 270 }, + [4] = { 33.5, 76.1, 12, 270 }, + [5] = { 33.1, 75.7, 12, 270 }, + [6] = { 28.7, 75.5, 12, 270 }, + [7] = { 22.5, 75.5, 12, 270 }, + [8] = { 22.2, 75.5, 12, 270 }, + [9] = { 34.7, 75.5, 12, 270 }, + [10] = { 26.4, 75.3, 12, 270 }, + [11] = { 28.5, 74.8, 12, 270 }, + [12] = { 21.4, 74.3, 12, 270 }, + [13] = { 29.1, 74.3, 12, 270 }, + [14] = { 27.6, 74.2, 12, 270 }, + [15] = { 35.6, 73.6, 12, 270 }, + [16] = { 33.9, 73.6, 12, 270 }, + [17] = { 33.6, 73.4, 12, 270 }, + [18] = { 29.2, 72.9, 12, 270 }, + [19] = { 29.6, 72.9, 12, 270 }, + [20] = { 35.1, 72.4, 12, 270 }, + [21] = { 29.6, 72.2, 12, 270 }, + [22] = { 28.8, 72.2, 12, 270 }, + [23] = { 29.3, 72.2, 12, 270 }, + [24] = { 30.3, 72.1, 12, 270 }, + [25] = { 30.4, 71.9, 12, 270 }, + [26] = { 56.2, 71.5, 12, 270 }, + [27] = { 27.7, 71.3, 12, 270 }, + [28] = { 31.1, 71.3, 12, 270 }, + [29] = { 52.9, 71.3, 12, 270 }, + [30] = { 54.9, 71.1, 12, 270 }, + [31] = { 35.4, 70.7, 12, 270 }, + [32] = { 50.9, 70.5, 12, 270 }, + [33] = { 56.7, 70.1, 12, 270 }, + [34] = { 35, 70, 12, 270 }, + [35] = { 52, 70, 12, 270 }, + [36] = { 55.3, 70, 12, 270 }, + [37] = { 57.1, 69.7, 12, 270 }, + [38] = { 53.1, 69.7, 12, 270 }, + [39] = { 51.4, 69.7, 12, 270 }, + [40] = { 29.1, 69.6, 12, 270 }, + [41] = { 49.7, 69.4, 12, 270 }, + [42] = { 36.1, 69.2, 12, 270 }, + [43] = { 30.6, 69.1, 12, 270 }, + [44] = { 48.8, 68.6, 12, 270 }, + [45] = { 46, 68.5, 12, 270 }, + [46] = { 46.7, 68.4, 12, 270 }, + [47] = { 30.6, 68.1, 12, 270 }, + [48] = { 32.5, 67.7, 12, 270 }, + [49] = { 34.9, 67.5, 12, 270 }, + [50] = { 28.3, 67.4, 12, 270 }, + [51] = { 35, 66.7, 12, 270 }, + [52] = { 46, 65.3, 12, 270 }, + [53] = { 34.4, 65.2, 12, 270 }, + [54] = { 37.5, 64.9, 12, 270 }, + [55] = { 38.5, 63.8, 12, 270 }, + [56] = { 52, 63.8, 12, 270 }, + [57] = { 52.1, 63.7, 12, 270 }, + [58] = { 35.3, 63.4, 12, 270 }, + [59] = { 36.9, 63.2, 12, 270 }, + [60] = { 52.1, 63, 12, 270 }, + [61] = { 52.4, 62.7, 12, 270 }, + [62] = { 35.9, 62.6, 12, 270 }, + [63] = { 34.7, 62.4, 12, 270 }, + [64] = { 38.3, 62.2, 12, 270 }, + [65] = { 52.4, 62, 12, 270 }, + [66] = { 50.8, 61.7, 12, 270 }, + [67] = { 55.2, 61.5, 12, 270 }, + [68] = { 56.5, 61.5, 12, 270 }, + [69] = { 50.5, 61.2, 12, 270 }, + [70] = { 43.1, 61.1, 12, 270 }, + [71] = { 49.6, 61, 12, 270 }, + [72] = { 58.4, 60.6, 12, 270 }, + [73] = { 53.8, 60.4, 12, 270 }, + [74] = { 56.8, 60.4, 12, 270 }, + [75] = { 57.1, 59.8, 12, 270 }, + [76] = { 55, 59.4, 12, 270 }, + [77] = { 34.2, 59.3, 12, 270 }, + [78] = { 56.4, 59, 12, 270 }, + [79] = { 49.5, 58.3, 12, 270 }, + [80] = { 41.6, 58, 12, 270 }, + [81] = { 44.6, 57.8, 12, 270 }, + [82] = { 32.1, 56.2, 12, 270 }, + [83] = { 32.2, 55.5, 12, 270 }, + [84] = { 45.8, 55.4, 12, 270 }, + [85] = { 42.8, 55, 12, 270 }, + }, + ["lvl"] = "5-6", + }, + [531] = { + ["coords"] = { + [1] = { 21.8, 47.4, 10, 300 }, + [2] = { 16, 47.1, 10, 300 }, + [3] = { 16.8, 47.1, 10, 300 }, + [4] = { 20.6, 46.4, 10, 300 }, + [5] = { 15.3, 46.4, 10, 300 }, + [6] = { 23.8, 44, 10, 300 }, + [7] = { 22.9, 43.5, 10, 300 }, + [8] = { 22.4, 43, 10, 300 }, + [9] = { 16.2, 42.8, 10, 300 }, + [10] = { 23.3, 42.6, 10, 300 }, + [11] = { 22.2, 42.3, 10, 300 }, + [12] = { 15, 42, 10, 300 }, + [13] = { 22.7, 40.5, 10, 300 }, + }, + ["lvl"] = "24-25", + }, + [533] = { + ["coords"] = { + [1] = { 67.2, 75.6, 10, 300 }, + [2] = { 65, 75, 10, 300 }, + [3] = { 62.5, 72.4, 10, 300 }, + [4] = { 60.1, 72.2, 10, 300 }, + [5] = { 66.2, 71.1, 10, 300 }, + [6] = { 60.7, 70.9, 10, 300 }, + [7] = { 67.3, 70.8, 10, 300 }, + [8] = { 63.3, 70.3, 10, 300 }, + [9] = { 65.5, 69.1, 10, 300 }, + [10] = { 64.2, 67.7, 10, 300 }, + [11] = { 66.4, 66.4, 10, 300 }, + [12] = { 65.1, 66.4, 10, 300 }, + [13] = { 64.3, 66.2, 10, 300 }, + [14] = { 59.7, 52.8, 10, 300 }, + [15] = { 61.9, 52.1, 10, 300 }, + [16] = { 62, 47.8, 10, 300 }, + [17] = { 61.4, 45.9, 10, 300 }, + [18] = { 64.9, 45.7, 10, 300 }, + [19] = { 63.4, 44.2, 10, 300 }, + [20] = { 64.7, 42.9, 10, 300 }, + [21] = { 65.1, 38.6, 10, 300 }, + [22] = { 61.1, 37.3, 10, 300 }, + [23] = { 63.5, 37.2, 10, 300 }, + [24] = { 62.6, 35, 10, 300 }, + [25] = { 57.3, 30.4, 10, 300 }, + [26] = { 62, 30.2, 10, 300 }, + [27] = { 58.3, 29.3, 10, 300 }, + }, + ["lvl"] = "27-28", + }, + [534] = { + ["coords"] = { + [1] = { 63.5, 83.7, 10, 27000 }, + }, + ["lvl"] = "34", + ["rnk"] = "2", + }, + [535] = "_", + [536] = "_", + [538] = "_", + [539] = { + ["coords"] = { + [1] = { 13.2, 70.3, 10, 300 }, + [2] = { 11.9, 68.9, 10, 300 }, + [3] = { 10.1, 66.1, 10, 300 }, + [4] = { 11.4, 65.1, 10, 300 }, + [5] = { 9.2, 60.8, 10, 300 }, + [6] = { 12, 59.2, 10, 300 }, + [7] = { 10.4, 59.1, 10, 300 }, + [8] = { 9.4, 57.2, 10, 300 }, + [9] = { 10.7, 55.4, 10, 300 }, + [10] = { 9.5, 53.8, 10, 300 }, + [11] = { 10.8, 53, 10, 300 }, + [12] = { 12, 51.2, 10, 300 }, + [13] = { 9.5, 49.7, 10, 300 }, + [14] = { 9, 46.2, 10, 300 }, + [15] = { 7.9, 44.8, 10, 300 }, + [16] = { 9.4, 42.8, 10, 300 }, + [17] = { 7.9, 40.8, 10, 300 }, + [18] = { 12.5, 28.8, 10, 300 }, + [19] = { 23.8, 27.8, 10, 300 }, + [20] = { 28.8, 27.6, 10, 300 }, + [21] = { 34, 24.6, 10, 300 }, + [22] = { 40.1, 21.8, 10, 300 }, + [23] = { 37.1, 21.3, 10, 300 }, + [24] = { 72.1, 19, 10, 300 }, + [25] = { 69.6, 18.6, 10, 300 }, + [26] = { 84.7, 18.4, 10, 300 }, + [27] = { 66.4, 18, 10, 270 }, + [28] = { 66.7, 17.9, 10, 300 }, + [29] = { 74.8, 17.5, 10, 300 }, + [30] = { 66.3, 17.1, 10, 300 }, + [31] = { 46.5, 16.7, 10, 300 }, + [32] = { 60.8, 16.6, 10, 300 }, + [33] = { 68.3, 15.9, 10, 300 }, + [34] = { 47.6, 15.9, 10, 300 }, + [35] = { 54.5, 14.2, 10, 300 }, + [36] = { 53.9, 13.3, 10, 300 }, + [37] = { 73.3, 89.2, 12, 300 }, + [38] = { 70.2, 64.6, 40, 300 }, + [39] = { 69.5, 60.5, 40, 300 }, + [40] = { 70.4, 59.1, 40, 300 }, + [41] = { 69.6, 57.7, 40, 300 }, + [42] = { 69.3, 49.2, 40, 300 }, + [43] = { 68.5, 48.1, 40, 300 }, + [44] = { 68.4, 45.1, 40, 300 }, + }, + ["lvl"] = "18-19", + }, + [542] = "_", + [547] = { + ["coords"] = { + [1] = { 67.5, 70.9, 40, 300 }, + [2] = { 49.7, 68.7, 40, 300 }, + [3] = { 54.6, 68.3, 40, 300 }, + [4] = { 66.7, 68.1, 40, 300 }, + [5] = { 54.5, 68.1, 40, 300 }, + [6] = { 58.6, 68, 40, 300 }, + [7] = { 57.1, 67.7, 40, 300 }, + [8] = { 51.7, 67.6, 40, 300 }, + [9] = { 60.8, 67.6, 40, 300 }, + [10] = { 64.3, 66.7, 40, 300 }, + [11] = { 58.1, 62.3, 40, 300 }, + [12] = { 58.8, 59, 40, 300 }, + [13] = { 59, 56.9, 40, 300 }, + [14] = { 63.9, 55.1, 40, 300 }, + [15] = { 62.4, 51.5, 40, 300 }, + [16] = { 60.2, 50.5, 40, 300 }, + [17] = { 59, 49.1, 40, 300 }, + [18] = { 26.8, 79.4, 44, 300 }, + [19] = { 28.3, 79.3, 44, 300 }, + [20] = { 24.7, 78.5, 44, 300 }, + [21] = { 30.3, 78.3, 44, 300 }, + [22] = { 27.7, 75.4, 44, 300 }, + [23] = { 29, 73.3, 44, 300 }, + [24] = { 38.4, 73.3, 44, 300 }, + [25] = { 19.4, 72.8, 44, 300 }, + [26] = { 31.4, 72.2, 44, 300 }, + [27] = { 33.9, 71.3, 44, 300 }, + [28] = { 32.1, 71.1, 44, 300 }, + [29] = { 17.9, 71.1, 44, 300 }, + [30] = { 31.2, 67.9, 44, 300 }, + [31] = { 33.3, 65.8, 44, 300 }, + [32] = { 33.9, 61.1, 44, 300 }, + [33] = { 25.4, 60.5, 44, 300 }, + [34] = { 17.7, 55.3, 44, 300 }, + [35] = { 18.3, 54, 44, 300 }, + [36] = { 15.6, 54, 44, 300 }, + [37] = { 16.8, 52.3, 44, 300 }, + [38] = { 14.7, 49.5, 44, 300 }, + [39] = { 17.2, 46.9, 44, 300 }, + [40] = { 18.5, 43.6, 44, 300 }, + [41] = { 19.8, 40, 44, 300 }, + [42] = { 48.5, 25.3, 44, 300 }, + [43] = { 45.2, 20.5, 44, 300 }, + [44] = { 46.2, 17.1, 44, 300 }, + [45] = { 42.3, 16.3, 44, 300 }, + [46] = { 46.9, 14.3, 44, 300 }, + [47] = { 46.4, 10.4, 44, 300 }, + }, + ["lvl"] = "16-17", + }, + [548] = { + ["coords"] = { + [1] = { 48.8, 72.2, 44, 300 }, + [2] = { 48.5, 72.2, 44, 300 }, + [3] = { 47.3, 70.6, 44, 300 }, + [4] = { 48.7, 69.4, 44, 300 }, + [5] = { 50.2, 68.5, 44, 300 }, + [6] = { 48.3, 67.4, 44, 300 }, + [7] = { 57.7, 65.3, 44, 300 }, + [8] = { 60.2, 62.4, 44, 300 }, + [9] = { 57.5, 61.8, 44, 300 }, + [10] = { 55.3, 61.7, 44, 300 }, + [11] = { 59.9, 61.5, 44, 300 }, + [12] = { 58.1, 60.4, 44, 300 }, + [13] = { 58.6, 60.3, 44, 300 }, + [14] = { 55.9, 60.1, 44, 300 }, + }, + ["lvl"] = "17-18", + }, + [550] = { + ["coords"] = { + [1] = { 45.7, 68, 40, 120 }, + }, + ["lvl"] = "14-15", + }, + [564] = "_", + [565] = { + ["coords"] = { + [1] = { 12.9, 69.2, 10, 300 }, + [2] = { 10.6, 61, 10, 300 }, + [3] = { 11.6, 57.3, 10, 300 }, + [4] = { 10.7, 51.6, 10, 300 }, + [5] = { 10, 46.4, 10, 300 }, + [6] = { 9.6, 40.5, 10, 300 }, + [7] = { 11.6, 33.6, 10, 300 }, + [8] = { 11, 32.3, 10, 300 }, + [9] = { 13.2, 30.5, 10, 300 }, + [10] = { 21.5, 30.5, 10, 300 }, + [11] = { 25.2, 29.9, 10, 300 }, + [12] = { 16.1, 29.7, 10, 300 }, + [13] = { 33.1, 29.4, 10, 300 }, + [14] = { 20.3, 28.9, 10, 300 }, + [15] = { 34, 28.1, 10, 300 }, + [16] = { 20.4, 28.1, 10, 300 }, + [17] = { 19.3, 28.1, 10, 300 }, + [18] = { 13.8, 27.6, 10, 300 }, + [19] = { 16.3, 27.2, 10, 300 }, + [20] = { 14.3, 27.2, 10, 300 }, + [21] = { 15.6, 26.1, 10, 300 }, + [22] = { 35.1, 26, 10, 300 }, + [23] = { 37.6, 25.7, 10, 300 }, + [24] = { 20.4, 25.4, 10, 300 }, + [25] = { 18.9, 25.3, 10, 300 }, + [26] = { 39, 23.8, 10, 300 }, + [27] = { 67.1, 22.6, 10, 285 }, + [28] = { 40.1, 22.1, 10, 300 }, + [29] = { 67.3, 20.1, 10, 285 }, + [30] = { 56.2, 19.6, 10, 300 }, + [31] = { 61.5, 19.5, 10, 300 }, + [32] = { 54.8, 18.4, 10, 300 }, + [33] = { 66, 18, 10, 300 }, + [34] = { 31, 98.2, 12, 300 }, + [35] = { 31.3, 98, 12, 300 }, + }, + ["lvl"] = "20-21", + }, + [566] = "_", + [567] = "_", + [568] = { + ["coords"] = { + [1] = { 85.8, 58.6, 44, 300 }, + [2] = { 82.4, 55.5, 44, 300 }, + [3] = { 84.3, 54.4, 44, 300 }, + [4] = { 81.4, 48.4, 44, 300 }, + [5] = { 78.9, 47.4, 44, 300 }, + [6] = { 81.6, 46.6, 44, 300 }, + [7] = { 79.9, 45.3, 44, 300 }, + [8] = { 79.8, 45, 44, 300 }, + [9] = { 77.7, 45, 44, 300 }, + [10] = { 76.4, 41.7, 44, 300 }, + [11] = { 76.9, 41, 44, 300 }, + [12] = { 79.2, 40.5, 44, 300 }, + [13] = { 81.8, 40.4, 44, 300 }, + [14] = { 78.2, 39.2, 44, 300 }, + [15] = { 74.9, 38.9, 44, 300 }, + [16] = { 76.4, 38.2, 44, 300 }, + [17] = { 76.7, 37.8, 44, 300 }, + [18] = { 76.2, 37.8, 44, 300 }, + [19] = { 75.9, 36.8, 44, 300 }, + [20] = { 80.9, 36.6, 44, 300 }, + [21] = { 80.8, 35.5, 44, 300 }, + [22] = { 76.6, 35.4, 44, 300 }, + [23] = { 77.7, 34.8, 44, 300 }, + [24] = { 75.7, 31.3, 44, 300 }, + }, + ["lvl"] = "24-25", + }, + [569] = { + ["coords"] = { + [1] = { 16.5, 69.5, 10, 300 }, + [2] = { 13.9, 64.8, 10, 300 }, + [3] = { 13.2, 58.4, 10, 300 }, + [4] = { 12.4, 55.1, 10, 300 }, + [5] = { 13, 51, 10, 300 }, + [6] = { 11, 41.9, 10, 300 }, + [7] = { 10.3, 41.5, 10, 300 }, + [8] = { 71.3, 23.7, 10, 300 }, + [9] = { 61.9, 23.2, 10, 300 }, + [10] = { 68.1, 22.7, 10, 300 }, + [11] = { 69, 22.6, 10, 300 }, + [12] = { 66.8, 22.5, 10, 300 }, + [13] = { 64.8, 22.4, 10, 300 }, + [14] = { 57.3, 22.3, 10, 300 }, + [15] = { 54.9, 22, 10, 300 }, + [16] = { 68.6, 21.9, 10, 270 }, + [17] = { 59.9, 21.9, 10, 300 }, + [18] = { 72.8, 21.5, 10, 300 }, + [19] = { 74.6, 21.2, 10, 300 }, + [20] = { 58.1, 21, 10, 300 }, + [21] = { 62.5, 20.4, 10, 300 }, + [22] = { 56.1, 20.4, 10, 300 }, + [23] = { 54.2, 20.4, 10, 300 }, + [24] = { 50.8, 20.3, 10, 300 }, + [25] = { 51.3, 19.3, 10, 300 }, + }, + ["lvl"] = "21-22", + }, + [570] = { + ["coords"] = { + [1] = { 25.9, 36, 10, 300 }, + [2] = { 25, 34.7, 10, 300 }, + [3] = { 26.9, 34.3, 10, 300 }, + [4] = { 16.9, 33.2, 10, 300 }, + [5] = { 24.5, 30.4, 10, 300 }, + [6] = { 20.6, 30, 10, 300 }, + [7] = { 21.4, 29.8, 10, 300 }, + [8] = { 24.9, 29.8, 10, 300 }, + [9] = { 22.3, 29.7, 10, 300 }, + [10] = { 25.7, 29.1, 10, 300 }, + [11] = { 24.4, 29.1, 10, 300 }, + [12] = { 20.7, 28.8, 10, 300 }, + [13] = { 21.7, 28.3, 10, 300 }, + [14] = { 24.8, 28, 10, 300 }, + [15] = { 20.2, 27.3, 10, 300 }, + [16] = { 25.4, 27.3, 10, 300 }, + [17] = { 22.1, 27, 10, 300 }, + }, + ["lvl"] = "28-29", + }, + [572] = { + ["coords"] = { + [1] = { 41.7, 29.4, 40, 43200 }, + }, + ["lvl"] = "19", + ["rnk"] = "4", + }, + [573] = { + ["coords"] = { + [1] = { 44.8, 35.4, 40, 19800 }, + }, + ["lvl"] = "20", + ["rnk"] = "4", + }, + [574] = { + ["coords"] = { + [1] = { 86.4, 47.6, 10, 27000 }, + }, + ["lvl"] = "27", + ["rnk"] = "2", + }, + [576] = { + ["coords"] = { + [1] = { 74.5, 46.1, 10, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "28", + }, + [578] = { + ["coords"] = { + [1] = { 58.1, 57.4, 44, 300 }, + [2] = { 56.3, 55.4, 44, 300 }, + [3] = { 57.1, 54.6, 44, 300 }, + [4] = { 38.9, 53.9, 44, 300 }, + [5] = { 58.3, 53.4, 44, 300 }, + [6] = { 56.9, 52.8, 44, 300 }, + [7] = { 58, 52, 44, 300 }, + [8] = { 39.1, 51.6, 44, 300 }, + [9] = { 57.1, 51.2, 44, 300 }, + [10] = { 45.4, 51, 44, 300 }, + [11] = { 39.2, 49.1, 44, 300 }, + [12] = { 40.5, 49.1, 44, 300 }, + [13] = { 43.4, 48.5, 44, 300 }, + [14] = { 40.1, 48.2, 44, 300 }, + [15] = { 42.3, 47, 44, 300 }, + [16] = { 40.9, 46.4, 44, 300 }, + [17] = { 41, 46.2, 44, 300 }, + [18] = { 40.4, 44.7, 44, 300 }, + }, + ["lvl"] = "19-20", + }, + [580] = { + ["coords"] = { + [1] = { 20, 27.5, 44, 300 }, + [2] = { 18.8, 24.3, 44, 300 }, + [3] = { 21.6, 23.6, 44, 300 }, + [4] = { 15.9, 21.2, 44, 300 }, + [5] = { 20.3, 21, 44, 300 }, + [6] = { 22.4, 20.5, 44, 300 }, + [7] = { 16, 18.9, 44, 300 }, + [8] = { 17, 17.9, 44, 300 }, + [9] = { 21.3, 17.4, 44, 300 }, + [10] = { 16.1, 17.1, 44, 300 }, + [11] = { 22.3, 16.6, 44, 300 }, + [12] = { 18.1, 15.4, 44, 300 }, + [13] = { 18.7, 15.3, 44, 300 }, + [14] = { 20.2, 13.2, 44, 300 }, + [15] = { 56.4, 91.8, 46, 300 }, + [16] = { 58, 90.5, 46, 300 }, + [17] = { 58.4, 90.4, 46, 300 }, + [18] = { 59.5, 88.9, 46, 300 }, + }, + ["lvl"] = "20-21", + }, + [584] = { + ["coords"] = { + [1] = { 34.9, 8.3, 44, 19800 }, + [2] = { 70.4, 85.2, 46, 19800 }, + }, + ["lvl"] = "27", + ["rnk"] = "4", + }, + [586] = "_", + [587] = { + ["coords"] = { + [1] = { 29.8, 21.6, 33, 300 }, + [2] = { 30.3, 20.7, 33, 300 }, + [3] = { 29.3, 20, 33, 300 }, + [4] = { 28.8, 20, 33, 300 }, + [5] = { 29.9, 19.7, 33, 300 }, + [6] = { 29.5, 19.6, 33, 300 }, + [7] = { 29.7, 19.6, 33, 300 }, + [8] = { 29.8, 19.5, 33, 300 }, + [9] = { 29.5, 19.4, 33, 300 }, + [10] = { 30.7, 19.4, 33, 300 }, + [11] = { 29.6, 19.3, 33, 300 }, + [12] = { 29.7, 19.1, 33, 300 }, + [13] = { 29, 19.1, 33, 300 }, + [14] = { 29.8, 19.1, 33, 300 }, + [15] = { 30.6, 18.1, 33, 300 }, + [16] = { 33.5, 17, 33, 300 }, + [17] = { 34, 16.8, 33, 300 }, + [18] = { 30.4, 16.8, 33, 300 }, + [19] = { 34.6, 16, 33, 300 }, + [20] = { 33.9, 15.9, 33, 300 }, + [21] = { 33.7, 15.6, 33, 300 }, + [22] = { 33.6, 15.6, 33, 300 }, + [23] = { 34, 15.4, 33, 300 }, + [24] = { 34.3, 14.6, 33, 300 }, + [25] = { 33.4, 13.8, 33, 300 }, + }, + ["lvl"] = "33-34", + }, + [588] = { + ["coords"] = { + [1] = { 25.5, 13.4, 33, 300 }, + [2] = { 26.1, 13.4, 33, 300 }, + [3] = { 25.1, 13.4, 33, 300 }, + [4] = { 22.5, 13.4, 33, 300 }, + [5] = { 24.1, 13.3, 33, 300 }, + [6] = { 26.4, 13.2, 33, 300 }, + [7] = { 24.2, 13.2, 33, 300 }, + [8] = { 23.9, 13.2, 33, 300 }, + [9] = { 25.6, 13.2, 33, 300 }, + [10] = { 23.8, 13.2, 33, 300 }, + [11] = { 23.1, 13.1, 33, 300 }, + [12] = { 24.1, 13.1, 33, 300 }, + [13] = { 22.3, 13.1, 33, 300 }, + [14] = { 25.3, 12.9, 33, 300 }, + [15] = { 25.3, 12.8, 33, 300 }, + [16] = { 22.4, 12.8, 33, 300 }, + [17] = { 26.1, 12.7, 33, 300 }, + [18] = { 24.7, 12.7, 33, 300 }, + [19] = { 25.9, 12.7, 33, 300 }, + [20] = { 23.4, 12.6, 33, 300 }, + [21] = { 24.5, 12.6, 33, 300 }, + [22] = { 23, 12.6, 33, 300 }, + [23] = { 24.8, 12.6, 33, 300 }, + [24] = { 26.3, 12.4, 33, 300 }, + [25] = { 26.1, 12.4, 33, 300 }, + [26] = { 24.5, 12.3, 33, 300 }, + [27] = { 24.8, 12.3, 33, 300 }, + [28] = { 24.7, 12.3, 33, 300 }, + [29] = { 23.1, 12.3, 33, 300 }, + [30] = { 25.3, 12.2, 33, 300 }, + [31] = { 22.9, 12.2, 33, 300 }, + [32] = { 25.9, 12.2, 33, 300 }, + [33] = { 23.9, 12.2, 33, 300 }, + [34] = { 24.8, 12.2, 33, 300 }, + [35] = { 26.1, 12.2, 33, 300 }, + [36] = { 26.3, 12.2, 33, 300 }, + [37] = { 25.7, 12.1, 33, 300 }, + [38] = { 23, 12.1, 33, 300 }, + [39] = { 22.7, 12.1, 33, 300 }, + [40] = { 23.3, 12, 33, 300 }, + [41] = { 23.1, 12, 33, 300 }, + [42] = { 22.7, 12, 33, 300 }, + [43] = { 27.6, 11.7, 33, 300 }, + [44] = { 26, 11.5, 33, 300 }, + [45] = { 24.7, 11.5, 33, 300 }, + [46] = { 26.5, 11.4, 33, 300 }, + [47] = { 26.3, 11.3, 33, 300 }, + [48] = { 25.2, 11.3, 33, 300 }, + [49] = { 27.2, 11.3, 33, 300 }, + [50] = { 24.4, 11.2, 33, 300 }, + [51] = { 25.9, 11, 33, 300 }, + [52] = { 22.9, 11, 33, 300 }, + [53] = { 27.6, 11, 33, 300 }, + [54] = { 25.6, 10.6, 33, 300 }, + [55] = { 26.1, 10.1, 33, 300 }, + [56] = { 25.7, 10, 33, 300 }, + [57] = { 25.4, 10, 33, 300 }, + [58] = { 25.1, 9.9, 33, 300 }, + [59] = { 26, 9.8, 33, 300 }, + [60] = { 25.1, 9.7, 33, 300 }, + [61] = { 25.5, 9.6, 33, 300 }, + [62] = { 25, 9.4, 33, 300 }, + [63] = { 26, 9.4, 33, 300 }, + [64] = { 25.6, 9.3, 33, 300 }, + [65] = { 25.7, 9.3, 33, 300 }, + [66] = { 26.1, 9.3, 33, 300 }, + [67] = { 25.1, 9.3, 33, 300 }, + [68] = { 25.4, 9.2, 33, 300 }, + [69] = { 25.7, 9.1, 33, 300 }, + [70] = { 25.9, 9, 33, 300 }, + [71] = { 25.5, 9, 33, 300 }, + [72] = { 26.1, 8.9, 33, 300 }, + [73] = { 26, 8.7, 33, 300 }, + [74] = { 26.1, 8.6, 33, 300 }, + [75] = { 25.9, 8.4, 33, 300 }, + }, + ["lvl"] = "34-35", + }, + [589] = { + ["coords"] = { + [1] = { 41.5, 71.2, 40, 300 }, + [2] = { 46, 71.1, 40, 300 }, + [3] = { 43, 70.8, 40, 300 }, + [4] = { 43.5, 70.8, 40, 300 }, + [5] = { 46, 70.7, 40, 300 }, + [6] = { 42.2, 70.5, 40, 300 }, + [7] = { 45.5, 70.4, 40, 300 }, + [8] = { 45.4, 70.3, 40, 300 }, + [9] = { 43.1, 70.1, 40, 300 }, + [10] = { 41.5, 69.8, 40, 300 }, + [11] = { 41.9, 69.6, 40, 300 }, + [12] = { 42.9, 69.6, 40, 300 }, + [13] = { 38.8, 69.6, 40, 300 }, + [14] = { 43.3, 69.6, 40, 300 }, + [15] = { 42, 69.6, 40, 300 }, + [16] = { 41.8, 69.5, 40, 300 }, + [17] = { 42.3, 69.5, 40, 300 }, + [18] = { 42.1, 69.5, 40, 300 }, + [19] = { 45.8, 69.3, 40, 300 }, + [20] = { 43.7, 69.3, 40, 300 }, + [21] = { 44, 69.2, 40, 300 }, + [22] = { 43.4, 68.8, 40, 300 }, + [23] = { 44.8, 68.7, 40, 300 }, + [24] = { 44.3, 68.6, 40, 300 }, + [25] = { 43.9, 68.4, 40, 300 }, + [26] = { 43.6, 68.2, 40, 300 }, + [27] = { 44.2, 68.2, 40, 300 }, + [28] = { 43, 68.1, 40, 300 }, + [29] = { 43.6, 68.1, 40, 300 }, + [30] = { 43.9, 68.1, 40, 300 }, + [31] = { 43.4, 68.1, 40, 300 }, + [32] = { 43.8, 67.7, 40, 300 }, + [33] = { 44.4, 67.7, 40, 300 }, + [34] = { 43.7, 67.5, 40, 300 }, + [35] = { 45, 67.4, 40, 300 }, + [36] = { 44.4, 67.4, 40, 300 }, + [37] = { 46.3, 67.3, 40, 300 }, + [38] = { 43.5, 66.9, 40, 300 }, + [39] = { 43.7, 66.4, 40, 300 }, + [40] = { 44.5, 65.7, 40, 300 }, + [41] = { 33.2, 58.6, 40, 300 }, + [42] = { 38.6, 58.1, 40, 300 }, + [43] = { 37.1, 58, 40, 300 }, + [44] = { 38.8, 58, 40, 300 }, + [45] = { 38.8, 57.7, 40, 300 }, + [46] = { 32.1, 57.7, 40, 300 }, + [47] = { 38.5, 57.6, 40, 300 }, + [48] = { 37.9, 57.4, 40, 300 }, + [49] = { 33.7, 56.9, 40, 300 }, + [50] = { 38.7, 56.9, 40, 300 }, + [51] = { 38.8, 56.8, 40, 300 }, + [52] = { 32.8, 56.7, 40, 300 }, + [53] = { 33.2, 56.6, 40, 300 }, + [54] = { 37.1, 55.9, 40, 300 }, + [55] = { 36.3, 55.5, 40, 300 }, + [56] = { 36, 54.7, 40, 300 }, + [57] = { 36, 54.6, 40, 300 }, + [58] = { 37.2, 54.5, 40, 300 }, + [59] = { 36.5, 54.1, 40, 300 }, + [60] = { 36.7, 54, 40, 300 }, + [61] = { 36.7, 53.8, 40, 300 }, + [62] = { 35.1, 53.8, 40, 300 }, + [63] = { 35, 53.8, 40, 300 }, + [64] = { 35.7, 53.7, 40, 300 }, + [65] = { 35.9, 53.1, 40, 300 }, + [66] = { 36, 53.1, 40, 300 }, + [67] = { 29.2, 51, 40, 300 }, + [68] = { 29.6, 50.2, 40, 300 }, + [69] = { 28.9, 50.1, 40, 300 }, + [70] = { 29.8, 49.8, 40, 300 }, + [71] = { 30.1, 49.7, 40, 300 }, + [72] = { 28.8, 49.5, 40, 300 }, + [73] = { 30.8, 48.4, 40, 300 }, + [74] = { 29.6, 47.3, 40, 300 }, + [75] = { 29.7, 47.1, 40, 300 }, + [76] = { 29.9, 46.1, 40, 300 }, + [77] = { 30.4, 46, 40, 300 }, + [78] = { 29.9, 45.9, 40, 300 }, + [79] = { 31.6, 44.9, 40, 300 }, + [80] = { 31.2, 44.6, 40, 300 }, + [81] = { 32.1, 44, 40, 300 }, + [82] = { 31.7, 43.9, 40, 300 }, + [83] = { 30.9, 43, 40, 300 }, + [84] = { 31.7, 43, 40, 300 }, + [85] = { 51, 2.4, 1581, 300 }, + [86] = { 86, 1.5, 1581, 300 }, + }, + ["lvl"] = "14-15", + }, + [590] = { + ["coords"] = { + [1] = { 41.5, 71.2, 40, 300 }, + [2] = { 46, 71.1, 40, 300 }, + [3] = { 43, 70.8, 40, 300 }, + [4] = { 43.5, 70.8, 40, 300 }, + [5] = { 46, 70.7, 40, 300 }, + [6] = { 42.2, 70.5, 40, 300 }, + [7] = { 45.5, 70.4, 40, 300 }, + [8] = { 45.4, 70.3, 40, 300 }, + [9] = { 43.1, 70.1, 40, 300 }, + [10] = { 41.5, 69.8, 40, 300 }, + [11] = { 41.9, 69.6, 40, 300 }, + [12] = { 42.9, 69.6, 40, 300 }, + [13] = { 38.8, 69.6, 40, 300 }, + [14] = { 43.3, 69.6, 40, 300 }, + [15] = { 42, 69.6, 40, 300 }, + [16] = { 41.8, 69.5, 40, 300 }, + [17] = { 42.3, 69.5, 40, 300 }, + [18] = { 42.1, 69.5, 40, 300 }, + [19] = { 45.8, 69.3, 40, 300 }, + [20] = { 43.7, 69.3, 40, 300 }, + [21] = { 44, 69.2, 40, 300 }, + [22] = { 43.4, 68.8, 40, 300 }, + [23] = { 44.8, 68.7, 40, 300 }, + [24] = { 44.3, 68.6, 40, 300 }, + [25] = { 43.9, 68.4, 40, 300 }, + [26] = { 43.6, 68.2, 40, 300 }, + [27] = { 44.2, 68.2, 40, 300 }, + [28] = { 43, 68.1, 40, 300 }, + [29] = { 43.6, 68.1, 40, 300 }, + [30] = { 43.9, 68.1, 40, 300 }, + [31] = { 43.4, 68.1, 40, 300 }, + [32] = { 43.8, 67.7, 40, 300 }, + [33] = { 44.4, 67.7, 40, 300 }, + [34] = { 43.7, 67.5, 40, 300 }, + [35] = { 45, 67.4, 40, 300 }, + [36] = { 44.4, 67.4, 40, 300 }, + [37] = { 46.3, 67.3, 40, 300 }, + [38] = { 43.5, 66.9, 40, 300 }, + [39] = { 43.7, 66.4, 40, 300 }, + [40] = { 44.5, 65.7, 40, 300 }, + [41] = { 33.2, 58.6, 40, 300 }, + [42] = { 38.6, 58.1, 40, 300 }, + [43] = { 37.1, 58, 40, 300 }, + [44] = { 38.8, 58, 40, 300 }, + [45] = { 38.8, 57.7, 40, 300 }, + [46] = { 32.1, 57.7, 40, 300 }, + [47] = { 38.5, 57.6, 40, 300 }, + [48] = { 37.9, 57.4, 40, 300 }, + [49] = { 33.7, 56.9, 40, 300 }, + [50] = { 38.7, 56.9, 40, 300 }, + [51] = { 38.8, 56.8, 40, 300 }, + [52] = { 32.8, 56.7, 40, 300 }, + [53] = { 33.2, 56.6, 40, 300 }, + [54] = { 37.1, 55.9, 40, 300 }, + [55] = { 36.3, 55.5, 40, 300 }, + [56] = { 36, 54.7, 40, 300 }, + [57] = { 36, 54.6, 40, 300 }, + [58] = { 37.2, 54.5, 40, 300 }, + [59] = { 36.5, 54.1, 40, 300 }, + [60] = { 36.7, 54, 40, 300 }, + [61] = { 36.7, 53.8, 40, 300 }, + [62] = { 35.1, 53.8, 40, 300 }, + [63] = { 35, 53.8, 40, 300 }, + [64] = { 35.7, 53.7, 40, 300 }, + [65] = { 35.9, 53.1, 40, 300 }, + [66] = { 36, 53.1, 40, 300 }, + [67] = { 29.2, 51, 40, 300 }, + [68] = { 29.6, 50.2, 40, 300 }, + [69] = { 28.9, 50.1, 40, 300 }, + [70] = { 29.8, 49.8, 40, 300 }, + [71] = { 30.1, 49.7, 40, 300 }, + [72] = { 28.8, 49.5, 40, 300 }, + [73] = { 30.8, 48.4, 40, 300 }, + [74] = { 29.6, 47.3, 40, 300 }, + [75] = { 29.7, 47.1, 40, 300 }, + [76] = { 29.9, 46.1, 40, 300 }, + [77] = { 30.4, 46, 40, 300 }, + [78] = { 29.9, 45.9, 40, 300 }, + [79] = { 31.6, 44.9, 40, 300 }, + [80] = { 31.2, 44.6, 40, 300 }, + [81] = { 32.1, 44, 40, 300 }, + [82] = { 31.7, 43.9, 40, 300 }, + [83] = { 30.9, 43, 40, 300 }, + [84] = { 31.7, 43, 40, 300 }, + [85] = { 51, 2.4, 1581, 300 }, + [86] = { 86, 1.5, 1581, 300 }, + }, + ["lvl"] = "13-14", + }, + [592] = "_", + [594] = { + ["coords"] = { + [1] = { 41.8, 78.4, 40, 300 }, + [2] = { 43.8, 77, 40, 300 }, + [3] = { 42.2, 74.5, 40, 300 }, + [4] = { 43.9, 73.5, 40, 300 }, + [5] = { 42.9, 72.6, 40, 300 }, + [6] = { 53.5, 58.4, 1581, 300 }, + [7] = { 68.9, 47.4, 1581, 300 }, + [8] = { 56.4, 27.8, 1581, 300 }, + [9] = { 69.9, 20.1, 1581, 300 }, + [10] = { 61.7, 13, 1581, 300 }, + }, + ["lvl"] = "15-16", + ["rnk"] = "1", + }, + [595] = { + ["coords"] = { + [1] = { 25.5, 13.4, 33, 300 }, + [2] = { 26.1, 13.4, 33, 300 }, + [3] = { 25.1, 13.4, 33, 300 }, + [4] = { 22.5, 13.4, 33, 300 }, + [5] = { 24.1, 13.3, 33, 300 }, + [6] = { 26.4, 13.2, 33, 300 }, + [7] = { 24.2, 13.2, 33, 300 }, + [8] = { 23.9, 13.2, 33, 300 }, + [9] = { 25.6, 13.2, 33, 300 }, + [10] = { 23.8, 13.2, 33, 300 }, + [11] = { 23.1, 13.1, 33, 300 }, + [12] = { 24.1, 13.1, 33, 300 }, + [13] = { 22.3, 13.1, 33, 300 }, + [14] = { 25.3, 12.9, 33, 300 }, + [15] = { 25.3, 12.8, 33, 300 }, + [16] = { 22.4, 12.8, 33, 300 }, + [17] = { 26.1, 12.7, 33, 300 }, + [18] = { 24.7, 12.7, 33, 300 }, + [19] = { 25.9, 12.7, 33, 300 }, + [20] = { 23.4, 12.6, 33, 300 }, + [21] = { 24.5, 12.6, 33, 300 }, + [22] = { 23, 12.6, 33, 300 }, + [23] = { 24.8, 12.6, 33, 300 }, + [24] = { 26.3, 12.4, 33, 300 }, + [25] = { 26.1, 12.4, 33, 300 }, + [26] = { 24.5, 12.3, 33, 300 }, + [27] = { 24.8, 12.3, 33, 300 }, + [28] = { 24.7, 12.3, 33, 300 }, + [29] = { 23.1, 12.3, 33, 300 }, + [30] = { 25.3, 12.2, 33, 300 }, + [31] = { 22.9, 12.2, 33, 300 }, + [32] = { 25.9, 12.2, 33, 300 }, + [33] = { 23.9, 12.2, 33, 300 }, + [34] = { 24.8, 12.2, 33, 300 }, + [35] = { 26.1, 12.2, 33, 300 }, + [36] = { 26.3, 12.2, 33, 300 }, + [37] = { 25.7, 12.1, 33, 300 }, + [38] = { 23, 12.1, 33, 300 }, + [39] = { 22.7, 12.1, 33, 300 }, + [40] = { 23.3, 12, 33, 300 }, + [41] = { 23.1, 12, 33, 300 }, + [42] = { 22.7, 12, 33, 300 }, + [43] = { 27.6, 11.7, 33, 300 }, + [44] = { 26, 11.5, 33, 300 }, + [45] = { 24.7, 11.5, 33, 300 }, + [46] = { 26.5, 11.4, 33, 300 }, + [47] = { 26.3, 11.3, 33, 300 }, + [48] = { 25.2, 11.3, 33, 300 }, + [49] = { 27.2, 11.3, 33, 300 }, + [50] = { 24.4, 11.2, 33, 300 }, + [51] = { 25.9, 11, 33, 300 }, + [52] = { 22.9, 11, 33, 300 }, + [53] = { 27.6, 11, 33, 300 }, + [54] = { 25.6, 10.6, 33, 300 }, + [55] = { 26.1, 10.1, 33, 300 }, + [56] = { 25.7, 10, 33, 300 }, + [57] = { 25.4, 10, 33, 300 }, + [58] = { 25.1, 9.9, 33, 300 }, + [59] = { 26, 9.8, 33, 300 }, + [60] = { 25.1, 9.7, 33, 300 }, + [61] = { 25.5, 9.6, 33, 300 }, + [62] = { 25, 9.4, 33, 300 }, + [63] = { 26, 9.4, 33, 300 }, + [64] = { 25.6, 9.3, 33, 300 }, + [65] = { 25.7, 9.3, 33, 300 }, + [66] = { 26.1, 9.3, 33, 300 }, + [67] = { 25.1, 9.3, 33, 300 }, + [68] = { 25.4, 9.2, 33, 300 }, + [69] = { 25.7, 9.1, 33, 300 }, + [70] = { 25.9, 9, 33, 300 }, + [71] = { 25.5, 9, 33, 300 }, + [72] = { 26.1, 8.9, 33, 300 }, + [73] = { 26, 8.7, 33, 300 }, + [74] = { 26.1, 8.6, 33, 300 }, + [75] = { 25.9, 8.4, 33, 300 }, + }, + ["lvl"] = "34-35", + }, + [596] = { + ["coords"] = { + [1] = { 44, 78.3, 40, 3600 }, + [2] = { 70.2, 57.6, 1581, 3600 }, + }, + ["lvl"] = "18", + ["rnk"] = "1", + }, + [597] = { + ["coords"] = { + [1] = { 20.9, 15.4, 33, 300 }, + [2] = { 20.5, 14.3, 33, 300 }, + [3] = { 21, 13.5, 33, 300 }, + [4] = { 20.1, 13.5, 33, 300 }, + [5] = { 20.9, 13, 33, 300 }, + [6] = { 20.4, 12.9, 33, 300 }, + [7] = { 19.4, 12.8, 33, 300 }, + [8] = { 20.3, 12.2, 33, 300 }, + [9] = { 19.9, 12.1, 33, 300 }, + [10] = { 20.9, 12.1, 33, 300 }, + [11] = { 20, 12.1, 33, 300 }, + [12] = { 19.5, 12, 33, 300 }, + [13] = { 20.1, 11.9, 33, 300 }, + [14] = { 19.9, 11.9, 33, 300 }, + [15] = { 20.3, 11.8, 33, 300 }, + [16] = { 20, 11.7, 33, 300 }, + [17] = { 19.4, 11.4, 33, 300 }, + [18] = { 23.1, 11.3, 33, 300 }, + [19] = { 20.7, 11.2, 33, 300 }, + [20] = { 23.4, 10.9, 33, 300 }, + [21] = { 23.7, 10.9, 33, 300 }, + [22] = { 23.2, 10.8, 33, 300 }, + [23] = { 22.7, 10.8, 33, 300 }, + [24] = { 24.1, 10.7, 33, 300 }, + [25] = { 23.1, 10.7, 33, 300 }, + [26] = { 24.6, 10.7, 33, 300 }, + [27] = { 24.4, 10.6, 33, 300 }, + [28] = { 24.7, 10.5, 33, 300 }, + [29] = { 24.2, 10.4, 33, 300 }, + [30] = { 24.7, 10.3, 33, 300 }, + [31] = { 21.5, 10.3, 33, 300 }, + [32] = { 21.3, 10.2, 33, 300 }, + [33] = { 22.9, 10.2, 33, 300 }, + [34] = { 24, 10, 33, 300 }, + [35] = { 23.9, 9.9, 33, 300 }, + [36] = { 24.5, 9.9, 33, 300 }, + [37] = { 23.7, 9.9, 33, 300 }, + [38] = { 24.2, 9.8, 33, 300 }, + [39] = { 23.6, 9.7, 33, 300 }, + [40] = { 22.7, 9.7, 33, 300 }, + [41] = { 23.4, 9.5, 33, 300 }, + [42] = { 24.3, 9.5, 33, 300 }, + [43] = { 24.1, 9.4, 33, 300 }, + [44] = { 23.8, 9.4, 33, 300 }, + [45] = { 24.7, 9.4, 33, 300 }, + [46] = { 22.7, 9.2, 33, 300 }, + [47] = { 24.4, 9.1, 33, 300 }, + [48] = { 24.9, 9.1, 33, 300 }, + [49] = { 24.2, 8.9, 33, 300 }, + [50] = { 23.7, 8.8, 33, 300 }, + [51] = { 23, 8.8, 33, 300 }, + [52] = { 23.4, 8.8, 33, 300 }, + [53] = { 24.9, 8.7, 33, 300 }, + [54] = { 22.7, 8.6, 33, 300 }, + [55] = { 23.5, 8.4, 33, 300 }, + [56] = { 23.4, 8.4, 33, 300 }, + [57] = { 23.6, 8.2, 33, 300 }, + }, + ["lvl"] = "36-37", + }, + [598] = { + ["coords"] = { + [1] = { 25.5, 62.2, 5138, 18000 }, + [2] = { 23.5, 61.7, 5138, 18000 }, + [3] = { 27, 59.5, 5138, 18000 }, + [4] = { 24.8, 58.9, 5138, 18000 }, + [5] = { 29.4, 57.7, 5138, 18000 }, + [6] = { 26.8, 56.2, 5138, 18000 }, + [7] = { 28.8, 56, 5138, 18000 }, + [8] = { 28.5, 54.2, 5138, 18000 }, + [9] = { 25.6, 53.9, 5138, 18000 }, + [10] = { 27.9, 51.4, 5138, 18000 }, + [11] = { 13.3, 50.4, 5138, 18000 }, + [12] = { 25.1, 49.1, 5138, 18000 }, + [13] = { 26.9, 49, 5138, 18000 }, + [14] = { 11.8, 48.8, 5138, 18000 }, + [15] = { 28.4, 47.7, 5138, 18000 }, + [16] = { 13.2, 47.6, 5138, 18000 }, + [17] = { 12.2, 46.5, 5138, 18000 }, + [18] = { 31.4, 45.2, 5138, 18000 }, + [19] = { 29.1, 45, 5138, 18000 }, + [20] = { 28, 44.8, 5138, 18000 }, + [21] = { 11.1, 43.9, 5138, 18000 }, + [22] = { 31.9, 43.5, 5138, 18000 }, + [23] = { 29.9, 42.9, 5138, 18000 }, + [24] = { 12.8, 42.5, 5138, 18000 }, + [25] = { 31.3, 42.1, 5138, 18000 }, + [26] = { 11.7, 40.6, 5138, 18000 }, + [27] = { 13.7, 40.5, 5138, 18000 }, + [28] = { 10.9, 38.6, 5138, 18000 }, + [29] = { 9.3, 38, 5138, 18000 }, + [30] = { 18.1, 37.6, 5138, 18000 }, + [31] = { 25.4, 36.3, 5138, 18000 }, + [32] = { 13.5, 35.3, 5138, 18000 }, + [33] = { 19.4, 34.9, 5138, 18000 }, + [34] = { 12.3, 33.3, 5138, 18000 }, + [35] = { 15.8, 32.5, 5138, 18000 }, + [36] = { 23.5, 32.1, 5138, 18000 }, + [37] = { 7.6, 31.6, 5138, 18000 }, + [38] = { 16.4, 31.5, 5138, 18000 }, + [39] = { 22.4, 31.1, 5138, 18000 }, + [40] = { 9.2, 31.1, 5138, 18000 }, + [41] = { 18.2, 30.7, 5138, 18000 }, + [42] = { 20.8, 29.5, 5138, 18000 }, + [43] = { 15.1, 28.6, 5138, 18000 }, + [44] = { 18.6, 27.8, 5138, 18000 }, + [45] = { 11.2, 27.6, 5138, 18000 }, + [46] = { 24.6, 27.5, 5138, 18000 }, + [47] = { 9, 26.7, 5138, 18000 }, + [48] = { 12.8, 25.3, 5138, 18000 }, + [49] = { 7.2, 25.2, 5138, 18000 }, + [50] = { 11.1, 24.8, 5138, 18000 }, + [51] = { 6.3, 23.9, 5138, 18000 }, + [52] = { 12.8, 21.6, 5138, 18000 }, + [53] = { 6.9, 20.6, 5138, 18000 }, + [54] = { 11.9, 20, 5138, 18000 }, + [55] = { 7.3, 16.8, 5138, 18000 }, + }, + ["lvl"] = "17-18", + }, + [599] = { + ["coords"] = { + [1] = { 42.2, 79.9, 40, 3600 }, + [2] = { 56.4, 69.8, 1581, 3600 }, + }, + ["lvl"] = "18", + ["rnk"] = "1", + }, + [601] = "_", + [603] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "4", + }, + [604] = { + ["coords"] = { + [1] = { 23.6, 36.7, 10, 300 }, + [2] = { 24.1, 36, 10, 300 }, + [3] = { 23.4, 35.7, 10, 300 }, + [4] = { 25.9, 35.2, 10, 300 }, + [5] = { 24.1, 35, 10, 300 }, + [6] = { 23.4, 35, 10, 300 }, + [7] = { 24.5, 34.7, 10, 300 }, + [8] = { 15.8, 34.6, 10, 300 }, + [9] = { 25.8, 34.3, 10, 300 }, + [10] = { 17.9, 34.2, 10, 300 }, + [11] = { 26.3, 34.2, 10, 300 }, + [12] = { 23.7, 34.2, 10, 300 }, + [13] = { 16.4, 34.1, 10, 300 }, + [14] = { 25.7, 33.7, 10, 300 }, + [15] = { 25.6, 32.7, 10, 300 }, + [16] = { 16.8, 32.7, 10, 300 }, + [17] = { 25.4, 31.9, 10, 300 }, + [18] = { 25.5, 30.6, 10, 300 }, + [19] = { 20.1, 28.4, 10, 300 }, + [20] = { 22.5, 28.2, 10, 300 }, + [21] = { 23.2, 28.1, 10, 300 }, + [22] = { 24.1, 27.5, 10, 300 }, + }, + ["lvl"] = "27-28", + }, + [605] = "_", + [606] = "_", + [607] = "_", + [609] = "_", + [610] = "_", + [611] = "_", + [612] = "_", + [613] = "_", + [614] = "_", + [615] = { + ["coords"] = { + [1] = { 39.2, 14.8, 44, 300 }, + [2] = { 39, 14.4, 44, 300 }, + [3] = { 26.1, 12.9, 44, 300 }, + [4] = { 37.3, 12.8, 44, 300 }, + [5] = { 36.7, 12.6, 44, 300 }, + [6] = { 35.9, 10.8, 44, 300 }, + [7] = { 31.1, 10.6, 44, 300 }, + [8] = { 35.5, 9.9, 44, 300 }, + [9] = { 36.6, 9.2, 44, 300 }, + [10] = { 34.9, 9.1, 44, 300 }, + [11] = { 29.6, 8.8, 44, 300 }, + [12] = { 27.4, 8.5, 44, 300 }, + [13] = { 35.9, 7.9, 44, 300 }, + [14] = { 32.2, 7, 44, 300 }, + [15] = { 67.6, 87, 46, 300 }, + [16] = { 70.9, 86.4, 46, 300 }, + [17] = { 71.7, 85.9, 46, 300 }, + [18] = { 70.4, 85.8, 46, 300 }, + [19] = { 66.5, 85.6, 46, 300 }, + [20] = { 64.9, 85.4, 46, 300 }, + [21] = { 71.2, 84.9, 46, 300 }, + [22] = { 68.4, 84.3, 46, 300 }, + }, + ["lvl"] = "23-24", + }, + [616] = { + ["coords"] = { + [1] = { 53.1, 37.1, 44, 19800 }, + }, + ["lvl"] = "23", + ["rnk"] = "4", + }, + [619] = { + ["coords"] = { + [1] = { 40.5, 78.2, 40, 300 }, + [2] = { 41.7, 76.1, 40, 300 }, + [3] = { 43.7, 74.3, 40, 300 }, + [4] = { 43.1, 57, 1581, 300 }, + [5] = { 52.4, 40.1, 1581, 300 }, + [6] = { 68, 26.4, 1581, 300 }, + }, + ["lvl"] = "15-16", + ["rnk"] = "1", + }, + [620] = { + ["coords"] = { + [1] = { 75.7, 56.3, 10, 300 }, + [2] = { 77.2, 55.5, 10, 300 }, + [3] = { 72.7, 54.3, 10, 300 }, + [4] = { 76.5, 53.7, 10, 300 }, + [5] = { 73.6, 53.1, 10, 300 }, + [6] = { 74, 52, 10, 120 }, + [7] = { 78, 48, 10, 300 }, + [8] = { 79.8, 46.9, 10, 300 }, + [9] = { 77.9, 44.3, 10, 300 }, + [10] = { 17.2, 71.4, 11, 60 }, + [11] = { 21, 70.1, 11, 60 }, + [12] = { 21.2, 69.9, 11, 60 }, + [13] = { 25.6, 68, 11, 60 }, + [14] = { 25.9, 67.8, 11, 60 }, + [15] = { 26.9, 67.2, 11, 60 }, + [16] = { 27.5, 65.9, 11, 60 }, + [17] = { 37, 62.7, 11, 120 }, + [18] = { 36.5, 62.7, 11, 120 }, + [19] = { 36.7, 62.4, 11, 120 }, + [20] = { 48.4, 86.7, 12, 300 }, + [21] = { 48.6, 86.6, 12, 300 }, + [22] = { 48.5, 86.5, 12, 300 }, + [23] = { 79.1, 67.7, 12, 300 }, + [24] = { 79.3, 67.6, 12, 300 }, + [25] = { 77.8, 66.5, 12, 300 }, + [26] = { 77.7, 66.4, 12, 300 }, + [27] = { 78.2, 66.2, 12, 300 }, + [28] = { 42.9, 66.2, 12, 300 }, + [29] = { 77.6, 66.2, 12, 300 }, + [30] = { 42.7, 66.1, 12, 300 }, + [31] = { 81.1, 65.6, 12, 300 }, + [32] = { 77.7, 65.5, 12, 300 }, + [33] = { 40.4, 64.5, 12, 25 }, + [34] = { 40.5, 64.4, 12, 300 }, + [35] = { 40.5, 64.3, 12, 300 }, + [36] = { 42.8, 63.1, 12, 25 }, + [37] = { 36, 60.5, 12, 300 }, + [38] = { 36.4, 60.2, 12, 300 }, + [39] = { 36, 60.1, 12, 300 }, + [40] = { 36.5, 59.9, 12, 300 }, + [41] = { 36.3, 59.8, 12, 300 }, + [42] = { 60.4, 29.9, 12, 25 }, + [43] = { 65, 51.1, 15, 300 }, + [44] = { 67.6, 50.8, 15, 300 }, + [45] = { 64.2, 50.2, 15, 300 }, + [46] = { 65.5, 49.5, 15, 300 }, + [47] = { 66.4, 48.5, 15, 300 }, + [48] = { 64.4, 47.5, 15, 300 }, + [49] = { 66.8, 46.1, 15, 300 }, + [50] = { 52.2, 5.4, 15, 300 }, + [51] = { 52.5, 5.3, 15, 300 }, + [52] = { 62.6, 56.8, 17, 300 }, + [53] = { 62.7, 56.7, 17, 300 }, + [54] = { 60.8, 55.5, 17, 300 }, + [55] = { 62.3, 54, 17, 300 }, + [56] = { 61.8, 53.6, 17, 300 }, + [57] = { 61.3, 53.5, 17, 300 }, + [58] = { 61.7, 53.3, 17, 300 }, + [59] = { 61.6, 24.3, 17, 300 }, + [60] = { 62, 24.2, 17, 300 }, + [61] = { 61.8, 23.9, 17, 300 }, + [62] = { 62, 23.9, 17, 300 }, + [63] = { 61.7, 23.8, 17, 300 }, + [64] = { 61.6, 23.7, 17, 300 }, + [65] = { 45.1, 69.9, 40, 300 }, + [66] = { 45.4, 69.6, 40, 300 }, + [67] = { 45.3, 69.6, 40, 300 }, + [68] = { 44.7, 68.5, 40, 300 }, + [69] = { 44.7, 68.1, 40, 300 }, + [70] = { 38.2, 57.1, 40, 300 }, + [71] = { 38.8, 57, 40, 300 }, + [72] = { 38.9, 56.7, 40, 300 }, + [73] = { 38.5, 56.7, 40, 300 }, + [74] = { 45.6, 39.6, 40, 300 }, + [75] = { 45.7, 39.2, 40, 300 }, + [76] = { 45.8, 38.7, 40, 300 }, + [77] = { 55.9, 31.9, 40, 300 }, + [78] = { 56.2, 31.8, 40, 300 }, + [79] = { 51.5, 31.6, 40, 300 }, + [80] = { 55.7, 31.5, 40, 300 }, + [81] = { 51.5, 31.3, 40, 300 }, + [82] = { 51.7, 31.2, 40, 300 }, + [83] = { 55.6, 30.9, 40, 300 }, + [84] = { 56.1, 30, 40, 300 }, + [85] = { 56.1, 29.7, 40, 300 }, + [86] = { 56.2, 29.6, 40, 300 }, + [87] = { 48.7, 21.3, 40, 300 }, + [88] = { 49, 20.8, 40, 300 }, + [89] = { 49.2, 20.5, 40, 300 }, + [90] = { 49.3, 19.8, 40, 300 }, + [91] = { 49.7, 19.5, 40, 300 }, + [92] = { 49.9, 19, 40, 300 }, + [93] = { 20.3, 47.1, 44, 300 }, + [94] = { 20.2, 46.4, 44, 300 }, + [95] = { 22.3, 45.8, 44, 300 }, + [96] = { 52.9, 56.3, 85, 180 }, + [97] = { 52.2, 56.2, 85, 180 }, + [98] = { 61.1, 53.5, 85, 25 }, + [99] = { 38.1, 51.7, 85, 180 }, + [100] = { 60.3, 51.3, 85, 180 }, + [101] = { 37.2, 50.2, 85, 180 }, + [102] = { 38, 48.9, 85, 180 }, + [103] = { 63.3, 61.4, 267, 300 }, + [104] = { 64.6, 61.1, 267, 300 }, + [105] = { 50.1, 57, 267, 300 }, + [106] = { 52.6, 57, 267, 300 }, + [107] = { 52.2, 55.8, 267, 300 }, + [108] = { 51.2, 54.1, 267, 300 }, + [109] = { 35, 47.1, 267, 300 }, + [110] = { 79.4, 44.4, 267, 300 }, + [111] = { 32.8, 43.4, 267, 300 }, + [112] = { 78.9, 42.5, 267, 300 }, + [113] = { 33.2, 41.2, 267, 300 }, + [114] = { 36, 40.5, 267, 300 }, + [115] = { 29.9, 40.5, 267, 300 }, + [116] = { 82.6, 56, 400, 25 }, + [117] = { 82.7, 55.8, 400, 25 }, + [118] = { 30.1, 13.3, 1519, 300 }, + [119] = { 30, 13, 1519, 300 }, + [120] = { 90.2, 10.1, 5179, 300 }, + [121] = { 88.2, 6.8, 5179, 300 }, + [122] = { 88.6, 4.9, 5179, 300 }, + [123] = { 91.1, 4.3, 5179, 300 }, + [124] = { 85.7, 4.3, 5179, 300 }, + [125] = { 32.6, 84.5, 5581, 300 }, + [126] = { 32.7, 84.5, 5581, 300 }, + [127] = { 32.6, 84.4, 5581, 300 }, + [128] = { 61.5, 73.8, 5581, 120 }, + [129] = { 62.1, 73.5, 5581, 120 }, + [130] = { 61.4, 73.1, 5581, 120 }, + [131] = { 40.2, 68.1, 5581, 120 }, + [132] = { 40.2, 68, 5581, 120 }, + [133] = { 41.7, 67.9, 5581, 120 }, + [134] = { 42.3, 66.9, 5581, 120 }, + [135] = { 41, 65.5, 5581, 120 }, + [136] = { 40.1, 53.4, 5581, 120 }, + [137] = { 40.5, 53.3, 5581, 120 }, + [138] = { 40.7, 53.1, 5581, 120 }, + }, + ["lvl"] = "1", + }, + [622] = { + ["coords"] = { + [1] = { 37.6, 61.9, 5138, 18000 }, + [2] = { 36.7, 60.5, 5138, 18000 }, + [3] = { 40, 56.2, 5138, 18000 }, + [4] = { 34.8, 56.1, 5138, 18000 }, + [5] = { 39.6, 54, 5138, 18000 }, + [6] = { 34.5, 51.5, 5138, 18000 }, + [7] = { 32.3, 47.7, 5138, 18000 }, + [8] = { 35, 46.1, 5138, 18000 }, + [9] = { 37.7, 43.6, 5138, 18000 }, + [10] = { 39.2, 34.4, 5138, 18000 }, + [11] = { 36.1, 29.7, 5138, 18000 }, + [12] = { 39.1, 28.8, 5138, 18000 }, + [13] = { 36, 23.2, 5138, 18000 }, + }, + ["lvl"] = "18-19", + ["rnk"] = "1", + }, + [623] = { + ["coords"] = { + [1] = { 41.5, 83.3, 40, 900 }, + [2] = { 41.2, 83.2, 40, 900 }, + [3] = { 40.7, 82.3, 40, 900 }, + [4] = { 40.7, 81.8, 40, 900 }, + [5] = { 41.6, 81.7, 40, 900 }, + [6] = { 41.5, 81.3, 40, 900 }, + [7] = { 40.7, 81.2, 40, 900 }, + [8] = { 41.2, 81.1, 40, 900 }, + [9] = { 40.9, 80.8, 40, 900 }, + [10] = { 50.9, 96.1, 1581, 900 }, + [11] = { 48.8, 95.5, 1581, 900 }, + [12] = { 44.6, 88.4, 1581, 900 }, + [13] = { 44.7, 84.6, 1581, 900 }, + [14] = { 51.8, 83.6, 1581, 900 }, + [15] = { 51, 81.1, 1581, 900 }, + [16] = { 45, 79.9, 1581, 900 }, + [17] = { 48.8, 79.1, 1581, 900 }, + [18] = { 45.9, 76.9, 1581, 900 }, + }, + ["lvl"] = "17-18", + ["rnk"] = "1", + }, + [624] = { + ["coords"] = { + [1] = { 42.1, 83, 40, 900 }, + [2] = { 40.8, 82.6, 40, 900 }, + [3] = { 42, 82.5, 40, 900 }, + [4] = { 40.9, 81.5, 40, 900 }, + [5] = { 40.6, 80.9, 40, 900 }, + [6] = { 55.9, 93.7, 1581, 900 }, + [7] = { 45.5, 90.6, 1581, 900 }, + [8] = { 55.1, 89.9, 1581, 900 }, + [9] = { 46, 82, 1581, 900 }, + [10] = { 43.6, 77.7, 1581, 900 }, + }, + ["lvl"] = "17-18", + ["rnk"] = "1", + }, + [625] = { + ["coords"] = { + [1] = { 42.4, 83.3, 40, 900 }, + [2] = { 41.7, 83.3, 40, 900 }, + [3] = { 41, 82.7, 40, 900 }, + [4] = { 41.6, 82.5, 40, 900 }, + [5] = { 41.9, 81.4, 40, 900 }, + [6] = { 41.1, 81, 40, 900 }, + [7] = { 58.2, 96.3, 1581, 900 }, + [8] = { 52.8, 95.9, 1581, 900 }, + [9] = { 47, 91.9, 1581, 900 }, + [10] = { 51.3, 90.3, 1581, 900 }, + [11] = { 53.6, 81.8, 1581, 900 }, + [12] = { 47.6, 78, 1581, 900 }, + }, + ["lvl"] = "17-18", + ["rnk"] = "1", + }, + [626] = { + ["coords"] = { + [1] = { 42.2, 82.6, 40, 300 }, + [2] = { 56.5, 90.9, 1581, 300 }, + }, + ["lvl"] = "20", + ["rnk"] = "1", + }, + [628] = { + ["coords"] = { + [1] = { 52.7, 63.2, 10, 300 }, + [2] = { 48.6, 61.5, 10, 300 }, + [3] = { 59.3, 58.8, 10, 300 }, + [4] = { 59.7, 57.8, 10, 300 }, + [5] = { 70, 35.4, 10, 300 }, + [6] = { 68.4, 33.3, 10, 300 }, + [7] = { 67.3, 31.8, 10, 300 }, + [8] = { 66.1, 28.7, 10, 300 }, + [9] = { 63.7, 27.8, 10, 300 }, + [10] = { 64.1, 25.6, 10, 300 }, + }, + ["lvl"] = "24-25", + }, + [631] = "_", + [633] = { + ["coords"] = { + [1] = { 75.3, 48.7, 10, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "18", + }, + [634] = { + ["coords"] = { + [1] = { 34.4, 56.7, 5138, 18000 }, + [2] = { 34.4, 54.7, 5138, 18000 }, + [3] = { 24.4, 52.6, 5138, 18000 }, + [4] = { 12.2, 47.6, 5138, 18000 }, + [5] = { 12.8, 35.3, 5138, 18000 }, + [6] = { 35.6, 33.2, 5138, 18000 }, + [7] = { 12.1, 30.2, 5138, 18000 }, + [8] = { 39.7, 29.8, 5138, 18000 }, + [9] = { 11.8, 29.3, 5138, 18000 }, + [10] = { 13.5, 25.1, 5138, 18000 }, + [11] = { 35.5, 24.2, 5138, 18000 }, + }, + ["lvl"] = "17-18", + ["rnk"] = "1", + }, + [636] = { + ["coords"] = { + [1] = { 75.2, 27.1, 5138, 604800 }, + [2] = { 76.2, 26.8, 5138, 604800 }, + [3] = { 69.2, 9.4, 5138, 18000 }, + [4] = { 69.9, 8.5, 5138, 18000 }, + }, + ["lvl"] = "19-20", + ["rnk"] = "1", + }, + [638] = "_", + [639] = { + ["coords"] = { + [1] = { 75.7, 28.6, 5138, 604800 }, + }, + ["lvl"] = "21", + ["rnk"] = "1", + }, + [641] = { + ["coords"] = { + [1] = { 24.7, 79.5, 5138, 18000 }, + [2] = { 31.5, 76.4, 5138, 18000 }, + [3] = { 27.9, 76.1, 5138, 18000 }, + [4] = { 43.5, 75.8, 5138, 18000 }, + [5] = { 23.6, 75.6, 5138, 18000 }, + [6] = { 24.1, 73.9, 5138, 18000 }, + [7] = { 36.1, 73.6, 5138, 18000 }, + [8] = { 27.3, 73.2, 5138, 18000 }, + [9] = { 26.1, 72.2, 5138, 18000 }, + [10] = { 29.7, 71.4, 5138, 18000 }, + [11] = { 37.8, 69.1, 5138, 18000 }, + }, + ["lvl"] = "18-19", + ["rnk"] = "1", + }, + [642] = { + ["coords"] = { + [1] = { 28.9, 75, 5138, 604800 }, + }, + ["lvl"] = "20", + ["rnk"] = "1", + }, + [644] = { + ["coords"] = { + [1] = { 19.1, 52.8, 5138, 604800 }, + }, + ["lvl"] = "19", + ["rnk"] = "1", + }, + [645] = { + ["coords"] = { + [1] = { 80.8, 24, 5138, 604800 }, + }, + ["lvl"] = "20", + ["rnk"] = "1", + }, + [646] = { + ["coords"] = { + [1] = { 72.2, 13.7, 5138, 604800 }, + }, + ["lvl"] = "20", + ["rnk"] = "1", + }, + [647] = { + ["coords"] = { + [1] = { 73.9, 24.3, 5138, 604800 }, + }, + ["lvl"] = "20", + ["rnk"] = "1", + }, + [648] = "_", + [649] = "_", + [650] = "_", + [651] = "_", + [652] = "_", + [653] = "_", + [656] = { + ["coords"] = { + [1] = { 70.3, 40.8, 1519, 30 }, + [2] = { 54.2, 99.3, 5581, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [657] = { + ["coords"] = { + [1] = { 86.6, 44.1, 5138, 18000 }, + [2] = { 89.3, 43.7, 5138, 18000 }, + [3] = { 71, 38.6, 5138, 18000 }, + [4] = { 72.1, 34.7, 5138, 18000 }, + [5] = { 71.6, 33, 5138, 18000 }, + [6] = { 57.1, 32.1, 5138, 18000 }, + [7] = { 60.8, 30.4, 5138, 18000 }, + [8] = { 70.5, 29.9, 5138, 18000 }, + [9] = { 56.1, 29.1, 5138, 18000 }, + [10] = { 81, 29.1, 5138, 18000 }, + [11] = { 81.3, 28.2, 5138, 18000 }, + [12] = { 69, 27.7, 5138, 18000 }, + [13] = { 61.9, 26.9, 5138, 18000 }, + [14] = { 70, 26.8, 5138, 18000 }, + [15] = { 70.1, 25.7, 5138, 18000 }, + [16] = { 74, 24, 5138, 604800 }, + [17] = { 71.8, 23.6, 5138, 18000 }, + [18] = { 71.3, 20.7, 5138, 18000 }, + [19] = { 70.9, 18.1, 5138, 18000 }, + [20] = { 72.3, 17.8, 5138, 18000 }, + [21] = { 61.7, 15.7, 5138, 18000 }, + [22] = { 79.2, 15.5, 5138, 18000 }, + [23] = { 73.1, 13.5, 5138, 18000 }, + [24] = { 78.1, 13.3, 5138, 18000 }, + [25] = { 77.3, 12.9, 5138, 18000 }, + [26] = { 61.2, 11.9, 5138, 18000 }, + [27] = { 63.7, 10.6, 5138, 18000 }, + }, + ["lvl"] = "19-20", + ["rnk"] = "1", + }, + [658] = { + ["coords"] = { + [1] = { 29.9, 71.2, 1, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [660] = { + ["coords"] = { + [1] = { 20.9, 15.4, 33, 300 }, + [2] = { 20.5, 14.3, 33, 300 }, + [3] = { 21, 13.5, 33, 300 }, + [4] = { 20.1, 13.5, 33, 300 }, + [5] = { 20.9, 13, 33, 300 }, + [6] = { 20.4, 12.9, 33, 300 }, + [7] = { 19.4, 12.8, 33, 300 }, + [8] = { 20.3, 12.2, 33, 300 }, + [9] = { 19.9, 12.1, 33, 300 }, + [10] = { 20.9, 12.1, 33, 300 }, + [11] = { 20, 12.1, 33, 300 }, + [12] = { 19.5, 12, 33, 300 }, + [13] = { 20.1, 11.9, 33, 300 }, + [14] = { 19.9, 11.9, 33, 300 }, + [15] = { 20.3, 11.8, 33, 300 }, + [16] = { 20, 11.7, 33, 300 }, + [17] = { 19.4, 11.4, 33, 300 }, + [18] = { 23.1, 11.3, 33, 300 }, + [19] = { 20.7, 11.2, 33, 300 }, + [20] = { 23.4, 10.9, 33, 300 }, + [21] = { 23.7, 10.9, 33, 300 }, + [22] = { 23.2, 10.8, 33, 300 }, + [23] = { 22.7, 10.8, 33, 300 }, + [24] = { 24.1, 10.7, 33, 300 }, + [25] = { 23.1, 10.7, 33, 300 }, + [26] = { 24.6, 10.7, 33, 300 }, + [27] = { 24.4, 10.6, 33, 300 }, + [28] = { 24.7, 10.5, 33, 300 }, + [29] = { 24.2, 10.4, 33, 300 }, + [30] = { 24.7, 10.3, 33, 300 }, + [31] = { 21.5, 10.3, 33, 300 }, + [32] = { 21.3, 10.2, 33, 300 }, + [33] = { 22.9, 10.2, 33, 300 }, + [34] = { 24, 10, 33, 300 }, + [35] = { 23.9, 9.9, 33, 300 }, + [36] = { 24.5, 9.9, 33, 300 }, + [37] = { 23.7, 9.9, 33, 300 }, + [38] = { 24.2, 9.8, 33, 300 }, + [39] = { 23.6, 9.7, 33, 300 }, + [40] = { 22.7, 9.7, 33, 300 }, + [41] = { 23.4, 9.5, 33, 300 }, + [42] = { 24.3, 9.5, 33, 300 }, + [43] = { 24.1, 9.4, 33, 300 }, + [44] = { 23.8, 9.4, 33, 300 }, + [45] = { 24.7, 9.4, 33, 300 }, + [46] = { 22.7, 9.2, 33, 300 }, + [47] = { 24.4, 9.1, 33, 300 }, + [48] = { 24.9, 9.1, 33, 300 }, + [49] = { 24.2, 8.9, 33, 300 }, + [50] = { 23.7, 8.8, 33, 300 }, + [51] = { 23, 8.8, 33, 300 }, + [52] = { 23.4, 8.8, 33, 300 }, + [53] = { 24.9, 8.7, 33, 300 }, + [54] = { 22.7, 8.6, 33, 300 }, + [55] = { 23.5, 8.4, 33, 300 }, + [56] = { 23.4, 8.4, 33, 300 }, + [57] = { 23.6, 8.2, 33, 300 }, + }, + ["lvl"] = "37", + }, + [661] = { + ["coords"] = { + [1] = { 75.3, 49, 10, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [663] = { + ["coords"] = { + [1] = { 75.8, 47.6, 10, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [667] = { + ["coords"] = { + [1] = { 47, 41.8, 33, 300 }, + [2] = { 48.4, 41.7, 33, 300 }, + [3] = { 48.5, 41.6, 33, 300 }, + [4] = { 47.6, 41, 33, 300 }, + [5] = { 48.5, 40.9, 33, 300 }, + [6] = { 46.6, 40.4, 33, 300 }, + [7] = { 46, 40.4, 33, 300 }, + [8] = { 45, 40.2, 33, 300 }, + [9] = { 43.8, 40.2, 33, 300 }, + [10] = { 48.7, 40.1, 33, 300 }, + [11] = { 44.1, 40.1, 33, 300 }, + [12] = { 47.3, 39.9, 33, 300 }, + [13] = { 47.5, 39.8, 33, 300 }, + [14] = { 46.9, 39.7, 33, 300 }, + [15] = { 44.3, 39.7, 33, 300 }, + [16] = { 48.2, 39.6, 33, 300 }, + [17] = { 43.4, 39.5, 33, 300 }, + [18] = { 47.1, 39.5, 33, 300 }, + [19] = { 44.2, 39.5, 33, 300 }, + [20] = { 43.7, 39.4, 33, 300 }, + [21] = { 46.5, 39.1, 33, 300 }, + [22] = { 46.6, 38.9, 33, 300 }, + [23] = { 47.6, 38.8, 33, 300 }, + [24] = { 46.5, 38.8, 33, 300 }, + [25] = { 48.6, 38.4, 33, 300 }, + [26] = { 48.5, 38.4, 33, 300 }, + [27] = { 48.5, 38.3, 33, 300 }, + [28] = { 45, 38.1, 33, 300 }, + [29] = { 45.9, 38, 33, 300 }, + [30] = { 44, 37.2, 33, 300 }, + [31] = { 43.3, 36.4, 33, 300 }, + [32] = { 42.1, 36.3, 33, 300 }, + [33] = { 41.9, 36.3, 33, 300 }, + [34] = { 42.3, 36.1, 33, 300 }, + [35] = { 41.9, 36, 33, 300 }, + [36] = { 42.2, 35.8, 33, 300 }, + [37] = { 42.7, 35.6, 33, 300 }, + [38] = { 42.7, 35.5, 33, 300 }, + [39] = { 47.3, 35.4, 33, 300 }, + [40] = { 44, 35.4, 33, 300 }, + [41] = { 42.4, 35.3, 33, 300 }, + [42] = { 47.3, 35.3, 33, 300 }, + [43] = { 42.4, 35, 33, 300 }, + [44] = { 43.5, 34.7, 33, 300 }, + [45] = { 43.9, 34.4, 33, 300 }, + [46] = { 47.1, 34.1, 33, 300 }, + [47] = { 45.1, 34.1, 33, 300 }, + [48] = { 45, 33.6, 33, 300 }, + [49] = { 45.2, 33.6, 33, 300 }, + [50] = { 45.1, 33.5, 33, 300 }, + [51] = { 47.5, 33.3, 33, 300 }, + [52] = { 42.5, 33.3, 33, 300 }, + [53] = { 43.5, 33, 33, 300 }, + [54] = { 47, 32.5, 33, 300 }, + [55] = { 46.2, 32.5, 33, 300 }, + [56] = { 46, 32.3, 33, 300 }, + [57] = { 45.2, 32.3, 33, 300 }, + [58] = { 46, 32, 33, 300 }, + [59] = { 46.2, 32, 33, 300 }, + [60] = { 46.4, 32, 33, 300 }, + [61] = { 45.6, 31.7, 33, 300 }, + [62] = { 46.5, 30, 33, 300 }, + }, + ["lvl"] = "39-40", + }, + [669] = { + ["coords"] = { + [1] = { 45, 44.1, 33, 300 }, + [2] = { 44.6, 43.7, 33, 300 }, + [3] = { 45.8, 43.5, 33, 300 }, + [4] = { 46, 43.1, 33, 300 }, + [5] = { 45.8, 43, 33, 300 }, + [6] = { 46.2, 43, 33, 300 }, + [7] = { 45.4, 42.9, 33, 300 }, + [8] = { 45.1, 42.8, 33, 300 }, + [9] = { 45.6, 42.8, 33, 300 }, + [10] = { 44.4, 42.7, 33, 300 }, + [11] = { 46, 42.6, 33, 300 }, + [12] = { 46.3, 42.6, 33, 300 }, + [13] = { 45.9, 42.4, 33, 300 }, + [14] = { 45.6, 42.2, 33, 300 }, + [15] = { 44.3, 42.2, 33, 300 }, + [16] = { 46.1, 42.1, 33, 300 }, + [17] = { 44.6, 42, 33, 300 }, + [18] = { 44.5, 42, 33, 300 }, + [19] = { 46.9, 41.8, 33, 300 }, + [20] = { 45, 41.8, 33, 300 }, + [21] = { 45.8, 41.8, 33, 300 }, + [22] = { 44.9, 41.7, 33, 300 }, + [23] = { 44.3, 41.7, 33, 300 }, + [24] = { 46, 41.6, 33, 300 }, + [25] = { 44.6, 41.6, 33, 300 }, + [26] = { 45, 41.6, 33, 300 }, + [27] = { 44.5, 40.9, 33, 300 }, + }, + ["lvl"] = "41-42", + }, + [670] = { + ["coords"] = { + [1] = { 45, 44.1, 33, 300 }, + [2] = { 44.6, 43.7, 33, 300 }, + [3] = { 45.8, 43.5, 33, 300 }, + [4] = { 46, 43.1, 33, 300 }, + [5] = { 45.8, 43, 33, 300 }, + [6] = { 46.2, 43, 33, 300 }, + [7] = { 45.4, 42.9, 33, 300 }, + [8] = { 45.1, 42.8, 33, 300 }, + [9] = { 45.6, 42.8, 33, 300 }, + [10] = { 44.4, 42.7, 33, 300 }, + [11] = { 46, 42.6, 33, 300 }, + [12] = { 46.3, 42.6, 33, 300 }, + [13] = { 45.9, 42.4, 33, 300 }, + [14] = { 45.6, 42.2, 33, 300 }, + [15] = { 44.3, 42.2, 33, 300 }, + [16] = { 46.1, 42.1, 33, 300 }, + [17] = { 44.6, 42, 33, 300 }, + [18] = { 44.5, 42, 33, 300 }, + [19] = { 46.9, 41.8, 33, 300 }, + [20] = { 45, 41.8, 33, 300 }, + [21] = { 45.8, 41.8, 33, 300 }, + [22] = { 44.9, 41.7, 33, 300 }, + [23] = { 44.3, 41.7, 33, 300 }, + [24] = { 46, 41.6, 33, 300 }, + [25] = { 44.6, 41.6, 33, 300 }, + [26] = { 45, 41.6, 33, 300 }, + [27] = { 44.5, 40.9, 33, 300 }, + }, + ["lvl"] = "41-42", + }, + [671] = { + ["coords"] = { + [1] = { 20.9, 15.4, 33, 300 }, + [2] = { 20.5, 14.3, 33, 300 }, + [3] = { 21, 13.5, 33, 300 }, + [4] = { 20.1, 13.5, 33, 300 }, + [5] = { 20.9, 13, 33, 300 }, + [6] = { 20.4, 12.9, 33, 300 }, + [7] = { 19.4, 12.8, 33, 300 }, + [8] = { 20.3, 12.2, 33, 300 }, + [9] = { 19.9, 12.1, 33, 300 }, + [10] = { 20.9, 12.1, 33, 300 }, + [11] = { 20, 12.1, 33, 300 }, + [12] = { 19.5, 12, 33, 300 }, + [13] = { 20.1, 11.9, 33, 300 }, + [14] = { 19.9, 11.9, 33, 300 }, + [15] = { 20.3, 11.8, 33, 300 }, + [16] = { 20, 11.7, 33, 300 }, + [17] = { 19.4, 11.4, 33, 300 }, + [18] = { 23.1, 11.3, 33, 300 }, + [19] = { 20.7, 11.2, 33, 300 }, + [20] = { 23.4, 10.9, 33, 300 }, + [21] = { 23.7, 10.9, 33, 300 }, + [22] = { 23.2, 10.8, 33, 300 }, + [23] = { 22.7, 10.8, 33, 300 }, + [24] = { 24.1, 10.7, 33, 300 }, + [25] = { 23.1, 10.7, 33, 300 }, + [26] = { 24.6, 10.7, 33, 300 }, + [27] = { 24.4, 10.6, 33, 300 }, + [28] = { 24.7, 10.5, 33, 300 }, + [29] = { 24.2, 10.4, 33, 300 }, + [30] = { 24.7, 10.3, 33, 300 }, + [31] = { 21.5, 10.3, 33, 300 }, + [32] = { 21.3, 10.2, 33, 300 }, + [33] = { 22.9, 10.2, 33, 300 }, + [34] = { 24, 10, 33, 300 }, + [35] = { 23.9, 9.9, 33, 300 }, + [36] = { 24.5, 9.9, 33, 300 }, + [37] = { 23.7, 9.9, 33, 300 }, + [38] = { 24.2, 9.8, 33, 300 }, + [39] = { 23.6, 9.7, 33, 300 }, + [40] = { 22.7, 9.7, 33, 300 }, + [41] = { 23.4, 9.5, 33, 300 }, + [42] = { 24.3, 9.5, 33, 300 }, + [43] = { 24.1, 9.4, 33, 300 }, + [44] = { 23.8, 9.4, 33, 300 }, + [45] = { 24.7, 9.4, 33, 300 }, + [46] = { 22.7, 9.2, 33, 300 }, + [47] = { 24.4, 9.1, 33, 300 }, + [48] = { 24.9, 9.1, 33, 300 }, + [49] = { 24.2, 8.9, 33, 300 }, + [50] = { 23.7, 8.8, 33, 300 }, + [51] = { 23, 8.8, 33, 300 }, + [52] = { 23.4, 8.8, 33, 300 }, + [53] = { 24.9, 8.7, 33, 300 }, + [54] = { 22.7, 8.6, 33, 300 }, + [55] = { 23.5, 8.4, 33, 300 }, + [56] = { 23.4, 8.4, 33, 300 }, + [57] = { 23.6, 8.2, 33, 300 }, + }, + ["lvl"] = "36-37", + }, + [672] = { + ["coords"] = { + [1] = { 44.3, 44.9, 33, 300 }, + [2] = { 47.5, 43.7, 33, 300 }, + [3] = { 48.1, 43.2, 33, 300 }, + [4] = { 47.7, 43.2, 33, 300 }, + [5] = { 48, 42.6, 33, 300 }, + [6] = { 47.7, 42.2, 33, 300 }, + }, + ["lvl"] = "44", + }, + [674] = { + ["coords"] = { + [1] = { 42, 46.3, 33, 300 }, + [2] = { 42.2, 46.2, 33, 300 }, + [3] = { 42.1, 46.1, 33, 300 }, + [4] = { 41.8, 45.2, 33, 300 }, + [5] = { 42.3, 45.1, 33, 300 }, + [6] = { 41.6, 44.6, 33, 300 }, + [7] = { 41.8, 44.5, 33, 300 }, + [8] = { 42.3, 44.3, 33, 300 }, + [9] = { 41.7, 43.9, 33, 300 }, + [10] = { 41.4, 43.8, 33, 300 }, + [11] = { 40.4, 43.8, 33, 300 }, + [12] = { 41.3, 43.6, 33, 300 }, + [13] = { 41.6, 43.5, 33, 300 }, + [14] = { 40.4, 43.3, 33, 300 }, + [15] = { 40.8, 43.1, 33, 300 }, + [16] = { 41.9, 43.1, 33, 300 }, + [17] = { 41.2, 43, 33, 300 }, + [18] = { 41.6, 42.9, 33, 300 }, + [19] = { 42, 42.6, 33, 300 }, + [20] = { 41.3, 42.4, 33, 300 }, + [21] = { 41.6, 42.3, 33, 300 }, + [22] = { 41.2, 41.9, 33, 300 }, + [23] = { 42.1, 41.8, 33, 300 }, + [24] = { 41.6, 41.4, 33, 300 }, + [25] = { 42.4, 41.4, 33, 300 }, + }, + ["lvl"] = "40-41", + }, + [675] = { + ["coords"] = { + [1] = { 42.1, 46.2, 33, 300 }, + [2] = { 42.2, 44.8, 33, 300 }, + [3] = { 42, 44.6, 33, 300 }, + [4] = { 42.1, 44.5, 33, 300 }, + [5] = { 41.2, 43.9, 33, 300 }, + [6] = { 41, 43.6, 33, 300 }, + [7] = { 41.9, 42.6, 33, 300 }, + [8] = { 41.8, 41.6, 33, 300 }, + }, + ["lvl"] = "42", + }, + [676] = { + ["coords"] = { + [1] = { 42.1, 46.2, 33, 300 }, + [2] = { 42.2, 44.8, 33, 300 }, + [3] = { 42, 44.6, 33, 300 }, + [4] = { 42.1, 44.5, 33, 300 }, + [5] = { 41.2, 43.9, 33, 300 }, + [6] = { 41, 43.6, 33, 300 }, + [7] = { 41.9, 42.6, 33, 300 }, + [8] = { 41.8, 41.6, 33, 300 }, + }, + ["lvl"] = "41-42", + }, + [677] = { + ["coords"] = { + [1] = { 42.1, 46.2, 33, 300 }, + [2] = { 42.2, 44.8, 33, 300 }, + [3] = { 42, 44.6, 33, 300 }, + [4] = { 42.1, 44.5, 33, 300 }, + [5] = { 41.2, 43.9, 33, 300 }, + [6] = { 41, 43.6, 33, 300 }, + [7] = { 41.9, 42.6, 33, 300 }, + [8] = { 41.8, 41.6, 33, 300 }, + }, + ["lvl"] = "40-41", + }, + [678] = { + ["coords"] = { + [1] = { 51.5, 28.5, 33, 1800 }, + [2] = { 52.5, 28.2, 33, 1800 }, + [3] = { 50.6, 27.8, 33, 1800 }, + [4] = { 50.2, 27.7, 33, 1800 }, + [5] = { 50.8, 27.7, 33, 1800 }, + [6] = { 51.5, 27.1, 33, 1800 }, + [7] = { 51.6, 26.6, 33, 1800 }, + }, + ["lvl"] = "43-44", + ["rnk"] = "1", + }, + [679] = { + ["coords"] = { + [1] = { 50.3, 30.6, 33, 1800 }, + [2] = { 50.4, 30.6, 33, 1800 }, + [3] = { 50.3, 30.5, 33, 1800 }, + [4] = { 50.4, 30.4, 33, 1800 }, + [5] = { 50.1, 27.9, 33, 1800 }, + [6] = { 51.2, 27.9, 33, 1800 }, + [7] = { 52.2, 27.6, 33, 1800 }, + [8] = { 50.9, 27.1, 33, 1800 }, + [9] = { 51, 26.6, 33, 1800 }, + }, + ["lvl"] = "43-44", + ["rnk"] = "1", + }, + [681] = { + ["coords"] = { + [1] = { 34.7, 17.5, 33, 300 }, + [2] = { 35, 16.3, 33, 300 }, + [3] = { 38.7, 15.4, 33, 300 }, + [4] = { 36.1, 15.3, 33, 300 }, + [5] = { 39.2, 14.4, 33, 300 }, + [6] = { 37.4, 14.3, 33, 300 }, + [7] = { 34.5, 14, 33, 300 }, + [8] = { 38.8, 13.6, 33, 300 }, + [9] = { 33.9, 13, 33, 300 }, + [10] = { 36, 12.9, 33, 300 }, + [11] = { 35.7, 12.1, 33, 300 }, + [12] = { 35.1, 12.1, 33, 300 }, + [13] = { 37.3, 11.6, 33, 300 }, + [14] = { 34.1, 11.3, 33, 300 }, + [15] = { 33.6, 11.1, 33, 300 }, + [16] = { 31.5, 9.9, 33, 300 }, + [17] = { 33.4, 9.9, 33, 300 }, + [18] = { 40.2, 9.9, 33, 300 }, + [19] = { 33.1, 9.6, 33, 300 }, + [20] = { 32.4, 9.6, 33, 300 }, + [21] = { 31.4, 8.4, 33, 300 }, + [22] = { 40.4, 8.3, 33, 300 }, + [23] = { 30.6, 7.6, 33, 300 }, + }, + ["lvl"] = "30-31", + }, + [682] = { + ["coords"] = { + [1] = { 47.2, 18.5, 33, 300 }, + [2] = { 46.6, 17.5, 33, 300 }, + [3] = { 46, 16.9, 33, 300 }, + [4] = { 47.1, 16.8, 33, 300 }, + [5] = { 46.6, 16.1, 33, 300 }, + [6] = { 30.7, 16, 33, 300 }, + [7] = { 46.1, 15.3, 33, 300 }, + [8] = { 42.9, 15.3, 33, 300 }, + [9] = { 47.1, 15.2, 33, 300 }, + [10] = { 30.3, 15.2, 33, 300 }, + [11] = { 45.5, 14.5, 33, 300 }, + [12] = { 46.6, 14.4, 33, 300 }, + [13] = { 48.1, 13.7, 33, 300 }, + [14] = { 44, 13.7, 33, 300 }, + [15] = { 30.2, 13.6, 33, 300 }, + [16] = { 46.5, 12.9, 33, 300 }, + [17] = { 47.6, 12.9, 33, 300 }, + [18] = { 48.2, 12.2, 33, 300 }, + [19] = { 47.4, 11.4, 33, 300 }, + [20] = { 29.7, 11.3, 33, 300 }, + [21] = { 29.4, 10.4, 33, 300 }, + [22] = { 29, 9.5, 33, 300 }, + [23] = { 30.4, 9, 33, 300 }, + }, + ["lvl"] = "32-33", + }, + [683] = { + ["coords"] = { + [1] = { 35.1, 15.1, 33, 300 }, + [2] = { 35, 14.2, 33, 300 }, + [3] = { 36.6, 13.8, 33, 300 }, + [4] = { 42.9, 13.6, 33, 300 }, + [5] = { 38.3, 13.4, 33, 300 }, + [6] = { 41.3, 13.4, 33, 300 }, + [7] = { 42.4, 13.2, 33, 300 }, + [8] = { 42.3, 13.2, 33, 300 }, + [9] = { 41.8, 13, 33, 300 }, + [10] = { 41.4, 12.8, 33, 300 }, + [11] = { 41.8, 12.7, 33, 300 }, + [12] = { 37.6, 12.5, 33, 300 }, + [13] = { 43.1, 12.3, 33, 300 }, + [14] = { 40.5, 11.4, 33, 300 }, + [15] = { 40.6, 11.2, 33, 300 }, + [16] = { 42.9, 10.5, 33, 300 }, + [17] = { 41.4, 10.5, 33, 300 }, + [18] = { 42.1, 10.1, 33, 300 }, + [19] = { 42.5, 9.6, 33, 300 }, + [20] = { 37.3, 8.2, 33, 300 }, + [21] = { 41.3, 8.1, 33, 300 }, + [22] = { 39.2, 8.1, 33, 300 }, + [23] = { 36.1, 7.2, 33, 300 }, + [24] = { 39, 6.6, 33, 300 }, + }, + ["lvl"] = "30-31", + }, + [684] = { + ["coords"] = { + [1] = { 39.3, 45.5, 33, 300 }, + [2] = { 37.3, 45.2, 33, 300 }, + [3] = { 39.6, 44.2, 33, 300 }, + [4] = { 39.6, 42.6, 33, 300 }, + [5] = { 38.7, 39.7, 33, 300 }, + [6] = { 39.2, 37.9, 33, 300 }, + [7] = { 36.6, 37.8, 33, 300 }, + [8] = { 38.3, 34.7, 33, 300 }, + [9] = { 39.4, 33.3, 33, 300 }, + [10] = { 38.7, 32.9, 33, 300 }, + [11] = { 46.5, 28.4, 33, 300 }, + [12] = { 45.9, 27.7, 33, 300 }, + [13] = { 46.5, 26.9, 33, 300 }, + [14] = { 46.1, 26.2, 33, 300 }, + [15] = { 49.7, 25.5, 33, 300 }, + [16] = { 50.2, 24.7, 33, 300 }, + [17] = { 49.7, 24.1, 33, 300 }, + [18] = { 48.9, 23.9, 33, 300 }, + [19] = { 47.2, 23.1, 33, 300 }, + [20] = { 46.4, 22.5, 33, 300 }, + [21] = { 48.7, 22.2, 33, 300 }, + [22] = { 49.7, 20.8, 33, 300 }, + [23] = { 48.7, 20.7, 33, 300 }, + [24] = { 50.7, 20.6, 33, 300 }, + [25] = { 48.1, 20.2, 33, 300 }, + }, + ["lvl"] = "37-38", + }, + [685] = { + ["coords"] = { + [1] = { 27.5, 17.7, 33, 300 }, + [2] = { 26.7, 17.6, 33, 300 }, + [3] = { 26, 17.1, 33, 300 }, + [4] = { 27.3, 16.6, 33, 300 }, + [5] = { 24.5, 16.2, 33, 300 }, + [6] = { 24.2, 16.2, 33, 300 }, + [7] = { 24.8, 16.1, 33, 300 }, + [8] = { 26.6, 16, 33, 300 }, + [9] = { 25.7, 15.8, 33, 300 }, + [10] = { 24.5, 15.7, 33, 300 }, + [11] = { 24.1, 15.7, 33, 300 }, + [12] = { 27.4, 15.5, 33, 300 }, + [13] = { 23.7, 15.4, 33, 300 }, + [14] = { 27.8, 14.3, 33, 300 }, + }, + ["lvl"] = "33-34", + }, + [686] = { + ["coords"] = { + [1] = { 37.6, 27.9, 33, 300 }, + [2] = { 35.9, 27.1, 33, 300 }, + [3] = { 38.1, 27, 33, 300 }, + [4] = { 35.6, 26.3, 33, 300 }, + [5] = { 38.8, 26.2, 33, 300 }, + [6] = { 34, 25.5, 33, 300 }, + [7] = { 38.4, 25.2, 33, 300 }, + [8] = { 30.3, 24.7, 33, 300 }, + [9] = { 38.9, 24.6, 33, 300 }, + [10] = { 32.4, 24.6, 33, 300 }, + [11] = { 33.4, 24.6, 33, 300 }, + [12] = { 30.6, 24, 33, 300 }, + [13] = { 33, 23.9, 33, 300 }, + [14] = { 32.1, 23.8, 33, 300 }, + [15] = { 30.7, 23.7, 33, 300 }, + [16] = { 30.7, 23.5, 33, 300 }, + [17] = { 30.8, 23.2, 33, 300 }, + [18] = { 32.4, 23.2, 33, 300 }, + [19] = { 30.6, 22.5, 33, 300 }, + [20] = { 39.1, 22.1, 33, 300 }, + [21] = { 38.9, 21.6, 33, 300 }, + [22] = { 37.7, 21.5, 33, 300 }, + [23] = { 32.5, 21.4, 33, 300 }, + [24] = { 32, 20.7, 33, 300 }, + [25] = { 38.2, 20.5, 33, 300 }, + [26] = { 38.5, 19.8, 33, 300 }, + [27] = { 37.8, 19.7, 33, 300 }, + [28] = { 38.3, 19.2, 33, 300 }, + [29] = { 39.3, 19.1, 33, 300 }, + }, + ["lvl"] = "35-36", + }, + [687] = { + ["coords"] = { + [1] = { 23.2, 51.5, 33, 300 }, + [2] = { 26.1, 51.4, 33, 300 }, + [3] = { 24.9, 51.2, 33, 300 }, + [4] = { 26.6, 50.5, 33, 300 }, + [5] = { 23.4, 50.3, 33, 300 }, + [6] = { 27.6, 50.3, 33, 300 }, + [7] = { 26, 49.9, 33, 300 }, + [8] = { 27.3, 49.7, 33, 300 }, + [9] = { 23, 49.7, 33, 300 }, + [10] = { 24.1, 49.6, 33, 300 }, + [11] = { 23.7, 48.9, 33, 300 }, + [12] = { 27.8, 48.9, 33, 300 }, + [13] = { 26.9, 48.7, 33, 300 }, + [14] = { 23.4, 48.2, 33, 300 }, + [15] = { 27.4, 48.1, 33, 300 }, + [16] = { 28, 47.2, 33, 300 }, + [17] = { 28.3, 46.5, 33, 300 }, + [18] = { 28.8, 45.6, 33, 300 }, + [19] = { 28.2, 45, 33, 300 }, + [20] = { 31.2, 44.6, 33, 300 }, + [21] = { 28.9, 44.2, 33, 300 }, + [22] = { 30.6, 44.1, 33, 300 }, + [23] = { 30, 44.1, 33, 300 }, + [24] = { 30.1, 43.6, 33, 300 }, + [25] = { 29.3, 43.6, 33, 300 }, + [26] = { 28.3, 43.5, 33, 300 }, + [27] = { 27.3, 43.4, 33, 300 }, + [28] = { 31.5, 43.4, 33, 300 }, + [29] = { 32.1, 43.1, 33, 300 }, + [30] = { 28.9, 42.6, 33, 300 }, + [31] = { 30.9, 42.5, 33, 300 }, + [32] = { 32, 42.4, 33, 300 }, + [33] = { 31.4, 42, 33, 300 }, + [34] = { 30.5, 41.8, 33, 300 }, + [35] = { 32.4, 41.7, 33, 300 }, + [36] = { 31.9, 40.8, 33, 300 }, + [37] = { 31.5, 40.7, 33, 300 }, + [38] = { 34.6, 40.1, 33, 300 }, + [39] = { 32.7, 39.2, 33, 300 }, + [40] = { 34.6, 38.9, 33, 300 }, + [41] = { 33.4, 37.2, 33, 300 }, + [42] = { 32.6, 37.2, 33, 300 }, + [43] = { 32.9, 36.5, 33, 300 }, + }, + ["lvl"] = "40-41", + }, + [688] = { + ["coords"] = { + [1] = { 21.5, 86.4, 10, 300 }, + [2] = { 36.6, 8.3, 33, 300 }, + [3] = { 35.7, 6.7, 33, 300 }, + [4] = { 34.7, 6.7, 33, 300 }, + [5] = { 33.7, 6.4, 33, 300 }, + [6] = { 30.8, 2.4, 33, 300 }, + [7] = { 78.9, 80.3, 40, 300 }, + }, + ["lvl"] = "31-32", + }, + [689] = { + ["coords"] = { + [1] = { 27.3, 18.5, 33, 300 }, + [2] = { 27.4, 18.4, 33, 300 }, + [3] = { 24.6, 18.2, 33, 300 }, + [4] = { 26.3, 18.1, 33, 300 }, + [5] = { 24.2, 17.7, 33, 300 }, + [6] = { 25.1, 17.7, 33, 300 }, + [7] = { 23.1, 17.7, 33, 300 }, + [8] = { 24.7, 17, 33, 300 }, + [9] = { 23.7, 17, 33, 300 }, + [10] = { 24.5, 16.8, 33, 300 }, + [11] = { 48.7, 10.4, 33, 300 }, + [12] = { 48.7, 9.8, 33, 300 }, + [13] = { 49.2, 9.6, 33, 300 }, + [14] = { 48.2, 8.1, 33, 300 }, + [15] = { 48, 6.5, 33, 300 }, + [16] = { 47.4, 5.9, 33, 300 }, + [17] = { 46.6, 5.8, 33, 300 }, + }, + ["lvl"] = "34-35", + }, + [690] = { + ["coords"] = { + [1] = { 36.2, 43.6, 33, 300 }, + [2] = { 27.7, 42.7, 33, 300 }, + [3] = { 35.7, 42.6, 33, 300 }, + [4] = { 36.6, 42.6, 33, 300 }, + [5] = { 36.2, 42, 33, 300 }, + [6] = { 28.2, 41.8, 33, 300 }, + [7] = { 37, 41.7, 33, 300 }, + [8] = { 36.5, 41.2, 33, 300 }, + [9] = { 27.7, 41, 33, 300 }, + [10] = { 28.7, 40.9, 33, 300 }, + [11] = { 38.2, 40.4, 33, 300 }, + [12] = { 37.2, 40.2, 33, 300 }, + [13] = { 28.3, 39.6, 33, 300 }, + [14] = { 35.5, 39.4, 33, 300 }, + [15] = { 28.8, 38.8, 33, 300 }, + [16] = { 29.3, 38.1, 33, 300 }, + [17] = { 29.9, 37.6, 33, 300 }, + [18] = { 31.4, 37.3, 33, 300 }, + [19] = { 30.9, 37.1, 33, 300 }, + }, + ["lvl"] = "39-40", + }, + [691] = { + ["coords"] = { + [1] = { 21.5, 24.7, 33, 300 }, + [2] = { 21, 24.6, 33, 300 }, + [3] = { 20.4, 24.6, 33, 300 }, + [4] = { 19.9, 24.5, 33, 300 }, + [5] = { 21.9, 24.4, 33, 300 }, + [6] = { 20.4, 23.9, 33, 300 }, + [7] = { 21.9, 23.9, 33, 300 }, + [8] = { 19.8, 23.8, 33, 300 }, + [9] = { 21.4, 23.8, 33, 300 }, + [10] = { 20.9, 23.7, 33, 300 }, + [11] = { 21, 23.3, 33, 300 }, + [12] = { 21.4, 23.2, 33, 300 }, + [13] = { 20.4, 23.2, 33, 300 }, + [14] = { 22.2, 23.1, 33, 300 }, + [15] = { 22.5, 23.1, 33, 300 }, + [16] = { 21, 23.1, 33, 300 }, + [17] = { 20, 22.8, 33, 300 }, + [18] = { 22, 22.4, 33, 300 }, + [19] = { 21.4, 22.4, 33, 300 }, + [20] = { 19.4, 22.3, 33, 300 }, + [21] = { 20.5, 22.3, 33, 300 }, + [22] = { 21, 22.1, 33, 300 }, + [23] = { 19.9, 21.6, 33, 300 }, + [24] = { 20.3, 21.6, 33, 300 }, + }, + ["lvl"] = "36-37", + }, + [693] = "_", + [694] = { + ["coords"] = { + [1] = { 29.8, 21.6, 33, 300 }, + [2] = { 30.3, 20.7, 33, 300 }, + [3] = { 29.3, 20, 33, 300 }, + [4] = { 28.8, 20, 33, 300 }, + [5] = { 29.9, 19.7, 33, 300 }, + [6] = { 29.5, 19.6, 33, 300 }, + [7] = { 29.7, 19.6, 33, 300 }, + [8] = { 29.8, 19.5, 33, 300 }, + [9] = { 29.5, 19.4, 33, 300 }, + [10] = { 30.7, 19.4, 33, 300 }, + [11] = { 29.6, 19.3, 33, 300 }, + [12] = { 29.7, 19.1, 33, 300 }, + [13] = { 29, 19.1, 33, 300 }, + [14] = { 29.8, 19.1, 33, 300 }, + [15] = { 30.6, 18.1, 33, 300 }, + [16] = { 33.5, 17, 33, 300 }, + [17] = { 34, 16.8, 33, 300 }, + [18] = { 30.4, 16.8, 33, 300 }, + [19] = { 34.6, 16, 33, 300 }, + [20] = { 33.9, 15.9, 33, 300 }, + [21] = { 33.7, 15.6, 33, 300 }, + [22] = { 33.6, 15.6, 33, 300 }, + [23] = { 34, 15.4, 33, 300 }, + [24] = { 34.3, 14.6, 33, 300 }, + [25] = { 33.4, 13.8, 33, 300 }, + }, + ["lvl"] = "33-34", + }, + [696] = { + ["coords"] = { + [1] = { 47, 41.8, 33, 300 }, + [2] = { 48.4, 41.7, 33, 300 }, + [3] = { 48.5, 41.6, 33, 300 }, + [4] = { 47.6, 41, 33, 300 }, + [5] = { 48.5, 40.9, 33, 300 }, + [6] = { 46.6, 40.4, 33, 300 }, + [7] = { 46, 40.4, 33, 300 }, + [8] = { 45, 40.2, 33, 300 }, + [9] = { 43.8, 40.2, 33, 300 }, + [10] = { 48.7, 40.1, 33, 300 }, + [11] = { 44.1, 40.1, 33, 300 }, + [12] = { 47.3, 39.9, 33, 300 }, + [13] = { 47.5, 39.8, 33, 300 }, + [14] = { 46.9, 39.7, 33, 300 }, + [15] = { 44.3, 39.7, 33, 300 }, + [16] = { 48.2, 39.6, 33, 300 }, + [17] = { 43.4, 39.5, 33, 300 }, + [18] = { 47.1, 39.5, 33, 300 }, + [19] = { 44.2, 39.5, 33, 300 }, + [20] = { 43.7, 39.4, 33, 300 }, + [21] = { 46.5, 39.1, 33, 300 }, + [22] = { 46.6, 38.9, 33, 300 }, + [23] = { 47.6, 38.8, 33, 300 }, + [24] = { 46.5, 38.8, 33, 300 }, + [25] = { 48.6, 38.4, 33, 300 }, + [26] = { 48.5, 38.4, 33, 300 }, + [27] = { 48.5, 38.3, 33, 300 }, + [28] = { 45, 38.1, 33, 300 }, + [29] = { 45.9, 38, 33, 300 }, + [30] = { 44, 37.2, 33, 300 }, + [31] = { 43.3, 36.4, 33, 300 }, + [32] = { 42.1, 36.3, 33, 300 }, + [33] = { 41.9, 36.3, 33, 300 }, + [34] = { 42.3, 36.1, 33, 300 }, + [35] = { 41.9, 36, 33, 300 }, + [36] = { 42.2, 35.8, 33, 300 }, + [37] = { 42.7, 35.6, 33, 300 }, + [38] = { 42.7, 35.5, 33, 300 }, + [39] = { 47.3, 35.4, 33, 300 }, + [40] = { 44, 35.4, 33, 300 }, + [41] = { 42.4, 35.3, 33, 300 }, + [42] = { 47.3, 35.3, 33, 300 }, + [43] = { 42.4, 35, 33, 300 }, + [44] = { 43.5, 34.7, 33, 300 }, + [45] = { 43.9, 34.4, 33, 300 }, + [46] = { 47.1, 34.1, 33, 300 }, + [47] = { 45.1, 34.1, 33, 300 }, + [48] = { 45, 33.6, 33, 300 }, + [49] = { 45.2, 33.6, 33, 300 }, + [50] = { 45.1, 33.5, 33, 300 }, + [51] = { 47.5, 33.3, 33, 300 }, + [52] = { 42.5, 33.3, 33, 300 }, + [53] = { 43.5, 33, 33, 300 }, + [54] = { 47, 32.5, 33, 300 }, + [55] = { 46.2, 32.5, 33, 300 }, + [56] = { 46, 32.3, 33, 300 }, + [57] = { 45.2, 32.3, 33, 300 }, + [58] = { 46, 32, 33, 300 }, + [59] = { 46.2, 32, 33, 300 }, + [60] = { 46.4, 32, 33, 300 }, + [61] = { 45.6, 31.7, 33, 300 }, + [62] = { 46.5, 30, 33, 300 }, + }, + ["lvl"] = "39-40", + }, + [697] = { + ["coords"] = { + [1] = { 29.8, 21.6, 33, 300 }, + [2] = { 30.3, 20.7, 33, 300 }, + [3] = { 29.3, 20, 33, 300 }, + [4] = { 28.8, 20, 33, 300 }, + [5] = { 29.9, 19.7, 33, 300 }, + [6] = { 29.5, 19.6, 33, 300 }, + [7] = { 29.7, 19.6, 33, 300 }, + [8] = { 29.8, 19.5, 33, 300 }, + [9] = { 29.5, 19.4, 33, 300 }, + [10] = { 30.7, 19.4, 33, 300 }, + [11] = { 29.6, 19.3, 33, 300 }, + [12] = { 29.7, 19.1, 33, 300 }, + [13] = { 29, 19.1, 33, 300 }, + [14] = { 29.8, 19.1, 33, 300 }, + [15] = { 30.6, 18.1, 33, 300 }, + [16] = { 33.5, 17, 33, 300 }, + [17] = { 34, 16.8, 33, 300 }, + [18] = { 30.4, 16.8, 33, 300 }, + [19] = { 34.6, 16, 33, 300 }, + [20] = { 33.9, 15.9, 33, 300 }, + [21] = { 33.7, 15.6, 33, 300 }, + [22] = { 33.6, 15.6, 33, 300 }, + [23] = { 34, 15.4, 33, 300 }, + [24] = { 34.3, 14.6, 33, 300 }, + [25] = { 33.4, 13.8, 33, 300 }, + }, + ["lvl"] = "33-34", + }, + [698] = { + ["coords"] = { + [1] = { 27.5, 11.2, 33, 300 }, + [2] = { 22.6, 8.4, 33, 300 }, + }, + ["lvl"] = "34-35", + }, + [700] = "_", + [701] = { + ["coords"] = { + [1] = { 25.5, 13.4, 33, 300 }, + [2] = { 26.1, 13.4, 33, 300 }, + [3] = { 25.1, 13.4, 33, 300 }, + [4] = { 22.5, 13.4, 33, 300 }, + [5] = { 24.1, 13.3, 33, 300 }, + [6] = { 26.4, 13.2, 33, 300 }, + [7] = { 24.2, 13.2, 33, 300 }, + [8] = { 23.9, 13.2, 33, 300 }, + [9] = { 25.6, 13.2, 33, 300 }, + [10] = { 23.8, 13.2, 33, 300 }, + [11] = { 23.1, 13.1, 33, 300 }, + [12] = { 24.1, 13.1, 33, 300 }, + [13] = { 22.3, 13.1, 33, 300 }, + [14] = { 25.3, 12.9, 33, 300 }, + [15] = { 25.3, 12.8, 33, 300 }, + [16] = { 22.4, 12.8, 33, 300 }, + [17] = { 26.1, 12.7, 33, 300 }, + [18] = { 24.7, 12.7, 33, 300 }, + [19] = { 25.9, 12.7, 33, 300 }, + [20] = { 23.4, 12.6, 33, 300 }, + [21] = { 24.5, 12.6, 33, 300 }, + [22] = { 23, 12.6, 33, 300 }, + [23] = { 24.8, 12.6, 33, 300 }, + [24] = { 26.3, 12.4, 33, 300 }, + [25] = { 26.1, 12.4, 33, 300 }, + [26] = { 24.5, 12.3, 33, 300 }, + [27] = { 24.8, 12.3, 33, 300 }, + [28] = { 24.7, 12.3, 33, 300 }, + [29] = { 23.1, 12.3, 33, 300 }, + [30] = { 25.3, 12.2, 33, 300 }, + [31] = { 22.9, 12.2, 33, 300 }, + [32] = { 25.9, 12.2, 33, 300 }, + [33] = { 23.9, 12.2, 33, 300 }, + [34] = { 24.8, 12.2, 33, 300 }, + [35] = { 26.1, 12.2, 33, 300 }, + [36] = { 26.3, 12.2, 33, 300 }, + [37] = { 25.7, 12.1, 33, 300 }, + [38] = { 23, 12.1, 33, 300 }, + [39] = { 22.7, 12.1, 33, 300 }, + [40] = { 23.3, 12, 33, 300 }, + [41] = { 23.1, 12, 33, 300 }, + [42] = { 22.7, 12, 33, 300 }, + [43] = { 27.6, 11.7, 33, 300 }, + [44] = { 26, 11.5, 33, 300 }, + [45] = { 24.7, 11.5, 33, 300 }, + [46] = { 26.5, 11.4, 33, 300 }, + [47] = { 26.3, 11.3, 33, 300 }, + [48] = { 25.2, 11.3, 33, 300 }, + [49] = { 27.2, 11.3, 33, 300 }, + [50] = { 24.4, 11.2, 33, 300 }, + [51] = { 25.9, 11, 33, 300 }, + [52] = { 22.9, 11, 33, 300 }, + [53] = { 27.6, 11, 33, 300 }, + [54] = { 25.6, 10.6, 33, 300 }, + [55] = { 26.1, 10.1, 33, 300 }, + [56] = { 25.7, 10, 33, 300 }, + [57] = { 25.4, 10, 33, 300 }, + [58] = { 25.1, 9.9, 33, 300 }, + [59] = { 26, 9.8, 33, 300 }, + [60] = { 25.1, 9.7, 33, 300 }, + [61] = { 25.5, 9.6, 33, 300 }, + [62] = { 25, 9.4, 33, 300 }, + [63] = { 26, 9.4, 33, 300 }, + [64] = { 25.6, 9.3, 33, 300 }, + [65] = { 25.7, 9.3, 33, 300 }, + [66] = { 26.1, 9.3, 33, 300 }, + [67] = { 25.1, 9.3, 33, 300 }, + [68] = { 25.4, 9.2, 33, 300 }, + [69] = { 25.7, 9.1, 33, 300 }, + [70] = { 25.9, 9, 33, 300 }, + [71] = { 25.5, 9, 33, 300 }, + [72] = { 26.1, 8.9, 33, 300 }, + [73] = { 26, 8.7, 33, 300 }, + [74] = { 26.1, 8.6, 33, 300 }, + [75] = { 25.9, 8.4, 33, 300 }, + }, + ["lvl"] = "34-35", + }, + [704] = { + ["coords"] = { + [1] = { 24, 79.7, 1, 270 }, + [2] = { 25.5, 79.5, 1, 270 }, + [3] = { 23.3, 78.7, 1, 270 }, + [4] = { 24.8, 78.2, 1, 270 }, + [5] = { 28.1, 78.1, 1, 270 }, + [6] = { 26.9, 78, 1, 270 }, + [7] = { 23.2, 77.7, 1, 270 }, + [8] = { 27.7, 77, 1, 270 }, + [9] = { 28.8, 76.9, 1, 270 }, + [10] = { 26.9, 76.2, 1, 270 }, + [11] = { 28, 76.1, 1, 270 }, + [12] = { 27.4, 75.4, 1, 270 }, + [13] = { 26, 75.3, 1, 270 }, + [14] = { 26.8, 75.1, 1, 270 }, + [15] = { 29.7, 74.8, 1, 270 }, + [16] = { 29.8, 74.7, 1, 270 }, + [17] = { 50.6, 7.8, 5581, 270 }, + [18] = { 52.8, 7.5, 5581, 270 }, + [19] = { 49.4, 6.3, 5581, 270 }, + [20] = { 51.8, 5.5, 5581, 270 }, + [21] = { 56.8, 5.3, 5581, 270 }, + [22] = { 54.9, 5.2, 5581, 270 }, + [23] = { 49.4, 4.7, 5581, 270 }, + [24] = { 56.1, 3.7, 5581, 270 }, + [25] = { 57.8, 3.5, 5581, 270 }, + [26] = { 54.9, 2.4, 5581, 270 }, + [27] = { 56.6, 2.2, 5581, 270 }, + [28] = { 55.7, 1.2, 5581, 270 }, + [29] = { 53.5, 1, 5581, 270 }, + [30] = { 54.8, 0.7, 5581, 270 }, + [31] = { 59.1, 0.3, 5581, 270 }, + [32] = { 59.4, 0.2, 5581, 270 }, + }, + ["lvl"] = "2", + }, + [705] = { + ["coords"] = { + [1] = { 22.6, 78.2, 1, 555 }, + [2] = { 25.6, 78.1, 1, 555 }, + [3] = { 29.2, 78, 1, 555 }, + [4] = { 23.9, 77.9, 1, 555 }, + [5] = { 29.5, 77.1, 1, 555 }, + [6] = { 29.8, 75.9, 1, 555 }, + [7] = { 29.2, 75.9, 1, 555 }, + [8] = { 28.5, 75.8, 1, 555 }, + [9] = { 30.9, 75.8, 1, 555 }, + [10] = { 28.2, 75.5, 1, 555 }, + [11] = { 28.5, 75.1, 1, 555 }, + [12] = { 30.3, 75, 1, 555 }, + [13] = { 28.1, 75, 1, 555 }, + [14] = { 26.4, 74.7, 1, 555 }, + [15] = { 29.3, 74.7, 1, 555 }, + [16] = { 29, 74.7, 1, 555 }, + [17] = { 30.8, 74.6, 1, 555 }, + [18] = { 29, 74.5, 1, 555 }, + [19] = { 29.9, 74.5, 1, 555 }, + [20] = { 28.4, 74.4, 1, 555 }, + [21] = { 29.7, 74.3, 1, 555 }, + [22] = { 27.6, 74.2, 1, 555 }, + [23] = { 30.3, 74.2, 1, 555 }, + [24] = { 28.8, 74.2, 1, 555 }, + [25] = { 31.3, 74, 1, 555 }, + [26] = { 29.2, 73.9, 1, 555 }, + [27] = { 28.4, 73.9, 1, 555 }, + [28] = { 31.4, 73.9, 1, 555 }, + [29] = { 28.8, 73.8, 1, 555 }, + [30] = { 30.5, 73.7, 1, 555 }, + [31] = { 30, 73.7, 1, 555 }, + [32] = { 28.8, 73.6, 1, 555 }, + [33] = { 29.3, 73.4, 1, 555 }, + [34] = { 29.9, 73.4, 1, 555 }, + [35] = { 28, 73.2, 1, 555 }, + [36] = { 27.8, 73.2, 1, 555 }, + [37] = { 30.9, 73.2, 1, 555 }, + [38] = { 30.8, 72.9, 1, 555 }, + [39] = { 28.7, 72.7, 1, 555 }, + [40] = { 27.6, 72.4, 1, 555 }, + [41] = { 28.7, 72.4, 1, 555 }, + [42] = { 28.6, 72.1, 1, 555 }, + [43] = { 28.3, 71.8, 1, 555 }, + [44] = { 27.4, 71.1, 1, 555 }, + [45] = { 26, 70.9, 1, 555 }, + [46] = { 26.5, 70.8, 1, 555 }, + [47] = { 32.3, 70.8, 1, 555 }, + [48] = { 31.4, 70, 1, 555 }, + [49] = { 26.7, 69.9, 1, 555 }, + [50] = { 26.1, 69.2, 1, 555 }, + [51] = { 31.1, 69, 1, 555 }, + [52] = { 48.4, 5.5, 5581, 555 }, + [53] = { 52.9, 5.3, 5581, 555 }, + [54] = { 58.5, 5.1, 5581, 555 }, + [55] = { 50.3, 4.9, 5581, 555 }, + [56] = { 58.9, 3.8, 5581, 555 }, + [57] = { 59.3, 2, 5581, 555 }, + [58] = { 58.5, 1.9, 5581, 555 }, + [59] = { 57.4, 1.9, 5581, 555 }, + [60] = { 61, 1.8, 5581, 555 }, + [61] = { 56.9, 1.3, 5581, 555 }, + [62] = { 57.3, 0.7, 5581, 555 }, + [63] = { 60.1, 0.6, 5581, 555 }, + [64] = { 56.7, 0.5, 5581, 555 }, + [65] = { 54.2, 0.2, 5581, 555 }, + [66] = { 58.6, 0.1, 5581, 555 }, + [67] = { 58.2, 0.1, 5581, 555 }, + }, + ["lvl"] = "1", + }, + [706] = { + ["coords"] = { + [1] = { 28.7, 83, 1, 270 }, + [2] = { 28.3, 82.1, 1, 270 }, + [3] = { 29.2, 82, 1, 270 }, + [4] = { 30.6, 81.9, 1, 270 }, + [5] = { 30.5, 81.3, 1, 270 }, + [6] = { 27, 81.1, 1, 270 }, + [7] = { 28, 81.1, 1, 270 }, + [8] = { 28.7, 81, 1, 270 }, + [9] = { 29, 80.9, 1, 270 }, + [10] = { 27.6, 80.9, 1, 270 }, + [11] = { 22.8, 80.8, 1, 270 }, + [12] = { 28.5, 80.8, 1, 270 }, + [13] = { 30.5, 80.7, 1, 270 }, + [14] = { 29.3, 80.7, 1, 270 }, + [15] = { 28.8, 80.6, 1, 270 }, + [16] = { 28, 80.6, 1, 270 }, + [17] = { 27.1, 80.5, 1, 270 }, + [18] = { 29.8, 80.4, 1, 270 }, + [19] = { 29.6, 80.4, 1, 270 }, + [20] = { 23.8, 80.3, 1, 270 }, + [21] = { 28.1, 80.2, 1, 270 }, + [22] = { 22.7, 80.2, 1, 270 }, + [23] = { 22.8, 80.1, 1, 270 }, + [24] = { 28.8, 80.1, 1, 270 }, + [25] = { 30.6, 80, 1, 270 }, + [26] = { 29.5, 80, 1, 270 }, + [27] = { 26.1, 80, 1, 270 }, + [28] = { 22.7, 80, 1, 270 }, + [29] = { 23.3, 80, 1, 270 }, + [30] = { 22.9, 80, 1, 270 }, + [31] = { 29.8, 79.9, 1, 270 }, + [32] = { 30.1, 79.8, 1, 270 }, + [33] = { 28.5, 79.8, 1, 270 }, + [34] = { 26.8, 79.7, 1, 270 }, + [35] = { 26.4, 79.4, 1, 270 }, + [36] = { 23, 79.3, 1, 270 }, + [37] = { 22.3, 79.3, 1, 270 }, + [38] = { 30.1, 79.3, 1, 270 }, + [39] = { 25.8, 79.3, 1, 270 }, + [40] = { 28.7, 79.2, 1, 270 }, + [41] = { 29.6, 79.1, 1, 270 }, + [42] = { 29.3, 79.1, 1, 270 }, + [43] = { 26.8, 79, 1, 270 }, + [44] = { 22.6, 78.9, 1, 270 }, + [45] = { 22.1, 78.8, 1, 270 }, + [46] = { 27.7, 78.8, 1, 270 }, + [47] = { 27.2, 78.4, 1, 270 }, + [48] = { 26.4, 78.3, 1, 270 }, + [49] = { 25.9, 78.3, 1, 270 }, + [50] = { 22.3, 78.1, 1, 270 }, + [51] = { 21.4, 78, 1, 270 }, + [52] = { 20.4, 77.2, 1, 270 }, + [53] = { 21.4, 77, 1, 270 }, + [54] = { 20.8, 76.6, 1, 270 }, + [55] = { 21, 76.4, 1, 270 }, + [56] = { 20.8, 76.3, 1, 270 }, + [57] = { 21.3, 76, 1, 270 }, + [58] = { 20.8, 75.9, 1, 270 }, + [59] = { 20.2, 75.9, 1, 270 }, + [60] = { 21, 75.3, 1, 270 }, + [61] = { 57.7, 12.8, 5581, 270 }, + [62] = { 57.7, 12.7, 5581, 270 }, + [63] = { 57, 11.5, 5581, 270 }, + [64] = { 58.4, 11.2, 5581, 270 }, + [65] = { 60.6, 11.1, 5581, 270 }, + [66] = { 60.5, 10.2, 5581, 270 }, + [67] = { 55.1, 9.8, 5581, 270 }, + [68] = { 56.6, 9.8, 5581, 270 }, + [69] = { 57.7, 9.8, 5581, 270 }, + [70] = { 58.1, 9.6, 5581, 270 }, + [71] = { 56, 9.5, 5581, 270 }, + [72] = { 48.6, 9.4, 5581, 270 }, + [73] = { 57.3, 9.3, 5581, 270 }, + [74] = { 60.3, 9.3, 5581, 270 }, + [75] = { 58.5, 9.3, 5581, 270 }, + [76] = { 57.8, 9.1, 5581, 270 }, + [77] = { 56.6, 9, 5581, 270 }, + [78] = { 55.3, 8.9, 5581, 270 }, + [79] = { 59.4, 8.9, 5581, 270 }, + [80] = { 59, 8.8, 5581, 270 }, + [81] = { 50.2, 8.7, 5581, 270 }, + [82] = { 56.7, 8.6, 5581, 270 }, + [83] = { 48.5, 8.5, 5581, 270 }, + [84] = { 48.8, 8.4, 5581, 270 }, + [85] = { 57.8, 8.3, 5581, 270 }, + [86] = { 60.6, 8.2, 5581, 270 }, + [87] = { 58.9, 8.2, 5581, 270 }, + [88] = { 53.8, 8.1, 5581, 270 }, + [89] = { 48.5, 8.1, 5581, 270 }, + [90] = { 49.5, 8.1, 5581, 270 }, + [91] = { 48.8, 8.1, 5581, 270 }, + [92] = { 59.3, 8, 5581, 270 }, + [93] = { 59.8, 7.9, 5581, 270 }, + [94] = { 57.4, 7.8, 5581, 270 }, + [95] = { 54.8, 7.8, 5581, 270 }, + [96] = { 54.2, 7.2, 5581, 270 }, + [97] = { 49, 7.2, 5581, 270 }, + [98] = { 48, 7.2, 5581, 270 }, + [99] = { 59.8, 7.2, 5581, 270 }, + [100] = { 53.2, 7.1, 5581, 270 }, + [101] = { 57.6, 7, 5581, 270 }, + [102] = { 59, 6.9, 5581, 270 }, + [103] = { 58.6, 6.8, 5581, 270 }, + [104] = { 54.8, 6.6, 5581, 270 }, + [105] = { 48.4, 6.6, 5581, 270 }, + [106] = { 47.6, 6.4, 5581, 270 }, + [107] = { 56.2, 6.4, 5581, 270 }, + [108] = { 55.3, 5.8, 5581, 270 }, + [109] = { 54.2, 5.7, 5581, 270 }, + [110] = { 53.4, 5.5, 5581, 270 }, + [111] = { 48, 5.3, 5581, 270 }, + [112] = { 46.6, 5.1, 5581, 270 }, + [113] = { 45, 3.9, 5581, 270 }, + [114] = { 46.6, 3.6, 5581, 270 }, + [115] = { 45.7, 3.1, 5581, 270 }, + [116] = { 46, 2.8, 5581, 270 }, + [117] = { 45.7, 2.5, 5581, 270 }, + [118] = { 46.4, 2.2, 5581, 270 }, + [119] = { 45.6, 2, 5581, 270 }, + [120] = { 44.8, 1.9, 5581, 270 }, + [121] = { 46, 1.1, 5581, 270 }, + }, + ["lvl"] = "3-4", + }, + [707] = { + ["coords"] = { + [1] = { 23.2, 78.4, 1, 555 }, + [2] = { 29.9, 78, 1, 555 }, + [3] = { 29.8, 77.7, 1, 555 }, + [4] = { 28.9, 77.6, 1, 555 }, + [5] = { 31.7, 77.6, 1, 555 }, + [6] = { 30.3, 77.6, 1, 555 }, + [7] = { 24.1, 77.3, 1, 555 }, + [8] = { 29, 77.1, 1, 555 }, + [9] = { 30.7, 77, 1, 555 }, + [10] = { 30, 76.6, 1, 555 }, + [11] = { 31.3, 76.6, 1, 555 }, + [12] = { 28.8, 76.5, 1, 555 }, + [13] = { 32, 76.4, 1, 555 }, + [14] = { 22.7, 76.3, 1, 555 }, + [15] = { 29.6, 76.3, 1, 555 }, + [16] = { 31.6, 76.2, 1, 555 }, + [17] = { 31.3, 76, 1, 555 }, + [18] = { 32.3, 75.9, 1, 555 }, + [19] = { 31.8, 75.7, 1, 555 }, + [20] = { 30.7, 75.7, 1, 555 }, + [21] = { 29.3, 75.5, 1, 555 }, + [22] = { 33.3, 75.4, 1, 555 }, + [23] = { 32.8, 75.2, 1, 555 }, + [24] = { 32.1, 75.1, 1, 555 }, + [25] = { 29.9, 75, 1, 555 }, + [26] = { 30.5, 74.9, 1, 555 }, + [27] = { 31.1, 74.8, 1, 555 }, + [28] = { 31.1, 74.7, 1, 555 }, + [29] = { 31.8, 74.6, 1, 555 }, + [30] = { 30.6, 74.6, 1, 555 }, + [31] = { 30.1, 74.5, 1, 555 }, + [32] = { 32.3, 74.5, 1, 555 }, + [33] = { 30.7, 74.5, 1, 555 }, + [34] = { 19.4, 74.4, 1, 555 }, + [35] = { 31.1, 74, 1, 555 }, + [36] = { 23, 73.7, 1, 555 }, + [37] = { 23.8, 73.5, 1, 555 }, + [38] = { 21.8, 73.4, 1, 555 }, + [39] = { 20.1, 73.2, 1, 555 }, + [40] = { 21.8, 72.4, 1, 555 }, + [41] = { 24.3, 71, 1, 555 }, + [42] = { 49.3, 5.7, 5581, 555 }, + [43] = { 59.5, 5.1, 5581, 555 }, + [44] = { 59.3, 4.6, 5581, 555 }, + [45] = { 57.9, 4.6, 5581, 555 }, + [46] = { 62.2, 4.5, 5581, 555 }, + [47] = { 60.2, 4.5, 5581, 555 }, + [48] = { 50.7, 4.1, 5581, 555 }, + [49] = { 58.1, 3.8, 5581, 555 }, + [50] = { 60.7, 3.7, 5581, 555 }, + [51] = { 59.7, 3.1, 5581, 555 }, + [52] = { 61.7, 3, 5581, 555 }, + [53] = { 57.9, 2.8, 5581, 555 }, + [54] = { 62.7, 2.7, 5581, 555 }, + [55] = { 48.6, 2.5, 5581, 555 }, + [56] = { 59.1, 2.5, 5581, 555 }, + [57] = { 62, 2.4, 5581, 555 }, + [58] = { 61.6, 2.1, 5581, 555 }, + [59] = { 63.1, 1.9, 5581, 555 }, + [60] = { 62.4, 1.7, 5581, 555 }, + [61] = { 60.7, 1.7, 5581, 555 }, + [62] = { 58.5, 1.3, 5581, 555 }, + [63] = { 64.7, 1.2, 5581, 555 }, + [64] = { 64, 0.9, 5581, 555 }, + [65] = { 62.9, 0.8, 5581, 555 }, + [66] = { 59.5, 0.6, 5581, 555 }, + [67] = { 60.4, 0.5, 5581, 555 }, + [68] = { 61.3, 0.2, 5581, 555 }, + [69] = { 61.4, 0.2, 5581, 555 }, + [70] = { 62.4, 0, 5581, 555 }, + }, + ["lvl"] = "1-2", + }, + [708] = { + ["coords"] = { + [1] = { 24.7, 79.3, 1, 270 }, + [2] = { 24, 78.8, 1, 270 }, + [3] = { 23.5, 78.8, 1, 270 }, + [4] = { 21.5, 78, 1, 270 }, + [5] = { 24, 76.5, 1, 270 }, + [6] = { 19.7, 76.4, 1, 270 }, + [7] = { 20.7, 75.3, 1, 270 }, + [8] = { 19.5, 75.2, 1, 270 }, + [9] = { 20.2, 74.5, 1, 270 }, + [10] = { 20.4, 74.2, 1, 270 }, + [11] = { 20.7, 74.1, 1, 270 }, + [12] = { 19.9, 73.4, 1, 270 }, + [13] = { 20.8, 73.4, 1, 270 }, + [14] = { 20.1, 73.3, 1, 270 }, + [15] = { 20.7, 73.3, 1, 270 }, + [16] = { 28, 73.1, 1, 270 }, + [17] = { 28.2, 73, 1, 270 }, + [18] = { 24, 72.5, 1, 270 }, + [19] = { 22.8, 72.5, 1, 270 }, + [20] = { 22.7, 72.4, 1, 270 }, + [21] = { 22, 72.3, 1, 270 }, + [22] = { 19.9, 72.3, 1, 270 }, + [23] = { 21.3, 72.2, 1, 270 }, + [24] = { 22.1, 72.2, 1, 270 }, + [25] = { 32.3, 71.7, 1, 270 }, + [26] = { 27.4, 71.6, 1, 270 }, + [27] = { 22.4, 71.6, 1, 270 }, + [28] = { 21.8, 71.4, 1, 270 }, + [29] = { 20.1, 71.4, 1, 270 }, + [30] = { 21.4, 71.3, 1, 270 }, + [31] = { 21.9, 71.3, 1, 270 }, + [32] = { 26.2, 71.2, 1, 270 }, + [33] = { 20.1, 71.1, 1, 270 }, + [34] = { 24.7, 70.9, 1, 270 }, + [35] = { 20.7, 70.3, 1, 270 }, + [36] = { 25.4, 70.2, 1, 270 }, + [37] = { 21.4, 70.2, 1, 270 }, + [38] = { 22.7, 70.2, 1, 270 }, + [39] = { 22.6, 70.1, 1, 270 }, + [40] = { 21.9, 70.1, 1, 270 }, + [41] = { 26.6, 69.7, 1, 270 }, + [42] = { 22.7, 69.6, 1, 270 }, + [43] = { 22.2, 69.5, 1, 270 }, + [44] = { 22.6, 69.3, 1, 270 }, + [45] = { 22, 69.3, 1, 270 }, + [46] = { 31.2, 69.2, 1, 270 }, + [47] = { 20.7, 69.2, 1, 270 }, + [48] = { 26, 69.2, 1, 270 }, + [49] = { 24.6, 69.2, 1, 270 }, + [50] = { 23.4, 69.1, 1, 270 }, + [51] = { 21.3, 69.1, 1, 270 }, + [52] = { 20.7, 69.1, 1, 270 }, + [53] = { 26.6, 68.6, 1, 270 }, + [54] = { 23.6, 68.6, 1, 270 }, + [55] = { 25.5, 68.4, 1, 270 }, + [56] = { 24.4, 68.1, 1, 270 }, + [57] = { 51.6, 7.1, 5581, 270 }, + [58] = { 50.6, 6.4, 5581, 270 }, + [59] = { 49.7, 6.3, 5581, 270 }, + [60] = { 46.7, 5.2, 5581, 270 }, + [61] = { 50.5, 2.8, 5581, 270 }, + [62] = { 44.1, 2.7, 5581, 270 }, + [63] = { 45.6, 1, 5581, 270 }, + [64] = { 43.7, 0.8, 5581, 270 }, + }, + ["lvl"] = "3", + }, + [709] = { + ["coords"] = { + [1] = { 48.8, 31.5, 33, 1800 }, + [2] = { 50.2, 31, 33, 1800 }, + [3] = { 48.1, 30.9, 33, 1800 }, + [4] = { 49.2, 30.8, 33, 1800 }, + [5] = { 48.8, 30.1, 33, 1800 }, + [6] = { 49.7, 29.9, 33, 1800 }, + [7] = { 47.9, 29.7, 33, 1800 }, + [8] = { 48, 29.6, 33, 1800 }, + [9] = { 48.8, 28.6, 33, 1800 }, + [10] = { 49.9, 28.2, 33, 1800 }, + [11] = { 50, 27.8, 33, 1800 }, + [12] = { 50.1, 27.6, 33, 1800 }, + [13] = { 49.2, 27, 33, 1800 }, + [14] = { 46.4, 25.3, 33, 1800 }, + [15] = { 47.1, 24.8, 33, 1800 }, + }, + ["lvl"] = "41-42", + ["rnk"] = "1", + }, + [712] = { + ["coords"] = { + [1] = { 28.9, 81.2, 44, 300 }, + [2] = { 27.3, 80.6, 44, 300 }, + [3] = { 13.6, 67.8, 44, 300 }, + [4] = { 15.9, 67.4, 44, 300 }, + [5] = { 15.1, 67.2, 44, 300 }, + [6] = { 15.5, 66.3, 44, 300 }, + [7] = { 16.9, 65.7, 44, 300 }, + [8] = { 16.5, 63.5, 44, 300 }, + [9] = { 16.7, 63.5, 44, 300 }, + [10] = { 15, 61.8, 44, 300 }, + [11] = { 15, 61.7, 44, 300 }, + [12] = { 15.1, 61.3, 44, 300 }, + }, + ["lvl"] = "14-15", + }, + [713] = { + ["coords"] = { + [1] = { 29.7, 71.3, 1, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [714] = { + ["coords"] = { + [1] = { 22.6, 71.4, 1, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [721] = { + ["coords"] = { + [1] = { 20.9, 93, 1, 120 }, + [2] = { 25, 76.5, 1, 270 }, + [3] = { 24.6, 76.5, 1, 270 }, + [4] = { 28.3, 75.8, 1, 270 }, + [5] = { 30.3, 75.5, 1, 270 }, + [6] = { 27.7, 75.3, 1, 270 }, + [7] = { 31.1, 74.4, 1, 270 }, + [8] = { 29.4, 74.2, 1, 270 }, + [9] = { 26.2, 74, 1, 270 }, + [10] = { 25.2, 73.6, 1, 270 }, + [11] = { 30.1, 73.6, 1, 270 }, + [12] = { 29.2, 72.9, 1, 270 }, + [13] = { 27.8, 72.9, 1, 270 }, + [14] = { 23.6, 72.6, 1, 270 }, + [15] = { 30.4, 72.2, 1, 270 }, + [16] = { 22.5, 72.2, 1, 270 }, + [17] = { 30.7, 72, 1, 270 }, + [18] = { 30.4, 71.8, 1, 270 }, + [19] = { 29.2, 71.6, 1, 270 }, + [20] = { 21.5, 71.5, 1, 270 }, + [21] = { 29.1, 71.1, 1, 270 }, + [22] = { 25.6, 70.9, 1, 270 }, + [23] = { 28.3, 70.7, 1, 270 }, + [24] = { 28.6, 70.1, 1, 270 }, + [25] = { 27.9, 70.1, 1, 270 }, + [26] = { 43.4, 66.8, 1, 270 }, + [27] = { 40.9, 65.6, 1, 270 }, + [28] = { 40.7, 65.3, 1, 270 }, + [29] = { 48.2, 63.2, 1, 270 }, + [30] = { 38.8, 62, 1, 270 }, + [31] = { 38.7, 61.6, 1, 270 }, + [32] = { 38.9, 61, 1, 270 }, + [33] = { 36.9, 60.9, 1, 270 }, + [34] = { 56.8, 60.7, 1, 270 }, + [35] = { 45.2, 60.3, 1, 270 }, + [36] = { 34.8, 60, 1, 270 }, + [37] = { 47.9, 59.9, 1, 270 }, + [38] = { 48.1, 59.4, 1, 270 }, + [39] = { 50.6, 59.1, 1, 270 }, + [40] = { 40.3, 58.9, 1, 270 }, + [41] = { 60.7, 58.5, 1, 270 }, + [42] = { 31.5, 58.5, 1, 270 }, + [43] = { 48, 57.9, 1, 270 }, + [44] = { 48.2, 57.7, 1, 270 }, + [45] = { 44.5, 57, 1, 270 }, + [46] = { 56.3, 56.6, 1, 270 }, + [47] = { 32.1, 56.2, 1, 270 }, + [48] = { 41.2, 56.2, 1, 270 }, + [49] = { 67.1, 56, 1, 270 }, + [50] = { 80.4, 55.6, 1, 270 }, + [51] = { 34.3, 55.6, 1, 270 }, + [52] = { 47.5, 55.4, 1, 270 }, + [53] = { 81.6, 55, 1, 270 }, + [54] = { 31.1, 54.7, 1, 270 }, + [55] = { 28.4, 54.4, 1, 270 }, + [56] = { 49.4, 54.2, 1, 270 }, + [57] = { 65.8, 53.7, 1, 270 }, + [58] = { 61.7, 53.6, 1, 270 }, + [59] = { 81.5, 52.9, 1, 270 }, + [60] = { 32.2, 52.8, 1, 270 }, + [61] = { 71, 52.8, 1, 270 }, + [62] = { 30.3, 52.7, 1, 270 }, + [63] = { 27.9, 52.6, 1, 270 }, + [64] = { 43.9, 52.5, 1, 270 }, + [65] = { 69.8, 52.4, 1, 270 }, + [66] = { 37.5, 52.1, 1, 270 }, + [67] = { 13.5, 52.1, 1, 300 }, + [68] = { 80.1, 51.7, 1, 270 }, + [69] = { 27.1, 51.7, 1, 270 }, + [70] = { 56.9, 51.6, 1, 270 }, + [71] = { 67.4, 51.3, 1, 270 }, + [72] = { 69.8, 50.7, 1, 270 }, + [73] = { 84.6, 50.4, 1, 270 }, + [74] = { 87, 50.3, 1, 270 }, + [75] = { 75.5, 49.8, 1, 270 }, + [76] = { 78.9, 49.7, 1, 270 }, + [77] = { 73.7, 49.7, 1, 270 }, + [78] = { 50.9, 49.2, 1, 270 }, + [79] = { 32.3, 49.1, 1, 270 }, + [80] = { 29.8, 49, 1, 270 }, + [81] = { 26.6, 48.1, 1, 270 }, + [82] = { 50.3, 47.6, 1, 270 }, + [83] = { 47, 47.6, 1, 270 }, + [84] = { 46.6, 47.4, 1, 270 }, + [85] = { 85.1, 47.3, 1, 270 }, + [86] = { 40.9, 47.2, 1, 270 }, + [87] = { 80.2, 47.1, 1, 270 }, + [88] = { 42, 46.9, 1, 270 }, + [89] = { 38.7, 46.9, 1, 270 }, + [90] = { 34.4, 46.7, 1, 270 }, + [91] = { 58, 46.1, 1, 270 }, + [92] = { 49, 46, 1, 270 }, + [93] = { 48.9, 45.7, 1, 270 }, + [94] = { 37.1, 45.3, 1, 270 }, + [95] = { 30.2, 45.2, 1, 270 }, + [96] = { 27.6, 45.1, 1, 270 }, + [97] = { 47.2, 44.6, 1, 270 }, + [98] = { 47.3, 44.3, 1, 270 }, + [99] = { 37.5, 43.9, 1, 270 }, + [100] = { 81.2, 43.7, 1, 270 }, + [101] = { 72.3, 43, 1, 120 }, + [102] = { 80, 43, 1, 270 }, + [103] = { 73.9, 42.8, 1, 120 }, + [104] = { 40.2, 42.4, 1, 270 }, + [105] = { 52.1, 42, 1, 270 }, + [106] = { 27.9, 41.1, 1, 270 }, + [107] = { 33, 41, 1, 300 }, + [108] = { 70.3, 40.9, 1, 120 }, + [109] = { 40.4, 40.9, 1, 270 }, + [110] = { 47.5, 39.8, 1, 270 }, + [111] = { 75.5, 39.7, 1, 120 }, + [112] = { 47.6, 39.4, 1, 270 }, + [113] = { 69.2, 39.4, 1, 120 }, + [114] = { 50.2, 39.1, 1, 270 }, + [115] = { 50.1, 38.8, 1, 270 }, + [116] = { 38.6, 38.1, 1, 270 }, + [117] = { 43.8, 37.9, 1, 270 }, + [118] = { 73.5, 37.4, 1, 120 }, + [119] = { 35.7, 36.5, 1, 270 }, + [120] = { 28.2, 36.3, 1, 270 }, + [121] = { 30.6, 35.5, 1, 270 }, + [122] = { 69.5, 35.2, 1, 120 }, + [123] = { 44.1, 33.8, 1, 270 }, + [124] = { 72, 33.7, 1, 120 }, + [125] = { 70.8, 33.3, 1, 120 }, + [126] = { 39.4, 32.8, 1, 270 }, + [127] = { 12.9, 32.6, 1, 300 }, + [128] = { 36.9, 32.4, 1, 270 }, + [129] = { 70, 31.8, 1, 120 }, + [130] = { 33, 31.8, 1, 270 }, + [131] = { 44.4, 31.5, 1, 270 }, + [132] = { 41.3, 30.7, 1, 270 }, + [133] = { 34.5, 30.6, 1, 270 }, + [134] = { 71.6, 29.8, 1, 120 }, + [135] = { 71.2, 29.4, 1, 300 }, + [136] = { 70.2, 28.7, 1, 120 }, + [137] = { 72.9, 25.7, 1, 120 }, + [138] = { 71.7, 25.6, 1, 120 }, + [139] = { 70.3, 25.1, 1, 300 }, + [140] = { 69.3, 25, 1, 120 }, + [141] = { 72.1, 24.5, 1, 120 }, + [142] = { 69.2, 20.6, 1, 120 }, + [143] = { 72.7, 20.4, 1, 120 }, + [144] = { 70, 19.3, 1, 300 }, + [145] = { 72, 18.6, 1, 120 }, + [146] = { 14.7, 73.2, 11, 60 }, + [147] = { 16.9, 70.7, 11, 60 }, + [148] = { 37.7, 70.6, 11, 120 }, + [149] = { 36.7, 69.6, 11, 120 }, + [150] = { 37.9, 69.4, 11, 120 }, + [151] = { 35.9, 69.1, 11, 120 }, + [152] = { 21.3, 68.1, 11, 60 }, + [153] = { 28, 67.9, 11, 120 }, + [154] = { 34.4, 67.9, 11, 120 }, + [155] = { 32, 67.5, 11, 120 }, + [156] = { 33.5, 67.4, 11, 120 }, + [157] = { 38.1, 67.2, 11, 120 }, + [158] = { 23.9, 67, 11, 60 }, + [159] = { 32.8, 66.9, 11, 120 }, + [160] = { 36.8, 66.9, 11, 120 }, + [161] = { 22.9, 66.5, 11, 120 }, + [162] = { 35.3, 66.4, 11, 120 }, + [163] = { 39, 66.4, 11, 120 }, + [164] = { 26.7, 66.2, 11, 60 }, + [165] = { 25.8, 65.8, 11, 120 }, + [166] = { 38.2, 65.2, 11, 120 }, + [167] = { 36, 65.1, 11, 120 }, + [168] = { 34.4, 65, 11, 120 }, + [169] = { 32.6, 65, 11, 120 }, + [170] = { 30.2, 64.7, 11, 120 }, + [171] = { 31.2, 64.6, 11, 120 }, + [172] = { 26.1, 63.5, 11, 120 }, + [173] = { 37.2, 63.3, 11, 120 }, + [174] = { 30.5, 63.1, 11, 120 }, + [175] = { 39.7, 63.1, 11, 120 }, + [176] = { 28.4, 62.1, 11, 120 }, + [177] = { 38.1, 61.9, 11, 120 }, + [178] = { 33.8, 61.3, 11, 120 }, + [179] = { 29.9, 61, 11, 120 }, + [180] = { 26.8, 93.1, 12, 270 }, + [181] = { 26.5, 91.2, 12, 270 }, + [182] = { 39.9, 90.3, 12, 270 }, + [183] = { 41.4, 87.7, 12, 270 }, + [184] = { 32.5, 87.2, 12, 270 }, + [185] = { 26.8, 86.2, 12, 270 }, + [186] = { 36, 86, 12, 270 }, + [187] = { 42.3, 86, 12, 270 }, + [188] = { 48, 84.4, 12, 270 }, + [189] = { 32.1, 84.3, 12, 270 }, + [190] = { 26.4, 82.6, 12, 270 }, + [191] = { 68.5, 81.9, 12, 270 }, + [192] = { 31.7, 81.4, 12, 270 }, + [193] = { 72.5, 80.2, 12, 270 }, + [194] = { 87.9, 79.8, 12, 270 }, + [195] = { 54.5, 79.5, 12, 270 }, + [196] = { 59.9, 79.3, 12, 270 }, + [197] = { 22, 79.1, 12, 270 }, + [198] = { 60.1, 79, 12, 270 }, + [199] = { 69.7, 78.5, 12, 270 }, + [200] = { 63, 78.4, 12, 270 }, + [201] = { 53.9, 78.3, 12, 270 }, + [202] = { 96.3, 77.6, 12, 300 }, + [203] = { 26.8, 77.4, 12, 270 }, + [204] = { 67.7, 77.2, 12, 270 }, + [205] = { 24.1, 75.6, 12, 270 }, + [206] = { 56.8, 75.2, 12, 270 }, + [207] = { 55.6, 75.1, 12, 270 }, + [208] = { 26.7, 74.7, 12, 270 }, + [209] = { 54.2, 73.2, 12, 270 }, + [210] = { 51.4, 71.9, 12, 270 }, + [211] = { 85.1, 71.5, 12, 270 }, + [212] = { 51.7, 71.3, 12, 270 }, + [213] = { 43.7, 70.9, 12, 270 }, + [214] = { 42.4, 70.2, 12, 270 }, + [215] = { 82.8, 69.6, 12, 270 }, + [216] = { 39, 69, 12, 270 }, + [217] = { 41.7, 68.8, 12, 270 }, + [218] = { 84.2, 67.8, 12, 270 }, + [219] = { 45.1, 65.5, 12, 270 }, + [220] = { 42.4, 65, 12, 120 }, + [221] = { 45, 64.8, 12, 270 }, + [222] = { 40.7, 60.9, 12, 270 }, + [223] = { 40.6, 60.8, 12, 270 }, + [224] = { 36.5, 59.6, 12, 270 }, + [225] = { 34.9, 59.1, 12, 270 }, + [226] = { 37.7, 58.7, 12, 270 }, + [227] = { 41.2, 55.4, 12, 270 }, + [228] = { 38.7, 55.1, 12, 270 }, + [229] = { 34.3, 55.1, 12, 270 }, + [230] = { 36.4, 55.1, 12, 270 }, + [231] = { 30.7, 53.3, 12, 270 }, + [232] = { 54.9, 52.4, 12, 270 }, + [233] = { 32.2, 52.1, 12, 270 }, + [234] = { 34, 51.8, 12, 270 }, + [235] = { 53, 51.6, 12, 270 }, + [236] = { 52.8, 50.9, 12, 270 }, + [237] = { 52.5, 50.4, 12, 270 }, + [238] = { 50.6, 50.3, 12, 270 }, + [239] = { 51.6, 49.5, 12, 270 }, + [240] = { 56.3, 49.1, 12, 270 }, + [241] = { 33.3, 49.1, 12, 270 }, + [242] = { 54.2, 49, 12, 270 }, + [243] = { 57.4, 48.6, 12, 270 }, + [244] = { 57.1, 48.5, 12, 270 }, + [245] = { 51.3, 48.3, 12, 270 }, + [246] = { 53.8, 47.5, 12, 270 }, + [247] = { 55.4, 47.1, 12, 270 }, + [248] = { 46.7, 47, 12, 270 }, + [249] = { 54, 46.4, 12, 270 }, + [250] = { 44.2, 46.2, 12, 270 }, + [251] = { 55.3, 46.1, 12, 270 }, + [252] = { 48.9, 43.8, 12, 270 }, + [253] = { 55.5, 43.1, 12, 270 }, + [254] = { 56.3, 43.1, 12, 270 }, + [255] = { 48.2, 42.9, 12, 270 }, + [256] = { 56.3, 42, 12, 270 }, + [257] = { 55.4, 41.2, 12, 270 }, + [258] = { 50.4, 41.1, 12, 270 }, + [259] = { 57.2, 40.9, 12, 270 }, + [260] = { 55.5, 40.4, 12, 270 }, + [261] = { 43.9, 39.9, 12, 270 }, + [262] = { 51.5, 38.9, 12, 270 }, + [263] = { 51.4, 38.7, 12, 270 }, + [264] = { 44.5, 38.7, 12, 270 }, + [265] = { 50.4, 38.5, 12, 270 }, + [266] = { 44.1, 37.7, 12, 270 }, + [267] = { 52.8, 37, 12, 270 }, + [268] = { 44.2, 35.2, 12, 270 }, + [269] = { 50.4, 35.2, 12, 270 }, + [270] = { 49.9, 35.1, 12, 270 }, + [271] = { 47.5, 33.6, 12, 270 }, + [272] = { 50.1, 33.2, 12, 270 }, + [273] = { 52.7, 32.6, 12, 270 }, + [274] = { 46.6, 32, 12, 270 }, + [275] = { 49.7, 31.7, 12, 270 }, + [276] = { 57.5, 77.1, 36, 300 }, + [277] = { 49.9, 73.6, 36, 300 }, + [278] = { 42.8, 73.1, 36, 300 }, + [279] = { 56.9, 71.7, 36, 300 }, + [280] = { 56.9, 71.3, 36, 300 }, + [281] = { 22.1, 70.4, 36, 300 }, + [282] = { 46, 18.3, 36, 300 }, + [283] = { 81.3, 65.3, 38, 100 }, + [284] = { 79.7, 61.7, 38, 100 }, + [285] = { 83.7, 57.3, 38, 100 }, + [286] = { 17.7, 56.6, 38, 270 }, + [287] = { 12.8, 83.1, 44, 300 }, + [288] = { 76.7, 82.1, 44, 300 }, + [289] = { 10.8, 80.2, 44, 300 }, + [290] = { 33, 80.1, 44, 300 }, + [291] = { 76.8, 79.8, 44, 300 }, + [292] = { 26.8, 79.5, 44, 300 }, + [293] = { 42.8, 78.8, 44, 300 }, + [294] = { 46.2, 78.8, 44, 300 }, + [295] = { 48.1, 78.3, 44, 300 }, + [296] = { 55.6, 78.1, 44, 300 }, + [297] = { 43.5, 77.4, 44, 300 }, + [298] = { 65.2, 76.4, 44, 300 }, + [299] = { 48.3, 75.5, 44, 300 }, + [300] = { 38.6, 75.2, 44, 300 }, + [301] = { 23.8, 75.2, 44, 300 }, + [302] = { 36.9, 75, 44, 300 }, + [303] = { 50.8, 74.9, 44, 300 }, + [304] = { 11.5, 74, 44, 300 }, + [305] = { 62.4, 73.7, 44, 300 }, + [306] = { 73.4, 73.4, 44, 300 }, + [307] = { 76.8, 73.3, 44, 300 }, + [308] = { 62, 73.2, 44, 300 }, + [309] = { 62, 72.5, 44, 300 }, + [310] = { 26.3, 71.7, 44, 300 }, + [311] = { 31.4, 71.7, 44, 300 }, + [312] = { 14.9, 67.7, 44, 300 }, + [313] = { 24.8, 67.5, 44, 300 }, + [314] = { 59.4, 67.1, 44, 300 }, + [315] = { 27.4, 65.8, 44, 300 }, + [316] = { 78.6, 65.4, 44, 300 }, + [317] = { 25.6, 63.8, 44, 300 }, + [318] = { 34.1, 62.4, 44, 300 }, + [319] = { 19.5, 61.4, 44, 300 }, + [320] = { 30.5, 60.4, 44, 300 }, + [321] = { 34.3, 60.1, 44, 300 }, + [322] = { 19.2, 56.9, 44, 300 }, + [323] = { 86, 55.4, 44, 300 }, + [324] = { 81.5, 52.8, 44, 300 }, + [325] = { 14.9, 50.2, 44, 300 }, + [326] = { 73.5, 48.2, 44, 300 }, + [327] = { 18.4, 47.4, 44, 300 }, + [328] = { 72.5, 47, 44, 300 }, + [329] = { 31.7, 46.1, 44, 300 }, + [330] = { 84.2, 46.1, 44, 300 }, + [331] = { 25.5, 46, 44, 300 }, + [332] = { 72.6, 45.6, 44, 300 }, + [333] = { 70.3, 45.6, 44, 300 }, + [334] = { 22.4, 45.4, 44, 300 }, + [335] = { 82.7, 45.3, 44, 300 }, + [336] = { 68.1, 45.2, 44, 300 }, + [337] = { 32.7, 43.3, 44, 300 }, + [338] = { 33.7, 42.4, 44, 300 }, + [339] = { 24.3, 42, 44, 300 }, + [340] = { 66.1, 41.4, 44, 300 }, + [341] = { 71.9, 40.7, 44, 300 }, + [342] = { 53.6, 36.9, 44, 300 }, + [343] = { 81.2, 36.1, 44, 300 }, + [344] = { 40.7, 36, 44, 300 }, + [345] = { 48.5, 33.1, 44, 300 }, + [346] = { 75.4, 79.1, 85, 300 }, + [347] = { 45.9, 77.4, 85, 300 }, + [348] = { 68.2, 71.1, 85, 300 }, + [349] = { 47.5, 69.5, 85, 300 }, + [350] = { 30.8, 64.3, 85, 180 }, + [351] = { 36.9, 63.8, 85, 180 }, + [352] = { 56.7, 58.3, 85, 180 }, + [353] = { 62.1, 58.2, 85, 180 }, + [354] = { 46, 58.1, 85, 180 }, + [355] = { 46.2, 58, 85, 180 }, + [356] = { 69.9, 54.8, 85, 180 }, + [357] = { 51.3, 53.9, 85, 180 }, + [358] = { 30.8, 49.8, 85, 180 }, + [359] = { 61.6, 38.7, 85, 180 }, + [360] = { 56.9, 36.7, 85, 180 }, + [361] = { 59, 36.2, 85, 180 }, + [362] = { 68.9, 34.5, 85, 180 }, + [363] = { 64.5, 33.9, 85, 180 }, + [364] = { 61, 32.5, 85, 180 }, + [365] = { 51.6, 76.8, 130, 300 }, + [366] = { 54.6, 55, 130, 300 }, + [367] = { 71.8, 32.7, 130, 300 }, + [368] = { 47.4, 32, 130, 300 }, + [369] = { 48.4, 27, 130, 300 }, + [370] = { 49.3, 26.8, 130, 300 }, + [371] = { 78.3, 24.5, 130, 300 }, + [372] = { 48.1, 22.6, 130, 300 }, + [373] = { 49.5, 22.5, 130, 300 }, + [374] = { 65.7, 17, 130, 300 }, + [375] = { 75.1, 12, 130, 300 }, + [376] = { 62.5, 9.1, 130, 300 }, + [377] = { 59.3, 5.7, 130, 300 }, + [378] = { 42, 63.4, 267, 300 }, + [379] = { 52.5, 60.3, 267, 300 }, + [380] = { 42.1, 59.5, 267, 300 }, + [381] = { 36.2, 57.7, 267, 300 }, + [382] = { 53.9, 56.8, 267, 300 }, + [383] = { 52.9, 54.5, 267, 300 }, + [384] = { 47.3, 54.2, 267, 300 }, + [385] = { 44.6, 48.3, 267, 300 }, + [386] = { 37.3, 45.5, 267, 300 }, + [387] = { 59.1, 15.9, 267, 300 }, + [388] = { 52.6, 12.8, 267, 300 }, + [389] = { 46.3, 12.4, 267, 300 }, + [390] = { 58.6, 11.2, 267, 300 }, + [391] = { 58.7, 10.8, 267, 300 }, + [392] = { 22.1, 55, 331, 300 }, + [393] = { 22, 54.9, 331, 300 }, + [394] = { 20.6, 53.6, 331, 300 }, + [395] = { 22, 53.5, 331, 300 }, + [396] = { 23.5, 52.3, 331, 300 }, + [397] = { 22.2, 51.5, 331, 300 }, + [398] = { 51.1, 51.1, 361, 300 }, + [399] = { 50.6, 50.2, 361, 300 }, + [400] = { 58.5, 22, 406, 300 }, + [401] = { 58.4, 21.9, 406, 300 }, + [402] = { 57.2, 20.7, 406, 300 }, + [403] = { 58.5, 20.6, 406, 300 }, + [404] = { 59.9, 19.4, 406, 300 }, + [405] = { 58.6, 18.6, 406, 300 }, + [406] = { 50.4, 86.8, 616, 300 }, + [407] = { 40.8, 85.3, 616, 300 }, + [408] = { 55.1, 85.1, 616, 300 }, + [409] = { 57.3, 84.6, 616, 300 }, + [410] = { 49.4, 83.9, 616, 300 }, + [411] = { 31.9, 80.8, 616, 300 }, + [412] = { 65, 80, 616, 300 }, + [413] = { 69.4, 78.1, 616, 300 }, + [414] = { 64.3, 77.2, 616, 300 }, + [415] = { 65, 77.1, 616, 300 }, + [416] = { 64.6, 76.5, 616, 300 }, + [417] = { 76.5, 76.4, 616, 300 }, + [418] = { 61.1, 76.1, 616, 300 }, + [419] = { 33.7, 76.1, 616, 300 }, + [420] = { 58.7, 74.6, 616, 300 }, + [421] = { 22.9, 71.9, 616, 300 }, + [422] = { 86.6, 71.6, 616, 300 }, + [423] = { 79.7, 71, 616, 300 }, + [424] = { 29, 70.9, 616, 300 }, + [425] = { 22.1, 70.5, 616, 300 }, + [426] = { 86.7, 70.4, 616, 300 }, + [427] = { 58.5, 69.1, 616, 300 }, + [428] = { 62.6, 66.7, 616, 300 }, + [429] = { 69, 66.4, 616, 300 }, + [430] = { 16.9, 58, 616, 300 }, + [431] = { 54.1, 57.1, 616, 300 }, + [432] = { 13.5, 56, 616, 300 }, + [433] = { 54.7, 54.3, 616, 300 }, + [434] = { 50.8, 54.2, 616, 300 }, + [435] = { 52.1, 54, 616, 300 }, + [436] = { 11.7, 53.1, 616, 300 }, + [437] = { 11.6, 50.3, 616, 300 }, + [438] = { 10.3, 47.4, 616, 300 }, + [439] = { 12.9, 47.2, 616, 300 }, + [440] = { 72.5, 46.5, 616, 300 }, + [441] = { 69.8, 45.8, 616, 300 }, + [442] = { 11.1, 45.4, 616, 300 }, + [443] = { 6.7, 44.3, 616, 300 }, + [444] = { 75.1, 42.8, 616, 300 }, + [445] = { 5.9, 42.8, 616, 300 }, + [446] = { 12.1, 41.1, 616, 300 }, + [447] = { 30.4, 40.3, 616, 300 }, + [448] = { 14.2, 40.2, 616, 300 }, + [449] = { 72.5, 40.1, 616, 300 }, + [450] = { 27.2, 38, 616, 300 }, + [451] = { 73.3, 37.7, 616, 300 }, + [452] = { 83.5, 37, 616, 300 }, + [453] = { 71.4, 36.6, 616, 300 }, + [454] = { 72.6, 31.6, 616, 300 }, + [455] = { 85.3, 30.8, 616, 300 }, + [456] = { 81.5, 30.2, 616, 300 }, + [457] = { 82.7, 29.8, 616, 300 }, + [458] = { 41.8, 29.7, 616, 300 }, + [459] = { 81.4, 28.4, 616, 300 }, + [460] = { 85.6, 27.3, 616, 300 }, + [461] = { 70.3, 26, 616, 300 }, + [462] = { 44.1, 25.2, 616, 300 }, + [463] = { 77.6, 24.6, 616, 300 }, + [464] = { 73.2, 21.7, 616, 300 }, + [465] = { 49.9, 83.3, 618, 300 }, + [466] = { 46.7, 83, 618, 300 }, + [467] = { 49.9, 82.8, 618, 300 }, + [468] = { 53.2, 49.9, 876, 120 }, + [469] = { 60.2, 85.7, 1497, 300 }, + [470] = { 51.9, 12.6, 1519, 120 }, + [471] = { 64.3, 11.2, 1519, 120 }, + [472] = { 70.1, 10.8, 1519, 120 }, + [473] = { 63.6, 5, 1519, 120 }, + [474] = { 68.5, 4.7, 1519, 120 }, + [475] = { 52.6, 4.5, 1519, 120 }, + [476] = { 58.8, 68.7, 5130, 280 }, + [477] = { 65.7, 63.2, 5130, 280 }, + [478] = { 52.5, 61, 5130, 120 }, + [479] = { 57.4, 57.2, 5130, 280 }, + [480] = { 48.8, 54, 5130, 280 }, + [481] = { 60.4, 51.8, 5130, 280 }, + [482] = { 41.4, 41.3, 5130, 280 }, + [483] = { 47.2, 41, 5130, 280 }, + [484] = { 68.7, 40, 5130, 280 }, + [485] = { 96.3, 24.3, 5179, 300 }, + [486] = { 96.4, 20.9, 5179, 300 }, + [487] = { 91.2, 19.3, 5179, 300 }, + [488] = { 98.6, 11.1, 5179, 300 }, + [489] = { 92.2, 8.7, 5179, 300 }, + [490] = { 53.8, 5.1, 5179, 300 }, + [491] = { 75.4, 88.4, 5581, 120 }, + [492] = { 38.2, 87.1, 5581, 120 }, + [493] = { 76.4, 85.9, 5581, 120 }, + [494] = { 44.3, 84.1, 5581, 120 }, + [495] = { 74.5, 84.1, 5581, 120 }, + [496] = { 72.6, 83.9, 5581, 120 }, + [497] = { 51, 83.4, 5581, 120 }, + [498] = { 54.1, 83.2, 5581, 120 }, + [499] = { 37.6, 83, 5581, 120 }, + [500] = { 75.9, 81.4, 5581, 120 }, + [501] = { 50.6, 80.1, 5581, 120 }, + [502] = { 53.2, 79.9, 5581, 120 }, + [503] = { 44.7, 79.8, 5581, 120 }, + [504] = { 41.7, 78.2, 5581, 120 }, + [505] = { 44.4, 76.4, 5581, 120 }, + [506] = { 63.8, 74.4, 5581, 120 }, + [507] = { 65, 73, 5581, 120 }, + [508] = { 52.5, 72.8, 5581, 120 }, + [509] = { 51.2, 72, 5581, 120 }, + [510] = { 40.8, 71.7, 5581, 120 }, + [511] = { 54.6, 71.5, 5581, 120 }, + [512] = { 37.6, 71.2, 5581, 120 }, + [513] = { 44, 71.1, 5581, 120 }, + [514] = { 56.8, 70.5, 5581, 120 }, + [515] = { 52.6, 70.4, 5581, 120 }, + [516] = { 48, 70.1, 5581, 120 }, + [517] = { 72.8, 70.1, 5581, 120 }, + [518] = { 33.5, 69.1, 5581, 120 }, + [519] = { 35.8, 69, 5581, 120 }, + [520] = { 64.4, 69, 5581, 120 }, + [521] = { 70.6, 68.5, 5581, 120 }, + [522] = { 31.4, 68, 5581, 120 }, + [523] = { 58.5, 67.9, 5581, 120 }, + [524] = { 56.5, 67.9, 5581, 120 }, + [525] = { 29.9, 67.8, 5581, 120 }, + [526] = { 44, 67.6, 5581, 120 }, + [527] = { 62.1, 67, 5581, 120 }, + [528] = { 46.3, 65.9, 5581, 120 }, + [529] = { 72.5, 65.6, 5581, 120 }, + [530] = { 59.5, 65, 5581, 120 }, + [531] = { 61.7, 64.4, 5581, 120 }, + [532] = { 36.5, 64.2, 5581, 120 }, + [533] = { 34.8, 63.3, 5581, 120 }, + [534] = { 39.6, 61.7, 5581, 120 }, + [535] = { 75.8, 61.2, 5581, 120 }, + [536] = { 62.7, 60.7, 5581, 120 }, + [537] = { 47.4, 60.7, 5581, 120 }, + [538] = { 69.4, 60, 5581, 120 }, + [539] = { 66.6, 58.7, 5581, 120 }, + [540] = { 60.4, 58.7, 5581, 120 }, + [541] = { 73.4, 58, 5581, 120 }, + [542] = { 31, 58, 5581, 120 }, + [543] = { 51.9, 58, 5581, 120 }, + [544] = { 40.9, 57.9, 5581, 120 }, + [545] = { 32.7, 56.8, 5581, 120 }, + [546] = { 71.4, 56.4, 5581, 120 }, + [547] = { 45.1, 55.9, 5581, 120 }, + [548] = { 54.3, 55.4, 5581, 120 }, + [549] = { 64.8, 54.4, 5581, 120 }, + [550] = { 58.6, 54.4, 5581, 120 }, + [551] = { 47.2, 54.3, 5581, 120 }, + [552] = { 42.1, 54.1, 5581, 120 }, + [553] = { 62.7, 53.6, 5581, 120 }, + [554] = { 37.3, 53.6, 5581, 120 }, + [555] = { 56, 53.4, 5581, 120 }, + [556] = { 50.7, 53, 5581, 120 }, + [557] = { 43.7, 51.6, 5581, 120 }, + [558] = { 62.9, 51.1, 5581, 120 }, + [559] = { 56.9, 49.8, 5581, 120 }, + [560] = { 31.6, 48.8, 5581, 120 }, + [561] = { 37.7, 48.4, 5581, 120 }, + [562] = { 67.3, 48.4, 5581, 120 }, + [563] = { 29.4, 48.1, 5581, 120 }, + [564] = { 60.5, 48.1, 5581, 120 }, + [565] = { 71.4, 46.2, 5581, 120 }, + [566] = { 47, 45.8, 5581, 120 }, + [567] = { 39.4, 45.6, 5581, 120 }, + [568] = { 44.9, 45, 5581, 120 }, + [569] = { 41.1, 44.8, 5581, 120 }, + [570] = { 58.6, 44.6, 5581, 120 }, + [571] = { 78.1, 44.3, 5581, 120 }, + [572] = { 41.7, 43.3, 5581, 120 }, + [573] = { 62.6, 43.1, 5581, 120 }, + [574] = { 64.4, 43.1, 5581, 120 }, + [575] = { 28.7, 43, 5581, 120 }, + [576] = { 61.1, 42.7, 5581, 120 }, + [577] = { 43.3, 42.1, 5581, 120 }, + [578] = { 51.8, 42, 5581, 120 }, + [579] = { 56.3, 41.9, 5581, 120 }, + [580] = { 49.2, 41.6, 5581, 120 }, + [581] = { 67.2, 40.4, 5581, 120 }, + [582] = { 30.5, 39.6, 5581, 120 }, + [583] = { 59.2, 39, 5581, 120 }, + [584] = { 52.1, 38.7, 5581, 120 }, + [585] = { 37.1, 38.6, 5581, 120 }, + [586] = { 40.2, 38.1, 5581, 120 }, + [587] = { 65.5, 38, 5581, 120 }, + [588] = { 34, 37.9, 5581, 120 }, + [589] = { 77.3, 37.1, 5581, 120 }, + [590] = { 60.2, 35.2, 5581, 120 }, + [591] = { 51.8, 35, 5581, 120 }, + [592] = { 37.3, 34.4, 5581, 120 }, + [593] = { 31.1, 34.1, 5581, 120 }, + [594] = { 48.5, 33.5, 5581, 120 }, + [595] = { 65.5, 32.9, 5581, 120 }, + [596] = { 58.7, 31.6, 5581, 120 }, + [597] = { 44.4, 30.2, 5581, 120 }, + [598] = { 47.4, 30, 5581, 120 }, + [599] = { 68, 29.9, 5581, 120 }, + [600] = { 45.9, 28, 5581, 120 }, + [601] = { 34.4, 26.9, 5581, 120 }, + [602] = { 33.4, 26.8, 5581, 120 }, + [603] = { 31.4, 26.6, 5581, 120 }, + [604] = { 32.8, 25.8, 5581, 120 }, + [605] = { 34.1, 25.3, 5581, 120 }, + [606] = { 69.4, 24.1, 5581, 120 }, + [607] = { 70.4, 19.4, 5581, 120 }, + [608] = { 52.1, 2.9, 5581, 270 }, + [609] = { 51.5, 2.8, 5581, 270 }, + [610] = { 57.1, 1.8, 5581, 270 }, + [611] = { 60.2, 1.3, 5581, 270 }, + [612] = { 56.2, 1, 5581, 270 }, + [613] = { 1.5, 78.1, 5602, 270 }, + [614] = { 40.2, 77.7, 5602, 100 }, + [615] = { 2.6, 77.5, 5602, 270 }, + [616] = { 39.4, 75.9, 5602, 100 }, + [617] = { 2.6, 75.6, 5602, 270 }, + [618] = { 1.3, 74.6, 5602, 270 }, + [619] = { 41.4, 73.6, 5602, 100 }, + [620] = { 5.4, 73.3, 5602, 270 }, + [621] = { 7.6, 73.2, 5602, 270 }, + [622] = { 0.2, 72.7, 5602, 270 }, + [623] = { 5.9, 70.5, 5602, 270 }, + [624] = { 1.4, 70.3, 5602, 270 }, + [625] = { 2.3, 67.1, 5602, 270 }, + [626] = { 1.2, 66.5, 5602, 270 }, + }, + ["lvl"] = "1", + }, + [724] = { + ["coords"] = { + [1] = { 24, 79.6, 1, 555 }, + [2] = { 22, 78.2, 1, 555 }, + [3] = { 28.6, 78, 1, 555 }, + [4] = { 29.2, 77.7, 1, 555 }, + [5] = { 22.9, 77.6, 1, 555 }, + [6] = { 20, 77.5, 1, 555 }, + [7] = { 30, 77.4, 1, 555 }, + [8] = { 21.3, 77.3, 1, 555 }, + [9] = { 31.7, 76.8, 1, 555 }, + [10] = { 23.3, 76.7, 1, 555 }, + [11] = { 27.7, 76.5, 1, 555 }, + [12] = { 30.3, 76.3, 1, 555 }, + [13] = { 21.9, 76.2, 1, 555 }, + [14] = { 30.9, 76.2, 1, 555 }, + [15] = { 31.7, 76, 1, 555 }, + [16] = { 32.4, 75.9, 1, 555 }, + [17] = { 30.1, 75.6, 1, 555 }, + [18] = { 20, 75.4, 1, 555 }, + [19] = { 22.9, 75.4, 1, 555 }, + [20] = { 21.4, 75.4, 1, 555 }, + [21] = { 31.3, 75.4, 1, 555 }, + [22] = { 23.9, 75.2, 1, 555 }, + [23] = { 30.7, 75.1, 1, 555 }, + [24] = { 29.2, 75, 1, 555 }, + [25] = { 21.4, 74.7, 1, 555 }, + [26] = { 30.3, 74.5, 1, 555 }, + [27] = { 22.9, 74.5, 1, 555 }, + [28] = { 20.8, 74.3, 1, 555 }, + [29] = { 24.2, 74.2, 1, 555 }, + [30] = { 26, 74.2, 1, 555 }, + [31] = { 24.8, 74.2, 1, 555 }, + [32] = { 23.1, 74.2, 1, 555 }, + [33] = { 31.6, 73.7, 1, 555 }, + [34] = { 23, 73.6, 1, 555 }, + [35] = { 27.4, 73.4, 1, 555 }, + [36] = { 26.6, 73.4, 1, 555 }, + [37] = { 21.5, 73.3, 1, 555 }, + [38] = { 26.3, 73.2, 1, 555 }, + [39] = { 22.7, 73.2, 1, 555 }, + [40] = { 26.9, 73.1, 1, 555 }, + [41] = { 25.4, 73.1, 1, 555 }, + [42] = { 23.9, 73, 1, 555 }, + [43] = { 27.2, 73, 1, 555 }, + [44] = { 26.9, 73, 1, 555 }, + [45] = { 26.1, 72.7, 1, 555 }, + [46] = { 21.8, 72.7, 1, 555 }, + [47] = { 27, 72.6, 1, 555 }, + [48] = { 26.6, 72.6, 1, 555 }, + [49] = { 23.9, 72.6, 1, 555 }, + [50] = { 25.7, 72.5, 1, 555 }, + [51] = { 24.8, 72.4, 1, 555 }, + [52] = { 19.4, 72.2, 1, 555 }, + [53] = { 26.2, 72.2, 1, 555 }, + [54] = { 26.2, 72.1, 1, 555 }, + [55] = { 27.2, 72.1, 1, 555 }, + [56] = { 20.8, 72.1, 1, 555 }, + [57] = { 26.6, 71.9, 1, 555 }, + [58] = { 26.2, 71.9, 1, 555 }, + [59] = { 21.2, 71.8, 1, 555 }, + [60] = { 20.2, 71.5, 1, 555 }, + [61] = { 20.6, 70.5, 1, 555 }, + [62] = { 50.5, 7.6, 5581, 555 }, + [63] = { 47.4, 5.5, 5581, 555 }, + [64] = { 57.5, 5.2, 5581, 555 }, + [65] = { 58.5, 4.8, 5581, 555 }, + [66] = { 48.8, 4.5, 5581, 555 }, + [67] = { 44.5, 4.4, 5581, 555 }, + [68] = { 59.6, 4.3, 5581, 555 }, + [69] = { 46.5, 4.1, 5581, 555 }, + [70] = { 62.3, 3.3, 5581, 555 }, + [71] = { 49.5, 3.1, 5581, 555 }, + [72] = { 56.2, 2.9, 5581, 555 }, + [73] = { 60.1, 2.5, 5581, 555 }, + [74] = { 47.4, 2.5, 5581, 555 }, + [75] = { 61, 2.5, 5581, 555 }, + [76] = { 62.2, 2.1, 5581, 555 }, + [77] = { 63.3, 1.9, 5581, 555 }, + [78] = { 59.8, 1.5, 5581, 555 }, + [79] = { 44.4, 1.2, 5581, 555 }, + [80] = { 48.9, 1.2, 5581, 555 }, + [81] = { 46.5, 1.1, 5581, 555 }, + [82] = { 61.6, 1.1, 5581, 555 }, + [83] = { 50.4, 0.9, 5581, 555 }, + [84] = { 60.7, 0.8, 5581, 555 }, + [85] = { 58.5, 0.6, 5581, 555 }, + [86] = { 46.6, 0.1, 5581, 555 }, + }, + ["lvl"] = "2", + }, + [725] = "_", + [727] = { + ["coords"] = { + [1] = { 43.4, 65.2, 1, 250 }, + [2] = { 38, 61.9, 1, 250 }, + [3] = { 36, 61.9, 1, 250 }, + [4] = { 47.5, 57.5, 1, 250 }, + [5] = { 48.1, 55.3, 1, 250 }, + [6] = { 46.4, 55, 1, 250 }, + [7] = { 46.5, 52.8, 1, 250 }, + [8] = { 57.9, 52.6, 1, 250 }, + [9] = { 68, 52.6, 1, 250 }, + [10] = { 67.9, 52.6, 1, 250 }, + [11] = { 67.9, 52.5, 1, 250 }, + [12] = { 46.5, 52.2, 1, 250 }, + [13] = { 46, 52.1, 1, 250 }, + [14] = { 46.2, 51.4, 1, 250 }, + [15] = { 46, 51, 1, 250 }, + [16] = { 50.1, 49.2, 1, 250 }, + [17] = { 46.9, 47.9, 1, 250 }, + [18] = { 49.6, 46.6, 1, 250 }, + [19] = { 47.7, 45.6, 1, 250 }, + [20] = { 47, 42.4, 1, 250 }, + [21] = { 47, 42.3, 1, 250 }, + [22] = { 46.9, 41.9, 1, 250 }, + [23] = { 69.9, 40.9, 1, 300 }, + [24] = { 69.7, 40.7, 1, 300 }, + [25] = { 35.1, 32.9, 1, 250 }, + [26] = { 71.7, 31.3, 1, 300 }, + [27] = { 70.9, 30.5, 1, 300 }, + [28] = { 69.7, 30.1, 1, 300 }, + [29] = { 70.1, 25.8, 1, 300 }, + [30] = { 71.7, 24.4, 1, 300 }, + [31] = { 71.5, 24.1, 1, 300 }, + [32] = { 71.4, 24, 1, 300 }, + [33] = { 71.6, 23.3, 1, 300 }, + [34] = { 71, 22.2, 1, 300 }, + [35] = { 70.1, 20.8, 1, 300 }, + [36] = { 68.8, 18.9, 1, 300 }, + [37] = { 27.1, 66.7, 11, 60 }, + [38] = { 27.2, 66.2, 11, 60 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [728] = { + ["coords"] = { + [1] = { 49.6, 24, 33, 600 }, + }, + ["lvl"] = "40", + ["rnk"] = "1", + }, + [730] = { + ["coords"] = { + [1] = { 28.7, 44.8, 33, 600 }, + }, + ["lvl"] = "43", + ["rnk"] = "1", + }, + [731] = { + ["coords"] = { + [1] = { 38.2, 35.6, 33, 600 }, + }, + ["lvl"] = "43", + ["rnk"] = "1", + }, + [732] = { + ["coords"] = { + [1] = { 87.8, 9.5, 10, 270 }, + [2] = { 82.9, 87.2, 12, 270 }, + [3] = { 81.1, 86.9, 12, 270 }, + [4] = { 84.8, 86.6, 12, 270 }, + [5] = { 76.9, 86.4, 12, 270 }, + [6] = { 76, 86, 12, 270 }, + [7] = { 77.7, 85.9, 12, 270 }, + [8] = { 77.1, 85.8, 12, 270 }, + [9] = { 80, 85.5, 12, 270 }, + [10] = { 79.5, 85.3, 12, 270 }, + [11] = { 77.2, 85, 12, 270 }, + [12] = { 76.3, 84.4, 12, 270 }, + [13] = { 77, 84.2, 12, 270 }, + [14] = { 88.5, 84.2, 12, 270 }, + [15] = { 78.5, 84, 12, 270 }, + [16] = { 75.9, 83.7, 12, 270 }, + [17] = { 76.9, 82.7, 12, 270 }, + [18] = { 89.9, 82.4, 12, 270 }, + [19] = { 91.6, 82.3, 12, 270 }, + [20] = { 78.6, 82.1, 12, 270 }, + [21] = { 76.5, 82, 12, 270 }, + [22] = { 77.5, 80.9, 12, 270 }, + [23] = { 76.5, 79.7, 12, 270 }, + [24] = { 78.5, 60.2, 12, 270 }, + [25] = { 76.6, 58.9, 12, 270 }, + [26] = { 77.8, 58, 12, 270 }, + [27] = { 78.2, 57.9, 12, 270 }, + [28] = { 78.3, 57.5, 12, 270 }, + [29] = { 77.7, 56.9, 12, 270 }, + [30] = { 79.8, 56.8, 12, 270 }, + [31] = { 79.2, 56.4, 12, 270 }, + [32] = { 77.7, 56.3, 12, 270 }, + [33] = { 78.5, 55.8, 12, 270 }, + [34] = { 79.4, 55.3, 12, 270 }, + [35] = { 79.7, 55, 12, 270 }, + [36] = { 80.4, 53.3, 12, 270 }, + [37] = { 79.4, 46.2, 12, 270 }, + [38] = { 78.7, 45.9, 12, 270 }, + [39] = { 78.1, 45.3, 12, 270 }, + [40] = { 78.7, 45.1, 12, 270 }, + [41] = { 78.7, 44.5, 12, 270 }, + [42] = { 77.6, 44.1, 12, 270 }, + }, + ["lvl"] = "9-10", + }, + [733] = { + ["coords"] = { + [1] = { 38, 3.3, 33, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [735] = { + ["coords"] = { + [1] = { 53.1, 70, 12, 270 }, + [2] = { 57.2, 69.5, 12, 270 }, + [3] = { 51.5, 69.5, 12, 270 }, + [4] = { 55.2, 69.4, 12, 270 }, + [5] = { 52, 68.7, 12, 270 }, + [6] = { 53, 67.9, 12, 270 }, + [7] = { 58.3, 67.9, 12, 270 }, + [8] = { 57.7, 67.4, 12, 270 }, + [9] = { 58.3, 65.2, 12, 270 }, + [10] = { 52.8, 65.2, 12, 270 }, + [11] = { 51.6, 65.1, 12, 270 }, + [12] = { 52.5, 65.1, 12, 270 }, + [13] = { 52, 64.5, 12, 270 }, + [14] = { 57.3, 63.7, 12, 270 }, + [15] = { 53.6, 63.6, 12, 270 }, + [16] = { 53.3, 63.5, 12, 270 }, + [17] = { 55.5, 63.2, 12, 270 }, + [18] = { 54.2, 62.9, 12, 270 }, + [19] = { 54.2, 62.7, 12, 270 }, + [20] = { 50.5, 62.3, 12, 270 }, + [21] = { 57.1, 62.3, 12, 270 }, + }, + ["lvl"] = "6-7", + }, + [736] = { + ["coords"] = { + [1] = { 28.2, 16.6, 33, 300 }, + [2] = { 29.8, 16.1, 33, 300 }, + [3] = { 28.9, 15.9, 33, 300 }, + [4] = { 28.8, 14.6, 33, 300 }, + [5] = { 31, 14.6, 33, 300 }, + [6] = { 29.5, 13.6, 33, 300 }, + [7] = { 28.4, 13.4, 33, 300 }, + [8] = { 28.4, 12.3, 33, 300 }, + [9] = { 30.9, 11.3, 33, 300 }, + [10] = { 30.5, 10.7, 33, 300 }, + [11] = { 28.4, 10.5, 33, 300 }, + [12] = { 45.7, 10.3, 33, 300 }, + [13] = { 45.8, 10.3, 33, 300 }, + [14] = { 30, 9.8, 33, 300 }, + [15] = { 29.4, 9.1, 33, 300 }, + }, + ["lvl"] = "32-33", + }, + [737] = { + ["coords"] = { + [1] = { 27, 77.1, 33, 30 }, + }, + ["lvl"] = "35", + }, + [739] = { + ["coords"] = { + [1] = { 37.8, 3.6, 33, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [740] = { + ["coords"] = { + [1] = { 12.9, 66.8, 8, 300 }, + [2] = { 15.3, 66.6, 8, 300 }, + [3] = { 16.2, 64.5, 8, 300 }, + [4] = { 11.1, 62.7, 8, 300 }, + [5] = { 14.3, 61.3, 8, 300 }, + [6] = { 17.3, 59.8, 8, 300 }, + [7] = { 13.9, 59.4, 8, 300 }, + }, + ["lvl"] = "34-35", + }, + [741] = { + ["coords"] = { + [1] = { 12.7, 64.7, 8, 300 }, + [2] = { 14.5, 64.2, 8, 300 }, + [3] = { 12.6, 59.3, 8, 300 }, + [4] = { 12.6, 59, 8, 300 }, + [5] = { 11.4, 57.3, 8, 300 }, + [6] = { 16.7, 56.2, 8, 300 }, + }, + ["lvl"] = "35-36", + }, + [742] = { + ["coords"] = { + [1] = { 72.4, 69.5, 8, 300 }, + [2] = { 89.1, 65.7, 8, 300 }, + [3] = { 66.3, 64.2, 8, 300 }, + [4] = { 60, 52.3, 8, 300 }, + }, + ["lvl"] = "41-42", + ["rnk"] = "1", + }, + [746] = { + ["coords"] = { + [1] = { 78.4, 55, 8, 300 }, + [2] = { 85.4, 49.8, 8, 300 }, + [3] = { 86.9, 47.8, 8, 300 }, + [4] = { 83, 46, 8, 300 }, + [5] = { 86.1, 45.8, 8, 300 }, + [6] = { 80.2, 45.5, 8, 300 }, + [7] = { 87, 44, 8, 300 }, + }, + ["lvl"] = "45", + ["rnk"] = "1", + }, + [747] = { + ["coords"] = { + [1] = { 82.6, 94.1, 8, 300 }, + [2] = { 83.6, 93.7, 8, 300 }, + [3] = { 83.7, 88.5, 8, 300 }, + [4] = { 86.5, 87.3, 8, 300 }, + [5] = { 84.3, 85.4, 8, 300 }, + [6] = { 86.9, 85, 8, 300 }, + [7] = { 85.9, 85, 8, 300 }, + [8] = { 86.5, 84.5, 8, 300 }, + [9] = { 87.1, 80.7, 8, 300 }, + }, + ["lvl"] = "41-42", + }, + [749] = "_", + [750] = { + ["coords"] = { + [1] = { 73.1, 18, 4, 300 }, + [2] = { 73.6, 17.3, 4, 300 }, + [3] = { 73.4, 13.5, 4, 300 }, + [4] = { 72, 13.1, 4, 300 }, + [5] = { 73.3, 12.9, 4, 300 }, + [6] = { 73.2, 12.6, 4, 300 }, + [7] = { 81.2, 94.1, 8, 300 }, + [8] = { 82.8, 93.8, 8, 300 }, + [9] = { 82.8, 93.5, 8, 300 }, + [10] = { 81.2, 91.2, 8, 300 }, + [11] = { 83.5, 90.9, 8, 300 }, + [12] = { 82.9, 90.5, 8, 300 }, + [13] = { 83.9, 90, 8, 300 }, + [14] = { 82.8, 89.6, 8, 300 }, + [15] = { 85.2, 88.7, 8, 300 }, + [16] = { 63.9, 88.2, 8, 300 }, + [17] = { 84.4, 87.2, 8, 300 }, + [18] = { 85.6, 87.2, 8, 300 }, + [19] = { 64.7, 87.1, 8, 300 }, + [20] = { 66.3, 86.2, 8, 300 }, + [21] = { 86.7, 83.4, 8, 300 }, + [22] = { 85.3, 82.9, 8, 300 }, + [23] = { 87.1, 82.7, 8, 300 }, + [24] = { 88.5, 82, 8, 300 }, + [25] = { 64.5, 81.6, 8, 300 }, + [26] = { 62.3, 81, 8, 300 }, + [27] = { 66, 81, 8, 300 }, + [28] = { 64.3, 80.6, 8, 300 }, + [29] = { 64.1, 80.3, 8, 300 }, + [30] = { 88.2, 80.2, 8, 300 }, + [31] = { 90.2, 80.1, 8, 300 }, + [32] = { 89.4, 77.7, 8, 300 }, + [33] = { 88.5, 76.4, 8, 300 }, + [34] = { 67.1, 75.8, 8, 300 }, + [35] = { 90.1, 75.5, 8, 300 }, + [36] = { 91, 71.2, 8, 300 }, + [37] = { 91.5, 69.7, 8, 300 }, + [38] = { 92.7, 69.3, 8, 300 }, + [39] = { 92.7, 68.7, 8, 300 }, + [40] = { 91.5, 67.4, 8, 300 }, + [41] = { 93.2, 66.8, 8, 300 }, + [42] = { 92.4, 65.7, 8, 300 }, + [43] = { 94.1, 63.3, 8, 300 }, + [44] = { 95.6, 63, 8, 300 }, + [45] = { 95.5, 61.1, 8, 300 }, + [46] = { 94.3, 60, 8, 300 }, + [47] = { 94.7, 58.5, 8, 300 }, + [48] = { 95.9, 58.2, 8, 300 }, + [49] = { 95.4, 54.7, 8, 300 }, + [50] = { 94.3, 54.1, 8, 300 }, + [51] = { 95.9, 52.6, 8, 300 }, + [52] = { 95.6, 50, 8, 300 }, + [53] = { 94.3, 49.9, 8, 300 }, + }, + ["lvl"] = "42-43", + }, + [751] = { + ["coords"] = { + [1] = { 72.5, 20.1, 4, 300 }, + [2] = { 72.3, 19.1, 4, 300 }, + [3] = { 73.6, 18.6, 4, 300 }, + [4] = { 72.6, 18.2, 4, 300 }, + [5] = { 72, 18, 4, 300 }, + [6] = { 71.7, 17.4, 4, 300 }, + [7] = { 72.3, 17.2, 4, 300 }, + [8] = { 72.8, 17.1, 4, 300 }, + [9] = { 70.7, 16.9, 4, 300 }, + [10] = { 72.6, 15.8, 4, 300 }, + [11] = { 70.8, 15.6, 4, 300 }, + [12] = { 71.3, 15.4, 4, 300 }, + [13] = { 71, 14.9, 4, 300 }, + [14] = { 71.7, 14.2, 4, 300 }, + [15] = { 71.8, 13.2, 4, 300 }, + [16] = { 72, 13.2, 4, 300 }, + [17] = { 72.5, 12.7, 4, 300 }, + [18] = { 64.7, 89, 8, 300 }, + [19] = { 63.6, 86.8, 8, 300 }, + [20] = { 63.2, 84.9, 8, 300 }, + [21] = { 61.4, 84.3, 8, 300 }, + [22] = { 60.9, 83.6, 8, 300 }, + [23] = { 66.4, 83.1, 8, 300 }, + [24] = { 62, 82.6, 8, 300 }, + [25] = { 62.1, 81.2, 8, 300 }, + [26] = { 62.3, 81.1, 8, 300 }, + [27] = { 63.1, 80.4, 8, 300 }, + [28] = { 89.1, 78.5, 8, 300 }, + [29] = { 88.1, 78.2, 8, 300 }, + [30] = { 66.1, 77.6, 8, 300 }, + [31] = { 94.9, 61, 8, 300 }, + [32] = { 94.9, 60.1, 8, 300 }, + [33] = { 94.4, 52.5, 8, 300 }, + [34] = { 95.1, 51.3, 8, 300 }, + [35] = { 95, 51.1, 8, 300 }, + [36] = { 94.3, 47.7, 8, 180 }, + [37] = { 97.6, 44.7, 8, 180 }, + [38] = { 94.5, 43.8, 8, 180 }, + [39] = { 96.2, 41.6, 8, 180 }, + [40] = { 93.7, 40.8, 8, 180 }, + [41] = { 94.2, 30.5, 8, 300 }, + }, + ["lvl"] = "43-44", + }, + [752] = { + ["coords"] = { + [1] = { 72.5, 20.1, 4, 300 }, + [2] = { 72.3, 19.1, 4, 300 }, + [3] = { 73.6, 18.6, 4, 300 }, + [4] = { 72.6, 18.2, 4, 300 }, + [5] = { 72, 18, 4, 300 }, + [6] = { 71.7, 17.4, 4, 300 }, + [7] = { 72.3, 17.2, 4, 300 }, + [8] = { 72.8, 17.1, 4, 300 }, + [9] = { 70.7, 16.9, 4, 300 }, + [10] = { 72.6, 15.8, 4, 300 }, + [11] = { 70.8, 15.6, 4, 300 }, + [12] = { 71.3, 15.4, 4, 300 }, + [13] = { 71, 14.9, 4, 300 }, + [14] = { 71.7, 14.2, 4, 300 }, + [15] = { 71.8, 13.2, 4, 300 }, + [16] = { 72, 13.2, 4, 300 }, + [17] = { 72.5, 12.7, 4, 300 }, + [18] = { 64.7, 89, 8, 300 }, + [19] = { 63.6, 86.8, 8, 300 }, + [20] = { 63.2, 84.9, 8, 300 }, + [21] = { 61.4, 84.3, 8, 300 }, + [22] = { 60.9, 83.6, 8, 300 }, + [23] = { 66.4, 83.1, 8, 300 }, + [24] = { 62, 82.6, 8, 300 }, + [25] = { 62.1, 81.2, 8, 300 }, + [26] = { 62.3, 81.1, 8, 300 }, + [27] = { 63.1, 80.4, 8, 300 }, + [28] = { 89.1, 78.5, 8, 300 }, + [29] = { 88.1, 78.2, 8, 300 }, + [30] = { 66.1, 77.6, 8, 300 }, + [31] = { 94.9, 61, 8, 300 }, + [32] = { 94.9, 60.1, 8, 300 }, + [33] = { 94.4, 52.5, 8, 300 }, + [34] = { 95.1, 51.3, 8, 300 }, + [35] = { 95, 51.1, 8, 300 }, + [36] = { 94.3, 47.7, 8, 180 }, + [37] = { 97.6, 44.7, 8, 180 }, + [38] = { 94.5, 43.8, 8, 180 }, + [39] = { 96.2, 41.6, 8, 180 }, + [40] = { 93.7, 40.8, 8, 180 }, + [41] = { 94.2, 30.5, 8, 300 }, + }, + ["lvl"] = "44-45", + }, + [753] = "_", + [756] = { + ["coords"] = { + [1] = { 45, 44.1, 33, 300 }, + [2] = { 45.7, 43.5, 33, 300 }, + [3] = { 45.2, 42.8, 33, 300 }, + [4] = { 45.9, 42.3, 33, 300 }, + [5] = { 45.1, 41.8, 33, 300 }, + [6] = { 44.9, 41.7, 33, 300 }, + [7] = { 44.5, 41.5, 33, 300 }, + [8] = { 44.5, 41, 33, 300 }, + }, + ["lvl"] = "41-42", + }, + [758] = "_", + [759] = { + ["coords"] = { + [1] = { 55.1, 30.3, 8, 300 }, + [2] = { 55.8, 29.1, 8, 300 }, + [3] = { 58.1, 26.8, 8, 300 }, + [4] = { 56.8, 25.2, 8, 300 }, + [5] = { 55.2, 25.1, 8, 300 }, + [6] = { 57.8, 24.7, 8, 300 }, + [7] = { 57.3, 24.7, 8, 300 }, + [8] = { 62.6, 24.1, 8, 300 }, + [9] = { 57.6, 24, 8, 300 }, + [10] = { 62, 23.5, 8, 300 }, + [11] = { 64.7, 23, 8, 300 }, + [12] = { 61.9, 22.7, 8, 300 }, + }, + ["lvl"] = "36-37", + }, + [760] = { + ["coords"] = { + [1] = { 29.3, 38.3, 8, 300 }, + [2] = { 52.6, 34.8, 8, 300 }, + [3] = { 55.9, 34.4, 8, 300 }, + [4] = { 55.8, 34.1, 8, 300 }, + [5] = { 54, 33.7, 8, 300 }, + [6] = { 39.6, 33.1, 8, 300 }, + [7] = { 56.1, 31.9, 8, 300 }, + [8] = { 51.8, 31.3, 8, 300 }, + [9] = { 57.7, 29.9, 8, 300 }, + [10] = { 58.4, 28.5, 8, 300 }, + [11] = { 60.9, 28.4, 8, 300 }, + [12] = { 47.9, 27.8, 8, 300 }, + [13] = { 53.8, 27.6, 8, 300 }, + [14] = { 62.3, 26.7, 8, 300 }, + [15] = { 51.6, 26.6, 8, 300 }, + [16] = { 64.7, 26.2, 8, 300 }, + [17] = { 61.2, 25.3, 8, 300 }, + [18] = { 59, 23.6, 8, 300 }, + [19] = { 63.5, 21.9, 8, 300 }, + [20] = { 62.2, 19.4, 8, 300 }, + [21] = { 63.5, 17.4, 8, 300 }, + }, + ["lvl"] = "36-37", + }, + [761] = { + ["coords"] = { + [1] = { 60.9, 23.9, 8, 300 }, + [2] = { 64.1, 23.2, 8, 300 }, + [3] = { 64.2, 22.6, 8, 300 }, + [4] = { 60.4, 22.4, 8, 300 }, + [5] = { 61.9, 20.9, 8, 300 }, + [6] = { 65.1, 20.4, 8, 300 }, + }, + ["lvl"] = "37-38", + }, + [762] = { + ["coords"] = { + [1] = { 60.9, 23.9, 8, 300 }, + [2] = { 64.1, 23.2, 8, 300 }, + [3] = { 64.2, 22.6, 8, 300 }, + [4] = { 60.4, 22.4, 8, 300 }, + [5] = { 61.9, 20.9, 8, 300 }, + [6] = { 65.1, 20.4, 8, 300 }, + }, + ["lvl"] = "37-38", + }, + [763] = { + ["coords"] = { + [1] = { 62, 21.2, 8, 54000 }, + }, + ["lvl"] = "39", + ["rnk"] = "4", + }, + [764] = { + ["coords"] = { + [1] = { 15.8, 40.8, 8, 300 }, + [2] = { 16.9, 38.8, 8, 300 }, + [3] = { 14.9, 38.7, 8, 300 }, + [4] = { 11.4, 38.7, 8, 300 }, + [5] = { 46.9, 37.1, 8, 300 }, + [6] = { 13, 37, 8, 300 }, + [7] = { 51.2, 36.8, 8, 300 }, + [8] = { 15.8, 36.6, 8, 300 }, + [9] = { 49.3, 35.3, 8, 300 }, + [10] = { 14.4, 34.7, 8, 300 }, + [11] = { 54.7, 32.1, 8, 300 }, + }, + ["lvl"] = "38-39", + }, + [765] = { + ["coords"] = { + [1] = { 10.1, 36.6, 8, 300 }, + [2] = { 11.5, 34.7, 8, 300 }, + [3] = { 8.4, 34.3, 8, 300 }, + [4] = { 12.9, 32.5, 8, 300 }, + [5] = { 10.1, 32.3, 8, 300 }, + [6] = { 11.2, 30.7, 8, 300 }, + [7] = { 8.6, 30.5, 8, 300 }, + }, + ["lvl"] = "39-40", + }, + [766] = { + ["coords"] = { + [1] = { 77.2, 81.1, 8, 300 }, + [2] = { 77.5, 77.6, 8, 300 }, + [3] = { 72.4, 73.6, 8, 300 }, + [4] = { 76.8, 73.1, 8, 300 }, + [5] = { 83.8, 72.9, 8, 300 }, + [6] = { 78.8, 71.9, 8, 300 }, + [7] = { 74.1, 71.5, 8, 300 }, + [8] = { 85.1, 67.3, 8, 300 }, + [9] = { 58.3, 55.5, 8, 300 }, + [10] = { 57.3, 50.3, 8, 300 }, + [11] = { 59, 45.4, 8, 300 }, + [12] = { 57.3, 41.5, 8, 300 }, + [13] = { 60.5, 36.2, 8, 300 }, + [14] = { 58, 35.9, 8, 300 }, + [15] = { 62.8, 33.7, 8, 300 }, + [16] = { 68.1, 32.1, 8, 300 }, + [17] = { 73.6, 31.6, 8, 300 }, + [18] = { 76.8, 30.9, 8, 300 }, + [19] = { 73.8, 27.1, 8, 300 }, + [20] = { 67.5, 24.5, 8, 300 }, + [21] = { 71.3, 23.5, 8, 300 }, + [22] = { 10.1, 36.6, 8, 300 }, + [23] = { 11.5, 34.7, 8, 300 }, + [24] = { 8.4, 34.3, 8, 300 }, + [25] = { 12.9, 32.5, 8, 300 }, + [26] = { 10.1, 32.3, 8, 300 }, + [27] = { 11.2, 30.7, 8, 300 }, + [28] = { 8.6, 30.5, 8, 300 }, + }, + ["lvl"] = "40-41", + }, + [767] = { + ["coords"] = { + [1] = { 27.2, 64, 8, 300 }, + [2] = { 26.3, 60.7, 8, 300 }, + [3] = { 16.7, 60.1, 8, 300 }, + [4] = { 23.5, 60.1, 8, 300 }, + [5] = { 12, 59.4, 8, 300 }, + [6] = { 22.4, 57.9, 8, 300 }, + [7] = { 33.6, 54.4, 8, 300 }, + [8] = { 35.9, 53.9, 8, 300 }, + [9] = { 30, 52.5, 8, 300 }, + [10] = { 32, 50, 8, 300 }, + [11] = { 36.5, 48.4, 8, 300 }, + [12] = { 26.4, 47.4, 8, 300 }, + [13] = { 39.1, 47.3, 8, 300 }, + [14] = { 14.6, 46.1, 8, 300 }, + [15] = { 40.4, 45.3, 8, 300 }, + [16] = { 55.5, 45.2, 8, 300 }, + [17] = { 37.2, 45.2, 8, 300 }, + [18] = { 43.3, 45.1, 8, 300 }, + [19] = { 56.9, 43.8, 8, 300 }, + [20] = { 28.7, 43.6, 8, 300 }, + [21] = { 44.7, 43.4, 8, 300 }, + [22] = { 41.9, 43.4, 8, 300 }, + [23] = { 33.2, 43.2, 8, 300 }, + [24] = { 20.2, 42.8, 8, 300 }, + [25] = { 23.1, 42.4, 8, 300 }, + [26] = { 53.8, 41.6, 8, 300 }, + [27] = { 25.3, 41.3, 8, 300 }, + [28] = { 43.5, 41.2, 8, 300 }, + [29] = { 39.9, 41, 8, 300 }, + [30] = { 47.7, 40.7, 8, 300 }, + [31] = { 36.9, 39.9, 8, 300 }, + [32] = { 36.3, 39.6, 8, 300 }, + [33] = { 27, 39.6, 8, 300 }, + [34] = { 39.2, 39.3, 8, 300 }, + [35] = { 41, 38.8, 8, 300 }, + [36] = { 23.5, 38.7, 8, 300 }, + [37] = { 53.2, 38.4, 8, 300 }, + [38] = { 37.5, 37.6, 8, 300 }, + [39] = { 40.4, 37.3, 8, 300 }, + [40] = { 33.4, 35.5, 8, 300 }, + [41] = { 26.4, 34.3, 8, 300 }, + [42] = { 29.1, 34.3, 8, 300 }, + [43] = { 39.9, 31.2, 8, 300 }, + [44] = { 37.4, 30.9, 8, 300 }, + [45] = { 34.7, 30.3, 8, 300 }, + [46] = { 31.7, 29.4, 8, 300 }, + }, + ["lvl"] = "36-37", + }, + [769] = { + ["coords"] = { + [1] = { 81.1, 89.1, 8, 300 }, + [2] = { 76.2, 88.9, 8, 300 }, + [3] = { 76.9, 86.7, 8, 300 }, + [4] = { 77.4, 86, 8, 300 }, + [5] = { 80.2, 83.9, 8, 300 }, + [6] = { 75, 82.9, 8, 300 }, + [7] = { 72.8, 82.8, 8, 300 }, + [8] = { 73.2, 80.2, 8, 300 }, + [9] = { 70.2, 79.9, 8, 300 }, + [10] = { 72.8, 79.9, 8, 300 }, + [11] = { 67.4, 78.9, 8, 300 }, + [12] = { 76.5, 77.4, 8, 300 }, + [13] = { 65.3, 69.9, 8, 300 }, + [14] = { 66, 69.6, 8, 300 }, + [15] = { 60.6, 68.9, 8, 300 }, + [16] = { 71.3, 68.8, 8, 300 }, + [17] = { 60.9, 68.7, 8, 300 }, + [18] = { 67.8, 68.4, 8, 300 }, + [19] = { 62.9, 67.6, 8, 300 }, + [20] = { 69.4, 67.3, 8, 300 }, + [21] = { 63.7, 66.4, 8, 300 }, + [22] = { 59.6, 65.9, 8, 300 }, + [23] = { 56.5, 65.7, 8, 300 }, + [24] = { 62.1, 65.5, 8, 300 }, + [25] = { 61.9, 65.3, 8, 300 }, + [26] = { 65.5, 65.1, 8, 300 }, + [27] = { 56.9, 64.4, 8, 300 }, + [28] = { 59.3, 63.6, 8, 300 }, + [29] = { 58, 62.5, 8, 300 }, + [30] = { 55.4, 62.3, 8, 300 }, + [31] = { 56.9, 62.1, 8, 300 }, + [32] = { 55.9, 62.1, 8, 300 }, + [33] = { 60.6, 62.1, 8, 300 }, + [34] = { 60.5, 61.9, 8, 300 }, + [35] = { 56.4, 61.8, 8, 300 }, + [36] = { 56.4, 61, 8, 300 }, + [37] = { 60.5, 60.3, 8, 300 }, + [38] = { 59.4, 60.2, 8, 300 }, + }, + ["lvl"] = "40-41", + }, + [770] = { + ["coords"] = { + [1] = { 37.7, 3.3, 33, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [771] = { + ["coords"] = { + [1] = { 18, 37.9, 10, 27000 }, + }, + ["lvl"] = "32", + ["rnk"] = "2", + }, + [772] = { + ["coords"] = { + [1] = { 39.5, 41.7, 33, 300 }, + [2] = { 39.2, 41, 33, 300 }, + [3] = { 40.3, 41, 33, 300 }, + [4] = { 41.2, 40.9, 33, 300 }, + [5] = { 39.8, 40.7, 33, 300 }, + [6] = { 40.7, 40.2, 33, 300 }, + [7] = { 41.3, 39.8, 33, 300 }, + [8] = { 40.3, 39.6, 33, 300 }, + [9] = { 38.1, 39.3, 33, 300 }, + [10] = { 36.5, 39.1, 33, 300 }, + [11] = { 42, 38.9, 33, 300 }, + [12] = { 37.2, 38.9, 33, 300 }, + [13] = { 38.7, 38.6, 33, 300 }, + [14] = { 40.7, 38.4, 33, 300 }, + [15] = { 41.4, 38.2, 33, 300 }, + [16] = { 42.2, 38.1, 33, 300 }, + [17] = { 35.5, 38, 33, 300 }, + [18] = { 39.9, 37.6, 33, 300 }, + [19] = { 36.2, 37.2, 33, 300 }, + [20] = { 38.7, 37.1, 33, 300 }, + [21] = { 35.2, 37, 33, 300 }, + [22] = { 38.2, 36.9, 33, 300 }, + [23] = { 37.6, 36.4, 33, 300 }, + [24] = { 41.2, 36.3, 33, 300 }, + [25] = { 35.6, 36.2, 33, 300 }, + [26] = { 36.5, 36.1, 33, 300 }, + [27] = { 38.6, 35.7, 33, 300 }, + [28] = { 36.2, 35.7, 33, 300 }, + [29] = { 39.6, 35.5, 33, 300 }, + [30] = { 37.2, 35.5, 33, 300 }, + [31] = { 39.2, 34.8, 33, 300 }, + [32] = { 36.6, 34.8, 33, 300 }, + [33] = { 41.3, 34.8, 33, 300 }, + [34] = { 36, 33.9, 33, 300 }, + [35] = { 37.6, 33, 33, 300 }, + [36] = { 40.3, 31.7, 33, 300 }, + [37] = { 47, 29.6, 33, 300 }, + [38] = { 48, 27.8, 33, 300 }, + [39] = { 47, 27.7, 33, 300 }, + [40] = { 47.6, 27.4, 33, 300 }, + [41] = { 46.4, 26.9, 33, 300 }, + [42] = { 45.5, 26.8, 33, 300 }, + [43] = { 45.5, 25.3, 33, 300 }, + [44] = { 49.3, 24.5, 33, 300 }, + [45] = { 49.3, 23.2, 33, 300 }, + [46] = { 50.2, 23, 33, 300 }, + [47] = { 48.1, 23, 33, 300 }, + [48] = { 47.7, 22.3, 33, 300 }, + [49] = { 50.3, 21.8, 33, 300 }, + [50] = { 48.2, 21.6, 33, 300 }, + [51] = { 49.2, 21.6, 33, 300 }, + [52] = { 49.3, 20.4, 33, 300 }, + }, + ["lvl"] = "37-38", + }, + [773] = { + ["coords"] = { + [1] = { 26.9, 77.2, 33, 30 }, + }, + ["lvl"] = "35", + }, + [780] = { + ["coords"] = { + [1] = { 47, 41.8, 33, 300 }, + [2] = { 48.4, 41.7, 33, 300 }, + [3] = { 48.5, 41.6, 33, 300 }, + [4] = { 47.6, 41, 33, 300 }, + [5] = { 48.5, 40.9, 33, 300 }, + [6] = { 46.6, 40.4, 33, 300 }, + [7] = { 46, 40.4, 33, 300 }, + [8] = { 45, 40.2, 33, 300 }, + [9] = { 43.8, 40.2, 33, 300 }, + [10] = { 48.7, 40.1, 33, 300 }, + [11] = { 44.1, 40.1, 33, 300 }, + [12] = { 47.3, 39.9, 33, 300 }, + [13] = { 47.5, 39.8, 33, 300 }, + [14] = { 46.9, 39.7, 33, 300 }, + [15] = { 44.3, 39.7, 33, 300 }, + [16] = { 48.2, 39.6, 33, 300 }, + [17] = { 43.4, 39.5, 33, 300 }, + [18] = { 47.1, 39.5, 33, 300 }, + [19] = { 44.2, 39.5, 33, 300 }, + [20] = { 43.7, 39.4, 33, 300 }, + [21] = { 46.5, 39.1, 33, 300 }, + [22] = { 46.6, 38.9, 33, 300 }, + [23] = { 47.6, 38.8, 33, 300 }, + [24] = { 46.5, 38.8, 33, 300 }, + [25] = { 48.6, 38.4, 33, 300 }, + [26] = { 48.5, 38.4, 33, 300 }, + [27] = { 48.5, 38.3, 33, 300 }, + [28] = { 45, 38.1, 33, 300 }, + [29] = { 45.9, 38, 33, 300 }, + [30] = { 44, 37.2, 33, 300 }, + [31] = { 43.3, 36.4, 33, 300 }, + [32] = { 42.1, 36.3, 33, 300 }, + [33] = { 41.9, 36.3, 33, 300 }, + [34] = { 42.3, 36.1, 33, 300 }, + [35] = { 41.9, 36, 33, 300 }, + [36] = { 42.2, 35.8, 33, 300 }, + [37] = { 42.7, 35.6, 33, 300 }, + [38] = { 42.7, 35.5, 33, 300 }, + [39] = { 47.3, 35.4, 33, 300 }, + [40] = { 44, 35.4, 33, 300 }, + [41] = { 42.4, 35.3, 33, 300 }, + [42] = { 47.3, 35.3, 33, 300 }, + [43] = { 42.4, 35, 33, 300 }, + [44] = { 43.5, 34.7, 33, 300 }, + [45] = { 43.9, 34.4, 33, 300 }, + [46] = { 47.1, 34.1, 33, 300 }, + [47] = { 45.1, 34.1, 33, 300 }, + [48] = { 45, 33.6, 33, 300 }, + [49] = { 45.2, 33.6, 33, 300 }, + [50] = { 45.1, 33.5, 33, 300 }, + [51] = { 47.5, 33.3, 33, 300 }, + [52] = { 42.5, 33.3, 33, 300 }, + [53] = { 43.5, 33, 33, 300 }, + [54] = { 47, 32.5, 33, 300 }, + [55] = { 46.2, 32.5, 33, 300 }, + [56] = { 46, 32.3, 33, 300 }, + [57] = { 45.2, 32.3, 33, 300 }, + [58] = { 46, 32, 33, 300 }, + [59] = { 46.2, 32, 33, 300 }, + [60] = { 46.4, 32, 33, 300 }, + [61] = { 45.6, 31.7, 33, 300 }, + [62] = { 46.5, 30, 33, 300 }, + }, + ["lvl"] = "39-40", + }, + [782] = { + ["coords"] = { + [1] = { 45, 44.1, 33, 300 }, + [2] = { 44.6, 43.7, 33, 300 }, + [3] = { 45.8, 43.5, 33, 300 }, + [4] = { 46, 43.1, 33, 300 }, + [5] = { 45.8, 43, 33, 300 }, + [6] = { 46.2, 43, 33, 300 }, + [7] = { 45.4, 42.9, 33, 300 }, + [8] = { 45.1, 42.8, 33, 300 }, + [9] = { 45.6, 42.8, 33, 300 }, + [10] = { 44.4, 42.7, 33, 300 }, + [11] = { 46, 42.6, 33, 300 }, + [12] = { 46.3, 42.6, 33, 300 }, + [13] = { 45.9, 42.4, 33, 300 }, + [14] = { 45.6, 42.2, 33, 300 }, + [15] = { 44.3, 42.2, 33, 300 }, + [16] = { 46.1, 42.1, 33, 300 }, + [17] = { 44.6, 42, 33, 300 }, + [18] = { 44.5, 42, 33, 300 }, + [19] = { 46.9, 41.8, 33, 300 }, + [20] = { 45, 41.8, 33, 300 }, + [21] = { 45.8, 41.8, 33, 300 }, + [22] = { 44.9, 41.7, 33, 300 }, + [23] = { 44.3, 41.7, 33, 300 }, + [24] = { 46, 41.6, 33, 300 }, + [25] = { 44.6, 41.6, 33, 300 }, + [26] = { 45, 41.6, 33, 300 }, + [27] = { 44.5, 40.9, 33, 300 }, + }, + ["lvl"] = "41-42", + }, + [783] = { + ["coords"] = { + [1] = { 46.9, 45.1, 33, 300 }, + [2] = { 44.2, 44.8, 33, 300 }, + [3] = { 46.5, 44.7, 33, 300 }, + [4] = { 43.2, 44.3, 33, 300 }, + [5] = { 48, 44.3, 33, 300 }, + [6] = { 47.5, 44.3, 33, 300 }, + [7] = { 47.7, 44.3, 33, 300 }, + [8] = { 47.2, 44, 33, 300 }, + [9] = { 47.8, 43.7, 33, 300 }, + [10] = { 47.8, 43, 33, 300 }, + }, + ["lvl"] = "43-44", + }, + [784] = { + ["coords"] = { + [1] = { 45, 44.1, 33, 300 }, + [2] = { 44.6, 43.7, 33, 300 }, + [3] = { 45.8, 43.5, 33, 300 }, + [4] = { 46, 43.1, 33, 300 }, + [5] = { 45.8, 43, 33, 300 }, + [6] = { 46.2, 43, 33, 300 }, + [7] = { 45.4, 42.9, 33, 300 }, + [8] = { 45.1, 42.8, 33, 300 }, + [9] = { 45.6, 42.8, 33, 300 }, + [10] = { 44.4, 42.7, 33, 300 }, + [11] = { 46, 42.6, 33, 300 }, + [12] = { 46.3, 42.6, 33, 300 }, + [13] = { 45.9, 42.4, 33, 300 }, + [14] = { 45.6, 42.2, 33, 300 }, + [15] = { 44.3, 42.2, 33, 300 }, + [16] = { 46.1, 42.1, 33, 300 }, + [17] = { 44.6, 42, 33, 300 }, + [18] = { 44.5, 42, 33, 300 }, + [19] = { 46.9, 41.8, 33, 300 }, + [20] = { 45, 41.8, 33, 300 }, + [21] = { 45.8, 41.8, 33, 300 }, + [22] = { 44.9, 41.7, 33, 300 }, + [23] = { 44.3, 41.7, 33, 300 }, + [24] = { 46, 41.6, 33, 300 }, + [25] = { 44.6, 41.6, 33, 300 }, + [26] = { 45, 41.6, 33, 300 }, + [27] = { 44.5, 40.9, 33, 300 }, + }, + ["lvl"] = "41-42", + }, + [785] = { + ["coords"] = { + [1] = { 16.8, 37.6, 10, 300 }, + [2] = { 17.3, 37.4, 10, 300 }, + [3] = { 16.1, 37.3, 10, 300 }, + [4] = { 13.7, 36.2, 10, 300 }, + [5] = { 18.3, 35.7, 10, 300 }, + [6] = { 17.4, 35.5, 10, 300 }, + [7] = { 16, 34.6, 10, 300 }, + [8] = { 13.8, 34.5, 10, 300 }, + [9] = { 13.5, 33.4, 10, 300 }, + [10] = { 17.1, 33.2, 10, 300 }, + [11] = { 16.3, 32.7, 10, 300 }, + [12] = { 14.1, 32.6, 10, 300 }, + [13] = { 16.4, 31.6, 10, 300 }, + [14] = { 16.1, 31.4, 10, 300 }, + [15] = { 16.8, 30.1, 10, 300 }, + [16] = { 16.8, 28.6, 10, 300 }, + [17] = { 17.2, 28.1, 10, 300 }, + [18] = { 16.8, 28, 10, 300 }, + }, + ["lvl"] = "28-29", + }, + [786] = { + ["coords"] = { + [1] = { 25.1, 75.7, 1, 30 }, + [2] = { 52.2, 1.7, 5581, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [787] = { + ["coords"] = { + [1] = { 15.9, 41, 10, 300 }, + [2] = { 15, 40.5, 10, 300 }, + [3] = { 16.9, 40.4, 10, 300 }, + [4] = { 17, 39.2, 10, 300 }, + [5] = { 16.7, 37.7, 10, 300 }, + [6] = { 17.3, 37.4, 10, 300 }, + [7] = { 14, 36.4, 10, 300 }, + [8] = { 13.5, 36.3, 10, 300 }, + [9] = { 16.9, 35, 10, 300 }, + [10] = { 14.9, 34.2, 10, 300 }, + [11] = { 16.3, 32.1, 10, 300 }, + [12] = { 16.8, 29, 10, 300 }, + [13] = { 19.8, 26.7, 10, 300 }, + }, + ["lvl"] = "26-27", + }, + [803] = { + ["coords"] = { + [1] = { 43.3, 60.1, 2040, 120 }, + [2] = { 58.4, 30.6, 5225, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [808] = { + ["coords"] = { + [1] = { 30.5, 80.2, 1, 120 }, + [2] = { 60.4, 8.4, 5581, 120 }, + }, + ["lvl"] = "5", + }, + [809] = "_", + [818] = { + ["coords"] = { + [1] = { 52.9, 27.6, 33, 1800 }, + }, + ["lvl"] = "47", + ["rnk"] = "1", + }, + [820] = { + ["coords"] = { + [1] = { 56.7, 47.3, 40, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [821] = { + ["coords"] = { + [1] = { 56.4, 47.6, 40, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "33", + }, + [822] = { + ["coords"] = { + [1] = { 25.5, 90.7, 12, 270 }, + [2] = { 38.3, 89.4, 12, 270 }, + [3] = { 36.3, 89.2, 12, 270 }, + [4] = { 45.9, 85.1, 12, 270 }, + [5] = { 53.5, 84.7, 12, 270 }, + [6] = { 83.5, 84.7, 12, 270 }, + [7] = { 24.5, 83.4, 12, 270 }, + [8] = { 79.8, 83.3, 12, 270 }, + [9] = { 49.2, 82.8, 12, 270 }, + [10] = { 28.8, 81.6, 12, 270 }, + [11] = { 43.4, 81.2, 12, 270 }, + [12] = { 87.8, 81.1, 12, 270 }, + [13] = { 72.9, 80.9, 12, 270 }, + [14] = { 47, 79.7, 12, 270 }, + [15] = { 60.2, 79.5, 12, 270 }, + [16] = { 63.2, 79.2, 12, 270 }, + [17] = { 78.1, 79.2, 12, 270 }, + [18] = { 60.8, 79.1, 12, 270 }, + [19] = { 66.1, 78.8, 12, 270 }, + [20] = { 86.4, 78.5, 12, 270 }, + [21] = { 45, 78.1, 12, 270 }, + [22] = { 88.9, 77.5, 12, 270 }, + [23] = { 81.1, 77.2, 12, 270 }, + [24] = { 63.3, 77, 12, 270 }, + [25] = { 48.3, 76.8, 12, 270 }, + [26] = { 77.2, 76.7, 12, 270 }, + [27] = { 56.9, 75.9, 12, 270 }, + [28] = { 49.2, 75.9, 12, 270 }, + [29] = { 46.3, 75.8, 12, 270 }, + [30] = { 22.4, 75.8, 12, 270 }, + [31] = { 53.9, 75.5, 12, 270 }, + [32] = { 70.6, 74.9, 12, 270 }, + [33] = { 87.2, 69.3, 12, 270 }, + [34] = { 75.8, 67.5, 12, 270 }, + [35] = { 59.1, 66.9, 12, 270 }, + [36] = { 74.6, 66.8, 12, 270 }, + [37] = { 68.6, 66.3, 12, 270 }, + [38] = { 62.9, 65.9, 12, 270 }, + [39] = { 88.3, 65.7, 12, 270 }, + [40] = { 86.6, 65.2, 12, 270 }, + [41] = { 86.8, 64.5, 12, 270 }, + [42] = { 68.9, 63.9, 12, 270 }, + [43] = { 86.2, 63.2, 12, 270 }, + [44] = { 64.7, 63, 12, 270 }, + [45] = { 77.9, 61.7, 12, 270 }, + [46] = { 78.7, 61.4, 12, 270 }, + [47] = { 71.3, 61.3, 12, 270 }, + [48] = { 82.2, 59.2, 12, 270 }, + [49] = { 23, 12.4, 406, 25 }, + [50] = { 23.1, 11.6, 406, 25 }, + }, + ["lvl"] = "8-9", + }, + [823] = { + ["coords"] = { + [1] = { 48.2, 42.9, 12, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "18", + }, + [824] = { + ["coords"] = { + [1] = { 41.6, 78.9, 40, 300 }, + [2] = { 42.7, 78.3, 40, 300 }, + [3] = { 43.7, 78, 40, 300 }, + [4] = { 42.2, 78, 40, 300 }, + [5] = { 41.8, 77.8, 40, 300 }, + [6] = { 41.2, 77.8, 40, 300 }, + [7] = { 43.8, 77.5, 40, 300 }, + [8] = { 43.4, 77.5, 40, 300 }, + [9] = { 41, 77.3, 40, 300 }, + [10] = { 42.8, 77.1, 40, 300 }, + [11] = { 43.2, 77.1, 40, 300 }, + [12] = { 44.2, 77.1, 40, 300 }, + [13] = { 43.5, 77, 40, 300 }, + [14] = { 42.5, 76.9, 40, 300 }, + [15] = { 42.2, 76.8, 40, 300 }, + [16] = { 41.5, 76.8, 40, 300 }, + [17] = { 41.9, 76.6, 40, 300 }, + [18] = { 43.7, 76.5, 40, 300 }, + [19] = { 41, 76.5, 40, 300 }, + [20] = { 42.8, 76.5, 40, 300 }, + [21] = { 41.5, 76.2, 40, 300 }, + [22] = { 41.8, 75.8, 40, 300 }, + [23] = { 42.7, 75.7, 40, 300 }, + [24] = { 41.2, 75.7, 40, 300 }, + [25] = { 42.3, 75.6, 40, 300 }, + [26] = { 41.5, 75.3, 40, 300 }, + [27] = { 41.9, 75, 40, 300 }, + [28] = { 42.5, 74.9, 40, 300 }, + [29] = { 43, 74.8, 40, 300 }, + [30] = { 41.4, 74.7, 40, 300 }, + [31] = { 43.4, 74.6, 40, 300 }, + [32] = { 42.2, 74.4, 40, 300 }, + [33] = { 42.9, 74.2, 40, 300 }, + [34] = { 43.6, 74.2, 40, 300 }, + [35] = { 44, 74, 40, 300 }, + [36] = { 43, 73.7, 40, 300 }, + [37] = { 43.7, 73.5, 40, 300 }, + [38] = { 43, 72.4, 40, 300 }, + [39] = { 42.4, 72.4, 40, 300 }, + [40] = { 42.8, 72.1, 40, 300 }, + [41] = { 52, 61.7, 1581, 300 }, + [42] = { 60.1, 57.5, 1581, 300 }, + [43] = { 68.1, 55.3, 1581, 300 }, + [44] = { 56.6, 55, 1581, 300 }, + [45] = { 53.4, 53.5, 1581, 300 }, + [46] = { 48.6, 53.4, 1581, 300 }, + [47] = { 69, 51.1, 1581, 300 }, + [48] = { 65.8, 50.9, 1581, 300 }, + [49] = { 46.7, 49.5, 1581, 300 }, + [50] = { 61, 48, 1581, 300 }, + [51] = { 64.1, 47.9, 1581, 300 }, + [52] = { 71.6, 47.9, 1581, 300 }, + [53] = { 66.7, 47, 1581, 300 }, + [54] = { 58.4, 46.2, 1581, 300 }, + [55] = { 56.3, 46, 1581, 300 }, + [56] = { 50.9, 45.4, 1581, 300 }, + [57] = { 54.2, 43.9, 1581, 300 }, + [58] = { 68.4, 43.7, 1581, 300 }, + [59] = { 47, 43.6, 1581, 300 }, + [60] = { 61.2, 43.1, 1581, 300 }, + [61] = { 50.9, 41, 1581, 300 }, + [62] = { 53.4, 38, 1581, 300 }, + [63] = { 60.2, 37.4, 1581, 300 }, + [64] = { 48.8, 37, 1581, 300 }, + [65] = { 56.9, 36.1, 1581, 300 }, + [66] = { 51, 34.3, 1581, 300 }, + [67] = { 54.4, 31.5, 1581, 300 }, + [68] = { 58.4, 30.8, 1581, 300 }, + [69] = { 62.4, 29.9, 1581, 300 }, + [70] = { 50.3, 29.6, 1581, 300 }, + [71] = { 65.4, 28.9, 1581, 300 }, + [72] = { 56, 27.2, 1581, 300 }, + [73] = { 62, 25.7, 1581, 300 }, + [74] = { 67.5, 25.6, 1581, 300 }, + [75] = { 70.3, 24, 1581, 300 }, + [76] = { 62.2, 21.9, 1581, 300 }, + [77] = { 68, 19.9, 1581, 300 }, + [78] = { 62.6, 11.6, 1581, 300 }, + [79] = { 58.2, 11.5, 1581, 300 }, + [80] = { 60.8, 9.3, 1581, 300 }, + }, + ["lvl"] = "15-16", + }, + [828] = { + ["coords"] = { + [1] = { 77.2, 46.5, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "38", + }, + [830] = { + ["coords"] = { + [1] = { 39.6, 12.9, 40, 300 }, + [2] = { 39.6, 12.3, 40, 300 }, + [3] = { 40, 12.2, 40, 300 }, + [4] = { 41, 12.2, 40, 300 }, + [5] = { 49.8, 11.8, 40, 300 }, + [6] = { 40.1, 11.7, 40, 300 }, + [7] = { 40.8, 11.5, 40, 300 }, + [8] = { 41.1, 11.2, 40, 300 }, + [9] = { 50.7, 11, 40, 300 }, + [10] = { 50.3, 11, 40, 300 }, + [11] = { 46.7, 10.6, 40, 300 }, + [12] = { 47.5, 10.6, 40, 300 }, + [13] = { 49.9, 10.4, 40, 300 }, + [14] = { 47.9, 10.3, 40, 300 }, + [15] = { 50.5, 10.3, 40, 300 }, + [16] = { 46.4, 10.2, 40, 300 }, + [17] = { 46.1, 9.6, 40, 300 }, + }, + ["lvl"] = "13-14", + }, + [831] = { + ["coords"] = { + [1] = { 31.1, 24.2, 40, 300 }, + [2] = { 31.6, 24.1, 40, 300 }, + [3] = { 31.8, 23.5, 40, 300 }, + [4] = { 31.4, 23.3, 40, 300 }, + [5] = { 31.7, 22.7, 40, 300 }, + [6] = { 32.3, 22.7, 40, 300 }, + [7] = { 32.6, 22, 40, 300 }, + [8] = { 33, 21.8, 40, 300 }, + [9] = { 32.5, 21.4, 40, 300 }, + [10] = { 34.9, 18.5, 40, 300 }, + [11] = { 36, 16.7, 40, 300 }, + [12] = { 36.6, 16.2, 40, 300 }, + }, + ["lvl"] = "15-16", + }, + [832] = { + ["coords"] = { + [1] = { 68.6, 73.4, 40, 300 }, + [2] = { 34.3, 67.8, 40, 300 }, + [3] = { 38.2, 62.3, 40, 300 }, + [4] = { 42.1, 59.4, 40, 300 }, + [5] = { 63.2, 51.8, 40, 300 }, + [6] = { 46.6, 49.8, 40, 300 }, + [7] = { 33.5, 49.6, 40, 300 }, + [8] = { 42.7, 41.7, 40, 300 }, + [9] = { 54.6, 41.2, 40, 300 }, + [10] = { 35.6, 34.8, 40, 300 }, + [11] = { 60.4, 33.8, 40, 300 }, + [12] = { 39.9, 21.2, 40, 300 }, + }, + ["lvl"] = "18-19", + }, + [833] = { + ["coords"] = { + [1] = { 35.2, 42.7, 40, 300 }, + [2] = { 62.3, 42, 40, 300 }, + [3] = { 32.6, 40.2, 40, 300 }, + [4] = { 35, 39.1, 40, 300 }, + [5] = { 36.5, 36.5, 40, 300 }, + [6] = { 60.1, 36.4, 40, 300 }, + [7] = { 52, 35.1, 40, 300 }, + [8] = { 36, 33.6, 40, 300 }, + [9] = { 62.1, 32.5, 40, 300 }, + [10] = { 33.3, 31.6, 40, 300 }, + [11] = { 33, 30.3, 40, 300 }, + [12] = { 35.9, 29.8, 40, 300 }, + [13] = { 41.7, 26.7, 40, 300 }, + [14] = { 39.7, 26.5, 40, 300 }, + [15] = { 41.1, 26.2, 40, 300 }, + [16] = { 37.3, 25.1, 40, 300 }, + [17] = { 61.8, 23.4, 40, 300 }, + [18] = { 46.4, 20.5, 40, 300 }, + [19] = { 41.1, 18.1, 40, 300 }, + [20] = { 47.5, 14.8, 40, 300 }, + }, + ["lvl"] = "11-12", + }, + [834] = { + ["coords"] = { + [1] = { 19.7, 84, 12, 300 }, + [2] = { 17.6, 78.5, 12, 300 }, + [3] = { 17.5, 75.5, 12, 300 }, + [4] = { 16.8, 74, 12, 300 }, + [5] = { 51.3, 46.1, 40, 300 }, + [6] = { 50.5, 45.1, 40, 300 }, + [7] = { 62.7, 42.3, 40, 300 }, + [8] = { 35.4, 42.2, 40, 300 }, + [9] = { 55, 40.7, 40, 300 }, + [10] = { 61.1, 39.7, 40, 300 }, + [11] = { 53.3, 38.2, 40, 300 }, + [12] = { 60.2, 37.7, 40, 300 }, + [13] = { 62.7, 36.4, 40, 300 }, + [14] = { 41.5, 35, 40, 300 }, + [15] = { 41.9, 32, 40, 300 }, + [16] = { 46.2, 31.1, 40, 300 }, + [17] = { 59.4, 30.5, 40, 300 }, + [18] = { 55.4, 30.2, 40, 300 }, + [19] = { 55.1, 29.5, 40, 300 }, + [20] = { 39.9, 29.3, 40, 300 }, + [21] = { 50.7, 29.2, 40, 300 }, + [22] = { 43.4, 29.1, 40, 300 }, + [23] = { 61.7, 29.1, 40, 300 }, + [24] = { 36, 28.9, 40, 300 }, + [25] = { 58.8, 28.1, 40, 300 }, + [26] = { 40.9, 27.7, 40, 300 }, + [27] = { 54.6, 27.7, 40, 300 }, + [28] = { 36.9, 27.1, 40, 300 }, + [29] = { 56.2, 26.8, 40, 300 }, + [30] = { 47.5, 26.5, 40, 300 }, + [31] = { 41.2, 26.4, 40, 300 }, + [32] = { 61.5, 26.3, 40, 300 }, + [33] = { 36.4, 26, 40, 300 }, + [34] = { 38.2, 23.8, 40, 300 }, + [35] = { 53.3, 22.5, 40, 300 }, + [36] = { 58.8, 22.5, 40, 300 }, + [37] = { 56, 22.4, 40, 300 }, + [38] = { 39.6, 20.8, 40, 300 }, + [39] = { 61.8, 20.8, 40, 300 }, + [40] = { 41.6, 19, 40, 300 }, + [41] = { 57, 18.2, 40, 300 }, + [42] = { 58, 16.7, 40, 300 }, + [43] = { 47.4, 15.3, 40, 300 }, + [44] = { 59.8, 15.3, 40, 300 }, + [45] = { 58.4, 14.7, 40, 300 }, + [46] = { 59.6, 12.3, 40, 300 }, + [47] = { 59, 10.8, 40, 300 }, + }, + ["lvl"] = "10-11", + }, + [836] = { + ["coords"] = { + [1] = { 28.8, 66.4, 1, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [837] = { + ["coords"] = { + [1] = { 28.6, 66.4, 1, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [840] = { + ["coords"] = { + [1] = { 72.6, 33.5, 10, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "42", + }, + [841] = "_", + [842] = { + ["coords"] = { + [1] = { 53.6, 53.4, 40, 300 }, + [2] = { 54.5, 52.5, 40, 300 }, + [3] = { 52.4, 51.9, 40, 300 }, + [4] = { 53.5, 50.8, 40, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [846] = { + ["coords"] = { + [1] = { 40.5, 68, 40, 300 }, + [2] = { 39.8, 68, 40, 300 }, + [3] = { 40.2, 67.4, 40, 300 }, + [4] = { 39.7, 67, 40, 300 }, + [5] = { 40.3, 66.9, 40, 300 }, + [6] = { 41.7, 29.3, 40, 300 }, + [7] = { 41.7, 29.2, 40, 300 }, + }, + ["lvl"] = "14-15", + }, + [848] = { + ["coords"] = { + [1] = { 29, 48.2, 44, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [849] = { + ["coords"] = { + [1] = { 28.2, 46.9, 44, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "3", + }, + [856] = { + ["coords"] = { + [1] = { 30.6, 23.5, 33, 300 }, + }, + ["lvl"] = "33-34", + }, + [858] = { + ["coords"] = { + [1] = { 24.9, 64, 8, 300 }, + [2] = { 22.7, 62.2, 8, 300 }, + [3] = { 28.3, 62, 8, 300 }, + [4] = { 26.1, 62, 8, 300 }, + [5] = { 25.4, 59.3, 8, 300 }, + [6] = { 22.3, 59, 8, 300 }, + [7] = { 34.5, 55.2, 8, 300 }, + [8] = { 17.6, 53.4, 8, 300 }, + [9] = { 29.3, 53.3, 8, 300 }, + [10] = { 19.8, 52.9, 8, 300 }, + [11] = { 31.6, 50.5, 8, 300 }, + [12] = { 26, 49.5, 8, 300 }, + [13] = { 26.8, 48.6, 8, 300 }, + [14] = { 26.4, 45.9, 8, 300 }, + [15] = { 27.7, 43.4, 8, 300 }, + [16] = { 21.3, 42.5, 8, 300 }, + [17] = { 22.5, 37.7, 8, 300 }, + [18] = { 38.8, 37.5, 8, 300 }, + [19] = { 47.8, 33.8, 8, 300 }, + [20] = { 37.5, 32.1, 8, 300 }, + [21] = { 36.5, 30.9, 8, 300 }, + [22] = { 39.5, 30.8, 8, 300 }, + [23] = { 71.4, 30, 8, 300 }, + [24] = { 40.8, 29.8, 8, 300 }, + [25] = { 43.2, 29, 8, 300 }, + [26] = { 33.2, 28.9, 8, 300 }, + [27] = { 37.1, 28.6, 8, 300 }, + }, + ["lvl"] = "36-37", + }, + [859] = { + ["coords"] = { + [1] = { 26.3, 46.6, 44, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "33", + }, + [860] = "_", + [861] = { + ["coords"] = { + [1] = { 23.7, 58.2, 8, 300 }, + [2] = { 28.1, 57.5, 8, 300 }, + [3] = { 35.9, 56.9, 8, 300 }, + [4] = { 22.1, 55.1, 8, 300 }, + [5] = { 16.4, 52.9, 8, 300 }, + [6] = { 23.7, 52.6, 8, 300 }, + [7] = { 17.9, 51.9, 8, 300 }, + [8] = { 16.2, 51.6, 8, 300 }, + [9] = { 15.2, 51.6, 8, 300 }, + [10] = { 17.2, 50.5, 8, 300 }, + [11] = { 20.8, 50.1, 8, 300 }, + [12] = { 24.6, 48.8, 8, 300 }, + [13] = { 17, 47, 8, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "36-37", + }, + [864] = { + ["coords"] = { + [1] = { 48.3, 57.7, 8, 300 }, + [2] = { 43, 53.4, 8, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [866] = { + ["coords"] = { + [1] = { 47.6, 58.4, 8, 300 }, + [2] = { 48, 58.1, 8, 300 }, + [3] = { 41.4, 57, 8, 300 }, + [4] = { 43.4, 55.5, 8, 300 }, + [5] = { 43.3, 54.4, 8, 300 }, + [6] = { 42.1, 51.8, 8, 300 }, + [7] = { 48.9, 51.5, 8, 300 }, + [8] = { 47.3, 49.7, 8, 300 }, + [9] = { 44.4, 49.5, 8, 300 }, + [10] = { 44.9, 49, 8, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "56", + }, + [868] = { + ["coords"] = { + [1] = { 81.7, 80.9, 8, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "53", + }, + [869] = { + ["coords"] = { + [1] = { 57.8, 30.5, 40, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [873] = { + ["coords"] = { + [1] = { 24.5, 25, 33, 1800 }, + [2] = { 24.3, 24.3, 33, 1800 }, + [3] = { 24.6, 24, 33, 1800 }, + [4] = { 25.1, 23.8, 33, 1800 }, + [5] = { 24.8, 23.4, 33, 1800 }, + }, + ["lvl"] = "36-37", + ["rnk"] = "1", + }, + [874] = { + ["coords"] = { + [1] = { 60.5, 64.9, 40, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [878] = { + ["coords"] = { + [1] = { 54, 53, 40, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [880] = { + ["coords"] = { + [1] = { 71, 80.6, 12, 120 }, + }, + ["lvl"] = "8", + }, + [881] = { + ["coords"] = { + [1] = { 71, 80.8, 12, 120 }, + }, + ["lvl"] = "9", + }, + [882] = "_", + [883] = { + ["coords"] = { + [1] = { 33.7, 67.2, 11, 120 }, + [2] = { 32.2, 63.5, 11, 120 }, + [3] = { 37.6, 62, 11, 120 }, + [4] = { 33.2, 61.4, 11, 120 }, + [5] = { 31.1, 61.1, 11, 120 }, + [6] = { 40.2, 91.4, 12, 270 }, + [7] = { 45.1, 87.3, 12, 270 }, + [8] = { 45.8, 87, 12, 270 }, + [9] = { 81.1, 84.2, 12, 270 }, + [10] = { 87, 83.7, 12, 270 }, + [11] = { 48.3, 83.4, 12, 270 }, + [12] = { 25.2, 83, 12, 270 }, + [13] = { 36.1, 81.3, 12, 270 }, + [14] = { 88.6, 80.6, 12, 270 }, + [15] = { 73.4, 80.5, 12, 270 }, + [16] = { 41.2, 79.9, 12, 270 }, + [17] = { 54, 79.5, 12, 270 }, + [18] = { 46.2, 78.6, 12, 270 }, + [19] = { 43.3, 78.3, 12, 270 }, + [20] = { 35.5, 78, 12, 270 }, + [21] = { 51.5, 77.7, 12, 270 }, + [22] = { 49.3, 75.8, 12, 270 }, + [23] = { 38.5, 74.2, 12, 270 }, + [24] = { 56.9, 74.1, 12, 270 }, + [25] = { 69.7, 72.1, 12, 270 }, + [26] = { 86.9, 72.1, 12, 270 }, + [27] = { 56.9, 70.8, 12, 270 }, + [28] = { 45.2, 67, 12, 270 }, + [29] = { 36.7, 66.4, 12, 270 }, + [30] = { 45, 66.1, 12, 270 }, + [31] = { 80.4, 64.7, 12, 270 }, + [32] = { 80.8, 64.3, 12, 270 }, + [33] = { 32.9, 58.8, 12, 270 }, + [34] = { 40.2, 57.3, 12, 270 }, + [35] = { 40.5, 56.9, 12, 270 }, + [36] = { 36.9, 55.9, 12, 270 }, + [37] = { 34.4, 54.7, 12, 270 }, + [38] = { 32.1, 54, 12, 270 }, + [39] = { 32.3, 53.6, 12, 270 }, + [40] = { 54.7, 50.6, 12, 270 }, + [41] = { 44.7, 50, 12, 270 }, + [42] = { 51.4, 48.6, 12, 270 }, + [43] = { 55, 46.7, 12, 270 }, + [44] = { 56.4, 45.9, 12, 270 }, + [45] = { 56.8, 42.7, 12, 270 }, + [46] = { 43.8, 40.5, 12, 270 }, + [47] = { 76.8, 39.5, 12, 270 }, + [48] = { 44.5, 38.1, 12, 270 }, + [49] = { 49.9, 32.3, 12, 270 }, + [50] = { 47.1, 32, 12, 270 }, + [51] = { 43.3, 98.7, 28, 300 }, + [52] = { 42, 94.5, 28, 300 }, + [53] = { 43.9, 90, 28, 300 }, + [54] = { 44.6, 83.2, 28, 300 }, + [55] = { 82.3, 63.4, 36, 300 }, + [56] = { 57.7, 60.1, 36, 300 }, + [57] = { 63.7, 53, 36, 300 }, + [58] = { 79.6, 51.5, 36, 300 }, + [59] = { 77.6, 45.2, 36, 300 }, + [60] = { 80.5, 38.3, 36, 300 }, + [61] = { 59.8, 20.3, 40, 300 }, + [62] = { 59.2, 19.7, 40, 300 }, + [63] = { 55.3, 24.8, 130, 300 }, + [64] = { 47.2, 19.1, 130, 300 }, + [65] = { 11, 23.1, 139, 300 }, + [66] = { 11.4, 20, 139, 300 }, + [67] = { 10.5, 18.6, 139, 300 }, + [68] = { 16.6, 12.1, 139, 300 }, + [69] = { 15.1, 12, 139, 300 }, + [70] = { 19.7, 10.2, 139, 300 }, + [71] = { 20.6, 9.4, 139, 300 }, + [72] = { 19.5, 7.8, 139, 300 }, + [73] = { 53.9, 76.6, 141, 300 }, + [74] = { 60.6, 74.5, 141, 300 }, + [75] = { 47.9, 74.3, 141, 300 }, + [76] = { 43.3, 74, 141, 300 }, + [77] = { 42.5, 72, 141, 300 }, + [78] = { 63.4, 71.2, 141, 300 }, + [79] = { 40.1, 69.7, 141, 300 }, + [80] = { 55.5, 67, 141, 300 }, + [81] = { 27.3, 66.2, 141, 300 }, + [82] = { 28.5, 64.7, 141, 300 }, + [83] = { 22.6, 64.6, 141, 300 }, + [84] = { 63.3, 64.1, 141, 300 }, + [85] = { 53, 62.7, 141, 300 }, + [86] = { 64.6, 61.5, 141, 300 }, + [87] = { 29.3, 60.8, 141, 300 }, + [88] = { 62.2, 60.4, 141, 300 }, + [89] = { 40.4, 60.3, 141, 300 }, + [90] = { 53.6, 59.8, 141, 300 }, + [91] = { 54.2, 58.8, 141, 300 }, + [92] = { 31.4, 58.5, 141, 300 }, + [93] = { 33.1, 58.4, 141, 300 }, + [94] = { 23.2, 54.6, 141, 300 }, + [95] = { 31.1, 54.4, 141, 300 }, + [96] = { 68, 53.7, 141, 300 }, + [97] = { 65, 53.6, 141, 300 }, + [98] = { 31.1, 51.8, 141, 300 }, + [99] = { 25.7, 50.8, 141, 300 }, + [100] = { 24.8, 50.7, 141, 300 }, + [101] = { 28.7, 50.4, 141, 300 }, + [102] = { 28.6, 48.7, 141, 300 }, + [103] = { 27.5, 48.1, 141, 300 }, + [104] = { 26.7, 47.8, 141, 300 }, + [105] = { 28.1, 47, 141, 300 }, + [106] = { 26, 45.5, 141, 300 }, + [107] = { 55.8, 45.2, 141, 300 }, + [108] = { 38.4, 44.8, 141, 300 }, + [109] = { 61.7, 42.1, 141, 300 }, + [110] = { 55.6, 38.6, 141, 300 }, + [111] = { 41, 38.6, 141, 300 }, + [112] = { 45.2, 36.8, 141, 300 }, + [113] = { 61.8, 36.1, 141, 300 }, + [114] = { 60.4, 34.1, 141, 300 }, + [115] = { 46.6, 33.3, 141, 300 }, + [116] = { 41.2, 28.7, 141, 300 }, + [117] = { 45.4, 98.2, 148, 300 }, + [118] = { 42.9, 83.2, 148, 300 }, + [119] = { 43.2, 74.9, 148, 300 }, + [120] = { 40, 70.1, 148, 300 }, + [121] = { 44.2, 52.6, 148, 300 }, + [122] = { 55.5, 26.7, 148, 300 }, + [123] = { 56.1, 22.4, 148, 300 }, + [124] = { 80.9, 3.9, 267, 300 }, + [125] = { 59.4, 1.1, 267, 300 }, + [126] = { 48.7, 66.7, 331, 300 }, + [127] = { 76, 65.7, 331, 300 }, + [128] = { 61, 64.7, 331, 300 }, + [129] = { 57.9, 64.5, 331, 300 }, + [130] = { 47.1, 62.2, 331, 300 }, + [131] = { 73.6, 61.2, 331, 300 }, + [132] = { 31.4, 57.7, 331, 300 }, + [133] = { 21.4, 54.9, 331, 300 }, + [134] = { 43.1, 54.9, 331, 300 }, + [135] = { 22.7, 53.7, 331, 300 }, + [136] = { 55.7, 53.3, 331, 300 }, + [137] = { 76.1, 52.3, 331, 300 }, + [138] = { 20.7, 52.2, 331, 300 }, + [139] = { 22.7, 51, 331, 300 }, + [140] = { 62.5, 50, 331, 300 }, + [141] = { 31.3, 46.2, 331, 300 }, + [142] = { 50.4, 45.5, 331, 300 }, + [143] = { 26.9, 42.1, 331, 300 }, + [144] = { 22, 40.8, 331, 300 }, + [145] = { 38.3, 36.6, 331, 300 }, + [146] = { 34, 34.7, 331, 300 }, + [147] = { 30.4, 32.3, 331, 300 }, + [148] = { 17.9, 32, 331, 300 }, + [149] = { 26.2, 30.5, 331, 300 }, + [150] = { 27.1, 21.8, 331, 300 }, + [151] = { 30, 16.3, 331, 300 }, + [152] = { 75.6, 51.3, 357, 300 }, + [153] = { 42.7, 22.4, 357, 300 }, + [154] = { 40, 8.5, 357, 300 }, + [155] = { 44.9, 26.3, 406, 300 }, + [156] = { 42.3, 25, 406, 300 }, + [157] = { 67.5, 24.6, 406, 300 }, + [158] = { 57.9, 21.9, 406, 300 }, + [159] = { 59.1, 20.8, 406, 300 }, + [160] = { 57.2, 19.3, 406, 300 }, + [161] = { 59.1, 18.2, 406, 300 }, + [162] = { 57.6, 75.5, 493, 300 }, + [163] = { 52.9, 74, 493, 300 }, + [164] = { 60.8, 72.1, 493, 300 }, + [165] = { 48.9, 71.7, 493, 300 }, + [166] = { 65.1, 71.7, 493, 300 }, + [167] = { 51, 71.5, 493, 300 }, + [168] = { 63.8, 69.7, 493, 300 }, + [169] = { 65.4, 69.3, 493, 300 }, + [170] = { 58.1, 68.8, 493, 300 }, + [171] = { 46.6, 68.6, 493, 300 }, + [172] = { 66.3, 68.2, 493, 300 }, + [173] = { 47.1, 68.1, 493, 300 }, + [174] = { 41.5, 67.4, 493, 300 }, + [175] = { 64.2, 67.3, 493, 300 }, + [176] = { 39.6, 67.3, 493, 300 }, + [177] = { 62.4, 67, 493, 300 }, + [178] = { 65.2, 67, 493, 300 }, + [179] = { 58.1, 65.7, 493, 300 }, + [180] = { 38.1, 65.7, 493, 300 }, + [181] = { 65, 64.6, 493, 300 }, + [182] = { 45.7, 63.8, 493, 300 }, + [183] = { 68.1, 63.8, 493, 300 }, + [184] = { 49.7, 63.7, 493, 300 }, + [185] = { 35.2, 62.8, 493, 300 }, + [186] = { 34.2, 61.3, 493, 300 }, + [187] = { 65.8, 60.8, 493, 300 }, + [188] = { 45.4, 60.8, 493, 300 }, + [189] = { 31.9, 60.5, 493, 300 }, + [190] = { 42.5, 60.2, 493, 300 }, + [191] = { 40.8, 60.1, 493, 300 }, + [192] = { 35.2, 58.4, 493, 300 }, + [193] = { 43.5, 58.2, 493, 300 }, + [194] = { 34.9, 56, 493, 300 }, + [195] = { 66.9, 56, 493, 300 }, + [196] = { 69.1, 55.8, 493, 300 }, + [197] = { 31.5, 55.1, 493, 300 }, + [198] = { 40.6, 55.1, 493, 300 }, + [199] = { 64.3, 54.4, 493, 300 }, + [200] = { 37.2, 53.8, 493, 300 }, + [201] = { 67.5, 53.4, 493, 300 }, + [202] = { 69.3, 52.5, 493, 300 }, + [203] = { 65.6, 52, 493, 300 }, + [204] = { 70.4, 51.8, 493, 300 }, + [205] = { 33.8, 51.4, 493, 300 }, + [206] = { 43.5, 51.3, 493, 300 }, + [207] = { 35.9, 50.9, 493, 300 }, + [208] = { 63.9, 49.2, 493, 300 }, + [209] = { 31.2, 48.4, 493, 300 }, + [210] = { 66.7, 48.2, 493, 300 }, + [211] = { 65.5, 48.1, 493, 300 }, + [212] = { 61.1, 47.8, 493, 300 }, + [213] = { 39.4, 47.7, 493, 300 }, + [214] = { 42.7, 47.5, 493, 300 }, + [215] = { 38.9, 46.8, 493, 300 }, + [216] = { 65.2, 46.6, 493, 300 }, + [217] = { 42.2, 46.3, 493, 300 }, + [218] = { 63.7, 44.3, 493, 300 }, + [219] = { 37, 43.7, 493, 300 }, + [220] = { 34.1, 43.2, 493, 300 }, + [221] = { 41.5, 42.2, 493, 300 }, + [222] = { 39.4, 42.2, 493, 300 }, + [223] = { 34.3, 40.3, 493, 300 }, + [224] = { 32, 39.6, 493, 300 }, + [225] = { 52.2, 38.4, 493, 300 }, + [226] = { 33.2, 35.5, 493, 300 }, + [227] = { 37.1, 34.9, 493, 300 }, + [228] = { 38.3, 34.3, 493, 300 }, + [229] = { 55.3, 33.2, 493, 300 }, + [230] = { 47.5, 33, 493, 300 }, + [231] = { 33.2, 32.7, 493, 300 }, + [232] = { 57, 31.2, 493, 300 }, + [233] = { 39.9, 28.8, 493, 300 }, + [234] = { 37.1, 27, 493, 300 }, + [235] = { 79.4, 16.4, 1519, 120 }, + [236] = { 76.8, 12.9, 1519, 120 }, + [237] = { 48.5, 92.7, 1657, 300 }, + [238] = { 54.2, 85.3, 1657, 300 }, + [239] = { 26, 85, 1657, 300 }, + [240] = { 58.4, 66.9, 1657, 300 }, + [241] = { 68.4, 55.6, 1657, 300 }, + [242] = { 76.5, 55.1, 1657, 300 }, + [243] = { 28.6, 36.9, 1657, 300 }, + [244] = { 66.8, 35.7, 1657, 300 }, + [245] = { 66.6, 23.4, 1657, 300 }, + [246] = { 40.6, 18.8, 1657, 300 }, + [247] = { 36.6, 18.3, 1657, 300 }, + [248] = { 55.4, 16.5, 1657, 300 }, + [249] = { 54.9, 8.5, 1657, 300 }, + [250] = { 49.7, 5.7, 1657, 300 }, + [251] = { 45.8, 4.2, 1657, 300 }, + [252] = { 52.3, 0.2, 1657, 300 }, + [253] = { 35.5, 95.4, 2040, 300 }, + [254] = { 7.1, 94.4, 2040, 300 }, + [255] = { 1, 94.1, 2040, 300 }, + [256] = { 26.4, 89.7, 2040, 300 }, + [257] = { 5.3, 89.6, 2040, 300 }, + [258] = { 20.5, 89.4, 2040, 300 }, + [259] = { 32.9, 87.7, 2040, 300 }, + [260] = { 37.6, 86.8, 2040, 300 }, + [261] = { 43, 50, 5077, 25 }, + [262] = { 47.1, 49.5, 5077, 25 }, + [263] = { 43, 48.9, 5077, 25 }, + [264] = { 41.8, 46.9, 5077, 25 }, + [265] = { 47.2, 44, 5077, 25 }, + [266] = { 42.8, 43.3, 5077, 25 }, + [267] = { 44, 43, 5077, 25 }, + [268] = { 38.9, 42.7, 5077, 25 }, + [269] = { 46.9, 41, 5077, 25 }, + [270] = { 37.2, 40.9, 5077, 25 }, + [271] = { 39.2, 40.5, 5077, 25 }, + [272] = { 34.2, 40.2, 5077, 25 }, + [273] = { 34.2, 35, 5077, 25 }, + [274] = { 45.7, 34.8, 5077, 25 }, + [275] = { 71.6, 90.4, 5097, 300 }, + [276] = { 73.3, 90.2, 5097, 300 }, + [277] = { 71.4, 90.1, 5097, 300 }, + [278] = { 69.6, 85.7, 5097, 300 }, + [279] = { 73.7, 83.6, 5097, 300 }, + [280] = { 68.2, 79.5, 5097, 300 }, + [281] = { 66.6, 76.5, 5097, 300 }, + [282] = { 68.1, 72.6, 5097, 300 }, + [283] = { 67.1, 66.2, 5097, 300 }, + [284] = { 73, 66.1, 5097, 300 }, + [285] = { 71.8, 65.8, 5097, 300 }, + [286] = { 65.9, 63.3, 5097, 300 }, + [287] = { 65.9, 62.8, 5097, 300 }, + [288] = { 64.5, 60.4, 5097, 300 }, + [289] = { 63, 58.6, 5097, 300 }, + [290] = { 62.3, 55.2, 5097, 300 }, + [291] = { 71.1, 54.5, 5097, 300 }, + [292] = { 67.1, 54.2, 5097, 300 }, + [293] = { 71.7, 53.7, 5097, 300 }, + [294] = { 75.6, 52.2, 5097, 300 }, + [295] = { 63.1, 51.1, 5097, 300 }, + [296] = { 63.2, 50.6, 5097, 300 }, + [297] = { 58, 50.1, 5097, 300 }, + [298] = { 77.7, 49.8, 5097, 300 }, + [299] = { 57.6, 49.7, 5097, 300 }, + [300] = { 58, 49.4, 5097, 300 }, + [301] = { 67.2, 49.1, 5097, 300 }, + [302] = { 77.9, 48.8, 5097, 300 }, + [303] = { 72.2, 48.2, 5097, 300 }, + [304] = { 63.3, 46.9, 5097, 300 }, + [305] = { 61.3, 46.6, 5097, 300 }, + [306] = { 57.7, 44.2, 5097, 300 }, + [307] = { 68.6, 39.7, 5097, 300 }, + [308] = { 57.4, 39, 5097, 300 }, + [309] = { 73.7, 38.4, 5097, 300 }, + [310] = { 62.1, 34.5, 5097, 300 }, + [311] = { 55.6, 34.2, 5097, 300 }, + [312] = { 65.5, 33.6, 5097, 300 }, + [313] = { 66.4, 33.5, 5097, 300 }, + [314] = { 55.4, 33.2, 5097, 300 }, + [315] = { 73.9, 32.7, 5097, 300 }, + [316] = { 58.5, 31.3, 5097, 300 }, + [317] = { 74.8, 28.8, 5097, 300 }, + [318] = { 52.1, 84.9, 5225, 300 }, + [319] = { 46.6, 81.8, 5225, 300 }, + [320] = { 52.6, 81, 5225, 300 }, + [321] = { 51.5, 79.2, 5225, 300 }, + [322] = { 34.7, 75.2, 5225, 300 }, + [323] = { 50.3, 75, 5225, 300 }, + [324] = { 35.8, 74.7, 5225, 300 }, + [325] = { 45.5, 74.6, 5225, 300 }, + [326] = { 43.8, 72.6, 5225, 300 }, + [327] = { 50.7, 72.1, 5225, 300 }, + [328] = { 59.2, 71.1, 5225, 300 }, + [329] = { 57.3, 70.9, 5225, 300 }, + [330] = { 54.5, 70.9, 5225, 300 }, + [331] = { 36.2, 69.6, 5225, 300 }, + [332] = { 39.8, 69.5, 5225, 300 }, + [333] = { 63.1, 68.7, 5225, 300 }, + [334] = { 49.5, 68.6, 5225, 300 }, + [335] = { 50.9, 68.5, 5225, 300 }, + [336] = { 47.8, 68.3, 5225, 300 }, + [337] = { 64.2, 67.6, 5225, 300 }, + [338] = { 37.1, 67.6, 5225, 300 }, + [339] = { 46.1, 67.6, 5225, 300 }, + [340] = { 52.5, 67.5, 5225, 300 }, + [341] = { 54, 66.4, 5225, 300 }, + [342] = { 45.7, 65.8, 5225, 300 }, + [343] = { 62.7, 65.7, 5225, 300 }, + [344] = { 57.6, 64.9, 5225, 300 }, + [345] = { 59, 64.6, 5225, 300 }, + [346] = { 55.1, 64.5, 5225, 300 }, + [347] = { 60.8, 64.4, 5225, 300 }, + [348] = { 55.7, 63.9, 5225, 300 }, + [349] = { 45.7, 63.5, 5225, 300 }, + [350] = { 54.9, 62.9, 5225, 300 }, + [351] = { 45.9, 60.8, 5225, 300 }, + [352] = { 46.3, 59, 5225, 300 }, + [353] = { 47.4, 58.3, 5225, 300 }, + [354] = { 26.4, 58.1, 5225, 300 }, + [355] = { 48.3, 56.4, 5225, 300 }, + [356] = { 29.9, 55.7, 5225, 300 }, + [357] = { 50.2, 55.5, 5225, 300 }, + [358] = { 51.7, 54.1, 5225, 300 }, + [359] = { 31.1, 54, 5225, 300 }, + [360] = { 28.5, 53.9, 5225, 300 }, + [361] = { 53.1, 53, 5225, 300 }, + [362] = { 33.4, 51.4, 5225, 300 }, + [363] = { 54.1, 51.1, 5225, 300 }, + [364] = { 29.9, 50.5, 5225, 300 }, + [365] = { 35.7, 49.9, 5225, 300 }, + [366] = { 31.4, 48.3, 5225, 300 }, + [367] = { 54.7, 47.4, 5225, 300 }, + [368] = { 41.1, 46.9, 5225, 300 }, + [369] = { 38.2, 46.7, 5225, 300 }, + [370] = { 50.3, 44.6, 5225, 300 }, + [371] = { 40.3, 44.6, 5225, 300 }, + [372] = { 47.5, 44.5, 5225, 300 }, + [373] = { 53.5, 43.7, 5225, 300 }, + [374] = { 37.2, 43.5, 5225, 300 }, + [375] = { 55.7, 43.3, 5225, 300 }, + [376] = { 59.1, 86.2, 5581, 120 }, + [377] = { 57.7, 84.3, 5581, 120 }, + }, + ["lvl"] = "5", + }, + [885] = { + ["coords"] = { + [1] = { 78.2, 44.7, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "39", + }, + [887] = { + ["coords"] = { + [1] = { 74.8, 50.4, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "39", + }, + [888] = { + ["coords"] = { + [1] = { 45.1, 67, 10, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "29", + }, + [889] = { + ["coords"] = { + [1] = { 39.3, 76, 10, 300 }, + [2] = { 38.7, 74.9, 10, 300 }, + [3] = { 38.5, 72.6, 10, 300 }, + [4] = { 37.5, 72, 10, 300 }, + [5] = { 40.4, 72, 10, 300 }, + [6] = { 38.7, 70.5, 10, 300 }, + [7] = { 40.5, 70.5, 10, 300 }, + }, + ["lvl"] = "25-26", + }, + [890] = { + ["coords"] = { + [1] = { 32.1, 63.6, 11, 120 }, + [2] = { 32.1, 63.5, 11, 120 }, + [3] = { 37.6, 61.9, 11, 120 }, + [4] = { 33.2, 61.3, 11, 120 }, + [5] = { 25.3, 83, 12, 270 }, + [6] = { 88.6, 80.7, 12, 270 }, + [7] = { 35.5, 77.9, 12, 270 }, + [8] = { 87, 72, 12, 270 }, + [9] = { 45.2, 67.1, 12, 270 }, + [10] = { 45, 66.2, 12, 270 }, + [11] = { 80.4, 64.6, 12, 270 }, + [12] = { 36.9, 55.8, 12, 270 }, + [13] = { 32.3, 53.7, 12, 270 }, + [14] = { 32.3, 53.6, 12, 270 }, + [15] = { 51.3, 49.2, 12, 270 }, + [16] = { 55.8, 45.1, 12, 270 }, + [17] = { 43.8, 40.5, 12, 270 }, + [18] = { 22.7, 51, 331, 300 }, + [19] = { 22.7, 50.9, 331, 300 }, + [20] = { 59.1, 18.1, 406, 300 }, + [21] = { 57.6, 88, 616, 300 }, + [22] = { 59.1, 85.7, 616, 300 }, + [23] = { 54.5, 82.5, 616, 300 }, + [24] = { 60.8, 82.4, 616, 300 }, + [25] = { 29, 80.4, 616, 300 }, + [26] = { 72.6, 79.6, 616, 300 }, + [27] = { 56.5, 78.3, 616, 300 }, + [28] = { 64.9, 77.4, 616, 300 }, + [29] = { 77.4, 76.2, 616, 300 }, + [30] = { 71.4, 75.2, 616, 300 }, + [31] = { 74.1, 74.7, 616, 300 }, + [32] = { 63.8, 73.4, 616, 300 }, + [33] = { 24.6, 71.9, 616, 300 }, + [34] = { 84.9, 69.5, 616, 300 }, + [35] = { 83, 69.4, 616, 300 }, + [36] = { 33.6, 69.4, 616, 300 }, + [37] = { 35.3, 68.8, 616, 300 }, + [38] = { 13.4, 57.3, 616, 300 }, + [39] = { 45.8, 55.7, 616, 300 }, + [40] = { 49.3, 52.8, 616, 300 }, + [41] = { 38.6, 49.4, 616, 300 }, + [42] = { 73.5, 45.1, 616, 300 }, + [43] = { 71.3, 42.9, 616, 300 }, + [44] = { 69.5, 41.6, 616, 300 }, + [45] = { 73.4, 40.8, 616, 300 }, + [46] = { 77.4, 39.3, 616, 300 }, + [47] = { 74.8, 38.1, 616, 300 }, + [48] = { 81, 34.7, 616, 300 }, + [49] = { 82.2, 28.3, 616, 300 }, + [50] = { 80.1, 23.9, 616, 300 }, + [51] = { 82.8, 23.8, 616, 300 }, + [52] = { 83.4, 23.5, 616, 300 }, + [53] = { 74.8, 19.7, 616, 300 }, + [54] = { 45.7, 85.3, 618, 300 }, + [55] = { 49.1, 82.3, 618, 300 }, + [56] = { 48.2, 82.3, 618, 300 }, + }, + ["lvl"] = "1", + }, + [891] = { + ["coords"] = { + [1] = { 36.3, 75.2, 10, 300 }, + [2] = { 40.4, 75.2, 10, 300 }, + [3] = { 39.3, 74.5, 10, 300 }, + [4] = { 40, 74, 10, 300 }, + [5] = { 34.9, 72.1, 10, 300 }, + [6] = { 36.3, 70.9, 10, 300 }, + [7] = { 35, 70.7, 10, 300 }, + }, + ["lvl"] = "26-27", + }, + [892] = { + ["coords"] = { + [1] = { 36.4, 81.4, 10, 300 }, + [2] = { 39.5, 75, 10, 300 }, + [3] = { 37.7, 74.4, 10, 300 }, + [4] = { 35.9, 73.8, 10, 300 }, + [5] = { 39.5, 73.3, 10, 300 }, + [6] = { 32.6, 72.9, 10, 300 }, + [7] = { 36.6, 72.4, 10, 300 }, + [8] = { 33.8, 70.5, 10, 300 }, + [9] = { 39.2, 70, 10, 300 }, + [10] = { 33.7, 68.2, 10, 300 }, + }, + ["lvl"] = "27-28", + }, + [893] = { + ["coords"] = { + [1] = { 7.7, 33.2, 10, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "18", + }, + [897] = "_", + [898] = { + ["coords"] = { + [1] = { 59.9, 68.9, 10, 300 }, + [2] = { 62.8, 68.6, 10, 300 }, + [3] = { 61.2, 66.4, 10, 300 }, + [4] = { 62.6, 55, 10, 300 }, + [5] = { 59.1, 53.7, 10, 300 }, + [6] = { 61.2, 53.2, 10, 300 }, + [7] = { 57.4, 51.9, 10, 300 }, + [8] = { 61.4, 50.3, 10, 300 }, + [9] = { 58.8, 50.3, 10, 300 }, + [10] = { 60.3, 48, 10, 300 }, + [11] = { 66.9, 42.8, 10, 300 }, + [12] = { 62.6, 42.3, 10, 300 }, + [13] = { 66.1, 40.6, 10, 300 }, + [14] = { 67.3, 38.7, 10, 300 }, + [15] = { 66.3, 37.5, 10, 300 }, + [16] = { 64.9, 34.4, 10, 300 }, + [17] = { 60.9, 32.8, 10, 300 }, + [18] = { 58.4, 31.2, 10, 300 }, + [19] = { 62.6, 31.1, 10, 300 }, + [20] = { 58.1, 30.5, 10, 300 }, + [21] = { 61.2, 30.3, 10, 300 }, + [22] = { 58.5, 29.9, 10, 300 }, + [23] = { 57.8, 29.9, 10, 300 }, + [24] = { 62.1, 27.9, 10, 300 }, + [25] = { 57.4, 27.6, 10, 300 }, + [26] = { 59.5, 27.5, 10, 300 }, + [27] = { 58.5, 25.6, 10, 300 }, + }, + ["lvl"] = "26-27", + }, + [900] = { + ["coords"] = { + [1] = { 29.7, 44.3, 44, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [903] = { + ["coords"] = { + [1] = { 31.5, 57.9, 44, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [904] = "_", + [905] = { + ["coords"] = { + [1] = { 35.6, 33.2, 33, 300 }, + [2] = { 36.1, 33.1, 33, 300 }, + [3] = { 37.4, 32.1, 33, 300 }, + [4] = { 39, 30.6, 33, 300 }, + [5] = { 39.4, 29.6, 33, 300 }, + [6] = { 39.8, 25.6, 33, 300 }, + [7] = { 40.2, 22.1, 33, 300 }, + [8] = { 40.4, 21.5, 33, 300 }, + [9] = { 41.8, 20.1, 33, 180 }, + [10] = { 42.3, 18.4, 33, 300 }, + [11] = { 40.9, 18.4, 33, 300 }, + [12] = { 41.3, 17.5, 33, 300 }, + [13] = { 40.9, 16.8, 33, 300 }, + [14] = { 40.8, 16, 33, 300 }, + [15] = { 40.5, 14.4, 33, 300 }, + [16] = { 39.3, 11.9, 33, 300 }, + [17] = { 37.7, 10.2, 33, 300 }, + [18] = { 32.9, 8.3, 33, 300 }, + }, + ["lvl"] = "31-32", + }, + [909] = { + ["coords"] = { + [1] = { 48.8, 77.5, 10, 300 }, + [2] = { 49.9, 77.3, 10, 300 }, + [3] = { 48.5, 77.2, 10, 120 }, + [4] = { 49.3, 77.1, 10, 120 }, + [5] = { 50.5, 77.1, 10, 300 }, + [6] = { 50.7, 77, 10, 300 }, + [7] = { 47.8, 76.9, 10, 300 }, + [8] = { 50, 76.5, 10, 120 }, + [9] = { 49.6, 76.1, 10, 300 }, + [10] = { 47.7, 75.9, 10, 120 }, + [11] = { 48.5, 75.8, 10, 300 }, + [12] = { 48.2, 75.3, 10, 300 }, + [13] = { 47.1, 75, 10, 120 }, + [14] = { 23, 73.8, 10, 300 }, + [15] = { 47.1, 73.7, 10, 120 }, + [16] = { 21.6, 73.3, 10, 300 }, + [17] = { 23.4, 73.3, 10, 300 }, + [18] = { 21.6, 73, 10, 300 }, + [19] = { 20.5, 72.7, 10, 300 }, + [20] = { 22.9, 72.6, 10, 120 }, + [21] = { 47.8, 72.3, 10, 120 }, + [22] = { 24, 72.1, 10, 300 }, + [23] = { 21.8, 71.9, 10, 300 }, + [24] = { 24, 71.8, 10, 120 }, + [25] = { 22.6, 71.6, 10, 300 }, + [26] = { 23.9, 71.4, 10, 300 }, + [27] = { 21.9, 71, 10, 120 }, + [28] = { 23.7, 71, 10, 120 }, + [29] = { 20.7, 70.8, 10, 120 }, + [30] = { 19.9, 70.8, 10, 300 }, + [31] = { 22.9, 68.8, 10, 120 }, + [32] = { 22.7, 66.4, 10, 120 }, + }, + ["lvl"] = "25-26", + }, + [910] = { + ["coords"] = { + [1] = { 48.8, 77.5, 10, 300 }, + [2] = { 50.4, 77.4, 10, 300 }, + [3] = { 50.8, 76.7, 10, 180 }, + [4] = { 21.3, 73.4, 10, 300 }, + [5] = { 21.5, 73, 10, 300 }, + [6] = { 21.3, 72, 10, 300 }, + [7] = { 23.7, 72, 10, 300 }, + }, + ["lvl"] = "26-27", + }, + [913] = { + ["coords"] = { + [1] = { 41.1, 65.8, 12, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "12", + }, + [914] = { + ["coords"] = { + [1] = { 80.2, 61.3, 1519, 490 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [917] = { + ["coords"] = { + [1] = { 43.9, 65.9, 12, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "11", + }, + [918] = { + ["coords"] = { + [1] = { 78.2, 69.1, 1519, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [919] = "_", + [920] = { + ["coords"] = { + [1] = { 63.6, 84.2, 10, 300 }, + [2] = { 63.5, 83.7, 10, 300 }, + [3] = { 63.6, 83.6, 10, 300 }, + [4] = { 62.3, 82.2, 10, 300 }, + [5] = { 61.2, 81.7, 10, 300 }, + [6] = { 62.4, 81.1, 10, 300 }, + [7] = { 60.9, 80.9, 10, 300 }, + [8] = { 63.1, 80.3, 10, 300 }, + [9] = { 74.1, 79.6, 10, 300 }, + [10] = { 73.6, 79, 10, 300 }, + [11] = { 74.1, 78.7, 10, 300 }, + [12] = { 73.9, 77.2, 10, 300 }, + [13] = { 73.5, 77, 10, 300 }, + [14] = { 73.1, 75.5, 10, 300 }, + [15] = { 48.7, 1.5, 33, 300 }, + }, + ["lvl"] = "30-31", + }, + [923] = { + ["coords"] = { + [1] = { 22, 78.3, 10, 300 }, + [2] = { 24.4, 78, 10, 300 }, + [3] = { 20.1, 77.7, 10, 300 }, + [4] = { 43.5, 77.4, 10, 300 }, + [5] = { 52.3, 76.2, 10, 300 }, + [6] = { 25.7, 74.8, 10, 300 }, + [7] = { 27.6, 74.3, 10, 300 }, + [8] = { 54.1, 74.1, 10, 300 }, + [9] = { 47.8, 73.9, 10, 300 }, + [10] = { 53.4, 73.1, 10, 300 }, + [11] = { 52.1, 72.9, 10, 300 }, + [12] = { 18.2, 72, 10, 300 }, + [13] = { 26.3, 71, 10, 300 }, + [14] = { 42.9, 70.8, 10, 300 }, + [15] = { 47.8, 70.3, 10, 300 }, + [16] = { 50, 69.1, 10, 300 }, + [17] = { 22.1, 68.8, 10, 300 }, + [18] = { 26.7, 67.6, 10, 300 }, + [19] = { 55.5, 65.7, 10, 300 }, + [20] = { 37.5, 65.4, 10, 300 }, + [21] = { 28.4, 65.4, 10, 300 }, + [22] = { 49, 65.2, 10, 300 }, + [23] = { 53.5, 65.1, 10, 300 }, + [24] = { 17.8, 65.1, 10, 300 }, + [25] = { 40.4, 64.9, 10, 300 }, + [26] = { 55.9, 64.3, 10, 300 }, + [27] = { 51.2, 64.1, 10, 300 }, + [28] = { 24.8, 64, 10, 300 }, + [29] = { 54.6, 63.7, 10, 300 }, + [30] = { 46.9, 63.3, 10, 300 }, + [31] = { 28.3, 62.8, 10, 300 }, + [32] = { 30.7, 62.6, 10, 300 }, + [33] = { 32.5, 62.4, 10, 300 }, + [34] = { 56.4, 62.1, 10, 300 }, + [35] = { 59.8, 60.8, 10, 300 }, + [36] = { 61, 59.3, 10, 300 }, + [37] = { 69.5, 30.8, 10, 300 }, + [38] = { 69.3, 30.1, 10, 300 }, + [39] = { 67.2, 28.1, 10, 300 }, + [40] = { 66.1, 24, 10, 300 }, + }, + ["lvl"] = "23-24", + }, + [924] = "_", + [927] = { + ["coords"] = { + [1] = { 41.1, 66, 12, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "11", + }, + [928] = { + ["coords"] = { + [1] = { 48.4, 50.2, 1519, 490 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [929] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [930] = { + ["coords"] = { + [1] = { 80.7, 62.8, 10, 300 }, + [2] = { 37.3, 59.5, 10, 300 }, + [3] = { 34.6, 59.1, 10, 300 }, + [4] = { 77.8, 58.4, 10, 300 }, + [5] = { 35.1, 58.2, 10, 300 }, + [6] = { 83.8, 57.6, 10, 300 }, + [7] = { 37.2, 57.5, 10, 300 }, + [8] = { 31.4, 57.1, 10, 300 }, + [9] = { 31.3, 56.5, 10, 300 }, + [10] = { 35.7, 55.8, 10, 300 }, + [11] = { 30.1, 55.2, 10, 300 }, + [12] = { 30.4, 55.2, 10, 300 }, + [13] = { 31.2, 54.9, 10, 300 }, + [14] = { 32.4, 54.7, 10, 300 }, + [15] = { 35.6, 54.7, 10, 300 }, + [16] = { 34.3, 54.1, 10, 300 }, + [17] = { 80.4, 54.1, 10, 300 }, + [18] = { 29.5, 53.5, 10, 300 }, + [19] = { 82.1, 53.3, 10, 300 }, + [20] = { 86.9, 53.1, 10, 300 }, + [21] = { 26.2, 52.3, 10, 300 }, + [22] = { 87.1, 52.1, 10, 300 }, + [23] = { 86, 52.1, 10, 300 }, + [24] = { 81.6, 52.1, 10, 300 }, + [25] = { 26.7, 52, 10, 300 }, + [26] = { 85.5, 51.7, 10, 300 }, + [27] = { 32.8, 51.7, 10, 300 }, + [28] = { 79.3, 51.4, 10, 300 }, + [29] = { 30.1, 51.4, 10, 300 }, + [30] = { 30.1, 51.2, 10, 300 }, + [31] = { 86.3, 50.3, 10, 300 }, + [32] = { 26.9, 50.3, 10, 300 }, + [33] = { 31.3, 49.5, 10, 300 }, + [34] = { 29.6, 49.4, 10, 300 }, + [35] = { 30.1, 48.4, 10, 300 }, + [36] = { 27.4, 47.3, 10, 300 }, + [37] = { 26.4, 47, 10, 300 }, + [38] = { 31.8, 46.6, 10, 300 }, + [39] = { 29.6, 46.6, 10, 300 }, + [40] = { 34.9, 46, 10, 300 }, + [41] = { 33.4, 45.9, 10, 300 }, + [42] = { 28.1, 44.7, 10, 300 }, + [43] = { 31.6, 42.4, 10, 300 }, + [44] = { 27.7, 40.8, 10, 300 }, + [45] = { 32.9, 39.5, 10, 300 }, + [46] = { 32.3, 39.4, 10, 300 }, + [47] = { 30.8, 36, 10, 300 }, + [48] = { 32.8, 36, 10, 300 }, + [49] = { 31.9, 34.3, 10, 300 }, + [50] = { 33.6, 34.1, 10, 300 }, + [51] = { 32, 34.1, 10, 300 }, + [52] = { 32.8, 32.7, 10, 300 }, + [53] = { 35, 32.4, 10, 300 }, + }, + ["lvl"] = "24-25", + }, + [931] = { + ["coords"] = { + [1] = { 30.6, 59.4, 44, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [937] = { + ["coords"] = { + [1] = { 46.2, 12.6, 33, 300 }, + [2] = { 46, 12, 33, 300 }, + [3] = { 44, 12, 33, 300 }, + [4] = { 44.5, 11.5, 33, 300 }, + [5] = { 44.7, 11.4, 33, 300 }, + [6] = { 44.9, 11.4, 33, 300 }, + [7] = { 45.2, 11.4, 33, 300 }, + [8] = { 44, 11.3, 33, 300 }, + [9] = { 46.5, 11.3, 33, 300 }, + [10] = { 46.1, 11.3, 33, 300 }, + [11] = { 45.3, 11.3, 33, 300 }, + [12] = { 44.8, 11.2, 33, 300 }, + [13] = { 45.2, 11.1, 33, 300 }, + [14] = { 44.7, 11, 33, 300 }, + [15] = { 45.2, 11, 33, 300 }, + [16] = { 44, 10.6, 33, 300 }, + [17] = { 47, 10.4, 33, 300 }, + [18] = { 44.5, 10, 33, 300 }, + [19] = { 44.6, 10, 33, 300 }, + [20] = { 44.5, 9.9, 33, 300 }, + [21] = { 44.5, 9.8, 33, 300 }, + [22] = { 43.9, 9.8, 33, 300 }, + [23] = { 43.6, 9.7, 33, 300 }, + [24] = { 43.9, 9.7, 33, 300 }, + [25] = { 44.1, 9.7, 33, 300 }, + [26] = { 43.7, 9.6, 33, 300 }, + [27] = { 43.9, 9.5, 33, 300 }, + [28] = { 43.7, 9.5, 33, 300 }, + [29] = { 46.6, 9.5, 33, 300 }, + [30] = { 44.9, 9.5, 33, 300 }, + [31] = { 43.9, 9.4, 33, 300 }, + [32] = { 44, 9.4, 33, 300 }, + [33] = { 44.1, 9.4, 33, 300 }, + [34] = { 44.1, 8.7, 33, 300 }, + [35] = { 44.8, 8.6, 33, 300 }, + [36] = { 45, 8.4, 33, 300 }, + [37] = { 44.9, 8.3, 33, 300 }, + [38] = { 47.1, 7.4, 33, 300 }, + [39] = { 43.9, 7.1, 33, 300 }, + }, + ["lvl"] = "32-33", + }, + [938] = { + ["coords"] = { + [1] = { 46, 8.7, 33, 300 }, + [2] = { 44.6, 8.5, 33, 300 }, + [3] = { 45.5, 8.4, 33, 300 }, + [4] = { 45.7, 8.1, 33, 300 }, + [5] = { 46, 8.1, 33, 300 }, + [6] = { 44.2, 8, 33, 300 }, + [7] = { 44.4, 8, 33, 300 }, + [8] = { 44.2, 7.9, 33, 300 }, + [9] = { 45.9, 7.9, 33, 300 }, + [10] = { 46.3, 7.8, 33, 300 }, + [11] = { 47.3, 7.6, 33, 300 }, + [12] = { 46.3, 7.4, 33, 300 }, + [13] = { 48.3, 7.1, 33, 300 }, + [14] = { 46.7, 7.1, 33, 300 }, + [15] = { 46.5, 6.9, 33, 300 }, + }, + ["lvl"] = "34-35", + }, + [939] = { + ["coords"] = { + [1] = { 48.4, 8.7, 33, 300 }, + [2] = { 48.9, 8.6, 33, 300 }, + [3] = { 49.3, 8.4, 33, 300 }, + [4] = { 49.1, 8, 33, 300 }, + [5] = { 49.3, 7.9, 33, 300 }, + [6] = { 49.6, 7.7, 33, 300 }, + [7] = { 49.3, 7.5, 33, 300 }, + [8] = { 47.7, 6.9, 33, 300 }, + [9] = { 47.9, 6.9, 33, 300 }, + [10] = { 47.4, 6.6, 33, 300 }, + [11] = { 46.8, 6.6, 33, 300 }, + [12] = { 46.8, 6.5, 33, 300 }, + [13] = { 47.9, 6.4, 33, 300 }, + [14] = { 46.7, 6.2, 33, 300 }, + }, + ["lvl"] = "36-37", + }, + [940] = { + ["coords"] = { + [1] = { 46.2, 12.6, 33, 300 }, + [2] = { 46, 12, 33, 300 }, + [3] = { 44, 12, 33, 300 }, + [4] = { 44.5, 11.5, 33, 300 }, + [5] = { 44.7, 11.4, 33, 300 }, + [6] = { 44.9, 11.4, 33, 300 }, + [7] = { 45.2, 11.4, 33, 300 }, + [8] = { 44, 11.3, 33, 300 }, + [9] = { 46.5, 11.3, 33, 300 }, + [10] = { 46.1, 11.3, 33, 300 }, + [11] = { 45.3, 11.3, 33, 300 }, + [12] = { 44.8, 11.2, 33, 300 }, + [13] = { 45.2, 11.1, 33, 300 }, + [14] = { 44.7, 11, 33, 300 }, + [15] = { 45.2, 11, 33, 300 }, + [16] = { 44, 10.6, 33, 300 }, + [17] = { 47, 10.4, 33, 300 }, + [18] = { 44.5, 10, 33, 300 }, + [19] = { 44.6, 10, 33, 300 }, + [20] = { 44.5, 9.9, 33, 300 }, + [21] = { 44.5, 9.8, 33, 300 }, + [22] = { 43.9, 9.8, 33, 300 }, + [23] = { 43.6, 9.7, 33, 300 }, + [24] = { 43.9, 9.7, 33, 300 }, + [25] = { 44.1, 9.7, 33, 300 }, + [26] = { 43.7, 9.6, 33, 300 }, + [27] = { 43.9, 9.5, 33, 300 }, + [28] = { 43.7, 9.5, 33, 300 }, + [29] = { 46.6, 9.5, 33, 300 }, + [30] = { 44.9, 9.5, 33, 300 }, + [31] = { 43.9, 9.4, 33, 300 }, + [32] = { 44, 9.4, 33, 300 }, + [33] = { 44.1, 9.4, 33, 300 }, + [34] = { 44.1, 8.7, 33, 300 }, + [35] = { 44.8, 8.6, 33, 300 }, + [36] = { 45, 8.4, 33, 300 }, + [37] = { 44.9, 8.3, 33, 300 }, + [38] = { 47.1, 7.4, 33, 300 }, + [39] = { 43.9, 7.1, 33, 300 }, + }, + ["lvl"] = "32-33", + }, + [941] = { + ["coords"] = { + [1] = { 48.1, 8.4, 33, 300 }, + [2] = { 46.4, 7.9, 33, 300 }, + [3] = { 47.7, 7.8, 33, 300 }, + [4] = { 48.4, 7.3, 33, 300 }, + [5] = { 46.9, 7.3, 33, 300 }, + [6] = { 48.1, 7.2, 33, 300 }, + [7] = { 46.3, 7, 33, 300 }, + [8] = { 46.4, 6.7, 33, 300 }, + }, + ["lvl"] = "34-35", + }, + [942] = { + ["coords"] = { + [1] = { 48.7, 8.7, 33, 300 }, + [2] = { 49.5, 8.3, 33, 300 }, + [3] = { 49.7, 7.5, 33, 300 }, + [4] = { 47.9, 7.2, 33, 300 }, + [5] = { 49.4, 7.2, 33, 300 }, + [6] = { 49.4, 7.1, 33, 300 }, + [7] = { 47.8, 7, 33, 300 }, + [8] = { 47.6, 6.6, 33, 300 }, + [9] = { 47.9, 6.1, 33, 300 }, + [10] = { 47.5, 6, 33, 300 }, + [11] = { 46.9, 5.9, 33, 300 }, + [12] = { 47.4, 5.7, 33, 300 }, + [13] = { 47.5, 5.6, 33, 300 }, + }, + ["lvl"] = "36-37", + }, + [946] = { + ["coords"] = { + [1] = { 28.7, 83.1, 1, 270 }, + [2] = { 29, 82.6, 1, 270 }, + [3] = { 30.1, 82.4, 1, 270 }, + [4] = { 29, 81.2, 1, 270 }, + [5] = { 29.4, 81.1, 1, 270 }, + [6] = { 30.4, 80.9, 1, 270 }, + [7] = { 30.2, 80.3, 1, 270 }, + [8] = { 30.5, 79.5, 1, 270 }, + [9] = { 66.5, 40.9, 1, 15 }, + [10] = { 57.7, 13, 5581, 270 }, + [11] = { 58.1, 12.1, 5581, 270 }, + [12] = { 59.8, 11.8, 5581, 270 }, + [13] = { 58.2, 10, 5581, 270 }, + [14] = { 58.7, 9.8, 5581, 270 }, + [15] = { 60.3, 9.5, 5581, 270 }, + [16] = { 60, 8.6, 5581, 270 }, + [17] = { 60.4, 7.5, 5581, 270 }, + }, + ["lvl"] = "3-4", + }, + [947] = { + ["coords"] = { + [1] = { 75.7, 30.1, 44, 54000 }, + }, + ["lvl"] = "26", + ["rnk"] = "4", + }, + [948] = { + ["coords"] = { + [1] = { 24, 38, 10, 300 }, + [2] = { 25.4, 37.9, 10, 300 }, + [3] = { 21.6, 37.5, 10, 300 }, + [4] = { 21.5, 36, 10, 300 }, + [5] = { 24.8, 34.4, 10, 300 }, + [6] = { 21.8, 34.1, 10, 300 }, + [7] = { 25.6, 33.5, 10, 300 }, + }, + ["lvl"] = "25-26", + }, + [949] = { + ["coords"] = { + [1] = { 21.5, 46.3, 10, 300 }, + [2] = { 18.1, 43.7, 10, 300 }, + [3] = { 18.9, 42.1, 10, 300 }, + [4] = { 17, 39.6, 10, 300 }, + [5] = { 21, 39.1, 10, 300 }, + [6] = { 23.4, 36.7, 10, 300 }, + }, + ["lvl"] = "25-26", + }, + [951] = { + ["coords"] = { + [1] = { 49.6, 40.4, 12, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "27", + }, + [953] = "_", + [954] = { + ["coords"] = { + [1] = { 35.9, 45.8, 38, 100 }, + [2] = { 17, 67.7, 5602, 100 }, + }, + ["fac"] = "A", + ["lvl"] = "17", + }, + [957] = { + ["coords"] = { + [1] = { 64.1, 37, 1519, 310 }, + [2] = { 50.9, 97.2, 5581, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [963] = { + ["coords"] = { + [1] = { 24.2, 74.4, 12, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [978] = { + ["coords"] = { + [1] = { 49.3, 6.8, 33, 300 }, + [2] = { 49.2, 6.3, 33, 300 }, + [3] = { 49.4, 6.2, 33, 300 }, + [4] = { 49.7, 6, 33, 300 }, + [5] = { 48.9, 5.9, 33, 300 }, + [6] = { 48.7, 5.8, 33, 300 }, + [7] = { 49.1, 5.7, 33, 300 }, + [8] = { 48.7, 5.4, 33, 300 }, + [9] = { 48.8, 4.5, 33, 300 }, + [10] = { 49.3, 4.1, 33, 300 }, + [11] = { 49.6, 4.1, 33, 300 }, + [12] = { 49.9, 4, 33, 300 }, + [13] = { 49.3, 3.9, 33, 300 }, + [14] = { 49.6, 3.8, 33, 300 }, + }, + ["lvl"] = "38", + }, + [979] = { + ["coords"] = { + [1] = { 49.6, 5.8, 33, 300 }, + [2] = { 49, 5.6, 33, 300 }, + [3] = { 48.6, 5.5, 33, 300 }, + [4] = { 48.7, 4.9, 33, 300 }, + [5] = { 49.9, 3.7, 33, 300 }, + }, + ["lvl"] = "38", + }, + [994] = "_", + [995] = "_", + [996] = "_", + [1007] = { + ["coords"] = { + [1] = { 55.9, 75.9, 11, 300 }, + [2] = { 55.2, 75.4, 11, 300 }, + [3] = { 55.7, 75.4, 11, 300 }, + [4] = { 55.9, 75.2, 11, 300 }, + [5] = { 55.5, 75.2, 11, 300 }, + [6] = { 56.7, 75, 11, 300 }, + [7] = { 55.5, 75, 11, 300 }, + [8] = { 62.6, 75, 11, 300 }, + [9] = { 56.1, 74.6, 11, 300 }, + [10] = { 55.4, 74.1, 11, 300 }, + [11] = { 60.3, 73.8, 11, 300 }, + [12] = { 54.4, 73.7, 11, 300 }, + [13] = { 61.2, 73.1, 11, 300 }, + [14] = { 61.8, 73.1, 11, 300 }, + [15] = { 62.6, 72.7, 11, 300 }, + [16] = { 61.2, 72.2, 11, 300 }, + [17] = { 62.1, 72, 11, 300 }, + [18] = { 61.9, 71.9, 11, 300 }, + [19] = { 60.3, 71.4, 11, 300 }, + [20] = { 66.7, 70.1, 11, 300 }, + [21] = { 62.6, 69.8, 11, 300 }, + [22] = { 62.9, 69.8, 11, 300 }, + [23] = { 62.7, 69.1, 11, 300 }, + [24] = { 63.2, 69.1, 11, 300 }, + [25] = { 62.4, 69, 11, 300 }, + [26] = { 61.6, 66.8, 11, 300 }, + [27] = { 62.4, 64.8, 11, 300 }, + [28] = { 62.1, 64.5, 11, 300 }, + [29] = { 61.7, 63.9, 11, 300 }, + [30] = { 60.5, 63.7, 11, 300 }, + [31] = { 11.7, 37.3, 5602, 300 }, + [32] = { 11.1, 36.9, 5602, 300 }, + [33] = { 11.5, 36.9, 5602, 300 }, + [34] = { 11.7, 36.8, 5602, 300 }, + [35] = { 11.4, 36.7, 5602, 300 }, + [36] = { 12.3, 36.6, 5602, 300 }, + [37] = { 11.4, 36.6, 5602, 300 }, + [38] = { 16.8, 36.6, 5602, 300 }, + [39] = { 11.8, 36.3, 5602, 300 }, + [40] = { 11.3, 35.9, 5602, 300 }, + [41] = { 15.1, 35.6, 5602, 300 }, + [42] = { 10.5, 35.6, 5602, 300 }, + [43] = { 15.8, 35.1, 5602, 300 }, + [44] = { 16.2, 35.1, 5602, 300 }, + [45] = { 16.8, 34.8, 5602, 300 }, + [46] = { 15.8, 34.5, 5602, 300 }, + [47] = { 16.5, 34.3, 5602, 300 }, + [48] = { 16.3, 34.2, 5602, 300 }, + [49] = { 15, 33.8, 5602, 300 }, + [50] = { 20, 32.8, 5602, 300 }, + [51] = { 16.8, 32.6, 5602, 300 }, + [52] = { 17.1, 32.6, 5602, 300 }, + [53] = { 16.9, 32, 5602, 300 }, + [54] = { 17.3, 32, 5602, 300 }, + [55] = { 16.7, 32, 5602, 300 }, + [56] = { 16, 30.3, 5602, 300 }, + [57] = { 16.7, 28.7, 5602, 300 }, + [58] = { 16.4, 28.5, 5602, 300 }, + [59] = { 16.1, 28.1, 5602, 300 }, + [60] = { 15.2, 27.9, 5602, 300 }, + }, + ["lvl"] = "20-21", + }, + [1008] = { + ["coords"] = { + [1] = { 61, 75.1, 11, 300 }, + [2] = { 55.7, 74.8, 11, 300 }, + [3] = { 59.5, 72.7, 11, 300 }, + [4] = { 61.5, 72.7, 11, 300 }, + [5] = { 61.8, 72.5, 11, 300 }, + [6] = { 61.8, 72.4, 11, 300 }, + [7] = { 61.6, 72.3, 11, 300 }, + [8] = { 61.8, 72.2, 11, 300 }, + [9] = { 61.7, 72.2, 11, 300 }, + [10] = { 62.1, 69.8, 11, 300 }, + [11] = { 62.6, 69.6, 11, 300 }, + [12] = { 62.8, 69.6, 11, 300 }, + [13] = { 62.5, 69.5, 11, 300 }, + [14] = { 62.8, 69.3, 11, 300 }, + [15] = { 62.8, 68.4, 11, 300 }, + [16] = { 61.3, 67.9, 11, 300 }, + [17] = { 63.1, 65.4, 11, 300 }, + [18] = { 62.2, 64.4, 11, 300 }, + [19] = { 62.8, 64.3, 11, 300 }, + [20] = { 62, 64.3, 11, 300 }, + [21] = { 60.7, 64.3, 11, 300 }, + [22] = { 61.7, 61.5, 11, 300 }, + [23] = { 63.6, 60.5, 11, 300 }, + [24] = { 63.5, 59.9, 11, 300 }, + [25] = { 60.5, 59.4, 11, 300 }, + [26] = { 61.5, 59.1, 11, 300 }, + [27] = { 60.6, 58.5, 11, 300 }, + [28] = { 61.9, 58, 11, 300 }, + [29] = { 61.3, 57.9, 11, 300 }, + [30] = { 61.1, 57.1, 11, 300 }, + [31] = { 61.2, 55.6, 11, 300 }, + [32] = { 15.6, 36.7, 5602, 300 }, + [33] = { 11.6, 36.4, 5602, 300 }, + [34] = { 14.5, 34.8, 5602, 300 }, + [35] = { 16, 34.8, 5602, 300 }, + [36] = { 16.2, 34.7, 5602, 300 }, + [37] = { 16.2, 34.6, 5602, 300 }, + [38] = { 16.1, 34.5, 5602, 300 }, + [39] = { 16.2, 34.5, 5602, 300 }, + [40] = { 16.1, 34.4, 5602, 300 }, + [41] = { 16.5, 32.6, 5602, 300 }, + [42] = { 16.8, 32.5, 5602, 300 }, + [43] = { 17, 32.4, 5602, 300 }, + [44] = { 16.8, 32.3, 5602, 300 }, + [45] = { 17, 32.2, 5602, 300 }, + [46] = { 17, 31.5, 5602, 300 }, + [47] = { 15.8, 31.1, 5602, 300 }, + [48] = { 17.2, 29.2, 5602, 300 }, + [49] = { 16.5, 28.4, 5602, 300 }, + [50] = { 17, 28.4, 5602, 300 }, + [51] = { 16.4, 28.4, 5602, 300 }, + [52] = { 15.4, 28.4, 5602, 300 }, + [53] = { 16.2, 26.2, 5602, 300 }, + [54] = { 17.6, 25.4, 5602, 300 }, + [55] = { 17.5, 25, 5602, 300 }, + [56] = { 15.2, 24.6, 5602, 300 }, + [57] = { 16, 24.4, 5602, 300 }, + [58] = { 15.3, 23.9, 5602, 300 }, + [59] = { 16.3, 23.5, 5602, 300 }, + [60] = { 15.8, 23.4, 5602, 300 }, + [61] = { 15.7, 22.8, 5602, 300 }, + [62] = { 15.8, 21.6, 5602, 300 }, + }, + ["lvl"] = "21-22", + }, + [1009] = { + ["coords"] = { + [1] = { 62.7, 69.3, 11, 300 }, + [2] = { 61.1, 58.7, 11, 300 }, + [3] = { 61.3, 58.4, 11, 300 }, + [4] = { 61.2, 58.3, 11, 300 }, + [5] = { 45.6, 34.5, 11, 300 }, + [6] = { 39, 34, 11, 300 }, + [7] = { 45.2, 31.9, 11, 300 }, + [8] = { 16.9, 32.2, 5602, 300 }, + [9] = { 15.7, 24, 5602, 300 }, + [10] = { 15.8, 23.8, 5602, 300 }, + [11] = { 15.8, 23.7, 5602, 300 }, + [12] = { 3.8, 5.4, 5602, 300 }, + [13] = { 3.4, 3.4, 5602, 300 }, + }, + ["lvl"] = "22-23", + }, + [1010] = { + ["coords"] = { + [1] = { 61, 58.6, 11, 300 }, + [2] = { 61.3, 58.6, 11, 300 }, + [3] = { 61, 58.4, 11, 300 }, + [4] = { 63.5, 58.4, 11, 300 }, + [5] = { 61.1, 58.2, 11, 300 }, + [6] = { 59.6, 58.2, 11, 300 }, + [7] = { 62.7, 57, 11, 300 }, + [8] = { 64.5, 56.9, 11, 300 }, + [9] = { 64.9, 56.4, 11, 300 }, + [10] = { 59.6, 55.6, 11, 300 }, + [11] = { 64.5, 55.5, 11, 300 }, + [12] = { 65.1, 55.1, 11, 300 }, + [13] = { 60.7, 54.3, 11, 300 }, + [14] = { 26.5, 37.2, 11, 300 }, + [15] = { 32.3, 35.8, 11, 300 }, + [16] = { 45.7, 35.4, 11, 300 }, + [17] = { 43.6, 35.3, 11, 300 }, + [18] = { 45.2, 35, 11, 300 }, + [19] = { 44, 34.9, 11, 300 }, + [20] = { 45.6, 34.8, 11, 300 }, + [21] = { 43.7, 34.7, 11, 300 }, + [22] = { 43.2, 34.7, 11, 300 }, + [23] = { 39.7, 34.7, 11, 300 }, + [24] = { 45.9, 34.7, 11, 300 }, + [25] = { 34.6, 34.4, 11, 300 }, + [26] = { 38.7, 34.4, 11, 300 }, + [27] = { 43.2, 34.2, 11, 300 }, + [28] = { 45.3, 34.1, 11, 300 }, + [29] = { 43.7, 34.1, 11, 300 }, + [30] = { 38.8, 34, 11, 300 }, + [31] = { 39.4, 34, 11, 300 }, + [32] = { 45.3, 32.5, 11, 300 }, + [33] = { 40, 32, 11, 300 }, + [34] = { 45.7, 31.7, 11, 300 }, + [35] = { 44.7, 31.7, 11, 300 }, + [36] = { 35.4, 31.5, 11, 300 }, + [37] = { 51.2, 30.8, 11, 300 }, + [38] = { 51.5, 30.8, 11, 300 }, + [39] = { 52.5, 28.2, 11, 300 }, + [40] = { 53.1, 28, 11, 300 }, + [41] = { 52.8, 27.7, 11, 300 }, + [42] = { 52.2, 27.2, 11, 300 }, + [43] = { 53.2, 27.2, 11, 300 }, + [44] = { 15.6, 24, 5602, 300 }, + [45] = { 15.9, 24, 5602, 300 }, + [46] = { 15.6, 23.8, 5602, 300 }, + [47] = { 17.5, 23.8, 5602, 300 }, + [48] = { 15.7, 23.7, 5602, 300 }, + [49] = { 14.5, 23.6, 5602, 300 }, + [50] = { 16.9, 22.8, 5602, 300 }, + [51] = { 18.3, 22.6, 5602, 300 }, + [52] = { 18.6, 22.3, 5602, 300 }, + [53] = { 14.5, 21.7, 5602, 300 }, + [54] = { 18.3, 21.6, 5602, 300 }, + [55] = { 18.8, 21.3, 5602, 300 }, + [56] = { 15.3, 20.7, 5602, 300 }, + [57] = { 3.9, 6.1, 5602, 300 }, + [58] = { 2.3, 6, 5602, 300 }, + [59] = { 3.5, 5.8, 5602, 300 }, + [60] = { 2.6, 5.8, 5602, 300 }, + [61] = { 3.8, 5.7, 5602, 300 }, + [62] = { 2.3, 5.6, 5602, 300 }, + [63] = { 1.9, 5.6, 5602, 300 }, + [64] = { 4, 5.6, 5602, 300 }, + [65] = { 2, 5.2, 5602, 300 }, + [66] = { 3.5, 5.2, 5602, 300 }, + [67] = { 2.3, 5.1, 5602, 300 }, + [68] = { 3.6, 3.9, 5602, 300 }, + [69] = { 3.8, 3.3, 5602, 300 }, + [70] = { 3.1, 3.3, 5602, 300 }, + [71] = { 8.1, 2.6, 5602, 300 }, + [72] = { 8.3, 2.6, 5602, 300 }, + [73] = { 9.1, 0.6, 5602, 300 }, + [74] = { 9.6, 0.4, 5602, 300 }, + [75] = { 9.3, 0.2, 5602, 300 }, + }, + ["lvl"] = "22-23", + }, + [1011] = { + ["coords"] = { + [1] = { 28.5, 37.5, 11, 300 }, + [2] = { 29.9, 37.2, 11, 300 }, + [3] = { 26.7, 35.4, 11, 300 }, + [4] = { 29.5, 35.2, 11, 300 }, + [5] = { 33.1, 35.1, 11, 300 }, + [6] = { 28, 34.9, 11, 300 }, + [7] = { 36.2, 34.7, 11, 300 }, + [8] = { 43.6, 34.6, 11, 300 }, + [9] = { 44, 34.5, 11, 300 }, + [10] = { 39.4, 34.4, 11, 300 }, + [11] = { 40.9, 34, 11, 300 }, + [12] = { 32.2, 33.6, 11, 300 }, + [13] = { 31.6, 33.3, 11, 300 }, + [14] = { 33.3, 33.1, 11, 300 }, + [15] = { 43.1, 32.9, 11, 300 }, + [16] = { 42.7, 32.6, 11, 300 }, + [17] = { 31.8, 32.6, 11, 300 }, + [18] = { 42.8, 32.3, 11, 300 }, + [19] = { 31, 32.3, 11, 300 }, + [20] = { 43, 32, 11, 300 }, + [21] = { 42.6, 31.9, 11, 300 }, + [22] = { 45.1, 31.8, 11, 300 }, + [23] = { 32.5, 31.2, 11, 300 }, + [24] = { 51.5, 31, 11, 300 }, + [25] = { 51.1, 30.9, 11, 300 }, + [26] = { 41, 30.8, 11, 300 }, + [27] = { 32.8, 28.9, 11, 300 }, + [28] = { 52.9, 27.4, 11, 300 }, + [29] = { 2.2, 5.5, 5602, 300 }, + [30] = { 2.6, 5.5, 5602, 300 }, + [31] = { 0.2, 5.1, 5602, 300 }, + [32] = { 1.8, 4.2, 5602, 300 }, + [33] = { 1.6, 4, 5602, 300 }, + [34] = { 1.7, 3.8, 5602, 300 }, + [35] = { 1.8, 3.5, 5602, 300 }, + [36] = { 1.5, 3.4, 5602, 300 }, + [37] = { 3.4, 3.3, 5602, 300 }, + [38] = { 8.3, 2.7, 5602, 300 }, + [39] = { 8, 2.7, 5602, 300 }, + [40] = { 0.2, 2.6, 5602, 300 }, + }, + ["lvl"] = "23-24", + }, + [1012] = { + ["coords"] = { + [1] = { 30.8, 33.1, 11, 300 }, + [2] = { 43, 32.4, 11, 300 }, + [3] = { 29.3, 32.4, 11, 300 }, + [4] = { 42.6, 32.1, 11, 300 }, + [5] = { 38.3, 30.5, 11, 300 }, + [6] = { 38.7, 30.4, 11, 300 }, + [7] = { 31.1, 30.2, 11, 300 }, + [8] = { 37, 30.2, 11, 300 }, + [9] = { 31.9, 30.1, 11, 300 }, + [10] = { 35, 29.9, 11, 300 }, + [11] = { 31.5, 29.8, 11, 300 }, + [12] = { 28.6, 29.8, 11, 300 }, + [13] = { 38.7, 29.6, 11, 300 }, + [14] = { 28.3, 29.5, 11, 300 }, + [15] = { 32, 29.5, 11, 300 }, + [16] = { 37.1, 29.2, 11, 300 }, + [17] = { 31, 29.1, 11, 300 }, + [18] = { 31.3, 28.7, 11, 300 }, + [19] = { 38.3, 28.6, 11, 300 }, + [20] = { 40.5, 27.8, 11, 300 }, + [21] = { 34.8, 27.6, 11, 300 }, + [22] = { 35.4, 27.5, 11, 300 }, + [23] = { 39.9, 27.5, 11, 300 }, + [24] = { 39.5, 27.4, 11, 300 }, + [25] = { 35.2, 27.1, 11, 300 }, + [26] = { 40.8, 27, 11, 300 }, + [27] = { 40.1, 26.5, 11, 300 }, + [28] = { 1.7, 3.8, 5602, 300 }, + [29] = { 1.4, 3.6, 5602, 300 }, + }, + ["lvl"] = "24-25", + }, + [1015] = { + ["coords"] = { + [1] = { 57.8, 37.6, 11, 300 }, + [2] = { 57, 37.1, 11, 300 }, + [3] = { 57.5, 33.5, 11, 300 }, + [4] = { 53.1, 30.4, 11, 300 }, + [5] = { 55.7, 30, 11, 300 }, + [6] = { 51.4, 28.9, 11, 300 }, + [7] = { 56.2, 28.7, 11, 300 }, + [8] = { 56.8, 28.7, 11, 300 }, + [9] = { 54.8, 27.7, 11, 300 }, + [10] = { 49.9, 27.6, 11, 300 }, + [11] = { 55.6, 26.1, 11, 300 }, + [12] = { 54.7, 25.7, 11, 300 }, + [13] = { 52.4, 25.5, 11, 300 }, + [14] = { 55.5, 24.7, 11, 300 }, + [15] = { 40, 24.5, 11, 300 }, + [16] = { 41.6, 24.1, 11, 300 }, + [17] = { 38.5, 24.1, 11, 300 }, + [18] = { 52.5, 23.4, 11, 300 }, + [19] = { 54.4, 23.2, 11, 300 }, + [20] = { 41, 23.2, 11, 300 }, + [21] = { 40.1, 21.9, 11, 300 }, + [22] = { 41.7, 21.8, 11, 300 }, + [23] = { 13.2, 7.9, 5602, 300 }, + [24] = { 12.6, 7.4, 5602, 300 }, + [25] = { 12.9, 4.7, 5602, 300 }, + [26] = { 9.5, 2.3, 5602, 300 }, + [27] = { 11.5, 2, 5602, 300 }, + [28] = { 8.2, 1.2, 5602, 300 }, + [29] = { 11.9, 1, 5602, 300 }, + [30] = { 12.4, 1, 5602, 300 }, + [31] = { 10.9, 0.2, 5602, 300 }, + [32] = { 7.1, 0.1, 5602, 300 }, + }, + ["lvl"] = "23-24", + }, + [1016] = { + ["coords"] = { + [1] = { 57.8, 35.4, 11, 300 }, + [2] = { 59.5, 30.3, 11, 300 }, + [3] = { 56.3, 27.3, 11, 300 }, + [4] = { 57.3, 25.4, 11, 300 }, + [5] = { 35.6, 25, 11, 300 }, + [6] = { 39, 23.6, 11, 300 }, + [7] = { 57.4, 23.4, 11, 300 }, + [8] = { 38.5, 23.1, 11, 300 }, + [9] = { 61.7, 23.1, 11, 300 }, + [10] = { 56.2, 22.5, 11, 300 }, + [11] = { 61.4, 22.1, 11, 300 }, + [12] = { 30.2, 21.6, 11, 300 }, + [13] = { 30.3, 21.2, 11, 300 }, + [14] = { 39.6, 21, 11, 300 }, + [15] = { 30.1, 20.8, 11, 300 }, + [16] = { 30.6, 20.7, 11, 300 }, + [17] = { 30.7, 20.3, 11, 300 }, + [18] = { 32.2, 19.5, 11, 300 }, + [19] = { 13.1, 6.2, 5602, 300 }, + [20] = { 14.5, 2.2, 5602, 300 }, + }, + ["lvl"] = "24-25", + }, + [1017] = { + ["coords"] = { + [1] = { 56.4, 31.4, 11, 300 }, + [2] = { 57.5, 27.7, 11, 300 }, + [3] = { 56.9, 27.6, 11, 300 }, + [4] = { 58.2, 26.8, 11, 300 }, + [5] = { 37.6, 23.4, 11, 300 }, + [6] = { 37.9, 22.8, 11, 300 }, + [7] = { 37.3, 22.8, 11, 300 }, + [8] = { 36.6, 22.5, 11, 300 }, + [9] = { 37.7, 22.4, 11, 300 }, + [10] = { 35.4, 21.9, 11, 300 }, + [11] = { 58.7, 21.5, 11, 300 }, + [12] = { 59.6, 21.3, 11, 300 }, + [13] = { 58.9, 21.2, 11, 300 }, + [14] = { 34.5, 20.7, 11, 300 }, + [15] = { 37.4, 20.2, 11, 300 }, + [16] = { 38.2, 19.6, 11, 300 }, + [17] = { 37.6, 19.4, 11, 300 }, + [18] = { 33, 18.1, 11, 300 }, + [19] = { 30.4, 16.8, 11, 300 }, + [20] = { 31.2, 16.2, 11, 300 }, + [21] = { 12, 3.1, 5602, 300 }, + [22] = { 12.9, 0.2, 5602, 300 }, + [23] = { 12.4, 0.1, 5602, 300 }, + }, + ["lvl"] = "25-26", + }, + [1018] = { + ["coords"] = { + [1] = { 72, 39.9, 11, 300 }, + [2] = { 71.7, 39.1, 11, 300 }, + [3] = { 70, 38.7, 11, 300 }, + [4] = { 67.2, 38, 11, 300 }, + [5] = { 70.2, 37.9, 11, 300 }, + [6] = { 69.8, 37.4, 11, 300 }, + [7] = { 68, 36.3, 11, 300 }, + [8] = { 67.3, 36.3, 11, 300 }, + [9] = { 68, 35.8, 11, 300 }, + [10] = { 69, 35.3, 11, 300 }, + [11] = { 69.5, 34.4, 11, 300 }, + [12] = { 69.6, 33.5, 11, 300 }, + [13] = { 68.4, 33.1, 11, 300 }, + [14] = { 68.1, 32.9, 11, 300 }, + [15] = { 66.8, 32.9, 11, 300 }, + [16] = { 66.4, 32.8, 11, 300 }, + [17] = { 69.4, 32.1, 11, 300 }, + [18] = { 66.5, 31.9, 11, 300 }, + [19] = { 65.8, 31.3, 11, 300 }, + [20] = { 67.1, 30.9, 11, 300 }, + [21] = { 67.8, 30.7, 11, 300 }, + [22] = { 69.7, 30.4, 11, 300 }, + [23] = { 65.3, 30.2, 11, 300 }, + [24] = { 70.3, 30, 11, 300 }, + [25] = { 67.3, 29.5, 11, 300 }, + [26] = { 70.6, 29.2, 11, 300 }, + [27] = { 69.1, 28.8, 11, 300 }, + [28] = { 65.1, 28.7, 11, 300 }, + [29] = { 67.4, 28.6, 11, 300 }, + [30] = { 65.9, 28.6, 11, 300 }, + [31] = { 68.7, 27.8, 11, 300 }, + [32] = { 35.2, 20.4, 11, 300 }, + [33] = { 35.5, 19.5, 11, 300 }, + [34] = { 35.4, 18.7, 11, 300 }, + [35] = { 33.6, 17, 11, 300 }, + [36] = { 32.7, 15.3, 11, 300 }, + [37] = { 32.1, 14.6, 11, 300 }, + [38] = { 24.1, 9.6, 5602, 300 }, + [39] = { 23.8, 9, 5602, 300 }, + [40] = { 22.5, 8.7, 5602, 300 }, + [41] = { 20.3, 8.1, 5602, 300 }, + [42] = { 22.6, 8, 5602, 300 }, + [43] = { 22.3, 7.6, 5602, 300 }, + [44] = { 21, 6.8, 5602, 300 }, + [45] = { 20.4, 6.8, 5602, 300 }, + [46] = { 21, 6.4, 5602, 300 }, + [47] = { 21.7, 6.1, 5602, 300 }, + [48] = { 22.1, 5.3, 5602, 300 }, + [49] = { 22.2, 4.7, 5602, 300 }, + [50] = { 21.3, 4.4, 5602, 300 }, + [51] = { 21, 4.2, 5602, 300 }, + [52] = { 20.1, 4.2, 5602, 300 }, + [53] = { 19.7, 4.1, 5602, 300 }, + [54] = { 22, 3.6, 5602, 300 }, + [55] = { 19.8, 3.4, 5602, 300 }, + [56] = { 19.3, 3, 5602, 300 }, + [57] = { 20.3, 2.7, 5602, 300 }, + [58] = { 20.8, 2.5, 5602, 300 }, + [59] = { 22.3, 2.3, 5602, 300 }, + [60] = { 18.9, 2.1, 5602, 300 }, + [61] = { 22.7, 2, 5602, 300 }, + [62] = { 20.5, 1.6, 5602, 300 }, + [63] = { 23, 1.4, 5602, 300 }, + [64] = { 21.8, 1.1, 5602, 300 }, + [65] = { 18.8, 1, 5602, 300 }, + [66] = { 20.5, 0.9, 5602, 300 }, + [67] = { 19.4, 0.9, 5602, 300 }, + [68] = { 21.5, 0.3, 5602, 300 }, + }, + ["lvl"] = "27-28", + }, + [1019] = { + ["coords"] = { + [1] = { 69.3, 32.9, 11, 300 }, + [2] = { 69.9, 32.8, 11, 300 }, + [3] = { 67.9, 32.4, 11, 300 }, + [4] = { 69.9, 32, 11, 300 }, + [5] = { 70.2, 31.8, 11, 300 }, + [6] = { 69.1, 31.6, 11, 300 }, + [7] = { 67.6, 31.6, 11, 300 }, + [8] = { 68.7, 31.3, 11, 300 }, + [9] = { 70.7, 30.8, 11, 300 }, + [10] = { 69.3, 29.8, 11, 300 }, + [11] = { 69.7, 29.1, 11, 300 }, + [12] = { 70.2, 28.4, 11, 300 }, + [13] = { 69.1, 28.2, 11, 300 }, + [14] = { 67.9, 27.5, 11, 300 }, + [15] = { 40.1, 18.4, 11, 300 }, + [16] = { 39.7, 17.1, 11, 300 }, + [17] = { 38.5, 16.9, 11, 300 }, + [18] = { 38.2, 15.9, 11, 300 }, + [19] = { 38.1, 15.7, 11, 300 }, + [20] = { 33.7, 14.9, 11, 300 }, + [21] = { 33, 13, 11, 300 }, + [22] = { 34, 12.4, 11, 300 }, + [23] = { 24.7, 98.9, 45, 300 }, + [24] = { 25.8, 98.2, 45, 300 }, + [25] = { 22, 4.2, 5602, 300 }, + [26] = { 22.4, 4.1, 5602, 300 }, + [27] = { 20.9, 3.8, 5602, 300 }, + [28] = { 22.4, 3.5, 5602, 300 }, + [29] = { 22.7, 3.4, 5602, 300 }, + [30] = { 21.8, 3.2, 5602, 300 }, + [31] = { 20.6, 3.2, 5602, 300 }, + [32] = { 21.5, 3, 5602, 300 }, + [33] = { 23, 2.6, 5602, 300 }, + [34] = { 22, 1.8, 5602, 300 }, + [35] = { 22.3, 1.3, 5602, 300 }, + [36] = { 22.7, 0.7, 5602, 300 }, + [37] = { 21.8, 0.6, 5602, 300 }, + [38] = { 20.9, 0.1, 5602, 300 }, + }, + ["lvl"] = "29", + }, + [1020] = { + ["coords"] = { + [1] = { 23, 59.8, 11, 300 }, + [2] = { 23.1, 59.6, 11, 300 }, + [3] = { 22.5, 59, 11, 300 }, + [4] = { 23.2, 54.1, 11, 300 }, + [5] = { 22.2, 53.5, 11, 300 }, + [6] = { 19.8, 52.5, 11, 300 }, + [7] = { 21.4, 51.9, 11, 300 }, + [8] = { 23.3, 51.2, 11, 300 }, + [9] = { 24.1, 50.4, 11, 300 }, + [10] = { 23, 50.1, 11, 300 }, + [11] = { 25.2, 49.8, 11, 300 }, + [12] = { 20.7, 48.8, 11, 300 }, + [13] = { 24.2, 48.3, 11, 300 }, + [14] = { 26, 47.5, 11, 300 }, + [15] = { 23.9, 47.2, 11, 300 }, + [16] = { 24.6, 46.8, 11, 300 }, + [17] = { 27.2, 46.8, 11, 300 }, + [18] = { 29.5, 46.5, 11, 300 }, + [19] = { 26.4, 46.3, 11, 300 }, + [20] = { 24.3, 46.3, 11, 300 }, + [21] = { 29.7, 46.2, 11, 300 }, + [22] = { 27.2, 43.5, 11, 300 }, + [23] = { 28.1, 42.8, 11, 300 }, + [24] = { 28.8, 42.4, 11, 300 }, + [25] = { 29.5, 42.4, 11, 300 }, + [26] = { 37.1, 42.2, 11, 300 }, + [27] = { 31.5, 42.1, 11, 300 }, + }, + ["lvl"] = "22-23", + }, + [1021] = { + ["coords"] = { + [1] = { 23.7, 60.4, 11, 300 }, + [2] = { 23, 56.5, 11, 300 }, + [3] = { 23.5, 56, 11, 300 }, + [4] = { 22.6, 55.9, 11, 300 }, + [5] = { 23, 55.6, 11, 300 }, + [6] = { 24.1, 53, 11, 300 }, + [7] = { 24.2, 52.5, 11, 300 }, + [8] = { 23.9, 52.4, 11, 300 }, + [9] = { 22.8, 50.7, 11, 300 }, + [10] = { 26.2, 49.1, 11, 300 }, + [11] = { 25.8, 48.8, 11, 300 }, + [12] = { 26.1, 48.6, 11, 300 }, + [13] = { 29.4, 45.4, 11, 300 }, + [14] = { 29.8, 45.2, 11, 300 }, + [15] = { 29.9, 44.4, 11, 300 }, + [16] = { 30.2, 44.1, 11, 300 }, + }, + ["lvl"] = "24-25", + }, + [1022] = { + ["coords"] = { + [1] = { 35.6, 51.9, 11, 300 }, + [2] = { 32.8, 51, 11, 300 }, + [3] = { 34.4, 50.9, 11, 300 }, + [4] = { 35.1, 50.8, 11, 300 }, + [5] = { 35.3, 49.5, 11, 300 }, + [6] = { 35.9, 49.4, 11, 300 }, + [7] = { 30.6, 48.7, 11, 300 }, + [8] = { 31.3, 48.5, 11, 300 }, + [9] = { 36.1, 48.4, 11, 300 }, + [10] = { 31.8, 46.9, 11, 300 }, + [11] = { 34.5, 45.8, 11, 300 }, + [12] = { 33.6, 44.6, 11, 300 }, + [13] = { 35.7, 44.1, 11, 300 }, + [14] = { 34.4, 43.7, 11, 300 }, + }, + ["lvl"] = "25-26", + }, + [1023] = { + ["coords"] = { + [1] = { 33.7, 49.8, 11, 300 }, + [2] = { 34.3, 49.5, 11, 300 }, + [3] = { 32.2, 48.7, 11, 300 }, + [4] = { 33.8, 48.3, 11, 300 }, + [5] = { 32.9, 48.3, 11, 300 }, + [6] = { 34.7, 47.1, 11, 300 }, + [7] = { 33.3, 47, 11, 300 }, + [8] = { 35.2, 46.3, 11, 300 }, + [9] = { 33.6, 46.2, 11, 300 }, + }, + ["lvl"] = "26-27", + }, + [1024] = { + ["coords"] = { + [1] = { 12.7, 42.3, 11, 300 }, + [2] = { 13.5, 42.1, 11, 300 }, + [3] = { 14.2, 41.3, 11, 300 }, + [4] = { 11.9, 41.2, 11, 300 }, + [5] = { 20.7, 41.1, 11, 300 }, + [6] = { 13.2, 41.1, 11, 300 }, + [7] = { 19, 41.1, 11, 300 }, + [8] = { 17.8, 40.9, 11, 300 }, + [9] = { 15.8, 40.8, 11, 300 }, + [10] = { 14, 40.7, 11, 300 }, + [11] = { 18.6, 40.3, 11, 300 }, + [12] = { 19.8, 40, 11, 300 }, + [13] = { 16.9, 39.9, 11, 300 }, + [14] = { 13.5, 39.9, 11, 300 }, + [15] = { 10.9, 39.9, 11, 300 }, + [16] = { 15.3, 39.8, 11, 300 }, + [17] = { 12.5, 39.8, 11, 300 }, + [18] = { 14.9, 39.6, 11, 300 }, + [19] = { 12.2, 39.1, 11, 300 }, + [20] = { 15.3, 38.9, 11, 300 }, + [21] = { 15.6, 38.9, 11, 300 }, + [22] = { 15.1, 38.7, 11, 300 }, + [23] = { 19.1, 38.6, 11, 300 }, + [24] = { 15.4, 38.6, 11, 300 }, + [25] = { 18.5, 38.3, 11, 300 }, + }, + ["lvl"] = "20-21", + }, + [1025] = { + ["coords"] = { + [1] = { 13.6, 41.2, 11, 300 }, + [2] = { 18, 39.8, 11, 300 }, + [3] = { 18.4, 39.5, 11, 300 }, + [4] = { 18.6, 39.1, 11, 300 }, + [5] = { 10.3, 38.6, 11, 300 }, + [6] = { 15.2, 38.5, 11, 300 }, + [7] = { 13.7, 38.4, 11, 300 }, + [8] = { 13.3, 38.2, 11, 300 }, + [9] = { 13.5, 37.9, 11, 300 }, + [10] = { 11.2, 37.6, 11, 300 }, + [11] = { 12.7, 37, 11, 300 }, + [12] = { 13.6, 36.6, 11, 300 }, + [13] = { 10.1, 36.2, 11, 300 }, + [14] = { 12.1, 36.2, 11, 300 }, + [15] = { 14.4, 35.3, 11, 300 }, + [16] = { 11, 35.2, 11, 300 }, + [17] = { 12.8, 35, 11, 300 }, + [18] = { 13.5, 34.1, 11, 300 }, + [19] = { 15.2, 33.9, 11, 300 }, + }, + ["lvl"] = "21-22", + }, + [1028] = { + ["coords"] = { + [1] = { 23.3, 39.8, 11, 300 }, + [2] = { 22.3, 39, 11, 300 }, + [3] = { 20.8, 37.9, 11, 300 }, + [4] = { 21.9, 37.7, 11, 300 }, + [5] = { 23.1, 37.4, 11, 300 }, + [6] = { 24.8, 37.3, 11, 300 }, + [7] = { 16.2, 36.4, 11, 300 }, + [8] = { 24.4, 36.4, 11, 300 }, + [9] = { 16, 36.3, 11, 300 }, + [10] = { 20.1, 36.3, 11, 300 }, + [11] = { 16.4, 36.2, 11, 300 }, + [12] = { 16.2, 36, 11, 300 }, + [13] = { 22.6, 35.5, 11, 300 }, + [14] = { 20.8, 35.4, 11, 300 }, + [15] = { 21.5, 33.8, 11, 300 }, + [16] = { 11.9, 33.7, 11, 300 }, + [17] = { 10.4, 33.7, 11, 300 }, + [18] = { 13.1, 32.8, 11, 300 }, + [19] = { 11.1, 32.7, 11, 300 }, + [20] = { 16.6, 31.6, 11, 300 }, + [21] = { 15.2, 31.6, 11, 300 }, + [22] = { 12, 31.6, 11, 300 }, + [23] = { 11.3, 30.5, 11, 300 }, + }, + ["lvl"] = "23-24", + }, + [1030] = { + ["coords"] = { + [1] = { 56.7, 79.1, 11, 300 }, + [2] = { 61.8, 79, 11, 300 }, + [3] = { 54.4, 78.6, 11, 300 }, + [4] = { 61.8, 78.5, 11, 300 }, + [5] = { 60.6, 77.5, 11, 300 }, + [6] = { 57.7, 73.9, 11, 300 }, + [7] = { 56.7, 73.4, 11, 300 }, + [8] = { 59.1, 73.2, 11, 300 }, + [9] = { 55.3, 73, 11, 300 }, + [10] = { 54, 72.4, 11, 300 }, + [11] = { 59.1, 70.8, 11, 300 }, + [12] = { 59.4, 69.2, 11, 300 }, + [13] = { 56.3, 66.7, 11, 300 }, + [14] = { 54.6, 66.6, 11, 300 }, + [15] = { 57.2, 65.9, 11, 300 }, + [16] = { 59.8, 65.6, 11, 300 }, + [17] = { 61.6, 65.4, 11, 300 }, + [18] = { 55.4, 63.1, 11, 300 }, + [19] = { 65.4, 58.5, 11, 300 }, + [20] = { 54.9, 54.7, 11, 300 }, + [21] = { 53.3, 50.4, 11, 300 }, + [22] = { 12.3, 39.7, 5602, 300 }, + [23] = { 16.2, 39.6, 5602, 300 }, + [24] = { 10.5, 39.3, 5602, 300 }, + [25] = { 16.2, 39.3, 5602, 300 }, + [26] = { 15.3, 38.5, 5602, 300 }, + [27] = { 13.1, 35.7, 5602, 300 }, + [28] = { 12.3, 35.3, 5602, 300 }, + [29] = { 14.1, 35.2, 5602, 300 }, + [30] = { 11.2, 35, 5602, 300 }, + [31] = { 10.3, 34.6, 5602, 300 }, + [32] = { 14.2, 33.4, 5602, 300 }, + [33] = { 14.4, 32.1, 5602, 300 }, + [34] = { 12, 30.2, 5602, 300 }, + [35] = { 10.7, 30.1, 5602, 300 }, + [36] = { 12.7, 29.6, 5602, 300 }, + [37] = { 14.7, 29.4, 5602, 300 }, + [38] = { 16, 29.2, 5602, 300 }, + [39] = { 11.3, 27.4, 5602, 300 }, + [40] = { 19, 23.9, 5602, 300 }, + [41] = { 10.9, 20.9, 5602, 300 }, + [42] = { 9.7, 17.6, 5602, 300 }, + }, + ["lvl"] = "20-21", + }, + [1031] = { + ["coords"] = { + [1] = { 44.2, 25.4, 11, 300 }, + [2] = { 44.7, 25.4, 11, 300 }, + [3] = { 43.8, 25.2, 11, 300 }, + [4] = { 44.6, 24.8, 11, 300 }, + [5] = { 44.3, 24.7, 11, 300 }, + [6] = { 44.8, 24.3, 11, 300 }, + [7] = { 44.6, 24.2, 11, 300 }, + [8] = { 44, 24.2, 11, 300 }, + }, + ["lvl"] = "24-25", + }, + [1032] = { + ["coords"] = { + [1] = { 22.9, 59.5, 11, 300 }, + [2] = { 21.3, 52.2, 11, 300 }, + [3] = { 65.6, 51.6, 11, 300 }, + [4] = { 64.2, 49.7, 11, 300 }, + [5] = { 23.9, 48.4, 11, 300 }, + [6] = { 65, 46.1, 11, 300 }, + [7] = { 28.3, 45.7, 11, 300 }, + [8] = { 58.8, 44.9, 11, 300 }, + [9] = { 63.7, 44.6, 11, 300 }, + [10] = { 57.1, 44.5, 11, 300 }, + [11] = { 61.7, 44.3, 11, 300 }, + [12] = { 59.5, 40.1, 11, 300 }, + [13] = { 61.9, 37.5, 11, 300 }, + [14] = { 56.8, 33.7, 11, 300 }, + [15] = { 57, 31.2, 11, 300 }, + [16] = { 56.8, 29.5, 11, 300 }, + [17] = { 43.2, 29.2, 11, 300 }, + [18] = { 58.9, 28.9, 11, 300 }, + [19] = { 43.3, 28, 11, 300 }, + [20] = { 44, 27.8, 11, 300 }, + [21] = { 47.4, 27.7, 11, 300 }, + [22] = { 43.7, 26.7, 11, 300 }, + [23] = { 46.7, 26.6, 11, 300 }, + [24] = { 44.2, 26.5, 11, 300 }, + [25] = { 45, 26.5, 11, 300 }, + [26] = { 42.9, 26.4, 11, 300 }, + [27] = { 44.2, 25.6, 11, 300 }, + [28] = { 43.5, 25.5, 11, 300 }, + [29] = { 44.8, 25.5, 11, 300 }, + [30] = { 47.4, 25.4, 11, 300 }, + [31] = { 56, 25.1, 11, 300 }, + [32] = { 46.4, 24.8, 11, 300 }, + [33] = { 48.1, 24.6, 11, 300 }, + [34] = { 43.5, 24.6, 11, 300 }, + [35] = { 44.9, 24.4, 11, 300 }, + [36] = { 44.4, 24.4, 11, 300 }, + [37] = { 19.1, 18.6, 5602, 300 }, + [38] = { 18, 17.1, 5602, 300 }, + [39] = { 18.6, 14.4, 5602, 300 }, + [40] = { 13.9, 13.4, 5602, 300 }, + [41] = { 17.6, 13.2, 5602, 300 }, + [42] = { 12.6, 13.1, 5602, 300 }, + [43] = { 16.2, 12.9, 5602, 300 }, + [44] = { 14.5, 9.8, 5602, 300 }, + [45] = { 16.3, 7.7, 5602, 300 }, + [46] = { 12.4, 4.9, 5602, 300 }, + [47] = { 12.5, 2.9, 5602, 300 }, + [48] = { 12.4, 1.6, 5602, 300 }, + [49] = { 1.9, 1.3, 5602, 300 }, + [50] = { 14, 1.1, 5602, 300 }, + [51] = { 2, 0.4, 5602, 300 }, + [52] = { 2.6, 0.3, 5602, 300 }, + [53] = { 5.2, 0.2, 5602, 300 }, + }, + ["lvl"] = "23-24", + }, + [1033] = { + ["coords"] = { + [1] = { 69, 52.6, 11, 300 }, + [2] = { 70.2, 51.1, 11, 300 }, + [3] = { 69.9, 47.2, 11, 300 }, + [4] = { 67.9, 46.7, 11, 300 }, + [5] = { 66.7, 46.3, 11, 300 }, + [6] = { 69.9, 43.5, 11, 300 }, + [7] = { 67.1, 42.9, 11, 300 }, + [8] = { 65.2, 42.1, 11, 300 }, + [9] = { 64.9, 36.9, 11, 300 }, + [10] = { 62.5, 35.1, 11, 300 }, + [11] = { 43.9, 25.5, 11, 300 }, + [12] = { 44, 25.3, 11, 300 }, + [13] = { 44.5, 24.9, 11, 300 }, + [14] = { 44.8, 24.8, 11, 300 }, + [15] = { 44, 24.7, 11, 300 }, + [16] = { 44.6, 24.5, 11, 300 }, + [17] = { 43.9, 24.3, 11, 300 }, + [18] = { 43.8, 24.1, 11, 300 }, + [19] = { 21.7, 19.3, 5602, 300 }, + [20] = { 22.6, 18.2, 5602, 300 }, + [21] = { 22.4, 15.2, 5602, 300 }, + [22] = { 20.9, 14.8, 5602, 300 }, + [23] = { 20, 14.5, 5602, 300 }, + [24] = { 22.4, 12.4, 5602, 300 }, + [25] = { 20.3, 11.9, 5602, 300 }, + [26] = { 18.9, 11.3, 5602, 300 }, + [27] = { 18.6, 7.3, 5602, 300 }, + [28] = { 16.8, 5.9, 5602, 300 }, + }, + ["lvl"] = "25-26", + }, + [1034] = { + ["coords"] = { + [1] = { 48.9, 48.5, 11, 300 }, + [2] = { 49.9, 48.4, 11, 300 }, + [3] = { 47, 48.3, 11, 300 }, + [4] = { 50.5, 48.2, 11, 300 }, + [5] = { 47.7, 48.1, 11, 300 }, + [6] = { 48.4, 47.6, 11, 300 }, + [7] = { 45.5, 47.5, 11, 300 }, + [8] = { 51.1, 47.3, 11, 300 }, + [9] = { 47.4, 47.3, 11, 300 }, + [10] = { 39.5, 47, 11, 300 }, + [11] = { 47.3, 47, 11, 300 }, + [12] = { 40.2, 46.7, 11, 300 }, + [13] = { 46.6, 46.5, 11, 300 }, + [14] = { 45.2, 46.5, 11, 300 }, + [15] = { 46.3, 46.4, 11, 300 }, + [16] = { 41, 46.4, 11, 300 }, + [17] = { 44.6, 46.4, 11, 300 }, + [18] = { 46.6, 46.3, 11, 300 }, + [19] = { 47.8, 46.3, 11, 300 }, + [20] = { 51.2, 46.2, 11, 300 }, + [21] = { 47.1, 46.1, 11, 300 }, + [22] = { 52.3, 46, 11, 300 }, + [23] = { 46.2, 46, 11, 300 }, + [24] = { 46.1, 45.6, 11, 300 }, + [25] = { 41.6, 45.6, 11, 300 }, + [26] = { 41, 45.5, 11, 300 }, + [27] = { 45.8, 45.4, 11, 300 }, + [28] = { 44.8, 45.3, 11, 300 }, + [29] = { 46.8, 45.3, 11, 300 }, + [30] = { 46.3, 45.2, 11, 300 }, + [31] = { 45.8, 45.1, 11, 300 }, + [32] = { 47.7, 44.9, 11, 300 }, + [33] = { 52.1, 44.8, 11, 300 }, + [34] = { 44.9, 44.7, 11, 300 }, + [35] = { 44.3, 44.7, 11, 300 }, + [36] = { 42.2, 44.6, 11, 300 }, + [37] = { 46.2, 44.2, 11, 300 }, + [38] = { 44.6, 43.8, 11, 300 }, + [39] = { 44.1, 43.6, 11, 300 }, + [40] = { 45.3, 43.5, 11, 300 }, + [41] = { 42.4, 43.5, 11, 300 }, + [42] = { 43.7, 43.5, 11, 300 }, + [43] = { 46.3, 43.3, 11, 300 }, + [44] = { 44.1, 43.1, 11, 300 }, + [45] = { 45.4, 43, 11, 300 }, + [46] = { 44.9, 43, 11, 300 }, + [47] = { 43.7, 42.8, 11, 300 }, + [48] = { 42.4, 42.7, 11, 300 }, + [49] = { 45.1, 42.6, 11, 300 }, + [50] = { 45.3, 42.5, 11, 300 }, + [51] = { 44.8, 42, 11, 300 }, + [52] = { 46.1, 42, 11, 300 }, + [53] = { 43.2, 40.9, 11, 300 }, + [54] = { 41.9, 40.6, 11, 300 }, + [55] = { 41, 40, 11, 300 }, + [56] = { 42.5, 39.9, 11, 300 }, + [57] = { 6.3, 16.2, 5602, 300 }, + [58] = { 7, 16.1, 5602, 300 }, + [59] = { 4.9, 16.1, 5602, 300 }, + [60] = { 7.5, 16, 5602, 300 }, + [61] = { 5.4, 15.9, 5602, 300 }, + [62] = { 5.9, 15.5, 5602, 300 }, + [63] = { 3.7, 15.4, 5602, 300 }, + [64] = { 8, 15.3, 5602, 300 }, + [65] = { 5.1, 15.3, 5602, 300 }, + [66] = { 5.2, 15.3, 5602, 300 }, + [67] = { 5.1, 15, 5602, 300 }, + [68] = { 4.5, 14.7, 5602, 300 }, + [69] = { 3.4, 14.7, 5602, 300 }, + [70] = { 4.3, 14.6, 5602, 300 }, + [71] = { 0.3, 14.6, 5602, 300 }, + [72] = { 3, 14.6, 5602, 300 }, + [73] = { 4.5, 14.5, 5602, 300 }, + [74] = { 5.4, 14.5, 5602, 300 }, + [75] = { 8.1, 14.5, 5602, 300 }, + [76] = { 5, 14.4, 5602, 300 }, + [77] = { 8.9, 14.3, 5602, 300 }, + [78] = { 4.2, 14.3, 5602, 300 }, + [79] = { 4.2, 14, 5602, 300 }, + [80] = { 0.7, 14, 5602, 300 }, + [81] = { 0.2, 13.9, 5602, 300 }, + [82] = { 4, 13.8, 5602, 300 }, + [83] = { 3.2, 13.8, 5602, 300 }, + [84] = { 4.7, 13.7, 5602, 300 }, + [85] = { 4.3, 13.7, 5602, 300 }, + [86] = { 3.9, 13.6, 5602, 300 }, + [87] = { 5.4, 13.5, 5602, 300 }, + [88] = { 8.8, 13.4, 5602, 300 }, + [89] = { 3.3, 13.3, 5602, 300 }, + [90] = { 2.8, 13.3, 5602, 300 }, + [91] = { 1.1, 13.2, 5602, 300 }, + [92] = { 4.2, 12.9, 5602, 300 }, + [93] = { 3, 12.6, 5602, 300 }, + [94] = { 2.6, 12.4, 5602, 300 }, + [95] = { 3.6, 12.3, 5602, 300 }, + [96] = { 1.3, 12.3, 5602, 300 }, + [97] = { 2.3, 12.3, 5602, 300 }, + [98] = { 4.3, 12.2, 5602, 300 }, + [99] = { 2.6, 12, 5602, 300 }, + [100] = { 3.6, 12, 5602, 300 }, + [101] = { 3.2, 11.9, 5602, 300 }, + [102] = { 2.3, 11.9, 5602, 300 }, + [103] = { 1.3, 11.7, 5602, 300 }, + [104] = { 3.4, 11.7, 5602, 300 }, + [105] = { 3.6, 11.6, 5602, 300 }, + [106] = { 3.2, 11.2, 5602, 300 }, + [107] = { 4.1, 11.2, 5602, 300 }, + [108] = { 2, 10.4, 5602, 300 }, + [109] = { 0.9, 10.2, 5602, 300 }, + [110] = { 0.2, 9.6, 5602, 300 }, + [111] = { 1.4, 9.6, 5602, 300 }, + }, + ["lvl"] = "26-27", + }, + [1035] = { + ["coords"] = { + [1] = { 53.5, 54.2, 11, 300 }, + [2] = { 50.7, 49.5, 11, 300 }, + [3] = { 47.9, 48.6, 11, 300 }, + [4] = { 45.9, 46.9, 11, 300 }, + [5] = { 50.1, 46.7, 11, 300 }, + [6] = { 38.5, 46.3, 11, 300 }, + [7] = { 38.6, 46, 11, 300 }, + [8] = { 45.8, 45.8, 11, 300 }, + [9] = { 49.8, 44.7, 11, 300 }, + [10] = { 50.4, 44.5, 11, 300 }, + [11] = { 45.4, 42.9, 11, 300 }, + [12] = { 9.9, 20.6, 5602, 300 }, + [13] = { 7.7, 17, 5602, 300 }, + [14] = { 5.5, 16.3, 5602, 300 }, + [15] = { 4, 15, 5602, 300 }, + [16] = { 7.2, 14.8, 5602, 300 }, + [17] = { 3.9, 14.1, 5602, 300 }, + [18] = { 7, 13.3, 5602, 300 }, + [19] = { 7.4, 13.1, 5602, 300 }, + [20] = { 3.6, 11.9, 5602, 300 }, + }, + ["lvl"] = "27-28", + }, + [1036] = { + ["coords"] = { + [1] = { 53.7, 54.6, 11, 300 }, + [2] = { 53.4, 54.1, 11, 300 }, + [3] = { 53.3, 54.1, 11, 300 }, + [4] = { 52.5, 53.6, 11, 300 }, + [5] = { 49.4, 46.2, 11, 300 }, + [6] = { 49.5, 46.1, 11, 300 }, + [7] = { 10, 20.9, 5602, 300 }, + [8] = { 9.8, 20.5, 5602, 300 }, + [9] = { 9.6, 20.5, 5602, 300 }, + [10] = { 9.1, 20.1, 5602, 300 }, + [11] = { 6.7, 14.4, 5602, 300 }, + [12] = { 6.8, 14.4, 5602, 300 }, + }, + ["lvl"] = "28-29", + }, + [1037] = { + ["coords"] = { + [1] = { 43, 43.7, 11, 27000 }, + [2] = { 1.8, 12.5, 5602, 27000 }, + }, + ["lvl"] = "30", + ["rnk"] = "4", + }, + [1038] = { + ["coords"] = { + [1] = { 53, 55.3, 11, 300 }, + [2] = { 53.9, 54.4, 11, 300 }, + [3] = { 53.7, 54.4, 11, 300 }, + [4] = { 52.5, 53.9, 11, 300 }, + [5] = { 53.1, 53.2, 11, 300 }, + [6] = { 49.6, 46.4, 11, 300 }, + [7] = { 9.4, 21.5, 5602, 300 }, + [8] = { 10.2, 20.7, 5602, 300 }, + [9] = { 10, 20.7, 5602, 300 }, + [10] = { 9.1, 20.3, 5602, 300 }, + [11] = { 9.5, 19.8, 5602, 300 }, + [12] = { 6.9, 14.6, 5602, 300 }, + }, + ["lvl"] = "28-29", + }, + [1039] = { + ["coords"] = { + [1] = { 60.9, 70, 11, 300 }, + [2] = { 63.8, 65.4, 11, 300 }, + [3] = { 60.1, 61.8, 11, 300 }, + [4] = { 62.4, 59.5, 11, 300 }, + [5] = { 60, 56.8, 11, 300 }, + [6] = { 60.2, 50.8, 11, 300 }, + [7] = { 19.7, 48.4, 11, 300 }, + [8] = { 16.1, 47.7, 11, 300 }, + [9] = { 17.9, 46.7, 11, 300 }, + [10] = { 21.1, 45.3, 11, 300 }, + [11] = { 22.7, 45.1, 11, 300 }, + [12] = { 20.5, 42.1, 11, 300 }, + [13] = { 17.1, 42, 11, 300 }, + [14] = { 16.6, 41.4, 11, 300 }, + [15] = { 29.5, 28.1, 11, 300 }, + [16] = { 32, 27.3, 11, 300 }, + [17] = { 31.3, 22.2, 11, 300 }, + [18] = { 15.5, 32.7, 5602, 300 }, + [19] = { 17.7, 29.2, 5602, 300 }, + [20] = { 14.9, 26.4, 5602, 300 }, + [21] = { 16.6, 24.6, 5602, 300 }, + [22] = { 14.8, 22.6, 5602, 300 }, + [23] = { 15, 17.9, 5602, 300 }, + }, + ["lvl"] = "20-21", + }, + [1040] = { + ["coords"] = { + [1] = { 55, 46.4, 11, 300 }, + [2] = { 54, 41.4, 11, 300 }, + [3] = { 27.2, 39.2, 11, 300 }, + [4] = { 55, 37.2, 11, 300 }, + [5] = { 27.4, 37.1, 11, 300 }, + [6] = { 53.2, 36.5, 11, 300 }, + [7] = { 25.3, 35.5, 11, 300 }, + [8] = { 35.6, 33.4, 11, 300 }, + [9] = { 37.4, 33.4, 11, 300 }, + [10] = { 40.6, 32.9, 11, 300 }, + [11] = { 47.6, 32.8, 11, 300 }, + [12] = { 23.6, 32, 11, 300 }, + [13] = { 25.8, 31.9, 11, 300 }, + [14] = { 22.5, 30, 11, 300 }, + [15] = { 46.4, 29.2, 11, 300 }, + [16] = { 20.8, 28.4, 11, 300 }, + [17] = { 18.5, 27.7, 11, 300 }, + [18] = { 33, 25.7, 11, 300 }, + [19] = { 28.9, 20.5, 11, 300 }, + [20] = { 11, 14.6, 5602, 300 }, + [21] = { 10.2, 10.7, 5602, 300 }, + [22] = { 11, 7.5, 5602, 300 }, + [23] = { 9.6, 7, 5602, 300 }, + [24] = { 5.3, 4.1, 5602, 300 }, + [25] = { 4.4, 1.4, 5602, 300 }, + }, + ["lvl"] = "24-25", + }, + [1042] = { + ["coords"] = { + [1] = { 66.7, 54.2, 11, 300 }, + [2] = { 65.8, 53.4, 11, 300 }, + [3] = { 64.3, 52, 11, 300 }, + [4] = { 62.7, 51.6, 11, 300 }, + [5] = { 63.7, 50.8, 11, 300 }, + [6] = { 63.4, 48.8, 11, 300 }, + [7] = { 63.5, 48.7, 11, 300 }, + [8] = { 62, 46.6, 11, 300 }, + [9] = { 59.6, 45.8, 11, 300 }, + [10] = { 59.6, 44.1, 11, 300 }, + [11] = { 59.8, 40.9, 11, 300 }, + [12] = { 60.4, 40.5, 11, 300 }, + [13] = { 59.5, 39.2, 11, 300 }, + [14] = { 20, 20.6, 5602, 300 }, + [15] = { 19.3, 19.9, 5602, 300 }, + [16] = { 18.1, 18.9, 5602, 300 }, + [17] = { 16.9, 18.6, 5602, 300 }, + [18] = { 17.6, 18, 5602, 300 }, + [19] = { 17.5, 16.4, 5602, 300 }, + [20] = { 16.3, 14.8, 5602, 300 }, + [21] = { 14.6, 14.2, 5602, 300 }, + [22] = { 14.5, 12.8, 5602, 300 }, + [23] = { 14.6, 10.4, 5602, 300 }, + [24] = { 15.1, 10, 5602, 300 }, + [25] = { 14.5, 9, 5602, 300 }, + }, + ["lvl"] = "23-24", + }, + [1043] = { + ["coords"] = { + [1] = { 90, 64.7, 11, 300 }, + [2] = { 87.6, 60, 11, 120 }, + [3] = { 88.1, 55.2, 11, 120 }, + [4] = { 88.4, 53.1, 11, 120 }, + [5] = { 67.5, 52.5, 11, 300 }, + [6] = { 67.1, 51.9, 11, 300 }, + [7] = { 69.1, 51.4, 11, 300 }, + [8] = { 85.6, 51.3, 11, 120 }, + [9] = { 65.9, 51.2, 11, 300 }, + [10] = { 68.1, 50.7, 11, 300 }, + [11] = { 65.1, 49.5, 11, 300 }, + [12] = { 66.9, 49.3, 11, 300 }, + [13] = { 81.5, 49.1, 11, 120 }, + [14] = { 64.8, 48.7, 11, 300 }, + [15] = { 66.5, 48.5, 11, 300 }, + [16] = { 83.3, 48.5, 11, 120 }, + [17] = { 64.2, 47.6, 11, 300 }, + [18] = { 63.7, 47.5, 11, 300 }, + [19] = { 79.3, 46.6, 11, 120 }, + [20] = { 62.2, 45.8, 11, 300 }, + [21] = { 77.3, 45.4, 11, 300 }, + [22] = { 60.9, 44.3, 11, 300 }, + [23] = { 62.4, 44.2, 11, 300 }, + [24] = { 61.9, 41.6, 11, 300 }, + [25] = { 61, 40.5, 11, 300 }, + [26] = { 61.8, 40.1, 11, 300 }, + [27] = { 61.3, 38.3, 11, 300 }, + [28] = { 62.6, 37.3, 11, 300 }, + [29] = { 61, 36.8, 11, 300 }, + [30] = { 59.5, 32.7, 11, 300 }, + [31] = { 37.8, 28.6, 5602, 300 }, + [32] = { 36, 25, 5602, 120 }, + [33] = { 36.4, 21.4, 5602, 120 }, + [34] = { 36.6, 19.8, 5602, 120 }, + [35] = { 20.6, 19.3, 5602, 300 }, + [36] = { 20.3, 18.8, 5602, 300 }, + [37] = { 21.8, 18.4, 5602, 300 }, + [38] = { 34.5, 18.4, 5602, 120 }, + [39] = { 19.4, 18.2, 5602, 300 }, + [40] = { 21, 17.9, 5602, 300 }, + [41] = { 18.8, 17, 5602, 300 }, + [42] = { 20.1, 16.8, 5602, 300 }, + [43] = { 31.3, 16.7, 5602, 120 }, + [44] = { 18.5, 16.4, 5602, 300 }, + [45] = { 19.8, 16.2, 5602, 300 }, + [46] = { 32.7, 16.2, 5602, 120 }, + [47] = { 18.1, 15.5, 5602, 300 }, + [48] = { 17.7, 15.5, 5602, 300 }, + [49] = { 29.7, 14.8, 5602, 120 }, + [50] = { 16.5, 14.1, 5602, 300 }, + [51] = { 28.1, 13.8, 5602, 300 }, + [52] = { 15.5, 13, 5602, 300 }, + [53] = { 16.7, 12.9, 5602, 300 }, + [54] = { 16.3, 10.9, 5602, 300 }, + [55] = { 15.6, 10, 5602, 300 }, + [56] = { 16.2, 9.7, 5602, 300 }, + [57] = { 15.8, 8.3, 5602, 300 }, + [58] = { 16.8, 7.6, 5602, 300 }, + [59] = { 15.6, 7.2, 5602, 300 }, + [60] = { 14.5, 4.1, 5602, 300 }, + }, + ["lvl"] = "24-25", + }, + [1044] = { + ["coords"] = { + [1] = { 89.5, 63.9, 11, 300 }, + [2] = { 87.2, 63, 11, 300 }, + [3] = { 89.2, 59.2, 11, 120 }, + [4] = { 89, 56.9, 11, 120 }, + [5] = { 87.1, 55.5, 11, 120 }, + [6] = { 86.6, 52.2, 11, 120 }, + [7] = { 82.5, 49.4, 11, 120 }, + [8] = { 70.8, 48.5, 11, 300 }, + [9] = { 80.6, 47.8, 11, 120 }, + [10] = { 71.6, 47.4, 11, 300 }, + [11] = { 78.1, 47, 11, 300 }, + [12] = { 70.4, 45, 11, 300 }, + [13] = { 78.8, 44.9, 11, 120 }, + [14] = { 77.8, 44.7, 11, 120 }, + [15] = { 67.6, 43.1, 11, 300 }, + [16] = { 66.6, 42.9, 11, 300 }, + [17] = { 66.5, 41.5, 11, 300 }, + [18] = { 64.3, 39.7, 11, 300 }, + [19] = { 64.2, 37.9, 11, 300 }, + [20] = { 63.4, 36.5, 11, 300 }, + [21] = { 64.1, 31.8, 11, 300 }, + [22] = { 37.5, 28, 5602, 300 }, + [23] = { 35.7, 27.4, 5602, 300 }, + [24] = { 37.3, 24.5, 5602, 120 }, + [25] = { 37.1, 22.7, 5602, 120 }, + [26] = { 35.7, 21.6, 5602, 120 }, + [27] = { 35.2, 19.1, 5602, 120 }, + [28] = { 32.1, 16.9, 5602, 120 }, + [29] = { 23.1, 16.2, 5602, 300 }, + [30] = { 30.7, 15.6, 5602, 120 }, + [31] = { 23.7, 15.4, 5602, 300 }, + [32] = { 28.7, 15.1, 5602, 300 }, + [33] = { 22.8, 13.5, 5602, 300 }, + [34] = { 29.2, 13.5, 5602, 120 }, + [35] = { 28.5, 13.2, 5602, 120 }, + [36] = { 20.7, 12.1, 5602, 300 }, + [37] = { 19.9, 11.9, 5602, 300 }, + [38] = { 19.9, 10.8, 5602, 300 }, + [39] = { 18.1, 9.4, 5602, 300 }, + [40] = { 18, 8.1, 5602, 300 }, + [41] = { 17.5, 7, 5602, 300 }, + [42] = { 18, 3.3, 5602, 300 }, + }, + ["lvl"] = "26-27", + }, + [1045] = { + ["coords"] = { + [1] = { 86.6, 68.2, 11, 300 }, + [2] = { 86.1, 66.2, 11, 300 }, + [3] = { 35.3, 31.4, 5602, 300 }, + [4] = { 34.9, 29.8, 5602, 300 }, + }, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [1046] = { + ["coords"] = { + [1] = { 85.5, 71.2, 11, 300 }, + [2] = { 84.9, 71, 11, 300 }, + [3] = { 85.9, 70.6, 11, 300 }, + [4] = { 84.5, 69.1, 11, 300 }, + [5] = { 87.4, 68.4, 11, 300 }, + [6] = { 87.2, 67.6, 11, 300 }, + [7] = { 85.8, 67.4, 11, 300 }, + [8] = { 86.1, 66.8, 11, 300 }, + [9] = { 34.4, 33.7, 5602, 300 }, + [10] = { 34, 33.5, 5602, 300 }, + [11] = { 34.7, 33.2, 5602, 300 }, + [12] = { 33.6, 32.1, 5602, 300 }, + [13] = { 35.8, 31.5, 5602, 300 }, + [14] = { 35.7, 30.9, 5602, 300 }, + [15] = { 34.7, 30.8, 5602, 300 }, + [16] = { 34.8, 30.3, 5602, 300 }, + }, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [1047] = { + ["coords"] = { + [1] = { 86.2, 70.1, 11, 300 }, + [2] = { 85.4, 68.8, 11, 300 }, + [3] = { 84.7, 68.1, 11, 300 }, + [4] = { 34.9, 32.8, 5602, 300 }, + [5] = { 34.3, 31.8, 5602, 300 }, + [6] = { 33.8, 31.3, 5602, 300 }, + }, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [1048] = { + ["coords"] = { + [1] = { 70.6, 79.5, 11, 120 }, + [2] = { 71.6, 77.9, 11, 300 }, + [3] = { 70.7, 76, 11, 300 }, + [4] = { 72.3, 75.9, 11, 300 }, + [5] = { 74.4, 74.2, 11, 300 }, + [6] = { 75.6, 73.7, 11, 300 }, + [7] = { 71.2, 73.3, 11, 300 }, + [8] = { 77, 73.2, 11, 300 }, + [9] = { 72.2, 72.8, 11, 120 }, + [10] = { 84.7, 72.2, 11, 300 }, + [11] = { 81.9, 71.7, 11, 300 }, + [12] = { 83.6, 71.4, 11, 300 }, + [13] = { 82.4, 69.7, 11, 300 }, + [14] = { 83.3, 68.5, 11, 300 }, + [15] = { 22.9, 40, 5602, 120 }, + [16] = { 23.7, 38.8, 5602, 300 }, + [17] = { 23.1, 37.4, 5602, 300 }, + [18] = { 24.2, 37.2, 5602, 300 }, + [19] = { 25.9, 36, 5602, 300 }, + [20] = { 26.8, 35.6, 5602, 300 }, + [21] = { 23.4, 35.3, 5602, 300 }, + [22] = { 27.9, 35.2, 5602, 300 }, + [23] = { 24.2, 34.9, 5602, 120 }, + [24] = { 33.8, 34.4, 5602, 300 }, + [25] = { 31.6, 34, 5602, 300 }, + [26] = { 32.9, 33.8, 5602, 300 }, + [27] = { 32, 32.5, 5602, 300 }, + [28] = { 32.7, 31.6, 5602, 300 }, + }, + ["lvl"] = "60-61", + ["rnk"] = "1", + }, + [1049] = { + ["coords"] = { + [1] = { 72.8, 78.3, 11, 120 }, + [2] = { 74.1, 75.9, 11, 120 }, + [3] = { 75.3, 75.7, 11, 300 }, + [4] = { 71.4, 74.7, 11, 300 }, + [5] = { 76.6, 74.5, 11, 300 }, + [6] = { 73, 74.1, 11, 300 }, + [7] = { 82.9, 71.9, 11, 300 }, + [8] = { 84.2, 70.8, 11, 300 }, + [9] = { 81.9, 69.4, 11, 300 }, + [10] = { 82.8, 68.7, 11, 300 }, + [11] = { 24.7, 39.1, 5602, 120 }, + [12] = { 25.7, 37.3, 5602, 120 }, + [13] = { 26.6, 37.1, 5602, 300 }, + [14] = { 23.6, 36.4, 5602, 300 }, + [15] = { 27.6, 36.2, 5602, 300 }, + [16] = { 24.8, 35.9, 5602, 300 }, + [17] = { 32.4, 34.2, 5602, 300 }, + [18] = { 33.4, 33.3, 5602, 300 }, + [19] = { 31.6, 32.3, 5602, 300 }, + [20] = { 32.3, 31.8, 5602, 300 }, + }, + ["lvl"] = "61-62", + ["rnk"] = "1", + }, + [1050] = { + ["coords"] = { + [1] = { 78.4, 73.4, 11, 300 }, + [2] = { 79.1, 73.1, 11, 300 }, + [3] = { 80.1, 72.2, 11, 300 }, + [4] = { 78.2, 72, 11, 300 }, + [5] = { 76.5, 72, 11, 300 }, + [6] = { 78.9, 71.8, 11, 300 }, + [7] = { 82, 71.4, 11, 600 }, + [8] = { 84.6, 71.1, 11, 600 }, + [9] = { 79.8, 70.9, 11, 300 }, + [10] = { 86.6, 69.5, 11, 600 }, + [11] = { 82, 69.3, 11, 600 }, + [12] = { 84.4, 69.1, 11, 600 }, + [13] = { 85.4, 67.8, 11, 600 }, + [14] = { 29, 35.3, 5602, 300 }, + [15] = { 29.5, 35.1, 5602, 300 }, + [16] = { 30.2, 34.4, 5602, 300 }, + [17] = { 28.8, 34.3, 5602, 300 }, + [18] = { 27.5, 34.3, 5602, 300 }, + [19] = { 29.4, 34.1, 5602, 300 }, + [20] = { 31.7, 33.8, 5602, 600 }, + [21] = { 33.7, 33.6, 5602, 600 }, + [22] = { 30, 33.4, 5602, 300 }, + [23] = { 35.3, 32.4, 5602, 600 }, + [24] = { 31.7, 32.2, 5602, 600 }, + [25] = { 33.5, 32, 5602, 600 }, + [26] = { 34.3, 31.1, 5602, 600 }, + }, + ["lvl"] = "61-62", + ["rnk"] = "1", + }, + [1051] = { + ["coords"] = { + [1] = { 63, 29.6, 11, 300 }, + [2] = { 62.3, 29.6, 11, 300 }, + [3] = { 62, 28.7, 11, 300 }, + [4] = { 59.8, 25.3, 11, 300 }, + [5] = { 60.5, 24.9, 11, 300 }, + [6] = { 59.5, 23.8, 11, 300 }, + [7] = { 60.3, 23.6, 11, 300 }, + [8] = { 59.9, 23, 11, 300 }, + [9] = { 48.2, 17.7, 11, 300 }, + [10] = { 48.9, 17.4, 11, 300 }, + [11] = { 48.1, 17.3, 11, 300 }, + [12] = { 49, 17.1, 11, 300 }, + [13] = { 47.6, 17, 11, 300 }, + [14] = { 48, 16.6, 11, 300 }, + [15] = { 48.5, 16.2, 11, 300 }, + [16] = { 47.2, 15.7, 11, 300 }, + [17] = { 17.1, 1.6, 5602, 300 }, + [18] = { 16.6, 1.6, 5602, 300 }, + [19] = { 16.4, 0.9, 5602, 300 }, + }, + ["lvl"] = "27-28", + ["rnk"] = "1", + }, + [1052] = { + ["coords"] = { + [1] = { 63.3, 28.8, 11, 300 }, + [2] = { 62, 27.6, 11, 300 }, + [3] = { 62.9, 27.4, 11, 300 }, + [4] = { 62, 26.6, 11, 300 }, + [5] = { 61.9, 26, 11, 300 }, + [6] = { 59.9, 24.5, 11, 300 }, + [7] = { 48.1, 18.6, 11, 300 }, + [8] = { 48.1, 18.1, 11, 300 }, + [9] = { 46.7, 17.2, 11, 300 }, + [10] = { 47.1, 17.1, 11, 300 }, + [11] = { 46.8, 16.4, 11, 300 }, + [12] = { 46.4, 16.2, 11, 300 }, + [13] = { 47.7, 16.1, 11, 300 }, + [14] = { 48.1, 15.7, 11, 300 }, + [15] = { 48.1, 15.2, 11, 300 }, + [16] = { 45.2, 93.4, 45, 400 }, + [17] = { 45.2, 93.1, 45, 400 }, + [18] = { 17.3, 1, 5602, 300 }, + [19] = { 16.4, 0.1, 5602, 300 }, + }, + ["lvl"] = "28-29", + ["rnk"] = "1", + }, + [1053] = { + ["coords"] = { + [1] = { 61.6, 27.3, 11, 300 }, + [2] = { 61.5, 26.2, 11, 300 }, + [3] = { 62.5, 25.8, 11, 300 }, + [4] = { 62, 25.4, 11, 300 }, + [5] = { 60.1, 24.6, 11, 300 }, + [6] = { 59.8, 24.6, 11, 300 }, + [7] = { 60.3, 24.3, 11, 300 }, + [8] = { 60, 24.1, 11, 300 }, + [9] = { 48, 18.8, 11, 300 }, + [10] = { 47, 18.4, 11, 300 }, + [11] = { 46.9, 18.1, 11, 300 }, + [12] = { 47.1, 17.9, 11, 300 }, + [13] = { 46.8, 17.9, 11, 300 }, + [14] = { 47.1, 17.5, 11, 300 }, + [15] = { 46, 16.9, 11, 300 }, + [16] = { 45.6, 16.8, 11, 300 }, + [17] = { 46.1, 16.6, 11, 300 }, + [18] = { 46.3, 16.6, 11, 300 }, + [19] = { 45.9, 16.3, 11, 300 }, + [20] = { 45.7, 16.2, 11, 300 }, + [21] = { 47.5, 15.5, 11, 300 }, + [22] = { 47.5, 15.1, 11, 300 }, + [23] = { 48.2, 15, 11, 300 }, + }, + ["lvl"] = "29-30", + ["rnk"] = "1", + }, + [1054] = { + ["coords"] = { + [1] = { 62.5, 29, 11, 300 }, + [2] = { 62.2, 28, 11, 300 }, + [3] = { 61.8, 26.6, 11, 300 }, + [4] = { 62.1, 26.3, 11, 300 }, + [5] = { 62, 26.1, 11, 300 }, + [6] = { 60.1, 24.4, 11, 300 }, + [7] = { 46.5, 18.7, 11, 300 }, + [8] = { 46.6, 18.6, 11, 300 }, + [9] = { 46.7, 18.6, 11, 300 }, + [10] = { 47.4, 15, 11, 300 }, + [11] = { 47.6, 14.7, 11, 300 }, + [12] = { 16.8, 1.2, 5602, 300 }, + [13] = { 16.5, 0.4, 5602, 300 }, + }, + ["lvl"] = "30-31", + ["rnk"] = "1", + }, + [1055] = "_", + [1056] = "_", + [1057] = { + ["coords"] = { + [1] = { 49.8, 51, 11, 300 }, + [2] = { 50.5, 50.8, 11, 300 }, + [3] = { 51.4, 50.8, 11, 300 }, + [4] = { 51.8, 49.5, 11, 300 }, + [5] = { 51.5, 48.4, 11, 300 }, + [6] = { 49.9, 47.8, 11, 300 }, + [7] = { 49.3, 47.5, 11, 300 }, + [8] = { 47.8, 47.4, 11, 300 }, + [9] = { 46.6, 47.2, 11, 300 }, + [10] = { 46.2, 47, 11, 300 }, + [11] = { 47.6, 46.9, 11, 300 }, + [12] = { 49.4, 46.9, 11, 300 }, + [13] = { 48.9, 46.8, 11, 300 }, + [14] = { 48.6, 46, 11, 300 }, + [15] = { 46, 45.8, 11, 300 }, + [16] = { 49.8, 45.7, 11, 300 }, + [17] = { 45.5, 45.4, 11, 300 }, + [18] = { 49.1, 45.2, 11, 300 }, + [19] = { 45.7, 43.3, 11, 300 }, + [20] = { 45.6, 42.5, 11, 300 }, + [21] = { 7, 18.1, 5602, 300 }, + [22] = { 7.6, 18, 5602, 300 }, + [23] = { 8.2, 18, 5602, 300 }, + [24] = { 8.6, 17, 5602, 300 }, + [25] = { 8.3, 16.1, 5602, 300 }, + [26] = { 7.1, 15.7, 5602, 300 }, + [27] = { 6.6, 15.4, 5602, 300 }, + [28] = { 5.5, 15.4, 5602, 300 }, + [29] = { 4.5, 15.2, 5602, 300 }, + [30] = { 4.2, 15.1, 5602, 300 }, + [31] = { 5.3, 15, 5602, 300 }, + [32] = { 6.7, 15, 5602, 300 }, + [33] = { 6.3, 14.9, 5602, 300 }, + [34] = { 6.1, 14.3, 5602, 300 }, + [35] = { 4.1, 14.1, 5602, 300 }, + [36] = { 7, 14, 5602, 300 }, + [37] = { 3.7, 13.8, 5602, 300 }, + [38] = { 6.5, 13.7, 5602, 300 }, + [39] = { 3.8, 12.2, 5602, 300 }, + [40] = { 3.8, 11.6, 5602, 300 }, + }, + ["lvl"] = "27-28", + }, + [1058] = "_", + [1060] = { + ["coords"] = { + [1] = { 48, 44.2, 33, 300 }, + }, + ["lvl"] = "44", + ["rnk"] = "1", + }, + [1063] = { + ["coords"] = { + [1] = { 70, 53.2, 8, 54000 }, + }, + ["lvl"] = "47", + ["rnk"] = "4", + }, + [1064] = { + ["coords"] = { + [1] = { 32.7, 28.8, 33, 300 }, + [2] = { 32.7, 28.7, 33, 300 }, + [3] = { 32.5, 28.6, 33, 300 }, + [4] = { 31.2, 28.6, 33, 300 }, + [5] = { 31.1, 28.5, 33, 300 }, + [6] = { 32.8, 28.4, 33, 300 }, + [7] = { 31.1, 28.4, 33, 300 }, + [8] = { 31.3, 28.2, 33, 300 }, + [9] = { 31.8, 27.8, 33, 300 }, + [10] = { 32, 27.4, 33, 300 }, + [11] = { 32.1, 27.4, 33, 300 }, + [12] = { 31.8, 27.4, 33, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [1066] = "_", + [1067] = "_", + [1068] = { + ["coords"] = { + [1] = { 2.9, 45.6, 3, 30 }, + [2] = { 82, 36.7, 51, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [1069] = { + ["coords"] = { + [1] = { 88.9, 66.3, 11, 120 }, + [2] = { 86.5, 64.5, 11, 120 }, + [3] = { 88.8, 64.3, 11, 120 }, + [4] = { 88.5, 63.4, 11, 300 }, + [5] = { 88.9, 61.6, 11, 120 }, + [6] = { 87.1, 59.1, 11, 120 }, + [7] = { 89.1, 57.8, 11, 120 }, + [8] = { 88.3, 55.9, 11, 120 }, + [9] = { 87.2, 54.1, 11, 120 }, + [10] = { 88.1, 51.7, 11, 120 }, + [11] = { 68.8, 51, 11, 300 }, + [12] = { 83.7, 50.3, 11, 120 }, + [13] = { 69.9, 50, 11, 300 }, + [14] = { 85.3, 49.8, 11, 120 }, + [15] = { 68.5, 48.8, 11, 300 }, + [16] = { 69.1, 48.4, 11, 300 }, + [17] = { 67.9, 48.3, 11, 300 }, + [18] = { 79.6, 48.1, 11, 120 }, + [19] = { 82.2, 47.7, 11, 120 }, + [20] = { 77.1, 47, 11, 300 }, + [21] = { 68.1, 46.3, 11, 300 }, + [22] = { 66, 45.9, 11, 300 }, + [23] = { 69.9, 45.8, 11, 300 }, + [24] = { 67.7, 45, 11, 300 }, + [25] = { 79.3, 44.8, 11, 120 }, + [26] = { 65.9, 44.5, 11, 300 }, + [27] = { 66.6, 44.4, 11, 300 }, + [28] = { 64.6, 44.2, 11, 300 }, + [29] = { 65.1, 43.5, 11, 300 }, + [30] = { 64.3, 43.1, 11, 300 }, + [31] = { 64.6, 42.2, 11, 300 }, + [32] = { 63.6, 42.1, 11, 300 }, + [33] = { 64.2, 41.5, 11, 300 }, + [34] = { 62.1, 41.1, 11, 300 }, + [35] = { 63.7, 40.2, 11, 300 }, + [36] = { 63, 37.4, 11, 300 }, + [37] = { 62.9, 36.5, 11, 300 }, + [38] = { 63.7, 35.3, 11, 300 }, + [39] = { 62, 34.8, 11, 300 }, + [40] = { 62.8, 34.1, 11, 300 }, + [41] = { 61.3, 33.9, 11, 300 }, + [42] = { 62, 33.1, 11, 300 }, + [43] = { 37, 29.9, 5602, 120 }, + [44] = { 35.1, 28.5, 5602, 120 }, + [45] = { 36.9, 28.3, 5602, 120 }, + [46] = { 36.7, 27.7, 5602, 300 }, + [47] = { 37, 26.3, 5602, 120 }, + [48] = { 35.6, 24.3, 5602, 120 }, + [49] = { 37.1, 23.4, 5602, 120 }, + [50] = { 36.5, 21.9, 5602, 120 }, + [51] = { 35.7, 20.5, 5602, 120 }, + [52] = { 36.4, 18.7, 5602, 120 }, + [53] = { 21.6, 18.1, 5602, 300 }, + [54] = { 33.1, 17.6, 5602, 120 }, + [55] = { 22.4, 17.3, 5602, 300 }, + [56] = { 34.3, 17.2, 5602, 120 }, + [57] = { 21.3, 16.4, 5602, 300 }, + [58] = { 21.8, 16.1, 5602, 300 }, + [59] = { 20.9, 16, 5602, 300 }, + [60] = { 29.8, 15.9, 5602, 120 }, + [61] = { 31.9, 15.6, 5602, 120 }, + [62] = { 28, 15.1, 5602, 300 }, + [63] = { 21, 14.5, 5602, 300 }, + [64] = { 19.4, 14.2, 5602, 300 }, + [65] = { 22.4, 14.1, 5602, 300 }, + [66] = { 20.7, 13.5, 5602, 300 }, + [67] = { 29.7, 13.4, 5602, 120 }, + [68] = { 19.4, 13.1, 5602, 300 }, + [69] = { 19.9, 13.1, 5602, 300 }, + [70] = { 18.4, 12.9, 5602, 300 }, + [71] = { 18.8, 12.3, 5602, 300 }, + [72] = { 18.1, 12.1, 5602, 300 }, + [73] = { 18.4, 11.4, 5602, 300 }, + [74] = { 17.6, 11.3, 5602, 300 }, + [75] = { 18.1, 10.8, 5602, 300 }, + [76] = { 16.4, 10.5, 5602, 300 }, + [77] = { 17.7, 9.8, 5602, 300 }, + [78] = { 17.1, 7.7, 5602, 300 }, + [79] = { 17, 7, 5602, 300 }, + [80] = { 17.6, 6.1, 5602, 300 }, + [81] = { 16.4, 5.6, 5602, 300 }, + [82] = { 17, 5.1, 5602, 300 }, + [83] = { 15.8, 4.9, 5602, 300 }, + [84] = { 16.4, 4.4, 5602, 300 }, + }, + ["lvl"] = "25-26", + }, + [1070] = { + ["coords"] = { + [1] = { 30.7, 60, 44, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "33", + }, + [1071] = { + ["coords"] = { + [1] = { 49.8, 18.3, 11, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [1073] = { + ["coords"] = { + [1] = { 50, 18.2, 11, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "27", + }, + [1074] = { + ["coords"] = { + [1] = { 49.7, 18.2, 11, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1075] = { + ["coords"] = { + [1] = { 49.9, 18.2, 11, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [1076] = { + ["coords"] = { + [1] = { 38.9, 52.3, 11, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1077] = { + ["coords"] = { + [1] = { 38.8, 52.4, 11, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1078] = { + ["coords"] = { + [1] = { 38.2, 50.9, 11, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [1082] = { + ["coords"] = { + [1] = { 56.1, 56.8, 8, 300 }, + [2] = { 56.1, 56.5, 8, 300 }, + [3] = { 53.6, 56, 8, 300 }, + [4] = { 53.6, 55.6, 8, 300 }, + [5] = { 56.5, 52.3, 8, 300 }, + [6] = { 55, 49.6, 8, 300 }, + [7] = { 56.6, 48, 8, 300 }, + [8] = { 53.4, 47.3, 8, 300 }, + [9] = { 57.7, 46.1, 8, 300 }, + [10] = { 47.5, 43, 8, 300 }, + [11] = { 53.5, 42.4, 8, 300 }, + [12] = { 52.2, 41.5, 8, 300 }, + [13] = { 55.2, 41.3, 8, 300 }, + [14] = { 48.4, 39.1, 8, 300 }, + [15] = { 56.9, 39, 8, 300 }, + [16] = { 54.5, 36.4, 8, 300 }, + [17] = { 59.6, 35.1, 8, 300 }, + [18] = { 56.5, 34.6, 8, 300 }, + [19] = { 60.5, 32.2, 8, 300 }, + [20] = { 63.3, 32, 8, 300 }, + [21] = { 62.3, 30.3, 8, 300 }, + [22] = { 72, 19.8, 8, 300 }, + [23] = { 69.8, 18.6, 8, 300 }, + [24] = { 72.1, 15.3, 8, 300 }, + [25] = { 69.6, 15.2, 8, 300 }, + }, + ["lvl"] = "38-39", + }, + [1083] = { + ["coords"] = { + [1] = { 49.9, 72.1, 44, 300 }, + [2] = { 48.3, 71.5, 44, 300 }, + [3] = { 50.2, 70.3, 44, 300 }, + [4] = { 48.8, 70.1, 44, 300 }, + [5] = { 50.9, 69.3, 44, 300 }, + [6] = { 46.2, 69.1, 44, 300 }, + [7] = { 47.7, 68.3, 44, 300 }, + [8] = { 47.3, 66.2, 44, 300 }, + [9] = { 49.8, 65.8, 44, 300 }, + }, + ["lvl"] = "16-17", + }, + [1084] = { + ["coords"] = { + [1] = { 28.6, 56, 8, 300 }, + [2] = { 27.1, 55.1, 8, 300 }, + [3] = { 30.3, 54.8, 8, 300 }, + [4] = { 25.9, 52.2, 8, 300 }, + [5] = { 34.4, 51.8, 8, 300 }, + [6] = { 37.6, 51.2, 8, 300 }, + [7] = { 24.1, 50.3, 8, 300 }, + [8] = { 32, 47.2, 8, 300 }, + [9] = { 23.3, 44.9, 8, 300 }, + [10] = { 24.6, 42.6, 8, 300 }, + [11] = { 24.6, 39.2, 8, 300 }, + [12] = { 30.4, 38.9, 8, 300 }, + [13] = { 32.7, 38.9, 8, 300 }, + [14] = { 35.7, 36.9, 8, 300 }, + [15] = { 29.3, 36.4, 8, 300 }, + [16] = { 25.5, 35.9, 8, 300 }, + [17] = { 38.6, 35.3, 8, 300 }, + [18] = { 42.1, 34.4, 8, 300 }, + [19] = { 31.1, 33.8, 8, 300 }, + [20] = { 34.1, 33, 8, 300 }, + }, + ["lvl"] = "35-36", + }, + [1085] = { + ["coords"] = { + [1] = { 31.5, 20.1, 33, 300 }, + [2] = { 35.5, 19.7, 33, 300 }, + [3] = { 34, 19.4, 33, 300 }, + [4] = { 35, 19.2, 33, 300 }, + [5] = { 32.9, 19, 33, 300 }, + [6] = { 32.1, 19, 33, 300 }, + [7] = { 36, 18.9, 33, 300 }, + [8] = { 35.5, 18.5, 33, 300 }, + [9] = { 32.4, 18.4, 33, 300 }, + [10] = { 33.5, 18.3, 33, 300 }, + [11] = { 31.3, 18.2, 33, 300 }, + [12] = { 34, 17.6, 33, 300 }, + [13] = { 31.3, 16.6, 33, 300 }, + [14] = { 31.9, 16.1, 33, 300 }, + }, + ["lvl"] = "34-35", + }, + [1087] = { + ["coords"] = { + [1] = { 82.6, 99.5, 8, 300 }, + [2] = { 76.3, 97.4, 8, 300 }, + [3] = { 80.6, 96.8, 8, 300 }, + [4] = { 83.8, 95.4, 8, 300 }, + [5] = { 84, 64.8, 8, 300 }, + [6] = { 85.4, 63.4, 8, 300 }, + [7] = { 86.7, 56.2, 8, 300 }, + [8] = { 87.3, 38.6, 8, 300 }, + [9] = { 83.4, 36.3, 8, 300 }, + [10] = { 86.5, 34.1, 8, 300 }, + [11] = { 84.1, 33.3, 8, 300 }, + [12] = { 81.3, 32.7, 8, 300 }, + [13] = { 82.7, 30.9, 8, 300 }, + [14] = { 79.7, 30.6, 8, 300 }, + [15] = { 78, 28.4, 8, 300 }, + [16] = { 79.4, 26.7, 8, 300 }, + [17] = { 82.5, 26.1, 8, 300 }, + [18] = { 81.2, 23.7, 8, 300 }, + [19] = { 78, 23.3, 8, 300 }, + [20] = { 86.2, 20, 8, 300 }, + [21] = { 78, 19.9, 8, 300 }, + [22] = { 81, 19.8, 8, 300 }, + [23] = { 75.5, 19.4, 8, 300 }, + [24] = { 84.2, 15.3, 8, 300 }, + [25] = { 78, 14.6, 8, 300 }, + [26] = { 75.1, 14.6, 8, 300 }, + [27] = { 77, 13.2, 8, 300 }, + [28] = { 82.8, 12.3, 8, 300 }, + [29] = { 79.7, 7.4, 8, 300 }, + [30] = { 76.7, 5.8, 8, 300 }, + }, + ["lvl"] = "41-42", + }, + [1088] = { + ["coords"] = { + [1] = { 78.9, 98.1, 8, 300 }, + [2] = { 93.1, 69.9, 8, 300 }, + [3] = { 93.7, 62.3, 8, 300 }, + [4] = { 95, 56.1, 8, 300 }, + [5] = { 96, 46.3, 8, 300 }, + [6] = { 93.6, 35.5, 8, 300 }, + [7] = { 94.1, 32.7, 8, 300 }, + [8] = { 92.8, 30.1, 8, 300 }, + [9] = { 91.4, 19.7, 8, 300 }, + [10] = { 79.3, 2.4, 8, 300 }, + }, + ["lvl"] = "43-44", + }, + [1089] = { + ["coords"] = { + [1] = { 22.1, 73.1, 38, 30 }, + [2] = { 9.8, 81.7, 5602, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1090] = { + ["coords"] = { + [1] = { 23.5, 74.5, 38, 30 }, + [2] = { 10.6, 82.4, 5602, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1091] = { + ["coords"] = { + [1] = { 23.5, 76.4, 38, 30 }, + [2] = { 10.6, 83.4, 5602, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1092] = { + ["coords"] = { + [1] = { 23.2, 73.7, 38, 30 }, + [2] = { 10.4, 82, 5602, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [1093] = { + ["coords"] = { + [1] = { 46, 13.6, 38, 30 }, + [2] = { 22.1, 51.2, 5602, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [1094] = { + ["coords"] = { + [1] = { 28.3, 8.1, 33, 300 }, + [2] = { 28.2, 8, 33, 300 }, + [3] = { 27.1, 8, 33, 300 }, + [4] = { 28.7, 7.9, 33, 300 }, + [5] = { 28.9, 7.6, 33, 300 }, + [6] = { 27.2, 7.4, 33, 300 }, + [7] = { 29.3, 7.4, 33, 300 }, + [8] = { 28.9, 7.4, 33, 300 }, + [9] = { 29.1, 7.2, 33, 300 }, + [10] = { 28.8, 6.9, 33, 300 }, + [11] = { 28.9, 6.8, 33, 300 }, + [12] = { 75.2, 88.3, 40, 300 }, + [13] = { 75.4, 88.2, 40, 300 }, + }, + ["lvl"] = "34-35", + }, + [1095] = { + ["coords"] = { + [1] = { 43.1, 19, 33, 300 }, + }, + ["lvl"] = "36", + }, + [1096] = { + ["coords"] = { + [1] = { 46.5, 23.9, 33, 300 }, + [2] = { 45.1, 23.7, 33, 300 }, + [3] = { 44.9, 23.6, 33, 300 }, + [4] = { 43.5, 23.5, 33, 300 }, + [5] = { 43.8, 23.1, 33, 300 }, + [6] = { 42.7, 23.1, 33, 300 }, + [7] = { 46.3, 22.8, 33, 300 }, + [8] = { 44.8, 22.7, 33, 300 }, + [9] = { 43.6, 22.4, 33, 300 }, + [10] = { 42.4, 22.2, 33, 300 }, + [11] = { 44.7, 22.2, 33, 300 }, + [12] = { 46.3, 21.4, 33, 300 }, + [13] = { 44, 21.1, 33, 300 }, + [14] = { 43.2, 20.9, 33, 300 }, + [15] = { 45.4, 20.8, 33, 300 }, + [16] = { 46.4, 20.7, 33, 300 }, + [17] = { 44.5, 20.6, 33, 300 }, + [18] = { 45.2, 20.4, 33, 300 }, + [19] = { 44.2, 20.1, 33, 300 }, + [20] = { 46.9, 19.9, 33, 300 }, + [21] = { 45.9, 19.6, 33, 300 }, + [22] = { 43.1, 19.5, 33, 300 }, + [23] = { 43.2, 19.3, 33, 300 }, + [24] = { 46.7, 19.2, 33, 300 }, + [25] = { 42.5, 19.1, 33, 300 }, + [26] = { 43, 19.1, 33, 300 }, + [27] = { 47.7, 19, 33, 300 }, + [28] = { 44.2, 18.6, 33, 300 }, + [29] = { 42.6, 18.6, 33, 300 }, + [30] = { 42.4, 18.6, 33, 300 }, + [31] = { 46, 18.4, 33, 300 }, + [32] = { 42.7, 18.3, 33, 300 }, + [33] = { 44.5, 17.6, 33, 300 }, + [34] = { 44, 17.4, 33, 300 }, + [35] = { 44.8, 16.4, 33, 300 }, + [36] = { 44.8, 16.3, 33, 300 }, + [37] = { 27.6, 8.1, 33, 300 }, + [38] = { 28.7, 7.7, 33, 300 }, + [39] = { 28.7, 7.6, 33, 300 }, + [40] = { 28.9, 6.9, 33, 300 }, + [41] = { 75.3, 88.4, 40, 300 }, + }, + ["lvl"] = "35-36", + }, + [1105] = { + ["coords"] = { + [1] = { 37.2, 47.4, 38, 30 }, + [2] = { 17.6, 68.5, 5602, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [1106] = { + ["coords"] = { + [1] = { 65.2, 22.8, 8, 27000 }, + }, + ["lvl"] = "37", + ["rnk"] = "4", + }, + [1108] = { + ["coords"] = { + [1] = { 36.7, 18.3, 33, 300 }, + [2] = { 37.7, 18.3, 33, 300 }, + [3] = { 38.7, 18.3, 33, 300 }, + [4] = { 37.2, 17.8, 33, 300 }, + [5] = { 39.2, 17.7, 33, 300 }, + [6] = { 38, 17.6, 33, 300 }, + [7] = { 38.7, 16.8, 33, 300 }, + [8] = { 37.5, 16.8, 33, 300 }, + [9] = { 36.6, 16.7, 33, 300 }, + [10] = { 37.3, 16.2, 33, 300 }, + [11] = { 38.3, 15.7, 33, 300 }, + }, + ["lvl"] = "32-33", + }, + [1109] = { + ["coords"] = { + [1] = { 37, 69.1, 40, 300 }, + [2] = { 39.8, 68.2, 40, 300 }, + [3] = { 40.5, 68.1, 40, 300 }, + [4] = { 40.2, 67.6, 40, 300 }, + [5] = { 39.7, 67, 40, 300 }, + [6] = { 40.4, 66.9, 40, 300 }, + [7] = { 37.5, 66, 40, 300 }, + [8] = { 35.2, 65, 40, 300 }, + [9] = { 45.7, 63.7, 40, 300 }, + [10] = { 45.8, 63.5, 40, 300 }, + [11] = { 39, 62.3, 40, 300 }, + [12] = { 50.5, 62.3, 40, 300 }, + [13] = { 39.6, 62.1, 40, 300 }, + [14] = { 50.2, 61.9, 40, 300 }, + [15] = { 55.7, 60.9, 40, 300 }, + [16] = { 40.9, 59.7, 40, 300 }, + [17] = { 40.1, 59.2, 40, 300 }, + [18] = { 50.5, 59.2, 40, 300 }, + [19] = { 52.3, 59.1, 40, 300 }, + [20] = { 49.4, 56.4, 40, 300 }, + [21] = { 48.4, 54.8, 40, 300 }, + [22] = { 44.7, 53.7, 40, 300 }, + [23] = { 46.9, 51.3, 40, 300 }, + [24] = { 48.7, 50.8, 40, 300 }, + [25] = { 42.8, 50.8, 40, 300 }, + [26] = { 43.2, 49.1, 40, 300 }, + [27] = { 59.8, 46.7, 40, 300 }, + [28] = { 43.6, 46.4, 40, 300 }, + [29] = { 61.1, 46.2, 40, 300 }, + [30] = { 45.9, 45.4, 40, 300 }, + [31] = { 43.6, 43.8, 40, 300 }, + [32] = { 60.7, 43.6, 40, 300 }, + [33] = { 39.9, 42.9, 40, 300 }, + [34] = { 43.9, 42, 40, 300 }, + [35] = { 39.3, 42, 40, 300 }, + [36] = { 36, 42, 40, 300 }, + [37] = { 39.7, 39.8, 40, 300 }, + [38] = { 41.9, 39.2, 40, 300 }, + [39] = { 39.5, 38.5, 40, 300 }, + [40] = { 29.9, 38.3, 40, 300 }, + [41] = { 36.2, 38, 40, 300 }, + [42] = { 33.1, 36.8, 40, 300 }, + [43] = { 38.2, 34.5, 40, 300 }, + [44] = { 39.2, 29.3, 40, 300 }, + [45] = { 39.1, 25, 40, 300 }, + [46] = { 51.2, 24.9, 40, 300 }, + [47] = { 39.9, 24, 40, 300 }, + }, + ["lvl"] = "13-14", + }, + [1110] = { + ["coords"] = { + [1] = { 19.1, 40, 10, 300 }, + [2] = { 16.1, 39.5, 10, 300 }, + [3] = { 15.4, 39.2, 10, 300 }, + [4] = { 16.4, 38.5, 10, 300 }, + [5] = { 15.2, 38.3, 10, 300 }, + [6] = { 15.8, 38, 10, 300 }, + [7] = { 17.5, 37.1, 10, 300 }, + [8] = { 15.2, 36.9, 10, 300 }, + [9] = { 14.4, 36.2, 10, 300 }, + [10] = { 17.2, 34.9, 10, 300 }, + [11] = { 17.4, 34.2, 10, 300 }, + [12] = { 16.9, 33.6, 10, 300 }, + [13] = { 15.3, 33.6, 10, 300 }, + [14] = { 17.2, 33.6, 10, 300 }, + [15] = { 17.4, 33.4, 10, 300 }, + [16] = { 17.7, 32.7, 10, 300 }, + [17] = { 16.9, 31.3, 10, 300 }, + }, + ["lvl"] = "27-28", + }, + [1111] = { + ["coords"] = { + [1] = { 56.1, 67.9, 11, 300 }, + [2] = { 54.8, 66.7, 11, 300 }, + [3] = { 54.8, 66.6, 11, 300 }, + [4] = { 57.3, 66.5, 11, 300 }, + [5] = { 56.3, 65.4, 11, 300 }, + [6] = { 53, 65.4, 11, 300 }, + [7] = { 57.3, 65.3, 11, 300 }, + [8] = { 53.8, 65.2, 11, 300 }, + [9] = { 54.7, 64.7, 11, 300 }, + [10] = { 55.3, 63.7, 11, 300 }, + [11] = { 46.8, 63.6, 11, 300 }, + [12] = { 54, 63.3, 11, 300 }, + [13] = { 51.7, 63, 11, 300 }, + [14] = { 52.7, 63, 11, 300 }, + [15] = { 55.5, 63, 11, 300 }, + [16] = { 46.9, 62.9, 11, 300 }, + [17] = { 50.4, 62.9, 11, 300 }, + [18] = { 52.4, 62.8, 11, 300 }, + [19] = { 57, 62.8, 11, 300 }, + [20] = { 54.8, 62.8, 11, 300 }, + [21] = { 49, 62.7, 11, 300 }, + [22] = { 46.1, 62.3, 11, 300 }, + [23] = { 51.6, 62.1, 11, 300 }, + [24] = { 46.5, 62, 11, 300 }, + [25] = { 46.8, 62, 11, 300 }, + [26] = { 51.2, 61.8, 11, 300 }, + [27] = { 56.7, 61.7, 11, 300 }, + [28] = { 56, 61.6, 11, 300 }, + [29] = { 49, 61.4, 11, 300 }, + [30] = { 50.3, 61, 11, 300 }, + [31] = { 56.2, 60.9, 11, 300 }, + [32] = { 47.9, 59.8, 11, 300 }, + [33] = { 50.3, 59.6, 11, 300 }, + [34] = { 46.2, 59.4, 11, 300 }, + [35] = { 50, 58.8, 11, 300 }, + [36] = { 11.9, 31.2, 5602, 300 }, + [37] = { 10.8, 30.2, 5602, 300 }, + [38] = { 10.8, 30.1, 5602, 300 }, + [39] = { 12.8, 30.1, 5602, 300 }, + [40] = { 12, 29.2, 5602, 300 }, + [41] = { 9.5, 29.2, 5602, 300 }, + [42] = { 12.7, 29.2, 5602, 300 }, + [43] = { 10.1, 29.1, 5602, 300 }, + [44] = { 10.8, 28.7, 5602, 300 }, + [45] = { 11.2, 27.9, 5602, 300 }, + [46] = { 4.7, 27.8, 5602, 300 }, + [47] = { 10.3, 27.6, 5602, 300 }, + [48] = { 8.5, 27.4, 5602, 300 }, + [49] = { 9.2, 27.4, 5602, 300 }, + [50] = { 11.4, 27.3, 5602, 300 }, + [51] = { 4.8, 27.3, 5602, 300 }, + [52] = { 7.4, 27.3, 5602, 300 }, + [53] = { 9, 27.2, 5602, 300 }, + [54] = { 12.5, 27.2, 5602, 300 }, + [55] = { 10.8, 27.2, 5602, 300 }, + [56] = { 6.4, 27.1, 5602, 300 }, + [57] = { 4.2, 26.8, 5602, 300 }, + [58] = { 8.4, 26.7, 5602, 300 }, + [59] = { 4.4, 26.6, 5602, 300 }, + [60] = { 4.7, 26.6, 5602, 300 }, + [61] = { 8, 26.5, 5602, 300 }, + [62] = { 12.3, 26.3, 5602, 300 }, + [63] = { 11.7, 26.3, 5602, 300 }, + [64] = { 6.4, 26.1, 5602, 300 }, + [65] = { 7.4, 25.8, 5602, 300 }, + [66] = { 11.9, 25.8, 5602, 300 }, + [67] = { 5.6, 24.9, 5602, 300 }, + [68] = { 7.4, 24.7, 5602, 300 }, + [69] = { 4.2, 24.6, 5602, 300 }, + [70] = { 7.2, 24.1, 5602, 300 }, + }, + ["lvl"] = "21-22", + }, + [1112] = { + ["coords"] = { + [1] = { 47.3, 59.2, 11, 27000 }, + [2] = { 5.1, 24.4, 5602, 27000 }, + }, + ["lvl"] = "24", + ["rnk"] = "4", + }, + [1114] = { + ["coords"] = { + [1] = { 47.7, 38, 33, 300 }, + [2] = { 48.6, 37.9, 33, 300 }, + [3] = { 44.4, 37.8, 33, 300 }, + [4] = { 47.1, 37.2, 33, 300 }, + [5] = { 48.1, 37.2, 33, 300 }, + [6] = { 45.5, 36.5, 33, 300 }, + [7] = { 46.5, 36.5, 33, 300 }, + [8] = { 44.7, 36.4, 33, 300 }, + [9] = { 48.6, 36.2, 33, 300 }, + [10] = { 48.2, 35.7, 33, 300 }, + [11] = { 49.1, 35.4, 33, 300 }, + [12] = { 45.6, 34.9, 33, 300 }, + [13] = { 46.6, 34.7, 33, 300 }, + [14] = { 46.1, 34.2, 33, 300 }, + [15] = { 49.2, 34, 33, 300 }, + [16] = { 48.1, 34, 33, 300 }, + [17] = { 48.2, 32.7, 33, 300 }, + [18] = { 41.9, 32.6, 33, 300 }, + [19] = { 49.2, 32.4, 33, 300 }, + [20] = { 44.1, 32.3, 33, 300 }, + [21] = { 42.3, 31.9, 33, 300 }, + [22] = { 43.5, 31.7, 33, 300 }, + [23] = { 42.8, 31, 33, 300 }, + [24] = { 41.9, 30.9, 33, 300 }, + [25] = { 43.9, 30.9, 33, 300 }, + [26] = { 46.1, 29.6, 33, 300 }, + [27] = { 45, 29.3, 33, 300 }, + [28] = { 43.4, 28.7, 33, 300 }, + [29] = { 44.5, 28.7, 33, 300 }, + [30] = { 45.5, 28.6, 33, 300 }, + [31] = { 41.2, 28.5, 33, 300 }, + [32] = { 42.3, 28.5, 33, 300 }, + [33] = { 40.8, 28.1, 33, 300 }, + [34] = { 45, 27.8, 33, 300 }, + [35] = { 43, 27.7, 33, 300 }, + [36] = { 41.9, 27.6, 33, 300 }, + [37] = { 44.5, 27.2, 33, 300 }, + [38] = { 42.3, 27, 33, 300 }, + [39] = { 43, 26.2, 33, 300 }, + [40] = { 41.8, 26, 33, 300 }, + [41] = { 40.8, 26, 33, 300 }, + [42] = { 41.8, 24.4, 33, 300 }, + }, + ["lvl"] = "37-38", + }, + [1115] = { + ["coords"] = { + [1] = { 67.9, 60.7, 1, 270 }, + [2] = { 67.9, 60.5, 1, 270 }, + [3] = { 67.5, 60.2, 1, 270 }, + [4] = { 68.9, 59.8, 1, 270 }, + [5] = { 68.7, 59.7, 1, 270 }, + [6] = { 67.1, 59.7, 1, 270 }, + [7] = { 67.4, 59.7, 1, 270 }, + [8] = { 67.5, 59.5, 1, 270 }, + [9] = { 68, 59.4, 1, 270 }, + [10] = { 68.9, 59.3, 1, 270 }, + [11] = { 70.3, 59.3, 1, 270 }, + [12] = { 70.5, 58.9, 1, 270 }, + [13] = { 69.5, 58.8, 1, 270 }, + [14] = { 67.2, 58.6, 1, 270 }, + [15] = { 70.5, 58.5, 1, 270 }, + [16] = { 70.5, 58.4, 1, 270 }, + [17] = { 69.4, 58.3, 1, 270 }, + [18] = { 69.8, 58.3, 1, 270 }, + [19] = { 68.6, 58.1, 1, 270 }, + [20] = { 70, 57.8, 1, 270 }, + [21] = { 70.3, 57.1, 1, 270 }, + [22] = { 70.5, 57.1, 1, 270 }, + [23] = { 69.7, 57.1, 1, 270 }, + [24] = { 70.9, 56, 1, 270 }, + [25] = { 71.2, 55.3, 1, 270 }, + [26] = { 71, 55.2, 1, 270 }, + [27] = { 70.8, 53.9, 1, 270 }, + [28] = { 71.1, 53.9, 1, 270 }, + [29] = { 72.5, 53.5, 1, 270 }, + [30] = { 73.2, 53.3, 1, 270 }, + [31] = { 70.3, 53.3, 1, 270 }, + [32] = { 70.1, 52.7, 1, 270 }, + [33] = { 72.9, 52.7, 1, 270 }, + [34] = { 70.7, 52.6, 1, 270 }, + [35] = { 72.6, 52.4, 1, 270 }, + [36] = { 72.2, 52.2, 1, 270 }, + [37] = { 73.2, 52, 1, 270 }, + [38] = { 72.7, 51.9, 1, 270 }, + [39] = { 71.6, 51.8, 1, 270 }, + [40] = { 71.4, 51.6, 1, 270 }, + [41] = { 71.5, 51.6, 1, 270 }, + [42] = { 72.4, 51, 1, 270 }, + [43] = { 72.3, 51, 1, 270 }, + [44] = { 71.2, 50.6, 1, 270 }, + [45] = { 71.5, 50.3, 1, 270 }, + }, + ["lvl"] = "8-9", + }, + [1116] = { + ["coords"] = { + [1] = { 75.7, 61.8, 1, 300 }, + [2] = { 74.8, 61.7, 1, 300 }, + [3] = { 74, 61.2, 1, 300 }, + [4] = { 77.1, 60.9, 1, 300 }, + [5] = { 74.7, 60.8, 1, 300 }, + [6] = { 77.3, 59.8, 1, 270 }, + [7] = { 78.1, 59.6, 1, 300 }, + [8] = { 78, 58.8, 1, 300 }, + [9] = { 75.8, 58.8, 1, 270 }, + [10] = { 79.6, 58.4, 1, 300 }, + [11] = { 76.1, 58.4, 1, 300 }, + [12] = { 77.2, 58.3, 1, 270 }, + [13] = { 75.7, 57.7, 1, 270 }, + [14] = { 80.4, 56.8, 1, 300 }, + [15] = { 74.9, 56.6, 1, 270 }, + [16] = { 75.5, 56.5, 1, 300 }, + [17] = { 74.7, 56.4, 1, 270 }, + [18] = { 74.5, 56.2, 1, 270 }, + [19] = { 72.6, 55.8, 1, 270 }, + [20] = { 79.6, 55.2, 1, 300 }, + [21] = { 73.4, 55.1, 1, 270 }, + [22] = { 72.1, 55, 1, 270 }, + [23] = { 79.6, 54.6, 1, 300 }, + [24] = { 71.3, 54.3, 1, 270 }, + [25] = { 79.6, 54.1, 1, 300 }, + [26] = { 72.6, 53.9, 1, 270 }, + [27] = { 71, 53.3, 1, 270 }, + [28] = { 70.8, 53.1, 1, 270 }, + [29] = { 73.5, 52.8, 1, 270 }, + [30] = { 70.3, 52.3, 1, 270 }, + [31] = { 73.9, 51.5, 1, 270 }, + [32] = { 73.4, 51.3, 1, 270 }, + [33] = { 0.9, 80.6, 5602, 300 }, + [34] = { 1.6, 79.2, 5602, 300 }, + [35] = { 0.9, 77.7, 5602, 300 }, + [36] = { 0.9, 77.1, 5602, 300 }, + [37] = { 0.9, 76.7, 5602, 300 }, + }, + ["lvl"] = "9-10", + }, + [1117] = { + ["coords"] = { + [1] = { 78.4, 60.1, 1, 270 }, + [2] = { 70.7, 56.6, 1, 270 }, + [3] = { 71.2, 55.6, 1, 270 }, + [4] = { 70.6, 55.3, 1, 270 }, + [5] = { 70.6, 54.6, 1, 270 }, + [6] = { 71, 54.6, 1, 270 }, + [7] = { 72.9, 54.1, 1, 270 }, + [8] = { 70.7, 53.3, 1, 270 }, + [9] = { 71, 53.3, 1, 270 }, + [10] = { 70.4, 53.3, 1, 270 }, + [11] = { 72.4, 52.9, 1, 270 }, + [12] = { 71.1, 52.7, 1, 270 }, + [13] = { 70.2, 52.7, 1, 270 }, + [14] = { 70.6, 52.6, 1, 270 }, + [15] = { 70.8, 52.4, 1, 270 }, + [16] = { 71.8, 52.4, 1, 270 }, + [17] = { 70.5, 52.3, 1, 270 }, + [18] = { 70.4, 52.2, 1, 270 }, + [19] = { 72, 52.2, 1, 270 }, + [20] = { 72.9, 52.2, 1, 270 }, + [21] = { 71.7, 52.2, 1, 270 }, + [22] = { 72.4, 51.5, 1, 270 }, + [23] = { 72.6, 51.4, 1, 270 }, + [24] = { 71.7, 51.3, 1, 270 }, + [25] = { 72.2, 50.7, 1, 270 }, + [26] = { 71.9, 50.5, 1, 270 }, + [27] = { 71.6, 50.3, 1, 270 }, + [28] = { 71.9, 50.3, 1, 270 }, + [29] = { 72, 49.9, 1, 270 }, + }, + ["lvl"] = "9-10", + }, + [1118] = { + ["coords"] = { + [1] = { 74.7, 61.7, 1, 300 }, + [2] = { 76.1, 60.4, 1, 300 }, + [3] = { 76.6, 58.9, 1, 300 }, + [4] = { 78.8, 58.8, 1, 300 }, + [5] = { 79.8, 58.2, 1, 300 }, + [6] = { 76.2, 57.9, 1, 300 }, + [7] = { 79.4, 57.8, 1, 270 }, + [8] = { 80.5, 57.1, 1, 270 }, + [9] = { 74.6, 56.3, 1, 300 }, + [10] = { 74.8, 56.2, 1, 300 }, + [11] = { 74.7, 55.9, 1, 300 }, + [12] = { 79.5, 55.7, 1, 270 }, + [13] = { 79.4, 54.7, 1, 270 }, + [14] = { 79.6, 54.4, 1, 270 }, + [15] = { 79.4, 54.1, 1, 270 }, + [16] = { 0.1, 81, 5602, 300 }, + [17] = { 1, 80.5, 5602, 300 }, + [18] = { 0.7, 80.1, 5602, 270 }, + [19] = { 1.7, 79.5, 5602, 270 }, + [20] = { 0.8, 78.1, 5602, 270 }, + [21] = { 0.6, 77.3, 5602, 270 }, + [22] = { 0.9, 77, 5602, 270 }, + [23] = { 0.7, 76.7, 5602, 270 }, + }, + ["lvl"] = "11-12", + }, + [1119] = { + ["coords"] = { + [1] = { 71.5, 51.2, 1, 9000 }, + }, + ["lvl"] = "12", + ["rnk"] = "4", + }, + [1120] = { + ["coords"] = { + [1] = { 25.9, 52.9, 1, 270 }, + [2] = { 26.7, 52.1, 1, 270 }, + [3] = { 26.1, 51.5, 1, 270 }, + [4] = { 26.7, 51.4, 1, 270 }, + [5] = { 26.1, 51.3, 1, 270 }, + [6] = { 25.4, 51.1, 1, 270 }, + [7] = { 26.2, 49.9, 1, 270 }, + [8] = { 66.5, 41.1, 1, 15 }, + [9] = { 70.6, 39.3, 1, 15 }, + [10] = { 71, 37.9, 1, 15 }, + }, + ["lvl"] = "7-8", + }, + [1121] = { + ["coords"] = { + [1] = { 22.9, 54.5, 1, 270 }, + [2] = { 25.4, 52, 1, 270 }, + [3] = { 23.1, 52, 1, 270 }, + [4] = { 23.6, 51.4, 1, 270 }, + [5] = { 26.2, 51.3, 1, 270 }, + [6] = { 21.6, 50.8, 1, 270 }, + [7] = { 26.1, 50.6, 1, 270 }, + [8] = { 22.6, 50.5, 1, 270 }, + [9] = { 25.4, 50.1, 1, 270 }, + [10] = { 41.3, 44.2, 1, 270 }, + [11] = { 66.4, 41.1, 1, 15 }, + [12] = { 70.5, 39.3, 1, 15 }, + [13] = { 71, 38.1, 1, 15 }, + [14] = { 41.6, 36.6, 1, 270 }, + [15] = { 41.9, 35.8, 1, 270 }, + [16] = { 39, 35.2, 1, 270 }, + [17] = { 40.7, 35.1, 1, 270 }, + }, + ["lvl"] = "8-9", + }, + [1122] = { + ["coords"] = { + [1] = { 21.9, 55, 1, 270 }, + [2] = { 23.2, 54.8, 1, 270 }, + [3] = { 21.6, 54.8, 1, 270 }, + [4] = { 23.5, 53.9, 1, 270 }, + [5] = { 23.8, 53.6, 1, 270 }, + [6] = { 21.4, 53.1, 1, 270 }, + [7] = { 21.7, 52.9, 1, 270 }, + [8] = { 23.9, 52.2, 1, 270 }, + [9] = { 22.8, 52, 1, 270 }, + [10] = { 22, 51.3, 1, 270 }, + [11] = { 21.6, 50.6, 1, 270 }, + }, + ["lvl"] = "9-10", + }, + [1123] = { + ["coords"] = { + [1] = { 22.6, 54.6, 1, 270 }, + [2] = { 21.3, 54.5, 1, 270 }, + [3] = { 23.9, 53.2, 1, 270 }, + [4] = { 26, 52.2, 1, 270 }, + [5] = { 22.4, 51.8, 1, 270 }, + [6] = { 21.1, 51.6, 1, 270 }, + [7] = { 26, 51.5, 1, 270 }, + [8] = { 26.1, 51.5, 1, 270 }, + [9] = { 23.4, 51.4, 1, 270 }, + [10] = { 21.2, 51, 1, 270 }, + [11] = { 24.6, 50.9, 1, 270 }, + [12] = { 23.6, 50.9, 1, 270 }, + [13] = { 23.2, 50.9, 1, 270 }, + [14] = { 24.3, 50.9, 1, 270 }, + [15] = { 25.5, 50.9, 1, 270 }, + [16] = { 22, 50.1, 1, 270 }, + [17] = { 40.9, 43.8, 1, 270 }, + [18] = { 39.3, 35.9, 1, 270 }, + }, + ["lvl"] = "8-9", + }, + [1124] = { + ["coords"] = { + [1] = { 22.8, 53.8, 1, 270 }, + [2] = { 21.1, 53.6, 1, 270 }, + [3] = { 23.3, 52.6, 1, 270 }, + [4] = { 22.1, 52.3, 1, 270 }, + [5] = { 21.6, 52.2, 1, 270 }, + [6] = { 26, 51.1, 1, 270 }, + [7] = { 22.4, 50.2, 1, 270 }, + [8] = { 66.5, 41.1, 1, 15 }, + [9] = { 70.6, 39.2, 1, 15 }, + [10] = { 70.9, 37.8, 1, 15 }, + }, + ["lvl"] = "9-10", + }, + [1125] = { + ["coords"] = { + [1] = { 42.2, 67.6, 1, 270 }, + [2] = { 44.4, 67.1, 1, 270 }, + [3] = { 43.3, 66.3, 1, 270 }, + [4] = { 45.7, 66, 1, 270 }, + [5] = { 43.3, 65.8, 1, 270 }, + [6] = { 44.8, 65.6, 1, 270 }, + [7] = { 42.4, 65.4, 1, 270 }, + [8] = { 46.2, 65.4, 1, 270 }, + [9] = { 45.1, 65.4, 1, 270 }, + [10] = { 41.9, 65.2, 1, 270 }, + [11] = { 42.3, 65.1, 1, 270 }, + [12] = { 38.6, 64.6, 1, 270 }, + [13] = { 46.1, 64.5, 1, 270 }, + [14] = { 45.4, 64.1, 1, 270 }, + [15] = { 47.7, 64.1, 1, 270 }, + [16] = { 45.4, 64, 1, 270 }, + [17] = { 46.2, 63.8, 1, 270 }, + [18] = { 39.4, 63.8, 1, 270 }, + [19] = { 39.4, 63.4, 1, 270 }, + [20] = { 44.3, 63.2, 1, 270 }, + [21] = { 36.5, 63.1, 1, 270 }, + [22] = { 36.5, 62.9, 1, 270 }, + [23] = { 48.7, 62.9, 1, 270 }, + [24] = { 36.2, 62.1, 1, 270 }, + [25] = { 44.9, 62.1, 1, 270 }, + [26] = { 46.2, 61.9, 1, 270 }, + [27] = { 49.7, 61.8, 1, 270 }, + [28] = { 45.9, 61.7, 1, 270 }, + [29] = { 47.1, 61.5, 1, 270 }, + [30] = { 47.4, 61.2, 1, 270 }, + [31] = { 40.5, 60.5, 1, 270 }, + [32] = { 41.9, 60.4, 1, 270 }, + [33] = { 48.5, 60.1, 1, 270 }, + [34] = { 36.6, 60, 1, 270 }, + [35] = { 42.3, 59.9, 1, 270 }, + [36] = { 37.8, 59.8, 1, 270 }, + [37] = { 35, 59.6, 1, 270 }, + [38] = { 39.2, 59.5, 1, 270 }, + [39] = { 33.7, 59.5, 1, 270 }, + [40] = { 44.2, 59.4, 1, 270 }, + [41] = { 46.6, 59.4, 1, 270 }, + [42] = { 49.2, 59.3, 1, 270 }, + [43] = { 46, 59, 1, 270 }, + [44] = { 48.6, 58.6, 1, 270 }, + [45] = { 51.8, 58.5, 1, 270 }, + [46] = { 34.7, 58.4, 1, 270 }, + [47] = { 41.2, 58.3, 1, 270 }, + [48] = { 31.4, 57.9, 1, 270 }, + [49] = { 39.5, 57.8, 1, 270 }, + [50] = { 44.8, 57.6, 1, 270 }, + [51] = { 34.4, 57.2, 1, 270 }, + [52] = { 32.7, 57.1, 1, 270 }, + [53] = { 45.8, 57, 1, 270 }, + [54] = { 42.3, 56.8, 1, 270 }, + [55] = { 43.1, 56.4, 1, 270 }, + [56] = { 43.4, 55.9, 1, 270 }, + [57] = { 43.9, 55.8, 1, 270 }, + [58] = { 44, 55.6, 1, 270 }, + [59] = { 49.1, 54.8, 1, 270 }, + [60] = { 30, 54.3, 1, 270 }, + [61] = { 31, 53.7, 1, 270 }, + [62] = { 51.5, 53.3, 1, 270 }, + [63] = { 44.2, 52.9, 1, 270 }, + [64] = { 51, 52.3, 1, 270 }, + [65] = { 50.1, 51.9, 1, 270 }, + [66] = { 51.3, 51.1, 1, 270 }, + [67] = { 45.5, 50.6, 1, 270 }, + [68] = { 48.5, 50.5, 1, 270 }, + [69] = { 49.4, 50.5, 1, 270 }, + [70] = { 49.3, 50.3, 1, 270 }, + [71] = { 45.7, 50.2, 1, 270 }, + [72] = { 45.4, 50, 1, 270 }, + [73] = { 48.1, 49.1, 1, 270 }, + }, + ["lvl"] = "5-6", + }, + [1126] = { + ["coords"] = { + [1] = { 47.3, 63.9, 1, 270 }, + [2] = { 49.4, 62.6, 1, 270 }, + [3] = { 50.5, 60, 1, 270 }, + [4] = { 49.5, 58.4, 1, 270 }, + [5] = { 48.4, 56.8, 1, 270 }, + [6] = { 48, 56.7, 1, 270 }, + [7] = { 34.3, 55.6, 1, 270 }, + [8] = { 59.8, 55.3, 1, 270 }, + [9] = { 62.4, 55.1, 1, 270 }, + [10] = { 49.2, 54.8, 1, 270 }, + [11] = { 35.6, 54.7, 1, 270 }, + [12] = { 36.4, 54.2, 1, 270 }, + [13] = { 58.7, 54.1, 1, 270 }, + [14] = { 64.2, 53.9, 1, 270 }, + [15] = { 37.3, 52.7, 1, 270 }, + [16] = { 56.8, 52.7, 1, 270 }, + [17] = { 36.3, 52.2, 1, 270 }, + [18] = { 50.5, 52.1, 1, 270 }, + [19] = { 38.1, 51.1, 1, 270 }, + [20] = { 37, 51.1, 1, 270 }, + [21] = { 38.1, 51, 1, 270 }, + [22] = { 67, 50.3, 1, 270 }, + [23] = { 65.3, 50.2, 1, 270 }, + [24] = { 38.7, 48.6, 1, 270 }, + [25] = { 39.1, 48.1, 1, 270 }, + [26] = { 55.9, 47.8, 1, 270 }, + [27] = { 56.2, 47.7, 1, 270 }, + [28] = { 48.5, 47.3, 1, 270 }, + [29] = { 48.1, 47.2, 1, 270 }, + [30] = { 41.2, 47.2, 1, 270 }, + [31] = { 48.1, 47, 1, 270 }, + [32] = { 39.6, 46.9, 1, 270 }, + [33] = { 38.6, 46.7, 1, 270 }, + [34] = { 45.2, 45.3, 1, 270 }, + [35] = { 50.4, 43.2, 1, 270 }, + [36] = { 45.4, 41.7, 1, 270 }, + [37] = { 45.1, 41.6, 1, 270 }, + [38] = { 41.7, 39.5, 1, 270 }, + [39] = { 43.5, 38, 1, 270 }, + [40] = { 43.5, 34.3, 1, 270 }, + [41] = { 41.2, 30.5, 1, 270 }, + [42] = { 43.9, 29.7, 1, 270 }, + }, + ["lvl"] = "6-7", + }, + [1127] = { + ["coords"] = { + [1] = { 70.7, 61.6, 1, 270 }, + [2] = { 74.7, 61.3, 1, 270 }, + [3] = { 72.4, 61, 1, 270 }, + [4] = { 63.9, 60.5, 1, 270 }, + [5] = { 60.9, 60.3, 1, 270 }, + [6] = { 59.6, 60.1, 1, 270 }, + [7] = { 56.6, 60, 1, 270 }, + [8] = { 58.5, 59.7, 1, 270 }, + [9] = { 63.1, 59.2, 1, 270 }, + [10] = { 55.8, 59, 1, 270 }, + [11] = { 58.7, 58.9, 1, 270 }, + [12] = { 59.9, 58.6, 1, 270 }, + [13] = { 61.4, 58.4, 1, 270 }, + [14] = { 53.4, 58.2, 1, 270 }, + [15] = { 59, 57.9, 1, 270 }, + [16] = { 55.5, 57.4, 1, 270 }, + [17] = { 55.6, 57.4, 1, 270 }, + [18] = { 79.2, 57.2, 1, 270 }, + [19] = { 61.3, 56.7, 1, 270 }, + [20] = { 57.3, 56.7, 1, 270 }, + [21] = { 62.8, 56.2, 1, 270 }, + [22] = { 55.7, 55.8, 1, 270 }, + [23] = { 71.5, 55.6, 1, 270 }, + [24] = { 26.6, 55.1, 1, 270 }, + [25] = { 55.3, 54.3, 1, 270 }, + [26] = { 56.7, 54.3, 1, 270 }, + [27] = { 27.5, 53.9, 1, 270 }, + [28] = { 60.8, 53.9, 1, 270 }, + [29] = { 28.3, 53.3, 1, 270 }, + [30] = { 66.1, 53.3, 1, 270 }, + [31] = { 66.2, 52.7, 1, 270 }, + [32] = { 73.5, 52.1, 1, 270 }, + [33] = { 70.5, 52, 1, 270 }, + [34] = { 30.1, 51.9, 1, 270 }, + [35] = { 37.7, 51.9, 1, 270 }, + [36] = { 68.7, 51.7, 1, 270 }, + [37] = { 67.4, 51.7, 1, 270 }, + [38] = { 70.8, 51.6, 1, 270 }, + [39] = { 58.2, 51.3, 1, 270 }, + [40] = { 57.9, 50.4, 1, 270 }, + [41] = { 69.7, 50.2, 1, 270 }, + [42] = { 59.2, 50.1, 1, 270 }, + [43] = { 32, 49.8, 1, 270 }, + [44] = { 29.6, 49.7, 1, 270 }, + [45] = { 66.8, 49.3, 1, 270 }, + [46] = { 32.1, 48.8, 1, 270 }, + [47] = { 73.4, 48.7, 1, 270 }, + [48] = { 75.8, 48.2, 1, 270 }, + [49] = { 33.5, 48, 1, 270 }, + [50] = { 27.7, 47.4, 1, 270 }, + [51] = { 40.5, 47.2, 1, 270 }, + [52] = { 32.2, 47.1, 1, 270 }, + [53] = { 25.9, 46.4, 1, 270 }, + [54] = { 80.2, 46.3, 1, 270 }, + [55] = { 37.8, 46, 1, 270 }, + [56] = { 27.5, 45.7, 1, 270 }, + [57] = { 26.2, 44.7, 1, 270 }, + [58] = { 28.4, 44.3, 1, 270 }, + [59] = { 79.8, 43.3, 1, 270 }, + [60] = { 26.7, 42.9, 1, 270 }, + [61] = { 28, 42.7, 1, 270 }, + [62] = { 45.3, 42.6, 1, 270 }, + [63] = { 29.6, 42.5, 1, 270 }, + [64] = { 45.2, 42.2, 1, 270 }, + [65] = { 29.2, 40, 1, 270 }, + [66] = { 27.5, 39.3, 1, 270 }, + [67] = { 42.4, 38.9, 1, 270 }, + [68] = { 31.7, 38.7, 1, 270 }, + [69] = { 30.1, 38.4, 1, 270 }, + [70] = { 33.1, 37.5, 1, 270 }, + [71] = { 37.5, 37.4, 1, 270 }, + [72] = { 35.6, 36.8, 1, 270 }, + [73] = { 31, 35.7, 1, 270 }, + [74] = { 37.4, 35.6, 1, 270 }, + [75] = { 81.5, 35.6, 1, 270 }, + [76] = { 34.1, 35.2, 1, 270 }, + [77] = { 35.5, 34.9, 1, 270 }, + [78] = { 32.4, 34.4, 1, 270 }, + [79] = { 37, 34.3, 1, 270 }, + [80] = { 39.5, 34, 1, 270 }, + [81] = { 44.2, 32, 1, 270 }, + [82] = { 34.6, 31.5, 1, 270 }, + [83] = { 36.8, 31.2, 1, 270 }, + [84] = { 33.9, 31.1, 1, 270 }, + [85] = { 40.1, 30.5, 1, 270 }, + [86] = { 42.1, 30, 1, 270 }, + [87] = { 43.6, 29.6, 1, 270 }, + [88] = { 0.5, 79.6, 5602, 270 }, + [89] = { 1.4, 69.5, 5602, 270 }, + [90] = { 1.1, 66.8, 5602, 270 }, + [91] = { 2.6, 59.8, 5602, 270 }, + }, + ["lvl"] = "7-8", + }, + [1128] = { + ["coords"] = { + [1] = { 41.9, 66.8, 1, 270 }, + [2] = { 38.9, 62, 1, 270 }, + [3] = { 38.7, 61.1, 1, 270 }, + [4] = { 41.7, 60.9, 1, 270 }, + [5] = { 39.9, 60.9, 1, 270 }, + [6] = { 40.5, 60.8, 1, 270 }, + [7] = { 39, 60.5, 1, 270 }, + [8] = { 35.5, 60, 1, 270 }, + [9] = { 41.6, 59.9, 1, 270 }, + [10] = { 34.4, 59.5, 1, 270 }, + [11] = { 39.6, 59.1, 1, 270 }, + [12] = { 43.5, 59, 1, 270 }, + [13] = { 45.6, 58.2, 1, 270 }, + [14] = { 45.3, 58.1, 1, 270 }, + [15] = { 32.5, 57.9, 1, 270 }, + [16] = { 30.8, 57.2, 1, 270 }, + [17] = { 32.3, 56, 1, 270 }, + [18] = { 30.4, 55.6, 1, 270 }, + [19] = { 44.7, 55.3, 1, 270 }, + [20] = { 45, 55.2, 1, 270 }, + [21] = { 43.7, 51.9, 1, 270 }, + [22] = { 50.5, 51.8, 1, 270 }, + [23] = { 49.2, 51, 1, 270 }, + [24] = { 44.2, 51, 1, 270 }, + [25] = { 44.9, 50.2, 1, 270 }, + [26] = { 48.1, 49.9, 1, 270 }, + [27] = { 45.4, 49.3, 1, 270 }, + [28] = { 44.3, 47.8, 1, 270 }, + [29] = { 43.1, 45.9, 1, 270 }, + [30] = { 43.7, 44.9, 1, 270 }, + }, + ["lvl"] = "5-6", + }, + [1130] = { + ["coords"] = { + [1] = { 55.6, 58.5, 1, 9000 }, + }, + ["lvl"] = "12", + ["rnk"] = "4", + }, + [1131] = { + ["coords"] = { + [1] = { 50.7, 52.5, 1, 270 }, + [2] = { 51.5, 49.6, 1, 270 }, + [3] = { 52.1, 48.7, 1, 270 }, + [4] = { 45.8, 47.2, 1, 270 }, + [5] = { 46, 47.2, 1, 270 }, + [6] = { 43.2, 47.1, 1, 270 }, + [7] = { 51.6, 46.4, 1, 270 }, + [8] = { 51, 45, 1, 270 }, + [9] = { 49, 44.6, 1, 270 }, + [10] = { 48.9, 44.6, 1, 270 }, + [11] = { 33.8, 43.7, 1, 270 }, + [12] = { 33.5, 43.6, 1, 270 }, + [13] = { 45.1, 43.3, 1, 270 }, + [14] = { 34, 42.8, 1, 270 }, + [15] = { 44.9, 42.4, 1, 270 }, + [16] = { 45.7, 42.3, 1, 270 }, + [17] = { 34.6, 42.2, 1, 270 }, + [18] = { 34, 42.2, 1, 270 }, + [19] = { 45.1, 41.8, 1, 270 }, + [20] = { 44.9, 41.4, 1, 270 }, + [21] = { 34.5, 41.3, 1, 270 }, + [22] = { 34, 41.3, 1, 270 }, + [23] = { 33.9, 41, 1, 270 }, + }, + ["lvl"] = "7-8", + }, + [1132] = { + ["coords"] = { + [1] = { 34.2, 41.8, 1, 9000 }, + }, + ["lvl"] = "10", + ["rnk"] = "4", + }, + [1134] = { + ["coords"] = { + [1] = { 42.5, 55, 1, 270 }, + [2] = { 42.1, 54.8, 1, 270 }, + [3] = { 42.9, 54.6, 1, 270 }, + [4] = { 41.8, 54.6, 1, 270 }, + [5] = { 39.2, 49.3, 1, 270 }, + }, + ["lvl"] = "5-6", + }, + [1135] = { + ["coords"] = { + [1] = { 41.9, 54, 1, 270 }, + [2] = { 42.5, 53.7, 1, 270 }, + [3] = { 42.2, 53.4, 1, 270 }, + [4] = { 40.2, 53.3, 1, 270 }, + [5] = { 41.9, 52.7, 1, 270 }, + [6] = { 42.2, 52.6, 1, 270 }, + [7] = { 42.3, 52, 1, 270 }, + [8] = { 42.7, 51.9, 1, 270 }, + [9] = { 42, 51.5, 1, 270 }, + [10] = { 41.1, 50.6, 1, 270 }, + [11] = { 42.6, 50.4, 1, 270 }, + [12] = { 43, 50, 1, 270 }, + [13] = { 42.8, 49.9, 1, 270 }, + [14] = { 41.1, 49.8, 1, 270 }, + [15] = { 43.6, 49.6, 1, 270 }, + [16] = { 41.3, 49.4, 1, 270 }, + [17] = { 42.3, 49.2, 1, 270 }, + [18] = { 41, 49.2, 1, 270 }, + [19] = { 43.3, 49.2, 1, 270 }, + [20] = { 42.7, 49.2, 1, 270 }, + [21] = { 41.6, 49, 1, 270 }, + [22] = { 43.2, 48.9, 1, 270 }, + [23] = { 39.1, 48.8, 1, 270 }, + [24] = { 39.7, 48.7, 1, 270 }, + [25] = { 42.2, 48.5, 1, 270 }, + [26] = { 42, 48.4, 1, 270 }, + [27] = { 38.9, 48.4, 1, 270 }, + [28] = { 39.4, 48.1, 1, 270 }, + [29] = { 40.3, 47.8, 1, 270 }, + [30] = { 39.7, 47.7, 1, 270 }, + [31] = { 42.1, 47.7, 1, 270 }, + [32] = { 39.3, 47.4, 1, 270 }, + [33] = { 39.9, 47.2, 1, 270 }, + [34] = { 40.9, 47, 1, 270 }, + [35] = { 42, 47, 1, 270 }, + [36] = { 40.5, 46.9, 1, 270 }, + [37] = { 42.7, 46.8, 1, 270 }, + [38] = { 40.5, 46.6, 1, 270 }, + [39] = { 40.4, 46.5, 1, 270 }, + [40] = { 39.2, 46.3, 1, 270 }, + [41] = { 42.2, 46.1, 1, 270 }, + [42] = { 41.9, 46, 1, 270 }, + [43] = { 41.3, 45.4, 1, 270 }, + [44] = { 41.9, 45.2, 1, 270 }, + }, + ["lvl"] = "6-7", + }, + [1137] = { + ["coords"] = { + [1] = { 39, 47.5, 1, 9000 }, + }, + ["lvl"] = "9", + ["rnk"] = "4", + }, + [1138] = { + ["coords"] = { + [1] = { 44.6, 47.1, 1, 270 }, + [2] = { 45.7, 46.7, 1, 270 }, + [3] = { 43.3, 46.5, 1, 270 }, + [4] = { 45.6, 46.2, 1, 270 }, + [5] = { 45.9, 46.2, 1, 270 }, + [6] = { 45.7, 46, 1, 270 }, + [7] = { 51.3, 45.7, 1, 270 }, + [8] = { 51.3, 45.4, 1, 270 }, + [9] = { 44.4, 45.3, 1, 270 }, + [10] = { 49.7, 44.5, 1, 270 }, + }, + ["lvl"] = "6-7", + }, + [1139] = { + ["coords"] = { + [1] = { 34.6, 44.5, 38, 30 }, + [2] = { 16.3, 67, 5602, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [1140] = { + ["coords"] = { + [1] = { 69.9, 29.2, 11, 27000 }, + [2] = { 22.4, 1.4, 5602, 27000 }, + }, + ["lvl"] = "30", + ["rnk"] = "4", + }, + [1142] = { + ["coords"] = { + [1] = { 36.1, 31.7, 33, 300 }, + [2] = { 37.2, 31.4, 33, 300 }, + [3] = { 37.3, 31.3, 33, 300 }, + [4] = { 37.1, 31.1, 33, 300 }, + [5] = { 37.5, 31, 33, 300 }, + [6] = { 35.5, 30.9, 33, 300 }, + [7] = { 37.5, 30.9, 33, 300 }, + [8] = { 37.2, 30.8, 33, 300 }, + [9] = { 37.2, 30.6, 33, 300 }, + [10] = { 37.9, 30.2, 33, 300 }, + [11] = { 38.2, 30, 33, 300 }, + [12] = { 37, 28.7, 33, 300 }, + }, + ["lvl"] = "36-37", + }, + [1144] = { + ["coords"] = { + [1] = { 36.1, 31.7, 33, 300 }, + [2] = { 37.2, 31.4, 33, 300 }, + [3] = { 37.3, 31.3, 33, 300 }, + [4] = { 37.1, 31.1, 33, 300 }, + [5] = { 37.5, 31, 33, 300 }, + [6] = { 35.5, 30.9, 33, 300 }, + [7] = { 37.5, 30.9, 33, 300 }, + [8] = { 37.2, 30.8, 33, 300 }, + [9] = { 37.2, 30.6, 33, 300 }, + [10] = { 37.9, 30.2, 33, 300 }, + [11] = { 38.2, 30, 33, 300 }, + [12] = { 37, 28.7, 33, 300 }, + }, + ["lvl"] = "36-37", + }, + [1150] = { + ["coords"] = { + [1] = { 39.9, 14.4, 33, 300 }, + [2] = { 41.2, 14.1, 33, 300 }, + [3] = { 41, 13.7, 33, 300 }, + [4] = { 40.4, 12.3, 33, 300 }, + [5] = { 39.9, 11.5, 33, 300 }, + [6] = { 38.7, 11.3, 33, 300 }, + [7] = { 36.9, 10.5, 33, 300 }, + [8] = { 34.6, 10.5, 33, 300 }, + [9] = { 34, 9.6, 33, 300 }, + [10] = { 32.5, 8.9, 33, 300 }, + [11] = { 35.7, 8.2, 33, 300 }, + [12] = { 35.6, 8.1, 33, 300 }, + [13] = { 34.6, 8.1, 33, 300 }, + }, + ["lvl"] = "30-31", + }, + [1152] = { + ["coords"] = { + [1] = { 37.9, 32.6, 33, 300 }, + [2] = { 39.2, 31.9, 33, 300 }, + [3] = { 38.4, 31.4, 33, 300 }, + [4] = { 39.9, 30.7, 33, 300 }, + [5] = { 38.6, 29.8, 33, 300 }, + [6] = { 40.1, 29.5, 33, 300 }, + [7] = { 39.5, 28.7, 33, 300 }, + [8] = { 38.8, 28.5, 33, 300 }, + [9] = { 40.1, 28.4, 33, 300 }, + [10] = { 40.2, 27.2, 33, 300 }, + [11] = { 39.4, 25, 33, 300 }, + [12] = { 40.8, 24.7, 33, 300 }, + [13] = { 40.1, 22.9, 33, 300 }, + [14] = { 40.7, 22.2, 33, 300 }, + [15] = { 41.3, 21.5, 33, 300 }, + [16] = { 39.7, 21.5, 33, 300 }, + [17] = { 42.2, 21.2, 33, 300 }, + [18] = { 41.4, 20.7, 33, 300 }, + [19] = { 40.4, 19.4, 33, 300 }, + [20] = { 41.4, 19.1, 33, 300 }, + [21] = { 40.9, 17.7, 33, 300 }, + [22] = { 39.7, 17.5, 33, 300 }, + [23] = { 41.8, 17.5, 33, 300 }, + [24] = { 42.5, 16.7, 33, 300 }, + [25] = { 39.8, 16, 33, 300 }, + [26] = { 41.9, 15.9, 33, 300 }, + [27] = { 41.3, 15.3, 33, 300 }, + }, + ["lvl"] = "35-36", + }, + [1153] = { + ["coords"] = { + [1] = { 37.3, 47.8, 38, 300 }, + [2] = { 17.6, 68.7, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [1154] = { + ["coords"] = { + [1] = { 81.8, 61.7, 38, 30 }, + [2] = { 40.4, 75.8, 5602, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [1155] = { + ["coords"] = { + [1] = { 81.9, 64.7, 38, 100 }, + [2] = { 40.5, 77.4, 5602, 100 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [1156] = { + ["coords"] = { + [1] = { 81.6, 64.2, 38, 30 }, + [2] = { 40.4, 77.1, 5602, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [1157] = { + ["coords"] = { + [1] = { 13.8, 30.8, 11, 300 }, + [2] = { 13.2, 30.7, 11, 300 }, + [3] = { 14.1, 30.6, 11, 300 }, + [4] = { 13.6, 30.5, 11, 300 }, + [5] = { 13.9, 30.5, 11, 300 }, + [6] = { 13.5, 30.3, 11, 300 }, + [7] = { 14, 30.3, 11, 300 }, + [8] = { 14, 30.2, 11, 300 }, + [9] = { 13.6, 29.8, 11, 300 }, + [10] = { 13.7, 29.7, 11, 300 }, + [11] = { 14.1, 29.3, 11, 300 }, + [12] = { 13.9, 29.3, 11, 300 }, + [13] = { 14, 28.9, 11, 300 }, + [14] = { 15, 23.7, 11, 300 }, + }, + ["lvl"] = "26-27", + }, + [1158] = { + ["coords"] = { + [1] = { 13.5, 30.9, 11, 300 }, + [2] = { 14, 30, 11, 300 }, + [3] = { 13.3, 29.6, 11, 300 }, + [4] = { 14.5, 29, 11, 300 }, + [5] = { 14.1, 29, 11, 300 }, + [6] = { 13.9, 28.7, 11, 300 }, + [7] = { 14.1, 24.9, 11, 300 }, + [8] = { 14.8, 24.6, 11, 300 }, + [9] = { 14.3, 24.5, 11, 300 }, + [10] = { 14.6, 24.4, 11, 300 }, + [11] = { 14.8, 24.3, 11, 300 }, + [12] = { 13.7, 24.1, 11, 300 }, + [13] = { 14.5, 24.1, 11, 300 }, + [14] = { 15.5, 24.1, 11, 300 }, + [15] = { 14.3, 24, 11, 300 }, + [16] = { 15.1, 24, 11, 300 }, + [17] = { 14.2, 24, 11, 300 }, + [18] = { 14.5, 23.8, 11, 300 }, + [19] = { 14.6, 23.7, 11, 300 }, + [20] = { 15.1, 23.6, 11, 300 }, + [21] = { 15.2, 23.5, 11, 300 }, + [22] = { 15, 23.4, 11, 300 }, + [23] = { 15.3, 23.4, 11, 300 }, + [24] = { 15.4, 23.4, 11, 300 }, + [25] = { 14.4, 23.3, 11, 300 }, + }, + ["lvl"] = "27-28", + }, + [1161] = { + ["coords"] = { + [1] = { 31.4, 80.9, 38, 300 }, + [2] = { 30.8, 80.8, 38, 300 }, + [3] = { 31.6, 80.8, 38, 300 }, + [4] = { 32.7, 80, 38, 300 }, + [5] = { 31.2, 79.9, 38, 300 }, + [6] = { 32.6, 79.9, 38, 300 }, + [7] = { 32.1, 79.6, 38, 300 }, + [8] = { 32.8, 79.3, 38, 300 }, + [9] = { 32, 79.2, 38, 300 }, + [10] = { 32.1, 77.9, 38, 300 }, + [11] = { 33.4, 77.8, 38, 300 }, + [12] = { 31.6, 77.2, 38, 300 }, + [13] = { 34.7, 76.8, 38, 300 }, + [14] = { 31.7, 76.7, 38, 300 }, + [15] = { 35.1, 76.5, 38, 300 }, + [16] = { 31.4, 76.5, 38, 300 }, + [17] = { 35, 76.3, 38, 300 }, + [18] = { 34.5, 76.2, 38, 300 }, + [19] = { 33.3, 75.9, 38, 300 }, + [20] = { 31.5, 75.7, 38, 300 }, + [21] = { 30.7, 75.5, 38, 300 }, + [22] = { 31.6, 75.3, 38, 300 }, + [23] = { 30.5, 75.2, 38, 300 }, + [24] = { 30.9, 75.2, 38, 300 }, + [25] = { 32, 74.9, 38, 300 }, + [26] = { 31.3, 74.4, 38, 300 }, + [27] = { 31.9, 74.4, 38, 300 }, + [28] = { 30.8, 74.3, 38, 300 }, + [29] = { 33.4, 74.2, 38, 300 }, + [30] = { 30.8, 74, 38, 300 }, + [31] = { 34.7, 74, 38, 300 }, + [32] = { 29.6, 72.9, 38, 300 }, + [33] = { 30.2, 72.7, 38, 300 }, + [34] = { 29.6, 72.5, 38, 300 }, + [35] = { 34.9, 72.5, 38, 300 }, + [36] = { 32.4, 72.4, 38, 300 }, + [37] = { 35.2, 71.9, 38, 300 }, + [38] = { 30.1, 71.9, 38, 300 }, + [39] = { 33.7, 71.8, 38, 300 }, + [40] = { 31, 71.7, 38, 300 }, + [41] = { 34.7, 71.3, 38, 300 }, + [42] = { 33.8, 71.2, 38, 300 }, + [43] = { 35.4, 71, 38, 300 }, + [44] = { 35.3, 71, 38, 300 }, + [45] = { 33.1, 70.9, 38, 300 }, + [46] = { 33.8, 70.8, 38, 300 }, + [47] = { 32.1, 70.5, 38, 300 }, + [48] = { 33.5, 70.4, 38, 300 }, + [49] = { 33.4, 70.3, 38, 300 }, + [50] = { 33.1, 70, 38, 300 }, + [51] = { 28.4, 59.4, 38, 300 }, + [52] = { 27.6, 57.8, 38, 300 }, + [53] = { 26.7, 57.4, 38, 300 }, + [54] = { 26.4, 57.3, 38, 300 }, + [55] = { 27.2, 57.1, 38, 300 }, + [56] = { 26.5, 56.7, 38, 300 }, + [57] = { 27, 56.5, 38, 300 }, + [58] = { 27.4, 55.9, 38, 300 }, + [59] = { 27.1, 54.2, 38, 300 }, + [60] = { 26.1, 51.8, 38, 300 }, + [61] = { 27.3, 50.2, 38, 300 }, + [62] = { 26.6, 50.2, 38, 300 }, + [63] = { 26.1, 49.4, 38, 300 }, + [64] = { 25.9, 49, 38, 300 }, + [65] = { 26.2, 49, 38, 300 }, + [66] = { 26.6, 49, 38, 300 }, + [67] = { 28.3, 48.9, 38, 300 }, + [68] = { 25.8, 48.6, 38, 300 }, + [69] = { 27.8, 48.6, 38, 300 }, + [70] = { 26.3, 48.4, 38, 300 }, + [71] = { 27.2, 46.7, 38, 300 }, + [72] = { 19.9, 5.9, 1337, 300 }, + [73] = { 17, 5.6, 1337, 300 }, + [74] = { 20.8, 5.2, 1337, 300 }, + [75] = { 26.5, 1.7, 1337, 300 }, + [76] = { 19.3, 1.3, 1337, 300 }, + [77] = { 25.7, 1, 1337, 300 }, + [78] = { 14.6, 85.7, 5602, 300 }, + [79] = { 14.3, 85.7, 5602, 300 }, + [80] = { 14.7, 85.6, 5602, 300 }, + [81] = { 15.3, 85.3, 5602, 300 }, + [82] = { 14.5, 85.2, 5602, 300 }, + [83] = { 15.2, 85.2, 5602, 300 }, + [84] = { 15, 85, 5602, 300 }, + [85] = { 15.3, 84.9, 5602, 300 }, + [86] = { 15, 84.8, 5602, 300 }, + [87] = { 15, 84.2, 5602, 300 }, + [88] = { 15.6, 84.1, 5602, 300 }, + [89] = { 14.7, 83.8, 5602, 300 }, + [90] = { 16.3, 83.6, 5602, 300 }, + [91] = { 14.8, 83.5, 5602, 300 }, + [92] = { 16.5, 83.5, 5602, 300 }, + [93] = { 14.6, 83.4, 5602, 300 }, + [94] = { 16.4, 83.3, 5602, 300 }, + [95] = { 16.2, 83.3, 5602, 300 }, + [96] = { 15.6, 83.1, 5602, 300 }, + [97] = { 14.7, 83, 5602, 300 }, + [98] = { 14.3, 82.9, 5602, 300 }, + [99] = { 14.8, 82.9, 5602, 300 }, + [100] = { 14.2, 82.8, 5602, 300 }, + [101] = { 14.4, 82.8, 5602, 300 }, + [102] = { 14.9, 82.6, 5602, 300 }, + [103] = { 14.6, 82.4, 5602, 300 }, + [104] = { 14.9, 82.4, 5602, 300 }, + [105] = { 14.3, 82.3, 5602, 300 }, + [106] = { 15.7, 82.3, 5602, 300 }, + [107] = { 14.3, 82.2, 5602, 300 }, + [108] = { 16.3, 82.1, 5602, 300 }, + [109] = { 13.7, 81.6, 5602, 300 }, + [110] = { 14, 81.5, 5602, 300 }, + [111] = { 13.7, 81.4, 5602, 300 }, + [112] = { 16.4, 81.4, 5602, 300 }, + [113] = { 15.1, 81.3, 5602, 300 }, + [114] = { 16.6, 81.1, 5602, 300 }, + [115] = { 13.9, 81.1, 5602, 300 }, + [116] = { 15.8, 81.1, 5602, 300 }, + [117] = { 14.4, 81, 5602, 300 }, + [118] = { 16.3, 80.8, 5602, 300 }, + [119] = { 15.9, 80.7, 5602, 300 }, + [120] = { 16.7, 80.6, 5602, 300 }, + [121] = { 16.6, 80.6, 5602, 300 }, + [122] = { 15.5, 80.6, 5602, 300 }, + [123] = { 15.9, 80.5, 5602, 300 }, + [124] = { 15, 80.4, 5602, 300 }, + [125] = { 15.7, 80.3, 5602, 300 }, + [126] = { 15.6, 80.2, 5602, 300 }, + [127] = { 15.5, 80.1, 5602, 300 }, + [128] = { 13.1, 74.7, 5602, 300 }, + [129] = { 12.7, 73.8, 5602, 300 }, + [130] = { 12.2, 73.7, 5602, 300 }, + [131] = { 12.1, 73.6, 5602, 300 }, + [132] = { 12.5, 73.5, 5602, 300 }, + [133] = { 12.1, 73.3, 5602, 300 }, + [134] = { 12.4, 73.2, 5602, 300 }, + [135] = { 12.6, 72.9, 5602, 300 }, + [136] = { 12.4, 72, 5602, 300 }, + [137] = { 11.9, 70.8, 5602, 300 }, + [138] = { 12.5, 69.9, 5602, 300 }, + [139] = { 12.2, 69.9, 5602, 300 }, + [140] = { 11.9, 69.5, 5602, 300 }, + [141] = { 11.8, 69.4, 5602, 300 }, + [142] = { 11.9, 69.4, 5602, 300 }, + [143] = { 12.2, 69.3, 5602, 300 }, + [144] = { 13.1, 69.3, 5602, 300 }, + [145] = { 11.8, 69.1, 5602, 300 }, + [146] = { 12.8, 69.1, 5602, 300 }, + [147] = { 12, 69, 5602, 300 }, + [148] = { 12.4, 68.1, 5602, 300 }, + }, + ["lvl"] = "11-12", + }, + [1162] = { + ["coords"] = { + [1] = { 31.4, 80.9, 38, 300 }, + [2] = { 30.8, 80.8, 38, 300 }, + [3] = { 31.6, 80.8, 38, 300 }, + [4] = { 32.7, 80, 38, 300 }, + [5] = { 31.2, 79.9, 38, 300 }, + [6] = { 32.6, 79.9, 38, 300 }, + [7] = { 32.1, 79.6, 38, 300 }, + [8] = { 32.8, 79.3, 38, 300 }, + [9] = { 32, 79.2, 38, 300 }, + [10] = { 32.1, 77.9, 38, 300 }, + [11] = { 33.4, 77.8, 38, 300 }, + [12] = { 31.6, 77.2, 38, 300 }, + [13] = { 34.7, 76.8, 38, 300 }, + [14] = { 31.7, 76.7, 38, 300 }, + [15] = { 35.1, 76.5, 38, 300 }, + [16] = { 31.4, 76.5, 38, 300 }, + [17] = { 35, 76.3, 38, 300 }, + [18] = { 34.5, 76.2, 38, 300 }, + [19] = { 33.3, 75.9, 38, 300 }, + [20] = { 31.5, 75.7, 38, 300 }, + [21] = { 30.7, 75.5, 38, 300 }, + [22] = { 31.6, 75.3, 38, 300 }, + [23] = { 30.5, 75.2, 38, 300 }, + [24] = { 30.9, 75.2, 38, 300 }, + [25] = { 32, 74.9, 38, 300 }, + [26] = { 31.3, 74.4, 38, 300 }, + [27] = { 31.9, 74.4, 38, 300 }, + [28] = { 30.8, 74.3, 38, 300 }, + [29] = { 33.4, 74.2, 38, 300 }, + [30] = { 30.8, 74, 38, 300 }, + [31] = { 34.7, 74, 38, 300 }, + [32] = { 29.6, 72.9, 38, 300 }, + [33] = { 30.2, 72.7, 38, 300 }, + [34] = { 29.6, 72.5, 38, 300 }, + [35] = { 34.9, 72.5, 38, 300 }, + [36] = { 32.4, 72.4, 38, 300 }, + [37] = { 35.2, 71.9, 38, 300 }, + [38] = { 30.1, 71.9, 38, 300 }, + [39] = { 33.7, 71.8, 38, 300 }, + [40] = { 31, 71.7, 38, 300 }, + [41] = { 34.7, 71.3, 38, 300 }, + [42] = { 33.8, 71.2, 38, 300 }, + [43] = { 35.4, 71, 38, 300 }, + [44] = { 35.3, 71, 38, 300 }, + [45] = { 33.1, 70.9, 38, 300 }, + [46] = { 33.8, 70.8, 38, 300 }, + [47] = { 32.1, 70.5, 38, 300 }, + [48] = { 33.5, 70.4, 38, 300 }, + [49] = { 33.4, 70.3, 38, 300 }, + [50] = { 33.1, 70, 38, 300 }, + [51] = { 28.4, 59.4, 38, 300 }, + [52] = { 27.6, 57.8, 38, 300 }, + [53] = { 26.7, 57.4, 38, 300 }, + [54] = { 26.4, 57.3, 38, 300 }, + [55] = { 27.2, 57.1, 38, 300 }, + [56] = { 26.5, 56.7, 38, 300 }, + [57] = { 27, 56.5, 38, 300 }, + [58] = { 27.4, 55.9, 38, 300 }, + [59] = { 27.1, 54.2, 38, 300 }, + [60] = { 26.1, 51.8, 38, 300 }, + [61] = { 27.3, 50.2, 38, 300 }, + [62] = { 26.6, 50.2, 38, 300 }, + [63] = { 26.1, 49.4, 38, 300 }, + [64] = { 25.9, 49, 38, 300 }, + [65] = { 26.2, 49, 38, 300 }, + [66] = { 26.6, 49, 38, 300 }, + [67] = { 28.3, 48.9, 38, 300 }, + [68] = { 25.8, 48.6, 38, 300 }, + [69] = { 27.8, 48.6, 38, 300 }, + [70] = { 26.3, 48.4, 38, 300 }, + [71] = { 27.2, 46.7, 38, 300 }, + [72] = { 19.9, 5.9, 1337, 300 }, + [73] = { 17, 5.6, 1337, 300 }, + [74] = { 20.8, 5.2, 1337, 300 }, + [75] = { 26.5, 1.7, 1337, 300 }, + [76] = { 19.3, 1.3, 1337, 300 }, + [77] = { 25.7, 1, 1337, 300 }, + [78] = { 14.6, 85.7, 5602, 300 }, + [79] = { 14.3, 85.7, 5602, 300 }, + [80] = { 14.7, 85.6, 5602, 300 }, + [81] = { 15.3, 85.3, 5602, 300 }, + [82] = { 14.5, 85.2, 5602, 300 }, + [83] = { 15.2, 85.2, 5602, 300 }, + [84] = { 15, 85, 5602, 300 }, + [85] = { 15.3, 84.9, 5602, 300 }, + [86] = { 15, 84.8, 5602, 300 }, + [87] = { 15, 84.2, 5602, 300 }, + [88] = { 15.6, 84.1, 5602, 300 }, + [89] = { 14.7, 83.8, 5602, 300 }, + [90] = { 16.3, 83.6, 5602, 300 }, + [91] = { 14.8, 83.5, 5602, 300 }, + [92] = { 16.5, 83.5, 5602, 300 }, + [93] = { 14.6, 83.4, 5602, 300 }, + [94] = { 16.4, 83.3, 5602, 300 }, + [95] = { 16.2, 83.3, 5602, 300 }, + [96] = { 15.6, 83.1, 5602, 300 }, + [97] = { 14.7, 83, 5602, 300 }, + [98] = { 14.3, 82.9, 5602, 300 }, + [99] = { 14.8, 82.9, 5602, 300 }, + [100] = { 14.2, 82.8, 5602, 300 }, + [101] = { 14.4, 82.8, 5602, 300 }, + [102] = { 14.9, 82.6, 5602, 300 }, + [103] = { 14.6, 82.4, 5602, 300 }, + [104] = { 14.9, 82.4, 5602, 300 }, + [105] = { 14.3, 82.3, 5602, 300 }, + [106] = { 15.7, 82.3, 5602, 300 }, + [107] = { 14.3, 82.2, 5602, 300 }, + [108] = { 16.3, 82.1, 5602, 300 }, + [109] = { 13.7, 81.6, 5602, 300 }, + [110] = { 14, 81.5, 5602, 300 }, + [111] = { 13.7, 81.4, 5602, 300 }, + [112] = { 16.4, 81.4, 5602, 300 }, + [113] = { 15.1, 81.3, 5602, 300 }, + [114] = { 16.6, 81.1, 5602, 300 }, + [115] = { 13.9, 81.1, 5602, 300 }, + [116] = { 15.8, 81.1, 5602, 300 }, + [117] = { 14.4, 81, 5602, 300 }, + [118] = { 16.3, 80.8, 5602, 300 }, + [119] = { 15.9, 80.7, 5602, 300 }, + [120] = { 16.7, 80.6, 5602, 300 }, + [121] = { 16.6, 80.6, 5602, 300 }, + [122] = { 15.5, 80.6, 5602, 300 }, + [123] = { 15.9, 80.5, 5602, 300 }, + [124] = { 15, 80.4, 5602, 300 }, + [125] = { 15.7, 80.3, 5602, 300 }, + [126] = { 15.6, 80.2, 5602, 300 }, + [127] = { 15.5, 80.1, 5602, 300 }, + [128] = { 13.1, 74.7, 5602, 300 }, + [129] = { 12.7, 73.8, 5602, 300 }, + [130] = { 12.2, 73.7, 5602, 300 }, + [131] = { 12.1, 73.6, 5602, 300 }, + [132] = { 12.5, 73.5, 5602, 300 }, + [133] = { 12.1, 73.3, 5602, 300 }, + [134] = { 12.4, 73.2, 5602, 300 }, + [135] = { 12.6, 72.9, 5602, 300 }, + [136] = { 12.4, 72, 5602, 300 }, + [137] = { 11.9, 70.8, 5602, 300 }, + [138] = { 12.5, 69.9, 5602, 300 }, + [139] = { 12.2, 69.9, 5602, 300 }, + [140] = { 11.9, 69.5, 5602, 300 }, + [141] = { 11.8, 69.4, 5602, 300 }, + [142] = { 11.9, 69.4, 5602, 300 }, + [143] = { 12.2, 69.3, 5602, 300 }, + [144] = { 13.1, 69.3, 5602, 300 }, + [145] = { 11.8, 69.1, 5602, 300 }, + [146] = { 12.8, 69.1, 5602, 300 }, + [147] = { 12, 69, 5602, 300 }, + [148] = { 12.4, 68.1, 5602, 300 }, + }, + ["lvl"] = "11-12", + }, + [1163] = { + ["coords"] = { + [1] = { 35, 90.9, 38, 300 }, + [2] = { 34.9, 90.1, 38, 300 }, + [3] = { 32.8, 89.9, 38, 300 }, + [4] = { 34.6, 89.8, 38, 300 }, + [5] = { 35.6, 89.5, 38, 300 }, + [6] = { 33.8, 89.1, 38, 300 }, + [7] = { 34.9, 88.7, 38, 300 }, + [8] = { 33.6, 88.5, 38, 300 }, + [9] = { 36.4, 88.4, 38, 300 }, + [10] = { 29, 87.7, 38, 300 }, + [11] = { 34.4, 87.6, 38, 300 }, + [12] = { 29.2, 87.6, 38, 300 }, + [13] = { 35.5, 87.5, 38, 300 }, + [14] = { 35.2, 87.5, 38, 300 }, + [15] = { 33.7, 87.4, 38, 300 }, + [16] = { 28.3, 87, 38, 300 }, + [17] = { 28.2, 86.9, 38, 300 }, + [18] = { 29.4, 86.7, 38, 300 }, + [19] = { 36.2, 86.5, 38, 300 }, + [20] = { 28.7, 86.2, 38, 300 }, + [21] = { 28, 86, 38, 300 }, + [22] = { 36.4, 86, 38, 300 }, + [23] = { 34.2, 85.9, 38, 300 }, + [24] = { 27.5, 85.9, 38, 300 }, + [25] = { 27.4, 85.6, 38, 300 }, + [26] = { 31.3, 85.4, 38, 300 }, + [27] = { 37.1, 85.4, 38, 300 }, + [28] = { 34, 85, 38, 300 }, + [29] = { 28.9, 84.9, 38, 300 }, + [30] = { 34.6, 84.9, 38, 300 }, + [31] = { 36, 84.7, 38, 300 }, + [32] = { 35.9, 84.2, 38, 300 }, + [33] = { 36.7, 84.2, 38, 300 }, + [34] = { 35.2, 84, 38, 300 }, + [35] = { 30.1, 84, 38, 300 }, + [36] = { 28.5, 83.7, 38, 300 }, + [37] = { 36.3, 83.6, 38, 300 }, + [38] = { 36.1, 83.6, 38, 300 }, + [39] = { 28.1, 83.5, 38, 300 }, + [40] = { 27.9, 83.4, 38, 300 }, + [41] = { 36.3, 83, 38, 300 }, + [42] = { 35.3, 82.9, 38, 300 }, + [43] = { 35.3, 82.6, 38, 300 }, + [44] = { 34.7, 82.4, 38, 300 }, + [45] = { 34.4, 81.8, 38, 300 }, + [46] = { 29.6, 81.5, 38, 300 }, + [47] = { 27.9, 81.5, 38, 300 }, + [48] = { 36.5, 81.4, 38, 300 }, + [49] = { 29, 81.2, 38, 300 }, + [50] = { 28, 81.2, 38, 300 }, + [51] = { 29, 80.9, 38, 300 }, + [52] = { 35.6, 80.9, 38, 300 }, + [53] = { 35.4, 80.1, 38, 300 }, + [54] = { 36.6, 79.7, 38, 300 }, + [55] = { 36.7, 77.8, 38, 300 }, + [56] = { 49.6, 30, 38, 300 }, + [57] = { 48.6, 29.9, 38, 300 }, + [58] = { 48.9, 29.9, 38, 300 }, + [59] = { 48.8, 29.5, 38, 300 }, + [60] = { 48.1, 29.1, 38, 300 }, + [61] = { 48.7, 28.9, 38, 300 }, + [62] = { 47.8, 28.5, 38, 300 }, + [63] = { 50.1, 27.2, 38, 300 }, + [64] = { 50.6, 25, 38, 300 }, + [65] = { 50.9, 24, 38, 300 }, + [66] = { 50.5, 24, 38, 300 }, + [67] = { 51.3, 23.7, 38, 300 }, + [68] = { 50, 23.6, 38, 300 }, + [69] = { 51, 23.3, 38, 300 }, + [70] = { 47.8, 23.1, 38, 300 }, + [71] = { 49, 22, 38, 300 }, + [72] = { 46.5, 21.2, 38, 300 }, + [73] = { 48.3, 21.2, 38, 300 }, + [74] = { 47.7, 21.1, 38, 300 }, + [75] = { 48.7, 21, 38, 300 }, + [76] = { 48.1, 20.9, 38, 300 }, + [77] = { 48.2, 20.7, 38, 300 }, + [78] = { 48, 19.1, 38, 300 }, + [79] = { 37.5, 54.8, 1337, 300 }, + [80] = { 37, 50.7, 1337, 300 }, + [81] = { 26.7, 49.8, 1337, 300 }, + [82] = { 35.6, 49.4, 1337, 300 }, + [83] = { 40.8, 48, 1337, 300 }, + [84] = { 31.5, 45.9, 1337, 300 }, + [85] = { 37.1, 44.2, 1337, 300 }, + [86] = { 30.5, 42.9, 1337, 300 }, + [87] = { 44.3, 42.4, 1337, 300 }, + [88] = { 8.3, 39.2, 1337, 300 }, + [89] = { 34.6, 38.9, 1337, 300 }, + [90] = { 9.3, 38.8, 1337, 300 }, + [91] = { 39.9, 38.1, 1337, 300 }, + [92] = { 38.8, 38, 1337, 300 }, + [93] = { 31.5, 37.8, 1337, 300 }, + [94] = { 4.9, 35.9, 1337, 300 }, + [95] = { 4.3, 35.3, 1337, 300 }, + [96] = { 10.3, 34.4, 1337, 300 }, + [97] = { 43.4, 33.5, 1337, 300 }, + [98] = { 6.8, 32, 1337, 300 }, + [99] = { 3.2, 31.1, 1337, 300 }, + [100] = { 44.3, 30.9, 1337, 300 }, + [101] = { 33.5, 30.4, 1337, 300 }, + [102] = { 1, 30.3, 1337, 300 }, + [103] = { 0.6, 28.7, 1337, 300 }, + [104] = { 19.6, 27.8, 1337, 300 }, + [105] = { 48, 27.7, 1337, 300 }, + [106] = { 32.8, 26, 1337, 300 }, + [107] = { 7.9, 25.7, 1337, 300 }, + [108] = { 35.8, 25.3, 1337, 300 }, + [109] = { 42.4, 24.3, 1337, 300 }, + [110] = { 42.1, 22.1, 1337, 300 }, + [111] = { 45.7, 22, 1337, 300 }, + [112] = { 38.4, 21.2, 1337, 300 }, + [113] = { 13.6, 21.1, 1337, 300 }, + [114] = { 5.8, 19.7, 1337, 300 }, + [115] = { 44, 19.3, 1337, 300 }, + [116] = { 43.1, 18.9, 1337, 300 }, + [117] = { 3.8, 18.5, 1337, 300 }, + [118] = { 3, 18.1, 1337, 300 }, + [119] = { 44.1, 16.1, 1337, 300 }, + [120] = { 39.3, 15.9, 1337, 300 }, + [121] = { 39.1, 14.1, 1337, 300 }, + [122] = { 36.4, 13.3, 1337, 300 }, + [123] = { 34.6, 10.2, 1337, 300 }, + [124] = { 11.1, 8.7, 1337, 300 }, + [125] = { 2.8, 8.6, 1337, 300 }, + [126] = { 45, 8.5, 1337, 300 }, + [127] = { 8.4, 7.5, 1337, 300 }, + [128] = { 3.3, 7.3, 1337, 300 }, + [129] = { 8.5, 5.9, 1337, 300 }, + [130] = { 40.8, 5.7, 1337, 300 }, + [131] = { 39.8, 2, 1337, 300 }, + [132] = { 45.5, 0.1, 1337, 300 }, + [133] = { 16.5, 90.8, 5602, 300 }, + [134] = { 16.4, 90.4, 5602, 300 }, + [135] = { 15.3, 90.3, 5602, 300 }, + [136] = { 16.3, 90.3, 5602, 300 }, + [137] = { 16.8, 90.1, 5602, 300 }, + [138] = { 15.8, 89.9, 5602, 300 }, + [139] = { 16.4, 89.7, 5602, 300 }, + [140] = { 15.7, 89.6, 5602, 300 }, + [141] = { 17.2, 89.5, 5602, 300 }, + [142] = { 13.4, 89.2, 5602, 300 }, + [143] = { 16.2, 89.2, 5602, 300 }, + [144] = { 13.5, 89.2, 5602, 300 }, + [145] = { 16.7, 89.1, 5602, 300 }, + [146] = { 16.6, 89.1, 5602, 300 }, + [147] = { 15.8, 89.1, 5602, 300 }, + [148] = { 13, 88.9, 5602, 300 }, + [149] = { 13, 88.8, 5602, 300 }, + [150] = { 13.6, 88.7, 5602, 300 }, + [151] = { 17.1, 88.6, 5602, 300 }, + [152] = { 13.2, 88.4, 5602, 300 }, + [153] = { 12.9, 88.3, 5602, 300 }, + [154] = { 17.2, 88.3, 5602, 300 }, + [155] = { 16, 88.3, 5602, 300 }, + [156] = { 12.6, 88.3, 5602, 300 }, + [157] = { 12.6, 88.1, 5602, 300 }, + [158] = { 14.6, 88, 5602, 300 }, + [159] = { 17.6, 88, 5602, 300 }, + [160] = { 16, 87.8, 5602, 300 }, + [161] = { 13.4, 87.8, 5602, 300 }, + [162] = { 16.3, 87.7, 5602, 300 }, + [163] = { 17, 87.6, 5602, 300 }, + [164] = { 16.9, 87.4, 5602, 300 }, + [165] = { 17.3, 87.4, 5602, 300 }, + [166] = { 16.5, 87.3, 5602, 300 }, + [167] = { 14, 87.3, 5602, 300 }, + [168] = { 13.1, 87.1, 5602, 300 }, + [169] = { 17.1, 87.1, 5602, 300 }, + [170] = { 17, 87.1, 5602, 300 }, + [171] = { 12.9, 87, 5602, 300 }, + [172] = { 12.8, 87, 5602, 300 }, + [173] = { 17.1, 86.8, 5602, 300 }, + [174] = { 16.6, 86.7, 5602, 300 }, + [175] = { 16.6, 86.6, 5602, 300 }, + [176] = { 16.3, 86.5, 5602, 300 }, + [177] = { 16.1, 86.2, 5602, 300 }, + [178] = { 13.7, 86, 5602, 300 }, + [179] = { 12.8, 86, 5602, 300 }, + [180] = { 17.2, 86, 5602, 300 }, + [181] = { 13.4, 85.9, 5602, 300 }, + [182] = { 12.9, 85.9, 5602, 300 }, + [183] = { 13.4, 85.7, 5602, 300 }, + [184] = { 16.8, 85.7, 5602, 300 }, + [185] = { 16.7, 85.3, 5602, 300 }, + [186] = { 17.3, 85.1, 5602, 300 }, + [187] = { 17.4, 84.1, 5602, 300 }, + [188] = { 23.9, 59.6, 5602, 300 }, + [189] = { 23.4, 59.5, 5602, 300 }, + [190] = { 23.6, 59.5, 5602, 300 }, + [191] = { 23.5, 59.3, 5602, 300 }, + [192] = { 23.2, 59.1, 5602, 300 }, + [193] = { 23.5, 59, 5602, 300 }, + [194] = { 23, 58.8, 5602, 300 }, + [195] = { 24.2, 58.2, 5602, 300 }, + [196] = { 24.5, 57, 5602, 300 }, + [197] = { 24.6, 56.5, 5602, 300 }, + [198] = { 24.4, 56.5, 5602, 300 }, + [199] = { 24.8, 56.3, 5602, 300 }, + [200] = { 24.1, 56.3, 5602, 300 }, + [201] = { 24.7, 56.2, 5602, 300 }, + [202] = { 23, 56, 5602, 300 }, + [203] = { 23.7, 55.5, 5602, 300 }, + [204] = { 22.4, 55.1, 5602, 300 }, + [205] = { 23.3, 55.1, 5602, 300 }, + [206] = { 23, 55, 5602, 300 }, + [207] = { 23.5, 55, 5602, 300 }, + [208] = { 23.2, 54.9, 5602, 300 }, + [209] = { 23.3, 54.8, 5602, 300 }, + [210] = { 23.1, 54, 5602, 300 }, + }, + ["lvl"] = "13-14", + }, + [1164] = { + ["coords"] = { + [1] = { 38.8, 12.8, 3, 300 }, + [2] = { 39, 12.7, 3, 300 }, + [3] = { 38.6, 12, 3, 300 }, + [4] = { 37.3, 92.4, 38, 300 }, + [5] = { 35.8, 92.1, 38, 300 }, + [6] = { 34.3, 91.6, 38, 120 }, + [7] = { 34.6, 91.5, 38, 120 }, + [8] = { 35.1, 91.4, 38, 300 }, + [9] = { 33, 91.3, 38, 300 }, + [10] = { 36.3, 91, 38, 300 }, + [11] = { 33.3, 91, 38, 300 }, + [12] = { 37.5, 90.1, 38, 300 }, + [13] = { 38.1, 87.7, 38, 300 }, + [14] = { 38.2, 87.7, 38, 300 }, + [15] = { 37.9, 87, 38, 300 }, + [16] = { 37.5, 86.2, 38, 300 }, + [17] = { 54, 27.2, 38, 300 }, + [18] = { 54.5, 27, 38, 300 }, + [19] = { 55.2, 27, 38, 300 }, + [20] = { 52.8, 26.8, 38, 300 }, + [21] = { 54.4, 26.7, 38, 300 }, + [22] = { 54.5, 26.4, 38, 300 }, + [23] = { 54.2, 26, 38, 300 }, + [24] = { 53.7, 25.1, 38, 300 }, + [25] = { 52.7, 24.9, 38, 300 }, + [26] = { 52.2, 24.7, 38, 300 }, + [27] = { 51.8, 24.6, 38, 300 }, + [28] = { 52.2, 24.1, 38, 300 }, + [29] = { 52.6, 23.9, 38, 300 }, + [30] = { 51.9, 23.5, 38, 300 }, + [31] = { 53.1, 22.8, 38, 300 }, + [32] = { 52.2, 21.8, 38, 300 }, + [33] = { 36, 74, 1337, 300 }, + [34] = { 35.1, 72.8, 1337, 300 }, + [35] = { 36.5, 71.7, 1337, 300 }, + [36] = { 43.3, 70.7, 1337, 300 }, + [37] = { 39.9, 70.4, 1337, 300 }, + [38] = { 41.9, 69.7, 1337, 300 }, + [39] = { 46.3, 69.5, 1337, 300 }, + [40] = { 31.8, 69.4, 1337, 300 }, + [41] = { 44.7, 67.8, 1337, 300 }, + [42] = { 48.7, 66.2, 1337, 300 }, + [43] = { 43, 62.8, 1337, 300 }, + [44] = { 49, 62.1, 1337, 300 }, + [45] = { 41.8, 60.6, 1337, 300 }, + [46] = { 34, 58.4, 1337, 120 }, + [47] = { 35.5, 57.9, 1337, 120 }, + [48] = { 38, 57.4, 1337, 300 }, + [49] = { 27.8, 56.6, 1337, 300 }, + [50] = { 43.8, 55.4, 1337, 300 }, + [51] = { 29.5, 55.3, 1337, 300 }, + [52] = { 50, 50.8, 1337, 300 }, + [53] = { 52.8, 39.3, 1337, 300 }, + [54] = { 53.5, 39.2, 1337, 300 }, + [55] = { 51.7, 35.8, 1337, 300 }, + [56] = { 49.8, 32, 1337, 300 }, + [57] = { 16.3, 92.8, 5602, 300 }, + [58] = { 16.2, 92.7, 5602, 300 }, + [59] = { 16.3, 92.6, 5602, 300 }, + [60] = { 17.1, 92.5, 5602, 300 }, + [61] = { 16.7, 92.5, 5602, 300 }, + [62] = { 16.9, 92.4, 5602, 300 }, + [63] = { 17.4, 92.4, 5602, 300 }, + [64] = { 15.9, 92.4, 5602, 300 }, + [65] = { 17.2, 92.2, 5602, 300 }, + [66] = { 17.6, 92, 5602, 300 }, + [67] = { 17, 91.7, 5602, 300 }, + [68] = { 17.7, 91.6, 5602, 300 }, + [69] = { 16.9, 91.4, 5602, 300 }, + [70] = { 16.1, 91.2, 5602, 120 }, + [71] = { 16.2, 91.2, 5602, 120 }, + [72] = { 16.5, 91.1, 5602, 300 }, + [73] = { 15.4, 91, 5602, 300 }, + [74] = { 17.1, 90.9, 5602, 300 }, + [75] = { 15.6, 90.9, 5602, 300 }, + [76] = { 17.8, 90.4, 5602, 300 }, + [77] = { 18.1, 89.2, 5602, 300 }, + [78] = { 17.9, 88.8, 5602, 300 }, + [79] = { 17.7, 88.4, 5602, 300 }, + [80] = { 26.2, 58.1, 5602, 300 }, + [81] = { 26.5, 58, 5602, 300 }, + [82] = { 26.8, 58, 5602, 300 }, + [83] = { 25.6, 57.9, 5602, 300 }, + [84] = { 26.4, 57.9, 5602, 300 }, + [85] = { 26.5, 57.7, 5602, 300 }, + [86] = { 26.3, 57.5, 5602, 300 }, + [87] = { 26, 57.1, 5602, 300 }, + [88] = { 25.5, 57, 5602, 300 }, + [89] = { 25.3, 56.9, 5602, 300 }, + [90] = { 25.1, 56.8, 5602, 300 }, + [91] = { 25.3, 56.5, 5602, 300 }, + [92] = { 25.5, 56.4, 5602, 300 }, + [93] = { 25.1, 56.3, 5602, 300 }, + [94] = { 25.7, 55.9, 5602, 300 }, + [95] = { 25.3, 55.4, 5602, 300 }, + }, + ["lvl"] = "15-16", + }, + [1165] = { + ["coords"] = { + [1] = { 71.6, 68.5, 38, 300 }, + [2] = { 71.2, 68.5, 38, 300 }, + [3] = { 72.3, 68.2, 38, 300 }, + [4] = { 70.1, 67.4, 38, 300 }, + [5] = { 69.4, 67.2, 38, 300 }, + [6] = { 72.6, 66.8, 38, 300 }, + [7] = { 70, 66.5, 38, 300 }, + [8] = { 70.1, 66.1, 38, 300 }, + [9] = { 69.1, 66.1, 38, 300 }, + [10] = { 68, 66.1, 38, 300 }, + [11] = { 69.2, 66, 38, 300 }, + [12] = { 70.9, 66, 38, 300 }, + [13] = { 68, 65.8, 38, 300 }, + [14] = { 70.6, 64.8, 38, 300 }, + [15] = { 72.6, 64.7, 38, 300 }, + [16] = { 70.9, 64.3, 38, 300 }, + [17] = { 72.5, 64.2, 38, 300 }, + [18] = { 70.8, 63.5, 38, 300 }, + [19] = { 69, 63.3, 38, 300 }, + [20] = { 72.6, 63.3, 38, 300 }, + [21] = { 69.1, 63.3, 38, 300 }, + [22] = { 70, 62.7, 38, 300 }, + [23] = { 68.3, 62.6, 38, 300 }, + [24] = { 68.2, 62.6, 38, 300 }, + [25] = { 68.7, 62.4, 38, 300 }, + [26] = { 72.7, 62, 38, 300 }, + [27] = { 70.6, 60, 38, 300 }, + [28] = { 69, 59.7, 38, 300 }, + [29] = { 67, 59.4, 38, 300 }, + [30] = { 69.6, 59.3, 38, 300 }, + [31] = { 67.9, 59.1, 38, 300 }, + [32] = { 35.2, 79.4, 5602, 300 }, + [33] = { 35, 79.4, 5602, 300 }, + [34] = { 35.6, 79.2, 5602, 300 }, + [35] = { 34.5, 78.8, 5602, 300 }, + [36] = { 34.1, 78.7, 5602, 300 }, + [37] = { 35.7, 78.5, 5602, 300 }, + [38] = { 34.4, 78.3, 5602, 300 }, + [39] = { 34.4, 78.1, 5602, 300 }, + [40] = { 33.9, 78.1, 5602, 300 }, + [41] = { 33.4, 78.1, 5602, 300 }, + [42] = { 34, 78.1, 5602, 300 }, + [43] = { 34.9, 78.1, 5602, 300 }, + [44] = { 33.4, 77.9, 5602, 300 }, + [45] = { 34.7, 77.4, 5602, 300 }, + [46] = { 35.7, 77.4, 5602, 300 }, + [47] = { 34.8, 77.2, 5602, 300 }, + [48] = { 35.7, 77.1, 5602, 300 }, + [49] = { 34.8, 76.8, 5602, 300 }, + [50] = { 33.9, 76.7, 5602, 300 }, + [51] = { 35.7, 76.7, 5602, 300 }, + [52] = { 34.4, 76.4, 5602, 300 }, + [53] = { 33.5, 76.3, 5602, 300 }, + [54] = { 33.7, 76.2, 5602, 300 }, + [55] = { 35.8, 76, 5602, 300 }, + [56] = { 34.7, 75, 5602, 300 }, + [57] = { 33.9, 74.8, 5602, 300 }, + [58] = { 32.9, 74.7, 5602, 300 }, + [59] = { 34.2, 74.6, 5602, 300 }, + [60] = { 33.3, 74.5, 5602, 300 }, + }, + ["lvl"] = "17-18", + }, + [1166] = { + ["coords"] = { + [1] = { 35, 90.9, 38, 300 }, + [2] = { 34.9, 90.1, 38, 300 }, + [3] = { 32.8, 89.9, 38, 300 }, + [4] = { 34.6, 89.8, 38, 300 }, + [5] = { 35.6, 89.5, 38, 300 }, + [6] = { 33.8, 89.1, 38, 300 }, + [7] = { 34.9, 88.7, 38, 300 }, + [8] = { 33.6, 88.5, 38, 300 }, + [9] = { 36.4, 88.4, 38, 300 }, + [10] = { 29, 87.7, 38, 300 }, + [11] = { 34.4, 87.6, 38, 300 }, + [12] = { 29.2, 87.6, 38, 300 }, + [13] = { 35.5, 87.5, 38, 300 }, + [14] = { 35.2, 87.5, 38, 300 }, + [15] = { 33.7, 87.4, 38, 300 }, + [16] = { 28.3, 87, 38, 300 }, + [17] = { 28.2, 86.9, 38, 300 }, + [18] = { 29.4, 86.7, 38, 300 }, + [19] = { 36.2, 86.5, 38, 300 }, + [20] = { 28.7, 86.2, 38, 300 }, + [21] = { 28, 86, 38, 300 }, + [22] = { 36.4, 86, 38, 300 }, + [23] = { 34.2, 85.9, 38, 300 }, + [24] = { 27.5, 85.9, 38, 300 }, + [25] = { 27.4, 85.6, 38, 300 }, + [26] = { 31.3, 85.4, 38, 300 }, + [27] = { 37.1, 85.4, 38, 300 }, + [28] = { 34, 85, 38, 300 }, + [29] = { 28.9, 84.9, 38, 300 }, + [30] = { 34.6, 84.9, 38, 300 }, + [31] = { 36, 84.7, 38, 300 }, + [32] = { 35.9, 84.2, 38, 300 }, + [33] = { 36.7, 84.2, 38, 300 }, + [34] = { 35.2, 84, 38, 300 }, + [35] = { 30.1, 84, 38, 300 }, + [36] = { 28.5, 83.7, 38, 300 }, + [37] = { 36.3, 83.6, 38, 300 }, + [38] = { 36.1, 83.6, 38, 300 }, + [39] = { 28.1, 83.5, 38, 300 }, + [40] = { 27.9, 83.4, 38, 300 }, + [41] = { 36.3, 83, 38, 300 }, + [42] = { 35.3, 82.9, 38, 300 }, + [43] = { 35.3, 82.6, 38, 300 }, + [44] = { 34.7, 82.4, 38, 300 }, + [45] = { 34.4, 81.8, 38, 300 }, + [46] = { 29.6, 81.5, 38, 300 }, + [47] = { 27.9, 81.5, 38, 300 }, + [48] = { 36.5, 81.4, 38, 300 }, + [49] = { 29, 81.2, 38, 300 }, + [50] = { 28, 81.2, 38, 300 }, + [51] = { 29, 80.9, 38, 300 }, + [52] = { 35.6, 80.9, 38, 300 }, + [53] = { 35.4, 80.1, 38, 300 }, + [54] = { 36.6, 79.7, 38, 300 }, + [55] = { 36.7, 77.8, 38, 300 }, + [56] = { 49.6, 30, 38, 300 }, + [57] = { 48.6, 29.9, 38, 300 }, + [58] = { 48.9, 29.9, 38, 300 }, + [59] = { 48.8, 29.5, 38, 300 }, + [60] = { 48.1, 29.1, 38, 300 }, + [61] = { 48.7, 28.9, 38, 300 }, + [62] = { 47.8, 28.5, 38, 300 }, + [63] = { 50.1, 27.2, 38, 300 }, + [64] = { 50.6, 25, 38, 300 }, + [65] = { 50.9, 24, 38, 300 }, + [66] = { 50.5, 24, 38, 300 }, + [67] = { 51.3, 23.7, 38, 300 }, + [68] = { 50, 23.6, 38, 300 }, + [69] = { 51, 23.3, 38, 300 }, + [70] = { 47.8, 23.1, 38, 300 }, + [71] = { 49, 22, 38, 300 }, + [72] = { 46.5, 21.2, 38, 300 }, + [73] = { 48.3, 21.2, 38, 300 }, + [74] = { 47.7, 21.1, 38, 300 }, + [75] = { 48.7, 21, 38, 300 }, + [76] = { 48.1, 20.9, 38, 300 }, + [77] = { 48.2, 20.7, 38, 300 }, + [78] = { 48, 19.1, 38, 300 }, + [79] = { 37.5, 54.8, 1337, 300 }, + [80] = { 37, 50.7, 1337, 300 }, + [81] = { 26.7, 49.8, 1337, 300 }, + [82] = { 35.6, 49.4, 1337, 300 }, + [83] = { 40.8, 48, 1337, 300 }, + [84] = { 31.5, 45.9, 1337, 300 }, + [85] = { 37.1, 44.2, 1337, 300 }, + [86] = { 30.5, 42.9, 1337, 300 }, + [87] = { 44.3, 42.4, 1337, 300 }, + [88] = { 8.3, 39.2, 1337, 300 }, + [89] = { 34.6, 38.9, 1337, 300 }, + [90] = { 9.3, 38.8, 1337, 300 }, + [91] = { 39.9, 38.1, 1337, 300 }, + [92] = { 38.8, 38, 1337, 300 }, + [93] = { 31.5, 37.8, 1337, 300 }, + [94] = { 4.9, 35.9, 1337, 300 }, + [95] = { 4.3, 35.3, 1337, 300 }, + [96] = { 10.3, 34.4, 1337, 300 }, + [97] = { 43.4, 33.5, 1337, 300 }, + [98] = { 6.8, 32, 1337, 300 }, + [99] = { 3.2, 31.1, 1337, 300 }, + [100] = { 44.3, 30.9, 1337, 300 }, + [101] = { 33.5, 30.4, 1337, 300 }, + [102] = { 1, 30.3, 1337, 300 }, + [103] = { 0.6, 28.7, 1337, 300 }, + [104] = { 19.6, 27.8, 1337, 300 }, + [105] = { 48, 27.7, 1337, 300 }, + [106] = { 32.8, 26, 1337, 300 }, + [107] = { 7.9, 25.7, 1337, 300 }, + [108] = { 35.8, 25.3, 1337, 300 }, + [109] = { 42.4, 24.3, 1337, 300 }, + [110] = { 42.1, 22.1, 1337, 300 }, + [111] = { 45.7, 22, 1337, 300 }, + [112] = { 38.4, 21.2, 1337, 300 }, + [113] = { 13.6, 21.1, 1337, 300 }, + [114] = { 5.8, 19.7, 1337, 300 }, + [115] = { 44, 19.3, 1337, 300 }, + [116] = { 43.1, 18.9, 1337, 300 }, + [117] = { 3.8, 18.5, 1337, 300 }, + [118] = { 3, 18.1, 1337, 300 }, + [119] = { 44.1, 16.1, 1337, 300 }, + [120] = { 39.3, 15.9, 1337, 300 }, + [121] = { 39.1, 14.1, 1337, 300 }, + [122] = { 36.4, 13.3, 1337, 300 }, + [123] = { 34.6, 10.2, 1337, 300 }, + [124] = { 11.1, 8.7, 1337, 300 }, + [125] = { 2.8, 8.6, 1337, 300 }, + [126] = { 45, 8.5, 1337, 300 }, + [127] = { 8.4, 7.5, 1337, 300 }, + [128] = { 3.3, 7.3, 1337, 300 }, + [129] = { 8.5, 5.9, 1337, 300 }, + [130] = { 40.8, 5.7, 1337, 300 }, + [131] = { 39.8, 2, 1337, 300 }, + [132] = { 45.5, 0.1, 1337, 300 }, + [133] = { 16.5, 90.8, 5602, 300 }, + [134] = { 16.4, 90.4, 5602, 300 }, + [135] = { 15.3, 90.3, 5602, 300 }, + [136] = { 16.3, 90.3, 5602, 300 }, + [137] = { 16.8, 90.1, 5602, 300 }, + [138] = { 15.8, 89.9, 5602, 300 }, + [139] = { 16.4, 89.7, 5602, 300 }, + [140] = { 15.7, 89.6, 5602, 300 }, + [141] = { 17.2, 89.5, 5602, 300 }, + [142] = { 13.4, 89.2, 5602, 300 }, + [143] = { 16.2, 89.2, 5602, 300 }, + [144] = { 13.5, 89.2, 5602, 300 }, + [145] = { 16.7, 89.1, 5602, 300 }, + [146] = { 16.6, 89.1, 5602, 300 }, + [147] = { 15.8, 89.1, 5602, 300 }, + [148] = { 13, 88.9, 5602, 300 }, + [149] = { 13, 88.8, 5602, 300 }, + [150] = { 13.6, 88.7, 5602, 300 }, + [151] = { 17.1, 88.6, 5602, 300 }, + [152] = { 13.2, 88.4, 5602, 300 }, + [153] = { 12.9, 88.3, 5602, 300 }, + [154] = { 17.2, 88.3, 5602, 300 }, + [155] = { 16, 88.3, 5602, 300 }, + [156] = { 12.6, 88.3, 5602, 300 }, + [157] = { 12.6, 88.1, 5602, 300 }, + [158] = { 14.6, 88, 5602, 300 }, + [159] = { 17.6, 88, 5602, 300 }, + [160] = { 16, 87.8, 5602, 300 }, + [161] = { 13.4, 87.8, 5602, 300 }, + [162] = { 16.3, 87.7, 5602, 300 }, + [163] = { 17, 87.6, 5602, 300 }, + [164] = { 16.9, 87.4, 5602, 300 }, + [165] = { 17.3, 87.4, 5602, 300 }, + [166] = { 16.5, 87.3, 5602, 300 }, + [167] = { 14, 87.3, 5602, 300 }, + [168] = { 13.1, 87.1, 5602, 300 }, + [169] = { 17.1, 87.1, 5602, 300 }, + [170] = { 17, 87.1, 5602, 300 }, + [171] = { 12.9, 87, 5602, 300 }, + [172] = { 12.8, 87, 5602, 300 }, + [173] = { 17.1, 86.8, 5602, 300 }, + [174] = { 16.6, 86.7, 5602, 300 }, + [175] = { 16.6, 86.6, 5602, 300 }, + [176] = { 16.3, 86.5, 5602, 300 }, + [177] = { 16.1, 86.2, 5602, 300 }, + [178] = { 13.7, 86, 5602, 300 }, + [179] = { 12.8, 86, 5602, 300 }, + [180] = { 17.2, 86, 5602, 300 }, + [181] = { 13.4, 85.9, 5602, 300 }, + [182] = { 12.9, 85.9, 5602, 300 }, + [183] = { 13.4, 85.7, 5602, 300 }, + [184] = { 16.8, 85.7, 5602, 300 }, + [185] = { 16.7, 85.3, 5602, 300 }, + [186] = { 17.3, 85.1, 5602, 300 }, + [187] = { 17.4, 84.1, 5602, 300 }, + [188] = { 23.9, 59.6, 5602, 300 }, + [189] = { 23.4, 59.5, 5602, 300 }, + [190] = { 23.6, 59.5, 5602, 300 }, + [191] = { 23.5, 59.3, 5602, 300 }, + [192] = { 23.2, 59.1, 5602, 300 }, + [193] = { 23.5, 59, 5602, 300 }, + [194] = { 23, 58.8, 5602, 300 }, + [195] = { 24.2, 58.2, 5602, 300 }, + [196] = { 24.5, 57, 5602, 300 }, + [197] = { 24.6, 56.5, 5602, 300 }, + [198] = { 24.4, 56.5, 5602, 300 }, + [199] = { 24.8, 56.3, 5602, 300 }, + [200] = { 24.1, 56.3, 5602, 300 }, + [201] = { 24.7, 56.2, 5602, 300 }, + [202] = { 23, 56, 5602, 300 }, + [203] = { 23.7, 55.5, 5602, 300 }, + [204] = { 22.4, 55.1, 5602, 300 }, + [205] = { 23.3, 55.1, 5602, 300 }, + [206] = { 23, 55, 5602, 300 }, + [207] = { 23.5, 55, 5602, 300 }, + [208] = { 23.2, 54.9, 5602, 300 }, + [209] = { 23.3, 54.8, 5602, 300 }, + [210] = { 23.1, 54, 5602, 300 }, + }, + ["lvl"] = "13-14", + }, + [1167] = { + ["coords"] = { + [1] = { 71.6, 68.5, 38, 300 }, + [2] = { 71.2, 68.5, 38, 300 }, + [3] = { 72.3, 68.2, 38, 300 }, + [4] = { 70.1, 67.4, 38, 300 }, + [5] = { 69.4, 67.2, 38, 300 }, + [6] = { 72.6, 66.8, 38, 300 }, + [7] = { 70, 66.5, 38, 300 }, + [8] = { 70.1, 66.1, 38, 300 }, + [9] = { 69.1, 66.1, 38, 300 }, + [10] = { 68, 66.1, 38, 300 }, + [11] = { 69.2, 66, 38, 300 }, + [12] = { 70.9, 66, 38, 300 }, + [13] = { 68, 65.8, 38, 300 }, + [14] = { 70.6, 64.8, 38, 300 }, + [15] = { 72.6, 64.7, 38, 300 }, + [16] = { 70.9, 64.3, 38, 300 }, + [17] = { 72.5, 64.2, 38, 300 }, + [18] = { 70.8, 63.5, 38, 300 }, + [19] = { 69, 63.3, 38, 300 }, + [20] = { 72.6, 63.3, 38, 300 }, + [21] = { 69.1, 63.3, 38, 300 }, + [22] = { 70, 62.7, 38, 300 }, + [23] = { 68.3, 62.6, 38, 300 }, + [24] = { 68.2, 62.6, 38, 300 }, + [25] = { 68.7, 62.4, 38, 300 }, + [26] = { 72.7, 62, 38, 300 }, + [27] = { 70.6, 60, 38, 300 }, + [28] = { 69, 59.7, 38, 300 }, + [29] = { 67, 59.4, 38, 300 }, + [30] = { 69.6, 59.3, 38, 300 }, + [31] = { 67.9, 59.1, 38, 300 }, + [32] = { 35.2, 79.4, 5602, 300 }, + [33] = { 35, 79.4, 5602, 300 }, + [34] = { 35.6, 79.2, 5602, 300 }, + [35] = { 34.5, 78.8, 5602, 300 }, + [36] = { 34.1, 78.7, 5602, 300 }, + [37] = { 35.7, 78.5, 5602, 300 }, + [38] = { 34.4, 78.3, 5602, 300 }, + [39] = { 34.4, 78.1, 5602, 300 }, + [40] = { 33.9, 78.1, 5602, 300 }, + [41] = { 33.4, 78.1, 5602, 300 }, + [42] = { 34, 78.1, 5602, 300 }, + [43] = { 34.9, 78.1, 5602, 300 }, + [44] = { 33.4, 77.9, 5602, 300 }, + [45] = { 34.7, 77.4, 5602, 300 }, + [46] = { 35.7, 77.4, 5602, 300 }, + [47] = { 34.8, 77.2, 5602, 300 }, + [48] = { 35.7, 77.1, 5602, 300 }, + [49] = { 34.8, 76.8, 5602, 300 }, + [50] = { 33.9, 76.7, 5602, 300 }, + [51] = { 35.7, 76.7, 5602, 300 }, + [52] = { 34.4, 76.4, 5602, 300 }, + [53] = { 33.5, 76.3, 5602, 300 }, + [54] = { 33.7, 76.2, 5602, 300 }, + [55] = { 35.8, 76, 5602, 300 }, + [56] = { 34.7, 75, 5602, 300 }, + [57] = { 33.9, 74.8, 5602, 300 }, + [58] = { 32.9, 74.7, 5602, 300 }, + [59] = { 34.2, 74.6, 5602, 300 }, + [60] = { 33.3, 74.5, 5602, 300 }, + }, + ["lvl"] = "18-19", + }, + [1169] = { + ["coords"] = { + [1] = { 63.8, 78.4, 11, 300 }, + [2] = { 63.8, 78.2, 11, 300 }, + [3] = { 63.6, 77.9, 11, 300 }, + [4] = { 63.4, 77.6, 11, 300 }, + [5] = { 63.2, 77.3, 11, 300 }, + [6] = { 57.6, 19.3, 38, 300 }, + [7] = { 58.7, 18.7, 38, 300 }, + [8] = { 57.6, 16.6, 38, 300 }, + [9] = { 60.3, 15.8, 38, 300 }, + [10] = { 59.2, 13.7, 38, 300 }, + [11] = { 58.9, 13.5, 38, 300 }, + [12] = { 59, 13.4, 38, 300 }, + [13] = { 28, 54.1, 5602, 300 }, + [14] = { 28.6, 53.8, 5602, 300 }, + [15] = { 28, 52.7, 5602, 300 }, + [16] = { 29.4, 52.3, 5602, 300 }, + [17] = { 28.9, 51.2, 5602, 300 }, + [18] = { 28.7, 51.1, 5602, 300 }, + [19] = { 28.8, 51, 5602, 300 }, + [20] = { 17.7, 39.2, 5602, 300 }, + [21] = { 17.8, 39.1, 5602, 300 }, + [22] = { 17.6, 38.8, 5602, 300 }, + [23] = { 17.4, 38.6, 5602, 300 }, + [24] = { 17.3, 38.3, 5602, 300 }, + }, + ["lvl"] = "18-19", + }, + [1171] = "_", + [1172] = { + ["coords"] = { + [1] = { 65.8, 91.6, 11, 300 }, + [2] = { 28.3, 44.8, 38, 300 }, + [3] = { 27.4, 44.6, 38, 300 }, + [4] = { 27.7, 43.6, 38, 300 }, + [5] = { 27.3, 41.7, 38, 300 }, + [6] = { 26.7, 41.5, 38, 300 }, + [7] = { 25.9, 34.7, 38, 300 }, + [8] = { 23.9, 34.4, 38, 300 }, + [9] = { 25.1, 32.7, 38, 300 }, + [10] = { 27.6, 32.1, 38, 300 }, + [11] = { 26, 31.9, 38, 300 }, + [12] = { 26.2, 31.8, 38, 300 }, + [13] = { 26.2, 31.5, 38, 300 }, + [14] = { 24.7, 30.4, 38, 300 }, + [15] = { 23.9, 30.2, 38, 300 }, + [16] = { 24.7, 30, 38, 300 }, + [17] = { 25.4, 29.8, 38, 300 }, + [18] = { 24.9, 29.6, 38, 300 }, + [19] = { 37, 29.5, 38, 300 }, + [20] = { 24.5, 29.5, 38, 300 }, + [21] = { 25, 28.6, 38, 300 }, + [22] = { 22.4, 28.5, 38, 300 }, + [23] = { 23.3, 28.5, 38, 300 }, + [24] = { 38, 27.4, 38, 300 }, + [25] = { 36.9, 26.9, 38, 300 }, + [26] = { 26.4, 26.9, 38, 300 }, + [27] = { 35.8, 26.8, 38, 300 }, + [28] = { 23.7, 26.1, 38, 300 }, + [29] = { 37.4, 25.9, 38, 300 }, + [30] = { 38.4, 25.7, 38, 300 }, + [31] = { 39.8, 25.1, 38, 300 }, + [32] = { 36.4, 25, 38, 300 }, + [33] = { 40.4, 23.3, 38, 300 }, + [34] = { 38.6, 22.9, 38, 300 }, + [35] = { 39.3, 20.9, 38, 300 }, + [36] = { 38.3, 19.7, 38, 300 }, + [37] = { 40.7, 19.5, 38, 300 }, + [38] = { 36.6, 18.3, 38, 300 }, + [39] = { 36.9, 18.1, 38, 300 }, + [40] = { 40, 18, 38, 300 }, + [41] = { 38.2, 17.8, 38, 300 }, + [42] = { 34.5, 17.4, 38, 300 }, + [43] = { 34.6, 17.1, 38, 300 }, + [44] = { 38.3, 16, 38, 300 }, + [45] = { 35.5, 15.5, 38, 300 }, + [46] = { 36, 14.7, 38, 300 }, + [47] = { 38.4, 14.3, 38, 300 }, + [48] = { 33.5, 12.7, 38, 300 }, + [49] = { 38, 12.6, 38, 300 }, + [50] = { 36.6, 11.9, 38, 300 }, + [51] = { 37.3, 11, 38, 300 }, + [52] = { 38.9, 10.6, 38, 300 }, + [53] = { 34.6, 10.4, 38, 300 }, + [54] = { 40.5, 10, 38, 300 }, + [55] = { 13, 67.2, 5602, 300 }, + [56] = { 12.6, 67.1, 5602, 300 }, + [57] = { 12.7, 66.6, 5602, 300 }, + [58] = { 12.5, 65.6, 5602, 300 }, + [59] = { 12.2, 65.5, 5602, 300 }, + [60] = { 11.8, 62, 5602, 300 }, + [61] = { 10.8, 61.8, 5602, 300 }, + [62] = { 11.4, 61, 5602, 300 }, + [63] = { 12.7, 60.7, 5602, 300 }, + [64] = { 11.9, 60.6, 5602, 300 }, + [65] = { 12, 60.5, 5602, 300 }, + [66] = { 12, 60.3, 5602, 300 }, + [67] = { 11.2, 59.8, 5602, 300 }, + [68] = { 10.8, 59.7, 5602, 300 }, + [69] = { 11.2, 59.6, 5602, 300 }, + [70] = { 11.6, 59.5, 5602, 300 }, + [71] = { 11.3, 59.4, 5602, 300 }, + [72] = { 17.5, 59.3, 5602, 300 }, + [73] = { 11.1, 59.3, 5602, 300 }, + [74] = { 11.4, 58.9, 5602, 300 }, + [75] = { 10, 58.8, 5602, 300 }, + [76] = { 10.5, 58.8, 5602, 300 }, + [77] = { 18, 58.2, 5602, 300 }, + [78] = { 17.5, 58, 5602, 300 }, + [79] = { 12.1, 58, 5602, 300 }, + [80] = { 16.9, 57.9, 5602, 300 }, + [81] = { 10.7, 57.6, 5602, 300 }, + [82] = { 17.7, 57.5, 5602, 300 }, + [83] = { 18.2, 57.4, 5602, 300 }, + [84] = { 18.9, 57.1, 5602, 300 }, + [85] = { 17.2, 57, 5602, 300 }, + [86] = { 19.2, 56.2, 5602, 300 }, + [87] = { 18.3, 56, 5602, 300 }, + [88] = { 18.6, 54.9, 5602, 300 }, + [89] = { 18.2, 54.3, 5602, 300 }, + [90] = { 19.4, 54.2, 5602, 300 }, + [91] = { 17.3, 53.6, 5602, 300 }, + [92] = { 17.4, 53.5, 5602, 300 }, + [93] = { 19, 53.4, 5602, 300 }, + [94] = { 18.1, 53.3, 5602, 300 }, + [95] = { 16.2, 53.1, 5602, 300 }, + [96] = { 16.2, 52.9, 5602, 300 }, + [97] = { 18.2, 52.4, 5602, 300 }, + [98] = { 16.7, 52.1, 5602, 300 }, + [99] = { 17, 51.7, 5602, 300 }, + [100] = { 18.2, 51.5, 5602, 300 }, + [101] = { 15.7, 50.7, 5602, 300 }, + [102] = { 18, 50.6, 5602, 300 }, + [103] = { 17.3, 50.3, 5602, 300 }, + [104] = { 17.7, 49.8, 5602, 300 }, + [105] = { 18.5, 49.6, 5602, 300 }, + [106] = { 16.3, 49.5, 5602, 300 }, + [107] = { 19.3, 49.3, 5602, 300 }, + }, + ["lvl"] = "10-11", + }, + [1173] = { + ["coords"] = { + [1] = { 65.8, 91.6, 11, 300 }, + [2] = { 28.3, 44.8, 38, 300 }, + [3] = { 27.4, 44.6, 38, 300 }, + [4] = { 27.7, 43.6, 38, 300 }, + [5] = { 27.3, 41.7, 38, 300 }, + [6] = { 26.7, 41.5, 38, 300 }, + [7] = { 25.9, 34.7, 38, 300 }, + [8] = { 23.9, 34.4, 38, 300 }, + [9] = { 25.1, 32.7, 38, 300 }, + [10] = { 27.6, 32.1, 38, 300 }, + [11] = { 26, 31.9, 38, 300 }, + [12] = { 26.2, 31.8, 38, 300 }, + [13] = { 26.2, 31.5, 38, 300 }, + [14] = { 24.7, 30.4, 38, 300 }, + [15] = { 23.9, 30.2, 38, 300 }, + [16] = { 24.7, 30, 38, 300 }, + [17] = { 25.4, 29.8, 38, 300 }, + [18] = { 24.9, 29.6, 38, 300 }, + [19] = { 37, 29.5, 38, 300 }, + [20] = { 24.5, 29.5, 38, 300 }, + [21] = { 25, 28.6, 38, 300 }, + [22] = { 22.4, 28.5, 38, 300 }, + [23] = { 23.3, 28.5, 38, 300 }, + [24] = { 38, 27.4, 38, 300 }, + [25] = { 36.9, 26.9, 38, 300 }, + [26] = { 26.4, 26.9, 38, 300 }, + [27] = { 35.8, 26.8, 38, 300 }, + [28] = { 23.7, 26.1, 38, 300 }, + [29] = { 37.4, 25.9, 38, 300 }, + [30] = { 38.4, 25.7, 38, 300 }, + [31] = { 39.8, 25.1, 38, 300 }, + [32] = { 36.4, 25, 38, 300 }, + [33] = { 40.4, 23.3, 38, 300 }, + [34] = { 38.6, 22.9, 38, 300 }, + [35] = { 39.3, 20.9, 38, 300 }, + [36] = { 38.3, 19.7, 38, 300 }, + [37] = { 40.7, 19.5, 38, 300 }, + [38] = { 36.6, 18.3, 38, 300 }, + [39] = { 36.9, 18.1, 38, 300 }, + [40] = { 40, 18, 38, 300 }, + [41] = { 38.2, 17.8, 38, 300 }, + [42] = { 34.5, 17.4, 38, 300 }, + [43] = { 34.6, 17.1, 38, 300 }, + [44] = { 38.3, 16, 38, 300 }, + [45] = { 35.5, 15.5, 38, 300 }, + [46] = { 36, 14.7, 38, 300 }, + [47] = { 38.4, 14.3, 38, 300 }, + [48] = { 33.5, 12.7, 38, 300 }, + [49] = { 38, 12.6, 38, 300 }, + [50] = { 36.6, 11.9, 38, 300 }, + [51] = { 37.3, 11, 38, 300 }, + [52] = { 38.9, 10.6, 38, 300 }, + [53] = { 34.6, 10.4, 38, 300 }, + [54] = { 40.5, 10, 38, 300 }, + [55] = { 13, 67.2, 5602, 300 }, + [56] = { 12.6, 67.1, 5602, 300 }, + [57] = { 12.7, 66.6, 5602, 300 }, + [58] = { 12.5, 65.6, 5602, 300 }, + [59] = { 12.2, 65.5, 5602, 300 }, + [60] = { 11.8, 62, 5602, 300 }, + [61] = { 10.8, 61.8, 5602, 300 }, + [62] = { 11.4, 61, 5602, 300 }, + [63] = { 12.7, 60.7, 5602, 300 }, + [64] = { 11.9, 60.6, 5602, 300 }, + [65] = { 12, 60.5, 5602, 300 }, + [66] = { 12, 60.3, 5602, 300 }, + [67] = { 11.2, 59.8, 5602, 300 }, + [68] = { 10.8, 59.7, 5602, 300 }, + [69] = { 11.2, 59.6, 5602, 300 }, + [70] = { 11.6, 59.5, 5602, 300 }, + [71] = { 11.3, 59.4, 5602, 300 }, + [72] = { 17.5, 59.3, 5602, 300 }, + [73] = { 11.1, 59.3, 5602, 300 }, + [74] = { 11.4, 58.9, 5602, 300 }, + [75] = { 10, 58.8, 5602, 300 }, + [76] = { 10.5, 58.8, 5602, 300 }, + [77] = { 18, 58.2, 5602, 300 }, + [78] = { 17.5, 58, 5602, 300 }, + [79] = { 12.1, 58, 5602, 300 }, + [80] = { 16.9, 57.9, 5602, 300 }, + [81] = { 10.7, 57.6, 5602, 300 }, + [82] = { 17.7, 57.5, 5602, 300 }, + [83] = { 18.2, 57.4, 5602, 300 }, + [84] = { 18.9, 57.1, 5602, 300 }, + [85] = { 17.2, 57, 5602, 300 }, + [86] = { 19.2, 56.2, 5602, 300 }, + [87] = { 18.3, 56, 5602, 300 }, + [88] = { 18.6, 54.9, 5602, 300 }, + [89] = { 18.2, 54.3, 5602, 300 }, + [90] = { 19.4, 54.2, 5602, 300 }, + [91] = { 17.3, 53.6, 5602, 300 }, + [92] = { 17.4, 53.5, 5602, 300 }, + [93] = { 19, 53.4, 5602, 300 }, + [94] = { 18.1, 53.3, 5602, 300 }, + [95] = { 16.2, 53.1, 5602, 300 }, + [96] = { 16.2, 52.9, 5602, 300 }, + [97] = { 18.2, 52.4, 5602, 300 }, + [98] = { 16.7, 52.1, 5602, 300 }, + [99] = { 17, 51.7, 5602, 300 }, + [100] = { 18.2, 51.5, 5602, 300 }, + [101] = { 15.7, 50.7, 5602, 300 }, + [102] = { 18, 50.6, 5602, 300 }, + [103] = { 17.3, 50.3, 5602, 300 }, + [104] = { 17.7, 49.8, 5602, 300 }, + [105] = { 18.5, 49.6, 5602, 300 }, + [106] = { 16.3, 49.5, 5602, 300 }, + [107] = { 19.3, 49.3, 5602, 300 }, + }, + ["lvl"] = "10-11", + }, + [1174] = { + ["coords"] = { + [1] = { 36.6, 25.1, 38, 300 }, + [2] = { 36.2, 24.3, 38, 300 }, + [3] = { 35.2, 23.9, 38, 300 }, + [4] = { 35.3, 23, 38, 300 }, + [5] = { 35.6, 22.6, 38, 300 }, + [6] = { 35.4, 21.6, 38, 300 }, + [7] = { 35.6, 21.1, 38, 300 }, + [8] = { 17.3, 57.1, 5602, 300 }, + [9] = { 17.1, 56.7, 5602, 300 }, + [10] = { 16.5, 56.5, 5602, 300 }, + [11] = { 16.6, 56, 5602, 300 }, + [12] = { 16.8, 55.8, 5602, 300 }, + [13] = { 16.7, 55.3, 5602, 300 }, + [14] = { 16.8, 55, 5602, 300 }, + }, + ["lvl"] = "12-13", + }, + [1175] = { + ["coords"] = { + [1] = { 36, 27.1, 38, 300 }, + [2] = { 36.4, 26.1, 38, 300 }, + [3] = { 35.6, 24.7, 38, 300 }, + [4] = { 35.4, 24.6, 38, 300 }, + [5] = { 35.2, 24.3, 38, 300 }, + [6] = { 35, 23.5, 38, 300 }, + [7] = { 36.3, 23.4, 38, 300 }, + [8] = { 35.9, 22.3, 38, 300 }, + [9] = { 35.6, 22, 38, 300 }, + [10] = { 36.4, 20.5, 38, 300 }, + [11] = { 35.6, 19.5, 38, 300 }, + [12] = { 17, 58.1, 5602, 300 }, + [13] = { 17.2, 57.6, 5602, 300 }, + [14] = { 16.8, 56.9, 5602, 300 }, + [15] = { 16.7, 56.8, 5602, 300 }, + [16] = { 16.5, 56.7, 5602, 300 }, + [17] = { 16.5, 56.2, 5602, 300 }, + [18] = { 17.1, 56.2, 5602, 300 }, + [19] = { 16.9, 55.6, 5602, 300 }, + [20] = { 16.8, 55.5, 5602, 300 }, + [21] = { 17.2, 54.7, 5602, 300 }, + [22] = { 16.8, 54.2, 5602, 300 }, + }, + ["lvl"] = "12-13", + }, + [1176] = { + ["coords"] = { + [1] = { 26.2, 44.1, 38, 300 }, + [2] = { 26.5, 44, 38, 300 }, + [3] = { 26.2, 44, 38, 300 }, + [4] = { 25.7, 43.8, 38, 300 }, + [5] = { 26.5, 43.8, 38, 300 }, + [6] = { 25.5, 43.7, 38, 300 }, + [7] = { 25.5, 43.4, 38, 300 }, + [8] = { 26.3, 43.2, 38, 300 }, + [9] = { 25.7, 42.8, 38, 300 }, + [10] = { 37, 24.9, 38, 300 }, + [11] = { 37.2, 24.8, 38, 300 }, + [12] = { 37, 24.7, 38, 300 }, + [13] = { 37.3, 24.5, 38, 300 }, + [14] = { 36.3, 23.5, 38, 300 }, + [15] = { 35.5, 17.2, 38, 300 }, + [16] = { 35.2, 17.1, 38, 300 }, + [17] = { 37.7, 17, 38, 300 }, + [18] = { 35.8, 16.6, 38, 300 }, + [19] = { 37.3, 16.4, 38, 300 }, + [20] = { 35.3, 16.3, 38, 300 }, + [21] = { 37.5, 16.2, 38, 300 }, + [22] = { 35.6, 16, 38, 300 }, + [23] = { 39.4, 13, 38, 300 }, + [24] = { 39.8, 12.4, 38, 300 }, + [25] = { 39.3, 12.1, 38, 300 }, + [26] = { 12, 66.8, 5602, 300 }, + [27] = { 12.1, 66.8, 5602, 300 }, + [28] = { 12, 66.7, 5602, 300 }, + [29] = { 11.7, 66.7, 5602, 300 }, + [30] = { 12.1, 66.7, 5602, 300 }, + [31] = { 11.6, 66.6, 5602, 300 }, + [32] = { 11.6, 66.4, 5602, 300 }, + [33] = { 12, 66.4, 5602, 300 }, + [34] = { 11.7, 66.2, 5602, 300 }, + [35] = { 17.5, 56.9, 5602, 300 }, + [36] = { 17.6, 56.9, 5602, 300 }, + [37] = { 17.5, 56.8, 5602, 300 }, + [38] = { 17.7, 56.8, 5602, 300 }, + [39] = { 17.2, 56.2, 5602, 300 }, + [40] = { 16.7, 53, 5602, 300 }, + [41] = { 16.6, 52.9, 5602, 300 }, + [42] = { 17.8, 52.9, 5602, 300 }, + [43] = { 16.9, 52.7, 5602, 300 }, + [44] = { 17.7, 52.6, 5602, 300 }, + [45] = { 16.6, 52.6, 5602, 300 }, + [46] = { 17.8, 52.5, 5602, 300 }, + [47] = { 16.8, 52.4, 5602, 300 }, + [48] = { 18.7, 50.8, 5602, 300 }, + [49] = { 18.9, 50.5, 5602, 300 }, + [50] = { 18.7, 50.4, 5602, 300 }, + }, + ["lvl"] = "11-12", + }, + [1177] = { + ["coords"] = { + [1] = { 35, 27.2, 38, 300 }, + [2] = { 34.4, 26.8, 38, 300 }, + [3] = { 34.9, 26.3, 38, 300 }, + [4] = { 16.5, 58.1, 5602, 300 }, + [5] = { 16.2, 57.9, 5602, 300 }, + [6] = { 16.4, 57.7, 5602, 300 }, + }, + ["lvl"] = "14", + }, + [1178] = { + ["coords"] = { + [1] = { 67.1, 33.9, 38, 300 }, + [2] = { 75.7, 32.3, 38, 300 }, + [3] = { 66.4, 32.2, 38, 300 }, + [4] = { 68.6, 31.8, 38, 300 }, + [5] = { 74.6, 30.6, 38, 300 }, + [6] = { 68.3, 30.3, 38, 300 }, + [7] = { 67.4, 30.2, 38, 300 }, + [8] = { 73.4, 28.8, 38, 300 }, + [9] = { 68.7, 28.4, 38, 300 }, + [10] = { 69.6, 26.8, 38, 300 }, + [11] = { 73.6, 25.9, 38, 300 }, + [12] = { 70.8, 25.6, 38, 300 }, + [13] = { 69.7, 25.5, 38, 300 }, + [14] = { 72.1, 25.2, 38, 300 }, + [15] = { 63.6, 25.1, 38, 300 }, + [16] = { 73.9, 24.7, 38, 300 }, + [17] = { 70.8, 23.9, 38, 300 }, + [18] = { 72.2, 23.2, 38, 300 }, + [19] = { 67.4, 23.2, 38, 300 }, + [20] = { 69.5, 22.6, 38, 300 }, + [21] = { 69.3, 22.3, 38, 300 }, + [22] = { 68.6, 22.2, 38, 300 }, + [23] = { 67.3, 21.6, 38, 300 }, + [24] = { 66, 21.6, 38, 300 }, + [25] = { 63.6, 21.4, 38, 300 }, + [26] = { 68.5, 21.3, 38, 300 }, + [27] = { 69.3, 21, 38, 300 }, + [28] = { 64.9, 19.9, 38, 300 }, + [29] = { 72, 19.8, 38, 300 }, + [30] = { 73.4, 19.7, 38, 300 }, + [31] = { 70.3, 17.8, 38, 300 }, + [32] = { 32.9, 61.6, 5602, 300 }, + [33] = { 37.3, 60.8, 5602, 300 }, + [34] = { 32.6, 60.7, 5602, 300 }, + [35] = { 33.7, 60.5, 5602, 300 }, + [36] = { 36.7, 59.9, 5602, 300 }, + [37] = { 33.5, 59.8, 5602, 300 }, + [38] = { 33, 59.7, 5602, 300 }, + [39] = { 36.1, 58.9, 5602, 300 }, + [40] = { 33.7, 58.7, 5602, 300 }, + [41] = { 34.2, 58, 5602, 300 }, + [42] = { 36.2, 57.5, 5602, 300 }, + [43] = { 34.8, 57.3, 5602, 300 }, + [44] = { 34.2, 57.3, 5602, 300 }, + [45] = { 35.4, 57.1, 5602, 300 }, + [46] = { 31.1, 57, 5602, 300 }, + [47] = { 36.4, 56.9, 5602, 300 }, + [48] = { 34.8, 56.4, 5602, 300 }, + [49] = { 35.5, 56.1, 5602, 300 }, + [50] = { 33, 56.1, 5602, 300 }, + [51] = { 34.1, 55.8, 5602, 300 }, + [52] = { 34, 55.7, 5602, 300 }, + [53] = { 33.7, 55.6, 5602, 300 }, + [54] = { 33, 55.3, 5602, 300 }, + [55] = { 32.3, 55.3, 5602, 300 }, + [56] = { 31.1, 55.2, 5602, 300 }, + [57] = { 33.6, 55.1, 5602, 300 }, + [58] = { 34, 55, 5602, 300 }, + [59] = { 31.8, 54.4, 5602, 300 }, + [60] = { 35.4, 54.3, 5602, 300 }, + [61] = { 36.1, 54.3, 5602, 300 }, + [62] = { 34.5, 53.3, 5602, 300 }, + }, + ["lvl"] = "18-19", + ["rnk"] = "1", + }, + [1179] = { + ["coords"] = { + [1] = { 67.1, 33.9, 38, 300 }, + [2] = { 75.7, 32.3, 38, 300 }, + [3] = { 66.4, 32.2, 38, 300 }, + [4] = { 68.6, 31.8, 38, 300 }, + [5] = { 74.6, 30.6, 38, 300 }, + [6] = { 68.3, 30.3, 38, 300 }, + [7] = { 67.4, 30.2, 38, 300 }, + [8] = { 73.4, 28.8, 38, 300 }, + [9] = { 68.7, 28.4, 38, 300 }, + [10] = { 69.6, 26.8, 38, 300 }, + [11] = { 73.6, 25.9, 38, 300 }, + [12] = { 70.8, 25.6, 38, 300 }, + [13] = { 69.7, 25.5, 38, 300 }, + [14] = { 72.1, 25.2, 38, 300 }, + [15] = { 63.6, 25.1, 38, 300 }, + [16] = { 73.9, 24.7, 38, 300 }, + [17] = { 70.8, 23.9, 38, 300 }, + [18] = { 72.2, 23.2, 38, 300 }, + [19] = { 67.4, 23.2, 38, 300 }, + [20] = { 69.5, 22.6, 38, 300 }, + [21] = { 69.3, 22.3, 38, 300 }, + [22] = { 68.6, 22.2, 38, 300 }, + [23] = { 67.3, 21.6, 38, 300 }, + [24] = { 66, 21.6, 38, 300 }, + [25] = { 63.6, 21.4, 38, 300 }, + [26] = { 68.5, 21.3, 38, 300 }, + [27] = { 69.3, 21, 38, 300 }, + [28] = { 64.9, 19.9, 38, 300 }, + [29] = { 72, 19.8, 38, 300 }, + [30] = { 73.4, 19.7, 38, 300 }, + [31] = { 70.3, 17.8, 38, 300 }, + [32] = { 32.9, 61.6, 5602, 300 }, + [33] = { 37.3, 60.8, 5602, 300 }, + [34] = { 32.6, 60.7, 5602, 300 }, + [35] = { 33.7, 60.5, 5602, 300 }, + [36] = { 36.7, 59.9, 5602, 300 }, + [37] = { 33.5, 59.8, 5602, 300 }, + [38] = { 33, 59.7, 5602, 300 }, + [39] = { 36.1, 58.9, 5602, 300 }, + [40] = { 33.7, 58.7, 5602, 300 }, + [41] = { 34.2, 58, 5602, 300 }, + [42] = { 36.2, 57.5, 5602, 300 }, + [43] = { 34.8, 57.3, 5602, 300 }, + [44] = { 34.2, 57.3, 5602, 300 }, + [45] = { 35.4, 57.1, 5602, 300 }, + [46] = { 31.1, 57, 5602, 300 }, + [47] = { 36.4, 56.9, 5602, 300 }, + [48] = { 34.8, 56.4, 5602, 300 }, + [49] = { 35.5, 56.1, 5602, 300 }, + [50] = { 33, 56.1, 5602, 300 }, + [51] = { 34.1, 55.8, 5602, 300 }, + [52] = { 34, 55.7, 5602, 300 }, + [53] = { 33.7, 55.6, 5602, 300 }, + [54] = { 33, 55.3, 5602, 300 }, + [55] = { 32.3, 55.3, 5602, 300 }, + [56] = { 31.1, 55.2, 5602, 300 }, + [57] = { 33.6, 55.1, 5602, 300 }, + [58] = { 34, 55, 5602, 300 }, + [59] = { 31.8, 54.4, 5602, 300 }, + [60] = { 35.4, 54.3, 5602, 300 }, + [61] = { 36.1, 54.3, 5602, 300 }, + [62] = { 34.5, 53.3, 5602, 300 }, + }, + ["lvl"] = "18-19", + ["rnk"] = "1", + }, + [1180] = { + ["coords"] = { + [1] = { 74.7, 25.2, 38, 300 }, + [2] = { 75.2, 25.1, 38, 300 }, + [3] = { 75.5, 24.8, 38, 300 }, + [4] = { 68.8, 20.3, 38, 300 }, + [5] = { 68.6, 18.9, 38, 300 }, + [6] = { 68.3, 18.7, 38, 300 }, + [7] = { 75.6, 18.4, 38, 300 }, + [8] = { 75.8, 17.5, 38, 300 }, + [9] = { 75.1, 16, 38, 300 }, + [10] = { 79.8, 15.2, 38, 120 }, + [11] = { 79.5, 14.9, 38, 120 }, + [12] = { 76.8, 14.3, 38, 300 }, + [13] = { 77.5, 13.9, 38, 300 }, + [14] = { 77.3, 13.8, 38, 300 }, + [15] = { 36.8, 57.1, 5602, 300 }, + [16] = { 37.1, 57.1, 5602, 300 }, + [17] = { 37.2, 56.9, 5602, 300 }, + [18] = { 33.8, 54.6, 5602, 300 }, + [19] = { 33.7, 53.9, 5602, 300 }, + [20] = { 33.5, 53.8, 5602, 300 }, + [21] = { 37.3, 53.6, 5602, 300 }, + [22] = { 37.4, 53.2, 5602, 300 }, + [23] = { 37, 52.4, 5602, 300 }, + [24] = { 39.4, 52, 5602, 120 }, + [25] = { 39.3, 51.9, 5602, 120 }, + [26] = { 37.9, 51.5, 5602, 300 }, + [27] = { 38.2, 51.3, 5602, 300 }, + [28] = { 38.1, 51.3, 5602, 300 }, + }, + ["lvl"] = "19-20", + ["rnk"] = "1", + }, + [1181] = { + ["coords"] = { + [1] = { 67.1, 33.9, 38, 300 }, + [2] = { 75.7, 32.3, 38, 300 }, + [3] = { 66.4, 32.2, 38, 300 }, + [4] = { 68.6, 31.8, 38, 300 }, + [5] = { 74.6, 30.6, 38, 300 }, + [6] = { 68.3, 30.3, 38, 300 }, + [7] = { 67.4, 30.2, 38, 300 }, + [8] = { 73.4, 28.8, 38, 300 }, + [9] = { 68.7, 28.4, 38, 300 }, + [10] = { 69.6, 26.8, 38, 300 }, + [11] = { 73.6, 25.9, 38, 300 }, + [12] = { 70.8, 25.6, 38, 300 }, + [13] = { 69.7, 25.5, 38, 300 }, + [14] = { 72.1, 25.2, 38, 300 }, + [15] = { 63.6, 25.1, 38, 300 }, + [16] = { 73.9, 24.7, 38, 300 }, + [17] = { 70.8, 23.9, 38, 300 }, + [18] = { 72.2, 23.2, 38, 300 }, + [19] = { 67.4, 23.2, 38, 300 }, + [20] = { 69.5, 22.6, 38, 300 }, + [21] = { 69.3, 22.3, 38, 300 }, + [22] = { 68.6, 22.2, 38, 300 }, + [23] = { 67.3, 21.6, 38, 300 }, + [24] = { 66, 21.6, 38, 300 }, + [25] = { 63.6, 21.4, 38, 300 }, + [26] = { 68.5, 21.3, 38, 300 }, + [27] = { 69.3, 21, 38, 300 }, + [28] = { 64.9, 19.9, 38, 300 }, + [29] = { 72, 19.8, 38, 300 }, + [30] = { 73.4, 19.7, 38, 300 }, + [31] = { 70.3, 17.8, 38, 300 }, + [32] = { 32.9, 61.6, 5602, 300 }, + [33] = { 37.3, 60.8, 5602, 300 }, + [34] = { 32.6, 60.7, 5602, 300 }, + [35] = { 33.7, 60.5, 5602, 300 }, + [36] = { 36.7, 59.9, 5602, 300 }, + [37] = { 33.5, 59.8, 5602, 300 }, + [38] = { 33, 59.7, 5602, 300 }, + [39] = { 36.1, 58.9, 5602, 300 }, + [40] = { 33.7, 58.7, 5602, 300 }, + [41] = { 34.2, 58, 5602, 300 }, + [42] = { 36.2, 57.5, 5602, 300 }, + [43] = { 34.8, 57.3, 5602, 300 }, + [44] = { 34.2, 57.3, 5602, 300 }, + [45] = { 35.4, 57.1, 5602, 300 }, + [46] = { 31.1, 57, 5602, 300 }, + [47] = { 36.4, 56.9, 5602, 300 }, + [48] = { 34.8, 56.4, 5602, 300 }, + [49] = { 35.5, 56.1, 5602, 300 }, + [50] = { 33, 56.1, 5602, 300 }, + [51] = { 34.1, 55.8, 5602, 300 }, + [52] = { 34, 55.7, 5602, 300 }, + [53] = { 33.7, 55.6, 5602, 300 }, + [54] = { 33, 55.3, 5602, 300 }, + [55] = { 32.3, 55.3, 5602, 300 }, + [56] = { 31.1, 55.2, 5602, 300 }, + [57] = { 33.6, 55.1, 5602, 300 }, + [58] = { 34, 55, 5602, 300 }, + [59] = { 31.8, 54.4, 5602, 300 }, + [60] = { 35.4, 54.3, 5602, 300 }, + [61] = { 36.1, 54.3, 5602, 300 }, + [62] = { 34.5, 53.3, 5602, 300 }, + }, + ["lvl"] = "18-19", + ["rnk"] = "1", + }, + [1182] = { + ["coords"] = { + [1] = { 66.5, 7.9, 405, 30 }, + [2] = { 45, 80.4, 406, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [1183] = { + ["coords"] = { + [1] = { 74.7, 25.2, 38, 300 }, + [2] = { 75.2, 25.1, 38, 300 }, + [3] = { 75.5, 24.8, 38, 300 }, + [4] = { 68.8, 20.3, 38, 300 }, + [5] = { 68.6, 18.9, 38, 300 }, + [6] = { 68.3, 18.7, 38, 300 }, + [7] = { 75.6, 18.4, 38, 300 }, + [8] = { 75.8, 17.5, 38, 300 }, + [9] = { 75.1, 16, 38, 300 }, + [10] = { 79.8, 15.2, 38, 120 }, + [11] = { 79.5, 14.9, 38, 120 }, + [12] = { 76.8, 14.3, 38, 300 }, + [13] = { 77.5, 13.9, 38, 300 }, + [14] = { 77.3, 13.8, 38, 300 }, + [15] = { 36.8, 57.1, 5602, 300 }, + [16] = { 37.1, 57.1, 5602, 300 }, + [17] = { 37.2, 56.9, 5602, 300 }, + [18] = { 33.8, 54.6, 5602, 300 }, + [19] = { 33.7, 53.9, 5602, 300 }, + [20] = { 33.5, 53.8, 5602, 300 }, + [21] = { 37.3, 53.6, 5602, 300 }, + [22] = { 37.4, 53.2, 5602, 300 }, + [23] = { 37, 52.4, 5602, 300 }, + [24] = { 39.4, 52, 5602, 120 }, + [25] = { 39.3, 51.9, 5602, 120 }, + [26] = { 37.9, 51.5, 5602, 300 }, + [27] = { 38.2, 51.3, 5602, 300 }, + [28] = { 38.1, 51.3, 5602, 300 }, + }, + ["lvl"] = "19-20", + ["rnk"] = "1", + }, + [1184] = { + ["coords"] = { + [1] = { 55.3, 78.3, 38, 300 }, + [2] = { 50.5, 73.8, 38, 300 }, + [3] = { 49, 73, 38, 300 }, + [4] = { 48.7, 72.4, 38, 300 }, + [5] = { 46.3, 72.4, 38, 300 }, + [6] = { 56.6, 65.9, 38, 300 }, + [7] = { 57.1, 65.2, 38, 300 }, + [8] = { 62.5, 55.7, 38, 300 }, + [9] = { 62.6, 54.4, 38, 300 }, + [10] = { 64.7, 53.3, 38, 300 }, + [11] = { 67.5, 52.4, 38, 300 }, + [12] = { 69.7, 51.6, 38, 300 }, + [13] = { 65.6, 50.9, 38, 300 }, + [14] = { 71.2, 50.9, 38, 300 }, + [15] = { 26.8, 84.4, 5602, 300 }, + [16] = { 24.4, 82, 5602, 300 }, + [17] = { 23.7, 81.6, 5602, 300 }, + [18] = { 23.5, 81.3, 5602, 300 }, + [19] = { 22.3, 81.3, 5602, 300 }, + [20] = { 27.5, 78, 5602, 300 }, + [21] = { 27.8, 77.6, 5602, 300 }, + [22] = { 30.5, 72.8, 5602, 300 }, + [23] = { 30.6, 72.1, 5602, 300 }, + [24] = { 31.7, 71.6, 5602, 300 }, + [25] = { 33.1, 71.1, 5602, 300 }, + [26] = { 34.3, 70.7, 5602, 300 }, + [27] = { 32.2, 70.3, 5602, 300 }, + [28] = { 35, 70.3, 5602, 300 }, + }, + ["lvl"] = "13-14", + }, + [1185] = { + ["coords"] = { + [1] = { 78.9, 40.9, 38, 300 }, + [2] = { 80.4, 40.3, 38, 300 }, + [3] = { 80.8, 40, 38, 300 }, + [4] = { 75.8, 38, 38, 300 }, + [5] = { 76.2, 38, 38, 300 }, + [6] = { 74.3, 37.8, 38, 300 }, + [7] = { 77.8, 36.4, 38, 300 }, + [8] = { 75.6, 35.9, 38, 300 }, + [9] = { 74.3, 34.7, 38, 300 }, + [10] = { 77.5, 34.3, 38, 300 }, + [11] = { 59.3, 23.3, 38, 300 }, + [12] = { 39, 65.2, 5602, 300 }, + [13] = { 39.7, 64.9, 5602, 300 }, + [14] = { 39.9, 64.7, 5602, 300 }, + [15] = { 37.4, 63.7, 5602, 300 }, + [16] = { 37.5, 63.7, 5602, 300 }, + [17] = { 36.6, 63.6, 5602, 300 }, + [18] = { 38.4, 62.9, 5602, 300 }, + [19] = { 37.3, 62.6, 5602, 300 }, + [20] = { 36.6, 62, 5602, 300 }, + [21] = { 38.2, 61.8, 5602, 300 }, + [22] = { 28.9, 56.2, 5602, 300 }, + }, + ["lvl"] = "17-18", + }, + [1186] = { + ["coords"] = { + [1] = { 20.7, 77.4, 38, 300 }, + [2] = { 18.9, 75.5, 38, 300 }, + [3] = { 39.5, 74.5, 38, 300 }, + [4] = { 40.4, 71.7, 38, 300 }, + [5] = { 38.1, 56, 38, 300 }, + [6] = { 30.6, 53.9, 38, 300 }, + [7] = { 37.2, 52.8, 38, 300 }, + [8] = { 40.8, 52.5, 38, 300 }, + [9] = { 29.4, 40.3, 38, 300 }, + [10] = { 26.3, 40.3, 38, 300 }, + [11] = { 24.8, 36.5, 38, 300 }, + [12] = { 39.7, 33.3, 38, 300 }, + [13] = { 37.2, 32.8, 38, 300 }, + [14] = { 36, 32.1, 38, 300 }, + [15] = { 33.4, 30.1, 38, 300 }, + [16] = { 34.1, 29.8, 38, 300 }, + [17] = { 32.5, 29.8, 38, 300 }, + [18] = { 27.5, 28.7, 38, 300 }, + [19] = { 23.8, 25.4, 38, 300 }, + [20] = { 30.1, 24.7, 38, 300 }, + [21] = { 27.4, 14.2, 38, 300 }, + [22] = { 29.1, 13.4, 38, 300 }, + [23] = { 27.2, 10.5, 38, 300 }, + [24] = { 30.5, 10.4, 38, 300 }, + [25] = { 9.2, 83.9, 5602, 300 }, + [26] = { 8.2, 82.9, 5602, 300 }, + [27] = { 18.7, 82.4, 5602, 300 }, + [28] = { 19.3, 81, 5602, 300 }, + [29] = { 18.1, 72.9, 5602, 300 }, + [30] = { 14.2, 71.8, 5602, 300 }, + [31] = { 17.6, 71.3, 5602, 300 }, + [32] = { 19.5, 71.1, 5602, 300 }, + [33] = { 13.6, 64.9, 5602, 300 }, + [34] = { 12, 64.9, 5602, 300 }, + [35] = { 11.2, 62.9, 5602, 300 }, + [36] = { 18.9, 61.2, 5602, 300 }, + [37] = { 17.6, 61, 5602, 300 }, + [38] = { 17, 60.7, 5602, 300 }, + [39] = { 15.7, 59.6, 5602, 300 }, + [40] = { 16, 59.5, 5602, 300 }, + [41] = { 15.2, 59.5, 5602, 300 }, + [42] = { 12.6, 58.9, 5602, 300 }, + [43] = { 10.7, 57.2, 5602, 300 }, + [44] = { 14, 56.8, 5602, 300 }, + [45] = { 12.6, 51.5, 5602, 300 }, + [46] = { 13.4, 51.1, 5602, 300 }, + [47] = { 12.5, 49.6, 5602, 300 }, + [48] = { 14.2, 49.5, 5602, 300 }, + }, + ["lvl"] = "11-12", + }, + [1187] = { + ["coords"] = { + [1] = { 83.5, 65.5, 38, 30 }, + [2] = { 41.3, 77.8, 5602, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [1188] = { + ["coords"] = { + [1] = { 63.2, 80.2, 38, 300 }, + [2] = { 66.2, 76, 38, 300 }, + [3] = { 65.9, 74.2, 38, 300 }, + [4] = { 64.4, 73.5, 38, 300 }, + [5] = { 67.9, 73.3, 38, 300 }, + [6] = { 68.4, 72.6, 38, 300 }, + [7] = { 75.7, 71.3, 38, 300 }, + [8] = { 79.5, 71.1, 38, 300 }, + [9] = { 78.2, 70.8, 38, 300 }, + [10] = { 65.5, 69.7, 38, 300 }, + [11] = { 58.4, 69.1, 38, 300 }, + [12] = { 75.4, 68.2, 38, 300 }, + [13] = { 78.2, 67.5, 38, 300 }, + [14] = { 40.8, 66.7, 38, 300 }, + [15] = { 80.8, 64.9, 38, 300 }, + [16] = { 43.1, 63.7, 38, 300 }, + [17] = { 40.9, 62.3, 38, 300 }, + [18] = { 80.7, 61.6, 38, 300 }, + [19] = { 43.9, 61.3, 38, 300 }, + [20] = { 78.9, 59.1, 38, 300 }, + [21] = { 76, 56.8, 38, 300 }, + [22] = { 73.9, 55.3, 38, 300 }, + [23] = { 75.8, 54.9, 38, 300 }, + [24] = { 76.1, 51.7, 38, 300 }, + [25] = { 74.6, 50.6, 38, 300 }, + [26] = { 67.9, 49.3, 38, 300 }, + [27] = { 65.8, 47.3, 38, 300 }, + [28] = { 66.3, 45.5, 38, 300 }, + [29] = { 65, 45.3, 38, 300 }, + [30] = { 62.5, 43.3, 38, 300 }, + [31] = { 66.2, 42.7, 38, 300 }, + [32] = { 30.9, 85.4, 5602, 300 }, + [33] = { 32.4, 83.2, 5602, 300 }, + [34] = { 32.3, 82.3, 5602, 300 }, + [35] = { 31.5, 81.9, 5602, 300 }, + [36] = { 33.3, 81.8, 5602, 300 }, + [37] = { 33.6, 81.5, 5602, 300 }, + [38] = { 37.3, 80.8, 5602, 300 }, + [39] = { 39.3, 80.7, 5602, 300 }, + [40] = { 38.6, 80.5, 5602, 300 }, + [41] = { 32.1, 80, 5602, 300 }, + [42] = { 28.5, 79.6, 5602, 300 }, + [43] = { 37.1, 79.2, 5602, 300 }, + [44] = { 38.6, 78.8, 5602, 300 }, + [45] = { 19.4, 78.4, 5602, 300 }, + [46] = { 39.9, 77.5, 5602, 300 }, + [47] = { 20.6, 76.9, 5602, 300 }, + [48] = { 19.5, 76.1, 5602, 300 }, + [49] = { 39.9, 75.8, 5602, 300 }, + [50] = { 21, 75.6, 5602, 300 }, + [51] = { 39, 74.5, 5602, 300 }, + [52] = { 37.5, 73.4, 5602, 300 }, + [53] = { 36.4, 72.6, 5602, 300 }, + [54] = { 37.4, 72.4, 5602, 300 }, + [55] = { 37.5, 70.7, 5602, 300 }, + [56] = { 36.8, 70.2, 5602, 300 }, + [57] = { 33.3, 69.5, 5602, 300 }, + [58] = { 32.2, 68.5, 5602, 300 }, + [59] = { 32.5, 67.5, 5602, 300 }, + [60] = { 31.8, 67.4, 5602, 300 }, + [61] = { 30.6, 66.4, 5602, 300 }, + [62] = { 32.4, 66.1, 5602, 300 }, + }, + ["lvl"] = "13-14", + }, + [1189] = { + ["coords"] = { + [1] = { 37.9, 63.4, 38, 300 }, + [2] = { 72.8, 44.7, 38, 300 }, + [3] = { 74.2, 44.7, 38, 300 }, + [4] = { 75.8, 44.3, 38, 300 }, + [5] = { 68.3, 42.8, 38, 300 }, + [6] = { 76.4, 41.8, 38, 300 }, + [7] = { 78, 41.6, 38, 300 }, + [8] = { 68.6, 41.5, 38, 300 }, + [9] = { 71.8, 40.5, 38, 300 }, + [10] = { 71.7, 40.3, 38, 300 }, + [11] = { 72.2, 37.7, 38, 300 }, + [12] = { 71.9, 36.7, 38, 300 }, + [13] = { 68.5, 36.4, 38, 300 }, + [14] = { 73.2, 35.5, 38, 300 }, + [15] = { 64.9, 34.5, 38, 300 }, + [16] = { 63.6, 33.6, 38, 300 }, + [17] = { 62.1, 33, 38, 300 }, + [18] = { 58.8, 32.3, 38, 300 }, + [19] = { 64.4, 29.5, 38, 300 }, + [20] = { 58.9, 28.7, 38, 300 }, + [21] = { 60, 26.9, 38, 300 }, + [22] = { 59, 25.2, 38, 300 }, + [23] = { 18, 76.7, 5602, 300 }, + [24] = { 35.8, 67.1, 5602, 300 }, + [25] = { 36.5, 67.1, 5602, 300 }, + [26] = { 37.3, 66.9, 5602, 300 }, + [27] = { 33.5, 66.1, 5602, 300 }, + [28] = { 37.7, 65.6, 5602, 300 }, + [29] = { 38.5, 65.5, 5602, 300 }, + [30] = { 33.7, 65.5, 5602, 300 }, + [31] = { 35.3, 65, 5602, 300 }, + [32] = { 35.3, 64.9, 5602, 300 }, + [33] = { 35.5, 63.6, 5602, 300 }, + [34] = { 35.4, 63, 5602, 300 }, + [35] = { 33.6, 62.9, 5602, 300 }, + [36] = { 36, 62.4, 5602, 300 }, + [37] = { 31.8, 61.9, 5602, 300 }, + [38] = { 31.1, 61.4, 5602, 300 }, + [39] = { 30.4, 61.1, 5602, 300 }, + [40] = { 28.7, 60.8, 5602, 300 }, + [41] = { 31.5, 59.3, 5602, 300 }, + [42] = { 28.7, 58.9, 5602, 300 }, + [43] = { 29.3, 58, 5602, 300 }, + [44] = { 28.8, 57.1, 5602, 300 }, + }, + ["lvl"] = "16-17", + }, + [1190] = { + ["coords"] = { + [1] = { 29.9, 46.8, 38, 300 }, + [2] = { 37.2, 39.9, 38, 300 }, + [3] = { 27.2, 39.1, 38, 300 }, + [4] = { 37.4, 38.4, 38, 300 }, + [5] = { 38.2, 37.9, 38, 300 }, + [6] = { 29.9, 36.5, 38, 300 }, + [7] = { 34.8, 36.4, 38, 300 }, + [8] = { 37.2, 36.2, 38, 300 }, + [9] = { 38.5, 36.1, 38, 300 }, + [10] = { 32.9, 35.1, 38, 300 }, + [11] = { 37, 34.5, 38, 300 }, + [12] = { 37.2, 34.4, 38, 300 }, + [13] = { 38.2, 34.2, 38, 300 }, + [14] = { 35.5, 34, 38, 300 }, + [15] = { 33.3, 33.4, 38, 300 }, + [16] = { 29.1, 32.8, 38, 300 }, + [17] = { 33.9, 31.8, 38, 300 }, + [18] = { 34.3, 30.5, 38, 300 }, + [19] = { 39.5, 29.2, 38, 300 }, + [20] = { 27.7, 26.6, 38, 300 }, + [21] = { 31.8, 24.1, 38, 300 }, + [22] = { 28.6, 23.2, 38, 300 }, + [23] = { 24.3, 21.4, 38, 300 }, + [24] = { 30.6, 16.6, 38, 300 }, + [25] = { 30.5, 15.4, 38, 300 }, + [26] = { 25.3, 13.9, 38, 300 }, + [27] = { 13.9, 68.2, 5602, 300 }, + [28] = { 17.6, 64.7, 5602, 300 }, + [29] = { 12.5, 64.3, 5602, 300 }, + [30] = { 17.7, 63.9, 5602, 300 }, + [31] = { 18.1, 63.7, 5602, 300 }, + [32] = { 13.9, 62.9, 5602, 300 }, + [33] = { 16.4, 62.9, 5602, 300 }, + [34] = { 17.6, 62.8, 5602, 300 }, + [35] = { 18.3, 62.7, 5602, 300 }, + [36] = { 15.4, 62.2, 5602, 300 }, + [37] = { 17.5, 61.9, 5602, 300 }, + [38] = { 17.6, 61.8, 5602, 300 }, + [39] = { 18.1, 61.8, 5602, 300 }, + [40] = { 16.7, 61.6, 5602, 300 }, + [41] = { 15.6, 61.3, 5602, 300 }, + [42] = { 13.5, 61, 5602, 300 }, + [43] = { 15.9, 60.5, 5602, 300 }, + [44] = { 16.1, 59.8, 5602, 300 }, + [45] = { 18.8, 59.2, 5602, 300 }, + [46] = { 12.8, 57.9, 5602, 300 }, + [47] = { 14.8, 56.6, 5602, 300 }, + [48] = { 13.2, 56.1, 5602, 300 }, + [49] = { 11, 55.2, 5602, 300 }, + [50] = { 14.2, 52.7, 5602, 300 }, + [51] = { 14.2, 52.1, 5602, 300 }, + [52] = { 11.5, 51.3, 5602, 300 }, + }, + ["lvl"] = "10-11", + }, + [1191] = { + ["coords"] = { + [1] = { 52.5, 74.7, 38, 300 }, + [2] = { 52.2, 73.4, 38, 300 }, + [3] = { 74.7, 72.5, 38, 300 }, + [4] = { 78.4, 72.1, 38, 300 }, + [5] = { 50.8, 71.6, 38, 300 }, + [6] = { 78.6, 69.1, 38, 300 }, + [7] = { 66.4, 68.9, 38, 300 }, + [8] = { 49.1, 68.6, 38, 300 }, + [9] = { 79.7, 67.9, 38, 300 }, + [10] = { 45.6, 66.4, 38, 300 }, + [11] = { 58.7, 65.8, 38, 300 }, + [12] = { 63.8, 65.7, 38, 300 }, + [13] = { 60.2, 65.6, 38, 300 }, + [14] = { 79.6, 65.4, 38, 300 }, + [15] = { 59.8, 63.7, 38, 300 }, + [16] = { 56.5, 63.6, 38, 300 }, + [17] = { 65, 63.4, 38, 300 }, + [18] = { 44.2, 62.8, 38, 300 }, + [19] = { 34.2, 62.6, 38, 300 }, + [20] = { 85, 62.2, 38, 300 }, + [21] = { 60.1, 61.8, 38, 300 }, + [22] = { 58.5, 61.3, 38, 300 }, + [23] = { 79.4, 61.1, 38, 300 }, + [24] = { 62.6, 60.3, 38, 300 }, + [25] = { 83.9, 60.2, 38, 300 }, + [26] = { 62.7, 59.9, 38, 300 }, + [27] = { 81.3, 59.8, 38, 300 }, + [28] = { 59.9, 59.5, 38, 300 }, + [29] = { 64.2, 59.3, 38, 300 }, + [30] = { 82.8, 58.4, 38, 300 }, + [31] = { 81.8, 58.3, 38, 300 }, + [32] = { 65.6, 58, 38, 300 }, + [33] = { 63, 57.5, 38, 300 }, + [34] = { 61.6, 57.3, 38, 300 }, + [35] = { 64.3, 56.9, 38, 300 }, + [36] = { 41.8, 55.3, 38, 300 }, + [37] = { 74.5, 52.4, 38, 300 }, + [38] = { 39, 51.3, 38, 300 }, + [39] = { 63.4, 50.7, 38, 300 }, + [40] = { 65.2, 48.4, 38, 300 }, + [41] = { 63.5, 47.1, 38, 300 }, + [42] = { 25.4, 82.5, 5602, 300 }, + [43] = { 25.3, 81.9, 5602, 300 }, + [44] = { 36.8, 81.4, 5602, 300 }, + [45] = { 38.7, 81.2, 5602, 300 }, + [46] = { 24.6, 80.9, 5602, 300 }, + [47] = { 38.8, 79.7, 5602, 300 }, + [48] = { 32.6, 79.5, 5602, 300 }, + [49] = { 23.7, 79.4, 5602, 300 }, + [50] = { 39.4, 79.1, 5602, 300 }, + [51] = { 21.9, 78.3, 5602, 300 }, + [52] = { 28.6, 78, 5602, 300 }, + [53] = { 31.2, 77.9, 5602, 300 }, + [54] = { 29.4, 77.8, 5602, 300 }, + [55] = { 39.3, 77.7, 5602, 300 }, + [56] = { 29.2, 76.9, 5602, 300 }, + [57] = { 27.5, 76.8, 5602, 300 }, + [58] = { 31.8, 76.7, 5602, 300 }, + [59] = { 21.2, 76.4, 5602, 300 }, + [60] = { 16, 76.3, 5602, 300 }, + [61] = { 42.1, 76.1, 5602, 300 }, + [62] = { 29.3, 75.9, 5602, 300 }, + [63] = { 28.5, 75.6, 5602, 300 }, + [64] = { 39.2, 75.6, 5602, 300 }, + [65] = { 30.6, 75.1, 5602, 300 }, + [66] = { 41.5, 75.1, 5602, 300 }, + [67] = { 30.6, 75, 5602, 300 }, + [68] = { 40.2, 74.9, 5602, 300 }, + [69] = { 29.2, 74.7, 5602, 300 }, + [70] = { 31.4, 74.6, 5602, 300 }, + [71] = { 40.9, 74.1, 5602, 300 }, + [72] = { 40.4, 74.1, 5602, 300 }, + [73] = { 32.2, 74, 5602, 300 }, + [74] = { 30.8, 73.7, 5602, 300 }, + [75] = { 30.1, 73.6, 5602, 300 }, + [76] = { 31.5, 73.4, 5602, 300 }, + [77] = { 20, 72.6, 5602, 300 }, + [78] = { 36.7, 71.1, 5602, 300 }, + [79] = { 18.5, 70.5, 5602, 300 }, + [80] = { 31, 70.2, 5602, 300 }, + [81] = { 31.9, 69, 5602, 300 }, + [82] = { 31.1, 68.3, 5602, 300 }, + }, + ["lvl"] = "14-15", + }, + [1192] = { + ["coords"] = { + [1] = { 74.8, 50.7, 38, 300 }, + [2] = { 77.3, 47.1, 38, 300 }, + [3] = { 75.7, 46.6, 38, 300 }, + [4] = { 74.8, 42.1, 38, 300 }, + [5] = { 65.4, 41.9, 38, 300 }, + [6] = { 61.3, 41.4, 38, 300 }, + [7] = { 67.4, 41.3, 38, 300 }, + [8] = { 66.3, 40.1, 38, 300 }, + [9] = { 63, 39.9, 38, 300 }, + [10] = { 61.2, 39.6, 38, 300 }, + [11] = { 67.1, 39.4, 38, 300 }, + [12] = { 64.9, 38.8, 38, 300 }, + [13] = { 62.4, 38.4, 38, 300 }, + [14] = { 66.1, 38.3, 38, 300 }, + [15] = { 60, 37.9, 38, 300 }, + [16] = { 70.1, 37.8, 38, 300 }, + [17] = { 60.4, 36.2, 38, 300 }, + [18] = { 63.2, 35.1, 38, 300 }, + [19] = { 60.2, 33.9, 38, 300 }, + [20] = { 36.8, 70.2, 5602, 300 }, + [21] = { 38.1, 68.3, 5602, 300 }, + [22] = { 37.3, 68.1, 5602, 300 }, + [23] = { 36.8, 65.8, 5602, 300 }, + [24] = { 32, 65.7, 5602, 300 }, + [25] = { 30, 65.4, 5602, 300 }, + [26] = { 33, 65.4, 5602, 300 }, + [27] = { 32.5, 64.8, 5602, 300 }, + [28] = { 30.8, 64.7, 5602, 300 }, + [29] = { 29.9, 64.5, 5602, 300 }, + [30] = { 32.9, 64.4, 5602, 300 }, + [31] = { 31.8, 64.1, 5602, 300 }, + [32] = { 30.5, 63.9, 5602, 300 }, + [33] = { 32.4, 63.8, 5602, 300 }, + [34] = { 29.3, 63.6, 5602, 300 }, + [35] = { 34.5, 63.6, 5602, 300 }, + [36] = { 29.4, 62.8, 5602, 300 }, + [37] = { 30.9, 62.2, 5602, 300 }, + [38] = { 29.4, 61.6, 5602, 300 }, + }, + ["lvl"] = "16-17", + }, + [1193] = { + ["coords"] = { + [1] = { 57, 28, 38, 300 }, + [2] = { 45.6, 26.9, 38, 300 }, + [3] = { 43.4, 26.5, 38, 300 }, + [4] = { 56.6, 25.2, 38, 300 }, + [5] = { 43, 24.1, 38, 300 }, + [6] = { 45.6, 23.5, 38, 300 }, + [7] = { 44.7, 22.2, 38, 300 }, + [8] = { 44.3, 21.6, 38, 300 }, + [9] = { 54.7, 21.6, 38, 300 }, + [10] = { 53.9, 19.9, 38, 300 }, + [11] = { 43.2, 19.9, 38, 300 }, + [12] = { 53, 18.1, 38, 300 }, + [13] = { 43.1, 17.9, 38, 300 }, + [14] = { 51.4, 17.8, 38, 300 }, + [15] = { 46.9, 17.6, 38, 300 }, + [16] = { 49.1, 17.4, 38, 300 }, + [17] = { 44.4, 17.4, 38, 300 }, + [18] = { 48, 16.9, 38, 300 }, + [19] = { 50.4, 16.9, 38, 300 }, + [20] = { 44.4, 16.1, 38, 300 }, + [21] = { 54.1, 15.9, 38, 300 }, + [22] = { 43.5, 14.9, 38, 300 }, + [23] = { 52.8, 14.3, 38, 300 }, + [24] = { 53.9, 14.3, 38, 300 }, + [25] = { 51.6, 14.3, 38, 300 }, + [26] = { 54, 14.2, 38, 300 }, + [27] = { 27.7, 58.5, 5602, 300 }, + [28] = { 21.9, 58, 5602, 300 }, + [29] = { 20.8, 57.8, 5602, 300 }, + [30] = { 27.5, 57.1, 5602, 300 }, + [31] = { 20.6, 56.5, 5602, 300 }, + [32] = { 21.9, 56.2, 5602, 300 }, + [33] = { 21.4, 55.6, 5602, 300 }, + [34] = { 21.2, 55.3, 5602, 300 }, + [35] = { 26.5, 55.3, 5602, 300 }, + [36] = { 26.2, 54.4, 5602, 300 }, + [37] = { 20.7, 54.4, 5602, 300 }, + [38] = { 25.7, 53.5, 5602, 300 }, + [39] = { 20.6, 53.4, 5602, 300 }, + [40] = { 24.9, 53.3, 5602, 300 }, + [41] = { 22.5, 53.2, 5602, 300 }, + [42] = { 23.7, 53.1, 5602, 300 }, + [43] = { 21.3, 53.1, 5602, 300 }, + [44] = { 23.1, 52.9, 5602, 300 }, + [45] = { 24.3, 52.9, 5602, 300 }, + [46] = { 21.3, 52.5, 5602, 300 }, + [47] = { 26.2, 52.4, 5602, 300 }, + [48] = { 20.8, 51.8, 5602, 300 }, + [49] = { 25.6, 51.5, 5602, 300 }, + [50] = { 26.1, 51.5, 5602, 300 }, + [51] = { 25, 51.5, 5602, 300 }, + [52] = { 26.2, 51.5, 5602, 300 }, + }, + ["lvl"] = "12-13", + }, + [1194] = { + ["coords"] = { + [1] = { 78.7, 70.3, 38, 300 }, + [2] = { 77.9, 68.9, 38, 300 }, + [3] = { 77.7, 66.6, 38, 300 }, + [4] = { 80.2, 66.2, 38, 300 }, + [5] = { 77, 64.1, 38, 300 }, + [6] = { 74.7, 63, 38, 300 }, + [7] = { 76.4, 62.8, 38, 100 }, + [8] = { 76.6, 61.8, 38, 100 }, + [9] = { 74, 61.6, 38, 300 }, + [10] = { 77.2, 61.3, 38, 100 }, + [11] = { 76.7, 60.2, 38, 100 }, + [12] = { 73.7, 60, 38, 300 }, + [13] = { 83, 59.4, 38, 300 }, + [14] = { 74.1, 58.7, 38, 300 }, + [15] = { 80.5, 58.6, 38, 300 }, + [16] = { 75.7, 58, 38, 300 }, + [17] = { 76.8, 57.6, 38, 300 }, + [18] = { 77.9, 56.8, 38, 100 }, + [19] = { 38.8, 80.2, 5602, 300 }, + [20] = { 38.4, 79.6, 5602, 300 }, + [21] = { 38.3, 78.4, 5602, 300 }, + [22] = { 39.6, 78.1, 5602, 300 }, + [23] = { 38, 77.1, 5602, 300 }, + [24] = { 36.8, 76.5, 5602, 300 }, + [25] = { 37.6, 76.4, 5602, 100 }, + [26] = { 37.8, 75.9, 5602, 100 }, + [27] = { 36.4, 75.8, 5602, 300 }, + [28] = { 38.1, 75.7, 5602, 100 }, + [29] = { 37.8, 75.1, 5602, 100 }, + [30] = { 36.3, 75, 5602, 300 }, + [31] = { 41, 74.7, 5602, 300 }, + [32] = { 36.5, 74.3, 5602, 300 }, + [33] = { 39.8, 74.3, 5602, 300 }, + [34] = { 37.3, 74, 5602, 300 }, + [35] = { 37.9, 73.8, 5602, 300 }, + [36] = { 38.4, 73.3, 5602, 100 }, + }, + ["lvl"] = "15-16", + }, + [1195] = { + ["coords"] = { + [1] = { 19.3, 83.5, 38, 300 }, + [2] = { 39.5, 74.7, 38, 300 }, + [3] = { 36.9, 73.9, 38, 300 }, + [4] = { 39.5, 73, 38, 300 }, + [5] = { 21.1, 71.6, 38, 300 }, + [6] = { 28.6, 57, 38, 300 }, + [7] = { 34.3, 54.2, 38, 300 }, + [8] = { 35.6, 52.8, 38, 300 }, + [9] = { 31.1, 52.2, 38, 300 }, + [10] = { 28.8, 51.9, 38, 300 }, + [11] = { 29.9, 50.7, 38, 300 }, + [12] = { 28.6, 49.1, 38, 300 }, + [13] = { 29.6, 46.8, 38, 300 }, + [14] = { 30.5, 45.1, 38, 300 }, + [15] = { 30, 44.6, 38, 300 }, + [16] = { 27.7, 41.9, 38, 300 }, + [17] = { 31.1, 41.6, 38, 300 }, + [18] = { 33.9, 40.9, 38, 300 }, + [19] = { 33.6, 40.5, 38, 300 }, + [20] = { 25.3, 37.8, 38, 300 }, + [21] = { 36, 34.4, 38, 300 }, + [22] = { 32.4, 32.6, 38, 300 }, + [23] = { 38.5, 31.6, 38, 300 }, + [24] = { 36.6, 31.1, 38, 300 }, + [25] = { 36.6, 30.8, 38, 300 }, + [26] = { 28.7, 30.8, 38, 300 }, + [27] = { 32.8, 30.6, 38, 300 }, + [28] = { 31.1, 30.6, 38, 300 }, + [29] = { 29.9, 22.6, 38, 300 }, + [30] = { 27.7, 21.3, 38, 300 }, + [31] = { 30, 19.8, 38, 300 }, + [32] = { 29.7, 18.5, 38, 300 }, + [33] = { 27.4, 18.3, 38, 300 }, + [34] = { 32.1, 17.1, 38, 300 }, + [35] = { 28.7, 16.8, 38, 300 }, + [36] = { 8.4, 87, 5602, 300 }, + [37] = { 18.7, 82.5, 5602, 300 }, + [38] = { 17.4, 82.1, 5602, 300 }, + [39] = { 18.8, 81.6, 5602, 300 }, + [40] = { 9.4, 80.9, 5602, 300 }, + [41] = { 13.2, 73.4, 5602, 300 }, + [42] = { 16.1, 72, 5602, 300 }, + [43] = { 16.8, 71.3, 5602, 300 }, + [44] = { 14.5, 71, 5602, 300 }, + [45] = { 13.3, 70.8, 5602, 300 }, + [46] = { 13.9, 70.2, 5602, 300 }, + [47] = { 13.2, 69.4, 5602, 300 }, + [48] = { 13.7, 68.2, 5602, 300 }, + [49] = { 14.2, 67.3, 5602, 300 }, + [50] = { 13.9, 67.1, 5602, 300 }, + [51] = { 12.8, 65.7, 5602, 300 }, + [52] = { 14.5, 65.5, 5602, 300 }, + [53] = { 15.9, 65.2, 5602, 300 }, + [54] = { 15.7, 65, 5602, 300 }, + [55] = { 11.5, 63.6, 5602, 300 }, + [56] = { 17, 61.9, 5602, 300 }, + [57] = { 15.1, 60.9, 5602, 300 }, + [58] = { 18.3, 60.4, 5602, 300 }, + [59] = { 17.3, 60.2, 5602, 300 }, + [60] = { 17.3, 60, 5602, 300 }, + [61] = { 13.2, 60, 5602, 300 }, + [62] = { 15.3, 59.9, 5602, 300 }, + [63] = { 14.5, 59.9, 5602, 300 }, + [64] = { 13.9, 55.8, 5602, 300 }, + [65] = { 12.7, 55.1, 5602, 300 }, + [66] = { 13.9, 54.4, 5602, 300 }, + [67] = { 13.8, 53.7, 5602, 300 }, + [68] = { 12.6, 53.6, 5602, 300 }, + [69] = { 15, 52.9, 5602, 300 }, + [70] = { 13.2, 52.8, 5602, 300 }, + }, + ["lvl"] = "10-11", + }, + [1196] = { + ["coords"] = { + [1] = { 46.3, 63.3, 1, 270 }, + [2] = { 46.7, 63.3, 1, 270 }, + [3] = { 49.3, 62.3, 1, 270 }, + [4] = { 58.7, 61.3, 1, 270 }, + [5] = { 64.9, 59.9, 1, 270 }, + [6] = { 30.5, 59.6, 1, 270 }, + [7] = { 50.2, 59.4, 1, 270 }, + [8] = { 61, 56.9, 1, 270 }, + [9] = { 26.7, 56.2, 1, 270 }, + [10] = { 25.3, 55.8, 1, 270 }, + [11] = { 26, 55.2, 1, 270 }, + [12] = { 28.1, 54.5, 1, 270 }, + [13] = { 50.3, 53.8, 1, 270 }, + [14] = { 28.1, 52.2, 1, 270 }, + [15] = { 59.3, 52, 1, 270 }, + [16] = { 29.7, 51.7, 1, 270 }, + [17] = { 66.5, 50.5, 1, 270 }, + [18] = { 32.3, 49.9, 1, 270 }, + [19] = { 80.1, 48.6, 1, 270 }, + [20] = { 74.8, 48.1, 1, 270 }, + [21] = { 27.6, 47.6, 1, 270 }, + [22] = { 28.3, 47.5, 1, 270 }, + [23] = { 32.4, 47.2, 1, 270 }, + [24] = { 35.9, 47.2, 1, 270 }, + [25] = { 26.9, 46.9, 1, 270 }, + [26] = { 25.5, 46.4, 1, 270 }, + [27] = { 37.1, 43.9, 1, 270 }, + [28] = { 38.5, 43.5, 1, 270 }, + [29] = { 56.3, 43.3, 1, 270 }, + [30] = { 51.2, 43.1, 1, 270 }, + [31] = { 28, 43.1, 1, 270 }, + [32] = { 38.1, 42.9, 1, 270 }, + [33] = { 29.1, 42.7, 1, 270 }, + [34] = { 30.2, 42.3, 1, 270 }, + [35] = { 37.7, 41.6, 1, 270 }, + [36] = { 29.3, 41.5, 1, 270 }, + [37] = { 30.9, 40.8, 1, 270 }, + [38] = { 38.9, 40.3, 1, 270 }, + [39] = { 31.8, 38.6, 1, 270 }, + [40] = { 33.4, 36.8, 1, 270 }, + [41] = { 35.2, 35.9, 1, 270 }, + [42] = { 30.6, 35.1, 1, 270 }, + [43] = { 37.8, 33.9, 1, 270 }, + [44] = { 34.2, 32.1, 1, 270 }, + [45] = { 36.2, 30.5, 1, 270 }, + [46] = { 34.6, 30.3, 1, 270 }, + [47] = { 41.2, 29.2, 1, 270 }, + [48] = { 43.8, 28.8, 1, 270 }, + [49] = { 1.3, 71.7, 5602, 270 }, + }, + ["lvl"] = "7-8", + }, + [1197] = { + ["coords"] = { + [1] = { 38.8, 12.8, 3, 300 }, + [2] = { 39, 12.7, 3, 300 }, + [3] = { 38.6, 12, 3, 300 }, + [4] = { 37.3, 92.4, 38, 300 }, + [5] = { 35.8, 92.1, 38, 300 }, + [6] = { 34.3, 91.6, 38, 120 }, + [7] = { 34.6, 91.5, 38, 120 }, + [8] = { 35.1, 91.4, 38, 300 }, + [9] = { 33, 91.3, 38, 300 }, + [10] = { 36.3, 91, 38, 300 }, + [11] = { 33.3, 91, 38, 300 }, + [12] = { 37.5, 90.1, 38, 300 }, + [13] = { 38.1, 87.7, 38, 300 }, + [14] = { 38.2, 87.7, 38, 300 }, + [15] = { 37.9, 87, 38, 300 }, + [16] = { 37.5, 86.2, 38, 300 }, + [17] = { 54, 27.2, 38, 300 }, + [18] = { 54.5, 27, 38, 300 }, + [19] = { 55.2, 27, 38, 300 }, + [20] = { 52.8, 26.8, 38, 300 }, + [21] = { 54.4, 26.7, 38, 300 }, + [22] = { 54.5, 26.4, 38, 300 }, + [23] = { 54.2, 26, 38, 300 }, + [24] = { 53.7, 25.1, 38, 300 }, + [25] = { 52.7, 24.9, 38, 300 }, + [26] = { 52.2, 24.7, 38, 300 }, + [27] = { 51.8, 24.6, 38, 300 }, + [28] = { 52.2, 24.1, 38, 300 }, + [29] = { 52.6, 23.9, 38, 300 }, + [30] = { 51.9, 23.5, 38, 300 }, + [31] = { 53.1, 22.8, 38, 300 }, + [32] = { 52.2, 21.8, 38, 300 }, + [33] = { 36, 74, 1337, 300 }, + [34] = { 35.1, 72.8, 1337, 300 }, + [35] = { 36.5, 71.7, 1337, 300 }, + [36] = { 43.3, 70.7, 1337, 300 }, + [37] = { 39.9, 70.4, 1337, 300 }, + [38] = { 41.9, 69.7, 1337, 300 }, + [39] = { 46.3, 69.5, 1337, 300 }, + [40] = { 31.8, 69.4, 1337, 300 }, + [41] = { 44.7, 67.8, 1337, 300 }, + [42] = { 48.7, 66.2, 1337, 300 }, + [43] = { 43, 62.8, 1337, 300 }, + [44] = { 49, 62.1, 1337, 300 }, + [45] = { 41.8, 60.6, 1337, 300 }, + [46] = { 34, 58.4, 1337, 120 }, + [47] = { 35.5, 57.9, 1337, 120 }, + [48] = { 38, 57.4, 1337, 300 }, + [49] = { 27.8, 56.6, 1337, 300 }, + [50] = { 43.8, 55.4, 1337, 300 }, + [51] = { 29.5, 55.3, 1337, 300 }, + [52] = { 50, 50.8, 1337, 300 }, + [53] = { 52.8, 39.3, 1337, 300 }, + [54] = { 53.5, 39.2, 1337, 300 }, + [55] = { 51.7, 35.8, 1337, 300 }, + [56] = { 49.8, 32, 1337, 300 }, + [57] = { 16.3, 92.8, 5602, 300 }, + [58] = { 16.2, 92.7, 5602, 300 }, + [59] = { 16.3, 92.6, 5602, 300 }, + [60] = { 17.1, 92.5, 5602, 300 }, + [61] = { 16.7, 92.5, 5602, 300 }, + [62] = { 16.9, 92.4, 5602, 300 }, + [63] = { 17.4, 92.4, 5602, 300 }, + [64] = { 15.9, 92.4, 5602, 300 }, + [65] = { 17.2, 92.2, 5602, 300 }, + [66] = { 17.6, 92, 5602, 300 }, + [67] = { 17, 91.7, 5602, 300 }, + [68] = { 17.7, 91.6, 5602, 300 }, + [69] = { 16.9, 91.4, 5602, 300 }, + [70] = { 16.1, 91.2, 5602, 120 }, + [71] = { 16.2, 91.2, 5602, 120 }, + [72] = { 16.5, 91.1, 5602, 300 }, + [73] = { 15.4, 91, 5602, 300 }, + [74] = { 17.1, 90.9, 5602, 300 }, + [75] = { 15.6, 90.9, 5602, 300 }, + [76] = { 17.8, 90.4, 5602, 300 }, + [77] = { 18.1, 89.2, 5602, 300 }, + [78] = { 17.9, 88.8, 5602, 300 }, + [79] = { 17.7, 88.4, 5602, 300 }, + [80] = { 26.2, 58.1, 5602, 300 }, + [81] = { 26.5, 58, 5602, 300 }, + [82] = { 26.8, 58, 5602, 300 }, + [83] = { 25.6, 57.9, 5602, 300 }, + [84] = { 26.4, 57.9, 5602, 300 }, + [85] = { 26.5, 57.7, 5602, 300 }, + [86] = { 26.3, 57.5, 5602, 300 }, + [87] = { 26, 57.1, 5602, 300 }, + [88] = { 25.5, 57, 5602, 300 }, + [89] = { 25.3, 56.9, 5602, 300 }, + [90] = { 25.1, 56.8, 5602, 300 }, + [91] = { 25.3, 56.5, 5602, 300 }, + [92] = { 25.5, 56.4, 5602, 300 }, + [93] = { 25.1, 56.3, 5602, 300 }, + [94] = { 25.7, 55.9, 5602, 300 }, + [95] = { 25.3, 55.4, 5602, 300 }, + }, + ["lvl"] = "15-16", + }, + [1199] = { + ["coords"] = { + [1] = { 40.5, 62, 1, 270 }, + [2] = { 38.8, 61, 1, 270 }, + [3] = { 38.3, 60.9, 1, 270 }, + [4] = { 38.6, 60.7, 1, 270 }, + [5] = { 35.5, 60.6, 1, 270 }, + [6] = { 36.7, 60.5, 1, 270 }, + [7] = { 43.3, 60.3, 1, 270 }, + [8] = { 39.8, 60.1, 1, 270 }, + [9] = { 41.5, 60.1, 1, 270 }, + [10] = { 43.6, 59.7, 1, 270 }, + [11] = { 40.2, 58.9, 1, 270 }, + [12] = { 45.4, 58.7, 1, 270 }, + [13] = { 45.3, 58.5, 1, 270 }, + [14] = { 42.4, 57.9, 1, 270 }, + [15] = { 43, 56.5, 1, 270 }, + }, + ["lvl"] = "5-6", + }, + [1200] = { + ["coords"] = { + [1] = { 16.9, 33.4, 10, 600 }, + }, + ["lvl"] = "32", + ["rnk"] = "1", + }, + [1201] = { + ["coords"] = { + [1] = { 47.3, 63.3, 1, 270 }, + [2] = { 47.9, 63.2, 1, 270 }, + [3] = { 48.5, 61.9, 1, 270 }, + [4] = { 49.5, 61.8, 1, 270 }, + [5] = { 59.5, 61, 1, 270 }, + [6] = { 59.4, 60.8, 1, 270 }, + [7] = { 49.3, 60.6, 1, 270 }, + [8] = { 55.8, 60.4, 1, 270 }, + [9] = { 63.6, 60.2, 1, 270 }, + [10] = { 49.9, 60.2, 1, 270 }, + [11] = { 60.3, 60, 1, 270 }, + [12] = { 58.5, 59.6, 1, 270 }, + [13] = { 61.2, 59.6, 1, 270 }, + [14] = { 62.7, 59.2, 1, 270 }, + [15] = { 48.5, 59.1, 1, 270 }, + [16] = { 55.2, 59, 1, 270 }, + [17] = { 60.1, 58.8, 1, 270 }, + [18] = { 59.1, 58.6, 1, 270 }, + [19] = { 60, 58, 1, 270 }, + [20] = { 56.5, 58, 1, 270 }, + [21] = { 53.8, 57.8, 1, 270 }, + [22] = { 63, 57.3, 1, 270 }, + [23] = { 54.7, 57.2, 1, 270 }, + [24] = { 61.8, 57, 1, 270 }, + [25] = { 62.3, 56.6, 1, 270 }, + [26] = { 53.9, 56.5, 1, 270 }, + [27] = { 48.3, 56.5, 1, 270 }, + [28] = { 57.1, 56.3, 1, 270 }, + [29] = { 59.5, 55.9, 1, 270 }, + [30] = { 57.8, 55.8, 1, 270 }, + [31] = { 56.5, 54.9, 1, 270 }, + [32] = { 27.6, 54.8, 1, 270 }, + [33] = { 29.1, 54.2, 1, 270 }, + [34] = { 28.3, 53.6, 1, 270 }, + [35] = { 28.6, 53.6, 1, 270 }, + [36] = { 56.1, 52.7, 1, 270 }, + [37] = { 56.3, 52.2, 1, 270 }, + [38] = { 29.5, 50.8, 1, 270 }, + [39] = { 29.1, 49.7, 1, 270 }, + [40] = { 28.2, 48.9, 1, 270 }, + [41] = { 32.6, 48.5, 1, 270 }, + [42] = { 26.8, 47.8, 1, 270 }, + [43] = { 34.4, 47.7, 1, 270 }, + [44] = { 25.7, 46.9, 1, 270 }, + [45] = { 28.1, 45, 1, 270 }, + [46] = { 27.6, 42.5, 1, 270 }, + [47] = { 30.1, 40.1, 1, 270 }, + [48] = { 29.3, 39.6, 1, 270 }, + [49] = { 31.2, 39.6, 1, 270 }, + [50] = { 31.2, 39.4, 1, 270 }, + [51] = { 38.4, 38.4, 1, 270 }, + [52] = { 33.2, 37.8, 1, 270 }, + [53] = { 82.2, 37.6, 1, 270 }, + [54] = { 36.7, 37.6, 1, 270 }, + [55] = { 79.1, 37.2, 1, 270 }, + [56] = { 37.6, 36.8, 1, 270 }, + [57] = { 35.4, 36.4, 1, 270 }, + [58] = { 79, 36.3, 1, 270 }, + [59] = { 80.4, 35.9, 1, 270 }, + [60] = { 34.9, 35.7, 1, 270 }, + [61] = { 79.2, 35.4, 1, 270 }, + [62] = { 34.1, 35.3, 1, 270 }, + [63] = { 35.2, 35, 1, 270 }, + [64] = { 38.3, 33.5, 1, 270 }, + [65] = { 36.7, 31.9, 1, 270 }, + [66] = { 42.7, 31, 1, 270 }, + [67] = { 37.6, 30.9, 1, 270 }, + [68] = { 40.1, 30.8, 1, 270 }, + [69] = { 44, 30.3, 1, 270 }, + [70] = { 3.3, 61.6, 5602, 270 }, + [71] = { 0.4, 61.2, 5602, 270 }, + [72] = { 0.3, 60.4, 5602, 270 }, + [73] = { 1.6, 60.1, 5602, 270 }, + [74] = { 0.5, 59.5, 5602, 270 }, + }, + ["lvl"] = "7-8", + }, + [1202] = { + ["coords"] = { + [1] = { 26.2, 44.1, 38, 300 }, + [2] = { 26.5, 44, 38, 300 }, + [3] = { 26.2, 44, 38, 300 }, + [4] = { 25.7, 43.8, 38, 300 }, + [5] = { 26.5, 43.8, 38, 300 }, + [6] = { 25.5, 43.7, 38, 300 }, + [7] = { 25.5, 43.4, 38, 300 }, + [8] = { 26.3, 43.2, 38, 300 }, + [9] = { 25.7, 42.8, 38, 300 }, + [10] = { 37, 24.9, 38, 300 }, + [11] = { 37.2, 24.8, 38, 300 }, + [12] = { 37, 24.7, 38, 300 }, + [13] = { 37.3, 24.5, 38, 300 }, + [14] = { 36.3, 23.5, 38, 300 }, + [15] = { 35.5, 17.2, 38, 300 }, + [16] = { 35.2, 17.1, 38, 300 }, + [17] = { 37.7, 17, 38, 300 }, + [18] = { 35.8, 16.6, 38, 300 }, + [19] = { 37.3, 16.4, 38, 300 }, + [20] = { 35.3, 16.3, 38, 300 }, + [21] = { 37.5, 16.2, 38, 300 }, + [22] = { 35.6, 16, 38, 300 }, + [23] = { 39.4, 13, 38, 300 }, + [24] = { 39.8, 12.4, 38, 300 }, + [25] = { 39.3, 12.1, 38, 300 }, + [26] = { 12, 66.8, 5602, 300 }, + [27] = { 12.1, 66.8, 5602, 300 }, + [28] = { 12, 66.7, 5602, 300 }, + [29] = { 11.7, 66.7, 5602, 300 }, + [30] = { 12.1, 66.7, 5602, 300 }, + [31] = { 11.6, 66.6, 5602, 300 }, + [32] = { 11.6, 66.4, 5602, 300 }, + [33] = { 12, 66.4, 5602, 300 }, + [34] = { 11.7, 66.2, 5602, 300 }, + [35] = { 17.5, 56.9, 5602, 300 }, + [36] = { 17.6, 56.9, 5602, 300 }, + [37] = { 17.5, 56.8, 5602, 300 }, + [38] = { 17.7, 56.8, 5602, 300 }, + [39] = { 17.2, 56.2, 5602, 300 }, + [40] = { 16.7, 53, 5602, 300 }, + [41] = { 16.6, 52.9, 5602, 300 }, + [42] = { 17.8, 52.9, 5602, 300 }, + [43] = { 16.9, 52.7, 5602, 300 }, + [44] = { 17.7, 52.6, 5602, 300 }, + [45] = { 16.6, 52.6, 5602, 300 }, + [46] = { 17.8, 52.5, 5602, 300 }, + [47] = { 16.8, 52.4, 5602, 300 }, + [48] = { 18.7, 50.8, 5602, 300 }, + [49] = { 18.9, 50.5, 5602, 300 }, + [50] = { 18.7, 50.4, 5602, 300 }, + }, + ["lvl"] = "11-12", + }, + [1205] = { + ["coords"] = { + [1] = { 34.8, 90.5, 38, 120 }, + [2] = { 36.5, 52.7, 1337, 120 }, + [3] = { 16.4, 90.6, 5602, 120 }, + }, + ["lvl"] = "17", + }, + [1206] = { + ["coords"] = { + [1] = { 34.7, 90.8, 38, 120 }, + [2] = { 36.2, 54.4, 1337, 120 }, + [3] = { 16.3, 90.8, 5602, 120 }, + }, + ["lvl"] = "16", + }, + [1207] = { + ["coords"] = { + [1] = { 34.6, 90.6, 38, 120 }, + [2] = { 35.9, 53.1, 1337, 120 }, + [3] = { 16.3, 90.7, 5602, 120 }, + }, + ["lvl"] = "16", + }, + [1210] = { + ["coords"] = { + [1] = { 79.6, 14.7, 38, 120 }, + [2] = { 39.3, 51.7, 5602, 120 }, + }, + ["lvl"] = "22", + ["rnk"] = "1", + }, + [1211] = { + ["coords"] = { + [1] = { 25.6, 45.3, 1, 270 }, + [2] = { 25.5, 44.8, 1, 270 }, + [3] = { 24.7, 44.7, 1, 270 }, + [4] = { 25.2, 44.4, 1, 270 }, + [5] = { 24.8, 43.8, 1, 270 }, + [6] = { 26.8, 43.8, 1, 270 }, + [7] = { 25.5, 43.7, 1, 270 }, + [8] = { 26, 43.7, 1, 270 }, + [9] = { 24.4, 43.6, 1, 270 }, + [10] = { 24, 43.4, 1, 270 }, + [11] = { 24.4, 43.1, 1, 270 }, + [12] = { 27.3, 43, 1, 270 }, + [13] = { 25.9, 42.9, 1, 270 }, + [14] = { 24.8, 42.9, 1, 270 }, + [15] = { 24.8, 42.8, 1, 270 }, + [16] = { 26.7, 42.8, 1, 270 }, + [17] = { 25.8, 42.6, 1, 270 }, + [18] = { 26, 42.1, 1, 270 }, + [19] = { 27.5, 42, 1, 300 }, + [20] = { 28.2, 42, 1, 300 }, + [21] = { 26.7, 41.9, 1, 270 }, + [22] = { 24.7, 41.7, 1, 270 }, + [23] = { 28, 41.6, 1, 300 }, + [24] = { 27.8, 41.2, 1, 300 }, + [25] = { 27.7, 41.2, 1, 300 }, + [26] = { 27.7, 41, 1, 300 }, + [27] = { 26, 40.8, 1, 270 }, + [28] = { 28.5, 40.5, 1, 300 }, + [29] = { 27.3, 40.3, 1, 300 }, + [30] = { 24.9, 40.1, 1, 270 }, + [31] = { 24.2, 39.9, 1, 270 }, + [32] = { 25.3, 39.8, 1, 270 }, + [33] = { 24.2, 39.6, 1, 270 }, + [34] = { 27.1, 39.6, 1, 270 }, + [35] = { 24.7, 39.4, 1, 270 }, + [36] = { 28, 38.7, 1, 270 }, + [37] = { 25.8, 38.5, 1, 270 }, + [38] = { 26.5, 38.1, 1, 270 }, + [39] = { 25.9, 37.9, 1, 270 }, + [40] = { 27.3, 37.3, 1, 270 }, + [41] = { 28.3, 37.3, 1, 270 }, + [42] = { 26.1, 37, 1, 270 }, + [43] = { 28, 36.7, 1, 270 }, + [44] = { 27.6, 36.4, 1, 270 }, + [45] = { 27.3, 36.4, 1, 270 }, + [46] = { 28.7, 36.2, 1, 270 }, + [47] = { 28.1, 35.9, 1, 270 }, + [48] = { 28.2, 35.1, 1, 270 }, + [49] = { 82.7, 99.4, 721, 270 }, + [50] = { 73.5, 98.1, 721, 270 }, + [51] = { 97.9, 97.5, 721, 270 }, + [52] = { 77.4, 95.9, 721, 270 }, + [53] = { 87.1, 88.6, 721, 270 }, + [54] = { 92.8, 84.8, 721, 270 }, + [55] = { 88, 82.8, 721, 270 }, + [56] = { 99.4, 78, 721, 270 }, + [57] = { 89.7, 75.4, 721, 270 }, + [58] = { 99.4, 70.1, 721, 270 }, + }, + ["lvl"] = "8-10", + }, + [1212] = { + ["coords"] = { + [1] = { 49.9, 46, 1519, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [1214] = { + ["coords"] = { + [1] = { 64.8, 66, 38, 300 }, + [2] = { 31.7, 78.1, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "18", + }, + [1216] = { + ["coords"] = { + [1] = { 36.7, 88.4, 40, 300 }, + [2] = { 35.8, 87.9, 40, 300 }, + [3] = { 30.6, 83, 40, 300 }, + [4] = { 32, 82.7, 40, 300 }, + [5] = { 30.7, 81.9, 40, 300 }, + [6] = { 29.9, 81.5, 40, 300 }, + [7] = { 29.2, 80.5, 40, 300 }, + [8] = { 30.1, 80.5, 40, 300 }, + [9] = { 29.5, 79.3, 40, 300 }, + [10] = { 29, 78.7, 40, 300 }, + [11] = { 29.5, 78.4, 40, 300 }, + [12] = { 28.8, 77.8, 40, 300 }, + [13] = { 25.7, 67.3, 40, 300 }, + [14] = { 26.3, 67, 40, 300 }, + [15] = { 25.7, 66.8, 40, 300 }, + [16] = { 25.9, 66.2, 40, 300 }, + [17] = { 25.4, 65.7, 40, 300 }, + [18] = { 25.7, 65.5, 40, 300 }, + [19] = { 25.3, 64.7, 40, 300 }, + [20] = { 25.6, 64.7, 40, 300 }, + [21] = { 25.3, 63.9, 40, 300 }, + [22] = { 25.8, 63.7, 40, 300 }, + }, + ["lvl"] = "17-18", + }, + [1217] = { + ["coords"] = { + [1] = { 10.6, 60.6, 11, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [1222] = { + ["coords"] = { + [1] = { 56.4, 13.2, 38, 120 }, + [2] = { 56.2, 12.9, 38, 120 }, + [3] = { 27.4, 50.9, 5602, 120 }, + [4] = { 27.3, 50.8, 5602, 120 }, + }, + ["lvl"] = "17", + }, + [1224] = { + ["coords"] = { + [1] = { 48.7, 62, 38, 300 }, + [2] = { 51.6, 61.5, 38, 300 }, + [3] = { 54.2, 61, 38, 300 }, + [4] = { 50.2, 57.9, 38, 300 }, + [5] = { 58.6, 54.7, 38, 300 }, + [6] = { 48.1, 50.7, 38, 300 }, + [7] = { 45.6, 50.5, 38, 300 }, + [8] = { 50.7, 50.4, 38, 300 }, + [9] = { 57.9, 50.3, 38, 300 }, + [10] = { 59.8, 50.2, 38, 300 }, + [11] = { 51.5, 47.2, 38, 300 }, + [12] = { 58.9, 46.9, 38, 300 }, + [13] = { 49.2, 46.9, 38, 300 }, + [14] = { 53.7, 46.9, 38, 300 }, + [15] = { 56.6, 46.8, 38, 300 }, + [16] = { 57.6, 43.9, 38, 300 }, + [17] = { 45.1, 41, 38, 300 }, + [18] = { 44.8, 39.8, 38, 300 }, + [19] = { 48.1, 39.8, 38, 300 }, + [20] = { 48.3, 38.4, 38, 300 }, + [21] = { 48.8, 33.7, 38, 300 }, + [22] = { 23.5, 76, 5602, 300 }, + [23] = { 25, 75.8, 5602, 300 }, + [24] = { 26.3, 75.5, 5602, 300 }, + [25] = { 24.3, 73.9, 5602, 300 }, + [26] = { 28.5, 72.3, 5602, 300 }, + [27] = { 23.2, 70.2, 5602, 300 }, + [28] = { 21.9, 70.1, 5602, 300 }, + [29] = { 24.5, 70.1, 5602, 300 }, + [30] = { 28.2, 70, 5602, 300 }, + [31] = { 29.2, 70, 5602, 300 }, + [32] = { 24.9, 68.4, 5602, 300 }, + [33] = { 28.7, 68.3, 5602, 300 }, + [34] = { 23.7, 68.3, 5602, 300 }, + [35] = { 26, 68.3, 5602, 300 }, + [36] = { 27.5, 68.2, 5602, 300 }, + [37] = { 28, 66.7, 5602, 300 }, + [38] = { 21.7, 65.2, 5602, 300 }, + [39] = { 21.5, 64.6, 5602, 300 }, + [40] = { 23.2, 64.6, 5602, 300 }, + [41] = { 23.3, 63.9, 5602, 300 }, + [42] = { 23.5, 61.5, 5602, 300 }, + }, + ["lvl"] = "19-20", + }, + [1225] = { + ["coords"] = { + [1] = { 42.5, 64.7, 38, 120 }, + [2] = { 20.3, 77.4, 5602, 120 }, + }, + ["lvl"] = "20", + ["rnk"] = "1", + }, + [1226] = { + ["coords"] = { + [1] = { 47.3, 52.2, 1, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [1227] = "_", + [1228] = { + ["coords"] = { + [1] = { 47.5, 52.1, 1, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [1229] = { + ["coords"] = { + [1] = { 47.4, 52.6, 1, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "9-12", + }, + [1230] = "_", + [1231] = { + ["coords"] = { + [1] = { 45.8, 53, 1, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "8-12", + }, + [1232] = { + ["coords"] = { + [1] = { 47.6, 52.1, 1, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "12", + }, + [1234] = { + ["coords"] = { + [1] = { 47.6, 52.6, 1, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "12", + }, + [1235] = "_", + [1236] = { + ["coords"] = { + [1] = { 44.8, 23.1, 40, 300 }, + [2] = { 44.8, 20.6, 40, 300 }, + [3] = { 45.3, 20.5, 40, 300 }, + [4] = { 44.6, 20, 40, 300 }, + [5] = { 46.2, 19.4, 40, 300 }, + [6] = { 45.3, 18.5, 40, 300 }, + [7] = { 46.1, 18.3, 40, 300 }, + }, + ["lvl"] = "12-13", + }, + [1239] = { + ["coords"] = { + [1] = { 10.9, 59.6, 11, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1242] = { + ["coords"] = { + [1] = { 8.3, 58.6, 11, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1244] = { + ["coords"] = { + [1] = { 56.4, 40.4, 11, 30 }, + [2] = { 12, 10, 5602, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1251] = { + ["coords"] = { + [1] = { 37.3, 84.2, 10, 300 }, + [2] = { 37.1, 82.4, 10, 300 }, + [3] = { 37.8, 79.7, 10, 300 }, + [4] = { 36.5, 77.4, 10, 300 }, + [5] = { 34, 73.9, 10, 300 }, + [6] = { 33.9, 71.9, 10, 300 }, + [7] = { 37.5, 1.5, 33, 300 }, + [8] = { 37.4, 0.7, 33, 300 }, + }, + ["lvl"] = "28-29", + }, + [1252] = { + ["coords"] = { + [1] = { 46.7, 53.8, 1, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "8-12", + }, + [1254] = { + ["coords"] = { + [1] = { 69.1, 56.3, 1, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "12", + }, + [1257] = { + ["coords"] = { + [1] = { 62.8, 75, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1258] = { + ["coords"] = { + [1] = { 50.8, 60.5, 10, 300 }, + [2] = { 69.5, 38.2, 10, 300 }, + [3] = { 67.2, 35.1, 10, 300 }, + [4] = { 66, 32.8, 10, 300 }, + [5] = { 65.5, 31.3, 10, 300 }, + [6] = { 63.3, 27.7, 10, 300 }, + }, + ["lvl"] = "25-26", + }, + [1260] = { + ["coords"] = { + [1] = { 22.8, 52.1, 1, 9000 }, + }, + ["lvl"] = "11", + ["rnk"] = "4", + }, + [1261] = { + ["coords"] = { + [1] = { 63.5, 50.6, 1, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [1262] = "_", + [1265] = { + ["coords"] = { + [1] = { 63.1, 49.8, 1, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [1266] = { + ["coords"] = { + [1] = { 34.6, 51.7, 1, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [1267] = { + ["coords"] = { + [1] = { 46.8, 52.4, 1, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1268] = { + ["coords"] = { + [1] = { 45.9, 49.4, 1, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [1269] = { + ["coords"] = { + [1] = { 45.8, 49.4, 1, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [1270] = { + ["coords"] = { + [1] = { 76.3, 37.2, 10, 300 }, + [2] = { 75.2, 36.8, 10, 300 }, + [3] = { 78.7, 36.1, 10, 300 }, + [4] = { 75.5, 35.7, 10, 300 }, + [5] = { 77.4, 35.1, 10, 300 }, + [6] = { 78.2, 34.9, 10, 300 }, + [7] = { 75.8, 34, 10, 300 }, + [8] = { 78.9, 33.6, 10, 300 }, + [9] = { 77.9, 33.5, 10, 300 }, + [10] = { 79.8, 32.9, 10, 300 }, + [11] = { 76.9, 32.7, 10, 300 }, + [12] = { 81.4, 32.5, 10, 300 }, + [13] = { 79.2, 31.2, 10, 300 }, + [14] = { 76.7, 30.5, 10, 300 }, + }, + ["lvl"] = "29-30", + }, + [1275] = { + ["coords"] = { + [1] = { 63.1, 74.9, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1276] = { + ["coords"] = { + [1] = { 26, 16.8, 38, 300 }, + [2] = { 11.9, 52.8, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1277] = { + ["coords"] = { + [1] = { 24.2, 20.3, 38, 300 }, + [2] = { 10.9, 54.6, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1278] = { + ["coords"] = { + [1] = { 32.1, 40.8, 38, 300 }, + [2] = { 15, 65.1, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1279] = { + ["coords"] = { + [1] = { 29.6, 30.2, 38, 300 }, + [2] = { 13.7, 59.7, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1280] = { + ["coords"] = { + [1] = { 95.3, 46.8, 1, 300 }, + [2] = { 32.5, 50.3, 38, 300 }, + [3] = { 15.2, 70, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1281] = { + ["coords"] = { + [1] = { 22.8, 70.8, 38, 300 }, + [2] = { 10.2, 80.5, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1282] = { + ["coords"] = { + [1] = { 89.1, 56.3, 1, 300 }, + [2] = { 21.4, 67.3, 38, 300 }, + [3] = { 9.5, 78.7, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1283] = { + ["coords"] = { + [1] = { 18, 83.5, 38, 300 }, + [2] = { 7.8, 87, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1284] = { + ["coords"] = { + [1] = { 50.3, 45.5, 1519, 86400 }, + }, + ["fac"] = "A", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [1285] = { + ["coords"] = { + [1] = { 64.8, 72.2, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1286] = { + ["coords"] = { + [1] = { 64.7, 71.3, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1287] = { + ["coords"] = { + [1] = { 64.1, 68.4, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1288] = "_", + [1289] = { + ["coords"] = { + [1] = { 64.2, 68.6, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1290] = "_", + [1291] = { + ["coords"] = { + [1] = { 62, 67.8, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1292] = { + ["coords"] = { + [1] = { 72.1, 62.2, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [1293] = "_", + [1294] = { + ["coords"] = { + [1] = { 61.9, 67.2, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1295] = { + ["coords"] = { + [1] = { 62, 67.5, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1297] = { + ["coords"] = { + [1] = { 58.7, 68.7, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1298] = { + ["coords"] = { + [1] = { 58.3, 69, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1299] = { + ["coords"] = { + [1] = { 58.3, 67.2, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1300] = { + ["coords"] = { + [1] = { 53.5, 81.5, 1519, 375 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [1301] = { + ["coords"] = { + [1] = { 59.9, 77.7, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1302] = { + ["coords"] = { + [1] = { 69.2, 71.8, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1303] = { + ["coords"] = { + [1] = { 69.3, 71.3, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1304] = { + ["coords"] = { + [1] = { 42.4, 76.9, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1305] = { + ["coords"] = { + [1] = { 42, 82.7, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1306] = "_", + [1307] = { + ["coords"] = { + [1] = { 44.6, 86.3, 1519, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [1308] = { + ["coords"] = { + [1] = { 47.4, 82.5, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1309] = { + ["coords"] = { + [1] = { 51.8, 83.5, 1519, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1310] = { + ["coords"] = { + [1] = { 52.7, 83.7, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1312] = { + ["coords"] = { + [1] = { 52.8, 74.9, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1313] = { + ["coords"] = { + [1] = { 55.9, 85.6, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1314] = { + ["coords"] = { + [1] = { 53.2, 82, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1315] = { + ["coords"] = { + [1] = { 53, 74.9, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1316] = { + ["coords"] = { + [1] = { 51.8, 75.1, 1519, 490 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [1317] = { + ["coords"] = { + [1] = { 52.9, 74.5, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [1318] = { + ["coords"] = { + [1] = { 52.8, 74.3, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1319] = { + ["coords"] = { + [1] = { 69.2, 57.6, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1320] = { + ["coords"] = { + [1] = { 71.9, 62, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1321] = { + ["coords"] = { + [1] = { 71.7, 62.2, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1322] = { + ["coords"] = { + [1] = { 67.9, 8.3, 405, 300 }, + [2] = { 46, 80.8, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [1323] = { + ["coords"] = { + [1] = { 77.2, 61, 1519, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1324] = { + ["coords"] = { + [1] = { 77.2, 57.4, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1325] = { + ["coords"] = { + [1] = { 80.3, 70.1, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1326] = { + ["coords"] = { + [1] = { 78.6, 70.9, 1519, 375 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [1327] = { + ["coords"] = { + [1] = { 77.1, 52.7, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1328] = { + ["coords"] = { + [1] = { 66.7, 45.1, 15, 25 }, + [2] = { 76, 54.7, 1519, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [1329] = { + ["coords"] = { + [1] = { 23.2, 76, 38, 300 }, + [2] = { 10.4, 83.2, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1330] = { + ["coords"] = { + [1] = { 22.8, 74.1, 38, 300 }, + [2] = { 10.2, 82.2, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1331] = { + ["coords"] = { + [1] = { 24.2, 17.6, 38, 300 }, + [2] = { 10.9, 53.2, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1332] = { + ["coords"] = { + [1] = { 23.4, 17.1, 38, 300 }, + [2] = { 10.5, 52.9, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1333] = { + ["coords"] = { + [1] = { 73, 57.5, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1334] = { + ["coords"] = { + [1] = { 24.5, 18.5, 38, 300 }, + [2] = { 11.1, 53.7, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1335] = { + ["coords"] = { + [1] = { 24.7, 17.7, 38, 300 }, + [2] = { 11.2, 53.3, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1336] = { + ["coords"] = { + [1] = { 25.6, 18.1, 38, 300 }, + [2] = { 11.7, 53.5, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1337] = { + ["coords"] = { + [1] = { 35.9, 44.5, 38, 300 }, + [2] = { 16.9, 67, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1338] = { + ["coords"] = { + [1] = { 36.3, 41.7, 38, 300 }, + [2] = { 17.1, 65.6, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1339] = { + ["coords"] = { + [1] = { 71.7, 58.2, 1519, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1340] = { + ["coords"] = { + [1] = { 34.3, 47.7, 38, 30 }, + [2] = { 16.1, 68.7, 5602, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1341] = { + ["coords"] = { + [1] = { 77.5, 61.3, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1342] = { + ["coords"] = { + [1] = { 25.4, 10.4, 38, 30 }, + [2] = { 11.6, 49.5, 5602, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1343] = { + ["coords"] = { + [1] = { 24.8, 18.4, 38, 30 }, + [2] = { 11.2, 53.6, 5602, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1344] = { + ["coords"] = { + [1] = { 65.9, 65.6, 38, 30 }, + [2] = { 32.3, 77.9, 5602, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [1345] = { + ["coords"] = { + [1] = { 64.9, 66.7, 38, 30 }, + [2] = { 31.8, 78.4, 5602, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [1346] = { + ["coords"] = { + [1] = { 53.1, 81.3, 1519, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "46", + }, + [1347] = { + ["coords"] = { + [1] = { 53.1, 81.8, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1348] = { + ["coords"] = { + [1] = { 48.1, 55.1, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1349] = { + ["coords"] = { + [1] = { 53.5, 57.6, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1350] = { + ["coords"] = { + [1] = { 53.2, 57.9, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1351] = { + ["coords"] = { + [1] = { 53.2, 45.2, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1353] = { + ["coords"] = { + [1] = { 33.3, 51.5, 11, 300 }, + }, + ["lvl"] = "29", + }, + [1354] = { + ["coords"] = { + [1] = { 25.2, 75.9, 1, 270 }, + [2] = { 52.3, 1.9, 5581, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "3", + }, + [1356] = { + ["coords"] = { + [1] = { 74.6, 11.7, 1537, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1361] = "_", + [1362] = { + ["coords"] = { + [1] = { 24.1, 18.2, 38, 300 }, + [2] = { 10.9, 53.5, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [1364] = { + ["coords"] = { + [1] = { 62.5, 28.4, 11, 300 }, + [2] = { 16.7, 0.8, 5602, 300 }, + }, + ["lvl"] = "34", + ["rnk"] = "1", + }, + [1365] = { + ["coords"] = { + [1] = { 30.3, 59.4, 1537, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [1366] = { + ["coords"] = { + [1] = { 68.3, 64.9, 1519, 555 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [1367] = { + ["coords"] = { + [1] = { 68.4, 64.8, 1519, 555 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [1368] = { + ["coords"] = { + [1] = { 62.7, 50.6, 1519, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [1370] = { + ["coords"] = { + [1] = { 62.7, 50.4, 1519, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [1371] = { + ["coords"] = { + [1] = { 62.7, 50.8, 1519, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [1374] = { + ["coords"] = { + [1] = { 30.2, 45.7, 1, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [1375] = { + ["coords"] = { + [1] = { 30.2, 45.5, 1, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "12", + }, + [1377] = { + ["coords"] = { + [1] = { 49.6, 48.6, 1, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [1378] = { + ["coords"] = { + [1] = { 49.4, 48.4, 1, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "18", + }, + [1379] = { + ["coords"] = { + [1] = { 52.2, 69.4, 38, 60 }, + [2] = { 25.3, 79.8, 5602, 60 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [1380] = { + ["coords"] = { + [1] = { 52.3, 69.2, 38, 300 }, + [2] = { 25.4, 79.7, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [1384] = "_", + [1387] = { + ["coords"] = { + [1] = { 32.5, 29.4, 33, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [1392] = "_", + [1393] = { + ["coords"] = { + [1] = { 71.6, 68.5, 38, 300 }, + [2] = { 71.2, 68.5, 38, 300 }, + [3] = { 72.3, 68.2, 38, 300 }, + [4] = { 70.1, 67.4, 38, 300 }, + [5] = { 69.4, 67.2, 38, 300 }, + [6] = { 72.6, 66.8, 38, 300 }, + [7] = { 70, 66.5, 38, 300 }, + [8] = { 70.1, 66.1, 38, 300 }, + [9] = { 69.1, 66.1, 38, 300 }, + [10] = { 68, 66.1, 38, 300 }, + [11] = { 69.2, 66, 38, 300 }, + [12] = { 70.9, 66, 38, 300 }, + [13] = { 68, 65.8, 38, 300 }, + [14] = { 70.6, 64.8, 38, 300 }, + [15] = { 72.6, 64.7, 38, 300 }, + [16] = { 70.9, 64.3, 38, 300 }, + [17] = { 72.5, 64.2, 38, 300 }, + [18] = { 70.8, 63.5, 38, 300 }, + [19] = { 69, 63.3, 38, 300 }, + [20] = { 72.6, 63.3, 38, 300 }, + [21] = { 69.1, 63.3, 38, 300 }, + [22] = { 70, 62.7, 38, 300 }, + [23] = { 68.3, 62.6, 38, 300 }, + [24] = { 68.2, 62.6, 38, 300 }, + [25] = { 68.7, 62.4, 38, 300 }, + [26] = { 72.7, 62, 38, 300 }, + [27] = { 70.6, 60, 38, 300 }, + [28] = { 69, 59.7, 38, 300 }, + [29] = { 67, 59.4, 38, 300 }, + [30] = { 69.6, 59.3, 38, 300 }, + [31] = { 67.9, 59.1, 38, 300 }, + [32] = { 35.2, 79.4, 5602, 300 }, + [33] = { 35, 79.4, 5602, 300 }, + [34] = { 35.6, 79.2, 5602, 300 }, + [35] = { 34.5, 78.8, 5602, 300 }, + [36] = { 34.1, 78.7, 5602, 300 }, + [37] = { 35.7, 78.5, 5602, 300 }, + [38] = { 34.4, 78.3, 5602, 300 }, + [39] = { 34.4, 78.1, 5602, 300 }, + [40] = { 33.9, 78.1, 5602, 300 }, + [41] = { 33.4, 78.1, 5602, 300 }, + [42] = { 34, 78.1, 5602, 300 }, + [43] = { 34.9, 78.1, 5602, 300 }, + [44] = { 33.4, 77.9, 5602, 300 }, + [45] = { 34.7, 77.4, 5602, 300 }, + [46] = { 35.7, 77.4, 5602, 300 }, + [47] = { 34.8, 77.2, 5602, 300 }, + [48] = { 35.7, 77.1, 5602, 300 }, + [49] = { 34.8, 76.8, 5602, 300 }, + [50] = { 33.9, 76.7, 5602, 300 }, + [51] = { 35.7, 76.7, 5602, 300 }, + [52] = { 34.4, 76.4, 5602, 300 }, + [53] = { 33.5, 76.3, 5602, 300 }, + [54] = { 33.7, 76.2, 5602, 300 }, + [55] = { 35.8, 76, 5602, 300 }, + [56] = { 34.7, 75, 5602, 300 }, + [57] = { 33.9, 74.8, 5602, 300 }, + [58] = { 32.9, 74.7, 5602, 300 }, + [59] = { 34.2, 74.6, 5602, 300 }, + [60] = { 33.3, 74.5, 5602, 300 }, + }, + ["lvl"] = "19-20", + }, + [1395] = { + ["coords"] = { + [1] = { 73.6, 60.1, 1519, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [1397] = { + ["coords"] = { + [1] = { 41.1, 45.5, 1, 270 }, + [2] = { 42.1, 45.5, 1, 270 }, + [3] = { 41.5, 45, 1, 270 }, + [4] = { 41.1, 44.9, 1, 270 }, + [5] = { 42.1, 44.6, 1, 270 }, + [6] = { 41.2, 44.5, 1, 270 }, + [7] = { 41.4, 44.4, 1, 270 }, + [8] = { 41.6, 43.8, 1, 270 }, + [9] = { 40.3, 42.9, 1, 270 }, + [10] = { 42.2, 36.6, 1, 270 }, + [11] = { 42.8, 36.6, 1, 270 }, + [12] = { 43.1, 35.9, 1, 270 }, + [13] = { 41.9, 35.8, 1, 270 }, + [14] = { 42.5, 35.8, 1, 270 }, + [15] = { 41.8, 35.6, 1, 270 }, + [16] = { 41.5, 35.3, 1, 270 }, + [17] = { 41.8, 35.2, 1, 270 }, + [18] = { 40.7, 35, 1, 270 }, + [19] = { 42.3, 34.9, 1, 270 }, + [20] = { 40.8, 34.9, 1, 270 }, + [21] = { 42.1, 34.4, 1, 270 }, + [22] = { 41.3, 34.3, 1, 270 }, + [23] = { 42.6, 33.8, 1, 270 }, + }, + ["lvl"] = "8-9", + }, + [1398] = { + ["coords"] = { + [1] = { 68.1, 65.9, 38, 19800 }, + [2] = { 33.4, 78, 5602, 19800 }, + }, + ["lvl"] = "22", + ["rnk"] = "4", + }, + [1399] = { + ["coords"] = { + [1] = { 70.1, 66.4, 38, 19800 }, + [2] = { 34.5, 78.3, 5602, 19800 }, + }, + ["lvl"] = "21", + ["rnk"] = "4", + }, + [1400] = { + ["coords"] = { + [1] = { 19.3, 58.2, 11, 300 }, + [2] = { 21.3, 58.1, 11, 300 }, + [3] = { 20.6, 56.7, 11, 300 }, + [4] = { 19.1, 56.7, 11, 300 }, + [5] = { 17.5, 55.8, 11, 300 }, + [6] = { 19, 55.6, 11, 300 }, + [7] = { 17.2, 54.4, 11, 300 }, + [8] = { 18.4, 53.7, 11, 300 }, + [9] = { 17.8, 53.4, 11, 300 }, + [10] = { 18.2, 51.4, 11, 300 }, + [11] = { 25.4, 44.6, 11, 300 }, + [12] = { 46.2, 36.8, 11, 300 }, + [13] = { 41.8, 36.6, 11, 300 }, + [14] = { 44.6, 35.9, 11, 300 }, + [15] = { 42.2, 35.8, 11, 300 }, + [16] = { 48.6, 34.7, 11, 300 }, + [17] = { 41, 34.6, 11, 300 }, + [18] = { 46.6, 33.5, 11, 300 }, + [19] = { 38.8, 33.2, 11, 300 }, + [20] = { 43.8, 33, 11, 300 }, + [21] = { 41.7, 32.8, 11, 300 }, + [22] = { 29.5, 32.6, 11, 300 }, + [23] = { 32.6, 31.6, 11, 300 }, + [24] = { 36.2, 31.6, 11, 300 }, + [25] = { 37.5, 31.5, 11, 300 }, + [26] = { 34.3, 31.3, 11, 300 }, + [27] = { 47.5, 31.3, 11, 300 }, + [28] = { 39.7, 31.3, 11, 300 }, + [29] = { 40.5, 30.8, 11, 300 }, + [30] = { 45, 30.4, 11, 300 }, + [31] = { 35.3, 30.2, 11, 300 }, + [32] = { 24, 30.2, 11, 300 }, + [33] = { 39.3, 29.5, 11, 300 }, + [34] = { 33.5, 29.5, 11, 300 }, + [35] = { 36.5, 29.3, 11, 300 }, + [36] = { 24.8, 29.3, 11, 300 }, + [37] = { 34.6, 29, 11, 300 }, + [38] = { 41, 28.4, 11, 300 }, + [39] = { 37, 28, 11, 300 }, + [40] = { 33.6, 28, 11, 300 }, + [41] = { 38.6, 27.7, 11, 300 }, + [42] = { 36.1, 27.5, 11, 300 }, + [43] = { 28.6, 27.5, 11, 300 }, + [44] = { 20.1, 27.2, 11, 300 }, + [45] = { 34.7, 26.9, 11, 300 }, + [46] = { 24.8, 26.9, 11, 300 }, + [47] = { 33.7, 26.8, 11, 300 }, + [48] = { 37.9, 26.6, 11, 300 }, + [49] = { 29.8, 26.1, 11, 300 }, + [50] = { 21.7, 25.6, 11, 300 }, + [51] = { 28.1, 25.4, 11, 300 }, + [52] = { 32, 25.3, 11, 300 }, + [53] = { 4.3, 7.2, 5602, 300 }, + [54] = { 0.8, 7.1, 5602, 300 }, + [55] = { 3, 6.5, 5602, 300 }, + [56] = { 1.2, 6.5, 5602, 300 }, + [57] = { 6.1, 5.6, 5602, 300 }, + [58] = { 0.2, 5.5, 5602, 300 }, + [59] = { 4.5, 4.7, 5602, 300 }, + [60] = { 2.4, 4.2, 5602, 300 }, + [61] = { 0.7, 4.1, 5602, 300 }, + [62] = { 5.2, 3, 5602, 300 }, + [63] = { 3.3, 2.3, 5602, 300 }, + [64] = { 0.2, 0.7, 5602, 300 }, + }, + ["lvl"] = "23-24", + }, + [1401] = "_", + [1402] = { + ["coords"] = { + [1] = { 60.3, 69, 1519, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [1403] = "_", + [1405] = { + ["coords"] = { + [1] = { 53.1, 62, 1519, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [1406] = "_", + [1408] = "_", + [1409] = "_", + [1410] = "_", + [1412] = { + ["coords"] = { + [1] = { 19.8, 91.5, 1, 120 }, + [2] = { 34.6, 68.9, 11, 120 }, + [3] = { 34.3, 66.1, 11, 120 }, + [4] = { 30.8, 63.8, 11, 120 }, + [5] = { 31.2, 63.5, 11, 120 }, + [6] = { 32.2, 61.7, 11, 120 }, + [7] = { 36.2, 61, 11, 120 }, + [8] = { 79, 65.9, 38, 100 }, + [9] = { 77.5, 65.8, 38, 100 }, + [10] = { 79.9, 63.9, 38, 100 }, + [11] = { 80.9, 58.6, 38, 100 }, + [12] = { 33, 68.8, 215, 300 }, + [13] = { 32.5, 65.6, 215, 300 }, + [14] = { 33.4, 64.8, 215, 300 }, + [15] = { 33.2, 64.8, 215, 300 }, + [16] = { 33.6, 64.2, 215, 300 }, + [17] = { 33, 62.6, 215, 300 }, + [18] = { 32.9, 62.2, 215, 300 }, + [19] = { 32.7, 61.8, 215, 300 }, + [20] = { 33, 61.7, 215, 300 }, + [21] = { 33.6, 60.2, 215, 300 }, + [22] = { 33.7, 59.5, 215, 300 }, + [23] = { 21.1, 55.3, 331, 300 }, + [24] = { 23, 53, 331, 300 }, + [25] = { 21.2, 52.2, 331, 300 }, + [26] = { 23.7, 51.5, 331, 300 }, + [27] = { 21.9, 50.7, 331, 300 }, + [28] = { 23.3, 50.5, 331, 300 }, + [29] = { 24.1, 50.2, 331, 300 }, + [30] = { 57.6, 22.3, 406, 300 }, + [31] = { 59.4, 20.1, 406, 300 }, + [32] = { 57.7, 19.4, 406, 300 }, + [33] = { 60.1, 18.7, 406, 300 }, + [34] = { 58.3, 17.9, 406, 300 }, + [35] = { 59.7, 17.7, 406, 300 }, + [36] = { 60.5, 17.4, 406, 300 }, + [37] = { 23.9, 15.7, 406, 100 }, + [38] = { 24.3, 14.3, 406, 100 }, + [39] = { 22.9, 13.6, 406, 100 }, + [40] = { 25.6, 13.1, 406, 100 }, + [41] = { 23.7, 12.8, 406, 100 }, + [42] = { 23.3, 11.2, 406, 100 }, + [43] = { 23.1, 10.6, 406, 100 }, + [44] = { 80.9, 15, 1519, 120 }, + [45] = { 77.6, 14.3, 1519, 120 }, + [46] = { 75.6, 90, 5581, 25 }, + [47] = { 75.2, 88.7, 5581, 25 }, + [48] = { 37.4, 86.9, 5581, 120 }, + [49] = { 38.8, 86.6, 5581, 120 }, + [50] = { 59.9, 85.4, 5581, 120 }, + [51] = { 58.1, 85, 5581, 120 }, + [52] = { 64.2, 73.2, 5581, 120 }, + [53] = { 45, 62, 5581, 120 }, + [54] = { 47.5, 61.2, 5581, 120 }, + [55] = { 47.6, 58.5, 5581, 120 }, + [56] = { 41.1, 54.5, 5581, 120 }, + [57] = { 44.6, 52.1, 5581, 120 }, + [58] = { 50.2, 48.8, 5581, 120 }, + [59] = { 23.7, 43.1, 5581, 120 }, + [60] = { 31.1, 41.8, 5581, 120 }, + [61] = { 25.1, 38.6, 5581, 120 }, + [62] = { 44.2, 25.8, 5581, 120 }, + [63] = { 31.8, 25.5, 5581, 120 }, + [64] = { 39, 78, 5602, 100 }, + [65] = { 38.2, 78, 5602, 100 }, + [66] = { 39.4, 77, 5602, 100 }, + [67] = { 40, 74.2, 5602, 100 }, + }, + ["lvl"] = "1", + }, + [1413] = { + ["coords"] = { + [1] = { 49.7, 86, 1519, 375 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [1414] = { + ["coords"] = { + [1] = { 49.8, 85.8, 1519, 375 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [1415] = { + ["coords"] = { + [1] = { 49.9, 86.1, 1519, 375 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [1416] = { + ["coords"] = { + [1] = { 59.7, 33.8, 1519, 430 }, + [2] = { 48.5, 95.5, 5581, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [1417] = { + ["coords"] = { + [1] = { 63.4, 75.3, 11, 300 }, + [2] = { 64.1, 75.3, 11, 300 }, + [3] = { 62.2, 74.9, 11, 300 }, + [4] = { 66.3, 72.7, 11, 300 }, + [5] = { 63.9, 72.6, 11, 300 }, + [6] = { 66, 72.5, 11, 300 }, + [7] = { 64, 72.2, 11, 300 }, + [8] = { 65.9, 72.1, 11, 300 }, + [9] = { 65.4, 71, 11, 300 }, + [10] = { 65.5, 68.9, 11, 300 }, + [11] = { 64.7, 68.9, 11, 300 }, + [12] = { 63.4, 66.4, 11, 300 }, + [13] = { 63.6, 65.6, 11, 300 }, + [14] = { 60.5, 63.6, 11, 300 }, + [15] = { 61.9, 61.8, 11, 300 }, + [16] = { 61, 61.7, 11, 300 }, + [17] = { 62.1, 61.4, 11, 300 }, + [18] = { 14.4, 59.9, 11, 300 }, + [19] = { 62.6, 59.4, 11, 300 }, + [20] = { 61.8, 56.8, 11, 300 }, + [21] = { 60.6, 54.7, 11, 300 }, + [22] = { 13.4, 54.7, 11, 300 }, + [23] = { 61, 54.7, 11, 300 }, + [24] = { 59.7, 53.3, 11, 300 }, + [25] = { 14.6, 53.2, 11, 300 }, + [26] = { 61.4, 53.1, 11, 300 }, + [27] = { 15.4, 52.2, 11, 300 }, + [28] = { 16.9, 52.1, 11, 300 }, + [29] = { 18.5, 51.6, 11, 300 }, + [30] = { 14.4, 51.6, 11, 300 }, + [31] = { 58.9, 51.1, 11, 300 }, + [32] = { 58.5, 50.8, 11, 300 }, + [33] = { 59.4, 49.4, 11, 300 }, + [34] = { 18.7, 49.3, 11, 300 }, + [35] = { 57, 48.3, 11, 300 }, + [36] = { 15.1, 47.7, 11, 300 }, + [37] = { 18.6, 47.2, 11, 300 }, + [38] = { 20.2, 47.2, 11, 300 }, + [39] = { 19.1, 47.1, 11, 300 }, + [40] = { 57.3, 47.1, 11, 300 }, + [41] = { 15.8, 46.4, 11, 300 }, + [42] = { 55.1, 45.7, 11, 300 }, + [43] = { 19.8, 45.1, 11, 300 }, + [44] = { 21.4, 44.6, 11, 300 }, + [45] = { 53.8, 42.5, 11, 300 }, + [46] = { 53.1, 42.3, 11, 300 }, + [47] = { 53.2, 41.3, 11, 300 }, + [48] = { 26.5, 41.2, 11, 300 }, + [49] = { 27.8, 39.6, 11, 300 }, + [50] = { 52.4, 39.6, 11, 300 }, + [51] = { 30.4, 39, 11, 300 }, + [52] = { 29, 38.8, 11, 300 }, + [53] = { 51.5, 38.4, 11, 300 }, + [54] = { 53.1, 37.4, 11, 300 }, + [55] = { 34.5, 37.2, 11, 300 }, + [56] = { 50.9, 37.1, 11, 300 }, + [57] = { 36.9, 36.6, 11, 300 }, + [58] = { 52.2, 36.2, 11, 300 }, + [59] = { 28.7, 36.2, 11, 300 }, + [60] = { 40.3, 36.1, 11, 300 }, + [61] = { 35.1, 35.9, 11, 300 }, + [62] = { 38.6, 35.9, 11, 300 }, + [63] = { 33.7, 35.4, 11, 300 }, + [64] = { 51.9, 35.4, 11, 300 }, + [65] = { 37.3, 34.6, 11, 300 }, + [66] = { 28, 34.4, 11, 300 }, + [67] = { 50.5, 33.8, 11, 300 }, + [68] = { 28.7, 33.8, 11, 300 }, + [69] = { 53.1, 33.3, 11, 300 }, + [70] = { 53.2, 32.7, 11, 300 }, + [71] = { 52.4, 32.7, 11, 300 }, + [72] = { 28, 32.6, 11, 300 }, + [73] = { 53.8, 32.6, 11, 300 }, + [74] = { 26.7, 32.5, 11, 300 }, + [75] = { 50.3, 32, 11, 300 }, + [76] = { 54.7, 31.2, 11, 300 }, + [77] = { 17.5, 36.8, 5602, 300 }, + [78] = { 18, 36.8, 5602, 300 }, + [79] = { 16.5, 36.5, 5602, 300 }, + [80] = { 19.7, 34.8, 5602, 300 }, + [81] = { 17.9, 34.7, 5602, 300 }, + [82] = { 19.4, 34.7, 5602, 300 }, + [83] = { 17.9, 34.4, 5602, 300 }, + [84] = { 19.4, 34.4, 5602, 300 }, + [85] = { 19, 33.5, 5602, 300 }, + [86] = { 19.1, 31.9, 5602, 300 }, + [87] = { 18.4, 31.9, 5602, 300 }, + [88] = { 17.5, 30, 5602, 300 }, + [89] = { 17.6, 29.3, 5602, 300 }, + [90] = { 15.2, 27.8, 5602, 300 }, + [91] = { 16.3, 26.4, 5602, 300 }, + [92] = { 15.6, 26.3, 5602, 300 }, + [93] = { 16.4, 26.1, 5602, 300 }, + [94] = { 16.8, 24.6, 5602, 300 }, + [95] = { 16.2, 22.6, 5602, 300 }, + [96] = { 15.3, 21, 5602, 300 }, + [97] = { 15.6, 21, 5602, 300 }, + [98] = { 14.6, 19.9, 5602, 300 }, + [99] = { 15.9, 19.7, 5602, 300 }, + [100] = { 14, 18.2, 5602, 300 }, + [101] = { 13.7, 18, 5602, 300 }, + [102] = { 14.4, 16.9, 5602, 300 }, + [103] = { 12.5, 16.1, 5602, 300 }, + [104] = { 12.8, 15.1, 5602, 300 }, + [105] = { 11.1, 14, 5602, 300 }, + [106] = { 10.1, 11.6, 5602, 300 }, + [107] = { 9.5, 11.5, 5602, 300 }, + [108] = { 9.6, 10.6, 5602, 300 }, + [109] = { 9, 9.3, 5602, 300 }, + [110] = { 8.3, 8.5, 5602, 300 }, + [111] = { 9.6, 7.7, 5602, 300 }, + [112] = { 7.8, 7.4, 5602, 300 }, + [113] = { 8.8, 6.8, 5602, 300 }, + [114] = { 8.6, 6.1, 5602, 300 }, + [115] = { 7.5, 4.9, 5602, 300 }, + [116] = { 9.5, 4.5, 5602, 300 }, + [117] = { 9.6, 4.1, 5602, 300 }, + [118] = { 9, 4, 5602, 300 }, + [119] = { 10.1, 3.9, 5602, 300 }, + [120] = { 7.4, 3.5, 5602, 300 }, + [121] = { 10.8, 2.9, 5602, 300 }, + }, + ["lvl"] = "21-22", + }, + [1418] = { + ["coords"] = { + [1] = { 9.5, 72.5, 11, 300 }, + [2] = { 11, 71.6, 11, 300 }, + [3] = { 9.5, 71.5, 11, 300 }, + [4] = { 8.7, 71.3, 11, 300 }, + [5] = { 10.3, 71.3, 11, 300 }, + [6] = { 10.2, 70.4, 11, 300 }, + [7] = { 8.7, 70.3, 11, 300 }, + [8] = { 9.4, 70.1, 11, 300 }, + [9] = { 9.6, 69, 11, 300 }, + [10] = { 8.6, 69, 11, 300 }, + [11] = { 8.7, 67.9, 11, 300 }, + [12] = { 9.5, 67.9, 11, 300 }, + [13] = { 9.5, 66.7, 11, 300 }, + [14] = { 12.4, 66.5, 11, 300 }, + [15] = { 11.9, 66.4, 11, 300 }, + [16] = { 10.2, 66.3, 11, 300 }, + [17] = { 11.3, 65.5, 11, 300 }, + [18] = { 11.8, 65.5, 11, 300 }, + [19] = { 12.7, 65.3, 11, 300 }, + [20] = { 12.4, 65.2, 11, 300 }, + [21] = { 11.8, 64.4, 11, 300 }, + [22] = { 12.6, 64.3, 11, 300 }, + [23] = { 13.7, 64, 11, 300 }, + [24] = { 12.9, 63.6, 11, 300 }, + [25] = { 12, 63.6, 11, 300 }, + [26] = { 19.2, 19.5, 11, 300 }, + [27] = { 23.3, 18.5, 11, 300 }, + [28] = { 26.4, 18.5, 11, 300 }, + [29] = { 24.8, 18.2, 11, 300 }, + [30] = { 20, 18, 11, 300 }, + [31] = { 21.8, 17.8, 11, 300 }, + [32] = { 20.7, 17, 11, 300 }, + [33] = { 25.7, 16.9, 11, 300 }, + [34] = { 27, 16.9, 11, 300 }, + [35] = { 24.1, 16.9, 11, 300 }, + [36] = { 26.1, 16.3, 11, 300 }, + [37] = { 28.2, 16.1, 11, 300 }, + [38] = { 28.9, 14.6, 11, 300 }, + [39] = { 28, 13.6, 11, 300 }, + [40] = { 29.8, 13.2, 11, 300 }, + [41] = { 29.1, 12.3, 11, 300 }, + [42] = { 31.4, 12.2, 11, 300 }, + [43] = { 30.3, 11.3, 11, 300 }, + [44] = { 31.6, 9.3, 11, 300 }, + [45] = { 21, 99.1, 45, 300 }, + [46] = { 20.2, 98, 45, 300 }, + [47] = { 22.8, 98, 45, 300 }, + [48] = { 21.6, 96.9, 45, 300 }, + [49] = { 23, 94.7, 45, 300 }, + }, + ["lvl"] = "28-29", + }, + [1419] = { + ["coords"] = { + [1] = { 44.7, 86.2, 1519, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [1420] = { + ["coords"] = { + [1] = { 76.6, 80.1, 8, 300 }, + [2] = { 67.1, 67.4, 8, 300 }, + [3] = { 63, 65.2, 8, 300 }, + [4] = { 14.9, 59.4, 8, 300 }, + [5] = { 51, 57, 8, 300 }, + [6] = { 53.3, 49.5, 8, 300 }, + [7] = { 22.6, 48.8, 8, 300 }, + [8] = { 89.7, 46.2, 8, 300 }, + [9] = { 46.8, 45.1, 8, 300 }, + [10] = { 10.7, 35.4, 8, 300 }, + [11] = { 83.9, 27.4, 8, 300 }, + [12] = { 67.3, 71.8, 11, 300 }, + [13] = { 60.5, 69.6, 11, 300 }, + [14] = { 23.5, 68.7, 11, 120 }, + [15] = { 61.6, 67.9, 11, 300 }, + [16] = { 9.7, 61.8, 11, 300 }, + [17] = { 59.6, 59.6, 11, 300 }, + [18] = { 10, 58.6, 11, 300 }, + [19] = { 7.2, 57.7, 11, 300 }, + [20] = { 11.7, 56, 11, 300 }, + [21] = { 9.9, 54.3, 11, 300 }, + [22] = { 13.2, 53.9, 11, 300 }, + [23] = { 10.9, 53, 11, 300 }, + [24] = { 58.7, 49.6, 11, 300 }, + [25] = { 56, 47.5, 11, 300 }, + [26] = { 15.5, 46.9, 11, 300 }, + [27] = { 18.6, 46.3, 11, 300 }, + [28] = { 26.3, 40.8, 11, 300 }, + [29] = { 33.2, 39.8, 11, 300 }, + [30] = { 51.9, 38.9, 11, 300 }, + [31] = { 32, 38.2, 11, 300 }, + [32] = { 49.9, 37.9, 11, 300 }, + [33] = { 33.9, 37.2, 11, 300 }, + [34] = { 31.2, 36.6, 11, 300 }, + [35] = { 38.4, 36.3, 11, 300 }, + [36] = { 48.1, 33.7, 11, 300 }, + [37] = { 24.6, 33.6, 11, 300 }, + [38] = { 21.3, 32.7, 11, 300 }, + [39] = { 42, 31.5, 11, 300 }, + [40] = { 35.1, 28.5, 11, 300 }, + [41] = { 22.1, 26.8, 11, 300 }, + [42] = { 25, 25, 11, 300 }, + [43] = { 53.2, 72.5, 12, 120 }, + [44] = { 53.2, 72.4, 12, 120 }, + [45] = { 46, 78.2, 15, 300 }, + [46] = { 46.5, 77.5, 15, 300 }, + [47] = { 50.2, 77.1, 15, 300 }, + [48] = { 47.9, 76.6, 15, 300 }, + [49] = { 43.6, 76.6, 15, 300 }, + [50] = { 47.3, 76.2, 15, 300 }, + [51] = { 48.7, 75.8, 15, 300 }, + [52] = { 47.3, 75.1, 15, 300 }, + [53] = { 42.2, 74.9, 15, 300 }, + [54] = { 55.2, 74.8, 15, 300 }, + [55] = { 46.4, 74.7, 15, 300 }, + [56] = { 50.1, 74.2, 15, 300 }, + [57] = { 46, 73.9, 15, 300 }, + [58] = { 45.6, 73.7, 15, 300 }, + [59] = { 50.9, 73.7, 15, 300 }, + [60] = { 43.3, 73.1, 15, 300 }, + [61] = { 51.1, 73.1, 15, 300 }, + [62] = { 52.5, 73, 15, 300 }, + [63] = { 47.3, 72.7, 15, 300 }, + [64] = { 52.7, 72.2, 15, 300 }, + [65] = { 55.8, 72.1, 15, 300 }, + [66] = { 38.2, 71.9, 15, 300 }, + [67] = { 35.5, 71, 15, 300 }, + [68] = { 34.2, 70.7, 15, 300 }, + [69] = { 43.2, 70.6, 15, 300 }, + [70] = { 46.3, 70.1, 15, 300 }, + [71] = { 42.8, 70.1, 15, 300 }, + [72] = { 48.7, 69.7, 15, 300 }, + [73] = { 52.4, 69.7, 15, 300 }, + [74] = { 44.5, 69.6, 15, 300 }, + [75] = { 39, 69.6, 15, 300 }, + [76] = { 34.6, 69.4, 15, 300 }, + [77] = { 56.7, 69, 15, 300 }, + [78] = { 41.5, 69, 15, 300 }, + [79] = { 51.2, 68.9, 15, 300 }, + [80] = { 43.1, 68.5, 15, 300 }, + [81] = { 35.9, 67.9, 15, 300 }, + [82] = { 41.4, 67.6, 15, 300 }, + [83] = { 47.9, 66.7, 15, 300 }, + [84] = { 48.6, 66.3, 15, 300 }, + [85] = { 50.8, 65.7, 15, 300 }, + [86] = { 42.1, 65.4, 15, 300 }, + [87] = { 39.3, 65.1, 15, 300 }, + [88] = { 47.3, 63.7, 15, 300 }, + [89] = { 44, 62.7, 15, 300 }, + [90] = { 43.5, 62.7, 15, 300 }, + [91] = { 45.6, 62.1, 15, 300 }, + [92] = { 40.9, 61.8, 15, 300 }, + [93] = { 51.4, 61.5, 15, 300 }, + [94] = { 41.7, 61.1, 15, 300 }, + [95] = { 36.7, 61.1, 15, 300 }, + [96] = { 43, 60.4, 15, 300 }, + [97] = { 48.2, 60.1, 15, 300 }, + [98] = { 36.7, 60, 15, 300 }, + [99] = { 49.9, 57.8, 15, 300 }, + [100] = { 52.3, 56.4, 15, 300 }, + [101] = { 47.7, 54.8, 15, 300 }, + [102] = { 38.2, 54, 15, 300 }, + [103] = { 47.7, 53.8, 15, 300 }, + [104] = { 46, 53, 15, 300 }, + [105] = { 47.4, 52.9, 15, 300 }, + [106] = { 38.6, 52.8, 15, 300 }, + [107] = { 49, 52.7, 15, 300 }, + [108] = { 41, 51.5, 15, 300 }, + [109] = { 37.7, 50.5, 15, 300 }, + [110] = { 44.3, 50.4, 15, 300 }, + [111] = { 35.1, 50.3, 15, 300 }, + [112] = { 43.6, 50.1, 15, 300 }, + [113] = { 48.3, 49.8, 15, 300 }, + [114] = { 45.6, 49.5, 15, 300 }, + [115] = { 45.3, 49.1, 15, 300 }, + [116] = { 34.8, 49.1, 15, 300 }, + [117] = { 44.2, 47.7, 15, 300 }, + [118] = { 42.5, 47.7, 15, 300 }, + [119] = { 34.3, 47.1, 15, 300 }, + [120] = { 38.8, 46.6, 15, 300 }, + [121] = { 40.8, 46.3, 15, 300 }, + [122] = { 42.3, 46.2, 15, 300 }, + [123] = { 39, 46, 15, 300 }, + [124] = { 42.7, 45.3, 15, 300 }, + [125] = { 34.1, 45.1, 15, 300 }, + [126] = { 33.3, 44.7, 15, 300 }, + [127] = { 36.1, 43.9, 15, 300 }, + [128] = { 44.5, 42.7, 15, 300 }, + [129] = { 36.5, 42.5, 15, 300 }, + [130] = { 33.8, 42.3, 15, 300 }, + [131] = { 44.3, 41.6, 15, 300 }, + [132] = { 39, 41.6, 15, 300 }, + [133] = { 41.5, 41.2, 15, 300 }, + [134] = { 33.9, 41.2, 15, 300 }, + [135] = { 44.6, 40.6, 15, 300 }, + [136] = { 36.3, 40.3, 15, 300 }, + [137] = { 41, 39.1, 15, 300 }, + [138] = { 35, 38.9, 15, 300 }, + [139] = { 42.9, 38.3, 15, 300 }, + [140] = { 59.7, 35.8, 15, 300 }, + [141] = { 56.4, 35.8, 15, 300 }, + [142] = { 38.2, 35.8, 15, 300 }, + [143] = { 40.1, 34.9, 15, 300 }, + [144] = { 40.7, 33.1, 15, 300 }, + [145] = { 54.8, 32.8, 15, 300 }, + [146] = { 40.7, 32.3, 15, 300 }, + [147] = { 38, 30.8, 15, 300 }, + [148] = { 38, 30.1, 15, 300 }, + [149] = { 57.1, 29, 15, 300 }, + [150] = { 41.9, 28.9, 15, 300 }, + [151] = { 53.1, 28.3, 15, 300 }, + [152] = { 39, 28.1, 15, 300 }, + [153] = { 36.4, 27.9, 15, 300 }, + [154] = { 55.9, 27.8, 15, 300 }, + [155] = { 51, 27.5, 15, 300 }, + [156] = { 38.6, 25.6, 15, 300 }, + [157] = { 38.1, 25.5, 15, 300 }, + [158] = { 43.8, 25.2, 15, 300 }, + [159] = { 39.7, 25.1, 15, 300 }, + [160] = { 46, 24.7, 15, 300 }, + [161] = { 43.1, 24.7, 15, 300 }, + [162] = { 41.6, 24.4, 15, 300 }, + [163] = { 54.2, 24.3, 15, 300 }, + [164] = { 54.1, 24.2, 15, 300 }, + [165] = { 42.7, 23.3, 15, 300 }, + [166] = { 43.2, 23.2, 15, 300 }, + [167] = { 49.2, 22.9, 15, 300 }, + [168] = { 56.4, 22.4, 15, 300 }, + [169] = { 56.3, 22.3, 15, 300 }, + [170] = { 45.4, 22.1, 15, 300 }, + [171] = { 37.4, 21.8, 15, 300 }, + [172] = { 47.2, 21.6, 15, 300 }, + [173] = { 40.9, 21.5, 15, 300 }, + [174] = { 50.8, 21.4, 15, 300 }, + [175] = { 51.1, 21.2, 15, 300 }, + [176] = { 47, 20.9, 15, 300 }, + [177] = { 41.5, 20.7, 15, 300 }, + [178] = { 53.1, 20.7, 15, 300 }, + [179] = { 38.3, 19.6, 15, 300 }, + [180] = { 44.3, 19.4, 15, 300 }, + [181] = { 51.1, 18.9, 15, 300 }, + [182] = { 41.4, 18.5, 15, 300 }, + [183] = { 37.3, 18.4, 15, 300 }, + [184] = { 47.3, 17.8, 15, 300 }, + [185] = { 47.3, 17.4, 15, 300 }, + [186] = { 39, 14.4, 15, 180 }, + [187] = { 38.6, 14.3, 15, 180 }, + [188] = { 36.7, 14, 15, 180 }, + [189] = { 39.4, 13.9, 15, 180 }, + [190] = { 38.3, 13.8, 15, 180 }, + [191] = { 37.4, 13.8, 15, 180 }, + [192] = { 36.4, 13.8, 15, 180 }, + [193] = { 39, 13.6, 15, 180 }, + [194] = { 37, 13.6, 15, 180 }, + [195] = { 38.5, 13.5, 15, 180 }, + [196] = { 37.4, 13.2, 15, 180 }, + [197] = { 36.9, 12.9, 15, 300 }, + [198] = { 37.2, 12.7, 15, 180 }, + [199] = { 36.9, 12.4, 15, 180 }, + [200] = { 55.3, 91.2, 17, 300 }, + [201] = { 53.9, 90.8, 17, 300 }, + [202] = { 53.2, 90.6, 17, 300 }, + [203] = { 53.4, 89.9, 17, 300 }, + [204] = { 54.1, 89.1, 17, 300 }, + [205] = { 54.5, 85.6, 17, 300 }, + [206] = { 54.5, 85.1, 17, 300 }, + [207] = { 55.3, 81.9, 17, 300 }, + [208] = { 55, 80.1, 17, 300 }, + [209] = { 53.7, 80, 17, 300 }, + [210] = { 53.5, 79.4, 17, 300 }, + [211] = { 53.3, 78.3, 17, 300 }, + [212] = { 53.2, 77.3, 17, 300 }, + [213] = { 52.8, 77.1, 17, 300 }, + [214] = { 54.2, 76.7, 17, 300 }, + [215] = { 54.4, 76, 17, 300 }, + [216] = { 53, 75.9, 17, 300 }, + [217] = { 53.1, 75.3, 17, 300 }, + [218] = { 54.3, 74.8, 17, 300 }, + [219] = { 53.6, 74.1, 17, 300 }, + [220] = { 55.3, 72.5, 17, 300 }, + [221] = { 55.2, 69.9, 17, 300 }, + [222] = { 55.2, 69.6, 17, 300 }, + [223] = { 54.4, 68.4, 17, 300 }, + [224] = { 55.3, 67.2, 17, 300 }, + [225] = { 54.9, 65.2, 17, 300 }, + [226] = { 55.3, 64.1, 17, 300 }, + [227] = { 54.8, 63.5, 17, 300 }, + [228] = { 55.7, 61.4, 17, 180 }, + [229] = { 55.5, 61.4, 17, 180 }, + [230] = { 54.5, 61.2, 17, 180 }, + [231] = { 55.9, 61.2, 17, 180 }, + [232] = { 55.4, 61.1, 17, 180 }, + [233] = { 54.9, 61.1, 17, 180 }, + [234] = { 54.4, 61.1, 17, 180 }, + [235] = { 55.7, 61, 17, 180 }, + [236] = { 54.7, 61, 17, 180 }, + [237] = { 55.4, 60.9, 17, 180 }, + [238] = { 54.9, 60.8, 17, 180 }, + [239] = { 54.6, 60.7, 17, 300 }, + [240] = { 54.8, 60.6, 17, 180 }, + [241] = { 54.6, 60.4, 17, 180 }, + [242] = { 4.9, 57.7, 36, 300 }, + [243] = { 31.2, 82.6, 45, 300 }, + [244] = { 33.8, 81.4, 45, 300 }, + [245] = { 66.7, 44.4, 130, 300 }, + [246] = { 67.9, 37.8, 130, 300 }, + [247] = { 59.1, 36.6, 130, 300 }, + [248] = { 64, 31.3, 130, 300 }, + [249] = { 56.5, 21.6, 130, 300 }, + [250] = { 65.6, 19, 130, 300 }, + [251] = { 59.5, 18.1, 130, 300 }, + [252] = { 65, 12.8, 130, 300 }, + [253] = { 50.6, 73.6, 141, 300 }, + [254] = { 52.4, 72.7, 141, 300 }, + [255] = { 50.2, 71.9, 141, 300 }, + [256] = { 52.8, 70.7, 141, 300 }, + [257] = { 51.3, 70.5, 141, 300 }, + [258] = { 55.3, 69.5, 141, 300 }, + [259] = { 59.5, 69.1, 141, 300 }, + [260] = { 56.1, 68.3, 141, 300 }, + [261] = { 41.3, 67.8, 141, 300 }, + [262] = { 57.2, 67.8, 141, 300 }, + [263] = { 40.7, 67.3, 141, 300 }, + [264] = { 59.6, 66.6, 141, 300 }, + [265] = { 57.9, 66.3, 141, 300 }, + [266] = { 39.7, 65.9, 141, 300 }, + [267] = { 40.5, 65.3, 141, 300 }, + [268] = { 40.5, 63.9, 141, 300 }, + [269] = { 28, 61.5, 141, 300 }, + [270] = { 28.5, 59, 141, 300 }, + [271] = { 26.8, 58.7, 141, 300 }, + [272] = { 26.7, 58.5, 141, 300 }, + [273] = { 27, 58.3, 141, 300 }, + [274] = { 27, 57.5, 141, 300 }, + [275] = { 25.5, 57.3, 141, 300 }, + [276] = { 28.6, 57.2, 141, 300 }, + [277] = { 27, 57, 141, 300 }, + [278] = { 26.5, 56.9, 141, 300 }, + [279] = { 28.3, 56.5, 141, 300 }, + [280] = { 22.8, 56.5, 141, 300 }, + [281] = { 23.8, 56.3, 141, 300 }, + [282] = { 27.6, 56, 141, 300 }, + [283] = { 24.4, 56, 141, 300 }, + [284] = { 27.3, 55.2, 141, 300 }, + [285] = { 24.9, 54.6, 141, 300 }, + [286] = { 25, 54.5, 141, 300 }, + [287] = { 23.6, 54.2, 141, 300 }, + [288] = { 28.5, 54.2, 141, 300 }, + [289] = { 28.1, 53.5, 141, 300 }, + [290] = { 29.6, 53.4, 141, 300 }, + [291] = { 28.1, 53.3, 141, 300 }, + [292] = { 26.9, 53.2, 141, 300 }, + [293] = { 26.9, 53.1, 141, 300 }, + [294] = { 22.6, 53.1, 141, 300 }, + [295] = { 28.9, 52.5, 141, 300 }, + [296] = { 23.4, 52.1, 141, 300 }, + [297] = { 26, 51.9, 141, 300 }, + [298] = { 23.4, 51.9, 141, 300 }, + [299] = { 26.6, 51.8, 141, 300 }, + [300] = { 26.4, 51.6, 141, 300 }, + [301] = { 42.3, 42.2, 141, 300 }, + [302] = { 43.7, 40.8, 141, 300 }, + [303] = { 43, 39.4, 141, 300 }, + [304] = { 42.2, 38.8, 141, 300 }, + [305] = { 57.4, 38.8, 141, 300 }, + [306] = { 57.9, 38.2, 141, 300 }, + [307] = { 57, 37.4, 141, 300 }, + [308] = { 58.6, 36.5, 141, 300 }, + [309] = { 43, 35.2, 141, 300 }, + [310] = { 42.7, 31.8, 141, 300 }, + [311] = { 43.4, 31.7, 141, 300 }, + [312] = { 43, 28.2, 141, 300 }, + [313] = { 44.4, 27.5, 141, 300 }, + [314] = { 43.5, 26.7, 141, 300 }, + [315] = { 44.3, 26.3, 141, 300 }, + [316] = { 66.8, 74.7, 490, 300 }, + [317] = { 65.4, 74.4, 490, 300 }, + [318] = { 69.2, 73, 490, 300 }, + [319] = { 64.4, 72.9, 490, 300 }, + [320] = { 70, 70.4, 490, 300 }, + [321] = { 66.5, 69.9, 490, 300 }, + [322] = { 64.2, 68.4, 490, 300 }, + [323] = { 61.8, 68, 490, 300 }, + [324] = { 69.2, 65.4, 490, 300 }, + [325] = { 71.9, 64.7, 490, 300 }, + [326] = { 73.8, 60.7, 490, 300 }, + [327] = { 65.3, 58.9, 490, 300 }, + [328] = { 63.6, 56.4, 490, 300 }, + [329] = { 71, 55.9, 490, 300 }, + [330] = { 72.6, 55.6, 490, 300 }, + [331] = { 75.4, 55.6, 490, 300 }, + [332] = { 66.8, 55.1, 490, 300 }, + [333] = { 68.8, 52.4, 490, 300 }, + [334] = { 73.1, 48.6, 490, 300 }, + [335] = { 71.4, 48.4, 490, 300 }, + [336] = { 69.1, 46, 490, 300 }, + [337] = { 64.8, 43.9, 490, 300 }, + [338] = { 61.5, 43.2, 490, 300 }, + [339] = { 59.4, 43, 490, 300 }, + [340] = { 69.1, 42.6, 490, 300 }, + [341] = { 45.1, 42.4, 490, 300 }, + [342] = { 56.9, 41.7, 490, 300 }, + [343] = { 64.7, 40.7, 490, 300 }, + [344] = { 44.5, 40.7, 490, 300 }, + [345] = { 49.2, 39.6, 490, 300 }, + [346] = { 44, 37.4, 490, 300 }, + [347] = { 53.8, 37.3, 490, 300 }, + [348] = { 43.6, 31.9, 490, 300 }, + [349] = { 41.5, 29.5, 490, 300 }, + [350] = { 35.7, 26.6, 490, 300 }, + [351] = { 30.9, 24.9, 490, 300 }, + [352] = { 35.7, 22.5, 490, 300 }, + [353] = { 52.1, 69.9, 1657, 300 }, + [354] = { 54.4, 58.2, 1657, 300 }, + [355] = { 46.2, 56.7, 1657, 300 }, + [356] = { 45.8, 55.8, 1657, 300 }, + [357] = { 47, 54.8, 1657, 300 }, + [358] = { 47.2, 50.6, 1657, 300 }, + [359] = { 40.1, 49.9, 1657, 300 }, + [360] = { 54.7, 49.2, 1657, 300 }, + [361] = { 47.3, 48.5, 1657, 300 }, + [362] = { 44.6, 48, 1657, 300 }, + [363] = { 53.6, 46.2, 1657, 300 }, + [364] = { 27.1, 45.8, 1657, 300 }, + [365] = { 31.9, 44.8, 1657, 300 }, + [366] = { 49.9, 43.7, 1657, 300 }, + [367] = { 34.5, 43.5, 1657, 300 }, + [368] = { 48.3, 39.6, 1657, 300 }, + [369] = { 36.8, 37, 1657, 300 }, + [370] = { 37.4, 36.5, 1657, 300 }, + [371] = { 30.7, 34.8, 1657, 300 }, + [372] = { 54.2, 34.8, 1657, 300 }, + [373] = { 52.3, 31.7, 1657, 300 }, + [374] = { 59.8, 31.3, 1657, 300 }, + [375] = { 52.3, 30.7, 1657, 300 }, + [376] = { 46.6, 30.4, 1657, 300 }, + [377] = { 46.8, 29.7, 1657, 300 }, + [378] = { 25.9, 29.6, 1657, 300 }, + [379] = { 56.3, 26.9, 1657, 300 }, + [380] = { 29.9, 25, 1657, 300 }, + [381] = { 42.1, 23.9, 1657, 300 }, + [382] = { 29.9, 23.7, 1657, 300 }, + [383] = { 45.4, 23.4, 1657, 300 }, + [384] = { 44.2, 22.6, 1657, 300 }, + [385] = { 41.4, 48.6, 1977, 300 }, + [386] = { 41.5, 46.9, 1977, 300 }, + [387] = { 38.2, 36.1, 1977, 300 }, + [388] = { 53.2, 35.2, 1977, 300 }, + [389] = { 54.3, 33.7, 1977, 300 }, + [390] = { 49.4, 33.3, 1977, 300 }, + [391] = { 71.3, 83.2, 5097, 300 }, + [392] = { 72.6, 82.1, 5097, 300 }, + [393] = { 71.7, 79.5, 5097, 300 }, + [394] = { 69.7, 79.2, 5097, 300 }, + [395] = { 70.8, 75.7, 5097, 300 }, + [396] = { 69.2, 75.6, 5097, 300 }, + [397] = { 70.1, 72.9, 5097, 300 }, + [398] = { 68.7, 69.1, 5097, 300 }, + [399] = { 70.1, 65.3, 5097, 300 }, + [400] = { 68.8, 62.5, 5097, 300 }, + [401] = { 70.5, 61.9, 5097, 300 }, + [402] = { 69.3, 58.9, 5097, 300 }, + [403] = { 70.7, 57.5, 5097, 300 }, + [404] = { 68.9, 54.3, 5097, 300 }, + [405] = { 68.8, 52.1, 5097, 300 }, + [406] = { 69.7, 48.2, 5097, 300 }, + [407] = { 69.7, 44.6, 5097, 300 }, + [408] = { 69.4, 42.1, 5097, 300 }, + [409] = { 70, 39.9, 5097, 300 }, + [410] = { 69.4, 37.2, 5097, 300 }, + [411] = { 68.2, 35.1, 5097, 300 }, + [412] = { 72.9, 34.2, 5097, 300 }, + [413] = { 72.7, 34, 5097, 300 }, + [414] = { 72.7, 32.7, 5097, 300 }, + [415] = { 67.4, 32.6, 5097, 300 }, + [416] = { 71, 31.4, 5097, 300 }, + [417] = { 68, 30.4, 5097, 300 }, + [418] = { 46.9, 46.5, 5561, 120 }, + [419] = { 46.2, 46.5, 5561, 120 }, + [420] = { 46.7, 46.4, 5561, 120 }, + [421] = { 47.1, 46.4, 5561, 120 }, + [422] = { 47.5, 46.2, 5561, 120 }, + [423] = { 47.6, 46.2, 5561, 120 }, + [424] = { 47.7, 45.7, 5561, 120 }, + [425] = { 46.2, 45.7, 5561, 120 }, + [426] = { 46.2, 45.4, 5561, 120 }, + [427] = { 45.5, 45.3, 5561, 120 }, + [428] = { 47.6, 44.9, 5561, 120 }, + [429] = { 47.6, 44.7, 5561, 120 }, + [430] = { 46.9, 44.5, 5561, 120 }, + [431] = { 46.8, 44.4, 5561, 120 }, + [432] = { 47.1, 44.3, 5561, 120 }, + [433] = { 46.3, 92, 5602, 120 }, + [434] = { 48.1, 90, 5602, 120 }, + [435] = { 47.3, 89.9, 5602, 120 }, + [436] = { 49.6, 88.7, 5602, 120 }, + [437] = { 50.8, 88.3, 5602, 120 }, + [438] = { 59, 88.3, 5602, 120 }, + [439] = { 60.4, 87.9, 5602, 120 }, + [440] = { 57.7, 87.4, 5602, 120 }, + [441] = { 47.1, 87.3, 5602, 120 }, + [442] = { 55, 86.8, 5602, 120 }, + [443] = { 56.2, 86.7, 5602, 120 }, + [444] = { 53.7, 86.7, 5602, 120 }, + [445] = { 61.2, 86.6, 5602, 120 }, + [446] = { 52.3, 86.3, 5602, 120 }, + [447] = { 57.1, 86, 5602, 120 }, + [448] = { 48.4, 85.9, 5602, 120 }, + [449] = { 58.7, 85.7, 5602, 120 }, + [450] = { 50.3, 84.9, 5602, 120 }, + [451] = { 52.8, 83.6, 5602, 120 }, + [452] = { 59.5, 83.5, 5602, 120 }, + [453] = { 56.2, 83.3, 5602, 120 }, + [454] = { 61.1, 83, 5602, 120 }, + [455] = { 63, 82.6, 5602, 120 }, + [456] = { 56, 82.1, 5602, 120 }, + [457] = { 61.9, 82.1, 5602, 120 }, + [458] = { 52.4, 81.2, 5602, 120 }, + [459] = { 55.4, 80.2, 5602, 120 }, + [460] = { 53.4, 80.1, 5602, 120 }, + [461] = { 54.3, 78.2, 5602, 120 }, + [462] = { 55.4, 77.4, 5602, 120 }, + [463] = { 56.2, 77, 5602, 120 }, + [464] = { 54.5, 75.8, 5602, 120 }, + [465] = { 59.1, 75.6, 5602, 120 }, + [466] = { 57.5, 75.3, 5602, 120 }, + [467] = { 57, 74.9, 5602, 120 }, + [468] = { 58.9, 74.6, 5602, 120 }, + [469] = { 63.1, 56.1, 5602, 120 }, + [470] = { 60.2, 55.4, 5602, 120 }, + [471] = { 62.3, 54.3, 5602, 120 }, + [472] = { 58, 51.6, 5602, 120 }, + [473] = { 54.1, 51.5, 5602, 120 }, + [474] = { 59.6, 51.2, 5602, 120 }, + [475] = { 52, 50.9, 5602, 120 }, + [476] = { 55.2, 50.8, 5602, 120 }, + [477] = { 56.1, 49.7, 5602, 120 }, + [478] = { 58.7, 49, 5602, 120 }, + [479] = { 48.7, 48, 5602, 120 }, + [480] = { 50.1, 48, 5602, 120 }, + [481] = { 45.2, 47.1, 5602, 120 }, + [482] = { 47.8, 45.7, 5602, 120 }, + [483] = { 20.4, 34.1, 5602, 300 }, + [484] = { 15.2, 32.5, 5602, 300 }, + [485] = { 16, 31.1, 5602, 300 }, + [486] = { 54, 30.1, 5602, 120 }, + [487] = { 52, 28.9, 5602, 120 }, + [488] = { 52.4, 27.7, 5602, 120 }, + [489] = { 14.5, 24.7, 5602, 300 }, + [490] = { 13.8, 17, 5602, 300 }, + [491] = { 11.8, 15.4, 5602, 300 }, + [492] = { 8.6, 8.8, 5602, 300 }, + [493] = { 7.1, 8, 5602, 300 }, + [494] = { 5.7, 4.8, 5602, 300 }, + [495] = { 1, 3.1, 5602, 300 }, + }, + ["lvl"] = "1", + }, + [1421] = { + ["coords"] = { + [1] = { 38.5, 3.8, 33, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "31", + }, + [1422] = { + ["coords"] = { + [1] = { 37.7, 3.4, 33, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [1423] = { + ["coords"] = { + [1] = { 24.4, 81, 12, 285 }, + [2] = { 23.6, 80.7, 12, 285 }, + [3] = { 24.5, 80.6, 12, 285 }, + [4] = { 23.6, 80.5, 12, 285 }, + [5] = { 84.5, 80.3, 12, 285 }, + [6] = { 23.8, 80.2, 12, 285 }, + [7] = { 20.9, 79.8, 12, 300 }, + [8] = { 84.5, 79.7, 12, 285 }, + [9] = { 84.7, 79.6, 12, 285 }, + [10] = { 23.7, 79.5, 12, 285 }, + [11] = { 20.7, 79.5, 12, 300 }, + [12] = { 84.8, 79.1, 12, 285 }, + [13] = { 83.7, 79, 12, 285 }, + [14] = { 83.9, 78.4, 12, 285 }, + [15] = { 28.1, 78, 12, 285 }, + [16] = { 28.2, 77.7, 12, 285 }, + [17] = { 25.4, 73.5, 12, 285 }, + [18] = { 24.7, 72.9, 12, 285 }, + [19] = { 24.3, 72.9, 12, 285 }, + [20] = { 25.4, 72.9, 12, 285 }, + [21] = { 25.1, 72.7, 12, 285 }, + [22] = { 74.2, 72.7, 12, 285 }, + [23] = { 24.3, 72.6, 12, 285 }, + [24] = { 75, 72.5, 12, 285 }, + [25] = { 74.2, 72.4, 12, 285 }, + [26] = { 25.7, 72.4, 12, 285 }, + [27] = { 25, 72.3, 12, 285 }, + [28] = { 24.5, 72.2, 12, 285 }, + [29] = { 25.8, 72.2, 12, 285 }, + [30] = { 75.1, 72.2, 12, 285 }, + [31] = { 24.9, 72, 12, 285 }, + [32] = { 25, 71.8, 12, 285 }, + [33] = { 24.6, 71.5, 12, 285 }, + [34] = { 24.5, 71.5, 12, 285 }, + [35] = { 42.1, 66.6, 12, 285 }, + [36] = { 42.2, 65.8, 12, 285 }, + [37] = { 47.2, 52.4, 12, 285 }, + [38] = { 63.1, 16.6, 40, 300 }, + [39] = { 62.9, 16.3, 40, 300 }, + [40] = { 64.2, 29.6, 1519, 120 }, + [41] = { 64, 29.2, 1519, 120 }, + [42] = { 29.8, 19.1, 1519, 300 }, + [43] = { 50.9, 93.2, 5581, 120 }, + [44] = { 50.8, 93.1, 5581, 120 }, + [45] = { 32.5, 87.6, 5581, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "23", + }, + [1424] = { + ["coords"] = { + [1] = { 46.5, 19, 40, 9000 }, + }, + ["lvl"] = "15", + ["rnk"] = "4", + }, + [1425] = { + ["coords"] = { + [1] = { 34.6, 27.1, 38, 9000 }, + [2] = { 16.3, 58.1, 5602, 9000 }, + }, + ["lvl"] = "15", + ["rnk"] = "4", + }, + [1426] = { + ["coords"] = { + [1] = { 28.9, 50.6, 40, 300 }, + [2] = { 29.6, 50.6, 40, 300 }, + [3] = { 30.3, 49.7, 40, 300 }, + [4] = { 28.9, 48.7, 40, 300 }, + [5] = { 30.3, 47.6, 40, 300 }, + [6] = { 30.8, 46.2, 40, 300 }, + [7] = { 29.3, 46.1, 40, 300 }, + [8] = { 30.4, 45.4, 40, 300 }, + }, + ["lvl"] = "14-15", + }, + [1427] = { + ["coords"] = { + [1] = { 62.3, 67.9, 1519, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "12", + }, + [1428] = { + ["coords"] = { + [1] = { 58.1, 67.5, 1519, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [1429] = { + ["coords"] = { + [1] = { 52.6, 83.4, 1519, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "2", + }, + [1431] = { + ["coords"] = { + [1] = { 60.3, 76.8, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1432] = { + ["coords"] = { + [1] = { 63.8, 73.6, 1519, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [1434] = { + ["coords"] = { + [1] = { 5.2, 63.7, 11, 300 }, + [2] = { 5, 63.1, 11, 300 }, + [3] = { 5, 62.3, 11, 300 }, + [4] = { 11.2, 62, 11, 300 }, + [5] = { 9.7, 60.5, 11, 300 }, + [6] = { 9.1, 60.2, 11, 300 }, + [7] = { 10.5, 59, 11, 300 }, + [8] = { 10.3, 58.1, 11, 300 }, + [9] = { 8.9, 57.9, 11, 300 }, + [10] = { 9.9, 57.9, 11, 300 }, + [11] = { 4.8, 57.8, 11, 300 }, + [12] = { 10.4, 57.6, 11, 300 }, + [13] = { 4.5, 57.5, 11, 300 }, + [14] = { 9.4, 57.3, 11, 300 }, + [15] = { 11.2, 57.3, 11, 300 }, + [16] = { 10.6, 57.3, 11, 300 }, + [17] = { 9.4, 57.2, 11, 300 }, + [18] = { 9.9, 57.1, 11, 300 }, + [19] = { 4.8, 57, 11, 300 }, + [20] = { 8.3, 56.9, 11, 300 }, + [21] = { 10.3, 56.4, 11, 300 }, + [22] = { 9.8, 56, 11, 300 }, + [23] = { 9.3, 55.9, 11, 300 }, + [24] = { 11.8, 55.2, 11, 300 }, + [25] = { 11.1, 54.7, 11, 300 }, + [26] = { 10.7, 54.4, 11, 300 }, + [27] = { 7.4, 54.2, 11, 300 }, + [28] = { 12.7, 50.1, 11, 300 }, + [29] = { 12.3, 50, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "38-42", + }, + [1435] = { + ["coords"] = { + [1] = { 40.1, 85.3, 1519, 490 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [1439] = { + ["coords"] = { + [1] = { 77.9, 48.9, 1519, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [1440] = { + ["coords"] = { + [1] = { 77.1, 30.2, 1519, 30 }, + [2] = { 57.8, 93.6, 5581, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [1444] = { + ["coords"] = { + [1] = { 55, 54.2, 1519, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [1455] = "_", + [1465] = { + ["coords"] = { + [1] = { 35.6, 49.2, 38, 300 }, + [2] = { 16.8, 69.4, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [1467] = "_", + [1468] = "_", + [1469] = { + ["coords"] = { + [1] = { 35.8, 43.5, 38, 300 }, + [2] = { 16.9, 66.5, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [1470] = { + ["coords"] = { + [1] = { 37.1, 49.4, 38, 30 }, + [2] = { 17.5, 69.5, 5602, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [1472] = { + ["coords"] = { + [1] = { 65.6, 40.9, 1519, 430 }, + [2] = { 51.7, 99.3, 5581, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "53", + }, + [1473] = { + ["coords"] = { + [1] = { 36.5, 48.5, 38, 300 }, + [2] = { 17.2, 69.1, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "14", + }, + [1474] = { + ["coords"] = { + [1] = { 35.9, 45.9, 38, 300 }, + [2] = { 17, 67.7, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [1477] = { + ["coords"] = { + [1] = { 76.9, 52.8, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1478] = { + ["coords"] = { + [1] = { 76.8, 52.7, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1485] = "_", + [1488] = { + ["coords"] = { + [1] = { 38.7, 59.8, 33, 300 }, + [2] = { 39.2, 59.3, 33, 300 }, + [3] = { 39.7, 59.2, 33, 300 }, + [4] = { 40.8, 59.1, 33, 300 }, + [5] = { 40.2, 59.1, 33, 300 }, + [6] = { 39.5, 59, 33, 300 }, + [7] = { 39.3, 58.8, 33, 300 }, + [8] = { 38.6, 58.5, 33, 300 }, + [9] = { 39.5, 58.3, 33, 300 }, + [10] = { 39.2, 58.1, 33, 300 }, + [11] = { 40.7, 58, 33, 300 }, + [12] = { 40.1, 58, 33, 300 }, + [13] = { 39.6, 57.9, 33, 300 }, + [14] = { 39.8, 57.7, 33, 300 }, + [15] = { 38.9, 57.6, 33, 300 }, + [16] = { 39.9, 57.3, 33, 300 }, + [17] = { 41.3, 57, 33, 300 }, + [18] = { 38.7, 56.6, 33, 300 }, + [19] = { 41.7, 56.5, 33, 300 }, + [20] = { 34.4, 52.2, 33, 300 }, + [21] = { 35, 52.1, 33, 300 }, + [22] = { 35.2, 51.8, 33, 300 }, + [23] = { 34.6, 51.8, 33, 300 }, + [24] = { 34.9, 51.7, 33, 300 }, + [25] = { 34.8, 51.4, 33, 300 }, + [26] = { 35.1, 51.1, 33, 300 }, + [27] = { 35.2, 51, 33, 300 }, + [28] = { 34.5, 51, 33, 300 }, + [29] = { 35, 50.6, 33, 300 }, + }, + ["lvl"] = "43-44", + }, + [1489] = { + ["coords"] = { + [1] = { 38.7, 59.8, 33, 300 }, + [2] = { 39.2, 59.3, 33, 300 }, + [3] = { 39.7, 59.2, 33, 300 }, + [4] = { 40.8, 59.1, 33, 300 }, + [5] = { 40.2, 59.1, 33, 300 }, + [6] = { 39.5, 59, 33, 300 }, + [7] = { 39.3, 58.8, 33, 300 }, + [8] = { 38.6, 58.5, 33, 300 }, + [9] = { 39.5, 58.3, 33, 300 }, + [10] = { 39.2, 58.1, 33, 300 }, + [11] = { 40.7, 58, 33, 300 }, + [12] = { 40.1, 58, 33, 300 }, + [13] = { 39.6, 57.9, 33, 300 }, + [14] = { 39.8, 57.7, 33, 300 }, + [15] = { 38.9, 57.6, 33, 300 }, + [16] = { 39.9, 57.3, 33, 300 }, + [17] = { 41.3, 57, 33, 300 }, + [18] = { 38.7, 56.6, 33, 300 }, + [19] = { 41.7, 56.5, 33, 300 }, + [20] = { 34.4, 52.2, 33, 300 }, + [21] = { 35, 52.1, 33, 300 }, + [22] = { 35.2, 51.8, 33, 300 }, + [23] = { 34.6, 51.8, 33, 300 }, + [24] = { 34.9, 51.7, 33, 300 }, + [25] = { 34.8, 51.4, 33, 300 }, + [26] = { 35.1, 51.1, 33, 300 }, + [27] = { 35.2, 51, 33, 300 }, + [28] = { 34.5, 51, 33, 300 }, + [29] = { 35, 50.6, 33, 300 }, + }, + ["lvl"] = "43-44", + }, + [1490] = { + ["coords"] = { + [1] = { 38.7, 59.8, 33, 300 }, + [2] = { 39.2, 59.3, 33, 300 }, + [3] = { 39.7, 59.2, 33, 300 }, + [4] = { 40.8, 59.1, 33, 300 }, + [5] = { 40.2, 59.1, 33, 300 }, + [6] = { 39.5, 59, 33, 300 }, + [7] = { 39.3, 58.8, 33, 300 }, + [8] = { 38.6, 58.5, 33, 300 }, + [9] = { 39.5, 58.3, 33, 300 }, + [10] = { 39.2, 58.1, 33, 300 }, + [11] = { 40.7, 58, 33, 300 }, + [12] = { 40.1, 58, 33, 300 }, + [13] = { 39.6, 57.9, 33, 300 }, + [14] = { 39.8, 57.7, 33, 300 }, + [15] = { 38.9, 57.6, 33, 300 }, + [16] = { 39.9, 57.3, 33, 300 }, + [17] = { 41.3, 57, 33, 300 }, + [18] = { 38.7, 56.6, 33, 300 }, + [19] = { 41.7, 56.5, 33, 300 }, + [20] = { 34.4, 52.2, 33, 300 }, + [21] = { 35, 52.1, 33, 300 }, + [22] = { 35.2, 51.8, 33, 300 }, + [23] = { 34.6, 51.8, 33, 300 }, + [24] = { 34.9, 51.7, 33, 300 }, + [25] = { 34.8, 51.4, 33, 300 }, + [26] = { 35.1, 51.1, 33, 300 }, + [27] = { 35.2, 51, 33, 300 }, + [28] = { 34.5, 51, 33, 300 }, + [29] = { 35, 50.6, 33, 300 }, + }, + ["lvl"] = "44", + }, + [1491] = { + ["coords"] = { + [1] = { 38.7, 59.8, 33, 300 }, + [2] = { 39.2, 59.3, 33, 300 }, + [3] = { 39.7, 59.2, 33, 300 }, + [4] = { 40.8, 59.1, 33, 300 }, + [5] = { 40.2, 59.1, 33, 300 }, + [6] = { 39.5, 59, 33, 300 }, + [7] = { 39.3, 58.8, 33, 300 }, + [8] = { 38.6, 58.5, 33, 300 }, + [9] = { 39.5, 58.3, 33, 300 }, + [10] = { 39.2, 58.1, 33, 300 }, + [11] = { 40.7, 58, 33, 300 }, + [12] = { 40.1, 58, 33, 300 }, + [13] = { 39.6, 57.9, 33, 300 }, + [14] = { 39.8, 57.7, 33, 300 }, + [15] = { 38.9, 57.6, 33, 300 }, + [16] = { 39.9, 57.3, 33, 300 }, + [17] = { 41.3, 57, 33, 300 }, + [18] = { 38.7, 56.6, 33, 300 }, + [19] = { 41.7, 56.5, 33, 300 }, + [20] = { 34.4, 52.2, 33, 300 }, + [21] = { 35, 52.1, 33, 300 }, + [22] = { 35.2, 51.8, 33, 300 }, + [23] = { 34.6, 51.8, 33, 300 }, + [24] = { 34.9, 51.7, 33, 300 }, + [25] = { 34.8, 51.4, 33, 300 }, + [26] = { 35.1, 51.1, 33, 300 }, + [27] = { 35.2, 51, 33, 300 }, + [28] = { 34.5, 51, 33, 300 }, + [29] = { 35, 50.6, 33, 300 }, + }, + ["lvl"] = "44", + }, + [1495] = { + ["coords"] = { + [1] = { 65.5, 60.3, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [1496] = { + ["coords"] = { + [1] = { 58.2, 51.4, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [1499] = { + ["coords"] = { + [1] = { 61.3, 50.8, 85, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "14", + }, + [1500] = { + ["coords"] = { + [1] = { 61.7, 52.3, 85, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "15", + }, + [1501] = { + ["coords"] = { + [1] = { 33.9, 65.2, 85, 180 }, + [2] = { 34.9, 64.7, 85, 180 }, + [3] = { 33.5, 64.7, 85, 180 }, + [4] = { 33, 64.5, 85, 180 }, + [5] = { 34.1, 64.4, 85, 180 }, + [6] = { 32.9, 64.3, 85, 180 }, + [7] = { 32.3, 64.3, 85, 180 }, + [8] = { 33.4, 64.3, 85, 180 }, + [9] = { 34.1, 64.2, 85, 180 }, + [10] = { 30.7, 64.2, 85, 180 }, + [11] = { 34.8, 64.1, 85, 180 }, + [12] = { 31.7, 64.1, 85, 180 }, + [13] = { 33.6, 63.9, 85, 180 }, + [14] = { 33.2, 63.8, 85, 180 }, + [15] = { 31.2, 63.7, 85, 180 }, + [16] = { 32.3, 63.6, 85, 180 }, + [17] = { 31.9, 63.6, 85, 180 }, + [18] = { 32.4, 63, 85, 180 }, + [19] = { 31.1, 63, 85, 180 }, + [20] = { 32.5, 63, 85, 180 }, + [21] = { 34.9, 62.8, 85, 180 }, + [22] = { 34.6, 62.8, 85, 180 }, + [23] = { 31.6, 62.2, 85, 180 }, + [24] = { 31.5, 62.2, 85, 180 }, + [25] = { 30.9, 62.1, 85, 180 }, + [26] = { 31.5, 62, 85, 180 }, + [27] = { 30.7, 61.8, 85, 180 }, + [28] = { 30.8, 61.6, 85, 180 }, + }, + ["lvl"] = "1", + }, + [1502] = { + ["coords"] = { + [1] = { 33.8, 65.9, 85, 180 }, + [2] = { 34.2, 65.8, 85, 180 }, + [3] = { 33.3, 65.7, 85, 180 }, + [4] = { 33.3, 65.5, 85, 180 }, + [5] = { 33.3, 64.9, 85, 180 }, + [6] = { 33.8, 64.4, 85, 180 }, + [7] = { 33.8, 64.2, 85, 180 }, + [8] = { 34.2, 64.2, 85, 180 }, + [9] = { 32.6, 64.1, 85, 180 }, + [10] = { 33.9, 63.9, 85, 180 }, + [11] = { 34.2, 63.6, 85, 180 }, + [12] = { 32.9, 63.5, 85, 180 }, + [13] = { 33.4, 63.4, 85, 180 }, + [14] = { 31.6, 63.4, 85, 180 }, + [15] = { 30.3, 63.3, 85, 180 }, + [16] = { 34, 63.3, 85, 180 }, + [17] = { 33.5, 63.2, 85, 180 }, + [18] = { 32.2, 63.2, 85, 180 }, + [19] = { 33.8, 62.8, 85, 180 }, + [20] = { 31.9, 62.8, 85, 180 }, + [21] = { 32.6, 62.8, 85, 180 }, + [22] = { 31.5, 62.6, 85, 180 }, + [23] = { 32.8, 62.4, 85, 180 }, + [24] = { 31.6, 62.3, 85, 180 }, + [25] = { 32.6, 62.2, 85, 180 }, + [26] = { 32.8, 62.2, 85, 180 }, + [27] = { 31.7, 62.2, 85, 180 }, + [28] = { 31.8, 61.9, 85, 180 }, + [29] = { 33.6, 61.8, 85, 180 }, + [30] = { 31.4, 61.4, 85, 180 }, + [31] = { 32.8, 61.3, 85, 180 }, + [32] = { 33.2, 61.2, 85, 180 }, + [33] = { 31.6, 60.9, 85, 180 }, + [34] = { 32.4, 60.7, 85, 180 }, + [35] = { 32.1, 60.5, 85, 180 }, + }, + ["lvl"] = "1-2", + }, + [1504] = { + ["coords"] = { + [1] = { 27.9, 60.5, 85, 300 }, + [2] = { 28.2, 59.8, 85, 300 }, + [3] = { 27.7, 59.6, 85, 300 }, + [4] = { 28.9, 59.5, 85, 300 }, + [5] = { 29.4, 59.4, 85, 300 }, + [6] = { 27.1, 59.2, 85, 300 }, + [7] = { 28.1, 59.2, 85, 300 }, + [8] = { 28.5, 59.1, 85, 300 }, + [9] = { 27.5, 58.9, 85, 300 }, + [10] = { 29.7, 58.5, 85, 300 }, + [11] = { 28.4, 58.3, 85, 300 }, + [12] = { 29.1, 58.1, 85, 300 }, + [13] = { 27.4, 57.9, 85, 300 }, + [14] = { 29.2, 57.7, 85, 300 }, + [15] = { 28.3, 57.4, 85, 300 }, + [16] = { 29.9, 57.4, 85, 300 }, + [17] = { 28.2, 57.1, 85, 300 }, + [18] = { 29, 57.1, 85, 300 }, + [19] = { 27.8, 57, 85, 300 }, + [20] = { 29.8, 57, 85, 300 }, + [21] = { 27.1, 56.6, 85, 300 }, + [22] = { 28.5, 56.5, 85, 300 }, + [23] = { 30.6, 56.5, 85, 300 }, + [24] = { 26.8, 56.2, 85, 300 }, + [25] = { 29.1, 56.1, 85, 300 }, + [26] = { 27.4, 55.9, 85, 300 }, + [27] = { 29.8, 55.9, 85, 300 }, + [28] = { 28.2, 55.6, 85, 300 }, + [29] = { 29.4, 55.6, 85, 300 }, + [30] = { 27.9, 55.2, 85, 300 }, + }, + ["lvl"] = "2-3", + }, + [1505] = { + ["coords"] = { + [1] = { 24.5, 60.6, 85, 300 }, + [2] = { 24, 60.6, 85, 300 }, + [3] = { 26.1, 60.4, 85, 300 }, + [4] = { 25.2, 60.4, 85, 300 }, + [5] = { 24.8, 60.3, 85, 300 }, + [6] = { 23.5, 60.2, 85, 300 }, + [7] = { 26.2, 60.2, 85, 300 }, + [8] = { 24.6, 60.1, 85, 300 }, + [9] = { 23.3, 59.9, 85, 300 }, + [10] = { 25.4, 59.8, 85, 300 }, + [11] = { 24.5, 59.7, 85, 300 }, + [12] = { 24.8, 59.7, 85, 300 }, + [13] = { 26.2, 59.7, 85, 300 }, + [14] = { 23.2, 59.6, 85, 300 }, + [15] = { 25.9, 59.5, 85, 300 }, + [16] = { 25.2, 59.5, 85, 300 }, + [17] = { 26.6, 59.5, 85, 300 }, + [18] = { 25.6, 59.4, 85, 300 }, + [19] = { 25, 59.2, 85, 300 }, + [20] = { 23.5, 59.1, 85, 300 }, + [21] = { 24, 58.4, 85, 300 }, + [22] = { 23.7, 58.4, 85, 300 }, + [23] = { 23.6, 58.3, 85, 300 }, + }, + ["lvl"] = "3-4", + }, + [1506] = { + ["coords"] = { + [1] = { 37.7, 71.7, 85, 300 }, + [2] = { 37, 70.9, 85, 300 }, + [3] = { 37.8, 70, 85, 300 }, + [4] = { 38.7, 69.4, 85, 300 }, + [5] = { 37.8, 69.2, 85, 300 }, + [6] = { 37.5, 68.7, 85, 300 }, + [7] = { 36.7, 68.6, 85, 120 }, + [8] = { 35.9, 68.6, 85, 300 }, + [9] = { 38.3, 68.5, 85, 300 }, + [10] = { 37.4, 68, 85, 300 }, + [11] = { 38.4, 67.7, 85, 300 }, + [12] = { 37.6, 67.5, 85, 300 }, + [13] = { 37, 67.3, 85, 300 }, + [14] = { 36.2, 67.2, 85, 300 }, + [15] = { 38.7, 67.1, 85, 300 }, + [16] = { 37.5, 66.4, 85, 300 }, + [17] = { 36.9, 66.4, 85, 300 }, + [18] = { 38.6, 66.2, 85, 300 }, + [19] = { 36.6, 65.6, 85, 300 }, + [20] = { 37.8, 65.6, 85, 300 }, + [21] = { 37, 65.2, 85, 300 }, + [22] = { 38.3, 65.1, 85, 300 }, + [23] = { 36.9, 63, 85, 300 }, + }, + ["lvl"] = "3", + }, + [1507] = { + ["coords"] = { + [1] = { 38.5, 70.3, 85, 300 }, + [2] = { 36.9, 69.9, 85, 300 }, + [3] = { 37.4, 69.6, 85, 300 }, + [4] = { 36.5, 69.4, 85, 300 }, + [5] = { 36.5, 68.4, 85, 120 }, + [6] = { 38.5, 68.3, 85, 300 }, + [7] = { 37.6, 68, 85, 300 }, + [8] = { 37.4, 67.8, 85, 300 }, + [9] = { 37.8, 66.6, 85, 300 }, + [10] = { 38.7, 65.1, 85, 300 }, + }, + ["lvl"] = "3-4", + }, + [1508] = { + ["coords"] = { + [1] = { 33.6, 68.6, 85, 180 }, + [2] = { 28.9, 68.2, 85, 180 }, + [3] = { 33, 67.4, 85, 180 }, + [4] = { 29.4, 67.2, 85, 180 }, + [5] = { 34.3, 67.2, 85, 180 }, + [6] = { 29.4, 65.7, 85, 180 }, + [7] = { 28.8, 64.7, 85, 180 }, + [8] = { 30.2, 64, 85, 180 }, + [9] = { 30.1, 62.9, 85, 180 }, + [10] = { 30.9, 62.1, 85, 180 }, + [11] = { 29.5, 61.9, 85, 180 }, + [12] = { 30.8, 60.8, 85, 180 }, + [13] = { 31.9, 59.6, 85, 180 }, + [14] = { 31.4, 58.4, 85, 180 }, + [15] = { 34.9, 57.9, 85, 180 }, + [16] = { 32, 57.5, 85, 180 }, + [17] = { 34.2, 57, 85, 180 }, + [18] = { 31, 55.6, 85, 180 }, + }, + ["lvl"] = "1", + }, + [1509] = { + ["coords"] = { + [1] = { 35.6, 65.8, 85, 300 }, + [2] = { 34.6, 65.2, 85, 300 }, + [3] = { 38.2, 63.9, 85, 300 }, + [4] = { 36.5, 63.6, 85, 300 }, + [5] = { 36.9, 63.5, 85, 300 }, + [6] = { 37.8, 63, 85, 300 }, + [7] = { 34.6, 62.5, 85, 300 }, + [8] = { 35.7, 62.3, 85, 300 }, + [9] = { 36.6, 60.8, 85, 300 }, + [10] = { 37.7, 60.6, 85, 300 }, + [11] = { 35.7, 59.5, 85, 300 }, + [12] = { 34.6, 58.9, 85, 300 }, + [13] = { 37.4, 58.7, 85, 300 }, + [14] = { 35.1, 57.4, 85, 300 }, + [15] = { 35.7, 57.3, 85, 300 }, + [16] = { 36.9, 56.9, 85, 300 }, + [17] = { 34.5, 56.8, 85, 300 }, + [18] = { 35.9, 56, 85, 300 }, + [19] = { 37.6, 56, 85, 300 }, + }, + ["lvl"] = "2-3", + }, + [1512] = { + ["coords"] = { + [1] = { 31.5, 72.5, 85, 180 }, + [2] = { 29.4, 72.5, 85, 180 }, + [3] = { 32, 71.6, 85, 180 }, + [4] = { 35.7, 71.4, 85, 180 }, + [5] = { 35.1, 71.4, 85, 180 }, + [6] = { 35.8, 70.8, 85, 180 }, + [7] = { 34.3, 70.7, 85, 180 }, + [8] = { 35.1, 70.4, 85, 180 }, + [9] = { 29.9, 70.3, 85, 180 }, + [10] = { 35, 69.6, 85, 180 }, + [11] = { 32.4, 69.5, 85, 180 }, + [12] = { 34.3, 69.5, 85, 180 }, + [13] = { 30.7, 69.3, 85, 180 }, + [14] = { 35.7, 69.3, 85, 180 }, + [15] = { 29.3, 69.2, 85, 180 }, + [16] = { 28.6, 69.1, 85, 180 }, + [17] = { 34.2, 68.2, 85, 180 }, + [18] = { 29, 67.8, 85, 180 }, + [19] = { 27.9, 67.4, 85, 180 }, + [20] = { 33.4, 66.8, 85, 180 }, + [21] = { 29.1, 66.7, 85, 180 }, + [22] = { 29.9, 66.2, 85, 180 }, + [23] = { 30.2, 65.5, 85, 180 }, + [24] = { 27.9, 64.8, 85, 180 }, + [25] = { 29.7, 64.1, 85, 180 }, + [26] = { 28.3, 63.9, 85, 180 }, + [27] = { 28.3, 63.6, 85, 180 }, + [28] = { 29.8, 63.6, 85, 180 }, + [29] = { 27.8, 63.6, 85, 180 }, + [30] = { 28.4, 62.6, 85, 180 }, + [31] = { 29.6, 62.2, 85, 180 }, + [32] = { 30.1, 61.5, 85, 180 }, + [33] = { 29.5, 61, 85, 180 }, + [34] = { 30.9, 59.7, 85, 180 }, + [35] = { 34, 58.2, 85, 180 }, + [36] = { 32.8, 58.1, 85, 180 }, + [37] = { 31.1, 58, 85, 180 }, + [38] = { 33.8, 57.3, 85, 180 }, + [39] = { 31.5, 56.2, 85, 180 }, + [40] = { 32.5, 56.2, 85, 180 }, + }, + ["lvl"] = "1-2", + }, + [1513] = { + ["coords"] = { + [1] = { 34.9, 66.8, 85, 300 }, + [2] = { 35.1, 66.2, 85, 300 }, + [3] = { 34.1, 65.4, 85, 300 }, + [4] = { 35.2, 64.7, 85, 300 }, + [5] = { 36.9, 64.4, 85, 300 }, + [6] = { 35.4, 63, 85, 300 }, + [7] = { 37.8, 62, 85, 300 }, + [8] = { 37.1, 62, 85, 300 }, + [9] = { 35.6, 61.8, 85, 300 }, + [10] = { 33.9, 61.7, 85, 300 }, + [11] = { 34.9, 61.4, 85, 300 }, + [12] = { 37.2, 59.8, 85, 300 }, + [13] = { 34.4, 59.6, 85, 300 }, + [14] = { 37.6, 59.4, 85, 300 }, + [15] = { 35.1, 59, 85, 300 }, + [16] = { 36.5, 58.6, 85, 300 }, + [17] = { 35.6, 58.3, 85, 300 }, + [18] = { 37.7, 58, 85, 300 }, + [19] = { 34.1, 57.3, 85, 300 }, + [20] = { 35.2, 56.7, 85, 300 }, + [21] = { 36.8, 56.5, 85, 300 }, + }, + ["lvl"] = "3-4", + }, + [1515] = { + ["coords"] = { + [1] = { 60.6, 51.8, 85, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "14", + }, + [1518] = { + ["coords"] = { + [1] = { 59.4, 52.4, 85, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [1519] = { + ["coords"] = { + [1] = { 40.9, 54.2, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [1520] = { + ["coords"] = { + [1] = { 48.7, 44.2, 85, 300 }, + [2] = { 48.7, 44.1, 85, 300 }, + [3] = { 50.7, 44, 85, 300 }, + [4] = { 46.8, 43.9, 85, 300 }, + [5] = { 49.4, 43.4, 85, 300 }, + [6] = { 46, 43.3, 85, 300 }, + [7] = { 50.1, 43.2, 85, 300 }, + [8] = { 49.3, 42.8, 85, 300 }, + [9] = { 49.3, 42.3, 85, 300 }, + [10] = { 44.6, 41.3, 85, 300 }, + [11] = { 45.8, 40.4, 85, 300 }, + [12] = { 43.9, 39.8, 85, 300 }, + [13] = { 46.1, 39.1, 85, 300 }, + [14] = { 46.1, 38.8, 85, 300 }, + [15] = { 45.4, 38.3, 85, 300 }, + [16] = { 49, 38.1, 85, 300 }, + [17] = { 47.7, 37.1, 85, 300 }, + [18] = { 49.5, 36.8, 85, 300 }, + [19] = { 46.1, 36.1, 85, 300 }, + [20] = { 49.3, 35.9, 85, 300 }, + [21] = { 46.1, 34.3, 85, 300 }, + }, + ["lvl"] = "6-7", + }, + [1521] = { + ["coords"] = { + [1] = { 61.9, 52.7, 85, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "8", + }, + [1522] = { + ["coords"] = { + [1] = { 50.2, 43, 85, 300 }, + [2] = { 45.3, 42.9, 85, 300 }, + [3] = { 47.6, 42.8, 85, 300 }, + [4] = { 48.9, 42.8, 85, 300 }, + [5] = { 47, 42, 85, 300 }, + [6] = { 48.3, 41.7, 85, 300 }, + [7] = { 45.4, 41.5, 85, 300 }, + [8] = { 47.4, 40.7, 85, 120 }, + [9] = { 45.4, 40.5, 85, 300 }, + [10] = { 44.6, 40.5, 85, 300 }, + [11] = { 46.8, 39.9, 85, 300 }, + [12] = { 45.4, 39.6, 85, 300 }, + [13] = { 48.3, 39.5, 85, 300 }, + [14] = { 47.4, 38.3, 85, 300 }, + [15] = { 44.4, 38.3, 85, 300 }, + [16] = { 44.4, 37.6, 85, 300 }, + [17] = { 46.7, 37.5, 85, 300 }, + [18] = { 48.3, 37.5, 85, 300 }, + [19] = { 45.1, 37.5, 85, 300 }, + [20] = { 47.7, 37.5, 85, 300 }, + [21] = { 49.9, 36.8, 85, 300 }, + [22] = { 49.2, 36.2, 85, 300 }, + [23] = { 49.8, 36.2, 85, 120 }, + [24] = { 47.5, 36.1, 85, 300 }, + [25] = { 49.6, 36, 85, 300 }, + [26] = { 44.9, 36, 85, 300 }, + [27] = { 49, 35.3, 85, 300 }, + [28] = { 42.7, 35.1, 85, 300 }, + [29] = { 43.9, 35, 85, 300 }, + [30] = { 46.9, 34.9, 85, 300 }, + [31] = { 45.3, 34.9, 85, 300 }, + [32] = { 42.8, 34.2, 85, 300 }, + [33] = { 49, 34.1, 85, 300 }, + [34] = { 48.7, 34.1, 85, 300 }, + [35] = { 47.9, 34.1, 85, 300 }, + [36] = { 51, 34, 85, 300 }, + [37] = { 49.2, 33.9, 85, 300 }, + [38] = { 42.4, 33.6, 85, 300 }, + [39] = { 49.2, 33.5, 85, 300 }, + [40] = { 46.9, 33.4, 85, 300 }, + [41] = { 43.3, 32.5, 85, 300 }, + [42] = { 45.3, 32.4, 85, 300 }, + [43] = { 47.1, 32.3, 85, 300 }, + [44] = { 42.7, 32.3, 85, 300 }, + [45] = { 46.6, 32, 85, 300 }, + [46] = { 46.2, 31.7, 85, 300 }, + [47] = { 50.4, 31.5, 85, 300 }, + [48] = { 47.7, 31.2, 85, 300 }, + [49] = { 47.7, 30.7, 85, 300 }, + [50] = { 43.9, 30.5, 85, 300 }, + [51] = { 45.6, 30.4, 85, 300 }, + [52] = { 48.2, 30.4, 85, 300 }, + [53] = { 47.3, 30.2, 85, 300 }, + [54] = { 46.2, 29.4, 85, 300 }, + [55] = { 47.7, 29.2, 85, 300 }, + [56] = { 43.6, 28.6, 85, 300 }, + [57] = { 49.2, 27.9, 85, 300 }, + }, + ["lvl"] = "7-8", + }, + [1523] = { + ["coords"] = { + [1] = { 43.8, 35.4, 85, 300 }, + [2] = { 48.4, 35, 85, 300 }, + [3] = { 49.6, 34.9, 85, 300 }, + [4] = { 45, 34.6, 85, 300 }, + [5] = { 47.6, 34.4, 85, 300 }, + [6] = { 44.7, 33.9, 85, 300 }, + [7] = { 48.9, 33.7, 85, 300 }, + [8] = { 46.1, 33.5, 85, 300 }, + [9] = { 49.2, 33.3, 85, 300 }, + [10] = { 51.3, 33.2, 85, 300 }, + [11] = { 48.2, 32.9, 85, 300 }, + [12] = { 49.5, 32.9, 85, 300 }, + [13] = { 48.4, 32.9, 85, 300 }, + [14] = { 43.8, 32.6, 85, 300 }, + [15] = { 49.1, 31.6, 85, 300 }, + [16] = { 44.8, 31.5, 85, 300 }, + [17] = { 43.3, 31.3, 85, 300 }, + [18] = { 46, 30.2, 85, 300 }, + [19] = { 47, 30.2, 85, 300 }, + [20] = { 44.8, 29.3, 85, 300 }, + [21] = { 48.8, 29.1, 85, 300 }, + [22] = { 45.4, 28.5, 85, 300 }, + [23] = { 47.1, 28, 85, 300 }, + [24] = { 48.3, 27.9, 85, 300 }, + }, + ["lvl"] = "8-9", + }, + [1525] = { + ["coords"] = { + [1] = { 53.6, 60.6, 85, 300 }, + [2] = { 52.1, 59.7, 85, 300 }, + [3] = { 54.4, 59.6, 85, 300 }, + [4] = { 52, 59.5, 85, 300 }, + [5] = { 52.8, 59.4, 85, 300 }, + [6] = { 54.8, 59.2, 85, 300 }, + [7] = { 52, 58.3, 85, 300 }, + [8] = { 53.6, 58.3, 85, 300 }, + [9] = { 51.9, 58.1, 85, 300 }, + [10] = { 51.6, 57.7, 85, 300 }, + [11] = { 53.7, 57.6, 85, 300 }, + [12] = { 55, 57.3, 85, 300 }, + [13] = { 55.8, 57.1, 85, 300 }, + [14] = { 52.7, 57.1, 85, 300 }, + [15] = { 53.4, 57, 85, 300 }, + [16] = { 54.4, 56.9, 85, 300 }, + [17] = { 52.2, 56.5, 85, 300 }, + [18] = { 53, 56.4, 85, 300 }, + [19] = { 53.4, 56.2, 85, 300 }, + [20] = { 49.8, 56, 85, 300 }, + [21] = { 54, 56, 85, 300 }, + [22] = { 53.6, 55.9, 85, 300 }, + [23] = { 54.3, 55.9, 85, 300 }, + [24] = { 49.2, 55.6, 85, 300 }, + [25] = { 49.3, 55.2, 85, 300 }, + [26] = { 54.5, 54.3, 85, 300 }, + [27] = { 53.2, 54.2, 85, 300 }, + [28] = { 50.6, 54.2, 85, 300 }, + [29] = { 54.7, 54.2, 85, 300 }, + [30] = { 53.3, 54.1, 85, 300 }, + [31] = { 53.6, 54.1, 85, 300 }, + [32] = { 52.9, 54, 85, 300 }, + [33] = { 51.3, 53.8, 85, 300 }, + [34] = { 51.9, 53.8, 85, 300 }, + [35] = { 49.8, 53.8, 85, 300 }, + [36] = { 53, 53.5, 85, 300 }, + [37] = { 52.9, 52.8, 85, 300 }, + [38] = { 51.4, 52.8, 85, 300 }, + [39] = { 52.2, 52.3, 85, 300 }, + [40] = { 52.2, 52.2, 85, 300 }, + [41] = { 53, 51.7, 85, 300 }, + [42] = { 51.3, 51.6, 85, 300 }, + [43] = { 54.2, 51.5, 85, 300 }, + [44] = { 55.4, 51.4, 85, 300 }, + [45] = { 54.1, 51.3, 85, 300 }, + [46] = { 54.9, 50.5, 85, 300 }, + [47] = { 52.6, 50.5, 85, 300 }, + [48] = { 52.1, 50.4, 85, 300 }, + [49] = { 54.5, 50.3, 85, 300 }, + [50] = { 53.3, 50.2, 85, 300 }, + [51] = { 54.4, 50.1, 85, 300 }, + [52] = { 56.1, 49.9, 85, 300 }, + [53] = { 54.6, 49.6, 85, 300 }, + [54] = { 52.8, 49.3, 85, 300 }, + [55] = { 55.5, 48.8, 85, 300 }, + [56] = { 52.1, 48.7, 85, 300 }, + [57] = { 53.6, 48.6, 85, 300 }, + [58] = { 54.2, 48.5, 85, 300 }, + [59] = { 52.7, 48.1, 85, 300 }, + [60] = { 55.2, 48.1, 85, 300 }, + [61] = { 56.1, 47.6, 85, 300 }, + [62] = { 51.9, 47.4, 85, 300 }, + [63] = { 53.6, 47.4, 85, 300 }, + [64] = { 52.7, 47.3, 85, 300 }, + [65] = { 56.4, 46.4, 85, 300 }, + [66] = { 52.1, 46.4, 85, 300 }, + [67] = { 53.5, 46.3, 85, 300 }, + [68] = { 52.7, 45.9, 85, 300 }, + [69] = { 52, 45.4, 85, 300 }, + [70] = { 53.9, 45, 85, 300 }, + }, + ["lvl"] = "5-6", + }, + [1526] = { + ["coords"] = { + [1] = { 53.6, 60.6, 85, 300 }, + [2] = { 52.1, 59.7, 85, 300 }, + [3] = { 54.4, 59.6, 85, 300 }, + [4] = { 52, 59.5, 85, 300 }, + [5] = { 52.8, 59.4, 85, 300 }, + [6] = { 54.8, 59.2, 85, 300 }, + [7] = { 52, 58.3, 85, 300 }, + [8] = { 53.6, 58.3, 85, 300 }, + [9] = { 51.9, 58.1, 85, 300 }, + [10] = { 51.6, 57.7, 85, 300 }, + [11] = { 53.7, 57.6, 85, 300 }, + [12] = { 55, 57.3, 85, 300 }, + [13] = { 55.8, 57.1, 85, 300 }, + [14] = { 52.7, 57.1, 85, 300 }, + [15] = { 53.4, 57, 85, 300 }, + [16] = { 54.4, 56.9, 85, 300 }, + [17] = { 52.2, 56.5, 85, 300 }, + [18] = { 53, 56.4, 85, 300 }, + [19] = { 53.4, 56.2, 85, 300 }, + [20] = { 49.8, 56, 85, 300 }, + [21] = { 54, 56, 85, 300 }, + [22] = { 53.6, 55.9, 85, 300 }, + [23] = { 54.3, 55.9, 85, 300 }, + [24] = { 49.2, 55.6, 85, 300 }, + [25] = { 49.3, 55.2, 85, 300 }, + [26] = { 54.5, 54.3, 85, 300 }, + [27] = { 53.2, 54.2, 85, 300 }, + [28] = { 50.6, 54.2, 85, 300 }, + [29] = { 54.7, 54.2, 85, 300 }, + [30] = { 53.3, 54.1, 85, 300 }, + [31] = { 53.6, 54.1, 85, 300 }, + [32] = { 52.9, 54, 85, 300 }, + [33] = { 51.3, 53.8, 85, 300 }, + [34] = { 51.9, 53.8, 85, 300 }, + [35] = { 49.8, 53.8, 85, 300 }, + [36] = { 53, 53.5, 85, 300 }, + [37] = { 52.9, 52.8, 85, 300 }, + [38] = { 51.4, 52.8, 85, 300 }, + [39] = { 52.2, 52.3, 85, 300 }, + [40] = { 52.2, 52.2, 85, 300 }, + [41] = { 53, 51.7, 85, 300 }, + [42] = { 51.3, 51.6, 85, 300 }, + [43] = { 54.2, 51.5, 85, 300 }, + [44] = { 55.4, 51.4, 85, 300 }, + [45] = { 54.1, 51.3, 85, 300 }, + [46] = { 54.9, 50.5, 85, 300 }, + [47] = { 52.6, 50.5, 85, 300 }, + [48] = { 52.1, 50.4, 85, 300 }, + [49] = { 54.5, 50.3, 85, 300 }, + [50] = { 53.3, 50.2, 85, 300 }, + [51] = { 54.4, 50.1, 85, 300 }, + [52] = { 56.1, 49.9, 85, 300 }, + [53] = { 54.6, 49.6, 85, 300 }, + [54] = { 52.8, 49.3, 85, 300 }, + [55] = { 55.5, 48.8, 85, 300 }, + [56] = { 52.1, 48.7, 85, 300 }, + [57] = { 53.6, 48.6, 85, 300 }, + [58] = { 54.2, 48.5, 85, 300 }, + [59] = { 52.7, 48.1, 85, 300 }, + [60] = { 55.2, 48.1, 85, 300 }, + [61] = { 56.1, 47.6, 85, 300 }, + [62] = { 51.9, 47.4, 85, 300 }, + [63] = { 53.6, 47.4, 85, 300 }, + [64] = { 52.7, 47.3, 85, 300 }, + [65] = { 56.4, 46.4, 85, 300 }, + [66] = { 52.1, 46.4, 85, 300 }, + [67] = { 53.5, 46.3, 85, 300 }, + [68] = { 52.7, 45.9, 85, 300 }, + [69] = { 52, 45.4, 85, 300 }, + [70] = { 53.9, 45, 85, 300 }, + }, + ["lvl"] = "6-7", + }, + [1527] = { + ["coords"] = { + [1] = { 66.7, 45.1, 85, 300 }, + [2] = { 66.7, 44.8, 85, 300 }, + [3] = { 68, 44, 85, 300 }, + [4] = { 67.5, 43.8, 85, 300 }, + [5] = { 68.7, 43.6, 85, 300 }, + [6] = { 68.1, 43.5, 85, 300 }, + [7] = { 67.5, 43, 85, 300 }, + [8] = { 68.1, 42.5, 85, 300 }, + [9] = { 67.6, 42.5, 85, 300 }, + [10] = { 67.3, 42.3, 85, 300 }, + [11] = { 67.8, 42.2, 85, 300 }, + [12] = { 69.5, 41.8, 85, 300 }, + [13] = { 68.4, 41.5, 85, 300 }, + [14] = { 69.7, 41.1, 85, 300 }, + }, + ["lvl"] = "7-8", + }, + [1528] = { + ["coords"] = { + [1] = { 66.7, 45.1, 85, 300 }, + [2] = { 66.7, 44.8, 85, 300 }, + [3] = { 68, 44, 85, 300 }, + [4] = { 67.5, 43.8, 85, 300 }, + [5] = { 68.7, 43.6, 85, 300 }, + [6] = { 68.1, 43.5, 85, 300 }, + [7] = { 67.5, 43, 85, 300 }, + [8] = { 68.1, 42.5, 85, 300 }, + [9] = { 67.6, 42.5, 85, 300 }, + [10] = { 67.3, 42.3, 85, 300 }, + [11] = { 67.8, 42.2, 85, 300 }, + [12] = { 69.5, 41.8, 85, 300 }, + [13] = { 68.4, 41.5, 85, 300 }, + [14] = { 69.7, 41.1, 85, 300 }, + }, + ["lvl"] = "8-9", + }, + [1529] = { + ["coords"] = { + [1] = { 19.9, 49.5, 28, 300 }, + [2] = { 19.2, 49.4, 28, 300 }, + [3] = { 19.5, 48.2, 28, 300 }, + [4] = { 20.2, 47.9, 28, 300 }, + [5] = { 21.7, 46.9, 28, 300 }, + [6] = { 74.2, 62.8, 85, 300 }, + [7] = { 76.8, 62.8, 85, 300 }, + [8] = { 76.2, 62.7, 85, 300 }, + [9] = { 74.9, 61.6, 85, 300 }, + [10] = { 76.5, 61.5, 85, 300 }, + [11] = { 77.1, 61.2, 85, 300 }, + [12] = { 78.5, 60.3, 85, 300 }, + [13] = { 76.7, 60.1, 85, 300 }, + [14] = { 74.9, 59.8, 85, 300 }, + [15] = { 76.5, 59.6, 85, 300 }, + [16] = { 75.6, 59.6, 85, 300 }, + [17] = { 74.6, 59.5, 85, 300 }, + [18] = { 77.8, 59.5, 85, 300 }, + }, + ["lvl"] = "9-10", + }, + [1530] = { + ["coords"] = { + [1] = { 51.6, 33.4, 85, 300 }, + [2] = { 52.1, 32.9, 85, 300 }, + [3] = { 48.6, 32, 85, 300 }, + [4] = { 51.3, 31.5, 85, 300 }, + [5] = { 54.7, 31.3, 85, 300 }, + [6] = { 53.3, 31, 85, 300 }, + [7] = { 52, 30.6, 85, 300 }, + [8] = { 53.4, 30.4, 85, 300 }, + [9] = { 49.8, 30.3, 85, 300 }, + [10] = { 54.4, 29.2, 85, 300 }, + [11] = { 50.6, 29.1, 85, 300 }, + [12] = { 49.7, 28.6, 85, 300 }, + [13] = { 51.3, 28.1, 85, 300 }, + [14] = { 51.8, 27, 85, 300 }, + [15] = { 52.6, 27, 85, 300 }, + [16] = { 52.3, 26.9, 85, 300 }, + [17] = { 52.7, 26.9, 85, 300 }, + [18] = { 52.4, 26.5, 85, 300 }, + [19] = { 52.2, 26.4, 85, 300 }, + [20] = { 52.7, 26, 85, 300 }, + [21] = { 51.9, 25.8, 85, 300 }, + }, + ["lvl"] = "10-11", + }, + [1531] = { + ["coords"] = { + [1] = { 44.6, 40.5, 85, 9000 }, + }, + ["lvl"] = "6-7", + ["rnk"] = "4", + }, + [1532] = { + ["coords"] = { + [1] = { 20, 48.6, 28, 300 }, + [2] = { 21, 48, 28, 300 }, + [3] = { 76.9, 61.9, 85, 300 }, + [4] = { 74.2, 61.5, 85, 300 }, + [5] = { 75.6, 61.4, 85, 300 }, + [6] = { 77.9, 61.3, 85, 300 }, + [7] = { 75.3, 61.1, 85, 300 }, + [8] = { 75, 60.5, 85, 300 }, + [9] = { 76.5, 60.5, 85, 300 }, + [10] = { 78.5, 59.4, 85, 300 }, + [11] = { 75.1, 59.1, 85, 300 }, + [12] = { 76.5, 58.7, 85, 300 }, + [13] = { 77.4, 58.7, 85, 300 }, + [14] = { 75.2, 58.2, 85, 300 }, + }, + ["lvl"] = "10-11", + }, + [1533] = { + ["coords"] = { + [1] = { 45.6, 31.6, 85, 9000 }, + }, + ["lvl"] = "8-9", + ["rnk"] = "4", + }, + [1534] = { + ["coords"] = { + [1] = { 51.9, 31.5, 85, 300 }, + [2] = { 51, 30.5, 85, 300 }, + [3] = { 55.2, 30, 85, 300 }, + [4] = { 54, 29.8, 85, 300 }, + [5] = { 54.7, 29.5, 85, 300 }, + [6] = { 52.7, 29.3, 85, 300 }, + [7] = { 51.4, 29.3, 85, 300 }, + [8] = { 51.9, 28.8, 85, 300 }, + [9] = { 53.5, 28, 85, 300 }, + [10] = { 52.2, 27.5, 85, 300 }, + [11] = { 52.9, 27, 85, 300 }, + [12] = { 52, 26.7, 85, 300 }, + [13] = { 52.6, 26.7, 85, 300 }, + [14] = { 52.1, 26.3, 85, 300 }, + [15] = { 52, 25.6, 85, 300 }, + }, + ["lvl"] = "9-10", + }, + [1535] = { + ["coords"] = { + [1] = { 37.5, 52.2, 85, 120 }, + [2] = { 30.5, 51.3, 85, 120 }, + [3] = { 32.6, 51.2, 85, 120 }, + [4] = { 31.8, 51.1, 85, 120 }, + [5] = { 31.4, 50.4, 85, 120 }, + [6] = { 33, 50.3, 85, 120 }, + [7] = { 29.9, 50, 85, 120 }, + [8] = { 29.7, 49.5, 85, 120 }, + [9] = { 32.1, 49.3, 85, 120 }, + [10] = { 33.6, 49.2, 85, 120 }, + [11] = { 30.4, 49.1, 85, 120 }, + [12] = { 31.3, 48.4, 85, 120 }, + [13] = { 33.6, 48.4, 85, 120 }, + [14] = { 32.8, 48.2, 85, 120 }, + [15] = { 36.9, 48.2, 85, 120 }, + [16] = { 34.2, 47.8, 85, 120 }, + [17] = { 37.4, 47.7, 85, 120 }, + [18] = { 30.6, 47.6, 85, 120 }, + [19] = { 36.2, 47.4, 85, 120 }, + [20] = { 37.5, 47.4, 85, 120 }, + [21] = { 32.1, 47.4, 85, 120 }, + [22] = { 33.5, 47.4, 85, 120 }, + [23] = { 32.2, 46.7, 85, 120 }, + [24] = { 33, 46.6, 85, 120 }, + [25] = { 30.9, 46.6, 85, 120 }, + [26] = { 31.8, 46.5, 85, 120 }, + [27] = { 31.7, 46.4, 85, 120 }, + [28] = { 31.7, 46.3, 85, 120 }, + [29] = { 31.7, 46.2, 85, 120 }, + [30] = { 30.7, 46.2, 85, 120 }, + [31] = { 31.9, 46, 85, 120 }, + [32] = { 32, 45.9, 85, 120 }, + [33] = { 31.7, 45.9, 85, 120 }, + [34] = { 33.6, 45.3, 85, 120 }, + [35] = { 32.2, 45, 85, 120 }, + }, + ["lvl"] = "6-7", + }, + [1536] = { + ["coords"] = { + [1] = { 51.1, 69.7, 85, 120 }, + [2] = { 52, 69.5, 85, 120 }, + [3] = { 54.3, 69.3, 85, 120 }, + [4] = { 52.9, 69, 85, 120 }, + [5] = { 50.2, 68.8, 85, 120 }, + [6] = { 52.2, 68.5, 85, 120 }, + [7] = { 53.4, 68.1, 85, 120 }, + [8] = { 50.6, 68, 85, 120 }, + [9] = { 50.5, 67.7, 85, 120 }, + [10] = { 51.2, 67.6, 85, 120 }, + [11] = { 51.5, 67.6, 85, 120 }, + [12] = { 52.8, 67.4, 85, 120 }, + [13] = { 52.7, 67.4, 85, 120 }, + [14] = { 52.2, 67.1, 85, 120 }, + [15] = { 50.2, 66.9, 85, 120 }, + [16] = { 53.8, 66.8, 85, 120 }, + [17] = { 48.8, 66.8, 85, 120 }, + [18] = { 51.7, 66.7, 85, 120 }, + [19] = { 48.2, 66.4, 85, 120 }, + [20] = { 48.8, 66.2, 85, 120 }, + [21] = { 51.7, 66.1, 85, 120 }, + [22] = { 53.7, 66, 85, 120 }, + [23] = { 47.6, 66, 85, 120 }, + [24] = { 51.1, 65.7, 85, 120 }, + [25] = { 43.2, 65.2, 85, 120 }, + [26] = { 44.5, 65, 85, 120 }, + [27] = { 50.5, 64.7, 85, 120 }, + [28] = { 46.7, 64, 85, 120 }, + }, + ["lvl"] = "7-8", + }, + [1537] = { + ["coords"] = { + [1] = { 31.5, 29.7, 28, 120 }, + [2] = { 31.1, 29.2, 28, 120 }, + [3] = { 31, 28.7, 28, 120 }, + [4] = { 31.9, 28.3, 28, 120 }, + [5] = { 30.7, 28.1, 28, 120 }, + [6] = { 30.4, 28, 28, 120 }, + [7] = { 29.6, 27.5, 28, 120 }, + [8] = { 30.9, 27.4, 28, 120 }, + [9] = { 30.6, 27.2, 28, 120 }, + [10] = { 80.3, 57.1, 85, 120 }, + [11] = { 81, 56.9, 85, 120 }, + [12] = { 77.2, 56.8, 85, 120 }, + [13] = { 79.9, 56.4, 85, 120 }, + [14] = { 76.9, 56.2, 85, 120 }, + [15] = { 78.4, 56, 85, 120 }, + [16] = { 79.7, 55.9, 85, 120 }, + [17] = { 81, 55.4, 85, 120 }, + [18] = { 76.2, 55.2, 85, 120 }, + [19] = { 79.6, 55.2, 85, 120 }, + [20] = { 77.1, 55.1, 85, 120 }, + [21] = { 81.7, 54.8, 85, 120 }, + [22] = { 76.6, 54.8, 85, 120 }, + [23] = { 87.8, 43.9, 85, 120 }, + [24] = { 85.8, 43.5, 85, 120 }, + [25] = { 87.5, 43.4, 85, 120 }, + [26] = { 86.8, 43.4, 85, 120 }, + [27] = { 87.4, 42.9, 85, 120 }, + [28] = { 85.3, 42.7, 85, 120 }, + [29] = { 88.2, 42.6, 85, 120 }, + [30] = { 87.1, 42.4, 85, 120 }, + [31] = { 86.8, 42.3, 85, 120 }, + [32] = { 86.1, 41.8, 85, 120 }, + [33] = { 87.4, 41.7, 85, 120 }, + [34] = { 87, 41.5, 85, 120 }, + [35] = { 51.1, 69.7, 85, 120 }, + [36] = { 52, 69.5, 85, 120 }, + [37] = { 54.3, 69.3, 85, 120 }, + [38] = { 52.9, 69, 85, 120 }, + [39] = { 50.2, 68.8, 85, 120 }, + [40] = { 52.2, 68.5, 85, 120 }, + [41] = { 53.4, 68.1, 85, 120 }, + [42] = { 50.6, 68, 85, 120 }, + [43] = { 50.5, 67.7, 85, 120 }, + [44] = { 51.2, 67.6, 85, 120 }, + [45] = { 51.5, 67.6, 85, 120 }, + [46] = { 52.8, 67.4, 85, 120 }, + [47] = { 52.7, 67.4, 85, 120 }, + [48] = { 52.2, 67.1, 85, 120 }, + [49] = { 50.2, 66.9, 85, 120 }, + [50] = { 53.8, 66.8, 85, 120 }, + [51] = { 48.8, 66.8, 85, 120 }, + [52] = { 51.7, 66.7, 85, 120 }, + [53] = { 48.2, 66.4, 85, 120 }, + [54] = { 48.8, 66.2, 85, 120 }, + [55] = { 51.7, 66.1, 85, 120 }, + [56] = { 53.7, 66, 85, 120 }, + [57] = { 47.6, 66, 85, 120 }, + [58] = { 51.1, 65.7, 85, 120 }, + [59] = { 43.2, 65.2, 85, 120 }, + [60] = { 44.5, 65, 85, 120 }, + [61] = { 50.5, 64.7, 85, 120 }, + [62] = { 46.7, 64, 85, 120 }, + }, + ["lvl"] = "8-9", + }, + [1538] = { + ["coords"] = { + [1] = { 30.6, 29.6, 28, 120 }, + [2] = { 30.7, 28.5, 28, 120 }, + [3] = { 30.5, 28, 28, 120 }, + [4] = { 81, 57.3, 85, 120 }, + [5] = { 76.1, 57.2, 85, 120 }, + [6] = { 81.1, 56.9, 85, 120 }, + [7] = { 78.3, 56.3, 85, 120 }, + [8] = { 79.4, 56.2, 85, 120 }, + [9] = { 78.9, 56.2, 85, 120 }, + [10] = { 78.5, 56, 85, 120 }, + [11] = { 79.4, 55.5, 85, 120 }, + [12] = { 78.6, 55.4, 85, 120 }, + [13] = { 80.6, 55.1, 85, 120 }, + [14] = { 77.1, 54.9, 85, 120 }, + [15] = { 81.6, 53.1, 85, 120 }, + [16] = { 86.6, 44.9, 85, 120 }, + [17] = { 87, 43.8, 85, 120 }, + [18] = { 86.8, 43.1, 85, 120 }, + [19] = { 87.2, 42.7, 85, 120 }, + [20] = { 86.9, 42.3, 85, 120 }, + [21] = { 78.9, 36.1, 85, 120 }, + [22] = { 79, 31.2, 85, 120 }, + [23] = { 79.3, 26.1, 85, 120 }, + [24] = { 79.5, 26, 85, 120 }, + [25] = { 79.3, 24.6, 85, 120 }, + }, + ["lvl"] = "9-10", + }, + [1539] = { + ["coords"] = { + [1] = { 78.5, 32.5, 85, 120 }, + [2] = { 79, 28.5, 85, 120 }, + [3] = { 79.1, 27.1, 85, 120 }, + [4] = { 79, 25.6, 85, 120 }, + [5] = { 79.7, 24.7, 85, 120 }, + }, + ["lvl"] = "10-11", + }, + [1540] = { + ["coords"] = { + [1] = { 78.7, 36.1, 85, 120 }, + [2] = { 77.9, 35.4, 85, 120 }, + [3] = { 77.6, 34.7, 85, 120 }, + [4] = { 78.4, 32.8, 85, 120 }, + [5] = { 77.6, 32.8, 85, 120 }, + [6] = { 78.1, 32.1, 85, 120 }, + [7] = { 79.4, 29.7, 85, 120 }, + [8] = { 79.6, 26.1, 85, 120 }, + [9] = { 79.3, 24.4, 85, 120 }, + }, + ["lvl"] = "10-11", + }, + [1541] = "_", + [1543] = { + ["coords"] = { + [1] = { 30.3, 45.6, 85, 300 }, + [2] = { 29.4, 45.1, 85, 300 }, + [3] = { 30.6, 45, 85, 300 }, + [4] = { 29.6, 45, 85, 300 }, + [5] = { 34.9, 44.7, 85, 300 }, + [6] = { 30.1, 44.6, 85, 300 }, + [7] = { 30.7, 44.6, 85, 300 }, + [8] = { 34.3, 44.2, 85, 300 }, + [9] = { 30.1, 43.6, 85, 300 }, + [10] = { 30.5, 43.3, 85, 300 }, + [11] = { 36.1, 43, 85, 300 }, + [12] = { 35.9, 43, 85, 300 }, + [13] = { 35.6, 42.2, 85, 300 }, + [14] = { 37, 41.9, 85, 300 }, + [15] = { 34.6, 41.3, 85, 300 }, + [16] = { 34.7, 40.9, 85, 300 }, + [17] = { 36.2, 39.2, 85, 300 }, + [18] = { 62.6, 30.7, 85, 300 }, + [19] = { 61.6, 29.4, 85, 300 }, + [20] = { 59.7, 28.9, 85, 300 }, + [21] = { 58.6, 28.8, 85, 300 }, + [22] = { 58.5, 28.8, 85, 300 }, + [23] = { 60.8, 28.4, 85, 300 }, + [24] = { 57.7, 28.3, 85, 300 }, + [25] = { 58.6, 28.1, 85, 300 }, + [26] = { 63.2, 27.9, 85, 300 }, + [27] = { 61.7, 27.9, 85, 300 }, + [28] = { 63.1, 27.5, 85, 300 }, + [29] = { 60.7, 27.2, 85, 300 }, + [30] = { 58.9, 27.1, 85, 300 }, + [31] = { 61.8, 26.9, 85, 300 }, + [32] = { 58.6, 26.9, 85, 300 }, + [33] = { 58.1, 26.5, 85, 300 }, + [34] = { 57.7, 26.1, 85, 300 }, + }, + ["lvl"] = "7-8", + }, + [1544] = { + ["coords"] = { + [1] = { 29.2, 45.8, 85, 300 }, + [2] = { 36.8, 45.1, 85, 300 }, + [3] = { 30.8, 44.9, 85, 300 }, + [4] = { 29.8, 44.8, 85, 300 }, + [5] = { 36.4, 44.6, 85, 300 }, + [6] = { 35.6, 44.3, 85, 300 }, + [7] = { 31.4, 43.7, 85, 300 }, + [8] = { 30.7, 43.6, 85, 300 }, + [9] = { 34.6, 43.5, 85, 300 }, + [10] = { 35.8, 43.5, 85, 300 }, + [11] = { 30.5, 43.4, 85, 300 }, + [12] = { 35.6, 43.3, 85, 300 }, + [13] = { 30.7, 43.2, 85, 300 }, + [14] = { 31.1, 43.2, 85, 300 }, + [15] = { 36, 42.9, 85, 300 }, + [16] = { 33.7, 42.8, 85, 300 }, + [17] = { 36.7, 42, 85, 300 }, + [18] = { 34.5, 41.6, 85, 300 }, + [19] = { 34.7, 40.8, 85, 300 }, + [20] = { 37, 40.8, 85, 300 }, + [21] = { 35, 40.8, 85, 300 }, + [22] = { 36.4, 40.6, 85, 300 }, + [23] = { 35.8, 39.5, 85, 300 }, + [24] = { 36.5, 35.9, 85, 300 }, + [25] = { 64, 30.6, 85, 300 }, + [26] = { 61.3, 30, 85, 300 }, + [27] = { 64.5, 29.8, 85, 300 }, + [28] = { 64.9, 29.7, 85, 300 }, + [29] = { 63.1, 29.5, 85, 300 }, + [30] = { 59.4, 29.1, 85, 300 }, + [31] = { 59.8, 28.9, 85, 300 }, + [32] = { 62.9, 28.8, 85, 300 }, + [33] = { 64, 28.7, 85, 300 }, + [34] = { 60.1, 28.4, 85, 300 }, + [35] = { 59.4, 28.3, 85, 300 }, + [36] = { 62.3, 28.3, 85, 300 }, + [37] = { 62.8, 28.3, 85, 300 }, + [38] = { 61.7, 28.2, 85, 300 }, + [39] = { 58.3, 28.1, 85, 300 }, + [40] = { 63.4, 27.8, 85, 300 }, + [41] = { 58.4, 27.6, 85, 300 }, + [42] = { 60.9, 27.6, 85, 300 }, + [43] = { 60.1, 27.3, 85, 300 }, + [44] = { 60.9, 27.2, 85, 300 }, + [45] = { 58.9, 27.1, 85, 300 }, + [46] = { 75.1, 26.9, 85, 300 }, + [47] = { 75.1, 26.5, 85, 300 }, + [48] = { 57.9, 26.3, 85, 300 }, + [49] = { 67.5, 25.8, 85, 300 }, + [50] = { 70.5, 25.7, 85, 300 }, + [51] = { 67.9, 25.4, 85, 300 }, + [52] = { 70.5, 25.3, 85, 300 }, + [53] = { 67.3, 24.9, 85, 300 }, + [54] = { 67.4, 24.5, 85, 300 }, + }, + ["lvl"] = "8-9", + }, + [1545] = { + ["coords"] = { + [1] = { 26.8, 46.8, 85, 300 }, + [2] = { 34.8, 45, 85, 300 }, + [3] = { 34.3, 43.6, 85, 300 }, + [4] = { 30.5, 42.8, 85, 300 }, + [5] = { 36.4, 42.6, 85, 300 }, + [6] = { 34.8, 42.4, 85, 300 }, + [7] = { 29.9, 41.5, 85, 300 }, + [8] = { 35.8, 41.4, 85, 300 }, + [9] = { 36.5, 40.6, 85, 300 }, + [10] = { 36.5, 38.4, 85, 300 }, + [11] = { 38, 35.1, 85, 300 }, + [12] = { 40.9, 35, 85, 300 }, + [13] = { 39.5, 34.7, 85, 300 }, + [14] = { 38.6, 30.6, 85, 300 }, + [15] = { 65.2, 30.4, 85, 300 }, + [16] = { 64.7, 30.4, 85, 300 }, + [17] = { 66.2, 29.8, 85, 300 }, + [18] = { 64.4, 29.7, 85, 300 }, + [19] = { 64.6, 29.6, 85, 300 }, + [20] = { 38.1, 29.5, 85, 300 }, + [21] = { 67.5, 29.5, 85, 300 }, + [22] = { 64.5, 29.1, 85, 300 }, + [23] = { 68, 28.6, 85, 300 }, + [24] = { 65.3, 28.6, 85, 300 }, + [25] = { 67.7, 28.5, 85, 300 }, + [26] = { 66.7, 28.1, 85, 300 }, + [27] = { 75, 27.6, 85, 300 }, + [28] = { 75.2, 27.4, 85, 300 }, + [29] = { 66, 27.4, 85, 300 }, + [30] = { 67.6, 27.3, 85, 300 }, + [31] = { 72, 27.2, 85, 300 }, + [32] = { 73.3, 27.2, 85, 300 }, + [33] = { 70.4, 27.1, 85, 300 }, + [34] = { 74.8, 27.1, 85, 300 }, + [35] = { 75.4, 26.9, 85, 300 }, + [36] = { 75.1, 26.8, 85, 300 }, + [37] = { 72.7, 26.4, 85, 300 }, + [38] = { 74.6, 26.4, 85, 300 }, + [39] = { 75.4, 26.4, 85, 300 }, + [40] = { 75.6, 26.4, 85, 300 }, + [41] = { 66.9, 26.3, 85, 300 }, + [42] = { 67, 26.2, 85, 300 }, + [43] = { 74.1, 26.2, 85, 300 }, + [44] = { 71.2, 26.2, 85, 300 }, + [45] = { 75.7, 26.1, 85, 300 }, + [46] = { 72.5, 26.1, 85, 300 }, + [47] = { 68.2, 26.1, 85, 300 }, + [48] = { 69.6, 26, 85, 300 }, + [49] = { 67.8, 25.8, 85, 300 }, + [50] = { 70.2, 25.6, 85, 300 }, + [51] = { 72.3, 25.6, 85, 300 }, + [52] = { 69.1, 25.5, 85, 300 }, + [53] = { 68.7, 25.4, 85, 300 }, + [54] = { 72, 25.2, 85, 300 }, + [55] = { 73.5, 25, 85, 300 }, + [56] = { 70.1, 25, 85, 300 }, + }, + ["lvl"] = "9-10", + }, + [1546] = "_", + [1547] = { + ["coords"] = { + [1] = { 70.6, 65.1, 85, 300 }, + [2] = { 69.6, 63.8, 85, 300 }, + [3] = { 67.2, 63.5, 85, 300 }, + [4] = { 64.8, 61.8, 85, 300 }, + [5] = { 49, 58.9, 85, 300 }, + [6] = { 64.1, 58.9, 85, 300 }, + [7] = { 48, 58.6, 85, 300 }, + [8] = { 66.2, 57.9, 85, 300 }, + [9] = { 68.4, 57.8, 85, 300 }, + [10] = { 46.1, 57.4, 85, 300 }, + [11] = { 44.5, 57, 85, 300 }, + [12] = { 59.5, 56.9, 85, 300 }, + [13] = { 66.5, 56.9, 85, 300 }, + [14] = { 64.1, 56.6, 85, 300 }, + [15] = { 40.2, 56.3, 85, 300 }, + [16] = { 41.8, 56.2, 85, 300 }, + [17] = { 41, 55.7, 85, 300 }, + [18] = { 59.9, 55.6, 85, 300 }, + [19] = { 66.1, 55.6, 85, 300 }, + [20] = { 61.1, 55.6, 85, 300 }, + [21] = { 67.5, 55, 85, 300 }, + [22] = { 62.6, 54.9, 85, 300 }, + [23] = { 68.6, 54.4, 85, 300 }, + [24] = { 49.3, 54.3, 85, 300 }, + [25] = { 45, 54.2, 85, 300 }, + [26] = { 63.1, 54, 85, 300 }, + [27] = { 48.6, 53.7, 85, 300 }, + [28] = { 56.6, 53.6, 85, 300 }, + [29] = { 64.5, 53.5, 85, 300 }, + [30] = { 55.3, 53.4, 85, 300 }, + [31] = { 44.4, 53.3, 85, 300 }, + [32] = { 57.8, 52.7, 85, 300 }, + [33] = { 40.7, 52.7, 85, 300 }, + [34] = { 67.5, 52.6, 85, 300 }, + [35] = { 39.4, 52, 85, 300 }, + [36] = { 63.3, 50.8, 85, 300 }, + [37] = { 51.1, 50.5, 85, 300 }, + [38] = { 66.1, 50.3, 85, 300 }, + [39] = { 42.7, 50.1, 85, 300 }, + [40] = { 50, 49.8, 85, 300 }, + [41] = { 41.3, 49.6, 85, 300 }, + [42] = { 65.2, 49.2, 85, 300 }, + [43] = { 41.5, 48.8, 85, 300 }, + [44] = { 64.4, 48.3, 85, 300 }, + [45] = { 62.9, 47.9, 85, 300 }, + [46] = { 50, 47.4, 85, 300 }, + [47] = { 38.5, 47.3, 85, 300 }, + [48] = { 62.4, 47, 85, 300 }, + [49] = { 63.5, 46.3, 85, 300 }, + [50] = { 39.9, 46.2, 85, 300 }, + [51] = { 61.8, 45.6, 85, 300 }, + [52] = { 38.7, 45.5, 85, 300 }, + [53] = { 37.5, 45.1, 85, 300 }, + [54] = { 40.8, 45, 85, 300 }, + [55] = { 38.8, 44.7, 85, 300 }, + [56] = { 61, 44.4, 85, 300 }, + [57] = { 61.5, 43.9, 85, 300 }, + [58] = { 40, 43.7, 85, 300 }, + [59] = { 38.7, 43.7, 85, 300 }, + [60] = { 63.7, 43.5, 85, 300 }, + [61] = { 64.6, 43.1, 85, 300 }, + [62] = { 40.7, 42.9, 85, 300 }, + [63] = { 39.1, 42.6, 85, 300 }, + [64] = { 41.9, 42.4, 85, 300 }, + [65] = { 38.6, 41.8, 85, 300 }, + [66] = { 63.6, 41.7, 85, 300 }, + [67] = { 38, 41.5, 85, 300 }, + [68] = { 40.4, 41.2, 85, 300 }, + [69] = { 39, 40.7, 85, 300 }, + [70] = { 42.6, 40.6, 85, 300 }, + [71] = { 62.8, 40.5, 85, 300 }, + [72] = { 60.5, 40.4, 85, 300 }, + [73] = { 61.6, 40.4, 85, 300 }, + [74] = { 38.6, 40.3, 85, 300 }, + [75] = { 64.4, 40.1, 85, 300 }, + [76] = { 65.9, 40, 85, 300 }, + [77] = { 40.3, 39.7, 85, 300 }, + [78] = { 62.6, 39.4, 85, 300 }, + [79] = { 62.8, 38.1, 85, 300 }, + [80] = { 65.1, 37.4, 85, 300 }, + }, + ["lvl"] = "5-6", + }, + [1548] = { + ["coords"] = { + [1] = { 20.3, 61.2, 28, 300 }, + [2] = { 18.8, 60.9, 28, 300 }, + [3] = { 17.9, 59.9, 28, 300 }, + [4] = { 21, 59.8, 28, 300 }, + [5] = { 23.7, 59.8, 28, 300 }, + [6] = { 24.6, 59.3, 28, 300 }, + [7] = { 20.6, 58.6, 28, 300 }, + [8] = { 19.6, 57.4, 28, 300 }, + [9] = { 17.8, 57, 28, 300 }, + [10] = { 23.1, 56.4, 28, 300 }, + [11] = { 18, 55.8, 28, 300 }, + [12] = { 20.6, 55.6, 28, 300 }, + [13] = { 20, 55.1, 28, 300 }, + [14] = { 23.3, 54.2, 28, 300 }, + [15] = { 21.7, 53.5, 28, 300 }, + [16] = { 22.9, 53, 28, 300 }, + [17] = { 20, 51.7, 28, 300 }, + [18] = { 24.6, 51.6, 28, 300 }, + [19] = { 18.4, 51.4, 28, 300 }, + [20] = { 24.1, 50.8, 28, 300 }, + [21] = { 22.2, 50.8, 28, 300 }, + [22] = { 20.9, 50.2, 28, 300 }, + [23] = { 22.4, 48.3, 28, 300 }, + [24] = { 23.8, 47.3, 28, 300 }, + [25] = { 52.5, 74.6, 85, 300 }, + [26] = { 77.2, 73.9, 85, 300 }, + [27] = { 55.7, 73.6, 85, 300 }, + [28] = { 75.8, 73.6, 85, 300 }, + [29] = { 75, 72.6, 85, 300 }, + [30] = { 77.8, 72.5, 85, 300 }, + [31] = { 80.5, 72.5, 85, 300 }, + [32] = { 52.8, 72.5, 85, 300 }, + [33] = { 52, 72.3, 85, 300 }, + [34] = { 81.4, 72.1, 85, 300 }, + [35] = { 54.9, 71.4, 85, 300 }, + [36] = { 77.5, 71.4, 85, 300 }, + [37] = { 52.4, 71.3, 85, 300 }, + [38] = { 51.2, 70.2, 85, 300 }, + [39] = { 76.5, 70.2, 85, 300 }, + [40] = { 74.8, 69.9, 85, 300 }, + [41] = { 55.3, 69.8, 85, 300 }, + [42] = { 79.9, 69.3, 85, 300 }, + [43] = { 75, 68.8, 85, 300 }, + [44] = { 77.5, 68.5, 85, 300 }, + [45] = { 45.3, 68.5, 85, 300 }, + [46] = { 43.2, 68.1, 85, 300 }, + [47] = { 76.9, 68, 85, 300 }, + [48] = { 46.4, 67.7, 85, 300 }, + [49] = { 42, 67.5, 85, 300 }, + [50] = { 80.1, 67.2, 85, 300 }, + [51] = { 44.7, 67, 85, 300 }, + [52] = { 54.1, 66.9, 85, 300 }, + [53] = { 78.6, 66.5, 85, 300 }, + [54] = { 55.6, 66.1, 85, 300 }, + [55] = { 79.7, 66.1, 85, 300 }, + [56] = { 49.7, 65.8, 85, 300 }, + [57] = { 54, 65.7, 85, 300 }, + [58] = { 55.7, 65.7, 85, 300 }, + [59] = { 41.5, 65.5, 85, 300 }, + [60] = { 53, 65.2, 85, 300 }, + [61] = { 76.9, 64.9, 85, 300 }, + [62] = { 81.4, 64.7, 85, 300 }, + [63] = { 75.4, 64.6, 85, 300 }, + [64] = { 41.5, 64.5, 85, 300 }, + [65] = { 56.6, 64.4, 85, 300 }, + [66] = { 45.8, 64.2, 85, 300 }, + [67] = { 80.9, 64, 85, 300 }, + [68] = { 79, 64, 85, 300 }, + [69] = { 48.5, 63.9, 85, 300 }, + [70] = { 54.3, 63.7, 85, 300 }, + [71] = { 50.9, 63.4, 85, 300 }, + [72] = { 77.7, 63.4, 85, 300 }, + [73] = { 47.7, 63.3, 85, 300 }, + [74] = { 53.4, 63.3, 85, 300 }, + [75] = { 57.5, 63, 85, 300 }, + [76] = { 49.2, 62.9, 85, 300 }, + [77] = { 58.4, 62.7, 85, 300 }, + [78] = { 42.8, 62.4, 85, 300 }, + [79] = { 57.4, 62.4, 85, 300 }, + [80] = { 50.6, 62.3, 85, 300 }, + [81] = { 60.2, 62.2, 85, 300 }, + [82] = { 43.8, 62, 85, 300 }, + [83] = { 44.2, 61.9, 85, 300 }, + [84] = { 71.9, 61.8, 85, 300 }, + [85] = { 41, 61.6, 85, 300 }, + [86] = { 79.2, 61.6, 85, 300 }, + [87] = { 72.8, 61.5, 85, 300 }, + [88] = { 50.1, 60.9, 85, 300 }, + [89] = { 40.6, 60.9, 85, 300 }, + [90] = { 45.1, 60.8, 85, 300 }, + [91] = { 59.4, 60.7, 85, 300 }, + [92] = { 46.7, 60.6, 85, 300 }, + [93] = { 57.9, 60.6, 85, 300 }, + [94] = { 80.6, 60.6, 85, 300 }, + [95] = { 43.9, 60.6, 85, 300 }, + [96] = { 51.4, 60, 85, 300 }, + [97] = { 58.4, 60, 85, 300 }, + [98] = { 69, 59.9, 85, 300 }, + [99] = { 57.1, 59.6, 85, 300 }, + [100] = { 71.1, 59.5, 85, 300 }, + [101] = { 78.9, 59.1, 85, 300 }, + [102] = { 48.3, 59, 85, 300 }, + [103] = { 80.2, 58.6, 85, 300 }, + [104] = { 40.6, 58.4, 85, 300 }, + [105] = { 58.3, 58.3, 85, 300 }, + [106] = { 44.3, 58.2, 85, 300 }, + [107] = { 42.8, 58.1, 85, 300 }, + [108] = { 72.9, 56.9, 85, 300 }, + [109] = { 48.6, 56.7, 85, 300 }, + [110] = { 44.8, 54.4, 85, 300 }, + [111] = { 74.6, 54.3, 85, 300 }, + [112] = { 75.8, 54.3, 85, 300 }, + [113] = { 76.2, 52.4, 85, 300 }, + [114] = { 72, 52.1, 85, 300 }, + [115] = { 47.3, 51, 85, 300 }, + [116] = { 46.1, 50.9, 85, 300 }, + [117] = { 46.9, 50.1, 85, 300 }, + [118] = { 48.3, 50, 85, 300 }, + [119] = { 50, 49.9, 85, 300 }, + [120] = { 72.6, 49.2, 85, 300 }, + [121] = { 47.4, 49.1, 85, 300 }, + [122] = { 48, 48.4, 85, 300 }, + [123] = { 45.1, 47.8, 85, 300 }, + [124] = { 45.1, 47.7, 85, 300 }, + [125] = { 72.6, 47.6, 85, 300 }, + [126] = { 71.8, 47.2, 85, 300 }, + [127] = { 42.3, 47, 85, 300 }, + [128] = { 45.9, 46.9, 85, 300 }, + [129] = { 72.7, 46.5, 85, 300 }, + [130] = { 46.3, 46.1, 85, 300 }, + [131] = { 74.9, 46, 85, 300 }, + [132] = { 47, 45.4, 85, 300 }, + [133] = { 75.6, 45.4, 85, 300 }, + [134] = { 43.3, 45.2, 85, 300 }, + [135] = { 44.5, 45.2, 85, 300 }, + [136] = { 41.9, 45, 85, 300 }, + [137] = { 41.3, 44.4, 85, 300 }, + [138] = { 74.6, 44.2, 85, 300 }, + [139] = { 45, 43.9, 85, 300 }, + [140] = { 72.6, 43.7, 85, 300 }, + [141] = { 43.7, 42.9, 85, 300 }, + [142] = { 42.2, 42.8, 85, 300 }, + [143] = { 40.3, 42.5, 85, 300 }, + [144] = { 73, 41.4, 85, 300 }, + [145] = { 44.6, 40.4, 85, 300 }, + [146] = { 72.2, 40.2, 85, 300 }, + [147] = { 73.2, 38.1, 85, 300 }, + [148] = { 71.8, 38, 85, 300 }, + [149] = { 74.5, 37.6, 85, 300 }, + [150] = { 68.1, 37, 85, 300 }, + [151] = { 68.2, 36.2, 85, 300 }, + [152] = { 71.5, 36.1, 85, 300 }, + [153] = { 70.4, 36.1, 85, 300 }, + [154] = { 74.4, 36, 85, 300 }, + [155] = { 69.1, 35.6, 85, 300 }, + [156] = { 74.1, 35.3, 85, 300 }, + [157] = { 66.1, 35, 85, 300 }, + [158] = { 76.7, 34.8, 85, 300 }, + [159] = { 66.7, 34.8, 85, 300 }, + [160] = { 68, 34.6, 85, 300 }, + [161] = { 68.9, 33.9, 85, 300 }, + [162] = { 63.4, 33.7, 85, 300 }, + [163] = { 75.6, 33, 85, 300 }, + [164] = { 65, 32.8, 85, 300 }, + [165] = { 78, 32.7, 85, 300 }, + [166] = { 71.1, 32.6, 85, 300 }, + [167] = { 72.6, 32.6, 85, 300 }, + [168] = { 68.9, 31.7, 85, 300 }, + [169] = { 73.3, 31.7, 85, 300 }, + [170] = { 67.6, 31.6, 85, 300 }, + [171] = { 70.5, 31.5, 85, 300 }, + [172] = { 76.5, 31, 85, 300 }, + [173] = { 68.3, 30.7, 85, 300 }, + [174] = { 69, 29.6, 85, 300 }, + [175] = { 76.4, 29.6, 85, 300 }, + [176] = { 70.4, 29.5, 85, 300 }, + [177] = { 72.1, 29.5, 85, 300 }, + [178] = { 74, 28.7, 85, 300 }, + [179] = { 69.7, 28.5, 85, 300 }, + [180] = { 72.8, 28.5, 85, 300 }, + [181] = { 66.4, 2.7, 130, 300 }, + [182] = { 22, 45, 1497, 300 }, + [183] = { 23.7, 35, 1497, 300 }, + [184] = { 19.8, 34.3, 1497, 300 }, + [185] = { 33.5, 30.1, 1497, 300 }, + [186] = { 21.7, 29.7, 1497, 300 }, + }, + ["lvl"] = "7-8", + }, + [1549] = { + ["coords"] = { + [1] = { 32.5, 30.8, 28, 300 }, + [2] = { 33.2, 29.7, 28, 300 }, + [3] = { 31.8, 29.6, 28, 300 }, + [4] = { 23.4, 28.2, 28, 300 }, + [5] = { 33.5, 27.5, 28, 300 }, + [6] = { 31.9, 27.4, 28, 300 }, + [7] = { 34.1, 26.3, 28, 300 }, + [8] = { 83, 50.4, 85, 300 }, + [9] = { 79.6, 49.5, 85, 300 }, + [10] = { 83, 48.8, 85, 300 }, + [11] = { 88.2, 48.5, 85, 300 }, + [12] = { 82.2, 48.3, 85, 300 }, + [13] = { 89.4, 47.9, 85, 300 }, + [14] = { 83.2, 47.4, 85, 300 }, + [15] = { 90.3, 47.1, 85, 300 }, + [16] = { 82, 47, 85, 300 }, + [17] = { 88.9, 46.7, 85, 300 }, + [18] = { 88.2, 46.4, 85, 300 }, + [19] = { 83.6, 46, 85, 300 }, + [20] = { 87.4, 46, 85, 300 }, + [21] = { 85.1, 46, 85, 300 }, + [22] = { 87, 45.3, 85, 300 }, + [23] = { 81.5, 45.2, 85, 300 }, + [24] = { 86, 45.1, 85, 300 }, + [25] = { 88.9, 44.9, 85, 300 }, + [26] = { 83.9, 44.2, 85, 300 }, + [27] = { 85.1, 44, 85, 300 }, + [28] = { 89.5, 43.9, 85, 300 }, + [29] = { 88.2, 43.8, 85, 300 }, + [30] = { 82.1, 43.6, 85, 300 }, + [31] = { 80.2, 42.4, 85, 300 }, + [32] = { 89.8, 41.8, 85, 300 }, + [33] = { 83.3, 41.7, 85, 300 }, + [34] = { 88.3, 41.7, 85, 300 }, + [35] = { 84.4, 41.5, 85, 300 }, + [36] = { 83.9, 41.5, 85, 300 }, + [37] = { 90.4, 40.6, 85, 300 }, + }, + ["lvl"] = "9-10", + }, + [1550] = { + ["coords"] = { + [1] = { 40.4, 52.1, 33, 300 }, + [2] = { 39.1, 52, 33, 300 }, + [3] = { 40.9, 51.3, 33, 300 }, + [4] = { 40.4, 50.6, 33, 300 }, + [5] = { 41.3, 50.6, 33, 300 }, + [6] = { 38.3, 50.5, 33, 300 }, + [7] = { 39.1, 50.4, 33, 300 }, + [8] = { 40.8, 49.9, 33, 300 }, + [9] = { 37.8, 49.9, 33, 300 }, + [10] = { 39.1, 49.5, 33, 300 }, + [11] = { 40.4, 48.7, 33, 300 }, + [12] = { 39.3, 47.1, 33, 300 }, + [13] = { 38.8, 44.9, 33, 300 }, + }, + ["lvl"] = "41-42", + }, + [1551] = { + ["coords"] = { + [1] = { 42.6, 49.4, 33, 300 }, + [2] = { 43, 49.2, 33, 300 }, + [3] = { 43.5, 49.1, 33, 300 }, + [4] = { 43.9, 49.1, 33, 300 }, + [5] = { 42.8, 48.9, 33, 300 }, + [6] = { 42.4, 48.4, 33, 300 }, + [7] = { 44, 48.4, 33, 300 }, + [8] = { 43.7, 48.3, 33, 300 }, + [9] = { 42.7, 48.3, 33, 300 }, + [10] = { 43.4, 47.9, 33, 300 }, + [11] = { 44.2, 47.8, 33, 300 }, + [12] = { 42.7, 47.8, 33, 300 }, + [13] = { 43.8, 47.8, 33, 300 }, + [14] = { 42.3, 47.2, 33, 300 }, + [15] = { 43.5, 47, 33, 300 }, + [16] = { 42.1, 47, 33, 300 }, + [17] = { 41.9, 47, 33, 300 }, + [18] = { 43.6, 46.7, 33, 300 }, + [19] = { 43.6, 46.2, 33, 300 }, + [20] = { 43.5, 45.9, 33, 300 }, + [21] = { 42.7, 45.8, 33, 300 }, + }, + ["lvl"] = "43-44", + }, + [1552] = { + ["coords"] = { + [1] = { 43.4, 45.7, 33, 27000 }, + }, + ["lvl"] = "45", + ["rnk"] = "4", + }, + [1553] = { + ["coords"] = { + [1] = { 54.2, 65.9, 85, 300 }, + [2] = { 53.6, 65, 85, 300 }, + [3] = { 53.4, 64.1, 85, 300 }, + [4] = { 55.1, 64, 85, 300 }, + [5] = { 71, 63.8, 85, 300 }, + [6] = { 52.5, 63.5, 85, 300 }, + [7] = { 55.5, 63.4, 85, 300 }, + [8] = { 56.6, 62.9, 85, 300 }, + [9] = { 68.3, 62.9, 85, 300 }, + [10] = { 55, 62.6, 85, 300 }, + [11] = { 66.7, 62.3, 85, 300 }, + [12] = { 54.1, 61.7, 85, 300 }, + [13] = { 59.3, 61.6, 85, 300 }, + [14] = { 63.8, 61.4, 85, 300 }, + [15] = { 55.7, 61, 85, 300 }, + [16] = { 60.3, 60.8, 85, 300 }, + [17] = { 46.7, 60.2, 85, 300 }, + [18] = { 57.4, 59.7, 85, 300 }, + [19] = { 49.2, 59.6, 85, 300 }, + [20] = { 50.9, 59.3, 85, 300 }, + [21] = { 45.5, 58.9, 85, 300 }, + [22] = { 64.7, 58.5, 85, 300 }, + [23] = { 58.8, 58.4, 85, 300 }, + [24] = { 46.6, 58, 85, 300 }, + [25] = { 48.8, 57.7, 85, 300 }, + [26] = { 56.3, 57.5, 85, 300 }, + [27] = { 41.7, 57.4, 85, 300 }, + [28] = { 64.5, 57.3, 85, 300 }, + [29] = { 43, 57.3, 85, 300 }, + [30] = { 45.4, 57.3, 85, 300 }, + [31] = { 58, 57.1, 85, 300 }, + [32] = { 58.4, 57, 85, 300 }, + [33] = { 41.4, 56.9, 85, 300 }, + [34] = { 65.5, 56.6, 85, 300 }, + [35] = { 62.2, 56.6, 85, 300 }, + [36] = { 67, 56.6, 85, 300 }, + [37] = { 45.9, 56.4, 85, 300 }, + [38] = { 61.1, 56.3, 85, 300 }, + [39] = { 47.4, 56.3, 85, 300 }, + [40] = { 43.3, 56.2, 85, 300 }, + [41] = { 58.5, 56.2, 85, 300 }, + [42] = { 59.3, 56.1, 85, 300 }, + [43] = { 66.8, 55.9, 85, 300 }, + [44] = { 43.8, 55.9, 85, 300 }, + [45] = { 56.9, 55.7, 85, 300 }, + [46] = { 40.1, 55.6, 85, 300 }, + [47] = { 47.4, 55.3, 85, 300 }, + [48] = { 58, 55.2, 85, 300 }, + [49] = { 48.9, 55, 85, 300 }, + [50] = { 64, 54.9, 85, 300 }, + [51] = { 45.8, 54.8, 85, 300 }, + [52] = { 45.3, 54.6, 85, 300 }, + [53] = { 65.1, 54.6, 85, 300 }, + [54] = { 66.3, 54.5, 85, 300 }, + [55] = { 45.8, 54.4, 85, 300 }, + [56] = { 57.1, 54.2, 85, 300 }, + [57] = { 68, 54.1, 85, 300 }, + [58] = { 69, 53.9, 85, 300 }, + [59] = { 41.9, 53.7, 85, 300 }, + [60] = { 66.5, 53.6, 85, 300 }, + [61] = { 65.9, 53.2, 85, 300 }, + [62] = { 40.1, 52.7, 85, 300 }, + [63] = { 45.7, 52.5, 85, 300 }, + [64] = { 46.8, 52.5, 85, 300 }, + [65] = { 67.1, 51.8, 85, 300 }, + [66] = { 45.2, 51.2, 85, 300 }, + [67] = { 46.8, 50.8, 85, 300 }, + [68] = { 46.8, 50.3, 85, 300 }, + [69] = { 64.8, 50.1, 85, 300 }, + [70] = { 44.5, 50.1, 85, 300 }, + [71] = { 63.2, 49.7, 85, 300 }, + [72] = { 49.5, 49.7, 85, 300 }, + [73] = { 51.4, 49.5, 85, 300 }, + [74] = { 44.6, 49.4, 85, 300 }, + [75] = { 63.7, 49.2, 85, 300 }, + [76] = { 40.3, 48.6, 85, 300 }, + [77] = { 50, 48.5, 85, 300 }, + [78] = { 51.9, 48.4, 85, 300 }, + [79] = { 39.1, 47.8, 85, 300 }, + [80] = { 42.8, 47.7, 85, 300 }, + [81] = { 63.3, 47.6, 85, 300 }, + [82] = { 41.1, 47.4, 85, 300 }, + [83] = { 36.5, 47.3, 85, 300 }, + [84] = { 63.3, 47.1, 85, 300 }, + [85] = { 47.2, 46.4, 85, 300 }, + [86] = { 37.4, 46.4, 85, 300 }, + [87] = { 43.1, 46.2, 85, 300 }, + [88] = { 64.3, 46, 85, 300 }, + [89] = { 63, 46, 85, 300 }, + [90] = { 47.9, 45.1, 85, 300 }, + [91] = { 42.3, 44.2, 85, 300 }, + [92] = { 64.2, 44.1, 85, 300 }, + [93] = { 62.9, 44, 85, 300 }, + [94] = { 37.9, 43.9, 85, 300 }, + [95] = { 62.3, 43.9, 85, 300 }, + [96] = { 62.5, 43.5, 85, 300 }, + [97] = { 37.3, 43.5, 85, 300 }, + [98] = { 60.4, 43.1, 85, 300 }, + [99] = { 42.5, 42.4, 85, 300 }, + [100] = { 39.3, 42.2, 85, 300 }, + [101] = { 41.1, 42.2, 85, 300 }, + [102] = { 60, 41.8, 85, 300 }, + [103] = { 62.5, 41.8, 85, 300 }, + [104] = { 65.2, 41.7, 85, 300 }, + [105] = { 63.3, 41.7, 85, 300 }, + [106] = { 43.3, 41.5, 85, 300 }, + [107] = { 61.8, 41.4, 85, 300 }, + [108] = { 64.7, 40.4, 85, 300 }, + [109] = { 41.8, 40.3, 85, 300 }, + [110] = { 61.7, 38.8, 85, 300 }, + [111] = { 37.5, 38.8, 85, 300 }, + [112] = { 63.2, 38.7, 85, 300 }, + [113] = { 65.4, 38.6, 85, 300 }, + [114] = { 38.5, 38.6, 85, 300 }, + [115] = { 60.9, 38.5, 85, 300 }, + [116] = { 64.9, 38.2, 85, 300 }, + [117] = { 64.1, 37.8, 85, 300 }, + [118] = { 62.2, 36.8, 85, 300 }, + [119] = { 64.3, 36.6, 85, 300 }, + [120] = { 62.9, 35.8, 85, 300 }, + }, + ["lvl"] = "6-7", + }, + [1554] = { + ["coords"] = { + [1] = { 25.3, 61.6, 28, 300 }, + [2] = { 21.7, 60.7, 28, 300 }, + [3] = { 23.3, 60.1, 28, 300 }, + [4] = { 18.5, 59.7, 28, 300 }, + [5] = { 19.7, 59.6, 28, 300 }, + [6] = { 21.8, 58.9, 28, 300 }, + [7] = { 17.1, 58.7, 28, 300 }, + [8] = { 20, 58.5, 28, 300 }, + [9] = { 22.5, 57.9, 28, 300 }, + [10] = { 24, 57.7, 28, 300 }, + [11] = { 21.3, 57.4, 28, 300 }, + [12] = { 21.8, 56.9, 28, 300 }, + [13] = { 22.8, 56.3, 28, 300 }, + [14] = { 23.6, 54.8, 28, 300 }, + [15] = { 16.9, 54.3, 28, 300 }, + [16] = { 24.6, 53.5, 28, 300 }, + [17] = { 23.9, 53.4, 28, 300 }, + [18] = { 27.1, 53.3, 28, 300 }, + [19] = { 19.4, 53.1, 28, 300 }, + [20] = { 25.6, 52.9, 28, 300 }, + [21] = { 25.4, 51.5, 28, 300 }, + [22] = { 21.9, 51.5, 28, 300 }, + [23] = { 23.4, 51.1, 28, 300 }, + [24] = { 17.8, 50.9, 28, 300 }, + [25] = { 19.2, 50.5, 28, 300 }, + [26] = { 22, 49.2, 28, 300 }, + [27] = { 23.3, 49.1, 28, 300 }, + [28] = { 34.1, 30.7, 28, 300 }, + [29] = { 32.4, 28.6, 28, 300 }, + [30] = { 34.1, 28.5, 28, 300 }, + [31] = { 30.9, 26.3, 28, 300 }, + [32] = { 28.3, 24.7, 28, 300 }, + [33] = { 81.9, 74.3, 85, 300 }, + [34] = { 78.6, 73.4, 85, 300 }, + [35] = { 80.1, 72.8, 85, 300 }, + [36] = { 75.5, 72.4, 85, 300 }, + [37] = { 76.6, 72.3, 85, 300 }, + [38] = { 78.6, 71.7, 85, 300 }, + [39] = { 74.2, 71.5, 85, 300 }, + [40] = { 76.9, 71.3, 85, 300 }, + [41] = { 79.3, 70.7, 85, 300 }, + [42] = { 80.7, 70.5, 85, 300 }, + [43] = { 78.2, 70.2, 85, 300 }, + [44] = { 78.7, 69.7, 85, 300 }, + [45] = { 79.6, 69.2, 85, 300 }, + [46] = { 44.9, 69.1, 85, 300 }, + [47] = { 44, 68, 85, 300 }, + [48] = { 47.9, 67.8, 85, 300 }, + [49] = { 80.4, 67.7, 85, 300 }, + [50] = { 74, 67.3, 85, 300 }, + [51] = { 45.9, 67.3, 85, 300 }, + [52] = { 43.1, 67.1, 85, 300 }, + [53] = { 81.3, 66.5, 85, 300 }, + [54] = { 80.7, 66.4, 85, 300 }, + [55] = { 46.9, 66.4, 85, 300 }, + [56] = { 83.7, 66.3, 85, 300 }, + [57] = { 45.3, 66.3, 85, 300 }, + [58] = { 76.4, 66.2, 85, 300 }, + [59] = { 82.2, 66, 85, 300 }, + [60] = { 72.7, 65.3, 85, 300 }, + [61] = { 82, 64.6, 85, 300 }, + [62] = { 78.7, 64.6, 85, 300 }, + [63] = { 80.2, 64.3, 85, 300 }, + [64] = { 74.9, 64, 85, 300 }, + [65] = { 76.1, 63.7, 85, 300 }, + [66] = { 52.9, 63.6, 85, 300 }, + [67] = { 48.6, 63.6, 85, 300 }, + [68] = { 51.9, 63.4, 85, 300 }, + [69] = { 41.6, 63.4, 85, 300 }, + [70] = { 48.4, 63.2, 85, 300 }, + [71] = { 44.9, 63.2, 85, 300 }, + [72] = { 43.2, 63, 85, 300 }, + [73] = { 45.5, 62.8, 85, 300 }, + [74] = { 72.8, 62.6, 85, 300 }, + [75] = { 44.4, 62.6, 85, 300 }, + [76] = { 78.8, 62.4, 85, 300 }, + [77] = { 80.1, 62.3, 85, 300 }, + [78] = { 47.5, 62.2, 85, 300 }, + [79] = { 48.7, 62, 85, 300 }, + [80] = { 51.4, 61.8, 85, 300 }, + [81] = { 50.7, 61.7, 85, 300 }, + [82] = { 46.3, 61.5, 85, 300 }, + [83] = { 70.5, 61.2, 85, 300 }, + [84] = { 41.6, 60.9, 85, 300 }, + [85] = { 69.8, 60.7, 85, 300 }, + [86] = { 44.7, 60.3, 85, 300 }, + [87] = { 40.6, 60, 85, 300 }, + [88] = { 72.1, 59.8, 85, 300 }, + [89] = { 49.1, 59.8, 85, 300 }, + [90] = { 42.1, 59.4, 85, 300 }, + [91] = { 73.4, 59.3, 85, 300 }, + [92] = { 80.5, 59.3, 85, 300 }, + [93] = { 79.2, 59, 85, 300 }, + [94] = { 74.6, 58.7, 85, 300 }, + [95] = { 42.2, 58.6, 85, 300 }, + [96] = { 71, 58.4, 85, 300 }, + [97] = { 72.8, 58.3, 85, 300 }, + [98] = { 73.7, 57.1, 85, 300 }, + [99] = { 75.6, 55.8, 85, 300 }, + [100] = { 70.2, 53.7, 85, 300 }, + [101] = { 75, 53, 85, 300 }, + [102] = { 82.2, 52.8, 85, 300 }, + [103] = { 83.7, 51.6, 85, 300 }, + [104] = { 75.8, 51.3, 85, 300 }, + [105] = { 71.3, 50.1, 85, 300 }, + [106] = { 71.7, 49, 85, 300 }, + [107] = { 79.3, 48.7, 85, 300 }, + [108] = { 83.6, 48.4, 85, 300 }, + [109] = { 76.8, 48.3, 85, 300 }, + [110] = { 71.2, 48.2, 85, 300 }, + [111] = { 81.1, 48.2, 85, 300 }, + [112] = { 75.7, 47.9, 85, 300 }, + [113] = { 74.5, 47.3, 85, 300 }, + [114] = { 75.5, 47.1, 85, 300 }, + [115] = { 72.7, 47.1, 85, 300 }, + [116] = { 71.2, 46.8, 85, 300 }, + [117] = { 82.8, 46.3, 85, 300 }, + [118] = { 80.7, 46.3, 85, 300 }, + [119] = { 77.7, 46.2, 85, 300 }, + [120] = { 75.4, 46.1, 85, 300 }, + [121] = { 79, 45.9, 85, 300 }, + [122] = { 78.6, 44.9, 85, 300 }, + [123] = { 84.4, 44.9, 85, 300 }, + [124] = { 90.4, 44.8, 85, 300 }, + [125] = { 80, 44.5, 85, 300 }, + [126] = { 83.1, 44.3, 85, 300 }, + [127] = { 73.2, 44.3, 85, 300 }, + [128] = { 74.8, 44.2, 85, 300 }, + [129] = { 84.1, 43.1, 85, 300 }, + [130] = { 88.7, 42.8, 85, 300 }, + [131] = { 90.4, 42.8, 85, 300 }, + [132] = { 82.5, 42.8, 85, 300 }, + [133] = { 72.9, 42.6, 85, 300 }, + [134] = { 82.9, 42.6, 85, 300 }, + [135] = { 84.6, 40.8, 85, 300 }, + [136] = { 87.3, 40.6, 85, 300 }, + [137] = { 73.3, 40.6, 85, 300 }, + [138] = { 73, 39.3, 85, 300 }, + [139] = { 84.8, 39.1, 85, 300 }, + [140] = { 72.6, 37.2, 85, 300 }, + [141] = { 71.2, 36.9, 85, 300 }, + [142] = { 64.5, 36.6, 85, 300 }, + [143] = { 73.4, 36.1, 85, 300 }, + [144] = { 75.4, 35.1, 85, 300 }, + [145] = { 65.8, 34.9, 85, 300 }, + [146] = { 69.7, 34.8, 85, 300 }, + [147] = { 71.1, 34.6, 85, 300 }, + [148] = { 67.5, 34, 85, 300 }, + [149] = { 73.7, 33.9, 85, 300 }, + [150] = { 65.5, 33.8, 85, 300 }, + [151] = { 71.9, 33.7, 85, 300 }, + [152] = { 70.4, 33.7, 85, 300 }, + [153] = { 74.9, 33.7, 85, 300 }, + [154] = { 69.7, 32.8, 85, 300 }, + [155] = { 68.2, 32.8, 85, 300 }, + [156] = { 74.2, 32.6, 85, 300 }, + [157] = { 66.2, 31.7, 85, 300 }, + [158] = { 76.8, 31.6, 85, 300 }, + [159] = { 71.8, 31.6, 85, 300 }, + [160] = { 72.8, 30.6, 85, 300 }, + [161] = { 71.2, 30.5, 85, 300 }, + [162] = { 69.7, 30.5, 85, 300 }, + [163] = { 76.4, 30.3, 85, 300 }, + [164] = { 73.3, 29.2, 85, 300 }, + [165] = { 68.6, 28.3, 85, 300 }, + }, + ["lvl"] = "8-9", + }, + [1555] = { + ["coords"] = { + [1] = { 86.8, 57, 85, 300 }, + [2] = { 87.4, 56.1, 85, 300 }, + [3] = { 83.4, 55.6, 85, 300 }, + [4] = { 83.8, 55.4, 85, 300 }, + [5] = { 85.4, 55.1, 85, 300 }, + [6] = { 88.2, 55, 85, 300 }, + [7] = { 82.4, 54.8, 85, 300 }, + [8] = { 87.5, 53.8, 85, 300 }, + [9] = { 86.6, 53.8, 85, 300 }, + [10] = { 88.9, 53.7, 85, 300 }, + [11] = { 85.9, 53.7, 85, 300 }, + [12] = { 88, 53.7, 85, 300 }, + [13] = { 86.7, 53.2, 85, 300 }, + [14] = { 84.7, 52.8, 85, 300 }, + [15] = { 85.7, 52.5, 85, 300 }, + [16] = { 89.5, 52.5, 85, 300 }, + [17] = { 86, 52.5, 85, 300 }, + [18] = { 83.7, 52.4, 85, 300 }, + [19] = { 89.7, 51.7, 85, 300 }, + [20] = { 87.3, 51.2, 85, 300 }, + [21] = { 84.5, 51, 85, 300 }, + [22] = { 85.1, 51, 85, 300 }, + [23] = { 91.1, 50.5, 85, 300 }, + [24] = { 86.7, 50.5, 85, 300 }, + [25] = { 89.8, 50.4, 85, 300 }, + [26] = { 88.1, 50.4, 85, 300 }, + [27] = { 84.5, 50.1, 85, 300 }, + [28] = { 89.1, 49.8, 85, 300 }, + [29] = { 91.8, 49.5, 85, 300 }, + [30] = { 87.4, 49.3, 85, 300 }, + [31] = { 90.3, 49.3, 85, 300 }, + [32] = { 85.9, 49.3, 85, 300 }, + [33] = { 86.7, 48.4, 85, 300 }, + [34] = { 85.2, 48.3, 85, 300 }, + [35] = { 84.5, 47.2, 85, 300 }, + }, + ["lvl"] = "9-10", + }, + [1557] = { + ["coords"] = { + [1] = { 32.3, 68.4, 33, 300 }, + [2] = { 31.2, 67.9, 33, 300 }, + [3] = { 33, 67.6, 33, 300 }, + [4] = { 31.9, 67.6, 33, 300 }, + [5] = { 33.9, 67.5, 33, 300 }, + [6] = { 33.5, 67, 33, 300 }, + [7] = { 34.5, 66.7, 33, 300 }, + [8] = { 30.9, 66.7, 33, 300 }, + [9] = { 32.6, 66.6, 33, 300 }, + [10] = { 34.1, 66.4, 33, 300 }, + [11] = { 32.1, 66.1, 33, 300 }, + [12] = { 33, 66.1, 33, 300 }, + [13] = { 32.6, 65.5, 33, 300 }, + [14] = { 33.5, 65.5, 33, 300 }, + [15] = { 34.6, 65.4, 33, 300 }, + [16] = { 31.4, 65.4, 33, 300 }, + [17] = { 33, 64.8, 33, 300 }, + [18] = { 34, 64.5, 33, 300 }, + [19] = { 35, 64.4, 33, 300 }, + [20] = { 33.5, 63.6, 33, 300 }, + [21] = { 33.2, 63.4, 33, 300 }, + [22] = { 34.4, 62.5, 33, 300 }, + [23] = { 33.6, 62.2, 33, 300 }, + [24] = { 31.3, 60.7, 33, 300 }, + [25] = { 30.9, 60, 33, 300 }, + [26] = { 32, 59.8, 33, 300 }, + [27] = { 32.5, 59.1, 33, 300 }, + [28] = { 32.4, 58, 33, 300 }, + }, + ["lvl"] = "40-41", + }, + [1561] = { + ["coords"] = { + [1] = { 33.1, 74, 33, 300 }, + [2] = { 33.5, 73.3, 33, 300 }, + [3] = { 32.4, 73.1, 33, 300 }, + [4] = { 32, 72.5, 33, 300 }, + [5] = { 32.3, 71.7, 33, 300 }, + [6] = { 28.9, 70.7, 33, 300 }, + [7] = { 28.1, 70.4, 33, 300 }, + [8] = { 27.3, 70, 33, 300 }, + [9] = { 27.9, 69.9, 33, 300 }, + [10] = { 27.4, 69.7, 33, 300 }, + [11] = { 27.5, 69.6, 33, 300 }, + [12] = { 27.6, 69.4, 33, 300 }, + [13] = { 27.5, 69.3, 33, 300 }, + [14] = { 26.8, 67.5, 33, 300 }, + [15] = { 26, 67.2, 33, 300 }, + [16] = { 25.8, 66, 33, 300 }, + }, + ["lvl"] = "40-41", + }, + [1562] = { + ["coords"] = { + [1] = { 33.1, 74, 33, 300 }, + [2] = { 33.5, 73.3, 33, 300 }, + [3] = { 32.4, 73.1, 33, 300 }, + [4] = { 32, 72.5, 33, 300 }, + [5] = { 32.3, 71.7, 33, 300 }, + [6] = { 28.9, 70.7, 33, 300 }, + [7] = { 28.1, 70.4, 33, 300 }, + [8] = { 27.3, 70, 33, 300 }, + [9] = { 27.9, 69.9, 33, 300 }, + [10] = { 27.4, 69.7, 33, 300 }, + [11] = { 27.5, 69.6, 33, 300 }, + [12] = { 27.6, 69.4, 33, 300 }, + [13] = { 27.5, 69.3, 33, 300 }, + [14] = { 26.8, 67.5, 33, 300 }, + [15] = { 26, 67.2, 33, 300 }, + [16] = { 25.8, 66, 33, 300 }, + }, + ["lvl"] = "40-41", + }, + [1563] = { + ["coords"] = { + [1] = { 30, 88, 33, 300 }, + [2] = { 30.1, 87.5, 33, 300 }, + [3] = { 29.7, 87.5, 33, 300 }, + [4] = { 33.5, 86.5, 33, 300 }, + [5] = { 33.8, 86.2, 33, 300 }, + [6] = { 39.5, 85.6, 33, 300 }, + [7] = { 26.9, 83.9, 33, 300 }, + [8] = { 26.5, 83.5, 33, 300 }, + [9] = { 27.2, 83.4, 33, 300 }, + [10] = { 27, 83, 33, 300 }, + [11] = { 26.9, 83, 33, 300 }, + [12] = { 26.7, 82.8, 33, 300 }, + [13] = { 27.2, 82.7, 33, 300 }, + [14] = { 26.8, 82.6, 33, 300 }, + [15] = { 27.7, 82.5, 33, 300 }, + [16] = { 27.3, 82.5, 33, 300 }, + [17] = { 28.2, 82.4, 33, 300 }, + [18] = { 29.7, 81.5, 33, 300 }, + [19] = { 29.4, 81.3, 33, 300 }, + [20] = { 29.9, 81.2, 33, 300 }, + [21] = { 31, 81.1, 33, 300 }, + [22] = { 29.6, 80.9, 33, 300 }, + [23] = { 29.7, 80.8, 33, 300 }, + [24] = { 30, 80.6, 33, 300 }, + [25] = { 31.9, 79.5, 33, 300 }, + [26] = { 33, 77.3, 33, 300 }, + [27] = { 24.1, 56, 33, 300 }, + [28] = { 23.1, 54.7, 33, 300 }, + [29] = { 24.2, 54.5, 33, 300 }, + [30] = { 22.8, 53.9, 33, 300 }, + [31] = { 23.9, 53.8, 33, 300 }, + [32] = { 23.5, 53.6, 33, 300 }, + [33] = { 22.9, 53.4, 33, 300 }, + [34] = { 23.2, 52.8, 33, 300 }, + [35] = { 24.5, 52.8, 33, 300 }, + }, + ["lvl"] = "41-43", + }, + [1564] = { + ["coords"] = { + [1] = { 30, 88, 33, 300 }, + [2] = { 30.1, 87.5, 33, 300 }, + [3] = { 29.7, 87.5, 33, 300 }, + [4] = { 33.5, 86.5, 33, 300 }, + [5] = { 33.8, 86.2, 33, 300 }, + [6] = { 39.5, 85.6, 33, 300 }, + [7] = { 26.9, 83.9, 33, 300 }, + [8] = { 26.5, 83.5, 33, 300 }, + [9] = { 27.2, 83.4, 33, 300 }, + [10] = { 27, 83, 33, 300 }, + [11] = { 26.9, 83, 33, 300 }, + [12] = { 26.7, 82.8, 33, 300 }, + [13] = { 27.2, 82.7, 33, 300 }, + [14] = { 26.8, 82.6, 33, 300 }, + [15] = { 27.7, 82.5, 33, 300 }, + [16] = { 27.3, 82.5, 33, 300 }, + [17] = { 28.2, 82.4, 33, 300 }, + [18] = { 29.7, 81.5, 33, 300 }, + [19] = { 29.4, 81.3, 33, 300 }, + [20] = { 29.9, 81.2, 33, 300 }, + [21] = { 31, 81.1, 33, 300 }, + [22] = { 29.6, 80.9, 33, 300 }, + [23] = { 29.7, 80.8, 33, 300 }, + [24] = { 30, 80.6, 33, 300 }, + [25] = { 31.9, 79.5, 33, 300 }, + [26] = { 33, 77.3, 33, 300 }, + [27] = { 24.1, 56, 33, 300 }, + [28] = { 23.1, 54.7, 33, 300 }, + [29] = { 24.2, 54.5, 33, 300 }, + [30] = { 22.8, 53.9, 33, 300 }, + [31] = { 23.9, 53.8, 33, 300 }, + [32] = { 23.5, 53.6, 33, 300 }, + [33] = { 22.9, 53.4, 33, 300 }, + [34] = { 23.2, 52.8, 33, 300 }, + [35] = { 24.5, 52.8, 33, 300 }, + }, + ["lvl"] = "41-43", + }, + [1565] = { + ["coords"] = { + [1] = { 30.7, 90.3, 33, 300 }, + [2] = { 30.7, 90.2, 33, 300 }, + [3] = { 30.7, 89.9, 33, 300 }, + [4] = { 30.6, 89.9, 33, 300 }, + [5] = { 30.6, 89.7, 33, 300 }, + [6] = { 30.6, 89.6, 33, 300 }, + [7] = { 30.7, 89.5, 33, 300 }, + [8] = { 29.3, 89.1, 33, 300 }, + [9] = { 29.4, 89, 33, 300 }, + [10] = { 29.3, 89, 33, 300 }, + [11] = { 29.4, 88.9, 33, 300 }, + [12] = { 29.4, 88.8, 33, 300 }, + [13] = { 29.4, 88.6, 33, 300 }, + [14] = { 29.3, 88.6, 33, 300 }, + [15] = { 29.2, 88.3, 33, 300 }, + [16] = { 32.9, 88.3, 33, 300 }, + [17] = { 33.6, 88.1, 33, 300 }, + [18] = { 32.1, 54.6, 33, 300 }, + [19] = { 31.8, 54.5, 33, 300 }, + [20] = { 32, 54.4, 33, 300 }, + [21] = { 31.9, 54.4, 33, 300 }, + [22] = { 32, 54.3, 33, 300 }, + [23] = { 31.5, 54.3, 33, 300 }, + [24] = { 31.8, 54.2, 33, 300 }, + [25] = { 31.9, 53.9, 33, 300 }, + }, + ["lvl"] = "43-45", + }, + [1567] = "_", + [1568] = { + ["coords"] = { + [1] = { 30.2, 71.7, 85, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "5", + }, + [1569] = { + ["coords"] = { + [1] = { 30.8, 66.2, 85, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "5", + }, + [1570] = { + ["coords"] = { + [1] = { 32.2, 66, 85, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "5", + }, + [1571] = { + ["coords"] = { + [1] = { 9.5, 59.7, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [1572] = { + ["coords"] = { + [1] = { 96.1, 47.1, 1, 120 }, + [2] = { 33.9, 51, 38, 120 }, + [3] = { 15.9, 70.3, 5602, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [1573] = { + ["coords"] = { + [1] = { 55.5, 47.7, 1537, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [1574] = "_", + [1575] = "_", + [1576] = "_", + [1577] = "_", + [1578] = "_", + [1579] = "_", + [1580] = "_", + [1581] = "_", + [1582] = "_", + [1583] = "_", + [1584] = "_", + [1585] = "_", + [1586] = "_", + [1587] = "_", + [1588] = "_", + [1589] = "_", + [1590] = "_", + [1591] = "_", + [1592] = "_", + [1593] = "_", + [1594] = "_", + [1595] = "_", + [1596] = "_", + [1597] = "_", + [1598] = "_", + [1599] = "_", + [1600] = "_", + [1601] = "_", + [1602] = "_", + [1603] = "_", + [1604] = "_", + [1605] = "_", + [1606] = "_", + [1607] = "_", + [1608] = "_", + [1609] = "_", + [1613] = "_", + [1614] = "_", + [1615] = "_", + [1616] = "_", + [1617] = "_", + [1618] = "_", + [1619] = "_", + [1620] = "_", + [1621] = "_", + [1622] = "_", + [1623] = "_", + [1624] = "_", + [1625] = "_", + [1626] = "_", + [1627] = "_", + [1628] = "_", + [1629] = "_", + [1631] = "_", + [1633] = "_", + [1634] = "_", + [1635] = "_", + [1636] = "_", + [1637] = "_", + [1638] = "_", + [1639] = "_", + [1640] = "_", + [1641] = "_", + [1643] = "_", + [1644] = "_", + [1646] = { + ["coords"] = { + [1] = { 57.7, 47.9, 1519, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1649] = "_", + [1652] = { + ["coords"] = { + [1] = { 60.9, 52, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [1653] = { + ["coords"] = { + [1] = { 30.7, 90.3, 33, 300 }, + [2] = { 30.7, 90.2, 33, 300 }, + [3] = { 30.7, 89.9, 33, 300 }, + [4] = { 30.6, 89.9, 33, 300 }, + [5] = { 30.6, 89.7, 33, 300 }, + [6] = { 30.6, 89.6, 33, 300 }, + [7] = { 30.7, 89.5, 33, 300 }, + [8] = { 29.3, 89.1, 33, 300 }, + [9] = { 29.4, 89, 33, 300 }, + [10] = { 29.3, 89, 33, 300 }, + [11] = { 29.4, 88.9, 33, 300 }, + [12] = { 29.4, 88.8, 33, 300 }, + [13] = { 29.4, 88.6, 33, 300 }, + [14] = { 29.3, 88.6, 33, 300 }, + [15] = { 29.2, 88.3, 33, 300 }, + [16] = { 32.9, 88.3, 33, 300 }, + [17] = { 33.6, 88.1, 33, 300 }, + [18] = { 32.1, 54.6, 33, 300 }, + [19] = { 31.8, 54.5, 33, 300 }, + [20] = { 32, 54.4, 33, 300 }, + [21] = { 31.9, 54.4, 33, 300 }, + [22] = { 32, 54.3, 33, 300 }, + [23] = { 31.5, 54.3, 33, 300 }, + [24] = { 31.8, 54.2, 33, 300 }, + [25] = { 31.9, 53.9, 33, 300 }, + }, + ["lvl"] = "44-45", + }, + [1654] = { + ["coords"] = { + [1] = { 46.7, 29.3, 85, 120 }, + }, + ["lvl"] = "10", + }, + [1655] = { + ["coords"] = { + [1] = { 49.7, 36.3, 85, 120 }, + }, + ["lvl"] = "10", + }, + [1656] = { + ["coords"] = { + [1] = { 44, 33.6, 85, 120 }, + }, + ["lvl"] = "10", + }, + [1657] = { + ["coords"] = { + [1] = { 47.3, 40.8, 85, 120 }, + }, + ["lvl"] = "9", + }, + [1658] = { + ["coords"] = { + [1] = { 52.8, 26.4, 85, 120 }, + }, + ["lvl"] = "13", + }, + [1659] = "_", + [1660] = { + ["coords"] = { + [1] = { 79.5, 25.3, 85, 120 }, + [2] = { 79.4, 25.1, 85, 120 }, + }, + ["lvl"] = "8", + }, + [1661] = { + ["coords"] = { + [1] = { 30.9, 66.1, 85, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "3", + }, + [1662] = { + ["coords"] = { + [1] = { 51.1, 67.8, 85, 120 }, + }, + ["lvl"] = "9", + }, + [1663] = { + ["coords"] = { + [1] = { 14.6, 21.4, 717, 604800 }, + }, + ["lvl"] = "26", + ["rnk"] = "1", + }, + [1664] = { + ["coords"] = { + [1] = { 78.8, 56.1, 85, 120 }, + }, + ["lvl"] = "11", + }, + [1665] = { + ["coords"] = { + [1] = { 79.5, 25.1, 85, 120 }, + }, + ["lvl"] = "12", + }, + [1666] = { + ["coords"] = { + [1] = { 69.2, 30.9, 717, 604800 }, + }, + ["lvl"] = "27", + ["rnk"] = "1", + }, + [1667] = { + ["coords"] = { + [1] = { 36.6, 68.5, 85, 120 }, + }, + ["lvl"] = "5", + }, + [1674] = { + ["coords"] = { + [1] = { 59.4, 44.2, 85, 120 }, + [2] = { 58.5, 44, 85, 120 }, + [3] = { 58.8, 42.7, 85, 120 }, + [4] = { 58.7, 42, 85, 120 }, + [5] = { 58.5, 40.6, 85, 120 }, + [6] = { 57.6, 39.4, 85, 120 }, + [7] = { 59.2, 39.3, 85, 120 }, + [8] = { 58.8, 38.5, 85, 120 }, + [9] = { 56.9, 38.2, 85, 120 }, + [10] = { 57.9, 37.2, 85, 120 }, + [11] = { 57.3, 36.1, 85, 120 }, + [12] = { 56.7, 35.4, 85, 120 }, + [13] = { 59.5, 35, 85, 120 }, + [14] = { 60, 34, 85, 120 }, + [15] = { 57.1, 33.8, 85, 120 }, + [16] = { 58.8, 33.7, 85, 120 }, + }, + ["lvl"] = "6-7", + }, + [1675] = { + ["coords"] = { + [1] = { 60.4, 38.9, 85, 120 }, + [2] = { 60.2, 38.4, 85, 120 }, + [3] = { 60.9, 37.4, 85, 120 }, + [4] = { 59.4, 37.1, 85, 120 }, + [5] = { 58.6, 36.1, 85, 120 }, + [6] = { 59.9, 36.1, 85, 120 }, + [7] = { 58, 35.2, 85, 120 }, + [8] = { 58.2, 34, 85, 120 }, + [9] = { 56.3, 33.7, 85, 120 }, + [10] = { 59.4, 33.7, 85, 120 }, + [11] = { 60.8, 33.7, 85, 120 }, + [12] = { 59.5, 32.7, 85, 120 }, + [13] = { 57.7, 32.6, 85, 120 }, + [14] = { 57.9, 32.5, 85, 120 }, + [15] = { 58.2, 32.5, 85, 120 }, + [16] = { 60.9, 32.5, 85, 120 }, + [17] = { 59.5, 31.9, 85, 120 }, + [18] = { 58.6, 31.7, 85, 120 }, + [19] = { 57.8, 31.5, 85, 120 }, + [20] = { 58.5, 31.3, 85, 120 }, + [21] = { 58.7, 31, 85, 120 }, + }, + ["lvl"] = "7-8", + }, + [1677] = "_", + [1681] = { + ["coords"] = { + [1] = { 37, 47.8, 38, 30 }, + [2] = { 17.5, 68.7, 5602, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [1682] = { + ["coords"] = { + [1] = { 34.8, 48.6, 38, 300 }, + [2] = { 16.3, 69.1, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [1683] = { + ["coords"] = { + [1] = { 40.6, 39.7, 38, 300 }, + [2] = { 19.3, 64.6, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [1684] = { + ["coords"] = { + [1] = { 40.3, 39.3, 38, 300 }, + [2] = { 19.2, 64.3, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [1685] = { + ["coords"] = { + [1] = { 82.3, 63.3, 38, 100 }, + [2] = { 40.7, 76.7, 5602, 100 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [1686] = { + ["coords"] = { + [1] = { 36.1, 45.1, 38, 100 }, + [2] = { 17, 67.3, 5602, 100 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [1687] = { + ["coords"] = { + [1] = { 37.3, 46.8, 38, 100 }, + [2] = { 17.6, 68.2, 5602, 100 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [1688] = { + ["coords"] = { + [1] = { 24, 58.2, 85, 120 }, + }, + ["lvl"] = "5", + }, + [1689] = { + ["coords"] = { + [1] = { 70.9, 61.3, 1, 270 }, + [2] = { 74.9, 60.8, 1, 270 }, + [3] = { 73, 59.9, 1, 270 }, + [4] = { 78.7, 59.3, 1, 270 }, + [5] = { 75.7, 57.8, 1, 270 }, + [6] = { 79.7, 57.6, 1, 270 }, + [7] = { 79.4, 55.8, 1, 270 }, + [8] = { 81.6, 55.4, 1, 270 }, + [9] = { 73.5, 55.2, 1, 270 }, + [10] = { 71.2, 54, 1, 270 }, + [11] = { 81.4, 53.1, 1, 270 }, + [12] = { 74, 53, 1, 270 }, + [13] = { 79.6, 51.9, 1, 270 }, + [14] = { 84.9, 50.7, 1, 270 }, + [15] = { 73.5, 50.6, 1, 270 }, + [16] = { 86.7, 50.2, 1, 270 }, + [17] = { 75.7, 49.9, 1, 270 }, + [18] = { 78.9, 49.5, 1, 270 }, + [19] = { 74.1, 49, 1, 270 }, + [20] = { 74.9, 48.9, 1, 270 }, + [21] = { 84.7, 48.3, 1, 270 }, + [22] = { 80.2, 47.5, 1, 270 }, + [23] = { 86.3, 47.5, 1, 270 }, + [24] = { 79.8, 46.4, 1, 270 }, + [25] = { 81, 43.9, 1, 270 }, + [26] = { 80.1, 43.9, 1, 270 }, + [27] = { 83.2, 38.1, 1, 270 }, + [28] = { 82.5, 37.8, 1, 270 }, + [29] = { 82.7, 35.5, 1, 270 }, + [30] = { 80.8, 35.3, 1, 270 }, + [31] = { 80.2, 34.7, 1, 270 }, + [32] = { 83.1, 33.1, 1, 270 }, + [33] = { 17.1, 56.5, 38, 270 }, + [34] = { 0.1, 81.5, 5602, 270 }, + [35] = { 1, 79.9, 5602, 270 }, + [36] = { 0.7, 78.3, 5602, 270 }, + [37] = { 2.7, 77.9, 5602, 270 }, + [38] = { 2.5, 75.8, 5602, 270 }, + [39] = { 0.9, 74.7, 5602, 270 }, + [40] = { 5.7, 73.6, 5602, 270 }, + [41] = { 7.3, 73.2, 5602, 270 }, + [42] = { 0.2, 72.5, 5602, 270 }, + [43] = { 5.5, 71.4, 5602, 270 }, + [44] = { 1.4, 70.7, 5602, 270 }, + [45] = { 7, 70.7, 5602, 270 }, + [46] = { 1, 69.6, 5602, 270 }, + [47] = { 2.2, 67.4, 5602, 270 }, + [48] = { 1.3, 67.3, 5602, 270 }, + [49] = { 4.2, 62.1, 5602, 270 }, + [50] = { 3.5, 61.8, 5602, 270 }, + [51] = { 3.7, 59.7, 5602, 270 }, + [52] = { 2, 59.5, 5602, 270 }, + [53] = { 1.4, 58.9, 5602, 270 }, + [54] = { 4.1, 57.5, 5602, 270 }, + }, + ["lvl"] = "9-10", + }, + [1693] = { + ["coords"] = { + [1] = { 58.8, 57.6, 38, 300 }, + [2] = { 54.2, 56.2, 38, 300 }, + [3] = { 54, 55.2, 38, 300 }, + [4] = { 55.5, 53.5, 38, 300 }, + [5] = { 55.1, 52.9, 38, 300 }, + [6] = { 55.3, 52.7, 38, 300 }, + [7] = { 56.5, 52.6, 38, 300 }, + [8] = { 62.4, 51.5, 38, 300 }, + [9] = { 61.9, 45.4, 38, 300 }, + [10] = { 61.3, 43.7, 38, 300 }, + [11] = { 60, 41.8, 38, 300 }, + [12] = { 54.5, 41.7, 38, 300 }, + [13] = { 53.8, 40.4, 38, 300 }, + [14] = { 54, 39.3, 38, 300 }, + [15] = { 53.1, 39.2, 38, 300 }, + [16] = { 56.9, 39.1, 38, 300 }, + [17] = { 56.1, 37.8, 38, 300 }, + [18] = { 56.3, 37.6, 38, 300 }, + [19] = { 53.6, 37.4, 38, 300 }, + [20] = { 58.8, 36.8, 38, 300 }, + [21] = { 56.5, 36.4, 38, 300 }, + [22] = { 55.7, 36, 38, 300 }, + [23] = { 51.2, 34.9, 38, 300 }, + [24] = { 55.5, 33.8, 38, 300 }, + [25] = { 57.4, 31.6, 38, 300 }, + [26] = { 58.3, 24, 38, 300 }, + [27] = { 57.3, 21.7, 38, 300 }, + [28] = { 28.6, 73.7, 5602, 300 }, + [29] = { 26.3, 73, 5602, 300 }, + [30] = { 26.2, 72.5, 5602, 300 }, + [31] = { 27, 71.6, 5602, 300 }, + [32] = { 26.8, 71.3, 5602, 300 }, + [33] = { 26.9, 71.2, 5602, 300 }, + [34] = { 27.5, 71.2, 5602, 300 }, + [35] = { 30.5, 70.6, 5602, 300 }, + [36] = { 30.2, 67.5, 5602, 300 }, + [37] = { 29.9, 66.6, 5602, 300 }, + [38] = { 29.3, 65.6, 5602, 300 }, + [39] = { 26.5, 65.6, 5602, 300 }, + [40] = { 26.1, 64.9, 5602, 300 }, + [41] = { 26.2, 64.4, 5602, 300 }, + [42] = { 25.8, 64.3, 5602, 300 }, + [43] = { 27.7, 64.3, 5602, 300 }, + [44] = { 27.3, 63.6, 5602, 300 }, + [45] = { 27.4, 63.5, 5602, 300 }, + [46] = { 26, 63.4, 5602, 300 }, + [47] = { 28.6, 63.1, 5602, 300 }, + [48] = { 27.5, 62.9, 5602, 300 }, + [49] = { 27.1, 62.6, 5602, 300 }, + [50] = { 24.8, 62.1, 5602, 300 }, + [51] = { 27, 61.6, 5602, 300 }, + [52] = { 28, 60.4, 5602, 300 }, + [53] = { 28.4, 56.5, 5602, 300 }, + [54] = { 27.9, 55.3, 5602, 300 }, + }, + ["lvl"] = "14-15", + }, + [1694] = { + ["coords"] = { + [1] = { 50.1, 49.4, 1, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [1695] = { + ["coords"] = { + [1] = { 89.1, 44.3, 357, 300 }, + [2] = { 7.2, 15.4, 400, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [1696] = { + ["coords"] = { + [1] = { 49.9, 24.2, 717, 604800 }, + }, + ["lvl"] = "24", + ["rnk"] = "1", + }, + [1706] = { + ["coords"] = { + [1] = { 50.7, 55.2, 717, 18000 }, + [2] = { 42.1, 54.2, 717, 18000 }, + [3] = { 54.3, 52.4, 717, 18000 }, + [4] = { 49.4, 50.4, 717, 18000 }, + [5] = { 54, 43.7, 717, 18000 }, + [6] = { 57.9, 43.5, 717, 18000 }, + [7] = { 50.6, 37.1, 717, 18000 }, + [8] = { 49.3, 35.5, 717, 18000 }, + [9] = { 39.9, 27.6, 717, 18000 }, + [10] = { 34.6, 23, 717, 18000 }, + [11] = { 49.9, 21.7, 717, 18000 }, + [12] = { 16.4, 21.1, 717, 18000 }, + [13] = { 27.2, 13.6, 717, 18000 }, + }, + ["lvl"] = "23-24", + ["rnk"] = "1", + }, + [1707] = { + ["coords"] = { + [1] = { 45.8, 55.5, 717, 18000 }, + [2] = { 53, 54.9, 717, 18000 }, + [3] = { 44.6, 53.1, 717, 18000 }, + [4] = { 57.9, 52.7, 717, 18000 }, + [5] = { 57.8, 46.8, 717, 18000 }, + [6] = { 46.8, 46.6, 717, 18000 }, + [7] = { 44.5, 44.4, 717, 18000 }, + [8] = { 42.2, 43.7, 717, 18000 }, + [9] = { 38.9, 43.7, 717, 18000 }, + [10] = { 50.4, 43.6, 717, 18000 }, + [11] = { 37.8, 41.9, 717, 18000 }, + [12] = { 39.4, 35.5, 717, 18000 }, + [13] = { 31.4, 34.3, 717, 18000 }, + [14] = { 49.4, 31.8, 717, 18000 }, + [15] = { 20.6, 29, 717, 18000 }, + [16] = { 33, 28.7, 717, 18000 }, + [17] = { 22.9, 28.6, 717, 18000 }, + [18] = { 49.2, 26.5, 717, 18000 }, + [19] = { 26, 11.1, 717, 18000 }, + }, + ["lvl"] = "23-24", + ["rnk"] = "1", + }, + [1708] = { + ["coords"] = { + [1] = { 50.1, 57.3, 717, 18000 }, + [2] = { 75.3, 54.7, 717, 18000 }, + [3] = { 64.7, 49.3, 717, 18000 }, + [4] = { 38.5, 47.6, 717, 18000 }, + [5] = { 36.1, 47.5, 717, 18000 }, + [6] = { 31.7, 45.7, 717, 18000 }, + [7] = { 28.4, 44.5, 717, 18000 }, + [8] = { 73, 42.1, 717, 18000 }, + [9] = { 62.3, 40.8, 717, 18000 }, + [10] = { 16.1, 40, 717, 18000 }, + [11] = { 30.4, 39.3, 717, 18000 }, + [12] = { 66.5, 38.6, 717, 18000 }, + [13] = { 18.6, 38.4, 717, 18000 }, + [14] = { 37.2, 36.5, 717, 18000 }, + [15] = { 17.8, 36, 717, 18000 }, + [16] = { 84.3, 32.1, 717, 18000 }, + [17] = { 82, 31.4, 717, 18000 }, + [18] = { 28, 31.2, 717, 18000 }, + [19] = { 38.7, 29.8, 717, 18000 }, + [20] = { 70.5, 27.9, 717, 18000 }, + [21] = { 34.3, 27.4, 717, 18000 }, + [22] = { 68.6, 26.9, 717, 18000 }, + [23] = { 23.8, 25.8, 717, 18000 }, + [24] = { 21.2, 25.5, 717, 18000 }, + [25] = { 39.6, 24.1, 717, 604800 }, + [26] = { 16, 23.6, 717, 18000 }, + [27] = { 35.9, 23.6, 717, 18000 }, + [28] = { 11.1, 20.5, 717, 18000 }, + [29] = { 12.6, 19.7, 717, 18000 }, + [30] = { 25.5, 19.6, 717, 18000 }, + [31] = { 12.5, 17.7, 717, 18000 }, + [32] = { 25, 15, 717, 18000 }, + [33] = { 27.1, 12.5, 717, 18000 }, + }, + ["lvl"] = "24-25", + ["rnk"] = "1", + }, + [1711] = { + ["coords"] = { + [1] = { 74.1, 61, 717, 18000 }, + [2] = { 72.4, 59.5, 717, 18000 }, + [3] = { 66.1, 49.9, 717, 18000 }, + [4] = { 84.2, 49.7, 717, 18000 }, + [5] = { 65, 46.2, 717, 18000 }, + [6] = { 61.1, 43.2, 717, 18000 }, + [7] = { 68.9, 38.1, 717, 18000 }, + [8] = { 81.1, 37.4, 717, 18000 }, + [9] = { 44.5, 36.2, 717, 18000 }, + [10] = { 62.7, 36.1, 717, 18000 }, + [11] = { 62.9, 32.6, 717, 18000 }, + [12] = { 64, 26, 717, 18000 }, + }, + ["lvl"] = "24-25", + ["rnk"] = "1", + }, + [1713] = { + ["coords"] = { + [1] = { 31.2, 58.5, 33, 300 }, + [2] = { 36.1, 58.4, 33, 300 }, + [3] = { 29.8, 58, 33, 300 }, + [4] = { 35.6, 57.8, 33, 300 }, + [5] = { 36.2, 56.7, 33, 300 }, + [6] = { 36.7, 55.9, 33, 300 }, + [7] = { 35.4, 55.7, 33, 300 }, + [8] = { 36.3, 55.3, 33, 300 }, + [9] = { 36.6, 55.2, 33, 300 }, + }, + ["lvl"] = "42-43", + }, + [1714] = "_", + [1715] = { + ["coords"] = { + [1] = { 73.7, 56.6, 717, 18000 }, + [2] = { 83.5, 51.1, 717, 18000 }, + [3] = { 78.2, 49.6, 717, 18000 }, + [4] = { 60.2, 48.1, 717, 18000 }, + [5] = { 80.4, 44.2, 717, 18000 }, + [6] = { 67.6, 43.6, 717, 18000 }, + [7] = { 59.8, 36.6, 717, 18000 }, + [8] = { 82.9, 35.1, 717, 18000 }, + [9] = { 67.3, 31.9, 717, 18000 }, + [10] = { 61.5, 29.2, 717, 18000 }, + }, + ["lvl"] = "25-26", + ["rnk"] = "1", + }, + [1716] = { + ["coords"] = { + [1] = { 86.4, 52, 717, 604800 }, + }, + ["lvl"] = "29", + ["rnk"] = "1", + }, + [1717] = { + ["coords"] = { + [1] = { 78.2, 45.7, 717, 604800 }, + }, + ["lvl"] = "28", + ["rnk"] = "1", + }, + [1718] = { + ["coords"] = { + [1] = { 34.6, 70.9, 1, 270 }, + [2] = { 33.9, 69.8, 1, 270 }, + [3] = { 34.9, 69.4, 1, 270 }, + [4] = { 35.6, 69.3, 1, 270 }, + [5] = { 35.6, 69.2, 1, 270 }, + [6] = { 34.1, 68.9, 1, 270 }, + [7] = { 35, 68.4, 1, 270 }, + [8] = { 35.6, 68, 1, 270 }, + [9] = { 35.8, 66.9, 1, 270 }, + [10] = { 35.7, 65.9, 1, 270 }, + }, + ["lvl"] = "3-4", + }, + [1719] = { + ["coords"] = { + [1] = { 51.5, 69.4, 1519, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [1720] = { + ["coords"] = { + [1] = { 38.1, 24, 717, 604800 }, + }, + ["lvl"] = "26", + ["rnk"] = "2", + }, + [1721] = { + ["coords"] = { + [1] = { 73.3, 55.5, 1519, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [1723] = "_", + [1724] = "_", + [1725] = { + ["coords"] = { + [1] = { 43.1, 80.1, 40, 300 }, + [2] = { 39.2, 79, 40, 300 }, + [3] = { 40, 78.5, 40, 300 }, + [4] = { 40, 78, 40, 300 }, + [5] = { 39.6, 77.6, 40, 300 }, + [6] = { 63, 71, 1581, 300 }, + [7] = { 32.9, 62.9, 1581, 300 }, + [8] = { 38.8, 58.8, 1581, 300 }, + [9] = { 39, 54.7, 1581, 300 }, + [10] = { 36.1, 51.6, 1581, 300 }, + [11] = { 19.9, 55, 5138, 604800 }, + [12] = { 19.4, 50.7, 5138, 604800 }, + }, + ["lvl"] = "16-17", + ["rnk"] = "1", + }, + [1726] = { + ["coords"] = { + [1] = { 42.2, 79.2, 40, 300 }, + [2] = { 42.6, 79.1, 40, 300 }, + [3] = { 56.1, 64.4, 1581, 300 }, + [4] = { 59.7, 63.2, 1581, 300 }, + }, + ["lvl"] = "16-17", + ["rnk"] = "1", + }, + [1727] = { + ["coords"] = { + [1] = { 43.2, 80.5, 40, 300 }, + [2] = { 42.1, 80.2, 40, 300 }, + [3] = { 42.4, 80, 40, 300 }, + [4] = { 41.6, 79.9, 40, 300 }, + [5] = { 39.2, 79.8, 40, 300 }, + [6] = { 41.3, 79.8, 40, 300 }, + [7] = { 38.9, 79.7, 40, 300 }, + [8] = { 43.3, 79.6, 40, 300 }, + [9] = { 42.8, 79.5, 40, 300 }, + [10] = { 40.7, 79.4, 40, 300 }, + [11] = { 44, 79.3, 40, 300 }, + [12] = { 43.6, 79.1, 40, 300 }, + [13] = { 39.5, 78.9, 40, 300 }, + [14] = { 38.6, 78.9, 40, 300 }, + [15] = { 40.8, 78.9, 40, 300 }, + [16] = { 43.1, 78.9, 40, 300 }, + [17] = { 42.2, 78.8, 40, 300 }, + [18] = { 42.9, 78.6, 40, 300 }, + [19] = { 39.7, 78.6, 40, 300 }, + [20] = { 40.5, 78.5, 40, 300 }, + [21] = { 43.2, 78.4, 40, 300 }, + [22] = { 40.3, 78.1, 40, 300 }, + [23] = { 39.3, 77.9, 40, 300 }, + [24] = { 39.8, 77.5, 40, 300 }, + [25] = { 39.1, 77.5, 40, 300 }, + [26] = { 39.6, 76.9, 40, 300 }, + [27] = { 39.8, 76.1, 40, 300 }, + [28] = { 39.4, 76, 40, 300 }, + [29] = { 63.9, 74.2, 1581, 300 }, + [30] = { 55.7, 72, 1581, 300 }, + [31] = { 57.6, 70.6, 1581, 300 }, + [32] = { 52, 69.6, 1581, 300 }, + [33] = { 33.1, 68.9, 1581, 300 }, + [34] = { 49, 68.8, 1581, 300 }, + [35] = { 30.8, 67.9, 1581, 300 }, + [36] = { 64.6, 67.5, 1581, 300 }, + [37] = { 61, 66.8, 1581, 300 }, + [38] = { 44.5, 66, 1581, 300 }, + [39] = { 70.4, 65, 1581, 300 }, + [40] = { 66.9, 63.4, 1581, 300 }, + [41] = { 35.1, 62.4, 1581, 300 }, + [42] = { 28.2, 62.3, 1581, 300 }, + [43] = { 45.5, 61.8, 1581, 300 }, + [44] = { 63.2, 61.7, 1581, 300 }, + [45] = { 56.5, 61, 1581, 300 }, + [46] = { 61.9, 59.4, 1581, 300 }, + [47] = { 36.9, 59.3, 1581, 300 }, + [48] = { 43.4, 59.3, 1581, 300 }, + [49] = { 64.2, 57.9, 1581, 300 }, + [50] = { 41.3, 55.5, 1581, 300 }, + [51] = { 33.8, 54.4, 1581, 300 }, + [52] = { 37.6, 51.4, 1581, 300 }, + [53] = { 32.2, 51.2, 1581, 300 }, + [54] = { 36.1, 46.6, 1581, 300 }, + [55] = { 38, 40.4, 1581, 300 }, + [56] = { 34.8, 39.7, 1581, 300 }, + }, + ["lvl"] = "16-17", + }, + [1729] = { + ["coords"] = { + [1] = { 23.8, 52.1, 5138, 18000 }, + [2] = { 24.9, 51.7, 5138, 18000 }, + [3] = { 12.1, 48.4, 5138, 18000 }, + [4] = { 11.8, 29.9, 5138, 18000 }, + [5] = { 8.1, 29.6, 5138, 18000 }, + [6] = { 10.3, 22, 5138, 18000 }, + [7] = { 10.5, 19.8, 5138, 18000 }, + }, + ["lvl"] = "17-18", + ["rnk"] = "1", + }, + [1730] = "_", + [1731] = { + ["coords"] = { + [1] = { 38.5, 62.5, 5138, 18000 }, + [2] = { 35.5, 60.5, 5138, 18000 }, + [3] = { 35, 56.8, 5138, 18000 }, + [4] = { 37.3, 56.7, 5138, 18000 }, + [5] = { 43.2, 56.4, 5138, 18000 }, + [6] = { 31.7, 55.8, 5138, 18000 }, + [7] = { 42.6, 55.2, 5138, 18000 }, + [8] = { 42.8, 54.2, 5138, 18000 }, + [9] = { 42.3, 51.9, 5138, 18000 }, + [10] = { 35.1, 51.5, 5138, 18000 }, + [11] = { 36.8, 50.6, 5138, 18000 }, + [12] = { 37.2, 50.4, 5138, 18000 }, + [13] = { 36.9, 49.5, 5138, 18000 }, + [14] = { 39.4, 49.5, 5138, 18000 }, + [15] = { 35.8, 45.5, 5138, 18000 }, + [16] = { 36.8, 36, 5138, 18000 }, + [17] = { 38.9, 29.8, 5138, 18000 }, + }, + ["lvl"] = "18-19", + ["rnk"] = "1", + }, + [1732] = { + ["coords"] = { + [1] = { 90.8, 42.4, 5138, 18000 }, + [2] = { 88.8, 42.1, 5138, 18000 }, + [3] = { 83.9, 41.3, 5138, 18000 }, + [4] = { 78.2, 35.9, 5138, 18000 }, + [5] = { 78.4, 35.6, 5138, 18000 }, + [6] = { 79.9, 33.1, 5138, 18000 }, + [7] = { 69.3, 31.5, 5138, 18000 }, + [8] = { 72.2, 26.5, 5138, 18000 }, + [9] = { 73.8, 24, 5138, 604800 }, + [10] = { 62.2, 22.3, 5138, 18000 }, + [11] = { 70, 21.6, 5138, 18000 }, + [12] = { 61, 20, 5138, 18000 }, + [13] = { 62.3, 18.2, 5138, 18000 }, + [14] = { 72, 15.1, 5138, 18000 }, + [15] = { 62.9, 13.7, 5138, 18000 }, + }, + ["lvl"] = "19-20", + ["rnk"] = "1", + }, + [1733] = { + ["coords"] = { + [1] = { 40.2, 85.3, 1519, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [1735] = { + ["coords"] = { + [1] = { 53.6, 53, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [1738] = { + ["coords"] = { + [1] = { 63.5, 56.6, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [1740] = { + ["coords"] = { + [1] = { 31.6, 65.6, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [1742] = { + ["coords"] = { + [1] = { 58.5, 51.4, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [1743] = { + ["coords"] = { + [1] = { 58.5, 51.4, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [1744] = { + ["coords"] = { + [1] = { 61.4, 53, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [1745] = { + ["coords"] = { + [1] = { 60.2, 52.4, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [1746] = { + ["coords"] = { + [1] = { 60.7, 51.9, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [1747] = { + ["coords"] = { + [1] = { 59.5, 97.9, 5581, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [1748] = { + ["coords"] = { + [1] = { 59.5, 98, 5581, 86400 }, + }, + ["fac"] = "A", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [1749] = { + ["coords"] = { + [1] = { 59.5, 97.9, 5581, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "62", + }, + [1750] = { + ["coords"] = { + [1] = { 61, 95.9, 5581, 2100 }, + }, + ["fac"] = "A", + ["lvl"] = "62", + }, + [1751] = { + ["coords"] = { + [1] = { 61.1, 96.2, 5581, 2100 }, + }, + ["fac"] = "A", + ["lvl"] = "62", + }, + [1752] = { + ["coords"] = { + [1] = { 78, 46.4, 1519, 490 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [1753] = { + ["coords"] = { + [1] = { 58.7, 30.8, 85, 120 }, + }, + ["lvl"] = "10", + }, + [1754] = { + ["coords"] = { + [1] = { 76.4, 29.1, 1519, 120 }, + [2] = { 57.5, 93, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "31", + }, + [1756] = { + ["coords"] = { + [1] = { 73.2, 47.1, 1519, 430 }, + [2] = { 72.9, 46.4, 1519, 430 }, + [3] = { 76.9, 46.3, 1519, 350 }, + [4] = { 76.6, 46.3, 1519, 430 }, + [5] = { 73.9, 46.2, 1519, 430 }, + [6] = { 73.7, 45.9, 1519, 350 }, + [7] = { 77, 45.8, 1519, 430 }, + [8] = { 73.6, 45.6, 1519, 430 }, + [9] = { 78.4, 40.9, 1519, 430 }, + [10] = { 78, 40.3, 1519, 430 }, + [11] = { 73.3, 34.4, 1519, 430 }, + [12] = { 73.1, 33.9, 1519, 430 }, + [13] = { 75.7, 31.7, 1519, 430 }, + [14] = { 75.3, 31.1, 1519, 430 }, + [15] = { 58.5, 99.3, 5581, 430 }, + [16] = { 58.3, 99, 5581, 430 }, + [17] = { 59.6, 98.7, 5581, 430 }, + [18] = { 59.2, 98.6, 5581, 430 }, + [19] = { 59.9, 98.3, 5581, 430 }, + [20] = { 59, 98.2, 5581, 430 }, + [21] = { 60, 97.7, 5581, 430 }, + [22] = { 59, 97.6, 5581, 430 }, + [23] = { 59.7, 97.3, 5581, 430 }, + [24] = { 59.3, 97.2, 5581, 430 }, + [25] = { 59.3, 97.1, 5581, 430 }, + [26] = { 60.5, 96.9, 5581, 430 }, + [27] = { 60.3, 96.6, 5581, 430 }, + [28] = { 55.8, 95.8, 5581, 430 }, + [29] = { 55.7, 95.6, 5581, 430 }, + [30] = { 57.1, 94.4, 5581, 430 }, + [31] = { 56.9, 94.1, 5581, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [1757] = "_", + [1758] = "_", + [1759] = "_", + [1760] = "_", + [1761] = "_", + [1762] = "_", + [1763] = { + ["coords"] = { + [1] = { 38.3, 49.3, 5138, 604800 }, + }, + ["lvl"] = "20", + ["rnk"] = "1", + }, + [1766] = { + ["coords"] = { + [1] = { 44.5, 26.8, 130, 413 }, + [2] = { 47.6, 25.7, 130, 413 }, + [3] = { 46.4, 25.6, 130, 413 }, + [4] = { 44.5, 25.4, 130, 413 }, + [5] = { 47.7, 24.7, 130, 413 }, + [6] = { 47, 22.8, 130, 413 }, + [7] = { 49.2, 22.5, 130, 413 }, + [8] = { 47.5, 21.8, 130, 413 }, + [9] = { 50.9, 21.8, 130, 413 }, + [10] = { 48.9, 20.1, 130, 413 }, + [11] = { 50.9, 19.5, 130, 413 }, + [12] = { 50.5, 17.9, 130, 413 }, + [13] = { 52.3, 17.5, 130, 413 }, + [14] = { 55.5, 17.3, 130, 413 }, + [15] = { 56.4, 16.2, 130, 413 }, + [16] = { 59.5, 16, 130, 413 }, + [17] = { 57.4, 15.8, 130, 413 }, + [18] = { 49.4, 15.4, 130, 413 }, + [19] = { 57.9, 14.1, 130, 413 }, + [20] = { 54.9, 13.6, 130, 413 }, + [21] = { 50.1, 13.6, 130, 413 }, + [22] = { 59.2, 13.6, 130, 413 }, + [23] = { 54.5, 12.8, 130, 413 }, + [24] = { 55.3, 12.7, 130, 413 }, + [25] = { 56.2, 12.5, 130, 413 }, + [26] = { 61.2, 11.9, 130, 413 }, + [27] = { 63.1, 10.9, 130, 413 }, + [28] = { 57.1, 10.8, 130, 413 }, + [29] = { 58.9, 10.5, 130, 413 }, + [30] = { 59.8, 10.4, 130, 413 }, + [31] = { 56.2, 10.2, 130, 413 }, + [32] = { 57, 10.1, 130, 413 }, + [33] = { 57.9, 9.9, 130, 413 }, + [34] = { 61, 9, 130, 413 }, + [35] = { 59.5, 8.9, 130, 413 }, + [36] = { 61.8, 8.8, 130, 413 }, + [37] = { 57.7, 8.8, 130, 413 }, + [38] = { 62.1, 8.5, 130, 413 }, + [39] = { 56.4, 8, 130, 413 }, + [40] = { 58.5, 6.8, 130, 413 }, + }, + ["lvl"] = "11-12", + }, + [1767] = { + ["coords"] = { + [1] = { 56.1, 28.4, 130, 413 }, + [2] = { 55.7, 28.2, 130, 413 }, + [3] = { 56.1, 28, 130, 413 }, + [4] = { 56.1, 27.7, 130, 413 }, + [5] = { 56.5, 25.9, 130, 413 }, + [6] = { 57.4, 25.8, 130, 413 }, + [7] = { 56.8, 25.3, 130, 413 }, + [8] = { 57.9, 24.6, 130, 413 }, + [9] = { 57, 23.8, 130, 413 }, + [10] = { 57.7, 23.5, 130, 413 }, + [11] = { 57.6, 22.5, 130, 413 }, + [12] = { 57.1, 22, 130, 413 }, + [13] = { 57.4, 21.2, 130, 413 }, + [14] = { 57.7, 21.2, 130, 413 }, + [15] = { 56.9, 19.3, 130, 413 }, + [16] = { 58.5, 18.3, 130, 413 }, + [17] = { 58.9, 18, 130, 413 }, + [18] = { 59.4, 17.5, 130, 413 }, + [19] = { 59.9, 17.4, 130, 413 }, + [20] = { 58.6, 17.4, 130, 413 }, + [21] = { 60.2, 16.5, 130, 413 }, + [22] = { 61.3, 15.9, 130, 413 }, + [23] = { 60.5, 15.5, 130, 413 }, + [24] = { 60.1, 14.9, 130, 413 }, + [25] = { 61.1, 14.5, 130, 413 }, + [26] = { 62.3, 13.9, 130, 413 }, + [27] = { 61.6, 13.5, 130, 413 }, + [28] = { 60.7, 13.5, 130, 413 }, + [29] = { 65.1, 13.4, 130, 413 }, + [30] = { 66.6, 13, 130, 413 }, + [31] = { 64.2, 12.9, 130, 413 }, + [32] = { 65.6, 12.9, 130, 413 }, + [33] = { 63.6, 12.9, 130, 413 }, + [34] = { 63.8, 12.6, 130, 413 }, + [35] = { 63, 12.6, 130, 413 }, + [36] = { 62.2, 12.6, 130, 413 }, + [37] = { 65.8, 12.5, 130, 413 }, + [38] = { 66.6, 12.5, 130, 413 }, + [39] = { 64.6, 12.4, 130, 413 }, + [40] = { 63.8, 12.1, 130, 413 }, + [41] = { 65.1, 11.8, 130, 413 }, + [42] = { 67, 11.7, 130, 413 }, + [43] = { 64.2, 11.2, 130, 413 }, + }, + ["lvl"] = "12-13", + }, + [1768] = { + ["coords"] = { + [1] = { 56.3, 27.7, 130, 413 }, + [2] = { 56.2, 27.5, 130, 413 }, + [3] = { 56, 27.2, 130, 413 }, + [4] = { 57.8, 20, 130, 413 }, + [5] = { 57.3, 19, 130, 413 }, + [6] = { 59.6, 18.6, 130, 413 }, + [7] = { 57.6, 18.4, 130, 413 }, + [8] = { 59.1, 18.1, 130, 413 }, + [9] = { 58, 17.9, 130, 413 }, + [10] = { 59.6, 17.8, 130, 413 }, + [11] = { 59.1, 17.8, 130, 413 }, + [12] = { 59.9, 17.7, 130, 413 }, + [13] = { 60.5, 17.5, 130, 413 }, + [14] = { 60.7, 16.7, 130, 413 }, + [15] = { 60.9, 16.4, 130, 413 }, + [16] = { 61.7, 14.2, 130, 413 }, + [17] = { 66.2, 13.2, 130, 413 }, + [18] = { 66.5, 13.2, 130, 413 }, + [19] = { 65.2, 13, 130, 413 }, + [20] = { 62.9, 13, 130, 413 }, + [21] = { 66.2, 13, 130, 413 }, + [22] = { 66.3, 12.7, 130, 413 }, + [23] = { 66.6, 12.7, 130, 413 }, + [24] = { 67, 12.6, 130, 413 }, + }, + ["lvl"] = "13-14", + }, + [1769] = { + ["coords"] = { + [1] = { 50.7, 47.8, 130, 413 }, + [2] = { 51.8, 46.6, 130, 413 }, + [3] = { 51.8, 44.9, 130, 413 }, + [4] = { 53.9, 43.2, 130, 413 }, + [5] = { 51.5, 43.1, 130, 413 }, + [6] = { 52.2, 41.8, 130, 413 }, + [7] = { 54.1, 41.4, 130, 413 }, + [8] = { 48.1, 40.6, 130, 413 }, + [9] = { 49.8, 40.5, 130, 413 }, + [10] = { 55.3, 40.3, 130, 413 }, + [11] = { 49.1, 39.6, 130, 413 }, + [12] = { 50.2, 39.2, 130, 413 }, + [13] = { 52.9, 38, 130, 413 }, + [14] = { 48.9, 36.7, 130, 413 }, + [15] = { 48.5, 35.2, 130, 413 }, + [16] = { 49.4, 34.9, 130, 413 }, + [17] = { 49.3, 34.2, 130, 413 }, + [18] = { 47.8, 34.1, 130, 413 }, + [19] = { 48.5, 31.8, 130, 413 }, + [20] = { 52.8, 28.5, 130, 413 }, + [21] = { 51.9, 28.2, 130, 413 }, + [22] = { 52.4, 28, 130, 413 }, + [23] = { 52.3, 26.9, 130, 413 }, + [24] = { 54.5, 26.7, 130, 413 }, + [25] = { 53, 26.7, 130, 413 }, + [26] = { 51.4, 26.5, 130, 413 }, + [27] = { 52, 26.3, 130, 413 }, + [28] = { 52.7, 26.2, 130, 413 }, + [29] = { 55.9, 25.4, 130, 413 }, + [30] = { 52.2, 24.8, 130, 413 }, + [31] = { 54.2, 24.6, 130, 413 }, + [32] = { 53.4, 24.4, 130, 413 }, + [33] = { 54.5, 23.8, 130, 413 }, + [34] = { 55.4, 23.1, 130, 413 }, + [35] = { 53.6, 22.5, 130, 413 }, + [36] = { 54.9, 21.7, 130, 413 }, + [37] = { 54.8, 20.8, 130, 413 }, + [38] = { 55.5, 20.8, 130, 413 }, + [39] = { 55.9, 20.7, 130, 413 }, + [40] = { 55.6, 20.4, 130, 413 }, + [41] = { 55.5, 20, 130, 413 }, + [42] = { 55.1, 20, 130, 413 }, + [43] = { 55.8, 19.9, 130, 413 }, + [44] = { 55.7, 19.8, 130, 413 }, + [45] = { 56.7, 19.5, 130, 413 }, + [46] = { 55.8, 19.2, 130, 413 }, + [47] = { 56.3, 18.6, 130, 413 }, + }, + ["lvl"] = "10-11", + }, + [1770] = { + ["coords"] = { + [1] = { 52.9, 28.4, 130, 413 }, + [2] = { 52.7, 28, 130, 413 }, + [3] = { 52.9, 27.6, 130, 413 }, + [4] = { 53.9, 27.2, 130, 413 }, + [5] = { 52.7, 26, 130, 413 }, + [6] = { 47.7, 25.2, 130, 413 }, + [7] = { 53.2, 25.1, 130, 413 }, + [8] = { 48.9, 24.9, 130, 413 }, + [9] = { 48.3, 24.5, 130, 413 }, + [10] = { 48.5, 24.5, 130, 413 }, + [11] = { 53.6, 24.5, 130, 413 }, + [12] = { 52.8, 24.3, 130, 413 }, + [13] = { 48.8, 24, 130, 413 }, + [14] = { 48.7, 23.2, 130, 413 }, + }, + ["lvl"] = "11-12", + }, + [1773] = { + ["coords"] = { + [1] = { 45.1, 23.6, 130, 413 }, + [2] = { 45, 22.9, 130, 413 }, + [3] = { 45.7, 22.7, 130, 413 }, + [4] = { 44.1, 22.4, 130, 413 }, + [5] = { 44.1, 21.7, 130, 413 }, + [6] = { 44.3, 21.7, 130, 413 }, + [7] = { 44.4, 19.6, 130, 413 }, + [8] = { 45.6, 19.3, 130, 413 }, + }, + ["lvl"] = "12-13", + }, + [1777] = { + ["coords"] = { + [1] = { 35.4, 42.8, 38, 300 }, + [2] = { 16.7, 66.2, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [1778] = { + ["coords"] = { + [1] = { 44.1, 52, 130, 413 }, + [2] = { 45, 51.9, 130, 413 }, + [3] = { 44.6, 50.4, 130, 413 }, + [4] = { 46.3, 49.6, 130, 413 }, + [5] = { 44.2, 48.2, 130, 413 }, + [6] = { 44.9, 47.3, 130, 413 }, + [7] = { 47, 46.5, 130, 413 }, + [8] = { 51.3, 45.4, 130, 413 }, + [9] = { 50.8, 44.9, 130, 413 }, + [10] = { 55.2, 44.2, 130, 413 }, + [11] = { 54.5, 43.9, 130, 413 }, + [12] = { 50.2, 43.4, 130, 413 }, + [13] = { 51.1, 42.5, 130, 413 }, + [14] = { 50.6, 40.8, 130, 413 }, + [15] = { 53.5, 39.5, 130, 413 }, + [16] = { 51.3, 38.7, 130, 413 }, + [17] = { 51, 38.4, 130, 413 }, + [18] = { 54.3, 38.2, 130, 413 }, + [19] = { 50.1, 36.2, 130, 413 }, + [20] = { 46.9, 33.5, 130, 413 }, + [21] = { 47.3, 33, 130, 413 }, + [22] = { 48.8, 32.9, 130, 413 }, + [23] = { 48.8, 26.3, 130, 413 }, + [24] = { 46, 26, 130, 413 }, + [25] = { 44.5, 24.7, 130, 413 }, + [26] = { 48, 23.3, 130, 413 }, + [27] = { 49.7, 22.7, 130, 413 }, + [28] = { 51.9, 21.6, 130, 413 }, + [29] = { 48.2, 20.3, 130, 413 }, + [30] = { 50, 19.9, 130, 413 }, + [31] = { 47.5, 19.7, 130, 413 }, + [32] = { 52.2, 19.6, 130, 413 }, + [33] = { 48.3, 19.3, 130, 413 }, + [34] = { 51.2, 18.6, 130, 413 }, + [35] = { 50.4, 18.5, 130, 413 }, + [36] = { 49.4, 17.4, 130, 413 }, + [37] = { 51.3, 16.7, 130, 413 }, + [38] = { 51, 14.9, 130, 413 }, + [39] = { 49.1, 14.2, 130, 413 }, + }, + ["lvl"] = "11-12", + }, + [1779] = { + ["coords"] = { + [1] = { 55.5, 49.3, 130, 413 }, + [2] = { 54.8, 49.3, 130, 413 }, + [3] = { 54.6, 48.3, 130, 413 }, + [4] = { 56.4, 47.7, 130, 413 }, + [5] = { 56, 47.2, 130, 413 }, + [6] = { 55.6, 46.6, 130, 413 }, + [7] = { 56.5, 46.5, 130, 413 }, + [8] = { 55.9, 45.9, 130, 413 }, + [9] = { 56.9, 45.9, 130, 413 }, + [10] = { 56.2, 45.9, 130, 413 }, + [11] = { 56.3, 45.5, 130, 413 }, + [12] = { 58.3, 45.3, 130, 413 }, + [13] = { 58.2, 44.7, 130, 413 }, + [14] = { 42.9, 32.7, 130, 413 }, + [15] = { 44.7, 32, 130, 413 }, + [16] = { 43.5, 31.7, 130, 413 }, + [17] = { 44.2, 31.6, 130, 413 }, + [18] = { 43.5, 31.3, 130, 413 }, + [19] = { 41.2, 30.2, 130, 413 }, + [20] = { 40.8, 29.7, 130, 413 }, + [21] = { 42.1, 29.4, 130, 413 }, + [22] = { 38.8, 29.4, 130, 413 }, + [23] = { 43.6, 29.1, 130, 413 }, + [24] = { 40.5, 29, 130, 413 }, + [25] = { 43, 28.9, 130, 413 }, + [26] = { 41.3, 28.4, 130, 413 }, + [27] = { 46.6, 28.4, 130, 413 }, + [28] = { 44.1, 28, 130, 413 }, + [29] = { 39.6, 27.8, 130, 413 }, + [30] = { 46.5, 27.5, 130, 413 }, + [31] = { 45.3, 27.3, 130, 413 }, + [32] = { 39.2, 27, 130, 413 }, + [33] = { 39.6, 25.8, 130, 413 }, + [34] = { 41.1, 25.5, 130, 413 }, + [35] = { 48.8, 24.6, 130, 413 }, + [36] = { 40.7, 24.4, 130, 413 }, + [37] = { 48.3, 24.3, 130, 413 }, + [38] = { 39.7, 23.4, 130, 413 }, + [39] = { 37.9, 23.2, 130, 413 }, + [40] = { 41.4, 23.1, 130, 413 }, + [41] = { 38.7, 22, 130, 413 }, + [42] = { 50, 20.3, 130, 413 }, + [43] = { 51.5, 19.8, 130, 413 }, + [44] = { 49.8, 18.8, 130, 413 }, + [45] = { 48, 18, 130, 413 }, + [46] = { 52.8, 17.5, 130, 413 }, + [47] = { 49.6, 17, 130, 413 }, + [48] = { 51, 16.9, 130, 413 }, + [49] = { 50.7, 14.5, 130, 413 }, + }, + ["lvl"] = "12-13", + }, + [1780] = { + ["coords"] = { + [1] = { 34.2, 17.3, 130, 413 }, + [2] = { 35, 16.2, 130, 413 }, + [3] = { 35.7, 16.1, 130, 413 }, + [4] = { 37.2, 15.9, 130, 413 }, + [5] = { 34.2, 15.2, 130, 413 }, + [6] = { 35.7, 15, 130, 413 }, + [7] = { 36.4, 15, 130, 413 }, + [8] = { 35.1, 14.5, 130, 413 }, + [9] = { 35.6, 14.1, 130, 413 }, + [10] = { 36.1, 14.1, 130, 413 }, + [11] = { 35.9, 13.7, 130, 413 }, + [12] = { 35.5, 13.1, 130, 413 }, + [13] = { 34.8, 12.7, 130, 413 }, + [14] = { 34.9, 12.6, 130, 413 }, + [15] = { 35.4, 12.5, 130, 413 }, + }, + ["lvl"] = "12-13", + }, + [1781] = { + ["coords"] = { + [1] = { 23.6, 81.4, 85, 413 }, + [2] = { 22.9, 81.3, 85, 413 }, + [3] = { 23.4, 81.2, 85, 413 }, + [4] = { 22.6, 81.1, 85, 413 }, + [5] = { 23.5, 81, 85, 413 }, + [6] = { 22.7, 80.6, 85, 413 }, + [7] = { 24.2, 80.4, 85, 413 }, + [8] = { 23.7, 80.3, 85, 413 }, + [9] = { 24.1, 80.1, 85, 413 }, + [10] = { 22.8, 79.8, 85, 413 }, + [11] = { 23.6, 79.8, 85, 413 }, + [12] = { 24.1, 79.6, 85, 413 }, + [13] = { 23.1, 79.4, 85, 413 }, + [14] = { 35.5, 11.6, 130, 413 }, + [15] = { 35.1, 11.5, 130, 413 }, + [16] = { 35.4, 10.8, 130, 413 }, + [17] = { 35.5, 10.5, 130, 413 }, + [18] = { 35.3, 10.4, 130, 413 }, + [19] = { 35.1, 10.3, 130, 413 }, + [20] = { 34.7, 10.2, 130, 413 }, + [21] = { 35.3, 10.1, 130, 413 }, + [22] = { 34.5, 9.9, 130, 413 }, + [23] = { 35.1, 9.9, 130, 413 }, + [24] = { 34.2, 9.7, 130, 413 }, + [25] = { 35.2, 9.6, 130, 413 }, + [26] = { 34.3, 9.2, 130, 413 }, + [27] = { 36, 9, 130, 413 }, + [28] = { 35.4, 8.9, 130, 413 }, + [29] = { 35.9, 8.6, 130, 413 }, + [30] = { 34.5, 8.3, 130, 413 }, + [31] = { 35.3, 8.3, 130, 413 }, + [32] = { 34.8, 7.8, 130, 413 }, + }, + ["lvl"] = "13-14", + }, + [1782] = { + ["coords"] = { + [1] = { 56, 48.6, 130, 413 }, + [2] = { 57.2, 45.7, 130, 413 }, + [3] = { 57.3, 45.7, 130, 413 }, + [4] = { 58, 45.1, 130, 413 }, + [5] = { 57.5, 45, 130, 413 }, + [6] = { 58.2, 45, 130, 413 }, + [7] = { 57.8, 44.7, 130, 413 }, + [8] = { 59.4, 42.4, 130, 413 }, + [9] = { 58.6, 42.3, 130, 413 }, + [10] = { 60.4, 41.4, 130, 413 }, + [11] = { 60.4, 41.2, 130, 413 }, + [12] = { 58.7, 41.1, 130, 413 }, + [13] = { 43.5, 32.1, 130, 413 }, + [14] = { 43.2, 32, 130, 413 }, + [15] = { 43.3, 31.7, 130, 413 }, + [16] = { 43.1, 31.1, 130, 413 }, + [17] = { 43.7, 30.8, 130, 413 }, + [18] = { 39.7, 30.3, 130, 413 }, + [19] = { 45.5, 29.2, 130, 413 }, + [20] = { 38.3, 27.1, 130, 413 }, + [21] = { 40.2, 26.9, 130, 413 }, + [22] = { 38.4, 25.5, 130, 413 }, + [23] = { 38.8, 24.6, 130, 413 }, + [24] = { 37.6, 24.5, 130, 413 }, + [25] = { 36.8, 21.9, 130, 413 }, + }, + ["lvl"] = "13-14", + }, + [1783] = { + ["coords"] = { + [1] = { 47.4, 84.3, 28, 315 }, + [2] = { 48.1, 82.8, 28, 315 }, + [3] = { 48.9, 81.8, 28, 315 }, + [4] = { 47.4, 81.8, 28, 315 }, + [5] = { 49.3, 81.3, 28, 315 }, + [6] = { 54.7, 81, 28, 315 }, + [7] = { 54, 81, 28, 315 }, + [8] = { 54.5, 80.9, 28, 315 }, + [9] = { 48.1, 80.7, 28, 315 }, + [10] = { 50.8, 80.5, 28, 315 }, + [11] = { 47.3, 80.5, 28, 315 }, + [12] = { 54, 80.3, 28, 315 }, + [13] = { 53.9, 80.1, 28, 315 }, + [14] = { 54, 79.9, 28, 315 }, + [15] = { 54.6, 79.7, 28, 315 }, + [16] = { 48.1, 78.6, 28, 315 }, + [17] = { 49.5, 77.8, 28, 315 }, + [18] = { 49.4, 77.1, 28, 315 }, + [19] = { 49.6, 76.6, 28, 315 }, + [20] = { 50.8, 76.1, 28, 315 }, + [21] = { 50.4, 75.4, 28, 315 }, + [22] = { 37.3, 59.4, 28, 315 }, + [23] = { 36, 58.5, 28, 315 }, + [24] = { 37.6, 58.5, 28, 315 }, + [25] = { 37.1, 58.4, 28, 315 }, + [26] = { 37.7, 58.1, 28, 315 }, + [27] = { 36.6, 57.7, 28, 315 }, + [28] = { 38.6, 57.1, 28, 315 }, + [29] = { 35.6, 57, 28, 315 }, + [30] = { 36.8, 56.8, 28, 315 }, + [31] = { 38.8, 56.8, 28, 315 }, + [32] = { 37.6, 56.5, 28, 315 }, + [33] = { 38.3, 56.4, 28, 315 }, + [34] = { 39.1, 55.9, 28, 315 }, + [35] = { 35.9, 55.9, 28, 315 }, + [36] = { 36.6, 55.7, 28, 315 }, + [37] = { 37.8, 55.1, 28, 315 }, + [38] = { 37.4, 55.1, 28, 315 }, + [39] = { 38.1, 55.1, 28, 315 }, + [40] = { 38.9, 54.9, 28, 315 }, + [41] = { 36.5, 54.8, 28, 315 }, + [42] = { 36.9, 54.5, 28, 315 }, + [43] = { 39, 54.5, 28, 315 }, + [44] = { 38.3, 54.1, 28, 315 }, + [45] = { 38.1, 53.8, 28, 315 }, + [46] = { 85.8, 29.5, 36, 315 }, + }, + ["lvl"] = "50-51", + }, + [1784] = { + ["coords"] = { + [1] = { 53.9, 80.9, 28, 315 }, + [2] = { 54.8, 80.9, 28, 315 }, + [3] = { 54, 80.3, 28, 315 }, + [4] = { 54.7, 80.2, 28, 315 }, + [5] = { 53.9, 80, 28, 315 }, + [6] = { 54.8, 79.9, 28, 315 }, + [7] = { 54.6, 79.9, 28, 315 }, + [8] = { 53.9, 79.9, 28, 315 }, + [9] = { 54.7, 79.9, 28, 315 }, + [10] = { 54.2, 79.9, 28, 315 }, + [11] = { 54.8, 79.7, 28, 315 }, + [12] = { 54.1, 79.4, 28, 315 }, + [13] = { 37.6, 59.6, 28, 315 }, + [14] = { 38.5, 57.5, 28, 315 }, + [15] = { 36.2, 57.4, 28, 315 }, + [16] = { 37.4, 57.3, 28, 315 }, + [17] = { 36.9, 57.1, 28, 315 }, + [18] = { 35.6, 56.5, 28, 315 }, + [19] = { 37.4, 56.3, 28, 315 }, + [20] = { 35.7, 56.2, 28, 315 }, + [21] = { 38.8, 56, 28, 315 }, + [22] = { 38.7, 55, 28, 315 }, + [23] = { 39.3, 54.9, 28, 315 }, + [24] = { 37.7, 54.6, 28, 315 }, + [25] = { 37.1, 54.5, 28, 315 }, + [26] = { 36.6, 54.3, 28, 315 }, + [27] = { 38, 54.2, 28, 315 }, + [28] = { 37.5, 54.1, 28, 315 }, + [29] = { 38.5, 54, 28, 315 }, + }, + ["lvl"] = "51-52", + }, + [1785] = { + ["coords"] = { + [1] = { 45, 52, 28, 315 }, + [2] = { 45.8, 51.7, 28, 315 }, + [3] = { 46.6, 51.5, 28, 315 }, + [4] = { 47.5, 51.4, 28, 315 }, + [5] = { 48.1, 51.2, 28, 315 }, + [6] = { 45.2, 51.2, 28, 315 }, + [7] = { 47.7, 51.1, 28, 315 }, + [8] = { 47.9, 50.6, 28, 315 }, + [9] = { 45.9, 50.5, 28, 315 }, + [10] = { 47.1, 50.5, 28, 315 }, + [11] = { 47.3, 50.1, 28, 315 }, + [12] = { 47.7, 49.9, 28, 315 }, + [13] = { 47.4, 49.8, 28, 315 }, + [14] = { 46.1, 49.5, 28, 315 }, + [15] = { 47.3, 49.4, 28, 315 }, + }, + ["lvl"] = "52-54", + }, + [1787] = { + ["coords"] = { + [1] = { 45.7, 75, 28, 315 }, + [2] = { 42.6, 74.9, 28, 315 }, + [3] = { 44.3, 74.9, 28, 315 }, + [4] = { 41.1, 74.9, 28, 315 }, + [5] = { 41.8, 74.9, 28, 315 }, + [6] = { 43.4, 74.9, 28, 315 }, + [7] = { 46.7, 74.2, 28, 315 }, + [8] = { 45.8, 73.4, 28, 315 }, + [9] = { 41.7, 73.2, 28, 315 }, + [10] = { 41.5, 72.9, 28, 315 }, + [11] = { 44.7, 72.6, 28, 315 }, + [12] = { 47.2, 72.5, 28, 315 }, + [13] = { 45.7, 72.5, 28, 315 }, + [14] = { 39.4, 72.3, 28, 315 }, + [15] = { 46.2, 71.8, 28, 315 }, + [16] = { 47.1, 71.7, 28, 315 }, + [17] = { 39.9, 71.4, 28, 315 }, + [18] = { 42.6, 71.3, 28, 315 }, + [19] = { 48, 71.2, 28, 315 }, + [20] = { 44.5, 71.2, 28, 315 }, + [21] = { 38.8, 71.1, 28, 315 }, + [22] = { 46.6, 70.9, 28, 315 }, + [23] = { 39.5, 70.4, 28, 315 }, + [24] = { 45.9, 70.3, 28, 315 }, + [25] = { 48.8, 70.2, 28, 315 }, + [26] = { 38.7, 70.1, 28, 315 }, + [27] = { 42.7, 70, 28, 315 }, + [28] = { 44.7, 69.9, 28, 315 }, + [29] = { 44.5, 69.8, 28, 315 }, + [30] = { 48.6, 69.7, 28, 315 }, + [31] = { 44.5, 69.6, 28, 315 }, + [32] = { 45.9, 69.4, 28, 315 }, + [33] = { 41.8, 69.3, 28, 315 }, + [34] = { 46.6, 69.3, 28, 315 }, + [35] = { 45.9, 69.3, 28, 315 }, + [36] = { 48, 69.3, 28, 315 }, + [37] = { 41.1, 69.2, 28, 315 }, + [38] = { 42.6, 69.2, 28, 315 }, + [39] = { 45.9, 69.1, 28, 315 }, + [40] = { 47.3, 69.1, 28, 315 }, + [41] = { 40.2, 69.1, 28, 315 }, + [42] = { 48.8, 69.1, 28, 315 }, + [43] = { 44.5, 68.9, 28, 315 }, + [44] = { 44.5, 68.6, 28, 315 }, + [45] = { 44.6, 68.5, 28, 315 }, + [46] = { 41.8, 68.4, 28, 315 }, + [47] = { 38.7, 68.3, 28, 315 }, + [48] = { 41.9, 68.2, 28, 315 }, + [49] = { 49.5, 68.1, 28, 315 }, + [50] = { 50.4, 67.9, 28, 315 }, + [51] = { 39.9, 67.9, 28, 315 }, + [52] = { 39.6, 67.9, 28, 315 }, + [53] = { 39.7, 67.6, 28, 315 }, + [54] = { 45.7, 67.2, 28, 315 }, + [55] = { 44.3, 67.1, 28, 315 }, + [56] = { 42.7, 67.1, 28, 315 }, + [57] = { 45, 66.9, 28, 315 }, + [58] = { 49.6, 66.8, 28, 315 }, + [59] = { 48, 66.8, 28, 315 }, + [60] = { 42.2, 66.5, 28, 315 }, + [61] = { 46.8, 66.4, 28, 315 }, + [62] = { 41.5, 65.9, 28, 315 }, + [63] = { 49.5, 65.8, 28, 315 }, + [64] = { 44.3, 65.7, 28, 315 }, + [65] = { 40.2, 65.6, 28, 315 }, + [66] = { 45.1, 65.5, 28, 315 }, + [67] = { 48.2, 65.4, 28, 315 }, + [68] = { 42.8, 65.2, 28, 315 }, + [69] = { 44.4, 65, 28, 315 }, + [70] = { 49, 64.8, 28, 315 }, + [71] = { 44.1, 64.6, 28, 315 }, + [72] = { 41.8, 64.6, 28, 315 }, + [73] = { 46.6, 64.6, 28, 315 }, + [74] = { 43.5, 64.5, 28, 315 }, + [75] = { 43.8, 63.7, 28, 315 }, + [76] = { 43.2, 63.6, 28, 315 }, + [77] = { 49.5, 63.5, 28, 315 }, + [78] = { 47.4, 63.5, 28, 315 }, + [79] = { 48.8, 63.4, 28, 315 }, + [80] = { 48.1, 63.2, 28, 315 }, + [81] = { 42.7, 62.7, 28, 315 }, + [82] = { 45.8, 62.6, 28, 315 }, + [83] = { 47.5, 62.4, 28, 315 }, + [84] = { 43.9, 62.4, 28, 315 }, + [85] = { 41.8, 62, 28, 315 }, + [86] = { 45.5, 61.8, 28, 315 }, + [87] = { 47.2, 61.2, 28, 315 }, + [88] = { 45.7, 61, 28, 315 }, + }, + ["lvl"] = "54-55", + }, + [1788] = { + ["coords"] = { + [1] = { 40.4, 71.9, 28, 315 }, + [2] = { 46.7, 71.7, 28, 315 }, + [3] = { 45.5, 69.5, 28, 315 }, + [4] = { 45.6, 69, 28, 315 }, + [5] = { 42.7, 65.7, 28, 315 }, + [6] = { 43.8, 63.1, 28, 315 }, + }, + ["lvl"] = "56-57", + ["rnk"] = "1", + }, + [1789] = { + ["coords"] = { + [1] = { 45.7, 75, 28, 315 }, + [2] = { 42.6, 74.9, 28, 315 }, + [3] = { 44.3, 74.9, 28, 315 }, + [4] = { 41.1, 74.9, 28, 315 }, + [5] = { 41.8, 74.9, 28, 315 }, + [6] = { 43.4, 74.9, 28, 315 }, + [7] = { 46.7, 74.2, 28, 315 }, + [8] = { 45.8, 73.4, 28, 315 }, + [9] = { 41.7, 73.2, 28, 315 }, + [10] = { 41.5, 72.9, 28, 315 }, + [11] = { 44.7, 72.6, 28, 315 }, + [12] = { 47.2, 72.5, 28, 315 }, + [13] = { 45.7, 72.5, 28, 315 }, + [14] = { 39.4, 72.3, 28, 315 }, + [15] = { 46.2, 71.8, 28, 315 }, + [16] = { 47.1, 71.7, 28, 315 }, + [17] = { 39.9, 71.4, 28, 315 }, + [18] = { 42.6, 71.3, 28, 315 }, + [19] = { 48, 71.2, 28, 315 }, + [20] = { 44.5, 71.2, 28, 315 }, + [21] = { 38.8, 71.1, 28, 315 }, + [22] = { 46.6, 70.9, 28, 315 }, + [23] = { 39.5, 70.4, 28, 315 }, + [24] = { 45.9, 70.3, 28, 315 }, + [25] = { 48.8, 70.2, 28, 315 }, + [26] = { 38.7, 70.1, 28, 315 }, + [27] = { 42.7, 70, 28, 315 }, + [28] = { 44.7, 69.9, 28, 315 }, + [29] = { 44.5, 69.8, 28, 315 }, + [30] = { 48.6, 69.7, 28, 315 }, + [31] = { 44.5, 69.6, 28, 315 }, + [32] = { 45.9, 69.4, 28, 315 }, + [33] = { 41.8, 69.3, 28, 315 }, + [34] = { 46.6, 69.3, 28, 315 }, + [35] = { 45.9, 69.3, 28, 315 }, + [36] = { 48, 69.3, 28, 315 }, + [37] = { 41.1, 69.2, 28, 315 }, + [38] = { 42.6, 69.2, 28, 315 }, + [39] = { 45.9, 69.1, 28, 315 }, + [40] = { 47.3, 69.1, 28, 315 }, + [41] = { 40.2, 69.1, 28, 315 }, + [42] = { 48.8, 69.1, 28, 315 }, + [43] = { 44.5, 68.9, 28, 315 }, + [44] = { 44.5, 68.6, 28, 315 }, + [45] = { 44.6, 68.5, 28, 315 }, + [46] = { 41.8, 68.4, 28, 315 }, + [47] = { 38.7, 68.3, 28, 315 }, + [48] = { 41.9, 68.2, 28, 315 }, + [49] = { 49.5, 68.1, 28, 315 }, + [50] = { 50.4, 67.9, 28, 315 }, + [51] = { 39.9, 67.9, 28, 315 }, + [52] = { 39.6, 67.9, 28, 315 }, + [53] = { 39.7, 67.6, 28, 315 }, + [54] = { 45.7, 67.2, 28, 315 }, + [55] = { 44.3, 67.1, 28, 315 }, + [56] = { 42.7, 67.1, 28, 315 }, + [57] = { 45, 66.9, 28, 315 }, + [58] = { 49.6, 66.8, 28, 315 }, + [59] = { 48, 66.8, 28, 315 }, + [60] = { 42.2, 66.5, 28, 315 }, + [61] = { 46.8, 66.4, 28, 315 }, + [62] = { 41.5, 65.9, 28, 315 }, + [63] = { 49.5, 65.8, 28, 315 }, + [64] = { 44.3, 65.7, 28, 315 }, + [65] = { 40.2, 65.6, 28, 315 }, + [66] = { 45.1, 65.5, 28, 315 }, + [67] = { 48.2, 65.4, 28, 315 }, + [68] = { 42.8, 65.2, 28, 315 }, + [69] = { 44.4, 65, 28, 315 }, + [70] = { 49, 64.8, 28, 315 }, + [71] = { 44.1, 64.6, 28, 315 }, + [72] = { 41.8, 64.6, 28, 315 }, + [73] = { 46.6, 64.6, 28, 315 }, + [74] = { 43.5, 64.5, 28, 315 }, + [75] = { 43.8, 63.7, 28, 315 }, + [76] = { 43.2, 63.6, 28, 315 }, + [77] = { 49.5, 63.5, 28, 315 }, + [78] = { 47.4, 63.5, 28, 315 }, + [79] = { 48.8, 63.4, 28, 315 }, + [80] = { 48.1, 63.2, 28, 315 }, + [81] = { 42.7, 62.7, 28, 315 }, + [82] = { 45.8, 62.6, 28, 315 }, + [83] = { 47.5, 62.4, 28, 315 }, + [84] = { 43.9, 62.4, 28, 315 }, + [85] = { 41.8, 62, 28, 315 }, + [86] = { 45.5, 61.8, 28, 315 }, + [87] = { 47.2, 61.2, 28, 315 }, + [88] = { 45.7, 61, 28, 315 }, + }, + ["lvl"] = "55-56", + }, + [1791] = { + ["coords"] = { + [1] = { 49.6, 82.8, 28, 315 }, + [2] = { 50.1, 81.1, 28, 315 }, + [3] = { 54.8, 81, 28, 315 }, + [4] = { 54.7, 81, 28, 315 }, + [5] = { 54, 80.9, 28, 315 }, + [6] = { 54, 80.6, 28, 315 }, + [7] = { 49.9, 80.6, 28, 315 }, + [8] = { 50.4, 80.5, 28, 315 }, + [9] = { 53.8, 80.4, 28, 315 }, + [10] = { 48.7, 80.4, 28, 315 }, + [11] = { 54.1, 80.2, 28, 315 }, + [12] = { 48.9, 80.2, 28, 315 }, + [13] = { 53.9, 80.1, 28, 315 }, + [14] = { 50, 80.1, 28, 315 }, + [15] = { 48.4, 80, 28, 315 }, + [16] = { 50.4, 80, 28, 315 }, + [17] = { 48.8, 79.5, 28, 315 }, + [18] = { 49.9, 78, 28, 315 }, + [19] = { 50.1, 77.7, 28, 315 }, + [20] = { 49.8, 77.6, 28, 315 }, + [21] = { 49.9, 77.1, 28, 315 }, + [22] = { 50.3, 76.9, 28, 315 }, + [23] = { 51.1, 76.7, 28, 315 }, + [24] = { 49.9, 76.7, 28, 315 }, + [25] = { 51.2, 76.4, 28, 315 }, + [26] = { 49.9, 76.2, 28, 315 }, + [27] = { 49.5, 76, 28, 315 }, + [28] = { 50.9, 75.7, 28, 315 }, + [29] = { 50.3, 75, 28, 315 }, + [30] = { 37.6, 59.2, 28, 315 }, + [31] = { 37.1, 57.6, 28, 315 }, + [32] = { 38.9, 57.3, 28, 315 }, + [33] = { 37.6, 56.9, 28, 315 }, + [34] = { 36, 56.5, 28, 315 }, + [35] = { 37.1, 56.2, 28, 315 }, + [36] = { 38.5, 55.6, 28, 315 }, + [37] = { 39.1, 55.4, 28, 315 }, + [38] = { 38.9, 55.2, 28, 315 }, + [39] = { 36.7, 54.9, 28, 315 }, + [40] = { 38.5, 54.6, 28, 315 }, + [41] = { 38.2, 54.6, 28, 315 }, + [42] = { 37.1, 54.1, 28, 315 }, + [43] = { 37, 54, 28, 315 }, + [44] = { 37.8, 54, 28, 315 }, + }, + ["lvl"] = "50-52", + }, + [1793] = { + ["coords"] = { + [1] = { 53.3, 68, 28, 315 }, + [2] = { 53.8, 67.9, 28, 315 }, + [3] = { 52.8, 67.9, 28, 315 }, + [4] = { 53.6, 67.5, 28, 315 }, + [5] = { 53, 67.2, 28, 315 }, + [6] = { 53.4, 67, 28, 315 }, + [7] = { 54.1, 67, 28, 315 }, + [8] = { 52.6, 66.9, 28, 315 }, + [9] = { 52, 66.7, 28, 315 }, + [10] = { 55.3, 66.5, 28, 315 }, + [11] = { 53.3, 66.2, 28, 315 }, + [12] = { 54.6, 66.1, 28, 315 }, + [13] = { 52.7, 65.9, 28, 315 }, + [14] = { 54, 65.8, 28, 315 }, + [15] = { 54.6, 65.6, 28, 315 }, + [16] = { 51.9, 65.4, 28, 315 }, + [17] = { 53.8, 65.3, 28, 315 }, + [18] = { 53.2, 65.2, 28, 315 }, + [19] = { 54.3, 64.8, 28, 315 }, + [20] = { 52.3, 64.7, 28, 315 }, + [21] = { 53.2, 64.6, 28, 315 }, + [22] = { 52.7, 64.3, 28, 315 }, + [23] = { 52.2, 64, 28, 315 }, + [24] = { 53, 63.7, 28, 315 }, + [25] = { 53.3, 63.5, 28, 315 }, + [26] = { 54, 63, 28, 315 }, + }, + ["lvl"] = "54-55", + }, + [1794] = { + ["coords"] = { + [1] = { 44.9, 75, 28, 315 }, + [2] = { 46.4, 74.8, 28, 315 }, + [3] = { 41.8, 74.1, 28, 315 }, + [4] = { 40.3, 74, 28, 315 }, + [5] = { 43.5, 74, 28, 315 }, + [6] = { 42.6, 73.9, 28, 315 }, + [7] = { 44.8, 73.8, 28, 315 }, + [8] = { 41, 73.7, 28, 315 }, + [9] = { 44.1, 73.7, 28, 315 }, + [10] = { 46.2, 73.3, 28, 315 }, + [11] = { 42.6, 72.8, 28, 315 }, + [12] = { 40.1, 72.5, 28, 315 }, + [13] = { 43.4, 72.5, 28, 315 }, + [14] = { 42.1, 72.4, 28, 315 }, + [15] = { 40.8, 72.4, 28, 315 }, + [16] = { 44, 72.4, 28, 315 }, + [17] = { 46.7, 72.3, 28, 315 }, + [18] = { 42.9, 72.1, 28, 315 }, + [19] = { 43.4, 71.7, 28, 315 }, + [20] = { 45.6, 71.7, 28, 315 }, + [21] = { 40.8, 71.5, 28, 315 }, + [22] = { 41.9, 71.3, 28, 315 }, + [23] = { 44.9, 71, 28, 315 }, + [24] = { 41, 70.6, 28, 315 }, + [25] = { 42.5, 70.6, 28, 315 }, + [26] = { 37.9, 70.5, 28, 315 }, + [27] = { 47.4, 70.4, 28, 315 }, + [28] = { 41.8, 70.3, 28, 315 }, + [29] = { 48, 70.3, 28, 315 }, + [30] = { 40.4, 70.3, 28, 315 }, + [31] = { 45.1, 69.9, 28, 315 }, + [32] = { 41.5, 69.9, 28, 315 }, + [33] = { 44.6, 69.7, 28, 315 }, + [34] = { 38.7, 69.4, 28, 315 }, + [35] = { 39.5, 69.4, 28, 315 }, + [36] = { 45.8, 69.3, 28, 315 }, + [37] = { 49.6, 69.1, 28, 315 }, + [38] = { 42.1, 69, 28, 315 }, + [39] = { 45.4, 68.8, 28, 315 }, + [40] = { 44.6, 68.7, 28, 315 }, + [41] = { 42.7, 68.6, 28, 315 }, + [42] = { 40.6, 68.3, 28, 315 }, + [43] = { 44.1, 68.3, 28, 315 }, + [44] = { 46.1, 68.3, 28, 315 }, + [45] = { 45.1, 68.2, 28, 315 }, + [46] = { 49, 68.1, 28, 315 }, + [47] = { 48, 68.1, 28, 315 }, + [48] = { 38, 68, 28, 315 }, + [49] = { 47.4, 67.9, 28, 315 }, + [50] = { 42.6, 67.9, 28, 315 }, + [51] = { 45.1, 67.8, 28, 315 }, + [52] = { 41.1, 67.6, 28, 315 }, + [53] = { 40.2, 67, 28, 315 }, + [54] = { 38.7, 66.9, 28, 315 }, + [55] = { 39.6, 66.8, 28, 315 }, + [56] = { 50.5, 66.7, 28, 315 }, + [57] = { 40.7, 66.4, 28, 315 }, + [58] = { 40.9, 66.4, 28, 315 }, + [59] = { 42.9, 66.1, 28, 315 }, + [60] = { 50.3, 65.8, 28, 315 }, + [61] = { 45.8, 65.8, 28, 315 }, + [62] = { 46.5, 65.8, 28, 315 }, + [63] = { 48.7, 65.6, 28, 315 }, + [64] = { 42.2, 65.4, 28, 315 }, + [65] = { 48.8, 65.2, 28, 315 }, + [66] = { 49.5, 64.8, 28, 315 }, + [67] = { 45, 64.6, 28, 315 }, + [68] = { 47.9, 64.5, 28, 315 }, + [69] = { 47.3, 64.5, 28, 315 }, + [70] = { 45.8, 63.5, 28, 315 }, + [71] = { 44.5, 63.4, 28, 315 }, + [72] = { 46.6, 63.4, 28, 315 }, + [73] = { 43.4, 63, 28, 315 }, + [74] = { 48.6, 62.5, 28, 315 }, + [75] = { 46.5, 62.1, 28, 315 }, + [76] = { 48.3, 62, 28, 315 }, + [77] = { 44.9, 62, 28, 315 }, + [78] = { 45.8, 61.9, 28, 315 }, + [79] = { 43.3, 61.1, 28, 315 }, + }, + ["lvl"] = "54-55", + }, + [1795] = { + ["coords"] = { + [1] = { 44.9, 75, 28, 315 }, + [2] = { 46.4, 74.8, 28, 315 }, + [3] = { 41.8, 74.1, 28, 315 }, + [4] = { 40.3, 74, 28, 315 }, + [5] = { 43.5, 74, 28, 315 }, + [6] = { 42.6, 73.9, 28, 315 }, + [7] = { 44.8, 73.8, 28, 315 }, + [8] = { 41, 73.7, 28, 315 }, + [9] = { 44.1, 73.7, 28, 315 }, + [10] = { 46.2, 73.3, 28, 315 }, + [11] = { 42.6, 72.8, 28, 315 }, + [12] = { 40.1, 72.5, 28, 315 }, + [13] = { 43.4, 72.5, 28, 315 }, + [14] = { 42.1, 72.4, 28, 315 }, + [15] = { 40.8, 72.4, 28, 315 }, + [16] = { 44, 72.4, 28, 315 }, + [17] = { 46.7, 72.3, 28, 315 }, + [18] = { 42.9, 72.1, 28, 315 }, + [19] = { 43.4, 71.7, 28, 315 }, + [20] = { 45.6, 71.7, 28, 315 }, + [21] = { 40.8, 71.5, 28, 315 }, + [22] = { 41.9, 71.3, 28, 315 }, + [23] = { 44.9, 71, 28, 315 }, + [24] = { 41, 70.6, 28, 315 }, + [25] = { 42.5, 70.6, 28, 315 }, + [26] = { 37.9, 70.5, 28, 315 }, + [27] = { 47.4, 70.4, 28, 315 }, + [28] = { 41.8, 70.3, 28, 315 }, + [29] = { 48, 70.3, 28, 315 }, + [30] = { 40.4, 70.3, 28, 315 }, + [31] = { 45.1, 69.9, 28, 315 }, + [32] = { 41.5, 69.9, 28, 315 }, + [33] = { 44.6, 69.7, 28, 315 }, + [34] = { 38.7, 69.4, 28, 315 }, + [35] = { 39.5, 69.4, 28, 315 }, + [36] = { 45.8, 69.3, 28, 315 }, + [37] = { 49.6, 69.1, 28, 315 }, + [38] = { 42.1, 69, 28, 315 }, + [39] = { 45.4, 68.8, 28, 315 }, + [40] = { 44.6, 68.7, 28, 315 }, + [41] = { 42.7, 68.6, 28, 315 }, + [42] = { 40.6, 68.3, 28, 315 }, + [43] = { 44.1, 68.3, 28, 315 }, + [44] = { 46.1, 68.3, 28, 315 }, + [45] = { 45.1, 68.2, 28, 315 }, + [46] = { 49, 68.1, 28, 315 }, + [47] = { 48, 68.1, 28, 315 }, + [48] = { 38, 68, 28, 315 }, + [49] = { 47.4, 67.9, 28, 315 }, + [50] = { 42.6, 67.9, 28, 315 }, + [51] = { 45.1, 67.8, 28, 315 }, + [52] = { 41.1, 67.6, 28, 315 }, + [53] = { 40.2, 67, 28, 315 }, + [54] = { 38.7, 66.9, 28, 315 }, + [55] = { 39.6, 66.8, 28, 315 }, + [56] = { 50.5, 66.7, 28, 315 }, + [57] = { 40.7, 66.4, 28, 315 }, + [58] = { 40.9, 66.4, 28, 315 }, + [59] = { 42.9, 66.1, 28, 315 }, + [60] = { 50.3, 65.8, 28, 315 }, + [61] = { 45.8, 65.8, 28, 315 }, + [62] = { 46.5, 65.8, 28, 315 }, + [63] = { 48.7, 65.6, 28, 315 }, + [64] = { 42.2, 65.4, 28, 315 }, + [65] = { 48.8, 65.2, 28, 315 }, + [66] = { 49.5, 64.8, 28, 315 }, + [67] = { 45, 64.6, 28, 315 }, + [68] = { 47.9, 64.5, 28, 315 }, + [69] = { 47.3, 64.5, 28, 315 }, + [70] = { 45.8, 63.5, 28, 315 }, + [71] = { 44.5, 63.4, 28, 315 }, + [72] = { 46.6, 63.4, 28, 315 }, + [73] = { 43.4, 63, 28, 315 }, + [74] = { 48.6, 62.5, 28, 315 }, + [75] = { 46.5, 62.1, 28, 315 }, + [76] = { 48.3, 62, 28, 315 }, + [77] = { 44.9, 62, 28, 315 }, + [78] = { 45.8, 61.9, 28, 315 }, + [79] = { 43.3, 61.1, 28, 315 }, + }, + ["lvl"] = "55-56", + }, + [1796] = { + ["coords"] = { + [1] = { 53.3, 68, 28, 315 }, + [2] = { 53.8, 67.9, 28, 315 }, + [3] = { 52.8, 67.9, 28, 315 }, + [4] = { 53.6, 67.5, 28, 315 }, + [5] = { 53, 67.2, 28, 315 }, + [6] = { 53.4, 67, 28, 315 }, + [7] = { 54.1, 67, 28, 315 }, + [8] = { 52.6, 66.9, 28, 315 }, + [9] = { 52, 66.7, 28, 315 }, + [10] = { 55.3, 66.5, 28, 315 }, + [11] = { 53.3, 66.2, 28, 315 }, + [12] = { 54.6, 66.1, 28, 315 }, + [13] = { 52.7, 65.9, 28, 315 }, + [14] = { 54, 65.8, 28, 315 }, + [15] = { 54.6, 65.6, 28, 315 }, + [16] = { 51.9, 65.4, 28, 315 }, + [17] = { 53.8, 65.3, 28, 315 }, + [18] = { 53.2, 65.2, 28, 315 }, + [19] = { 54.3, 64.8, 28, 315 }, + [20] = { 52.3, 64.7, 28, 315 }, + [21] = { 53.2, 64.6, 28, 315 }, + [22] = { 52.7, 64.3, 28, 315 }, + [23] = { 52.2, 64, 28, 315 }, + [24] = { 53, 63.7, 28, 315 }, + [25] = { 53.3, 63.5, 28, 315 }, + [26] = { 54, 63, 28, 315 }, + }, + ["lvl"] = "55-56", + }, + [1797] = { + ["coords"] = { + [1] = { 55.5, 71, 130, 413 }, + [2] = { 49.4, 70.3, 130, 413 }, + [3] = { 54.7, 69.5, 130, 413 }, + [4] = { 50.2, 69.4, 130, 413 }, + [5] = { 50.9, 67.9, 130, 413 }, + [6] = { 50.5, 67.2, 130, 413 }, + [7] = { 56.1, 67.1, 130, 413 }, + [8] = { 52.9, 67.1, 130, 413 }, + [9] = { 51.6, 66.7, 130, 413 }, + [10] = { 55.4, 65, 130, 413 }, + [11] = { 53.4, 65, 130, 413 }, + [12] = { 51.6, 62.5, 130, 413 }, + [13] = { 52.5, 61.3, 130, 413 }, + [14] = { 53.1, 60.6, 130, 413 }, + [15] = { 51.6, 59.1, 130, 413 }, + [16] = { 51.8, 58.1, 130, 413 }, + [17] = { 54.2, 56.2, 130, 413 }, + [18] = { 51.3, 55.3, 130, 413 }, + [19] = { 53.2, 54, 130, 413 }, + [20] = { 51.5, 53.9, 130, 413 }, + [21] = { 51.5, 52.8, 130, 413 }, + [22] = { 52.9, 51.8, 130, 413 }, + [23] = { 55.6, 51.7, 130, 413 }, + [24] = { 42.1, 21.7, 130, 413 }, + [25] = { 36.7, 21.5, 130, 413 }, + [26] = { 35.2, 19.6, 130, 413 }, + [27] = { 42.5, 19.5, 130, 413 }, + [28] = { 43.6, 18.8, 130, 413 }, + [29] = { 46, 18.3, 130, 413 }, + [30] = { 41.2, 18.2, 130, 413 }, + [31] = { 42.5, 18.1, 130, 413 }, + [32] = { 47, 18.1, 130, 413 }, + [33] = { 41.6, 18, 130, 413 }, + [34] = { 37.1, 17.7, 130, 413 }, + [35] = { 37.4, 17.2, 130, 413 }, + [36] = { 35.4, 17.2, 130, 413 }, + [37] = { 44.4, 17, 130, 413 }, + [38] = { 37.7, 16.6, 130, 413 }, + [39] = { 39.9, 16.5, 130, 413 }, + [40] = { 45.3, 16.1, 130, 413 }, + [41] = { 39.1, 15.9, 130, 413 }, + [42] = { 37.9, 15.6, 130, 413 }, + [43] = { 34.5, 15.3, 130, 413 }, + [44] = { 39.7, 14.9, 130, 413 }, + [45] = { 39, 13.5, 130, 413 }, + }, + ["lvl"] = "12-13", + }, + [1798] = "_", + [1800] = { + ["coords"] = {}, + ["lvl"] = "58", + ["rnk"] = "1", + }, + [1801] = { + ["coords"] = {}, + ["lvl"] = "55", + ["rnk"] = "1", + }, + [1802] = { + ["coords"] = { + [1] = { 62.8, 61.2, 28, 315 }, + [2] = { 63.1, 61.2, 28, 315 }, + [3] = { 62.4, 60.9, 28, 315 }, + [4] = { 63.3, 60.8, 28, 315 }, + [5] = { 63, 60.6, 28, 315 }, + [6] = { 62.1, 60.6, 28, 315 }, + [7] = { 62.8, 60.4, 28, 315 }, + [8] = { 62.5, 60.3, 28, 315 }, + [9] = { 62.2, 60.2, 28, 315 }, + [10] = { 62.8, 60.1, 28, 315 }, + [11] = { 64.8, 60, 28, 315 }, + [12] = { 63.1, 59.7, 28, 315 }, + [13] = { 64.8, 59.7, 28, 315 }, + [14] = { 65.1, 59.7, 28, 315 }, + [15] = { 62.2, 59.6, 28, 315 }, + [16] = { 64.6, 59.5, 28, 315 }, + [17] = { 64.6, 59.4, 28, 315 }, + [18] = { 64.9, 59.3, 28, 315 }, + [19] = { 64.7, 59.3, 28, 315 }, + [20] = { 64.7, 59.2, 28, 315 }, + [21] = { 64.4, 59.2, 28, 315 }, + [22] = { 61.8, 59.1, 28, 315 }, + [23] = { 65.1, 59.1, 28, 315 }, + [24] = { 64.7, 59, 28, 315 }, + [25] = { 63.3, 59, 28, 315 }, + [26] = { 65, 59, 28, 315 }, + [27] = { 62.4, 58.9, 28, 315 }, + [28] = { 62.7, 58.9, 28, 315 }, + [29] = { 65.1, 58.6, 28, 315 }, + [30] = { 64.4, 58.6, 28, 315 }, + [31] = { 63.6, 58.6, 28, 315 }, + [32] = { 64.8, 58.5, 28, 315 }, + [33] = { 62.1, 58.3, 28, 315 }, + [34] = { 62.9, 58.3, 28, 315 }, + [35] = { 60.7, 58.3, 28, 315 }, + [36] = { 61.7, 58.2, 28, 315 }, + [37] = { 62.7, 58, 28, 315 }, + [38] = { 64.5, 58, 28, 315 }, + [39] = { 64.3, 57.9, 28, 315 }, + [40] = { 62.5, 57.9, 28, 315 }, + [41] = { 60.8, 57.9, 28, 315 }, + [42] = { 63.5, 57.7, 28, 315 }, + [43] = { 61.8, 57.7, 28, 315 }, + [44] = { 64.7, 57.7, 28, 315 }, + [45] = { 64, 57.6, 28, 315 }, + [46] = { 64.4, 57.5, 28, 315 }, + [47] = { 64.6, 57.3, 28, 315 }, + [48] = { 63.8, 57.1, 28, 315 }, + [49] = { 62.8, 57, 28, 315 }, + [50] = { 64.1, 56.8, 28, 315 }, + [51] = { 64.4, 56.7, 28, 315 }, + [52] = { 63.4, 56.6, 28, 315 }, + [53] = { 64.2, 56.4, 28, 315 }, + [54] = { 63.9, 56.4, 28, 315 }, + [55] = { 63.2, 56.3, 28, 315 }, + [56] = { 64, 56.2, 28, 315 }, + [57] = { 63.3, 56, 28, 315 }, + [58] = { 64.2, 55.9, 28, 315 }, + [59] = { 63.5, 55.9, 28, 315 }, + [60] = { 63, 55.8, 28, 315 }, + [61] = { 63.9, 55.7, 28, 315 }, + [62] = { 63.2, 55.6, 28, 315 }, + }, + ["lvl"] = "56-58", + }, + [1804] = { + ["coords"] = { + [1] = { 62.8, 61.2, 28, 315 }, + [2] = { 63.1, 61.2, 28, 315 }, + [3] = { 62.4, 60.9, 28, 315 }, + [4] = { 63.3, 60.8, 28, 315 }, + [5] = { 63, 60.6, 28, 315 }, + [6] = { 62.1, 60.6, 28, 315 }, + [7] = { 62.8, 60.4, 28, 315 }, + [8] = { 62.5, 60.3, 28, 315 }, + [9] = { 62.2, 60.2, 28, 315 }, + [10] = { 62.8, 60.1, 28, 315 }, + [11] = { 64.8, 60, 28, 315 }, + [12] = { 63.1, 59.7, 28, 315 }, + [13] = { 64.8, 59.7, 28, 315 }, + [14] = { 65.1, 59.7, 28, 315 }, + [15] = { 62.2, 59.6, 28, 315 }, + [16] = { 64.6, 59.5, 28, 315 }, + [17] = { 64.6, 59.4, 28, 315 }, + [18] = { 64.9, 59.3, 28, 315 }, + [19] = { 64.7, 59.3, 28, 315 }, + [20] = { 64.7, 59.2, 28, 315 }, + [21] = { 64.4, 59.2, 28, 315 }, + [22] = { 61.8, 59.1, 28, 315 }, + [23] = { 65.1, 59.1, 28, 315 }, + [24] = { 64.7, 59, 28, 315 }, + [25] = { 63.3, 59, 28, 315 }, + [26] = { 65, 59, 28, 315 }, + [27] = { 62.4, 58.9, 28, 315 }, + [28] = { 62.7, 58.9, 28, 315 }, + [29] = { 65.1, 58.6, 28, 315 }, + [30] = { 64.4, 58.6, 28, 315 }, + [31] = { 63.6, 58.6, 28, 315 }, + [32] = { 64.8, 58.5, 28, 315 }, + [33] = { 62.1, 58.3, 28, 315 }, + [34] = { 62.9, 58.3, 28, 315 }, + [35] = { 60.7, 58.3, 28, 315 }, + [36] = { 61.7, 58.2, 28, 315 }, + [37] = { 62.7, 58, 28, 315 }, + [38] = { 64.5, 58, 28, 315 }, + [39] = { 64.3, 57.9, 28, 315 }, + [40] = { 62.5, 57.9, 28, 315 }, + [41] = { 60.8, 57.9, 28, 315 }, + [42] = { 63.5, 57.7, 28, 315 }, + [43] = { 61.8, 57.7, 28, 315 }, + [44] = { 64.7, 57.7, 28, 315 }, + [45] = { 64, 57.6, 28, 315 }, + [46] = { 64.4, 57.5, 28, 315 }, + [47] = { 64.6, 57.3, 28, 315 }, + [48] = { 63.8, 57.1, 28, 315 }, + [49] = { 62.8, 57, 28, 315 }, + [50] = { 64.1, 56.8, 28, 315 }, + [51] = { 64.4, 56.7, 28, 315 }, + [52] = { 63.4, 56.6, 28, 315 }, + [53] = { 64.2, 56.4, 28, 315 }, + [54] = { 63.9, 56.4, 28, 315 }, + [55] = { 63.2, 56.3, 28, 315 }, + [56] = { 64, 56.2, 28, 315 }, + [57] = { 63.3, 56, 28, 315 }, + [58] = { 64.2, 55.9, 28, 315 }, + [59] = { 63.5, 55.9, 28, 315 }, + [60] = { 63, 55.8, 28, 315 }, + [61] = { 63.9, 55.7, 28, 315 }, + [62] = { 63.2, 55.6, 28, 315 }, + }, + ["lvl"] = "56-57", + }, + [1806] = { + ["coords"] = { + [1] = { 66.1, 42.2, 28, 315 }, + [2] = { 65, 41.3, 28, 315 }, + [3] = { 66.6, 41, 28, 315 }, + [4] = { 65.9, 40.3, 28, 315 }, + [5] = { 65.4, 39.6, 28, 315 }, + [6] = { 64.9, 38.7, 28, 315 }, + [7] = { 64.3, 38.4, 28, 315 }, + [8] = { 65.8, 38, 28, 315 }, + [9] = { 63.8, 37.8, 28, 315 }, + [10] = { 63.2, 37.5, 28, 315 }, + [11] = { 63.5, 37.2, 28, 315 }, + [12] = { 63.5, 36.3, 28, 315 }, + }, + ["lvl"] = "54-55", + }, + [1808] = { + ["coords"] = { + [1] = { 61.8, 37.4, 28, 315 }, + [2] = { 61.5, 36.7, 28, 315 }, + [3] = { 63.9, 36, 28, 315 }, + [4] = { 62.5, 35.9, 28, 315 }, + [5] = { 63.8, 35.9, 28, 315 }, + [6] = { 63.4, 35.8, 28, 315 }, + [7] = { 61.3, 34.9, 28, 315 }, + [8] = { 61.9, 34.9, 28, 315 }, + [9] = { 64.6, 34.2, 28, 315 }, + [10] = { 64.5, 33.4, 28, 315 }, + }, + ["lvl"] = "55-56", + }, + [1810] = "_", + [1811] = "_", + [1812] = { + ["coords"] = { + [1] = { 66.6, 39.1, 28, 315 }, + [2] = { 62.1, 37.6, 28, 315 }, + [3] = { 62.5, 37.5, 28, 315 }, + [4] = { 61.4, 36.9, 28, 315 }, + [5] = { 64.5, 36.7, 28, 315 }, + [6] = { 61.2, 36.2, 28, 315 }, + [7] = { 61.2, 35.6, 28, 315 }, + [8] = { 61.8, 35.5, 28, 315 }, + [9] = { 62.4, 35.4, 28, 315 }, + [10] = { 62.5, 35, 28, 315 }, + [11] = { 64, 34.4, 28, 315 }, + [12] = { 62, 33.2, 28, 315 }, + [13] = { 63.8, 33.2, 28, 315 }, + [14] = { 63.6, 32.6, 28, 315 }, + [15] = { 62.3, 32.3, 28, 315 }, + }, + ["lvl"] = "55-56", + }, + [1815] = { + ["coords"] = { + [1] = { 36.3, 68, 28, 315 }, + [2] = { 37.1, 66.9, 28, 315 }, + [3] = { 33.4, 65.8, 28, 315 }, + [4] = { 36.3, 65.6, 28, 315 }, + [5] = { 37.9, 65.5, 28, 315 }, + [6] = { 33.4, 63.6, 28, 315 }, + [7] = { 36.5, 63.6, 28, 315 }, + [8] = { 34.9, 63.5, 28, 315 }, + [9] = { 37.9, 63.2, 28, 315 }, + [10] = { 39.4, 62.7, 28, 315 }, + [11] = { 39, 62.3, 28, 315 }, + [12] = { 37.2, 62.3, 28, 315 }, + [13] = { 34.2, 62.1, 28, 315 }, + [14] = { 31.9, 61.7, 28, 315 }, + [15] = { 29.3, 61.6, 28, 315 }, + [16] = { 31.3, 60.1, 28, 315 }, + [17] = { 28.7, 58.9, 28, 315 }, + [18] = { 34.8, 58.8, 28, 315 }, + [19] = { 32.6, 57.6, 28, 315 }, + [20] = { 31.8, 56.6, 28, 315 }, + [21] = { 33.4, 56.2, 28, 315 }, + [22] = { 32.7, 55.2, 28, 315 }, + [23] = { 31, 55.2, 28, 315 }, + [24] = { 30.2, 54.4, 28, 315 }, + [25] = { 34.8, 54.2, 28, 315 }, + [26] = { 31.7, 54.1, 28, 315 }, + [27] = { 33.9, 52.8, 28, 315 }, + [28] = { 88.2, 74.3, 85, 315 }, + [29] = { 85.8, 74.2, 85, 315 }, + [30] = { 87.7, 72.9, 85, 315 }, + [31] = { 85.2, 71.7, 85, 315 }, + [32] = { 89, 70.4, 85, 315 }, + [33] = { 88.2, 69.5, 85, 315 }, + [34] = { 89.7, 69.1, 85, 315 }, + [35] = { 89, 68.2, 85, 315 }, + [36] = { 87.4, 68.1, 85, 315 }, + [37] = { 86.6, 67.4, 85, 315 }, + [38] = { 91, 67.2, 85, 315 }, + [39] = { 88, 67.1, 85, 315 }, + [40] = { 90.2, 65.8, 85, 315 }, + }, + ["lvl"] = "51-52", + }, + [1816] = { + ["coords"] = { + [1] = { 55.2, 64.5, 28, 315 }, + [2] = { 55.8, 63.6, 28, 315 }, + [3] = { 58.2, 62.1, 28, 315 }, + [4] = { 56.7, 62.1, 28, 315 }, + [5] = { 59, 61, 28, 315 }, + [6] = { 58, 60.1, 28, 315 }, + [7] = { 53.4, 60.1, 28, 315 }, + [8] = { 55.8, 58.6, 28, 315 }, + [9] = { 57.7, 58.4, 28, 315 }, + [10] = { 52.5, 58.4, 28, 315 }, + [11] = { 66.6, 56.4, 28, 315 }, + [12] = { 67.4, 55.3, 28, 315 }, + [13] = { 65.5, 55.1, 28, 315 }, + [14] = { 52.2, 54.3, 28, 315 }, + [15] = { 60.4, 54.1, 28, 315 }, + [16] = { 65.7, 53.6, 28, 315 }, + [17] = { 57.1, 53.5, 28, 315 }, + [18] = { 66.7, 53.4, 28, 315 }, + [19] = { 65, 53, 28, 315 }, + [20] = { 55.4, 53, 28, 315 }, + [21] = { 57.9, 53, 28, 315 }, + [22] = { 60.5, 51.9, 28, 315 }, + [23] = { 54.4, 51.9, 28, 315 }, + [24] = { 61.9, 51.8, 28, 315 }, + [25] = { 59, 51.6, 28, 315 }, + [26] = { 57.1, 51, 28, 315 }, + [27] = { 56.6, 50.7, 28, 315 }, + [28] = { 60.2, 50.5, 28, 315 }, + [29] = { 65.3, 50.3, 28, 315 }, + [30] = { 62.9, 49.9, 28, 315 }, + [31] = { 63.7, 49.8, 28, 315 }, + [32] = { 52.9, 49.5, 28, 315 }, + [33] = { 60.5, 49.4, 28, 315 }, + [34] = { 68.1, 48.5, 28, 315 }, + [35] = { 53.4, 48.3, 28, 315 }, + [36] = { 66.7, 47.8, 28, 315 }, + [37] = { 66.3, 47.8, 28, 315 }, + [38] = { 64.5, 47.7, 28, 315 }, + [39] = { 61.9, 47, 28, 315 }, + [40] = { 64.4, 47, 28, 315 }, + [41] = { 67.6, 46.1, 28, 315 }, + [42] = { 55, 45.8, 28, 315 }, + [43] = { 65.9, 44, 28, 315 }, + }, + ["lvl"] = "55-56", + }, + [1817] = { + ["coords"] = { + [1] = { 52.5, 70.4, 28, 315 }, + [2] = { 52, 61, 28, 315 }, + [3] = { 49.4, 59.6, 28, 315 }, + [4] = { 42.6, 56.3, 28, 315 }, + [5] = { 43.5, 55.2, 28, 315 }, + [6] = { 42.5, 54.1, 28, 315 }, + [7] = { 51.1, 53.1, 28, 315 }, + [8] = { 44.9, 49.5, 28, 315 }, + [9] = { 39.6, 48.5, 28, 315 }, + [10] = { 47.2, 48.3, 28, 315 }, + [11] = { 45.7, 48.3, 28, 315 }, + [12] = { 48, 47.3, 28, 315 }, + [13] = { 44.8, 47, 28, 315 }, + [14] = { 51.8, 47, 28, 315 }, + [15] = { 50.3, 46.9, 28, 315 }, + [16] = { 45.8, 46, 28, 315 }, + [17] = { 44.4, 45.9, 28, 315 }, + [18] = { 45.7, 43.9, 28, 315 }, + [19] = { 47.4, 43.7, 28, 315 }, + [20] = { 44.9, 40.3, 28, 315 }, + [21] = { 46.6, 40.2, 28, 315 }, + [22] = { 43.5, 40.2, 28, 315 }, + [23] = { 47.4, 39, 28, 315 }, + [24] = { 49.7, 37.8, 28, 315 }, + [25] = { 45.9, 36.7, 28, 315 }, + [26] = { 50.3, 34.5, 28, 315 }, + [27] = { 45, 32.1, 28, 315 }, + [28] = { 46.6, 29.7, 28, 315 }, + [29] = { 47.3, 28.3, 28, 315 }, + [30] = { 49.6, 27.3, 28, 315 }, + [31] = { 48.1, 27.2, 28, 315 }, + [32] = { 48.8, 26.1, 28, 315 }, + [33] = { 95.6, 61.7, 85, 315 }, + }, + ["lvl"] = "53-54", + }, + [1819] = "_", + [1820] = "_", + [1821] = { + ["coords"] = { + [1] = { 51.1, 64.4, 28, 315 }, + [2] = { 50.3, 63.4, 28, 315 }, + [3] = { 48.9, 61.9, 28, 315 }, + [4] = { 51.5, 60.5, 28, 315 }, + [5] = { 48.6, 60.2, 28, 315 }, + [6] = { 46.4, 59.9, 28, 315 }, + [7] = { 45, 59.8, 28, 315 }, + [8] = { 48.6, 58.5, 28, 315 }, + [9] = { 44.1, 56.5, 28, 315 }, + [10] = { 51.2, 50.6, 28, 315 }, + [11] = { 41.1, 48.4, 28, 315 }, + [12] = { 46.6, 47.1, 28, 315 }, + [13] = { 43.1, 46.8, 28, 315 }, + [14] = { 47.2, 46, 28, 315 }, + [15] = { 46.5, 44.9, 28, 315 }, + [16] = { 44.8, 44.8, 28, 315 }, + [17] = { 46.5, 42.7, 28, 315 }, + [18] = { 44.9, 42.5, 28, 315 }, + [19] = { 45.7, 41.4, 28, 315 }, + [20] = { 47.4, 41.3, 28, 315 }, + [21] = { 48, 40.1, 28, 315 }, + [22] = { 48.8, 39, 28, 315 }, + [23] = { 46.6, 37.8, 28, 315 }, + [24] = { 45, 37.6, 28, 315 }, + [25] = { 49, 36.7, 28, 315 }, + [26] = { 50.4, 36.4, 28, 315 }, + [27] = { 49.8, 35.6, 28, 315 }, + [28] = { 52, 34.2, 28, 315 }, + [29] = { 51, 32.9, 28, 315 }, + [30] = { 51.2, 31, 28, 315 }, + [31] = { 48.9, 28.3, 28, 315 }, + [32] = { 97, 61.7, 85, 315 }, + }, + ["lvl"] = "52-53", + }, + [1822] = { + ["coords"] = { + [1] = { 35.5, 66.8, 28, 315 }, + [2] = { 34.2, 66.8, 28, 315 }, + [3] = { 37.1, 64.7, 28, 315 }, + [4] = { 35.6, 64.6, 28, 315 }, + [5] = { 32.6, 64.6, 28, 315 }, + [6] = { 38.6, 64.5, 28, 315 }, + [7] = { 34.2, 64.5, 28, 315 }, + [8] = { 32.1, 63.5, 28, 315 }, + [9] = { 31.1, 62.4, 28, 315 }, + [10] = { 32.4, 62.3, 28, 315 }, + [11] = { 35.8, 62.3, 28, 315 }, + [12] = { 39.9, 62.1, 28, 315 }, + [13] = { 33.4, 61.4, 28, 315 }, + [14] = { 37.9, 61.3, 28, 315 }, + [15] = { 30, 61, 28, 315 }, + [16] = { 29.1, 59.2, 28, 315 }, + [17] = { 33.4, 59, 28, 315 }, + [18] = { 34.3, 57.6, 28, 315 }, + [19] = { 29.8, 56.7, 28, 315 }, + [20] = { 28.9, 56, 28, 315 }, + [21] = { 34.1, 55.4, 28, 315 }, + [22] = { 33.2, 54.1, 28, 315 }, + [23] = { 87.5, 75, 85, 315 }, + [24] = { 86.4, 73.6, 85, 315 }, + [25] = { 85.6, 72, 85, 315 }, + [26] = { 86.2, 69.6, 85, 315 }, + [27] = { 85.4, 68.9, 85, 315 }, + [28] = { 90.3, 68.3, 85, 315 }, + [29] = { 89.5, 67.1, 85, 315 }, + }, + ["lvl"] = "50-51", + }, + [1824] = { + ["coords"] = { + [1] = { 54.9, 62.2, 28, 315 }, + [2] = { 53.4, 62, 28, 315 }, + [3] = { 54.2, 61.1, 28, 315 }, + [4] = { 55.9, 61, 28, 315 }, + [5] = { 56.6, 60, 28, 315 }, + [6] = { 59.1, 59.6, 28, 315 }, + [7] = { 56.6, 57.5, 28, 315 }, + [8] = { 66, 57.4, 28, 315 }, + [9] = { 66.4, 54.5, 28, 315 }, + [10] = { 55.7, 54, 28, 315 }, + [11] = { 58.9, 53.9, 28, 315 }, + [12] = { 60.8, 53.5, 28, 315 }, + [13] = { 56, 53.4, 28, 315 }, + [14] = { 52.7, 51.7, 28, 315 }, + [15] = { 56, 51.4, 28, 315 }, + [16] = { 60.8, 51, 28, 315 }, + [17] = { 55, 50.7, 28, 315 }, + [18] = { 53.4, 50.6, 28, 315 }, + [19] = { 58.8, 50.5, 28, 315 }, + [20] = { 62.7, 50.3, 28, 315 }, + [21] = { 66.8, 49.9, 28, 315 }, + [22] = { 64.4, 49.7, 28, 315 }, + [23] = { 55.8, 49.6, 28, 315 }, + [24] = { 54.3, 49.4, 28, 315 }, + [25] = { 62.2, 48.5, 28, 315 }, + [26] = { 67.2, 48.2, 28, 315 }, + [27] = { 54.3, 47.1, 28, 315 }, + [28] = { 65.1, 46.4, 28, 315 }, + [29] = { 63.3, 46.4, 28, 315 }, + [30] = { 66.1, 45.8, 28, 315 }, + [31] = { 68.1, 45.5, 28, 315 }, + [32] = { 63.6, 45.2, 28, 315 }, + }, + ["lvl"] = "54-55", + }, + [1826] = { + ["coords"] = { + [1] = { 50.2, 42.2, 28, 315 }, + [2] = { 49.8, 41.6, 28, 315 }, + [3] = { 50.7, 41.3, 28, 315 }, + [4] = { 50.4, 41.1, 28, 315 }, + [5] = { 51.3, 40.5, 28, 315 }, + [6] = { 50.8, 40.5, 28, 315 }, + [7] = { 50.3, 40.5, 28, 315 }, + [8] = { 51, 40.2, 28, 315 }, + [9] = { 53.6, 37.7, 28, 315 }, + [10] = { 52.8, 37.6, 28, 315 }, + [11] = { 53.3, 37.4, 28, 315 }, + [12] = { 53.2, 37, 28, 315 }, + [13] = { 52.8, 36.7, 28, 315 }, + [14] = { 57.7, 36.4, 28, 315 }, + [15] = { 57.4, 36.1, 28, 315 }, + [16] = { 57.6, 35.6, 28, 315 }, + }, + ["lvl"] = "55-56", + }, + [1827] = { + ["coords"] = { + [1] = { 48, 22.7, 28, 973 }, + [2] = { 48.1, 22, 28, 796 }, + [3] = { 47.4, 21.9, 28, 962 }, + [4] = { 48.4, 21.6, 28, 944 }, + [5] = { 48.9, 21.4, 28, 835 }, + [6] = { 48.2, 20.5, 28, 818 }, + [7] = { 46.9, 20.4, 28, 876 }, + [8] = { 47.1, 20.1, 28, 921 }, + [9] = { 43.5, 19.9, 28, 747 }, + [10] = { 43.1, 16.5, 28, 870 }, + [11] = { 45, 16.4, 28, 943 }, + [12] = { 43.2, 16.3, 28, 739 }, + [13] = { 47.2, 15.9, 28, 731 }, + [14] = { 42.2, 15.9, 28, 982 }, + [15] = { 42.1, 15.8, 28, 809 }, + [16] = { 41.6, 15.5, 28, 944 }, + [17] = { 41.4, 15.4, 28, 934 }, + [18] = { 41.9, 14.9, 28, 827 }, + [19] = { 47.7, 14.9, 28, 856 }, + [20] = { 42, 14.9, 28, 884 }, + [21] = { 42.7, 14.3, 28, 799 }, + [22] = { 42.6, 14.3, 28, 884 }, + [23] = { 42.1, 13.8, 28, 759 }, + [24] = { 42, 13.7, 28, 1019 }, + [25] = { 14, 99.9, 5225, 870 }, + [26] = { 16.6, 99.7, 5225, 943 }, + [27] = { 14.1, 99.6, 5225, 739 }, + [28] = { 19.7, 99.1, 5225, 731 }, + [29] = { 12.7, 99, 5225, 982 }, + [30] = { 12.6, 99, 5225, 809 }, + [31] = { 11.9, 98.5, 5225, 944 }, + [32] = { 11.7, 98.4, 5225, 934 }, + [33] = { 12.3, 97.7, 5225, 827 }, + [34] = { 20.4, 97.6, 5225, 856 }, + [35] = { 12.4, 97.6, 5225, 884 }, + [36] = { 13.5, 96.9, 5225, 799 }, + [37] = { 13.4, 96.8, 5225, 884 }, + [38] = { 12.7, 96.1, 5225, 759 }, + [39] = { 12.5, 96, 5225, 1019 }, + }, + ["lvl"] = "55-56", + ["rnk"] = "1", + }, + [1831] = { + ["coords"] = { + [1] = { 43.7, 67.8, 28, 315 }, + [2] = { 38.7, 56, 28, 315 }, + [3] = { 38.6, 56, 28, 315 }, + [4] = { 38.7, 55.9, 28, 315 }, + [5] = { 40.7, 52.6, 28, 315 }, + [6] = { 40.4, 52.6, 28, 315 }, + [7] = { 41, 52.4, 28, 315 }, + [8] = { 40.7, 52.2, 28, 315 }, + [9] = { 40.3, 52.2, 28, 315 }, + [10] = { 40.8, 51.9, 28, 315 }, + [11] = { 41, 51.9, 28, 315 }, + [12] = { 40.3, 51.7, 28, 315 }, + [13] = { 40.9, 51.5, 28, 315 }, + [14] = { 40.5, 51.4, 28, 315 }, + [15] = { 47.3, 51.4, 28, 315 }, + [16] = { 47.4, 51.3, 28, 315 }, + [17] = { 47.3, 51.3, 28, 315 }, + [18] = { 51.8, 44.8, 28, 315 }, + [19] = { 52.1, 44.8, 28, 315 }, + [20] = { 51.9, 44.6, 28, 315 }, + [21] = { 52.2, 44.6, 28, 315 }, + [22] = { 51.6, 44.5, 28, 315 }, + [23] = { 52.2, 44.2, 28, 315 }, + [24] = { 51.4, 44.1, 28, 315 }, + [25] = { 51.7, 44, 28, 315 }, + [26] = { 52.2, 44, 28, 315 }, + [27] = { 51.9, 43.8, 28, 315 }, + [28] = { 89.3, 60, 139, 180 }, + [29] = { 89, 58, 139, 180 }, + [30] = { 91.2, 57.4, 139, 180 }, + [31] = { 90, 55.9, 139, 180 }, + [32] = { 90.6, 55, 139, 180 }, + [33] = { 91.3, 54.5, 139, 180 }, + [34] = { 88.8, 52.4, 139, 180 }, + [35] = { 88.6, 52.3, 139, 180 }, + [36] = { 88.5, 52.1, 139, 180 }, + [37] = { 88.9, 52.1, 139, 180 }, + [38] = { 88.7, 52, 139, 180 }, + [39] = { 88.9, 51.8, 139, 180 }, + [40] = { 55.9, 40.8, 4012, 300 }, + [41] = { 50.4, 39.6, 4012, 180 }, + [42] = { 50.1, 37.1, 4012, 180 }, + [43] = { 52.8, 36.5, 4012, 180 }, + [44] = { 51.3, 34.6, 4012, 180 }, + [45] = { 57.3, 34.2, 4012, 300 }, + [46] = { 52, 33.5, 4012, 180 }, + [47] = { 53.8, 33.4, 4012, 180 }, + [48] = { 58.6, 32.9, 4012, 300 }, + [49] = { 52.9, 32.9, 4012, 180 }, + [50] = { 49.8, 30.3, 4012, 180 }, + [51] = { 49.5, 30.2, 4012, 180 }, + [52] = { 49.4, 30, 4012, 180 }, + [53] = { 49.9, 29.9, 4012, 180 }, + [54] = { 49.7, 29.9, 4012, 180 }, + [55] = { 49.9, 29.7, 4012, 180 }, + }, + ["lvl"] = "52-53", + }, + [1832] = { + ["coords"] = { + [1] = { 45, 15.7, 28, 900 }, + [2] = { 45, 15.5, 28, 825 }, + [3] = { 45.2, 15.4, 28, 826 }, + [4] = { 45.2, 15.3, 28, 1009 }, + [5] = { 44.8, 15.2, 28, 1008 }, + [6] = { 46.6, 14.1, 28, 949 }, + [7] = { 47.3, 13.8, 28, 951 }, + [8] = { 46.3, 13.8, 28, 1009 }, + [9] = { 46.8, 13.1, 28, 999 }, + [10] = { 94.6, 92.3, 139, 180 }, + [11] = { 94.5, 90, 139, 180 }, + [12] = { 93.7, 88.9, 139, 300 }, + [13] = { 91.1, 86.9, 139, 180 }, + [14] = { 91.2, 86.6, 139, 180 }, + [15] = { 91.5, 86.3, 139, 180 }, + [16] = { 92.1, 86.2, 139, 300 }, + [17] = { 91.1, 86, 139, 180 }, + [18] = { 91.3, 85.7, 139, 180 }, + [19] = { 91.1, 84.6, 139, 300 }, + [20] = { 95.5, 80.5, 139, 300 }, + [21] = { 96.1, 78.9, 139, 180 }, + [22] = { 56.9, 79.2, 4012, 180 }, + [23] = { 56.7, 76.4, 4012, 180 }, + [24] = { 55.8, 75.1, 4012, 300 }, + [25] = { 52.6, 72.6, 4012, 180 }, + [26] = { 52.7, 72.2, 4012, 180 }, + [27] = { 53.1, 71.9, 4012, 180 }, + [28] = { 53.9, 71.8, 4012, 300 }, + [29] = { 52.6, 71.4, 4012, 180 }, + [30] = { 52.9, 71.1, 4012, 180 }, + [31] = { 52.6, 69.8, 4012, 300 }, + [32] = { 63.1, 67, 4012, 180 }, + [33] = { 58, 64.7, 4012, 300 }, + [34] = { 61.1, 64.3, 4012, 180 }, + [35] = { 58.7, 62.7, 4012, 180 }, + [36] = { 59.4, 51.3, 4012, 300 }, + [37] = { 57.4, 49.4, 4012, 300 }, + [38] = { 57.6, 45.1, 4012, 180 }, + [39] = { 16.6, 98.8, 5225, 900 }, + [40] = { 16.7, 98.5, 5225, 825 }, + [41] = { 16.9, 98.3, 5225, 826 }, + [42] = { 16.9, 98.2, 5225, 1009 }, + [43] = { 16.4, 98.1, 5225, 1008 }, + [44] = { 18.9, 96.5, 5225, 949 }, + [45] = { 19.9, 96.1, 5225, 951 }, + [46] = { 18.5, 96.1, 5225, 1009 }, + [47] = { 19.2, 95.1, 5225, 999 }, + }, + ["lvl"] = "56-57", + ["rnk"] = "1", + }, + [1833] = { + ["coords"] = { + [1] = { 53.2, 36.3, 28, 315 }, + [2] = { 48.8, 34.5, 28, 315 }, + [3] = { 45.8, 34.4, 28, 315 }, + [4] = { 47.1, 34.4, 28, 315 }, + [5] = { 49.6, 33.2, 28, 315 }, + [6] = { 47.4, 31.9, 28, 315 }, + [7] = { 50.2, 42.2, 28, 315 }, + [8] = { 49.8, 41.6, 28, 315 }, + [9] = { 50.7, 41.3, 28, 315 }, + [10] = { 50.4, 41.1, 28, 315 }, + [11] = { 51.3, 40.5, 28, 315 }, + [12] = { 50.8, 40.5, 28, 315 }, + [13] = { 50.3, 40.5, 28, 315 }, + [14] = { 51, 40.2, 28, 315 }, + [15] = { 53.6, 37.7, 28, 315 }, + [16] = { 52.8, 37.6, 28, 315 }, + [17] = { 53.3, 37.4, 28, 315 }, + [18] = { 53.2, 37, 28, 315 }, + [19] = { 52.8, 36.7, 28, 315 }, + [20] = { 57.7, 36.4, 28, 315 }, + [21] = { 57.4, 36.1, 28, 315 }, + [22] = { 57.6, 35.6, 28, 315 }, + }, + ["lvl"] = "54-55", + }, + [1834] = { + ["coords"] = { + [1] = { 43.3, 20.7, 28, 1014 }, + [2] = { 43.2, 19.6, 28, 1000 }, + [3] = { 42.4, 19.1, 28, 722 }, + [4] = { 46.1, 19.1, 28, 819 }, + [5] = { 42.6, 19, 28, 994 }, + [6] = { 45.4, 19, 28, 950 }, + [7] = { 42.7, 18.6, 28, 940 }, + [8] = { 43, 18.4, 28, 994 }, + [9] = { 45.2, 18.3, 28, 777 }, + [10] = { 42.7, 18.2, 28, 888 }, + [11] = { 42.5, 18.2, 28, 1020 }, + [12] = { 46.2, 18.2, 28, 906 }, + [13] = { 45.4, 17.9, 28, 816 }, + [14] = { 42.6, 17.7, 28, 1019 }, + [15] = { 44.9, 16.4, 28, 936 }, + [16] = { 43, 16.4, 28, 767 }, + [17] = { 42.8, 16.3, 28, 838 }, + [18] = { 44.9, 16.2, 28, 844 }, + [19] = { 43, 16.1, 28, 1019 }, + [20] = { 42.8, 16.1, 28, 847 }, + [21] = { 42.5, 16.1, 28, 866 }, + [22] = { 41.6, 15.3, 28, 771 }, + [23] = { 42.9, 14.6, 28, 1016 }, + [24] = { 46.8, 14.1, 28, 808 }, + [25] = { 42.1, 13.9, 28, 942 }, + [26] = { 43.5, 13.9, 28, 975 }, + [27] = { 47, 13.9, 28, 897 }, + [28] = { 43.6, 13.7, 28, 742 }, + [29] = { 46.6, 13.7, 28, 759 }, + [30] = { 46.5, 13.7, 28, 961 }, + [31] = { 46.9, 13.6, 28, 827 }, + [32] = { 43.5, 13.6, 28, 776 }, + [33] = { 47.1, 13.5, 28, 732 }, + [34] = { 46.6, 13.5, 28, 918 }, + [35] = { 43.4, 13.4, 28, 729 }, + [36] = { 42.7, 13.4, 28, 722 }, + [37] = { 43.5, 13.3, 28, 889 }, + [38] = { 92.7, 96.2, 139, 180 }, + [39] = { 91.9, 96.1, 139, 180 }, + [40] = { 92.6, 95.5, 139, 180 }, + [41] = { 92.6, 95.4, 139, 300 }, + [42] = { 90.9, 93.3, 139, 300 }, + [43] = { 94.4, 89.9, 139, 180 }, + [44] = { 91.3, 86.3, 139, 180 }, + [45] = { 90.8, 86, 139, 180 }, + [46] = { 91.6, 85.7, 139, 180 }, + [47] = { 91.6, 85.5, 139, 180 }, + [48] = { 91.9, 85.5, 139, 180 }, + [49] = { 91.9, 85.3, 139, 180 }, + [50] = { 92.6, 85.3, 139, 180 }, + [51] = { 92.4, 84.5, 139, 180 }, + [52] = { 98, 84.1, 139, 180 }, + [53] = { 90.9, 81.5, 139, 300 }, + [54] = { 93.8, 81.2, 139, 180 }, + [55] = { 95.5, 79.6, 139, 180 }, + [56] = { 93.3, 79.3, 139, 180 }, + [57] = { 94.4, 79, 139, 180 }, + [58] = { 95.2, 78.9, 139, 180 }, + [59] = { 95.3, 78.8, 139, 180 }, + [60] = { 93.8, 77.4, 139, 300 }, + [61] = { 93.7, 77.3, 139, 180 }, + [62] = { 94, 77.3, 139, 180 }, + [63] = { 92.4, 75.2, 139, 180 }, + [64] = { 92.3, 75, 139, 180 }, + [65] = { 88.8, 52.9, 139, 180 }, + [66] = { 89.1, 52.8, 139, 180 }, + [67] = { 89.1, 52.6, 139, 180 }, + [68] = { 54.5, 83.9, 4012, 180 }, + [69] = { 53.5, 83.9, 4012, 180 }, + [70] = { 54.4, 83.1, 4012, 180 }, + [71] = { 54.5, 83, 4012, 300 }, + [72] = { 52.4, 80.5, 4012, 300 }, + [73] = { 65.8, 76.7, 4012, 300 }, + [74] = { 56.7, 76.3, 4012, 180 }, + [75] = { 52.8, 71.9, 4012, 180 }, + [76] = { 52.3, 71.4, 4012, 180 }, + [77] = { 53.3, 71.1, 4012, 180 }, + [78] = { 53.2, 70.9, 4012, 180 }, + [79] = { 53.6, 70.9, 4012, 180 }, + [80] = { 53.5, 70.6, 4012, 180 }, + [81] = { 54.5, 70.6, 4012, 180 }, + [82] = { 54.1, 69.7, 4012, 180 }, + [83] = { 63.1, 69.4, 4012, 300 }, + [84] = { 62.6, 69.3, 4012, 180 }, + [85] = { 61.1, 69.2, 4012, 180 }, + [86] = { 62.9, 69.2, 4012, 300 }, + [87] = { 62.6, 68.4, 4012, 180 }, + [88] = { 61, 68.3, 4012, 180 }, + [89] = { 62.6, 68.3, 4012, 180 }, + [90] = { 62.6, 68.2, 4012, 180 }, + [91] = { 62.6, 68.1, 4012, 180 }, + [92] = { 61, 67.8, 4012, 180 }, + [93] = { 63.3, 67.5, 4012, 180 }, + [94] = { 63.1, 67.4, 4012, 300 }, + [95] = { 63.2, 67.3, 4012, 300 }, + [96] = { 62.7, 67.3, 4012, 180 }, + [97] = { 52.4, 65.9, 4012, 300 }, + [98] = { 55.9, 65.6, 4012, 180 }, + [99] = { 58, 63.7, 4012, 180 }, + [100] = { 55.3, 63.3, 4012, 180 }, + [101] = { 56.7, 62.9, 4012, 180 }, + [102] = { 57.7, 62.8, 4012, 180 }, + [103] = { 57.7, 62.7, 4012, 180 }, + [104] = { 56, 60.9, 4012, 300 }, + [105] = { 55.8, 60.9, 4012, 180 }, + [106] = { 56.1, 60.9, 4012, 180 }, + [107] = { 59.4, 59.8, 4012, 300 }, + [108] = { 59.2, 59.8, 4012, 180 }, + [109] = { 59.6, 59.6, 4012, 180 }, + [110] = { 57.2, 58.3, 4012, 180 }, + [111] = { 54.1, 58.2, 4012, 180 }, + [112] = { 54.1, 58, 4012, 180 }, + [113] = { 60.9, 54.7, 4012, 180 }, + [114] = { 61.2, 54.5, 4012, 180 }, + [115] = { 60.7, 54.5, 4012, 180 }, + [116] = { 61.1, 54.5, 4012, 180 }, + [117] = { 60.6, 54.4, 4012, 180 }, + [118] = { 55.3, 47.6, 4012, 180 }, + [119] = { 57.1, 44.8, 4012, 300 }, + [120] = { 58.7, 37.9, 4012, 180 }, + [121] = { 58.7, 37.7, 4012, 180 }, + [122] = { 58.5, 37.4, 4012, 180 }, + [123] = { 58.7, 37.1, 4012, 180 }, + [124] = { 58.7, 36.9, 4012, 180 }, + [125] = { 49.7, 31, 4012, 180 }, + [126] = { 49.8, 31, 4012, 180 }, + [127] = { 50.1, 30.8, 4012, 180 }, + [128] = { 50.1, 30.6, 4012, 180 }, + [129] = { 16.5, 99.7, 5225, 936 }, + [130] = { 13.9, 99.7, 5225, 767 }, + [131] = { 13.5, 99.6, 5225, 838 }, + [132] = { 16.5, 99.4, 5225, 844 }, + [133] = { 13.9, 99.4, 5225, 1019 }, + [134] = { 13.6, 99.3, 5225, 847 }, + [135] = { 13.2, 99.3, 5225, 866 }, + [136] = { 11.9, 98.3, 5225, 771 }, + [137] = { 13.8, 97.2, 5225, 1016 }, + [138] = { 19.2, 96.5, 5225, 808 }, + [139] = { 12.6, 96.3, 5225, 942 }, + [140] = { 14.6, 96.2, 5225, 975 }, + [141] = { 19.5, 96.2, 5225, 897 }, + [142] = { 14.7, 96, 5225, 742 }, + [143] = { 18.9, 96, 5225, 759 }, + [144] = { 18.8, 95.9, 5225, 961 }, + [145] = { 19.4, 95.8, 5225, 827 }, + [146] = { 14.6, 95.8, 5225, 776 }, + [147] = { 19.6, 95.7, 5225, 732 }, + [148] = { 18.8, 95.7, 5225, 918 }, + [149] = { 14.4, 95.6, 5225, 729 }, + [150] = { 13.5, 95.6, 5225, 722 }, + [151] = { 14.6, 95.4, 5225, 889 }, + }, + ["lvl"] = "55-56", + ["rnk"] = "1", + }, + [1835] = { + ["coords"] = { + [1] = { 43.7, 67.8, 28, 315 }, + [2] = { 38.7, 56, 28, 315 }, + [3] = { 38.6, 56, 28, 315 }, + [4] = { 38.7, 55.9, 28, 315 }, + [5] = { 40.7, 52.6, 28, 315 }, + [6] = { 40.4, 52.6, 28, 315 }, + [7] = { 41, 52.4, 28, 315 }, + [8] = { 40.7, 52.2, 28, 315 }, + [9] = { 40.3, 52.2, 28, 315 }, + [10] = { 40.8, 51.9, 28, 315 }, + [11] = { 41, 51.9, 28, 315 }, + [12] = { 40.3, 51.7, 28, 315 }, + [13] = { 40.9, 51.5, 28, 315 }, + [14] = { 40.5, 51.4, 28, 315 }, + [15] = { 47.3, 51.4, 28, 315 }, + [16] = { 47.4, 51.3, 28, 315 }, + [17] = { 47.3, 51.3, 28, 315 }, + [18] = { 51.8, 44.8, 28, 315 }, + [19] = { 52.1, 44.8, 28, 315 }, + [20] = { 51.9, 44.6, 28, 315 }, + [21] = { 52.2, 44.6, 28, 315 }, + [22] = { 51.6, 44.5, 28, 315 }, + [23] = { 52.2, 44.2, 28, 315 }, + [24] = { 51.4, 44.1, 28, 315 }, + [25] = { 51.7, 44, 28, 315 }, + [26] = { 52.2, 44, 28, 315 }, + [27] = { 51.9, 43.8, 28, 315 }, + [28] = { 89.3, 60, 139, 180 }, + [29] = { 89, 58, 139, 180 }, + [30] = { 91.2, 57.4, 139, 180 }, + [31] = { 90, 55.9, 139, 180 }, + [32] = { 90.6, 55, 139, 180 }, + [33] = { 91.3, 54.5, 139, 180 }, + [34] = { 88.8, 52.4, 139, 180 }, + [35] = { 88.6, 52.3, 139, 180 }, + [36] = { 88.5, 52.1, 139, 180 }, + [37] = { 88.9, 52.1, 139, 180 }, + [38] = { 88.7, 52, 139, 180 }, + [39] = { 88.9, 51.8, 139, 180 }, + [40] = { 55.9, 40.8, 4012, 300 }, + [41] = { 50.4, 39.6, 4012, 180 }, + [42] = { 50.1, 37.1, 4012, 180 }, + [43] = { 52.8, 36.5, 4012, 180 }, + [44] = { 51.3, 34.6, 4012, 180 }, + [45] = { 57.3, 34.2, 4012, 300 }, + [46] = { 52, 33.5, 4012, 180 }, + [47] = { 53.8, 33.4, 4012, 180 }, + [48] = { 58.6, 32.9, 4012, 300 }, + [49] = { 52.9, 32.9, 4012, 180 }, + [50] = { 49.8, 30.3, 4012, 180 }, + [51] = { 49.5, 30.2, 4012, 180 }, + [52] = { 49.4, 30, 4012, 180 }, + [53] = { 49.9, 29.9, 4012, 180 }, + [54] = { 49.7, 29.9, 4012, 180 }, + [55] = { 49.9, 29.7, 4012, 180 }, + }, + ["lvl"] = "53-54", + }, + [1836] = { + ["coords"] = { + [1] = { 41.7, 15.4, 28, 360 }, + [2] = { 41.9, 15.4, 28, 360 }, + [3] = { 42.2, 15, 28, 360 }, + [4] = { 41.9, 15, 28, 360 }, + [5] = { 42.2, 14.8, 28, 360 }, + [6] = { 42, 14.5, 28, 360 }, + [7] = { 92.2, 94.5, 139, 180 }, + [8] = { 94.2, 93.1, 139, 180 }, + [9] = { 94.7, 92.3, 139, 180 }, + [10] = { 97, 90.8, 139, 300 }, + [11] = { 97.6, 90.6, 139, 300 }, + [12] = { 92.4, 89.7, 139, 300 }, + [13] = { 97, 88.9, 139, 300 }, + [14] = { 95, 88.4, 139, 300 }, + [15] = { 92, 87.8, 139, 300 }, + [16] = { 91, 86.7, 139, 180 }, + [17] = { 93.2, 86.7, 139, 300 }, + [18] = { 91.6, 86.3, 139, 180 }, + [19] = { 94.8, 86.2, 139, 300 }, + [20] = { 90.4, 86, 139, 300 }, + [21] = { 97.8, 84.8, 139, 300 }, + [22] = { 90.4, 84.5, 139, 300 }, + [23] = { 93.9, 82.9, 139, 300 }, + [24] = { 92.2, 82.5, 139, 300 }, + [25] = { 94.8, 82, 139, 180 }, + [26] = { 96.1, 81.9, 139, 180 }, + [27] = { 97.4, 81.3, 139, 180 }, + [28] = { 97, 81.1, 139, 300 }, + [29] = { 94.7, 80.7, 139, 300 }, + [30] = { 91.8, 79.7, 139, 300 }, + [31] = { 95.2, 79.6, 139, 180 }, + [32] = { 95.6, 79.4, 139, 180 }, + [33] = { 95.2, 79.2, 139, 180 }, + [34] = { 93, 78.5, 139, 300 }, + [35] = { 93.3, 70.7, 139, 300 }, + [36] = { 91.8, 68.7, 139, 300 }, + [37] = { 89.2, 60.3, 139, 300 }, + [38] = { 89.1, 59.9, 139, 300 }, + [39] = { 89.7, 59.8, 139, 300 }, + [40] = { 91, 58.9, 139, 300 }, + [41] = { 91.2, 57.6, 139, 300 }, + [42] = { 91, 57.5, 139, 300 }, + [43] = { 90.1, 56.4, 139, 300 }, + [44] = { 89.8, 56.2, 139, 300 }, + [45] = { 90.5, 55.5, 139, 300 }, + [46] = { 90.4, 54.7, 139, 300 }, + [47] = { 91.4, 54.3, 139, 300 }, + [48] = { 54, 81.9, 4012, 180 }, + [49] = { 62.4, 80.5, 4012, 300 }, + [50] = { 56.4, 80.1, 4012, 180 }, + [51] = { 57, 79.2, 4012, 180 }, + [52] = { 59.8, 77.4, 4012, 300 }, + [53] = { 61.9, 77.2, 4012, 300 }, + [54] = { 63, 77.2, 4012, 300 }, + [55] = { 60.6, 77.1, 4012, 300 }, + [56] = { 54.2, 76, 4012, 300 }, + [57] = { 59.9, 75, 4012, 300 }, + [58] = { 65.1, 74.6, 4012, 180 }, + [59] = { 57.4, 74.4, 4012, 300 }, + [60] = { 53.7, 73.6, 4012, 300 }, + [61] = { 61.7, 73.6, 4012, 300 }, + [62] = { 52.5, 72.3, 4012, 180 }, + [63] = { 55.1, 72.3, 4012, 300 }, + [64] = { 53.2, 71.8, 4012, 180 }, + [65] = { 57.1, 71.7, 4012, 300 }, + [66] = { 51.8, 71.5, 4012, 300 }, + [67] = { 60.8, 70, 4012, 300 }, + [68] = { 51.7, 69.7, 4012, 300 }, + [69] = { 63.2, 69.6, 4012, 180 }, + [70] = { 63.2, 69.3, 4012, 180 }, + [71] = { 61.7, 69.3, 4012, 300 }, + [72] = { 63.2, 69.2, 4012, 180 }, + [73] = { 63, 69.2, 4012, 180 }, + [74] = { 62.9, 69.2, 4012, 180 }, + [75] = { 61.7, 69.1, 4012, 300 }, + [76] = { 62.6, 68.3, 4012, 300 }, + [77] = { 62.4, 68.2, 4012, 180 }, + [78] = { 56.1, 67.6, 4012, 300 }, + [79] = { 63.2, 67.5, 4012, 180 }, + [80] = { 53.9, 67.2, 4012, 300 }, + [81] = { 61.8, 67.1, 4012, 300 }, + [82] = { 61.7, 67, 4012, 180 }, + [83] = { 61.7, 66.9, 4012, 180 }, + [84] = { 61.2, 66.6, 4012, 300 }, + [85] = { 57.2, 66.6, 4012, 180 }, + [86] = { 58.7, 66.4, 4012, 180 }, + [87] = { 62.4, 66, 4012, 300 }, + [88] = { 60.3, 65.7, 4012, 180 }, + [89] = { 59.8, 65.5, 4012, 300 }, + [90] = { 57, 65.1, 4012, 300 }, + [91] = { 61.3, 64, 4012, 180 }, + [92] = { 53.5, 63.8, 4012, 300 }, + [93] = { 57.7, 63.7, 4012, 180 }, + [94] = { 58.2, 63.4, 4012, 180 }, + [95] = { 62.7, 63.2, 4012, 300 }, + [96] = { 57.6, 63.2, 4012, 180 }, + [97] = { 55, 62.3, 4012, 300 }, + [98] = { 60.3, 56.5, 4012, 300 }, + [99] = { 59.7, 55.3, 4012, 300 }, + [100] = { 59.7, 53.1, 4012, 300 }, + [101] = { 55.3, 52.8, 4012, 300 }, + [102] = { 56.4, 52.5, 4012, 300 }, + [103] = { 53.5, 50.3, 4012, 300 }, + [104] = { 56.6, 47.6, 4012, 300 }, + [105] = { 55.2, 47.5, 4012, 180 }, + [106] = { 57.6, 45, 4012, 180 }, + [107] = { 58.5, 43.9, 4012, 300 }, + [108] = { 56.3, 43, 4012, 300 }, + [109] = { 55.7, 42.8, 4012, 300 }, + [110] = { 59.5, 42.7, 4012, 300 }, + [111] = { 54, 41.9, 4012, 300 }, + [112] = { 57.5, 41.6, 4012, 300 }, + [113] = { 56.7, 41.3, 4012, 300 }, + [114] = { 55.6, 41.2, 4012, 300 }, + [115] = { 57.2, 41.1, 4012, 300 }, + [116] = { 55.8, 40.9, 4012, 180 }, + [117] = { 55.9, 40.8, 4012, 180 }, + [118] = { 50.3, 40, 4012, 300 }, + [119] = { 58.5, 39.7, 4012, 300 }, + [120] = { 50.2, 39.5, 4012, 300 }, + [121] = { 50.9, 39.4, 4012, 300 }, + [122] = { 52.4, 38.2, 4012, 300 }, + [123] = { 52.7, 36.7, 4012, 300 }, + [124] = { 52.5, 36.6, 4012, 300 }, + [125] = { 51.4, 35.2, 4012, 300 }, + [126] = { 51, 35, 4012, 300 }, + [127] = { 53.3, 34.6, 4012, 180 }, + [128] = { 53.3, 34.5, 4012, 180 }, + [129] = { 51.9, 34.2, 4012, 300 }, + [130] = { 59.4, 33.5, 4012, 300 }, + [131] = { 51.8, 33.2, 4012, 300 }, + [132] = { 57.8, 33.1, 4012, 300 }, + [133] = { 53, 32.6, 4012, 300 }, + [134] = { 57.2, 31.8, 4012, 300 }, + [135] = { 61.4, 27.9, 4012, 180 }, + [136] = { 12, 98.4, 5225, 360 }, + [137] = { 12.3, 98.4, 5225, 360 }, + [138] = { 12.7, 97.8, 5225, 360 }, + [139] = { 12.3, 97.7, 5225, 360 }, + [140] = { 12.8, 97.5, 5225, 360 }, + [141] = { 12.5, 97, 5225, 360 }, + }, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [1837] = { + ["coords"] = { + [1] = { 42.2, 18.5, 28, 54000 }, + }, + ["lvl"] = "60", + ["rnk"] = "2", + }, + [1838] = { + ["coords"] = { + [1] = { 45.2, 15.3, 28, 27000 }, + [2] = { 16.9, 98.2, 5225, 27000 }, + }, + ["lvl"] = "61", + ["rnk"] = "2", + }, + [1839] = { + ["coords"] = { + [1] = { 56.9, 34.8, 28, 108000 }, + }, + ["lvl"] = "63", + ["rnk"] = "2", + }, + [1841] = { + ["coords"] = { + [1] = { 45.7, 18.8, 28, 180000 }, + }, + ["lvl"] = "60", + ["rnk"] = "2", + }, + [1842] = { + ["coords"] = { + [1] = { 42, 14.8, 28, 900 }, + [2] = { 12.5, 97.5, 5225, 900 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [1843] = { + ["coords"] = { + [1] = { 45.6, 9.2, 28, 27000 }, + [2] = { 17.4, 89.7, 5225, 27000 }, + }, + ["lvl"] = "62", + ["rnk"] = "2", + }, + [1844] = { + ["coords"] = { + [1] = { 49, 32.7, 28, 108000 }, + }, + ["lvl"] = "58", + ["rnk"] = "4", + }, + [1847] = { + ["coords"] = { + [1] = { 46.5, 52.3, 28, 54000 }, + }, + ["lvl"] = "52", + ["rnk"] = "4", + }, + [1848] = { + ["coords"] = { + [1] = { 54.2, 80.4, 28, 27000 }, + }, + ["lvl"] = "56", + ["rnk"] = "4", + }, + [1849] = "_", + [1850] = { + ["coords"] = { + [1] = { 48.1, 67.4, 28, 252000 }, + }, + ["lvl"] = "58", + ["rnk"] = "4", + }, + [1851] = { + ["coords"] = { + [1] = { 62.2, 36.3, 28, 180000 }, + }, + ["lvl"] = "62", + ["rnk"] = "4", + }, + [1855] = { + ["coords"] = { + [1] = { 67.3, 24.2, 28, 900 }, + [2] = { 7.6, 43.7, 139, 900 }, + }, + ["fac"] = "AH", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [1857] = "_", + [1858] = "_", + [1859] = "_", + [1861] = "_", + [1862] = "_", + [1864] = "_", + [1866] = { + ["coords"] = { + [1] = { 46.2, 54.6, 130, 413 }, + [2] = { 45.7, 54.4, 130, 413 }, + [3] = { 45.8, 54.4, 130, 413 }, + [4] = { 47.5, 54.2, 130, 413 }, + [5] = { 47, 54.1, 130, 413 }, + [6] = { 47.1, 53.6, 130, 413 }, + [7] = { 47.6, 53, 130, 413 }, + [8] = { 47, 53, 130, 413 }, + [9] = { 48, 52.6, 130, 413 }, + [10] = { 48.1, 51.3, 130, 413 }, + [11] = { 48.2, 50.2, 130, 413 }, + [12] = { 53, 16.2, 130, 413 }, + [13] = { 54, 15.4, 130, 413 }, + [14] = { 52.9, 15.3, 130, 413 }, + [15] = { 52.1, 15.2, 130, 413 }, + [16] = { 53.4, 15, 130, 413 }, + [17] = { 53.7, 14.7, 130, 413 }, + [18] = { 52.7, 14.6, 130, 413 }, + [19] = { 52.2, 14.5, 130, 413 }, + [20] = { 53, 14.1, 130, 413 }, + [21] = { 51.7, 14.1, 130, 413 }, + [22] = { 53.7, 14, 130, 413 }, + [23] = { 52, 13.9, 130, 413 }, + [24] = { 51.9, 13.7, 130, 413 }, + [25] = { 51.7, 13.7, 130, 413 }, + [26] = { 52.3, 13.6, 130, 413 }, + }, + ["lvl"] = "11-12", + }, + [1867] = { + ["coords"] = { + [1] = { 51.4, 71, 130, 413 }, + [2] = { 52.6, 70.9, 130, 413 }, + [3] = { 53.2, 70.4, 130, 413 }, + [4] = { 50.3, 69.8, 130, 413 }, + [5] = { 49.4, 69.5, 130, 413 }, + [6] = { 51.5, 69.3, 130, 413 }, + [7] = { 49.5, 69.1, 130, 413 }, + [8] = { 53.1, 68.7, 130, 413 }, + [9] = { 55.6, 68.4, 130, 413 }, + [10] = { 52.5, 68.1, 130, 413 }, + [11] = { 54.7, 67.5, 130, 413 }, + [12] = { 49.3, 67.1, 130, 413 }, + [13] = { 52.2, 66.4, 130, 413 }, + [14] = { 50.6, 66.3, 130, 413 }, + [15] = { 56.7, 65.8, 130, 413 }, + [16] = { 51.8, 65.8, 130, 413 }, + [17] = { 53, 65.7, 130, 413 }, + [18] = { 51.6, 64.3, 130, 413 }, + [19] = { 52.4, 63.8, 130, 413 }, + [20] = { 50.9, 63.5, 130, 413 }, + [21] = { 55.2, 62.9, 130, 413 }, + [22] = { 53.1, 62.9, 130, 413 }, + [23] = { 56.4, 62.8, 130, 413 }, + [24] = { 50.6, 61.6, 130, 413 }, + [25] = { 51.5, 61.5, 130, 413 }, + [26] = { 50.6, 60.9, 130, 413 }, + [27] = { 49.5, 60.7, 130, 413 }, + [28] = { 50.2, 60.3, 130, 413 }, + [29] = { 49.8, 60.2, 130, 413 }, + [30] = { 50.2, 59.8, 130, 413 }, + [31] = { 50, 59.7, 130, 413 }, + [32] = { 50.9, 59.6, 130, 413 }, + [33] = { 50.2, 58.7, 130, 413 }, + [34] = { 52, 57.9, 130, 413 }, + [35] = { 52.3, 56.7, 130, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "13-14", + }, + [1868] = { + ["coords"] = { + [1] = { 53.1, 36, 130, 413 }, + [2] = { 52.5, 35.8, 130, 413 }, + [3] = { 55.1, 35.6, 130, 413 }, + [4] = { 52.5, 35, 130, 413 }, + [5] = { 51.7, 34.1, 130, 413 }, + [6] = { 52.9, 34.1, 130, 413 }, + [7] = { 52.4, 32.9, 130, 413 }, + [8] = { 53.9, 32.7, 130, 413 }, + [9] = { 52.5, 30.6, 130, 413 }, + }, + ["lvl"] = "13-14", + }, + [1870] = { + ["coords"] = { + [1] = { 58.6, 36.5, 130, 413 }, + [2] = { 56.1, 35.2, 130, 413 }, + [3] = { 57.8, 34.9, 130, 413 }, + [4] = { 56.6, 34.7, 130, 413 }, + [5] = { 57, 33.9, 130, 413 }, + }, + ["lvl"] = "15-16", + }, + [1872] = { + ["coords"] = { + [1] = { 46, 51.7, 1, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "12", + }, + [1879] = "_", + [1881] = "_", + [1883] = { + ["coords"] = { + [1] = { 44.1, 17.8, 28, 997 }, + [2] = { 46.2, 17.5, 28, 912 }, + [3] = { 44.1, 17.4, 28, 834 }, + [4] = { 43.9, 17.3, 28, 791 }, + [5] = { 45.9, 17.3, 28, 981 }, + [6] = { 45.9, 17.2, 28, 916 }, + [7] = { 43.6, 17.2, 28, 813 }, + [8] = { 44.1, 17, 28, 738 }, + [9] = { 46.2, 17, 28, 835 }, + [10] = { 46.1, 17, 28, 841 }, + [11] = { 43.9, 16.8, 28, 999 }, + [12] = { 45.7, 16.6, 28, 774 }, + [13] = { 45.9, 16.6, 28, 983 }, + [14] = { 46.4, 16.5, 28, 879 }, + [15] = { 45.6, 16.4, 28, 822 }, + [16] = { 45.6, 16.3, 28, 981 }, + [17] = { 46, 16.2, 28, 996 }, + [18] = { 46, 16.2, 28, 961 }, + [19] = { 45.8, 16, 28, 802 }, + [20] = { 45, 14, 28, 1016 }, + [21] = { 44.9, 13.8, 28, 978 }, + [22] = { 44.4, 13.7, 28, 887 }, + [23] = { 44.2, 13.5, 28, 952 }, + [24] = { 44.3, 13.4, 28, 838 }, + [25] = { 44.4, 13.4, 28, 816 }, + [26] = { 44.9, 12.8, 28, 781 }, + [27] = { 44.9, 12.8, 28, 851 }, + [28] = { 44.9, 12.7, 28, 868 }, + [29] = { 45.5, 12.7, 28, 807 }, + [30] = { 45.5, 12.6, 28, 833 }, + [31] = { 44.5, 12.6, 28, 899 }, + [32] = { 44.4, 12.6, 28, 849 }, + [33] = { 46.1, 12.4, 28, 866 }, + [34] = { 46, 12.4, 28, 788 }, + [35] = { 46.1, 12.4, 28, 816 }, + [36] = { 44.9, 12, 28, 1010 }, + [37] = { 44.9, 12, 28, 905 }, + [38] = { 45.8, 11.6, 28, 876 }, + [39] = { 45.9, 11.1, 28, 762 }, + [40] = { 45.9, 11, 28, 924 }, + [41] = { 45.8, 10.8, 28, 999 }, + [42] = { 45.6, 10.8, 28, 990 }, + [43] = { 45.7, 10.6, 28, 856 }, + [44] = { 45.3, 10.5, 28, 803 }, + [45] = { 45.2, 10.4, 28, 959 }, + [46] = { 45.2, 10.3, 28, 872 }, + [47] = { 45.3, 10, 28, 852 }, + [48] = { 45.2, 10, 28, 742 }, + [49] = { 45.7, 9.7, 28, 1002 }, + [50] = { 45.7, 9.7, 28, 988 }, + [51] = { 45.5, 9.5, 28, 832 }, + [52] = { 45.7, 9.5, 28, 984 }, + [53] = { 45.3, 9.4, 28, 873 }, + [54] = { 45.3, 9.3, 28, 953 }, + [55] = { 45.5, 8.9, 28, 1014 }, + [56] = { 45.5, 8.8, 28, 987 }, + [57] = { 93.7, 94.2, 139, 180 }, + [58] = { 94.5, 93.9, 139, 180 }, + [59] = { 93.6, 93.7, 139, 180 }, + [60] = { 93.2, 93.6, 139, 180 }, + [61] = { 92.9, 93.5, 139, 180 }, + [62] = { 93.3, 93.1, 139, 180 }, + [63] = { 94.9, 92.9, 139, 180 }, + [64] = { 93.6, 92.3, 139, 180 }, + [65] = { 95.3, 92.2, 139, 180 }, + [66] = { 94.9, 91.9, 139, 180 }, + [67] = { 93.1, 91.9, 139, 180 }, + [68] = { 93.4, 91.8, 139, 180 }, + [69] = { 93.7, 91.4, 139, 180 }, + [70] = { 93.2, 91.4, 139, 180 }, + [71] = { 93.9, 91.3, 139, 180 }, + [72] = { 95.9, 91.2, 139, 180 }, + [73] = { 93.5, 91, 139, 180 }, + [74] = { 95.9, 90.7, 139, 180 }, + [75] = { 95.4, 90.5, 139, 180 }, + [76] = { 96.2, 90.5, 139, 180 }, + [77] = { 91.8, 90.4, 139, 180 }, + [78] = { 93.8, 90.2, 139, 180 }, + [79] = { 95.8, 90, 139, 180 }, + [80] = { 95.5, 84.6, 139, 180 }, + [81] = { 94.8, 78.8, 139, 180 }, + [82] = { 55.8, 81.5, 4012, 180 }, + [83] = { 56.7, 81.1, 4012, 180 }, + [84] = { 55.6, 80.9, 4012, 180 }, + [85] = { 55.2, 80.8, 4012, 180 }, + [86] = { 54.8, 80.7, 4012, 180 }, + [87] = { 55.3, 80.2, 4012, 180 }, + [88] = { 57.3, 80, 4012, 180 }, + [89] = { 55.7, 79.2, 4012, 180 }, + [90] = { 57.8, 79.1, 4012, 180 }, + [91] = { 57.2, 78.7, 4012, 180 }, + [92] = { 55, 78.7, 4012, 180 }, + [93] = { 55.4, 78.6, 4012, 180 }, + [94] = { 55.8, 78.1, 4012, 180 }, + [95] = { 55.2, 78.1, 4012, 180 }, + [96] = { 56, 77.9, 4012, 180 }, + [97] = { 58.4, 77.8, 4012, 180 }, + [98] = { 55.5, 77.6, 4012, 180 }, + [99] = { 58.5, 77.2, 4012, 180 }, + [100] = { 57.9, 77.1, 4012, 180 }, + [101] = { 58.9, 77, 4012, 180 }, + [102] = { 53.5, 76.9, 4012, 180 }, + [103] = { 55.9, 76.7, 4012, 180 }, + [104] = { 58.3, 76.3, 4012, 180 }, + [105] = { 63.9, 75.7, 4012, 180 }, + [106] = { 64.3, 75.6, 4012, 180 }, + [107] = { 63.1, 75.6, 4012, 180 }, + [108] = { 63.6, 75.5, 4012, 180 }, + [109] = { 62.9, 75.3, 4012, 180 }, + [110] = { 64.4, 75, 4012, 180 }, + [111] = { 63.7, 75, 4012, 180 }, + [112] = { 63.4, 74.9, 4012, 180 }, + [113] = { 63.1, 74.9, 4012, 180 }, + [114] = { 58, 69.8, 4012, 180 }, + [115] = { 57.1, 62.7, 4012, 180 }, + [116] = { 57.6, 56.6, 4012, 180 }, + [117] = { 57.8, 55.2, 4012, 180 }, + [118] = { 58.1, 55.1, 4012, 180 }, + [119] = { 57.9, 54.9, 4012, 180 }, + [120] = { 57.4, 54.4, 4012, 180 }, + [121] = { 56.3, 54.2, 4012, 180 }, + [122] = { 56.6, 53.2, 4012, 180 }, + [123] = { 56.1, 53.2, 4012, 180 }, + [124] = { 57, 52.9, 4012, 180 }, + [125] = { 55.1, 52.2, 4012, 180 }, + [126] = { 56.2, 52.1, 4012, 180 }, + [127] = { 57.4, 52, 4012, 180 }, + [128] = { 55.5, 51.5, 4012, 180 }, + [129] = { 57.3, 51.2, 4012, 180 }, + [130] = { 56.2, 51.1, 4012, 180 }, + [131] = { 56.9, 50.7, 4012, 180 }, + [132] = { 56.1, 50.1, 4012, 180 }, + [133] = { 55.8, 45.7, 4012, 180 }, + [134] = { 59.5, 33.2, 4012, 180 }, + [135] = { 59.1, 32.9, 4012, 180 }, + [136] = { 59.4, 32.6, 4012, 300 }, + [137] = { 59.4, 32.1, 4012, 180 }, + [138] = { 57.7, 32, 4012, 300 }, + [139] = { 58.5, 31.8, 4012, 300 }, + [140] = { 57.6, 31.6, 4012, 180 }, + [141] = { 58.1, 31.6, 4012, 180 }, + [142] = { 58.6, 31.6, 4012, 180 }, + [143] = { 59, 31.1, 4012, 180 }, + [144] = { 58.1, 31, 4012, 180 }, + [145] = { 57.6, 30.9, 4012, 180 }, + [146] = { 59.9, 30.8, 4012, 300 }, + [147] = { 58.9, 30.8, 4012, 300 }, + [148] = { 61.1, 30.8, 4012, 300 }, + [149] = { 60.3, 30.3, 4012, 300 }, + [150] = { 62.1, 30.2, 4012, 300 }, + [151] = { 59.4, 29.5, 4012, 300 }, + [152] = { 62.2, 29.2, 4012, 180 }, + [153] = { 60.2, 28.3, 4012, 180 }, + [154] = { 17.9, 100, 5225, 983 }, + [155] = { 18.6, 99.9, 5225, 879 }, + [156] = { 17.5, 99.7, 5225, 822 }, + [157] = { 17.5, 99.6, 5225, 981 }, + [158] = { 18.1, 99.4, 5225, 996 }, + [159] = { 18, 99.4, 5225, 961 }, + [160] = { 17.8, 99.1, 5225, 802 }, + [161] = { 16.7, 96.3, 5225, 1016 }, + [162] = { 16.5, 96.2, 5225, 978 }, + [163] = { 15.9, 95.9, 5225, 887 }, + [164] = { 15.5, 95.7, 5225, 952 }, + [165] = { 15.7, 95.6, 5225, 838 }, + [166] = { 15.9, 95.5, 5225, 816 }, + [167] = { 16.5, 94.8, 5225, 781 }, + [168] = { 16.6, 94.7, 5225, 851 }, + [169] = { 16.5, 94.6, 5225, 868 }, + [170] = { 17.4, 94.6, 5225, 807 }, + [171] = { 17.3, 94.5, 5225, 833 }, + [172] = { 16, 94.4, 5225, 899 }, + [173] = { 15.8, 94.4, 5225, 849 }, + [174] = { 18.2, 94.2, 5225, 866 }, + [175] = { 18.1, 94.1, 5225, 788 }, + [176] = { 18.2, 94.1, 5225, 816 }, + [177] = { 16.5, 93.7, 5225, 1010 }, + [178] = { 16.5, 93.6, 5225, 905 }, + [179] = { 17.8, 93.1, 5225, 876 }, + [180] = { 17.9, 92.4, 5225, 762 }, + [181] = { 17.8, 92.2, 5225, 924 }, + [182] = { 17.7, 92, 5225, 999 }, + [183] = { 17.5, 91.9, 5225, 990 }, + [184] = { 17.6, 91.7, 5225, 856 }, + [185] = { 17, 91.6, 5225, 803 }, + [186] = { 16.9, 91.4, 5225, 959 }, + [187] = { 17, 91.2, 5225, 872 }, + [188] = { 17.1, 90.8, 5225, 852 }, + [189] = { 16.9, 90.8, 5225, 742 }, + [190] = { 17.6, 90.4, 5225, 1002 }, + [191] = { 17.6, 90.4, 5225, 988 }, + [192] = { 17.4, 90.1, 5225, 832 }, + [193] = { 17.6, 90.1, 5225, 984 }, + [194] = { 17.1, 90, 5225, 873 }, + [195] = { 17.1, 89.8, 5225, 953 }, + [196] = { 17.4, 89.3, 5225, 1014 }, + [197] = { 17.4, 89.1, 5225, 987 }, + }, + ["lvl"] = "55-57", + }, + [1884] = { + ["coords"] = { + [1] = { 48.5, 35.8, 28, 315 }, + [2] = { 46.3, 35.5, 28, 315 }, + [3] = { 44.2, 35.4, 28, 315 }, + [4] = { 45.3, 35, 28, 315 }, + [5] = { 44.4, 34.4, 28, 315 }, + [6] = { 45, 34.3, 28, 315 }, + [7] = { 49.4, 34.3, 28, 315 }, + [8] = { 44.3, 34.2, 28, 315 }, + [9] = { 45.1, 34.2, 28, 315 }, + [10] = { 44.1, 33.9, 28, 315 }, + [11] = { 44.8, 33.8, 28, 315 }, + [12] = { 44.8, 33.7, 28, 315 }, + [13] = { 46.6, 33.5, 28, 315 }, + [14] = { 46.3, 33.4, 28, 315 }, + [15] = { 44.6, 33.4, 28, 315 }, + [16] = { 45.4, 33.2, 28, 315 }, + [17] = { 48.6, 33, 28, 315 }, + [18] = { 48, 33, 28, 315 }, + [19] = { 47.7, 32.6, 28, 315 }, + [20] = { 48.2, 32.2, 28, 315 }, + [21] = { 46.5, 32.2, 28, 315 }, + [22] = { 48.5, 32, 28, 315 }, + [23] = { 48.3, 31.8, 28, 315 }, + [24] = { 49.4, 31.4, 28, 315 }, + [25] = { 47.6, 30.8, 28, 315 }, + [26] = { 91.4, 66.8, 139, 180 }, + [27] = { 90.2, 66.4, 139, 180 }, + [28] = { 90.3, 65.8, 139, 180 }, + [29] = { 90.1, 65.5, 139, 180 }, + [30] = { 90.7, 64.8, 139, 180 }, + [31] = { 91.4, 64.3, 139, 180 }, + [32] = { 53, 47.9, 4012, 180 }, + [33] = { 51.5, 47.4, 4012, 180 }, + [34] = { 53.3, 47, 4012, 180 }, + [35] = { 51.6, 46.8, 4012, 180 }, + [36] = { 51.3, 46.4, 4012, 180 }, + [37] = { 54, 46.3, 4012, 180 }, + [38] = { 53.3, 45.8, 4012, 300 }, + [39] = { 52.1, 45.6, 4012, 180 }, + [40] = { 54.3, 45.4, 4012, 300 }, + [41] = { 52.9, 45, 4012, 180 }, + [42] = { 53.8, 44.7, 4012, 180 }, + [43] = { 54.7, 44, 4012, 300 }, + [44] = { 54.1, 43.6, 4012, 180 }, + }, + ["lvl"] = "54-56", + }, + [1885] = { + ["coords"] = { + [1] = { 43.6, 12.9, 28, 27000 }, + [2] = { 59, 32.4, 4012, 27000 }, + [3] = { 14.7, 94.9, 5225, 27000 }, + }, + ["lvl"] = "59", + ["rnk"] = "2", + }, + [1888] = { + ["coords"] = { + [1] = { 58.9, 80.6, 130, 413 }, + [2] = { 62.1, 80.1, 130, 413 }, + [3] = { 59.8, 79.8, 130, 413 }, + [4] = { 61.2, 79.7, 130, 413 }, + [5] = { 57.8, 78.7, 130, 413 }, + [6] = { 56, 78, 130, 413 }, + [7] = { 57.8, 77.6, 130, 413 }, + [8] = { 63.1, 77.3, 130, 413 }, + [9] = { 63.6, 77.2, 130, 413 }, + [10] = { 62.3, 77.2, 130, 413 }, + [11] = { 61.9, 77.1, 130, 413 }, + [12] = { 62.5, 76.7, 130, 413 }, + [13] = { 62.9, 76.5, 130, 413 }, + [14] = { 63.2, 76.4, 130, 413 }, + [15] = { 59.4, 76.3, 130, 413 }, + [16] = { 60.1, 76, 130, 413 }, + [17] = { 61.2, 75.9, 130, 413 }, + [18] = { 62.7, 75.4, 130, 413 }, + [19] = { 60.4, 74.8, 130, 413 }, + [20] = { 62.4, 74.4, 130, 413 }, + [21] = { 62.6, 73.4, 130, 413 }, + [22] = { 64.6, 63.7, 130, 413 }, + [23] = { 64.7, 61.9, 130, 413 }, + [24] = { 63, 61, 130, 413 }, + [25] = { 64.2, 59.6, 130, 413 }, + [26] = { 63.3, 59.3, 130, 413 }, + [27] = { 66.3, 59.1, 130, 413 }, + [28] = { 65.1, 58.8, 130, 413 }, + [29] = { 63.5, 58.2, 130, 413 }, + [30] = { 64.5, 58, 130, 413 }, + [31] = { 65.8, 57.7, 130, 413 }, + [32] = { 63.9, 57.3, 130, 413 }, + [33] = { 63.8, 57.1, 130, 413 }, + [34] = { 64.4, 56.4, 130, 413 }, + [35] = { 65.2, 56.3, 130, 413 }, + [36] = { 7.1, 45.7, 267, 413 }, + [37] = { 5.8, 45.3, 267, 413 }, + [38] = { 8.3, 42.1, 267, 413 }, + [39] = { 9, 42, 267, 413 }, + [40] = { 7.3, 41.9, 267, 413 }, + [41] = { 6.8, 41.8, 267, 413 }, + [42] = { 7.5, 41.3, 267, 413 }, + [43] = { 8.1, 41, 267, 413 }, + [44] = { 8.5, 40.9, 267, 413 }, + [45] = { 7.8, 39.6, 267, 413 }, + [46] = { 7.7, 37, 267, 413 }, + [47] = { 10.3, 24.2, 267, 413 }, + [48] = { 10.4, 21.8, 267, 413 }, + [49] = { 8.2, 20.6, 267, 413 }, + [50] = { 9.7, 18.8, 267, 413 }, + [51] = { 8.7, 18.5, 267, 413 }, + [52] = { 12.5, 18.2, 267, 413 }, + [53] = { 11, 17.8, 267, 413 }, + [54] = { 8.8, 17.1, 267, 413 }, + [55] = { 10.1, 16.7, 267, 413 }, + [56] = { 11.9, 16.3, 267, 413 }, + [57] = { 9.4, 15.8, 267, 413 }, + [58] = { 9.2, 15.5, 267, 413 }, + [59] = { 10.1, 14.6, 267, 413 }, + [60] = { 11.1, 14.5, 267, 413 }, + [61] = { 62.1, 9.4, 5179, 413 }, + [62] = { 65.8, 8.9, 5179, 413 }, + [63] = { 63.2, 8.5, 5179, 413 }, + [64] = { 64.7, 8.5, 5179, 413 }, + [65] = { 60.8, 7.3, 5179, 413 }, + [66] = { 58.7, 6.5, 5179, 413 }, + [67] = { 60.8, 6, 5179, 413 }, + [68] = { 66.9, 5.7, 5179, 413 }, + [69] = { 67.5, 5.6, 5179, 413 }, + [70] = { 66, 5.5, 5179, 413 }, + [71] = { 65.6, 5.4, 5179, 413 }, + [72] = { 66.2, 5, 5179, 413 }, + [73] = { 66.7, 4.7, 5179, 413 }, + [74] = { 67.1, 4.7, 5179, 413 }, + [75] = { 62.7, 4.5, 5179, 413 }, + [76] = { 63.4, 4.2, 5179, 413 }, + [77] = { 64.7, 4, 5179, 413 }, + [78] = { 66.4, 3.5, 5179, 413 }, + [79] = { 63.9, 2.8, 5179, 413 }, + [80] = { 66.1, 2.3, 5179, 413 }, + [81] = { 66.4, 1.2, 5179, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "18-19", + }, + [1889] = { + ["coords"] = { + [1] = { 66.3, 78.2, 130, 413 }, + [2] = { 65.2, 78, 130, 413 }, + [3] = { 57.6, 77.5, 130, 413 }, + [4] = { 62.5, 76.6, 130, 413 }, + [5] = { 62.3, 76.4, 130, 413 }, + [6] = { 64.8, 76.3, 130, 413 }, + [7] = { 62.9, 76.3, 130, 413 }, + [8] = { 62.9, 76.2, 130, 413 }, + [9] = { 65.9, 75.7, 130, 413 }, + [10] = { 64.6, 75.4, 130, 413 }, + [11] = { 65, 74, 130, 413 }, + [12] = { 64.1, 73.9, 130, 413 }, + [13] = { 63, 72.7, 130, 413 }, + [14] = { 63.4, 65.6, 130, 413 }, + [15] = { 63.1, 65.5, 130, 413 }, + [16] = { 63.4, 65.3, 130, 413 }, + [17] = { 64.2, 59.7, 130, 413 }, + [18] = { 63.8, 58.9, 130, 413 }, + [19] = { 63.4, 58.9, 130, 413 }, + [20] = { 63.8, 58.8, 130, 413 }, + [21] = { 63.9, 58.7, 130, 413 }, + [22] = { 65, 58.5, 130, 413 }, + [23] = { 63.2, 58.4, 130, 413 }, + [24] = { 63.2, 58.2, 130, 413 }, + [25] = { 63.5, 58.1, 130, 413 }, + [26] = { 63.4, 57.1, 130, 413 }, + [27] = { 64, 56.8, 130, 413 }, + [28] = { 65.4, 56.4, 130, 413 }, + [29] = { 65.1, 52.3, 130, 413 }, + [30] = { 65.8, 50.7, 130, 413 }, + [31] = { 64.9, 49.8, 130, 413 }, + [32] = { 66.1, 49.6, 130, 413 }, + [33] = { 12.6, 43.3, 267, 413 }, + [34] = { 11.1, 43, 267, 413 }, + [35] = { 7.5, 41.2, 267, 413 }, + [36] = { 7.3, 41, 267, 413 }, + [37] = { 10.6, 40.8, 267, 413 }, + [38] = { 8.1, 40.7, 267, 413 }, + [39] = { 8, 40.6, 267, 413 }, + [40] = { 12, 40, 267, 413 }, + [41] = { 10.3, 39.7, 267, 413 }, + [42] = { 10.9, 37.8, 267, 413 }, + [43] = { 9.7, 37.7, 267, 413 }, + [44] = { 8.2, 36.1, 267, 413 }, + [45] = { 8.7, 26.7, 267, 413 }, + [46] = { 8.4, 26.6, 267, 413 }, + [47] = { 8.7, 26.3, 267, 413 }, + [48] = { 9.8, 18.9, 267, 413 }, + [49] = { 9.2, 18, 267, 413 }, + [50] = { 8.7, 17.9, 267, 413 }, + [51] = { 9.3, 17.8, 267, 413 }, + [52] = { 9.3, 17.7, 267, 413 }, + [53] = { 10.8, 17.4, 267, 413 }, + [54] = { 8.5, 17.3, 267, 413 }, + [55] = { 8.5, 17.1, 267, 413 }, + [56] = { 8.9, 16.9, 267, 413 }, + [57] = { 8.7, 15.6, 267, 413 }, + [58] = { 9.6, 15.2, 267, 413 }, + [59] = { 11.3, 14.7, 267, 413 }, + [60] = { 70.6, 6.7, 5179, 413 }, + [61] = { 69.3, 6.5, 5179, 413 }, + [62] = { 60.6, 5.9, 5179, 413 }, + [63] = { 66.2, 4.9, 5179, 413 }, + [64] = { 66, 4.7, 5179, 413 }, + [65] = { 68.9, 4.6, 5179, 413 }, + [66] = { 66.7, 4.5, 5179, 413 }, + [67] = { 66.6, 4.4, 5179, 413 }, + [68] = { 70.1, 3.8, 5179, 413 }, + [69] = { 68.6, 3.6, 5179, 413 }, + [70] = { 69.1, 1.9, 5179, 413 }, + [71] = { 68.1, 1.8, 5179, 413 }, + [72] = { 66.8, 0.4, 5179, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "19-20", + }, + [1890] = { + ["coords"] = { + [1] = { 34.4, 65.1, 85, 300 }, + [2] = { 34.2, 64.7, 85, 300 }, + [3] = { 34.6, 64.4, 85, 300 }, + [4] = { 33, 63, 85, 300 }, + [5] = { 34.3, 62.9, 85, 300 }, + [6] = { 33.6, 62.5, 85, 300 }, + [7] = { 33.9, 61.9, 85, 300 }, + [8] = { 32.2, 61.7, 85, 300 }, + [9] = { 31.9, 61.7, 85, 300 }, + [10] = { 33.3, 61.7, 85, 300 }, + [11] = { 32.9, 61.6, 85, 300 }, + [12] = { 32, 61, 85, 300 }, + [13] = { 31, 60.8, 85, 300 }, + [14] = { 33.8, 60.8, 85, 300 }, + [15] = { 32.7, 60.5, 85, 300 }, + [16] = { 31.5, 60.3, 85, 300 }, + [17] = { 33.2, 60.1, 85, 300 }, + [18] = { 32, 60.1, 85, 300 }, + [19] = { 33.1, 59.6, 85, 300 }, + [20] = { 32.2, 59.3, 85, 300 }, + }, + ["lvl"] = "2-3", + }, + [1891] = { + ["coords"] = { + [1] = { 46, 75.1, 130, 300 }, + [2] = { 45, 75, 130, 300 }, + [3] = { 45.6, 74.9, 130, 300 }, + [4] = { 44.6, 74.4, 130, 300 }, + [5] = { 47.4, 74, 130, 300 }, + [6] = { 44.7, 73.3, 130, 300 }, + [7] = { 42.8, 73.1, 130, 300 }, + [8] = { 46.6, 73, 130, 300 }, + [9] = { 45.3, 72.4, 130, 300 }, + [10] = { 45.8, 72.3, 130, 300 }, + [11] = { 48.3, 72.2, 130, 300 }, + [12] = { 47.7, 72, 130, 300 }, + [13] = { 43.8, 72, 130, 300 }, + [14] = { 44, 71.8, 130, 300 }, + [15] = { 45.2, 71.8, 130, 300 }, + [16] = { 47.3, 3.2, 5179, 300 }, + [17] = { 46.1, 3.1, 5179, 300 }, + [18] = { 46.9, 3, 5179, 300 }, + [19] = { 45.7, 2.3, 5179, 300 }, + [20] = { 48.9, 1.9, 5179, 300 }, + [21] = { 45.8, 1.1, 5179, 300 }, + [22] = { 43.6, 0.9, 5179, 300 }, + [23] = { 48, 0.8, 5179, 300 }, + [24] = { 46.6, 0.1, 5179, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "13-14", + ["rnk"] = "1", + }, + [1894] = { + ["coords"] = { + [1] = { 45.5, 75.3, 130, 300 }, + [2] = { 46.2, 74.2, 130, 300 }, + [3] = { 47.6, 74.2, 130, 300 }, + [4] = { 47.4, 74, 130, 300 }, + [5] = { 44.8, 73.8, 130, 300 }, + [6] = { 44, 73.5, 130, 300 }, + [7] = { 47.2, 73.5, 130, 300 }, + [8] = { 43.3, 73.3, 130, 300 }, + [9] = { 43.6, 73.3, 130, 300 }, + [10] = { 44.7, 73.2, 130, 300 }, + [11] = { 48, 73.1, 130, 300 }, + [12] = { 42.7, 73, 130, 300 }, + [13] = { 43.8, 72.8, 130, 300 }, + [14] = { 44.5, 72.3, 130, 300 }, + [15] = { 45.2, 71.7, 130, 300 }, + [16] = { 45.3, 71.6, 130, 300 }, + [17] = { 45.2, 71.4, 130, 300 }, + [18] = { 46.7, 3.4, 5179, 300 }, + [19] = { 47.6, 2.2, 5179, 300 }, + [20] = { 49.1, 2.1, 5179, 300 }, + [21] = { 48.9, 1.8, 5179, 300 }, + [22] = { 45.9, 1.6, 5179, 300 }, + [23] = { 45, 1.3, 5179, 300 }, + [24] = { 48.7, 1.3, 5179, 300 }, + [25] = { 44.2, 1.1, 5179, 300 }, + [26] = { 44.6, 1.1, 5179, 300 }, + [27] = { 44.2, 1, 5179, 300 }, + [28] = { 45.8, 1, 5179, 300 }, + [29] = { 49.6, 0.9, 5179, 300 }, + [30] = { 43.6, 0.8, 5179, 300 }, + [31] = { 44.8, 0.5, 5179, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "14-15", + ["rnk"] = "1", + }, + [1895] = { + ["coords"] = { + [1] = { 45.4, 74.7, 130, 300 }, + [2] = { 44.5, 74.5, 130, 300 }, + [3] = { 44.5, 74.3, 130, 300 }, + [4] = { 46, 74.2, 130, 300 }, + [5] = { 44.5, 74.2, 130, 300 }, + [6] = { 47.6, 74.1, 130, 300 }, + [7] = { 48, 73.5, 130, 300 }, + [8] = { 43.5, 73.1, 130, 300 }, + [9] = { 45.6, 72.2, 130, 300 }, + [10] = { 46.3, 71.8, 130, 300 }, + [11] = { 45.3, 71.3, 130, 300 }, + [12] = { 45.2, 71.1, 130, 300 }, + [13] = { 46.6, 2.7, 5179, 300 }, + [14] = { 45.6, 2.5, 5179, 300 }, + [15] = { 45.6, 2.3, 5179, 300 }, + [16] = { 47.3, 2.2, 5179, 300 }, + [17] = { 45.6, 2.1, 5179, 300 }, + [18] = { 49.1, 2, 5179, 300 }, + [19] = { 49.7, 1.3, 5179, 300 }, + [20] = { 44.4, 0.8, 5179, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "14-15", + ["rnk"] = "1", + }, + [1907] = { + ["coords"] = { + [1] = { 27.9, 64.6, 33, 300 }, + [2] = { 28.2, 64.4, 33, 300 }, + [3] = { 24.5, 64.4, 33, 300 }, + [4] = { 26.9, 63.7, 33, 300 }, + [5] = { 25.1, 63.7, 33, 300 }, + [6] = { 24, 63.6, 33, 300 }, + [7] = { 28, 63.4, 33, 300 }, + [8] = { 25.7, 63.2, 33, 300 }, + [9] = { 28, 63.1, 33, 300 }, + [10] = { 27.3, 63, 33, 300 }, + [11] = { 24.7, 63, 33, 300 }, + [12] = { 27, 62.5, 33, 300 }, + [13] = { 26.2, 62.4, 33, 300 }, + [14] = { 27.8, 62.3, 33, 300 }, + [15] = { 24.1, 62.3, 33, 300 }, + [16] = { 27.9, 61.6, 33, 300 }, + [17] = { 25.7, 61.3, 33, 300 }, + [18] = { 26.3, 60.7, 33, 300 }, + [19] = { 27, 60.6, 33, 300 }, + [20] = { 25, 60.5, 33, 300 }, + [21] = { 26.4, 60, 33, 300 }, + [22] = { 27.1, 59.7, 33, 300 }, + }, + ["lvl"] = "43-44", + }, + [1910] = { + ["coords"] = { + [1] = { 36.5, 42.4, 85, 9000 }, + }, + ["lvl"] = "10", + ["rnk"] = "4", + }, + [1911] = { + ["coords"] = { + [1] = { 63.3, 27.5, 85, 9000 }, + }, + ["lvl"] = "12", + ["rnk"] = "4", + }, + [1912] = { + ["coords"] = { + [1] = { 62.8, 68.5, 130, 413 }, + [2] = { 55.2, 67.8, 130, 413 }, + [3] = { 57.6, 67.5, 130, 413 }, + [4] = { 61.7, 66.9, 130, 413 }, + [5] = { 60.1, 66.5, 130, 413 }, + [6] = { 58.5, 66.5, 130, 413 }, + [7] = { 60.1, 66, 130, 413 }, + [8] = { 60.2, 65.9, 130, 413 }, + [9] = { 58, 65.6, 130, 413 }, + [10] = { 59.6, 65.2, 130, 413 }, + [11] = { 58.8, 65.2, 130, 413 }, + [12] = { 60.9, 65, 130, 413 }, + [13] = { 58, 64.4, 130, 413 }, + [14] = { 57.3, 63.5, 130, 413 }, + [15] = { 60.9, 63.3, 130, 413 }, + [16] = { 58.6, 63.2, 130, 413 }, + [17] = { 62, 62.8, 130, 413 }, + [18] = { 58, 62.6, 130, 413 }, + [19] = { 60.8, 62.5, 130, 413 }, + [20] = { 59.9, 62.3, 130, 413 }, + [21] = { 59.1, 61.9, 130, 413 }, + [22] = { 58, 61.9, 130, 413 }, + [23] = { 62.1, 61.4, 130, 413 }, + [24] = { 55.5, 61.2, 130, 413 }, + [25] = { 55, 60.4, 130, 413 }, + [26] = { 56.5, 58.7, 130, 413 }, + [27] = { 55.5, 56.3, 130, 413 }, + [28] = { 54.9, 54.4, 130, 413 }, + [29] = { 56.7, 54.4, 130, 413 }, + [30] = { 7.9, 30.5, 267, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "14-15", + }, + [1913] = { + ["coords"] = { + [1] = { 63.5, 65.4, 130, 413 }, + [2] = { 63.6, 64, 130, 413 }, + [3] = { 62.5, 63.9, 130, 413 }, + [4] = { 64, 63.9, 130, 413 }, + [5] = { 62.7, 63.4, 130, 413 }, + [6] = { 63.5, 63.1, 130, 413 }, + [7] = { 62.7, 62.4, 130, 413 }, + [8] = { 63, 62.3, 130, 413 }, + [9] = { 63, 62.2, 130, 413 }, + [10] = { 8.9, 26.5, 267, 413 }, + [11] = { 9, 24.7, 267, 413 }, + [12] = { 7.6, 24.5, 267, 413 }, + [13] = { 9.5, 24.5, 267, 413 }, + [14] = { 7.9, 23.8, 267, 413 }, + [15] = { 8.9, 23.4, 267, 413 }, + [16] = { 7.8, 22.5, 267, 413 }, + [17] = { 8.2, 22.4, 267, 413 }, + [18] = { 8.2, 22.3, 267, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "16-17", + }, + [1914] = { + ["coords"] = { + [1] = { 62.1, 71.8, 130, 413 }, + [2] = { 62.8, 69.6, 130, 413 }, + [3] = { 61.6, 69, 130, 413 }, + [4] = { 62.7, 67.6, 130, 413 }, + [5] = { 62.6, 67.5, 130, 413 }, + [6] = { 59, 67.1, 130, 413 }, + [7] = { 60.4, 66.7, 130, 413 }, + [8] = { 59.7, 66.5, 130, 413 }, + [9] = { 60.4, 66.5, 130, 413 }, + [10] = { 58, 66.3, 130, 413 }, + [11] = { 59.2, 65.6, 130, 413 }, + [12] = { 60.2, 65.3, 130, 413 }, + [13] = { 57.6, 64.3, 130, 413 }, + [14] = { 59.6, 63.2, 130, 413 }, + [15] = { 61.3, 62.6, 130, 413 }, + [16] = { 60.8, 62.5, 130, 413 }, + [17] = { 58.9, 62.4, 130, 413 }, + [18] = { 59.9, 62.4, 130, 413 }, + [19] = { 59.8, 62.4, 130, 413 }, + [20] = { 59.4, 61.9, 130, 413 }, + [21] = { 59.1, 61.8, 130, 413 }, + [22] = { 8, 32, 267, 413 }, + [23] = { 7.8, 29.4, 267, 413 }, + [24] = { 7.7, 29.2, 267, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "15-16", + }, + [1915] = { + ["coords"] = { + [1] = { 63.8, 65.8, 130, 413 }, + [2] = { 63.2, 65.3, 130, 413 }, + [3] = { 63.5, 65.3, 130, 413 }, + [4] = { 62.7, 64.6, 130, 413 }, + [5] = { 63.4, 63.8, 130, 413 }, + [6] = { 62.8, 63.5, 130, 413 }, + [7] = { 63.3, 63.4, 130, 413 }, + [8] = { 63.2, 62.5, 130, 413 }, + [9] = { 63, 62.1, 130, 413 }, + [10] = { 9.3, 27, 267, 413 }, + [11] = { 8.4, 26.3, 267, 413 }, + [12] = { 8.9, 26.3, 267, 413 }, + [13] = { 7.8, 25.4, 267, 413 }, + [14] = { 8.8, 24.3, 267, 413 }, + [15] = { 7.9, 23.9, 267, 413 }, + [16] = { 8.6, 23.8, 267, 413 }, + [17] = { 8.5, 22.7, 267, 413 }, + [18] = { 8.2, 22.1, 267, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "17-18", + }, + [1916] = { + ["coords"] = { + [1] = { 36.4, 61.9, 85, 120 }, + }, + ["lvl"] = "2-3", + }, + [1917] = { + ["coords"] = { + [1] = { 36.7, 62.1, 85, 120 }, + }, + ["lvl"] = "2-3", + }, + [1918] = { + ["coords"] = { + [1] = { 36.8, 61.9, 85, 120 }, + }, + ["lvl"] = "2-3", + }, + [1919] = { + ["coords"] = { + [1] = { 36.7, 61.6, 85, 120 }, + }, + ["lvl"] = "5", + }, + [1922] = { + ["coords"] = { + [1] = { 60.4, 71.3, 12, 270 }, + [2] = { 62.2, 70.9, 12, 270 }, + [3] = { 61.1, 70.1, 12, 270 }, + [4] = { 69.9, 69.5, 12, 270 }, + [5] = { 59.2, 69.4, 12, 270 }, + [6] = { 63.1, 69, 12, 270 }, + [7] = { 74, 68.9, 12, 270 }, + [8] = { 59.9, 68.6, 12, 270 }, + [9] = { 66.2, 67.8, 12, 270 }, + [10] = { 72.8, 67.6, 12, 270 }, + [11] = { 59.4, 66.9, 12, 270 }, + [12] = { 61.3, 66.8, 12, 270 }, + [13] = { 60.2, 66.7, 12, 270 }, + [14] = { 71.6, 66.5, 12, 270 }, + [15] = { 73.8, 66.2, 12, 270 }, + [16] = { 59.8, 65.9, 12, 270 }, + [17] = { 68.2, 65.8, 12, 270 }, + [18] = { 60.1, 65.8, 12, 270 }, + [19] = { 66.2, 65.6, 12, 270 }, + [20] = { 59.7, 65.4, 12, 270 }, + [21] = { 68.6, 65.1, 12, 270 }, + [22] = { 74.2, 64.9, 12, 270 }, + [23] = { 59.1, 64.7, 12, 270 }, + [24] = { 65.1, 64.4, 12, 270 }, + [25] = { 60.9, 64.3, 12, 270 }, + [26] = { 60.1, 64.3, 12, 270 }, + [27] = { 69.3, 64.1, 12, 270 }, + [28] = { 67.6, 64.1, 12, 270 }, + [29] = { 60.6, 64, 12, 270 }, + [30] = { 58.7, 63.9, 12, 270 }, + [31] = { 60.6, 63.7, 12, 270 }, + [32] = { 63.2, 63.7, 12, 270 }, + [33] = { 73.8, 63.6, 12, 270 }, + [34] = { 65.6, 63.6, 12, 270 }, + [35] = { 70.4, 63.6, 12, 270 }, + [36] = { 60.9, 63.6, 12, 270 }, + [37] = { 72.8, 63.2, 12, 270 }, + [38] = { 71.8, 63.2, 12, 270 }, + [39] = { 69, 62.9, 12, 270 }, + [40] = { 66.9, 62.8, 12, 270 }, + [41] = { 67.6, 62.2, 12, 270 }, + [42] = { 58.4, 62.1, 12, 270 }, + [43] = { 69.8, 61.8, 12, 270 }, + [44] = { 70.5, 61.8, 12, 270 }, + [45] = { 60.9, 61.5, 12, 270 }, + [46] = { 61.8, 61.1, 12, 270 }, + [47] = { 71.4, 61.1, 12, 270 }, + [48] = { 64.6, 60.3, 12, 270 }, + [49] = { 60.4, 59.7, 12, 270 }, + [50] = { 68.4, 59.5, 12, 270 }, + [51] = { 66.4, 58.2, 12, 270 }, + [52] = { 68.1, 57.9, 12, 270 }, + [53] = { 69, 57.4, 12, 270 }, + }, + ["lvl"] = "7-8", + }, + [1923] = { + ["coords"] = { + [1] = { 50.2, 84.9, 130, 413 }, + [2] = { 49.7, 84.2, 130, 413 }, + [3] = { 49.4, 82.6, 130, 413 }, + [4] = { 48.9, 82, 130, 413 }, + [5] = { 52.5, 81.8, 130, 413 }, + [6] = { 48.7, 80.8, 130, 413 }, + [7] = { 47.5, 80.8, 130, 413 }, + [8] = { 44.6, 80.7, 130, 413 }, + [9] = { 48.4, 80.3, 130, 413 }, + [10] = { 55, 80.3, 130, 413 }, + [11] = { 51.7, 79.5, 130, 413 }, + [12] = { 45.9, 79.3, 130, 413 }, + [13] = { 52.2, 78.2, 130, 413 }, + [14] = { 51.5, 77.9, 130, 413 }, + [15] = { 49.8, 77.7, 130, 413 }, + [16] = { 48.3, 77.3, 130, 413 }, + [17] = { 46.7, 77.1, 130, 413 }, + [18] = { 51.8, 76.7, 130, 413 }, + [19] = { 50, 76.4, 130, 413 }, + [20] = { 51.6, 76.4, 130, 413 }, + [21] = { 49.7, 75.4, 130, 413 }, + [22] = { 49.8, 74, 130, 413 }, + [23] = { 52.2, 14.3, 5179, 413 }, + [24] = { 51.5, 13.6, 5179, 413 }, + [25] = { 51.3, 11.7, 5179, 413 }, + [26] = { 50.7, 11, 5179, 413 }, + [27] = { 54.7, 10.9, 5179, 413 }, + [28] = { 50.5, 9.7, 5179, 413 }, + [29] = { 49, 9.7, 5179, 413 }, + [30] = { 45.7, 9.6, 5179, 413 }, + [31] = { 50.1, 9.2, 5179, 413 }, + [32] = { 57.7, 9.1, 5179, 413 }, + [33] = { 53.8, 8.2, 5179, 413 }, + [34] = { 47.2, 8, 5179, 413 }, + [35] = { 54.4, 6.7, 5179, 413 }, + [36] = { 53.6, 6.4, 5179, 413 }, + [37] = { 51.7, 6.1, 5179, 413 }, + [38] = { 49.9, 5.7, 5179, 413 }, + [39] = { 48.1, 5.5, 5179, 413 }, + [40] = { 54, 5, 5179, 413 }, + [41] = { 51.9, 4.7, 5179, 413 }, + [42] = { 53.7, 4.7, 5179, 413 }, + [43] = { 51.5, 3.5, 5179, 413 }, + [44] = { 51.7, 1.9, 5179, 413 }, + }, + ["lvl"] = "16-17", + }, + [1924] = { + ["coords"] = { + [1] = { 52.5, 86.4, 130, 413 }, + [2] = { 51.6, 85.4, 130, 413 }, + [3] = { 53.5, 84.7, 130, 413 }, + [4] = { 46.9, 82.5, 130, 413 }, + [5] = { 53.1, 82.5, 130, 413 }, + [6] = { 48.3, 82.3, 130, 413 }, + [7] = { 55, 81.4, 130, 413 }, + [8] = { 49.9, 80.5, 130, 413 }, + [9] = { 45.2, 80.5, 130, 413 }, + [10] = { 50.8, 79.6, 130, 413 }, + [11] = { 46.8, 79.5, 130, 413 }, + [12] = { 44.5, 79.2, 130, 413 }, + [13] = { 49.1, 79, 130, 413 }, + [14] = { 51.7, 78.9, 130, 413 }, + [15] = { 48.1, 78.3, 130, 413 }, + [16] = { 54.7, 78.2, 130, 413 }, + [17] = { 46.6, 78.2, 130, 413 }, + [18] = { 47.3, 77.5, 130, 413 }, + [19] = { 54.1, 77, 130, 413 }, + [20] = { 50.8, 77, 130, 413 }, + [21] = { 49.1, 76.3, 130, 413 }, + [22] = { 48.1, 75.7, 130, 413 }, + [23] = { 53.1, 75.4, 130, 413 }, + [24] = { 51, 75.2, 130, 413 }, + [25] = { 52.3, 74.5, 130, 413 }, + [26] = { 51.1, 74.3, 130, 413 }, + [27] = { 49.7, 73.8, 130, 413 }, + [28] = { 58.5, 42.3, 130, 413 }, + [29] = { 58.7, 42.3, 130, 413 }, + [30] = { 57.9, 41.4, 130, 413 }, + [31] = { 60.3, 41.4, 130, 413 }, + [32] = { 60.5, 41.4, 130, 413 }, + [33] = { 59.6, 41, 130, 413 }, + [34] = { 54.8, 16.1, 5179, 413 }, + [35] = { 53.7, 14.9, 5179, 413 }, + [36] = { 55.9, 14.2, 5179, 413 }, + [37] = { 48.3, 11.6, 5179, 413 }, + [38] = { 55.5, 11.6, 5179, 413 }, + [39] = { 50, 11.4, 5179, 413 }, + [40] = { 57.6, 10.3, 5179, 413 }, + [41] = { 51.7, 9.4, 5179, 413 }, + [42] = { 46.4, 9.3, 5179, 413 }, + [43] = { 52.8, 8.3, 5179, 413 }, + [44] = { 48.2, 8.2, 5179, 413 }, + [45] = { 45.6, 7.8, 5179, 413 }, + [46] = { 50.9, 7.6, 5179, 413 }, + [47] = { 53.9, 7.5, 5179, 413 }, + [48] = { 49.7, 6.8, 5179, 413 }, + [49] = { 57.3, 6.8, 5179, 413 }, + [50] = { 48.1, 6.7, 5179, 413 }, + [51] = { 48.8, 5.9, 5179, 413 }, + [52] = { 56.6, 5.3, 5179, 413 }, + [53] = { 52.8, 5.3, 5179, 413 }, + [54] = { 50.9, 4.6, 5179, 413 }, + [55] = { 49.7, 3.8, 5179, 413 }, + [56] = { 55.5, 3.5, 5179, 413 }, + [57] = { 53, 3.3, 5179, 413 }, + [58] = { 54.5, 2.5, 5179, 413 }, + [59] = { 53.2, 2.2, 5179, 413 }, + [60] = { 51.6, 1.6, 5179, 413 }, + }, + ["lvl"] = "15-16", + }, + [1925] = "_", + [1926] = "_", + [1927] = "_", + [1928] = "_", + [1929] = "_", + [1930] = "_", + [1932] = "_", + [1933] = { + ["coords"] = { + [1] = { 35.3, 87.3, 12, 270 }, + [2] = { 52.7, 84.5, 12, 270 }, + [3] = { 78, 82, 12, 270 }, + [4] = { 31.2, 81, 12, 270 }, + [5] = { 65.5, 79, 12, 270 }, + [6] = { 64.2, 75.8, 12, 270 }, + [7] = { 56.7, 75, 12, 270 }, + [8] = { 89.4, 73.3, 12, 270 }, + [9] = { 78.1, 70.7, 12, 270 }, + [10] = { 44.2, 70.6, 12, 270 }, + [11] = { 41.9, 69.8, 12, 270 }, + [12] = { 39.2, 68.1, 12, 270 }, + [13] = { 40, 61.7, 12, 270 }, + [14] = { 31, 58, 12, 270 }, + [15] = { 34.6, 54.8, 12, 270 }, + [16] = { 80.6, 52.4, 12, 270 }, + [17] = { 58.2, 63.2, 14, 300 }, + [18] = { 58.2, 62.9, 14, 300 }, + [19] = { 58.3, 62.9, 14, 300 }, + [20] = { 56.6, 65.5, 36, 300 }, + [21] = { 19.3, 82.4, 38, 300 }, + [22] = { 62.6, 61.7, 38, 300 }, + [23] = { 31.4, 58.2, 38, 300 }, + [24] = { 63.9, 31.3, 38, 300 }, + [25] = { 39.2, 26.7, 38, 300 }, + [26] = { 29.9, 62.9, 44, 300 }, + [27] = { 34.3, 60.1, 44, 300 }, + [28] = { 19.1, 47.1, 44, 300 }, + [29] = { 34.3, 42.3, 44, 300 }, + [30] = { 37.4, 64.1, 267, 300 }, + [31] = { 47, 60.4, 267, 300 }, + [32] = { 58.4, 5.7, 267, 300 }, + [33] = { 92.3, 24.9, 5179, 300 }, + [34] = { 8.4, 86.5, 5602, 300 }, + [35] = { 30.6, 75.9, 5602, 300 }, + [36] = { 14.6, 74.1, 5602, 300 }, + [37] = { 31.2, 60.2, 5602, 300 }, + [38] = { 18.6, 57.9, 5602, 300 }, + }, + ["lvl"] = "3", + }, + [1934] = { + ["coords"] = { + [1] = { 36.5, 51.8, 85, 300 }, + [2] = { 38.2, 51.8, 85, 300 }, + [3] = { 37.5, 51.6, 85, 300 }, + [4] = { 35.8, 50.7, 85, 300 }, + [5] = { 34.6, 50.7, 85, 300 }, + [6] = { 37.9, 50.6, 85, 300 }, + [7] = { 38.1, 50.4, 85, 300 }, + [8] = { 38, 49.9, 85, 300 }, + }, + ["lvl"] = "6-7", + }, + [1935] = { + ["coords"] = { + [1] = { 36.5, 52.3, 85, 300 }, + [2] = { 37.5, 52.3, 85, 300 }, + [3] = { 37.4, 51.6, 85, 300 }, + [4] = { 35.1, 51.6, 85, 300 }, + [5] = { 37.1, 51.1, 85, 300 }, + [6] = { 36.2, 51.1, 85, 300 }, + [7] = { 37.6, 50.7, 85, 300 }, + [8] = { 38.8, 50.6, 85, 300 }, + [9] = { 38.4, 50.5, 85, 300 }, + [10] = { 37.2, 50.5, 85, 300 }, + [11] = { 36.6, 49.5, 85, 300 }, + [12] = { 35.3, 49.3, 85, 300 }, + [13] = { 38.6, 49.2, 85, 300 }, + [14] = { 37.9, 49, 85, 300 }, + }, + ["lvl"] = "5-6", + }, + [1936] = { + ["coords"] = { + [1] = { 38, 49.6, 85, 9000 }, + }, + ["lvl"] = "8", + ["rnk"] = "4", + }, + [1937] = { + ["coords"] = { + [1] = { 42.8, 40.9, 130, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "14", + }, + [1938] = { + ["coords"] = { + [1] = { 44.2, 39.8, 130, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "21", + }, + [1939] = { + ["coords"] = { + [1] = { 69, 36.2, 130, 413 }, + [2] = { 68.4, 35.7, 130, 413 }, + [3] = { 67.8, 35.7, 130, 413 }, + [4] = { 69.4, 34.9, 130, 413 }, + [5] = { 66.4, 34, 130, 413 }, + [6] = { 67.4, 34, 130, 413 }, + [7] = { 67.9, 33.5, 130, 413 }, + [8] = { 66.7, 33, 130, 413 }, + [9] = { 68.2, 31.5, 130, 413 }, + [10] = { 65.8, 31.2, 130, 413 }, + [11] = { 65.1, 30.8, 130, 413 }, + [12] = { 66.3, 30.6, 130, 413 }, + [13] = { 65.8, 30.4, 130, 413 }, + [14] = { 66.7, 30.3, 130, 413 }, + [15] = { 65.7, 28.4, 130, 413 }, + [16] = { 65.4, 27.6, 130, 413 }, + [17] = { 66, 27.1, 130, 413 }, + [18] = { 66.3, 26.8, 130, 413 }, + [19] = { 66.9, 26.5, 130, 413 }, + [20] = { 67, 26, 130, 413 }, + [21] = { 66.2, 25.8, 130, 413 }, + [22] = { 67.6, 25.5, 130, 413 }, + [23] = { 67.7, 25.4, 130, 413 }, + [24] = { 64.7, 25.1, 130, 413 }, + [25] = { 66.9, 24.5, 130, 413 }, + [26] = { 64.7, 24, 130, 413 }, + [27] = { 67.1, 23.7, 130, 413 }, + [28] = { 64.6, 23.3, 130, 413 }, + }, + ["lvl"] = "16-17", + }, + [1940] = { + ["coords"] = { + [1] = { 69.8, 37.1, 130, 413 }, + [2] = { 67.4, 36.3, 130, 413 }, + [3] = { 68.2, 35, 130, 413 }, + [4] = { 66.5, 35, 130, 413 }, + [5] = { 65.9, 34, 130, 413 }, + [6] = { 69, 33.9, 130, 413 }, + [7] = { 68.3, 33.1, 130, 413 }, + [8] = { 67.6, 31.4, 130, 413 }, + [9] = { 66.2, 28, 130, 413 }, + [10] = { 65.3, 27.1, 130, 413 }, + [11] = { 65, 26.4, 130, 413 }, + [12] = { 66.8, 26.4, 130, 413 }, + [13] = { 68.2, 25.7, 130, 413 }, + [14] = { 65.4, 25.6, 130, 413 }, + [15] = { 67.5, 25.5, 130, 413 }, + [16] = { 67.7, 25.4, 130, 413 }, + [17] = { 67.9, 25, 130, 413 }, + [18] = { 67.7, 24.5, 130, 413 }, + [19] = { 64.4, 23.6, 130, 413 }, + [20] = { 67, 23.3, 130, 413 }, + [21] = { 64.7, 23.2, 130, 413 }, + }, + ["lvl"] = "17-18", + }, + [1941] = { + ["coords"] = { + [1] = { 56.6, 46.2, 85, 120 }, + [2] = { 56.5, 46.1, 85, 120 }, + [3] = { 56.8, 45, 85, 120 }, + [4] = { 57.2, 44.7, 85, 120 }, + [5] = { 56.1, 44, 85, 120 }, + [6] = { 53.8, 43.9, 85, 120 }, + [7] = { 55.2, 43.9, 85, 120 }, + [8] = { 56.3, 43.7, 85, 120 }, + [9] = { 56.2, 43.6, 85, 120 }, + [10] = { 58.3, 42.9, 85, 120 }, + [11] = { 55.5, 42.8, 85, 120 }, + [12] = { 54.3, 42.8, 85, 120 }, + [13] = { 55.2, 42.6, 85, 120 }, + [14] = { 54.9, 42.4, 85, 120 }, + [15] = { 55.2, 42.2, 85, 120 }, + [16] = { 57.7, 41.9, 85, 120 }, + [17] = { 55.4, 41.9, 85, 120 }, + [18] = { 53.3, 41.5, 85, 120 }, + [19] = { 55, 41.4, 85, 120 }, + [20] = { 56.4, 41.1, 85, 120 }, + [21] = { 55.4, 41, 85, 120 }, + [22] = { 55.8, 40.5, 85, 120 }, + [23] = { 57.1, 40.3, 85, 120 }, + [24] = { 56.6, 39.7, 85, 120 }, + [25] = { 55.6, 39.2, 85, 120 }, + }, + ["lvl"] = "6-7", + }, + [1942] = { + ["coords"] = { + [1] = { 65.1, 25.1, 130, 413 }, + [2] = { 66.4, 25.1, 130, 413 }, + [3] = { 65.6, 25.1, 130, 413 }, + [4] = { 65.9, 25, 130, 413 }, + [5] = { 65.3, 25, 130, 413 }, + [6] = { 65.3, 24.8, 130, 413 }, + [7] = { 66.2, 24.7, 130, 413 }, + [8] = { 66.3, 24.7, 130, 413 }, + [9] = { 66.3, 24.3, 130, 413 }, + [10] = { 65.7, 24, 130, 413 }, + [11] = { 65.6, 24, 130, 413 }, + [12] = { 65.3, 23.5, 130, 413 }, + [13] = { 66.4, 23.5, 130, 413 }, + [14] = { 65.3, 23.4, 130, 413 }, + [15] = { 65.6, 23.3, 130, 413 }, + [16] = { 65.9, 23.3, 130, 413 }, + [17] = { 66.2, 23.1, 130, 413 }, + }, + ["lvl"] = "18-19", + }, + [1943] = { + ["coords"] = { + [1] = { 66.3, 25.1, 130, 413 }, + [2] = { 66.3, 25, 130, 413 }, + [3] = { 65.2, 24.9, 130, 413 }, + [4] = { 66.2, 24.8, 130, 413 }, + [5] = { 65.2, 24.7, 130, 413 }, + [6] = { 66.2, 24.6, 130, 413 }, + [7] = { 66.1, 23.9, 130, 413 }, + [8] = { 65.2, 23.9, 130, 413 }, + [9] = { 65.9, 23.9, 130, 413 }, + [10] = { 66.1, 23.8, 130, 413 }, + [11] = { 65.7, 23.8, 130, 413 }, + [12] = { 65.5, 23.6, 130, 413 }, + [13] = { 65.6, 23.6, 130, 413 }, + [14] = { 65.3, 23.5, 130, 413 }, + [15] = { 65.7, 23.4, 130, 413 }, + [16] = { 66.3, 23.3, 130, 413 }, + [17] = { 66.4, 23.2, 130, 413 }, + [18] = { 65.2, 23.2, 130, 413 }, + }, + ["lvl"] = "18-19", + }, + [1945] = "_", + [1948] = { + ["coords"] = { + [1] = { 65.1, 25.1, 130, 19800 }, + }, + ["lvl"] = "23", + ["rnk"] = "4", + }, + [1949] = { + ["coords"] = { + [1] = { 64.8, 70.6, 12, 270 }, + [2] = { 65.1, 70.1, 12, 270 }, + [3] = { 65.4, 70.1, 12, 270 }, + [4] = { 64.4, 69.9, 12, 270 }, + [5] = { 64.8, 69.9, 12, 270 }, + [6] = { 64.6, 69.8, 12, 270 }, + [7] = { 64, 69.6, 12, 270 }, + [8] = { 64.7, 69.6, 12, 270 }, + [9] = { 65.1, 69.5, 12, 270 }, + [10] = { 64.4, 68.4, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "8-9", + }, + [1950] = { + ["coords"] = { + [1] = { 53.5, 13.4, 130, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "15", + }, + [1952] = { + ["coords"] = { + [1] = { 43.4, 40.9, 130, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [1953] = { + ["coords"] = { + [1] = { 13.9, 48.1, 36, 413 }, + [2] = { 69.7, 38.3, 130, 413 }, + [3] = { 72.8, 38, 130, 413 }, + [4] = { 72.1, 37.5, 130, 413 }, + [5] = { 68.6, 37.4, 130, 413 }, + [6] = { 70.6, 37.3, 130, 413 }, + [7] = { 73.2, 36.1, 130, 413 }, + [8] = { 71.5, 36, 130, 413 }, + [9] = { 70.6, 35.3, 130, 413 }, + [10] = { 72.2, 34.7, 130, 413 }, + [11] = { 73.1, 34.5, 130, 413 }, + [12] = { 71.2, 34.2, 130, 413 }, + [13] = { 70, 33.6, 130, 413 }, + }, + ["lvl"] = "15-16", + }, + [1954] = { + ["coords"] = { + [1] = { 72, 36.8, 130, 413 }, + [2] = { 73.8, 35.3, 130, 413 }, + [3] = { 74, 35.1, 130, 413 }, + [4] = { 74.3, 34.9, 130, 413 }, + [5] = { 75, 34.5, 130, 413 }, + [6] = { 75.1, 32.9, 130, 413 }, + }, + ["lvl"] = "16-17", + }, + [1955] = { + ["coords"] = { + [1] = { 77.6, 29.1, 130, 413 }, + [2] = { 77.3, 28.7, 130, 413 }, + [3] = { 76.6, 28.7, 130, 413 }, + [4] = { 77.4, 27.7, 130, 413 }, + [5] = { 76.6, 27.6, 130, 413 }, + [6] = { 78, 27, 130, 413 }, + [7] = { 77, 26.6, 130, 413 }, + [8] = { 78.3, 26.1, 130, 413 }, + [9] = { 76.5, 26.1, 130, 413 }, + [10] = { 77.5, 25.2, 130, 413 }, + [11] = { 78.3, 25.2, 130, 413 }, + }, + ["lvl"] = "17-18", + }, + [1956] = { + ["coords"] = { + [1] = { 77, 24.7, 130, 413 }, + [2] = { 79, 23.9, 130, 413 }, + [3] = { 76.7, 23.4, 130, 413 }, + [4] = { 77.9, 23.2, 130, 413 }, + [5] = { 75.4, 23.1, 130, 413 }, + [6] = { 77.3, 23, 130, 413 }, + [7] = { 76.2, 22.5, 130, 413 }, + [8] = { 78.5, 22.4, 130, 413 }, + [9] = { 74.6, 21.8, 130, 413 }, + [10] = { 73.8, 21, 130, 413 }, + [11] = { 77, 20.8, 130, 413 }, + [12] = { 75.2, 20.7, 130, 413 }, + [13] = { 74.1, 20.4, 130, 413 }, + [14] = { 75.5, 19.7, 130, 413 }, + [15] = { 76.4, 19.4, 130, 413 }, + }, + ["lvl"] = "18-19", + }, + [1959] = { + ["coords"] = { + [1] = { 86.3, 48.8, 1, 30 }, + [2] = { 7, 71.9, 5602, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [1960] = { + ["coords"] = { + [1] = { 83.9, 39.2, 1, 30 }, + [2] = { 4.8, 63.1, 5602, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "17", + }, + [1961] = { + ["coords"] = { + [1] = { 78.3, 37.8, 1, 120 }, + }, + ["lvl"] = "11", + }, + [1963] = { + ["coords"] = { + [1] = { 34.8, 49.3, 38, 30 }, + [2] = { 16.4, 69.5, 5602, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [1965] = { + ["coords"] = { + [1] = { 33.5, 71.8, 1, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [1974] = { + ["coords"] = { + [1] = { 60.3, 74, 130, 413 }, + [2] = { 60.7, 72.6, 130, 413 }, + [3] = { 60.6, 72.4, 130, 413 }, + [4] = { 60, 72.1, 130, 413 }, + [5] = { 58.3, 72, 130, 413 }, + [6] = { 57.4, 70.8, 130, 413 }, + [7] = { 59.6, 70.8, 130, 413 }, + [8] = { 59.1, 70.5, 130, 413 }, + [9] = { 56.7, 70.4, 130, 413 }, + [10] = { 58.1, 69.9, 130, 413 }, + [11] = { 57.7, 69.8, 130, 413 }, + [12] = { 63.8, 1.9, 5179, 413 }, + [13] = { 64.1, 0.3, 5179, 413 }, + [14] = { 64, 0, 5179, 413 }, + }, + ["lvl"] = "19-20", + }, + [1976] = { + ["coords"] = { + [1] = { 69.3, 83.5, 1519, 900 }, + [2] = { 69.4, 83.3, 1519, 900 }, + [3] = { 45.4, 74, 1519, 350 }, + [4] = { 66.2, 64.1, 1519, 900 }, + [5] = { 44.8, 54.9, 1519, 300 }, + [6] = { 58.5, 53.4, 1519, 900 }, + [7] = { 49.5, 52.7, 1519, 350 }, + [8] = { 55.9, 49, 1519, 900 }, + [9] = { 59.1, 46.1, 1519, 25000 }, + [10] = { 35.1, 46.1, 1519, 180 }, + [11] = { 42.6, 44.5, 1519, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [1979] = "_", + [1980] = "_", + [1983] = { + ["coords"] = { + [1] = { 45.4, 21, 130, 0 }, + }, + ["lvl"] = "14", + }, + [1984] = { + ["coords"] = { + [1] = { 60.6, 46.3, 141, 300 }, + [2] = { 58.5, 45.7, 141, 300 }, + [3] = { 61.2, 45.7, 141, 300 }, + [4] = { 57, 45.6, 141, 300 }, + [5] = { 59.5, 45.3, 141, 300 }, + [6] = { 57.4, 45, 141, 300 }, + [7] = { 59, 44.4, 141, 300 }, + [8] = { 56.7, 44.3, 141, 300 }, + [9] = { 61.3, 43.7, 141, 300 }, + [10] = { 55.5, 43.4, 141, 300 }, + [11] = { 55.1, 43.4, 141, 300 }, + [12] = { 59.1, 43.3, 141, 300 }, + [13] = { 61.5, 42.9, 141, 300 }, + [14] = { 62, 42.4, 141, 300 }, + [15] = { 63.3, 42.4, 141, 300 }, + [16] = { 57.8, 42.4, 141, 300 }, + [17] = { 55.5, 42.3, 141, 300 }, + [18] = { 63.2, 42.2, 141, 300 }, + [19] = { 56.6, 42.2, 141, 300 }, + [20] = { 56.7, 42.2, 141, 300 }, + [21] = { 55.6, 41.9, 141, 300 }, + [22] = { 55.9, 41.2, 141, 300 }, + [23] = { 62.1, 41.2, 141, 300 }, + [24] = { 57.6, 39.5, 141, 60 }, + }, + ["lvl"] = "1-2", + }, + [1985] = { + ["coords"] = { + [1] = { 55.5, 39.4, 141, 300 }, + [2] = { 60.2, 39.1, 141, 300 }, + [3] = { 61.8, 38.7, 141, 300 }, + [4] = { 56.3, 38.4, 141, 300 }, + [5] = { 56.3, 37.9, 141, 300 }, + [6] = { 59.8, 37.6, 141, 300 }, + [7] = { 55.3, 37.1, 141, 300 }, + [8] = { 56.4, 36.9, 141, 300 }, + [9] = { 59.6, 36.9, 141, 300 }, + [10] = { 61.4, 36, 141, 300 }, + [11] = { 62.2, 35.9, 141, 300 }, + [12] = { 57.2, 35.7, 141, 300 }, + [13] = { 61.4, 35.3, 141, 300 }, + [14] = { 60.2, 34.8, 141, 300 }, + [15] = { 58.2, 34.8, 141, 300 }, + [16] = { 59.4, 34.6, 141, 300 }, + [17] = { 61.8, 34.2, 141, 300 }, + [18] = { 60.3, 34.1, 141, 300 }, + [19] = { 60.3, 34, 141, 300 }, + [20] = { 60, 31.6, 141, 300 }, + }, + ["lvl"] = "2-3", + }, + [1986] = { + ["coords"] = { + [1] = { 56.9, 34.5, 141, 300 }, + [2] = { 56.6, 34.3, 141, 300 }, + [3] = { 57.6, 33.9, 141, 300 }, + [4] = { 58.8, 33.4, 141, 300 }, + [5] = { 56.4, 33.2, 141, 300 }, + [6] = { 57.8, 33.1, 141, 300 }, + [7] = { 57.6, 32.7, 141, 300 }, + [8] = { 56.2, 32.5, 141, 300 }, + [9] = { 57.8, 32.5, 141, 300 }, + [10] = { 57.2, 32.3, 141, 300 }, + [11] = { 56.8, 31.8, 141, 300 }, + [12] = { 56.7, 31.3, 141, 300 }, + [13] = { 56.6, 30.7, 141, 300 }, + [14] = { 56.4, 30.2, 141, 300 }, + [15] = { 57.2, 29.6, 141, 300 }, + [16] = { 56.5, 29.5, 141, 300 }, + [17] = { 56.2, 29.2, 141, 300 }, + [18] = { 57, 29.2, 141, 300 }, + [19] = { 57.6, 29.1, 141, 300 }, + [20] = { 55.9, 28.8, 141, 300 }, + [21] = { 58, 28.6, 141, 300 }, + [22] = { 55.7, 28.5, 141, 300 }, + [23] = { 56.9, 28.4, 141, 300 }, + [24] = { 57.8, 28, 141, 300 }, + [25] = { 56.9, 27.8, 141, 300 }, + [26] = { 55.5, 27.6, 141, 300 }, + [27] = { 57.3, 27.5, 141, 300 }, + [28] = { 57.7, 27.4, 141, 300 }, + [29] = { 58, 27.3, 141, 300 }, + [30] = { 55.9, 27.3, 141, 300 }, + [31] = { 56.1, 26.9, 141, 300 }, + [32] = { 56.6, 26.8, 141, 300 }, + [33] = { 57.9, 26.4, 141, 300 }, + [34] = { 56, 26.4, 141, 300 }, + [35] = { 56.9, 26.3, 141, 300 }, + [36] = { 57.9, 26.1, 141, 300 }, + [37] = { 57.4, 26, 141, 300 }, + [38] = { 55.9, 25.9, 141, 300 }, + [39] = { 56.4, 25.9, 141, 300 }, + [40] = { 56.8, 25.6, 141, 300 }, + [41] = { 56.5, 25.3, 141, 300 }, + [42] = { 55.7, 25.1, 141, 300 }, + [43] = { 56.1, 24.9, 141, 300 }, + [44] = { 56.4, 24.8, 141, 300 }, + }, + ["lvl"] = "3-4", + }, + [1987] = "_", + [1988] = { + ["coords"] = { + [1] = { 55.7, 46.4, 141, 300 }, + [2] = { 56.2, 46.3, 141, 300 }, + [3] = { 56.4, 46.1, 141, 300 }, + [4] = { 55.7, 46, 141, 300 }, + [5] = { 56, 46, 141, 300 }, + [6] = { 55.9, 45.9, 141, 300 }, + [7] = { 56.2, 45.8, 141, 300 }, + [8] = { 56, 45.6, 141, 300 }, + [9] = { 55.8, 45.5, 141, 300 }, + [10] = { 56.1, 45.4, 141, 300 }, + [11] = { 55.9, 45.2, 141, 300 }, + [12] = { 61.4, 45.1, 141, 300 }, + [13] = { 55.8, 41.5, 141, 300 }, + }, + ["lvl"] = "2-3", + }, + [1989] = { + ["coords"] = { + [1] = { 54.5, 44.8, 141, 300 }, + [2] = { 54.8, 44.3, 141, 300 }, + [3] = { 54.2, 44.2, 141, 300 }, + [4] = { 54.7, 44.2, 141, 300 }, + [5] = { 54.9, 44.1, 141, 300 }, + [6] = { 54.5, 44.1, 141, 300 }, + [7] = { 54.6, 44.1, 141, 300 }, + [8] = { 54.6, 43.8, 141, 300 }, + [9] = { 54.4, 43.6, 141, 300 }, + [10] = { 54.9, 43.5, 141, 300 }, + [11] = { 54.7, 43.5, 141, 300 }, + [12] = { 64.2, 42.2, 141, 300 }, + [13] = { 54.9, 39.8, 141, 300 }, + [14] = { 54, 39.7, 141, 300 }, + [15] = { 54.4, 39.4, 141, 300 }, + [16] = { 54.2, 39.3, 141, 300 }, + [17] = { 54.1, 39.3, 141, 300 }, + [18] = { 54.2, 39.2, 141, 300 }, + [19] = { 54, 39, 141, 300 }, + [20] = { 54.3, 38.9, 141, 300 }, + [21] = { 61.9, 38.8, 141, 300 }, + [22] = { 54.9, 38.8, 141, 300 }, + [23] = { 56.2, 38.5, 141, 300 }, + [24] = { 54.7, 38.5, 141, 300 }, + [25] = { 54, 38.4, 141, 300 }, + [26] = { 62.3, 35.7, 141, 300 }, + [27] = { 61.4, 35.1, 141, 300 }, + [28] = { 59.6, 35, 141, 300 }, + [29] = { 56.3, 34.6, 141, 300 }, + [30] = { 58.2, 33.4, 141, 300 }, + }, + ["lvl"] = "3-4", + }, + [1990] = "_", + [1991] = "_", + [1992] = { + ["coords"] = { + [1] = { 57.8, 45.2, 141, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "7", + }, + [1993] = { + ["coords"] = { + [1] = { 44.6, 62.5, 141, 120 }, + }, + ["lvl"] = "10", + }, + [1994] = { + ["coords"] = { + [1] = { 56.6, 26.3, 141, 120 }, + }, + ["lvl"] = "5", + }, + [1995] = { + ["coords"] = { + [1] = { 55.4, 66, 141, 300 }, + [2] = { 63, 64.2, 141, 300 }, + [3] = { 64, 64.1, 141, 300 }, + [4] = { 54.8, 64, 141, 300 }, + [5] = { 62.7, 63.1, 141, 300 }, + [6] = { 52.4, 62.7, 141, 300 }, + [7] = { 68.7, 62.4, 141, 300 }, + [8] = { 68.1, 62.1, 141, 300 }, + [9] = { 64.9, 61.5, 141, 300 }, + [10] = { 67.2, 61.4, 141, 300 }, + [11] = { 57.9, 60.8, 141, 300 }, + [12] = { 54.1, 60.4, 141, 300 }, + [13] = { 58.9, 60.3, 141, 300 }, + [14] = { 54.1, 60.1, 141, 300 }, + [15] = { 53.5, 59.4, 141, 300 }, + [16] = { 53.7, 59.4, 141, 300 }, + [17] = { 52.2, 59.3, 141, 300 }, + [18] = { 50, 58.7, 141, 300 }, + [19] = { 49.8, 58.1, 141, 300 }, + [20] = { 52.6, 57.1, 141, 300 }, + [21] = { 54.2, 57, 141, 300 }, + [22] = { 51.9, 56.7, 141, 300 }, + [23] = { 57.6, 56.3, 141, 300 }, + [24] = { 58.7, 56.2, 141, 300 }, + [25] = { 65.7, 54.5, 141, 300 }, + [26] = { 53, 54.5, 141, 300 }, + [27] = { 64.2, 54.4, 141, 300 }, + [28] = { 63.4, 53.6, 141, 300 }, + [29] = { 67.5, 53.6, 141, 300 }, + [30] = { 65.4, 52.6, 141, 300 }, + [31] = { 63.4, 51.7, 141, 300 }, + [32] = { 64.7, 51.5, 141, 300 }, + [33] = { 62, 51.4, 141, 300 }, + [34] = { 61.2, 50.6, 141, 300 }, + [35] = { 46.3, 48.6, 141, 300 }, + [36] = { 45.9, 47.5, 141, 300 }, + }, + ["lvl"] = "5-6", + }, + [1998] = { + ["coords"] = { + [1] = { 52.6, 67.4, 141, 300 }, + [2] = { 53.3, 66.7, 141, 300 }, + [3] = { 51.7, 66.3, 141, 300 }, + [4] = { 67.1, 66.3, 141, 300 }, + [5] = { 51, 65.2, 141, 300 }, + [6] = { 52.9, 64.3, 141, 300 }, + [7] = { 54.3, 64.2, 141, 300 }, + [8] = { 68, 64.1, 141, 300 }, + [9] = { 68.5, 63.6, 141, 300 }, + [10] = { 63.3, 63.2, 141, 300 }, + [11] = { 54.2, 62.5, 141, 300 }, + [12] = { 67.2, 62, 141, 300 }, + [13] = { 53.5, 61.9, 141, 300 }, + [14] = { 64.1, 61.8, 141, 300 }, + [15] = { 53.6, 61.4, 141, 300 }, + [16] = { 61.1, 61.3, 141, 300 }, + [17] = { 63.9, 60.8, 141, 300 }, + [18] = { 69.5, 60.3, 141, 300 }, + [19] = { 60.1, 60.3, 141, 300 }, + [20] = { 70.1, 60.2, 141, 300 }, + [21] = { 59.6, 59.7, 141, 300 }, + [22] = { 60.2, 59.5, 141, 300 }, + [23] = { 51.6, 59.4, 141, 300 }, + [24] = { 51.8, 58.5, 141, 300 }, + [25] = { 60.1, 58.2, 141, 300 }, + [26] = { 69.5, 57.2, 141, 300 }, + [27] = { 60.8, 57.1, 141, 300 }, + [28] = { 58.2, 55.8, 141, 300 }, + [29] = { 52.2, 55.7, 141, 300 }, + [30] = { 52.3, 55.6, 141, 300 }, + [31] = { 60.9, 55.2, 141, 300 }, + [32] = { 61.4, 54.6, 141, 300 }, + [33] = { 60.8, 54.6, 141, 300 }, + [34] = { 60.9, 54.5, 141, 300 }, + [35] = { 51, 53.8, 141, 300 }, + [36] = { 47.1, 47, 141, 300 }, + [37] = { 45.9, 46.7, 141, 300 }, + }, + ["lvl"] = "5-6", + }, + [1999] = { + ["coords"] = { + [1] = { 45.8, 78.9, 141, 300 }, + [2] = { 45.1, 77.9, 141, 300 }, + [3] = { 44.8, 77.5, 141, 300 }, + [4] = { 54.5, 77.4, 141, 300 }, + [5] = { 54.3, 76.1, 141, 300 }, + [6] = { 59.6, 76.1, 141, 300 }, + [7] = { 49, 76, 141, 300 }, + [8] = { 41.2, 76, 141, 300 }, + [9] = { 48.5, 75.1, 141, 300 }, + [10] = { 61.5, 75, 141, 300 }, + [11] = { 60.2, 75, 141, 300 }, + [12] = { 41.8, 75, 141, 300 }, + [13] = { 42.9, 74.7, 141, 300 }, + [14] = { 44.7, 74.5, 141, 300 }, + [15] = { 54.3, 74.2, 141, 300 }, + [16] = { 61, 73.4, 141, 300 }, + [17] = { 55, 73.2, 141, 300 }, + [18] = { 45.3, 73.1, 141, 300 }, + [19] = { 46.5, 71.6, 141, 300 }, + [20] = { 45.4, 70.2, 141, 300 }, + [21] = { 65.2, 69.1, 141, 300 }, + [22] = { 38.9, 61.7, 141, 300 }, + [23] = { 39.8, 60, 141, 300 }, + [24] = { 38.8, 59.6, 141, 300 }, + [25] = { 43.7, 54.3, 141, 300 }, + [26] = { 42.8, 52.6, 141, 300 }, + [27] = { 40.7, 48.8, 141, 300 }, + [28] = { 40.4, 48.6, 141, 300 }, + [29] = { 38.7, 47.9, 141, 300 }, + [30] = { 37.2, 47.4, 141, 300 }, + [31] = { 96, 2, 1657, 300 }, + }, + ["lvl"] = "7-8", + }, + [2000] = { + ["coords"] = { + [1] = { 43.7, 47.3, 141, 300 }, + [2] = { 42.4, 46.3, 141, 300 }, + [3] = { 43.2, 45.5, 141, 300 }, + [4] = { 48.6, 44.9, 141, 300 }, + [5] = { 47.8, 44.5, 141, 300 }, + [6] = { 43.8, 44.5, 141, 300 }, + [7] = { 43.1, 43.5, 141, 300 }, + [8] = { 45.8, 43.4, 141, 300 }, + [9] = { 45.1, 35.1, 141, 300 }, + [10] = { 47.4, 34.1, 141, 300 }, + [11] = { 34.6, 32.6, 141, 300 }, + [12] = { 33.6, 32.3, 141, 300 }, + [13] = { 36.3, 32.3, 141, 300 }, + [14] = { 47.9, 32.1, 141, 300 }, + [15] = { 39.9, 31.4, 141, 300 }, + [16] = { 33.3, 31, 141, 300 }, + }, + ["lvl"] = "8-9", + }, + [2002] = { + ["coords"] = { + [1] = { 52.9, 52.1, 141, 300 }, + [2] = { 53.7, 51.5, 141, 300 }, + [3] = { 52.9, 51.3, 141, 300 }, + [4] = { 53.8, 50.8, 141, 300 }, + [5] = { 53.6, 50, 141, 300 }, + [6] = { 53.6, 49, 141, 300 }, + [7] = { 53.6, 48.8, 141, 300 }, + [8] = { 53.2, 48.8, 141, 300 }, + }, + ["lvl"] = "5-6", + }, + [2003] = { + ["coords"] = { + [1] = { 54.6, 52.6, 141, 300 }, + [2] = { 54.5, 51.9, 141, 300 }, + [3] = { 53.4, 51.8, 141, 300 }, + [4] = { 52.9, 51.5, 141, 300 }, + [5] = { 54.7, 51.4, 141, 300 }, + [6] = { 54, 51.2, 141, 300 }, + [7] = { 53.5, 51.2, 141, 300 }, + [8] = { 53.3, 50.8, 141, 300 }, + [9] = { 53, 50.3, 141, 300 }, + }, + ["lvl"] = "5-6", + }, + [2004] = { + ["coords"] = { + [1] = { 51.2, 51, 141, 300 }, + [2] = { 52.4, 50.2, 141, 300 }, + [3] = { 51.7, 50, 141, 300 }, + [4] = { 51.4, 50, 141, 300 }, + [5] = { 52.6, 49.8, 141, 120 }, + [6] = { 53, 49.3, 141, 300 }, + [7] = { 51.7, 48.9, 141, 300 }, + }, + ["lvl"] = "6-7", + }, + [2005] = { + ["coords"] = { + [1] = { 52.1, 52.1, 141, 300 }, + [2] = { 51.6, 51.6, 141, 300 }, + [3] = { 52.2, 51.1, 141, 300 }, + [4] = { 52.2, 50.7, 141, 300 }, + [5] = { 51.3, 50.6, 141, 300 }, + [6] = { 51.8, 50.5, 141, 300 }, + [7] = { 52.7, 49.5, 141, 120 }, + [8] = { 51.5, 48.8, 141, 300 }, + [9] = { 52.1, 48.5, 141, 300 }, + }, + ["lvl"] = "7", + }, + [2008] = { + ["coords"] = { + [1] = { 49.7, 68.1, 141, 300 }, + [2] = { 50.1, 66.8, 141, 300 }, + [3] = { 49.7, 66.4, 141, 300 }, + [4] = { 50.3, 66.2, 141, 300 }, + [5] = { 50, 65.6, 141, 300 }, + [6] = { 65.6, 64.9, 141, 300 }, + [7] = { 65.7, 64.8, 141, 300 }, + [8] = { 65.6, 64.7, 141, 300 }, + [9] = { 65.9, 63.7, 141, 300 }, + [10] = { 50.3, 62.1, 141, 300 }, + [11] = { 50.9, 62, 141, 300 }, + [12] = { 49.8, 61.4, 141, 300 }, + [13] = { 50.4, 61.2, 141, 300 }, + [14] = { 67.8, 60.1, 141, 300 }, + [15] = { 67, 59.7, 141, 300 }, + [16] = { 66, 59.6, 141, 300 }, + [17] = { 68, 59.4, 141, 300 }, + [18] = { 66.4, 59.3, 141, 300 }, + [19] = { 66.3, 59, 141, 300 }, + [20] = { 66.3, 58.6, 141, 300 }, + [21] = { 65.8, 58.2, 141, 300 }, + [22] = { 66.6, 58.2, 141, 300 }, + [23] = { 67, 57.6, 141, 300 }, + [24] = { 65.9, 57.4, 141, 300 }, + [25] = { 66.5, 57.2, 141, 300 }, + [26] = { 67.4, 57, 141, 300 }, + [27] = { 69.7, 53.9, 141, 300 }, + [28] = { 68.6, 53.2, 141, 300 }, + [29] = { 70.3, 53.1, 141, 300 }, + [30] = { 69.3, 52.8, 141, 300 }, + [31] = { 70.2, 52.7, 141, 300 }, + [32] = { 68, 52.6, 141, 300 }, + [33] = { 68.3, 52.5, 141, 300 }, + [34] = { 70.5, 52.4, 141, 300 }, + }, + ["lvl"] = "6-7", + }, + [2009] = { + ["coords"] = { + [1] = { 48.6, 78.8, 141, 300 }, + [2] = { 47.6, 78.5, 141, 300 }, + [3] = { 48.6, 78.1, 141, 300 }, + [4] = { 45.8, 78.1, 141, 300 }, + [5] = { 49, 78.1, 141, 300 }, + [6] = { 46.8, 77.9, 141, 300 }, + [7] = { 47.9, 77.9, 141, 300 }, + [8] = { 48, 77.8, 141, 300 }, + [9] = { 47.1, 77.7, 141, 300 }, + [10] = { 48.2, 77.7, 141, 300 }, + [11] = { 47.9, 77.6, 141, 300 }, + [12] = { 47.3, 77.4, 141, 300 }, + [13] = { 46.4, 77.3, 141, 300 }, + [14] = { 56.5, 77.2, 141, 300 }, + [15] = { 47.3, 76.9, 141, 300 }, + [16] = { 49, 76.9, 141, 300 }, + [17] = { 56.2, 76.6, 141, 300 }, + [18] = { 56.8, 76.5, 141, 300 }, + [19] = { 57.2, 76, 141, 300 }, + [20] = { 55.6, 75.8, 141, 300 }, + [21] = { 54.9, 75.2, 141, 300 }, + [22] = { 56.9, 75, 141, 300 }, + [23] = { 41.4, 71.9, 141, 300 }, + [24] = { 38.4, 67.9, 141, 300 }, + [25] = { 49.3, 67.4, 141, 300 }, + [26] = { 38.5, 67.2, 141, 300 }, + [27] = { 37.8, 67.1, 141, 300 }, + [28] = { 39.1, 67, 141, 300 }, + [29] = { 37.4, 67, 141, 300 }, + [30] = { 49.4, 66.8, 141, 300 }, + [31] = { 49.5, 66.8, 141, 300 }, + [32] = { 38.2, 66.8, 141, 300 }, + [33] = { 49.4, 66.6, 141, 300 }, + [34] = { 37.4, 66.3, 141, 300 }, + [35] = { 39.3, 66.2, 141, 300 }, + [36] = { 38.5, 66.2, 141, 300 }, + [37] = { 37.9, 66.2, 141, 300 }, + [38] = { 49.4, 66.1, 141, 300 }, + [39] = { 38.3, 65.6, 141, 300 }, + [40] = { 50, 63.2, 141, 300 }, + [41] = { 50.5, 62.9, 141, 300 }, + [42] = { 50, 62.7, 141, 300 }, + [43] = { 49.6, 62.6, 141, 300 }, + [44] = { 50, 62.5, 141, 300 }, + [45] = { 43.3, 61.9, 141, 300 }, + [46] = { 44.3, 61.7, 141, 120 }, + [47] = { 43.8, 61.7, 141, 300 }, + [48] = { 43.9, 61.4, 141, 300 }, + [49] = { 43.8, 61.3, 141, 300 }, + [50] = { 44.4, 61.2, 141, 300 }, + [51] = { 42.9, 61.2, 141, 300 }, + [52] = { 43.9, 61.1, 141, 300 }, + [53] = { 43.3, 60.7, 141, 300 }, + [54] = { 44.3, 60.6, 141, 300 }, + [55] = { 44.5, 60.5, 141, 300 }, + [56] = { 43.7, 60.5, 141, 300 }, + [57] = { 44.4, 60.4, 141, 300 }, + [58] = { 44.2, 60.3, 141, 300 }, + [59] = { 43.9, 60.2, 141, 300 }, + [60] = { 45.1, 60.1, 141, 300 }, + [61] = { 44.5, 60, 141, 300 }, + [62] = { 43.6, 60, 141, 300 }, + [63] = { 43.9, 60, 141, 300 }, + [64] = { 45.5, 59.9, 141, 300 }, + [65] = { 43.1, 59.6, 141, 300 }, + [66] = { 44.1, 59.5, 141, 300 }, + [67] = { 43, 59.1, 141, 300 }, + [68] = { 45.6, 59, 141, 300 }, + [69] = { 45.3, 58.8, 141, 300 }, + [70] = { 43.3, 58.8, 141, 300 }, + [71] = { 44.8, 58.7, 141, 300 }, + [72] = { 43.7, 58.6, 141, 300 }, + [73] = { 44.4, 58.5, 141, 300 }, + [74] = { 44.3, 58.5, 141, 300 }, + [75] = { 46.2, 58.4, 141, 300 }, + [76] = { 45, 58.3, 141, 300 }, + [77] = { 45.3, 58.3, 141, 300 }, + [78] = { 44.2, 58.2, 141, 300 }, + [79] = { 45.4, 58.1, 141, 300 }, + [80] = { 43.9, 58, 141, 300 }, + [81] = { 45.2, 57.8, 141, 300 }, + [82] = { 45.6, 57.7, 141, 300 }, + [83] = { 44.6, 57.6, 141, 300 }, + [84] = { 45.1, 57.6, 141, 300 }, + [85] = { 44.3, 57.5, 141, 300 }, + [86] = { 43.9, 57.4, 141, 300 }, + [87] = { 44.9, 57.3, 141, 300 }, + [88] = { 44.4, 57.1, 141, 300 }, + [89] = { 44.1, 57.1, 141, 300 }, + [90] = { 44.6, 56.7, 141, 300 }, + [91] = { 44, 56.6, 141, 300 }, + [92] = { 44.8, 56.1, 141, 300 }, + [93] = { 99.2, 97.1, 1657, 300 }, + [94] = { 97.1, 96.4, 1657, 300 }, + [95] = { 97.4, 93, 1657, 300 }, + [96] = { 99.6, 92.6, 1657, 300 }, + }, + ["lvl"] = "7-8", + }, + [2010] = { + ["coords"] = { + [1] = { 48.6, 78.8, 141, 300 }, + [2] = { 47.6, 78.5, 141, 300 }, + [3] = { 48.6, 78.1, 141, 300 }, + [4] = { 45.8, 78.1, 141, 300 }, + [5] = { 49, 78.1, 141, 300 }, + [6] = { 46.8, 77.9, 141, 300 }, + [7] = { 47.9, 77.9, 141, 300 }, + [8] = { 48, 77.8, 141, 300 }, + [9] = { 47.1, 77.7, 141, 300 }, + [10] = { 48.2, 77.7, 141, 300 }, + [11] = { 47.9, 77.6, 141, 300 }, + [12] = { 47.3, 77.4, 141, 300 }, + [13] = { 46.4, 77.3, 141, 300 }, + [14] = { 56.5, 77.2, 141, 300 }, + [15] = { 47.3, 76.9, 141, 300 }, + [16] = { 49, 76.9, 141, 300 }, + [17] = { 56.2, 76.6, 141, 300 }, + [18] = { 56.8, 76.5, 141, 300 }, + [19] = { 57.2, 76, 141, 300 }, + [20] = { 55.6, 75.8, 141, 300 }, + [21] = { 54.9, 75.2, 141, 300 }, + [22] = { 56.9, 75, 141, 300 }, + [23] = { 41.4, 71.9, 141, 300 }, + [24] = { 38.4, 67.9, 141, 300 }, + [25] = { 49.3, 67.4, 141, 300 }, + [26] = { 38.5, 67.2, 141, 300 }, + [27] = { 37.8, 67.1, 141, 300 }, + [28] = { 39.1, 67, 141, 300 }, + [29] = { 37.4, 67, 141, 300 }, + [30] = { 49.4, 66.8, 141, 300 }, + [31] = { 49.5, 66.8, 141, 300 }, + [32] = { 38.2, 66.8, 141, 300 }, + [33] = { 49.4, 66.6, 141, 300 }, + [34] = { 37.4, 66.3, 141, 300 }, + [35] = { 39.3, 66.2, 141, 300 }, + [36] = { 38.5, 66.2, 141, 300 }, + [37] = { 37.9, 66.2, 141, 300 }, + [38] = { 49.4, 66.1, 141, 300 }, + [39] = { 38.3, 65.6, 141, 300 }, + [40] = { 50, 63.2, 141, 300 }, + [41] = { 50.5, 62.9, 141, 300 }, + [42] = { 50, 62.7, 141, 300 }, + [43] = { 49.6, 62.6, 141, 300 }, + [44] = { 50, 62.5, 141, 300 }, + [45] = { 43.3, 61.9, 141, 300 }, + [46] = { 44.3, 61.7, 141, 120 }, + [47] = { 43.8, 61.7, 141, 300 }, + [48] = { 43.9, 61.4, 141, 300 }, + [49] = { 43.8, 61.3, 141, 300 }, + [50] = { 44.4, 61.2, 141, 300 }, + [51] = { 42.9, 61.2, 141, 300 }, + [52] = { 43.9, 61.1, 141, 300 }, + [53] = { 43.3, 60.7, 141, 300 }, + [54] = { 44.3, 60.6, 141, 300 }, + [55] = { 44.5, 60.5, 141, 300 }, + [56] = { 43.7, 60.5, 141, 300 }, + [57] = { 44.4, 60.4, 141, 300 }, + [58] = { 44.2, 60.3, 141, 300 }, + [59] = { 43.9, 60.2, 141, 300 }, + [60] = { 45.1, 60.1, 141, 300 }, + [61] = { 44.5, 60, 141, 300 }, + [62] = { 43.6, 60, 141, 300 }, + [63] = { 43.9, 60, 141, 300 }, + [64] = { 45.5, 59.9, 141, 300 }, + [65] = { 43.1, 59.6, 141, 300 }, + [66] = { 44.1, 59.5, 141, 300 }, + [67] = { 43, 59.1, 141, 300 }, + [68] = { 45.6, 59, 141, 300 }, + [69] = { 45.3, 58.8, 141, 300 }, + [70] = { 43.3, 58.8, 141, 300 }, + [71] = { 44.8, 58.7, 141, 300 }, + [72] = { 43.7, 58.6, 141, 300 }, + [73] = { 44.4, 58.5, 141, 300 }, + [74] = { 44.3, 58.5, 141, 300 }, + [75] = { 46.2, 58.4, 141, 300 }, + [76] = { 45, 58.3, 141, 300 }, + [77] = { 45.3, 58.3, 141, 300 }, + [78] = { 44.2, 58.2, 141, 300 }, + [79] = { 45.4, 58.1, 141, 300 }, + [80] = { 43.9, 58, 141, 300 }, + [81] = { 45.2, 57.8, 141, 300 }, + [82] = { 45.6, 57.7, 141, 300 }, + [83] = { 44.6, 57.6, 141, 300 }, + [84] = { 45.1, 57.6, 141, 300 }, + [85] = { 44.3, 57.5, 141, 300 }, + [86] = { 43.9, 57.4, 141, 300 }, + [87] = { 44.9, 57.3, 141, 300 }, + [88] = { 44.4, 57.1, 141, 300 }, + [89] = { 44.1, 57.1, 141, 300 }, + [90] = { 44.6, 56.7, 141, 300 }, + [91] = { 44, 56.6, 141, 300 }, + [92] = { 44.8, 56.1, 141, 300 }, + [93] = { 99.2, 97.1, 1657, 300 }, + [94] = { 97.1, 96.4, 1657, 300 }, + [95] = { 97.4, 93, 1657, 300 }, + [96] = { 99.6, 92.6, 1657, 300 }, + }, + ["lvl"] = "7-8", + }, + [2011] = { + ["coords"] = { + [1] = { 47.5, 77.9, 141, 300 }, + [2] = { 56.4, 75.6, 141, 300 }, + [3] = { 56.6, 75.5, 141, 300 }, + [4] = { 56.3, 75.3, 141, 300 }, + [5] = { 41.4, 73.9, 141, 300 }, + [6] = { 41.5, 73.2, 141, 300 }, + [7] = { 40.8, 72.8, 141, 300 }, + [8] = { 41.3, 72.7, 141, 300 }, + [9] = { 41.8, 72.5, 141, 300 }, + [10] = { 41.3, 72.3, 141, 300 }, + [11] = { 44.5, 62.7, 141, 120 }, + [12] = { 44.4, 62, 141, 120 }, + [13] = { 44.9, 61.5, 141, 300 }, + [14] = { 44.6, 61.3, 141, 300 }, + [15] = { 45, 61.3, 141, 300 }, + [16] = { 44.7, 59, 141, 300 }, + [17] = { 44.8, 58.7, 141, 300 }, + [18] = { 44.9, 58.6, 141, 300 }, + [19] = { 45.6, 58.4, 141, 300 }, + [20] = { 46.1, 58.3, 141, 300 }, + [21] = { 46.2, 58.2, 141, 300 }, + [22] = { 45.2, 57.7, 141, 300 }, + [23] = { 45.8, 57.1, 141, 300 }, + [24] = { 45.9, 57, 141, 300 }, + }, + ["lvl"] = "8-9", + }, + [2012] = { + ["coords"] = { + [1] = { 38.1, 81.3, 141, 300 }, + [2] = { 38.2, 80.4, 141, 300 }, + [3] = { 39.9, 80.3, 141, 300 }, + [4] = { 38.6, 80.3, 141, 120 }, + [5] = { 42, 80.2, 141, 300 }, + [6] = { 40.3, 80.1, 141, 300 }, + [7] = { 38.6, 80.1, 141, 120 }, + [8] = { 41.8, 80, 141, 300 }, + [9] = { 42.1, 80, 141, 300 }, + [10] = { 42.4, 79.9, 141, 300 }, + [11] = { 40, 79.8, 141, 300 }, + [12] = { 42, 79.7, 141, 300 }, + [13] = { 40, 79.7, 141, 300 }, + [14] = { 40.6, 79.6, 141, 300 }, + [15] = { 38.7, 79.5, 141, 120 }, + [16] = { 41.5, 79.4, 141, 300 }, + [17] = { 40.3, 79.4, 141, 300 }, + [18] = { 42.4, 79.2, 141, 300 }, + [19] = { 40.6, 79.1, 141, 300 }, + [20] = { 38.8, 79, 141, 300 }, + [21] = { 41.3, 79, 141, 300 }, + [22] = { 43.3, 79, 141, 300 }, + [23] = { 38.8, 78.4, 141, 300 }, + [24] = { 41.4, 77.9, 141, 300 }, + [25] = { 41.3, 77, 141, 300 }, + }, + ["lvl"] = "9-10", + }, + [2013] = { + ["coords"] = { + [1] = { 38.1, 81.3, 141, 300 }, + [2] = { 38.2, 80.4, 141, 300 }, + [3] = { 39.9, 80.3, 141, 300 }, + [4] = { 38.6, 80.3, 141, 120 }, + [5] = { 42, 80.2, 141, 300 }, + [6] = { 40.3, 80.1, 141, 300 }, + [7] = { 38.6, 80.1, 141, 120 }, + [8] = { 41.8, 80, 141, 300 }, + [9] = { 42.1, 80, 141, 300 }, + [10] = { 42.4, 79.9, 141, 300 }, + [11] = { 40, 79.8, 141, 300 }, + [12] = { 42, 79.7, 141, 300 }, + [13] = { 40, 79.7, 141, 300 }, + [14] = { 40.6, 79.6, 141, 300 }, + [15] = { 38.7, 79.5, 141, 120 }, + [16] = { 41.5, 79.4, 141, 300 }, + [17] = { 40.3, 79.4, 141, 300 }, + [18] = { 42.4, 79.2, 141, 300 }, + [19] = { 40.6, 79.1, 141, 300 }, + [20] = { 38.8, 79, 141, 300 }, + [21] = { 41.3, 79, 141, 300 }, + [22] = { 43.3, 79, 141, 300 }, + [23] = { 38.8, 78.4, 141, 300 }, + [24] = { 41.4, 77.9, 141, 300 }, + [25] = { 41.3, 77, 141, 300 }, + }, + ["lvl"] = "9-10", + }, + [2014] = { + ["coords"] = { + [1] = { 37.9, 81.2, 141, 300 }, + [2] = { 38.4, 80.8, 141, 300 }, + [3] = { 39.4, 80.2, 141, 300 }, + [4] = { 39.1, 79.9, 141, 120 }, + [5] = { 38.8, 78.9, 141, 300 }, + }, + ["lvl"] = "10-11", + }, + [2015] = { + ["coords"] = { + [1] = { 37.8, 44.7, 141, 300 }, + [2] = { 37.3, 43.7, 141, 300 }, + [3] = { 37.9, 43.7, 141, 300 }, + [4] = { 37.3, 43.3, 141, 300 }, + [5] = { 37.9, 43, 141, 300 }, + [6] = { 37.2, 43, 141, 300 }, + [7] = { 38.7, 42.9, 141, 300 }, + [8] = { 36.6, 41.8, 141, 300 }, + [9] = { 37.3, 41.7, 141, 300 }, + [10] = { 37.5, 41.3, 141, 300 }, + [11] = { 37.7, 41.1, 141, 300 }, + [12] = { 38.6, 40.5, 141, 300 }, + [13] = { 37.2, 40.4, 141, 300 }, + [14] = { 36.4, 39.9, 141, 300 }, + [15] = { 35.2, 38.9, 141, 300 }, + [16] = { 36.8, 38.9, 141, 300 }, + [17] = { 36, 38.9, 141, 300 }, + [18] = { 35.6, 38.5, 141, 300 }, + [19] = { 36.4, 38.1, 141, 300 }, + [20] = { 36, 37.8, 141, 300 }, + [21] = { 37.3, 37.8, 141, 300 }, + [22] = { 35.4, 37.7, 141, 300 }, + [23] = { 36.7, 37.7, 141, 300 }, + [24] = { 35.8, 37.3, 141, 300 }, + [25] = { 35.5, 37, 141, 300 }, + [26] = { 34.4, 35.5, 141, 300 }, + [27] = { 34.1, 35.5, 141, 300 }, + [28] = { 33.8, 35.4, 141, 300 }, + [29] = { 34.3, 35.1, 141, 300 }, + [30] = { 35.2, 35.1, 141, 300 }, + [31] = { 34.7, 35, 141, 300 }, + [32] = { 35.5, 34.9, 141, 300 }, + [33] = { 35, 34.9, 141, 300 }, + [34] = { 34.2, 34.8, 141, 300 }, + [35] = { 34.4, 34.4, 141, 300 }, + [36] = { 34.3, 34.1, 141, 300 }, + }, + ["lvl"] = "8-9", + }, + [2017] = { + ["coords"] = { + [1] = { 37.8, 44.7, 141, 300 }, + [2] = { 37.3, 43.7, 141, 300 }, + [3] = { 37.9, 43.7, 141, 300 }, + [4] = { 37.3, 43.3, 141, 300 }, + [5] = { 37.9, 43, 141, 300 }, + [6] = { 37.2, 43, 141, 300 }, + [7] = { 38.7, 42.9, 141, 300 }, + [8] = { 36.6, 41.8, 141, 300 }, + [9] = { 37.3, 41.7, 141, 300 }, + [10] = { 37.5, 41.3, 141, 300 }, + [11] = { 37.7, 41.1, 141, 300 }, + [12] = { 38.6, 40.5, 141, 300 }, + [13] = { 37.2, 40.4, 141, 300 }, + [14] = { 36.4, 39.9, 141, 300 }, + [15] = { 35.2, 38.9, 141, 300 }, + [16] = { 36.8, 38.9, 141, 300 }, + [17] = { 36, 38.9, 141, 300 }, + [18] = { 35.6, 38.5, 141, 300 }, + [19] = { 36.4, 38.1, 141, 300 }, + [20] = { 36, 37.8, 141, 300 }, + [21] = { 37.3, 37.8, 141, 300 }, + [22] = { 35.4, 37.7, 141, 300 }, + [23] = { 36.7, 37.7, 141, 300 }, + [24] = { 35.8, 37.3, 141, 300 }, + [25] = { 35.5, 37, 141, 300 }, + [26] = { 34.4, 35.5, 141, 300 }, + [27] = { 34.1, 35.5, 141, 300 }, + [28] = { 33.8, 35.4, 141, 300 }, + [29] = { 34.3, 35.1, 141, 300 }, + [30] = { 35.2, 35.1, 141, 300 }, + [31] = { 34.7, 35, 141, 300 }, + [32] = { 35.5, 34.9, 141, 300 }, + [33] = { 35, 34.9, 141, 300 }, + [34] = { 34.2, 34.8, 141, 300 }, + [35] = { 34.4, 34.4, 141, 300 }, + [36] = { 34.3, 34.1, 141, 300 }, + }, + ["lvl"] = "8-9", + }, + [2018] = { + ["coords"] = { + [1] = { 37.8, 44.7, 141, 300 }, + [2] = { 37.3, 43.7, 141, 300 }, + [3] = { 37.9, 43.7, 141, 300 }, + [4] = { 37.3, 43.3, 141, 300 }, + [5] = { 37.9, 43, 141, 300 }, + [6] = { 37.2, 43, 141, 300 }, + [7] = { 38.7, 42.9, 141, 300 }, + [8] = { 36.6, 41.8, 141, 300 }, + [9] = { 37.3, 41.7, 141, 300 }, + [10] = { 37.5, 41.3, 141, 300 }, + [11] = { 37.7, 41.1, 141, 300 }, + [12] = { 38.6, 40.5, 141, 300 }, + [13] = { 37.2, 40.4, 141, 300 }, + [14] = { 36.4, 39.9, 141, 300 }, + [15] = { 35.2, 38.9, 141, 300 }, + [16] = { 36.8, 38.9, 141, 300 }, + [17] = { 36, 38.9, 141, 300 }, + [18] = { 35.6, 38.5, 141, 300 }, + [19] = { 36.4, 38.1, 141, 300 }, + [20] = { 36, 37.8, 141, 300 }, + [21] = { 37.3, 37.8, 141, 300 }, + [22] = { 35.4, 37.7, 141, 300 }, + [23] = { 36.7, 37.7, 141, 300 }, + [24] = { 35.8, 37.3, 141, 300 }, + [25] = { 35.5, 37, 141, 300 }, + [26] = { 34.4, 35.5, 141, 300 }, + [27] = { 34.1, 35.5, 141, 300 }, + [28] = { 33.8, 35.4, 141, 300 }, + [29] = { 34.3, 35.1, 141, 300 }, + [30] = { 35.2, 35.1, 141, 300 }, + [31] = { 34.7, 35, 141, 300 }, + [32] = { 35.5, 34.9, 141, 300 }, + [33] = { 35, 34.9, 141, 300 }, + [34] = { 34.2, 34.8, 141, 300 }, + [35] = { 34.4, 34.4, 141, 300 }, + [36] = { 34.3, 34.1, 141, 300 }, + }, + ["lvl"] = "9", + }, + [2019] = { + ["coords"] = { + [1] = { 32.2, 32.9, 141, 300 }, + [2] = { 32.6, 32.6, 141, 300 }, + [3] = { 32.2, 32.4, 141, 300 }, + [4] = { 31.8, 32.3, 141, 300 }, + [5] = { 32.7, 32, 141, 300 }, + [6] = { 31.4, 31.6, 141, 300 }, + [7] = { 32.8, 30.5, 141, 300 }, + [8] = { 33.1, 30, 141, 300 }, + [9] = { 32.9, 30, 141, 300 }, + [10] = { 33.5, 29.9, 141, 300 }, + [11] = { 34.1, 29.9, 141, 300 }, + [12] = { 32.7, 29.6, 141, 300 }, + [13] = { 33.4, 29.3, 141, 300 }, + [14] = { 33.1, 29.2, 141, 300 }, + [15] = { 34.3, 28.9, 141, 300 }, + [16] = { 32.9, 28.8, 141, 300 }, + [17] = { 34.3, 28.3, 141, 300 }, + [18] = { 36.2, 28.3, 141, 300 }, + [19] = { 34.6, 28.1, 141, 300 }, + [20] = { 37.3, 28, 141, 300 }, + [21] = { 34.3, 28, 141, 300 }, + [22] = { 36.7, 27.9, 141, 300 }, + [23] = { 34.1, 27.7, 141, 300 }, + [24] = { 36.4, 27.3, 141, 300 }, + [25] = { 34.2, 27.3, 141, 300 }, + [26] = { 34.8, 27, 141, 300 }, + [27] = { 35.2, 26.3, 141, 300 }, + [28] = { 36.4, 25.9, 141, 300 }, + }, + ["lvl"] = "9-10", + }, + [2020] = { + ["coords"] = { + [1] = { 32.2, 32.9, 141, 300 }, + [2] = { 32.6, 32.6, 141, 300 }, + [3] = { 32.2, 32.4, 141, 300 }, + [4] = { 31.8, 32.3, 141, 300 }, + [5] = { 32.7, 32, 141, 300 }, + [6] = { 31.4, 31.6, 141, 300 }, + [7] = { 32.8, 30.5, 141, 300 }, + [8] = { 33.1, 30, 141, 300 }, + [9] = { 32.9, 30, 141, 300 }, + [10] = { 33.5, 29.9, 141, 300 }, + [11] = { 34.1, 29.9, 141, 300 }, + [12] = { 32.7, 29.6, 141, 300 }, + [13] = { 33.4, 29.3, 141, 300 }, + [14] = { 33.1, 29.2, 141, 300 }, + [15] = { 34.3, 28.9, 141, 300 }, + [16] = { 32.9, 28.8, 141, 300 }, + [17] = { 34.3, 28.3, 141, 300 }, + [18] = { 36.2, 28.3, 141, 300 }, + [19] = { 34.6, 28.1, 141, 300 }, + [20] = { 37.3, 28, 141, 300 }, + [21] = { 34.3, 28, 141, 300 }, + [22] = { 36.7, 27.9, 141, 300 }, + [23] = { 34.1, 27.7, 141, 300 }, + [24] = { 36.4, 27.3, 141, 300 }, + [25] = { 34.2, 27.3, 141, 300 }, + [26] = { 34.8, 27, 141, 300 }, + [27] = { 35.2, 26.3, 141, 300 }, + [28] = { 36.4, 25.9, 141, 300 }, + }, + ["lvl"] = "9-10", + }, + [2021] = { + ["coords"] = { + [1] = { 32.2, 32.9, 141, 300 }, + [2] = { 32.6, 32.6, 141, 300 }, + [3] = { 32.2, 32.4, 141, 300 }, + [4] = { 31.8, 32.3, 141, 300 }, + [5] = { 32.7, 32, 141, 300 }, + [6] = { 31.4, 31.6, 141, 300 }, + [7] = { 32.8, 30.5, 141, 300 }, + [8] = { 33.1, 30, 141, 300 }, + [9] = { 32.9, 30, 141, 300 }, + [10] = { 33.5, 29.9, 141, 300 }, + [11] = { 34.1, 29.9, 141, 300 }, + [12] = { 32.7, 29.6, 141, 300 }, + [13] = { 33.4, 29.3, 141, 300 }, + [14] = { 33.1, 29.2, 141, 300 }, + [15] = { 34.3, 28.9, 141, 300 }, + [16] = { 32.9, 28.8, 141, 300 }, + [17] = { 34.3, 28.3, 141, 300 }, + [18] = { 36.2, 28.3, 141, 300 }, + [19] = { 34.6, 28.1, 141, 300 }, + [20] = { 37.3, 28, 141, 300 }, + [21] = { 34.3, 28, 141, 300 }, + [22] = { 36.7, 27.9, 141, 300 }, + [23] = { 34.1, 27.7, 141, 300 }, + [24] = { 36.4, 27.3, 141, 300 }, + [25] = { 34.2, 27.3, 141, 300 }, + [26] = { 34.8, 27, 141, 300 }, + [27] = { 35.2, 26.3, 141, 300 }, + [28] = { 36.4, 25.9, 141, 300 }, + }, + ["lvl"] = "11", + }, + [2022] = { + ["coords"] = { + [1] = { 58.9, 72.2, 141, 300 }, + [2] = { 59.5, 72.2, 141, 300 }, + [3] = { 60, 72.2, 141, 300 }, + [4] = { 60.7, 71.3, 141, 300 }, + [5] = { 60.9, 70.3, 141, 300 }, + [6] = { 60.1, 70, 141, 300 }, + [7] = { 61.5, 69.3, 141, 300 }, + [8] = { 62.2, 68.6, 141, 300 }, + [9] = { 55.5, 68.1, 141, 300 }, + [10] = { 60.9, 67.8, 141, 300 }, + [11] = { 60.8, 67.8, 141, 300 }, + [12] = { 55.9, 67.2, 141, 300 }, + [13] = { 55, 67.2, 141, 300 }, + [14] = { 55.2, 66.5, 141, 300 }, + [15] = { 60.3, 66.4, 141, 300 }, + [16] = { 54.3, 66.2, 141, 300 }, + [17] = { 61.8, 66.1, 141, 300 }, + [18] = { 57.6, 66, 141, 300 }, + [19] = { 60.8, 65.9, 141, 300 }, + [20] = { 56.8, 65.5, 141, 300 }, + [21] = { 60.2, 65.3, 141, 300 }, + [22] = { 61, 65.3, 141, 300 }, + [23] = { 57.6, 65.1, 141, 300 }, + [24] = { 57, 64.7, 141, 300 }, + [25] = { 60.1, 64.5, 141, 300 }, + [26] = { 57.3, 64.4, 141, 300 }, + [27] = { 59.7, 64.3, 141, 300 }, + [28] = { 58.4, 64.3, 141, 300 }, + }, + ["lvl"] = "5-6", + }, + [2027] = { + ["coords"] = { + [1] = { 53.7, 75.3, 141, 120 }, + [2] = { 52.8, 74.7, 141, 300 }, + [3] = { 53.2, 74.7, 141, 120 }, + [4] = { 53, 74.1, 141, 300 }, + [5] = { 42.5, 42.7, 141, 300 }, + [6] = { 43.9, 42.7, 141, 300 }, + [7] = { 41.9, 41.8, 141, 300 }, + [8] = { 43.8, 40.7, 141, 300 }, + [9] = { 42.5, 40.7, 141, 300 }, + [10] = { 43.9, 39.2, 141, 300 }, + [11] = { 42.5, 38.7, 141, 300 }, + [12] = { 41.8, 37.9, 141, 300 }, + }, + ["lvl"] = "8-9", + }, + [2031] = { + ["coords"] = { + [1] = { 58.4, 46.7, 141, 300 }, + [2] = { 60.3, 46, 141, 300 }, + [3] = { 58.8, 46, 141, 300 }, + [4] = { 58.4, 45.6, 141, 300 }, + [5] = { 62.2, 45.4, 141, 300 }, + [6] = { 61.1, 45.1, 141, 300 }, + [7] = { 60.6, 45, 141, 300 }, + [8] = { 57.9, 44.7, 141, 300 }, + [9] = { 56.6, 44.5, 141, 300 }, + [10] = { 61.4, 44.5, 141, 300 }, + [11] = { 62.3, 44.3, 141, 300 }, + [12] = { 61.9, 44.2, 141, 300 }, + [13] = { 61.6, 44.2, 141, 300 }, + [14] = { 62.8, 43.9, 141, 300 }, + [15] = { 62, 43.6, 141, 300 }, + [16] = { 62, 42.8, 141, 300 }, + [17] = { 62.6, 42.3, 141, 300 }, + [18] = { 63.3, 42.1, 141, 300 }, + [19] = { 64.3, 42, 141, 300 }, + [20] = { 62.6, 41.7, 141, 300 }, + [21] = { 61.5, 41.6, 141, 300 }, + [22] = { 61.6, 40.9, 141, 300 }, + [23] = { 64.4, 40.5, 141, 300 }, + [24] = { 61.5, 39.3, 141, 300 }, + [25] = { 57.9, 38.9, 141, 300 }, + }, + ["lvl"] = "1", + }, + [2032] = { + ["coords"] = { + [1] = { 61.2, 39.1, 141, 300 }, + [2] = { 62.4, 39, 141, 300 }, + [3] = { 62.2, 39, 141, 300 }, + [4] = { 63.4, 38.8, 141, 300 }, + [5] = { 62.5, 38.2, 141, 300 }, + [6] = { 62.3, 38, 141, 300 }, + [7] = { 62.7, 37.9, 141, 300 }, + [8] = { 62.4, 37, 141, 300 }, + [9] = { 63, 37, 141, 300 }, + [10] = { 62, 36.9, 141, 300 }, + [11] = { 62.9, 36.5, 141, 300 }, + [12] = { 60.3, 36.1, 141, 300 }, + [13] = { 60, 36, 141, 300 }, + [14] = { 58.9, 35.9, 141, 300 }, + [15] = { 59.5, 35.8, 141, 300 }, + [16] = { 60.8, 35.7, 141, 300 }, + [17] = { 60.7, 35.5, 141, 300 }, + [18] = { 61.7, 35.2, 141, 300 }, + [19] = { 61, 34.7, 141, 300 }, + [20] = { 62.6, 34.4, 141, 300 }, + [21] = { 60.6, 34.3, 141, 300 }, + [22] = { 59.8, 34.2, 141, 300 }, + [23] = { 59.2, 31.5, 141, 300 }, + }, + ["lvl"] = "2", + }, + [2033] = { + ["coords"] = { + [1] = { 46.9, 45.6, 141, 300 }, + [2] = { 46.3, 44.5, 141, 300 }, + [3] = { 39.8, 44.5, 141, 300 }, + [4] = { 45.2, 42.6, 141, 300 }, + [5] = { 45.7, 41, 141, 300 }, + [6] = { 46, 40.9, 141, 300 }, + [7] = { 45.8, 37.8, 141, 300 }, + [8] = { 44.6, 37.7, 141, 300 }, + [9] = { 45.1, 36.7, 141, 300 }, + [10] = { 39.6, 35.4, 141, 300 }, + [11] = { 39.5, 35.2, 141, 300 }, + [12] = { 45.8, 33.8, 141, 300 }, + [13] = { 34.7, 31, 141, 300 }, + [14] = { 35.3, 29.8, 141, 300 }, + [15] = { 35.9, 29.2, 141, 300 }, + }, + ["lvl"] = "8-9", + }, + [2038] = { + ["coords"] = { + [1] = { 52.8, 50.2, 141, 120 }, + }, + ["lvl"] = "8", + }, + [2039] = { + ["coords"] = { + [1] = { 38.8, 79.8, 141, 120 }, + }, + ["lvl"] = "12", + }, + [2040] = "_", + [2041] = { + ["coords"] = { + [1] = { 57.2, 57.4, 141, 300 }, + [2] = { 36.8, 55.3, 141, 300 }, + [3] = { 32.5, 54.7, 141, 300 }, + [4] = { 94.4, 40.1, 1657, 300 }, + [5] = { 73.8, 37.3, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [2042] = { + ["coords"] = { + [1] = { 54.8, 65.1, 141, 300 }, + [2] = { 59.6, 63.3, 141, 300 }, + [3] = { 54.3, 63.3, 141, 300 }, + [4] = { 53.7, 63.2, 141, 300 }, + [5] = { 59.5, 63, 141, 300 }, + [6] = { 53, 62.6, 141, 300 }, + [7] = { 51.8, 62.3, 141, 300 }, + [8] = { 52.8, 62.3, 141, 300 }, + [9] = { 51.5, 62.3, 141, 300 }, + [10] = { 59.4, 61.7, 141, 300 }, + [11] = { 62.2, 61.7, 141, 300 }, + [12] = { 50.9, 61.5, 141, 300 }, + [13] = { 59.5, 61.4, 141, 300 }, + [14] = { 51, 61.4, 141, 300 }, + [15] = { 62.8, 61, 141, 300 }, + [16] = { 62.8, 60.3, 141, 300 }, + [17] = { 51.6, 60.2, 141, 300 }, + [18] = { 51.5, 60.2, 141, 300 }, + [19] = { 62.1, 60.1, 141, 300 }, + [20] = { 51.7, 59.3, 141, 300 }, + [21] = { 51, 59.2, 141, 300 }, + [22] = { 61.5, 59, 141, 300 }, + [23] = { 52.9, 58.5, 141, 300 }, + [24] = { 58.7, 58.3, 141, 300 }, + [25] = { 51, 57.4, 141, 300 }, + [26] = { 50.8, 57.3, 141, 300 }, + [27] = { 64.1, 56, 141, 300 }, + [28] = { 49.8, 55.8, 141, 300 }, + [29] = { 53.6, 55.6, 141, 300 }, + [30] = { 68.8, 55.4, 141, 300 }, + [31] = { 49.7, 55.3, 141, 300 }, + [32] = { 57.6, 54.7, 141, 300 }, + [33] = { 67, 54.3, 141, 300 }, + [34] = { 68, 54, 141, 300 }, + [35] = { 65.6, 53.5, 141, 300 }, + [36] = { 49.7, 52.4, 141, 300 }, + [37] = { 67.3, 51.2, 141, 300 }, + [38] = { 66.2, 51.2, 141, 300 }, + [39] = { 49.3, 51.1, 141, 300 }, + [40] = { 48.7, 50.4, 141, 300 }, + [41] = { 48.5, 50, 141, 300 }, + }, + ["lvl"] = "5-6", + }, + [2043] = { + ["coords"] = { + [1] = { 50, 79.2, 141, 300 }, + [2] = { 50.6, 79, 141, 300 }, + [3] = { 50.9, 77.2, 141, 300 }, + [4] = { 49.7, 77.1, 141, 300 }, + [5] = { 50.3, 76.1, 141, 300 }, + [6] = { 45.8, 75.7, 141, 300 }, + [7] = { 47, 75.1, 141, 300 }, + [8] = { 45, 74.6, 141, 300 }, + [9] = { 43.2, 74.3, 141, 300 }, + [10] = { 56.9, 73.9, 141, 300 }, + [11] = { 61.5, 73.3, 141, 300 }, + [12] = { 62.6, 72.8, 141, 300 }, + [13] = { 53.9, 72.5, 141, 300 }, + [14] = { 55.8, 72.3, 141, 300 }, + [15] = { 63.4, 72.2, 141, 300 }, + [16] = { 62.2, 72.1, 141, 300 }, + [17] = { 45.2, 72.1, 141, 300 }, + [18] = { 46.6, 71.3, 141, 300 }, + [19] = { 63.5, 71.3, 141, 300 }, + [20] = { 47.1, 70.9, 141, 300 }, + [21] = { 63.4, 70.2, 141, 300 }, + [22] = { 41.2, 70.1, 141, 300 }, + [23] = { 40.4, 69.9, 141, 300 }, + [24] = { 39.9, 69.3, 141, 300 }, + [25] = { 40.4, 69.1, 141, 300 }, + [26] = { 40.7, 59.5, 141, 300 }, + [27] = { 38.2, 58.6, 141, 300 }, + [28] = { 38.9, 58.1, 141, 300 }, + [29] = { 40.8, 57, 141, 300 }, + [30] = { 38.5, 56.2, 141, 300 }, + [31] = { 40.1, 55.8, 141, 300 }, + [32] = { 40.5, 55.6, 141, 300 }, + }, + ["lvl"] = "7-8", + }, + [2045] = "_", + [2050] = { + ["coords"] = { + [1] = { 62, 42.7, 1497, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "14", + }, + [2051] = "_", + [2052] = "_", + [2053] = { + ["coords"] = { + [1] = { 46.4, 86.6, 130, 413 }, + [2] = { 46.3, 86.5, 130, 413 }, + [3] = { 47.2, 86.3, 130, 413 }, + [4] = { 47.6, 86.1, 130, 413 }, + [5] = { 45.6, 86, 130, 413 }, + [6] = { 45.5, 86, 130, 413 }, + [7] = { 46.8, 85.7, 130, 413 }, + [8] = { 46.8, 85.6, 130, 413 }, + [9] = { 45.3, 84.8, 130, 413 }, + [10] = { 44.4, 84.5, 130, 413 }, + [11] = { 44.3, 84.4, 130, 413 }, + [12] = { 45.9, 84.1, 130, 413 }, + [13] = { 47.8, 16.4, 5179, 413 }, + [14] = { 47.7, 16.2, 5179, 413 }, + [15] = { 48.7, 16, 5179, 413 }, + [16] = { 49.2, 15.8, 5179, 413 }, + [17] = { 46.9, 15.7, 5179, 413 }, + [18] = { 46.8, 15.6, 5179, 413 }, + [19] = { 48.2, 15.3, 5179, 413 }, + [20] = { 48.3, 15.2, 5179, 413 }, + [21] = { 46.5, 14.2, 5179, 413 }, + [22] = { 45.5, 13.9, 5179, 413 }, + [23] = { 45.4, 13.8, 5179, 413 }, + [24] = { 47.3, 13.4, 5179, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "18-19", + }, + [2054] = { + ["coords"] = { + [1] = { 46.4, 86.5, 130, 413 }, + [2] = { 47.1, 86.3, 130, 413 }, + [3] = { 45.6, 86.1, 130, 413 }, + [4] = { 46.7, 85.6, 130, 413 }, + [5] = { 46.9, 85.2, 130, 413 }, + [6] = { 45.2, 84.8, 130, 413 }, + [7] = { 44.4, 84.4, 130, 413 }, + [8] = { 44.2, 83.5, 130, 413 }, + [9] = { 45, 82.8, 130, 413 }, + [10] = { 47.8, 16.3, 5179, 413 }, + [11] = { 48.6, 16, 5179, 413 }, + [12] = { 46.8, 15.8, 5179, 413 }, + [13] = { 46.9, 15.7, 5179, 413 }, + [14] = { 48.2, 15.2, 5179, 413 }, + [15] = { 48.4, 14.8, 5179, 413 }, + [16] = { 46.5, 14.2, 5179, 413 }, + [17] = { 45.5, 13.8, 5179, 413 }, + [18] = { 45.3, 12.8, 5179, 413 }, + [19] = { 46.2, 12, 5179, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "19-20", + }, + [2057] = { + ["coords"] = { + [1] = { 52.2, 69.3, 38, 300 }, + [2] = { 25.3, 79.8, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [2058] = { + ["coords"] = { + [1] = { 46.5, 74.4, 130, 413 }, + [2] = { 47.9, 2.3, 5179, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "18", + }, + [2069] = { + ["coords"] = { + [1] = { 37.5, 79, 148, 413 }, + [2] = { 38.5, 77.5, 148, 413 }, + [3] = { 38, 77.5, 148, 413 }, + [4] = { 37.5, 77.3, 148, 413 }, + [5] = { 39, 72.4, 148, 413 }, + [6] = { 42.6, 71.8, 148, 413 }, + [7] = { 41.8, 71.5, 148, 413 }, + [8] = { 39, 70.6, 148, 413 }, + [9] = { 39.9, 70.6, 148, 413 }, + [10] = { 40.6, 70, 148, 413 }, + [11] = { 43.6, 69.9, 148, 413 }, + [12] = { 40, 69.3, 148, 413 }, + [13] = { 39.7, 69.3, 148, 413 }, + [14] = { 39.2, 69.2, 148, 413 }, + [15] = { 44.6, 68.7, 148, 413 }, + [16] = { 43.5, 67.8, 148, 413 }, + [17] = { 39.4, 67.8, 148, 413 }, + [18] = { 41.9, 67.7, 148, 413 }, + [19] = { 43.1, 67.5, 148, 413 }, + [20] = { 40.1, 67.5, 148, 413 }, + [21] = { 44.4, 67.4, 148, 413 }, + [22] = { 42.2, 67.4, 148, 413 }, + [23] = { 41, 67.4, 148, 413 }, + [24] = { 39, 66.8, 148, 413 }, + [25] = { 44.1, 66.1, 148, 413 }, + [26] = { 40, 66, 148, 413 }, + [27] = { 43.8, 65.7, 148, 413 }, + [28] = { 38.6, 64.5, 148, 413 }, + [29] = { 42.4, 64.2, 148, 413 }, + [30] = { 39.4, 63.8, 148, 413 }, + [31] = { 37.5, 63.4, 148, 413 }, + [32] = { 38, 59.7, 148, 413 }, + [33] = { 49.2, 32.5, 148, 413 }, + [34] = { 54.9, 30.1, 148, 413 }, + [35] = { 52.7, 29.4, 148, 413 }, + [36] = { 50.8, 28.6, 148, 413 }, + [37] = { 53.8, 27.8, 148, 413 }, + [38] = { 49, 27.7, 148, 413 }, + [39] = { 53.3, 27.2, 148, 413 }, + [40] = { 50.5, 27, 148, 413 }, + [41] = { 49.4, 26.7, 148, 413 }, + [42] = { 51.7, 25.6, 148, 413 }, + [43] = { 48.9, 25.5, 148, 413 }, + [44] = { 44.6, 24.8, 148, 413 }, + [45] = { 55.5, 23.3, 148, 413 }, + [46] = { 54.7, 21.9, 148, 413 }, + [47] = { 55.5, 21.6, 148, 413 }, + [48] = { 55.1, 21.4, 148, 413 }, + [49] = { 55.4, 20.8, 148, 413 }, + }, + ["lvl"] = "14-15", + }, + [2070] = { + ["coords"] = { + [1] = { 37.5, 93, 148, 413 }, + [2] = { 39.8, 91.8, 148, 413 }, + [3] = { 36.6, 90.8, 148, 413 }, + [4] = { 39.5, 90.5, 148, 413 }, + [5] = { 42.9, 90.3, 148, 413 }, + [6] = { 37, 89.7, 148, 413 }, + [7] = { 35.2, 89.7, 148, 413 }, + [8] = { 45.2, 58.8, 148, 413 }, + [9] = { 44.5, 58.2, 148, 413 }, + [10] = { 45.3, 57.6, 148, 413 }, + [11] = { 45, 57.2, 148, 413 }, + [12] = { 45.2, 56.1, 148, 413 }, + [13] = { 44, 55.7, 148, 413 }, + [14] = { 44.6, 55.7, 148, 413 }, + [15] = { 43.2, 54.6, 148, 413 }, + [16] = { 42, 54.5, 148, 413 }, + [17] = { 46.5, 54.2, 148, 413 }, + [18] = { 46.4, 52.4, 148, 413 }, + [19] = { 38.8, 50.7, 148, 413 }, + [20] = { 40.1, 50.1, 148, 413 }, + [21] = { 38, 50.1, 148, 413 }, + [22] = { 38.9, 48.8, 148, 413 }, + [23] = { 42, 48.2, 148, 413 }, + [24] = { 42.1, 45.3, 148, 413 }, + [25] = { 47.2, 44.5, 148, 413 }, + [26] = { 44.1, 43.8, 148, 413 }, + [27] = { 42.6, 43.2, 148, 413 }, + [28] = { 41, 43, 148, 413 }, + [29] = { 44.8, 42.7, 148, 413 }, + [30] = { 46.4, 42.1, 148, 413 }, + [31] = { 40.5, 41.2, 148, 413 }, + [32] = { 44.8, 41.2, 148, 413 }, + [33] = { 40.3, 41.1, 148, 413 }, + [34] = { 47.2, 40.8, 148, 413 }, + [35] = { 39.7, 40.4, 148, 413 }, + [36] = { 47.9, 40.1, 148, 413 }, + [37] = { 39.4, 39.7, 148, 413 }, + [38] = { 39.4, 39.1, 148, 413 }, + [39] = { 48.3, 38.8, 148, 413 }, + [40] = { 39.6, 37.8, 148, 413 }, + [41] = { 38.1, 36.9, 148, 413 }, + [42] = { 39.2, 34.3, 148, 413 }, + [43] = { 39.6, 33.4, 148, 413 }, + [44] = { 45.5, 33.3, 148, 413 }, + [45] = { 40.1, 33.2, 148, 413 }, + [46] = { 45.7, 31.7, 148, 413 }, + [47] = { 44.9, 29.3, 148, 413 }, + [48] = { 43.6, 29, 148, 413 }, + [49] = { 45.2, 28, 148, 413 }, + [50] = { 44.3, 27.7, 148, 413 }, + [51] = { 43, 26.1, 148, 413 }, + [52] = { 42.7, 25.9, 148, 413 }, + [53] = { 45.1, 24.8, 148, 413 }, + [54] = { 44.7, 24.3, 148, 413 }, + [55] = { 48.7, 24.3, 148, 413 }, + [56] = { 43.5, 24.2, 148, 413 }, + [57] = { 46.3, 24, 148, 413 }, + [58] = { 46.2, 23.7, 148, 413 }, + [59] = { 61, 13, 148, 413 }, + [60] = { 61, 11.9, 148, 413 }, + [61] = { 59.6, 11.8, 148, 413 }, + [62] = { 62.6, 7, 148, 413 }, + }, + ["lvl"] = "10-17", + }, + [2071] = { + ["coords"] = { + [1] = { 37.2, 93.4, 148, 413 }, + [2] = { 39.4, 91.8, 148, 413 }, + [3] = { 43, 90.8, 148, 413 }, + [4] = { 36.5, 90.5, 148, 413 }, + [5] = { 39.9, 90.3, 148, 413 }, + [6] = { 36.9, 89.7, 148, 413 }, + [7] = { 35, 88.8, 148, 413 }, + [8] = { 61.2, 13.7, 148, 413 }, + [9] = { 61, 11.9, 148, 413 }, + [10] = { 59.9, 11.8, 148, 413 }, + [11] = { 62.9, 7.3, 148, 413 }, + [12] = { 62.5, 6.7, 148, 413 }, + }, + ["lvl"] = "19-20", + }, + [2077] = { + ["coords"] = { + [1] = { 59.9, 42.5, 141, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [2078] = { + ["coords"] = { + [1] = { 56, 57.3, 141, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "11", + }, + [2079] = { + ["coords"] = { + [1] = { 58.7, 44.3, 141, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "4", + }, + [2080] = { + ["coords"] = { + [1] = { 60.8, 68.5, 141, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "11", + }, + [2082] = { + ["coords"] = { + [1] = { 57.8, 41.7, 141, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "9", + }, + [2083] = { + ["coords"] = { + [1] = { 56.1, 57.7, 141, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "12", + }, + [2086] = { + ["coords"] = { + [1] = { 10.1, 56.9, 11, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [2087] = "_", + [2089] = { + ["coords"] = { + [1] = { 15.3, 29.2, 11, 300 }, + [2] = { 17.6, 29.1, 11, 300 }, + [3] = { 18.4, 27, 11, 300 }, + [4] = { 17, 26.9, 11, 300 }, + [5] = { 16.2, 26.2, 11, 300 }, + [6] = { 19, 24.8, 11, 300 }, + [7] = { 20.6, 24.2, 11, 300 }, + [8] = { 17.5, 23.5, 11, 300 }, + [9] = { 19.2, 23, 11, 300 }, + [10] = { 26.1, 22.6, 11, 300 }, + [11] = { 22.4, 20.9, 11, 300 }, + [12] = { 21.7, 20, 11, 300 }, + [13] = { 27, 19.4, 11, 300 }, + }, + ["lvl"] = "25-26", + }, + [2090] = { + ["coords"] = { + [1] = { 48.1, 74.7, 11, 27000 }, + [2] = { 5.7, 36.4, 5602, 27000 }, + }, + ["lvl"] = "23", + ["rnk"] = "4", + }, + [2091] = { + ["coords"] = { + [1] = { 53.5, 54.7, 11, 300 }, + [2] = { 9.8, 20.9, 5602, 300 }, + }, + ["lvl"] = "32", + ["rnk"] = "1", + }, + [2092] = { + ["coords"] = { + [1] = { 72.7, 94, 1537, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "23", + }, + [2093] = { + ["coords"] = { + [1] = { 49.9, 39.4, 11, 30 }, + [2] = { 7.1, 9.2, 5602, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [2094] = { + ["coords"] = { + [1] = { 8.5, 55.7, 11, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [2095] = "_", + [2096] = { + ["coords"] = { + [1] = { 11.5, 52.1, 11, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [2097] = { + ["coords"] = { + [1] = { 10.8, 55.9, 11, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [2098] = { + ["coords"] = { + [1] = { 56.4, 84.2, 11, 300 }, + [2] = { 50.6, 74.8, 11, 300 }, + [3] = { 50.3, 73.2, 11, 300 }, + [4] = { 49, 72.3, 11, 300 }, + [5] = { 16.3, 72, 11, 60 }, + [6] = { 48.3, 70.7, 11, 300 }, + [7] = { 52.4, 68.7, 11, 300 }, + [8] = { 50, 68, 11, 300 }, + [9] = { 47.9, 67.7, 11, 300 }, + [10] = { 48.3, 65.6, 11, 300 }, + [11] = { 38.6, 93.1, 28, 300 }, + [12] = { 35.5, 92.9, 28, 300 }, + [13] = { 31.8, 84.1, 28, 300 }, + [14] = { 66.4, 53.7, 36, 300 }, + [15] = { 36.8, 44.7, 36, 300 }, + [16] = { 72.4, 43, 36, 300 }, + [17] = { 67.7, 42.7, 36, 300 }, + [18] = { 40.1, 35, 36, 300 }, + [19] = { 48, 29.3, 36, 300 }, + [20] = { 61.9, 29.1, 36, 300 }, + [21] = { 52.6, 71.9, 38, 300 }, + [22] = { 58.9, 63.8, 38, 300 }, + [23] = { 28.6, 57.8, 38, 300 }, + [24] = { 38.4, 32.5, 38, 300 }, + [25] = { 31.8, 15.9, 38, 300 }, + [26] = { 30.3, 12.4, 38, 300 }, + [27] = { 27.2, 12.2, 38, 300 }, + [28] = { 25.5, 81.1, 5602, 300 }, + [29] = { 28.7, 76.9, 5602, 300 }, + [30] = { 13.2, 73.8, 5602, 300 }, + [31] = { 18.2, 60.9, 5602, 300 }, + [32] = { 14.8, 52.4, 5602, 300 }, + [33] = { 14, 50.5, 5602, 300 }, + [34] = { 12.5, 50.4, 5602, 300 }, + [35] = { 12.1, 43.6, 5602, 300 }, + [36] = { 7.6, 36.5, 5602, 300 }, + [37] = { 7.4, 35.2, 5602, 300 }, + [38] = { 6.4, 34.5, 5602, 300 }, + [39] = { 5.8, 33.3, 5602, 300 }, + [40] = { 9, 31.7, 5602, 300 }, + [41] = { 7.1, 31.2, 5602, 300 }, + [42] = { 5.5, 31, 5602, 300 }, + [43] = { 5.8, 29.4, 5602, 300 }, + }, + ["lvl"] = "5", + }, + [2102] = { + ["coords"] = { + [1] = { 49.2, 80.1, 11, 300 }, + [2] = { 51.5, 78.5, 11, 300 }, + [3] = { 48.7, 77.3, 11, 300 }, + [4] = { 47.2, 77.1, 11, 300 }, + [5] = { 50, 77, 11, 300 }, + [6] = { 47.3, 76, 11, 300 }, + [7] = { 48.2, 75.8, 11, 300 }, + [8] = { 47.4, 75.7, 11, 300 }, + [9] = { 47.6, 75.6, 11, 300 }, + [10] = { 48.1, 75.5, 11, 300 }, + [11] = { 47.5, 75.1, 11, 300 }, + [12] = { 47.8, 74.7, 11, 300 }, + [13] = { 47.8, 74.3, 11, 300 }, + [14] = { 49.9, 69.6, 11, 300 }, + [15] = { 47.6, 66.5, 11, 300 }, + [16] = { 48.5, 66, 11, 300 }, + [17] = { 6.6, 42.5, 5602, 300 }, + [18] = { 6.5, 40.5, 5602, 300 }, + [19] = { 8.3, 39.2, 5602, 300 }, + [20] = { 6.2, 38.3, 5602, 300 }, + [21] = { 5, 38.2, 5602, 300 }, + [22] = { 7.1, 38.1, 5602, 300 }, + [23] = { 5, 37.4, 5602, 300 }, + [24] = { 5.8, 37.2, 5602, 300 }, + [25] = { 5.2, 37.2, 5602, 300 }, + [26] = { 5.3, 37, 5602, 300 }, + [27] = { 5.7, 37, 5602, 300 }, + [28] = { 5.2, 36.7, 5602, 300 }, + [29] = { 5.5, 36.4, 5602, 300 }, + [30] = { 5.5, 36.1, 5602, 300 }, + [31] = { 7, 32.4, 5602, 300 }, + [32] = { 5.3, 30, 5602, 300 }, + [33] = { 6, 29.6, 5602, 300 }, + }, + ["lvl"] = "20-21", + }, + [2103] = { + ["coords"] = { + [1] = { 49.3, 79.8, 11, 300 }, + [2] = { 50.1, 79.5, 11, 300 }, + [3] = { 51.2, 79.5, 11, 300 }, + [4] = { 49.6, 79, 11, 300 }, + [5] = { 48.9, 78.9, 11, 300 }, + [6] = { 48.2, 78.2, 11, 300 }, + [7] = { 47.9, 77.2, 11, 300 }, + [8] = { 49.3, 77, 11, 300 }, + [9] = { 50.7, 76.9, 11, 300 }, + [10] = { 47.7, 76.8, 11, 300 }, + [11] = { 47.5, 76.5, 11, 300 }, + [12] = { 48, 76.2, 11, 300 }, + [13] = { 49.9, 76.1, 11, 300 }, + [14] = { 47.9, 75.9, 11, 300 }, + [15] = { 48.2, 74.7, 11, 300 }, + [16] = { 47.8, 74.2, 11, 300 }, + [17] = { 48.2, 74, 11, 300 }, + [18] = { 6.6, 40.2, 5602, 300 }, + [19] = { 7.2, 40.1, 5602, 300 }, + [20] = { 8.1, 40.1, 5602, 300 }, + [21] = { 6.9, 39.7, 5602, 300 }, + [22] = { 6.3, 39.6, 5602, 300 }, + [23] = { 5.8, 39.1, 5602, 300 }, + [24] = { 5.5, 38.3, 5602, 300 }, + [25] = { 6.6, 38.1, 5602, 300 }, + [26] = { 7.7, 38.1, 5602, 300 }, + [27] = { 5.4, 38, 5602, 300 }, + [28] = { 5.2, 37.7, 5602, 300 }, + [29] = { 5.6, 37.5, 5602, 300 }, + [30] = { 7.1, 37.4, 5602, 300 }, + [31] = { 5.5, 37.3, 5602, 300 }, + [32] = { 5.8, 36.4, 5602, 300 }, + [33] = { 5.4, 36, 5602, 300 }, + [34] = { 5.8, 35.8, 5602, 300 }, + }, + ["lvl"] = "19-20", + }, + [2104] = { + ["coords"] = { + [1] = { 9.9, 57.5, 11, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [2105] = { + ["coords"] = { + [1] = { 55.7, 85, 11, 300 }, + [2] = { 11.5, 44.3, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2106] = { + ["coords"] = { + [1] = { 42.9, 73.4, 130, 300 }, + [2] = { 43.8, 1.2, 5179, 300 }, + }, + ["lvl"] = "16", + ["rnk"] = "1", + }, + [2107] = { + ["coords"] = { + [1] = { 66.3, 58.5, 141, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "7", + }, + [2108] = { + ["coords"] = { + [1] = { 38.5, 46.1, 11, 27000 }, + }, + ["lvl"] = "29", + ["rnk"] = "4", + }, + [2109] = "_", + [2110] = { + ["coords"] = { + [1] = { 57.2, 78.9, 10, 300 }, + [2] = { 44, 72, 10, 300 }, + [3] = { 43.8, 71.8, 10, 300 }, + [4] = { 58.8, 69.2, 10, 300 }, + [5] = { 51.2, 67.3, 10, 300 }, + [6] = { 36.1, 65, 10, 300 }, + [7] = { 41.6, 64.4, 10, 300 }, + [8] = { 41.7, 64.3, 10, 300 }, + [9] = { 15.4, 63.7, 10, 300 }, + [10] = { 30.7, 61.3, 10, 300 }, + [11] = { 70.2, 61.1, 10, 300 }, + [12] = { 19.3, 60.5, 10, 300 }, + [13] = { 24.5, 59.9, 10, 300 }, + [14] = { 65.1, 59.2, 10, 300 }, + [15] = { 75.6, 57.8, 10, 300 }, + [16] = { 66.6, 54.8, 10, 300 }, + [17] = { 21.8, 54.4, 10, 300 }, + [18] = { 73.7, 54.3, 10, 300 }, + [19] = { 77.3, 54, 10, 300 }, + [20] = { 68.7, 52.3, 10, 300 }, + [21] = { 71.7, 37.6, 10, 300 }, + [22] = { 74, 30.9, 10, 300 }, + [23] = { 52.7, 78.6, 28, 300 }, + [24] = { 49.7, 78.2, 28, 300 }, + [25] = { 50, 75.5, 28, 300 }, + [26] = { 41.2, 72.8, 28, 300 }, + [27] = { 38.2, 72.1, 28, 300 }, + [28] = { 41.1, 70.5, 28, 300 }, + [29] = { 47.3, 69.8, 28, 300 }, + [30] = { 45.7, 69.6, 28, 300 }, + [31] = { 49.4, 66.7, 28, 300 }, + [32] = { 53.2, 66.6, 28, 300 }, + [33] = { 43.7, 66.4, 28, 300 }, + [34] = { 47.5, 64.3, 28, 300 }, + [35] = { 42.1, 61.1, 28, 300 }, + [36] = { 61.7, 58.4, 28, 300 }, + [37] = { 63.9, 58.3, 28, 300 }, + [38] = { 37.7, 55.7, 28, 300 }, + [39] = { 46.2, 53.3, 28, 300 }, + [40] = { 49.8, 45.6, 28, 300 }, + [41] = { 49.8, 45.5, 28, 300 }, + [42] = { 53.8, 44.8, 28, 300 }, + [43] = { 51.1, 77, 209, 300 }, + [44] = { 38.2, 76.2, 209, 300 }, + [45] = { 84.7, 71.2, 209, 300 }, + [46] = { 85.1, 67.6, 209, 300 }, + [47] = { 52.9, 65.7, 209, 300 }, + [48] = { 36.9, 59.5, 209, 300 }, + [49] = { 78.8, 56.7, 209, 300 }, + [50] = { 47.2, 56.5, 209, 300 }, + [51] = { 65.9, 46.5, 209, 300 }, + [52] = { 66, 36.8, 209, 300 }, + [53] = { 74, 25.8, 209, 300 }, + [54] = { 74.5, 23.6, 209, 300 }, + [55] = { 31.1, 50.5, 722, 300 }, + [56] = { 20, 46.9, 722, 300 }, + [57] = { 32.5, 43.9, 722, 300 }, + [58] = { 25.9, 43.6, 722, 300 }, + [59] = { 37.7, 41.9, 722, 300 }, + [60] = { 27.3, 40.2, 722, 300 }, + [61] = { 46.2, 39.1, 722, 300 }, + [62] = { 63.6, 37.2, 722, 300 }, + [63] = { 59, 35, 722, 300 }, + [64] = { 37.7, 34.8, 722, 300 }, + [65] = { 23.7, 32.6, 722, 300 }, + [66] = { 62.1, 31.7, 722, 300 }, + [67] = { 39.4, 29.6, 722, 300 }, + [68] = { 37.7, 29.5, 722, 300 }, + [69] = { 62, 26.8, 722, 300 }, + [70] = { 54.9, 26, 722, 300 }, + [71] = { 25.7, 26, 722, 300 }, + [72] = { 40.7, 25.6, 722, 300 }, + [73] = { 44.8, 24.5, 722, 300 }, + [74] = { 63.7, 21, 722, 300 }, + [75] = { 61.4, 20.5, 722, 300 }, + [76] = { 23.4, 19.9, 722, 300 }, + [77] = { 20.9, 19.6, 722, 300 }, + [78] = { 63.5, 19, 722, 300 }, + [79] = { 58.5, 19, 722, 300 }, + [80] = { 35.9, 16.9, 722, 300 }, + [81] = { 32.2, 15.9, 722, 300 }, + [82] = { 21.8, 15.3, 722, 300 }, + [83] = { 88, 56.2, 2057, 300 }, + }, + ["lvl"] = "1", + }, + [2111] = { + ["coords"] = { + [1] = { 11.8, 58, 11, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [2121] = { + ["coords"] = { + [1] = { 44, 40.9, 130, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [2123] = { + ["coords"] = { + [1] = { 31.1, 66, 85, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "5", + }, + [2128] = { + ["coords"] = { + [1] = { 62, 52.5, 85, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "14", + }, + [2129] = { + ["coords"] = { + [1] = { 61.6, 52.2, 85, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "17", + }, + [2130] = { + ["coords"] = { + [1] = { 61.8, 52, 85, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "13", + }, + [2131] = { + ["coords"] = { + [1] = { 61.9, 52.5, 85, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "16", + }, + [2133] = "_", + [2134] = { + ["coords"] = { + [1] = { 61.2, 52.6, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "10", + }, + [2138] = "_", + [2142] = { + ["coords"] = { + [1] = { 81.9, 19.7, 10, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "32", + }, + [2152] = { + ["coords"] = { + [1] = { 45.2, 54.6, 141, 300 }, + [2] = { 45.9, 54.5, 141, 300 }, + [3] = { 46.8, 54.4, 141, 300 }, + [4] = { 46.3, 54.2, 141, 300 }, + [5] = { 48.5, 54.1, 141, 300 }, + [6] = { 45.8, 53.6, 141, 300 }, + [7] = { 48.3, 53.5, 141, 300 }, + [8] = { 46.5, 53.4, 141, 300 }, + [9] = { 47.9, 53.3, 141, 300 }, + [10] = { 45.5, 52.9, 141, 300 }, + [11] = { 46.3, 52.7, 141, 300 }, + [12] = { 46.7, 52.5, 141, 300 }, + [13] = { 45.9, 52.5, 141, 300 }, + [14] = { 46.3, 52.2, 141, 120 }, + [15] = { 46.2, 51.1, 141, 120 }, + }, + ["lvl"] = "6-7", + }, + [2154] = "_", + [2156] = { + ["coords"] = { + [1] = { 35.7, 85.7, 148, 413 }, + [2] = { 36, 85.5, 148, 413 }, + [3] = { 35.1, 84.9, 148, 413 }, + [4] = { 35.3, 84.5, 148, 413 }, + [5] = { 35.6, 84.3, 148, 413 }, + }, + ["lvl"] = "18-19", + }, + [2157] = { + ["coords"] = { + [1] = { 36.2, 86.4, 148, 413 }, + [2] = { 36.2, 85.9, 148, 413 }, + [3] = { 35.5, 85, 148, 413 }, + }, + ["lvl"] = "19-20", + }, + [2162] = { + ["coords"] = { + [1] = { 46.3, 51, 141, 120 }, + }, + ["lvl"] = "8", + }, + [2163] = { + ["coords"] = { + [1] = { 44.7, 60.2, 148, 413 }, + [2] = { 41.6, 56.9, 148, 413 }, + [3] = { 43.2, 56.4, 148, 413 }, + [4] = { 42.6, 55.8, 148, 413 }, + [5] = { 45.7, 55.3, 148, 413 }, + [6] = { 43.6, 54.9, 148, 413 }, + [7] = { 42.9, 54.8, 148, 413 }, + [8] = { 46.3, 54.8, 148, 413 }, + [9] = { 38, 48.6, 148, 413 }, + [10] = { 41, 48.5, 148, 413 }, + [11] = { 41.6, 48, 148, 413 }, + [12] = { 42.6, 47.9, 148, 413 }, + [13] = { 42, 47.1, 148, 413 }, + [14] = { 38.1, 47, 148, 413 }, + [15] = { 43.2, 44.2, 148, 413 }, + [16] = { 45.1, 43.8, 148, 413 }, + [17] = { 45.6, 43.5, 148, 413 }, + [18] = { 44.6, 43.2, 148, 413 }, + [19] = { 43.7, 42.7, 148, 413 }, + [20] = { 43.2, 42.6, 148, 413 }, + [21] = { 43.5, 41.9, 148, 413 }, + [22] = { 41.1, 41.9, 148, 413 }, + [23] = { 47, 41.9, 148, 413 }, + [24] = { 45.8, 41.7, 148, 413 }, + [25] = { 45.7, 41.5, 148, 413 }, + [26] = { 48.2, 40.8, 148, 413 }, + [27] = { 40.4, 40.3, 148, 413 }, + [28] = { 39.9, 39.5, 148, 413 }, + [29] = { 38.4, 38.8, 148, 413 }, + [30] = { 38.4, 38.6, 148, 413 }, + [31] = { 40.5, 38.4, 148, 413 }, + [32] = { 49, 38.3, 148, 413 }, + [33] = { 38.6, 38.3, 148, 413 }, + [34] = { 40.5, 38, 148, 413 }, + [35] = { 39.2, 37.2, 148, 413 }, + [36] = { 40.2, 36.8, 148, 413 }, + [37] = { 40.2, 36.5, 148, 413 }, + [38] = { 39.5, 36.3, 148, 413 }, + [39] = { 40.4, 35, 148, 413 }, + [40] = { 41.6, 34.8, 148, 413 }, + [41] = { 43.4, 34.7, 148, 413 }, + [42] = { 41.1, 34.1, 148, 413 }, + [43] = { 44.9, 33.9, 148, 413 }, + [44] = { 41.6, 33.9, 148, 413 }, + [45] = { 44.6, 33.4, 148, 413 }, + [46] = { 43.4, 33.4, 148, 413 }, + [47] = { 43.7, 32.4, 148, 413 }, + [48] = { 45.1, 32.3, 148, 413 }, + [49] = { 44.1, 32.2, 148, 413 }, + [50] = { 44.4, 31.6, 148, 413 }, + [51] = { 44.3, 31, 148, 413 }, + [52] = { 44.8, 30.8, 148, 413 }, + [53] = { 43.5, 30, 148, 413 }, + [54] = { 45.5, 29.9, 148, 413 }, + [55] = { 44.6, 29.9, 148, 413 }, + [56] = { 43.7, 29.4, 148, 413 }, + [57] = { 45.7, 28.9, 148, 413 }, + [58] = { 44.6, 28.6, 148, 413 }, + [59] = { 44.8, 27.2, 148, 413 }, + [60] = { 43.4, 26.9, 148, 413 }, + [61] = { 46, 26.6, 148, 413 }, + [62] = { 45.9, 26.4, 148, 413 }, + [63] = { 45.3, 26.4, 148, 413 }, + [64] = { 45.6, 26, 148, 413 }, + [65] = { 44.4, 25.9, 148, 413 }, + [66] = { 43.5, 25.8, 148, 413 }, + [67] = { 46.7, 25.4, 148, 413 }, + [68] = { 42.9, 24.9, 148, 413 }, + [69] = { 46.2, 24.9, 148, 413 }, + [70] = { 44.5, 24.7, 148, 413 }, + [71] = { 45.6, 23.9, 148, 413 }, + [72] = { 47.6, 23.8, 148, 413 }, + [73] = { 47.3, 23.7, 148, 413 }, + [74] = { 45.2, 23.6, 148, 413 }, + [75] = { 48, 23.4, 148, 413 }, + [76] = { 45.8, 23, 148, 413 }, + [77] = { 43.1, 22.9, 148, 413 }, + [78] = { 46.8, 22.6, 148, 413 }, + [79] = { 43.5, 22.6, 148, 413 }, + [80] = { 48.7, 22.2, 148, 413 }, + [81] = { 30.1, 31.1, 361, 413 }, + }, + ["lvl"] = "11-12", + }, + [2164] = { + ["coords"] = { + [1] = { 38.5, 79, 148, 413 }, + [2] = { 39, 76.7, 148, 413 }, + [3] = { 40.5, 76.4, 148, 413 }, + [4] = { 40.6, 75.8, 148, 413 }, + [5] = { 39.8, 75.8, 148, 413 }, + [6] = { 38.4, 75, 148, 413 }, + [7] = { 38.4, 74.4, 148, 413 }, + [8] = { 37.7, 74, 148, 413 }, + [9] = { 37.6, 73.2, 148, 413 }, + [10] = { 38.7, 72.8, 148, 413 }, + [11] = { 37.8, 72.3, 148, 413 }, + [12] = { 38.4, 71.8, 148, 413 }, + [13] = { 40.5, 71.1, 148, 413 }, + [14] = { 39.5, 71, 148, 413 }, + [15] = { 43.1, 70.7, 148, 413 }, + [16] = { 38.2, 70.6, 148, 413 }, + [17] = { 44.1, 70.6, 148, 413 }, + [18] = { 38.6, 70.2, 148, 413 }, + [19] = { 38.1, 69.5, 148, 413 }, + [20] = { 44.1, 69.2, 148, 413 }, + [21] = { 43.1, 69.1, 148, 413 }, + [22] = { 39.6, 68.3, 148, 413 }, + [23] = { 42.4, 68.3, 148, 413 }, + [24] = { 38.5, 68.2, 148, 413 }, + [25] = { 38.1, 67.7, 148, 413 }, + [26] = { 45, 66.8, 148, 413 }, + [27] = { 41, 66.2, 148, 413 }, + [28] = { 42.1, 66.1, 148, 413 }, + [29] = { 38.9, 66, 148, 413 }, + [30] = { 38.6, 65.8, 148, 413 }, + [31] = { 38.2, 65.5, 148, 413 }, + [32] = { 42.3, 65.5, 148, 413 }, + [33] = { 39.2, 65.3, 148, 413 }, + [34] = { 41.7, 65.2, 148, 413 }, + [35] = { 43, 64.7, 148, 413 }, + [36] = { 39, 64.3, 148, 413 }, + [37] = { 39.3, 63.3, 148, 413 }, + [38] = { 41.4, 63.2, 148, 413 }, + [39] = { 44.6, 63, 148, 413 }, + [40] = { 39.6, 61.8, 148, 413 }, + [41] = { 38.3, 61.7, 148, 413 }, + [42] = { 39, 61.5, 148, 413 }, + [43] = { 39.5, 60.8, 148, 413 }, + [44] = { 38.5, 60.7, 148, 413 }, + [45] = { 39.2, 59.7, 148, 413 }, + [46] = { 39.5, 59.5, 148, 413 }, + [47] = { 38.7, 58.9, 148, 413 }, + [48] = { 38.3, 58.4, 148, 413 }, + [49] = { 40.1, 58.3, 148, 413 }, + [50] = { 38.5, 57.7, 148, 413 }, + [51] = { 38.1, 56.6, 148, 413 }, + [52] = { 38.6, 54.6, 148, 413 }, + [53] = { 38.2, 52.6, 148, 413 }, + [54] = { 48.4, 35.6, 148, 413 }, + [55] = { 51.2, 35.6, 148, 413 }, + [56] = { 49.2, 35.4, 148, 413 }, + [57] = { 48.6, 35.2, 148, 413 }, + [58] = { 47.9, 34.6, 148, 413 }, + [59] = { 51.2, 34.4, 148, 413 }, + [60] = { 46.7, 34.4, 148, 413 }, + [61] = { 47.5, 34.1, 148, 413 }, + [62] = { 46.7, 33.5, 148, 413 }, + [63] = { 49.4, 33.4, 148, 413 }, + [64] = { 48.4, 33.4, 148, 413 }, + [65] = { 47.6, 33, 148, 413 }, + [66] = { 44.4, 32.7, 148, 413 }, + [67] = { 51.8, 32.5, 148, 413 }, + [68] = { 47.1, 32.4, 148, 413 }, + [69] = { 51.8, 31.8, 148, 413 }, + [70] = { 47.1, 31.2, 148, 413 }, + [71] = { 45.5, 31.1, 148, 413 }, + [72] = { 50.9, 31.1, 148, 413 }, + [73] = { 44, 31.1, 148, 413 }, + [74] = { 48.9, 31.1, 148, 413 }, + [75] = { 50.1, 31, 148, 413 }, + [76] = { 48.4, 31, 148, 413 }, + [77] = { 50.8, 30.2, 148, 413 }, + [78] = { 54.4, 29.5, 148, 413 }, + [79] = { 44.7, 29.3, 148, 413 }, + [80] = { 49.3, 29.2, 148, 413 }, + [81] = { 53.4, 29, 148, 413 }, + [82] = { 52.6, 28.8, 148, 413 }, + [83] = { 47.5, 28.5, 148, 413 }, + [84] = { 47.3, 28.2, 148, 413 }, + [85] = { 50.4, 27.8, 148, 413 }, + [86] = { 52.8, 27.7, 148, 413 }, + [87] = { 49.6, 27.4, 148, 413 }, + [88] = { 48.6, 27.1, 148, 413 }, + [89] = { 45.1, 26.5, 148, 413 }, + [90] = { 53.2, 26.3, 148, 413 }, + [91] = { 48.4, 26.3, 148, 413 }, + [92] = { 50.2, 25.7, 148, 413 }, + [93] = { 49.7, 25.6, 148, 413 }, + [94] = { 53.8, 25.6, 148, 413 }, + [95] = { 52.8, 25.6, 148, 413 }, + [96] = { 43.7, 25.4, 148, 413 }, + [97] = { 46.6, 24.9, 148, 413 }, + [98] = { 47.7, 24.5, 148, 413 }, + [99] = { 45.9, 24.4, 148, 413 }, + [100] = { 44.4, 23.6, 148, 413 }, + [101] = { 43, 22.8, 148, 413 }, + }, + ["lvl"] = "13-14", + }, + [2165] = { + ["coords"] = { + [1] = { 43, 82.4, 148, 413 }, + [2] = { 38.6, 82.4, 148, 413 }, + [3] = { 39.7, 82.1, 148, 413 }, + [4] = { 38, 82, 148, 413 }, + [5] = { 37.5, 82, 148, 413 }, + [6] = { 40.5, 81.8, 148, 413 }, + [7] = { 45.1, 81.4, 148, 413 }, + [8] = { 39.3, 81.4, 148, 413 }, + [9] = { 41.1, 81.3, 148, 413 }, + [10] = { 40.4, 81.1, 148, 413 }, + [11] = { 39.8, 80.8, 148, 413 }, + [12] = { 38.6, 80.5, 148, 413 }, + [13] = { 37.7, 79.8, 148, 413 }, + [14] = { 40.1, 79.8, 148, 413 }, + [15] = { 37.8, 78.6, 148, 413 }, + [16] = { 39.1, 76.3, 148, 413 }, + [17] = { 40.3, 75.9, 148, 413 }, + [18] = { 38.2, 71.1, 148, 413 }, + [19] = { 39.1, 70, 148, 413 }, + [20] = { 28.7, 61.4, 361, 413 }, + }, + ["lvl"] = "16-17", + }, + [2166] = { + ["coords"] = { + [1] = { 53.8, 75.1, 141, 120 }, + }, + ["lvl"] = "9", + ["rnk"] = "1", + }, + [2167] = { + ["coords"] = { + [1] = { 39.2, 56.4, 148, 413 }, + [2] = { 39.9, 56.4, 148, 413 }, + [3] = { 40.2, 56.3, 148, 413 }, + [4] = { 39.6, 56.3, 148, 413 }, + [5] = { 39.7, 54.4, 148, 413 }, + [6] = { 39.8, 53.9, 148, 413 }, + [7] = { 39.3, 53.7, 148, 413 }, + [8] = { 39.1, 53.4, 148, 413 }, + [9] = { 39.8, 53.4, 148, 413 }, + [10] = { 39.6, 53.1, 148, 413 }, + [11] = { 39.2, 53, 148, 413 }, + [12] = { 39.3, 52.2, 148, 413 }, + }, + ["lvl"] = "12-13", + }, + [2168] = { + ["coords"] = { + [1] = { 42.5, 86.4, 148, 413 }, + [2] = { 42.7, 85.5, 148, 413 }, + [3] = { 42.8, 84.5, 148, 413 }, + [4] = { 39.9, 79.1, 148, 413 }, + [5] = { 40.2, 78.9, 148, 413 }, + [6] = { 39.7, 78.8, 148, 413 }, + [7] = { 39.4, 78.5, 148, 413 }, + [8] = { 39.5, 78, 148, 413 }, + [9] = { 40.2, 77.9, 148, 413 }, + [10] = { 40.7, 77.8, 148, 413 }, + [11] = { 39.9, 77.6, 148, 413 }, + [12] = { 50.7, 35.2, 148, 413 }, + [13] = { 51.2, 35.2, 148, 413 }, + [14] = { 51, 35, 148, 413 }, + [15] = { 50.4, 34.6, 148, 413 }, + [16] = { 51.1, 34.5, 148, 413 }, + [17] = { 50.8, 34.5, 148, 413 }, + [18] = { 50.6, 34.3, 148, 413 }, + [19] = { 52.4, 34.2, 148, 413 }, + [20] = { 52.8, 34.1, 148, 413 }, + [21] = { 52, 33.9, 148, 413 }, + [22] = { 52.5, 33.5, 148, 413 }, + [23] = { 53.1, 33.5, 148, 413 }, + [24] = { 51.8, 33.3, 148, 413 }, + [25] = { 52.1, 33.1, 148, 413 }, + [26] = { 52.8, 33, 148, 413 }, + [27] = { 52.4, 32.7, 148, 413 }, + [28] = { 52.2, 34, 148, 0 }, + [29] = { 52.9, 33.5, 148, 0 }, + [30] = { 52.3, 33.1, 148, 0 }, + }, + ["lvl"] = "16-17", + }, + [2173] = { + ["coords"] = { + [1] = { 36.6, 82.7, 130, 413 }, + [2] = { 38, 77.4, 130, 413 }, + [3] = { 37.4, 76.7, 130, 413 }, + [4] = { 38.9, 75.7, 130, 413 }, + [5] = { 35.1, 50.6, 130, 413 }, + [6] = { 35.4, 49.8, 130, 413 }, + [7] = { 34.9, 48.8, 130, 413 }, + [8] = { 34.2, 47.8, 130, 413 }, + [9] = { 34.8, 44.8, 130, 413 }, + [10] = { 34.5, 37.3, 130, 413 }, + [11] = { 34.9, 36.1, 130, 413 }, + [12] = { 34.6, 36, 130, 413 }, + [13] = { 36.6, 32.9, 130, 413 }, + [14] = { 34.8, 29.8, 130, 413 }, + [15] = { 33.4, 24.7, 130, 413 }, + [16] = { 34.2, 23.5, 130, 413 }, + [17] = { 36.6, 11.9, 5179, 413 }, + [18] = { 38.2, 5.8, 5179, 413 }, + [19] = { 37.5, 5, 5179, 413 }, + [20] = { 39.2, 3.8, 5179, 413 }, + }, + ["lvl"] = "14-15", + }, + [2175] = { + ["coords"] = { + [1] = { 40.3, 40.5, 148, 9000 }, + }, + ["lvl"] = "13", + ["rnk"] = "4", + }, + [2176] = { + ["coords"] = { + [1] = { 41.6, 59.6, 148, 413 }, + [2] = { 41.7, 59.2, 148, 413 }, + [3] = { 43.7, 59, 148, 413 }, + [4] = { 41.5, 58.6, 148, 413 }, + [5] = { 43.2, 58.4, 148, 413 }, + [6] = { 42.1, 58.4, 148, 413 }, + [7] = { 43.7, 58.2, 148, 413 }, + [8] = { 42.2, 57.9, 148, 413 }, + [9] = { 41.7, 57.8, 148, 413 }, + [10] = { 42.7, 57.8, 148, 413 }, + [11] = { 43.2, 57.6, 148, 413 }, + [12] = { 42.5, 57.4, 148, 413 }, + [13] = { 41.9, 57.3, 148, 413 }, + }, + ["lvl"] = "10-11", + }, + [2177] = { + ["coords"] = { + [1] = { 42.5, 63.4, 148, 413 }, + [2] = { 42.8, 63.4, 148, 413 }, + [3] = { 43.3, 63.4, 148, 413 }, + [4] = { 42.3, 62.9, 148, 413 }, + [5] = { 41.1, 62.8, 148, 413 }, + [6] = { 42.8, 62.8, 148, 413 }, + [7] = { 43.6, 62.7, 148, 413 }, + [8] = { 41.9, 62.5, 148, 413 }, + [9] = { 41.7, 62.1, 148, 413 }, + [10] = { 43.4, 62, 148, 413 }, + [11] = { 41.3, 61.7, 148, 413 }, + [12] = { 41.6, 61.3, 148, 413 }, + [13] = { 41.7, 60.8, 148, 413 }, + [14] = { 43.6, 60.4, 148, 413 }, + [15] = { 41.8, 60.3, 148, 413 }, + [16] = { 43.4, 59.6, 148, 413 }, + [17] = { 42.7, 59.6, 148, 413 }, + [18] = { 42.2, 59.3, 148, 413 }, + [19] = { 43, 58.9, 148, 413 }, + [20] = { 42.6, 58.8, 148, 413 }, + [21] = { 42.6, 58.4, 148, 413 }, + }, + ["lvl"] = "11-12", + }, + [2178] = { + ["coords"] = { + [1] = { 44, 62, 148, 413 }, + [2] = { 42.2, 62, 148, 413 }, + [3] = { 43.1, 61.8, 148, 413 }, + [4] = { 42.5, 61.7, 148, 413 }, + [5] = { 42.7, 61.7, 148, 413 }, + [6] = { 44, 61.4, 148, 413 }, + [7] = { 42.2, 61.2, 148, 413 }, + [8] = { 43.9, 61, 148, 413 }, + [9] = { 42.7, 60.9, 148, 413 }, + [10] = { 43.3, 60.9, 148, 413 }, + [11] = { 42.4, 60.6, 148, 413 }, + [12] = { 44.1, 60.5, 148, 413 }, + [13] = { 42.8, 60.2, 148, 413 }, + [14] = { 43.7, 60, 148, 413 }, + [15] = { 43.2, 58.7, 148, 413 }, + }, + ["lvl"] = "12-13", + }, + [2179] = { + ["coords"] = { + [1] = { 54.7, 36.8, 148, 180 }, + [2] = { 55.4, 36.6, 148, 180 }, + [3] = { 55.6, 35.9, 148, 180 }, + [4] = { 55.6, 35.8, 148, 180 }, + [5] = { 54.9, 35.7, 148, 180 }, + [6] = { 55.3, 35.4, 148, 180 }, + [7] = { 55, 35.2, 148, 180 }, + [8] = { 55.2, 35, 148, 180 }, + [9] = { 55.9, 34.8, 148, 180 }, + [10] = { 55.5, 34.7, 148, 180 }, + [11] = { 56.2, 34.6, 148, 180 }, + [12] = { 57, 34.4, 148, 180 }, + [13] = { 55.1, 34.3, 148, 180 }, + [14] = { 55.6, 34.1, 148, 180 }, + [15] = { 56.7, 33.7, 148, 180 }, + [16] = { 55, 33.5, 148, 180 }, + [17] = { 55, 32.9, 148, 180 }, + [18] = { 39.7, 10.6, 361, 180 }, + [19] = { 40.5, 10.4, 361, 180 }, + [20] = { 40.8, 9.6, 361, 180 }, + [21] = { 40.7, 9.5, 361, 180 }, + [22] = { 55, 33.4, 148, 0 }, + }, + ["lvl"] = "15-16", + }, + [2180] = { + ["coords"] = { + [1] = { 55, 37, 148, 180 }, + [2] = { 55.2, 36.5, 148, 180 }, + [3] = { 54.7, 36.2, 148, 180 }, + [4] = { 55.6, 36.2, 148, 180 }, + [5] = { 55.4, 36, 148, 180 }, + [6] = { 55.2, 35.7, 148, 180 }, + [7] = { 55.7, 35.2, 148, 180 }, + [8] = { 56.5, 35, 148, 180 }, + [9] = { 55.2, 34.8, 148, 180 }, + [10] = { 56.6, 34.8, 148, 180 }, + [11] = { 56.8, 34.7, 148, 180 }, + [12] = { 55.8, 34.7, 148, 180 }, + [13] = { 55, 34.7, 148, 180 }, + [14] = { 55.3, 34.4, 148, 180 }, + [15] = { 55.8, 34.3, 148, 180 }, + [16] = { 56.5, 34.2, 148, 180 }, + [17] = { 57, 33.9, 148, 180 }, + [18] = { 55.2, 33.8, 148, 180 }, + [19] = { 54.7, 33.4, 148, 180 }, + [20] = { 40, 10.8, 361, 180 }, + [21] = { 40.3, 10.3, 361, 180 }, + [22] = { 39.7, 9.9, 361, 180 }, + [23] = { 40.8, 9.9, 361, 180 }, + [24] = { 40.5, 9.7, 361, 180 }, + [25] = { 40.9, 8.8, 361, 180 }, + [26] = { 41.8, 8.6, 361, 180 }, + }, + ["lvl"] = "16-17", + }, + [2181] = { + ["coords"] = { + [1] = { 58.6, 25, 148, 413 }, + [2] = { 59.5, 24.9, 148, 413 }, + [3] = { 59, 24.8, 148, 413 }, + [4] = { 58.1, 24.6, 148, 413 }, + [5] = { 57.7, 24.4, 148, 413 }, + [6] = { 58.8, 24.2, 148, 413 }, + [7] = { 58.2, 23.8, 148, 413 }, + [8] = { 57.3, 23.6, 148, 413 }, + [9] = { 58.5, 23.6, 148, 413 }, + [10] = { 59.3, 23.6, 148, 413 }, + [11] = { 60.3, 23.6, 148, 413 }, + [12] = { 60.6, 23, 148, 413 }, + [13] = { 57.3, 22.8, 148, 413 }, + [14] = { 58.2, 22.6, 148, 413 }, + [15] = { 56.8, 22.5, 148, 413 }, + [16] = { 59.9, 21.9, 148, 413 }, + [17] = { 57.3, 21.8, 148, 413 }, + [18] = { 59.4, 21.7, 148, 413 }, + [19] = { 58.5, 21.3, 148, 413 }, + [20] = { 57.7, 21.3, 148, 413 }, + [21] = { 58.9, 20.9, 148, 413 }, + [22] = { 57.3, 20.9, 148, 413 }, + [23] = { 58, 20.5, 148, 413 }, + [24] = { 57.2, 19.6, 148, 413 }, + [25] = { 58.6, 19.6, 148, 413 }, + [26] = { 57.9, 19.3, 148, 413 }, + [27] = { 58.2, 18.8, 148, 413 }, + [28] = { 61.1, 17, 148, 413 }, + [29] = { 60.7, 16.8, 148, 413 }, + [30] = { 60.2, 16.7, 148, 413 }, + [31] = { 59.8, 16.5, 148, 413 }, + [32] = { 60.4, 15.6, 148, 413 }, + [33] = { 60.1, 15.4, 148, 413 }, + [34] = { 59.5, 14.6, 148, 413 }, + }, + ["lvl"] = "18-19", + }, + [2184] = { + ["coords"] = { + [1] = { 43, 61.1, 148, 9000 }, + }, + ["lvl"] = "17", + ["rnk"] = "4", + }, + [2186] = { + ["coords"] = { + [1] = { 40.4, 56.5, 148, 9000 }, + }, + ["lvl"] = "16", + ["rnk"] = "4", + }, + [2188] = { + ["coords"] = { + [1] = { 58.6, 6.3, 148, 300 }, + [2] = { 59.1, 4.4, 148, 300 }, + [3] = { 61.6, 4.3, 148, 300 }, + [4] = { 63.4, 3.1, 148, 300 }, + [5] = { 59.3, 2.9, 148, 300 }, + [6] = { 59.7, 2.5, 148, 300 }, + [7] = { 62, 1.8, 148, 300 }, + [8] = { 61.7, 1.1, 148, 300 }, + [9] = { 63.7, 1.1, 148, 300 }, + }, + ["lvl"] = "25", + }, + [2189] = { + ["coords"] = { + [1] = { 44.9, 39.7, 148, 413 }, + [2] = { 44.5, 39.1, 148, 413 }, + [3] = { 44.9, 39, 148, 413 }, + [4] = { 44.7, 38.6, 148, 413 }, + [5] = { 44, 38.4, 148, 413 }, + [6] = { 44.4, 38.1, 148, 413 }, + [7] = { 45.1, 37.9, 148, 413 }, + [8] = { 44.7, 37.7, 148, 413 }, + [9] = { 44.5, 37.5, 148, 413 }, + [10] = { 44.7, 37.2, 148, 413 }, + [11] = { 47, 37.1, 148, 413 }, + [12] = { 44.6, 36.6, 148, 413 }, + [13] = { 46.1, 36.5, 148, 413 }, + [14] = { 45.2, 36.3, 148, 413 }, + [15] = { 44.8, 36.2, 148, 413 }, + [16] = { 46.9, 36.2, 148, 413 }, + [17] = { 47.5, 36.1, 148, 413 }, + }, + ["lvl"] = "10-11", + }, + [2190] = { + ["coords"] = { + [1] = { 45.8, 40.2, 148, 413 }, + [2] = { 45.4, 40.1, 148, 413 }, + [3] = { 45.9, 39.6, 148, 413 }, + [4] = { 46.3, 39.6, 148, 413 }, + [5] = { 45.3, 39.4, 148, 413 }, + [6] = { 46.9, 39.2, 148, 413 }, + [7] = { 46, 39.1, 148, 413 }, + [8] = { 45.6, 38.8, 148, 413 }, + [9] = { 45.3, 38.7, 148, 413 }, + [10] = { 46.5, 38.7, 148, 413 }, + [11] = { 46.9, 38.6, 148, 413 }, + [12] = { 46, 38.3, 148, 413 }, + [13] = { 47.2, 38.2, 148, 413 }, + [14] = { 46.5, 38.1, 148, 413 }, + [15] = { 46.2, 37.9, 148, 413 }, + [16] = { 47.5, 37.7, 148, 413 }, + [17] = { 47.2, 37.6, 148, 413 }, + [18] = { 47.8, 37.5, 148, 413 }, + [19] = { 47.4, 37.1, 148, 413 }, + [20] = { 46.7, 36.9, 148, 413 }, + [21] = { 47.9, 36.7, 148, 413 }, + [22] = { 48.2, 36.6, 148, 413 }, + [23] = { 45.6, 36.2, 148, 413 }, + }, + ["lvl"] = "11-12", + }, + [2191] = { + ["coords"] = { + [1] = { 45.7, 36.4, 148, 9000 }, + }, + ["lvl"] = "14", + ["rnk"] = "4", + }, + [2192] = { + ["coords"] = { + [1] = { 38.7, 87.6, 148, 19800 }, + }, + ["lvl"] = "19", + ["rnk"] = "4", + }, + [2197] = "_", + [2198] = { + ["coords"] = { + [1] = { 56.4, 74.1, 1519, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "3", + }, + [2199] = "_", + [2200] = "_", + [2202] = { + ["coords"] = { + [1] = { 37.3, 62.3, 148, 413 }, + [2] = { 36.9, 62.2, 148, 413 }, + [3] = { 36.8, 62, 148, 413 }, + [4] = { 37.1, 61.8, 148, 413 }, + [5] = { 36.8, 61.7, 148, 413 }, + [6] = { 36.9, 61.7, 148, 413 }, + [7] = { 42.2, 32.2, 148, 413 }, + [8] = { 41.9, 32, 148, 413 }, + [9] = { 42.1, 31.7, 148, 413 }, + [10] = { 41.8, 31.6, 148, 413 }, + [11] = { 41.7, 31.2, 148, 413 }, + [12] = { 42, 31.1, 148, 413 }, + [13] = { 41.9, 30.9, 148, 413 }, + [14] = { 38.9, 30.3, 148, 413 }, + [15] = { 38.3, 29.8, 148, 413 }, + [16] = { 38.8, 29.8, 148, 413 }, + [17] = { 38.7, 29.6, 148, 413 }, + [18] = { 38.8, 29.6, 148, 413 }, + [19] = { 38.7, 29.5, 148, 413 }, + [20] = { 38.7, 29.2, 148, 413 }, + [21] = { 38.5, 29, 148, 413 }, + [22] = { 38.6, 28.9, 148, 413 }, + [23] = { 38.3, 28.9, 148, 413 }, + [24] = { 38.1, 28.5, 148, 413 }, + [25] = { 40, 28.1, 148, 413 }, + [26] = { 39.3, 27.8, 148, 413 }, + [27] = { 39.8, 27.5, 148, 413 }, + [28] = { 40.1, 27.4, 148, 413 }, + [29] = { 40.2, 27.4, 148, 413 }, + [30] = { 40.3, 27.4, 148, 413 }, + [31] = { 39.9, 27.3, 148, 413 }, + [32] = { 40.1, 27.3, 148, 413 }, + [33] = { 39.7, 27.2, 148, 413 }, + [34] = { 40.3, 27.2, 148, 413 }, + [35] = { 40.9, 26.9, 148, 413 }, + [36] = { 40, 26.5, 148, 413 }, + [37] = { 38.7, 21.8, 148, 413 }, + [38] = { 36.4, 51.1, 148, 413 }, + [39] = { 36.6, 51, 148, 413 }, + [40] = { 36.2, 51, 148, 413 }, + [41] = { 36, 50.8, 148, 413 }, + [42] = { 36.4, 50.7, 148, 413 }, + [43] = { 36.1, 50.6, 148, 413 }, + }, + ["lvl"] = "12-13", + }, + [2203] = { + ["coords"] = { + [1] = { 35.8, 71.3, 148, 413 }, + [2] = { 36.2, 71, 148, 413 }, + [3] = { 36, 70.5, 148, 413 }, + [4] = { 38.2, 28.8, 148, 413 }, + [5] = { 37.3, 62.3, 148, 413 }, + [6] = { 36.9, 62.2, 148, 413 }, + [7] = { 36.8, 62, 148, 413 }, + [8] = { 37.1, 61.8, 148, 413 }, + [9] = { 36.8, 61.7, 148, 413 }, + [10] = { 36.9, 61.7, 148, 413 }, + [11] = { 42.2, 32.2, 148, 413 }, + [12] = { 41.9, 32, 148, 413 }, + [13] = { 42.1, 31.7, 148, 413 }, + [14] = { 41.8, 31.6, 148, 413 }, + [15] = { 41.7, 31.2, 148, 413 }, + [16] = { 42, 31.1, 148, 413 }, + [17] = { 41.9, 30.9, 148, 413 }, + [18] = { 38.9, 30.3, 148, 413 }, + [19] = { 38.3, 29.8, 148, 413 }, + [20] = { 38.8, 29.8, 148, 413 }, + [21] = { 38.7, 29.6, 148, 413 }, + [22] = { 38.8, 29.6, 148, 413 }, + [23] = { 38.7, 29.5, 148, 413 }, + [24] = { 38.7, 29.2, 148, 413 }, + [25] = { 38.5, 29, 148, 413 }, + [26] = { 38.6, 28.9, 148, 413 }, + [27] = { 38.3, 28.9, 148, 413 }, + [28] = { 38.1, 28.5, 148, 413 }, + [29] = { 40, 28.1, 148, 413 }, + [30] = { 39.3, 27.8, 148, 413 }, + [31] = { 39.8, 27.5, 148, 413 }, + [32] = { 40.1, 27.4, 148, 413 }, + [33] = { 40.2, 27.4, 148, 413 }, + [34] = { 40.3, 27.4, 148, 413 }, + [35] = { 39.9, 27.3, 148, 413 }, + [36] = { 40.1, 27.3, 148, 413 }, + [37] = { 39.7, 27.2, 148, 413 }, + [38] = { 40.3, 27.2, 148, 413 }, + [39] = { 40.9, 26.9, 148, 413 }, + [40] = { 40, 26.5, 148, 413 }, + [41] = { 38.7, 21.8, 148, 413 }, + }, + ["lvl"] = "13-14", + }, + [2205] = { + ["coords"] = { + [1] = { 33.2, 81.4, 148, 413 }, + [2] = { 33, 81.2, 148, 413 }, + [3] = { 32.6, 80.9, 148, 413 }, + [4] = { 32.9, 80.8, 148, 413 }, + [5] = { 32.6, 80.4, 148, 413 }, + [6] = { 32.5, 80.2, 148, 413 }, + [7] = { 36.7, 76.9, 148, 413 }, + [8] = { 36.5, 76.7, 148, 413 }, + [9] = { 36.7, 76.6, 148, 413 }, + [10] = { 36.4, 76.5, 148, 413 }, + [11] = { 36.5, 76.5, 148, 360 }, + [12] = { 36.8, 76.3, 148, 413 }, + [13] = { 36.5, 76.2, 148, 413 }, + [14] = { 44.1, 21, 148, 413 }, + [15] = { 44.3, 20.8, 148, 413 }, + [16] = { 43.8, 20.7, 148, 413 }, + [17] = { 44.2, 20.4, 148, 413 }, + [18] = { 43.8, 20.3, 148, 413 }, + [19] = { 44.1, 20.2, 148, 413 }, + [20] = { 43.9, 20.1, 148, 413 }, + }, + ["lvl"] = "15-16", + }, + [2206] = { + ["coords"] = { + [1] = { 33.2, 81.4, 148, 413 }, + [2] = { 33, 81.2, 148, 413 }, + [3] = { 32.6, 80.9, 148, 413 }, + [4] = { 32.9, 80.8, 148, 413 }, + [5] = { 32.6, 80.4, 148, 413 }, + [6] = { 36.7, 76.9, 148, 413 }, + [7] = { 36.5, 76.7, 148, 413 }, + [8] = { 36.7, 76.6, 148, 413 }, + [9] = { 36.4, 76.5, 148, 413 }, + [10] = { 36.5, 76.5, 148, 360 }, + [11] = { 36.8, 76.3, 148, 413 }, + [12] = { 36.5, 76.2, 148, 413 }, + }, + ["lvl"] = "16-17", + }, + [2207] = { + ["coords"] = { + [1] = { 31.5, 87.9, 148, 413 }, + [2] = { 31.3, 87.9, 148, 413 }, + [3] = { 31.1, 87.9, 148, 413 }, + [4] = { 31, 87.7, 148, 413 }, + [5] = { 31.4, 87.5, 148, 413 }, + [6] = { 31.1, 87.2, 148, 413 }, + [7] = { 31.4, 87.2, 148, 413 }, + [8] = { 31.3, 85.7, 148, 413 }, + [9] = { 31, 85.7, 148, 413 }, + [10] = { 30.9, 85.6, 148, 413 }, + [11] = { 31.3, 85.5, 148, 413 }, + [12] = { 31, 85.3, 148, 413 }, + [13] = { 31.1, 85.2, 148, 413 }, + [14] = { 31.6, 83.9, 148, 413 }, + [15] = { 31.4, 83.9, 148, 413 }, + [16] = { 31.8, 83.8, 148, 413 }, + [17] = { 31.7, 83.5, 148, 413 }, + [18] = { 31.3, 83.5, 148, 413 }, + [19] = { 31.6, 83.3, 148, 413 }, + [20] = { 31.4, 83.2, 148, 413 }, + [21] = { 55.2, 12.9, 148, 413 }, + [22] = { 55.5, 12.6, 148, 413 }, + [23] = { 55.3, 12.6, 148, 413 }, + [24] = { 55, 12.5, 148, 413 }, + [25] = { 54.8, 12.2, 148, 413 }, + [26] = { 55.2, 12.2, 148, 413 }, + [27] = { 55, 12.1, 148, 413 }, + [28] = { 54.9, 11.9, 148, 413 }, + [29] = { 54.7, 11.8, 148, 413 }, + [30] = { 54.9, 11.6, 148, 413 }, + }, + ["lvl"] = "18-19", + }, + [2208] = { + ["coords"] = { + [1] = { 31.5, 87.9, 148, 413 }, + [2] = { 31.3, 87.9, 148, 413 }, + [3] = { 31.1, 87.9, 148, 413 }, + [4] = { 31, 87.7, 148, 413 }, + [5] = { 31.4, 87.5, 148, 413 }, + [6] = { 31.1, 87.2, 148, 413 }, + [7] = { 31.4, 87.2, 148, 413 }, + [8] = { 31.3, 85.7, 148, 413 }, + [9] = { 31, 85.7, 148, 413 }, + [10] = { 30.9, 85.6, 148, 413 }, + [11] = { 31.3, 85.5, 148, 413 }, + [12] = { 31, 85.3, 148, 413 }, + [13] = { 31.1, 85.2, 148, 413 }, + [14] = { 31.6, 83.9, 148, 413 }, + [15] = { 31.4, 83.9, 148, 413 }, + [16] = { 31.8, 83.8, 148, 413 }, + [17] = { 31.7, 83.5, 148, 413 }, + [18] = { 31.3, 83.5, 148, 413 }, + [19] = { 31.6, 83.3, 148, 413 }, + [20] = { 31.4, 83.2, 148, 413 }, + [21] = { 55.2, 12.9, 148, 413 }, + [22] = { 55.5, 12.6, 148, 413 }, + [23] = { 55.3, 12.6, 148, 413 }, + [24] = { 55, 12.5, 148, 413 }, + [25] = { 54.8, 12.2, 148, 413 }, + [26] = { 55.2, 12.2, 148, 413 }, + [27] = { 55, 12.1, 148, 413 }, + [28] = { 54.9, 11.9, 148, 413 }, + [29] = { 54.7, 11.8, 148, 413 }, + [30] = { 54.9, 11.6, 148, 413 }, + }, + ["lvl"] = "19-20", + }, + [2209] = { + ["coords"] = { + [1] = { 61.7, 51.4, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [2210] = { + ["coords"] = { + [1] = { 61.7, 51.2, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [2211] = { + ["coords"] = { + [1] = { 61.9, 51.4, 85, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "9", + }, + [2212] = { + ["coords"] = { + [1] = { 45.4, 39.7, 148, 120 }, + [2] = { 46.6, 39.2, 148, 120 }, + [3] = { 47.3, 37.7, 148, 120 }, + [4] = { 47.9, 37.1, 148, 120 }, + [5] = { 47.5, 36.7, 148, 120 }, + [6] = { 45.5, 36.5, 148, 120 }, + }, + ["lvl"] = "12-13", + }, + [2213] = "_", + [2214] = { + ["coords"] = { + [1] = { 20.8, 47.4, 267, 30 }, + [2] = { 77.8, 10.3, 5179, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [2215] = { + ["coords"] = { + [1] = { 61.1, 82.3, 36, 600 }, + [2] = { 62.3, 20.5, 267, 600 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [2216] = { + ["coords"] = { + [1] = { 60.1, 80.7, 36, 30 }, + [2] = { 61.4, 19.1, 267, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [2217] = "_", + [2218] = "_", + [2219] = "_", + [2220] = "_", + [2221] = "_", + [2222] = "_", + [2223] = "_", + [2226] = { + ["coords"] = { + [1] = { 45.6, 42.6, 130, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [2227] = { + ["coords"] = { + [1] = { 74.5, 13.9, 130, 30 }, + [2] = { 57.6, 93.8, 1497, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [2228] = { + ["coords"] = { + [1] = { 51.5, 58.4, 267, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [2229] = { + ["coords"] = { + [1] = { 62.2, 82.5, 36, 30 }, + [2] = { 63.2, 20.7, 267, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [2230] = { + ["coords"] = { + [1] = { 60.2, 80.8, 36, 120 }, + [2] = { 61.5, 19.1, 267, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "1", + }, + [2231] = { + ["coords"] = { + [1] = { 35.4, 51.2, 148, 413 }, + [2] = { 35.6, 50.7, 148, 413 }, + [3] = { 36, 50.1, 148, 413 }, + [4] = { 35.7, 50, 148, 413 }, + [5] = { 36.6, 49.8, 148, 413 }, + [6] = { 35.4, 49.4, 148, 413 }, + [7] = { 35.1, 49.4, 148, 413 }, + [8] = { 36.5, 49.1, 148, 413 }, + [9] = { 36.4, 49.1, 148, 413 }, + [10] = { 35.1, 48.5, 148, 413 }, + [11] = { 36.7, 48.4, 148, 413 }, + [12] = { 35.9, 48.3, 148, 413 }, + [13] = { 35.6, 48.1, 148, 413 }, + [14] = { 34.7, 48, 148, 413 }, + [15] = { 36.4, 47.8, 148, 413 }, + [16] = { 35.4, 47.5, 148, 413 }, + [17] = { 35.6, 47.1, 148, 413 }, + [18] = { 36, 47, 148, 413 }, + [19] = { 35, 46.7, 148, 413 }, + [20] = { 35.3, 46.2, 148, 413 }, + [21] = { 35.9, 45.9, 148, 413 }, + [22] = { 35.4, 44.6, 148, 413 }, + [23] = { 36.2, 44.5, 148, 413 }, + [24] = { 35, 44.4, 148, 413 }, + [25] = { 35.2, 43, 148, 413 }, + [26] = { 36.8, 41.8, 148, 413 }, + [27] = { 35.9, 41.3, 148, 413 }, + [28] = { 35.5, 41.2, 148, 413 }, + [29] = { 37.2, 40.6, 148, 413 }, + [30] = { 36.9, 40.5, 148, 413 }, + [31] = { 36.3, 40.4, 148, 413 }, + [32] = { 37.4, 40.3, 148, 413 }, + [33] = { 36.1, 39.8, 148, 413 }, + [34] = { 37.4, 39.7, 148, 413 }, + [35] = { 36.5, 39.4, 148, 413 }, + [36] = { 36.4, 38.8, 148, 413 }, + [37] = { 37.2, 38.7, 148, 413 }, + [38] = { 36.4, 37.7, 148, 413 }, + [39] = { 36.5, 37.5, 148, 413 }, + [40] = { 37.1, 37.1, 148, 413 }, + [41] = { 36.6, 36.8, 148, 413 }, + [42] = { 37, 36.6, 148, 413 }, + [43] = { 36.7, 36.3, 148, 413 }, + [44] = { 36.8, 35.9, 148, 413 }, + [45] = { 37.7, 35.8, 148, 413 }, + [46] = { 37, 35.5, 148, 413 }, + }, + ["lvl"] = "9-10", + }, + [2233] = { + ["coords"] = { + [1] = { 32.3, 83.7, 148, 413 }, + [2] = { 32.9, 82.9, 148, 413 }, + [3] = { 31.7, 81.9, 148, 413 }, + [4] = { 32.7, 81.4, 148, 413 }, + [5] = { 32, 80.7, 148, 413 }, + [6] = { 52.3, 23.3, 148, 413 }, + [7] = { 51.3, 23.2, 148, 413 }, + [8] = { 51.7, 22.5, 148, 413 }, + [9] = { 51.7, 21, 148, 413 }, + [10] = { 52.2, 20.9, 148, 413 }, + [11] = { 52.8, 19.5, 148, 413 }, + [12] = { 54, 18.9, 148, 413 }, + [13] = { 52.2, 18.6, 148, 413 }, + [14] = { 53.3, 18.6, 148, 413 }, + [15] = { 52.8, 17.8, 148, 413 }, + }, + ["lvl"] = "18-20", + }, + [2235] = { + ["coords"] = { + [1] = { 35.5, 77.5, 148, 413 }, + [2] = { 36, 75.2, 148, 413 }, + [3] = { 35.7, 73.6, 148, 413 }, + [4] = { 35.8, 72.8, 148, 413 }, + [5] = { 35.2, 72.4, 148, 413 }, + [6] = { 34.9, 72.3, 148, 413 }, + [7] = { 50.7, 22.5, 148, 413 }, + [8] = { 50.6, 22.4, 148, 413 }, + [9] = { 44.8, 21.8, 148, 413 }, + [10] = { 47.6, 21.5, 148, 413 }, + [11] = { 46.5, 21, 148, 413 }, + [12] = { 48.2, 21, 148, 413 }, + [13] = { 45.5, 20.7, 148, 413 }, + [14] = { 48.3, 20.7, 148, 413 }, + [15] = { 46.1, 20.6, 148, 413 }, + [16] = { 46.8, 20.3, 148, 413 }, + [17] = { 48.9, 20.1, 148, 413 }, + [18] = { 45.4, 20, 148, 413 }, + }, + ["lvl"] = "15-17", + }, + [2237] = { + ["coords"] = { + [1] = { 39.3, 94.5, 148, 413 }, + [2] = { 44.7, 92, 148, 413 }, + [3] = { 37.5, 91.9, 148, 413 }, + [4] = { 36.6, 91.5, 148, 413 }, + [5] = { 40.4, 90.8, 148, 413 }, + [6] = { 38.5, 90.5, 148, 413 }, + [7] = { 42.5, 88.1, 148, 413 }, + [8] = { 37.6, 83.9, 148, 413 }, + [9] = { 41.7, 83.3, 148, 413 }, + [10] = { 43.8, 83.1, 148, 413 }, + [11] = { 40.1, 82.9, 148, 413 }, + [12] = { 43.2, 82.9, 148, 413 }, + [13] = { 36.2, 82.1, 148, 413 }, + [14] = { 43.2, 82, 148, 413 }, + [15] = { 43.8, 81.8, 148, 413 }, + [16] = { 39.9, 81.4, 148, 413 }, + [17] = { 44.1, 81.3, 148, 413 }, + [18] = { 44, 80, 148, 413 }, + [19] = { 38.3, 77.2, 148, 413 }, + [20] = { 39.8, 70.7, 148, 413 }, + [21] = { 60.1, 13.4, 148, 413 }, + [22] = { 61.4, 11.2, 148, 413 }, + [23] = { 23.1, 12.1, 331, 413 }, + }, + ["lvl"] = "17-18", + }, + [2240] = { + ["coords"] = { + [1] = { 48.7, 83, 36, 300 }, + [2] = { 47.7, 82.9, 36, 300 }, + [3] = { 47.8, 82.4, 36, 300 }, + [4] = { 48, 81.9, 36, 300 }, + [5] = { 47.3, 81.9, 36, 300 }, + [6] = { 47.7, 81.9, 36, 300 }, + [7] = { 46.6, 81.5, 36, 300 }, + [8] = { 47.8, 81.2, 36, 300 }, + [9] = { 48.3, 80.8, 36, 300 }, + [10] = { 48.3, 79.3, 36, 300 }, + [11] = { 58.4, 70, 36, 300 }, + [12] = { 58.9, 69.5, 36, 300 }, + [13] = { 59, 69.3, 36, 300 }, + [14] = { 57.6, 68.5, 36, 300 }, + [15] = { 58.2, 68.4, 36, 300 }, + [16] = { 58.7, 68.4, 36, 300 }, + [17] = { 59.5, 68, 36, 300 }, + [18] = { 58.4, 67.7, 36, 300 }, + [19] = { 57.7, 67.6, 36, 300 }, + [20] = { 59, 67.2, 36, 300 }, + [21] = { 58.4, 66.7, 36, 300 }, + [22] = { 57.8, 66.2, 36, 300 }, + [23] = { 56.5, 66, 36, 300 }, + [24] = { 51.5, 21.1, 267, 300 }, + [25] = { 50.6, 21, 267, 300 }, + [26] = { 50.7, 20.5, 267, 300 }, + [27] = { 50.9, 20.1, 267, 300 }, + [28] = { 50.2, 20.1, 267, 300 }, + [29] = { 50.6, 20.1, 267, 300 }, + [30] = { 49.6, 19.7, 267, 300 }, + [31] = { 50.7, 19.5, 267, 300 }, + [32] = { 51.1, 19.1, 267, 300 }, + [33] = { 51.2, 17.8, 267, 300 }, + [34] = { 60, 9.7, 267, 300 }, + [35] = { 60.4, 9.2, 267, 300 }, + [36] = { 60.5, 9.1, 267, 300 }, + [37] = { 59.3, 8.4, 267, 300 }, + [38] = { 59.8, 8.3, 267, 300 }, + [39] = { 60.2, 8.3, 267, 300 }, + [40] = { 60.9, 8, 267, 300 }, + [41] = { 59.9, 7.7, 267, 300 }, + [42] = { 59.4, 7.6, 267, 300 }, + [43] = { 60.5, 7.3, 267, 300 }, + [44] = { 59.9, 6.8, 267, 300 }, + [45] = { 59.4, 6.3, 267, 300 }, + [46] = { 58.3, 6.2, 267, 300 }, + }, + ["lvl"] = "32-33", + }, + [2241] = { + ["coords"] = { + [1] = { 48.7, 83, 36, 300 }, + [2] = { 47.7, 82.9, 36, 300 }, + [3] = { 47.8, 82.4, 36, 300 }, + [4] = { 48, 81.9, 36, 300 }, + [5] = { 47.3, 81.9, 36, 300 }, + [6] = { 47.7, 81.9, 36, 300 }, + [7] = { 46.6, 81.5, 36, 300 }, + [8] = { 47.8, 81.2, 36, 300 }, + [9] = { 48.3, 80.8, 36, 300 }, + [10] = { 48.3, 79.3, 36, 300 }, + [11] = { 58.4, 70, 36, 300 }, + [12] = { 58.9, 69.5, 36, 300 }, + [13] = { 59, 69.3, 36, 300 }, + [14] = { 57.6, 68.5, 36, 300 }, + [15] = { 58.2, 68.4, 36, 300 }, + [16] = { 58.7, 68.4, 36, 300 }, + [17] = { 59.5, 68, 36, 300 }, + [18] = { 58.4, 67.7, 36, 300 }, + [19] = { 57.7, 67.6, 36, 300 }, + [20] = { 59, 67.2, 36, 300 }, + [21] = { 58.4, 66.7, 36, 300 }, + [22] = { 57.8, 66.2, 36, 300 }, + [23] = { 56.5, 66, 36, 300 }, + [24] = { 51.5, 21.1, 267, 300 }, + [25] = { 50.6, 21, 267, 300 }, + [26] = { 50.7, 20.5, 267, 300 }, + [27] = { 50.9, 20.1, 267, 300 }, + [28] = { 50.2, 20.1, 267, 300 }, + [29] = { 50.6, 20.1, 267, 300 }, + [30] = { 49.6, 19.7, 267, 300 }, + [31] = { 50.7, 19.5, 267, 300 }, + [32] = { 51.1, 19.1, 267, 300 }, + [33] = { 51.2, 17.8, 267, 300 }, + [34] = { 60, 9.7, 267, 300 }, + [35] = { 60.4, 9.2, 267, 300 }, + [36] = { 60.5, 9.1, 267, 300 }, + [37] = { 59.3, 8.4, 267, 300 }, + [38] = { 59.8, 8.3, 267, 300 }, + [39] = { 60.2, 8.3, 267, 300 }, + [40] = { 60.9, 8, 267, 300 }, + [41] = { 59.9, 7.7, 267, 300 }, + [42] = { 59.4, 7.6, 267, 300 }, + [43] = { 60.5, 7.3, 267, 300 }, + [44] = { 59.9, 6.8, 267, 300 }, + [45] = { 59.4, 6.3, 267, 300 }, + [46] = { 58.3, 6.2, 267, 300 }, + }, + ["lvl"] = "33-34", + }, + [2242] = { + ["coords"] = { + [1] = { 33.2, 94.9, 28, 300 }, + [2] = { 32.8, 94.5, 28, 300 }, + [3] = { 33.2, 94, 28, 300 }, + [4] = { 32.8, 93.6, 28, 300 }, + [5] = { 31.5, 93.2, 28, 300 }, + [6] = { 32.4, 92.5, 28, 300 }, + [7] = { 33.3, 92.2, 28, 300 }, + [8] = { 57.9, 48.8, 36, 300 }, + [9] = { 62.3, 47, 36, 300 }, + [10] = { 56.6, 47, 36, 300 }, + [11] = { 60, 46.2, 36, 300 }, + [12] = { 64.1, 45.8, 36, 300 }, + [13] = { 56.8, 45.3, 36, 300 }, + [14] = { 62.4, 45.3, 36, 300 }, + [15] = { 63.4, 45.1, 36, 300 }, + [16] = { 64, 44.3, 36, 300 }, + [17] = { 57.6, 44.2, 36, 300 }, + [18] = { 60.8, 43.9, 36, 300 }, + [19] = { 60.6, 43.9, 36, 300 }, + [20] = { 63.5, 43.8, 36, 300 }, + [21] = { 63.5, 43.7, 36, 300 }, + [22] = { 61, 43.5, 36, 300 }, + [23] = { 61.4, 43.4, 36, 300 }, + [24] = { 61.4, 43.1, 36, 300 }, + [25] = { 58.7, 42.9, 36, 300 }, + [26] = { 62.9, 42.1, 36, 300 }, + [27] = { 60.2, 41.8, 36, 300 }, + [28] = { 64.2, 41.6, 36, 300 }, + [29] = { 57.8, 41.6, 36, 300 }, + [30] = { 58.8, 41.2, 36, 300 }, + }, + ["lvl"] = "35-36", + }, + [2243] = { + ["coords"] = { + [1] = { 30.6, 86.2, 28, 300 }, + [2] = { 58.3, 36.1, 36, 300 }, + [3] = { 56, 34.4, 36, 300 }, + [4] = { 60.1, 32.4, 36, 300 }, + [5] = { 57.3, 31, 36, 300 }, + [6] = { 58.3, 30.7, 36, 300 }, + [7] = { 51.9, 30.6, 36, 300 }, + [8] = { 55.4, 30.5, 36, 300 }, + [9] = { 59.1, 29.9, 36, 300 }, + [10] = { 51.1, 29.6, 36, 300 }, + [11] = { 57.5, 29.4, 36, 300 }, + [12] = { 58.4, 29.3, 36, 300 }, + [13] = { 58.9, 29.3, 36, 300 }, + [14] = { 57.9, 28.8, 36, 300 }, + [15] = { 56.2, 27.8, 36, 300 }, + [16] = { 55.6, 27.5, 36, 300 }, + [17] = { 55.5, 26.4, 36, 300 }, + [18] = { 56.1, 26.1, 36, 300 }, + [19] = { 52.9, 25.4, 36, 300 }, + [20] = { 52.8, 23.2, 36, 300 }, + [21] = { 53.9, 21.6, 36, 300 }, + [22] = { 53.3, 21.2, 36, 300 }, + [23] = { 46.3, 20.4, 36, 300 }, + [24] = { 53.3, 20.3, 36, 300 }, + [25] = { 46.1, 19.8, 36, 300 }, + [26] = { 47.7, 18.2, 36, 300 }, + [27] = { 46.9, 18, 36, 300 }, + [28] = { 48.4, 17.8, 36, 300 }, + [29] = { 47.4, 17.4, 36, 300 }, + [30] = { 47.4, 16.9, 36, 300 }, + [31] = { 48.2, 16.8, 36, 300 }, + [32] = { 47.8, 16, 36, 300 }, + }, + ["lvl"] = "36-37", + }, + [2244] = { + ["coords"] = { + [1] = { 66.7, 50, 267, 300 }, + [2] = { 65.4, 48.7, 267, 300 }, + [3] = { 67.9, 47.2, 267, 300 }, + [4] = { 64.9, 47.1, 267, 300 }, + [5] = { 80.9, 46.9, 267, 300 }, + [6] = { 79.8, 46.9, 267, 300 }, + [7] = { 66.7, 46, 267, 300 }, + [8] = { 80.9, 45.7, 267, 300 }, + [9] = { 81.7, 45.5, 267, 300 }, + [10] = { 81, 45, 267, 300 }, + [11] = { 81.5, 44.4, 267, 300 }, + [12] = { 78.7, 43.5, 267, 300 }, + [13] = { 79.8, 43.4, 267, 300 }, + [14] = { 75.6, 42.7, 267, 300 }, + [15] = { 80.5, 42.7, 267, 300 }, + [16] = { 76, 42, 267, 300 }, + [17] = { 76.7, 41.9, 267, 300 }, + [18] = { 79.6, 41.7, 267, 300 }, + [19] = { 79, 41.2, 267, 300 }, + [20] = { 75.8, 40.7, 267, 300 }, + [21] = { 83.4, 40.6, 267, 300 }, + [22] = { 75.3, 40.3, 267, 300 }, + [23] = { 80.1, 39.7, 267, 300 }, + [24] = { 81.9, 39.6, 267, 300 }, + [25] = { 77.7, 39.2, 267, 300 }, + [26] = { 78.2, 38.5, 267, 300 }, + }, + ["lvl"] = "21-22", + }, + [2246] = { + ["coords"] = { + [1] = { 40.6, 22.5, 36, 300 }, + [2] = { 41.2, 21, 36, 300 }, + [3] = { 42.3, 20.3, 36, 300 }, + [4] = { 39.7, 20.1, 36, 300 }, + [5] = { 40.7, 19.9, 36, 300 }, + [6] = { 39.2, 19.2, 36, 300 }, + [7] = { 40.5, 16.8, 36, 300 }, + [8] = { 39.6, 15.8, 36, 300 }, + [9] = { 37.4, 15.5, 36, 300 }, + [10] = { 38.9, 15.4, 36, 300 }, + [11] = { 38.5, 15.4, 36, 300 }, + [12] = { 39.9, 15.4, 36, 300 }, + [13] = { 39.4, 15.1, 36, 300 }, + [14] = { 39.5, 15.1, 36, 300 }, + [15] = { 38.4, 14.6, 36, 300 }, + [16] = { 38, 13.7, 36, 300 }, + }, + ["lvl"] = "38-39", + }, + [2247] = { + ["coords"] = { + [1] = { 38.3, 22.5, 36, 300 }, + [2] = { 39.4, 21.1, 36, 300 }, + [3] = { 41.6, 19.5, 36, 300 }, + [4] = { 40.3, 18.6, 36, 300 }, + [5] = { 43, 18.3, 36, 300 }, + [6] = { 41.3, 17.9, 36, 300 }, + [7] = { 38.3, 16.5, 36, 300 }, + [8] = { 39.4, 15.1, 36, 300 }, + [9] = { 39.2, 14.8, 36, 300 }, + [10] = { 37, 13.1, 36, 300 }, + [11] = { 38.9, 13.1, 36, 300 }, + }, + ["lvl"] = "39-40", + }, + [2248] = { + ["coords"] = { + [1] = { 42.9, 97.8, 36, 300 }, + [2] = { 41.8, 97.7, 36, 300 }, + [3] = { 41.6, 97.3, 36, 300 }, + [4] = { 37.9, 96.8, 36, 300 }, + [5] = { 38.8, 96.2, 36, 300 }, + [6] = { 44, 95.6, 36, 300 }, + [7] = { 38.2, 95.4, 36, 300 }, + [8] = { 42.8, 95.4, 36, 300 }, + [9] = { 38.8, 95.2, 36, 300 }, + [10] = { 41.6, 94.6, 36, 300 }, + [11] = { 40.8, 94.6, 36, 300 }, + [12] = { 44, 94.2, 36, 300 }, + [13] = { 43, 93.9, 36, 300 }, + [14] = { 40.8, 92.5, 36, 300 }, + [15] = { 41.2, 91.3, 36, 300 }, + [16] = { 40.1, 90.2, 36, 300 }, + [17] = { 41.2, 87.6, 36, 300 }, + [18] = { 46.4, 34, 267, 300 }, + [19] = { 45.4, 34, 267, 300 }, + [20] = { 45.3, 33.6, 267, 300 }, + [21] = { 42.1, 33.2, 267, 300 }, + [22] = { 42.8, 32.7, 267, 300 }, + [23] = { 47.4, 32.1, 267, 300 }, + [24] = { 42.2, 32, 267, 300 }, + [25] = { 46.3, 31.9, 267, 300 }, + [26] = { 42.8, 31.8, 267, 300 }, + [27] = { 45.3, 31.2, 267, 300 }, + [28] = { 44.6, 31.2, 267, 300 }, + [29] = { 47.4, 30.9, 267, 300 }, + [30] = { 46.4, 30.6, 267, 300 }, + [31] = { 44.6, 29.4, 267, 300 }, + [32] = { 44.9, 28.3, 267, 300 }, + [33] = { 44, 27.4, 267, 300 }, + [34] = { 44.9, 25.1, 267, 300 }, + }, + ["lvl"] = "30-31", + }, + [2249] = { + ["coords"] = { + [1] = { 38.9, 97.2, 36, 300 }, + [2] = { 40.1, 94.4, 36, 300 }, + [3] = { 39.6, 93.9, 36, 300 }, + [4] = { 38.2, 93.8, 36, 300 }, + [5] = { 40.1, 93.4, 36, 300 }, + [6] = { 41.1, 93.2, 36, 300 }, + [7] = { 39.7, 93, 36, 300 }, + [8] = { 41.6, 92.8, 36, 300 }, + [9] = { 40.1, 91.8, 36, 300 }, + [10] = { 39.5, 90.7, 36, 300 }, + [11] = { 40.3, 90.6, 36, 300 }, + [12] = { 39.5, 90.4, 36, 300 }, + [13] = { 41.5, 90, 36, 300 }, + [14] = { 39.8, 89.6, 36, 300 }, + [15] = { 41.3, 88.7, 36, 300 }, + [16] = { 39.5, 88.3, 36, 300 }, + [17] = { 40.6, 87.5, 36, 300 }, + [18] = { 42.9, 33.5, 267, 300 }, + [19] = { 44, 31, 267, 300 }, + [20] = { 43.5, 30.6, 267, 300 }, + [21] = { 42.3, 30.5, 267, 300 }, + [22] = { 44, 30.2, 267, 300 }, + [23] = { 44.8, 30, 267, 300 }, + [24] = { 43.6, 29.8, 267, 300 }, + [25] = { 45.3, 29.6, 267, 300 }, + [26] = { 43.9, 28.7, 267, 300 }, + [27] = { 43.4, 27.8, 267, 300 }, + [28] = { 44.1, 27.7, 267, 300 }, + [29] = { 43.4, 27.5, 267, 300 }, + [30] = { 45.1, 27.2, 267, 300 }, + [31] = { 43.6, 26.8, 267, 300 }, + [32] = { 45, 26.1, 267, 300 }, + [33] = { 43.5, 25.7, 267, 300 }, + [34] = { 44.4, 25, 267, 300 }, + }, + ["lvl"] = "31-32", + }, + [2250] = { + ["coords"] = { + [1] = { 38.7, 74, 36, 300 }, + [2] = { 40.6, 73.7, 36, 300 }, + [3] = { 39.3, 72.6, 36, 300 }, + [4] = { 37, 72.5, 36, 300 }, + [5] = { 34.6, 72.1, 36, 300 }, + [6] = { 36.8, 70.5, 36, 300 }, + [7] = { 33.2, 70.2, 36, 300 }, + [8] = { 40.2, 70.1, 36, 300 }, + [9] = { 34.7, 68.6, 36, 300 }, + [10] = { 39.4, 68.3, 36, 300 }, + [11] = { 39.1, 67.3, 36, 300 }, + [12] = { 32.5, 67.2, 36, 300 }, + [13] = { 33.2, 67.1, 36, 300 }, + [14] = { 31.3, 65.7, 36, 300 }, + [15] = { 30.6, 64.5, 36, 300 }, + [16] = { 29.7, 63.3, 36, 300 }, + [17] = { 31, 61.8, 36, 300 }, + [18] = { 30.9, 58.1, 36, 300 }, + [19] = { 42.7, 13.2, 267, 300 }, + [20] = { 44.4, 13, 267, 300 }, + [21] = { 43.3, 12, 267, 300 }, + [22] = { 41.2, 11.8, 267, 300 }, + [23] = { 39.1, 11.5, 267, 300 }, + [24] = { 41.1, 10.1, 267, 300 }, + [25] = { 37.9, 9.9, 267, 300 }, + [26] = { 44, 9.8, 267, 300 }, + [27] = { 39.2, 8.5, 267, 300 }, + [28] = { 43.3, 8.2, 267, 300 }, + [29] = { 43.1, 7.3, 267, 300 }, + [30] = { 37.3, 7.2, 267, 300 }, + [31] = { 37.9, 7.1, 267, 300 }, + [32] = { 36.2, 5.9, 267, 300 }, + }, + ["lvl"] = "32-33", + }, + [2251] = { + ["coords"] = { + [1] = { 35.6, 73.8, 36, 300 }, + [2] = { 35.8, 70.5, 36, 300 }, + [3] = { 41.4, 69.2, 36, 300 }, + [4] = { 36.8, 69, 36, 300 }, + [5] = { 37.5, 67.3, 36, 300 }, + [6] = { 35.4, 67.1, 36, 300 }, + [7] = { 40.4, 67, 36, 300 }, + [8] = { 42.9, 66.7, 36, 300 }, + [9] = { 37.3, 66.2, 36, 300 }, + [10] = { 37.7, 66, 36, 300 }, + [11] = { 39.5, 65.3, 36, 300 }, + [12] = { 41.9, 65.3, 36, 300 }, + [13] = { 39.1, 65, 36, 300 }, + [14] = { 44, 64.9, 36, 300 }, + [15] = { 41.9, 63.3, 36, 300 }, + [16] = { 40.5, 63.3, 36, 300 }, + [17] = { 42.7, 62.6, 36, 300 }, + [18] = { 41.5, 61.7, 36, 300 }, + [19] = { 29.7, 60, 36, 300 }, + [20] = { 29.8, 56.1, 36, 300 }, + [21] = { 30.9, 54.5, 36, 300 }, + [22] = { 29.8, 54, 36, 300 }, + [23] = { 32, 53, 36, 300 }, + [24] = { 29.7, 52.9, 36, 300 }, + [25] = { 30.9, 50.9, 36, 300 }, + [26] = { 29.6, 49.2, 36, 300 }, + [27] = { 32.3, 49.2, 36, 300 }, + [28] = { 30.9, 47.5, 36, 300 }, + [29] = { 32.2, 45.4, 36, 300 }, + [30] = { 32.9, 43, 36, 300 }, + [31] = { 33.8, 39.7, 36, 300 }, + [32] = { 35.8, 37.8, 36, 300 }, + [33] = { 36.8, 36.4, 36, 300 }, + [34] = { 35.9, 35.5, 36, 300 }, + [35] = { 40, 13, 267, 300 }, + [36] = { 40.2, 10.1, 267, 300 }, + [37] = { 45, 9, 267, 300 }, + [38] = { 41.1, 8.8, 267, 300 }, + [39] = { 41.7, 7.3, 267, 300 }, + [40] = { 39.8, 7.1, 267, 300 }, + [41] = { 44.2, 7.1, 267, 300 }, + [42] = { 46.4, 6.8, 267, 300 }, + [43] = { 41.5, 6.4, 267, 300 }, + [44] = { 41.8, 6.2, 267, 300 }, + [45] = { 43.4, 5.6, 267, 300 }, + [46] = { 45.5, 5.5, 267, 300 }, + [47] = { 43, 5.3, 267, 300 }, + [48] = { 47.3, 5.3, 267, 300 }, + [49] = { 45.5, 3.8, 267, 300 }, + [50] = { 44.3, 3.8, 267, 300 }, + [51] = { 46.3, 3.2, 267, 300 }, + [52] = { 45.2, 2.4, 267, 300 }, + }, + ["lvl"] = "33-34", + }, + [2252] = { + ["coords"] = { + [1] = { 47.5, 63.6, 36, 300 }, + [2] = { 46.2, 63.1, 36, 300 }, + [3] = { 45.4, 61.3, 36, 300 }, + [4] = { 49, 61.3, 36, 300 }, + [5] = { 47.4, 60.4, 36, 300 }, + [6] = { 44.9, 60.2, 36, 300 }, + [7] = { 50, 59.6, 36, 300 }, + [8] = { 51, 56.4, 36, 300 }, + [9] = { 48.8, 54.9, 36, 300 }, + [10] = { 54.8, 54.5, 36, 300 }, + [11] = { 53.7, 54.4, 36, 300 }, + [12] = { 55.8, 54.3, 36, 300 }, + [13] = { 48.6, 54.3, 36, 300 }, + [14] = { 54.5, 52.7, 36, 300 }, + [15] = { 50.1, 52.7, 36, 300 }, + [16] = { 52.5, 52.6, 36, 300 }, + [17] = { 53.3, 48, 36, 300 }, + [18] = { 51.2, 46.8, 36, 300 }, + [19] = { 53.1, 45.6, 36, 300 }, + [20] = { 53, 45.5, 36, 300 }, + [21] = { 51.7, 45.4, 36, 300 }, + [22] = { 51.8, 45.2, 36, 300 }, + [23] = { 53.2, 45.1, 36, 300 }, + [24] = { 54.5, 43.3, 36, 300 }, + [25] = { 48.9, 43.2, 36, 300 }, + [26] = { 49.9, 42.1, 36, 300 }, + [27] = { 52.6, 42.1, 36, 300 }, + [28] = { 53.6, 41.9, 36, 300 }, + [29] = { 55.5, 40.6, 36, 300 }, + [30] = { 51.1, 40.3, 36, 300 }, + [31] = { 52.4, 40.2, 36, 300 }, + [32] = { 46.4, 39.9, 36, 300 }, + [33] = { 49.2, 39.1, 36, 300 }, + [34] = { 49.9, 38.2, 36, 300 }, + [35] = { 52.5, 38.2, 36, 300 }, + [36] = { 45.3, 37.9, 36, 300 }, + [37] = { 48.9, 36.9, 36, 300 }, + [38] = { 51.4, 36.5, 36, 300 }, + [39] = { 43.9, 36.5, 36, 300 }, + [40] = { 53.6, 36, 36, 300 }, + [41] = { 46.5, 35.2, 36, 300 }, + [42] = { 51, 34.9, 36, 300 }, + [43] = { 50, 34.5, 36, 300 }, + [44] = { 49.9, 32.8, 36, 300 }, + [45] = { 43.9, 32.8, 36, 300 }, + [46] = { 46.3, 32.8, 36, 300 }, + [47] = { 50, 31.5, 36, 300 }, + [48] = { 41.5, 30.6, 36, 300 }, + [49] = { 45.2, 29.4, 36, 300 }, + [50] = { 50.5, 4.1, 267, 300 }, + [51] = { 49.3, 3.6, 267, 300 }, + [52] = { 48.6, 2.1, 267, 300 }, + [53] = { 51.8, 2.1, 267, 300 }, + [54] = { 50.3, 1.3, 267, 300 }, + [55] = { 48.2, 1.1, 267, 300 }, + [56] = { 52.6, 0.6, 267, 300 }, + }, + ["lvl"] = "34-35", + }, + [2253] = { + ["coords"] = { + [1] = { 46.5, 60.9, 36, 300 }, + [2] = { 48.8, 59.9, 36, 300 }, + [3] = { 46.5, 58.4, 36, 300 }, + [4] = { 51.3, 58, 36, 300 }, + [5] = { 48.5, 57.3, 36, 300 }, + [6] = { 50.2, 56.2, 36, 300 }, + [7] = { 51.6, 54.6, 36, 300 }, + [8] = { 49.6, 54.2, 36, 300 }, + [9] = { 51.4, 52.7, 36, 300 }, + [10] = { 52.9, 47.6, 36, 300 }, + [11] = { 51.4, 47.5, 36, 300 }, + [12] = { 52.4, 47.5, 36, 300 }, + [13] = { 51.1, 45.6, 36, 300 }, + [14] = { 53.6, 45.6, 36, 300 }, + [15] = { 52.4, 45.6, 36, 300 }, + [16] = { 50.7, 45.3, 36, 300 }, + [17] = { 47.5, 44.5, 36, 300 }, + [18] = { 52.1, 44, 36, 300 }, + [19] = { 48.1, 43.5, 36, 300 }, + [20] = { 48.9, 42, 36, 300 }, + [21] = { 47.6, 40.4, 36, 300 }, + [22] = { 47.7, 38.6, 36, 300 }, + [23] = { 51.2, 38.3, 36, 300 }, + [24] = { 47.3, 36.4, 36, 300 }, + [25] = { 45.7, 34.9, 36, 300 }, + [26] = { 44.2, 34.9, 36, 300 }, + [27] = { 47.8, 33.4, 36, 300 }, + [28] = { 47.7, 33, 36, 300 }, + [29] = { 45.2, 31.4, 36, 300 }, + [30] = { 42.8, 31.2, 36, 300 }, + [31] = { 49.6, 1.7, 267, 300 }, + [32] = { 51.6, 0.8, 267, 300 }, + }, + ["lvl"] = "35-36", + }, + [2254] = { + ["coords"] = { + [1] = { 44, 51.2, 36, 300 }, + [2] = { 43.3, 50.1, 36, 300 }, + [3] = { 41.4, 48.8, 36, 300 }, + [4] = { 44, 48.6, 36, 300 }, + [5] = { 45.9, 47.7, 36, 300 }, + [6] = { 42.5, 47.6, 36, 300 }, + [7] = { 43.1, 47, 36, 300 }, + [8] = { 46.4, 46.8, 36, 300 }, + [9] = { 45.9, 45.8, 36, 300 }, + [10] = { 40.4, 45.8, 36, 300 }, + [11] = { 39.2, 45.6, 36, 300 }, + [12] = { 41.6, 43.5, 36, 300 }, + [13] = { 40.1, 42.4, 36, 300 }, + [14] = { 38.3, 42, 36, 300 }, + [15] = { 39.6, 40.2, 36, 300 }, + }, + ["lvl"] = "36-37", + ["rnk"] = "1", + }, + [2255] = { + ["coords"] = { + [1] = { 38.8, 49.4, 36, 300 }, + [2] = { 43.3, 48, 36, 300 }, + [3] = { 40.3, 47.6, 36, 300 }, + [4] = { 45.7, 46.7, 36, 300 }, + [5] = { 42.9, 45.7, 36, 300 }, + [6] = { 40.3, 43.7, 36, 300 }, + [7] = { 41.4, 40.1, 36, 300 }, + [8] = { 38.5, 40.1, 36, 300 }, + }, + ["lvl"] = "37-38", + ["rnk"] = "1", + }, + [2256] = { + ["coords"] = { + [1] = { 38.2, 60, 36, 300 }, + [2] = { 39.6, 58.5, 36, 300 }, + [3] = { 36.9, 56.4, 36, 300 }, + [4] = { 39.6, 56.1, 36, 300 }, + [5] = { 38.3, 54.7, 36, 300 }, + [6] = { 40.6, 54.4, 36, 300 }, + [7] = { 38.1, 51.3, 36, 300 }, + [8] = { 40.7, 50.8, 36, 300 }, + [9] = { 39.6, 50.1, 36, 300 }, + [10] = { 39.8, 49.5, 36, 300 }, + [11] = { 35.6, 49.3, 36, 300 }, + [12] = { 37.8, 49.2, 36, 300 }, + [13] = { 42.3, 0.9, 267, 300 }, + }, + ["lvl"] = "38-39", + ["rnk"] = "1", + }, + [2257] = { + ["coords"] = { + [1] = { 35.7, 54.2, 36, 25 }, + }, + ["lvl"] = "43", + ["rnk"] = "1", + }, + [2260] = { + ["coords"] = { + [1] = { 67.1, 50.9, 267, 300 }, + [2] = { 66.1, 48.7, 267, 300 }, + [3] = { 66, 48.1, 267, 300 }, + [4] = { 80.5, 46.9, 267, 300 }, + [5] = { 81, 46.6, 267, 300 }, + [6] = { 65.4, 46.6, 267, 300 }, + [7] = { 79.3, 46.4, 267, 300 }, + [8] = { 66.1, 45.6, 267, 300 }, + [9] = { 81.8, 45.2, 267, 300 }, + [10] = { 80.4, 44.8, 267, 300 }, + [11] = { 81, 44.6, 267, 300 }, + [12] = { 77.8, 44.2, 267, 300 }, + [13] = { 82.2, 42.4, 267, 300 }, + [14] = { 75.5, 42.3, 267, 300 }, + [15] = { 78.7, 41.8, 267, 300 }, + [16] = { 75, 40.7, 267, 300 }, + }, + ["lvl"] = "21-22", + }, + [2261] = { + ["coords"] = { + [1] = { 17.7, 34, 45, 300 }, + [2] = { 17.9, 33.3, 45, 300 }, + [3] = { 17.4, 33.2, 45, 300 }, + [4] = { 17.9, 32.7, 45, 300 }, + [5] = { 18.3, 32.3, 45, 300 }, + [6] = { 18, 31.7, 45, 300 }, + [7] = { 19, 20, 45, 300 }, + [8] = { 80.4, 63.2, 267, 300 }, + [9] = { 80, 62.4, 267, 300 }, + [10] = { 80.6, 61.8, 267, 300 }, + [11] = { 81, 61.4, 267, 300 }, + [12] = { 80.7, 60.7, 267, 300 }, + [13] = { 67.2, 50.2, 267, 300 }, + [14] = { 65.8, 48.5, 267, 300 }, + [15] = { 67.1, 47.7, 267, 300 }, + [16] = { 67.6, 47.6, 267, 300 }, + [17] = { 78.8, 47.6, 267, 300 }, + [18] = { 81.7, 47.5, 267, 300 }, + [19] = { 79.4, 46.8, 267, 300 }, + [20] = { 76.7, 46.8, 267, 300 }, + [21] = { 78.1, 46.5, 267, 300 }, + [22] = { 76.4, 46.4, 267, 300 }, + [23] = { 67, 46.2, 267, 300 }, + [24] = { 80.6, 46, 267, 300 }, + [25] = { 79.5, 45.6, 267, 300 }, + [26] = { 80.1, 45.4, 267, 300 }, + [27] = { 77.2, 45.2, 267, 300 }, + [28] = { 78.8, 45.2, 267, 300 }, + [29] = { 81.8, 44.6, 267, 300 }, + [30] = { 81.9, 44.6, 267, 300 }, + [31] = { 79.8, 44.6, 267, 300 }, + [32] = { 78.2, 44.5, 267, 300 }, + [33] = { 82.9, 44.4, 267, 300 }, + [34] = { 76.7, 44.2, 267, 300 }, + [35] = { 75.7, 44.1, 267, 300 }, + [36] = { 80.7, 43.8, 267, 300 }, + [37] = { 82, 43.2, 267, 300 }, + [38] = { 78.2, 43.2, 267, 300 }, + [39] = { 79.7, 43.2, 267, 300 }, + [40] = { 76.7, 42.7, 267, 300 }, + [41] = { 75.2, 42, 267, 300 }, + [42] = { 81.2, 41.9, 267, 300 }, + [43] = { 82.7, 41.5, 267, 300 }, + [44] = { 76, 41.5, 267, 300 }, + [45] = { 78.3, 41.4, 267, 300 }, + [46] = { 77.9, 41.3, 267, 300 }, + [47] = { 81.7, 41.3, 267, 300 }, + [48] = { 76.4, 41.2, 267, 300 }, + [49] = { 83.8, 40.9, 267, 300 }, + [50] = { 76.2, 40.8, 267, 300 }, + [51] = { 79.8, 40.8, 267, 300 }, + [52] = { 80.4, 40.7, 267, 300 }, + [53] = { 74.4, 40.5, 267, 300 }, + [54] = { 77.8, 40.4, 267, 300 }, + [55] = { 82.9, 40.3, 267, 300 }, + [56] = { 79.2, 40.2, 267, 300 }, + [57] = { 79.5, 40.1, 267, 300 }, + [58] = { 81.7, 39.8, 267, 300 }, + [59] = { 75.4, 39.7, 267, 300 }, + [60] = { 82.1, 39.6, 267, 300 }, + [61] = { 79.6, 39.4, 267, 300 }, + [62] = { 74.8, 39.1, 267, 300 }, + [63] = { 77.2, 39, 267, 300 }, + [64] = { 75.1, 37.9, 267, 300 }, + }, + ["lvl"] = "20-21", + }, + [2263] = { + ["coords"] = { + [1] = { 49.5, 58.7, 267, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "41", + }, + [2265] = { + ["coords"] = { + [1] = { 31.1, 46.7, 267, 300 }, + [2] = { 31.9, 46.7, 267, 300 }, + [3] = { 32, 45.8, 267, 300 }, + [4] = { 32.6, 45.1, 267, 300 }, + [5] = { 31.6, 44.5, 267, 300 }, + [6] = { 31.2, 43.9, 267, 300 }, + [7] = { 86.8, 9.7, 5179, 300 }, + [8] = { 87.5, 9.7, 5179, 300 }, + [9] = { 87.5, 9, 5179, 300 }, + [10] = { 88.1, 8.4, 5179, 300 }, + [11] = { 87.2, 7.8, 5179, 300 }, + [12] = { 86.8, 7.3, 5179, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "24-25", + }, + [2266] = { + ["coords"] = { + [1] = { 24.8, 99.2, 36, 300 }, + [2] = { 25, 98.9, 36, 300 }, + [3] = { 26.1, 98.8, 36, 300 }, + [4] = { 27.8, 98.5, 36, 300 }, + [5] = { 27.3, 98.5, 36, 300 }, + [6] = { 35.2, 47.4, 267, 300 }, + [7] = { 33.8, 46.5, 267, 300 }, + [8] = { 35.8, 45.2, 267, 300 }, + [9] = { 34.9, 44.6, 267, 300 }, + [10] = { 33.9, 42.4, 267, 300 }, + [11] = { 35.6, 41.4, 267, 300 }, + [12] = { 35.8, 41.2, 267, 300 }, + [13] = { 35.5, 40.4, 267, 300 }, + [14] = { 36.4, 39.8, 267, 300 }, + [15] = { 31.9, 39.2, 267, 300 }, + [16] = { 30.3, 39, 267, 300 }, + [17] = { 31.7, 38.6, 267, 300 }, + [18] = { 31.4, 38.6, 267, 300 }, + [19] = { 34.8, 38.5, 267, 300 }, + [20] = { 29.7, 37.5, 267, 300 }, + [21] = { 35.1, 37.4, 267, 300 }, + [22] = { 33.4, 36, 267, 300 }, + [23] = { 34, 35.7, 267, 300 }, + [24] = { 30.5, 35.3, 267, 300 }, + [25] = { 30.7, 35, 267, 300 }, + [26] = { 31.7, 34.9, 267, 300 }, + [27] = { 33.2, 34.6, 267, 300 }, + [28] = { 32.8, 34.6, 267, 300 }, + [29] = { 90.3, 10.3, 5179, 300 }, + [30] = { 89.1, 9.6, 5179, 300 }, + [31] = { 90.9, 8.4, 5179, 300 }, + [32] = { 90.1, 7.9, 5179, 300 }, + [33] = { 89.2, 6, 5179, 300 }, + [34] = { 90.7, 5, 5179, 300 }, + [35] = { 90.9, 4.9, 5179, 300 }, + [36] = { 90.6, 4.2, 5179, 300 }, + [37] = { 91.4, 3.7, 5179, 300 }, + [38] = { 87.4, 3.2, 5179, 300 }, + [39] = { 86.1, 3, 5179, 300 }, + [40] = { 87.3, 2.7, 5179, 300 }, + [41] = { 87, 2.6, 5179, 300 }, + [42] = { 90, 2.6, 5179, 300 }, + [43] = { 85.5, 1.7, 5179, 300 }, + [44] = { 90.3, 1.6, 5179, 300 }, + [45] = { 88.8, 0.3, 5179, 300 }, + [46] = { 89.3, 0.1, 5179, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "23-24", + }, + [2267] = { + ["coords"] = { + [1] = { 33.7, 47.4, 267, 300 }, + [2] = { 34.8, 47.2, 267, 300 }, + [3] = { 35.1, 47, 267, 300 }, + [4] = { 35.5, 46.2, 267, 300 }, + [5] = { 34.8, 46.1, 267, 300 }, + [6] = { 34.1, 45.7, 267, 300 }, + [7] = { 30.8, 45.4, 267, 300 }, + [8] = { 36.4, 45.4, 267, 300 }, + [9] = { 34.7, 44.6, 267, 300 }, + [10] = { 35.6, 44.3, 267, 300 }, + [11] = { 29.8, 43.8, 267, 300 }, + [12] = { 35.4, 42, 267, 300 }, + [13] = { 30.8, 41.5, 267, 300 }, + [14] = { 29.9, 41.1, 267, 300 }, + [15] = { 30.3, 40.3, 267, 300 }, + [16] = { 89, 10.3, 5179, 300 }, + [17] = { 90, 10.1, 5179, 300 }, + [18] = { 90.3, 10, 5179, 300 }, + [19] = { 90.6, 9.3, 5179, 300 }, + [20] = { 90, 9.2, 5179, 300 }, + [21] = { 89.4, 8.8, 5179, 300 }, + [22] = { 86.6, 8.6, 5179, 300 }, + [23] = { 91.4, 8.6, 5179, 300 }, + [24] = { 89.9, 7.9, 5179, 300 }, + [25] = { 90.7, 7.6, 5179, 300 }, + [26] = { 85.6, 7.2, 5179, 300 }, + [27] = { 90.5, 5.6, 5179, 300 }, + [28] = { 86.5, 5.2, 5179, 300 }, + [29] = { 85.7, 4.8, 5179, 300 }, + [30] = { 86.1, 4.1, 5179, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "24-25", + }, + [2268] = { + ["coords"] = { + [1] = { 32.8, 48.5, 267, 300 }, + [2] = { 34.5, 48, 267, 300 }, + [3] = { 36.5, 46.9, 267, 300 }, + [4] = { 37, 46.9, 267, 300 }, + [5] = { 30, 46.4, 267, 300 }, + [6] = { 33.1, 45.7, 267, 300 }, + [7] = { 29.1, 45.7, 267, 300 }, + [8] = { 34.3, 44.2, 267, 300 }, + [9] = { 30, 44.2, 267, 300 }, + [10] = { 33.7, 43.1, 267, 300 }, + [11] = { 32.2, 42.9, 267, 300 }, + [12] = { 30.9, 42.4, 267, 300 }, + [13] = { 31.4, 42.2, 267, 300 }, + [14] = { 29.2, 40.1, 267, 300 }, + [15] = { 32.4, 39.7, 267, 300 }, + [16] = { 33.2, 38.1, 267, 300 }, + [17] = { 32.8, 36.7, 267, 300 }, + [18] = { 88.3, 11.3, 5179, 300 }, + [19] = { 89.7, 10.8, 5179, 300 }, + [20] = { 91.5, 9.9, 5179, 300 }, + [21] = { 92, 9.8, 5179, 300 }, + [22] = { 85.8, 9.5, 5179, 300 }, + [23] = { 88.5, 8.9, 5179, 300 }, + [24] = { 85.1, 8.9, 5179, 300 }, + [25] = { 89.6, 7.6, 5179, 300 }, + [26] = { 85.8, 7.5, 5179, 300 }, + [27] = { 89.1, 6.6, 5179, 300 }, + [28] = { 87.7, 6.4, 5179, 300 }, + [29] = { 86.6, 6, 5179, 300 }, + [30] = { 87, 5.8, 5179, 300 }, + [31] = { 85.1, 4, 5179, 300 }, + [32] = { 87.9, 3.6, 5179, 300 }, + [33] = { 88.7, 2.2, 5179, 300 }, + [34] = { 88.3, 1, 5179, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25-26", + }, + [2269] = { + ["coords"] = { + [1] = { 31.4, 59.5, 267, 300 }, + [2] = { 30.8, 59.1, 267, 300 }, + [3] = { 31.6, 58.5, 267, 300 }, + [4] = { 30.2, 58.4, 267, 300 }, + [5] = { 30.9, 58.2, 267, 300 }, + [6] = { 27, 58, 267, 300 }, + [7] = { 31.3, 57.9, 267, 300 }, + [8] = { 27.7, 57.7, 267, 300 }, + [9] = { 27.5, 57.7, 267, 300 }, + [10] = { 28.9, 57.4, 267, 300 }, + [11] = { 28.9, 57.3, 267, 300 }, + [12] = { 28.5, 57.2, 267, 300 }, + [13] = { 28.2, 57.1, 267, 300 }, + [14] = { 27.6, 56.6, 267, 300 }, + [15] = { 29.7, 56.5, 267, 300 }, + [16] = { 30.1, 56.5, 267, 300 }, + [17] = { 28.2, 56.3, 267, 300 }, + [18] = { 28.7, 56, 267, 300 }, + [19] = { 30.4, 55.6, 267, 300 }, + [20] = { 32.2, 55.5, 267, 300 }, + [21] = { 30.8, 55.1, 267, 300 }, + [22] = { 29.7, 55, 267, 300 }, + [23] = { 28.3, 54.8, 267, 300 }, + [24] = { 32, 54.6, 267, 300 }, + [25] = { 27.8, 54.1, 267, 300 }, + [26] = { 31.4, 54.1, 267, 300 }, + [27] = { 30, 54, 267, 300 }, + [28] = { 30.5, 53.9, 267, 300 }, + [29] = { 29.2, 53.5, 267, 300 }, + [30] = { 32, 53.2, 267, 300 }, + [31] = { 30.4, 53.1, 267, 300 }, + [32] = { 31.2, 53.1, 267, 300 }, + [33] = { 31.5, 52.4, 267, 300 }, + [34] = { 32.4, 52.1, 267, 300 }, + [35] = { 28.4, 51.9, 267, 300 }, + [36] = { 31.8, 51.8, 267, 300 }, + [37] = { 28.1, 51.2, 267, 300 }, + [38] = { 87, 20.9, 5179, 300 }, + [39] = { 86.6, 20.5, 5179, 300 }, + [40] = { 87.2, 20.1, 5179, 300 }, + [41] = { 86, 19.9, 5179, 300 }, + [42] = { 86.6, 19.7, 5179, 300 }, + [43] = { 83.2, 19.6, 5179, 300 }, + [44] = { 86.9, 19.5, 5179, 300 }, + [45] = { 83.8, 19.4, 5179, 300 }, + [46] = { 83.7, 19.3, 5179, 300 }, + [47] = { 84.9, 19.1, 5179, 300 }, + [48] = { 84.9, 19, 5179, 300 }, + [49] = { 84.5, 18.9, 5179, 300 }, + [50] = { 84.2, 18.8, 5179, 300 }, + [51] = { 83.7, 18.4, 5179, 300 }, + [52] = { 85.6, 18.3, 5179, 300 }, + [53] = { 85.9, 18.3, 5179, 300 }, + [54] = { 84.3, 18.1, 5179, 300 }, + [55] = { 84.7, 17.8, 5179, 300 }, + [56] = { 86.2, 17.5, 5179, 300 }, + [57] = { 87.8, 17.4, 5179, 300 }, + [58] = { 86.5, 17, 5179, 300 }, + [59] = { 85.5, 17, 5179, 300 }, + [60] = { 84.3, 16.8, 5179, 300 }, + [61] = { 87.6, 16.6, 5179, 300 }, + [62] = { 83.9, 16.2, 5179, 300 }, + [63] = { 87, 16.2, 5179, 300 }, + [64] = { 85.8, 16.1, 5179, 300 }, + [65] = { 86.2, 16, 5179, 300 }, + [66] = { 85.1, 15.6, 5179, 300 }, + [67] = { 87.6, 15.4, 5179, 300 }, + [68] = { 86.1, 15.3, 5179, 300 }, + [69] = { 86.9, 15.3, 5179, 300 }, + [70] = { 87.1, 14.7, 5179, 300 }, + [71] = { 87.9, 14.4, 5179, 300 }, + [72] = { 84.5, 14.3, 5179, 300 }, + [73] = { 87.4, 14.1, 5179, 300 }, + [74] = { 84.2, 13.6, 5179, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "26-27", + }, + [2270] = { + ["coords"] = { + [1] = { 26.5, 61.8, 267, 300 }, + [2] = { 27.6, 61.7, 267, 300 }, + [3] = { 27.4, 60.4, 267, 300 }, + [4] = { 26.6, 60.3, 267, 300 }, + [5] = { 28.5, 60.3, 267, 300 }, + [6] = { 25.8, 59.4, 267, 300 }, + [7] = { 27.1, 58.9, 267, 300 }, + [8] = { 82.7, 22.9, 5179, 300 }, + [9] = { 83.8, 22.8, 5179, 300 }, + [10] = { 83.6, 21.7, 5179, 300 }, + [11] = { 82.8, 21.6, 5179, 300 }, + [12] = { 84.5, 21.6, 5179, 300 }, + [13] = { 82.2, 20.9, 5179, 300 }, + [14] = { 83.3, 20.4, 5179, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "27-28", + }, + [2271] = { + ["coords"] = { + [1] = { 18.4, 88, 36, 300 }, + [2] = { 20.8, 87.8, 36, 300 }, + [3] = { 20.9, 87.5, 36, 300 }, + [4] = { 21.6, 87.4, 36, 300 }, + [5] = { 18.8, 86.2, 36, 300 }, + [6] = { 19, 84.3, 36, 300 }, + [7] = { 18, 84.2, 36, 300 }, + [8] = { 21.2, 84.1, 36, 300 }, + [9] = { 21, 83.9, 36, 300 }, + [10] = { 18.1, 83.8, 36, 300 }, + [11] = { 17.7, 83.6, 36, 300 }, + [12] = { 18.4, 83.4, 36, 300 }, + [13] = { 20.4, 82.3, 36, 300 }, + [14] = { 15.2, 78.7, 36, 300 }, + [15] = { 15, 78.6, 36, 300 }, + [16] = { 22.1, 60.3, 36, 300 }, + [17] = { 25, 25.4, 267, 300 }, + [18] = { 27.1, 25.3, 267, 300 }, + [19] = { 27.2, 25, 267, 300 }, + [20] = { 27.8, 24.9, 267, 300 }, + [21] = { 25.3, 23.9, 267, 300 }, + [22] = { 25.5, 22.2, 267, 300 }, + [23] = { 24.6, 22.1, 267, 300 }, + [24] = { 27.4, 22, 267, 300 }, + [25] = { 27.2, 21.8, 267, 300 }, + [26] = { 24.7, 21.7, 267, 300 }, + [27] = { 24.3, 21.6, 267, 300 }, + [28] = { 25, 21.4, 267, 300 }, + [29] = { 26.7, 20.4, 267, 300 }, + [30] = { 22.1, 17.3, 267, 300 }, + [31] = { 22, 17.2, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "31-32", + }, + [2272] = { + ["coords"] = { + [1] = { 20.4, 87.4, 36, 300 }, + [2] = { 18.3, 84.3, 36, 300 }, + [3] = { 19.9, 83.8, 36, 300 }, + [4] = { 17.2, 83.3, 36, 300 }, + [5] = { 17.9, 83.1, 36, 300 }, + [6] = { 18.9, 77.8, 36, 300 }, + [7] = { 22.6, 60.9, 36, 300 }, + [8] = { 22.2, 60.4, 36, 300 }, + [9] = { 26.7, 24.9, 267, 300 }, + [10] = { 24.8, 22.2, 267, 300 }, + [11] = { 26.3, 21.7, 267, 300 }, + [12] = { 23.9, 21.3, 267, 300 }, + [13] = { 24.5, 21.2, 267, 300 }, + [14] = { 25.4, 16.5, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "32-33", + }, + [2277] = { + ["coords"] = { + [1] = { 50.6, 57.1, 267, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2278] = { + ["coords"] = { + [1] = { 61.5, 82.5, 36, 30 }, + [2] = { 62.6, 20.6, 267, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [2279] = "_", + [2280] = "_", + [2281] = "_", + [2282] = "_", + [2283] = { + ["coords"] = { + [1] = { 57, 70.1, 130, 19800 }, + }, + ["lvl"] = "22", + ["rnk"] = "4", + }, + [2285] = { + ["coords"] = { + [1] = { 76.9, 47.8, 1519, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [2286] = "_", + [2288] = "_", + [2289] = "_", + [2290] = "_", + [2291] = "_", + [2292] = "_", + [2293] = "_", + [2294] = "_", + [2295] = "_", + [2296] = "_", + [2297] = "_", + [2298] = "_", + [2299] = { + ["coords"] = { + [1] = { 84.3, 68.3, 46, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [2300] = "_", + [2301] = "_", + [2304] = { + ["coords"] = { + [1] = { 9.5, 49.2, 45, 300 }, + [2] = { 71.1, 80.3, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "32", + ["rnk"] = "1", + }, + [2305] = { + ["coords"] = { + [1] = { 31.2, 56, 267, 300 }, + [2] = { 86.9, 17.9, 5179, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2310] = { + ["coords"] = { + [1] = { 60.7, 50.5, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "5", + }, + [2312] = "_", + [2313] = "_", + [2316] = { + ["coords"] = { + [1] = { 60, 43.7, 36, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [2318] = { + ["coords"] = { + [1] = { 32.9, 93.6, 28, 300 }, + [2] = { 32.1, 91.5, 28, 300 }, + [3] = { 57.4, 46.2, 36, 300 }, + [4] = { 61.2, 45.8, 36, 300 }, + [5] = { 60.3, 44, 36, 300 }, + [6] = { 63.6, 43.7, 36, 300 }, + [7] = { 62.3, 40.6, 36, 300 }, + [8] = { 58.7, 30.5, 36, 300 }, + [9] = { 56.1, 27.3, 36, 300 }, + [10] = { 53.3, 20.7, 36, 300 }, + [11] = { 47.8, 17.5, 36, 300 }, + }, + ["lvl"] = "35-36", + }, + [2319] = { + ["coords"] = { + [1] = { 32.6, 93.8, 28, 300 }, + [2] = { 32.6, 93.7, 28, 300 }, + [3] = { 32.1, 91.9, 28, 300 }, + [4] = { 31.7, 91.9, 28, 300 }, + [5] = { 31.6, 91.3, 28, 300 }, + [6] = { 58.1, 67.3, 36, 300 }, + [7] = { 61.5, 45.5, 36, 300 }, + [8] = { 62.3, 44, 36, 300 }, + [9] = { 63.2, 44, 36, 300 }, + [10] = { 63.1, 44, 36, 300 }, + [11] = { 61.3, 44, 36, 300 }, + [12] = { 60.2, 43.6, 36, 300 }, + [13] = { 59.9, 43.5, 36, 300 }, + [14] = { 62.3, 41.2, 36, 300 }, + [15] = { 61.8, 41.2, 36, 300 }, + [16] = { 61.6, 40.1, 36, 300 }, + [17] = { 59.7, 7.3, 267, 300 }, + }, + ["lvl"] = "34-35", + }, + [2321] = { + ["coords"] = { + [1] = { 34.8, 87.3, 148, 413 }, + [2] = { 43.8, 70.7, 148, 413 }, + [3] = { 43.1, 70.5, 148, 413 }, + [4] = { 42.2, 70.1, 148, 413 }, + [5] = { 44.3, 68.9, 148, 413 }, + [6] = { 39, 68.8, 148, 413 }, + [7] = { 41.4, 68.6, 148, 413 }, + [8] = { 42.3, 68.5, 148, 413 }, + [9] = { 38.4, 68.1, 148, 413 }, + [10] = { 43.2, 68.1, 148, 413 }, + [11] = { 41.7, 67.5, 148, 413 }, + [12] = { 42.8, 67.3, 148, 413 }, + [13] = { 43.9, 67.3, 148, 413 }, + [14] = { 39.9, 67.1, 148, 413 }, + [15] = { 38.8, 67, 148, 413 }, + [16] = { 43.3, 66.1, 148, 413 }, + [17] = { 41.6, 65.8, 148, 413 }, + [18] = { 39.3, 65.6, 148, 413 }, + [19] = { 42, 65.5, 148, 413 }, + [20] = { 38.5, 65.4, 148, 413 }, + [21] = { 38.5, 64.7, 148, 413 }, + [22] = { 38.1, 63.9, 148, 413 }, + [23] = { 38.2, 62.6, 148, 413 }, + [24] = { 39.5, 62.5, 148, 413 }, + [25] = { 39.1, 60.7, 148, 413 }, + [26] = { 39.6, 59.7, 148, 413 }, + [27] = { 38.2, 59.4, 148, 413 }, + [28] = { 38.5, 58.2, 148, 413 }, + [29] = { 45.2, 58, 148, 413 }, + [30] = { 39.8, 57.4, 148, 413 }, + [31] = { 38.2, 56.6, 148, 413 }, + [32] = { 44.3, 55.8, 148, 413 }, + [33] = { 42.9, 55.3, 148, 413 }, + [34] = { 43.6, 55.1, 148, 413 }, + [35] = { 45.7, 54.8, 148, 413 }, + [36] = { 43.4, 53.5, 148, 413 }, + [37] = { 46.1, 53, 148, 413 }, + [38] = { 39, 48.7, 148, 413 }, + [39] = { 38.2, 47.5, 148, 413 }, + [40] = { 42.4, 47.5, 148, 413 }, + [41] = { 41.9, 46, 148, 413 }, + [42] = { 47.2, 44.8, 148, 413 }, + [43] = { 43.3, 44.5, 148, 413 }, + [44] = { 44.6, 44.3, 148, 413 }, + [45] = { 43.9, 43.2, 148, 413 }, + [46] = { 41.1, 43.2, 148, 413 }, + [47] = { 45.6, 42.9, 148, 413 }, + [48] = { 42.8, 42.6, 148, 413 }, + [49] = { 47.2, 42.6, 148, 413 }, + [50] = { 44.7, 42.6, 148, 413 }, + [51] = { 41.3, 41.5, 148, 413 }, + [52] = { 44.4, 41.4, 148, 413 }, + [53] = { 47.3, 41.3, 148, 413 }, + [54] = { 40.3, 41.3, 148, 413 }, + [55] = { 45.4, 41.1, 148, 413 }, + [56] = { 47.9, 41.1, 148, 413 }, + [57] = { 43.4, 40.7, 148, 413 }, + [58] = { 47.6, 40.1, 148, 413 }, + [59] = { 40.1, 39.8, 148, 413 }, + [60] = { 42.6, 39.7, 148, 413 }, + [61] = { 39.3, 38.5, 148, 413 }, + [62] = { 40.5, 38.4, 148, 413 }, + [63] = { 40.5, 36.7, 148, 413 }, + [64] = { 39.7, 36.6, 148, 413 }, + [65] = { 38.8, 36.4, 148, 413 }, + [66] = { 42.4, 35.1, 148, 413 }, + [67] = { 40.4, 35, 148, 413 }, + [68] = { 39.3, 34.8, 148, 413 }, + [69] = { 41.5, 34.7, 148, 413 }, + [70] = { 39.6, 33.9, 148, 413 }, + [71] = { 41.9, 33.7, 148, 413 }, + [72] = { 38.5, 33.5, 148, 413 }, + [73] = { 42.8, 33.5, 148, 413 }, + [74] = { 43.8, 33.4, 148, 413 }, + [75] = { 44.6, 33.4, 148, 413 }, + [76] = { 45.4, 32.2, 148, 413 }, + [77] = { 44, 31.6, 148, 413 }, + [78] = { 44.5, 29.9, 148, 413 }, + [79] = { 43.9, 29.3, 148, 413 }, + [80] = { 44.5, 28.8, 148, 413 }, + [81] = { 43.7, 28.1, 148, 413 }, + [82] = { 45.4, 27.4, 148, 413 }, + [83] = { 42.8, 26.4, 148, 413 }, + [84] = { 44.2, 26.3, 148, 413 }, + [85] = { 46.8, 25.8, 148, 413 }, + [86] = { 43.7, 25.8, 148, 413 }, + [87] = { 44.6, 25.7, 148, 413 }, + [88] = { 45.8, 24.9, 148, 413 }, + [89] = { 44.6, 24.5, 148, 413 }, + [90] = { 46.9, 24.5, 148, 413 }, + [91] = { 47.9, 23.6, 148, 413 }, + [92] = { 45.6, 23.4, 148, 413 }, + [93] = { 44.2, 23.4, 148, 413 }, + [94] = { 45.4, 22.9, 148, 413 }, + [95] = { 48.9, 22.8, 148, 413 }, + [96] = { 47.1, 22.5, 148, 413 }, + [97] = { 45.9, 22.2, 148, 413 }, + [98] = { 29.5, 31.1, 361, 413 }, + }, + ["lvl"] = "11-13", + }, + [2324] = { + ["coords"] = { + [1] = { 39.4, 56.7, 148, 413 }, + [2] = { 39.7, 56.1, 148, 413 }, + [3] = { 40.1, 56, 148, 413 }, + [4] = { 39.9, 55.5, 148, 413 }, + [5] = { 39.9, 54.6, 148, 413 }, + [6] = { 40.2, 54.4, 148, 413 }, + [7] = { 39.9, 54.4, 148, 413 }, + [8] = { 39.6, 54, 148, 413 }, + [9] = { 40.1, 53.8, 148, 413 }, + [10] = { 39, 53.8, 148, 413 }, + [11] = { 39.5, 53.6, 148, 413 }, + [12] = { 39.4, 53.3, 148, 413 }, + [13] = { 40.1, 52.8, 148, 413 }, + [14] = { 39.1, 52.6, 148, 413 }, + }, + ["lvl"] = "13-14", + }, + [2325] = "_", + [2327] = { + ["coords"] = { + [1] = { 53, 44.7, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [2330] = { + ["coords"] = { + [1] = { 56.5, 74.3, 1519, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [2331] = { + ["coords"] = { + [1] = { 56.6, 74.3, 1519, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [2332] = { + ["coords"] = { + [1] = { 44.6, 84.7, 130, 413 }, + [2] = { 45.8, 14.2, 5179, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "21", + }, + [2334] = { + ["coords"] = { + [1] = { 67.4, 72.4, 1519, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [2335] = { + ["coords"] = { + [1] = { 29.7, 41.6, 267, 300 }, + [2] = { 85.5, 5.3, 5179, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2336] = { + ["coords"] = { + [1] = { 55.1, 27.9, 148, 413 }, + [2] = { 55, 27.7, 148, 413 }, + [3] = { 56.8, 27.6, 148, 413 }, + [4] = { 56.1, 27.4, 148, 413 }, + [5] = { 57.1, 27.3, 148, 413 }, + [6] = { 56.6, 27.3, 148, 413 }, + [7] = { 56.2, 27, 148, 413 }, + [8] = { 55.4, 27, 148, 413 }, + [9] = { 55.8, 27, 148, 413 }, + [10] = { 56.5, 26.9, 148, 413 }, + [11] = { 56.8, 26.9, 148, 413 }, + [12] = { 55.8, 26.7, 148, 413 }, + [13] = { 57.1, 26.6, 148, 413 }, + [14] = { 55.3, 26.6, 148, 413 }, + [15] = { 56, 26.6, 148, 413 }, + [16] = { 55.2, 26.6, 148, 413 }, + [17] = { 56.6, 26.5, 148, 413 }, + [18] = { 56.9, 26.5, 148, 413 }, + [19] = { 57.3, 26.3, 148, 413 }, + [20] = { 57, 26.2, 148, 413 }, + [21] = { 55.8, 26.2, 148, 413 }, + [22] = { 55.8, 25.9, 148, 413 }, + [23] = { 57.8, 25.8, 148, 413 }, + [24] = { 56.5, 25.8, 148, 413 }, + [25] = { 57.9, 25.6, 148, 413 }, + [26] = { 56.1, 25.4, 148, 413 }, + }, + ["lvl"] = "16-17", + }, + [2337] = { + ["coords"] = { + [1] = { 56.2, 26.4, 148, 413 }, + [2] = { 56, 26.2, 148, 413 }, + [3] = { 56.1, 26, 148, 413 }, + [4] = { 56.4, 26, 148, 413 }, + [5] = { 55.9, 26, 148, 413 }, + [6] = { 56, 25.9, 148, 413 }, + [7] = { 56.3, 25.8, 148, 413 }, + [8] = { 56.1, 25.7, 148, 413 }, + }, + ["lvl"] = "28-29", + }, + [2338] = { + ["coords"] = { + [1] = { 39.5, 88.1, 148, 413 }, + [2] = { 39.1, 88, 148, 413 }, + [3] = { 38.9, 87.8, 148, 413 }, + [4] = { 39.3, 87.6, 148, 413 }, + [5] = { 38.5, 87.5, 148, 413 }, + [6] = { 38.2, 87.2, 148, 413 }, + [7] = { 38.1, 86.9, 148, 413 }, + [8] = { 39.1, 86.6, 148, 413 }, + [9] = { 38.2, 86.3, 148, 413 }, + [10] = { 38.6, 86.3, 148, 413 }, + [11] = { 38, 86.2, 148, 413 }, + [12] = { 39, 86.2, 148, 413 }, + [13] = { 38.5, 86.1, 148, 413 }, + [14] = { 39.6, 86, 148, 413 }, + [15] = { 38.2, 85.7, 148, 413 }, + [16] = { 39.4, 85.7, 148, 413 }, + [17] = { 38.7, 85.3, 148, 413 }, + [18] = { 39.3, 85.2, 148, 413 }, + }, + ["lvl"] = "16-17", + }, + [2339] = { + ["coords"] = { + [1] = { 55.5, 36, 148, 413 }, + [2] = { 55.4, 35.9, 148, 413 }, + [3] = { 56.6, 35.1, 148, 413 }, + [4] = { 56.4, 35.1, 148, 413 }, + [5] = { 40.6, 9.7, 361, 413 }, + [6] = { 40.5, 9.6, 361, 413 }, + [7] = { 41.8, 8.7, 361, 413 }, + [8] = { 41.6, 8.6, 361, 413 }, + [9] = { 39.5, 88.1, 148, 413 }, + [10] = { 39.1, 88, 148, 413 }, + [11] = { 38.9, 87.8, 148, 413 }, + [12] = { 39.3, 87.6, 148, 413 }, + [13] = { 38.5, 87.5, 148, 413 }, + [14] = { 38.2, 87.2, 148, 413 }, + [15] = { 38.1, 86.9, 148, 413 }, + [16] = { 39.1, 86.6, 148, 413 }, + [17] = { 38.2, 86.3, 148, 413 }, + [18] = { 38.6, 86.3, 148, 413 }, + [19] = { 38, 86.2, 148, 413 }, + [20] = { 39, 86.2, 148, 413 }, + [21] = { 38.5, 86.1, 148, 413 }, + [22] = { 39.6, 86, 148, 413 }, + [23] = { 38.2, 85.7, 148, 413 }, + [24] = { 39.4, 85.7, 148, 413 }, + [25] = { 38.7, 85.3, 148, 413 }, + [26] = { 39.3, 85.2, 148, 413 }, + }, + ["lvl"] = "17-18", + }, + [2344] = { + ["coords"] = { + [1] = { 10.9, 50.6, 45, 300 }, + [2] = { 11, 50.1, 45, 300 }, + [3] = { 10.4, 49.9, 45, 300 }, + [4] = { 10.6, 49.9, 45, 300 }, + [5] = { 9.5, 49.5, 45, 300 }, + [6] = { 10.4, 49.3, 45, 300 }, + [7] = { 9.5, 49.2, 45, 300 }, + [8] = { 10.3, 48.7, 45, 300 }, + [9] = { 9, 48.6, 45, 300 }, + [10] = { 10.8, 48.6, 45, 300 }, + [11] = { 9.9, 48.5, 45, 300 }, + [12] = { 7.5, 48.5, 45, 300 }, + [13] = { 10.4, 48, 45, 300 }, + [14] = { 9.9, 47.7, 45, 300 }, + [15] = { 7.7, 47.3, 45, 300 }, + [16] = { 9.5, 47.2, 45, 300 }, + [17] = { 8.1, 47.1, 45, 300 }, + [18] = { 8.7, 47, 45, 300 }, + [19] = { 8.8, 46.4, 45, 300 }, + [20] = { 8.5, 44.5, 45, 300 }, + [21] = { 72.6, 82, 267, 300 }, + [22] = { 72.7, 81.9, 267, 300 }, + [23] = { 72.8, 81.3, 267, 300 }, + [24] = { 72.1, 81.1, 267, 300 }, + [25] = { 72.4, 81.1, 267, 300 }, + [26] = { 71.2, 80.6, 267, 300 }, + [27] = { 72.1, 80.5, 267, 300 }, + [28] = { 71.1, 80.4, 267, 300 }, + [29] = { 72, 79.8, 267, 300 }, + [30] = { 70.5, 79.7, 267, 300 }, + [31] = { 72.5, 79.6, 267, 300 }, + [32] = { 71.6, 79.6, 267, 300 }, + [33] = { 68.9, 79.5, 267, 300 }, + [34] = { 72.2, 79, 267, 300 }, + [35] = { 71.5, 78.7, 267, 300 }, + [36] = { 69, 78.2, 267, 300 }, + [37] = { 71.1, 78.1, 267, 300 }, + [38] = { 69.5, 77.9, 267, 300 }, + [39] = { 70.2, 77.9, 267, 300 }, + [40] = { 70.4, 77.2, 267, 300 }, + [41] = { 70, 75, 267, 300 }, + [42] = { 70.1, 72.6, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "28-29", + ["rnk"] = "1", + }, + [2345] = { + ["coords"] = { + [1] = { 9.9, 50.1, 45, 300 }, + [2] = { 10.8, 49.1, 45, 300 }, + [3] = { 10.5, 48.7, 45, 300 }, + [4] = { 8.5, 48.3, 45, 300 }, + [5] = { 9.1, 47.6, 45, 300 }, + [6] = { 8.6, 47.5, 45, 300 }, + [7] = { 8.5, 45.8, 45, 300 }, + [8] = { 9.9, 44.5, 45, 300 }, + [9] = { 9.7, 43.8, 45, 300 }, + [10] = { 71.6, 81.4, 267, 300 }, + [11] = { 72.6, 80.2, 267, 300 }, + [12] = { 72.2, 79.7, 267, 300 }, + [13] = { 70, 79.4, 267, 300 }, + [14] = { 70.7, 78.6, 267, 300 }, + [15] = { 70.1, 78.4, 267, 300 }, + [16] = { 69.3, 76.6, 267, 300 }, + [17] = { 70, 76.5, 267, 300 }, + [18] = { 71.5, 75.1, 267, 300 }, + [19] = { 71.3, 74.2, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "29-30", + ["rnk"] = "1", + }, + [2346] = { + ["coords"] = { + [1] = { 10.7, 49.5, 45, 300 }, + [2] = { 10.9, 49.5, 45, 300 }, + [3] = { 10.1, 49.3, 45, 300 }, + [4] = { 10.4, 48.9, 45, 300 }, + [5] = { 9.1, 45.1, 45, 300 }, + [6] = { 72.5, 80.7, 267, 300 }, + [7] = { 72.7, 80.7, 267, 300 }, + [8] = { 71.8, 80.5, 267, 300 }, + [9] = { 72.1, 80.1, 267, 300 }, + [10] = { 70.7, 75.8, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "29-30", + ["rnk"] = "1", + }, + [2347] = { + ["coords"] = { + [1] = { 23.9, 14.8, 45, 300 }, + [2] = { 87.3, 41.7, 267, 300 }, + [3] = { 78.7, 34.9, 267, 300 }, + }, + ["lvl"] = "40", + }, + [2348] = { + ["coords"] = { + [1] = { 12.2, 40.3, 45, 300 }, + [2] = { 10.8, 39.5, 45, 300 }, + [3] = { 11.4, 38.1, 45, 300 }, + [4] = { 12.9, 38, 45, 300 }, + [5] = { 66.4, 77.6, 267, 300 }, + [6] = { 63.9, 73.6, 267, 300 }, + [7] = { 66.6, 72.8, 267, 300 }, + [8] = { 66, 72.6, 267, 300 }, + [9] = { 62.8, 72.2, 267, 300 }, + [10] = { 65.7, 71.2, 267, 300 }, + [11] = { 63.4, 70.8, 267, 300 }, + [12] = { 74.2, 70.4, 267, 300 }, + [13] = { 68.9, 69.9, 267, 300 }, + [14] = { 72.5, 69.5, 267, 300 }, + [15] = { 60.7, 68.6, 267, 300 }, + [16] = { 68.3, 67.9, 267, 300 }, + [17] = { 73.2, 67.9, 267, 300 }, + [18] = { 75, 67.8, 267, 300 }, + [19] = { 66.5, 67.8, 267, 300 }, + [20] = { 63.9, 66.4, 267, 300 }, + [21] = { 67.3, 65.9, 267, 300 }, + [22] = { 61.1, 63.2, 267, 300 }, + [23] = { 58.6, 61.8, 267, 300 }, + [24] = { 69.2, 60.5, 267, 300 }, + [25] = { 60.4, 57.9, 267, 300 }, + [26] = { 59.4, 55.5, 267, 300 }, + [27] = { 61.2, 55.4, 267, 300 }, + [28] = { 62, 54, 267, 300 }, + [29] = { 60.2, 52.7, 267, 300 }, + [30] = { 56.7, 52.4, 267, 300 }, + }, + ["lvl"] = "26-27", + }, + [2349] = { + ["coords"] = { + [1] = { 19.7, 99.2, 36, 300 }, + [2] = { 20.2, 97, 36, 300 }, + [3] = { 32.2, 96.8, 36, 300 }, + [4] = { 23.2, 95.8, 36, 300 }, + [5] = { 69.3, 95.7, 36, 300 }, + [6] = { 21.3, 94.6, 36, 300 }, + [7] = { 75.6, 92.8, 36, 300 }, + [8] = { 29.4, 92.7, 36, 300 }, + [9] = { 32.1, 92.1, 36, 300 }, + [10] = { 22.4, 91.8, 36, 300 }, + [11] = { 18.4, 91.8, 36, 300 }, + [12] = { 22.5, 91.7, 36, 300 }, + [13] = { 69.7, 90.5, 36, 300 }, + [14] = { 15.8, 88.8, 36, 300 }, + [15] = { 24.1, 88, 36, 300 }, + [16] = { 75.3, 87, 36, 300 }, + [17] = { 14.6, 86.3, 36, 300 }, + [18] = { 26.6, 83.6, 36, 300 }, + [19] = { 72.2, 83, 36, 300 }, + [20] = { 71.3, 82.6, 36, 300 }, + [21] = { 22.6, 82, 36, 300 }, + [22] = { 14.6, 81.7, 36, 300 }, + [23] = { 24.9, 79.6, 36, 300 }, + [24] = { 28.8, 79.5, 36, 300 }, + [25] = { 24.2, 79.1, 36, 300 }, + [26] = { 30.1, 78.2, 36, 300 }, + [27] = { 23.4, 77.7, 36, 300 }, + [28] = { 26.2, 76.2, 36, 300 }, + [29] = { 25.9, 74.3, 36, 300 }, + [30] = { 28.5, 73.5, 36, 300 }, + [31] = { 22.4, 73.4, 36, 300 }, + [32] = { 27.7, 69.9, 36, 300 }, + [33] = { 25.6, 66, 36, 300 }, + [34] = { 25, 63.3, 36, 300 }, + [35] = { 23.7, 56.6, 36, 300 }, + [36] = { 15.1, 35.1, 45, 300 }, + [37] = { 11.6, 33.9, 45, 300 }, + [38] = { 15.7, 33.4, 45, 300 }, + [39] = { 13.6, 32.8, 45, 300 }, + [40] = { 16, 31.7, 45, 300 }, + [41] = { 14.2, 31, 45, 300 }, + [42] = { 14.5, 27.3, 45, 300 }, + [43] = { 19.6, 25, 45, 300 }, + [44] = { 17.9, 24.1, 45, 300 }, + [45] = { 21.4, 22.6, 45, 300 }, + [46] = { 20.2, 21.3, 45, 300 }, + [47] = { 21.4, 21.3, 45, 300 }, + [48] = { 23.5, 18.3, 45, 300 }, + [49] = { 21, 18.3, 45, 300 }, + [50] = { 26.4, 14.6, 45, 300 }, + [51] = { 24.6, 14.5, 45, 300 }, + [52] = { 26, 13.5, 45, 300 }, + [53] = { 27.6, 67.8, 267, 300 }, + [54] = { 29.6, 66.4, 267, 300 }, + [55] = { 33, 66, 267, 300 }, + [56] = { 38.6, 65.5, 267, 300 }, + [57] = { 41.3, 65.2, 267, 300 }, + [58] = { 27.8, 65.1, 267, 300 }, + [59] = { 33.3, 64.9, 267, 300 }, + [60] = { 32, 64.7, 267, 300 }, + [61] = { 77.4, 64.5, 267, 300 }, + [62] = { 40.9, 64.4, 267, 300 }, + [63] = { 31.8, 63.6, 267, 300 }, + [64] = { 36.4, 63.5, 267, 300 }, + [65] = { 29, 63.3, 267, 300 }, + [66] = { 33.8, 63.2, 267, 300 }, + [67] = { 73.5, 63.1, 267, 300 }, + [68] = { 32.2, 62.7, 267, 300 }, + [69] = { 78.1, 62.5, 267, 300 }, + [70] = { 75.7, 61.9, 267, 300 }, + [71] = { 71.4, 61.9, 267, 300 }, + [72] = { 44.6, 61.6, 267, 300 }, + [73] = { 31, 61.3, 267, 300 }, + [74] = { 42.7, 61.1, 267, 300 }, + [75] = { 78.4, 60.6, 267, 300 }, + [76] = { 70.3, 60.3, 267, 300 }, + [77] = { 76.4, 59.9, 267, 300 }, + [78] = { 39.6, 59.9, 267, 300 }, + [79] = { 42.5, 59.4, 267, 300 }, + [80] = { 36.1, 59, 267, 300 }, + [81] = { 31.7, 58.9, 267, 300 }, + [82] = { 66.7, 58.8, 267, 300 }, + [83] = { 24.7, 58.6, 267, 300 }, + [84] = { 40.3, 58.3, 267, 300 }, + [85] = { 64.9, 57.8, 267, 300 }, + [86] = { 34.1, 57.4, 267, 300 }, + [87] = { 23.9, 57.1, 267, 300 }, + [88] = { 66.1, 57, 267, 300 }, + [89] = { 24.5, 57, 267, 300 }, + [90] = { 35.7, 56.7, 267, 300 }, + [91] = { 29.2, 56.5, 267, 300 }, + [92] = { 36.8, 55.9, 267, 300 }, + [93] = { 73.3, 55.8, 267, 300 }, + [94] = { 32.7, 55.8, 267, 300 }, + [95] = { 76.7, 55.7, 267, 300 }, + [96] = { 62.9, 55.6, 267, 300 }, + [97] = { 67.2, 55.6, 267, 300 }, + [98] = { 38.4, 55.5, 267, 300 }, + [99] = { 29.7, 54.2, 267, 300 }, + [100] = { 36.9, 54.2, 267, 300 }, + [101] = { 28.7, 54.1, 267, 300 }, + [102] = { 34.8, 54.1, 267, 300 }, + [103] = { 27.5, 54.1, 267, 300 }, + [104] = { 75.8, 54.1, 267, 300 }, + [105] = { 23.5, 54, 267, 300 }, + [106] = { 73.5, 53.8, 267, 300 }, + [107] = { 82.5, 53.1, 267, 300 }, + [108] = { 32.9, 52.7, 267, 300 }, + [109] = { 69, 52.5, 267, 300 }, + [110] = { 41.3, 52.2, 267, 300 }, + [111] = { 80.6, 52.1, 267, 300 }, + [112] = { 70.3, 52, 267, 300 }, + [113] = { 65, 51.8, 267, 300 }, + [114] = { 40.3, 51.7, 267, 300 }, + [115] = { 38.1, 51.6, 267, 300 }, + [116] = { 77.6, 51.3, 267, 300 }, + [117] = { 23.5, 51, 267, 300 }, + [118] = { 27.7, 50.7, 267, 300 }, + [119] = { 73, 50.5, 267, 300 }, + [120] = { 84.5, 50.4, 267, 300 }, + [121] = { 71.4, 50.3, 267, 300 }, + [122] = { 40.2, 49.6, 267, 300 }, + [123] = { 64.1, 49.1, 267, 300 }, + [124] = { 26.6, 49, 267, 300 }, + [125] = { 83.1, 49, 267, 300 }, + [126] = { 84.5, 49, 267, 300 }, + [127] = { 68.7, 48.9, 267, 300 }, + [128] = { 60.9, 47.8, 267, 300 }, + [129] = { 61.9, 46.5, 267, 300 }, + [130] = { 86.9, 45.6, 267, 300 }, + [131] = { 84, 45.5, 267, 300 }, + [132] = { 63.7, 44.8, 267, 300 }, + [133] = { 90.2, 41.4, 267, 300 }, + [134] = { 88.1, 41.3, 267, 300 }, + [135] = { 89.6, 40.2, 267, 300 }, + [136] = { 67.3, 38.2, 267, 300 }, + [137] = { 26.2, 36.9, 267, 300 }, + [138] = { 68.3, 36.7, 267, 300 }, + [139] = { 85.6, 36.1, 267, 300 }, + [140] = { 84, 35.4, 267, 300 }, + [141] = { 26.1, 35.3, 267, 300 }, + [142] = { 75.3, 34, 267, 300 }, + [143] = { 26.6, 33.3, 267, 300 }, + [144] = { 37, 33.2, 267, 300 }, + [145] = { 29.1, 32.3, 267, 300 }, + [146] = { 69.5, 32.1, 267, 300 }, + [147] = { 81.5, 32, 267, 300 }, + [148] = { 79, 31.7, 267, 300 }, + [149] = { 27.5, 31.2, 267, 300 }, + [150] = { 75, 29.6, 267, 300 }, + [151] = { 34.6, 29.6, 267, 300 }, + [152] = { 36.9, 29, 267, 300 }, + [153] = { 28.5, 28.8, 267, 300 }, + [154] = { 24.9, 28.8, 267, 300 }, + [155] = { 28.5, 28.7, 267, 300 }, + [156] = { 69.8, 27.6, 267, 300 }, + [157] = { 22.7, 26.1, 267, 300 }, + [158] = { 30, 25.4, 267, 300 }, + [159] = { 74.8, 24.6, 267, 300 }, + [160] = { 21.6, 23.9, 267, 300 }, + [161] = { 32.1, 21.6, 267, 300 }, + [162] = { 72.1, 21.1, 267, 300 }, + [163] = { 71.3, 20.7, 267, 300 }, + [164] = { 28.6, 20.2, 267, 300 }, + [165] = { 21.6, 19.9, 267, 300 }, + [166] = { 30.7, 18.1, 267, 300 }, + [167] = { 34.1, 18, 267, 300 }, + [168] = { 30, 17.7, 267, 300 }, + [169] = { 35.2, 16.9, 267, 300 }, + [170] = { 29.3, 16.4, 267, 300 }, + [171] = { 31.8, 15.1, 267, 300 }, + [172] = { 31.5, 13.4, 267, 300 }, + [173] = { 33.8, 12.8, 267, 300 }, + [174] = { 28.4, 12.7, 267, 300 }, + [175] = { 83.7, 28.1, 5179, 300 }, + [176] = { 85.5, 27, 5179, 300 }, + [177] = { 88.5, 26.6, 5179, 300 }, + [178] = { 93.3, 26.1, 5179, 300 }, + [179] = { 95.6, 25.9, 5179, 300 }, + [180] = { 83.9, 25.8, 5179, 300 }, + [181] = { 88.7, 25.7, 5179, 300 }, + [182] = { 87.6, 25.4, 5179, 300 }, + [183] = { 95.3, 25.2, 5179, 300 }, + [184] = { 87.4, 24.5, 5179, 300 }, + [185] = { 91.4, 24.4, 5179, 300 }, + [186] = { 84.9, 24.2, 5179, 300 }, + [187] = { 89.1, 24.1, 5179, 300 }, + [188] = { 87.7, 23.7, 5179, 300 }, + [189] = { 98.6, 22.7, 5179, 300 }, + [190] = { 86.7, 22.4, 5179, 300 }, + [191] = { 96.9, 22.3, 5179, 300 }, + [192] = { 94.2, 21.2, 5179, 300 }, + [193] = { 96.7, 20.8, 5179, 300 }, + [194] = { 91.2, 20.5, 5179, 300 }, + [195] = { 87.3, 20.3, 5179, 300 }, + [196] = { 81.2, 20.1, 5179, 300 }, + [197] = { 94.8, 19.9, 5179, 300 }, + [198] = { 89.4, 19.1, 5179, 300 }, + [199] = { 80.5, 18.8, 5179, 300 }, + [200] = { 81, 18.7, 5179, 300 }, + [201] = { 90.8, 18.4, 5179, 300 }, + [202] = { 85.1, 18.3, 5179, 300 }, + [203] = { 91.8, 17.8, 5179, 300 }, + [204] = { 88.2, 17.7, 5179, 300 }, + [205] = { 93.2, 17.4, 5179, 300 }, + [206] = { 85.6, 16.3, 5179, 300 }, + [207] = { 91.8, 16.3, 5179, 300 }, + [208] = { 84.7, 16.2, 5179, 300 }, + [209] = { 90, 16.2, 5179, 300 }, + [210] = { 83.7, 16.1, 5179, 300 }, + [211] = { 80.1, 16.1, 5179, 300 }, + [212] = { 88.4, 15, 5179, 300 }, + [213] = { 95.7, 14.5, 5179, 300 }, + [214] = { 94.8, 14.1, 5179, 300 }, + [215] = { 92.9, 14, 5179, 300 }, + [216] = { 80.2, 13.5, 5179, 300 }, + [217] = { 83.8, 13.2, 5179, 300 }, + [218] = { 94.7, 12.3, 5179, 300 }, + [219] = { 82.9, 11.8, 5179, 300 }, + [220] = { 82.5, 1.1, 5179, 300 }, + }, + ["lvl"] = "24-25", + }, + [2350] = { + ["coords"] = { + [1] = { 57.3, 99.3, 36, 300 }, + [2] = { 58, 99.1, 36, 300 }, + [3] = { 72, 98, 36, 300 }, + [4] = { 63.6, 95.5, 36, 300 }, + [5] = { 60.5, 94.9, 36, 300 }, + [6] = { 54.5, 93.3, 36, 300 }, + [7] = { 56.2, 92, 36, 300 }, + [8] = { 64.9, 90.1, 36, 300 }, + [9] = { 64.4, 88.2, 36, 300 }, + [10] = { 55.9, 86.6, 36, 300 }, + [11] = { 65.5, 83.4, 36, 300 }, + [12] = { 54.6, 78.2, 36, 300 }, + [13] = { 59.4, 75.9, 36, 300 }, + [14] = { 51.4, 75.4, 36, 300 }, + [15] = { 62.7, 75.3, 36, 300 }, + [16] = { 61.4, 74.6, 36, 300 }, + [17] = { 57.7, 74.6, 36, 300 }, + [18] = { 51.3, 74.5, 36, 300 }, + [19] = { 55.2, 74.4, 36, 300 }, + [20] = { 68, 74.2, 36, 300 }, + [21] = { 62.9, 71.1, 36, 300 }, + [22] = { 67.1, 70.6, 36, 300 }, + [23] = { 54.5, 70.3, 36, 300 }, + [24] = { 66.7, 69.9, 36, 300 }, + [25] = { 69.9, 69.2, 36, 300 }, + [26] = { 23, 53.5, 267, 300 }, + [27] = { 19.7, 53.4, 267, 300 }, + [28] = { 18.1, 52.9, 267, 300 }, + [29] = { 21.2, 51.8, 267, 300 }, + [30] = { 78.5, 50.6, 267, 300 }, + [31] = { 19.1, 47.8, 267, 300 }, + [32] = { 70.4, 44.6, 267, 300 }, + [33] = { 20.5, 43.4, 267, 300 }, + [34] = { 23.5, 43.1, 267, 300 }, + [35] = { 71.8, 41.2, 267, 300 }, + [36] = { 62.2, 39.8, 267, 300 }, + [37] = { 63.2, 39.3, 267, 300 }, + [38] = { 25.6, 39.3, 267, 300 }, + [39] = { 26.6, 38.9, 267, 300 }, + [40] = { 27.8, 38.9, 267, 300 }, + [41] = { 61, 38.2, 267, 300 }, + [42] = { 70.8, 38.2, 267, 300 }, + [43] = { 71.4, 36.6, 267, 300 }, + [44] = { 63.3, 36.3, 267, 300 }, + [45] = { 59, 35.3, 267, 300 }, + [46] = { 59.6, 35.2, 267, 300 }, + [47] = { 71.9, 34.2, 267, 300 }, + [48] = { 64.5, 32, 267, 300 }, + [49] = { 61.8, 31.5, 267, 300 }, + [50] = { 56.5, 30.1, 267, 300 }, + [51] = { 58.1, 28.9, 267, 300 }, + [52] = { 65.7, 27.2, 267, 300 }, + [53] = { 65.2, 25.6, 267, 300 }, + [54] = { 57.8, 24.2, 267, 300 }, + [55] = { 66.1, 21.4, 267, 300 }, + [56] = { 56.6, 16.9, 267, 300 }, + [57] = { 60.8, 14.8, 267, 300 }, + [58] = { 53.8, 14.4, 267, 300 }, + [59] = { 63.7, 14.3, 267, 300 }, + [60] = { 62.6, 13.7, 267, 300 }, + [61] = { 59.4, 13.7, 267, 300 }, + [62] = { 53.8, 13.6, 267, 300 }, + [63] = { 57.1, 13.5, 267, 300 }, + [64] = { 68.3, 13.3, 267, 300 }, + [65] = { 63.9, 10.7, 267, 300 }, + [66] = { 67.5, 10.2, 267, 300 }, + [67] = { 56.5, 10, 267, 300 }, + [68] = { 67.2, 9.6, 267, 300 }, + [69] = { 70.1, 9, 267, 300 }, + [70] = { 79.7, 15.7, 5179, 300 }, + [71] = { 76.8, 15.6, 5179, 300 }, + [72] = { 75.5, 15.1, 5179, 300 }, + [73] = { 78.1, 14.2, 5179, 300 }, + [74] = { 76.3, 10.6, 5179, 300 }, + [75] = { 77.5, 6.9, 5179, 300 }, + [76] = { 80.2, 6.5, 5179, 300 }, + [77] = { 82, 3.2, 5179, 300 }, + [78] = { 82.8, 2.9, 5179, 300 }, + [79] = { 83.9, 2.9, 5179, 300 }, + }, + ["lvl"] = "20-21", + }, + [2351] = { + ["coords"] = { + [1] = { 65.8, 98.1, 36, 300 }, + [2] = { 56.3, 97.9, 36, 300 }, + [3] = { 63.4, 97.7, 36, 300 }, + [4] = { 57.4, 96.4, 36, 300 }, + [5] = { 58.2, 94.3, 36, 300 }, + [6] = { 62, 93.4, 36, 300 }, + [7] = { 55.1, 92.1, 36, 300 }, + [8] = { 66.3, 91.9, 36, 300 }, + [9] = { 63.4, 91.8, 36, 300 }, + [10] = { 55.9, 91.3, 36, 300 }, + [11] = { 54.9, 91.1, 36, 300 }, + [12] = { 66.7, 88.7, 36, 300 }, + [13] = { 55.7, 85.9, 36, 300 }, + [14] = { 65.4, 85.3, 36, 300 }, + [15] = { 66.5, 85.2, 36, 300 }, + [16] = { 66.5, 81.2, 36, 300 }, + [17] = { 52.5, 77.1, 36, 300 }, + [18] = { 66.2, 76.9, 36, 300 }, + [19] = { 55.7, 76.2, 36, 300 }, + [20] = { 52.5, 74.2, 36, 300 }, + [21] = { 67.9, 72.6, 36, 300 }, + [22] = { 62.1, 72, 36, 300 }, + [23] = { 68.5, 69.8, 36, 300 }, + [24] = { 50.4, 68.8, 36, 300 }, + [25] = { 54.1, 68.8, 36, 300 }, + [26] = { 63.1, 68.7, 36, 300 }, + [27] = { 62.1, 66.2, 36, 300 }, + [28] = { 69.9, 79.4, 130, 300 }, + [29] = { 71.1, 78.4, 130, 300 }, + [30] = { 22, 56.5, 267, 300 }, + [31] = { 20.2, 53.6, 267, 300 }, + [32] = { 20, 52.2, 267, 300 }, + [33] = { 19, 49.8, 267, 300 }, + [34] = { 23.4, 48.2, 267, 300 }, + [35] = { 30.7, 48.1, 267, 300 }, + [36] = { 17.3, 44.8, 267, 300 }, + [37] = { 23.4, 43.9, 267, 300 }, + [38] = { 18.9, 43.6, 267, 300 }, + [39] = { 21.5, 42.8, 267, 300 }, + [40] = { 26.4, 41.8, 267, 300 }, + [41] = { 26.7, 41.6, 267, 300 }, + [42] = { 24.4, 40.1, 267, 300 }, + [43] = { 26.3, 38.2, 267, 300 }, + [44] = { 64.4, 37.8, 267, 300 }, + [45] = { 59.5, 36.6, 267, 300 }, + [46] = { 62, 36.3, 267, 300 }, + [47] = { 61.5, 36, 267, 300 }, + [48] = { 65.4, 35.9, 267, 300 }, + [49] = { 66.5, 34.2, 267, 300 }, + [50] = { 58.1, 34.1, 267, 300 }, + [51] = { 64.4, 34, 267, 300 }, + [52] = { 59.1, 32.7, 267, 300 }, + [53] = { 59.8, 30.9, 267, 300 }, + [54] = { 63.1, 30.1, 267, 300 }, + [55] = { 57, 29, 267, 300 }, + [56] = { 66.9, 28.9, 267, 300 }, + [57] = { 64.4, 28.7, 267, 300 }, + [58] = { 57.8, 28.3, 267, 300 }, + [59] = { 56.9, 28.1, 267, 300 }, + [60] = { 67.2, 26, 267, 300 }, + [61] = { 57.6, 23.6, 267, 300 }, + [62] = { 66.1, 23.1, 267, 300 }, + [63] = { 67, 23, 267, 300 }, + [64] = { 67.1, 19.5, 267, 300 }, + [65] = { 54.8, 15.9, 267, 300 }, + [66] = { 66.8, 15.7, 267, 300 }, + [67] = { 57.6, 15.1, 267, 300 }, + [68] = { 54.8, 13.4, 267, 300 }, + [69] = { 68.2, 12, 267, 300 }, + [70] = { 63.2, 11.5, 267, 300 }, + [71] = { 68.8, 9.5, 267, 300 }, + [72] = { 53, 8.6, 267, 300 }, + [73] = { 56.2, 8.6, 267, 300 }, + [74] = { 64.1, 8.6, 267, 300 }, + [75] = { 63.2, 6.4, 267, 300 }, + [76] = { 78.8, 18.2, 5179, 300 }, + [77] = { 77.3, 15.7, 5179, 300 }, + [78] = { 77.1, 14.5, 5179, 300 }, + [79] = { 76.2, 12.5, 5179, 300 }, + [80] = { 80, 11, 5179, 300 }, + [81] = { 86.4, 10.9, 5179, 300 }, + [82] = { 74.7, 8, 5179, 300 }, + [83] = { 80, 7.3, 5179, 300 }, + [84] = { 76.1, 7, 5179, 300 }, + [85] = { 78.4, 6.3, 5179, 300 }, + [86] = { 82.7, 5.5, 5179, 300 }, + [87] = { 82.9, 5.3, 5179, 300 }, + [88] = { 80.9, 3.9, 5179, 300 }, + [89] = { 82.6, 2.3, 5179, 300 }, + }, + ["lvl"] = "21-22", + }, + [2354] = { + ["coords"] = { + [1] = { 71.1, 98.8, 36, 300 }, + [2] = { 41.7, 98.8, 36, 300 }, + [3] = { 36.8, 98.3, 36, 300 }, + [4] = { 70.4, 97.2, 36, 300 }, + [5] = { 47, 97.2, 36, 300 }, + [6] = { 49.3, 96.8, 36, 300 }, + [7] = { 48.7, 95, 36, 300 }, + [8] = { 50.4, 94.2, 36, 300 }, + [9] = { 54.8, 52.5, 267, 300 }, + [10] = { 44.5, 50.7, 267, 300 }, + [11] = { 76.5, 49.1, 267, 300 }, + [12] = { 53.1, 47.9, 267, 300 }, + [13] = { 46.6, 47.2, 267, 300 }, + [14] = { 48.1, 47.2, 267, 300 }, + [15] = { 45.7, 46.8, 267, 300 }, + [16] = { 54.8, 46.4, 267, 300 }, + [17] = { 48.6, 46.2, 267, 300 }, + [18] = { 52.3, 46, 267, 300 }, + [19] = { 40.4, 44.8, 267, 300 }, + [20] = { 49.9, 44.7, 267, 300 }, + [21] = { 45.5, 43.6, 267, 300 }, + [22] = { 56.3, 43.2, 267, 300 }, + [23] = { 49.2, 43, 267, 300 }, + [24] = { 40.6, 42.6, 267, 300 }, + [25] = { 53.3, 42.5, 267, 300 }, + [26] = { 54.4, 42.2, 267, 300 }, + [27] = { 38.8, 41.8, 267, 300 }, + [28] = { 44.2, 41.4, 267, 300 }, + [29] = { 45.4, 40.3, 267, 300 }, + [30] = { 56.9, 40.3, 267, 300 }, + [31] = { 56.6, 39.6, 267, 300 }, + [32] = { 54.9, 39.5, 267, 300 }, + [33] = { 66.5, 39.5, 267, 300 }, + [34] = { 40.9, 39.5, 267, 300 }, + [35] = { 46.5, 38.8, 267, 300 }, + [36] = { 44.6, 38.6, 267, 300 }, + [37] = { 51.5, 37.8, 267, 300 }, + [38] = { 38.5, 37.7, 267, 300 }, + [39] = { 41.1, 37.2, 267, 300 }, + [40] = { 44.7, 37.1, 267, 300 }, + [41] = { 49.1, 37, 267, 300 }, + [42] = { 40.1, 36.8, 267, 300 }, + [43] = { 47.8, 36.4, 267, 300 }, + [44] = { 70.1, 35.5, 267, 300 }, + [45] = { 71.1, 34.9, 267, 300 }, + [46] = { 45.4, 34.9, 267, 300 }, + [47] = { 74, 34.5, 267, 300 }, + [48] = { 41, 34.5, 267, 300 }, + [49] = { 70.5, 33.5, 267, 300 }, + [50] = { 49.9, 33.5, 267, 300 }, + [51] = { 52, 33.2, 267, 300 }, + [52] = { 51.5, 31.5, 267, 300 }, + [53] = { 52.9, 30.9, 267, 300 }, + [54] = { 98.5, 13.2, 5179, 300 }, + [55] = { 99.5, 9.8, 5179, 300 }, + [56] = { 94.9, 8, 5179, 300 }, + [57] = { 99.4, 7, 5179, 300 }, + [58] = { 95.1, 6.1, 5179, 300 }, + [59] = { 93.5, 5.5, 5179, 300 }, + [60] = { 98.3, 5.1, 5179, 300 }, + [61] = { 99.2, 4.2, 5179, 300 }, + [62] = { 95.3, 3.4, 5179, 300 }, + [63] = { 98.5, 2.6, 5179, 300 }, + [64] = { 93.2, 1.9, 5179, 300 }, + [65] = { 95.5, 1.4, 5179, 300 }, + [66] = { 98.6, 1.3, 5179, 300 }, + [67] = { 94.6, 1, 5179, 300 }, + }, + ["lvl"] = "22-23", + }, + [2356] = { + ["coords"] = { + [1] = { 20.7, 98.1, 36, 300 }, + [2] = { 30.9, 97.3, 36, 300 }, + [3] = { 23.5, 95.8, 36, 300 }, + [4] = { 32.4, 94.2, 36, 300 }, + [5] = { 22.1, 94.2, 36, 300 }, + [6] = { 22.6, 92.8, 36, 300 }, + [7] = { 74.2, 92.7, 36, 300 }, + [8] = { 69.1, 92, 36, 300 }, + [9] = { 75.4, 90.3, 36, 300 }, + [10] = { 70.4, 88.4, 36, 300 }, + [11] = { 73.8, 84.8, 36, 300 }, + [12] = { 70.7, 84.5, 36, 300 }, + [13] = { 70.2, 84, 36, 300 }, + [14] = { 15.4, 83.2, 36, 300 }, + [15] = { 23.8, 82.8, 36, 300 }, + [16] = { 26.9, 81.9, 36, 300 }, + [17] = { 24.7, 81.1, 36, 300 }, + [18] = { 26.3, 78, 36, 300 }, + [19] = { 24.8, 77.1, 36, 300 }, + [20] = { 23.3, 76, 36, 300 }, + [21] = { 21.3, 75.7, 36, 300 }, + [22] = { 21.6, 73, 36, 300 }, + [23] = { 21.2, 69.1, 36, 300 }, + [24] = { 28.3, 69.1, 36, 300 }, + [25] = { 25, 64.7, 36, 300 }, + [26] = { 24.8, 59.4, 36, 300 }, + [27] = { 12.8, 37, 45, 300 }, + [28] = { 14.8, 36.9, 45, 300 }, + [29] = { 16.7, 30.1, 45, 300 }, + [30] = { 15.5, 26.8, 45, 300 }, + [31] = { 20.5, 25.8, 45, 300 }, + [32] = { 19, 24.4, 45, 300 }, + [33] = { 16.2, 24.3, 45, 300 }, + [34] = { 19.4, 24, 45, 300 }, + [35] = { 22.4, 20, 45, 300 }, + [36] = { 20.5, 19.4, 45, 300 }, + [37] = { 26.3, 16.2, 45, 300 }, + [38] = { 26, 15.7, 45, 300 }, + [39] = { 24.9, 14.7, 45, 300 }, + [40] = { 24.2, 14.2, 45, 300 }, + [41] = { 71.9, 66.9, 267, 300 }, + [42] = { 74.9, 66.7, 267, 300 }, + [43] = { 77.1, 66.5, 267, 300 }, + [44] = { 28.9, 66.1, 267, 300 }, + [45] = { 37.7, 65.7, 267, 300 }, + [46] = { 72.2, 65.6, 267, 300 }, + [47] = { 29.6, 65.6, 267, 300 }, + [48] = { 30.6, 65.2, 267, 300 }, + [49] = { 33.1, 64.5, 267, 300 }, + [50] = { 35, 64.4, 267, 300 }, + [51] = { 43, 63.5, 267, 300 }, + [52] = { 29.4, 62.9, 267, 300 }, + [53] = { 38.3, 62.8, 267, 300 }, + [54] = { 71, 62.4, 267, 300 }, + [55] = { 73, 61.9, 267, 300 }, + [56] = { 35.3, 61.6, 267, 300 }, + [57] = { 68.1, 61.4, 267, 300 }, + [58] = { 40.1, 61, 267, 300 }, + [59] = { 34.9, 60.2, 267, 300 }, + [60] = { 45.2, 60.1, 267, 300 }, + [61] = { 73.7, 59.9, 267, 300 }, + [62] = { 79.3, 58.8, 267, 300 }, + [63] = { 37.6, 58.4, 267, 300 }, + [64] = { 41.6, 58.3, 267, 300 }, + [65] = { 24.2, 57.7, 267, 300 }, + [66] = { 45, 57.6, 267, 300 }, + [67] = { 75.1, 57.5, 267, 300 }, + [68] = { 40.1, 57.1, 267, 300 }, + [69] = { 39.8, 56.7, 267, 300 }, + [70] = { 34.5, 56.6, 267, 300 }, + [71] = { 30.5, 56.5, 267, 300 }, + [72] = { 46.7, 56.4, 267, 300 }, + [73] = { 29.4, 55.4, 267, 300 }, + [74] = { 32.4, 55.3, 267, 300 }, + [75] = { 77.8, 55.1, 267, 300 }, + [76] = { 34.9, 54.3, 267, 300 }, + [77] = { 25.7, 54.2, 267, 300 }, + [78] = { 83.5, 54, 267, 300 }, + [79] = { 39, 53.2, 267, 300 }, + [80] = { 72.1, 52.7, 267, 300 }, + [81] = { 30.6, 52.6, 267, 300 }, + [82] = { 81.8, 52.4, 267, 300 }, + [83] = { 74.8, 52.4, 267, 300 }, + [84] = { 26.5, 52.4, 267, 300 }, + [85] = { 78.6, 52.3, 267, 300 }, + [86] = { 28.8, 52.3, 267, 300 }, + [87] = { 24.6, 52.1, 267, 300 }, + [88] = { 82.2, 52, 267, 300 }, + [89] = { 25.2, 51.3, 267, 300 }, + [90] = { 36.1, 50.9, 267, 300 }, + [91] = { 70.3, 50.7, 267, 300 }, + [92] = { 39, 50.6, 267, 300 }, + [93] = { 78.5, 50.5, 267, 300 }, + [94] = { 63.1, 50.3, 267, 300 }, + [95] = { 38.1, 49.4, 267, 300 }, + [96] = { 62.4, 48.9, 267, 300 }, + [97] = { 63.4, 48.3, 267, 300 }, + [98] = { 41.2, 47.7, 267, 300 }, + [99] = { 65.3, 47.6, 267, 300 }, + [100] = { 85.6, 47.6, 267, 300 }, + [101] = { 42.3, 47.5, 267, 300 }, + [102] = { 83.5, 46.8, 267, 300 }, + [103] = { 63, 46.1, 267, 300 }, + [104] = { 90, 43.2, 267, 300 }, + [105] = { 89.7, 42.7, 267, 300 }, + [106] = { 88.4, 41.5, 267, 300 }, + [107] = { 87.7, 40.9, 267, 300 }, + [108] = { 87.8, 39.8, 267, 300 }, + [109] = { 85.8, 39.1, 267, 300 }, + [110] = { 87, 37.9, 267, 300 }, + [111] = { 82.9, 36.6, 267, 300 }, + [112] = { 26.7, 36.3, 267, 300 }, + [113] = { 79.3, 36.1, 267, 300 }, + [114] = { 87.1, 35.9, 267, 300 }, + [115] = { 80.2, 35.7, 267, 300 }, + [116] = { 81.5, 35.6, 267, 300 }, + [117] = { 85, 35.2, 267, 300 }, + [118] = { 27, 34.3, 267, 300 }, + [119] = { 35.9, 33.5, 267, 300 }, + [120] = { 74.5, 33.5, 267, 300 }, + [121] = { 84.7, 33.3, 267, 300 }, + [122] = { 78.6, 32.9, 267, 300 }, + [123] = { 29.4, 32.2, 267, 300 }, + [124] = { 76.6, 31.8, 267, 300 }, + [125] = { 37.2, 30.8, 267, 300 }, + [126] = { 28.2, 30.8, 267, 300 }, + [127] = { 77.3, 30.7, 267, 300 }, + [128] = { 28.6, 29.6, 267, 300 }, + [129] = { 73.8, 29.5, 267, 300 }, + [130] = { 69.4, 29, 267, 300 }, + [131] = { 74.8, 27.5, 267, 300 }, + [132] = { 70.5, 25.7, 267, 300 }, + [133] = { 73.4, 22.6, 267, 300 }, + [134] = { 70.7, 22.4, 267, 300 }, + [135] = { 70.3, 22, 267, 300 }, + [136] = { 22.4, 21.3, 267, 300 }, + [137] = { 29.6, 20.9, 267, 300 }, + [138] = { 32.4, 20.1, 267, 300 }, + [139] = { 30.5, 19.4, 267, 300 }, + [140] = { 31.9, 16.7, 267, 300 }, + [141] = { 30.6, 15.9, 267, 300 }, + [142] = { 29.3, 14.9, 267, 300 }, + [143] = { 27.5, 14.7, 267, 300 }, + [144] = { 84.8, 26.7, 5179, 300 }, + [145] = { 92.6, 26.3, 5179, 300 }, + [146] = { 85.4, 26.2, 5179, 300 }, + [147] = { 86.3, 25.9, 5179, 300 }, + [148] = { 88.5, 25.2, 5179, 300 }, + [149] = { 90.2, 25.2, 5179, 300 }, + [150] = { 97.2, 24.4, 5179, 300 }, + [151] = { 85.3, 23.9, 5179, 300 }, + [152] = { 93, 23.8, 5179, 300 }, + [153] = { 90.4, 22.7, 5179, 300 }, + [154] = { 94.7, 22.2, 5179, 300 }, + [155] = { 90.1, 21.5, 5179, 300 }, + [156] = { 99.1, 21.4, 5179, 300 }, + [157] = { 92.5, 19.9, 5179, 300 }, + [158] = { 95.9, 19.9, 5179, 300 }, + [159] = { 80.8, 19.3, 5179, 300 }, + [160] = { 98.9, 19.3, 5179, 300 }, + [161] = { 94.6, 18.8, 5179, 300 }, + [162] = { 94.4, 18.4, 5179, 300 }, + [163] = { 89.7, 18.4, 5179, 300 }, + [164] = { 86.2, 18.3, 5179, 300 }, + [165] = { 85.3, 17.3, 5179, 300 }, + [166] = { 87.9, 17.3, 5179, 300 }, + [167] = { 90.1, 16.4, 5179, 300 }, + [168] = { 82.1, 16.2, 5179, 300 }, + [169] = { 93.7, 15.4, 5179, 300 }, + [170] = { 86.4, 14.9, 5179, 300 }, + [171] = { 82.8, 14.7, 5179, 300 }, + [172] = { 84.8, 14.6, 5179, 300 }, + [173] = { 81.1, 14.5, 5179, 300 }, + [174] = { 81.6, 13.8, 5179, 300 }, + [175] = { 91.2, 13.4, 5179, 300 }, + [176] = { 93.6, 13.2, 5179, 300 }, + [177] = { 92.9, 12.1, 5179, 300 }, + [178] = { 95.6, 10.6, 5179, 300 }, + [179] = { 96.6, 10.4, 5179, 300 }, + [180] = { 82.9, 0.6, 5179, 300 }, + }, + ["lvl"] = "25-26", + }, + [2357] = { + ["coords"] = { + [1] = { 52.2, 55.5, 267, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "32", + }, + [2358] = { + ["coords"] = { + [1] = { 11, 78.7, 36, 300 }, + [2] = { 15, 78.6, 36, 300 }, + [3] = { 18.8, 77.1, 36, 300 }, + [4] = { 15.1, 76.4, 36, 300 }, + [5] = { 12.9, 76.3, 36, 300 }, + [6] = { 17.9, 76.2, 36, 300 }, + [7] = { 11.5, 75.9, 36, 300 }, + [8] = { 15.9, 75.5, 36, 300 }, + [9] = { 19.7, 75.4, 36, 300 }, + [10] = { 18.9, 74.9, 36, 300 }, + [11] = { 18.4, 74.1, 36, 300 }, + [12] = { 21.3, 63.8, 36, 300 }, + [13] = { 21.7, 61.2, 36, 300 }, + [14] = { 22.4, 60.4, 36, 300 }, + [15] = { 20.2, 59.3, 36, 300 }, + [16] = { 22, 57.9, 36, 300 }, + [17] = { 19.6, 57.8, 36, 300 }, + [18] = { 21.4, 56.4, 36, 300 }, + [19] = { 19.4, 55, 36, 300 }, + [20] = { 20.7, 54.3, 36, 300 }, + [21] = { 70.8, 58.4, 130, 300 }, + [22] = { 71.2, 56.5, 130, 300 }, + [23] = { 18.4, 17.3, 267, 300 }, + [24] = { 22, 17.2, 267, 300 }, + [25] = { 25.3, 15.9, 267, 300 }, + [26] = { 22.1, 15.3, 267, 300 }, + [27] = { 20.1, 15.2, 267, 300 }, + [28] = { 24.5, 15.1, 267, 300 }, + [29] = { 18.9, 14.8, 267, 300 }, + [30] = { 22.8, 14.5, 267, 300 }, + [31] = { 26.1, 14.4, 267, 300 }, + [32] = { 25.4, 14, 267, 300 }, + [33] = { 24.9, 13.3, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "34-35", + }, + [2359] = { + ["coords"] = { + [1] = { 10.8, 80.6, 36, 275 }, + [2] = { 16.2, 78.5, 36, 300 }, + [3] = { 10.1, 78.2, 36, 300 }, + [4] = { 15.1, 77.2, 36, 300 }, + [5] = { 12.4, 77, 36, 300 }, + [6] = { 19, 77, 36, 300 }, + [7] = { 19.9, 76.2, 36, 300 }, + [8] = { 16.8, 76.1, 36, 300 }, + [9] = { 11.8, 74.5, 36, 300 }, + [10] = { 19.3, 73.5, 36, 300 }, + [11] = { 21.8, 64.3, 36, 300 }, + [12] = { 21.6, 61.9, 36, 300 }, + [13] = { 20.8, 60.5, 36, 300 }, + [14] = { 23.1, 60.4, 36, 300 }, + [15] = { 22.9, 59.5, 36, 300 }, + [16] = { 22.4, 58.6, 36, 300 }, + [17] = { 19, 57.7, 36, 300 }, + [18] = { 20, 56.5, 36, 300 }, + [19] = { 20.3, 56.5, 36, 300 }, + [20] = { 18.4, 55.9, 36, 300 }, + [21] = { 21.9, 55.8, 36, 300 }, + [22] = { 19.9, 54, 36, 300 }, + [23] = { 70.7, 59.7, 130, 275 }, + [24] = { 70.2, 58.1, 130, 300 }, + [25] = { 71.4, 55.6, 130, 300 }, + [26] = { 18.3, 18.9, 267, 275 }, + [27] = { 23, 17.1, 267, 300 }, + [28] = { 17.7, 16.9, 267, 300 }, + [29] = { 22.1, 16, 267, 300 }, + [30] = { 19.7, 15.8, 267, 300 }, + [31] = { 25.5, 15.8, 267, 300 }, + [32] = { 26.3, 15.1, 267, 300 }, + [33] = { 23.5, 15.1, 267, 300 }, + [34] = { 19.2, 13.6, 267, 300 }, + [35] = { 25.7, 12.8, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "33-34", + }, + [2360] = { + ["coords"] = { + [1] = { 26.3, 99.1, 36, 300 }, + [2] = { 33.8, 41.6, 267, 300 }, + [3] = { 36.8, 41.3, 267, 300 }, + [4] = { 35.2, 41.3, 267, 300 }, + [5] = { 34.4, 41.3, 267, 300 }, + [6] = { 33.8, 41, 267, 300 }, + [7] = { 35.9, 40.9, 267, 300 }, + [8] = { 34.8, 40.6, 267, 300 }, + [9] = { 33.8, 40.1, 267, 300 }, + [10] = { 35.1, 40.1, 267, 300 }, + [11] = { 35.6, 39.7, 267, 300 }, + [12] = { 36.8, 39.6, 267, 300 }, + [13] = { 31.4, 39.6, 267, 300 }, + [14] = { 35.3, 38.3, 267, 300 }, + [15] = { 31.7, 38.1, 267, 300 }, + [16] = { 30.2, 38.1, 267, 300 }, + [17] = { 35.2, 37.7, 267, 300 }, + [18] = { 30.5, 37.7, 267, 300 }, + [19] = { 29.9, 37.3, 267, 300 }, + [20] = { 30.4, 36.9, 267, 300 }, + [21] = { 30.8, 36.5, 267, 300 }, + [22] = { 32.2, 36.2, 267, 300 }, + [23] = { 33.4, 35.6, 267, 300 }, + [24] = { 31.8, 35.1, 267, 300 }, + [25] = { 89.1, 5.2, 5179, 300 }, + [26] = { 91.7, 5, 5179, 300 }, + [27] = { 90.4, 5, 5179, 300 }, + [28] = { 89.6, 5, 5179, 300 }, + [29] = { 89.2, 4.7, 5179, 300 }, + [30] = { 90.9, 4.6, 5179, 300 }, + [31] = { 90, 4.4, 5179, 300 }, + [32] = { 89.2, 3.9, 5179, 300 }, + [33] = { 90.2, 3.9, 5179, 300 }, + [34] = { 90.7, 3.6, 5179, 300 }, + [35] = { 91.8, 3.5, 5179, 300 }, + [36] = { 87, 3.5, 5179, 300 }, + [37] = { 90.4, 2.4, 5179, 300 }, + [38] = { 87.3, 2.2, 5179, 300 }, + [39] = { 86, 2.2, 5179, 300 }, + [40] = { 90.3, 1.9, 5179, 300 }, + [41] = { 86.2, 1.8, 5179, 300 }, + [42] = { 85.7, 1.5, 5179, 300 }, + [43] = { 86.2, 1.2, 5179, 300 }, + [44] = { 86.5, 0.8, 5179, 300 }, + [45] = { 87.8, 0.5, 5179, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "22-23", + }, + [2364] = { + ["coords"] = { + [1] = { 36, 61.9, 11, 120 }, + [2] = { 51.1, 59.2, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "33", + }, + [2367] = { + ["coords"] = { + [1] = { 50.6, 61.5, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "31", + }, + [2368] = { + ["coords"] = { + [1] = { 6, 55.2, 45, 300 }, + [2] = { 5.9, 54.7, 45, 300 }, + [3] = { 5.4, 54.5, 45, 300 }, + [4] = { 67.2, 87.1, 267, 300 }, + [5] = { 67, 86.6, 267, 300 }, + [6] = { 66.5, 86.4, 267, 300 }, + [7] = { 66.1, 85.3, 267, 300 }, + [8] = { 65.9, 83.6, 267, 300 }, + [9] = { 66.4, 83.3, 267, 300 }, + [10] = { 66, 82.2, 267, 300 }, + [11] = { 64, 82.1, 267, 300 }, + [12] = { 65, 80.3, 267, 300 }, + [13] = { 66.9, 80.1, 267, 300 }, + [14] = { 66.3, 79.6, 267, 300 }, + [15] = { 61.7, 78.6, 267, 300 }, + [16] = { 64, 78.5, 267, 300 }, + [17] = { 61, 77.5, 267, 300 }, + [18] = { 64.4, 77.5, 267, 300 }, + [19] = { 61.5, 76.4, 267, 300 }, + [20] = { 61.9, 76.2, 267, 300 }, + [21] = { 60.1, 75.7, 267, 300 }, + }, + ["lvl"] = "28-29", + }, + [2369] = { + ["coords"] = { + [1] = { 58.9, 77.6, 267, 300 }, + [2] = { 57.8, 75.9, 267, 300 }, + [3] = { 60.6, 74.7, 267, 300 }, + [4] = { 58.7, 74, 267, 300 }, + [5] = { 58.3, 72.6, 267, 300 }, + [6] = { 55.9, 72.3, 267, 300 }, + [7] = { 59.8, 72, 267, 300 }, + [8] = { 58.2, 70, 267, 300 }, + [9] = { 57.8, 69.1, 267, 300 }, + [10] = { 54.7, 68.4, 267, 300 }, + [11] = { 53.7, 66.8, 267, 300 }, + [12] = { 55.9, 66.6, 267, 300 }, + [13] = { 57.7, 66.3, 267, 300 }, + [14] = { 51.7, 66.1, 267, 300 }, + [15] = { 52.7, 65.5, 267, 300 }, + [16] = { 54.5, 64.4, 267, 300 }, + [17] = { 53.7, 63.5, 267, 300 }, + }, + ["lvl"] = "30-31", + }, + [2371] = { + ["coords"] = { + [1] = { 61.7, 81.8, 267, 300 }, + [2] = { 57, 77.3, 267, 300 }, + [3] = { 56.9, 73.8, 267, 300 }, + [4] = { 60.1, 73.3, 267, 300 }, + [5] = { 59, 71.5, 267, 300 }, + [6] = { 56.9, 71.1, 267, 300 }, + [7] = { 58.9, 70.2, 267, 300 }, + [8] = { 56, 69.9, 267, 300 }, + [9] = { 58.4, 68.6, 267, 300 }, + [10] = { 57.2, 68.3, 267, 300 }, + [11] = { 58.6, 66.5, 267, 300 }, + [12] = { 56.5, 66.2, 267, 300 }, + [13] = { 58.7, 66, 267, 300 }, + [14] = { 57.9, 65, 267, 300 }, + [15] = { 56.3, 65, 267, 300 }, + [16] = { 53.2, 64.2, 267, 300 }, + [17] = { 55.3, 63.8, 267, 300 }, + [18] = { 54.4, 62, 267, 300 }, + [19] = { 55.2, 61.4, 267, 300 }, + }, + ["lvl"] = "31-32", + }, + [2373] = { + ["coords"] = { + [1] = { 63, 63.7, 267, 300 }, + [2] = { 62.6, 63.6, 267, 300 }, + [3] = { 62.9, 62.2, 267, 300 }, + [4] = { 64.1, 61.9, 267, 300 }, + [5] = { 63.2, 61.6, 267, 300 }, + [6] = { 66.3, 61.1, 267, 300 }, + [7] = { 65.4, 60.4, 267, 300 }, + [8] = { 63.7, 59.2, 267, 300 }, + }, + ["lvl"] = "27-28", + }, + [2374] = { + ["coords"] = { + [1] = { 25.6, 76.4, 267, 300 }, + [2] = { 26.5, 74.1, 267, 300 }, + [3] = { 30.1, 73.9, 267, 300 }, + [4] = { 29.8, 73.6, 267, 300 }, + [5] = { 32.5, 72.8, 267, 300 }, + [6] = { 33.9, 72.8, 267, 300 }, + [7] = { 25.3, 72.8, 267, 300 }, + [8] = { 23.4, 72.7, 267, 300 }, + [9] = { 33, 72.5, 267, 300 }, + [10] = { 27.9, 72.5, 267, 300 }, + [11] = { 32.1, 72.4, 267, 300 }, + [12] = { 26.1, 71.7, 267, 300 }, + [13] = { 25.3, 71.2, 267, 300 }, + [14] = { 25.1, 70.5, 267, 300 }, + [15] = { 33.1, 70, 267, 300 }, + [16] = { 21.2, 66.7, 267, 300 }, + [17] = { 24.6, 66.2, 267, 300 }, + [18] = { 24.5, 64.9, 267, 300 }, + [19] = { 23.5, 64.8, 267, 300 }, + [20] = { 20.4, 64.6, 267, 300 }, + [21] = { 23.2, 64.2, 267, 300 }, + [22] = { 82, 35.7, 5179, 300 }, + [23] = { 82.8, 33.7, 5179, 300 }, + [24] = { 85.9, 33.5, 5179, 300 }, + [25] = { 85.6, 33.2, 5179, 300 }, + [26] = { 88, 32.5, 5179, 300 }, + [27] = { 89.2, 32.5, 5179, 300 }, + [28] = { 81.7, 32.5, 5179, 300 }, + [29] = { 80.1, 32.4, 5179, 300 }, + [30] = { 88.4, 32.3, 5179, 300 }, + [31] = { 84, 32.2, 5179, 300 }, + [32] = { 87.7, 32.2, 5179, 300 }, + [33] = { 82.4, 31.5, 5179, 300 }, + [34] = { 81.8, 31.1, 5179, 300 }, + [35] = { 81.5, 30.5, 5179, 300 }, + [36] = { 88.5, 30.1, 5179, 300 }, + [37] = { 78.2, 27.2, 5179, 300 }, + [38] = { 81.1, 26.7, 5179, 300 }, + [39] = { 81.1, 25.7, 5179, 300 }, + [40] = { 80.1, 25.5, 5179, 300 }, + [41] = { 77.5, 25.4, 5179, 300 }, + [42] = { 79.9, 25, 5179, 300 }, + }, + ["lvl"] = "28-29", + }, + [2375] = { + ["coords"] = { + [1] = { 31.9, 76.3, 267, 300 }, + [2] = { 29.8, 76, 267, 300 }, + [3] = { 26.9, 75.9, 267, 300 }, + [4] = { 24, 74.6, 267, 300 }, + [5] = { 32.7, 74.4, 267, 300 }, + [6] = { 30.9, 74.2, 267, 300 }, + [7] = { 28.5, 74.2, 267, 300 }, + [8] = { 35, 74, 267, 300 }, + [9] = { 30.3, 73.3, 267, 300 }, + [10] = { 31.7, 72.9, 267, 300 }, + [11] = { 28, 72.9, 267, 300 }, + [12] = { 29.8, 72.8, 267, 300 }, + [13] = { 27.6, 72.4, 267, 300 }, + [14] = { 32.7, 72.3, 267, 300 }, + [15] = { 27, 71.8, 267, 300 }, + [16] = { 32.9, 71.4, 267, 300 }, + [17] = { 24.4, 70.9, 267, 300 }, + [18] = { 22.4, 70.8, 267, 300 }, + [19] = { 34.6, 70.7, 267, 300 }, + [20] = { 25.6, 70.7, 267, 300 }, + [21] = { 24.6, 70.4, 267, 300 }, + [22] = { 33.3, 69.7, 267, 300 }, + [23] = { 33.9, 69.6, 267, 300 }, + [24] = { 25.1, 69.5, 267, 300 }, + [25] = { 24.2, 69.4, 267, 300 }, + [26] = { 22.1, 68.5, 267, 300 }, + [27] = { 24.8, 67.2, 267, 300 }, + [28] = { 23.7, 66.3, 267, 300 }, + [29] = { 24.4, 64.8, 267, 300 }, + [30] = { 23.1, 64.4, 267, 300 }, + [31] = { 22.1, 64, 267, 300 }, + [32] = { 87.5, 35.6, 5179, 300 }, + [33] = { 85.7, 35.3, 5179, 300 }, + [34] = { 83.1, 35.2, 5179, 300 }, + [35] = { 80.6, 34, 5179, 300 }, + [36] = { 88.2, 33.9, 5179, 300 }, + [37] = { 86.6, 33.8, 5179, 300 }, + [38] = { 84.5, 33.7, 5179, 300 }, + [39] = { 90.2, 33.6, 5179, 300 }, + [40] = { 86.1, 33, 5179, 300 }, + [41] = { 87.3, 32.6, 5179, 300 }, + [42] = { 84.1, 32.6, 5179, 300 }, + [43] = { 85.7, 32.5, 5179, 300 }, + [44] = { 83.7, 32.2, 5179, 300 }, + [45] = { 88.2, 32.1, 5179, 300 }, + [46] = { 83.2, 31.6, 5179, 300 }, + [47] = { 88.4, 31.3, 5179, 300 }, + [48] = { 80.9, 30.8, 5179, 300 }, + [49] = { 79.2, 30.8, 5179, 300 }, + [50] = { 89.8, 30.7, 5179, 300 }, + [51] = { 82, 30.7, 5179, 300 }, + [52] = { 81.1, 30.4, 5179, 300 }, + [53] = { 88.7, 29.8, 5179, 300 }, + [54] = { 89.2, 29.7, 5179, 300 }, + [55] = { 81.6, 29.6, 5179, 300 }, + [56] = { 80.8, 29.6, 5179, 300 }, + [57] = { 78.9, 28.7, 5179, 300 }, + [58] = { 81.3, 27.7, 5179, 300 }, + [59] = { 80.4, 26.9, 5179, 300 }, + [60] = { 81, 25.5, 5179, 300 }, + [61] = { 79.8, 25.1, 5179, 300 }, + [62] = { 78.9, 24.8, 5179, 300 }, + }, + ["lvl"] = "29-30", + }, + [2376] = { + ["coords"] = { + [1] = { 38, 72.8, 267, 300 }, + [2] = { 40.4, 71.2, 267, 300 }, + [3] = { 44.2, 71.1, 267, 300 }, + [4] = { 36.5, 69.4, 267, 300 }, + [5] = { 40.7, 69.2, 267, 300 }, + [6] = { 42.7, 69.2, 267, 300 }, + [7] = { 37.2, 69.1, 267, 300 }, + [8] = { 46.1, 69.1, 267, 300 }, + [9] = { 40.9, 68.8, 267, 300 }, + [10] = { 36.1, 68.7, 267, 300 }, + [11] = { 43.9, 68.7, 267, 300 }, + [12] = { 47.2, 68.3, 267, 300 }, + [13] = { 44.3, 67.9, 267, 300 }, + [14] = { 45.1, 67.4, 267, 300 }, + [15] = { 46, 66.8, 267, 300 }, + [16] = { 44.4, 66.5, 267, 300 }, + [17] = { 35.7, 66.4, 267, 300 }, + [18] = { 48.3, 66.4, 267, 300 }, + [19] = { 37.4, 66.2, 267, 300 }, + [20] = { 46.2, 63, 267, 300 }, + [21] = { 92.8, 32.5, 5179, 300 }, + [22] = { 94.9, 31.1, 5179, 300 }, + [23] = { 98.2, 31, 5179, 300 }, + [24] = { 91.5, 29.6, 5179, 300 }, + [25] = { 95.2, 29.4, 5179, 300 }, + [26] = { 96.9, 29.4, 5179, 300 }, + [27] = { 92.1, 29.3, 5179, 300 }, + [28] = { 99.9, 29.3, 5179, 300 }, + [29] = { 95.3, 29, 5179, 300 }, + [30] = { 91.1, 29, 5179, 300 }, + [31] = { 98, 28.9, 5179, 300 }, + [32] = { 98.3, 28.2, 5179, 300 }, + [33] = { 99, 27.8, 5179, 300 }, + [34] = { 99.8, 27.2, 5179, 300 }, + [35] = { 98.4, 27, 5179, 300 }, + [36] = { 90.8, 26.9, 5179, 300 }, + [37] = { 92.3, 26.7, 5179, 300 }, + }, + ["lvl"] = "30-31", + }, + [2377] = { + ["coords"] = { + [1] = { 40, 72.8, 267, 300 }, + [2] = { 42.5, 72.6, 267, 300 }, + [3] = { 38.6, 71.1, 267, 300 }, + [4] = { 42.7, 70.7, 267, 300 }, + [5] = { 37.3, 70.3, 267, 300 }, + [6] = { 36.2, 70.2, 267, 300 }, + [7] = { 40.7, 69.9, 267, 300 }, + [8] = { 36.4, 69.6, 267, 300 }, + [9] = { 41, 69.5, 267, 300 }, + [10] = { 40.3, 68.8, 267, 300 }, + [11] = { 45, 68.6, 267, 300 }, + [12] = { 43.4, 68.2, 267, 300 }, + [13] = { 41.1, 67.9, 267, 300 }, + [14] = { 43.9, 67.2, 267, 300 }, + [15] = { 44.6, 67, 267, 300 }, + [16] = { 46.4, 66.5, 267, 300 }, + [17] = { 47.4, 64.7, 267, 300 }, + [18] = { 46, 64, 267, 300 }, + [19] = { 94.5, 32.5, 5179, 300 }, + [20] = { 96.7, 32.4, 5179, 300 }, + [21] = { 93.3, 31.1, 5179, 300 }, + [22] = { 96.9, 30.7, 5179, 300 }, + [23] = { 92.2, 30.3, 5179, 300 }, + [24] = { 91.2, 30.3, 5179, 300 }, + [25] = { 95.1, 29.9, 5179, 300 }, + [26] = { 91.4, 29.7, 5179, 300 }, + [27] = { 95.4, 29.6, 5179, 300 }, + [28] = { 94.8, 29, 5179, 300 }, + [29] = { 98.9, 28.8, 5179, 300 }, + [30] = { 97.5, 28.5, 5179, 300 }, + [31] = { 95.5, 28.3, 5179, 300 }, + [32] = { 98, 27.6, 5179, 300 }, + [33] = { 98.6, 27.4, 5179, 300 }, + [34] = { 99.8, 24.8, 5179, 300 }, + }, + ["lvl"] = "31-32", + }, + [2382] = { + ["coords"] = { + [1] = { 52.4, 56, 267, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2383] = { + ["coords"] = { + [1] = { 50.5, 61.5, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "29", + }, + [2384] = { + ["coords"] = { + [1] = { 39, 99.4, 36, 300 }, + [2] = { 35.1, 98.8, 36, 300 }, + [3] = { 45.5, 98.3, 36, 300 }, + [4] = { 50.3, 95.7, 36, 300 }, + [5] = { 52.2, 95.7, 36, 300 }, + [6] = { 50.1, 95.3, 36, 300 }, + [7] = { 47.3, 95.2, 36, 300 }, + [8] = { 52.4, 94.6, 36, 300 }, + [9] = { 46.7, 94.2, 36, 300 }, + [10] = { 52.2, 92.1, 36, 300 }, + [11] = { 52.7, 89, 36, 300 }, + [12] = { 44.3, 88.7, 36, 300 }, + [13] = { 53.8, 88.4, 36, 300 }, + [14] = { 56, 50.4, 267, 300 }, + [15] = { 52.9, 48.9, 267, 300 }, + [16] = { 44.5, 48.8, 267, 300 }, + [17] = { 38.1, 46.6, 267, 300 }, + [18] = { 44.6, 45.8, 267, 300 }, + [19] = { 39, 45.6, 267, 300 }, + [20] = { 51.9, 44.7, 267, 300 }, + [21] = { 38, 44.5, 267, 300 }, + [22] = { 55.6, 44.4, 267, 300 }, + [23] = { 53.9, 44.3, 267, 300 }, + [24] = { 54.3, 42.9, 267, 300 }, + [25] = { 55.7, 42.1, 267, 300 }, + [26] = { 51.6, 41.7, 267, 300 }, + [27] = { 57.8, 41.6, 267, 300 }, + [28] = { 50, 41.2, 267, 300 }, + [29] = { 39.8, 40.6, 267, 300 }, + [30] = { 58.9, 40.4, 267, 300 }, + [31] = { 42.5, 40.4, 267, 300 }, + [32] = { 53.5, 39.9, 267, 300 }, + [33] = { 54.3, 39.7, 267, 300 }, + [34] = { 53.4, 39.3, 267, 300 }, + [35] = { 39, 38.2, 267, 300 }, + [36] = { 39.3, 37.8, 267, 300 }, + [37] = { 53.3, 36.7, 267, 300 }, + [38] = { 53.6, 36.4, 267, 300 }, + [39] = { 37.8, 36.2, 267, 300 }, + [40] = { 53.4, 36.1, 267, 300 }, + [41] = { 52.4, 35.9, 267, 300 }, + [42] = { 51, 35.5, 267, 300 }, + [43] = { 42.9, 35.4, 267, 300 }, + [44] = { 39.6, 34.9, 267, 300 }, + [45] = { 48.6, 34.5, 267, 300 }, + [46] = { 52.8, 32.2, 267, 300 }, + [47] = { 54.5, 32.2, 267, 300 }, + [48] = { 52.6, 31.9, 267, 300 }, + [49] = { 50.2, 31.8, 267, 300 }, + [50] = { 54.7, 31.2, 267, 300 }, + [51] = { 49.7, 30.9, 267, 300 }, + [52] = { 54.6, 29, 267, 300 }, + [53] = { 55, 26.3, 267, 300 }, + [54] = { 47.6, 26.1, 267, 300 }, + [55] = { 56, 25.7, 267, 300 }, + [56] = { 98.5, 11.6, 5179, 300 }, + [57] = { 92.9, 9.7, 5179, 300 }, + [58] = { 98.6, 9, 5179, 300 }, + [59] = { 93.7, 8.8, 5179, 300 }, + [60] = { 92.8, 7.8, 5179, 300 }, + [61] = { 94.3, 4.3, 5179, 300 }, + [62] = { 96.8, 4.2, 5179, 300 }, + [63] = { 93.7, 2.3, 5179, 300 }, + [64] = { 93.9, 2, 5179, 300 }, + [65] = { 92.6, 0.5, 5179, 300 }, + }, + ["lvl"] = "23-24", + }, + [2385] = { + ["coords"] = { + [1] = { 6.7, 49.7, 45, 300 }, + [2] = { 68, 80.9, 267, 300 }, + [3] = { 66.3, 75.3, 267, 300 }, + [4] = { 66.3, 74.1, 267, 300 }, + [5] = { 65.1, 73, 267, 300 }, + [6] = { 62.6, 71.4, 267, 300 }, + [7] = { 64.9, 69.3, 267, 300 }, + [8] = { 61.8, 69, 267, 300 }, + [9] = { 70.4, 68, 267, 300 }, + [10] = { 63.6, 68, 267, 300 }, + [11] = { 61.1, 66.9, 267, 300 }, + [12] = { 65, 66.4, 267, 300 }, + [13] = { 56.7, 60.1, 267, 300 }, + [14] = { 57.7, 59.3, 267, 300 }, + [15] = { 60.2, 58.5, 267, 300 }, + [16] = { 59, 56.5, 267, 300 }, + [17] = { 58.5, 55.6, 267, 300 }, + [18] = { 61, 50.9, 267, 300 }, + [19] = { 57.6, 50, 267, 300 }, + }, + ["lvl"] = "27-28", + }, + [2386] = { + ["coords"] = { + [1] = { 39.4, 81.4, 36, 300 }, + [2] = { 40.5, 79.6, 36, 300 }, + [3] = { 49.5, 69.7, 267, 300 }, + [4] = { 49.9, 69.7, 267, 300 }, + [5] = { 49.5, 65.3, 267, 300 }, + [6] = { 49.5, 62.2, 267, 300 }, + [7] = { 51.5, 60.4, 267, 300 }, + [8] = { 47.5, 60.2, 267, 300 }, + [9] = { 50.9, 59.9, 267, 300 }, + [10] = { 48.7, 59.8, 267, 300 }, + [11] = { 49.4, 59.5, 267, 300 }, + [12] = { 50.1, 58.3, 267, 300 }, + [13] = { 53.2, 58.2, 267, 300 }, + [14] = { 49, 58.1, 267, 300 }, + [15] = { 54.8, 58, 267, 300 }, + [16] = { 51.9, 57.4, 267, 300 }, + [17] = { 47.5, 56.6, 267, 300 }, + [18] = { 48.4, 56.3, 267, 300 }, + [19] = { 52.1, 56.2, 267, 300 }, + [20] = { 49.3, 56.1, 267, 300 }, + [21] = { 49.8, 56.1, 267, 300 }, + [22] = { 52.7, 56, 267, 300 }, + [23] = { 51.6, 55.4, 267, 300 }, + [24] = { 49.9, 55, 267, 300 }, + [25] = { 48.6, 52.8, 267, 300 }, + [26] = { 49.8, 52.5, 267, 300 }, + [27] = { 46.8, 52.2, 267, 300 }, + [28] = { 46.8, 51.5, 267, 300 }, + [29] = { 52.3, 51.2, 267, 300 }, + [30] = { 50.4, 51, 267, 300 }, + [31] = { 46.5, 50.7, 267, 300 }, + [32] = { 46.6, 50.5, 267, 300 }, + [33] = { 51.9, 50.5, 267, 300 }, + [34] = { 46.2, 49.9, 267, 300 }, + [35] = { 49.6, 49, 267, 300 }, + [36] = { 43.3, 19.7, 267, 300 }, + [37] = { 44.3, 18.1, 267, 300 }, + [38] = { 100, 12.5, 5179, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [2387] = { + ["coords"] = { + [1] = { 32.4, 46.4, 267, 300 }, + [2] = { 30.2, 43.6, 267, 300 }, + [3] = { 29.5, 43.1, 267, 300 }, + [4] = { 30.1, 42.9, 267, 300 }, + [5] = { 32.1, 42.4, 267, 300 }, + [6] = { 30.2, 42.2, 267, 300 }, + [7] = { 30.1, 41.1, 267, 300 }, + [8] = { 29.3, 40.9, 267, 300 }, + [9] = { 29.6, 39.7, 267, 300 }, + [10] = { 87.9, 9.5, 5179, 300 }, + [11] = { 86, 7, 5179, 300 }, + [12] = { 85.4, 6.6, 5179, 300 }, + [13] = { 85.9, 6.4, 5179, 300 }, + [14] = { 87.6, 6, 5179, 300 }, + [15] = { 86, 5.8, 5179, 300 }, + [16] = { 86, 4.8, 5179, 300 }, + [17] = { 85.2, 4.6, 5179, 300 }, + [18] = { 85.5, 3.6, 5179, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25-26", + }, + [2389] = { + ["coords"] = { + [1] = { 58.6, 80.2, 36, 120 }, + [2] = { 60.1, 18.6, 267, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [2391] = { + ["coords"] = { + [1] = { 60.3, 80.9, 36, 30 }, + [2] = { 61.6, 19.2, 267, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "32", + }, + [2393] = { + ["coords"] = { + [1] = { 61.1, 80.7, 36, 30 }, + [2] = { 62.3, 19, 267, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "32", + }, + [2403] = { + ["coords"] = { + [1] = { 36.7, 39.4, 267, 300 }, + [2] = { 91.7, 3.4, 5179, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "24", + }, + [2404] = { + ["coords"] = { + [1] = { 32.1, 44.4, 267, 300 }, + [2] = { 87.7, 7.7, 5179, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "26", + }, + [2405] = { + ["coords"] = { + [1] = { 60.4, 90.5, 36, 300 }, + [2] = { 60.2, 90.1, 36, 300 }, + [3] = { 61, 88.9, 36, 300 }, + [4] = { 58.9, 88.7, 36, 300 }, + [5] = { 57.9, 86.7, 36, 300 }, + [6] = { 60.8, 84.9, 36, 300 }, + [7] = { 63.1, 84.5, 36, 300 }, + [8] = { 61.7, 84.4, 36, 300 }, + [9] = { 56.6, 83.9, 36, 300 }, + [10] = { 60.9, 83.7, 36, 300 }, + [11] = { 62.5, 83.7, 36, 300 }, + [12] = { 59.8, 83.7, 36, 300 }, + [13] = { 60.5, 82.7, 36, 300 }, + [14] = { 64.6, 82.5, 36, 300 }, + [15] = { 60, 82.1, 36, 300 }, + [16] = { 54.9, 81.6, 36, 300 }, + [17] = { 60, 81.5, 36, 300 }, + [18] = { 54.6, 81.4, 36, 300 }, + [19] = { 57.2, 81.1, 36, 300 }, + [20] = { 61.6, 81, 36, 300 }, + [21] = { 61.4, 80.8, 36, 300 }, + [22] = { 58.3, 80.5, 36, 300 }, + [23] = { 60.9, 80.3, 36, 300 }, + [24] = { 58.2, 80.1, 36, 300 }, + [25] = { 64.8, 79.9, 36, 300 }, + [26] = { 60, 79.4, 36, 300 }, + [27] = { 59.4, 79.2, 36, 300 }, + [28] = { 63, 78.9, 36, 300 }, + [29] = { 63.8, 61, 36, 300 }, + [30] = { 63.7, 60.7, 36, 300 }, + [31] = { 62.5, 58.9, 36, 300 }, + [32] = { 61.9, 58.8, 36, 300 }, + [33] = { 61.7, 27.6, 267, 300 }, + [34] = { 61.5, 27.3, 267, 300 }, + [35] = { 62.3, 26.2, 267, 300 }, + [36] = { 60.4, 26.1, 267, 300 }, + [37] = { 59.6, 24.3, 267, 300 }, + [38] = { 62, 22.7, 267, 300 }, + [39] = { 64, 22.3, 267, 300 }, + [40] = { 62.8, 22.3, 267, 300 }, + [41] = { 58.4, 21.9, 267, 300 }, + [42] = { 62.1, 21.7, 267, 300 }, + [43] = { 63.6, 21.7, 267, 300 }, + [44] = { 61.2, 21.7, 267, 300 }, + [45] = { 61.8, 20.8, 267, 300 }, + [46] = { 65.3, 20.7, 267, 300 }, + [47] = { 61.4, 20.3, 267, 300 }, + [48] = { 56.9, 19.8, 267, 300 }, + [49] = { 61.3, 19.7, 267, 300 }, + [50] = { 56.6, 19.7, 267, 300 }, + [51] = { 58.9, 19.4, 267, 300 }, + [52] = { 62.7, 19.3, 267, 300 }, + [53] = { 62.6, 19.2, 267, 300 }, + [54] = { 59.9, 18.9, 267, 300 }, + [55] = { 62.1, 18.7, 267, 300 }, + [56] = { 59.7, 18.5, 267, 300 }, + [57] = { 65.5, 18.4, 267, 300 }, + [58] = { 61.4, 17.9, 267, 300 }, + [59] = { 60.8, 17.7, 267, 300 }, + [60] = { 64, 17.5, 267, 300 }, + [61] = { 64.6, 1.8, 267, 300 }, + [62] = { 64.6, 1.5, 267, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [2406] = { + ["coords"] = { + [1] = { 41.4, 98.5, 28, 300 }, + [2] = { 42.7, 97.7, 28, 300 }, + [3] = { 38.2, 91.9, 36, 300 }, + [4] = { 40.3, 91.9, 36, 300 }, + [5] = { 37.5, 88.7, 36, 300 }, + [6] = { 30.5, 88.3, 36, 300 }, + [7] = { 39.4, 88.1, 36, 300 }, + [8] = { 34.2, 87.1, 36, 300 }, + [9] = { 29.7, 86.6, 36, 300 }, + [10] = { 37, 86.4, 36, 300 }, + [11] = { 35.9, 84.8, 36, 300 }, + [12] = { 29.7, 84.7, 36, 300 }, + [13] = { 35.3, 84.2, 36, 300 }, + [14] = { 33.6, 83.9, 36, 300 }, + [15] = { 34.4, 82.9, 36, 300 }, + [16] = { 32.1, 82.8, 36, 300 }, + [17] = { 31.7, 81.1, 36, 300 }, + [18] = { 33, 80.1, 36, 300 }, + [19] = { 32.5, 79.5, 36, 300 }, + [20] = { 30.6, 78.9, 36, 300 }, + [21] = { 42.8, 78.5, 36, 300 }, + [22] = { 29.9, 77.1, 36, 300 }, + [23] = { 49.1, 75.2, 36, 300 }, + [24] = { 29.7, 74.6, 36, 300 }, + [25] = { 31.1, 72.2, 36, 300 }, + [26] = { 29.4, 70.4, 36, 300 }, + [27] = { 74.1, 59.8, 36, 300 }, + [28] = { 83.1, 58.2, 36, 300 }, + [29] = { 76.7, 51.3, 36, 300 }, + [30] = { 78.7, 50.1, 36, 300 }, + [31] = { 64.7, 48.6, 36, 300 }, + [32] = { 42.3, 28.9, 267, 300 }, + [33] = { 44.2, 28.8, 267, 300 }, + [34] = { 41.7, 26, 267, 300 }, + [35] = { 35.6, 25.7, 267, 300 }, + [36] = { 43.3, 25.5, 267, 300 }, + [37] = { 38.8, 24.6, 267, 300 }, + [38] = { 34.9, 24.2, 267, 300 }, + [39] = { 41.2, 24, 267, 300 }, + [40] = { 40.3, 22.6, 267, 300 }, + [41] = { 34.8, 22.6, 267, 300 }, + [42] = { 39.7, 22.1, 267, 300 }, + [43] = { 38.3, 21.8, 267, 300 }, + [44] = { 38.9, 21, 267, 300 }, + [45] = { 37, 20.9, 267, 300 }, + [46] = { 36.6, 19.4, 267, 300 }, + [47] = { 37.7, 18.5, 267, 300 }, + [48] = { 37.3, 18, 267, 300 }, + [49] = { 35.6, 17.5, 267, 300 }, + [50] = { 46.3, 17.2, 267, 300 }, + [51] = { 35, 15.9, 267, 300 }, + [52] = { 51.8, 14.2, 267, 300 }, + [53] = { 34.8, 13.7, 267, 300 }, + [54] = { 36.1, 11.6, 267, 300 }, + [55] = { 34.6, 10, 267, 300 }, + [56] = { 73.7, 0.8, 267, 300 }, + }, + ["lvl"] = "32-33", + }, + [2407] = { + ["coords"] = { + [1] = { 42.5, 99.6, 28, 300 }, + [2] = { 40.7, 98.8, 28, 300 }, + [3] = { 44.5, 96.9, 28, 300 }, + [4] = { 39.6, 92.3, 36, 300 }, + [5] = { 37.1, 90.1, 36, 300 }, + [6] = { 30.9, 84.7, 36, 300 }, + [7] = { 39.8, 84.7, 36, 300 }, + [8] = { 48.9, 83.1, 36, 300 }, + [9] = { 43.7, 80.7, 36, 300 }, + [10] = { 45.7, 77.7, 36, 300 }, + [11] = { 44.2, 76.7, 36, 300 }, + [12] = { 83.2, 64.9, 36, 300 }, + [13] = { 83.1, 61.1, 36, 300 }, + [14] = { 82.6, 58.6, 36, 300 }, + [15] = { 74.4, 54.7, 36, 300 }, + [16] = { 78.4, 52.9, 36, 300 }, + [17] = { 75.6, 51.7, 36, 300 }, + [18] = { 66.7, 51.1, 36, 300 }, + [19] = { 81.4, 48.8, 36, 300 }, + [20] = { 56.2, 32.7, 36, 300 }, + [21] = { 53.6, 31.6, 36, 300 }, + [22] = { 52.8, 30.7, 36, 300 }, + [23] = { 53.5, 30.6, 36, 300 }, + [24] = { 39.6, 25.8, 36, 300 }, + [25] = { 38.1, 24.8, 36, 300 }, + [26] = { 52.5, 24.7, 36, 300 }, + [27] = { 51.7, 23.7, 36, 300 }, + [28] = { 45.3, 23.7, 36, 300 }, + [29] = { 50.4, 22.7, 36, 300 }, + [30] = { 45.5, 19.4, 36, 300 }, + [31] = { 43.5, 29.2, 267, 300 }, + [32] = { 41.3, 27.3, 267, 300 }, + [33] = { 35.9, 22.6, 267, 300 }, + [34] = { 43.7, 22.5, 267, 300 }, + [35] = { 51.6, 21.1, 267, 300 }, + [36] = { 47.1, 19.1, 267, 300 }, + [37] = { 48.8, 16.4, 267, 300 }, + [38] = { 47.5, 15.5, 267, 300 }, + [39] = { 81.7, 5.2, 267, 300 }, + [40] = { 81.6, 1.9, 267, 300 }, + }, + ["lvl"] = "33-34", + }, + [2408] = { + ["coords"] = { + [1] = { 45.5, 99.3, 28, 300 }, + [2] = { 46.7, 98.5, 28, 300 }, + [3] = { 48.1, 96.9, 28, 300 }, + [4] = { 49.6, 95.7, 28, 300 }, + [5] = { 51, 95.5, 28, 300 }, + [6] = { 67.3, 99.3, 36, 300 }, + [7] = { 67.3, 95.5, 36, 300 }, + [8] = { 67.7, 92, 36, 300 }, + [9] = { 68.1, 88.3, 36, 300 }, + [10] = { 67.5, 85.2, 36, 300 }, + [11] = { 67.7, 80.9, 36, 300 }, + [12] = { 67.9, 78.3, 36, 300 }, + [13] = { 68.9, 74.5, 36, 300 }, + [14] = { 72.5, 68.6, 36, 300 }, + [15] = { 72.8, 68, 36, 300 }, + [16] = { 73.6, 66.2, 36, 300 }, + [17] = { 75, 65, 36, 300 }, + [18] = { 76.4, 64.1, 36, 300 }, + [19] = { 77.2, 63.2, 36, 300 }, + [20] = { 78.8, 62.6, 36, 300 }, + [21] = { 79.6, 59.3, 36, 300 }, + [22] = { 80.3, 58.7, 36, 300 }, + [23] = { 80.3, 57.9, 36, 300 }, + [24] = { 80.9, 55.9, 36, 300 }, + [25] = { 14, 55, 36, 300 }, + [26] = { 12.4, 54.7, 36, 300 }, + [27] = { 12.9, 54.6, 36, 300 }, + [28] = { 10.6, 54.5, 36, 300 }, + [29] = { 82.7, 53.9, 36, 300 }, + [30] = { 14.2, 53, 36, 300 }, + [31] = { 17.7, 52.8, 36, 300 }, + [32] = { 15.3, 52.6, 36, 300 }, + [33] = { 82.9, 52.4, 36, 300 }, + [34] = { 16.5, 52.2, 36, 300 }, + [35] = { 84.8, 51.3, 36, 300 }, + [36] = { 16.7, 50.7, 36, 300 }, + [37] = { 19, 50.6, 36, 300 }, + [38] = { 17.6, 50.5, 36, 300 }, + [39] = { 17.7, 49.7, 36, 300 }, + [40] = { 19.3, 49.6, 36, 300 }, + [41] = { 20.2, 49.1, 36, 300 }, + [42] = { 86.9, 48.8, 36, 300 }, + [43] = { 21.2, 47.3, 36, 300 }, + [44] = { 89.2, 47, 36, 300 }, + [45] = { 19.9, 46.8, 36, 300 }, + [46] = { 91.5, 46.7, 36, 300 }, + [47] = { 21.2, 45.8, 36, 300 }, + [48] = { 22.9, 45.8, 36, 300 }, + [49] = { 23.6, 45.4, 36, 300 }, + [50] = { 24.2, 43.8, 36, 300 }, + [51] = { 24.8, 43.7, 36, 300 }, + [52] = { 26.7, 42.6, 36, 300 }, + [53] = { 25.2, 42.3, 36, 300 }, + [54] = { 26.3, 40.5, 36, 300 }, + [55] = { 27.9, 40.3, 36, 300 }, + [56] = { 28.8, 39.7, 36, 300 }, + [57] = { 29.1, 38.4, 36, 300 }, + [58] = { 29.7, 38, 36, 300 }, + [59] = { 29.7, 37.1, 36, 300 }, + [60] = { 30.8, 36.4, 36, 300 }, + [61] = { 31.1, 35.4, 36, 300 }, + [62] = { 29.7, 34.8, 36, 300 }, + [63] = { 31.2, 33.7, 36, 300 }, + [64] = { 30.7, 32, 36, 300 }, + [65] = { 31.9, 31.4, 36, 300 }, + [66] = { 31.9, 30, 36, 300 }, + [67] = { 32.9, 29.3, 36, 300 }, + [68] = { 34.2, 27.5, 36, 300 }, + [69] = { 33.4, 26.9, 36, 300 }, + [70] = { 34.3, 25.9, 36, 300 }, + [71] = { 35.5, 25.8, 36, 300 }, + [72] = { 35.8, 23.3, 36, 300 }, + [73] = { 35.9, 21.7, 36, 300 }, + [74] = { 36.6, 20.1, 36, 300 }, + [75] = { 36.8, 19, 36, 300 }, + [76] = { 35.8, 13.5, 36, 300 }, + [77] = { 31.7, 13.2, 36, 300 }, + [78] = { 33.4, 11.9, 36, 300 }, + [79] = { 72.8, 42.6, 130, 300 }, + [80] = { 71.7, 42.4, 130, 300 }, + [81] = { 72.1, 42.4, 130, 300 }, + [82] = { 70.5, 42.3, 130, 300 }, + [83] = { 73, 41.3, 130, 300 }, + [84] = { 75.3, 41.1, 130, 300 }, + [85] = { 73.7, 41, 130, 300 }, + [86] = { 74.5, 40.7, 130, 300 }, + [87] = { 74.6, 39.8, 130, 300 }, + [88] = { 76.1, 39.7, 130, 300 }, + [89] = { 75.2, 39.6, 130, 300 }, + [90] = { 75.3, 39.1, 130, 300 }, + [91] = { 76.4, 39, 130, 300 }, + [92] = { 77, 38.7, 130, 300 }, + [93] = { 77.7, 37.5, 130, 300 }, + [94] = { 76.7, 37.1, 130, 300 }, + [95] = { 77.6, 36.5, 130, 300 }, + [96] = { 78.7, 36.5, 130, 300 }, + [97] = { 79.2, 36.2, 130, 300 }, + [98] = { 79.6, 35.1, 130, 300 }, + [99] = { 80.1, 35.1, 130, 300 }, + [100] = { 81.3, 34.3, 130, 300 }, + [101] = { 80.3, 34.1, 130, 300 }, + [102] = { 81, 32.9, 130, 300 }, + [103] = { 82.1, 32.8, 130, 300 }, + [104] = { 82.7, 32.4, 130, 300 }, + [105] = { 82.9, 31.6, 130, 300 }, + [106] = { 83.3, 31.3, 130, 300 }, + [107] = { 83.3, 30.7, 130, 300 }, + [108] = { 83.3, 29.1, 130, 300 }, + [109] = { 55.9, 57.1, 267, 300 }, + [110] = { 55.9, 53.9, 267, 300 }, + [111] = { 56.4, 50.6, 267, 300 }, + [112] = { 56.8, 47.2, 267, 300 }, + [113] = { 59.2, 45.1, 267, 300 }, + [114] = { 61.7, 42.8, 267, 300 }, + [115] = { 63.9, 39.7, 267, 300 }, + [116] = { 66.1, 38.3, 267, 300 }, + [117] = { 67.8, 35.3, 267, 300 }, + [118] = { 67.8, 32, 267, 300 }, + [119] = { 68.1, 28.9, 267, 300 }, + [120] = { 68.4, 25.7, 267, 300 }, + [121] = { 68, 23, 267, 300 }, + [122] = { 68.1, 19.2, 267, 300 }, + [123] = { 68.3, 16.9, 267, 300 }, + [124] = { 69.1, 13.6, 267, 300 }, + [125] = { 72.3, 8.4, 267, 300 }, + [126] = { 72.5, 8, 267, 300 }, + [127] = { 73.3, 6.3, 267, 300 }, + [128] = { 74.5, 5.3, 267, 300 }, + [129] = { 75.7, 4.5, 267, 300 }, + [130] = { 76.4, 3.7, 267, 300 }, + [131] = { 77.8, 3.2, 267, 300 }, + }, + ["lvl"] = "30-31", + }, + [2409] = { + ["coords"] = { + [1] = { 77.5, 44.3, 10, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [2410] = { + ["coords"] = { + [1] = { 60.3, 82.8, 36, 30 }, + [2] = { 61.6, 20.8, 267, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "42", + }, + [2412] = { + ["coords"] = { + [1] = { 20.3, 86.4, 36, 300 }, + [2] = { 26.7, 24, 267, 300 }, + }, + ["lvl"] = "33", + }, + [2413] = { + ["coords"] = { + [1] = { 19.9, 86, 36, 300 }, + [2] = { 26.3, 23.7, 267, 300 }, + }, + ["lvl"] = "34", + }, + [2414] = { + ["coords"] = { + [1] = { 17.8, 83.2, 36, 300 }, + [2] = { 24.4, 21.2, 267, 300 }, + }, + ["lvl"] = "35", + }, + [2417] = { + ["coords"] = { + [1] = { 35.6, 54.4, 36, 600 }, + }, + ["lvl"] = "39", + ["rnk"] = "1", + }, + [2418] = { + ["coords"] = { + [1] = { 60.9, 81.4, 36, 300 }, + [2] = { 62.1, 19.7, 267, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [2419] = { + ["coords"] = { + [1] = { 61.6, 82, 36, 300 }, + [2] = { 62.8, 20.2, 267, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [2420] = { + ["coords"] = { + [1] = { 39.6, 52.8, 36, 300 }, + }, + ["lvl"] = "41", + ["rnk"] = "1", + }, + [2421] = { + ["coords"] = { + [1] = { 38.6, 46.7, 36, 300 }, + }, + ["lvl"] = "40", + ["rnk"] = "1", + }, + [2424] = "_", + [2427] = { + ["coords"] = { + [1] = { 79.5, 41.6, 267, 300 }, + }, + ["lvl"] = "24", + }, + [2429] = { + ["coords"] = { + [1] = { 62.9, 81.4, 36, 30 }, + [2] = { 63.9, 19.7, 267, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [2430] = { + ["coords"] = { + [1] = { 51.9, 58.7, 267, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [2432] = { + ["coords"] = { + [1] = { 49.3, 52.3, 267, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [2435] = { + ["coords"] = { + [1] = { 50.7, 45.8, 267, 7200 }, + }, + ["fac"] = "A", + ["lvl"] = "32", + }, + [2436] = { + ["coords"] = { + [1] = { 50.3, 55.3, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [2437] = { + ["coords"] = { + [1] = { 60.2, 82.9, 36, 30 }, + [2] = { 61.5, 20.9, 267, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "34", + }, + [2438] = { + ["coords"] = { + [1] = { 49.4, 55.5, 267, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "32", + }, + [2439] = { + ["coords"] = { + [1] = { 75.8, 36.7, 1519, 430 }, + [2] = { 57.2, 97.1, 5581, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [2440] = { + ["coords"] = { + [1] = { 59.3, 69.8, 36, 300 }, + [2] = { 58.7, 67.2, 36, 300 }, + [3] = { 60.7, 9.5, 267, 300 }, + [4] = { 60.2, 7.2, 267, 300 }, + }, + ["lvl"] = "32-33", + }, + [2441] = "_", + [2442] = { + ["coords"] = { + [1] = { 20.7, 69.2, 11, 60 }, + [2] = { 19.3, 69.1, 11, 60 }, + [3] = { 20.3, 68.7, 11, 60 }, + [4] = { 38, 88.6, 12, 270 }, + [5] = { 30.8, 88.4, 12, 270 }, + [6] = { 70.9, 82.9, 12, 270 }, + [7] = { 54.4, 79.3, 12, 270 }, + [8] = { 65.2, 78.8, 12, 270 }, + [9] = { 62.8, 78.3, 12, 270 }, + [10] = { 17.5, 78.1, 12, 300 }, + [11] = { 31.4, 77.3, 12, 270 }, + [12] = { 80, 77.2, 12, 270 }, + [13] = { 54.5, 76.9, 12, 270 }, + [14] = { 22.6, 76.6, 12, 270 }, + [15] = { 46.5, 76.2, 12, 270 }, + [16] = { 26.6, 75.5, 12, 270 }, + [17] = { 33.6, 75, 12, 270 }, + [18] = { 53.6, 74.6, 12, 270 }, + [19] = { 56.5, 74.2, 12, 270 }, + [20] = { 28.5, 73.6, 12, 270 }, + [21] = { 56.9, 71.2, 12, 270 }, + [22] = { 77.1, 71.2, 12, 270 }, + [23] = { 61.7, 71.1, 12, 270 }, + [24] = { 61.9, 71, 12, 270 }, + [25] = { 53.2, 71, 12, 270 }, + [26] = { 86.8, 70.9, 12, 270 }, + [27] = { 29.1, 69.5, 12, 270 }, + [28] = { 59.9, 69.4, 12, 270 }, + [29] = { 74.4, 67.5, 12, 270 }, + [30] = { 66.6, 66.8, 12, 270 }, + [31] = { 71.8, 66.7, 12, 270 }, + [32] = { 86.9, 65.8, 12, 270 }, + [33] = { 86.3, 65.2, 12, 270 }, + [34] = { 37.7, 63.7, 12, 270 }, + [35] = { 35.6, 63.5, 12, 270 }, + [36] = { 71.2, 61.9, 12, 270 }, + [37] = { 77.7, 61.3, 12, 270 }, + [38] = { 69.2, 60.8, 12, 270 }, + [39] = { 35, 60.3, 12, 270 }, + [40] = { 80, 58.7, 12, 270 }, + [41] = { 47.2, 58.6, 12, 270 }, + [42] = { 61.2, 57.6, 12, 270 }, + [43] = { 32.3, 57, 12, 25 }, + [44] = { 45.9, 55.6, 12, 270 }, + [45] = { 36.8, 55.5, 12, 270 }, + [46] = { 32.1, 54.9, 12, 270 }, + [47] = { 49.6, 54.7, 12, 25 }, + [48] = { 31.8, 54, 12, 270 }, + [49] = { 43.9, 53.1, 12, 270 }, + [50] = { 40.5, 53, 12, 25 }, + [51] = { 43.8, 52.6, 12, 270 }, + [52] = { 35, 50.8, 12, 30 }, + [53] = { 67.1, 44, 12, 270 }, + [54] = { 70.5, 40.3, 12, 270 }, + [55] = { 26, 98.5, 36, 300 }, + [56] = { 59.6, 23.7, 40, 300 }, + [57] = { 59.6, 14.9, 40, 300 }, + [58] = { 24.7, 58.8, 44, 300 }, + [59] = { 32, 29.5, 45, 300 }, + [60] = { 32.7, 29.5, 45, 300 }, + [61] = { 32.6, 28.7, 45, 300 }, + [62] = { 32.2, 28.6, 45, 300 }, + [63] = { 32.6, 28.4, 45, 300 }, + [64] = { 32.3, 28, 45, 300 }, + [65] = { 53.6, 56.9, 267, 300 }, + [66] = { 54.1, 56.5, 267, 300 }, + [67] = { 54.1, 55.8, 267, 300 }, + [68] = { 53.7, 55.7, 267, 300 }, + [69] = { 36.9, 45.4, 267, 300 }, + [70] = { 36.8, 40.1, 267, 300 }, + [71] = { 35, 37.9, 267, 300 }, + [72] = { 35, 37.5, 267, 300 }, + [73] = { 33, 36.3, 267, 300 }, + [74] = { 31.6, 34.6, 267, 300 }, + [75] = { 91.8, 8.6, 5179, 300 }, + [76] = { 91.8, 3.9, 5179, 300 }, + [77] = { 90.2, 2, 5179, 300 }, + [78] = { 90.2, 1.7, 5179, 300 }, + [79] = { 88.4, 0.6, 5179, 300 }, + }, + ["lvl"] = "5", + }, + [2447] = { + ["coords"] = { + [1] = { 73.7, 65.3, 36, 57600 }, + [2] = { 73.3, 5.6, 267, 57600 }, + }, + ["lvl"] = "44", + ["rnk"] = "2", + }, + [2448] = { + ["coords"] = { + [1] = { 29.5, 42.4, 267, 300 }, + [2] = { 85.4, 6, 5179, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "26", + }, + [2449] = { + ["coords"] = { + [1] = { 32.6, 39.8, 267, 300 }, + [2] = { 88.1, 3.7, 5179, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [2450] = { + ["coords"] = { + [1] = { 31.1, 58.6, 267, 300 }, + [2] = { 86.8, 20.1, 5179, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "29", + }, + [2451] = { + ["coords"] = { + [1] = { 35.9, 46.6, 267, 300 }, + [2] = { 91, 9.6, 5179, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [2452] = { + ["coords"] = { + [1] = { 37.5, 68.5, 36, 54000 }, + [2] = { 31.4, 51.5, 36, 54000 }, + [3] = { 41.6, 8.4, 267, 54000 }, + }, + ["lvl"] = "36", + ["rnk"] = "4", + }, + [2453] = { + ["coords"] = { + [1] = { 52.1, 46.9, 36, 108000 }, + [2] = { 47.6, 32.6, 36, 108000 }, + }, + ["lvl"] = "39", + ["rnk"] = "4", + }, + [2455] = { + ["coords"] = { + [1] = { 64.3, 80.8, 1519, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [2456] = { + ["coords"] = { + [1] = { 63.9, 81.1, 1519, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [2457] = { + ["coords"] = { + [1] = { 63.4, 81.4, 1519, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [2465] = { + ["coords"] = { + [1] = { 32.1, 29.2, 33, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [2466] = { + ["coords"] = { + [1] = { 52.6, 83, 11, 300 }, + [2] = { 9.2, 42.7, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2468] = { + ["coords"] = { + [1] = { 55.7, 84.7, 11, 300 }, + [2] = { 11.5, 44.1, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2469] = { + ["coords"] = { + [1] = { 55.3, 83.4, 11, 300 }, + [2] = { 11.2, 43, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2470] = { + ["coords"] = { + [1] = { 74.8, 48, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "37", + }, + [2472] = "_", + [2476] = { + ["coords"] = { + [1] = { 58.9, 31.1, 38, 19800 }, + [2] = { 28.7, 60.1, 5602, 19800 }, + }, + ["lvl"] = "22", + ["rnk"] = "4", + }, + [2477] = { + ["coords"] = { + [1] = { 55.4, 66.9, 38, 600 }, + [2] = { 26.9, 78.5, 5602, 600 }, + }, + ["fac"] = "H", + ["lvl"] = "19-21", + ["rnk"] = "1", + }, + [2478] = { + ["coords"] = { + [1] = { 55.5, 67.1, 38, 600 }, + [2] = { 26.9, 78.6, 5602, 600 }, + }, + ["fac"] = "H", + ["lvl"] = "20-21", + ["rnk"] = "1", + }, + [2485] = { + ["coords"] = { + [1] = { 50.5, 85.9, 1519, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [2486] = { + ["coords"] = { + [1] = { 27.6, 76.7, 33, 30 }, + }, + ["lvl"] = "42", + }, + [2488] = { + ["coords"] = { + [1] = { 26.9, 77.3, 33, 30 }, + }, + ["lvl"] = "34", + }, + [2490] = { + ["coords"] = { + [1] = { 28.1, 76.2, 33, 30 }, + }, + ["lvl"] = "44", + }, + [2491] = { + ["coords"] = { + [1] = { 27.1, 77.4, 33, 30 }, + }, + ["lvl"] = "38", + }, + [2493] = { + ["coords"] = { + [1] = { 28.6, 75.9, 33, 30 }, + }, + ["lvl"] = "41", + }, + [2494] = { + ["coords"] = { + [1] = { 26.8, 76.4, 33, 30 }, + }, + ["lvl"] = "40", + }, + [2495] = { + ["coords"] = { + [1] = { 28.3, 77.6, 33, 30 }, + }, + ["lvl"] = "45", + }, + [2497] = { + ["coords"] = { + [1] = { 32.2, 27.7, 33, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "41", + }, + [2498] = { + ["coords"] = { + [1] = { 27.1, 77.2, 33, 30 }, + }, + ["lvl"] = "34", + }, + [2500] = { + ["coords"] = { + [1] = { 26.7, 73.6, 33, 30 }, + }, + ["lvl"] = "37", + }, + [2501] = { + ["coords"] = { + [1] = { 27.8, 77.1, 33, 30 }, + }, + ["lvl"] = "44", + }, + [2502] = { + ["coords"] = { + [1] = { 26.9, 73.6, 33, 30 }, + }, + ["lvl"] = "44", + }, + [2503] = { + ["coords"] = { + [1] = { 27.5, 59.3, 267, 300 }, + [2] = { 28.9, 57.6, 267, 300 }, + [3] = { 29.3, 56.8, 267, 300 }, + [4] = { 28.7, 56.7, 267, 300 }, + [5] = { 30.9, 56.3, 267, 300 }, + [6] = { 29.6, 55.3, 267, 300 }, + [7] = { 31.1, 54.4, 267, 300 }, + [8] = { 29.6, 53, 267, 300 }, + [9] = { 29.3, 52.5, 267, 300 }, + [10] = { 31.9, 52.4, 267, 300 }, + [11] = { 83.6, 20.7, 5179, 300 }, + [12] = { 84.8, 19.2, 5179, 300 }, + [13] = { 85.3, 18.6, 5179, 300 }, + [14] = { 84.6, 18.4, 5179, 300 }, + [15] = { 86.6, 18.1, 5179, 300 }, + [16] = { 85.5, 17.3, 5179, 300 }, + [17] = { 86.8, 16.5, 5179, 300 }, + [18] = { 85.4, 15.2, 5179, 300 }, + [19] = { 85.2, 14.8, 5179, 300 }, + [20] = { 87.5, 14.7, 5179, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "27-28", + }, + [2504] = { + ["coords"] = { + [1] = { 75.1, 30.3, 1519, 30 }, + [2] = { 56.8, 93.6, 5581, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [2505] = { + ["coords"] = { + [1] = { 77.4, 86.5, 47, 350 }, + [2] = { 76.2, 84, 47, 350 }, + [3] = { 80.6, 77.3, 47, 350 }, + [4] = { 80.5, 74.8, 47, 350 }, + [5] = { 79.9, 73.6, 47, 350 }, + [6] = { 80.3, 71.9, 47, 350 }, + [7] = { 75.8, 71.4, 47, 350 }, + [8] = { 74.7, 71, 47, 350 }, + [9] = { 78.3, 70.6, 47, 350 }, + [10] = { 75.4, 69.9, 47, 350 }, + [11] = { 78.6, 69.7, 47, 350 }, + [12] = { 77.3, 69.6, 47, 350 }, + [13] = { 80.7, 69.4, 47, 350 }, + [14] = { 78.2, 68.5, 47, 350 }, + [15] = { 76.7, 68.3, 47, 350 }, + [16] = { 74.6, 68.3, 47, 350 }, + [17] = { 77.4, 67, 47, 350 }, + [18] = { 79.7, 65.8, 47, 350 }, + [19] = { 76.1, 65.2, 47, 350 }, + [20] = { 78.5, 65.2, 47, 350 }, + [21] = { 86, 64.8, 47, 350 }, + [22] = { 84, 64.6, 47, 350 }, + [23] = { 77.3, 64.2, 47, 350 }, + [24] = { 78, 63, 47, 350 }, + [25] = { 84.4, 61.9, 47, 350 }, + [26] = { 79.1, 61.9, 47, 350 }, + [27] = { 80.7, 61.8, 47, 350 }, + [28] = { 86, 61.8, 47, 350 }, + [29] = { 77.3, 61.7, 47, 350 }, + [30] = { 78.2, 60.7, 47, 350 }, + [31] = { 81.5, 60.5, 47, 350 }, + [32] = { 79.7, 60.4, 47, 350 }, + [33] = { 79.2, 59.3, 47, 350 }, + [34] = { 82.6, 59.2, 47, 350 }, + [35] = { 84.2, 59.1, 47, 350 }, + [36] = { 80, 58, 47, 350 }, + [37] = { 83.6, 57.8, 47, 350 }, + [38] = { 85.1, 57.7, 47, 350 }, + [39] = { 83.5, 55.3, 47, 350 }, + [40] = { 81.5, 55.1, 47, 350 }, + [41] = { 85.1, 55, 47, 350 }, + [42] = { 81.7, 54.6, 47, 350 }, + [43] = { 82.7, 53.8, 47, 350 }, + [44] = { 81.5, 53, 47, 350 }, + [45] = { 81.9, 53, 47, 350 }, + [46] = { 83, 52.9, 47, 350 }, + [47] = { 82.3, 51.3, 47, 350 }, + [48] = { 83.1, 50.4, 47, 350 }, + [49] = { 81.4, 50.3, 47, 350 }, + [50] = { 82.4, 48.8, 47, 350 }, + [51] = { 83.1, 47.6, 47, 350 }, + [52] = { 82.6, 46.1, 47, 350 }, + [53] = { 84.9, 45.4, 47, 350 }, + [54] = { 83.2, 44.8, 47, 350 }, + [55] = { 81.3, 44.8, 47, 350 }, + [56] = { 82.1, 43.1, 47, 350 }, + [57] = { 83.4, 42.1, 47, 350 }, + [58] = { 81.8, 42, 47, 350 }, + [59] = { 85.3, 41.8, 47, 350 }, + [60] = { 82.7, 41.3, 47, 350 }, + }, + ["lvl"] = "49-50", + }, + [2506] = { + ["coords"] = { + [1] = { 36.4, 50.5, 38, 300 }, + [2] = { 17.2, 70.1, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2507] = { + ["coords"] = { + [1] = { 37.9, 41.8, 38, 300 }, + [2] = { 17.9, 65.6, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2508] = { + ["coords"] = { + [1] = { 35.4, 41.6, 38, 300 }, + [2] = { 16.7, 65.5, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2509] = { + ["coords"] = { + [1] = { 33.7, 42.8, 38, 300 }, + [2] = { 15.8, 66.1, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2510] = { + ["coords"] = { + [1] = { 35.1, 46.8, 38, 300 }, + [2] = { 16.5, 68.2, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2511] = { + ["coords"] = { + [1] = { 39, 43.4, 38, 300 }, + [2] = { 18.5, 66.4, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2512] = { + ["coords"] = { + [1] = { 34.8, 51.2, 38, 300 }, + [2] = { 16.4, 70.5, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2513] = { + ["coords"] = { + [1] = { 35.4, 44.5, 38, 300 }, + [2] = { 16.7, 67, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2514] = { + ["coords"] = { + [1] = { 37.6, 44.9, 38, 300 }, + [2] = { 17.8, 67.2, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2515] = { + ["coords"] = { + [1] = { 39.1, 46.7, 38, 300 }, + [2] = { 18.5, 68.1, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2516] = { + ["coords"] = { + [1] = { 33.3, 44.8, 38, 300 }, + [2] = { 15.6, 67.2, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2517] = { + ["coords"] = { + [1] = { 35.8, 46.9, 38, 300 }, + [2] = { 16.9, 68.2, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2518] = { + ["coords"] = { + [1] = { 37.4, 49.2, 38, 300 }, + [2] = { 17.7, 69.4, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2519] = { + ["coords"] = { + [1] = { 32.3, 27.7, 33, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "39", + }, + [2521] = { + ["coords"] = { + [1] = { 39.1, 86.6, 33, 300 }, + [2] = { 40.3, 86.5, 33, 300 }, + [3] = { 38.7, 85.9, 33, 300 }, + [4] = { 41.3, 85, 33, 300 }, + [5] = { 41.9, 84.1, 33, 300 }, + [6] = { 40.4, 83.9, 33, 300 }, + [7] = { 41.9, 82.5, 33, 300 }, + [8] = { 40.3, 82, 33, 300 }, + [9] = { 40.9, 81.9, 33, 300 }, + [10] = { 40.9, 80.5, 33, 300 }, + [11] = { 40.2, 80.5, 33, 300 }, + [12] = { 40.3, 79.5, 33, 300 }, + [13] = { 40.7, 79.1, 33, 300 }, + [14] = { 39.2, 78.7, 33, 300 }, + [15] = { 40.4, 77.3, 33, 300 }, + }, + ["lvl"] = "50", + }, + [2522] = { + ["coords"] = { + [1] = { 38.6, 86.6, 33, 300 }, + [2] = { 37.6, 86.1, 33, 300 }, + [3] = { 36.6, 85.7, 33, 300 }, + [4] = { 36.5, 84, 33, 300 }, + [5] = { 37.6, 83.6, 33, 300 }, + [6] = { 37.1, 83.3, 33, 300 }, + [7] = { 37.5, 82.8, 33, 300 }, + [8] = { 37.7, 81.6, 33, 300 }, + [9] = { 38, 81.3, 33, 300 }, + [10] = { 36.5, 80.9, 33, 300 }, + [11] = { 37.1, 80.4, 33, 300 }, + [12] = { 37.8, 80, 33, 300 }, + [13] = { 37.3, 78.6, 33, 300 }, + [14] = { 38.9, 77.8, 33, 300 }, + }, + ["lvl"] = "50", + }, + [2524] = { + ["coords"] = { + [1] = { 67.2, 92.2, 11, 300 }, + [2] = { 42.6, 11, 38, 300 }, + [3] = { 20.3, 49.8, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2525] = { + ["coords"] = { + [1] = { 67.8, 92.4, 11, 300 }, + [2] = { 43.4, 11.3, 38, 300 }, + [3] = { 20.8, 50, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2526] = { + ["coords"] = { + [1] = { 46.2, 14.2, 38, 300 }, + [2] = { 22.2, 51.4, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2527] = { + ["coords"] = { + [1] = { 48.6, 14.4, 38, 300 }, + [2] = { 23.4, 51.6, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2528] = { + ["coords"] = { + [1] = { 74.2, 92.2, 11, 300 }, + [2] = { 53, 11, 38, 300 }, + [3] = { 25.7, 49.8, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2529] = { + ["coords"] = { + [1] = { 45, 79.6, 130, 600 }, + [2] = { 47.3, 34, 130, 600 }, + [3] = { 38.1, 15.2, 130, 600 }, + [4] = { 67.2, 43.8, 209, 18000 }, + [5] = { 71.4, 28.8, 209, 18000 }, + [6] = { 67.4, 26.4, 209, 18000 }, + [7] = { 71.8, 24, 209, 18000 }, + [8] = { 74.2, 18.3, 209, 18000 }, + [9] = { 79.5, 18.1, 209, 18000 }, + [10] = { 75, 13.3, 209, 18000 }, + [11] = { 79.9, 11.5, 209, 18000 }, + [12] = { 46.1, 8.3, 5179, 600 }, + }, + ["lvl"] = "24-25", + ["rnk"] = "1", + }, + [2541] = { + ["coords"] = { + [1] = { 28.3, 62.6, 33, 27000 }, + }, + ["lvl"] = "45", + ["rnk"] = "4", + }, + [2543] = { + ["coords"] = { + [1] = { 18.8, 78.5, 36, 300 }, + [2] = { 25.3, 17.1, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "53", + ["rnk"] = "1", + }, + [2552] = { + ["coords"] = { + [1] = { 35.6, 49.4, 45, 400 }, + [2] = { 32, 46.3, 45, 400 }, + [3] = { 35.1, 46.2, 45, 400 }, + [4] = { 37.5, 41, 45, 400 }, + }, + ["lvl"] = "30-31", + }, + [2553] = { + ["coords"] = { + [1] = { 31, 42.4, 45, 400 }, + [2] = { 34.6, 39.5, 45, 400 }, + }, + ["lvl"] = "31-32", + }, + [2554] = { + ["coords"] = { + [1] = { 59.8, 74.1, 45, 400 }, + [2] = { 65.1, 74, 45, 400 }, + [3] = { 64.1, 73.6, 45, 400 }, + [4] = { 65.1, 73, 45, 400 }, + [5] = { 61.6, 72.8, 45, 400 }, + [6] = { 64.5, 72.8, 45, 400 }, + [7] = { 63.5, 72.8, 45, 400 }, + [8] = { 60.5, 72.5, 45, 400 }, + [9] = { 61.6, 72.1, 45, 400 }, + [10] = { 61.2, 71.7, 45, 400 }, + [11] = { 61.7, 71.5, 45, 400 }, + [12] = { 62.9, 68.5, 45, 400 }, + [13] = { 64, 68.2, 45, 400 }, + [14] = { 62.8, 67.6, 45, 400 }, + [15] = { 65.2, 67.6, 45, 400 }, + [16] = { 63.5, 67.1, 45, 400 }, + [17] = { 73.2, 65.8, 45, 400 }, + [18] = { 74.1, 65.4, 45, 400 }, + [19] = { 73, 64.8, 45, 400 }, + [20] = { 66.3, 64.7, 45, 400 }, + [21] = { 65.6, 64.5, 45, 400 }, + [22] = { 73.7, 63.8, 45, 400 }, + [23] = { 66.8, 63.7, 45, 400 }, + [24] = { 66, 62.9, 45, 400 }, + [25] = { 66.9, 61.7, 45, 400 }, + [26] = { 70.9, 61.7, 45, 400 }, + [27] = { 68.2, 60.7, 45, 400 }, + [28] = { 71.6, 60.6, 45, 400 }, + [29] = { 70.8, 60.5, 45, 400 }, + [30] = { 73.2, 60.3, 45, 400 }, + [31] = { 72, 59.1, 45, 400 }, + [32] = { 70.7, 58.8, 45, 400 }, + }, + ["lvl"] = "32-33", + }, + [2555] = { + ["coords"] = { + [1] = { 69.3, 81.5, 45, 400 }, + [2] = { 67.3, 80.5, 45, 400 }, + [3] = { 69.1, 79.7, 45, 400 }, + [4] = { 68.1, 79.4, 45, 400 }, + [5] = { 68, 78.6, 45, 400 }, + [6] = { 69.9, 77.9, 45, 400 }, + [7] = { 67.9, 76.9, 45, 400 }, + [8] = { 67.2, 73.5, 45, 400 }, + [9] = { 65, 73.4, 45, 400 }, + [10] = { 64.5, 73, 45, 400 }, + [11] = { 61.1, 72.2, 45, 400 }, + [12] = { 66.3, 71.8, 45, 400 }, + [13] = { 64.4, 71.7, 45, 400 }, + [14] = { 64.7, 71.6, 45, 400 }, + [15] = { 70.6, 70.5, 45, 400 }, + [16] = { 71, 69.2, 45, 400 }, + [17] = { 65.2, 68.9, 45, 400 }, + [18] = { 69.3, 68.7, 45, 400 }, + [19] = { 63.1, 67.8, 45, 400 }, + [20] = { 71.6, 67.1, 45, 400 }, + [21] = { 69.6, 66.6, 45, 400 }, + [22] = { 72.8, 65.8, 45, 400 }, + [23] = { 73.2, 65.3, 45, 400 }, + [24] = { 73.7, 64.6, 45, 400 }, + [25] = { 71.8, 64.6, 45, 400 }, + [26] = { 66.4, 63.8, 45, 400 }, + [27] = { 71.6, 61.8, 45, 400 }, + [28] = { 69.9, 61.6, 45, 400 }, + [29] = { 31.5, 45.8, 45, 400 }, + [30] = { 32.6, 44.4, 45, 400 }, + [31] = { 30.5, 43.6, 45, 400 }, + }, + ["lvl"] = "33-34", + }, + [2556] = { + ["coords"] = { + [1] = { 69.2, 82.4, 45, 400 }, + [2] = { 66.3, 82.2, 45, 400 }, + [3] = { 67.8, 82, 45, 400 }, + [4] = { 66, 81.9, 45, 400 }, + [5] = { 69.2, 81.7, 45, 400 }, + [6] = { 67.6, 81.6, 45, 400 }, + [7] = { 69.5, 81.6, 45, 400 }, + [8] = { 69.9, 81.1, 45, 400 }, + [9] = { 67.2, 80.8, 45, 400 }, + [10] = { 68.3, 80.1, 45, 400 }, + [11] = { 68.2, 79.5, 45, 400 }, + [12] = { 69.1, 79.5, 45, 400 }, + [13] = { 68, 78.7, 45, 400 }, + [14] = { 69, 78.7, 45, 400 }, + [15] = { 70.4, 78.2, 45, 400 }, + [16] = { 69.8, 78, 45, 400 }, + [17] = { 70, 77.3, 45, 400 }, + [18] = { 67.7, 77.2, 45, 400 }, + [19] = { 67.7, 77.1, 45, 400 }, + [20] = { 67.9, 76.5, 45, 400 }, + [21] = { 68.6, 76.4, 45, 400 }, + [22] = { 68.7, 73.4, 45, 400 }, + [23] = { 62.5, 73.2, 45, 400 }, + [24] = { 69, 72, 45, 400 }, + [25] = { 70, 71.8, 45, 400 }, + [26] = { 63.5, 71.6, 45, 400 }, + [27] = { 59.9, 71.6, 45, 400 }, + [28] = { 67.1, 70.1, 45, 400 }, + [29] = { 71.2, 69.9, 45, 400 }, + [30] = { 70.6, 69.6, 45, 400 }, + [31] = { 64.3, 68.9, 45, 400 }, + [32] = { 70, 68.7, 45, 400 }, + [33] = { 70.9, 67.4, 45, 400 }, + [34] = { 71.2, 65.9, 45, 400 }, + [35] = { 72.7, 64.4, 45, 400 }, + [36] = { 71.9, 63, 45, 400 }, + }, + ["lvl"] = "34-35", + }, + [2559] = { + ["coords"] = { + [1] = { 42.8, 79.6, 45, 400 }, + [2] = { 43.2, 77.8, 45, 400 }, + [3] = { 41.1, 74.2, 45, 400 }, + [4] = { 44.9, 65.5, 45, 400 }, + [5] = { 46.6, 64.3, 45, 400 }, + [6] = { 40, 61.9, 45, 400 }, + [7] = { 40.1, 58.9, 45, 400 }, + [8] = { 67.1, 56.3, 45, 400 }, + [9] = { 47.8, 56.2, 45, 400 }, + [10] = { 44.8, 55, 45, 400 }, + [11] = { 41.4, 53.4, 45, 400 }, + [12] = { 46.8, 53, 45, 400 }, + [13] = { 49.5, 52.1, 45, 400 }, + [14] = { 69.1, 52, 45, 400 }, + [15] = { 38.4, 51.7, 45, 400 }, + [16] = { 70.6, 51, 45, 400 }, + [17] = { 42, 50.8, 45, 400 }, + [18] = { 39.6, 50.6, 45, 400 }, + [19] = { 46.7, 50.5, 45, 400 }, + [20] = { 64, 50.5, 45, 400 }, + [21] = { 37.3, 50.3, 45, 400 }, + [22] = { 41.3, 49.8, 45, 400 }, + [23] = { 41.8, 49.4, 45, 400 }, + [24] = { 49.3, 49.4, 45, 400 }, + [25] = { 40.5, 49.3, 45, 400 }, + [26] = { 68.7, 49.1, 45, 400 }, + [27] = { 55.1, 49.1, 45, 400 }, + [28] = { 38.4, 48.7, 45, 400 }, + [29] = { 74, 48.3, 45, 400 }, + [30] = { 56, 48, 45, 400 }, + [31] = { 39.6, 47.8, 45, 400 }, + [32] = { 54.1, 47.6, 45, 400 }, + [33] = { 51.1, 47.4, 45, 400 }, + [34] = { 42.2, 46.9, 45, 400 }, + [35] = { 54.3, 46.7, 45, 400 }, + [36] = { 56.9, 46.6, 45, 400 }, + [37] = { 62.5, 46.5, 45, 400 }, + [38] = { 64.3, 46.4, 45, 400 }, + [39] = { 39.8, 46.4, 45, 400 }, + [40] = { 53.3, 45.9, 45, 400 }, + [41] = { 53.8, 45.6, 45, 400 }, + [42] = { 61.6, 45.2, 45, 400 }, + [43] = { 65.3, 45.2, 45, 400 }, + [44] = { 59.6, 45.2, 45, 400 }, + [45] = { 63.3, 45.1, 45, 400 }, + [46] = { 20.6, 45, 45, 400 }, + [47] = { 52.1, 44.9, 45, 400 }, + [48] = { 41, 44.8, 45, 400 }, + [49] = { 53.1, 44, 45, 400 }, + [50] = { 42.5, 43.8, 45, 400 }, + [51] = { 40.3, 43.7, 45, 400 }, + [52] = { 58.7, 43.7, 45, 400 }, + [53] = { 66.1, 43.7, 45, 400 }, + [54] = { 60.6, 43.6, 45, 400 }, + [55] = { 17.2, 42.7, 45, 300 }, + [56] = { 65.4, 42.4, 45, 400 }, + [57] = { 67.6, 42.3, 45, 400 }, + [58] = { 60.8, 42.2, 45, 400 }, + [59] = { 61.6, 42.2, 45, 400 }, + [60] = { 63.4, 42.2, 45, 400 }, + [61] = { 19.6, 42.2, 45, 400 }, + [62] = { 17.1, 42.1, 45, 400 }, + [63] = { 41.8, 41.9, 45, 400 }, + [64] = { 41.3, 41.4, 45, 400 }, + [65] = { 43.2, 41.2, 45, 400 }, + [66] = { 68.5, 41.2, 45, 400 }, + [67] = { 58.7, 41.1, 45, 400 }, + [68] = { 46.8, 41.1, 45, 400 }, + [69] = { 60.7, 41, 45, 400 }, + [70] = { 44.1, 41, 45, 400 }, + [71] = { 19, 41, 45, 400 }, + [72] = { 64.4, 40.9, 45, 400 }, + [73] = { 49.5, 40.7, 45, 400 }, + [74] = { 24.5, 40.7, 45, 400 }, + [75] = { 51.3, 40.6, 45, 400 }, + [76] = { 65.9, 40.5, 45, 400 }, + [77] = { 18.1, 40.2, 45, 400 }, + [78] = { 25.2, 40.1, 45, 400 }, + [79] = { 65.2, 39.7, 45, 400 }, + [80] = { 23.7, 39.6, 45, 400 }, + [81] = { 51.4, 39.6, 45, 400 }, + [82] = { 46.7, 39.5, 45, 400 }, + [83] = { 43.1, 39.2, 45, 400 }, + [84] = { 21.9, 39.2, 45, 400 }, + [85] = { 66.9, 39.1, 45, 400 }, + [86] = { 69.1, 38.6, 45, 400 }, + [87] = { 20.5, 38.2, 45, 400 }, + [88] = { 18.9, 38.1, 45, 400 }, + [89] = { 65.6, 38, 45, 400 }, + [90] = { 20, 38, 45, 400 }, + [91] = { 60.3, 37.2, 45, 400 }, + [92] = { 26.9, 37, 45, 400 }, + [93] = { 67.6, 36.9, 45, 400 }, + [94] = { 68, 36.9, 45, 400 }, + [95] = { 24.9, 36.8, 45, 400 }, + [96] = { 64.3, 36.8, 45, 400 }, + [97] = { 69, 36.6, 45, 400 }, + [98] = { 21.4, 36.4, 45, 400 }, + [99] = { 32.7, 36.1, 45, 400 }, + [100] = { 69.8, 35.8, 45, 400 }, + [101] = { 23.7, 35.4, 45, 400 }, + [102] = { 65.9, 35.1, 45, 400 }, + [103] = { 33.6, 35.1, 45, 400 }, + [104] = { 26.4, 35, 45, 400 }, + [105] = { 19.5, 34.2, 45, 400 }, + [106] = { 67.2, 34.1, 45, 400 }, + [107] = { 48.2, 33.7, 45, 400 }, + [108] = { 52.3, 32.4, 45, 400 }, + [109] = { 69.8, 31.6, 45, 400 }, + [110] = { 76.3, 31.1, 45, 400 }, + [111] = { 70, 30.4, 45, 400 }, + [112] = { 69.8, 27, 45, 400 }, + [113] = { 26.7, 24, 45, 400 }, + [114] = { 30.3, 21.1, 45, 400 }, + [115] = { 27.2, 20.7, 45, 400 }, + [116] = { 30.8, 20.4, 45, 400 }, + [117] = { 29.9, 19.9, 45, 400 }, + [118] = { 28.3, 17.3, 45, 400 }, + }, + ["lvl"] = "30-31", + }, + [2560] = { + ["coords"] = { + [1] = { 41, 69.9, 45, 400 }, + [2] = { 39.5, 69.9, 45, 400 }, + [3] = { 38.7, 69.1, 45, 400 }, + [4] = { 39.7, 68.9, 45, 400 }, + [5] = { 56, 68.8, 45, 400 }, + [6] = { 37.4, 67.9, 45, 400 }, + [7] = { 58.8, 67.3, 45, 400 }, + [8] = { 38.4, 67.2, 45, 400 }, + [9] = { 40.1, 67.1, 45, 400 }, + [10] = { 36.9, 66.6, 45, 400 }, + [11] = { 39.5, 65.9, 45, 400 }, + [12] = { 35.4, 65.8, 45, 400 }, + [13] = { 62.4, 65.3, 45, 400 }, + [14] = { 31.3, 65.2, 45, 400 }, + [15] = { 36.2, 65.1, 45, 400 }, + [16] = { 39.2, 65, 45, 400 }, + [17] = { 37.4, 64.9, 45, 400 }, + [18] = { 41, 64.8, 45, 400 }, + [19] = { 34.9, 64.3, 45, 400 }, + [20] = { 36.5, 64, 45, 400 }, + [21] = { 32.4, 64, 45, 400 }, + [22] = { 34.1, 61.8, 45, 400 }, + [23] = { 32.1, 60.3, 45, 400 }, + [24] = { 54.5, 59.6, 45, 400 }, + [25] = { 32.1, 59, 45, 400 }, + [26] = { 19.8, 58, 45, 300 }, + [27] = { 31.1, 57.6, 45, 400 }, + [28] = { 54.1, 57.6, 45, 400 }, + [29] = { 32.5, 56.9, 45, 400 }, + [30] = { 32.6, 56.6, 45, 400 }, + [31] = { 30.5, 56.4, 45, 400 }, + [32] = { 30.1, 56.1, 45, 400 }, + [33] = { 31.4, 55.9, 45, 400 }, + [34] = { 21.9, 53.6, 45, 400 }, + [35] = { 23.2, 49.7, 45, 400 }, + [36] = { 19.1, 48.7, 45, 400 }, + [37] = { 20.1, 48.2, 45, 400 }, + [38] = { 20.8, 47.7, 45, 400 }, + [39] = { 22, 47.7, 45, 400 }, + [40] = { 18, 47.2, 45, 400 }, + [41] = { 18.5, 46.3, 45, 400 }, + [42] = { 20.1, 45, 45, 400 }, + [43] = { 40.2, 41.1, 45, 400 }, + [44] = { 41.7, 39.6, 45, 400 }, + [45] = { 38.1, 38.7, 45, 400 }, + [46] = { 43.9, 38.4, 45, 400 }, + [47] = { 39.4, 38.4, 45, 400 }, + [48] = { 37, 38.2, 45, 400 }, + [49] = { 37.9, 36.9, 45, 400 }, + [50] = { 40.2, 36.8, 45, 400 }, + [51] = { 36.5, 36.7, 45, 400 }, + [52] = { 43, 36.4, 45, 400 }, + [53] = { 40.2, 35.3, 45, 400 }, + [54] = { 41.2, 35.3, 45, 400 }, + [55] = { 36.7, 35.2, 45, 400 }, + [56] = { 46.5, 35.1, 45, 400 }, + [57] = { 39.9, 34.2, 45, 400 }, + [58] = { 43.9, 34, 45, 400 }, + [59] = { 38, 33.5, 45, 400 }, + [60] = { 37.8, 33.3, 45, 400 }, + [61] = { 36.3, 33.1, 45, 400 }, + [62] = { 41, 30, 45, 400 }, + [63] = { 37.1, 29.9, 45, 400 }, + [64] = { 39.9, 29.9, 45, 400 }, + }, + ["lvl"] = "33-34", + }, + [2561] = { + ["coords"] = { + [1] = { 48, 82.4, 45, 400 }, + [2] = { 47.5, 80.7, 45, 400 }, + [3] = { 45.6, 79.5, 45, 400 }, + [4] = { 46.8, 78.7, 45, 400 }, + [5] = { 45.7, 76.6, 45, 400 }, + [6] = { 46.5, 76, 45, 400 }, + [7] = { 47.6, 75.2, 45, 400 }, + [8] = { 50, 70.4, 45, 400 }, + [9] = { 49.6, 69.1, 45, 400 }, + [10] = { 53.1, 68.8, 45, 400 }, + [11] = { 51.1, 68.7, 45, 400 }, + [12] = { 52.3, 68.1, 45, 400 }, + [13] = { 53.7, 67.8, 45, 400 }, + [14] = { 50.4, 67.5, 45, 400 }, + [15] = { 55.1, 67.5, 45, 400 }, + [16] = { 54, 64.6, 45, 400 }, + [17] = { 50.5, 64.6, 45, 400 }, + [18] = { 52.3, 64.6, 45, 400 }, + [19] = { 50.2, 63.9, 45, 400 }, + }, + ["lvl"] = "36-37", + }, + [2562] = { + ["coords"] = { + [1] = { 32.9, 50.3, 45, 400 }, + [2] = { 34, 49.5, 45, 400 }, + [3] = { 31.2, 48, 45, 400 }, + [4] = { 32.9, 47.8, 45, 400 }, + [5] = { 34.6, 47.7, 45, 400 }, + [6] = { 36.2, 47.6, 45, 400 }, + [7] = { 36.2, 46.7, 45, 400 }, + [8] = { 37.6, 46.2, 45, 400 }, + [9] = { 31, 45.3, 45, 400 }, + [10] = { 35.7, 45.3, 45, 400 }, + [11] = { 35.7, 43.9, 45, 400 }, + [12] = { 37.2, 43.6, 45, 400 }, + [13] = { 34.7, 43.2, 45, 400 }, + [14] = { 36.8, 42.6, 45, 400 }, + [15] = { 35.6, 41.3, 45, 400 }, + [16] = { 31.8, 41, 45, 400 }, + [17] = { 33.2, 40.8, 45, 400 }, + [18] = { 32.9, 39.5, 45, 400 }, + }, + ["lvl"] = "32-33", + }, + [2563] = { + ["coords"] = { + [1] = { 42, 75.6, 45, 400 }, + [2] = { 42, 72.7, 45, 400 }, + [3] = { 39.7, 70.9, 45, 400 }, + [4] = { 44.2, 70.5, 45, 400 }, + [5] = { 40.8, 67.8, 45, 400 }, + [6] = { 45.3, 67.4, 45, 400 }, + [7] = { 34.9, 66.2, 45, 400 }, + [8] = { 34, 64.9, 45, 400 }, + [9] = { 45.1, 64.8, 45, 400 }, + [10] = { 43.1, 64.5, 45, 400 }, + [11] = { 45.7, 64.5, 45, 400 }, + [12] = { 38.6, 62.9, 45, 400 }, + [13] = { 43.5, 62.7, 45, 400 }, + [14] = { 41.1, 62.5, 45, 400 }, + [15] = { 41.7, 61.7, 45, 400 }, + [16] = { 42.6, 61.5, 45, 400 }, + [17] = { 50.2, 61.5, 45, 400 }, + [18] = { 47.9, 61.2, 45, 400 }, + [19] = { 32.7, 60.9, 45, 400 }, + [20] = { 48.1, 60.6, 45, 400 }, + [21] = { 42, 59.8, 45, 400 }, + [22] = { 43, 59, 45, 400 }, + [23] = { 41.2, 58.8, 45, 400 }, + [24] = { 47.9, 57.6, 45, 400 }, + [25] = { 43.1, 57.4, 45, 400 }, + [26] = { 69, 56.3, 45, 400 }, + [27] = { 69.8, 56.2, 45, 400 }, + [28] = { 68.1, 56, 45, 400 }, + [29] = { 69.7, 55.1, 45, 400 }, + [30] = { 22.4, 54.6, 45, 400 }, + [31] = { 32.8, 54.4, 45, 400 }, + [32] = { 71.1, 54.3, 45, 400 }, + [33] = { 68, 53.1, 45, 400 }, + [34] = { 67, 52.6, 45, 400 }, + [35] = { 18.1, 52.3, 45, 400 }, + [36] = { 22.7, 52, 45, 400 }, + [37] = { 40, 51.9, 45, 400 }, + [38] = { 48.7, 50.8, 45, 400 }, + [39] = { 18.1, 50.7, 45, 400 }, + [40] = { 58.7, 50.7, 45, 400 }, + [41] = { 65.6, 50.7, 45, 400 }, + [42] = { 69, 50.6, 45, 400 }, + [43] = { 61.6, 50.6, 45, 400 }, + [44] = { 61.4, 50.6, 45, 400 }, + [45] = { 19.9, 50.5, 45, 400 }, + [46] = { 71.8, 50.5, 45, 400 }, + [47] = { 69.9, 50.2, 45, 400 }, + [48] = { 17.3, 49.8, 45, 400 }, + [49] = { 59.8, 49.7, 45, 400 }, + [50] = { 21.6, 49.6, 45, 300 }, + [51] = { 69.9, 49.3, 45, 400 }, + [52] = { 66.6, 49.3, 45, 400 }, + [53] = { 61.6, 49.2, 45, 400 }, + [54] = { 41.4, 48.7, 45, 400 }, + [55] = { 71.8, 48.5, 45, 400 }, + [56] = { 70, 48.3, 45, 400 }, + [57] = { 23.8, 48.3, 45, 400 }, + [58] = { 69, 47.9, 45, 400 }, + [59] = { 73, 47.2, 45, 400 }, + [60] = { 71.1, 47, 45, 400 }, + [61] = { 73.7, 46.9, 45, 400 }, + [62] = { 70.5, 46.7, 45, 400 }, + [63] = { 60.6, 46.6, 45, 400 }, + [64] = { 68.4, 46.5, 45, 400 }, + [65] = { 39.4, 45.4, 45, 400 }, + [66] = { 56, 45.4, 45, 400 }, + [67] = { 17.2, 45.3, 45, 400 }, + [68] = { 22.6, 45.2, 45, 400 }, + [69] = { 57.8, 45.2, 45, 400 }, + [70] = { 18.1, 44.7, 45, 400 }, + [71] = { 16.9, 43.7, 45, 400 }, + [72] = { 64.2, 43.7, 45, 400 }, + [73] = { 19.4, 43.6, 45, 400 }, + [74] = { 62.2, 42.6, 45, 400 }, + [75] = { 17.2, 42.3, 45, 400 }, + [76] = { 20.8, 42.2, 45, 400 }, + [77] = { 50.6, 41.8, 45, 400 }, + [78] = { 20, 41, 45, 400 }, + [79] = { 45.8, 40.9, 45, 400 }, + [80] = { 60.8, 39.7, 45, 400 }, + [81] = { 44.7, 39.2, 45, 400 }, + [82] = { 63.4, 38.3, 45, 400 }, + [83] = { 23.6, 38.2, 45, 400 }, + [84] = { 41.2, 38.2, 45, 400 }, + [85] = { 48.3, 38, 45, 400 }, + [86] = { 50.6, 38, 45, 400 }, + [87] = { 26.4, 38, 45, 400 }, + [88] = { 42.1, 37.2, 45, 400 }, + [89] = { 69.9, 37.1, 45, 400 }, + [90] = { 49.5, 36.7, 45, 400 }, + [91] = { 51.2, 36.6, 45, 400 }, + [92] = { 47.6, 36.4, 45, 400 }, + [93] = { 20.7, 36.3, 45, 400 }, + [94] = { 19.4, 35.9, 45, 300 }, + [95] = { 49.9, 35.6, 45, 400 }, + [96] = { 52.3, 35.5, 45, 400 }, + [97] = { 18.2, 35.5, 45, 400 }, + [98] = { 39.1, 35.4, 45, 400 }, + [99] = { 68.9, 35.4, 45, 400 }, + [100] = { 47.9, 35, 45, 400 }, + [101] = { 29.1, 34.6, 45, 400 }, + [102] = { 36.1, 33.9, 45, 400 }, + [103] = { 57.9, 33.9, 45, 400 }, + [104] = { 69.1, 33.8, 45, 400 }, + [105] = { 55.3, 33.7, 45, 400 }, + [106] = { 53.3, 33.3, 45, 400 }, + [107] = { 56.4, 33.2, 45, 400 }, + [108] = { 54.3, 32.5, 45, 400 }, + [109] = { 37.7, 31.1, 45, 400 }, + [110] = { 62.8, 30.1, 45, 400 }, + [111] = { 26.6, 25.7, 45, 400 }, + [112] = { 28.3, 20.9, 45, 400 }, + [113] = { 80.7, 83.8, 267, 400 }, + [114] = { 79.9, 81, 267, 400 }, + }, + ["lvl"] = "32-33", + }, + [2564] = { + ["coords"] = { + [1] = { 33, 46.6, 45, 400 }, + [2] = { 33.1, 46.1, 45, 400 }, + [3] = { 31.9, 46.1, 45, 400 }, + [4] = { 32.4, 46, 45, 400 }, + [5] = { 33.6, 46, 45, 400 }, + [6] = { 32.8, 45.4, 45, 400 }, + [7] = { 32.4, 44.7, 45, 400 }, + [8] = { 33.6, 44.6, 45, 400 }, + [9] = { 33.9, 44.6, 45, 400 }, + [10] = { 34.5, 44.2, 45, 400 }, + [11] = { 31.6, 44.2, 45, 400 }, + [12] = { 33.3, 43.9, 45, 400 }, + [13] = { 32.5, 43.9, 45, 400 }, + [14] = { 31, 43.7, 45, 400 }, + [15] = { 32.8, 43.1, 45, 400 }, + [16] = { 31.1, 43.1, 45, 400 }, + }, + ["lvl"] = "33-34", + }, + [2565] = { + ["coords"] = { + [1] = { 47.8, 77.2, 45, 400 }, + [2] = { 46, 74.5, 45, 400 }, + [3] = { 61.7, 69, 45, 400 }, + [4] = { 57, 69, 45, 400 }, + [5] = { 59.9, 68.5, 45, 400 }, + [6] = { 56.9, 67.5, 45, 400 }, + [7] = { 60.7, 67.2, 45, 400 }, + [8] = { 51.2, 66.6, 45, 400 }, + [9] = { 53.5, 66, 45, 400 }, + [10] = { 61.4, 65.9, 45, 400 }, + [11] = { 59.8, 65.8, 45, 400 }, + [12] = { 57.5, 65.8, 45, 400 }, + [13] = { 57.4, 65, 45, 400 }, + [14] = { 58.8, 64.6, 45, 400 }, + [15] = { 60.5, 64.5, 45, 400 }, + [16] = { 60.4, 64.4, 45, 400 }, + [17] = { 56.9, 62, 45, 400 }, + [18] = { 52.6, 61, 45, 400 }, + [19] = { 56.7, 60.5, 45, 400 }, + [20] = { 56, 59.1, 45, 400 }, + [21] = { 53.2, 58.9, 45, 400 }, + [22] = { 56.5, 57.8, 45, 400 }, + [23] = { 53.4, 56.4, 45, 400 }, + [24] = { 54.4, 54.9, 45, 400 }, + [25] = { 55.8, 54.6, 45, 400 }, + [26] = { 44.9, 36.8, 45, 400 }, + [27] = { 46.6, 36.7, 45, 400 }, + [28] = { 45.7, 34.8, 45, 400 }, + [29] = { 42, 34.1, 45, 400 }, + [30] = { 42.9, 32.6, 45, 400 }, + [31] = { 42.5, 32.3, 45, 400 }, + [32] = { 41, 31.9, 45, 400 }, + [33] = { 40.3, 31.7, 45, 400 }, + [34] = { 44.6, 31.6, 45, 400 }, + [35] = { 44.1, 31.1, 45, 400 }, + [36] = { 42.7, 29.5, 45, 400 }, + [37] = { 38.4, 29.3, 45, 400 }, + [38] = { 40.2, 29.1, 45, 400 }, + [39] = { 39.3, 27.8, 45, 400 }, + [40] = { 37.9, 26.9, 45, 400 }, + [41] = { 38.4, 25.4, 45, 400 }, + [42] = { 37.3, 24.6, 45, 400 }, + }, + ["lvl"] = "35-36", + }, + [2566] = { + ["coords"] = { + [1] = { 54.3, 81, 45, 400 }, + [2] = { 54.7, 80.4, 45, 400 }, + [3] = { 50.6, 79.8, 45, 400 }, + [4] = { 54.5, 78.6, 45, 400 }, + [5] = { 49.5, 78.6, 45, 400 }, + [6] = { 54.7, 78.3, 45, 400 }, + [7] = { 52, 76.8, 45, 400 }, + [8] = { 50.8, 76.6, 45, 400 }, + [9] = { 53.6, 76.2, 45, 400 }, + [10] = { 53.1, 75.9, 45, 400 }, + [11] = { 54.2, 75.6, 45, 400 }, + [12] = { 49.6, 75.5, 45, 400 }, + [13] = { 53.8, 74.6, 45, 400 }, + [14] = { 53.1, 74.5, 45, 400 }, + [15] = { 52.9, 74, 45, 400 }, + [16] = { 51.9, 74, 45, 400 }, + [17] = { 54.5, 73.8, 45, 400 }, + [18] = { 53.4, 72.9, 45, 400 }, + [19] = { 55.2, 72.7, 45, 400 }, + [20] = { 51.6, 72.7, 45, 400 }, + [21] = { 52.3, 71.5, 45, 400 }, + }, + ["lvl"] = "35-36", + }, + [2567] = { + ["coords"] = { + [1] = { 54.6, 81.3, 45, 400 }, + [2] = { 53.7, 80, 45, 400 }, + [3] = { 51.4, 77.8, 45, 400 }, + [4] = { 54.2, 77.7, 45, 400 }, + [5] = { 53, 77, 45, 400 }, + [6] = { 52.4, 75.6, 45, 400 }, + [7] = { 53.3, 74.4, 45, 400 }, + [8] = { 50.4, 74.3, 45, 400 }, + [9] = { 54.1, 71.8, 45, 400 }, + }, + ["lvl"] = "36-37", + }, + [2569] = { + ["coords"] = { + [1] = { 20.8, 69.1, 45, 400 }, + [2] = { 17.5, 68.4, 45, 400 }, + [3] = { 22.2, 67.7, 45, 400 }, + [4] = { 23, 66.8, 45, 400 }, + [5] = { 20, 66.7, 45, 400 }, + [6] = { 21.6, 66.7, 45, 400 }, + [7] = { 23.7, 65.8, 45, 400 }, + [8] = { 21.9, 65.4, 45, 400 }, + [9] = { 24.4, 62.2, 45, 400 }, + [10] = { 19.7, 66.5, 45, 0 }, + [11] = { 20.2, 67.1, 45, 0 }, + [12] = { 20.1, 67.9, 45, 0 }, + }, + ["lvl"] = "37-38", + ["rnk"] = "1", + }, + [2570] = { + ["coords"] = { + [1] = { 20.2, 69.1, 45, 400 }, + [2] = { 18.3, 68.6, 45, 400 }, + [3] = { 19.9, 68.5, 45, 400 }, + [4] = { 21.6, 68.4, 45, 400 }, + [5] = { 20, 67.5, 45, 400 }, + [6] = { 20.9, 67.4, 45, 400 }, + [7] = { 21.6, 67, 45, 400 }, + [8] = { 20.5, 66.7, 45, 400 }, + [9] = { 18.7, 66.5, 45, 400 }, + [10] = { 20.9, 65.7, 45, 400 }, + [11] = { 19.5, 64.6, 45, 400 }, + [12] = { 17.6, 68.5, 45, 0 }, + }, + ["lvl"] = "38-39", + ["rnk"] = "1", + }, + [2571] = { + ["coords"] = { + [1] = { 18.6, 69.2, 45, 400 }, + [2] = { 19.5, 69.1, 45, 400 }, + [3] = { 18.1, 68.9, 45, 400 }, + [4] = { 18, 68.3, 45, 400 }, + [5] = { 20.6, 68.3, 45, 400 }, + [6] = { 19.2, 67.7, 45, 400 }, + [7] = { 18.2, 67.4, 45, 400 }, + [8] = { 18.9, 65.9, 45, 400 }, + [9] = { 19.9, 65.7, 45, 400 }, + }, + ["lvl"] = "39-40", + ["rnk"] = "1", + }, + [2572] = { + ["coords"] = { + [1] = { 76, 44.4, 45, 400 }, + [2] = { 76.9, 44.3, 45, 400 }, + [3] = { 77.2, 43.5, 45, 400 }, + [4] = { 76.2, 42.5, 45, 400 }, + [5] = { 79.1, 41.5, 45, 400 }, + [6] = { 78.4, 41.2, 45, 400 }, + [7] = { 80, 40, 45, 400 }, + [8] = { 78, 39.9, 45, 400 }, + [9] = { 82.5, 38.9, 45, 400 }, + [10] = { 82.6, 38, 45, 400 }, + [11] = { 78.5, 37.8, 45, 400 }, + [12] = { 81.9, 37.2, 45, 400 }, + [13] = { 78.3, 36.9, 45, 400 }, + [14] = { 81.8, 35.9, 45, 400 }, + [15] = { 77.5, 35.6, 45, 400 }, + [16] = { 79.2, 35.6, 45, 400 }, + [17] = { 79.2, 34.9, 45, 400 }, + [18] = { 77.5, 34.9, 45, 400 }, + [19] = { 78.5, 34.5, 45, 400 }, + [20] = { 78.9, 34.4, 45, 400 }, + [21] = { 79.5, 33.1, 45, 400 }, + }, + ["lvl"] = "35-36", + }, + [2573] = { + ["coords"] = { + [1] = { 83.7, 33.7, 45, 400 }, + [2] = { 83.1, 33, 45, 400 }, + [3] = { 85.6, 32.5, 45, 400 }, + [4] = { 86.4, 31.5, 45, 400 }, + [5] = { 84.4, 30.8, 45, 400 }, + [6] = { 86.5, 30.2, 45, 400 }, + [7] = { 84.4, 29.9, 45, 400 }, + [8] = { 60.5, 90.3, 47, 400 }, + }, + ["lvl"] = "37-38", + }, + [2574] = { + ["coords"] = { + [1] = { 82.1, 36.1, 45, 400 }, + [2] = { 82.8, 36, 45, 400 }, + [3] = { 83.4, 35.4, 45, 400 }, + [4] = { 85, 34.3, 45, 400 }, + [5] = { 83.9, 34.1, 45, 400 }, + [6] = { 85.6, 33.1, 45, 400 }, + [7] = { 83.4, 32.1, 45, 400 }, + [8] = { 87, 31.6, 45, 400 }, + [9] = { 84.6, 31.4, 45, 400 }, + [10] = { 85.7, 31.2, 45, 400 }, + [11] = { 85.2, 31.2, 45, 400 }, + [12] = { 86, 30.2, 45, 400 }, + [13] = { 85.5, 30, 45, 400 }, + [14] = { 84.2, 28.9, 45, 400 }, + [15] = { 61.5, 90.4, 47, 400 }, + [16] = { 60.4, 89.4, 47, 400 }, + }, + ["lvl"] = "36-37", + }, + [2575] = { + ["coords"] = { + [1] = { 48.4, 87.5, 45, 400 }, + }, + ["lvl"] = "31-32", + }, + [2577] = { + ["coords"] = { + [1] = { 48.2, 88.1, 45, 400 }, + [2] = { 48.8, 87.7, 45, 400 }, + [3] = { 48, 87.2, 45, 400 }, + }, + ["lvl"] = "31-32", + }, + [2578] = { + ["coords"] = { + [1] = { 43.4, 61.2, 45, 400 }, + [2] = { 42.4, 56.6, 45, 400 }, + [3] = { 68.4, 53.2, 45, 400 }, + [4] = { 69.3, 52.4, 45, 400 }, + [5] = { 68.8, 49.6, 45, 400 }, + [6] = { 20.2, 47, 45, 400 }, + [7] = { 73.9, 46.6, 45, 400 }, + [8] = { 54.1, 46.2, 45, 400 }, + [9] = { 17.9, 43.6, 45, 400 }, + [10] = { 60, 41.5, 45, 400 }, + [11] = { 66.5, 40.8, 45, 400 }, + [12] = { 27.1, 38, 45, 400 }, + [13] = { 19.8, 37.4, 45, 400 }, + [14] = { 69.3, 37.2, 45, 400 }, + [15] = { 25.3, 35.1, 45, 400 }, + [16] = { 28.1, 34.4, 45, 400 }, + [17] = { 26.7, 24.8, 45, 400 }, + [18] = { 29.1, 19.8, 45, 400 }, + }, + ["lvl"] = "31-32", + }, + [2579] = { + ["coords"] = { + [1] = { 57.2, 71.7, 45, 400 }, + [2] = { 49.9, 69.9, 45, 400 }, + [3] = { 38.6, 69.6, 45, 400 }, + [4] = { 49.4, 67.7, 45, 400 }, + [5] = { 61.7, 65.6, 45, 400 }, + [6] = { 56.7, 64, 45, 400 }, + [7] = { 37.4, 62.3, 45, 400 }, + [8] = { 38.6, 62.2, 45, 400 }, + [9] = { 32.8, 59.3, 45, 400 }, + [10] = { 48.2, 40.1, 45, 400 }, + [11] = { 43, 35.6, 45, 400 }, + [12] = { 38.8, 29.8, 45, 400 }, + [13] = { 37.8, 25.1, 45, 400 }, + }, + ["lvl"] = "34-35", + }, + [2580] = { + ["coords"] = { + [1] = { 49.1, 82.5, 45, 400 }, + [2] = { 20.9, 75.2, 45, 400 }, + [3] = { 17, 72, 45, 400 }, + [4] = { 18.6, 71.3, 45, 400 }, + [5] = { 23.5, 70.6, 45, 400 }, + [6] = { 31.6, 69.4, 45, 400 }, + [7] = { 24.3, 68.9, 45, 400 }, + [8] = { 16, 64.5, 45, 400 }, + }, + ["lvl"] = "37-38", + }, + [2582] = { + ["coords"] = { + [1] = { 55.3, 41.1, 45, 400 }, + [2] = { 55, 40.7, 45, 400 }, + [3] = { 55.8, 40.6, 45, 400 }, + [4] = { 55.4, 40.5, 45, 400 }, + [5] = { 56.5, 40, 45, 400 }, + [6] = { 55.7, 40, 45, 400 }, + [7] = { 57, 39.9, 45, 400 }, + [8] = { 55, 39.9, 45, 400 }, + [9] = { 55.4, 39.9, 45, 400 }, + [10] = { 54.6, 39.8, 45, 400 }, + [11] = { 57.3, 39.6, 45, 400 }, + [12] = { 57.1, 39.6, 45, 400 }, + [13] = { 55.4, 39.4, 45, 400 }, + [14] = { 56.4, 39.3, 45, 400 }, + [15] = { 54.7, 39.3, 45, 400 }, + [16] = { 55, 39.2, 45, 400 }, + [17] = { 54, 39, 45, 400 }, + [18] = { 55.2, 38.9, 45, 400 }, + [19] = { 54.5, 38.4, 45, 400 }, + [20] = { 54, 38.4, 45, 400 }, + [21] = { 54.4, 37.8, 45, 400 }, + [22] = { 55, 37.6, 45, 400 }, + [23] = { 56.4, 36.5, 45, 400 }, + [24] = { 56.2, 36.4, 45, 400 }, + [25] = { 56.2, 35.7, 45, 400 }, + }, + ["fac"] = "A", + ["lvl"] = "30-31", + }, + [2583] = { + ["coords"] = { + [1] = { 23.3, 63.2, 45, 400 }, + [2] = { 23, 60.3, 45, 400 }, + [3] = { 23.6, 59.6, 45, 400 }, + [4] = { 24.4, 58.8, 45, 400 }, + [5] = { 25.2, 58.7, 45, 400 }, + [6] = { 24.8, 57.9, 45, 400 }, + [7] = { 23.8, 57.1, 45, 400 }, + }, + ["fac"] = "A", + ["lvl"] = "37-38", + ["rnk"] = "1", + }, + [2584] = { + ["coords"] = { + [1] = { 21, 62.6, 45, 400 }, + [2] = { 23.7, 60.7, 45, 400 }, + [3] = { 23.5, 60.5, 45, 400 }, + [4] = { 23.7, 60.3, 45, 400 }, + [5] = { 28.7, 59, 45, 400 }, + [6] = { 25.4, 58.4, 45, 400 }, + [7] = { 26.8, 58.3, 45, 400 }, + [8] = { 25.2, 58.1, 45, 400 }, + [9] = { 25.4, 58, 45, 400 }, + [10] = { 26.8, 57.9, 45, 400 }, + }, + ["fac"] = "A", + ["lvl"] = "38-39", + ["rnk"] = "1", + }, + [2585] = { + ["coords"] = { + [1] = { 21.2, 60.5, 45, 400 }, + [2] = { 28.9, 58.9, 45, 400 }, + [3] = { 27.3, 58.9, 45, 400 }, + [4] = { 27.7, 58.8, 45, 400 }, + [5] = { 28.2, 58.3, 45, 400 }, + [6] = { 22.9, 58.1, 45, 400 }, + [7] = { 28, 58, 45, 400 }, + [8] = { 27.5, 57.7, 45, 400 }, + [9] = { 24.9, 57.1, 45, 400 }, + }, + ["fac"] = "A", + ["lvl"] = "39-40", + ["rnk"] = "1", + }, + [2586] = { + ["coords"] = { + [1] = { 31.8, 33, 45, 400 }, + [2] = { 33.9, 32.9, 45, 400 }, + [3] = { 32.9, 32.4, 45, 400 }, + [4] = { 32.2, 31.9, 45, 400 }, + [5] = { 34.7, 31.7, 45, 400 }, + [6] = { 33.5, 31.5, 45, 400 }, + [7] = { 31.6, 31.2, 45, 400 }, + [8] = { 33.8, 30.8, 45, 400 }, + [9] = { 34.7, 29.9, 45, 400 }, + [10] = { 31, 29.8, 45, 400 }, + [11] = { 34, 29.5, 45, 400 }, + [12] = { 30.4, 28.9, 45, 400 }, + [13] = { 29.1, 28.4, 45, 400 }, + [14] = { 34.7, 28.3, 45, 400 }, + [15] = { 30.3, 28, 45, 400 }, + [16] = { 34.7, 27, 45, 400 }, + [17] = { 34.2, 27, 45, 400 }, + [18] = { 29.3, 26.9, 45, 400 }, + [19] = { 33.9, 26.5, 45, 400 }, + [20] = { 30.6, 25.7, 45, 400 }, + [21] = { 31.2, 25.5, 45, 400 }, + [22] = { 32.1, 24.8, 45, 400 }, + [23] = { 30.3, 24.3, 45, 400 }, + }, + ["lvl"] = "30-31", + }, + [2587] = { + ["coords"] = { + [1] = { 32.6, 31.2, 45, 400 }, + [2] = { 32.1, 31.2, 45, 400 }, + [3] = { 33.5, 30.8, 45, 400 }, + [4] = { 30.7, 28.4, 45, 400 }, + [5] = { 32.3, 28.3, 45, 400 }, + [6] = { 31.5, 28.3, 45, 400 }, + [7] = { 33.4, 27.6, 45, 400 }, + [8] = { 32.1, 26.8, 45, 400 }, + [9] = { 31.1, 26.3, 45, 400 }, + [10] = { 31.3, 26.2, 45, 400 }, + }, + ["lvl"] = "32-33", + }, + [2588] = { + ["coords"] = { + [1] = { 28.1, 66.2, 45, 400 }, + [2] = { 28.6, 65.8, 45, 400 }, + [3] = { 26.8, 65.6, 45, 400 }, + [4] = { 29.4, 65, 45, 400 }, + [5] = { 25.4, 64.5, 45, 400 }, + [6] = { 29.5, 64.4, 45, 400 }, + [7] = { 25.8, 64.2, 45, 400 }, + [8] = { 26.5, 63.6, 45, 400 }, + [9] = { 25.4, 63.4, 45, 400 }, + [10] = { 28.3, 63.4, 45, 400 }, + [11] = { 29.2, 62.8, 45, 400 }, + [12] = { 25.8, 62.5, 45, 400 }, + [13] = { 29.2, 62.3, 45, 400 }, + [14] = { 27.5, 62, 45, 400 }, + [15] = { 29.2, 61.3, 45, 400 }, + }, + ["lvl"] = "36-37", + ["rnk"] = "1", + }, + [2589] = { + ["coords"] = { + [1] = { 15.9, 38.7, 45, 300 }, + [2] = { 15.8, 38.5, 45, 300 }, + [3] = { 15.7, 38.5, 45, 300 }, + [4] = { 32.3, 31.2, 45, 400 }, + [5] = { 33, 31, 45, 400 }, + [6] = { 32.1, 30.9, 45, 400 }, + [7] = { 31.5, 30, 45, 400 }, + [8] = { 33.7, 29.8, 45, 400 }, + [9] = { 33.6, 29.3, 45, 400 }, + [10] = { 31, 28.8, 45, 400 }, + [11] = { 31, 27.9, 45, 400 }, + [12] = { 33.7, 27.3, 45, 400 }, + [13] = { 32.5, 26.7, 45, 400 }, + [14] = { 30.9, 26.2, 45, 400 }, + [15] = { 32.4, 25.9, 45, 400 }, + [16] = { 31.9, 25.6, 45, 400 }, + [17] = { 32.1, 25.3, 45, 400 }, + [18] = { 78.3, 68.6, 267, 300 }, + [19] = { 78.2, 68.4, 267, 300 }, + [20] = { 78.1, 68.4, 267, 300 }, + }, + ["lvl"] = "31-32", + }, + [2590] = { + ["coords"] = { + [1] = { 28.9, 65.9, 45, 400 }, + [2] = { 25.4, 65.9, 45, 400 }, + [3] = { 27.4, 65.6, 45, 400 }, + [4] = { 29.4, 65.1, 45, 400 }, + [5] = { 25.9, 65.1, 45, 400 }, + [6] = { 29, 65.1, 45, 400 }, + [7] = { 26, 63.8, 45, 400 }, + [8] = { 28.5, 62.6, 45, 400 }, + [9] = { 25.2, 62.6, 45, 400 }, + [10] = { 26.8, 62.2, 45, 400 }, + [11] = { 26.8, 60.9, 45, 400 }, + [12] = { 27.6, 60.3, 45, 400 }, + }, + ["lvl"] = "35-36", + ["rnk"] = "1", + }, + [2591] = { + ["coords"] = { + [1] = { 26, 65.4, 45, 400 }, + [2] = { 26.1, 65.3, 45, 400 }, + [3] = { 26.4, 65.2, 45, 400 }, + [4] = { 26.5, 64.5, 45, 400 }, + [5] = { 29.2, 63, 45, 400 }, + [6] = { 29.2, 62.3, 45, 400 }, + [7] = { 28.2, 60.6, 45, 400 }, + }, + ["lvl"] = "37-38", + ["rnk"] = "1", + }, + [2592] = { + ["coords"] = { + [1] = { 36.6, 60.8, 45, 400 }, + [2] = { 35.6, 60.5, 45, 400 }, + [3] = { 37.7, 60.5, 45, 400 }, + [4] = { 34.8, 60.5, 45, 400 }, + [5] = { 37.5, 59.2, 45, 400 }, + [6] = { 34.6, 59.1, 45, 400 }, + [7] = { 36.6, 58.9, 45, 400 }, + [8] = { 35.7, 58.8, 45, 400 }, + [9] = { 36.6, 57.6, 45, 400 }, + [10] = { 37.4, 57.6, 45, 400 }, + [11] = { 35.7, 57.5, 45, 400 }, + [12] = { 34.9, 57.4, 45, 400 }, + [13] = { 37.7, 56.4, 45, 400 }, + [14] = { 36.4, 56.1, 45, 400 }, + [15] = { 34.9, 55.9, 45, 400 }, + [16] = { 35.8, 55.6, 45, 400 }, + }, + ["lvl"] = "38-39", + }, + [2593] = "_", + [2594] = { + ["coords"] = { + [1] = { 26.7, 73.6, 33, 30 }, + }, + ["lvl"] = "37", + }, + [2595] = { + ["coords"] = { + [1] = { 33.8, 6.5, 11, 300 }, + [2] = { 33.7, 6.3, 11, 400 }, + [3] = { 31.6, 5.6, 11, 400 }, + [4] = { 27.4, 5.5, 11, 300 }, + [5] = { 25.5, 91.4, 45, 300 }, + [6] = { 25.5, 91.2, 45, 400 }, + [7] = { 23, 90.3, 45, 400 }, + [8] = { 18.2, 90.2, 45, 300 }, + [9] = { 22.4, 90.1, 45, 300 }, + [10] = { 21.1, 90, 45, 400 }, + [11] = { 22.4, 89.9, 45, 400 }, + [12] = { 21.1, 89.9, 45, 300 }, + [13] = { 21, 89.8, 45, 400 }, + [14] = { 25.1, 89.7, 45, 400 }, + [15] = { 25.1, 89.4, 45, 300 }, + [16] = { 24.1, 88.5, 45, 400 }, + [17] = { 17, 88.4, 45, 300 }, + [18] = { 23.2, 88.1, 45, 400 }, + [19] = { 25.5, 87.4, 45, 400 }, + [20] = { 20.2, 87.1, 45, 300 }, + [21] = { 20.1, 86.9, 45, 400 }, + [22] = { 22.6, 86.9, 45, 300 }, + [23] = { 21.1, 86.9, 45, 300 }, + [24] = { 21.8, 86.8, 45, 400 }, + [25] = { 19, 86.8, 45, 400 }, + [26] = { 19.1, 86.8, 45, 300 }, + [27] = { 22.6, 86.8, 45, 400 }, + [28] = { 20.7, 86.7, 45, 400 }, + [29] = { 24.5, 86.7, 45, 400 }, + [30] = { 23.3, 86.5, 45, 400 }, + [31] = { 21.9, 86.5, 45, 300 }, + [32] = { 23.4, 86.4, 45, 300 }, + [33] = { 21.8, 85.5, 45, 400 }, + [34] = { 20.6, 85.4, 45, 400 }, + [35] = { 24.6, 85.3, 45, 400 }, + [36] = { 25.4, 85.2, 45, 400 }, + [37] = { 18.9, 85, 45, 400 }, + [38] = { 23.5, 85, 45, 400 }, + [39] = { 23.4, 84.9, 45, 400 }, + [40] = { 23.3, 84.8, 45, 400 }, + [41] = { 23, 84.3, 45, 400 }, + [42] = { 21.2, 84.3, 45, 400 }, + [43] = { 20, 84, 45, 400 }, + [44] = { 21.9, 83.9, 45, 400 }, + [45] = { 19.1, 83.9, 45, 400 }, + }, + ["lvl"] = "38-39", + }, + [2596] = { + ["coords"] = { + [1] = { 21.9, 89.9, 45, 300 }, + [2] = { 23.8, 89.8, 45, 400 }, + [3] = { 21.8, 89.8, 45, 400 }, + [4] = { 18.2, 87, 45, 300 }, + [5] = { 20.7, 85, 45, 400 }, + [6] = { 23.7, 84.8, 45, 400 }, + [7] = { 20.5, 84.8, 45, 400 }, + [8] = { 22.7, 84.6, 45, 400 }, + [9] = { 22.4, 84.3, 45, 400 }, + [10] = { 21.3, 84.1, 45, 400 }, + }, + ["lvl"] = "39-40", + }, + [2598] = { + ["coords"] = { + [1] = { 27.4, 64.7, 45, 57600 }, + [2] = { 28.3, 62.4, 45, 57600 }, + [3] = { 25.2, 62.2, 45, 57600 }, + [4] = { 28.3, 60.7, 45, 57600 }, + }, + ["lvl"] = "39", + ["rnk"] = "2", + }, + [2600] = { + ["coords"] = { + [1] = { 32.3, 31, 45, 27000 }, + }, + ["lvl"] = "34", + ["rnk"] = "4", + }, + [2601] = { + ["coords"] = { + [1] = { 20.5, 68.6, 45, 172800 }, + }, + ["lvl"] = "42", + ["rnk"] = "2", + }, + [2602] = { + ["coords"] = { + [1] = { 18, 69.2, 45, 180000 }, + }, + ["lvl"] = "39", + ["rnk"] = "2", + }, + [2603] = { + ["coords"] = { + [1] = { 33.7, 44.1, 45, 27000 }, + }, + ["lvl"] = "36", + ["rnk"] = "4", + }, + [2604] = { + ["coords"] = { + [1] = { 53.8, 79.6, 45, 54000 }, + }, + ["lvl"] = "39", + ["rnk"] = "4", + }, + [2605] = { + ["coords"] = { + [1] = { 67.3, 80.9, 45, 252000 }, + [2] = { 66.8, 80.1, 45, 252000 }, + [3] = { 69.2, 79.7, 45, 252000 }, + [4] = { 67.9, 78.7, 45, 252000 }, + }, + ["lvl"] = "40", + ["rnk"] = "4", + }, + [2606] = { + ["coords"] = { + [1] = { 64.6, 73.7, 45, 27000 }, + [2] = { 70.8, 69.9, 45, 27000 }, + [3] = { 73.4, 65.3, 45, 27000 }, + [4] = { 66.1, 64.1, 45, 27000 }, + }, + ["lvl"] = "37", + ["rnk"] = "4", + }, + [2607] = { + ["coords"] = { + [1] = { 28.4, 58.1, 45, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "44", + ["rnk"] = "1", + }, + [2614] = "_", + [2615] = "_", + [2617] = "_", + [2618] = { + ["coords"] = { + [1] = { 62.7, 59.4, 45, 400 }, + [2] = { 63.3, 59.3, 45, 400 }, + [3] = { 60.6, 59.2, 45, 400 }, + [4] = { 63.1, 58.8, 45, 400 }, + [5] = { 63.6, 58.7, 45, 400 }, + [6] = { 59.7, 58.5, 45, 400 }, + [7] = { 61.8, 58.4, 45, 400 }, + [8] = { 61.2, 58.2, 45, 400 }, + [9] = { 63.4, 58.1, 45, 400 }, + [10] = { 62.7, 58, 45, 400 }, + [11] = { 61.5, 57.9, 45, 400 }, + [12] = { 60.7, 57.9, 45, 400 }, + [13] = { 63.5, 57.5, 45, 400 }, + [14] = { 63.1, 57.5, 45, 400 }, + [15] = { 61.2, 57.4, 45, 400 }, + [16] = { 61.9, 57.3, 45, 400 }, + [17] = { 59.9, 57.2, 45, 400 }, + [18] = { 59.4, 57.2, 45, 400 }, + [19] = { 60.7, 57.1, 45, 400 }, + [20] = { 61.3, 56.9, 45, 400 }, + [21] = { 59.8, 56.2, 45, 400 }, + [22] = { 62.3, 56.1, 45, 400 }, + [23] = { 62.6, 56.1, 45, 400 }, + [24] = { 60.3, 56, 45, 400 }, + [25] = { 62.5, 55.7, 45, 400 }, + [26] = { 61.9, 55.7, 45, 400 }, + [27] = { 61.5, 55.5, 45, 400 }, + }, + ["fac"] = "H", + ["lvl"] = "33-34", + }, + [2619] = { + ["coords"] = { + [1] = { 64.4, 60.8, 45, 400 }, + [2] = { 62.8, 60.5, 45, 400 }, + [3] = { 61.5, 60.1, 45, 400 }, + [4] = { 61.1, 60.1, 45, 400 }, + [5] = { 64, 58.3, 45, 400 }, + [6] = { 62.3, 58.3, 45, 400 }, + [7] = { 59.7, 57.1, 45, 400 }, + [8] = { 64.6, 56.2, 45, 400 }, + [9] = { 61, 56.1, 45, 400 }, + [10] = { 60.9, 56.1, 45, 400 }, + [11] = { 59.5, 56, 45, 400 }, + [12] = { 62.8, 55.7, 45, 400 }, + [13] = { 58.5, 55.6, 45, 400 }, + [14] = { 62.4, 54.3, 45, 400 }, + [15] = { 58.6, 54.1, 45, 400 }, + [16] = { 62.7, 52.9, 45, 400 }, + }, + ["fac"] = "H", + ["lvl"] = "34-35", + }, + [2620] = { + ["coords"] = { + [1] = { 43.2, 81.6, 17, 300 }, + [2] = { 41.4, 79.9, 17, 300 }, + [3] = { 46, 60.5, 17, 300 }, + [4] = { 48.8, 57.4, 17, 300 }, + [5] = { 52.8, 53.8, 17, 300 }, + [6] = { 59.3, 52.6, 17, 300 }, + [7] = { 42.7, 49.2, 17, 300 }, + [8] = { 60.9, 48.9, 17, 300 }, + [9] = { 52.8, 46.9, 17, 300 }, + [10] = { 41.9, 45.3, 17, 300 }, + [11] = { 44.8, 43.4, 17, 300 }, + [12] = { 47.3, 42.5, 17, 300 }, + [13] = { 43.3, 41.3, 17, 300 }, + [14] = { 35.9, 39.7, 17, 300 }, + [15] = { 53.4, 38.9, 17, 300 }, + [16] = { 55.3, 38.3, 17, 300 }, + [17] = { 58.6, 35, 17, 300 }, + [18] = { 55, 34.6, 17, 300 }, + [19] = { 51.6, 33.1, 17, 300 }, + [20] = { 31.7, 32.9, 17, 300 }, + [21] = { 49, 29.8, 17, 300 }, + [22] = { 41.8, 24.9, 17, 300 }, + [23] = { 44.3, 20.4, 17, 300 }, + [24] = { 41, 18.9, 17, 300 }, + [25] = { 53.4, 16.7, 17, 300 }, + [26] = { 42, 15.4, 17, 300 }, + [27] = { 39.1, 14, 17, 300 }, + [28] = { 48, 13.2, 17, 300 }, + [29] = { 53.3, 12.8, 17, 300 }, + [30] = { 51.1, 76.1, 40, 300 }, + [31] = { 38.8, 71.9, 40, 300 }, + [32] = { 51.5, 63.9, 40, 300 }, + [33] = { 36.8, 49.2, 40, 300 }, + [34] = { 61.5, 49, 40, 300 }, + [35] = { 49.6, 43.8, 40, 300 }, + [36] = { 60.8, 40.6, 40, 300 }, + [37] = { 49.6, 30.7, 40, 300 }, + [38] = { 49, 25.4, 40, 300 }, + [39] = { 48.4, 77.6, 45, 300 }, + [40] = { 39.3, 67.5, 45, 300 }, + [41] = { 49.9, 67.2, 45, 300 }, + [42] = { 57.6, 65.3, 45, 300 }, + [43] = { 33.5, 62.5, 45, 300 }, + [44] = { 46.1, 52.3, 45, 300 }, + [45] = { 68.8, 50.1, 45, 300 }, + [46] = { 22.1, 50.1, 45, 300 }, + [47] = { 17.5, 48.7, 45, 300 }, + [48] = { 56.6, 47.7, 45, 300 }, + [49] = { 40.5, 47.6, 45, 300 }, + [50] = { 72.1, 46.8, 45, 300 }, + [51] = { 28.3, 44.4, 45, 300 }, + [52] = { 63.8, 41.6, 45, 300 }, + [53] = { 30.7, 41.4, 45, 300 }, + [54] = { 37.3, 37.3, 45, 300 }, + [55] = { 45.7, 37.2, 45, 300 }, + [56] = { 77.8, 35.5, 45, 300 }, + [57] = { 68.3, 34.3, 45, 300 }, + [58] = { 54, 33.4, 45, 300 }, + [59] = { 63.9, 30.5, 45, 300 }, + [60] = { 37.6, 25.7, 45, 300 }, + [61] = { 27.3, 21.3, 45, 300 }, + [62] = { 43.7, 92.3, 215, 300 }, + [63] = { 50, 90.1, 215, 300 }, + [64] = { 56.4, 88.9, 215, 300 }, + [65] = { 41.7, 82.7, 215, 300 }, + [66] = { 46.1, 80.2, 215, 300 }, + [67] = { 35.4, 79.5, 215, 300 }, + [68] = { 52.2, 79, 215, 300 }, + [69] = { 48, 64.2, 215, 300 }, + [70] = { 57.5, 61.3, 215, 300 }, + [71] = { 57.4, 61.2, 215, 300 }, + [72] = { 51.8, 59.4, 215, 300 }, + [73] = { 50.2, 57.5, 215, 300 }, + [74] = { 35.6, 51.8, 215, 300 }, + [75] = { 45.2, 50.8, 215, 300 }, + [76] = { 54.6, 49.5, 215, 300 }, + [77] = { 36.2, 46.3, 215, 300 }, + [78] = { 45.4, 45.1, 215, 300 }, + [79] = { 39.7, 44.2, 215, 300 }, + [80] = { 33, 42, 215, 300 }, + [81] = { 51.3, 41.2, 215, 300 }, + [82] = { 39.4, 35.1, 215, 300 }, + [83] = { 47, 35, 215, 300 }, + [84] = { 53.6, 34, 215, 300 }, + [85] = { 34.1, 29.8, 215, 300 }, + [86] = { 55.6, 28.1, 215, 300 }, + [87] = { 59.6, 23.3, 215, 300 }, + [88] = { 51.6, 19, 215, 300 }, + [89] = { 39.3, 16.9, 215, 300 }, + [90] = { 51.4, 9.8, 215, 300 }, + [91] = { 80.1, 79.8, 267, 300 }, + [92] = { 86.4, 72.1, 405, 300 }, + [93] = { 87.5, 58.3, 405, 300 }, + [94] = { 29.6, 7.5, 1581, 300 }, + }, + ["lvl"] = "1", + }, + [2621] = { + ["coords"] = { + [1] = { 74.7, 38.4, 45, 400 }, + [2] = { 74.3, 38.2, 45, 400 }, + [3] = { 74.7, 37.7, 45, 400 }, + [4] = { 74.4, 37.4, 45, 400 }, + [5] = { 75.2, 36.6, 45, 400 }, + [6] = { 73.3, 36.4, 45, 400 }, + [7] = { 72.5, 35.2, 45, 400 }, + [8] = { 74.8, 35.1, 45, 400 }, + [9] = { 74.5, 34.7, 45, 400 }, + [10] = { 73, 33.5, 45, 400 }, + [11] = { 73.7, 32.1, 45, 400 }, + [12] = { 73.7, 31.7, 45, 400 }, + [13] = { 73.9, 31, 45, 400 }, + [14] = { 73.2, 30.4, 45, 400 }, + [15] = { 73.6, 30.3, 45, 400 }, + [16] = { 74.2, 30.3, 45, 400 }, + [17] = { 74.7, 30.3, 45, 400 }, + [18] = { 73.3, 30.3, 45, 400 }, + [19] = { 73.2, 29.7, 45, 400 }, + [20] = { 74.3, 29.1, 45, 400 }, + [21] = { 74.2, 29, 45, 400 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [2628] = { + ["coords"] = { + [1] = { 13.9, 77.6, 36, 300 }, + [2] = { 11.6, 77.5, 36, 300 }, + [3] = { 14.6, 75.8, 36, 300 }, + [4] = { 14.7, 75.6, 36, 300 }, + [5] = { 16.5, 74.9, 36, 300 }, + [6] = { 12.5, 74.9, 36, 300 }, + [7] = { 10.4, 74, 36, 300 }, + [8] = { 20, 71.8, 36, 300 }, + [9] = { 20.4, 58.1, 36, 300 }, + [10] = { 16.9, 56.4, 36, 300 }, + [11] = { 71.2, 57.6, 130, 300 }, + [12] = { 70.4, 55.3, 130, 300 }, + [13] = { 21, 16.4, 267, 300 }, + [14] = { 19, 16.3, 267, 300 }, + [15] = { 21.6, 14.8, 267, 300 }, + [16] = { 21.7, 14.6, 267, 300 }, + [17] = { 23.3, 14, 267, 300 }, + [18] = { 19.8, 13.9, 267, 300 }, + [19] = { 18, 13.2, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "33-34", + }, + [2637] = "_", + [2639] = { + ["coords"] = { + [1] = { 45.3, 69.5, 47, 350 }, + [2] = { 43.5, 68.3, 47, 350 }, + [3] = { 43.5, 67, 47, 350 }, + [4] = { 46.3, 66.9, 47, 350 }, + [5] = { 43.4, 65.4, 47, 350 }, + [6] = { 50.5, 64.4, 47, 350 }, + [7] = { 47.9, 63.3, 47, 350 }, + [8] = { 48.7, 63.2, 47, 350 }, + [9] = { 46.8, 61.9, 47, 350 }, + }, + ["lvl"] = "45-46", + }, + [2641] = { + ["coords"] = { + [1] = { 66, 71.1, 47, 350 }, + [2] = { 68.3, 70.9, 47, 350 }, + [3] = { 67.7, 70.8, 47, 350 }, + [4] = { 66.7, 70.7, 47, 350 }, + [5] = { 68.7, 70.6, 47, 350 }, + [6] = { 65.3, 67.5, 47, 350 }, + }, + ["lvl"] = "46-47", + ["rnk"] = "1", + }, + [2642] = { + ["coords"] = { + [1] = { 65.3, 73.4, 47, 350 }, + [2] = { 68, 73.2, 47, 350 }, + [3] = { 64.2, 72.2, 47, 350 }, + [4] = { 65.8, 72, 47, 350 }, + [5] = { 63.7, 71.4, 47, 350 }, + [6] = { 65, 71.3, 47, 350 }, + [7] = { 63.5, 65.8, 47, 350 }, + [8] = { 64.3, 65.7, 47, 350 }, + }, + ["lvl"] = "47-48", + ["rnk"] = "1", + }, + [2643] = { + ["coords"] = { + [1] = { 66.1, 73.5, 47, 350 }, + [2] = { 66.5, 72.9, 47, 350 }, + [3] = { 64.6, 72.7, 47, 350 }, + [4] = { 68.2, 72.6, 47, 350 }, + [5] = { 67.1, 71.9, 47, 350 }, + [6] = { 68.1, 71.8, 47, 350 }, + [7] = { 66.5, 71.8, 47, 350 }, + [8] = { 64.2, 71.7, 47, 350 }, + [9] = { 64, 70.6, 47, 350 }, + [10] = { 64.6, 70.5, 47, 350 }, + [11] = { 63.6, 70, 47, 350 }, + [12] = { 64.3, 69.9, 47, 350 }, + [13] = { 64.3, 67.5, 47, 350 }, + [14] = { 64.3, 66.6, 47, 350 }, + [15] = { 63.3, 66.6, 47, 350 }, + }, + ["lvl"] = "47-48", + ["rnk"] = "1", + }, + [2644] = { + ["coords"] = { + [1] = { 66.8, 80.3, 47, 350 }, + [2] = { 64, 78.6, 47, 350 }, + [3] = { 65, 77.1, 47, 350 }, + [4] = { 67.5, 76.2, 47, 350 }, + [5] = { 65.4, 75.6, 47, 350 }, + [6] = { 68.3, 75.3, 47, 350 }, + [7] = { 66, 74.5, 47, 350 }, + [8] = { 64.4, 74.1, 47, 350 }, + [9] = { 63.5, 73.1, 47, 350 }, + [10] = { 62.7, 70.8, 47, 350 }, + [11] = { 62.1, 69.2, 47, 350 }, + [12] = { 61.3, 67.9, 47, 350 }, + [13] = { 57.6, 66.6, 47, 350 }, + [14] = { 62.1, 66.4, 47, 350 }, + [15] = { 59.2, 66.1, 47, 350 }, + }, + ["lvl"] = "48-49", + ["rnk"] = "1", + }, + [2645] = { + ["coords"] = { + [1] = { 66.6, 77.3, 47, 350 }, + [2] = { 65, 75.8, 47, 350 }, + [3] = { 68, 75.8, 47, 350 }, + [4] = { 66, 75.5, 47, 350 }, + [5] = { 68, 74.7, 47, 350 }, + [6] = { 66.6, 74.4, 47, 350 }, + [7] = { 65, 74.4, 47, 350 }, + [8] = { 63.7, 73.7, 47, 350 }, + [9] = { 60.1, 73.1, 47, 350 }, + [10] = { 63.2, 73, 47, 350 }, + [11] = { 62.5, 72.2, 47, 350 }, + [12] = { 62.4, 71.5, 47, 350 }, + [13] = { 59.1, 71.3, 47, 350 }, + [14] = { 62.1, 70.2, 47, 350 }, + [15] = { 62.7, 68.7, 47, 350 }, + [16] = { 62, 68.3, 47, 350 }, + [17] = { 62.6, 66, 47, 350 }, + [18] = { 62.5, 65.3, 47, 350 }, + [19] = { 60, 65.1, 47, 350 }, + }, + ["lvl"] = "48-49", + ["rnk"] = "1", + }, + [2646] = { + ["coords"] = { + [1] = { 87.6, 23.2, 45, 350 }, + [2] = { 87.2, 22.5, 45, 350 }, + [3] = { 63.5, 84.1, 47, 350 }, + [4] = { 63.1, 83.4, 47, 350 }, + [5] = { 64.1, 83.2, 47, 350 }, + [6] = { 66, 82.4, 47, 350 }, + [7] = { 63.5, 82.2, 47, 350 }, + [8] = { 64.6, 82.2, 47, 350 }, + [9] = { 65.2, 82.1, 47, 350 }, + [10] = { 66.6, 81.3, 47, 350 }, + [11] = { 67, 80.9, 47, 350 }, + [12] = { 65.9, 80.4, 47, 350 }, + [13] = { 66.8, 80, 47, 350 }, + [14] = { 63.5, 79.7, 47, 350 }, + [15] = { 62.9, 78.2, 47, 350 }, + [16] = { 67, 78.1, 47, 350 }, + [17] = { 62.9, 77.8, 47, 350 }, + [18] = { 67.2, 77.5, 47, 350 }, + [19] = { 67.8, 77.5, 47, 350 }, + [20] = { 60.4, 74, 47, 350 }, + [21] = { 58.3, 72.8, 47, 350 }, + [22] = { 61.6, 72.5, 47, 350 }, + [23] = { 61.3, 72.2, 47, 350 }, + [24] = { 60.8, 68.7, 47, 350 }, + [25] = { 58.8, 68.3, 47, 350 }, + [26] = { 60.5, 68.2, 47, 350 }, + [27] = { 58.4, 68.1, 47, 350 }, + [28] = { 60.8, 67.8, 47, 350 }, + [29] = { 58.4, 67.1, 47, 350 }, + [30] = { 60.5, 64.6, 47, 350 }, + }, + ["lvl"] = "49-50", + ["rnk"] = "1", + }, + [2648] = { + ["coords"] = { + [1] = { 81, 25.9, 45, 350 }, + [2] = { 80.9, 25.2, 45, 350 }, + [3] = { 79.9, 24.1, 45, 350 }, + [4] = { 79.3, 24, 45, 350 }, + [5] = { 80.9, 23.8, 45, 350 }, + [6] = { 80.9, 23.3, 45, 350 }, + [7] = { 77.9, 23.1, 45, 350 }, + [8] = { 79.7, 22.9, 45, 350 }, + [9] = { 80.5, 22.6, 45, 350 }, + [10] = { 81.6, 22.3, 45, 350 }, + [11] = { 82, 21.5, 45, 350 }, + [12] = { 79.6, 21.1, 45, 350 }, + [13] = { 85.3, 20.7, 45, 350 }, + [14] = { 85.7, 20.5, 45, 350 }, + [15] = { 81.3, 20.5, 45, 350 }, + [16] = { 81.3, 20.1, 45, 350 }, + [17] = { 80, 19.9, 45, 350 }, + [18] = { 81.3, 19.7, 45, 350 }, + [19] = { 83.9, 19.3, 45, 350 }, + [20] = { 81.6, 18.5, 45, 350 }, + [21] = { 82.4, 18, 45, 350 }, + [22] = { 83.5, 17.8, 45, 350 }, + [23] = { 82.6, 16.4, 45, 350 }, + [24] = { 81.7, 15.3, 45, 350 }, + [25] = { 57.3, 86.6, 47, 350 }, + [26] = { 57.2, 85.9, 47, 350 }, + [27] = { 56.4, 84.9, 47, 350 }, + [28] = { 55.7, 84.8, 47, 350 }, + [29] = { 57.3, 84.6, 47, 350 }, + [30] = { 57.3, 84.1, 47, 350 }, + [31] = { 54.5, 84, 47, 350 }, + [32] = { 56.1, 83.7, 47, 350 }, + [33] = { 56.9, 83.5, 47, 350 }, + [34] = { 57.9, 83.2, 47, 350 }, + [35] = { 58.3, 82.4, 47, 350 }, + [36] = { 56, 82, 47, 350 }, + [37] = { 64.9, 81.8, 47, 350 }, + [38] = { 61.4, 81.7, 47, 350 }, + [39] = { 61.7, 81.5, 47, 350 }, + [40] = { 57.7, 81.5, 47, 350 }, + [41] = { 57.6, 81.2, 47, 350 }, + [42] = { 56.4, 80.9, 47, 350 }, + [43] = { 57.6, 80.7, 47, 350 }, + [44] = { 60.1, 80.4, 47, 350 }, + [45] = { 57.9, 79.6, 47, 350 }, + [46] = { 58.7, 79.2, 47, 350 }, + [47] = { 59.7, 79, 47, 350 }, + [48] = { 58.9, 77.7, 47, 350 }, + [49] = { 58, 76.6, 47, 350 }, + [50] = { 57.1, 68.8, 47, 350 }, + [51] = { 57.1, 68, 47, 350 }, + }, + ["lvl"] = "50-51", + ["rnk"] = "1", + }, + [2649] = { + ["coords"] = { + [1] = { 25.1, 60.3, 47, 350 }, + [2] = { 24.6, 59.1, 47, 350 }, + [3] = { 24.1, 58.8, 47, 350 }, + [4] = { 23.1, 58.5, 47, 350 }, + [5] = { 25.2, 58, 47, 350 }, + [6] = { 23, 57.9, 47, 350 }, + [7] = { 22.4, 57.7, 47, 350 }, + [8] = { 21.8, 57.5, 47, 350 }, + [9] = { 23.7, 56.6, 47, 350 }, + [10] = { 25.5, 56.1, 47, 350 }, + [11] = { 24.3, 55.3, 47, 350 }, + [12] = { 21.9, 55.2, 47, 350 }, + [13] = { 22.9, 55.2, 47, 350 }, + }, + ["lvl"] = "40-41", + }, + [2650] = { + ["coords"] = { + [1] = { 24.5, 60.2, 47, 350 }, + [2] = { 25.3, 59, 47, 350 }, + [3] = { 23.7, 58.5, 47, 350 }, + [4] = { 22.8, 58.3, 47, 350 }, + [5] = { 23.7, 57.3, 47, 350 }, + [6] = { 24.6, 56.7, 47, 350 }, + [7] = { 21.8, 56.7, 47, 350 }, + [8] = { 22.8, 56.2, 47, 350 }, + [9] = { 23.6, 55.4, 47, 350 }, + }, + ["lvl"] = "41-42", + }, + [2651] = { + ["coords"] = { + [1] = { 29.8, 61.3, 47, 350 }, + [2] = { 29.7, 60.3, 47, 350 }, + [3] = { 30.5, 60.1, 47, 350 }, + [4] = { 31.5, 59.9, 47, 350 }, + [5] = { 28, 58.9, 47, 350 }, + [6] = { 32.8, 58.9, 47, 350 }, + [7] = { 32.2, 58.6, 47, 350 }, + [8] = { 31.1, 58.5, 47, 350 }, + [9] = { 33, 58.3, 47, 350 }, + [10] = { 31.7, 58.2, 47, 350 }, + [11] = { 29.6, 58, 47, 350 }, + [12] = { 28, 58, 47, 350 }, + [13] = { 30.6, 57.7, 47, 350 }, + [14] = { 31.9, 57.6, 47, 350 }, + [15] = { 32.7, 57.3, 47, 350 }, + [16] = { 30.6, 56.7, 47, 350 }, + [17] = { 28.7, 56.5, 47, 350 }, + [18] = { 31.6, 56.5, 47, 350 }, + }, + ["lvl"] = "42-43", + }, + [2652] = { + ["coords"] = { + [1] = { 30.3, 61.6, 47, 350 }, + [2] = { 32.6, 59.8, 47, 350 }, + [3] = { 29.7, 58.9, 47, 350 }, + [4] = { 32, 58.4, 47, 350 }, + [5] = { 31.7, 58, 47, 350 }, + [6] = { 32.3, 57.9, 47, 350 }, + [7] = { 31.2, 57.4, 47, 350 }, + [8] = { 29.9, 56.6, 47, 350 }, + }, + ["lvl"] = "43", + }, + [2653] = { + ["coords"] = { + [1] = { 53.9, 14.4, 45, 350 }, + [2] = { 54.9, 14.3, 45, 350 }, + [3] = { 54.6, 13.9, 45, 350 }, + [4] = { 32, 75.8, 47, 350 }, + [5] = { 32.9, 75.7, 47, 350 }, + [6] = { 32.7, 75.3, 47, 350 }, + [7] = { 35, 72.8, 47, 350 }, + [8] = { 36.9, 72.2, 47, 350 }, + [9] = { 36.6, 71.5, 47, 350 }, + [10] = { 30.6, 71.4, 47, 350 }, + [11] = { 36.9, 70.8, 47, 350 }, + [12] = { 32, 70.2, 47, 350 }, + [13] = { 32.3, 67.9, 47, 350 }, + [14] = { 31.7, 67.9, 47, 350 }, + [15] = { 32.6, 67, 47, 350 }, + [16] = { 25.4, 66.4, 47, 350 }, + [17] = { 39.7, 66.4, 47, 350 }, + [18] = { 36.7, 66.1, 47, 350 }, + [19] = { 40.3, 66, 47, 350 }, + [20] = { 25.6, 65.9, 47, 350 }, + [21] = { 35.7, 65.9, 47, 350 }, + [22] = { 35.3, 63.5, 47, 350 }, + [23] = { 36.5, 63, 47, 350 }, + }, + ["lvl"] = "44-45", + }, + [2654] = { + ["coords"] = { + [1] = { 54.4, 15, 45, 350 }, + [2] = { 32.5, 76.3, 47, 350 }, + [3] = { 36, 72.8, 47, 350 }, + [4] = { 37, 71.6, 47, 350 }, + [5] = { 32.1, 67, 47, 350 }, + [6] = { 40, 65.8, 47, 350 }, + }, + ["lvl"] = "45-46", + }, + [2655] = { + ["coords"] = { + [1] = { 48.9, 55.4, 47, 350 }, + [2] = { 50.3, 54.8, 47, 350 }, + [3] = { 47.7, 53.8, 47, 350 }, + [4] = { 48.7, 53.1, 47, 350 }, + [5] = { 48.4, 51.8, 47, 350 }, + [6] = { 49.3, 51.5, 47, 350 }, + [7] = { 48.2, 50, 47, 350 }, + [8] = { 49, 48.7, 47, 350 }, + [9] = { 50.2, 47.7, 47, 350 }, + [10] = { 49.7, 47.5, 47, 350 }, + [11] = { 48.9, 47.1, 47, 350 }, + [12] = { 49.5, 46.5, 47, 350 }, + [13] = { 55.7, 44.6, 47, 350 }, + [14] = { 55.8, 44.5, 47, 350 }, + [15] = { 56.9, 44.3, 47, 350 }, + [16] = { 45.7, 44.2, 47, 350 }, + [17] = { 57.2, 44.1, 47, 350 }, + [18] = { 55.5, 44, 47, 350 }, + [19] = { 43.8, 43.8, 47, 350 }, + [20] = { 57.8, 43.7, 47, 350 }, + [21] = { 46.8, 43.7, 47, 350 }, + [22] = { 56.9, 43.6, 47, 350 }, + [23] = { 45.8, 43, 47, 350 }, + [24] = { 59.8, 43, 47, 350 }, + [25] = { 57.5, 42.8, 47, 350 }, + [26] = { 46.3, 42.7, 47, 350 }, + [27] = { 45.2, 42.6, 47, 350 }, + [28] = { 47.2, 42.4, 47, 350 }, + [29] = { 48, 42.2, 47, 350 }, + [30] = { 56.7, 42.2, 47, 350 }, + [31] = { 59.1, 42.2, 47, 350 }, + [32] = { 60.3, 42, 47, 350 }, + [33] = { 44.9, 42, 47, 350 }, + [34] = { 59.5, 42, 47, 350 }, + [35] = { 57.5, 41.9, 47, 350 }, + [36] = { 47, 41.5, 47, 350 }, + [37] = { 59.9, 41.3, 47, 350 }, + [38] = { 44.9, 41.1, 47, 350 }, + [39] = { 57.4, 41, 47, 350 }, + [40] = { 48.6, 41, 47, 350 }, + [41] = { 46.2, 40.9, 47, 350 }, + [42] = { 56.7, 40.8, 47, 350 }, + [43] = { 47.7, 40.7, 47, 350 }, + [44] = { 58.1, 40.7, 47, 350 }, + [45] = { 46.4, 39.9, 47, 350 }, + [46] = { 57.5, 38.8, 47, 350 }, + }, + ["lvl"] = "46-47", + }, + [2656] = { + ["coords"] = { + [1] = { 49.4, 53.1, 47, 350 }, + [2] = { 51.2, 52.9, 47, 350 }, + [3] = { 47.6, 51.6, 47, 350 }, + [4] = { 50.1, 51.1, 47, 350 }, + [5] = { 49.5, 48.6, 47, 350 }, + [6] = { 48.2, 48.1, 47, 350 }, + [7] = { 57.5, 45.9, 47, 350 }, + [8] = { 58.1, 45.7, 47, 350 }, + [9] = { 56.5, 45, 47, 350 }, + [10] = { 58.3, 44.7, 47, 350 }, + [11] = { 56.6, 44.7, 47, 350 }, + [12] = { 57.4, 44.6, 47, 350 }, + [13] = { 57.4, 43.6, 47, 350 }, + [14] = { 58.4, 43.5, 47, 350 }, + [15] = { 59.4, 43.4, 47, 350 }, + [16] = { 56.5, 43.4, 47, 350 }, + [17] = { 59.2, 43.3, 47, 350 }, + [18] = { 56.9, 43, 47, 350 }, + [19] = { 44.7, 42.9, 47, 350 }, + [20] = { 56, 42.7, 47, 350 }, + [21] = { 57.8, 42.7, 47, 350 }, + [22] = { 58.4, 42.6, 47, 350 }, + [23] = { 56.6, 42.6, 47, 350 }, + [24] = { 60.3, 42.5, 47, 350 }, + [25] = { 56.3, 42.3, 47, 350 }, + [26] = { 59, 42.3, 47, 350 }, + [27] = { 58.5, 42.2, 47, 350 }, + [28] = { 57, 42.1, 47, 350 }, + [29] = { 57.9, 41.7, 47, 350 }, + [30] = { 47.5, 41.6, 47, 350 }, + [31] = { 58.3, 41.6, 47, 350 }, + [32] = { 57, 41, 47, 350 }, + [33] = { 55.6, 41, 47, 350 }, + [34] = { 58.2, 40.9, 47, 350 }, + [35] = { 58.9, 40.8, 47, 350 }, + [36] = { 45.5, 40.4, 47, 350 }, + [37] = { 46.8, 40.1, 47, 350 }, + [38] = { 57.6, 39.9, 47, 350 }, + [39] = { 58.2, 39.7, 47, 350 }, + [40] = { 46.1, 39.6, 47, 350 }, + [41] = { 45.6, 39.3, 47, 350 }, + [42] = { 59.2, 39.2, 47, 350 }, + [43] = { 56.2, 39, 47, 350 }, + [44] = { 58.3, 38.5, 47, 350 }, + [45] = { 45.5, 38.3, 47, 350 }, + }, + ["lvl"] = "47-48", + }, + [2662] = "_", + [2663] = { + ["coords"] = { + [1] = { 28.1, 74.4, 33, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "42", + }, + [2665] = "_", + [2670] = { + ["coords"] = { + [1] = { 28.7, 76.9, 33, 30 }, + }, + ["lvl"] = "43", + }, + [2676] = { + ["coords"] = {}, + ["lvl"] = "19-41", + }, + [2681] = { + ["coords"] = { + [1] = { 86, 22.2, 45, 350 }, + [2] = { 85.7, 18.8, 45, 350 }, + [3] = { 84.7, 18.7, 45, 350 }, + [4] = { 84.5, 17.7, 45, 350 }, + [5] = { 84.7, 16.1, 45, 350 }, + [6] = { 83.9, 16, 45, 350 }, + [7] = { 82.2, 14.6, 45, 350 }, + [8] = { 62, 83.1, 47, 350 }, + [9] = { 61.8, 79.9, 47, 350 }, + [10] = { 60.8, 79.8, 47, 350 }, + [11] = { 60.6, 78.9, 47, 350 }, + [12] = { 60.8, 77.4, 47, 350 }, + [13] = { 60.1, 77.3, 47, 350 }, + [14] = { 60, 76, 47, 350 }, + [15] = { 58.4, 76, 47, 350 }, + [16] = { 58.9, 75.5, 47, 350 }, + [17] = { 58.8, 64.9, 47, 350 }, + [18] = { 58.6, 64.5, 47, 350 }, + }, + ["lvl"] = "50-51", + ["rnk"] = "1", + }, + [2683] = { + ["coords"] = { + [1] = { 21.9, 31.9, 1, 300 }, + [2] = { 52.9, 30.8, 721, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "24", + }, + [2686] = { + ["coords"] = { + [1] = { 53.2, 12.6, 45, 350 }, + [2] = { 52.4, 12.1, 45, 350 }, + [3] = { 35.5, 74.4, 47, 350 }, + [4] = { 31.3, 74.1, 47, 350 }, + [5] = { 35.1, 73.7, 47, 350 }, + [6] = { 30.6, 73.6, 47, 350 }, + [7] = { 33.3, 73.6, 47, 350 }, + [8] = { 32.1, 73.3, 47, 350 }, + [9] = { 31, 72.5, 47, 350 }, + [10] = { 32, 71.4, 47, 350 }, + [11] = { 35.3, 71.4, 47, 350 }, + [12] = { 29.5, 70.7, 47, 350 }, + [13] = { 31, 70.6, 47, 350 }, + [14] = { 30.7, 69.7, 47, 350 }, + [15] = { 33.3, 69.3, 47, 350 }, + [16] = { 36.5, 68.3, 47, 350 }, + [17] = { 34.8, 68.3, 47, 350 }, + [18] = { 37.7, 67.7, 47, 350 }, + [19] = { 34.4, 66.8, 47, 350 }, + [20] = { 35.8, 64.7, 47, 350 }, + [21] = { 37, 63.8, 47, 350 }, + [22] = { 34.8, 63.2, 47, 350 }, + }, + ["lvl"] = "44-45", + }, + [2689] = "_", + [2690] = "_", + [2691] = { + ["coords"] = { + [1] = { 31.2, 51.7, 47, 350 }, + [2] = { 33, 51.5, 47, 350 }, + [3] = { 32.3, 51.5, 47, 350 }, + [4] = { 29.6, 51.4, 47, 350 }, + [5] = { 30.5, 51.4, 47, 350 }, + [6] = { 28.7, 51.2, 47, 350 }, + [7] = { 33.9, 50, 47, 350 }, + [8] = { 34.1, 48.8, 47, 350 }, + [9] = { 33.3, 47.3, 47, 350 }, + [10] = { 34, 44.6, 47, 350 }, + [11] = { 33.9, 43.2, 47, 350 }, + [12] = { 33.1, 42.2, 47, 350 }, + }, + ["fac"] = "A", + ["lvl"] = "43-44", + }, + [2692] = { + ["coords"] = { + [1] = { 32.2, 50.3, 47, 350 }, + [2] = { 30.4, 50.1, 47, 350 }, + [3] = { 33, 50.1, 47, 350 }, + [4] = { 29.7, 50.1, 47, 350 }, + [5] = { 31.9, 49.5, 47, 350 }, + [6] = { 30.7, 49, 47, 350 }, + [7] = { 31.5, 48.9, 47, 350 }, + [8] = { 31.8, 48.3, 47, 350 }, + [9] = { 33.3, 48.2, 47, 350 }, + [10] = { 33.4, 48.2, 47, 350 }, + [11] = { 33.2, 46, 47, 350 }, + [12] = { 33.2, 44.6, 47, 350 }, + [13] = { 33.2, 43.5, 47, 350 }, + }, + ["fac"] = "A", + ["lvl"] = "44-45", + }, + [2693] = { + ["coords"] = { + [1] = { 29.3, 49.6, 47, 350 }, + [2] = { 29.2, 48.5, 47, 350 }, + [3] = { 29.8, 48.5, 47, 350 }, + [4] = { 31.3, 48.3, 47, 350 }, + [5] = { 31.5, 47.5, 47, 350 }, + [6] = { 32.3, 47.4, 47, 350 }, + [7] = { 28.6, 46.5, 47, 350 }, + [8] = { 28.3, 46.3, 47, 350 }, + [9] = { 32, 46.2, 47, 350 }, + [10] = { 31.4, 43.4, 47, 350 }, + [11] = { 32.1, 43.3, 47, 350 }, + [12] = { 32.3, 42.7, 47, 350 }, + }, + ["fac"] = "A", + ["lvl"] = "45-46", + }, + [2694] = { + ["coords"] = { + [1] = { 30.3, 48.7, 47, 350 }, + [2] = { 30.6, 48.4, 47, 350 }, + [3] = { 30.8, 47.6, 47, 350 }, + [4] = { 31, 47.5, 47, 350 }, + [5] = { 31.8, 47.1, 47, 350 }, + [6] = { 28.8, 46, 47, 350 }, + [7] = { 28.5, 45.4, 47, 350 }, + [8] = { 30.5, 43.4, 47, 350 }, + [9] = { 29.8, 43.3, 47, 350 }, + }, + ["fac"] = "A", + ["lvl"] = "46-47", + }, + [2695] = { + ["coords"] = { + [1] = { 63.5, 67.3, 1537, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [2696] = { + ["coords"] = { + [1] = { 49.2, 7.6, 11, 30 }, + [2] = { 43.2, 92.6, 45, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2697] = { + ["coords"] = { + [1] = { 27.7, 46.5, 44, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "31", + }, + [2700] = { + ["coords"] = { + [1] = { 45.8, 47.6, 45, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "41", + }, + [2701] = { + ["coords"] = { + [1] = { 61.9, 70.2, 3, 300 }, + [2] = { 62.5, 68.4, 3, 300 }, + [3] = { 29.4, 56.8, 3, 300 }, + [4] = { 29.9, 56.4, 3, 300 }, + }, + ["lvl"] = "38-39", + }, + [2702] = "_", + [2703] = { + ["coords"] = { + [1] = { 73.8, 34, 45, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [2706] = { + ["coords"] = { + [1] = { 74.7, 36.3, 45, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [2708] = { + ["coords"] = { + [1] = { 50.5, 87.5, 1519, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [2709] = "_", + [2710] = "_", + [2711] = { + ["coords"] = { + [1] = { 50.3, 59, 267, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "36", + }, + [2712] = { + ["coords"] = { + [1] = { 60.2, 53.8, 45, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "38", + }, + [2715] = { + ["coords"] = { + [1] = { 62.9, 69.6, 3, 300 }, + [2] = { 29.6, 57.4, 3, 300 }, + }, + ["lvl"] = "39-40", + }, + [2716] = { + ["coords"] = { + [1] = { 8.1, 78.2, 3, 300 }, + [2] = { 10.6, 77.6, 3, 300 }, + [3] = { 12.2, 76, 3, 300 }, + [4] = { 12.5, 74.4, 3, 300 }, + [5] = { 10.6, 73.9, 3, 300 }, + [6] = { 12.8, 73.7, 3, 300 }, + [7] = { 8, 72.3, 3, 300 }, + }, + ["lvl"] = "40-41", + }, + [2717] = { + ["coords"] = { + [1] = { 9.6, 83.9, 3, 300 }, + [2] = { 8, 82, 3, 300 }, + [3] = { 9.9, 82, 3, 300 }, + [4] = { 9.4, 80.5, 3, 300 }, + [5] = { 14, 76, 3, 300 }, + [6] = { 10.7, 75.9, 3, 300 }, + [7] = { 9.4, 75.7, 3, 300 }, + [8] = { 13.5, 75.5, 3, 300 }, + [9] = { 13.7, 74.1, 3, 300 }, + [10] = { 8, 73.8, 3, 300 }, + [11] = { 13, 73.7, 3, 300 }, + }, + ["lvl"] = "41-42", + }, + [2718] = { + ["coords"] = { + [1] = { 9.4, 86.3, 3, 300 }, + [2] = { 8.1, 83.9, 3, 300 }, + [3] = { 11, 80.1, 3, 300 }, + [4] = { 9.5, 77.8, 3, 300 }, + [5] = { 8.3, 76.2, 3, 300 }, + [6] = { 13.7, 75, 3, 300 }, + [7] = { 12.3, 74.9, 3, 300 }, + }, + ["lvl"] = "42-43", + }, + [2723] = { + ["coords"] = { + [1] = { 41.6, 28.2, 3, 300 }, + [2] = { 39.7, 27.6, 3, 300 }, + [3] = { 40.2, 27.3, 3, 300 }, + [4] = { 41.7, 26.7, 3, 300 }, + [5] = { 40.7, 26.5, 3, 300 }, + [6] = { 61, 99.8, 1337, 300 }, + [7] = { 19.3, 96.4, 5602, 300 }, + [8] = { 18.5, 96.1, 5602, 300 }, + [9] = { 18.7, 95.9, 5602, 300 }, + [10] = { 19.4, 95.6, 5602, 300 }, + [11] = { 18.9, 95.6, 5602, 300 }, + }, + ["lvl"] = "38-39", + }, + [2725] = { + ["coords"] = { + [1] = { 74.2, 67.6, 3, 300 }, + [2] = { 75.2, 66, 3, 300 }, + [3] = { 72.2, 64.6, 3, 300 }, + [4] = { 77.2, 63.4, 3, 300 }, + [5] = { 73.2, 62.9, 3, 300 }, + [6] = { 72.3, 57.4, 3, 300 }, + [7] = { 79.9, 56.7, 3, 300 }, + [8] = { 69.7, 53.8, 3, 300 }, + [9] = { 72.8, 52.4, 3, 300 }, + [10] = { 71.1, 51.7, 3, 300 }, + [11] = { 82.7, 42.9, 3, 300 }, + [12] = { 84.1, 39.7, 3, 300 }, + [13] = { 82.1, 39.1, 3, 300 }, + [14] = { 80.7, 37.4, 3, 300 }, + [15] = { 79.4, 35.6, 3, 300 }, + [16] = { 82.4, 34.6, 3, 300 }, + [17] = { 77.9, 34.4, 3, 300 }, + [18] = { 83.3, 33.7, 3, 300 }, + [19] = { 83.2, 32.7, 3, 300 }, + [20] = { 76.3, 32.7, 3, 300 }, + [21] = { 81.4, 32.7, 3, 300 }, + [22] = { 81.4, 30.7, 3, 300 }, + [23] = { 83.7, 30.5, 3, 300 }, + [24] = { 81.4, 30.1, 3, 300 }, + [25] = { 84.8, 29.8, 3, 300 }, + [26] = { 84.5, 28.6, 3, 300 }, + [27] = { 36.8, 99.8, 5602, 300 }, + [28] = { 38.2, 99.3, 5602, 300 }, + [29] = { 36.1, 99.2, 5602, 300 }, + [30] = { 38.6, 98.9, 5602, 300 }, + [31] = { 38.6, 98.4, 5602, 300 }, + [32] = { 35.4, 98.4, 5602, 300 }, + [33] = { 37.7, 98.4, 5602, 300 }, + [34] = { 37.7, 97.5, 5602, 300 }, + [35] = { 38.8, 97.4, 5602, 300 }, + [36] = { 37.7, 97.2, 5602, 300 }, + [37] = { 39.3, 97.1, 5602, 300 }, + [38] = { 39.2, 96.5, 5602, 300 }, + [39] = { 39.8, 96.4, 5602, 300 }, + }, + ["lvl"] = "41-43", + }, + [2726] = { + ["coords"] = { + [1] = { 83.3, 57.7, 3, 600 }, + [2] = { 84.7, 55.8, 3, 600 }, + [3] = { 82.2, 55.8, 3, 600 }, + [4] = { 77.4, 53.8, 3, 600 }, + [5] = { 80.4, 53.6, 3, 600 }, + [6] = { 83.2, 53.5, 3, 600 }, + [7] = { 79.2, 52.3, 3, 600 }, + [8] = { 82.1, 51.7, 3, 600 }, + [9] = { 80.3, 50, 3, 600 }, + [10] = { 81.8, 47.9, 3, 600 }, + [11] = { 79.7, 47.9, 3, 600 }, + [12] = { 81, 45.5, 3, 600 }, + }, + ["lvl"] = "43-45", + ["rnk"] = "1", + }, + [2727] = { + ["coords"] = { + [1] = { 53.2, 52, 3, 300 }, + [2] = { 51.2, 50.9, 3, 300 }, + [3] = { 55, 49.9, 3, 300 }, + [4] = { 48.4, 49.8, 3, 300 }, + [5] = { 46.9, 48.3, 3, 300 }, + [6] = { 55, 48.1, 3, 300 }, + [7] = { 53.7, 48, 3, 300 }, + [8] = { 58.1, 46.5, 3, 300 }, + [9] = { 49.8, 46.2, 3, 300 }, + [10] = { 49.6, 46.1, 3, 300 }, + [11] = { 46.7, 44.1, 3, 300 }, + [12] = { 48.9, 42.4, 3, 300 }, + [13] = { 49.9, 41.9, 3, 300 }, + [14] = { 49.8, 41.5, 3, 300 }, + [15] = { 50.3, 40, 3, 300 }, + [16] = { 47.8, 39.8, 3, 300 }, + [17] = { 52.8, 39.2, 3, 300 }, + [18] = { 51, 38.1, 3, 300 }, + [19] = { 48.3, 38, 3, 300 }, + [20] = { 46.9, 36, 3, 300 }, + [21] = { 50.2, 35.2, 3, 300 }, + [22] = { 48.5, 34.5, 3, 300 }, + [23] = { 54.9, 24.8, 3, 300 }, + [24] = { 52.4, 24.7, 3, 300 }, + [25] = { 53.7, 22.2, 3, 300 }, + [26] = { 52.3, 20.5, 3, 300 }, + [27] = { 53.8, 17.5, 3, 300 }, + [28] = { 52.9, 14.6, 3, 300 }, + [29] = { 21.8, 99.9, 5602, 300 }, + [30] = { 23.3, 99.6, 5602, 300 }, + [31] = { 22.5, 99.3, 5602, 300 }, + [32] = { 25.5, 94.8, 5602, 300 }, + [33] = { 24.3, 94.7, 5602, 300 }, + [34] = { 24.9, 93.6, 5602, 300 }, + [35] = { 24.3, 92.8, 5602, 300 }, + [36] = { 25, 91.4, 5602, 300 }, + [37] = { 24.5, 90.1, 5602, 300 }, + }, + ["lvl"] = "35-36", + }, + [2728] = { + ["coords"] = { + [1] = { 48.6, 76.2, 3, 300 }, + [2] = { 54.2, 74.7, 3, 300 }, + [3] = { 45.9, 73.5, 3, 300 }, + [4] = { 44.4, 72, 3, 300 }, + [5] = { 60.4, 71.7, 3, 300 }, + [6] = { 59.2, 70.8, 3, 300 }, + [7] = { 55.3, 68.5, 3, 300 }, + [8] = { 57.8, 68.2, 3, 300 }, + [9] = { 56.4, 68, 3, 300 }, + [10] = { 59.5, 67.8, 3, 300 }, + [11] = { 55.5, 67.2, 3, 300 }, + [12] = { 61.6, 65.7, 3, 300 }, + [13] = { 58, 63.9, 3, 300 }, + [14] = { 55, 63.8, 3, 300 }, + [15] = { 60.7, 63.3, 3, 300 }, + [16] = { 53.5, 61.3, 3, 300 }, + [17] = { 56.7, 61, 3, 300 }, + [18] = { 52.4, 60.6, 3, 300 }, + [19] = { 60.2, 60.5, 3, 300 }, + [20] = { 59.3, 60.5, 3, 300 }, + [21] = { 57.9, 59.9, 3, 300 }, + [22] = { 56.2, 59, 3, 300 }, + [23] = { 55.2, 58.3, 3, 300 }, + [24] = { 53.5, 58.2, 3, 300 }, + [25] = { 55.5, 56.7, 3, 300 }, + [26] = { 53, 56.6, 3, 300 }, + [27] = { 58, 56.5, 3, 300 }, + [28] = { 60.6, 55.7, 3, 300 }, + [29] = { 58.9, 55.5, 3, 300 }, + [30] = { 58.8, 54.3, 3, 300 }, + [31] = { 55.6, 53.8, 3, 300 }, + [32] = { 55, 52, 3, 300 }, + [33] = { 53.4, 51.9, 3, 300 }, + [34] = { 59.1, 51.9, 3, 300 }, + [35] = { 63.1, 51.3, 3, 300 }, + [36] = { 58.8, 50.4, 3, 300 }, + [37] = { 60.9, 50.2, 3, 300 }, + [38] = { 61.7, 49.7, 3, 300 }, + [39] = { 60.8, 48.1, 3, 300 }, + }, + ["lvl"] = "37-38", + }, + [2729] = { + ["coords"] = { + [1] = { 93.1, 85.3, 1, 300 }, + [2] = { 30.7, 74.2, 3, 300 }, + [3] = { 31.8, 73.6, 3, 300 }, + [4] = { 35.7, 73.5, 3, 300 }, + [5] = { 28.3, 72.1, 3, 300 }, + [6] = { 41.6, 71.4, 3, 300 }, + [7] = { 33.6, 71.1, 3, 300 }, + [8] = { 31, 70.9, 3, 300 }, + [9] = { 34.3, 70.2, 3, 300 }, + [10] = { 38.7, 69.9, 3, 300 }, + [11] = { 37.9, 69.1, 3, 300 }, + [12] = { 40.1, 68.6, 3, 300 }, + [13] = { 14.1, 68.1, 3, 300 }, + [14] = { 29.4, 68, 3, 300 }, + [15] = { 39.2, 67.4, 3, 300 }, + [16] = { 12.9, 67.4, 3, 300 }, + [17] = { 10.4, 67.1, 3, 300 }, + [18] = { 37.9, 66.8, 3, 300 }, + [19] = { 32.4, 66.2, 3, 300 }, + [20] = { 12.9, 65.8, 3, 300 }, + [21] = { 16.9, 65.7, 3, 300 }, + [22] = { 35, 64.3, 3, 300 }, + [23] = { 29.7, 64.1, 3, 300 }, + [24] = { 30.1, 63.8, 3, 300 }, + [25] = { 13.5, 63.8, 3, 300 }, + [26] = { 10.5, 63.7, 3, 300 }, + [27] = { 11.2, 63.1, 3, 300 }, + [28] = { 37.6, 63, 3, 300 }, + [29] = { 30.7, 62.3, 3, 300 }, + [30] = { 27.4, 62.2, 3, 300 }, + [31] = { 34.6, 61.6, 3, 300 }, + [32] = { 35.9, 61.1, 3, 300 }, + [33] = { 27.5, 60.4, 3, 300 }, + [34] = { 31.1, 60.1, 3, 300 }, + [35] = { 32.6, 59.6, 3, 300 }, + [36] = { 24.3, 58.6, 3, 300 }, + [37] = { 22.8, 58.2, 3, 300 }, + [38] = { 32.5, 57.8, 3, 300 }, + [39] = { 37.3, 57.8, 3, 300 }, + [40] = { 20.9, 56.8, 3, 300 }, + [41] = { 21.4, 56.3, 3, 300 }, + [42] = { 25.5, 56, 3, 300 }, + [43] = { 33.4, 54.5, 3, 300 }, + [44] = { 18.8, 53.9, 3, 300 }, + [45] = { 26.4, 53, 3, 300 }, + [46] = { 23.3, 51.6, 3, 300 }, + [47] = { 28.3, 47.6, 3, 300 }, + }, + ["lvl"] = "39-40", + }, + [2730] = { + ["coords"] = { + [1] = { 69.4, 36.2, 3, 300 }, + [2] = { 71.5, 34.8, 3, 300 }, + [3] = { 70.3, 33.7, 3, 300 }, + [4] = { 72.7, 33.4, 3, 300 }, + [5] = { 70.3, 32.8, 3, 300 }, + [6] = { 69, 30.8, 3, 300 }, + [7] = { 33.1, 99.4, 5602, 300 }, + [8] = { 32.6, 98.9, 5602, 300 }, + [9] = { 33.7, 98.8, 5602, 300 }, + [10] = { 32.6, 98.5, 5602, 300 }, + [11] = { 32, 97.5, 5602, 300 }, + }, + ["lvl"] = "42-43", + }, + [2731] = { + ["coords"] = { + [1] = { 38.1, 46.5, 3, 300 }, + [2] = { 62.6, 46.3, 3, 300 }, + [3] = { 60.6, 43.8, 3, 300 }, + [4] = { 36.1, 43.3, 3, 300 }, + [5] = { 33.5, 43.3, 3, 300 }, + [6] = { 34.7, 41.7, 3, 300 }, + [7] = { 33.6, 40.9, 3, 300 }, + [8] = { 45.2, 40.5, 3, 300 }, + [9] = { 35.1, 40.4, 3, 300 }, + [10] = { 42.9, 40.2, 3, 300 }, + [11] = { 61.8, 40.2, 3, 300 }, + [12] = { 61.8, 39.3, 3, 300 }, + [13] = { 43.6, 38.3, 3, 300 }, + [14] = { 40.1, 37.7, 3, 300 }, + [15] = { 46.2, 37.6, 3, 300 }, + [16] = { 65.8, 37.5, 3, 300 }, + [17] = { 65.3, 37.1, 3, 300 }, + [18] = { 44.8, 35.7, 3, 300 }, + [19] = { 60.6, 30.5, 3, 300 }, + [20] = { 62, 29.9, 3, 300 }, + [21] = { 63.1, 29.6, 3, 300 }, + [22] = { 57.1, 28.3, 3, 300 }, + [23] = { 59.1, 25.6, 3, 300 }, + [24] = { 53.8, 15.5, 3, 300 }, + [25] = { 55.2, 15.1, 3, 300 }, + [26] = { 20.8, 99.8, 5602, 300 }, + [27] = { 28.1, 97.4, 5602, 300 }, + [28] = { 28.8, 97.2, 5602, 300 }, + [29] = { 29.3, 97, 5602, 300 }, + [30] = { 26.5, 96.4, 5602, 300 }, + [31] = { 27.4, 95.1, 5602, 300 }, + [32] = { 25, 90.5, 5602, 300 }, + [33] = { 25.6, 90.3, 5602, 300 }, + }, + ["lvl"] = "36-37", + }, + [2732] = { + ["coords"] = { + [1] = { 46.9, 76.7, 3, 300 }, + [2] = { 43.5, 75, 3, 300 }, + [3] = { 56.7, 75, 3, 300 }, + [4] = { 63.1, 73.7, 3, 300 }, + [5] = { 39.9, 73.1, 3, 300 }, + [6] = { 44.4, 72.8, 3, 300 }, + [7] = { 43.2, 69.5, 3, 300 }, + [8] = { 65, 68.4, 3, 300 }, + [9] = { 41.5, 67, 3, 300 }, + [10] = { 63.1, 64.4, 3, 300 }, + [11] = { 40.4, 64.1, 3, 300 }, + [12] = { 41.1, 63.3, 3, 300 }, + [13] = { 60.7, 62.3, 3, 300 }, + [14] = { 40.3, 61.5, 3, 300 }, + [15] = { 49.6, 60.1, 3, 300 }, + [16] = { 39.4, 60, 3, 300 }, + [17] = { 41.7, 59.9, 3, 300 }, + [18] = { 49.5, 58.4, 3, 300 }, + [19] = { 40.5, 58.3, 3, 300 }, + [20] = { 51.8, 58.1, 3, 300 }, + [21] = { 50.2, 57.1, 3, 300 }, + [22] = { 35.5, 56, 3, 300 }, + [23] = { 48.3, 52.5, 3, 300 }, + [24] = { 47.6, 51.8, 3, 300 }, + [25] = { 31.5, 51.6, 3, 300 }, + [26] = { 34.8, 51.2, 3, 300 }, + [27] = { 41.4, 51, 3, 300 }, + [28] = { 32.2, 49.9, 3, 300 }, + [29] = { 30.1, 49.9, 3, 300 }, + [30] = { 36.9, 49.9, 3, 300 }, + [31] = { 46.7, 49.7, 3, 300 }, + [32] = { 36.9, 49.4, 3, 300 }, + [33] = { 34.1, 49.1, 3, 300 }, + [34] = { 30.6, 47.9, 3, 300 }, + [35] = { 44.5, 47.6, 3, 300 }, + [36] = { 31.8, 46.9, 3, 300 }, + [37] = { 45.9, 46.6, 3, 300 }, + [38] = { 59.2, 45.9, 3, 300 }, + [39] = { 53.8, 45.9, 3, 300 }, + [40] = { 30, 45.5, 3, 300 }, + [41] = { 53.6, 39.5, 3, 300 }, + }, + ["lvl"] = "38-39", + }, + [2734] = { + ["coords"] = { + [1] = { 25.4, 79.3, 3, 300 }, + [2] = { 26.1, 74.7, 3, 300 }, + [3] = { 19.9, 72.5, 3, 300 }, + [4] = { 25.7, 71.4, 3, 300 }, + [5] = { 19.5, 70.4, 3, 300 }, + [6] = { 10.8, 70.1, 3, 300 }, + [7] = { 21.3, 68.9, 3, 300 }, + [8] = { 18, 67.2, 3, 300 }, + [9] = { 28.3, 66.5, 3, 300 }, + [10] = { 18.5, 65.9, 3, 300 }, + [11] = { 25.9, 64, 3, 300 }, + [12] = { 20.3, 62, 3, 300 }, + [13] = { 22.9, 60.2, 3, 300 }, + [14] = { 20.4, 60.1, 3, 300 }, + [15] = { 10.4, 58.8, 3, 300 }, + [16] = { 8.4, 57.8, 3, 300 }, + [17] = { 14.6, 57.1, 3, 300 }, + [18] = { 14.9, 56, 3, 300 }, + [19] = { 12.7, 55.4, 3, 300 }, + [20] = { 16.2, 53.8, 3, 300 }, + [21] = { 15.2, 51.8, 3, 300 }, + [22] = { 16.5, 49.9, 3, 300 }, + }, + ["lvl"] = "40-41", + }, + [2735] = { + ["coords"] = { + [1] = { 20.2, 47.9, 3, 300 }, + [2] = { 21.6, 47.9, 3, 300 }, + [3] = { 23.1, 47.7, 3, 300 }, + [4] = { 21.2, 45.9, 3, 300 }, + [5] = { 19.1, 45.8, 3, 300 }, + [6] = { 23.5, 45.5, 3, 300 }, + [7] = { 21.3, 44.1, 3, 300 }, + [8] = { 22.4, 43.7, 3, 300 }, + [9] = { 20.1, 43.2, 3, 300 }, + [10] = { 18.8, 43, 3, 300 }, + [11] = { 16.8, 42.7, 3, 300 }, + [12] = { 14.7, 41.8, 3, 300 }, + [13] = { 17.7, 41.3, 3, 300 }, + [14] = { 19.3, 41.2, 3, 300 }, + [15] = { 13.1, 39.2, 3, 300 }, + [16] = { 13.3, 38, 3, 300 }, + [17] = { 15.1, 37.6, 3, 300 }, + [18] = { 16.4, 37.6, 3, 300 }, + }, + ["lvl"] = "37-39", + }, + [2736] = { + ["coords"] = { + [1] = { 14.7, 90.5, 3, 300 }, + [2] = { 13.8, 90.2, 3, 300 }, + [3] = { 16, 90.2, 3, 300 }, + [4] = { 16.2, 88.1, 3, 300 }, + [5] = { 15, 88, 3, 300 }, + [6] = { 13.3, 87.8, 3, 300 }, + [7] = { 14.7, 86.3, 3, 300 }, + [8] = { 13.4, 86.1, 3, 300 }, + [9] = { 16.2, 85.5, 3, 300 }, + [10] = { 1.6, 84.5, 3, 300 }, + [11] = { 17, 84.3, 3, 300 }, + [12] = { 13.3, 84.1, 3, 300 }, + [13] = { 4.9, 83.7, 3, 300 }, + [14] = { 5.5, 82.3, 3, 300 }, + [15] = { 2.9, 82.2, 3, 300 }, + [16] = { 3.7, 82.2, 3, 300 }, + [17] = { 1.4, 82.1, 3, 300 }, + [18] = { 1.4, 80.2, 3, 300 }, + [19] = { 6.9, 80.1, 3, 300 }, + [20] = { 5.7, 79.9, 3, 300 }, + [21] = { 4.1, 79.9, 3, 300 }, + [22] = { 3, 79.8, 3, 300 }, + [23] = { 0.9, 78.7, 3, 300 }, + [24] = { 2.8, 78.2, 3, 300 }, + [25] = { 4.1, 77.3, 3, 300 }, + [26] = { 5.5, 77, 3, 300 }, + [27] = { 6.6, 76.3, 3, 300 }, + [28] = { 6.6, 73.8, 3, 300 }, + [29] = { 75.4, 18.1, 46, 300 }, + [30] = { 80.5, 80.1, 51, 300 }, + [31] = { 84.2, 79.2, 51, 300 }, + [32] = { 84.8, 77.6, 51, 300 }, + [33] = { 81.9, 77.5, 51, 300 }, + [34] = { 82.9, 77.5, 51, 300 }, + [35] = { 80.3, 77.4, 51, 300 }, + [36] = { 80.3, 75.2, 51, 300 }, + [37] = { 85, 75, 51, 300 }, + [38] = { 83.3, 74.9, 51, 300 }, + [39] = { 82.1, 74.8, 51, 300 }, + [40] = { 79.8, 73.6, 51, 300 }, + [41] = { 81.8, 73.1, 51, 300 }, + [42] = { 83.3, 72.1, 51, 300 }, + }, + ["lvl"] = "42-44", + }, + [2739] = { + ["coords"] = { + [1] = { 54.1, 34.1, 3, 300 }, + [2] = { 54.5, 33.9, 3, 300 }, + [3] = { 54.1, 33.4, 3, 300 }, + [4] = { 53.4, 33.4, 3, 300 }, + [5] = { 52.3, 32.7, 3, 300 }, + [6] = { 53.3, 32.7, 3, 300 }, + [7] = { 52.6, 32, 3, 300 }, + [8] = { 51.9, 31.8, 3, 300 }, + [9] = { 54.5, 31.4, 3, 300 }, + [10] = { 52.4, 31.2, 3, 300 }, + [11] = { 53.7, 30.7, 3, 300 }, + [12] = { 25.1, 99.1, 5602, 300 }, + [13] = { 25.3, 99, 5602, 300 }, + [14] = { 25.1, 98.8, 5602, 300 }, + [15] = { 24.8, 98.8, 5602, 300 }, + [16] = { 24.3, 98.4, 5602, 300 }, + [17] = { 24.8, 98.4, 5602, 300 }, + [18] = { 24.4, 98.1, 5602, 300 }, + [19] = { 24.1, 98, 5602, 300 }, + [20] = { 25.3, 97.8, 5602, 300 }, + [21] = { 24.3, 97.7, 5602, 300 }, + [22] = { 24.9, 97.5, 5602, 300 }, + }, + ["lvl"] = "35-36", + }, + [2740] = { + ["coords"] = { + [1] = { 52.8, 34.4, 3, 300 }, + [2] = { 51.5, 34.3, 3, 300 }, + [3] = { 53.3, 34.3, 3, 300 }, + [4] = { 52.6, 33.7, 3, 300 }, + [5] = { 53.7, 32.3, 3, 300 }, + [6] = { 53.6, 31.1, 3, 300 }, + [7] = { 24.5, 99.2, 5602, 300 }, + [8] = { 23.9, 99.2, 5602, 300 }, + [9] = { 24.7, 99.2, 5602, 300 }, + [10] = { 24.4, 98.9, 5602, 300 }, + [11] = { 25, 98.3, 5602, 300 }, + [12] = { 24.9, 97.7, 5602, 300 }, + }, + ["lvl"] = "36-37", + }, + [2741] = "_", + [2742] = { + ["coords"] = { + [1] = { 43.9, 31.3, 3, 300 }, + [2] = { 42.1, 30.8, 3, 300 }, + [3] = { 41.4, 29.6, 3, 300 }, + [4] = { 40.9, 28.9, 3, 300 }, + [5] = { 40.6, 28.9, 3, 300 }, + [6] = { 41.2, 28.7, 3, 300 }, + [7] = { 43.3, 28.5, 3, 300 }, + [8] = { 39.6, 27.8, 3, 300 }, + [9] = { 42.5, 27.5, 3, 300 }, + [10] = { 39.8, 27.3, 3, 300 }, + [11] = { 41.8, 27.1, 3, 300 }, + [12] = { 42, 27, 3, 300 }, + [13] = { 41.9, 27, 3, 300 }, + [14] = { 40.4, 25.9, 3, 300 }, + [15] = { 59.9, 97, 1337, 300 }, + [16] = { 20.4, 97.8, 5602, 300 }, + [17] = { 19.6, 97.5, 5602, 300 }, + [18] = { 19.2, 97, 5602, 300 }, + [19] = { 19, 96.7, 5602, 300 }, + [20] = { 18.9, 96.7, 5602, 300 }, + [21] = { 19.2, 96.6, 5602, 300 }, + [22] = { 20.1, 96.5, 5602, 300 }, + [23] = { 18.4, 96.1, 5602, 300 }, + [24] = { 19.8, 96, 5602, 300 }, + [25] = { 18.5, 96, 5602, 300 }, + [26] = { 19.4, 95.8, 5602, 300 }, + [27] = { 19.5, 95.8, 5602, 300 }, + [28] = { 18.8, 95.3, 5602, 300 }, + }, + ["lvl"] = "38-39", + }, + [2743] = { + ["coords"] = { + [1] = { 41.3, 34.5, 3, 300 }, + [2] = { 45.7, 33.8, 3, 300 }, + [3] = { 41.5, 33.7, 3, 300 }, + [4] = { 44.4, 33.5, 3, 300 }, + [5] = { 42.6, 33.1, 3, 300 }, + [6] = { 44.5, 31.6, 3, 300 }, + [7] = { 43.9, 31.1, 3, 300 }, + [8] = { 44, 31.1, 3, 300 }, + [9] = { 45.3, 30.6, 3, 300 }, + [10] = { 43.1, 30.5, 3, 300 }, + [11] = { 42.3, 30.1, 3, 300 }, + [12] = { 43.4, 30.1, 3, 300 }, + [13] = { 42.7, 29.6, 3, 300 }, + [14] = { 40.8, 29.5, 3, 300 }, + [15] = { 44.2, 29.5, 3, 300 }, + [16] = { 40.8, 29.2, 3, 300 }, + [17] = { 41, 29.2, 3, 300 }, + [18] = { 42.9, 29, 3, 300 }, + [19] = { 46.3, 28.5, 3, 300 }, + [20] = { 41.8, 27.7, 3, 300 }, + [21] = { 42.2, 27, 3, 300 }, + [22] = { 40.1, 26.5, 3, 300 }, + [23] = { 40.6, 25.9, 3, 300 }, + [24] = { 40.7, 25.8, 3, 300 }, + [25] = { 46.9, 22.5, 3, 300 }, + [26] = { 58.7, 99.9, 1337, 300 }, + [27] = { 60.8, 97.3, 1337, 300 }, + [28] = { 60.9, 96.6, 1337, 300 }, + [29] = { 88.4, 82.3, 1337, 300 }, + [30] = { 19.2, 99.3, 5602, 300 }, + [31] = { 21.2, 98.9, 5602, 300 }, + [32] = { 19.3, 98.9, 5602, 300 }, + [33] = { 20.6, 98.8, 5602, 300 }, + [34] = { 19.8, 98.6, 5602, 300 }, + [35] = { 20.7, 97.9, 5602, 300 }, + [36] = { 20.4, 97.7, 5602, 300 }, + [37] = { 20.5, 97.7, 5602, 300 }, + [38] = { 21.1, 97.5, 5602, 300 }, + [39] = { 20, 97.4, 5602, 300 }, + [40] = { 19.7, 97.2, 5602, 300 }, + [41] = { 20.2, 97.2, 5602, 300 }, + [42] = { 19.8, 97, 5602, 300 }, + [43] = { 19, 96.9, 5602, 300 }, + [44] = { 20.6, 96.9, 5602, 300 }, + [45] = { 19, 96.8, 5602, 300 }, + [46] = { 19.1, 96.8, 5602, 300 }, + [47] = { 20, 96.7, 5602, 300 }, + [48] = { 21.5, 96.5, 5602, 300 }, + [49] = { 19.4, 96.1, 5602, 300 }, + [50] = { 19.6, 95.8, 5602, 300 }, + [51] = { 18.7, 95.6, 5602, 300 }, + [52] = { 18.9, 95.3, 5602, 300 }, + [53] = { 18.9, 95.2, 5602, 300 }, + [54] = { 21.8, 93.7, 5602, 300 }, + }, + ["lvl"] = "38-39", + }, + [2744] = { + ["coords"] = { + [1] = { 41.8, 26.9, 3, 54000 }, + [2] = { 19.5, 95.8, 5602, 54000 }, + }, + ["lvl"] = "40", + ["rnk"] = "4", + }, + [2745] = { + ["coords"] = { + [1] = { 42.1, 28.9, 3, 600 }, + [2] = { 19.6, 96.7, 5602, 600 }, + }, + ["lvl"] = "42", + ["rnk"] = "1", + }, + [2746] = "_", + [2748] = { + ["coords"] = { + [1] = { 41.7, 16.8, 1337, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "47", + ["rnk"] = "1", + }, + [2749] = { + ["coords"] = { + [1] = { 41.6, 39.7, 3, 108000 }, + }, + ["lvl"] = "40", + ["rnk"] = "2", + }, + [2751] = { + ["coords"] = { + [1] = { 52.4, 19.5, 3, 54000 }, + [2] = { 24.3, 92.3, 5602, 54000 }, + }, + ["lvl"] = "36", + ["rnk"] = "4", + }, + [2752] = { + ["coords"] = { + [1] = { 14.7, 89.3, 3, 27000 }, + }, + ["lvl"] = "45", + ["rnk"] = "4", + }, + [2753] = { + ["coords"] = { + [1] = { 46.3, 74.3, 3, 72000 }, + }, + ["lvl"] = "38", + ["rnk"] = "4", + }, + [2754] = { + ["coords"] = { + [1] = { 57.7, 59.5, 3, 27000 }, + }, + ["lvl"] = "45", + ["rnk"] = "2", + }, + [2756] = "_", + [2760] = { + ["coords"] = { + [1] = { 24.6, 32.7, 45, 400 }, + [2] = { 26.5, 32.6, 45, 400 }, + [3] = { 25, 31.9, 45, 400 }, + [4] = { 27.4, 31.4, 45, 400 }, + [5] = { 26.5, 31, 45, 400 }, + [6] = { 25.8, 30.6, 45, 400 }, + [7] = { 24.4, 30.5, 45, 400 }, + [8] = { 25.2, 30.5, 45, 400 }, + [9] = { 25.6, 29.8, 45, 400 }, + [10] = { 26.4, 29.7, 45, 400 }, + [11] = { 24.4, 29.5, 45, 400 }, + [12] = { 25.6, 28.5, 45, 400 }, + [13] = { 24.8, 28.5, 45, 400 }, + [14] = { 26.3, 28.3, 45, 400 }, + }, + ["lvl"] = "38-39", + }, + [2761] = { + ["coords"] = { + [1] = { 67.9, 31.1, 45, 400 }, + [2] = { 66, 31.1, 45, 400 }, + [3] = { 67, 31.1, 45, 400 }, + [4] = { 65.4, 31, 45, 400 }, + [5] = { 66.8, 30.8, 45, 400 }, + [6] = { 66.6, 29.9, 45, 400 }, + [7] = { 67.1, 29.9, 45, 400 }, + [8] = { 65, 29.8, 45, 400 }, + [9] = { 67.8, 29.7, 45, 400 }, + [10] = { 66.8, 29.2, 45, 400 }, + [11] = { 65.3, 28.8, 45, 400 }, + [12] = { 67.4, 28.5, 45, 400 }, + [13] = { 66.2, 28.2, 45, 400 }, + [14] = { 68, 28, 45, 400 }, + }, + ["lvl"] = "38-39", + }, + [2762] = { + ["coords"] = { + [1] = { 50.5, 53.3, 45, 400 }, + [2] = { 52.5, 52.1, 45, 400 }, + [3] = { 51.4, 51.9, 45, 400 }, + [4] = { 51.8, 51, 45, 400 }, + [5] = { 50.4, 50.8, 45, 400 }, + [6] = { 53.2, 50.8, 45, 400 }, + [7] = { 52.2, 50.8, 45, 400 }, + [8] = { 52, 50.4, 45, 400 }, + [9] = { 51.1, 49.9, 45, 400 }, + [10] = { 52.1, 49.4, 45, 400 }, + [11] = { 53.3, 49.3, 45, 400 }, + [12] = { 52.2, 47.7, 45, 400 }, + }, + ["lvl"] = "38-39", + }, + [2770] = { + ["coords"] = { + [1] = { 60.6, 81.3, 36, 30 }, + [2] = { 61.9, 19.6, 267, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "27", + }, + [2771] = { + ["coords"] = { + [1] = { 74.2, 33.9, 45, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [2772] = { + ["coords"] = { + [1] = { 74, 33.1, 45, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [2773] = { + ["coords"] = { + [1] = { 18.6, 66.2, 45, 400 }, + }, + ["lvl"] = "40", + ["rnk"] = "1", + }, + [2782] = { + ["coords"] = { + [1] = { 29, 59.7, 45, 400 }, + }, + ["fac"] = "A", + ["lvl"] = "41", + ["rnk"] = "1", + }, + [2786] = { + ["coords"] = { + [1] = { 50.8, 5.6, 1537, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2788] = { + ["coords"] = { + [1] = { 46.2, 47.8, 45, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [2789] = { + ["coords"] = { + [1] = { 46.7, 47, 45, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "36", + }, + [2790] = { + ["coords"] = { + [1] = { 39, 88.1, 1537, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "44", + }, + [2791] = { + ["coords"] = { + [1] = { 55.6, 87.2, 3, 300 }, + [2] = { 55.3, 85.6, 3, 300 }, + [3] = { 54.2, 85.6, 3, 300 }, + [4] = { 52.6, 85.6, 3, 300 }, + [5] = { 56, 84, 3, 300 }, + [6] = { 53.9, 83.9, 3, 300 }, + [7] = { 53.8, 82.5, 3, 300 }, + [8] = { 53.7, 82.4, 3, 300 }, + [9] = { 54.5, 82, 3, 300 }, + [10] = { 53.8, 81.8, 3, 300 }, + }, + ["lvl"] = "42-43", + }, + [2792] = { + ["coords"] = { + [1] = { 72.6, 33.9, 45, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [2795] = { + ["coords"] = { + [1] = { 72.8, 58.9, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [2797] = "_", + [2807] = "_", + [2809] = "_", + [2813] = "_", + [2815] = "_", + [2829] = { + ["coords"] = { + [1] = { 63.9, 46, 3, 300 }, + [2] = { 65.3, 37.7, 3, 300 }, + [3] = { 56.6, 28.6, 3, 300 }, + [4] = { 60.7, 28.3, 3, 300 }, + [5] = { 52.7, 26.1, 3, 300 }, + [6] = { 54, 23.5, 3, 300 }, + [7] = { 26.3, 96.6, 5602, 300 }, + [8] = { 28.2, 96.4, 5602, 300 }, + [9] = { 24.5, 95.4, 5602, 300 }, + [10] = { 25.1, 94.2, 5602, 300 }, + }, + ["lvl"] = "35-37", + }, + [2830] = { + ["coords"] = { + [1] = { 67.2, 86.3, 3, 300 }, + [2] = { 68.3, 86.3, 3, 300 }, + [3] = { 69.4, 84, 3, 300 }, + [4] = { 62.7, 79.1, 3, 300 }, + [5] = { 51.4, 74.4, 3, 300 }, + [6] = { 60.8, 72.8, 3, 300 }, + [7] = { 59, 70.9, 3, 300 }, + [8] = { 50.2, 59.7, 3, 300 }, + [9] = { 62.8, 57.3, 3, 300 }, + [10] = { 52.7, 50.3, 3, 300 }, + [11] = { 56.5, 45.9, 3, 300 }, + }, + ["lvl"] = "37-39", + }, + [2831] = { + ["coords"] = { + [1] = { 25.4, 78.8, 3, 300 }, + [2] = { 17.6, 73.6, 3, 300 }, + [3] = { 22.7, 72.5, 3, 300 }, + [4] = { 35.1, 72.3, 3, 300 }, + [5] = { 16, 70.1, 3, 300 }, + [6] = { 18.8, 64.5, 3, 300 }, + [7] = { 15, 61.8, 3, 300 }, + [8] = { 16.2, 61.7, 3, 300 }, + [9] = { 17.2, 61.3, 3, 300 }, + [10] = { 15, 60.1, 3, 300 }, + [11] = { 17.2, 60, 3, 300 }, + [12] = { 33.5, 59.6, 3, 300 }, + [13] = { 16, 58.7, 3, 300 }, + [14] = { 15.5, 58.5, 3, 300 }, + [15] = { 17.1, 58.3, 3, 300 }, + [16] = { 33.5, 53.5, 3, 300 }, + [17] = { 15.3, 49.6, 3, 300 }, + }, + ["lvl"] = "39-41", + }, + [2833] = "_", + [2835] = { + ["coords"] = { + [1] = { 45.7, 46.1, 45, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [2850] = { + ["coords"] = { + [1] = { 44, 38.4, 3, 28800 }, + [2] = { 60.4, 30.1, 3, 28800 }, + [3] = { 54.7, 14.4, 3, 28800 }, + [4] = { 28, 97.2, 5602, 28800 }, + [5] = { 25.4, 90, 5602, 28800 }, + }, + ["lvl"] = "37", + ["rnk"] = "4", + }, + [2851] = { + ["coords"] = { + [1] = { 73, 32.7, 45, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [2858] = { + ["coords"] = { + [1] = { 26.9, 77.1, 33, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [2859] = { + ["coords"] = { + [1] = { 27.5, 77.8, 33, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [2860] = { + ["coords"] = { + [1] = { 53.8, 43.3, 3, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [2861] = { + ["coords"] = { + [1] = { 4, 44.8, 3, 120 }, + [2] = { 83.2, 35.8, 51, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [2862] = "_", + [2863] = "_", + [2864] = "_", + [2865] = "_", + [2866] = "_", + [2867] = "_", + [2868] = "_", + [2869] = "_", + [2871] = "_", + [2872] = "_", + [2873] = "_", + [2874] = "_", + [2875] = "_", + [2877] = "_", + [2879] = { + ["coords"] = { + [1] = { 67.3, 36.8, 1519, 540 }, + [2] = { 52.6, 97.1, 5581, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [2883] = "_", + [2885] = "_", + [2886] = "_", + [2889] = "_", + [2890] = "_", + [2891] = "_", + [2892] = { + ["coords"] = { + [1] = { 65.9, 44, 3, 300 }, + [2] = { 64.7, 43.5, 3, 300 }, + [3] = { 64, 41.2, 3, 300 }, + [4] = { 64.8, 41.1, 3, 300 }, + }, + ["lvl"] = "39-40", + ["rnk"] = "1", + }, + [2893] = { + ["coords"] = { + [1] = { 48.7, 71.9, 3, 300 }, + [2] = { 49.7, 71.7, 3, 300 }, + [3] = { 51.2, 71.7, 3, 300 }, + [4] = { 48.3, 70, 3, 300 }, + [5] = { 47.3, 69.9, 3, 300 }, + [6] = { 51.4, 69.7, 3, 300 }, + [7] = { 52.5, 69.6, 3, 300 }, + [8] = { 52.3, 68.1, 3, 300 }, + [9] = { 50.9, 67.7, 3, 300 }, + [10] = { 50.2, 67.1, 3, 300 }, + [11] = { 51, 66.1, 3, 300 }, + [12] = { 52.5, 66, 3, 300 }, + [13] = { 50.9, 64.4, 3, 300 }, + [14] = { 49.7, 64.3, 3, 300 }, + }, + ["lvl"] = "39-40", + }, + [2894] = { + ["coords"] = { + [1] = { 49.5, 69.8, 3, 300 }, + [2] = { 49.9, 68.4, 3, 300 }, + [3] = { 48.3, 68.3, 3, 300 }, + [4] = { 50.9, 67.2, 3, 300 }, + [5] = { 49.7, 66.5, 3, 300 }, + }, + ["lvl"] = "40-41", + }, + [2896] = "_", + [2899] = "_", + [2906] = { + ["coords"] = { + [1] = { 68.1, 25.1, 3, 300 }, + [2] = { 64.4, 23.8, 3, 300 }, + [3] = { 65.7, 23.5, 3, 300 }, + [4] = { 67.1, 22.1, 3, 300 }, + [5] = { 65.5, 22, 3, 300 }, + [6] = { 31.6, 94.9, 5602, 300 }, + [7] = { 29.9, 94.3, 5602, 300 }, + [8] = { 30.5, 94.2, 5602, 300 }, + [9] = { 31.1, 93.5, 5602, 300 }, + [10] = { 30.4, 93.5, 5602, 300 }, + }, + ["lvl"] = "35-37", + }, + [2907] = { + ["coords"] = { + [1] = { 12.9, 73.3, 3, 300 }, + [2] = { 64.7, 25.5, 3, 300 }, + [3] = { 66.7, 23.3, 3, 300 }, + [4] = { 66.3, 22, 3, 300 }, + [5] = { 30, 95.1, 5602, 300 }, + [6] = { 30.9, 94.1, 5602, 300 }, + [7] = { 30.8, 93.5, 5602, 300 }, + }, + ["lvl"] = "36-37", + }, + [2909] = { + ["coords"] = { + [1] = { 37.3, 85.8, 38, 30 }, + [2] = { 48.8, 29.8, 1337, 30 }, + [3] = { 17.6, 88.2, 5602, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [2910] = { + ["coords"] = { + [1] = { 53.4, 43.4, 3, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [2911] = { + ["coords"] = { + [1] = { 10.8, 60.4, 11, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "44", + }, + [2912] = { + ["coords"] = { + [1] = { 23.7, 64.5, 141, 30 }, + [2] = { 31.2, 84.5, 1657, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [2913] = { + ["coords"] = { + [1] = { 37.4, 41.8, 148, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "12", + }, + [2914] = { + ["coords"] = { + [1] = { 50.2, 77.1, 15, 300 }, + [2] = { 53, 75.9, 15, 300 }, + [3] = { 48.7, 75.8, 15, 300 }, + [4] = { 44.4, 74.5, 15, 300 }, + [5] = { 39, 74.3, 15, 300 }, + [6] = { 38.4, 74.1, 15, 300 }, + [7] = { 42.9, 73.8, 15, 300 }, + [8] = { 55.5, 73.5, 15, 300 }, + [9] = { 39.7, 71.6, 15, 300 }, + [10] = { 40.9, 70.8, 15, 300 }, + [11] = { 44.3, 70.6, 15, 300 }, + [12] = { 37.1, 70.4, 15, 300 }, + [13] = { 40.7, 70.2, 15, 300 }, + [14] = { 55.5, 70.1, 15, 300 }, + [15] = { 49.1, 70, 15, 300 }, + [16] = { 36, 66.7, 15, 300 }, + [17] = { 41.9, 64.6, 15, 300 }, + [18] = { 34.4, 64, 15, 300 }, + [19] = { 34, 63.6, 15, 300 }, + [20] = { 38.8, 60.4, 15, 300 }, + [21] = { 34.5, 59.4, 15, 300 }, + [22] = { 38.3, 59, 15, 300 }, + [23] = { 40.9, 58.7, 15, 300 }, + [24] = { 35.8, 57.3, 15, 300 }, + [25] = { 43.8, 57, 15, 300 }, + [26] = { 35.6, 56.6, 15, 300 }, + [27] = { 50.6, 56.1, 15, 300 }, + [28] = { 45.6, 53.5, 15, 300 }, + [29] = { 50.1, 53, 15, 300 }, + [30] = { 52.6, 52.9, 15, 300 }, + [31] = { 50.5, 52.7, 15, 300 }, + [32] = { 44.3, 51, 15, 300 }, + [33] = { 43.5, 50.9, 15, 300 }, + [34] = { 39.6, 49.5, 15, 300 }, + [35] = { 39.1, 49.1, 15, 300 }, + [36] = { 35.5, 46.2, 15, 300 }, + [37] = { 46.3, 45.7, 15, 300 }, + [38] = { 34.7, 43.9, 15, 300 }, + [39] = { 42.6, 43.2, 15, 300 }, + [40] = { 42.6, 42.6, 15, 300 }, + [41] = { 41.2, 41.9, 15, 300 }, + [42] = { 36, 40.5, 15, 300 }, + [43] = { 44.2, 40, 15, 300 }, + [44] = { 34.4, 38.8, 15, 300 }, + [45] = { 58.2, 30.7, 15, 300 }, + [46] = { 56, 30.2, 15, 300 }, + [47] = { 57.7, 29, 15, 300 }, + [48] = { 42, 28.7, 15, 300 }, + [49] = { 39.1, 28.4, 15, 300 }, + [50] = { 52.8, 28.3, 15, 300 }, + [51] = { 36.4, 28.1, 15, 300 }, + [52] = { 46.3, 25, 15, 300 }, + [53] = { 36.2, 25, 15, 300 }, + [54] = { 41.9, 24.7, 15, 300 }, + [55] = { 36.5, 24.6, 15, 300 }, + [56] = { 50.8, 23.7, 15, 300 }, + [57] = { 50.8, 23, 15, 300 }, + [58] = { 48.7, 22.7, 15, 300 }, + [59] = { 45.3, 22.3, 15, 300 }, + [60] = { 42, 21.7, 15, 300 }, + [61] = { 37, 21.6, 15, 300 }, + [62] = { 52.9, 20.3, 15, 300 }, + [63] = { 44.9, 19.7, 15, 300 }, + [64] = { 43.2, 19.4, 15, 300 }, + [65] = { 43.6, 19.1, 15, 300 }, + [66] = { 37.1, 18.6, 15, 300 }, + [67] = { 38.8, 16.3, 15, 300 }, + [68] = { 40.9, 13.6, 15, 300 }, + [69] = { 55.4, 92.4, 17, 300 }, + [70] = { 54.7, 90.4, 17, 300 }, + [71] = { 54.2, 88.5, 17, 300 }, + [72] = { 53.3, 87.1, 17, 300 }, + [73] = { 53.1, 86.9, 17, 300 }, + [74] = { 53.4, 84.7, 17, 300 }, + [75] = { 55.4, 84.5, 17, 300 }, + [76] = { 54, 83.6, 17, 300 }, + [77] = { 54, 83.3, 17, 300 }, + [78] = { 53.9, 77.9, 17, 300 }, + [79] = { 53.5, 76.7, 17, 300 }, + [80] = { 54.2, 74.9, 17, 300 }, + [81] = { 53.3, 74, 17, 300 }, + [82] = { 54.4, 68.5, 17, 300 }, + [83] = { 54.3, 66.9, 17, 300 }, + [84] = { 54.4, 66.7, 17, 300 }, + [85] = { 54.7, 65.1, 17, 300 }, + [86] = { 54.7, 63.6, 17, 300 }, + [87] = { 55.6, 62.4, 17, 300 }, + [88] = { 46.2, 79.1, 40, 300 }, + [89] = { 63.4, 73.5, 40, 300 }, + [90] = { 46.1, 71.7, 40, 300 }, + [91] = { 40.9, 62, 40, 300 }, + [92] = { 62.3, 60.2, 40, 300 }, + [93] = { 46.5, 53.4, 40, 300 }, + [94] = { 32.1, 52.4, 40, 300 }, + [95] = { 49.2, 47.9, 40, 300 }, + [96] = { 53.7, 39.3, 40, 300 }, + [97] = { 35, 33.9, 40, 300 }, + [98] = { 43.6, 33.7, 40, 300 }, + [99] = { 50, 31.1, 40, 300 }, + [100] = { 37.2, 27, 40, 300 }, + [101] = { 54.3, 20.6, 40, 300 }, + [102] = { 58.6, 14.7, 40, 300 }, + [103] = { 46.5, 79, 130, 300 }, + [104] = { 66.4, 48.9, 130, 300 }, + [105] = { 50.9, 43.5, 130, 300 }, + [106] = { 45.9, 26, 130, 300 }, + [107] = { 49.9, 19, 130, 300 }, + [108] = { 49.7, 15.7, 130, 300 }, + [109] = { 59.3, 9.2, 130, 300 }, + [110] = { 54.9, 73.7, 357, 300 }, + [111] = { 56.6, 69.4, 357, 300 }, + [112] = { 71.6, 61.3, 357, 300 }, + [113] = { 68.9, 60.3, 357, 300 }, + [114] = { 58.7, 54.6, 357, 300 }, + [115] = { 54.1, 53.8, 357, 300 }, + [116] = { 55.1, 49.3, 357, 300 }, + [117] = { 52.8, 49, 357, 300 }, + [118] = { 52.4, 47.7, 357, 300 }, + [119] = { 57.2, 47.4, 357, 300 }, + [120] = { 79.5, 45.2, 357, 300 }, + [121] = { 82.7, 45.1, 357, 300 }, + [122] = { 69.9, 39.9, 357, 300 }, + [123] = { 80.9, 39.6, 357, 300 }, + [124] = { 84.4, 38.3, 357, 300 }, + [125] = { 49.9, 31.5, 357, 300 }, + [126] = { 40.6, 24.1, 357, 300 }, + [127] = { 43.9, 12.6, 357, 300 }, + [128] = { 44.4, 86.3, 405, 300 }, + [129] = { 35.3, 84.5, 405, 300 }, + [130] = { 28.8, 80.1, 405, 300 }, + [131] = { 31.3, 78, 405, 300 }, + [132] = { 62.2, 77.9, 405, 300 }, + [133] = { 34.3, 76.4, 405, 300 }, + [134] = { 63.5, 72.4, 405, 300 }, + [135] = { 31.1, 70.8, 405, 300 }, + [136] = { 42.4, 70, 405, 300 }, + [137] = { 67.4, 69, 405, 300 }, + [138] = { 50.9, 69, 405, 300 }, + [139] = { 73.6, 64.9, 405, 300 }, + [140] = { 42.2, 63.6, 405, 300 }, + [141] = { 59.7, 62.1, 405, 300 }, + [142] = { 68.5, 62.1, 405, 300 }, + [143] = { 71.3, 60.1, 405, 300 }, + [144] = { 41.9, 52.4, 405, 300 }, + [145] = { 46.3, 48.6, 405, 300 }, + [146] = { 70.1, 41.7, 405, 300 }, + [147] = { 39.9, 38.3, 405, 300 }, + [148] = { 64.1, 33.5, 405, 300 }, + [149] = { 71.7, 32.5, 405, 300 }, + [150] = { 54.4, 32.4, 405, 300 }, + [151] = { 41.6, 28.1, 405, 300 }, + [152] = { 76.2, 24.6, 405, 300 }, + [153] = { 56.3, 23, 405, 300 }, + [154] = { 71.6, 22.7, 405, 300 }, + [155] = { 79.4, 16.9, 405, 300 }, + [156] = { 57.4, 8.1, 405, 300 }, + [157] = { 54.6, 87.2, 406, 300 }, + [158] = { 38.1, 80.6, 406, 300 }, + [159] = { 47.4, 85.9, 490, 300 }, + [160] = { 47.2, 73.9, 490, 300 }, + [161] = { 54.3, 72.5, 490, 300 }, + [162] = { 44.6, 62.9, 490, 300 }, + [163] = { 75, 62.5, 490, 300 }, + [164] = { 75.8, 44.3, 490, 300 }, + [165] = { 28.3, 43.8, 490, 300 }, + [166] = { 37.7, 42.6, 490, 300 }, + [167] = { 35.1, 38.6, 490, 300 }, + [168] = { 52.3, 33.1, 490, 300 }, + [169] = { 69, 32.1, 490, 300 }, + [170] = { 55.8, 30.4, 490, 300 }, + [171] = { 31.1, 29, 490, 300 }, + [172] = { 66.9, 28.4, 490, 300 }, + [173] = { 46.2, 25.7, 490, 300 }, + [174] = { 41, 22.3, 490, 300 }, + [175] = { 60.5, 19.6, 490, 300 }, + [176] = { 50.9, 18.2, 490, 300 }, + [177] = { 78.4, 72, 718, 300 }, + [178] = { 64.5, 70.5, 718, 300 }, + [179] = { 73.2, 70, 718, 300 }, + [180] = { 81.2, 65.7, 718, 300 }, + [181] = { 87.3, 65.2, 718, 300 }, + [182] = { 89.2, 57.1, 718, 300 }, + [183] = { 64.1, 55.2, 718, 300 }, + [184] = { 94.3, 54.9, 718, 300 }, + [185] = { 62.3, 52, 718, 300 }, + [186] = { 97.4, 50, 718, 300 }, + [187] = { 74.5, 49.5, 718, 300 }, + [188] = { 68.9, 47.4, 718, 300 }, + [189] = { 93.4, 46.8, 718, 300 }, + [190] = { 85.1, 46.3, 718, 300 }, + [191] = { 88.4, 44.1, 718, 300 }, + [192] = { 83.4, 43.8, 718, 300 }, + [193] = { 88.3, 43.3, 718, 300 }, + [194] = { 93.7, 42.5, 718, 300 }, + [195] = { 55.5, 42, 718, 300 }, + [196] = { 29, 40.7, 718, 300 }, + [197] = { 72.8, 40.5, 718, 300 }, + [198] = { 66.6, 40.5, 718, 300 }, + [199] = { 47.6, 40.4, 718, 300 }, + [200] = { 32, 37, 718, 300 }, + [201] = { 49.8, 36, 718, 300 }, + [202] = { 55.9, 34.2, 718, 300 }, + [203] = { 83.5, 32.9, 718, 300 }, + [204] = { 77.4, 32.8, 718, 300 }, + [205] = { 44.7, 32.6, 718, 300 }, + [206] = { 26.4, 31.7, 718, 300 }, + [207] = { 88.8, 31.1, 718, 300 }, + [208] = { 73.3, 30.9, 718, 300 }, + [209] = { 32.9, 30.8, 718, 300 }, + [210] = { 84.4, 28.1, 718, 300 }, + [211] = { 42.2, 27.8, 718, 300 }, + [212] = { 88, 26.4, 718, 300 }, + [213] = { 30.4, 25.8, 718, 300 }, + [214] = { 50.5, 24.8, 718, 300 }, + [215] = { 24.3, 23.8, 718, 300 }, + [216] = { 33, 19.9, 718, 300 }, + [217] = { 87.8, 63.4, 1581, 300 }, + [218] = { 86.3, 6.4, 1581, 300 }, + [219] = { 57.4, 83.4, 1977, 300 }, + [220] = { 58, 81.5, 1977, 300 }, + [221] = { 62.2, 81.3, 1977, 300 }, + [222] = { 61.8, 78.7, 1977, 300 }, + [223] = { 56.6, 77.3, 1977, 300 }, + [224] = { 60.5, 77.3, 1977, 300 }, + [225] = { 59, 75.7, 1977, 300 }, + [226] = { 56.5, 74.6, 1977, 300 }, + [227] = { 62.5, 73.7, 1977, 300 }, + [228] = { 58.3, 73.2, 1977, 300 }, + [229] = { 56.2, 72.8, 1977, 300 }, + [230] = { 60.9, 71.7, 1977, 300 }, + [231] = { 64, 71.4, 1977, 300 }, + [232] = { 57, 69.8, 1977, 300 }, + [233] = { 63.5, 69.5, 1977, 300 }, + [234] = { 61.8, 69.4, 1977, 300 }, + [235] = { 60.9, 68.1, 1977, 300 }, + [236] = { 56.9, 68, 1977, 300 }, + [237] = { 63.7, 66.4, 1977, 300 }, + [238] = { 62.7, 65.7, 1977, 300 }, + [239] = { 57, 65.6, 1977, 300 }, + [240] = { 56.1, 61.9, 1977, 300 }, + [241] = { 50.7, 60.3, 1977, 300 }, + [242] = { 51.9, 59.9, 1977, 300 }, + [243] = { 55.7, 59.7, 1977, 300 }, + [244] = { 53, 58.2, 1977, 300 }, + [245] = { 54.3, 56.9, 1977, 300 }, + [246] = { 49.9, 55.7, 1977, 300 }, + [247] = { 48.4, 55.6, 1977, 300 }, + [248] = { 50.3, 54.9, 1977, 300 }, + [249] = { 54.6, 54.6, 1977, 300 }, + [250] = { 53.3, 54.6, 1977, 300 }, + [251] = { 51.7, 54.4, 1977, 300 }, + [252] = { 48.5, 54, 1977, 300 }, + [253] = { 47.8, 53.7, 1977, 300 }, + [254] = { 43, 53.7, 1977, 300 }, + [255] = { 51.8, 53.4, 1977, 300 }, + [256] = { 50.8, 53.1, 1977, 300 }, + [257] = { 56.5, 52.5, 1977, 300 }, + [258] = { 57.7, 52.5, 1977, 300 }, + [259] = { 53.4, 52.1, 1977, 300 }, + [260] = { 48.7, 51.8, 1977, 300 }, + [261] = { 43.8, 51.3, 1977, 300 }, + [262] = { 54.7, 50.4, 1977, 300 }, + [263] = { 55.3, 50.4, 1977, 300 }, + [264] = { 43.9, 48.7, 1977, 300 }, + [265] = { 38.2, 48.4, 1977, 300 }, + [266] = { 34.4, 48.4, 1977, 300 }, + [267] = { 42.6, 47.9, 1977, 300 }, + [268] = { 37.8, 46.7, 1977, 300 }, + [269] = { 36.3, 46.5, 1977, 300 }, + [270] = { 34.9, 46.4, 1977, 300 }, + [271] = { 32.9, 46.4, 1977, 300 }, + [272] = { 32.7, 43.8, 1977, 300 }, + [273] = { 56.4, 41.8, 1977, 300 }, + [274] = { 60.2, 41.7, 1977, 300 }, + [275] = { 60, 40, 1977, 300 }, + [276] = { 33.7, 36.2, 1977, 300 }, + [277] = { 34.8, 35.3, 1977, 300 }, + [278] = { 36.7, 35.1, 1977, 300 }, + [279] = { 35.8, 33.6, 1977, 300 }, + [280] = { 57.3, 33.2, 1977, 300 }, + [281] = { 37, 32.2, 1977, 300 }, + [282] = { 44.4, 30.5, 1977, 300 }, + [283] = { 56.6, 30.4, 1977, 300 }, + [284] = { 41.9, 30.2, 1977, 300 }, + [285] = { 37.8, 29.9, 1977, 300 }, + [286] = { 45.7, 29.8, 1977, 300 }, + [287] = { 53.8, 29.7, 1977, 300 }, + [288] = { 58.5, 29.6, 1977, 300 }, + [289] = { 39.4, 29.4, 1977, 300 }, + [290] = { 49.9, 29, 1977, 300 }, + [291] = { 47.6, 28.9, 1977, 300 }, + [292] = { 53.5, 28.1, 1977, 300 }, + [293] = { 42.6, 27.8, 1977, 300 }, + [294] = { 58, 27.8, 1977, 300 }, + [295] = { 57, 27.5, 1977, 300 }, + [296] = { 39.7, 26.1, 1977, 300 }, + [297] = { 42.4, 25.8, 1977, 300 }, + [298] = { 56.9, 25.8, 1977, 300 }, + [299] = { 53.4, 25.4, 1977, 300 }, + [300] = { 42.5, 25.4, 1977, 300 }, + [301] = { 41.3, 24.8, 1977, 300 }, + [302] = { 40.4, 23.7, 1977, 300 }, + [303] = { 53.8, 23.3, 1977, 300 }, + [304] = { 42.5, 23.3, 1977, 300 }, + [305] = { 52.2, 22.8, 1977, 300 }, + [306] = { 41.2, 21.3, 1977, 300 }, + [307] = { 39.7, 94, 2100, 300 }, + [308] = { 43.2, 89.5, 2100, 300 }, + [309] = { 40, 89.3, 2100, 300 }, + [310] = { 39.4, 74.4, 2100, 300 }, + [311] = { 33.6, 74.1, 2100, 300 }, + [312] = { 40.1, 70.8, 2100, 300 }, + [313] = { 35.9, 67.9, 2100, 300 }, + [314] = { 40.5, 66.8, 2100, 300 }, + [315] = { 30.5, 65.7, 2100, 300 }, + [316] = { 40.7, 62.7, 2100, 300 }, + [317] = { 38.1, 62.7, 2100, 300 }, + [318] = { 13.3, 60.1, 2100, 300 }, + [319] = { 10.4, 57.2, 2100, 300 }, + [320] = { 10.3, 55.1, 2100, 300 }, + [321] = { 13.7, 51.7, 2100, 300 }, + [322] = { 40.8, 42, 2100, 300 }, + [323] = { 30.2, 41.3, 2100, 300 }, + [324] = { 39.9, 35.2, 2100, 300 }, + [325] = { 41.6, 27.7, 2100, 300 }, + [326] = { 41.6, 22.5, 2100, 300 }, + [327] = { 38.6, 20.4, 2100, 300 }, + [328] = { 40.1, 15.2, 2100, 300 }, + [329] = { 37.7, 14.6, 2100, 300 }, + [330] = { 78.7, 86.7, 2366, 10800 }, + [331] = { 75.8, 83.3, 2366, 10800 }, + [332] = { 31.5, 83.2, 2366, 10800 }, + [333] = { 70.4, 82.3, 2366, 10800 }, + [334] = { 34.8, 80.2, 2366, 10800 }, + [335] = { 61.3, 80.1, 2366, 10800 }, + [336] = { 23.6, 79.8, 2366, 10800 }, + [337] = { 58, 78.8, 2366, 10800 }, + [338] = { 26.6, 73.8, 2366, 10800 }, + [339] = { 47, 68.9, 2366, 10800 }, + [340] = { 31.7, 64.1, 2366, 10800 }, + [341] = { 53.4, 61.8, 2366, 10800 }, + [342] = { 66.4, 61.2, 2366, 10800 }, + [343] = { 25.9, 60.7, 2366, 10800 }, + [344] = { 32.7, 60, 2366, 10800 }, + [345] = { 28, 55.2, 2366, 10800 }, + [346] = { 31.8, 50.4, 2366, 10800 }, + [347] = { 30.4, 42.2, 2366, 10800 }, + [348] = { 45.2, 42, 2366, 10800 }, + [349] = { 58.3, 35.6, 2366, 10800 }, + [350] = { 39.9, 31.3, 2366, 10800 }, + [351] = { 59.4, 31, 2366, 10800 }, + [352] = { 33.7, 26.7, 2366, 10800 }, + [353] = { 51.8, 26, 2366, 10800 }, + [354] = { 53.5, 23.9, 2366, 10800 }, + [355] = { 51.4, 20.5, 2366, 10800 }, + [356] = { 39.1, 17.8, 2366, 10800 }, + [357] = { 57.1, 17.4, 2366, 10800 }, + [358] = { 3, 49.1, 2557, 300 }, + [359] = { 47.9, 7.6, 5179, 300 }, + [360] = { 5.1, 98.9, 5204, 10800 }, + [361] = { 27.7, 98.7, 5204, 10800 }, + [362] = { 24.8, 97.7, 5204, 10800 }, + [363] = { 15.5, 89.1, 5204, 10800 }, + [364] = { 2.4, 85, 5204, 10800 }, + [365] = { 20.9, 83, 5204, 10800 }, + [366] = { 32.1, 82.5, 5204, 10800 }, + [367] = { 3.2, 81.5, 5204, 10800 }, + [368] = { 2.5, 73.2, 5204, 10800 }, + [369] = { 1.3, 66.2, 5204, 10800 }, + [370] = { 14, 66, 5204, 10800 }, + [371] = { 25.1, 60.5, 5204, 10800 }, + [372] = { 9.4, 56.8, 5204, 10800 }, + [373] = { 26.1, 56.5, 5204, 10800 }, + [374] = { 4.2, 52.8, 5204, 10800 }, + [375] = { 19.6, 52.2, 5204, 10800 }, + [376] = { 21, 50.5, 5204, 10800 }, + [377] = { 19.2, 47.5, 5204, 10800 }, + [378] = { 8.8, 45.2, 5204, 10800 }, + [379] = { 24.1, 44.9, 5204, 10800 }, + [380] = { 46, 78.2, 15, 300 }, + [381] = { 46.5, 77.5, 15, 300 }, + [382] = { 43.6, 76.6, 15, 300 }, + [383] = { 42.2, 74.9, 15, 300 }, + [384] = { 38.2, 71.9, 15, 300 }, + [385] = { 35.5, 71, 15, 300 }, + [386] = { 52.4, 69.7, 15, 300 }, + [387] = { 56.7, 69, 15, 300 }, + [388] = { 51.2, 68.9, 15, 300 }, + [389] = { 47.9, 66.7, 15, 300 }, + [390] = { 48.6, 66.3, 15, 300 }, + [391] = { 50.8, 65.7, 15, 300 }, + [392] = { 39.3, 65.1, 15, 300 }, + [393] = { 47.3, 63.7, 15, 300 }, + [394] = { 51.4, 61.5, 15, 300 }, + [395] = { 43, 60.4, 15, 300 }, + [396] = { 52.3, 56.4, 15, 300 }, + [397] = { 38.2, 54, 15, 300 }, + [398] = { 38.6, 52.8, 15, 300 }, + [399] = { 49, 52.7, 15, 300 }, + [400] = { 37.7, 50.5, 15, 300 }, + [401] = { 35.1, 50.3, 15, 300 }, + [402] = { 48.3, 49.8, 15, 300 }, + [403] = { 44.2, 47.7, 15, 300 }, + [404] = { 34.3, 47.1, 15, 300 }, + [405] = { 42.7, 45.3, 15, 300 }, + [406] = { 33.3, 44.7, 15, 300 }, + [407] = { 36.1, 43.9, 15, 300 }, + [408] = { 33.9, 41.2, 15, 300 }, + [409] = { 42.9, 38.3, 15, 300 }, + [410] = { 59.7, 35.8, 15, 300 }, + [411] = { 56.4, 35.8, 15, 300 }, + [412] = { 38.2, 35.8, 15, 300 }, + [413] = { 40.1, 34.9, 15, 300 }, + [414] = { 55.9, 27.8, 15, 300 }, + [415] = { 51, 27.5, 15, 300 }, + [416] = { 38.6, 25.6, 15, 300 }, + [417] = { 39.7, 25.1, 15, 300 }, + [418] = { 43.1, 24.7, 15, 300 }, + [419] = { 40.9, 21.5, 15, 300 }, + [420] = { 50.8, 21.4, 15, 300 }, + [421] = { 38.3, 19.6, 15, 300 }, + [422] = { 55.3, 91.2, 17, 300 }, + [423] = { 53.9, 90.8, 17, 300 }, + [424] = { 55.3, 81.9, 17, 300 }, + [425] = { 55, 80.1, 17, 300 }, + [426] = { 53.7, 80, 17, 300 }, + [427] = { 53.3, 78.3, 17, 300 }, + [428] = { 52.8, 77.1, 17, 300 }, + [429] = { 54.2, 76.7, 17, 300 }, + [430] = { 53.1, 75.3, 17, 300 }, + [431] = { 55.3, 72.5, 17, 300 }, + [432] = { 55.3, 64.1, 17, 300 }, + }, + ["lvl"] = "1", + }, + [2916] = { + ["coords"] = { + [1] = { 77.5, 11.8, 1537, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [2917] = { + ["coords"] = { + [1] = { 35.7, 83.7, 148, 60 }, + }, + ["fac"] = "A", + ["lvl"] = "16", + }, + [2918] = { + ["coords"] = { + [1] = { 77.3, 9.7, 1537, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [2922] = { + ["coords"] = { + [1] = { 26, 44.8, 3, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [2923] = { + ["coords"] = { + [1] = { 20.3, 57.2, 47, 350 }, + [2] = { 20.1, 56.6, 47, 350 }, + [3] = { 15.2, 55.6, 47, 350 }, + [4] = { 21, 55.4, 47, 350 }, + [5] = { 21.8, 55, 47, 350 }, + [6] = { 16.4, 54.7, 47, 350 }, + [7] = { 19.3, 54.3, 47, 350 }, + [8] = { 15.1, 54.2, 47, 350 }, + [9] = { 21.8, 53, 47, 350 }, + [10] = { 18.2, 52.5, 47, 350 }, + [11] = { 19.6, 52.3, 47, 350 }, + [12] = { 23.6, 51.7, 47, 350 }, + [13] = { 16, 51.6, 47, 300 }, + [14] = { 19.7, 51.5, 47, 350 }, + [15] = { 22.5, 51.2, 47, 350 }, + [16] = { 18.2, 51, 47, 300 }, + [17] = { 20.9, 50.3, 47, 350 }, + [18] = { 20, 50.2, 47, 350 }, + [19] = { 17.2, 49.5, 47, 350 }, + [20] = { 18.8, 49.1, 47, 350 }, + [21] = { 18.3, 48.9, 47, 350 }, + [22] = { 17.6, 48.2, 47, 350 }, + }, + ["lvl"] = "41-42", + }, + [2924] = { + ["coords"] = { + [1] = { 27.9, 69.4, 47, 350 }, + [2] = { 31, 64.6, 47, 350 }, + [3] = { 32.7, 63.5, 47, 350 }, + [4] = { 32.1, 63.4, 47, 350 }, + [5] = { 28.8, 63.2, 47, 350 }, + [6] = { 35, 61.6, 47, 350 }, + [7] = { 27.9, 61.6, 47, 350 }, + [8] = { 34.2, 61.1, 47, 350 }, + [9] = { 31.8, 60.7, 47, 350 }, + [10] = { 34.4, 58.8, 47, 350 }, + [11] = { 26.9, 58.1, 47, 350 }, + [12] = { 32.1, 55.3, 47, 350 }, + [13] = { 26.6, 55.3, 47, 350 }, + [14] = { 37.6, 55, 47, 350 }, + [15] = { 29.6, 54.2, 47, 350 }, + [16] = { 33.7, 53.6, 47, 350 }, + [17] = { 27.8, 53.4, 47, 350 }, + [18] = { 38.1, 53.1, 47, 350 }, + [19] = { 35.7, 53, 47, 350 }, + [20] = { 35.2, 52.6, 47, 350 }, + [21] = { 36.7, 52.6, 47, 350 }, + [22] = { 37.6, 52.1, 47, 350 }, + [23] = { 36.8, 51.7, 47, 350 }, + [24] = { 24.7, 51.1, 47, 350 }, + [25] = { 37.3, 49.7, 47, 350 }, + [26] = { 36.2, 49.1, 47, 350 }, + [27] = { 35.8, 49, 47, 350 }, + [28] = { 35.5, 47.7, 47, 350 }, + [29] = { 34.1, 46.1, 47, 350 }, + [30] = { 35.8, 45, 47, 350 }, + [31] = { 35, 44.1, 47, 350 }, + [32] = { 36.1, 44, 47, 350 }, + }, + ["lvl"] = "43-44", + }, + [2926] = { + ["coords"] = { + [1] = { 72, 63, 47, 350 }, + [2] = { 71.3, 61.5, 47, 350 }, + [3] = { 51.1, 61, 47, 350 }, + [4] = { 66.6, 60.6, 47, 350 }, + [5] = { 68.7, 60.3, 47, 350 }, + [6] = { 71.6, 59.5, 47, 350 }, + [7] = { 72, 59.3, 47, 350 }, + [8] = { 70.5, 58, 47, 350 }, + [9] = { 73.4, 57.9, 47, 350 }, + [10] = { 72.9, 57.8, 47, 350 }, + [11] = { 66.8, 57.8, 47, 350 }, + [12] = { 70.1, 57.1, 47, 350 }, + [13] = { 62.7, 56.6, 47, 350 }, + [14] = { 72.4, 56.4, 47, 350 }, + [15] = { 69.8, 56.4, 47, 350 }, + [16] = { 73.5, 56.1, 47, 350 }, + [17] = { 53.5, 56, 47, 350 }, + [18] = { 74, 55.9, 47, 350 }, + [19] = { 61.2, 55.8, 47, 350 }, + [20] = { 60.2, 55.3, 47, 350 }, + [21] = { 75.5, 55.2, 47, 350 }, + [22] = { 64, 55.1, 47, 350 }, + [23] = { 69.6, 54.8, 47, 350 }, + [24] = { 71.5, 54.8, 47, 350 }, + [25] = { 58.3, 54.7, 47, 350 }, + [26] = { 51.5, 54.3, 47, 350 }, + [27] = { 59.7, 54.1, 47, 350 }, + [28] = { 60.7, 54, 47, 350 }, + [29] = { 69.2, 53.9, 47, 350 }, + [30] = { 76.4, 53.5, 47, 350 }, + [31] = { 65.4, 53.3, 47, 350 }, + [32] = { 68, 52.9, 47, 350 }, + [33] = { 68.6, 52.8, 47, 350 }, + [34] = { 63.1, 52.4, 47, 350 }, + [35] = { 78, 52.2, 47, 350 }, + [36] = { 73.1, 52, 47, 350 }, + [37] = { 58.4, 51.9, 47, 350 }, + [38] = { 67.4, 51.5, 47, 350 }, + [39] = { 59.6, 50.8, 47, 350 }, + [40] = { 67, 50.4, 47, 350 }, + [41] = { 62.5, 50.3, 47, 350 }, + [42] = { 69.3, 49.8, 47, 350 }, + [43] = { 63.6, 49.3, 47, 350 }, + [44] = { 52.2, 49.1, 47, 350 }, + [45] = { 63.2, 49.1, 47, 350 }, + [46] = { 59.4, 49, 47, 350 }, + [47] = { 64.2, 48.9, 47, 350 }, + [48] = { 76.6, 48.8, 47, 350 }, + [49] = { 67.6, 48.6, 47, 350 }, + [50] = { 74.7, 48.6, 47, 350 }, + [51] = { 66.7, 48.6, 47, 350 }, + [52] = { 61.2, 48, 47, 350 }, + [53] = { 58.8, 47.5, 47, 350 }, + [54] = { 62, 46.3, 47, 350 }, + [55] = { 56.4, 46.2, 47, 350 }, + [56] = { 69.4, 45, 47, 350 }, + [57] = { 54.3, 43.8, 47, 350 }, + [58] = { 55.8, 43.8, 47, 350 }, + [59] = { 63, 42.9, 47, 350 }, + [60] = { 54.2, 42.8, 47, 350 }, + }, + ["lvl"] = "47-48", + }, + [2928] = { + ["coords"] = { + [1] = { 42.1, 64.6, 47, 350 }, + [2] = { 40.7, 63.8, 47, 350 }, + [3] = { 38.2, 63.6, 47, 350 }, + [4] = { 51.8, 63.5, 47, 350 }, + [5] = { 41, 61.6, 47, 350 }, + [6] = { 38.1, 61.3, 47, 350 }, + [7] = { 49.5, 59.8, 47, 350 }, + [8] = { 44.3, 59.7, 47, 350 }, + [9] = { 36.1, 59.5, 47, 350 }, + [10] = { 38.1, 59, 47, 350 }, + [11] = { 43.4, 58, 47, 350 }, + [12] = { 50.9, 57.8, 47, 350 }, + [13] = { 37, 57.7, 47, 350 }, + [14] = { 38.6, 57.5, 47, 350 }, + [15] = { 46.2, 57, 47, 350 }, + [16] = { 41.6, 56.8, 47, 350 }, + [17] = { 47.1, 56.7, 47, 350 }, + [18] = { 40.3, 56.4, 47, 350 }, + [19] = { 43.5, 56.4, 47, 350 }, + [20] = { 42.9, 55.1, 47, 350 }, + [21] = { 44.1, 54.7, 47, 350 }, + [22] = { 45.8, 54.1, 47, 350 }, + [23] = { 46, 54, 47, 350 }, + [24] = { 44.6, 53.5, 47, 350 }, + [25] = { 39.1, 52.6, 47, 350 }, + [26] = { 38.6, 52.4, 47, 350 }, + [27] = { 41, 52.2, 47, 350 }, + [28] = { 45.7, 51.5, 47, 350 }, + [29] = { 51.3, 50.1, 47, 350 }, + [30] = { 38.4, 49.4, 47, 350 }, + [31] = { 39.6, 48.4, 47, 350 }, + [32] = { 40.5, 47.7, 47, 350 }, + [33] = { 42.3, 47.3, 47, 350 }, + [34] = { 40.1, 46.3, 47, 350 }, + [35] = { 41.2, 46, 47, 350 }, + [36] = { 38.7, 45.6, 47, 350 }, + [37] = { 42.8, 45.2, 47, 350 }, + [38] = { 42.6, 45, 47, 350 }, + [39] = { 39.1, 45, 47, 350 }, + [40] = { 43.3, 44.5, 47, 350 }, + [41] = { 39.6, 43.4, 47, 350 }, + [42] = { 38.6, 43.3, 47, 350 }, + [43] = { 41.4, 42.5, 47, 350 }, + [44] = { 51.4, 42.2, 47, 350 }, + }, + ["lvl"] = "44-45", + }, + [2930] = { + ["coords"] = { + [1] = { 37.7, 43.4, 148, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [2931] = { + ["coords"] = { + [1] = { 56.1, 61.7, 3, 38000 }, + }, + ["lvl"] = "55", + ["rnk"] = "2", + }, + [2932] = { + ["coords"] = { + [1] = { 38.7, 18.1, 3, 300 }, + [2] = { 52.4, 63, 1337, 300 }, + [3] = { 18, 91.7, 5602, 300 }, + }, + ["lvl"] = "38", + ["rnk"] = "1", + }, + [2934] = { + ["coords"] = { + [1] = { 53.7, 54.5, 1497, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "42", + }, + [2935] = "_", + [2938] = "_", + [2939] = "_", + [2940] = "_", + [2941] = { + ["coords"] = { + [1] = { 37.9, 30.9, 51, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [2942] = "_", + [2945] = { + ["coords"] = { + [1] = { 49.6, 66.3, 3, 300 }, + }, + ["lvl"] = "42", + }, + [2947] = { + ["coords"] = { + [1] = { 48.7, 59.3, 215, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "21", + }, + [2948] = { + ["coords"] = { + [1] = { 48.5, 60.4, 215, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [2949] = { + ["coords"] = { + [1] = { 53.7, 74.1, 215, 375 }, + [2] = { 54.5, 73.4, 215, 375 }, + [3] = { 53.1, 73.3, 215, 375 }, + [4] = { 48.4, 72.4, 215, 375 }, + [5] = { 53.8, 72.4, 215, 375 }, + [6] = { 49.3, 72.2, 215, 375 }, + [7] = { 52.6, 72.1, 215, 375 }, + [8] = { 55, 72.1, 215, 375 }, + [9] = { 48.4, 71.8, 215, 375 }, + [10] = { 47.3, 71.4, 215, 375 }, + [11] = { 49.2, 71.4, 215, 375 }, + [12] = { 48.7, 71.2, 215, 375 }, + [13] = { 35.6, 63.4, 215, 375 }, + [14] = { 35, 62.7, 215, 375 }, + [15] = { 35.6, 62.4, 215, 375 }, + [16] = { 35.4, 62.3, 215, 375 }, + [17] = { 33.1, 62.2, 215, 375 }, + [18] = { 35.5, 62, 215, 375 }, + [19] = { 32.8, 61.8, 215, 375 }, + [20] = { 35.7, 61.6, 215, 375 }, + [21] = { 33, 61.2, 215, 375 }, + [22] = { 33.4, 61.2, 215, 375 }, + [23] = { 32.7, 61, 215, 375 }, + [24] = { 31.6, 60.4, 215, 375 }, + [25] = { 32, 59.8, 215, 375 }, + }, + ["lvl"] = "5-6", + }, + [2950] = { + ["coords"] = { + [1] = { 53.2, 74.1, 215, 375 }, + [2] = { 48.7, 73.3, 215, 375 }, + [3] = { 48, 73.3, 215, 375 }, + [4] = { 52.6, 73.2, 215, 375 }, + [5] = { 53.3, 73, 215, 375 }, + [6] = { 47.3, 72.3, 215, 375 }, + [7] = { 48.2, 72.1, 215, 375 }, + [8] = { 55.7, 71.8, 215, 375 }, + [9] = { 48.6, 71.8, 215, 375 }, + [10] = { 54.5, 71.6, 215, 375 }, + [11] = { 48, 71.2, 215, 375 }, + [12] = { 35.1, 63.4, 215, 375 }, + [13] = { 35.1, 61.8, 215, 375 }, + [14] = { 33, 61.7, 215, 375 }, + [15] = { 32.4, 61.1, 215, 375 }, + [16] = { 30.7, 61, 215, 375 }, + [17] = { 31.7, 60.7, 215, 375 }, + [18] = { 30.6, 60.5, 215, 375 }, + [19] = { 32.2, 60.5, 215, 375 }, + [20] = { 31.6, 60, 215, 375 }, + }, + ["lvl"] = "6-7", + }, + [2951] = { + ["coords"] = { + [1] = { 52.9, 73.4, 215, 375 }, + [2] = { 55.2, 73.1, 215, 375 }, + [3] = { 54.9, 72.9, 215, 375 }, + [4] = { 53.1, 72.5, 215, 375 }, + [5] = { 53.6, 72.4, 215, 375 }, + [6] = { 54.4, 71.9, 215, 375 }, + [7] = { 54, 71.8, 215, 375 }, + [8] = { 30.7, 62.4, 215, 375 }, + [9] = { 31.2, 62.2, 215, 375 }, + [10] = { 31.3, 61.7, 215, 375 }, + [11] = { 30.9, 61.5, 215, 375 }, + [12] = { 31.2, 61.2, 215, 375 }, + [13] = { 30.7, 60.5, 215, 375 }, + [14] = { 31, 60.4, 215, 375 }, + }, + ["lvl"] = "7-8", + }, + [2952] = { + ["coords"] = { + [1] = { 60.9, 84.8, 215, 375 }, + [2] = { 59.2, 84.7, 215, 375 }, + [3] = { 60.4, 84.2, 215, 375 }, + [4] = { 59.3, 84, 215, 375 }, + [5] = { 61.9, 83.6, 215, 375 }, + [6] = { 60.3, 82.9, 215, 375 }, + [7] = { 60.1, 82.3, 215, 375 }, + [8] = { 62.2, 82.1, 215, 375 }, + [9] = { 59.7, 82.1, 215, 375 }, + [10] = { 61, 82, 215, 375 }, + [11] = { 58.4, 81.8, 215, 375 }, + [12] = { 57.8, 81.7, 215, 375 }, + [13] = { 62.3, 81.5, 215, 375 }, + [14] = { 61.9, 81.4, 215, 375 }, + [15] = { 61.6, 81.1, 215, 375 }, + [16] = { 60.2, 80.9, 215, 375 }, + [17] = { 59.9, 80, 215, 375 }, + [18] = { 58.5, 79.8, 215, 375 }, + [19] = { 63.9, 79.7, 215, 375 }, + [20] = { 62.3, 79.7, 215, 375 }, + [21] = { 59.5, 79.5, 215, 375 }, + [22] = { 64.7, 79.5, 215, 375 }, + [23] = { 59.7, 79.2, 215, 375 }, + [24] = { 64.3, 79, 215, 375 }, + [25] = { 61.6, 78.8, 215, 375 }, + [26] = { 59.3, 78.5, 215, 375 }, + [27] = { 61.6, 78.4, 215, 375 }, + [28] = { 58.4, 78.3, 215, 375 }, + [29] = { 64, 78.3, 215, 375 }, + [30] = { 63.1, 78.3, 215, 375 }, + [31] = { 64.3, 78.3, 215, 375 }, + [32] = { 59.3, 78.3, 215, 375 }, + [33] = { 65.8, 78.2, 215, 375 }, + [34] = { 60.1, 78.1, 215, 375 }, + [35] = { 58.8, 78.1, 215, 375 }, + [36] = { 65.1, 78, 215, 375 }, + [37] = { 65.7, 77.9, 215, 375 }, + [38] = { 64.2, 77.8, 215, 375 }, + [39] = { 64.5, 77.7, 215, 375 }, + [40] = { 64.1, 77.3, 215, 375 }, + [41] = { 62.9, 77.3, 215, 375 }, + [42] = { 61.5, 77.1, 215, 375 }, + [43] = { 59.7, 77, 215, 375 }, + [44] = { 63.7, 77, 215, 375 }, + [45] = { 60.7, 76.8, 215, 375 }, + [46] = { 63.8, 76.7, 215, 375 }, + [47] = { 60.8, 75.3, 215, 375 }, + [48] = { 60.7, 74.8, 215, 375 }, + }, + ["lvl"] = "3-4", + }, + [2953] = { + ["coords"] = { + [1] = { 63.3, 82.8, 215, 375 }, + [2] = { 63.9, 81.1, 215, 375 }, + [3] = { 63.8, 79.8, 215, 375 }, + [4] = { 65, 78.6, 215, 375 }, + [5] = { 59.4, 78, 215, 375 }, + [6] = { 64.7, 77.9, 215, 375 }, + [7] = { 66.1, 77.8, 215, 375 }, + [8] = { 65.9, 77.1, 215, 375 }, + [9] = { 63.7, 76.2, 215, 375 }, + [10] = { 61.6, 76.1, 215, 375 }, + [11] = { 60.1, 76, 215, 375 }, + [12] = { 61.7, 75.8, 215, 375 }, + [13] = { 59.5, 75.4, 215, 375 }, + [14] = { 60, 75.3, 215, 375 }, + }, + ["lvl"] = "3-4", + }, + [2954] = { + ["coords"] = { + [1] = { 61, 86.5, 215, 375 }, + [2] = { 61, 85.3, 215, 375 }, + [3] = { 63.7, 81.7, 215, 375 }, + [4] = { 61.1, 80.6, 215, 375 }, + [5] = { 62.3, 79.2, 215, 375 }, + [6] = { 63.6, 79.1, 215, 375 }, + [7] = { 64.3, 78.6, 215, 375 }, + [8] = { 63.7, 78.4, 215, 375 }, + [9] = { 59.8, 78.3, 215, 375 }, + [10] = { 65.6, 77.9, 215, 375 }, + [11] = { 63.9, 77.6, 215, 375 }, + [12] = { 59, 77.2, 215, 375 }, + [13] = { 62.9, 76.1, 215, 375 }, + [14] = { 61.5, 75.7, 215, 375 }, + }, + ["lvl"] = "4-5", + }, + [2955] = { + ["coords"] = { + [1] = { 53.1, 88.9, 215, 233 }, + [2] = { 50.5, 88.7, 215, 233 }, + [3] = { 47.8, 88.2, 215, 233 }, + [4] = { 51.6, 88, 215, 233 }, + [5] = { 45.2, 87.9, 215, 233 }, + [6] = { 48.6, 87.7, 215, 233 }, + [7] = { 44.2, 87.7, 215, 233 }, + [8] = { 46.7, 87.6, 215, 233 }, + [9] = { 52.6, 87.5, 215, 233 }, + [10] = { 50.1, 87, 215, 233 }, + [11] = { 50.7, 87, 215, 233 }, + [12] = { 53.9, 86.9, 215, 233 }, + [13] = { 46.2, 86.9, 215, 233 }, + [14] = { 47.9, 86.6, 215, 233 }, + [15] = { 47.2, 86.5, 215, 233 }, + [16] = { 53.3, 86.3, 215, 233 }, + [17] = { 44, 86.2, 215, 233 }, + [18] = { 49.6, 86, 215, 233 }, + [19] = { 50.6, 85.9, 215, 233 }, + [20] = { 51.4, 85.7, 215, 233 }, + [21] = { 54.4, 85.6, 215, 233 }, + [22] = { 45.3, 85.5, 215, 233 }, + [23] = { 52.4, 85.5, 215, 233 }, + [24] = { 46, 85.2, 215, 233 }, + [25] = { 46.6, 85.2, 215, 233 }, + [26] = { 43.4, 85, 215, 233 }, + [27] = { 44.1, 85, 215, 233 }, + [28] = { 46.6, 85, 215, 233 }, + [29] = { 53.9, 84.3, 215, 233 }, + [30] = { 45.4, 84.1, 215, 233 }, + [31] = { 47.8, 84.1, 215, 233 }, + [32] = { 53.4, 84.1, 215, 233 }, + [33] = { 44.2, 83.9, 215, 233 }, + [34] = { 50.9, 83.8, 215, 233 }, + [35] = { 44.6, 83.7, 215, 233 }, + [36] = { 47.1, 83.7, 215, 233 }, + [37] = { 46.1, 83.5, 215, 233 }, + [38] = { 49.9, 83.4, 215, 233 }, + [39] = { 49.4, 83.4, 215, 233 }, + [40] = { 51.2, 83.1, 215, 233 }, + [41] = { 51.9, 83.1, 215, 233 }, + [42] = { 48.7, 83, 215, 233 }, + [43] = { 53.9, 82.8, 215, 233 }, + [44] = { 52.8, 82.7, 215, 233 }, + [45] = { 42.3, 82.3, 215, 233 }, + [46] = { 46.6, 82.2, 215, 233 }, + [47] = { 53.2, 82, 215, 233 }, + [48] = { 45.3, 81.9, 215, 233 }, + [49] = { 52, 81.9, 215, 233 }, + [50] = { 48.1, 81.8, 215, 233 }, + [51] = { 49.6, 81.7, 215, 233 }, + [52] = { 43.3, 81.7, 215, 233 }, + [53] = { 42.3, 81.4, 215, 233 }, + [54] = { 52.2, 81.3, 215, 233 }, + [55] = { 50.7, 81.2, 215, 233 }, + [56] = { 46.7, 81, 215, 233 }, + [57] = { 46, 80.6, 215, 233 }, + [58] = { 48.3, 80.4, 215, 233 }, + [59] = { 49.3, 80.4, 215, 233 }, + [60] = { 45.7, 80.3, 215, 233 }, + [61] = { 44.1, 79.8, 215, 233 }, + [62] = { 51.9, 79.8, 215, 233 }, + [63] = { 48.6, 79.6, 215, 233 }, + [64] = { 45.4, 79.2, 215, 233 }, + [65] = { 50.6, 79.1, 215, 233 }, + [66] = { 47.5, 79.1, 215, 233 }, + [67] = { 43.6, 79.1, 215, 233 }, + [68] = { 51.4, 79, 215, 233 }, + [69] = { 49.7, 78.6, 215, 233 }, + [70] = { 46.7, 78.2, 215, 233 }, + [71] = { 50.9, 78.1, 215, 233 }, + [72] = { 49.6, 77.8, 215, 233 }, + [73] = { 47.9, 77.4, 215, 233 }, + [74] = { 42.1, 77.3, 215, 233 }, + [75] = { 52, 77.2, 215, 233 }, + [76] = { 48, 77.1, 215, 233 }, + [77] = { 50.6, 77, 215, 233 }, + [78] = { 48.9, 76.9, 215, 233 }, + [79] = { 42.9, 76.5, 215, 233 }, + [80] = { 47.9, 76.4, 215, 233 }, + [81] = { 48.5, 76.3, 215, 233 }, + [82] = { 51.2, 76.2, 215, 233 }, + [83] = { 51, 76.2, 215, 233 }, + [84] = { 49.2, 75.7, 215, 233 }, + [85] = { 47, 75.6, 215, 233 }, + [86] = { 43.3, 75.5, 215, 233 }, + [87] = { 49.9, 75.3, 215, 233 }, + [88] = { 47.7, 75.3, 215, 233 }, + [89] = { 51.9, 75.1, 215, 233 }, + [90] = { 46.5, 75, 215, 233 }, + [91] = { 51.5, 74.9, 215, 233 }, + [92] = { 52.2, 74.8, 215, 233 }, + [93] = { 44.9, 74.2, 215, 233 }, + [94] = { 50.1, 74.2, 215, 233 }, + [95] = { 44.3, 74, 215, 233 }, + [96] = { 46.5, 73.6, 215, 233 }, + [97] = { 45.8, 73.3, 215, 233 }, + }, + ["lvl"] = "1-2", + }, + [2956] = { + ["coords"] = { + [1] = { 37.4, 55.7, 17, 375 }, + [2] = { 34.9, 79.9, 215, 375 }, + [3] = { 35.7, 79.1, 215, 375 }, + [4] = { 36.9, 77.2, 215, 375 }, + [5] = { 34.8, 77, 215, 375 }, + [6] = { 37.8, 75.2, 215, 375 }, + [7] = { 35, 74.4, 215, 375 }, + [8] = { 36.9, 73.2, 215, 375 }, + [9] = { 40.9, 73.2, 215, 375 }, + [10] = { 42.2, 72.3, 215, 375 }, + [11] = { 58.4, 72.3, 215, 375 }, + [12] = { 35.6, 71.4, 215, 375 }, + [13] = { 46, 71.2, 215, 375 }, + [14] = { 45.1, 71.1, 215, 375 }, + [15] = { 39.4, 70.2, 215, 375 }, + [16] = { 40.2, 70.2, 215, 375 }, + [17] = { 34.2, 69.9, 215, 375 }, + [18] = { 37, 69.4, 215, 375 }, + [19] = { 41.1, 69, 215, 375 }, + [20] = { 54.6, 68.6, 215, 375 }, + [21] = { 36.4, 68.4, 215, 375 }, + [22] = { 46.6, 68.4, 215, 375 }, + [23] = { 47.9, 68.3, 215, 375 }, + [24] = { 40.8, 68.3, 215, 375 }, + [25] = { 43.5, 67.5, 215, 375 }, + [26] = { 42.8, 67.4, 215, 375 }, + [27] = { 57.8, 67.4, 215, 375 }, + [28] = { 38, 67.1, 215, 375 }, + [29] = { 50.2, 67, 215, 375 }, + [30] = { 58.1, 66.6, 215, 375 }, + [31] = { 39.1, 66.6, 215, 375 }, + [32] = { 42, 66.4, 215, 375 }, + [33] = { 35.1, 66.4, 215, 375 }, + [34] = { 49.1, 66.4, 215, 375 }, + [35] = { 39.6, 66.3, 215, 375 }, + [36] = { 36.8, 65.8, 215, 375 }, + [37] = { 38.2, 63.5, 215, 375 }, + [38] = { 41.6, 63.4, 215, 375 }, + [39] = { 40.4, 62.6, 215, 375 }, + [40] = { 39.5, 61.9, 215, 375 }, + [41] = { 53.9, 61.6, 215, 375 }, + [42] = { 36.3, 61.6, 215, 375 }, + [43] = { 37.6, 61.3, 215, 375 }, + [44] = { 52.5, 60.6, 215, 375 }, + [45] = { 40.8, 59.7, 215, 375 }, + [46] = { 61.7, 59.6, 215, 375 }, + [47] = { 42.1, 59.6, 215, 375 }, + [48] = { 36.8, 58, 215, 375 }, + [49] = { 55.1, 57.8, 215, 375 }, + [50] = { 56.5, 57.7, 215, 375 }, + [51] = { 59.5, 57.1, 215, 375 }, + [52] = { 40, 56.9, 215, 375 }, + [53] = { 35.9, 56.7, 215, 375 }, + [54] = { 39.3, 56.1, 215, 375 }, + [55] = { 35.6, 55.3, 215, 375 }, + [56] = { 43, 55, 215, 375 }, + [57] = { 62.6, 54.8, 215, 375 }, + [58] = { 38.8, 54.3, 215, 375 }, + [59] = { 36.4, 53.9, 215, 375 }, + [60] = { 39.2, 53, 215, 375 }, + [61] = { 35.8, 52.3, 215, 375 }, + [62] = { 39.5, 52.2, 215, 375 }, + [63] = { 43.7, 51.4, 215, 375 }, + [64] = { 40.5, 51.4, 215, 375 }, + [65] = { 37, 51, 215, 375 }, + [66] = { 36.6, 50, 215, 375 }, + [67] = { 35.3, 48.3, 215, 375 }, + [68] = { 58.4, 46.8, 215, 375 }, + [69] = { 55.7, 46.1, 215, 375 }, + [70] = { 48.8, 45.8, 215, 375 }, + [71] = { 45.4, 45.1, 215, 375 }, + [72] = { 52.5, 45.1, 215, 375 }, + [73] = { 35.7, 44.2, 215, 375 }, + [74] = { 43.7, 43.9, 215, 375 }, + [75] = { 42.2, 43.3, 215, 375 }, + [76] = { 57.2, 43, 215, 375 }, + [77] = { 54.7, 42, 215, 375 }, + [78] = { 36.7, 41.2, 215, 375 }, + [79] = { 56, 40.9, 215, 375 }, + [80] = { 44.9, 40.8, 215, 375 }, + [81] = { 49, 40.1, 215, 375 }, + [82] = { 54.5, 39.2, 215, 375 }, + [83] = { 35.1, 39.2, 215, 375 }, + [84] = { 43.5, 38.9, 215, 375 }, + [85] = { 35.6, 38.1, 215, 375 }, + [86] = { 45.8, 37.2, 215, 375 }, + [87] = { 57.4, 36.9, 215, 375 }, + [88] = { 55.1, 36.9, 215, 375 }, + [89] = { 44.8, 36.3, 215, 375 }, + [90] = { 37.6, 35.3, 215, 375 }, + [91] = { 34.3, 34.1, 215, 375 }, + [92] = { 46.5, 31.5, 215, 375 }, + [93] = { 33.3, 31.1, 215, 375 }, + [94] = { 33.7, 30.7, 215, 375 }, + [95] = { 87.9, 63.1, 405, 375 }, + [96] = { 86.6, 59.7, 405, 375 }, + [97] = { 87.1, 59.2, 405, 375 }, + }, + ["lvl"] = "6-7", + }, + [2957] = { + ["coords"] = { + [1] = { 39.3, 58.7, 17, 375 }, + [2] = { 40.3, 58.1, 17, 375 }, + [3] = { 34.5, 44.4, 17, 375 }, + [4] = { 35, 43.3, 17, 375 }, + [5] = { 34.6, 42.1, 17, 375 }, + [6] = { 35, 41.6, 17, 375 }, + [7] = { 36.2, 41.4, 17, 375 }, + [8] = { 37.1, 41.2, 17, 375 }, + [9] = { 36.4, 40.9, 17, 375 }, + [10] = { 36.2, 40.4, 17, 375 }, + [11] = { 35.7, 39.5, 17, 375 }, + [12] = { 35.2, 39, 17, 375 }, + [13] = { 35, 38.4, 17, 375 }, + [14] = { 33.6, 37.8, 17, 375 }, + [15] = { 34.6, 37, 17, 375 }, + [16] = { 32.6, 35, 17, 375 }, + [17] = { 33, 34.3, 17, 375 }, + [18] = { 31.7, 33, 17, 375 }, + [19] = { 31.3, 32, 17, 375 }, + [20] = { 61, 64.5, 215, 375 }, + [21] = { 62.2, 64.4, 215, 375 }, + [22] = { 64.2, 63.5, 215, 375 }, + [23] = { 62.4, 62.8, 215, 375 }, + [24] = { 64.2, 61.7, 215, 375 }, + [25] = { 66.2, 60.7, 215, 375 }, + [26] = { 68.2, 59.6, 215, 375 }, + [27] = { 55.9, 56.4, 215, 375 }, + [28] = { 57.7, 53.9, 215, 375 }, + [29] = { 60.5, 53.6, 215, 375 }, + [30] = { 55.7, 50.6, 215, 375 }, + [31] = { 40.8, 50.1, 215, 375 }, + [32] = { 43.3, 47, 215, 375 }, + [33] = { 38.1, 47, 215, 375 }, + [34] = { 50.6, 46.1, 215, 375 }, + [35] = { 56.8, 44.8, 215, 375 }, + [36] = { 46.1, 44.3, 215, 375 }, + [37] = { 53.9, 44.1, 215, 375 }, + [38] = { 37.1, 43, 215, 375 }, + [39] = { 51.2, 42.2, 215, 375 }, + [40] = { 47.4, 41.9, 215, 375 }, + [41] = { 38.2, 39.8, 215, 375 }, + [42] = { 52.5, 39.7, 215, 375 }, + [43] = { 52, 39.4, 215, 375 }, + [44] = { 49.6, 38.1, 215, 375 }, + [45] = { 47.9, 36.5, 215, 375 }, + [46] = { 52.5, 35.2, 215, 375 }, + [47] = { 52.5, 34.4, 215, 375 }, + [48] = { 53.6, 34.1, 215, 375 }, + [49] = { 55.7, 33.7, 215, 375 }, + [50] = { 50.1, 33.5, 215, 375 }, + [51] = { 56.8, 32.5, 215, 375 }, + [52] = { 52.6, 32.5, 215, 375 }, + [53] = { 46.3, 32.2, 215, 375 }, + [54] = { 44.6, 31.5, 215, 375 }, + [55] = { 54, 31.3, 215, 375 }, + [56] = { 57.8, 30.3, 215, 375 }, + [57] = { 49.2, 29.6, 215, 375 }, + [58] = { 56, 29.5, 215, 375 }, + [59] = { 49.8, 29.3, 215, 375 }, + [60] = { 54, 28.9, 215, 375 }, + [61] = { 44.6, 28.4, 215, 375 }, + [62] = { 57, 27.9, 215, 375 }, + [63] = { 51.5, 27.9, 215, 375 }, + [64] = { 47.3, 27, 215, 375 }, + [65] = { 57.8, 27, 215, 375 }, + [66] = { 60.2, 26.6, 215, 375 }, + [67] = { 51.2, 26.6, 215, 375 }, + [68] = { 33.3, 26.5, 215, 375 }, + [69] = { 62, 26.3, 215, 375 }, + [70] = { 60.7, 25.6, 215, 375 }, + [71] = { 49.3, 25.6, 215, 375 }, + [72] = { 55.7, 25.6, 215, 375 }, + [73] = { 47.7, 25.3, 215, 375 }, + [74] = { 52.5, 24.9, 215, 375 }, + [75] = { 60.3, 24.7, 215, 375 }, + [76] = { 54.5, 24.6, 215, 375 }, + [77] = { 51, 23.6, 215, 375 }, + [78] = { 54.3, 23, 215, 375 }, + [79] = { 59.2, 23, 215, 375 }, + [80] = { 52, 22.1, 215, 375 }, + [81] = { 58.2, 21.9, 215, 375 }, + [82] = { 42.9, 21.5, 215, 375 }, + [83] = { 54.8, 21, 215, 375 }, + [84] = { 57.9, 20.6, 215, 375 }, + [85] = { 53.7, 19.7, 215, 375 }, + [86] = { 55.1, 19.6, 215, 375 }, + [87] = { 38.2, 18.9, 215, 375 }, + [88] = { 39.5, 18.8, 215, 375 }, + [89] = { 47.3, 18.6, 215, 375 }, + [90] = { 51.2, 18.6, 215, 375 }, + [91] = { 42.7, 18.6, 215, 375 }, + [92] = { 45.8, 18.5, 215, 375 }, + [93] = { 53.1, 18.4, 215, 375 }, + [94] = { 34.3, 18.1, 215, 375 }, + [95] = { 57, 17.9, 215, 375 }, + [96] = { 44.2, 17.9, 215, 375 }, + [97] = { 51.1, 17.7, 215, 375 }, + [98] = { 38.4, 17.1, 215, 375 }, + [99] = { 46, 17, 215, 375 }, + [100] = { 48.6, 16.1, 215, 375 }, + [101] = { 37.4, 14.8, 215, 375 }, + [102] = { 48.6, 14.7, 215, 375 }, + [103] = { 53.2, 14.1, 215, 375 }, + [104] = { 46.8, 14, 215, 375 }, + [105] = { 50.5, 14, 215, 375 }, + [106] = { 47.6, 13.7, 215, 375 }, + [107] = { 49.7, 13.5, 215, 375 }, + [108] = { 41.1, 13.2, 215, 375 }, + [109] = { 53.9, 12.6, 215, 375 }, + [110] = { 38.5, 12.5, 215, 375 }, + [111] = { 41.6, 11.5, 215, 375 }, + [112] = { 42.2, 11.2, 215, 375 }, + [113] = { 46.1, 10.7, 215, 375 }, + [114] = { 43.7, 10.2, 215, 375 }, + [115] = { 47.3, 10.2, 215, 375 }, + [116] = { 51.3, 10.1, 215, 375 }, + [117] = { 48.1, 10, 215, 375 }, + [118] = { 39.7, 8.8, 215, 375 }, + [119] = { 44, 8.6, 215, 375 }, + [120] = { 50.6, 8.1, 215, 375 }, + [121] = { 47.1, 7.6, 215, 375 }, + [122] = { 86.6, 54.5, 405, 375 }, + [123] = { 87.9, 44.9, 405, 375 }, + [124] = { 69.1, 100, 406, 375 }, + [125] = { 74.8, 99.5, 406, 375 }, + [126] = { 71.8, 99.1, 406, 375 }, + }, + ["lvl"] = "8-9", + }, + [2958] = { + ["coords"] = { + [1] = { 34.1, 79.3, 215, 375 }, + [2] = { 35, 77.9, 215, 375 }, + [3] = { 33.9, 77.5, 215, 375 }, + [4] = { 33.7, 76.3, 215, 375 }, + [5] = { 34.9, 76.1, 215, 375 }, + [6] = { 34.3, 76.1, 215, 375 }, + [7] = { 37.8, 75.6, 215, 375 }, + [8] = { 35.7, 75.2, 215, 375 }, + [9] = { 36.9, 75.2, 215, 375 }, + [10] = { 39, 74, 215, 375 }, + [11] = { 41.9, 73.7, 215, 375 }, + [12] = { 34.3, 73.5, 215, 375 }, + [13] = { 40.2, 73.4, 215, 375 }, + [14] = { 35.6, 73.4, 215, 375 }, + [15] = { 39, 72.4, 215, 375 }, + [16] = { 36.3, 72.4, 215, 375 }, + [17] = { 35.1, 72.4, 215, 375 }, + [18] = { 36.5, 71.5, 215, 375 }, + [19] = { 43.1, 71.3, 215, 375 }, + [20] = { 34.9, 71.3, 215, 375 }, + [21] = { 39.5, 71.2, 215, 375 }, + [22] = { 40.9, 71.2, 215, 375 }, + [23] = { 38.2, 71.2, 215, 375 }, + [24] = { 45.6, 70.4, 215, 375 }, + [25] = { 46.2, 70.4, 215, 375 }, + [26] = { 54.4, 70.4, 215, 375 }, + [27] = { 55.4, 70.4, 215, 375 }, + [28] = { 36.3, 70.4, 215, 375 }, + [29] = { 43.6, 70.4, 215, 375 }, + [30] = { 38.1, 70.3, 215, 375 }, + [31] = { 41.6, 70.3, 215, 375 }, + [32] = { 53.4, 69.8, 215, 375 }, + [33] = { 48.3, 69.8, 215, 375 }, + [34] = { 51.2, 69.5, 215, 375 }, + [35] = { 37.8, 69.5, 215, 375 }, + [36] = { 35.7, 69.4, 215, 375 }, + [37] = { 39.9, 69.4, 215, 375 }, + [38] = { 56.6, 69.3, 215, 375 }, + [39] = { 45.9, 69.3, 215, 375 }, + [40] = { 47.6, 69.1, 215, 375 }, + [41] = { 40, 68.6, 215, 375 }, + [42] = { 35, 68.4, 215, 375 }, + [43] = { 39.3, 68.4, 215, 375 }, + [44] = { 50.6, 68.4, 215, 375 }, + [45] = { 53.4, 68.4, 215, 375 }, + [46] = { 41.6, 68.2, 215, 375 }, + [47] = { 39.5, 67.5, 215, 375 }, + [48] = { 37, 67.5, 215, 375 }, + [49] = { 48.6, 67.5, 215, 375 }, + [50] = { 51.3, 67.5, 215, 375 }, + [51] = { 55.1, 67.4, 215, 375 }, + [52] = { 36.3, 67.4, 215, 375 }, + [53] = { 44.8, 67.3, 215, 375 }, + [54] = { 51.9, 66.7, 215, 375 }, + [55] = { 43, 66.6, 215, 375 }, + [56] = { 40.7, 66.4, 215, 375 }, + [57] = { 37.6, 66.4, 215, 375 }, + [58] = { 56.7, 66.3, 215, 375 }, + [59] = { 40.9, 66.1, 215, 375 }, + [60] = { 55, 65.8, 215, 375 }, + [61] = { 56.3, 65.8, 215, 375 }, + [62] = { 38.3, 65.7, 215, 375 }, + [63] = { 41.5, 65.6, 215, 375 }, + [64] = { 47.5, 65.4, 215, 375 }, + [65] = { 35.7, 65.4, 215, 375 }, + [66] = { 49.8, 65.3, 215, 375 }, + [67] = { 36.6, 65.2, 215, 375 }, + [68] = { 36.2, 64.7, 215, 375 }, + [69] = { 50.7, 64.6, 215, 375 }, + [70] = { 37.5, 64.4, 215, 375 }, + [71] = { 39, 64.2, 215, 375 }, + [72] = { 41.4, 63.9, 215, 375 }, + [73] = { 42, 63.8, 215, 375 }, + [74] = { 56.4, 63.7, 215, 375 }, + [75] = { 39.8, 63.7, 215, 375 }, + [76] = { 37.2, 63.6, 215, 375 }, + [77] = { 38.7, 63, 215, 375 }, + [78] = { 55.8, 62.7, 215, 375 }, + [79] = { 37.3, 62.5, 215, 375 }, + [80] = { 40.8, 62, 215, 375 }, + [81] = { 38.1, 61.8, 215, 375 }, + [82] = { 42.2, 61.7, 215, 375 }, + [83] = { 36.4, 61, 215, 375 }, + [84] = { 40.8, 60.7, 215, 375 }, + [85] = { 41.5, 60.6, 215, 375 }, + [86] = { 36.4, 59.7, 215, 375 }, + [87] = { 36.8, 59.4, 215, 375 }, + [88] = { 35.6, 59.3, 215, 375 }, + [89] = { 54.3, 59.3, 215, 375 }, + [90] = { 40, 58.7, 215, 375 }, + [91] = { 37.8, 58.6, 215, 375 }, + [92] = { 38.2, 58.1, 215, 375 }, + [93] = { 53.9, 57.7, 215, 375 }, + [94] = { 40.2, 57.7, 215, 375 }, + [95] = { 36, 57.7, 215, 375 }, + [96] = { 39.6, 57.3, 215, 375 }, + [97] = { 37.8, 56.6, 215, 375 }, + [98] = { 36.9, 56.4, 215, 375 }, + [99] = { 35.8, 56, 215, 375 }, + [100] = { 42.2, 55.7, 215, 375 }, + [101] = { 38.2, 55.7, 215, 375 }, + [102] = { 39.6, 55.6, 215, 375 }, + [103] = { 42.2, 55, 215, 375 }, + [104] = { 37.6, 54.8, 215, 375 }, + [105] = { 40.2, 54.7, 215, 375 }, + [106] = { 40.8, 54, 215, 375 }, + [107] = { 35.1, 53.7, 215, 375 }, + [108] = { 39.3, 53.6, 215, 375 }, + [109] = { 38.2, 53.5, 215, 375 }, + [110] = { 39.9, 52.6, 215, 375 }, + [111] = { 34.9, 52.6, 215, 375 }, + [112] = { 36.3, 52.2, 215, 375 }, + [113] = { 38.1, 52.2, 215, 375 }, + [114] = { 36.5, 51.9, 215, 375 }, + [115] = { 40.8, 51.8, 215, 375 }, + [116] = { 41.6, 51.8, 215, 375 }, + [117] = { 39.2, 50.9, 215, 375 }, + [118] = { 39, 49.9, 215, 375 }, + }, + ["lvl"] = "5-6", + }, + [2960] = { + ["coords"] = { + [1] = { 38.5, 62.3, 17, 375 }, + [2] = { 38.7, 62.2, 17, 375 }, + [3] = { 38.5, 62, 17, 375 }, + [4] = { 39.5, 61.6, 17, 375 }, + [5] = { 39.2, 61.3, 17, 375 }, + [6] = { 38.9, 61.1, 17, 375 }, + [7] = { 39.6, 60.8, 17, 375 }, + [8] = { 39.2, 60.7, 17, 375 }, + [9] = { 39.5, 60.1, 17, 375 }, + [10] = { 38.8, 59.9, 17, 375 }, + [11] = { 39.6, 58.5, 17, 375 }, + [12] = { 39.1, 58.2, 17, 375 }, + [13] = { 38.1, 58.2, 17, 375 }, + [14] = { 37.5, 58.2, 17, 375 }, + [15] = { 38.4, 57.8, 17, 375 }, + [16] = { 39.2, 57.7, 17, 375 }, + [17] = { 39.5, 57.7, 17, 375 }, + [18] = { 37.7, 57.7, 17, 375 }, + [19] = { 39.6, 57.4, 17, 375 }, + [20] = { 38.9, 56.9, 17, 375 }, + [21] = { 39.3, 56.6, 17, 375 }, + [22] = { 37.1, 56.4, 17, 375 }, + [23] = { 37.8, 56.4, 17, 375 }, + [24] = { 34.8, 43.8, 17, 375 }, + [25] = { 35.6, 42.6, 17, 375 }, + [26] = { 34.7, 42.5, 17, 375 }, + [27] = { 34.5, 42.3, 17, 375 }, + [28] = { 35.2, 42.1, 17, 375 }, + [29] = { 36.6, 42, 17, 375 }, + [30] = { 34.6, 40.9, 17, 375 }, + [31] = { 34.8, 40.5, 17, 375 }, + [32] = { 34.9, 39.3, 17, 375 }, + [33] = { 34.6, 38.4, 17, 375 }, + [34] = { 32.6, 34.5, 17, 375 }, + [35] = { 31.7, 32.5, 17, 375 }, + [36] = { 30.6, 31.8, 17, 375 }, + [37] = { 63.5, 69.2, 215, 375 }, + [38] = { 61.7, 68.3, 215, 375 }, + [39] = { 62.9, 68.1, 215, 375 }, + [40] = { 64.7, 67.8, 215, 375 }, + [41] = { 61.5, 67.8, 215, 375 }, + [42] = { 65.2, 67.7, 215, 375 }, + [43] = { 64.8, 67.2, 215, 375 }, + [44] = { 66.8, 66.5, 215, 375 }, + [45] = { 62.2, 66.3, 215, 375 }, + [46] = { 66.1, 65.8, 215, 375 }, + [47] = { 62.3, 65.6, 215, 375 }, + [48] = { 62.9, 65.5, 215, 375 }, + [49] = { 65.5, 65.4, 215, 375 }, + [50] = { 64.2, 65.4, 215, 375 }, + [51] = { 67, 64.8, 215, 375 }, + [52] = { 66.1, 64.7, 215, 375 }, + [53] = { 66.8, 63.6, 215, 375 }, + [54] = { 65.3, 63.2, 215, 375 }, + [55] = { 62.8, 61.7, 215, 375 }, + [56] = { 61.5, 61.6, 215, 375 }, + [57] = { 64.6, 61, 215, 375 }, + [58] = { 63.7, 60.7, 215, 375 }, + [59] = { 66.9, 60.4, 215, 375 }, + [60] = { 65.9, 59.7, 215, 375 }, + [61] = { 64, 59.7, 215, 375 }, + [62] = { 62.8, 59.7, 215, 375 }, + [63] = { 64.5, 59, 215, 375 }, + [64] = { 66.2, 58.8, 215, 375 }, + [65] = { 66.7, 58.8, 215, 375 }, + [66] = { 63.2, 58.7, 215, 375 }, + [67] = { 66.9, 58.1, 215, 375 }, + [68] = { 62.3, 57.7, 215, 375 }, + [69] = { 61.5, 57.6, 215, 375 }, + [70] = { 65.6, 57.3, 215, 375 }, + [71] = { 66.2, 56.7, 215, 375 }, + [72] = { 62.1, 56.2, 215, 375 }, + [73] = { 63.4, 56.2, 215, 375 }, + [74] = { 54.1, 33.9, 215, 375 }, + [75] = { 53.1, 32.5, 215, 375 }, + [76] = { 50.5, 32.2, 215, 375 }, + [77] = { 56, 31.3, 215, 375 }, + [78] = { 57.4, 31.3, 215, 375 }, + [79] = { 49.1, 30.7, 215, 375 }, + [80] = { 44.4, 30.3, 215, 375 }, + [81] = { 44.1, 30.2, 215, 375 }, + [82] = { 50.5, 29.6, 215, 375 }, + [83] = { 53.3, 29.4, 215, 375 }, + [84] = { 45.4, 29.1, 215, 375 }, + [85] = { 59, 29, 215, 375 }, + [86] = { 46.5, 28.8, 215, 375 }, + [87] = { 57.3, 28.7, 215, 375 }, + [88] = { 48, 28.5, 215, 375 }, + [89] = { 56.8, 28.4, 215, 375 }, + [90] = { 45.9, 28, 215, 375 }, + [91] = { 58.2, 27.9, 215, 375 }, + [92] = { 61, 27.8, 215, 375 }, + [93] = { 45.5, 27.3, 215, 375 }, + [94] = { 49.1, 27.2, 215, 375 }, + [95] = { 46.2, 26.6, 215, 375 }, + [96] = { 45.4, 26.6, 215, 375 }, + [97] = { 57.1, 25.6, 215, 375 }, + [98] = { 57.4, 24.8, 215, 375 }, + [99] = { 43.5, 24.7, 215, 375 }, + [100] = { 56.3, 24.6, 215, 375 }, + [101] = { 53.9, 24.1, 215, 375 }, + [102] = { 48.8, 23.7, 215, 375 }, + [103] = { 52.2, 23.2, 215, 375 }, + [104] = { 57.6, 22.4, 215, 375 }, + [105] = { 51, 21.9, 215, 375 }, + [106] = { 54.6, 21.5, 215, 375 }, + [107] = { 56.2, 20.9, 215, 375 }, + [108] = { 57.1, 20.8, 215, 375 }, + [109] = { 52.7, 20.7, 215, 375 }, + [110] = { 32.3, 20.1, 215, 375 }, + [111] = { 52, 19.9, 215, 375 }, + [112] = { 50.5, 19.7, 215, 375 }, + [113] = { 45.3, 18.8, 215, 375 }, + [114] = { 40.7, 18.6, 215, 375 }, + [115] = { 38.9, 17.8, 215, 375 }, + [116] = { 45.3, 17.7, 215, 375 }, + [117] = { 52.6, 17.4, 215, 375 }, + [118] = { 50.9, 16.6, 215, 375 }, + [119] = { 45.3, 15.9, 215, 375 }, + [120] = { 36.3, 15.8, 215, 375 }, + [121] = { 49.4, 15.8, 215, 375 }, + [122] = { 37.2, 15.5, 215, 375 }, + [123] = { 52.3, 15.3, 215, 375 }, + [124] = { 42.9, 14.7, 215, 375 }, + [125] = { 50, 14.2, 215, 375 }, + [126] = { 51.1, 14.2, 215, 375 }, + [127] = { 49.3, 14.1, 215, 375 }, + [128] = { 53.1, 13, 215, 375 }, + [129] = { 50.6, 12.9, 215, 375 }, + [130] = { 49.2, 12.3, 215, 375 }, + [131] = { 49.9, 11.8, 215, 375 }, + [132] = { 40.8, 11.1, 215, 375 }, + [133] = { 42.7, 10.1, 215, 375 }, + [134] = { 40.2, 10.1, 215, 375 }, + [135] = { 51.3, 9.1, 215, 375 }, + [136] = { 43.4, 9, 215, 375 }, + [137] = { 41.5, 8.1, 215, 375 }, + [138] = { 49.2, 7.7, 215, 375 }, + [139] = { 85.5, 47.2, 405, 375 }, + [140] = { 67, 99.5, 406, 375 }, + [141] = { 73.6, 99.2, 406, 375 }, + [142] = { 67.5, 38.8, 1638, 375 }, + }, + ["lvl"] = "9-10", + }, + [2962] = { + ["coords"] = { + [1] = { 39.9, 64.5, 17, 375 }, + [2] = { 39.6, 63.9, 17, 375 }, + [3] = { 39.5, 63.5, 17, 375 }, + [4] = { 39.9, 63.1, 17, 375 }, + [5] = { 39.5, 62.6, 17, 375 }, + [6] = { 63.7, 72.4, 215, 375 }, + [7] = { 67.5, 72.2, 215, 375 }, + [8] = { 62.5, 71.5, 215, 375 }, + [9] = { 61.6, 71.4, 215, 375 }, + [10] = { 62.3, 71.3, 215, 375 }, + [11] = { 67, 71.1, 215, 375 }, + [12] = { 64.9, 71, 215, 375 }, + [13] = { 62.9, 70.5, 215, 375 }, + [14] = { 63.6, 70.4, 215, 375 }, + [15] = { 64.1, 70.4, 215, 375 }, + [16] = { 66.8, 70.3, 215, 375 }, + [17] = { 66.1, 70.2, 215, 375 }, + [18] = { 66.2, 69.5, 215, 375 }, + [19] = { 67.5, 69.5, 215, 375 }, + [20] = { 64.8, 69.3, 215, 375 }, + [21] = { 65.6, 68.4, 215, 375 }, + [22] = { 66.7, 68.4, 215, 375 }, + [23] = { 33.7, 43.2, 215, 375 }, + [24] = { 32.4, 43, 215, 375 }, + [25] = { 31.7, 42.2, 215, 375 }, + [26] = { 31.1, 42.2, 215, 375 }, + [27] = { 34.3, 42.1, 215, 375 }, + [28] = { 32.3, 42.1, 215, 375 }, + [29] = { 32.4, 41.1, 215, 375 }, + [30] = { 31.1, 41.1, 215, 375 }, + [31] = { 33.6, 41.1, 215, 375 }, + [32] = { 31.7, 40.3, 215, 375 }, + [33] = { 87.1, 73.5, 405, 375 }, + [34] = { 85.6, 73.4, 405, 375 }, + [35] = { 84.9, 72.4, 405, 375 }, + [36] = { 84.2, 72.4, 405, 375 }, + [37] = { 87.8, 72.3, 405, 375 }, + [38] = { 85.5, 72.3, 405, 375 }, + [39] = { 85.7, 71.1, 405, 375 }, + [40] = { 84.1, 71.1, 405, 375 }, + [41] = { 87, 71.1, 405, 375 }, + [42] = { 84.9, 70.2, 405, 375 }, + }, + ["lvl"] = "7-8", + }, + [2963] = { + ["coords"] = { + [1] = { 39.9, 64.1, 17, 375 }, + [2] = { 40.1, 64, 17, 375 }, + [3] = { 39.9, 63.6, 17, 375 }, + [4] = { 39.6, 63.2, 17, 375 }, + [5] = { 40.2, 63.2, 17, 375 }, + [6] = { 61.7, 72.4, 215, 375 }, + [7] = { 67.6, 71.4, 215, 375 }, + [8] = { 63.6, 71.3, 215, 375 }, + [9] = { 68, 71.2, 215, 375 }, + [10] = { 65.5, 70.5, 215, 375 }, + [11] = { 67.5, 70.4, 215, 375 }, + [12] = { 66.9, 69.6, 215, 375 }, + [13] = { 68.1, 69.5, 215, 375 }, + [14] = { 65.3, 69.1, 215, 375 }, + [15] = { 66.1, 68.4, 215, 375 }, + [16] = { 34.4, 44, 215, 375 }, + [17] = { 34.2, 43.1, 215, 375 }, + [18] = { 33.1, 43, 215, 375 }, + [19] = { 31.9, 43, 215, 375 }, + [20] = { 33.1, 42.2, 215, 375 }, + [21] = { 33.6, 42, 215, 375 }, + [22] = { 31.8, 41.3, 215, 375 }, + [23] = { 34.3, 41.2, 215, 375 }, + [24] = { 33.8, 40.3, 215, 375 }, + [25] = { 87.9, 74.5, 405, 375 }, + [26] = { 87.7, 73.5, 405, 375 }, + [27] = { 86.4, 73.3, 405, 375 }, + [28] = { 85, 73.3, 405, 375 }, + [29] = { 86.4, 72.4, 405, 375 }, + [30] = { 87.1, 72.2, 405, 375 }, + [31] = { 84.9, 71.4, 405, 375 }, + [32] = { 87.8, 71.2, 405, 375 }, + [33] = { 87.2, 70.2, 405, 375 }, + }, + ["lvl"] = "8-9", + }, + [2964] = { + ["coords"] = { + [1] = { 34, 36.6, 17, 375 }, + [2] = { 33.6, 36.1, 17, 375 }, + [3] = { 34.2, 35.9, 17, 375 }, + [4] = { 33.5, 35.6, 17, 375 }, + [5] = { 34.3, 34.9, 17, 375 }, + [6] = { 33.3, 34.1, 17, 375 }, + [7] = { 33.7, 33.8, 17, 375 }, + [8] = { 33.2, 33.3, 17, 375 }, + [9] = { 31.9, 31.5, 17, 375 }, + [10] = { 31.6, 31.5, 17, 375 }, + [11] = { 32.8, 31, 17, 375 }, + [12] = { 31.9, 30.6, 17, 375 }, + [13] = { 31.1, 28.4, 215, 375 }, + [14] = { 29.7, 27.5, 215, 375 }, + [15] = { 30.5, 26.5, 215, 375 }, + [16] = { 29.7, 26.4, 215, 375 }, + [17] = { 30.4, 25.7, 215, 375 }, + [18] = { 29.2, 25.7, 215, 375 }, + [19] = { 31.1, 25.5, 215, 375 }, + [20] = { 32.5, 24.7, 215, 375 }, + [21] = { 29.7, 24.7, 215, 375 }, + [22] = { 29.8, 23.8, 215, 375 }, + [23] = { 31.1, 23.6, 215, 375 }, + [24] = { 31.8, 23.6, 215, 375 }, + [25] = { 31.6, 22.8, 215, 375 }, + [26] = { 30.4, 22.8, 215, 375 }, + [27] = { 29.2, 22.8, 215, 375 }, + [28] = { 31.1, 21.6, 215, 375 }, + [29] = { 29.7, 21.6, 215, 375 }, + [30] = { 28.4, 21.3, 215, 375 }, + [31] = { 29.2, 21, 215, 375 }, + [32] = { 31.8, 20.8, 215, 375 }, + [33] = { 30.5, 20.7, 215, 375 }, + [34] = { 31.1, 19.6, 215, 375 }, + [35] = { 55.8, 17.1, 215, 375 }, + [36] = { 55, 16.1, 215, 375 }, + [37] = { 56.4, 15.8, 215, 375 }, + [38] = { 55, 15.2, 215, 375 }, + [39] = { 56.5, 13.8, 215, 375 }, + [40] = { 35, 13.7, 215, 375 }, + [41] = { 54.5, 12.1, 215, 375 }, + [42] = { 36.9, 12, 215, 375 }, + [43] = { 35.8, 11.9, 215, 375 }, + [44] = { 55.2, 11.7, 215, 375 }, + [45] = { 36.9, 11, 215, 375 }, + [46] = { 54.4, 10.7, 215, 375 }, + [47] = { 36.3, 9.9, 215, 375 }, + [48] = { 38.8, 9, 215, 375 }, + [49] = { 38.1, 9, 215, 375 }, + [50] = { 37.9, 8.1, 215, 375 }, + [51] = { 39.5, 8, 215, 375 }, + [52] = { 51.8, 7.2, 215, 375 }, + [53] = { 51.1, 7.2, 215, 375 }, + [54] = { 40.2, 7.1, 215, 375 }, + [55] = { 39.5, 6.1, 215, 375 }, + [56] = { 53.4, 6, 215, 375 }, + [57] = { 38.2, 5.9, 215, 375 }, + [58] = { 40.1, 5.3, 215, 375 }, + [59] = { 51.8, 5.3, 215, 375 }, + [60] = { 84.1, 56.6, 405, 375 }, + [61] = { 82.6, 55.6, 405, 375 }, + [62] = { 83.4, 54.5, 405, 375 }, + [63] = { 82.6, 54.3, 405, 375 }, + [64] = { 83.3, 53.6, 405, 375 }, + [65] = { 82, 53.6, 405, 375 }, + [66] = { 84.1, 53.3, 405, 375 }, + [67] = { 85.7, 52.4, 405, 375 }, + [68] = { 82.5, 52.4, 405, 375 }, + [69] = { 82.6, 51.4, 405, 375 }, + [70] = { 84.1, 51.2, 405, 375 }, + [71] = { 84.9, 51.2, 405, 375 }, + [72] = { 84.7, 50.3, 405, 375 }, + [73] = { 83.3, 50.3, 405, 375 }, + [74] = { 81.9, 50.2, 405, 375 }, + [75] = { 84.1, 48.9, 405, 375 }, + [76] = { 82.6, 48.8, 405, 375 }, + [77] = { 81.1, 48.5, 405, 375 }, + [78] = { 82, 48.2, 405, 375 }, + [79] = { 84.9, 48, 405, 375 }, + [80] = { 83.5, 47.8, 405, 375 }, + [81] = { 84.1, 46.6, 405, 375 }, + [82] = { 88.6, 39.8, 405, 375 }, + [83] = { 90, 35.4, 405, 375 }, + [84] = { 64, 99.5, 406, 375 }, + [85] = { 65.3, 99.5, 406, 375 }, + [86] = { 75.8, 98.7, 406, 375 }, + [87] = { 75.2, 98.7, 406, 375 }, + [88] = { 65.9, 98.7, 406, 375 }, + [89] = { 65.4, 97.8, 406, 375 }, + [90] = { 77.2, 97.8, 406, 375 }, + [91] = { 64.2, 97.7, 406, 375 }, + [92] = { 65.8, 97.1, 406, 375 }, + [93] = { 75.8, 97.1, 406, 375 }, + }, + ["lvl"] = "9-10", + }, + [2965] = { + ["coords"] = { + [1] = { 34, 36, 17, 375 }, + [2] = { 34.2, 34.5, 17, 375 }, + [3] = { 33.9, 34.1, 17, 375 }, + [4] = { 33.6, 33.5, 17, 375 }, + [5] = { 33.6, 32.9, 17, 375 }, + [6] = { 33.6, 32.6, 17, 375 }, + [7] = { 32, 31, 17, 375 }, + [8] = { 31.6, 31, 17, 375 }, + [9] = { 32.4, 30.7, 17, 375 }, + [10] = { 31.6, 30.6, 17, 375 }, + [11] = { 31.3, 30.6, 17, 375 }, + [12] = { 31.7, 28.3, 215, 375 }, + [13] = { 31.1, 27.7, 215, 375 }, + [14] = { 30.3, 27.6, 215, 375 }, + [15] = { 32.4, 27.6, 215, 375 }, + [16] = { 31.6, 26.6, 215, 375 }, + [17] = { 31.1, 26.5, 215, 375 }, + [18] = { 29.7, 25.7, 215, 375 }, + [19] = { 32.5, 25.4, 215, 375 }, + [20] = { 30.5, 24.8, 215, 375 }, + [21] = { 33.1, 24.7, 215, 375 }, + [22] = { 31.8, 24.6, 215, 375 }, + [23] = { 30.9, 24.5, 215, 375 }, + [24] = { 30.4, 23.6, 215, 375 }, + [25] = { 32.4, 23.6, 215, 375 }, + [26] = { 31.1, 22.8, 215, 375 }, + [27] = { 29.8, 22.6, 215, 375 }, + [28] = { 31.8, 21.7, 215, 375 }, + [29] = { 29, 21.7, 215, 375 }, + [30] = { 30.3, 21.7, 215, 375 }, + [31] = { 32.5, 21.6, 215, 375 }, + [32] = { 29.9, 20.8, 215, 375 }, + [33] = { 30.3, 19.7, 215, 375 }, + [34] = { 29.7, 19.6, 215, 375 }, + [35] = { 55.8, 16, 215, 375 }, + [36] = { 56.3, 12.9, 215, 375 }, + [37] = { 35.2, 12.8, 215, 375 }, + [38] = { 55.7, 12.3, 215, 375 }, + [39] = { 36.3, 12, 215, 375 }, + [40] = { 55.1, 11.1, 215, 375 }, + [41] = { 36.3, 10.9, 215, 375 }, + [42] = { 37.6, 10.1, 215, 375 }, + [43] = { 55.2, 9.9, 215, 375 }, + [44] = { 36.8, 9.3, 215, 375 }, + [45] = { 55, 9.2, 215, 375 }, + [46] = { 40.1, 8.1, 215, 375 }, + [47] = { 38.2, 7.9, 215, 375 }, + [48] = { 39.3, 7.1, 215, 375 }, + [49] = { 37.9, 7, 215, 375 }, + [50] = { 40.2, 6.2, 215, 375 }, + [51] = { 52, 6.1, 215, 375 }, + [52] = { 51.2, 6, 215, 375 }, + [53] = { 52.7, 5.6, 215, 375 }, + [54] = { 38.8, 5.5, 215, 375 }, + [55] = { 51.2, 5.3, 215, 375 }, + [56] = { 40.8, 5.2, 215, 375 }, + [57] = { 50.6, 5.2, 215, 375 }, + [58] = { 39.4, 5.1, 215, 375 }, + [59] = { 84.8, 56.6, 405, 375 }, + [60] = { 84.1, 55.8, 405, 375 }, + [61] = { 83.3, 55.7, 405, 375 }, + [62] = { 85.6, 55.7, 405, 375 }, + [63] = { 84.7, 54.6, 405, 375 }, + [64] = { 84.2, 54.5, 405, 375 }, + [65] = { 82.6, 53.5, 405, 375 }, + [66] = { 85.7, 53.2, 405, 375 }, + [67] = { 83.5, 52.5, 405, 375 }, + [68] = { 86.4, 52.4, 405, 375 }, + [69] = { 84.9, 52.3, 405, 375 }, + [70] = { 84, 52.2, 405, 375 }, + [71] = { 83.3, 51.1, 405, 375 }, + [72] = { 85.7, 51.1, 405, 375 }, + [73] = { 84.1, 50.2, 405, 375 }, + [74] = { 82.7, 50, 405, 375 }, + [75] = { 84.9, 49, 405, 375 }, + [76] = { 81.7, 49, 405, 375 }, + [77] = { 83.3, 49, 405, 375 }, + [78] = { 85.7, 48.8, 405, 375 }, + [79] = { 82.8, 47.9, 405, 375 }, + [80] = { 83.3, 46.6, 405, 375 }, + [81] = { 82.6, 46.6, 405, 375 }, + [82] = { 88.8, 38.8, 405, 375 }, + [83] = { 65.8, 99.6, 406, 375 }, + [84] = { 64.2, 99.4, 406, 375 }, + [85] = { 65.2, 98.6, 406, 375 }, + [86] = { 64, 98.6, 406, 375 }, + [87] = { 65.9, 97.9, 406, 375 }, + [88] = { 75.9, 97.8, 406, 375 }, + [89] = { 75.3, 97.8, 406, 375 }, + [90] = { 76.6, 97.4, 406, 375 }, + [91] = { 64.7, 97.3, 406, 375 }, + [92] = { 75.3, 97.1, 406, 375 }, + [93] = { 66.4, 97.1, 406, 375 }, + [94] = { 74.8, 97.1, 406, 375 }, + [95] = { 65.2, 97, 406, 375 }, + }, + ["lvl"] = "10-11", + }, + [2966] = { + ["coords"] = { + [1] = { 59.5, 90.5, 215, 233 }, + [2] = { 59.6, 90.5, 215, 233 }, + [3] = { 57.6, 90.1, 215, 233 }, + [4] = { 56.9, 90.1, 215, 233 }, + [5] = { 58.7, 90.1, 215, 233 }, + [6] = { 56.9, 88.9, 215, 233 }, + [7] = { 58.4, 88.9, 215, 233 }, + [8] = { 60.2, 88.8, 215, 233 }, + [9] = { 59.4, 88.6, 215, 233 }, + [10] = { 58.1, 88, 215, 233 }, + [11] = { 56.8, 88, 215, 233 }, + [12] = { 55.9, 87.9, 215, 233 }, + [13] = { 56.5, 87.5, 215, 233 }, + [14] = { 55.1, 86.7, 215, 233 }, + [15] = { 57.6, 86.7, 215, 233 }, + [16] = { 55.7, 86.2, 215, 233 }, + [17] = { 56.5, 85.9, 215, 233 }, + [18] = { 55.1, 85.7, 215, 233 }, + [19] = { 56.3, 85.2, 215, 233 }, + [20] = { 57, 84.9, 215, 233 }, + [21] = { 56.1, 84.2, 215, 233 }, + [22] = { 56.4, 84.1, 215, 233 }, + [23] = { 54.6, 84, 215, 233 }, + [24] = { 55.5, 82.1, 215, 233 }, + [25] = { 53.8, 82, 215, 233 }, + [26] = { 56.5, 82, 215, 233 }, + [27] = { 56.1, 81.9, 215, 233 }, + [28] = { 55, 81.9, 215, 233 }, + [29] = { 54.3, 81.8, 215, 233 }, + [30] = { 55, 80.8, 215, 233 }, + [31] = { 55.7, 80.2, 215, 233 }, + [32] = { 52.6, 80.2, 215, 233 }, + [33] = { 54.6, 80.1, 215, 233 }, + [34] = { 55.1, 79.4, 215, 233 }, + [35] = { 53.3, 79.3, 215, 233 }, + [36] = { 52.6, 79.3, 215, 233 }, + [37] = { 55.2, 78.1, 215, 233 }, + [38] = { 53.1, 77.7, 215, 233 }, + [39] = { 51.9, 77.2, 215, 233 }, + [40] = { 55, 77.1, 215, 233 }, + [41] = { 54, 76.9, 215, 233 }, + [42] = { 54.4, 76.3, 215, 233 }, + [43] = { 53.2, 76.2, 215, 233 }, + [44] = { 55.8, 76.2, 215, 233 }, + [45] = { 55.1, 75.2, 215, 233 }, + [46] = { 52.4, 75, 215, 233 }, + }, + ["lvl"] = "3-4", + }, + [2967] = { + ["coords"] = { + [1] = { 38.6, 60.9, 17, 375 }, + [2] = { 37.7, 56, 17, 120 }, + [3] = { 37.5, 55.8, 17, 300 }, + [4] = { 37, 55.6, 17, 375 }, + [5] = { 36.8, 55.3, 17, 300 }, + [6] = { 37.5, 55.3, 17, 300 }, + [7] = { 37, 55, 17, 120 }, + [8] = { 36.8, 54.9, 17, 120 }, + [9] = { 65, 65.2, 215, 375 }, + [10] = { 62.5, 59.2, 215, 375 }, + [11] = { 63.2, 55.4, 215, 120 }, + [12] = { 62.8, 55.1, 215, 300 }, + [13] = { 61.9, 54.7, 215, 375 }, + [14] = { 61.4, 54.1, 215, 300 }, + [15] = { 62.8, 53.9, 215, 300 }, + [16] = { 61.8, 53.4, 215, 120 }, + [17] = { 61.4, 53.3, 215, 120 }, + }, + ["lvl"] = "8-9", + }, + [2968] = { + ["coords"] = { + [1] = { 38.7, 61, 17, 375 }, + [2] = { 36.5, 55, 17, 375 }, + [3] = { 37.3, 54.9, 17, 120 }, + [4] = { 65.1, 65.2, 215, 375 }, + [5] = { 62.6, 59.3, 215, 375 }, + [6] = { 60.9, 53.4, 215, 375 }, + [7] = { 62.3, 53.3, 215, 120 }, + }, + ["lvl"] = "9-10", + }, + [2975] = { + ["coords"] = { + [1] = { 53.9, 67.2, 215, 375 }, + [2] = { 54.2, 67, 215, 375 }, + [3] = { 53.5, 66.9, 215, 375 }, + [4] = { 53.3, 66.8, 215, 375 }, + [5] = { 54.3, 66.5, 215, 375 }, + [6] = { 53.5, 66.3, 215, 375 }, + [7] = { 53.2, 66.2, 215, 375 }, + [8] = { 54, 66.1, 215, 375 }, + [9] = { 54.3, 65.8, 215, 375 }, + [10] = { 53.7, 65.8, 215, 375 }, + [11] = { 53.3, 65.7, 215, 375 }, + }, + ["lvl"] = "5-6", + }, + [2977] = { + ["coords"] = { + [1] = { 53.8, 48.4, 215, 375 }, + [2] = { 53, 47.9, 215, 375 }, + [3] = { 54, 47.8, 215, 375 }, + [4] = { 44.7, 46, 215, 375 }, + [5] = { 44.4, 45.4, 215, 375 }, + [6] = { 44.8, 44.9, 215, 375 }, + [7] = { 44.5, 44.9, 215, 375 }, + }, + ["lvl"] = "7-8", + }, + [2978] = { + ["coords"] = { + [1] = { 36.3, 52.8, 17, 375 }, + [2] = { 36.1, 52.8, 17, 375 }, + [3] = { 36.4, 52.7, 17, 375 }, + [4] = { 35.9, 52.6, 17, 375 }, + [5] = { 37.1, 52.6, 17, 375 }, + [6] = { 36.2, 52.6, 17, 375 }, + [7] = { 36.4, 52.6, 17, 375 }, + [8] = { 36.8, 52.6, 17, 375 }, + [9] = { 36.1, 52.5, 17, 375 }, + [10] = { 35.9, 52.5, 17, 375 }, + [11] = { 36.3, 52.4, 17, 375 }, + [12] = { 37.2, 52.3, 17, 375 }, + [13] = { 36.1, 52.3, 17, 375 }, + [14] = { 35.9, 52.2, 17, 375 }, + [15] = { 37.1, 52.2, 17, 375 }, + [16] = { 36.1, 52.1, 17, 375 }, + [17] = { 36.6, 52, 17, 375 }, + [18] = { 36.6, 51.8, 17, 375 }, + [19] = { 37, 51.4, 17, 375 }, + [20] = { 37.2, 51.3, 17, 375 }, + [21] = { 37.5, 51.2, 17, 375 }, + [22] = { 37.1, 51, 17, 375 }, + [23] = { 37.7, 51, 17, 375 }, + [24] = { 37.9, 50.6, 17, 375 }, + [25] = { 38.6, 50.5, 17, 375 }, + [26] = { 37.4, 50.4, 17, 375 }, + [27] = { 37.3, 50.2, 17, 375 }, + [28] = { 37.6, 50.2, 17, 375 }, + [29] = { 37.5, 50.1, 17, 375 }, + [30] = { 37.6, 50, 17, 375 }, + [31] = { 38.7, 49.9, 17, 375 }, + [32] = { 39, 49.9, 17, 375 }, + [33] = { 37.7, 49.9, 17, 375 }, + [34] = { 38.9, 49.9, 17, 375 }, + [35] = { 37.1, 49.8, 17, 375 }, + [36] = { 39, 49.8, 17, 375 }, + [37] = { 36.2, 49.8, 17, 375 }, + [38] = { 36.9, 49.8, 17, 375 }, + [39] = { 38.6, 49.7, 17, 375 }, + [40] = { 36.1, 49.7, 17, 375 }, + [41] = { 38.4, 49.6, 17, 375 }, + [42] = { 38.2, 49.5, 17, 375 }, + [43] = { 37.7, 49.5, 17, 375 }, + [44] = { 36.9, 49.5, 17, 375 }, + [45] = { 36.7, 49.5, 17, 375 }, + [46] = { 38.4, 49.5, 17, 375 }, + [47] = { 37.3, 49.4, 17, 375 }, + [48] = { 37, 49.4, 17, 375 }, + [49] = { 38.2, 49.4, 17, 375 }, + [50] = { 37.7, 49.3, 17, 375 }, + [51] = { 37.4, 49.3, 17, 375 }, + [52] = { 37.6, 49.3, 17, 375 }, + [53] = { 37, 49.2, 17, 375 }, + [54] = { 36.4, 49.2, 17, 375 }, + [55] = { 37.3, 49.1, 17, 375 }, + [56] = { 37.8, 49.1, 17, 375 }, + [57] = { 36.9, 49, 17, 375 }, + [58] = { 37.3, 48.9, 17, 375 }, + [59] = { 37.8, 48.8, 17, 375 }, + [60] = { 37.7, 48.8, 17, 375 }, + [61] = { 38.9, 48.8, 17, 375 }, + [62] = { 38.9, 48.7, 17, 375 }, + [63] = { 37.6, 48.6, 17, 375 }, + [64] = { 37.3, 48.6, 17, 375 }, + [65] = { 38.8, 48.5, 17, 375 }, + [66] = { 39, 48.5, 17, 375 }, + [67] = { 36.6, 48.5, 17, 375 }, + [68] = { 38.1, 48.4, 17, 375 }, + [69] = { 39, 48.4, 17, 375 }, + [70] = { 37.8, 48.2, 17, 375 }, + [71] = { 38.2, 48.2, 17, 375 }, + [72] = { 37.6, 48.2, 17, 375 }, + [73] = { 38.7, 48.1, 17, 375 }, + [74] = { 38.4, 48.1, 17, 375 }, + [75] = { 36.7, 48.1, 17, 375 }, + [76] = { 37.4, 48.1, 17, 375 }, + [77] = { 36.6, 48.1, 17, 375 }, + [78] = { 37.5, 48, 17, 375 }, + [79] = { 39.3, 48, 17, 375 }, + [80] = { 39.5, 47.8, 17, 375 }, + [81] = { 39.2, 47.8, 17, 375 }, + [82] = { 39.1, 47.7, 17, 375 }, + [83] = { 39.4, 47.7, 17, 375 }, + [84] = { 39, 47.6, 17, 375 }, + [85] = { 38.3, 47.6, 17, 375 }, + [86] = { 39.7, 47.6, 17, 375 }, + [87] = { 38.5, 47.6, 17, 375 }, + [88] = { 37.3, 47.6, 17, 375 }, + [89] = { 38.6, 47.6, 17, 375 }, + [90] = { 39.6, 47.6, 17, 375 }, + [91] = { 37.6, 47.5, 17, 375 }, + [92] = { 37.3, 47.5, 17, 375 }, + [93] = { 37.5, 47.5, 17, 375 }, + [94] = { 38.8, 47.3, 17, 375 }, + [95] = { 37.5, 47.2, 17, 375 }, + [96] = { 38.9, 47.2, 17, 375 }, + [97] = { 37.6, 47.1, 17, 375 }, + [98] = { 38.8, 47.1, 17, 375 }, + [99] = { 38.7, 47, 17, 375 }, + [100] = { 37.5, 47, 17, 375 }, + [101] = { 38.8, 46.9, 17, 375 }, + [102] = { 36.6, 46.9, 17, 375 }, + [103] = { 38.7, 46.9, 17, 375 }, + [104] = { 37.5, 46.8, 17, 375 }, + [105] = { 36.7, 46.8, 17, 375 }, + [106] = { 36.8, 46.6, 17, 375 }, + [107] = { 37.1, 46.6, 17, 375 }, + [108] = { 36.7, 46.5, 17, 375 }, + [109] = { 36.2, 46.3, 17, 375 }, + [110] = { 37.2, 46, 17, 375 }, + [111] = { 37, 46, 17, 375 }, + [112] = { 36.7, 45.8, 17, 375 }, + [113] = { 37.2, 45.8, 17, 375 }, + [114] = { 60.4, 49.2, 215, 375 }, + [115] = { 60.1, 49.1, 215, 375 }, + [116] = { 60.7, 49, 215, 375 }, + [117] = { 59.7, 48.7, 215, 375 }, + [118] = { 62, 48.7, 215, 375 }, + [119] = { 60.2, 48.7, 215, 375 }, + [120] = { 60.6, 48.7, 215, 375 }, + [121] = { 61.3, 48.7, 215, 375 }, + [122] = { 60, 48.5, 215, 375 }, + [123] = { 59.7, 48.4, 215, 375 }, + [124] = { 60.5, 48.4, 215, 375 }, + [125] = { 62.1, 48.2, 215, 375 }, + [126] = { 60, 48, 215, 375 }, + [127] = { 59.6, 47.9, 215, 375 }, + [128] = { 61.9, 47.8, 215, 375 }, + [129] = { 60, 47.8, 215, 375 }, + [130] = { 61.1, 47.6, 215, 375 }, + [131] = { 61, 47.2, 215, 375 }, + [132] = { 61.9, 46.4, 215, 375 }, + [133] = { 62.2, 46.1, 215, 375 }, + [134] = { 62.7, 45.9, 215, 375 }, + [135] = { 62.1, 45.6, 215, 375 }, + [136] = { 63.1, 45.5, 215, 375 }, + [137] = { 63.5, 44.9, 215, 375 }, + [138] = { 64.9, 44.6, 215, 375 }, + [139] = { 62.5, 44.4, 215, 375 }, + [140] = { 62.3, 44.1, 215, 375 }, + [141] = { 62.9, 44.1, 215, 375 }, + [142] = { 62.7, 43.8, 215, 375 }, + [143] = { 63, 43.5, 215, 375 }, + [144] = { 65.1, 43.4, 215, 375 }, + [145] = { 65.8, 43.4, 215, 375 }, + [146] = { 63.2, 43.4, 215, 375 }, + [147] = { 65.5, 43.4, 215, 375 }, + [148] = { 62, 43.2, 215, 375 }, + [149] = { 65.8, 43.2, 215, 375 }, + [150] = { 60.2, 43.2, 215, 375 }, + [151] = { 61.6, 43.1, 215, 375 }, + [152] = { 65, 43, 215, 375 }, + [153] = { 60, 42.9, 215, 375 }, + [154] = { 64.6, 42.8, 215, 375 }, + [155] = { 64.2, 42.7, 215, 375 }, + [156] = { 63.1, 42.7, 215, 375 }, + [157] = { 61.6, 42.7, 215, 375 }, + [158] = { 61.1, 42.6, 215, 375 }, + [159] = { 64.5, 42.6, 215, 375 }, + [160] = { 62.3, 42.4, 215, 375 }, + [161] = { 61.9, 42.3, 215, 375 }, + [162] = { 64.2, 42.3, 215, 375 }, + [163] = { 63.2, 42.3, 215, 375 }, + [164] = { 62.6, 42.3, 215, 375 }, + [165] = { 63, 42.2, 215, 375 }, + [166] = { 61.9, 42, 215, 375 }, + [167] = { 60.6, 42, 215, 375 }, + [168] = { 62.3, 41.9, 215, 375 }, + [169] = { 63.3, 41.7, 215, 375 }, + [170] = { 61.6, 41.6, 215, 375 }, + [171] = { 62.5, 41.5, 215, 375 }, + [172] = { 63.4, 41.3, 215, 375 }, + [173] = { 63.2, 41.2, 215, 375 }, + [174] = { 65.4, 41.2, 215, 375 }, + [175] = { 65.6, 41.1, 215, 375 }, + [176] = { 62.9, 40.9, 215, 375 }, + [177] = { 62.3, 40.8, 215, 375 }, + [178] = { 65.3, 40.7, 215, 375 }, + [179] = { 65.7, 40.7, 215, 375 }, + [180] = { 61, 40.6, 215, 375 }, + [181] = { 64, 40.4, 215, 375 }, + [182] = { 65.7, 40.3, 215, 375 }, + [183] = { 63.3, 40.1, 215, 375 }, + [184] = { 64.2, 40.1, 215, 375 }, + [185] = { 62.9, 40, 215, 375 }, + [186] = { 65.1, 39.9, 215, 375 }, + [187] = { 64.6, 39.9, 215, 375 }, + [188] = { 61.2, 39.9, 215, 375 }, + [189] = { 62.5, 39.8, 215, 375 }, + [190] = { 61.1, 39.8, 215, 375 }, + [191] = { 62.8, 39.7, 215, 375 }, + [192] = { 66.3, 39.6, 215, 375 }, + [193] = { 66.4, 39.6, 215, 375 }, + [194] = { 66.1, 39.2, 215, 375 }, + [195] = { 66, 39.1, 215, 375 }, + [196] = { 65.7, 38.9, 215, 375 }, + [197] = { 64.3, 38.9, 215, 375 }, + [198] = { 64.7, 38.9, 215, 375 }, + [199] = { 62.4, 38.8, 215, 375 }, + [200] = { 64.9, 38.8, 215, 375 }, + [201] = { 62.9, 38.7, 215, 375 }, + [202] = { 62.4, 38.7, 215, 375 }, + [203] = { 62.9, 38.6, 215, 375 }, + [204] = { 65.2, 38.3, 215, 375 }, + [205] = { 62.7, 38.1, 215, 375 }, + [206] = { 65.5, 38.1, 215, 375 }, + [207] = { 63, 38, 215, 375 }, + [208] = { 65.4, 37.9, 215, 375 }, + [209] = { 65.1, 37.7, 215, 375 }, + [210] = { 62.8, 37.6, 215, 375 }, + [211] = { 65.3, 37.5, 215, 375 }, + [212] = { 61, 37.5, 215, 375 }, + [213] = { 65.2, 37.4, 215, 375 }, + [214] = { 62.7, 37.3, 215, 375 }, + [215] = { 61.2, 37.3, 215, 375 }, + [216] = { 61.4, 36.9, 215, 375 }, + [217] = { 62, 36.8, 215, 375 }, + [218] = { 61.2, 36.7, 215, 375 }, + [219] = { 60.3, 36.3, 215, 375 }, + [220] = { 62.1, 35.7, 215, 375 }, + [221] = { 61.7, 35.6, 215, 375 }, + [222] = { 61.2, 35.4, 215, 375 }, + [223] = { 62.1, 35.2, 215, 375 }, + [224] = { 40.3, 16.9, 215, 375 }, + [225] = { 40.9, 16.8, 215, 375 }, + [226] = { 40.8, 16, 215, 375 }, + [227] = { 39.5, 16, 215, 375 }, + [228] = { 40.2, 15.9, 215, 375 }, + [229] = { 39.6, 15, 215, 375 }, + [230] = { 40.1, 14.8, 215, 375 }, + [231] = { 42.5, 14.4, 215, 375 }, + [232] = { 43, 14.3, 215, 375 }, + [233] = { 42.4, 14.2, 215, 375 }, + [234] = { 42.6, 13.6, 215, 375 }, + [235] = { 43, 13.6, 215, 375 }, + [236] = { 42.5, 13.5, 215, 375 }, + }, + ["lvl"] = "8-9", + }, + [2981] = { + ["coords"] = { + [1] = { 44.2, 76.1, 215, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "36", + }, + [2982] = { + ["coords"] = { + [1] = { 42.6, 92.2, 215, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "8", + }, + [2984] = { + ["coords"] = { + [1] = { 32.7, 36.1, 215, 30 }, + [2] = { 86, 65.4, 405, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "11", + }, + [2985] = { + ["coords"] = { + [1] = { 47.4, 62, 215, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "9", + }, + [2986] = { + ["coords"] = { + [1] = { 53.9, 41.5, 400, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "29", + }, + [2987] = { + ["coords"] = { + [1] = { 37.5, 28.9, 215, 30 }, + [2] = { 37.7, 59.6, 1638, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "12", + }, + [2988] = { + ["coords"] = { + [1] = { 51.9, 59.6, 215, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "10", + }, + [2989] = { + ["coords"] = { + [1] = { 31.9, 50.5, 215, 300 }, + [2] = { 31.1, 50.2, 215, 300 }, + [3] = { 32.1, 50, 215, 300 }, + [4] = { 30.9, 49.9, 215, 300 }, + [5] = { 33.8, 49.7, 215, 300 }, + [6] = { 32.1, 49.6, 215, 300 }, + [7] = { 30.9, 49.2, 215, 300 }, + [8] = { 32.3, 49.2, 215, 300 }, + [9] = { 32.7, 49.1, 215, 300 }, + [10] = { 33.7, 49, 215, 300 }, + [11] = { 31.7, 48.9, 215, 300 }, + [12] = { 30.9, 48.8, 215, 300 }, + [13] = { 31.5, 48.8, 215, 300 }, + [14] = { 30.9, 48.5, 215, 300 }, + [15] = { 33.8, 48, 215, 300 }, + [16] = { 31, 47.9, 215, 300 }, + [17] = { 34.3, 47.9, 215, 300 }, + [18] = { 31.4, 47.6, 215, 300 }, + [19] = { 31.6, 47.6, 215, 300 }, + [20] = { 32, 47.3, 215, 300 }, + [21] = { 34.4, 47.1, 215, 300 }, + [22] = { 84.1, 81.5, 405, 300 }, + [23] = { 84.1, 78.9, 405, 300 }, + [24] = { 85.2, 78.3, 405, 300 }, + [25] = { 87.9, 78, 405, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "7-8", + }, + [2990] = { + ["coords"] = { + [1] = { 31.4, 49.9, 215, 300 }, + [2] = { 31.8, 49.7, 215, 300 }, + [3] = { 32, 49.7, 215, 300 }, + [4] = { 31.5, 49.4, 215, 300 }, + [5] = { 31.3, 48.8, 215, 300 }, + [6] = { 31.5, 48.8, 215, 300 }, + [7] = { 31.3, 48.7, 215, 300 }, + [8] = { 31.6, 48.4, 215, 300 }, + [9] = { 32.7, 48.3, 215, 300 }, + [10] = { 31.3, 48.3, 215, 300 }, + [11] = { 31.9, 47.9, 215, 300 }, + [12] = { 33, 47.5, 215, 300 }, + [13] = { 33.2, 47.5, 215, 300 }, + [14] = { 84.4, 79.3, 405, 300 }, + [15] = { 86.6, 78.4, 405, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "8-9", + }, + [2993] = { + ["coords"] = { + [1] = { 47.5, 60.2, 215, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "10", + }, + [2995] = { + ["coords"] = { + [1] = { 39.4, 27, 215, 120 }, + [2] = { 47, 49.8, 1638, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [2996] = { + ["coords"] = { + [1] = { 39.5, 28.8, 215, 250 }, + [2] = { 47.6, 58.6, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + ["rnk"] = "1", + }, + [3035] = { + ["coords"] = { + [1] = { 37.5, 54.1, 17, 375 }, + [2] = { 57, 72.2, 215, 375 }, + [3] = { 57.7, 71.9, 215, 375 }, + [4] = { 59.7, 64.8, 215, 375 }, + [5] = { 57.3, 63.8, 215, 375 }, + [6] = { 57.1, 62.8, 215, 375 }, + [7] = { 59.4, 58.4, 215, 375 }, + [8] = { 59, 58.1, 215, 375 }, + [9] = { 59.6, 54.6, 215, 375 }, + [10] = { 59.4, 53.5, 215, 375 }, + [11] = { 58.7, 52.7, 215, 375 }, + [12] = { 43.9, 52.2, 215, 375 }, + [13] = { 35, 51.9, 215, 375 }, + [14] = { 62.7, 51.6, 215, 375 }, + [15] = { 56.2, 51.4, 215, 375 }, + [16] = { 42, 50, 215, 375 }, + [17] = { 57.6, 49.4, 215, 375 }, + [18] = { 57.3, 49.1, 215, 375 }, + [19] = { 44.2, 48.8, 215, 375 }, + [20] = { 36.5, 48.7, 215, 375 }, + [21] = { 36.9, 48.6, 215, 375 }, + [22] = { 56.5, 48.2, 215, 375 }, + [23] = { 45.2, 47.4, 215, 375 }, + [24] = { 54.4, 47, 215, 375 }, + [25] = { 39, 46.9, 215, 375 }, + [26] = { 39.6, 46, 215, 375 }, + [27] = { 54.9, 45.9, 215, 375 }, + [28] = { 38.4, 45.7, 215, 375 }, + [29] = { 43.3, 45.4, 215, 375 }, + [30] = { 49.3, 45.2, 215, 375 }, + [31] = { 48.6, 44.5, 215, 375 }, + [32] = { 36.9, 44, 215, 375 }, + [33] = { 50.4, 43.3, 215, 375 }, + [34] = { 42.8, 43.2, 215, 375 }, + [35] = { 48, 43.1, 215, 375 }, + [36] = { 55.5, 43.1, 215, 375 }, + [37] = { 36.6, 43, 215, 375 }, + [38] = { 34.4, 42.6, 215, 375 }, + [39] = { 46.3, 42.3, 215, 375 }, + [40] = { 35.7, 42.2, 215, 375 }, + [41] = { 50.6, 42, 215, 375 }, + [42] = { 56.1, 41.9, 215, 375 }, + [43] = { 54.1, 41.9, 215, 375 }, + [44] = { 51.7, 41.5, 215, 375 }, + [45] = { 48.6, 41.4, 215, 375 }, + [46] = { 39, 41.2, 215, 375 }, + [47] = { 49.8, 41.1, 215, 375 }, + [48] = { 53.4, 40.7, 215, 375 }, + [49] = { 50.6, 40.6, 215, 375 }, + [50] = { 54.6, 40.4, 215, 375 }, + [51] = { 47.3, 40.2, 215, 375 }, + [52] = { 53.1, 40.2, 215, 375 }, + [53] = { 38.1, 39.9, 215, 375 }, + [54] = { 55.9, 39.5, 215, 375 }, + [55] = { 50.5, 39.3, 215, 375 }, + [56] = { 37.4, 39.3, 215, 375 }, + [57] = { 38.8, 39.3, 215, 375 }, + [58] = { 55.1, 38.4, 215, 375 }, + [59] = { 54, 38.2, 215, 375 }, + [60] = { 40.8, 38.1, 215, 375 }, + [61] = { 45.6, 38.1, 215, 375 }, + [62] = { 56.2, 38.1, 215, 375 }, + [63] = { 52.8, 38, 215, 375 }, + [64] = { 49.4, 37.6, 215, 375 }, + [65] = { 42.1, 37.3, 215, 375 }, + [66] = { 52, 37.3, 215, 375 }, + [67] = { 52.8, 37.3, 215, 375 }, + [68] = { 55.8, 37.2, 215, 375 }, + [69] = { 49.8, 36.8, 215, 375 }, + [70] = { 47.3, 36.4, 215, 375 }, + [71] = { 46.7, 36.4, 215, 375 }, + [72] = { 45.4, 36.4, 215, 375 }, + [73] = { 51.1, 36.4, 215, 375 }, + [74] = { 56.8, 36.3, 215, 375 }, + [75] = { 53.9, 35.9, 215, 375 }, + [76] = { 55.7, 35.6, 215, 375 }, + [77] = { 52.1, 35.5, 215, 375 }, + [78] = { 54.5, 35.3, 215, 375 }, + [79] = { 48.2, 35.2, 215, 375 }, + [80] = { 47.3, 35, 215, 375 }, + [81] = { 53.2, 34.9, 215, 375 }, + [82] = { 50.4, 34.1, 215, 375 }, + [83] = { 35, 33.5, 215, 375 }, + [84] = { 52.1, 33.2, 215, 375 }, + [85] = { 34.5, 32.7, 215, 375 }, + [86] = { 48.1, 32.4, 215, 375 }, + [87] = { 44.7, 31.6, 215, 375 }, + [88] = { 34.8, 31.3, 215, 375 }, + [89] = { 46, 30.6, 215, 375 }, + [90] = { 34.1, 26.4, 215, 375 }, + [91] = { 33.7, 25.6, 215, 375 }, + [92] = { 88, 72.9, 405, 375 }, + [93] = { 88.6, 62.4, 405, 375 }, + [94] = { 88, 61.6, 405, 375 }, + [95] = { 88.4, 60, 405, 375 }, + [96] = { 87.6, 54.4, 405, 375 }, + [97] = { 87.1, 53.4, 405, 375 }, + }, + ["lvl"] = "7-8", + }, + [3044] = { + ["coords"] = { + [1] = { 34.9, 20, 215, 30 }, + [2] = { 88.5, 47, 405, 30 }, + [3] = { 25.3, 15.3, 1638, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [3048] = { + ["coords"] = { + [1] = { 35, 19.7, 215, 30 }, + [2] = { 88.6, 46.7, 405, 30 }, + [3] = { 25.7, 14.2, 1638, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [3050] = { + ["coords"] = { + [1] = { 38.8, 25.9, 215, 30 }, + [2] = { 44.4, 44.7, 1638, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "21", + }, + [3052] = { + ["coords"] = { + [1] = { 46.8, 60.2, 215, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "21", + }, + [3054] = { + ["coords"] = { + [1] = { 47.8, 57.5, 215, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "7", + }, + [3055] = { + ["coords"] = { + [1] = { 47, 57.1, 215, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "10", + }, + [3056] = { + ["coords"] = { + [1] = { 37.3, 14.2, 215, 9000 }, + }, + ["lvl"] = "12", + ["rnk"] = "4", + }, + [3061] = { + ["coords"] = { + [1] = { 44.3, 75.7, 215, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "11", + }, + [3063] = { + ["coords"] = { + [1] = { 49.5, 60.6, 215, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "14", + }, + [3064] = { + ["coords"] = { + [1] = { 48.5, 59.6, 215, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "12", + }, + [3065] = { + ["coords"] = { + [1] = { 47.8, 55.7, 215, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "11", + }, + [3066] = { + ["coords"] = { + [1] = { 48.4, 59.2, 215, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "13", + }, + [3070] = "_", + [3071] = "_", + [3082] = "_", + [3084] = { + ["coords"] = { + [1] = { 41.8, 32.8, 215, 250 }, + [2] = { 37.1, 29.7, 215, 250 }, + [3] = { 38, 29.6, 215, 250 }, + [4] = { 38.8, 29.4, 215, 250 }, + [5] = { 39, 29.3, 215, 250 }, + [6] = { 37.4, 29.2, 215, 250 }, + [7] = { 41.5, 28.2, 215, 250 }, + [8] = { 41.7, 28.1, 215, 250 }, + [9] = { 37.2, 27.3, 215, 250 }, + [10] = { 37.3, 27.1, 215, 250 }, + [11] = { 41.8, 26.6, 215, 250 }, + [12] = { 41.6, 26.4, 215, 250 }, + [13] = { 38.6, 25, 215, 250 }, + [14] = { 38.8, 24.9, 215, 250 }, + [15] = { 38.6, 24.7, 215, 250 }, + [16] = { 40.1, 24.5, 215, 250 }, + [17] = { 40.1, 24.3, 215, 250 }, + [18] = { 40.2, 23.2, 215, 250 }, + [19] = { 36, 23.2, 215, 250 }, + [20] = { 44.4, 23, 215, 250 }, + [21] = { 36.1, 22.8, 215, 250 }, + [22] = { 34.2, 22.4, 215, 180 }, + [23] = { 33.8, 22.2, 215, 180 }, + [24] = { 33.8, 21.9, 215, 180 }, + [25] = { 35.5, 20.7, 215, 250 }, + [26] = { 87.7, 49.8, 405, 180 }, + [27] = { 87.2, 49.6, 405, 180 }, + [28] = { 87.2, 49.2, 405, 180 }, + [29] = { 89.2, 47.8, 405, 250 }, + [30] = { 59.1, 78.6, 1638, 250 }, + [31] = { 35.7, 63.1, 1638, 250 }, + [32] = { 40.2, 62.7, 1638, 250 }, + [33] = { 44.4, 61.7, 1638, 250 }, + [34] = { 45.1, 61.3, 1638, 250 }, + [35] = { 37.4, 61, 1638, 250 }, + [36] = { 57.7, 55.9, 1638, 250 }, + [37] = { 58.6, 55.3, 1638, 250 }, + [38] = { 36.3, 51.5, 1638, 250 }, + [39] = { 37, 50.6, 1638, 250 }, + [40] = { 58.8, 47.9, 1638, 250 }, + [41] = { 58, 47.1, 1638, 250 }, + [42] = { 43.1, 40, 1638, 250 }, + [43] = { 44.3, 39.6, 1638, 250 }, + [44] = { 43.3, 38.6, 1638, 250 }, + [45] = { 50.6, 37.8, 1638, 250 }, + [46] = { 50.4, 36.5, 1638, 250 }, + [47] = { 51.2, 31.5, 1638, 250 }, + [48] = { 30.5, 31, 1638, 250 }, + [49] = { 72, 30.2, 1638, 250 }, + [50] = { 31, 29.5, 1638, 250 }, + [51] = { 21.8, 27.6, 1638, 180 }, + [52] = { 19.6, 26.4, 1638, 180 }, + [53] = { 19.5, 24.7, 1638, 180 }, + [54] = { 28, 18.9, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [3094] = { + ["coords"] = { + [1] = { 20.5, 58.9, 10, 300 }, + [2] = { 18.1, 58, 10, 300 }, + [3] = { 20.2, 57.9, 10, 300 }, + [4] = { 19, 57.8, 10, 300 }, + [5] = { 21.4, 57.2, 10, 300 }, + [6] = { 19.1, 56.9, 10, 300 }, + [7] = { 20.3, 56.8, 10, 300 }, + [8] = { 17.4, 56.4, 10, 300 }, + [9] = { 19.8, 56.3, 10, 300 }, + [10] = { 19.6, 55.8, 10, 300 }, + [11] = { 19, 55.7, 10, 300 }, + [12] = { 19.6, 55.7, 10, 300 }, + [13] = { 19.1, 55.5, 10, 300 }, + [14] = { 21.1, 55.5, 10, 300 }, + [15] = { 19.5, 55.1, 10, 300 }, + [16] = { 19.2, 55, 10, 300 }, + [17] = { 16.9, 55, 10, 300 }, + [18] = { 18, 54.9, 10, 300 }, + [19] = { 17.5, 54.8, 10, 300 }, + [20] = { 18.9, 54.7, 10, 300 }, + [21] = { 18, 54.7, 10, 300 }, + [22] = { 19.7, 54.4, 10, 300 }, + [23] = { 18.1, 54.3, 10, 300 }, + [24] = { 19, 54.3, 10, 300 }, + [25] = { 19.2, 53.8, 10, 300 }, + [26] = { 19.2, 53.5, 10, 300 }, + [27] = { 19.2, 53.4, 10, 300 }, + }, + ["lvl"] = "49-51", + }, + [3097] = { + ["coords"] = { + [1] = { 28, 46.6, 44, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [3098] = { + ["coords"] = { + [1] = { 42.7, 72.7, 14, 180 }, + [2] = { 43.9, 72.6, 14, 180 }, + [3] = { 42, 72.5, 14, 180 }, + [4] = { 43.4, 72.4, 14, 180 }, + [5] = { 42.1, 71.9, 14, 180 }, + [6] = { 41.4, 71.6, 14, 180 }, + [7] = { 44.6, 71.6, 14, 180 }, + [8] = { 42.7, 71.6, 14, 180 }, + [9] = { 44, 71.6, 14, 180 }, + [10] = { 43.9, 70.6, 14, 180 }, + [11] = { 44.5, 70.6, 14, 180 }, + [12] = { 45.2, 70.5, 14, 180 }, + [13] = { 45.2, 69.7, 14, 180 }, + [14] = { 45.8, 68.9, 14, 180 }, + [15] = { 46.4, 68.8, 14, 180 }, + [16] = { 47, 68.7, 14, 180 }, + [17] = { 45.8, 67.1, 14, 180 }, + [18] = { 45.2, 66.9, 14, 180 }, + [19] = { 46.5, 66.9, 14, 180 }, + [20] = { 44.5, 66, 14, 180 }, + [21] = { 44, 66, 14, 180 }, + [22] = { 46.4, 65.9, 14, 180 }, + [23] = { 45.1, 65.9, 14, 180 }, + [24] = { 45.7, 65.8, 14, 180 }, + [25] = { 45.2, 65.2, 14, 180 }, + [26] = { 42.6, 65.1, 14, 180 }, + [27] = { 44.5, 65.1, 14, 180 }, + [28] = { 41.3, 65.1, 14, 180 }, + [29] = { 47.1, 65.1, 14, 180 }, + [30] = { 45.7, 65.1, 14, 180 }, + [31] = { 43.8, 64.9, 14, 180 }, + [32] = { 42, 64.9, 14, 180 }, + [33] = { 43.4, 64.8, 14, 180 }, + [34] = { 43.8, 64.2, 14, 180 }, + [35] = { 42.7, 64.2, 14, 180 }, + [36] = { 42, 64.2, 14, 180 }, + [37] = { 46.5, 64.1, 14, 180 }, + [38] = { 44.5, 64.1, 14, 180 }, + [39] = { 43.1, 64, 14, 180 }, + [40] = { 45.3, 64, 14, 180 }, + [41] = { 43.2, 63.2, 14, 180 }, + [42] = { 44.6, 63.2, 14, 180 }, + [43] = { 42.1, 63.1, 14, 180 }, + [44] = { 45, 63.1, 14, 180 }, + [45] = { 43.8, 63.1, 14, 180 }, + [46] = { 45.8, 63, 14, 180 }, + [47] = { 46.3, 63, 14, 180 }, + [48] = { 43.9, 62.4, 14, 180 }, + [49] = { 45.6, 62.4, 14, 180 }, + [50] = { 45.2, 62.2, 14, 180 }, + [51] = { 42, 62.1, 14, 180 }, + [52] = { 43.4, 62.1, 14, 180 }, + [53] = { 44.5, 61.9, 14, 180 }, + [54] = { 44.4, 61.5, 14, 180 }, + [55] = { 45.8, 61.3, 14, 180 }, + [56] = { 42, 61.2, 14, 180 }, + [57] = { 42.6, 61.2, 14, 180 }, + [58] = { 44, 61.1, 14, 180 }, + [59] = { 43.5, 61.1, 14, 180 }, + [60] = { 45.2, 60.4, 14, 180 }, + [61] = { 44.5, 60.4, 14, 180 }, + [62] = { 43.1, 60.3, 14, 180 }, + [63] = { 43.9, 60.3, 14, 180 }, + [64] = { 42.7, 60.1, 14, 180 }, + [65] = { 44.6, 59.3, 14, 180 }, + [66] = { 67.1, 34.9, 17, 180 }, + [67] = { 67.2, 34.6, 17, 180 }, + [68] = { 66.8, 34.5, 17, 180 }, + }, + ["lvl"] = "1-2", + }, + [3099] = { + ["coords"] = { + [1] = { 51.8, 78.1, 14, 300 }, + [2] = { 51.6, 72.5, 14, 300 }, + [3] = { 50.5, 71.8, 14, 300 }, + [4] = { 54.1, 70.8, 14, 300 }, + [5] = { 53.5, 68.1, 14, 300 }, + [6] = { 54.6, 67.4, 14, 300 }, + [7] = { 51.9, 66.9, 14, 300 }, + [8] = { 51.7, 65.9, 14, 300 }, + [9] = { 51.6, 65.4, 14, 300 }, + [10] = { 52.7, 65, 14, 300 }, + [11] = { 51.5, 63.7, 14, 300 }, + [12] = { 52.2, 63, 14, 300 }, + [13] = { 53.9, 62.6, 14, 300 }, + [14] = { 51.5, 62.1, 14, 300 }, + [15] = { 52, 61.7, 14, 300 }, + [16] = { 52.2, 60.7, 14, 300 }, + [17] = { 53.8, 59.1, 14, 300 }, + [18] = { 51.7, 59, 14, 300 }, + [19] = { 55.6, 58.7, 14, 300 }, + [20] = { 53.2, 58.6, 14, 300 }, + [21] = { 54.5, 57.4, 14, 300 }, + [22] = { 52.6, 57.1, 14, 300 }, + [23] = { 51.2, 56.7, 14, 300 }, + [24] = { 52.4, 56.6, 14, 300 }, + [25] = { 54.6, 56.3, 14, 300 }, + [26] = { 55.7, 56.2, 14, 300 }, + [27] = { 53.9, 56.2, 14, 300 }, + [28] = { 50.7, 55.9, 14, 300 }, + [29] = { 50.8, 53.9, 14, 300 }, + [30] = { 51.7, 53.6, 14, 300 }, + [31] = { 54.2, 53.1, 14, 300 }, + [32] = { 51, 51.8, 14, 300 }, + [33] = { 40.7, 50.8, 14, 300 }, + [34] = { 41.7, 50.3, 14, 300 }, + [35] = { 42.9, 50.1, 14, 300 }, + [36] = { 52, 50, 14, 300 }, + [37] = { 53.8, 49.8, 14, 300 }, + [38] = { 51.2, 49.4, 14, 300 }, + [39] = { 40.2, 49, 14, 300 }, + [40] = { 53.3, 48.8, 14, 300 }, + [41] = { 45.4, 48.6, 14, 300 }, + [42] = { 46, 48.3, 14, 300 }, + [43] = { 52.2, 47.9, 14, 300 }, + [44] = { 40, 47.8, 14, 300 }, + [45] = { 42.8, 47.7, 14, 300 }, + [46] = { 40, 47.4, 14, 300 }, + [47] = { 42, 47.1, 14, 300 }, + [48] = { 38.9, 47.1, 14, 300 }, + [49] = { 57.9, 46.8, 14, 300 }, + [50] = { 43.7, 46.4, 14, 300 }, + [51] = { 46.9, 46.3, 14, 300 }, + [52] = { 53.4, 46.2, 14, 300 }, + [53] = { 51.7, 46, 14, 300 }, + [54] = { 42.7, 46, 14, 300 }, + [55] = { 48.3, 45.9, 14, 300 }, + [56] = { 38.6, 45, 14, 300 }, + [57] = { 41.1, 44.9, 14, 300 }, + [58] = { 40.8, 44.9, 14, 300 }, + [59] = { 46.7, 44.7, 14, 300 }, + [60] = { 45.7, 44.6, 14, 300 }, + [61] = { 47.6, 44.5, 14, 300 }, + [62] = { 46.2, 44.4, 14, 300 }, + [63] = { 57.4, 44.4, 14, 300 }, + [64] = { 42.1, 44.3, 14, 300 }, + [65] = { 55.4, 44, 14, 300 }, + [66] = { 43.1, 44, 14, 300 }, + [67] = { 45, 43.5, 14, 300 }, + [68] = { 47.7, 43.4, 14, 300 }, + [69] = { 43.9, 43.3, 14, 300 }, + [70] = { 42.9, 43.3, 14, 300 }, + [71] = { 47, 42.8, 14, 300 }, + [72] = { 47, 42.1, 14, 300 }, + [73] = { 46.8, 41.7, 14, 300 }, + [74] = { 58.4, 41.6, 14, 300 }, + [75] = { 47.1, 41.4, 14, 300 }, + [76] = { 48, 41.3, 14, 300 }, + [77] = { 56.2, 41.3, 14, 300 }, + [78] = { 45.2, 41.3, 14, 300 }, + [79] = { 40.7, 40.7, 14, 300 }, + [80] = { 48.8, 40.4, 14, 300 }, + [81] = { 55.2, 40.3, 14, 300 }, + [82] = { 48.2, 40.2, 14, 300 }, + [83] = { 56.2, 39.6, 14, 300 }, + [84] = { 48.7, 39.6, 14, 300 }, + [85] = { 55.4, 39.6, 14, 300 }, + [86] = { 49.1, 39.3, 14, 300 }, + [87] = { 50.2, 39.3, 14, 300 }, + [88] = { 46.2, 39.1, 14, 300 }, + [89] = { 56, 39, 14, 300 }, + [90] = { 54.5, 38.7, 14, 300 }, + [91] = { 47.2, 38.3, 14, 300 }, + [92] = { 45.7, 38.3, 14, 300 }, + [93] = { 48.8, 38.3, 14, 300 }, + [94] = { 50.6, 38.2, 14, 300 }, + [95] = { 46.8, 38, 14, 300 }, + [96] = { 54.4, 38, 14, 300 }, + [97] = { 39, 37.8, 14, 300 }, + [98] = { 49.3, 37.7, 14, 300 }, + [99] = { 51.4, 37.6, 14, 300 }, + [100] = { 46, 37.5, 14, 300 }, + [101] = { 48, 37.4, 14, 300 }, + [102] = { 48.8, 37.2, 14, 300 }, + [103] = { 44.6, 37.1, 14, 300 }, + [104] = { 53.7, 36.9, 14, 300 }, + [105] = { 49.3, 36.9, 14, 300 }, + [106] = { 41.1, 36.8, 14, 300 }, + [107] = { 53.2, 36.8, 14, 300 }, + [108] = { 56.5, 36.7, 14, 300 }, + [109] = { 48.3, 36.7, 14, 300 }, + [110] = { 50.7, 36.7, 14, 300 }, + [111] = { 48.7, 36.6, 14, 300 }, + [112] = { 39.4, 36.5, 14, 300 }, + [113] = { 47.9, 36.5, 14, 300 }, + [114] = { 48.6, 36.2, 14, 300 }, + [115] = { 53.3, 36, 14, 300 }, + [116] = { 38.1, 35.9, 14, 300 }, + [117] = { 54.4, 35.9, 14, 300 }, + [118] = { 55.8, 35.4, 14, 300 }, + [119] = { 48.9, 35, 14, 300 }, + [120] = { 49.8, 35, 14, 300 }, + [121] = { 53.5, 35, 14, 300 }, + [122] = { 46, 34.9, 14, 300 }, + [123] = { 50.9, 34.7, 14, 300 }, + [124] = { 54.6, 34.7, 14, 300 }, + [125] = { 44.4, 34.6, 14, 300 }, + [126] = { 51.5, 34.1, 14, 300 }, + [127] = { 43.8, 34, 14, 300 }, + [128] = { 51.1, 33.1, 14, 300 }, + [129] = { 42.6, 32.9, 14, 300 }, + [130] = { 53.4, 32.8, 14, 300 }, + [131] = { 55.4, 32.8, 14, 300 }, + [132] = { 40.4, 32.8, 14, 300 }, + [133] = { 53.9, 31.6, 14, 300 }, + [134] = { 42, 31.5, 14, 300 }, + [135] = { 53.1, 31.3, 14, 300 }, + [136] = { 54.2, 30.6, 14, 300 }, + }, + ["lvl"] = "6-7", + }, + [3100] = { + ["coords"] = { + [1] = { 37.8, 55.8, 14, 300 }, + [2] = { 35.4, 55.7, 14, 300 }, + [3] = { 37.5, 55.6, 14, 300 }, + [4] = { 36.4, 55.5, 14, 300 }, + [5] = { 37.5, 54.6, 14, 300 }, + [6] = { 37.1, 52.4, 14, 300 }, + [7] = { 39.4, 51.7, 14, 300 }, + [8] = { 39.6, 49.5, 14, 300 }, + [9] = { 35.1, 49.3, 14, 300 }, + [10] = { 36.3, 49.2, 14, 300 }, + [11] = { 38.5, 48.9, 14, 300 }, + [12] = { 38, 48.5, 14, 300 }, + [13] = { 36.9, 48.2, 14, 300 }, + [14] = { 35.7, 47, 14, 300 }, + [15] = { 35, 46.5, 14, 300 }, + [16] = { 36.9, 46.1, 14, 300 }, + [17] = { 35.6, 45.6, 14, 300 }, + [18] = { 37.6, 45.2, 14, 300 }, + [19] = { 36.9, 44.9, 14, 300 }, + [20] = { 38.6, 44.3, 14, 300 }, + [21] = { 39.6, 44.3, 14, 300 }, + [22] = { 35, 43.3, 14, 300 }, + [23] = { 40.7, 42.5, 14, 300 }, + [24] = { 38.3, 42.1, 14, 300 }, + [25] = { 37.1, 41.3, 14, 300 }, + [26] = { 35.6, 39.4, 14, 300 }, + [27] = { 36.3, 38.9, 14, 300 }, + [28] = { 36.5, 38.5, 14, 300 }, + [29] = { 36.3, 35.7, 14, 300 }, + [30] = { 35.9, 34.9, 14, 300 }, + [31] = { 40.1, 33.8, 14, 300 }, + [32] = { 38.6, 33.7, 14, 300 }, + [33] = { 36.2, 31.9, 14, 300 }, + [34] = { 37, 31.7, 14, 300 }, + [35] = { 35.7, 31, 14, 300 }, + [36] = { 37.7, 30, 14, 300 }, + [37] = { 57, 29.8, 14, 300 }, + [38] = { 38.3, 28.9, 14, 300 }, + [39] = { 54.6, 28.8, 14, 300 }, + [40] = { 42.8, 28.3, 14, 300 }, + [41] = { 55.2, 28.1, 14, 300 }, + [42] = { 37, 28.1, 14, 300 }, + [43] = { 43.1, 27.9, 14, 300 }, + [44] = { 45.4, 27.3, 14, 300 }, + [45] = { 44.6, 27, 14, 300 }, + [46] = { 37.2, 26.4, 14, 300 }, + [47] = { 43.9, 26.3, 14, 300 }, + [48] = { 36, 26, 14, 300 }, + [49] = { 44.6, 25.2, 14, 300 }, + [50] = { 45.4, 25.1, 14, 300 }, + [51] = { 36.2, 24.3, 14, 300 }, + [52] = { 44.5, 23.3, 14, 300 }, + [53] = { 42.1, 22.8, 14, 300 }, + [54] = { 57.7, 22.5, 14, 300 }, + [55] = { 43.9, 22.4, 14, 300 }, + [56] = { 42.6, 22.3, 14, 300 }, + [57] = { 44.8, 22.3, 14, 300 }, + [58] = { 46, 22.2, 14, 300 }, + [59] = { 40.2, 21.8, 14, 300 }, + [60] = { 56, 21.7, 14, 300 }, + [61] = { 40.5, 21.6, 14, 300 }, + [62] = { 43.9, 21.5, 14, 300 }, + [63] = { 42.7, 21.5, 14, 300 }, + [64] = { 43.2, 21.4, 14, 300 }, + [65] = { 38.7, 21.2, 14, 300 }, + [66] = { 44.6, 21.2, 14, 300 }, + [67] = { 48.6, 20.7, 14, 300 }, + [68] = { 48, 20.6, 14, 300 }, + [69] = { 55.3, 20.4, 14, 300 }, + [70] = { 57.7, 20.3, 14, 300 }, + [71] = { 47.1, 20.2, 14, 300 }, + [72] = { 39.3, 19.6, 14, 300 }, + [73] = { 44.5, 19.5, 14, 300 }, + [74] = { 46, 19.4, 14, 300 }, + [75] = { 54.8, 19.4, 14, 300 }, + [76] = { 57.1, 19.3, 14, 300 }, + [77] = { 37.2, 19, 14, 300 }, + [78] = { 54, 18.9, 14, 300 }, + [79] = { 39.5, 18.7, 14, 300 }, + [80] = { 55.1, 18.6, 14, 300 }, + [81] = { 45.1, 18.6, 14, 300 }, + [82] = { 57.5, 18.5, 14, 300 }, + [83] = { 42.4, 18.5, 14, 300 }, + [84] = { 47.8, 18.4, 14, 300 }, + [85] = { 43.3, 18.1, 14, 300 }, + [86] = { 46.3, 17.9, 14, 300 }, + [87] = { 57, 17.8, 14, 300 }, + [88] = { 44.7, 17.8, 14, 300 }, + [89] = { 44.9, 17.7, 14, 300 }, + [90] = { 39.4, 17.6, 14, 300 }, + [91] = { 42.7, 17.6, 14, 300 }, + [92] = { 52.9, 17.5, 14, 300 }, + [93] = { 54.3, 17.4, 14, 300 }, + [94] = { 44.2, 17.3, 14, 300 }, + [95] = { 40.1, 17.1, 14, 300 }, + [96] = { 56.1, 17, 14, 300 }, + [97] = { 43.2, 16.9, 14, 300 }, + [98] = { 53.6, 16.8, 14, 300 }, + [99] = { 45.2, 16.7, 14, 300 }, + [100] = { 41.9, 16.7, 14, 300 }, + [101] = { 51.6, 16.7, 14, 300 }, + [102] = { 45.5, 16.6, 14, 300 }, + [103] = { 44.9, 16.2, 14, 300 }, + [104] = { 55.4, 16.1, 14, 300 }, + [105] = { 52.5, 15.9, 14, 300 }, + [106] = { 48.3, 15.8, 14, 300 }, + [107] = { 54.6, 15.8, 14, 300 }, + [108] = { 45.7, 15.7, 14, 300 }, + [109] = { 50.9, 15.6, 14, 300 }, + [110] = { 43.8, 15.5, 14, 300 }, + [111] = { 45.9, 15.5, 14, 300 }, + [112] = { 44, 15.3, 14, 300 }, + [113] = { 50.2, 14.8, 14, 300 }, + [114] = { 52.2, 14.8, 14, 300 }, + [115] = { 52.9, 14.2, 14, 300 }, + [116] = { 55.2, 14, 14, 300 }, + [117] = { 51.6, 13.2, 14, 300 }, + [118] = { 56.5, 13.2, 14, 300 }, + [119] = { 53.4, 13, 14, 300 }, + [120] = { 55.6, 12.9, 14, 300 }, + [121] = { 50.2, 12.9, 14, 300 }, + [122] = { 47.7, 12.7, 14, 300 }, + [123] = { 51.8, 11.8, 14, 300 }, + [124] = { 54.5, 11, 14, 300 }, + [125] = { 55.1, 11, 14, 300 }, + [126] = { 55.8, 10, 14, 300 }, + [127] = { 53.9, 9.3, 14, 300 }, + [128] = { 65, 26.2, 17, 300 }, + [129] = { 63.7, 26.1, 17, 300 }, + [130] = { 64.8, 26.1, 17, 300 }, + [131] = { 64.3, 26, 17, 300 }, + [132] = { 64.8, 25.6, 17, 300 }, + [133] = { 63.6, 22.8, 17, 300 }, + [134] = { 64.2, 22.8, 17, 300 }, + [135] = { 63.9, 21.6, 17, 300 }, + [136] = { 63.5, 21.3, 17, 300 }, + [137] = { 63.8, 20.9, 17, 300 }, + [138] = { 63.5, 19.7, 17, 300 }, + [139] = { 63.8, 17.6, 17, 300 }, + [140] = { 64.2, 17.4, 17, 300 }, + [141] = { 64.3, 17.2, 17, 300 }, + [142] = { 64.2, 15.7, 17, 300 }, + [143] = { 64, 15.3, 17, 300 }, + [144] = { 64.1, 13.8, 17, 300 }, + [145] = { 63.9, 13.3, 17, 300 }, + [146] = { 64.9, 12.7, 17, 300 }, + [147] = { 65.2, 12.2, 17, 300 }, + [148] = { 64.6, 11.7, 17, 300 }, + [149] = { 64.7, 10.9, 17, 300 }, + [150] = { 64.1, 10.7, 17, 300 }, + [151] = { 64.1, 9.8, 17, 300 }, + [152] = { 64.7, 7, 17, 300 }, + [153] = { 57.3, 97.6, 1637, 300 }, + }, + ["lvl"] = "8-9", + }, + [3101] = { + ["coords"] = { + [1] = { 44.5, 58.5, 14, 300 }, + [2] = { 45.8, 58.5, 14, 300 }, + [3] = { 43.8, 58.3, 14, 200 }, + [4] = { 45, 58.2, 14, 300 }, + [5] = { 45.8, 57.3, 14, 300 }, + [6] = { 45.2, 57.3, 14, 300 }, + [7] = { 47, 57.3, 14, 300 }, + [8] = { 46.5, 57.3, 14, 300 }, + [9] = { 44.4, 57.2, 14, 300 }, + [10] = { 44.1, 57, 14, 300 }, + [11] = { 44.8, 56.9, 14, 300 }, + [12] = { 45.7, 56.8, 14, 300 }, + [13] = { 46.2, 56.8, 14, 300 }, + [14] = { 45.4, 56.3, 14, 300 }, + [15] = { 46.2, 56.1, 14, 300 }, + [16] = { 44.6, 56, 14, 300 }, + [17] = { 43.8, 55.6, 14, 300 }, + [18] = { 43.2, 55.5, 14, 300 }, + [19] = { 43.9, 55.3, 14, 300 }, + [20] = { 44.2, 55.3, 14, 300 }, + [21] = { 45.1, 55.1, 14, 300 }, + [22] = { 44.9, 54.9, 14, 300 }, + [23] = { 43.9, 54.9, 14, 300 }, + [24] = { 42.6, 54.6, 14, 300 }, + [25] = { 43.2, 54.3, 14, 300 }, + [26] = { 43.9, 54.3, 14, 300 }, + [27] = { 43.9, 53.8, 14, 300 }, + [28] = { 44.7, 53.8, 14, 300 }, + [29] = { 43, 53.6, 14, 300 }, + [30] = { 43.9, 53.6, 14, 300 }, + [31] = { 43.6, 53.5, 14, 300 }, + [32] = { 42.8, 52.7, 14, 120 }, + [33] = { 44.4, 52.7, 14, 300 }, + [34] = { 43.7, 52.5, 14, 300 }, + [35] = { 42.8, 52.5, 14, 120 }, + [36] = { 43.4, 52, 14, 300 }, + }, + ["lvl"] = "3-4", + }, + [3102] = { + ["coords"] = { + [1] = { 45.3, 55.7, 14, 300 }, + [2] = { 45.5, 55.3, 14, 300 }, + [3] = { 43, 55.3, 14, 300 }, + [4] = { 44.5, 54.9, 14, 300 }, + [5] = { 43.8, 54.9, 14, 300 }, + [6] = { 44.8, 54.5, 14, 300 }, + [7] = { 44.3, 54.2, 14, 300 }, + [8] = { 42.4, 54.2, 14, 300 }, + [9] = { 43.3, 53.8, 14, 300 }, + [10] = { 42.5, 53.5, 14, 300 }, + [11] = { 44.9, 53.1, 14, 300 }, + [12] = { 44.1, 52.9, 14, 300 }, + [13] = { 44.8, 52.5, 14, 300 }, + [14] = { 43.5, 52.1, 14, 300 }, + [15] = { 43, 52.1, 14, 300 }, + }, + ["lvl"] = "3-4", + }, + [3103] = { + ["coords"] = { + [1] = { 60.9, 96.3, 14, 300 }, + [2] = { 62.2, 92.5, 14, 300 }, + [3] = { 59.1, 91.5, 14, 300 }, + [4] = { 69.9, 88.7, 14, 300 }, + [5] = { 59.1, 87.6, 14, 300 }, + [6] = { 59.5, 87, 14, 300 }, + [7] = { 70.3, 85.9, 14, 300 }, + [8] = { 52.7, 84.9, 14, 300 }, + [9] = { 51.4, 84.9, 14, 300 }, + [10] = { 70.5, 82.3, 14, 300 }, + [11] = { 59, 82.1, 14, 300 }, + [12] = { 61.8, 80.4, 14, 300 }, + [13] = { 57.3, 80, 14, 300 }, + [14] = { 61, 77.3, 14, 300 }, + [15] = { 69.7, 77.3, 14, 300 }, + [16] = { 67.3, 77.2, 14, 300 }, + [17] = { 68.7, 77.2, 14, 300 }, + [18] = { 64.6, 77.2, 14, 300 }, + [19] = { 70.8, 75.2, 14, 300 }, + [20] = { 71.7, 72.6, 14, 300 }, + [21] = { 61.1, 72.5, 14, 300 }, + [22] = { 59.7, 72.4, 14, 300 }, + [23] = { 62.1, 68.9, 14, 300 }, + [24] = { 62.2, 67, 14, 300 }, + [25] = { 62.8, 61.1, 14, 300 }, + [26] = { 63.5, 60.1, 14, 300 }, + [27] = { 63.4, 58.5, 14, 300 }, + [28] = { 63, 56.4, 14, 300 }, + [29] = { 64, 55.4, 14, 300 }, + [30] = { 64.7, 54.8, 14, 300 }, + [31] = { 65.5, 54, 14, 300 }, + [32] = { 65.2, 51.5, 14, 300 }, + [33] = { 61.6, 50.9, 14, 300 }, + [34] = { 63.5, 50.8, 14, 300 }, + [35] = { 65.2, 49.8, 14, 300 }, + [36] = { 64.7, 48.8, 14, 300 }, + [37] = { 62.7, 47, 14, 300 }, + [38] = { 62.8, 45, 14, 300 }, + [39] = { 62.8, 43, 14, 300 }, + [40] = { 61.6, 43, 14, 300 }, + [41] = { 62.1, 40.5, 14, 300 }, + [42] = { 77, 47.4, 17, 300 }, + [43] = { 77.7, 45.4, 17, 300 }, + [44] = { 76.1, 44.8, 17, 300 }, + [45] = { 81.7, 43.4, 17, 300 }, + [46] = { 76.1, 42.8, 17, 300 }, + [47] = { 76.3, 42.5, 17, 300 }, + [48] = { 82, 41.9, 17, 300 }, + [49] = { 72.7, 41.4, 17, 300 }, + [50] = { 72.1, 41.4, 17, 300 }, + }, + ["lvl"] = "6-7", + }, + [3104] = { + ["coords"] = { + [1] = { 58.2, 85.2, 14, 300 }, + [2] = { 53.9, 84.8, 14, 300 }, + [3] = { 61, 84.6, 14, 300 }, + [4] = { 55.1, 82.8, 14, 300 }, + [5] = { 66.6, 78.1, 14, 300 }, + [6] = { 60.2, 75.7, 14, 300 }, + [7] = { 63.4, 73.8, 14, 300 }, + [8] = { 65.9, 73.6, 14, 300 }, + [9] = { 60.3, 73.5, 14, 300 }, + [10] = { 65.7, 71.7, 14, 300 }, + [11] = { 60.3, 71.6, 14, 300 }, + [12] = { 61.4, 69.7, 14, 300 }, + [13] = { 64, 57.6, 14, 300 }, + [14] = { 63.5, 55.8, 14, 300 }, + [15] = { 61.5, 54.4, 14, 300 }, + [16] = { 64.8, 50.9, 14, 300 }, + [17] = { 62.1, 49.7, 14, 300 }, + [18] = { 61.5, 48.8, 14, 300 }, + [19] = { 61.4, 44.8, 14, 300 }, + [20] = { 61.1, 42.6, 14, 300 }, + [21] = { 60.9, 40.4, 14, 300 }, + [22] = { 75.6, 41.5, 17, 300 }, + [23] = { 73.4, 41.4, 17, 300 }, + [24] = { 77.1, 41.3, 17, 300 }, + }, + ["lvl"] = "6-7", + }, + [3105] = { + ["coords"] = { + [1] = { 60.2, 30, 14, 300 }, + [2] = { 59.8, 28.9, 14, 300 }, + [3] = { 60.3, 20.7, 14, 300 }, + [4] = { 60.4, 18.5, 14, 300 }, + [5] = { 60.3, 17.2, 14, 300 }, + [6] = { 58.8, 15.1, 14, 300 }, + [7] = { 58.5, 10.2, 14, 300 }, + [8] = { 57.5, 9.4, 14, 300 }, + }, + ["lvl"] = "8-9", + }, + [3106] = { + ["coords"] = { + [1] = { 51.5, 84, 14, 300 }, + [2] = { 52.1, 84, 14, 300 }, + [3] = { 54.7, 84, 14, 300 }, + [4] = { 52.2, 83.1, 14, 300 }, + [5] = { 52.7, 83, 14, 300 }, + [6] = { 53.9, 83, 14, 300 }, + [7] = { 54.5, 83, 14, 300 }, + [8] = { 53.4, 83, 14, 300 }, + [9] = { 54, 82.2, 14, 300 }, + [10] = { 54.6, 82, 14, 300 }, + [11] = { 55.2, 81.7, 14, 300 }, + [12] = { 55.8, 80.3, 14, 300 }, + [13] = { 56.4, 80.1, 14, 300 }, + [14] = { 55.4, 79.9, 14, 300 }, + [15] = { 55.9, 79.3, 14, 300 }, + [16] = { 57.2, 79.2, 14, 300 }, + [17] = { 56.5, 79.1, 14, 300 }, + [18] = { 58.2, 78.8, 14, 300 }, + [19] = { 57.2, 78.1, 14, 300 }, + [20] = { 59.8, 73.6, 14, 300 }, + [21] = { 60.9, 69.9, 14, 300 }, + [22] = { 62.7, 62.5, 14, 300 }, + [23] = { 61.3, 61.8, 14, 300 }, + [24] = { 63.4, 61, 14, 300 }, + [25] = { 62.7, 58.2, 14, 300 }, + [26] = { 63.9, 57.2, 14, 300 }, + [27] = { 64.9, 55, 14, 300 }, + [28] = { 62.9, 55, 14, 300 }, + [29] = { 63.2, 54.7, 14, 300 }, + [30] = { 63.8, 54.6, 14, 300 }, + [31] = { 66, 53.5, 14, 300 }, + [32] = { 61.7, 53.5, 14, 300 }, + [33] = { 61, 52.3, 14, 300 }, + [34] = { 62.8, 51.6, 14, 300 }, + [35] = { 65.9, 50.9, 14, 300 }, + [36] = { 61, 50.1, 14, 300 }, + [37] = { 65.5, 49.3, 14, 300 }, + [38] = { 60.3, 49, 14, 300 }, + [39] = { 62.8, 48.9, 14, 300 }, + [40] = { 64.1, 48.8, 14, 300 }, + [41] = { 61.2, 48, 14, 300 }, + [42] = { 63.1, 48, 14, 300 }, + [43] = { 64.1, 47.2, 14, 300 }, + [44] = { 60.3, 47, 14, 300 }, + [45] = { 63.4, 45.3, 14, 300 }, + [46] = { 60.3, 45.1, 14, 300 }, + [47] = { 63.2, 44.2, 14, 300 }, + [48] = { 62.5, 44, 14, 300 }, + [49] = { 60.9, 43.8, 14, 300 }, + [50] = { 60.3, 43.3, 14, 300 }, + [51] = { 61.5, 39.5, 14, 300 }, + [52] = { 72.1, 40.9, 17, 300 }, + [53] = { 72.4, 40.9, 17, 300 }, + [54] = { 73.8, 40.9, 17, 300 }, + [55] = { 72.5, 40.5, 17, 300 }, + }, + ["lvl"] = "5-6", + }, + [3107] = { + ["coords"] = { + [1] = { 64.6, 98.2, 14, 300 }, + [2] = { 63.3, 98, 14, 300 }, + [3] = { 64.6, 96.5, 14, 300 }, + [4] = { 61.9, 94.9, 14, 300 }, + [5] = { 64.6, 94.2, 14, 300 }, + [6] = { 65.2, 93.3, 14, 300 }, + [7] = { 63.2, 93.2, 14, 300 }, + [8] = { 63.7, 93.2, 14, 300 }, + [9] = { 63.4, 92.8, 14, 300 }, + [10] = { 60.3, 92.3, 14, 300 }, + [11] = { 65.9, 91.5, 14, 300 }, + [12] = { 67, 90.8, 14, 300 }, + [13] = { 62.1, 90.5, 14, 300 }, + [14] = { 65.1, 89.9, 14, 300 }, + [15] = { 63.9, 89, 14, 300 }, + [16] = { 69.5, 87.5, 14, 300 }, + [17] = { 61.5, 87.4, 14, 300 }, + [18] = { 61, 86.7, 14, 300 }, + [19] = { 58.9, 86.2, 14, 300 }, + [20] = { 60.2, 85.8, 14, 300 }, + [21] = { 58.3, 83.5, 14, 300 }, + [22] = { 61.4, 82.1, 14, 300 }, + [23] = { 62.8, 81.3, 14, 300 }, + [24] = { 59.6, 81.3, 14, 300 }, + [25] = { 62.1, 80.9, 14, 300 }, + [26] = { 70.4, 80.1, 14, 300 }, + [27] = { 66.1, 79.4, 14, 300 }, + [28] = { 62.1, 79.3, 14, 300 }, + [29] = { 64.1, 78.9, 14, 300 }, + [30] = { 69.7, 78.8, 14, 300 }, + [31] = { 68, 78.6, 14, 300 }, + [32] = { 69.3, 78.3, 14, 300 }, + [33] = { 63.6, 77, 14, 300 }, + [34] = { 62.1, 76.6, 14, 300 }, + [35] = { 67, 76.4, 14, 300 }, + [36] = { 69, 76.3, 14, 300 }, + [37] = { 62.7, 76.1, 14, 300 }, + [38] = { 70.5, 75.9, 14, 300 }, + [39] = { 65.9, 75.6, 14, 300 }, + [40] = { 67.3, 75.5, 14, 300 }, + [41] = { 65.5, 74.6, 14, 300 }, + [42] = { 63.1, 74, 14, 300 }, + [43] = { 71, 73.9, 14, 300 }, + [44] = { 66.3, 72.9, 14, 300 }, + [45] = { 65.1, 72.6, 14, 300 }, + [46] = { 64.1, 72.2, 14, 300 }, + [47] = { 71.1, 71.5, 14, 300 }, + [48] = { 66.2, 70.8, 14, 300 }, + [49] = { 66.1, 70, 14, 300 }, + [50] = { 70.5, 69, 14, 300 }, + [51] = { 67.9, 68.7, 14, 300 }, + [52] = { 58.8, 28.3, 14, 300 }, + [53] = { 59.9, 27.2, 14, 300 }, + [54] = { 60.8, 25.4, 14, 300 }, + [55] = { 60.3, 24.7, 14, 300 }, + [56] = { 59.8, 23.6, 14, 300 }, + [57] = { 60.2, 22.8, 14, 300 }, + [58] = { 60.9, 17.7, 14, 300 }, + [59] = { 79, 48.4, 17, 300 }, + [60] = { 78.3, 48.2, 17, 300 }, + [61] = { 79, 47.4, 17, 300 }, + [62] = { 77.5, 46.6, 17, 300 }, + [63] = { 78.9, 46.2, 17, 300 }, + [64] = { 79.3, 45.8, 17, 300 }, + [65] = { 78.2, 45.7, 17, 300 }, + [66] = { 78.5, 45.7, 17, 300 }, + [67] = { 78.3, 45.5, 17, 300 }, + [68] = { 76.7, 45.2, 17, 300 }, + [69] = { 79.7, 44.8, 17, 300 }, + [70] = { 80.2, 44.5, 17, 300 }, + [71] = { 77.6, 44.3, 17, 300 }, + [72] = { 79.2, 44, 17, 300 }, + [73] = { 78.6, 43.6, 17, 300 }, + [74] = { 81.5, 42.8, 17, 300 }, + [75] = { 77.4, 42.7, 17, 300 }, + [76] = { 77.1, 42.4, 17, 300 }, + [77] = { 76, 42.1, 17, 300 }, + [78] = { 76.7, 41.9, 17, 300 }, + [79] = { 75.7, 40.7, 17, 300 }, + }, + ["lvl"] = "7-8", + }, + [3108] = { + ["coords"] = { + [1] = { 57.8, 96.6, 14, 300 }, + [2] = { 57.6, 95.6, 14, 300 }, + [3] = { 56.9, 95.2, 14, 300 }, + [4] = { 55.5, 95.1, 14, 300 }, + [5] = { 56.3, 94.8, 14, 300 }, + [6] = { 55.6, 94.6, 14, 300 }, + [7] = { 59.1, 16.6, 14, 300 }, + [8] = { 58.4, 15.7, 14, 300 }, + [9] = { 57.9, 15.2, 14, 300 }, + [10] = { 58.3, 13.8, 14, 300 }, + [11] = { 57.7, 13.1, 14, 300 }, + [12] = { 57.2, 12.3, 14, 300 }, + [13] = { 58.1, 12, 14, 300 }, + [14] = { 57.8, 11.4, 14, 300 }, + [15] = { 56.3, 11.1, 14, 300 }, + [16] = { 56.9, 10.2, 14, 300 }, + [17] = { 56.5, 9.1, 14, 300 }, + [18] = { 75, 50.8, 17, 300 }, + [19] = { 75.5, 50.7, 17, 300 }, + [20] = { 75.6, 50.2, 17, 300 }, + [21] = { 73.5, 50, 17, 300 }, + [22] = { 76, 49.6, 17, 300 }, + [23] = { 75.4, 47.5, 17, 300 }, + [24] = { 75.3, 47, 17, 300 }, + [25] = { 74.9, 46.8, 17, 300 }, + [26] = { 74.2, 46.7, 17, 300 }, + [27] = { 74.6, 46.6, 17, 300 }, + [28] = { 74.3, 46.5, 17, 300 }, + }, + ["lvl"] = "9-10", + }, + [3110] = { + ["coords"] = { + [1] = { 38.5, 71.5, 14, 120 }, + [2] = { 37.8, 69.8, 14, 120 }, + [3] = { 37.6, 68.1, 14, 120 }, + [4] = { 37.4, 66.1, 14, 120 }, + [5] = { 36.9, 62.2, 14, 120 }, + [6] = { 36.4, 61.2, 14, 120 }, + [7] = { 36.5, 61.1, 14, 120 }, + [8] = { 35.7, 59.1, 14, 120 }, + [9] = { 35.8, 57.4, 14, 120 }, + [10] = { 35.6, 57.3, 14, 120 }, + [11] = { 35.3, 56.2, 14, 120 }, + [12] = { 34.4, 55.5, 14, 120 }, + [13] = { 34.8, 54.3, 14, 120 }, + [14] = { 34.5, 53.8, 14, 120 }, + [15] = { 33.8, 52.5, 14, 120 }, + [16] = { 34.6, 52.1, 14, 120 }, + [17] = { 33.7, 51.2, 14, 120 }, + [18] = { 33.5, 50.9, 14, 120 }, + [19] = { 34.1, 49.8, 14, 120 }, + [20] = { 34.3, 48.1, 14, 120 }, + [21] = { 33.9, 47.2, 14, 120 }, + [22] = { 34.1, 46, 14, 120 }, + [23] = { 33.8, 45.6, 14, 120 }, + [24] = { 33.6, 45.2, 14, 120 }, + [25] = { 34.5, 44.3, 14, 120 }, + [26] = { 34.4, 44.2, 14, 120 }, + [27] = { 35.1, 39.2, 14, 120 }, + [28] = { 34.4, 37.1, 14, 120 }, + [29] = { 34.2, 34.9, 14, 120 }, + [30] = { 34.3, 34.7, 14, 120 }, + [31] = { 34.5, 32.3, 14, 120 }, + [32] = { 34.4, 32.3, 14, 120 }, + [33] = { 35.2, 30.1, 14, 120 }, + [34] = { 34.6, 29, 14, 120 }, + [35] = { 35.3, 28.3, 14, 120 }, + [36] = { 34.6, 27.2, 14, 120 }, + [37] = { 34.7, 27.1, 14, 120 }, + [38] = { 35, 26.1, 14, 120 }, + [39] = { 34.4, 25.7, 14, 120 }, + [40] = { 35.7, 25.3, 14, 120 }, + [41] = { 35.2, 24.6, 14, 120 }, + [42] = { 35.7, 23.4, 14, 120 }, + [43] = { 36.5, 22.2, 14, 120 }, + [44] = { 36.8, 22.1, 14, 120 }, + [45] = { 35.5, 21.5, 14, 120 }, + [46] = { 36.3, 20.9, 14, 120 }, + [47] = { 36.8, 17.2, 14, 120 }, + [48] = { 37.1, 15.8, 14, 120 }, + [49] = { 65.3, 34.4, 17, 120 }, + [50] = { 65, 33.5, 17, 120 }, + [51] = { 64.9, 32.6, 17, 120 }, + [52] = { 64.8, 31.6, 17, 120 }, + [53] = { 64.5, 29.6, 17, 120 }, + [54] = { 64.3, 29, 17, 120 }, + [55] = { 63.9, 27.9, 17, 120 }, + [56] = { 63.9, 27, 17, 120 }, + [57] = { 63.8, 27, 17, 120 }, + [58] = { 63.7, 26.4, 17, 120 }, + [59] = { 63.2, 26, 17, 120 }, + [60] = { 63.4, 25.4, 17, 120 }, + [61] = { 63.3, 25.2, 17, 120 }, + [62] = { 62.9, 24.5, 17, 120 }, + [63] = { 63.3, 24.3, 17, 120 }, + [64] = { 62.8, 23.8, 17, 120 }, + [65] = { 62.7, 23.7, 17, 120 }, + [66] = { 63, 23.1, 17, 120 }, + [67] = { 63.2, 22.2, 17, 120 }, + [68] = { 62.9, 21.7, 17, 120 }, + [69] = { 63.1, 21.1, 17, 120 }, + [70] = { 62.9, 20.9, 17, 120 }, + [71] = { 62.8, 20.7, 17, 120 }, + [72] = { 63.2, 20.2, 17, 120 }, + [73] = { 63.2, 20.1, 17, 120 }, + [74] = { 63.6, 17.6, 17, 120 }, + [75] = { 63.2, 16.5, 17, 120 }, + [76] = { 62.7, 15.5, 17, 120 }, + [77] = { 63.1, 15.3, 17, 120 }, + [78] = { 63.2, 15.2, 17, 120 }, + [79] = { 63.3, 13.9, 17, 120 }, + [80] = { 63.2, 13.9, 17, 120 }, + [81] = { 63.6, 12.8, 17, 120 }, + [82] = { 63.3, 12.2, 17, 120 }, + [83] = { 63.7, 11.9, 17, 120 }, + [84] = { 63.3, 11.3, 17, 120 }, + [85] = { 63.4, 11.2, 17, 120 }, + [86] = { 63.5, 10.7, 17, 120 }, + [87] = { 63.2, 10.5, 17, 120 }, + [88] = { 63.9, 10.3, 17, 120 }, + [89] = { 63.6, 9.9, 17, 120 }, + [90] = { 63.9, 9.3, 17, 120 }, + [91] = { 64.3, 8.7, 17, 120 }, + [92] = { 64.5, 8.6, 17, 120 }, + [93] = { 63.8, 8.3, 17, 120 }, + [94] = { 64.2, 8, 17, 120 }, + [95] = { 64.4, 6.1, 17, 120 }, + [96] = { 64.6, 5.4, 17, 120 }, + }, + ["lvl"] = "9-11", + }, + [3111] = { + ["coords"] = { + [1] = { 50.2, 50.8, 14, 300 }, + [2] = { 47.6, 49.6, 14, 300 }, + [3] = { 47.4, 49.3, 14, 300 }, + [4] = { 50.3, 49.1, 14, 300 }, + [5] = { 46.2, 49, 14, 300 }, + [6] = { 50.7, 48.9, 14, 300 }, + [7] = { 48.8, 48.9, 14, 300 }, + [8] = { 48.9, 48.8, 14, 300 }, + [9] = { 47.2, 48.7, 14, 300 }, + [10] = { 49.1, 48.7, 14, 300 }, + [11] = { 47.5, 48.6, 14, 300 }, + [12] = { 49, 48.3, 14, 300 }, + [13] = { 49.4, 48.2, 14, 300 }, + [14] = { 47, 48.1, 14, 300 }, + [15] = { 49.6, 47.6, 14, 300 }, + }, + ["lvl"] = "6-7", + }, + [3112] = { + ["coords"] = { + [1] = { 43.3, 50.8, 14, 300 }, + [2] = { 44.5, 50.7, 14, 300 }, + [3] = { 44.9, 50.4, 14, 300 }, + [4] = { 44, 50.3, 14, 300 }, + [5] = { 43.7, 50.2, 14, 300 }, + [6] = { 44.4, 50, 14, 300 }, + [7] = { 47.4, 49.9, 14, 300 }, + [8] = { 50.1, 49.8, 14, 300 }, + [9] = { 44.1, 49.6, 14, 300 }, + [10] = { 44.2, 49.6, 14, 300 }, + [11] = { 47.1, 49.5, 14, 300 }, + [12] = { 49.8, 49.3, 14, 300 }, + [13] = { 49.5, 49.1, 14, 300 }, + [14] = { 49.2, 49.1, 14, 300 }, + [15] = { 49.4, 48.7, 14, 300 }, + [16] = { 47.2, 48, 14, 300 }, + [17] = { 47.6, 47.9, 14, 300 }, + [18] = { 49.6, 47.8, 14, 300 }, + }, + ["lvl"] = "7-8", + }, + [3113] = { + ["coords"] = { + [1] = { 39, 53.7, 14, 300 }, + [2] = { 39.5, 53.2, 14, 300 }, + [3] = { 38.2, 52.9, 14, 300 }, + [4] = { 39.3, 52.9, 14, 300 }, + [5] = { 38.9, 52.8, 14, 300 }, + [6] = { 43.9, 40.5, 14, 300 }, + [7] = { 44, 39.8, 14, 300 }, + [8] = { 43.1, 39.6, 14, 300 }, + [9] = { 42.9, 39.3, 14, 300 }, + [10] = { 42.9, 38.8, 14, 300 }, + [11] = { 41.7, 38.5, 14, 300 }, + [12] = { 44.2, 38.2, 14, 300 }, + [13] = { 41.3, 37.6, 14, 300 }, + [14] = { 44.1, 37.5, 14, 300 }, + [15] = { 43.4, 37.3, 14, 300 }, + [16] = { 41.8, 37.2, 14, 300 }, + }, + ["lvl"] = "8-9", + }, + [3114] = { + ["coords"] = { + [1] = { 38.7, 55.2, 14, 300 }, + [2] = { 38.3, 54.7, 14, 300 }, + [3] = { 38.2, 54, 14, 300 }, + [4] = { 39.4, 53.8, 14, 300 }, + [5] = { 38.8, 53.5, 14, 300 }, + [6] = { 39.1, 53, 14, 300 }, + [7] = { 42.9, 41.6, 14, 300 }, + [8] = { 43.9, 41.4, 14, 300 }, + [9] = { 43.2, 40.5, 14, 300 }, + [10] = { 42.7, 40.4, 14, 300 }, + [11] = { 41.9, 40.3, 14, 300 }, + [12] = { 44.5, 39.6, 14, 300 }, + [13] = { 42.3, 39.4, 14, 300 }, + [14] = { 44.1, 39.2, 14, 300 }, + [15] = { 42.6, 39.2, 14, 300 }, + [16] = { 42.5, 38.9, 14, 300 }, + [17] = { 43.1, 38.9, 14, 300 }, + [18] = { 41.9, 38.9, 14, 300 }, + [19] = { 41.7, 38.2, 14, 300 }, + [20] = { 43, 38.2, 14, 300 }, + [21] = { 43.7, 38.1, 14, 300 }, + [22] = { 45.1, 37.6, 14, 300 }, + [23] = { 42.7, 37.4, 14, 300 }, + [24] = { 44.6, 37.3, 14, 300 }, + [25] = { 42.2, 37.2, 14, 300 }, + [26] = { 65.2, 25.6, 17, 300 }, + }, + ["lvl"] = "9-10", + }, + [3115] = { + ["coords"] = { + [1] = { 45.9, 33.8, 14, 300 }, + [2] = { 47.7, 33.1, 14, 300 }, + [3] = { 48.2, 33, 14, 300 }, + [4] = { 45, 32.8, 14, 300 }, + [5] = { 49.9, 32.5, 14, 300 }, + [6] = { 48.7, 32.3, 14, 300 }, + [7] = { 48.2, 32, 14, 300 }, + [8] = { 48.3, 31.6, 14, 300 }, + [9] = { 48.1, 31.5, 14, 300 }, + [10] = { 47.7, 31.1, 14, 300 }, + [11] = { 45.2, 31, 14, 300 }, + [12] = { 47.4, 30.6, 14, 300 }, + [13] = { 46.8, 30.4, 14, 300 }, + [14] = { 47.7, 30.2, 14, 300 }, + [15] = { 46.5, 30.2, 14, 300 }, + [16] = { 47.1, 30.1, 14, 300 }, + [17] = { 45.9, 30.1, 14, 300 }, + [18] = { 47.2, 29.6, 14, 300 }, + [19] = { 45, 29, 14, 300 }, + [20] = { 50, 27.6, 14, 300 }, + [21] = { 51.4, 27.3, 14, 300 }, + [22] = { 50.5, 26.7, 14, 300 }, + [23] = { 50.6, 26, 14, 300 }, + [24] = { 50.2, 25.1, 14, 300 }, + [25] = { 49.1, 22.2, 14, 300 }, + [26] = { 49, 21.3, 14, 300 }, + [27] = { 48.4, 20.7, 14, 300 }, + [28] = { 48.9, 20.6, 14, 300 }, + [29] = { 48.8, 19.5, 14, 300 }, + }, + ["lvl"] = "7-8", + }, + [3116] = { + ["coords"] = { + [1] = { 45.9, 33.8, 14, 300 }, + [2] = { 47.7, 33.1, 14, 300 }, + [3] = { 48.2, 33, 14, 300 }, + [4] = { 45, 32.8, 14, 300 }, + [5] = { 49.9, 32.5, 14, 300 }, + [6] = { 48.7, 32.3, 14, 300 }, + [7] = { 48.2, 32, 14, 300 }, + [8] = { 48.3, 31.6, 14, 300 }, + [9] = { 48.1, 31.5, 14, 300 }, + [10] = { 47.7, 31.1, 14, 300 }, + [11] = { 45.2, 31, 14, 300 }, + [12] = { 47.4, 30.6, 14, 300 }, + [13] = { 46.8, 30.4, 14, 300 }, + [14] = { 47.7, 30.2, 14, 300 }, + [15] = { 46.5, 30.2, 14, 300 }, + [16] = { 47.1, 30.1, 14, 300 }, + [17] = { 45.9, 30.1, 14, 300 }, + [18] = { 47.2, 29.6, 14, 300 }, + [19] = { 45, 29, 14, 300 }, + [20] = { 50, 27.6, 14, 300 }, + [21] = { 51.4, 27.3, 14, 300 }, + [22] = { 50.5, 26.7, 14, 300 }, + [23] = { 50.6, 26, 14, 300 }, + [24] = { 50.2, 25.1, 14, 300 }, + [25] = { 49.1, 22.2, 14, 300 }, + [26] = { 49, 21.3, 14, 300 }, + [27] = { 48.4, 20.7, 14, 300 }, + [28] = { 48.9, 20.6, 14, 300 }, + [29] = { 48.8, 19.5, 14, 300 }, + }, + ["lvl"] = "7-8", + }, + [3117] = { + ["coords"] = { + [1] = { 53.9, 27.8, 14, 300 }, + [2] = { 54.1, 27.3, 14, 300 }, + [3] = { 54, 26.3, 14, 300 }, + [4] = { 53.9, 25, 14, 300 }, + [5] = { 53.3, 24.8, 14, 300 }, + [6] = { 54.1, 24.5, 14, 300 }, + [7] = { 52.8, 24.3, 14, 300 }, + [8] = { 52.4, 23.9, 14, 300 }, + [9] = { 51.8, 23.8, 14, 300 }, + [10] = { 54, 23.6, 14, 300 }, + [11] = { 53.9, 22.7, 14, 300 }, + [12] = { 53.7, 21.9, 14, 300 }, + [13] = { 52.8, 21.3, 14, 300 }, + [14] = { 51.4, 20.9, 14, 300 }, + [15] = { 52.1, 20.8, 14, 300 }, + }, + ["lvl"] = "9-10", + }, + [3118] = { + ["coords"] = { + [1] = { 53.1, 24.3, 14, 300 }, + [2] = { 53, 23.9, 14, 300 }, + [3] = { 53.3, 23.8, 14, 300 }, + [4] = { 51.3, 23.6, 14, 300 }, + [5] = { 51.9, 23.5, 14, 300 }, + [6] = { 51.5, 23.4, 14, 300 }, + [7] = { 51.2, 23.3, 14, 300 }, + [8] = { 51.4, 23.1, 14, 300 }, + [9] = { 54.1, 22.4, 14, 300 }, + [10] = { 51.6, 21.6, 14, 300 }, + [11] = { 53.3, 21.6, 14, 300 }, + [12] = { 52, 21.4, 14, 300 }, + [13] = { 51.3, 20.2, 14, 300 }, + [14] = { 52, 20.1, 14, 300 }, + [15] = { 51.7, 20, 14, 300 }, + [16] = { 51, 19.6, 14, 300 }, + [17] = { 51.3, 19.2, 14, 300 }, + [18] = { 51.6, 19, 14, 300 }, + }, + ["lvl"] = "10-11", + }, + [3119] = { + ["coords"] = { + [1] = { 52.1, 82, 14, 300 }, + [2] = { 52.6, 81.2, 14, 300 }, + [3] = { 46.7, 80.5, 14, 300 }, + [4] = { 48.1, 80.5, 14, 300 }, + [5] = { 49.7, 80.4, 14, 300 }, + [6] = { 52.3, 80.2, 14, 300 }, + [7] = { 49.9, 80, 14, 300 }, + [8] = { 48.2, 80, 14, 300 }, + [9] = { 53, 79.8, 14, 300 }, + [10] = { 49, 79.6, 14, 300 }, + [11] = { 46.4, 79.5, 14, 300 }, + [12] = { 51.3, 79.3, 14, 300 }, + [13] = { 48.1, 79.2, 14, 300 }, + [14] = { 50.1, 79.2, 14, 300 }, + [15] = { 47.6, 78.7, 14, 300 }, + [16] = { 50, 78.5, 14, 300 }, + [17] = { 48.1, 77.7, 14, 300 }, + [18] = { 52.7, 77.3, 14, 300 }, + [19] = { 52, 76.5, 14, 300 }, + }, + ["lvl"] = "6-7", + }, + [3120] = { + ["coords"] = { + [1] = { 49.8, 81.4, 14, 300 }, + [2] = { 50.1, 80.5, 14, 300 }, + [3] = { 46.3, 79.3, 14, 300 }, + [4] = { 46.6, 79.2, 14, 300 }, + [5] = { 48.1, 78.4, 14, 300 }, + [6] = { 47.6, 78.1, 14, 300 }, + [7] = { 47.8, 77.7, 14, 300 }, + [8] = { 69.4, 38.5, 17, 300 }, + }, + ["lvl"] = "7-8", + }, + [3121] = { + ["coords"] = { + [1] = { 64, 97.3, 14, 300 }, + [2] = { 63.3, 96.2, 14, 300 }, + [3] = { 64.1, 95.4, 14, 300 }, + [4] = { 61.4, 91.3, 14, 300 }, + [5] = { 61.7, 90.4, 14, 300 }, + [6] = { 61.5, 89.6, 14, 300 }, + [7] = { 60.9, 88.7, 14, 300 }, + [8] = { 64.6, 88.5, 14, 300 }, + [9] = { 65.3, 87.8, 14, 300 }, + [10] = { 60.8, 87.5, 14, 300 }, + [11] = { 64.6, 85, 14, 300 }, + [12] = { 69.1, 84.8, 14, 300 }, + [13] = { 59.6, 84.7, 14, 300 }, + [14] = { 59.8, 83.3, 14, 300 }, + [15] = { 60.7, 82.3, 14, 300 }, + [16] = { 65.9, 81.3, 14, 300 }, + [17] = { 64.7, 81, 14, 300 }, + [18] = { 69.1, 80.3, 14, 300 }, + [19] = { 65.3, 80.2, 14, 300 }, + [20] = { 60.2, 80, 14, 300 }, + [21] = { 67.7, 73.8, 14, 300 }, + [22] = { 69.2, 73.7, 14, 300 }, + [23] = { 70.3, 73.4, 14, 300 }, + [24] = { 69.8, 72.8, 14, 300 }, + [25] = { 69, 72.4, 14, 300 }, + [26] = { 67.2, 70.7, 14, 300 }, + [27] = { 69.2, 69.7, 14, 300 }, + [28] = { 78.6, 47.9, 17, 300 }, + [29] = { 78.3, 47.3, 17, 300 }, + [30] = { 78.7, 46.9, 17, 300 }, + [31] = { 77.3, 44.8, 17, 300 }, + [32] = { 77.4, 44.2, 17, 300 }, + [33] = { 77.3, 43.9, 17, 300 }, + [34] = { 77, 43.4, 17, 300 }, + [35] = { 79, 43.3, 17, 300 }, + [36] = { 79.3, 42.9, 17, 300 }, + [37] = { 77, 42.8, 17, 300 }, + [38] = { 79, 41.4, 17, 300 }, + [39] = { 81.3, 41.4, 17, 300 }, + [40] = { 76.4, 41.3, 17, 300 }, + [41] = { 76.5, 40.6, 17, 300 }, + }, + ["lvl"] = "7-8", + }, + [3122] = { + ["coords"] = { + [1] = { 63.1, 94.4, 14, 300 }, + [2] = { 66.7, 89, 14, 300 }, + [3] = { 68.2, 88.5, 14, 300 }, + [4] = { 59.9, 88, 14, 300 }, + [5] = { 68.5, 87.1, 14, 300 }, + [6] = { 64, 86.8, 14, 300 }, + [7] = { 59.4, 83.9, 14, 300 }, + [8] = { 68.4, 83.9, 14, 300 }, + [9] = { 63.9, 83.8, 14, 300 }, + [10] = { 60.3, 82.6, 14, 300 }, + [11] = { 64.9, 82.3, 14, 300 }, + [12] = { 69.2, 82.1, 14, 300 }, + [13] = { 68.1, 80.5, 14, 300 }, + [14] = { 67.2, 80.5, 14, 300 }, + [15] = { 60.9, 78.8, 14, 300 }, + [16] = { 61.4, 78.1, 14, 300 }, + [17] = { 68.6, 74.7, 14, 300 }, + [18] = { 69.8, 74.7, 14, 300 }, + [19] = { 63.5, 74.5, 14, 300 }, + [20] = { 64.6, 73.3, 14, 300 }, + [21] = { 68.3, 71.8, 14, 300 }, + [22] = { 67.2, 71.2, 14, 300 }, + [23] = { 68.9, 71.1, 14, 300 }, + [24] = { 70.2, 70.9, 14, 300 }, + [25] = { 69.8, 70.4, 14, 300 }, + [26] = { 67.7, 69.8, 14, 300 }, + [27] = { 39.5, 51.9, 14, 300 }, + [28] = { 41.2, 50.3, 14, 300 }, + [29] = { 42.3, 49.1, 14, 300 }, + [30] = { 40.3, 47.7, 14, 300 }, + [31] = { 39.2, 47, 14, 300 }, + [32] = { 41.6, 47, 14, 300 }, + [33] = { 40.5, 46.6, 14, 300 }, + [34] = { 43.3, 46.5, 14, 300 }, + [35] = { 44.2, 45.4, 14, 300 }, + [36] = { 40.5, 38.2, 14, 300 }, + [37] = { 46.3, 37.6, 14, 300 }, + [38] = { 55.3, 37.3, 14, 300 }, + [39] = { 49.8, 37, 14, 300 }, + [40] = { 48.9, 36.9, 14, 300 }, + [41] = { 47.6, 36.8, 14, 300 }, + [42] = { 45.8, 36.6, 14, 300 }, + [43] = { 50.4, 35.4, 14, 300 }, + [44] = { 40.6, 34.6, 14, 300 }, + [45] = { 54.9, 34.5, 14, 300 }, + [46] = { 42.3, 34.4, 14, 300 }, + [47] = { 44.5, 34, 14, 300 }, + [48] = { 44.2, 33.6, 14, 300 }, + [49] = { 54.4, 32.5, 14, 300 }, + [50] = { 55.3, 30.5, 14, 300 }, + [51] = { 56.1, 29.2, 14, 300 }, + [52] = { 58, 23.1, 14, 300 }, + [53] = { 49.4, 19.2, 14, 300 }, + [54] = { 78.2, 46.4, 17, 300 }, + [55] = { 80.1, 43.5, 17, 300 }, + [56] = { 80.8, 43.3, 17, 300 }, + [57] = { 76.5, 43, 17, 300 }, + [58] = { 81, 42.5, 17, 300 }, + [59] = { 78.6, 42.4, 17, 300 }, + [60] = { 76.2, 40.9, 17, 300 }, + [61] = { 81, 40.9, 17, 300 }, + [62] = { 78.6, 40.8, 17, 300 }, + }, + ["lvl"] = "6-8", + }, + [3123] = { + ["coords"] = { + [1] = { 37.2, 54.9, 14, 300 }, + [2] = { 36.1, 53.2, 14, 300 }, + [3] = { 35.9, 48.9, 14, 300 }, + [4] = { 38.4, 48.9, 14, 300 }, + [5] = { 37.1, 47.3, 14, 300 }, + [6] = { 37, 46.4, 14, 300 }, + [7] = { 37.9, 40, 14, 300 }, + [8] = { 36.6, 39.1, 14, 300 }, + [9] = { 38.5, 37.4, 14, 300 }, + [10] = { 36, 37, 14, 300 }, + [11] = { 37.5, 36.1, 14, 300 }, + [12] = { 36.7, 34.3, 14, 300 }, + [13] = { 37.5, 32.4, 14, 300 }, + [14] = { 36, 31.8, 14, 300 }, + [15] = { 36.9, 29.7, 14, 300 }, + [16] = { 36.3, 27.7, 14, 300 }, + [17] = { 36.8, 27.2, 14, 300 }, + [18] = { 36.8, 25.4, 14, 300 }, + [19] = { 42.1, 21.3, 14, 300 }, + [20] = { 39.2, 19.5, 14, 300 }, + [21] = { 54.9, 19.3, 14, 300 }, + [22] = { 39.2, 19.1, 14, 300 }, + [23] = { 42.9, 18.5, 14, 300 }, + [24] = { 54.4, 18, 14, 300 }, + [25] = { 39.3, 17.1, 14, 300 }, + [26] = { 40.4, 16.1, 14, 300 }, + [27] = { 53.2, 16, 14, 300 }, + [28] = { 55.9, 15.9, 14, 300 }, + [29] = { 56.8, 14.9, 14, 300 }, + [30] = { 51.8, 14.5, 14, 300 }, + [31] = { 53.9, 13.5, 14, 300 }, + [32] = { 55.2, 13.1, 14, 300 }, + [33] = { 53, 12.4, 14, 300 }, + [34] = { 55.8, 12, 14, 300 }, + [35] = { 54, 11.7, 14, 300 }, + [36] = { 52.1, 10.6, 14, 300 }, + [37] = { 64.7, 25.8, 17, 300 }, + [38] = { 64.1, 24.9, 17, 300 }, + [39] = { 64, 22.6, 17, 300 }, + [40] = { 64.4, 17.5, 17, 300 }, + [41] = { 64.1, 16.4, 17, 300 }, + [42] = { 64.4, 15, 17, 300 }, + [43] = { 64, 13.7, 17, 300 }, + [44] = { 64.5, 12.6, 17, 300 }, + [45] = { 64.2, 11.5, 17, 300 }, + [46] = { 64.4, 11.3, 17, 300 }, + [47] = { 64.4, 10.4, 17, 300 }, + }, + ["lvl"] = "8-10", + }, + [3124] = { + ["coords"] = { + [1] = { 44, 73.7, 14, 300 }, + [2] = { 43.2, 73.6, 14, 300 }, + [3] = { 45.2, 72.8, 14, 300 }, + [4] = { 45.1, 71.3, 14, 300 }, + [5] = { 41.3, 70.6, 14, 300 }, + [6] = { 40.7, 70.5, 14, 300 }, + [7] = { 40.1, 68.6, 14, 300 }, + [8] = { 40.7, 68.5, 14, 300 }, + [9] = { 41.4, 67.9, 14, 300 }, + [10] = { 40.1, 67.8, 14, 300 }, + [11] = { 40.7, 67.7, 14, 300 }, + [12] = { 40.1, 66.9, 14, 300 }, + [13] = { 41.3, 66.8, 14, 300 }, + [14] = { 40.7, 66.8, 14, 300 }, + [15] = { 40, 66, 14, 300 }, + [16] = { 41.5, 65.9, 14, 300 }, + [17] = { 41.8, 65.8, 14, 300 }, + [18] = { 40.8, 65.8, 14, 300 }, + [19] = { 41.5, 64.3, 14, 300 }, + [20] = { 40.8, 64, 14, 300 }, + [21] = { 47.2, 64, 14, 300 }, + [22] = { 47.6, 64, 14, 300 }, + [23] = { 40.1, 64, 14, 300 }, + [24] = { 40, 63.4, 14, 300 }, + [25] = { 41.4, 63.4, 14, 300 }, + [26] = { 39.6, 63.1, 14, 300 }, + [27] = { 47.1, 63.1, 14, 300 }, + [28] = { 40.8, 62.9, 14, 300 }, + [29] = { 39.5, 62.3, 14, 300 }, + [30] = { 47, 62.1, 14, 300 }, + [31] = { 40.2, 62.1, 14, 300 }, + [32] = { 41.4, 62.1, 14, 300 }, + [33] = { 40.9, 62, 14, 300 }, + [34] = { 40, 61.4, 14, 300 }, + [35] = { 41.4, 61.4, 14, 300 }, + [36] = { 46.5, 61.3, 14, 300 }, + [37] = { 47.1, 61.3, 14, 300 }, + [38] = { 40.7, 61.2, 14, 300 }, + [39] = { 39.4, 61.1, 14, 300 }, + [40] = { 41.4, 60.4, 14, 300 }, + [41] = { 45.8, 60.1, 14, 300 }, + [42] = { 46.4, 60.1, 14, 300 }, + [43] = { 46.8, 60, 14, 300 }, + [44] = { 43.2, 59.5, 14, 300 }, + [45] = { 44, 59.5, 14, 300 }, + [46] = { 45.8, 59.4, 14, 300 }, + [47] = { 45.2, 59.3, 14, 300 }, + [48] = { 46.4, 59.3, 14, 300 }, + [49] = { 42.6, 59.2, 14, 300 }, + [50] = { 45.6, 58.7, 14, 300 }, + [51] = { 42.8, 58.5, 14, 300 }, + [52] = { 42, 58.4, 14, 300 }, + [53] = { 43.3, 58.4, 14, 300 }, + [54] = { 41.8, 57.3, 14, 300 }, + [55] = { 43.1, 56.4, 14, 300 }, + [56] = { 66.8, 33.9, 17, 300 }, + [57] = { 66.5, 33.9, 17, 300 }, + [58] = { 66.2, 32.9, 17, 300 }, + [59] = { 66.2, 32.5, 17, 300 }, + [60] = { 66.2, 32, 17, 300 }, + [61] = { 66.1, 31.5, 17, 300 }, + }, + ["lvl"] = "3", + }, + [3125] = { + ["coords"] = { + [1] = { 54.8, 80.3, 14, 300 }, + [2] = { 53.3, 76.4, 14, 300 }, + [3] = { 50.2, 75.4, 14, 300 }, + [4] = { 50.6, 74.9, 14, 300 }, + [5] = { 49.5, 74.7, 14, 300 }, + [6] = { 53.3, 74.4, 14, 300 }, + [7] = { 52.2, 73.7, 14, 300 }, + [8] = { 52.1, 73.6, 14, 300 }, + [9] = { 50.1, 73.5, 14, 300 }, + [10] = { 51.9, 73.5, 14, 300 }, + [11] = { 49.6, 72.9, 14, 300 }, + [12] = { 50.8, 72.5, 14, 300 }, + [13] = { 52.6, 72.5, 14, 300 }, + [14] = { 58.2, 72, 14, 300 }, + [15] = { 50.1, 71.9, 14, 300 }, + [16] = { 57.7, 71.3, 14, 300 }, + [17] = { 56.6, 70.9, 14, 300 }, + [18] = { 58.3, 70.8, 14, 300 }, + [19] = { 57.2, 70.8, 14, 300 }, + [20] = { 50.9, 70.6, 14, 300 }, + [21] = { 56.1, 70.5, 14, 300 }, + [22] = { 55.6, 70.1, 14, 300 }, + [23] = { 54.8, 70, 14, 300 }, + [24] = { 56.1, 69.6, 14, 300 }, + [25] = { 54.1, 69, 14, 300 }, + [26] = { 54.4, 69, 14, 300 }, + [27] = { 53.8, 68.1, 14, 300 }, + [28] = { 55.5, 68, 14, 300 }, + [29] = { 53.2, 67, 14, 300 }, + [30] = { 54.4, 67, 14, 300 }, + [31] = { 54.1, 65.1, 14, 300 }, + [32] = { 54.4, 64.9, 14, 300 }, + [33] = { 54.1, 64.1, 14, 300 }, + [34] = { 54.7, 63.6, 14, 300 }, + [35] = { 52.1, 62.8, 14, 300 }, + [36] = { 54.5, 61.1, 14, 300 }, + [37] = { 52.9, 60.6, 14, 300 }, + [38] = { 54.8, 59.4, 14, 300 }, + [39] = { 54.5, 56.7, 14, 300 }, + [40] = { 54, 55.2, 14, 300 }, + [41] = { 51.9, 54.7, 14, 300 }, + [42] = { 51, 54.2, 14, 300 }, + [43] = { 53.4, 53.5, 14, 300 }, + [44] = { 53.1, 51.8, 14, 300 }, + [45] = { 53.9, 50.8, 14, 300 }, + [46] = { 58.8, 50.5, 14, 300 }, + [47] = { 54.7, 50.1, 14, 300 }, + [48] = { 57.8, 49.5, 14, 300 }, + [49] = { 56, 49.1, 14, 300 }, + [50] = { 53.9, 49, 14, 300 }, + [51] = { 57, 48.3, 14, 300 }, + [52] = { 59.7, 48.1, 14, 300 }, + [53] = { 55.9, 47.5, 14, 300 }, + [54] = { 57.7, 46.8, 14, 300 }, + [55] = { 57.8, 45.9, 14, 300 }, + [56] = { 59.6, 45.9, 14, 300 }, + [57] = { 56.9, 45.7, 14, 300 }, + [58] = { 55.2, 45.4, 14, 300 }, + [59] = { 56.9, 45.3, 14, 300 }, + [60] = { 59.1, 44.7, 14, 300 }, + [61] = { 58.5, 44.6, 14, 300 }, + [62] = { 59.8, 44.4, 14, 300 }, + [63] = { 55.8, 44.2, 14, 300 }, + [64] = { 57.1, 44.2, 14, 300 }, + [65] = { 59, 43.2, 14, 300 }, + [66] = { 56.5, 43.2, 14, 300 }, + [67] = { 57.8, 42.9, 14, 300 }, + [68] = { 57.2, 42.7, 14, 300 }, + [69] = { 58.3, 42.3, 14, 300 }, + [70] = { 59.7, 42, 14, 300 }, + [71] = { 57.8, 41.5, 14, 300 }, + }, + ["lvl"] = "5-6", + }, + [3126] = { + ["coords"] = { + [1] = { 41.1, 51.7, 14, 300 }, + [2] = { 41.4, 50.7, 14, 300 }, + [3] = { 42.5, 48.6, 14, 300 }, + [4] = { 41.1, 48.4, 14, 300 }, + [5] = { 43.3, 48.1, 14, 300 }, + [6] = { 39.6, 47.8, 14, 300 }, + [7] = { 45.6, 46.7, 14, 300 }, + [8] = { 41, 46.6, 14, 300 }, + [9] = { 37.9, 46.5, 14, 300 }, + [10] = { 42.6, 45.9, 14, 300 }, + [11] = { 44.6, 45.7, 14, 300 }, + [12] = { 43.7, 45.5, 14, 300 }, + [13] = { 40.1, 45.3, 14, 300 }, + [14] = { 44.6, 44.5, 14, 300 }, + [15] = { 37.7, 42.5, 14, 300 }, + [16] = { 39.2, 42.1, 14, 300 }, + [17] = { 41.4, 41.4, 14, 300 }, + [18] = { 36.3, 41.2, 14, 300 }, + [19] = { 38.3, 40.8, 14, 300 }, + [20] = { 40.2, 39.4, 14, 300 }, + [21] = { 40.7, 38.8, 14, 300 }, + [22] = { 48.3, 38.6, 14, 300 }, + [23] = { 35.7, 37.9, 14, 300 }, + [24] = { 51, 37.7, 14, 300 }, + [25] = { 37, 37.2, 14, 300 }, + [26] = { 35.7, 36.9, 14, 300 }, + [27] = { 47.6, 36.9, 14, 300 }, + [28] = { 36.2, 36.9, 14, 300 }, + [29] = { 48.9, 36.8, 14, 300 }, + [30] = { 49.3, 36.6, 14, 300 }, + [31] = { 54.8, 36.6, 14, 300 }, + [32] = { 39, 35.7, 14, 300 }, + [33] = { 47.6, 35.6, 14, 300 }, + [34] = { 46.8, 35.5, 14, 300 }, + [35] = { 42.5, 34.4, 14, 300 }, + [36] = { 37.1, 34.4, 14, 300 }, + [37] = { 38.3, 33.9, 14, 300 }, + [38] = { 37.3, 33.8, 14, 300 }, + [39] = { 54.4, 33.8, 14, 300 }, + [40] = { 44.4, 33.6, 14, 300 }, + [41] = { 43.4, 32.4, 14, 300 }, + [42] = { 55.7, 31.7, 14, 300 }, + [43] = { 45.5, 31.4, 14, 300 }, + [44] = { 57.6, 30.9, 14, 300 }, + [45] = { 48.6, 30.6, 14, 300 }, + [46] = { 57.4, 29.5, 14, 300 }, + [47] = { 41.9, 28.8, 14, 300 }, + [48] = { 45.2, 28.2, 14, 300 }, + [49] = { 45.3, 26.5, 14, 300 }, + [50] = { 54.9, 23.1, 14, 300 }, + [51] = { 56.1, 22.8, 14, 300 }, + [52] = { 55, 22.1, 14, 300 }, + [53] = { 50.6, 21.6, 14, 300 }, + [54] = { 56.5, 21.4, 14, 300 }, + [55] = { 50.5, 19.5, 14, 300 }, + [56] = { 52.8, 19.4, 14, 300 }, + [57] = { 51.1, 17.8, 14, 300 }, + [58] = { 64.2, 18.6, 17, 300 }, + [59] = { 63.9, 16.9, 17, 300 }, + [60] = { 63.9, 16.3, 17, 300 }, + [61] = { 64.2, 16.3, 17, 300 }, + }, + ["lvl"] = "7-8", + }, + [3127] = { + ["coords"] = { + [1] = { 35.9, 56.6, 14, 300 }, + [2] = { 36.8, 55.7, 14, 300 }, + [3] = { 36.8, 53.8, 14, 300 }, + [4] = { 35.3, 53.6, 14, 300 }, + [5] = { 36.3, 52.6, 14, 300 }, + [6] = { 35, 50.8, 14, 300 }, + [7] = { 37.5, 50.6, 14, 300 }, + [8] = { 36.7, 50.5, 14, 300 }, + [9] = { 37.9, 49.9, 14, 300 }, + [10] = { 35.8, 49.8, 14, 300 }, + [11] = { 37, 48.9, 14, 300 }, + [12] = { 36.3, 47.2, 14, 300 }, + [13] = { 35.7, 47, 14, 300 }, + [14] = { 35.5, 33.1, 14, 300 }, + [15] = { 37.1, 31, 14, 300 }, + [16] = { 36.5, 30.2, 14, 300 }, + [17] = { 36.2, 28.4, 14, 300 }, + [18] = { 36.8, 27, 14, 300 }, + [19] = { 36.6, 25.1, 14, 300 }, + [20] = { 38.8, 22.6, 14, 300 }, + [21] = { 39.4, 22.1, 14, 300 }, + [22] = { 42.6, 21.1, 14, 300 }, + [23] = { 42, 20.6, 14, 300 }, + [24] = { 44.9, 20.5, 14, 300 }, + [25] = { 38.1, 20.2, 14, 300 }, + [26] = { 41.4, 20.1, 14, 300 }, + [27] = { 43.9, 18.7, 14, 300 }, + [28] = { 39.8, 18.4, 14, 300 }, + [29] = { 43.9, 18.4, 14, 300 }, + [30] = { 56, 18.3, 14, 300 }, + [31] = { 43.6, 18.2, 14, 300 }, + [32] = { 39, 17.7, 14, 300 }, + [33] = { 38.8, 17.7, 14, 300 }, + [34] = { 50.4, 17.6, 14, 300 }, + [35] = { 49.7, 17.5, 14, 300 }, + [36] = { 43.9, 17, 14, 300 }, + [37] = { 41, 16.9, 14, 300 }, + [38] = { 44.1, 16.7, 14, 300 }, + [39] = { 53.5, 15.7, 14, 300 }, + [40] = { 55.9, 15.3, 14, 300 }, + [41] = { 55.7, 14.8, 14, 300 }, + [42] = { 57, 14.3, 14, 300 }, + [43] = { 53.6, 12.7, 14, 300 }, + [44] = { 55.9, 12.1, 14, 300 }, + [45] = { 53.3, 11.9, 14, 300 }, + [46] = { 54.4, 11.8, 14, 300 }, + [47] = { 64, 26.6, 17, 300 }, + [48] = { 64.4, 26.2, 17, 300 }, + [49] = { 63.7, 25.1, 17, 300 }, + [50] = { 64.2, 24.5, 17, 300 }, + [51] = { 63.5, 23.6, 17, 300 }, + [52] = { 64.4, 23.4, 17, 300 }, + [53] = { 63.9, 23.1, 17, 300 }, + [54] = { 64.2, 21.7, 17, 300 }, + [55] = { 63.9, 21.6, 17, 300 }, + [56] = { 63.8, 14.4, 17, 300 }, + [57] = { 64.6, 13.3, 17, 300 }, + [58] = { 64.3, 12.9, 17, 300 }, + [59] = { 64.1, 11.9, 17, 300 }, + [60] = { 64.5, 11.2, 17, 300 }, + [61] = { 64.4, 10.2, 17, 300 }, + [62] = { 65.2, 7.6, 17, 300 }, + }, + ["lvl"] = "9-10", + }, + [3128] = { + ["coords"] = { + [1] = { 58.8, 60.2, 14, 300 }, + [2] = { 60.2, 59.2, 14, 300 }, + [3] = { 55.9, 59.1, 14, 300 }, + [4] = { 59.5, 59, 14, 300 }, + [5] = { 59.8, 58.9, 14, 300 }, + [6] = { 61, 58.7, 14, 300 }, + [7] = { 57.8, 58.7, 14, 300 }, + [8] = { 57.7, 58.5, 14, 300 }, + [9] = { 56.4, 58.5, 14, 300 }, + [10] = { 57.4, 58.2, 14, 300 }, + [11] = { 55.7, 57.5, 14, 300 }, + [12] = { 58.5, 57.5, 14, 300 }, + [13] = { 57.1, 57.2, 14, 300 }, + [14] = { 57.9, 57.2, 14, 300 }, + [15] = { 58.2, 56.8, 14, 300 }, + [16] = { 57.4, 56.8, 14, 300 }, + [17] = { 56.4, 56.5, 14, 300 }, + [18] = { 56.7, 54.9, 14, 300 }, + [19] = { 57.2, 54.7, 14, 300 }, + [20] = { 55.9, 53.8, 14, 300 }, + [21] = { 58.4, 53.7, 14, 300 }, + [22] = { 56.7, 53.1, 14, 300 }, + [23] = { 57.1, 53.1, 14, 300 }, + [24] = { 56.6, 53, 14, 300 }, + [25] = { 56.7, 52.8, 14, 300 }, + [26] = { 59, 52.7, 14, 300 }, + [27] = { 57.8, 52.6, 14, 300 }, + [28] = { 55.9, 51.8, 14, 300 }, + [29] = { 57.1, 51.5, 14, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "5-6", + }, + [3129] = { + ["coords"] = { + [1] = { 60.2, 60.2, 14, 300 }, + [2] = { 60.7, 59.4, 14, 300 }, + [3] = { 58.4, 58.5, 14, 300 }, + [4] = { 59.4, 58.5, 14, 120 }, + [5] = { 59.7, 58.5, 14, 120 }, + [6] = { 59.6, 58.2, 14, 300 }, + [7] = { 59.8, 57.8, 14, 300 }, + [8] = { 59.6, 56.7, 14, 300 }, + [9] = { 59.2, 56.7, 14, 300 }, + [10] = { 59.5, 56.3, 14, 300 }, + [11] = { 59.1, 55.6, 14, 300 }, + [12] = { 58.1, 55.5, 14, 300 }, + [13] = { 59.5, 55.5, 14, 300 }, + [14] = { 57.5, 55.3, 14, 300 }, + [15] = { 59.9, 54.7, 14, 300 }, + [16] = { 57.8, 53.8, 14, 300 }, + [17] = { 59.5, 53.5, 14, 300 }, + [18] = { 56.5, 50.8, 14, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "6-7", + }, + [3130] = { + ["coords"] = { + [1] = { 39.1, 31.3, 14, 300 }, + [2] = { 39.1, 30.8, 14, 300 }, + [3] = { 39.1, 30.1, 14, 300 }, + [4] = { 40.6, 30.1, 14, 300 }, + [5] = { 40.5, 29.8, 14, 300 }, + [6] = { 39.1, 29.3, 14, 300 }, + [7] = { 40.5, 29, 14, 300 }, + [8] = { 39.2, 28.5, 14, 300 }, + [9] = { 39.6, 28.1, 14, 300 }, + [10] = { 40.2, 28.1, 14, 300 }, + [11] = { 39.2, 26.6, 14, 300 }, + }, + ["lvl"] = "9-10", + }, + [3131] = { + ["coords"] = { + [1] = { 38.9, 25.3, 14, 300 }, + [2] = { 39.4, 24.9, 14, 300 }, + [3] = { 40.7, 24.5, 14, 300 }, + [4] = { 42.4, 24.4, 14, 300 }, + [5] = { 43.3, 24.4, 14, 300 }, + [6] = { 42, 24.4, 14, 300 }, + [7] = { 41.4, 24.3, 14, 300 }, + [8] = { 40.2, 24.2, 14, 300 }, + [9] = { 43.6, 24.1, 14, 300 }, + [10] = { 42.9, 23.7, 14, 300 }, + [11] = { 39.5, 23.5, 14, 300 }, + }, + ["lvl"] = "10-11", + }, + [3139] = { + ["coords"] = { + [1] = { 52, 43.3, 14, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "10", + }, + [3140] = { + ["coords"] = { + [1] = { 54.2, 73.3, 14, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "7", + }, + [3142] = { + ["coords"] = { + [1] = { 52.2, 43.2, 14, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "18", + }, + [3143] = { + ["coords"] = { + [1] = { 42.1, 68.3, 14, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "5", + }, + [3144] = { + ["coords"] = { + [1] = { 34.3, 39.4, 1637, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [3145] = { + ["coords"] = { + [1] = { 42.8, 69.1, 14, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "12", + }, + [3146] = "_", + [3147] = { + ["coords"] = { + [1] = { 49.9, 40.4, 14, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "6", + }, + [3148] = "_", + [3150] = { + ["coords"] = { + [1] = { 61.8, 59.2, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + ["rnk"] = "1", + }, + [3151] = "_", + [3152] = "_", + [3169] = { + ["coords"] = { + [1] = { 54.2, 42.5, 14, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "43", + }, + [3170] = { + ["coords"] = { + [1] = { 52, 43.7, 14, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "14", + }, + [3171] = { + ["coords"] = { + [1] = { 51.8, 43.5, 14, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "16", + }, + [3173] = { + ["coords"] = { + [1] = { 54.4, 42.6, 14, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "15", + }, + [3176] = "_", + [3180] = { + ["coords"] = { + [1] = { 46.5, 18.3, 11, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "31", + }, + [3183] = { + ["coords"] = { + [1] = { 42.7, 53, 14, 120 }, + }, + ["lvl"] = "5", + }, + [3188] = { + ["coords"] = { + [1] = { 55.9, 74.7, 14, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "12", + }, + [3189] = { + ["coords"] = { + [1] = { 47.3, 53.1, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "7", + }, + [3190] = { + ["coords"] = { + [1] = { 43.1, 19.3, 14, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "8", + }, + [3191] = { + ["coords"] = { + [1] = { 51.1, 42.4, 14, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "6", + }, + [3192] = { + ["coords"] = { + [1] = { 59.7, 58.3, 14, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "8", + }, + [3193] = { + ["coords"] = { + [1] = { 43.1, 30.2, 14, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "5", + }, + [3194] = { + ["coords"] = { + [1] = { 56, 73.9, 14, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "7", + }, + [3196] = { + ["coords"] = { + [1] = { 52.8, 28.5, 14, 300 }, + [2] = { 51.9, 26.3, 14, 300 }, + [3] = { 51.9, 25.1, 14, 120 }, + }, + ["lvl"] = "9-10", + }, + [3197] = { + ["coords"] = { + [1] = { 42.3, 27.3, 14, 120 }, + [2] = { 42.3, 26.9, 14, 120 }, + [3] = { 42, 26.6, 14, 120 }, + [4] = { 42.3, 26.3, 14, 120 }, + [5] = { 52.7, 11, 14, 300 }, + [6] = { 51.9, 10.8, 14, 300 }, + [7] = { 53.4, 10.5, 14, 300 }, + [8] = { 52.5, 10.2, 14, 300 }, + [9] = { 51.6, 10.2, 14, 300 }, + [10] = { 53.7, 9.9, 14, 300 }, + [11] = { 55, 9.8, 14, 300 }, + [12] = { 54.7, 9.4, 14, 300 }, + [13] = { 52.5, 9.2, 14, 300 }, + [14] = { 53.3, 9.2, 14, 300 }, + [15] = { 51.5, 9.2, 14, 300 }, + [16] = { 53, 8.9, 14, 300 }, + [17] = { 54.3, 8.9, 14, 300 }, + [18] = { 53.8, 8.9, 14, 300 }, + [19] = { 51.4, 8.7, 14, 300 }, + [20] = { 52.5, 8.6, 14, 300 }, + [21] = { 52.1, 8.2, 14, 300 }, + [22] = { 53.3, 8.2, 14, 300 }, + [23] = { 52.7, 7.9, 14, 300 }, + }, + ["lvl"] = "9-10", + }, + [3198] = { + ["coords"] = { + [1] = { 41.9, 26.9, 14, 120 }, + [2] = { 42.9, 26.4, 14, 120 }, + [3] = { 53.1, 11.1, 14, 300 }, + [4] = { 52.3, 11, 14, 300 }, + [5] = { 53.2, 10, 14, 300 }, + [6] = { 52.1, 9.8, 14, 300 }, + [7] = { 53.8, 9.4, 14, 300 }, + [8] = { 53.1, 9.4, 14, 300 }, + [9] = { 54.7, 8.8, 14, 300 }, + [10] = { 53.5, 8.6, 14, 300 }, + [11] = { 52.6, 8.2, 14, 300 }, + [12] = { 51.6, 8.1, 14, 300 }, + [13] = { 53.4, 7.7, 14, 300 }, + [14] = { 52.9, 7.6, 14, 300 }, + }, + ["lvl"] = "10-11", + }, + [3199] = { + ["coords"] = { + [1] = { 52.4, 26.8, 14, 300 }, + [2] = { 52.6, 26.4, 14, 300 }, + [3] = { 51.9, 25.7, 14, 120 }, + [4] = { 52.7, 25.4, 14, 300 }, + [5] = { 52.2, 24.5, 14, 120 }, + }, + ["lvl"] = "10-11", + }, + [3200] = "_", + [3201] = "_", + [3202] = "_", + [3203] = { + ["coords"] = { + [1] = { 42.1, 26.7, 14, 120 }, + }, + ["lvl"] = "12", + }, + [3204] = { + ["coords"] = { + [1] = { 51.9, 9.6, 14, 120 }, + }, + ["lvl"] = "14", + }, + [3205] = { + ["coords"] = { + [1] = { 67.6, 87.8, 14, 120 }, + [2] = { 80.5, 42.9, 17, 120 }, + }, + ["lvl"] = "10", + }, + [3206] = { + ["coords"] = { + [1] = { 67.1, 87.8, 14, 300 }, + [2] = { 67.2, 87.3, 14, 300 }, + [3] = { 66.9, 87.2, 14, 300 }, + [4] = { 67.6, 86.9, 14, 300 }, + [5] = { 67.1, 86.8, 14, 300 }, + [6] = { 65.9, 86.7, 14, 300 }, + [7] = { 67.2, 86.6, 14, 300 }, + [8] = { 68.6, 84.4, 14, 300 }, + [9] = { 68.5, 83.5, 14, 300 }, + [10] = { 65.9, 82.8, 14, 300 }, + [11] = { 67.4, 82.6, 14, 300 }, + [12] = { 68.4, 82.4, 14, 300 }, + [13] = { 67.8, 82.1, 14, 300 }, + [14] = { 80.2, 42.9, 17, 300 }, + [15] = { 80.3, 42.7, 17, 300 }, + [16] = { 80.1, 42.6, 17, 300 }, + [17] = { 80.5, 42.4, 17, 300 }, + [18] = { 80.2, 42.4, 17, 300 }, + [19] = { 79.6, 42.3, 17, 300 }, + [20] = { 80.3, 42.3, 17, 300 }, + [21] = { 81, 41.1, 17, 300 }, + [22] = { 81, 40.7, 17, 300 }, + }, + ["lvl"] = "8-9", + }, + [3207] = { + ["coords"] = { + [1] = { 67.3, 88.7, 14, 300 }, + [2] = { 66.5, 87.8, 14, 300 }, + [3] = { 68.5, 86.8, 14, 300 }, + [4] = { 66.5, 86.7, 14, 300 }, + [5] = { 67.1, 85.9, 14, 300 }, + [6] = { 67.9, 85.9, 14, 300 }, + [7] = { 67.1, 85, 14, 300 }, + [8] = { 65.9, 84, 14, 300 }, + [9] = { 68.2, 83.8, 14, 300 }, + [10] = { 67.7, 83.7, 14, 300 }, + [11] = { 68.8, 83.6, 14, 300 }, + [12] = { 68.1, 83.5, 14, 300 }, + [13] = { 67.7, 83.5, 14, 300 }, + [14] = { 68.3, 83.2, 14, 300 }, + [15] = { 66.6, 83, 14, 300 }, + [16] = { 80.4, 43.4, 17, 300 }, + [17] = { 80, 42.9, 17, 300 }, + [18] = { 81, 42.4, 17, 300 }, + [19] = { 80, 42.4, 17, 300 }, + [20] = { 80.3, 41.9, 17, 300 }, + [21] = { 80.7, 41.9, 17, 300 }, + [22] = { 80.3, 41.4, 17, 300 }, + [23] = { 79.6, 40.9, 17, 300 }, + [24] = { 80.8, 40.8, 17, 300 }, + [25] = { 80.6, 40.8, 17, 300 }, + [26] = { 81.1, 40.7, 17, 300 }, + [27] = { 80.8, 40.7, 17, 300 }, + [28] = { 80.6, 40.7, 17, 300 }, + [29] = { 80.9, 40.5, 17, 300 }, + }, + ["lvl"] = "8-9", + }, + [3208] = { + ["coords"] = { + [1] = { 56.4, 20, 14, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "18", + }, + [3209] = { + ["coords"] = { + [1] = { 44.5, 76.5, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [3212] = { + ["coords"] = { + [1] = { 46.8, 59.3, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [3215] = { + ["coords"] = { + [1] = { 48.5, 56.8, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [3216] = { + ["coords"] = { + [1] = { 49.5, 50.6, 1637, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "37", + }, + [3217] = { + ["coords"] = { + [1] = { 50.8, 60.9, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [3218] = { + ["coords"] = { + [1] = { 49.7, 57.1, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [3219] = { + ["coords"] = { + [1] = { 51.1, 58.6, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [3220] = { + ["coords"] = { + [1] = { 48, 54.8, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [3221] = { + ["coords"] = { + [1] = { 50.6, 63.3, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [3222] = { + ["coords"] = { + [1] = { 47.5, 60.7, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [3223] = { + ["coords"] = { + [1] = { 48, 63.6, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [3224] = { + ["coords"] = { + [1] = { 45.9, 58.2, 215, 375 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [3231] = { + ["coords"] = { + [1] = { 34.3, 52.7, 14, 120 }, + [2] = { 34.5, 25.9, 14, 120 }, + [3] = { 63.1, 24.6, 17, 120 }, + [4] = { 63.3, 10.6, 17, 120 }, + }, + ["lvl"] = "11-12", + }, + [3233] = { + ["coords"] = { + [1] = { 36, 40.9, 17, 30 }, + [2] = { 59.9, 25.6, 215, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "8", + }, + [3238] = { + ["coords"] = { + [1] = { 28.2, 51, 15, 413 }, + [2] = { 47.1, 82.3, 17, 413 }, + [3] = { 48, 81.3, 17, 413 }, + [4] = { 47.8, 80.4, 17, 413 }, + [5] = { 50.1, 80.4, 17, 413 }, + [6] = { 49.6, 80.1, 17, 413 }, + [7] = { 46.5, 79.8, 17, 413 }, + [8] = { 49.4, 79.3, 17, 413 }, + [9] = { 44.6, 79.2, 17, 413 }, + [10] = { 46.5, 79.1, 17, 413 }, + [11] = { 49.1, 78.6, 17, 413 }, + [12] = { 44.5, 78.5, 17, 413 }, + [13] = { 43.2, 78.4, 17, 413 }, + [14] = { 46.8, 77.5, 17, 413 }, + [15] = { 46.3, 77.2, 17, 413 }, + [16] = { 49, 77, 17, 413 }, + [17] = { 44.7, 76.9, 17, 413 }, + [18] = { 45.2, 76.8, 17, 413 }, + [19] = { 44.2, 76.5, 17, 413 }, + [20] = { 48.7, 76.5, 17, 413 }, + [21] = { 48.1, 76.4, 17, 413 }, + [22] = { 49.2, 76.2, 17, 413 }, + [23] = { 48.4, 75.9, 17, 413 }, + [24] = { 47.8, 75.9, 17, 413 }, + [25] = { 44.1, 75.8, 17, 413 }, + [26] = { 43.6, 75.8, 17, 413 }, + [27] = { 44.7, 75.6, 17, 413 }, + [28] = { 48.4, 75.4, 17, 413 }, + [29] = { 47.4, 75.4, 17, 413 }, + [30] = { 49, 74.9, 17, 413 }, + [31] = { 45.5, 74.9, 17, 413 }, + [32] = { 47.1, 74.7, 17, 413 }, + [33] = { 48.4, 74.6, 17, 413 }, + [34] = { 46.8, 74.5, 17, 413 }, + [35] = { 44.5, 74.2, 17, 413 }, + [36] = { 44.8, 74, 17, 413 }, + [37] = { 43.8, 73.9, 17, 413 }, + [38] = { 48, 73.9, 17, 413 }, + [39] = { 48.5, 73.7, 17, 413 }, + [40] = { 46.8, 73, 17, 413 }, + [41] = { 46.8, 72.5, 17, 413 }, + }, + ["lvl"] = "22-23", + }, + [3239] = { + ["coords"] = { + [1] = { 46.5, 69, 17, 413 }, + [2] = { 45.8, 69, 17, 413 }, + [3] = { 46.7, 68.5, 17, 413 }, + [4] = { 45.4, 67.8, 17, 413 }, + [5] = { 45.7, 67, 17, 413 }, + [6] = { 47.1, 67, 17, 413 }, + [7] = { 47.4, 66.7, 17, 413 }, + [8] = { 45.2, 66.6, 17, 413 }, + [9] = { 46, 66.6, 17, 413 }, + [10] = { 45.8, 66.4, 17, 413 }, + [11] = { 47.1, 65.1, 17, 413 }, + [12] = { 45.2, 64.9, 17, 413 }, + [13] = { 47.8, 64.1, 17, 413 }, + [14] = { 48.2, 64.1, 17, 413 }, + [15] = { 44.4, 64, 17, 413 }, + [16] = { 46.2, 63.9, 17, 413 }, + [17] = { 46.5, 63.6, 17, 413 }, + [18] = { 45.7, 63.6, 17, 413 }, + [19] = { 45.4, 63.2, 17, 413 }, + [20] = { 48, 63.2, 17, 413 }, + [21] = { 44.5, 63.1, 17, 413 }, + [22] = { 47.1, 63, 17, 413 }, + [23] = { 49.4, 62.6, 17, 413 }, + [24] = { 48.4, 62.4, 17, 413 }, + [25] = { 43.8, 62.3, 17, 413 }, + [26] = { 43.5, 62.2, 17, 413 }, + [27] = { 47, 62, 17, 413 }, + [28] = { 49.3, 62, 17, 413 }, + [29] = { 46.4, 61.9, 17, 413 }, + [30] = { 49.1, 61.7, 17, 413 }, + [31] = { 48.9, 61.2, 17, 413 }, + [32] = { 44.1, 61.2, 17, 413 }, + [33] = { 42.8, 61.1, 17, 413 }, + [34] = { 50, 61.1, 17, 413 }, + [35] = { 48.5, 61, 17, 413 }, + [36] = { 47.5, 60.9, 17, 413 }, + [37] = { 48.1, 60.9, 17, 413 }, + [38] = { 43.8, 60.6, 17, 413 }, + [39] = { 48.8, 60.5, 17, 413 }, + [40] = { 43, 60.5, 17, 413 }, + [41] = { 50.4, 60.3, 17, 413 }, + [42] = { 42.5, 60.2, 17, 413 }, + [43] = { 48.3, 59.9, 17, 413 }, + [44] = { 50.2, 59.8, 17, 413 }, + [45] = { 49, 59.7, 17, 413 }, + [46] = { 49.5, 59.5, 17, 413 }, + [47] = { 48.5, 59.5, 17, 413 }, + [48] = { 49, 59, 17, 413 }, + [49] = { 48.1, 58.4, 17, 413 }, + [50] = { 48.5, 57.9, 17, 413 }, + [51] = { 48.1, 57.8, 17, 413 }, + [52] = { 73.2, 65.6, 215, 413 }, + [53] = { 72.7, 63.7, 215, 413 }, + }, + ["lvl"] = "20-21", + }, + [3240] = { + ["coords"] = { + [1] = { 49.8, 59.2, 17, 413 }, + [2] = { 50.1, 59.1, 17, 413 }, + [3] = { 49.8, 58.1, 17, 413 }, + [4] = { 42.2, 57.7, 17, 413 }, + [5] = { 42.2, 57.5, 17, 413 }, + [6] = { 52.3, 57.1, 17, 413 }, + [7] = { 45.8, 57.1, 17, 413 }, + [8] = { 48.3, 57, 17, 413 }, + [9] = { 48.8, 56.7, 17, 413 }, + [10] = { 52.8, 56.6, 17, 413 }, + [11] = { 48.1, 56.6, 17, 413 }, + [12] = { 52.3, 56.5, 17, 413 }, + [13] = { 45.3, 56.3, 17, 413 }, + [14] = { 46.7, 56.2, 17, 413 }, + [15] = { 49.1, 56.2, 17, 413 }, + [16] = { 46.3, 56.1, 17, 413 }, + [17] = { 49.7, 56, 17, 413 }, + [18] = { 46.8, 55.8, 17, 413 }, + [19] = { 52.8, 55.8, 17, 413 }, + [20] = { 45.5, 55.7, 17, 413 }, + [21] = { 48.7, 55.6, 17, 413 }, + [22] = { 52.6, 55.2, 17, 413 }, + [23] = { 48.8, 55.2, 17, 413 }, + [24] = { 53.1, 55.1, 17, 413 }, + [25] = { 49.6, 54.4, 17, 413 }, + [26] = { 50.1, 54.3, 17, 413 }, + [27] = { 52.3, 54.2, 17, 413 }, + [28] = { 49.4, 53.7, 17, 413 }, + [29] = { 50, 53.4, 17, 413 }, + [30] = { 44.2, 53.4, 17, 413 }, + [31] = { 51, 53, 17, 413 }, + [32] = { 50.5, 52.8, 17, 413 }, + [33] = { 50.1, 52.7, 17, 413 }, + [34] = { 45.4, 52.2, 17, 413 }, + [35] = { 47.7, 51.8, 17, 413 }, + [36] = { 48.9, 51.7, 17, 413 }, + [37] = { 48.9, 51.4, 17, 413 }, + [38] = { 47, 51.1, 17, 413 }, + [39] = { 46.4, 50.8, 17, 413 }, + [40] = { 48.9, 50.8, 17, 413 }, + [41] = { 47.3, 50.3, 17, 413 }, + [42] = { 46.1, 49.8, 17, 413 }, + [43] = { 43.5, 49.8, 17, 413 }, + [44] = { 44.7, 49.4, 17, 413 }, + [45] = { 43.5, 49.2, 17, 413 }, + [46] = { 47.5, 49.2, 17, 413 }, + [47] = { 42.2, 48.7, 17, 413 }, + [48] = { 46.4, 48.5, 17, 413 }, + [49] = { 47.1, 48.3, 17, 413 }, + [50] = { 45.1, 48.2, 17, 413 }, + [51] = { 45.3, 47.9, 17, 413 }, + [52] = { 44.5, 47.8, 17, 413 }, + [53] = { 46.8, 47.8, 17, 413 }, + [54] = { 44.7, 47.8, 17, 413 }, + [55] = { 45.7, 47.8, 17, 413 }, + [56] = { 44.5, 47.5, 17, 413 }, + [57] = { 47.3, 47.1, 17, 413 }, + [58] = { 42.9, 46.9, 17, 413 }, + [59] = { 44.5, 46.8, 17, 413 }, + [60] = { 47.4, 46.8, 17, 413 }, + [61] = { 43.7, 46.5, 17, 413 }, + [62] = { 46.4, 46.3, 17, 413 }, + [63] = { 43.2, 46.3, 17, 413 }, + [64] = { 42.6, 46.3, 17, 413 }, + [65] = { 42.2, 45.8, 17, 413 }, + [66] = { 45.4, 45.7, 17, 413 }, + [67] = { 45.2, 45.3, 17, 413 }, + [68] = { 44.5, 44.9, 17, 413 }, + [69] = { 46.2, 44.8, 17, 413 }, + [70] = { 43.7, 44.4, 17, 413 }, + [71] = { 72.1, 58.8, 215, 413 }, + [72] = { 72.1, 58.4, 215, 413 }, + }, + ["lvl"] = "18-19", + }, + [3242] = { + ["coords"] = { + [1] = { 52.7, 39.4, 17, 413 }, + [2] = { 53.3, 39, 17, 413 }, + [3] = { 55.6, 38.8, 17, 413 }, + [4] = { 52.9, 38.6, 17, 413 }, + [5] = { 48.6, 38.4, 17, 413 }, + [6] = { 47.8, 38.4, 17, 413 }, + [7] = { 48.8, 38.3, 17, 413 }, + [8] = { 54.4, 38.3, 17, 413 }, + [9] = { 55, 38.2, 17, 413 }, + [10] = { 50, 37.9, 17, 413 }, + [11] = { 49.4, 37.9, 17, 413 }, + [12] = { 51.2, 37.9, 17, 413 }, + [13] = { 52.1, 37.9, 17, 413 }, + [14] = { 54.6, 37.9, 17, 413 }, + [15] = { 47.4, 37.9, 17, 413 }, + [16] = { 50.9, 37.8, 17, 413 }, + [17] = { 51.7, 37.8, 17, 413 }, + [18] = { 48.6, 37.7, 17, 413 }, + [19] = { 52.8, 37.6, 17, 413 }, + [20] = { 49, 37.6, 17, 413 }, + [21] = { 54, 37.5, 17, 413 }, + [22] = { 49.5, 37.4, 17, 413 }, + [23] = { 53, 37.4, 17, 413 }, + [24] = { 49.4, 37.3, 17, 413 }, + [25] = { 51.4, 37, 17, 413 }, + [26] = { 48.4, 36.8, 17, 413 }, + [27] = { 53.3, 36.8, 17, 413 }, + [28] = { 52, 36.8, 17, 413 }, + [29] = { 51.8, 36.5, 17, 413 }, + [30] = { 47.3, 36.5, 17, 413 }, + [31] = { 49.7, 36.4, 17, 413 }, + [32] = { 49.3, 36.4, 17, 413 }, + [33] = { 52.4, 36.4, 17, 413 }, + [34] = { 50.2, 36.3, 17, 413 }, + [35] = { 53.3, 36, 17, 413 }, + [36] = { 48.7, 35.9, 17, 413 }, + [37] = { 50.7, 35.8, 17, 413 }, + [38] = { 51.8, 35.6, 17, 413 }, + [39] = { 53.4, 35.5, 17, 413 }, + [40] = { 55.3, 35.5, 17, 413 }, + [41] = { 44.6, 35.3, 17, 413 }, + [42] = { 52.5, 35.2, 17, 413 }, + [43] = { 54.3, 35.1, 17, 413 }, + [44] = { 55.9, 35.1, 17, 413 }, + [45] = { 56.7, 34.9, 17, 413 }, + [46] = { 52.1, 34.9, 17, 413 }, + [47] = { 52.7, 34.8, 17, 413 }, + [48] = { 56.6, 34.6, 17, 413 }, + [49] = { 64.5, 34.6, 17, 413 }, + [50] = { 55.8, 34.4, 17, 413 }, + [51] = { 50.8, 34.1, 17, 413 }, + [52] = { 54.7, 34.1, 17, 413 }, + [53] = { 64.7, 34, 17, 413 }, + [54] = { 56.7, 33.9, 17, 413 }, + [55] = { 56, 33.6, 17, 413 }, + [56] = { 44.4, 33.5, 17, 413 }, + [57] = { 43.8, 33.5, 17, 413 }, + [58] = { 44.7, 33.1, 17, 413 }, + [59] = { 54, 33, 17, 413 }, + [60] = { 64.4, 32.9, 17, 413 }, + [61] = { 44.4, 32.8, 17, 413 }, + [62] = { 56.3, 32.6, 17, 413 }, + [63] = { 43.5, 32.2, 17, 413 }, + [64] = { 63.6, 31.5, 17, 413 }, + [65] = { 45.2, 31.2, 17, 413 }, + [66] = { 43.4, 31, 17, 413 }, + [67] = { 46.1, 31, 17, 413 }, + [68] = { 45.8, 30.4, 17, 413 }, + [69] = { 45.5, 30.2, 17, 413 }, + [70] = { 45.7, 29.7, 17, 413 }, + [71] = { 46.3, 29.6, 17, 413 }, + [72] = { 43.5, 29, 17, 413 }, + [73] = { 43.1, 28.9, 17, 413 }, + [74] = { 44, 28.8, 17, 413 }, + [75] = { 47.1, 28.6, 17, 413 }, + [76] = { 43.8, 28.5, 17, 413 }, + [77] = { 43.2, 28.1, 17, 413 }, + [78] = { 44.3, 28, 17, 413 }, + [79] = { 45.6, 27.6, 17, 413 }, + [80] = { 46.4, 27.5, 17, 413 }, + [81] = { 47, 27.4, 17, 413 }, + [82] = { 43.3, 27.4, 17, 413 }, + [83] = { 46.7, 27, 17, 413 }, + [84] = { 42.8, 26.8, 17, 413 }, + [85] = { 46.4, 26.8, 17, 413 }, + [86] = { 45.8, 26.6, 17, 413 }, + [87] = { 44.5, 26.6, 17, 413 }, + [88] = { 43.9, 26.2, 17, 413 }, + [89] = { 42.8, 26.1, 17, 413 }, + [90] = { 47.4, 26, 17, 413 }, + [91] = { 42.2, 25.9, 17, 413 }, + [92] = { 43.2, 25.7, 17, 413 }, + [93] = { 46.4, 25.6, 17, 413 }, + [94] = { 45.2, 25.6, 17, 413 }, + [95] = { 44.8, 25.3, 17, 413 }, + [96] = { 46.8, 25.2, 17, 413 }, + [97] = { 42.8, 24.3, 17, 413 }, + [98] = { 42.5, 23.7, 17, 413 }, + [99] = { 61.3, 23.5, 17, 413 }, + [100] = { 42.2, 23.5, 17, 413 }, + [101] = { 56.7, 23.1, 17, 413 }, + [102] = { 61.9, 23.1, 17, 413 }, + [103] = { 62.4, 22.5, 17, 413 }, + [104] = { 60.1, 22.5, 17, 413 }, + [105] = { 60.3, 22.1, 17, 413 }, + [106] = { 61.7, 22.1, 17, 413 }, + [107] = { 61.4, 21.8, 17, 413 }, + [108] = { 59.6, 21.7, 17, 413 }, + [109] = { 55.7, 21.7, 17, 413 }, + [110] = { 54.8, 21.7, 17, 413 }, + [111] = { 57, 21.7, 17, 413 }, + [112] = { 56.3, 21.7, 17, 413 }, + [113] = { 62.2, 21.6, 17, 413 }, + [114] = { 60.9, 21.6, 17, 413 }, + [115] = { 59, 21.5, 17, 413 }, + [116] = { 56.2, 21.2, 17, 413 }, + [117] = { 58, 21.2, 17, 413 }, + [118] = { 57.9, 20.8, 17, 413 }, + [119] = { 58.6, 20.4, 17, 413 }, + [120] = { 52.8, 20.3, 17, 413 }, + [121] = { 59.3, 20.3, 17, 413 }, + [122] = { 57.1, 20.2, 17, 413 }, + [123] = { 58.2, 20.1, 17, 413 }, + [124] = { 56.9, 19.8, 17, 413 }, + [125] = { 58, 19.8, 17, 413 }, + [126] = { 53, 19.6, 17, 413 }, + [127] = { 57, 19.1, 17, 413 }, + [128] = { 61.5, 18.7, 17, 413 }, + [129] = { 62.3, 18.5, 17, 413 }, + [130] = { 52.5, 18.2, 17, 413 }, + [131] = { 61.5, 17.8, 17, 413 }, + [132] = { 52.7, 17.7, 17, 413 }, + [133] = { 52.7, 17.6, 17, 413 }, + [134] = { 52.2, 17.6, 17, 413 }, + [135] = { 53.3, 17.2, 17, 413 }, + [136] = { 52, 17.1, 17, 413 }, + [137] = { 53.1, 17, 17, 413 }, + [138] = { 53.8, 16.7, 17, 413 }, + [139] = { 52.4, 16.3, 17, 413 }, + [140] = { 52.3, 16.1, 17, 413 }, + [141] = { 52.3, 15.5, 17, 413 }, + [142] = { 51.4, 14.7, 17, 413 }, + [143] = { 52.4, 14.5, 17, 413 }, + [144] = { 49.4, 13.3, 17, 413 }, + [145] = { 51.7, 13.1, 17, 413 }, + [146] = { 50.7, 12.7, 17, 413 }, + [147] = { 51.2, 12.6, 17, 413 }, + [148] = { 47, 95, 718, 413 }, + [149] = { 89.9, 94.5, 718, 413 }, + [150] = { 83, 94, 718, 413 }, + [151] = { 98.9, 92.7, 718, 413 }, + [152] = { 71.9, 85.4, 718, 413 }, + [153] = { 0.3, 34.7, 718, 413 }, + [154] = { 9.9, 2.5, 718, 413 }, + }, + ["lvl"] = "13-14", + }, + [3243] = { + ["coords"] = { + [1] = { 54.9, 30.5, 17, 413 }, + [2] = { 55.3, 30.3, 17, 413 }, + [3] = { 51.7, 26.2, 17, 413 }, + [4] = { 50.7, 20.6, 17, 413 }, + [5] = { 49.6, 16.1, 17, 413 }, + [6] = { 50.1, 15.8, 17, 413 }, + }, + ["lvl"] = "12-13", + }, + [3244] = { + ["coords"] = { + [1] = { 52.9, 33.6, 17, 413 }, + [2] = { 50.4, 33.4, 17, 413 }, + [3] = { 50.8, 33.3, 17, 413 }, + [4] = { 53, 33, 17, 413 }, + [5] = { 51.2, 32.9, 17, 413 }, + [6] = { 53.7, 32.9, 17, 413 }, + [7] = { 53.4, 32.6, 17, 413 }, + [8] = { 53.3, 32.4, 17, 413 }, + [9] = { 53, 32.3, 17, 413 }, + [10] = { 54.6, 32.1, 17, 413 }, + [11] = { 51, 31.8, 17, 413 }, + [12] = { 53.1, 31.5, 17, 413 }, + [13] = { 50.3, 31, 17, 413 }, + [14] = { 49.1, 30.6, 17, 413 }, + [15] = { 50.3, 30.6, 17, 413 }, + [16] = { 53.3, 30.6, 17, 413 }, + [17] = { 53.6, 30.5, 17, 413 }, + [18] = { 53.1, 30.4, 17, 413 }, + [19] = { 49.6, 30.3, 17, 413 }, + [20] = { 49.4, 29.8, 17, 413 }, + [21] = { 53.6, 29.5, 17, 413 }, + [22] = { 49.1, 29.5, 17, 413 }, + [23] = { 48.6, 29.1, 17, 413 }, + [24] = { 53.3, 29.1, 17, 413 }, + [25] = { 53.9, 29, 17, 413 }, + [26] = { 48.2, 28.6, 17, 413 }, + [27] = { 53.9, 28.5, 17, 413 }, + [28] = { 52.8, 28.2, 17, 413 }, + [29] = { 51.4, 28, 17, 413 }, + [30] = { 54, 28, 17, 413 }, + [31] = { 50.7, 27.8, 17, 413 }, + [32] = { 47.8, 27.6, 17, 413 }, + [33] = { 51, 27.6, 17, 413 }, + [34] = { 51.7, 27.6, 17, 413 }, + [35] = { 48.1, 27.1, 17, 413 }, + [36] = { 52, 27.1, 17, 413 }, + [37] = { 52.6, 27, 17, 413 }, + [38] = { 53, 26.6, 17, 413 }, + [39] = { 48.6, 26.5, 17, 413 }, + [40] = { 52.7, 26.1, 17, 413 }, + [41] = { 52.7, 25.6, 17, 413 }, + [42] = { 48.5, 25.6, 17, 413 }, + [43] = { 47.8, 25.6, 17, 413 }, + [44] = { 55.5, 25.1, 17, 413 }, + [45] = { 48.7, 25, 17, 413 }, + [46] = { 48.7, 24.7, 17, 413 }, + [47] = { 55.4, 24.3, 17, 413 }, + [48] = { 49.4, 24.3, 17, 413 }, + [49] = { 49, 24, 17, 413 }, + [50] = { 55.9, 24, 17, 413 }, + [51] = { 53, 23.7, 17, 413 }, + [52] = { 48.8, 23.6, 17, 413 }, + [53] = { 54, 23.6, 17, 413 }, + [54] = { 48.5, 23.5, 17, 413 }, + [55] = { 54.7, 23.4, 17, 413 }, + [56] = { 51.7, 23.1, 17, 413 }, + [57] = { 54, 23.1, 17, 413 }, + [58] = { 51.3, 23, 17, 413 }, + [59] = { 48.7, 23, 17, 413 }, + [60] = { 49.3, 22.8, 17, 413 }, + [61] = { 49.1, 22.8, 17, 413 }, + [62] = { 52.9, 22.7, 17, 413 }, + [63] = { 51.9, 22.4, 17, 413 }, + [64] = { 53.3, 22.2, 17, 413 }, + [65] = { 51.4, 22.1, 17, 413 }, + [66] = { 54.1, 22, 17, 413 }, + [67] = { 52.4, 21.7, 17, 413 }, + [68] = { 52.8, 21.7, 17, 413 }, + [69] = { 51.6, 21.6, 17, 413 }, + [70] = { 52.2, 21, 17, 413 }, + [71] = { 52.1, 20.3, 17, 413 }, + [72] = { 51.8, 19.7, 17, 413 }, + [73] = { 50.9, 19.5, 17, 413 }, + [74] = { 51.4, 19.4, 17, 413 }, + [75] = { 51, 18.7, 17, 413 }, + [76] = { 51.7, 18.6, 17, 413 }, + [77] = { 51.3, 18.1, 17, 413 }, + [78] = { 51.1, 17.7, 17, 413 }, + [79] = { 51.2, 17.3, 17, 413 }, + [80] = { 51.2, 16.9, 17, 413 }, + [81] = { 51, 15.6, 17, 413 }, + [82] = { 50.7, 15.3, 17, 413 }, + [83] = { 48.1, 15.2, 17, 413 }, + [84] = { 47.3, 14.9, 17, 413 }, + [85] = { 47.8, 14.6, 17, 413 }, + [86] = { 48, 14.3, 17, 413 }, + [87] = { 49.3, 14.3, 17, 413 }, + [88] = { 50.7, 14.2, 17, 413 }, + [89] = { 47.3, 14.1, 17, 413 }, + [90] = { 50.4, 13.9, 17, 413 }, + [91] = { 49.8, 13.8, 17, 413 }, + [92] = { 47.6, 13.8, 17, 413 }, + [93] = { 48.6, 13.7, 17, 413 }, + }, + ["lvl"] = "11-12", + }, + [3245] = { + ["coords"] = { + [1] = { 59.6, 53.4, 17, 413 }, + [2] = { 55, 52.6, 17, 413 }, + [3] = { 54.2, 52.4, 17, 413 }, + [4] = { 56, 52.3, 17, 413 }, + [5] = { 59.5, 52.3, 17, 413 }, + [6] = { 57.1, 52.2, 17, 413 }, + [7] = { 58.3, 51.8, 17, 413 }, + [8] = { 58, 51.8, 17, 413 }, + [9] = { 53.7, 51.8, 17, 413 }, + [10] = { 54.4, 51.4, 17, 413 }, + [11] = { 55.5, 51.2, 17, 413 }, + [12] = { 55.4, 50.8, 17, 413 }, + [13] = { 54.3, 50.7, 17, 413 }, + [14] = { 54.6, 50.4, 17, 413 }, + [15] = { 59, 50.1, 17, 413 }, + [16] = { 49.7, 50.1, 17, 413 }, + [17] = { 48.8, 49.8, 17, 413 }, + [18] = { 54.7, 49.7, 17, 413 }, + [19] = { 50.2, 49.7, 17, 413 }, + [20] = { 55.1, 49.4, 17, 413 }, + [21] = { 56.2, 49.4, 17, 413 }, + [22] = { 59.3, 49.3, 17, 413 }, + [23] = { 62, 49.2, 17, 413 }, + [24] = { 53.6, 48.9, 17, 413 }, + [25] = { 61, 48.9, 17, 413 }, + [26] = { 49.4, 48.8, 17, 413 }, + [27] = { 53.4, 48.8, 17, 413 }, + [28] = { 53.8, 48.4, 17, 413 }, + [29] = { 49.7, 48.4, 17, 413 }, + [30] = { 49, 48.4, 17, 413 }, + [31] = { 56, 48.3, 17, 413 }, + [32] = { 55.9, 48.3, 17, 413 }, + [33] = { 54.3, 48, 17, 413 }, + [34] = { 61.3, 47.8, 17, 413 }, + [35] = { 53.5, 47.8, 17, 413 }, + [36] = { 55.3, 47.8, 17, 413 }, + [37] = { 52.8, 47.7, 17, 413 }, + [38] = { 49.7, 47.4, 17, 413 }, + [39] = { 51.7, 47.4, 17, 413 }, + [40] = { 49.1, 47.4, 17, 413 }, + [41] = { 55.6, 47.3, 17, 413 }, + [42] = { 50.5, 47.2, 17, 413 }, + [43] = { 52.6, 47.1, 17, 413 }, + [44] = { 49.8, 46.3, 17, 413 }, + [45] = { 47.1, 44.9, 17, 413 }, + [46] = { 47.6, 44.1, 17, 413 }, + [47] = { 45.8, 43.3, 17, 413 }, + [48] = { 60.9, 34.5, 17, 413 }, + [49] = { 60.5, 33.9, 17, 413 }, + [50] = { 59.5, 33.5, 17, 413 }, + [51] = { 59.9, 33.2, 17, 413 }, + [52] = { 61.1, 33, 17, 413 }, + [53] = { 59.3, 32.5, 17, 413 }, + [54] = { 60.7, 32, 17, 413 }, + [55] = { 59.6, 31.6, 17, 413 }, + [56] = { 61.2, 30.7, 17, 413 }, + [57] = { 38, 27.9, 17, 413 }, + [58] = { 37.2, 27.4, 17, 413 }, + [59] = { 38, 26.6, 17, 413 }, + [60] = { 38.3, 26.1, 17, 413 }, + [61] = { 38.8, 25, 17, 413 }, + [62] = { 39.9, 24.7, 17, 413 }, + [63] = { 44.1, 17.2, 17, 413 }, + [64] = { 45.5, 17.1, 17, 413 }, + [65] = { 42.1, 16, 17, 413 }, + [66] = { 45.4, 15.8, 17, 413 }, + [67] = { 44.5, 15.5, 17, 413 }, + [68] = { 45.3, 15.4, 17, 413 }, + [69] = { 42.1, 15.3, 17, 413 }, + [70] = { 44.2, 15.3, 17, 413 }, + [71] = { 44.6, 14.8, 17, 413 }, + [72] = { 43.3, 14.8, 17, 413 }, + [73] = { 45.7, 14.6, 17, 413 }, + [74] = { 44.6, 13.7, 17, 413 }, + [75] = { 45, 13.6, 17, 413 }, + [76] = { 45.2, 13.4, 17, 413 }, + [77] = { 48, 13.2, 17, 413 }, + [78] = { 61.4, 13.2, 17, 413 }, + [79] = { 46.8, 13.2, 17, 413 }, + [80] = { 46.7, 12.3, 17, 413 }, + [81] = { 60.9, 11, 17, 413 }, + [82] = { 60.8, 9.8, 17, 413 }, + [83] = { 60, 8.5, 17, 413 }, + [84] = { 58.3, 7.9, 17, 413 }, + [85] = { 59.6, 7.8, 17, 413 }, + [86] = { 59.1, 6.7, 17, 413 }, + [87] = { 57.3, 6.4, 17, 413 }, + [88] = { 56, 6.2, 17, 413 }, + [89] = { 56, 5.3, 17, 413 }, + [90] = { 86, 92.5, 406, 413 }, + [91] = { 84.7, 91.8, 406, 413 }, + [92] = { 86, 90.5, 406, 413 }, + [93] = { 86.5, 89.5, 406, 413 }, + [94] = { 87.4, 87.7, 406, 413 }, + [95] = { 89.2, 87.2, 406, 413 }, + }, + ["lvl"] = "16-17", + }, + [3246] = { + ["coords"] = { + [1] = { 35.8, 63.2, 14, 413 }, + [2] = { 35.1, 60.3, 14, 413 }, + [3] = { 49.2, 38.9, 17, 413 }, + [4] = { 48.2, 38.5, 17, 413 }, + [5] = { 54.7, 38.5, 17, 413 }, + [6] = { 49.8, 38.1, 17, 413 }, + [7] = { 47.7, 38, 17, 413 }, + [8] = { 48.1, 37.9, 17, 413 }, + [9] = { 47, 37.7, 17, 413 }, + [10] = { 53.3, 37.4, 17, 413 }, + [11] = { 48.3, 37.1, 17, 413 }, + [12] = { 48.8, 37, 17, 413 }, + [13] = { 52.4, 37, 17, 413 }, + [14] = { 50, 36.6, 17, 413 }, + [15] = { 54.4, 36.4, 17, 413 }, + [16] = { 44.9, 35.9, 17, 413 }, + [17] = { 49.4, 35.9, 17, 413 }, + [18] = { 63.9, 35.9, 17, 413 }, + [19] = { 50.1, 35.9, 17, 413 }, + [20] = { 64, 35.6, 17, 413 }, + [21] = { 51.1, 35.6, 17, 413 }, + [22] = { 52, 35.5, 17, 413 }, + [23] = { 54.3, 35.5, 17, 413 }, + [24] = { 54.7, 35.5, 17, 413 }, + [25] = { 53, 35.2, 17, 413 }, + [26] = { 44.6, 35.1, 17, 413 }, + [27] = { 54.4, 35, 17, 413 }, + [28] = { 51.1, 35, 17, 413 }, + [29] = { 54.2, 34.8, 17, 413 }, + [30] = { 50.9, 34.7, 17, 413 }, + [31] = { 47.6, 34.6, 17, 413 }, + [32] = { 43.9, 34.6, 17, 413 }, + [33] = { 56.8, 34.5, 17, 413 }, + [34] = { 44.9, 34.5, 17, 413 }, + [35] = { 53, 34.3, 17, 413 }, + [36] = { 46.7, 34.2, 17, 413 }, + [37] = { 47.8, 34.1, 17, 413 }, + [38] = { 44.7, 34, 17, 413 }, + [39] = { 54.3, 33.5, 17, 413 }, + [40] = { 46.7, 33.4, 17, 413 }, + [41] = { 56.1, 33, 17, 413 }, + [42] = { 47.7, 33, 17, 413 }, + [43] = { 43.2, 33, 17, 413 }, + [44] = { 49.1, 32.8, 17, 413 }, + [45] = { 45.8, 32.8, 17, 413 }, + [46] = { 46.7, 32.6, 17, 413 }, + [47] = { 47.6, 32.5, 17, 413 }, + [48] = { 44.9, 32.5, 17, 413 }, + [49] = { 63.9, 32.1, 17, 413 }, + [50] = { 48.8, 32, 17, 413 }, + [51] = { 56, 31.9, 17, 413 }, + [52] = { 58.3, 31.9, 17, 413 }, + [53] = { 63.8, 31.9, 17, 413 }, + [54] = { 43.8, 31.9, 17, 413 }, + [55] = { 44.9, 31.8, 17, 413 }, + [56] = { 48.7, 31.7, 17, 413 }, + [57] = { 47.5, 31.6, 17, 413 }, + [58] = { 57, 31.5, 17, 413 }, + [59] = { 43.1, 31.4, 17, 413 }, + [60] = { 57.7, 31.3, 17, 413 }, + [61] = { 48, 31.2, 17, 413 }, + [62] = { 57.3, 31.1, 17, 413 }, + [63] = { 63.5, 31.1, 17, 413 }, + [64] = { 56.6, 31.1, 17, 413 }, + [65] = { 58, 31, 17, 413 }, + [66] = { 46, 30.9, 17, 413 }, + [67] = { 46.3, 30.8, 17, 413 }, + [68] = { 57.6, 30.5, 17, 413 }, + [69] = { 56.9, 30.5, 17, 413 }, + [70] = { 56.4, 30.2, 17, 413 }, + [71] = { 46.2, 30.1, 17, 413 }, + [72] = { 63.9, 30.1, 17, 413 }, + [73] = { 42.6, 29.9, 17, 413 }, + [74] = { 57.7, 29.9, 17, 413 }, + [75] = { 57.3, 29.8, 17, 413 }, + [76] = { 47.5, 29.8, 17, 413 }, + [77] = { 55.7, 29.6, 17, 413 }, + [78] = { 63.6, 29.6, 17, 413 }, + [79] = { 56.8, 29.5, 17, 413 }, + [80] = { 57.3, 29.1, 17, 413 }, + [81] = { 56.7, 29.1, 17, 413 }, + [82] = { 58, 28.8, 17, 413 }, + [83] = { 46.4, 28.6, 17, 413 }, + [84] = { 56.3, 28.6, 17, 413 }, + [85] = { 57.6, 28.6, 17, 413 }, + [86] = { 63.6, 28.6, 17, 413 }, + [87] = { 57.1, 28.4, 17, 413 }, + [88] = { 56.6, 28, 17, 413 }, + [89] = { 57.6, 27.7, 17, 413 }, + [90] = { 57, 27.6, 17, 413 }, + [91] = { 46.2, 27.3, 17, 413 }, + [92] = { 57.2, 27, 17, 413 }, + [93] = { 45.1, 26.7, 17, 413 }, + [94] = { 56.9, 26.7, 17, 413 }, + [95] = { 47.1, 26.6, 17, 413 }, + [96] = { 58, 26.1, 17, 413 }, + [97] = { 46.8, 26.1, 17, 413 }, + [98] = { 44.2, 25.5, 17, 413 }, + [99] = { 42.6, 25.1, 17, 413 }, + [100] = { 44.8, 25.1, 17, 413 }, + [101] = { 43.6, 24.8, 17, 413 }, + [102] = { 46.7, 24.4, 17, 413 }, + [103] = { 57.6, 23.4, 17, 413 }, + [104] = { 60.2, 23, 17, 413 }, + [105] = { 56.8, 22.7, 17, 413 }, + [106] = { 55.8, 22.7, 17, 413 }, + [107] = { 61.5, 22.5, 17, 413 }, + [108] = { 60.9, 22.4, 17, 413 }, + [109] = { 50.1, 21.8, 17, 413 }, + [110] = { 47, 21.7, 17, 413 }, + [111] = { 47.9, 21.6, 17, 413 }, + [112] = { 48.8, 21.5, 17, 413 }, + [113] = { 47.6, 21.3, 17, 413 }, + [114] = { 49.6, 21.1, 17, 413 }, + [115] = { 56.6, 21.1, 17, 413 }, + [116] = { 52.7, 21.1, 17, 413 }, + [117] = { 57.4, 21.1, 17, 413 }, + [118] = { 57.1, 20.8, 17, 413 }, + [119] = { 46.7, 20.8, 17, 413 }, + [120] = { 58.3, 20.8, 17, 413 }, + [121] = { 49.4, 20.7, 17, 413 }, + [122] = { 59.2, 20.7, 17, 413 }, + [123] = { 48.7, 20.6, 17, 413 }, + [124] = { 48.1, 20.6, 17, 413 }, + [125] = { 49.8, 20.4, 17, 413 }, + [126] = { 47.8, 20.2, 17, 413 }, + [127] = { 49.1, 20.2, 17, 413 }, + [128] = { 48.4, 20.1, 17, 413 }, + [129] = { 48.8, 19.7, 17, 413 }, + [130] = { 48.2, 19.6, 17, 413 }, + [131] = { 46.2, 19.4, 17, 413 }, + [132] = { 46.7, 19.3, 17, 413 }, + [133] = { 49.5, 19.3, 17, 413 }, + [134] = { 48.4, 19.2, 17, 413 }, + [135] = { 53, 18.8, 17, 413 }, + [136] = { 48.4, 18.2, 17, 413 }, + [137] = { 49.5, 18.2, 17, 413 }, + [138] = { 49.1, 17.6, 17, 413 }, + [139] = { 49.9, 17.5, 17, 413 }, + [140] = { 48.4, 17.3, 17, 413 }, + [141] = { 52.6, 16.2, 17, 413 }, + [142] = { 48.6, 15.8, 17, 413 }, + [143] = { 52.3, 15.2, 17, 413 }, + [144] = { 51.9, 14.8, 17, 413 }, + [145] = { 51.2, 13.3, 17, 413 }, + [146] = { 50.3, 13.2, 17, 413 }, + [147] = { 50.7, 12.6, 17, 413 }, + [148] = { 95.6, 98.2, 718, 413 }, + [149] = { 4.3, 85.1, 718, 413 }, + [150] = { 84.1, 84.8, 718, 413 }, + [151] = { 96.1, 84.3, 718, 413 }, + [152] = { 52.2, 62.2, 718, 413 }, + [153] = { 4.3, 59.5, 718, 413 }, + [154] = { 36.8, 54.2, 718, 413 }, + [155] = { 55, 54, 718, 413 }, + [156] = { 0.7, 50.8, 718, 413 }, + [157] = { 36.7, 40, 718, 413 }, + [158] = { 54.8, 34.2, 718, 413 }, + [159] = { 79.3, 30.9, 718, 413 }, + [160] = { 20.6, 30.3, 718, 413 }, + [161] = { 37, 27.4, 718, 413 }, + [162] = { 52.6, 25.3, 718, 413 }, + [163] = { 3.9, 24.8, 718, 413 }, + [164] = { 73.8, 16.5, 718, 413 }, + [165] = { 3.8, 13.2, 718, 413 }, + [166] = { 72.6, 11.1, 718, 413 }, + [167] = { 50.7, 8.9, 718, 413 }, + [168] = { 59.3, 0.9, 718, 413 }, + }, + ["lvl"] = "12-13", + }, + [3250] = { + ["coords"] = { + [1] = { 26.9, 29.7, 15, 413 }, + [2] = { 43.8, 73, 17, 413 }, + [3] = { 44.9, 72.6, 17, 413 }, + [4] = { 42.5, 72.1, 17, 413 }, + [5] = { 43.7, 72, 17, 413 }, + [6] = { 45.2, 72, 17, 413 }, + [7] = { 44.7, 71.6, 17, 413 }, + [8] = { 42.9, 71.4, 17, 413 }, + [9] = { 47.3, 71.3, 17, 413 }, + [10] = { 43.7, 71.1, 17, 413 }, + [11] = { 42.5, 71.1, 17, 413 }, + [12] = { 47.3, 70.5, 17, 413 }, + [13] = { 48.1, 70.4, 17, 413 }, + [14] = { 48.7, 70.2, 17, 413 }, + [15] = { 45.2, 70.2, 17, 413 }, + [16] = { 47.1, 70, 17, 413 }, + [17] = { 43.9, 70, 17, 413 }, + [18] = { 42.5, 69.9, 17, 413 }, + [19] = { 45.4, 69.5, 17, 413 }, + [20] = { 44.2, 69.5, 17, 413 }, + [21] = { 48.1, 69.5, 17, 413 }, + [22] = { 45.4, 69.4, 17, 413 }, + [23] = { 42.1, 69.4, 17, 413 }, + [24] = { 49.4, 69.3, 17, 413 }, + [25] = { 43.2, 69.2, 17, 413 }, + [26] = { 49.1, 69.1, 17, 413 }, + [27] = { 71.9, 81.8, 215, 413 }, + }, + ["lvl"] = "20-21", + }, + [3252] = { + ["coords"] = { + [1] = { 26.5, 30.9, 15, 413 }, + [2] = { 43.8, 72.7, 17, 413 }, + [3] = { 45.6, 72.6, 17, 413 }, + [4] = { 42.7, 72.6, 17, 413 }, + [5] = { 45.4, 72.6, 17, 413 }, + [6] = { 43.1, 71.9, 17, 413 }, + [7] = { 44.6, 71.9, 17, 413 }, + [8] = { 42.1, 71.7, 17, 413 }, + [9] = { 48.2, 71.6, 17, 413 }, + [10] = { 42.8, 71.1, 17, 413 }, + [11] = { 43.1, 70.9, 17, 413 }, + [12] = { 48.5, 70.9, 17, 413 }, + [13] = { 47.6, 70.9, 17, 413 }, + [14] = { 48.5, 70.8, 17, 413 }, + [15] = { 42.8, 70.6, 17, 413 }, + [16] = { 43.5, 70.5, 17, 413 }, + [17] = { 42.2, 70.5, 17, 413 }, + [18] = { 42.6, 70.1, 17, 413 }, + [19] = { 47.7, 70.1, 17, 413 }, + [20] = { 48.4, 70, 17, 413 }, + [21] = { 49.1, 70, 17, 413 }, + [22] = { 49.2, 70, 17, 413 }, + [23] = { 44.9, 69.7, 17, 413 }, + [24] = { 48.8, 69.5, 17, 413 }, + [25] = { 43.5, 69.4, 17, 413 }, + [26] = { 42.8, 69.4, 17, 413 }, + [27] = { 44, 69.3, 17, 413 }, + [28] = { 41.9, 69, 17, 413 }, + [29] = { 45.1, 68.9, 17, 413 }, + [30] = { 72, 84, 215, 413 }, + [31] = { 71.4, 81.1, 215, 413 }, + }, + ["lvl"] = "21-22", + }, + [3253] = { + ["coords"] = { + [1] = { 43.1, 70.1, 17, 5277 }, + }, + ["lvl"] = "24", + ["rnk"] = "2", + }, + [3255] = { + ["coords"] = { + [1] = { 60.3, 47.1, 17, 413 }, + [2] = { 61.7, 46.9, 17, 413 }, + [3] = { 59.6, 46.8, 17, 413 }, + [4] = { 53, 46.8, 17, 413 }, + [5] = { 58.9, 46.8, 17, 413 }, + [6] = { 60.9, 46.5, 17, 413 }, + [7] = { 51.9, 46.5, 17, 413 }, + [8] = { 59.3, 46.4, 17, 413 }, + [9] = { 60, 46.3, 17, 413 }, + [10] = { 58.7, 46.3, 17, 413 }, + [11] = { 53.5, 46.2, 17, 413 }, + [12] = { 54.7, 46.1, 17, 413 }, + [13] = { 58.9, 45.9, 17, 413 }, + [14] = { 58.2, 45.9, 17, 413 }, + [15] = { 59.6, 45.8, 17, 413 }, + [16] = { 58.6, 45.4, 17, 413 }, + [17] = { 59.3, 45.4, 17, 413 }, + [18] = { 59.9, 45.3, 17, 413 }, + [19] = { 50.1, 45.3, 17, 413 }, + [20] = { 59.6, 44.9, 17, 413 }, + [21] = { 60.4, 44.8, 17, 413 }, + [22] = { 60, 44.4, 17, 413 }, + [23] = { 55.7, 44.4, 17, 413 }, + [24] = { 53.6, 44.4, 17, 413 }, + [25] = { 55, 44.4, 17, 413 }, + [26] = { 59.3, 44.3, 17, 413 }, + [27] = { 51.7, 44.2, 17, 413 }, + [28] = { 58.3, 44.1, 17, 413 }, + [29] = { 59.8, 43.9, 17, 413 }, + [30] = { 52.1, 43.9, 17, 413 }, + [31] = { 60.5, 43.7, 17, 413 }, + [32] = { 58.8, 43.4, 17, 413 }, + [33] = { 52.9, 43.4, 17, 413 }, + [34] = { 51.1, 43.3, 17, 413 }, + [35] = { 52.8, 43, 17, 413 }, + [36] = { 60, 42.9, 17, 413 }, + [37] = { 59, 42.7, 17, 413 }, + [38] = { 57.6, 42.3, 17, 413 }, + [39] = { 48.8, 41.7, 17, 413 }, + [40] = { 44.2, 41.5, 17, 413 }, + [41] = { 61.5, 41.3, 17, 413 }, + [42] = { 44.4, 41.2, 17, 413 }, + [43] = { 54.4, 41, 17, 413 }, + [44] = { 43.8, 40.9, 17, 413 }, + [45] = { 54, 40.9, 17, 413 }, + [46] = { 54.2, 40.8, 17, 413 }, + [47] = { 43.5, 40.7, 17, 413 }, + [48] = { 44.5, 40.7, 17, 413 }, + [49] = { 57.3, 40.5, 17, 413 }, + [50] = { 55.9, 40.1, 17, 413 }, + [51] = { 50.8, 40, 17, 413 }, + [52] = { 58.8, 39.9, 17, 413 }, + [53] = { 57.3, 39.9, 17, 413 }, + [54] = { 54.8, 39.6, 17, 413 }, + [55] = { 49.7, 39.4, 17, 413 }, + [56] = { 56.2, 39.2, 17, 413 }, + [57] = { 50, 39, 17, 413 }, + [58] = { 56, 38.8, 17, 413 }, + [59] = { 42.6, 38.5, 17, 413 }, + [60] = { 57.6, 38.4, 17, 413 }, + [61] = { 42.8, 38.1, 17, 413 }, + [62] = { 57.9, 37.1, 17, 413 }, + [63] = { 57.7, 36.9, 17, 413 }, + [64] = { 57.1, 36.4, 17, 413 }, + [65] = { 57.4, 36.2, 17, 413 }, + [66] = { 53.7, 35.9, 17, 413 }, + [67] = { 52.2, 35.9, 17, 413 }, + [68] = { 54.6, 35.9, 17, 413 }, + [69] = { 57.2, 35.7, 17, 413 }, + [70] = { 60, 35.6, 17, 413 }, + [71] = { 56.4, 35, 17, 413 }, + [72] = { 44.2, 34.6, 17, 413 }, + [73] = { 58.8, 34.5, 17, 413 }, + [74] = { 53.3, 34.4, 17, 413 }, + [75] = { 58.5, 34.4, 17, 413 }, + [76] = { 41.9, 34.2, 17, 413 }, + [77] = { 43.3, 34.1, 17, 413 }, + [78] = { 42.2, 34, 17, 413 }, + [79] = { 56, 33.6, 17, 413 }, + [80] = { 43.3, 33.5, 17, 413 }, + [81] = { 58.6, 33.5, 17, 413 }, + [82] = { 44.7, 33.4, 17, 413 }, + [83] = { 41.8, 32.9, 17, 413 }, + [84] = { 39.8, 31.5, 17, 413 }, + [85] = { 42.5, 30.5, 17, 413 }, + [86] = { 45.6, 30.3, 17, 413 }, + [87] = { 60.7, 29.6, 17, 413 }, + [88] = { 60.1, 29.6, 17, 413 }, + [89] = { 41.8, 29.6, 17, 413 }, + [90] = { 40.5, 29, 17, 413 }, + [91] = { 60.3, 28.5, 17, 413 }, + [92] = { 44.3, 26.1, 17, 413 }, + [93] = { 62.3, 25.9, 17, 413 }, + [94] = { 42.9, 25.6, 17, 413 }, + [95] = { 41.9, 25.6, 17, 413 }, + [96] = { 41.4, 25.1, 17, 413 }, + [97] = { 40.3, 25, 17, 413 }, + [98] = { 40.2, 24.1, 17, 413 }, + [99] = { 41.2, 23.6, 17, 413 }, + [100] = { 60.8, 23.3, 17, 413 }, + [101] = { 61.9, 23.1, 17, 413 }, + [102] = { 41.1, 22.6, 17, 413 }, + [103] = { 60.5, 22.1, 17, 413 }, + [104] = { 55.4, 21.2, 17, 413 }, + [105] = { 41.9, 20.6, 17, 413 }, + [106] = { 58, 20.5, 17, 413 }, + [107] = { 40.7, 20.2, 17, 413 }, + [108] = { 41.5, 20.1, 17, 413 }, + [109] = { 43.8, 19.8, 17, 413 }, + [110] = { 44.1, 19.8, 17, 413 }, + [111] = { 43.5, 19.7, 17, 413 }, + [112] = { 53.1, 19.4, 17, 413 }, + [113] = { 44.4, 18.8, 17, 413 }, + [114] = { 43.8, 18.7, 17, 413 }, + [115] = { 44.2, 18.3, 17, 413 }, + [116] = { 60.2, 17.9, 17, 413 }, + [117] = { 58.9, 17.7, 17, 413 }, + [118] = { 59.5, 17.7, 17, 413 }, + [119] = { 59.9, 17.4, 17, 413 }, + [120] = { 57.6, 17.4, 17, 413 }, + [121] = { 53.3, 17, 17, 413 }, + [122] = { 56.3, 16.8, 17, 413 }, + [123] = { 60.6, 16.7, 17, 413 }, + [124] = { 54.3, 16.2, 17, 413 }, + [125] = { 54.7, 16.2, 17, 413 }, + [126] = { 59.2, 16, 17, 413 }, + [127] = { 54.9, 15.5, 17, 413 }, + [128] = { 56.6, 15.4, 17, 413 }, + [129] = { 59.5, 15.1, 17, 413 }, + [130] = { 60.4, 14.9, 17, 413 }, + [131] = { 57.6, 14.8, 17, 413 }, + [132] = { 53.3, 14.7, 17, 413 }, + [133] = { 58.4, 14.3, 17, 413 }, + [134] = { 58.9, 14.2, 17, 413 }, + [135] = { 60.2, 14.1, 17, 413 }, + [136] = { 59.7, 14.1, 17, 413 }, + [137] = { 55.9, 14.1, 17, 413 }, + [138] = { 55, 13.9, 17, 413 }, + [139] = { 58, 13.8, 17, 413 }, + [140] = { 58.6, 13.7, 17, 413 }, + [141] = { 59.4, 13.7, 17, 413 }, + [142] = { 58.2, 13.3, 17, 413 }, + [143] = { 53, 13.3, 17, 413 }, + [144] = { 52.6, 13.1, 17, 413 }, + [145] = { 50.3, 13.1, 17, 413 }, + [146] = { 59.2, 12.9, 17, 413 }, + [147] = { 58, 12.8, 17, 413 }, + [148] = { 53, 12.8, 17, 413 }, + [149] = { 54.4, 12.8, 17, 413 }, + [150] = { 57.3, 12.7, 17, 413 }, + [151] = { 58.3, 12.3, 17, 413 }, + [152] = { 57.7, 12.3, 17, 413 }, + [153] = { 56.9, 11.9, 17, 413 }, + [154] = { 53.3, 11.9, 17, 413 }, + [155] = { 60.2, 11.9, 17, 413 }, + [156] = { 58, 11.5, 17, 413 }, + [157] = { 56.3, 11.3, 17, 413 }, + [158] = { 54.7, 11.3, 17, 413 }, + [159] = { 58.9, 10.7, 17, 413 }, + [160] = { 59.5, 10.6, 17, 413 }, + [161] = { 55, 10.3, 17, 413 }, + [162] = { 57.2, 10.2, 17, 413 }, + [163] = { 54.1, 10.1, 17, 413 }, + [164] = { 56.4, 9.9, 17, 413 }, + [165] = { 55.2, 9.4, 17, 413 }, + [166] = { 54.7, 9.2, 17, 413 }, + [167] = { 54.6, 8.4, 17, 413 }, + [168] = { 55, 7.8, 17, 413 }, + [169] = { 63.6, 6, 17, 413 }, + [170] = { 1.9, 40.9, 718, 413 }, + }, + ["lvl"] = "13-15", + }, + [3256] = { + ["coords"] = { + [1] = { 57, 54.5, 17, 413 }, + [2] = { 57.1, 54.4, 17, 413 }, + [3] = { 57.7, 54.1, 17, 413 }, + [4] = { 58, 54, 17, 413 }, + [5] = { 57.9, 53.9, 17, 413 }, + [6] = { 58, 53.9, 17, 413 }, + [7] = { 57.4, 53.8, 17, 413 }, + [8] = { 57.3, 53.7, 17, 413 }, + [9] = { 57.1, 53.4, 17, 413 }, + [10] = { 57, 53, 17, 413 }, + [11] = { 57.1, 52.9, 17, 413 }, + [12] = { 57.1, 52, 17, 413 }, + [13] = { 55.8, 51.9, 17, 413 }, + [14] = { 57.1, 51.9, 17, 413 }, + [15] = { 50.7, 51.8, 17, 413 }, + [16] = { 53, 51.2, 17, 413 }, + [17] = { 49.4, 51.2, 17, 413 }, + [18] = { 55.7, 50.8, 17, 413 }, + [19] = { 51.5, 50.8, 17, 413 }, + [20] = { 51.8, 50.7, 17, 413 }, + [21] = { 60.3, 50.4, 17, 413 }, + [22] = { 48.1, 50.3, 17, 413 }, + [23] = { 58.3, 50, 17, 413 }, + [24] = { 60.9, 50, 17, 413 }, + [25] = { 60.9, 49.9, 17, 413 }, + [26] = { 49.3, 49.6, 17, 413 }, + [27] = { 54.3, 49.4, 17, 413 }, + [28] = { 51.8, 49.4, 17, 413 }, + [29] = { 56.7, 49, 17, 413 }, + [30] = { 48.8, 48.7, 17, 413 }, + [31] = { 53, 48.3, 17, 413 }, + [32] = { 51.9, 48, 17, 413 }, + [33] = { 56.7, 47.4, 17, 413 }, + [34] = { 48.3, 47.4, 17, 413 }, + [35] = { 48.2, 46.8, 17, 413 }, + [36] = { 50.2, 46.7, 17, 413 }, + [37] = { 52.4, 46.6, 17, 413 }, + [38] = { 52.1, 46.6, 17, 413 }, + [39] = { 52.6, 46.3, 17, 413 }, + [40] = { 50.4, 46.1, 17, 413 }, + [41] = { 52.7, 46.1, 17, 413 }, + [42] = { 52.6, 46, 17, 413 }, + [43] = { 47.7, 45.8, 17, 413 }, + [44] = { 50.1, 45.7, 17, 413 }, + [45] = { 45.1, 44.4, 17, 413 }, + [46] = { 44.4, 44.3, 17, 413 }, + [47] = { 46.3, 44.1, 17, 413 }, + [48] = { 46, 43.8, 17, 413 }, + [49] = { 44.4, 43.8, 17, 413 }, + [50] = { 43.9, 43.4, 17, 413 }, + [51] = { 47.1, 43.4, 17, 413 }, + [52] = { 47.8, 43.2, 17, 413 }, + [53] = { 44.5, 43, 17, 413 }, + [54] = { 61.2, 34, 17, 413 }, + [55] = { 60.8, 33.4, 17, 413 }, + [56] = { 60.3, 32.2, 17, 413 }, + [57] = { 61, 32, 17, 413 }, + [58] = { 60, 32, 17, 413 }, + [59] = { 61.3, 31, 17, 413 }, + [60] = { 60.3, 30.5, 17, 413 }, + [61] = { 36.2, 28.8, 17, 413 }, + [62] = { 37.6, 27.5, 17, 413 }, + [63] = { 37.3, 26.8, 17, 413 }, + [64] = { 36.7, 26.4, 17, 413 }, + [65] = { 39.3, 25.6, 17, 413 }, + [66] = { 44.1, 16.6, 17, 413 }, + [67] = { 43.8, 16.2, 17, 413 }, + [68] = { 42.5, 15.6, 17, 413 }, + [69] = { 46.1, 15.3, 17, 413 }, + [70] = { 46.4, 15, 17, 413 }, + [71] = { 43.5, 15, 17, 413 }, + [72] = { 45.5, 14.7, 17, 413 }, + [73] = { 44.1, 14.4, 17, 413 }, + [74] = { 44.7, 14.3, 17, 413 }, + [75] = { 47.7, 12.9, 17, 413 }, + [76] = { 60.8, 12.7, 17, 413 }, + [77] = { 48.2, 11.3, 17, 413 }, + [78] = { 59.9, 8.8, 17, 413 }, + [79] = { 60.4, 8.8, 17, 413 }, + [80] = { 57.9, 8.2, 17, 413 }, + [81] = { 59.9, 7.5, 17, 413 }, + [82] = { 59.2, 7.4, 17, 413 }, + [83] = { 58.3, 7.4, 17, 413 }, + [84] = { 59, 6.3, 17, 413 }, + [85] = { 59.3, 6.2, 17, 413 }, + [86] = { 57.7, 6.2, 17, 413 }, + [87] = { 55.7, 5.7, 17, 413 }, + [88] = { 56.6, 4.3, 17, 413 }, + [89] = { 83, 94.1, 406, 413 }, + [90] = { 85.3, 91.9, 406, 413 }, + [91] = { 84.8, 90.7, 406, 413 }, + [92] = { 83.8, 90.1, 406, 413 }, + [93] = { 88.2, 88.8, 406, 413 }, + }, + ["lvl"] = "16-18", + }, + [3258] = { + ["coords"] = { + [1] = { 51.3, 57.5, 17, 413 }, + [2] = { 51.3, 55.8, 17, 413 }, + [3] = { 42.9, 55.7, 17, 413 }, + [4] = { 51.2, 55.6, 17, 413 }, + [5] = { 43.2, 55.2, 17, 413 }, + [6] = { 50.7, 55.2, 17, 413 }, + [7] = { 43.6, 55, 17, 413 }, + [8] = { 42.9, 54.9, 17, 413 }, + [9] = { 51.2, 54.9, 17, 413 }, + [10] = { 51.6, 54.7, 17, 413 }, + [11] = { 45.1, 54.7, 17, 413 }, + [12] = { 52, 54.5, 17, 413 }, + [13] = { 45.4, 54.3, 17, 413 }, + [14] = { 46.7, 54.3, 17, 413 }, + [15] = { 46.8, 54.3, 17, 413 }, + [16] = { 51.1, 54.2, 17, 413 }, + [17] = { 45.1, 54.2, 17, 413 }, + [18] = { 45.7, 54.1, 17, 413 }, + [19] = { 46.6, 53.9, 17, 413 }, + [20] = { 45.3, 53.9, 17, 413 }, + [21] = { 52.1, 53.9, 17, 413 }, + [22] = { 44.9, 53.7, 17, 413 }, + [23] = { 47.1, 53.6, 17, 413 }, + [24] = { 47.1, 53.3, 17, 413 }, + [25] = { 46.9, 53.1, 17, 413 }, + [26] = { 47.4, 52.6, 17, 413 }, + [27] = { 43.5, 52.6, 17, 413 }, + [28] = { 43.2, 52.4, 17, 413 }, + [29] = { 44.5, 52.3, 17, 413 }, + [30] = { 43.3, 52.2, 17, 413 }, + [31] = { 43.5, 52.1, 17, 413 }, + [32] = { 43.1, 51.9, 17, 413 }, + [33] = { 44.5, 51.8, 17, 413 }, + [34] = { 43.6, 51.8, 17, 413 }, + [35] = { 44.8, 51.7, 17, 413 }, + [36] = { 44.1, 51.7, 17, 413 }, + [37] = { 44.6, 51.6, 17, 413 }, + [38] = { 42.8, 51.6, 17, 413 }, + [39] = { 44.9, 51.4, 17, 413 }, + [40] = { 44.7, 51.3, 17, 413 }, + [41] = { 45.4, 51.2, 17, 413 }, + [42] = { 43.2, 48.9, 17, 413 }, + [43] = { 43.4, 48.8, 17, 413 }, + [44] = { 43.3, 48.5, 17, 413 }, + [45] = { 42.9, 48.4, 17, 413 }, + [46] = { 43.6, 48.3, 17, 413 }, + [47] = { 43, 47.9, 17, 413 }, + [48] = { 43.7, 47.9, 17, 413 }, + [49] = { 43.2, 47.7, 17, 413 }, + [50] = { 43.2, 47.3, 17, 413 }, + [51] = { 43.5, 47.3, 17, 413 }, + [52] = { 41.5, 46.4, 17, 413 }, + [53] = { 40.8, 45.9, 17, 413 }, + [54] = { 41.2, 45.8, 17, 413 }, + [55] = { 40.6, 45.8, 17, 413 }, + [56] = { 40.6, 45.4, 17, 413 }, + [57] = { 40.8, 45.3, 17, 413 }, + [58] = { 41, 44.9, 17, 413 }, + [59] = { 41.3, 44.9, 17, 413 }, + [60] = { 41.4, 44.4, 17, 413 }, + }, + ["lvl"] = "17-18", + }, + [3259] = "_", + [3260] = { + ["coords"] = { + [1] = { 51.2, 57.9, 17, 413 }, + [2] = { 51.4, 57.6, 17, 413 }, + [3] = { 51.1, 57.4, 17, 413 }, + [4] = { 43.2, 55.7, 17, 413 }, + [5] = { 45.1, 55.3, 17, 413 }, + [6] = { 42.9, 55.2, 17, 413 }, + [7] = { 43.5, 55.2, 17, 413 }, + [8] = { 51.1, 55.1, 17, 413 }, + [9] = { 43.1, 54.9, 17, 413 }, + [10] = { 45.5, 54.8, 17, 413 }, + [11] = { 51.4, 54.8, 17, 413 }, + [12] = { 43.5, 54.7, 17, 413 }, + [13] = { 45.7, 54.7, 17, 413 }, + [14] = { 51.1, 54.7, 17, 413 }, + [15] = { 44.8, 54.2, 17, 413 }, + [16] = { 46.5, 54.2, 17, 413 }, + [17] = { 45.3, 54.2, 17, 413 }, + [18] = { 45.4, 54, 17, 413 }, + [19] = { 53.7, 54, 17, 413 }, + [20] = { 46.8, 53.8, 17, 413 }, + [21] = { 45.5, 53.8, 17, 413 }, + [22] = { 47.2, 53.7, 17, 413 }, + [23] = { 45.1, 53.7, 17, 413 }, + [24] = { 46.5, 53.7, 17, 413 }, + [25] = { 53.4, 53.5, 17, 413 }, + [26] = { 46.9, 53.4, 17, 413 }, + [27] = { 46.4, 53.3, 17, 413 }, + [28] = { 47.3, 53.2, 17, 413 }, + [29] = { 47.7, 52.8, 17, 413 }, + [30] = { 47.1, 52.7, 17, 413 }, + [31] = { 52.6, 52.7, 17, 413 }, + [32] = { 52.6, 52.1, 17, 413 }, + }, + ["lvl"] = "16-17", + }, + [3261] = { + ["coords"] = { + [1] = { 50.4, 57.7, 17, 413 }, + [2] = { 51.7, 57.7, 17, 413 }, + [3] = { 51.7, 57.2, 17, 413 }, + [4] = { 50.4, 57.1, 17, 413 }, + [5] = { 50.7, 56.8, 17, 413 }, + [6] = { 51.4, 56.6, 17, 413 }, + [7] = { 51, 55.8, 17, 413 }, + [8] = { 51.7, 55.2, 17, 413 }, + [9] = { 51.3, 55.2, 17, 413 }, + [10] = { 53.1, 54.8, 17, 413 }, + [11] = { 50.7, 54.7, 17, 413 }, + [12] = { 53.4, 54.2, 17, 413 }, + [13] = { 51.3, 54.2, 17, 413 }, + [14] = { 52.6, 53.8, 17, 413 }, + [15] = { 53, 53.7, 17, 413 }, + [16] = { 52.4, 53.7, 17, 413 }, + [17] = { 53, 53.2, 17, 413 }, + [18] = { 53.1, 52.8, 17, 413 }, + [19] = { 53.4, 52.8, 17, 413 }, + [20] = { 43.3, 52.5, 17, 413 }, + [21] = { 43, 52.3, 17, 413 }, + [22] = { 53, 51.7, 17, 413 }, + [23] = { 45.2, 51.7, 17, 413 }, + [24] = { 45.5, 51.6, 17, 413 }, + [25] = { 43.4, 51.6, 17, 413 }, + [26] = { 44.9, 51.6, 17, 413 }, + [27] = { 44.8, 51.5, 17, 413 }, + [28] = { 45, 51.3, 17, 413 }, + [29] = { 44, 51.3, 17, 413 }, + }, + ["lvl"] = "18-19", + }, + [3262] = "_", + [3263] = { + ["coords"] = { + [1] = { 31.8, 7.2, 15, 413 }, + [2] = { 51.5, 57.9, 17, 413 }, + [3] = { 52, 57.7, 17, 413 }, + [4] = { 51.2, 57.6, 17, 413 }, + [5] = { 50.8, 57.5, 17, 413 }, + [6] = { 51.4, 57.2, 17, 413 }, + [7] = { 50.8, 57.1, 17, 413 }, + [8] = { 51, 56.6, 17, 413 }, + [9] = { 53.4, 54.5, 17, 413 }, + [10] = { 53.6, 54.3, 17, 413 }, + [11] = { 53, 54.2, 17, 413 }, + [12] = { 53.4, 53.9, 17, 413 }, + [13] = { 53.6, 53.5, 17, 413 }, + [14] = { 52.7, 53.2, 17, 413 }, + [15] = { 53.3, 53.2, 17, 413 }, + [16] = { 52.4, 53, 17, 413 }, + [17] = { 52.6, 52.4, 17, 413 }, + [18] = { 53, 52.3, 17, 413 }, + [19] = { 52.8, 52.1, 17, 413 }, + [20] = { 42.8, 48.7, 17, 413 }, + [21] = { 43.8, 48.2, 17, 413 }, + [22] = { 43.5, 48.1, 17, 413 }, + [23] = { 43.3, 48, 17, 413 }, + [24] = { 42.8, 47.8, 17, 413 }, + [25] = { 43.4, 47.7, 17, 413 }, + [26] = { 43.1, 46.9, 17, 413 }, + [27] = { 42.5, 46.7, 17, 413 }, + [28] = { 41.1, 46.2, 17, 413 }, + [29] = { 41.4, 45.8, 17, 413 }, + [30] = { 40.8, 45.5, 17, 413 }, + [31] = { 40.4, 45.4, 17, 413 }, + [32] = { 41.1, 45.2, 17, 413 }, + [33] = { 40.9, 45.2, 17, 413 }, + [34] = { 41.6, 44.9, 17, 413 }, + [35] = { 40.9, 44.8, 17, 413 }, + }, + ["lvl"] = "19-20", + }, + [3266] = { + ["coords"] = { + [1] = { 59.3, 27.6, 17, 413 }, + [2] = { 58.9, 27.4, 17, 413 }, + [3] = { 58.8, 27, 17, 413 }, + [4] = { 59.3, 27, 17, 413 }, + [5] = { 58.3, 26.6, 17, 413 }, + [6] = { 58.9, 26.6, 17, 413 }, + [7] = { 58.7, 26.2, 17, 413 }, + [8] = { 59.3, 25.6, 17, 413 }, + [9] = { 57.2, 25.5, 17, 413 }, + [10] = { 57.2, 25.4, 17, 413 }, + [11] = { 59.3, 25.3, 17, 413 }, + [12] = { 57.1, 25.2, 17, 413 }, + [13] = { 57.6, 25.1, 17, 413 }, + [14] = { 57.3, 25.1, 17, 413 }, + [15] = { 58.9, 25, 17, 413 }, + [16] = { 58, 24.7, 17, 413 }, + [17] = { 56.7, 24.6, 17, 413 }, + [18] = { 59.4, 24.6, 17, 413 }, + [19] = { 59.6, 24.5, 17, 413 }, + [20] = { 59.1, 24.5, 17, 413 }, + [21] = { 59.6, 24.3, 17, 413 }, + [22] = { 59.3, 24, 17, 413 }, + }, + ["lvl"] = "12-13", + }, + [3267] = { + ["coords"] = { + [1] = { 55.7, 27.3, 17, 240 }, + [2] = { 55.9, 27.2, 17, 240 }, + [3] = { 55.4, 27, 17, 240 }, + [4] = { 55, 27, 17, 240 }, + [5] = { 55.5, 26.9, 17, 240 }, + [6] = { 54.9, 26.7, 17, 240 }, + [7] = { 55.8, 26.7, 17, 240 }, + [8] = { 55.4, 26.6, 17, 240 }, + [9] = { 54, 26.1, 17, 240 }, + [10] = { 54.4, 25.9, 17, 240 }, + [11] = { 55.5, 25.7, 17, 240 }, + [12] = { 53.7, 25.7, 17, 240 }, + [13] = { 54.3, 25.6, 17, 240 }, + [14] = { 54, 25.2, 17, 240 }, + [15] = { 53, 25.1, 17, 240 }, + [16] = { 54.4, 25, 17, 240 }, + [17] = { 53.6, 24.5, 17, 240 }, + }, + ["lvl"] = "10-11", + }, + [3268] = { + ["coords"] = { + [1] = { 54.7, 27.1, 17, 240 }, + [2] = { 55.4, 26.9, 17, 240 }, + [3] = { 55.8, 26.9, 17, 240 }, + [4] = { 55.7, 26.6, 17, 240 }, + [5] = { 55.1, 26.6, 17, 240 }, + [6] = { 55.9, 26.3, 17, 240 }, + [7] = { 55.6, 26.2, 17, 240 }, + [8] = { 54.7, 25.6, 17, 240 }, + [9] = { 54.1, 25.5, 17, 240 }, + [10] = { 55, 25.3, 17, 240 }, + [11] = { 54.6, 25.2, 17, 240 }, + [12] = { 54.2, 25.1, 17, 240 }, + [13] = { 54.4, 24.6, 17, 240 }, + }, + ["lvl"] = "10-11", + }, + [3269] = { + ["coords"] = { + [1] = { 57.5, 25.6, 17, 413 }, + [2] = { 56.9, 25.4, 17, 413 }, + [3] = { 56.8, 25.4, 17, 413 }, + [4] = { 56.9, 25.1, 17, 413 }, + [5] = { 56.8, 25.1, 17, 413 }, + [6] = { 59.1, 25.1, 17, 413 }, + [7] = { 59.3, 24.7, 17, 413 }, + [8] = { 57.3, 24.6, 17, 413 }, + [9] = { 59.4, 24.6, 17, 413 }, + [10] = { 57, 24.5, 17, 413 }, + [11] = { 58.9, 24.5, 17, 413 }, + [12] = { 59.1, 24.2, 17, 413 }, + [13] = { 57, 24.1, 17, 413 }, + [14] = { 58.7, 24.1, 17, 413 }, + [15] = { 59.5, 24, 17, 413 }, + [16] = { 59.1, 24, 17, 413 }, + }, + ["lvl"] = "12-13", + }, + [3270] = { + ["coords"] = { + [1] = { 59.2, 24.4, 17, 9000 }, + }, + ["lvl"] = "15", + ["rnk"] = "2", + }, + [3271] = { + ["coords"] = { + [1] = { 58.7, 27.3, 17, 413 }, + [2] = { 58.5, 27.2, 17, 413 }, + [3] = { 58.3, 26.9, 17, 413 }, + [4] = { 58.6, 26.9, 17, 413 }, + [5] = { 58.6, 26.6, 17, 413 }, + [6] = { 58.4, 26.1, 17, 413 }, + }, + ["lvl"] = "13-14", + }, + [3272] = { + ["coords"] = { + [1] = { 46.8, 41.9, 17, 413 }, + [2] = { 47.4, 41.9, 17, 413 }, + [3] = { 45.6, 41.4, 17, 413 }, + [4] = { 47.4, 40.9, 17, 413 }, + [5] = { 46.1, 40.9, 17, 413 }, + [6] = { 48.1, 40.9, 17, 413 }, + [7] = { 47, 40.6, 17, 413 }, + [8] = { 48.5, 40.4, 17, 413 }, + [9] = { 45.5, 40.4, 17, 413 }, + [10] = { 48.4, 40, 17, 413 }, + [11] = { 44.7, 39.7, 17, 413 }, + [12] = { 44.7, 39.5, 17, 413 }, + [13] = { 48.8, 39.4, 17, 413 }, + [14] = { 47.7, 39.4, 17, 413 }, + [15] = { 45.4, 39.4, 17, 413 }, + [16] = { 48.7, 39.2, 17, 413 }, + [17] = { 47.5, 38.8, 17, 413 }, + [18] = { 46.8, 38.5, 17, 413 }, + [19] = { 44.5, 38.5, 17, 413 }, + [20] = { 45.8, 38.4, 17, 413 }, + [21] = { 44.5, 38, 17, 413 }, + [22] = { 46.7, 37.9, 17, 413 }, + [23] = { 44.6, 37.8, 17, 413 }, + [24] = { 45.8, 37.5, 17, 413 }, + [25] = { 46.6, 37.5, 17, 413 }, + [26] = { 54.9, 37.4, 17, 413 }, + [27] = { 53.7, 37.1, 17, 413 }, + [28] = { 53.4, 36.9, 17, 413 }, + [29] = { 53.4, 36.8, 17, 413 }, + [30] = { 53, 36.6, 17, 413 }, + [31] = { 42.3, 27.3, 17, 413 }, + [32] = { 42.3, 27, 17, 413 }, + [33] = { 43.5, 26.8, 17, 413 }, + [34] = { 42.3, 26.6, 17, 413 }, + [35] = { 43.6, 26.5, 17, 413 }, + [36] = { 43.3, 26.4, 17, 413 }, + [37] = { 43.5, 26.3, 17, 413 }, + [38] = { 45.7, 26, 17, 413 }, + [39] = { 45.7, 25.8, 17, 413 }, + [40] = { 45.7, 25.5, 17, 413 }, + [41] = { 45.9, 25.4, 17, 413 }, + [42] = { 45.5, 25.4, 17, 413 }, + [43] = { 48, 24.8, 17, 413 }, + [44] = { 42, 24.8, 17, 413 }, + [45] = { 42.4, 24.7, 17, 413 }, + [46] = { 47.5, 24.6, 17, 413 }, + [47] = { 47.9, 24.5, 17, 413 }, + [48] = { 48.3, 24.5, 17, 413 }, + [49] = { 47.7, 24.5, 17, 413 }, + [50] = { 44.7, 24.3, 17, 413 }, + [51] = { 42.6, 24.1, 17, 413 }, + [52] = { 42.4, 24.1, 17, 413 }, + [53] = { 42.8, 23.7, 17, 413 }, + [54] = { 44.4, 23.7, 17, 413 }, + [55] = { 45.5, 23.5, 17, 413 }, + [56] = { 47.2, 23.4, 17, 413 }, + [57] = { 43.6, 23.4, 17, 413 }, + [58] = { 46.6, 23.1, 17, 413 }, + [59] = { 45.6, 22.9, 17, 413 }, + [60] = { 46.6, 22.7, 17, 413 }, + [61] = { 46.2, 22.7, 17, 413 }, + [62] = { 44.4, 22.5, 17, 413 }, + [63] = { 45.5, 22.1, 17, 413 }, + [64] = { 44.3, 21.6, 17, 413 }, + [65] = { 43.8, 21.5, 17, 413 }, + [66] = { 43.7, 21.1, 17, 413 }, + [67] = { 43.4, 21, 17, 413 }, + [68] = { 44.8, 20.4, 17, 413 }, + [69] = { 45, 20.3, 17, 413 }, + [70] = { 45.1, 20, 17, 413 }, + }, + ["lvl"] = "12-13", + }, + [3273] = { + ["coords"] = { + [1] = { 47.5, 41.7, 17, 413 }, + [2] = { 45.8, 41.6, 17, 413 }, + [3] = { 57, 41.2, 17, 413 }, + [4] = { 46.7, 41, 17, 413 }, + [5] = { 48.7, 40.9, 17, 413 }, + [6] = { 47.8, 40.9, 17, 413 }, + [7] = { 56.9, 40.6, 17, 413 }, + [8] = { 45.8, 40.4, 17, 413 }, + [9] = { 53.4, 40.2, 17, 413 }, + [10] = { 53.6, 40, 17, 413 }, + [11] = { 45.4, 39.9, 17, 413 }, + [12] = { 44.8, 39.8, 17, 413 }, + [13] = { 45.1, 38.8, 17, 413 }, + [14] = { 47.2, 38.8, 17, 413 }, + [15] = { 48.9, 38.8, 17, 413 }, + [16] = { 48.1, 38.5, 17, 413 }, + [17] = { 44.1, 38.5, 17, 413 }, + [18] = { 44.8, 38.4, 17, 413 }, + [19] = { 45.8, 38, 17, 413 }, + [20] = { 45.5, 37.9, 17, 413 }, + [21] = { 44.3, 37.7, 17, 413 }, + [22] = { 47.7, 37.5, 17, 413 }, + [23] = { 47.1, 37.4, 17, 413 }, + [24] = { 54.8, 37.1, 17, 413 }, + [25] = { 46.5, 37, 17, 413 }, + [26] = { 46.1, 36.9, 17, 413 }, + [27] = { 53.1, 36.9, 17, 413 }, + [28] = { 45.4, 36.8, 17, 413 }, + [29] = { 52.8, 36.6, 17, 413 }, + [30] = { 46.8, 36.5, 17, 413 }, + [31] = { 42.2, 26.8, 17, 413 }, + [32] = { 42.1, 26.5, 17, 413 }, + [33] = { 43.6, 26.2, 17, 413 }, + [34] = { 42.2, 25.2, 17, 413 }, + [35] = { 42.1, 24.6, 17, 413 }, + [36] = { 44.7, 24.3, 17, 413 }, + [37] = { 44.8, 24.3, 17, 413 }, + [38] = { 45.5, 24.2, 17, 413 }, + [39] = { 43.2, 23.8, 17, 413 }, + [40] = { 43.5, 23.6, 17, 413 }, + [41] = { 43, 23.5, 17, 413 }, + [42] = { 47.2, 23.4, 17, 413 }, + [43] = { 43.3, 23.4, 17, 413 }, + [44] = { 44.4, 23.1, 17, 413 }, + [45] = { 46.6, 22.9, 17, 413 }, + [46] = { 45.8, 22.7, 17, 413 }, + [47] = { 44.5, 22.1, 17, 413 }, + [48] = { 44.8, 22, 17, 413 }, + [49] = { 44, 21.5, 17, 413 }, + [50] = { 43.7, 21.3, 17, 413 }, + [51] = { 45.1, 20.7, 17, 413 }, + [52] = { 44.4, 20.1, 17, 413 }, + [53] = { 45, 20, 17, 413 }, + [54] = { 44.8, 19.6, 17, 413 }, + [55] = { 37.6, 94.7, 718, 413 }, + }, + ["lvl"] = "13-14", + }, + [3276] = { + ["coords"] = { + [1] = { 40.1, 19.5, 17, 413 }, + [2] = { 40.3, 19.4, 17, 413 }, + [3] = { 41.9, 19.3, 17, 413 }, + [4] = { 41.5, 19.1, 17, 413 }, + [5] = { 41.9, 19, 17, 413 }, + [6] = { 39.9, 18.9, 17, 413 }, + [7] = { 40.2, 18.9, 17, 413 }, + [8] = { 41.4, 18.6, 17, 413 }, + [9] = { 40.9, 18.2, 17, 413 }, + [10] = { 40.4, 18.2, 17, 413 }, + [11] = { 40.9, 17.2, 17, 413 }, + [12] = { 40.7, 16.8, 17, 413 }, + [13] = { 41.2, 16.8, 17, 413 }, + [14] = { 40.2, 16.6, 17, 413 }, + [15] = { 40.6, 16.5, 17, 413 }, + [16] = { 40.6, 16.2, 17, 413 }, + [17] = { 40.8, 16.2, 17, 413 }, + [18] = { 41.2, 15.8, 17, 413 }, + [19] = { 40.9, 15.2, 17, 413 }, + [20] = { 41.5, 15.2, 17, 413 }, + [21] = { 41, 14.8, 17, 413 }, + [22] = { 40.6, 14.8, 17, 413 }, + [23] = { 41.9, 14.7, 17, 413 }, + [24] = { 41.4, 14.6, 17, 413 }, + [25] = { 41.1, 14.3, 17, 413 }, + }, + ["lvl"] = "14-15", + }, + [3277] = { + ["coords"] = { + [1] = { 40.5, 19.7, 17, 413 }, + [2] = { 41.1, 19.7, 17, 413 }, + [3] = { 40, 19.2, 17, 413 }, + [4] = { 40.2, 19.2, 17, 413 }, + [5] = { 41.6, 18.9, 17, 413 }, + [6] = { 41.2, 18.7, 17, 413 }, + [7] = { 40.1, 18.7, 17, 413 }, + [8] = { 40.5, 18.6, 17, 413 }, + [9] = { 41.8, 18.6, 17, 413 }, + [10] = { 40.3, 17.9, 17, 413 }, + [11] = { 40.5, 17.7, 17, 413 }, + [12] = { 40.6, 17, 17, 413 }, + [13] = { 41, 16.8, 17, 413 }, + [14] = { 40.5, 16.7, 17, 413 }, + [15] = { 40.4, 16.3, 17, 413 }, + [16] = { 40.5, 15.7, 17, 413 }, + [17] = { 40.1, 15.5, 17, 413 }, + [18] = { 40.2, 15.3, 17, 413 }, + [19] = { 41.2, 14.7, 17, 413 }, + [20] = { 40.9, 14.6, 17, 413 }, + }, + ["lvl"] = "15-16", + }, + [3278] = { + ["coords"] = { + [1] = { 38.8, 17.6, 17, 413 }, + [2] = { 38.5, 17.5, 17, 413 }, + [3] = { 39.2, 17.2, 17, 413 }, + [4] = { 38.6, 17.1, 17, 413 }, + [5] = { 39.5, 16.8, 17, 413 }, + [6] = { 39.8, 16.8, 17, 413 }, + [7] = { 37.9, 16.4, 17, 413 }, + [8] = { 39.6, 16.3, 17, 413 }, + [9] = { 38.6, 16.2, 17, 413 }, + [10] = { 37.2, 16.2, 17, 413 }, + [11] = { 37.8, 16, 17, 413 }, + [12] = { 38.2, 16, 17, 413 }, + [13] = { 39.8, 16, 17, 413 }, + [14] = { 40.2, 16, 17, 413 }, + [15] = { 38.3, 15.7, 17, 413 }, + [16] = { 37.3, 15.7, 17, 413 }, + [17] = { 39.2, 15.7, 17, 413 }, + [18] = { 39.7, 15.6, 17, 413 }, + [19] = { 40.3, 15.4, 17, 413 }, + [20] = { 40.1, 15.3, 17, 413 }, + [21] = { 39.5, 15.2, 17, 413 }, + [22] = { 38.2, 15.2, 17, 413 }, + [23] = { 38.5, 15.1, 17, 413 }, + [24] = { 38.8, 15.1, 17, 413 }, + [25] = { 38, 14.8, 17, 413 }, + [26] = { 39.2, 14.7, 17, 413 }, + [27] = { 38.2, 14.7, 17, 413 }, + [28] = { 39.5, 14.7, 17, 413 }, + [29] = { 38.9, 14.3, 17, 413 }, + [30] = { 38.6, 14, 17, 413 }, + [31] = { 37.9, 13.6, 17, 413 }, + [32] = { 38.2, 13.5, 17, 413 }, + [33] = { 39, 13.3, 17, 413 }, + [34] = { 39.3, 13.2, 17, 413 }, + [35] = { 39.5, 13.2, 17, 413 }, + [36] = { 38.4, 13.2, 17, 413 }, + [37] = { 38.6, 13.2, 17, 413 }, + [38] = { 38.7, 12.8, 17, 413 }, + [39] = { 38.3, 12.7, 17, 413 }, + [40] = { 38.2, 12.6, 17, 413 }, + [41] = { 39, 12.3, 17, 413 }, + [42] = { 39, 12, 17, 413 }, + [43] = { 39.9, 11.9, 17, 413 }, + [44] = { 38.7, 11.7, 17, 413 }, + [45] = { 39.6, 11.7, 17, 413 }, + [46] = { 39.3, 11, 17, 413 }, + [47] = { 38.8, 10.7, 17, 413 }, + [48] = { 39.2, 10.6, 17, 413 }, + [49] = { 84.8, 72.9, 406, 413 }, + [50] = { 84.8, 72.1, 406, 413 }, + }, + ["lvl"] = "16-17", + }, + [3279] = { + ["coords"] = { + [1] = { 38.2, 16.5, 17, 413 }, + [2] = { 37.6, 15.6, 17, 413 }, + [3] = { 85.3, 71.9, 406, 413 }, + }, + ["lvl"] = "17-18", + }, + [3280] = { + ["coords"] = { + [1] = { 38.7, 17.8, 17, 413 }, + [2] = { 38.8, 17.3, 17, 413 }, + [3] = { 38.4, 17.1, 17, 413 }, + [4] = { 38.2, 16.4, 17, 413 }, + [5] = { 37.8, 16.3, 17, 413 }, + [6] = { 38, 16.1, 17, 413 }, + [7] = { 40.8, 15.8, 17, 413 }, + [8] = { 40.5, 15.1, 17, 413 }, + [9] = { 38.1, 14.8, 17, 413 }, + [10] = { 39.1, 14.1, 17, 413 }, + [11] = { 38.8, 13.9, 17, 413 }, + [12] = { 39.3, 13.5, 17, 413 }, + [13] = { 38.5, 13.4, 17, 413 }, + [14] = { 38.2, 13.1, 17, 413 }, + [15] = { 38.5, 13.1, 17, 413 }, + [16] = { 38.8, 12.9, 17, 413 }, + [17] = { 38.9, 12.4, 17, 413 }, + [18] = { 38.9, 12, 17, 413 }, + [19] = { 39.6, 12, 17, 413 }, + [20] = { 39.2, 11.9, 17, 413 }, + [21] = { 38.3, 11.7, 17, 413 }, + [22] = { 39.2, 10.9, 17, 413 }, + [23] = { 38.8, 10.5, 17, 413 }, + }, + ["lvl"] = "17-18", + }, + [3281] = { + ["coords"] = { + [1] = { 40.5, 66.8, 14, 120 }, + [2] = { 66.4, 32, 17, 120 }, + }, + ["lvl"] = "4", + }, + [3282] = { + ["coords"] = { + [1] = { 56.4, 9.3, 17, 413 }, + [2] = { 57, 8.7, 17, 413 }, + [3] = { 56.3, 8.6, 17, 413 }, + [4] = { 56.2, 8.6, 17, 413 }, + [5] = { 56, 8.5, 17, 413 }, + [6] = { 55.9, 8.4, 17, 413 }, + [7] = { 56.5, 8.4, 17, 413 }, + [8] = { 56.2, 8.3, 17, 413 }, + [9] = { 57.4, 8.3, 17, 413 }, + [10] = { 56.3, 8.1, 17, 413 }, + [11] = { 56.1, 7.6, 17, 413 }, + [12] = { 56.5, 7.5, 17, 413 }, + [13] = { 57.1, 7.5, 17, 413 }, + [14] = { 55.8, 7.1, 17, 413 }, + [15] = { 56.3, 7.1, 17, 413 }, + }, + ["lvl"] = "15-16", + }, + [3283] = { + ["coords"] = { + [1] = { 61.9, 5.6, 17, 413 }, + [2] = { 61.4, 5.6, 17, 413 }, + [3] = { 62.2, 5.6, 17, 413 }, + [4] = { 61.1, 5.1, 17, 413 }, + [5] = { 62.2, 4.9, 17, 413 }, + [6] = { 61.9, 4.5, 17, 413 }, + [7] = { 61.5, 4.5, 17, 413 }, + [8] = { 60.4, 4, 17, 413 }, + [9] = { 60.3, 4, 17, 413 }, + [10] = { 61.4, 4, 17, 413 }, + [11] = { 60, 4, 17, 413 }, + [12] = { 61.1, 4, 17, 413 }, + [13] = { 61.9, 3.9, 17, 413 }, + [14] = { 59.7, 3.8, 17, 413 }, + [15] = { 60.5, 3.8, 17, 413 }, + [16] = { 60.3, 3.8, 17, 413 }, + [17] = { 60.8, 3.8, 17, 413 }, + [18] = { 61.8, 3.8, 17, 413 }, + [19] = { 59.9, 3.7, 17, 413 }, + [20] = { 60.3, 3.6, 17, 413 }, + [21] = { 61, 3.6, 17, 413 }, + [22] = { 61.6, 3.6, 17, 413 }, + [23] = { 62.2, 3.5, 17, 413 }, + [24] = { 59.8, 3.5, 17, 413 }, + [25] = { 60.2, 3.5, 17, 413 }, + [26] = { 59.8, 3.3, 17, 413 }, + [27] = { 60.1, 3.2, 17, 413 }, + [28] = { 59.8, 2.9, 17, 413 }, + [29] = { 59.6, 2.8, 17, 413 }, + [30] = { 89.4, 86.6, 331, 413 }, + [31] = { 89, 86.4, 331, 413 }, + [32] = { 90.3, 86.3, 331, 413 }, + [33] = { 89.9, 86.3, 331, 413 }, + [34] = { 90.8, 86.3, 331, 413 }, + [35] = { 89.2, 86.2, 331, 413 }, + [36] = { 89.9, 86, 331, 413 }, + [37] = { 91.3, 86, 331, 413 }, + [38] = { 89.1, 85.7, 331, 413 }, + [39] = { 89.8, 85.7, 331, 413 }, + [40] = { 89.2, 85.4, 331, 413 }, + [41] = { 89.7, 85.3, 331, 413 }, + [42] = { 89.1, 84.8, 331, 413 }, + [43] = { 88.8, 84.6, 331, 413 }, + }, + ["lvl"] = "16-17", + }, + [3284] = { + ["coords"] = { + [1] = { 52.6, 11.7, 17, 413 }, + [2] = { 52.5, 11.6, 17, 413 }, + [3] = { 52.7, 11, 17, 413 }, + [4] = { 52.5, 10.7, 17, 413 }, + [5] = { 53, 10.5, 17, 413 }, + [6] = { 53, 10.3, 17, 413 }, + [7] = { 56.1, 9.8, 17, 413 }, + [8] = { 56.2, 9.5, 17, 413 }, + [9] = { 55.7, 9.5, 17, 413 }, + [10] = { 56.5, 9.4, 17, 413 }, + [11] = { 57.3, 9.2, 17, 413 }, + [12] = { 56.1, 9.2, 17, 413 }, + [13] = { 56.8, 9.2, 17, 413 }, + [14] = { 56.5, 9.1, 17, 413 }, + [15] = { 57, 9, 17, 413 }, + [16] = { 55.9, 8.9, 17, 413 }, + [17] = { 57.3, 8.9, 17, 413 }, + [18] = { 56.6, 8.9, 17, 413 }, + [19] = { 55.5, 8.9, 17, 413 }, + [20] = { 56.7, 8.8, 17, 413 }, + [21] = { 56.3, 8.8, 17, 413 }, + [22] = { 57.5, 8.8, 17, 413 }, + [23] = { 55.9, 8.8, 17, 413 }, + [24] = { 57.2, 8.7, 17, 413 }, + [25] = { 56.1, 8.6, 17, 413 }, + [26] = { 56.4, 8.5, 17, 413 }, + [27] = { 55.7, 8.4, 17, 413 }, + [28] = { 56.2, 8.4, 17, 413 }, + [29] = { 56, 8.3, 17, 413 }, + [30] = { 57.6, 8.2, 17, 413 }, + [31] = { 56.4, 8.2, 17, 413 }, + [32] = { 55.8, 8.1, 17, 413 }, + [33] = { 57.6, 7.9, 17, 413 }, + [34] = { 55.8, 7.8, 17, 413 }, + [35] = { 57.3, 7.8, 17, 413 }, + [36] = { 55.7, 7.7, 17, 413 }, + [37] = { 56.3, 7.5, 17, 413 }, + [38] = { 56.2, 7.5, 17, 413 }, + [39] = { 57.3, 7.4, 17, 413 }, + [40] = { 56.4, 7.4, 17, 413 }, + [41] = { 55.9, 7.4, 17, 413 }, + [42] = { 56.1, 7.3, 17, 413 }, + [43] = { 55.7, 7.2, 17, 413 }, + [44] = { 56.6, 7.2, 17, 413 }, + [45] = { 57.2, 7.2, 17, 413 }, + [46] = { 57.4, 7.1, 17, 413 }, + [47] = { 57, 7.1, 17, 413 }, + [48] = { 55.8, 6.9, 17, 413 }, + [49] = { 56.2, 6.9, 17, 413 }, + [50] = { 55.9, 6.7, 17, 413 }, + }, + ["lvl"] = "14-15", + }, + [3285] = { + ["coords"] = { + [1] = { 53.4, 12.2, 17, 413 }, + [2] = { 52, 11.9, 17, 413 }, + [3] = { 52.4, 11.8, 17, 413 }, + [4] = { 52.7, 11.7, 17, 413 }, + [5] = { 52.1, 11.7, 17, 413 }, + [6] = { 52.2, 11.5, 17, 413 }, + [7] = { 52, 11.5, 17, 413 }, + [8] = { 52.2, 11.2, 17, 413 }, + [9] = { 53, 11.2, 17, 413 }, + [10] = { 53.1, 10.9, 17, 413 }, + [11] = { 52.7, 10.8, 17, 413 }, + [12] = { 53.2, 10.4, 17, 413 }, + [13] = { 52.6, 10.4, 17, 413 }, + [14] = { 53.1, 10.3, 17, 413 }, + [15] = { 53.2, 10.3, 17, 413 }, + }, + ["lvl"] = "13-14", + }, + [3286] = { + ["coords"] = { + [1] = { 61.2, 5.5, 17, 413 }, + [2] = { 61.9, 5.4, 17, 413 }, + [3] = { 61.4, 5.3, 17, 413 }, + [4] = { 61.6, 5, 17, 413 }, + [5] = { 61.9, 4.9, 17, 413 }, + [6] = { 61.9, 4.2, 17, 413 }, + [7] = { 60.3, 4.1, 17, 413 }, + [8] = { 61.9, 4, 17, 413 }, + [9] = { 59.8, 3.9, 17, 413 }, + [10] = { 62.3, 3.8, 17, 413 }, + [11] = { 60.7, 3.8, 17, 413 }, + [12] = { 60, 3.8, 17, 413 }, + [13] = { 59.6, 3.8, 17, 413 }, + [14] = { 60.6, 3.8, 17, 413 }, + [15] = { 59.9, 3.7, 17, 413 }, + [16] = { 61.9, 3.6, 17, 413 }, + [17] = { 60.4, 3.6, 17, 413 }, + [18] = { 61.7, 3.3, 17, 413 }, + [19] = { 59.9, 3.1, 17, 413 }, + [20] = { 59.5, 3.1, 17, 413 }, + [21] = { 59.6, 2.9, 17, 413 }, + [22] = { 59.6, 2.8, 17, 413 }, + [23] = { 89.1, 86.5, 331, 413 }, + [24] = { 90.6, 86.3, 331, 413 }, + [25] = { 89.4, 86.3, 331, 413 }, + [26] = { 88.8, 86.3, 331, 413 }, + [27] = { 90.4, 86.3, 331, 413 }, + [28] = { 89.3, 86.1, 331, 413 }, + [29] = { 90.1, 85.9, 331, 413 }, + [30] = { 89.3, 85.1, 331, 413 }, + [31] = { 88.6, 85, 331, 413 }, + [32] = { 88.8, 84.7, 331, 413 }, + [33] = { 88.8, 84.5, 331, 413 }, + }, + ["lvl"] = "17-18", + }, + [3287] = { + ["coords"] = { + [1] = { 40.6, 62.6, 14, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "2", + }, + [3290] = { + ["coords"] = { + [1] = { 45.9, 13.4, 38, 300 }, + [2] = { 22.1, 51.1, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "27", + }, + [3291] = { + ["coords"] = { + [1] = { 25.1, 11.8, 38, 300 }, + [2] = { 11.4, 50.2, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "24", + }, + [3294] = { + ["coords"] = { + [1] = { 54.4, 41.3, 14, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "10", + }, + [3295] = { + ["coords"] = { + [1] = { 56.4, 7.8, 17, 19800 }, + }, + ["lvl"] = "19", + ["rnk"] = "2", + }, + [3296] = { + ["coords"] = { + [1] = { 41.8, 18.1, 14, 300 }, + [2] = { 41.7, 17.9, 14, 300 }, + [3] = { 45.3, 15.1, 14, 300 }, + [4] = { 44.6, 14.9, 14, 300 }, + [5] = { 45, 14, 14, 300 }, + [6] = { 44.8, 13.9, 14, 300 }, + [7] = { 50.5, 13.5, 14, 300 }, + [8] = { 50.5, 13.3, 14, 300 }, + [9] = { 45.3, 12, 14, 300 }, + [10] = { 45.7, 11.9, 14, 300 }, + [11] = { 45.5, 11.5, 14, 300 }, + [12] = { 46.2, 9.3, 14, 300 }, + [13] = { 46.6, 9.3, 14, 300 }, + [14] = { 46.6, 8.2, 14, 300 }, + [15] = { 46.7, 8.1, 14, 300 }, + [16] = { 45.7, 7.7, 14, 300 }, + [17] = { 44.7, 7.3, 14, 300 }, + [18] = { 45.4, 7.1, 14, 300 }, + [19] = { 45.4, 7, 14, 300 }, + [20] = { 46, 6.6, 14, 300 }, + [21] = { 95.9, 79, 331, 300 }, + [22] = { 96.1, 78.9, 331, 300 }, + [23] = { 96, 78.7, 331, 300 }, + [24] = { 48.3, 95.1, 1637, 300 }, + [25] = { 49.9, 94.8, 1637, 300 }, + [26] = { 49, 93.2, 1637, 300 }, + [27] = { 51.7, 84.9, 1637, 300 }, + [28] = { 53.3, 84.7, 1637, 300 }, + [29] = { 53.1, 80.8, 1637, 300 }, + [30] = { 53.4, 80.2, 1637, 300 }, + [31] = { 49.9, 78.7, 1637, 300 }, + [32] = { 45.9, 77.1, 1637, 300 }, + [33] = { 48.7, 76.6, 1637, 300 }, + [34] = { 48.5, 76.1, 1637, 300 }, + [35] = { 35.5, 75.6, 1637, 300 }, + [36] = { 50.9, 74.6, 1637, 300 }, + [37] = { 35.4, 74.2, 1637, 300 }, + [38] = { 36.5, 73.1, 1637, 300 }, + [39] = { 50.5, 72.4, 1637, 300 }, + [40] = { 54.9, 71.7, 1637, 300 }, + [41] = { 49.6, 70.4, 1637, 300 }, + [42] = { 40.8, 69.9, 1637, 300 }, + [43] = { 42.7, 69.6, 1637, 300 }, + [44] = { 42.4, 69, 1637, 300 }, + [45] = { 31.5, 68.7, 1637, 25 }, + [46] = { 31.2, 67.9, 1637, 25 }, + [47] = { 45.8, 64.7, 1637, 300 }, + [48] = { 56.5, 64.3, 1637, 300 }, + [49] = { 40.6, 64.2, 1637, 300 }, + [50] = { 29.9, 63.3, 1637, 300 }, + [51] = { 16.5, 63, 1637, 300 }, + [52] = { 56.6, 62.6, 1637, 300 }, + [53] = { 42.7, 62.4, 1637, 300 }, + [54] = { 41.5, 62.4, 1637, 300 }, + [55] = { 55.8, 61.8, 1637, 300 }, + [56] = { 29.7, 61.7, 1637, 300 }, + [57] = { 17.8, 61.7, 1637, 300 }, + [58] = { 15.9, 61.5, 1637, 300 }, + [59] = { 17.1, 60.1, 1637, 300 }, + [60] = { 48.4, 59.5, 1637, 300 }, + [61] = { 51.4, 58.2, 1637, 300 }, + [62] = { 41.3, 56.2, 1637, 300 }, + [63] = { 37.7, 55.8, 1637, 300 }, + [64] = { 44.3, 55, 1637, 300 }, + [65] = { 44.7, 54, 1637, 300 }, + [66] = { 45.6, 53.3, 1637, 300 }, + [67] = { 48.2, 48.8, 1637, 300 }, + [68] = { 58.9, 47.5, 1637, 300 }, + [69] = { 51, 45.8, 1637, 300 }, + [70] = { 41.7, 42.4, 1637, 300 }, + [71] = { 57.3, 41.9, 1637, 300 }, + [72] = { 61.7, 41.4, 1637, 300 }, + [73] = { 52.4, 41.4, 1637, 300 }, + [74] = { 57.4, 41.1, 1637, 300 }, + [75] = { 42.4, 39.7, 1637, 300 }, + [76] = { 67.6, 39.7, 1637, 300 }, + [77] = { 63, 39.3, 1637, 300 }, + [78] = { 62.7, 39.1, 1637, 300 }, + [79] = { 52.2, 39.1, 1637, 300 }, + [80] = { 67.9, 38.9, 1637, 300 }, + [81] = { 67.3, 38.9, 1637, 300 }, + [82] = { 76.6, 38.8, 1637, 300 }, + [83] = { 62.7, 38.5, 1637, 300 }, + [84] = { 75.4, 38.4, 1637, 25 }, + [85] = { 48.9, 37.8, 1637, 300 }, + [86] = { 49.6, 37.6, 1637, 300 }, + [87] = { 54.7, 37.4, 1637, 300 }, + [88] = { 53, 36.9, 1637, 300 }, + [89] = { 51.8, 36, 1637, 300 }, + [90] = { 50.8, 35.5, 1637, 300 }, + [91] = { 49.5, 34.5, 1637, 300 }, + [92] = { 49, 34.4, 1637, 300 }, + [93] = { 53.5, 34.3, 1637, 300 }, + [94] = { 74.9, 33.2, 1637, 300 }, + [95] = { 74.1, 28.8, 1637, 300 }, + [96] = { 67.6, 24, 1637, 300 }, + [97] = { 75.2, 15.6, 1637, 300 }, + [98] = { 75, 15.5, 1637, 300 }, + [99] = { 77.5, 10.1, 1637, 120 }, + [100] = { 77.3, 9.9, 1637, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [3297] = { + ["coords"] = { + [1] = { 56, 75.2, 14, 300 }, + [2] = { 56.2, 74.9, 14, 300 }, + [3] = { 55.2, 74.8, 14, 300 }, + [4] = { 56.3, 74.6, 14, 300 }, + [5] = { 56.5, 73.6, 14, 25 }, + [6] = { 56.2, 73.5, 14, 25 }, + [7] = { 55.4, 73.4, 14, 300 }, + [8] = { 56.3, 72.6, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [3299] = "_", + [3300] = { + ["coords"] = { + [1] = { 54.2, 77.8, 14, 180 }, + [2] = { 57.8, 72.1, 14, 180 }, + [3] = { 52.2, 71.5, 14, 180 }, + [4] = { 46.6, 64.1, 14, 180 }, + [5] = { 43, 63.6, 14, 180 }, + [6] = { 54.1, 62.9, 14, 180 }, + [7] = { 45.3, 62.3, 14, 180 }, + [8] = { 44, 59.7, 14, 180 }, + [9] = { 37.1, 55.1, 14, 180 }, + [10] = { 53.8, 54.8, 14, 180 }, + [11] = { 53.3, 53.8, 14, 180 }, + [12] = { 36.1, 53.1, 14, 180 }, + [13] = { 53.1, 53, 14, 180 }, + [14] = { 57.6, 49.4, 14, 180 }, + [15] = { 51.1, 48.4, 14, 180 }, + [16] = { 40, 47.6, 14, 180 }, + [17] = { 41.5, 46, 14, 180 }, + [18] = { 56.7, 45.8, 14, 180 }, + [19] = { 39.2, 45.8, 14, 180 }, + [20] = { 50.2, 45.1, 14, 180 }, + [21] = { 56.3, 43.9, 14, 180 }, + [22] = { 43.6, 42.8, 14, 180 }, + [23] = { 38.4, 36.5, 14, 180 }, + [24] = { 41.8, 36.2, 14, 180 }, + [25] = { 39.8, 34.3, 14, 180 }, + [26] = { 44.1, 33.5, 14, 180 }, + [27] = { 36.6, 32.6, 14, 180 }, + [28] = { 42.3, 32.5, 14, 180 }, + [29] = { 44.1, 29.7, 14, 180 }, + [30] = { 42, 29.1, 14, 180 }, + [31] = { 45.5, 25.6, 14, 180 }, + [32] = { 38, 23.2, 14, 180 }, + [33] = { 39.4, 22.1, 14, 180 }, + [34] = { 40.5, 21.6, 14, 180 }, + [35] = { 44.4, 19.9, 14, 180 }, + [36] = { 53.2, 19.5, 14, 180 }, + [37] = { 40.5, 18.9, 14, 180 }, + [38] = { 45.3, 17.8, 14, 270 }, + [39] = { 42.4, 17.3, 14, 180 }, + [40] = { 45, 17.1, 14, 180 }, + [41] = { 48.8, 15.4, 14, 180 }, + [42] = { 54.2, 15.2, 14, 180 }, + [43] = { 53, 12.5, 14, 180 }, + [44] = { 45, 84.6, 17, 413 }, + [45] = { 47.8, 80.3, 17, 413 }, + [46] = { 44.2, 80, 17, 413 }, + [47] = { 47.4, 77.4, 17, 413 }, + [48] = { 48.8, 77.1, 17, 413 }, + [49] = { 45, 76.9, 17, 413 }, + [50] = { 48, 74.4, 17, 413 }, + [51] = { 44.8, 74.2, 17, 413 }, + [52] = { 46, 66.7, 17, 413 }, + [53] = { 47.7, 64.1, 17, 413 }, + [54] = { 44.8, 64.1, 17, 413 }, + [55] = { 48, 60.2, 17, 413 }, + [56] = { 50, 60, 17, 413 }, + [57] = { 42.5, 59.7, 17, 413 }, + [58] = { 52, 56.8, 17, 413 }, + [59] = { 43.8, 56.7, 17, 413 }, + [60] = { 43.9, 53.7, 17, 413 }, + [61] = { 50.5, 53.5, 17, 413 }, + [62] = { 48.5, 52.2, 17, 413 }, + [63] = { 46.1, 51.8, 17, 413 }, + [64] = { 54.9, 51.5, 17, 413 }, + [65] = { 50, 50.1, 17, 413 }, + [66] = { 48, 49.8, 17, 413 }, + [67] = { 53.8, 49.5, 17, 413 }, + [68] = { 45.7, 49.2, 17, 413 }, + [69] = { 56.4, 48.2, 17, 413 }, + [70] = { 46.1, 47.2, 17, 413 }, + [71] = { 50, 46.7, 17, 413 }, + [72] = { 44.4, 46.7, 17, 413 }, + [73] = { 47.8, 45.7, 17, 413 }, + [74] = { 54.5, 45, 17, 413 }, + [75] = { 57.8, 43.7, 17, 413 }, + [76] = { 51.2, 43.3, 17, 413 }, + [77] = { 46.1, 42.5, 17, 413 }, + [78] = { 54.3, 41, 17, 413 }, + [79] = { 44.4, 38.3, 17, 413 }, + [80] = { 47.8, 37.4, 17, 413 }, + [81] = { 50.8, 37.3, 17, 413 }, + [82] = { 43.6, 36.1, 17, 413 }, + [83] = { 60.1, 35.7, 17, 413 }, + [84] = { 57.3, 34.5, 17, 413 }, + [85] = { 61.7, 33.3, 17, 413 }, + [86] = { 44, 33.3, 17, 413 }, + [87] = { 41.3, 32.5, 17, 413 }, + [88] = { 60.3, 30.8, 17, 413 }, + [89] = { 53.6, 30.1, 17, 413 }, + [90] = { 45.3, 29.7, 17, 413 }, + [91] = { 40.2, 29.3, 17, 413 }, + [92] = { 42, 28.3, 17, 413 }, + [93] = { 37.2, 27.7, 17, 413 }, + [94] = { 53.9, 27.4, 17, 413 }, + [95] = { 59.7, 27.2, 17, 413 }, + [96] = { 64.6, 25.8, 17, 180 }, + [97] = { 64.1, 24.8, 17, 180 }, + [98] = { 46.3, 24.5, 17, 413 }, + [99] = { 60.9, 24, 17, 300 }, + [100] = { 57, 22.1, 17, 413 }, + [101] = { 41.6, 21.3, 17, 413 }, + [102] = { 61.4, 20.8, 17, 413 }, + [103] = { 51.5, 17.9, 17, 413 }, + [104] = { 59.7, 17.8, 17, 413 }, + [105] = { 56, 15.8, 17, 413 }, + [106] = { 38.6, 15.8, 17, 413 }, + [107] = { 50.6, 14.6, 17, 413 }, + [108] = { 64.3, 14.1, 17, 180 }, + [109] = { 65.1, 9.2, 17, 180 }, + [110] = { 72.6, 62.8, 215, 413 }, + [111] = { 84.7, 92.2, 406, 413 }, + }, + ["lvl"] = "1", + }, + [3301] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "1", + }, + [3302] = "_", + [3303] = "_", + [3304] = { + ["coords"] = { + [1] = { 55.9, 74.4, 14, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "11", + }, + [3305] = { + ["coords"] = { + [1] = { 34.8, 30.9, 51, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [3307] = "_", + [3310] = { + ["coords"] = { + [1] = { 45.1, 63.9, 1637, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [3332] = { + ["coords"] = { + [1] = { 69.8, 29.2, 1637, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [3335] = { + ["coords"] = { + [1] = { 44.5, 47.9, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3336] = { + ["coords"] = { + [1] = { 50.8, 43.6, 14, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3337] = { + ["coords"] = { + [1] = { 62.3, 19.4, 17, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "15", + }, + [3339] = { + ["coords"] = { + [1] = { 62.3, 39, 17, 30 }, + }, + ["lvl"] = "25", + }, + [3341] = { + ["coords"] = { + [1] = { 45.9, 77, 17, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "18", + }, + [3354] = { + ["coords"] = { + [1] = { 80.3, 32.6, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [3362] = { + ["coords"] = { + [1] = { 69.4, 12.2, 1637, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [3373] = { + ["coords"] = { + [1] = { 41.6, 9.2, 14, 30 }, + [2] = { 34.2, 84.6, 1637, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [3374] = { + ["coords"] = { + [1] = { 48.2, 86.4, 17, 413 }, + [2] = { 48.4, 86.3, 17, 413 }, + [3] = { 48, 86.1, 17, 413 }, + [4] = { 48.4, 86, 17, 413 }, + [5] = { 46.9, 85.9, 17, 413 }, + [6] = { 47.1, 85.8, 17, 413 }, + [7] = { 48.2, 85.8, 17, 413 }, + [8] = { 47.3, 85.7, 17, 413 }, + [9] = { 47.6, 85.7, 17, 413 }, + [10] = { 46.9, 85.6, 17, 413 }, + [11] = { 47.4, 85.6, 17, 413 }, + [12] = { 48.1, 85.5, 17, 413 }, + [13] = { 47.8, 85.5, 17, 413 }, + [14] = { 47.4, 85.3, 17, 413 }, + [15] = { 47.2, 85.2, 17, 413 }, + [16] = { 48, 85.2, 17, 413 }, + [17] = { 47.2, 84.9, 17, 413 }, + [18] = { 48, 84.9, 17, 413 }, + [19] = { 47.4, 84.9, 17, 413 }, + [20] = { 47.5, 84.8, 17, 413 }, + [21] = { 47.7, 84.6, 17, 413 }, + [22] = { 46.9, 84.3, 17, 413 }, + [23] = { 47.5, 84.3, 17, 413 }, + [24] = { 47.4, 84.1, 17, 413 }, + [25] = { 47, 84.1, 17, 413 }, + [26] = { 47.5, 84, 17, 413 }, + [27] = { 47.3, 84, 17, 413 }, + [28] = { 47.1, 83.9, 17, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "21-22", + }, + [3375] = { + ["coords"] = { + [1] = { 47.4, 85.5, 17, 413 }, + [2] = { 47.5, 85.4, 17, 413 }, + [3] = { 47.6, 85.3, 17, 413 }, + [4] = { 47.2, 85.1, 17, 413 }, + [5] = { 47.7, 84.9, 17, 413 }, + [6] = { 47.5, 84.9, 17, 413 }, + [7] = { 47.5, 84.4, 17, 413 }, + [8] = { 47.2, 84.2, 17, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "22-23", + }, + [3376] = { + ["coords"] = { + [1] = { 25.5, 59.6, 15, 413 }, + [2] = { 26.3, 59.3, 15, 413 }, + [3] = { 25.8, 59, 15, 413 }, + [4] = { 26.6, 59, 15, 413 }, + [5] = { 26.9, 58.8, 15, 413 }, + [6] = { 25.7, 58.6, 15, 413 }, + [7] = { 26.5, 58.5, 15, 413 }, + [8] = { 26.4, 58.2, 15, 413 }, + [9] = { 26.3, 58.2, 15, 413 }, + [10] = { 26.7, 58.2, 15, 413 }, + [11] = { 27.5, 57.9, 15, 413 }, + [12] = { 26.9, 57.9, 15, 413 }, + [13] = { 27.4, 57.9, 15, 413 }, + [14] = { 27.3, 57.6, 15, 413 }, + [15] = { 27.1, 57.2, 15, 413 }, + [16] = { 48.7, 84.8, 17, 413 }, + [17] = { 49.1, 84.7, 17, 413 }, + [18] = { 48.9, 84.5, 17, 413 }, + [19] = { 49.3, 84.5, 17, 413 }, + [20] = { 49.4, 84.4, 17, 413 }, + [21] = { 48.8, 84.3, 17, 413 }, + [22] = { 49.3, 84.3, 17, 413 }, + [23] = { 48.3, 84.2, 17, 413 }, + [24] = { 49.2, 84.1, 17, 413 }, + [25] = { 49.1, 84.1, 17, 413 }, + [26] = { 49.3, 84.1, 17, 413 }, + [27] = { 49.7, 83.9, 17, 413 }, + [28] = { 49.4, 83.9, 17, 413 }, + [29] = { 49.7, 83.8, 17, 413 }, + [30] = { 48.5, 83.8, 17, 413 }, + [31] = { 49.5, 83.6, 17, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "23-24", + }, + [3377] = { + ["coords"] = { + [1] = { 25.9, 59.7, 15, 413 }, + [2] = { 26.7, 58.8, 15, 413 }, + [3] = { 26.9, 58.7, 15, 413 }, + [4] = { 25.9, 58.6, 15, 413 }, + [5] = { 26.2, 58.6, 15, 413 }, + [6] = { 27.1, 58.6, 15, 413 }, + [7] = { 26.6, 58.4, 15, 413 }, + [8] = { 27, 58.3, 15, 413 }, + [9] = { 25.9, 58, 15, 413 }, + [10] = { 26.8, 57.8, 15, 413 }, + [11] = { 26.2, 57.7, 15, 413 }, + [12] = { 26.8, 57.4, 15, 413 }, + [13] = { 48.9, 84.9, 17, 413 }, + [14] = { 48.5, 84.6, 17, 413 }, + [15] = { 49.4, 84.4, 17, 413 }, + [16] = { 49.5, 84.4, 17, 413 }, + [17] = { 48.9, 84.3, 17, 413 }, + [18] = { 49.1, 84.3, 17, 413 }, + [19] = { 49.6, 84.3, 17, 413 }, + [20] = { 49.3, 84.2, 17, 413 }, + [21] = { 49.5, 84.1, 17, 413 }, + [22] = { 48.6, 84.1, 17, 413 }, + [23] = { 48.9, 84, 17, 413 }, + [24] = { 49.4, 83.9, 17, 413 }, + [25] = { 48.6, 83.9, 17, 413 }, + [26] = { 49.1, 83.9, 17, 413 }, + [27] = { 49.4, 83.7, 17, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "24-25", + }, + [3378] = { + ["coords"] = { + [1] = { 27.1, 58.6, 15, 413 }, + [2] = { 26.4, 58.6, 15, 270 }, + [3] = { 26.4, 58.6, 15, 413 }, + [4] = { 26.8, 58.2, 15, 413 }, + [5] = { 27.5, 58.2, 15, 413 }, + [6] = { 26.5, 58.1, 15, 413 }, + [7] = { 27, 57.9, 15, 413 }, + [8] = { 26.3, 57.8, 15, 413 }, + [9] = { 26.5, 57.6, 15, 413 }, + [10] = { 27.2, 57.1, 15, 413 }, + [11] = { 49.5, 84.3, 17, 413 }, + [12] = { 49.2, 84.3, 17, 270 }, + [13] = { 49.2, 84.3, 17, 413 }, + [14] = { 48.6, 84.2, 17, 413 }, + [15] = { 49.4, 84.1, 17, 413 }, + [16] = { 49.8, 84.1, 17, 413 }, + [17] = { 49.2, 84.1, 17, 413 }, + [18] = { 49.5, 84, 17, 413 }, + [19] = { 49.1, 83.9, 17, 413 }, + [20] = { 49.3, 83.8, 17, 413 }, + [21] = { 49.6, 83.6, 17, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "26", + }, + [3381] = { + ["coords"] = { + [1] = { 62.9, 50.2, 17, 413 }, + [2] = { 62.7, 49.7, 17, 413 }, + [3] = { 63.6, 49.3, 17, 413 }, + [4] = { 63.5, 49.2, 17, 413 }, + [5] = { 63.9, 49.2, 17, 413 }, + [6] = { 63.6, 48.9, 17, 413 }, + [7] = { 63.8, 48.3, 17, 413 }, + [8] = { 64, 47.3, 17, 413 }, + [9] = { 64.3, 47.2, 17, 413 }, + [10] = { 63.8, 46.9, 17, 413 }, + [11] = { 64.4, 46.7, 17, 413 }, + [12] = { 63.6, 46.2, 17, 413 }, + [13] = { 63.7, 46.1, 17, 413 }, + [14] = { 63.8, 45.8, 17, 413 }, + [15] = { 63.6, 45.7, 17, 413 }, + [16] = { 63.9, 45.3, 17, 413 }, + [17] = { 63.9, 44.9, 17, 413 }, + [18] = { 63.6, 44.4, 17, 413 }, + [19] = { 64.2, 44.3, 17, 413 }, + [20] = { 64.4, 44.1, 17, 413 }, + [21] = { 64.1, 43.9, 17, 413 }, + [22] = { 64.5, 43.9, 17, 413 }, + [23] = { 64.2, 43.4, 17, 413 }, + [24] = { 63.6, 43.4, 17, 413 }, + }, + ["lvl"] = "12-13", + }, + [3382] = { + ["coords"] = { + [1] = { 62.6, 50.2, 17, 413 }, + [2] = { 62.7, 49.8, 17, 413 }, + [3] = { 62.9, 49.7, 17, 413 }, + [4] = { 62.5, 49.5, 17, 413 }, + [5] = { 63.8, 49.5, 17, 413 }, + [6] = { 63.7, 49.3, 17, 413 }, + [7] = { 63.1, 49.2, 17, 413 }, + [8] = { 63.9, 48.8, 17, 413 }, + [9] = { 64.2, 47.8, 17, 413 }, + [10] = { 64.3, 47.3, 17, 413 }, + [11] = { 64.4, 47, 17, 413 }, + [12] = { 64.2, 46.8, 17, 413 }, + [13] = { 63.6, 46.7, 17, 413 }, + [14] = { 63.9, 46.4, 17, 413 }, + [15] = { 63.6, 46.1, 17, 413 }, + [16] = { 63.5, 45.9, 17, 413 }, + [17] = { 64.6, 44.1, 17, 413 }, + [18] = { 62.9, 44, 17, 413 }, + [19] = { 63.9, 43.8, 17, 413 }, + }, + ["lvl"] = "13-14", + }, + [3385] = { + ["coords"] = { + [1] = { 52.5, 5.6, 15, 413 }, + [2] = { 52.1, 5.6, 15, 413 }, + [3] = { 53.3, 5.2, 15, 413 }, + [4] = { 53.2, 5.1, 15, 413 }, + [5] = { 52.6, 4.9, 15, 413 }, + [6] = { 51.7, 4.8, 15, 413 }, + [7] = { 51.5, 4.5, 15, 413 }, + [8] = { 51.9, 4.5, 15, 413 }, + [9] = { 62.7, 56.9, 17, 413 }, + [10] = { 62.5, 56.8, 17, 413 }, + [11] = { 63.1, 56.6, 17, 413 }, + [12] = { 63, 56.6, 17, 413 }, + [13] = { 62.8, 56.5, 17, 413 }, + [14] = { 62.3, 56.4, 17, 413 }, + [15] = { 62.2, 56.3, 17, 413 }, + [16] = { 62.4, 56.3, 17, 413 }, + [17] = { 61.6, 56.1, 17, 413 }, + [18] = { 61.3, 55.7, 17, 413 }, + [19] = { 61, 55.6, 17, 413 }, + [20] = { 60.8, 55.6, 17, 413 }, + [21] = { 60.7, 55.6, 17, 413 }, + [22] = { 61.4, 55.5, 17, 413 }, + [23] = { 60.6, 55.3, 17, 413 }, + [24] = { 61.9, 55.3, 17, 413 }, + [25] = { 60.7, 55.2, 17, 413 }, + [26] = { 62.1, 55.1, 17, 413 }, + [27] = { 61.9, 55.1, 17, 413 }, + [28] = { 61.8, 55.1, 17, 413 }, + [29] = { 62, 55.1, 17, 413 }, + [30] = { 61.6, 55.1, 17, 413 }, + [31] = { 61.8, 55, 17, 413 }, + [32] = { 60.9, 55, 17, 413 }, + [33] = { 61.8, 54.9, 17, 413 }, + [34] = { 61.9, 54.9, 17, 413 }, + [35] = { 60.4, 54.9, 17, 413 }, + [36] = { 60.9, 54.9, 17, 413 }, + [37] = { 61.8, 54.8, 17, 413 }, + [38] = { 61.7, 54.8, 17, 413 }, + [39] = { 62, 54.7, 17, 413 }, + [40] = { 61.9, 54.4, 17, 413 }, + [41] = { 60.5, 54.4, 17, 413 }, + [42] = { 60.1, 54.2, 17, 413 }, + [43] = { 62.3, 54.2, 17, 413 }, + [44] = { 60.4, 54.1, 17, 413 }, + [45] = { 62.2, 54.1, 17, 413 }, + [46] = { 62.2, 54, 17, 413 }, + [47] = { 61.6, 53.9, 17, 413 }, + [48] = { 61.5, 53.9, 17, 413 }, + [49] = { 61.7, 53.8, 17, 413 }, + [50] = { 61.6, 53.7, 17, 413 }, + [51] = { 61.1, 53.6, 17, 413 }, + [52] = { 62.2, 53.6, 17, 413 }, + [53] = { 62.1, 53.5, 17, 413 }, + [54] = { 61.8, 53.5, 17, 413 }, + [55] = { 61.5, 53.5, 17, 413 }, + [56] = { 61.2, 53.5, 17, 413 }, + [57] = { 61.5, 53.4, 17, 413 }, + [58] = { 62.4, 53.3, 17, 413 }, + [59] = { 62.1, 53.1, 17, 413 }, + [60] = { 61.4, 53.1, 17, 413 }, + [61] = { 60.8, 52.6, 17, 413 }, + [62] = { 62.5, 52.6, 17, 413 }, + [63] = { 61.9, 52.4, 17, 413 }, + [64] = { 60.6, 52.3, 17, 413 }, + [65] = { 62.3, 52.2, 17, 413 }, + [66] = { 61.6, 52.1, 17, 413 }, + [67] = { 61.2, 52.1, 17, 413 }, + [68] = { 60.2, 52.1, 17, 413 }, + [69] = { 62, 51.7, 17, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "15-16", + }, + [3386] = { + ["coords"] = { + [1] = { 53.2, 5.4, 15, 413 }, + [2] = { 51.5, 4.8, 15, 413 }, + [3] = { 63.1, 56.7, 17, 413 }, + [4] = { 62.2, 56.4, 17, 413 }, + [5] = { 61.4, 55.7, 17, 413 }, + [6] = { 60.5, 55.5, 17, 413 }, + [7] = { 62, 55.2, 17, 413 }, + [8] = { 61.8, 54.9, 17, 413 }, + [9] = { 60.5, 54.9, 17, 413 }, + [10] = { 60.4, 54.8, 17, 413 }, + [11] = { 61.8, 54.7, 17, 413 }, + [12] = { 62.2, 54.1, 17, 413 }, + [13] = { 61, 53.7, 17, 413 }, + [14] = { 61.4, 53.6, 17, 413 }, + [15] = { 61.7, 53.4, 17, 413 }, + [16] = { 61.3, 53.4, 17, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "16-17", + }, + [3387] = { + ["coords"] = { + [1] = { 44.9, 59.1, 17, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "32", + }, + [3389] = { + ["coords"] = { + [1] = { 45.3, 28.4, 17, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "28", + }, + [3390] = { + ["coords"] = { + [1] = { 51.4, 30.2, 17, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "22", + }, + [3395] = { + ["coords"] = { + [1] = { 52.8, 41.8, 17, 0 }, + }, + ["lvl"] = "18", + }, + [3398] = { + ["coords"] = { + [1] = { 46.5, 39.5, 17, 38000 }, + }, + ["lvl"] = "20", + ["rnk"] = "2", + }, + [3399] = { + ["coords"] = { + [1] = { 57.4, 54, 1637, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [3402] = { + ["coords"] = { + [1] = { 42.7, 53, 1637, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [3407] = { + ["coords"] = { + [1] = { 68, 17.8, 1637, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [3408] = { + ["coords"] = { + [1] = { 80.5, 32.2, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [3411] = { + ["coords"] = { + [1] = { 71.4, 90.5, 406, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [3412] = { + ["coords"] = { + [1] = { 76, 25.4, 1637, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [3413] = { + ["coords"] = { + [1] = { 75.5, 25.4, 1637, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3415] = { + ["coords"] = { + [1] = { 50, 31.8, 17, 413 }, + [2] = { 50.7, 31.5, 17, 413 }, + [3] = { 54.3, 31.4, 17, 413 }, + [4] = { 53.9, 31.1, 17, 413 }, + [5] = { 54.9, 31.1, 17, 413 }, + [6] = { 54.7, 30.8, 17, 413 }, + [7] = { 55.2, 30.7, 17, 413 }, + [8] = { 54.8, 30.5, 17, 413 }, + [9] = { 55.6, 30.4, 17, 413 }, + [10] = { 54.5, 30.4, 17, 413 }, + [11] = { 55, 30.1, 17, 413 }, + [12] = { 54.8, 30, 17, 413 }, + [13] = { 54.3, 30, 17, 413 }, + [14] = { 54.9, 29.6, 17, 413 }, + [15] = { 54.3, 29.4, 17, 413 }, + [16] = { 55, 29, 17, 413 }, + [17] = { 49.1, 27.6, 17, 413 }, + [18] = { 49.5, 27.6, 17, 413 }, + [19] = { 53.6, 27.5, 17, 413 }, + [20] = { 53.4, 27.2, 17, 413 }, + [21] = { 51.3, 27.1, 17, 413 }, + [22] = { 49.3, 26.9, 17, 413 }, + [23] = { 51.4, 26.2, 17, 413 }, + [24] = { 52, 26.1, 17, 413 }, + [25] = { 51.8, 26, 17, 413 }, + [26] = { 51.7, 25.7, 17, 413 }, + [27] = { 51.2, 24, 17, 413 }, + [28] = { 50, 23.5, 17, 413 }, + [29] = { 50.3, 23.5, 17, 413 }, + [30] = { 50.2, 23.4, 17, 413 }, + [31] = { 50.8, 23.2, 17, 413 }, + [32] = { 50.2, 23, 17, 413 }, + [33] = { 51.1, 21.3, 17, 413 }, + [34] = { 51.1, 21.1, 17, 413 }, + [35] = { 51.2, 20.7, 17, 413 }, + [36] = { 51.6, 20.7, 17, 413 }, + [37] = { 51, 20.4, 17, 413 }, + [38] = { 51.5, 20.2, 17, 413 }, + [39] = { 56, 16.7, 17, 413 }, + [40] = { 55.8, 16.6, 17, 413 }, + [41] = { 50.2, 16.3, 17, 413 }, + [42] = { 50.4, 15.6, 17, 413 }, + [43] = { 49.6, 15.6, 17, 413 }, + [44] = { 50, 15.4, 17, 413 }, + [45] = { 49.8, 15.3, 17, 413 }, + [46] = { 50.4, 15.2, 17, 413 }, + [47] = { 49.7, 15.1, 17, 413 }, + [48] = { 95, 12.3, 718, 413 }, + }, + ["lvl"] = "11-12", + }, + [3418] = { + ["coords"] = { + [1] = { 44.9, 58.6, 17, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "22", + }, + [3419] = { + ["coords"] = { + [1] = { 34.4, 21.1, 215, 30 }, + [2] = { 88, 48.3, 405, 30 }, + [3] = { 22.8, 20.9, 1638, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "22", + }, + [3420] = "_", + [3421] = { + ["coords"] = { + [1] = { 26, 62.4, 15, 30 }, + [2] = { 49, 86.3, 17, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "23", + }, + [3425] = { + ["coords"] = { + [1] = { 59.2, 41, 17, 413 }, + [2] = { 59.6, 40.9, 17, 413 }, + [3] = { 59.3, 40.8, 17, 413 }, + [4] = { 58.6, 40.8, 17, 413 }, + [5] = { 43.6, 39.4, 17, 413 }, + [6] = { 43.5, 39.3, 17, 413 }, + [7] = { 57.7, 39.3, 17, 413 }, + [8] = { 43.6, 39.1, 17, 413 }, + [9] = { 43.7, 37.9, 17, 413 }, + [10] = { 43.8, 37.6, 17, 413 }, + [11] = { 59, 36.5, 17, 413 }, + [12] = { 43.6, 35.5, 17, 413 }, + [13] = { 43.8, 35.4, 17, 413 }, + [14] = { 43.4, 35.3, 17, 413 }, + [15] = { 43.6, 35.1, 17, 413 }, + [16] = { 42.5, 35.1, 17, 413 }, + [17] = { 42.8, 35, 17, 413 }, + [18] = { 42.7, 34.6, 17, 413 }, + [19] = { 42.4, 34.6, 17, 413 }, + [20] = { 59.7, 34.4, 17, 413 }, + [21] = { 42.9, 33.8, 17, 413 }, + [22] = { 43.2, 33.7, 17, 413 }, + [23] = { 42.9, 33.4, 17, 413 }, + [24] = { 42.8, 33.4, 17, 413 }, + [25] = { 43.2, 33.3, 17, 413 }, + [26] = { 42.7, 33.2, 17, 413 }, + [27] = { 43, 33.1, 17, 413 }, + [28] = { 42.6, 33, 17, 413 }, + [29] = { 43.9, 32.9, 17, 413 }, + [30] = { 44.2, 32.8, 17, 413 }, + [31] = { 42.4, 32.8, 17, 413 }, + [32] = { 42.7, 32.7, 17, 413 }, + [33] = { 43.8, 32.6, 17, 413 }, + [34] = { 42.2, 32.4, 17, 413 }, + [35] = { 44.5, 31.9, 17, 413 }, + [36] = { 44.2, 31.6, 17, 413 }, + [37] = { 44.2, 31.2, 17, 413 }, + [38] = { 63.2, 29.5, 17, 413 }, + [39] = { 42.6, 28.9, 17, 413 }, + [40] = { 62.8, 28.7, 17, 413 }, + [41] = { 41.6, 28.7, 17, 413 }, + [42] = { 41.4, 28.7, 17, 413 }, + [43] = { 41.3, 28.4, 17, 413 }, + [44] = { 63.2, 28.1, 17, 413 }, + [45] = { 63.1, 27.5, 17, 413 }, + [46] = { 62.6, 27.5, 17, 413 }, + [47] = { 41, 27.2, 17, 413 }, + [48] = { 41.2, 27, 17, 413 }, + [49] = { 41, 26.8, 17, 413 }, + [50] = { 40.9, 26.6, 17, 413 }, + [51] = { 40.8, 26.3, 17, 413 }, + [52] = { 41.3, 24.3, 17, 413 }, + [53] = { 41.5, 24.2, 17, 413 }, + [54] = { 42, 23.5, 17, 413 }, + [55] = { 41.7, 23.3, 17, 413 }, + [56] = { 40.8, 22.9, 17, 413 }, + [57] = { 40.6, 22.5, 17, 413 }, + [58] = { 40.9, 21.8, 17, 413 }, + [59] = { 41, 21.5, 17, 413 }, + [60] = { 41, 21.2, 17, 413 }, + [61] = { 41, 21, 17, 413 }, + [62] = { 40.7, 21, 17, 413 }, + [63] = { 40.9, 20.8, 17, 413 }, + [64] = { 41.1, 20.8, 17, 413 }, + [65] = { 40.3, 20.7, 17, 413 }, + [66] = { 40.3, 20.5, 17, 413 }, + [67] = { 40.4, 20.2, 17, 413 }, + [68] = { 55.6, 16.5, 17, 413 }, + [69] = { 55.6, 16.3, 17, 413 }, + [70] = { 55.8, 16.1, 17, 413 }, + [71] = { 53.3, 16.1, 17, 413 }, + [72] = { 55.5, 16, 17, 413 }, + [73] = { 53.5, 15.9, 17, 413 }, + [74] = { 55.7, 15.9, 17, 413 }, + [75] = { 53.7, 15.7, 17, 413 }, + [76] = { 54, 15.5, 17, 413 }, + [77] = { 53.2, 15.5, 17, 413 }, + [78] = { 53.5, 15.4, 17, 413 }, + [79] = { 53.8, 15.3, 17, 413 }, + [80] = { 54, 15.2, 17, 413 }, + [81] = { 55, 15.2, 17, 413 }, + [82] = { 53.3, 15.2, 17, 413 }, + [83] = { 54.7, 15.1, 17, 413 }, + [84] = { 54.2, 15.1, 17, 413 }, + [85] = { 55.6, 15.1, 17, 413 }, + [86] = { 53.8, 15, 17, 413 }, + [87] = { 55, 14.9, 17, 413 }, + [88] = { 55.5, 14.8, 17, 413 }, + [89] = { 54.8, 14.8, 17, 413 }, + [90] = { 55.8, 14.8, 17, 413 }, + [91] = { 54.7, 14.6, 17, 413 }, + [92] = { 55.6, 14.6, 17, 413 }, + [93] = { 54.5, 14.5, 17, 413 }, + [94] = { 53.9, 14.1, 17, 413 }, + [95] = { 53.7, 13.9, 17, 413 }, + [96] = { 53.7, 13.5, 17, 413 }, + [97] = { 54, 13.5, 17, 413 }, + [98] = { 60.6, 7.9, 17, 413 }, + [99] = { 60.2, 7.9, 17, 413 }, + [100] = { 63.3, 7.3, 17, 413 }, + [101] = { 63.7, 6.3, 17, 413 }, + [102] = { 63.5, 5.9, 17, 413 }, + [103] = { 63.5, 5.3, 17, 413 }, + }, + ["lvl"] = "14-15", + }, + [3426] = { + ["coords"] = { + [1] = { 59, 53, 17, 413 }, + [2] = { 53.6, 52.3, 17, 413 }, + [3] = { 55.1, 51.3, 17, 413 }, + [4] = { 58.2, 50.7, 17, 413 }, + [5] = { 56.4, 50.7, 17, 413 }, + [6] = { 53.4, 50.6, 17, 413 }, + [7] = { 57.2, 50.6, 17, 413 }, + [8] = { 52.5, 50.4, 17, 413 }, + [9] = { 49.1, 50.3, 17, 413 }, + [10] = { 61.3, 50.1, 17, 413 }, + [11] = { 55.1, 50.1, 17, 413 }, + [12] = { 48, 49.9, 17, 413 }, + [13] = { 59.9, 49.8, 17, 413 }, + [14] = { 56, 49.3, 17, 413 }, + [15] = { 49.8, 49.2, 17, 413 }, + [16] = { 52.6, 48.9, 17, 413 }, + [17] = { 48.5, 48.9, 17, 413 }, + [18] = { 56.3, 48.8, 17, 413 }, + [19] = { 48.3, 48.5, 17, 413 }, + [20] = { 54.7, 48.3, 17, 413 }, + [21] = { 54, 47.9, 17, 413 }, + [22] = { 56.6, 47.5, 17, 413 }, + [23] = { 53.5, 47.3, 17, 413 }, + [24] = { 56.9, 47.1, 17, 413 }, + [25] = { 48.9, 46.8, 17, 413 }, + [26] = { 52.2, 46.7, 17, 413 }, + [27] = { 49.5, 46.4, 17, 413 }, + [28] = { 47.9, 45.4, 17, 413 }, + [29] = { 47.4, 44.3, 17, 413 }, + [30] = { 44.6, 43.7, 17, 413 }, + [31] = { 46.4, 43.6, 17, 413 }, + [32] = { 44.2, 42.7, 17, 413 }, + [33] = { 61.7, 34.4, 17, 413 }, + [34] = { 60.6, 33.6, 17, 413 }, + [35] = { 62.6, 33, 17, 413 }, + [36] = { 60.6, 32.7, 17, 413 }, + [37] = { 59.2, 32.3, 17, 413 }, + [38] = { 61.3, 32, 17, 413 }, + [39] = { 60.2, 31.6, 17, 413 }, + [40] = { 39.3, 28.9, 17, 413 }, + [41] = { 37, 28.1, 17, 413 }, + [42] = { 36.3, 28.1, 17, 413 }, + [43] = { 37.7, 27, 17, 413 }, + [44] = { 37.5, 26.2, 17, 413 }, + [45] = { 39.5, 25.1, 17, 413 }, + [46] = { 45.3, 16.1, 17, 413 }, + [47] = { 43.5, 15.9, 17, 413 }, + [48] = { 44.8, 15.4, 17, 413 }, + [49] = { 45.1, 14.7, 17, 413 }, + [50] = { 42.4, 14.6, 17, 413 }, + [51] = { 43.7, 14.5, 17, 413 }, + [52] = { 46.8, 14.4, 17, 413 }, + [53] = { 43.9, 13.5, 17, 413 }, + [54] = { 44.9, 13.2, 17, 413 }, + [55] = { 48.2, 12.3, 17, 413 }, + [56] = { 47.9, 11.7, 17, 413 }, + [57] = { 60.3, 11.2, 17, 413 }, + [58] = { 58.2, 6.7, 17, 413 }, + [59] = { 88.2, 94.3, 406, 413 }, + [60] = { 84.3, 92.9, 406, 413 }, + [61] = { 83.2, 92.9, 406, 413 }, + [62] = { 85.5, 91.1, 406, 413 }, + [63] = { 85.3, 89.7, 406, 413 }, + [64] = { 88.5, 87.8, 406, 413 }, + }, + ["lvl"] = "17-18", + }, + [3427] = "_", + [3428] = { + ["coords"] = { + [1] = { 51.1, 29.6, 17, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "12", + }, + [3429] = { + ["coords"] = { + [1] = { 51.5, 30.9, 17, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "42", + }, + [3430] = { + ["coords"] = { + [1] = { 44.5, 59.3, 17, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "17", + }, + [3432] = { + ["coords"] = { + [1] = { 52, 31.6, 17, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "15", + }, + [3433] = { + ["coords"] = { + [1] = { 45.1, 57.7, 17, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "14", + }, + [3434] = { + ["coords"] = { + [1] = { 43.8, 83.1, 17, 413 }, + }, + ["lvl"] = "23", + }, + [3436] = { + ["coords"] = { + [1] = { 45.2, 80.3, 17, 413 }, + }, + ["lvl"] = "21", + }, + [3437] = "_", + [3440] = "_", + [3442] = { + ["coords"] = { + [1] = { 63, 37.2, 17, 30 }, + }, + ["lvl"] = "15", + }, + [3443] = { + ["coords"] = { + [1] = { 55.3, 31.8, 17, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "13", + }, + [3446] = { + ["coords"] = { + [1] = { 62.4, 37.6, 17, 30 }, + }, + ["lvl"] = "17", + }, + [3448] = { + ["coords"] = { + [1] = { 52.3, 31.9, 17, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "22", + }, + [3449] = { + ["coords"] = { + [1] = { 51.6, 30.9, 17, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "14", + }, + [3453] = { + ["coords"] = { + [1] = { 63.4, 38.5, 17, 30 }, + }, + ["lvl"] = "15", + }, + [3454] = { + ["coords"] = { + [1] = { 53.4, 5, 15, 270 }, + [2] = { 63.2, 56.6, 17, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "19", + }, + [3457] = { + ["coords"] = { + [1] = { 44.2, 83.9, 17, 413 }, + [2] = { 43.9, 83.3, 17, 413 }, + [3] = { 43.4, 83.3, 17, 413 }, + [4] = { 44.1, 83.2, 17, 413 }, + [5] = { 43.2, 83, 17, 413 }, + [6] = { 43.5, 82.9, 17, 413 }, + [7] = { 43.1, 82.8, 17, 413 }, + [8] = { 43.4, 82.6, 17, 413 }, + [9] = { 42.9, 82.5, 17, 413 }, + [10] = { 44.1, 82.4, 17, 413 }, + [11] = { 43.9, 82.4, 17, 413 }, + [12] = { 42.4, 82, 17, 413 }, + [13] = { 44.1, 81.8, 17, 413 }, + [14] = { 42.5, 81.7, 17, 413 }, + [15] = { 42.2, 81.4, 17, 413 }, + [16] = { 42.5, 81.4, 17, 413 }, + [17] = { 41.8, 79.2, 17, 413 }, + }, + ["lvl"] = "22-23", + }, + [3458] = { + ["coords"] = { + [1] = { 44.4, 83.4, 17, 413 }, + [2] = { 43, 83.3, 17, 413 }, + [3] = { 42.6, 83.1, 17, 413 }, + [4] = { 43.8, 82.8, 17, 413 }, + [5] = { 42.4, 82.3, 17, 413 }, + [6] = { 43.2, 82.3, 17, 413 }, + [7] = { 41.4, 82.3, 17, 413 }, + [8] = { 41.8, 82.1, 17, 413 }, + [9] = { 42.1, 82, 17, 413 }, + [10] = { 41.6, 81.6, 17, 413 }, + [11] = { 42.1, 81.5, 17, 413 }, + [12] = { 42, 81.2, 17, 413 }, + [13] = { 41.4, 80.9, 17, 413 }, + [14] = { 40.5, 80.9, 17, 413 }, + [15] = { 40.9, 80.4, 17, 413 }, + [16] = { 41.2, 80.3, 17, 413 }, + [17] = { 41.2, 79.2, 17, 413 }, + [18] = { 42.6, 78.9, 17, 413 }, + [19] = { 41.7, 78.7, 17, 413 }, + [20] = { 41.5, 78.7, 17, 413 }, + [21] = { 41.7, 78.5, 17, 413 }, + [22] = { 42.2, 78.3, 17, 413 }, + }, + ["lvl"] = "23-24", + }, + [3459] = { + ["coords"] = { + [1] = { 42, 82.2, 17, 413 }, + [2] = { 41.6, 81.8, 17, 413 }, + [3] = { 42.2, 81.7, 17, 413 }, + [4] = { 40.7, 81.4, 17, 413 }, + [5] = { 41.8, 81.3, 17, 413 }, + [6] = { 42.1, 81, 17, 413 }, + [7] = { 41.1, 80.8, 17, 413 }, + [8] = { 40.8, 80.8, 17, 413 }, + [9] = { 41.8, 80.8, 17, 413 }, + [10] = { 42.1, 80.5, 17, 413 }, + [11] = { 41.1, 79.7, 17, 413 }, + [12] = { 41.4, 79.3, 17, 413 }, + [13] = { 42.1, 78.9, 17, 413 }, + [14] = { 41.6, 78.9, 17, 413 }, + [15] = { 41.3, 78.8, 17, 413 }, + [16] = { 42, 78.7, 17, 413 }, + [17] = { 41.5, 78.3, 17, 413 }, + }, + ["lvl"] = "24-25", + }, + [3460] = "_", + [3461] = { + ["coords"] = { + [1] = { 55.6, 43.6, 17, 413 }, + [2] = { 55.9, 43.4, 17, 413 }, + [3] = { 55.7, 43.3, 17, 413 }, + [4] = { 55.1, 43, 17, 413 }, + [5] = { 55.7, 42.9, 17, 413 }, + [6] = { 55.3, 42.8, 17, 413 }, + [7] = { 56, 42.8, 17, 413 }, + [8] = { 55.6, 42.4, 17, 413 }, + [9] = { 56.1, 42.4, 17, 413 }, + [10] = { 55.3, 42.4, 17, 413 }, + [11] = { 55, 42.2, 17, 413 }, + [12] = { 56, 42, 17, 413 }, + [13] = { 55.3, 41.9, 17, 413 }, + [14] = { 55.6, 41.5, 17, 413 }, + [15] = { 48.1, 40.6, 17, 413 }, + [16] = { 46.5, 40.5, 17, 413 }, + [17] = { 45.9, 40.4, 17, 413 }, + [18] = { 46.9, 40.3, 17, 413 }, + [19] = { 47.7, 40.2, 17, 413 }, + [20] = { 48, 40, 17, 413 }, + [21] = { 47.4, 40, 17, 413 }, + [22] = { 46.4, 40, 17, 413 }, + [23] = { 46.8, 39.9, 17, 413 }, + [24] = { 48.1, 39.9, 17, 413 }, + [25] = { 47.1, 39.9, 17, 413 }, + [26] = { 46.2, 39.8, 17, 413 }, + [27] = { 46.6, 39.8, 17, 413 }, + [28] = { 47, 39.6, 17, 413 }, + [29] = { 46.8, 39.5, 17, 413 }, + [30] = { 47.6, 39.5, 17, 413 }, + [31] = { 45.9, 39.4, 17, 413 }, + [32] = { 46.4, 39.3, 17, 413 }, + [33] = { 46.2, 39.3, 17, 413 }, + [34] = { 45.7, 39, 17, 413 }, + [35] = { 46.5, 38.9, 17, 413 }, + [36] = { 46.1, 38.8, 17, 413 }, + [37] = { 46.2, 38.3, 17, 413 }, + }, + ["lvl"] = "15-16", + }, + [3462] = "_", + [3464] = { + ["coords"] = { + [1] = { 51.9, 30.3, 17, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [3467] = { + ["coords"] = { + [1] = { 64.2, 47.1, 17, 413 }, + }, + ["lvl"] = "16", + }, + [3470] = { + ["coords"] = { + [1] = { 48, 19.2, 17, 9000 }, + }, + ["lvl"] = "15", + ["rnk"] = "4", + }, + [3471] = { + ["coords"] = { + [1] = { 52.8, 10.4, 17, 120 }, + }, + ["lvl"] = "16", + }, + [3472] = { + ["coords"] = { + [1] = { 43.2, 80.9, 17, 413 }, + }, + ["lvl"] = "25", + }, + [3473] = { + ["coords"] = { + [1] = { 49.3, 61, 17, 413 }, + }, + ["lvl"] = "24", + }, + [3474] = { + ["coords"] = { + [1] = { 47.5, 51.1, 17, 413 }, + }, + ["lvl"] = "22", + }, + [3483] = { + ["coords"] = { + [1] = { 51.2, 29, 17, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "21", + }, + [3484] = { + ["coords"] = { + [1] = { 52.2, 31.7, 17, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [3489] = { + ["coords"] = { + [1] = { 52.6, 29.8, 17, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "16", + }, + [3494] = { + ["coords"] = { + [1] = { 62.7, 36.3, 17, 30 }, + }, + ["lvl"] = "25", + }, + [3501] = { + ["coords"] = { + [1] = { 46.2, 60.1, 17, 275 }, + [2] = { 44.7, 59.1, 17, 275 }, + [3] = { 45.5, 59.1, 17, 275 }, + [4] = { 45, 59.1, 17, 275 }, + [5] = { 44.5, 59, 17, 275 }, + [6] = { 45.2, 58.7, 17, 275 }, + [7] = { 46.1, 58.6, 17, 275 }, + [8] = { 45.4, 58.6, 17, 275 }, + [9] = { 44.5, 58.5, 17, 275 }, + [10] = { 44.9, 58.3, 17, 275 }, + [11] = { 45.1, 58.2, 17, 275 }, + [12] = { 45.7, 58.2, 17, 275 }, + [13] = { 45.4, 57.9, 17, 275 }, + [14] = { 44.9, 57.2, 17, 275 }, + [15] = { 50.6, 40.7, 17, 275 }, + [16] = { 57.9, 33.3, 17, 275 }, + [17] = { 57.2, 33.3, 17, 275 }, + [18] = { 57.1, 32.9, 17, 275 }, + [19] = { 52.2, 32.3, 17, 275 }, + [20] = { 52, 32.2, 17, 275 }, + [21] = { 57, 31.6, 17, 275 }, + [22] = { 51.6, 31.6, 17, 275 }, + [23] = { 51.5, 31.1, 17, 275 }, + [24] = { 52.5, 31.1, 17, 275 }, + [25] = { 51.3, 30.9, 17, 275 }, + [26] = { 52.6, 30.8, 17, 275 }, + [27] = { 52, 30.7, 17, 275 }, + [28] = { 51.9, 30.7, 17, 275 }, + [29] = { 51.7, 30.2, 17, 275 }, + [30] = { 52.4, 29.3, 17, 275 }, + [31] = { 52.3, 29.2, 17, 275 }, + [32] = { 50.7, 29.2, 17, 275 }, + [33] = { 50.7, 28.9, 17, 275 }, + [34] = { 51.7, 24.4, 17, 275 }, + [35] = { 51.8, 24.4, 17, 275 }, + [36] = { 52.4, 23.3, 17, 275 }, + [37] = { 52.5, 23, 17, 275 }, + [38] = { 62.3, 20.7, 17, 275 }, + [39] = { 61.9, 20.3, 17, 275 }, + [40] = { 62.2, 20, 17, 275 }, + [41] = { 62.4, 19.7, 17, 275 }, + [42] = { 61.6, 19.6, 17, 275 }, + [43] = { 62, 19.5, 17, 275 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [3502] = { + ["coords"] = { + [1] = { 62.4, 39.5, 17, 275 }, + [2] = { 63.6, 38.7, 17, 275 }, + [3] = { 63.7, 38.5, 17, 275 }, + [4] = { 61.2, 38.4, 17, 275 }, + [5] = { 63, 38, 17, 275 }, + [6] = { 61.1, 37.4, 17, 275 }, + [7] = { 61.7, 36.9, 17, 275 }, + [8] = { 63.3, 36.4, 17, 275 }, + [9] = { 62.9, 36, 17, 275 }, + [10] = { 63.1, 37.2, 17, 120 }, + }, + ["lvl"] = "57", + }, + [3504] = { + ["coords"] = { + [1] = { 56.5, 74.2, 1519, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [3505] = { + ["coords"] = { + [1] = { 57.1, 51, 1519, 43200 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [3507] = { + ["coords"] = { + [1] = { 57.1, 51, 1519, 43200 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [3508] = { + ["coords"] = { + [1] = { 57.1, 51, 1519, 43200 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [3509] = { + ["coords"] = { + [1] = { 57.1, 51, 1519, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [3510] = { + ["coords"] = { + [1] = { 57.1, 51, 1519, 43200 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [3511] = { + ["coords"] = { + [1] = { 57.1, 51, 1519, 43200 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [3512] = { + ["coords"] = { + [1] = { 57.1, 51, 1519, 43200 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [3513] = { + ["coords"] = { + [1] = { 57.1, 51, 1519, 43200 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [3514] = { + ["coords"] = { + [1] = { 59.1, 39.4, 141, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [3515] = { + ["coords"] = { + [1] = { 56.1, 61.7, 141, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [3517] = { + ["coords"] = { + [1] = { 25.1, 51.4, 141, 30 }, + [2] = { 38.2, 21.6, 1657, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "17", + }, + [3518] = { + ["coords"] = { + [1] = { 63.1, 71.5, 1519, 525 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [3519] = { + ["coords"] = { + [1] = { 38.3, 34.4, 141, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [3520] = { + ["coords"] = { + [1] = { 60.2, 57, 1519, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "2", + }, + [3521] = { + ["coords"] = { + [1] = { 62.3, 20.1, 17, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "22", + }, + [3525] = "_", + [3532] = { + ["coords"] = { + [1] = { 44, 74.1, 130, 300 }, + [2] = { 45, 2, 5179, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "14-15", + ["rnk"] = "1", + }, + [3534] = { + ["coords"] = { + [1] = { 46.5, 86.5, 130, 413 }, + [2] = { 47.9, 16.2, 5179, 413 }, + }, + ["fac"] = "AH", + ["lvl"] = "19", + }, + [3535] = { + ["coords"] = { + [1] = { 44, 30.2, 141, 9000 }, + }, + ["lvl"] = "13", + ["rnk"] = "4", + }, + [3540] = { + ["coords"] = { + [1] = { 50, 62.7, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [3544] = { + ["coords"] = { + [1] = { 60.2, 81.9, 36, 300 }, + [2] = { 61.5, 20.1, 267, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [3545] = { + ["coords"] = { + [1] = { 82.2, 62.8, 38, 300 }, + [2] = { 40.6, 76.4, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [3558] = "_", + [3559] = "_", + [3564] = "_", + [3565] = "_", + [3566] = { + ["coords"] = { + [1] = { 37.5, 57.5, 17, 375 }, + [2] = { 35.4, 43, 17, 375 }, + [3] = { 34.7, 42.9, 17, 375 }, + [4] = { 36, 42.4, 17, 375 }, + [5] = { 36.9, 40.5, 17, 375 }, + [6] = { 34.6, 40.4, 17, 375 }, + [7] = { 37.1, 40.3, 17, 375 }, + [8] = { 35.9, 39.9, 17, 375 }, + [9] = { 37.3, 39.8, 17, 375 }, + [10] = { 34.6, 37.6, 17, 375 }, + [11] = { 35, 37.5, 17, 375 }, + [12] = { 34.3, 37.4, 17, 375 }, + [13] = { 33.7, 37.2, 17, 375 }, + [14] = { 34.5, 37, 17, 375 }, + [15] = { 33.3, 36.4, 17, 375 }, + [16] = { 32.7, 36, 17, 375 }, + [17] = { 32.8, 34.2, 17, 375 }, + [18] = { 31.6, 34, 17, 375 }, + [19] = { 32.3, 34, 17, 375 }, + [20] = { 32, 34, 17, 375 }, + [21] = { 32.9, 33.6, 17, 375 }, + [22] = { 32.4, 33.5, 17, 375 }, + [23] = { 32.8, 32.6, 17, 375 }, + [24] = { 32.4, 32.3, 17, 375 }, + [25] = { 62.8, 58.4, 215, 375 }, + [26] = { 56.3, 34.4, 215, 375 }, + [27] = { 55.3, 34.2, 215, 375 }, + [28] = { 45, 33.4, 215, 375 }, + [29] = { 55, 32.5, 215, 375 }, + [30] = { 58.6, 29.8, 215, 375 }, + [31] = { 57.2, 29.6, 215, 375 }, + [32] = { 47.8, 28.8, 215, 375 }, + [33] = { 59.9, 28.6, 215, 375 }, + [34] = { 51.2, 28.4, 215, 375 }, + [35] = { 46.3, 27.8, 215, 375 }, + [36] = { 46.1, 27.5, 215, 375 }, + [37] = { 56.4, 26.3, 215, 375 }, + [38] = { 44.2, 26.1, 215, 375 }, + [39] = { 52.5, 25.7, 215, 375 }, + [40] = { 48.3, 25.7, 215, 375 }, + [41] = { 53.3, 25.5, 215, 375 }, + [42] = { 51.9, 25.2, 215, 375 }, + [43] = { 47.3, 25.1, 215, 375 }, + [44] = { 54.5, 24.8, 215, 375 }, + [45] = { 61.6, 24.8, 215, 375 }, + [46] = { 57, 24.7, 215, 375 }, + [47] = { 55.7, 24.7, 215, 375 }, + [48] = { 62.1, 24.4, 215, 375 }, + [49] = { 42.8, 24.4, 215, 375 }, + [50] = { 51, 24.3, 215, 375 }, + [51] = { 52.8, 23.9, 215, 375 }, + [52] = { 55.9, 23.8, 215, 375 }, + [53] = { 59.7, 23.6, 215, 375 }, + [54] = { 62.3, 23.5, 215, 375 }, + [55] = { 55.3, 23.1, 215, 375 }, + [56] = { 56.3, 23, 215, 375 }, + [57] = { 50.7, 22.5, 215, 375 }, + [58] = { 55, 22.4, 215, 375 }, + [59] = { 52.5, 22.3, 215, 375 }, + [60] = { 56.3, 21.9, 215, 375 }, + [61] = { 53.4, 21.7, 215, 375 }, + [62] = { 53.8, 21.7, 215, 375 }, + [63] = { 55.8, 21.3, 215, 375 }, + [64] = { 53.7, 20.6, 215, 375 }, + [65] = { 51.6, 20.4, 215, 375 }, + [66] = { 48.5, 20.3, 215, 375 }, + [67] = { 46.7, 19.9, 215, 375 }, + [68] = { 42.2, 19.8, 215, 375 }, + [69] = { 54.3, 19.5, 215, 375 }, + [70] = { 42.7, 19.2, 215, 375 }, + [71] = { 57.1, 19.2, 215, 375 }, + [72] = { 53.9, 19, 215, 375 }, + [73] = { 32.3, 19, 215, 375 }, + [74] = { 44.2, 19, 215, 375 }, + [75] = { 57.8, 18.9, 215, 375 }, + [76] = { 56.4, 18.7, 215, 375 }, + [77] = { 43.3, 18.6, 215, 375 }, + [78] = { 48.7, 18.6, 215, 375 }, + [79] = { 55.3, 18.4, 215, 375 }, + [80] = { 43.3, 18.4, 215, 375 }, + [81] = { 49.8, 18.1, 215, 375 }, + [82] = { 37.7, 18, 215, 375 }, + [83] = { 56.9, 17.9, 215, 375 }, + [84] = { 52, 17.6, 215, 375 }, + [85] = { 46.3, 17.5, 215, 375 }, + [86] = { 43.4, 17.4, 215, 375 }, + [87] = { 42, 17.3, 215, 375 }, + [88] = { 37.4, 16.9, 215, 375 }, + [89] = { 48, 16.9, 215, 375 }, + [90] = { 54.4, 16.9, 215, 375 }, + [91] = { 45, 16.8, 215, 375 }, + [92] = { 35.4, 16.2, 215, 375 }, + [93] = { 53.4, 16, 215, 375 }, + [94] = { 44.7, 15.8, 215, 375 }, + [95] = { 50.6, 15.8, 215, 375 }, + [96] = { 44.1, 15.7, 215, 375 }, + [97] = { 38.1, 15.6, 215, 375 }, + [98] = { 47.9, 15.3, 215, 375 }, + [99] = { 44.6, 15.1, 215, 375 }, + [100] = { 44.7, 13.9, 215, 375 }, + [101] = { 48.5, 13.7, 215, 375 }, + [102] = { 45.2, 13.7, 215, 375 }, + [103] = { 47.6, 13, 215, 375 }, + [104] = { 50.3, 13, 215, 375 }, + [105] = { 48.9, 12.8, 215, 375 }, + [106] = { 44.4, 12.4, 215, 375 }, + [107] = { 53.4, 12.4, 215, 375 }, + [108] = { 51.1, 12.1, 215, 375 }, + [109] = { 45.4, 12, 215, 375 }, + [110] = { 52.5, 12, 215, 375 }, + [111] = { 51.9, 12, 215, 375 }, + [112] = { 37.6, 12, 215, 375 }, + [113] = { 46.5, 11.8, 215, 375 }, + [114] = { 48.9, 11.5, 215, 375 }, + [115] = { 43.8, 11.3, 215, 375 }, + [116] = { 53.7, 11.2, 215, 375 }, + [117] = { 44.3, 11.2, 215, 375 }, + [118] = { 42.6, 11.1, 215, 375 }, + [119] = { 39.8, 11.1, 215, 375 }, + [120] = { 52.8, 11, 215, 375 }, + [121] = { 44.2, 11, 215, 375 }, + [122] = { 49.1, 10.1, 215, 375 }, + [123] = { 41.6, 9.8, 215, 375 }, + [124] = { 38.8, 9.2, 215, 375 }, + [125] = { 53.4, 9.2, 215, 375 }, + [126] = { 48.8, 8.9, 215, 375 }, + [127] = { 52.8, 8.7, 215, 375 }, + [128] = { 44.5, 8.7, 215, 375 }, + [129] = { 47.4, 8.6, 215, 375 }, + [130] = { 42.5, 7.3, 215, 375 }, + [131] = { 85.5, 45.9, 405, 375 }, + [132] = { 89, 42.7, 405, 375 }, + [133] = { 72.1, 99.9, 406, 375 }, + [134] = { 67.9, 98.9, 406, 375 }, + [135] = { 64.2, 37, 1638, 375 }, + }, + ["lvl"] = "9", + }, + [3567] = { + ["coords"] = { + [1] = { 55.6, 56.9, 141, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "11", + }, + [3575] = "_", + [3578] = { + ["coords"] = { + [1] = { 62.5, 62.7, 130, 413 }, + [2] = { 7.6, 22.9, 267, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [3580] = "_", + [3581] = { + ["coords"] = { + [1] = { 71.1, 68, 1519, 7286 }, + }, + ["lvl"] = "50", + ["rnk"] = "4", + }, + [3583] = { + ["coords"] = { + [1] = { 37.3, 43.6, 148, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "14", + }, + [3584] = { + ["coords"] = { + [1] = { 38.6, 87.3, 148, 60 }, + }, + ["fac"] = "A", + ["lvl"] = "17", + }, + [3585] = { + ["coords"] = { + [1] = { 22.6, 51.9, 331, 300 }, + [2] = { 59.1, 19, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "17", + }, + [3586] = { + ["coords"] = { + [1] = { 31.9, 43.5, 5138, 604800 }, + }, + ["lvl"] = "19", + ["rnk"] = "1", + }, + [3595] = { + ["coords"] = { + [1] = { 59.2, 40.4, 141, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [3596] = { + ["coords"] = { + [1] = { 58.7, 40.4, 141, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [3598] = { + ["coords"] = { + [1] = { 56.2, 59.2, 141, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "19", + }, + [3599] = { + ["coords"] = { + [1] = { 56.4, 60.1, 141, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [3600] = { + ["coords"] = { + [1] = { 55.6, 56.7, 141, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "21", + }, + [3601] = { + ["coords"] = { + [1] = { 56.7, 59.5, 141, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [3602] = { + ["coords"] = { + [1] = { 55.9, 61.6, 141, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "22", + }, + [3615] = { + ["coords"] = { + [1] = { 51.5, 30.3, 17, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [3623] = "_", + [3626] = { + ["coords"] = { + [1] = { 71.8, 56.2, 1519, 555 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [3627] = { + ["coords"] = { + [1] = { 48, 89.2, 1519, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [3629] = { + ["coords"] = { + [1] = { 77.3, 53.1, 1519, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [3630] = { + ["coords"] = { + [1] = { 46.1, 35.3, 17, 275 }, + [2] = { 46.8, 34.5, 17, 275 }, + [3] = { 45.7, 34, 17, 275 }, + [4] = { 45.9, 33, 17, 275 }, + [5] = { 26.5, 73.6, 718, 275 }, + [6] = { 37.6, 60.4, 718, 275 }, + [7] = { 19.1, 51.8, 718, 275 }, + [8] = { 21.8, 34.3, 718, 275 }, + }, + ["lvl"] = "15-16", + ["rnk"] = "1", + }, + [3631] = { + ["coords"] = { + [1] = { 48.5, 34.5, 17, 275 }, + [2] = { 48.2, 34.4, 17, 275 }, + [3] = { 48.5, 34, 17, 275 }, + [4] = { 49.4, 33.2, 17, 275 }, + [5] = { 47.6, 32.6, 17, 275 }, + [6] = { 47.4, 32.6, 17, 275 }, + [7] = { 48.7, 32.1, 17, 275 }, + [8] = { 68, 59.4, 718, 275 }, + [9] = { 62.6, 57.9, 718, 275 }, + [10] = { 68.1, 50.9, 718, 275 }, + [11] = { 84.3, 36.6, 718, 275 }, + [12] = { 52.2, 27.3, 718, 275 }, + [13] = { 48.7, 26.2, 718, 275 }, + [14] = { 71, 17.4, 718, 275 }, + }, + ["lvl"] = "16-17", + ["rnk"] = "1", + }, + [3632] = { + ["coords"] = { + [1] = { 45.9, 35.6, 17, 275 }, + [2] = { 46.2, 35.3, 17, 275 }, + [3] = { 46.3, 35.1, 17, 275 }, + [4] = { 46.2, 34.8, 17, 275 }, + [5] = { 46.6, 34.8, 17, 275 }, + [6] = { 46.2, 34.3, 17, 275 }, + [7] = { 46.6, 34.2, 17, 275 }, + [8] = { 45.8, 34.1, 17, 275 }, + [9] = { 45.9, 33.5, 17, 275 }, + [10] = { 45.9, 33, 17, 275 }, + [11] = { 46.3, 32.5, 17, 275 }, + [12] = { 46.1, 32.5, 17, 275 }, + [13] = { 22.3, 79.7, 718, 275 }, + [14] = { 27.2, 73.7, 718, 275 }, + [15] = { 29.3, 70, 718, 275 }, + [16] = { 27.5, 65.5, 718, 275 }, + [17] = { 34.6, 65.1, 718, 275 }, + [18] = { 27.4, 56, 718, 275 }, + [19] = { 34.2, 55.3, 718, 275 }, + [20] = { 20.2, 52.8, 718, 275 }, + [21] = { 22.5, 43.3, 718, 275 }, + [22] = { 21.9, 34.5, 718, 275 }, + [23] = { 29.7, 25.5, 718, 275 }, + [24] = { 25.5, 25.1, 718, 275 }, + }, + ["lvl"] = "15-16", + ["rnk"] = "1", + }, + [3633] = { + ["coords"] = { + [1] = { 48.3, 34.3, 17, 275 }, + [2] = { 47.5, 34.1, 17, 275 }, + [3] = { 49, 34, 17, 275 }, + [4] = { 47.4, 33.4, 17, 275 }, + [5] = { 49.2, 33.3, 17, 275 }, + [6] = { 47.6, 32.8, 17, 275 }, + [7] = { 47.4, 32.8, 17, 275 }, + [8] = { 49.2, 32.7, 17, 275 }, + [9] = { 47.9, 32.6, 17, 275 }, + [10] = { 48.8, 32.6, 17, 275 }, + [11] = { 47.6, 32.4, 17, 275 }, + [12] = { 48.4, 32.3, 17, 275 }, + [13] = { 48, 32.1, 17, 275 }, + [14] = { 48.8, 32, 17, 275 }, + [15] = { 65.4, 55.8, 718, 275 }, + [16] = { 51.1, 53.8, 718, 275 }, + [17] = { 76.4, 51, 718, 275 }, + [18] = { 49, 40.6, 718, 275 }, + [19] = { 80.2, 39, 718, 275 }, + [20] = { 52.7, 30.6, 718, 275 }, + [21] = { 48.4, 29.8, 718, 275 }, + [22] = { 80.4, 28.6, 718, 275 }, + [23] = { 57.7, 26.9, 718, 275 }, + [24] = { 73.3, 25.8, 718, 275 }, + [25] = { 52.6, 22.6, 718, 275 }, + [26] = { 67.3, 21, 718, 275 }, + [27] = { 60.1, 18.4, 718, 275 }, + [28] = { 74.2, 15.6, 718, 275 }, + }, + ["lvl"] = "16-17", + ["rnk"] = "1", + }, + [3634] = { + ["coords"] = { + [1] = { 46.5, 35, 17, 275 }, + [2] = { 48.1, 34, 17, 275 }, + [3] = { 45.6, 33.8, 17, 275 }, + [4] = { 47.9, 32.1, 17, 275 }, + [5] = { 32.4, 69.1, 718, 275 }, + [6] = { 60.8, 51.7, 718, 275 }, + [7] = { 16.7, 47.4, 718, 275 }, + [8] = { 57.1, 17.3, 718, 275 }, + }, + ["lvl"] = "15-17", + ["rnk"] = "1", + }, + [3636] = { + ["coords"] = { + [1] = { 47, 41, 718, 18000 }, + [2] = { 48, 40.8, 718, 18000 }, + [3] = { 58.7, 37.4, 718, 18000 }, + [4] = { 50.6, 36.8, 718, 18000 }, + [5] = { 49.2, 36.6, 718, 18000 }, + [6] = { 58.4, 36.4, 718, 18000 }, + [7] = { 55.7, 35.1, 718, 18000 }, + [8] = { 57.3, 34.2, 718, 18000 }, + [9] = { 45.7, 33.5, 718, 18000 }, + [10] = { 49.6, 31.8, 718, 18000 }, + [11] = { 53.5, 31.6, 718, 18000 }, + [12] = { 60.3, 30.9, 718, 18000 }, + [13] = { 49.4, 25.8, 718, 18000 }, + [14] = { 52.8, 23.2, 718, 18000 }, + [15] = { 51.9, 22, 718, 18000 }, + [16] = { 50.1, 20.1, 718, 18000 }, + }, + ["lvl"] = "18-19", + ["rnk"] = "1", + }, + [3637] = { + ["coords"] = { + [1] = { 52, 40.2, 718, 18000 }, + [2] = { 56.4, 36.4, 718, 18000 }, + [3] = { 50.6, 31.9, 718, 18000 }, + [4] = { 52.7, 31.5, 718, 18000 }, + [5] = { 59.2, 30.6, 718, 18000 }, + [6] = { 41.2, 28.7, 718, 18000 }, + [7] = { 40.8, 27, 718, 18000 }, + [8] = { 42.7, 25.9, 718, 18000 }, + [9] = { 48.4, 25.9, 718, 18000 }, + [10] = { 53.8, 25.8, 718, 18000 }, + [11] = { 43.4, 24.3, 718, 18000 }, + [12] = { 44.5, 23.5, 718, 18000 }, + [13] = { 47, 22.1, 718, 18000 }, + [14] = { 47.9, 21.4, 718, 18000 }, + }, + ["lvl"] = "18-19", + ["rnk"] = "1", + }, + [3638] = { + ["coords"] = { + [1] = { 47.5, 34.3, 17, 275 }, + [2] = { 47.9, 34, 17, 275 }, + [3] = { 46.1, 33.9, 17, 275 }, + [4] = { 49.3, 33.8, 17, 275 }, + [5] = { 49.1, 33.4, 17, 275 }, + [6] = { 45.9, 33.4, 17, 275 }, + [7] = { 47.6, 33.1, 17, 275 }, + [8] = { 47.6, 32.6, 17, 275 }, + [9] = { 48.3, 32.2, 17, 275 }, + [10] = { 48.7, 32.1, 17, 275 }, + [11] = { 51.4, 56.4, 718, 275 }, + [12] = { 57.9, 50.7, 718, 275 }, + [13] = { 25.9, 49.4, 718, 275 }, + [14] = { 82.2, 48.7, 718, 275 }, + [15] = { 79, 40.4, 718, 275 }, + [16] = { 21.6, 40, 718, 275 }, + [17] = { 52, 34.6, 718, 275 }, + [18] = { 52.2, 26.2, 718, 275 }, + [19] = { 63.8, 20.2, 718, 275 }, + [20] = { 72.4, 17.7, 718, 275 }, + }, + ["lvl"] = "16-17", + ["rnk"] = "1", + }, + [3639] = { + ["coords"] = { + [1] = { 40.3, 59.7, 148, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [3640] = { + ["coords"] = { + [1] = { 67.9, 87.6, 718, 120 }, + [2] = { 68.5, 87.3, 718, 120 }, + [3] = { 75.9, 77.1, 718, 18000 }, + [4] = { 73, 76.5, 718, 120 }, + [5] = { 65.4, 71.3, 718, 18000 }, + [6] = { 80.2, 56.6, 718, 18000 }, + [7] = { 62.5, 53.7, 718, 18000 }, + [8] = { 89.8, 41.3, 718, 18000 }, + [9] = { 51.7, 37.6, 718, 18000 }, + [10] = { 79.7, 37, 718, 18000 }, + [11] = { 31.9, 35.5, 718, 18000 }, + [12] = { 33.3, 32.4, 718, 18000 }, + [13] = { 49.5, 31.8, 718, 18000 }, + [14] = { 52.8, 30, 718, 18000 }, + [15] = { 50.6, 26.1, 718, 18000 }, + [16] = { 49.8, 19.7, 718, 18000 }, + }, + ["lvl"] = "17-18", + ["rnk"] = "1", + }, + [3641] = { + ["coords"] = { + [1] = { 48, 33.6, 17, 275 }, + [2] = { 48.3, 33.5, 17, 275 }, + [3] = { 48.5, 33.4, 17, 275 }, + [4] = { 47.9, 33.4, 17, 275 }, + [5] = { 48.4, 33.1, 17, 275 }, + [6] = { 48.1, 33.1, 17, 275 }, + [7] = { 46.7, 32.5, 17, 275 }, + [8] = { 46.7, 32.4, 17, 275 }, + [9] = { 60, 44.7, 718, 275 }, + [10] = { 64.3, 42.3, 718, 275 }, + [11] = { 69, 41.2, 718, 275 }, + [12] = { 58.1, 41.1, 718, 275 }, + [13] = { 65.7, 36.1, 718, 275 }, + [14] = { 61.1, 36, 718, 275 }, + [15] = { 37, 25.3, 718, 275 }, + [16] = { 37.2, 22.8, 718, 275 }, + [17] = { 77.7, 94.9, 718, 300 }, + [18] = { 77.7, 93.5, 718, 300 }, + }, + ["lvl"] = "16-17", + ["rnk"] = "1", + }, + [3642] = "_", + [3644] = { + ["coords"] = { + [1] = { 35.7, 43.7, 148, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [3649] = { + ["coords"] = { + [1] = { 37.4, 40.1, 148, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [3650] = { + ["coords"] = { + [1] = { 44.2, 36.3, 148, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [3651] = "_", + [3653] = { + ["coords"] = { + [1] = { 40.2, 35.6, 718, 604800 }, + }, + ["lvl"] = "20", + ["rnk"] = "1", + }, + [3655] = { + ["coords"] = { + [1] = { 45.7, 33.6, 17, 275 }, + [2] = { 18.5, 44.6, 718, 275 }, + }, + ["lvl"] = "18", + ["rnk"] = "1", + }, + [3657] = { + ["coords"] = { + [1] = { 39, 43.6, 148, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [3660] = { + ["coords"] = { + [1] = { 56, 26.3, 148, 150 }, + }, + ["lvl"] = "31", + }, + [3661] = { + ["coords"] = { + [1] = { 55, 24.9, 148, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [3662] = { + ["coords"] = { + [1] = { 57.5, 27.5, 148, 413 }, + }, + ["lvl"] = "17", + }, + [3664] = { + ["coords"] = { + [1] = { 25.3, 60.7, 331, 300 }, + [2] = { 61.6, 27.5, 406, 300 }, + }, + ["lvl"] = "24", + }, + [3665] = { + ["coords"] = { + [1] = { 63.1, 37.6, 17, 30 }, + }, + ["lvl"] = "18", + }, + [3666] = { + ["coords"] = { + [1] = { 37, 44.1, 148, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [3667] = { + ["coords"] = { + [1] = { 41.8, 60.7, 148, 120 }, + }, + ["lvl"] = "16", + }, + [3668] = "_", + [3669] = { + ["coords"] = { + [1] = { 32.1, 46.6, 718, 604800 }, + }, + ["lvl"] = "20", + ["rnk"] = "1", + }, + [3670] = { + ["coords"] = { + [1] = { 88.1, 22.7, 718, 604800 }, + }, + ["lvl"] = "21", + ["rnk"] = "1", + }, + [3671] = { + ["coords"] = { + [1] = { 57, 36, 718, 604800 }, + [2] = { 44.3, 34.3, 718, 604800 }, + [3] = { 42.1, 25.4, 718, 604800 }, + [4] = { 51.8, 21.5, 718, 604800 }, + }, + ["lvl"] = "20", + ["rnk"] = "1", + }, + [3672] = { + ["coords"] = { + [1] = { 49.1, 33.9, 17, 54000 }, + [2] = { 78.2, 49.5, 718, 54000 }, + }, + ["lvl"] = "20", + ["rnk"] = "4", + }, + [3673] = { + ["coords"] = { + [1] = { 69.6, 42.7, 718, 604800 }, + }, + ["lvl"] = "21", + ["rnk"] = "1", + }, + [3674] = { + ["coords"] = { + [1] = { 94.3, 63.8, 718, 604800 }, + }, + ["lvl"] = "21", + ["rnk"] = "1", + }, + [3678] = { + ["coords"] = { + [1] = { 56.8, 44.6, 718, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "20", + ["rnk"] = "1", + }, + [3679] = { + ["coords"] = { + [1] = { 47, 12.7, 718, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "25", + }, + [3681] = { + ["coords"] = { + [1] = { 25.3, 65.8, 141, 300 }, + [2] = { 23.1, 65.6, 141, 300 }, + [3] = { 28.1, 65, 141, 300 }, + [4] = { 24.9, 64.6, 141, 300 }, + [5] = { 29.3, 64.3, 141, 300 }, + [6] = { 26.3, 64.1, 141, 300 }, + [7] = { 31.1, 62.2, 141, 300 }, + [8] = { 29.2, 61.1, 141, 300 }, + [9] = { 24.5, 59.3, 141, 300 }, + [10] = { 32.9, 58.4, 141, 300 }, + [11] = { 29.7, 58.4, 141, 300 }, + [12] = { 24.3, 58, 141, 300 }, + [13] = { 26.9, 57.3, 141, 300 }, + [14] = { 31.5, 57.1, 141, 300 }, + [15] = { 32.6, 56.5, 141, 300 }, + [16] = { 34.4, 56.1, 141, 300 }, + [17] = { 25.7, 55.8, 141, 300 }, + [18] = { 23.7, 54.9, 141, 300 }, + [19] = { 25.5, 54.6, 141, 300 }, + [20] = { 31.4, 54.5, 141, 300 }, + [21] = { 32.9, 54.4, 141, 300 }, + [22] = { 31.4, 54.3, 141, 300 }, + [23] = { 22.5, 52.8, 141, 300 }, + [24] = { 29.5, 51.4, 141, 300 }, + [25] = { 23, 51, 141, 300 }, + [26] = { 26.8, 50.9, 141, 300 }, + [27] = { 26, 50.8, 141, 300 }, + [28] = { 23.1, 50.4, 141, 300 }, + [29] = { 28.2, 50.1, 141, 300 }, + [30] = { 32.2, 50.1, 141, 300 }, + [31] = { 30.8, 49.7, 141, 300 }, + [32] = { 28.2, 48.5, 141, 300 }, + [33] = { 26.6, 47.8, 141, 300 }, + [34] = { 23.2, 47.2, 141, 300 }, + [35] = { 24.3, 46.5, 141, 300 }, + [36] = { 28, 45.7, 141, 300 }, + [37] = { 26.4, 45.3, 141, 300 }, + [38] = { 25.2, 45.3, 141, 300 }, + [39] = { 22.1, 53, 331, 300 }, + [40] = { 58.5, 20.1, 406, 300 }, + [41] = { 39, 90.9, 1657, 300 }, + [42] = { 28.4, 89.6, 1657, 300 }, + [43] = { 52.6, 87.1, 1657, 300 }, + [44] = { 37.1, 84.8, 1657, 300 }, + [45] = { 58, 83.7, 1657, 300 }, + [46] = { 43.5, 82.6, 1657, 300 }, + [47] = { 66.7, 73.4, 1657, 300 }, + [48] = { 57.5, 68.3, 1657, 300 }, + [49] = { 35, 59.4, 1657, 300 }, + [50] = { 75.6, 55.2, 1657, 300 }, + [51] = { 60.3, 55, 1657, 300 }, + [52] = { 34, 53.2, 1657, 300 }, + [53] = { 46.7, 50.1, 1657, 300 }, + [54] = { 68.7, 48.9, 1657, 300 }, + [55] = { 73.8, 46, 1657, 300 }, + [56] = { 82.5, 43.8, 1657, 300 }, + [57] = { 40.6, 42.7, 1657, 300 }, + [58] = { 31.1, 38.4, 1657, 300 }, + [59] = { 39.8, 36.7, 1657, 300 }, + [60] = { 68.4, 36.2, 1657, 300 }, + [61] = { 75.4, 36.1, 1657, 300 }, + [62] = { 68.2, 35.6, 1657, 300 }, + [63] = { 25.3, 28.2, 1657, 300 }, + [64] = { 59.2, 21.4, 1657, 300 }, + [65] = { 27.8, 19.4, 1657, 300 }, + [66] = { 46, 19.1, 1657, 300 }, + [67] = { 42.1, 18.4, 1657, 300 }, + [68] = { 28.4, 16.5, 1657, 300 }, + [69] = { 52.9, 15.3, 1657, 300 }, + [70] = { 72.3, 15, 1657, 300 }, + [71] = { 65.5, 13.2, 1657, 300 }, + [72] = { 53.1, 7.5, 1657, 300 }, + [73] = { 45.1, 4, 1657, 300 }, + [74] = { 28.8, 1.3, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [3685] = { + ["coords"] = { + [1] = { 47.5, 58.6, 215, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [3692] = { + ["coords"] = { + [1] = { 45, 85.3, 148, 60 }, + [2] = { 28.7, 65.9, 361, 60 }, + }, + ["fac"] = "A", + ["lvl"] = "19", + }, + [3693] = { + ["coords"] = { + [1] = { 39.4, 43.5, 148, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [3697] = "_", + [3698] = { + ["coords"] = { + [1] = { 18, 60, 331, 300 }, + [2] = { 54.6, 26.8, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [3699] = "_", + [3701] = { + ["coords"] = { + [1] = { 38.8, 43.4, 148, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "18", + }, + [3702] = { + ["coords"] = { + [1] = { 37.7, 40.7, 148, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "18-22", + }, + [3706] = { + ["coords"] = { + [1] = { 54.3, 42.9, 14, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "18", + }, + [3707] = { + ["coords"] = { + [1] = { 42.4, 68.8, 14, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "10", + }, + [3711] = { + ["coords"] = { + [1] = { 25.8, 98.7, 148, 300 }, + [2] = { 25.3, 98.1, 148, 300 }, + [3] = { 24.8, 98.1, 148, 300 }, + [4] = { 26.3, 98, 148, 300 }, + [5] = { 25.9, 98, 148, 300 }, + [6] = { 24.7, 97.5, 148, 300 }, + [7] = { 25.2, 97.4, 148, 300 }, + [8] = { 26.3, 97.2, 148, 300 }, + [9] = { 26, 97.2, 148, 300 }, + [10] = { 23.8, 97.2, 148, 300 }, + [11] = { 26.4, 96.7, 148, 300 }, + [12] = { 24.6, 96.6, 148, 300 }, + [13] = { 23.3, 96.6, 148, 300 }, + [14] = { 23.9, 96.6, 148, 300 }, + [15] = { 25.8, 96.5, 148, 300 }, + [16] = { 25.3, 96.4, 148, 300 }, + [17] = { 25.3, 95.9, 148, 300 }, + [18] = { 23.7, 95.9, 148, 300 }, + [19] = { 25.9, 95.6, 148, 300 }, + [20] = { 25.5, 95.6, 148, 300 }, + [21] = { 24.3, 95, 148, 300 }, + [22] = { 25.9, 94.9, 148, 300 }, + [23] = { 25.5, 94.8, 148, 300 }, + [24] = { 24.6, 94.2, 148, 300 }, + [25] = { 25.3, 94.2, 148, 300 }, + [26] = { 24.2, 94.2, 148, 300 }, + [27] = { 24.8, 93.7, 148, 300 }, + [28] = { 24.3, 93.5, 148, 300 }, + [29] = { 11.2, 31, 331, 300 }, + [30] = { 7.7, 17, 331, 300 }, + [31] = { 7.3, 16.2, 331, 300 }, + [32] = { 6.6, 16.2, 331, 300 }, + [33] = { 8.4, 16.1, 331, 300 }, + [34] = { 7.8, 16.1, 331, 300 }, + [35] = { 6.6, 15.5, 331, 300 }, + [36] = { 7.1, 15.5, 331, 300 }, + [37] = { 8.3, 15.2, 331, 300 }, + [38] = { 8, 15.2, 331, 300 }, + [39] = { 5.5, 15.2, 331, 300 }, + [40] = { 8.4, 14.6, 331, 300 }, + [41] = { 6.4, 14.5, 331, 300 }, + [42] = { 4.9, 14.5, 331, 300 }, + [43] = { 5.6, 14.5, 331, 300 }, + [44] = { 7.8, 14.4, 331, 300 }, + [45] = { 7.2, 14.3, 331, 300 }, + [46] = { 7.2, 13.7, 331, 300 }, + [47] = { 5.4, 13.7, 331, 300 }, + [48] = { 7.8, 13.4, 331, 300 }, + [49] = { 7.4, 13.4, 331, 300 }, + [50] = { 6.1, 12.7, 331, 300 }, + [51] = { 7.8, 12.6, 331, 300 }, + [52] = { 7.4, 12.5, 331, 300 }, + [53] = { 6.5, 11.8, 331, 300 }, + [54] = { 7.2, 11.8, 331, 300 }, + [55] = { 6, 11.7, 331, 300 }, + [56] = { 6.7, 11.2, 331, 300 }, + [57] = { 6, 11, 331, 300 }, + }, + ["lvl"] = "20-21", + }, + [3712] = { + ["coords"] = { + [1] = { 28.4, 95.8, 148, 300 }, + [2] = { 13.7, 30.9, 331, 300 }, + [3] = { 8.4, 30, 331, 300 }, + [4] = { 8.8, 29.9, 331, 300 }, + [5] = { 10.5, 29.7, 331, 300 }, + [6] = { 9.9, 29.6, 331, 300 }, + [7] = { 11.2, 29.2, 331, 300 }, + [8] = { 8.3, 29.2, 331, 300 }, + [9] = { 8.9, 29.1, 331, 300 }, + [10] = { 11.3, 28, 331, 300 }, + [11] = { 11.2, 25.7, 331, 300 }, + [12] = { 10.4, 25.6, 331, 300 }, + [13] = { 10.2, 24.7, 331, 300 }, + [14] = { 10.7, 13.6, 331, 300 }, + }, + ["lvl"] = "19-20", + }, + [3713] = { + ["coords"] = { + [1] = { 31.9, 99.5, 148, 300 }, + [2] = { 32.5, 98.8, 148, 300 }, + [3] = { 31.9, 98.2, 148, 300 }, + [4] = { 32.9, 98, 148, 300 }, + [5] = { 30.2, 97.4, 148, 300 }, + [6] = { 32.9, 97.4, 148, 300 }, + [7] = { 31.3, 97.2, 148, 300 }, + [8] = { 30.9, 96.6, 148, 300 }, + [9] = { 12.8, 30, 331, 300 }, + [10] = { 13.5, 29.3, 331, 300 }, + [11] = { 12.4, 29.2, 331, 300 }, + [12] = { 12.9, 28.2, 331, 300 }, + [13] = { 12.3, 27.5, 331, 300 }, + [14] = { 15.3, 26.5, 331, 300 }, + [15] = { 14.2, 25.8, 331, 300 }, + [16] = { 15.2, 24.9, 331, 300 }, + [17] = { 11.8, 24.8, 331, 300 }, + [18] = { 11.9, 23.9, 331, 300 }, + [19] = { 14.3, 23.1, 331, 300 }, + [20] = { 15.3, 22.5, 331, 300 }, + [21] = { 14.1, 20.9, 331, 300 }, + [22] = { 14.8, 20.7, 331, 300 }, + [23] = { 14.1, 20.5, 331, 300 }, + [24] = { 15.2, 20.4, 331, 300 }, + [25] = { 14.7, 19.5, 331, 300 }, + [26] = { 14.3, 19.2, 331, 300 }, + [27] = { 14.7, 17.8, 331, 300 }, + [28] = { 15.4, 17.1, 331, 300 }, + [29] = { 14.7, 16.3, 331, 300 }, + [30] = { 15.9, 16.1, 331, 300 }, + [31] = { 12.8, 15.4, 331, 300 }, + [32] = { 15.9, 15.4, 331, 300 }, + [33] = { 14.1, 15.2, 331, 300 }, + [34] = { 13.6, 14.5, 331, 300 }, + }, + ["lvl"] = "18-19", + }, + [3715] = { + ["coords"] = { + [1] = { 25.4, 95.6, 148, 300 }, + [2] = { 11.8, 31.9, 331, 300 }, + [3] = { 9.5, 30.1, 331, 300 }, + [4] = { 12.1, 30, 331, 300 }, + [5] = { 10.9, 28.6, 331, 300 }, + [6] = { 8.4, 28.3, 331, 300 }, + [7] = { 10.8, 27.1, 331, 300 }, + [8] = { 11.8, 26.5, 331, 300 }, + [9] = { 11.3, 26.5, 331, 300 }, + [10] = { 9.5, 25.7, 331, 300 }, + [11] = { 8.9, 25.7, 331, 300 }, + [12] = { 9.5, 24.7, 331, 300 }, + [13] = { 10.7, 24.2, 331, 300 }, + [14] = { 7.4, 13.4, 331, 300 }, + }, + ["lvl"] = "19-20", + }, + [3717] = { + ["coords"] = { + [1] = { 31.9, 99.5, 148, 300 }, + [2] = { 32.5, 98.8, 148, 300 }, + [3] = { 31.9, 98.2, 148, 300 }, + [4] = { 32.9, 98, 148, 300 }, + [5] = { 30.2, 97.4, 148, 300 }, + [6] = { 32.9, 97.4, 148, 300 }, + [7] = { 31.3, 97.2, 148, 300 }, + [8] = { 30.9, 96.6, 148, 300 }, + [9] = { 12.8, 30, 331, 300 }, + [10] = { 13.5, 29.3, 331, 300 }, + [11] = { 12.4, 29.2, 331, 300 }, + [12] = { 12.9, 28.2, 331, 300 }, + [13] = { 12.3, 27.5, 331, 300 }, + [14] = { 15.3, 26.5, 331, 300 }, + [15] = { 14.2, 25.8, 331, 300 }, + [16] = { 15.2, 24.9, 331, 300 }, + [17] = { 11.8, 24.8, 331, 300 }, + [18] = { 11.9, 23.9, 331, 300 }, + [19] = { 14.3, 23.1, 331, 300 }, + [20] = { 15.3, 22.5, 331, 300 }, + [21] = { 14.1, 20.9, 331, 300 }, + [22] = { 14.8, 20.7, 331, 300 }, + [23] = { 14.1, 20.5, 331, 300 }, + [24] = { 15.2, 20.4, 331, 300 }, + [25] = { 14.7, 19.5, 331, 300 }, + [26] = { 14.3, 19.2, 331, 300 }, + [27] = { 14.7, 17.8, 331, 300 }, + [28] = { 15.4, 17.1, 331, 300 }, + [29] = { 14.7, 16.3, 331, 300 }, + [30] = { 15.9, 16.1, 331, 300 }, + [31] = { 12.8, 15.4, 331, 300 }, + [32] = { 15.9, 15.4, 331, 300 }, + [33] = { 14.1, 15.2, 331, 300 }, + [34] = { 13.6, 14.5, 331, 300 }, + }, + ["lvl"] = "18-19", + }, + [3718] = "_", + [3722] = { + ["coords"] = {}, + ["lvl"] = "23", + }, + [3725] = { + ["coords"] = { + [1] = { 30.4, 31.8, 331, 300 }, + [2] = { 30.8, 31.6, 331, 300 }, + [3] = { 30.4, 31, 331, 300 }, + [4] = { 31, 30.9, 331, 300 }, + [5] = { 31.1, 30.2, 331, 300 }, + [6] = { 31.5, 30.1, 331, 300 }, + [7] = { 32.1, 30, 331, 300 }, + [8] = { 31.9, 29.4, 331, 300 }, + [9] = { 32.6, 29.3, 331, 300 }, + [10] = { 31.5, 29.3, 331, 300 }, + }, + ["lvl"] = "18-19", + }, + [3728] = { + ["coords"] = { + [1] = { 30.4, 31.8, 331, 300 }, + [2] = { 30.8, 31.6, 331, 300 }, + [3] = { 30.4, 31, 331, 300 }, + [4] = { 31, 30.9, 331, 300 }, + [5] = { 31.1, 30.2, 331, 300 }, + [6] = { 31.5, 30.1, 331, 300 }, + [7] = { 32.1, 30, 331, 300 }, + [8] = { 31.9, 29.4, 331, 300 }, + [9] = { 32.6, 29.3, 331, 300 }, + [10] = { 31.5, 29.3, 331, 300 }, + }, + ["lvl"] = "18-19", + }, + [3732] = { + ["coords"] = { + [1] = { 30.4, 25, 331, 300 }, + [2] = { 30.1, 24.6, 331, 300 }, + [3] = { 31, 24.2, 331, 300 }, + [4] = { 29.7, 24.2, 331, 300 }, + [5] = { 30.4, 24, 331, 300 }, + [6] = { 31.7, 23.9, 331, 300 }, + [7] = { 32.2, 23.9, 331, 300 }, + [8] = { 31.7, 23.3, 331, 300 }, + [9] = { 31.3, 22.9, 331, 300 }, + [10] = { 32.9, 22.7, 331, 300 }, + [11] = { 32.5, 22.6, 331, 300 }, + [12] = { 32.6, 22.3, 331, 300 }, + [13] = { 31, 22.2, 331, 300 }, + [14] = { 32.9, 21.9, 331, 300 }, + [15] = { 33.4, 21.7, 331, 300 }, + [16] = { 32.7, 21.6, 331, 300 }, + [17] = { 33.3, 21.1, 331, 300 }, + [18] = { 33, 21.1, 331, 300 }, + [19] = { 32.4, 20.8, 331, 300 }, + [20] = { 31.5, 20.6, 331, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "18-19", + }, + [3733] = { + ["coords"] = { + [1] = { 30.4, 25, 331, 300 }, + [2] = { 30.1, 24.6, 331, 300 }, + [3] = { 31, 24.2, 331, 300 }, + [4] = { 29.7, 24.2, 331, 300 }, + [5] = { 30.4, 24, 331, 300 }, + [6] = { 31.7, 23.9, 331, 300 }, + [7] = { 32.2, 23.9, 331, 300 }, + [8] = { 31.7, 23.3, 331, 300 }, + [9] = { 31.3, 22.9, 331, 300 }, + [10] = { 32.9, 22.7, 331, 300 }, + [11] = { 32.5, 22.6, 331, 300 }, + [12] = { 32.6, 22.3, 331, 300 }, + [13] = { 31, 22.2, 331, 300 }, + [14] = { 32.9, 21.9, 331, 300 }, + [15] = { 33.4, 21.7, 331, 300 }, + [16] = { 32.7, 21.6, 331, 300 }, + [17] = { 33.3, 21.1, 331, 300 }, + [18] = { 33, 21.1, 331, 300 }, + [19] = { 32.4, 20.8, 331, 300 }, + [20] = { 31.5, 20.6, 331, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "18-19", + }, + [3734] = { + ["coords"] = { + [1] = { 32.1, 23, 331, 300 }, + [2] = { 32.6, 21.6, 331, 300 }, + [3] = { 31.5, 21.4, 331, 300 }, + [4] = { 32.8, 21.1, 331, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [3737] = { + ["coords"] = { + [1] = { 20, 45.1, 331, 300 }, + [2] = { 20.5, 44.8, 331, 300 }, + [3] = { 20.1, 44.2, 331, 300 }, + [4] = { 21.3, 43.6, 331, 300 }, + [5] = { 19.3, 43.1, 331, 300 }, + [6] = { 21.1, 43.1, 331, 300 }, + [7] = { 21.8, 42.4, 331, 300 }, + [8] = { 19.3, 42.2, 331, 300 }, + [9] = { 19.4, 41.5, 331, 300 }, + [10] = { 18.9, 41.3, 331, 300 }, + [11] = { 21.8, 41.2, 331, 300 }, + [12] = { 21, 40.5, 331, 300 }, + [13] = { 19, 40.3, 331, 300 }, + }, + ["lvl"] = "19-20", + }, + [3739] = { + ["coords"] = { + [1] = { 20, 45.1, 331, 300 }, + [2] = { 20.5, 44.8, 331, 300 }, + [3] = { 20.1, 44.2, 331, 300 }, + [4] = { 21.3, 43.6, 331, 300 }, + [5] = { 19.3, 43.1, 331, 300 }, + [6] = { 21.1, 43.1, 331, 300 }, + [7] = { 21.8, 42.4, 331, 300 }, + [8] = { 19.3, 42.2, 331, 300 }, + [9] = { 19.4, 41.5, 331, 300 }, + [10] = { 18.9, 41.3, 331, 300 }, + [11] = { 21.8, 41.2, 331, 300 }, + [12] = { 21, 40.5, 331, 300 }, + [13] = { 19, 40.3, 331, 300 }, + }, + ["lvl"] = "19-20", + }, + [3740] = { + ["coords"] = { + [1] = { 20.5, 44, 331, 300 }, + [2] = { 21.1, 44, 331, 300 }, + [3] = { 19.2, 43.9, 331, 300 }, + [4] = { 20.5, 43.2, 331, 300 }, + [5] = { 21.1, 42.2, 331, 300 }, + [6] = { 20.6, 42.2, 331, 300 }, + [7] = { 20.6, 40.7, 331, 300 }, + }, + ["lvl"] = "20-21", + }, + [3742] = { + ["coords"] = { + [1] = { 20.5, 44, 331, 300 }, + [2] = { 21.1, 44, 331, 300 }, + [3] = { 19.2, 43.9, 331, 300 }, + [4] = { 20.5, 43.2, 331, 300 }, + [5] = { 21.1, 42.2, 331, 300 }, + [6] = { 20.6, 42.2, 331, 300 }, + [7] = { 20.6, 40.7, 331, 300 }, + }, + ["lvl"] = "20-21", + }, + [3743] = { + ["coords"] = { + [1] = { 56.4, 64.9, 331, 300 }, + [2] = { 56, 64.9, 331, 300 }, + [3] = { 54, 64.8, 331, 300 }, + [4] = { 57, 64.7, 331, 300 }, + [5] = { 54, 64.2, 331, 300 }, + [6] = { 57.6, 64, 331, 300 }, + [7] = { 54.1, 63.9, 331, 300 }, + [8] = { 52.9, 63.8, 331, 300 }, + [9] = { 53.4, 63.8, 331, 300 }, + [10] = { 54.6, 63, 331, 300 }, + [11] = { 53.5, 63, 331, 300 }, + [12] = { 53, 63, 331, 300 }, + [13] = { 54.1, 63, 331, 300 }, + [14] = { 55.7, 63, 331, 300 }, + [15] = { 55.2, 62.9, 331, 300 }, + [16] = { 55.3, 62.3, 331, 300 }, + [17] = { 55.7, 62.2, 331, 300 }, + [18] = { 56.3, 62, 331, 300 }, + [19] = { 50.1, 61.9, 331, 300 }, + [20] = { 49.4, 61.5, 331, 300 }, + [21] = { 50.6, 61.3, 331, 300 }, + [22] = { 50, 61.3, 331, 300 }, + [23] = { 53.5, 60.9, 331, 300 }, + [24] = { 50.6, 60.7, 331, 300 }, + [25] = { 51.1, 60.5, 331, 300 }, + [26] = { 51.7, 60.5, 331, 300 }, + [27] = { 49.3, 60.5, 331, 300 }, + [28] = { 56.3, 64.3, 331, 0 }, + [29] = { 56.9, 63.4, 331, 0 }, + [30] = { 55.9, 63.4, 331, 0 }, + [31] = { 56.7, 64.1, 331, 0 }, + [32] = { 56.3, 62.8, 331, 0 }, + }, + ["lvl"] = "23-24", + }, + [3746] = { + ["coords"] = { + [1] = { 56.2, 65.4, 331, 600 }, + [2] = { 57.7, 64.4, 331, 600 }, + [3] = { 55, 63.5, 331, 600 }, + [4] = { 52.1, 63, 331, 600 }, + [5] = { 54.4, 62.4, 331, 600 }, + [6] = { 49.2, 62.1, 331, 600 }, + [7] = { 53.8, 62, 331, 300 }, + [8] = { 54.7, 61.9, 331, 300 }, + [9] = { 56, 61.6, 331, 600 }, + [10] = { 54.4, 61.6, 331, 600 }, + [11] = { 54.6, 61.5, 331, 300 }, + [12] = { 54.2, 61.4, 331, 300 }, + [13] = { 50.2, 60.4, 331, 300 }, + [14] = { 52.1, 60.4, 331, 600 }, + [15] = { 50.2, 60.1, 331, 300 }, + [16] = { 49.7, 60, 331, 600 }, + [17] = { 50, 59.9, 331, 300 }, + [18] = { 50.1, 59.6, 331, 600 }, + [19] = { 50.2, 59.6, 331, 300 }, + }, + ["lvl"] = "24-25", + }, + [3748] = { + ["coords"] = { + [1] = { 56.2, 65.4, 331, 600 }, + [2] = { 57.7, 64.4, 331, 600 }, + [3] = { 55, 63.5, 331, 600 }, + [4] = { 52.1, 63, 331, 600 }, + [5] = { 54.4, 62.4, 331, 600 }, + [6] = { 49.2, 62.1, 331, 600 }, + [7] = { 53.8, 62, 331, 300 }, + [8] = { 54.7, 61.9, 331, 300 }, + [9] = { 56, 61.6, 331, 600 }, + [10] = { 54.4, 61.6, 331, 600 }, + [11] = { 54.6, 61.5, 331, 300 }, + [12] = { 54.2, 61.4, 331, 300 }, + [13] = { 50.2, 60.4, 331, 300 }, + [14] = { 52.1, 60.4, 331, 600 }, + [15] = { 50.2, 60.1, 331, 300 }, + [16] = { 49.7, 60, 331, 600 }, + [17] = { 50, 59.9, 331, 300 }, + [18] = { 50.1, 59.6, 331, 600 }, + [19] = { 50.2, 59.6, 331, 300 }, + }, + ["lvl"] = "24-25", + }, + [3749] = { + ["coords"] = { + [1] = { 56.2, 65.4, 331, 600 }, + [2] = { 57.7, 64.4, 331, 600 }, + [3] = { 55, 63.5, 331, 600 }, + [4] = { 52.1, 63, 331, 600 }, + [5] = { 54.4, 62.4, 331, 600 }, + [6] = { 49.2, 62.1, 331, 600 }, + [7] = { 53.8, 62, 331, 300 }, + [8] = { 54.7, 61.9, 331, 300 }, + [9] = { 56, 61.6, 331, 600 }, + [10] = { 54.4, 61.6, 331, 600 }, + [11] = { 54.6, 61.5, 331, 300 }, + [12] = { 54.2, 61.4, 331, 300 }, + [13] = { 50.2, 60.4, 331, 300 }, + [14] = { 52.1, 60.4, 331, 600 }, + [15] = { 50.2, 60.1, 331, 300 }, + [16] = { 49.7, 60, 331, 600 }, + [17] = { 50, 59.9, 331, 300 }, + [18] = { 50.1, 59.6, 331, 600 }, + [19] = { 50.2, 59.6, 331, 300 }, + [20] = { 55.9, 63.4, 331, 0 }, + [21] = { 56.7, 64.1, 331, 0 }, + [22] = { 56.3, 62.8, 331, 0 }, + [23] = { 56.3, 64.3, 331, 0 }, + [24] = { 56.9, 63.4, 331, 0 }, + }, + ["lvl"] = "24-25", + }, + [3750] = { + ["coords"] = { + [1] = { 56.4, 64.9, 331, 300 }, + [2] = { 56, 64.9, 331, 300 }, + [3] = { 54, 64.8, 331, 300 }, + [4] = { 57, 64.7, 331, 300 }, + [5] = { 54, 64.2, 331, 300 }, + [6] = { 57.6, 64, 331, 300 }, + [7] = { 54.1, 63.9, 331, 300 }, + [8] = { 52.9, 63.8, 331, 300 }, + [9] = { 53.4, 63.8, 331, 300 }, + [10] = { 54.6, 63, 331, 300 }, + [11] = { 53.5, 63, 331, 300 }, + [12] = { 53, 63, 331, 300 }, + [13] = { 54.1, 63, 331, 300 }, + [14] = { 55.7, 63, 331, 300 }, + [15] = { 55.2, 62.9, 331, 300 }, + [16] = { 55.3, 62.3, 331, 300 }, + [17] = { 55.7, 62.2, 331, 300 }, + [18] = { 56.3, 62, 331, 300 }, + [19] = { 50.1, 61.9, 331, 300 }, + [20] = { 49.4, 61.5, 331, 300 }, + [21] = { 50.6, 61.3, 331, 300 }, + [22] = { 50, 61.3, 331, 300 }, + [23] = { 53.5, 60.9, 331, 300 }, + [24] = { 50.6, 60.7, 331, 300 }, + [25] = { 51.1, 60.5, 331, 300 }, + [26] = { 51.7, 60.5, 331, 300 }, + [27] = { 49.3, 60.5, 331, 300 }, + [28] = { 56.3, 62.8, 331, 0 }, + [29] = { 56.3, 64.3, 331, 0 }, + [30] = { 56.9, 63.4, 331, 0 }, + [31] = { 55.9, 63.4, 331, 0 }, + [32] = { 56.7, 64.1, 331, 0 }, + }, + ["lvl"] = "23-24", + }, + [3752] = { + ["coords"] = { + [1] = { 78.8, 46.7, 331, 300 }, + [2] = { 77.6, 46.2, 331, 300 }, + [3] = { 79.1, 45.6, 331, 300 }, + [4] = { 78.7, 45.3, 331, 300 }, + [5] = { 78.1, 45.3, 331, 300 }, + [6] = { 78.4, 45.1, 331, 300 }, + [7] = { 78.2, 44.8, 331, 300 }, + [8] = { 77.7, 44.8, 331, 300 }, + [9] = { 78.5, 44.8, 331, 300 }, + [10] = { 77.8, 44.4, 331, 300 }, + [11] = { 78.3, 43.7, 331, 300 }, + [12] = { 77.8, 42.5, 331, 300 }, + }, + ["lvl"] = "29-30", + }, + [3754] = { + ["coords"] = { + [1] = { 78.4, 47.5, 331, 300 }, + [2] = { 79.3, 47.4, 331, 300 }, + [3] = { 79.6, 46.9, 331, 300 }, + [4] = { 77.8, 46.7, 331, 300 }, + [5] = { 78.3, 46.4, 331, 300 }, + [6] = { 78.9, 45.8, 331, 300 }, + [7] = { 77.8, 45.8, 331, 300 }, + [8] = { 78.3, 45.6, 331, 300 }, + [9] = { 77.3, 44.9, 331, 300 }, + [10] = { 78.4, 43, 331, 300 }, + [11] = { 78.4, 42.2, 331, 300 }, + }, + ["lvl"] = "28-29", + }, + [3755] = { + ["coords"] = { + [1] = { 78.4, 47.5, 331, 300 }, + [2] = { 79.3, 47.4, 331, 300 }, + [3] = { 79.6, 46.9, 331, 300 }, + [4] = { 77.8, 46.7, 331, 300 }, + [5] = { 78.3, 46.4, 331, 300 }, + [6] = { 78.9, 45.8, 331, 300 }, + [7] = { 77.8, 45.8, 331, 300 }, + [8] = { 78.3, 45.6, 331, 300 }, + [9] = { 77.3, 44.9, 331, 300 }, + [10] = { 78.4, 43, 331, 300 }, + [11] = { 78.4, 42.2, 331, 300 }, + }, + ["lvl"] = "28-29", + }, + [3757] = { + ["coords"] = { + [1] = { 78.8, 46.7, 331, 300 }, + [2] = { 77.6, 46.2, 331, 300 }, + [3] = { 79.1, 45.6, 331, 300 }, + [4] = { 78.7, 45.3, 331, 300 }, + [5] = { 78.1, 45.3, 331, 300 }, + [6] = { 78.4, 45.1, 331, 300 }, + [7] = { 78.2, 44.8, 331, 300 }, + [8] = { 77.7, 44.8, 331, 300 }, + [9] = { 78.5, 44.8, 331, 300 }, + [10] = { 77.8, 44.4, 331, 300 }, + [11] = { 78.3, 43.7, 331, 300 }, + [12] = { 77.8, 42.5, 331, 300 }, + }, + ["lvl"] = "29-30", + }, + [3758] = { + ["coords"] = { + [1] = { 66.8, 56.1, 331, 300 }, + [2] = { 67.3, 55.4, 331, 300 }, + [3] = { 66.7, 55.3, 331, 300 }, + [4] = { 66.1, 55.2, 331, 300 }, + [5] = { 67.9, 54.4, 331, 300 }, + [6] = { 66.1, 54.3, 331, 300 }, + [7] = { 68.6, 53.6, 331, 300 }, + [8] = { 68.9, 53.4, 331, 300 }, + [9] = { 68.6, 52.8, 331, 300 }, + [10] = { 66.8, 52.6, 331, 300 }, + [11] = { 66.3, 52.6, 331, 300 }, + [12] = { 66.8, 51.8, 331, 300 }, + [13] = { 66.3, 51.7, 331, 300 }, + }, + ["lvl"] = "25-26", + }, + [3759] = { + ["coords"] = { + [1] = { 66.7, 57.2, 331, 300 }, + [2] = { 66.8, 57, 331, 300 }, + [3] = { 66.6, 56.8, 331, 300 }, + [4] = { 67.1, 56.4, 331, 300 }, + [5] = { 66.2, 56.4, 331, 300 }, + [6] = { 67.3, 55.6, 331, 300 }, + [7] = { 67.3, 54.6, 331, 300 }, + [8] = { 68.4, 54.5, 331, 300 }, + [9] = { 66.9, 54.4, 331, 300 }, + [10] = { 66.4, 54, 331, 300 }, + [11] = { 68.2, 53.9, 331, 300 }, + [12] = { 66.1, 53.4, 331, 300 }, + }, + ["lvl"] = "26-27", + }, + [3762] = { + ["coords"] = { + [1] = { 66.8, 56.1, 331, 300 }, + [2] = { 67.3, 55.4, 331, 300 }, + [3] = { 66.7, 55.3, 331, 300 }, + [4] = { 66.1, 55.2, 331, 300 }, + [5] = { 67.9, 54.4, 331, 300 }, + [6] = { 66.1, 54.3, 331, 300 }, + [7] = { 68.6, 53.6, 331, 300 }, + [8] = { 68.9, 53.4, 331, 300 }, + [9] = { 68.6, 52.8, 331, 300 }, + [10] = { 66.8, 52.6, 331, 300 }, + [11] = { 66.3, 52.6, 331, 300 }, + [12] = { 66.8, 51.8, 331, 300 }, + [13] = { 66.3, 51.7, 331, 300 }, + }, + ["lvl"] = "25-26", + }, + [3763] = { + ["coords"] = { + [1] = { 66.7, 57.2, 331, 300 }, + [2] = { 66.8, 57, 331, 300 }, + [3] = { 66.6, 56.8, 331, 300 }, + [4] = { 67.1, 56.4, 331, 300 }, + [5] = { 66.2, 56.4, 331, 300 }, + [6] = { 67.3, 55.6, 331, 300 }, + [7] = { 67.3, 54.6, 331, 300 }, + [8] = { 68.4, 54.5, 331, 300 }, + [9] = { 66.9, 54.4, 331, 300 }, + [10] = { 66.4, 54, 331, 300 }, + [11] = { 68.2, 53.9, 331, 300 }, + [12] = { 66.1, 53.4, 331, 300 }, + }, + ["lvl"] = "26-27", + }, + [3765] = { + ["coords"] = { + [1] = { 82.4, 51.7, 331, 300 }, + [2] = { 80.6, 50.9, 331, 300 }, + [3] = { 81.1, 50.8, 331, 300 }, + [4] = { 79.9, 50.8, 331, 300 }, + [5] = { 80, 50.2, 331, 300 }, + [6] = { 79.5, 50.1, 331, 300 }, + [7] = { 82.4, 50, 331, 300 }, + [8] = { 83, 49.9, 331, 300 }, + [9] = { 79.6, 49.3, 331, 300 }, + [10] = { 80, 49, 331, 300 }, + [11] = { 81.7, 48.2, 331, 300 }, + }, + ["lvl"] = "26-27", + }, + [3767] = { + ["coords"] = { + [1] = { 81.9, 52.1, 331, 300 }, + [2] = { 81.2, 51.6, 331, 300 }, + [3] = { 81.3, 50.4, 331, 300 }, + [4] = { 81.2, 50.3, 331, 300 }, + [5] = { 81.5, 50, 331, 300 }, + [6] = { 80.5, 49.8, 331, 300 }, + [7] = { 80.7, 49.7, 331, 300 }, + [8] = { 81.5, 49.5, 331, 300 }, + [9] = { 80.8, 49.3, 331, 300 }, + [10] = { 81.8, 49.3, 331, 300 }, + [11] = { 81.3, 49.3, 331, 300 }, + [12] = { 81.7, 49.2, 331, 300 }, + [13] = { 81.9, 49, 331, 300 }, + [14] = { 80.7, 49, 331, 300 }, + [15] = { 81, 49, 331, 300 }, + [16] = { 80.5, 48.6, 331, 300 }, + [17] = { 81.1, 48.4, 331, 300 }, + }, + ["lvl"] = "27-28", + }, + [3770] = { + ["coords"] = { + [1] = { 81.9, 52.1, 331, 300 }, + [2] = { 81.2, 51.6, 331, 300 }, + [3] = { 81.3, 50.4, 331, 300 }, + [4] = { 81.2, 50.3, 331, 300 }, + [5] = { 81.5, 50, 331, 300 }, + [6] = { 80.5, 49.8, 331, 300 }, + [7] = { 80.7, 49.7, 331, 300 }, + [8] = { 81.5, 49.5, 331, 300 }, + [9] = { 80.8, 49.3, 331, 300 }, + [10] = { 81.8, 49.3, 331, 300 }, + [11] = { 81.3, 49.3, 331, 300 }, + [12] = { 81.7, 49.2, 331, 300 }, + [13] = { 81.9, 49, 331, 300 }, + [14] = { 80.7, 49, 331, 300 }, + [15] = { 81, 49, 331, 300 }, + [16] = { 80.5, 48.6, 331, 300 }, + [17] = { 81.1, 48.4, 331, 300 }, + }, + ["lvl"] = "27-28", + }, + [3771] = { + ["coords"] = { + [1] = { 82.4, 51.7, 331, 300 }, + [2] = { 80.6, 50.9, 331, 300 }, + [3] = { 81.1, 50.8, 331, 300 }, + [4] = { 79.9, 50.8, 331, 300 }, + [5] = { 80, 50.2, 331, 300 }, + [6] = { 79.5, 50.1, 331, 300 }, + [7] = { 82.4, 50, 331, 300 }, + [8] = { 83, 49.9, 331, 300 }, + [9] = { 79.6, 49.3, 331, 300 }, + [10] = { 80, 49, 331, 300 }, + [11] = { 81.7, 48.2, 331, 300 }, + }, + ["lvl"] = "26-27", + }, + [3772] = { + ["coords"] = { + [1] = { 23.8, 63.4, 331, 300 }, + [2] = { 25.3, 63.4, 331, 300 }, + [3] = { 26.9, 63.1, 331, 300 }, + [4] = { 28, 63.1, 331, 300 }, + [5] = { 26.1, 62.6, 331, 300 }, + [6] = { 22.9, 62.3, 331, 300 }, + [7] = { 28.8, 62.2, 331, 300 }, + [8] = { 25.7, 61.4, 331, 300 }, + [9] = { 28.4, 60.9, 331, 300 }, + [10] = { 21.8, 59.8, 331, 300 }, + [11] = { 28, 59.5, 331, 300 }, + [12] = { 29.1, 59.5, 331, 300 }, + [13] = { 22.2, 58.6, 331, 300 }, + [14] = { 60.2, 30.1, 406, 300 }, + [15] = { 61.6, 30, 406, 300 }, + [16] = { 63.1, 29.8, 406, 300 }, + [17] = { 64.2, 29.8, 406, 300 }, + [18] = { 62.4, 29.2, 406, 300 }, + [19] = { 59.3, 29, 406, 300 }, + [20] = { 65, 28.9, 406, 300 }, + [21] = { 62, 28.1, 406, 300 }, + [22] = { 64.6, 27.6, 406, 300 }, + [23] = { 58.2, 26.6, 406, 300 }, + [24] = { 64.2, 26.3, 406, 300 }, + [25] = { 65.2, 26.3, 406, 300 }, + [26] = { 58.7, 25.5, 406, 300 }, + }, + ["lvl"] = "23-24", + }, + [3773] = { + ["coords"] = { + [1] = { 27, 63.5, 331, 108000 }, + [2] = { 63.2, 30.1, 406, 108000 }, + }, + ["lvl"] = "26", + ["rnk"] = "4", + }, + [3774] = { + ["coords"] = { + [1] = { 27.7, 64.2, 331, 300 }, + [2] = { 28.2, 64.2, 331, 300 }, + [3] = { 26.6, 64.1, 331, 300 }, + [4] = { 26.3, 63.9, 331, 300 }, + [5] = { 24.7, 63.8, 331, 300 }, + [6] = { 23.4, 63.2, 331, 300 }, + [7] = { 28.5, 63, 331, 300 }, + [8] = { 22.2, 62.1, 331, 300 }, + [9] = { 21.7, 62, 331, 300 }, + [10] = { 28.6, 61.5, 331, 300 }, + [11] = { 21.7, 61.3, 331, 300 }, + [12] = { 28.4, 61.2, 331, 300 }, + [13] = { 25.2, 60.9, 331, 300 }, + [14] = { 25.5, 60.6, 331, 300 }, + [15] = { 21.7, 60.5, 331, 300 }, + [16] = { 28.8, 58.8, 331, 300 }, + [17] = { 21.2, 58.7, 331, 300 }, + [18] = { 63.9, 30.9, 406, 300 }, + [19] = { 64.4, 30.8, 406, 300 }, + [20] = { 62.9, 30.7, 406, 300 }, + [21] = { 62.6, 30.6, 406, 300 }, + [22] = { 61, 30.5, 406, 300 }, + [23] = { 59.8, 29.9, 406, 300 }, + [24] = { 64.7, 29.6, 406, 300 }, + [25] = { 58.6, 28.9, 406, 300 }, + [26] = { 58.2, 28.7, 406, 300 }, + [27] = { 64.7, 28.2, 406, 300 }, + [28] = { 58.1, 28, 406, 300 }, + [29] = { 64.6, 27.9, 406, 300 }, + [30] = { 61.5, 27.6, 406, 300 }, + [31] = { 61.8, 27.3, 406, 300 }, + [32] = { 58.1, 27.3, 406, 300 }, + [33] = { 65, 25.7, 406, 300 }, + [34] = { 57.7, 25.6, 406, 300 }, + }, + ["lvl"] = "22-23", + }, + [3777] = "_", + [3778] = "_", + [3781] = { + ["coords"] = { + [1] = { 32.7, 72.4, 331, 300 }, + [2] = { 32.9, 72, 331, 300 }, + [3] = { 31.4, 71.6, 331, 300 }, + [4] = { 32.7, 70.6, 331, 300 }, + [5] = { 32.7, 70.2, 331, 300 }, + [6] = { 34, 70.1, 331, 300 }, + [7] = { 33.3, 69.7, 331, 300 }, + [8] = { 33.9, 69.3, 331, 300 }, + [9] = { 30.8, 69.2, 331, 300 }, + [10] = { 32.1, 69, 331, 300 }, + [11] = { 32.7, 68.5, 331, 300 }, + [12] = { 31, 68.5, 331, 300 }, + [13] = { 31.5, 68.4, 331, 300 }, + [14] = { 34.5, 68.4, 331, 300 }, + [15] = { 33.3, 68.2, 331, 300 }, + [16] = { 31.6, 67.5, 331, 300 }, + [17] = { 34.6, 67.5, 331, 300 }, + [18] = { 32.5, 67.5, 331, 300 }, + [19] = { 34.3, 67.4, 331, 300 }, + [20] = { 32, 67.4, 331, 300 }, + [21] = { 35.4, 67.4, 331, 300 }, + [22] = { 33.2, 67.3, 331, 300 }, + [23] = { 34.9, 67.3, 331, 300 }, + [24] = { 33.7, 67.3, 331, 300 }, + [25] = { 34.4, 66.4, 331, 300 }, + [26] = { 33.6, 66.2, 331, 300 }, + [27] = { 32.4, 66.2, 331, 300 }, + [28] = { 34.1, 65.7, 331, 300 }, + [29] = { 33.7, 65.7, 331, 300 }, + [30] = { 31.8, 65.7, 331, 300 }, + [31] = { 34.2, 64.7, 331, 300 }, + [32] = { 33.1, 64.5, 331, 300 }, + [33] = { 68.7, 38.7, 406, 300 }, + [34] = { 68.9, 38.3, 406, 300 }, + [35] = { 67.4, 37.9, 406, 300 }, + [36] = { 68.7, 37, 406, 300 }, + [37] = { 68.7, 36.6, 406, 300 }, + [38] = { 70, 36.4, 406, 300 }, + [39] = { 69.2, 36.1, 406, 300 }, + [40] = { 69.9, 35.7, 406, 300 }, + [41] = { 66.9, 35.6, 406, 300 }, + [42] = { 68.1, 35.4, 406, 300 }, + [43] = { 68.7, 34.9, 406, 300 }, + [44] = { 67, 34.9, 406, 300 }, + [45] = { 67.6, 34.8, 406, 300 }, + [46] = { 70.4, 34.8, 406, 300 }, + [47] = { 69.3, 34.6, 406, 300 }, + [48] = { 67.7, 34, 406, 300 }, + [49] = { 70.5, 34, 406, 300 }, + [50] = { 68.5, 34, 406, 300 }, + [51] = { 70.2, 33.9, 406, 300 }, + [52] = { 68.1, 33.9, 406, 300 }, + [53] = { 71.2, 33.9, 406, 300 }, + [54] = { 69.2, 33.8, 406, 300 }, + [55] = { 70.8, 33.8, 406, 300 }, + [56] = { 69.7, 33.8, 406, 300 }, + [57] = { 70.3, 33, 406, 300 }, + [58] = { 69.6, 32.8, 406, 300 }, + [59] = { 68.4, 32.7, 406, 300 }, + [60] = { 70, 32.3, 406, 300 }, + [61] = { 69.7, 32.2, 406, 300 }, + [62] = { 67.8, 32.2, 406, 300 }, + [63] = { 69.1, 31.1, 406, 300 }, + }, + ["lvl"] = "23-24", + }, + [3782] = { + ["coords"] = { + [1] = { 66.6, 84, 331, 300 }, + [2] = { 66.9, 84, 331, 300 }, + [3] = { 66.2, 82.1, 331, 300 }, + [4] = { 67, 82.1, 331, 300 }, + [5] = { 65.8, 81.7, 331, 300 }, + [6] = { 67.1, 81.5, 331, 300 }, + [7] = { 66.9, 81.1, 331, 300 }, + [8] = { 67.4, 80.8, 331, 300 }, + [9] = { 66.7, 80.5, 331, 300 }, + [10] = { 65.9, 80.3, 331, 300 }, + [11] = { 65.2, 80.1, 331, 300 }, + [12] = { 66.7, 79.7, 331, 300 }, + [13] = { 65.6, 79.7, 331, 300 }, + [14] = { 59.8, 79.6, 331, 300 }, + [15] = { 58.9, 79.2, 331, 300 }, + [16] = { 59, 78.9, 331, 300 }, + [17] = { 59.7, 78.6, 331, 300 }, + [18] = { 59.8, 77.9, 331, 300 }, + [19] = { 60.9, 76.8, 331, 300 }, + [20] = { 62, 74.9, 331, 300 }, + [21] = { 79.4, 73.6, 331, 300 }, + [22] = { 80.6, 73.4, 331, 300 }, + [23] = { 79, 72.5, 331, 300 }, + [24] = { 63, 71.6, 331, 300 }, + [25] = { 79.4, 70.1, 331, 300 }, + [26] = { 85.2, 69, 331, 300 }, + [27] = { 86, 68.8, 331, 300 }, + [28] = { 85.8, 68.1, 331, 300 }, + [29] = { 85.3, 67.5, 331, 300 }, + [30] = { 64.5, 67.4, 331, 300 }, + [31] = { 79.3, 66.4, 331, 300 }, + [32] = { 65.6, 65.5, 331, 300 }, + [33] = { 79.1, 64.9, 331, 300 }, + [34] = { 84.1, 64.8, 331, 300 }, + [35] = { 66.6, 64.4, 331, 300 }, + [36] = { 82.4, 64.1, 331, 300 }, + [37] = { 81.4, 63.7, 331, 300 }, + [38] = { 78.4, 63, 331, 300 }, + [39] = { 68.6, 62.9, 331, 300 }, + [40] = { 80.6, 62.5, 331, 300 }, + [41] = { 78.4, 61.2, 331, 300 }, + [42] = { 69.7, 60.3, 331, 300 }, + [43] = { 78.5, 59.7, 331, 300 }, + [44] = { 79, 57.9, 331, 300 }, + [45] = { 69.9, 57.9, 331, 300 }, + [46] = { 70.7, 56, 331, 300 }, + [47] = { 71.1, 55.5, 331, 300 }, + [48] = { 71.9, 54.3, 331, 300 }, + [49] = { 78.7, 53.5, 331, 300 }, + [50] = { 74.7, 46.5, 331, 300 }, + }, + ["lvl"] = "25-26", + }, + [3783] = { + ["coords"] = { + [1] = { 32.7, 72.4, 331, 300 }, + [2] = { 32.9, 72, 331, 300 }, + [3] = { 31.4, 71.6, 331, 300 }, + [4] = { 32.7, 70.6, 331, 300 }, + [5] = { 32.7, 70.2, 331, 300 }, + [6] = { 34, 70.1, 331, 300 }, + [7] = { 33.3, 69.7, 331, 300 }, + [8] = { 33.9, 69.3, 331, 300 }, + [9] = { 30.8, 69.2, 331, 300 }, + [10] = { 32.1, 69, 331, 300 }, + [11] = { 32.7, 68.5, 331, 300 }, + [12] = { 31, 68.5, 331, 300 }, + [13] = { 31.5, 68.4, 331, 300 }, + [14] = { 34.5, 68.4, 331, 300 }, + [15] = { 33.3, 68.2, 331, 300 }, + [16] = { 31.6, 67.5, 331, 300 }, + [17] = { 34.6, 67.5, 331, 300 }, + [18] = { 32.5, 67.5, 331, 300 }, + [19] = { 34.3, 67.4, 331, 300 }, + [20] = { 32, 67.4, 331, 300 }, + [21] = { 35.4, 67.4, 331, 300 }, + [22] = { 33.2, 67.3, 331, 300 }, + [23] = { 34.9, 67.3, 331, 300 }, + [24] = { 33.7, 67.3, 331, 300 }, + [25] = { 34.4, 66.4, 331, 300 }, + [26] = { 33.6, 66.2, 331, 300 }, + [27] = { 32.4, 66.2, 331, 300 }, + [28] = { 34.1, 65.7, 331, 300 }, + [29] = { 33.7, 65.7, 331, 300 }, + [30] = { 31.8, 65.7, 331, 300 }, + [31] = { 34.2, 64.7, 331, 300 }, + [32] = { 33.1, 64.5, 331, 300 }, + [33] = { 68.7, 38.7, 406, 300 }, + [34] = { 68.9, 38.3, 406, 300 }, + [35] = { 67.4, 37.9, 406, 300 }, + [36] = { 68.7, 37, 406, 300 }, + [37] = { 68.7, 36.6, 406, 300 }, + [38] = { 70, 36.4, 406, 300 }, + [39] = { 69.2, 36.1, 406, 300 }, + [40] = { 69.9, 35.7, 406, 300 }, + [41] = { 66.9, 35.6, 406, 300 }, + [42] = { 68.1, 35.4, 406, 300 }, + [43] = { 68.7, 34.9, 406, 300 }, + [44] = { 67, 34.9, 406, 300 }, + [45] = { 67.6, 34.8, 406, 300 }, + [46] = { 70.4, 34.8, 406, 300 }, + [47] = { 69.3, 34.6, 406, 300 }, + [48] = { 67.7, 34, 406, 300 }, + [49] = { 70.5, 34, 406, 300 }, + [50] = { 68.5, 34, 406, 300 }, + [51] = { 70.2, 33.9, 406, 300 }, + [52] = { 68.1, 33.9, 406, 300 }, + [53] = { 71.2, 33.9, 406, 300 }, + [54] = { 69.2, 33.8, 406, 300 }, + [55] = { 70.8, 33.8, 406, 300 }, + [56] = { 69.7, 33.8, 406, 300 }, + [57] = { 70.3, 33, 406, 300 }, + [58] = { 69.6, 32.8, 406, 300 }, + [59] = { 68.4, 32.7, 406, 300 }, + [60] = { 70, 32.3, 406, 300 }, + [61] = { 69.7, 32.2, 406, 300 }, + [62] = { 67.8, 32.2, 406, 300 }, + [63] = { 69.1, 31.1, 406, 300 }, + }, + ["lvl"] = "22-23", + }, + [3784] = { + ["coords"] = { + [1] = { 66.6, 84, 331, 300 }, + [2] = { 66.9, 84, 331, 300 }, + [3] = { 66.2, 82.1, 331, 300 }, + [4] = { 67, 82.1, 331, 300 }, + [5] = { 65.8, 81.7, 331, 300 }, + [6] = { 67.1, 81.5, 331, 300 }, + [7] = { 66.9, 81.1, 331, 300 }, + [8] = { 67.4, 80.8, 331, 300 }, + [9] = { 66.7, 80.5, 331, 300 }, + [10] = { 65.9, 80.3, 331, 300 }, + [11] = { 65.2, 80.1, 331, 300 }, + [12] = { 66.7, 79.7, 331, 300 }, + [13] = { 65.6, 79.7, 331, 300 }, + [14] = { 59.8, 79.6, 331, 300 }, + [15] = { 58.9, 79.2, 331, 300 }, + [16] = { 59, 78.9, 331, 300 }, + [17] = { 59.7, 78.6, 331, 300 }, + [18] = { 59.8, 77.9, 331, 300 }, + [19] = { 60.9, 76.8, 331, 300 }, + [20] = { 62, 74.9, 331, 300 }, + [21] = { 79.4, 73.6, 331, 300 }, + [22] = { 80.6, 73.4, 331, 300 }, + [23] = { 79, 72.5, 331, 300 }, + [24] = { 63, 71.6, 331, 300 }, + [25] = { 79.4, 70.1, 331, 300 }, + [26] = { 85.2, 69, 331, 300 }, + [27] = { 86, 68.8, 331, 300 }, + [28] = { 85.8, 68.1, 331, 300 }, + [29] = { 85.3, 67.5, 331, 300 }, + [30] = { 64.5, 67.4, 331, 300 }, + [31] = { 79.3, 66.4, 331, 300 }, + [32] = { 65.6, 65.5, 331, 300 }, + [33] = { 79.1, 64.9, 331, 300 }, + [34] = { 84.1, 64.8, 331, 300 }, + [35] = { 66.6, 64.4, 331, 300 }, + [36] = { 82.4, 64.1, 331, 300 }, + [37] = { 81.4, 63.7, 331, 300 }, + [38] = { 78.4, 63, 331, 300 }, + [39] = { 68.6, 62.9, 331, 300 }, + [40] = { 80.6, 62.5, 331, 300 }, + [41] = { 78.4, 61.2, 331, 300 }, + [42] = { 69.7, 60.3, 331, 300 }, + [43] = { 78.5, 59.7, 331, 300 }, + [44] = { 79, 57.9, 331, 300 }, + [45] = { 69.9, 57.9, 331, 300 }, + [46] = { 70.7, 56, 331, 300 }, + [47] = { 71.1, 55.5, 331, 300 }, + [48] = { 71.9, 54.3, 331, 300 }, + [49] = { 78.7, 53.5, 331, 300 }, + [50] = { 74.7, 46.5, 331, 300 }, + }, + ["lvl"] = "26-27", + }, + [3789] = { + ["coords"] = { + [1] = { 50, 39.6, 331, 300 }, + [2] = { 49.8, 39.6, 331, 300 }, + [3] = { 50.3, 39.5, 331, 300 }, + [4] = { 49.7, 39.2, 331, 300 }, + [5] = { 49.9, 38.5, 331, 300 }, + [6] = { 50.2, 38.3, 331, 300 }, + [7] = { 51, 38, 331, 300 }, + [8] = { 53.4, 37.7, 331, 300 }, + [9] = { 53.2, 37.6, 331, 300 }, + [10] = { 53.2, 37.4, 331, 300 }, + [11] = { 52.8, 35.5, 331, 300 }, + [12] = { 52.7, 33.5, 331, 300 }, + [13] = { 53.3, 32.8, 331, 300 }, + [14] = { 52, 99.8, 361, 300 }, + [15] = { 51.8, 97.8, 361, 300 }, + [16] = { 52.5, 97.1, 361, 300 }, + }, + ["lvl"] = "28-29", + }, + [3791] = { + ["coords"] = { + [1] = { 49.9, 39.3, 331, 300 }, + [2] = { 50.3, 39.2, 331, 300 }, + [3] = { 50.1, 39, 331, 300 }, + [4] = { 50, 39, 331, 300 }, + [5] = { 52, 37.8, 331, 300 }, + }, + ["lvl"] = "29-30", + }, + [3792] = { + ["coords"] = { + [1] = { 49.7, 39.5, 331, 108000 }, + }, + ["lvl"] = "32", + ["rnk"] = "4", + }, + [3793] = "_", + [3794] = "_", + [3795] = "_", + [3796] = "_", + [3804] = { + ["coords"] = { + [1] = { 77.2, 76.2, 331, 300 }, + [2] = { 76.7, 76, 331, 300 }, + [3] = { 75.7, 75.7, 331, 300 }, + [4] = { 76.1, 75.5, 331, 300 }, + [5] = { 76.3, 75.2, 331, 300 }, + [6] = { 75.6, 75, 331, 300 }, + [7] = { 76.9, 74.9, 331, 300 }, + [8] = { 75.9, 74.7, 331, 300 }, + [9] = { 75.5, 74.6, 331, 300 }, + [10] = { 78.4, 74.6, 331, 300 }, + [11] = { 76.3, 74.5, 331, 300 }, + [12] = { 76.7, 74.1, 331, 300 }, + [13] = { 74.8, 74, 331, 300 }, + [14] = { 75.3, 74, 331, 300 }, + [15] = { 78, 73.9, 331, 300 }, + [16] = { 76.6, 73.5, 331, 300 }, + [17] = { 76.1, 73.2, 331, 300 }, + [18] = { 77.3, 73, 331, 300 }, + [19] = { 75.2, 72.4, 331, 300 }, + [20] = { 75.5, 72.3, 331, 300 }, + [21] = { 75.1, 72.3, 331, 300 }, + [22] = { 75.1, 71.5, 331, 300 }, + [23] = { 75.3, 71.3, 331, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "28-29", + }, + [3807] = { + ["coords"] = { + [1] = { 77.2, 76.2, 331, 300 }, + [2] = { 76.7, 76, 331, 300 }, + [3] = { 75.7, 75.7, 331, 300 }, + [4] = { 76.1, 75.5, 331, 300 }, + [5] = { 76.3, 75.2, 331, 300 }, + [6] = { 75.6, 75, 331, 300 }, + [7] = { 76.9, 74.9, 331, 300 }, + [8] = { 75.9, 74.7, 331, 300 }, + [9] = { 75.5, 74.6, 331, 300 }, + [10] = { 78.4, 74.6, 331, 300 }, + [11] = { 76.3, 74.5, 331, 300 }, + [12] = { 76.7, 74.1, 331, 300 }, + [13] = { 74.8, 74, 331, 300 }, + [14] = { 75.3, 74, 331, 300 }, + [15] = { 78, 73.9, 331, 300 }, + [16] = { 76.6, 73.5, 331, 300 }, + [17] = { 76.1, 73.2, 331, 300 }, + [18] = { 77.3, 73, 331, 300 }, + [19] = { 75.2, 72.4, 331, 300 }, + [20] = { 75.5, 72.3, 331, 300 }, + [21] = { 75.1, 72.3, 331, 300 }, + [22] = { 75.1, 71.5, 331, 300 }, + [23] = { 75.3, 71.3, 331, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "29-30", + }, + [3808] = { + ["coords"] = { + [1] = { 77.2, 76.2, 331, 300 }, + [2] = { 76.7, 76, 331, 300 }, + [3] = { 75.7, 75.7, 331, 300 }, + [4] = { 76.1, 75.5, 331, 300 }, + [5] = { 76.3, 75.2, 331, 300 }, + [6] = { 75.6, 75, 331, 300 }, + [7] = { 76.9, 74.9, 331, 300 }, + [8] = { 75.9, 74.7, 331, 300 }, + [9] = { 75.5, 74.6, 331, 300 }, + [10] = { 78.4, 74.6, 331, 300 }, + [11] = { 76.3, 74.5, 331, 300 }, + [12] = { 76.7, 74.1, 331, 300 }, + [13] = { 74.8, 74, 331, 300 }, + [14] = { 75.3, 74, 331, 300 }, + [15] = { 78, 73.9, 331, 300 }, + [16] = { 76.6, 73.5, 331, 300 }, + [17] = { 76.1, 73.2, 331, 300 }, + [18] = { 77.3, 73, 331, 300 }, + [19] = { 75.2, 72.4, 331, 300 }, + [20] = { 75.5, 72.3, 331, 300 }, + [21] = { 75.1, 72.3, 331, 300 }, + [22] = { 75.1, 71.5, 331, 300 }, + [23] = { 75.3, 71.3, 331, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "28-29", + }, + [3809] = { + ["coords"] = { + [1] = { 66.8, 87.7, 331, 300 }, + [2] = { 66.1, 86.5, 331, 300 }, + [3] = { 67.9, 85.5, 331, 300 }, + [4] = { 66.8, 83.9, 331, 300 }, + [5] = { 66.5, 78.7, 331, 300 }, + [6] = { 67.2, 78.2, 331, 300 }, + [7] = { 63.7, 77.2, 331, 300 }, + [8] = { 67, 76.8, 331, 300 }, + [9] = { 37.4, 71.5, 331, 300 }, + [10] = { 41.1, 71.1, 331, 300 }, + [11] = { 39.3, 70.4, 331, 300 }, + [12] = { 38.5, 70.3, 331, 300 }, + [13] = { 42, 70, 331, 300 }, + [14] = { 36.5, 70, 331, 300 }, + [15] = { 41.4, 69.7, 331, 300 }, + [16] = { 39.4, 69.3, 331, 300 }, + [17] = { 36.7, 68.3, 331, 300 }, + [18] = { 39.8, 67.2, 331, 300 }, + [19] = { 41.4, 66.9, 331, 300 }, + [20] = { 44.6, 66.7, 331, 300 }, + [21] = { 40.6, 66.6, 331, 300 }, + [22] = { 41, 66.6, 331, 300 }, + [23] = { 40.6, 66.1, 331, 300 }, + [24] = { 44.3, 65.9, 331, 300 }, + [25] = { 39.6, 65.2, 331, 300 }, + [26] = { 48.3, 65.2, 331, 300 }, + [27] = { 45.8, 65, 331, 300 }, + [28] = { 42.1, 64.5, 331, 300 }, + [29] = { 38.8, 64.1, 331, 300 }, + [30] = { 44.1, 63.8, 331, 300 }, + [31] = { 48.7, 63.3, 331, 300 }, + [32] = { 39.7, 63.3, 331, 300 }, + [33] = { 45.8, 63.3, 331, 300 }, + [34] = { 43.1, 62.9, 331, 300 }, + [35] = { 38.3, 62.8, 331, 300 }, + [36] = { 44.7, 62.5, 331, 300 }, + [37] = { 39.5, 62.2, 331, 300 }, + [38] = { 37.9, 62.2, 331, 300 }, + [39] = { 41.3, 62, 331, 300 }, + [40] = { 46.8, 61.9, 331, 300 }, + [41] = { 41.9, 61.4, 331, 300 }, + [42] = { 45.1, 61.3, 331, 300 }, + [43] = { 42.5, 61.3, 331, 300 }, + [44] = { 45.9, 60.8, 331, 300 }, + [45] = { 45.9, 60.4, 331, 300 }, + [46] = { 37.6, 60.2, 331, 300 }, + [47] = { 42.9, 59.8, 331, 300 }, + [48] = { 45.9, 59.6, 331, 300 }, + [49] = { 43.2, 58.6, 331, 300 }, + [50] = { 45, 58, 331, 300 }, + [51] = { 51.3, 56.2, 331, 300 }, + [52] = { 50.4, 56.1, 331, 300 }, + [53] = { 57, 55.8, 331, 300 }, + [54] = { 51.4, 55.3, 331, 300 }, + [55] = { 55.2, 55.1, 331, 300 }, + [56] = { 50.4, 55.1, 331, 300 }, + [57] = { 45.5, 54.6, 331, 300 }, + [58] = { 56.2, 54.6, 331, 300 }, + [59] = { 52.3, 54.4, 331, 300 }, + [60] = { 52.7, 53.9, 331, 300 }, + [61] = { 55, 53.8, 331, 300 }, + [62] = { 48.4, 53.5, 331, 300 }, + [63] = { 45, 53.4, 331, 300 }, + [64] = { 50.8, 53.4, 331, 300 }, + [65] = { 55.5, 53.3, 331, 300 }, + [66] = { 50.1, 51.8, 331, 300 }, + [67] = { 54.8, 51.3, 331, 300 }, + [68] = { 44.4, 51.3, 331, 300 }, + [69] = { 49.4, 51.1, 331, 300 }, + [70] = { 51.5, 50.3, 331, 300 }, + [71] = { 50.6, 47.5, 331, 300 }, + [72] = { 43.5, 46, 331, 300 }, + [73] = { 50.1, 45.1, 331, 300 }, + [74] = { 50.4, 45, 331, 300 }, + [75] = { 42.4, 44.3, 331, 300 }, + [76] = { 42.9, 44.1, 331, 300 }, + [77] = { 51.6, 44, 331, 300 }, + [78] = { 41.3, 43.9, 331, 300 }, + [79] = { 42, 43.1, 331, 300 }, + [80] = { 45.9, 42.6, 331, 300 }, + [81] = { 40.4, 42.6, 331, 300 }, + [82] = { 32.5, 42.5, 331, 300 }, + [83] = { 39.3, 40.8, 331, 300 }, + [84] = { 31.5, 40.7, 331, 300 }, + [85] = { 39.5, 40.5, 331, 300 }, + [86] = { 37.8, 39.4, 331, 300 }, + [87] = { 38.4, 37.5, 331, 300 }, + [88] = { 33.7, 35.8, 331, 300 }, + [89] = { 73.2, 37.8, 406, 300 }, + [90] = { 76.7, 37.5, 406, 300 }, + [91] = { 75, 36.8, 406, 300 }, + [92] = { 74.3, 36.7, 406, 300 }, + [93] = { 77.7, 36.4, 406, 300 }, + [94] = { 72.3, 36.4, 406, 300 }, + [95] = { 77, 36.1, 406, 300 }, + [96] = { 75.1, 35.7, 406, 300 }, + [97] = { 72.5, 34.7, 406, 300 }, + }, + ["lvl"] = "21-22", + }, + [3810] = { + ["coords"] = { + [1] = { 63.2, 68.3, 331, 300 }, + [2] = { 90, 68.3, 331, 300 }, + [3] = { 88.8, 67.9, 331, 300 }, + [4] = { 88.5, 67.6, 331, 300 }, + [5] = { 90.4, 67.5, 331, 300 }, + [6] = { 62.2, 66.9, 331, 300 }, + [7] = { 90.6, 66.9, 331, 300 }, + [8] = { 88.7, 66.7, 331, 300 }, + [9] = { 90.7, 66.2, 331, 300 }, + [10] = { 88.9, 65.5, 331, 300 }, + [11] = { 90.7, 65.5, 331, 300 }, + [12] = { 91.3, 65.4, 331, 300 }, + [13] = { 89.4, 65.3, 331, 300 }, + [14] = { 85.8, 65, 331, 300 }, + [15] = { 90.7, 64.7, 331, 300 }, + [16] = { 62.1, 64.5, 331, 300 }, + [17] = { 62.6, 64.1, 331, 300 }, + [18] = { 66, 63.5, 331, 300 }, + [19] = { 61.1, 63.5, 331, 300 }, + [20] = { 62.1, 63.5, 331, 300 }, + [21] = { 83.6, 63.2, 331, 300 }, + [22] = { 65.6, 63.1, 331, 300 }, + [23] = { 82.9, 62.9, 331, 300 }, + [24] = { 84.7, 62.8, 331, 300 }, + [25] = { 66.1, 62.7, 331, 300 }, + [26] = { 61.7, 62.1, 331, 300 }, + [27] = { 82.7, 62.1, 331, 300 }, + [28] = { 67.4, 62, 331, 300 }, + [29] = { 62.7, 62, 331, 300 }, + [30] = { 62.3, 61.7, 331, 300 }, + [31] = { 68.5, 61.5, 331, 300 }, + [32] = { 82.6, 61, 331, 300 }, + [33] = { 65.8, 60.6, 331, 300 }, + [34] = { 65.1, 60.3, 331, 300 }, + [35] = { 69, 59.5, 331, 300 }, + [36] = { 64.7, 59.2, 331, 300 }, + [37] = { 64.7, 58.7, 331, 300 }, + [38] = { 64.2, 58.5, 331, 300 }, + [39] = { 64.3, 56.8, 331, 300 }, + [40] = { 69.6, 56.6, 331, 300 }, + [41] = { 64.5, 55.5, 331, 300 }, + [42] = { 63.8, 55.2, 331, 300 }, + [43] = { 70.8, 54.6, 331, 300 }, + [44] = { 63.9, 53.7, 331, 300 }, + [45] = { 71.9, 52.1, 331, 300 }, + [46] = { 72.5, 51.8, 331, 300 }, + [47] = { 70, 51.1, 331, 300 }, + [48] = { 73.2, 50.9, 331, 300 }, + [49] = { 69.7, 50.9, 331, 300 }, + [50] = { 68.8, 50.8, 331, 300 }, + [51] = { 68.7, 50.2, 331, 300 }, + [52] = { 67.4, 50.1, 331, 300 }, + [53] = { 70.5, 50, 331, 300 }, + [54] = { 71.2, 49.8, 331, 300 }, + [55] = { 71, 49.7, 331, 300 }, + [56] = { 71.7, 49.1, 331, 300 }, + [57] = { 72.2, 48.2, 331, 300 }, + [58] = { 73.6, 47.8, 331, 300 }, + [59] = { 73, 47.4, 331, 300 }, + [60] = { 73.2, 46.6, 331, 300 }, + }, + ["lvl"] = "25-26", + }, + [3817] = { + ["coords"] = { + [1] = { 40.6, 72.9, 331, 300 }, + [2] = { 36.8, 71.6, 331, 300 }, + [3] = { 37.8, 71.5, 331, 300 }, + [4] = { 41.5, 71.1, 331, 300 }, + [5] = { 39.5, 70.3, 331, 300 }, + [6] = { 42.1, 70, 331, 300 }, + [7] = { 35.9, 69.3, 331, 300 }, + [8] = { 40, 69.2, 331, 300 }, + [9] = { 42.9, 68.5, 331, 300 }, + [10] = { 41.2, 68.1, 331, 300 }, + [11] = { 38.4, 68.1, 331, 300 }, + [12] = { 38.6, 67.6, 331, 300 }, + [13] = { 37, 67.5, 331, 300 }, + [14] = { 38.7, 66.4, 331, 300 }, + [15] = { 46.1, 66.3, 331, 300 }, + [16] = { 42, 65.8, 331, 300 }, + [17] = { 39.4, 65.7, 331, 300 }, + [18] = { 45.4, 64.5, 331, 300 }, + [19] = { 41.1, 64.4, 331, 300 }, + [20] = { 43, 64.2, 331, 300 }, + [21] = { 52.2, 64.1, 331, 300 }, + [22] = { 39.1, 63.8, 331, 300 }, + [23] = { 46.3, 63.6, 331, 300 }, + [24] = { 40, 63.5, 331, 300 }, + [25] = { 43.6, 63.4, 331, 300 }, + [26] = { 48.2, 63.1, 331, 300 }, + [27] = { 49.5, 63, 331, 300 }, + [28] = { 39.2, 62.9, 331, 300 }, + [29] = { 43.1, 62.8, 331, 300 }, + [30] = { 44.4, 62.6, 331, 300 }, + [31] = { 48.8, 62.3, 331, 300 }, + [32] = { 45.8, 62.1, 331, 300 }, + [33] = { 41.4, 61.9, 331, 300 }, + [34] = { 37.6, 61.8, 331, 300 }, + [35] = { 46.5, 61.2, 331, 300 }, + [36] = { 37.6, 61.1, 331, 300 }, + [37] = { 42.5, 61, 331, 300 }, + [38] = { 47.3, 60.9, 331, 300 }, + [39] = { 45.4, 60.4, 331, 300 }, + [40] = { 38.4, 60.3, 331, 300 }, + [41] = { 44.8, 59.4, 331, 300 }, + [42] = { 41.5, 59.3, 331, 300 }, + [43] = { 43, 58.8, 331, 300 }, + [44] = { 56.3, 57.9, 331, 300 }, + [45] = { 58, 57.7, 331, 300 }, + [46] = { 56.3, 56.4, 331, 300 }, + [47] = { 52, 56.3, 331, 300 }, + [48] = { 48.6, 55.9, 331, 300 }, + [49] = { 54.9, 55.7, 331, 300 }, + [50] = { 55.6, 55.2, 331, 300 }, + [51] = { 52.6, 54.5, 331, 300 }, + [52] = { 51.1, 54.3, 331, 300 }, + [53] = { 54.2, 54.2, 331, 300 }, + [54] = { 51.8, 53.3, 331, 300 }, + [55] = { 54.2, 53.1, 331, 300 }, + [56] = { 50.3, 52.8, 331, 300 }, + [57] = { 55.5, 52.7, 331, 300 }, + [58] = { 47.5, 52.3, 331, 300 }, + [59] = { 56, 51.8, 331, 300 }, + [60] = { 54.3, 51.7, 331, 300 }, + [61] = { 50.2, 51.2, 331, 300 }, + [62] = { 50.2, 50.4, 331, 300 }, + [63] = { 51, 49.9, 331, 300 }, + [64] = { 49.8, 48.7, 331, 300 }, + [65] = { 51.5, 48.6, 331, 300 }, + [66] = { 49.9, 46.7, 331, 300 }, + [67] = { 50.1, 46.6, 331, 300 }, + [68] = { 52.1, 45.4, 331, 300 }, + [69] = { 51.1, 45.2, 331, 300 }, + [70] = { 76.3, 39.1, 406, 300 }, + [71] = { 72.7, 37.9, 406, 300 }, + [72] = { 73.6, 37.8, 406, 300 }, + [73] = { 77.1, 37.4, 406, 300 }, + [74] = { 75.2, 36.7, 406, 300 }, + [75] = { 77.7, 36.4, 406, 300 }, + [76] = { 71.7, 35.7, 406, 300 }, + [77] = { 75.7, 35.6, 406, 300 }, + [78] = { 78.5, 34.9, 406, 300 }, + [79] = { 76.9, 34.6, 406, 300 }, + [80] = { 74.1, 34.6, 406, 300 }, + [81] = { 72.9, 34, 406, 300 }, + }, + ["lvl"] = "22-23", + }, + [3819] = { + ["coords"] = { + [1] = { 64.2, 86.6, 331, 300 }, + [2] = { 70.4, 86.1, 331, 300 }, + [3] = { 70.5, 85.8, 331, 300 }, + [4] = { 63.9, 85.6, 331, 300 }, + [5] = { 65.6, 85.5, 331, 300 }, + [6] = { 64.5, 85.5, 331, 300 }, + [7] = { 64.3, 84.8, 331, 300 }, + [8] = { 70.4, 84.7, 331, 300 }, + [9] = { 65, 84.6, 331, 300 }, + [10] = { 64.9, 83.7, 331, 300 }, + [11] = { 63.4, 79.5, 331, 300 }, + [12] = { 61.5, 79.4, 331, 300 }, + [13] = { 73, 79.2, 331, 300 }, + [14] = { 62.8, 78.9, 331, 300 }, + [15] = { 62.2, 78.8, 331, 300 }, + [16] = { 73.7, 78.7, 331, 300 }, + [17] = { 63.5, 77.8, 331, 300 }, + [18] = { 70.6, 76.3, 331, 300 }, + [19] = { 77.1, 73.5, 331, 300 }, + [20] = { 68.6, 72.8, 331, 300 }, + [21] = { 73.7, 70.8, 331, 300 }, + [22] = { 78.3, 66.3, 331, 300 }, + [23] = { 35.7, 59.5, 331, 300 }, + [24] = { 31, 59.2, 331, 300 }, + [25] = { 34.9, 58.8, 331, 300 }, + [26] = { 18.7, 58.7, 331, 300 }, + [27] = { 20.6, 58.1, 331, 300 }, + [28] = { 21.4, 57.9, 331, 300 }, + [29] = { 22.3, 57.7, 331, 300 }, + [30] = { 20.2, 57.7, 331, 300 }, + [31] = { 34.8, 57.6, 331, 300 }, + [32] = { 19.2, 57.6, 331, 300 }, + [33] = { 23.1, 57.4, 331, 300 }, + [34] = { 28.9, 57.1, 331, 300 }, + [35] = { 21.2, 56.7, 331, 300 }, + [36] = { 30.9, 56.5, 331, 300 }, + [37] = { 18.9, 56.4, 331, 300 }, + [38] = { 28.6, 56.1, 331, 300 }, + [39] = { 35.7, 56.1, 331, 300 }, + [40] = { 19.2, 55.6, 331, 300 }, + [41] = { 22.7, 55.5, 331, 300 }, + [42] = { 24.6, 55.3, 331, 300 }, + [43] = { 35, 55.2, 331, 300 }, + [44] = { 19, 54.8, 331, 300 }, + [45] = { 29, 54.6, 331, 300 }, + [46] = { 18.4, 54.1, 331, 300 }, + [47] = { 31, 53.8, 331, 300 }, + [48] = { 24.6, 53.6, 331, 300 }, + [49] = { 33.3, 53.4, 331, 300 }, + [50] = { 29.5, 52.9, 331, 300 }, + [51] = { 27.1, 52.9, 331, 300 }, + [52] = { 31.1, 52.7, 331, 300 }, + [53] = { 19.1, 52.1, 331, 300 }, + [54] = { 30.6, 52, 331, 300 }, + [55] = { 18.3, 51.9, 331, 300 }, + [56] = { 17.7, 51.6, 331, 300 }, + [57] = { 26, 51.6, 331, 300 }, + [58] = { 27, 51.5, 331, 300 }, + [59] = { 26.9, 51.3, 331, 300 }, + [60] = { 29.3, 50.6, 331, 300 }, + [61] = { 44.2, 50.2, 331, 300 }, + [62] = { 20.9, 50.1, 331, 300 }, + [63] = { 19.4, 50, 331, 300 }, + [64] = { 30.4, 49.8, 331, 300 }, + [65] = { 19.1, 49.6, 331, 300 }, + [66] = { 20.7, 49.5, 331, 300 }, + [67] = { 26, 49.4, 331, 300 }, + [68] = { 30.3, 49.3, 331, 300 }, + [69] = { 21.6, 49.3, 331, 300 }, + [70] = { 32, 49.2, 331, 300 }, + [71] = { 22.8, 48.9, 331, 300 }, + [72] = { 30.9, 48.9, 331, 300 }, + [73] = { 22.4, 48.8, 331, 300 }, + [74] = { 22.9, 48.5, 331, 300 }, + [75] = { 20.9, 48.2, 331, 300 }, + [76] = { 18.7, 48, 331, 300 }, + [77] = { 43.5, 47.7, 331, 300 }, + [78] = { 42.5, 47.5, 331, 300 }, + [79] = { 17, 47.4, 331, 300 }, + [80] = { 23.8, 47.1, 331, 300 }, + [81] = { 23.3, 46.8, 331, 300 }, + [82] = { 17.7, 46.7, 331, 300 }, + [83] = { 22.9, 46.7, 331, 300 }, + [84] = { 43, 46.5, 331, 300 }, + [85] = { 15.4, 45.5, 331, 300 }, + [86] = { 34.9, 45.4, 331, 300 }, + [87] = { 16.8, 45.3, 331, 300 }, + [88] = { 15.3, 44.9, 331, 300 }, + [89] = { 41.8, 44.5, 331, 300 }, + [90] = { 42, 43.9, 331, 300 }, + [91] = { 40.7, 43.5, 331, 300 }, + [92] = { 25.7, 43.3, 331, 300 }, + [93] = { 33, 42, 331, 300 }, + [94] = { 40.7, 41.5, 331, 300 }, + [95] = { 39.3, 41.3, 331, 300 }, + [96] = { 41, 40.8, 331, 300 }, + [97] = { 35.5, 40.6, 331, 300 }, + [98] = { 33.3, 40.3, 331, 300 }, + [99] = { 38.3, 40.1, 331, 300 }, + [100] = { 39.8, 39.8, 331, 300 }, + [101] = { 41.6, 39.4, 331, 300 }, + [102] = { 37.4, 39.2, 331, 300 }, + [103] = { 38.2, 38.9, 331, 300 }, + [104] = { 38.8, 38.7, 331, 300 }, + [105] = { 32.7, 37.7, 331, 300 }, + [106] = { 32.1, 37.1, 331, 300 }, + [107] = { 33.3, 37, 331, 300 }, + [108] = { 34.4, 33.6, 331, 300 }, + [109] = { 37.7, 31.8, 331, 300 }, + [110] = { 67, 26.1, 406, 300 }, + [111] = { 55.3, 25.6, 406, 300 }, + [112] = { 57.1, 25, 406, 300 }, + [113] = { 57.9, 24.8, 406, 300 }, + [114] = { 58.7, 24.6, 406, 300 }, + [115] = { 56.7, 24.6, 406, 300 }, + [116] = { 55.8, 24.4, 406, 300 }, + [117] = { 59.6, 24.3, 406, 300 }, + [118] = { 65.1, 24, 406, 300 }, + [119] = { 57.7, 23.6, 406, 300 }, + [120] = { 67, 23.4, 406, 300 }, + [121] = { 55.4, 23.4, 406, 300 }, + [122] = { 64.7, 23.1, 406, 300 }, + [123] = { 55.7, 22.6, 406, 300 }, + [124] = { 59.1, 22.5, 406, 300 }, + [125] = { 61, 22.3, 406, 300 }, + [126] = { 55.5, 21.8, 406, 300 }, + [127] = { 65.1, 21.7, 406, 300 }, + [128] = { 55, 21.1, 406, 300 }, + [129] = { 61, 20.7, 406, 300 }, + [130] = { 63.4, 20, 406, 300 }, + [131] = { 55.6, 19.2, 406, 300 }, + [132] = { 54.9, 19, 406, 300 }, + [133] = { 54.3, 18.8, 406, 300 }, + [134] = { 62.3, 18.7, 406, 300 }, + [135] = { 63.2, 18.6, 406, 300 }, + [136] = { 63.2, 18.5, 406, 300 }, + [137] = { 57.4, 17.3, 406, 300 }, + [138] = { 55.9, 17.2, 406, 300 }, + [139] = { 55.6, 16.8, 406, 300 }, + [140] = { 57.2, 16.8, 406, 300 }, + [141] = { 58.1, 16.5, 406, 300 }, + [142] = { 57.4, 15.5, 406, 300 }, + [143] = { 53.7, 14.7, 406, 300 }, + [144] = { 52.2, 12.9, 406, 300 }, + }, + ["lvl"] = "20-21", + }, + [3821] = { + ["coords"] = { + [1] = { 88.7, 68.3, 331, 300 }, + [2] = { 89.8, 68.3, 331, 300 }, + [3] = { 90.1, 67.5, 331, 300 }, + [4] = { 88.5, 66.3, 331, 300 }, + [5] = { 90.7, 65.7, 331, 300 }, + [6] = { 90.9, 63.8, 331, 300 }, + [7] = { 87.8, 63.6, 331, 300 }, + [8] = { 86.6, 62.9, 331, 300 }, + [9] = { 85.2, 62.7, 331, 300 }, + [10] = { 87.9, 62.5, 331, 300 }, + [11] = { 85.7, 62.5, 331, 300 }, + [12] = { 82, 62.3, 331, 300 }, + [13] = { 87.1, 62.2, 331, 300 }, + [14] = { 84.9, 62.2, 331, 300 }, + [15] = { 90.9, 61.3, 331, 300 }, + [16] = { 84.9, 61.3, 331, 300 }, + [17] = { 84.9, 60.6, 331, 300 }, + [18] = { 84.8, 60, 331, 300 }, + [19] = { 85.2, 59.7, 331, 300 }, + [20] = { 85.6, 59.5, 331, 300 }, + [21] = { 86, 59.3, 331, 300 }, + [22] = { 86.2, 58.6, 331, 300 }, + [23] = { 86.5, 58.2, 331, 300 }, + [24] = { 87, 57.4, 331, 300 }, + [25] = { 86.4, 57.4, 331, 300 }, + [26] = { 85.9, 57.1, 331, 300 }, + [27] = { 86.6, 56.5, 331, 300 }, + [28] = { 86, 56.1, 331, 300 }, + [29] = { 92.9, 55.6, 331, 300 }, + [30] = { 86.4, 55.5, 331, 300 }, + [31] = { 91, 55.3, 331, 300 }, + [32] = { 82.9, 55, 331, 300 }, + [33] = { 93.3, 53.5, 331, 300 }, + [34] = { 92.1, 51.5, 331, 300 }, + [35] = { 92.8, 51.3, 331, 300 }, + [36] = { 91.2, 50.8, 331, 300 }, + [37] = { 82.9, 49.2, 331, 300 }, + [38] = { 83.8, 48.7, 331, 300 }, + [39] = { 83.5, 47.8, 331, 300 }, + [40] = { 90.7, 47.5, 331, 300 }, + [41] = { 88.9, 47.2, 331, 300 }, + [42] = { 81.1, 46.4, 331, 300 }, + [43] = { 89.9, 46, 331, 300 }, + [44] = { 81, 45.9, 331, 300 }, + [45] = { 91.8, 45.9, 331, 300 }, + [46] = { 89.3, 44.9, 331, 300 }, + [47] = { 83.8, 44.6, 331, 300 }, + }, + ["lvl"] = "28-29", + }, + [3823] = { + ["coords"] = { + [1] = { 41.7, 97.8, 148, 300 }, + [2] = { 42.3, 96.8, 148, 300 }, + [3] = { 45, 96, 148, 300 }, + [4] = { 65.6, 87.2, 331, 300 }, + [5] = { 66.1, 86, 331, 300 }, + [6] = { 67.2, 85.9, 331, 300 }, + [7] = { 63.6, 85.7, 331, 300 }, + [8] = { 66.8, 85.6, 331, 300 }, + [9] = { 63.8, 85.3, 331, 300 }, + [10] = { 66.3, 84.7, 331, 300 }, + [11] = { 72.2, 81.7, 331, 300 }, + [12] = { 60.9, 80.4, 331, 300 }, + [13] = { 73.3, 78.5, 331, 300 }, + [14] = { 62.7, 77.6, 331, 300 }, + [15] = { 76, 66.8, 331, 300 }, + [16] = { 22.6, 62, 331, 300 }, + [17] = { 33.6, 60.5, 331, 300 }, + [18] = { 21.8, 60.4, 331, 300 }, + [19] = { 33.2, 59.6, 331, 300 }, + [20] = { 35.2, 58.3, 331, 300 }, + [21] = { 19.3, 58.3, 331, 300 }, + [22] = { 30.1, 56.7, 331, 300 }, + [23] = { 19, 56.4, 331, 300 }, + [24] = { 23.2, 56, 331, 300 }, + [25] = { 28.3, 55.1, 331, 300 }, + [26] = { 30.1, 55, 331, 300 }, + [27] = { 27.5, 54.5, 331, 300 }, + [28] = { 19.3, 54.1, 331, 300 }, + [29] = { 24.7, 54, 331, 300 }, + [30] = { 25.4, 53.8, 331, 300 }, + [31] = { 27, 52.9, 331, 300 }, + [32] = { 26.3, 52.6, 331, 300 }, + [33] = { 25.5, 52.5, 331, 300 }, + [34] = { 30.5, 51.9, 331, 300 }, + [35] = { 30.7, 51.7, 331, 300 }, + [36] = { 17.8, 51.3, 331, 300 }, + [37] = { 31.2, 50.8, 331, 300 }, + [38] = { 32.3, 50.5, 331, 300 }, + [39] = { 17.7, 50.3, 331, 300 }, + [40] = { 31.3, 49.8, 331, 300 }, + [41] = { 24.5, 49.1, 331, 300 }, + [42] = { 20.1, 49, 331, 300 }, + [43] = { 30.1, 48, 331, 300 }, + [44] = { 23, 47.6, 331, 300 }, + [45] = { 22.9, 47.6, 331, 300 }, + [46] = { 18.4, 47.4, 331, 300 }, + [47] = { 21.9, 46.6, 331, 300 }, + [48] = { 17.7, 46.3, 331, 300 }, + [49] = { 15.7, 45.7, 331, 300 }, + [50] = { 16.8, 45.4, 331, 300 }, + [51] = { 16.5, 36.4, 331, 300 }, + [52] = { 23.8, 36, 331, 300 }, + [53] = { 17.9, 35.7, 331, 300 }, + [54] = { 18.8, 33.6, 331, 300 }, + [55] = { 22.9, 33, 331, 300 }, + [56] = { 27.4, 31.4, 331, 300 }, + [57] = { 21.9, 30.2, 331, 300 }, + [58] = { 20, 29.8, 331, 300 }, + [59] = { 23.2, 29.3, 331, 300 }, + [60] = { 23.5, 28.5, 331, 300 }, + [61] = { 28.1, 27.5, 331, 300 }, + [62] = { 19.2, 27.4, 331, 300 }, + [63] = { 27, 26.2, 331, 300 }, + [64] = { 26, 22.1, 331, 300 }, + [65] = { 16.5, 21.3, 331, 300 }, + [66] = { 19.5, 21.1, 331, 300 }, + [67] = { 25.7, 21.1, 331, 300 }, + [68] = { 29.8, 19.7, 331, 300 }, + [69] = { 27.1, 18.6, 331, 300 }, + [70] = { 25.8, 15.9, 331, 300 }, + [71] = { 26.5, 14.7, 331, 300 }, + [72] = { 29.6, 13.8, 331, 300 }, + [73] = { 59, 28.7, 406, 300 }, + [74] = { 58.3, 27.1, 406, 300 }, + [75] = { 55.9, 25.1, 406, 300 }, + [76] = { 66.2, 23.6, 406, 300 }, + [77] = { 55.6, 23.4, 406, 300 }, + [78] = { 59.6, 22.9, 406, 300 }, + [79] = { 64.5, 22.1, 406, 300 }, + [80] = { 66.2, 22, 406, 300 }, + [81] = { 63.8, 21.5, 406, 300 }, + [82] = { 55.9, 21.1, 406, 300 }, + [83] = { 61, 21, 406, 300 }, + [84] = { 61.7, 20.8, 406, 300 }, + [85] = { 63.2, 20, 406, 300 }, + [86] = { 62.6, 19.7, 406, 300 }, + [87] = { 61.8, 19.6, 406, 300 }, + [88] = { 54.4, 18.4, 406, 300 }, + [89] = { 54.3, 17.5, 406, 300 }, + [90] = { 56.6, 16.3, 406, 300 }, + [91] = { 52.4, 13.1, 406, 300 }, + }, + ["lvl"] = "19-20", + }, + [3826] = "_", + [3831] = "_", + [3832] = "_", + [3835] = { + ["coords"] = { + [1] = { 46.1, 34.4, 17, 413 }, + [2] = { 48.3, 34.4, 17, 413 }, + [3] = { 46.3, 34.1, 17, 413 }, + [4] = { 47.9, 34.1, 17, 413 }, + [5] = { 46, 33.8, 17, 413 }, + [6] = { 48.9, 33.8, 17, 413 }, + [7] = { 49.2, 32.7, 17, 413 }, + [8] = { 46.5, 32.3, 17, 413 }, + [9] = { 48.1, 32.3, 17, 413 }, + [10] = { 47.6, 32.2, 17, 413 }, + [11] = { 48.5, 31.8, 17, 413 }, + [12] = { 25.7, 58.6, 718, 413 }, + [13] = { 64.1, 58.3, 718, 413 }, + [14] = { 28.5, 53.9, 718, 413 }, + [15] = { 57, 53.2, 718, 413 }, + [16] = { 24.5, 47.9, 718, 413 }, + [17] = { 75.9, 47.2, 718, 413 }, + [18] = { 80.1, 27.6, 718, 413 }, + [19] = { 33.6, 20.8, 718, 413 }, + [20] = { 61.8, 20.4, 718, 413 }, + [21] = { 53, 19.5, 718, 413 }, + [22] = { 69.1, 13, 718, 413 }, + [23] = { 76.2, 94.1, 718, 120 }, + [24] = { 79.4, 92.7, 718, 120 }, + [25] = { 66.3, 85.9, 718, 120 }, + [26] = { 84.2, 81.5, 718, 120 }, + [27] = { 84.9, 78.7, 718, 120 }, + [28] = { 86.7, 78.4, 718, 120 }, + [29] = { 68.2, 62.2, 718, 7200 }, + [30] = { 67.1, 59.4, 718, 7200 }, + [31] = { 68.3, 57.4, 718, 7200 }, + [32] = { 66.5, 52.2, 718, 7200 }, + [33] = { 65.5, 47.3, 718, 7200 }, + [34] = { 63.2, 46.8, 718, 7200 }, + [35] = { 50.2, 37.8, 718, 7200 }, + [36] = { 36.4, 36, 718, 7200 }, + [37] = { 63.9, 32.6, 718, 7200 }, + [38] = { 55.4, 30.7, 718, 7200 }, + [39] = { 46, 29.6, 718, 7200 }, + [40] = { 70.6, 16.2, 718, 120 }, + [41] = { 68, 14.7, 718, 120 }, + }, + ["lvl"] = "1", + }, + [3836] = { + ["coords"] = { + [1] = { 18.2, 84, 38, 30 }, + [2] = { 7.9, 87.3, 5602, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "44", + }, + [3838] = { + ["coords"] = { + [1] = { 58.4, 94, 141, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [3839] = "_", + [3840] = { + ["coords"] = { + [1] = { 63.8, 72.3, 718, 18000 }, + [2] = { 65.6, 72.3, 718, 18000 }, + [3] = { 63.1, 71.2, 718, 18000 }, + [4] = { 77.7, 70.9, 718, 18000 }, + [5] = { 74.3, 69.6, 718, 18000 }, + [6] = { 88.1, 66.5, 718, 18000 }, + [7] = { 87.4, 66.5, 718, 18000 }, + [8] = { 85.9, 64.4, 718, 18000 }, + [9] = { 85.8, 62.5, 718, 18000 }, + [10] = { 93, 61.7, 718, 18000 }, + [11] = { 63.8, 61.3, 718, 18000 }, + [12] = { 93.3, 61.1, 718, 18000 }, + [13] = { 83.1, 61.1, 718, 18000 }, + [14] = { 63.2, 56.8, 718, 18000 }, + [15] = { 89.1, 56.6, 718, 18000 }, + [16] = { 93.8, 55.3, 718, 18000 }, + [17] = { 63.7, 55.2, 718, 18000 }, + [18] = { 95, 54.9, 718, 18000 }, + [19] = { 84.2, 54.1, 718, 18000 }, + [20] = { 64.6, 52.7, 718, 18000 }, + [21] = { 62.3, 51.8, 718, 18000 }, + [22] = { 75, 49.6, 718, 18000 }, + [23] = { 93.6, 47, 718, 18000 }, + [24] = { 71.9, 46, 718, 18000 }, + [25] = { 83, 45.3, 718, 18000 }, + [26] = { 70.2, 44.4, 718, 18000 }, + [27] = { 32.4, 43.6, 718, 18000 }, + [28] = { 88.1, 43.3, 718, 18000 }, + [29] = { 94.8, 43.2, 718, 18000 }, + [30] = { 94.5, 42.2, 718, 18000 }, + [31] = { 28.3, 41.9, 718, 18000 }, + [32] = { 29, 41.4, 718, 18000 }, + [33] = { 93.6, 40.6, 718, 18000 }, + [34] = { 28.9, 40.5, 718, 18000 }, + [35] = { 68.3, 40.4, 718, 18000 }, + [36] = { 94.4, 40.3, 718, 18000 }, + [37] = { 89.9, 39.7, 718, 18000 }, + [38] = { 70.9, 36.9, 718, 18000 }, + [39] = { 26.9, 36.8, 718, 18000 }, + [40] = { 57.3, 36.4, 718, 18000 }, + [41] = { 69.8, 35.5, 718, 18000 }, + [42] = { 44, 34.4, 718, 18000 }, + [43] = { 88.9, 34.4, 718, 18000 }, + [44] = { 45, 33.9, 718, 18000 }, + [45] = { 35.8, 33.7, 718, 18000 }, + [46] = { 35.8, 32.6, 718, 18000 }, + [47] = { 77.6, 32.4, 718, 18000 }, + [48] = { 83.7, 32, 718, 18000 }, + [49] = { 53.3, 31.9, 718, 18000 }, + [50] = { 26.9, 31.8, 718, 18000 }, + [51] = { 71.3, 31.5, 718, 18000 }, + [52] = { 90.1, 31.1, 718, 18000 }, + [53] = { 31.6, 30.8, 718, 18000 }, + [54] = { 90.6, 29.6, 718, 18000 }, + [55] = { 89.8, 28.8, 718, 18000 }, + [56] = { 72.1, 28.2, 718, 18000 }, + [57] = { 31.6, 27.7, 718, 18000 }, + [58] = { 72.5, 27.2, 718, 18000 }, + [59] = { 84.2, 27.1, 718, 18000 }, + [60] = { 29.9, 26.8, 718, 18000 }, + [61] = { 50.1, 26.1, 718, 18000 }, + [62] = { 42.1, 25.4, 718, 18000 }, + [63] = { 23.5, 25.4, 718, 18000 }, + [64] = { 22.1, 24.2, 718, 18000 }, + [65] = { 24.4, 23.9, 718, 18000 }, + [66] = { 88.2, 23.5, 718, 18000 }, + [67] = { 51.9, 21.9, 718, 18000 }, + [68] = { 26.9, 21.7, 718, 18000 }, + [69] = { 49.4, 21.3, 718, 18000 }, + [70] = { 32.8, 20.7, 718, 18000 }, + }, + ["lvl"] = "19-20", + ["rnk"] = "1", + }, + [3841] = { + ["coords"] = { + [1] = { 36.3, 45.6, 148, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [3845] = { + ["coords"] = { + [1] = { 34.7, 48.8, 331, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [3846] = { + ["coords"] = { + [1] = { 14.8, 31.3, 331, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "17", + }, + [3847] = { + ["coords"] = { + [1] = { 26.4, 38.6, 331, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "27", + }, + [3848] = { + ["coords"] = { + [1] = { 85.2, 44.7, 331, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "31", + }, + [3849] = { + ["coords"] = { + [1] = { 84.6, 71.9, 209, 18000 }, + }, + ["fac"] = "H", + ["lvl"] = "18", + ["rnk"] = "1", + }, + [3850] = { + ["coords"] = { + [1] = { 82.3, 70.8, 209, 18000 }, + }, + ["fac"] = "A", + ["lvl"] = "18", + ["rnk"] = "1", + }, + [3851] = { + ["coords"] = { + [1] = { 78.7, 73.1, 209, 18000 }, + [2] = { 82.8, 72.8, 209, 18000 }, + [3] = { 80.6, 71.7, 209, 18000 }, + [4] = { 87.6, 57.6, 209, 18000 }, + [5] = { 80.2, 57.2, 209, 18000 }, + [6] = { 83.7, 56.8, 209, 18000 }, + [7] = { 79.4, 52.6, 209, 18000 }, + }, + ["lvl"] = "18-19", + ["rnk"] = "1", + }, + [3852] = "_", + [3853] = { + ["coords"] = { + [1] = { 72.8, 66.6, 209, 18000 }, + [2] = { 59.5, 64, 209, 18000 }, + [3] = { 61.2, 63.9, 209, 18000 }, + [4] = { 55.3, 61.5, 209, 18000 }, + [5] = { 50.8, 58.4, 209, 18000 }, + [6] = { 71.9, 57.5, 209, 18000 }, + [7] = { 64.3, 55.1, 209, 18000 }, + [8] = { 56.4, 54.4, 209, 18000 }, + [9] = { 71.7, 53.1, 209, 18000 }, + [10] = { 61.1, 52.9, 209, 18000 }, + [11] = { 48.7, 45.3, 209, 18000 }, + [12] = { 58.5, 45.2, 209, 18000 }, + [13] = { 56.2, 44.4, 209, 18000 }, + [14] = { 50.5, 38.6, 209, 18000 }, + }, + ["lvl"] = "19-20", + ["rnk"] = "1", + }, + [3854] = { + ["coords"] = { + [1] = { 21.2, 76, 209, 18000 }, + [2] = { 29.7, 75.1, 209, 18000 }, + [3] = { 11.7, 74.5, 209, 18000 }, + [4] = { 25.8, 73.8, 209, 18000 }, + [5] = { 37.3, 73.2, 209, 18000 }, + [6] = { 26.3, 71.9, 209, 18000 }, + [7] = { 24.1, 65.2, 209, 18000 }, + [8] = { 53.1, 46.9, 209, 18000 }, + }, + ["lvl"] = "20-21", + ["rnk"] = "1", + }, + [3855] = { + ["coords"] = { + [1] = { 36.8, 93.7, 209, 18000 }, + [2] = { 41.1, 92, 209, 18000 }, + [3] = { 41.7, 87.9, 209, 18000 }, + [4] = { 29.5, 85.8, 209, 18000 }, + [5] = { 29.9, 85.4, 209, 18000 }, + [6] = { 42.7, 83.6, 209, 18000 }, + [7] = { 31.9, 81, 209, 18000 }, + [8] = { 20, 79.7, 209, 18000 }, + [9] = { 19.1, 79.4, 209, 18000 }, + [10] = { 32.4, 77, 209, 18000 }, + [11] = { 21.6, 74.9, 209, 18000 }, + [12] = { 10.4, 74.1, 209, 18000 }, + [13] = { 10.9, 73.8, 209, 18000 }, + [14] = { 33.6, 73, 209, 18000 }, + [15] = { 9.6, 68.6, 209, 18000 }, + [16] = { 23.9, 67.2, 209, 18000 }, + [17] = { 24.9, 61.9, 209, 18000 }, + [18] = { 24, 61, 209, 18000 }, + [19] = { 12.5, 58.8, 209, 18000 }, + [20] = { 16.2, 56.8, 209, 18000 }, + [21] = { 15.3, 56.2, 209, 18000 }, + [22] = { 38.4, 52.6, 209, 18000 }, + [23] = { 43.3, 52.4, 209, 18000 }, + [24] = { 39.8, 49.6, 209, 18000 }, + }, + ["lvl"] = "20-21", + ["rnk"] = "1", + }, + [3857] = { + ["coords"] = { + [1] = { 37, 75, 209, 18000 }, + [2] = { 41.1, 73.5, 209, 18000 }, + [3] = { 42.1, 69.5, 209, 18000 }, + [4] = { 41.3, 65.1, 209, 18000 }, + }, + ["lvl"] = "21-22", + ["rnk"] = "1", + }, + [3859] = { + ["coords"] = { + [1] = { 64.7, 47.4, 209, 18000 }, + [2] = { 69.3, 47.3, 209, 18000 }, + [3] = { 69.4, 42.8, 209, 18000 }, + [4] = { 63.9, 40.7, 209, 18000 }, + [5] = { 68.7, 34.7, 209, 18000 }, + [6] = { 71.7, 32.5, 209, 18000 }, + [7] = { 66.5, 31.4, 209, 18000 }, + [8] = { 72.2, 23.4, 209, 18000 }, + }, + ["lvl"] = "23-24", + ["rnk"] = "1", + }, + [3860] = "_", + [3861] = { + ["coords"] = { + [1] = { 82.6, 77.9, 209, 604800 }, + [2] = { 80.3, 76.5, 209, 604800 }, + [3] = { 83.3, 69.1, 209, 18000 }, + [4] = { 87.5, 59.8, 209, 18000 }, + [5] = { 77.9, 56.5, 209, 18000 }, + [6] = { 85.3, 53.7, 209, 18000 }, + [7] = { 81.4, 51.2, 209, 18000 }, + [8] = { 74.2, 26.2, 209, 604800 }, + }, + ["lvl"] = "18-19", + ["rnk"] = "1", + }, + [3862] = { + ["coords"] = { + [1] = { 70.9, 67.3, 209, 18000 }, + [2] = { 73.2, 66, 209, 18000 }, + [3] = { 76.1, 60.4, 209, 18000 }, + [4] = { 66.1, 56.3, 209, 18000 }, + [5] = { 74, 54.2, 209, 18000 }, + [6] = { 55.9, 51.7, 209, 18000 }, + [7] = { 48.8, 43.3, 209, 18000 }, + [8] = { 66.4, 30.9, 209, 604800 }, + }, + ["lvl"] = "18-19", + ["rnk"] = "1", + }, + [3863] = { + ["coords"] = { + [1] = { 66.6, 35.4, 209, 18000 }, + [2] = { 68.2, 27.1, 209, 18000 }, + [3] = { 65.4, 26.4, 209, 18000 }, + [4] = { 66.4, 23.5, 209, 18000 }, + [5] = { 68.9, 22.7, 209, 604800 }, + [6] = { 74.5, 22.5, 209, 18000 }, + [7] = { 70.7, 19.9, 209, 18000 }, + }, + ["lvl"] = "24-25", + ["rnk"] = "1", + }, + [3864] = { + ["coords"] = { + [1] = { 52.4, 68.2, 209, 18000 }, + [2] = { 49.9, 64, 209, 18000 }, + [3] = { 49.6, 61.5, 209, 18000 }, + }, + ["lvl"] = "19-20", + ["rnk"] = "1", + }, + [3865] = { + ["coords"] = { + [1] = { 52.4, 68.2, 209, 18000 }, + [2] = { 49.9, 64, 209, 18000 }, + [3] = { 49.6, 61.5, 209, 18000 }, + }, + ["lvl"] = "20-21", + ["rnk"] = "1", + }, + [3866] = { + ["coords"] = { + [1] = { 81.1, 71.7, 209, 604800 }, + }, + ["lvl"] = "22-23", + ["rnk"] = "1", + }, + [3868] = { + ["coords"] = { + [1] = { 82.2, 73.9, 209, 604800 }, + }, + ["lvl"] = "23-24", + ["rnk"] = "1", + }, + [3869] = "_", + [3870] = "_", + [3872] = { + ["coords"] = { + [1] = { 81.7, 51.6, 209, 604800 }, + }, + ["lvl"] = "25", + ["rnk"] = "1", + }, + [3873] = { + ["coords"] = { + [1] = { 85.1, 71.2, 209, 18000 }, + [2] = { 86.8, 57, 209, 18000 }, + [3] = { 82.9, 52.7, 209, 18000 }, + [4] = { 81.7, 51.6, 209, 604800 }, + [5] = { 80.5, 51.6, 209, 18000 }, + [6] = { 78.4, 49.5, 209, 18000 }, + [7] = { 71.3, 47.9, 209, 18000 }, + }, + ["lvl"] = "23-24", + ["rnk"] = "1", + }, + [3875] = { + ["coords"] = { + [1] = { 36.5, 79.2, 209, 18000 }, + [2] = { 38.9, 78.9, 209, 18000 }, + [3] = { 48.9, 77.2, 209, 18000 }, + [4] = { 40.1, 76.2, 209, 18000 }, + [5] = { 45.5, 74.4, 209, 18000 }, + [6] = { 49.5, 73.3, 209, 18000 }, + [7] = { 38.5, 70.4, 209, 18000 }, + [8] = { 39.7, 66.8, 209, 18000 }, + [9] = { 42.9, 66.3, 209, 18000 }, + [10] = { 45.5, 65.1, 209, 604800 }, + [11] = { 72.5, 63.5, 209, 18000 }, + [12] = { 59.6, 56.8, 209, 18000 }, + [13] = { 46.9, 52, 209, 18000 }, + [14] = { 48.9, 51.9, 209, 18000 }, + [15] = { 53.6, 47.7, 209, 18000 }, + [16] = { 52.4, 46.5, 209, 18000 }, + [17] = { 56.1, 40, 209, 18000 }, + [18] = { 54.5, 38.1, 209, 18000 }, + }, + ["lvl"] = "20-21", + ["rnk"] = "1", + }, + [3876] = "_", + [3877] = { + ["coords"] = { + [1] = { 50.8, 78.3, 209, 18000 }, + [2] = { 75.3, 76.8, 209, 18000 }, + [3] = { 70.1, 75.3, 209, 18000 }, + [4] = { 68.4, 74.9, 209, 18000 }, + [5] = { 52, 74.6, 209, 18000 }, + [6] = { 66.2, 73.8, 209, 18000 }, + [7] = { 47.2, 71.1, 209, 18000 }, + [8] = { 48.7, 67.4, 209, 18000 }, + [9] = { 58.6, 67.4, 209, 18000 }, + [10] = { 47.7, 64.2, 209, 604800 }, + }, + ["lvl"] = "21-22", + ["rnk"] = "1", + }, + [3878] = "_", + [3880] = { + ["coords"] = { + [1] = { 22.2, 53, 331, 30 }, + [2] = { 58.7, 20.1, 406, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [3885] = { + ["coords"] = { + [1] = { 49.8, 67.2, 331, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [3886] = { + ["coords"] = { + [1] = { 46.7, 55.7, 209, 604800 }, + }, + ["lvl"] = "22", + ["rnk"] = "1", + }, + [3887] = { + ["coords"] = { + [1] = { 36.4, 84.4, 209, 604800 }, + }, + ["lvl"] = "24", + ["rnk"] = "1", + }, + [3894] = { + ["coords"] = { + [1] = { 37.4, 51.8, 331, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "21", + }, + [3895] = "_", + [3897] = { + ["coords"] = { + [1] = { 54.3, 74.2, 331, 300 }, + }, + ["lvl"] = "9", + }, + [3901] = { + ["coords"] = { + [1] = { 21.7, 53.3, 331, 30 }, + [2] = { 58.2, 20.4, 406, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "26", + }, + [3914] = { + ["coords"] = { + [1] = { 82.1, 75.2, 209, 604800 }, + }, + ["lvl"] = "20", + ["rnk"] = "1", + }, + [3915] = { + ["coords"] = { + [1] = { 36.7, 49.7, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "23", + }, + [3916] = { + ["coords"] = { + [1] = { 53.5, 46.2, 331, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "24", + }, + [3917] = { + ["coords"] = { + [1] = { 51.2, 73.4, 331, 300 }, + [2] = { 48.3, 72.8, 331, 300 }, + [3] = { 52.1, 72.8, 331, 300 }, + [4] = { 52.1, 72.2, 331, 300 }, + [5] = { 50.2, 72.2, 331, 300 }, + [6] = { 50.9, 72, 331, 300 }, + [7] = { 47.9, 71.9, 331, 300 }, + [8] = { 49.2, 71.9, 331, 300 }, + [9] = { 46.6, 71.8, 331, 300 }, + [10] = { 50.7, 71.6, 331, 300 }, + [11] = { 51, 71.4, 331, 300 }, + [12] = { 49.8, 71.1, 331, 300 }, + [13] = { 48.3, 70.9, 331, 300 }, + [14] = { 47.7, 70.7, 331, 300 }, + [15] = { 46.3, 70.7, 331, 300 }, + [16] = { 47, 70.6, 331, 300 }, + [17] = { 51.9, 70.5, 331, 300 }, + [18] = { 50.3, 70.3, 331, 300 }, + [19] = { 51.5, 70.2, 331, 300 }, + [20] = { 46.1, 69.9, 331, 300 }, + [21] = { 49.4, 69.8, 331, 300 }, + [22] = { 48.1, 69.7, 331, 300 }, + [23] = { 47.7, 69.6, 331, 300 }, + [24] = { 49.5, 69.6, 331, 300 }, + [25] = { 50.5, 69.5, 331, 300 }, + [26] = { 51.6, 69.5, 331, 300 }, + [27] = { 45.1, 69.3, 331, 300 }, + [28] = { 47.6, 69.1, 331, 300 }, + [29] = { 46.1, 68.7, 331, 300 }, + [30] = { 48, 68.1, 331, 300 }, + [31] = { 47.1, 67.4, 331, 300 }, + [32] = { 46.4, 67.4, 331, 300 }, + [33] = { 50.9, 67.4, 331, 300 }, + [34] = { 86.5, 39.6, 406, 300 }, + [35] = { 83.7, 39, 406, 300 }, + [36] = { 85.5, 38.5, 406, 300 }, + [37] = { 86.1, 38.3, 406, 300 }, + [38] = { 83.3, 38.2, 406, 300 }, + [39] = { 84.5, 38.2, 406, 300 }, + [40] = { 82, 38.1, 406, 300 }, + [41] = { 86, 37.9, 406, 300 }, + [42] = { 86.3, 37.7, 406, 300 }, + [43] = { 85.1, 37.4, 406, 300 }, + [44] = { 83.7, 37.3, 406, 300 }, + [45] = { 83, 37.1, 406, 300 }, + [46] = { 81.7, 37, 406, 300 }, + [47] = { 82.4, 37, 406, 300 }, + [48] = { 81.5, 36.3, 406, 300 }, + [49] = { 83.4, 36.1, 406, 300 }, + [50] = { 83.1, 36, 406, 300 }, + [51] = { 80.6, 35.7, 406, 300 }, + [52] = { 82.9, 35.5, 406, 300 }, + [53] = { 81.6, 35.1, 406, 300 }, + }, + ["lvl"] = "23-25", + }, + [3922] = { + ["coords"] = { + [1] = { 42.3, 35.1, 331, 300 }, + [2] = { 41.1, 34.8, 331, 300 }, + [3] = { 42.8, 34.5, 331, 300 }, + [4] = { 42.3, 34.3, 331, 300 }, + [5] = { 42.8, 33.8, 331, 300 }, + [6] = { 42.3, 33.7, 331, 300 }, + [7] = { 39.7, 33.3, 331, 300 }, + [8] = { 41, 33.2, 331, 300 }, + [9] = { 40.9, 32.8, 331, 300 }, + [10] = { 40.2, 32.6, 331, 300 }, + [11] = { 39.8, 32.5, 331, 300 }, + [12] = { 41.3, 32, 331, 300 }, + [13] = { 39.9, 31.9, 331, 300 }, + [14] = { 40.7, 31.9, 331, 300 }, + [15] = { 40.4, 31.4, 331, 300 }, + [16] = { 38, 30.2, 331, 300 }, + [17] = { 41.4, 99.4, 361, 300 }, + [18] = { 40.2, 99.1, 361, 300 }, + [19] = { 41.9, 98.8, 361, 300 }, + [20] = { 41.4, 98.6, 361, 300 }, + [21] = { 42, 98.1, 361, 300 }, + [22] = { 41.4, 98, 361, 300 }, + [23] = { 40.1, 97.4, 361, 300 }, + [24] = { 40, 97.1, 361, 300 }, + [25] = { 39.3, 96.9, 361, 300 }, + [26] = { 38.9, 96.7, 361, 300 }, + [27] = { 40.4, 96.3, 361, 300 }, + [28] = { 39, 96.2, 361, 300 }, + [29] = { 39.8, 96.2, 361, 300 }, + [30] = { 39.5, 95.7, 361, 300 }, + }, + ["lvl"] = "23-24", + }, + [3924] = { + ["coords"] = { + [1] = { 30.9, 45, 331, 300 }, + [2] = { 31, 44.4, 331, 300 }, + [3] = { 31, 44, 331, 300 }, + [4] = { 31.6, 43.9, 331, 300 }, + [5] = { 31, 43.3, 331, 300 }, + [6] = { 32.6, 42.8, 331, 300 }, + [7] = { 30.3, 42.3, 331, 300 }, + [8] = { 31, 40.4, 331, 300 }, + [9] = { 33.8, 39.7, 331, 300 }, + [10] = { 31.6, 39.5, 331, 300 }, + [11] = { 32.1, 38.9, 331, 300 }, + [12] = { 34.2, 38.9, 331, 300 }, + [13] = { 33.9, 38.8, 331, 300 }, + [14] = { 33.6, 38.7, 331, 300 }, + [15] = { 34.1, 38.4, 331, 300 }, + [16] = { 36.1, 37, 331, 300 }, + [17] = { 35.7, 36.9, 331, 300 }, + [18] = { 39.6, 36.8, 331, 300 }, + [19] = { 35.9, 36.6, 331, 300 }, + [20] = { 39.5, 36.4, 331, 300 }, + [21] = { 39.8, 36.4, 331, 300 }, + [22] = { 37.9, 35.4, 331, 300 }, + [23] = { 38.5, 35.4, 331, 300 }, + [24] = { 37.8, 34.9, 331, 300 }, + [25] = { 37.9, 34.2, 331, 300 }, + [26] = { 35, 32.8, 331, 300 }, + [27] = { 36.1, 32.7, 331, 300 }, + [28] = { 36.1, 32, 331, 300 }, + [29] = { 35.8, 31.7, 331, 300 }, + }, + ["lvl"] = "23-24", + }, + [3925] = { + ["coords"] = { + [1] = { 31.5, 45.7, 331, 300 }, + [2] = { 31.4, 45.2, 331, 300 }, + [3] = { 32, 43.1, 331, 300 }, + [4] = { 32.6, 42.2, 331, 300 }, + [5] = { 32.6, 39.6, 331, 300 }, + [6] = { 31.9, 39.2, 331, 300 }, + [7] = { 31.7, 38, 331, 300 }, + [8] = { 40, 37.9, 331, 300 }, + [9] = { 39.6, 37.7, 331, 300 }, + [10] = { 33.4, 37.5, 331, 300 }, + [11] = { 36.7, 37, 331, 300 }, + [12] = { 39.1, 36.8, 331, 300 }, + [13] = { 33.5, 36.6, 331, 300 }, + [14] = { 39.3, 36.3, 331, 300 }, + [15] = { 36.6, 36.1, 331, 300 }, + [16] = { 36.8, 35.2, 331, 300 }, + [17] = { 37.9, 34.5, 331, 300 }, + [18] = { 37.4, 34.3, 331, 300 }, + [19] = { 37.7, 33.9, 331, 300 }, + [20] = { 35.6, 32.8, 331, 300 }, + [21] = { 36.7, 32.7, 331, 300 }, + [22] = { 35.8, 32, 331, 300 }, + }, + ["lvl"] = "23-24", + }, + [3927] = { + ["coords"] = { + [1] = { 71.9, 23.5, 209, 604800 }, + }, + ["lvl"] = "25", + ["rnk"] = "1", + }, + [3928] = { + ["coords"] = { + [1] = { 69.9, 85.3, 331, 300 }, + [2] = { 70.7, 85.1, 331, 300 }, + [3] = { 68.9, 84.9, 331, 300 }, + [4] = { 69, 84.8, 331, 300 }, + [5] = { 71.3, 83.8, 331, 300 }, + [6] = { 69.3, 82.7, 331, 300 }, + [7] = { 74.3, 77.9, 331, 300 }, + [8] = { 68.2, 77.7, 331, 300 }, + [9] = { 74.6, 77.2, 331, 300 }, + [10] = { 71.5, 77, 331, 300 }, + [11] = { 73.7, 77, 331, 300 }, + [12] = { 72.6, 76.9, 331, 300 }, + [13] = { 70.1, 76.1, 331, 300 }, + [14] = { 70.8, 76, 331, 300 }, + [15] = { 74.5, 75.6, 331, 300 }, + [16] = { 74.7, 75.4, 331, 300 }, + [17] = { 70.7, 75.2, 331, 300 }, + [18] = { 72.5, 75.1, 331, 300 }, + [19] = { 79.1, 74.5, 331, 300 }, + [20] = { 69.9, 74.1, 331, 300 }, + [21] = { 77, 73.8, 331, 300 }, + [22] = { 71, 73.8, 331, 300 }, + [23] = { 78.3, 73.6, 331, 300 }, + [24] = { 70.5, 73.6, 331, 300 }, + [25] = { 75.9, 73.5, 331, 300 }, + [26] = { 74.4, 73.4, 331, 300 }, + [27] = { 73.1, 73.2, 331, 300 }, + [28] = { 77.7, 72.6, 331, 300 }, + [29] = { 76.8, 72.2, 331, 300 }, + [30] = { 76.6, 70.7, 331, 300 }, + [31] = { 74.4, 70.2, 331, 300 }, + [32] = { 75.9, 70, 331, 300 }, + [33] = { 77.4, 69.8, 331, 300 }, + [34] = { 78.3, 69.7, 331, 300 }, + [35] = { 74.8, 69.6, 331, 300 }, + [36] = { 74.2, 69.5, 331, 300 }, + [37] = { 76.7, 68.5, 331, 300 }, + [38] = { 77.1, 68.3, 331, 300 }, + [39] = { 76.2, 67.5, 331, 300 }, + [40] = { 78, 65.8, 331, 300 }, + [41] = { 78.3, 64.6, 331, 300 }, + }, + ["lvl"] = "20-22", + }, + [3934] = { + ["coords"] = { + [1] = { 52, 30, 17, 25 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3937] = { + ["coords"] = { + [1] = { 32.9, 51.3, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "12", + }, + [3938] = "_", + [3942] = { + ["coords"] = { + [1] = { 75.1, 74.2, 331, 300 }, + }, + ["lvl"] = "32", + }, + [3944] = { + ["coords"] = { + [1] = { 25.8, 98.7, 148, 300 }, + [2] = { 25.3, 98.1, 148, 300 }, + [3] = { 24.8, 98.1, 148, 300 }, + [4] = { 26.3, 98, 148, 300 }, + [5] = { 25.9, 98, 148, 300 }, + [6] = { 24.7, 97.5, 148, 300 }, + [7] = { 25.2, 97.4, 148, 300 }, + [8] = { 26.3, 97.2, 148, 300 }, + [9] = { 26, 97.2, 148, 300 }, + [10] = { 23.8, 97.2, 148, 300 }, + [11] = { 26.4, 96.7, 148, 300 }, + [12] = { 24.6, 96.6, 148, 300 }, + [13] = { 23.3, 96.6, 148, 300 }, + [14] = { 23.9, 96.6, 148, 300 }, + [15] = { 25.8, 96.5, 148, 300 }, + [16] = { 25.3, 96.4, 148, 300 }, + [17] = { 25.3, 95.9, 148, 300 }, + [18] = { 23.7, 95.9, 148, 300 }, + [19] = { 25.9, 95.6, 148, 300 }, + [20] = { 25.5, 95.6, 148, 300 }, + [21] = { 24.3, 95, 148, 300 }, + [22] = { 25.9, 94.9, 148, 300 }, + [23] = { 25.5, 94.8, 148, 300 }, + [24] = { 24.6, 94.2, 148, 300 }, + [25] = { 25.3, 94.2, 148, 300 }, + [26] = { 24.2, 94.2, 148, 300 }, + [27] = { 24.8, 93.7, 148, 300 }, + [28] = { 24.3, 93.5, 148, 300 }, + [29] = { 11.2, 31, 331, 300 }, + [30] = { 7.7, 17, 331, 300 }, + [31] = { 7.3, 16.2, 331, 300 }, + [32] = { 6.6, 16.2, 331, 300 }, + [33] = { 8.4, 16.1, 331, 300 }, + [34] = { 7.8, 16.1, 331, 300 }, + [35] = { 6.6, 15.5, 331, 300 }, + [36] = { 7.1, 15.5, 331, 300 }, + [37] = { 8.3, 15.2, 331, 300 }, + [38] = { 8, 15.2, 331, 300 }, + [39] = { 5.5, 15.2, 331, 300 }, + [40] = { 8.4, 14.6, 331, 300 }, + [41] = { 6.4, 14.5, 331, 300 }, + [42] = { 4.9, 14.5, 331, 300 }, + [43] = { 5.6, 14.5, 331, 300 }, + [44] = { 7.8, 14.4, 331, 300 }, + [45] = { 7.2, 14.3, 331, 300 }, + [46] = { 7.2, 13.7, 331, 300 }, + [47] = { 5.4, 13.7, 331, 300 }, + [48] = { 7.8, 13.4, 331, 300 }, + [49] = { 7.4, 13.4, 331, 300 }, + [50] = { 6.1, 12.7, 331, 300 }, + [51] = { 7.8, 12.6, 331, 300 }, + [52] = { 7.4, 12.5, 331, 300 }, + [53] = { 6.5, 11.8, 331, 300 }, + [54] = { 7.2, 11.8, 331, 300 }, + [55] = { 6, 11.7, 331, 300 }, + [56] = { 6.7, 11.2, 331, 300 }, + [57] = { 6, 11, 331, 300 }, + }, + ["lvl"] = "20-21", + }, + [3945] = { + ["coords"] = { + [1] = { 27.4, 74.1, 33, 30 }, + }, + ["lvl"] = "30-39", + }, + [3946] = { + ["coords"] = { + [1] = { 73.5, 79.2, 10, 0 }, + [2] = { 50.5, 39.3, 331, 0 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [3947] = { + ["coords"] = { + [1] = { 57.8, 51.9, 5138, 18000 }, + [2] = { 66.9, 40.7, 5138, 18000 }, + [3] = { 67.5, 39, 5138, 18000 }, + [4] = { 70.9, 36.9, 5138, 18000 }, + [5] = { 54.6, 36.8, 5138, 18000 }, + [6] = { 73.6, 36.7, 5138, 18000 }, + [7] = { 76.3, 36.7, 5138, 18000 }, + [8] = { 57.1, 36.5, 5138, 18000 }, + [9] = { 73.5, 30.9, 5138, 18000 }, + [10] = { 70.7, 30.1, 5138, 18000 }, + [11] = { 71.3, 27.7, 5138, 18000 }, + [12] = { 70.8, 26.8, 5138, 18000 }, + [13] = { 55.2, 19.9, 5138, 18000 }, + [14] = { 70.7, 18.9, 5138, 18000 }, + [15] = { 80.6, 18.4, 5138, 18000 }, + [16] = { 56.3, 16.4, 5138, 18000 }, + }, + ["lvl"] = "19-20", + ["rnk"] = "1", + }, + [3948] = { + ["coords"] = { + [1] = { 35.3, 49.7, 38, 300 }, + [2] = { 16.6, 69.7, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [3957] = "_", + [3966] = "_", + [3971] = "_", + [3972] = "_", + [3973] = "_", + [3974] = { + ["coords"] = { + [1] = { 30.8, 87.8, 5135, 604800 }, + }, + ["lvl"] = "34", + ["rnk"] = "1", + }, + [3975] = { + ["coords"] = { + [1] = { 78.6, 10.8, 5153, 604800 }, + }, + ["lvl"] = "40", + ["rnk"] = "1", + }, + [3976] = { + ["coords"] = { + [1] = { 49.1, 27.2, 5163, 604800 }, + }, + ["lvl"] = "42", + ["rnk"] = "1", + }, + [3977] = { + ["coords"] = { + [1] = { 49, 16.9, 5163, 604800 }, + }, + ["lvl"] = "42", + ["rnk"] = "1", + }, + [3978] = { + ["coords"] = { + [1] = { 36.8, 26.4, 215, 30 }, + [2] = { 34.4, 46.9, 1638, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [3979] = { + ["coords"] = { + [1] = { 75, 12.5, 1537, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [3980] = { + ["coords"] = { + [1] = { 51.5, 58.4, 267, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [3981] = { + ["coords"] = { + [1] = { 72.3, 59, 5136, 18000 }, + }, + ["fac"] = "H", + ["lvl"] = "8", + }, + [3983] = { + ["coords"] = { + [1] = { 71.5, 58.9, 5136, 604800 }, + }, + ["lvl"] = "32", + ["rnk"] = "1", + }, + [3988] = { + ["coords"] = { + [1] = { 71.1, 59.1, 406, 300 }, + [2] = { 73.1, 59, 406, 300 }, + [3] = { 72.7, 58.7, 406, 300 }, + [4] = { 68.5, 58.4, 406, 300 }, + [5] = { 72, 57.6, 406, 300 }, + [6] = { 71.9, 57, 406, 300 }, + [7] = { 62.5, 56.8, 406, 300 }, + [8] = { 62.4, 56.8, 406, 300 }, + [9] = { 62.6, 56.5, 406, 300 }, + [10] = { 66.1, 55.6, 406, 300 }, + [11] = { 62.1, 55.3, 406, 300 }, + [12] = { 65.4, 55, 406, 300 }, + [13] = { 64.9, 55, 406, 300 }, + [14] = { 61.6, 54.8, 406, 300 }, + [15] = { 69.9, 53.7, 406, 300 }, + [16] = { 69.7, 53.4, 406, 300 }, + [17] = { 70.7, 53.1, 406, 300 }, + [18] = { 71.3, 52.6, 406, 300 }, + [19] = { 65.6, 50.2, 406, 300 }, + [20] = { 66.1, 50, 406, 300 }, + [21] = { 65.6, 50, 406, 300 }, + [22] = { 69.1, 48.1, 406, 300 }, + [23] = { 69.4, 47.6, 406, 300 }, + }, + ["lvl"] = "19-20", + }, + [3989] = { + ["coords"] = { + [1] = { 72, 61.5, 406, 300 }, + [2] = { 72.1, 61.3, 406, 300 }, + [3] = { 72.6, 61.2, 406, 300 }, + [4] = { 72, 61, 406, 300 }, + [5] = { 72.1, 61, 406, 300 }, + [6] = { 72.4, 60.9, 406, 300 }, + [7] = { 72.2, 60.7, 406, 300 }, + [8] = { 65.2, 60.3, 406, 300 }, + [9] = { 66, 59.9, 406, 300 }, + [10] = { 63.8, 59.7, 406, 300 }, + [11] = { 64.8, 59.6, 406, 300 }, + [12] = { 66.9, 59.5, 406, 300 }, + [13] = { 69.2, 59.5, 406, 300 }, + [14] = { 63.1, 59.2, 406, 300 }, + [15] = { 69.7, 59, 406, 300 }, + [16] = { 64.4, 59, 406, 300 }, + [17] = { 65.5, 59, 406, 300 }, + [18] = { 67.5, 58.9, 406, 300 }, + [19] = { 68.6, 58.9, 406, 300 }, + [20] = { 66.4, 58.8, 406, 300 }, + [21] = { 65, 58.1, 406, 300 }, + [22] = { 70.2, 58, 406, 300 }, + [23] = { 61.6, 58, 406, 300 }, + [24] = { 67, 58, 406, 300 }, + [25] = { 63.6, 58, 406, 300 }, + [26] = { 62.6, 58, 406, 300 }, + [27] = { 71.5, 57.9, 406, 300 }, + [28] = { 63.2, 57.9, 406, 300 }, + [29] = { 66.3, 57.9, 406, 300 }, + [30] = { 68.1, 57.9, 406, 300 }, + [31] = { 69.2, 57.9, 406, 300 }, + [32] = { 72.6, 57.9, 406, 300 }, + [33] = { 65.8, 57.9, 406, 300 }, + [34] = { 60.9, 57.7, 406, 300 }, + [35] = { 69.7, 57.4, 406, 300 }, + [36] = { 68.7, 57.4, 406, 300 }, + [37] = { 63.3, 57.2, 406, 300 }, + [38] = { 61.9, 57.2, 406, 300 }, + [39] = { 68.1, 57.1, 406, 300 }, + [40] = { 67.6, 57.1, 406, 300 }, + [41] = { 60.9, 57, 406, 300 }, + [42] = { 64.8, 57, 406, 300 }, + [43] = { 71, 56.9, 406, 300 }, + [44] = { 61.5, 56.9, 406, 300 }, + [45] = { 60.8, 56.5, 406, 300 }, + [46] = { 68.8, 56.5, 406, 300 }, + [47] = { 64.6, 56.5, 406, 300 }, + [48] = { 60.3, 56.4, 406, 300 }, + [49] = { 71.5, 56.3, 406, 300 }, + [50] = { 68.2, 56.2, 406, 300 }, + [51] = { 64.3, 55.8, 406, 300 }, + [52] = { 65.6, 55.6, 406, 300 }, + [53] = { 59.9, 55.5, 406, 300 }, + [54] = { 60.8, 55.4, 406, 300 }, + [55] = { 65.2, 55.4, 406, 300 }, + [56] = { 65.5, 55.2, 406, 300 }, + [57] = { 65.2, 55.1, 406, 300 }, + [58] = { 66.2, 54.9, 406, 300 }, + [59] = { 60.8, 54.9, 406, 300 }, + [60] = { 70.5, 54.9, 406, 300 }, + [61] = { 65.8, 54.8, 406, 300 }, + [62] = { 65.6, 54.8, 406, 300 }, + [63] = { 65.9, 54.7, 406, 300 }, + [64] = { 70.9, 54.6, 406, 300 }, + [65] = { 65.5, 54.6, 406, 300 }, + [66] = { 64.4, 54.4, 406, 300 }, + [67] = { 65.7, 54.4, 406, 300 }, + [68] = { 67.1, 54.2, 406, 300 }, + [69] = { 65.1, 54.1, 406, 300 }, + [70] = { 64.7, 54.1, 406, 300 }, + [71] = { 68.7, 54, 406, 300 }, + [72] = { 67.4, 53.8, 406, 300 }, + [73] = { 65.4, 53.7, 406, 300 }, + [74] = { 66.6, 53.6, 406, 300 }, + [75] = { 65.9, 53.3, 406, 300 }, + [76] = { 65.3, 53.2, 406, 300 }, + [77] = { 70.3, 53, 406, 300 }, + [78] = { 64.9, 53, 406, 300 }, + [79] = { 63.7, 52.9, 406, 300 }, + [80] = { 66.9, 52.9, 406, 300 }, + [81] = { 69.3, 52.3, 406, 300 }, + [82] = { 66.5, 52.2, 406, 300 }, + [83] = { 64.3, 52.2, 406, 300 }, + [84] = { 63.9, 52, 406, 300 }, + [85] = { 69.8, 51.8, 406, 300 }, + [86] = { 64.9, 51.5, 406, 300 }, + [87] = { 63.7, 51.4, 406, 300 }, + [88] = { 65.3, 50.7, 406, 300 }, + [89] = { 64.7, 50.6, 406, 300 }, + [90] = { 62.9, 50.5, 406, 300 }, + [91] = { 63.8, 50.5, 406, 300 }, + [92] = { 65.8, 50.3, 406, 300 }, + [93] = { 64.3, 50.2, 406, 300 }, + [94] = { 63.8, 50, 406, 300 }, + [95] = { 64.8, 49.8, 406, 300 }, + [96] = { 66.1, 49.7, 406, 300 }, + [97] = { 64.3, 49.5, 406, 300 }, + [98] = { 69.8, 48.9, 406, 300 }, + [99] = { 69.3, 48.9, 406, 300 }, + [100] = { 69.8, 48.1, 406, 300 }, + }, + ["lvl"] = "18-19", + }, + [3990] = "_", + [3991] = { + ["coords"] = { + [1] = { 72, 61.5, 406, 300 }, + [2] = { 72.1, 61.3, 406, 300 }, + [3] = { 72.6, 61.2, 406, 300 }, + [4] = { 72, 61, 406, 300 }, + [5] = { 72.1, 61, 406, 300 }, + [6] = { 72.4, 60.9, 406, 300 }, + [7] = { 72.2, 60.7, 406, 300 }, + [8] = { 65.2, 60.3, 406, 300 }, + [9] = { 66, 59.9, 406, 300 }, + [10] = { 63.8, 59.7, 406, 300 }, + [11] = { 64.8, 59.6, 406, 300 }, + [12] = { 66.9, 59.5, 406, 300 }, + [13] = { 69.2, 59.5, 406, 300 }, + [14] = { 63.1, 59.2, 406, 300 }, + [15] = { 69.7, 59, 406, 300 }, + [16] = { 64.4, 59, 406, 300 }, + [17] = { 65.5, 59, 406, 300 }, + [18] = { 67.5, 58.9, 406, 300 }, + [19] = { 68.6, 58.9, 406, 300 }, + [20] = { 66.4, 58.8, 406, 300 }, + [21] = { 65, 58.1, 406, 300 }, + [22] = { 70.2, 58, 406, 300 }, + [23] = { 61.6, 58, 406, 300 }, + [24] = { 67, 58, 406, 300 }, + [25] = { 63.6, 58, 406, 300 }, + [26] = { 62.6, 58, 406, 300 }, + [27] = { 71.5, 57.9, 406, 300 }, + [28] = { 63.2, 57.9, 406, 300 }, + [29] = { 66.3, 57.9, 406, 300 }, + [30] = { 68.1, 57.9, 406, 300 }, + [31] = { 69.2, 57.9, 406, 300 }, + [32] = { 72.6, 57.9, 406, 300 }, + [33] = { 65.8, 57.9, 406, 300 }, + [34] = { 60.9, 57.7, 406, 300 }, + [35] = { 69.7, 57.4, 406, 300 }, + [36] = { 68.7, 57.4, 406, 300 }, + [37] = { 63.3, 57.2, 406, 300 }, + [38] = { 61.9, 57.2, 406, 300 }, + [39] = { 68.1, 57.1, 406, 300 }, + [40] = { 67.6, 57.1, 406, 300 }, + [41] = { 60.9, 57, 406, 300 }, + [42] = { 64.8, 57, 406, 300 }, + [43] = { 71, 56.9, 406, 300 }, + [44] = { 61.5, 56.9, 406, 300 }, + [45] = { 60.8, 56.5, 406, 300 }, + [46] = { 68.8, 56.5, 406, 300 }, + [47] = { 64.6, 56.5, 406, 300 }, + [48] = { 60.3, 56.4, 406, 300 }, + [49] = { 71.5, 56.3, 406, 300 }, + [50] = { 68.2, 56.2, 406, 300 }, + [51] = { 64.3, 55.8, 406, 300 }, + [52] = { 65.6, 55.6, 406, 300 }, + [53] = { 59.9, 55.5, 406, 300 }, + [54] = { 60.8, 55.4, 406, 300 }, + [55] = { 65.2, 55.4, 406, 300 }, + [56] = { 65.5, 55.2, 406, 300 }, + [57] = { 65.2, 55.1, 406, 300 }, + [58] = { 66.2, 54.9, 406, 300 }, + [59] = { 60.8, 54.9, 406, 300 }, + [60] = { 70.5, 54.9, 406, 300 }, + [61] = { 65.8, 54.8, 406, 300 }, + [62] = { 65.6, 54.8, 406, 300 }, + [63] = { 65.9, 54.7, 406, 300 }, + [64] = { 70.9, 54.6, 406, 300 }, + [65] = { 65.5, 54.6, 406, 300 }, + [66] = { 64.4, 54.4, 406, 300 }, + [67] = { 65.7, 54.4, 406, 300 }, + [68] = { 67.1, 54.2, 406, 300 }, + [69] = { 65.1, 54.1, 406, 300 }, + [70] = { 64.7, 54.1, 406, 300 }, + [71] = { 68.7, 54, 406, 300 }, + [72] = { 67.4, 53.8, 406, 300 }, + [73] = { 65.4, 53.7, 406, 300 }, + [74] = { 66.6, 53.6, 406, 300 }, + [75] = { 65.9, 53.3, 406, 300 }, + [76] = { 65.3, 53.2, 406, 300 }, + [77] = { 70.3, 53, 406, 300 }, + [78] = { 64.9, 53, 406, 300 }, + [79] = { 63.7, 52.9, 406, 300 }, + [80] = { 66.9, 52.9, 406, 300 }, + [81] = { 69.3, 52.3, 406, 300 }, + [82] = { 66.5, 52.2, 406, 300 }, + [83] = { 64.3, 52.2, 406, 300 }, + [84] = { 63.9, 52, 406, 300 }, + [85] = { 69.8, 51.8, 406, 300 }, + [86] = { 64.9, 51.5, 406, 300 }, + [87] = { 63.7, 51.4, 406, 300 }, + [88] = { 65.3, 50.7, 406, 300 }, + [89] = { 64.7, 50.6, 406, 300 }, + [90] = { 62.9, 50.5, 406, 300 }, + [91] = { 63.8, 50.5, 406, 300 }, + [92] = { 65.8, 50.3, 406, 300 }, + [93] = { 64.3, 50.2, 406, 300 }, + [94] = { 63.8, 50, 406, 300 }, + [95] = { 64.8, 49.8, 406, 300 }, + [96] = { 66.1, 49.7, 406, 300 }, + [97] = { 64.3, 49.5, 406, 300 }, + [98] = { 69.8, 48.9, 406, 300 }, + [99] = { 69.3, 48.9, 406, 300 }, + [100] = { 69.8, 48.1, 406, 300 }, + }, + ["lvl"] = "19-20", + }, + [3992] = { + ["coords"] = { + [1] = { 62.7, 46.2, 406, 300 }, + [2] = { 63.1, 46.1, 406, 300 }, + [3] = { 63.8, 45.3, 406, 300 }, + [4] = { 63.7, 45.1, 406, 300 }, + [5] = { 63.8, 44.8, 406, 300 }, + [6] = { 63.9, 44.7, 406, 300 }, + [7] = { 63.7, 44.6, 406, 300 }, + }, + ["lvl"] = "20-21", + }, + [3993] = { + ["coords"] = { + [1] = { 62.6, 45.8, 406, 300 }, + [2] = { 63.2, 45.6, 406, 300 }, + [3] = { 64, 45.5, 406, 300 }, + }, + ["lvl"] = "21-22", + }, + [3994] = { + ["coords"] = { + [1] = { 41.8, 19.7, 406, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [3995] = { + ["coords"] = { + [1] = { 72.2, 92.6, 406, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [3996] = { + ["coords"] = { + [1] = { 35.8, 49.1, 331, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "19", + }, + [3997] = "_", + [3999] = { + ["coords"] = { + [1] = { 70.7, 64.2, 406, 300 }, + [2] = { 70.1, 64.1, 406, 300 }, + [3] = { 70.3, 64, 406, 300 }, + [4] = { 70.9, 64, 406, 300 }, + [5] = { 70.5, 63.9, 406, 300 }, + [6] = { 70.4, 63.7, 406, 300 }, + [7] = { 70.9, 63.7, 406, 300 }, + [8] = { 70.5, 63.6, 406, 300 }, + [9] = { 69.9, 63.6, 406, 300 }, + [10] = { 71.1, 63.4, 406, 300 }, + [11] = { 70.3, 63.2, 406, 300 }, + [12] = { 70.9, 63.1, 406, 300 }, + [13] = { 70.2, 63.1, 406, 300 }, + [14] = { 70.6, 63, 406, 300 }, + [15] = { 70.1, 62.9, 406, 300 }, + [16] = { 71.2, 62.9, 406, 300 }, + [17] = { 70.6, 62.8, 406, 300 }, + [18] = { 70.1, 62.7, 406, 300 }, + [19] = { 70.4, 62.7, 406, 300 }, + [20] = { 70.4, 62.6, 406, 300 }, + [21] = { 70, 62.5, 406, 300 }, + [22] = { 70.7, 62.5, 406, 300 }, + [23] = { 69.8, 62.4, 406, 300 }, + [24] = { 71.3, 62.4, 406, 300 }, + [25] = { 70.4, 62.4, 406, 300 }, + [26] = { 71.6, 62.3, 406, 300 }, + [27] = { 70.9, 62.3, 406, 300 }, + [28] = { 71.2, 62.2, 406, 300 }, + [29] = { 70.8, 62.2, 406, 300 }, + [30] = { 69.8, 62.2, 406, 300 }, + [31] = { 70.3, 62.1, 406, 300 }, + [32] = { 71.5, 61.9, 406, 300 }, + [33] = { 71.8, 61.8, 406, 300 }, + [34] = { 69.9, 61.8, 406, 300 }, + [35] = { 71.3, 61.8, 406, 300 }, + [36] = { 71, 61.7, 406, 300 }, + [37] = { 71.1, 61.7, 406, 300 }, + [38] = { 70.4, 61.6, 406, 300 }, + [39] = { 72.1, 61.5, 406, 300 }, + [40] = { 71.1, 61.5, 406, 300 }, + [41] = { 70.8, 61.3, 406, 300 }, + [42] = { 72.5, 61.3, 406, 300 }, + [43] = { 71, 61.1, 406, 300 }, + [44] = { 72, 61, 406, 300 }, + [45] = { 72.5, 60.6, 406, 300 }, + [46] = { 71, 60.4, 406, 300 }, + }, + ["lvl"] = "21-22", + }, + [4003] = { + ["coords"] = { + [1] = { 71, 62.7, 406, 300 }, + [2] = { 71.7, 61.5, 406, 300 }, + [3] = { 71.8, 61.4, 406, 300 }, + [4] = { 71.6, 61.2, 406, 300 }, + [5] = { 73.1, 61.1, 406, 300 }, + [6] = { 71.4, 60.8, 406, 300 }, + [7] = { 72.1, 60.5, 406, 300 }, + }, + ["lvl"] = "20-21", + }, + [4004] = { + ["coords"] = { + [1] = { 70.4, 63.8, 406, 300 }, + [2] = { 70.9, 63.7, 406, 300 }, + [3] = { 70.5, 62.7, 406, 300 }, + [4] = { 70.9, 62.7, 406, 300 }, + [5] = { 70.6, 62, 406, 300 }, + [6] = { 71.6, 61.9, 406, 300 }, + [7] = { 71.6, 61.5, 406, 300 }, + [8] = { 70.7, 61.4, 406, 300 }, + [9] = { 71.9, 61.4, 406, 300 }, + }, + ["lvl"] = "21-22", + }, + [4005] = { + ["coords"] = { + [1] = { 63.8, 89, 406, 300 }, + [2] = { 64.7, 88, 406, 300 }, + [3] = { 67.5, 85, 406, 300 }, + [4] = { 66.3, 84.3, 406, 300 }, + [5] = { 64.4, 80.8, 406, 300 }, + [6] = { 61.7, 79.5, 406, 300 }, + [7] = { 61.5, 79.3, 406, 300 }, + [8] = { 59.7, 76.5, 406, 300 }, + [9] = { 60.8, 75.2, 406, 300 }, + [10] = { 57.3, 75.1, 406, 300 }, + [11] = { 58.4, 75, 406, 300 }, + [12] = { 57.1, 75, 406, 300 }, + [13] = { 55.2, 74.9, 406, 300 }, + [14] = { 56.3, 74.7, 406, 300 }, + [15] = { 55.3, 74.7, 406, 300 }, + [16] = { 55, 74.6, 406, 300 }, + [17] = { 59.5, 74.5, 406, 300 }, + [18] = { 56, 74.1, 406, 300 }, + [19] = { 60.5, 74.1, 406, 300 }, + [20] = { 56, 73.8, 406, 300 }, + [21] = { 59.5, 73, 406, 300 }, + [22] = { 59.6, 72.1, 406, 300 }, + [23] = { 61, 71.5, 406, 300 }, + }, + ["lvl"] = "16-17", + }, + [4006] = { + ["coords"] = { + [1] = { 55.9, 71.5, 406, 300 }, + [2] = { 55, 71.3, 406, 300 }, + [3] = { 54.7, 71.3, 406, 300 }, + [4] = { 55.6, 71, 406, 300 }, + [5] = { 55.1, 70.9, 406, 300 }, + [6] = { 74, 57, 406, 300 }, + [7] = { 74.6, 56.4, 406, 300 }, + [8] = { 73.4, 56.2, 406, 300 }, + [9] = { 75.5, 56, 406, 300 }, + [10] = { 74.1, 55.7, 406, 300 }, + [11] = { 73.1, 55.4, 406, 300 }, + [12] = { 76.1, 54.9, 406, 300 }, + [13] = { 72.4, 54.8, 406, 300 }, + [14] = { 74.7, 54.4, 406, 300 }, + [15] = { 73.7, 54.4, 406, 300 }, + [16] = { 73.5, 54.1, 406, 300 }, + [17] = { 74.4, 53.9, 406, 300 }, + [18] = { 60.2, 53.7, 406, 300 }, + [19] = { 59.9, 53.1, 406, 300 }, + [20] = { 61, 52.7, 406, 300 }, + [21] = { 61.7, 52.5, 406, 300 }, + [22] = { 60.5, 52.4, 406, 300 }, + [23] = { 73.1, 51.8, 406, 300 }, + [24] = { 61, 51.4, 406, 300 }, + [25] = { 72.5, 51.1, 406, 300 }, + [26] = { 68.6, 50.5, 406, 300 }, + [27] = { 73.8, 50.5, 406, 300 }, + [28] = { 61.4, 50.4, 406, 300 }, + [29] = { 72.2, 50.4, 406, 300 }, + [30] = { 73.1, 50.4, 406, 300 }, + [31] = { 72, 50.4, 406, 300 }, + [32] = { 70.9, 49.9, 406, 300 }, + [33] = { 66.9, 49.7, 406, 300 }, + [34] = { 73.7, 49.7, 406, 300 }, + [35] = { 68.2, 49.7, 406, 300 }, + [36] = { 74.5, 49.6, 406, 300 }, + [37] = { 71.8, 49.2, 406, 300 }, + [38] = { 73, 49.2, 406, 300 }, + [39] = { 74.2, 49.1, 406, 300 }, + [40] = { 71.9, 48.6, 406, 300 }, + [41] = { 72.7, 48.2, 406, 300 }, + [42] = { 73.6, 48.1, 406, 300 }, + [43] = { 71.9, 47.7, 406, 300 }, + [44] = { 71.4, 47.7, 406, 300 }, + [45] = { 67.8, 46.4, 406, 300 }, + }, + ["lvl"] = "19-20", + }, + [4007] = { + ["coords"] = { + [1] = { 54.5, 74.4, 406, 300 }, + [2] = { 54, 74.4, 406, 300 }, + [3] = { 55, 73.9, 406, 300 }, + [4] = { 54.3, 73.9, 406, 300 }, + [5] = { 54.7, 73.5, 406, 300 }, + [6] = { 55.3, 73.3, 406, 300 }, + [7] = { 54.3, 73.1, 406, 300 }, + [8] = { 55.5, 73.1, 406, 300 }, + [9] = { 56.1, 72.9, 406, 300 }, + [10] = { 54.5, 72.8, 406, 300 }, + [11] = { 54.9, 72.4, 406, 300 }, + [12] = { 54.6, 72.3, 406, 300 }, + [13] = { 56.1, 72.2, 406, 300 }, + [14] = { 55.3, 72.1, 406, 300 }, + [15] = { 54.6, 71.8, 406, 300 }, + [16] = { 61.2, 67, 406, 300 }, + [17] = { 61.7, 67, 406, 300 }, + [18] = { 61.6, 65.8, 406, 300 }, + [19] = { 62.1, 64.9, 406, 300 }, + [20] = { 61.1, 64.9, 406, 300 }, + [21] = { 61.6, 64.8, 406, 300 }, + [22] = { 62.3, 64.6, 406, 300 }, + [23] = { 60.8, 64.2, 406, 300 }, + [24] = { 62.1, 64.1, 406, 300 }, + [25] = { 54.4, 63.6, 406, 300 }, + [26] = { 60.4, 63.1, 406, 300 }, + [27] = { 55.5, 63, 406, 300 }, + [28] = { 62.9, 62.9, 406, 300 }, + [29] = { 54.3, 62.7, 406, 300 }, + [30] = { 61.8, 62.6, 406, 300 }, + [31] = { 64.3, 62.6, 406, 300 }, + [32] = { 59.5, 62.4, 406, 300 }, + [33] = { 61.3, 62.2, 406, 300 }, + [34] = { 62.6, 62.1, 406, 300 }, + [35] = { 60.8, 61.6, 406, 300 }, + [36] = { 61.3, 61.3, 406, 300 }, + [37] = { 62.2, 61.3, 406, 300 }, + [38] = { 54.1, 60.5, 406, 300 }, + [39] = { 61.7, 60.3, 406, 300 }, + [40] = { 61.3, 59.6, 406, 300 }, + [41] = { 53.7, 59, 406, 300 }, + [42] = { 54.9, 58.1, 406, 300 }, + [43] = { 53.9, 57.1, 406, 300 }, + [44] = { 51.1, 52.5, 406, 300 }, + [45] = { 50, 51.5, 406, 300 }, + [46] = { 51.5, 51.5, 406, 300 }, + [47] = { 53.7, 51.5, 406, 300 }, + [48] = { 49.7, 50.6, 406, 300 }, + [49] = { 51.3, 49.9, 406, 300 }, + [50] = { 55, 49.6, 406, 300 }, + [51] = { 50.9, 48.9, 406, 300 }, + [52] = { 54.8, 48, 406, 300 }, + [53] = { 53.3, 47.5, 406, 300 }, + [54] = { 54.2, 47, 406, 300 }, + [55] = { 53, 45.2, 406, 300 }, + }, + ["lvl"] = "17-18", + }, + [4008] = { + ["coords"] = { + [1] = { 31, 26.9, 17, 300 }, + [2] = { 30.9, 26.8, 17, 300 }, + [3] = { 31.7, 26.4, 17, 300 }, + [4] = { 30.5, 26, 17, 300 }, + [5] = { 33.5, 24.9, 17, 300 }, + [6] = { 34, 24.3, 17, 300 }, + [7] = { 31, 22.9, 17, 300 }, + [8] = { 35.7, 21.7, 17, 3600 }, + [9] = { 32.5, 21.6, 17, 300 }, + [10] = { 36.6, 21.3, 17, 3600 }, + [11] = { 36.4, 21.3, 17, 3600 }, + [12] = { 30.8, 21, 17, 300 }, + [13] = { 35.7, 20.9, 17, 3600 }, + [14] = { 30.6, 20.9, 17, 300 }, + [15] = { 74.2, 90.9, 406, 300 }, + [16] = { 74, 90.7, 406, 300 }, + [17] = { 75.4, 90.2, 406, 300 }, + [18] = { 64.4, 89.8, 406, 300 }, + [19] = { 73.3, 89.4, 406, 300 }, + [20] = { 78.5, 87.5, 406, 300 }, + [21] = { 79.3, 86.5, 406, 300 }, + [22] = { 72.2, 85.3, 406, 300 }, + [23] = { 71.6, 84.9, 406, 300 }, + [24] = { 70.8, 84.7, 406, 300 }, + [25] = { 70.7, 84.6, 406, 300 }, + [26] = { 74.3, 84.1, 406, 300 }, + [27] = { 82.2, 82.1, 406, 3600 }, + [28] = { 76.8, 82, 406, 300 }, + [29] = { 83.6, 81.4, 406, 3600 }, + [30] = { 83.3, 81.4, 406, 3600 }, + [31] = { 73.8, 81, 406, 300 }, + [32] = { 82.1, 80.8, 406, 3600 }, + [33] = { 73.5, 80.7, 406, 300 }, + [34] = { 58.5, 72, 406, 300 }, + [35] = { 61.5, 72, 406, 300 }, + }, + ["lvl"] = "15-17", + }, + [4009] = { + ["coords"] = { + [1] = { 61.8, 69.4, 406, 300 }, + [2] = { 62.4, 66.6, 406, 300 }, + [3] = { 62.8, 65.2, 406, 300 }, + [4] = { 63.4, 64.2, 406, 300 }, + [5] = { 65, 62.6, 406, 300 }, + [6] = { 59.6, 61.7, 406, 300 }, + [7] = { 65.7, 61.1, 406, 300 }, + [8] = { 68.9, 60.6, 406, 300 }, + [9] = { 74.9, 58.3, 406, 300 }, + [10] = { 59.2, 57.4, 406, 300 }, + [11] = { 35.8, 56.1, 406, 3600 }, + [12] = { 34.9, 55.4, 406, 3600 }, + [13] = { 36, 55.1, 406, 300 }, + [14] = { 35.5, 55.1, 406, 300 }, + [15] = { 76.4, 55, 406, 280 }, + [16] = { 76.1, 53.8, 406, 300 }, + [17] = { 75.3, 53.7, 406, 300 }, + [18] = { 59.3, 52.4, 406, 300 }, + [19] = { 33.9, 51.8, 406, 300 }, + [20] = { 60.5, 49.5, 406, 300 }, + [21] = { 73.4, 47.6, 406, 300 }, + [22] = { 68.2, 47.4, 406, 300 }, + [23] = { 70.3, 45.7, 406, 300 }, + [24] = { 53, 44.4, 406, 300 }, + [25] = { 51.6, 43.1, 406, 300 }, + [26] = { 50.3, 42.8, 406, 300 }, + [27] = { 51.2, 42.7, 406, 300 }, + [28] = { 52.5, 41.8, 406, 300 }, + [29] = { 51.2, 41.4, 406, 300 }, + [30] = { 53.2, 41.4, 406, 300 }, + [31] = { 50.4, 41.4, 406, 300 }, + [32] = { 53.1, 41.2, 406, 300 }, + [33] = { 50.1, 40.4, 406, 300 }, + [34] = { 52, 40.2, 406, 300 }, + [35] = { 52.7, 40, 406, 300 }, + [36] = { 33.2, 37.3, 406, 300 }, + [37] = { 32.6, 36, 406, 300 }, + [38] = { 31.5, 33.8, 406, 300 }, + [39] = { 23.5, 26.9, 406, 300 }, + [40] = { 26.9, 25.3, 406, 300 }, + [41] = { 22.8, 24.5, 406, 300 }, + [42] = { 25.9, 23.8, 406, 300 }, + }, + ["lvl"] = "18-19", + }, + [4011] = { + ["coords"] = { + [1] = { 62, 65.3, 406, 300 }, + [2] = { 63.2, 61.2, 406, 300 }, + [3] = { 74.7, 57, 406, 300 }, + [4] = { 60.8, 52.6, 406, 300 }, + [5] = { 74.6, 48.7, 406, 300 }, + }, + ["lvl"] = "19-20", + }, + [4012] = { + ["coords"] = { + [1] = { 49.1, 51.6, 406, 300 }, + [2] = { 49.1, 51.1, 406, 300 }, + [3] = { 53.7, 50.2, 406, 300 }, + [4] = { 52.6, 49.9, 406, 300 }, + [5] = { 49.2, 49.9, 406, 300 }, + [6] = { 48, 49.4, 406, 300 }, + [7] = { 54.2, 49.3, 406, 300 }, + [8] = { 55.5, 48.4, 406, 300 }, + [9] = { 53.9, 48.3, 406, 300 }, + [10] = { 56.3, 48.3, 406, 300 }, + [11] = { 52.7, 48.2, 406, 300 }, + [12] = { 53.7, 48.1, 406, 300 }, + [13] = { 55.7, 47.7, 406, 300 }, + [14] = { 56.6, 47, 406, 300 }, + }, + ["lvl"] = "21-22", + }, + [4013] = { + ["coords"] = { + [1] = { 55.3, 46.6, 406, 300 }, + [2] = { 54.7, 45.3, 406, 300 }, + [3] = { 56.6, 43.9, 406, 300 }, + [4] = { 55.6, 43.7, 406, 300 }, + [5] = { 54.4, 43.5, 406, 300 }, + [6] = { 56, 43.3, 406, 300 }, + [7] = { 54.8, 43.1, 406, 300 }, + [8] = { 55, 42.4, 406, 300 }, + [9] = { 55.4, 42.2, 406, 300 }, + [10] = { 55, 42, 406, 300 }, + }, + ["lvl"] = "23-24", + }, + [4014] = { + ["coords"] = { + [1] = { 48.7, 51, 406, 300 }, + [2] = { 48.6, 50.8, 406, 300 }, + [3] = { 48.5, 50.4, 406, 300 }, + [4] = { 53.3, 49.4, 406, 300 }, + [5] = { 52.9, 48.9, 406, 300 }, + [6] = { 56.8, 48.1, 406, 300 }, + [7] = { 56.6, 47.5, 406, 300 }, + [8] = { 50.9, 46.7, 406, 300 }, + [9] = { 56.2, 45.9, 406, 300 }, + [10] = { 51.5, 45.7, 406, 300 }, + [11] = { 54.3, 44.8, 406, 300 }, + [12] = { 54.4, 44.6, 406, 300 }, + [13] = { 46.5, 44.3, 406, 300 }, + [14] = { 55.4, 41.5, 406, 300 }, + }, + ["lvl"] = "22-23", + }, + [4015] = { + ["coords"] = { + [1] = { 55.3, 42.6, 406, 19800 }, + }, + ["lvl"] = "25", + ["rnk"] = "4", + }, + [4016] = { + ["coords"] = { + [1] = { 42, 30.1, 406, 300 }, + [2] = { 44, 24.2, 406, 300 }, + }, + ["lvl"] = "24-25", + }, + [4017] = { + ["coords"] = { + [1] = { 38.6, 23.8, 406, 300 }, + }, + ["lvl"] = "26-27", + }, + [4018] = { + ["coords"] = { + [1] = { 49.6, 44.1, 406, 300 }, + [2] = { 52.6, 42.8, 406, 300 }, + [3] = { 53.7, 41.6, 406, 300 }, + [4] = { 49.9, 38.7, 406, 300 }, + [5] = { 49.6, 35.5, 406, 300 }, + [6] = { 49.5, 35.1, 406, 300 }, + [7] = { 47.9, 33.2, 406, 300 }, + [8] = { 48.4, 32.4, 406, 300 }, + [9] = { 48.4, 32.1, 406, 300 }, + [10] = { 47.7, 32, 406, 300 }, + [11] = { 48.1, 31.4, 406, 300 }, + [12] = { 49.1, 30.5, 406, 300 }, + [13] = { 48.2, 30.4, 406, 300 }, + [14] = { 48.6, 29.4, 406, 300 }, + [15] = { 42.1, 26.7, 406, 300 }, + [16] = { 44.3, 25.5, 406, 300 }, + [17] = { 45, 22.3, 406, 300 }, + [18] = { 44.2, 22, 406, 300 }, + [19] = { 43.8, 20.7, 406, 300 }, + [20] = { 44.2, 19.8, 406, 300 }, + [21] = { 43.2, 19.6, 406, 300 }, + [22] = { 43.7, 19.1, 406, 300 }, + [23] = { 44.7, 18, 406, 300 }, + }, + ["lvl"] = "22-23", + }, + [4019] = { + ["coords"] = { + [1] = { 41.1, 26.4, 406, 300 }, + [2] = { 44.2, 23, 406, 300 }, + [3] = { 44, 21.1, 406, 300 }, + [4] = { 43.5, 17.9, 406, 300 }, + }, + ["lvl"] = "24-25", + }, + [4020] = { + ["coords"] = { + [1] = { 49.7, 37, 406, 300 }, + [2] = { 42, 29.6, 406, 300 }, + [3] = { 40.6, 29.4, 406, 300 }, + [4] = { 41.8, 29.2, 406, 300 }, + [5] = { 39.4, 29, 406, 300 }, + [6] = { 39.9, 28.5, 406, 300 }, + [7] = { 42.6, 28.4, 406, 300 }, + [8] = { 40.7, 28, 406, 300 }, + [9] = { 39, 27.5, 406, 300 }, + [10] = { 39.9, 27.2, 406, 300 }, + [11] = { 38.8, 27.1, 406, 300 }, + [12] = { 38.6, 27.1, 406, 300 }, + [13] = { 37.6, 26.5, 406, 300 }, + [14] = { 39, 26.4, 406, 300 }, + [15] = { 39.9, 26.2, 406, 300 }, + [16] = { 42.7, 25.6, 406, 300 }, + [17] = { 44.2, 23.2, 406, 300 }, + [18] = { 43.1, 21.4, 406, 300 }, + [19] = { 42, 21.2, 406, 300 }, + }, + ["lvl"] = "22-23", + }, + [4021] = { + ["coords"] = { + [1] = { 39.3, 29.5, 406, 300 }, + [2] = { 43.3, 28.8, 406, 300 }, + [3] = { 38.8, 27.8, 406, 300 }, + [4] = { 42.7, 27.3, 406, 300 }, + [5] = { 39.4, 23.8, 406, 300 }, + [6] = { 39.3, 22.3, 406, 300 }, + }, + ["lvl"] = "24-25", + }, + [4022] = { + ["coords"] = { + [1] = { 37.6, 67.1, 406, 300 }, + [2] = { 38.3, 66.9, 406, 300 }, + [3] = { 38.1, 66.4, 406, 300 }, + [4] = { 36.7, 66.1, 406, 300 }, + [5] = { 38.8, 65.8, 406, 300 }, + [6] = { 37.8, 65.8, 406, 300 }, + [7] = { 38, 65.5, 406, 300 }, + [8] = { 38.3, 65.4, 406, 300 }, + [9] = { 36.2, 65.3, 406, 300 }, + [10] = { 40.4, 65.3, 406, 300 }, + [11] = { 38.3, 65.2, 406, 300 }, + [12] = { 35.9, 65, 406, 300 }, + [13] = { 37, 64.9, 406, 300 }, + [14] = { 38, 64.8, 406, 300 }, + [15] = { 35.8, 64.7, 406, 300 }, + [16] = { 40.4, 64.6, 406, 300 }, + [17] = { 38.4, 64.5, 406, 300 }, + [18] = { 40.3, 64.4, 406, 300 }, + [19] = { 36.8, 64.3, 406, 300 }, + [20] = { 36, 63.9, 406, 300 }, + [21] = { 35.7, 63.9, 406, 300 }, + [22] = { 36.5, 63.8, 406, 300 }, + [23] = { 36.9, 63.5, 406, 300 }, + [24] = { 39.6, 63.4, 406, 300 }, + [25] = { 36, 63.3, 406, 300 }, + [26] = { 39.7, 63, 406, 300 }, + [27] = { 37.1, 62.9, 406, 300 }, + [28] = { 36.7, 62.9, 406, 300 }, + [29] = { 39.8, 62.9, 406, 300 }, + [30] = { 39.7, 62.4, 406, 300 }, + [31] = { 38.4, 62.4, 406, 300 }, + [32] = { 38.1, 62.3, 406, 300 }, + [33] = { 37.7, 62.1, 406, 300 }, + [34] = { 37.1, 62.1, 406, 300 }, + [35] = { 38.6, 61.9, 406, 300 }, + [36] = { 36.8, 61.2, 406, 300 }, + [37] = { 38.3, 61.1, 406, 300 }, + [38] = { 37.7, 60.9, 406, 300 }, + [39] = { 37.5, 60.8, 406, 300 }, + [40] = { 36.9, 60.6, 406, 300 }, + [41] = { 36.9, 60, 406, 300 }, + [42] = { 42, 52.9, 406, 300 }, + [43] = { 42.4, 48.9, 406, 300 }, + }, + ["lvl"] = "23-24", + }, + [4023] = { + ["coords"] = { + [1] = { 35.4, 70.8, 406, 300 }, + [2] = { 33.5, 70.7, 406, 300 }, + [3] = { 39.9, 70.5, 406, 300 }, + [4] = { 35.5, 70.2, 406, 300 }, + [5] = { 40, 70.1, 406, 300 }, + [6] = { 34.7, 70.1, 406, 300 }, + [7] = { 33.3, 70, 406, 300 }, + [8] = { 40.5, 69.9, 406, 300 }, + [9] = { 34.4, 69.8, 406, 300 }, + [10] = { 41.7, 69.7, 406, 300 }, + [11] = { 33.9, 69.7, 406, 300 }, + [12] = { 36.1, 69.7, 406, 300 }, + [13] = { 36.2, 69.6, 406, 300 }, + [14] = { 33.4, 69.5, 406, 300 }, + [15] = { 33.6, 69.5, 406, 300 }, + [16] = { 35.8, 69.4, 406, 300 }, + [17] = { 41.5, 69.4, 406, 300 }, + [18] = { 40, 69.2, 406, 300 }, + [19] = { 33.9, 69.2, 406, 300 }, + [20] = { 41.7, 69.1, 406, 300 }, + [21] = { 36, 69.1, 406, 300 }, + [22] = { 36.7, 69, 406, 300 }, + [23] = { 33.4, 68.9, 406, 300 }, + [24] = { 40.4, 68.8, 406, 300 }, + [25] = { 35.6, 68.8, 406, 300 }, + [26] = { 35.1, 68.7, 406, 300 }, + [27] = { 33, 68.5, 406, 300 }, + [28] = { 41.3, 68.5, 406, 300 }, + [29] = { 39.8, 68.3, 406, 300 }, + [30] = { 41.5, 68, 406, 300 }, + [31] = { 40.3, 68, 406, 300 }, + [32] = { 36.1, 67.9, 406, 300 }, + [33] = { 34.7, 67.8, 406, 300 }, + [34] = { 34.2, 67.8, 406, 300 }, + [35] = { 41.1, 67.8, 406, 300 }, + [36] = { 40.5, 67.1, 406, 300 }, + [37] = { 41.9, 66.5, 406, 300 }, + }, + ["lvl"] = "25-26", + }, + [4024] = { + ["coords"] = { + [1] = { 35.4, 70.8, 406, 300 }, + [2] = { 33.5, 70.7, 406, 300 }, + [3] = { 39.9, 70.5, 406, 300 }, + [4] = { 35.5, 70.2, 406, 300 }, + [5] = { 40, 70.1, 406, 300 }, + [6] = { 34.7, 70.1, 406, 300 }, + [7] = { 33.3, 70, 406, 300 }, + [8] = { 40.5, 69.9, 406, 300 }, + [9] = { 34.4, 69.8, 406, 300 }, + [10] = { 41.7, 69.7, 406, 300 }, + [11] = { 33.9, 69.7, 406, 300 }, + [12] = { 36.1, 69.7, 406, 300 }, + [13] = { 36.2, 69.6, 406, 300 }, + [14] = { 33.4, 69.5, 406, 300 }, + [15] = { 33.6, 69.5, 406, 300 }, + [16] = { 35.8, 69.4, 406, 300 }, + [17] = { 41.5, 69.4, 406, 300 }, + [18] = { 40, 69.2, 406, 300 }, + [19] = { 33.9, 69.2, 406, 300 }, + [20] = { 41.7, 69.1, 406, 300 }, + [21] = { 36, 69.1, 406, 300 }, + [22] = { 36.7, 69, 406, 300 }, + [23] = { 33.4, 68.9, 406, 300 }, + [24] = { 40.4, 68.8, 406, 300 }, + [25] = { 35.6, 68.8, 406, 300 }, + [26] = { 35.1, 68.7, 406, 300 }, + [27] = { 33, 68.5, 406, 300 }, + [28] = { 41.3, 68.5, 406, 300 }, + [29] = { 39.8, 68.3, 406, 300 }, + [30] = { 41.5, 68, 406, 300 }, + [31] = { 40.3, 68, 406, 300 }, + [32] = { 36.1, 67.9, 406, 300 }, + [33] = { 34.7, 67.8, 406, 300 }, + [34] = { 34.2, 67.8, 406, 300 }, + [35] = { 41.1, 67.8, 406, 300 }, + [36] = { 40.5, 67.1, 406, 300 }, + [37] = { 41.9, 66.5, 406, 300 }, + }, + ["lvl"] = "25-26", + }, + [4025] = { + ["coords"] = { + [1] = { 37.6, 67.1, 406, 300 }, + [2] = { 38.3, 66.9, 406, 300 }, + [3] = { 38.1, 66.4, 406, 300 }, + [4] = { 36.7, 66.1, 406, 300 }, + [5] = { 38.8, 65.8, 406, 300 }, + [6] = { 37.8, 65.8, 406, 300 }, + [7] = { 38, 65.5, 406, 300 }, + [8] = { 38.3, 65.4, 406, 300 }, + [9] = { 36.2, 65.3, 406, 300 }, + [10] = { 40.4, 65.3, 406, 300 }, + [11] = { 38.3, 65.2, 406, 300 }, + [12] = { 35.9, 65, 406, 300 }, + [13] = { 37, 64.9, 406, 300 }, + [14] = { 38, 64.8, 406, 300 }, + [15] = { 35.8, 64.7, 406, 300 }, + [16] = { 40.4, 64.6, 406, 300 }, + [17] = { 38.4, 64.5, 406, 300 }, + [18] = { 40.3, 64.4, 406, 300 }, + [19] = { 36.8, 64.3, 406, 300 }, + [20] = { 36, 63.9, 406, 300 }, + [21] = { 35.7, 63.9, 406, 300 }, + [22] = { 36.5, 63.8, 406, 300 }, + [23] = { 36.9, 63.5, 406, 300 }, + [24] = { 39.6, 63.4, 406, 300 }, + [25] = { 36, 63.3, 406, 300 }, + [26] = { 39.7, 63, 406, 300 }, + [27] = { 37.1, 62.9, 406, 300 }, + [28] = { 36.7, 62.9, 406, 300 }, + [29] = { 39.8, 62.9, 406, 300 }, + [30] = { 39.7, 62.4, 406, 300 }, + [31] = { 38.4, 62.4, 406, 300 }, + [32] = { 38.1, 62.3, 406, 300 }, + [33] = { 37.7, 62.1, 406, 300 }, + [34] = { 37.1, 62.1, 406, 300 }, + [35] = { 38.6, 61.9, 406, 300 }, + [36] = { 36.8, 61.2, 406, 300 }, + [37] = { 38.3, 61.1, 406, 300 }, + [38] = { 37.7, 60.9, 406, 300 }, + [39] = { 37.5, 60.8, 406, 300 }, + [40] = { 36.9, 60.6, 406, 300 }, + [41] = { 36.9, 60, 406, 300 }, + }, + ["lvl"] = "23-24", + }, + [4026] = { + ["coords"] = { + [1] = { 37.6, 67.1, 406, 300 }, + [2] = { 38.3, 66.9, 406, 300 }, + [3] = { 38.1, 66.4, 406, 300 }, + [4] = { 36.7, 66.1, 406, 300 }, + [5] = { 38.8, 65.8, 406, 300 }, + [6] = { 37.8, 65.8, 406, 300 }, + [7] = { 38, 65.5, 406, 300 }, + [8] = { 38.3, 65.4, 406, 300 }, + [9] = { 36.2, 65.3, 406, 300 }, + [10] = { 40.4, 65.3, 406, 300 }, + [11] = { 38.3, 65.2, 406, 300 }, + [12] = { 35.9, 65, 406, 300 }, + [13] = { 37, 64.9, 406, 300 }, + [14] = { 38, 64.8, 406, 300 }, + [15] = { 35.8, 64.7, 406, 300 }, + [16] = { 40.4, 64.6, 406, 300 }, + [17] = { 38.4, 64.5, 406, 300 }, + [18] = { 40.3, 64.4, 406, 300 }, + [19] = { 36.8, 64.3, 406, 300 }, + [20] = { 36, 63.9, 406, 300 }, + [21] = { 35.7, 63.9, 406, 300 }, + [22] = { 36.5, 63.8, 406, 300 }, + [23] = { 36.9, 63.5, 406, 300 }, + [24] = { 39.6, 63.4, 406, 300 }, + [25] = { 36, 63.3, 406, 300 }, + [26] = { 39.7, 63, 406, 300 }, + [27] = { 37.1, 62.9, 406, 300 }, + [28] = { 36.7, 62.9, 406, 300 }, + [29] = { 39.8, 62.9, 406, 300 }, + [30] = { 39.7, 62.4, 406, 300 }, + [31] = { 38.4, 62.4, 406, 300 }, + [32] = { 38.1, 62.3, 406, 300 }, + [33] = { 37.7, 62.1, 406, 300 }, + [34] = { 37.1, 62.1, 406, 300 }, + [35] = { 38.6, 61.9, 406, 300 }, + [36] = { 36.8, 61.2, 406, 300 }, + [37] = { 38.3, 61.1, 406, 300 }, + [38] = { 37.7, 60.9, 406, 300 }, + [39] = { 37.5, 60.8, 406, 300 }, + [40] = { 36.9, 60.6, 406, 300 }, + [41] = { 36.9, 60, 406, 300 }, + }, + ["lvl"] = "24-25", + }, + [4027] = { + ["coords"] = { + [1] = { 35.4, 70.8, 406, 300 }, + [2] = { 33.5, 70.7, 406, 300 }, + [3] = { 39.9, 70.5, 406, 300 }, + [4] = { 35.5, 70.2, 406, 300 }, + [5] = { 40, 70.1, 406, 300 }, + [6] = { 34.7, 70.1, 406, 300 }, + [7] = { 33.3, 70, 406, 300 }, + [8] = { 40.5, 69.9, 406, 300 }, + [9] = { 34.4, 69.8, 406, 300 }, + [10] = { 41.7, 69.7, 406, 300 }, + [11] = { 33.9, 69.7, 406, 300 }, + [12] = { 36.1, 69.7, 406, 300 }, + [13] = { 36.2, 69.6, 406, 300 }, + [14] = { 33.4, 69.5, 406, 300 }, + [15] = { 33.6, 69.5, 406, 300 }, + [16] = { 35.8, 69.4, 406, 300 }, + [17] = { 41.5, 69.4, 406, 300 }, + [18] = { 40, 69.2, 406, 300 }, + [19] = { 33.9, 69.2, 406, 300 }, + [20] = { 41.7, 69.1, 406, 300 }, + [21] = { 36, 69.1, 406, 300 }, + [22] = { 36.7, 69, 406, 300 }, + [23] = { 33.4, 68.9, 406, 300 }, + [24] = { 40.4, 68.8, 406, 300 }, + [25] = { 35.6, 68.8, 406, 300 }, + [26] = { 35.1, 68.7, 406, 300 }, + [27] = { 33, 68.5, 406, 300 }, + [28] = { 41.3, 68.5, 406, 300 }, + [29] = { 39.8, 68.3, 406, 300 }, + [30] = { 41.5, 68, 406, 300 }, + [31] = { 40.3, 68, 406, 300 }, + [32] = { 36.1, 67.9, 406, 300 }, + [33] = { 34.7, 67.8, 406, 300 }, + [34] = { 34.2, 67.8, 406, 300 }, + [35] = { 41.1, 67.8, 406, 300 }, + [36] = { 40.5, 67.1, 406, 300 }, + [37] = { 41.9, 66.5, 406, 300 }, + }, + ["lvl"] = "26-27", + }, + [4028] = { + ["coords"] = { + [1] = { 38.2, 72.2, 406, 300 }, + [2] = { 39.4, 68, 406, 300 }, + [3] = { 38.3, 64.6, 406, 300 }, + }, + ["lvl"] = "25-26", + }, + [4029] = { + ["coords"] = { + [1] = { 36.8, 65.6, 406, 300 }, + [2] = { 38.4, 64.4, 406, 300 }, + }, + ["lvl"] = "27-28", + }, + [4030] = { + ["coords"] = { + [1] = { 36.4, 68.4, 406, 27000 }, + }, + ["lvl"] = "30", + ["rnk"] = "4", + }, + [4031] = { + ["coords"] = { + [1] = { 38.3, 72.1, 406, 300 }, + [2] = { 37.2, 72, 406, 300 }, + [3] = { 39.8, 70.6, 406, 300 }, + [4] = { 31.4, 35.4, 406, 300 }, + [5] = { 28.3, 34.7, 406, 300 }, + [6] = { 24.5, 28.1, 406, 300 }, + [7] = { 27.9, 27.4, 406, 300 }, + [8] = { 24.8, 22.8, 406, 300 }, + [9] = { 25.5, 22.4, 406, 300 }, + }, + ["lvl"] = "25-27", + }, + [4032] = { + ["coords"] = { + [1] = { 35.2, 66.3, 406, 300 }, + [2] = { 41.1, 66.2, 406, 300 }, + [3] = { 28.8, 28.2, 406, 300 }, + }, + ["lvl"] = "23-25", + }, + [4033] = "_", + [4034] = { + ["coords"] = { + [1] = { 36.3, 66.7, 406, 300 }, + [2] = { 39.3, 66.2, 406, 300 }, + }, + ["lvl"] = "24-25", + }, + [4035] = { + ["coords"] = { + [1] = { 37.7, 72.6, 406, 300 }, + }, + ["lvl"] = "26-27", + }, + [4036] = { + ["coords"] = { + [1] = { 39.4, 64.8, 406, 240 }, + [2] = { 42, 62.2, 406, 240 }, + [3] = { 39.7, 61.7, 406, 240 }, + [4] = { 40.2, 56.2, 406, 240 }, + [5] = { 41.3, 54.8, 406, 240 }, + [6] = { 42, 53.1, 406, 240 }, + [7] = { 41.8, 52.6, 406, 240 }, + [8] = { 47.4, 46.4, 406, 240 }, + }, + ["lvl"] = "23-24", + }, + [4037] = { + ["coords"] = { + [1] = { 36.9, 67.5, 406, 240 }, + [2] = { 34.4, 67, 406, 240 }, + [3] = { 40.4, 66.9, 406, 240 }, + [4] = { 36, 66.2, 406, 240 }, + [5] = { 34.8, 64.5, 406, 240 }, + }, + ["lvl"] = "24-25", + }, + [4038] = { + ["coords"] = { + [1] = { 38.7, 73.9, 406, 240 }, + [2] = { 36.9, 73, 406, 240 }, + [3] = { 40.4, 72.9, 406, 240 }, + [4] = { 36, 72.9, 406, 240 }, + [5] = { 38.2, 72.8, 406, 240 }, + [6] = { 41.2, 71.7, 406, 240 }, + [7] = { 37.4, 70.6, 406, 240 }, + }, + ["lvl"] = "26-27", + }, + [4039] = "_", + [4040] = { + ["coords"] = { + [1] = { 46.7, 63.8, 11, 300 }, + [2] = { 47.5, 63.3, 11, 300 }, + [3] = { 49.8, 63.1, 11, 300 }, + [4] = { 48.6, 62.8, 11, 300 }, + [5] = { 50.8, 62.1, 11, 300 }, + [6] = { 48.6, 62, 11, 300 }, + [7] = { 45.7, 61.2, 11, 300 }, + [8] = { 51.4, 61, 11, 300 }, + [9] = { 48.4, 60.7, 11, 300 }, + [10] = { 45.9, 60.6, 11, 300 }, + [11] = { 49.3, 60.4, 11, 300 }, + [12] = { 49.8, 60.3, 11, 300 }, + [13] = { 47.5, 59.6, 11, 300 }, + [14] = { 47, 59.4, 11, 300 }, + [15] = { 46.9, 59.3, 11, 300 }, + [16] = { 50.4, 59.2, 11, 300 }, + [17] = { 49.5, 58.9, 11, 300 }, + [18] = { 4.6, 28, 5602, 300 }, + [19] = { 5.2, 27.6, 5602, 300 }, + [20] = { 7, 27.4, 5602, 300 }, + [21] = { 6.1, 27.2, 5602, 300 }, + [22] = { 7.8, 26.6, 5602, 300 }, + [23] = { 6.1, 26.6, 5602, 300 }, + [24] = { 3.8, 26, 5602, 300 }, + [25] = { 8.3, 25.8, 5602, 300 }, + [26] = { 5.9, 25.6, 5602, 300 }, + [27] = { 4, 25.5, 5602, 300 }, + [28] = { 6.6, 25.3, 5602, 300 }, + [29] = { 7, 25.3, 5602, 300 }, + [30] = { 5.2, 24.7, 5602, 300 }, + [31] = { 4.9, 24.6, 5602, 300 }, + [32] = { 4.8, 24.5, 5602, 300 }, + [33] = { 7.4, 24.5, 5602, 300 }, + [34] = { 6.8, 24.2, 5602, 300 }, + }, + ["lvl"] = "21-22", + }, + [4041] = { + ["coords"] = { + [1] = { 39.4, 73, 406, 300 }, + [2] = { 41.9, 72.7, 406, 300 }, + [3] = { 38.7, 72.1, 406, 300 }, + [4] = { 39.8, 72, 406, 300 }, + [5] = { 38.2, 71.7, 406, 300 }, + [6] = { 36.9, 71.7, 406, 300 }, + [7] = { 36.3, 71.6, 406, 300 }, + [8] = { 40.5, 71, 406, 300 }, + [9] = { 40.8, 70.4, 406, 300 }, + [10] = { 36.8, 69.8, 406, 300 }, + [11] = { 37.7, 68.8, 406, 300 }, + }, + ["lvl"] = "27-28", + }, + [4042] = { + ["coords"] = { + [1] = { 38.2, 67.8, 406, 300 }, + [2] = { 35.4, 67.2, 406, 300 }, + [3] = { 40.9, 66.7, 406, 300 }, + [4] = { 34.3, 65.4, 406, 300 }, + [5] = { 40.9, 65.1, 406, 300 }, + }, + ["lvl"] = "25-26", + }, + [4044] = { + ["coords"] = { + [1] = { 38.9, 63.5, 406, 300 }, + [2] = { 40.1, 61, 406, 300 }, + [3] = { 36.4, 56.6, 406, 300 }, + [4] = { 36.9, 54.9, 406, 300 }, + [5] = { 33.8, 54.8, 406, 300 }, + [6] = { 42.1, 54.7, 406, 300 }, + [7] = { 34.3, 54.6, 406, 300 }, + [8] = { 36.5, 54.6, 406, 300 }, + [9] = { 32.9, 54.2, 406, 300 }, + [10] = { 37.6, 53.3, 406, 300 }, + [11] = { 34.1, 53.1, 406, 300 }, + [12] = { 41, 53.1, 406, 300 }, + [13] = { 38, 52.5, 406, 300 }, + [14] = { 40.5, 51.8, 406, 300 }, + [15] = { 32.8, 51.2, 406, 300 }, + [16] = { 34.4, 51, 406, 300 }, + [17] = { 41.7, 50.8, 406, 300 }, + [18] = { 48.9, 49, 406, 300 }, + [19] = { 48.3, 48.4, 406, 300 }, + [20] = { 47.5, 45, 406, 300 }, + }, + ["lvl"] = "23-24", + }, + [4045] = "_", + [4048] = { + ["coords"] = { + [1] = { 89.6, 46.6, 357, 30 }, + [2] = { 8.1, 19, 400, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "28", + }, + [4049] = { + ["coords"] = { + [1] = { 35.3, 27.9, 17, 30 }, + [2] = { 81.4, 92.6, 406, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "26", + }, + [4050] = { + ["coords"] = { + [1] = { 35.1, 27.4, 406, 300 }, + [2] = { 35.8, 26.8, 406, 300 }, + [3] = { 35.4, 26.1, 406, 300 }, + [4] = { 35.5, 25.9, 406, 300 }, + [5] = { 35.6, 25.8, 406, 300 }, + [6] = { 35.8, 25.7, 406, 300 }, + [7] = { 35.2, 25.7, 406, 300 }, + [8] = { 35.9, 25.5, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25-26", + ["rnk"] = "1", + }, + [4051] = { + ["coords"] = { + [1] = { 41.7, 25.2, 406, 300 }, + [2] = { 40.9, 24.9, 406, 300 }, + [3] = { 39.8, 23.2, 406, 300 }, + [4] = { 41.2, 22.7, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "23-24", + }, + [4052] = { + ["coords"] = { + [1] = { 35.6, 26.2, 406, 300 }, + [2] = { 35.7, 26.1, 406, 300 }, + [3] = { 36.3, 25.7, 406, 300 }, + [4] = { 36.3, 25.6, 406, 300 }, + [5] = { 36.3, 25.5, 406, 300 }, + [6] = { 35.1, 25.4, 406, 300 }, + [7] = { 35.6, 25, 406, 300 }, + [8] = { 34.9, 24.8, 406, 300 }, + [9] = { 34.8, 24.6, 406, 300 }, + [10] = { 34.8, 24.2, 406, 300 }, + [11] = { 34.5, 24.1, 406, 300 }, + [12] = { 34.6, 24, 406, 300 }, + [13] = { 34.3, 23.8, 406, 300 }, + [14] = { 34.7, 23.6, 406, 300 }, + [15] = { 34.7, 22.9, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "26-27", + ["rnk"] = "1", + }, + [4053] = { + ["coords"] = { + [1] = { 41.5, 25.7, 406, 300 }, + [2] = { 42.8, 23.9, 406, 300 }, + [3] = { 41.3, 23.7, 406, 300 }, + [4] = { 40.4, 22.9, 406, 300 }, + [5] = { 40.3, 22, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "23-25", + }, + [4054] = { + ["coords"] = { + [1] = { 58.7, 59.7, 331, 300 }, + [2] = { 58.1, 58.4, 331, 300 }, + [3] = { 58.4, 58, 331, 300 }, + [4] = { 59, 57, 331, 300 }, + [5] = { 58.7, 56.9, 331, 300 }, + [6] = { 59.2, 56.3, 331, 300 }, + [7] = { 59.9, 56.2, 331, 300 }, + [8] = { 58.9, 56.1, 331, 300 }, + [9] = { 58.1, 56, 331, 300 }, + [10] = { 60.5, 55.9, 331, 300 }, + [11] = { 59.8, 55.4, 331, 300 }, + [12] = { 60.4, 55.3, 331, 300 }, + [13] = { 58.7, 55.1, 331, 300 }, + [14] = { 59.8, 54.7, 331, 300 }, + [15] = { 59.3, 54.4, 331, 300 }, + [16] = { 58.6, 54.3, 331, 300 }, + [17] = { 59.9, 53.4, 331, 300 }, + [18] = { 60.7, 53, 331, 300 }, + [19] = { 61.5, 52.2, 331, 300 }, + [20] = { 61, 51.8, 331, 300 }, + [21] = { 60.7, 51.8, 331, 300 }, + [22] = { 61.5, 51.4, 331, 300 }, + [23] = { 60.9, 50.8, 331, 300 }, + [24] = { 61.5, 50.1, 331, 300 }, + [25] = { 62.3, 49.7, 331, 300 }, + [26] = { 61, 49.2, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "24-25", + }, + [4055] = "_", + [4056] = { + ["coords"] = { + [1] = { 33.7, 24.6, 406, 300 }, + [2] = { 33.6, 24.5, 406, 300 }, + [3] = { 32.5, 24.4, 406, 300 }, + [4] = { 32.7, 24, 406, 300 }, + [5] = { 32.8, 23.7, 406, 300 }, + [6] = { 32.3, 23.7, 406, 300 }, + [7] = { 32.4, 23.3, 406, 300 }, + [8] = { 33, 23.2, 406, 300 }, + [9] = { 32.5, 22.5, 406, 300 }, + [10] = { 32.5, 22.4, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "26-27", + ["rnk"] = "1", + }, + [4057] = { + ["coords"] = { + [1] = { 40.4, 25.5, 406, 300 }, + [2] = { 42.1, 23.7, 406, 300 }, + [3] = { 40.3, 23.7, 406, 300 }, + [4] = { 40.7, 23.3, 406, 300 }, + [5] = { 41.9, 23.1, 406, 300 }, + [6] = { 42.7, 22.3, 406, 300 }, + [7] = { 40.8, 21.6, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "24-25", + }, + [4061] = { + ["coords"] = { + [1] = { 35.7, 24.5, 406, 300 }, + [2] = { 33.5, 24.4, 406, 300 }, + [3] = { 34.2, 24.3, 406, 300 }, + [4] = { 35.6, 24.1, 406, 300 }, + [5] = { 33.5, 23.9, 406, 300 }, + [6] = { 33.7, 23.5, 406, 300 }, + [7] = { 34.1, 23.5, 406, 300 }, + [8] = { 33.9, 23.5, 406, 300 }, + [9] = { 33.7, 23.4, 406, 300 }, + [10] = { 34.6, 23.3, 406, 300 }, + [11] = { 33.3, 23.2, 406, 300 }, + [12] = { 33.9, 22.9, 406, 300 }, + [13] = { 34.5, 22.9, 406, 300 }, + [14] = { 33.4, 22.7, 406, 300 }, + [15] = { 33.7, 22.7, 406, 300 }, + [16] = { 33.3, 22, 406, 300 }, + [17] = { 33.4, 21.8, 406, 300 }, + [18] = { 33.6, 21.8, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25-26", + ["rnk"] = "1", + }, + [4062] = { + ["coords"] = { + [1] = { 49.6, 89, 45, 400 }, + [2] = { 48.6, 88.8, 45, 400 }, + }, + ["lvl"] = "30-31", + }, + [4064] = { + ["coords"] = { + [1] = { 62.3, 64.5, 44, 900 }, + [2] = { 62.1, 63.9, 44, 900 }, + [3] = { 64.4, 61.6, 44, 900 }, + [4] = { 66.4, 61.5, 44, 900 }, + [5] = { 64.7, 50.8, 44, 900 }, + [6] = { 63.8, 49.4, 44, 900 }, + [7] = { 63.4, 49.4, 44, 900 }, + [8] = { 63.5, 49.2, 44, 900 }, + [9] = { 63.2, 49, 44, 900 }, + [10] = { 65.4, 49, 44, 900 }, + }, + ["lvl"] = "20-21", + ["rnk"] = "1", + }, + [4065] = { + ["coords"] = { + [1] = { 62.2, 66.3, 44, 900 }, + [2] = { 61.2, 63.6, 44, 900 }, + [3] = { 66.8, 60.4, 44, 900 }, + [4] = { 65.5, 60.2, 44, 900 }, + [5] = { 69.5, 59.7, 44, 900 }, + [6] = { 66, 59.6, 44, 900 }, + [7] = { 68.3, 58.4, 44, 900 }, + [8] = { 69.3, 58.1, 44, 900 }, + [9] = { 66.3, 57.3, 44, 900 }, + [10] = { 66.3, 57, 44, 900 }, + [11] = { 69.3, 56.7, 44, 900 }, + [12] = { 66.6, 56.4, 44, 900 }, + [13] = { 67.7, 56.3, 44, 900 }, + [14] = { 68.2, 56, 44, 900 }, + [15] = { 67.7, 55.8, 44, 900 }, + [16] = { 69.3, 54.7, 44, 900 }, + [17] = { 69.6, 54.3, 44, 900 }, + [18] = { 65.8, 54.1, 44, 900 }, + [19] = { 69.5, 54, 44, 900 }, + [20] = { 67.2, 53.8, 44, 900 }, + [21] = { 67.4, 53.6, 44, 900 }, + [22] = { 67, 52.7, 44, 900 }, + [23] = { 63.2, 50.7, 44, 900 }, + [24] = { 63.1, 50, 44, 900 }, + [25] = { 63.7, 49.9, 44, 900 }, + [26] = { 65.7, 49.3, 44, 900 }, + [27] = { 62.9, 49, 44, 900 }, + [28] = { 67.1, 48.9, 44, 900 }, + [29] = { 63.1, 48.7, 44, 900 }, + [30] = { 63, 48.6, 44, 900 }, + }, + ["lvl"] = "21-22", + ["rnk"] = "1", + }, + [4066] = { + ["coords"] = { + [1] = { 32.4, 22.4, 406, 38000 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + ["rnk"] = "2", + }, + [4067] = { + ["coords"] = { + [1] = { 43.8, 27.5, 406, 300 }, + [2] = { 37.4, 23.4, 406, 300 }, + [3] = { 38.7, 23, 406, 300 }, + [4] = { 43.3, 22.9, 406, 300 }, + [5] = { 37.7, 22.4, 406, 300 }, + [6] = { 36.9, 22.4, 406, 300 }, + [7] = { 38.2, 22.1, 406, 300 }, + [8] = { 37.8, 21.5, 406, 300 }, + [9] = { 39.7, 21.3, 406, 300 }, + [10] = { 38.7, 21.1, 406, 300 }, + [11] = { 36.8, 20.9, 406, 300 }, + [12] = { 39.7, 20.5, 406, 300 }, + [13] = { 37.8, 20.3, 406, 300 }, + [14] = { 38.5, 19.6, 406, 300 }, + [15] = { 39.5, 19.5, 406, 300 }, + }, + ["lvl"] = "23-24", + }, + [4069] = "_", + [4070] = { + ["coords"] = { + [1] = { 62.7, 46.2, 406, 300 }, + [2] = { 63.1, 46.1, 406, 300 }, + [3] = { 63.8, 45.3, 406, 300 }, + [4] = { 63.7, 45.1, 406, 300 }, + [5] = { 63.8, 44.8, 406, 300 }, + [6] = { 63.9, 44.7, 406, 300 }, + [7] = { 63.7, 44.6, 406, 300 }, + }, + ["lvl"] = "20-21", + }, + [4071] = "_", + [4072] = { + ["coords"] = { + [1] = { 72.3, 92.7, 406, 30 }, + [2] = { 72.3, 92.5, 406, 30 }, + [3] = { 72.3, 92.4, 406, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [4073] = { + ["coords"] = { + [1] = { 63.7, 50.7, 406, 300 }, + }, + ["lvl"] = "23", + }, + [4074] = { + ["coords"] = { + [1] = { 63.7, 59.1, 406, 300 }, + }, + ["lvl"] = "23", + }, + [4075] = { + ["coords"] = { + [1] = { 33.3, 89.4, 1, 120 }, + [2] = { 19.1, 54, 10, 25 }, + [3] = { 63.9, 86.4, 11, 120 }, + [4] = { 64.2, 84.9, 11, 120 }, + [5] = { 92.3, 74.3, 11, 120 }, + [6] = { 91.8, 73.7, 11, 120 }, + [7] = { 92.7, 72.5, 11, 120 }, + [8] = { 16.1, 72.1, 11, 120 }, + [9] = { 91.7, 71.9, 11, 120 }, + [10] = { 90.5, 70.6, 11, 120 }, + [11] = { 92, 70.6, 11, 120 }, + [12] = { 68.8, 63.9, 11, 120 }, + [13] = { 72, 63.7, 11, 120 }, + [14] = { 70.8, 63.6, 11, 120 }, + [15] = { 68.5, 63.3, 11, 120 }, + [16] = { 70.8, 62.5, 11, 120 }, + [17] = { 73.9, 62.1, 11, 120 }, + [18] = { 35.9, 61.2, 11, 120 }, + [19] = { 35.6, 61.2, 11, 120 }, + [20] = { 35.7, 60.9, 11, 120 }, + [21] = { 77.2, 60.6, 11, 120 }, + [22] = { 75.7, 59.5, 11, 120 }, + [23] = { 98.9, 63.1, 14, 300 }, + [24] = { 98.8, 61.8, 14, 300 }, + [25] = { 99.4, 61.1, 14, 300 }, + [26] = { 99.8, 60.3, 14, 300 }, + [27] = { 99.4, 59.9, 14, 300 }, + [28] = { 98.5, 59.4, 14, 300 }, + [29] = { 98, 58.9, 14, 300 }, + [30] = { 99.4, 58.9, 14, 300 }, + [31] = { 98.3, 58.8, 14, 300 }, + [32] = { 99, 58.6, 14, 300 }, + [33] = { 97.7, 58.2, 14, 300 }, + [34] = { 98.5, 57.9, 14, 300 }, + [35] = { 99.5, 57.4, 14, 300 }, + [36] = { 98.6, 56.5, 14, 300 }, + [37] = { 99.8, 55.8, 14, 300 }, + [38] = { 98.7, 55.5, 14, 300 }, + [39] = { 99.4, 55.4, 14, 300 }, + [40] = { 100, 55.1, 14, 300 }, + [41] = { 99.5, 52.5, 14, 300 }, + [42] = { 21.8, 54.9, 28, 180 }, + [43] = { 26.8, 52.9, 28, 180 }, + [44] = { 17.8, 52.3, 28, 180 }, + [45] = { 21.2, 48.2, 28, 180 }, + [46] = { 19.6, 47.8, 28, 180 }, + [47] = { 32.7, 29.9, 28, 180 }, + [48] = { 30.7, 24.1, 28, 180 }, + [49] = { 27.5, 76.9, 33, 300 }, + [50] = { 26.5, 73.6, 33, 300 }, + [51] = { 60.3, 87.3, 36, 300 }, + [52] = { 59, 85.1, 36, 300 }, + [53] = { 60.8, 82.8, 36, 300 }, + [54] = { 11.7, 78.3, 36, 300 }, + [55] = { 18.3, 75.5, 36, 300 }, + [56] = { 21.9, 60.1, 36, 300 }, + [57] = { 19.6, 55.9, 36, 300 }, + [58] = { 60.9, 47.2, 36, 300 }, + [59] = { 61.9, 44.5, 36, 300 }, + [60] = { 59.7, 43.6, 36, 300 }, + [61] = { 20.9, 68.5, 45, 300 }, + [62] = { 19.7, 67.2, 45, 300 }, + [63] = { 29.1, 65.7, 45, 300 }, + [64] = { 23.6, 65.7, 45, 300 }, + [65] = { 19, 65.1, 45, 300 }, + [66] = { 27, 64.8, 45, 300 }, + [67] = { 25.4, 63, 45, 300 }, + [68] = { 27.4, 62.8, 45, 300 }, + [69] = { 29.4, 61.1, 45, 300 }, + [70] = { 21.3, 61.1, 45, 300 }, + [71] = { 24.5, 60.6, 45, 300 }, + [72] = { 27.6, 60.5, 45, 300 }, + [73] = { 26, 59.4, 45, 300 }, + [74] = { 26.2, 59.1, 45, 300 }, + [75] = { 23.3, 57.1, 45, 300 }, + [76] = { 26.1, 57, 45, 300 }, + [77] = { 8.6, 41.9, 51, 120 }, + [78] = { 9.9, 38.9, 51, 120 }, + [79] = { 31, 71.9, 85, 180 }, + [80] = { 30, 71.5, 85, 180 }, + [81] = { 31.8, 71.3, 85, 180 }, + [82] = { 32.4, 70.8, 85, 180 }, + [83] = { 29.7, 70.7, 85, 180 }, + [84] = { 52.1, 70.5, 85, 180 }, + [85] = { 30.8, 69.6, 85, 180 }, + [86] = { 29.8, 69.5, 85, 180 }, + [87] = { 32.1, 69.2, 85, 180 }, + [88] = { 31.8, 68.9, 85, 180 }, + [89] = { 35.2, 68.2, 85, 180 }, + [90] = { 78.7, 67.9, 85, 180 }, + [91] = { 47.9, 67.8, 85, 180 }, + [92] = { 31.3, 67.2, 85, 180 }, + [93] = { 42.5, 66.9, 85, 180 }, + [94] = { 83.4, 66, 85, 180 }, + [95] = { 29.9, 65.7, 85, 180 }, + [96] = { 74.8, 65.4, 85, 180 }, + [97] = { 33.3, 64.9, 85, 180 }, + [98] = { 50.4, 64.6, 85, 180 }, + [99] = { 56.2, 63.6, 85, 180 }, + [100] = { 34.4, 63.1, 85, 180 }, + [101] = { 32.1, 62.8, 85, 180 }, + [102] = { 34.4, 62.4, 85, 180 }, + [103] = { 29.5, 61.9, 85, 180 }, + [104] = { 78.1, 61.5, 85, 180 }, + [105] = { 53.9, 61.1, 85, 180 }, + [106] = { 32, 61.1, 85, 180 }, + [107] = { 76.6, 61.1, 85, 180 }, + [108] = { 73.7, 60.8, 85, 180 }, + [109] = { 33.5, 60.4, 85, 180 }, + [110] = { 50.7, 60.3, 85, 180 }, + [111] = { 29, 60.2, 85, 180 }, + [112] = { 73.9, 60.1, 85, 180 }, + [113] = { 77.8, 60, 85, 180 }, + [114] = { 75.5, 59.4, 85, 180 }, + [115] = { 42.6, 59.4, 85, 180 }, + [116] = { 65.2, 58.8, 85, 180 }, + [117] = { 76.7, 58.6, 85, 180 }, + [118] = { 67.1, 58.5, 85, 180 }, + [119] = { 53.8, 57.9, 85, 180 }, + [120] = { 37.1, 56.8, 85, 180 }, + [121] = { 50.4, 56.4, 85, 180 }, + [122] = { 55, 56.3, 85, 180 }, + [123] = { 32.7, 55.9, 85, 180 }, + [124] = { 53.6, 55.8, 85, 180 }, + [125] = { 61, 54.8, 85, 180 }, + [126] = { 61.1, 54.1, 85, 180 }, + [127] = { 53, 53.9, 85, 180 }, + [128] = { 39.9, 53.7, 85, 180 }, + [129] = { 53.1, 53.6, 85, 180 }, + [130] = { 72.5, 52.9, 85, 180 }, + [131] = { 58.4, 52.9, 85, 180 }, + [132] = { 46.2, 52.7, 85, 180 }, + [133] = { 58.4, 52.5, 85, 180 }, + [134] = { 82.8, 51.3, 85, 180 }, + [135] = { 64.9, 50.1, 85, 180 }, + [136] = { 59.8, 49.7, 85, 180 }, + [137] = { 48.7, 49.6, 85, 180 }, + [138] = { 61.1, 49.1, 85, 180 }, + [139] = { 56.7, 49, 85, 180 }, + [140] = { 90.7, 48.7, 85, 180 }, + [141] = { 56.9, 48.6, 85, 180 }, + [142] = { 58.7, 48.2, 85, 180 }, + [143] = { 39.5, 48.1, 85, 180 }, + [144] = { 80.3, 47.7, 85, 180 }, + [145] = { 57.8, 47.4, 85, 180 }, + [146] = { 59.6, 46.9, 85, 180 }, + [147] = { 62, 46.5, 85, 180 }, + [148] = { 74.4, 45.1, 85, 180 }, + [149] = { 86.9, 44.9, 85, 180 }, + [150] = { 89, 44.1, 85, 180 }, + [151] = { 39.2, 44, 85, 180 }, + [152] = { 56.2, 43.1, 85, 180 }, + [153] = { 56, 41.2, 85, 180 }, + [154] = { 54.5, 41.1, 85, 180 }, + [155] = { 84.3, 40.8, 85, 180 }, + [156] = { 61.9, 40.6, 85, 180 }, + [157] = { 72.8, 39.2, 85, 180 }, + [158] = { 87.1, 38.6, 85, 180 }, + [159] = { 57.6, 38.3, 85, 180 }, + [160] = { 37.5, 38.1, 85, 180 }, + [161] = { 65.6, 35.6, 85, 180 }, + [162] = { 58.7, 34.1, 85, 180 }, + [163] = { 65.5, 33.9, 85, 180 }, + [164] = { 84.7, 33.8, 85, 180 }, + [165] = { 71.1, 33.7, 85, 180 }, + [166] = { 57.9, 32.2, 85, 180 }, + [167] = { 72.9, 30.5, 85, 180 }, + [168] = { 47.2, 93.2, 130, 300 }, + [169] = { 43.2, 91.1, 130, 300 }, + [170] = { 43.6, 91.1, 130, 300 }, + [171] = { 45.8, 89.8, 130, 300 }, + [172] = { 45.6, 88.4, 130, 300 }, + [173] = { 45.3, 87, 130, 300 }, + [174] = { 59.4, 80.6, 130, 300 }, + [175] = { 55.3, 70, 130, 300 }, + [176] = { 49.9, 67.3, 130, 300 }, + [177] = { 71.3, 58.1, 130, 300 }, + [178] = { 48.3, 41.3, 130, 300 }, + [179] = { 53.5, 33.9, 130, 300 }, + [180] = { 43.1, 20.5, 130, 300 }, + [181] = { 22, 74.5, 209, 120 }, + [182] = { 13.6, 71.5, 209, 120 }, + [183] = { 15.7, 64.8, 209, 120 }, + [184] = { 22.7, 64.2, 209, 120 }, + [185] = { 75.6, 41.2, 267, 300 }, + [186] = { 61.6, 24.8, 267, 300 }, + [187] = { 60.5, 22.9, 267, 300 }, + [188] = { 62.1, 20.9, 267, 300 }, + [189] = { 19.1, 16.9, 267, 300 }, + [190] = { 24.8, 14.5, 267, 300 }, + [191] = { 83.2, 55.7, 400, 25 }, + [192] = { 82.4, 55.5, 400, 25 }, + [193] = { 83.2, 54.9, 400, 25 }, + [194] = { 83.6, 54.2, 400, 300 }, + [195] = { 30.7, 79, 405, 300 }, + [196] = { 41.3, 78.8, 405, 300 }, + [197] = { 38.6, 76, 405, 300 }, + [198] = { 51.6, 71.6, 405, 300 }, + [199] = { 60.3, 65.7, 405, 300 }, + [200] = { 67.4, 65.4, 405, 300 }, + [201] = { 52.8, 61.5, 405, 300 }, + [202] = { 50.6, 60.1, 405, 300 }, + [203] = { 63.7, 58.6, 405, 300 }, + [204] = { 47.8, 57.6, 405, 300 }, + [205] = { 49.2, 57.6, 405, 300 }, + [206] = { 48.9, 49.1, 405, 300 }, + [207] = { 62.9, 48.1, 405, 300 }, + [208] = { 39.9, 47.7, 405, 300 }, + [209] = { 57.6, 47.5, 405, 300 }, + [210] = { 52, 46.9, 405, 300 }, + [211] = { 44.1, 45.8, 405, 300 }, + [212] = { 41.3, 41.5, 405, 300 }, + [213] = { 46.2, 40.5, 405, 300 }, + [214] = { 56.8, 39.2, 405, 300 }, + [215] = { 54.7, 38.1, 405, 300 }, + [216] = { 73.1, 35.7, 405, 300 }, + [217] = { 75.1, 34.2, 405, 300 }, + [218] = { 53.4, 32.9, 405, 300 }, + [219] = { 59.3, 31.3, 405, 300 }, + [220] = { 74.5, 21.7, 405, 300 }, + [221] = { 69.7, 20.3, 405, 300 }, + [222] = { 61.1, 18.3, 405, 300 }, + [223] = { 61.2, 18.3, 405, 300 }, + [224] = { 65.3, 18.1, 405, 300 }, + [225] = { 57.4, 12.5, 405, 300 }, + [226] = { 53.8, 7.4, 405, 300 }, + [227] = { 41, 88.3, 406, 300 }, + [228] = { 41, 88.2, 406, 300 }, + [229] = { 44.1, 88.1, 406, 300 }, + [230] = { 38.1, 83.9, 406, 300 }, + [231] = { 35.5, 80.1, 406, 300 }, + [232] = { 41, 72.1, 406, 300 }, + [233] = { 34.5, 68.9, 406, 300 }, + [234] = { 40.3, 66.1, 406, 300 }, + [235] = { 35.5, 66, 406, 300 }, + [236] = { 41.5, 54.2, 406, 300 }, + [237] = { 42.5, 47.4, 406, 300 }, + [238] = { 42.6, 40.6, 406, 300 }, + [239] = { 43.3, 40.5, 406, 300 }, + [240] = { 42.2, 40, 406, 25 }, + [241] = { 43.3, 39.9, 406, 300 }, + [242] = { 43.3, 39.3, 406, 300 }, + [243] = { 43.6, 39.2, 406, 300 }, + [244] = { 42.1, 39.2, 406, 300 }, + [245] = { 42.8, 38.8, 406, 300 }, + [246] = { 43.4, 38.7, 406, 300 }, + [247] = { 42.6, 38.2, 406, 300 }, + [248] = { 60.5, 43.8, 409, 300 }, + [249] = { 60.5, 43.7, 409, 300 }, + [250] = { 37.6, 12.9, 490, 300 }, + [251] = { 64.9, 94.1, 796, 180 }, + [252] = { 39.8, 85.7, 1519, 270 }, + [253] = { 40.3, 85.2, 1519, 270 }, + [254] = { 39.6, 84, 1519, 270 }, + [255] = { 36.7, 76.2, 1519, 25 }, + [256] = { 42.6, 73.1, 1519, 270 }, + [257] = { 70.7, 70.4, 1519, 270 }, + [258] = { 61.6, 69.4, 1519, 270 }, + [259] = { 63.8, 69, 1519, 25 }, + [260] = { 60.3, 68.8, 1519, 270 }, + [261] = { 72.5, 67.6, 1519, 270 }, + [262] = { 73.6, 59.7, 1519, 270 }, + [263] = { 73.1, 58.6, 1519, 270 }, + [264] = { 45, 58, 1519, 270 }, + [265] = { 78, 53.2, 1519, 270 }, + [266] = { 78.2, 52.8, 1519, 270 }, + [267] = { 44.2, 40.3, 1519, 180 }, + [268] = { 44.1, 40.3, 1519, 180 }, + [269] = { 31.5, 28.1, 1977, 300 }, + [270] = { 34.9, 27.8, 1977, 300 }, + [271] = { 28.9, 27.1, 1977, 300 }, + [272] = { 29.6, 26.4, 1977, 300 }, + [273] = { 30.7, 25.7, 1977, 300 }, + [274] = { 30.8, 25.4, 1977, 300 }, + [275] = { 33.4, 24.4, 1977, 300 }, + [276] = { 30.8, 24.3, 1977, 300 }, + [277] = { 30.3, 24.3, 1977, 300 }, + [278] = { 31.9, 22.1, 1977, 300 }, + [279] = { 30.4, 21.8, 1977, 300 }, + [280] = { 50.4, 92.8, 2057, 300 }, + [281] = { 45.1, 90.9, 2057, 300 }, + [282] = { 77.7, 85.2, 2057, 300 }, + [283] = { 64.4, 84.7, 2057, 300 }, + [284] = { 79.8, 81.9, 2057, 300 }, + [285] = { 76.8, 81.9, 2057, 300 }, + [286] = { 81.1, 81.8, 2057, 300 }, + [287] = { 75.5, 78.5, 2057, 300 }, + [288] = { 73, 78.1, 2057, 300 }, + [289] = { 72.6, 78.1, 2057, 300 }, + [290] = { 73.5, 78, 2057, 300 }, + [291] = { 62.4, 73, 2057, 300 }, + [292] = { 69.4, 72.7, 2057, 300 }, + [293] = { 83.1, 70.6, 2057, 300 }, + [294] = { 75.4, 70.1, 2057, 300 }, + [295] = { 23.7, 68.7, 2057, 300 }, + [296] = { 45.9, 67.9, 2057, 300 }, + [297] = { 33.7, 65.9, 2057, 300 }, + [298] = { 64.9, 65.5, 2057, 300 }, + [299] = { 90, 64.1, 2057, 300 }, + [300] = { 56.8, 63.2, 2057, 300 }, + [301] = { 39.1, 62.1, 2057, 300 }, + [302] = { 43.8, 60.9, 2057, 300 }, + [303] = { 87.7, 58.8, 2057, 300 }, + [304] = { 75.3, 58.7, 2057, 300 }, + [305] = { 69.5, 58.3, 2057, 300 }, + [306] = { 82.4, 57.6, 2057, 300 }, + [307] = { 16.5, 57.1, 2057, 300 }, + [308] = { 78.9, 53.5, 2057, 300 }, + [309] = { 81.4, 51.1, 2057, 300 }, + [310] = { 74.9, 50.5, 2057, 300 }, + [311] = { 47.5, 50.2, 2057, 300 }, + [312] = { 40.9, 49.3, 2057, 300 }, + [313] = { 38.2, 49.3, 2057, 300 }, + [314] = { 55, 47.3, 2057, 300 }, + [315] = { 18.9, 45.6, 2057, 300 }, + [316] = { 18.3, 44.9, 2057, 300 }, + [317] = { 33.7, 43.9, 2057, 300 }, + [318] = { 17.7, 43.8, 2057, 300 }, + [319] = { 17.1, 42.6, 2057, 300 }, + [320] = { 22.6, 41.7, 2057, 300 }, + [321] = { 76.9, 40.4, 2057, 300 }, + [322] = { 78, 39, 2057, 300 }, + [323] = { 35.7, 38.5, 2057, 300 }, + [324] = { 29.8, 34.9, 2057, 300 }, + [325] = { 33, 33.8, 2057, 300 }, + [326] = { 52.8, 29.7, 2057, 300 }, + [327] = { 37.3, 23.3, 2057, 300 }, + [328] = { 27.7, 22.9, 2057, 300 }, + [329] = { 78.9, 22.5, 2057, 300 }, + [330] = { 48, 17.5, 2057, 300 }, + [331] = { 25.1, 15.1, 2057, 300 }, + [332] = { 58.4, 78, 3456, 7200 }, + [333] = { 57.6, 77.5, 3456, 7200 }, + [334] = { 42, 75.6, 3456, 7200 }, + [335] = { 42.4, 75.6, 3456, 7200 }, + [336] = { 44.2, 73.8, 3456, 7200 }, + [337] = { 44.5, 73.3, 3456, 7200 }, + [338] = { 35.6, 72.6, 3456, 7200 }, + [339] = { 35.3, 72.1, 3456, 7200 }, + [340] = { 58.7, 70.6, 3456, 7200 }, + [341] = { 67.2, 69.1, 3456, 7200 }, + [342] = { 64.4, 69.1, 3456, 7200 }, + [343] = { 39.1, 69, 3456, 7200 }, + [344] = { 39.4, 68.7, 3456, 7200 }, + [345] = { 42.8, 68.6, 3456, 7200 }, + [346] = { 41.8, 68.6, 3456, 7200 }, + [347] = { 42.3, 68.5, 3456, 7200 }, + [348] = { 43.7, 68.2, 3456, 7200 }, + [349] = { 39.4, 67, 3456, 7200 }, + [350] = { 40.4, 66.9, 3456, 7200 }, + [351] = { 47.7, 66.8, 3456, 7200 }, + [352] = { 48.1, 66.7, 3456, 7200 }, + [353] = { 42.5, 66.7, 3456, 7200 }, + [354] = { 51.6, 66.5, 3456, 7200 }, + [355] = { 39.1, 65.7, 3456, 7200 }, + [356] = { 41.8, 65.6, 3456, 7200 }, + [357] = { 51.6, 65.4, 3456, 7200 }, + [358] = { 64.4, 65.2, 3456, 7200 }, + [359] = { 46.8, 65.2, 3456, 7200 }, + [360] = { 51, 65.1, 3456, 7200 }, + [361] = { 51.3, 65.1, 3456, 7200 }, + [362] = { 46.5, 65, 3456, 7200 }, + [363] = { 41.9, 63.4, 3456, 7200 }, + [364] = { 42.6, 63.3, 3456, 7200 }, + [365] = { 45.4, 62.8, 3456, 7200 }, + [366] = { 34.7, 62.1, 3456, 7200 }, + [367] = { 34.9, 61.2, 3456, 7200 }, + [368] = { 42.4, 61, 3456, 7200 }, + [369] = { 44, 60.9, 3456, 7200 }, + [370] = { 58.2, 60.6, 3456, 7200 }, + [371] = { 35.3, 60.4, 3456, 7200 }, + [372] = { 54.9, 60.3, 3456, 7200 }, + [373] = { 42.5, 60.3, 3456, 7200 }, + [374] = { 42.3, 60, 3456, 7200 }, + [375] = { 49.7, 59.6, 3456, 7200 }, + [376] = { 39, 59.5, 3456, 7200 }, + [377] = { 59.4, 58, 3456, 7200 }, + [378] = { 54.9, 58, 3456, 7200 }, + [379] = { 39.3, 57.9, 3456, 7200 }, + [380] = { 42.3, 57.1, 3456, 7200 }, + [381] = { 50, 56.3, 3456, 7200 }, + [382] = { 38.9, 56.1, 3456, 7200 }, + [383] = { 42.5, 55, 3456, 7200 }, + [384] = { 58.1, 54.9, 3456, 7200 }, + [385] = { 55.9, 54.4, 3456, 7200 }, + [386] = { 41.9, 54.4, 3456, 7200 }, + [387] = { 46.3, 54.3, 3456, 7200 }, + [388] = { 39.4, 54.1, 3456, 7200 }, + [389] = { 39.6, 53.7, 3456, 7200 }, + [390] = { 56.8, 53.4, 3456, 7200 }, + [391] = { 49.2, 52.6, 3456, 7200 }, + [392] = { 41.3, 51.3, 3456, 7200 }, + [393] = { 43.6, 50.9, 3456, 7200 }, + [394] = { 44.2, 49.1, 3456, 7200 }, + [395] = { 36.9, 48.7, 3456, 7200 }, + [396] = { 36.5, 48.3, 3456, 7200 }, + [397] = { 36.8, 48.2, 3456, 7200 }, + [398] = { 36.5, 48.2, 3456, 7200 }, + [399] = { 36.6, 48, 3456, 7200 }, + [400] = { 36.5, 47.9, 3456, 7200 }, + [401] = { 36.1, 47.8, 3456, 7200 }, + [402] = { 36.3, 47.8, 3456, 7200 }, + [403] = { 36.5, 47.8, 3456, 7200 }, + [404] = { 36.2, 47.6, 3456, 7200 }, + [405] = { 34.5, 43.6, 3456, 7200 }, + [406] = { 34.6, 43.4, 3456, 7200 }, + [407] = { 34.3, 43.3, 3456, 7200 }, + [408] = { 34.5, 43.2, 3456, 7200 }, + [409] = { 34.6, 43.1, 3456, 7200 }, + [410] = { 34.5, 43, 3456, 7200 }, + [411] = { 34.6, 42.9, 3456, 7200 }, + [412] = { 34.3, 42.6, 3456, 7200 }, + [413] = { 34.7, 42.5, 3456, 7200 }, + [414] = { 34.6, 42.4, 3456, 7200 }, + [415] = { 48.9, 35.4, 3456, 7200 }, + [416] = { 50.2, 35.3, 3456, 7200 }, + [417] = { 49.3, 35.2, 3456, 7200 }, + [418] = { 49, 35.1, 3456, 7200 }, + [419] = { 46.8, 34.9, 3456, 7200 }, + [420] = { 49.3, 34.9, 3456, 7200 }, + [421] = { 44.9, 34.8, 3456, 7200 }, + [422] = { 49.9, 34.6, 3456, 7200 }, + [423] = { 49.7, 34.5, 3456, 7200 }, + [424] = { 49.2, 34.5, 3456, 7200 }, + [425] = { 50.2, 34.5, 3456, 7200 }, + [426] = { 49.5, 34.3, 3456, 7200 }, + [427] = { 44.6, 30.5, 3456, 7200 }, + [428] = { 44.6, 28.6, 3456, 7200 }, + [429] = { 46.1, 23.8, 3456, 7200 }, + [430] = { 47.9, 23.7, 3456, 7200 }, + [431] = { 47.4, 23.5, 3456, 7200 }, + [432] = { 56.5, 92.6, 3457, 604800 }, + [433] = { 58.2, 89.8, 3457, 604800 }, + [434] = { 52.7, 79.3, 3457, 604800 }, + [435] = { 60.4, 70.8, 3457, 604800 }, + [436] = { 53.6, 68.4, 3457, 604800 }, + [437] = { 68, 67.8, 3457, 604800 }, + [438] = { 41.7, 67.6, 3457, 604800 }, + [439] = { 38.5, 66.7, 3457, 604800 }, + [440] = { 38.8, 66, 3457, 604800 }, + [441] = { 61.2, 63, 3457, 604800 }, + [442] = { 55.1, 59.7, 3457, 604800 }, + [443] = { 27.8, 56.7, 3457, 604800 }, + [444] = { 66.8, 53, 3457, 604800 }, + [445] = { 25.3, 51.9, 3457, 604800 }, + [446] = { 62.6, 50.3, 3457, 604800 }, + [447] = { 36.4, 49.2, 3457, 604800 }, + [448] = { 47.4, 93.2, 3457, 604800 }, + [449] = { 55.2, 92.8, 3457, 604800 }, + [450] = { 46.3, 47.9, 3457, 604800 }, + [451] = { 51.1, 90.7, 3457, 604800 }, + [452] = { 46.6, 90.2, 3457, 604800 }, + [453] = { 57.7, 89.1, 3457, 604800 }, + [454] = { 51.6, 86.5, 3457, 604800 }, + [455] = { 48, 85.9, 3457, 604800 }, + [456] = { 45.5, 85.3, 3457, 604800 }, + [457] = { 36.5, 42.4, 3457, 604800 }, + [458] = { 47.3, 84.6, 3457, 604800 }, + [459] = { 53, 79.9, 3457, 604800 }, + [460] = { 48.8, 79.3, 3457, 604800 }, + [461] = { 58.4, 78.4, 3457, 604800 }, + [462] = { 60.8, 77.8, 3457, 604800 }, + [463] = { 56.6, 77, 3457, 604800 }, + [464] = { 50.5, 76.3, 3457, 604800 }, + [465] = { 58.8, 73.7, 3457, 604800 }, + [466] = { 55.5, 73.3, 3457, 604800 }, + [467] = { 61.7, 72.2, 3457, 604800 }, + [468] = { 51.6, 70.9, 3457, 604800 }, + [469] = { 73.5, 31.9, 3457, 604800 }, + [470] = { 76.1, 31.9, 3457, 604800 }, + [471] = { 74.5, 30.3, 3457, 604800 }, + [472] = { 70.6, 29.6, 3457, 604800 }, + [473] = { 56.3, 67.4, 3457, 604800 }, + [474] = { 65.8, 26.7, 3457, 604800 }, + [475] = { 67.9, 24.1, 3457, 604800 }, + [476] = { 53.3, 59.5, 3457, 604800 }, + [477] = { 44.3, 58.6, 3457, 604800 }, + [478] = { 74.1, 22.7, 3457, 604800 }, + [479] = { 47.4, 57.2, 3457, 604800 }, + [480] = { 72.6, 21, 3457, 604800 }, + [481] = { 51.5, 54, 3457, 604800 }, + [482] = { 52.3, 52.6, 3457, 604800 }, + [483] = { 52.4, 49.7, 3457, 604800 }, + [484] = { 51.1, 48, 3457, 604800 }, + [485] = { 46.4, 42.8, 3457, 604800 }, + [486] = { 34.8, 42.5, 3457, 604800 }, + [487] = { 32.1, 41.6, 3457, 604800 }, + [488] = { 33.3, 41, 3457, 604800 }, + [489] = { 30.1, 37.5, 3457, 604800 }, + [490] = { 73.7, 33.2, 3457, 604800 }, + [491] = { 37.3, 33.1, 3457, 604800 }, + [492] = { 37.7, 28.4, 3457, 604800 }, + [493] = { 60.3, 23.9, 3457, 604800 }, + [494] = { 39.4, 18.9, 3457, 604800 }, + [495] = { 70, 15.8, 3457, 604800 }, + [496] = { 72.1, 65.9, 5136, 300 }, + [497] = { 68.5, 65.1, 5136, 300 }, + [498] = { 27.8, 63.1, 5136, 300 }, + [499] = { 37.7, 62.2, 5136, 300 }, + [500] = { 47.2, 60.9, 5136, 300 }, + [501] = { 71.9, 59.9, 5136, 300 }, + [502] = { 68.2, 59.6, 5136, 300 }, + [503] = { 69.6, 54, 5136, 120 }, + [504] = { 50.9, 52.4, 5136, 300 }, + [505] = { 71.6, 50.6, 5136, 120 }, + [506] = { 38.3, 49.1, 5136, 300 }, + [507] = { 26.8, 46.5, 5136, 300 }, + [508] = { 70.3, 43.3, 5136, 120 }, + [509] = { 74.1, 42.9, 5136, 120 }, + [510] = { 78.3, 42.8, 5136, 120 }, + [511] = { 66.6, 42.2, 5136, 120 }, + [512] = { 76.6, 36.1, 5136, 300 }, + [513] = { 78.5, 35.9, 5136, 120 }, + [514] = { 74, 35.8, 5136, 120 }, + [515] = { 38.4, 75, 5138, 300 }, + [516] = { 38.9, 71.6, 5138, 300 }, + [517] = { 23.5, 53.4, 5138, 300 }, + [518] = { 17.9, 50.6, 5138, 300 }, + [519] = { 46.3, 40.1, 5138, 300 }, + [520] = { 46.1, 40.1, 5138, 300 }, + [521] = { 71.5, 39.4, 5138, 300 }, + [522] = { 13.9, 36.6, 5138, 300 }, + [523] = { 17.2, 36.5, 5138, 300 }, + [524] = { 30.3, 31, 5138, 300 }, + [525] = { 12.3, 30.1, 5138, 300 }, + [526] = { 26.2, 29, 5138, 300 }, + [527] = { 26.1, 27.4, 5138, 300 }, + [528] = { 8.2, 11.6, 5138, 300 }, + [529] = { 61.1, 87.7, 5179, 300 }, + [530] = { 50.9, 87.6, 5179, 300 }, + [531] = { 60.8, 87.2, 5179, 300 }, + [532] = { 60.4, 86.8, 5179, 300 }, + [533] = { 61.5, 86.6, 5179, 300 }, + [534] = { 60.4, 85.7, 5179, 300 }, + [535] = { 55, 85.2, 5179, 300 }, + [536] = { 64.9, 82.2, 5179, 300 }, + [537] = { 62.6, 82.1, 5179, 300 }, + [538] = { 66.4, 82.1, 5179, 300 }, + [539] = { 57.1, 81.6, 5179, 300 }, + [540] = { 66.6, 81.2, 5179, 300 }, + [541] = { 66.4, 81, 5179, 300 }, + [542] = { 65.8, 80.9, 5179, 300 }, + [543] = { 66.1, 80.5, 5179, 300 }, + [544] = { 66.6, 80.4, 5179, 300 }, + [545] = { 65.7, 80.3, 5179, 300 }, + [546] = { 66.9, 80.2, 5179, 300 }, + [547] = { 66.6, 79.9, 5179, 300 }, + [548] = { 66.4, 79.9, 5179, 300 }, + [549] = { 66.2, 79.9, 5179, 300 }, + [550] = { 63.8, 79.7, 5179, 300 }, + [551] = { 63.2, 79.6, 5179, 300 }, + [552] = { 65, 79.4, 5179, 300 }, + [553] = { 57.1, 79.1, 5179, 300 }, + [554] = { 64.5, 79.1, 5179, 300 }, + [555] = { 65.1, 78.5, 5179, 300 }, + [556] = { 65.9, 78.4, 5179, 300 }, + [557] = { 50.5, 78.3, 5179, 300 }, + [558] = { 34.1, 76.8, 5179, 300 }, + [559] = { 32.2, 76.3, 5179, 300 }, + [560] = { 33.7, 76.1, 5179, 300 }, + [561] = { 32.3, 76, 5179, 300 }, + [562] = { 33, 75.7, 5179, 300 }, + [563] = { 32.2, 75.2, 5179, 300 }, + [564] = { 61.7, 75, 5179, 300 }, + [565] = { 33.3, 74.5, 5179, 300 }, + [566] = { 59.8, 74.5, 5179, 300 }, + [567] = { 55.3, 74.2, 5179, 300 }, + [568] = { 57.2, 72.2, 5179, 300 }, + [569] = { 51.9, 71, 5179, 300 }, + [570] = { 33, 69.7, 5179, 300 }, + [571] = { 57.6, 69.6, 5179, 300 }, + [572] = { 58.9, 68.8, 5179, 300 }, + [573] = { 44.5, 68.1, 5179, 300 }, + [574] = { 57.5, 67.6, 5179, 300 }, + [575] = { 27.4, 67.2, 5179, 300 }, + [576] = { 47.1, 67.2, 5179, 300 }, + [577] = { 48.9, 67.1, 5179, 300 }, + [578] = { 42.1, 67.1, 5179, 300 }, + [579] = { 53.8, 66.7, 5179, 300 }, + [580] = { 26.2, 65.6, 5179, 300 }, + [581] = { 22.8, 65.4, 5179, 300 }, + [582] = { 20.3, 65.4, 5179, 300 }, + [583] = { 21.3, 64.7, 5179, 300 }, + [584] = { 24.5, 64.7, 5179, 300 }, + [585] = { 19.4, 64, 5179, 300 }, + [586] = { 21.5, 63.7, 5179, 300 }, + [587] = { 20.2, 63.6, 5179, 300 }, + [588] = { 56, 63.6, 5179, 300 }, + [589] = { 40.9, 63.4, 5179, 300 }, + [590] = { 46.3, 63.4, 5179, 300 }, + [591] = { 21.6, 62.8, 5179, 300 }, + [592] = { 19.4, 61.9, 5179, 300 }, + [593] = { 21.2, 61.7, 5179, 300 }, + [594] = { 37.4, 61.1, 5179, 300 }, + [595] = { 38.1, 61.1, 5179, 300 }, + [596] = { 21, 60.6, 5179, 300 }, + [597] = { 19.3, 60.6, 5179, 300 }, + [598] = { 37.6, 60.5, 5179, 300 }, + [599] = { 22.9, 60.4, 5179, 300 }, + [600] = { 20, 60.4, 5179, 300 }, + [601] = { 38, 60.2, 5179, 300 }, + [602] = { 38.4, 59.8, 5179, 300 }, + [603] = { 38.8, 59.8, 5179, 300 }, + [604] = { 38.1, 59.7, 5179, 300 }, + [605] = { 38.6, 59.2, 5179, 300 }, + [606] = { 46.6, 58.9, 5179, 300 }, + [607] = { 52.1, 58.4, 5179, 300 }, + [608] = { 47.8, 58.2, 5179, 300 }, + [609] = { 48.5, 56.8, 5179, 300 }, + [610] = { 46.3, 56.6, 5179, 300 }, + [611] = { 48.7, 56, 5179, 300 }, + [612] = { 19.4, 55.9, 5179, 300 }, + [613] = { 47.6, 55.4, 5179, 300 }, + [614] = { 16.3, 55.3, 5179, 300 }, + [615] = { 48.7, 55.2, 5179, 300 }, + [616] = { 14.2, 54.4, 5179, 300 }, + [617] = { 49.8, 54.2, 5179, 300 }, + [618] = { 48.3, 54.2, 5179, 300 }, + [619] = { 48.5, 52.9, 5179, 300 }, + [620] = { 50.8, 50.3, 5179, 300 }, + [621] = { 54.4, 46.2, 5179, 300 }, + [622] = { 31, 45.1, 5179, 300 }, + [623] = { 57, 43.6, 5179, 300 }, + [624] = { 53, 40.8, 5179, 300 }, + [625] = { 54.8, 40.7, 5179, 300 }, + [626] = { 56.5, 40.7, 5179, 300 }, + [627] = { 58.1, 39.9, 5179, 300 }, + [628] = { 33.6, 39.9, 5179, 300 }, + [629] = { 57.8, 38.9, 5179, 300 }, + [630] = { 52.3, 38.9, 5179, 300 }, + [631] = { 56.2, 37.8, 5179, 300 }, + [632] = { 28.3, 37.1, 5179, 300 }, + [633] = { 31.4, 36.6, 5179, 300 }, + [634] = { 47.5, 36.4, 5179, 300 }, + [635] = { 30.2, 36, 5179, 300 }, + [636] = { 47.9, 35.9, 5179, 300 }, + [637] = { 30.6, 35.7, 5179, 300 }, + [638] = { 15.2, 35.3, 5179, 300 }, + [639] = { 48.4, 35, 5179, 300 }, + [640] = { 33.3, 35, 5179, 300 }, + [641] = { 14, 35, 5179, 300 }, + [642] = { 15.3, 34.4, 5179, 300 }, + [643] = { 26.7, 34.2, 5179, 300 }, + [644] = { 15.1, 33.7, 5179, 300 }, + [645] = { 31.4, 33.3, 5179, 300 }, + [646] = { 14.5, 33.3, 5179, 300 }, + [647] = { 28.1, 33.1, 5179, 300 }, + [648] = { 47.4, 32.9, 5179, 300 }, + [649] = { 48.1, 32.6, 5179, 300 }, + [650] = { 49.2, 31.7, 5179, 300 }, + [651] = { 29, 30.7, 5179, 300 }, + [652] = { 46.3, 30.4, 5179, 300 }, + [653] = { 44.8, 30, 5179, 300 }, + [654] = { 49.4, 30, 5179, 300 }, + [655] = { 48, 29.8, 5179, 300 }, + [656] = { 48.9, 29.7, 5179, 300 }, + [657] = { 27.8, 29.6, 5179, 300 }, + [658] = { 28.8, 29.1, 5179, 300 }, + [659] = { 47.3, 29.1, 5179, 300 }, + [660] = { 43.5, 28.1, 5179, 300 }, + [661] = { 32.5, 27.8, 5179, 300 }, + [662] = { 43.6, 27.3, 5179, 300 }, + [663] = { 29.8, 26.3, 5179, 300 }, + [664] = { 43.4, 26.2, 5179, 300 }, + [665] = { 47.7, 25.8, 5179, 300 }, + [666] = { 44.4, 25.5, 5179, 300 }, + [667] = { 48.7, 23.9, 5179, 300 }, + [668] = { 44.1, 22.8, 5179, 300 }, + [669] = { 44.5, 22.4, 5179, 300 }, + [670] = { 43.5, 22.2, 5179, 300 }, + [671] = { 44.1, 21.5, 5179, 300 }, + [672] = { 44.6, 21.5, 5179, 300 }, + [673] = { 47.1, 20, 5179, 300 }, + [674] = { 46.8, 18.4, 5179, 300 }, + [675] = { 46.5, 16.8, 5179, 300 }, + [676] = { 62.7, 9.4, 5179, 300 }, + [677] = { 57.9, 84.3, 5208, 36000 }, + [678] = { 74.2, 83.7, 5208, 36000 }, + [679] = { 80, 81.4, 5208, 36000 }, + [680] = { 61.5, 81.3, 5208, 36000 }, + [681] = { 57.6, 79.9, 5208, 36000 }, + [682] = { 69.1, 79.3, 5208, 36000 }, + [683] = { 69, 79, 5208, 36000 }, + [684] = { 72.9, 76.4, 5208, 36000 }, + [685] = { 64.7, 76.2, 5208, 36000 }, + [686] = { 80.2, 76.1, 5208, 36000 }, + [687] = { 61.7, 74.9, 5208, 36000 }, + [688] = { 83.5, 74.4, 5208, 36000 }, + [689] = { 69.1, 73.4, 5208, 36000 }, + [690] = { 62.7, 67.6, 5208, 36000 }, + [691] = { 77.1, 66.7, 5208, 36000 }, + [692] = { 58.7, 66.2, 5208, 36000 }, + [693] = { 58.2, 65.1, 5208, 36000 }, + [694] = { 57.5, 64.9, 5208, 36000 }, + [695] = { 86, 64, 5208, 36000 }, + [696] = { 82.2, 63.9, 5208, 36000 }, + [697] = { 74.3, 58.9, 5208, 36000 }, + [698] = { 57.5, 57.1, 5208, 36000 }, + [699] = { 51.8, 54.2, 5208, 36000 }, + [700] = { 48.7, 52.7, 5208, 36000 }, + [701] = { 49.4, 52.7, 5208, 36000 }, + [702] = { 84.4, 48.3, 5208, 36000 }, + [703] = { 74.1, 48.2, 5208, 36000 }, + [704] = { 52.4, 47.9, 5208, 36000 }, + [705] = { 51.4, 46.6, 5208, 36000 }, + [706] = { 42.5, 44, 5208, 36000 }, + [707] = { 82.6, 43.5, 5208, 36000 }, + [708] = { 72.1, 42.5, 5208, 36000 }, + [709] = { 76.3, 41.5, 5208, 36000 }, + [710] = { 27.9, 39.4, 5208, 36000 }, + [711] = { 41.1, 35.6, 5208, 36000 }, + [712] = { 40, 35, 5208, 36000 }, + [713] = { 34.8, 31.7, 5208, 36000 }, + [714] = { 25.6, 25.4, 5208, 36000 }, + [715] = { 35.6, 22.1, 5208, 36000 }, + [716] = { 33, 20.4, 5208, 36000 }, + [717] = { 24.5, 19.5, 5208, 36000 }, + [718] = { 29, 13.7, 5208, 36000 }, + [719] = { 62.6, 85.6, 5536, 300 }, + [720] = { 62.7, 84.4, 5536, 300 }, + [721] = { 63.5, 84.1, 5536, 300 }, + [722] = { 64.5, 84, 5536, 300 }, + [723] = { 61.5, 83.1, 5536, 300 }, + [724] = { 64.1, 81.9, 5536, 300 }, + [725] = { 60.8, 81.8, 5536, 300 }, + [726] = { 61.7, 80.6, 5536, 300 }, + [727] = { 61, 80.2, 5536, 300 }, + [728] = { 63, 79.3, 5536, 300 }, + [729] = { 47.7, 76, 5536, 300 }, + [730] = { 41.9, 74.7, 5536, 300 }, + [731] = { 43.4, 73.7, 5536, 300 }, + [732] = { 37.2, 73, 5536, 300 }, + [733] = { 50.9, 72.3, 5536, 300 }, + [734] = { 58.1, 70.9, 5536, 300 }, + [735] = { 36.9, 70.3, 5536, 300 }, + [736] = { 47.6, 70.1, 5536, 300 }, + [737] = { 46.7, 69.9, 5536, 300 }, + [738] = { 49.4, 69, 5536, 300 }, + [739] = { 38.3, 68.8, 5536, 300 }, + [740] = { 46.4, 68, 5536, 300 }, + [741] = { 58.1, 67.8, 5536, 300 }, + [742] = { 39, 67, 5536, 300 }, + [743] = { 53.5, 66.7, 5536, 300 }, + [744] = { 49.2, 66.3, 5536, 300 }, + [745] = { 38.1, 66.3, 5536, 300 }, + [746] = { 47.7, 65.9, 5536, 300 }, + [747] = { 48.2, 65.6, 5536, 300 }, + [748] = { 49.7, 65.5, 5536, 300 }, + [749] = { 36.3, 65.2, 5536, 300 }, + [750] = { 49, 65.2, 5536, 300 }, + [751] = { 50.4, 64.3, 5536, 300 }, + [752] = { 60, 64.2, 5536, 300 }, + [753] = { 35.1, 64.1, 5536, 300 }, + [754] = { 38.1, 64.1, 5536, 300 }, + [755] = { 35.9, 63.8, 5536, 300 }, + [756] = { 47.5, 63.5, 5536, 300 }, + [757] = { 37.3, 63.4, 5536, 300 }, + [758] = { 49.4, 62.8, 5536, 300 }, + [759] = { 34.6, 62.7, 5536, 300 }, + [760] = { 54.5, 62.3, 5536, 300 }, + [761] = { 36.3, 62.1, 5536, 300 }, + [762] = { 60.7, 61.2, 5536, 300 }, + [763] = { 38.4, 61, 5536, 300 }, + [764] = { 62.2, 60.9, 5536, 300 }, + [765] = { 57.2, 60.9, 5536, 300 }, + [766] = { 58.3, 60.6, 5536, 300 }, + [767] = { 40, 59.9, 5536, 300 }, + [768] = { 56.4, 59.6, 5536, 300 }, + [769] = { 55.7, 59.6, 5536, 300 }, + [770] = { 60.5, 59.4, 5536, 300 }, + [771] = { 62.6, 59.4, 5536, 300 }, + [772] = { 60.2, 59.4, 5536, 300 }, + [773] = { 58.8, 59.2, 5536, 300 }, + [774] = { 56.7, 59.1, 5536, 300 }, + [775] = { 36.5, 59.1, 5536, 300 }, + [776] = { 61, 58.5, 5536, 300 }, + [777] = { 64, 58.4, 5536, 300 }, + [778] = { 41.3, 58.4, 5536, 300 }, + [779] = { 58.4, 57.7, 5536, 300 }, + [780] = { 61.8, 57.6, 5536, 300 }, + [781] = { 39.1, 57.6, 5536, 300 }, + [782] = { 56.9, 57.3, 5536, 300 }, + [783] = { 65.5, 57.2, 5536, 300 }, + [784] = { 60.1, 57, 5536, 300 }, + [785] = { 44.4, 57, 5536, 300 }, + [786] = { 36.7, 56.8, 5536, 300 }, + [787] = { 38.2, 56.6, 5536, 300 }, + [788] = { 40.5, 56.4, 5536, 300 }, + [789] = { 39.5, 56.1, 5536, 300 }, + [790] = { 51.8, 55.9, 5536, 300 }, + [791] = { 55.5, 55.8, 5536, 300 }, + [792] = { 59.9, 55.2, 5536, 300 }, + [793] = { 51.6, 55.1, 5536, 300 }, + [794] = { 62.7, 54.9, 5536, 300 }, + [795] = { 64, 54.7, 5536, 300 }, + [796] = { 54.8, 54.6, 5536, 300 }, + [797] = { 41, 54.6, 5536, 300 }, + [798] = { 56.2, 54.2, 5536, 300 }, + [799] = { 54, 53.9, 5536, 300 }, + [800] = { 53.2, 53.7, 5536, 300 }, + [801] = { 52, 52.9, 5536, 300 }, + [802] = { 66.9, 52.6, 5536, 300 }, + [803] = { 53.8, 52, 5536, 300 }, + [804] = { 40.5, 52, 5536, 300 }, + [805] = { 45.9, 51.9, 5536, 300 }, + [806] = { 56.6, 51.8, 5536, 300 }, + [807] = { 54.1, 51.6, 5536, 300 }, + [808] = { 67, 51.2, 5536, 300 }, + [809] = { 50.5, 51.1, 5536, 300 }, + [810] = { 38.5, 50.6, 5536, 300 }, + [811] = { 53.2, 50.5, 5536, 300 }, + [812] = { 41.7, 50.4, 5536, 300 }, + [813] = { 57.6, 49.8, 5536, 300 }, + [814] = { 66.6, 49.1, 5536, 300 }, + [815] = { 67.4, 48.8, 5536, 300 }, + [816] = { 55.1, 48.6, 5536, 300 }, + [817] = { 65.6, 48.2, 5536, 300 }, + [818] = { 42.6, 48, 5536, 300 }, + [819] = { 39.9, 47.2, 5536, 300 }, + [820] = { 51.3, 47, 5536, 300 }, + [821] = { 44.7, 46.9, 5536, 300 }, + [822] = { 67.1, 46.9, 5536, 300 }, + [823] = { 41.7, 46.4, 5536, 300 }, + [824] = { 58, 46.1, 5536, 300 }, + [825] = { 62, 45.5, 5536, 300 }, + [826] = { 45, 44.5, 5536, 300 }, + [827] = { 55.8, 43.5, 5536, 300 }, + [828] = { 40.1, 43.2, 5536, 300 }, + [829] = { 53.3, 42.9, 5536, 300 }, + [830] = { 42.2, 41.9, 5536, 300 }, + [831] = { 46.2, 40.5, 5536, 300 }, + [832] = { 48.3, 38.6, 5536, 300 }, + [833] = { 54.9, 38, 5536, 300 }, + [834] = { 58.1, 37, 5536, 300 }, + [835] = { 48.9, 36.2, 5536, 300 }, + [836] = { 54.8, 36, 5536, 300 }, + [837] = { 53.4, 35.5, 5536, 300 }, + [838] = { 54, 35.4, 5536, 300 }, + [839] = { 60.9, 35.3, 5536, 300 }, + [840] = { 63.2, 35, 5536, 300 }, + [841] = { 48.1, 34.6, 5536, 300 }, + [842] = { 55.9, 34.3, 5536, 300 }, + [843] = { 53.3, 34.2, 5536, 300 }, + [844] = { 54, 34.2, 5536, 300 }, + [845] = { 53.5, 33.1, 5536, 300 }, + [846] = { 49.2, 32.8, 5536, 300 }, + [847] = { 52.5, 32.7, 5536, 300 }, + [848] = { 54.5, 32.5, 5536, 300 }, + [849] = { 52.7, 32.4, 5536, 300 }, + [850] = { 55.7, 31.8, 5536, 300 }, + [851] = { 53.1, 31.7, 5536, 300 }, + [852] = { 50.3, 31.3, 5536, 300 }, + [853] = { 55.6, 30.8, 5536, 300 }, + [854] = { 53.4, 30.7, 5536, 300 }, + [855] = { 49.6, 30.6, 5536, 300 }, + [856] = { 56.3, 29.5, 5536, 300 }, + [857] = { 56.8, 29.2, 5536, 300 }, + [858] = { 55.5, 28.9, 5536, 300 }, + [859] = { 56.2, 28.8, 5536, 300 }, + [860] = { 54, 28.8, 5536, 300 }, + [861] = { 55.5, 28.5, 5536, 300 }, + [862] = { 54.8, 28.3, 5536, 300 }, + [863] = { 50.6, 27.3, 5536, 300 }, + [864] = { 57, 26, 5536, 300 }, + [865] = { 58.6, 25.9, 5536, 300 }, + [866] = { 58.1, 24.4, 5536, 300 }, + [867] = { 57.4, 24.2, 5536, 300 }, + [868] = { 50, 24, 5536, 300 }, + [869] = { 58.6, 23.7, 5536, 300 }, + [870] = { 64.3, 86.8, 5561, 120 }, + [871] = { 65.3, 86.7, 5561, 120 }, + [872] = { 66.2, 85.1, 5561, 120 }, + [873] = { 64.8, 84.9, 5561, 120 }, + [874] = { 39.7, 67.3, 5561, 120 }, + [875] = { 40.5, 65.9, 5561, 120 }, + [876] = { 39.6, 64, 5561, 120 }, + [877] = { 41.1, 59.4, 5561, 120 }, + [878] = { 50.8, 56.6, 5561, 120 }, + [879] = { 50.6, 56.4, 5561, 120 }, + [880] = { 38, 55.4, 5561, 120 }, + [881] = { 51.2, 55.3, 5561, 120 }, + [882] = { 48.2, 54.7, 5561, 120 }, + [883] = { 51.7, 53.7, 5561, 120 }, + [884] = { 47.6, 52.2, 5561, 120 }, + [885] = { 52.9, 51.9, 5561, 120 }, + [886] = { 54.5, 51.4, 5561, 120 }, + [887] = { 55, 50.5, 5561, 120 }, + [888] = { 37.6, 50.3, 5561, 120 }, + [889] = { 52.1, 49.6, 5561, 120 }, + [890] = { 53.3, 48, 5561, 120 }, + [891] = { 55.4, 47.5, 5561, 120 }, + [892] = { 54.5, 46.9, 5561, 120 }, + [893] = { 51.9, 46.3, 5561, 120 }, + [894] = { 52.9, 44.6, 5561, 120 }, + [895] = { 52.1, 43.6, 5561, 120 }, + [896] = { 50.8, 43.3, 5561, 120 }, + [897] = { 40.2, 99, 5581, 180 }, + [898] = { 40.1, 99, 5581, 180 }, + [899] = { 40.2, 79.6, 5581, 120 }, + [900] = { 39.5, 79.1, 5581, 120 }, + [901] = { 38.9, 77.7, 5581, 120 }, + [902] = { 63.2, 74.8, 5581, 120 }, + [903] = { 63, 74.3, 5581, 120 }, + [904] = { 42.9, 68.9, 5581, 300 }, + [905] = { 43.1, 68.4, 5581, 300 }, + [906] = { 36.3, 45, 5581, 120 }, + [907] = { 36.7, 44.2, 5581, 120 }, + [908] = { 37.4, 44.1, 5581, 120 }, + [909] = { 37.3, 43.2, 5581, 120 }, + [910] = { 76.7, 32.6, 5581, 120 }, + [911] = { 78.3, 31.9, 5581, 120 }, + [912] = { 54.2, 31.9, 5581, 120 }, + [913] = { 53.3, 31.7, 5581, 120 }, + [914] = { 73.3, 31.6, 5581, 120 }, + [915] = { 75.2, 31.2, 5581, 120 }, + [916] = { 55.4, 30.9, 5581, 120 }, + [917] = { 76.9, 30.8, 5581, 120 }, + [918] = { 74.8, 29.4, 5581, 120 }, + [919] = { 64.1, 29.1, 5581, 120 }, + [920] = { 73.4, 29, 5581, 120 }, + [921] = { 75.3, 28.2, 5581, 120 }, + [922] = { 73.5, 28, 5581, 120 }, + [923] = { 65.8, 27.8, 5581, 120 }, + [924] = { 63.8, 26.7, 5581, 120 }, + [925] = { 65.7, 23.7, 5581, 120 }, + [926] = { 64.2, 23.6, 5581, 120 }, + [927] = { 64.7, 22.5, 5581, 120 }, + [928] = { 85.6, 18.4, 5581, 120 }, + [929] = { 70.2, 17.4, 5581, 120 }, + [930] = { 86.4, 16.3, 5581, 120 }, + [931] = { 84.8, 15.6, 5581, 120 }, + [932] = { 84.7, 12, 5581, 120 }, + [933] = { 79.7, 11.5, 5581, 120 }, + [934] = { 79.5, 10.6, 5581, 120 }, + [935] = { 79.3, 10.4, 5581, 120 }, + [936] = { 82.8, 9.5, 5581, 120 }, + [937] = { 85, 8.4, 5581, 120 }, + [938] = { 85.9, 5.9, 5581, 120 }, + [939] = { 84, 5, 5581, 120 }, + [940] = { 84.8, 4.5, 5581, 120 }, + [941] = { 41.1, 71.6, 5601, 604800 }, + [942] = { 35.5, 71.1, 5601, 604800 }, + [943] = { 53.7, 69.7, 5601, 604800 }, + [944] = { 55.3, 68.9, 5601, 604800 }, + [945] = { 41.4, 68.6, 5601, 604800 }, + [946] = { 40.1, 68.1, 5601, 604800 }, + [947] = { 52.4, 66.7, 5601, 604800 }, + [948] = { 37.9, 66.3, 5601, 604800 }, + [949] = { 58.1, 66.2, 5601, 604800 }, + [950] = { 40.9, 65.3, 5601, 604800 }, + [951] = { 42.9, 64.5, 5601, 604800 }, + [952] = { 41.1, 63.9, 5601, 604800 }, + [953] = { 36.6, 63.6, 5601, 604800 }, + [954] = { 32.3, 63.5, 5601, 604800 }, + [955] = { 50, 63.5, 5601, 604800 }, + [956] = { 37.9, 62.5, 5601, 604800 }, + [957] = { 56.8, 62.2, 5601, 604800 }, + [958] = { 30.3, 61.5, 5601, 604800 }, + [959] = { 27.6, 61.1, 5601, 604800 }, + [960] = { 53.4, 60.7, 5601, 604800 }, + [961] = { 59.8, 60.5, 5601, 604800 }, + [962] = { 51.9, 60.4, 5601, 604800 }, + [963] = { 35.4, 58.5, 5601, 604800 }, + [964] = { 37.1, 55.3, 5601, 604800 }, + [965] = { 59.1, 51, 5601, 604800 }, + [966] = { 45.5, 50.2, 5601, 604800 }, + [967] = { 42.2, 49.9, 5601, 604800 }, + [968] = { 59.5, 48.3, 5601, 604800 }, + [969] = { 62.1, 45.1, 5601, 604800 }, + [970] = { 40, 44.9, 5601, 604800 }, + [971] = { 45.9, 43.7, 5601, 604800 }, + [972] = { 52.2, 42.6, 5601, 604800 }, + [973] = { 64.4, 40.6, 5601, 604800 }, + [974] = { 50.5, 40.6, 5601, 604800 }, + [975] = { 54.2, 40.5, 5601, 604800 }, + [976] = { 43.4, 39.4, 5601, 604800 }, + [977] = { 65.5, 36.5, 5601, 604800 }, + [978] = { 57.4, 36.3, 5601, 604800 }, + [979] = { 46.5, 36, 5601, 604800 }, + [980] = { 62.7, 34.9, 5601, 604800 }, + [981] = { 68.4, 34.9, 5601, 604800 }, + [982] = { 43.3, 34.3, 5601, 604800 }, + [983] = { 39.8, 34.3, 5601, 604800 }, + [984] = { 47.5, 33.8, 5601, 604800 }, + [985] = { 51.9, 33.7, 5601, 604800 }, + [986] = { 53.8, 30.8, 5601, 604800 }, + [987] = { 39.6, 28.4, 5601, 604800 }, + [988] = { 49.5, 27.2, 5601, 604800 }, + [989] = { 54.2, 25.6, 5601, 604800 }, + [990] = { 39.3, 25.2, 5601, 604800 }, + [991] = { 39.8, 24.3, 5601, 604800 }, + [992] = { 38.6, 23.4, 5601, 604800 }, + [993] = { 39.8, 21.3, 5601, 604800 }, + [994] = { 39, 18.4, 5601, 604800 }, + [995] = { 39.8, 16.4, 5601, 604800 }, + [996] = { 35.2, 16.1, 5601, 604800 }, + [997] = { 37.2, 14.9, 5601, 604800 }, + [998] = { 39.1, 14.4, 5601, 604800 }, + [999] = { 32.5, 14.4, 5601, 604800 }, + [1000] = { 60.5, 72.2, 5602, 120 }, + [1001] = { 59.7, 71.5, 5602, 120 }, + [1002] = { 62, 70.5, 5602, 120 }, + [1003] = { 60.2, 69.2, 5602, 120 }, + [1004] = { 61.8, 68.4, 5602, 120 }, + [1005] = { 60.2, 67.5, 5602, 120 }, + [1006] = { 61, 66.8, 5602, 120 }, + [1007] = { 60, 63.9, 5602, 120 }, + [1008] = { 60.4, 62.6, 5602, 120 }, + [1009] = { 59.6, 62.5, 5602, 120 }, + [1010] = { 61.3, 61.9, 5602, 120 }, + [1011] = { 59.2, 60.8, 5602, 120 }, + [1012] = { 17.9, 45.4, 5602, 120 }, + [1013] = { 62.3, 45.3, 5602, 120 }, + [1014] = { 18, 44.2, 5602, 120 }, + [1015] = { 44, 44, 5602, 120 }, + [1016] = { 43.6, 43.8, 5602, 120 }, + [1017] = { 61.4, 43.8, 5602, 120 }, + [1018] = { 44.6, 43.5, 5602, 120 }, + [1019] = { 43.3, 43.3, 5602, 120 }, + [1020] = { 63.4, 43.1, 5602, 120 }, + [1021] = { 62.8, 42.9, 5602, 120 }, + [1022] = { 60.6, 42.8, 5602, 120 }, + [1023] = { 60.6, 42.4, 5602, 120 }, + [1024] = { 42.8, 42, 5602, 120 }, + [1025] = { 39.6, 36, 5602, 120 }, + [1026] = { 39.2, 35.6, 5602, 120 }, + [1027] = { 41.4, 35.3, 5602, 120 }, + [1028] = { 40, 34.7, 5602, 120 }, + [1029] = { 39.2, 34.2, 5602, 120 }, + [1030] = { 38.3, 33.2, 5602, 120 }, + [1031] = { 39.4, 33.2, 5602, 120 }, + [1032] = { 21.6, 28.1, 5602, 120 }, + [1033] = { 24.1, 27.9, 5602, 120 }, + [1034] = { 23.1, 27.8, 5602, 120 }, + [1035] = { 21.4, 27.6, 5602, 120 }, + [1036] = { 23.1, 27, 5602, 120 }, + [1037] = { 25.5, 26.6, 5602, 120 }, + [1038] = { 28, 25.5, 5602, 120 }, + [1039] = { 26.8, 24.7, 5602, 120 }, + }, + ["lvl"] = "1", + }, + [4076] = { + ["coords"] = { + [1] = { 98.5, 63.1, 14, 300 }, + [2] = { 98.7, 62.3, 14, 300 }, + [3] = { 97.2, 61.3, 14, 300 }, + [4] = { 98.1, 61.2, 14, 300 }, + [5] = { 98.9, 61, 14, 300 }, + [6] = { 98.9, 60.2, 14, 300 }, + [7] = { 99.5, 59.4, 14, 300 }, + [8] = { 98.5, 59, 14, 300 }, + [9] = { 99.5, 58.6, 14, 300 }, + [10] = { 97.8, 58.5, 14, 300 }, + [11] = { 98.9, 58.3, 14, 300 }, + [12] = { 98.1, 57, 14, 300 }, + [13] = { 98.7, 56.1, 14, 300 }, + [14] = { 99.5, 56, 14, 300 }, + [15] = { 51.8, 82.1, 28, 300 }, + [16] = { 36.4, 78.4, 28, 300 }, + [17] = { 50.3, 60.1, 28, 300 }, + [18] = { 49.9, 57.6, 28, 300 }, + [19] = { 40.4, 57.4, 28, 300 }, + [20] = { 49.6, 50.1, 28, 300 }, + [21] = { 48.9, 45.6, 28, 300 }, + [22] = { 48.6, 43, 28, 300 }, + [23] = { 51.7, 39.7, 28, 300 }, + [24] = { 54.3, 34.1, 28, 300 }, + [25] = { 54.7, 26.3, 28, 300 }, + [26] = { 53.8, 25.1, 28, 300 }, + [27] = { 50.8, 23.5, 28, 300 }, + [28] = { 45.5, 21.1, 28, 300 }, + [29] = { 42.2, 20, 28, 300 }, + [30] = { 43.8, 11.5, 28, 300 }, + [31] = { 41.4, 85.1, 405, 300 }, + [32] = { 53.3, 85, 405, 300 }, + [33] = { 56.5, 84.6, 405, 300 }, + [34] = { 68, 81.9, 405, 300 }, + [35] = { 38, 75.2, 405, 300 }, + [36] = { 43.5, 73.7, 405, 300 }, + [37] = { 61.5, 73.6, 405, 300 }, + [38] = { 54, 67.9, 405, 300 }, + [39] = { 70.6, 54.5, 405, 300 }, + [40] = { 67.1, 53.4, 405, 300 }, + [41] = { 77.1, 52.3, 405, 300 }, + [42] = { 68.4, 49.3, 405, 300 }, + [43] = { 49.8, 47.8, 405, 300 }, + [44] = { 77.8, 43.6, 405, 300 }, + [45] = { 45.1, 36.3, 405, 300 }, + [46] = { 64.1, 33.1, 405, 300 }, + [47] = { 74, 30.7, 405, 300 }, + [48] = { 50.6, 27, 405, 300 }, + [49] = { 64.1, 23.3, 405, 300 }, + [50] = { 53.6, 9.2, 405, 300 }, + [51] = { 49.6, 6.8, 405, 300 }, + [52] = { 35.3, 81.4, 406, 300 }, + [53] = { 32.3, 79.6, 406, 300 }, + [54] = { 36.4, 73.6, 406, 300 }, + [55] = { 37.1, 71.8, 406, 300 }, + [56] = { 39.4, 71.2, 406, 300 }, + [57] = { 37.5, 61.7, 406, 300 }, + [58] = { 40, 61.7, 406, 300 }, + [59] = { 34.8, 60.8, 722, 300 }, + [60] = { 30.5, 58.4, 722, 300 }, + [61] = { 33.8, 56.8, 722, 300 }, + [62] = { 35.5, 56.4, 722, 300 }, + [63] = { 39.7, 56.3, 722, 300 }, + [64] = { 32.1, 55.9, 722, 300 }, + [65] = { 26.9, 55.5, 722, 300 }, + [66] = { 25.6, 52.3, 722, 300 }, + [67] = { 41.2, 51, 722, 300 }, + [68] = { 31.3, 43.8, 722, 300 }, + [69] = { 50.9, 41, 722, 300 }, + [70] = { 48.7, 40.4, 722, 300 }, + [71] = { 37.9, 35.5, 722, 300 }, + [72] = { 24.2, 34.8, 722, 300 }, + [73] = { 57.1, 33.7, 722, 300 }, + [74] = { 69.1, 33.4, 722, 300 }, + [75] = { 65.5, 33, 722, 300 }, + [76] = { 54.8, 31.1, 722, 300 }, + [77] = { 57.3, 29.7, 722, 300 }, + [78] = { 45.7, 28.8, 722, 300 }, + [79] = { 56.1, 28.3, 722, 300 }, + [80] = { 47.8, 24.5, 722, 300 }, + [81] = { 30, 21.3, 722, 300 }, + [82] = { 35.3, 19.3, 722, 300 }, + [83] = { 60.7, 16.5, 722, 300 }, + [84] = { 61.9, 15.4, 722, 300 }, + [85] = { 36.7, 19.2, 2100, 300 }, + [86] = { 15, 92.9, 5225, 300 }, + [87] = { 62.5, 84.7, 5536, 300 }, + [88] = { 62.6, 83.4, 5536, 300 }, + [89] = { 64, 83.1, 5536, 300 }, + [90] = { 60.7, 82.1, 5536, 300 }, + [91] = { 63.8, 81.7, 5536, 300 }, + [92] = { 61.8, 80.8, 5536, 300 }, + [93] = { 60.6, 79.9, 5536, 300 }, + [94] = { 36.3, 73, 5536, 300 }, + [95] = { 57.3, 71.7, 5536, 300 }, + [96] = { 36.6, 71.3, 5536, 300 }, + [97] = { 58, 70.6, 5536, 300 }, + [98] = { 33.4, 69.1, 5536, 300 }, + [99] = { 35.3, 69, 5536, 300 }, + [100] = { 37.2, 68.5, 5536, 300 }, + [101] = { 37.2, 66.9, 5536, 300 }, + [102] = { 59.3, 66.8, 5536, 300 }, + [103] = { 46.9, 66.7, 5536, 300 }, + [104] = { 49, 66.5, 5536, 300 }, + [105] = { 50.7, 65.6, 5536, 300 }, + [106] = { 38.3, 65.2, 5536, 300 }, + [107] = { 36.2, 64.3, 5536, 300 }, + [108] = { 50.9, 63.6, 5536, 300 }, + [109] = { 49.4, 63.6, 5536, 300 }, + [110] = { 58.2, 63.4, 5536, 300 }, + [111] = { 38.4, 63.4, 5536, 300 }, + [112] = { 34.7, 63.3, 5536, 300 }, + [113] = { 37.2, 62.8, 5536, 300 }, + [114] = { 47.7, 62.7, 5536, 300 }, + [115] = { 61.8, 61.2, 5536, 300 }, + [116] = { 60.7, 60.6, 5536, 300 }, + [117] = { 35.3, 60, 5536, 300 }, + [118] = { 58, 59.5, 5536, 300 }, + [119] = { 62.8, 59.4, 5536, 300 }, + [120] = { 59.6, 58.4, 5536, 300 }, + [121] = { 36.7, 58.2, 5536, 300 }, + [122] = { 38.3, 57.9, 5536, 300 }, + [123] = { 62.2, 56.9, 5536, 300 }, + [124] = { 39.6, 56.7, 5536, 300 }, + [125] = { 41.8, 55.5, 5536, 300 }, + [126] = { 63.7, 54.1, 5536, 300 }, + [127] = { 52.4, 53.9, 5536, 300 }, + [128] = { 42.9, 53.7, 5536, 300 }, + [129] = { 50.6, 52.3, 5536, 300 }, + [130] = { 41.9, 51.8, 5536, 300 }, + [131] = { 51.9, 51.1, 5536, 300 }, + [132] = { 67.1, 51, 5536, 300 }, + [133] = { 52.6, 49.8, 5536, 300 }, + [134] = { 40.7, 49.6, 5536, 300 }, + [135] = { 54, 49.2, 5536, 300 }, + [136] = { 55.5, 49.2, 5536, 300 }, + [137] = { 57.1, 48.8, 5536, 300 }, + [138] = { 66.6, 48.4, 5536, 300 }, + [139] = { 40.7, 48.2, 5536, 300 }, + [140] = { 44.1, 47, 5536, 300 }, + [141] = { 57.1, 46.9, 5536, 300 }, + [142] = { 42.2, 46.7, 5536, 300 }, + [143] = { 54.9, 43.9, 5536, 300 }, + [144] = { 55.8, 43.9, 5536, 300 }, + [145] = { 53, 43.4, 5536, 300 }, + [146] = { 43.1, 43.2, 5536, 300 }, + [147] = { 41.5, 40.9, 5536, 300 }, + [148] = { 49.6, 40.8, 5536, 300 }, + [149] = { 62.2, 38, 5536, 300 }, + [150] = { 45.6, 37.6, 5536, 300 }, + [151] = { 62.8, 37.4, 5536, 300 }, + [152] = { 47.3, 36.8, 5536, 300 }, + [153] = { 61.1, 36.5, 5536, 300 }, + [154] = { 53.5, 36.2, 5536, 300 }, + [155] = { 59.4, 36.1, 5536, 300 }, + [156] = { 56.5, 35.9, 5536, 300 }, + [157] = { 54.9, 35.8, 5536, 300 }, + [158] = { 64, 34.4, 5536, 300 }, + [159] = { 53.3, 33.7, 5536, 300 }, + [160] = { 53.6, 32.9, 5536, 300 }, + [161] = { 62.8, 32.5, 5536, 300 }, + [162] = { 54.2, 31.3, 5536, 300 }, + [163] = { 53.7, 31.3, 5536, 300 }, + [164] = { 55.7, 31.1, 5536, 300 }, + [165] = { 56.1, 28.8, 5536, 300 }, + }, + ["lvl"] = "1", + }, + [4077] = { + ["coords"] = { + [1] = { 60, 67.6, 406, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [4078] = { + ["coords"] = { + [1] = { 53, 86.6, 1519, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "32", + }, + [4079] = { + ["coords"] = { + [1] = { 34.9, 49.8, 331, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "23", + }, + [4080] = { + ["coords"] = { + [1] = { 60.3, 67.4, 406, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "23", + }, + [4081] = { + ["coords"] = { + [1] = { 24.9, 30.3, 1, 300 }, + [2] = { 79.3, 17.6, 721, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "29", + }, + [4082] = { + ["coords"] = { + [1] = { 48.9, 60.7, 406, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "32", + }, + [4083] = { + ["coords"] = { + [1] = { 50.3, 63.1, 406, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "24", + }, + [4084] = { + ["coords"] = { + [1] = { 40.5, 18.1, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "24", + }, + [4085] = { + ["coords"] = { + [1] = { 62.6, 45.7, 406, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "24", + }, + [4086] = { + ["coords"] = { + [1] = { 58.9, 55.1, 406, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "24", + }, + [4093] = { + ["coords"] = { + [1] = { 49.5, 99.3, 17, 300 }, + [2] = { 48.7, 99.2, 17, 300 }, + [3] = { 49, 99.1, 17, 300 }, + [4] = { 49.1, 99.1, 17, 300 }, + [5] = { 48.6, 98.9, 17, 300 }, + [6] = { 48.7, 98.7, 17, 300 }, + [7] = { 49.4, 98.6, 17, 300 }, + [8] = { 48.9, 98.6, 17, 300 }, + [9] = { 47.6, 98.4, 17, 300 }, + [10] = { 49.6, 98.4, 17, 300 }, + [11] = { 49.6, 98.3, 17, 300 }, + [12] = { 48, 98.2, 17, 300 }, + [13] = { 48.7, 98.1, 17, 300 }, + [14] = { 49.4, 98.1, 17, 300 }, + [15] = { 47.9, 98.1, 17, 300 }, + [16] = { 47.4, 98, 17, 300 }, + [17] = { 47.8, 97.8, 17, 300 }, + [18] = { 48, 97.7, 17, 300 }, + [19] = { 47.5, 97.6, 17, 300 }, + [20] = { 47.7, 97.5, 17, 300 }, + [21] = { 47.5, 97, 17, 300 }, + [22] = { 47.1, 96.7, 17, 300 }, + [23] = { 45.6, 43.8, 400, 300 }, + [24] = { 48.5, 43.6, 400, 300 }, + [25] = { 45.5, 43.5, 400, 300 }, + [26] = { 48.2, 42.9, 400, 300 }, + [27] = { 45.9, 42.9, 400, 300 }, + [28] = { 45.1, 42, 400, 300 }, + [29] = { 47.2, 41.9, 400, 300 }, + [30] = { 46.1, 41.9, 400, 300 }, + [31] = { 48.8, 41.7, 400, 300 }, + [32] = { 49.6, 41.5, 400, 300 }, + [33] = { 41.1, 41.4, 400, 300 }, + [34] = { 44.5, 41.4, 400, 300 }, + [35] = { 47.7, 41.4, 400, 300 }, + [36] = { 45.9, 41.3, 400, 300 }, + [37] = { 46.6, 41.2, 400, 300 }, + [38] = { 48.7, 41.1, 400, 300 }, + [39] = { 45, 40.9, 400, 300 }, + [40] = { 45.1, 40.7, 400, 300 }, + [41] = { 44.1, 40.7, 400, 300 }, + [42] = { 47.8, 40.6, 400, 300 }, + [43] = { 42.3, 40.6, 400, 300 }, + [44] = { 41.4, 40.5, 400, 300 }, + [45] = { 45.4, 40.5, 400, 300 }, + [46] = { 42.8, 40.5, 400, 300 }, + [47] = { 43.6, 40.5, 400, 300 }, + [48] = { 48.2, 40.4, 400, 300 }, + [49] = { 47.2, 40.3, 400, 300 }, + [50] = { 45.9, 40.3, 400, 300 }, + [51] = { 44.4, 40.2, 400, 300 }, + [52] = { 46.6, 40.2, 400, 300 }, + [53] = { 45.4, 39.8, 400, 300 }, + [54] = { 44.5, 39.6, 400, 300 }, + [55] = { 45.2, 39.4, 400, 300 }, + [56] = { 43.7, 39.3, 400, 300 }, + [57] = { 41.7, 39.2, 400, 300 }, + [58] = { 42.9, 39.1, 400, 300 }, + [59] = { 41, 39, 400, 300 }, + [60] = { 41.9, 38.4, 400, 300 }, + [61] = { 44.4, 38.4, 400, 300 }, + [62] = { 41.4, 38.2, 400, 300 }, + [63] = { 42.8, 38.2, 400, 300 }, + [64] = { 39, 38.1, 400, 300 }, + [65] = { 40.4, 38, 400, 300 }, + [66] = { 43.3, 38, 400, 300 }, + [67] = { 43.6, 38, 400, 300 }, + [68] = { 39.9, 37.9, 400, 300 }, + [69] = { 39.1, 37.9, 400, 300 }, + [70] = { 42.1, 37.9, 400, 300 }, + [71] = { 42.4, 37.5, 400, 300 }, + [72] = { 40.6, 37.4, 400, 300 }, + [73] = { 42.7, 37.1, 400, 300 }, + [74] = { 41.4, 37.1, 400, 300 }, + [75] = { 39.3, 36.9, 400, 300 }, + [76] = { 41.1, 36.9, 400, 300 }, + [77] = { 44.2, 36.8, 400, 300 }, + [78] = { 43.1, 36.8, 400, 300 }, + [79] = { 40.6, 36.8, 400, 300 }, + [80] = { 40.3, 36.5, 400, 300 }, + [81] = { 44.7, 36.4, 400, 300 }, + [82] = { 44.7, 36.2, 400, 300 }, + [83] = { 41.1, 36, 400, 300 }, + [84] = { 42.8, 35.9, 400, 300 }, + [85] = { 44.3, 35.8, 400, 300 }, + [86] = { 40.8, 35.7, 400, 300 }, + [87] = { 39.7, 35.6, 400, 300 }, + [88] = { 40.6, 35.1, 400, 300 }, + [89] = { 41.2, 34.9, 400, 300 }, + [90] = { 39.8, 34.6, 400, 300 }, + [91] = { 40.4, 34.5, 400, 300 }, + [92] = { 39.9, 33.2, 400, 300 }, + [93] = { 39.1, 32.5, 400, 300 }, + }, + ["lvl"] = "25-26", + }, + [4094] = { + ["coords"] = { + [1] = { 49.5, 99.3, 17, 300 }, + [2] = { 48.7, 99.2, 17, 300 }, + [3] = { 49, 99.1, 17, 300 }, + [4] = { 49.1, 99.1, 17, 300 }, + [5] = { 48.6, 98.9, 17, 300 }, + [6] = { 48.7, 98.7, 17, 300 }, + [7] = { 49.4, 98.6, 17, 300 }, + [8] = { 48.9, 98.6, 17, 300 }, + [9] = { 47.6, 98.4, 17, 300 }, + [10] = { 49.6, 98.4, 17, 300 }, + [11] = { 49.6, 98.3, 17, 300 }, + [12] = { 48, 98.2, 17, 300 }, + [13] = { 48.7, 98.1, 17, 300 }, + [14] = { 49.4, 98.1, 17, 300 }, + [15] = { 47.9, 98.1, 17, 300 }, + [16] = { 47.4, 98, 17, 300 }, + [17] = { 47.8, 97.8, 17, 300 }, + [18] = { 48, 97.7, 17, 300 }, + [19] = { 47.5, 97.6, 17, 300 }, + [20] = { 47.7, 97.5, 17, 300 }, + [21] = { 47.5, 97, 17, 300 }, + [22] = { 47.1, 96.7, 17, 300 }, + [23] = { 45.6, 43.8, 400, 300 }, + [24] = { 48.5, 43.6, 400, 300 }, + [25] = { 45.5, 43.5, 400, 300 }, + [26] = { 48.2, 42.9, 400, 300 }, + [27] = { 45.9, 42.9, 400, 300 }, + [28] = { 45.1, 42, 400, 300 }, + [29] = { 47.2, 41.9, 400, 300 }, + [30] = { 46.1, 41.9, 400, 300 }, + [31] = { 48.8, 41.7, 400, 300 }, + [32] = { 49.6, 41.5, 400, 300 }, + [33] = { 41.1, 41.4, 400, 300 }, + [34] = { 44.5, 41.4, 400, 300 }, + [35] = { 47.7, 41.4, 400, 300 }, + [36] = { 45.9, 41.3, 400, 300 }, + [37] = { 46.6, 41.2, 400, 300 }, + [38] = { 48.7, 41.1, 400, 300 }, + [39] = { 45, 40.9, 400, 300 }, + [40] = { 45.1, 40.7, 400, 300 }, + [41] = { 44.1, 40.7, 400, 300 }, + [42] = { 47.8, 40.6, 400, 300 }, + [43] = { 42.3, 40.6, 400, 300 }, + [44] = { 41.4, 40.5, 400, 300 }, + [45] = { 45.4, 40.5, 400, 300 }, + [46] = { 42.8, 40.5, 400, 300 }, + [47] = { 43.6, 40.5, 400, 300 }, + [48] = { 48.2, 40.4, 400, 300 }, + [49] = { 47.2, 40.3, 400, 300 }, + [50] = { 45.9, 40.3, 400, 300 }, + [51] = { 44.4, 40.2, 400, 300 }, + [52] = { 46.6, 40.2, 400, 300 }, + [53] = { 45.4, 39.8, 400, 300 }, + [54] = { 44.5, 39.6, 400, 300 }, + [55] = { 45.2, 39.4, 400, 300 }, + [56] = { 43.7, 39.3, 400, 300 }, + [57] = { 41.7, 39.2, 400, 300 }, + [58] = { 42.9, 39.1, 400, 300 }, + [59] = { 41, 39, 400, 300 }, + [60] = { 41.9, 38.4, 400, 300 }, + [61] = { 44.4, 38.4, 400, 300 }, + [62] = { 41.4, 38.2, 400, 300 }, + [63] = { 42.8, 38.2, 400, 300 }, + [64] = { 39, 38.1, 400, 300 }, + [65] = { 40.4, 38, 400, 300 }, + [66] = { 43.3, 38, 400, 300 }, + [67] = { 43.6, 38, 400, 300 }, + [68] = { 39.9, 37.9, 400, 300 }, + [69] = { 39.1, 37.9, 400, 300 }, + [70] = { 42.1, 37.9, 400, 300 }, + [71] = { 42.4, 37.5, 400, 300 }, + [72] = { 40.6, 37.4, 400, 300 }, + [73] = { 42.7, 37.1, 400, 300 }, + [74] = { 41.4, 37.1, 400, 300 }, + [75] = { 39.3, 36.9, 400, 300 }, + [76] = { 41.1, 36.9, 400, 300 }, + [77] = { 44.2, 36.8, 400, 300 }, + [78] = { 43.1, 36.8, 400, 300 }, + [79] = { 40.6, 36.8, 400, 300 }, + [80] = { 40.3, 36.5, 400, 300 }, + [81] = { 44.7, 36.4, 400, 300 }, + [82] = { 44.7, 36.2, 400, 300 }, + [83] = { 41.1, 36, 400, 300 }, + [84] = { 42.8, 35.9, 400, 300 }, + [85] = { 44.3, 35.8, 400, 300 }, + [86] = { 40.8, 35.7, 400, 300 }, + [87] = { 39.7, 35.6, 400, 300 }, + [88] = { 40.6, 35.1, 400, 300 }, + [89] = { 41.2, 34.9, 400, 300 }, + [90] = { 39.8, 34.6, 400, 300 }, + [91] = { 40.4, 34.5, 400, 300 }, + [92] = { 39.9, 33.2, 400, 300 }, + [93] = { 39.1, 32.5, 400, 300 }, + }, + ["lvl"] = "24-25", + }, + [4095] = { + ["coords"] = { + [1] = { 49.3, 98, 17, 300 }, + [2] = { 49.1, 97.9, 17, 300 }, + [3] = { 48.7, 97.7, 17, 300 }, + [4] = { 48.8, 97.6, 17, 300 }, + [5] = { 49.4, 97.6, 17, 300 }, + [6] = { 49.4, 97.5, 17, 300 }, + [7] = { 49.1, 97.5, 17, 300 }, + [8] = { 48.4, 97.5, 17, 300 }, + [9] = { 48.4, 97.4, 17, 300 }, + [10] = { 49.1, 97.3, 17, 300 }, + [11] = { 49.5, 97.3, 17, 300 }, + [12] = { 48.9, 97.2, 17, 300 }, + [13] = { 48.6, 97.1, 17, 300 }, + [14] = { 48.9, 97, 17, 300 }, + [15] = { 48.7, 97, 17, 300 }, + [16] = { 49.6, 96.9, 17, 300 }, + [17] = { 48.3, 96.9, 17, 300 }, + [18] = { 49.1, 96.9, 17, 300 }, + [19] = { 49.7, 96.8, 17, 300 }, + [20] = { 49.2, 96.8, 17, 300 }, + [21] = { 49.4, 96.8, 17, 300 }, + [22] = { 48.6, 96.7, 17, 300 }, + [23] = { 48.2, 96.7, 17, 300 }, + [24] = { 48.6, 96.4, 17, 300 }, + [25] = { 48.6, 96.3, 17, 300 }, + [26] = { 49.1, 96.2, 17, 300 }, + [27] = { 49.1, 96.1, 17, 300 }, + [28] = { 48.9, 96, 17, 300 }, + [29] = { 48.8, 96, 17, 300 }, + [30] = { 40, 93.6, 17, 300 }, + [31] = { 40.3, 93.5, 17, 300 }, + [32] = { 40, 93.2, 17, 300 }, + [33] = { 40.2, 93.2, 17, 300 }, + [34] = { 38.5, 92.6, 17, 300 }, + [35] = { 38.6, 92.3, 17, 300 }, + [36] = { 38.9, 92.2, 17, 300 }, + [37] = { 39.2, 92.1, 17, 300 }, + [38] = { 38.5, 91.9, 17, 300 }, + [39] = { 37.9, 91.2, 17, 300 }, + [40] = { 37.6, 90.8, 17, 300 }, + [41] = { 44.2, 35.4, 400, 300 }, + [42] = { 43.6, 35.4, 400, 300 }, + [43] = { 42.7, 34.9, 400, 300 }, + [44] = { 43, 34.6, 400, 300 }, + [45] = { 44.3, 34.5, 400, 300 }, + [46] = { 43.7, 34.4, 400, 300 }, + [47] = { 41.9, 34.3, 400, 300 }, + [48] = { 42, 34, 400, 300 }, + [49] = { 43.6, 34, 400, 300 }, + [50] = { 44.4, 33.8, 400, 300 }, + [51] = { 43.3, 33.6, 400, 300 }, + [52] = { 42.5, 33.5, 400, 300 }, + [53] = { 43.1, 33.3, 400, 300 }, + [54] = { 42.7, 33.2, 400, 300 }, + [55] = { 44.7, 33.1, 400, 300 }, + [56] = { 41.7, 33, 400, 300 }, + [57] = { 43.6, 33, 400, 300 }, + [58] = { 44.9, 32.8, 400, 300 }, + [59] = { 43.9, 32.8, 400, 300 }, + [60] = { 44.3, 32.7, 400, 300 }, + [61] = { 42.6, 32.5, 400, 300 }, + [62] = { 41.7, 32.4, 400, 300 }, + [63] = { 42.5, 31.8, 400, 300 }, + [64] = { 42.4, 31.5, 400, 300 }, + [65] = { 43.7, 31.5, 400, 300 }, + [66] = { 43.6, 31.2, 400, 300 }, + [67] = { 43.2, 31, 400, 300 }, + [68] = { 43, 30.9, 400, 300 }, + [69] = { 22.6, 25.5, 400, 300 }, + [70] = { 23.3, 25.1, 400, 300 }, + [71] = { 22.6, 24.4, 400, 300 }, + [72] = { 23.1, 24.4, 400, 300 }, + [73] = { 18.5, 24.2, 400, 300 }, + [74] = { 18.4, 23.6, 400, 300 }, + [75] = { 18.8, 23.1, 400, 300 }, + [76] = { 19.3, 23, 400, 300 }, + [77] = { 16.6, 22.6, 400, 300 }, + [78] = { 19.4, 22.5, 400, 300 }, + [79] = { 17.7, 22.4, 400, 300 }, + [80] = { 17, 22.2, 400, 300 }, + [81] = { 18.7, 22.2, 400, 300 }, + [82] = { 20, 22.1, 400, 300 }, + [83] = { 20.8, 22, 400, 300 }, + [84] = { 17.8, 21.7, 400, 300 }, + [85] = { 19.2, 21.5, 400, 300 }, + [86] = { 19, 21.4, 400, 300 }, + [87] = { 18.5, 21.2, 400, 300 }, + [88] = { 17.9, 20.9, 400, 300 }, + [89] = { 17.9, 19.8, 400, 300 }, + [90] = { 17.2, 18.8, 400, 300 }, + }, + ["lvl"] = "27-28", + }, + [4096] = { + ["coords"] = { + [1] = { 49.5, 99.3, 17, 300 }, + [2] = { 48.7, 99.2, 17, 300 }, + [3] = { 49, 99.1, 17, 300 }, + [4] = { 49.1, 99.1, 17, 300 }, + [5] = { 48.6, 98.9, 17, 300 }, + [6] = { 48.7, 98.7, 17, 300 }, + [7] = { 49.4, 98.6, 17, 300 }, + [8] = { 48.9, 98.6, 17, 300 }, + [9] = { 47.6, 98.4, 17, 300 }, + [10] = { 49.6, 98.4, 17, 300 }, + [11] = { 49.6, 98.3, 17, 300 }, + [12] = { 48, 98.2, 17, 300 }, + [13] = { 48.7, 98.1, 17, 300 }, + [14] = { 49.4, 98.1, 17, 300 }, + [15] = { 47.9, 98.1, 17, 300 }, + [16] = { 47.4, 98, 17, 300 }, + [17] = { 47.8, 97.8, 17, 300 }, + [18] = { 48, 97.7, 17, 300 }, + [19] = { 47.5, 97.6, 17, 300 }, + [20] = { 47.7, 97.5, 17, 300 }, + [21] = { 47.5, 97, 17, 300 }, + [22] = { 47.1, 96.7, 17, 300 }, + [23] = { 45.6, 43.8, 400, 300 }, + [24] = { 48.5, 43.6, 400, 300 }, + [25] = { 45.5, 43.5, 400, 300 }, + [26] = { 48.2, 42.9, 400, 300 }, + [27] = { 45.9, 42.9, 400, 300 }, + [28] = { 45.1, 42, 400, 300 }, + [29] = { 47.2, 41.9, 400, 300 }, + [30] = { 46.1, 41.9, 400, 300 }, + [31] = { 48.8, 41.7, 400, 300 }, + [32] = { 49.6, 41.5, 400, 300 }, + [33] = { 41.1, 41.4, 400, 300 }, + [34] = { 44.5, 41.4, 400, 300 }, + [35] = { 47.7, 41.4, 400, 300 }, + [36] = { 45.9, 41.3, 400, 300 }, + [37] = { 46.6, 41.2, 400, 300 }, + [38] = { 48.7, 41.1, 400, 300 }, + [39] = { 45, 40.9, 400, 300 }, + [40] = { 45.1, 40.7, 400, 300 }, + [41] = { 44.1, 40.7, 400, 300 }, + [42] = { 47.8, 40.6, 400, 300 }, + [43] = { 42.3, 40.6, 400, 300 }, + [44] = { 41.4, 40.5, 400, 300 }, + [45] = { 45.4, 40.5, 400, 300 }, + [46] = { 42.8, 40.5, 400, 300 }, + [47] = { 43.6, 40.5, 400, 300 }, + [48] = { 48.2, 40.4, 400, 300 }, + [49] = { 47.2, 40.3, 400, 300 }, + [50] = { 45.9, 40.3, 400, 300 }, + [51] = { 44.4, 40.2, 400, 300 }, + [52] = { 46.6, 40.2, 400, 300 }, + [53] = { 45.4, 39.8, 400, 300 }, + [54] = { 44.5, 39.6, 400, 300 }, + [55] = { 45.2, 39.4, 400, 300 }, + [56] = { 43.7, 39.3, 400, 300 }, + [57] = { 41.7, 39.2, 400, 300 }, + [58] = { 42.9, 39.1, 400, 300 }, + [59] = { 41, 39, 400, 300 }, + [60] = { 41.9, 38.4, 400, 300 }, + [61] = { 44.4, 38.4, 400, 300 }, + [62] = { 41.4, 38.2, 400, 300 }, + [63] = { 42.8, 38.2, 400, 300 }, + [64] = { 39, 38.1, 400, 300 }, + [65] = { 40.4, 38, 400, 300 }, + [66] = { 43.3, 38, 400, 300 }, + [67] = { 43.6, 38, 400, 300 }, + [68] = { 39.9, 37.9, 400, 300 }, + [69] = { 39.1, 37.9, 400, 300 }, + [70] = { 42.1, 37.9, 400, 300 }, + [71] = { 42.4, 37.5, 400, 300 }, + [72] = { 40.6, 37.4, 400, 300 }, + [73] = { 42.7, 37.1, 400, 300 }, + [74] = { 41.4, 37.1, 400, 300 }, + [75] = { 39.3, 36.9, 400, 300 }, + [76] = { 41.1, 36.9, 400, 300 }, + [77] = { 44.2, 36.8, 400, 300 }, + [78] = { 43.1, 36.8, 400, 300 }, + [79] = { 40.6, 36.8, 400, 300 }, + [80] = { 40.3, 36.5, 400, 300 }, + [81] = { 44.7, 36.4, 400, 300 }, + [82] = { 44.7, 36.2, 400, 300 }, + [83] = { 41.1, 36, 400, 300 }, + [84] = { 42.8, 35.9, 400, 300 }, + [85] = { 44.3, 35.8, 400, 300 }, + [86] = { 40.8, 35.7, 400, 300 }, + [87] = { 39.7, 35.6, 400, 300 }, + [88] = { 40.6, 35.1, 400, 300 }, + [89] = { 41.2, 34.9, 400, 300 }, + [90] = { 39.8, 34.6, 400, 300 }, + [91] = { 40.4, 34.5, 400, 300 }, + [92] = { 39.9, 33.2, 400, 300 }, + [93] = { 39.1, 32.5, 400, 300 }, + }, + ["lvl"] = "24-25", + }, + [4097] = { + ["coords"] = { + [1] = { 49.3, 98, 17, 300 }, + [2] = { 49.1, 97.9, 17, 300 }, + [3] = { 48.7, 97.7, 17, 300 }, + [4] = { 48.8, 97.6, 17, 300 }, + [5] = { 49.4, 97.6, 17, 300 }, + [6] = { 49.4, 97.5, 17, 300 }, + [7] = { 49.1, 97.5, 17, 300 }, + [8] = { 48.4, 97.5, 17, 300 }, + [9] = { 48.4, 97.4, 17, 300 }, + [10] = { 49.1, 97.3, 17, 300 }, + [11] = { 49.5, 97.3, 17, 300 }, + [12] = { 48.9, 97.2, 17, 300 }, + [13] = { 48.6, 97.1, 17, 300 }, + [14] = { 48.9, 97, 17, 300 }, + [15] = { 48.7, 97, 17, 300 }, + [16] = { 49.6, 96.9, 17, 300 }, + [17] = { 48.3, 96.9, 17, 300 }, + [18] = { 49.1, 96.9, 17, 300 }, + [19] = { 49.7, 96.8, 17, 300 }, + [20] = { 49.2, 96.8, 17, 300 }, + [21] = { 49.4, 96.8, 17, 300 }, + [22] = { 48.6, 96.7, 17, 300 }, + [23] = { 48.2, 96.7, 17, 300 }, + [24] = { 48.6, 96.4, 17, 300 }, + [25] = { 48.6, 96.3, 17, 300 }, + [26] = { 49.1, 96.2, 17, 300 }, + [27] = { 49.1, 96.1, 17, 300 }, + [28] = { 48.9, 96, 17, 300 }, + [29] = { 48.8, 96, 17, 300 }, + [30] = { 40, 93.6, 17, 300 }, + [31] = { 40.3, 93.5, 17, 300 }, + [32] = { 40, 93.2, 17, 300 }, + [33] = { 40.2, 93.2, 17, 300 }, + [34] = { 38.5, 92.6, 17, 300 }, + [35] = { 38.6, 92.3, 17, 300 }, + [36] = { 38.9, 92.2, 17, 300 }, + [37] = { 39.2, 92.1, 17, 300 }, + [38] = { 38.5, 91.9, 17, 300 }, + [39] = { 37.9, 91.2, 17, 300 }, + [40] = { 37.6, 90.8, 17, 300 }, + [41] = { 44.2, 35.4, 400, 300 }, + [42] = { 43.6, 35.4, 400, 300 }, + [43] = { 42.7, 34.9, 400, 300 }, + [44] = { 43, 34.6, 400, 300 }, + [45] = { 44.3, 34.5, 400, 300 }, + [46] = { 43.7, 34.4, 400, 300 }, + [47] = { 41.9, 34.3, 400, 300 }, + [48] = { 42, 34, 400, 300 }, + [49] = { 43.6, 34, 400, 300 }, + [50] = { 44.4, 33.8, 400, 300 }, + [51] = { 43.3, 33.6, 400, 300 }, + [52] = { 42.5, 33.5, 400, 300 }, + [53] = { 43.1, 33.3, 400, 300 }, + [54] = { 42.7, 33.2, 400, 300 }, + [55] = { 44.7, 33.1, 400, 300 }, + [56] = { 41.7, 33, 400, 300 }, + [57] = { 43.6, 33, 400, 300 }, + [58] = { 44.9, 32.8, 400, 300 }, + [59] = { 43.9, 32.8, 400, 300 }, + [60] = { 44.3, 32.7, 400, 300 }, + [61] = { 42.6, 32.5, 400, 300 }, + [62] = { 41.7, 32.4, 400, 300 }, + [63] = { 42.5, 31.8, 400, 300 }, + [64] = { 42.4, 31.5, 400, 300 }, + [65] = { 43.7, 31.5, 400, 300 }, + [66] = { 43.6, 31.2, 400, 300 }, + [67] = { 43.2, 31, 400, 300 }, + [68] = { 43, 30.9, 400, 300 }, + [69] = { 22.6, 25.5, 400, 300 }, + [70] = { 23.3, 25.1, 400, 300 }, + [71] = { 22.6, 24.4, 400, 300 }, + [72] = { 23.1, 24.4, 400, 300 }, + [73] = { 18.5, 24.2, 400, 300 }, + [74] = { 18.4, 23.6, 400, 300 }, + [75] = { 18.8, 23.1, 400, 300 }, + [76] = { 19.3, 23, 400, 300 }, + [77] = { 16.6, 22.6, 400, 300 }, + [78] = { 19.4, 22.5, 400, 300 }, + [79] = { 17.7, 22.4, 400, 300 }, + [80] = { 17, 22.2, 400, 300 }, + [81] = { 18.7, 22.2, 400, 300 }, + [82] = { 20, 22.1, 400, 300 }, + [83] = { 20.8, 22, 400, 300 }, + [84] = { 17.8, 21.7, 400, 300 }, + [85] = { 19.2, 21.5, 400, 300 }, + [86] = { 19, 21.4, 400, 300 }, + [87] = { 18.5, 21.2, 400, 300 }, + [88] = { 17.9, 20.9, 400, 300 }, + [89] = { 17.9, 19.8, 400, 300 }, + [90] = { 17.2, 18.8, 400, 300 }, + }, + ["lvl"] = "26-27", + }, + [4098] = "_", + [4099] = { + ["coords"] = { + [1] = { 49.3, 98, 17, 300 }, + [2] = { 49.1, 97.9, 17, 300 }, + [3] = { 48.7, 97.7, 17, 300 }, + [4] = { 48.8, 97.6, 17, 300 }, + [5] = { 49.4, 97.6, 17, 300 }, + [6] = { 49.4, 97.5, 17, 300 }, + [7] = { 49.1, 97.5, 17, 300 }, + [8] = { 48.4, 97.5, 17, 300 }, + [9] = { 48.4, 97.4, 17, 300 }, + [10] = { 49.1, 97.3, 17, 300 }, + [11] = { 49.5, 97.3, 17, 300 }, + [12] = { 48.9, 97.2, 17, 300 }, + [13] = { 48.6, 97.1, 17, 300 }, + [14] = { 48.9, 97, 17, 300 }, + [15] = { 48.7, 97, 17, 300 }, + [16] = { 49.6, 96.9, 17, 300 }, + [17] = { 48.3, 96.9, 17, 300 }, + [18] = { 49.1, 96.9, 17, 300 }, + [19] = { 49.7, 96.8, 17, 300 }, + [20] = { 49.2, 96.8, 17, 300 }, + [21] = { 49.4, 96.8, 17, 300 }, + [22] = { 48.6, 96.7, 17, 300 }, + [23] = { 48.2, 96.7, 17, 300 }, + [24] = { 48.6, 96.4, 17, 300 }, + [25] = { 48.6, 96.3, 17, 300 }, + [26] = { 49.1, 96.2, 17, 300 }, + [27] = { 49.1, 96.1, 17, 300 }, + [28] = { 48.9, 96, 17, 300 }, + [29] = { 48.8, 96, 17, 300 }, + [30] = { 40, 93.6, 17, 300 }, + [31] = { 40.3, 93.5, 17, 300 }, + [32] = { 40, 93.2, 17, 300 }, + [33] = { 40.2, 93.2, 17, 300 }, + [34] = { 38.5, 92.6, 17, 300 }, + [35] = { 38.6, 92.3, 17, 300 }, + [36] = { 38.9, 92.2, 17, 300 }, + [37] = { 39.2, 92.1, 17, 300 }, + [38] = { 38.5, 91.9, 17, 300 }, + [39] = { 37.9, 91.2, 17, 300 }, + [40] = { 37.6, 90.8, 17, 300 }, + [41] = { 44.2, 35.4, 400, 300 }, + [42] = { 43.6, 35.4, 400, 300 }, + [43] = { 42.7, 34.9, 400, 300 }, + [44] = { 43, 34.6, 400, 300 }, + [45] = { 44.3, 34.5, 400, 300 }, + [46] = { 43.7, 34.4, 400, 300 }, + [47] = { 41.9, 34.3, 400, 300 }, + [48] = { 42, 34, 400, 300 }, + [49] = { 43.6, 34, 400, 300 }, + [50] = { 44.4, 33.8, 400, 300 }, + [51] = { 43.3, 33.6, 400, 300 }, + [52] = { 42.5, 33.5, 400, 300 }, + [53] = { 43.1, 33.3, 400, 300 }, + [54] = { 42.7, 33.2, 400, 300 }, + [55] = { 44.7, 33.1, 400, 300 }, + [56] = { 41.7, 33, 400, 300 }, + [57] = { 43.6, 33, 400, 300 }, + [58] = { 44.9, 32.8, 400, 300 }, + [59] = { 43.9, 32.8, 400, 300 }, + [60] = { 44.3, 32.7, 400, 300 }, + [61] = { 42.6, 32.5, 400, 300 }, + [62] = { 41.7, 32.4, 400, 300 }, + [63] = { 42.5, 31.8, 400, 300 }, + [64] = { 42.4, 31.5, 400, 300 }, + [65] = { 43.7, 31.5, 400, 300 }, + [66] = { 43.6, 31.2, 400, 300 }, + [67] = { 43.2, 31, 400, 300 }, + [68] = { 43, 30.9, 400, 300 }, + [69] = { 22.6, 25.5, 400, 300 }, + [70] = { 23.3, 25.1, 400, 300 }, + [71] = { 22.6, 24.4, 400, 300 }, + [72] = { 23.1, 24.4, 400, 300 }, + [73] = { 18.5, 24.2, 400, 300 }, + [74] = { 18.4, 23.6, 400, 300 }, + [75] = { 18.8, 23.1, 400, 300 }, + [76] = { 19.3, 23, 400, 300 }, + [77] = { 16.6, 22.6, 400, 300 }, + [78] = { 19.4, 22.5, 400, 300 }, + [79] = { 17.7, 22.4, 400, 300 }, + [80] = { 17, 22.2, 400, 300 }, + [81] = { 18.7, 22.2, 400, 300 }, + [82] = { 20, 22.1, 400, 300 }, + [83] = { 20.8, 22, 400, 300 }, + [84] = { 17.8, 21.7, 400, 300 }, + [85] = { 19.2, 21.5, 400, 300 }, + [86] = { 19, 21.4, 400, 300 }, + [87] = { 18.5, 21.2, 400, 300 }, + [88] = { 17.9, 20.9, 400, 300 }, + [89] = { 17.9, 19.8, 400, 300 }, + [90] = { 17.2, 18.8, 400, 300 }, + }, + ["lvl"] = "26-27", + }, + [4100] = { + ["coords"] = { + [1] = { 26.2, 56.2, 400, 300 }, + [2] = { 26.7, 56, 400, 300 }, + [3] = { 26.5, 55.8, 400, 300 }, + [4] = { 26.7, 55.6, 400, 300 }, + [5] = { 27.1, 55.2, 400, 300 }, + [6] = { 26, 55, 400, 300 }, + [7] = { 27.3, 54.3, 400, 300 }, + [8] = { 26.3, 53.7, 400, 300 }, + [9] = { 26.6, 53.4, 400, 300 }, + [10] = { 26, 52.8, 400, 300 }, + [11] = { 26.3, 52.6, 400, 300 }, + [12] = { 26.5, 52.3, 400, 300 }, + [13] = { 27.2, 52.2, 400, 300 }, + [14] = { 26.7, 52.1, 400, 300 }, + [15] = { 27.3, 51, 400, 300 }, + [16] = { 28.5, 50.2, 400, 300 }, + [17] = { 27.8, 50.2, 400, 300 }, + [18] = { 27.6, 48.9, 400, 300 }, + [19] = { 28.4, 48.7, 400, 300 }, + [20] = { 27.9, 48.2, 400, 300 }, + [21] = { 28.2, 47.6, 400, 300 }, + [22] = { 26.7, 47.5, 400, 300 }, + [23] = { 27.4, 47.4, 400, 300 }, + }, + ["lvl"] = "28-29", + }, + [4101] = { + ["coords"] = { + [1] = { 26.2, 56.2, 400, 300 }, + [2] = { 26.7, 56, 400, 300 }, + [3] = { 26.5, 55.8, 400, 300 }, + [4] = { 26.7, 55.6, 400, 300 }, + [5] = { 27.1, 55.2, 400, 300 }, + [6] = { 26, 55, 400, 300 }, + [7] = { 27.3, 54.3, 400, 300 }, + [8] = { 26.3, 53.7, 400, 300 }, + [9] = { 26.6, 53.4, 400, 300 }, + [10] = { 26, 52.8, 400, 300 }, + [11] = { 26.3, 52.6, 400, 300 }, + [12] = { 26.5, 52.3, 400, 300 }, + [13] = { 27.2, 52.2, 400, 300 }, + [14] = { 26.7, 52.1, 400, 300 }, + [15] = { 27.3, 51, 400, 300 }, + [16] = { 28.5, 50.2, 400, 300 }, + [17] = { 27.8, 50.2, 400, 300 }, + [18] = { 27.6, 48.9, 400, 300 }, + [19] = { 28.4, 48.7, 400, 300 }, + [20] = { 27.9, 48.2, 400, 300 }, + [21] = { 28.2, 47.6, 400, 300 }, + [22] = { 26.7, 47.5, 400, 300 }, + [23] = { 27.4, 47.4, 400, 300 }, + }, + ["lvl"] = "29-30", + }, + [4104] = { + ["coords"] = { + [1] = { 26.2, 56.2, 400, 300 }, + [2] = { 26.7, 56, 400, 300 }, + [3] = { 26.5, 55.8, 400, 300 }, + [4] = { 26.7, 55.6, 400, 300 }, + [5] = { 27.1, 55.2, 400, 300 }, + [6] = { 26, 55, 400, 300 }, + [7] = { 27.3, 54.3, 400, 300 }, + [8] = { 26.3, 53.7, 400, 300 }, + [9] = { 26.6, 53.4, 400, 300 }, + [10] = { 26, 52.8, 400, 300 }, + [11] = { 26.3, 52.6, 400, 300 }, + [12] = { 26.5, 52.3, 400, 300 }, + [13] = { 27.2, 52.2, 400, 300 }, + [14] = { 26.7, 52.1, 400, 300 }, + }, + ["lvl"] = "30", + }, + [4107] = { + ["coords"] = { + [1] = { 17.9, 42.9, 400, 300 }, + [2] = { 17, 41.7, 400, 300 }, + [3] = { 17.9, 41.5, 400, 300 }, + [4] = { 15.4, 40.6, 400, 300 }, + [5] = { 10.4, 40.3, 400, 300 }, + [6] = { 13.7, 39.5, 400, 300 }, + [7] = { 10.9, 39.2, 400, 300 }, + [8] = { 11.8, 37.8, 400, 300 }, + [9] = { 13.9, 37.8, 400, 300 }, + [10] = { 13.3, 37.8, 400, 300 }, + [11] = { 10.3, 35.7, 400, 300 }, + [12] = { 9.3, 35.6, 400, 300 }, + [13] = { 11.2, 34.6, 400, 300 }, + [14] = { 9.2, 34.4, 400, 300 }, + [15] = { 10.2, 33.8, 400, 300 }, + [16] = { 11.9, 33.2, 400, 300 }, + [17] = { 10.6, 31.4, 400, 300 }, + }, + ["lvl"] = "28-29", + }, + [4109] = { + ["coords"] = { + [1] = { 16.2, 41.6, 400, 300 }, + [2] = { 11, 37.1, 400, 300 }, + [3] = { 12.3, 37.1, 400, 300 }, + [4] = { 11.9, 35.8, 400, 300 }, + [5] = { 11.8, 31.9, 400, 300 }, + }, + ["lvl"] = "28-29", + }, + [4113] = { + ["coords"] = { + [1] = { 91.9, 49.4, 357, 300 }, + [2] = { 91.9, 45.8, 357, 300 }, + [3] = { 93.2, 43.9, 357, 300 }, + [4] = { 67.1, 58.8, 400, 300 }, + [5] = { 57.7, 57.7, 400, 300 }, + [6] = { 59.6, 57.5, 400, 300 }, + [7] = { 51.7, 48.1, 400, 300 }, + [8] = { 53.6, 46, 400, 300 }, + [9] = { 52.4, 45.1, 400, 300 }, + [10] = { 11.6, 23.5, 400, 300 }, + [11] = { 11.6, 17.8, 400, 300 }, + [12] = { 13.7, 14.8, 400, 300 }, + }, + ["lvl"] = "28-29", + }, + [4114] = { + ["coords"] = { + [1] = { 42.7, 95.3, 17, 300 }, + [2] = { 58.9, 58.7, 400, 300 }, + [3] = { 30.9, 51.6, 400, 300 }, + [4] = { 24.8, 46.6, 400, 300 }, + [5] = { 36.3, 45.8, 400, 300 }, + [6] = { 29, 29.2, 400, 300 }, + }, + ["lvl"] = "27-28", + }, + [4115] = "_", + [4116] = { + ["coords"] = { + [1] = { 91.9, 49, 357, 300 }, + [2] = { 92.7, 43.9, 357, 300 }, + [3] = { 67.5, 60.1, 400, 300 }, + [4] = { 66.3, 49.6, 400, 300 }, + [5] = { 64, 46.9, 400, 300 }, + [6] = { 11.7, 22.8, 400, 300 }, + [7] = { 12.9, 14.7, 400, 300 }, + }, + ["lvl"] = "29-30", + }, + [4119] = { + ["coords"] = { + [1] = { 55.5, 51.9, 400, 300 }, + [2] = { 59.1, 51.6, 400, 300 }, + [3] = { 56.1, 51.2, 400, 300 }, + [4] = { 57.2, 49.9, 400, 300 }, + [5] = { 56.3, 49.8, 400, 300 }, + [6] = { 56.3, 49.7, 400, 300 }, + [7] = { 55.4, 49.6, 400, 300 }, + [8] = { 56, 49.3, 400, 300 }, + [9] = { 56.2, 48.8, 400, 300 }, + [10] = { 54.6, 48.7, 400, 300 }, + [11] = { 54.2, 48.1, 400, 300 }, + [12] = { 54.9, 47.6, 400, 300 }, + [13] = { 56.3, 46.9, 400, 300 }, + [14] = { 59.6, 46.4, 400, 300 }, + [15] = { 55.6, 45.8, 400, 300 }, + [16] = { 51.6, 43.9, 400, 300 }, + [17] = { 19.4, 39.2, 400, 300 }, + [18] = { 17.5, 36.7, 400, 300 }, + [19] = { 18.7, 33, 400, 300 }, + [20] = { 15, 31.7, 400, 300 }, + }, + ["lvl"] = "27-29", + }, + [4121] = "_", + [4126] = { + ["coords"] = { + [1] = { 44.5, 97.4, 17, 300 }, + [2] = { 45.9, 96.5, 17, 300 }, + [3] = { 44.5, 96.2, 17, 300 }, + [4] = { 44.8, 95.7, 17, 300 }, + [5] = { 45.2, 94.8, 17, 300 }, + [6] = { 45.4, 94.1, 17, 300 }, + [7] = { 44.7, 93.4, 17, 300 }, + [8] = { 45.3, 60.1, 400, 300 }, + [9] = { 46.5, 59.6, 400, 300 }, + [10] = { 47.8, 59.2, 400, 300 }, + [11] = { 44.2, 59.2, 400, 300 }, + [12] = { 41.4, 58.7, 400, 300 }, + [13] = { 45.7, 58.7, 400, 300 }, + [14] = { 40.1, 56.2, 400, 300 }, + [15] = { 41.7, 52.4, 400, 300 }, + [16] = { 40.4, 51.7, 400, 300 }, + [17] = { 51.4, 49.9, 400, 300 }, + [18] = { 51.1, 48.5, 400, 300 }, + [19] = { 50.3, 47.1, 400, 300 }, + [20] = { 49.3, 46.8, 400, 300 }, + [21] = { 36.8, 41, 400, 300 }, + [22] = { 33, 34.1, 400, 300 }, + [23] = { 36.2, 32, 400, 300 }, + [24] = { 33.1, 31.4, 400, 300 }, + [25] = { 33.8, 30.2, 400, 300 }, + [26] = { 34.8, 28.1, 400, 300 }, + [27] = { 35.1, 26.4, 400, 300 }, + [28] = { 33.6, 24.9, 400, 300 }, + }, + ["lvl"] = "25-26", + }, + [4127] = { + ["coords"] = { + [1] = { 36, 14.4, 14, 413 }, + [2] = { 56, 46.9, 17, 413 }, + [3] = { 54, 46, 17, 413 }, + [4] = { 54.2, 45.4, 17, 413 }, + [5] = { 53.9, 45.1, 17, 413 }, + [6] = { 55.2, 44.9, 17, 413 }, + [7] = { 54.2, 44.9, 17, 413 }, + [8] = { 50, 44.9, 17, 413 }, + [9] = { 53.9, 44.9, 17, 413 }, + [10] = { 55.8, 44.7, 17, 413 }, + [11] = { 51.1, 44.2, 17, 413 }, + [12] = { 51.4, 44.2, 17, 413 }, + [13] = { 53.3, 44, 17, 413 }, + [14] = { 45.8, 42.8, 17, 413 }, + [15] = { 51, 42.8, 17, 413 }, + [16] = { 45.8, 42.7, 17, 413 }, + [17] = { 45.1, 42.6, 17, 413 }, + [18] = { 48.1, 42.4, 17, 413 }, + [19] = { 48.2, 42.3, 17, 413 }, + [20] = { 44.5, 42.2, 17, 413 }, + [21] = { 46, 42, 17, 413 }, + [22] = { 46.6, 42, 17, 413 }, + [23] = { 57.2, 42, 17, 413 }, + [24] = { 61.1, 41.9, 17, 413 }, + [25] = { 46.7, 41.9, 17, 413 }, + [26] = { 49.5, 41.8, 17, 413 }, + [27] = { 59.5, 41.8, 17, 413 }, + [28] = { 60.3, 41.8, 17, 413 }, + [29] = { 43.4, 41.7, 17, 413 }, + [30] = { 61.9, 41.7, 17, 413 }, + [31] = { 49, 41.6, 17, 413 }, + [32] = { 56.3, 41.5, 17, 413 }, + [33] = { 57.6, 41.5, 17, 413 }, + [34] = { 47.1, 41.4, 17, 413 }, + [35] = { 44.5, 41, 17, 413 }, + [36] = { 57.6, 40.9, 17, 413 }, + [37] = { 55.9, 40.6, 17, 413 }, + [38] = { 49, 40.5, 17, 413 }, + [39] = { 43.3, 40.5, 17, 413 }, + [40] = { 54.2, 40.2, 17, 413 }, + [41] = { 44.8, 40, 17, 413 }, + [42] = { 56.5, 39.9, 17, 413 }, + [43] = { 49.3, 39.8, 17, 413 }, + [44] = { 54.1, 39.8, 17, 413 }, + [45] = { 55.5, 39.7, 17, 413 }, + [46] = { 43.8, 39.7, 17, 413 }, + [47] = { 55.9, 39.2, 17, 413 }, + [48] = { 55.2, 38.7, 17, 413 }, + [49] = { 42.2, 37.8, 17, 413 }, + [50] = { 59.3, 37.8, 17, 413 }, + [51] = { 58.3, 37.5, 17, 413 }, + [52] = { 43, 37, 17, 413 }, + [53] = { 43.9, 36.5, 17, 413 }, + [54] = { 43, 36.4, 17, 413 }, + [55] = { 44.1, 36.2, 17, 413 }, + [56] = { 43.1, 35.7, 17, 413 }, + [57] = { 42.4, 35.6, 17, 413 }, + [58] = { 60.4, 35.5, 17, 413 }, + [59] = { 57.9, 34.7, 17, 413 }, + [60] = { 41.1, 32.4, 17, 413 }, + [61] = { 40.9, 32, 17, 413 }, + [62] = { 42.2, 31, 17, 413 }, + [63] = { 59.5, 30.5, 17, 413 }, + [64] = { 60.8, 30.1, 17, 413 }, + [65] = { 40.6, 29.2, 17, 413 }, + [66] = { 59.2, 29.1, 17, 413 }, + [67] = { 62.5, 28.9, 17, 413 }, + [68] = { 40.5, 28.6, 17, 413 }, + [69] = { 42, 28.3, 17, 413 }, + [70] = { 62.7, 28.1, 17, 413 }, + [71] = { 60.1, 27.2, 17, 413 }, + [72] = { 62.8, 27.1, 17, 413 }, + [73] = { 41.5, 26.4, 17, 413 }, + [74] = { 41.2, 25.2, 17, 413 }, + [75] = { 41.2, 24.7, 17, 413 }, + [76] = { 40.5, 22.6, 17, 413 }, + [77] = { 41.5, 22.3, 17, 413 }, + [78] = { 42.2, 21.5, 17, 413 }, + [79] = { 42.1, 21.2, 17, 413 }, + [80] = { 41.5, 21.1, 17, 413 }, + [81] = { 43.9, 20.7, 17, 413 }, + [82] = { 42.5, 20.7, 17, 413 }, + [83] = { 42.5, 19.7, 17, 413 }, + [84] = { 44.9, 18.7, 17, 413 }, + [85] = { 57.3, 18.3, 17, 413 }, + [86] = { 58.3, 18.3, 17, 413 }, + [87] = { 44.6, 18.3, 17, 413 }, + [88] = { 59.2, 18.1, 17, 413 }, + [89] = { 56.2, 17.5, 17, 413 }, + [90] = { 56.6, 17.4, 17, 413 }, + [91] = { 57.5, 17.2, 17, 413 }, + [92] = { 57.3, 16.2, 17, 413 }, + [93] = { 56.3, 15.5, 17, 413 }, + [94] = { 52, 14.2, 17, 413 }, + [95] = { 52.4, 13.9, 17, 413 }, + [96] = { 54.7, 13.3, 17, 413 }, + [97] = { 52.1, 13.1, 17, 413 }, + [98] = { 54.7, 12.7, 17, 413 }, + [99] = { 53.7, 12.3, 17, 413 }, + [100] = { 54.7, 12.2, 17, 413 }, + [101] = { 55.1, 11.9, 17, 413 }, + [102] = { 54.4, 11.8, 17, 413 }, + [103] = { 54, 11.1, 17, 413 }, + [104] = { 54.7, 10.2, 17, 413 }, + [105] = { 55.7, 9.8, 17, 413 }, + [106] = { 62.3, 8.7, 17, 413 }, + [107] = { 61.6, 8.4, 17, 413 }, + [108] = { 63.5, 7.6, 17, 413 }, + [109] = { 64, 4.6, 17, 413 }, + }, + ["lvl"] = "15-16", + }, + [4128] = { + ["coords"] = { + [1] = { 28.2, 48.7, 15, 540 }, + [2] = { 28, 48.4, 15, 413 }, + [3] = { 28.3, 44.9, 15, 413 }, + [4] = { 27.5, 44.4, 15, 413 }, + [5] = { 28.7, 42.5, 15, 413 }, + [6] = { 46.4, 81.8, 17, 413 }, + [7] = { 47.4, 81.5, 17, 413 }, + [8] = { 46.8, 81.3, 17, 413 }, + [9] = { 46.4, 81, 17, 413 }, + [10] = { 48.3, 80.9, 17, 413 }, + [11] = { 47.2, 80.9, 17, 413 }, + [12] = { 46.7, 79.9, 17, 413 }, + [13] = { 48.4, 79.6, 17, 413 }, + [14] = { 44.1, 79.4, 17, 413 }, + [15] = { 48.9, 79.3, 17, 413 }, + [16] = { 50.1, 79.2, 17, 540 }, + [17] = { 49.2, 79, 17, 540 }, + [18] = { 50, 79, 17, 413 }, + [19] = { 45.3, 79, 17, 413 }, + [20] = { 45.1, 78, 17, 413 }, + [21] = { 45.1, 77.4, 17, 413 }, + [22] = { 47.1, 77.4, 17, 413 }, + [23] = { 45.4, 77.2, 17, 413 }, + [24] = { 50.2, 77.2, 17, 413 }, + [25] = { 49.7, 77, 17, 413 }, + [26] = { 44.6, 76.7, 17, 413 }, + [27] = { 45.5, 76.7, 17, 413 }, + [28] = { 43.9, 76.5, 17, 413 }, + [29] = { 45.4, 76, 17, 413 }, + [30] = { 50.4, 76, 17, 413 }, + [31] = { 49.6, 75.9, 17, 413 }, + [32] = { 49.5, 75.6, 17, 413 }, + [33] = { 48.1, 75.5, 17, 413 }, + [34] = { 44.6, 75, 17, 413 }, + [35] = { 44.9, 74.9, 17, 413 }, + [36] = { 44, 74.9, 17, 413 }, + [37] = { 47.8, 74.7, 17, 413 }, + [38] = { 45.5, 74.7, 17, 413 }, + [39] = { 48.3, 74.5, 17, 413 }, + [40] = { 44.3, 74.5, 17, 413 }, + [41] = { 47.1, 73.9, 17, 413 }, + [42] = { 47.8, 73.7, 17, 413 }, + [43] = { 47.5, 73.5, 17, 413 }, + [44] = { 47.5, 73, 17, 413 }, + }, + ["lvl"] = "22-23", + }, + [4130] = { + ["coords"] = { + [1] = { 71.8, 86, 400, 300 }, + [2] = { 67.7, 83.5, 400, 300 }, + [3] = { 71.7, 83.3, 400, 300 }, + [4] = { 69.9, 82.5, 400, 300 }, + [5] = { 67.7, 81.4, 400, 300 }, + }, + ["lvl"] = "32-33", + }, + [4133] = { + ["coords"] = { + [1] = { 69.5, 89.5, 400, 300 }, + [2] = { 69.1, 89.1, 400, 300 }, + [3] = { 70.2, 88.3, 400, 300 }, + [4] = { 67.9, 88.3, 400, 300 }, + [5] = { 68.9, 87.3, 400, 300 }, + [6] = { 70, 87.1, 400, 300 }, + [7] = { 70.9, 87.1, 400, 300 }, + [8] = { 65.3, 86.7, 400, 300 }, + [9] = { 69.4, 86.6, 400, 300 }, + [10] = { 65.7, 86.2, 400, 300 }, + [11] = { 70, 86.2, 400, 300 }, + [12] = { 67, 86.2, 400, 300 }, + [13] = { 63.9, 86.1, 400, 300 }, + [14] = { 69.9, 86, 400, 300 }, + [15] = { 68.1, 86, 400, 300 }, + [16] = { 71, 86, 400, 300 }, + [17] = { 65.7, 86, 400, 300 }, + [18] = { 64.1, 85.9, 400, 300 }, + [19] = { 68.9, 85.9, 400, 300 }, + [20] = { 63.6, 85.8, 400, 300 }, + [21] = { 68.7, 85.8, 400, 300 }, + [22] = { 63.9, 85.4, 400, 300 }, + [23] = { 69.4, 85.4, 400, 300 }, + [24] = { 65.1, 85.1, 400, 300 }, + [25] = { 71, 84.7, 400, 300 }, + [26] = { 69.4, 84.5, 400, 300 }, + [27] = { 70, 84.4, 400, 300 }, + [28] = { 70.6, 84, 400, 300 }, + [29] = { 69, 83.1, 400, 300 }, + [30] = { 70.8, 82.5, 400, 300 }, + [31] = { 67.1, 82.5, 400, 300 }, + [32] = { 69.5, 81.5, 400, 300 }, + [33] = { 68.6, 81.4, 400, 300 }, + [34] = { 43.9, 13.4, 440, 300 }, + [35] = { 44, 13.3, 440, 300 }, + [36] = { 43.6, 13.2, 440, 300 }, + [37] = { 43.8, 13, 440, 300 }, + }, + ["lvl"] = "33-34", + }, + [4139] = { + ["coords"] = { + [1] = { 73.5, 89.8, 400, 300 }, + [2] = { 82.5, 87.8, 400, 300 }, + [3] = { 81.4, 86.8, 400, 300 }, + [4] = { 73.1, 81.1, 400, 300 }, + [5] = { 82.8, 79.7, 400, 300 }, + [6] = { 70, 79.1, 400, 300 }, + [7] = { 70.8, 76.8, 400, 300 }, + [8] = { 71.5, 74.7, 400, 300 }, + [9] = { 70.9, 73.3, 400, 300 }, + [10] = { 83.1, 73.3, 400, 300 }, + [11] = { 71.8, 72.9, 400, 300 }, + [12] = { 83.8, 72.2, 400, 300 }, + [13] = { 87.1, 69.9, 400, 300 }, + [14] = { 88.2, 69, 400, 300 }, + [15] = { 86.6, 68.6, 400, 300 }, + }, + ["lvl"] = "33-34", + }, + [4140] = { + ["coords"] = { + [1] = { 71.8, 73.7, 400, 300 }, + [2] = { 72.1, 73.2, 400, 300 }, + [3] = { 71.3, 72.8, 400, 300 }, + [4] = { 73.7, 70.1, 400, 300 }, + [5] = { 82.7, 69.1, 400, 300 }, + [6] = { 70.4, 68.9, 400, 300 }, + [7] = { 79.9, 68.7, 400, 300 }, + [8] = { 78.3, 68, 400, 300 }, + [9] = { 75.5, 67.8, 400, 300 }, + [10] = { 78.4, 66.9, 400, 300 }, + [11] = { 82.9, 66.4, 400, 300 }, + [12] = { 69.3, 65.3, 400, 300 }, + [13] = { 70.1, 63.1, 400, 300 }, + [14] = { 83.7, 63, 400, 300 }, + [15] = { 84.5, 61.4, 400, 300 }, + [16] = { 86.4, 61.3, 400, 300 }, + [17] = { 73.9, 61, 400, 300 }, + [18] = { 72.3, 59.7, 400, 300 }, + [19] = { 75.2, 59.5, 400, 300 }, + [20] = { 82.9, 59.3, 400, 300 }, + [21] = { 75.4, 58.4, 400, 300 }, + [22] = { 86.6, 57.7, 400, 300 }, + [23] = { 72.4, 57.5, 400, 300 }, + [24] = { 71.3, 57.2, 400, 300 }, + [25] = { 78, 56.7, 400, 300 }, + [26] = { 71.6, 55.4, 400, 300 }, + [27] = { 73.9, 55.2, 400, 300 }, + [28] = { 76.1, 55.1, 400, 300 }, + [29] = { 78.4, 55.1, 400, 300 }, + [30] = { 78.3, 52.8, 400, 300 }, + [31] = { 77.6, 51.8, 400, 300 }, + [32] = { 76.1, 51.7, 400, 300 }, + }, + ["lvl"] = "31-32", + }, + [4142] = { + ["coords"] = { + [1] = { 72.7, 68.6, 400, 300 }, + [2] = { 69.3, 67.1, 400, 300 }, + [3] = { 69.2, 65.6, 400, 300 }, + [4] = { 70.9, 64.1, 400, 300 }, + [5] = { 75.4, 63.1, 400, 300 }, + [6] = { 74.5, 63.1, 400, 300 }, + [7] = { 74.7, 60.9, 400, 300 }, + [8] = { 76.2, 58.6, 400, 300 }, + [9] = { 72.7, 58.4, 400, 300 }, + [10] = { 74.7, 56.4, 400, 300 }, + [11] = { 73, 55.8, 400, 300 }, + [12] = { 70.8, 55.1, 400, 300 }, + [13] = { 81.5, 54.9, 400, 300 }, + [14] = { 76.7, 54.3, 400, 300 }, + [15] = { 77.6, 53.9, 400, 300 }, + [16] = { 75.1, 53.1, 400, 300 }, + [17] = { 81.3, 52.7, 400, 300 }, + }, + ["lvl"] = "30-31", + }, + [4143] = { + ["coords"] = { + [1] = { 88.3, 79.1, 400, 300 }, + [2] = { 72.1, 78.8, 400, 300 }, + [3] = { 70.2, 78, 400, 300 }, + [4] = { 70.5, 76.8, 400, 300 }, + [5] = { 83.7, 74.6, 400, 300 }, + [6] = { 87.3, 74.4, 400, 300 }, + [7] = { 87.5, 73.3, 400, 300 }, + [8] = { 87.5, 71, 400, 300 }, + [9] = { 77.2, 70.9, 400, 300 }, + [10] = { 82.9, 70, 400, 300 }, + [11] = { 76.9, 68.4, 400, 300 }, + [12] = { 83.9, 67.4, 400, 300 }, + [13] = { 79.9, 66.3, 400, 300 }, + [14] = { 87.3, 61.1, 400, 300 }, + [15] = { 83.8, 60.7, 400, 300 }, + [16] = { 86, 58.2, 400, 300 }, + [17] = { 81.4, 56.5, 400, 300 }, + [18] = { 82.1, 54.8, 400, 300 }, + [19] = { 82.3, 54.2, 400, 300 }, + [20] = { 78.9, 53.8, 400, 300 }, + [21] = { 81.6, 53.5, 400, 300 }, + [22] = { 79, 51.6, 400, 300 }, + }, + ["lvl"] = "34-35", + }, + [4146] = { + ["coords"] = { + [1] = { 25.6, 48.7, 141, 30 }, + [2] = { 40.4, 8.5, 1657, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [4147] = { + ["coords"] = { + [1] = { 70.7, 67.7, 400, 300 }, + [2] = { 71.2, 67.7, 400, 300 }, + [3] = { 70.6, 66.5, 400, 300 }, + [4] = { 71.7, 65.5, 400, 300 }, + [5] = { 77.6, 64.9, 400, 300 }, + [6] = { 68.7, 61.9, 400, 300 }, + [7] = { 75.4, 61.5, 400, 300 }, + [8] = { 76.9, 60.9, 400, 300 }, + [9] = { 77.4, 59.6, 400, 300 }, + [10] = { 73.6, 59.4, 400, 300 }, + [11] = { 78.5, 59, 400, 300 }, + [12] = { 76.9, 57.6, 400, 300 }, + [13] = { 73.8, 57.4, 400, 300 }, + [14] = { 75.5, 57.4, 400, 300 }, + [15] = { 76.1, 56.4, 400, 300 }, + [16] = { 72.5, 55.5, 400, 300 }, + [17] = { 74.3, 54, 400, 300 }, + [18] = { 76.4, 53.7, 400, 300 }, + [19] = { 76.3, 52.9, 400, 300 }, + }, + ["lvl"] = "30-31", + }, + [4149] = "_", + [4150] = { + ["coords"] = { + [1] = { 77.1, 90.7, 400, 300 }, + [2] = { 71.2, 90.7, 400, 300 }, + [3] = { 76, 90.4, 400, 300 }, + [4] = { 78.5, 90.3, 400, 300 }, + [5] = { 76.9, 89.4, 400, 300 }, + [6] = { 79.9, 89.4, 400, 300 }, + [7] = { 78, 89.2, 400, 300 }, + [8] = { 76.9, 89, 400, 300 }, + [9] = { 79, 88.6, 400, 300 }, + [10] = { 79, 88.1, 400, 300 }, + [11] = { 72.9, 87.9, 400, 300 }, + [12] = { 77.8, 87.8, 400, 300 }, + [13] = { 79.4, 87.2, 400, 300 }, + [14] = { 76.8, 86.7, 400, 300 }, + [15] = { 76.1, 85.9, 400, 300 }, + [16] = { 83.1, 85.6, 400, 300 }, + [17] = { 77.7, 83.6, 400, 300 }, + [18] = { 83.5, 78.8, 400, 300 }, + }, + ["lvl"] = "34-35", + }, + [4151] = { + ["coords"] = { + [1] = { 77.9, 90.2, 400, 300 }, + [2] = { 77.5, 89.6, 400, 300 }, + [3] = { 79.4, 89.6, 400, 300 }, + [4] = { 78.5, 89.6, 400, 300 }, + [5] = { 78.5, 89, 400, 300 }, + [6] = { 79.5, 88.9, 400, 300 }, + [7] = { 79.7, 88.2, 400, 300 }, + [8] = { 77.5, 88, 400, 300 }, + [9] = { 76.4, 87.9, 400, 300 }, + [10] = { 79.9, 87.1, 400, 300 }, + [11] = { 78.8, 86.9, 400, 300 }, + [12] = { 78.3, 86.5, 400, 300 }, + [13] = { 77.7, 86, 400, 300 }, + [14] = { 79.4, 85.7, 400, 300 }, + [15] = { 76.9, 84.7, 400, 300 }, + [16] = { 72.5, 80.1, 400, 300 }, + [17] = { 87, 79.6, 400, 300 }, + [18] = { 69, 77.7, 400, 300 }, + [19] = { 72.4, 77.2, 400, 300 }, + [20] = { 73.8, 76.2, 400, 300 }, + [21] = { 88.3, 74.4, 400, 300 }, + [22] = { 86.7, 72, 400, 300 }, + [23] = { 80, 70.5, 400, 300 }, + [24] = { 76.1, 69.7, 400, 300 }, + [25] = { 83.7, 69.4, 400, 300 }, + [26] = { 79.3, 67.6, 400, 300 }, + [27] = { 77.8, 67.3, 400, 300 }, + [28] = { 75.4, 66.3, 400, 300 }, + [29] = { 83.5, 65.1, 400, 300 }, + [30] = { 76.9, 64.7, 400, 300 }, + [31] = { 86.7, 63.1, 400, 300 }, + [32] = { 83.2, 62.1, 400, 300 }, + [33] = { 86.4, 60.1, 400, 300 }, + [34] = { 85.9, 58.5, 400, 300 }, + [35] = { 79.4, 56, 400, 300 }, + [36] = { 80.6, 55.3, 400, 300 }, + [37] = { 80, 51.7, 400, 300 }, + }, + ["lvl"] = "32-33", + }, + [4153] = "_", + [4154] = { + ["coords"] = { + [1] = { 71.2, 90, 400, 300 }, + [2] = { 75.7, 88.4, 400, 300 }, + [3] = { 78.1, 86.1, 400, 300 }, + [4] = { 78.3, 86, 400, 300 }, + [5] = { 83.9, 82.8, 400, 300 }, + [6] = { 84.1, 81.9, 400, 300 }, + [7] = { 84.5, 81.7, 400, 300 }, + [8] = { 82.9, 80, 400, 300 }, + [9] = { 69.1, 77, 400, 300 }, + [10] = { 71.6, 73.3, 400, 300 }, + [11] = { 71.9, 73.2, 400, 300 }, + [12] = { 70.4, 69, 400, 300 }, + [13] = { 88.2, 66.1, 400, 300 }, + [14] = { 87.8, 65.8, 400, 300 }, + [15] = { 87.4, 65.6, 400, 300 }, + [16] = { 87.9, 65.3, 400, 300 }, + [17] = { 87.4, 64.9, 400, 300 }, + [18] = { 80.7, 59.5, 400, 300 }, + [19] = { 73.7, 58.9, 400, 300 }, + }, + ["lvl"] = "30-32", + }, + [4157] = "_", + [4158] = { + ["coords"] = { + [1] = { 78, 89.8, 400, 300 }, + [2] = { 71, 75.3, 400, 300 }, + [3] = { 84.2, 70.7, 400, 300 }, + }, + ["lvl"] = "32-34", + }, + [4163] = { + ["coords"] = { + [1] = { 24.9, 51.5, 141, 30 }, + [2] = { 37, 21.9, 1657, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [4166] = { + ["coords"] = { + [1] = { 44.6, 63, 17, 413 }, + [2] = { 44.6, 62.9, 17, 413 }, + [3] = { 44.7, 62.9, 17, 413 }, + [4] = { 44.7, 62.8, 17, 413 }, + [5] = { 44.5, 62.7, 17, 413 }, + [6] = { 48.4, 57.9, 17, 413 }, + [7] = { 48.1, 57.3, 17, 413 }, + [8] = { 47.9, 57.3, 17, 413 }, + [9] = { 48, 57.2, 17, 413 }, + [10] = { 47.9, 57.1, 17, 413 }, + [11] = { 44.6, 47.2, 17, 413 }, + [12] = { 44.5, 47.1, 17, 413 }, + [13] = { 44.6, 47.1, 17, 413 }, + [14] = { 44.5, 47, 17, 413 }, + [15] = { 44.5, 46.8, 17, 413 }, + [16] = { 47.4, 43.3, 17, 413 }, + [17] = { 47.3, 43.3, 17, 413 }, + [18] = { 47.4, 43.2, 17, 413 }, + [19] = { 47.3, 43.2, 17, 413 }, + [20] = { 47.3, 43.1, 17, 413 }, + [21] = { 52.4, 37.9, 17, 413 }, + [22] = { 51.1, 32.4, 17, 413 }, + [23] = { 51.1, 32.3, 17, 413 }, + [24] = { 51, 32.3, 17, 413 }, + [25] = { 51, 32.2, 17, 413 }, + [26] = { 45.6, 31.3, 17, 413 }, + [27] = { 45.7, 31.1, 17, 413 }, + [28] = { 45.8, 31.1, 17, 413 }, + [29] = { 45.8, 31, 17, 413 }, + [30] = { 45.4, 14.5, 17, 413 }, + [31] = { 45.5, 14.4, 17, 413 }, + [32] = { 45.4, 14.3, 17, 413 }, + [33] = { 45.5, 14.2, 17, 413 }, + [34] = { 16.7, 3.7, 718, 413 }, + [35] = { 19.2, 0.9, 718, 413 }, + [36] = { 18.4, 0.5, 718, 413 }, + }, + ["lvl"] = "3", + }, + [4174] = "_", + [4176] = "_", + [4178] = "_", + [4179] = "_", + [4188] = { + ["coords"] = { + [1] = { 40.6, 19, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [4197] = { + ["coords"] = { + [1] = { 71.1, 90.3, 406, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [4198] = { + ["coords"] = { + [1] = { 49, 62.1, 406, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [4200] = { + ["coords"] = { + [1] = { 36.8, 44.3, 148, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "14", + }, + [4201] = { + ["coords"] = { + [1] = { 59.6, 63.9, 406, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "20", + }, + [4202] = { + ["coords"] = { + [1] = { 64, 45.8, 406, 300 }, + }, + ["lvl"] = "27", + }, + [4206] = "_", + [4207] = "_", + [4224] = "_", + [4237] = "_", + [4239] = "_", + [4241] = { + ["coords"] = { + [1] = { 31.9, 56.4, 141, 30 }, + [2] = { 70.7, 45.4, 1657, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [4245] = "_", + [4246] = "_", + [4247] = "_", + [4249] = { + ["coords"] = { + [1] = { 37.9, 91.3, 17, 300 }, + [2] = { 37.8, 91.2, 17, 300 }, + [3] = { 35.8, 87.4, 17, 300 }, + [4] = { 92, 48.1, 357, 300 }, + [5] = { 92.2, 44.7, 357, 300 }, + [6] = { 90.9, 44.5, 357, 300 }, + [7] = { 92.3, 44.2, 357, 300 }, + [8] = { 93.4, 43.7, 357, 300 }, + [9] = { 93, 42.9, 357, 300 }, + [10] = { 92.7, 41.5, 357, 300 }, + [11] = { 90.6, 40.4, 357, 300 }, + [12] = { 66.3, 62.1, 400, 300 }, + [13] = { 68.3, 61.9, 400, 300 }, + [14] = { 64.2, 60.6, 400, 300 }, + [15] = { 62.2, 60.3, 400, 300 }, + [16] = { 58.8, 57.8, 400, 300 }, + [17] = { 67.9, 57.5, 400, 300 }, + [18] = { 60.2, 57.4, 400, 300 }, + [19] = { 63.8, 56.5, 400, 300 }, + [20] = { 60.4, 55.5, 400, 300 }, + [21] = { 53.9, 54.6, 400, 300 }, + [22] = { 59.6, 53.7, 400, 300 }, + [23] = { 64.8, 52.8, 400, 300 }, + [24] = { 65.3, 51.3, 400, 300 }, + [25] = { 67.5, 51.1, 400, 300 }, + [26] = { 66.6, 50.8, 400, 300 }, + [27] = { 64, 50.5, 400, 300 }, + [28] = { 65.8, 49.9, 400, 300 }, + [29] = { 58.7, 49.2, 400, 300 }, + [30] = { 64.9, 48.7, 400, 300 }, + [31] = { 53.2, 46.7, 400, 300 }, + [32] = { 63, 45.9, 400, 300 }, + [33] = { 21.7, 34.2, 400, 300 }, + [34] = { 18.8, 33.9, 400, 300 }, + [35] = { 20.1, 33.3, 400, 300 }, + [36] = { 15.7, 30.8, 400, 300 }, + [37] = { 12.2, 25.8, 400, 300 }, + [38] = { 11.8, 21.5, 400, 300 }, + [39] = { 17.9, 20, 400, 300 }, + [40] = { 17.7, 19.9, 400, 300 }, + [41] = { 12.2, 16, 400, 300 }, + [42] = { 10.1, 15.7, 400, 300 }, + [43] = { 12.2, 15.3, 400, 300 }, + [44] = { 14, 14.4, 400, 300 }, + [45] = { 13.3, 13.1, 400, 300 }, + [46] = { 12.9, 11, 400, 300 }, + [47] = { 9.6, 9.3, 400, 300 }, + }, + ["lvl"] = "28-29", + }, + [4255] = { + ["coords"] = { + [1] = { 43, 17.6, 2597, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [4256] = { + ["coords"] = { + [1] = { 51.5, 26.3, 1537, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [4257] = { + ["coords"] = { + [1] = { 43.4, 15.6, 2597, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [4260] = { + ["coords"] = { + [1] = { 43.9, 23.2, 33, 300 }, + [2] = { 45.8, 23.1, 33, 300 }, + [3] = { 46.4, 19.9, 33, 300 }, + }, + ["lvl"] = "37", + }, + [4262] = { + ["coords"] = { + [1] = { 58.2, 94.1, 141, 300 }, + [2] = { 58.2, 93.9, 141, 300 }, + [3] = { 58.2, 93.7, 141, 300 }, + [4] = { 55.3, 92.6, 141, 300 }, + [5] = { 56.2, 92.2, 141, 300 }, + [6] = { 56, 89.9, 141, 300 }, + [7] = { 55.8, 89.8, 141, 300 }, + [8] = { 56, 89.7, 141, 300 }, + [9] = { 56.2, 89.3, 141, 300 }, + [10] = { 55.7, 89.1, 141, 300 }, + [11] = { 25.7, 66, 141, 300 }, + [12] = { 25.5, 66, 141, 300 }, + [13] = { 25.6, 66, 141, 300 }, + [14] = { 25.6, 65.9, 141, 300 }, + [15] = { 24.5, 65.2, 141, 300 }, + [16] = { 26.2, 65.1, 141, 300 }, + [17] = { 24.5, 64.4, 141, 300 }, + [18] = { 26.2, 64.4, 141, 300 }, + [19] = { 24, 64.2, 141, 300 }, + [20] = { 26.7, 64.1, 141, 300 }, + [21] = { 25.2, 63.8, 141, 300 }, + [22] = { 25.5, 63.8, 141, 300 }, + [23] = { 25.1, 63.6, 141, 300 }, + [24] = { 25.6, 63.6, 141, 300 }, + [25] = { 25.2, 62.8, 141, 300 }, + [26] = { 25.5, 62.8, 141, 300 }, + [27] = { 30.2, 56.8, 141, 300 }, + [28] = { 30, 56.8, 141, 300 }, + [29] = { 25.7, 56, 141, 300 }, + [30] = { 25.8, 55.8, 141, 300 }, + [31] = { 23.6, 55.7, 141, 300 }, + [32] = { 30.3, 55.5, 141, 300 }, + [33] = { 23.5, 55.4, 141, 300 }, + [34] = { 30.3, 55.2, 141, 300 }, + [35] = { 36.1, 54.5, 141, 300 }, + [36] = { 36.6, 54.3, 141, 300 }, + [37] = { 36.1, 54.2, 141, 300 }, + [38] = { 30.1, 53.9, 141, 300 }, + [39] = { 30, 53.9, 141, 300 }, + [40] = { 40.7, 91.9, 1657, 300 }, + [41] = { 39.9, 91.8, 1657, 300 }, + [42] = { 40.5, 91.6, 1657, 300 }, + [43] = { 40.3, 91.2, 1657, 300 }, + [44] = { 35.3, 87.9, 1657, 300 }, + [45] = { 43.2, 87.4, 1657, 300 }, + [46] = { 35.2, 84.2, 1657, 300 }, + [47] = { 43.2, 83.8, 1657, 300 }, + [48] = { 32.7, 83, 1657, 300 }, + [49] = { 45.7, 82.5, 1657, 300 }, + [50] = { 38.2, 81.3, 1657, 300 }, + [51] = { 40, 81.2, 1657, 300 }, + [52] = { 37.9, 80.1, 1657, 300 }, + [53] = { 40.2, 80, 1657, 300 }, + [54] = { 38.4, 76.2, 1657, 300 }, + [55] = { 39.7, 76.1, 1657, 300 }, + [56] = { 62.5, 47.6, 1657, 300 }, + [57] = { 61.6, 47.5, 1657, 300 }, + [58] = { 41.1, 43.5, 1657, 300 }, + [59] = { 41.2, 42.6, 1657, 300 }, + [60] = { 30.5, 42, 1657, 300 }, + [61] = { 62.9, 41.2, 1657, 300 }, + [62] = { 30.5, 40.7, 1657, 300 }, + [63] = { 62.9, 39.9, 1657, 300 }, + [64] = { 90.7, 36.6, 1657, 300 }, + [65] = { 93.1, 35.3, 1657, 300 }, + [66] = { 90.8, 34.9, 1657, 300 }, + [67] = { 62.3, 33.6, 1657, 300 }, + [68] = { 61.3, 33.6, 1657, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [4267] = { + ["coords"] = { + [1] = { 34.4, 48, 331, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [4269] = { + ["coords"] = { + [1] = { 32.2, 48.7, 10, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [4274] = { + ["coords"] = { + [1] = { 70.2, 29.4, 209, 604800 }, + }, + ["lvl"] = "25", + ["rnk"] = "1", + }, + [4275] = { + ["coords"] = { + [1] = { 74.4, 6.2, 209, 604800 }, + [2] = { 69.9, 30, 209, 0 }, + }, + ["lvl"] = "26", + ["rnk"] = "1", + }, + [4276] = { + ["coords"] = { + [1] = { 70, 61.8, 406, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "20", + }, + [4278] = { + ["coords"] = { + [1] = { 46.3, 63.6, 209, 604800 }, + }, + ["lvl"] = "24", + ["rnk"] = "1", + }, + [4279] = { + ["coords"] = { + [1] = { 76.1, 69.2, 209, 604800 }, + }, + ["lvl"] = "24", + ["rnk"] = "1", + }, + [4280] = { + ["coords"] = { + [1] = { 27.9, 22.3, 28, 300 }, + [2] = { 28.2, 21.4, 28, 300 }, + [3] = { 27.8, 20.5, 28, 300 }, + [4] = { 29.2, 20.2, 28, 300 }, + [5] = { 83, 37.3, 85, 300 }, + [6] = { 82.3, 37.1, 85, 300 }, + [7] = { 84.5, 36.9, 85, 300 }, + [8] = { 83.8, 36.8, 85, 300 }, + [9] = { 82.2, 36.1, 85, 300 }, + [10] = { 84.8, 36, 85, 300 }, + [11] = { 83.8, 35.7, 85, 300 }, + [12] = { 82.2, 35.1, 85, 300 }, + [13] = { 84.3, 35.1, 85, 300 }, + [14] = { 83.6, 34.9, 85, 300 }, + [15] = { 85.7, 34.8, 85, 300 }, + [16] = { 84.4, 34.6, 85, 300 }, + [17] = { 84.5, 34, 85, 300 }, + [18] = { 82.2, 33.9, 85, 300 }, + [19] = { 83.7, 33.8, 85, 300 }, + [20] = { 81.4, 33.7, 85, 300 }, + [21] = { 82.9, 33.5, 85, 300 }, + [22] = { 81.6, 32.4, 85, 300 }, + [23] = { 82.1, 31.7, 85, 300 }, + [24] = { 82.9, 30.9, 85, 300 }, + [25] = { 83.9, 30.7, 85, 300 }, + [26] = { 81.5, 30.3, 85, 300 }, + [27] = { 84, 30.2, 85, 300 }, + [28] = { 81.5, 29.5, 85, 300 }, + [29] = { 82.2, 29.5, 85, 300 }, + [30] = { 81.1, 29.5, 85, 300 }, + [31] = { 83.7, 29.4, 85, 300 }, + [32] = { 80.9, 29.4, 85, 300 }, + [33] = { 83.1, 29.3, 85, 300 }, + [34] = { 83.7, 28.7, 85, 300 }, + [35] = { 82.9, 28.5, 85, 300 }, + [36] = { 11.3, 97.3, 796, 300 }, + [37] = { 43.2, 95.3, 796, 300 }, + [38] = { 26, 88.2, 796, 300 }, + [39] = { 8.2, 48.6, 796, 300 }, + [40] = { 25.7, 29.4, 796, 300 }, + [41] = { 49.1, 25.9, 796, 300 }, + [42] = { 49.5, 15.1, 796, 300 }, + }, + ["lvl"] = "29-30", + ["rnk"] = "1", + }, + [4281] = { + ["coords"] = { + [1] = { 27.9, 22.3, 28, 300 }, + [2] = { 28.2, 21.4, 28, 300 }, + [3] = { 27.8, 20.5, 28, 300 }, + [4] = { 29.2, 20.2, 28, 300 }, + [5] = { 83, 37.3, 85, 300 }, + [6] = { 82.3, 37.1, 85, 300 }, + [7] = { 84.5, 36.9, 85, 300 }, + [8] = { 83.8, 36.8, 85, 300 }, + [9] = { 82.2, 36.1, 85, 300 }, + [10] = { 84.8, 36, 85, 300 }, + [11] = { 83.8, 35.7, 85, 300 }, + [12] = { 82.2, 35.1, 85, 300 }, + [13] = { 84.3, 35.1, 85, 300 }, + [14] = { 83.6, 34.9, 85, 300 }, + [15] = { 85.7, 34.8, 85, 300 }, + [16] = { 84.4, 34.6, 85, 300 }, + [17] = { 84.5, 34, 85, 300 }, + [18] = { 82.2, 33.9, 85, 300 }, + [19] = { 83.7, 33.8, 85, 300 }, + [20] = { 81.4, 33.7, 85, 300 }, + [21] = { 82.9, 33.5, 85, 300 }, + [22] = { 81.6, 32.4, 85, 300 }, + [23] = { 82.1, 31.7, 85, 300 }, + [24] = { 82.9, 30.9, 85, 300 }, + [25] = { 83.9, 30.7, 85, 300 }, + [26] = { 81.5, 30.3, 85, 300 }, + [27] = { 84, 30.2, 85, 300 }, + [28] = { 81.5, 29.5, 85, 300 }, + [29] = { 82.2, 29.5, 85, 300 }, + [30] = { 81.1, 29.5, 85, 300 }, + [31] = { 83.7, 29.4, 85, 300 }, + [32] = { 80.9, 29.4, 85, 300 }, + [33] = { 83.1, 29.3, 85, 300 }, + [34] = { 83.7, 28.7, 85, 300 }, + [35] = { 82.9, 28.5, 85, 300 }, + [36] = { 11.3, 97.3, 796, 300 }, + [37] = { 43.2, 95.3, 796, 300 }, + [38] = { 26, 88.2, 796, 300 }, + [39] = { 8.2, 48.6, 796, 300 }, + [40] = { 25.7, 29.4, 796, 300 }, + [41] = { 49.1, 25.9, 796, 300 }, + [42] = { 49.5, 15.1, 796, 300 }, + }, + ["lvl"] = "29-30", + ["rnk"] = "1", + }, + [4282] = { + ["coords"] = { + [1] = { 27.9, 22.3, 28, 300 }, + [2] = { 28.2, 21.4, 28, 300 }, + [3] = { 27.8, 20.5, 28, 300 }, + [4] = { 29.2, 20.2, 28, 300 }, + [5] = { 83, 37.3, 85, 300 }, + [6] = { 82.3, 37.1, 85, 300 }, + [7] = { 84.5, 36.9, 85, 300 }, + [8] = { 83.8, 36.8, 85, 300 }, + [9] = { 82.2, 36.1, 85, 300 }, + [10] = { 84.8, 36, 85, 300 }, + [11] = { 83.8, 35.7, 85, 300 }, + [12] = { 82.2, 35.1, 85, 300 }, + [13] = { 84.3, 35.1, 85, 300 }, + [14] = { 83.6, 34.9, 85, 300 }, + [15] = { 85.7, 34.8, 85, 300 }, + [16] = { 84.4, 34.6, 85, 300 }, + [17] = { 84.5, 34, 85, 300 }, + [18] = { 82.2, 33.9, 85, 300 }, + [19] = { 83.7, 33.8, 85, 300 }, + [20] = { 81.4, 33.7, 85, 300 }, + [21] = { 82.9, 33.5, 85, 300 }, + [22] = { 81.6, 32.4, 85, 300 }, + [23] = { 82.1, 31.7, 85, 300 }, + [24] = { 82.9, 30.9, 85, 300 }, + [25] = { 83.9, 30.7, 85, 300 }, + [26] = { 81.5, 30.3, 85, 300 }, + [27] = { 84, 30.2, 85, 300 }, + [28] = { 81.5, 29.5, 85, 300 }, + [29] = { 82.2, 29.5, 85, 300 }, + [30] = { 81.1, 29.5, 85, 300 }, + [31] = { 83.7, 29.4, 85, 300 }, + [32] = { 80.9, 29.4, 85, 300 }, + [33] = { 83.1, 29.3, 85, 300 }, + [34] = { 83.7, 28.7, 85, 300 }, + [35] = { 82.9, 28.5, 85, 300 }, + [36] = { 11.3, 97.3, 796, 300 }, + [37] = { 43.2, 95.3, 796, 300 }, + [38] = { 26, 88.2, 796, 300 }, + [39] = { 8.2, 48.6, 796, 300 }, + [40] = { 25.7, 29.4, 796, 300 }, + [41] = { 49.1, 25.9, 796, 300 }, + [42] = { 49.5, 15.1, 796, 300 }, + }, + ["lvl"] = "29-30", + ["rnk"] = "1", + }, + [4283] = { + ["coords"] = { + [1] = { 84.3, 32.7, 85, 300 }, + [2] = { 84.8, 32.4, 85, 300 }, + [3] = { 84.5, 32.1, 85, 300 }, + [4] = { 84, 31.6, 85, 300 }, + [5] = { 83.9, 31.3, 85, 300 }, + [6] = { 56.6, 70.2, 796, 300 }, + [7] = { 68.7, 62.8, 796, 300 }, + [8] = { 62.4, 57.8, 796, 300 }, + [9] = { 50.5, 46.5, 796, 300 }, + [10] = { 47.7, 38.7, 796, 300 }, + [11] = { 76.6, 70.2, 5136, 18000 }, + [12] = { 74.9, 64.5, 5136, 18000 }, + [13] = { 72.3, 54, 5136, 18000 }, + [14] = { 71.8, 54, 5136, 18000 }, + [15] = { 69.6, 45.6, 5136, 18000 }, + [16] = { 70.2, 45.3, 5136, 18000 }, + [17] = { 74, 45.3, 5136, 18000 }, + }, + ["lvl"] = "30-31", + ["rnk"] = "1", + }, + [4284] = { + ["coords"] = { + [1] = { 83.9, 32.7, 85, 300 }, + [2] = { 83.6, 31.8, 85, 300 }, + [3] = { 47, 69.6, 796, 300 }, + [4] = { 41.1, 50.3, 796, 300 }, + }, + ["lvl"] = "30-31", + ["rnk"] = "1", + }, + [4285] = { + ["coords"] = { + [1] = { 28.5, 16.5, 28, 300 }, + [2] = { 83.8, 32.5, 85, 300 }, + [3] = { 83.6, 31.9, 85, 300 }, + [4] = { 85, 31.3, 85, 300 }, + [5] = { 46, 66.4, 796, 300 }, + [6] = { 42.1, 53.2, 796, 300 }, + [7] = { 73.5, 39.3, 796, 300 }, + }, + ["lvl"] = "30-31", + ["rnk"] = "1", + }, + [4286] = { + ["coords"] = { + [1] = { 63.9, 92.7, 5153, 18000 }, + [2] = { 62.7, 92.7, 5153, 18000 }, + [3] = { 70.7, 90, 5153, 18000 }, + [4] = { 70.3, 89.4, 5153, 18000 }, + [5] = { 66.3, 87.9, 5153, 18000 }, + [6] = { 63.2, 83.2, 5153, 18000 }, + [7] = { 64.8, 82.9, 5153, 18000 }, + [8] = { 65, 81, 5153, 18000 }, + [9] = { 68.9, 75.9, 5153, 18000 }, + [10] = { 66.5, 75.5, 5153, 18000 }, + [11] = { 63.5, 73.8, 5153, 18000 }, + [12] = { 70.7, 73.6, 5153, 18000 }, + [13] = { 70, 73.1, 5153, 18000 }, + [14] = { 63.2, 73, 5153, 18000 }, + [15] = { 63.6, 73, 5153, 18000 }, + [16] = { 70.6, 64, 5153, 18000 }, + [17] = { 71.2, 63.2, 5153, 18000 }, + }, + ["lvl"] = "35-36", + ["rnk"] = "1", + }, + [4287] = { + ["coords"] = { + [1] = { 33.3, 71.9, 5135, 18000 }, + [2] = { 38.5, 71, 5135, 18000 }, + [3] = { 47, 62.2, 5135, 18000 }, + [4] = { 39.8, 58.4, 5135, 18000 }, + [5] = { 21, 53, 5135, 18000 }, + [6] = { 44.7, 52.6, 5135, 18000 }, + [7] = { 45.4, 51.5, 5135, 18000 }, + [8] = { 39.1, 50.7, 5135, 18000 }, + [9] = { 33.3, 48.6, 5135, 18000 }, + [10] = { 18.9, 45.3, 5135, 18000 }, + [11] = { 46.9, 44.9, 5135, 18000 }, + [12] = { 38.6, 41.8, 5135, 18000 }, + [13] = { 39.4, 40.6, 5135, 18000 }, + [14] = { 21.1, 39.4, 5135, 18000 }, + [15] = { 46.2, 36.9, 5135, 18000 }, + [16] = { 44.4, 36.7, 5135, 18000 }, + [17] = { 21, 31.2, 5135, 18000 }, + [18] = { 22.2, 31.1, 5135, 18000 }, + [19] = { 22.3, 18.5, 5135, 18000 }, + [20] = { 22.3, 16.9, 5135, 18000 }, + }, + ["lvl"] = "33-34", + ["rnk"] = "1", + }, + [4288] = { + ["coords"] = { + [1] = { 32.8, 65.7, 5135, 18000 }, + [2] = { 34.8, 59, 5135, 18000 }, + [3] = { 30.2, 55.4, 5135, 18000 }, + [4] = { 22.1, 49.7, 5135, 18000 }, + }, + ["lvl"] = "34-35", + ["rnk"] = "1", + }, + [4289] = { + ["coords"] = { + [1] = { 67.4, 71.5, 5153, 18000 }, + [2] = { 77.8, 50.4, 5153, 18000 }, + [3] = { 63.8, 40.5, 5153, 300 }, + [4] = { 77.9, 38.9, 5153, 18000 }, + [5] = { 68.4, 20.6, 5153, 18000 }, + }, + ["lvl"] = "36-37", + ["rnk"] = "1", + }, + [4290] = { + ["coords"] = { + [1] = { 74.7, 64.1, 5153, 18000 }, + [2] = { 75.4, 57.7, 5153, 18000 }, + [3] = { 70.3, 57, 5153, 18000 }, + [4] = { 78.5, 50.1, 5153, 18000 }, + [5] = { 74.2, 49.6, 5153, 18000 }, + [6] = { 63.6, 44.3, 5153, 300 }, + [7] = { 78.2, 38.2, 5153, 18000 }, + [8] = { 65, 35.1, 5153, 300 }, + [9] = { 79.7, 20.8, 5153, 18000 }, + }, + ["lvl"] = "36-37", + ["rnk"] = "1", + }, + [4291] = { + ["coords"] = { + [1] = { 87.5, 59.6, 5135, 18000 }, + [2] = { 78.5, 58.7, 5135, 18000 }, + [3] = { 51.4, 44.8, 5135, 18000 }, + [4] = { 80, 42.6, 5135, 18000 }, + [5] = { 84.5, 35.4, 5135, 18000 }, + [6] = { 82.2, 35.3, 5135, 18000 }, + [7] = { 51.1, 35.2, 5135, 18000 }, + [8] = { 54, 27.8, 5135, 18000 }, + [9] = { 84.5, 25.4, 5135, 18000 }, + [10] = { 63.9, 25.3, 5135, 18000 }, + [11] = { 53.2, 25, 5135, 18000 }, + [12] = { 70.2, 20.7, 5135, 18000 }, + [13] = { 44, 18.5, 5135, 18000 }, + [14] = { 85.4, 17.5, 5135, 18000 }, + [15] = { 77.4, 14, 5135, 18000 }, + [16] = { 64.8, 12.9, 5135, 18000 }, + }, + ["lvl"] = "34-35", + ["rnk"] = "1", + }, + [4292] = { + ["coords"] = { + [1] = { 71.3, 64.1, 5153, 18000 }, + [2] = { 75.4, 63, 5153, 18000 }, + [3] = { 67.2, 62.6, 5153, 18000 }, + [4] = { 67.8, 61.8, 5153, 18000 }, + [5] = { 74.9, 56.9, 5153, 18000 }, + [6] = { 75.3, 56.3, 5153, 18000 }, + [7] = { 70.4, 55.6, 5153, 18000 }, + [8] = { 78, 51.5, 5153, 18000 }, + [9] = { 73.7, 50.7, 5153, 18000 }, + [10] = { 61.2, 40.1, 5153, 18000 }, + [11] = { 69, 38.9, 5153, 18000 }, + [12] = { 60.5, 36.8, 5153, 18000 }, + [13] = { 75.2, 32, 5153, 18000 }, + [14] = { 71, 25.2, 5153, 18000 }, + }, + ["lvl"] = "36-37", + ["rnk"] = "1", + }, + [4293] = { + ["coords"] = { + [1] = { 68, 66.5, 5136, 18000 }, + [2] = { 68.1, 65.6, 5136, 18000 }, + [3] = { 72.1, 65.5, 5136, 18000 }, + [4] = { 72.5, 59.5, 5136, 18000 }, + [5] = { 68, 57.4, 5136, 18000 }, + [6] = { 64.1, 53.9, 5136, 18000 }, + [7] = { 64.8, 53.8, 5136, 18000 }, + [8] = { 72.8, 50.2, 5136, 18000 }, + [9] = { 76.4, 44.7, 5136, 18000 }, + [10] = { 65.3, 41.1, 5136, 18000 }, + [11] = { 65.3, 40.4, 5136, 18000 }, + [12] = { 69.7, 38, 5136, 18000 }, + [13] = { 72.4, 37.4, 5136, 18000 }, + [14] = { 67.9, 36.7, 5136, 18000 }, + [15] = { 77, 36.1, 5136, 18000 }, + }, + ["lvl"] = "30-31", + ["rnk"] = "1", + }, + [4294] = { + ["coords"] = { + [1] = { 52.6, 83.5, 5163, 18000 }, + [2] = { 44, 83.4, 5163, 18000 }, + [3] = { 54.6, 75.5, 5163, 18000 }, + [4] = { 54.5, 74.7, 5163, 18000 }, + [5] = { 54.5, 68.4, 5163, 18000 }, + [6] = { 40.9, 62.6, 5163, 18000 }, + [7] = { 43.7, 56.6, 5163, 18000 }, + [8] = { 41.3, 50.9, 5163, 18000 }, + }, + ["lvl"] = "37-38", + ["rnk"] = "1", + }, + [4295] = { + ["coords"] = { + [1] = { 63.3, 43.9, 5153, 18000 }, + [2] = { 61.7, 40.2, 5153, 18000 }, + [3] = { 71.1, 39.5, 5153, 18000 }, + [4] = { 74.9, 39.3, 5153, 18000 }, + [5] = { 71.1, 38.5, 5153, 18000 }, + [6] = { 60.3, 37.6, 5153, 18000 }, + [7] = { 74.1, 37.5, 5153, 18000 }, + [8] = { 70.6, 33, 5153, 18000 }, + [9] = { 67.4, 27.7, 5153, 18000 }, + [10] = { 67.9, 27.1, 5153, 18000 }, + [11] = { 67.3, 26.6, 5153, 18000 }, + [12] = { 74.8, 25.5, 5153, 18000 }, + [13] = { 71.6, 24.8, 5153, 18000 }, + [14] = { 77.1, 21.7, 5153, 18000 }, + [15] = { 72.6, 20.3, 5153, 18000 }, + [16] = { 79.6, 19.9, 5153, 18000 }, + [17] = { 48.1, 87, 5163, 18000 }, + [18] = { 59.9, 86.3, 5163, 18000 }, + [19] = { 52, 83.5, 5163, 18000 }, + [20] = { 46, 83.5, 5163, 18000 }, + [21] = { 43.6, 82.4, 5163, 18000 }, + [22] = { 43.6, 74.6, 5163, 18000 }, + [23] = { 54.5, 69.3, 5163, 18000 }, + [24] = { 43.6, 69, 5163, 18000 }, + [25] = { 57, 62.9, 5163, 18000 }, + [26] = { 57, 57, 5163, 18000 }, + [27] = { 56.8, 56.4, 5163, 18000 }, + [28] = { 48.9, 51.2, 5163, 18000 }, + [29] = { 56.8, 51.1, 5163, 18000 }, + [30] = { 57.1, 50, 5163, 18000 }, + }, + ["lvl"] = "37-38", + ["rnk"] = "1", + }, + [4296] = { + ["coords"] = { + [1] = { 20.1, 53.7, 5135, 18000 }, + [2] = { 21.8, 49.8, 5135, 18000 }, + [3] = { 20.1, 40.4, 5135, 18000 }, + [4] = { 38.7, 39.3, 5135, 18000 }, + }, + ["lvl"] = "33-34", + ["rnk"] = "1", + }, + [4297] = { + ["coords"] = { + [1] = { 70.7, 89.2, 5153, 18000 }, + }, + ["lvl"] = "35-36", + ["rnk"] = "1", + }, + [4298] = { + ["coords"] = { + [1] = { 61.5, 41, 5153, 18000 }, + [2] = { 65.7, 39.8, 5153, 18000 }, + [3] = { 78.4, 39.3, 5153, 18000 }, + [4] = { 73.8, 39.2, 5153, 18000 }, + [5] = { 70.4, 38.6, 5153, 18000 }, + [6] = { 65.7, 37.9, 5153, 18000 }, + [7] = { 60, 36.9, 5153, 18000 }, + [8] = { 57.7, 34.1, 5153, 18000 }, + [9] = { 75.3, 33.3, 5153, 18000 }, + [10] = { 71.5, 31.6, 5153, 18000 }, + [11] = { 70.8, 31.4, 5153, 18000 }, + [12] = { 70.7, 28.2, 5153, 18000 }, + [13] = { 70, 28, 5153, 18000 }, + [14] = { 75.5, 26.8, 5153, 18000 }, + [15] = { 80.1, 20.1, 5153, 18000 }, + [16] = { 72.1, 20.1, 5153, 18000 }, + [17] = { 72.1, 19, 5153, 18000 }, + [18] = { 67.5, 18.9, 5153, 18000 }, + [19] = { 54.7, 88.7, 5163, 18000 }, + [20] = { 48.1, 88.1, 5163, 18000 }, + [21] = { 54.7, 86.3, 5163, 18000 }, + [22] = { 54.5, 83.4, 5163, 18000 }, + [23] = { 45.8, 79.5, 5163, 18000 }, + [24] = { 43.6, 68.1, 5163, 18000 }, + [25] = { 41.2, 63, 5163, 18000 }, + [26] = { 43.6, 61.9, 5163, 18000 }, + [27] = { 46.2, 52.4, 5163, 18000 }, + [28] = { 54.1, 50.9, 5163, 18000 }, + }, + ["lvl"] = "37-38", + ["rnk"] = "1", + }, + [4299] = { + ["coords"] = { + [1] = { 88.3, 59.6, 5135, 18000 }, + [2] = { 53.1, 44.7, 5135, 18000 }, + [3] = { 43.6, 31.2, 5135, 18000 }, + [4] = { 44.4, 28.3, 5135, 18000 }, + [5] = { 75.8, 25.1, 5135, 18000 }, + [6] = { 67.7, 19.8, 5135, 18000 }, + [7] = { 52.7, 16.3, 5135, 18000 }, + [8] = { 66, 13.9, 5135, 18000 }, + [9] = { 52.1, 43.2, 5163, 18000 }, + [10] = { 46.5, 43.1, 5163, 18000 }, + [11] = { 52.2, 43, 5163, 18000 }, + [12] = { 41, 30.6, 5163, 18000 }, + [13] = { 40.8, 26, 5163, 18000 }, + }, + ["lvl"] = "34-36", + ["rnk"] = "1", + }, + [4300] = { + ["coords"] = { + [1] = { 43.6, 80.5, 5163, 18000 }, + [2] = { 52.4, 71.2, 5163, 18000 }, + [3] = { 45.6, 70.9, 5163, 18000 }, + [4] = { 41.1, 56.2, 5163, 18000 }, + [5] = { 54.3, 55.4, 5163, 18000 }, + [6] = { 46.4, 42.3, 5163, 18000 }, + [7] = { 51.7, 35.9, 5163, 18000 }, + [8] = { 52.1, 33.7, 5163, 18000 }, + [9] = { 40.5, 31.1, 5163, 18000 }, + [10] = { 41.6, 30.9, 5163, 18000 }, + [11] = { 57.2, 30.6, 5163, 18000 }, + }, + ["lvl"] = "38-39", + ["rnk"] = "1", + }, + [4301] = { + ["coords"] = { + [1] = { 49, 79.4, 5163, 18000 }, + [2] = { 52, 79.3, 5163, 18000 }, + [3] = { 52.1, 75.9, 5163, 18000 }, + [4] = { 46.9, 67.6, 5163, 18000 }, + [5] = { 56.8, 62.3, 5163, 18000 }, + [6] = { 54.3, 61.5, 5163, 18000 }, + [7] = { 41.1, 56.8, 5163, 18000 }, + [8] = { 52, 52.4, 5163, 18000 }, + [9] = { 43.8, 50.9, 5163, 18000 }, + [10] = { 40.9, 50.2, 5163, 18000 }, + [11] = { 51.4, 46.5, 5163, 18000 }, + [12] = { 46.6, 46.5, 5163, 18000 }, + [13] = { 50.7, 46.3, 5163, 18000 }, + [14] = { 47.4, 46.2, 5163, 18000 }, + [15] = { 45.2, 42.6, 5163, 18000 }, + [16] = { 52.9, 42.6, 5163, 18000 }, + [17] = { 45.2, 38.7, 5163, 18000 }, + [18] = { 52.8, 38.7, 5163, 18000 }, + [19] = { 45.3, 34.7, 5163, 18000 }, + [20] = { 52.9, 34.7, 5163, 18000 }, + [21] = { 58, 29.9, 5163, 18000 }, + [22] = { 40, 29.8, 5163, 18000 }, + }, + ["lvl"] = "38-39", + ["rnk"] = "1", + }, + [4302] = { + ["coords"] = { + [1] = { 49.9, 39.9, 5163, 18000 }, + [2] = { 46.2, 37.8, 5163, 18000 }, + [3] = { 51.9, 37.2, 5163, 18000 }, + [4] = { 48.4, 34.6, 5163, 18000 }, + [5] = { 46.2, 33.6, 5163, 18000 }, + [6] = { 49.9, 32, 5163, 18000 }, + [7] = { 57.6, 31.3, 5163, 18000 }, + [8] = { 57, 29.7, 5163, 18000 }, + [9] = { 43.5, 25.8, 5163, 18000 }, + }, + ["lvl"] = "39-40", + ["rnk"] = "1", + }, + [4303] = { + ["coords"] = { + [1] = { 48.2, 40, 5163, 18000 }, + [2] = { 49.6, 37.3, 5163, 18000 }, + [3] = { 48.4, 37.2, 5163, 18000 }, + [4] = { 49.6, 34.7, 5163, 18000 }, + [5] = { 48.2, 32, 5163, 18000 }, + }, + ["lvl"] = "39-40", + ["rnk"] = "1", + }, + [4304] = { + ["coords"] = { + [1] = { 29.8, 87.3, 5135, 604800 }, + [2] = { 30, 86.3, 5135, 604800 }, + [3] = { 31, 86, 5135, 604800 }, + [4] = { 33.3, 65.2, 5135, 18000 }, + [5] = { 35.4, 58.1, 5135, 18000 }, + [6] = { 29.9, 56.4, 5135, 18000 }, + [7] = { 21.3, 49.8, 5135, 18000 }, + }, + ["lvl"] = "33-34", + ["rnk"] = "1", + }, + [4306] = { + ["coords"] = { + [1] = { 71.7, 67.4, 5136, 18000 }, + [2] = { 71.3, 66.8, 5136, 18000 }, + [3] = { 68.2, 66.4, 5136, 18000 }, + [4] = { 67.9, 65.8, 5136, 18000 }, + [5] = { 68.5, 57.3, 5136, 18000 }, + [6] = { 72.5, 50.5, 5136, 18000 }, + [7] = { 71.2, 49.8, 5136, 18000 }, + [8] = { 76.4, 45.7, 5136, 18000 }, + [9] = { 65.3, 42.8, 5136, 18000 }, + [10] = { 67.9, 41, 5136, 18000 }, + [11] = { 78.7, 40.4, 5136, 18000 }, + [12] = { 70.3, 37.9, 5136, 18000 }, + [13] = { 71.8, 37, 5136, 18000 }, + [14] = { 74.8, 36.2, 5136, 18000 }, + [15] = { 76.1, 35.9, 5136, 18000 }, + [16] = { 67.9, 35.9, 5136, 18000 }, + [17] = { 69.6, 35.6, 5136, 18000 }, + [18] = { 70.2, 35.5, 5136, 18000 }, + [19] = { 74.8, 35.4, 5136, 18000 }, + [20] = { 68, 66.5, 5136, 18000 }, + [21] = { 68.1, 65.6, 5136, 18000 }, + [22] = { 72.1, 65.5, 5136, 18000 }, + [23] = { 72.5, 59.5, 5136, 18000 }, + [24] = { 68, 57.4, 5136, 18000 }, + [25] = { 64.1, 53.9, 5136, 18000 }, + [26] = { 64.8, 53.8, 5136, 18000 }, + }, + ["lvl"] = "30-31", + ["rnk"] = "1", + }, + [4308] = { + ["coords"] = { + [1] = { 46, 66.5, 5136, 900 }, + [2] = { 46.7, 66.2, 5136, 900 }, + [3] = { 46.3, 65.3, 5136, 900 }, + [4] = { 41.6, 63.8, 5136, 900 }, + [5] = { 27, 63.6, 5136, 900 }, + [6] = { 25.9, 62.3, 5136, 900 }, + [7] = { 42, 62.2, 5136, 900 }, + [8] = { 26.8, 62.1, 5136, 900 }, + [9] = { 41, 62.1, 5136, 900 }, + [10] = { 27.6, 61.6, 5136, 900 }, + [11] = { 27, 61.3, 5136, 900 }, + [12] = { 49.3, 61.2, 5136, 900 }, + [13] = { 22.3, 61.2, 5136, 900 }, + [14] = { 21.6, 61, 5136, 900 }, + [15] = { 48.4, 60.9, 5136, 900 }, + [16] = { 27.5, 60.4, 5136, 900 }, + [17] = { 22.4, 60.3, 5136, 900 }, + [18] = { 26.1, 60.2, 5136, 900 }, + [19] = { 48.8, 60.1, 5136, 900 }, + [20] = { 26.7, 59.7, 5136, 900 }, + [21] = { 26.1, 59, 5136, 900 }, + [22] = { 51.7, 56.6, 5136, 900 }, + [23] = { 51.8, 56, 5136, 900 }, + [24] = { 51.3, 55.5, 5136, 900 }, + [25] = { 22.1, 54.8, 5136, 900 }, + [26] = { 21.8, 54.7, 5136, 900 }, + [27] = { 21.8, 54.2, 5136, 900 }, + [28] = { 42.8, 52.8, 5136, 900 }, + [29] = { 43.2, 51.9, 5136, 900 }, + [30] = { 43.1, 51, 5136, 900 }, + [31] = { 37, 50.7, 5136, 900 }, + [32] = { 36.4, 50, 5136, 900 }, + [33] = { 37.1, 49.5, 5136, 900 }, + [34] = { 31.3, 45.5, 5136, 900 }, + [35] = { 31.7, 45.1, 5136, 900 }, + [36] = { 26.8, 45, 5136, 900 }, + [37] = { 31.4, 44.7, 5136, 900 }, + [38] = { 26.6, 43.9, 5136, 900 }, + [39] = { 26.4, 43.6, 5136, 900 }, + }, + ["lvl"] = "31-32", + }, + [4312] = { + ["coords"] = { + [1] = { 48.3, 61.7, 406, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [4313] = "_", + [4314] = { + ["coords"] = { + [1] = { 81.7, 81.8, 47, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [4315] = "_", + [4317] = { + ["coords"] = { + [1] = { 45.1, 49.1, 400, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [4318] = "_", + [4319] = { + ["coords"] = { + [1] = { 89.5, 45.9, 357, 120 }, + [2] = { 7.8, 17.9, 400, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [4321] = { + ["coords"] = { + [1] = { 67.5, 51.3, 15, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [4322] = "_", + [4323] = { + ["coords"] = { + [1] = { 45.9, 84.5, 15, 360 }, + [2] = { 46.7, 84.5, 15, 360 }, + [3] = { 45.6, 83.8, 15, 360 }, + [4] = { 46.3, 83.6, 15, 360 }, + [5] = { 47.1, 82.4, 15, 360 }, + [6] = { 46.2, 81.8, 15, 360 }, + [7] = { 44.3, 81.7, 15, 360 }, + [8] = { 46.6, 81.4, 15, 360 }, + [9] = { 43, 80.9, 15, 360 }, + [10] = { 48.2, 80.8, 15, 360 }, + [11] = { 41.9, 80.8, 15, 360 }, + [12] = { 42.5, 80.7, 15, 360 }, + [13] = { 41.7, 79.5, 15, 360 }, + [14] = { 45.1, 78.7, 15, 360 }, + [15] = { 48.6, 78.6, 15, 360 }, + [16] = { 42.2, 78.3, 15, 360 }, + [17] = { 47.2, 77.9, 15, 360 }, + [18] = { 41.1, 77.6, 15, 360 }, + [19] = { 42.2, 76.5, 15, 360 }, + [20] = { 44.9, 76.3, 15, 360 }, + [21] = { 42.4, 76.3, 15, 360 }, + [22] = { 41.2, 75.9, 15, 360 }, + [23] = { 38.6, 75.9, 15, 360 }, + [24] = { 45.2, 75.8, 15, 360 }, + [25] = { 37.9, 75.4, 15, 360 }, + [26] = { 45, 75.2, 15, 360 }, + [27] = { 42.3, 75.1, 15, 360 }, + [28] = { 39.3, 74.4, 15, 360 }, + [29] = { 37.4, 74.3, 15, 360 }, + [30] = { 51.4, 74.2, 15, 360 }, + [31] = { 39.1, 74.2, 15, 360 }, + [32] = { 41, 74.2, 15, 360 }, + [33] = { 44.2, 74.1, 15, 360 }, + [34] = { 41.1, 73.2, 15, 360 }, + [35] = { 39.7, 73.2, 15, 360 }, + [36] = { 45.5, 73.1, 15, 360 }, + [37] = { 39.5, 73, 15, 360 }, + [38] = { 54.8, 73, 15, 360 }, + [39] = { 46.9, 72.5, 15, 360 }, + [40] = { 45.8, 72.1, 15, 360 }, + [41] = { 50.2, 72.1, 15, 360 }, + [42] = { 40.6, 71.1, 15, 360 }, + [43] = { 51.4, 71, 15, 360 }, + [44] = { 54.2, 70.4, 15, 360 }, + [45] = { 39.9, 70.4, 15, 360 }, + [46] = { 56.5, 70.3, 15, 360 }, + [47] = { 41.6, 70.2, 15, 360 }, + [48] = { 47.7, 70.1, 15, 360 }, + [49] = { 49, 70.1, 15, 360 }, + [50] = { 52.7, 70.1, 15, 360 }, + [51] = { 43.6, 70, 15, 360 }, + [52] = { 43, 69.2, 15, 360 }, + [53] = { 50, 69, 15, 360 }, + [54] = { 44.9, 67.5, 15, 360 }, + [55] = { 51.9, 67.5, 15, 360 }, + [56] = { 46, 67.5, 15, 360 }, + [57] = { 49.4, 67.4, 15, 360 }, + [58] = { 47.3, 67.3, 15, 360 }, + [59] = { 48.5, 67, 15, 360 }, + [60] = { 47.5, 66.5, 15, 360 }, + [61] = { 44.1, 66.4, 15, 360 }, + [62] = { 43.7, 66.2, 15, 360 }, + [63] = { 46.7, 65.4, 15, 360 }, + [64] = { 42.1, 65.2, 15, 360 }, + [65] = { 45.8, 65.2, 15, 360 }, + [66] = { 45, 64.5, 15, 360 }, + [67] = { 43.7, 64.4, 15, 360 }, + [68] = { 55.1, 93, 17, 360 }, + [69] = { 54.9, 92.4, 17, 360 }, + }, + ["lvl"] = "41-42", + }, + [4324] = { + ["coords"] = { + [1] = { 55, 84.1, 15, 360 }, + [2] = { 55.7, 83.4, 15, 360 }, + [3] = { 43, 82.1, 15, 360 }, + [4] = { 42.2, 78.9, 15, 360 }, + [5] = { 45.1, 69.7, 15, 360 }, + [6] = { 45.8, 68.4, 15, 360 }, + [7] = { 46.8, 66.5, 15, 360 }, + [8] = { 45.9, 84.5, 15, 360 }, + [9] = { 46.7, 84.5, 15, 360 }, + [10] = { 45.6, 83.8, 15, 360 }, + [11] = { 46.3, 83.6, 15, 360 }, + [12] = { 47.1, 82.4, 15, 360 }, + [13] = { 46.2, 81.8, 15, 360 }, + [14] = { 44.3, 81.7, 15, 360 }, + [15] = { 46.6, 81.4, 15, 360 }, + [16] = { 43, 80.9, 15, 360 }, + [17] = { 48.2, 80.8, 15, 360 }, + [18] = { 41.9, 80.8, 15, 360 }, + [19] = { 42.5, 80.7, 15, 360 }, + [20] = { 41.7, 79.5, 15, 360 }, + [21] = { 48.6, 78.6, 15, 360 }, + [22] = { 42.2, 78.3, 15, 360 }, + [23] = { 47.2, 77.9, 15, 360 }, + [24] = { 41.1, 77.6, 15, 360 }, + [25] = { 42.2, 76.5, 15, 360 }, + [26] = { 44.9, 76.3, 15, 360 }, + [27] = { 42.4, 76.3, 15, 360 }, + [28] = { 41.2, 75.9, 15, 360 }, + [29] = { 38.6, 75.9, 15, 360 }, + [30] = { 45.2, 75.8, 15, 360 }, + [31] = { 37.9, 75.4, 15, 360 }, + [32] = { 45, 75.2, 15, 360 }, + [33] = { 42.3, 75.1, 15, 360 }, + [34] = { 39.3, 74.4, 15, 360 }, + [35] = { 37.4, 74.3, 15, 360 }, + [36] = { 51.4, 74.2, 15, 360 }, + [37] = { 39.1, 74.2, 15, 360 }, + [38] = { 41, 74.2, 15, 360 }, + [39] = { 44.2, 74.1, 15, 360 }, + [40] = { 41.1, 73.2, 15, 360 }, + [41] = { 39.7, 73.2, 15, 360 }, + [42] = { 39.5, 73, 15, 360 }, + [43] = { 54.8, 73, 15, 360 }, + [44] = { 46.9, 72.5, 15, 360 }, + [45] = { 40.6, 71.1, 15, 360 }, + [46] = { 51.4, 71, 15, 360 }, + [47] = { 54.2, 70.4, 15, 360 }, + [48] = { 39.9, 70.4, 15, 360 }, + [49] = { 56.5, 70.3, 15, 360 }, + [50] = { 41.6, 70.2, 15, 360 }, + [51] = { 47.7, 70.1, 15, 360 }, + [52] = { 49, 70.1, 15, 360 }, + [53] = { 52.7, 70.1, 15, 360 }, + [54] = { 43, 69.2, 15, 360 }, + [55] = { 44.9, 67.5, 15, 360 }, + [56] = { 51.9, 67.5, 15, 360 }, + [57] = { 49.4, 67.4, 15, 360 }, + [58] = { 48.5, 67, 15, 360 }, + [59] = { 47.5, 66.5, 15, 360 }, + [60] = { 43.7, 66.2, 15, 360 }, + [61] = { 42.1, 65.2, 15, 360 }, + [62] = { 45.8, 65.2, 15, 360 }, + [63] = { 45, 64.5, 15, 360 }, + [64] = { 55.1, 93, 17, 360 }, + [65] = { 54.9, 92.4, 17, 360 }, + }, + ["lvl"] = "42-43", + }, + [4328] = { + ["coords"] = { + [1] = { 52.2, 84.4, 15, 360 }, + [2] = { 52.6, 84.2, 15, 360 }, + [3] = { 52.1, 83.5, 15, 360 }, + [4] = { 52.4, 83.4, 15, 360 }, + [5] = { 54.7, 83.4, 15, 360 }, + [6] = { 50.2, 83.3, 15, 360 }, + [7] = { 53.4, 83.2, 15, 360 }, + [8] = { 55.9, 82.4, 15, 360 }, + [9] = { 54, 82.3, 15, 360 }, + [10] = { 50.9, 82.3, 15, 360 }, + [11] = { 56.3, 82, 15, 360 }, + [12] = { 55.7, 81.8, 15, 360 }, + [13] = { 51.6, 81.5, 15, 360 }, + [14] = { 50.4, 81.4, 15, 360 }, + [15] = { 56, 81.3, 15, 360 }, + [16] = { 56.7, 79.5, 15, 360 }, + [17] = { 57.8, 79.4, 15, 360 }, + [18] = { 57.3, 78.6, 15, 360 }, + [19] = { 51, 78.5, 15, 360 }, + [20] = { 56.7, 77.7, 15, 360 }, + [21] = { 57.8, 77.6, 15, 360 }, + [22] = { 57.4, 76.7, 15, 360 }, + [23] = { 50.9, 76.6, 15, 360 }, + [24] = { 48.7, 76.4, 15, 360 }, + [25] = { 48.2, 76.3, 15, 360 }, + [26] = { 56.9, 75.7, 15, 360 }, + [27] = { 56.5, 75.7, 15, 360 }, + [28] = { 51.6, 75.7, 15, 360 }, + [29] = { 50.8, 75.7, 15, 360 }, + [30] = { 48.8, 75.6, 15, 360 }, + [31] = { 48.1, 75.2, 15, 360 }, + [32] = { 57, 75.1, 15, 360 }, + [33] = { 56.5, 75.1, 15, 360 }, + [34] = { 52.3, 74.9, 15, 360 }, + [35] = { 54.7, 74.8, 15, 360 }, + [36] = { 51.7, 74.7, 15, 360 }, + [37] = { 48.6, 74.6, 15, 360 }, + [38] = { 48.7, 73.9, 15, 360 }, + [39] = { 56.6, 73.8, 15, 360 }, + [40] = { 47.8, 73.3, 15, 360 }, + [41] = { 48.5, 73.2, 15, 360 }, + [42] = { 53.3, 73, 15, 360 }, + [43] = { 54, 72.7, 15, 360 }, + [44] = { 53.4, 72.1, 15, 360 }, + [45] = { 53.9, 72, 15, 360 }, + [46] = { 36.6, 69.7, 15, 360 }, + [47] = { 37.9, 69.5, 15, 360 }, + [48] = { 36.8, 69.2, 15, 360 }, + [49] = { 37.4, 68.5, 15, 360 }, + [50] = { 37.8, 68.2, 15, 360 }, + [51] = { 37.5, 68, 15, 360 }, + [52] = { 37.8, 67.3, 15, 360 }, + [53] = { 37.2, 67.3, 15, 360 }, + [54] = { 38.3, 67.1, 15, 360 }, + [55] = { 54.5, 90, 17, 360 }, + [56] = { 55.1, 90, 17, 360 }, + [57] = { 54.5, 89.8, 17, 360 }, + [58] = { 54.9, 89.4, 17, 360 }, + [59] = { 55.1, 89.3, 17, 360 }, + [60] = { 54.9, 89.2, 17, 360 }, + [61] = { 55.1, 88.8, 17, 360 }, + [62] = { 54.8, 88.8, 17, 360 }, + [63] = { 55.3, 88.7, 17, 360 }, + }, + ["lvl"] = "43-44", + ["rnk"] = "1", + }, + [4329] = { + ["coords"] = { + [1] = { 46.6, 82.7, 15, 360 }, + [2] = { 46.8, 77.6, 15, 360 }, + [3] = { 39.2, 73, 15, 360 }, + [4] = { 43.6, 71.7, 15, 360 }, + [5] = { 55.6, 70.4, 15, 360 }, + [6] = { 44.3, 70, 15, 360 }, + [7] = { 43.2, 69.5, 15, 360 }, + [8] = { 38.4, 68.6, 15, 360 }, + [9] = { 38.3, 68.2, 15, 360 }, + [10] = { 38.6, 67.5, 15, 360 }, + [11] = { 44.6, 67.3, 15, 360 }, + [12] = { 42.2, 67.2, 15, 360 }, + [13] = { 38.9, 67.1, 15, 360 }, + [14] = { 48.2, 67, 15, 360 }, + [15] = { 42.6, 66.6, 15, 360 }, + [16] = { 38.3, 66.4, 15, 360 }, + [17] = { 44.7, 66.3, 15, 360 }, + [18] = { 39.5, 66.1, 15, 360 }, + [19] = { 45.1, 66.1, 15, 360 }, + [20] = { 43.9, 66.1, 15, 360 }, + [21] = { 39, 66.1, 15, 360 }, + [22] = { 43.3, 65.8, 15, 360 }, + [23] = { 45.8, 65.8, 15, 360 }, + [24] = { 44.7, 65.5, 15, 360 }, + [25] = { 38.9, 65.5, 15, 360 }, + [26] = { 45.3, 65.3, 15, 360 }, + [27] = { 39.5, 65.3, 15, 360 }, + [28] = { 40.1, 65.2, 15, 360 }, + [29] = { 43.3, 65.2, 15, 360 }, + [30] = { 38.8, 64.6, 15, 360 }, + [31] = { 39.5, 64.2, 15, 360 }, + [32] = { 55.4, 89.5, 17, 360 }, + [33] = { 55.3, 89.3, 17, 360 }, + [34] = { 55.3, 88.4, 17, 360 }, + }, + ["lvl"] = "41-42", + ["rnk"] = "1", + }, + [4331] = { + ["coords"] = { + [1] = { 46.5, 82.5, 15, 360 }, + [2] = { 46.9, 77.8, 15, 360 }, + [3] = { 39.2, 72.9, 15, 360 }, + [4] = { 43.6, 71.7, 15, 360 }, + [5] = { 55.6, 70.5, 15, 360 }, + [6] = { 44.2, 69.8, 15, 360 }, + [7] = { 43.2, 69.5, 15, 360 }, + [8] = { 38.6, 68.1, 15, 360 }, + [9] = { 42.3, 68, 15, 360 }, + [10] = { 45.3, 67.2, 15, 360 }, + [11] = { 48.1, 66.9, 15, 360 }, + [12] = { 44.1, 65.3, 15, 360 }, + [13] = { 44.6, 64.7, 15, 360 }, + [14] = { 36.8, 69.2, 15, 360 }, + [15] = { 37.4, 68.5, 15, 360 }, + [16] = { 37.8, 68.2, 15, 360 }, + [17] = { 37.5, 68, 15, 360 }, + [18] = { 37.8, 67.3, 15, 360 }, + [19] = { 44.6, 67.3, 15, 360 }, + [20] = { 42.2, 67.2, 15, 360 }, + [21] = { 38.3, 67.1, 15, 360 }, + [22] = { 38.9, 67.1, 15, 360 }, + [23] = { 44.7, 66.3, 15, 360 }, + [24] = { 39.5, 66.1, 15, 360 }, + [25] = { 45.1, 66.1, 15, 360 }, + [26] = { 43.9, 66.1, 15, 360 }, + [27] = { 39, 66.1, 15, 360 }, + [28] = { 43.3, 65.8, 15, 360 }, + [29] = { 44.7, 65.5, 15, 360 }, + [30] = { 38.9, 65.5, 15, 360 }, + [31] = { 45.3, 65.3, 15, 360 }, + [32] = { 39.5, 65.3, 15, 360 }, + [33] = { 40.1, 65.2, 15, 360 }, + [34] = { 43.3, 65.2, 15, 360 }, + [35] = { 38.8, 64.6, 15, 360 }, + [36] = { 39.5, 64.2, 15, 360 }, + [37] = { 54.5, 89.8, 17, 360 }, + [38] = { 54.9, 89.4, 17, 360 }, + [39] = { 55.1, 89.3, 17, 360 }, + [40] = { 54.9, 89.2, 17, 360 }, + [41] = { 55.1, 88.8, 17, 360 }, + [42] = { 55.3, 88.7, 17, 360 }, + }, + ["lvl"] = "42-43", + ["rnk"] = "1", + }, + [4333] = "_", + [4334] = { + ["coords"] = { + [1] = { 50.4, 79.6, 15, 360 }, + [2] = { 50.4, 77.7, 15, 360 }, + [3] = { 52.8, 75.5, 15, 360 }, + [4] = { 52.2, 84.4, 15, 360 }, + [5] = { 52.6, 84.2, 15, 360 }, + [6] = { 52.1, 83.5, 15, 360 }, + [7] = { 52.4, 83.4, 15, 360 }, + [8] = { 54.7, 83.4, 15, 360 }, + [9] = { 50.2, 83.3, 15, 360 }, + [10] = { 53.4, 83.2, 15, 360 }, + [11] = { 55.9, 82.4, 15, 360 }, + [12] = { 54, 82.3, 15, 360 }, + [13] = { 50.9, 82.3, 15, 360 }, + [14] = { 56.3, 82, 15, 360 }, + [15] = { 55.7, 81.8, 15, 360 }, + [16] = { 51.6, 81.5, 15, 360 }, + [17] = { 50.4, 81.4, 15, 360 }, + [18] = { 56, 81.3, 15, 360 }, + [19] = { 56.7, 79.5, 15, 360 }, + [20] = { 57.3, 78.6, 15, 360 }, + [21] = { 51, 78.5, 15, 360 }, + [22] = { 56.7, 77.7, 15, 360 }, + [23] = { 57.8, 77.6, 15, 360 }, + [24] = { 57.4, 76.7, 15, 360 }, + [25] = { 50.9, 76.6, 15, 360 }, + [26] = { 48.7, 76.4, 15, 360 }, + [27] = { 48.2, 76.3, 15, 360 }, + [28] = { 56.9, 75.7, 15, 360 }, + [29] = { 56.5, 75.7, 15, 360 }, + [30] = { 51.6, 75.7, 15, 360 }, + [31] = { 50.8, 75.7, 15, 360 }, + [32] = { 48.8, 75.6, 15, 360 }, + [33] = { 48.1, 75.2, 15, 360 }, + [34] = { 57, 75.1, 15, 360 }, + [35] = { 56.5, 75.1, 15, 360 }, + [36] = { 52.3, 74.9, 15, 360 }, + [37] = { 54.7, 74.8, 15, 360 }, + [38] = { 51.7, 74.7, 15, 360 }, + [39] = { 48.6, 74.6, 15, 360 }, + [40] = { 48.7, 73.9, 15, 360 }, + [41] = { 56.6, 73.8, 15, 360 }, + [42] = { 48.5, 73.2, 15, 360 }, + [43] = { 53.3, 73, 15, 360 }, + [44] = { 54, 72.7, 15, 360 }, + [45] = { 53.4, 72.1, 15, 360 }, + [46] = { 53.9, 72, 15, 360 }, + }, + ["lvl"] = "43-44", + ["rnk"] = "1", + }, + [4340] = "_", + [4341] = { + ["coords"] = { + [1] = { 59.5, 35.1, 15, 360 }, + [2] = { 60, 34.9, 15, 360 }, + [3] = { 59.4, 34.6, 15, 360 }, + [4] = { 59.1, 34.4, 15, 360 }, + [5] = { 53.7, 33.5, 15, 360 }, + [6] = { 54.8, 32.3, 15, 360 }, + [7] = { 58.4, 30.4, 15, 360 }, + [8] = { 52.2, 29.9, 15, 360 }, + [9] = { 53.7, 29.7, 15, 360 }, + [10] = { 38, 29.5, 15, 360 }, + [11] = { 51.6, 29.2, 15, 360 }, + [12] = { 50.3, 29, 15, 360 }, + [13] = { 51.2, 28.7, 15, 360 }, + [14] = { 38.1, 28.5, 15, 360 }, + [15] = { 56.9, 28.5, 15, 360 }, + [16] = { 37, 28.2, 15, 360 }, + [17] = { 50.7, 27.5, 15, 360 }, + [18] = { 36.4, 27.2, 15, 360 }, + [19] = { 40, 27.2, 15, 360 }, + [20] = { 41.2, 26.9, 15, 360 }, + [21] = { 37, 26.3, 15, 360 }, + [22] = { 40.6, 26.3, 15, 360 }, + [23] = { 57.3, 26.2, 15, 360 }, + [24] = { 51.1, 26, 15, 360 }, + [25] = { 35.9, 25.9, 15, 360 }, + [26] = { 54.6, 25.5, 15, 360 }, + [27] = { 40.2, 25.3, 15, 360 }, + [28] = { 37.4, 25.2, 15, 360 }, + [29] = { 58.1, 24.9, 15, 360 }, + [30] = { 37.2, 24.7, 15, 360 }, + [31] = { 53.4, 24.5, 15, 360 }, + [32] = { 57.3, 24.3, 15, 360 }, + [33] = { 41.7, 24.3, 15, 360 }, + [34] = { 53.8, 23.8, 15, 360 }, + [35] = { 51.8, 23.7, 15, 360 }, + [36] = { 38.9, 23.4, 15, 360 }, + [37] = { 41.4, 23.4, 15, 360 }, + [38] = { 53.4, 22.6, 15, 360 }, + [39] = { 37.3, 22.5, 15, 360 }, + [40] = { 38.2, 22.5, 15, 360 }, + [41] = { 49.9, 22.1, 15, 360 }, + [42] = { 49.4, 22, 15, 360 }, + [43] = { 46.2, 21.7, 15, 360 }, + [44] = { 41.4, 21.4, 15, 360 }, + [45] = { 46.4, 21.2, 15, 360 }, + [46] = { 42.4, 21.1, 15, 360 }, + [47] = { 40.2, 21, 15, 360 }, + [48] = { 53.7, 20.7, 15, 360 }, + [49] = { 46, 20.6, 15, 360 }, + [50] = { 44.9, 20.5, 15, 360 }, + [51] = { 50.4, 20.4, 15, 360 }, + [52] = { 52.1, 20.3, 15, 360 }, + [53] = { 51.7, 19.9, 15, 360 }, + [54] = { 40.4, 19.8, 15, 360 }, + [55] = { 42.8, 19.4, 15, 360 }, + [56] = { 45, 19.1, 15, 360 }, + [57] = { 37.3, 19, 15, 360 }, + [58] = { 44.3, 18.4, 15, 360 }, + [59] = { 43, 18.1, 15, 360 }, + [60] = { 36.8, 18, 15, 360 }, + [61] = { 38.7, 17.7, 15, 360 }, + [62] = { 36.9, 16.8, 15, 360 }, + [63] = { 43.3, 16.8, 15, 360 }, + [64] = { 51.4, 16.3, 15, 360 }, + [65] = { 42.7, 15.9, 15, 360 }, + [66] = { 41.8, 14.2, 15, 360 }, + [67] = { 37.6, 13.4, 15, 360 }, + [68] = { 55.2, 69.2, 17, 360 }, + [69] = { 55.3, 68.7, 17, 360 }, + [70] = { 54.7, 68.6, 17, 360 }, + [71] = { 54.4, 68.1, 17, 360 }, + [72] = { 54.7, 67.6, 17, 360 }, + [73] = { 54.1, 67.4, 17, 360 }, + [74] = { 54.9, 67, 17, 360 }, + [75] = { 54.8, 66.8, 17, 360 }, + [76] = { 54.8, 65.6, 17, 360 }, + [77] = { 55.3, 65.6, 17, 360 }, + [78] = { 54.8, 63.8, 17, 360 }, + [79] = { 54.6, 63.3, 17, 360 }, + [80] = { 54.6, 62.7, 17, 360 }, + [81] = { 55, 60.9, 17, 360 }, + }, + ["lvl"] = "35-36", + }, + [4342] = { + ["coords"] = { + [1] = { 41.9, 45.5, 15, 360 }, + [2] = { 44.5, 45.2, 15, 360 }, + [3] = { 43.3, 45.1, 15, 360 }, + [4] = { 38, 45.1, 15, 360 }, + [5] = { 34.8, 45, 15, 360 }, + [6] = { 39.3, 44.9, 15, 360 }, + [7] = { 41.1, 44.8, 15, 360 }, + [8] = { 39.9, 44.6, 15, 360 }, + [9] = { 36.1, 44.2, 15, 360 }, + [10] = { 44.1, 43.9, 15, 360 }, + [11] = { 44.5, 43.5, 15, 360 }, + [12] = { 35.8, 43.4, 15, 360 }, + [13] = { 39.3, 43.1, 15, 360 }, + [14] = { 37, 42.8, 15, 360 }, + [15] = { 33.4, 42.6, 15, 360 }, + [16] = { 34.1, 42.3, 15, 360 }, + [17] = { 44.8, 42, 15, 360 }, + [18] = { 38, 42, 15, 360 }, + [19] = { 40.4, 42, 15, 360 }, + [20] = { 41, 41.9, 15, 360 }, + [21] = { 41.8, 41.7, 15, 360 }, + [22] = { 37.1, 41.6, 15, 360 }, + [23] = { 39.2, 41.4, 15, 360 }, + [24] = { 34.4, 41.3, 15, 360 }, + [25] = { 34.1, 40.7, 15, 360 }, + [26] = { 43.3, 39.5, 15, 360 }, + [27] = { 44.7, 39.3, 15, 360 }, + [28] = { 42.4, 39.2, 15, 360 }, + [29] = { 41.6, 38.8, 15, 360 }, + [30] = { 40.1, 38.3, 15, 360 }, + [31] = { 40.9, 37.9, 15, 360 }, + [32] = { 42.1, 37.6, 15, 360 }, + [33] = { 43, 37.2, 15, 360 }, + [34] = { 35.6, 35.8, 15, 360 }, + [35] = { 56.2, 35.6, 15, 360 }, + [36] = { 37.5, 35, 15, 360 }, + [37] = { 36, 34.8, 15, 360 }, + [38] = { 40.2, 34.6, 15, 360 }, + [39] = { 38.8, 34.4, 15, 360 }, + [40] = { 41, 33.8, 15, 360 }, + [41] = { 34.5, 33.8, 15, 360 }, + [42] = { 40.1, 33.1, 15, 360 }, + [43] = { 41.1, 33, 15, 360 }, + [44] = { 40.7, 32, 15, 360 }, + [45] = { 41.1, 30.9, 15, 360 }, + [46] = { 54.3, 30.7, 15, 360 }, + [47] = { 41.3, 29, 15, 360 }, + [48] = { 41.9, 28.4, 15, 360 }, + [49] = { 42.3, 28.2, 15, 360 }, + [50] = { 56.1, 28, 15, 360 }, + [51] = { 58.4, 27.3, 15, 360 }, + [52] = { 40.6, 26.5, 15, 360 }, + [53] = { 37.1, 23.4, 15, 360 }, + [54] = { 52, 22.7, 15, 360 }, + [55] = { 48.7, 21.8, 15, 360 }, + [56] = { 37.5, 21.8, 15, 360 }, + [57] = { 52.6, 21.1, 15, 360 }, + [58] = { 45.1, 19.8, 15, 360 }, + [59] = { 51.3, 18, 15, 360 }, + [60] = { 43.6, 17.2, 15, 360 }, + [61] = { 38.2, 15.3, 15, 360 }, + [62] = { 42.2, 14.9, 15, 360 }, + [63] = { 40.4, 14.1, 15, 360 }, + [64] = { 39.1, 13.7, 15, 360 }, + [65] = { 55.2, 77.3, 17, 360 }, + [66] = { 53.5, 77.3, 17, 360 }, + [67] = { 54.2, 76.9, 17, 360 }, + [68] = { 54, 76.5, 17, 360 }, + [69] = { 54.7, 76.1, 17, 360 }, + [70] = { 52.8, 76.1, 17, 360 }, + [71] = { 53.2, 75.9, 17, 360 }, + [72] = { 55.2, 75.7, 17, 360 }, + [73] = { 54.7, 75.5, 17, 360 }, + [74] = { 53.3, 75.4, 17, 360 }, + [75] = { 53.2, 75.1, 17, 360 }, + [76] = { 53.9, 72.5, 17, 360 }, + [77] = { 55, 72.1, 17, 360 }, + [78] = { 54.1, 72, 17, 360 }, + [79] = { 53.4, 71.5, 17, 360 }, + [80] = { 54.7, 66.1, 17, 360 }, + [81] = { 54.9, 65.2, 17, 360 }, + [82] = { 55.3, 61.9, 17, 360 }, + [83] = { 55.8, 61.1, 17, 360 }, + [84] = { 60, 34.9, 15, 360 }, + [85] = { 59.1, 34.4, 15, 360 }, + [86] = { 53.7, 33.5, 15, 360 }, + [87] = { 54.8, 32.3, 15, 360 }, + [88] = { 58.4, 30.4, 15, 360 }, + [89] = { 52.2, 29.9, 15, 360 }, + [90] = { 53.7, 29.7, 15, 360 }, + [91] = { 38, 29.5, 15, 360 }, + [92] = { 51.2, 28.7, 15, 360 }, + [93] = { 56.9, 28.5, 15, 360 }, + [94] = { 36.4, 27.2, 15, 360 }, + [95] = { 40, 27.2, 15, 360 }, + [96] = { 41.2, 26.9, 15, 360 }, + [97] = { 37, 26.3, 15, 360 }, + [98] = { 57.3, 26.2, 15, 360 }, + [99] = { 51.1, 26, 15, 360 }, + [100] = { 40.2, 25.3, 15, 360 }, + [101] = { 58.1, 24.9, 15, 360 }, + [102] = { 57.3, 24.3, 15, 360 }, + [103] = { 41.7, 24.3, 15, 360 }, + [104] = { 51.8, 23.7, 15, 360 }, + [105] = { 38.9, 23.4, 15, 360 }, + [106] = { 38.2, 22.5, 15, 360 }, + [107] = { 49.9, 22.1, 15, 360 }, + [108] = { 41.4, 21.4, 15, 360 }, + [109] = { 46.4, 21.2, 15, 360 }, + [110] = { 40.2, 21, 15, 360 }, + [111] = { 46, 20.6, 15, 360 }, + [112] = { 44.9, 20.5, 15, 360 }, + [113] = { 50.4, 20.4, 15, 360 }, + [114] = { 52.1, 20.3, 15, 360 }, + [115] = { 51.7, 19.9, 15, 360 }, + [116] = { 40.4, 19.8, 15, 360 }, + [117] = { 42.8, 19.4, 15, 360 }, + [118] = { 55.2, 69.2, 17, 360 }, + [119] = { 54.4, 68.1, 17, 360 }, + [120] = { 54.7, 67.6, 17, 360 }, + [121] = { 55.3, 65.6, 17, 360 }, + }, + ["lvl"] = "36-37", + }, + [4343] = { + ["coords"] = { + [1] = { 48.9, 65.6, 15, 360 }, + [2] = { 48.7, 64.9, 15, 360 }, + [3] = { 41.8, 64.7, 15, 360 }, + [4] = { 49.5, 64.4, 15, 360 }, + [5] = { 47.2, 64.3, 15, 360 }, + [6] = { 43.3, 63.8, 15, 360 }, + [7] = { 46.7, 63.7, 15, 360 }, + [8] = { 41.5, 63.3, 15, 360 }, + [9] = { 50.3, 63.3, 15, 360 }, + [10] = { 45.7, 62.7, 15, 360 }, + [11] = { 44.7, 62.1, 15, 360 }, + [12] = { 51, 62, 15, 360 }, + [13] = { 45.5, 61.8, 15, 360 }, + [14] = { 41.7, 61.7, 15, 360 }, + [15] = { 43.7, 61.6, 15, 360 }, + [16] = { 46.3, 61.4, 15, 360 }, + [17] = { 42.5, 61.1, 15, 360 }, + [18] = { 46.2, 60.9, 15, 360 }, + [19] = { 43, 60.9, 15, 360 }, + [20] = { 36.8, 60.8, 15, 360 }, + [21] = { 35.9, 60.7, 15, 360 }, + [22] = { 34.8, 60.6, 15, 360 }, + [23] = { 40.9, 60.6, 15, 360 }, + [24] = { 50.9, 60.4, 15, 360 }, + [25] = { 42.5, 60, 15, 360 }, + [26] = { 50.1, 59.9, 15, 360 }, + [27] = { 37.9, 59.6, 15, 360 }, + [28] = { 46.5, 59.6, 15, 360 }, + [29] = { 36.2, 59.5, 15, 360 }, + [30] = { 38.9, 59.4, 15, 360 }, + [31] = { 36.4, 58.8, 15, 360 }, + [32] = { 39.6, 58.7, 15, 360 }, + [33] = { 43.2, 58.5, 15, 360 }, + [34] = { 40.5, 58.5, 15, 360 }, + [35] = { 34.8, 58.4, 15, 360 }, + [36] = { 49.8, 58.2, 15, 360 }, + [37] = { 36, 58.1, 15, 360 }, + [38] = { 49.1, 58, 15, 360 }, + [39] = { 41.4, 57.8, 15, 360 }, + [40] = { 35.1, 57.4, 15, 360 }, + [41] = { 44.1, 57.1, 15, 360 }, + [42] = { 48.5, 56.7, 15, 360 }, + [43] = { 43.4, 56.6, 15, 360 }, + [44] = { 49.4, 56.3, 15, 360 }, + [45] = { 41.7, 56, 15, 360 }, + [46] = { 50.3, 56, 15, 360 }, + [47] = { 42.7, 55.7, 15, 360 }, + [48] = { 35.1, 55.6, 15, 360 }, + [49] = { 48, 55.4, 15, 360 }, + [50] = { 40.8, 54.8, 15, 360 }, + [51] = { 47.1, 54.7, 15, 360 }, + [52] = { 41.9, 54.7, 15, 360 }, + [53] = { 50.7, 54.6, 15, 360 }, + [54] = { 38.6, 54.3, 15, 360 }, + [55] = { 46.2, 54.1, 15, 360 }, + [56] = { 37.9, 54, 15, 360 }, + [57] = { 42.5, 53.9, 15, 360 }, + [58] = { 50.3, 53.7, 15, 360 }, + [59] = { 47.8, 53.5, 15, 360 }, + [60] = { 39, 53.5, 15, 360 }, + [61] = { 49.9, 53.2, 15, 360 }, + [62] = { 39.6, 53.1, 15, 360 }, + [63] = { 50.7, 53.1, 15, 360 }, + [64] = { 46, 52.9, 15, 360 }, + [65] = { 47, 52, 15, 360 }, + [66] = { 45.1, 51.7, 15, 360 }, + [67] = { 39.9, 51.5, 15, 360 }, + [68] = { 44.6, 51.2, 15, 360 }, + [69] = { 36.9, 51.2, 15, 360 }, + [70] = { 43.3, 50.8, 15, 360 }, + [71] = { 39.1, 50.5, 15, 360 }, + [72] = { 40.2, 50.3, 15, 360 }, + [73] = { 48, 50.2, 15, 360 }, + [74] = { 37.6, 50.1, 15, 360 }, + [75] = { 35, 49.8, 15, 360 }, + [76] = { 42.4, 49.8, 15, 360 }, + [77] = { 43.7, 49.6, 15, 360 }, + [78] = { 44.6, 49.5, 15, 360 }, + [79] = { 48.1, 49.5, 15, 360 }, + [80] = { 34.4, 49.5, 15, 360 }, + [81] = { 45.8, 49.4, 15, 360 }, + [82] = { 38.2, 49.1, 15, 360 }, + [83] = { 42.3, 49, 15, 360 }, + [84] = { 35.7, 49, 15, 360 }, + [85] = { 39.5, 48.8, 15, 360 }, + [86] = { 36.4, 48.2, 15, 360 }, + [87] = { 42.6, 48, 15, 360 }, + [88] = { 38.8, 47.9, 15, 360 }, + [89] = { 45.2, 47.9, 15, 360 }, + [90] = { 43.4, 47.5, 15, 360 }, + [91] = { 35.5, 47.4, 15, 360 }, + [92] = { 38, 47.2, 15, 360 }, + [93] = { 44.5, 46.9, 15, 360 }, + [94] = { 34.3, 46.9, 15, 360 }, + [95] = { 36.8, 46.9, 15, 360 }, + [96] = { 37.9, 46.8, 15, 360 }, + [97] = { 35.2, 44.3, 15, 360 }, + [98] = { 35.1, 34.4, 15, 360 }, + [99] = { 54.6, 85.4, 17, 360 }, + [100] = { 54.1, 85.4, 17, 360 }, + [101] = { 53.5, 85.3, 17, 360 }, + [102] = { 55.2, 84.8, 17, 360 }, + [103] = { 54.3, 84.8, 17, 360 }, + [104] = { 54.4, 84.4, 17, 360 }, + [105] = { 53.5, 84.2, 17, 360 }, + [106] = { 54.1, 84, 17, 360 }, + [107] = { 53.7, 83.7, 17, 360 }, + [108] = { 53.7, 82.8, 17, 360 }, + [109] = { 55.2, 81.9, 17, 360 }, + [110] = { 54.6, 80.5, 17, 360 }, + [111] = { 55, 79.9, 17, 360 }, + [112] = { 53.6, 79.8, 17, 360 }, + [113] = { 53.3, 79.6, 17, 360 }, + [114] = { 55.3, 79.4, 17, 360 }, + [115] = { 54, 79.3, 17, 360 }, + [116] = { 54.4, 78.9, 17, 360 }, + [117] = { 53.9, 78.5, 17, 360 }, + [118] = { 55.2, 78.4, 17, 360 }, + [119] = { 53.3, 78.3, 17, 360 }, + [120] = { 54.6, 78.2, 17, 360 }, + [121] = { 55.1, 78.2, 17, 360 }, + [122] = { 53.7, 76.9, 17, 360 }, + [123] = { 53.7, 71.8, 17, 360 }, + [124] = { 41.9, 45.5, 15, 360 }, + [125] = { 44.5, 45.2, 15, 360 }, + [126] = { 43.3, 45.1, 15, 360 }, + [127] = { 38, 45.1, 15, 360 }, + [128] = { 34.8, 45, 15, 360 }, + [129] = { 39.3, 44.9, 15, 360 }, + [130] = { 41.1, 44.8, 15, 360 }, + [131] = { 39.9, 44.6, 15, 360 }, + [132] = { 36.1, 44.2, 15, 360 }, + [133] = { 44.1, 43.9, 15, 360 }, + [134] = { 44.5, 43.5, 15, 360 }, + [135] = { 35.8, 43.4, 15, 360 }, + [136] = { 39.3, 43.1, 15, 360 }, + [137] = { 37, 42.8, 15, 360 }, + [138] = { 33.4, 42.6, 15, 360 }, + [139] = { 34.1, 42.3, 15, 360 }, + [140] = { 44.8, 42, 15, 360 }, + [141] = { 38, 42, 15, 360 }, + [142] = { 40.4, 42, 15, 360 }, + [143] = { 41, 41.9, 15, 360 }, + [144] = { 41.8, 41.7, 15, 360 }, + [145] = { 37.1, 41.6, 15, 360 }, + [146] = { 39.2, 41.4, 15, 360 }, + [147] = { 34.4, 41.3, 15, 360 }, + [148] = { 34.1, 40.7, 15, 360 }, + [149] = { 43.3, 39.5, 15, 360 }, + [150] = { 44.7, 39.3, 15, 360 }, + [151] = { 42.4, 39.2, 15, 360 }, + [152] = { 41.6, 38.8, 15, 360 }, + [153] = { 40.1, 38.3, 15, 360 }, + [154] = { 40.9, 37.9, 15, 360 }, + [155] = { 42.1, 37.6, 15, 360 }, + [156] = { 43, 37.2, 15, 360 }, + [157] = { 35.6, 35.8, 15, 360 }, + [158] = { 37.5, 35, 15, 360 }, + [159] = { 36, 34.8, 15, 360 }, + [160] = { 40.2, 34.6, 15, 360 }, + [161] = { 38.8, 34.4, 15, 360 }, + [162] = { 41, 33.8, 15, 360 }, + [163] = { 34.5, 33.8, 15, 360 }, + [164] = { 40.1, 33.1, 15, 360 }, + [165] = { 41.1, 33, 15, 360 }, + [166] = { 40.7, 32, 15, 360 }, + [167] = { 41.1, 30.9, 15, 360 }, + [168] = { 41.3, 29, 15, 360 }, + [169] = { 42.3, 28.2, 15, 360 }, + [170] = { 55.2, 77.3, 17, 360 }, + [171] = { 53.5, 77.3, 17, 360 }, + [172] = { 54.2, 76.9, 17, 360 }, + [173] = { 54, 76.5, 17, 360 }, + [174] = { 54.7, 76.1, 17, 360 }, + [175] = { 52.8, 76.1, 17, 360 }, + [176] = { 53.2, 75.9, 17, 360 }, + [177] = { 55.2, 75.7, 17, 360 }, + [178] = { 54.7, 75.5, 17, 360 }, + [179] = { 53.3, 75.4, 17, 360 }, + [180] = { 53.2, 75.1, 17, 360 }, + [181] = { 53.9, 72.5, 17, 360 }, + [182] = { 55, 72.1, 17, 360 }, + [183] = { 54.1, 72, 17, 360 }, + [184] = { 53.4, 71.5, 17, 360 }, + }, + ["lvl"] = "37-38", + }, + [4344] = { + ["coords"] = { + [1] = { 41.1, 60.6, 15, 360 }, + [2] = { 37.9, 57.7, 15, 360 }, + [3] = { 38.6, 57.5, 15, 360 }, + [4] = { 40.4, 51.8, 15, 360 }, + [5] = { 55.1, 83.9, 17, 360 }, + [6] = { 48.9, 65.6, 15, 360 }, + [7] = { 48.7, 64.9, 15, 360 }, + [8] = { 41.8, 64.7, 15, 360 }, + [9] = { 49.5, 64.4, 15, 360 }, + [10] = { 47.2, 64.3, 15, 360 }, + [11] = { 43.3, 63.8, 15, 360 }, + [12] = { 46.7, 63.7, 15, 360 }, + [13] = { 41.5, 63.3, 15, 360 }, + [14] = { 50.3, 63.3, 15, 360 }, + [15] = { 45.7, 62.7, 15, 360 }, + [16] = { 44.7, 62.1, 15, 360 }, + [17] = { 51, 62, 15, 360 }, + [18] = { 45.5, 61.8, 15, 360 }, + [19] = { 41.7, 61.7, 15, 360 }, + [20] = { 43.7, 61.6, 15, 360 }, + [21] = { 46.3, 61.4, 15, 360 }, + [22] = { 42.5, 61.1, 15, 360 }, + [23] = { 46.2, 60.9, 15, 360 }, + [24] = { 43, 60.9, 15, 360 }, + [25] = { 36.8, 60.8, 15, 360 }, + [26] = { 35.9, 60.7, 15, 360 }, + [27] = { 34.8, 60.6, 15, 360 }, + [28] = { 40.9, 60.6, 15, 360 }, + [29] = { 50.9, 60.4, 15, 360 }, + [30] = { 42.5, 60, 15, 360 }, + [31] = { 50.1, 59.9, 15, 360 }, + [32] = { 37.9, 59.6, 15, 360 }, + [33] = { 46.5, 59.6, 15, 360 }, + [34] = { 36.2, 59.5, 15, 360 }, + [35] = { 38.9, 59.4, 15, 360 }, + [36] = { 36.4, 58.8, 15, 360 }, + [37] = { 39.6, 58.7, 15, 360 }, + [38] = { 43.2, 58.5, 15, 360 }, + [39] = { 40.5, 58.5, 15, 360 }, + [40] = { 34.8, 58.4, 15, 360 }, + [41] = { 49.8, 58.2, 15, 360 }, + [42] = { 36, 58.1, 15, 360 }, + [43] = { 49.1, 58, 15, 360 }, + [44] = { 41.4, 57.8, 15, 360 }, + [45] = { 35.1, 57.4, 15, 360 }, + [46] = { 44.1, 57.1, 15, 360 }, + [47] = { 48.5, 56.7, 15, 360 }, + [48] = { 43.4, 56.6, 15, 360 }, + [49] = { 49.4, 56.3, 15, 360 }, + [50] = { 41.7, 56, 15, 360 }, + [51] = { 50.3, 56, 15, 360 }, + [52] = { 42.7, 55.7, 15, 360 }, + [53] = { 48, 55.4, 15, 360 }, + [54] = { 40.8, 54.8, 15, 360 }, + [55] = { 47.1, 54.7, 15, 360 }, + [56] = { 41.9, 54.7, 15, 360 }, + [57] = { 50.7, 54.6, 15, 360 }, + [58] = { 38.6, 54.3, 15, 360 }, + [59] = { 46.2, 54.1, 15, 360 }, + [60] = { 37.9, 54, 15, 360 }, + [61] = { 42.5, 53.9, 15, 360 }, + [62] = { 50.3, 53.7, 15, 360 }, + [63] = { 47.8, 53.5, 15, 360 }, + [64] = { 39, 53.5, 15, 360 }, + [65] = { 49.9, 53.2, 15, 360 }, + [66] = { 39.6, 53.1, 15, 360 }, + [67] = { 50.7, 53.1, 15, 360 }, + [68] = { 46, 52.9, 15, 360 }, + [69] = { 47, 52, 15, 360 }, + [70] = { 45.1, 51.7, 15, 360 }, + [71] = { 44.6, 51.2, 15, 360 }, + [72] = { 36.9, 51.2, 15, 360 }, + [73] = { 43.3, 50.8, 15, 360 }, + [74] = { 40.2, 50.3, 15, 360 }, + [75] = { 48, 50.2, 15, 360 }, + [76] = { 37.6, 50.1, 15, 360 }, + [77] = { 35, 49.8, 15, 360 }, + [78] = { 42.4, 49.8, 15, 360 }, + [79] = { 43.7, 49.6, 15, 360 }, + [80] = { 44.6, 49.5, 15, 360 }, + [81] = { 48.1, 49.5, 15, 360 }, + [82] = { 34.4, 49.5, 15, 360 }, + [83] = { 45.8, 49.4, 15, 360 }, + [84] = { 38.2, 49.1, 15, 360 }, + [85] = { 42.3, 49, 15, 360 }, + [86] = { 35.7, 49, 15, 360 }, + [87] = { 39.5, 48.8, 15, 360 }, + [88] = { 36.4, 48.2, 15, 360 }, + [89] = { 42.6, 48, 15, 360 }, + [90] = { 38.8, 47.9, 15, 360 }, + [91] = { 45.2, 47.9, 15, 360 }, + [92] = { 43.4, 47.5, 15, 360 }, + [93] = { 35.5, 47.4, 15, 360 }, + [94] = { 38, 47.2, 15, 360 }, + [95] = { 44.5, 46.9, 15, 360 }, + [96] = { 36.8, 46.9, 15, 360 }, + [97] = { 37.9, 46.8, 15, 360 }, + [98] = { 54.6, 85.4, 17, 360 }, + [99] = { 54.1, 85.4, 17, 360 }, + [100] = { 53.5, 85.3, 17, 360 }, + [101] = { 55.2, 84.8, 17, 360 }, + [102] = { 54.3, 84.8, 17, 360 }, + [103] = { 54.4, 84.4, 17, 360 }, + [104] = { 53.5, 84.2, 17, 360 }, + [105] = { 54.1, 84, 17, 360 }, + [106] = { 53.7, 83.7, 17, 360 }, + [107] = { 55.2, 81.9, 17, 360 }, + [108] = { 54.6, 80.5, 17, 360 }, + [109] = { 55, 79.9, 17, 360 }, + [110] = { 53.6, 79.8, 17, 360 }, + [111] = { 53.3, 79.6, 17, 360 }, + [112] = { 55.3, 79.4, 17, 360 }, + [113] = { 54, 79.3, 17, 360 }, + [114] = { 54.4, 78.9, 17, 360 }, + [115] = { 53.9, 78.5, 17, 360 }, + [116] = { 55.2, 78.4, 17, 360 }, + [117] = { 54.6, 78.2, 17, 360 }, + [118] = { 55.1, 78.2, 17, 360 }, + }, + ["lvl"] = "38-39", + }, + [4345] = { + ["coords"] = { + [1] = { 50.5, 80.9, 15, 360 }, + [2] = { 49.9, 79.9, 15, 360 }, + [3] = { 47.8, 79.8, 15, 360 }, + [4] = { 45.3, 79.8, 15, 360 }, + [5] = { 44.2, 79.5, 15, 360 }, + [6] = { 49.2, 79.5, 15, 360 }, + [7] = { 46.7, 79.1, 15, 360 }, + [8] = { 47.3, 78.8, 15, 360 }, + [9] = { 43.2, 78.3, 15, 360 }, + [10] = { 48.8, 78.3, 15, 360 }, + [11] = { 45.4, 77.6, 15, 360 }, + [12] = { 47.7, 77.5, 15, 360 }, + [13] = { 43.6, 76.9, 15, 360 }, + [14] = { 46.1, 76.7, 15, 360 }, + [15] = { 50.8, 76.5, 15, 360 }, + [16] = { 46.5, 76.1, 15, 360 }, + [17] = { 44, 76.1, 15, 360 }, + [18] = { 47.7, 75.8, 15, 360 }, + [19] = { 46, 75, 15, 360 }, + [20] = { 47.3, 74.9, 15, 360 }, + [21] = { 49.6, 74.9, 15, 360 }, + [22] = { 51, 74.8, 15, 360 }, + [23] = { 55.4, 73.9, 15, 360 }, + [24] = { 49.3, 73.9, 15, 360 }, + [25] = { 46.6, 73.8, 15, 360 }, + [26] = { 50.1, 73.5, 15, 360 }, + [27] = { 44.5, 73.1, 15, 360 }, + [28] = { 55.9, 73.1, 15, 360 }, + [29] = { 43.5, 73, 15, 360 }, + [30] = { 52.1, 72.9, 15, 360 }, + [31] = { 47.2, 72.8, 15, 360 }, + [32] = { 51.2, 72.7, 15, 360 }, + [33] = { 38.6, 72.7, 15, 360 }, + [34] = { 55.6, 72.2, 15, 360 }, + [35] = { 49, 72.2, 15, 360 }, + [36] = { 54.2, 72.1, 15, 360 }, + [37] = { 47.8, 71.9, 15, 360 }, + [38] = { 37.6, 71.9, 15, 360 }, + [39] = { 56.4, 71.9, 15, 360 }, + [40] = { 53, 71.6, 15, 360 }, + [41] = { 39.8, 71.5, 15, 360 }, + [42] = { 55, 71.3, 15, 360 }, + [43] = { 38.4, 71.2, 15, 360 }, + [44] = { 49.8, 71, 15, 360 }, + [45] = { 43.3, 70.9, 15, 360 }, + [46] = { 47.1, 70.8, 15, 360 }, + [47] = { 44.5, 70.8, 15, 360 }, + [48] = { 48.3, 70.7, 15, 360 }, + [49] = { 53.6, 70.7, 15, 360 }, + [50] = { 52.5, 70.6, 15, 360 }, + [51] = { 51, 70.6, 15, 360 }, + [52] = { 42.6, 70.3, 15, 360 }, + [53] = { 50.3, 70, 15, 360 }, + [54] = { 44.9, 69.8, 15, 360 }, + [55] = { 55.2, 69.8, 15, 360 }, + [56] = { 39, 69.7, 15, 360 }, + [57] = { 46.3, 69.7, 15, 360 }, + [58] = { 56.7, 69.6, 15, 360 }, + [59] = { 52.3, 69.2, 15, 360 }, + [60] = { 54.2, 69.2, 15, 360 }, + [61] = { 56, 69.2, 15, 360 }, + [62] = { 42.1, 69.2, 15, 360 }, + [63] = { 50.9, 69.1, 15, 360 }, + [64] = { 47, 68.9, 15, 360 }, + [65] = { 48.4, 68.7, 15, 360 }, + [66] = { 42.2, 68.6, 15, 360 }, + [67] = { 44, 68.2, 15, 360 }, + [68] = { 50.5, 68.2, 15, 360 }, + [69] = { 41.2, 66.5, 15, 360 }, + [70] = { 55, 91.2, 17, 360 }, + [71] = { 55.4, 90.9, 17, 360 }, + }, + ["lvl"] = "40-41", + ["rnk"] = "1", + }, + [4351] = { + ["coords"] = { + [1] = { 63.6, 40.2, 15, 360 }, + [2] = { 57.9, 38.6, 15, 360 }, + [3] = { 56.3, 38.4, 15, 360 }, + [4] = { 62.1, 37.9, 15, 360 }, + [5] = { 58.5, 37.9, 15, 360 }, + [6] = { 61.5, 36.8, 15, 360 }, + [7] = { 54.8, 35.7, 15, 360 }, + [8] = { 60.8, 35.1, 15, 360 }, + [9] = { 52.3, 34.9, 15, 360 }, + [10] = { 50.9, 33.8, 15, 360 }, + [11] = { 50.8, 31.9, 15, 360 }, + [12] = { 57.3, 30, 15, 360 }, + [13] = { 60.1, 29.4, 15, 360 }, + [14] = { 46.3, 28.2, 15, 360 }, + [15] = { 52.9, 28, 15, 360 }, + [16] = { 48.4, 27.8, 15, 360 }, + [17] = { 37.7, 27.7, 15, 360 }, + [18] = { 34, 27.7, 15, 360 }, + [19] = { 60.2, 27.3, 15, 360 }, + [20] = { 52.2, 27.2, 15, 360 }, + [21] = { 49.6, 26.7, 15, 360 }, + [22] = { 38.8, 26, 15, 360 }, + [23] = { 37.7, 25.8, 15, 360 }, + [24] = { 40.9, 25.3, 15, 360 }, + [25] = { 56.4, 25.2, 15, 360 }, + [26] = { 38.5, 24.9, 15, 360 }, + [27] = { 60, 24.6, 15, 360 }, + [28] = { 38.1, 24.1, 15, 360 }, + [29] = { 56.3, 23.5, 15, 360 }, + [30] = { 44, 22.4, 15, 360 }, + [31] = { 39.4, 22.4, 15, 360 }, + [32] = { 50.8, 21.5, 15, 360 }, + [33] = { 52, 21.4, 15, 360 }, + [34] = { 44.1, 21.2, 15, 360 }, + [35] = { 55.5, 21.2, 15, 360 }, + [36] = { 45.1, 20.9, 15, 360 }, + [37] = { 51.6, 20.6, 15, 360 }, + [38] = { 58.8, 20.6, 15, 360 }, + [39] = { 43.7, 20.2, 15, 360 }, + [40] = { 38.9, 19.6, 15, 360 }, + [41] = { 50.2, 19.5, 15, 360 }, + [42] = { 41.5, 19.3, 15, 360 }, + [43] = { 40.8, 18.8, 15, 360 }, + [44] = { 48.3, 18.8, 15, 360 }, + [45] = { 42.1, 18.6, 15, 360 }, + [46] = { 48.2, 18, 15, 360 }, + [47] = { 41.4, 17.7, 15, 360 }, + [48] = { 47.5, 17.6, 15, 360 }, + [49] = { 40.2, 17.6, 15, 360 }, + [50] = { 52.3, 17, 15, 360 }, + [51] = { 45.8, 16.6, 15, 360 }, + [52] = { 50.9, 16, 15, 360 }, + [53] = { 49.1, 15.8, 15, 360 }, + [54] = { 46.7, 15.5, 15, 360 }, + [55] = { 52.7, 15.4, 15, 360 }, + [56] = { 35.7, 14.8, 15, 360 }, + [57] = { 37, 14.8, 15, 360 }, + [58] = { 39.6, 14.3, 15, 360 }, + [59] = { 44, 13.4, 15, 360 }, + [60] = { 51.3, 12.9, 15, 360 }, + [61] = { 43.7, 12.5, 15, 360 }, + [62] = { 51.6, 12.2, 15, 360 }, + [63] = { 37.1, 12.2, 15, 360 }, + [64] = { 42.6, 9.7, 15, 360 }, + [65] = { 55.1, 68.3, 17, 360 }, + [66] = { 53.1, 68.3, 17, 360 }, + [67] = { 55, 67.3, 17, 360 }, + [68] = { 55.2, 66.4, 17, 360 }, + [69] = { 54, 61.6, 17, 360 }, + [70] = { 54.7, 61.6, 17, 360 }, + [71] = { 56, 61.3, 17, 360 }, + [72] = { 62.1, 60.7, 17, 360 }, + [73] = { 58.2, 60.4, 17, 360 }, + [74] = { 62.2, 60.3, 17, 360 }, + [75] = { 54.7, 60.3, 17, 360 }, + [76] = { 57.6, 59, 17, 360 }, + }, + ["lvl"] = "35-36", + }, + [4352] = { + ["coords"] = { + [1] = { 51.6, 22, 15, 360 }, + [2] = { 49.2, 20.6, 15, 360 }, + [3] = { 47.5, 20.2, 15, 360 }, + [4] = { 49.7, 19.8, 15, 360 }, + [5] = { 48.4, 19.6, 15, 360 }, + [6] = { 46, 19.5, 15, 360 }, + [7] = { 48.7, 19.5, 15, 360 }, + [8] = { 52.4, 19.3, 15, 360 }, + [9] = { 47.4, 19, 15, 360 }, + [10] = { 49, 18.7, 15, 360 }, + [11] = { 48, 18.3, 15, 360 }, + [12] = { 45.9, 17.6, 15, 360 }, + [13] = { 49.7, 17.5, 15, 360 }, + [14] = { 46.6, 16.6, 15, 360 }, + [15] = { 47.3, 16.5, 15, 360 }, + [16] = { 48.2, 16.5, 15, 360 }, + [17] = { 48.6, 15.8, 15, 360 }, + [18] = { 47.8, 15.8, 15, 360 }, + [19] = { 47.3, 15.7, 15, 360 }, + [20] = { 50.5, 15.7, 15, 360 }, + [21] = { 52.2, 15.2, 15, 360 }, + [22] = { 47.2, 15.1, 15, 360 }, + [23] = { 48, 14.9, 15, 360 }, + [24] = { 50.2, 19.5, 15, 360 }, + [25] = { 48.2, 18, 15, 360 }, + [26] = { 47.5, 17.6, 15, 360 }, + [27] = { 50.9, 16, 15, 360 }, + [28] = { 49.1, 15.8, 15, 360 }, + }, + ["lvl"] = "36-37", + }, + [4355] = { + ["coords"] = { + [1] = { 49.5, 63.7, 15, 360 }, + [2] = { 48.3, 63.3, 15, 360 }, + [3] = { 42.2, 63.1, 15, 360 }, + [4] = { 48.1, 62.4, 15, 360 }, + [5] = { 48.9, 62.1, 15, 360 }, + [6] = { 46.6, 61.9, 15, 360 }, + [7] = { 49.7, 61.8, 15, 360 }, + [8] = { 43.3, 61.7, 15, 360 }, + [9] = { 48.5, 61.6, 15, 360 }, + [10] = { 43.8, 60.7, 15, 360 }, + [11] = { 49, 60.6, 15, 360 }, + [12] = { 44.9, 60.4, 15, 360 }, + [13] = { 41.5, 60.4, 15, 360 }, + [14] = { 40.2, 60.1, 15, 360 }, + [15] = { 45.6, 60, 15, 360 }, + [16] = { 41.9, 59.8, 15, 360 }, + [17] = { 49.6, 59.5, 15, 360 }, + [18] = { 35.4, 59.4, 15, 360 }, + [19] = { 47.9, 59.3, 15, 360 }, + [20] = { 48.2, 59.2, 15, 360 }, + [21] = { 41.7, 59.2, 15, 360 }, + [22] = { 48.8, 59, 15, 360 }, + [23] = { 33.2, 57.8, 15, 360 }, + [24] = { 39.8, 57.2, 15, 360 }, + [25] = { 36.4, 56.7, 15, 360 }, + [26] = { 40.4, 56.3, 15, 360 }, + [27] = { 45.7, 56.1, 15, 360 }, + [28] = { 36.9, 55.8, 15, 360 }, + [29] = { 38.2, 55.7, 15, 360 }, + [30] = { 39.6, 55.6, 15, 360 }, + [31] = { 35.8, 55.5, 15, 360 }, + [32] = { 47, 55.5, 15, 360 }, + [33] = { 44.6, 55.2, 15, 360 }, + [34] = { 45.3, 54.9, 15, 360 }, + [35] = { 33.9, 54.8, 15, 360 }, + [36] = { 40.1, 54.7, 15, 360 }, + [37] = { 36.9, 54.1, 15, 360 }, + [38] = { 43.2, 53.9, 15, 360 }, + [39] = { 43.9, 53, 15, 360 }, + [40] = { 41.5, 52.8, 15, 360 }, + [41] = { 40.2, 52.4, 15, 360 }, + [42] = { 38.5, 52.4, 15, 360 }, + [43] = { 40.9, 51.6, 15, 360 }, + [44] = { 35.8, 51.4, 15, 360 }, + [45] = { 38.9, 51, 15, 360 }, + [46] = { 36.3, 51, 15, 360 }, + [47] = { 41.5, 50.4, 15, 360 }, + [48] = { 41.9, 49.9, 15, 360 }, + [49] = { 41.3, 49, 15, 360 }, + [50] = { 44.1, 49, 15, 360 }, + [51] = { 44.8, 48.7, 15, 360 }, + [52] = { 37.3, 48.5, 15, 360 }, + [53] = { 43.4, 48.2, 15, 360 }, + [54] = { 40.8, 48.2, 15, 360 }, + [55] = { 41.7, 47.6, 15, 360 }, + [56] = { 40.2, 47.4, 15, 360 }, + [57] = { 42, 46.9, 15, 360 }, + [58] = { 43.9, 46.8, 15, 360 }, + [59] = { 39.1, 46.4, 15, 360 }, + [60] = { 46.9, 44.9, 15, 360 }, + [61] = { 48.5, 44.8, 15, 360 }, + [62] = { 42.7, 44.3, 15, 360 }, + [63] = { 37.5, 44.2, 15, 360 }, + [64] = { 41.3, 43.7, 15, 360 }, + [65] = { 41, 43.7, 15, 360 }, + [66] = { 43.3, 43.3, 15, 360 }, + [67] = { 45.9, 43.3, 15, 360 }, + [68] = { 38.2, 43.2, 15, 360 }, + [69] = { 42.1, 43.1, 15, 360 }, + [70] = { 41.5, 43.1, 15, 360 }, + [71] = { 42.6, 42.6, 15, 360 }, + [72] = { 45.5, 42.1, 15, 360 }, + [73] = { 43, 41.8, 15, 360 }, + [74] = { 46, 41.2, 15, 360 }, + [75] = { 35.4, 40.9, 15, 360 }, + [76] = { 40.1, 40.4, 15, 360 }, + [77] = { 41.2, 40.2, 15, 360 }, + [78] = { 46, 39.8, 15, 360 }, + [79] = { 45.6, 38.3, 15, 360 }, + [80] = { 37.4, 38.2, 15, 360 }, + [81] = { 45, 36.6, 15, 360 }, + [82] = { 43.5, 35.2, 15, 360 }, + [83] = { 43.5, 35.1, 15, 360 }, + [84] = { 41.6, 34.8, 15, 360 }, + [85] = { 44, 32.6, 15, 360 }, + [86] = { 44.1, 30.7, 15, 360 }, + [87] = { 44.3, 30.3, 15, 360 }, + [88] = { 45, 28.6, 15, 360 }, + [89] = { 45, 27.3, 15, 360 }, + [90] = { 53.9, 84.7, 17, 360 }, + [91] = { 52.7, 83.9, 17, 360 }, + [92] = { 54.4, 83.3, 17, 360 }, + [93] = { 54.6, 82.8, 17, 360 }, + [94] = { 55.3, 82.8, 17, 360 }, + [95] = { 54, 82.7, 17, 360 }, + [96] = { 53.1, 82.3, 17, 360 }, + [97] = { 54.6, 82, 17, 360 }, + [98] = { 54, 80.6, 17, 360 }, + [99] = { 54.3, 80.4, 17, 360 }, + [100] = { 54.8, 79.1, 17, 360 }, + [101] = { 55, 76.9, 17, 360 }, + [102] = { 55.3, 76.3, 17, 360 }, + [103] = { 53.9, 75.2, 17, 360 }, + [104] = { 54.9, 73.8, 17, 360 }, + }, + ["lvl"] = "37-38", + }, + [4358] = { + ["coords"] = { + [1] = { 56.5, 23.1, 15, 300 }, + [2] = { 57.1, 22.7, 15, 300 }, + [3] = { 57, 21.9, 15, 300 }, + [4] = { 56.8, 21.6, 15, 300 }, + [5] = { 57.3, 21.4, 15, 300 }, + [6] = { 57, 21.4, 15, 300 }, + [7] = { 56.8, 21.4, 15, 300 }, + [8] = { 57.3, 21.3, 15, 300 }, + [9] = { 57.1, 21.2, 15, 300 }, + [10] = { 56.5, 21.1, 15, 300 }, + [11] = { 57.4, 21, 15, 300 }, + [12] = { 56.9, 21, 15, 300 }, + [13] = { 57.9, 21, 15, 300 }, + [14] = { 57.1, 20.9, 15, 300 }, + [15] = { 57.3, 20.8, 15, 300 }, + [16] = { 57.2, 20.5, 15, 300 }, + [17] = { 57.2, 19.9, 15, 300 }, + }, + ["lvl"] = "35-36", + }, + [4359] = { + ["coords"] = { + [1] = { 57.4, 22.4, 15, 300 }, + [2] = { 56.6, 21.5, 15, 300 }, + [3] = { 57.8, 21.4, 15, 300 }, + [4] = { 57.6, 20.4, 15, 300 }, + [5] = { 54.7, 16.5, 15, 300 }, + [6] = { 58.1, 15.9, 15, 300 }, + [7] = { 58, 15.4, 15, 300 }, + [8] = { 58.9, 14.9, 15, 300 }, + [9] = { 57, 21.9, 15, 300 }, + [10] = { 56.8, 21.6, 15, 300 }, + [11] = { 57.3, 21.4, 15, 300 }, + [12] = { 57.1, 21.2, 15, 300 }, + [13] = { 56.5, 21.1, 15, 300 }, + [14] = { 57.4, 21, 15, 300 }, + [15] = { 56.9, 21, 15, 300 }, + [16] = { 57.3, 20.8, 15, 300 }, + [17] = { 57.2, 20.5, 15, 300 }, + }, + ["lvl"] = "35-36", + }, + [4360] = { + ["coords"] = { + [1] = { 64.8, 29.2, 15, 300 }, + [2] = { 63, 29.1, 15, 300 }, + [3] = { 63.6, 29, 15, 300 }, + [4] = { 63.5, 28.2, 15, 300 }, + [5] = { 64.3, 28, 15, 300 }, + [6] = { 63, 28, 15, 300 }, + [7] = { 63.1, 27.4, 15, 300 }, + [8] = { 63.7, 27.2, 15, 300 }, + [9] = { 64.3, 27.2, 15, 300 }, + [10] = { 63, 27, 15, 300 }, + [11] = { 64.5, 26.8, 15, 300 }, + [12] = { 64.3, 26.3, 15, 300 }, + [13] = { 63.1, 26.3, 15, 300 }, + [14] = { 63, 19.5, 15, 300 }, + [15] = { 63.7, 19.4, 15, 300 }, + [16] = { 63.1, 19.1, 15, 300 }, + [17] = { 62.4, 18.7, 15, 300 }, + [18] = { 63.6, 18.6, 15, 300 }, + [19] = { 63.6, 17.6, 15, 300 }, + [20] = { 63, 17.5, 15, 300 }, + [21] = { 57.5, 10.6, 15, 300 }, + [22] = { 58.5, 10.1, 15, 300 }, + [23] = { 58.3, 9.6, 15, 300 }, + [24] = { 59.9, 9, 15, 300 }, + [25] = { 65.3, 59.5, 17, 300 }, + [26] = { 65.8, 59.2, 17, 300 }, + [27] = { 65.7, 58.9, 17, 300 }, + [28] = { 66.5, 58.6, 17, 300 }, + }, + ["lvl"] = "37-38", + }, + [4361] = { + ["coords"] = { + [1] = { 64.4, 29.1, 15, 300 }, + [2] = { 63.9, 27.6, 15, 300 }, + [3] = { 64.4, 26.8, 15, 300 }, + [4] = { 63.6, 26.3, 15, 300 }, + [5] = { 64.9, 26.2, 15, 300 }, + [6] = { 61.7, 19.5, 15, 300 }, + [7] = { 63, 19, 15, 300 }, + [8] = { 63, 18.7, 15, 300 }, + [9] = { 61.6, 18.5, 15, 300 }, + [10] = { 62.3, 17.2, 15, 300 }, + [11] = { 58.4, 16.8, 15, 300 }, + [12] = { 56.1, 16.7, 15, 300 }, + [13] = { 55.4, 16.5, 15, 300 }, + [14] = { 57.1, 16.3, 15, 300 }, + [15] = { 58.7, 16.3, 15, 300 }, + [16] = { 58.2, 16.3, 15, 300 }, + [17] = { 58.5, 16.2, 15, 300 }, + [18] = { 58.3, 16.1, 15, 300 }, + [19] = { 57.5, 15.7, 15, 300 }, + [20] = { 58.5, 15.7, 15, 300 }, + [21] = { 54.2, 15.6, 15, 300 }, + [22] = { 57.3, 15.5, 15, 300 }, + [23] = { 58.4, 15.4, 15, 300 }, + [24] = { 59, 15.4, 15, 300 }, + [25] = { 57.4, 15.3, 15, 300 }, + [26] = { 53.8, 15.2, 15, 300 }, + [27] = { 54.2, 15.1, 15, 300 }, + [28] = { 57, 15, 15, 300 }, + [29] = { 54, 15, 15, 300 }, + [30] = { 54.3, 14.8, 15, 300 }, + [31] = { 58.4, 14.6, 15, 300 }, + [32] = { 54.4, 14, 15, 300 }, + [33] = { 57.1, 11.3, 15, 300 }, + [34] = { 58, 11.2, 15, 300 }, + [35] = { 59.2, 10.8, 15, 300 }, + [36] = { 59.6, 9.8, 15, 300 }, + [37] = { 59.2, 9.7, 15, 300 }, + [38] = { 59.1, 9.1, 15, 300 }, + [39] = { 63.1, 8.9, 15, 300 }, + [40] = { 58.2, 8.7, 15, 300 }, + [41] = { 58.7, 8.3, 15, 300 }, + [42] = { 63.7, 8.3, 15, 300 }, + [43] = { 62.9, 8.1, 15, 300 }, + [44] = { 62.5, 8, 15, 300 }, + [45] = { 59.9, 7.3, 15, 300 }, + [46] = { 63.1, 7.1, 15, 300 }, + [47] = { 63.5, 6.5, 15, 300 }, + [48] = { 63, 6.2, 15, 300 }, + [49] = { 65.1, 59.8, 17, 300 }, + [50] = { 65.5, 59.8, 17, 300 }, + [51] = { 66.2, 59.5, 17, 300 }, + [52] = { 66.4, 59, 17, 300 }, + [53] = { 66.2, 59, 17, 300 }, + [54] = { 66.1, 58.7, 17, 300 }, + [55] = { 68.2, 58.6, 17, 300 }, + [56] = { 65.7, 58.5, 17, 300 }, + [57] = { 65.9, 58.3, 17, 300 }, + [58] = { 68.5, 58.2, 17, 300 }, + [59] = { 68.1, 58.2, 17, 300 }, + [60] = { 67.9, 58.1, 17, 300 }, + [61] = { 66.5, 57.7, 17, 300 }, + [62] = { 68.2, 57.6, 17, 300 }, + [63] = { 68.4, 57.3, 17, 300 }, + [64] = { 68.1, 57.2, 17, 300 }, + [65] = { 63.6, 29, 15, 300 }, + [66] = { 63.5, 28.2, 15, 300 }, + [67] = { 63, 28, 15, 300 }, + [68] = { 64.3, 26.3, 15, 300 }, + [69] = { 63.7, 19.4, 15, 300 }, + [70] = { 58.5, 10.1, 15, 300 }, + [71] = { 65.8, 59.2, 17, 300 }, + }, + ["lvl"] = "36-37", + }, + [4362] = { + ["coords"] = { + [1] = { 64.9, 28.1, 15, 300 }, + [2] = { 64, 28, 15, 300 }, + [3] = { 63.3, 27.2, 15, 300 }, + [4] = { 64.8, 27.1, 15, 300 }, + [5] = { 62.7, 19.6, 15, 300 }, + [6] = { 62.8, 18.9, 15, 300 }, + [7] = { 61.2, 18.4, 15, 300 }, + [8] = { 61.7, 18.2, 15, 300 }, + [9] = { 62.8, 18, 15, 300 }, + [10] = { 61.3, 17.6, 15, 300 }, + [11] = { 62.2, 17.5, 15, 300 }, + [12] = { 57.3, 16.6, 15, 300 }, + [13] = { 56.9, 16.5, 15, 300 }, + [14] = { 55, 16.3, 15, 300 }, + [15] = { 57.9, 16.2, 15, 300 }, + [16] = { 57.4, 16, 15, 300 }, + [17] = { 58.4, 15.9, 15, 300 }, + [18] = { 57.6, 15.9, 15, 300 }, + [19] = { 56.8, 15.6, 15, 300 }, + [20] = { 54.7, 15.6, 15, 300 }, + [21] = { 57.6, 15.2, 15, 300 }, + [22] = { 54, 15.2, 15, 300 }, + [23] = { 57.3, 15.1, 15, 300 }, + [24] = { 57.6, 14.9, 15, 300 }, + [25] = { 54.7, 14.8, 15, 300 }, + [26] = { 57.5, 14.7, 15, 300 }, + [27] = { 64.8, 29.2, 15, 300 }, + [28] = { 63, 29.1, 15, 300 }, + [29] = { 63.1, 27.4, 15, 300 }, + [30] = { 63.7, 27.2, 15, 300 }, + [31] = { 63, 27, 15, 300 }, + [32] = { 64.9, 26.2, 15, 300 }, + [33] = { 63, 18.7, 15, 300 }, + [34] = { 63.6, 17.6, 15, 300 }, + [35] = { 63, 17.5, 15, 300 }, + [36] = { 62.3, 17.2, 15, 300 }, + [37] = { 58.4, 16.8, 15, 300 }, + [38] = { 54.7, 16.5, 15, 300 }, + [39] = { 57.1, 16.3, 15, 300 }, + [40] = { 58.7, 16.3, 15, 300 }, + [41] = { 58.3, 16.1, 15, 300 }, + [42] = { 57.5, 15.7, 15, 300 }, + [43] = { 58.5, 15.7, 15, 300 }, + [44] = { 58, 15.4, 15, 300 }, + [45] = { 58.4, 15.4, 15, 300 }, + [46] = { 54.3, 14.8, 15, 300 }, + [47] = { 54.4, 14, 15, 300 }, + }, + ["lvl"] = "36-37", + }, + [4363] = { + ["coords"] = { + [1] = { 61.7, 18, 15, 300 }, + [2] = { 61.9, 17.5, 15, 300 }, + [3] = { 57.2, 10.7, 15, 300 }, + [4] = { 57.5, 10.4, 15, 300 }, + [5] = { 58, 10.2, 15, 300 }, + [6] = { 59.9, 10, 15, 300 }, + [7] = { 59.1, 9.9, 15, 300 }, + [8] = { 59.6, 9.5, 15, 300 }, + [9] = { 63.1, 7.3, 15, 300 }, + [10] = { 62.4, 7.2, 15, 300 }, + [11] = { 62.9, 7, 15, 300 }, + [12] = { 63.4, 7, 15, 300 }, + [13] = { 63.8, 7, 15, 300 }, + [14] = { 65.1, 59.5, 17, 300 }, + [15] = { 65.3, 59.3, 17, 300 }, + [16] = { 65.5, 59.2, 17, 300 }, + [17] = { 66.5, 59.1, 17, 300 }, + [18] = { 66.1, 59.1, 17, 300 }, + [19] = { 66.4, 58.9, 17, 300 }, + [20] = { 68.2, 57.7, 17, 300 }, + [21] = { 67.8, 57.7, 17, 300 }, + [22] = { 68.1, 57.6, 17, 300 }, + [23] = { 68.4, 57.6, 17, 300 }, + [24] = { 68.6, 57.6, 17, 300 }, + [25] = { 64.4, 29.1, 15, 300 }, + [26] = { 64.3, 28, 15, 300 }, + [27] = { 64, 28, 15, 300 }, + [28] = { 63.9, 27.6, 15, 300 }, + [29] = { 63.3, 27.2, 15, 300 }, + [30] = { 64.3, 27.2, 15, 300 }, + [31] = { 64.4, 26.8, 15, 300 }, + [32] = { 64.5, 26.8, 15, 300 }, + [33] = { 63.1, 19.1, 15, 300 }, + [34] = { 63, 19, 15, 300 }, + [35] = { 62.4, 18.7, 15, 300 }, + [36] = { 63.6, 18.6, 15, 300 }, + [37] = { 62.8, 18, 15, 300 }, + [38] = { 57.1, 11.3, 15, 300 }, + [39] = { 59.2, 10.8, 15, 300 }, + [40] = { 58.3, 9.6, 15, 300 }, + [41] = { 65.1, 59.8, 17, 300 }, + [42] = { 66.2, 59.5, 17, 300 }, + [43] = { 65.7, 58.9, 17, 300 }, + }, + ["lvl"] = "37-38", + }, + [4366] = { + ["coords"] = { + [1] = { 75.6, 22, 15, 1200 }, + [2] = { 76.3, 19.5, 15, 1200 }, + [3] = { 75.7, 18.5, 15, 1200 }, + [4] = { 75.1, 17.7, 15, 1200 }, + [5] = { 74.3, 16.7, 15, 1200 }, + [6] = { 75.2, 14.5, 15, 1200 }, + [7] = { 75.1, 14.2, 15, 1200 }, + }, + ["lvl"] = "59-61", + ["rnk"] = "1", + }, + [4368] = { + ["coords"] = { + [1] = { 77.1, 19.5, 15, 1200 }, + [2] = { 77.4, 19, 15, 1200 }, + [3] = { 77.2, 18.9, 15, 1200 }, + [4] = { 76.4, 18.4, 15, 1200 }, + [5] = { 76.5, 17.7, 15, 1200 }, + [6] = { 76.6, 17.6, 15, 1200 }, + [7] = { 76.9, 17.1, 15, 1200 }, + }, + ["lvl"] = "60-61", + ["rnk"] = "1", + }, + [4376] = { + ["coords"] = { + [1] = { 34.6, 25.3, 15, 360 }, + [2] = { 35.1, 24.3, 15, 360 }, + [3] = { 34.8, 24.3, 15, 360 }, + [4] = { 34.3, 24.1, 15, 360 }, + [5] = { 32.5, 23.3, 15, 360 }, + [6] = { 34.3, 23.1, 15, 360 }, + [7] = { 35.1, 22.5, 15, 360 }, + [8] = { 33.9, 22.4, 15, 360 }, + [9] = { 32.3, 22.3, 15, 360 }, + [10] = { 31.5, 22, 15, 360 }, + [11] = { 34.1, 21.9, 15, 360 }, + [12] = { 31.3, 21.9, 15, 360 }, + [13] = { 30.3, 21.8, 15, 360 }, + [14] = { 35, 21.5, 15, 360 }, + [15] = { 34.5, 21.4, 15, 360 }, + [16] = { 30.2, 21.3, 15, 360 }, + [17] = { 35, 20.3, 15, 360 }, + [18] = { 30.8, 20.3, 15, 360 }, + [19] = { 53.4, 67.1, 17, 360 }, + [20] = { 53.7, 66.6, 17, 360 }, + [21] = { 53.5, 66.5, 17, 360 }, + [22] = { 53.3, 66.5, 17, 360 }, + [23] = { 52.3, 66, 17, 360 }, + [24] = { 53.3, 65.9, 17, 360 }, + [25] = { 53.7, 65.6, 17, 360 }, + [26] = { 53, 65.6, 17, 360 }, + [27] = { 52.3, 65.5, 17, 360 }, + [28] = { 51.8, 65.3, 17, 360 }, + [29] = { 53.2, 65.3, 17, 360 }, + [30] = { 51.7, 65.3, 17, 360 }, + [31] = { 51.2, 65.2, 17, 360 }, + [32] = { 53.7, 65.1, 17, 360 }, + [33] = { 53.4, 65.1, 17, 360 }, + [34] = { 51.2, 65, 17, 360 }, + [35] = { 53.6, 64.5, 17, 360 }, + [36] = { 51.5, 64.5, 17, 360 }, + }, + ["lvl"] = "35-36", + }, + [4377] = { + ["coords"] = { + [1] = { 33, 22.8, 15, 360 }, + [2] = { 32.6, 22.6, 15, 360 }, + [3] = { 32.5, 22.5, 15, 120 }, + [4] = { 31.9, 22.3, 15, 360 }, + [5] = { 52.6, 65.8, 17, 360 }, + [6] = { 52.4, 65.7, 17, 360 }, + [7] = { 52.4, 65.6, 17, 120 }, + [8] = { 52.1, 65.5, 17, 360 }, + [9] = { 32.5, 23.3, 15, 360 }, + [10] = { 52.3, 66, 17, 360 }, + }, + ["lvl"] = "37-38", + }, + [4378] = { + ["coords"] = { + [1] = { 34.9, 23.1, 15, 360 }, + [2] = { 34.1, 22.9, 15, 360 }, + [3] = { 30.7, 22.3, 15, 360 }, + [4] = { 31.3, 22, 15, 360 }, + [5] = { 33.8, 21.3, 15, 360 }, + [6] = { 32.8, 21.3, 15, 360 }, + [7] = { 34.5, 20.9, 15, 360 }, + [8] = { 33.6, 20.6, 15, 360 }, + [9] = { 30.6, 20.3, 15, 360 }, + [10] = { 53.6, 65.9, 17, 360 }, + [11] = { 53.2, 65.8, 17, 360 }, + [12] = { 51.4, 65.5, 17, 360 }, + [13] = { 51.7, 65.4, 17, 360 }, + [14] = { 53, 65, 17, 360 }, + [15] = { 52.5, 65, 17, 360 }, + [16] = { 53.4, 64.8, 17, 360 }, + [17] = { 52.9, 64.6, 17, 360 }, + [18] = { 51.4, 64.5, 17, 360 }, + [19] = { 34.3, 24.1, 15, 360 }, + [20] = { 32.6, 22.6, 15, 360 }, + [21] = { 35.1, 22.5, 15, 360 }, + [22] = { 34.1, 21.9, 15, 360 }, + [23] = { 35, 21.5, 15, 360 }, + [24] = { 35, 20.3, 15, 360 }, + [25] = { 53.3, 66.5, 17, 360 }, + [26] = { 52.4, 65.7, 17, 360 }, + [27] = { 53.7, 65.6, 17, 360 }, + [28] = { 53.2, 65.3, 17, 360 }, + [29] = { 53.7, 65.1, 17, 360 }, + [30] = { 53.6, 64.5, 17, 360 }, + }, + ["lvl"] = "36-37", + }, + [4379] = { + ["coords"] = { + [1] = { 34.8, 22.8, 15, 360 }, + [2] = { 31.5, 22.6, 15, 360 }, + [3] = { 31.1, 22.5, 15, 360 }, + [4] = { 32, 22.5, 15, 360 }, + [5] = { 30.8, 22.4, 15, 360 }, + [6] = { 34.4, 22.3, 15, 360 }, + [7] = { 31.8, 21.5, 15, 360 }, + [8] = { 31.2, 21.5, 15, 360 }, + [9] = { 35.7, 21.1, 15, 360 }, + [10] = { 30.6, 20.8, 15, 360 }, + [11] = { 53.5, 65.8, 17, 360 }, + [12] = { 51.8, 65.7, 17, 360 }, + [13] = { 51.6, 65.6, 17, 360 }, + [14] = { 52.1, 65.6, 17, 360 }, + [15] = { 51.5, 65.6, 17, 360 }, + [16] = { 53.3, 65.5, 17, 360 }, + [17] = { 52, 65.1, 17, 360 }, + [18] = { 51.7, 65.1, 17, 360 }, + [19] = { 54, 64.9, 17, 360 }, + [20] = { 51.4, 64.8, 17, 360 }, + [21] = { 34.8, 24.3, 15, 360 }, + [22] = { 34.3, 23.1, 15, 360 }, + [23] = { 34.9, 23.1, 15, 360 }, + [24] = { 33, 22.8, 15, 360 }, + [25] = { 30.7, 22.3, 15, 360 }, + [26] = { 31.9, 22.3, 15, 360 }, + [27] = { 32.3, 22.3, 15, 360 }, + [28] = { 31.5, 22, 15, 360 }, + [29] = { 31.3, 21.9, 15, 360 }, + [30] = { 33.8, 21.3, 15, 360 }, + [31] = { 32.8, 21.3, 15, 360 }, + [32] = { 34.5, 20.9, 15, 360 }, + [33] = { 33.6, 20.6, 15, 360 }, + [34] = { 30.8, 20.3, 15, 360 }, + [35] = { 53.5, 66.5, 17, 360 }, + [36] = { 53.3, 65.9, 17, 360 }, + [37] = { 53.6, 65.9, 17, 360 }, + [38] = { 52.6, 65.8, 17, 360 }, + [39] = { 51.4, 65.5, 17, 360 }, + [40] = { 52.1, 65.5, 17, 360 }, + [41] = { 52.3, 65.5, 17, 360 }, + [42] = { 51.8, 65.3, 17, 360 }, + [43] = { 51.7, 65.3, 17, 360 }, + [44] = { 53, 65, 17, 360 }, + [45] = { 52.5, 65, 17, 360 }, + [46] = { 53.4, 64.8, 17, 360 }, + [47] = { 52.9, 64.6, 17, 360 }, + [48] = { 51.5, 64.5, 17, 360 }, + }, + ["lvl"] = "38-39", + }, + [4380] = { + ["coords"] = { + [1] = { 31.2, 20.4, 15, 27000 }, + [2] = { 51.6, 64.5, 17, 27000 }, + }, + ["lvl"] = "40", + ["rnk"] = "4", + }, + [4390] = { + ["coords"] = { + [1] = { 66.9, 65.8, 15, 120 }, + [2] = { 63.8, 65.3, 15, 120 }, + [3] = { 64.8, 65.2, 15, 120 }, + [4] = { 66.2, 64.2, 15, 120 }, + [5] = { 64.5, 63.9, 15, 120 }, + [6] = { 69.5, 62.7, 15, 120 }, + [7] = { 68, 62.6, 15, 120 }, + [8] = { 71.3, 62.5, 15, 120 }, + [9] = { 70.8, 62.3, 15, 120 }, + [10] = { 66.8, 62.3, 15, 120 }, + [11] = { 72, 60.7, 15, 120 }, + }, + ["lvl"] = "43-45", + }, + [4391] = { + ["coords"] = { + [1] = { 47.9, 60.3, 15, 360 }, + [2] = { 42.1, 57.7, 15, 360 }, + [3] = { 37.1, 57.6, 15, 360 }, + [4] = { 47.9, 57.2, 15, 360 }, + [5] = { 37.7, 55.1, 15, 360 }, + [6] = { 43.8, 55.1, 15, 360 }, + [7] = { 40.5, 53.4, 15, 360 }, + [8] = { 34.1, 52.8, 15, 360 }, + [9] = { 36.8, 52.2, 15, 360 }, + [10] = { 42.1, 51.5, 15, 360 }, + [11] = { 38.5, 51.2, 15, 360 }, + [12] = { 36.6, 49.1, 15, 360 }, + [13] = { 35.2, 48.7, 15, 360 }, + [14] = { 54.7, 83.8, 17, 360 }, + [15] = { 55, 82.5, 17, 360 }, + [16] = { 53.2, 81.3, 17, 360 }, + [17] = { 54.6, 81, 17, 360 }, + [18] = { 54.5, 79.4, 17, 360 }, + [19] = { 53.7, 79.2, 17, 360 }, + [20] = { 49.5, 63.7, 15, 360 }, + [21] = { 48.3, 63.3, 15, 360 }, + [22] = { 42.2, 63.1, 15, 360 }, + [23] = { 48.1, 62.4, 15, 360 }, + [24] = { 48.9, 62.1, 15, 360 }, + [25] = { 46.6, 61.9, 15, 360 }, + [26] = { 43.3, 61.7, 15, 360 }, + [27] = { 48.5, 61.6, 15, 360 }, + [28] = { 43.8, 60.7, 15, 360 }, + [29] = { 41.5, 60.4, 15, 360 }, + [30] = { 40.2, 60.1, 15, 360 }, + [31] = { 45.6, 60, 15, 360 }, + [32] = { 41.9, 59.8, 15, 360 }, + [33] = { 49.6, 59.5, 15, 360 }, + [34] = { 35.4, 59.4, 15, 360 }, + [35] = { 47.9, 59.3, 15, 360 }, + [36] = { 48.2, 59.2, 15, 360 }, + [37] = { 48.8, 59, 15, 360 }, + [38] = { 33.2, 57.8, 15, 360 }, + [39] = { 39.8, 57.2, 15, 360 }, + [40] = { 36.4, 56.7, 15, 360 }, + [41] = { 45.7, 56.1, 15, 360 }, + [42] = { 39.6, 55.6, 15, 360 }, + [43] = { 35.8, 55.5, 15, 360 }, + [44] = { 47, 55.5, 15, 360 }, + [45] = { 45.3, 54.9, 15, 360 }, + [46] = { 33.9, 54.8, 15, 360 }, + [47] = { 40.1, 54.7, 15, 360 }, + [48] = { 36.9, 54.1, 15, 360 }, + [49] = { 43.2, 53.9, 15, 360 }, + [50] = { 43.9, 53, 15, 360 }, + [51] = { 38.5, 52.4, 15, 360 }, + [52] = { 35.8, 51.4, 15, 360 }, + [53] = { 41.3, 49, 15, 360 }, + [54] = { 44.1, 49, 15, 360 }, + [55] = { 44.8, 48.7, 15, 360 }, + [56] = { 43.4, 48.2, 15, 360 }, + [57] = { 40.8, 48.2, 15, 360 }, + [58] = { 41.7, 47.6, 15, 360 }, + [59] = { 40.2, 47.4, 15, 360 }, + [60] = { 42, 46.9, 15, 360 }, + [61] = { 43.9, 46.8, 15, 360 }, + [62] = { 39.1, 46.4, 15, 360 }, + [63] = { 53.9, 84.7, 17, 360 }, + [64] = { 52.7, 83.9, 17, 360 }, + [65] = { 54.4, 83.3, 17, 360 }, + [66] = { 54, 82.7, 17, 360 }, + [67] = { 53.1, 82.3, 17, 360 }, + [68] = { 54.6, 82, 17, 360 }, + [69] = { 54, 80.6, 17, 360 }, + }, + ["lvl"] = "37-39", + }, + [4392] = { + ["coords"] = { + [1] = { 51.5, 59.3, 15, 120 }, + [2] = { 52.9, 58.6, 15, 120 }, + [3] = { 52.2, 58.5, 15, 120 }, + [4] = { 53.5, 58.4, 15, 120 }, + [5] = { 54, 57.9, 15, 120 }, + [6] = { 50.5, 57.6, 15, 120 }, + [7] = { 51.7, 57.5, 15, 120 }, + [8] = { 50.6, 57.2, 15, 120 }, + [9] = { 51.3, 56.5, 15, 120 }, + [10] = { 52.9, 56.1, 15, 120 }, + [11] = { 52.1, 56, 15, 360 }, + [12] = { 51.5, 55.6, 15, 120 }, + [13] = { 49.3, 55.5, 15, 360 }, + [14] = { 48.4, 54.8, 15, 360 }, + [15] = { 53.4, 54.7, 15, 360 }, + [16] = { 54.7, 54.5, 15, 360 }, + [17] = { 52.2, 54.3, 15, 120 }, + [18] = { 52.8, 54, 15, 120 }, + [19] = { 54, 53.7, 15, 360 }, + [20] = { 48.8, 53.6, 15, 120 }, + [21] = { 53.5, 53, 15, 120 }, + [22] = { 52.5, 52.6, 15, 120 }, + [23] = { 53, 52.1, 15, 360 }, + [24] = { 46.3, 52, 15, 360 }, + [25] = { 49, 51.9, 15, 120 }, + [26] = { 51.4, 51.9, 15, 120 }, + [27] = { 47.8, 51.5, 15, 360 }, + [28] = { 51.2, 51.4, 15, 360 }, + [29] = { 49.6, 51.1, 15, 120 }, + [30] = { 50.1, 50.4, 15, 120 }, + [31] = { 45.6, 50, 15, 120 }, + [32] = { 49.2, 49.9, 15, 360 }, + [33] = { 45.5, 44.7, 15, 120 }, + }, + ["lvl"] = "38-40", + }, + [4393] = { + ["coords"] = { + [1] = { 51.5, 59.3, 15, 120 }, + [2] = { 52.9, 58.6, 15, 120 }, + [3] = { 52.2, 58.5, 15, 120 }, + [4] = { 53.5, 58.4, 15, 120 }, + [5] = { 54, 57.9, 15, 120 }, + [6] = { 50.5, 57.6, 15, 120 }, + [7] = { 51.7, 57.5, 15, 120 }, + [8] = { 50.6, 57.2, 15, 120 }, + [9] = { 51.3, 56.5, 15, 120 }, + [10] = { 52.9, 56.1, 15, 120 }, + [11] = { 52.1, 56, 15, 360 }, + [12] = { 51.5, 55.6, 15, 120 }, + [13] = { 49.3, 55.5, 15, 360 }, + [14] = { 48.4, 54.8, 15, 360 }, + [15] = { 53.4, 54.7, 15, 360 }, + [16] = { 54.7, 54.5, 15, 360 }, + [17] = { 52.2, 54.3, 15, 120 }, + [18] = { 52.8, 54, 15, 120 }, + [19] = { 54, 53.7, 15, 360 }, + [20] = { 48.8, 53.6, 15, 120 }, + [21] = { 53.5, 53, 15, 120 }, + [22] = { 52.5, 52.6, 15, 120 }, + [23] = { 53, 52.1, 15, 360 }, + [24] = { 46.3, 52, 15, 360 }, + [25] = { 49, 51.9, 15, 120 }, + [26] = { 51.4, 51.9, 15, 120 }, + [27] = { 47.8, 51.5, 15, 360 }, + [28] = { 51.2, 51.4, 15, 360 }, + [29] = { 49.6, 51.1, 15, 120 }, + [30] = { 50.1, 50.4, 15, 120 }, + [31] = { 45.6, 50, 15, 120 }, + [32] = { 49.2, 49.9, 15, 360 }, + [33] = { 45.5, 44.7, 15, 120 }, + }, + ["lvl"] = "39-41", + }, + [4395] = "_", + [4396] = { + ["coords"] = { + [1] = { 64.8, 40.8, 15, 360 }, + [2] = { 64.7, 39.7, 15, 360 }, + [3] = { 63.5, 38.2, 15, 360 }, + [4] = { 63.3, 36.4, 15, 360 }, + [5] = { 62.8, 33.8, 15, 360 }, + [6] = { 62.2, 33.5, 15, 360 }, + [7] = { 61.7, 30.8, 15, 360 }, + [8] = { 64.2, 30.6, 15, 360 }, + [9] = { 65.3, 30.1, 15, 360 }, + [10] = { 63.4, 29.3, 15, 360 }, + [11] = { 62.2, 28.8, 15, 360 }, + [12] = { 65.6, 28.1, 15, 360 }, + [13] = { 61.4, 27.3, 15, 360 }, + [14] = { 62, 26.6, 15, 360 }, + [15] = { 63.8, 25.4, 15, 360 }, + [16] = { 62.4, 25.1, 15, 360 }, + [17] = { 65, 24.8, 15, 360 }, + [18] = { 61.9, 22.7, 15, 360 }, + [19] = { 61.4, 21, 15, 360 }, + [20] = { 64.1, 20.4, 15, 360 }, + [21] = { 63.3, 20.1, 15, 360 }, + [22] = { 60.4, 16.5, 15, 360 }, + [23] = { 60, 15.4, 15, 360 }, + [24] = { 54.5, 13.5, 15, 360 }, + [25] = { 54.3, 12.9, 15, 360 }, + [26] = { 54.7, 12.5, 15, 360 }, + [27] = { 54.3, 11.4, 15, 360 }, + [28] = { 60.3, 10.9, 15, 360 }, + [29] = { 63.6, 59.9, 17, 360 }, + [30] = { 66.8, 59.6, 17, 360 }, + }, + ["lvl"] = "36-37", + }, + [4397] = { + ["coords"] = { + [1] = { 65, 42.2, 15, 360 }, + [2] = { 63.2, 37.5, 15, 360 }, + [3] = { 63.1, 35.7, 15, 360 }, + [4] = { 62.1, 31.1, 15, 360 }, + [5] = { 65.9, 30.6, 15, 180 }, + [6] = { 64.2, 30.2, 15, 180 }, + [7] = { 63.1, 30, 15, 180 }, + [8] = { 62.4, 28.6, 15, 180 }, + [9] = { 61.8, 28.2, 15, 180 }, + [10] = { 66.1, 28.1, 15, 180 }, + [11] = { 63.1, 25.9, 15, 360 }, + [12] = { 62.2, 20.8, 15, 360 }, + [13] = { 63.6, 20.2, 15, 360 }, + [14] = { 60.3, 19.3, 15, 360 }, + [15] = { 64.4, 18.7, 15, 360 }, + [16] = { 60.2, 18.6, 15, 360 }, + [17] = { 63.3, 17.1, 15, 360 }, + [18] = { 55.8, 15.9, 15, 360 }, + [19] = { 62.4, 15.7, 15, 360 }, + [20] = { 59.6, 14.5, 15, 360 }, + [21] = { 55.1, 14.3, 15, 360 }, + [22] = { 55, 13.2, 15, 360 }, + [23] = { 61.1, 11.1, 15, 360 }, + [24] = { 62.2, 10.1, 15, 360 }, + [25] = { 56.7, 9.2, 15, 360 }, + [26] = { 62.1, 9.1, 15, 360 }, + [27] = { 56.1, 9.1, 15, 275 }, + [28] = { 64.3, 9, 15, 360 }, + [29] = { 60.2, 8.7, 15, 360 }, + [30] = { 57.6, 8.7, 15, 360 }, + [31] = { 57.5, 7.8, 15, 360 }, + [32] = { 60, 7.7, 15, 360 }, + [33] = { 61.9, 7.7, 15, 360 }, + [34] = { 61.1, 7.6, 15, 360 }, + [35] = { 60.9, 7.6, 15, 360 }, + [36] = { 64.6, 7.2, 15, 360 }, + [37] = { 59.1, 6.8, 15, 360 }, + [38] = { 57.9, 6.4, 15, 360 }, + [39] = { 62.5, 5.6, 15, 360 }, + [40] = { 63, 5.3, 15, 360 }, + [41] = { 67.2, 59.7, 17, 360 }, + [42] = { 67.7, 59.2, 17, 360 }, + [43] = { 64.9, 58.7, 17, 360 }, + [44] = { 67.7, 58.7, 17, 360 }, + [45] = { 64.6, 58.7, 17, 275 }, + [46] = { 68.8, 58.6, 17, 360 }, + [47] = { 66.7, 58.5, 17, 360 }, + [48] = { 65.3, 58.4, 17, 360 }, + [49] = { 65.3, 58, 17, 360 }, + [50] = { 66.6, 57.9, 17, 360 }, + [51] = { 67.6, 57.9, 17, 360 }, + [52] = { 67.2, 57.9, 17, 360 }, + [53] = { 67.1, 57.9, 17, 360 }, + [54] = { 69, 57.7, 17, 360 }, + [55] = { 66.1, 57.5, 17, 360 }, + [56] = { 65.5, 57.3, 17, 360 }, + [57] = { 67.9, 56.9, 17, 360 }, + [58] = { 68.1, 56.7, 17, 360 }, + [59] = { 64.8, 40.8, 15, 360 }, + [60] = { 64.7, 39.7, 15, 360 }, + [61] = { 63.5, 38.2, 15, 360 }, + [62] = { 63.3, 36.4, 15, 360 }, + [63] = { 62.8, 33.8, 15, 360 }, + [64] = { 61.7, 30.8, 15, 360 }, + [65] = { 64.2, 30.6, 15, 360 }, + [66] = { 65.3, 30.1, 15, 360 }, + [67] = { 63.4, 29.3, 15, 360 }, + [68] = { 62, 26.6, 15, 360 }, + [69] = { 63.8, 25.4, 15, 360 }, + [70] = { 62.4, 25.1, 15, 360 }, + [71] = { 61.9, 22.7, 15, 360 }, + [72] = { 61.4, 21, 15, 360 }, + [73] = { 64.1, 20.4, 15, 360 }, + [74] = { 63.3, 20.1, 15, 360 }, + [75] = { 60.4, 16.5, 15, 360 }, + [76] = { 54.3, 12.9, 15, 360 }, + [77] = { 54.7, 12.5, 15, 360 }, + [78] = { 54.3, 11.4, 15, 360 }, + [79] = { 63.6, 59.9, 17, 360 }, + }, + ["lvl"] = "37-38", + }, + [4401] = { + ["coords"] = { + [1] = { 56.7, 63.4, 15, 360 }, + [2] = { 54.2, 63.3, 15, 360 }, + [3] = { 54.6, 63.2, 15, 360 }, + [4] = { 55.9, 61.6, 15, 360 }, + [5] = { 56.7, 61.4, 15, 360 }, + [6] = { 58, 49.5, 15, 360 }, + [7] = { 59.2, 47.1, 15, 360 }, + [8] = { 58.6, 46.4, 15, 360 }, + [9] = { 54.2, 46.1, 15, 360 }, + [10] = { 61.1, 46, 15, 360 }, + [11] = { 59.2, 46, 15, 360 }, + [12] = { 56.1, 45.3, 15, 360 }, + [13] = { 58.4, 45.2, 15, 360 }, + [14] = { 59.3, 45, 15, 360 }, + [15] = { 58.7, 44.5, 15, 360 }, + [16] = { 59.2, 44.2, 15, 360 }, + [17] = { 52.6, 44.1, 15, 360 }, + [18] = { 54, 44, 15, 360 }, + [19] = { 55.9, 43.7, 15, 360 }, + [20] = { 54.1, 42.4, 15, 360 }, + [21] = { 53.3, 39.8, 15, 360 }, + [22] = { 51.8, 39.7, 15, 360 }, + [23] = { 50.5, 38.7, 15, 360 }, + [24] = { 49.3, 37.3, 15, 360 }, + [25] = { 47.7, 32.9, 15, 360 }, + [26] = { 49.3, 32.4, 15, 360 }, + [27] = { 48.6, 31.6, 15, 120 }, + [28] = { 52, 43.5, 15, 360 }, + [29] = { 51.3, 39.1, 15, 360 }, + }, + ["lvl"] = "39-40", + }, + [4403] = { + ["coords"] = { + [1] = { 62.4, 70, 15, 360 }, + [2] = { 60, 69.2, 15, 360 }, + [3] = { 61.4, 68.9, 15, 360 }, + [4] = { 60.4, 68.9, 15, 360 }, + [5] = { 59.3, 68.8, 15, 360 }, + [6] = { 62.3, 68.3, 15, 360 }, + [7] = { 59.8, 68, 15, 360 }, + [8] = { 60.6, 68, 15, 360 }, + [9] = { 59.2, 67.9, 15, 360 }, + [10] = { 59.1, 67.3, 15, 360 }, + [11] = { 60.5, 67.2, 15, 360 }, + [12] = { 60.9, 67.2, 15, 360 }, + [13] = { 59.9, 67.1, 15, 360 }, + [14] = { 63.2, 66.8, 15, 360 }, + [15] = { 66.2, 66.7, 15, 300 }, + [16] = { 61.1, 66.2, 15, 360 }, + [17] = { 59.9, 66.1, 15, 360 }, + [18] = { 62.5, 65.8, 15, 360 }, + [19] = { 55.4, 64.2, 15, 360 }, + [20] = { 55.4, 63.3, 15, 360 }, + [21] = { 60.2, 63, 15, 360 }, + [22] = { 55.3, 62.5, 15, 360 }, + [23] = { 54.9, 62.5, 15, 360 }, + [24] = { 55.5, 61.5, 15, 360 }, + [25] = { 59.7, 61.1, 15, 360 }, + [26] = { 60.5, 59.2, 15, 360 }, + }, + ["lvl"] = "41-42", + }, + [4404] = { + ["coords"] = { + [1] = { 61.1, 68, 15, 360 }, + [2] = { 61.6, 67.2, 15, 360 }, + [3] = { 56.2, 65, 15, 360 }, + [4] = { 53.4, 64.2, 15, 360 }, + [5] = { 54.6, 64.2, 15, 360 }, + [6] = { 56, 64.2, 15, 360 }, + [7] = { 55.7, 63.6, 15, 360 }, + [8] = { 55.6, 62.9, 15, 360 }, + [9] = { 55.9, 62.9, 15, 120 }, + [10] = { 55.9, 62.8, 15, 360 }, + [11] = { 56.6, 62.4, 15, 360 }, + [12] = { 56.3, 62.2, 15, 360 }, + [13] = { 56.5, 46.8, 15, 360 }, + [14] = { 54.9, 46.4, 15, 360 }, + [15] = { 57.7, 43.2, 15, 360 }, + [16] = { 50.6, 41.8, 15, 360 }, + [17] = { 53.2, 41.3, 15, 360 }, + [18] = { 49.1, 39.3, 15, 360 }, + [19] = { 60, 69.2, 15, 360 }, + [20] = { 60.4, 68.9, 15, 360 }, + [21] = { 59.3, 68.8, 15, 360 }, + [22] = { 59.8, 68, 15, 360 }, + [23] = { 60.6, 68, 15, 360 }, + [24] = { 59.2, 67.9, 15, 360 }, + [25] = { 59.1, 67.3, 15, 360 }, + [26] = { 60.9, 67.2, 15, 360 }, + [27] = { 59.9, 67.1, 15, 360 }, + [28] = { 55.4, 63.3, 15, 360 }, + [29] = { 55.3, 62.5, 15, 360 }, + [30] = { 54.9, 62.5, 15, 360 }, + [31] = { 55.9, 61.6, 15, 360 }, + [32] = { 54, 44, 15, 360 }, + }, + ["lvl"] = "42-43", + }, + [4405] = { + ["coords"] = { + [1] = { 55.4, 64.2, 15, 360 }, + [2] = { 53.4, 64.2, 15, 360 }, + [3] = { 56, 64.2, 15, 360 }, + [4] = { 55.6, 62.9, 15, 360 }, + [5] = { 55.9, 62.9, 15, 120 }, + [6] = { 55.9, 62.8, 15, 360 }, + [7] = { 56.6, 62.4, 15, 360 }, + [8] = { 55.5, 61.5, 15, 360 }, + [9] = { 56.7, 61.4, 15, 360 }, + }, + ["lvl"] = "43-44", + }, + [4407] = { + ["coords"] = { + [1] = { 41.3, 18.9, 406, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [4409] = { + ["coords"] = { + [1] = { 35.5, 26.1, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + ["rnk"] = "1", + }, + [4411] = { + ["coords"] = { + [1] = { 34, 46, 15, 360 }, + [2] = { 36.8, 45.2, 15, 360 }, + [3] = { 35.4, 45.2, 15, 360 }, + [4] = { 34.7, 41.8, 15, 360 }, + [5] = { 38.3, 40.7, 15, 360 }, + [6] = { 39.2, 39.5, 15, 360 }, + [7] = { 62.9, 39.3, 15, 360 }, + [8] = { 44.2, 37.6, 15, 360 }, + [9] = { 57.4, 34.6, 15, 360 }, + [10] = { 55.3, 34.3, 15, 360 }, + [11] = { 56.2, 33.3, 15, 360 }, + [12] = { 53.3, 32.1, 15, 360 }, + [13] = { 52.3, 31.9, 15, 360 }, + [14] = { 52.8, 30.8, 15, 360 }, + [15] = { 47.9, 25.9, 15, 360 }, + [16] = { 58.8, 25.5, 15, 360 }, + [17] = { 52.8, 23.8, 15, 360 }, + [18] = { 49.6, 23.4, 15, 360 }, + [19] = { 53.2, 22.9, 15, 360 }, + [20] = { 42.5, 22.6, 15, 360 }, + [21] = { 38.9, 21.3, 15, 360 }, + [22] = { 43.3, 21, 15, 360 }, + [23] = { 40.5, 20.5, 15, 360 }, + [24] = { 39.4, 14.8, 15, 360 }, + [25] = { 52.6, 12.8, 15, 360 }, + [26] = { 53.1, 77.8, 17, 360 }, + [27] = { 54.6, 77.4, 17, 360 }, + [28] = { 53.9, 77.4, 17, 360 }, + [29] = { 53.5, 75.6, 17, 360 }, + [30] = { 55.3, 75.1, 17, 360 }, + [31] = { 55.9, 61.6, 17, 360 }, + [32] = { 62.8, 60.6, 17, 360 }, + [33] = { 46.9, 44.9, 15, 360 }, + [34] = { 42.7, 44.3, 15, 360 }, + [35] = { 37.5, 44.2, 15, 360 }, + [36] = { 41.3, 43.7, 15, 360 }, + [37] = { 41, 43.7, 15, 360 }, + [38] = { 43.3, 43.3, 15, 360 }, + [39] = { 45.9, 43.3, 15, 360 }, + [40] = { 38.2, 43.2, 15, 360 }, + [41] = { 42.1, 43.1, 15, 360 }, + [42] = { 41.5, 43.1, 15, 360 }, + [43] = { 42.6, 42.6, 15, 360 }, + [44] = { 45.5, 42.1, 15, 360 }, + [45] = { 46, 41.2, 15, 360 }, + [46] = { 40.1, 40.4, 15, 360 }, + [47] = { 63.6, 40.2, 15, 360 }, + [48] = { 41.2, 40.2, 15, 360 }, + [49] = { 46, 39.8, 15, 360 }, + [50] = { 61.5, 36.8, 15, 360 }, + [51] = { 45, 36.6, 15, 360 }, + [52] = { 44.1, 30.7, 15, 360 }, + [53] = { 45, 27.3, 15, 360 }, + [54] = { 49.6, 26.7, 15, 360 }, + [55] = { 60, 24.6, 15, 360 }, + [56] = { 56.3, 23.5, 15, 360 }, + [57] = { 44.1, 21.2, 15, 360 }, + [58] = { 38.9, 19.6, 15, 360 }, + [59] = { 41.5, 19.3, 15, 360 }, + [60] = { 40.8, 18.8, 15, 360 }, + [61] = { 40.2, 17.6, 15, 360 }, + [62] = { 51.3, 12.9, 15, 360 }, + [63] = { 55, 76.9, 17, 360 }, + [64] = { 55.3, 76.3, 17, 360 }, + [65] = { 62.1, 60.7, 17, 360 }, + }, + ["lvl"] = "36-37", + }, + [4412] = { + ["coords"] = { + [1] = { 44.4, 53.5, 15, 360 }, + [2] = { 38.2, 36.4, 15, 360 }, + [3] = { 55.3, 72.8, 17, 360 }, + [4] = { 49, 60.6, 15, 360 }, + [5] = { 44.9, 60.4, 15, 360 }, + [6] = { 41.7, 59.2, 15, 360 }, + [7] = { 37.1, 57.6, 15, 360 }, + [8] = { 40.4, 56.3, 15, 360 }, + [9] = { 36.9, 55.8, 15, 360 }, + [10] = { 38.2, 55.7, 15, 360 }, + [11] = { 44.6, 55.2, 15, 360 }, + [12] = { 43.8, 55.1, 15, 360 }, + [13] = { 40.5, 53.4, 15, 360 }, + [14] = { 41.5, 52.8, 15, 360 }, + [15] = { 40.2, 52.4, 15, 360 }, + [16] = { 36.8, 52.2, 15, 360 }, + [17] = { 38.5, 51.2, 15, 360 }, + [18] = { 38.9, 51, 15, 360 }, + [19] = { 41.5, 50.4, 15, 360 }, + [20] = { 41.9, 49.9, 15, 360 }, + [21] = { 36.6, 49.1, 15, 360 }, + [22] = { 35.4, 45.2, 15, 360 }, + [23] = { 54.7, 83.8, 17, 360 }, + [24] = { 54.6, 82.8, 17, 360 }, + [25] = { 55.3, 82.8, 17, 360 }, + [26] = { 54.6, 81, 17, 360 }, + [27] = { 54.5, 79.4, 17, 360 }, + [28] = { 53.9, 77.4, 17, 360 }, + [29] = { 49.5, 63.7, 15, 360 }, + [30] = { 48.3, 63.3, 15, 360 }, + [31] = { 42.2, 63.1, 15, 360 }, + [32] = { 48.9, 62.1, 15, 360 }, + [33] = { 46.6, 61.9, 15, 360 }, + [34] = { 43.3, 61.7, 15, 360 }, + [35] = { 41.5, 60.4, 15, 360 }, + [36] = { 45.6, 60, 15, 360 }, + [37] = { 35.4, 59.4, 15, 360 }, + [38] = { 48.2, 59.2, 15, 360 }, + [39] = { 48.8, 59, 15, 360 }, + [40] = { 36.4, 56.7, 15, 360 }, + [41] = { 45.7, 56.1, 15, 360 }, + [42] = { 39.6, 55.6, 15, 360 }, + [43] = { 35.8, 55.5, 15, 360 }, + [44] = { 40.1, 54.7, 15, 360 }, + [45] = { 43.2, 53.9, 15, 360 }, + [46] = { 41.3, 49, 15, 360 }, + [47] = { 44.1, 49, 15, 360 }, + [48] = { 44.8, 48.7, 15, 360 }, + [49] = { 40.8, 48.2, 15, 360 }, + [50] = { 41.7, 47.6, 15, 360 }, + [51] = { 40.2, 47.4, 15, 360 }, + [52] = { 42, 46.9, 15, 360 }, + [53] = { 53.9, 84.7, 17, 360 }, + [54] = { 54.4, 83.3, 17, 360 }, + [55] = { 54, 82.7, 17, 360 }, + }, + ["lvl"] = "38-39", + }, + [4413] = { + ["coords"] = { + [1] = { 57.3, 37.7, 15, 360 }, + [2] = { 54.2, 34.9, 15, 360 }, + [3] = { 52.1, 32.8, 15, 360 }, + [4] = { 50.3, 30.9, 15, 360 }, + [5] = { 48.6, 29, 15, 360 }, + [6] = { 55.2, 23.7, 15, 360 }, + [7] = { 39.9, 18, 15, 360 }, + [8] = { 52.8, 17.1, 15, 360 }, + [9] = { 44.4, 15.1, 15, 360 }, + [10] = { 52.6, 14, 15, 360 }, + [11] = { 62.8, 61.2, 17, 360 }, + [12] = { 62.9, 39.3, 15, 360 }, + [13] = { 57.9, 38.6, 15, 360 }, + [14] = { 62.1, 37.9, 15, 360 }, + [15] = { 58.5, 37.9, 15, 360 }, + [16] = { 60.8, 35.1, 15, 360 }, + [17] = { 52.3, 34.9, 15, 360 }, + [18] = { 55.3, 34.3, 15, 360 }, + [19] = { 56.2, 33.3, 15, 360 }, + [20] = { 53.3, 32.1, 15, 360 }, + [21] = { 52.3, 31.9, 15, 360 }, + [22] = { 52.8, 30.8, 15, 360 }, + [23] = { 46.3, 28.2, 15, 360 }, + [24] = { 52.9, 28, 15, 360 }, + [25] = { 48.4, 27.8, 15, 360 }, + [26] = { 37.7, 27.7, 15, 360 }, + [27] = { 60.2, 27.3, 15, 360 }, + [28] = { 52.2, 27.2, 15, 360 }, + [29] = { 47.9, 25.9, 15, 360 }, + [30] = { 58.8, 25.5, 15, 360 }, + [31] = { 52.8, 23.8, 15, 360 }, + [32] = { 49.6, 23.4, 15, 360 }, + [33] = { 53.2, 22.9, 15, 360 }, + [34] = { 38.9, 21.3, 15, 360 }, + [35] = { 43.7, 20.2, 15, 360 }, + [36] = { 42.1, 18.6, 15, 360 }, + [37] = { 52.6, 12.8, 15, 360 }, + [38] = { 55.1, 68.3, 17, 360 }, + [39] = { 62.8, 60.6, 17, 360 }, + }, + ["lvl"] = "35-36", + }, + [4414] = { + ["coords"] = { + [1] = { 46.7, 42.6, 15, 360 }, + [2] = { 56.8, 39.4, 15, 360 }, + [3] = { 50.9, 33.8, 15, 360 }, + [4] = { 50.1, 30.6, 15, 360 }, + [5] = { 41.3, 26.1, 15, 360 }, + [6] = { 60, 23, 15, 360 }, + [7] = { 58.6, 21, 15, 360 }, + [8] = { 56.4, 19.4, 15, 360 }, + [9] = { 52.7, 15.4, 15, 360 }, + [10] = { 51, 15.3, 15, 360 }, + [11] = { 49.7, 61.8, 15, 360 }, + [12] = { 47.9, 60.3, 15, 360 }, + [13] = { 42.1, 57.7, 15, 360 }, + [14] = { 47.9, 57.2, 15, 360 }, + [15] = { 37.7, 55.1, 15, 360 }, + [16] = { 44.4, 53.5, 15, 360 }, + [17] = { 34.1, 52.8, 15, 360 }, + [18] = { 40.9, 51.6, 15, 360 }, + [19] = { 42.1, 51.5, 15, 360 }, + [20] = { 36.3, 51, 15, 360 }, + [21] = { 35.2, 48.7, 15, 360 }, + [22] = { 37.3, 48.5, 15, 360 }, + [23] = { 34, 46, 15, 360 }, + [24] = { 34.7, 41.8, 15, 360 }, + [25] = { 43, 41.8, 15, 360 }, + [26] = { 35.4, 40.9, 15, 360 }, + [27] = { 38.3, 40.7, 15, 360 }, + [28] = { 39.2, 39.5, 15, 360 }, + [29] = { 45.6, 38.3, 15, 360 }, + [30] = { 37.4, 38.2, 15, 360 }, + [31] = { 44.2, 37.6, 15, 360 }, + [32] = { 43.5, 35.2, 15, 360 }, + [33] = { 43.5, 35.1, 15, 360 }, + [34] = { 41.6, 34.8, 15, 360 }, + [35] = { 44, 32.6, 15, 360 }, + [36] = { 44.3, 30.3, 15, 360 }, + [37] = { 45, 28.6, 15, 360 }, + [38] = { 35.7, 14.8, 15, 360 }, + [39] = { 55, 82.5, 17, 360 }, + [40] = { 53.2, 81.3, 17, 360 }, + [41] = { 54.3, 80.4, 17, 360 }, + [42] = { 53.7, 79.2, 17, 360 }, + [43] = { 54.8, 79.1, 17, 360 }, + [44] = { 53.1, 77.8, 17, 360 }, + [45] = { 53.5, 75.6, 17, 360 }, + [46] = { 53.9, 75.2, 17, 360 }, + [47] = { 55.3, 75.1, 17, 360 }, + [48] = { 54.9, 73.8, 17, 360 }, + [49] = { 54, 61.6, 17, 360 }, + [50] = { 48.1, 62.4, 15, 360 }, + [51] = { 48.5, 61.6, 15, 360 }, + [52] = { 43.8, 60.7, 15, 360 }, + [53] = { 49, 60.6, 15, 360 }, + [54] = { 41.9, 59.8, 15, 360 }, + [55] = { 49.6, 59.5, 15, 360 }, + [56] = { 37.1, 57.6, 15, 360 }, + [57] = { 39.8, 57.2, 15, 360 }, + [58] = { 40.4, 56.3, 15, 360 }, + [59] = { 36.9, 55.8, 15, 360 }, + [60] = { 38.2, 55.7, 15, 360 }, + [61] = { 47, 55.5, 15, 360 }, + [62] = { 44.6, 55.2, 15, 360 }, + [63] = { 45.3, 54.9, 15, 360 }, + [64] = { 33.9, 54.8, 15, 360 }, + [65] = { 36.9, 54.1, 15, 360 }, + [66] = { 43.9, 53, 15, 360 }, + [67] = { 41.5, 52.8, 15, 360 }, + [68] = { 36.8, 52.2, 15, 360 }, + [69] = { 35.8, 51.4, 15, 360 }, + [70] = { 38.9, 51, 15, 360 }, + [71] = { 41.5, 50.4, 15, 360 }, + [72] = { 43.4, 48.2, 15, 360 }, + [73] = { 39.1, 46.4, 15, 360 }, + [74] = { 37.5, 44.2, 15, 360 }, + [75] = { 41.3, 43.7, 15, 360 }, + [76] = { 41, 43.7, 15, 360 }, + [77] = { 45.9, 43.3, 15, 360 }, + [78] = { 42.1, 43.1, 15, 360 }, + [79] = { 42.6, 42.6, 15, 360 }, + [80] = { 46, 41.2, 15, 360 }, + [81] = { 40.1, 40.4, 15, 360 }, + [82] = { 41.2, 40.2, 15, 360 }, + [83] = { 45, 36.6, 15, 360 }, + [84] = { 54.7, 83.8, 17, 360 }, + [85] = { 54.6, 82.8, 17, 360 }, + [86] = { 55.3, 82.8, 17, 360 }, + [87] = { 53.1, 82.3, 17, 360 }, + [88] = { 54.6, 82, 17, 360 }, + [89] = { 54.6, 81, 17, 360 }, + [90] = { 54, 80.6, 17, 360 }, + [91] = { 55, 76.9, 17, 360 }, + [92] = { 49.5, 63.7, 15, 360 }, + [93] = { 48.3, 63.3, 15, 360 }, + [94] = { 46.6, 61.9, 15, 360 }, + [95] = { 45.7, 56.1, 15, 360 }, + [96] = { 39.6, 55.6, 15, 360 }, + [97] = { 44.8, 48.7, 15, 360 }, + [98] = { 40.8, 48.2, 15, 360 }, + [99] = { 41.7, 47.6, 15, 360 }, + [100] = { 40.2, 47.4, 15, 360 }, + }, + ["lvl"] = "37-38", + }, + [4416] = { + ["coords"] = { + [1] = { 41.1, 80.5, 5138, 18000 }, + [2] = { 39.1, 78.8, 5138, 18000 }, + [3] = { 37.2, 77, 5138, 18000 }, + [4] = { 39.8, 76.2, 5138, 18000 }, + [5] = { 38.6, 74.6, 5138, 18000 }, + [6] = { 42.4, 73.3, 5138, 18000 }, + [7] = { 40.4, 73, 5138, 18000 }, + [8] = { 38.3, 71.8, 5138, 18000 }, + [9] = { 40.6, 71.2, 5138, 18000 }, + [10] = { 40.3, 68.1, 5138, 18000 }, + [11] = { 40.8, 43.7, 5138, 18000 }, + [12] = { 37.5, 40.6, 5138, 18000 }, + [13] = { 44.2, 40.2, 5138, 18000 }, + [14] = { 42.6, 40.2, 5138, 18000 }, + [15] = { 45.7, 40.1, 5138, 18000 }, + [16] = { 41.2, 39.6, 5138, 18000 }, + [17] = { 48, 39, 5138, 18000 }, + [18] = { 39, 38.8, 5138, 18000 }, + [19] = { 43.3, 37.8, 5138, 18000 }, + [20] = { 41.6, 37.5, 5138, 18000 }, + [21] = { 47.6, 35.7, 5138, 18000 }, + [22] = { 50, 35, 5138, 18000 }, + [23] = { 45.4, 35, 5138, 18000 }, + [24] = { 44.3, 32.9, 5138, 18000 }, + [25] = { 45.3, 32.5, 5138, 18000 }, + [26] = { 48.4, 32.5, 5138, 18000 }, + [27] = { 12.4, 28.6, 5138, 18000 }, + }, + ["lvl"] = "18-19", + }, + [4417] = { + ["coords"] = { + [1] = { 36.3, 75.3, 5138, 18000 }, + [2] = { 38.9, 69.1, 5138, 18000 }, + [3] = { 39, 63.6, 5138, 18000 }, + [4] = { 38.6, 60.9, 5138, 18000 }, + [5] = { 39.2, 42.8, 5138, 18000 }, + [6] = { 37.5, 30.5, 5138, 18000 }, + }, + ["lvl"] = "18-19", + ["rnk"] = "1", + }, + [4418] = { + ["coords"] = { + [1] = { 39.6, 71.1, 5138, 18000 }, + [2] = { 38.9, 61.3, 5138, 18000 }, + [3] = { 48.2, 36, 5138, 18000 }, + }, + ["lvl"] = "18-19", + ["rnk"] = "1", + }, + [4420] = { + ["coords"] = { + [1] = { 56.9, 29.8, 491, 604800 }, + }, + ["lvl"] = "32", + ["rnk"] = "1", + }, + [4421] = { + ["coords"] = { + [1] = { 26.9, 32.7, 491, 604800 }, + }, + ["lvl"] = "33", + ["rnk"] = "1", + }, + [4422] = { + ["coords"] = { + [1] = { 11.2, 72.4, 491, 604800 }, + }, + ["lvl"] = "33", + ["rnk"] = "1", + }, + [4424] = { + ["coords"] = { + [1] = { 80.8, 54.5, 491, 604800 }, + }, + ["lvl"] = "30", + ["rnk"] = "1", + }, + [4425] = { + ["coords"] = { + [1] = { 11, 30.3, 491, 604800 }, + }, + ["lvl"] = "32", + ["rnk"] = "2", + }, + [4427] = { + ["coords"] = { + [1] = { 8.1, 57.5, 491, 18000 }, + [2] = { 6.7, 55.6, 491, 18000 }, + }, + ["lvl"] = "31", + ["rnk"] = "1", + }, + [4428] = { + ["coords"] = { + [1] = { 87.9, 41.4, 491, 604800 }, + }, + ["lvl"] = "30", + ["rnk"] = "1", + }, + [4429] = { + ["coords"] = { + [1] = { 79.8, 76.9, 400, 300 }, + [2] = { 79.9, 76.9, 400, 300 }, + [3] = { 80.2, 76.6, 400, 300 }, + [4] = { 79.8, 76.4, 400, 300 }, + [5] = { 80.2, 75.9, 400, 300 }, + [6] = { 83.1, 56, 400, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [4435] = { + ["coords"] = { + [1] = { 71.7, 70.2, 491, 18000 }, + [2] = { 69, 67.9, 491, 18000 }, + }, + ["lvl"] = "24-25", + ["rnk"] = "1", + }, + [4436] = { + ["coords"] = { + [1] = { 61.4, 71.8, 491, 18000 }, + [2] = { 56, 71, 491, 18000 }, + [3] = { 68.2, 70.3, 491, 18000 }, + [4] = { 62.6, 70.2, 491, 18000 }, + [5] = { 56, 68.7, 491, 18000 }, + [6] = { 73, 66.9, 491, 18000 }, + [7] = { 70.6, 65.1, 491, 18000 }, + [8] = { 71.8, 64.4, 491, 18000 }, + [9] = { 55.7, 62.2, 491, 18000 }, + [10] = { 54.7, 61.4, 491, 18000 }, + }, + ["lvl"] = "25-26", + ["rnk"] = "1", + }, + [4437] = { + ["coords"] = { + [1] = { 26.8, 38.3, 491, 18000 }, + [2] = { 27.3, 38.2, 491, 18000 }, + [3] = { 28.1, 37.9, 491, 18000 }, + [4] = { 34.3, 33.7, 491, 18000 }, + [5] = { 31.3, 33.4, 491, 18000 }, + [6] = { 32.8, 31.4, 491, 18000 }, + [7] = { 34.4, 31.2, 491, 18000 }, + }, + ["lvl"] = "25-26", + ["rnk"] = "1", + }, + [4438] = { + ["coords"] = { + [1] = { 56.6, 30.8, 491, 604800 }, + [2] = { 56.2, 29.3, 491, 604800 }, + }, + ["lvl"] = "29-30", + ["rnk"] = "2", + }, + [4439] = "_", + [4440] = { + ["coords"] = { + [1] = { 85.3, 42, 491, 18000 }, + [2] = { 17.4, 41.5, 491, 18000 }, + [3] = { 57, 35.1, 491, 18000 }, + [4] = { 62.8, 33.9, 491, 18000 }, + }, + ["lvl"] = "29", + ["rnk"] = "1", + }, + [4442] = { + ["coords"] = { + [1] = { 76.8, 67.1, 491, 18000 }, + [2] = { 76.2, 65, 491, 18000 }, + [3] = { 79.2, 63.7, 491, 18000 }, + [4] = { 67, 54.9, 491, 18000 }, + [5] = { 63.1, 50.6, 491, 18000 }, + [6] = { 84.1, 47.4, 491, 18000 }, + [7] = { 85.4, 46.9, 491, 18000 }, + [8] = { 84.7, 45.9, 491, 18000 }, + [9] = { 65.9, 44.4, 491, 18000 }, + [10] = { 64.5, 44.3, 491, 18000 }, + [11] = { 75.1, 43.2, 491, 18000 }, + [12] = { 72.5, 40.2, 491, 18000 }, + [13] = { 79.4, 40.1, 491, 18000 }, + [14] = { 72.8, 36.6, 491, 18000 }, + [15] = { 76.4, 34.8, 491, 18000 }, + [16] = { 72.4, 34.1, 491, 18000 }, + [17] = { 75.7, 31.5, 491, 18000 }, + }, + ["lvl"] = "27-28", + ["rnk"] = "1", + }, + [4443] = "_", + [4444] = { + ["coords"] = { + [1] = { 75.7, 62.3, 209, 18000 }, + }, + ["fac"] = "H", + ["lvl"] = "21", + }, + [4445] = "_", + [4446] = "_", + [4449] = "_", + [4450] = "_", + [4451] = { + ["coords"] = { + [1] = { 37.1, 29, 215, 30 }, + [2] = { 36, 59.9, 1638, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "28", + }, + [4455] = { + ["coords"] = { + [1] = { 10, 58, 11, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "22", + }, + [4456] = { + ["coords"] = { + [1] = { 66.5, 45.1, 15, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "26", + }, + [4457] = { + ["coords"] = { + [1] = { 34.3, 24.2, 33, 300 }, + [2] = { 35.2, 24, 33, 300 }, + [3] = { 35.4, 23.8, 33, 300 }, + [4] = { 35.2, 23.5, 33, 300 }, + [5] = { 34.6, 23.4, 33, 300 }, + [6] = { 36.1, 23.4, 33, 300 }, + [7] = { 35.3, 23.3, 33, 300 }, + [8] = { 35.1, 23.3, 33, 300 }, + [9] = { 34, 23.3, 33, 300 }, + [10] = { 35.2, 23.1, 33, 300 }, + [11] = { 34.2, 22.5, 33, 300 }, + [12] = { 33.9, 22.2, 33, 300 }, + [13] = { 33.3, 22.2, 33, 300 }, + [14] = { 34.4, 21.7, 33, 300 }, + [15] = { 33.7, 21.6, 33, 300 }, + [16] = { 33.9, 21.5, 33, 300 }, + [17] = { 36.4, 21.4, 33, 300 }, + [18] = { 35.4, 20.7, 33, 300 }, + [19] = { 34, 20.6, 33, 300 }, + }, + ["lvl"] = "35-36", + }, + [4458] = { + ["coords"] = { + [1] = { 35.6, 24.2, 33, 300 }, + [2] = { 35.6, 23.2, 33, 300 }, + [3] = { 34.9, 23.1, 33, 300 }, + [4] = { 35.4, 22.7, 33, 300 }, + [5] = { 34.3, 24.2, 33, 300 }, + [6] = { 35.2, 24, 33, 300 }, + [7] = { 35.4, 23.8, 33, 300 }, + [8] = { 35.2, 23.5, 33, 300 }, + [9] = { 34.6, 23.4, 33, 300 }, + [10] = { 36.1, 23.4, 33, 300 }, + [11] = { 35.3, 23.3, 33, 300 }, + [12] = { 35.1, 23.3, 33, 300 }, + [13] = { 34, 23.3, 33, 300 }, + [14] = { 35.2, 23.1, 33, 300 }, + [15] = { 34.2, 22.5, 33, 300 }, + [16] = { 33.9, 22.2, 33, 300 }, + [17] = { 33.3, 22.2, 33, 300 }, + [18] = { 34.4, 21.7, 33, 300 }, + [19] = { 33.7, 21.6, 33, 300 }, + [20] = { 33.9, 21.5, 33, 300 }, + [21] = { 36.4, 21.4, 33, 300 }, + [22] = { 35.4, 20.7, 33, 300 }, + [23] = { 34, 20.6, 33, 300 }, + }, + ["lvl"] = "35-36", + }, + [4461] = { + ["coords"] = { + [1] = { 34.3, 24.2, 33, 300 }, + [2] = { 35.2, 24, 33, 300 }, + [3] = { 35.4, 23.8, 33, 300 }, + [4] = { 35.2, 23.5, 33, 300 }, + [5] = { 34.6, 23.4, 33, 300 }, + [6] = { 36.1, 23.4, 33, 300 }, + [7] = { 35.3, 23.3, 33, 300 }, + [8] = { 35.1, 23.3, 33, 300 }, + [9] = { 34, 23.3, 33, 300 }, + [10] = { 35.2, 23.1, 33, 300 }, + [11] = { 34.2, 22.5, 33, 300 }, + [12] = { 33.9, 22.2, 33, 300 }, + [13] = { 33.3, 22.2, 33, 300 }, + [14] = { 34.4, 21.7, 33, 300 }, + [15] = { 33.7, 21.6, 33, 300 }, + [16] = { 33.9, 21.5, 33, 300 }, + [17] = { 36.4, 21.4, 33, 300 }, + [18] = { 35.4, 20.7, 33, 300 }, + [19] = { 34, 20.6, 33, 300 }, + [20] = { 35.6, 24.2, 33, 300 }, + [21] = { 35.6, 23.2, 33, 300 }, + [22] = { 34.9, 23.1, 33, 300 }, + [23] = { 35.4, 22.7, 33, 300 }, + }, + ["lvl"] = "35-36", + }, + [4462] = { + ["coords"] = { + [1] = { 69.8, 57.7, 44, 900 }, + [2] = { 68.5, 56.3, 44, 900 }, + [3] = { 69.3, 56, 44, 900 }, + [4] = { 69.4, 55.8, 44, 900 }, + [5] = { 68.6, 55.6, 44, 900 }, + [6] = { 69.2, 55.4, 44, 900 }, + [7] = { 69.6, 54.4, 44, 900 }, + }, + ["lvl"] = "23-24", + ["rnk"] = "1", + }, + [4463] = { + ["coords"] = { + [1] = { 74, 79.3, 44, 300 }, + [2] = { 60.9, 43.7, 44, 300 }, + [3] = { 43.9, 19.6, 44, 300 }, + [4] = { 29.9, 16.5, 44, 300 }, + [5] = { 27.5, 15.8, 44, 300 }, + [6] = { 25.9, 14.8, 44, 300 }, + [7] = { 28.4, 14.7, 44, 300 }, + [8] = { 28.9, 12.8, 44, 300 }, + [9] = { 44.1, 12.7, 44, 300 }, + [10] = { 30.7, 12.3, 44, 300 }, + [11] = { 43, 12.3, 44, 300 }, + [12] = { 28.4, 11.8, 44, 300 }, + [13] = { 41.5, 10.9, 44, 300 }, + [14] = { 27.5, 10.8, 44, 300 }, + [15] = { 35.8, 10.3, 44, 300 }, + [16] = { 31.2, 9.4, 44, 300 }, + [17] = { 35.6, 8, 44, 300 }, + [18] = { 32, 6.4, 44, 300 }, + [19] = { 65.6, 87.9, 46, 300 }, + [20] = { 64.9, 87.1, 46, 300 }, + [21] = { 67.6, 86.1, 46, 300 }, + [22] = { 70.9, 85, 46, 300 }, + [23] = { 68.3, 83.8, 46, 300 }, + }, + ["lvl"] = "22-23", + }, + [4464] = { + ["coords"] = { + [1] = { 70, 57.1, 44, 900 }, + [2] = { 69.4, 56.3, 44, 900 }, + [3] = { 69.3, 55.6, 44, 900 }, + [4] = { 68.1, 55, 44, 900 }, + }, + ["lvl"] = "24-25", + ["rnk"] = "1", + }, + [4465] = { + ["coords"] = { + [1] = { 66.5, 69.2, 47, 350 }, + [2] = { 68.6, 68.9, 47, 350 }, + [3] = { 68.1, 68.8, 47, 350 }, + [4] = { 67.9, 68.4, 47, 350 }, + [5] = { 68.5, 68, 47, 350 }, + [6] = { 66.2, 67.8, 47, 350 }, + [7] = { 66.7, 67.3, 47, 350 }, + [8] = { 67.6, 66.8, 47, 350 }, + [9] = { 67.8, 66.5, 47, 350 }, + [10] = { 66.4, 65.5, 47, 350 }, + [11] = { 66.8, 65.4, 47, 350 }, + [12] = { 68.6, 64.4, 47, 350 }, + [13] = { 66.9, 64.2, 47, 350 }, + [14] = { 66.8, 64.2, 47, 350 }, + [15] = { 67.7, 64.1, 47, 350 }, + [16] = { 66.1, 63.9, 47, 350 }, + [17] = { 64.2, 62.9, 47, 350 }, + [18] = { 65.1, 61.8, 47, 350 }, + [19] = { 63, 60.8, 47, 350 }, + }, + ["lvl"] = "45-46", + ["rnk"] = "1", + }, + [4466] = { + ["coords"] = { + [1] = { 47, 69.8, 47, 350 }, + [2] = { 45.5, 68.2, 47, 350 }, + [3] = { 44.3, 67, 47, 350 }, + [4] = { 50.6, 65.9, 47, 350 }, + [5] = { 49.5, 65.5, 47, 350 }, + [6] = { 46.1, 64.4, 47, 350 }, + [7] = { 50.3, 63.2, 47, 350 }, + [8] = { 45.3, 62.7, 47, 350 }, + [9] = { 69.9, 49.4, 47, 350 }, + [10] = { 69.8, 49.2, 47, 350 }, + [11] = { 72.2, 48.6, 47, 350 }, + [12] = { 71.9, 48.5, 47, 350 }, + [13] = { 70.4, 47.5, 47, 350 }, + [14] = { 71.9, 47.2, 47, 350 }, + [15] = { 71.6, 46.8, 47, 350 }, + [16] = { 65.3, 44.8, 47, 350 }, + [17] = { 67, 44.5, 47, 350 }, + [18] = { 66.8, 44.1, 47, 350 }, + [19] = { 66, 43, 47, 350 }, + [20] = { 53.1, 40.1, 47, 350 }, + [21] = { 53.8, 39.7, 47, 350 }, + [22] = { 52.2, 39.7, 47, 350 }, + [23] = { 53.9, 38.6, 47, 350 }, + }, + ["lvl"] = "46-47", + }, + [4467] = { + ["coords"] = { + [1] = { 48.8, 69, 47, 350 }, + [2] = { 49.2, 68.3, 47, 350 }, + [3] = { 45.9, 68.1, 47, 350 }, + [4] = { 48.5, 68, 47, 350 }, + [5] = { 47, 67.6, 47, 350 }, + [6] = { 48.1, 67.4, 47, 350 }, + [7] = { 47.9, 67, 47, 350 }, + [8] = { 45.3, 66.7, 47, 350 }, + [9] = { 47.6, 66.5, 47, 350 }, + [10] = { 48, 65.6, 47, 350 }, + [11] = { 44.6, 65.5, 47, 350 }, + [12] = { 47, 65.5, 47, 350 }, + [13] = { 48.8, 64.4, 47, 350 }, + [14] = { 46.9, 63, 47, 350 }, + [15] = { 49.6, 62.9, 47, 350 }, + [16] = { 71, 48.6, 47, 350 }, + [17] = { 70.6, 48.5, 47, 350 }, + [18] = { 71.3, 48.3, 47, 350 }, + [19] = { 66.2, 44.8, 47, 350 }, + [20] = { 66.2, 44.3, 47, 350 }, + [21] = { 53.1, 39.2, 47, 350 }, + [22] = { 53.4, 38.8, 47, 350 }, + }, + ["lvl"] = "46-47", + }, + [4468] = { + ["coords"] = { + [1] = { 62.3, 76.8, 47, 350 }, + [2] = { 63.1, 76.6, 47, 350 }, + [3] = { 61.6, 76.2, 47, 350 }, + [4] = { 62.5, 75.6, 47, 350 }, + [5] = { 63.1, 75.3, 47, 350 }, + [6] = { 61.1, 75.2, 47, 350 }, + [7] = { 61.9, 74.8, 47, 350 }, + [8] = { 62.5, 74.5, 47, 350 }, + [9] = { 61.4, 74.2, 47, 350 }, + [10] = { 61.9, 73.7, 47, 350 }, + [11] = { 61, 73.6, 47, 350 }, + }, + ["lvl"] = "47-48", + ["rnk"] = "1", + }, + [4472] = { + ["coords"] = { + [1] = { 62.8, 61.2, 28, 315 }, + [2] = { 63.1, 61.2, 28, 315 }, + [3] = { 62.4, 60.9, 28, 315 }, + [4] = { 63.3, 60.8, 28, 315 }, + [5] = { 63, 60.6, 28, 315 }, + [6] = { 62.1, 60.6, 28, 315 }, + [7] = { 62.8, 60.4, 28, 315 }, + [8] = { 62.5, 60.3, 28, 315 }, + [9] = { 62.2, 60.2, 28, 315 }, + [10] = { 62.8, 60.1, 28, 315 }, + [11] = { 64.8, 60, 28, 315 }, + [12] = { 63.1, 59.7, 28, 315 }, + [13] = { 64.8, 59.7, 28, 315 }, + [14] = { 65.1, 59.7, 28, 315 }, + [15] = { 62.2, 59.6, 28, 315 }, + [16] = { 64.6, 59.5, 28, 315 }, + [17] = { 64.6, 59.4, 28, 315 }, + [18] = { 64.9, 59.3, 28, 315 }, + [19] = { 64.7, 59.3, 28, 315 }, + [20] = { 64.7, 59.2, 28, 315 }, + [21] = { 64.4, 59.2, 28, 315 }, + [22] = { 61.8, 59.1, 28, 315 }, + [23] = { 65.1, 59.1, 28, 315 }, + [24] = { 64.7, 59, 28, 315 }, + [25] = { 63.3, 59, 28, 315 }, + [26] = { 65, 59, 28, 315 }, + [27] = { 62.4, 58.9, 28, 315 }, + [28] = { 62.7, 58.9, 28, 315 }, + [29] = { 65.1, 58.6, 28, 315 }, + [30] = { 64.4, 58.6, 28, 315 }, + [31] = { 63.6, 58.6, 28, 315 }, + [32] = { 64.8, 58.5, 28, 315 }, + [33] = { 62.1, 58.3, 28, 315 }, + [34] = { 62.9, 58.3, 28, 315 }, + [35] = { 60.7, 58.3, 28, 315 }, + [36] = { 61.7, 58.2, 28, 315 }, + [37] = { 62.7, 58, 28, 315 }, + [38] = { 64.5, 58, 28, 315 }, + [39] = { 64.3, 57.9, 28, 315 }, + [40] = { 62.5, 57.9, 28, 315 }, + [41] = { 60.8, 57.9, 28, 315 }, + [42] = { 63.5, 57.7, 28, 315 }, + [43] = { 61.8, 57.7, 28, 315 }, + [44] = { 64.7, 57.7, 28, 315 }, + [45] = { 64, 57.6, 28, 315 }, + [46] = { 64.4, 57.5, 28, 315 }, + [47] = { 64.6, 57.3, 28, 315 }, + [48] = { 63.8, 57.1, 28, 315 }, + [49] = { 62.8, 57, 28, 315 }, + [50] = { 64.1, 56.8, 28, 315 }, + [51] = { 64.4, 56.7, 28, 315 }, + [52] = { 63.4, 56.6, 28, 315 }, + [53] = { 64.2, 56.4, 28, 315 }, + [54] = { 63.9, 56.4, 28, 315 }, + [55] = { 63.2, 56.3, 28, 315 }, + [56] = { 64, 56.2, 28, 315 }, + [57] = { 63.3, 56, 28, 315 }, + [58] = { 64.2, 55.9, 28, 315 }, + [59] = { 63.5, 55.9, 28, 315 }, + [60] = { 63, 55.8, 28, 315 }, + [61] = { 63.9, 55.7, 28, 315 }, + [62] = { 63.2, 55.6, 28, 315 }, + }, + ["lvl"] = "57-58", + }, + [4474] = { + ["coords"] = { + [1] = { 45.7, 55.1, 28, 315 }, + [2] = { 44.8, 54.8, 28, 315 }, + [3] = { 45, 54.6, 28, 315 }, + [4] = { 45, 54, 28, 315 }, + [5] = { 45.7, 53.9, 28, 315 }, + [6] = { 47.2, 53.8, 28, 315 }, + [7] = { 46.7, 53.4, 28, 315 }, + [8] = { 44.2, 53.4, 28, 315 }, + [9] = { 45, 53.1, 28, 315 }, + [10] = { 46.1, 52.4, 28, 315 }, + [11] = { 46.6, 52, 28, 315 }, + [12] = { 44.8, 51.8, 28, 315 }, + [13] = { 47.8, 51.5, 28, 315 }, + [14] = { 46.1, 51.3, 28, 315 }, + [15] = { 47.3, 51, 28, 315 }, + [16] = { 47.8, 50.9, 28, 315 }, + [17] = { 46.6, 50.8, 28, 315 }, + [18] = { 48.2, 50.8, 28, 315 }, + [19] = { 45.7, 50.4, 28, 315 }, + [20] = { 47.5, 50.2, 28, 315 }, + [21] = { 46.3, 50, 28, 315 }, + [22] = { 47.1, 49.8, 28, 315 }, + [23] = { 47.6, 49.7, 28, 315 }, + [24] = { 47.5, 49.7, 28, 315 }, + }, + ["lvl"] = "53-54", + }, + [4475] = { + ["coords"] = { + [1] = { 46.1, 56.3, 28, 315 }, + [2] = { 45.2, 55, 28, 315 }, + [3] = { 46.5, 54.8, 28, 315 }, + [4] = { 48.3, 53.5, 28, 315 }, + [5] = { 45.6, 53.1, 28, 315 }, + [6] = { 47.6, 52.8, 28, 315 }, + [7] = { 47.1, 52.5, 28, 315 }, + [8] = { 46.5, 52.4, 28, 315 }, + [9] = { 45.8, 52.1, 28, 315 }, + [10] = { 48, 51.5, 28, 315 }, + [11] = { 45, 51.5, 28, 315 }, + [12] = { 46.3, 51.5, 28, 315 }, + [13] = { 45.5, 51.2, 28, 315 }, + [14] = { 47.5, 51, 28, 315 }, + [15] = { 47.7, 50.7, 28, 315 }, + [16] = { 46.9, 50.4, 28, 315 }, + [17] = { 48.1, 50.4, 28, 315 }, + [18] = { 47.2, 50.2, 28, 315 }, + [19] = { 46.1, 50.2, 28, 315 }, + [20] = { 46.8, 49.9, 28, 315 }, + [21] = { 45.8, 49.9, 28, 315 }, + [22] = { 47.4, 49.7, 28, 315 }, + [23] = { 47.7, 49.5, 28, 315 }, + }, + ["lvl"] = "52-53", + }, + [4476] = "_", + [4482] = "_", + [4483] = { + ["coords"] = { + [1] = { 67.6, 63.9, 400, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [4485] = { + ["coords"] = { + [1] = { 75.2, 34.2, 1637, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [4486] = { + ["coords"] = { + [1] = { 63.8, 49.5, 1497, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "32", + }, + [4487] = "_", + [4488] = { + ["coords"] = { + [1] = { 57.8, 65.4, 1497, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [4489] = { + ["coords"] = { + [1] = { 75.6, 50.2, 406, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [4491] = "_", + [4493] = { + ["coords"] = { + [1] = { 51.1, 40.7, 28, 315 }, + [2] = { 52.6, 38.4, 28, 315 }, + [3] = { 53.1, 36.6, 28, 315 }, + [4] = { 54.9, 34, 28, 315 }, + [5] = { 54.5, 24.1, 28, 315 }, + [6] = { 54.3, 23.7, 28, 315 }, + }, + ["lvl"] = "56-57", + }, + [4494] = { + ["coords"] = { + [1] = { 54.3, 35.5, 28, 315 }, + [2] = { 55.4, 34.3, 28, 315 }, + [3] = { 55.1, 23.6, 28, 315 }, + [4] = { 54.9, 23.5, 28, 315 }, + [5] = { 54.8, 23.4, 28, 315 }, + [6] = { 55.2, 23.4, 28, 315 }, + [7] = { 54.9, 23.2, 28, 315 }, + [8] = { 54.9, 23.1, 28, 315 }, + [9] = { 55.3, 22.8, 28, 315 }, + }, + ["lvl"] = "57-58", + }, + [4497] = "_", + [4498] = { + ["coords"] = { + [1] = { 52.2, 53.4, 405, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [4499] = { + ["coords"] = { + [1] = { 16.9, 37.2, 400, 600 }, + }, + ["lvl"] = "30", + ["rnk"] = "1", + }, + [4501] = { + ["coords"] = { + [1] = { 37.2, 33.1, 15, 30 }, + [2] = { 54.8, 71.1, 17, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [4502] = { + ["coords"] = { + [1] = { 37.4, 31.4, 15, 30 }, + [2] = { 54.9, 70.2, 17, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "44", + }, + [4504] = { + ["coords"] = { + [1] = { 37.4, 66.2, 36, 0 }, + [2] = { 41.6, 6.3, 267, 0 }, + }, + ["lvl"] = "37", + }, + [4505] = { + ["coords"] = { + [1] = { 30.7, 90.7, 33, 300 }, + [2] = { 30.6, 90.4, 33, 300 }, + [3] = { 30.5, 90.1, 33, 300 }, + [4] = { 30.6, 89.9, 33, 300 }, + [5] = { 29.4, 89.5, 33, 300 }, + [6] = { 29.5, 89.4, 33, 300 }, + [7] = { 29.4, 89.3, 33, 300 }, + [8] = { 29.4, 89.2, 33, 300 }, + [9] = { 33.1, 88.4, 33, 300 }, + [10] = { 33.4, 88.4, 33, 300 }, + [11] = { 33.2, 88.4, 33, 300 }, + [12] = { 33, 88.2, 33, 300 }, + [13] = { 33.5, 88.2, 33, 300 }, + [14] = { 33.3, 88.1, 33, 300 }, + }, + ["lvl"] = "43-44", + }, + [4506] = { + ["coords"] = { + [1] = { 30.5, 89.5, 33, 300 }, + [2] = { 29.4, 89.4, 33, 300 }, + [3] = { 33.4, 88.4, 33, 300 }, + [4] = { 33, 88.3, 33, 300 }, + [5] = { 33.2, 88.3, 33, 300 }, + [6] = { 33.2, 88.1, 33, 300 }, + [7] = { 33, 88.1, 33, 300 }, + }, + ["lvl"] = "42-44", + }, + [4507] = { + ["coords"] = { + [1] = { 78.9, 76.2, 400, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "15", + }, + [4508] = { + ["coords"] = { + [1] = { 37.4, 31.1, 491, 604800 }, + }, + ["lvl"] = "27", + ["rnk"] = "1", + }, + [4510] = { + ["coords"] = { + [1] = { 36.6, 33.2, 491, 18000 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [4511] = { + ["coords"] = { + [1] = { 39.9, 61.7, 491, 18000 }, + [2] = { 60, 59.1, 491, 18000 }, + [3] = { 48.5, 58.6, 491, 18000 }, + [4] = { 57.8, 57.8, 491, 18000 }, + [5] = { 27, 52.7, 491, 18000 }, + [6] = { 34.9, 49.2, 491, 18000 }, + [7] = { 53.4, 47.7, 491, 18000 }, + [8] = { 28.2, 47.3, 491, 18000 }, + [9] = { 35.8, 46.3, 491, 18000 }, + [10] = { 43.5, 46.2, 491, 18000 }, + [11] = { 35, 43.2, 491, 18000 }, + [12] = { 42.7, 43, 491, 18000 }, + [13] = { 50.7, 40.8, 491, 18000 }, + [14] = { 50.6, 37.4, 491, 18000 }, + [15] = { 48.5, 37.2, 491, 18000 }, + }, + ["lvl"] = "24-25", + ["rnk"] = "1", + }, + [4512] = { + ["coords"] = { + [1] = { 28.6, 57.6, 491, 18000 }, + [2] = { 54.1, 57.3, 491, 18000 }, + [3] = { 48.5, 57.1, 491, 18000 }, + }, + ["lvl"] = "28", + ["rnk"] = "1", + }, + [4514] = { + ["coords"] = { + [1] = { 44.9, 64.6, 491, 18000 }, + [2] = { 40.4, 64.2, 491, 18000 }, + [3] = { 26.8, 63.6, 491, 18000 }, + [4] = { 28.1, 63.3, 491, 18000 }, + [5] = { 47.4, 62.2, 491, 18000 }, + [6] = { 67.2, 61.9, 491, 18000 }, + [7] = { 60.4, 57.7, 491, 18000 }, + [8] = { 62.4, 57.5, 491, 18000 }, + [9] = { 28.3, 56.8, 491, 18000 }, + [10] = { 37.3, 54.9, 491, 18000 }, + [11] = { 52.2, 54.8, 491, 18000 }, + [12] = { 37.2, 48.4, 491, 18000 }, + [13] = { 28.6, 43.4, 491, 18000 }, + [14] = { 52.3, 40.7, 491, 18000 }, + [15] = { 45.7, 40.1, 491, 18000 }, + }, + ["lvl"] = "25-26", + ["rnk"] = "1", + }, + [4515] = { + ["coords"] = { + [1] = { 87.6, 42.6, 491, 18000 }, + [2] = { 76.1, 32.1, 491, 18000 }, + }, + ["lvl"] = "28-29", + ["rnk"] = "1", + }, + [4516] = { + ["coords"] = { + [1] = { 81.4, 58.1, 491, 18000 }, + [2] = { 84.5, 51, 491, 18000 }, + [3] = { 61.1, 49.3, 491, 18000 }, + [4] = { 69.1, 48.4, 491, 18000 }, + [5] = { 64.9, 47.7, 491, 18000 }, + [6] = { 66.4, 46.5, 491, 18000 }, + [7] = { 81.2, 44.2, 491, 18000 }, + [8] = { 63.9, 42.8, 491, 18000 }, + [9] = { 75.8, 39.4, 491, 18000 }, + }, + ["lvl"] = "27-28", + ["rnk"] = "1", + }, + [4517] = { + ["coords"] = { + [1] = { 29.1, 34.9, 491, 18000 }, + [2] = { 27.7, 34.9, 491, 18000 }, + [3] = { 26.7, 32.4, 491, 18000 }, + [4] = { 30.2, 31.9, 491, 18000 }, + }, + ["lvl"] = "26-27", + ["rnk"] = "1", + }, + [4518] = { + ["coords"] = { + [1] = { 44.9, 56.4, 491, 18000 }, + [2] = { 59.7, 45.1, 491, 18000 }, + [3] = { 47.7, 44.8, 491, 18000 }, + [4] = { 60.5, 44.2, 491, 18000 }, + [5] = { 19, 42.3, 491, 18000 }, + [6] = { 60.7, 28.9, 491, 18000 }, + [7] = { 61.9, 27.7, 491, 18000 }, + }, + ["lvl"] = "29-30", + ["rnk"] = "1", + }, + [4519] = { + ["coords"] = { + [1] = { 7.4, 56.6, 491, 18000 }, + [2] = { 68.3, 52.5, 491, 18000 }, + [3] = { 70.6, 50.2, 491, 18000 }, + [4] = { 62.1, 50.2, 491, 18000 }, + [5] = { 68.9, 49.6, 491, 18000 }, + }, + ["lvl"] = "28-29", + ["rnk"] = "1", + }, + [4520] = { + ["coords"] = { + [1] = { 58.2, 72, 491, 18000 }, + [2] = { 54.1, 67.3, 491, 18000 }, + [3] = { 74.5, 67.3, 491, 18000 }, + [4] = { 78.5, 33.7, 491, 18000 }, + }, + ["lvl"] = "25-26", + ["rnk"] = "1", + }, + [4522] = { + ["coords"] = { + [1] = { 77.9, 46.3, 491, 18000 }, + [2] = { 81.3, 38, 491, 18000 }, + [3] = { 79.4, 34.8, 491, 18000 }, + }, + ["lvl"] = "28-29", + ["rnk"] = "1", + }, + [4523] = { + ["coords"] = { + [1] = { 83.6, 55.2, 491, 18000 }, + [2] = { 76.8, 43.6, 491, 18000 }, + [3] = { 82.6, 42, 491, 18000 }, + [4] = { 70.5, 40.2, 491, 18000 }, + [5] = { 87.5, 39.7, 491, 18000 }, + [6] = { 85.4, 39.6, 491, 18000 }, + [7] = { 69.2, 38.9, 491, 18000 }, + }, + ["lvl"] = "27-28", + ["rnk"] = "1", + }, + [4525] = { + ["coords"] = { + [1] = { 44.1, 57.9, 491, 18000 }, + [2] = { 49.6, 47.3, 491, 18000 }, + [3] = { 47.7, 46.2, 491, 18000 }, + [4] = { 59.1, 34.1, 491, 18000 }, + [5] = { 61.2, 32.6, 491, 18000 }, + }, + ["lvl"] = "30-31", + ["rnk"] = "1", + }, + [4530] = { + ["coords"] = { + [1] = { 62.3, 73.8, 491, 18000 }, + [2] = { 66, 70.9, 491, 18000 }, + [3] = { 55.5, 64.6, 491, 18000 }, + }, + ["lvl"] = "25-26", + ["rnk"] = "1", + }, + [4531] = { + ["coords"] = { + [1] = { 82.7, 50.5, 491, 18000 }, + [2] = { 80, 50, 491, 18000 }, + }, + ["lvl"] = "28-29", + ["rnk"] = "1", + }, + [4532] = { + ["coords"] = { + [1] = { 58.1, 43, 491, 18000 }, + [2] = { 60.3, 41.5, 491, 18000 }, + [3] = { 76.7, 39.7, 491, 18000 }, + }, + ["lvl"] = "30-31", + ["rnk"] = "1", + }, + [4538] = { + ["coords"] = { + [1] = { 18.8, 59.7, 491, 18000 }, + [2] = { 16.3, 58.5, 491, 18000 }, + [3] = { 13.1, 55.3, 491, 18000 }, + [4] = { 16.2, 54.5, 491, 18000 }, + [5] = { 12.5, 52.5, 491, 18000 }, + [6] = { 10.2, 47.8, 491, 18000 }, + [7] = { 7.9, 45.1, 491, 18000 }, + [8] = { 10.9, 43.6, 491, 18000 }, + [9] = { 12.8, 40.4, 491, 18000 }, + [10] = { 9.6, 40.3, 491, 18000 }, + [11] = { 13.3, 38.2, 491, 18000 }, + [12] = { 14.2, 37.8, 491, 18000 }, + [13] = { 11.4, 32.7, 491, 18000 }, + }, + ["lvl"] = "30-31", + ["rnk"] = "1", + }, + [4539] = { + ["coords"] = { + [1] = { 10.5, 55.5, 491, 18000 }, + [2] = { 15.4, 54.7, 491, 18000 }, + [3] = { 10.2, 50, 491, 18000 }, + [4] = { 7.1, 44.5, 491, 18000 }, + [5] = { 6.3, 41.9, 491, 18000 }, + [6] = { 8.8, 38.4, 491, 18000 }, + [7] = { 11, 30.3, 491, 604800 }, + }, + ["lvl"] = "32", + ["rnk"] = "1", + }, + [4540] = { + ["coords"] = { + [1] = { 82.8, 62.5, 5135, 18000 }, + [2] = { 83.9, 62.5, 5135, 18000 }, + [3] = { 79.4, 58.7, 5135, 18000 }, + [4] = { 87.8, 58.2, 5135, 18000 }, + [5] = { 78.7, 57.6, 5135, 18000 }, + [6] = { 84.3, 51.6, 5135, 18000 }, + [7] = { 75.8, 46.4, 5135, 18000 }, + [8] = { 76.5, 45.2, 5135, 18000 }, + [9] = { 81.1, 43.1, 5135, 18000 }, + [10] = { 55.1, 41.6, 5135, 18000 }, + [11] = { 70.1, 40.5, 5135, 18000 }, + [12] = { 55.1, 39.4, 5135, 18000 }, + [13] = { 66.5, 35.9, 5135, 18000 }, + [14] = { 68, 34.4, 5135, 18000 }, + [15] = { 44.2, 30.1, 5135, 18000 }, + [16] = { 77, 26.2, 5135, 18000 }, + [17] = { 62.9, 26, 5135, 18000 }, + [18] = { 77.1, 23.7, 5135, 18000 }, + [19] = { 43.9, 20.6, 5135, 18000 }, + [20] = { 83.3, 19.8, 5135, 18000 }, + [21] = { 46.9, 19.8, 5135, 18000 }, + [22] = { 70, 19.4, 5135, 18000 }, + [23] = { 51.3, 16.4, 5135, 18000 }, + [24] = { 76.1, 13.1, 5135, 18000 }, + [25] = { 50.2, 40, 5163, 18000 }, + [26] = { 47.9, 40, 5163, 18000 }, + [27] = { 48.2, 34.6, 5163, 18000 }, + [28] = { 47.8, 32.1, 5163, 18000 }, + [29] = { 50.2, 32, 5163, 18000 }, + [30] = { 40.8, 24.6, 5163, 18000 }, + [31] = { 43.6, 24.6, 5163, 18000 }, + [32] = { 43.3, 24.6, 5163, 18000 }, + [33] = { 57.4, 24.4, 5163, 18000 }, + }, + ["lvl"] = "35-36", + ["rnk"] = "1", + }, + [4541] = { + ["coords"] = { + [1] = { 40.9, 64.4, 491, 18000 }, + [2] = { 56, 58.7, 491, 18000 }, + [3] = { 28.9, 56.8, 491, 18000 }, + [4] = { 36.3, 47.4, 491, 18000 }, + }, + ["lvl"] = "27", + ["rnk"] = "1", + }, + [4542] = { + ["coords"] = { + [1] = { 55.4, 26.1, 5163, 604800 }, + }, + ["lvl"] = "40", + ["rnk"] = "1", + }, + [4543] = { + ["coords"] = { + [1] = { 24.4, 50.8, 5136, 604800 }, + }, + ["lvl"] = "34", + ["rnk"] = "1", + }, + [4544] = { + ["coords"] = { + [1] = { 75.9, 42.7, 357, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "37", + }, + [4551] = { + ["coords"] = { + [1] = { 63.3, 48.6, 1497, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [4556] = { + ["coords"] = { + [1] = { 61.5, 41.8, 1497, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [4567] = { + ["coords"] = { + [1] = { 65.9, 67.9, 85, 300 }, + [2] = { 85.5, 13.5, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [4568] = { + ["coords"] = { + [1] = { 65.9, 67.2, 85, 30 }, + [2] = { 85.1, 10, 1497, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [4576] = { + ["coords"] = { + [1] = { 70.8, 30.7, 1497, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [4579] = "_", + [4586] = { + ["coords"] = { + [1] = { 75.3, 73.1, 1497, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "26", + }, + [4595] = { + ["coords"] = { + [1] = { 57.9, 68.7, 85, 30 }, + [2] = { 47.4, 17.3, 1497, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [4607] = { + ["coords"] = { + [1] = { 58.2, 68.2, 85, 300 }, + [2] = { 49.1, 14.6, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [4621] = "_", + [4623] = { + ["coords"] = { + [1] = { 41.5, 53.3, 491, 18000 }, + [2] = { 38.6, 52.7, 491, 18000 }, + [3] = { 42.3, 52.6, 491, 18000 }, + [4] = { 38.7, 52, 491, 18000 }, + [5] = { 32.1, 49.7, 491, 18000 }, + [6] = { 23.4, 48.8, 491, 18000 }, + [7] = { 32.1, 48.3, 491, 18000 }, + [8] = { 23.8, 47.4, 491, 18000 }, + [9] = { 54.4, 45.6, 491, 18000 }, + [10] = { 54.6, 44.3, 491, 18000 }, + [11] = { 16.9, 39.3, 491, 18000 }, + [12] = { 57.4, 38.8, 491, 18000 }, + [13] = { 58.5, 38.4, 491, 18000 }, + [14] = { 66.2, 35.7, 491, 18000 }, + [15] = { 66.5, 34.2, 491, 18000 }, + }, + ["lvl"] = "30-31", + ["rnk"] = "1", + }, + [4624] = { + ["coords"] = { + [1] = { 27.6, 78, 33, 300 }, + [2] = { 28, 77.9, 33, 300 }, + [3] = { 27.2, 77.7, 33, 300 }, + [4] = { 27.2, 77.6, 33, 300 }, + [5] = { 27.5, 77.6, 33, 300 }, + [6] = { 27.8, 77.5, 33, 300 }, + [7] = { 27.4, 77.5, 33, 300 }, + [8] = { 26.9, 77.4, 33, 300 }, + [9] = { 27.3, 77.4, 33, 300 }, + [10] = { 27.7, 77.4, 33, 300 }, + [11] = { 27.1, 77.3, 33, 300 }, + [12] = { 27, 77.3, 33, 300 }, + [13] = { 27.7, 77.2, 33, 300 }, + [14] = { 27.6, 77.2, 33, 300 }, + [15] = { 27.8, 77.1, 33, 300 }, + [16] = { 27.7, 77.1, 33, 300 }, + [17] = { 28, 77.1, 33, 300 }, + [18] = { 28.1, 77.1, 33, 300 }, + [19] = { 28.4, 77.1, 33, 300 }, + [20] = { 26.7, 77, 33, 300 }, + [21] = { 28.6, 77, 33, 300 }, + [22] = { 27.7, 77, 33, 300 }, + [23] = { 27.3, 76.9, 33, 300 }, + [24] = { 28, 76.9, 33, 300 }, + [25] = { 27.5, 76.8, 33, 300 }, + [26] = { 28.5, 76.8, 33, 300 }, + [27] = { 28.3, 76.8, 33, 300 }, + [28] = { 26.8, 76.7, 33, 300 }, + [29] = { 27.6, 76.6, 33, 300 }, + [30] = { 26.6, 76.6, 33, 300 }, + [31] = { 28.1, 76.5, 33, 300 }, + [32] = { 26.6, 76.3, 33, 300 }, + [33] = { 28.4, 76.1, 33, 300 }, + [34] = { 28.3, 76, 33, 300 }, + [35] = { 28.1, 75.9, 33, 25 }, + [36] = { 28.3, 75.7, 33, 300 }, + [37] = { 28.5, 75.6, 33, 300 }, + [38] = { 28.8, 75.4, 33, 300 }, + [39] = { 28.1, 75.2, 33, 300 }, + [40] = { 28.9, 74.8, 33, 300 }, + [41] = { 27.7, 74.6, 33, 300 }, + [42] = { 27.8, 74, 33, 300 }, + [43] = { 28, 73.7, 33, 300 }, + [44] = { 27.9, 73.7, 33, 300 }, + [45] = { 26.8, 73.7, 33, 300 }, + [46] = { 26.9, 73.6, 33, 300 }, + [47] = { 28, 73.6, 33, 300 }, + [48] = { 26.1, 73.4, 33, 300 }, + [49] = { 26.3, 73.3, 33, 300 }, + [50] = { 26.1, 73.1, 33, 300 }, + [51] = { 29.7, 72.6, 33, 300 }, + [52] = { 29.5, 72.6, 33, 300 }, + [53] = { 29.4, 72.2, 33, 300 }, + }, + ["lvl"] = "57", + ["rnk"] = "1", + }, + [4625] = { + ["coords"] = { + [1] = { 6.8, 58.2, 491, 18000 }, + [2] = { 5.9, 57.1, 491, 18000 }, + }, + ["lvl"] = "15", + }, + [4626] = "_", + [4631] = { + ["coords"] = { + [1] = { 26.3, 73.6, 33, 30 }, + }, + ["lvl"] = "35", + }, + [4632] = { + ["coords"] = { + [1] = { 68.5, 52.2, 405, 300 }, + [2] = { 69.2, 51, 405, 300 }, + [3] = { 68.7, 50, 405, 300 }, + [4] = { 70.1, 49.9, 405, 300 }, + [5] = { 69.3, 48.9, 405, 300 }, + [6] = { 68.7, 47.9, 405, 300 }, + [7] = { 69.3, 46.9, 405, 300 }, + [8] = { 68.6, 45.7, 405, 300 }, + [9] = { 70.1, 45.5, 405, 300 }, + [10] = { 69.4, 44.4, 405, 300 }, + [11] = { 68.6, 43.6, 405, 300 }, + [12] = { 69.3, 42.5, 405, 300 }, + [13] = { 68.6, 41.2, 405, 300 }, + [14] = { 70.1, 41.2, 405, 300 }, + [15] = { 69.3, 40.1, 405, 300 }, + [16] = { 68.5, 38.8, 405, 300 }, + }, + ["lvl"] = "30-31", + }, + [4633] = { + ["coords"] = { + [1] = { 68.5, 52.2, 405, 300 }, + [2] = { 69.2, 51, 405, 300 }, + [3] = { 68.7, 50, 405, 300 }, + [4] = { 70.1, 49.9, 405, 300 }, + [5] = { 69.3, 48.9, 405, 300 }, + [6] = { 68.7, 47.9, 405, 300 }, + [7] = { 69.3, 46.9, 405, 300 }, + [8] = { 68.6, 45.7, 405, 300 }, + [9] = { 70.1, 45.5, 405, 300 }, + [10] = { 69.4, 44.4, 405, 300 }, + [11] = { 68.6, 43.6, 405, 300 }, + [12] = { 69.3, 42.5, 405, 300 }, + [13] = { 68.6, 41.2, 405, 300 }, + [14] = { 70.1, 41.2, 405, 300 }, + [15] = { 69.3, 40.1, 405, 300 }, + [16] = { 68.5, 38.8, 405, 300 }, + }, + ["lvl"] = "30-31", + }, + [4634] = { + ["coords"] = { + [1] = { 70.9, 50.6, 405, 300 }, + [2] = { 74.4, 47.4, 405, 300 }, + [3] = { 70.9, 46.7, 405, 300 }, + [4] = { 73, 45.7, 405, 300 }, + [5] = { 71.5, 45.5, 405, 300 }, + [6] = { 72.3, 44.7, 405, 300 }, + [7] = { 71.4, 43.8, 405, 300 }, + [8] = { 70.7, 43.6, 405, 300 }, + [9] = { 73.7, 43.1, 405, 300 }, + [10] = { 72.2, 42.4, 405, 300 }, + [11] = { 72.2, 40.2, 405, 300 }, + }, + ["lvl"] = "31-32", + }, + [4635] = { + ["coords"] = { + [1] = { 73.6, 52.1, 405, 300 }, + [2] = { 74.5, 51.1, 405, 300 }, + [3] = { 71.7, 50.6, 405, 300 }, + [4] = { 73.9, 50.5, 405, 300 }, + [5] = { 73.1, 50.3, 405, 300 }, + [6] = { 74.3, 50, 405, 300 }, + [7] = { 71.6, 50, 405, 300 }, + [8] = { 74.1, 49.7, 405, 300 }, + [9] = { 74.2, 49.1, 405, 300 }, + [10] = { 70.9, 49.1, 405, 300 }, + [11] = { 74.7, 48.8, 405, 300 }, + [12] = { 73.5, 48.5, 405, 300 }, + [13] = { 71.5, 48, 405, 300 }, + [14] = { 70.1, 47.9, 405, 300 }, + [15] = { 73, 47.9, 405, 300 }, + [16] = { 73.8, 47, 405, 300 }, + [17] = { 74.5, 46.8, 405, 300 }, + [18] = { 72.9, 46.7, 405, 300 }, + [19] = { 72.4, 46.6, 405, 300 }, + [20] = { 74.4, 46.1, 405, 300 }, + [21] = { 73.8, 44.7, 405, 300 }, + [22] = { 70.9, 44.3, 405, 300 }, + [23] = { 70.4, 43.2, 405, 300 }, + [24] = { 73.1, 43.1, 405, 300 }, + [25] = { 72.7, 42.4, 405, 300 }, + [26] = { 73.3, 42.4, 405, 300 }, + [27] = { 70.9, 42, 405, 300 }, + [28] = { 71.6, 41.9, 405, 300 }, + [29] = { 71.5, 41.3, 405, 300 }, + [30] = { 69.6, 40.6, 405, 300 }, + [31] = { 72.9, 40.2, 405, 300 }, + [32] = { 70.9, 40.2, 405, 300 }, + [33] = { 70.1, 39.3, 405, 300 }, + }, + ["lvl"] = "31-32", + }, + [4636] = { + ["coords"] = { + [1] = { 73.6, 52.1, 405, 300 }, + [2] = { 74.5, 51.1, 405, 300 }, + [3] = { 71.7, 50.6, 405, 300 }, + [4] = { 73.9, 50.5, 405, 300 }, + [5] = { 73.1, 50.3, 405, 300 }, + [6] = { 74.3, 50, 405, 300 }, + [7] = { 71.6, 50, 405, 300 }, + [8] = { 74.1, 49.7, 405, 300 }, + [9] = { 74.2, 49.1, 405, 300 }, + [10] = { 70.9, 49.1, 405, 300 }, + [11] = { 74.7, 48.8, 405, 300 }, + [12] = { 73.5, 48.5, 405, 300 }, + [13] = { 71.5, 48, 405, 300 }, + [14] = { 70.1, 47.9, 405, 300 }, + [15] = { 73, 47.9, 405, 300 }, + [16] = { 73.8, 47, 405, 300 }, + [17] = { 74.5, 46.8, 405, 300 }, + [18] = { 72.9, 46.7, 405, 300 }, + [19] = { 72.4, 46.6, 405, 300 }, + [20] = { 74.4, 46.1, 405, 300 }, + [21] = { 73.8, 44.7, 405, 300 }, + [22] = { 70.9, 44.3, 405, 300 }, + [23] = { 70.4, 43.2, 405, 300 }, + [24] = { 73.1, 43.1, 405, 300 }, + [25] = { 72.7, 42.4, 405, 300 }, + [26] = { 73.3, 42.4, 405, 300 }, + [27] = { 70.9, 42, 405, 300 }, + [28] = { 71.6, 41.9, 405, 300 }, + [29] = { 71.5, 41.3, 405, 300 }, + [30] = { 69.6, 40.6, 405, 300 }, + [31] = { 72.9, 40.2, 405, 300 }, + [32] = { 70.9, 40.2, 405, 300 }, + [33] = { 70.1, 39.3, 405, 300 }, + }, + ["lvl"] = "32-33", + }, + [4637] = { + ["coords"] = { + [1] = { 73.6, 52.1, 405, 300 }, + [2] = { 74.5, 51.1, 405, 300 }, + [3] = { 71.7, 50.6, 405, 300 }, + [4] = { 73.9, 50.5, 405, 300 }, + [5] = { 73.1, 50.3, 405, 300 }, + [6] = { 74.3, 50, 405, 300 }, + [7] = { 71.6, 50, 405, 300 }, + [8] = { 74.1, 49.7, 405, 300 }, + [9] = { 74.2, 49.1, 405, 300 }, + [10] = { 70.9, 49.1, 405, 300 }, + [11] = { 74.7, 48.8, 405, 300 }, + [12] = { 73.5, 48.5, 405, 300 }, + [13] = { 71.5, 48, 405, 300 }, + [14] = { 70.1, 47.9, 405, 300 }, + [15] = { 73, 47.9, 405, 300 }, + [16] = { 73.8, 47, 405, 300 }, + [17] = { 74.5, 46.8, 405, 300 }, + [18] = { 72.9, 46.7, 405, 300 }, + [19] = { 72.4, 46.6, 405, 300 }, + [20] = { 74.4, 46.1, 405, 300 }, + [21] = { 73.8, 44.7, 405, 300 }, + [22] = { 70.9, 44.3, 405, 300 }, + [23] = { 70.4, 43.2, 405, 300 }, + [24] = { 73.1, 43.1, 405, 300 }, + [25] = { 72.7, 42.4, 405, 300 }, + [26] = { 73.3, 42.4, 405, 300 }, + [27] = { 70.9, 42, 405, 300 }, + [28] = { 71.6, 41.9, 405, 300 }, + [29] = { 71.5, 41.3, 405, 300 }, + [30] = { 69.6, 40.6, 405, 300 }, + [31] = { 72.9, 40.2, 405, 300 }, + [32] = { 70.9, 40.2, 405, 300 }, + [33] = { 70.1, 39.3, 405, 300 }, + }, + ["lvl"] = "32-33", + }, + [4638] = { + ["coords"] = { + [1] = { 66.2, 75.5, 405, 300 }, + [2] = { 65.7, 74.6, 405, 300 }, + [3] = { 67.1, 74.5, 405, 300 }, + [4] = { 65.6, 70.3, 405, 300 }, + [5] = { 67.9, 70.2, 405, 300 }, + [6] = { 67.1, 70, 405, 300 }, + [7] = { 70.1, 69.1, 405, 300 }, + [8] = { 66.5, 69.1, 405, 300 }, + [9] = { 72.1, 68.9, 405, 300 }, + [10] = { 71.5, 67, 405, 300 }, + [11] = { 73.8, 65.7, 405, 300 }, + }, + ["lvl"] = "32-33", + }, + [4639] = { + ["coords"] = { + [1] = { 66.2, 75.5, 405, 300 }, + [2] = { 65.7, 74.6, 405, 300 }, + [3] = { 67.1, 74.5, 405, 300 }, + [4] = { 65.6, 70.3, 405, 300 }, + [5] = { 67.9, 70.2, 405, 300 }, + [6] = { 67.1, 70, 405, 300 }, + [7] = { 70.1, 69.1, 405, 300 }, + [8] = { 66.5, 69.1, 405, 300 }, + [9] = { 72.1, 68.9, 405, 300 }, + [10] = { 71.5, 67, 405, 300 }, + [11] = { 73.8, 65.7, 405, 300 }, + }, + ["lvl"] = "32-33", + }, + [4640] = { + ["coords"] = { + [1] = { 67.2, 83.4, 405, 300 }, + [2] = { 67.9, 82.3, 405, 300 }, + [3] = { 69.3, 82.2, 405, 300 }, + [4] = { 68.5, 81.3, 405, 300 }, + [5] = { 67.2, 81.2, 405, 300 }, + [6] = { 70, 81.2, 405, 300 }, + [7] = { 70.7, 80.1, 405, 300 }, + [8] = { 66.1, 79.7, 405, 300 }, + [9] = { 71.4, 79, 405, 300 }, + [10] = { 66.2, 78.9, 405, 300 }, + [11] = { 64.9, 77.9, 405, 300 }, + [12] = { 72.8, 77.8, 405, 300 }, + [13] = { 68.6, 76.7, 405, 300 }, + [14] = { 65.1, 75.9, 405, 300 }, + [15] = { 69.5, 75.8, 405, 300 }, + [16] = { 67.8, 75.7, 405, 300 }, + [17] = { 70.6, 73.8, 405, 300 }, + [18] = { 66.5, 73.7, 405, 300 }, + [19] = { 72.9, 73.6, 405, 300 }, + [20] = { 69.4, 73.6, 405, 300 }, + [21] = { 67.7, 73.3, 405, 300 }, + [22] = { 68.6, 72.4, 405, 300 }, + [23] = { 65.8, 72.3, 405, 300 }, + [24] = { 67.2, 72.2, 405, 300 }, + [25] = { 72.9, 72.1, 405, 300 }, + [26] = { 66.4, 71.3, 405, 300 }, + [27] = { 68.7, 71.1, 405, 300 }, + [28] = { 69.3, 70, 405, 300 }, + [29] = { 74.5, 69.1, 405, 300 }, + [30] = { 75.1, 68.1, 405, 300 }, + [31] = { 70.7, 68, 405, 300 }, + [32] = { 73.7, 67.6, 405, 300 }, + [33] = { 72.9, 66.8, 405, 300 }, + }, + ["lvl"] = "33-34", + }, + [4641] = { + ["coords"] = { + [1] = { 67.2, 83.4, 405, 300 }, + [2] = { 67.9, 82.3, 405, 300 }, + [3] = { 69.3, 82.2, 405, 300 }, + [4] = { 68.5, 81.3, 405, 300 }, + [5] = { 67.2, 81.2, 405, 300 }, + [6] = { 70, 81.2, 405, 300 }, + [7] = { 70.7, 80.1, 405, 300 }, + [8] = { 66.1, 79.7, 405, 300 }, + [9] = { 71.4, 79, 405, 300 }, + [10] = { 66.2, 78.9, 405, 300 }, + [11] = { 64.9, 77.9, 405, 300 }, + [12] = { 72.8, 77.8, 405, 300 }, + [13] = { 68.6, 76.7, 405, 300 }, + [14] = { 65.1, 75.9, 405, 300 }, + [15] = { 69.5, 75.8, 405, 300 }, + [16] = { 67.8, 75.7, 405, 300 }, + [17] = { 70.6, 73.8, 405, 300 }, + [18] = { 66.5, 73.7, 405, 300 }, + [19] = { 72.9, 73.6, 405, 300 }, + [20] = { 69.4, 73.6, 405, 300 }, + [21] = { 67.7, 73.3, 405, 300 }, + [22] = { 68.6, 72.4, 405, 300 }, + [23] = { 65.8, 72.3, 405, 300 }, + [24] = { 67.2, 72.2, 405, 300 }, + [25] = { 72.9, 72.1, 405, 300 }, + [26] = { 66.4, 71.3, 405, 300 }, + [27] = { 68.7, 71.1, 405, 300 }, + [28] = { 69.3, 70, 405, 300 }, + [29] = { 74.5, 69.1, 405, 300 }, + [30] = { 75.1, 68.1, 405, 300 }, + [31] = { 70.7, 68, 405, 300 }, + [32] = { 73.7, 67.6, 405, 300 }, + [33] = { 72.9, 66.8, 405, 300 }, + }, + ["lvl"] = "33-34", + }, + [4642] = { + ["coords"] = { + [1] = { 68.5, 83.2, 405, 300 }, + [2] = { 67.8, 80, 405, 300 }, + [3] = { 65.6, 79, 405, 300 }, + [4] = { 72.5, 78.7, 405, 300 }, + [5] = { 70, 77.8, 405, 300 }, + [6] = { 69.9, 77, 405, 300 }, + [7] = { 70.7, 75.8, 405, 300 }, + [8] = { 68.5, 74.6, 405, 300 }, + [9] = { 70, 74.4, 405, 300 }, + [10] = { 70, 72.3, 405, 300 }, + }, + ["lvl"] = "34-35", + }, + [4643] = { + ["coords"] = { + [1] = { 65.5, 80.6, 405, 300 }, + [2] = { 72.3, 74.6, 405, 300 }, + }, + ["lvl"] = "34-35", + }, + [4644] = { + ["coords"] = { + [1] = { 66.6, 80.6, 405, 300 }, + [2] = { 66, 80.6, 405, 300 }, + [3] = { 66.4, 80.1, 405, 300 }, + [4] = { 72.2, 78.5, 405, 300 }, + [5] = { 69.7, 78.3, 405, 300 }, + [6] = { 69.3, 77.7, 405, 300 }, + [7] = { 70.6, 75.2, 405, 300 }, + [8] = { 71, 75.1, 405, 300 }, + [9] = { 73.2, 74.6, 405, 300 }, + [10] = { 73.4, 73.4, 405, 300 }, + [11] = { 73.6, 72.7, 405, 300 }, + [12] = { 71.3, 71.4, 405, 300 }, + }, + ["lvl"] = "35-36", + }, + [4645] = { + ["coords"] = { + [1] = { 66.6, 80.6, 405, 300 }, + [2] = { 66, 80.6, 405, 300 }, + [3] = { 66.4, 80.1, 405, 300 }, + [4] = { 72.2, 78.5, 405, 300 }, + [5] = { 69.7, 78.3, 405, 300 }, + [6] = { 69.3, 77.7, 405, 300 }, + [7] = { 70.6, 75.2, 405, 300 }, + [8] = { 71, 75.1, 405, 300 }, + [9] = { 73.2, 74.6, 405, 300 }, + [10] = { 73.4, 73.4, 405, 300 }, + [11] = { 73.6, 72.7, 405, 300 }, + [12] = { 71.3, 71.4, 405, 300 }, + }, + ["lvl"] = "35-36", + }, + [4646] = { + ["coords"] = { + [1] = { 40.5, 89.8, 405, 300 }, + [2] = { 39.7, 89.5, 405, 300 }, + [3] = { 35.4, 88.1, 405, 300 }, + [4] = { 35.9, 85.6, 405, 300 }, + [5] = { 35.1, 85.5, 405, 300 }, + [6] = { 39, 84.7, 405, 300 }, + [7] = { 34.5, 84.5, 405, 300 }, + [8] = { 35.1, 84.4, 405, 300 }, + [9] = { 37.4, 84.3, 405, 300 }, + [10] = { 35.2, 83.5, 405, 300 }, + [11] = { 39.8, 83.3, 405, 300 }, + [12] = { 39, 82.6, 405, 300 }, + [13] = { 34.6, 82.3, 405, 300 }, + [14] = { 34.4, 81.4, 405, 300 }, + [15] = { 34.4, 80.2, 405, 300 }, + }, + ["lvl"] = "32-33", + }, + [4647] = { + ["coords"] = { + [1] = { 40.5, 89.8, 405, 300 }, + [2] = { 39.7, 89.5, 405, 300 }, + [3] = { 35.4, 88.1, 405, 300 }, + [4] = { 35.9, 85.6, 405, 300 }, + [5] = { 35.1, 85.5, 405, 300 }, + [6] = { 39, 84.7, 405, 300 }, + [7] = { 34.5, 84.5, 405, 300 }, + [8] = { 35.1, 84.4, 405, 300 }, + [9] = { 37.4, 84.3, 405, 300 }, + [10] = { 35.2, 83.5, 405, 300 }, + [11] = { 39.8, 83.3, 405, 300 }, + [12] = { 39, 82.6, 405, 300 }, + [13] = { 34.6, 82.3, 405, 300 }, + [14] = { 34.4, 81.4, 405, 300 }, + [15] = { 34.4, 80.2, 405, 300 }, + }, + ["lvl"] = "32-33", + }, + [4648] = { + ["coords"] = { + [1] = { 42.3, 2, 357, 300 }, + [2] = { 42, 1.9, 357, 300 }, + [3] = { 42.7, 1.3, 357, 300 }, + [4] = { 42.2, 1, 357, 300 }, + [5] = { 43.1, 0.8, 357, 300 }, + [6] = { 38.4, 97.1, 405, 300 }, + [7] = { 38.1, 96.9, 405, 300 }, + [8] = { 39.2, 96, 405, 300 }, + [9] = { 38.4, 95.6, 405, 300 }, + [10] = { 39.8, 95.2, 405, 300 }, + [11] = { 38.3, 94.5, 405, 300 }, + [12] = { 39.2, 94.3, 405, 300 }, + [13] = { 39.3, 93.6, 405, 300 }, + [14] = { 40.5, 93.5, 405, 300 }, + [15] = { 38.7, 93.4, 405, 300 }, + [16] = { 40.4, 93, 405, 300 }, + [17] = { 40.6, 92.2, 405, 300 }, + [18] = { 38.7, 92, 405, 300 }, + [19] = { 35.1, 91.6, 405, 300 }, + [20] = { 36.2, 91.5, 405, 300 }, + [21] = { 38.5, 90.8, 405, 300 }, + [22] = { 34.6, 90.4, 405, 300 }, + [23] = { 35.8, 90.3, 405, 300 }, + [24] = { 35.2, 89.9, 405, 300 }, + [25] = { 37, 89.4, 405, 300 }, + [26] = { 39, 89.4, 405, 300 }, + [27] = { 35.2, 88.9, 405, 300 }, + [28] = { 34.4, 88.9, 405, 300 }, + [29] = { 40.6, 87.7, 405, 300 }, + [30] = { 36.5, 87.1, 405, 300 }, + [31] = { 40.5, 86.6, 405, 300 }, + [32] = { 39, 85.9, 405, 300 }, + [33] = { 37, 85.7, 405, 300 }, + [34] = { 34.4, 85.5, 405, 300 }, + [35] = { 40.4, 85.5, 405, 300 }, + [36] = { 37.9, 85.3, 405, 300 }, + [37] = { 37, 84.6, 405, 300 }, + [38] = { 40.5, 84.5, 405, 300 }, + [39] = { 38.3, 84.2, 405, 300 }, + [40] = { 40.3, 83.5, 405, 300 }, + [41] = { 34.3, 83.5, 405, 300 }, + [42] = { 35.9, 83.4, 405, 300 }, + [43] = { 35.1, 82.3, 405, 300 }, + [44] = { 38.1, 82.2, 405, 300 }, + [45] = { 36.1, 82.2, 405, 300 }, + [46] = { 37.4, 82.2, 405, 300 }, + [47] = { 35.6, 82.2, 405, 300 }, + [48] = { 37.4, 81.4, 405, 300 }, + [49] = { 36.1, 80.3, 405, 300 }, + [50] = { 35.1, 80.3, 405, 300 }, + [51] = { 37.4, 80.2, 405, 300 }, + [52] = { 36.9, 80.1, 405, 300 }, + [53] = { 36.7, 79.2, 405, 300 }, + }, + ["lvl"] = "33-34", + }, + [4649] = { + ["coords"] = { + [1] = { 42.3, 2, 357, 300 }, + [2] = { 42, 1.9, 357, 300 }, + [3] = { 42.7, 1.3, 357, 300 }, + [4] = { 42.2, 1, 357, 300 }, + [5] = { 43.1, 0.8, 357, 300 }, + [6] = { 38.4, 97.1, 405, 300 }, + [7] = { 38.1, 96.9, 405, 300 }, + [8] = { 39.2, 96, 405, 300 }, + [9] = { 38.4, 95.6, 405, 300 }, + [10] = { 39.8, 95.2, 405, 300 }, + [11] = { 38.3, 94.5, 405, 300 }, + [12] = { 39.2, 94.3, 405, 300 }, + [13] = { 39.3, 93.6, 405, 300 }, + [14] = { 40.5, 93.5, 405, 300 }, + [15] = { 38.7, 93.4, 405, 300 }, + [16] = { 40.4, 93, 405, 300 }, + [17] = { 40.6, 92.2, 405, 300 }, + [18] = { 38.7, 92, 405, 300 }, + [19] = { 35.1, 91.6, 405, 300 }, + [20] = { 36.2, 91.5, 405, 300 }, + [21] = { 38.5, 90.8, 405, 300 }, + [22] = { 34.6, 90.4, 405, 300 }, + [23] = { 35.8, 90.3, 405, 300 }, + [24] = { 35.2, 89.9, 405, 300 }, + [25] = { 37, 89.4, 405, 300 }, + [26] = { 39, 89.4, 405, 300 }, + [27] = { 35.2, 88.9, 405, 300 }, + [28] = { 34.4, 88.9, 405, 300 }, + [29] = { 40.6, 87.7, 405, 300 }, + [30] = { 36.5, 87.1, 405, 300 }, + [31] = { 40.5, 86.6, 405, 300 }, + [32] = { 39, 85.9, 405, 300 }, + [33] = { 37, 85.7, 405, 300 }, + [34] = { 34.4, 85.5, 405, 300 }, + [35] = { 40.4, 85.5, 405, 300 }, + [36] = { 37.9, 85.3, 405, 300 }, + [37] = { 37, 84.6, 405, 300 }, + [38] = { 40.5, 84.5, 405, 300 }, + [39] = { 38.3, 84.2, 405, 300 }, + [40] = { 40.3, 83.5, 405, 300 }, + [41] = { 34.3, 83.5, 405, 300 }, + [42] = { 35.9, 83.4, 405, 300 }, + [43] = { 35.1, 82.3, 405, 300 }, + [44] = { 38.1, 82.2, 405, 300 }, + [45] = { 36.1, 82.2, 405, 300 }, + [46] = { 37.4, 82.2, 405, 300 }, + [47] = { 35.6, 82.2, 405, 300 }, + [48] = { 37.4, 81.4, 405, 300 }, + [49] = { 36.1, 80.3, 405, 300 }, + [50] = { 35.1, 80.3, 405, 300 }, + [51] = { 37.4, 80.2, 405, 300 }, + [52] = { 36.9, 80.1, 405, 300 }, + [53] = { 36.7, 79.2, 405, 300 }, + }, + ["lvl"] = "33-34", + }, + [4651] = { + ["coords"] = { + [1] = { 42.4, 1.6, 357, 300 }, + [2] = { 43, 1.5, 357, 300 }, + [3] = { 41.9, 1.1, 357, 300 }, + [4] = { 38.7, 96.5, 405, 300 }, + [5] = { 39.7, 96.3, 405, 300 }, + [6] = { 37.9, 95.7, 405, 300 }, + [7] = { 38.5, 93.9, 405, 300 }, + [8] = { 40.1, 92.6, 405, 300 }, + [9] = { 38.5, 92.5, 405, 300 }, + [10] = { 38.6, 91.4, 405, 300 }, + [11] = { 37.6, 90.3, 405, 300 }, + [12] = { 36.6, 88.5, 405, 300 }, + [13] = { 41, 87.5, 405, 300 }, + [14] = { 39.1, 87.4, 405, 300 }, + [15] = { 36.4, 82.4, 405, 300 }, + [16] = { 36.1, 81, 405, 300 }, + [17] = { 37.4, 81, 405, 300 }, + }, + ["lvl"] = "34-35", + }, + [4652] = { + ["coords"] = { + [1] = { 43.3, 1.2, 357, 300 }, + [2] = { 42.5, 1.1, 357, 300 }, + [3] = { 43.6, 1, 357, 300 }, + [4] = { 42.6, 0.9, 357, 300 }, + [5] = { 43.6, 0.9, 357, 300 }, + [6] = { 43.4, 0.7, 357, 300 }, + [7] = { 40.1, 95.8, 405, 300 }, + [8] = { 38.8, 95.7, 405, 300 }, + [9] = { 40.5, 95.6, 405, 300 }, + [10] = { 39, 95.4, 405, 300 }, + [11] = { 40.6, 95.4, 405, 300 }, + [12] = { 40.1, 95.1, 405, 300 }, + [13] = { 40.2, 94.1, 405, 300 }, + [14] = { 39.9, 94, 405, 300 }, + [15] = { 38.9, 93.8, 405, 300 }, + [16] = { 35.6, 92.3, 405, 300 }, + [17] = { 40.3, 91.9, 405, 300 }, + [18] = { 34.8, 91.1, 405, 300 }, + [19] = { 36.3, 90.6, 405, 300 }, + }, + ["lvl"] = "35-36", + }, + [4653] = { + ["coords"] = { + [1] = { 43.3, 1.2, 357, 300 }, + [2] = { 42.5, 1.1, 357, 300 }, + [3] = { 43.6, 1, 357, 300 }, + [4] = { 42.6, 0.9, 357, 300 }, + [5] = { 43.6, 0.9, 357, 300 }, + [6] = { 43.4, 0.7, 357, 300 }, + [7] = { 40.1, 95.8, 405, 300 }, + [8] = { 38.8, 95.7, 405, 300 }, + [9] = { 40.5, 95.6, 405, 300 }, + [10] = { 39, 95.4, 405, 300 }, + [11] = { 40.6, 95.4, 405, 300 }, + [12] = { 40.1, 95.1, 405, 300 }, + [13] = { 40.2, 94.1, 405, 300 }, + [14] = { 39.9, 94, 405, 300 }, + [15] = { 38.9, 93.8, 405, 300 }, + [16] = { 35.6, 92.3, 405, 300 }, + [17] = { 40.3, 91.9, 405, 300 }, + [18] = { 34.8, 91.1, 405, 300 }, + [19] = { 36.3, 90.6, 405, 300 }, + }, + ["lvl"] = "35-36", + }, + [4654] = { + ["coords"] = { + [1] = { 30, 68.9, 405, 300 }, + [2] = { 30, 67.8, 405, 300 }, + [3] = { 30.1, 66.3, 405, 300 }, + [4] = { 31.2, 66.2, 405, 300 }, + [5] = { 33, 65.9, 405, 300 }, + [6] = { 30.8, 65.4, 405, 300 }, + [7] = { 30, 62.4, 405, 300 }, + [8] = { 35.3, 61.4, 405, 300 }, + [9] = { 29.9, 61.3, 405, 300 }, + [10] = { 35.8, 61.2, 405, 300 }, + [11] = { 30.7, 61.1, 405, 300 }, + [12] = { 36.8, 60.6, 405, 300 }, + [13] = { 31.7, 60.2, 405, 300 }, + [14] = { 36, 59, 405, 300 }, + [15] = { 34.5, 56.7, 405, 300 }, + [16] = { 33.7, 55.7, 405, 300 }, + [17] = { 30.8, 55.7, 405, 300 }, + [18] = { 34.5, 55.6, 405, 300 }, + [19] = { 31.5, 54.6, 405, 300 }, + [20] = { 34.2, 54.4, 405, 300 }, + [21] = { 33.6, 54.4, 405, 300 }, + [22] = { 35.3, 53.6, 405, 300 }, + [23] = { 30.7, 53.4, 405, 300 }, + [24] = { 39.4, 94.2, 2100, 300 }, + [25] = { 39.1, 88.2, 2100, 300 }, + [26] = { 39.8, 79.7, 2100, 300 }, + [27] = { 46.1, 79.3, 2100, 300 }, + [28] = { 55.5, 77.6, 2100, 300 }, + [29] = { 43.5, 75.1, 2100, 300 }, + [30] = { 39.3, 58.6, 2100, 300 }, + [31] = { 68.1, 53.2, 2100, 300 }, + [32] = { 39, 52.7, 2100, 300 }, + [33] = { 70.9, 52.4, 2100, 300 }, + [34] = { 42.9, 51.7, 2100, 300 }, + [35] = { 76.2, 49.1, 2100, 300 }, + [36] = { 48.3, 46.4, 2100, 300 }, + [37] = { 71.7, 40.4, 2100, 300 }, + [38] = { 63.8, 27.8, 2100, 300 }, + [39] = { 59.6, 22.4, 2100, 300 }, + [40] = { 43.4, 22.2, 2100, 300 }, + [41] = { 63.9, 21.6, 2100, 300 }, + [42] = { 47.3, 15.9, 2100, 300 }, + [43] = { 62.4, 15.3, 2100, 300 }, + [44] = { 58.9, 15.2, 2100, 300 }, + [45] = { 68.3, 10.6, 2100, 300 }, + [46] = { 43, 9.6, 2100, 300 }, + }, + ["lvl"] = "37-38", + }, + [4655] = { + ["coords"] = { + [1] = { 30, 68.9, 405, 300 }, + [2] = { 30, 67.8, 405, 300 }, + [3] = { 30.1, 66.3, 405, 300 }, + [4] = { 31.2, 66.2, 405, 300 }, + [5] = { 33, 65.9, 405, 300 }, + [6] = { 30.8, 65.4, 405, 300 }, + [7] = { 30, 62.4, 405, 300 }, + [8] = { 35.3, 61.4, 405, 300 }, + [9] = { 29.9, 61.3, 405, 300 }, + [10] = { 35.8, 61.2, 405, 300 }, + [11] = { 30.7, 61.1, 405, 300 }, + [12] = { 36.8, 60.6, 405, 300 }, + [13] = { 31.7, 60.2, 405, 300 }, + [14] = { 36, 59, 405, 300 }, + [15] = { 34.5, 56.7, 405, 300 }, + [16] = { 33.7, 55.7, 405, 300 }, + [17] = { 30.8, 55.7, 405, 300 }, + [18] = { 34.5, 55.6, 405, 300 }, + [19] = { 31.5, 54.6, 405, 300 }, + [20] = { 34.2, 54.4, 405, 300 }, + [21] = { 33.6, 54.4, 405, 300 }, + [22] = { 35.3, 53.6, 405, 300 }, + [23] = { 30.7, 53.4, 405, 300 }, + [24] = { 39.4, 94.2, 2100, 300 }, + [25] = { 39.1, 88.2, 2100, 300 }, + [26] = { 39.8, 79.7, 2100, 300 }, + [27] = { 46.1, 79.3, 2100, 300 }, + [28] = { 55.5, 77.6, 2100, 300 }, + [29] = { 43.5, 75.1, 2100, 300 }, + [30] = { 39.3, 58.6, 2100, 300 }, + [31] = { 68.1, 53.2, 2100, 300 }, + [32] = { 39, 52.7, 2100, 300 }, + [33] = { 70.9, 52.4, 2100, 300 }, + [34] = { 42.9, 51.7, 2100, 300 }, + [35] = { 76.2, 49.1, 2100, 300 }, + [36] = { 48.3, 46.4, 2100, 300 }, + [37] = { 71.7, 40.4, 2100, 300 }, + [38] = { 63.8, 27.8, 2100, 300 }, + [39] = { 59.6, 22.4, 2100, 300 }, + [40] = { 43.4, 22.2, 2100, 300 }, + [41] = { 63.9, 21.6, 2100, 300 }, + [42] = { 47.3, 15.9, 2100, 300 }, + [43] = { 62.4, 15.3, 2100, 300 }, + [44] = { 58.9, 15.2, 2100, 300 }, + [45] = { 68.3, 10.6, 2100, 300 }, + [46] = { 43, 9.6, 2100, 300 }, + }, + ["lvl"] = "37-38", + }, + [4656] = { + ["coords"] = { + [1] = { 31.3, 61, 405, 300 }, + [2] = { 32.5, 61, 405, 300 }, + [3] = { 32, 60.9, 405, 300 }, + [4] = { 29.5, 60.6, 405, 300 }, + [5] = { 32, 59.8, 405, 300 }, + [6] = { 32.6, 59.8, 405, 300 }, + [7] = { 31.5, 58.9, 405, 300 }, + [8] = { 30.8, 58.8, 405, 300 }, + [9] = { 29.9, 58.3, 405, 300 }, + [10] = { 29.7, 58.1, 405, 300 }, + [11] = { 30.2, 57.8, 405, 300 }, + [12] = { 29.8, 57.7, 405, 300 }, + [13] = { 30.7, 56.8, 405, 300 }, + [14] = { 32.2, 55.5, 405, 300 }, + [15] = { 32.5, 55, 405, 300 }, + [16] = { 33.3, 54.9, 405, 300 }, + [17] = { 33, 54.8, 405, 300 }, + [18] = { 30.5, 54.7, 405, 300 }, + [19] = { 30, 54.6, 405, 300 }, + [20] = { 29.4, 54.5, 405, 300 }, + [21] = { 29, 53.7, 405, 300 }, + [22] = { 32.2, 53.6, 405, 300 }, + [23] = { 32.8, 53.5, 405, 300 }, + [24] = { 34.2, 53.2, 405, 300 }, + [25] = { 29.3, 52.1, 405, 300 }, + [26] = { 30.6, 52, 405, 300 }, + [27] = { 31.4, 51.2, 405, 300 }, + [28] = { 46.3, 51.1, 2100, 300 }, + [29] = { 52.7, 50.9, 2100, 300 }, + [30] = { 50.2, 50.5, 2100, 300 }, + [31] = { 36.6, 48.9, 2100, 300 }, + [32] = { 50.3, 44.5, 2100, 300 }, + [33] = { 53.4, 44.2, 2100, 300 }, + [34] = { 47.2, 39.6, 2100, 300 }, + [35] = { 43.5, 39.3, 2100, 300 }, + [36] = { 39, 36.5, 2100, 300 }, + [37] = { 37.6, 35.3, 2100, 300 }, + [38] = { 40.5, 33.7, 2100, 300 }, + [39] = { 38.1, 32.9, 2100, 300 }, + [40] = { 43.1, 28.3, 2100, 300 }, + [41] = { 51.1, 21, 2100, 300 }, + [42] = { 53.2, 18.3, 2100, 300 }, + [43] = { 57.5, 18, 2100, 300 }, + [44] = { 55.8, 17.5, 2100, 300 }, + [45] = { 42.2, 16.4, 2100, 300 }, + [46] = { 39.2, 16.2, 2100, 300 }, + [47] = { 35.8, 15.4, 2100, 300 }, + [48] = { 34, 11, 2100, 300 }, + [49] = { 51.1, 10.6, 2100, 300 }, + [50] = { 54.5, 10, 2100, 300 }, + [51] = { 62.2, 8.3, 2100, 300 }, + [52] = { 35.7, 2.4, 2100, 300 }, + [53] = { 42.3, 1.9, 2100, 300 }, + }, + ["lvl"] = "38-39", + }, + [4657] = { + ["coords"] = { + [1] = { 31.3, 61, 405, 300 }, + [2] = { 32.5, 61, 405, 300 }, + [3] = { 32, 60.9, 405, 300 }, + [4] = { 29.5, 60.6, 405, 300 }, + [5] = { 32, 59.8, 405, 300 }, + [6] = { 32.6, 59.8, 405, 300 }, + [7] = { 31.5, 58.9, 405, 300 }, + [8] = { 30.8, 58.8, 405, 300 }, + [9] = { 29.9, 58.3, 405, 300 }, + [10] = { 29.7, 58.1, 405, 300 }, + [11] = { 30.2, 57.8, 405, 300 }, + [12] = { 29.8, 57.7, 405, 300 }, + [13] = { 30.7, 56.8, 405, 300 }, + [14] = { 32.2, 55.5, 405, 300 }, + [15] = { 32.5, 55, 405, 300 }, + [16] = { 33.3, 54.9, 405, 300 }, + [17] = { 33, 54.8, 405, 300 }, + [18] = { 30.5, 54.7, 405, 300 }, + [19] = { 30, 54.6, 405, 300 }, + [20] = { 29.4, 54.5, 405, 300 }, + [21] = { 29, 53.7, 405, 300 }, + [22] = { 32.2, 53.6, 405, 300 }, + [23] = { 32.8, 53.5, 405, 300 }, + [24] = { 34.2, 53.2, 405, 300 }, + [25] = { 29.3, 52.1, 405, 300 }, + [26] = { 30.6, 52, 405, 300 }, + [27] = { 31.4, 51.2, 405, 300 }, + [28] = { 46.3, 51.1, 2100, 300 }, + [29] = { 52.7, 50.9, 2100, 300 }, + [30] = { 50.2, 50.5, 2100, 300 }, + [31] = { 36.6, 48.9, 2100, 300 }, + [32] = { 50.3, 44.5, 2100, 300 }, + [33] = { 53.4, 44.2, 2100, 300 }, + [34] = { 47.2, 39.6, 2100, 300 }, + [35] = { 43.5, 39.3, 2100, 300 }, + [36] = { 39, 36.5, 2100, 300 }, + [37] = { 37.6, 35.3, 2100, 300 }, + [38] = { 40.5, 33.7, 2100, 300 }, + [39] = { 38.1, 32.9, 2100, 300 }, + [40] = { 43.1, 28.3, 2100, 300 }, + [41] = { 51.1, 21, 2100, 300 }, + [42] = { 53.2, 18.3, 2100, 300 }, + [43] = { 57.5, 18, 2100, 300 }, + [44] = { 55.8, 17.5, 2100, 300 }, + [45] = { 42.2, 16.4, 2100, 300 }, + [46] = { 39.2, 16.2, 2100, 300 }, + [47] = { 35.8, 15.4, 2100, 300 }, + [48] = { 34, 11, 2100, 300 }, + [49] = { 51.1, 10.6, 2100, 300 }, + [50] = { 54.5, 10, 2100, 300 }, + [51] = { 62.2, 8.3, 2100, 300 }, + [52] = { 35.7, 2.4, 2100, 300 }, + [53] = { 42.3, 1.9, 2100, 300 }, + }, + ["lvl"] = "38-39", + }, + [4658] = { + ["coords"] = { + [1] = { 28.8, 60.8, 405, 300 }, + [2] = { 28.9, 58, 405, 300 }, + [3] = { 29.3, 55.5, 405, 300 }, + [4] = { 29.1, 50.7, 405, 300 }, + [5] = { 30.5, 50.6, 405, 300 }, + [6] = { 29.3, 50.6, 405, 300 }, + [7] = { 32.6, 50.1, 2100, 300 }, + [8] = { 33.1, 34.9, 2100, 300 }, + [9] = { 35.5, 20.9, 2100, 300 }, + }, + ["lvl"] = "39-40", + }, + [4659] = { + ["coords"] = { + [1] = { 28.8, 60.8, 405, 300 }, + [2] = { 28.9, 58, 405, 300 }, + [3] = { 29.3, 55.5, 405, 300 }, + [4] = { 29.1, 50.7, 405, 300 }, + [5] = { 30.5, 50.6, 405, 300 }, + [6] = { 29.3, 50.6, 405, 300 }, + [7] = { 32.6, 50.1, 2100, 300 }, + [8] = { 33.1, 34.9, 2100, 300 }, + [9] = { 35.5, 20.9, 2100, 300 }, + }, + ["lvl"] = "39-40", + }, + [4662] = { + ["coords"] = { + [1] = { 65.4, 80.7, 405, 300 }, + [2] = { 65.5, 80.6, 405, 300 }, + [3] = { 72.2, 74.5, 405, 300 }, + [4] = { 72.3, 74.5, 405, 300 }, + }, + ["lvl"] = "37-38", + }, + [4663] = { + ["coords"] = { + [1] = { 52.9, 32.3, 405, 300 }, + [2] = { 53.1, 32.2, 405, 300 }, + [3] = { 55.2, 30.1, 405, 300 }, + [4] = { 56.8, 30, 405, 300 }, + [5] = { 52.5, 30, 405, 300 }, + [6] = { 55.3, 29.9, 405, 300 }, + [7] = { 53.3, 29.9, 405, 300 }, + [8] = { 52.1, 28.9, 405, 300 }, + [9] = { 54.2, 28, 405, 300 }, + [10] = { 57.2, 28, 405, 300 }, + [11] = { 54, 27.9, 405, 300 }, + [12] = { 55.9, 27.4, 405, 300 }, + [13] = { 57.4, 26.3, 405, 300 }, + [14] = { 54.7, 24.6, 405, 300 }, + [15] = { 56.9, 24.6, 405, 300 }, + [16] = { 56.6, 23.5, 405, 300 }, + [17] = { 54.8, 23.5, 405, 300 }, + [18] = { 57, 22.9, 405, 300 }, + [19] = { 56.8, 22.7, 405, 300 }, + [20] = { 57.3, 22.4, 405, 300 }, + [21] = { 55.3, 22.4, 405, 300 }, + [22] = { 56.1, 22.3, 405, 300 }, + [23] = { 56.7, 22.1, 405, 300 }, + [24] = { 38.1, 91.3, 406, 300 }, + [25] = { 36.6, 91.3, 406, 300 }, + [26] = { 37.2, 91.2, 406, 300 }, + [27] = { 37.6, 91, 406, 300 }, + }, + ["lvl"] = "30-31", + }, + [4664] = { + ["coords"] = { + [1] = { 52.7, 32.5, 405, 300 }, + [2] = { 52.4, 32.5, 405, 300 }, + [3] = { 52.8, 32.3, 405, 300 }, + [4] = { 54, 30.4, 405, 300 }, + [5] = { 56, 29.9, 405, 300 }, + [6] = { 56.3, 29.5, 405, 300 }, + [7] = { 56.1, 29.2, 405, 300 }, + [8] = { 55.1, 28.6, 405, 300 }, + [9] = { 52.3, 28.2, 405, 300 }, + [10] = { 57.6, 26.3, 405, 300 }, + [11] = { 57.7, 26.3, 405, 300 }, + [12] = { 57.5, 26, 405, 300 }, + [13] = { 56.9, 25.7, 405, 300 }, + [14] = { 56.4, 21.6, 405, 300 }, + [15] = { 37.4, 90.6, 406, 300 }, + }, + ["lvl"] = "30-31", + }, + [4665] = { + ["coords"] = { + [1] = { 56.1, 31.4, 405, 300 }, + [2] = { 56, 31.1, 405, 300 }, + [3] = { 54.5, 30, 405, 300 }, + [4] = { 52.3, 29.7, 405, 300 }, + [5] = { 52.5, 29.3, 405, 300 }, + [6] = { 52.3, 28.9, 405, 300 }, + [7] = { 57.5, 28.7, 405, 300 }, + [8] = { 52.8, 28.2, 405, 300 }, + [9] = { 53.2, 27.4, 405, 300 }, + [10] = { 52.9, 27.2, 405, 300 }, + [11] = { 55, 27.1, 405, 300 }, + [12] = { 55.2, 26.9, 405, 300 }, + [13] = { 54.6, 26.6, 405, 300 }, + [14] = { 53.6, 26.3, 405, 300 }, + [15] = { 55, 26.2, 405, 300 }, + [16] = { 55.5, 26.2, 405, 300 }, + [17] = { 56.5, 21.4, 405, 300 }, + [18] = { 37.5, 90.6, 406, 300 }, + }, + ["lvl"] = "31-32", + }, + [4666] = { + ["coords"] = { + [1] = { 54.4, 33.2, 405, 300 }, + [2] = { 55.1, 30.4, 405, 300 }, + [3] = { 55.4, 30.1, 405, 300 }, + [4] = { 55.4, 30, 405, 300 }, + [5] = { 53.8, 29.6, 405, 300 }, + [6] = { 53, 29.6, 405, 300 }, + [7] = { 53.9, 29.4, 405, 300 }, + [8] = { 55.6, 28.6, 405, 300 }, + [9] = { 53.3, 28.6, 405, 300 }, + [10] = { 53.3, 28.5, 405, 300 }, + [11] = { 52.5, 28.4, 405, 300 }, + [12] = { 56, 28.3, 405, 300 }, + [13] = { 54.8, 27.8, 405, 300 }, + [14] = { 55.3, 27.6, 405, 300 }, + [15] = { 55.4, 27.5, 405, 300 }, + [16] = { 54.5, 27.5, 405, 300 }, + [17] = { 55.7, 26.9, 405, 300 }, + [18] = { 54.2, 26.5, 405, 300 }, + [19] = { 56.1, 25.9, 405, 300 }, + [20] = { 55.1, 25.5, 405, 300 }, + [21] = { 55.8, 25.2, 405, 300 }, + [22] = { 55.6, 24.8, 405, 300 }, + [23] = { 55.4, 21.3, 405, 300 }, + [24] = { 36.6, 90.5, 406, 300 }, + }, + ["lvl"] = "31-32", + }, + [4667] = { + ["coords"] = { + [1] = { 52.8, 28.9, 405, 300 }, + [2] = { 55.2, 26.7, 405, 300 }, + }, + ["lvl"] = "32-33", + }, + [4668] = { + ["coords"] = { + [1] = { 29.3, 49.4, 215, 300 }, + [2] = { 29.1, 49.2, 215, 300 }, + [3] = { 54, 83.3, 405, 300 }, + [4] = { 48.8, 82.3, 405, 300 }, + [5] = { 51.5, 81.9, 405, 300 }, + [6] = { 79.5, 81.3, 405, 300 }, + [7] = { 82.1, 80.7, 405, 300 }, + [8] = { 81.9, 80.4, 405, 300 }, + [9] = { 53.1, 80.2, 405, 300 }, + [10] = { 48.5, 79.1, 405, 300 }, + [11] = { 53.5, 78.3, 405, 300 }, + [12] = { 80.5, 77.8, 405, 300 }, + [13] = { 49.6, 77.2, 405, 300 }, + [14] = { 80.3, 77, 405, 300 }, + [15] = { 80.7, 76.3, 405, 300 }, + [16] = { 80.8, 76.3, 405, 300 }, + [17] = { 50.3, 72.3, 405, 300 }, + [18] = { 54.9, 71.7, 405, 300 }, + [19] = { 50.8, 68.3, 405, 300 }, + }, + ["lvl"] = "38-39", + }, + [4669] = "_", + [4670] = { + ["coords"] = { + [1] = { 76.7, 30.1, 405, 300 }, + [2] = { 76, 28.9, 405, 300 }, + [3] = { 75.1, 28, 405, 300 }, + [4] = { 77.4, 26.9, 405, 300 }, + [5] = { 74.5, 26.8, 405, 300 }, + [6] = { 73.6, 25.5, 405, 300 }, + [7] = { 78.9, 24.6, 405, 300 }, + [8] = { 73.1, 24.4, 405, 300 }, + [9] = { 74.4, 24.3, 405, 300 }, + [10] = { 75.3, 23.7, 405, 300 }, + [11] = { 73.7, 23.6, 405, 300 }, + [12] = { 76, 22.5, 405, 300 }, + [13] = { 78.9, 22.4, 405, 300 }, + [14] = { 73, 22.3, 405, 300 }, + [15] = { 74.5, 22.3, 405, 300 }, + [16] = { 72.3, 21.3, 405, 300 }, + [17] = { 78.2, 21.2, 405, 300 }, + [18] = { 77.3, 20.3, 405, 300 }, + [19] = { 73.1, 20.3, 405, 300 }, + [20] = { 78.9, 20.2, 405, 300 }, + [21] = { 71.5, 20.1, 405, 300 }, + [22] = { 74.7, 19.9, 405, 300 }, + [23] = { 75.3, 19.3, 405, 300 }, + [24] = { 73.6, 19.1, 405, 300 }, + [25] = { 78.2, 18.9, 405, 300 }, + [26] = { 76.6, 18.9, 405, 300 }, + [27] = { 79.9, 18.9, 405, 300 }, + [28] = { 76, 17.9, 405, 300 }, + [29] = { 71.5, 17.9, 405, 300 }, + [30] = { 72.3, 17, 405, 300 }, + [31] = { 78.2, 16.9, 405, 300 }, + [32] = { 76.8, 16.8, 405, 300 }, + [33] = { 73.8, 16.8, 405, 300 }, + [34] = { 70.9, 16.6, 405, 300 }, + [35] = { 80.6, 16.3, 405, 300 }, + [36] = { 79.1, 15.8, 405, 300 }, + [37] = { 77.6, 15.5, 405, 300 }, + [38] = { 76.7, 14.9, 405, 300 }, + [39] = { 78.4, 14.1, 405, 300 }, + [40] = { 74.5, 13.4, 405, 300 }, + [41] = { 73.7, 12.2, 405, 300 }, + [42] = { 74.4, 11.2, 405, 300 }, + [43] = { 73.1, 11, 405, 300 }, + [44] = { 73.7, 10.3, 405, 300 }, + [45] = { 73.5, 9, 405, 300 }, + [46] = { 54.3, 91.3, 406, 300 }, + [47] = { 53.7, 90.4, 406, 300 }, + [48] = { 53.1, 89.7, 406, 300 }, + [49] = { 54.2, 89.7, 406, 300 }, + [50] = { 51.1, 89.4, 406, 300 }, + [51] = { 51.5, 89, 406, 300 }, + [52] = { 50.2, 88.8, 406, 300 }, + [53] = { 53.7, 88.7, 406, 300 }, + [54] = { 52.5, 88.6, 406, 300 }, + [55] = { 55, 88.6, 406, 300 }, + [56] = { 52.1, 87.9, 406, 300 }, + [57] = { 48.7, 87.9, 406, 300 }, + [58] = { 49.3, 87.2, 406, 300 }, + [59] = { 53.7, 87.2, 406, 300 }, + [60] = { 52.6, 87.1, 406, 300 }, + [61] = { 50.4, 87.1, 406, 300 }, + [62] = { 48.3, 87, 406, 300 }, + [63] = { 55.5, 86.7, 406, 300 }, + [64] = { 54.3, 86.3, 406, 300 }, + [65] = { 53.3, 86.1, 406, 300 }, + [66] = { 52.6, 85.7, 406, 300 }, + [67] = { 53.9, 85.1, 406, 300 }, + [68] = { 50.9, 84.6, 406, 300 }, + [69] = { 50.3, 83.6, 406, 300 }, + [70] = { 50.9, 82.9, 406, 300 }, + [71] = { 49.9, 82.8, 406, 300 }, + [72] = { 50.3, 82.2, 406, 300 }, + [73] = { 50.2, 81.3, 406, 300 }, + }, + ["lvl"] = "31-32", + }, + [4671] = { + ["coords"] = { + [1] = { 76.7, 30.1, 405, 300 }, + [2] = { 76, 28.9, 405, 300 }, + [3] = { 75.1, 28, 405, 300 }, + [4] = { 77.4, 26.9, 405, 300 }, + [5] = { 74.5, 26.8, 405, 300 }, + [6] = { 73.6, 25.5, 405, 300 }, + [7] = { 78.9, 24.6, 405, 300 }, + [8] = { 73.1, 24.4, 405, 300 }, + [9] = { 74.4, 24.3, 405, 300 }, + [10] = { 75.3, 23.7, 405, 300 }, + [11] = { 73.7, 23.6, 405, 300 }, + [12] = { 76, 22.5, 405, 300 }, + [13] = { 78.9, 22.4, 405, 300 }, + [14] = { 73, 22.3, 405, 300 }, + [15] = { 74.5, 22.3, 405, 300 }, + [16] = { 72.3, 21.3, 405, 300 }, + [17] = { 78.2, 21.2, 405, 300 }, + [18] = { 77.3, 20.3, 405, 300 }, + [19] = { 73.1, 20.3, 405, 300 }, + [20] = { 78.9, 20.2, 405, 300 }, + [21] = { 71.5, 20.1, 405, 300 }, + [22] = { 74.7, 19.9, 405, 300 }, + [23] = { 75.3, 19.3, 405, 300 }, + [24] = { 73.6, 19.1, 405, 300 }, + [25] = { 78.2, 18.9, 405, 300 }, + [26] = { 76.6, 18.9, 405, 300 }, + [27] = { 79.9, 18.9, 405, 300 }, + [28] = { 76, 17.9, 405, 300 }, + [29] = { 71.5, 17.9, 405, 300 }, + [30] = { 72.3, 17, 405, 300 }, + [31] = { 78.2, 16.9, 405, 300 }, + [32] = { 76.8, 16.8, 405, 300 }, + [33] = { 73.8, 16.8, 405, 300 }, + [34] = { 70.9, 16.6, 405, 300 }, + [35] = { 80.6, 16.3, 405, 300 }, + [36] = { 79.1, 15.8, 405, 300 }, + [37] = { 77.6, 15.5, 405, 300 }, + [38] = { 76.7, 14.9, 405, 300 }, + [39] = { 78.4, 14.1, 405, 300 }, + [40] = { 74.5, 13.4, 405, 300 }, + [41] = { 73.7, 12.2, 405, 300 }, + [42] = { 74.4, 11.2, 405, 300 }, + [43] = { 73.1, 11, 405, 300 }, + [44] = { 73.7, 10.3, 405, 300 }, + [45] = { 73.5, 9, 405, 300 }, + [46] = { 54.3, 91.3, 406, 300 }, + [47] = { 53.7, 90.4, 406, 300 }, + [48] = { 53.1, 89.7, 406, 300 }, + [49] = { 54.2, 89.7, 406, 300 }, + [50] = { 51.1, 89.4, 406, 300 }, + [51] = { 51.5, 89, 406, 300 }, + [52] = { 50.2, 88.8, 406, 300 }, + [53] = { 53.7, 88.7, 406, 300 }, + [54] = { 52.5, 88.6, 406, 300 }, + [55] = { 55, 88.6, 406, 300 }, + [56] = { 52.1, 87.9, 406, 300 }, + [57] = { 48.7, 87.9, 406, 300 }, + [58] = { 49.3, 87.2, 406, 300 }, + [59] = { 53.7, 87.2, 406, 300 }, + [60] = { 52.6, 87.1, 406, 300 }, + [61] = { 50.4, 87.1, 406, 300 }, + [62] = { 48.3, 87, 406, 300 }, + [63] = { 55.5, 86.7, 406, 300 }, + [64] = { 54.3, 86.3, 406, 300 }, + [65] = { 53.3, 86.1, 406, 300 }, + [66] = { 52.6, 85.7, 406, 300 }, + [67] = { 53.9, 85.1, 406, 300 }, + [68] = { 50.9, 84.6, 406, 300 }, + [69] = { 50.3, 83.6, 406, 300 }, + [70] = { 50.9, 82.9, 406, 300 }, + [71] = { 49.9, 82.8, 406, 300 }, + [72] = { 50.3, 82.2, 406, 300 }, + [73] = { 50.2, 81.3, 406, 300 }, + }, + ["lvl"] = "31-32", + }, + [4672] = { + ["coords"] = { + [1] = { 76.7, 30.1, 405, 300 }, + [2] = { 76, 28.9, 405, 300 }, + [3] = { 75.1, 28, 405, 300 }, + [4] = { 77.4, 26.9, 405, 300 }, + [5] = { 74.5, 26.8, 405, 300 }, + [6] = { 73.6, 25.5, 405, 300 }, + [7] = { 78.9, 24.6, 405, 300 }, + [8] = { 73.1, 24.4, 405, 300 }, + [9] = { 74.4, 24.3, 405, 300 }, + [10] = { 75.3, 23.7, 405, 300 }, + [11] = { 73.7, 23.6, 405, 300 }, + [12] = { 76, 22.5, 405, 300 }, + [13] = { 78.9, 22.4, 405, 300 }, + [14] = { 73, 22.3, 405, 300 }, + [15] = { 74.5, 22.3, 405, 300 }, + [16] = { 72.3, 21.3, 405, 300 }, + [17] = { 78.2, 21.2, 405, 300 }, + [18] = { 77.3, 20.3, 405, 300 }, + [19] = { 73.1, 20.3, 405, 300 }, + [20] = { 78.9, 20.2, 405, 300 }, + [21] = { 71.5, 20.1, 405, 300 }, + [22] = { 74.7, 19.9, 405, 300 }, + [23] = { 75.3, 19.3, 405, 300 }, + [24] = { 73.6, 19.1, 405, 300 }, + [25] = { 78.2, 18.9, 405, 300 }, + [26] = { 76.6, 18.9, 405, 300 }, + [27] = { 79.9, 18.9, 405, 300 }, + [28] = { 76, 17.9, 405, 300 }, + [29] = { 71.5, 17.9, 405, 300 }, + [30] = { 72.3, 17, 405, 300 }, + [31] = { 78.2, 16.9, 405, 300 }, + [32] = { 76.8, 16.8, 405, 300 }, + [33] = { 73.8, 16.8, 405, 300 }, + [34] = { 70.9, 16.6, 405, 300 }, + [35] = { 80.6, 16.3, 405, 300 }, + [36] = { 79.1, 15.8, 405, 300 }, + [37] = { 77.6, 15.5, 405, 300 }, + [38] = { 76.7, 14.9, 405, 300 }, + [39] = { 78.4, 14.1, 405, 300 }, + [40] = { 74.5, 13.4, 405, 300 }, + [41] = { 73.7, 12.2, 405, 300 }, + [42] = { 74.4, 11.2, 405, 300 }, + [43] = { 73.1, 11, 405, 300 }, + [44] = { 73.7, 10.3, 405, 300 }, + [45] = { 73.5, 9, 405, 300 }, + [46] = { 54.3, 91.3, 406, 300 }, + [47] = { 53.7, 90.4, 406, 300 }, + [48] = { 53.1, 89.7, 406, 300 }, + [49] = { 54.2, 89.7, 406, 300 }, + [50] = { 51.1, 89.4, 406, 300 }, + [51] = { 51.5, 89, 406, 300 }, + [52] = { 50.2, 88.8, 406, 300 }, + [53] = { 53.7, 88.7, 406, 300 }, + [54] = { 52.5, 88.6, 406, 300 }, + [55] = { 55, 88.6, 406, 300 }, + [56] = { 52.1, 87.9, 406, 300 }, + [57] = { 48.7, 87.9, 406, 300 }, + [58] = { 49.3, 87.2, 406, 300 }, + [59] = { 53.7, 87.2, 406, 300 }, + [60] = { 52.6, 87.1, 406, 300 }, + [61] = { 50.4, 87.1, 406, 300 }, + [62] = { 48.3, 87, 406, 300 }, + [63] = { 55.5, 86.7, 406, 300 }, + [64] = { 54.3, 86.3, 406, 300 }, + [65] = { 53.3, 86.1, 406, 300 }, + [66] = { 52.6, 85.7, 406, 300 }, + [67] = { 53.9, 85.1, 406, 300 }, + [68] = { 50.9, 84.6, 406, 300 }, + [69] = { 50.3, 83.6, 406, 300 }, + [70] = { 50.9, 82.9, 406, 300 }, + [71] = { 49.9, 82.8, 406, 300 }, + [72] = { 50.3, 82.2, 406, 300 }, + [73] = { 50.2, 81.3, 406, 300 }, + }, + ["lvl"] = "31-32", + }, + [4673] = { + ["coords"] = { + [1] = { 76.7, 27.9, 405, 300 }, + [2] = { 76.1, 26.7, 405, 300 }, + [3] = { 75.7, 26.6, 405, 300 }, + [4] = { 75.1, 25.9, 405, 300 }, + [5] = { 78.1, 25.8, 405, 300 }, + [6] = { 76.8, 25.6, 405, 300 }, + [7] = { 77.6, 24.7, 405, 300 }, + [8] = { 75.9, 24.5, 405, 300 }, + [9] = { 76.5, 23.9, 405, 300 }, + [10] = { 77.3, 23.7, 405, 300 }, + [11] = { 76.5, 23.6, 405, 300 }, + [12] = { 74.4, 23.6, 405, 300 }, + [13] = { 74.2, 23.6, 405, 300 }, + [14] = { 78.7, 23.2, 405, 300 }, + [15] = { 78.1, 23, 405, 300 }, + [16] = { 77.6, 22.2, 405, 300 }, + [17] = { 74.5, 21.8, 405, 300 }, + [18] = { 73.5, 21.6, 405, 300 }, + [19] = { 75.3, 21.3, 405, 300 }, + [20] = { 79.3, 21.2, 405, 300 }, + [21] = { 76.9, 21.1, 405, 300 }, + [22] = { 79.4, 21, 405, 300 }, + [23] = { 76, 19.9, 405, 300 }, + [24] = { 72.3, 19.2, 405, 300 }, + [25] = { 72.2, 18.9, 405, 300 }, + [26] = { 77, 18.1, 405, 300 }, + [27] = { 78.9, 18, 405, 300 }, + [28] = { 77.6, 17.9, 405, 300 }, + [29] = { 72.9, 17.8, 405, 300 }, + [30] = { 80.5, 17.7, 405, 300 }, + [31] = { 72.7, 16.9, 405, 300 }, + [32] = { 72.8, 16.8, 405, 300 }, + [33] = { 79.7, 16.6, 405, 300 }, + [34] = { 75.1, 16.3, 405, 300 }, + [35] = { 79.4, 16.2, 405, 300 }, + [36] = { 79.3, 15.9, 405, 300 }, + [37] = { 76, 15.7, 405, 300 }, + [38] = { 74.6, 15.7, 405, 300 }, + [39] = { 70.1, 15.6, 405, 300 }, + [40] = { 71.1, 15, 405, 300 }, + [41] = { 72.2, 14.7, 405, 300 }, + [42] = { 79.4, 14.6, 405, 300 }, + [43] = { 73.8, 14.4, 405, 300 }, + [44] = { 72.6, 13.2, 405, 300 }, + [45] = { 74.2, 13, 405, 300 }, + [46] = { 75, 12.2, 405, 300 }, + [47] = { 74.8, 11.7, 405, 300 }, + [48] = { 75.2, 10.7, 405, 300 }, + [49] = { 51.6, 90.4, 406, 300 }, + [50] = { 54.5, 90.4, 406, 300 }, + [51] = { 52.7, 90.3, 406, 300 }, + [52] = { 54.6, 90.2, 406, 300 }, + [53] = { 52.1, 89.4, 406, 300 }, + [54] = { 49.3, 88.9, 406, 300 }, + [55] = { 49.2, 88.7, 406, 300 }, + [56] = { 52.8, 88, 406, 300 }, + [57] = { 54.2, 88, 406, 300 }, + [58] = { 53.3, 87.9, 406, 300 }, + [59] = { 49.8, 87.9, 406, 300 }, + [60] = { 55.4, 87.8, 406, 300 }, + [61] = { 49.6, 87.1, 406, 300 }, + [62] = { 49.7, 87.1, 406, 300 }, + [63] = { 54.8, 87, 406, 300 }, + [64] = { 51.4, 86.8, 406, 300 }, + [65] = { 54.6, 86.7, 406, 300 }, + [66] = { 54.5, 86.4, 406, 300 }, + [67] = { 52.1, 86.3, 406, 300 }, + [68] = { 51, 86.3, 406, 300 }, + [69] = { 47.7, 86.2, 406, 300 }, + [70] = { 48.4, 85.7, 406, 300 }, + [71] = { 49.2, 85.5, 406, 300 }, + [72] = { 54.6, 85.5, 406, 300 }, + [73] = { 50.4, 85.3, 406, 300 }, + [74] = { 49.5, 84.4, 406, 300 }, + [75] = { 50.7, 84.2, 406, 300 }, + [76] = { 51.3, 83.7, 406, 300 }, + [77] = { 51.2, 83.3, 406, 300 }, + [78] = { 51.5, 82.5, 406, 300 }, + }, + ["lvl"] = "32-33", + }, + [4674] = { + ["coords"] = { + [1] = { 76.7, 27.9, 405, 300 }, + [2] = { 76.1, 26.7, 405, 300 }, + [3] = { 75.7, 26.6, 405, 300 }, + [4] = { 75.1, 25.9, 405, 300 }, + [5] = { 78.1, 25.8, 405, 300 }, + [6] = { 76.8, 25.6, 405, 300 }, + [7] = { 77.6, 24.7, 405, 300 }, + [8] = { 75.9, 24.5, 405, 300 }, + [9] = { 76.5, 23.9, 405, 300 }, + [10] = { 77.3, 23.7, 405, 300 }, + [11] = { 76.5, 23.6, 405, 300 }, + [12] = { 74.4, 23.6, 405, 300 }, + [13] = { 74.2, 23.6, 405, 300 }, + [14] = { 78.7, 23.2, 405, 300 }, + [15] = { 78.1, 23, 405, 300 }, + [16] = { 77.6, 22.2, 405, 300 }, + [17] = { 74.5, 21.8, 405, 300 }, + [18] = { 73.5, 21.6, 405, 300 }, + [19] = { 75.3, 21.3, 405, 300 }, + [20] = { 79.3, 21.2, 405, 300 }, + [21] = { 76.9, 21.1, 405, 300 }, + [22] = { 79.4, 21, 405, 300 }, + [23] = { 76, 19.9, 405, 300 }, + [24] = { 72.3, 19.2, 405, 300 }, + [25] = { 72.2, 18.9, 405, 300 }, + [26] = { 77, 18.1, 405, 300 }, + [27] = { 78.9, 18, 405, 300 }, + [28] = { 77.6, 17.9, 405, 300 }, + [29] = { 72.9, 17.8, 405, 300 }, + [30] = { 80.5, 17.7, 405, 300 }, + [31] = { 72.7, 16.9, 405, 300 }, + [32] = { 72.8, 16.8, 405, 300 }, + [33] = { 79.7, 16.6, 405, 300 }, + [34] = { 75.1, 16.3, 405, 300 }, + [35] = { 79.4, 16.2, 405, 300 }, + [36] = { 79.3, 15.9, 405, 300 }, + [37] = { 76, 15.7, 405, 300 }, + [38] = { 74.6, 15.7, 405, 300 }, + [39] = { 70.1, 15.6, 405, 300 }, + [40] = { 71.1, 15, 405, 300 }, + [41] = { 72.2, 14.7, 405, 300 }, + [42] = { 79.4, 14.6, 405, 300 }, + [43] = { 73.8, 14.4, 405, 300 }, + [44] = { 72.6, 13.2, 405, 300 }, + [45] = { 74.2, 13, 405, 300 }, + [46] = { 75, 12.2, 405, 300 }, + [47] = { 74.8, 11.7, 405, 300 }, + [48] = { 75.2, 10.7, 405, 300 }, + [49] = { 51.6, 90.4, 406, 300 }, + [50] = { 54.5, 90.4, 406, 300 }, + [51] = { 52.7, 90.3, 406, 300 }, + [52] = { 54.6, 90.2, 406, 300 }, + [53] = { 52.1, 89.4, 406, 300 }, + [54] = { 49.3, 88.9, 406, 300 }, + [55] = { 49.2, 88.7, 406, 300 }, + [56] = { 52.8, 88, 406, 300 }, + [57] = { 54.2, 88, 406, 300 }, + [58] = { 53.3, 87.9, 406, 300 }, + [59] = { 49.8, 87.9, 406, 300 }, + [60] = { 55.4, 87.8, 406, 300 }, + [61] = { 49.6, 87.1, 406, 300 }, + [62] = { 49.7, 87.1, 406, 300 }, + [63] = { 54.8, 87, 406, 300 }, + [64] = { 51.4, 86.8, 406, 300 }, + [65] = { 54.6, 86.7, 406, 300 }, + [66] = { 54.5, 86.4, 406, 300 }, + [67] = { 52.1, 86.3, 406, 300 }, + [68] = { 51, 86.3, 406, 300 }, + [69] = { 47.7, 86.2, 406, 300 }, + [70] = { 48.4, 85.7, 406, 300 }, + [71] = { 49.2, 85.5, 406, 300 }, + [72] = { 54.6, 85.5, 406, 300 }, + [73] = { 50.4, 85.3, 406, 300 }, + [74] = { 49.5, 84.4, 406, 300 }, + [75] = { 50.7, 84.2, 406, 300 }, + [76] = { 51.3, 83.7, 406, 300 }, + [77] = { 51.2, 83.3, 406, 300 }, + [78] = { 51.5, 82.5, 406, 300 }, + }, + ["lvl"] = "32-33", + }, + [4675] = { + ["coords"] = { + [1] = { 76.7, 27.9, 405, 300 }, + [2] = { 76.1, 26.7, 405, 300 }, + [3] = { 75.7, 26.6, 405, 300 }, + [4] = { 75.1, 25.9, 405, 300 }, + [5] = { 78.1, 25.8, 405, 300 }, + [6] = { 76.8, 25.6, 405, 300 }, + [7] = { 77.6, 24.7, 405, 300 }, + [8] = { 75.9, 24.5, 405, 300 }, + [9] = { 76.5, 23.9, 405, 300 }, + [10] = { 77.3, 23.7, 405, 300 }, + [11] = { 76.5, 23.6, 405, 300 }, + [12] = { 74.4, 23.6, 405, 300 }, + [13] = { 74.2, 23.6, 405, 300 }, + [14] = { 78.7, 23.2, 405, 300 }, + [15] = { 78.1, 23, 405, 300 }, + [16] = { 77.6, 22.2, 405, 300 }, + [17] = { 74.5, 21.8, 405, 300 }, + [18] = { 73.5, 21.6, 405, 300 }, + [19] = { 75.3, 21.3, 405, 300 }, + [20] = { 79.3, 21.2, 405, 300 }, + [21] = { 76.9, 21.1, 405, 300 }, + [22] = { 79.4, 21, 405, 300 }, + [23] = { 76, 19.9, 405, 300 }, + [24] = { 72.3, 19.2, 405, 300 }, + [25] = { 72.2, 18.9, 405, 300 }, + [26] = { 77, 18.1, 405, 300 }, + [27] = { 78.9, 18, 405, 300 }, + [28] = { 77.6, 17.9, 405, 300 }, + [29] = { 72.9, 17.8, 405, 300 }, + [30] = { 80.5, 17.7, 405, 300 }, + [31] = { 72.7, 16.9, 405, 300 }, + [32] = { 72.8, 16.8, 405, 300 }, + [33] = { 79.7, 16.6, 405, 300 }, + [34] = { 75.1, 16.3, 405, 300 }, + [35] = { 79.4, 16.2, 405, 300 }, + [36] = { 79.3, 15.9, 405, 300 }, + [37] = { 76, 15.7, 405, 300 }, + [38] = { 74.6, 15.7, 405, 300 }, + [39] = { 70.1, 15.6, 405, 300 }, + [40] = { 71.1, 15, 405, 300 }, + [41] = { 72.2, 14.7, 405, 300 }, + [42] = { 79.4, 14.6, 405, 300 }, + [43] = { 73.8, 14.4, 405, 300 }, + [44] = { 72.6, 13.2, 405, 300 }, + [45] = { 74.2, 13, 405, 300 }, + [46] = { 75, 12.2, 405, 300 }, + [47] = { 74.8, 11.7, 405, 300 }, + [48] = { 75.2, 10.7, 405, 300 }, + [49] = { 51.6, 90.4, 406, 300 }, + [50] = { 54.5, 90.4, 406, 300 }, + [51] = { 52.7, 90.3, 406, 300 }, + [52] = { 54.6, 90.2, 406, 300 }, + [53] = { 52.1, 89.4, 406, 300 }, + [54] = { 49.3, 88.9, 406, 300 }, + [55] = { 49.2, 88.7, 406, 300 }, + [56] = { 52.8, 88, 406, 300 }, + [57] = { 54.2, 88, 406, 300 }, + [58] = { 53.3, 87.9, 406, 300 }, + [59] = { 49.8, 87.9, 406, 300 }, + [60] = { 55.4, 87.8, 406, 300 }, + [61] = { 49.6, 87.1, 406, 300 }, + [62] = { 49.7, 87.1, 406, 300 }, + [63] = { 54.8, 87, 406, 300 }, + [64] = { 51.4, 86.8, 406, 300 }, + [65] = { 54.6, 86.7, 406, 300 }, + [66] = { 54.5, 86.4, 406, 300 }, + [67] = { 52.1, 86.3, 406, 300 }, + [68] = { 51, 86.3, 406, 300 }, + [69] = { 47.7, 86.2, 406, 300 }, + [70] = { 48.4, 85.7, 406, 300 }, + [71] = { 49.2, 85.5, 406, 300 }, + [72] = { 54.6, 85.5, 406, 300 }, + [73] = { 50.4, 85.3, 406, 300 }, + [74] = { 49.5, 84.4, 406, 300 }, + [75] = { 50.7, 84.2, 406, 300 }, + [76] = { 51.3, 83.7, 406, 300 }, + [77] = { 51.2, 83.3, 406, 300 }, + [78] = { 51.5, 82.5, 406, 300 }, + }, + ["lvl"] = "32-33", + }, + [4676] = { + ["coords"] = { + [1] = { 53, 86, 405, 300 }, + [2] = { 54.4, 83.6, 405, 300 }, + [3] = { 53.8, 82.3, 405, 300 }, + [4] = { 54.2, 80.9, 405, 300 }, + [5] = { 53.6, 79.8, 405, 300 }, + [6] = { 55.2, 79.5, 405, 300 }, + [7] = { 49.4, 78, 405, 300 }, + [8] = { 57.6, 77.1, 405, 300 }, + [9] = { 48.9, 77, 405, 300 }, + [10] = { 51.4, 75.6, 405, 300 }, + [11] = { 50.5, 73.7, 405, 300 }, + [12] = { 54.6, 73.6, 405, 300 }, + [13] = { 52.7, 72.2, 405, 300 }, + [14] = { 54.3, 71.1, 405, 300 }, + [15] = { 56.8, 71.1, 405, 300 }, + [16] = { 50.8, 70.2, 405, 300 }, + }, + ["lvl"] = "36-37", + }, + [4678] = { + ["coords"] = { + [1] = { 52.9, 68.1, 405, 300 }, + [2] = { 51.4, 68, 405, 300 }, + }, + ["lvl"] = "37-38", + }, + [4680] = { + ["coords"] = { + [1] = { 51.6, 84.3, 405, 300 }, + [2] = { 52.5, 83.9, 405, 300 }, + [3] = { 51.8, 83.5, 405, 300 }, + [4] = { 50.9, 83.2, 405, 300 }, + [5] = { 51.4, 81.8, 405, 300 }, + }, + ["lvl"] = "38-39", + }, + [4681] = { + ["coords"] = { + [1] = { 53.3, 79.2, 405, 300 }, + [2] = { 55.7, 77.7, 405, 300 }, + [3] = { 56.7, 77.7, 405, 300 }, + [4] = { 53.6, 76.9, 405, 300 }, + [5] = { 58.3, 75.5, 405, 300 }, + [6] = { 56.9, 75.5, 405, 300 }, + [7] = { 56.5, 73, 405, 300 }, + [8] = { 55.9, 72.8, 405, 300 }, + }, + ["lvl"] = "38-39", + }, + [4682] = { + ["coords"] = { + [1] = { 52.6, 85.1, 405, 300 }, + [2] = { 54.4, 78.6, 405, 300 }, + [3] = { 54.2, 78.2, 405, 300 }, + [4] = { 54.6, 76.8, 405, 300 }, + }, + ["lvl"] = "38-39", + }, + [4683] = "_", + [4684] = { + ["coords"] = { + [1] = { 51.8, 84.7, 405, 300 }, + [2] = { 52, 84, 405, 300 }, + [3] = { 52.4, 83.4, 405, 300 }, + [4] = { 50.6, 82.6, 405, 300 }, + [5] = { 51.7, 82.5, 405, 300 }, + }, + ["lvl"] = "39-40", + }, + [4685] = { + ["coords"] = { + [1] = { 28.9, 45.4, 215, 300 }, + [2] = { 51.6, 85.7, 405, 300 }, + [3] = { 53.9, 84.6, 405, 300 }, + [4] = { 49.8, 81.4, 405, 300 }, + [5] = { 80.1, 77.1, 405, 300 }, + [6] = { 81.6, 76.1, 405, 300 }, + }, + ["lvl"] = "39-40", + }, + [4691] = "_", + [4692] = { + ["coords"] = { + [1] = { 38.5, 75.7, 405, 300 }, + [2] = { 35.7, 74.5, 405, 300 }, + [3] = { 36.7, 73.5, 405, 300 }, + [4] = { 44.1, 73.4, 405, 300 }, + [5] = { 67.9, 71.6, 405, 300 }, + [6] = { 43, 71.1, 405, 300 }, + [7] = { 43.4, 69.8, 405, 300 }, + [8] = { 68.8, 68.2, 405, 300 }, + [9] = { 54.5, 66.8, 405, 300 }, + [10] = { 48.3, 66.4, 405, 300 }, + [11] = { 69.4, 66.2, 405, 300 }, + [12] = { 64.8, 65.5, 405, 300 }, + [13] = { 41.9, 65.4, 405, 300 }, + [14] = { 71.5, 65.4, 405, 300 }, + [15] = { 56, 64.8, 405, 300 }, + [16] = { 74, 64.7, 405, 300 }, + [17] = { 71, 64.1, 405, 300 }, + [18] = { 67.1, 63.6, 405, 300 }, + [19] = { 70.4, 63.4, 405, 300 }, + [20] = { 69.1, 62.2, 405, 300 }, + [21] = { 71.2, 62.2, 405, 300 }, + [22] = { 72.8, 62.1, 405, 300 }, + [23] = { 68.1, 60.9, 405, 300 }, + [24] = { 68.5, 60.4, 405, 300 }, + [25] = { 73.9, 60.2, 405, 300 }, + [26] = { 68.1, 59.5, 405, 300 }, + [27] = { 66.3, 59.5, 405, 300 }, + [28] = { 71.7, 59.4, 405, 300 }, + [29] = { 65.7, 58.5, 405, 300 }, + [30] = { 71.8, 58.2, 405, 300 }, + [31] = { 69.1, 58.1, 405, 300 }, + [32] = { 74.5, 58, 405, 300 }, + [33] = { 74.6, 56.8, 405, 300 }, + [34] = { 71.8, 56.8, 405, 300 }, + [35] = { 70.1, 56.4, 405, 300 }, + [36] = { 74, 55.6, 405, 300 }, + [37] = { 72.2, 55.1, 405, 300 }, + [38] = { 69.4, 54.5, 405, 300 }, + [39] = { 65.5, 54.4, 405, 300 }, + [40] = { 69.2, 54.1, 405, 300 }, + [41] = { 67.1, 53.7, 405, 300 }, + [42] = { 67.1, 53.3, 405, 300 }, + [43] = { 70.2, 41.2, 405, 300 }, + [44] = { 56.5, 41.1, 405, 300 }, + [45] = { 47.8, 41, 405, 300 }, + [46] = { 48.8, 39.9, 405, 300 }, + [47] = { 45.6, 38.9, 405, 300 }, + [48] = { 47, 38.8, 405, 300 }, + [49] = { 50, 37.8, 405, 300 }, + [50] = { 44.3, 37.8, 405, 300 }, + [51] = { 60.1, 35.9, 405, 300 }, + [52] = { 73.3, 35.9, 405, 300 }, + [53] = { 70.3, 35.8, 405, 300 }, + [54] = { 80.6, 35.7, 405, 300 }, + [55] = { 51.4, 35.4, 405, 300 }, + [56] = { 57.4, 34.6, 405, 300 }, + [57] = { 75, 34.4, 405, 300 }, + [58] = { 45.9, 34.3, 405, 300 }, + [59] = { 49.6, 34.1, 405, 300 }, + [60] = { 38.2, 33.5, 405, 300 }, + [61] = { 76.2, 33.4, 405, 300 }, + [62] = { 47, 33, 405, 300 }, + [63] = { 47.2, 32.3, 405, 300 }, + [64] = { 50.1, 32.2, 405, 300 }, + [65] = { 44.9, 31.3, 405, 300 }, + [66] = { 48.2, 31.3, 405, 300 }, + [67] = { 45.5, 31.2, 405, 300 }, + [68] = { 47, 30.7, 405, 300 }, + [69] = { 49, 30, 405, 300 }, + [70] = { 43.4, 29.6, 405, 300 }, + [71] = { 47.6, 29.2, 405, 300 }, + [72] = { 58.9, 29, 405, 300 }, + [73] = { 71.5, 27.9, 405, 300 }, + [74] = { 48.7, 27.9, 405, 300 }, + [75] = { 48.4, 27.8, 405, 300 }, + [76] = { 46.6, 27.8, 405, 300 }, + [77] = { 65.4, 27.7, 405, 300 }, + [78] = { 50.3, 26.4, 405, 300 }, + [79] = { 44.6, 25, 405, 300 }, + [80] = { 52.1, 24.4, 405, 300 }, + [81] = { 59.8, 24.3, 405, 300 }, + [82] = { 53.7, 23.4, 405, 300 }, + [83] = { 51.3, 23.3, 405, 300 }, + [84] = { 44.2, 22.9, 405, 300 }, + [85] = { 52.8, 22, 405, 300 }, + [86] = { 69.7, 20.5, 405, 300 }, + [87] = { 69.5, 20.4, 405, 300 }, + [88] = { 65.6, 20.2, 405, 300 }, + [89] = { 56.7, 18.8, 405, 300 }, + [90] = { 44.3, 18.6, 405, 300 }, + [91] = { 61.1, 18.5, 405, 300 }, + [92] = { 55.7, 18.5, 405, 300 }, + [93] = { 44.9, 16.9, 405, 300 }, + [94] = { 62, 16.8, 405, 300 }, + [95] = { 46.6, 14.7, 405, 300 }, + [96] = { 59.7, 13.3, 405, 300 }, + [97] = { 57.4, 12.4, 405, 300 }, + [98] = { 50, 7.8, 405, 300 }, + [99] = { 37.7, 88.6, 406, 300 }, + [100] = { 40.9, 88.4, 406, 300 }, + [101] = { 36.9, 88.3, 406, 300 }, + [102] = { 41.6, 87.1, 406, 300 }, + [103] = { 39.9, 84.5, 406, 300 }, + [104] = { 38.1, 83.8, 406, 300 }, + [105] = { 32.6, 80.3, 406, 300 }, + }, + ["lvl"] = "32-33", + }, + [4693] = { + ["coords"] = { + [1] = { 63.4, 60.4, 405, 300 }, + [2] = { 44.1, 59.2, 405, 300 }, + [3] = { 61.9, 58.9, 405, 300 }, + [4] = { 63.1, 57.3, 405, 300 }, + [5] = { 42.4, 56.9, 405, 300 }, + [6] = { 60.5, 56.4, 405, 300 }, + [7] = { 44.1, 55.9, 405, 300 }, + [8] = { 62.6, 55.1, 405, 300 }, + [9] = { 44.1, 54.5, 405, 300 }, + [10] = { 61.3, 54.4, 405, 300 }, + [11] = { 42.3, 53.6, 405, 300 }, + [12] = { 57.9, 53.1, 405, 300 }, + [13] = { 43.9, 52.4, 405, 300 }, + [14] = { 62.7, 52, 405, 300 }, + [15] = { 60.1, 51.3, 405, 300 }, + [16] = { 61.1, 51.2, 405, 300 }, + [17] = { 57.5, 51.1, 405, 300 }, + [18] = { 40.2, 51, 405, 300 }, + [19] = { 58.5, 50.9, 405, 300 }, + [20] = { 41.7, 50.3, 405, 300 }, + [21] = { 58.2, 50.2, 405, 300 }, + [22] = { 59.7, 49.6, 405, 300 }, + [23] = { 53.6, 49.3, 405, 300 }, + [24] = { 55.4, 49.1, 405, 300 }, + [25] = { 62.8, 48.5, 405, 300 }, + [26] = { 41.7, 48.5, 405, 300 }, + [27] = { 58.9, 48.2, 405, 300 }, + [28] = { 45.4, 48.1, 405, 300 }, + [29] = { 61, 47.9, 405, 300 }, + [30] = { 42.8, 47.7, 405, 300 }, + [31] = { 58.4, 47.3, 405, 300 }, + [32] = { 63.9, 47, 405, 300 }, + [33] = { 45, 46.9, 405, 300 }, + [34] = { 43.5, 46.8, 405, 300 }, + [35] = { 55.4, 46.6, 405, 300 }, + [36] = { 41.7, 45.8, 405, 300 }, + [37] = { 64, 45.6, 405, 300 }, + [38] = { 59.7, 45.6, 405, 300 }, + [39] = { 51.3, 45.2, 405, 300 }, + [40] = { 42.2, 44.7, 405, 300 }, + [41] = { 61.9, 44.6, 405, 300 }, + [42] = { 40.5, 43.2, 405, 300 }, + [43] = { 41.9, 42, 405, 300 }, + [44] = { 42.8, 40.9, 405, 300 }, + [45] = { 39.2, 39.2, 405, 300 }, + [46] = { 41.3, 38.9, 405, 300 }, + [47] = { 35.8, 38.8, 405, 300 }, + [48] = { 40.5, 37.4, 405, 300 }, + [49] = { 73.8, 11.2, 405, 300 }, + [50] = { 50.4, 82.9, 406, 300 }, + }, + ["lvl"] = "36-37", + }, + [4694] = { + ["coords"] = { + [1] = { 55.2, 85.7, 405, 300 }, + [2] = { 57.4, 85.7, 405, 300 }, + [3] = { 29.8, 81.2, 405, 300 }, + [4] = { 62.3, 79.8, 405, 300 }, + [5] = { 59.6, 79.1, 405, 300 }, + [6] = { 61.2, 77.9, 405, 300 }, + [7] = { 62.5, 75.9, 405, 300 }, + [8] = { 59.5, 75.6, 405, 300 }, + [9] = { 61.2, 74.5, 405, 300 }, + [10] = { 62.7, 71, 405, 300 }, + }, + ["lvl"] = "39-40", + }, + [4695] = { + ["coords"] = { + [1] = { 53.6, 63.6, 405, 300 }, + [2] = { 51.7, 60.5, 405, 300 }, + [3] = { 53, 60.5, 405, 300 }, + [4] = { 53.4, 60.3, 405, 300 }, + [5] = { 50.8, 60.2, 405, 300 }, + [6] = { 49.2, 60, 405, 300 }, + [7] = { 49, 59.4, 405, 300 }, + [8] = { 51.5, 59.3, 405, 300 }, + [9] = { 50, 58.9, 405, 300 }, + [10] = { 53.3, 58.8, 405, 300 }, + [11] = { 50.7, 58.4, 405, 300 }, + [12] = { 48, 57.7, 405, 300 }, + [13] = { 51.5, 57.7, 405, 300 }, + [14] = { 49.3, 57.4, 405, 300 }, + [15] = { 50.2, 56.6, 405, 300 }, + }, + ["lvl"] = "35-37", + }, + [4696] = { + ["coords"] = { + [1] = { 53.1, 68.9, 405, 300 }, + [2] = { 56, 64.6, 405, 300 }, + [3] = { 59.5, 64.2, 405, 300 }, + [4] = { 64.1, 63.8, 405, 300 }, + [5] = { 63.6, 37.6, 405, 300 }, + [6] = { 80.4, 36.7, 405, 300 }, + [7] = { 71.1, 36.6, 405, 300 }, + [8] = { 79.8, 36.1, 405, 300 }, + [9] = { 76.8, 35.8, 405, 300 }, + [10] = { 65.5, 35.7, 405, 300 }, + [11] = { 78.2, 35.6, 405, 300 }, + [12] = { 63.5, 35, 405, 300 }, + [13] = { 68.6, 34.8, 405, 300 }, + [14] = { 76, 34.7, 405, 300 }, + [15] = { 71.1, 34.4, 405, 300 }, + [16] = { 75.3, 33.5, 405, 300 }, + [17] = { 68.6, 33.5, 405, 300 }, + [18] = { 59.9, 33.5, 405, 300 }, + [19] = { 71.1, 33.2, 405, 300 }, + [20] = { 73.5, 33.2, 405, 300 }, + [21] = { 71.5, 33.2, 405, 300 }, + [22] = { 63.3, 33.2, 405, 300 }, + [23] = { 78.3, 32.9, 405, 300 }, + [24] = { 72.8, 32.5, 405, 300 }, + [25] = { 68.8, 31.8, 405, 300 }, + [26] = { 73.9, 31.3, 405, 300 }, + [27] = { 63, 31.2, 405, 300 }, + [28] = { 74.4, 30.2, 405, 300 }, + [29] = { 72.7, 30, 405, 300 }, + [30] = { 71.9, 29.9, 405, 300 }, + [31] = { 61, 29.7, 405, 300 }, + [32] = { 70.8, 29.2, 405, 300 }, + [33] = { 65.5, 29.2, 405, 300 }, + [34] = { 71.8, 28.1, 405, 300 }, + [35] = { 65.5, 27.9, 405, 300 }, + [36] = { 58.9, 26.9, 405, 300 }, + [37] = { 65.7, 26.8, 405, 300 }, + [38] = { 61.2, 26.8, 405, 300 }, + [39] = { 70.5, 26.7, 405, 300 }, + [40] = { 72.4, 26.6, 405, 300 }, + [41] = { 66.9, 25.8, 405, 300 }, + [42] = { 69.9, 25.7, 405, 300 }, + [43] = { 66.3, 25.7, 405, 300 }, + [44] = { 67.8, 25.6, 405, 300 }, + [45] = { 64.1, 24.9, 405, 300 }, + [46] = { 70.8, 23.9, 405, 300 }, + [47] = { 64.4, 22.4, 405, 300 }, + [48] = { 66.3, 22.3, 405, 300 }, + [49] = { 68.7, 22.2, 405, 300 }, + [50] = { 54.3, 22, 405, 300 }, + [51] = { 70.4, 21.3, 405, 300 }, + [52] = { 64.1, 20.1, 405, 300 }, + [53] = { 57.7, 19.4, 405, 300 }, + [54] = { 67.2, 19.1, 405, 300 }, + [55] = { 54.2, 18.8, 405, 300 }, + [56] = { 69.4, 17.9, 405, 300 }, + [57] = { 63.5, 17.9, 405, 300 }, + [58] = { 62.6, 16.9, 405, 300 }, + [59] = { 55.8, 14.9, 405, 300 }, + [60] = { 62.5, 14.7, 405, 300 }, + [61] = { 54.4, 13.9, 405, 300 }, + [62] = { 58.4, 11.7, 405, 300 }, + [63] = { 57.3, 11.6, 405, 300 }, + [64] = { 52.2, 11.3, 405, 300 }, + [65] = { 58.4, 8.9, 405, 300 }, + [66] = { 52.3, 8.1, 405, 300 }, + [67] = { 50.8, 7.8, 405, 300 }, + [68] = { 54.6, 6.9, 405, 300 }, + [69] = { 50.3, 6.1, 405, 300 }, + [70] = { 35.9, 91, 406, 300 }, + [71] = { 38.3, 89, 406, 300 }, + [72] = { 45.4, 88.8, 406, 300 }, + [73] = { 35.8, 88.6, 406, 300 }, + [74] = { 47.1, 88, 406, 300 }, + [75] = { 42.7, 87.9, 406, 300 }, + [76] = { 42.1, 87.2, 406, 300 }, + [77] = { 36.9, 85.6, 406, 300 }, + [78] = { 42, 85.5, 406, 300 }, + [79] = { 35.9, 84.9, 406, 300 }, + [80] = { 38.9, 83.3, 406, 300 }, + [81] = { 38.1, 83.2, 406, 300 }, + [82] = { 34.3, 83, 406, 300 }, + [83] = { 38.9, 81.2, 406, 300 }, + [84] = { 34.4, 80.6, 406, 300 }, + [85] = { 33.2, 80.3, 406, 300 }, + [86] = { 36.1, 79.7, 406, 300 }, + [87] = { 32.8, 79.1, 406, 300 }, + }, + ["lvl"] = "30-31", + }, + [4700] = { + ["coords"] = { + [1] = { 58, 87.5, 405, 180 }, + [2] = { 57.8, 71.1, 405, 300 }, + [3] = { 50.8, 61.2, 405, 300 }, + [4] = { 52.2, 60.6, 405, 300 }, + [5] = { 48.3, 60.3, 405, 300 }, + [6] = { 72.9, 58.9, 405, 180 }, + [7] = { 52.6, 57.5, 405, 300 }, + [8] = { 53.7, 56.7, 405, 300 }, + [9] = { 50.5, 56.6, 405, 300 }, + [10] = { 52, 56.1, 405, 300 }, + [11] = { 46.6, 15, 405, 180 }, + [12] = { 55.3, 10, 405, 180 }, + [13] = { 36.6, 82, 406, 180 }, + }, + ["lvl"] = "34-35", + }, + [4701] = { + ["coords"] = { + [1] = { 58, 87.5, 405, 180 }, + [2] = { 54.3, 63.2, 405, 300 }, + [3] = { 55.7, 62.7, 405, 300 }, + [4] = { 46.5, 60.7, 405, 300 }, + [5] = { 51.5, 59.2, 405, 300 }, + [6] = { 72.9, 58.9, 405, 180 }, + [7] = { 47, 58.9, 405, 300 }, + [8] = { 49.6, 58.3, 405, 300 }, + [9] = { 50.3, 58.3, 405, 300 }, + [10] = { 55, 58.2, 405, 300 }, + [11] = { 53.6, 58, 405, 300 }, + [12] = { 48.5, 56.9, 405, 300 }, + [13] = { 49.1, 55.6, 405, 300 }, + [14] = { 46.6, 15, 405, 180 }, + [15] = { 55.3, 10, 405, 180 }, + [16] = { 36.6, 82, 406, 180 }, + }, + ["lvl"] = "35-36", + }, + [4702] = { + ["coords"] = { + [1] = { 52.4, 62.2, 405, 300 }, + [2] = { 53.9, 61, 405, 300 }, + [3] = { 49.5, 59.7, 405, 300 }, + [4] = { 51.4, 58.3, 405, 300 }, + }, + ["lvl"] = "36-37", + }, + [4703] = "_", + [4704] = "_", + [4705] = { + ["coords"] = { + [1] = { 29.6, 49.7, 215, 300 }, + [2] = { 48, 83.5, 405, 300 }, + [3] = { 82.5, 81, 405, 300 }, + [4] = { 80, 79, 405, 300 }, + [5] = { 79.6, 78.8, 405, 300 }, + [6] = { 80, 77.9, 405, 300 }, + [7] = { 81, 76.7, 405, 300 }, + [8] = { 81, 76.6, 405, 300 }, + [9] = { 52, 76.2, 405, 300 }, + [10] = { 51.4, 70.2, 405, 300 }, + }, + ["lvl"] = "39-40", + }, + [4708] = { + ["coords"] = { + [1] = { 51, 27.2, 440, 30 }, + }, + ["lvl"] = "39", + }, + [4710] = { + ["coords"] = { + [1] = { 10.6, 59.8, 11, 300 }, + [2] = { 37.7, 71.3, 14, 300 }, + [3] = { 64.9, 34.3, 17, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [4711] = { + ["coords"] = { + [1] = { 35.2, 27.8, 405, 300 }, + [2] = { 36, 27.1, 405, 300 }, + [3] = { 35.3, 26.6, 405, 300 }, + [4] = { 36.9, 24.4, 405, 300 }, + [5] = { 36.7, 24.2, 405, 300 }, + [6] = { 32.7, 23.9, 405, 300 }, + [7] = { 35.8, 23.8, 405, 300 }, + [8] = { 38.5, 23.7, 405, 300 }, + [9] = { 36.2, 23.1, 405, 300 }, + [10] = { 35.4, 22, 405, 300 }, + [11] = { 37, 21.9, 405, 300 }, + [12] = { 38.9, 21.4, 405, 300 }, + [13] = { 36.7, 21.3, 405, 300 }, + [14] = { 38.1, 21.2, 405, 300 }, + [15] = { 36.5, 20.4, 405, 300 }, + [16] = { 41.8, 20, 405, 300 }, + [17] = { 41.6, 18.8, 405, 300 }, + }, + ["lvl"] = "32-33", + }, + [4712] = { + ["coords"] = { + [1] = { 35.9, 28.8, 405, 300 }, + [2] = { 36, 24.8, 405, 300 }, + [3] = { 32.9, 23.3, 405, 300 }, + [4] = { 31.4, 22.1, 405, 300 }, + [5] = { 39, 20.1, 405, 300 }, + [6] = { 31.6, 17, 405, 300 }, + [7] = { 27.8, 6.7, 405, 300 }, + }, + ["lvl"] = "32-33", + }, + [4713] = { + ["coords"] = { + [1] = { 36.9, 26.2, 405, 300 }, + [2] = { 34.5, 25.6, 405, 300 }, + [3] = { 32.3, 24.4, 405, 300 }, + [4] = { 34.6, 23.2, 405, 300 }, + [5] = { 34.6, 22.4, 405, 300 }, + [6] = { 32.1, 21.5, 405, 300 }, + [7] = { 34.5, 21.4, 405, 300 }, + [8] = { 32.2, 19.8, 405, 300 }, + [9] = { 33, 15, 405, 300 }, + [10] = { 33.8, 13.6, 405, 300 }, + [11] = { 27.9, 5.7, 405, 300 }, + }, + ["lvl"] = "33-34", + }, + [4714] = { + ["coords"] = { + [1] = { 32.2, 23.4, 405, 300 }, + [2] = { 31.7, 23.1, 405, 300 }, + [3] = { 32.5, 22.5, 405, 300 }, + [4] = { 33.8, 22.4, 405, 300 }, + [5] = { 30.9, 19.2, 405, 300 }, + [6] = { 32, 19, 405, 300 }, + [7] = { 31.4, 17.7, 405, 300 }, + [8] = { 34.6, 17.6, 405, 300 }, + [9] = { 29.9, 16.5, 405, 300 }, + [10] = { 34.4, 14.8, 405, 300 }, + [11] = { 32.7, 14.7, 405, 300 }, + [12] = { 29.2, 13.3, 405, 300 }, + [13] = { 30, 12.2, 405, 300 }, + [14] = { 27, 10.3, 405, 300 }, + [15] = { 33, 9.4, 405, 300 }, + [16] = { 28.5, 7.8, 405, 300 }, + [17] = { 33.9, 7.7, 405, 300 }, + [18] = { 30, 6.8, 405, 300 }, + [19] = { 32.2, 6.6, 405, 300 }, + [20] = { 32.9, 6, 405, 300 }, + [21] = { 20, 81.6, 406, 300 }, + [22] = { 20.6, 80.3, 406, 300 }, + [23] = { 19.3, 79.5, 406, 300 }, + [24] = { 19.9, 79, 406, 300 }, + }, + ["lvl"] = "34-35", + }, + [4715] = { + ["coords"] = { + [1] = { 30.7, 15.8, 405, 300 }, + [2] = { 28.6, 10.2, 405, 300 }, + [3] = { 30.8, 8.9, 405, 300 }, + [4] = { 30.2, 8.8, 405, 300 }, + [5] = { 29.2, 7.9, 405, 300 }, + }, + ["lvl"] = "35-36", + }, + [4716] = { + ["coords"] = { + [1] = { 29.9, 15.9, 405, 300 }, + [2] = { 28.6, 11.1, 405, 300 }, + [3] = { 33.2, 10.5, 405, 300 }, + [4] = { 28.5, 9, 405, 300 }, + [5] = { 34, 8.7, 405, 300 }, + [6] = { 30, 7.8, 405, 300 }, + [7] = { 20.1, 82.4, 406, 300 }, + [8] = { 20.7, 81.1, 406, 300 }, + }, + ["lvl"] = "36-37", + }, + [4717] = "_", + [4718] = { + ["coords"] = { + [1] = { 33, 22.1, 405, 300 }, + [2] = { 31.6, 15.6, 405, 300 }, + [3] = { 33.9, 10.2, 405, 300 }, + [4] = { 27.7, 7.9, 405, 300 }, + [5] = { 28.6, 6.6, 405, 300 }, + [6] = { 28.1, 6.4, 405, 300 }, + [7] = { 20.6, 82.1, 406, 300 }, + }, + ["lvl"] = "34-35", + }, + [4719] = { + ["coords"] = { + [1] = { 35, 16.8, 405, 300 }, + [2] = { 30.5, 16.4, 405, 300 }, + [3] = { 27.7, 12.6, 405, 300 }, + [4] = { 28.7, 12.5, 405, 300 }, + [5] = { 29.2, 11.3, 405, 300 }, + [6] = { 30, 11.1, 405, 300 }, + [7] = { 30.7, 11, 405, 300 }, + [8] = { 27.8, 10.1, 405, 300 }, + [9] = { 34.5, 9.9, 405, 300 }, + [10] = { 30.9, 9.8, 405, 300 }, + [11] = { 27.7, 9.1, 405, 300 }, + [12] = { 29.1, 9, 405, 300 }, + [13] = { 34.4, 8.1, 405, 300 }, + [14] = { 30.8, 7.9, 405, 300 }, + [15] = { 21.1, 82, 406, 300 }, + [16] = { 20.9, 80.6, 406, 300 }, + }, + ["lvl"] = "35-36", + }, + [4721] = { + ["coords"] = { + [1] = { 41, 27.3, 215, 30 }, + [2] = { 55, 51.4, 1638, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [4722] = { + ["coords"] = { + [1] = { 46.1, 51.7, 400, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [4724] = "_", + [4725] = "_", + [4726] = { + ["coords"] = { + [1] = { 38.9, 80.1, 405, 300 }, + [2] = { 38.9, 77.1, 405, 300 }, + [3] = { 42.3, 75.7, 405, 300 }, + [4] = { 37.2, 74.6, 405, 300 }, + [5] = { 43.3, 73.5, 405, 300 }, + [6] = { 43.4, 71.4, 405, 300 }, + [7] = { 66, 70.6, 405, 300 }, + [8] = { 66.9, 69.8, 405, 300 }, + [9] = { 69.9, 68.7, 405, 300 }, + [10] = { 42.5, 68.6, 405, 300 }, + [11] = { 41.2, 67.9, 405, 300 }, + [12] = { 69.3, 65.6, 405, 300 }, + [13] = { 72.5, 65.1, 405, 300 }, + [14] = { 73.9, 63.3, 405, 300 }, + [15] = { 71.7, 62.7, 405, 300 }, + [16] = { 72.1, 62.5, 405, 300 }, + [17] = { 66.2, 61.3, 405, 300 }, + [18] = { 65.4, 60.6, 405, 300 }, + [19] = { 71.4, 60.3, 405, 300 }, + [20] = { 70.2, 60.3, 405, 300 }, + [21] = { 69.3, 59.7, 405, 300 }, + [22] = { 70.3, 59, 405, 300 }, + [23] = { 74.7, 59, 405, 300 }, + [24] = { 66.1, 57.9, 405, 300 }, + [25] = { 70.7, 57.9, 405, 300 }, + [26] = { 68.2, 57.6, 405, 300 }, + [27] = { 68.1, 56.9, 405, 300 }, + [28] = { 75.6, 56.6, 405, 300 }, + [29] = { 71.1, 55.8, 405, 300 }, + [30] = { 72.6, 54.9, 405, 300 }, + [31] = { 66.2, 54.9, 405, 300 }, + [32] = { 71.9, 54.8, 405, 300 }, + [33] = { 74.4, 54.7, 405, 300 }, + [34] = { 68.5, 54.2, 405, 300 }, + [35] = { 65.6, 52.8, 405, 300 }, + [36] = { 49.2, 41.5, 405, 300 }, + [37] = { 61.7, 41.3, 405, 300 }, + [38] = { 58.2, 41.1, 405, 300 }, + [39] = { 57.7, 40.2, 405, 300 }, + [40] = { 50.7, 40.2, 405, 300 }, + [41] = { 55.9, 40, 405, 300 }, + [42] = { 50.7, 39.7, 405, 300 }, + [43] = { 46.3, 39.7, 405, 300 }, + [44] = { 49.3, 38.9, 405, 300 }, + [45] = { 55.3, 38.3, 405, 300 }, + [46] = { 44.7, 36.7, 405, 300 }, + [47] = { 46.8, 35.6, 405, 300 }, + [48] = { 38.2, 35.5, 405, 300 }, + [49] = { 48.3, 35.4, 405, 300 }, + [50] = { 37.4, 35, 405, 300 }, + [51] = { 42.6, 34.9, 405, 300 }, + [52] = { 59.2, 34.8, 405, 300 }, + [53] = { 47.8, 34.4, 405, 300 }, + [54] = { 39.2, 33.5, 405, 300 }, + [55] = { 49, 32.9, 405, 300 }, + [56] = { 55.9, 32.9, 405, 300 }, + [57] = { 50, 32.6, 405, 300 }, + [58] = { 42.4, 31.8, 405, 300 }, + [59] = { 49.3, 31.4, 405, 300 }, + [60] = { 43.4, 31.2, 405, 300 }, + [61] = { 49.9, 29.5, 405, 300 }, + [62] = { 44.8, 29.4, 405, 300 }, + [63] = { 45.3, 29, 405, 300 }, + [64] = { 45.1, 28.4, 405, 300 }, + [65] = { 47, 28.4, 405, 300 }, + [66] = { 43.7, 28.1, 405, 300 }, + [67] = { 48.6, 27.7, 405, 300 }, + [68] = { 48.8, 26.2, 405, 300 }, + [69] = { 51.3, 25.6, 405, 300 }, + [70] = { 41.3, 25.6, 405, 300 }, + [71] = { 41.4, 24.6, 405, 300 }, + [72] = { 52.8, 24.4, 405, 300 }, + [73] = { 44.8, 23.5, 405, 300 }, + [74] = { 45.8, 22.7, 405, 300 }, + [75] = { 47.2, 21.9, 405, 300 }, + [76] = { 44.6, 17.6, 405, 300 }, + [77] = { 46.3, 15.8, 405, 300 }, + }, + ["lvl"] = "33-34", + }, + [4727] = { + ["coords"] = { + [1] = { 51.8, 93.3, 405, 300 }, + [2] = { 52.3, 92.2, 405, 300 }, + [3] = { 50.8, 90.2, 405, 300 }, + [4] = { 44.6, 88, 405, 300 }, + [5] = { 55.3, 88, 405, 300 }, + [6] = { 51.1, 87.8, 405, 300 }, + [7] = { 53.3, 86.9, 405, 300 }, + [8] = { 54.1, 85.9, 405, 300 }, + [9] = { 56.4, 85.7, 405, 300 }, + [10] = { 43.5, 85.5, 405, 300 }, + [11] = { 28.4, 83.9, 405, 300 }, + [12] = { 57.4, 83.7, 405, 300 }, + [13] = { 43.6, 83.4, 405, 300 }, + [14] = { 60.5, 80.6, 405, 300 }, + [15] = { 31.5, 79.2, 405, 300 }, + [16] = { 60.8, 78, 405, 300 }, + [17] = { 31.6, 77.9, 405, 300 }, + [18] = { 62.4, 76.4, 405, 300 }, + [19] = { 60.3, 75.6, 405, 300 }, + [20] = { 62.6, 75.5, 405, 300 }, + [21] = { 63.4, 73.7, 405, 300 }, + [22] = { 61.7, 73.7, 405, 300 }, + [23] = { 61.2, 73.5, 405, 300 }, + [24] = { 62.6, 71.8, 405, 300 }, + [25] = { 30.3, 71.1, 405, 300 }, + [26] = { 43.3, 60.1, 405, 300 }, + [27] = { 61.2, 58.7, 405, 300 }, + [28] = { 43.4, 54.5, 405, 300 }, + [29] = { 77.5, 52.8, 405, 300 }, + [30] = { 62.8, 52.3, 405, 300 }, + [31] = { 59, 52.1, 405, 300 }, + [32] = { 52.2, 49.8, 405, 300 }, + [33] = { 41.7, 48.7, 405, 300 }, + [34] = { 50.8, 48.1, 405, 300 }, + [35] = { 59.9, 47.8, 405, 300 }, + [36] = { 43.3, 45.8, 405, 300 }, + [37] = { 57.9, 45.6, 405, 300 }, + [38] = { 61.8, 45.5, 405, 300 }, + [39] = { 42, 43.4, 405, 300 }, + [40] = { 73.7, 11.1, 405, 300 }, + [41] = { 50.4, 82.8, 406, 300 }, + }, + ["lvl"] = "37-38", + }, + [4728] = { + ["coords"] = { + [1] = { 57.7, 62.5, 405, 300 }, + [2] = { 65.7, 42.6, 405, 300 }, + [3] = { 64.6, 42.4, 405, 300 }, + [4] = { 51.9, 41.4, 405, 300 }, + [5] = { 66.3, 40.2, 405, 300 }, + [6] = { 58.1, 40.1, 405, 300 }, + [7] = { 63.4, 39.1, 405, 300 }, + [8] = { 48.3, 38.3, 405, 300 }, + [9] = { 52.3, 37.8, 405, 300 }, + [10] = { 70.6, 36.9, 405, 300 }, + [11] = { 79, 36.9, 405, 300 }, + [12] = { 77.5, 36.8, 405, 300 }, + [13] = { 62.2, 36.7, 405, 300 }, + [14] = { 75.3, 36.2, 405, 300 }, + [15] = { 69, 35.9, 405, 300 }, + [16] = { 72.4, 35.8, 405, 300 }, + [17] = { 80.9, 35.6, 405, 300 }, + [18] = { 77.4, 35.5, 405, 300 }, + [19] = { 72.8, 35.4, 405, 300 }, + [20] = { 62.1, 35.2, 405, 300 }, + [21] = { 62.7, 34.5, 405, 300 }, + [22] = { 73.8, 34.4, 405, 300 }, + [23] = { 72.4, 34.4, 405, 300 }, + [24] = { 79.2, 34, 405, 300 }, + [25] = { 38.7, 33.9, 405, 300 }, + [26] = { 64, 33.5, 405, 300 }, + [27] = { 77.4, 33.3, 405, 300 }, + [28] = { 76.1, 33, 405, 300 }, + [29] = { 49.4, 32.9, 405, 300 }, + [30] = { 70.8, 32.3, 405, 300 }, + [31] = { 66.2, 31.5, 405, 300 }, + [32] = { 71.1, 31.4, 405, 300 }, + [33] = { 70, 31.2, 405, 300 }, + [34] = { 72.3, 31.1, 405, 300 }, + [35] = { 60.5, 31.1, 405, 300 }, + [36] = { 45.4, 31, 405, 300 }, + [37] = { 69.8, 30, 405, 300 }, + [38] = { 67.3, 29.7, 405, 300 }, + [39] = { 65.6, 29.5, 405, 300 }, + [40] = { 43.3, 29.1, 405, 300 }, + [41] = { 74.5, 29, 405, 300 }, + [42] = { 72.3, 28.9, 405, 300 }, + [43] = { 67, 27.3, 405, 300 }, + [44] = { 70, 27, 405, 300 }, + [45] = { 65.6, 26.8, 405, 300 }, + [46] = { 69.4, 26.8, 405, 300 }, + [47] = { 49.2, 26.2, 405, 300 }, + [48] = { 71.9, 25.6, 405, 300 }, + [49] = { 61.7, 25.3, 405, 300 }, + [50] = { 61.9, 24.9, 405, 300 }, + [51] = { 61.1, 23.5, 405, 300 }, + [52] = { 67.7, 23.3, 405, 300 }, + [53] = { 68.8, 23.1, 405, 300 }, + [54] = { 71.2, 22.7, 405, 300 }, + [55] = { 44.6, 22.2, 405, 300 }, + [56] = { 67.1, 21.9, 405, 300 }, + [57] = { 69.1, 21.9, 405, 300 }, + [58] = { 61.8, 21.8, 405, 300 }, + [59] = { 53.5, 20.5, 405, 300 }, + [60] = { 58.3, 20.4, 405, 300 }, + [61] = { 68.6, 20.2, 405, 300 }, + [62] = { 65.8, 20.2, 405, 300 }, + [63] = { 64.2, 18.9, 405, 300 }, + [64] = { 69.4, 18.7, 405, 300 }, + [65] = { 65.9, 18.4, 405, 300 }, + [66] = { 56.9, 17.3, 405, 300 }, + [67] = { 61.9, 15.8, 405, 300 }, + [68] = { 55.2, 14.6, 405, 300 }, + [69] = { 60.9, 13, 405, 300 }, + [70] = { 52.1, 10.7, 405, 300 }, + [71] = { 58.1, 10.1, 405, 300 }, + [72] = { 57, 9.8, 405, 300 }, + [73] = { 57.3, 9.3, 405, 300 }, + [74] = { 53, 8.8, 405, 300 }, + [75] = { 58.1, 8.5, 405, 300 }, + [76] = { 49.2, 7.8, 405, 300 }, + [77] = { 50.8, 6.6, 405, 300 }, + [78] = { 35.3, 89.9, 406, 300 }, + [79] = { 38.8, 89.8, 406, 300 }, + [80] = { 43.2, 88.7, 406, 300 }, + [81] = { 47.1, 88.5, 406, 300 }, + [82] = { 44.5, 88.3, 406, 300 }, + [83] = { 37.8, 87.5, 406, 300 }, + [84] = { 41.5, 86.3, 406, 300 }, + [85] = { 36.5, 85.4, 406, 300 }, + [86] = { 40.8, 84.3, 406, 300 }, + [87] = { 34.2, 82.5, 406, 300 }, + [88] = { 38.7, 82.1, 406, 300 }, + [89] = { 37.8, 81.9, 406, 300 }, + [90] = { 38.1, 81.5, 406, 300 }, + [91] = { 34.9, 81.2, 406, 300 }, + [92] = { 38.7, 80.9, 406, 300 }, + [93] = { 32, 80.4, 406, 300 }, + [94] = { 33.2, 79.5, 406, 300 }, + }, + ["lvl"] = "31-32", + }, + [4730] = { + ["coords"] = { + [1] = { 25.2, 50.1, 141, 30 }, + [2] = { 38.3, 15.4, 1657, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [4779] = { + ["coords"] = { + [1] = { 10.7, 59.8, 11, 300 }, + [2] = { 51, 26.4, 440, 300 }, + [3] = { 60.5, 37.9, 618, 500 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [4784] = { + ["coords"] = { + [1] = { 28.7, 51.9, 141, 30 }, + [2] = { 55.2, 24, 1657, 30 }, + }, + ["lvl"] = "23", + }, + [4786] = { + ["coords"] = { + [1] = { 28.7, 52.1, 141, 30 }, + [2] = { 55.4, 25, 1657, 30 }, + }, + ["lvl"] = "22", + }, + [4787] = { + ["coords"] = { + [1] = { 13.6, 52.5, 719, 18000 }, + }, + ["lvl"] = "20", + }, + [4788] = { + ["coords"] = { + [1] = { 30.7, 94.9, 148, 300 }, + [2] = { 30.9, 94.6, 148, 300 }, + [3] = { 31.1, 94.1, 148, 300 }, + [4] = { 31.2, 93.6, 148, 300 }, + [5] = { 31.2, 93.2, 148, 300 }, + [6] = { 30.9, 92.7, 148, 300 }, + [7] = { 31.2, 92.6, 148, 300 }, + [8] = { 13.3, 12.6, 331, 300 }, + [9] = { 13.5, 12.2, 331, 300 }, + [10] = { 13.8, 11.7, 331, 300 }, + [11] = { 13.9, 11.1, 331, 300 }, + [12] = { 13.9, 10.6, 331, 300 }, + [13] = { 13.5, 10.1, 331, 300 }, + [14] = { 13.9, 10, 331, 300 }, + }, + ["lvl"] = "20-21", + ["rnk"] = "1", + }, + [4791] = { + ["coords"] = { + [1] = { 35.2, 30.7, 15, 30 }, + [2] = { 53.7, 69.8, 17, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "48", + }, + [4794] = { + ["coords"] = { + [1] = { 66.3, 45.5, 15, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "36", + }, + [4798] = { + ["coords"] = { + [1] = { 36.4, 75.9, 719, 18000 }, + [2] = { 45.9, 68.5, 719, 18000 }, + [3] = { 28, 65.6, 719, 18000 }, + [4] = { 31.2, 65.1, 719, 18000 }, + [5] = { 45.8, 64.5, 719, 18000 }, + [6] = { 49, 64.4, 719, 18000 }, + [7] = { 45.9, 64.3, 719, 18000 }, + [8] = { 53, 63.5, 719, 18000 }, + [9] = { 52.7, 63.3, 719, 18000 }, + [10] = { 24.4, 63.3, 719, 18000 }, + [11] = { 37.5, 62.6, 719, 18000 }, + [12] = { 24.6, 62.1, 719, 18000 }, + [13] = { 35.8, 61.9, 719, 18000 }, + [14] = { 37.9, 61.4, 719, 18000 }, + [15] = { 19.8, 60.7, 719, 18000 }, + [16] = { 40, 56.4, 719, 18000 }, + [17] = { 43.8, 54.4, 719, 18000 }, + [18] = { 43.3, 52.6, 719, 18000 }, + [19] = { 46.8, 47.1, 719, 18000 }, + [20] = { 43, 44.7, 719, 18000 }, + }, + ["lvl"] = "23-24", + ["rnk"] = "1", + }, + [4799] = { + ["coords"] = { + [1] = { 37.4, 73, 719, 18000 }, + [2] = { 37.8, 72.1, 719, 18000 }, + [3] = { 42.2, 70.2, 719, 18000 }, + [4] = { 39, 70, 719, 18000 }, + [5] = { 46.1, 64.8, 719, 18000 }, + [6] = { 42.8, 64, 719, 18000 }, + [7] = { 53, 63.1, 719, 18000 }, + [8] = { 37, 62.6, 719, 18000 }, + [9] = { 39.7, 57.3, 719, 18000 }, + [10] = { 43.1, 54.3, 719, 18000 }, + [11] = { 40, 52.7, 719, 18000 }, + [12] = { 43.4, 50.4, 719, 18000 }, + [13] = { 46.8, 46, 719, 18000 }, + }, + ["lvl"] = "24-25", + ["rnk"] = "1", + }, + [4805] = { + ["coords"] = { + [1] = { 39.2, 69.3, 719, 18000 }, + [2] = { 30.2, 66, 719, 18000 }, + [3] = { 27.9, 66, 719, 18000 }, + [4] = { 29.8, 65.4, 719, 18000 }, + [5] = { 27.9, 64.8, 719, 18000 }, + [6] = { 43.4, 63.9, 719, 18000 }, + [7] = { 42.8, 58.6, 719, 18000 }, + [8] = { 43.4, 57.8, 719, 18000 }, + [9] = { 21, 55.2, 719, 18000 }, + [10] = { 40, 54.1, 719, 18000 }, + [11] = { 43.1, 51, 719, 18000 }, + [12] = { 40.5, 50.9, 719, 18000 }, + [13] = { 26.8, 50.6, 719, 18000 }, + [14] = { 37.2, 50.3, 719, 18000 }, + [15] = { 38.2, 49.6, 719, 18000 }, + [16] = { 19.4, 48.9, 719, 18000 }, + [17] = { 43.1, 46.1, 719, 18000 }, + [18] = { 28.4, 43.8, 719, 18000 }, + [19] = { 30.8, 39, 719, 18000 }, + [20] = { 13.4, 37.9, 719, 18000 }, + [21] = { 14, 37.7, 719, 18000 }, + [22] = { 16.4, 37.6, 719, 18000 }, + [23] = { 24.7, 35.1, 719, 18000 }, + [24] = { 20.3, 33.1, 719, 18000 }, + [25] = { 21.6, 32, 719, 18000 }, + [26] = { 12, 30.5, 719, 18000 }, + [27] = { 10.8, 29.1, 719, 18000 }, + [28] = { 22.9, 26.9, 719, 18000 }, + [29] = { 11.2, 24.3, 719, 18000 }, + [30] = { 12.8, 24, 719, 18000 }, + }, + ["lvl"] = "23-24", + ["rnk"] = "1", + }, + [4807] = { + ["coords"] = { + [1] = { 36.2, 75.1, 719, 18000 }, + [2] = { 40.9, 68.2, 719, 18000 }, + [3] = { 19.8, 63.6, 719, 18000 }, + [4] = { 19.4, 62.8, 719, 18000 }, + [5] = { 21, 62, 719, 18000 }, + [6] = { 35.6, 59.8, 719, 18000 }, + [7] = { 36, 59.2, 719, 18000 }, + [8] = { 21.7, 52.9, 719, 18000 }, + [9] = { 21.4, 50.6, 719, 18000 }, + [10] = { 25.9, 50.4, 719, 18000 }, + [11] = { 42.4, 50, 719, 18000 }, + [12] = { 44.5, 49.9, 719, 18000 }, + [13] = { 26, 49.6, 719, 18000 }, + [14] = { 44.1, 49.3, 719, 18000 }, + [15] = { 22.3, 48, 719, 18000 }, + [16] = { 27.2, 47, 719, 18000 }, + [17] = { 16, 40.8, 719, 18000 }, + [18] = { 15, 38.2, 719, 18000 }, + [19] = { 12.1, 37.6, 719, 18000 }, + [20] = { 17.5, 33.7, 719, 18000 }, + [21] = { 15.2, 29.5, 719, 18000 }, + [22] = { 22.1, 29.1, 719, 18000 }, + [23] = { 11.7, 27.2, 719, 18000 }, + [24] = { 24, 27.1, 719, 18000 }, + [25] = { 13.7, 24.6, 719, 18000 }, + [26] = { 6.1, 24.2, 719, 604800 }, + }, + ["lvl"] = "22-23", + ["rnk"] = "1", + }, + [4809] = { + ["coords"] = { + [1] = { 44.6, 88.3, 719, 18000 }, + [2] = { 44.7, 81.5, 719, 18000 }, + [3] = { 48.4, 76.1, 719, 18000 }, + [4] = { 43.5, 72.5, 719, 18000 }, + }, + ["lvl"] = "24-25", + ["rnk"] = "1", + }, + [4810] = { + ["coords"] = { + [1] = { 44.6, 85.1, 719, 18000 }, + [2] = { 44.2, 81.5, 719, 18000 }, + [3] = { 44.5, 80.2, 719, 18000 }, + [4] = { 39.1, 79, 719, 18000 }, + [5] = { 48.4, 78.6, 719, 18000 }, + [6] = { 44.6, 76.6, 719, 18000 }, + [7] = { 39.3, 76.3, 719, 18000 }, + [8] = { 42, 76.2, 719, 18000 }, + [9] = { 44.4, 76.2, 719, 18000 }, + [10] = { 42.3, 75.7, 719, 18000 }, + }, + ["lvl"] = "25-26", + ["rnk"] = "1", + }, + [4811] = { + ["coords"] = { + [1] = { 44.2, 88.6, 719, 18000 }, + [2] = { 44.3, 87.8, 719, 18000 }, + [3] = { 44.2, 85.6, 719, 18000 }, + [4] = { 44.5, 83.2, 719, 18000 }, + [5] = { 39.3, 79.5, 719, 18000 }, + [6] = { 48.5, 77.9, 719, 18000 }, + [7] = { 43, 72.9, 719, 18000 }, + }, + ["lvl"] = "25-26", + ["rnk"] = "1", + }, + [4812] = { + ["coords"] = { + [1] = { 46.3, 88.6, 719, 18000 }, + [2] = { 45.9, 88.1, 719, 18000 }, + [3] = { 44.6, 86.1, 719, 18000 }, + [4] = { 46.2, 76.2, 719, 18000 }, + [5] = { 46.4, 76, 719, 18000 }, + [6] = { 39.4, 75.9, 719, 18000 }, + [7] = { 42.2, 72.7, 719, 18000 }, + }, + ["lvl"] = "24-25", + ["rnk"] = "1", + }, + [4813] = { + ["coords"] = { + [1] = { 51.7, 91.9, 719, 18000 }, + [2] = { 51.2, 91.7, 719, 18000 }, + [3] = { 49.9, 91.6, 719, 18000 }, + [4] = { 50.6, 88.2, 719, 18000 }, + [5] = { 47.9, 87.4, 719, 18000 }, + [6] = { 48.6, 85.7, 719, 18000 }, + [7] = { 53, 83.8, 719, 18000 }, + }, + ["lvl"] = "26-27", + ["rnk"] = "1", + }, + [4814] = { + ["coords"] = { + [1] = { 48.6, 90.5, 719, 18000 }, + [2] = { 50.5, 89.9, 719, 18000 }, + [3] = { 48.6, 88.1, 719, 18000 }, + [4] = { 50.2, 86.5, 719, 18000 }, + [5] = { 51.2, 84.5, 719, 18000 }, + [6] = { 49.9, 84.5, 719, 18000 }, + }, + ["lvl"] = "26-27", + ["rnk"] = "1", + }, + [4815] = { + ["coords"] = { + [1] = { 28.5, 30.4, 719, 18000 }, + [2] = { 29, 29.7, 719, 18000 }, + [3] = { 42.5, 28.5, 719, 18000 }, + [4] = { 29.1, 27, 719, 18000 }, + [5] = { 41.7, 24.7, 719, 18000 }, + [6] = { 35.2, 18, 719, 18000 }, + [7] = { 35.4, 8.7, 719, 18000 }, + }, + ["lvl"] = "22-23", + ["rnk"] = "1", + }, + [4816] = "_", + [4818] = { + ["coords"] = { + [1] = { 41.7, 28.5, 719, 18000 }, + [2] = { 41.1, 26.2, 719, 18000 }, + [3] = { 40, 25.9, 719, 18000 }, + [4] = { 32.4, 23.4, 719, 18000 }, + [5] = { 30.9, 23.3, 719, 18000 }, + [6] = { 36.2, 21, 719, 18000 }, + [7] = { 38, 18.8, 719, 18000 }, + [8] = { 36.9, 18.2, 719, 18000 }, + [9] = { 35.5, 18.2, 719, 18000 }, + [10] = { 37.2, 16, 719, 18000 }, + }, + ["lvl"] = "22-23", + ["rnk"] = "1", + }, + [4819] = { + ["coords"] = { + [1] = { 39, 43.8, 719, 18000 }, + [2] = { 38.7, 42.8, 719, 18000 }, + [3] = { 37.7, 39.1, 719, 18000 }, + [4] = { 37.9, 37.5, 719, 18000 }, + [5] = { 37.6, 36.2, 719, 18000 }, + }, + ["lvl"] = "25", + ["rnk"] = "1", + }, + [4820] = { + ["coords"] = { + [1] = { 38, 40.7, 719, 18000 }, + [2] = { 36.6, 40.7, 719, 18000 }, + [3] = { 39.3, 39.8, 719, 18000 }, + [4] = { 39.4, 39, 719, 18000 }, + [5] = { 37.6, 37.1, 719, 18000 }, + }, + ["lvl"] = "25", + ["rnk"] = "1", + }, + [4821] = { + ["coords"] = { + [1] = { 35.6, 32.9, 719, 18000 }, + [2] = { 38.9, 29.1, 719, 18000 }, + [3] = { 33.3, 28.1, 719, 18000 }, + [4] = { 31.3, 26.5, 719, 18000 }, + [5] = { 29.6, 26.1, 719, 18000 }, + [6] = { 33.9, 24.1, 719, 18000 }, + [7] = { 32.6, 22.6, 719, 18000 }, + [8] = { 39, 21.8, 719, 18000 }, + [9] = { 38.4, 21.5, 719, 18000 }, + [10] = { 33.8, 19.8, 719, 18000 }, + [11] = { 36.8, 15.4, 719, 18000 }, + }, + ["lvl"] = "22-23", + ["rnk"] = "1", + }, + [4822] = { + ["coords"] = { + [1] = { 20.2, 57.1, 719, 18000 }, + [2] = { 21.6, 57, 719, 18000 }, + [3] = { 21.5, 54.7, 719, 18000 }, + [4] = { 24.2, 50.5, 719, 18000 }, + [5] = { 19.9, 50.1, 719, 18000 }, + [6] = { 18.7, 48.9, 719, 18000 }, + [7] = { 29.9, 47.2, 719, 18000 }, + [8] = { 17.3, 46.2, 719, 18000 }, + [9] = { 30.9, 44.6, 719, 18000 }, + [10] = { 16.8, 44, 719, 18000 }, + [11] = { 29, 41.6, 719, 18000 }, + [12] = { 31, 40.5, 719, 18000 }, + [13] = { 24.9, 37.3, 719, 18000 }, + [14] = { 17.3, 36.5, 719, 18000 }, + [15] = { 25.5, 34.6, 719, 18000 }, + [16] = { 19.1, 33.4, 719, 18000 }, + [17] = { 23.4, 31.4, 719, 18000 }, + [18] = { 16.5, 31, 719, 18000 }, + }, + ["lvl"] = "23-24", + ["rnk"] = "1", + }, + [4823] = { + ["coords"] = { + [1] = { 45.5, 91.3, 719, 18000 }, + [2] = { 49.2, 86.8, 719, 18000 }, + [3] = { 42.6, 81, 719, 18000 }, + }, + ["lvl"] = "25-26", + ["rnk"] = "1", + }, + [4824] = { + ["coords"] = { + [1] = { 23.3, 44.9, 719, 18000 }, + [2] = { 21.4, 44.1, 719, 18000 }, + [3] = { 20.3, 41.9, 719, 18000 }, + [4] = { 24.3, 41.7, 719, 18000 }, + [5] = { 20.6, 38.3, 719, 18000 }, + [6] = { 23, 38, 719, 18000 }, + }, + ["lvl"] = "23-24", + ["rnk"] = "1", + }, + [4825] = { + ["coords"] = { + [1] = { 73.1, 92.3, 719, 18000 }, + [2] = { 68.9, 90.9, 719, 18000 }, + [3] = { 57.7, 89.5, 719, 18000 }, + [4] = { 60.4, 89.4, 719, 18000 }, + [5] = { 72.2, 88.4, 719, 18000 }, + [6] = { 60.3, 85.5, 719, 18000 }, + [7] = { 57.3, 85.3, 719, 18000 }, + }, + ["lvl"] = "26-27", + ["rnk"] = "1", + }, + [4827] = { + ["coords"] = { + [1] = { 47.4, 91.2, 719, 18000 }, + [2] = { 44.2, 88.1, 719, 18000 }, + [3] = { 47, 87.9, 719, 18000 }, + [4] = { 52.5, 85.3, 719, 18000 }, + [5] = { 47.5, 83.1, 719, 18000 }, + [6] = { 46.9, 80, 719, 18000 }, + [7] = { 49.4, 76.7, 719, 18000 }, + [8] = { 46.1, 73.5, 719, 18000 }, + }, + ["lvl"] = "24-25", + ["rnk"] = "1", + }, + [4829] = { + ["coords"] = { + [1] = { 76.9, 91.8, 719, 604800 }, + }, + ["lvl"] = "28", + ["rnk"] = "1", + }, + [4830] = { + ["coords"] = { + [1] = { 53.6, 79.2, 719, 604800 }, + }, + ["lvl"] = "26", + ["rnk"] = "1", + }, + [4831] = { + ["coords"] = { + [1] = { 6.2, 24.5, 719, 604800 }, + }, + ["lvl"] = "25", + ["rnk"] = "1", + }, + [4832] = { + ["coords"] = { + [1] = { 52.5, 88.2, 719, 604800 }, + }, + ["lvl"] = "27", + ["rnk"] = "1", + }, + [4834] = { + ["coords"] = { + [1] = { 38, 37.4, 15, 360 }, + [2] = { 36.6, 35.6, 15, 360 }, + [3] = { 40.6, 35.3, 15, 360 }, + [4] = { 38, 33.9, 15, 360 }, + [5] = { 40.4, 33.6, 15, 360 }, + [6] = { 44, 27.3, 15, 360 }, + [7] = { 37.6, 27, 15, 360 }, + [8] = { 41.7, 26.6, 15, 360 }, + [9] = { 39, 26.4, 15, 360 }, + [10] = { 42.1, 26, 15, 360 }, + [11] = { 38.1, 25.6, 15, 360 }, + [12] = { 40.9, 25.5, 15, 360 }, + [13] = { 41.6, 25.2, 15, 360 }, + [14] = { 39.6, 23.9, 15, 360 }, + [15] = { 38.1, 23.6, 15, 360 }, + [16] = { 38.9, 22.4, 15, 360 }, + [17] = { 39, 21.7, 15, 360 }, + [18] = { 55.2, 73.3, 17, 360 }, + [19] = { 54.5, 72.4, 17, 360 }, + [20] = { 55.2, 71.5, 17, 360 }, + [21] = { 55, 68, 17, 360 }, + [22] = { 55.2, 67.2, 17, 360 }, + [23] = { 55.2, 66.2, 17, 360 }, + }, + ["fac"] = "A", + ["lvl"] = "35-36", + }, + [4842] = { + ["coords"] = { + [1] = { 49.4, 47.1, 491, 604800 }, + }, + ["lvl"] = "32", + ["rnk"] = "2", + }, + [4844] = { + ["coords"] = { + [1] = { 39.5, 19.7, 3, 300 }, + [2] = { 39.6, 17.9, 3, 300 }, + [3] = { 39.1, 17.2, 3, 300 }, + [4] = { 40.5, 16.1, 3, 300 }, + [5] = { 39.9, 15.7, 3, 300 }, + [6] = { 40.4, 15.3, 3, 300 }, + [7] = { 39.6, 13.5, 3, 300 }, + [8] = { 47.2, 13.2, 3, 300 }, + [9] = { 46.5, 12.6, 3, 300 }, + [10] = { 38.6, 12.5, 3, 300 }, + [11] = { 44.9, 12.4, 3, 300 }, + [12] = { 45.7, 11.9, 3, 300 }, + [13] = { 38.7, 11.7, 3, 300 }, + [14] = { 44.9, 11.4, 3, 300 }, + [15] = { 39.7, 11.2, 3, 300 }, + [16] = { 46.6, 11.1, 3, 300 }, + [17] = { 43.9, 10.9, 3, 300 }, + [18] = { 44.9, 10.6, 3, 300 }, + [19] = { 44.5, 9.9, 3, 300 }, + [20] = { 46, 9.9, 3, 300 }, + [21] = { 47.6, 9.5, 3, 300 }, + [22] = { 45.5, 8.6, 3, 300 }, + [23] = { 46.3, 8.5, 3, 300 }, + [24] = { 46.3, 8, 3, 300 }, + [25] = { 38.8, 92.3, 38, 300 }, + [26] = { 38.4, 91.7, 38, 300 }, + [27] = { 35.4, 91, 38, 300 }, + [28] = { 39.6, 90.8, 38, 300 }, + [29] = { 34.8, 90.7, 38, 300 }, + [30] = { 39.1, 90.4, 38, 300 }, + [31] = { 39.5, 90, 38, 300 }, + [32] = { 34.2, 89.6, 38, 300 }, + [33] = { 38.8, 88.4, 38, 300 }, + [34] = { 45.7, 88.1, 38, 300 }, + [35] = { 45, 87.6, 38, 300 }, + [36] = { 37.9, 87.5, 38, 300 }, + [37] = { 43.6, 87.4, 38, 300 }, + [38] = { 44.3, 86.9, 38, 300 }, + [39] = { 38, 86.7, 38, 300 }, + [40] = { 43.6, 86.5, 38, 300 }, + [41] = { 38.9, 86.3, 38, 300 }, + [42] = { 45.1, 86.2, 38, 300 }, + [43] = { 42.7, 86, 38, 300 }, + [44] = { 43.6, 85.8, 38, 300 }, + [45] = { 43.2, 85.2, 38, 300 }, + [46] = { 44.6, 85.1, 38, 300 }, + [47] = { 46, 84.7, 38, 300 }, + [48] = { 44.1, 83.9, 38, 300 }, + [49] = { 44.8, 83.8, 38, 300 }, + [50] = { 44.9, 83.4, 38, 300 }, + [51] = { 56, 70, 1337, 300 }, + [52] = { 56.1, 61.9, 1337, 300 }, + [53] = { 54.1, 59, 1337, 300 }, + [54] = { 39.8, 55.2, 1337, 300 }, + [55] = { 60.4, 54.2, 1337, 300 }, + [56] = { 36.5, 53.9, 1337, 300 }, + [57] = { 57.7, 52.3, 1337, 300 }, + [58] = { 59.7, 50.5, 1337, 300 }, + [59] = { 33.9, 48.3, 1337, 300 }, + [60] = { 56.4, 42.4, 1337, 300 }, + [61] = { 89.8, 41.2, 1337, 300 }, + [62] = { 86.8, 38.5, 1337, 300 }, + [63] = { 51.9, 38.4, 1337, 300 }, + [64] = { 79.7, 37.9, 1337, 300 }, + [65] = { 83, 35.4, 1337, 300 }, + [66] = { 52.4, 34.5, 1337, 300 }, + [67] = { 79.5, 33.3, 1337, 300 }, + [68] = { 56.7, 32.2, 1337, 300 }, + [69] = { 87.2, 32.1, 1337, 300 }, + [70] = { 75.3, 30.9, 1337, 300 }, + [71] = { 79.8, 30, 1337, 300 }, + [72] = { 77.9, 26.9, 1337, 300 }, + [73] = { 84.6, 26.7, 1337, 300 }, + [74] = { 91.6, 24.7, 1337, 300 }, + [75] = { 82.3, 20.7, 1337, 300 }, + [76] = { 85.8, 20.3, 1337, 300 }, + [77] = { 85.9, 18.3, 1337, 300 }, + [78] = { 18.4, 92.4, 5602, 300 }, + [79] = { 18.4, 91.6, 5602, 300 }, + [80] = { 18.2, 91.3, 5602, 300 }, + [81] = { 16.7, 90.9, 5602, 300 }, + [82] = { 18.8, 90.8, 5602, 300 }, + [83] = { 16.4, 90.7, 5602, 300 }, + [84] = { 18.6, 90.6, 5602, 300 }, + [85] = { 18.8, 90.4, 5602, 300 }, + [86] = { 16.1, 90.2, 5602, 300 }, + [87] = { 18.4, 89.5, 5602, 300 }, + [88] = { 21.9, 89.4, 5602, 300 }, + [89] = { 21.6, 89.1, 5602, 300 }, + [90] = { 18, 89.1, 5602, 300 }, + [91] = { 20.9, 89.1, 5602, 300 }, + [92] = { 21.2, 88.8, 5602, 300 }, + [93] = { 18, 88.7, 5602, 300 }, + [94] = { 20.8, 88.6, 5602, 300 }, + [95] = { 18.5, 88.5, 5602, 300 }, + [96] = { 21.7, 88.4, 5602, 300 }, + [97] = { 20.4, 88.3, 5602, 300 }, + [98] = { 20.9, 88.2, 5602, 300 }, + [99] = { 20.7, 87.9, 5602, 300 }, + [100] = { 21.4, 87.9, 5602, 300 }, + [101] = { 22.1, 87.7, 5602, 300 }, + [102] = { 21.1, 87.3, 5602, 300 }, + [103] = { 21.5, 87.2, 5602, 300 }, + [104] = { 21.5, 87, 5602, 300 }, + }, + ["lvl"] = "35-36", + ["rnk"] = "1", + }, + [4845] = { + ["coords"] = { + [1] = { 39.4, 20.1, 3, 300 }, + [2] = { 38.7, 19.4, 3, 300 }, + [3] = { 39.8, 18.9, 3, 300 }, + [4] = { 38.7, 18.7, 3, 300 }, + [5] = { 41, 15.7, 3, 300 }, + [6] = { 38.6, 12.8, 3, 300 }, + [7] = { 39.1, 11.5, 3, 300 }, + [8] = { 42.5, 11.1, 3, 300 }, + [9] = { 40.4, 10.9, 3, 300 }, + [10] = { 42.4, 10.5, 3, 300 }, + [11] = { 35, 90.6, 38, 300 }, + [12] = { 40.1, 90.4, 38, 300 }, + [13] = { 34.4, 88.8, 38, 300 }, + [14] = { 35, 88.8, 38, 300 }, + [15] = { 35.4, 88.6, 38, 300 }, + [16] = { 35.5, 88, 38, 300 }, + [17] = { 37.9, 87.8, 38, 300 }, + [18] = { 38.3, 86.6, 38, 300 }, + [19] = { 41.4, 86.2, 38, 300 }, + [20] = { 39.5, 86, 38, 300 }, + [21] = { 41.4, 85.7, 38, 300 }, + [22] = { 55.5, 71.6, 1337, 300 }, + [23] = { 52.4, 68.6, 1337, 300 }, + [24] = { 57, 66.3, 1337, 300 }, + [25] = { 52.2, 65.3, 1337, 300 }, + [26] = { 37.7, 53.6, 1337, 300 }, + [27] = { 62.7, 52.2, 1337, 300 }, + [28] = { 34.6, 44.7, 1337, 300 }, + [29] = { 37.9, 44.3, 1337, 300 }, + [30] = { 39.6, 43.6, 1337, 300 }, + [31] = { 40.3, 40.5, 1337, 300 }, + [32] = { 51.7, 39.5, 1337, 300 }, + [33] = { 53.9, 33.9, 1337, 300 }, + [34] = { 69, 31.8, 1337, 300 }, + [35] = { 59.6, 31.1, 1337, 300 }, + [36] = { 68.8, 29.3, 1337, 300 }, + [37] = { 18.3, 92.6, 5602, 300 }, + [38] = { 18, 92.3, 5602, 300 }, + [39] = { 18.5, 92, 5602, 300 }, + [40] = { 18, 91.9, 5602, 300 }, + [41] = { 16.5, 90.7, 5602, 300 }, + [42] = { 19.1, 90.6, 5602, 300 }, + [43] = { 16.1, 89.8, 5602, 300 }, + [44] = { 16.5, 89.7, 5602, 300 }, + [45] = { 16.7, 89.7, 5602, 300 }, + [46] = { 16.8, 89.3, 5602, 300 }, + [47] = { 17.9, 89.2, 5602, 300 }, + [48] = { 18.2, 88.6, 5602, 300 }, + [49] = { 19.7, 88.4, 5602, 300 }, + [50] = { 18.8, 88.3, 5602, 300 }, + [51] = { 19.7, 88.2, 5602, 300 }, + }, + ["lvl"] = "36-37", + ["rnk"] = "1", + }, + [4846] = { + ["coords"] = { + [1] = { 39, 20.2, 3, 300 }, + [2] = { 38.8, 20, 3, 300 }, + [3] = { 39.1, 19, 3, 300 }, + [4] = { 39.1, 18.5, 3, 300 }, + [5] = { 39.9, 17.8, 3, 300 }, + [6] = { 39.6, 17.6, 3, 300 }, + [7] = { 38.7, 17, 3, 300 }, + [8] = { 38.7, 16.5, 3, 300 }, + [9] = { 39.4, 15.8, 3, 300 }, + [10] = { 38.8, 15.6, 3, 300 }, + [11] = { 38.5, 15.6, 3, 300 }, + [12] = { 41.1, 15.3, 3, 300 }, + [13] = { 40.8, 15.1, 3, 300 }, + [14] = { 39.1, 13.7, 3, 300 }, + [15] = { 40.3, 13.4, 3, 300 }, + [16] = { 38.8, 13.3, 3, 300 }, + [17] = { 41, 12.9, 3, 300 }, + [18] = { 46.5, 11.6, 3, 300 }, + [19] = { 48.2, 11, 3, 300 }, + [20] = { 47, 10.9, 3, 300 }, + [21] = { 46.7, 10.3, 3, 300 }, + [22] = { 47.9, 10.1, 3, 300 }, + [23] = { 45.3, 9.9, 3, 300 }, + [24] = { 44.2, 9.6, 3, 300 }, + [25] = { 44.7, 9.1, 3, 300 }, + [26] = { 44.8, 8.9, 3, 300 }, + [27] = { 45.3, 8.4, 3, 300 }, + [28] = { 39.1, 92.3, 38, 300 }, + [29] = { 38.8, 92.1, 38, 300 }, + [30] = { 38, 91.5, 38, 300 }, + [31] = { 38, 91.1, 38, 300 }, + [32] = { 36.1, 90.6, 38, 300 }, + [33] = { 38.7, 90.5, 38, 300 }, + [34] = { 38.1, 90.3, 38, 300 }, + [35] = { 37.8, 90.3, 38, 300 }, + [36] = { 40.1, 90, 38, 300 }, + [37] = { 39.9, 89.8, 38, 300 }, + [38] = { 35.7, 89.3, 38, 300 }, + [39] = { 37.7, 89.1, 38, 300 }, + [40] = { 36.8, 88.9, 38, 300 }, + [41] = { 37.6, 88.8, 38, 300 }, + [42] = { 36.2, 88.7, 38, 300 }, + [43] = { 37.2, 88.6, 38, 300 }, + [44] = { 38.4, 88.6, 38, 300 }, + [45] = { 37.1, 88.4, 38, 300 }, + [46] = { 39.5, 88.3, 38, 300 }, + [47] = { 38.1, 88.2, 38, 300 }, + [48] = { 40.1, 87.8, 38, 300 }, + [49] = { 45, 86.7, 38, 300 }, + [50] = { 46.6, 86.1, 38, 300 }, + [51] = { 45.5, 86.1, 38, 300 }, + [52] = { 45.3, 85.5, 38, 300 }, + [53] = { 46.3, 85.3, 38, 300 }, + [54] = { 43.9, 85.2, 38, 300 }, + [55] = { 43, 84.8, 38, 300 }, + [56] = { 43.4, 84.4, 38, 300 }, + [57] = { 43.5, 84.3, 38, 300 }, + [58] = { 43.9, 83.8, 38, 300 }, + [59] = { 53.5, 72.2, 1337, 300 }, + [60] = { 52.9, 71.2, 1337, 300 }, + [61] = { 53.9, 66.6, 1337, 300 }, + [62] = { 54, 64.8, 1337, 300 }, + [63] = { 57.6, 61.5, 1337, 300 }, + [64] = { 56.3, 60.7, 1337, 300 }, + [65] = { 52.5, 57.9, 1337, 300 }, + [66] = { 52.5, 55.9, 1337, 300 }, + [67] = { 43.3, 53.3, 1337, 300 }, + [68] = { 55.6, 52.7, 1337, 300 }, + [69] = { 52.7, 51.7, 1337, 300 }, + [70] = { 51.4, 51.7, 1337, 300 }, + [71] = { 62.7, 50.7, 1337, 300 }, + [72] = { 61.5, 49.6, 1337, 300 }, + [73] = { 40.9, 46.8, 1337, 300 }, + [74] = { 50.8, 45.9, 1337, 300 }, + [75] = { 46.6, 45.3, 1337, 300 }, + [76] = { 50.2, 44.5, 1337, 300 }, + [77] = { 43.7, 44, 1337, 300 }, + [78] = { 48.5, 43.6, 1337, 300 }, + [79] = { 54.2, 43.5, 1337, 300 }, + [80] = { 48, 42.5, 1337, 300 }, + [81] = { 59.5, 42.3, 1337, 300 }, + [82] = { 52.7, 41.8, 1337, 300 }, + [83] = { 62.5, 39.9, 1337, 300 }, + [84] = { 86.8, 34.2, 1337, 300 }, + [85] = { 94.4, 31.6, 1337, 300 }, + [86] = { 89.1, 31.2, 1337, 300 }, + [87] = { 87.9, 28.6, 1337, 300 }, + [88] = { 93.1, 27.6, 1337, 300 }, + [89] = { 81.4, 26.8, 1337, 300 }, + [90] = { 76.8, 25.1, 1337, 300 }, + [91] = { 78.7, 23, 1337, 300 }, + [92] = { 79.2, 22.4, 1337, 300 }, + [93] = { 81.4, 20.2, 1337, 300 }, + [94] = { 18.1, 92.7, 5602, 300 }, + [95] = { 18.1, 92.6, 5602, 300 }, + [96] = { 18.2, 92.1, 5602, 300 }, + [97] = { 18.2, 91.9, 5602, 300 }, + [98] = { 18.6, 91.5, 5602, 300 }, + [99] = { 18.4, 91.5, 5602, 300 }, + [100] = { 18, 91.2, 5602, 300 }, + [101] = { 18, 91, 5602, 300 }, + [102] = { 17.1, 90.7, 5602, 300 }, + [103] = { 18.3, 90.6, 5602, 300 }, + [104] = { 18, 90.5, 5602, 300 }, + [105] = { 17.9, 90.5, 5602, 300 }, + [106] = { 19.1, 90.4, 5602, 300 }, + [107] = { 19, 90.3, 5602, 300 }, + [108] = { 16.8, 90, 5602, 300 }, + [109] = { 17.8, 89.9, 5602, 300 }, + [110] = { 17.4, 89.8, 5602, 300 }, + [111] = { 17.8, 89.8, 5602, 300 }, + [112] = { 17.1, 89.7, 5602, 300 }, + [113] = { 17.6, 89.7, 5602, 300 }, + [114] = { 18.2, 89.7, 5602, 300 }, + [115] = { 17.5, 89.5, 5602, 300 }, + [116] = { 18.8, 89.5, 5602, 300 }, + [117] = { 18, 89.5, 5602, 300 }, + [118] = { 19.1, 89.3, 5602, 300 }, + [119] = { 21.6, 88.7, 5602, 300 }, + [120] = { 22.4, 88.4, 5602, 300 }, + [121] = { 21.9, 88.4, 5602, 300 }, + [122] = { 21.7, 88.1, 5602, 300 }, + [123] = { 22.3, 88, 5602, 300 }, + [124] = { 21, 87.9, 5602, 300 }, + [125] = { 20.6, 87.7, 5602, 300 }, + [126] = { 20.8, 87.5, 5602, 300 }, + [127] = { 20.8, 87.4, 5602, 300 }, + [128] = { 21, 87.2, 5602, 300 }, + }, + ["lvl"] = "35-36", + ["rnk"] = "1", + }, + [4847] = { + ["coords"] = { + [1] = { 31.5, 61.3, 1337, 18000 }, + [2] = { 31, 59.8, 1337, 18000 }, + [3] = { 28.7, 58.3, 1337, 18000 }, + [4] = { 30.8, 57.7, 1337, 18000 }, + [5] = { 29, 57.3, 1337, 18000 }, + }, + ["lvl"] = "39-40", + ["rnk"] = "1", + }, + [4848] = { + ["coords"] = { + [1] = { 25.9, 32.2, 1337, 18000 }, + [2] = { 27.7, 31.9, 1337, 18000 }, + }, + ["lvl"] = "43-44", + ["rnk"] = "1", + }, + [4849] = { + ["coords"] = { + [1] = { 26.1, 33, 1337, 18000 }, + [2] = { 27.2, 31.8, 1337, 18000 }, + }, + ["lvl"] = "43-44", + ["rnk"] = "1", + }, + [4850] = { + ["coords"] = { + [1] = { 56.6, 91.1, 1337, 18000 }, + [2] = { 59.6, 90, 1337, 18000 }, + [3] = { 59, 87.6, 1337, 18000 }, + [4] = { 57.5, 85.5, 1337, 18000 }, + [5] = { 40.2, 79.2, 1337, 18000 }, + [6] = { 40.9, 78.9, 1337, 18000 }, + [7] = { 42.5, 76.4, 1337, 18000 }, + [8] = { 44.7, 75.7, 1337, 18000 }, + [9] = { 45.2, 74.9, 1337, 18000 }, + [10] = { 50, 73.2, 1337, 18000 }, + [11] = { 43.6, 73, 1337, 18000 }, + [12] = { 50, 71.8, 1337, 18000 }, + [13] = { 44.4, 69.9, 1337, 18000 }, + [14] = { 45.1, 69.7, 1337, 18000 }, + }, + ["lvl"] = "38-39", + ["rnk"] = "1", + }, + [4851] = { + ["coords"] = { + [1] = { 36.7, 92.3, 38, 300 }, + [2] = { 37.2, 91.8, 38, 300 }, + [3] = { 33.4, 91.3, 38, 300 }, + [4] = { 32.4, 90.5, 38, 300 }, + [5] = { 35.6, 83.5, 1337, 300 }, + [6] = { 33.8, 82.9, 1337, 300 }, + [7] = { 31.1, 80.3, 1337, 300 }, + [8] = { 44, 64, 1337, 300 }, + [9] = { 30.2, 63.6, 1337, 300 }, + [10] = { 29.5, 61.7, 1337, 300 }, + [11] = { 45.9, 61.6, 1337, 300 }, + [12] = { 48.5, 59.5, 1337, 300 }, + [13] = { 29.6, 56.9, 1337, 300 }, + [14] = { 24.9, 52.9, 1337, 300 }, + [15] = { 62.9, 82.5, 1337, 18000 }, + [16] = { 53.9, 81.6, 1337, 18000 }, + [17] = { 63.2, 81.4, 1337, 18000 }, + [18] = { 65.5, 81.3, 1337, 18000 }, + [19] = { 56.9, 80.7, 1337, 18000 }, + [20] = { 53.3, 80.6, 1337, 18000 }, + [21] = { 62.1, 75.3, 1337, 18000 }, + [22] = { 56.8, 73.2, 1337, 18000 }, + [23] = { 57.7, 73, 1337, 18000 }, + [24] = { 52.3, 72.6, 1337, 18000 }, + [25] = { 62.2, 70, 1337, 18000 }, + [26] = { 58.6, 69.9, 1337, 18000 }, + [27] = { 56.7, 66.4, 1337, 18000 }, + [28] = { 53.2, 64.3, 1337, 18000 }, + [29] = { 56.1, 63.9, 1337, 18000 }, + [30] = { 65.4, 63.9, 1337, 18000 }, + [31] = { 62.3, 63.6, 1337, 18000 }, + [32] = { 56.8, 63.5, 1337, 18000 }, + [33] = { 63, 61.9, 1337, 18000 }, + [34] = { 16.3, 93.8, 5602, 300 }, + [35] = { 16.1, 93.8, 5602, 300 }, + [36] = { 15.8, 93.5, 5602, 300 }, + [37] = { 17.1, 91.8, 5602, 300 }, + [38] = { 15.7, 91.8, 5602, 300 }, + [39] = { 15.6, 91.6, 5602, 300 }, + [40] = { 17.3, 91.5, 5602, 300 }, + [41] = { 17.6, 91.3, 5602, 300 }, + [42] = { 15.6, 91.1, 5602, 300 }, + [43] = { 15.1, 90.6, 5602, 300 }, + }, + ["lvl"] = "36-37", + ["rnk"] = "1", + }, + [4852] = { + ["coords"] = { + [1] = { 60.9, 93.1, 1337, 18000 }, + [2] = { 62.6, 91.7, 1337, 18000 }, + [3] = { 63.1, 90.5, 1337, 18000 }, + [4] = { 61.1, 90.2, 1337, 18000 }, + [5] = { 58.9, 90.1, 1337, 18000 }, + [6] = { 56.4, 84.1, 1337, 18000 }, + [7] = { 53.1, 81.7, 1337, 18000 }, + [8] = { 62.4, 81.4, 1337, 18000 }, + [9] = { 65.2, 80.3, 1337, 18000 }, + [10] = { 56.5, 79.9, 1337, 18000 }, + [11] = { 62, 79, 1337, 18000 }, + [12] = { 40.8, 77.7, 1337, 18000 }, + [13] = { 45.3, 76, 1337, 18000 }, + [14] = { 61.4, 75.5, 1337, 18000 }, + [15] = { 58.7, 75.2, 1337, 18000 }, + [16] = { 42.4, 75.2, 1337, 18000 }, + [17] = { 54.2, 73.6, 1337, 18000 }, + [18] = { 57.1, 71.9, 1337, 18000 }, + [19] = { 61.6, 69.6, 1337, 18000 }, + [20] = { 63.7, 63.6, 1337, 18000 }, + [21] = { 53.6, 63.6, 1337, 18000 }, + [22] = { 56.5, 63.2, 1337, 18000 }, + [23] = { 64.4, 62.3, 1337, 18000 }, + }, + ["lvl"] = "37-38", + ["rnk"] = "1", + }, + [4853] = { + ["coords"] = { + [1] = { 35, 31.5, 1337, 18000 }, + [2] = { 30.1, 29.2, 1337, 18000 }, + [3] = { 23.1, 28, 1337, 18000 }, + [4] = { 38.1, 27, 1337, 18000 }, + [5] = { 34.1, 26.1, 1337, 18000 }, + [6] = { 24.6, 26, 1337, 18000 }, + [7] = { 21.5, 25.8, 1337, 604800 }, + [8] = { 29.9, 23.8, 1337, 18000 }, + [9] = { 27.8, 20, 1337, 18000 }, + }, + ["lvl"] = "43-44", + ["rnk"] = "1", + }, + [4854] = { + ["coords"] = { + [1] = { 21.2, 24.8, 1337, 604800 }, + }, + ["lvl"] = "45", + ["rnk"] = "1", + }, + [4855] = { + ["coords"] = { + [1] = { 35, 32.7, 1337, 18000 }, + [2] = { 30.1, 28.2, 1337, 18000 }, + [3] = { 35.1, 28.1, 1337, 18000 }, + [4] = { 37.4, 27.7, 1337, 18000 }, + [5] = { 22.4, 27.6, 1337, 18000 }, + [6] = { 31.9, 27.5, 1337, 18000 }, + [7] = { 36, 27.2, 1337, 18000 }, + [8] = { 33.4, 26, 1337, 18000 }, + [9] = { 25.4, 25.9, 1337, 18000 }, + [10] = { 37.5, 25.9, 1337, 18000 }, + [11] = { 29.8, 25, 1337, 18000 }, + [12] = { 25.6, 24.9, 1337, 18000 }, + [13] = { 22.1, 24.6, 1337, 604800 }, + [14] = { 30.3, 24.6, 1337, 18000 }, + [15] = { 31.2, 24.4, 1337, 18000 }, + [16] = { 26.9, 21.1, 1337, 18000 }, + [17] = { 27, 19.9, 1337, 18000 }, + }, + ["lvl"] = "43-44", + ["rnk"] = "1", + }, + [4856] = { + ["coords"] = { + [1] = { 37.4, 92, 38, 300 }, + [2] = { 34, 91.7, 38, 300 }, + [3] = { 36.1, 91.6, 38, 300 }, + [4] = { 36.6, 91.3, 38, 300 }, + [5] = { 37.1, 91, 38, 300 }, + [6] = { 32.6, 89.5, 38, 300 }, + [7] = { 33.3, 89.5, 38, 300 }, + [8] = { 33, 89, 38, 300 }, + [9] = { 38.1, 85.7, 1337, 300 }, + [10] = { 40.7, 85, 1337, 300 }, + [11] = { 37.8, 81.9, 1337, 300 }, + [12] = { 38.8, 79, 1337, 300 }, + [13] = { 33.4, 78.6, 1337, 300 }, + [14] = { 36.7, 77.7, 1337, 300 }, + [15] = { 37.9, 70.5, 1337, 300 }, + [16] = { 38.3, 66.2, 1337, 300 }, + [17] = { 46.9, 64.3, 1337, 300 }, + [18] = { 49.6, 60.3, 1337, 300 }, + [19] = { 32.9, 59, 1337, 300 }, + [20] = { 43.3, 58.1, 1337, 300 }, + [21] = { 45.7, 56.8, 1337, 300 }, + [22] = { 48.1, 55.2, 1337, 300 }, + [23] = { 25.7, 48, 1337, 300 }, + [24] = { 29.2, 47.8, 1337, 300 }, + [25] = { 27.7, 45.6, 1337, 300 }, + [26] = { 16.5, 94.1, 5602, 300 }, + [27] = { 16.8, 94, 5602, 300 }, + [28] = { 16.5, 93.7, 5602, 300 }, + [29] = { 16.6, 93.4, 5602, 300 }, + [30] = { 16, 93.3, 5602, 300 }, + [31] = { 16.4, 93.2, 5602, 300 }, + [32] = { 16.5, 92.5, 5602, 300 }, + [33] = { 16.5, 92, 5602, 300 }, + [34] = { 17.4, 91.8, 5602, 300 }, + [35] = { 17.7, 91.4, 5602, 300 }, + [36] = { 16, 91.3, 5602, 300 }, + [37] = { 17.1, 91.2, 5602, 300 }, + [38] = { 17.3, 91, 5602, 300 }, + [39] = { 17.6, 90.9, 5602, 300 }, + [40] = { 15.2, 90.1, 5602, 300 }, + [41] = { 15.6, 90.1, 5602, 300 }, + [42] = { 15.4, 89.9, 5602, 300 }, + }, + ["lvl"] = "36-37", + ["rnk"] = "1", + }, + [4857] = { + ["coords"] = { + [1] = { 41.1, 18.9, 1337, 18000 }, + [2] = { 43.2, 17.6, 1337, 18000 }, + [3] = { 40.2, 15.9, 1337, 18000 }, + [4] = { 42.2, 14.5, 1337, 18000 }, + }, + ["fac"] = "AH", + ["lvl"] = "46", + ["rnk"] = "1", + }, + [4860] = { + ["coords"] = { + [1] = { 38.4, 49.3, 1337, 18000 }, + [2] = { 46.3, 46.7, 1337, 18000 }, + [3] = { 41.7, 40.9, 1337, 18000 }, + [4] = { 45.6, 24, 1337, 18000 }, + [5] = { 48.3, 21.5, 1337, 18000 }, + [6] = { 42.8, 21.1, 1337, 18000 }, + [7] = { 39, 18.9, 1337, 18000 }, + [8] = { 43.9, 15.3, 1337, 18000 }, + [9] = { 47.1, 12.9, 1337, 18000 }, + [10] = { 39.9, 8.7, 1337, 18000 }, + [11] = { 42.9, 6.5, 1337, 18000 }, + }, + ["lvl"] = "44", + ["rnk"] = "1", + }, + [4861] = { + ["coords"] = { + [1] = { 40.3, 65.5, 1337, 18000 }, + [2] = { 45.1, 55, 1337, 18000 }, + [3] = { 32.7, 53.1, 1337, 18000 }, + [4] = { 30.4, 47.3, 1337, 18000 }, + [5] = { 32.1, 46, 1337, 18000 }, + [6] = { 30.6, 43.7, 1337, 18000 }, + [7] = { 30.8, 42.5, 1337, 18000 }, + [8] = { 32.2, 41.7, 1337, 18000 }, + }, + ["lvl"] = "38-39", + ["rnk"] = "1", + }, + [4862] = "_", + [4863] = { + ["coords"] = { + [1] = { 36.2, 64.3, 1337, 18000 }, + [2] = { 37.2, 58, 1337, 18000 }, + [3] = { 42.3, 55.4, 1337, 18000 }, + [4] = { 21.5, 24.3, 1337, 604800 }, + }, + ["lvl"] = "39-40", + ["rnk"] = "1", + }, + [4872] = { + ["coords"] = { + [1] = { 39.6, 20, 3, 300 }, + [2] = { 38.5, 18.9, 3, 300 }, + [3] = { 40.7, 16, 3, 300 }, + [4] = { 39.8, 90.6, 38, 300 }, + [5] = { 56.3, 71.3, 1337, 300 }, + [6] = { 51.5, 66.4, 1337, 300 }, + [7] = { 61, 53.6, 1337, 300 }, + [8] = { 18.4, 92.6, 5602, 300 }, + [9] = { 17.9, 92.1, 5602, 300 }, + [10] = { 18.9, 90.7, 5602, 300 }, + }, + ["lvl"] = "38", + ["rnk"] = "1", + }, + [4881] = "_", + [4882] = "_", + [4887] = { + ["coords"] = { + [1] = { 22.4, 41.5, 719, 604800 }, + }, + ["lvl"] = "25", + ["rnk"] = "1", + }, + [4921] = { + ["coords"] = { + [1] = { 66.2, 46.1, 15, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [4926] = { + ["coords"] = { + [1] = { 36.4, 31.9, 15, 30 }, + [2] = { 54.4, 70.5, 17, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [4941] = { + ["coords"] = { + [1] = { 64.8, 50.4, 15, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [4942] = "_", + [4947] = { + ["coords"] = { + [1] = { 67.1, 53.2, 15, 430 }, + [2] = { 69.2, 49.9, 15, 430 }, + [3] = { 68.1, 48.2, 15, 430 }, + [4] = { 65.1, 47.1, 15, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "52", + }, + [4948] = { + ["coords"] = { + [1] = { 68, 48.1, 15, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [4955] = "_", + [4957] = "_", + [4959] = { + ["coords"] = { + [1] = { 76.3, 85.1, 1519, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [4960] = { + ["coords"] = { + [1] = { 80.2, 44.1, 1519, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "32", + }, + [4961] = { + ["coords"] = { + [1] = { 74.3, 59.2, 1519, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "26", + }, + [4963] = { + ["coords"] = { + [1] = { 10.6, 60.8, 11, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [4964] = { + ["coords"] = { + [1] = { 68, 48.7, 15, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [4966] = { + ["coords"] = { + [1] = { 45.3, 24.8, 15, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [4967] = { + ["coords"] = { + [1] = { 66.4, 49.3, 15, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "38", + }, + [4970] = "_", + [4974] = { + ["coords"] = { + [1] = { 63.8, 76.8, 1519, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [4975] = "_", + [4976] = "_", + [4979] = { + ["coords"] = { + [1] = { 70.6, 57.2, 15, 360 }, + [2] = { 71.4, 56.6, 15, 360 }, + [3] = { 71.6, 56.2, 15, 360 }, + [4] = { 71, 56, 15, 360 }, + [5] = { 71.3, 55.7, 15, 360 }, + [6] = { 71.6, 54.3, 15, 360 }, + [7] = { 68, 52.6, 15, 360 }, + [8] = { 68.5, 52.3, 15, 360 }, + [9] = { 68.5, 51.4, 15, 360 }, + [10] = { 66, 50.9, 15, 360 }, + [11] = { 66.3, 50.9, 15, 360 }, + [12] = { 66.3, 50.8, 15, 360 }, + [13] = { 66, 50.8, 15, 360 }, + [14] = { 69.3, 50.2, 15, 360 }, + [15] = { 66.8, 50.1, 15, 360 }, + [16] = { 69.6, 50.1, 15, 360 }, + [17] = { 69.6, 49.8, 15, 360 }, + [18] = { 65.6, 48.6, 15, 360 }, + [19] = { 65.7, 48.5, 15, 360 }, + [20] = { 64.8, 46.9, 15, 360 }, + [21] = { 65, 46.6, 15, 360 }, + [22] = { 64.2, 46, 15, 360 }, + [23] = { 64.3, 45.7, 15, 360 }, + [24] = { 64.3, 45.6, 15, 360 }, + [25] = { 64.5, 45.6, 15, 360 }, + [26] = { 63.8, 45, 15, 360 }, + [27] = { 64, 44.8, 15, 360 }, + }, + ["fac"] = "A", + ["lvl"] = "53-57", + }, + [4981] = { + ["coords"] = { + [1] = { 66.4, 73.5, 1519, 375 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [4982] = { + ["coords"] = { + [1] = { 49.6, 44.5, 1519, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [4984] = { + ["coords"] = { + [1] = { 36.2, 67.6, 1519, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [4985] = "_", + [4986] = "_", + [4987] = "_", + [4988] = "_", + [4989] = "_", + [4990] = "_", + [4991] = "_", + [4992] = "_", + [4993] = "_", + [4994] = "_", + [4995] = { + ["coords"] = { + [1] = { 51.2, 68.4, 1519, 540 }, + [2] = { 51.4, 68.3, 1519, 540 }, + [3] = { 51.6, 68.1, 1519, 540 }, + [4] = { 51.6, 68, 1519, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [4996] = { + ["coords"] = { + [1] = { 52, 66.5, 1519, 540 }, + [2] = { 52.2, 66.4, 1519, 540 }, + [3] = { 52.3, 66.3, 1519, 540 }, + [4] = { 52.4, 66.2, 1519, 540 }, + [5] = { 52.4, 65.8, 1519, 540 }, + [6] = { 52.3, 65.7, 1519, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [4997] = "_", + [4998] = "_", + [4999] = "_", + [5000] = "_", + [5001] = "_", + [5002] = "_", + [5003] = "_", + [5004] = "_", + [5005] = "_", + [5006] = "_", + [5007] = "_", + [5008] = "_", + [5009] = "_", + [5010] = "_", + [5011] = "_", + [5012] = "_", + [5013] = "_", + [5014] = "_", + [5015] = "_", + [5016] = "_", + [5017] = "_", + [5018] = "_", + [5019] = "_", + [5020] = "_", + [5021] = "_", + [5022] = "_", + [5023] = "_", + [5024] = "_", + [5026] = "_", + [5027] = "_", + [5028] = "_", + [5029] = "_", + [5030] = "_", + [5031] = "_", + [5033] = "_", + [5034] = "_", + [5035] = "_", + [5036] = "_", + [5039] = "_", + [5042] = { + ["coords"] = { + [1] = { 52.3, 66, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5043] = { + ["coords"] = { + [1] = { 48.2, 62.2, 1519, 0 }, + }, + ["lvl"] = "20", + }, + [5048] = { + ["coords"] = { + [1] = { 32.3, 43.1, 718, 18000 }, + [2] = { 27.2, 37.5, 718, 18000 }, + [3] = { 26.6, 30.5, 718, 18000 }, + [4] = { 27.3, 28.4, 718, 18000 }, + [5] = { 22.9, 25.5, 718, 18000 }, + [6] = { 33.5, 24.4, 718, 18000 }, + [7] = { 22.7, 24.2, 718, 18000 }, + [8] = { 28.7, 23.7, 718, 18000 }, + [9] = { 30.2, 19.1, 718, 18000 }, + }, + ["lvl"] = "18-19", + ["rnk"] = "1", + }, + [5050] = "_", + [5051] = "_", + [5053] = { + ["coords"] = { + [1] = { 85.8, 83, 718, 300 }, + [2] = { 84.8, 80.6, 718, 300 }, + [3] = { 68.2, 62.3, 718, 18000 }, + [4] = { 69, 59.2, 718, 18000 }, + [5] = { 68, 53.3, 718, 18000 }, + [6] = { 68, 50.7, 718, 18000 }, + [7] = { 63.1, 48, 718, 18000 }, + [8] = { 65.5, 46.9, 718, 18000 }, + [9] = { 61.6, 45.7, 718, 18000 }, + [10] = { 61.7, 41, 718, 18000 }, + [11] = { 37.8, 36.5, 718, 18000 }, + [12] = { 41.1, 34, 718, 18000 }, + [13] = { 60.5, 33.8, 718, 18000 }, + [14] = { 57.8, 32.4, 718, 18000 }, + [15] = { 54, 28.9, 718, 18000 }, + [16] = { 49.2, 28.2, 718, 18000 }, + }, + ["lvl"] = "18-19", + }, + [5055] = { + ["coords"] = { + [1] = { 75, 95.2, 718, 18000 }, + [2] = { 74.5, 95.2, 718, 18000 }, + [3] = { 74.2, 94.7, 718, 18000 }, + [4] = { 75, 94.4, 718, 18000 }, + [5] = { 74.2, 94.1, 718, 18000 }, + [6] = { 74.6, 93.7, 718, 18000 }, + [7] = { 82.7, 89.3, 718, 18000 }, + [8] = { 81.4, 87.5, 718, 18000 }, + [9] = { 67.6, 81.5, 718, 18000 }, + [10] = { 67.3, 81.3, 718, 18000 }, + [11] = { 70, 79.6, 718, 18000 }, + [12] = { 70.6, 79.5, 718, 18000 }, + [13] = { 70.2, 79.2, 718, 18000 }, + [14] = { 69.8, 78.8, 718, 18000 }, + [15] = { 70.6, 78.7, 718, 18000 }, + [16] = { 77.3, 70.6, 718, 18000 }, + [17] = { 76.4, 70.6, 718, 18000 }, + [18] = { 76.8, 70.3, 718, 18000 }, + [19] = { 76.6, 69.6, 718, 18000 }, + [20] = { 88.7, 65.6, 718, 18000 }, + [21] = { 88.6, 65.4, 718, 18000 }, + [22] = { 87.9, 64.7, 718, 18000 }, + [23] = { 88.5, 64.7, 718, 18000 }, + [24] = { 92.9, 56.2, 718, 18000 }, + [25] = { 92.4, 55.5, 718, 18000 }, + [26] = { 93.3, 55.4, 718, 18000 }, + [27] = { 62.1, 52, 718, 18000 }, + [28] = { 83.9, 51.9, 718, 18000 }, + [29] = { 61.9, 51.6, 718, 18000 }, + [30] = { 84.1, 51.3, 718, 18000 }, + [31] = { 61.9, 51, 718, 18000 }, + [32] = { 85, 50.5, 718, 18000 }, + [33] = { 85.8, 50.2, 718, 18000 }, + [34] = { 71.8, 48.1, 718, 18000 }, + [35] = { 91.9, 47.9, 718, 18000 }, + [36] = { 61.5, 47.8, 718, 18000 }, + [37] = { 92.6, 47.8, 718, 18000 }, + [38] = { 61.1, 47.6, 718, 18000 }, + [39] = { 92.8, 47.5, 718, 18000 }, + [40] = { 72.1, 47.3, 718, 18000 }, + [41] = { 71.2, 47.2, 718, 18000 }, + [42] = { 61.6, 47.1, 718, 18000 }, + [43] = { 71.6, 47.1, 718, 18000 }, + [44] = { 93.8, 47, 718, 18000 }, + [45] = { 62.1, 47, 718, 18000 }, + [46] = { 68, 46.5, 718, 18000 }, + [47] = { 67.3, 46.3, 718, 18000 }, + [48] = { 68.5, 46, 718, 18000 }, + [49] = { 70.9, 36.1, 718, 18000 }, + [50] = { 70.7, 35.3, 718, 18000 }, + [51] = { 71.2, 35.1, 718, 18000 }, + [52] = { 76.9, 32.6, 718, 18000 }, + [53] = { 76.3, 31.9, 718, 18000 }, + [54] = { 77.4, 31.9, 718, 18000 }, + [55] = { 76.9, 31.9, 718, 18000 }, + [56] = { 89.4, 28, 718, 18000 }, + [57] = { 90.1, 27.8, 718, 18000 }, + [58] = { 89.9, 27.1, 718, 18000 }, + [59] = { 85.2, 26.8, 718, 18000 }, + [60] = { 84.1, 26.4, 718, 18000 }, + [61] = { 89.9, 26.4, 718, 18000 }, + [62] = { 84.9, 26, 718, 18000 }, + [63] = { 84.1, 25.6, 718, 18000 }, + [64] = { 82.1, 23.5, 718, 18000 }, + [65] = { 81.4, 23.5, 718, 18000 }, + [66] = { 81.5, 23.3, 718, 18000 }, + [67] = { 81.7, 22.7, 718, 18000 }, + }, + ["lvl"] = "19-20", + }, + [5056] = { + ["coords"] = { + [1] = { 85.5, 81, 718, 300 }, + [2] = { 76.2, 75, 718, 18000 }, + [3] = { 73.7, 69.9, 718, 18000 }, + [4] = { 80.1, 66.6, 718, 18000 }, + [5] = { 76.4, 66.2, 718, 18000 }, + [6] = { 86.3, 63.1, 718, 18000 }, + [7] = { 82.9, 62, 718, 18000 }, + [8] = { 88.8, 55.5, 718, 18000 }, + [9] = { 97.7, 50.3, 718, 18000 }, + [10] = { 84.1, 46.8, 718, 18000 }, + [11] = { 67.3, 46, 718, 18000 }, + [12] = { 94.1, 43.5, 718, 18000 }, + }, + ["lvl"] = "20-21", + ["rnk"] = "1", + }, + [5057] = { + ["coords"] = { + [1] = { 36.1, 54.6, 15, 360 }, + [2] = { 35.8, 54.6, 15, 300 }, + [3] = { 36.3, 54.4, 15, 360 }, + [4] = { 35.6, 54.4, 15, 360 }, + [5] = { 35.9, 54.2, 15, 360 }, + [6] = { 35.2, 54.2, 15, 360 }, + [7] = { 36.4, 54, 15, 360 }, + [8] = { 35.8, 54, 15, 300 }, + [9] = { 36.2, 54, 15, 300 }, + [10] = { 35.4, 54, 15, 300 }, + [11] = { 35.6, 53.9, 15, 360 }, + [12] = { 36.1, 53.8, 15, 360 }, + [13] = { 35.5, 53.7, 15, 300 }, + [14] = { 36.3, 53.7, 15, 360 }, + [15] = { 35.8, 53.7, 15, 360 }, + [16] = { 36.2, 53.6, 15, 360 }, + [17] = { 35.3, 53.5, 15, 360 }, + [18] = { 35.9, 53.5, 15, 300 }, + [19] = { 54.2, 82.3, 17, 360 }, + [20] = { 54.1, 82.2, 17, 300 }, + [21] = { 54.3, 82.2, 17, 360 }, + [22] = { 54, 82.1, 17, 360 }, + [23] = { 54.1, 82, 17, 360 }, + [24] = { 53.7, 82, 17, 360 }, + [25] = { 54.4, 81.9, 17, 360 }, + [26] = { 54.1, 81.9, 17, 300 }, + [27] = { 54.3, 81.9, 17, 300 }, + [28] = { 53.8, 81.9, 17, 300 }, + [29] = { 54, 81.9, 17, 360 }, + [30] = { 54.2, 81.9, 17, 360 }, + [31] = { 53.9, 81.8, 17, 300 }, + [32] = { 54.3, 81.8, 17, 360 }, + [33] = { 54, 81.8, 17, 360 }, + [34] = { 54.3, 81.7, 17, 360 }, + [35] = { 53.8, 81.7, 17, 360 }, + [36] = { 54.1, 81.7, 17, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "37", + }, + [5058] = { + ["coords"] = { + [1] = { 71.6, 34.7, 209, 604800 }, + }, + ["lvl"] = "20-21", + }, + [5059] = "_", + [5060] = "_", + [5061] = "_", + [5062] = "_", + [5063] = "_", + [5064] = "_", + [5082] = { + ["coords"] = { + [1] = { 10.8, 60.4, 11, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5084] = "_", + [5087] = { + ["coords"] = { + [1] = { 36.5, 30.8, 15, 30 }, + [2] = { 54.4, 69.9, 17, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [5088] = { + ["coords"] = { + [1] = { 32.4, 47.4, 15, 280 }, + [2] = { 52.3, 78.5, 17, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "38", + }, + [5089] = { + ["coords"] = { + [1] = { 35.4, 53.9, 15, 25 }, + [2] = { 53.9, 81.9, 17, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "38", + }, + [5097] = { + ["coords"] = {}, + ["lvl"] = "24-25", + ["rnk"] = "1", + }, + [5098] = "_", + [5103] = { + ["coords"] = { + [1] = { 36, 65.2, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5104] = "_", + [5105] = "_", + [5111] = { + ["coords"] = { + [1] = { 18.2, 51.4, 1537, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5113] = { + ["coords"] = { + [1] = { 70.3, 90.7, 1537, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [5117] = { + ["coords"] = { + [1] = { 69.9, 82.9, 1537, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [5131] = "_", + [5134] = { + ["coords"] = { + [1] = { 43.1, 17.5, 2597, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [5135] = { + ["coords"] = { + [1] = { 42.8, 16.9, 2597, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [5139] = { + ["coords"] = { + [1] = { 42.8, 16.6, 2597, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [5144] = { + ["coords"] = { + [1] = { 27.2, 8.3, 1537, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [5150] = { + ["coords"] = { + [1] = { 55.1, 58.3, 1537, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [5157] = { + ["coords"] = { + [1] = { 59.8, 45.4, 1537, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + ["rnk"] = "1", + }, + [5159] = { + ["coords"] = { + [1] = { 60.1, 36.4, 1537, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [5161] = { + ["coords"] = { + [1] = { 48.1, 6.9, 1537, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [5174] = { + ["coords"] = { + [1] = { 23.4, 28.2, 1, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [5187] = "_", + [5192] = "_", + [5193] = { + ["coords"] = { + [1] = { 64, 77.5, 1519, 375 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [5198] = { + ["coords"] = { + [1] = { 60.5, 38, 618, 500 }, + }, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [5201] = "_", + [5204] = { + ["coords"] = { + [1] = { 50.1, 68, 1497, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "29", + }, + [5226] = { + ["coords"] = { + [1] = { 56.7, 52.1, 1477, 18000 }, + [2] = { 42.7, 51.5, 1477, 18000 }, + [3] = { 57, 51.1, 1477, 18000 }, + [4] = { 43.4, 50.9, 1477, 18000 }, + [5] = { 49.9, 47.6, 1477, 18000 }, + [6] = { 50.3, 46.4, 1477, 18000 }, + [7] = { 49.9, 34.5, 1477, 18000 }, + [8] = { 58.9, 31, 1477, 18000 }, + [9] = { 44.5, 15.9, 1477, 18000 }, + [10] = { 49.9, 11, 1477, 18000 }, + [11] = { 47.3, 7.4, 1477, 18000 }, + [12] = { 48.1, 7.3, 1477, 18000 }, + }, + ["lvl"] = "47-48", + ["rnk"] = "1", + }, + [5228] = { + ["coords"] = { + [1] = { 56.2, 51.9, 1477, 18000 }, + [2] = { 43.4, 51.6, 1477, 18000 }, + [3] = { 49.5, 46.4, 1477, 18000 }, + [4] = { 42.9, 40.4, 1477, 18000 }, + [5] = { 56.9, 40.2, 1477, 18000 }, + [6] = { 56, 40, 1477, 18000 }, + [7] = { 57, 39.1, 1477, 18000 }, + }, + ["lvl"] = "47-48", + ["rnk"] = "1", + }, + [5229] = { + ["coords"] = { + [1] = { 80.5, 35.6, 357, 300 }, + [2] = { 80.9, 35.2, 357, 300 }, + [3] = { 80.3, 35, 357, 300 }, + [4] = { 76.1, 35, 357, 300 }, + [5] = { 80.2, 34.9, 357, 300 }, + [6] = { 79.4, 34.9, 357, 300 }, + [7] = { 75.1, 34.9, 357, 300 }, + [8] = { 77.5, 34.8, 357, 300 }, + [9] = { 75.6, 34.8, 357, 300 }, + [10] = { 79.6, 34.7, 357, 300 }, + [11] = { 79.7, 34.2, 357, 300 }, + [12] = { 75.7, 34, 357, 300 }, + [13] = { 75.4, 33.9, 357, 300 }, + [14] = { 78.6, 33.7, 357, 300 }, + [15] = { 79.2, 33.7, 357, 300 }, + [16] = { 75.6, 33.5, 357, 300 }, + [17] = { 75.5, 33.4, 357, 300 }, + [18] = { 76.6, 33.4, 357, 300 }, + [19] = { 76.6, 33.1, 357, 300 }, + [20] = { 75.4, 33, 357, 300 }, + [21] = { 76.3, 32.9, 357, 300 }, + [22] = { 75.1, 32.5, 357, 300 }, + [23] = { 75, 32.4, 357, 300 }, + [24] = { 76.2, 29.8, 357, 300 }, + [25] = { 76.6, 29.8, 357, 300 }, + [26] = { 75.4, 29.7, 357, 300 }, + [27] = { 75.2, 29.6, 357, 300 }, + [28] = { 74.7, 29.6, 357, 300 }, + [29] = { 74.8, 29.3, 357, 300 }, + [30] = { 75.3, 29.1, 357, 300 }, + [31] = { 75.2, 28.5, 357, 300 }, + [32] = { 74.6, 28.4, 357, 300 }, + [33] = { 74.6, 27.9, 357, 300 }, + [34] = { 74.5, 26.8, 357, 300 }, + [35] = { 74.8, 26.6, 357, 300 }, + [36] = { 75.2, 26.3, 357, 300 }, + [37] = { 75.4, 26.3, 357, 300 }, + [38] = { 74.8, 25.9, 357, 300 }, + [39] = { 74.9, 25.6, 357, 300 }, + [40] = { 75.1, 25.6, 357, 300 }, + [41] = { 75.1, 25.1, 357, 300 }, + [42] = { 74.9, 25, 357, 300 }, + }, + ["lvl"] = "40-41", + }, + [5231] = "_", + [5232] = { + ["coords"] = { + [1] = { 58.6, 65.1, 357, 300 }, + [2] = { 58.6, 64.9, 357, 300 }, + [3] = { 59.3, 63.6, 357, 300 }, + [4] = { 60.4, 58.2, 357, 300 }, + [5] = { 60.5, 57.7, 357, 300 }, + [6] = { 59.3, 57.5, 357, 300 }, + [7] = { 59.7, 57.3, 357, 300 }, + [8] = { 60.4, 57.1, 357, 300 }, + [9] = { 60.8, 56.8, 357, 300 }, + [10] = { 61.4, 56.2, 357, 300 }, + [11] = { 61.9, 55.2, 357, 300 }, + [12] = { 61.4, 55, 357, 300 }, + [13] = { 60.4, 54.5, 357, 300 }, + [14] = { 61.6, 54.4, 357, 300 }, + [15] = { 61.8, 54, 357, 300 }, + [16] = { 80.4, 34.5, 357, 300 }, + [17] = { 74.8, 27.4, 357, 300 }, + [18] = { 80.5, 35.6, 357, 300 }, + [19] = { 80.9, 35.2, 357, 300 }, + [20] = { 80.3, 35, 357, 300 }, + [21] = { 76.1, 35, 357, 300 }, + [22] = { 80.2, 34.9, 357, 300 }, + [23] = { 79.4, 34.9, 357, 300 }, + [24] = { 75.1, 34.9, 357, 300 }, + [25] = { 77.5, 34.8, 357, 300 }, + [26] = { 75.6, 34.8, 357, 300 }, + [27] = { 79.6, 34.7, 357, 300 }, + [28] = { 79.7, 34.2, 357, 300 }, + [29] = { 75.7, 34, 357, 300 }, + [30] = { 75.4, 33.9, 357, 300 }, + [31] = { 78.6, 33.7, 357, 300 }, + [32] = { 79.2, 33.7, 357, 300 }, + [33] = { 75.6, 33.5, 357, 300 }, + [34] = { 75.5, 33.4, 357, 300 }, + [35] = { 76.6, 33.4, 357, 300 }, + [36] = { 76.6, 33.1, 357, 300 }, + [37] = { 75.4, 33, 357, 300 }, + [38] = { 76.3, 32.9, 357, 300 }, + [39] = { 75.1, 32.5, 357, 300 }, + [40] = { 75, 32.4, 357, 300 }, + [41] = { 76.2, 29.8, 357, 300 }, + [42] = { 76.6, 29.8, 357, 300 }, + [43] = { 75.4, 29.7, 357, 300 }, + [44] = { 75.2, 29.6, 357, 300 }, + [45] = { 74.7, 29.6, 357, 300 }, + [46] = { 74.8, 29.3, 357, 300 }, + [47] = { 75.3, 29.1, 357, 300 }, + [48] = { 75.2, 28.5, 357, 300 }, + [49] = { 74.6, 28.4, 357, 300 }, + [50] = { 74.6, 27.9, 357, 300 }, + [51] = { 74.5, 26.8, 357, 300 }, + [52] = { 74.8, 26.6, 357, 300 }, + [53] = { 75.2, 26.3, 357, 300 }, + [54] = { 75.4, 26.3, 357, 300 }, + [55] = { 74.8, 25.9, 357, 300 }, + [56] = { 74.9, 25.6, 357, 300 }, + [57] = { 75.1, 25.6, 357, 300 }, + [58] = { 75.1, 25.1, 357, 300 }, + [59] = { 74.9, 25, 357, 300 }, + }, + ["lvl"] = "42-43", + }, + [5234] = { + ["coords"] = { + [1] = { 58.9, 65, 357, 300 }, + [2] = { 59.6, 64.5, 357, 300 }, + [3] = { 59.3, 64.4, 357, 300 }, + [4] = { 58.9, 64.1, 357, 300 }, + [5] = { 59.9, 62.9, 357, 300 }, + [6] = { 59.7, 62.7, 357, 300 }, + [7] = { 60.7, 58.5, 357, 300 }, + [8] = { 60.9, 58, 357, 300 }, + [9] = { 60.6, 57.6, 357, 300 }, + [10] = { 61.1, 57.5, 357, 300 }, + [11] = { 59.7, 56.6, 357, 300 }, + [12] = { 61.1, 56.5, 357, 300 }, + [13] = { 61.8, 55.7, 357, 300 }, + [14] = { 61.1, 55.5, 357, 300 }, + [15] = { 61.5, 55.5, 357, 300 }, + [16] = { 60.8, 55.2, 357, 300 }, + [17] = { 61.8, 54.7, 357, 300 }, + [18] = { 60.7, 54.6, 357, 300 }, + [19] = { 61.8, 54.5, 357, 300 }, + }, + ["lvl"] = "43-44", + }, + [5235] = { + ["coords"] = { + [1] = { 78.3, 46.8, 8, 900 }, + [2] = { 75.1, 42.9, 8, 900 }, + }, + ["lvl"] = "45-46", + ["rnk"] = "1", + }, + [5236] = { + ["coords"] = { + [1] = { 62.1, 73.4, 357, 300 }, + [2] = { 58.9, 73.4, 357, 300 }, + [3] = { 59.2, 73.1, 357, 300 }, + [4] = { 62.1, 73.1, 357, 300 }, + [5] = { 60.7, 72.8, 357, 300 }, + [6] = { 58.6, 72.7, 357, 300 }, + [7] = { 57.5, 72.6, 357, 300 }, + [8] = { 58.5, 72.4, 357, 300 }, + [9] = { 58.2, 71.8, 357, 300 }, + [10] = { 59.1, 71.6, 357, 300 }, + [11] = { 61.4, 71, 357, 300 }, + [12] = { 58.3, 70.9, 357, 300 }, + [13] = { 60.4, 70.8, 357, 300 }, + [14] = { 59.6, 70.4, 357, 300 }, + [15] = { 57.8, 70.2, 357, 300 }, + [16] = { 60, 70, 357, 300 }, + [17] = { 59, 69.9, 357, 300 }, + [18] = { 60.8, 69.5, 357, 300 }, + [19] = { 62.9, 69.5, 357, 300 }, + [20] = { 58.6, 69.2, 357, 300 }, + [21] = { 62.5, 69.1, 357, 300 }, + [22] = { 62.9, 69, 357, 300 }, + [23] = { 63.7, 68.8, 357, 300 }, + [24] = { 62.1, 68.7, 357, 300 }, + [25] = { 61.2, 68.7, 357, 300 }, + [26] = { 60.8, 68.6, 357, 300 }, + [27] = { 59.6, 68.6, 357, 300 }, + [28] = { 64, 68.6, 357, 300 }, + [29] = { 59.5, 68.4, 357, 300 }, + [30] = { 59.3, 68.2, 357, 300 }, + [31] = { 60.5, 68.2, 357, 300 }, + [32] = { 59.8, 68.1, 357, 300 }, + [33] = { 58.4, 68.1, 357, 300 }, + [34] = { 62.4, 68.1, 357, 300 }, + [35] = { 61, 67.9, 357, 300 }, + [36] = { 61, 67.6, 357, 300 }, + [37] = { 58.4, 67.5, 357, 300 }, + [38] = { 60.3, 67.2, 357, 300 }, + [39] = { 59.7, 67.1, 357, 300 }, + [40] = { 59.9, 67, 357, 300 }, + [41] = { 60, 66.4, 357, 300 }, + [42] = { 60.7, 66.1, 357, 300 }, + [43] = { 59.5, 66, 357, 300 }, + [44] = { 60.3, 65.9, 357, 300 }, + [45] = { 60.4, 64.8, 357, 300 }, + [46] = { 60, 63.3, 357, 300 }, + }, + ["lvl"] = "44-45", + }, + [5237] = { + ["coords"] = { + [1] = { 80.5, 35.6, 357, 300 }, + [2] = { 80.9, 35.2, 357, 300 }, + [3] = { 80.3, 35, 357, 300 }, + [4] = { 76.1, 35, 357, 300 }, + [5] = { 80.2, 34.9, 357, 300 }, + [6] = { 79.4, 34.9, 357, 300 }, + [7] = { 75.1, 34.9, 357, 300 }, + [8] = { 77.5, 34.8, 357, 300 }, + [9] = { 75.6, 34.8, 357, 300 }, + [10] = { 79.6, 34.7, 357, 300 }, + [11] = { 79.7, 34.2, 357, 300 }, + [12] = { 75.7, 34, 357, 300 }, + [13] = { 75.4, 33.9, 357, 300 }, + [14] = { 78.6, 33.7, 357, 300 }, + [15] = { 79.2, 33.7, 357, 300 }, + [16] = { 75.6, 33.5, 357, 300 }, + [17] = { 75.5, 33.4, 357, 300 }, + [18] = { 76.6, 33.4, 357, 300 }, + [19] = { 76.6, 33.1, 357, 300 }, + [20] = { 75.4, 33, 357, 300 }, + [21] = { 76.3, 32.9, 357, 300 }, + [22] = { 75.1, 32.5, 357, 300 }, + [23] = { 75, 32.4, 357, 300 }, + [24] = { 76.2, 29.8, 357, 300 }, + [25] = { 76.6, 29.8, 357, 300 }, + [26] = { 75.4, 29.7, 357, 300 }, + [27] = { 75.2, 29.6, 357, 300 }, + [28] = { 74.7, 29.6, 357, 300 }, + [29] = { 74.8, 29.3, 357, 300 }, + [30] = { 75.3, 29.1, 357, 300 }, + [31] = { 75.2, 28.5, 357, 300 }, + [32] = { 74.6, 28.4, 357, 300 }, + [33] = { 74.6, 27.9, 357, 300 }, + [34] = { 74.5, 26.8, 357, 300 }, + [35] = { 74.8, 26.6, 357, 300 }, + [36] = { 75.2, 26.3, 357, 300 }, + [37] = { 75.4, 26.3, 357, 300 }, + [38] = { 74.8, 25.9, 357, 300 }, + [39] = { 74.9, 25.6, 357, 300 }, + [40] = { 75.1, 25.6, 357, 300 }, + [41] = { 75.1, 25.1, 357, 300 }, + [42] = { 74.9, 25, 357, 300 }, + }, + ["lvl"] = "41-42", + }, + [5238] = { + ["coords"] = { + [1] = { 62.1, 73.4, 357, 300 }, + [2] = { 58.9, 73.4, 357, 300 }, + [3] = { 59.2, 73.1, 357, 300 }, + [4] = { 62.1, 73.1, 357, 300 }, + [5] = { 60.7, 72.8, 357, 300 }, + [6] = { 58.6, 72.7, 357, 300 }, + [7] = { 57.5, 72.6, 357, 300 }, + [8] = { 58.5, 72.4, 357, 300 }, + [9] = { 58.2, 71.8, 357, 300 }, + [10] = { 59.1, 71.6, 357, 300 }, + [11] = { 61.4, 71, 357, 300 }, + [12] = { 58.3, 70.9, 357, 300 }, + [13] = { 60.4, 70.8, 357, 300 }, + [14] = { 59.6, 70.4, 357, 300 }, + [15] = { 57.8, 70.2, 357, 300 }, + [16] = { 60, 70, 357, 300 }, + [17] = { 59, 69.9, 357, 300 }, + [18] = { 60.8, 69.5, 357, 300 }, + [19] = { 62.9, 69.5, 357, 300 }, + [20] = { 58.6, 69.2, 357, 300 }, + [21] = { 62.5, 69.1, 357, 300 }, + [22] = { 62.9, 69, 357, 300 }, + [23] = { 63.7, 68.8, 357, 300 }, + [24] = { 62.1, 68.7, 357, 300 }, + [25] = { 61.2, 68.7, 357, 300 }, + [26] = { 60.8, 68.6, 357, 300 }, + [27] = { 59.6, 68.6, 357, 300 }, + [28] = { 64, 68.6, 357, 300 }, + [29] = { 59.5, 68.4, 357, 300 }, + [30] = { 59.3, 68.2, 357, 300 }, + [31] = { 60.5, 68.2, 357, 300 }, + [32] = { 59.8, 68.1, 357, 300 }, + [33] = { 58.4, 68.1, 357, 300 }, + [34] = { 62.4, 68.1, 357, 300 }, + [35] = { 61, 67.9, 357, 300 }, + [36] = { 61, 67.6, 357, 300 }, + [37] = { 58.4, 67.5, 357, 300 }, + [38] = { 60.3, 67.2, 357, 300 }, + [39] = { 59.7, 67.1, 357, 300 }, + [40] = { 59.9, 67, 357, 300 }, + [41] = { 60, 66.4, 357, 300 }, + [42] = { 60.7, 66.1, 357, 300 }, + [43] = { 59.5, 66, 357, 300 }, + [44] = { 60.3, 65.9, 357, 300 }, + [45] = { 60.4, 64.8, 357, 300 }, + [46] = { 60, 63.3, 357, 300 }, + }, + ["lvl"] = "45-46", + }, + [5239] = { + ["coords"] = { + [1] = { 62.1, 73.4, 357, 300 }, + [2] = { 58.9, 73.4, 357, 300 }, + [3] = { 59.2, 73.1, 357, 300 }, + [4] = { 62.1, 73.1, 357, 300 }, + [5] = { 60.7, 72.8, 357, 300 }, + [6] = { 58.6, 72.7, 357, 300 }, + [7] = { 57.5, 72.6, 357, 300 }, + [8] = { 58.5, 72.4, 357, 300 }, + [9] = { 58.2, 71.8, 357, 300 }, + [10] = { 59.1, 71.6, 357, 300 }, + [11] = { 61.4, 71, 357, 300 }, + [12] = { 58.3, 70.9, 357, 300 }, + [13] = { 60.4, 70.8, 357, 300 }, + [14] = { 59.6, 70.4, 357, 300 }, + [15] = { 57.8, 70.2, 357, 300 }, + [16] = { 60, 70, 357, 300 }, + [17] = { 59, 69.9, 357, 300 }, + [18] = { 60.8, 69.5, 357, 300 }, + [19] = { 62.9, 69.5, 357, 300 }, + [20] = { 58.6, 69.2, 357, 300 }, + [21] = { 62.5, 69.1, 357, 300 }, + [22] = { 62.9, 69, 357, 300 }, + [23] = { 63.7, 68.8, 357, 300 }, + [24] = { 62.1, 68.7, 357, 300 }, + [25] = { 61.2, 68.7, 357, 300 }, + [26] = { 60.8, 68.6, 357, 300 }, + [27] = { 59.6, 68.6, 357, 300 }, + [28] = { 64, 68.6, 357, 300 }, + [29] = { 59.5, 68.4, 357, 300 }, + [30] = { 59.3, 68.2, 357, 300 }, + [31] = { 60.5, 68.2, 357, 300 }, + [32] = { 59.8, 68.1, 357, 300 }, + [33] = { 58.4, 68.1, 357, 300 }, + [34] = { 62.4, 68.1, 357, 300 }, + [35] = { 61, 67.9, 357, 300 }, + [36] = { 61, 67.6, 357, 300 }, + [37] = { 58.4, 67.5, 357, 300 }, + [38] = { 60.3, 67.2, 357, 300 }, + [39] = { 59.7, 67.1, 357, 300 }, + [40] = { 59.9, 67, 357, 300 }, + [41] = { 60, 66.4, 357, 300 }, + [42] = { 60.7, 66.1, 357, 300 }, + [43] = { 59.5, 66, 357, 300 }, + [44] = { 60.3, 65.9, 357, 300 }, + [45] = { 60.4, 64.8, 357, 300 }, + [46] = { 60, 63.3, 357, 300 }, + }, + ["lvl"] = "45-46", + }, + [5240] = { + ["coords"] = { + [1] = { 58.1, 73.4, 357, 300 }, + [2] = { 61.3, 72.3, 357, 300 }, + [3] = { 58, 72.3, 357, 300 }, + [4] = { 60.7, 71.3, 357, 300 }, + [5] = { 59.1, 71.2, 357, 300 }, + [6] = { 59.2, 69.7, 357, 300 }, + [7] = { 58.4, 66.6, 357, 300 }, + [8] = { 59.5, 57, 357, 300 }, + [9] = { 58.9, 65, 357, 300 }, + [10] = { 59.6, 64.5, 357, 300 }, + [11] = { 59.3, 64.4, 357, 300 }, + [12] = { 58.9, 64.1, 357, 300 }, + [13] = { 59.9, 62.9, 357, 300 }, + [14] = { 59.7, 62.7, 357, 300 }, + [15] = { 60.7, 58.5, 357, 300 }, + [16] = { 60.9, 58, 357, 300 }, + [17] = { 60.6, 57.6, 357, 300 }, + [18] = { 61.1, 57.5, 357, 300 }, + [19] = { 59.7, 56.6, 357, 300 }, + [20] = { 61.1, 56.5, 357, 300 }, + [21] = { 61.8, 55.7, 357, 300 }, + [22] = { 61.1, 55.5, 357, 300 }, + [23] = { 61.5, 55.5, 357, 300 }, + [24] = { 60.8, 55.2, 357, 300 }, + [25] = { 61.8, 54.7, 357, 300 }, + [26] = { 60.7, 54.6, 357, 300 }, + [27] = { 61.8, 54.5, 357, 300 }, + }, + ["lvl"] = "43-44", + }, + [5241] = { + ["coords"] = { + [1] = { 61.4, 73.3, 357, 300 }, + [2] = { 61, 73.2, 357, 300 }, + [3] = { 60.7, 72.2, 357, 300 }, + [4] = { 59, 71.8, 357, 300 }, + [5] = { 57.9, 71.6, 357, 300 }, + [6] = { 61, 71.3, 357, 300 }, + [7] = { 61.4, 69.2, 357, 300 }, + [8] = { 61.2, 69.1, 357, 300 }, + [9] = { 63.9, 68.9, 357, 300 }, + [10] = { 62.9, 68.6, 357, 300 }, + [11] = { 63, 67.9, 357, 300 }, + [12] = { 61.9, 67.6, 357, 300 }, + [13] = { 62, 67.4, 357, 300 }, + [14] = { 60.9, 66.8, 357, 300 }, + [15] = { 60.7, 66.6, 357, 300 }, + [16] = { 60, 65.4, 357, 300 }, + }, + ["lvl"] = "46-47", + }, + [5245] = { + ["coords"] = { + [1] = { 72.4, 63.6, 357, 300 }, + [2] = { 74.5, 63.5, 357, 300 }, + [3] = { 74.8, 63.1, 357, 300 }, + [4] = { 75.7, 62.9, 357, 300 }, + [5] = { 72.8, 62.9, 357, 300 }, + [6] = { 73.8, 62.9, 357, 300 }, + [7] = { 74.2, 62.3, 357, 300 }, + [8] = { 73.2, 62.2, 357, 300 }, + [9] = { 75.9, 61.6, 357, 300 }, + [10] = { 76.6, 60.1, 357, 300 }, + }, + ["lvl"] = "44-45", + }, + [5246] = { + ["coords"] = { + [1] = { 76.8, 63.2, 357, 300 }, + [2] = { 75.1, 62, 357, 300 }, + [3] = { 73.8, 61.5, 357, 300 }, + [4] = { 72.8, 61.5, 357, 300 }, + [5] = { 73.4, 60.9, 357, 300 }, + [6] = { 74.2, 60.8, 357, 300 }, + [7] = { 75.8, 60, 357, 300 }, + [8] = { 74.6, 60, 357, 300 }, + [9] = { 75.1, 59.6, 357, 300 }, + [10] = { 76.2, 59.2, 357, 300 }, + }, + ["lvl"] = "44-45", + }, + [5249] = { + ["coords"] = { + [1] = { 75.5, 55.1, 357, 300 }, + [2] = { 75.4, 55.1, 357, 300 }, + [3] = { 71.3, 55, 357, 300 }, + [4] = { 71.8, 55, 357, 300 }, + [5] = { 71, 54.9, 357, 300 }, + [6] = { 75.4, 54.8, 357, 300 }, + [7] = { 75.2, 54.4, 357, 300 }, + [8] = { 71.3, 54.4, 357, 300 }, + [9] = { 70.4, 54.4, 357, 300 }, + [10] = { 75.6, 54.3, 357, 300 }, + [11] = { 70.6, 54.2, 357, 300 }, + [12] = { 76.9, 54.2, 357, 300 }, + [13] = { 75.6, 54.2, 357, 300 }, + [14] = { 76.2, 54.2, 357, 300 }, + [15] = { 71.5, 54.2, 357, 300 }, + [16] = { 75.5, 54.1, 357, 300 }, + [17] = { 71.6, 54.1, 357, 300 }, + [18] = { 76.9, 54.1, 357, 300 }, + [19] = { 70, 54.1, 357, 300 }, + [20] = { 75.9, 54, 357, 300 }, + [21] = { 76.2, 54, 357, 300 }, + [22] = { 71.3, 53.8, 357, 300 }, + [23] = { 69.8, 53.6, 357, 300 }, + [24] = { 71.8, 53.6, 357, 300 }, + [25] = { 71, 53.5, 357, 300 }, + [26] = { 75.6, 53.5, 357, 300 }, + [27] = { 75.7, 53.4, 357, 300 }, + [28] = { 70.6, 53.4, 357, 300 }, + [29] = { 70.5, 53.3, 357, 300 }, + [30] = { 70.5, 53.2, 357, 300 }, + [31] = { 75.7, 53.2, 357, 300 }, + [32] = { 70, 53, 357, 300 }, + [33] = { 70.9, 52.9, 357, 300 }, + [34] = { 70.3, 52.8, 357, 300 }, + [35] = { 70.4, 52.2, 357, 300 }, + [36] = { 70.5, 51.4, 357, 300 }, + [37] = { 69.4, 51.3, 357, 300 }, + [38] = { 69.8, 51.2, 357, 300 }, + [39] = { 70.4, 51, 357, 300 }, + [40] = { 69.9, 51, 357, 300 }, + [41] = { 69.7, 50.9, 357, 300 }, + [42] = { 69.4, 50.8, 357, 300 }, + [43] = { 72.3, 40, 357, 300 }, + [44] = { 72.9, 39.9, 357, 300 }, + [45] = { 73.2, 39.8, 357, 300 }, + [46] = { 72.7, 39.4, 357, 300 }, + [47] = { 72.3, 39.3, 357, 300 }, + [48] = { 72.7, 39.2, 357, 300 }, + [49] = { 73.2, 39.2, 357, 300 }, + [50] = { 72.8, 39.2, 357, 300 }, + [51] = { 72.3, 38.5, 357, 300 }, + [52] = { 71.9, 38.5, 357, 300 }, + [53] = { 72.8, 38.4, 357, 300 }, + [54] = { 72.4, 37.9, 357, 300 }, + [55] = { 72.5, 37.8, 357, 300 }, + [56] = { 72.8, 37.7, 357, 300 }, + [57] = { 72.4, 37.7, 357, 300 }, + [58] = { 72, 37.6, 357, 300 }, + [59] = { 72.1, 37.4, 357, 300 }, + [60] = { 71.9, 37.3, 357, 300 }, + [61] = { 73.7, 37.3, 357, 300 }, + [62] = { 72, 37.2, 357, 300 }, + [63] = { 72.4, 37.2, 357, 300 }, + [64] = { 72.8, 37.1, 357, 300 }, + [65] = { 73.2, 37.1, 357, 300 }, + [66] = { 72, 36.8, 357, 300 }, + [67] = { 71.9, 36.8, 357, 300 }, + [68] = { 72.2, 36.7, 357, 300 }, + [69] = { 72.1, 36.5, 357, 300 }, + [70] = { 72.8, 36.3, 357, 300 }, + [71] = { 73.2, 36.3, 357, 300 }, + [72] = { 72.9, 35.8, 357, 300 }, + [73] = { 72.4, 35.6, 357, 300 }, + [74] = { 73.2, 35.6, 357, 300 }, + }, + ["lvl"] = "40-41", + }, + [5251] = { + ["coords"] = { + [1] = { 75.5, 55.1, 357, 300 }, + [2] = { 75.4, 55.1, 357, 300 }, + [3] = { 71.3, 55, 357, 300 }, + [4] = { 71.8, 55, 357, 300 }, + [5] = { 71, 54.9, 357, 300 }, + [6] = { 75.4, 54.8, 357, 300 }, + [7] = { 75.2, 54.4, 357, 300 }, + [8] = { 71.3, 54.4, 357, 300 }, + [9] = { 70.4, 54.4, 357, 300 }, + [10] = { 75.6, 54.3, 357, 300 }, + [11] = { 70.6, 54.2, 357, 300 }, + [12] = { 76.9, 54.2, 357, 300 }, + [13] = { 75.6, 54.2, 357, 300 }, + [14] = { 76.2, 54.2, 357, 300 }, + [15] = { 71.5, 54.2, 357, 300 }, + [16] = { 75.5, 54.1, 357, 300 }, + [17] = { 71.6, 54.1, 357, 300 }, + [18] = { 76.9, 54.1, 357, 300 }, + [19] = { 70, 54.1, 357, 300 }, + [20] = { 75.9, 54, 357, 300 }, + [21] = { 76.2, 54, 357, 300 }, + [22] = { 71.3, 53.8, 357, 300 }, + [23] = { 69.8, 53.6, 357, 300 }, + [24] = { 71.8, 53.6, 357, 300 }, + [25] = { 71, 53.5, 357, 300 }, + [26] = { 75.6, 53.5, 357, 300 }, + [27] = { 75.7, 53.4, 357, 300 }, + [28] = { 70.6, 53.4, 357, 300 }, + [29] = { 70.5, 53.3, 357, 300 }, + [30] = { 70.5, 53.2, 357, 300 }, + [31] = { 75.7, 53.2, 357, 300 }, + [32] = { 70, 53, 357, 300 }, + [33] = { 70.9, 52.9, 357, 300 }, + [34] = { 70.3, 52.8, 357, 300 }, + [35] = { 70.4, 52.2, 357, 300 }, + [36] = { 70.5, 51.4, 357, 300 }, + [37] = { 69.4, 51.3, 357, 300 }, + [38] = { 69.8, 51.2, 357, 300 }, + [39] = { 70.4, 51, 357, 300 }, + [40] = { 69.9, 51, 357, 300 }, + [41] = { 69.7, 50.9, 357, 300 }, + [42] = { 69.4, 50.8, 357, 300 }, + [43] = { 72.3, 40, 357, 300 }, + [44] = { 72.9, 39.9, 357, 300 }, + [45] = { 73.2, 39.8, 357, 300 }, + [46] = { 72.7, 39.4, 357, 300 }, + [47] = { 72.3, 39.3, 357, 300 }, + [48] = { 72.7, 39.2, 357, 300 }, + [49] = { 73.2, 39.2, 357, 300 }, + [50] = { 72.8, 39.2, 357, 300 }, + [51] = { 72.3, 38.5, 357, 300 }, + [52] = { 71.9, 38.5, 357, 300 }, + [53] = { 72.8, 38.4, 357, 300 }, + [54] = { 72.4, 37.9, 357, 300 }, + [55] = { 72.5, 37.8, 357, 300 }, + [56] = { 72.8, 37.7, 357, 300 }, + [57] = { 72.4, 37.7, 357, 300 }, + [58] = { 72, 37.6, 357, 300 }, + [59] = { 72.1, 37.4, 357, 300 }, + [60] = { 71.9, 37.3, 357, 300 }, + [61] = { 73.7, 37.3, 357, 300 }, + [62] = { 72, 37.2, 357, 300 }, + [63] = { 72.4, 37.2, 357, 300 }, + [64] = { 72.8, 37.1, 357, 300 }, + [65] = { 73.2, 37.1, 357, 300 }, + [66] = { 72, 36.8, 357, 300 }, + [67] = { 71.9, 36.8, 357, 300 }, + [68] = { 72.2, 36.7, 357, 300 }, + [69] = { 72.1, 36.5, 357, 300 }, + [70] = { 72.8, 36.3, 357, 300 }, + [71] = { 73.2, 36.3, 357, 300 }, + [72] = { 72.9, 35.8, 357, 300 }, + [73] = { 72.4, 35.6, 357, 300 }, + [74] = { 73.2, 35.6, 357, 300 }, + }, + ["lvl"] = "41-42", + }, + [5253] = { + ["coords"] = { + [1] = { 71.8, 55, 357, 300 }, + [2] = { 75.4, 54.8, 357, 300 }, + [3] = { 71.3, 54.4, 357, 300 }, + [4] = { 75.6, 54.3, 357, 300 }, + [5] = { 70.6, 54.2, 357, 300 }, + [6] = { 76.9, 54.2, 357, 300 }, + [7] = { 75.9, 54, 357, 300 }, + [8] = { 71.8, 53.6, 357, 300 }, + [9] = { 70.5, 53.2, 357, 300 }, + [10] = { 70.4, 52.2, 357, 300 }, + [11] = { 70.5, 51.4, 357, 300 }, + [12] = { 72.9, 39.9, 357, 300 }, + [13] = { 73.2, 39.8, 357, 300 }, + [14] = { 72.7, 39.2, 357, 300 }, + [15] = { 73.2, 39.2, 357, 300 }, + [16] = { 72.8, 39.2, 357, 300 }, + [17] = { 72.5, 37.8, 357, 300 }, + [18] = { 72.4, 37.2, 357, 300 }, + [19] = { 73.2, 37.1, 357, 300 }, + [20] = { 72.2, 36.7, 357, 300 }, + }, + ["lvl"] = "41-42", + }, + [5254] = { + ["coords"] = { + [1] = { 77.3, 57.4, 357, 300 }, + [2] = { 70.8, 57.4, 357, 300 }, + [3] = { 73.3, 57.4, 357, 300 }, + [4] = { 71.9, 57.3, 357, 300 }, + [5] = { 75.6, 57.2, 357, 300 }, + [6] = { 72.8, 57.2, 357, 300 }, + [7] = { 71.4, 57.2, 357, 300 }, + [8] = { 73.7, 57.2, 357, 300 }, + [9] = { 72.2, 57.1, 357, 300 }, + [10] = { 74.7, 57.1, 357, 300 }, + [11] = { 76.1, 57.1, 357, 300 }, + [12] = { 73.1, 56.9, 357, 300 }, + [13] = { 77.3, 56.8, 357, 300 }, + [14] = { 72.4, 56.8, 357, 300 }, + [15] = { 70.9, 56.6, 357, 300 }, + [16] = { 72.2, 56.6, 357, 300 }, + [17] = { 68.5, 56.6, 357, 300 }, + [18] = { 73.3, 56.6, 357, 300 }, + [19] = { 76.8, 56.6, 357, 300 }, + [20] = { 72.4, 56.6, 357, 300 }, + [21] = { 71.8, 56.5, 357, 300 }, + [22] = { 76.1, 56.5, 357, 300 }, + [23] = { 72.7, 56.5, 357, 300 }, + [24] = { 75.5, 56.5, 357, 300 }, + [25] = { 74.6, 56.5, 357, 300 }, + [26] = { 73.1, 56.4, 357, 300 }, + [27] = { 69, 56.4, 357, 300 }, + [28] = { 69.6, 56.4, 357, 300 }, + [29] = { 75.2, 56.4, 357, 300 }, + [30] = { 77.7, 56.4, 357, 300 }, + [31] = { 75.6, 56.3, 357, 300 }, + [32] = { 77.3, 56.3, 357, 300 }, + [33] = { 75.5, 56.3, 357, 300 }, + [34] = { 77.4, 56.3, 357, 300 }, + [35] = { 71.5, 56.2, 357, 300 }, + [36] = { 73.3, 56.2, 357, 300 }, + [37] = { 71.6, 56.1, 357, 300 }, + [38] = { 67.4, 56.1, 357, 300 }, + [39] = { 76.8, 56, 357, 300 }, + [40] = { 71.4, 55.9, 357, 300 }, + [41] = { 69.1, 55.9, 357, 300 }, + [42] = { 75.6, 55.9, 357, 300 }, + [43] = { 67.2, 55.8, 357, 300 }, + [44] = { 71.6, 55.8, 357, 300 }, + [45] = { 75.2, 55.8, 357, 300 }, + [46] = { 72.3, 55.8, 357, 300 }, + [47] = { 69.1, 55.8, 357, 300 }, + [48] = { 74.6, 55.8, 357, 300 }, + [49] = { 69.8, 55.8, 357, 300 }, + [50] = { 68.8, 55.7, 357, 300 }, + [51] = { 68.4, 55.7, 357, 300 }, + [52] = { 72.8, 55.7, 357, 300 }, + [53] = { 74.3, 55.7, 357, 300 }, + [54] = { 69.1, 55.6, 357, 300 }, + [55] = { 73.4, 55.6, 357, 300 }, + [56] = { 69.5, 55.6, 357, 300 }, + [57] = { 68.2, 55.4, 357, 300 }, + [58] = { 68.6, 55.1, 357, 300 }, + [59] = { 69.4, 55, 357, 300 }, + [60] = { 72.3, 55, 357, 300 }, + [61] = { 74.5, 55, 357, 300 }, + [62] = { 69.1, 55, 357, 300 }, + [63] = { 74.3, 55, 357, 300 }, + [64] = { 69.7, 54.8, 357, 300 }, + [65] = { 74.4, 54.8, 357, 300 }, + [66] = { 67.1, 54.4, 357, 300 }, + [67] = { 68.6, 54.4, 357, 300 }, + [68] = { 69, 54.4, 357, 300 }, + [69] = { 68.7, 54.3, 357, 300 }, + [70] = { 68.5, 54.2, 357, 300 }, + [71] = { 68.8, 53.8, 357, 300 }, + [72] = { 65.6, 53.7, 357, 300 }, + [73] = { 65.4, 53.7, 357, 300 }, + [74] = { 67.9, 53.6, 357, 300 }, + [75] = { 68.5, 53.6, 357, 300 }, + [76] = { 65.6, 53.5, 357, 300 }, + [77] = { 66.7, 53.4, 357, 300 }, + [78] = { 66.1, 52.9, 357, 300 }, + [79] = { 65.7, 52.7, 357, 300 }, + [80] = { 65.1, 52.7, 357, 300 }, + [81] = { 65.7, 52.6, 357, 300 }, + [82] = { 65.6, 52.6, 357, 300 }, + [83] = { 65.1, 52.5, 357, 300 }, + [84] = { 65.6, 52.4, 357, 300 }, + [85] = { 66.1, 52.4, 357, 300 }, + [86] = { 65.3, 52, 357, 300 }, + [87] = { 65.2, 52, 357, 300 }, + [88] = { 65.3, 51.9, 357, 300 }, + [89] = { 65.9, 51.7, 357, 300 }, + [90] = { 66.4, 51.6, 357, 300 }, + [91] = { 66.1, 51.6, 357, 300 }, + [92] = { 65.9, 51.4, 357, 300 }, + }, + ["lvl"] = "42-43", + }, + [5255] = { + ["coords"] = { + [1] = { 77.3, 57.4, 357, 300 }, + [2] = { 70.8, 57.4, 357, 300 }, + [3] = { 73.3, 57.4, 357, 300 }, + [4] = { 71.9, 57.3, 357, 300 }, + [5] = { 75.6, 57.2, 357, 300 }, + [6] = { 72.8, 57.2, 357, 300 }, + [7] = { 71.4, 57.2, 357, 300 }, + [8] = { 73.7, 57.2, 357, 300 }, + [9] = { 72.2, 57.1, 357, 300 }, + [10] = { 74.7, 57.1, 357, 300 }, + [11] = { 76.1, 57.1, 357, 300 }, + [12] = { 73.1, 56.9, 357, 300 }, + [13] = { 77.3, 56.8, 357, 300 }, + [14] = { 72.4, 56.8, 357, 300 }, + [15] = { 70.9, 56.6, 357, 300 }, + [16] = { 72.2, 56.6, 357, 300 }, + [17] = { 68.5, 56.6, 357, 300 }, + [18] = { 73.3, 56.6, 357, 300 }, + [19] = { 76.8, 56.6, 357, 300 }, + [20] = { 72.4, 56.6, 357, 300 }, + [21] = { 71.8, 56.5, 357, 300 }, + [22] = { 76.1, 56.5, 357, 300 }, + [23] = { 72.7, 56.5, 357, 300 }, + [24] = { 75.5, 56.5, 357, 300 }, + [25] = { 74.6, 56.5, 357, 300 }, + [26] = { 73.1, 56.4, 357, 300 }, + [27] = { 69, 56.4, 357, 300 }, + [28] = { 69.6, 56.4, 357, 300 }, + [29] = { 75.2, 56.4, 357, 300 }, + [30] = { 77.7, 56.4, 357, 300 }, + [31] = { 75.6, 56.3, 357, 300 }, + [32] = { 77.3, 56.3, 357, 300 }, + [33] = { 75.5, 56.3, 357, 300 }, + [34] = { 77.4, 56.3, 357, 300 }, + [35] = { 71.5, 56.2, 357, 300 }, + [36] = { 73.3, 56.2, 357, 300 }, + [37] = { 71.6, 56.1, 357, 300 }, + [38] = { 67.4, 56.1, 357, 300 }, + [39] = { 76.8, 56, 357, 300 }, + [40] = { 71.4, 55.9, 357, 300 }, + [41] = { 69.1, 55.9, 357, 300 }, + [42] = { 75.6, 55.9, 357, 300 }, + [43] = { 67.2, 55.8, 357, 300 }, + [44] = { 71.6, 55.8, 357, 300 }, + [45] = { 75.2, 55.8, 357, 300 }, + [46] = { 72.3, 55.8, 357, 300 }, + [47] = { 69.1, 55.8, 357, 300 }, + [48] = { 74.6, 55.8, 357, 300 }, + [49] = { 69.8, 55.8, 357, 300 }, + [50] = { 68.8, 55.7, 357, 300 }, + [51] = { 68.4, 55.7, 357, 300 }, + [52] = { 72.8, 55.7, 357, 300 }, + [53] = { 74.3, 55.7, 357, 300 }, + [54] = { 69.1, 55.6, 357, 300 }, + [55] = { 73.4, 55.6, 357, 300 }, + [56] = { 69.5, 55.6, 357, 300 }, + [57] = { 68.2, 55.4, 357, 300 }, + [58] = { 68.6, 55.1, 357, 300 }, + [59] = { 69.4, 55, 357, 300 }, + [60] = { 72.3, 55, 357, 300 }, + [61] = { 74.5, 55, 357, 300 }, + [62] = { 69.1, 55, 357, 300 }, + [63] = { 74.3, 55, 357, 300 }, + [64] = { 69.7, 54.8, 357, 300 }, + [65] = { 74.4, 54.8, 357, 300 }, + [66] = { 67.1, 54.4, 357, 300 }, + [67] = { 68.6, 54.4, 357, 300 }, + [68] = { 69, 54.4, 357, 300 }, + [69] = { 68.7, 54.3, 357, 300 }, + [70] = { 68.5, 54.2, 357, 300 }, + [71] = { 68.8, 53.8, 357, 300 }, + [72] = { 65.6, 53.7, 357, 300 }, + [73] = { 65.4, 53.7, 357, 300 }, + [74] = { 67.9, 53.6, 357, 300 }, + [75] = { 68.5, 53.6, 357, 300 }, + [76] = { 65.6, 53.5, 357, 300 }, + [77] = { 66.7, 53.4, 357, 300 }, + [78] = { 66.1, 52.9, 357, 300 }, + [79] = { 65.7, 52.7, 357, 300 }, + [80] = { 65.1, 52.7, 357, 300 }, + [81] = { 65.7, 52.6, 357, 300 }, + [82] = { 65.6, 52.6, 357, 300 }, + [83] = { 65.1, 52.5, 357, 300 }, + [84] = { 65.6, 52.4, 357, 300 }, + [85] = { 66.1, 52.4, 357, 300 }, + [86] = { 65.3, 52, 357, 300 }, + [87] = { 65.2, 52, 357, 300 }, + [88] = { 65.3, 51.9, 357, 300 }, + [89] = { 65.9, 51.7, 357, 300 }, + [90] = { 66.4, 51.6, 357, 300 }, + [91] = { 66.1, 51.6, 357, 300 }, + [92] = { 65.9, 51.4, 357, 300 }, + }, + ["lvl"] = "42-43", + }, + [5256] = { + ["coords"] = { + [1] = { 51.9, 64.9, 1477, 18000 }, + [2] = { 54.7, 64.4, 1477, 18000 }, + [3] = { 44.9, 63.8, 1477, 18000 }, + [4] = { 61, 58.4, 1477, 18000 }, + [5] = { 39.9, 58.1, 1477, 18000 }, + [6] = { 37.3, 49.2, 1477, 18000 }, + [7] = { 35.9, 48.9, 1477, 18000 }, + [8] = { 62.9, 40.4, 1477, 18000 }, + [9] = { 63.4, 39.2, 1477, 18000 }, + [10] = { 38.6, 32.4, 1477, 18000 }, + [11] = { 48, 25.8, 1477, 18000 }, + }, + ["lvl"] = "48-49", + ["rnk"] = "1", + }, + [5258] = { + ["coords"] = { + [1] = { 77.3, 57.4, 357, 300 }, + [2] = { 70.8, 57.4, 357, 300 }, + [3] = { 73.3, 57.4, 357, 300 }, + [4] = { 71.9, 57.3, 357, 300 }, + [5] = { 75.6, 57.2, 357, 300 }, + [6] = { 72.8, 57.2, 357, 300 }, + [7] = { 71.4, 57.2, 357, 300 }, + [8] = { 73.7, 57.2, 357, 300 }, + [9] = { 72.2, 57.1, 357, 300 }, + [10] = { 74.7, 57.1, 357, 300 }, + [11] = { 76.1, 57.1, 357, 300 }, + [12] = { 73.1, 56.9, 357, 300 }, + [13] = { 77.3, 56.8, 357, 300 }, + [14] = { 72.4, 56.8, 357, 300 }, + [15] = { 70.9, 56.6, 357, 300 }, + [16] = { 72.2, 56.6, 357, 300 }, + [17] = { 68.5, 56.6, 357, 300 }, + [18] = { 73.3, 56.6, 357, 300 }, + [19] = { 76.8, 56.6, 357, 300 }, + [20] = { 72.4, 56.6, 357, 300 }, + [21] = { 71.8, 56.5, 357, 300 }, + [22] = { 76.1, 56.5, 357, 300 }, + [23] = { 72.7, 56.5, 357, 300 }, + [24] = { 75.5, 56.5, 357, 300 }, + [25] = { 74.6, 56.5, 357, 300 }, + [26] = { 73.1, 56.4, 357, 300 }, + [27] = { 69, 56.4, 357, 300 }, + [28] = { 69.6, 56.4, 357, 300 }, + [29] = { 75.2, 56.4, 357, 300 }, + [30] = { 77.7, 56.4, 357, 300 }, + [31] = { 75.6, 56.3, 357, 300 }, + [32] = { 77.3, 56.3, 357, 300 }, + [33] = { 75.5, 56.3, 357, 300 }, + [34] = { 77.4, 56.3, 357, 300 }, + [35] = { 71.5, 56.2, 357, 300 }, + [36] = { 73.3, 56.2, 357, 300 }, + [37] = { 71.6, 56.1, 357, 300 }, + [38] = { 67.4, 56.1, 357, 300 }, + [39] = { 76.8, 56, 357, 300 }, + [40] = { 71.4, 55.9, 357, 300 }, + [41] = { 69.1, 55.9, 357, 300 }, + [42] = { 75.6, 55.9, 357, 300 }, + [43] = { 67.2, 55.8, 357, 300 }, + [44] = { 71.6, 55.8, 357, 300 }, + [45] = { 75.2, 55.8, 357, 300 }, + [46] = { 72.3, 55.8, 357, 300 }, + [47] = { 69.1, 55.8, 357, 300 }, + [48] = { 74.6, 55.8, 357, 300 }, + [49] = { 69.8, 55.8, 357, 300 }, + [50] = { 68.8, 55.7, 357, 300 }, + [51] = { 68.4, 55.7, 357, 300 }, + [52] = { 72.8, 55.7, 357, 300 }, + [53] = { 74.3, 55.7, 357, 300 }, + [54] = { 69.1, 55.6, 357, 300 }, + [55] = { 73.4, 55.6, 357, 300 }, + [56] = { 69.5, 55.6, 357, 300 }, + [57] = { 68.2, 55.4, 357, 300 }, + [58] = { 68.6, 55.1, 357, 300 }, + [59] = { 69.4, 55, 357, 300 }, + [60] = { 72.3, 55, 357, 300 }, + [61] = { 74.5, 55, 357, 300 }, + [62] = { 69.1, 55, 357, 300 }, + [63] = { 74.3, 55, 357, 300 }, + [64] = { 69.7, 54.8, 357, 300 }, + [65] = { 74.4, 54.8, 357, 300 }, + [66] = { 67.1, 54.4, 357, 300 }, + [67] = { 68.6, 54.4, 357, 300 }, + [68] = { 69, 54.4, 357, 300 }, + [69] = { 68.7, 54.3, 357, 300 }, + [70] = { 68.5, 54.2, 357, 300 }, + [71] = { 68.8, 53.8, 357, 300 }, + [72] = { 65.6, 53.7, 357, 300 }, + [73] = { 65.4, 53.7, 357, 300 }, + [74] = { 67.9, 53.6, 357, 300 }, + [75] = { 68.5, 53.6, 357, 300 }, + [76] = { 65.6, 53.5, 357, 300 }, + [77] = { 66.7, 53.4, 357, 300 }, + [78] = { 66.1, 52.9, 357, 300 }, + [79] = { 65.7, 52.7, 357, 300 }, + [80] = { 65.1, 52.7, 357, 300 }, + [81] = { 65.7, 52.6, 357, 300 }, + [82] = { 65.6, 52.6, 357, 300 }, + [83] = { 65.1, 52.5, 357, 300 }, + [84] = { 65.6, 52.4, 357, 300 }, + [85] = { 66.1, 52.4, 357, 300 }, + [86] = { 65.3, 52, 357, 300 }, + [87] = { 65.2, 52, 357, 300 }, + [88] = { 65.3, 51.9, 357, 300 }, + [89] = { 65.9, 51.7, 357, 300 }, + [90] = { 66.4, 51.6, 357, 300 }, + [91] = { 66.1, 51.6, 357, 300 }, + [92] = { 65.9, 51.4, 357, 300 }, + }, + ["lvl"] = "43-44", + }, + [5259] = { + ["coords"] = { + [1] = { 57.1, 75.8, 1477, 18000 }, + [2] = { 55.8, 75, 1477, 18000 }, + [3] = { 36.3, 68, 1477, 18000 }, + [4] = { 55.2, 65.6, 1477, 18000 }, + [5] = { 45.2, 65.5, 1477, 18000 }, + [6] = { 43.4, 65, 1477, 18000 }, + [7] = { 55.6, 64.3, 1477, 18000 }, + [8] = { 38.9, 57.8, 1477, 18000 }, + [9] = { 63.1, 48.7, 1477, 18000 }, + [10] = { 36.5, 47.6, 1477, 18000 }, + [11] = { 36.2, 41.3, 1477, 18000 }, + [12] = { 37.1, 39.6, 1477, 18000 }, + [13] = { 62.3, 38.3, 1477, 18000 }, + [14] = { 43.3, 30.7, 1477, 18000 }, + [15] = { 59.4, 30.1, 1477, 18000 }, + [16] = { 41.8, 30, 1477, 18000 }, + [17] = { 40.7, 29.8, 1477, 18000 }, + [18] = { 62.9, 26.2, 1477, 18000 }, + [19] = { 53.1, 25, 1477, 18000 }, + [20] = { 50.6, 24.3, 1477, 18000 }, + [21] = { 60.7, 24, 1477, 18000 }, + [22] = { 63, 20.5, 1477, 18000 }, + [23] = { 42.8, 19.5, 1477, 18000 }, + [24] = { 43.3, 16, 1477, 18000 }, + }, + ["lvl"] = "48-50", + ["rnk"] = "1", + }, + [5262] = { + ["coords"] = { + [1] = { 48.8, 35.4, 357, 300 }, + [2] = { 48.8, 34.8, 357, 300 }, + [3] = { 49.8, 32.7, 357, 300 }, + [4] = { 50.7, 32.7, 357, 300 }, + [5] = { 50.2, 31.9, 357, 300 }, + [6] = { 50.2, 29.9, 357, 300 }, + [7] = { 46.5, 29.8, 357, 300 }, + [8] = { 46.3, 29.4, 357, 300 }, + [9] = { 50.3, 28.7, 357, 300 }, + [10] = { 50.6, 28.2, 357, 300 }, + [11] = { 43.6, 25.7, 357, 300 }, + [12] = { 42.8, 25, 357, 300 }, + [13] = { 46.7, 25, 357, 300 }, + [14] = { 46.4, 24.2, 357, 300 }, + [15] = { 41.1, 24.1, 357, 300 }, + [16] = { 43.9, 23.8, 357, 300 }, + [17] = { 37.7, 23.4, 357, 300 }, + [18] = { 41.8, 23.3, 357, 300 }, + [19] = { 43.2, 23.1, 357, 300 }, + [20] = { 43.7, 22.2, 357, 300 }, + [21] = { 45.7, 22.1, 357, 300 }, + [22] = { 41.8, 21.6, 357, 300 }, + [23] = { 40.6, 20.5, 357, 300 }, + [24] = { 44.1, 20.3, 357, 300 }, + [25] = { 45.1, 19.8, 357, 300 }, + [26] = { 39.9, 18.6, 357, 300 }, + [27] = { 41.1, 17.1, 357, 300 }, + [28] = { 41.6, 16.9, 357, 300 }, + [29] = { 41.3, 15.9, 357, 300 }, + [30] = { 44.8, 12.2, 357, 300 }, + [31] = { 42.6, 11.8, 357, 300 }, + [32] = { 43, 11.5, 357, 300 }, + [33] = { 42.2, 9, 357, 300 }, + [34] = { 43.7, 8.3, 357, 300 }, + [35] = { 2.7, 55.6, 2557, 300 }, + [36] = { 7.3, 55.4, 2557, 300 }, + [37] = { 4.9, 51.1, 2557, 300 }, + [38] = { 4.7, 40.4, 2557, 300 }, + [39] = { 4.9, 34.2, 2557, 300 }, + [40] = { 6.7, 31.5, 2557, 300 }, + }, + ["lvl"] = "49-50", + }, + [5263] = { + ["coords"] = { + [1] = { 80.2, 49.7, 8, 900 }, + [2] = { 80.2, 48.3, 8, 900 }, + [3] = { 80.9, 46.7, 8, 900 }, + [4] = { 80.9, 46.5, 8, 900 }, + [5] = { 80.9, 44.4, 8, 900 }, + [6] = { 78.6, 41.7, 8, 900 }, + [7] = { 78.6, 41.5, 8, 900 }, + [8] = { 77.7, 41.4, 8, 900 }, + [9] = { 78.2, 41.2, 8, 900 }, + [10] = { 76.7, 41.1, 8, 900 }, + [11] = { 77.1, 40.8, 8, 900 }, + [12] = { 77.9, 40.2, 8, 900 }, + [13] = { 78.4, 39.7, 8, 900 }, + [14] = { 77, 39.6, 8, 900 }, + [15] = { 79.1, 38.9, 8, 900 }, + [16] = { 78.2, 38.9, 8, 900 }, + [17] = { 78.2, 38.5, 8, 900 }, + [18] = { 71.6, 51.3, 1477, 18000 }, + [19] = { 80.4, 49.2, 1477, 18000 }, + [20] = { 77.2, 48.1, 1477, 18000 }, + [21] = { 74.7, 45.8, 1477, 18000 }, + [22] = { 77.7, 45.6, 1477, 18000 }, + [23] = { 71.2, 41.4, 1477, 18000 }, + }, + ["lvl"] = "46-47", + ["rnk"] = "1", + }, + [5264] = "_", + [5267] = { + ["coords"] = { + [1] = { 37.1, 69.8, 1477, 18000 }, + [2] = { 38.4, 58.2, 1477, 18000 }, + [3] = { 36.7, 40.4, 1477, 18000 }, + [4] = { 42.9, 30.6, 1477, 18000 }, + [5] = { 43, 27.1, 1477, 18000 }, + [6] = { 62.5, 25.6, 1477, 18000 }, + [7] = { 51.7, 24.2, 1477, 18000 }, + [8] = { 63.2, 23.2, 1477, 18000 }, + }, + ["lvl"] = "48-49", + ["rnk"] = "1", + }, + [5268] = { + ["coords"] = { + [1] = { 61.3, 61.6, 357, 300 }, + [2] = { 58.3, 60.4, 357, 300 }, + [3] = { 57.1, 60.1, 357, 300 }, + [4] = { 60.9, 60, 357, 300 }, + [5] = { 59, 59.5, 357, 300 }, + [6] = { 57.9, 58.3, 357, 300 }, + [7] = { 58, 55.8, 357, 300 }, + [8] = { 57.8, 55.3, 357, 300 }, + [9] = { 58.7, 54.4, 357, 300 }, + [10] = { 55.7, 53.8, 357, 300 }, + [11] = { 54.7, 52.8, 357, 300 }, + [12] = { 80.1, 46.6, 357, 300 }, + [13] = { 70.9, 46.5, 357, 300 }, + [14] = { 78.9, 46.2, 357, 300 }, + [15] = { 81.2, 46.1, 357, 300 }, + [16] = { 83.4, 46.1, 357, 300 }, + [17] = { 72.2, 45.9, 357, 300 }, + [18] = { 81.6, 45.9, 357, 300 }, + [19] = { 84.4, 45.9, 357, 300 }, + [20] = { 79.5, 45.8, 357, 300 }, + [21] = { 85.2, 45.8, 357, 300 }, + [22] = { 86.1, 45.6, 357, 300 }, + [23] = { 78, 45.4, 357, 300 }, + [24] = { 70.5, 44.9, 357, 300 }, + [25] = { 80.4, 44.9, 357, 300 }, + [26] = { 68.7, 44.9, 357, 300 }, + [27] = { 68.1, 44.8, 357, 300 }, + [28] = { 86.1, 44.3, 357, 300 }, + [29] = { 82.9, 44.2, 357, 300 }, + [30] = { 69.7, 44.2, 357, 300 }, + [31] = { 86.8, 44.1, 357, 300 }, + [32] = { 68.6, 44, 357, 300 }, + [33] = { 71.6, 43.8, 357, 300 }, + [34] = { 79.9, 43.6, 357, 300 }, + [35] = { 72.6, 43.4, 357, 300 }, + [36] = { 85.8, 42.8, 357, 300 }, + [37] = { 71.2, 42.8, 357, 300 }, + [38] = { 70.4, 42.7, 357, 300 }, + [39] = { 83.3, 42.5, 357, 300 }, + [40] = { 69.4, 42.4, 357, 300 }, + [41] = { 73.1, 41.9, 357, 300 }, + [42] = { 70.5, 41.5, 357, 300 }, + [43] = { 79.2, 41.2, 357, 300 }, + [44] = { 76.9, 40.8, 357, 300 }, + [45] = { 71, 40.8, 357, 300 }, + [46] = { 83.4, 40.6, 357, 300 }, + [47] = { 82.8, 40.5, 357, 300 }, + [48] = { 76.1, 39.9, 357, 300 }, + [49] = { 84.3, 39.6, 357, 300 }, + [50] = { 89.6, 39.3, 357, 300 }, + [51] = { 87.7, 39.3, 357, 300 }, + [52] = { 79.3, 39, 357, 300 }, + [53] = { 81.7, 39, 357, 300 }, + [54] = { 85, 38.9, 357, 300 }, + [55] = { 82.9, 38.6, 357, 300 }, + [56] = { 86.6, 38.6, 357, 300 }, + [57] = { 85.1, 38.5, 357, 300 }, + [58] = { 77.6, 38.4, 357, 300 }, + [59] = { 87.1, 38.3, 357, 300 }, + [60] = { 80.4, 38.3, 357, 300 }, + [61] = { 87.9, 38.1, 357, 300 }, + [62] = { 74.8, 38, 357, 300 }, + [63] = { 85.7, 37.1, 357, 300 }, + [64] = { 78.9, 37, 357, 300 }, + [65] = { 75.9, 36.5, 357, 300 }, + [66] = { 70.3, 36.3, 357, 300 }, + [67] = { 71.6, 35.3, 357, 300 }, + [68] = { 8, 7.6, 400, 300 }, + }, + ["lvl"] = "41-42", + }, + [5269] = { + ["coords"] = { + [1] = { 76.1, 50.7, 8, 900 }, + [2] = { 75, 48.8, 8, 900 }, + [3] = { 77.6, 48.5, 8, 900 }, + [4] = { 80.4, 48.2, 8, 900 }, + [5] = { 77, 47.7, 8, 900 }, + [6] = { 73, 47.6, 8, 900 }, + [7] = { 81, 44.2, 8, 900 }, + [8] = { 81.3, 42.6, 8, 900 }, + [9] = { 76.9, 41.7, 1477, 18000 }, + }, + ["lvl"] = "46-47", + ["rnk"] = "1", + }, + [5270] = { + ["coords"] = { + [1] = { 60.6, 59.5, 1477, 18000 }, + [2] = { 60.3, 58.6, 1477, 18000 }, + [3] = { 63.6, 47.5, 1477, 18000 }, + [4] = { 59.3, 31.3, 1477, 18000 }, + [5] = { 58.5, 30.5, 1477, 18000 }, + [6] = { 56.7, 27.1, 1477, 18000 }, + [7] = { 62.7, 22.5, 1477, 18000 }, + }, + ["lvl"] = "49-50", + ["rnk"] = "1", + }, + [5271] = { + ["coords"] = { + [1] = { 72.5, 51.1, 1477, 18000 }, + [2] = { 80.5, 50.3, 1477, 18000 }, + [3] = { 71.5, 50.1, 1477, 18000 }, + [4] = { 79.9, 50, 1477, 18000 }, + [5] = { 77.8, 48.1, 1477, 18000 }, + [6] = { 74.4, 47.8, 1477, 18000 }, + [7] = { 75.3, 47.7, 1477, 18000 }, + [8] = { 77, 45.7, 1477, 18000 }, + [9] = { 74.4, 44.2, 1477, 18000 }, + [10] = { 77.8, 43.6, 1477, 18000 }, + [11] = { 76.7, 43.6, 1477, 18000 }, + [12] = { 74.4, 42.1, 1477, 18000 }, + [13] = { 75.1, 42, 1477, 18000 }, + [14] = { 71.6, 42, 1477, 18000 }, + [15] = { 77.2, 41.8, 1477, 18000 }, + [16] = { 80.5, 40.9, 1477, 18000 }, + [17] = { 71.4, 40.5, 1477, 18000 }, + [18] = { 81, 40, 1477, 18000 }, + }, + ["lvl"] = "50-51", + ["rnk"] = "1", + }, + [5273] = { + ["coords"] = { + [1] = { 77.3, 45.6, 1477, 18000 }, + [2] = { 74.9, 44.2, 1477, 18000 }, + }, + ["lvl"] = "50-51", + ["rnk"] = "1", + }, + [5274] = { + ["coords"] = { + [1] = { 48.9, 37.5, 357, 300 }, + [2] = { 49.8, 33.9, 357, 300 }, + [3] = { 49.6, 33.5, 357, 300 }, + [4] = { 49.5, 31.3, 357, 300 }, + [5] = { 50.6, 31.3, 357, 300 }, + [6] = { 49.8, 29.6, 357, 300 }, + [7] = { 49.4, 28.3, 357, 300 }, + [8] = { 49.9, 28.2, 357, 300 }, + [9] = { 50.1, 27.9, 357, 300 }, + [10] = { 46.5, 26, 357, 300 }, + [11] = { 46.7, 25.4, 357, 300 }, + [12] = { 46.1, 25.1, 357, 300 }, + [13] = { 39.6, 25, 357, 300 }, + [14] = { 45.9, 24.2, 357, 300 }, + [15] = { 47.3, 24.1, 357, 300 }, + [16] = { 42.1, 24.1, 357, 300 }, + [17] = { 43.1, 23.9, 357, 300 }, + [18] = { 38.5, 23.1, 357, 300 }, + [19] = { 44.6, 22, 357, 300 }, + [20] = { 39.9, 21.8, 357, 300 }, + [21] = { 44.1, 21.6, 357, 300 }, + [22] = { 42.9, 20.3, 357, 300 }, + [23] = { 40.9, 19.1, 357, 300 }, + [24] = { 41.3, 17.8, 357, 300 }, + [25] = { 41.1, 17.5, 357, 300 }, + [26] = { 44.5, 11.7, 357, 300 }, + [27] = { 43.7, 11.7, 357, 300 }, + [28] = { 43, 9.7, 357, 300 }, + [29] = { 2.4, 62, 2557, 300 }, + [30] = { 1.5, 59.6, 2557, 300 }, + [31] = { 0.9, 48, 2557, 300 }, + [32] = { 6.6, 47.8, 2557, 300 }, + [33] = { 2.6, 38.9, 2557, 300 }, + [34] = { 0.4, 32, 2557, 300 }, + [35] = { 3.2, 31.4, 2557, 300 }, + [36] = { 4, 29.8, 2557, 300 }, + }, + ["lvl"] = "48-49", + }, + [5276] = { + ["coords"] = { + [1] = { 50.7, 33.8, 357, 300 }, + [2] = { 43.3, 22.5, 357, 300 }, + [3] = { 43.5, 22.5, 357, 300 }, + [4] = { 44.3, 22.2, 357, 300 }, + [5] = { 44.4, 9.7, 357, 300 }, + [6] = { 7.1, 60.9, 2557, 300 }, + }, + ["lvl"] = "47-50", + }, + [5277] = { + ["coords"] = { + [1] = { 49.4, 74.2, 1477, 18000 }, + [2] = { 74.2, 62.3, 1477, 18000 }, + [3] = { 49.1, 62.2, 1477, 18000 }, + [4] = { 50.1, 62, 1477, 18000 }, + [5] = { 62.2, 59.3, 1477, 18000 }, + [6] = { 45.7, 55.4, 1477, 18000 }, + [7] = { 58.2, 53.4, 1477, 18000 }, + [8] = { 40.4, 53.3, 1477, 18000 }, + [9] = { 40, 39.2, 1477, 18000 }, + [10] = { 45.8, 37, 1477, 18000 }, + [11] = { 41.2, 36.1, 1477, 18000 }, + [12] = { 61.5, 35.7, 1477, 18000 }, + [13] = { 52.1, 8.3, 1477, 18000 }, + }, + ["lvl"] = "49-51", + ["rnk"] = "1", + }, + [5278] = { + ["coords"] = { + [1] = { 68.9, 49.1, 357, 300 }, + [2] = { 68.5, 48.9, 357, 300 }, + [3] = { 64.4, 48.9, 357, 300 }, + [4] = { 68.9, 48.7, 357, 300 }, + [5] = { 64.5, 48.4, 357, 300 }, + [6] = { 69.4, 48.2, 357, 300 }, + [7] = { 67.5, 48.1, 357, 300 }, + [8] = { 68, 48.1, 357, 300 }, + [9] = { 66.4, 48.1, 357, 300 }, + [10] = { 65.1, 48, 357, 300 }, + [11] = { 68.4, 47.9, 357, 300 }, + [12] = { 70.3, 47.7, 357, 300 }, + [13] = { 65.5, 47.4, 357, 300 }, + [14] = { 67, 47.2, 357, 300 }, + [15] = { 69.4, 47.1, 357, 300 }, + [16] = { 70, 47, 357, 300 }, + [17] = { 70.1, 46.6, 357, 300 }, + [18] = { 69.1, 46.6, 357, 300 }, + [19] = { 69.2, 46.1, 357, 300 }, + [20] = { 69.5, 44.9, 357, 300 }, + [21] = { 68.4, 44.5, 357, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "43-45", + }, + [5280] = { + ["coords"] = { + [1] = { 73.3, 66.1, 1477, 18000 }, + [2] = { 61.3, 58.2, 1477, 18000 }, + [3] = { 41.2, 55.4, 1477, 18000 }, + [4] = { 58.5, 50.1, 1477, 18000 }, + [5] = { 40.7, 37.1, 1477, 18000 }, + [6] = { 52.6, 9.9, 1477, 18000 }, + }, + ["lvl"] = "50-51", + ["rnk"] = "1", + }, + [5283] = { + ["coords"] = { + [1] = { 50.4, 71.7, 1477, 18000 }, + [2] = { 51.2, 62.1, 1477, 18000 }, + [3] = { 45.7, 56.3, 1477, 18000 }, + [4] = { 46, 54.7, 1477, 18000 }, + [5] = { 40.8, 54.4, 1477, 18000 }, + [6] = { 40, 52.3, 1477, 18000 }, + [7] = { 45, 47.3, 1477, 18000 }, + [8] = { 53.6, 44.1, 1477, 18000 }, + [9] = { 40.2, 38, 1477, 18000 }, + [10] = { 62.4, 38, 1477, 18000 }, + [11] = { 54, 36.2, 1477, 18000 }, + [12] = { 53, 8.3, 1477, 18000 }, + }, + ["lvl"] = "49-50", + ["rnk"] = "1", + }, + [5286] = { + ["coords"] = { + [1] = { 30.7, 52.6, 357, 300 }, + [2] = { 30.9, 51.8, 357, 300 }, + [3] = { 31, 51.5, 357, 300 }, + [4] = { 31, 50.8, 357, 300 }, + [5] = { 31.9, 50.5, 357, 300 }, + [6] = { 30.6, 50.1, 357, 300 }, + [7] = { 30.1, 50, 357, 300 }, + [8] = { 28.7, 49.6, 357, 300 }, + [9] = { 29.2, 49.5, 357, 300 }, + [10] = { 29.8, 49.5, 357, 300 }, + [11] = { 31.5, 49.5, 357, 300 }, + [12] = { 30.8, 49.4, 357, 300 }, + [13] = { 68.7, 48.8, 357, 300 }, + [14] = { 28.2, 48.6, 357, 300 }, + [15] = { 29.7, 48.6, 357, 300 }, + [16] = { 64.5, 48.6, 357, 300 }, + [17] = { 31, 48.5, 357, 300 }, + [18] = { 29.7, 48.4, 357, 300 }, + [19] = { 27.6, 48.3, 357, 300 }, + [20] = { 26.7, 47.4, 357, 300 }, + [21] = { 27.6, 47.3, 357, 300 }, + [22] = { 29.1, 47.2, 357, 300 }, + [23] = { 25.8, 47.2, 357, 300 }, + [24] = { 28.3, 47.1, 357, 300 }, + [25] = { 27.3, 46.7, 357, 300 }, + [26] = { 79.7, 46.6, 357, 300 }, + [27] = { 28.8, 46.6, 357, 300 }, + [28] = { 80.3, 46.6, 357, 300 }, + [29] = { 26.8, 46.5, 357, 300 }, + [30] = { 70.7, 46.4, 357, 300 }, + [31] = { 71.2, 46.3, 357, 300 }, + [32] = { 27.4, 46.2, 357, 300 }, + [33] = { 26.5, 46.1, 357, 300 }, + [34] = { 85.7, 46, 357, 300 }, + [35] = { 83.5, 45.9, 357, 300 }, + [36] = { 80.6, 45.8, 357, 300 }, + [37] = { 84.7, 45.7, 357, 300 }, + [38] = { 28.3, 45.6, 357, 300 }, + [39] = { 72, 45.5, 357, 300 }, + [40] = { 70.7, 45.3, 357, 300 }, + [41] = { 80.1, 45.3, 357, 300 }, + [42] = { 27.1, 45.2, 357, 300 }, + [43] = { 27.4, 45.2, 357, 300 }, + [44] = { 82.1, 45.2, 357, 300 }, + [45] = { 86.6, 45.1, 357, 300 }, + [46] = { 28.7, 44.9, 357, 300 }, + [47] = { 82.8, 44.8, 357, 300 }, + [48] = { 85.8, 44.7, 357, 300 }, + [49] = { 78.4, 44.7, 357, 300 }, + [50] = { 82.8, 44.3, 357, 300 }, + [51] = { 26.9, 44.1, 357, 300 }, + [52] = { 69.4, 44, 357, 300 }, + [53] = { 70.9, 44, 357, 300 }, + [54] = { 87.7, 43.7, 357, 300 }, + [55] = { 27.3, 43.6, 357, 300 }, + [56] = { 72.4, 43.5, 357, 300 }, + [57] = { 71.1, 43.4, 357, 300 }, + [58] = { 69, 42.9, 357, 300 }, + [59] = { 71.4, 42.8, 357, 300 }, + [60] = { 70, 42.7, 357, 300 }, + [61] = { 87.7, 42.7, 357, 300 }, + [62] = { 68.7, 42.3, 357, 300 }, + [63] = { 71.1, 42.2, 357, 300 }, + [64] = { 70.3, 42.1, 357, 300 }, + [65] = { 86.5, 42, 357, 300 }, + [66] = { 76.8, 41.4, 357, 300 }, + [67] = { 71.7, 41.4, 357, 300 }, + [68] = { 86.7, 40.6, 357, 300 }, + [69] = { 85, 40.4, 357, 300 }, + [70] = { 70.8, 40.3, 357, 300 }, + [71] = { 89.2, 40.2, 357, 300 }, + [72] = { 79.6, 40.2, 357, 300 }, + [73] = { 74.4, 40.1, 357, 300 }, + [74] = { 76.7, 40, 357, 300 }, + [75] = { 77.4, 39.8, 357, 300 }, + [76] = { 86.9, 39.7, 357, 300 }, + [77] = { 88.9, 39.2, 357, 300 }, + [78] = { 80.6, 39.2, 357, 300 }, + [79] = { 74.2, 39.1, 357, 300 }, + [80] = { 81.2, 39, 357, 300 }, + [81] = { 76.9, 38.9, 357, 300 }, + [82] = { 76.2, 38.7, 357, 300 }, + [83] = { 82.8, 38.7, 357, 300 }, + [84] = { 75.5, 38.6, 357, 300 }, + [85] = { 84.7, 38.5, 357, 300 }, + [86] = { 88.2, 38.4, 357, 300 }, + [87] = { 86.2, 38.4, 357, 300 }, + [88] = { 79.9, 38.2, 357, 300 }, + [89] = { 78.3, 37.9, 357, 300 }, + [90] = { 86.8, 37.8, 357, 300 }, + [91] = { 78.7, 37.8, 357, 300 }, + [92] = { 79.3, 37.7, 357, 300 }, + [93] = { 85.9, 37.6, 357, 300 }, + [94] = { 88.5, 37.5, 357, 300 }, + [95] = { 75.7, 37.1, 357, 300 }, + [96] = { 74.9, 36.3, 357, 300 }, + [97] = { 70.8, 36.2, 357, 300 }, + [98] = { 5.1, 14.5, 400, 300 }, + [99] = { 5, 12.9, 400, 300 }, + [100] = { 7.4, 8.9, 400, 300 }, + [101] = { 7, 7.4, 400, 300 }, + }, + ["lvl"] = "40-41", + }, + [5288] = { + ["coords"] = { + [1] = { 48.8, 37.1, 357, 300 }, + [2] = { 50.6, 33.5, 357, 300 }, + [3] = { 49.1, 32.2, 357, 300 }, + [4] = { 49.5, 30.6, 357, 300 }, + [5] = { 46.6, 29.5, 357, 300 }, + [6] = { 49, 26.6, 357, 300 }, + [7] = { 42.7, 26, 357, 300 }, + [8] = { 45, 24, 357, 300 }, + [9] = { 42.6, 23.4, 357, 300 }, + [10] = { 39.5, 23.2, 357, 300 }, + [11] = { 43.7, 22.9, 357, 300 }, + [12] = { 39.8, 22.8, 357, 300 }, + [13] = { 45.8, 21.9, 357, 300 }, + [14] = { 38.3, 21.8, 357, 300 }, + [15] = { 43.1, 21.1, 357, 300 }, + [16] = { 41.7, 20.4, 357, 300 }, + [17] = { 43.6, 20.2, 357, 300 }, + [18] = { 42, 19.9, 357, 300 }, + [19] = { 39.6, 19.6, 357, 300 }, + [20] = { 40.4, 18.7, 357, 300 }, + [21] = { 40.4, 18, 357, 300 }, + [22] = { 41.5, 15.3, 357, 300 }, + [23] = { 44.5, 13.3, 357, 300 }, + [24] = { 44.1, 12.9, 357, 300 }, + [25] = { 43.3, 12.6, 357, 300 }, + [26] = { 44.4, 11, 357, 300 }, + [27] = { 44.5, 9.1, 357, 300 }, + [28] = { 6.8, 59.7, 2557, 300 }, + [29] = { 1.1, 44.2, 2557, 300 }, + }, + ["lvl"] = "47-48", + }, + [5291] = { + ["coords"] = { + [1] = { 24.8, 64.8, 1477, 18000 }, + [2] = { 34.5, 60.5, 1477, 18000 }, + [3] = { 24.4, 50.4, 1477, 18000 }, + [4] = { 21, 46.6, 1477, 18000 }, + [5] = { 33.6, 31.1, 1477, 18000 }, + [6] = { 24.8, 27.1, 1477, 18000 }, + [7] = { 27.6, 26.7, 1477, 18000 }, + }, + ["lvl"] = "49-50", + ["rnk"] = "1", + }, + [5292] = { + ["coords"] = { + [1] = { 55.9, 58.8, 357, 300 }, + [2] = { 52.3, 57.9, 357, 300 }, + [3] = { 52.5, 57.5, 357, 300 }, + [4] = { 52.7, 57.2, 357, 300 }, + [5] = { 56, 57.2, 357, 300 }, + [6] = { 55.5, 57.2, 357, 300 }, + [7] = { 52.8, 57, 357, 300 }, + [8] = { 56.5, 56.5, 357, 300 }, + [9] = { 55.6, 56.5, 357, 300 }, + [10] = { 56, 56.5, 357, 300 }, + [11] = { 53.1, 56.4, 357, 300 }, + [12] = { 55, 56.3, 357, 300 }, + [13] = { 54.6, 56.2, 357, 300 }, + [14] = { 55.5, 55.7, 357, 300 }, + [15] = { 54.3, 55.6, 357, 300 }, + [16] = { 55.5, 55.1, 357, 300 }, + }, + ["lvl"] = "43-44", + }, + [5293] = { + ["coords"] = { + [1] = { 52.3, 61.1, 357, 300 }, + [2] = { 51.9, 60.8, 357, 300 }, + [3] = { 52.6, 60.5, 357, 300 }, + [4] = { 51.3, 60.2, 357, 300 }, + [5] = { 52.2, 60.1, 357, 300 }, + [6] = { 53.2, 60, 357, 300 }, + [7] = { 52.7, 59.6, 357, 300 }, + [8] = { 50.5, 59, 357, 300 }, + [9] = { 50.4, 58.8, 357, 300 }, + [10] = { 51.9, 58.6, 357, 300 }, + [11] = { 50.6, 58.2, 357, 300 }, + [12] = { 51.8, 57.2, 357, 300 }, + }, + ["lvl"] = "45-46", + }, + [5295] = { + ["coords"] = { + [1] = { 51.9, 59.8, 357, 300 }, + [2] = { 51, 59.8, 357, 300 }, + [3] = { 51.7, 59.3, 357, 300 }, + [4] = { 50.8, 59.3, 357, 300 }, + [5] = { 52.5, 59.2, 357, 300 }, + [6] = { 51.9, 58.5, 357, 300 }, + [7] = { 52.3, 58.5, 357, 300 }, + [8] = { 51.1, 58.3, 357, 300 }, + [9] = { 51.5, 57.9, 357, 300 }, + [10] = { 51.9, 57.9, 357, 300 }, + [11] = { 53.1, 56.1, 357, 300 }, + [12] = { 53.5, 55.2, 357, 300 }, + }, + ["lvl"] = "44-45", + }, + [5296] = { + ["coords"] = { + [1] = { 54.4, 33.1, 357, 300 }, + [2] = { 54.8, 33.1, 357, 300 }, + [3] = { 55, 32.5, 357, 300 }, + [4] = { 53.3, 31.8, 357, 300 }, + [5] = { 52.5, 31.7, 357, 300 }, + [6] = { 51.8, 30.8, 357, 300 }, + [7] = { 52.9, 30.4, 357, 300 }, + [8] = { 52.4, 29.7, 357, 300 }, + [9] = { 26.6, 57.4, 2557, 300 }, + [10] = { 28.9, 57.2, 2557, 300 }, + [11] = { 29.9, 54.4, 2557, 300 }, + [12] = { 20.8, 50.8, 2557, 300 }, + [13] = { 16.9, 50.3, 2557, 300 }, + [14] = { 13, 45.1, 2557, 300 }, + [15] = { 19, 43.1, 2557, 300 }, + [16] = { 16, 39.5, 2557, 300 }, + }, + ["lvl"] = "46-47", + }, + [5297] = { + ["coords"] = { + [1] = { 54.9, 33.5, 357, 300 }, + [2] = { 55.7, 33, 357, 300 }, + [3] = { 55.4, 32.9, 357, 300 }, + [4] = { 54, 32.5, 357, 300 }, + [5] = { 55, 32.3, 357, 300 }, + [6] = { 29.3, 59.7, 2557, 300 }, + [7] = { 33.7, 57.2, 2557, 300 }, + [8] = { 32, 56.4, 2557, 300 }, + [9] = { 24.8, 54.3, 2557, 300 }, + [10] = { 29.9, 53.4, 2557, 300 }, + }, + ["lvl"] = "48-49", + }, + [5299] = { + ["coords"] = { + [1] = { 54.5, 33.9, 357, 300 }, + [2] = { 55.2, 33.2, 357, 300 }, + [3] = { 55.8, 33.2, 357, 300 }, + [4] = { 54.5, 32.4, 357, 300 }, + [5] = { 54.6, 32, 357, 300 }, + [6] = { 53.8, 32, 357, 300 }, + [7] = { 52.5, 31.8, 357, 300 }, + [8] = { 52.9, 31.7, 357, 300 }, + [9] = { 51.8, 31.6, 357, 300 }, + [10] = { 52, 31.4, 357, 300 }, + [11] = { 52.3, 31.1, 357, 300 }, + [12] = { 53.2, 30.4, 357, 300 }, + [13] = { 52.6, 30.1, 357, 300 }, + [14] = { 52.2, 29.6, 357, 300 }, + [15] = { 27.3, 61.6, 2557, 300 }, + [16] = { 31, 58.2, 2557, 300 }, + [17] = { 34.1, 58.1, 2557, 300 }, + [18] = { 27.4, 54, 2557, 300 }, + [19] = { 27.9, 51.7, 2557, 300 }, + [20] = { 23.3, 51.6, 2557, 300 }, + [21] = { 16.4, 50.5, 2557, 300 }, + [22] = { 18.7, 50, 2557, 300 }, + [23] = { 12.9, 49.4, 2557, 300 }, + [24] = { 14.3, 48.4, 2557, 300 }, + [25] = { 15.4, 46.8, 2557, 300 }, + [26] = { 20.5, 43.1, 2557, 300 }, + [27] = { 17.3, 41.4, 2557, 300 }, + [28] = { 15.1, 38.7, 2557, 300 }, + }, + ["lvl"] = "47-48", + }, + [5300] = { + ["coords"] = { + [1] = { 55.3, 64.8, 357, 300 }, + [2] = { 56.9, 64, 357, 300 }, + [3] = { 56.2, 63.7, 357, 300 }, + [4] = { 55.6, 63.2, 357, 300 }, + [5] = { 58, 62.8, 357, 300 }, + [6] = { 55.7, 62.8, 357, 300 }, + [7] = { 57, 62.2, 357, 300 }, + [8] = { 55.5, 62.2, 357, 300 }, + [9] = { 56.4, 62.2, 357, 300 }, + [10] = { 55.9, 61.7, 357, 300 }, + [11] = { 55, 61.4, 357, 300 }, + [12] = { 55.3, 61.1, 357, 300 }, + [13] = { 54.9, 60.8, 357, 300 }, + }, + ["lvl"] = "43-44", + }, + [5304] = { + ["coords"] = { + [1] = { 57.8, 74.4, 357, 300 }, + [2] = { 55.5, 71.5, 357, 300 }, + [3] = { 53.9, 70.4, 357, 300 }, + [4] = { 54, 68.7, 357, 300 }, + [5] = { 55.6, 68.3, 357, 300 }, + [6] = { 54.6, 68, 357, 300 }, + [7] = { 53.6, 68, 357, 300 }, + [8] = { 53.6, 67, 357, 300 }, + [9] = { 55.5, 66.5, 357, 300 }, + [10] = { 54.3, 66.2, 357, 300 }, + [11] = { 56, 66, 357, 300 }, + [12] = { 55.1, 65.8, 357, 300 }, + [13] = { 57, 65.8, 357, 300 }, + [14] = { 53.8, 65.3, 357, 300 }, + [15] = { 55.5, 65.2, 357, 300 }, + [16] = { 54.6, 65.1, 357, 300 }, + [17] = { 55, 64.4, 357, 300 }, + [18] = { 56.2, 63.7, 357, 300 }, + [19] = { 56, 63.6, 357, 300 }, + }, + ["lvl"] = "44-45", + }, + [5307] = { + ["coords"] = { + [1] = { 60, 61.3, 357, 300 }, + [2] = { 57.6, 59.4, 357, 300 }, + [3] = { 58.2, 57.8, 357, 300 }, + [4] = { 57.1, 54.8, 357, 300 }, + }, + ["lvl"] = "41-43", + }, + [5308] = { + ["coords"] = { + [1] = { 47.9, 59.2, 357, 300 }, + [2] = { 47.9, 55.7, 357, 300 }, + [3] = { 59, 51.1, 357, 300 }, + [4] = { 46.1, 50, 357, 300 }, + [5] = { 49.4, 49.9, 357, 300 }, + [6] = { 60.8, 49.8, 357, 300 }, + [7] = { 45.9, 49.2, 357, 300 }, + [8] = { 52.3, 49.2, 357, 300 }, + [9] = { 46.8, 48.5, 357, 300 }, + [10] = { 56.9, 48.1, 357, 300 }, + [11] = { 46.6, 47.6, 357, 300 }, + [12] = { 55.7, 47, 357, 300 }, + [13] = { 53.2, 46.8, 357, 300 }, + [14] = { 46.5, 40.7, 357, 300 }, + [15] = { 46.5, 39.4, 357, 300 }, + [16] = { 46, 37.7, 357, 300 }, + [17] = { 43.1, 36.9, 357, 300 }, + [18] = { 44, 36.4, 357, 300 }, + [19] = { 42, 36.3, 357, 300 }, + [20] = { 44.8, 36.1, 357, 300 }, + }, + ["lvl"] = "44-46", + }, + [5315] = "_", + [5317] = { + ["coords"] = { + [1] = { 51, 18.1, 357, 1800 }, + [2] = { 50.9, 18, 357, 1800 }, + [3] = { 54, 16.5, 357, 1800 }, + [4] = { 53.9, 16.5, 357, 1800 }, + [5] = { 52.7, 16.4, 357, 1800 }, + [6] = { 50.3, 16.4, 357, 1800 }, + [7] = { 53.8, 16.3, 357, 1800 }, + [8] = { 51.2, 16.3, 357, 1800 }, + [9] = { 52.7, 16.3, 357, 1800 }, + [10] = { 51.2, 16.2, 357, 1800 }, + [11] = { 52.5, 16.2, 357, 1800 }, + [12] = { 50.2, 16.1, 357, 1800 }, + [13] = { 49.1, 16, 357, 1800 }, + [14] = { 51.3, 16, 357, 1800 }, + [15] = { 50.4, 15.9, 357, 1800 }, + [16] = { 49.2, 15.8, 357, 1800 }, + [17] = { 48.9, 15.7, 357, 1800 }, + [18] = { 53.6, 14.9, 357, 1800 }, + [19] = { 53.5, 14.8, 357, 1800 }, + [20] = { 53.6, 14.8, 357, 1800 }, + [21] = { 48.3, 14.1, 357, 1800 }, + [22] = { 48.4, 12.4, 357, 1800 }, + [23] = { 51.8, 12, 357, 1800 }, + [24] = { 51.6, 12, 357, 1800 }, + [25] = { 51.6, 11.8, 357, 1800 }, + [26] = { 50.6, 10.6, 357, 1800 }, + [27] = { 53.9, 10.5, 357, 1800 }, + [28] = { 54, 10.5, 357, 1800 }, + [29] = { 48.3, 10.5, 357, 1800 }, + [30] = { 52.5, 10.5, 357, 1800 }, + [31] = { 48.3, 10.4, 357, 1800 }, + [32] = { 52.7, 10.4, 357, 1800 }, + [33] = { 50.5, 10.3, 357, 1800 }, + [34] = { 52.6, 10.3, 357, 1800 }, + [35] = { 48.5, 10.2, 357, 1800 }, + [36] = { 54.4, 10.2, 357, 1800 }, + [37] = { 50.7, 10.1, 357, 1800 }, + [38] = { 52.6, 9, 357, 1800 }, + [39] = { 52.8, 9, 357, 1800 }, + [40] = { 48.4, 8, 357, 1800 }, + [41] = { 51.4, 7.8, 357, 1800 }, + [42] = { 48.3, 7.7, 357, 1800 }, + [43] = { 50.6, 7.6, 357, 1800 }, + [44] = { 50.7, 7.6, 357, 1800 }, + [45] = { 51.7, 7.6, 357, 1800 }, + [46] = { 50.8, 7.6, 357, 1800 }, + [47] = { 54.6, 7.6, 357, 1800 }, + [48] = { 51.6, 7.5, 357, 1800 }, + [49] = { 48.5, 7.5, 357, 1800 }, + [50] = { 54.4, 7.2, 357, 1800 }, + [51] = { 50.4, 7.1, 357, 1800 }, + [52] = { 50.2, 6.9, 357, 1800 }, + [53] = { 50.1, 6.8, 357, 1800 }, + [54] = { 52.6, 5.7, 357, 1800 }, + [55] = { 52.6, 5.6, 357, 1800 }, + [56] = { 52.5, 5.5, 357, 1800 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [5319] = { + ["coords"] = { + [1] = { 51, 18.1, 357, 1800 }, + [2] = { 50.9, 18, 357, 1800 }, + [3] = { 54, 16.5, 357, 1800 }, + [4] = { 53.9, 16.5, 357, 1800 }, + [5] = { 52.7, 16.4, 357, 1800 }, + [6] = { 50.3, 16.4, 357, 1800 }, + [7] = { 53.8, 16.3, 357, 1800 }, + [8] = { 51.2, 16.3, 357, 1800 }, + [9] = { 52.7, 16.3, 357, 1800 }, + [10] = { 51.2, 16.2, 357, 1800 }, + [11] = { 52.5, 16.2, 357, 1800 }, + [12] = { 50.2, 16.1, 357, 1800 }, + [13] = { 49.1, 16, 357, 1800 }, + [14] = { 51.3, 16, 357, 1800 }, + [15] = { 50.4, 15.9, 357, 1800 }, + [16] = { 49.2, 15.8, 357, 1800 }, + [17] = { 48.9, 15.7, 357, 1800 }, + [18] = { 53.6, 14.9, 357, 1800 }, + [19] = { 53.5, 14.8, 357, 1800 }, + [20] = { 53.6, 14.8, 357, 1800 }, + [21] = { 48.3, 14.1, 357, 1800 }, + [22] = { 48.4, 12.4, 357, 1800 }, + [23] = { 51.8, 12, 357, 1800 }, + [24] = { 51.6, 12, 357, 1800 }, + [25] = { 51.6, 11.8, 357, 1800 }, + [26] = { 50.6, 10.6, 357, 1800 }, + [27] = { 53.9, 10.5, 357, 1800 }, + [28] = { 54, 10.5, 357, 1800 }, + [29] = { 48.3, 10.5, 357, 1800 }, + [30] = { 52.5, 10.5, 357, 1800 }, + [31] = { 48.3, 10.4, 357, 1800 }, + [32] = { 52.7, 10.4, 357, 1800 }, + [33] = { 50.5, 10.3, 357, 1800 }, + [34] = { 52.6, 10.3, 357, 1800 }, + [35] = { 48.5, 10.2, 357, 1800 }, + [36] = { 54.4, 10.2, 357, 1800 }, + [37] = { 50.7, 10.1, 357, 1800 }, + [38] = { 52.6, 9, 357, 1800 }, + [39] = { 52.8, 9, 357, 1800 }, + [40] = { 48.4, 8, 357, 1800 }, + [41] = { 51.4, 7.8, 357, 1800 }, + [42] = { 48.3, 7.7, 357, 1800 }, + [43] = { 50.6, 7.6, 357, 1800 }, + [44] = { 50.7, 7.6, 357, 1800 }, + [45] = { 51.7, 7.6, 357, 1800 }, + [46] = { 50.8, 7.6, 357, 1800 }, + [47] = { 54.6, 7.6, 357, 1800 }, + [48] = { 51.6, 7.5, 357, 1800 }, + [49] = { 48.5, 7.5, 357, 1800 }, + [50] = { 54.4, 7.2, 357, 1800 }, + [51] = { 50.4, 7.1, 357, 1800 }, + [52] = { 50.2, 6.9, 357, 1800 }, + [53] = { 50.1, 6.8, 357, 1800 }, + [54] = { 52.6, 5.7, 357, 1800 }, + [55] = { 52.6, 5.6, 357, 1800 }, + [56] = { 52.5, 5.5, 357, 1800 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [5320] = { + ["coords"] = { + [1] = { 51, 18.1, 357, 1800 }, + [2] = { 50.9, 18, 357, 1800 }, + [3] = { 54, 16.5, 357, 1800 }, + [4] = { 53.9, 16.5, 357, 1800 }, + [5] = { 52.7, 16.4, 357, 1800 }, + [6] = { 50.3, 16.4, 357, 1800 }, + [7] = { 53.8, 16.3, 357, 1800 }, + [8] = { 51.2, 16.3, 357, 1800 }, + [9] = { 52.7, 16.3, 357, 1800 }, + [10] = { 51.2, 16.2, 357, 1800 }, + [11] = { 52.5, 16.2, 357, 1800 }, + [12] = { 50.2, 16.1, 357, 1800 }, + [13] = { 49.1, 16, 357, 1800 }, + [14] = { 51.3, 16, 357, 1800 }, + [15] = { 50.4, 15.9, 357, 1800 }, + [16] = { 49.2, 15.8, 357, 1800 }, + [17] = { 48.9, 15.7, 357, 1800 }, + [18] = { 53.6, 14.9, 357, 1800 }, + [19] = { 53.5, 14.8, 357, 1800 }, + [20] = { 53.6, 14.8, 357, 1800 }, + [21] = { 48.3, 14.1, 357, 1800 }, + [22] = { 48.4, 12.4, 357, 1800 }, + [23] = { 51.8, 12, 357, 1800 }, + [24] = { 51.6, 12, 357, 1800 }, + [25] = { 51.6, 11.8, 357, 1800 }, + [26] = { 50.6, 10.6, 357, 1800 }, + [27] = { 53.9, 10.5, 357, 1800 }, + [28] = { 54, 10.5, 357, 1800 }, + [29] = { 48.3, 10.5, 357, 1800 }, + [30] = { 52.5, 10.5, 357, 1800 }, + [31] = { 48.3, 10.4, 357, 1800 }, + [32] = { 52.7, 10.4, 357, 1800 }, + [33] = { 50.5, 10.3, 357, 1800 }, + [34] = { 52.6, 10.3, 357, 1800 }, + [35] = { 48.5, 10.2, 357, 1800 }, + [36] = { 54.4, 10.2, 357, 1800 }, + [37] = { 50.7, 10.1, 357, 1800 }, + [38] = { 52.6, 9, 357, 1800 }, + [39] = { 52.8, 9, 357, 1800 }, + [40] = { 48.4, 8, 357, 1800 }, + [41] = { 51.4, 7.8, 357, 1800 }, + [42] = { 48.3, 7.7, 357, 1800 }, + [43] = { 50.6, 7.6, 357, 1800 }, + [44] = { 50.7, 7.6, 357, 1800 }, + [45] = { 51.7, 7.6, 357, 1800 }, + [46] = { 50.8, 7.6, 357, 1800 }, + [47] = { 54.6, 7.6, 357, 1800 }, + [48] = { 51.6, 7.5, 357, 1800 }, + [49] = { 48.5, 7.5, 357, 1800 }, + [50] = { 54.4, 7.2, 357, 1800 }, + [51] = { 50.4, 7.1, 357, 1800 }, + [52] = { 50.2, 6.9, 357, 1800 }, + [53] = { 50.1, 6.8, 357, 1800 }, + [54] = { 52.6, 5.7, 357, 1800 }, + [55] = { 52.6, 5.6, 357, 1800 }, + [56] = { 52.5, 5.5, 357, 1800 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [5326] = "_", + [5331] = { + ["coords"] = { + [1] = { 29.7, 57.5, 357, 300 }, + [2] = { 28.6, 57.4, 357, 300 }, + [3] = { 27.6, 57.2, 357, 300 }, + [4] = { 33, 57.2, 357, 300 }, + [5] = { 31.5, 57.2, 357, 300 }, + [6] = { 31.1, 57, 357, 300 }, + [7] = { 30.1, 56.7, 357, 300 }, + [8] = { 26.7, 56.6, 357, 300 }, + [9] = { 32.3, 56.4, 357, 300 }, + [10] = { 33.3, 56.4, 357, 300 }, + [11] = { 29.3, 56.3, 357, 300 }, + [12] = { 32.5, 55.9, 357, 300 }, + [13] = { 25.8, 55.8, 357, 300 }, + [14] = { 25.3, 55.3, 357, 300 }, + [15] = { 29.6, 55.2, 357, 300 }, + [16] = { 26.3, 55.1, 357, 300 }, + [17] = { 32.9, 55.1, 357, 300 }, + [18] = { 29.1, 55.1, 357, 300 }, + [19] = { 27.8, 55, 357, 300 }, + [20] = { 27.3, 54.9, 357, 300 }, + [21] = { 33.6, 54.6, 357, 300 }, + [22] = { 27.8, 54.5, 357, 300 }, + [23] = { 29.2, 54.4, 357, 300 }, + [24] = { 28.6, 54.4, 357, 300 }, + [25] = { 25.3, 54.3, 357, 300 }, + [26] = { 30.3, 54.3, 357, 300 }, + [27] = { 26.8, 54.2, 357, 300 }, + [28] = { 27.1, 54, 357, 300 }, + [29] = { 26.1, 54, 357, 300 }, + [30] = { 27.6, 53.7, 357, 300 }, + [31] = { 27.1, 53.7, 357, 300 }, + [32] = { 29.2, 53.7, 357, 300 }, + [33] = { 26.2, 53.7, 357, 300 }, + [34] = { 29.6, 53.6, 357, 300 }, + [35] = { 25.6, 53.2, 357, 300 }, + [36] = { 29.6, 53.1, 357, 300 }, + [37] = { 28.5, 53, 357, 300 }, + [38] = { 33.1, 53, 357, 300 }, + [39] = { 26.6, 52.8, 357, 300 }, + [40] = { 27.6, 52.8, 357, 300 }, + [41] = { 28.6, 52.6, 357, 300 }, + [42] = { 26.7, 52.2, 357, 300 }, + [43] = { 28, 52, 357, 300 }, + [44] = { 28.7, 51.6, 357, 300 }, + [45] = { 29.1, 51.6, 357, 300 }, + [46] = { 33.5, 51.5, 357, 300 }, + [47] = { 28.8, 50.8, 357, 300 }, + [48] = { 28.5, 50.6, 357, 300 }, + [49] = { 26.7, 50.6, 357, 300 }, + [50] = { 25.4, 50.2, 357, 300 }, + [51] = { 33.2, 50, 357, 300 }, + [52] = { 25.5, 49.5, 357, 300 }, + }, + ["lvl"] = "42-43", + }, + [5332] = { + ["coords"] = { + [1] = { 29.7, 57.5, 357, 300 }, + [2] = { 28.6, 57.4, 357, 300 }, + [3] = { 27.6, 57.2, 357, 300 }, + [4] = { 33, 57.2, 357, 300 }, + [5] = { 31.5, 57.2, 357, 300 }, + [6] = { 31.1, 57, 357, 300 }, + [7] = { 30.1, 56.7, 357, 300 }, + [8] = { 26.7, 56.6, 357, 300 }, + [9] = { 32.3, 56.4, 357, 300 }, + [10] = { 33.3, 56.4, 357, 300 }, + [11] = { 29.3, 56.3, 357, 300 }, + [12] = { 32.5, 55.9, 357, 300 }, + [13] = { 25.8, 55.8, 357, 300 }, + [14] = { 25.3, 55.3, 357, 300 }, + [15] = { 29.6, 55.2, 357, 300 }, + [16] = { 26.3, 55.1, 357, 300 }, + [17] = { 32.9, 55.1, 357, 300 }, + [18] = { 29.1, 55.1, 357, 300 }, + [19] = { 27.8, 55, 357, 300 }, + [20] = { 27.3, 54.9, 357, 300 }, + [21] = { 33.6, 54.6, 357, 300 }, + [22] = { 27.8, 54.5, 357, 300 }, + [23] = { 29.2, 54.4, 357, 300 }, + [24] = { 28.6, 54.4, 357, 300 }, + [25] = { 25.3, 54.3, 357, 300 }, + [26] = { 30.3, 54.3, 357, 300 }, + [27] = { 26.8, 54.2, 357, 300 }, + [28] = { 27.1, 54, 357, 300 }, + [29] = { 26.1, 54, 357, 300 }, + [30] = { 27.6, 53.7, 357, 300 }, + [31] = { 27.1, 53.7, 357, 300 }, + [32] = { 29.2, 53.7, 357, 300 }, + [33] = { 26.2, 53.7, 357, 300 }, + [34] = { 29.6, 53.6, 357, 300 }, + [35] = { 25.6, 53.2, 357, 300 }, + [36] = { 29.6, 53.1, 357, 300 }, + [37] = { 28.5, 53, 357, 300 }, + [38] = { 33.1, 53, 357, 300 }, + [39] = { 26.6, 52.8, 357, 300 }, + [40] = { 27.6, 52.8, 357, 300 }, + [41] = { 28.6, 52.6, 357, 300 }, + [42] = { 26.7, 52.2, 357, 300 }, + [43] = { 28, 52, 357, 300 }, + [44] = { 28.7, 51.6, 357, 300 }, + [45] = { 29.1, 51.6, 357, 300 }, + [46] = { 33.5, 51.5, 357, 300 }, + [47] = { 28.8, 50.8, 357, 300 }, + [48] = { 28.5, 50.6, 357, 300 }, + [49] = { 26.7, 50.6, 357, 300 }, + [50] = { 25.4, 50.2, 357, 300 }, + [51] = { 33.2, 50, 357, 300 }, + [52] = { 25.5, 49.5, 357, 300 }, + }, + ["lvl"] = "41-42", + }, + [5333] = { + ["coords"] = { + [1] = { 25.2, 72.7, 357, 300 }, + [2] = { 24.8, 72.6, 357, 300 }, + [3] = { 26.1, 72, 357, 300 }, + [4] = { 25.9, 71.7, 357, 300 }, + [5] = { 27.8, 70.8, 357, 300 }, + [6] = { 28.4, 70.6, 357, 300 }, + [7] = { 28.1, 70.6, 357, 300 }, + [8] = { 28.6, 70.4, 357, 300 }, + [9] = { 27.2, 70.4, 357, 300 }, + [10] = { 27.5, 70.3, 357, 300 }, + [11] = { 28.4, 70.3, 357, 300 }, + [12] = { 27.9, 69.9, 357, 300 }, + [13] = { 27.4, 69.8, 357, 300 }, + [14] = { 26.8, 69.5, 357, 300 }, + [15] = { 27, 69.5, 357, 300 }, + [16] = { 28.1, 69.5, 357, 300 }, + [17] = { 27.5, 69.4, 357, 300 }, + [18] = { 26.9, 69.1, 357, 300 }, + [19] = { 27.8, 69.1, 357, 300 }, + [20] = { 27.4, 69.1, 357, 300 }, + [21] = { 27.2, 69, 357, 300 }, + [22] = { 26.6, 69, 357, 300 }, + [23] = { 28, 68.8, 357, 300 }, + [24] = { 26.1, 68.7, 357, 300 }, + [25] = { 26.4, 68.6, 357, 300 }, + [26] = { 27.6, 68.6, 357, 300 }, + [27] = { 26.7, 68.5, 357, 300 }, + [28] = { 27.8, 68.4, 357, 300 }, + [29] = { 27, 68.4, 357, 300 }, + [30] = { 27.3, 68.4, 357, 300 }, + [31] = { 27, 68.3, 357, 300 }, + [32] = { 26.4, 68.2, 357, 300 }, + [33] = { 27.1, 68.1, 357, 300 }, + [34] = { 27.4, 68.1, 357, 300 }, + [35] = { 27.3, 68, 357, 300 }, + [36] = { 28.3, 68, 357, 300 }, + [37] = { 27.4, 67.9, 357, 300 }, + [38] = { 26.3, 67.8, 357, 300 }, + [39] = { 26.1, 67.4, 357, 300 }, + [40] = { 25.8, 67, 357, 300 }, + [41] = { 25.7, 66.4, 357, 300 }, + [42] = { 25.4, 66, 357, 300 }, + [43] = { 25.4, 63, 357, 300 }, + }, + ["lvl"] = "44-45", + }, + [5335] = { + ["coords"] = { + [1] = { 29.7, 57.5, 357, 300 }, + [2] = { 28.6, 57.4, 357, 300 }, + [3] = { 27.6, 57.2, 357, 300 }, + [4] = { 33, 57.2, 357, 300 }, + [5] = { 31.5, 57.2, 357, 300 }, + [6] = { 31.1, 57, 357, 300 }, + [7] = { 30.1, 56.7, 357, 300 }, + [8] = { 26.7, 56.6, 357, 300 }, + [9] = { 32.3, 56.4, 357, 300 }, + [10] = { 33.3, 56.4, 357, 300 }, + [11] = { 29.3, 56.3, 357, 300 }, + [12] = { 32.5, 55.9, 357, 300 }, + [13] = { 25.8, 55.8, 357, 300 }, + [14] = { 25.3, 55.3, 357, 300 }, + [15] = { 29.6, 55.2, 357, 300 }, + [16] = { 26.3, 55.1, 357, 300 }, + [17] = { 32.9, 55.1, 357, 300 }, + [18] = { 29.1, 55.1, 357, 300 }, + [19] = { 27.8, 55, 357, 300 }, + [20] = { 27.3, 54.9, 357, 300 }, + [21] = { 33.6, 54.6, 357, 300 }, + [22] = { 27.8, 54.5, 357, 300 }, + [23] = { 29.2, 54.4, 357, 300 }, + [24] = { 28.6, 54.4, 357, 300 }, + [25] = { 25.3, 54.3, 357, 300 }, + [26] = { 30.3, 54.3, 357, 300 }, + [27] = { 26.8, 54.2, 357, 300 }, + [28] = { 27.1, 54, 357, 300 }, + [29] = { 26.1, 54, 357, 300 }, + [30] = { 27.6, 53.7, 357, 300 }, + [31] = { 27.1, 53.7, 357, 300 }, + [32] = { 29.2, 53.7, 357, 300 }, + [33] = { 26.2, 53.7, 357, 300 }, + [34] = { 29.6, 53.6, 357, 300 }, + [35] = { 25.6, 53.2, 357, 300 }, + [36] = { 29.6, 53.1, 357, 300 }, + [37] = { 28.5, 53, 357, 300 }, + [38] = { 33.1, 53, 357, 300 }, + [39] = { 26.6, 52.8, 357, 300 }, + [40] = { 27.6, 52.8, 357, 300 }, + [41] = { 28.6, 52.6, 357, 300 }, + [42] = { 26.7, 52.2, 357, 300 }, + [43] = { 28, 52, 357, 300 }, + [44] = { 28.7, 51.6, 357, 300 }, + [45] = { 29.1, 51.6, 357, 300 }, + [46] = { 33.5, 51.5, 357, 300 }, + [47] = { 28.8, 50.8, 357, 300 }, + [48] = { 28.5, 50.6, 357, 300 }, + [49] = { 26.7, 50.6, 357, 300 }, + [50] = { 25.4, 50.2, 357, 300 }, + [51] = { 33.2, 50, 357, 300 }, + [52] = { 25.5, 49.5, 357, 300 }, + }, + ["lvl"] = "41-42", + }, + [5336] = { + ["coords"] = { + [1] = { 24.9, 73.1, 357, 300 }, + [2] = { 25.2, 72.3, 357, 300 }, + [3] = { 25.7, 72.1, 357, 300 }, + [4] = { 28, 67.9, 357, 300 }, + [5] = { 28.2, 67.6, 357, 300 }, + [6] = { 25.3, 66.6, 357, 300 }, + [7] = { 25.3, 65.8, 357, 300 }, + [8] = { 25.2, 72.7, 357, 300 }, + [9] = { 24.8, 72.6, 357, 300 }, + [10] = { 26.1, 72, 357, 300 }, + [11] = { 25.9, 71.7, 357, 300 }, + [12] = { 27.8, 70.8, 357, 300 }, + [13] = { 28.4, 70.6, 357, 300 }, + [14] = { 28.1, 70.6, 357, 300 }, + [15] = { 28.6, 70.4, 357, 300 }, + [16] = { 27.2, 70.4, 357, 300 }, + [17] = { 27.5, 70.3, 357, 300 }, + [18] = { 28.4, 70.3, 357, 300 }, + [19] = { 27.9, 69.9, 357, 300 }, + [20] = { 27.4, 69.8, 357, 300 }, + [21] = { 26.8, 69.5, 357, 300 }, + [22] = { 27, 69.5, 357, 300 }, + [23] = { 28.1, 69.5, 357, 300 }, + [24] = { 27.5, 69.4, 357, 300 }, + [25] = { 26.9, 69.1, 357, 300 }, + [26] = { 27.8, 69.1, 357, 300 }, + [27] = { 27.4, 69.1, 357, 300 }, + [28] = { 27.2, 69, 357, 300 }, + [29] = { 26.6, 69, 357, 300 }, + [30] = { 28, 68.8, 357, 300 }, + [31] = { 26.1, 68.7, 357, 300 }, + [32] = { 26.4, 68.6, 357, 300 }, + [33] = { 27.6, 68.6, 357, 300 }, + [34] = { 26.7, 68.5, 357, 300 }, + [35] = { 27.8, 68.4, 357, 300 }, + [36] = { 27, 68.4, 357, 300 }, + [37] = { 27.3, 68.4, 357, 300 }, + [38] = { 27, 68.3, 357, 300 }, + [39] = { 26.4, 68.2, 357, 300 }, + [40] = { 27.1, 68.1, 357, 300 }, + [41] = { 27.4, 68.1, 357, 300 }, + [42] = { 27.3, 68, 357, 300 }, + [43] = { 28.3, 68, 357, 300 }, + [44] = { 27.4, 67.9, 357, 300 }, + [45] = { 26.3, 67.8, 357, 300 }, + [46] = { 26.1, 67.4, 357, 300 }, + [47] = { 24.7, 67, 357, 300 }, + [48] = { 25.8, 67, 357, 300 }, + [49] = { 25.7, 66.4, 357, 300 }, + [50] = { 25.4, 66, 357, 300 }, + [51] = { 24.3, 65.4, 357, 300 }, + [52] = { 26.6, 65.1, 357, 300 }, + [53] = { 25.5, 64.4, 357, 300 }, + [54] = { 23.3, 64.3, 357, 300 }, + [55] = { 27.2, 64.3, 357, 300 }, + [56] = { 24.1, 64, 357, 300 }, + [57] = { 25.3, 63.7, 357, 300 }, + [58] = { 26.7, 63.7, 357, 300 }, + [59] = { 25.8, 63.7, 357, 300 }, + [60] = { 24.9, 63.4, 357, 300 }, + [61] = { 25.4, 63, 357, 300 }, + [62] = { 27.2, 62.9, 357, 300 }, + [63] = { 24.4, 62.8, 357, 300 }, + [64] = { 25.2, 62.8, 357, 300 }, + [65] = { 26.1, 62.7, 357, 300 }, + [66] = { 23.8, 62.4, 357, 300 }, + [67] = { 24.8, 62.3, 357, 300 }, + [68] = { 25.9, 62.2, 357, 300 }, + [69] = { 27.7, 62.1, 357, 300 }, + }, + ["lvl"] = "43-44", + }, + [5337] = { + ["coords"] = { + [1] = { 29.7, 57.5, 357, 300 }, + [2] = { 28.6, 57.4, 357, 300 }, + [3] = { 27.6, 57.2, 357, 300 }, + [4] = { 33, 57.2, 357, 300 }, + [5] = { 31.5, 57.2, 357, 300 }, + [6] = { 31.1, 57, 357, 300 }, + [7] = { 30.1, 56.7, 357, 300 }, + [8] = { 26.7, 56.6, 357, 300 }, + [9] = { 32.3, 56.4, 357, 300 }, + [10] = { 33.3, 56.4, 357, 300 }, + [11] = { 29.3, 56.3, 357, 300 }, + [12] = { 32.5, 55.9, 357, 300 }, + [13] = { 25.8, 55.8, 357, 300 }, + [14] = { 25.3, 55.3, 357, 300 }, + [15] = { 29.6, 55.2, 357, 300 }, + [16] = { 26.3, 55.1, 357, 300 }, + [17] = { 32.9, 55.1, 357, 300 }, + [18] = { 29.1, 55.1, 357, 300 }, + [19] = { 27.8, 55, 357, 300 }, + [20] = { 27.3, 54.9, 357, 300 }, + [21] = { 33.6, 54.6, 357, 300 }, + [22] = { 27.8, 54.5, 357, 300 }, + [23] = { 29.2, 54.4, 357, 300 }, + [24] = { 28.6, 54.4, 357, 300 }, + [25] = { 25.3, 54.3, 357, 300 }, + [26] = { 30.3, 54.3, 357, 300 }, + [27] = { 26.8, 54.2, 357, 300 }, + [28] = { 27.1, 54, 357, 300 }, + [29] = { 26.1, 54, 357, 300 }, + [30] = { 27.6, 53.7, 357, 300 }, + [31] = { 27.1, 53.7, 357, 300 }, + [32] = { 29.2, 53.7, 357, 300 }, + [33] = { 26.2, 53.7, 357, 300 }, + [34] = { 29.6, 53.6, 357, 300 }, + [35] = { 25.6, 53.2, 357, 300 }, + [36] = { 29.6, 53.1, 357, 300 }, + [37] = { 28.5, 53, 357, 300 }, + [38] = { 33.1, 53, 357, 300 }, + [39] = { 26.6, 52.8, 357, 300 }, + [40] = { 27.6, 52.8, 357, 300 }, + [41] = { 28.6, 52.6, 357, 300 }, + [42] = { 26.7, 52.2, 357, 300 }, + [43] = { 28, 52, 357, 300 }, + [44] = { 28.7, 51.6, 357, 300 }, + [45] = { 29.1, 51.6, 357, 300 }, + [46] = { 33.5, 51.5, 357, 300 }, + [47] = { 28.8, 50.8, 357, 300 }, + [48] = { 28.5, 50.6, 357, 300 }, + [49] = { 26.7, 50.6, 357, 300 }, + [50] = { 25.4, 50.2, 357, 300 }, + [51] = { 33.2, 50, 357, 300 }, + [52] = { 25.5, 49.5, 357, 300 }, + }, + ["lvl"] = "42-43", + }, + [5343] = { + ["coords"] = { + [1] = { 28.2, 67.6, 357, 27000 }, + }, + ["lvl"] = "46", + ["rnk"] = "4", + }, + [5345] = { + ["coords"] = { + [1] = { 36.6, 51.4, 357, 54000 }, + }, + ["lvl"] = "45", + ["rnk"] = "4", + }, + [5346] = { + ["coords"] = { + [1] = { 55.1, 57.8, 357, 54000 }, + }, + ["lvl"] = "49", + ["rnk"] = "4", + }, + [5348] = "_", + [5349] = { + ["coords"] = { + [1] = { 44.8, 25, 357, 27000 }, + }, + ["lvl"] = "49", + ["rnk"] = "4", + }, + [5350] = { + ["coords"] = { + [1] = { 76.7, 66.2, 357, 27000 }, + }, + ["lvl"] = "47", + ["rnk"] = "4", + }, + [5352] = { + ["coords"] = { + [1] = { 59.5, 59.4, 357, 180000 }, + }, + ["lvl"] = "43", + ["rnk"] = "4", + }, + [5354] = { + ["coords"] = { + [1] = { 69.2, 57.2, 357, 180000 }, + }, + ["lvl"] = "44", + ["rnk"] = "4", + }, + [5355] = "_", + [5356] = { + ["coords"] = { + [1] = { 80.2, 39.6, 357, 27000 }, + }, + ["lvl"] = "42", + ["rnk"] = "4", + }, + [5357] = { + ["coords"] = { + [1] = { 40.9, 25.5, 357, 600 }, + [2] = { 41.1, 24.8, 357, 600 }, + [3] = { 40.3, 24.6, 357, 600 }, + [4] = { 40.7, 24.4, 357, 600 }, + [5] = { 38.5, 24.4, 357, 600 }, + [6] = { 40.6, 24.3, 357, 600 }, + [7] = { 39.2, 23.9, 357, 600 }, + [8] = { 38.7, 23.6, 357, 600 }, + [9] = { 38, 23.6, 357, 600 }, + [10] = { 41.1, 22.6, 357, 600 }, + [11] = { 40.4, 22.4, 357, 600 }, + [12] = { 39.7, 22.3, 357, 600 }, + [13] = { 39.6, 22.2, 357, 600 }, + [14] = { 39.6, 22.1, 357, 600 }, + [15] = { 38.8, 21.9, 357, 600 }, + [16] = { 37.8, 21.9, 357, 600 }, + [17] = { 39.9, 21.9, 357, 600 }, + [18] = { 38.2, 21.4, 357, 600 }, + [19] = { 38.2, 20.6, 357, 600 }, + [20] = { 38.1, 18.3, 357, 600 }, + }, + ["lvl"] = "48-49", + ["rnk"] = "1", + }, + [5358] = { + ["coords"] = { + [1] = { 40.9, 25.5, 357, 600 }, + [2] = { 41.1, 24.8, 357, 600 }, + [3] = { 40.3, 24.6, 357, 600 }, + [4] = { 40.7, 24.4, 357, 600 }, + [5] = { 38.5, 24.4, 357, 600 }, + [6] = { 40.6, 24.3, 357, 600 }, + [7] = { 39.2, 23.9, 357, 600 }, + [8] = { 38.7, 23.6, 357, 600 }, + [9] = { 38, 23.6, 357, 600 }, + [10] = { 41.1, 22.6, 357, 600 }, + [11] = { 40.4, 22.4, 357, 600 }, + [12] = { 39.7, 22.3, 357, 600 }, + [13] = { 39.6, 22.2, 357, 600 }, + [14] = { 39.6, 22.1, 357, 600 }, + [15] = { 38.8, 21.9, 357, 600 }, + [16] = { 37.8, 21.9, 357, 600 }, + [17] = { 39.9, 21.9, 357, 600 }, + [18] = { 38.2, 21.4, 357, 600 }, + [19] = { 38.2, 20.6, 357, 600 }, + [20] = { 38.1, 18.3, 357, 600 }, + }, + ["lvl"] = "49-50", + ["rnk"] = "1", + }, + [5359] = { + ["coords"] = { + [1] = { 45, 66.4, 357, 600 }, + [2] = { 45.5, 62.3, 357, 600 }, + [3] = { 46.8, 62.2, 357, 600 }, + [4] = { 45.1, 61.9, 357, 600 }, + [5] = { 46.5, 59.6, 357, 600 }, + [6] = { 45.9, 57.9, 357, 600 }, + [7] = { 46.8, 57.9, 357, 600 }, + [8] = { 43.1, 53, 357, 600 }, + [9] = { 45.2, 52.9, 357, 600 }, + [10] = { 44.1, 50.1, 357, 600 }, + [11] = { 44.1, 49.1, 357, 600 }, + [12] = { 42.5, 46.9, 357, 600 }, + [13] = { 44.3, 46.6, 357, 600 }, + [14] = { 40.2, 38.6, 357, 600 }, + [15] = { 36.4, 36.5, 357, 600 }, + [16] = { 36.5, 35.7, 357, 600 }, + [17] = { 38.2, 35, 357, 600 }, + [18] = { 37.7, 34.5, 357, 600 }, + [19] = { 34.5, 34, 357, 600 }, + [20] = { 36.1, 33.4, 357, 600 }, + }, + ["lvl"] = "48-49", + ["rnk"] = "1", + }, + [5360] = { + ["coords"] = { + [1] = { 45, 66.4, 357, 600 }, + [2] = { 45.5, 62.3, 357, 600 }, + [3] = { 46.8, 62.2, 357, 600 }, + [4] = { 45.1, 61.9, 357, 600 }, + [5] = { 46.5, 59.6, 357, 600 }, + [6] = { 45.9, 57.9, 357, 600 }, + [7] = { 46.8, 57.9, 357, 600 }, + [8] = { 43.1, 53, 357, 600 }, + [9] = { 45.2, 52.9, 357, 600 }, + [10] = { 44.1, 50.1, 357, 600 }, + [11] = { 44.1, 49.1, 357, 600 }, + [12] = { 42.5, 46.9, 357, 600 }, + [13] = { 44.3, 46.6, 357, 600 }, + [14] = { 40.2, 38.6, 357, 600 }, + [15] = { 36.4, 36.5, 357, 600 }, + [16] = { 36.5, 35.7, 357, 600 }, + [17] = { 38.2, 35, 357, 600 }, + [18] = { 37.7, 34.5, 357, 600 }, + [19] = { 34.5, 34, 357, 600 }, + [20] = { 36.1, 33.4, 357, 600 }, + }, + ["lvl"] = "47-49", + ["rnk"] = "1", + }, + [5361] = { + ["coords"] = { + [1] = { 45, 66.4, 357, 600 }, + [2] = { 45.5, 62.3, 357, 600 }, + [3] = { 46.8, 62.2, 357, 600 }, + [4] = { 45.1, 61.9, 357, 600 }, + [5] = { 46.5, 59.6, 357, 600 }, + [6] = { 45.9, 57.9, 357, 600 }, + [7] = { 46.8, 57.9, 357, 600 }, + [8] = { 43.1, 53, 357, 600 }, + [9] = { 45.2, 52.9, 357, 600 }, + [10] = { 44.1, 50.1, 357, 600 }, + [11] = { 44.1, 49.1, 357, 600 }, + [12] = { 42.5, 46.9, 357, 600 }, + [13] = { 44.3, 46.6, 357, 600 }, + [14] = { 40.2, 38.6, 357, 600 }, + [15] = { 36.4, 36.5, 357, 600 }, + [16] = { 36.5, 35.7, 357, 600 }, + [17] = { 38.2, 35, 357, 600 }, + [18] = { 37.7, 34.5, 357, 600 }, + [19] = { 34.5, 34, 357, 600 }, + [20] = { 36.1, 33.4, 357, 600 }, + }, + ["lvl"] = "47-48", + ["rnk"] = "1", + }, + [5362] = { + ["coords"] = { + [1] = { 38.6, 16.1, 357, 300 }, + [2] = { 37.8, 15.9, 357, 300 }, + [3] = { 37.9, 15.9, 357, 300 }, + [4] = { 37.4, 15.6, 357, 300 }, + [5] = { 38.3, 15.6, 357, 300 }, + [6] = { 39.2, 15.5, 357, 300 }, + [7] = { 40.1, 15.5, 357, 300 }, + [8] = { 40.7, 14.8, 357, 300 }, + [9] = { 38.2, 14.7, 357, 300 }, + [10] = { 38.9, 14.6, 357, 300 }, + [11] = { 39.9, 14.5, 357, 300 }, + [12] = { 41.5, 14.4, 357, 300 }, + [13] = { 40, 14.3, 357, 300 }, + [14] = { 38.6, 14.3, 357, 300 }, + [15] = { 39.4, 14.1, 357, 300 }, + [16] = { 39.7, 14, 357, 300 }, + [17] = { 38.2, 13.9, 357, 300 }, + [18] = { 38.7, 13.9, 357, 300 }, + [19] = { 40.2, 13.4, 357, 300 }, + [20] = { 40.6, 13.3, 357, 300 }, + [21] = { 39.1, 13.1, 357, 300 }, + [22] = { 38.5, 13, 357, 300 }, + [23] = { 38.7, 12.7, 357, 300 }, + [24] = { 40.4, 12.6, 357, 300 }, + [25] = { 42.1, 12.5, 357, 300 }, + [26] = { 38.7, 12.5, 357, 300 }, + [27] = { 37.8, 12.1, 357, 300 }, + [28] = { 38.2, 12.1, 357, 300 }, + [29] = { 39.6, 11.9, 357, 300 }, + [30] = { 41.6, 11.9, 357, 300 }, + [31] = { 39.3, 11.6, 357, 300 }, + [32] = { 38.7, 11.2, 357, 300 }, + [33] = { 39.1, 11.2, 357, 300 }, + [34] = { 40.1, 11, 357, 300 }, + [35] = { 39.7, 10.4, 357, 300 }, + [36] = { 39.5, 10.1, 357, 300 }, + }, + ["lvl"] = "48-49", + }, + [5363] = { + ["coords"] = { + [1] = { 38.6, 16.1, 357, 300 }, + [2] = { 37.8, 15.9, 357, 300 }, + [3] = { 37.9, 15.9, 357, 300 }, + [4] = { 37.4, 15.6, 357, 300 }, + [5] = { 38.3, 15.6, 357, 300 }, + [6] = { 39.2, 15.5, 357, 300 }, + [7] = { 40.1, 15.5, 357, 300 }, + [8] = { 40.7, 14.8, 357, 300 }, + [9] = { 38.2, 14.7, 357, 300 }, + [10] = { 38.9, 14.6, 357, 300 }, + [11] = { 39.9, 14.5, 357, 300 }, + [12] = { 41.5, 14.4, 357, 300 }, + [13] = { 40, 14.3, 357, 300 }, + [14] = { 38.6, 14.3, 357, 300 }, + [15] = { 39.4, 14.1, 357, 300 }, + [16] = { 39.7, 14, 357, 300 }, + [17] = { 38.2, 13.9, 357, 300 }, + [18] = { 38.7, 13.9, 357, 300 }, + [19] = { 40.2, 13.4, 357, 300 }, + [20] = { 40.6, 13.3, 357, 300 }, + [21] = { 39.1, 13.1, 357, 300 }, + [22] = { 38.5, 13, 357, 300 }, + [23] = { 38.7, 12.7, 357, 300 }, + [24] = { 40.4, 12.6, 357, 300 }, + [25] = { 42.1, 12.5, 357, 300 }, + [26] = { 38.7, 12.5, 357, 300 }, + [27] = { 37.8, 12.1, 357, 300 }, + [28] = { 38.2, 12.1, 357, 300 }, + [29] = { 39.6, 11.9, 357, 300 }, + [30] = { 41.6, 11.9, 357, 300 }, + [31] = { 39.3, 11.6, 357, 300 }, + [32] = { 38.7, 11.2, 357, 300 }, + [33] = { 39.1, 11.2, 357, 300 }, + [34] = { 40.1, 11, 357, 300 }, + [35] = { 39.7, 10.4, 357, 300 }, + [36] = { 39.5, 10.1, 357, 300 }, + }, + ["lvl"] = "48-49", + }, + [5364] = { + ["coords"] = { + [1] = { 38.6, 16.1, 357, 300 }, + [2] = { 37.8, 15.9, 357, 300 }, + [3] = { 37.9, 15.9, 357, 300 }, + [4] = { 37.4, 15.6, 357, 300 }, + [5] = { 38.3, 15.6, 357, 300 }, + [6] = { 39.2, 15.5, 357, 300 }, + [7] = { 40.1, 15.5, 357, 300 }, + [8] = { 40.7, 14.8, 357, 300 }, + [9] = { 38.2, 14.7, 357, 300 }, + [10] = { 38.9, 14.6, 357, 300 }, + [11] = { 39.9, 14.5, 357, 300 }, + [12] = { 41.5, 14.4, 357, 300 }, + [13] = { 40, 14.3, 357, 300 }, + [14] = { 38.6, 14.3, 357, 300 }, + [15] = { 39.4, 14.1, 357, 300 }, + [16] = { 39.7, 14, 357, 300 }, + [17] = { 38.2, 13.9, 357, 300 }, + [18] = { 38.7, 13.9, 357, 300 }, + [19] = { 40.2, 13.4, 357, 300 }, + [20] = { 40.6, 13.3, 357, 300 }, + [21] = { 39.1, 13.1, 357, 300 }, + [22] = { 38.5, 13, 357, 300 }, + [23] = { 38.7, 12.7, 357, 300 }, + [24] = { 40.4, 12.6, 357, 300 }, + [25] = { 42.1, 12.5, 357, 300 }, + [26] = { 38.7, 12.5, 357, 300 }, + [27] = { 37.8, 12.1, 357, 300 }, + [28] = { 38.2, 12.1, 357, 300 }, + [29] = { 39.6, 11.9, 357, 300 }, + [30] = { 41.6, 11.9, 357, 300 }, + [31] = { 39.3, 11.6, 357, 300 }, + [32] = { 38.7, 11.2, 357, 300 }, + [33] = { 39.1, 11.2, 357, 300 }, + [34] = { 40.1, 11, 357, 300 }, + [35] = { 39.7, 10.4, 357, 300 }, + [36] = { 39.5, 10.1, 357, 300 }, + }, + ["lvl"] = "49-50", + }, + [5366] = { + ["coords"] = { + [1] = { 38.6, 16.1, 357, 300 }, + [2] = { 37.8, 15.9, 357, 300 }, + [3] = { 37.9, 15.9, 357, 300 }, + [4] = { 37.4, 15.6, 357, 300 }, + [5] = { 38.3, 15.6, 357, 300 }, + [6] = { 39.2, 15.5, 357, 300 }, + [7] = { 40.1, 15.5, 357, 300 }, + [8] = { 40.7, 14.8, 357, 300 }, + [9] = { 38.2, 14.7, 357, 300 }, + [10] = { 38.9, 14.6, 357, 300 }, + [11] = { 39.9, 14.5, 357, 300 }, + [12] = { 41.5, 14.4, 357, 300 }, + [13] = { 40, 14.3, 357, 300 }, + [14] = { 38.6, 14.3, 357, 300 }, + [15] = { 39.4, 14.1, 357, 300 }, + [16] = { 39.7, 14, 357, 300 }, + [17] = { 38.2, 13.9, 357, 300 }, + [18] = { 38.7, 13.9, 357, 300 }, + [19] = { 40.2, 13.4, 357, 300 }, + [20] = { 40.6, 13.3, 357, 300 }, + [21] = { 39.1, 13.1, 357, 300 }, + [22] = { 38.5, 13, 357, 300 }, + [23] = { 38.7, 12.7, 357, 300 }, + [24] = { 40.4, 12.6, 357, 300 }, + [25] = { 42.1, 12.5, 357, 300 }, + [26] = { 38.7, 12.5, 357, 300 }, + [27] = { 37.8, 12.1, 357, 300 }, + [28] = { 38.2, 12.1, 357, 300 }, + [29] = { 39.6, 11.9, 357, 300 }, + [30] = { 41.6, 11.9, 357, 300 }, + [31] = { 39.3, 11.6, 357, 300 }, + [32] = { 38.7, 11.2, 357, 300 }, + [33] = { 39.1, 11.2, 357, 300 }, + [34] = { 40.1, 11, 357, 300 }, + [35] = { 39.7, 10.4, 357, 300 }, + [36] = { 39.5, 10.1, 357, 300 }, + }, + ["lvl"] = "49-50", + }, + [5367] = "_", + [5384] = { + ["coords"] = { + [1] = { 69.5, 40.4, 1519, 30 }, + [2] = { 53.7, 99.1, 5581, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [5386] = { + ["coords"] = { + [1] = { 51.4, 73.8, 1519, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [5394] = { + ["coords"] = { + [1] = { 6.5, 47.2, 3, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [5395] = { + ["coords"] = { + [1] = { 56.2, 59.6, 405, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "44", + }, + [5396] = { + ["coords"] = { + [1] = { 66.7, 10.9, 405, 30 }, + [2] = { 45.1, 82.7, 406, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "42", + }, + [5399] = { + ["coords"] = { + [1] = { 78.7, 44.5, 8, 28800 }, + }, + ["lvl"] = "48", + ["rnk"] = "2", + }, + [5400] = { + ["coords"] = { + [1] = { 77.8, 41.2, 8, 28800 }, + }, + ["lvl"] = "48", + ["rnk"] = "2", + }, + [5402] = { + ["coords"] = { + [1] = { 9.7, 31.6, 5179, 0 }, + }, + ["lvl"] = "42", + ["rnk"] = "1", + }, + [5403] = { + ["coords"] = { + [1] = { 49, 43, 12, 270 }, + [2] = { 40.1, 68.3, 5581, 120 }, + [3] = { 43, 68.2, 5581, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [5405] = { + ["coords"] = { + [1] = { 8.1, 54.5, 11, 300 }, + [2] = { 84, 64.8, 12, 270 }, + [3] = { 65.2, 52, 15, 300 }, + [4] = { 52.4, 55.3, 267, 300 }, + [5] = { 40.8, 67.7, 5581, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [5406] = { + ["coords"] = { + [1] = { 62.3, 54.3, 17, 300 }, + [2] = { 81, 32.1, 85, 180 }, + [3] = { 81.2, 31.8, 85, 180 }, + [4] = { 41.3, 69.4, 5581, 120 }, + [5] = { 41, 66.5, 5581, 120 }, + [6] = { 35, 60.7, 5581, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [5411] = { + ["coords"] = { + [1] = { 51.5, 28.8, 440, 30 }, + }, + ["lvl"] = "40", + }, + [5412] = { + ["coords"] = { + [1] = { 56.3, 59.7, 405, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [5413] = { + ["coords"] = { + [1] = { 64.6, 37.2, 1519, 30 }, + [2] = { 51.2, 97.4, 5581, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [5414] = { + ["coords"] = { + [1] = { 87.5, 35.2, 10, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [5415] = "_", + [5418] = { + ["coords"] = { + [1] = { 87.8, 35.6, 10, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [5419] = { + ["coords"] = { + [1] = { 41.5, 40.4, 440, 300 }, + [2] = { 49.7, 40.1, 440, 300 }, + [3] = { 52, 40, 440, 300 }, + [4] = { 40.7, 39.9, 440, 300 }, + [5] = { 51.1, 39.9, 440, 300 }, + [6] = { 54.2, 39.8, 440, 300 }, + [7] = { 52.1, 38.8, 440, 300 }, + [8] = { 50.1, 38.7, 440, 300 }, + [9] = { 48.1, 38.7, 440, 300 }, + [10] = { 43.7, 38.7, 440, 300 }, + [11] = { 49, 38.7, 440, 300 }, + [12] = { 54.1, 38.6, 440, 300 }, + [13] = { 47.7, 38.6, 440, 300 }, + [14] = { 42.8, 38.6, 440, 300 }, + [15] = { 53.1, 38.5, 440, 300 }, + [16] = { 46.2, 37.3, 440, 300 }, + [17] = { 53.1, 37.2, 440, 300 }, + [18] = { 43.3, 37.1, 440, 300 }, + [19] = { 47, 37, 440, 300 }, + [20] = { 40.7, 36.9, 440, 300 }, + [21] = { 51.2, 36.4, 440, 300 }, + [22] = { 44.5, 36.2, 440, 300 }, + [23] = { 56, 35.7, 440, 300 }, + [24] = { 41.4, 35.6, 440, 300 }, + [25] = { 50.5, 35.6, 440, 300 }, + [26] = { 46.3, 35.6, 440, 300 }, + [27] = { 48.5, 35.5, 440, 300 }, + [28] = { 46.5, 35, 440, 300 }, + [29] = { 42, 34.3, 440, 300 }, + [30] = { 57, 34.2, 440, 300 }, + [31] = { 44.7, 34.2, 440, 300 }, + [32] = { 43.3, 34.2, 440, 300 }, + [33] = { 49.6, 34, 440, 300 }, + [34] = { 40.9, 33.2, 440, 300 }, + [35] = { 44.4, 33, 440, 300 }, + [36] = { 38.7, 32.9, 440, 300 }, + [37] = { 36.7, 32.9, 440, 300 }, + [38] = { 44, 32.8, 440, 300 }, + [39] = { 35.4, 32.8, 440, 300 }, + [40] = { 49.3, 32.8, 440, 300 }, + [41] = { 34.4, 32.6, 440, 300 }, + [42] = { 45.6, 32.3, 440, 300 }, + [43] = { 35.7, 31.5, 440, 300 }, + [44] = { 37.7, 31.4, 440, 300 }, + [45] = { 43.6, 31.4, 440, 300 }, + [46] = { 51.1, 31.3, 440, 300 }, + [47] = { 42.1, 31.3, 440, 300 }, + [48] = { 50.2, 31.1, 440, 300 }, + [49] = { 42.8, 30.1, 440, 300 }, + [50] = { 37.2, 29.9, 440, 300 }, + [51] = { 44.4, 29.8, 440, 300 }, + [52] = { 47, 29.5, 440, 300 }, + [53] = { 60.7, 29.3, 440, 300 }, + [54] = { 46.3, 28.9, 440, 300 }, + [55] = { 48.4, 28.9, 440, 300 }, + [56] = { 37.7, 28.6, 440, 300 }, + [57] = { 49.1, 27.5, 440, 300 }, + [58] = { 44.4, 27.1, 440, 300 }, + [59] = { 65.2, 27.1, 440, 300 }, + [60] = { 46.1, 27.1, 440, 300 }, + [61] = { 57.8, 26.4, 440, 300 }, + [62] = { 34.5, 25.7, 440, 300 }, + [63] = { 45.6, 25.6, 440, 300 }, + [64] = { 41.6, 25.5, 440, 300 }, + [65] = { 52.2, 24.2, 440, 300 }, + [66] = { 57.9, 24.1, 440, 300 }, + [67] = { 40.5, 24.1, 440, 300 }, + [68] = { 45.4, 23.5, 440, 300 }, + [69] = { 45.7, 23.1, 440, 300 }, + [70] = { 53, 22.6, 440, 300 }, + [71] = { 34.4, 22.5, 440, 300 }, + [72] = { 39.8, 22.2, 440, 300 }, + [73] = { 40.5, 21.9, 440, 300 }, + [74] = { 36.7, 20.5, 440, 300 }, + [75] = { 63.6, 19.6, 440, 300 }, + [76] = { 84.5, 57.1, 490, 300 }, + [77] = { 84.4, 38.3, 490, 300 }, + }, + ["lvl"] = "42-43", + }, + [5420] = { + ["coords"] = { + [1] = { 38.7, 69.2, 440, 300 }, + [2] = { 44.5, 69, 440, 300 }, + [3] = { 41.6, 67.7, 440, 300 }, + [4] = { 40.7, 66.2, 440, 300 }, + [5] = { 42.5, 66.1, 440, 300 }, + [6] = { 39.6, 66, 440, 300 }, + [7] = { 36.8, 66, 440, 300 }, + [8] = { 38.6, 64.7, 440, 300 }, + [9] = { 32.6, 64.6, 440, 300 }, + [10] = { 36.7, 64.5, 440, 300 }, + [11] = { 38.7, 63.1, 440, 300 }, + [12] = { 39.7, 62, 440, 300 }, + [13] = { 40.6, 61.9, 440, 300 }, + [14] = { 44.3, 61.7, 440, 300 }, + [15] = { 50.3, 61.7, 440, 300 }, + [16] = { 58.9, 61.4, 440, 300 }, + [17] = { 43.4, 60.6, 440, 300 }, + [18] = { 37.7, 60.5, 440, 300 }, + [19] = { 46.5, 60.4, 440, 300 }, + [20] = { 41.5, 60.4, 440, 300 }, + [21] = { 42.5, 60.3, 440, 300 }, + [22] = { 57, 60.2, 440, 300 }, + [23] = { 45.4, 60, 440, 300 }, + [24] = { 34.8, 59, 440, 300 }, + [25] = { 57.1, 59, 440, 300 }, + [26] = { 60.8, 59, 440, 300 }, + [27] = { 37.1, 58.9, 440, 300 }, + [28] = { 52.1, 58.9, 440, 300 }, + [29] = { 42.4, 58.9, 440, 300 }, + [30] = { 61.9, 58.8, 440, 300 }, + [31] = { 51.2, 58.8, 440, 300 }, + [32] = { 35.3, 58.8, 440, 300 }, + [33] = { 59.8, 57.5, 440, 300 }, + [34] = { 51.1, 57.5, 440, 300 }, + [35] = { 48.1, 57.4, 440, 300 }, + [36] = { 58.9, 57.3, 440, 300 }, + [37] = { 55, 57.2, 440, 300 }, + [38] = { 35.5, 57.2, 440, 300 }, + [39] = { 54.2, 57.1, 440, 300 }, + [40] = { 54, 56.2, 440, 300 }, + [41] = { 34.9, 56.1, 440, 300 }, + [42] = { 55.1, 56, 440, 300 }, + [43] = { 56.8, 56, 440, 300 }, + [44] = { 61.8, 55.9, 440, 300 }, + [45] = { 53.1, 55.9, 440, 300 }, + [46] = { 52.1, 55.9, 440, 300 }, + [47] = { 62.8, 55.8, 440, 300 }, + [48] = { 35.9, 55.8, 440, 300 }, + [49] = { 44.3, 55.8, 440, 300 }, + [50] = { 59.6, 55.7, 440, 300 }, + [51] = { 49.2, 55.7, 440, 300 }, + [52] = { 34.7, 54.8, 440, 300 }, + [53] = { 58.3, 54.6, 440, 300 }, + [54] = { 61.2, 54.5, 440, 300 }, + [55] = { 55, 54.5, 440, 300 }, + [56] = { 56.1, 54.5, 440, 300 }, + [57] = { 49.2, 54.5, 440, 300 }, + [58] = { 48, 54.4, 440, 300 }, + [59] = { 47.2, 54.3, 440, 300 }, + [60] = { 44.4, 53.9, 440, 300 }, + [61] = { 34.8, 53.1, 440, 300 }, + [62] = { 35.7, 53.1, 440, 300 }, + [63] = { 54.1, 53.1, 440, 300 }, + [64] = { 44.2, 53, 440, 300 }, + [65] = { 46.5, 53, 440, 300 }, + [66] = { 36.5, 52.8, 440, 300 }, + [67] = { 35.9, 52.2, 440, 300 }, + [68] = { 61.1, 51.9, 440, 300 }, + [69] = { 54.1, 51.6, 440, 300 }, + [70] = { 58.9, 51.6, 440, 300 }, + [71] = { 56.3, 51.5, 440, 300 }, + [72] = { 51.1, 51.5, 440, 300 }, + [73] = { 49.2, 50.9, 440, 300 }, + [74] = { 46.3, 50.8, 440, 300 }, + [75] = { 54.2, 50.5, 440, 300 }, + [76] = { 48.3, 50.4, 440, 300 }, + [77] = { 50.2, 50.1, 440, 300 }, + [78] = { 41.3, 50.1, 440, 300 }, + [79] = { 59.6, 50.1, 440, 300 }, + [80] = { 45.4, 48.8, 440, 300 }, + [81] = { 41.5, 48.7, 440, 300 }, + [82] = { 57, 48.7, 440, 300 }, + [83] = { 60.8, 48.7, 440, 300 }, + [84] = { 55.3, 47.8, 440, 300 }, + [85] = { 55.9, 47.5, 440, 300 }, + [86] = { 58.9, 47.3, 440, 300 }, + [87] = { 51.5, 47.3, 440, 300 }, + [88] = { 50.3, 47.3, 440, 300 }, + [89] = { 59.9, 47.2, 440, 300 }, + [90] = { 49.4, 46.8, 440, 300 }, + [91] = { 40.6, 46.4, 440, 300 }, + [92] = { 59.8, 46, 440, 300 }, + [93] = { 57.9, 45.9, 440, 300 }, + [94] = { 56.9, 45.9, 440, 300 }, + [95] = { 43.4, 45.9, 440, 300 }, + [96] = { 58.9, 45.9, 440, 300 }, + [97] = { 41.5, 45.8, 440, 300 }, + [98] = { 38.3, 45.8, 440, 300 }, + [99] = { 39.6, 45.2, 440, 300 }, + [100] = { 43.8, 44.7, 440, 300 }, + [101] = { 62.8, 44.5, 440, 300 }, + [102] = { 56.9, 44.3, 440, 300 }, + [103] = { 50.7, 44, 440, 300 }, + [104] = { 64.2, 43.2, 440, 300 }, + [105] = { 50.2, 43, 440, 300 }, + [106] = { 56, 42.9, 440, 300 }, + [107] = { 41.6, 42.7, 440, 300 }, + [108] = { 42.5, 42.5, 440, 300 }, + [109] = { 52.2, 41.9, 440, 300 }, + [110] = { 60.9, 41.6, 440, 300 }, + [111] = { 40.6, 41.3, 440, 300 }, + [112] = { 39.2, 41.3, 440, 300 }, + [113] = { 41.5, 40.7, 440, 300 }, + [114] = { 38.6, 40.3, 440, 300 }, + [115] = { 39.4, 40.2, 440, 300 }, + [116] = { 38.5, 38.7, 440, 300 }, + [117] = { 39.6, 38.7, 440, 300 }, + [118] = { 39.7, 35.9, 440, 300 }, + [119] = { 34.7, 35.5, 440, 300 }, + [120] = { 36.2, 34.3, 440, 300 }, + [121] = { 34.7, 33.5, 440, 300 }, + [122] = { 43.8, 76.2, 1941, 300 }, + [123] = { 33.7, 70.1, 1941, 300 }, + [124] = { 34.1, 63.8, 1941, 300 }, + [125] = { 53.5, 63.7, 1941, 300 }, + [126] = { 8.5, 63.2, 1941, 300 }, + [127] = { 58.6, 62.8, 1941, 300 }, + [128] = { 4, 62.6, 1941, 300 }, + [129] = { 48.3, 55.8, 1941, 300 }, + [130] = { 3.8, 55.7, 1941, 300 }, + [131] = { 43.7, 55, 1941, 300 }, + [132] = { 23.7, 54.5, 1941, 300 }, + [133] = { 19.3, 54, 1941, 300 }, + [134] = { 18.7, 49.1, 1941, 300 }, + [135] = { 23.8, 48.3, 1941, 300 }, + [136] = { 32.6, 48, 1941, 300 }, + [137] = { 58.3, 47.8, 1941, 300 }, + [138] = { 13.9, 47.6, 1941, 300 }, + [139] = { 8.7, 47.6, 1941, 300 }, + [140] = { 63.7, 47.2, 1941, 300 }, + [141] = { 47.1, 46.6, 1941, 300 }, + [142] = { 40.7, 41, 1941, 300 }, + [143] = { 55.4, 40.6, 1941, 300 }, + [144] = { 23.5, 40.6, 1941, 300 }, + [145] = { 29.4, 40.5, 1941, 300 }, + [146] = { 18.7, 33.1, 1941, 300 }, + [147] = { 54.9, 26.8, 1941, 300 }, + [148] = { 18.8, 25.5, 1941, 300 }, + [149] = { 43.7, 25.3, 1941, 300 }, + [150] = { 30.5, 25, 1941, 300 }, + [151] = { 3.5, 24.9, 1941, 300 }, + [152] = { 19.4, 19.8, 1941, 300 }, + [153] = { 47.2, 17.5, 1941, 300 }, + [154] = { 33.8, 10.2, 1941, 300 }, + [155] = { 53.3, 10.1, 1941, 300 }, + [156] = { 25.2, 5.7, 1941, 300 }, + [157] = { 28.2, 3.9, 1941, 300 }, + [158] = { 43.7, 3.2, 1941, 300 }, + [159] = { 5.7, 3.1, 1941, 300 }, + [160] = { 48.4, 2.8, 1941, 300 }, + }, + ["lvl"] = "45-46", + }, + [5421] = { + ["coords"] = { + [1] = { 34.7, 79.3, 440, 300 }, + [2] = { 33.8, 79.1, 440, 300 }, + [3] = { 32, 77.9, 440, 300 }, + [4] = { 49.3, 77.9, 440, 300 }, + [5] = { 47.3, 77.7, 440, 300 }, + [6] = { 39.5, 77.6, 440, 300 }, + [7] = { 30, 76.3, 440, 300 }, + [8] = { 42.6, 76.3, 440, 300 }, + [9] = { 33.7, 76.3, 440, 300 }, + [10] = { 34.8, 76.2, 440, 300 }, + [11] = { 35.7, 74.9, 440, 300 }, + [12] = { 47.4, 74.9, 440, 300 }, + [13] = { 36.7, 74.8, 440, 300 }, + [14] = { 43.5, 74.8, 440, 300 }, + [15] = { 30.9, 74.8, 440, 300 }, + [16] = { 29.9, 74.8, 440, 300 }, + [17] = { 48.3, 74.4, 440, 300 }, + [18] = { 36.8, 73.4, 440, 300 }, + [19] = { 28.9, 73.4, 440, 300 }, + [20] = { 30.9, 73.3, 440, 300 }, + [21] = { 30.9, 72, 440, 300 }, + [22] = { 29.9, 71.9, 440, 300 }, + [23] = { 36.7, 71.9, 440, 300 }, + [24] = { 46.3, 71.9, 440, 300 }, + [25] = { 30, 70.5, 440, 300 }, + [26] = { 35.8, 70.5, 440, 300 }, + [27] = { 33.8, 70.5, 440, 300 }, + [28] = { 45.3, 70.5, 440, 300 }, + [29] = { 33, 70.3, 440, 300 }, + [30] = { 48.3, 69.8, 440, 300 }, + [31] = { 33.7, 69, 440, 300 }, + [32] = { 45.6, 69, 440, 300 }, + [33] = { 34.9, 68.8, 440, 300 }, + [34] = { 35.7, 67.6, 440, 300 }, + [35] = { 32.8, 66, 440, 300 }, + [36] = { 35.6, 66, 440, 300 }, + [37] = { 26.1, 61.6, 440, 300 }, + [38] = { 26, 60.3, 440, 300 }, + [39] = { 27.1, 60.2, 440, 300 }, + [40] = { 25.7, 59.4, 440, 300 }, + [41] = { 27.5, 58.9, 440, 300 }, + [42] = { 27.9, 58.8, 440, 300 }, + [43] = { 25.2, 58.2, 440, 300 }, + [44] = { 29.7, 57.6, 440, 300 }, + [45] = { 26.1, 57.4, 440, 300 }, + [46] = { 33.8, 57, 440, 300 }, + [47] = { 28, 56.7, 440, 300 }, + [48] = { 30, 56.1, 440, 300 }, + [49] = { 25.5, 56, 440, 300 }, + [50] = { 28.9, 55.8, 440, 300 }, + [51] = { 29.6, 54.6, 440, 300 }, + [52] = { 29.1, 54.4, 440, 300 }, + [53] = { 30.8, 54.3, 440, 300 }, + [54] = { 25.6, 53.9, 440, 300 }, + }, + ["lvl"] = "48-49", + }, + [5422] = { + ["coords"] = { + [1] = { 78.3, 99.7, 400, 300 }, + [2] = { 55.1, 36.8, 440, 300 }, + [3] = { 54.6, 35.8, 440, 300 }, + [4] = { 53.9, 35.7, 440, 300 }, + [5] = { 52, 35.6, 440, 300 }, + [6] = { 53.1, 35.6, 440, 300 }, + [7] = { 56.6, 35.6, 440, 300 }, + [8] = { 55.9, 35, 440, 300 }, + [9] = { 51.2, 34.5, 440, 300 }, + [10] = { 50.4, 33, 440, 300 }, + [11] = { 57.9, 33, 440, 300 }, + [12] = { 54.6, 32.8, 440, 300 }, + [13] = { 55.8, 32.7, 440, 300 }, + [14] = { 52, 32.7, 440, 300 }, + [15] = { 54, 32.3, 440, 300 }, + [16] = { 54.2, 31.5, 440, 300 }, + [17] = { 58.4, 31.4, 440, 300 }, + [18] = { 49.2, 31.1, 440, 300 }, + [19] = { 57, 31.1, 440, 300 }, + [20] = { 52.9, 30.9, 440, 300 }, + [21] = { 61.6, 30.4, 440, 180 }, + [22] = { 48.2, 30.2, 440, 300 }, + [23] = { 54.6, 29.9, 440, 300 }, + [24] = { 66.3, 29.7, 440, 180 }, + [25] = { 49.2, 29.5, 440, 300 }, + [26] = { 64.6, 29.2, 440, 180 }, + [27] = { 66.5, 29, 440, 300 }, + [28] = { 65.8, 28.9, 440, 300 }, + [29] = { 48.3, 28.8, 440, 300 }, + [30] = { 61.9, 28.6, 440, 300 }, + [31] = { 49.1, 28.4, 440, 300 }, + [32] = { 63.1, 28.1, 440, 180 }, + [33] = { 58.5, 27.3, 440, 300 }, + [34] = { 63.5, 27.1, 440, 300 }, + [35] = { 47.3, 27.1, 440, 300 }, + [36] = { 55.8, 27, 440, 300 }, + [37] = { 66.1, 27, 440, 300 }, + [38] = { 47.7, 27, 440, 300 }, + [39] = { 59.5, 25.5, 440, 180 }, + [40] = { 65.8, 25.2, 440, 180 }, + [41] = { 62, 25.1, 440, 180 }, + [42] = { 58.5, 24.5, 440, 180 }, + [43] = { 62.8, 24.2, 440, 300 }, + [44] = { 55.2, 24.2, 440, 300 }, + [45] = { 48.3, 24.2, 440, 300 }, + [46] = { 61.6, 23.8, 440, 180 }, + [47] = { 62.2, 23.7, 440, 180 }, + [48] = { 54.1, 23.4, 440, 300 }, + [49] = { 57.2, 22.9, 440, 300 }, + [50] = { 62.5, 22.7, 440, 300 }, + [51] = { 63.3, 22.7, 440, 300 }, + [52] = { 65.3, 22.5, 440, 180 }, + [53] = { 53.1, 22.1, 440, 300 }, + [54] = { 64.3, 21.9, 440, 180 }, + [55] = { 63, 21.6, 440, 180 }, + [56] = { 63.5, 21, 440, 300 }, + [57] = { 65.7, 19.9, 440, 300 }, + }, + ["lvl"] = "40-41", + }, + [5423] = { + ["coords"] = { + [1] = { 54.1, 54.3, 440, 300 }, + [2] = { 53.3, 53.3, 440, 300 }, + [3] = { 52, 53.3, 440, 300 }, + [4] = { 56, 53.2, 440, 300 }, + [5] = { 58.2, 53.1, 440, 300 }, + [6] = { 59.9, 51.7, 440, 300 }, + [7] = { 53.2, 51.2, 440, 300 }, + [8] = { 55.1, 50.2, 440, 300 }, + [9] = { 55.9, 50.1, 440, 300 }, + [10] = { 53.2, 49.8, 440, 300 }, + [11] = { 57.6, 48.7, 440, 300 }, + [12] = { 59.9, 48.7, 440, 300 }, + [13] = { 55.3, 48.4, 440, 300 }, + [14] = { 52.2, 47.7, 440, 300 }, + [15] = { 58, 47.3, 440, 300 }, + [16] = { 60.9, 47.2, 440, 300 }, + [17] = { 61.8, 45.8, 440, 300 }, + [18] = { 55, 45.7, 440, 300 }, + [19] = { 59.1, 44.8, 440, 300 }, + [20] = { 60, 44.6, 440, 300 }, + [21] = { 63.8, 44.4, 440, 300 }, + [22] = { 55, 44.4, 440, 300 }, + [23] = { 61.8, 44.3, 440, 300 }, + [24] = { 57.9, 44.1, 440, 300 }, + [25] = { 43.4, 43.1, 440, 300 }, + [26] = { 52, 43, 440, 300 }, + [27] = { 64.2, 43, 440, 300 }, + [28] = { 40.4, 43, 440, 300 }, + [29] = { 58, 43, 440, 300 }, + [30] = { 47.3, 42.9, 440, 300 }, + [31] = { 61.8, 42.9, 440, 300 }, + [32] = { 55.1, 42.9, 440, 300 }, + [33] = { 54.4, 42.8, 440, 300 }, + [34] = { 57.2, 42.8, 440, 300 }, + [35] = { 51.3, 42.7, 440, 300 }, + [36] = { 44.4, 42.4, 440, 300 }, + [37] = { 50.2, 42.2, 440, 300 }, + [38] = { 46.3, 41.7, 440, 300 }, + [39] = { 47.2, 41.6, 440, 300 }, + [40] = { 51, 41.6, 440, 300 }, + [41] = { 57, 41.5, 440, 300 }, + [42] = { 61.8, 41.5, 440, 300 }, + [43] = { 48.3, 41.5, 440, 300 }, + [44] = { 54.1, 41.5, 440, 300 }, + [45] = { 56, 41.3, 440, 300 }, + [46] = { 62.8, 41.1, 440, 300 }, + [47] = { 53.2, 40.8, 440, 300 }, + [48] = { 56.3, 40.4, 440, 300 }, + [49] = { 42.5, 40.4, 440, 300 }, + [50] = { 47.3, 40.2, 440, 300 }, + [51] = { 46.3, 40.1, 440, 300 }, + [52] = { 53.2, 40.1, 440, 300 }, + [53] = { 48.1, 40, 440, 300 }, + [54] = { 50.2, 39.4, 440, 300 }, + [55] = { 46.5, 38.7, 440, 300 }, + [56] = { 40.6, 38.5, 440, 300 }, + [57] = { 51.3, 38.4, 440, 300 }, + [58] = { 51.2, 37.6, 440, 300 }, + [59] = { 44.4, 37.6, 440, 300 }, + [60] = { 48.3, 37.4, 440, 300 }, + [61] = { 52.1, 37.2, 440, 300 }, + [62] = { 49.9, 37, 440, 300 }, + [63] = { 50.2, 36.4, 440, 300 }, + [64] = { 45.4, 36.1, 440, 300 }, + [65] = { 43.4, 35.4, 440, 300 }, + [66] = { 50.3, 34.1, 440, 300 }, + [67] = { 47.3, 33.5, 440, 300 }, + [68] = { 39.6, 33.4, 440, 300 }, + [69] = { 37.7, 33, 440, 300 }, + [70] = { 48.2, 32.9, 440, 300 }, + [71] = { 42.9, 32.9, 440, 300 }, + [72] = { 46.4, 32.9, 440, 300 }, + [73] = { 36.6, 31.3, 440, 300 }, + [74] = { 44.5, 30.8, 440, 300 }, + [75] = { 45.7, 29.8, 440, 300 }, + [76] = { 36.9, 28.5, 440, 300 }, + [77] = { 34.8, 27.2, 440, 300 }, + [78] = { 46.5, 25.6, 440, 300 }, + [79] = { 47.4, 25.2, 440, 300 }, + [80] = { 44.5, 24, 440, 300 }, + [81] = { 39.7, 24, 440, 300 }, + [82] = { 34.8, 23.9, 440, 300 }, + [83] = { 46.3, 23, 440, 300 }, + [84] = { 36.1, 21.9, 440, 300 }, + [85] = { 34.7, 21.2, 440, 300 }, + [86] = { 85.2, 47.1, 490, 300 }, + [87] = { 85, 35.8, 490, 300 }, + [88] = { 19.2, 39.3, 1941, 300 }, + [89] = { 15, 34.3, 1941, 300 }, + [90] = { 8.5, 34, 1941, 300 }, + [91] = { 28.8, 33.4, 1941, 300 }, + [92] = { 40, 33.2, 1941, 300 }, + [93] = { 48.4, 25.8, 1941, 300 }, + [94] = { 14.2, 23.3, 1941, 300 }, + [95] = { 24.2, 17.9, 1941, 300 }, + [96] = { 28.1, 17.5, 1941, 300 }, + [97] = { 14.3, 16.2, 1941, 300 }, + [98] = { 36.9, 10.5, 1941, 300 }, + [99] = { 48.5, 10.1, 1941, 300 }, + [100] = { 25.3, 9, 1941, 300 }, + [101] = { 9.4, 5, 1941, 300 }, + [102] = { 38.8, 3.3, 1941, 300 }, + [103] = { 53.6, 2.6, 1941, 300 }, + }, + ["lvl"] = "43-44", + }, + [5424] = { + ["coords"] = { + [1] = { 49.3, 76.3, 440, 300 }, + [2] = { 29, 75.9, 440, 300 }, + [3] = { 37.6, 74.9, 440, 300 }, + [4] = { 44.6, 74.8, 440, 300 }, + [5] = { 33.7, 74.8, 440, 300 }, + [6] = { 31.9, 73.5, 440, 300 }, + [7] = { 47.3, 72, 440, 300 }, + [8] = { 34.6, 70.5, 440, 300 }, + [9] = { 32.9, 69.1, 440, 300 }, + [10] = { 40.6, 67.7, 440, 300 }, + [11] = { 34.6, 67.6, 440, 300 }, + [12] = { 39.7, 67.6, 440, 300 }, + [13] = { 33.8, 67.5, 440, 300 }, + [14] = { 44.1, 67.4, 440, 300 }, + [15] = { 38.6, 66.2, 440, 300 }, + [16] = { 37.8, 66.1, 440, 300 }, + [17] = { 41.6, 66, 440, 300 }, + [18] = { 42.3, 64.9, 440, 300 }, + [19] = { 34.6, 64.6, 440, 300 }, + [20] = { 35.7, 64.6, 440, 300 }, + [21] = { 34.9, 63.2, 440, 300 }, + [22] = { 33, 63.2, 440, 300 }, + [23] = { 50.2, 63.2, 440, 300 }, + [24] = { 35.6, 63.1, 440, 300 }, + [25] = { 52.2, 61.9, 440, 300 }, + [26] = { 37.6, 61.9, 440, 300 }, + [27] = { 51.3, 61.9, 440, 300 }, + [28] = { 42.5, 61.7, 440, 300 }, + [29] = { 49.3, 61.7, 440, 300 }, + [30] = { 38.7, 61.6, 440, 300 }, + [31] = { 34.9, 61.6, 440, 300 }, + [32] = { 33.9, 61.3, 440, 300 }, + [33] = { 56, 61, 440, 300 }, + [34] = { 36.7, 60.9, 440, 300 }, + [35] = { 40.9, 60.4, 440, 300 }, + [36] = { 34.9, 60.4, 440, 300 }, + [37] = { 28.1, 60.2, 440, 300 }, + [38] = { 52, 60.1, 440, 300 }, + [39] = { 30.7, 60, 440, 300 }, + [40] = { 41.3, 59.2, 440, 300 }, + [41] = { 45.4, 59, 440, 300 }, + [42] = { 54.1, 59, 440, 300 }, + [43] = { 55.5, 58.9, 440, 300 }, + [44] = { 44.5, 58.9, 440, 300 }, + [45] = { 46.7, 58.9, 440, 300 }, + [46] = { 59.7, 58.8, 440, 300 }, + [47] = { 30, 58.7, 440, 300 }, + [48] = { 43.5, 58.7, 440, 300 }, + [49] = { 34.7, 58, 440, 300 }, + [50] = { 43.7, 57.6, 440, 300 }, + [51] = { 31.9, 57.3, 440, 300 }, + [52] = { 51.2, 56, 440, 300 }, + [53] = { 48.3, 55.9, 440, 300 }, + [54] = { 33, 55.9, 440, 300 }, + [55] = { 31.9, 55.6, 440, 300 }, + [56] = { 45.2, 54.9, 440, 300 }, + [57] = { 58.9, 54.9, 440, 300 }, + [58] = { 33.1, 54.6, 440, 300 }, + [59] = { 35.8, 54.3, 440, 300 }, + [60] = { 31.8, 54.2, 440, 300 }, + [61] = { 33.9, 54.1, 440, 300 }, + [62] = { 32, 53.3, 440, 300 }, + [63] = { 31.2, 53.2, 440, 300 }, + [64] = { 59.9, 53.1, 440, 300 }, + [65] = { 58.9, 53, 440, 300 }, + [66] = { 29.4, 53, 440, 300 }, + [67] = { 47.3, 52.7, 440, 300 }, + [68] = { 29.9, 51.7, 440, 300 }, + [69] = { 49.2, 51, 440, 300 }, + [70] = { 29.6, 50.4, 440, 300 }, + [71] = { 45.1, 50.2, 440, 300 }, + [72] = { 47.1, 50.1, 440, 300 }, + [73] = { 36.6, 49.8, 440, 300 }, + [74] = { 50.2, 48.9, 440, 300 }, + [75] = { 49.2, 48.4, 440, 300 }, + [76] = { 51.1, 48, 440, 300 }, + [77] = { 38.7, 47.6, 440, 300 }, + [78] = { 44.1, 47.4, 440, 300 }, + [79] = { 40.5, 47.3, 440, 300 }, + [80] = { 42.4, 47.3, 440, 300 }, + [81] = { 41.4, 47.3, 440, 300 }, + [82] = { 37.4, 47.2, 440, 300 }, + [83] = { 42.6, 46, 440, 300 }, + [84] = { 45.3, 45.9, 440, 300 }, + [85] = { 44.5, 45.8, 440, 300 }, + [86] = { 46.3, 45.8, 440, 300 }, + [87] = { 51.2, 45.7, 440, 300 }, + [88] = { 51.1, 44.9, 440, 300 }, + [89] = { 41.6, 44.7, 440, 300 }, + [90] = { 45.3, 44.6, 440, 300 }, + [91] = { 46.1, 44.5, 440, 300 }, + [92] = { 37.8, 44.3, 440, 300 }, + [93] = { 38.6, 43.7, 440, 300 }, + [94] = { 38.3, 43, 440, 300 }, + [95] = { 40, 42.9, 440, 300 }, + [96] = { 39.6, 41.5, 440, 300 }, + [97] = { 38.6, 37.2, 440, 300 }, + [98] = { 38, 35.8, 440, 300 }, + [99] = { 36.7, 35.5, 440, 300 }, + [100] = { 39.5, 34.6, 440, 300 }, + [101] = { 75.6, 90.3, 490, 300 }, + [102] = { 9.2, 78.8, 1941, 300 }, + [103] = { 4.5, 78.6, 1941, 300 }, + [104] = { 28.8, 74.3, 1941, 300 }, + [105] = { 8, 69.5, 1941, 300 }, + [106] = { 19.1, 63.7, 1941, 300 }, + [107] = { 26.2, 63.4, 1941, 300 }, + [108] = { 47.8, 62.7, 1941, 300 }, + [109] = { 4.1, 48, 1941, 300 }, + [110] = { 43.3, 42.2, 1941, 300 }, + [111] = { 48.5, 33, 1941, 300 }, + [112] = { 43.4, 32.9, 1941, 300 }, + [113] = { 3.7, 6.6, 1941, 300 }, + }, + ["lvl"] = "46-47", + }, + [5425] = { + ["coords"] = { + [1] = { 54.5, 38.7, 440, 300 }, + [2] = { 56, 37.5, 440, 300 }, + [3] = { 54.2, 37.3, 440, 300 }, + [4] = { 49.4, 36.6, 440, 300 }, + [5] = { 52.1, 35.8, 440, 300 }, + [6] = { 49.3, 35.6, 440, 300 }, + [7] = { 52, 34.5, 440, 300 }, + [8] = { 54.1, 34, 440, 300 }, + [9] = { 40.5, 33.3, 440, 300 }, + [10] = { 57, 32.8, 440, 300 }, + [11] = { 51.5, 32.8, 440, 300 }, + [12] = { 51.1, 32.7, 440, 300 }, + [13] = { 58.7, 32.7, 440, 300 }, + [14] = { 52.9, 32.4, 440, 300 }, + [15] = { 47.3, 32.1, 440, 300 }, + [16] = { 52.1, 32, 440, 300 }, + [17] = { 48.3, 32, 440, 300 }, + [18] = { 55.2, 31.7, 440, 300 }, + [19] = { 57.9, 31.1, 440, 300 }, + [20] = { 34.9, 30.9, 440, 300 }, + [21] = { 55.9, 30.7, 440, 300 }, + [22] = { 35.6, 30.3, 440, 300 }, + [23] = { 60.2, 30, 440, 300 }, + [24] = { 37.6, 29.9, 440, 300 }, + [25] = { 43.4, 29.9, 440, 300 }, + [26] = { 48.3, 29.7, 440, 300 }, + [27] = { 65.5, 29.6, 440, 300 }, + [28] = { 46.4, 29.4, 440, 300 }, + [29] = { 35.6, 28.7, 440, 300 }, + [30] = { 34.7, 28.5, 440, 300 }, + [31] = { 43.7, 28.5, 440, 300 }, + [32] = { 44.4, 28.4, 440, 300 }, + [33] = { 61.1, 28.3, 440, 300 }, + [34] = { 45.6, 28.3, 440, 300 }, + [35] = { 49.2, 28.3, 440, 300 }, + [36] = { 47.1, 28.2, 440, 300 }, + [37] = { 42.5, 27.8, 440, 300 }, + [38] = { 38.5, 27.4, 440, 300 }, + [39] = { 49.2, 27.2, 440, 300 }, + [40] = { 41.9, 27.1, 440, 300 }, + [41] = { 43.4, 26.7, 440, 300 }, + [42] = { 45, 26.7, 440, 300 }, + [43] = { 48.3, 26.3, 440, 300 }, + [44] = { 55.1, 26, 440, 300 }, + [45] = { 47.2, 25.7, 440, 300 }, + [46] = { 58.3, 25.6, 440, 300 }, + [47] = { 40.1, 25.6, 440, 300 }, + [48] = { 57.2, 25.6, 440, 300 }, + [49] = { 43.7, 25.5, 440, 300 }, + [50] = { 53.5, 25.4, 440, 300 }, + [51] = { 55.9, 25.3, 440, 300 }, + [52] = { 44.2, 25.2, 440, 300 }, + [53] = { 56, 24.4, 440, 300 }, + [54] = { 56.8, 24, 440, 300 }, + [55] = { 46, 24, 440, 300 }, + [56] = { 53.3, 23.9, 440, 300 }, + [57] = { 39.6, 22.6, 440, 300 }, + [58] = { 44.1, 22.5, 440, 300 }, + [59] = { 62.8, 21.4, 440, 300 }, + [60] = { 61.9, 20.5, 440, 300 }, + [61] = { 85.4, 53.9, 490, 300 }, + [62] = { 85.1, 49.4, 490, 300 }, + }, + ["lvl"] = "41-42", + }, + [5426] = { + ["coords"] = { + [1] = { 51.2, 63.4, 440, 300 }, + [2] = { 52.1, 63.2, 440, 300 }, + [3] = { 45.2, 61.8, 440, 300 }, + [4] = { 61.7, 60.6, 440, 300 }, + [5] = { 44.4, 60.4, 440, 300 }, + [6] = { 60.7, 60.3, 440, 300 }, + [7] = { 59.9, 60.3, 440, 300 }, + [8] = { 57.9, 60.3, 440, 300 }, + [9] = { 51.2, 60.3, 440, 300 }, + [10] = { 58.8, 60, 440, 300 }, + [11] = { 58.7, 59, 440, 300 }, + [12] = { 48.3, 58.9, 440, 300 }, + [13] = { 57.9, 58.9, 440, 300 }, + [14] = { 53.2, 58.6, 440, 300 }, + [15] = { 56.1, 58.4, 440, 300 }, + [16] = { 56.2, 57.8, 440, 300 }, + [17] = { 47.3, 57.6, 440, 300 }, + [18] = { 60.8, 57.6, 440, 300 }, + [19] = { 58, 57.5, 440, 300 }, + [20] = { 50.3, 57.5, 440, 300 }, + [21] = { 44.4, 57.4, 440, 300 }, + [22] = { 49.2, 57.4, 440, 300 }, + [23] = { 53.2, 57.4, 440, 300 }, + [24] = { 51.9, 57.3, 440, 300 }, + [25] = { 61.8, 57.3, 440, 300 }, + [26] = { 63.7, 57.3, 440, 300 }, + [27] = { 57, 57.1, 440, 300 }, + [28] = { 60.8, 56.5, 440, 300 }, + [29] = { 63.8, 56.4, 440, 300 }, + [30] = { 56, 56.1, 440, 300 }, + [31] = { 58, 56.1, 440, 300 }, + [32] = { 50.2, 55.9, 440, 300 }, + [33] = { 58.9, 55.4, 440, 300 }, + [34] = { 53, 55.2, 440, 300 }, + [35] = { 57, 54.9, 440, 300 }, + [36] = { 51.3, 54.7, 440, 300 }, + [37] = { 52, 54.5, 440, 300 }, + [38] = { 60.9, 54.5, 440, 300 }, + [39] = { 50.3, 54, 440, 300 }, + [40] = { 49.2, 53.7, 440, 300 }, + [41] = { 48.5, 53.4, 440, 300 }, + [42] = { 57, 53.1, 440, 300 }, + [43] = { 55.1, 53.1, 440, 300 }, + [44] = { 60.9, 53.1, 440, 300 }, + [45] = { 49.7, 53.1, 440, 300 }, + [46] = { 45.6, 53, 440, 300 }, + [47] = { 49.3, 52.8, 440, 300 }, + [48] = { 46.4, 52.4, 440, 300 }, + [49] = { 50.6, 52.1, 440, 300 }, + [50] = { 50, 51.8, 440, 300 }, + [51] = { 47.1, 51.7, 440, 300 }, + [52] = { 57.9, 51.7, 440, 300 }, + [53] = { 57, 51.6, 440, 300 }, + [54] = { 45.1, 51.5, 440, 300 }, + [55] = { 52.2, 51.4, 440, 300 }, + [56] = { 48.3, 51, 440, 300 }, + [57] = { 55.1, 50.9, 440, 300 }, + [58] = { 37.7, 50.5, 440, 300 }, + [59] = { 52.1, 50.3, 440, 300 }, + [60] = { 58.5, 50.1, 440, 300 }, + [61] = { 58, 49.4, 440, 300 }, + [62] = { 56.9, 49.3, 440, 300 }, + [63] = { 53.3, 49, 440, 300 }, + [64] = { 54.1, 48.9, 440, 300 }, + [65] = { 37.6, 48.8, 440, 300 }, + [66] = { 38.6, 48.8, 440, 300 }, + [67] = { 52.3, 48.7, 440, 300 }, + [68] = { 56.2, 48.6, 440, 300 }, + [69] = { 39.6, 48, 440, 300 }, + [70] = { 39.7, 47, 440, 300 }, + [71] = { 48.2, 46.6, 440, 300 }, + [72] = { 47, 46.5, 440, 300 }, + [73] = { 47.7, 46.1, 440, 300 }, + [74] = { 56, 46, 440, 300 }, + [75] = { 54.3, 45.9, 440, 300 }, + [76] = { 48.7, 45.8, 440, 300 }, + [77] = { 62.7, 45.8, 440, 300 }, + [78] = { 60.8, 45.4, 440, 300 }, + [79] = { 48.8, 45, 440, 300 }, + [80] = { 48.3, 45, 440, 300 }, + [81] = { 39.5, 44.3, 440, 300 }, + [82] = { 56, 44.3, 440, 300 }, + [83] = { 53.2, 43.4, 440, 300 }, + [84] = { 46.2, 43.1, 440, 300 }, + [85] = { 58.9, 43, 440, 300 }, + [86] = { 60.9, 43, 440, 300 }, + [87] = { 59.8, 42.9, 440, 300 }, + [88] = { 62.8, 42.8, 440, 300 }, + [89] = { 45.3, 42.5, 440, 300 }, + [90] = { 49.6, 42.3, 440, 300 }, + [91] = { 43, 42, 440, 300 }, + [92] = { 65.6, 42, 440, 300 }, + [93] = { 52.3, 41.8, 440, 300 }, + [94] = { 55, 41.6, 440, 300 }, + [95] = { 49.3, 41.6, 440, 300 }, + [96] = { 45.7, 41.5, 440, 300 }, + [97] = { 59.8, 41.5, 440, 300 }, + [98] = { 42.5, 41.4, 440, 300 }, + [99] = { 44.4, 41.4, 440, 300 }, + [100] = { 44.8, 40.1, 440, 300 }, + [101] = { 55.5, 40.1, 440, 300 }, + [102] = { 57, 39.9, 440, 300 }, + [103] = { 44.7, 39.6, 440, 300 }, + [104] = { 45.5, 39.3, 440, 300 }, + [105] = { 45, 39.3, 440, 300 }, + [106] = { 44.4, 39.2, 440, 300 }, + [107] = { 41.4, 38.8, 440, 300 }, + [108] = { 45.8, 38.6, 440, 300 }, + [109] = { 37.6, 38.2, 440, 300 }, + [110] = { 45.8, 38, 440, 300 }, + [111] = { 37.8, 37.2, 440, 300 }, + [112] = { 41.4, 37.2, 440, 300 }, + [113] = { 36.7, 37.1, 440, 300 }, + [114] = { 42.7, 37, 440, 300 }, + [115] = { 39.6, 36.8, 440, 300 }, + [116] = { 51.2, 36, 440, 300 }, + [117] = { 42.5, 35.8, 440, 300 }, + [118] = { 47.5, 35.7, 440, 300 }, + [119] = { 38.9, 35.6, 440, 300 }, + [120] = { 40.4, 35.6, 440, 300 }, + [121] = { 35.7, 35.5, 440, 300 }, + [122] = { 45.5, 34.5, 440, 300 }, + [123] = { 35.4, 34.4, 440, 300 }, + [124] = { 40.9, 34.4, 440, 300 }, + [125] = { 41.4, 34.3, 440, 300 }, + [126] = { 37.7, 33.8, 440, 300 }, + [127] = { 45.9, 31.3, 440, 300 }, + [128] = { 45.4, 30.7, 440, 300 }, + [129] = { 4.4, 86.3, 1941, 300 }, + [130] = { 8.9, 85.4, 1941, 300 }, + [131] = { 58, 72, 1941, 300 }, + [132] = { 53, 70.7, 1941, 300 }, + [133] = { 48.7, 70.6, 1941, 300 }, + [134] = { 38.6, 70.6, 1941, 300 }, + [135] = { 4, 70.4, 1941, 300 }, + [136] = { 43.1, 68.9, 1941, 300 }, + [137] = { 42.5, 63.5, 1941, 300 }, + [138] = { 38.4, 63.1, 1941, 300 }, + [139] = { 14.5, 61.8, 1941, 300 }, + [140] = { 29.1, 60.8, 1941, 300 }, + [141] = { 29.9, 57.4, 1941, 300 }, + [142] = { 53.5, 56.4, 1941, 300 }, + [143] = { 38.8, 55.9, 1941, 300 }, + [144] = { 14.5, 55.2, 1941, 300 }, + [145] = { 7.6, 55, 1941, 300 }, + [146] = { 58.5, 55, 1941, 300 }, + [147] = { 68, 54.7, 1941, 300 }, + [148] = { 33.7, 54.1, 1941, 300 }, + [149] = { 53, 50.9, 1941, 300 }, + [150] = { 68.5, 50.1, 1941, 300 }, + [151] = { 28.9, 48.6, 1941, 300 }, + [152] = { 38.8, 48.5, 1941, 300 }, + [153] = { 43.6, 45.1, 1941, 300 }, + [154] = { 13.5, 43.9, 1941, 300 }, + [155] = { 34, 42.7, 1941, 300 }, + [156] = { 4.9, 41.4, 1941, 300 }, + [157] = { 8.3, 40.3, 1941, 300 }, + [158] = { 53.6, 40.2, 1941, 300 }, + [159] = { 33.9, 33.4, 1941, 300 }, + [160] = { 24, 33, 1941, 300 }, + [161] = { 53.8, 33, 1941, 300 }, + [162] = { 1.2, 27.8, 1941, 300 }, + [163] = { 38.5, 25.9, 1941, 300 }, + [164] = { 33.6, 25.5, 1941, 300 }, + [165] = { 9.1, 24.4, 1941, 300 }, + [166] = { 24, 21.9, 1941, 300 }, + [167] = { 8.5, 18.5, 1941, 300 }, + [168] = { 41.4, 17.8, 1941, 300 }, + [169] = { 39.1, 14.2, 1941, 300 }, + [170] = { 33.5, 13.7, 1941, 300 }, + [171] = { 14.7, 11.8, 1941, 300 }, + [172] = { 18.9, 11.3, 1941, 300 }, + [173] = { 9.7, 10.5, 1941, 300 }, + [174] = { 29.6, 10, 1941, 300 }, + }, + ["lvl"] = "44-45", + }, + [5427] = { + ["coords"] = { + [1] = { 32.9, 79.1, 440, 300 }, + [2] = { 40.6, 77.8, 440, 300 }, + [3] = { 32.8, 77.8, 440, 300 }, + [4] = { 34.7, 77.7, 440, 300 }, + [5] = { 29.9, 77.7, 440, 300 }, + [6] = { 33.7, 77.7, 440, 300 }, + [7] = { 30.9, 77.7, 440, 300 }, + [8] = { 48.3, 77.6, 440, 300 }, + [9] = { 43.4, 77.5, 440, 300 }, + [10] = { 47.2, 76.5, 440, 300 }, + [11] = { 43.5, 76.4, 440, 300 }, + [12] = { 44.5, 76.3, 440, 300 }, + [13] = { 46.3, 76.3, 440, 300 }, + [14] = { 32.9, 76.3, 440, 300 }, + [15] = { 48.3, 76.3, 440, 300 }, + [16] = { 45.4, 76.3, 440, 300 }, + [17] = { 38.8, 76.1, 440, 300 }, + [18] = { 34.7, 74.9, 440, 300 }, + [19] = { 46.4, 74.9, 440, 300 }, + [20] = { 31.9, 74.9, 440, 300 }, + [21] = { 45.4, 74.8, 440, 300 }, + [22] = { 30.2, 73.5, 440, 300 }, + [23] = { 35.7, 73.4, 440, 300 }, + [24] = { 37.7, 72.2, 440, 300 }, + [25] = { 35.7, 71.9, 440, 300 }, + [26] = { 29, 71.9, 440, 300 }, + [27] = { 46, 70.7, 440, 300 }, + [28] = { 47.1, 70.6, 440, 300 }, + [29] = { 37.8, 70.5, 440, 300 }, + [30] = { 30.9, 70.2, 440, 300 }, + [31] = { 49.3, 69.3, 440, 300 }, + [32] = { 30.1, 69.2, 440, 300 }, + [33] = { 46.5, 69.2, 440, 300 }, + [34] = { 35.7, 68.9, 440, 300 }, + [35] = { 31.9, 68.8, 440, 300 }, + [36] = { 37.1, 68.4, 440, 300 }, + [37] = { 37.6, 68.4, 440, 300 }, + [38] = { 36.7, 68.4, 440, 300 }, + [39] = { 38.2, 67.7, 440, 300 }, + [40] = { 37.3, 67.5, 440, 300 }, + [41] = { 31.9, 67.5, 440, 300 }, + [42] = { 32.9, 67.5, 440, 300 }, + [43] = { 37.6, 67.4, 440, 300 }, + [44] = { 33.8, 66.2, 440, 300 }, + [45] = { 34.3, 66.1, 440, 300 }, + [46] = { 33.7, 64.6, 440, 300 }, + [47] = { 40.5, 64.6, 440, 300 }, + [48] = { 41.9, 63.9, 440, 300 }, + [49] = { 40.2, 63.9, 440, 300 }, + [50] = { 32.1, 63.7, 440, 300 }, + [51] = { 41.6, 63.4, 440, 300 }, + [52] = { 34.1, 63.3, 440, 300 }, + [53] = { 42.5, 63.3, 440, 300 }, + [54] = { 40.6, 63.3, 440, 300 }, + [55] = { 42, 62.6, 440, 300 }, + [56] = { 41.4, 62.4, 440, 300 }, + [57] = { 31.5, 61.9, 440, 300 }, + [58] = { 31.4, 61.1, 440, 300 }, + [59] = { 32.7, 61, 440, 300 }, + [60] = { 30.3, 60.9, 440, 300 }, + [61] = { 35.8, 60.5, 440, 300 }, + [62] = { 38.4, 60.5, 440, 300 }, + [63] = { 32.8, 60.2, 440, 300 }, + [64] = { 33.7, 59.7, 440, 300 }, + [65] = { 29, 59.3, 440, 300 }, + [66] = { 32.3, 58.9, 440, 300 }, + [67] = { 34, 58.9, 440, 300 }, + [68] = { 31.1, 58.9, 440, 300 }, + [69] = { 28.6, 57.4, 440, 300 }, + [70] = { 33.3, 57.4, 440, 300 }, + [71] = { 30.9, 57.1, 440, 300 }, + [72] = { 25.7, 56.4, 440, 300 }, + [73] = { 27.7, 56.1, 440, 300 }, + [74] = { 34, 56, 440, 300 }, + [75] = { 31.3, 56, 440, 300 }, + [76] = { 30.4, 53.2, 440, 300 }, + [77] = { 43.4, 52.4, 440, 300 }, + [78] = { 43.4, 51.7, 440, 300 }, + [79] = { 42.9, 51.4, 440, 300 }, + [80] = { 43.4, 51, 440, 300 }, + [81] = { 43.9, 51, 440, 300 }, + [82] = { 42.9, 50.7, 440, 300 }, + [83] = { 43.5, 50.3, 440, 300 }, + [84] = { 43.9, 50.2, 440, 300 }, + [85] = { 44.4, 50.1, 440, 300 }, + [86] = { 44.4, 49.6, 440, 300 }, + [87] = { 48.2, 49.5, 440, 300 }, + [88] = { 44.9, 49.5, 440, 300 }, + [89] = { 51.1, 49.4, 440, 300 }, + [90] = { 40.6, 49.2, 440, 300 }, + [91] = { 29.5, 48.9, 440, 300 }, + [92] = { 43.4, 48.7, 440, 300 }, + [93] = { 42.5, 48.6, 440, 300 }, + [94] = { 45.4, 47.4, 440, 300 }, + [95] = { 43.1, 47.3, 440, 300 }, + [96] = { 50.4, 46, 440, 300 }, + [97] = { 40.5, 45, 440, 300 }, + [98] = { 44.3, 44.4, 440, 300 }, + [99] = { 42.4, 44.3, 440, 300 }, + [100] = { 75.3, 87.4, 490, 300 }, + [101] = { 3.6, 13.7, 1941, 300 }, + }, + ["lvl"] = "47-48", + }, + [5429] = { + ["coords"] = { + [1] = { 49.8, 53.7, 440, 300 }, + [2] = { 50.7, 53.4, 440, 300 }, + [3] = { 52.3, 53.1, 440, 300 }, + [4] = { 50.3, 53, 440, 300 }, + [5] = { 48.8, 52.9, 440, 300 }, + [6] = { 55.1, 51.1, 440, 300 }, + [7] = { 47.1, 48.2, 440, 300 }, + [8] = { 46.9, 47.4, 440, 300 }, + [9] = { 47.7, 47.3, 440, 300 }, + [10] = { 55.2, 47.1, 440, 300 }, + [11] = { 47.5, 46.7, 440, 300 }, + [12] = { 58.6, 46, 440, 300 }, + [13] = { 47.3, 45.7, 440, 300 }, + [14] = { 48, 45.6, 440, 300 }, + [15] = { 47.7, 45, 440, 300 }, + [16] = { 48.3, 44.2, 440, 300 }, + [17] = { 48.8, 43.7, 440, 300 }, + [18] = { 37.7, 43.2, 440, 300 }, + [19] = { 49.3, 43.1, 440, 300 }, + [20] = { 48.9, 42.4, 440, 300 }, + [21] = { 48.2, 41.3, 440, 300 }, + [22] = { 43.3, 41.3, 440, 300 }, + [23] = { 44, 41, 440, 300 }, + [24] = { 42.8, 40.9, 440, 300 }, + [25] = { 44.5, 40.7, 440, 300 }, + [26] = { 43.5, 40.6, 440, 300 }, + [27] = { 44.4, 40.1, 440, 300 }, + [28] = { 43.4, 39.9, 440, 300 }, + [29] = { 45.3, 39.9, 440, 300 }, + [30] = { 43.8, 39.9, 440, 300 }, + [31] = { 44.1, 39.5, 440, 300 }, + [32] = { 48.6, 39.2, 440, 300 }, + [33] = { 41.5, 38.8, 440, 300 }, + [34] = { 44.9, 38.6, 440, 300 }, + [35] = { 45.4, 38.5, 440, 300 }, + [36] = { 45.4, 37.9, 440, 300 }, + [37] = { 44.9, 37.8, 440, 300 }, + [38] = { 45.8, 37.2, 440, 300 }, + [39] = { 47.5, 36, 440, 300 }, + [40] = { 40.4, 35.6, 440, 300 }, + [41] = { 36.7, 34.8, 440, 300 }, + [42] = { 1.7, 34.6, 1941, 300 }, + [43] = { 9.7, 33.1, 1941, 300 }, + [44] = { 24.3, 22.9, 1941, 300 }, + [45] = { 24.4, 1.9, 1941, 300 }, + }, + ["lvl"] = "43-45", + }, + [5431] = { + ["coords"] = { + [1] = { 53.1, 97.9, 440, 300 }, + [2] = { 54.2, 97.7, 440, 300 }, + [3] = { 54.6, 97.7, 440, 300 }, + [4] = { 52.7, 97.3, 440, 300 }, + [5] = { 53.6, 97.3, 440, 300 }, + [6] = { 55.1, 96.7, 440, 300 }, + [7] = { 54.3, 96.7, 440, 300 }, + [8] = { 52.3, 96.6, 440, 300 }, + [9] = { 52.9, 96.6, 440, 300 }, + [10] = { 52.2, 96, 440, 300 }, + [11] = { 55.7, 95.9, 440, 300 }, + [12] = { 53.5, 95.9, 440, 300 }, + [13] = { 54.6, 95.7, 440, 300 }, + [14] = { 52.1, 95.5, 440, 300 }, + [15] = { 55, 95.5, 440, 300 }, + [16] = { 54.2, 95.4, 440, 300 }, + [17] = { 52.9, 95.4, 440, 300 }, + [18] = { 51.2, 94.7, 440, 300 }, + [19] = { 55.4, 94.6, 440, 300 }, + [20] = { 53.4, 94.5, 440, 300 }, + [21] = { 51.7, 94.5, 440, 300 }, + [22] = { 52.8, 94.3, 440, 300 }, + [23] = { 54.7, 94.3, 440, 300 }, + [24] = { 56.4, 94.2, 440, 300 }, + [25] = { 53.1, 93.7, 440, 300 }, + [26] = { 56, 93.7, 440, 300 }, + [27] = { 54.2, 93.7, 440, 300 }, + [28] = { 55.6, 93.7, 440, 300 }, + [29] = { 50.1, 93.5, 440, 300 }, + [30] = { 53.5, 93.4, 440, 300 }, + [31] = { 56.7, 93.4, 440, 300 }, + [32] = { 52.3, 93.3, 440, 300 }, + [33] = { 58, 93.1, 440, 300 }, + [34] = { 57.7, 93.1, 440, 300 }, + [35] = { 51.2, 93, 440, 300 }, + [36] = { 51.4, 93, 440, 300 }, + [37] = { 58.5, 92.9, 440, 300 }, + [38] = { 48.8, 92.9, 440, 300 }, + [39] = { 51.1, 92.9, 440, 300 }, + [40] = { 52.6, 92.9, 440, 300 }, + [41] = { 49.9, 92.9, 440, 300 }, + [42] = { 56.8, 92.7, 440, 300 }, + [43] = { 58, 92.5, 440, 300 }, + [44] = { 57, 92.3, 440, 300 }, + [45] = { 51.5, 92.2, 440, 300 }, + [46] = { 49.2, 92.2, 440, 300 }, + [47] = { 50, 92.2, 440, 300 }, + [48] = { 48.7, 91.8, 440, 300 }, + [49] = { 53, 91.7, 440, 300 }, + [50] = { 50.7, 91.7, 440, 300 }, + [51] = { 48.8, 91.7, 440, 300 }, + [52] = { 58.5, 91.6, 440, 300 }, + [53] = { 49.8, 91.5, 440, 300 }, + [54] = { 58, 90.9, 440, 300 }, + [55] = { 59, 90.8, 440, 300 }, + [56] = { 48.2, 90.7, 440, 300 }, + [57] = { 50.2, 90.5, 440, 300 }, + [58] = { 49.2, 90.5, 440, 300 }, + [59] = { 57.2, 90.3, 440, 300 }, + [60] = { 50.6, 90.2, 440, 300 }, + [61] = { 59.4, 90.2, 440, 300 }, + [62] = { 58.3, 90.1, 440, 300 }, + [63] = { 47.8, 90.1, 440, 300 }, + [64] = { 48.8, 90.1, 440, 300 }, + [65] = { 59.2, 89.5, 440, 300 }, + [66] = { 60, 89.4, 440, 300 }, + [67] = { 48.3, 89.3, 440, 300 }, + [68] = { 60.2, 88.8, 440, 300 }, + [69] = { 48.7, 88.6, 440, 300 }, + [70] = { 59.4, 88.6, 440, 300 }, + [71] = { 47.8, 88.4, 440, 300 }, + [72] = { 49.2, 88, 440, 300 }, + [73] = { 48.2, 87.8, 440, 300 }, + [74] = { 59.9, 87.8, 440, 300 }, + [75] = { 47.9, 87.4, 440, 300 }, + [76] = { 48.8, 87.3, 440, 300 }, + [77] = { 59.4, 87.2, 440, 300 }, + [78] = { 60.6, 86.7, 440, 300 }, + [79] = { 60.9, 86.5, 440, 300 }, + [80] = { 48.3, 86.4, 440, 300 }, + [81] = { 49.3, 86.4, 440, 300 }, + [82] = { 60.3, 86.1, 440, 300 }, + [83] = { 60.4, 85.2, 440, 300 }, + [84] = { 61.5, 85.2, 440, 300 }, + [85] = { 60.2, 85, 440, 300 }, + [86] = { 61.1, 84.7, 440, 300 }, + [87] = { 59.9, 84.6, 440, 300 }, + [88] = { 27.1, 84.4, 440, 300 }, + [89] = { 61.4, 84, 440, 300 }, + [90] = { 24.7, 83.6, 440, 120 }, + [91] = { 25.4, 83.6, 440, 120 }, + [92] = { 26.6, 83.6, 440, 300 }, + [93] = { 60.9, 83.5, 440, 300 }, + [94] = { 61.3, 82.8, 440, 300 }, + [95] = { 25.3, 82.8, 440, 120 }, + [96] = { 24.3, 82.7, 440, 120 }, + [97] = { 60.2, 82.5, 440, 300 }, + [98] = { 26.1, 82, 440, 120 }, + [99] = { 60.9, 82, 440, 300 }, + [100] = { 24.9, 81.8, 440, 120 }, + [101] = { 60.6, 81.7, 440, 300 }, + [102] = { 61.3, 81.4, 440, 300 }, + [103] = { 64.7, 65.6, 440, 300 }, + [104] = { 64.5, 64.7, 440, 300 }, + [105] = { 65.1, 64.7, 440, 300 }, + [106] = { 64.5, 64, 440, 300 }, + [107] = { 64.4, 63.2, 440, 300 }, + [108] = { 66.3, 63.1, 440, 300 }, + [109] = { 65.6, 63.1, 440, 300 }, + [110] = { 65.7, 62.7, 440, 300 }, + [111] = { 67.1, 62, 440, 300 }, + [112] = { 65.1, 62, 440, 300 }, + [113] = { 66, 61.9, 440, 300 }, + [114] = { 66.6, 61.8, 440, 300 }, + [115] = { 64.3, 61.7, 440, 300 }, + [116] = { 64.8, 60.9, 440, 300 }, + [117] = { 67.1, 60.4, 440, 300 }, + [118] = { 65.9, 60.3, 440, 300 }, + [119] = { 65.3, 60.3, 440, 300 }, + [120] = { 67.5, 59.6, 440, 300 }, + [121] = { 65.6, 59.3, 440, 300 }, + [122] = { 68.2, 59.1, 440, 300 }, + [123] = { 68.9, 59, 440, 300 }, + [124] = { 66.3, 58.9, 440, 300 }, + [125] = { 67.3, 58.9, 440, 300 }, + [126] = { 68.7, 58.1, 440, 300 }, + [127] = { 70, 57.9, 440, 300 }, + [128] = { 67, 57.5, 440, 300 }, + [129] = { 68.2, 57.2, 440, 300 }, + [130] = { 71.2, 57.2, 440, 300 }, + [131] = { 71.4, 57.2, 440, 300 }, + [132] = { 69.2, 57.1, 440, 300 }, + [133] = { 69.8, 56.7, 440, 300 }, + [134] = { 71.9, 56.3, 440, 300 }, + [135] = { 69.9, 55.7, 440, 300 }, + [136] = { 70.9, 55.7, 440, 300 }, + [137] = { 72.5, 55.5, 440, 300 }, + [138] = { 70.7, 55.1, 440, 300 }, + [139] = { 72, 54.7, 440, 300 }, + [140] = { 71.3, 54.7, 440, 300 }, + [141] = { 71.4, 53.6, 440, 300 }, + [142] = { 73.5, 97.8, 1941, 300 }, + [143] = { 72.1, 93.3, 1941, 300 }, + [144] = { 75, 93.1, 1941, 300 }, + [145] = { 72.3, 89.7, 1941, 300 }, + [146] = { 71.8, 85.4, 1941, 300 }, + [147] = { 81.3, 84.8, 1941, 300 }, + [148] = { 77.9, 84.7, 1941, 300 }, + [149] = { 78.2, 83.1, 1941, 300 }, + [150] = { 85.7, 79.2, 1941, 300 }, + [151] = { 75.5, 79.2, 1941, 300 }, + [152] = { 79.8, 78.6, 1941, 300 }, + [153] = { 83, 78, 1941, 300 }, + [154] = { 71, 78, 1941, 300 }, + [155] = { 73.5, 73.5, 1941, 300 }, + [156] = { 85.3, 70.8, 1941, 300 }, + [157] = { 79.4, 70.3, 1941, 300 }, + [158] = { 76.5, 70.2, 1941, 300 }, + [159] = { 87.4, 66.7, 1941, 300 }, + [160] = { 77.7, 65, 1941, 300 }, + [161] = { 90.9, 64.3, 1941, 300 }, + [162] = { 94.9, 63.8, 1941, 300 }, + [163] = { 81.2, 63.3, 1941, 300 }, + [164] = { 86.7, 63, 1941, 300 }, + [165] = { 93.5, 59, 1941, 300 }, + [166] = { 84.9, 55.9, 1941, 300 }, + [167] = { 91.1, 54.6, 1941, 300 }, + [168] = { 96.1, 54.1, 1941, 300 }, + [169] = { 99.3, 51.8, 1941, 300 }, + [170] = { 99.6, 46.8, 1941, 300 }, + [171] = { 0.1, 58.6, 5121, 300 }, + [172] = { 1.2, 56.8, 5121, 300 }, + [173] = { 0.3, 55.1, 5121, 300 }, + }, + ["lvl"] = "48-50", + }, + [5433] = "_", + [5434] = { + ["coords"] = { + [1] = { 68.1, 60.7, 15, 900 }, + [2] = { 68.8, 59.1, 15, 900 }, + [3] = { 71.8, 56, 15, 900 }, + [4] = { 62.3, 28.5, 15, 900 }, + [5] = { 66.1, 64.9, 440, 900 }, + [6] = { 66.4, 64.6, 440, 900 }, + [7] = { 66.3, 64, 440, 900 }, + [8] = { 80.6, 94.4, 1941, 900 }, + [9] = { 81.8, 92.7, 1941, 900 }, + [10] = { 81.4, 89.5, 1941, 900 }, + }, + ["lvl"] = "46-47", + ["rnk"] = "1", + }, + [5435] = { + ["coords"] = { + [1] = { 72.2, 90.6, 14, 300 }, + [2] = { 44.3, 82.9, 14, 300 }, + [3] = { 72.9, 67.6, 14, 300 }, + [4] = { 68, 60.6, 14, 300 }, + [5] = { 64.5, 37.3, 14, 300 }, + [6] = { 65.3, 25.4, 14, 300 }, + [7] = { 65.2, 14.9, 14, 300 }, + [8] = { 81.1, 49.8, 17, 300 }, + [9] = { 82.9, 44.4, 17, 300 }, + [10] = { 68.4, 40.4, 17, 300 }, + [11] = { 55.4, 20.5, 85, 300 }, + [12] = { 29.3, 20.4, 85, 300 }, + [13] = { 44.1, 20, 85, 300 }, + [14] = { 66.4, 64.4, 440, 25 }, + [15] = { 81.8, 91.5, 1941, 25 }, + }, + ["lvl"] = "12-13", + ["rnk"] = "1", + }, + [5436] = "_", + [5437] = "_", + [5438] = "_", + [5439] = "_", + [5440] = "_", + [5441] = { + ["coords"] = { + [1] = { 52.5, 77.9, 440, 300 }, + [2] = { 51.2, 77.8, 440, 300 }, + [3] = { 50.7, 77.1, 440, 300 }, + [4] = { 54.8, 76.9, 440, 300 }, + [5] = { 51.6, 76.8, 440, 300 }, + [6] = { 51.2, 76.2, 440, 300 }, + [7] = { 52.1, 76.2, 440, 300 }, + [8] = { 50.2, 76.2, 440, 300 }, + [9] = { 56.9, 76.2, 440, 300 }, + [10] = { 57.4, 75.6, 440, 300 }, + [11] = { 50.7, 75.6, 440, 300 }, + [12] = { 49.7, 75.6, 440, 300 }, + [13] = { 51.7, 75.6, 440, 300 }, + [14] = { 56.5, 75.5, 440, 300 }, + [15] = { 54.3, 75.5, 440, 300 }, + [16] = { 56.1, 75.3, 440, 300 }, + [17] = { 57, 75, 440, 300 }, + [18] = { 51.1, 74.9, 440, 300 }, + [19] = { 52.3, 74.8, 440, 300 }, + [20] = { 50.2, 74.8, 440, 300 }, + [21] = { 56.5, 74.6, 440, 300 }, + [22] = { 49.8, 74.1, 440, 300 }, + [23] = { 57.5, 74.1, 440, 300 }, + [24] = { 50.8, 74.1, 440, 300 }, + [25] = { 51.4, 74.1, 440, 300 }, + [26] = { 52.7, 73.8, 440, 300 }, + [27] = { 55.2, 73.7, 440, 300 }, + [28] = { 50.3, 73.4, 440, 300 }, + [29] = { 51.2, 73.1, 440, 300 }, + [30] = { 52.8, 72.9, 440, 300 }, + [31] = { 57.3, 72.7, 440, 300 }, + [32] = { 52, 72.5, 440, 300 }, + [33] = { 53.9, 72.3, 440, 300 }, + [34] = { 50.7, 72.2, 440, 300 }, + [35] = { 52.1, 72.1, 440, 300 }, + [36] = { 49.3, 72, 440, 300 }, + [37] = { 57.1, 72, 440, 300 }, + [38] = { 53.1, 71.9, 440, 300 }, + [39] = { 50.3, 71.8, 440, 300 }, + [40] = { 56.8, 71.7, 440, 300 }, + [41] = { 52.7, 71.4, 440, 300 }, + [42] = { 57.6, 71.2, 440, 300 }, + [43] = { 57, 71, 440, 300 }, + [44] = { 50.6, 70.9, 440, 300 }, + [45] = { 51.6, 70.8, 440, 300 }, + [46] = { 50.9, 70.6, 440, 300 }, + [47] = { 57.9, 70.6, 440, 300 }, + [48] = { 52.2, 70.6, 440, 300 }, + [49] = { 57.5, 70.5, 440, 300 }, + [50] = { 57.3, 70.3, 440, 300 }, + [51] = { 55.4, 70.3, 440, 300 }, + [52] = { 57.4, 69.6, 440, 300 }, + [53] = { 52.8, 69.6, 440, 300 }, + [54] = { 51.8, 69.6, 440, 300 }, + [55] = { 52.1, 69, 440, 300 }, + [56] = { 52.6, 68.4, 440, 300 }, + [57] = { 51.8, 68.3, 440, 300 }, + [58] = { 56.1, 68.3, 440, 300 }, + [59] = { 52.1, 67.8, 440, 300 }, + [60] = { 53, 67.7, 440, 300 }, + [61] = { 51, 67.7, 440, 300 }, + [62] = { 59, 67.6, 440, 300 }, + [63] = { 52.5, 67, 440, 300 }, + [64] = { 53.6, 66.9, 440, 300 }, + [65] = { 51.6, 66.9, 440, 300 }, + [66] = { 55.5, 66.8, 440, 300 }, + [67] = { 57.4, 66.8, 440, 300 }, + [68] = { 56.5, 66.8, 440, 300 }, + [69] = { 58.6, 66.8, 440, 300 }, + [70] = { 54.5, 66.7, 440, 300 }, + [71] = { 55.9, 66.6, 440, 300 }, + [72] = { 59.2, 66.5, 440, 300 }, + [73] = { 52.1, 66.5, 440, 300 }, + [74] = { 50.7, 66.3, 440, 300 }, + [75] = { 57, 66.1, 440, 300 }, + [76] = { 54.1, 66.1, 440, 300 }, + [77] = { 58, 66.1, 440, 300 }, + [78] = { 53.1, 66.1, 440, 300 }, + [79] = { 55, 65.9, 440, 300 }, + [80] = { 52.6, 65.7, 440, 300 }, + [81] = { 51.3, 65.7, 440, 300 }, + [82] = { 58.8, 65.6, 440, 300 }, + [83] = { 53.6, 65.5, 440, 300 }, + [84] = { 57.4, 65.4, 440, 300 }, + [85] = { 54.6, 65.4, 440, 300 }, + [86] = { 57, 65, 440, 300 }, + [87] = { 54.1, 64.8, 440, 300 }, + [88] = { 56.4, 64.7, 440, 300 }, + [89] = { 55, 64.6, 440, 300 }, + [90] = { 56, 64.6, 440, 300 }, + [91] = { 57.1, 64, 440, 300 }, + [92] = { 54.5, 63.9, 440, 300 }, + [93] = { 55.5, 63.9, 440, 300 }, + [94] = { 54.6, 63.1, 440, 300 }, + [95] = { 54.1, 63, 440, 300 }, + [96] = { 55.8, 63, 440, 300 }, + [97] = { 57.5, 62.8, 440, 300 }, + [98] = { 56.8, 62.7, 440, 300 }, + [99] = { 56.5, 62.6, 440, 300 }, + [100] = { 54.6, 62.3, 440, 300 }, + [101] = { 23.7, 99.5, 1941, 300 }, + [102] = { 11.3, 98.6, 1941, 300 }, + [103] = { 4.8, 98.3, 1941, 300 }, + [104] = { 43, 97.9, 1941, 300 }, + [105] = { 16.6, 97.5, 1941, 300 }, + [106] = { 36, 97, 1941, 300 }, + [107] = { 21.6, 96.8, 1941, 300 }, + [108] = { 34.1, 95, 1941, 300 }, + [109] = { 18.9, 93.6, 1941, 300 }, + [110] = { 30.9, 93, 1941, 300 }, + [111] = { 23.8, 92.9, 1941, 300 }, + [112] = { 28.9, 92.5, 1941, 300 }, + [113] = { 34.2, 89.5, 1941, 300 }, + [114] = { 21.2, 89.3, 1941, 300 }, + [115] = { 26.3, 89, 1941, 300 }, + [116] = { 21.8, 85.1, 1941, 300 }, + [117] = { 18.7, 84.5, 1941, 300 }, + [118] = { 27.8, 84.3, 1941, 300 }, + [119] = { 36.5, 83.3, 1941, 300 }, + [120] = { 33, 82.9, 1941, 300 }, + [121] = { 31.4, 82.4, 1941, 300 }, + [122] = { 21.7, 80.9, 1941, 300 }, + }, + ["lvl"] = "47-48", + }, + [5442] = "_", + [5443] = "_", + [5444] = "_", + [5445] = "_", + [5446] = "_", + [5447] = "_", + [5448] = "_", + [5449] = "_", + [5450] = { + ["coords"] = { + [1] = { 52.5, 77.9, 440, 300 }, + [2] = { 51.2, 77.8, 440, 300 }, + [3] = { 50.7, 77.1, 440, 300 }, + [4] = { 54.8, 76.9, 440, 300 }, + [5] = { 51.6, 76.8, 440, 300 }, + [6] = { 51.2, 76.2, 440, 300 }, + [7] = { 52.1, 76.2, 440, 300 }, + [8] = { 50.2, 76.2, 440, 300 }, + [9] = { 56.9, 76.2, 440, 300 }, + [10] = { 57.4, 75.6, 440, 300 }, + [11] = { 50.7, 75.6, 440, 300 }, + [12] = { 49.7, 75.6, 440, 300 }, + [13] = { 51.7, 75.6, 440, 300 }, + [14] = { 56.5, 75.5, 440, 300 }, + [15] = { 54.3, 75.5, 440, 300 }, + [16] = { 56.1, 75.3, 440, 300 }, + [17] = { 57, 75, 440, 300 }, + [18] = { 51.1, 74.9, 440, 300 }, + [19] = { 52.3, 74.8, 440, 300 }, + [20] = { 50.2, 74.8, 440, 300 }, + [21] = { 56.5, 74.6, 440, 300 }, + [22] = { 49.8, 74.1, 440, 300 }, + [23] = { 57.5, 74.1, 440, 300 }, + [24] = { 50.8, 74.1, 440, 300 }, + [25] = { 51.4, 74.1, 440, 300 }, + [26] = { 52.7, 73.8, 440, 300 }, + [27] = { 55.2, 73.7, 440, 300 }, + [28] = { 50.3, 73.4, 440, 300 }, + [29] = { 51.2, 73.1, 440, 300 }, + [30] = { 52.8, 72.9, 440, 300 }, + [31] = { 57.3, 72.7, 440, 300 }, + [32] = { 52, 72.5, 440, 300 }, + [33] = { 53.9, 72.3, 440, 300 }, + [34] = { 50.7, 72.2, 440, 300 }, + [35] = { 52.1, 72.1, 440, 300 }, + [36] = { 49.3, 72, 440, 300 }, + [37] = { 57.1, 72, 440, 300 }, + [38] = { 53.1, 71.9, 440, 300 }, + [39] = { 50.3, 71.8, 440, 300 }, + [40] = { 56.8, 71.7, 440, 300 }, + [41] = { 52.7, 71.4, 440, 300 }, + [42] = { 57.6, 71.2, 440, 300 }, + [43] = { 57, 71, 440, 300 }, + [44] = { 50.6, 70.9, 440, 300 }, + [45] = { 51.6, 70.8, 440, 300 }, + [46] = { 50.9, 70.6, 440, 300 }, + [47] = { 57.9, 70.6, 440, 300 }, + [48] = { 52.2, 70.6, 440, 300 }, + [49] = { 57.5, 70.5, 440, 300 }, + [50] = { 57.3, 70.3, 440, 300 }, + [51] = { 55.4, 70.3, 440, 300 }, + [52] = { 57.4, 69.6, 440, 300 }, + [53] = { 52.8, 69.6, 440, 300 }, + [54] = { 51.8, 69.6, 440, 300 }, + [55] = { 52.1, 69, 440, 300 }, + [56] = { 52.6, 68.4, 440, 300 }, + [57] = { 51.8, 68.3, 440, 300 }, + [58] = { 56.1, 68.3, 440, 300 }, + [59] = { 52.1, 67.8, 440, 300 }, + [60] = { 53, 67.7, 440, 300 }, + [61] = { 51, 67.7, 440, 300 }, + [62] = { 59, 67.6, 440, 300 }, + [63] = { 52.5, 67, 440, 300 }, + [64] = { 53.6, 66.9, 440, 300 }, + [65] = { 51.6, 66.9, 440, 300 }, + [66] = { 55.5, 66.8, 440, 300 }, + [67] = { 57.4, 66.8, 440, 300 }, + [68] = { 56.5, 66.8, 440, 300 }, + [69] = { 58.6, 66.8, 440, 300 }, + [70] = { 54.5, 66.7, 440, 300 }, + [71] = { 55.9, 66.6, 440, 300 }, + [72] = { 59.2, 66.5, 440, 300 }, + [73] = { 52.1, 66.5, 440, 300 }, + [74] = { 50.7, 66.3, 440, 300 }, + [75] = { 57, 66.1, 440, 300 }, + [76] = { 54.1, 66.1, 440, 300 }, + [77] = { 58, 66.1, 440, 300 }, + [78] = { 53.1, 66.1, 440, 300 }, + [79] = { 55, 65.9, 440, 300 }, + [80] = { 52.6, 65.7, 440, 300 }, + [81] = { 51.3, 65.7, 440, 300 }, + [82] = { 58.8, 65.6, 440, 300 }, + [83] = { 53.6, 65.5, 440, 300 }, + [84] = { 57.4, 65.4, 440, 300 }, + [85] = { 54.6, 65.4, 440, 300 }, + [86] = { 57, 65, 440, 300 }, + [87] = { 54.1, 64.8, 440, 300 }, + [88] = { 56.4, 64.7, 440, 300 }, + [89] = { 55, 64.6, 440, 300 }, + [90] = { 56, 64.6, 440, 300 }, + [91] = { 57.1, 64, 440, 300 }, + [92] = { 54.5, 63.9, 440, 300 }, + [93] = { 55.5, 63.9, 440, 300 }, + [94] = { 54.6, 63.1, 440, 300 }, + [95] = { 54.1, 63, 440, 300 }, + [96] = { 55.8, 63, 440, 300 }, + [97] = { 57.5, 62.8, 440, 300 }, + [98] = { 56.8, 62.7, 440, 300 }, + [99] = { 56.5, 62.6, 440, 300 }, + [100] = { 54.6, 62.3, 440, 300 }, + [101] = { 23.7, 99.5, 1941, 300 }, + [102] = { 11.3, 98.6, 1941, 300 }, + [103] = { 4.8, 98.3, 1941, 300 }, + [104] = { 43, 97.9, 1941, 300 }, + [105] = { 16.6, 97.5, 1941, 300 }, + [106] = { 36, 97, 1941, 300 }, + [107] = { 21.6, 96.8, 1941, 300 }, + [108] = { 34.1, 95, 1941, 300 }, + [109] = { 18.9, 93.6, 1941, 300 }, + [110] = { 30.9, 93, 1941, 300 }, + [111] = { 23.8, 92.9, 1941, 300 }, + [112] = { 28.9, 92.5, 1941, 300 }, + [113] = { 34.2, 89.5, 1941, 300 }, + [114] = { 21.2, 89.3, 1941, 300 }, + [115] = { 26.3, 89, 1941, 300 }, + [116] = { 21.8, 85.1, 1941, 300 }, + [117] = { 18.7, 84.5, 1941, 300 }, + [118] = { 27.8, 84.3, 1941, 300 }, + [119] = { 36.5, 83.3, 1941, 300 }, + [120] = { 33, 82.9, 1941, 300 }, + [121] = { 31.4, 82.4, 1941, 300 }, + [122] = { 21.7, 80.9, 1941, 300 }, + }, + ["lvl"] = "49-50", + }, + [5451] = { + ["coords"] = { + [1] = { 52.5, 77.9, 440, 300 }, + [2] = { 51.2, 77.8, 440, 300 }, + [3] = { 50.7, 77.1, 440, 300 }, + [4] = { 54.8, 76.9, 440, 300 }, + [5] = { 51.6, 76.8, 440, 300 }, + [6] = { 51.2, 76.2, 440, 300 }, + [7] = { 52.1, 76.2, 440, 300 }, + [8] = { 50.2, 76.2, 440, 300 }, + [9] = { 56.9, 76.2, 440, 300 }, + [10] = { 57.4, 75.6, 440, 300 }, + [11] = { 50.7, 75.6, 440, 300 }, + [12] = { 49.7, 75.6, 440, 300 }, + [13] = { 51.7, 75.6, 440, 300 }, + [14] = { 56.5, 75.5, 440, 300 }, + [15] = { 54.3, 75.5, 440, 300 }, + [16] = { 56.1, 75.3, 440, 300 }, + [17] = { 57, 75, 440, 300 }, + [18] = { 51.1, 74.9, 440, 300 }, + [19] = { 52.3, 74.8, 440, 300 }, + [20] = { 50.2, 74.8, 440, 300 }, + [21] = { 56.5, 74.6, 440, 300 }, + [22] = { 49.8, 74.1, 440, 300 }, + [23] = { 57.5, 74.1, 440, 300 }, + [24] = { 50.8, 74.1, 440, 300 }, + [25] = { 51.4, 74.1, 440, 300 }, + [26] = { 52.7, 73.8, 440, 300 }, + [27] = { 55.2, 73.7, 440, 300 }, + [28] = { 50.3, 73.4, 440, 300 }, + [29] = { 51.2, 73.1, 440, 300 }, + [30] = { 52.8, 72.9, 440, 300 }, + [31] = { 57.3, 72.7, 440, 300 }, + [32] = { 52, 72.5, 440, 300 }, + [33] = { 53.9, 72.3, 440, 300 }, + [34] = { 50.7, 72.2, 440, 300 }, + [35] = { 52.1, 72.1, 440, 300 }, + [36] = { 49.3, 72, 440, 300 }, + [37] = { 57.1, 72, 440, 300 }, + [38] = { 53.1, 71.9, 440, 300 }, + [39] = { 50.3, 71.8, 440, 300 }, + [40] = { 56.8, 71.7, 440, 300 }, + [41] = { 52.7, 71.4, 440, 300 }, + [42] = { 57.6, 71.2, 440, 300 }, + [43] = { 57, 71, 440, 300 }, + [44] = { 50.6, 70.9, 440, 300 }, + [45] = { 51.6, 70.8, 440, 300 }, + [46] = { 50.9, 70.6, 440, 300 }, + [47] = { 57.9, 70.6, 440, 300 }, + [48] = { 52.2, 70.6, 440, 300 }, + [49] = { 57.5, 70.5, 440, 300 }, + [50] = { 57.3, 70.3, 440, 300 }, + [51] = { 55.4, 70.3, 440, 300 }, + [52] = { 57.4, 69.6, 440, 300 }, + [53] = { 52.8, 69.6, 440, 300 }, + [54] = { 51.8, 69.6, 440, 300 }, + [55] = { 52.1, 69, 440, 300 }, + [56] = { 52.6, 68.4, 440, 300 }, + [57] = { 51.8, 68.3, 440, 300 }, + [58] = { 56.1, 68.3, 440, 300 }, + [59] = { 52.1, 67.8, 440, 300 }, + [60] = { 53, 67.7, 440, 300 }, + [61] = { 51, 67.7, 440, 300 }, + [62] = { 59, 67.6, 440, 300 }, + [63] = { 52.5, 67, 440, 300 }, + [64] = { 53.6, 66.9, 440, 300 }, + [65] = { 51.6, 66.9, 440, 300 }, + [66] = { 55.5, 66.8, 440, 300 }, + [67] = { 57.4, 66.8, 440, 300 }, + [68] = { 56.5, 66.8, 440, 300 }, + [69] = { 58.6, 66.8, 440, 300 }, + [70] = { 54.5, 66.7, 440, 300 }, + [71] = { 55.9, 66.6, 440, 300 }, + [72] = { 59.2, 66.5, 440, 300 }, + [73] = { 52.1, 66.5, 440, 300 }, + [74] = { 50.7, 66.3, 440, 300 }, + [75] = { 57, 66.1, 440, 300 }, + [76] = { 54.1, 66.1, 440, 300 }, + [77] = { 58, 66.1, 440, 300 }, + [78] = { 53.1, 66.1, 440, 300 }, + [79] = { 55, 65.9, 440, 300 }, + [80] = { 52.6, 65.7, 440, 300 }, + [81] = { 51.3, 65.7, 440, 300 }, + [82] = { 58.8, 65.6, 440, 300 }, + [83] = { 53.6, 65.5, 440, 300 }, + [84] = { 57.4, 65.4, 440, 300 }, + [85] = { 54.6, 65.4, 440, 300 }, + [86] = { 57, 65, 440, 300 }, + [87] = { 54.1, 64.8, 440, 300 }, + [88] = { 56.4, 64.7, 440, 300 }, + [89] = { 55, 64.6, 440, 300 }, + [90] = { 56, 64.6, 440, 300 }, + [91] = { 57.1, 64, 440, 300 }, + [92] = { 54.5, 63.9, 440, 300 }, + [93] = { 55.5, 63.9, 440, 300 }, + [94] = { 54.6, 63.1, 440, 300 }, + [95] = { 54.1, 63, 440, 300 }, + [96] = { 55.8, 63, 440, 300 }, + [97] = { 57.5, 62.8, 440, 300 }, + [98] = { 56.8, 62.7, 440, 300 }, + [99] = { 56.5, 62.6, 440, 300 }, + [100] = { 54.6, 62.3, 440, 300 }, + [101] = { 23.7, 99.5, 1941, 300 }, + [102] = { 11.3, 98.6, 1941, 300 }, + [103] = { 4.8, 98.3, 1941, 300 }, + [104] = { 43, 97.9, 1941, 300 }, + [105] = { 16.6, 97.5, 1941, 300 }, + [106] = { 36, 97, 1941, 300 }, + [107] = { 21.6, 96.8, 1941, 300 }, + [108] = { 34.1, 95, 1941, 300 }, + [109] = { 18.9, 93.6, 1941, 300 }, + [110] = { 30.9, 93, 1941, 300 }, + [111] = { 23.8, 92.9, 1941, 300 }, + [112] = { 28.9, 92.5, 1941, 300 }, + [113] = { 34.2, 89.5, 1941, 300 }, + [114] = { 21.2, 89.3, 1941, 300 }, + [115] = { 26.3, 89, 1941, 300 }, + [116] = { 21.8, 85.1, 1941, 300 }, + [117] = { 18.7, 84.5, 1941, 300 }, + [118] = { 27.8, 84.3, 1941, 300 }, + [119] = { 36.5, 83.3, 1941, 300 }, + [120] = { 33, 82.9, 1941, 300 }, + [121] = { 31.4, 82.4, 1941, 300 }, + [122] = { 21.7, 80.9, 1941, 300 }, + }, + ["lvl"] = "49-50", + }, + [5452] = { + ["coords"] = { + [1] = { 55.7, 77.6, 440, 300 }, + [2] = { 55.7, 77, 440, 300 }, + [3] = { 54.8, 76.9, 440, 300 }, + [4] = { 54.8, 76, 440, 300 }, + [5] = { 54.2, 75.5, 440, 300 }, + [6] = { 53.1, 75, 440, 300 }, + [7] = { 55.3, 74.9, 440, 300 }, + [8] = { 56.4, 74.2, 440, 300 }, + [9] = { 53.7, 74.1, 440, 300 }, + [10] = { 53.2, 74.1, 440, 300 }, + [11] = { 56.7, 73.9, 440, 300 }, + [12] = { 54.8, 73.9, 440, 300 }, + [13] = { 56.4, 73.6, 440, 300 }, + [14] = { 55.2, 73.2, 440, 300 }, + [15] = { 53, 73.2, 440, 300 }, + [16] = { 54.5, 73, 440, 300 }, + [17] = { 56.7, 72.7, 440, 300 }, + [18] = { 54.9, 72.7, 440, 300 }, + [19] = { 56, 72.5, 440, 300 }, + [20] = { 53.9, 72.3, 440, 300 }, + [21] = { 53.7, 72.3, 440, 300 }, + [22] = { 55, 72, 440, 300 }, + [23] = { 57.8, 72, 440, 300 }, + [24] = { 57.3, 71.9, 440, 300 }, + [25] = { 56.8, 71.8, 440, 300 }, + [26] = { 53.6, 71.6, 440, 300 }, + [27] = { 56, 71.3, 440, 300 }, + [28] = { 56.9, 71.3, 440, 300 }, + [29] = { 56.3, 71.2, 440, 300 }, + [30] = { 54.3, 71.1, 440, 300 }, + [31] = { 57.6, 70.6, 440, 300 }, + [32] = { 57.2, 70.5, 440, 300 }, + [33] = { 53.5, 70.4, 440, 300 }, + [34] = { 56.6, 70.3, 440, 300 }, + [35] = { 55.1, 70.2, 440, 300 }, + [36] = { 53.9, 70.2, 440, 300 }, + [37] = { 56.9, 69.9, 440, 300 }, + [38] = { 53.5, 69.8, 440, 300 }, + [39] = { 57, 69.7, 440, 300 }, + [40] = { 58, 69.6, 440, 300 }, + [41] = { 56.5, 69.4, 440, 300 }, + [42] = { 58.3, 69.4, 440, 300 }, + [43] = { 55.6, 69.4, 440, 300 }, + [44] = { 54.8, 69.3, 440, 300 }, + [45] = { 54.2, 69.1, 440, 300 }, + [46] = { 58.1, 69.1, 440, 300 }, + [47] = { 56.9, 69.1, 440, 300 }, + [48] = { 56.2, 69, 440, 300 }, + [49] = { 57, 69, 440, 300 }, + [50] = { 56.7, 68.6, 440, 300 }, + [51] = { 55.7, 68.5, 440, 300 }, + [52] = { 56.1, 68.3, 440, 300 }, + [53] = { 54.8, 67.7, 440, 300 }, + [54] = { 56.6, 67.6, 440, 300 }, + [55] = { 56, 67.5, 440, 300 }, + [56] = { 51.6, 67.5, 440, 300 }, + [57] = { 56.7, 67.5, 440, 300 }, + [58] = { 57, 67.3, 440, 300 }, + [59] = { 56.7, 67.1, 440, 300 }, + [60] = { 57.2, 63.5, 440, 300 }, + [61] = { 34.6, 87.2, 1941, 300 }, + }, + ["lvl"] = "47-48", + }, + [5453] = { + ["coords"] = { + [1] = { 55.7, 77.6, 440, 300 }, + [2] = { 55.7, 77, 440, 300 }, + [3] = { 54.8, 76.9, 440, 300 }, + [4] = { 54.8, 76, 440, 300 }, + [5] = { 54.2, 75.5, 440, 300 }, + [6] = { 53.1, 75, 440, 300 }, + [7] = { 55.3, 74.9, 440, 300 }, + [8] = { 56.4, 74.2, 440, 300 }, + [9] = { 53.7, 74.1, 440, 300 }, + [10] = { 53.2, 74.1, 440, 300 }, + [11] = { 56.7, 73.9, 440, 300 }, + [12] = { 54.8, 73.9, 440, 300 }, + [13] = { 56.4, 73.6, 440, 300 }, + [14] = { 55.2, 73.2, 440, 300 }, + [15] = { 53, 73.2, 440, 300 }, + [16] = { 54.5, 73, 440, 300 }, + [17] = { 56.7, 72.7, 440, 300 }, + [18] = { 54.9, 72.7, 440, 300 }, + [19] = { 56, 72.5, 440, 300 }, + [20] = { 53.9, 72.3, 440, 300 }, + [21] = { 53.7, 72.3, 440, 300 }, + [22] = { 55, 72, 440, 300 }, + [23] = { 57.8, 72, 440, 300 }, + [24] = { 57.3, 71.9, 440, 300 }, + [25] = { 56.8, 71.8, 440, 300 }, + [26] = { 53.6, 71.6, 440, 300 }, + [27] = { 56, 71.3, 440, 300 }, + [28] = { 56.9, 71.3, 440, 300 }, + [29] = { 56.3, 71.2, 440, 300 }, + [30] = { 54.3, 71.1, 440, 300 }, + [31] = { 57.6, 70.6, 440, 300 }, + [32] = { 57.2, 70.5, 440, 300 }, + [33] = { 53.5, 70.4, 440, 300 }, + [34] = { 56.6, 70.3, 440, 300 }, + [35] = { 55.1, 70.2, 440, 300 }, + [36] = { 53.9, 70.2, 440, 300 }, + [37] = { 56.9, 69.9, 440, 300 }, + [38] = { 53.5, 69.8, 440, 300 }, + [39] = { 57, 69.7, 440, 300 }, + [40] = { 58, 69.6, 440, 300 }, + [41] = { 56.5, 69.4, 440, 300 }, + [42] = { 58.3, 69.4, 440, 300 }, + [43] = { 55.6, 69.4, 440, 300 }, + [44] = { 54.8, 69.3, 440, 300 }, + [45] = { 54.2, 69.1, 440, 300 }, + [46] = { 58.1, 69.1, 440, 300 }, + [47] = { 56.9, 69.1, 440, 300 }, + [48] = { 56.2, 69, 440, 300 }, + [49] = { 57, 69, 440, 300 }, + [50] = { 56.7, 68.6, 440, 300 }, + [51] = { 55.7, 68.5, 440, 300 }, + [52] = { 56.1, 68.3, 440, 300 }, + [53] = { 54.8, 67.7, 440, 300 }, + [54] = { 56.6, 67.6, 440, 300 }, + [55] = { 56, 67.5, 440, 300 }, + [56] = { 51.6, 67.5, 440, 300 }, + [57] = { 56.7, 67.5, 440, 300 }, + [58] = { 57, 67.3, 440, 300 }, + [59] = { 56.7, 67.1, 440, 300 }, + [60] = { 57.2, 63.5, 440, 300 }, + [61] = { 34.6, 87.2, 1941, 300 }, + }, + ["lvl"] = "48-49", + }, + [5454] = { + ["coords"] = { + [1] = { 55.7, 77.6, 440, 300 }, + [2] = { 55.7, 77, 440, 300 }, + [3] = { 54.8, 76.9, 440, 300 }, + [4] = { 54.8, 76, 440, 300 }, + [5] = { 54.2, 75.5, 440, 300 }, + [6] = { 53.1, 75, 440, 300 }, + [7] = { 55.3, 74.9, 440, 300 }, + [8] = { 56.4, 74.2, 440, 300 }, + [9] = { 53.7, 74.1, 440, 300 }, + [10] = { 53.2, 74.1, 440, 300 }, + [11] = { 56.7, 73.9, 440, 300 }, + [12] = { 54.8, 73.9, 440, 300 }, + [13] = { 56.4, 73.6, 440, 300 }, + [14] = { 55.2, 73.2, 440, 300 }, + [15] = { 53, 73.2, 440, 300 }, + [16] = { 54.5, 73, 440, 300 }, + [17] = { 56.7, 72.7, 440, 300 }, + [18] = { 54.9, 72.7, 440, 300 }, + [19] = { 56, 72.5, 440, 300 }, + [20] = { 53.9, 72.3, 440, 300 }, + [21] = { 53.7, 72.3, 440, 300 }, + [22] = { 55, 72, 440, 300 }, + [23] = { 57.8, 72, 440, 300 }, + [24] = { 57.3, 71.9, 440, 300 }, + [25] = { 56.8, 71.8, 440, 300 }, + [26] = { 53.6, 71.6, 440, 300 }, + [27] = { 56, 71.3, 440, 300 }, + [28] = { 56.9, 71.3, 440, 300 }, + [29] = { 56.3, 71.2, 440, 300 }, + [30] = { 54.3, 71.1, 440, 300 }, + [31] = { 57.6, 70.6, 440, 300 }, + [32] = { 57.2, 70.5, 440, 300 }, + [33] = { 53.5, 70.4, 440, 300 }, + [34] = { 56.6, 70.3, 440, 300 }, + [35] = { 55.1, 70.2, 440, 300 }, + [36] = { 53.9, 70.2, 440, 300 }, + [37] = { 56.9, 69.9, 440, 300 }, + [38] = { 53.5, 69.8, 440, 300 }, + [39] = { 57, 69.7, 440, 300 }, + [40] = { 58, 69.6, 440, 300 }, + [41] = { 56.5, 69.4, 440, 300 }, + [42] = { 58.3, 69.4, 440, 300 }, + [43] = { 55.6, 69.4, 440, 300 }, + [44] = { 54.8, 69.3, 440, 300 }, + [45] = { 54.2, 69.1, 440, 300 }, + [46] = { 58.1, 69.1, 440, 300 }, + [47] = { 56.9, 69.1, 440, 300 }, + [48] = { 56.2, 69, 440, 300 }, + [49] = { 57, 69, 440, 300 }, + [50] = { 56.7, 68.6, 440, 300 }, + [51] = { 55.7, 68.5, 440, 300 }, + [52] = { 56.1, 68.3, 440, 300 }, + [53] = { 54.8, 67.7, 440, 300 }, + [54] = { 56.6, 67.6, 440, 300 }, + [55] = { 56, 67.5, 440, 300 }, + [56] = { 51.6, 67.5, 440, 300 }, + [57] = { 56.7, 67.5, 440, 300 }, + [58] = { 57, 67.3, 440, 300 }, + [59] = { 56.7, 67.1, 440, 300 }, + [60] = { 57.2, 63.5, 440, 300 }, + [61] = { 34.6, 87.2, 1941, 300 }, + }, + ["lvl"] = "49-50", + }, + [5455] = { + ["coords"] = { + [1] = { 31.5, 50.5, 440, 300 }, + [2] = { 32.7, 50.3, 440, 300 }, + [3] = { 32.7, 50.2, 440, 300 }, + [4] = { 33, 50.2, 440, 300 }, + [5] = { 33.8, 49.6, 440, 300 }, + [6] = { 31.6, 49.5, 440, 300 }, + [7] = { 34.9, 49.3, 440, 300 }, + [8] = { 34.1, 49, 440, 300 }, + [9] = { 35.1, 48.9, 440, 300 }, + [10] = { 31.7, 48.8, 440, 300 }, + [11] = { 32.2, 48.5, 440, 300 }, + [12] = { 32.1, 48.2, 440, 300 }, + [13] = { 35.8, 48.2, 440, 300 }, + [14] = { 31.9, 47.9, 440, 300 }, + [15] = { 35, 47.9, 440, 300 }, + [16] = { 32.7, 47.8, 440, 300 }, + [17] = { 34.2, 47.5, 440, 300 }, + [18] = { 31.4, 47.4, 440, 300 }, + [19] = { 30.9, 47.2, 440, 300 }, + [20] = { 35.1, 47.2, 440, 300 }, + [21] = { 30.1, 47.1, 440, 300 }, + [22] = { 36.2, 46.8, 440, 300 }, + [23] = { 31.9, 46.8, 440, 300 }, + [24] = { 31, 46.7, 440, 300 }, + [25] = { 33.6, 46.6, 440, 300 }, + [26] = { 31.7, 46.5, 440, 300 }, + [27] = { 35.6, 46.5, 440, 300 }, + [28] = { 33.4, 46.4, 440, 300 }, + [29] = { 31.3, 46.3, 440, 300 }, + [30] = { 34.5, 46, 440, 300 }, + [31] = { 32.3, 46, 440, 300 }, + [32] = { 35.1, 45.8, 440, 300 }, + [33] = { 34.8, 45.6, 440, 300 }, + [34] = { 33.3, 45.6, 440, 300 }, + [35] = { 30.5, 45.6, 440, 300 }, + [36] = { 34.6, 45.4, 440, 300 }, + [37] = { 32.4, 45.3, 440, 300 }, + [38] = { 31.1, 45.2, 440, 300 }, + [39] = { 32.6, 45.2, 440, 300 }, + [40] = { 31.9, 45.1, 440, 300 }, + [41] = { 31.4, 45.1, 440, 300 }, + [42] = { 36.3, 45.1, 440, 300 }, + [43] = { 35.6, 45, 440, 300 }, + [44] = { 33.7, 44.7, 440, 300 }, + [45] = { 32, 44.6, 440, 300 }, + [46] = { 31.4, 44.6, 440, 300 }, + [47] = { 31.5, 44.4, 440, 300 }, + [48] = { 33.3, 44.4, 440, 300 }, + [49] = { 34.2, 44.4, 440, 300 }, + [50] = { 35.1, 44.4, 440, 300 }, + [51] = { 30.8, 44.2, 440, 300 }, + [52] = { 32.8, 44.2, 440, 300 }, + [53] = { 35.9, 43.9, 440, 300 }, + [54] = { 32, 43.9, 440, 300 }, + [55] = { 34.8, 43.7, 440, 300 }, + [56] = { 33.7, 43.7, 440, 300 }, + [57] = { 35, 43.3, 440, 300 }, + [58] = { 32.8, 43.2, 440, 300 }, + [59] = { 36.2, 43, 440, 300 }, + [60] = { 35.3, 42.9, 440, 300 }, + [61] = { 32.9, 42.6, 440, 300 }, + [62] = { 32.5, 42.6, 440, 300 }, + [63] = { 35.7, 42.2, 440, 300 }, + [64] = { 33.7, 42, 440, 300 }, + [65] = { 33.3, 41.7, 440, 300 }, + [66] = { 34.1, 41.7, 440, 300 }, + [67] = { 36.3, 41.6, 440, 300 }, + [68] = { 33.3, 41.3, 440, 300 }, + [69] = { 36.7, 40.8, 440, 300 }, + [70] = { 35.7, 40.7, 440, 300 }, + [71] = { 32.9, 40.6, 440, 300 }, + [72] = { 33.8, 40.5, 440, 300 }, + [73] = { 35.3, 40.3, 440, 300 }, + [74] = { 33, 40.3, 440, 300 }, + [75] = { 33.9, 40.1, 440, 300 }, + [76] = { 36.7, 40, 440, 300 }, + [77] = { 35.6, 39.6, 440, 300 }, + [78] = { 33.8, 39.5, 440, 300 }, + [79] = { 34.5, 39.5, 440, 300 }, + [80] = { 34.9, 39.4, 440, 300 }, + [81] = { 34.4, 38.8, 440, 300 }, + [82] = { 35.2, 38.6, 440, 300 }, + [83] = { 33.2, 38.4, 440, 300 }, + [84] = { 33.6, 38.1, 440, 300 }, + [85] = { 76.5, 84, 490, 300 }, + [86] = { 77.1, 81.2, 490, 300 }, + [87] = { 78.4, 80.6, 490, 300 }, + [88] = { 78.9, 79.4, 490, 300 }, + [89] = { 79, 79.1, 490, 300 }, + [90] = { 77.7, 78.8, 490, 300 }, + [91] = { 80.9, 75.7, 490, 300 }, + [92] = { 82.5, 74, 490, 300 }, + [93] = { 82.4, 73.4, 490, 300 }, + [94] = { 81.7, 72, 490, 300 }, + [95] = { 83.3, 71.9, 490, 300 }, + [96] = { 81.9, 71.5, 490, 300 }, + [97] = { 83.5, 71.1, 490, 300 }, + [98] = { 83.4, 70, 490, 300 }, + [99] = { 84.4, 68.6, 490, 300 }, + [100] = { 82.3, 67.9, 490, 300 }, + [101] = { 82.9, 67.3, 490, 300 }, + }, + ["lvl"] = "47-48", + }, + [5456] = { + ["coords"] = { + [1] = { 31.5, 50.5, 440, 300 }, + [2] = { 32.7, 50.3, 440, 300 }, + [3] = { 32.7, 50.2, 440, 300 }, + [4] = { 33, 50.2, 440, 300 }, + [5] = { 33.8, 49.6, 440, 300 }, + [6] = { 31.6, 49.5, 440, 300 }, + [7] = { 34.9, 49.3, 440, 300 }, + [8] = { 34.1, 49, 440, 300 }, + [9] = { 35.1, 48.9, 440, 300 }, + [10] = { 31.7, 48.8, 440, 300 }, + [11] = { 32.2, 48.5, 440, 300 }, + [12] = { 32.1, 48.2, 440, 300 }, + [13] = { 35.8, 48.2, 440, 300 }, + [14] = { 31.9, 47.9, 440, 300 }, + [15] = { 35, 47.9, 440, 300 }, + [16] = { 32.7, 47.8, 440, 300 }, + [17] = { 34.2, 47.5, 440, 300 }, + [18] = { 31.4, 47.4, 440, 300 }, + [19] = { 30.9, 47.2, 440, 300 }, + [20] = { 35.1, 47.2, 440, 300 }, + [21] = { 30.1, 47.1, 440, 300 }, + [22] = { 36.2, 46.8, 440, 300 }, + [23] = { 31.9, 46.8, 440, 300 }, + [24] = { 31, 46.7, 440, 300 }, + [25] = { 33.6, 46.6, 440, 300 }, + [26] = { 31.7, 46.5, 440, 300 }, + [27] = { 35.6, 46.5, 440, 300 }, + [28] = { 33.4, 46.4, 440, 300 }, + [29] = { 31.3, 46.3, 440, 300 }, + [30] = { 34.5, 46, 440, 300 }, + [31] = { 32.3, 46, 440, 300 }, + [32] = { 35.1, 45.8, 440, 300 }, + [33] = { 34.8, 45.6, 440, 300 }, + [34] = { 33.3, 45.6, 440, 300 }, + [35] = { 30.5, 45.6, 440, 300 }, + [36] = { 34.6, 45.4, 440, 300 }, + [37] = { 32.4, 45.3, 440, 300 }, + [38] = { 31.1, 45.2, 440, 300 }, + [39] = { 32.6, 45.2, 440, 300 }, + [40] = { 31.9, 45.1, 440, 300 }, + [41] = { 31.4, 45.1, 440, 300 }, + [42] = { 36.3, 45.1, 440, 300 }, + [43] = { 35.6, 45, 440, 300 }, + [44] = { 33.7, 44.7, 440, 300 }, + [45] = { 32, 44.6, 440, 300 }, + [46] = { 31.4, 44.6, 440, 300 }, + [47] = { 31.5, 44.4, 440, 300 }, + [48] = { 33.3, 44.4, 440, 300 }, + [49] = { 34.2, 44.4, 440, 300 }, + [50] = { 35.1, 44.4, 440, 300 }, + [51] = { 30.8, 44.2, 440, 300 }, + [52] = { 32.8, 44.2, 440, 300 }, + [53] = { 35.9, 43.9, 440, 300 }, + [54] = { 32, 43.9, 440, 300 }, + [55] = { 34.8, 43.7, 440, 300 }, + [56] = { 33.7, 43.7, 440, 300 }, + [57] = { 35, 43.3, 440, 300 }, + [58] = { 32.8, 43.2, 440, 300 }, + [59] = { 36.2, 43, 440, 300 }, + [60] = { 35.3, 42.9, 440, 300 }, + [61] = { 32.9, 42.6, 440, 300 }, + [62] = { 32.5, 42.6, 440, 300 }, + [63] = { 35.7, 42.2, 440, 300 }, + [64] = { 33.7, 42, 440, 300 }, + [65] = { 33.3, 41.7, 440, 300 }, + [66] = { 34.1, 41.7, 440, 300 }, + [67] = { 36.3, 41.6, 440, 300 }, + [68] = { 33.3, 41.3, 440, 300 }, + [69] = { 36.7, 40.8, 440, 300 }, + [70] = { 35.7, 40.7, 440, 300 }, + [71] = { 32.9, 40.6, 440, 300 }, + [72] = { 33.8, 40.5, 440, 300 }, + [73] = { 35.3, 40.3, 440, 300 }, + [74] = { 33, 40.3, 440, 300 }, + [75] = { 33.9, 40.1, 440, 300 }, + [76] = { 36.7, 40, 440, 300 }, + [77] = { 35.6, 39.6, 440, 300 }, + [78] = { 33.8, 39.5, 440, 300 }, + [79] = { 34.5, 39.5, 440, 300 }, + [80] = { 34.9, 39.4, 440, 300 }, + [81] = { 34.4, 38.8, 440, 300 }, + [82] = { 35.2, 38.6, 440, 300 }, + [83] = { 33.2, 38.4, 440, 300 }, + [84] = { 33.6, 38.1, 440, 300 }, + [85] = { 76.5, 84, 490, 300 }, + [86] = { 77.1, 81.2, 490, 300 }, + [87] = { 78.4, 80.6, 490, 300 }, + [88] = { 78.9, 79.4, 490, 300 }, + [89] = { 79, 79.1, 490, 300 }, + [90] = { 77.7, 78.8, 490, 300 }, + [91] = { 80.9, 75.7, 490, 300 }, + [92] = { 82.5, 74, 490, 300 }, + [93] = { 82.4, 73.4, 490, 300 }, + [94] = { 81.7, 72, 490, 300 }, + [95] = { 83.3, 71.9, 490, 300 }, + [96] = { 81.9, 71.5, 490, 300 }, + [97] = { 83.5, 71.1, 490, 300 }, + [98] = { 83.4, 70, 490, 300 }, + [99] = { 84.4, 68.6, 490, 300 }, + [100] = { 82.3, 67.9, 490, 300 }, + [101] = { 82.9, 67.3, 490, 300 }, + }, + ["lvl"] = "48-49", + }, + [5457] = { + ["coords"] = { + [1] = { 31.5, 50.5, 440, 300 }, + [2] = { 32.7, 50.3, 440, 300 }, + [3] = { 32.7, 50.2, 440, 300 }, + [4] = { 33, 50.2, 440, 300 }, + [5] = { 33.8, 49.6, 440, 300 }, + [6] = { 31.6, 49.5, 440, 300 }, + [7] = { 34.9, 49.3, 440, 300 }, + [8] = { 34.1, 49, 440, 300 }, + [9] = { 35.1, 48.9, 440, 300 }, + [10] = { 31.7, 48.8, 440, 300 }, + [11] = { 32.2, 48.5, 440, 300 }, + [12] = { 32.1, 48.2, 440, 300 }, + [13] = { 35.8, 48.2, 440, 300 }, + [14] = { 31.9, 47.9, 440, 300 }, + [15] = { 35, 47.9, 440, 300 }, + [16] = { 32.7, 47.8, 440, 300 }, + [17] = { 34.2, 47.5, 440, 300 }, + [18] = { 31.4, 47.4, 440, 300 }, + [19] = { 30.9, 47.2, 440, 300 }, + [20] = { 35.1, 47.2, 440, 300 }, + [21] = { 30.1, 47.1, 440, 300 }, + [22] = { 36.2, 46.8, 440, 300 }, + [23] = { 31.9, 46.8, 440, 300 }, + [24] = { 31, 46.7, 440, 300 }, + [25] = { 33.6, 46.6, 440, 300 }, + [26] = { 31.7, 46.5, 440, 300 }, + [27] = { 35.6, 46.5, 440, 300 }, + [28] = { 33.4, 46.4, 440, 300 }, + [29] = { 31.3, 46.3, 440, 300 }, + [30] = { 34.5, 46, 440, 300 }, + [31] = { 32.3, 46, 440, 300 }, + [32] = { 35.1, 45.8, 440, 300 }, + [33] = { 34.8, 45.6, 440, 300 }, + [34] = { 33.3, 45.6, 440, 300 }, + [35] = { 30.5, 45.6, 440, 300 }, + [36] = { 34.6, 45.4, 440, 300 }, + [37] = { 32.4, 45.3, 440, 300 }, + [38] = { 31.1, 45.2, 440, 300 }, + [39] = { 32.6, 45.2, 440, 300 }, + [40] = { 31.9, 45.1, 440, 300 }, + [41] = { 31.4, 45.1, 440, 300 }, + [42] = { 36.3, 45.1, 440, 300 }, + [43] = { 35.6, 45, 440, 300 }, + [44] = { 33.7, 44.7, 440, 300 }, + [45] = { 32, 44.6, 440, 300 }, + [46] = { 31.4, 44.6, 440, 300 }, + [47] = { 31.5, 44.4, 440, 300 }, + [48] = { 33.3, 44.4, 440, 300 }, + [49] = { 34.2, 44.4, 440, 300 }, + [50] = { 35.1, 44.4, 440, 300 }, + [51] = { 30.8, 44.2, 440, 300 }, + [52] = { 32.8, 44.2, 440, 300 }, + [53] = { 35.9, 43.9, 440, 300 }, + [54] = { 32, 43.9, 440, 300 }, + [55] = { 34.8, 43.7, 440, 300 }, + [56] = { 33.7, 43.7, 440, 300 }, + [57] = { 35, 43.3, 440, 300 }, + [58] = { 32.8, 43.2, 440, 300 }, + [59] = { 36.2, 43, 440, 300 }, + [60] = { 35.3, 42.9, 440, 300 }, + [61] = { 32.9, 42.6, 440, 300 }, + [62] = { 32.5, 42.6, 440, 300 }, + [63] = { 35.7, 42.2, 440, 300 }, + [64] = { 33.7, 42, 440, 300 }, + [65] = { 33.3, 41.7, 440, 300 }, + [66] = { 34.1, 41.7, 440, 300 }, + [67] = { 36.3, 41.6, 440, 300 }, + [68] = { 33.3, 41.3, 440, 300 }, + [69] = { 36.7, 40.8, 440, 300 }, + [70] = { 35.7, 40.7, 440, 300 }, + [71] = { 32.9, 40.6, 440, 300 }, + [72] = { 33.8, 40.5, 440, 300 }, + [73] = { 35.3, 40.3, 440, 300 }, + [74] = { 33, 40.3, 440, 300 }, + [75] = { 33.9, 40.1, 440, 300 }, + [76] = { 36.7, 40, 440, 300 }, + [77] = { 35.6, 39.6, 440, 300 }, + [78] = { 33.8, 39.5, 440, 300 }, + [79] = { 34.5, 39.5, 440, 300 }, + [80] = { 34.9, 39.4, 440, 300 }, + [81] = { 34.4, 38.8, 440, 300 }, + [82] = { 35.2, 38.6, 440, 300 }, + [83] = { 33.2, 38.4, 440, 300 }, + [84] = { 33.6, 38.1, 440, 300 }, + [85] = { 76.5, 84, 490, 300 }, + [86] = { 77.1, 81.2, 490, 300 }, + [87] = { 78.4, 80.6, 490, 300 }, + [88] = { 78.9, 79.4, 490, 300 }, + [89] = { 79, 79.1, 490, 300 }, + [90] = { 77.7, 78.8, 490, 300 }, + [91] = { 80.9, 75.7, 490, 300 }, + [92] = { 82.5, 74, 490, 300 }, + [93] = { 82.4, 73.4, 490, 300 }, + [94] = { 81.7, 72, 490, 300 }, + [95] = { 83.3, 71.9, 490, 300 }, + [96] = { 81.9, 71.5, 490, 300 }, + [97] = { 83.5, 71.1, 490, 300 }, + [98] = { 83.4, 70, 490, 300 }, + [99] = { 84.4, 68.6, 490, 300 }, + [100] = { 82.3, 67.9, 490, 300 }, + [101] = { 82.9, 67.3, 490, 300 }, + }, + ["lvl"] = "49-50", + }, + [5462] = { + ["coords"] = { + [1] = { 44.1, 68.7, 357, 300 }, + [2] = { 44.4, 67.5, 357, 300 }, + [3] = { 43.6, 65.3, 357, 300 }, + [4] = { 45.9, 64.9, 357, 300 }, + [5] = { 45.9, 63.9, 357, 300 }, + [6] = { 46.5, 62.9, 357, 300 }, + [7] = { 46.4, 61.5, 357, 300 }, + [8] = { 46.9, 60.8, 357, 300 }, + [9] = { 47.2, 59.7, 357, 300 }, + [10] = { 47, 56.9, 357, 300 }, + [11] = { 45.8, 56.4, 357, 300 }, + [12] = { 46.4, 55.6, 357, 300 }, + [13] = { 46.8, 55.3, 357, 300 }, + [14] = { 46.5, 53.4, 357, 300 }, + [15] = { 48.7, 53.2, 357, 300 }, + [16] = { 49.1, 53.1, 357, 300 }, + [17] = { 44.9, 52.2, 357, 300 }, + [18] = { 45.9, 51.7, 357, 300 }, + [19] = { 49, 51.6, 357, 300 }, + [20] = { 48.4, 51.3, 357, 300 }, + [21] = { 47.8, 50.2, 357, 300 }, + [22] = { 48.5, 48.7, 357, 300 }, + [23] = { 44.9, 48.6, 357, 300 }, + [24] = { 45, 46.3, 357, 300 }, + [25] = { 43.5, 39.3, 357, 300 }, + [26] = { 44.4, 39.2, 357, 300 }, + [27] = { 41.6, 38.8, 357, 300 }, + [28] = { 42.1, 38.6, 357, 300 }, + [29] = { 35.6, 36.6, 357, 300 }, + [30] = { 38, 36.2, 357, 300 }, + [31] = { 37.4, 35, 357, 300 }, + [32] = { 34.4, 34.6, 357, 300 }, + [33] = { 34.2, 33.3, 357, 300 }, + [34] = { 37.5, 33.1, 357, 300 }, + }, + ["lvl"] = "47-48", + }, + [5464] = { + ["coords"] = { + [1] = { 75.8, 46.2, 10, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "29", + }, + [5465] = { + ["coords"] = { + [1] = { 44.5, 58.7, 440, 300 }, + [2] = { 35.3, 56.4, 440, 300 }, + [3] = { 58.8, 54.4, 440, 300 }, + [4] = { 50.6, 51.7, 440, 300 }, + [5] = { 51.3, 48.9, 440, 300 }, + [6] = { 43.2, 40.1, 1941, 300 }, + [7] = { 1, 26, 1941, 300 }, + [8] = { 4.9, 11.5, 1941, 300 }, + }, + ["lvl"] = "45-47", + }, + [5466] = { + ["coords"] = { + [1] = { 64.7, 62.6, 440, 600 }, + [2] = { 66.7, 62.5, 440, 600 }, + [3] = { 65.7, 60.6, 440, 600 }, + [4] = { 66.7, 60.1, 440, 600 }, + [5] = { 68.5, 59.7, 440, 600 }, + [6] = { 66.9, 58.6, 440, 600 }, + [7] = { 67.5, 58.2, 440, 600 }, + [8] = { 69.5, 58, 440, 600 }, + [9] = { 70.4, 56.9, 440, 600 }, + [10] = { 71.5, 55.7, 440, 600 }, + [11] = { 73.1, 82.3, 1941, 600 }, + [12] = { 83.5, 81.8, 1941, 600 }, + [13] = { 78.3, 71.9, 1941, 600 }, + [14] = { 83.6, 69.4, 1941, 600 }, + [15] = { 92.9, 67.4, 1941, 600 }, + [16] = { 84.7, 61.5, 1941, 600 }, + [17] = { 87.7, 59.7, 1941, 600 }, + [18] = { 97.7, 58.7, 1941, 600 }, + }, + ["lvl"] = "48-49", + ["rnk"] = "1", + }, + [5468] = "_", + [5469] = { + ["coords"] = { + [1] = { 37.2, 81.3, 440, 600 }, + [2] = { 36.7, 80.6, 440, 600 }, + [3] = { 37.6, 80.6, 440, 600 }, + [4] = { 37.1, 79.9, 440, 600 }, + [5] = { 37.1, 79.6, 440, 600 }, + [6] = { 37.1, 79.3, 440, 300 }, + [7] = { 36.7, 79.2, 440, 600 }, + }, + ["lvl"] = "48-49", + ["rnk"] = "1", + }, + [5470] = { + ["coords"] = { + [1] = { 37.4, 80.5, 440, 300 }, + [2] = { 36.7, 80.3, 440, 300 }, + }, + ["lvl"] = "49-50", + ["rnk"] = "1", + }, + [5471] = { + ["coords"] = { + [1] = { 39.6, 74.8, 440, 300 }, + [2] = { 39.1, 74.1, 440, 300 }, + [3] = { 42, 74.1, 440, 300 }, + [4] = { 40.5, 73.4, 440, 300 }, + [5] = { 42.5, 73.4, 440, 300 }, + [6] = { 42, 72.7, 440, 300 }, + [7] = { 39.1, 72.6, 440, 300 }, + [8] = { 42, 71.2, 440, 300 }, + [9] = { 41, 71.2, 440, 300 }, + [10] = { 39.1, 71.2, 440, 300 }, + [11] = { 39.6, 70.5, 440, 300 }, + [12] = { 41.5, 70.5, 440, 300 }, + [13] = { 47.3, 67.6, 440, 300 }, + [14] = { 48.3, 67.6, 440, 300 }, + [15] = { 46.8, 66.9, 440, 300 }, + [16] = { 45.9, 66.8, 440, 300 }, + [17] = { 46.4, 66.2, 440, 300 }, + [18] = { 45.4, 66.2, 440, 300 }, + [19] = { 47.8, 65.4, 440, 300 }, + [20] = { 46.9, 65.4, 440, 300 }, + [21] = { 46.3, 64.7, 440, 300 }, + [22] = { 48.3, 64.6, 440, 300 }, + [23] = { 46.3, 63.2, 440, 300 }, + [24] = { 39.3, 56.6, 440, 300 }, + [25] = { 42, 56, 440, 300 }, + [26] = { 40.1, 56, 440, 300 }, + [27] = { 39.1, 55.3, 440, 300 }, + [28] = { 41.2, 55.2, 440, 300 }, + [29] = { 42.5, 54.4, 440, 300 }, + [30] = { 39.6, 53.8, 440, 300 }, + [31] = { 40.2, 53.8, 440, 300 }, + [32] = { 41.6, 53.7, 440, 300 }, + [33] = { 38.6, 53.1, 440, 300 }, + [34] = { 40.5, 52.4, 440, 300 }, + }, + ["lvl"] = "45-46", + }, + [5472] = { + ["coords"] = { + [1] = { 38.6, 73.4, 440, 300 }, + [2] = { 40.1, 72.7, 440, 300 }, + [3] = { 41, 72.6, 440, 300 }, + [4] = { 39.6, 71.9, 440, 300 }, + [5] = { 48.3, 66.1, 440, 300 }, + [6] = { 45.9, 65.5, 440, 300 }, + [7] = { 47.3, 63.2, 440, 300 }, + [8] = { 38.1, 59.3, 440, 300 }, + [9] = { 38.7, 58.1, 440, 300 }, + [10] = { 39.9, 58, 440, 300 }, + [11] = { 37.9, 57.4, 440, 300 }, + [12] = { 38.3, 57.2, 440, 300 }, + [13] = { 40.7, 56.9, 440, 300 }, + [14] = { 41.1, 56.7, 440, 300 }, + [15] = { 37.8, 56.6, 440, 300 }, + [16] = { 38.5, 54.7, 440, 300 }, + [17] = { 40, 54.4, 440, 300 }, + [18] = { 40.6, 54, 440, 300 }, + [19] = { 42.2, 53.3, 440, 300 }, + [20] = { 38.4, 52.9, 440, 300 }, + [21] = { 38.8, 52.5, 440, 300 }, + [22] = { 38.9, 52, 440, 300 }, + [23] = { 40.1, 51.3, 440, 300 }, + [24] = { 39.6, 51.2, 440, 300 }, + [25] = { 39.9, 50.9, 440, 300 }, + [26] = { 39.6, 74.8, 440, 300 }, + [27] = { 39.1, 74.1, 440, 300 }, + [28] = { 42, 74.1, 440, 300 }, + [29] = { 40.5, 73.4, 440, 300 }, + [30] = { 42.5, 73.4, 440, 300 }, + [31] = { 42, 72.7, 440, 300 }, + [32] = { 39.1, 72.6, 440, 300 }, + [33] = { 42, 71.2, 440, 300 }, + [34] = { 41, 71.2, 440, 300 }, + [35] = { 39.1, 71.2, 440, 300 }, + [36] = { 39.6, 70.5, 440, 300 }, + [37] = { 41.5, 70.5, 440, 300 }, + [38] = { 47.3, 67.6, 440, 300 }, + [39] = { 48.3, 67.6, 440, 300 }, + [40] = { 46.8, 66.9, 440, 300 }, + [41] = { 45.9, 66.8, 440, 300 }, + [42] = { 46.4, 66.2, 440, 300 }, + [43] = { 45.4, 66.2, 440, 300 }, + [44] = { 47.8, 65.4, 440, 300 }, + [45] = { 46.9, 65.4, 440, 300 }, + [46] = { 46.3, 64.7, 440, 300 }, + [47] = { 48.3, 64.6, 440, 300 }, + [48] = { 46.3, 63.2, 440, 300 }, + [49] = { 39.3, 56.6, 440, 300 }, + [50] = { 42, 56, 440, 300 }, + [51] = { 40.1, 56, 440, 300 }, + [52] = { 39.1, 55.3, 440, 300 }, + [53] = { 41.2, 55.2, 440, 300 }, + [54] = { 42.5, 54.4, 440, 300 }, + [55] = { 39.6, 53.8, 440, 300 }, + [56] = { 40.2, 53.8, 440, 300 }, + [57] = { 41.6, 53.7, 440, 300 }, + [58] = { 38.6, 53.1, 440, 300 }, + [59] = { 40.5, 52.4, 440, 300 }, + }, + ["lvl"] = "46-47", + }, + [5473] = { + ["coords"] = { + [1] = { 39.6, 74.8, 440, 300 }, + [2] = { 39.1, 74.1, 440, 300 }, + [3] = { 42, 74.1, 440, 300 }, + [4] = { 40.5, 73.4, 440, 300 }, + [5] = { 42.5, 73.4, 440, 300 }, + [6] = { 42, 72.7, 440, 300 }, + [7] = { 39.1, 72.6, 440, 300 }, + [8] = { 42, 71.2, 440, 300 }, + [9] = { 41, 71.2, 440, 300 }, + [10] = { 39.1, 71.2, 440, 300 }, + [11] = { 39.6, 70.5, 440, 300 }, + [12] = { 41.5, 70.5, 440, 300 }, + [13] = { 47.3, 67.6, 440, 300 }, + [14] = { 48.3, 67.6, 440, 300 }, + [15] = { 46.8, 66.9, 440, 300 }, + [16] = { 45.9, 66.8, 440, 300 }, + [17] = { 46.4, 66.2, 440, 300 }, + [18] = { 45.4, 66.2, 440, 300 }, + [19] = { 47.8, 65.4, 440, 300 }, + [20] = { 46.9, 65.4, 440, 300 }, + [21] = { 46.3, 64.7, 440, 300 }, + [22] = { 48.3, 64.6, 440, 300 }, + [23] = { 46.3, 63.2, 440, 300 }, + [24] = { 39.3, 56.6, 440, 300 }, + [25] = { 42, 56, 440, 300 }, + [26] = { 40.1, 56, 440, 300 }, + [27] = { 39.1, 55.3, 440, 300 }, + [28] = { 41.2, 55.2, 440, 300 }, + [29] = { 42.5, 54.4, 440, 300 }, + [30] = { 39.6, 53.8, 440, 300 }, + [31] = { 40.2, 53.8, 440, 300 }, + [32] = { 41.6, 53.7, 440, 300 }, + [33] = { 38.6, 53.1, 440, 300 }, + [34] = { 40.5, 52.4, 440, 300 }, + }, + ["lvl"] = "46-47", + }, + [5474] = { + ["coords"] = { + [1] = { 41.5, 74.8, 440, 300 }, + [2] = { 40.5, 74.8, 440, 300 }, + [3] = { 41.5, 71.9, 440, 300 }, + [4] = { 40.5, 70.5, 440, 300 }, + [5] = { 47.8, 63.9, 440, 300 }, + [6] = { 46.8, 63.9, 440, 300 }, + [7] = { 37.9, 59.2, 440, 300 }, + [8] = { 40.2, 58, 440, 300 }, + [9] = { 40.6, 57.4, 440, 300 }, + [10] = { 37.6, 57.1, 440, 300 }, + [11] = { 41.4, 56.7, 440, 300 }, + [12] = { 41.6, 56.6, 440, 300 }, + [13] = { 38.2, 56.5, 440, 300 }, + [14] = { 42.6, 55.9, 440, 300 }, + [15] = { 42.9, 54.8, 440, 300 }, + [16] = { 38.4, 54.5, 440, 300 }, + [17] = { 40.6, 54.3, 440, 300 }, + [18] = { 40.5, 54.3, 440, 300 }, + [19] = { 40.1, 54.3, 440, 300 }, + [20] = { 42.7, 53.1, 440, 300 }, + [21] = { 42.1, 53.1, 440, 300 }, + [22] = { 38.3, 52.2, 440, 300 }, + [23] = { 41.1, 52.2, 440, 300 }, + [24] = { 41.2, 51.9, 440, 300 }, + [25] = { 39.2, 51.9, 440, 300 }, + [26] = { 40.2, 51.6, 440, 300 }, + [27] = { 38.9, 51.3, 440, 300 }, + [28] = { 39.3, 51.2, 440, 300 }, + [29] = { 40.7, 50.7, 440, 300 }, + [30] = { 40.5, 50.6, 440, 300 }, + }, + ["lvl"] = "47-48", + }, + [5475] = { + ["coords"] = { + [1] = { 39.6, 74.8, 440, 300 }, + [2] = { 39.1, 74.1, 440, 300 }, + [3] = { 42, 74.1, 440, 300 }, + [4] = { 40.5, 73.4, 440, 300 }, + [5] = { 42.5, 73.4, 440, 300 }, + [6] = { 42, 72.7, 440, 300 }, + [7] = { 39.1, 72.6, 440, 300 }, + [8] = { 42, 71.2, 440, 300 }, + [9] = { 41, 71.2, 440, 300 }, + [10] = { 39.1, 71.2, 440, 300 }, + [11] = { 39.6, 70.5, 440, 300 }, + [12] = { 41.5, 70.5, 440, 300 }, + [13] = { 47.3, 67.6, 440, 300 }, + [14] = { 48.3, 67.6, 440, 300 }, + [15] = { 46.8, 66.9, 440, 300 }, + [16] = { 45.9, 66.8, 440, 300 }, + [17] = { 46.4, 66.2, 440, 300 }, + [18] = { 45.4, 66.2, 440, 300 }, + [19] = { 47.8, 65.4, 440, 300 }, + [20] = { 46.9, 65.4, 440, 300 }, + [21] = { 46.3, 64.7, 440, 300 }, + [22] = { 48.3, 64.6, 440, 300 }, + [23] = { 46.3, 63.2, 440, 300 }, + [24] = { 39.3, 56.6, 440, 300 }, + [25] = { 42, 56, 440, 300 }, + [26] = { 40.1, 56, 440, 300 }, + [27] = { 39.1, 55.3, 440, 300 }, + [28] = { 41.2, 55.2, 440, 300 }, + [29] = { 42.5, 54.4, 440, 300 }, + [30] = { 39.6, 53.8, 440, 300 }, + [31] = { 40.2, 53.8, 440, 300 }, + [32] = { 41.6, 53.7, 440, 300 }, + [33] = { 38.6, 53.1, 440, 300 }, + [34] = { 40.5, 52.4, 440, 300 }, + }, + ["lvl"] = "47-48", + }, + [5476] = { + ["coords"] = { + [1] = { 26.7, 59.8, 8, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "33", + }, + [5479] = { + ["coords"] = { + [1] = { 80.6, 59.9, 1519, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [5480] = { + ["coords"] = { + [1] = { 80.4, 59.8, 1519, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [5481] = { + ["coords"] = { + [1] = { 27.8, 69, 440, 300 }, + [2] = { 28.4, 68.7, 440, 300 }, + [3] = { 27.6, 67.9, 440, 300 }, + [4] = { 29, 67.5, 440, 300 }, + [5] = { 30.7, 67.3, 440, 300 }, + [6] = { 29.9, 66.9, 440, 300 }, + [7] = { 29.4, 66.3, 440, 300 }, + [8] = { 31.2, 64.7, 440, 300 }, + [9] = { 30.3, 64.6, 440, 300 }, + [10] = { 28.1, 64.6, 440, 300 }, + [11] = { 30.8, 64.3, 440, 300 }, + [12] = { 28.3, 64.1, 440, 300 }, + [13] = { 28.2, 62.9, 440, 300 }, + }, + ["lvl"] = "47-48", + }, + [5482] = { + ["coords"] = { + [1] = { 78.2, 53.1, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [5483] = { + ["coords"] = { + [1] = { 78.5, 52.9, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5484] = { + ["coords"] = { + [1] = { 52.3, 47.6, 1519, 350 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [5485] = { + ["coords"] = { + [1] = { 29.5, 67.6, 440, 300 }, + [2] = { 28.5, 66.9, 440, 300 }, + [3] = { 30.3, 66.8, 440, 300 }, + [4] = { 29.7, 66.4, 440, 300 }, + [5] = { 30.8, 66.2, 440, 300 }, + [6] = { 27.4, 65.6, 440, 300 }, + [7] = { 28.5, 65.4, 440, 300 }, + [8] = { 31, 65.3, 440, 300 }, + [9] = { 29.4, 64.6, 440, 300 }, + [10] = { 29.4, 63.9, 440, 300 }, + [11] = { 28.9, 61.9, 440, 300 }, + }, + ["lvl"] = "49-50", + }, + [5489] = { + ["coords"] = { + [1] = { 49.5, 45.2, 1519, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [5490] = { + ["coords"] = { + [1] = { 28.1, 70, 440, 300 }, + [2] = { 29.4, 66.9, 440, 300 }, + [3] = { 29.7, 66.4, 440, 300 }, + [4] = { 28, 66.2, 440, 300 }, + [5] = { 31.2, 65.5, 440, 300 }, + [6] = { 27.5, 63.3, 440, 300 }, + [7] = { 30, 63.3, 440, 300 }, + [8] = { 29.3, 62.4, 440, 300 }, + }, + ["lvl"] = "48-49", + }, + [5491] = { + ["coords"] = { + [1] = { 49.6, 49.8, 1519, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [5492] = { + ["coords"] = { + [1] = { 48.5, 49.1, 1519, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [5493] = { + ["coords"] = { + [1] = { 55, 69.6, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [5494] = { + ["coords"] = { + [1] = { 55.1, 69.8, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5495] = { + ["coords"] = { + [1] = { 39.9, 84.2, 1519, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [5496] = { + ["coords"] = { + [1] = { 39.7, 85.7, 1519, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [5497] = { + ["coords"] = { + [1] = { 49.6, 85.8, 1519, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [5498] = { + ["coords"] = { + [1] = { 48.3, 87.1, 1519, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [5499] = { + ["coords"] = { + [1] = { 55.7, 86.1, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [5500] = { + ["coords"] = { + [1] = { 55.5, 85.6, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "31", + }, + [5502] = { + ["coords"] = { + [1] = { 31.5, 62.6, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [5503] = { + ["coords"] = { + [1] = { 55.8, 85.3, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5504] = { + ["coords"] = { + [1] = { 35.8, 67.4, 1519, 490 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [5505] = { + ["coords"] = { + [1] = { 36.1, 64.4, 1519, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [5506] = { + ["coords"] = { + [1] = { 34.4, 65.2, 1519, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [5507] = "_", + [5509] = { + ["coords"] = { + [1] = { 59.3, 33.8, 1519, 310 }, + [2] = { 48.3, 95.5, 5581, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5510] = { + ["coords"] = { + [1] = { 61.9, 36.6, 1519, 310 }, + [2] = { 49.7, 97, 5581, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5511] = { + ["coords"] = { + [1] = { 63.7, 37, 1519, 310 }, + [2] = { 50.6, 97.2, 5581, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "33", + }, + [5512] = { + ["coords"] = { + [1] = { 63.2, 37.6, 1519, 310 }, + [2] = { 50.4, 97.5, 5581, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5513] = { + ["coords"] = { + [1] = { 59.3, 37.8, 1519, 310 }, + [2] = { 48.3, 97.7, 5581, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [5514] = { + ["coords"] = { + [1] = { 59.2, 37.5, 1519, 310 }, + [2] = { 48.2, 97.5, 5581, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5515] = { + ["coords"] = { + [1] = { 67.4, 36.3, 1519, 490 }, + [2] = { 52.6, 96.8, 5581, 490 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [5516] = { + ["coords"] = { + [1] = { 67.6, 35.8, 1519, 430 }, + [2] = { 52.7, 96.6, 5581, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [5517] = { + ["coords"] = { + [1] = { 68, 36, 1519, 540 }, + [2] = { 53, 96.7, 5581, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [5518] = { + ["coords"] = { + [1] = { 62.1, 30.3, 1519, 30 }, + [2] = { 49.8, 93.6, 5581, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [5519] = { + ["coords"] = { + [1] = { 62.4, 29.9, 1519, 310 }, + [2] = { 50, 93.4, 5581, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5520] = { + ["coords"] = { + [1] = { 39.5, 84.5, 1519, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [5521] = "_", + [5522] = "_", + [5524] = "_", + [5525] = "_", + [5526] = "_", + [5542] = "_", + [5543] = { + ["coords"] = { + [1] = { 35.7, 22.2, 215, 30 }, + [2] = { 89.4, 49.6, 405, 30 }, + [3] = { 28.9, 26.4, 1638, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "17", + }, + [5544] = "_", + [5548] = "_", + [5549] = "_", + [5550] = "_", + [5551] = "_", + [5552] = "_", + [5553] = "_", + [5554] = "_", + [5555] = "_", + [5556] = "_", + [5557] = "_", + [5558] = "_", + [5559] = "_", + [5560] = "_", + [5561] = "_", + [5562] = "_", + [5563] = "_", + [5564] = { + ["coords"] = { + [1] = { 71.7, 63, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [5565] = { + ["coords"] = { + [1] = { 71.6, 62.8, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [5566] = { + ["coords"] = { + [1] = { 54.3, 84.1, 1519, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [5567] = { + ["coords"] = { + [1] = { 52.2, 83.1, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "31", + }, + [5569] = { + ["coords"] = { + [1] = { 73.8, 53.5, 1537, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [5587] = "_", + [5588] = "_", + [5589] = "_", + [5590] = "_", + [5591] = { + ["coords"] = { + [1] = { 44.7, 57.2, 8, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [5592] = { + ["coords"] = { + [1] = { 81.3, 81, 8, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "43", + }, + [5593] = { + ["coords"] = { + [1] = { 83.8, 80.4, 8, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [5594] = { + ["coords"] = { + [1] = { 50.9, 27, 440, 30 }, + }, + ["lvl"] = "45", + }, + [5595] = { + ["coords"] = { + [1] = { 46.6, 42.1, 1, 300 }, + [2] = { 48.5, 41.9, 1, 300 }, + [3] = { 70, 41.9, 1, 300 }, + [4] = { 70.1, 41.7, 1, 300 }, + [5] = { 69.6, 40.6, 1, 300 }, + [6] = { 51.6, 40.1, 1, 300 }, + [7] = { 51.4, 39.7, 1, 300 }, + [8] = { 51.9, 39.4, 1, 300 }, + [9] = { 52.3, 36.9, 1, 300 }, + [10] = { 53.1, 36.8, 1, 300 }, + [11] = { 53, 36.1, 1, 300 }, + [12] = { 52.3, 35.4, 1, 300 }, + [13] = { 53.5, 35.1, 1, 300 }, + [14] = { 53.3, 34.9, 1, 300 }, + [15] = { 55.4, 34.5, 1, 300 }, + [16] = { 72, 32.3, 1, 300 }, + [17] = { 71.8, 31.3, 1, 300 }, + [18] = { 69.7, 30.3, 1, 300 }, + [19] = { 70.8, 29.9, 1, 300 }, + [20] = { 70, 26.6, 1, 300 }, + [21] = { 71.1, 22.3, 1, 300 }, + [22] = { 70.1, 20.7, 1, 300 }, + [23] = { 68.7, 18.7, 1, 300 }, + [24] = { 15.1, 87.5, 1537, 300 }, + [25] = { 13.9, 85.7, 1537, 300 }, + [26] = { 27.1, 83.8, 1537, 300 }, + [27] = { 32.4, 80.8, 1537, 300 }, + [28] = { 64.6, 80.7, 1537, 300 }, + [29] = { 22, 79.6, 1537, 300 }, + [30] = { 65.6, 79.5, 1537, 300 }, + [31] = { 40.5, 79.1, 1537, 300 }, + [32] = { 62.6, 78.9, 1537, 25 }, + [33] = { 63.5, 78.7, 1537, 25 }, + [34] = { 29.9, 78.2, 1537, 300 }, + [35] = { 21.8, 77.1, 1537, 300 }, + [36] = { 20.5, 77, 1537, 300 }, + [37] = { 35.9, 73.8, 1537, 300 }, + [38] = { 60.7, 73.4, 1537, 300 }, + [39] = { 37.9, 71.5, 1537, 300 }, + [40] = { 67.9, 66, 1537, 300 }, + [41] = { 51.9, 65.6, 1537, 300 }, + [42] = { 22.9, 65.5, 1537, 300 }, + [43] = { 66.6, 65.1, 1537, 300 }, + [44] = { 33.4, 64, 1537, 300 }, + [45] = { 32.9, 63.1, 1537, 300 }, + [46] = { 21.7, 61.4, 1537, 300 }, + [47] = { 40.3, 58.9, 1537, 300 }, + [48] = { 43.6, 58.8, 1537, 300 }, + [49] = { 50.1, 58, 1537, 300 }, + [50] = { 42.3, 57.9, 1537, 300 }, + [51] = { 28.9, 55, 1537, 300 }, + [52] = { 43.4, 54.9, 1537, 300 }, + [53] = { 37.5, 54.1, 1537, 300 }, + [54] = { 38.6, 51.1, 1537, 300 }, + [55] = { 40.7, 50.2, 1537, 300 }, + [56] = { 45, 49.9, 1537, 300 }, + [57] = { 56, 49.8, 1537, 300 }, + [58] = { 38.2, 49.2, 1537, 300 }, + [59] = { 44.4, 48.7, 1537, 300 }, + [60] = { 57.9, 34.9, 1537, 300 }, + [61] = { 69.7, 33.9, 1537, 300 }, + [62] = { 54.7, 33.8, 1537, 300 }, + [63] = { 71, 33.3, 1537, 300 }, + [64] = { 56.4, 32.1, 1537, 300 }, + [65] = { 67.6, 25.8, 1537, 300 }, + [66] = { 33, 22.2, 1537, 300 }, + [67] = { 24.3, 21.9, 1537, 300 }, + [68] = { 58.8, 14.5, 1537, 300 }, + [69] = { 39.4, 13.2, 1537, 300 }, + [70] = { 59.2, 13.1, 1537, 300 }, + [71] = { 27.2, 13, 1537, 300 }, + [72] = { 28.3, 11.8, 1537, 300 }, + [73] = { 39.1, 11.7, 1537, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [5596] = "_", + [5604] = "_", + [5615] = { + ["coords"] = { + [1] = { 63.8, 40.6, 440, 300 }, + [2] = { 63.4, 40, 440, 300 }, + [3] = { 64.7, 40, 440, 300 }, + [4] = { 59, 40, 440, 300 }, + [5] = { 64, 40, 440, 300 }, + [6] = { 65.2, 40, 440, 300 }, + [7] = { 63.8, 40, 440, 300 }, + [8] = { 64, 39.8, 440, 300 }, + [9] = { 65.2, 39.5, 440, 300 }, + [10] = { 58.8, 39.5, 440, 300 }, + [11] = { 64.2, 39.4, 440, 300 }, + [12] = { 58.5, 39.4, 440, 300 }, + [13] = { 60.9, 39.4, 440, 300 }, + [14] = { 64.6, 39.3, 440, 300 }, + [15] = { 60.4, 39.3, 440, 300 }, + [16] = { 58.7, 39.3, 440, 300 }, + [17] = { 63.7, 39.3, 440, 300 }, + [18] = { 59, 39.3, 440, 300 }, + [19] = { 65.2, 39.2, 440, 300 }, + [20] = { 60.7, 39.1, 440, 300 }, + [21] = { 60.8, 38.7, 440, 300 }, + [22] = { 63.7, 38.6, 440, 300 }, + [23] = { 60.5, 38.5, 440, 300 }, + [24] = { 59, 38.5, 440, 300 }, + [25] = { 61.7, 38.2, 440, 300 }, + [26] = { 63.7, 37.9, 440, 300 }, + [27] = { 63.4, 37.9, 440, 300 }, + [28] = { 65.2, 37.9, 440, 300 }, + [29] = { 58.5, 37.4, 440, 300 }, + [30] = { 63.3, 37.4, 440, 300 }, + [31] = { 60.1, 37.4, 440, 300 }, + [32] = { 59.9, 37.2, 440, 300 }, + [33] = { 58.4, 37.2, 440, 300 }, + [34] = { 65.6, 37.1, 440, 300 }, + [35] = { 59, 37.1, 440, 300 }, + [36] = { 60.1, 37, 440, 300 }, + [37] = { 65.1, 37, 440, 300 }, + [38] = { 65.4, 36.9, 440, 300 }, + [39] = { 65.7, 36.7, 440, 300 }, + [40] = { 58.6, 36.7, 440, 300 }, + [41] = { 65.1, 36.5, 440, 300 }, + [42] = { 58.9, 36.5, 440, 300 }, + [43] = { 58.7, 36.4, 440, 300 }, + [44] = { 65.5, 36.4, 440, 300 }, + [45] = { 65.8, 36.1, 440, 300 }, + [46] = { 58.9, 35.9, 440, 300 }, + [47] = { 62, 35.5, 440, 300 }, + [48] = { 62, 35.1, 440, 300 }, + [49] = { 61.8, 35, 440, 300 }, + [50] = { 62.3, 35, 440, 300 }, + [51] = { 61.8, 34.4, 440, 300 }, + [52] = { 60.8, 33.5, 440, 300 }, + [53] = { 60.8, 32.9, 440, 300 }, + [54] = { 60.9, 32.8, 440, 300 }, + [55] = { 60.3, 32.8, 440, 300 }, + [56] = { 60.7, 32.8, 440, 300 }, + [57] = { 60.8, 32.5, 440, 300 }, + [58] = { 60.9, 32.1, 440, 300 }, + }, + ["lvl"] = "43-44", + }, + [5616] = { + ["coords"] = { + [1] = { 63.6, 34.1, 440, 300 }, + [2] = { 63.7, 33.4, 440, 300 }, + [3] = { 62.8, 33.4, 440, 300 }, + [4] = { 63.3, 33.4, 440, 300 }, + [5] = { 65.1, 33.3, 440, 300 }, + [6] = { 63.4, 33.3, 440, 300 }, + [7] = { 63.5, 33.1, 440, 300 }, + [8] = { 62.9, 32.9, 440, 300 }, + [9] = { 65.4, 32.9, 440, 300 }, + [10] = { 63.4, 32.8, 440, 300 }, + [11] = { 63.6, 32.8, 440, 300 }, + [12] = { 65.1, 32.7, 440, 300 }, + [13] = { 65.6, 32.1, 440, 300 }, + [14] = { 63.8, 31.4, 440, 300 }, + [15] = { 63.9, 31.2, 440, 300 }, + [16] = { 63.8, 31.1, 440, 300 }, + [17] = { 63.6, 31.1, 440, 300 }, + [18] = { 63.6, 31, 440, 300 }, + [19] = { 62.8, 30.8, 440, 300 }, + [20] = { 62.7, 30.3, 440, 300 }, + [21] = { 62.7, 30.1, 440, 300 }, + [22] = { 63.8, 29.8, 440, 300 }, + [23] = { 63.9, 29.6, 440, 300 }, + [24] = { 63.4, 29.3, 440, 300 }, + [25] = { 64.1, 29.2, 440, 300 }, + [26] = { 63.7, 29.1, 440, 300 }, + [27] = { 63.9, 29.1, 440, 300 }, + [28] = { 60.4, 24.8, 440, 300 }, + [29] = { 59.4, 24.7, 440, 300 }, + [30] = { 60.8, 24.2, 440, 300 }, + [31] = { 59.8, 24.1, 440, 300 }, + [32] = { 60.9, 23.5, 440, 300 }, + [33] = { 60, 23.4, 440, 300 }, + [34] = { 59, 23.4, 440, 300 }, + [35] = { 60.4, 23.4, 440, 300 }, + [36] = { 59.9, 22.8, 440, 300 }, + [37] = { 60.8, 22.7, 440, 300 }, + [38] = { 60.3, 22.7, 440, 300 }, + }, + ["lvl"] = "40-41", + }, + [5617] = { + ["coords"] = { + [1] = { 63.8, 40.6, 440, 300 }, + [2] = { 63.4, 40, 440, 300 }, + [3] = { 64.7, 40, 440, 300 }, + [4] = { 59, 40, 440, 300 }, + [5] = { 64, 40, 440, 300 }, + [6] = { 65.2, 40, 440, 300 }, + [7] = { 63.8, 40, 440, 300 }, + [8] = { 64, 39.8, 440, 300 }, + [9] = { 65.2, 39.5, 440, 300 }, + [10] = { 58.8, 39.5, 440, 300 }, + [11] = { 64.2, 39.4, 440, 300 }, + [12] = { 58.5, 39.4, 440, 300 }, + [13] = { 60.9, 39.4, 440, 300 }, + [14] = { 64.6, 39.3, 440, 300 }, + [15] = { 60.4, 39.3, 440, 300 }, + [16] = { 58.7, 39.3, 440, 300 }, + [17] = { 63.7, 39.3, 440, 300 }, + [18] = { 59, 39.3, 440, 300 }, + [19] = { 65.2, 39.2, 440, 300 }, + [20] = { 60.7, 39.1, 440, 300 }, + [21] = { 60.8, 38.7, 440, 300 }, + [22] = { 63.7, 38.6, 440, 300 }, + [23] = { 60.5, 38.5, 440, 300 }, + [24] = { 59, 38.5, 440, 300 }, + [25] = { 61.7, 38.2, 440, 300 }, + [26] = { 63.7, 37.9, 440, 300 }, + [27] = { 63.4, 37.9, 440, 300 }, + [28] = { 65.2, 37.9, 440, 300 }, + [29] = { 58.5, 37.4, 440, 300 }, + [30] = { 63.3, 37.4, 440, 300 }, + [31] = { 60.1, 37.4, 440, 300 }, + [32] = { 59.9, 37.2, 440, 300 }, + [33] = { 58.4, 37.2, 440, 300 }, + [34] = { 65.6, 37.1, 440, 300 }, + [35] = { 59, 37.1, 440, 300 }, + [36] = { 60.1, 37, 440, 300 }, + [37] = { 65.1, 37, 440, 300 }, + [38] = { 65.4, 36.9, 440, 300 }, + [39] = { 65.7, 36.7, 440, 300 }, + [40] = { 58.6, 36.7, 440, 300 }, + [41] = { 65.1, 36.5, 440, 300 }, + [42] = { 58.9, 36.5, 440, 300 }, + [43] = { 58.7, 36.4, 440, 300 }, + [44] = { 65.5, 36.4, 440, 300 }, + [45] = { 65.8, 36.1, 440, 300 }, + [46] = { 58.9, 35.9, 440, 300 }, + [47] = { 62, 35.5, 440, 300 }, + [48] = { 62, 35.1, 440, 300 }, + [49] = { 61.8, 35, 440, 300 }, + [50] = { 62.3, 35, 440, 300 }, + [51] = { 61.8, 34.4, 440, 300 }, + [52] = { 60.8, 33.5, 440, 300 }, + [53] = { 60.8, 32.9, 440, 300 }, + [54] = { 60.9, 32.8, 440, 300 }, + [55] = { 60.3, 32.8, 440, 300 }, + [56] = { 60.7, 32.8, 440, 300 }, + [57] = { 60.8, 32.5, 440, 300 }, + [58] = { 60.9, 32.1, 440, 300 }, + }, + ["lvl"] = "42-43", + }, + [5618] = { + ["coords"] = { + [1] = { 63.6, 34.1, 440, 300 }, + [2] = { 63.7, 33.4, 440, 300 }, + [3] = { 62.8, 33.4, 440, 300 }, + [4] = { 63.3, 33.4, 440, 300 }, + [5] = { 65.1, 33.3, 440, 300 }, + [6] = { 63.4, 33.3, 440, 300 }, + [7] = { 63.5, 33.1, 440, 300 }, + [8] = { 62.9, 32.9, 440, 300 }, + [9] = { 65.4, 32.9, 440, 300 }, + [10] = { 63.4, 32.8, 440, 300 }, + [11] = { 63.6, 32.8, 440, 300 }, + [12] = { 65.1, 32.7, 440, 300 }, + [13] = { 65.6, 32.1, 440, 300 }, + [14] = { 63.8, 31.4, 440, 300 }, + [15] = { 63.9, 31.2, 440, 300 }, + [16] = { 63.8, 31.1, 440, 300 }, + [17] = { 63.6, 31.1, 440, 300 }, + [18] = { 63.6, 31, 440, 300 }, + [19] = { 62.8, 30.8, 440, 300 }, + [20] = { 62.7, 30.3, 440, 300 }, + [21] = { 62.7, 30.1, 440, 300 }, + [22] = { 63.8, 29.8, 440, 300 }, + [23] = { 63.9, 29.6, 440, 300 }, + [24] = { 63.4, 29.3, 440, 300 }, + [25] = { 64.1, 29.2, 440, 300 }, + [26] = { 63.7, 29.1, 440, 300 }, + [27] = { 63.9, 29.1, 440, 300 }, + [28] = { 60.4, 24.8, 440, 300 }, + [29] = { 59.4, 24.7, 440, 300 }, + [30] = { 60.8, 24.2, 440, 300 }, + [31] = { 59.8, 24.1, 440, 300 }, + [32] = { 60.9, 23.5, 440, 300 }, + [33] = { 60, 23.4, 440, 300 }, + [34] = { 59, 23.4, 440, 300 }, + [35] = { 60.4, 23.4, 440, 300 }, + [36] = { 59.9, 22.8, 440, 300 }, + [37] = { 60.8, 22.7, 440, 300 }, + [38] = { 60.3, 22.7, 440, 300 }, + }, + ["lvl"] = "41-42", + }, + [5621] = "_", + [5623] = { + ["coords"] = { + [1] = { 63.8, 40.6, 440, 300 }, + [2] = { 63.4, 40, 440, 300 }, + [3] = { 64.7, 40, 440, 300 }, + [4] = { 59, 40, 440, 300 }, + [5] = { 64, 40, 440, 300 }, + [6] = { 65.2, 40, 440, 300 }, + [7] = { 63.8, 40, 440, 300 }, + [8] = { 64, 39.8, 440, 300 }, + [9] = { 65.2, 39.5, 440, 300 }, + [10] = { 58.8, 39.5, 440, 300 }, + [11] = { 64.2, 39.4, 440, 300 }, + [12] = { 58.5, 39.4, 440, 300 }, + [13] = { 60.9, 39.4, 440, 300 }, + [14] = { 64.6, 39.3, 440, 300 }, + [15] = { 60.4, 39.3, 440, 300 }, + [16] = { 58.7, 39.3, 440, 300 }, + [17] = { 63.7, 39.3, 440, 300 }, + [18] = { 59, 39.3, 440, 300 }, + [19] = { 65.2, 39.2, 440, 300 }, + [20] = { 60.7, 39.1, 440, 300 }, + [21] = { 60.8, 38.7, 440, 300 }, + [22] = { 63.7, 38.6, 440, 300 }, + [23] = { 60.5, 38.5, 440, 300 }, + [24] = { 59, 38.5, 440, 300 }, + [25] = { 61.7, 38.2, 440, 300 }, + [26] = { 63.7, 37.9, 440, 300 }, + [27] = { 63.4, 37.9, 440, 300 }, + [28] = { 65.2, 37.9, 440, 300 }, + [29] = { 58.5, 37.4, 440, 300 }, + [30] = { 63.3, 37.4, 440, 300 }, + [31] = { 60.1, 37.4, 440, 300 }, + [32] = { 59.9, 37.2, 440, 300 }, + [33] = { 58.4, 37.2, 440, 300 }, + [34] = { 65.6, 37.1, 440, 300 }, + [35] = { 59, 37.1, 440, 300 }, + [36] = { 60.1, 37, 440, 300 }, + [37] = { 65.1, 37, 440, 300 }, + [38] = { 65.4, 36.9, 440, 300 }, + [39] = { 65.7, 36.7, 440, 300 }, + [40] = { 58.6, 36.7, 440, 300 }, + [41] = { 65.1, 36.5, 440, 300 }, + [42] = { 58.9, 36.5, 440, 300 }, + [43] = { 58.7, 36.4, 440, 300 }, + [44] = { 65.5, 36.4, 440, 300 }, + [45] = { 65.8, 36.1, 440, 300 }, + [46] = { 58.9, 35.9, 440, 300 }, + [47] = { 62, 35.5, 440, 300 }, + [48] = { 62, 35.1, 440, 300 }, + [49] = { 61.8, 35, 440, 300 }, + [50] = { 62.3, 35, 440, 300 }, + [51] = { 61.8, 34.4, 440, 300 }, + [52] = { 60.8, 33.5, 440, 300 }, + [53] = { 60.8, 32.9, 440, 300 }, + [54] = { 60.9, 32.8, 440, 300 }, + [55] = { 60.3, 32.8, 440, 300 }, + [56] = { 60.7, 32.8, 440, 300 }, + [57] = { 60.8, 32.5, 440, 300 }, + [58] = { 60.9, 32.1, 440, 300 }, + }, + ["lvl"] = "44-45", + }, + [5624] = { + ["coords"] = { + [1] = { 7.7, 65.6, 28, 300 }, + [2] = { 8.1, 64.7, 28, 300 }, + [3] = { 8, 64.1, 28, 300 }, + [4] = { 59.4, 69.1, 85, 300 }, + [5] = { 59.9, 68.9, 85, 300 }, + [6] = { 74.3, 71.3, 1497, 300 }, + [7] = { 57.3, 71, 1497, 300 }, + [8] = { 72.6, 70.3, 1497, 300 }, + [9] = { 77.2, 68.8, 1497, 300 }, + [10] = { 54.5, 68.4, 1497, 275 }, + [11] = { 79.2, 66.5, 1497, 300 }, + [12] = { 80.9, 64.3, 1497, 300 }, + [13] = { 82.3, 61.4, 1497, 300 }, + [14] = { 49.1, 59.9, 1497, 300 }, + [15] = { 83.9, 57.1, 1497, 300 }, + [16] = { 47.9, 56.6, 1497, 300 }, + [17] = { 83.4, 54.7, 1497, 300 }, + [18] = { 67.8, 52.2, 1497, 300 }, + [19] = { 68.6, 51.9, 1497, 300 }, + [20] = { 47.1, 49.9, 1497, 300 }, + [21] = { 65.5, 49.8, 1497, 300 }, + [22] = { 66.4, 49.7, 1497, 300 }, + [23] = { 61, 47.8, 1497, 300 }, + [24] = { 60.7, 46.6, 1497, 300 }, + [25] = { 69.8, 44.8, 1497, 300 }, + [26] = { 62.2, 44.7, 1497, 300 }, + [27] = { 69.8, 43.5, 1497, 300 }, + [28] = { 62.2, 43.4, 1497, 300 }, + [29] = { 71.3, 41.5, 1497, 300 }, + [30] = { 71, 40.4, 1497, 300 }, + [31] = { 47.1, 37.9, 1497, 300 }, + [32] = { 41.5, 33.4, 1497, 300 }, + [33] = { 84, 31.6, 1497, 300 }, + [34] = { 47.9, 31, 1497, 300 }, + [35] = { 46.4, 29.1, 1497, 300 }, + [36] = { 82.6, 27.2, 1497, 300 }, + [37] = { 49.7, 26.9, 1497, 300 }, + [38] = { 47.8, 25.5, 1497, 300 }, + [39] = { 80.9, 24.3, 1497, 300 }, + [40] = { 79.5, 22, 1497, 300 }, + [41] = { 77.5, 19.8, 1497, 300 }, + [42] = { 54.7, 19, 1497, 300 }, + [43] = { 56.8, 17.9, 1497, 300 }, + [44] = { 74.7, 17.1, 1497, 300 }, + [45] = { 68.5, 16.2, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [5625] = "_", + [5626] = "_", + [5627] = "_", + [5628] = "_", + [5629] = "_", + [5630] = "_", + [5631] = "_", + [5632] = "_", + [5633] = "_", + [5637] = { + ["coords"] = { + [1] = { 69.9, 21.3, 1537, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [5638] = { + ["coords"] = { + [1] = { 66.2, 9.6, 405, 30 }, + [2] = { 44.7, 81.7, 406, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [5639] = { + ["coords"] = { + [1] = { 51.3, 45.9, 1637, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [5640] = { + ["coords"] = { + [1] = { 22.6, 52.6, 1637, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "38", + }, + [5641] = { + ["coords"] = { + [1] = { 52.6, 54.4, 405, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [5642] = { + ["coords"] = { + [1] = { 66.4, 11.8, 405, 30 }, + [2] = { 44.9, 83.4, 406, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "37", + }, + [5644] = { + ["coords"] = { + [1] = { 54.8, 26.1, 405, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [5645] = { + ["coords"] = { + [1] = { 40.1, 30.1, 440, 300 }, + [2] = { 41, 30, 440, 300 }, + [3] = { 40.5, 29.9, 440, 300 }, + [4] = { 40.5, 29.7, 440, 300 }, + [5] = { 40.5, 29.3, 440, 300 }, + [6] = { 41, 29.2, 440, 300 }, + [7] = { 39.7, 29.2, 440, 300 }, + [8] = { 41, 28.6, 440, 300 }, + [9] = { 40.4, 28.6, 440, 300 }, + [10] = { 40.4, 28.5, 440, 300 }, + [11] = { 39.6, 28.4, 440, 300 }, + [12] = { 40.1, 27.8, 440, 300 }, + [13] = { 40.6, 27.7, 440, 300 }, + [14] = { 39.6, 27.6, 440, 300 }, + [15] = { 37.2, 26.3, 440, 300 }, + [16] = { 36.7, 26.3, 440, 300 }, + [17] = { 37.6, 26.2, 440, 300 }, + [18] = { 36.2, 25.8, 440, 300 }, + [19] = { 37.1, 25.8, 440, 300 }, + [20] = { 36.6, 25.6, 440, 300 }, + [21] = { 37.2, 25.5, 440, 300 }, + [22] = { 37.7, 25.5, 440, 300 }, + [23] = { 36.6, 24.8, 440, 300 }, + [24] = { 37.1, 24.8, 440, 300 }, + [25] = { 37.6, 24.7, 440, 300 }, + [26] = { 36.3, 24.6, 440, 300 }, + [27] = { 37.4, 24.4, 440, 300 }, + [28] = { 37.6, 24.3, 440, 300 }, + [29] = { 38.1, 24.1, 440, 300 }, + [30] = { 42.5, 23.5, 440, 300 }, + [31] = { 43, 23.3, 440, 300 }, + [32] = { 42.3, 23.2, 440, 300 }, + [33] = { 42.5, 22.7, 440, 300 }, + [34] = { 43, 22.7, 440, 300 }, + [35] = { 38.5, 22, 440, 300 }, + [36] = { 41.5, 22, 440, 300 }, + [37] = { 38.2, 21.7, 440, 300 }, + [38] = { 39.6, 21.3, 440, 300 }, + [39] = { 38.2, 21.3, 440, 300 }, + [40] = { 39.1, 21.2, 440, 300 }, + [41] = { 38.5, 21.2, 440, 300 }, + }, + ["lvl"] = "42-43", + ["rnk"] = "1", + }, + [5646] = { + ["coords"] = { + [1] = { 40.1, 30.1, 440, 300 }, + [2] = { 41, 30, 440, 300 }, + [3] = { 40.5, 29.9, 440, 300 }, + [4] = { 40.5, 29.7, 440, 300 }, + [5] = { 40.5, 29.3, 440, 300 }, + [6] = { 41, 29.2, 440, 300 }, + [7] = { 39.7, 29.2, 440, 300 }, + [8] = { 41, 28.6, 440, 300 }, + [9] = { 40.4, 28.6, 440, 300 }, + [10] = { 40.4, 28.5, 440, 300 }, + [11] = { 39.6, 28.4, 440, 300 }, + [12] = { 40.1, 27.8, 440, 300 }, + [13] = { 40.6, 27.7, 440, 300 }, + [14] = { 39.6, 27.6, 440, 300 }, + [15] = { 37.2, 26.3, 440, 300 }, + [16] = { 36.7, 26.3, 440, 300 }, + [17] = { 37.6, 26.2, 440, 300 }, + [18] = { 36.2, 25.8, 440, 300 }, + [19] = { 37.1, 25.8, 440, 300 }, + [20] = { 36.6, 25.6, 440, 300 }, + [21] = { 37.2, 25.5, 440, 300 }, + [22] = { 37.7, 25.5, 440, 300 }, + [23] = { 36.6, 24.8, 440, 300 }, + [24] = { 37.1, 24.8, 440, 300 }, + [25] = { 37.6, 24.7, 440, 300 }, + [26] = { 36.3, 24.6, 440, 300 }, + [27] = { 37.4, 24.4, 440, 300 }, + [28] = { 37.6, 24.3, 440, 300 }, + [29] = { 38.1, 24.1, 440, 300 }, + [30] = { 42.5, 23.5, 440, 300 }, + [31] = { 43, 23.3, 440, 300 }, + [32] = { 42.3, 23.2, 440, 300 }, + [33] = { 42.5, 22.7, 440, 300 }, + [34] = { 43, 22.7, 440, 300 }, + [35] = { 38.5, 22, 440, 300 }, + [36] = { 41.5, 22, 440, 300 }, + [37] = { 38.2, 21.7, 440, 300 }, + [38] = { 39.6, 21.3, 440, 300 }, + [39] = { 38.2, 21.3, 440, 300 }, + [40] = { 39.1, 21.2, 440, 300 }, + [41] = { 38.5, 21.2, 440, 300 }, + }, + ["lvl"] = "42-44", + ["rnk"] = "1", + }, + [5647] = { + ["coords"] = { + [1] = { 40.1, 30.1, 440, 300 }, + [2] = { 41, 30, 440, 300 }, + [3] = { 40.5, 29.9, 440, 300 }, + [4] = { 40.5, 29.7, 440, 300 }, + [5] = { 40.5, 29.3, 440, 300 }, + [6] = { 41, 29.2, 440, 300 }, + [7] = { 39.7, 29.2, 440, 300 }, + [8] = { 41, 28.6, 440, 300 }, + [9] = { 40.4, 28.6, 440, 300 }, + [10] = { 40.4, 28.5, 440, 300 }, + [11] = { 39.6, 28.4, 440, 300 }, + [12] = { 40.1, 27.8, 440, 300 }, + [13] = { 40.6, 27.7, 440, 300 }, + [14] = { 39.6, 27.6, 440, 300 }, + [15] = { 37.2, 26.3, 440, 300 }, + [16] = { 36.7, 26.3, 440, 300 }, + [17] = { 37.6, 26.2, 440, 300 }, + [18] = { 36.2, 25.8, 440, 300 }, + [19] = { 37.1, 25.8, 440, 300 }, + [20] = { 36.6, 25.6, 440, 300 }, + [21] = { 37.2, 25.5, 440, 300 }, + [22] = { 37.7, 25.5, 440, 300 }, + [23] = { 36.6, 24.8, 440, 300 }, + [24] = { 37.1, 24.8, 440, 300 }, + [25] = { 37.6, 24.7, 440, 300 }, + [26] = { 36.3, 24.6, 440, 300 }, + [27] = { 37.4, 24.4, 440, 300 }, + [28] = { 37.6, 24.3, 440, 300 }, + [29] = { 38.1, 24.1, 440, 300 }, + [30] = { 42.5, 23.5, 440, 300 }, + [31] = { 43, 23.3, 440, 300 }, + [32] = { 42.3, 23.2, 440, 300 }, + [33] = { 42.5, 22.7, 440, 300 }, + [34] = { 43, 22.7, 440, 300 }, + [35] = { 38.5, 22, 440, 300 }, + [36] = { 41.5, 22, 440, 300 }, + [37] = { 38.2, 21.7, 440, 300 }, + [38] = { 39.6, 21.3, 440, 300 }, + [39] = { 38.2, 21.3, 440, 300 }, + [40] = { 39.1, 21.2, 440, 300 }, + [41] = { 38.5, 21.2, 440, 300 }, + }, + ["lvl"] = "43-44", + ["rnk"] = "1", + }, + [5648] = { + ["coords"] = { + [1] = { 56.7, 85.6, 1176, 18000 }, + [2] = { 56.7, 85.2, 1176, 18000 }, + [3] = { 59.1, 81.9, 1176, 18000 }, + [4] = { 56.5, 78.7, 1176, 18000 }, + [5] = { 59.6, 67.8, 1176, 18000 }, + [6] = { 60, 67.6, 1176, 18000 }, + [7] = { 60, 67.3, 1176, 18000 }, + [8] = { 57.2, 63.6, 1176, 18000 }, + [9] = { 58.3, 59.3, 1176, 18000 }, + [10] = { 56.4, 59.2, 1176, 18000 }, + [11] = { 56.3, 59.2, 1176, 18000 }, + [12] = { 56.4, 58.6, 1176, 18000 }, + [13] = { 58, 56.5, 1176, 18000 }, + [14] = { 57.1, 54.8, 1176, 18000 }, + [15] = { 56.2, 50.8, 1176, 18000 }, + [16] = { 55.8, 50.5, 1176, 18000 }, + [17] = { 46.2, 50.1, 1176, 18000 }, + [18] = { 52.6, 47.4, 1176, 18000 }, + [19] = { 52.3, 44.4, 1176, 18000 }, + [20] = { 52.3, 42.4, 1176, 18000 }, + [21] = { 49.7, 42.4, 1176, 18000 }, + [22] = { 49.6, 42.3, 1176, 18000 }, + [23] = { 54.7, 39.4, 1176, 18000 }, + [24] = { 51.1, 37.5, 1176, 18000 }, + [25] = { 51.4, 37.4, 1176, 18000 }, + }, + ["lvl"] = "43-44", + ["rnk"] = "1", + }, + [5649] = { + ["coords"] = { + [1] = { 56.3, 85.7, 1176, 18000 }, + [2] = { 58.8, 82.3, 1176, 18000 }, + [3] = { 57, 79.4, 1176, 18000 }, + [4] = { 58.4, 75.3, 1176, 18000 }, + [5] = { 58.2, 74.4, 1176, 18000 }, + [6] = { 58.7, 70.1, 1176, 18000 }, + [7] = { 58.7, 69.8, 1176, 18000 }, + [8] = { 49.1, 64.6, 1176, 18000 }, + [9] = { 57.2, 60.3, 1176, 18000 }, + [10] = { 57.7, 57.4, 1176, 18000 }, + [11] = { 49.9, 57.1, 1176, 18000 }, + [12] = { 58.1, 56.3, 1176, 18000 }, + [13] = { 57.8, 56, 1176, 18000 }, + [14] = { 56.8, 55, 1176, 18000 }, + [15] = { 54.7, 53.1, 1176, 18000 }, + [16] = { 54.5, 52.9, 1176, 18000 }, + [17] = { 42.6, 50.6, 1176, 18000 }, + [18] = { 38.7, 50, 1176, 18000 }, + [19] = { 47.3, 48.6, 1176, 18000 }, + [20] = { 47.4, 48.4, 1176, 18000 }, + [21] = { 46.7, 48.1, 1176, 18000 }, + [22] = { 52.9, 46.9, 1176, 18000 }, + [23] = { 61.6, 46.8, 1176, 18000 }, + [24] = { 30.9, 46.6, 1176, 18000 }, + [25] = { 23.4, 46.6, 1176, 18000 }, + [26] = { 31.2, 46.3, 1176, 18000 }, + [27] = { 33.1, 45.5, 1176, 18000 }, + [28] = { 37.6, 45.1, 1176, 18000 }, + [29] = { 37.5, 45.1, 1176, 18000 }, + [30] = { 37.2, 45, 1176, 18000 }, + [31] = { 34.2, 43.8, 1176, 18000 }, + [32] = { 29.3, 43.3, 1176, 18000 }, + [33] = { 49.3, 42.8, 1176, 18000 }, + [34] = { 18.3, 42.4, 1176, 18000 }, + [35] = { 28.3, 41.7, 1176, 18000 }, + [36] = { 34.2, 41.7, 1176, 18000 }, + [37] = { 54.5, 40.2, 1176, 18000 }, + [38] = { 16.1, 39.8, 1176, 18000 }, + [39] = { 53.2, 39.7, 1176, 18000 }, + [40] = { 16.4, 39.5, 1176, 18000 }, + [41] = { 19.8, 39, 1176, 18000 }, + [42] = { 28.3, 38.2, 1176, 18000 }, + [43] = { 52.7, 37.4, 1176, 18000 }, + [44] = { 31.6, 36.8, 1176, 18000 }, + [45] = { 32, 36.7, 1176, 18000 }, + [46] = { 60.8, 36.7, 1176, 18000 }, + [47] = { 29.4, 36.6, 1176, 18000 }, + [48] = { 24.6, 35.4, 1176, 18000 }, + [49] = { 55.6, 30.9, 1176, 18000 }, + [50] = { 63, 28, 1176, 18000 }, + [51] = { 49.5, 26.2, 1176, 18000 }, + [52] = { 31.8, 22, 1176, 18000 }, + [53] = { 57.6, 20.7, 1176, 18000 }, + [54] = { 60.3, 18.5, 1176, 18000 }, + [55] = { 29.1, 18, 1176, 18000 }, + [56] = { 35.3, 16.5, 1176, 18000 }, + [57] = { 33.1, 16.4, 1176, 18000 }, + [58] = { 35.5, 16.1, 1176, 18000 }, + }, + ["lvl"] = "44-45", + ["rnk"] = "1", + }, + [5650] = { + ["coords"] = { + [1] = { 58.7, 81.8, 1176, 18000 }, + [2] = { 56.9, 78.5, 1176, 18000 }, + [3] = { 58.5, 61.1, 1176, 18000 }, + [4] = { 57.9, 60.9, 1176, 18000 }, + [5] = { 44.7, 53.9, 1176, 18000 }, + [6] = { 45, 53.7, 1176, 18000 }, + [7] = { 39.5, 51.6, 1176, 18000 }, + [8] = { 56, 50.9, 1176, 18000 }, + [9] = { 37.5, 48.3, 1176, 18000 }, + [10] = { 37.3, 47.9, 1176, 18000 }, + [11] = { 53, 47.6, 1176, 18000 }, + [12] = { 61.2, 47.2, 1176, 18000 }, + [13] = { 31.3, 46.7, 1176, 18000 }, + [14] = { 23.3, 46.3, 1176, 18000 }, + [15] = { 54.7, 45.4, 1176, 18000 }, + [16] = { 59.8, 44.7, 1176, 18000 }, + [17] = { 30.7, 44.3, 1176, 18000 }, + [18] = { 37.6, 44.2, 1176, 18000 }, + [19] = { 65.6, 43, 1176, 18000 }, + [20] = { 59.2, 42.6, 1176, 18000 }, + [21] = { 51.6, 42, 1176, 18000 }, + [22] = { 26.4, 41.7, 1176, 18000 }, + [23] = { 52.7, 41.4, 1176, 18000 }, + [24] = { 51.9, 41.1, 1176, 18000 }, + [25] = { 14.5, 38.6, 1176, 18000 }, + [26] = { 27.2, 38.1, 1176, 18000 }, + [27] = { 51.3, 37.1, 1176, 18000 }, + [28] = { 31.4, 36.5, 1176, 18000 }, + [29] = { 32, 36, 1176, 18000 }, + [30] = { 64.7, 31.7, 1176, 18000 }, + [31] = { 58.7, 29.8, 1176, 18000 }, + [32] = { 49, 25.7, 1176, 18000 }, + [33] = { 51.4, 24.9, 1176, 18000 }, + [34] = { 30.7, 20.5, 1176, 18000 }, + [35] = { 37.2, 18.7, 1176, 18000 }, + [36] = { 64.7, 18.1, 1176, 18000 }, + [37] = { 34.1, 15.2, 1176, 18000 }, + [38] = { 30.8, 15, 1176, 18000 }, + [39] = { 31.1, 14.8, 1176, 18000 }, + [40] = { 35.7, 13.7, 1176, 18000 }, + }, + ["lvl"] = "44-45", + ["rnk"] = "1", + }, + [5651] = { + ["coords"] = { + [1] = { 62.3, 48.6, 1497, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "15", + }, + [5667] = { + ["coords"] = { + [1] = { 31, 66.4, 85, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "10", + }, + [5671] = "_", + [5672] = "_", + [5676] = { + ["coords"] = { + [1] = { 39.1, 84.4, 1519, 0 }, + [2] = { 86.6, 27.1, 1497, 0 }, + [3] = { 49.3, 50, 1637, 0 }, + }, + ["lvl"] = "10", + }, + [5677] = { + ["coords"] = { + [1] = { 39.1, 84.3, 1519, 0 }, + [2] = { 86.7, 27.1, 1497, 0 }, + [3] = { 49.4, 50, 1637, 0 }, + }, + ["fac"] = "AH", + ["lvl"] = "20", + }, + [5678] = "_", + [5682] = { + ["coords"] = { + [1] = { 47.6, 85.6, 130, 413 }, + [2] = { 49.2, 15.3, 5179, 413 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [5683] = { + ["coords"] = { + [1] = { 49.9, 12.5, 11, 300 }, + [2] = { 44.1, 98.4, 45, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "22", + }, + [5689] = "_", + [5691] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [5692] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [5693] = { + ["coords"] = { + [1] = { 65.8, 68.2, 85, 30 }, + [2] = { 84.8, 14.8, 1497, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "15", + }, + [5694] = { + ["coords"] = { + [1] = { 48.7, 87.6, 1519, 500 }, + }, + ["fac"] = "A", + ["lvl"] = "62", + }, + [5708] = { + ["coords"] = { + [1] = { 60.3, 59.5, 1477, 604800 }, + [2] = { 51.4, 24.7, 1477, 604800 }, + }, + ["lvl"] = "51", + ["rnk"] = "1", + }, + [5709] = { + ["coords"] = { + [1] = { 68.8, 87, 1477, 604800 }, + }, + ["lvl"] = "55", + ["rnk"] = "1", + }, + [5710] = { + ["coords"] = { + [1] = { 76, 37, 1477, 604800 }, + }, + ["lvl"] = "54", + ["rnk"] = "1", + }, + [5711] = { + ["coords"] = { + [1] = { 76.7, 36.1, 1477, 604800 }, + }, + ["lvl"] = "53", + ["rnk"] = "1", + }, + [5712] = { + ["coords"] = { + [1] = { 45, 59, 1477, 604800 }, + }, + ["lvl"] = "51", + ["rnk"] = "1", + }, + [5713] = { + ["coords"] = { + [1] = { 55.1, 58.9, 1477, 604800 }, + }, + ["lvl"] = "51", + ["rnk"] = "1", + }, + [5714] = { + ["coords"] = { + [1] = { 59.9, 45.8, 1477, 604800 }, + }, + ["lvl"] = "51", + ["rnk"] = "1", + }, + [5715] = { + ["coords"] = { + [1] = { 55, 32.4, 1477, 604800 }, + }, + ["lvl"] = "52", + ["rnk"] = "1", + }, + [5716] = { + ["coords"] = { + [1] = { 39.8, 45.8, 1477, 604800 }, + }, + ["lvl"] = "52", + ["rnk"] = "1", + }, + [5717] = { + ["coords"] = { + [1] = { 44.8, 32.6, 1477, 604800 }, + }, + ["lvl"] = "52", + ["rnk"] = "1", + }, + [5719] = { + ["coords"] = { + [1] = { 53.2, 89.9, 1477, 604800 }, + }, + ["lvl"] = "52", + ["rnk"] = "1", + }, + [5720] = { + ["coords"] = { + [1] = { 48.5, 36.7, 1477, 604800 }, + }, + ["lvl"] = "51", + ["rnk"] = "1", + }, + [5721] = { + ["coords"] = { + [1] = { 51.5, 54.7, 1477, 604800 }, + }, + ["lvl"] = "53", + ["rnk"] = "1", + }, + [5722] = { + ["coords"] = { + [1] = { 53.8, 89.6, 1477, 604800 }, + }, + ["lvl"] = "53", + ["rnk"] = "1", + }, + [5724] = { + ["coords"] = { + [1] = { 61.6, 52.7, 85, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "15", + }, + [5725] = { + ["coords"] = { + [1] = { 58.3, 50.7, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [5726] = { + ["coords"] = { + [1] = { 64.3, 67.8, 85, 0 }, + [2] = { 77.6, 13.2, 1497, 0 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [5727] = { + ["coords"] = { + [1] = { 64.3, 67.8, 85, 0 }, + [2] = { 77.6, 13.2, 1497, 0 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [5728] = { + ["coords"] = { + [1] = { 64.3, 67.8, 85, 0 }, + [2] = { 77.6, 13.2, 1497, 0 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [5729] = { + ["coords"] = { + [1] = { 64.3, 67.8, 85, 0 }, + [2] = { 77.6, 13.2, 1497, 0 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [5730] = { + ["coords"] = { + [1] = { 64.3, 67.8, 85, 0 }, + [2] = { 77.6, 13.2, 1497, 0 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [5733] = { + ["coords"] = { + [1] = { 54.4, 66.2, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [5737] = "_", + [5739] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "1", + }, + [5740] = "_", + [5741] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "1", + }, + [5742] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "1", + }, + [5743] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "1", + }, + [5745] = "_", + [5746] = "_", + [5748] = { + ["coords"] = { + [1] = { 33, 17.8, 130, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "18", + }, + [5752] = { + ["coords"] = { + [1] = { 66.7, 10.9, 405, 30 }, + [2] = { 45.1, 82.7, 406, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "39", + }, + [5753] = { + ["coords"] = { + [1] = { 66, 68.5, 85, 30 }, + [2] = { 85.7, 16.1, 1497, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [5755] = { + ["coords"] = { + [1] = { 28.8, 40.3, 718, 18000 }, + [2] = { 27.5, 38.5, 718, 18000 }, + [3] = { 35.3, 33.6, 718, 18000 }, + [4] = { 26.5, 32.9, 718, 18000 }, + [5] = { 32.4, 31.7, 718, 18000 }, + [6] = { 25.3, 29.8, 718, 18000 }, + [7] = { 28.6, 26.5, 718, 18000 }, + [8] = { 30, 25.2, 718, 18000 }, + }, + ["lvl"] = "19-20", + ["rnk"] = "1", + }, + [5756] = { + ["coords"] = { + [1] = { 86.9, 81.3, 718, 300 }, + [2] = { 79.3, 73.2, 718, 300 }, + [3] = { 79, 68.5, 718, 18000 }, + [4] = { 86.2, 63.3, 718, 18000 }, + [5] = { 81.1, 58.4, 718, 18000 }, + [6] = { 62.5, 55.4, 718, 18000 }, + [7] = { 63.8, 52.1, 718, 18000 }, + [8] = { 87.8, 52, 718, 18000 }, + [9] = { 97.5, 51.1, 718, 18000 }, + [10] = { 88.6, 48.6, 718, 18000 }, + [11] = { 84.2, 45.8, 718, 18000 }, + [12] = { 88.6, 43.1, 718, 18000 }, + [13] = { 68.9, 41.5, 718, 18000 }, + [14] = { 92.9, 41.1, 718, 18000 }, + }, + ["lvl"] = "20-21", + ["rnk"] = "1", + }, + [5758] = { + ["coords"] = { + [1] = { 53.9, 82.2, 130, 413 }, + [2] = { 56.4, 11.3, 5179, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "18", + }, + [5761] = { + ["coords"] = { + [1] = { 72.1, 95.1, 718, 18000 }, + [2] = { 76, 94.9, 718, 18000 }, + [3] = { 69.4, 92.4, 718, 18000 }, + [4] = { 80.3, 90.5, 718, 18000 }, + [5] = { 68, 87.2, 718, 18000 }, + [6] = { 67.6, 85.1, 718, 18000 }, + [7] = { 81.5, 80.1, 718, 18000 }, + [8] = { 73.2, 77.2, 718, 18000 }, + [9] = { 83.7, 76.2, 718, 18000 }, + [10] = { 65.6, 71.4, 718, 18000 }, + [11] = { 63.2, 70.1, 718, 18000 }, + [12] = { 64.3, 61.1, 718, 18000 }, + [13] = { 63.3, 55.5, 718, 18000 }, + [14] = { 63.1, 55.2, 718, 18000 }, + [15] = { 74.6, 49.4, 718, 18000 }, + [16] = { 75.4, 49.3, 718, 18000 }, + [17] = { 78.5, 42.8, 718, 18000 }, + [18] = { 76.2, 42.7, 718, 18000 }, + [19] = { 81.3, 40.5, 718, 18000 }, + [20] = { 79.9, 36.2, 718, 18000 }, + [21] = { 80.6, 35.2, 718, 18000 }, + [22] = { 70.2, 34.7, 718, 18000 }, + [23] = { 78, 34.7, 718, 18000 }, + [24] = { 87.7, 34.6, 718, 18000 }, + [25] = { 83.3, 33.7, 718, 18000 }, + [26] = { 71.6, 32.2, 718, 18000 }, + [27] = { 76.3, 31.7, 718, 18000 }, + [28] = { 90.6, 31.3, 718, 18000 }, + [29] = { 72.7, 28.2, 718, 18000 }, + [30] = { 87.9, 24.5, 718, 18000 }, + [31] = { 80.4, 24.5, 718, 18000 }, + [32] = { 80.9, 24, 718, 18000 }, + [33] = { 81.3, 22.7, 718, 18000 }, + }, + ["lvl"] = "19-20", + ["rnk"] = "1", + }, + [5764] = "_", + [5765] = { + ["coords"] = { + [1] = { 42.6, 69, 14, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "10", + }, + [5767] = { + ["coords"] = { + [1] = { 46, 35.7, 17, 413 }, + [2] = { 23.8, 80.7, 718, 413 }, + }, + ["fac"] = "AH", + ["lvl"] = "14", + }, + [5768] = { + ["coords"] = { + [1] = { 46, 35.7, 17, 413 }, + [2] = { 24.2, 82.1, 718, 413 }, + }, + ["fac"] = "AH", + ["lvl"] = "14", + }, + [5774] = { + ["coords"] = { + [1] = { 52.7, 40.2, 5130, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [5775] = { + ["coords"] = { + [1] = { 64.8, 37.8, 718, 604800 }, + }, + ["lvl"] = "21", + ["rnk"] = "1", + }, + [5776] = "_", + [5777] = "_", + [5778] = "_", + [5779] = "_", + [5781] = { + ["coords"] = {}, + ["lvl"] = "20-21", + }, + [5783] = { + ["coords"] = { + [1] = { 45.9, 35.7, 17, 413 }, + [2] = { 22.1, 81.3, 718, 413 }, + }, + ["fac"] = "AH", + ["lvl"] = "27", + }, + [5784] = { + ["coords"] = { + [1] = { 46, 35.8, 17, 413 }, + [2] = { 23.5, 84, 718, 413 }, + }, + ["fac"] = "AH", + ["lvl"] = "28", + }, + [5785] = { + ["coords"] = { + [1] = { 36.2, 11.3, 215, 1601 }, + }, + ["lvl"] = "11", + ["rnk"] = "4", + }, + [5786] = { + ["coords"] = { + [1] = { 48.4, 72, 215, 9000 }, + }, + ["lvl"] = "9", + ["rnk"] = "4", + }, + [5787] = { + ["coords"] = { + [1] = { 40.4, 15.7, 215, 9000 }, + }, + ["lvl"] = "11", + ["rnk"] = "4", + }, + [5788] = "_", + [5789] = "_", + [5790] = "_", + [5793] = "_", + [5794] = "_", + [5795] = "_", + [5796] = "_", + [5797] = { + ["coords"] = { + [1] = { 47.6, 79, 17, 5141 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + ["rnk"] = "2", + }, + [5798] = { + ["coords"] = { + [1] = { 47.7, 79.1, 17, 5706 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + ["rnk"] = "2", + }, + [5799] = { + ["coords"] = { + [1] = { 47.5, 78.9, 17, 5686 }, + }, + ["fac"] = "A", + ["lvl"] = "24", + ["rnk"] = "2", + }, + [5800] = { + ["coords"] = { + [1] = { 47.6, 79, 17, 5311 }, + }, + ["fac"] = "A", + ["lvl"] = "24", + ["rnk"] = "2", + }, + [5801] = "_", + [5808] = { + ["coords"] = { + [1] = { 47.9, 77.4, 14, 5400 }, + }, + ["lvl"] = "9", + ["rnk"] = "4", + }, + [5809] = { + ["coords"] = { + [1] = { 59.2, 57.8, 14, 9000 }, + }, + ["fac"] = "A", + ["lvl"] = "9", + ["rnk"] = "4", + }, + [5810] = { + ["coords"] = { + [1] = { 61.4, 21.1, 17, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [5813] = "_", + [5815] = { + ["coords"] = { + [1] = { 47.5, 46.7, 1637, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [5818] = "_", + [5822] = { + ["coords"] = { + [1] = { 52.8, 9, 14, 19800 }, + }, + ["lvl"] = "11", + ["rnk"] = "2", + }, + [5823] = { + ["coords"] = { + [1] = { 38.2, 51.1, 14, 1651 }, + }, + ["lvl"] = "11", + ["rnk"] = "4", + }, + [5824] = { + ["coords"] = { + [1] = { 38.7, 54, 14, 19800 }, + }, + ["lvl"] = "11", + ["rnk"] = "2", + }, + [5825] = "_", + [5826] = { + ["coords"] = { + [1] = { 43.2, 39.3, 14, 9000 }, + }, + ["lvl"] = "9", + ["rnk"] = "4", + }, + [5827] = { + ["coords"] = { + [1] = { 47.3, 73.2, 17, 108000 }, + }, + ["lvl"] = "27", + ["rnk"] = "2", + }, + [5829] = { + ["coords"] = { + [1] = { 41.2, 22.2, 17, 9000 }, + }, + ["lvl"] = "17", + ["rnk"] = "4", + }, + [5832] = { + ["coords"] = { + [1] = { 47.1, 78.2, 17, 19800 }, + }, + ["lvl"] = "24", + ["rnk"] = "4", + }, + [5834] = { + ["coords"] = { + [1] = { 45, 63.6, 17, 19800 }, + }, + ["lvl"] = "25", + ["rnk"] = "4", + }, + [5835] = { + ["coords"] = { + [1] = { 56.3, 8.2, 17, 19800 }, + }, + ["lvl"] = "19", + ["rnk"] = "4", + }, + [5836] = { + ["coords"] = { + [1] = { 56.2, 8.8, 17, 9000 }, + }, + ["lvl"] = "19", + ["rnk"] = "4", + }, + [5837] = { + ["coords"] = { + [1] = { 42, 24.7, 17, 19900 }, + }, + ["lvl"] = "15", + ["rnk"] = "2", + }, + [5838] = { + ["coords"] = { + [1] = { 57.1, 41.2, 17, 9000 }, + }, + ["lvl"] = "17", + ["rnk"] = "4", + }, + [5839] = { + ["coords"] = { + [1] = { 62.3, 62.4, 51, 500 }, + [2] = { 62.8, 62.3, 51, 500 }, + [3] = { 62.4, 61.7, 51, 500 }, + [4] = { 63.1, 61.3, 51, 500 }, + [5] = { 63.9, 60.4, 51, 500 }, + [6] = { 63.1, 59.6, 51, 500 }, + [7] = { 63.7, 59.3, 51, 500 }, + [8] = { 63.1, 58.7, 51, 500 }, + [9] = { 62.9, 58.5, 51, 500 }, + [10] = { 62.7, 58.1, 51, 500 }, + [11] = { 69.2, 34.2, 51, 500 }, + [12] = { 68.9, 33.2, 51, 500 }, + [13] = { 69.3, 32.7, 51, 500 }, + }, + ["lvl"] = "43-44", + }, + [5840] = { + ["coords"] = { + [1] = { 43, 51.7, 51, 500 }, + [2] = { 38.1, 51.4, 51, 500 }, + [3] = { 37.7, 49.6, 51, 500 }, + [4] = { 40.6, 49.5, 51, 500 }, + [5] = { 18.7, 49, 51, 120 }, + [6] = { 40, 48.3, 51, 500 }, + [7] = { 92.5, 23.3, 5581, 120 }, + }, + ["lvl"] = "46-47", + }, + [5842] = { + ["coords"] = { + [1] = { 59.6, 8.3, 17, 54000 }, + }, + ["lvl"] = "19", + ["rnk"] = "2", + }, + [5844] = { + ["coords"] = { + [1] = { 38.2, 59.4, 51, 500 }, + [2] = { 38.3, 59.3, 51, 500 }, + [3] = { 43.1, 54.9, 51, 500 }, + [4] = { 45, 54.2, 51, 500 }, + [5] = { 45.2, 54, 51, 500 }, + [6] = { 43.2, 52, 51, 500 }, + [7] = { 44.8, 51.9, 51, 500 }, + [8] = { 40.6, 51.2, 51, 500 }, + [9] = { 40.5, 51.1, 51, 500 }, + [10] = { 38.7, 50.4, 51, 500 }, + [11] = { 47.3, 50.2, 51, 500 }, + [12] = { 47.4, 50, 51, 500 }, + [13] = { 38.1, 49.1, 51, 500 }, + [14] = { 18.3, 48.5, 51, 120 }, + [15] = { 34.5, 47, 51, 500 }, + [16] = { 34.3, 46.3, 51, 500 }, + [17] = { 19.2, 45.9, 51, 120 }, + [18] = { 38.6, 45.1, 51, 500 }, + [19] = { 49.1, 44.6, 51, 500 }, + [20] = { 40.6, 43.7, 51, 500 }, + [21] = { 35.5, 42.9, 51, 500 }, + [22] = { 57.7, 42, 51, 500 }, + [23] = { 57.8, 42, 51, 500 }, + [24] = { 58, 42, 51, 500 }, + [25] = { 36.2, 41.9, 51, 500 }, + [26] = { 42.8, 40.5, 51, 500 }, + [27] = { 43.1, 40.4, 51, 500 }, + [28] = { 49.1, 39.9, 51, 500 }, + [29] = { 45.7, 39.7, 51, 500 }, + [30] = { 37.5, 39.6, 51, 500 }, + [31] = { 49.3, 39.3, 51, 500 }, + [32] = { 45.8, 39.2, 51, 500 }, + [33] = { 38.4, 38, 51, 500 }, + [34] = { 39.1, 37.9, 51, 500 }, + [35] = { 43, 36.4, 51, 500 }, + [36] = { 42.7, 36.4, 51, 500 }, + [37] = { 44.6, 35.5, 51, 500 }, + [38] = { 42.5, 33.8, 51, 500 }, + [39] = { 43.9, 33.7, 51, 500 }, + [40] = { 44, 33.7, 51, 500 }, + [41] = { 42.6, 33.6, 51, 500 }, + [42] = { 40.3, 32, 51, 500 }, + [43] = { 38, 32, 51, 500 }, + [44] = { 44.1, 31.6, 51, 500 }, + [45] = { 42.6, 31.6, 51, 500 }, + [46] = { 43.1, 31.2, 51, 500 }, + [47] = { 43.3, 31.1, 51, 500 }, + [48] = { 44.5, 31.1, 51, 500 }, + [49] = { 44.4, 31.1, 51, 500 }, + [50] = { 41.6, 29.3, 51, 500 }, + [51] = { 45.9, 28.8, 51, 500 }, + [52] = { 43.3, 28.2, 51, 500 }, + [53] = { 46.6, 25.5, 51, 500 }, + [54] = { 46.5, 25.3, 51, 500 }, + [55] = { 43.3, 24, 51, 500 }, + [56] = { 41.2, 23.3, 51, 500 }, + [57] = { 92.2, 22.9, 5581, 120 }, + [58] = { 92.9, 21.2, 5581, 120 }, + }, + ["lvl"] = "45-46", + }, + [5846] = { + ["coords"] = { + [1] = { 18.8, 45.9, 51, 120 }, + [2] = { 92.6, 21.2, 5581, 120 }, + [3] = { 38.2, 59.4, 51, 500 }, + [4] = { 38.3, 59.3, 51, 500 }, + [5] = { 43.1, 54.9, 51, 500 }, + [6] = { 45, 54.2, 51, 500 }, + [7] = { 45.2, 54, 51, 500 }, + [8] = { 43.2, 52, 51, 500 }, + [9] = { 44.8, 51.9, 51, 500 }, + [10] = { 40.6, 51.2, 51, 500 }, + [11] = { 40.5, 51.1, 51, 500 }, + [12] = { 38.7, 50.4, 51, 500 }, + [13] = { 47.3, 50.2, 51, 500 }, + [14] = { 47.4, 50, 51, 500 }, + [15] = { 38.1, 49.1, 51, 500 }, + [16] = { 34.5, 47, 51, 500 }, + [17] = { 34.3, 46.3, 51, 500 }, + [18] = { 38.6, 45.1, 51, 500 }, + [19] = { 49.1, 44.6, 51, 500 }, + [20] = { 40.6, 43.7, 51, 500 }, + [21] = { 35.5, 42.9, 51, 500 }, + [22] = { 57.7, 42, 51, 500 }, + [23] = { 57.8, 42, 51, 500 }, + [24] = { 58, 42, 51, 500 }, + [25] = { 36.2, 41.9, 51, 500 }, + [26] = { 42.8, 40.5, 51, 500 }, + [27] = { 43.1, 40.4, 51, 500 }, + [28] = { 49.1, 39.9, 51, 500 }, + [29] = { 45.7, 39.7, 51, 500 }, + [30] = { 37.5, 39.6, 51, 500 }, + [31] = { 49.3, 39.3, 51, 500 }, + [32] = { 45.8, 39.2, 51, 500 }, + [33] = { 38.4, 38, 51, 500 }, + [34] = { 39.1, 37.9, 51, 500 }, + [35] = { 43, 36.4, 51, 500 }, + [36] = { 42.7, 36.4, 51, 500 }, + [37] = { 44.6, 35.5, 51, 500 }, + [38] = { 42.5, 33.8, 51, 500 }, + [39] = { 43.9, 33.7, 51, 500 }, + [40] = { 44, 33.7, 51, 500 }, + [41] = { 42.6, 33.6, 51, 500 }, + [42] = { 40.3, 32, 51, 500 }, + [43] = { 38, 32, 51, 500 }, + [44] = { 44.1, 31.6, 51, 500 }, + [45] = { 42.6, 31.6, 51, 500 }, + [46] = { 43.1, 31.2, 51, 500 }, + [47] = { 43.3, 31.1, 51, 500 }, + [48] = { 44.5, 31.1, 51, 500 }, + [49] = { 44.4, 31.1, 51, 500 }, + [50] = { 41.6, 29.3, 51, 500 }, + [51] = { 45.9, 28.8, 51, 500 }, + [52] = { 43.3, 28.2, 51, 500 }, + [53] = { 46.6, 25.5, 51, 500 }, + [54] = { 46.5, 25.3, 51, 500 }, + [55] = { 43.3, 24, 51, 500 }, + [56] = { 41.2, 23.3, 51, 500 }, + }, + ["lvl"] = "47-48", + }, + [5847] = { + ["coords"] = { + [1] = { 47, 83.7, 17, 19800 }, + }, + ["fac"] = "A", + ["lvl"] = "24", + ["rnk"] = "4", + }, + [5849] = { + ["coords"] = { + [1] = { 47.5, 85.5, 17, 19800 }, + }, + ["fac"] = "A", + ["lvl"] = "24", + ["rnk"] = "4", + }, + [5850] = { + ["coords"] = { + [1] = { 58.3, 77, 51, 500 }, + [2] = { 48, 49.4, 51, 500 }, + [3] = { 45.5, 47.8, 51, 500 }, + [4] = { 57.6, 46.7, 51, 500 }, + [5] = { 57.6, 45, 51, 500 }, + [6] = { 59.7, 43.5, 51, 500 }, + [7] = { 40.7, 36.7, 51, 500 }, + }, + ["lvl"] = "45-47", + }, + [5851] = { + ["coords"] = { + [1] = { 26.8, 57.4, 15, 108000 }, + [2] = { 49.4, 83.7, 17, 108000 }, + }, + ["fac"] = "A", + ["lvl"] = "27", + ["rnk"] = "2", + }, + [5852] = { + ["coords"] = { + [1] = { 29.9, 76.9, 51, 500 }, + [2] = { 27.8, 64.4, 51, 500 }, + [3] = { 52.4, 62.1, 51, 500 }, + [4] = { 39.7, 58.6, 51, 500 }, + [5] = { 39.2, 55.9, 51, 500 }, + [6] = { 30.9, 43.9, 51, 500 }, + [7] = { 98.8, 33.9, 5581, 500 }, + }, + ["lvl"] = "47-49", + }, + [5853] = { + ["coords"] = { + [1] = { 65.3, 63.8, 51, 500 }, + [2] = { 62.4, 63.2, 51, 500 }, + [3] = { 61, 61.9, 51, 500 }, + [4] = { 62.6, 59.8, 51, 500 }, + [5] = { 64, 58.2, 51, 500 }, + [6] = { 68.1, 33.5, 51, 500 }, + [7] = { 69.8, 32.1, 51, 500 }, + }, + ["lvl"] = "45-47", + }, + [5854] = { + ["coords"] = { + [1] = { 44.9, 63.8, 51, 500 }, + [2] = { 41.6, 63.4, 51, 500 }, + [3] = { 37.2, 62, 51, 500 }, + [4] = { 36.5, 61.5, 51, 500 }, + [5] = { 35.5, 59.8, 51, 500 }, + [6] = { 51.7, 59.3, 51, 500 }, + [7] = { 45.9, 55.7, 51, 500 }, + [8] = { 40.5, 54.7, 51, 500 }, + [9] = { 32.5, 52.6, 51, 500 }, + [10] = { 38.3, 48, 51, 500 }, + [11] = { 33.9, 47.9, 51, 500 }, + [12] = { 19, 47.5, 51, 120 }, + [13] = { 32.5, 45.9, 51, 500 }, + [14] = { 35.1, 45.2, 51, 500 }, + [15] = { 37.2, 45.2, 51, 500 }, + [16] = { 39.9, 44.2, 51, 500 }, + [17] = { 43.3, 44, 51, 500 }, + [18] = { 45.8, 41.6, 51, 500 }, + [19] = { 41.7, 41.4, 51, 500 }, + [20] = { 35.2, 40.9, 51, 500 }, + [21] = { 47.7, 39.5, 51, 500 }, + [22] = { 44.8, 38.7, 51, 500 }, + [23] = { 50.9, 38.7, 51, 500 }, + [24] = { 46.5, 38, 51, 500 }, + [25] = { 92.7, 22.2, 5581, 120 }, + }, + ["lvl"] = "47-49", + }, + [5855] = { + ["coords"] = { + [1] = { 56.3, 77.4, 51, 500 }, + [2] = { 35.9, 76.8, 51, 500 }, + [3] = { 35.4, 75.2, 51, 500 }, + [4] = { 58.4, 74.9, 51, 500 }, + [5] = { 31.1, 74.9, 51, 500 }, + [6] = { 30.6, 64.6, 51, 500 }, + [7] = { 46.2, 61.8, 51, 500 }, + [8] = { 29.9, 57.4, 51, 500 }, + [9] = { 41, 57.1, 51, 500 }, + [10] = { 53.7, 55.2, 51, 500 }, + [11] = { 56.4, 54.5, 51, 500 }, + [12] = { 24.3, 53.9, 51, 500 }, + [13] = { 52.8, 53.4, 51, 500 }, + [14] = { 49.7, 51.4, 51, 500 }, + [15] = { 52.2, 50.4, 51, 500 }, + [16] = { 53.8, 47.2, 51, 500 }, + [17] = { 55.6, 46.9, 51, 500 }, + [18] = { 51.8, 45.7, 51, 500 }, + [19] = { 55.6, 43.9, 51, 500 }, + [20] = { 38.7, 41.4, 51, 500 }, + [21] = { 55.6, 40.6, 51, 500 }, + [22] = { 35.3, 39.8, 51, 500 }, + [23] = { 42.5, 38.6, 51, 500 }, + [24] = { 50.6, 38, 51, 500 }, + [25] = { 96.4, 26.7, 5581, 500 }, + }, + ["lvl"] = "46-48", + }, + [5856] = { + ["coords"] = { + [1] = { 64.6, 75.3, 51, 500 }, + [2] = { 62.4, 71, 51, 500 }, + [3] = { 60, 69.9, 51, 500 }, + [4] = { 60.6, 68.8, 51, 500 }, + [5] = { 67.9, 68.6, 51, 500 }, + [6] = { 64, 68, 51, 500 }, + [7] = { 62.8, 54.2, 51, 500 }, + [8] = { 66.6, 53, 51, 500 }, + [9] = { 58.9, 52.6, 51, 500 }, + [10] = { 61.7, 51.1, 51, 500 }, + [11] = { 63.5, 50.8, 51, 500 }, + [12] = { 69.4, 50.7, 51, 500 }, + [13] = { 65.5, 48.9, 51, 500 }, + [14] = { 68.3, 45.6, 51, 500 }, + [15] = { 67.9, 38.6, 51, 500 }, + [16] = { 65, 38.3, 51, 500 }, + [17] = { 66, 34.5, 51, 500 }, + [18] = { 73.6, 16.6, 51, 500 }, + [19] = { 71.9, 16.2, 51, 500 }, + }, + ["lvl"] = "43-45", + }, + [5857] = { + ["coords"] = { + [1] = { 57.6, 83.9, 51, 500 }, + [2] = { 56.8, 82.9, 51, 500 }, + [3] = { 59.8, 81.9, 51, 500 }, + [4] = { 48.8, 73.5, 51, 500 }, + [5] = { 50, 73.5, 51, 500 }, + [6] = { 52.2, 72.9, 51, 500 }, + [7] = { 56.4, 72.8, 51, 500 }, + [8] = { 57.5, 72.1, 51, 500 }, + [9] = { 48.1, 71.8, 51, 500 }, + [10] = { 53.8, 70.1, 51, 500 }, + [11] = { 51.3, 69.7, 51, 500 }, + [12] = { 56.8, 69.4, 51, 500 }, + [13] = { 55.9, 69.3, 51, 500 }, + [14] = { 49.2, 65.6, 51, 500 }, + [15] = { 56.2, 65.6, 51, 500 }, + [16] = { 47.4, 62.5, 51, 500 }, + [17] = { 51.1, 61.6, 51, 500 }, + [18] = { 53.4, 38.6, 51, 500 }, + [19] = { 55.3, 38.1, 51, 500 }, + [20] = { 56.1, 35.4, 51, 500 }, + [21] = { 50.6, 34.2, 51, 500 }, + [22] = { 55.9, 33.4, 51, 500 }, + [23] = { 58, 27.7, 51, 500 }, + [24] = { 56.7, 26.2, 51, 500 }, + [25] = { 59.8, 25.8, 51, 500 }, + [26] = { 57.6, 22.7, 51, 500 }, + }, + ["lvl"] = "45-47", + }, + [5858] = { + ["coords"] = { + [1] = { 12.7, 17.9, 46, 120 }, + [2] = { 14.7, 17.7, 46, 120 }, + [3] = { 14, 16.1, 46, 120 }, + [4] = { 15.6, 15.4, 46, 120 }, + [5] = { 11.7, 14.6, 46, 120 }, + [6] = { 13, 14.4, 46, 120 }, + [7] = { 17.1, 13.9, 46, 120 }, + [8] = { 14.9, 13.7, 46, 120 }, + [9] = { 16, 13.2, 46, 120 }, + [10] = { 14.4, 13.1, 46, 120 }, + [11] = { 13.8, 11.4, 46, 120 }, + [12] = { 14.2, 86, 51, 120 }, + [13] = { 16.8, 85.9, 51, 120 }, + [14] = { 15.8, 83.8, 51, 120 }, + [15] = { 17.9, 82.8, 51, 120 }, + [16] = { 12.9, 81.7, 51, 120 }, + [17] = { 14.6, 81.5, 51, 120 }, + [18] = { 20, 80.8, 51, 120 }, + [19] = { 17, 80.6, 51, 120 }, + [20] = { 18.5, 79.9, 51, 120 }, + [21] = { 16.4, 79.8, 51, 120 }, + [22] = { 11.6, 79.3, 51, 120 }, + [23] = { 28.9, 77.6, 51, 500 }, + [24] = { 15.6, 77.5, 51, 120 }, + [25] = { 22, 77.3, 51, 500 }, + [26] = { 13.2, 76.8, 51, 120 }, + [27] = { 24.9, 76.7, 51, 500 }, + [28] = { 29.1, 76.2, 51, 500 }, + [29] = { 26.4, 75.4, 51, 500 }, + [30] = { 15.1, 75.3, 51, 120 }, + [31] = { 22.8, 74.9, 51, 500 }, + [32] = { 30.4, 70.9, 51, 500 }, + [33] = { 26, 69.2, 51, 500 }, + [34] = { 40.4, 69, 51, 500 }, + [35] = { 43.8, 68.2, 51, 500 }, + [36] = { 31.4, 68, 51, 500 }, + [37] = { 27.9, 66.9, 51, 500 }, + [38] = { 29.3, 62.4, 51, 500 }, + [39] = { 31.1, 61.4, 51, 500 }, + [40] = { 29.6, 56.5, 51, 500 }, + [41] = { 28.3, 55.2, 51, 500 }, + [42] = { 26.3, 51, 51, 500 }, + [43] = { 28, 50.4, 51, 500 }, + [44] = { 27.2, 48.6, 51, 500 }, + [45] = { 28.1, 44.8, 51, 500 }, + [46] = { 29.5, 43.8, 51, 500 }, + [47] = { 27.7, 43.5, 51, 500 }, + [48] = { 31, 40.8, 51, 500 }, + [49] = { 32.3, 39.8, 51, 500 }, + [50] = { 27.1, 37.3, 51, 500 }, + [51] = { 38, 33.3, 51, 500 }, + [52] = { 89.4, 48.8, 5581, 120 }, + [53] = { 91.2, 48.7, 5581, 120 }, + [54] = { 90.5, 47.3, 5581, 120 }, + [55] = { 92, 46.6, 5581, 120 }, + [56] = { 88.5, 45.8, 5581, 120 }, + [57] = { 89.7, 45.7, 5581, 120 }, + [58] = { 93.4, 45.2, 5581, 120 }, + [59] = { 91.4, 45, 5581, 120 }, + [60] = { 92.3, 44.6, 5581, 120 }, + [61] = { 90.9, 44.5, 5581, 120 }, + [62] = { 87.6, 44.2, 5581, 120 }, + [63] = { 99.6, 43, 5581, 500 }, + [64] = { 90.3, 42.9, 5581, 120 }, + [65] = { 94.8, 42.8, 5581, 500 }, + [66] = { 88.7, 42.4, 5581, 120 }, + [67] = { 96.8, 42.4, 5581, 500 }, + [68] = { 99.7, 42, 5581, 500 }, + [69] = { 97.8, 41.5, 5581, 500 }, + [70] = { 90.1, 41.4, 5581, 120 }, + [71] = { 95.4, 41.1, 5581, 500 }, + [72] = { 97.6, 37.2, 5581, 500 }, + [73] = { 98.9, 35.6, 5581, 500 }, + [74] = { 99.8, 32.5, 5581, 500 }, + [75] = { 100, 28.5, 5581, 500 }, + [76] = { 99.1, 27.5, 5581, 500 }, + [77] = { 97.7, 24.7, 5581, 500 }, + [78] = { 98.9, 24.2, 5581, 500 }, + [79] = { 98.3, 23, 5581, 500 }, + [80] = { 99, 20.3, 5581, 500 }, + [81] = { 99.9, 19.7, 5581, 500 }, + [82] = { 98.7, 19.4, 5581, 500 }, + [83] = { 98.3, 15.2, 5581, 500 }, + }, + ["lvl"] = "47-49", + }, + [5859] = { + ["coords"] = { + [1] = { 43.2, 83.2, 17, 19800 }, + }, + ["lvl"] = "26", + ["rnk"] = "2", + }, + [5860] = { + ["coords"] = { + [1] = { 23.4, 41.1, 51, 500 }, + [2] = { 25.1, 37.2, 51, 500 }, + [3] = { 23.5, 36.5, 51, 500 }, + [4] = { 19.1, 35.8, 51, 500 }, + [5] = { 24.1, 34.2, 51, 500 }, + [6] = { 95.7, 17.8, 5581, 500 }, + [7] = { 96.9, 15.1, 5581, 500 }, + [8] = { 95.8, 14.7, 5581, 500 }, + [9] = { 92.8, 14.1, 5581, 500 }, + [10] = { 96.2, 13, 5581, 500 }, + }, + ["lvl"] = "47-48", + ["rnk"] = "1", + }, + [5861] = { + ["coords"] = { + [1] = { 16.8, 44.6, 51, 500 }, + [2] = { 17.5, 43.8, 51, 500 }, + [3] = { 23.5, 39.4, 51, 500 }, + [4] = { 24.9, 39.3, 51, 500 }, + [5] = { 22.2, 38.9, 51, 500 }, + [6] = { 14.4, 38.7, 51, 500 }, + [7] = { 19.6, 38.6, 51, 500 }, + [8] = { 19.2, 37.1, 51, 500 }, + [9] = { 18.5, 36.9, 51, 500 }, + [10] = { 21.6, 36.3, 51, 500 }, + [11] = { 20.8, 35.9, 51, 500 }, + [12] = { 18.1, 35.6, 51, 500 }, + [13] = { 23.4, 35.2, 51, 500 }, + [14] = { 25.2, 34.5, 51, 500 }, + [15] = { 16.7, 33.8, 51, 500 }, + [16] = { 16, 33.4, 51, 500 }, + [17] = { 29.5, 26.7, 51, 500 }, + [18] = { 30.8, 26.3, 51, 500 }, + [19] = { 22.2, 26.2, 51, 500 }, + [20] = { 26.1, 26.1, 51, 500 }, + [21] = { 28.7, 25.1, 51, 500 }, + [22] = { 91.2, 20.2, 5581, 500 }, + [23] = { 91.7, 19.7, 5581, 500 }, + [24] = { 95.8, 16.6, 5581, 500 }, + [25] = { 96.8, 16.6, 5581, 500 }, + [26] = { 94.9, 16.3, 5581, 500 }, + [27] = { 89.6, 16.2, 5581, 500 }, + [28] = { 93.2, 16.1, 5581, 500 }, + [29] = { 92.9, 15, 5581, 500 }, + [30] = { 92.4, 14.9, 5581, 500 }, + [31] = { 94.5, 14.5, 5581, 500 }, + [32] = { 94, 14.2, 5581, 500 }, + [33] = { 92.1, 14, 5581, 500 }, + [34] = { 95.7, 13.8, 5581, 500 }, + [35] = { 97, 13.3, 5581, 500 }, + [36] = { 91.1, 12.8, 5581, 500 }, + [37] = { 90.6, 12.5, 5581, 500 }, + [38] = { 100, 7.9, 5581, 500 }, + [39] = { 94.9, 7.5, 5581, 500 }, + [40] = { 97.6, 7.5, 5581, 500 }, + [41] = { 99.4, 6.8, 5581, 500 }, + }, + ["lvl"] = "48-49", + ["rnk"] = "1", + }, + [5862] = { + ["coords"] = { + [1] = { 16, 43.3, 51, 500 }, + [2] = { 13.3, 42.4, 51, 500 }, + [3] = { 18.4, 42.1, 51, 500 }, + [4] = { 13.3, 40.4, 51, 500 }, + [5] = { 17.9, 38.1, 51, 500 }, + [6] = { 14.6, 36.9, 51, 500 }, + [7] = { 23.5, 27.7, 51, 500 }, + [8] = { 24.7, 26.2, 51, 500 }, + [9] = { 29.7, 25.7, 51, 500 }, + [10] = { 26.8, 25.5, 51, 500 }, + [11] = { 25.6, 24.9, 51, 500 }, + [12] = { 27.5, 23.8, 51, 500 }, + [13] = { 90.7, 19.3, 5581, 500 }, + [14] = { 88.8, 18.7, 5581, 500 }, + [15] = { 92.3, 18.5, 5581, 500 }, + [16] = { 88.8, 17.4, 5581, 500 }, + [17] = { 91.9, 15.7, 5581, 500 }, + [18] = { 89.7, 14.9, 5581, 500 }, + [19] = { 95.8, 8.6, 5581, 500 }, + [20] = { 96.6, 7.6, 5581, 500 }, + [21] = { 98.1, 7, 5581, 500 }, + [22] = { 97.3, 6.6, 5581, 500 }, + [23] = { 98.6, 5.9, 5581, 500 }, + }, + ["lvl"] = "49-50", + ["rnk"] = "1", + }, + [5863] = { + ["coords"] = { + [1] = { 43.2, 52.1, 17, 9000 }, + }, + ["lvl"] = "19", + ["rnk"] = "4", + }, + [5865] = { + ["coords"] = { + [1] = { 50.9, 18.2, 17, 9000 }, + }, + ["lvl"] = "13", + ["rnk"] = "4", + }, + [5866] = "_", + [5867] = "_", + [5868] = "_", + [5870] = { + ["coords"] = { + [1] = { 49.2, 60.5, 406, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "27", + }, + [5875] = { + ["coords"] = { + [1] = { 48.2, 45.3, 1637, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [5876] = "_", + [5877] = "_", + [5878] = { + ["coords"] = { + [1] = { 57.2, 30.3, 17, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "29", + }, + [5880] = { + ["coords"] = { + [1] = { 56.3, 75.1, 14, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "14", + }, + [5885] = { + ["coords"] = { + [1] = { 42.7, 9.6, 14, 30 }, + [2] = { 38.4, 86.1, 1637, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [5887] = { + ["coords"] = { + [1] = { 42.4, 69.2, 14, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "8", + }, + [5888] = { + ["coords"] = { + [1] = { 44.7, 76.2, 215, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "10", + }, + [5889] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [5892] = { + ["coords"] = { + [1] = { 38, 37.7, 1637, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "15", + }, + [5893] = { + ["coords"] = { + [1] = { 38.8, 58.2, 14, 10 }, + }, + ["lvl"] = "12", + }, + [5896] = { + ["coords"] = { + [1] = { 38.9, 58.4, 14, 120 }, + [2] = { 38.7, 58.4, 14, 120 }, + [3] = { 38.7, 58.1, 14, 120 }, + [4] = { 38.9, 58, 14, 120 }, + [5] = { 65.4, 27.4, 17, 120 }, + }, + ["lvl"] = "1", + }, + [5897] = { + ["coords"] = { + [1] = { 38.1, 45.5, 130, 413 }, + [2] = { 37.8, 45.2, 130, 413 }, + [3] = { 38.5, 45.2, 130, 413 }, + [4] = { 38.1, 44.8, 130, 413 }, + [5] = { 38.8, 44.7, 130, 413 }, + [6] = { 38.3, 44.2, 130, 413 }, + [7] = { 38, 43.9, 130, 413 }, + [8] = { 38.5, 43.9, 130, 413 }, + }, + ["lvl"] = "19", + }, + [5898] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [5899] = { + ["coords"] = { + [1] = { 43.4, 77.4, 17, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "23", + }, + [5900] = { + ["coords"] = { + [1] = { 38.6, 59, 14, 30 }, + [2] = { 65.4, 27.9, 17, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [5903] = "_", + [5904] = "_", + [5906] = { + ["coords"] = { + [1] = { 34.9, 21, 215, 30 }, + [2] = { 88.5, 48.2, 405, 30 }, + [3] = { 25.2, 20.5, 1638, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "15", + }, + [5907] = { + ["coords"] = { + [1] = { 56, 19.9, 17, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "15", + }, + [5908] = { + ["coords"] = { + [1] = { 43.3, 47.9, 17, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [5909] = { + ["coords"] = { + [1] = { 47.1, 46.4, 1637, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [5910] = { + ["coords"] = { + [1] = { 37, 59.4, 1637, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "15", + }, + [5911] = { + ["coords"] = { + [1] = { 44.6, 59.3, 17, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [5912] = { + ["coords"] = { + [1] = { 73.3, 27, 718, 604800 }, + }, + ["lvl"] = "20", + ["rnk"] = "4", + }, + [5915] = { + ["coords"] = { + [1] = { 34.4, 23, 406, 38000 }, + }, + ["fac"] = "A", + ["lvl"] = "29", + ["rnk"] = "2", + }, + [5916] = { + ["coords"] = { + [1] = { 40.3, 25.3, 406, 38000 }, + }, + ["fac"] = "A", + ["lvl"] = "27", + ["rnk"] = "2", + }, + [5918] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + ["rnk"] = "1", + }, + [5928] = { + ["coords"] = { + [1] = { 51.7, 42.5, 406, 38000 }, + }, + ["lvl"] = "27", + ["rnk"] = "2", + }, + [5930] = { + ["coords"] = { + [1] = { 35.7, 69.5, 406, 38000 }, + }, + ["lvl"] = "28", + ["rnk"] = "2", + }, + [5931] = { + ["coords"] = { + [1] = { 65.8, 55.6, 406, 19800 }, + }, + ["lvl"] = "24", + ["rnk"] = "2", + }, + [5932] = { + ["coords"] = { + [1] = { 64.1, 57.1, 406, 38000 }, + }, + ["lvl"] = "22", + ["rnk"] = "2", + }, + [5933] = { + ["coords"] = { + [1] = { 22.7, 37.5, 400, 27000 }, + }, + ["lvl"] = "31", + ["rnk"] = "4", + }, + [5936] = "_", + [5945] = "_", + [5948] = { + ["coords"] = { + [1] = { 5.8, 60.2, 11, 25 }, + [2] = { 6.1, 60, 11, 25 }, + [3] = { 6.1, 59.9, 11, 25 }, + [4] = { 6.6, 59.9, 11, 25 }, + [5] = { 6.5, 59.6, 11, 25 }, + [6] = { 6.2, 59.5, 11, 25 }, + [7] = { 6.7, 59.3, 11, 25 }, + [8] = { 7.1, 59, 11, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [5949] = { + ["coords"] = { + [1] = { 5.8, 60.3, 11, 25 }, + [2] = { 5.8, 60.1, 11, 25 }, + [3] = { 6.2, 59.7, 11, 25 }, + [4] = { 6.8, 59.6, 11, 25 }, + [5] = { 6.8, 59.3, 11, 25 }, + [6] = { 6.8, 59.2, 11, 25 }, + [7] = { 7, 59.2, 11, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [5951] = { + ["coords"] = { + [1] = { 53.3, 80.7, 14, 180 }, + [2] = { 53.6, 75.2, 14, 180 }, + [3] = { 55.5, 72.1, 14, 180 }, + [4] = { 43.7, 72.1, 14, 180 }, + [5] = { 50.5, 71.9, 14, 180 }, + [6] = { 41.7, 71.8, 14, 180 }, + [7] = { 53.1, 69.7, 14, 180 }, + [8] = { 55.5, 69.2, 14, 180 }, + [9] = { 45.9, 68, 14, 180 }, + [10] = { 54.3, 67.3, 14, 180 }, + [11] = { 40.3, 67.3, 14, 180 }, + [12] = { 44.9, 65.3, 14, 180 }, + [13] = { 40.6, 63.4, 14, 180 }, + [14] = { 52.4, 60.9, 14, 180 }, + [15] = { 41.9, 59.6, 14, 180 }, + [16] = { 46.9, 58.3, 14, 180 }, + [17] = { 51.8, 56.9, 14, 180 }, + [18] = { 53.8, 50.7, 14, 180 }, + [19] = { 36.4, 50.6, 14, 180 }, + [20] = { 53.6, 47.6, 14, 180 }, + [21] = { 46, 46.9, 14, 180 }, + [22] = { 42.9, 45.7, 14, 180 }, + [23] = { 58.6, 45.5, 14, 180 }, + [24] = { 37.9, 45, 14, 180 }, + [25] = { 48.1, 44.9, 14, 180 }, + [26] = { 58.8, 42.7, 14, 180 }, + [27] = { 36.8, 41.6, 14, 180 }, + [28] = { 38.4, 40.1, 14, 180 }, + [29] = { 54.8, 39.9, 14, 180 }, + [30] = { 36.5, 37.8, 14, 180 }, + [31] = { 39.9, 36.9, 14, 180 }, + [32] = { 54.9, 34.3, 14, 180 }, + [33] = { 54.8, 30.1, 14, 180 }, + [34] = { 37.1, 27.9, 14, 180 }, + [35] = { 46.6, 19.1, 14, 180 }, + [36] = { 54.3, 18.5, 14, 180 }, + [37] = { 42.7, 17.8, 14, 180 }, + [38] = { 45.4, 16.7, 14, 270 }, + [39] = { 39, 16.5, 14, 180 }, + [40] = { 51.3, 13.7, 14, 180 }, + [41] = { 55.7, 12.6, 14, 180 }, + [42] = { 67, 34.6, 17, 180 }, + [43] = { 66.3, 32.2, 17, 180 }, + [44] = { 64.2, 23.5, 17, 180 }, + [45] = { 64.3, 16.8, 17, 180 }, + [46] = { 64.6, 11.7, 17, 180 }, + }, + ["lvl"] = "1", + }, + [5952] = { + ["coords"] = { + [1] = { 43.5, 69.6, 14, 300 }, + [2] = { 49.2, 69.5, 14, 300 }, + [3] = { 42.7, 68.8, 14, 300 }, + [4] = { 49.9, 68.6, 14, 300 }, + [5] = { 42.2, 68.5, 14, 300 }, + [6] = { 48.8, 68.5, 14, 300 }, + [7] = { 42.7, 68.4, 14, 300 }, + [8] = { 42.2, 68.3, 14, 300 }, + [9] = { 49.6, 68.3, 14, 300 }, + [10] = { 50, 68.3, 14, 300 }, + [11] = { 49, 67.8, 14, 300 }, + [12] = { 43.5, 67.8, 14, 300 }, + [13] = { 43.6, 67.4, 14, 300 }, + [14] = { 49.7, 67.2, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [5953] = { + ["coords"] = { + [1] = { 50.8, 45.1, 14, 300 }, + [2] = { 52.1, 45.1, 14, 300 }, + [3] = { 52.6, 44.4, 14, 300 }, + [4] = { 52.3, 44.4, 14, 300 }, + [5] = { 54.7, 44.2, 14, 300 }, + [6] = { 50.7, 44, 14, 300 }, + [7] = { 54.3, 44, 14, 300 }, + [8] = { 51.3, 44, 14, 300 }, + [9] = { 50.7, 43.9, 14, 300 }, + [10] = { 50.6, 43.8, 14, 300 }, + [11] = { 49.7, 43.6, 14, 300 }, + [12] = { 50.7, 42.9, 14, 300 }, + [13] = { 53.1, 42.8, 14, 300 }, + [14] = { 54, 42.7, 14, 300 }, + [15] = { 53.1, 42.6, 14, 300 }, + [16] = { 53.1, 42.5, 14, 300 }, + [17] = { 56, 42.5, 14, 300 }, + [18] = { 53.9, 42.2, 14, 300 }, + [19] = { 52.6, 41.7, 14, 3600 }, + [20] = { 52.6, 41.5, 14, 3600 }, + [21] = { 53.5, 41.1, 14, 300 }, + [22] = { 54.2, 40.9, 14, 300 }, + [23] = { 52.9, 40.8, 14, 300 }, + [24] = { 54, 40.8, 14, 300 }, + [25] = { 49, 40.6, 14, 300 }, + [26] = { 51.1, 40.5, 14, 300 }, + [27] = { 49.6, 40.4, 14, 300 }, + [28] = { 49.9, 40.4, 14, 300 }, + [29] = { 50.2, 40.4, 14, 300 }, + [30] = { 54.6, 40.4, 14, 300 }, + [31] = { 49.7, 40.2, 14, 300 }, + [32] = { 49.6, 40.2, 14, 300 }, + [33] = { 49.9, 40.1, 14, 300 }, + [34] = { 51.9, 40, 14, 300 }, + [35] = { 52.5, 39.9, 14, 300 }, + [36] = { 49.6, 39.6, 14, 300 }, + [37] = { 50.2, 39.5, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "28-31", + }, + [5954] = "_", + [5955] = { + ["coords"] = { + [1] = { 52.7, 54.9, 440, 300 }, + [2] = { 12.1, 42.3, 1941, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "45", + }, + [5956] = "_", + [5959] = "_", + [5960] = "_", + [5961] = "_", + [5962] = "_", + [5963] = "_", + [5964] = "_", + [5965] = "_", + [5966] = "_", + [5967] = "_", + [5968] = "_", + [5969] = "_", + [5970] = "_", + [5971] = "_", + [5972] = "_", + [5973] = "_", + [5974] = { + ["coords"] = { + [1] = { 43.3, 15.4, 4, 300 }, + [2] = { 42.2, 15.3, 4, 300 }, + [3] = { 43.9, 14.8, 4, 300 }, + [4] = { 41.7, 14.6, 4, 300 }, + [5] = { 42.9, 13.7, 4, 300 }, + [6] = { 41.3, 13.6, 4, 300 }, + [7] = { 42.4, 13.5, 4, 300 }, + [8] = { 43, 12.9, 4, 300 }, + [9] = { 42.3, 12.7, 4, 300 }, + [10] = { 44.2, 12.6, 4, 300 }, + [11] = { 42.9, 12.6, 4, 300 }, + [12] = { 41.1, 12.5, 4, 300 }, + [13] = { 42.5, 12.3, 4, 300 }, + [14] = { 44.1, 12.1, 4, 300 }, + [15] = { 41.2, 11.7, 4, 300 }, + [16] = { 43.7, 11.5, 4, 300 }, + [17] = { 43.1, 10.9, 4, 300 }, + [18] = { 20.1, 77.7, 8, 300 }, + }, + ["lvl"] = "45-46", + }, + [5975] = { + ["coords"] = { + [1] = { 43.3, 15.4, 4, 300 }, + [2] = { 42.2, 15.3, 4, 300 }, + [3] = { 43.9, 14.8, 4, 300 }, + [4] = { 41.7, 14.6, 4, 300 }, + [5] = { 42.9, 13.7, 4, 300 }, + [6] = { 41.3, 13.6, 4, 300 }, + [7] = { 42.4, 13.5, 4, 300 }, + [8] = { 43, 12.9, 4, 300 }, + [9] = { 42.3, 12.7, 4, 300 }, + [10] = { 44.2, 12.6, 4, 300 }, + [11] = { 42.9, 12.6, 4, 300 }, + [12] = { 41.1, 12.5, 4, 300 }, + [13] = { 42.5, 12.3, 4, 300 }, + [14] = { 44.1, 12.1, 4, 300 }, + [15] = { 41.2, 11.7, 4, 300 }, + [16] = { 43.7, 11.5, 4, 300 }, + [17] = { 43.1, 10.9, 4, 300 }, + [18] = { 20.1, 77.7, 8, 300 }, + }, + ["lvl"] = "46-47", + }, + [5976] = { + ["coords"] = { + [1] = { 43.3, 15.4, 4, 300 }, + [2] = { 42.2, 15.3, 4, 300 }, + [3] = { 43.9, 14.8, 4, 300 }, + [4] = { 41.7, 14.6, 4, 300 }, + [5] = { 42.9, 13.7, 4, 300 }, + [6] = { 41.3, 13.6, 4, 300 }, + [7] = { 42.4, 13.5, 4, 300 }, + [8] = { 43, 12.9, 4, 300 }, + [9] = { 42.3, 12.7, 4, 300 }, + [10] = { 44.2, 12.6, 4, 300 }, + [11] = { 42.9, 12.6, 4, 300 }, + [12] = { 41.1, 12.5, 4, 300 }, + [13] = { 42.5, 12.3, 4, 300 }, + [14] = { 44.1, 12.1, 4, 300 }, + [15] = { 41.2, 11.7, 4, 300 }, + [16] = { 43.7, 11.5, 4, 300 }, + [17] = { 43.1, 10.9, 4, 300 }, + [18] = { 20.1, 77.7, 8, 300 }, + }, + ["lvl"] = "46-47", + }, + [5977] = { + ["coords"] = { + [1] = { 48.6, 45.9, 4, 300 }, + [2] = { 47.3, 45.5, 4, 300 }, + [3] = { 48.1, 45.1, 4, 300 }, + [4] = { 47.6, 44.8, 4, 300 }, + [5] = { 48.1, 44.3, 4, 300 }, + [6] = { 47, 43.7, 4, 300 }, + [7] = { 47.7, 43.4, 4, 300 }, + [8] = { 48.9, 43.2, 4, 300 }, + [9] = { 48.3, 43, 4, 300 }, + [10] = { 47, 43, 4, 300 }, + [11] = { 49.7, 42.6, 4, 300 }, + [12] = { 47.9, 42, 4, 300 }, + [13] = { 50.1, 41.1, 4, 300 }, + [14] = { 48.1, 41.1, 4, 300 }, + [15] = { 47.1, 41, 4, 300 }, + [16] = { 49.1, 40.9, 4, 300 }, + }, + ["lvl"] = "53-54", + }, + [5978] = { + ["coords"] = { + [1] = { 48.6, 45.9, 4, 300 }, + [2] = { 47.3, 45.5, 4, 300 }, + [3] = { 48.1, 45.1, 4, 300 }, + [4] = { 47.6, 44.8, 4, 300 }, + [5] = { 48.1, 44.3, 4, 300 }, + [6] = { 47, 43.7, 4, 300 }, + [7] = { 47.7, 43.4, 4, 300 }, + [8] = { 48.9, 43.2, 4, 300 }, + [9] = { 48.3, 43, 4, 300 }, + [10] = { 47, 43, 4, 300 }, + [11] = { 49.7, 42.6, 4, 300 }, + [12] = { 47.9, 42, 4, 300 }, + [13] = { 50.1, 41.1, 4, 300 }, + [14] = { 48.1, 41.1, 4, 300 }, + [15] = { 47.1, 41, 4, 300 }, + [16] = { 49.1, 40.9, 4, 300 }, + }, + ["lvl"] = "54-55", + }, + [5979] = { + ["coords"] = { + [1] = { 45.4, 24.2, 4, 300 }, + [2] = { 45.6, 23.7, 4, 300 }, + [3] = { 45.7, 19.3, 4, 300 }, + }, + ["lvl"] = "45-47", + }, + [5980] = "_", + [5982] = { + ["coords"] = { + [1] = { 54.9, 44.6, 4, 120 }, + [2] = { 58.2, 44.3, 4, 120 }, + [3] = { 54.7, 44.3, 4, 120 }, + [4] = { 53.6, 39.1, 4, 120 }, + [5] = { 56.7, 37.5, 4, 120 }, + [6] = { 56, 36.5, 4, 120 }, + [7] = { 54.5, 36.3, 4, 120 }, + [8] = { 45.4, 35.6, 4, 120 }, + [9] = { 58.6, 28.3, 4, 120 }, + [10] = { 61, 26.8, 4, 120 }, + [11] = { 62.7, 26.5, 4, 120 }, + [12] = { 47.8, 23.5, 4, 120 }, + [13] = { 46, 18.9, 4, 120 }, + [14] = { 50.2, 17.4, 4, 120 }, + [15] = { 50, 17, 4, 120 }, + }, + ["lvl"] = "46-48", + }, + [5984] = { + ["coords"] = { + [1] = { 50.8, 28.1, 4, 120 }, + [2] = { 43.9, 25.5, 4, 120 }, + [3] = { 48.6, 24.5, 4, 120 }, + [4] = { 45.5, 21.4, 4, 120 }, + [5] = { 46.7, 20.9, 4, 120 }, + [6] = { 47.8, 19.7, 4, 120 }, + [7] = { 48.3, 17.8, 4, 120 }, + [8] = { 56, 17.6, 4, 120 }, + }, + ["lvl"] = "45-46", + }, + [5985] = { + ["coords"] = { + [1] = { 52.4, 57.2, 4, 120 }, + [2] = { 61, 45.6, 4, 120 }, + [3] = { 58.9, 45.3, 4, 120 }, + [4] = { 60.9, 44.3, 4, 120 }, + [5] = { 59, 44.1, 4, 120 }, + [6] = { 55, 42.6, 4, 120 }, + [7] = { 51, 39.4, 4, 120 }, + [8] = { 60.2, 38.3, 4, 120 }, + [9] = { 51.9, 38.2, 4, 120 }, + [10] = { 53.2, 38.1, 4, 120 }, + [11] = { 51, 36.5, 4, 120 }, + [12] = { 49, 36.5, 4, 120 }, + [13] = { 59.3, 36, 4, 120 }, + [14] = { 46.1, 35.1, 4, 120 }, + [15] = { 44.9, 33.7, 4, 120 }, + }, + ["lvl"] = "49-50", + }, + [5986] = "_", + [5987] = "_", + [5988] = { + ["coords"] = { + [1] = { 58.6, 41, 4, 120 }, + [2] = { 52.5, 30.5, 4, 120 }, + [3] = { 50.8, 30, 4, 120 }, + [4] = { 44, 29.1, 4, 120 }, + [5] = { 44.9, 27.7, 4, 120 }, + [6] = { 55.7, 25.2, 4, 120 }, + [7] = { 45.5, 24.7, 4, 120 }, + [8] = { 56.7, 23.4, 4, 120 }, + [9] = { 44, 23.1, 4, 120 }, + [10] = { 49.8, 22, 4, 120 }, + [11] = { 56.6, 21.9, 4, 120 }, + [12] = { 44.7, 20, 4, 120 }, + [13] = { 48.8, 19.4, 4, 120 }, + [14] = { 57.1, 18.8, 4, 120 }, + [15] = { 47.7, 18.8, 4, 120 }, + [16] = { 45.8, 17.5, 4, 120 }, + [17] = { 49.3, 16.8, 4, 120 }, + [18] = { 46.7, 14.4, 4, 120 }, + }, + ["lvl"] = "50-51", + }, + [5989] = "_", + [5990] = { + ["coords"] = { + [1] = { 57.9, 35, 4, 120 }, + [2] = { 56.9, 33.5, 4, 120 }, + [3] = { 55.9, 32.1, 4, 120 }, + [4] = { 55, 30.7, 4, 120 }, + [5] = { 56.9, 30.6, 4, 120 }, + [6] = { 61.1, 30.4, 4, 120 }, + [7] = { 57.9, 29.1, 4, 120 }, + [8] = { 56, 29.1, 4, 120 }, + [9] = { 55, 29, 4, 120 }, + [10] = { 60.9, 27.8, 4, 120 }, + [11] = { 62.9, 27.7, 4, 120 }, + [12] = { 59, 27.7, 4, 120 }, + [13] = { 61.8, 29, 4, 120 }, + [14] = { 61.9, 26.1, 4, 120 }, + }, + ["lvl"] = "47-48", + }, + [5991] = { + ["coords"] = { + [1] = { 45.3, 54.9, 4, 120 }, + [2] = { 64.1, 52.5, 4, 120 }, + [3] = { 46.5, 51.1, 4, 120 }, + [4] = { 47.1, 49.4, 4, 120 }, + [5] = { 48.1, 38.1, 4, 120 }, + [6] = { 51.1, 55.9, 4, 120 }, + [7] = { 55, 42.6, 4, 120 }, + [8] = { 53, 42.5, 4, 120 }, + [9] = { 46, 41.1, 4, 120 }, + [10] = { 51, 39.4, 4, 120 }, + [11] = { 51.9, 38.2, 4, 120 }, + [12] = { 47, 36.6, 4, 120 }, + [13] = { 51, 36.5, 4, 120 }, + [14] = { 49, 36.5, 4, 120 }, + [15] = { 46.1, 35.1, 4, 120 }, + [16] = { 44.9, 33.7, 4, 120 }, + }, + ["lvl"] = "51-52", + }, + [5992] = { + ["coords"] = { + [1] = { 64.3, 54.7, 4, 120 }, + [2] = { 50.1, 52, 4, 120 }, + [3] = { 45.2, 49.2, 4, 120 }, + [4] = { 45.2, 44.8, 4, 120 }, + [5] = { 59.2, 43.2, 4, 120 }, + [6] = { 57.7, 42.8, 4, 120 }, + [7] = { 55.4, 41.6, 4, 120 }, + [8] = { 60.9, 40.5, 4, 120 }, + [9] = { 52.6, 40.3, 4, 120 }, + [10] = { 45.8, 39.6, 4, 120 }, + [11] = { 45.9, 38.3, 4, 120 }, + [12] = { 51.3, 37.6, 4, 120 }, + [13] = { 62.5, 36.9, 4, 120 }, + [14] = { 57.9, 36.2, 4, 120 }, + [15] = { 48.1, 35.4, 4, 120 }, + [16] = { 44.1, 32.8, 4, 120 }, + [17] = { 62.8, 30.9, 4, 120 }, + [18] = { 58.2, 30.4, 4, 120 }, + [19] = { 44.8, 29.9, 4, 120 }, + [20] = { 60.7, 29.4, 4, 120 }, + [21] = { 51.9, 29.2, 4, 120 }, + [22] = { 61.8, 29, 4, 120 }, + [23] = { 57.1, 28.4, 4, 120 }, + [24] = { 58.3, 27.3, 4, 120 }, + [25] = { 50.7, 26.9, 4, 120 }, + [26] = { 61.9, 26.1, 4, 120 }, + [27] = { 49.9, 24, 4, 120 }, + [28] = { 55.9, 23.6, 4, 120 }, + [29] = { 44.6, 23.2, 4, 120 }, + [30] = { 46.7, 23, 4, 120 }, + [31] = { 49, 20.8, 4, 120 }, + [32] = { 56, 19.7, 4, 120 }, + [33] = { 47.1, 18.1, 4, 120 }, + [34] = { 55.4, 15.5, 4, 120 }, + }, + ["lvl"] = "48-49", + }, + [5993] = { + ["coords"] = { + [1] = { 52.4, 58, 4, 120 }, + [2] = { 63.3, 56.6, 4, 300 }, + [3] = { 54.3, 56.4, 4, 300 }, + [4] = { 51.1, 55.9, 4, 120 }, + [5] = { 50.3, 55.2, 4, 120 }, + [6] = { 53.1, 54.4, 4, 300 }, + [7] = { 62.3, 53.5, 4, 300 }, + [8] = { 52, 53.2, 4, 120 }, + [9] = { 51.5, 53.2, 4, 120 }, + [10] = { 63, 52.3, 4, 300 }, + [11] = { 54.2, 51.3, 4, 300 }, + [12] = { 53.6, 50.5, 4, 120 }, + [13] = { 62.4, 50.4, 4, 300 }, + [14] = { 60.6, 50.2, 4, 300 }, + [15] = { 58.1, 49.7, 4, 300 }, + [16] = { 59.1, 49.6, 4, 300 }, + [17] = { 61.5, 49.1, 4, 300 }, + [18] = { 56.4, 48.9, 4, 300 }, + [19] = { 45.5, 48, 4, 300 }, + [20] = { 53, 41.8, 4, 300 }, + [21] = { 45.1, 40.8, 4, 300 }, + [22] = { 52.5, 34.4, 4, 300 }, + [23] = { 58.7, 25.6, 4, 300 }, + }, + ["lvl"] = "52-53", + }, + [5995] = "_", + [5996] = { + ["coords"] = { + [1] = { 58.1, 15.6, 4, 300 }, + [2] = { 58.1, 15.4, 4, 300 }, + [3] = { 58.4, 15.2, 4, 300 }, + [4] = { 57.6, 15.2, 4, 300 }, + [5] = { 57.3, 14.9, 4, 300 }, + [6] = { 57.4, 14.9, 4, 300 }, + [7] = { 58.3, 14.7, 4, 300 }, + [8] = { 58.4, 14.6, 4, 300 }, + [9] = { 58.3, 14.6, 4, 300 }, + [10] = { 54, 13.3, 4, 300 }, + [11] = { 53.9, 13.3, 4, 300 }, + [12] = { 53.1, 13.1, 4, 300 }, + [13] = { 53.1, 13, 4, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "47-48", + }, + [5997] = { + ["coords"] = { + [1] = { 57.7, 15.3, 4, 300 }, + [2] = { 58.5, 15.1, 4, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "47-48", + }, + [5999] = { + ["coords"] = { + [1] = { 65.6, 26.7, 4, 300 }, + [2] = { 64.4, 26.2, 4, 300 }, + [3] = { 63.8, 24.8, 4, 300 }, + [4] = { 63, 24.2, 4, 300 }, + [5] = { 66.8, 23.2, 4, 300 }, + [6] = { 61.9, 23.2, 4, 300 }, + [7] = { 61.4, 23, 4, 300 }, + [8] = { 61.3, 22.9, 4, 300 }, + [9] = { 61.8, 22.4, 4, 300 }, + [10] = { 61.6, 22.3, 4, 300 }, + [11] = { 60.4, 22.3, 4, 300 }, + [12] = { 62.4, 22.1, 4, 300 }, + [13] = { 61.2, 22, 4, 300 }, + [14] = { 61.7, 21.9, 4, 300 }, + [15] = { 61.2, 21.8, 4, 300 }, + [16] = { 60.8, 21.4, 4, 300 }, + [17] = { 64, 20.7, 4, 300 }, + [18] = { 60.7, 20.5, 4, 300 }, + [19] = { 64.3, 20.4, 4, 300 }, + [20] = { 60.7, 20.4, 4, 300 }, + [21] = { 67.7, 20.3, 4, 300 }, + [22] = { 67.1, 20.3, 4, 300 }, + [23] = { 65.9, 20.2, 4, 300 }, + [24] = { 62.6, 20.2, 4, 300 }, + [25] = { 61.9, 20.2, 4, 300 }, + [26] = { 61.1, 20.1, 4, 300 }, + [27] = { 62.9, 19.7, 4, 300 }, + [28] = { 60.2, 19.6, 4, 300 }, + [29] = { 63.8, 19.6, 4, 300 }, + [30] = { 64.5, 19.5, 4, 300 }, + [31] = { 62.5, 19.5, 4, 300 }, + [32] = { 60.8, 19.5, 4, 300 }, + [33] = { 60.9, 19.4, 4, 300 }, + [34] = { 65.3, 19.1, 4, 300 }, + [35] = { 63.7, 19, 4, 300 }, + [36] = { 61.8, 18.8, 4, 300 }, + [37] = { 60.2, 18.5, 4, 300 }, + [38] = { 64.2, 18.4, 4, 300 }, + [39] = { 65.6, 18.3, 4, 300 }, + [40] = { 63.8, 18.3, 4, 300 }, + [41] = { 60.6, 18.2, 4, 300 }, + [42] = { 68, 18.1, 4, 300 }, + [43] = { 62.2, 17.5, 4, 300 }, + [44] = { 61.2, 17.5, 4, 300 }, + [45] = { 61, 17.1, 4, 300 }, + [46] = { 67.6, 16.9, 4, 300 }, + [47] = { 60.4, 16.7, 4, 300 }, + [48] = { 66, 15.8, 4, 300 }, + [49] = { 60.9, 15.5, 4, 300 }, + [50] = { 60.2, 15.4, 4, 300 }, + [51] = { 62.1, 15.2, 4, 300 }, + [52] = { 57.9, 14.8, 4, 300 }, + [53] = { 65.2, 14.8, 4, 300 }, + [54] = { 66, 14.5, 4, 300 }, + [55] = { 60, 14.2, 4, 300 }, + [56] = { 66.8, 13.9, 4, 300 }, + [57] = { 61, 13.8, 4, 300 }, + [58] = { 57.6, 13.8, 4, 300 }, + [59] = { 54.1, 11.8, 4, 300 }, + [60] = { 54, 11.5, 4, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "49-50", + }, + [6000] = { + ["coords"] = { + [1] = { 62.1, 23.3, 4, 300 }, + [2] = { 64, 19.3, 4, 300 }, + [3] = { 60.8, 18.4, 4, 300 }, + [4] = { 67.7, 16.2, 4, 300 }, + [5] = { 60.2, 14.8, 4, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "49-51", + }, + [6002] = { + ["coords"] = { + [1] = { 64.7, 20.4, 4, 300 }, + [2] = { 67.6, 19, 4, 300 }, + [3] = { 67.2, 15.8, 4, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "49-51", + }, + [6004] = { + ["coords"] = { + [1] = { 62.9, 48.5, 4, 300 }, + [2] = { 64.1, 48.2, 4, 300 }, + [3] = { 64.6, 47.6, 4, 300 }, + [4] = { 64.1, 47.4, 4, 300 }, + [5] = { 63.2, 47.1, 4, 300 }, + [6] = { 64.6, 46.9, 4, 300 }, + [7] = { 64.1, 46.8, 4, 300 }, + [8] = { 64.3, 46.6, 4, 300 }, + [9] = { 63.1, 45.7, 4, 300 }, + [10] = { 64.1, 45.7, 4, 300 }, + [11] = { 63.2, 44.5, 4, 300 }, + [12] = { 63.8, 44.1, 4, 300 }, + [13] = { 63, 42.8, 4, 300 }, + [14] = { 63.9, 42.3, 4, 300 }, + [15] = { 61.8, 42.1, 4, 300 }, + [16] = { 62.6, 41.4, 4, 300 }, + [17] = { 63, 41.3, 4, 300 }, + [18] = { 61.8, 41.1, 4, 300 }, + [19] = { 63.9, 40.9, 4, 300 }, + [20] = { 62.6, 40.8, 4, 300 }, + [21] = { 62.9, 40.7, 4, 300 }, + [22] = { 62.1, 39.9, 4, 300 }, + [23] = { 63.9, 39.3, 4, 300 }, + [24] = { 63.2, 39.2, 4, 300 }, + [25] = { 64.1, 35.2, 4, 300 }, + [26] = { 64.8, 34.8, 4, 300 }, + [27] = { 66, 34.5, 4, 300 }, + [28] = { 65.2, 34, 4, 300 }, + [29] = { 64.3, 33.8, 4, 300 }, + [30] = { 65.8, 33.7, 4, 300 }, + [31] = { 64.8, 33.7, 4, 300 }, + [32] = { 65.1, 33.3, 4, 300 }, + [33] = { 64.5, 33.3, 4, 300 }, + [34] = { 65, 33, 4, 300 }, + [35] = { 64.7, 32.9, 4, 300 }, + [36] = { 64.8, 32.5, 4, 300 }, + [37] = { 65.7, 32.3, 4, 300 }, + [38] = { 66.7, 31.9, 4, 300 }, + [39] = { 63.7, 31.8, 4, 300 }, + [40] = { 66, 31.7, 4, 300 }, + [41] = { 66.7, 31.7, 4, 300 }, + [42] = { 67.8, 31.7, 4, 300 }, + [43] = { 67.1, 31.4, 4, 300 }, + [44] = { 68.7, 31.2, 4, 300 }, + [45] = { 68.2, 31.1, 4, 300 }, + [46] = { 66.6, 31.1, 4, 300 }, + [47] = { 69.3, 31.1, 4, 300 }, + [48] = { 68.8, 31, 4, 300 }, + [49] = { 69.5, 31, 4, 300 }, + [50] = { 64.7, 30.9, 4, 300 }, + [51] = { 65.8, 30.9, 4, 300 }, + [52] = { 66.4, 30.6, 4, 300 }, + [53] = { 65.9, 30.3, 4, 300 }, + [54] = { 68.1, 30.3, 4, 300 }, + [55] = { 63.8, 30.1, 4, 300 }, + [56] = { 66, 30.1, 4, 300 }, + [57] = { 67.3, 29.9, 4, 300 }, + [58] = { 67.6, 29.8, 4, 300 }, + [59] = { 67.1, 29.5, 4, 300 }, + [60] = { 67.2, 29.2, 4, 300 }, + [61] = { 67.4, 29.2, 4, 300 }, + }, + ["lvl"] = "51-52", + }, + [6005] = { + ["coords"] = { + [1] = { 62.9, 48.5, 4, 300 }, + [2] = { 64.1, 48.2, 4, 300 }, + [3] = { 64.6, 47.6, 4, 300 }, + [4] = { 64.1, 47.4, 4, 300 }, + [5] = { 63.2, 47.1, 4, 300 }, + [6] = { 64.6, 46.9, 4, 300 }, + [7] = { 64.1, 46.8, 4, 300 }, + [8] = { 64.3, 46.6, 4, 300 }, + [9] = { 63.1, 45.7, 4, 300 }, + [10] = { 64.1, 45.7, 4, 300 }, + [11] = { 63.2, 44.5, 4, 300 }, + [12] = { 63.8, 44.1, 4, 300 }, + [13] = { 63, 42.8, 4, 300 }, + [14] = { 63.9, 42.3, 4, 300 }, + [15] = { 61.8, 42.1, 4, 300 }, + [16] = { 62.6, 41.4, 4, 300 }, + [17] = { 63, 41.3, 4, 300 }, + [18] = { 61.8, 41.1, 4, 300 }, + [19] = { 63.9, 40.9, 4, 300 }, + [20] = { 62.6, 40.8, 4, 300 }, + [21] = { 62.9, 40.7, 4, 300 }, + [22] = { 62.1, 39.9, 4, 300 }, + [23] = { 63.9, 39.3, 4, 300 }, + [24] = { 63.2, 39.2, 4, 300 }, + [25] = { 64.1, 35.2, 4, 300 }, + [26] = { 64.8, 34.8, 4, 300 }, + [27] = { 66, 34.5, 4, 300 }, + [28] = { 65.2, 34, 4, 300 }, + [29] = { 64.3, 33.8, 4, 300 }, + [30] = { 65.8, 33.7, 4, 300 }, + [31] = { 64.8, 33.7, 4, 300 }, + [32] = { 65.1, 33.3, 4, 300 }, + [33] = { 64.5, 33.3, 4, 300 }, + [34] = { 65, 33, 4, 300 }, + [35] = { 64.7, 32.9, 4, 300 }, + [36] = { 64.8, 32.5, 4, 300 }, + [37] = { 65.7, 32.3, 4, 300 }, + [38] = { 66.7, 31.9, 4, 300 }, + [39] = { 63.7, 31.8, 4, 300 }, + [40] = { 66, 31.7, 4, 300 }, + [41] = { 66.7, 31.7, 4, 300 }, + [42] = { 67.8, 31.7, 4, 300 }, + [43] = { 67.1, 31.4, 4, 300 }, + [44] = { 68.7, 31.2, 4, 300 }, + [45] = { 68.2, 31.1, 4, 300 }, + [46] = { 66.6, 31.1, 4, 300 }, + [47] = { 69.3, 31.1, 4, 300 }, + [48] = { 68.8, 31, 4, 300 }, + [49] = { 69.5, 31, 4, 300 }, + [50] = { 64.7, 30.9, 4, 300 }, + [51] = { 65.8, 30.9, 4, 300 }, + [52] = { 66.4, 30.6, 4, 300 }, + [53] = { 65.9, 30.3, 4, 300 }, + [54] = { 68.1, 30.3, 4, 300 }, + [55] = { 63.8, 30.1, 4, 300 }, + [56] = { 66, 30.1, 4, 300 }, + [57] = { 67.3, 29.9, 4, 300 }, + [58] = { 67.6, 29.8, 4, 300 }, + [59] = { 67.1, 29.5, 4, 300 }, + [60] = { 67.2, 29.2, 4, 300 }, + [61] = { 67.4, 29.2, 4, 300 }, + }, + ["lvl"] = "52-53", + }, + [6006] = { + ["coords"] = { + [1] = { 62.9, 48.5, 4, 300 }, + [2] = { 64.1, 48.2, 4, 300 }, + [3] = { 64.6, 47.6, 4, 300 }, + [4] = { 64.1, 47.4, 4, 300 }, + [5] = { 63.2, 47.1, 4, 300 }, + [6] = { 64.6, 46.9, 4, 300 }, + [7] = { 64.1, 46.8, 4, 300 }, + [8] = { 64.3, 46.6, 4, 300 }, + [9] = { 63.1, 45.7, 4, 300 }, + [10] = { 64.1, 45.7, 4, 300 }, + [11] = { 63.2, 44.5, 4, 300 }, + [12] = { 63.8, 44.1, 4, 300 }, + [13] = { 63, 42.8, 4, 300 }, + [14] = { 63.9, 42.3, 4, 300 }, + [15] = { 61.8, 42.1, 4, 300 }, + [16] = { 62.6, 41.4, 4, 300 }, + [17] = { 63, 41.3, 4, 300 }, + [18] = { 61.8, 41.1, 4, 300 }, + [19] = { 63.9, 40.9, 4, 300 }, + [20] = { 62.6, 40.8, 4, 300 }, + [21] = { 62.9, 40.7, 4, 300 }, + [22] = { 62.1, 39.9, 4, 300 }, + [23] = { 63.9, 39.3, 4, 300 }, + [24] = { 63.2, 39.2, 4, 300 }, + [25] = { 64.1, 35.2, 4, 300 }, + [26] = { 64.8, 34.8, 4, 300 }, + [27] = { 66, 34.5, 4, 300 }, + [28] = { 65.2, 34, 4, 300 }, + [29] = { 64.3, 33.8, 4, 300 }, + [30] = { 65.8, 33.7, 4, 300 }, + [31] = { 64.8, 33.7, 4, 300 }, + [32] = { 65.1, 33.3, 4, 300 }, + [33] = { 64.5, 33.3, 4, 300 }, + [34] = { 65, 33, 4, 300 }, + [35] = { 64.7, 32.9, 4, 300 }, + [36] = { 64.8, 32.5, 4, 300 }, + [37] = { 65.7, 32.3, 4, 300 }, + [38] = { 66.7, 31.9, 4, 300 }, + [39] = { 63.7, 31.8, 4, 300 }, + [40] = { 66, 31.7, 4, 300 }, + [41] = { 66.7, 31.7, 4, 300 }, + [42] = { 67.8, 31.7, 4, 300 }, + [43] = { 67.1, 31.4, 4, 300 }, + [44] = { 68.7, 31.2, 4, 300 }, + [45] = { 68.2, 31.1, 4, 300 }, + [46] = { 66.6, 31.1, 4, 300 }, + [47] = { 69.3, 31.1, 4, 300 }, + [48] = { 68.8, 31, 4, 300 }, + [49] = { 69.5, 31, 4, 300 }, + [50] = { 64.7, 30.9, 4, 300 }, + [51] = { 65.8, 30.9, 4, 300 }, + [52] = { 66.4, 30.6, 4, 300 }, + [53] = { 65.9, 30.3, 4, 300 }, + [54] = { 68.1, 30.3, 4, 300 }, + [55] = { 63.8, 30.1, 4, 300 }, + [56] = { 66, 30.1, 4, 300 }, + [57] = { 67.3, 29.9, 4, 300 }, + [58] = { 67.6, 29.8, 4, 300 }, + [59] = { 67.1, 29.5, 4, 300 }, + [60] = { 67.2, 29.2, 4, 300 }, + [61] = { 67.4, 29.2, 4, 300 }, + }, + ["lvl"] = "52-53", + }, + [6007] = { + ["coords"] = { + [1] = { 43.9, 42.3, 4, 300 }, + [2] = { 42.9, 41.8, 4, 300 }, + [3] = { 44.2, 41.3, 4, 300 }, + [4] = { 43.1, 41.1, 4, 300 }, + [5] = { 42.3, 39.9, 4, 300 }, + [6] = { 43.1, 39.6, 4, 300 }, + [7] = { 41.4, 38.8, 4, 300 }, + [8] = { 39.2, 34.6, 4, 300 }, + [9] = { 39.9, 33.4, 4, 300 }, + [10] = { 40.7, 32.7, 4, 300 }, + [11] = { 39.1, 32.4, 4, 300 }, + [12] = { 38.9, 32.4, 4, 300 }, + [13] = { 38.6, 31.7, 4, 300 }, + [14] = { 39.9, 31.5, 4, 300 }, + [15] = { 38.9, 31.2, 4, 300 }, + [16] = { 40.7, 30.7, 4, 300 }, + [17] = { 38.5, 30.6, 4, 300 }, + [18] = { 39.4, 30.5, 4, 300 }, + }, + ["lvl"] = "53-54", + }, + [6008] = { + ["coords"] = { + [1] = { 43.9, 42.3, 4, 300 }, + [2] = { 42.9, 41.8, 4, 300 }, + [3] = { 44.2, 41.3, 4, 300 }, + [4] = { 43.1, 41.1, 4, 300 }, + [5] = { 42.3, 39.9, 4, 300 }, + [6] = { 43.1, 39.6, 4, 300 }, + [7] = { 41.4, 38.8, 4, 300 }, + [8] = { 39.2, 34.6, 4, 300 }, + [9] = { 39.9, 33.4, 4, 300 }, + [10] = { 40.7, 32.7, 4, 300 }, + [11] = { 39.1, 32.4, 4, 300 }, + [12] = { 38.9, 32.4, 4, 300 }, + [13] = { 38.6, 31.7, 4, 300 }, + [14] = { 39.9, 31.5, 4, 300 }, + [15] = { 38.9, 31.2, 4, 300 }, + [16] = { 40.7, 30.7, 4, 300 }, + [17] = { 38.5, 30.6, 4, 300 }, + [18] = { 39.4, 30.5, 4, 300 }, + }, + ["lvl"] = "53-54", + }, + [6009] = { + ["coords"] = { + [1] = { 43.1, 42.4, 4, 300 }, + [2] = { 44, 39.6, 4, 300 }, + [3] = { 39.1, 33.1, 4, 300 }, + [4] = { 39.3, 31.7, 4, 300 }, + [5] = { 39.4, 31.2, 4, 300 }, + [6] = { 38.3, 31.1, 4, 300 }, + [7] = { 43.9, 42.3, 4, 300 }, + [8] = { 42.9, 41.8, 4, 300 }, + [9] = { 44.2, 41.3, 4, 300 }, + [10] = { 43.1, 41.1, 4, 300 }, + [11] = { 42.3, 39.9, 4, 300 }, + [12] = { 43.1, 39.6, 4, 300 }, + [13] = { 41.4, 38.8, 4, 300 }, + [14] = { 39.2, 34.6, 4, 300 }, + [15] = { 39.9, 33.4, 4, 300 }, + [16] = { 40.7, 32.7, 4, 300 }, + [17] = { 39.1, 32.4, 4, 300 }, + [18] = { 38.9, 32.4, 4, 300 }, + [19] = { 38.6, 31.7, 4, 300 }, + [20] = { 39.9, 31.5, 4, 300 }, + [21] = { 38.9, 31.2, 4, 300 }, + [22] = { 40.7, 30.7, 4, 300 }, + [23] = { 38.5, 30.6, 4, 300 }, + [24] = { 39.4, 30.5, 4, 300 }, + }, + ["lvl"] = "54-55", + }, + [6010] = { + ["coords"] = { + [1] = { 62.5, 58.2, 4, 300 }, + [2] = { 62.1, 55.5, 4, 300 }, + [3] = { 55, 53.1, 4, 300 }, + [4] = { 59.7, 51.1, 4, 300 }, + [5] = { 58.2, 50.9, 4, 300 }, + [6] = { 56.1, 50.5, 4, 300 }, + }, + ["lvl"] = "54-55", + }, + [6011] = { + ["coords"] = { + [1] = { 62.5, 58.3, 4, 300 }, + [2] = { 62.1, 55.3, 4, 300 }, + [3] = { 54.6, 54.1, 4, 300 }, + [4] = { 58.2, 51.3, 4, 300 }, + [5] = { 59.8, 51.2, 4, 300 }, + [6] = { 56, 50.6, 4, 300 }, + }, + ["lvl"] = "54-55", + }, + [6018] = { + ["coords"] = { + [1] = { 41.9, 10.1, 14, 30 }, + [2] = { 35.6, 87.8, 1637, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [6022] = "_", + [6023] = "_", + [6026] = { + ["coords"] = { + [1] = { 46.1, 54.8, 8, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [6029] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [6030] = { + ["coords"] = { + [1] = { 23.7, 74.3, 38, 300 }, + [2] = { 10.7, 82.3, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "21", + }, + [6031] = { + ["coords"] = { + [1] = { 48.6, 42.5, 1537, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [6032] = "_", + [6034] = { + ["coords"] = { + [1] = { 30.6, 51.6, 141, 30 }, + [2] = { 64.4, 22.2, 1657, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [6035] = { + ["coords"] = { + [1] = { 42.9, 57.8, 491, 18000 }, + [2] = { 48.9, 44, 491, 18000 }, + [3] = { 17.5, 38.5, 491, 18000 }, + [4] = { 18.8, 38.2, 491, 18000 }, + }, + ["lvl"] = "28-29", + ["rnk"] = "1", + }, + [6036] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [6046] = "_", + [6067] = "_", + [6068] = { + ["coords"] = { + [1] = { 75.3, 68.1, 405, 300 }, + [2] = { 75.4, 68, 405, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "35-36", + }, + [6069] = { + ["coords"] = { + [1] = { 9.6, 31.8, 5179, 0 }, + [2] = { 10, 31.7, 5179, 0 }, + [3] = { 9.6, 31.6, 5179, 0 }, + [4] = { 9.9, 31.4, 5179, 0 }, + [5] = { 9.6, 31.4, 5179, 0 }, + [6] = { 9.8, 31.3, 5179, 0 }, + }, + ["lvl"] = "39-40", + }, + [6070] = { + ["coords"] = { + [1] = { 9.8, 31.6, 5179, 0 }, + [2] = { 9.7, 31.5, 5179, 0 }, + }, + ["lvl"] = "38-39", + }, + [6073] = { + ["coords"] = { + [1] = { 53.5, 3.1, 17, 275 }, + [2] = { 53.7, 2.9, 17, 275 }, + [3] = { 53.5, 2.8, 17, 275 }, + [4] = { 53.6, 2.8, 17, 275 }, + [5] = { 53.7, 2.5, 17, 275 }, + [6] = { 53.3, 2.5, 17, 275 }, + [7] = { 53.5, 2.4, 17, 275 }, + [8] = { 53.3, 2.2, 17, 275 }, + [9] = { 53.5, 2, 17, 275 }, + [10] = { 54.3, 1.5, 17, 275 }, + [11] = { 54.6, 1.4, 17, 275 }, + [12] = { 78, 85, 331, 275 }, + [13] = { 78.4, 84.8, 331, 275 }, + [14] = { 78, 84.6, 331, 275 }, + [15] = { 78.1, 84.5, 331, 275 }, + [16] = { 78.4, 84.1, 331, 275 }, + [17] = { 77.7, 84, 331, 275 }, + [18] = { 78, 83.8, 331, 275 }, + [19] = { 77.7, 83.5, 331, 275 }, + [20] = { 78.1, 83.2, 331, 275 }, + [21] = { 79.4, 82.2, 331, 275 }, + [22] = { 80, 82, 331, 275 }, + [23] = { 81.3, 79.5, 331, 300 }, + [24] = { 87.1, 79.3, 331, 300 }, + [25] = { 82.5, 79.3, 331, 300 }, + [26] = { 83, 78.6, 331, 300 }, + [27] = { 88.2, 78.5, 331, 300 }, + [28] = { 85.9, 78.5, 331, 300 }, + [29] = { 84.8, 77.9, 331, 300 }, + [30] = { 88.9, 77.8, 331, 300 }, + [31] = { 85.3, 77.6, 331, 300 }, + [32] = { 89.7, 77.1, 331, 300 }, + [33] = { 89.3, 77, 331, 300 }, + [34] = { 82.1, 77, 331, 300 }, + [35] = { 89.6, 76.5, 331, 300 }, + [36] = { 84.6, 75.1, 331, 300 }, + [37] = { 84.4, 73.4, 331, 300 }, + [38] = { 83, 71.7, 331, 300 }, + [39] = { 84.1, 71.6, 331, 300 }, + [40] = { 84.6, 71.1, 331, 300 }, + [41] = { 82.5, 71, 331, 300 }, + [42] = { 81.3, 70.8, 331, 300 }, + [43] = { 83.4, 70.7, 331, 300 }, + [44] = { 81.8, 70.1, 331, 300 }, + [45] = { 80.7, 70.1, 331, 300 }, + [46] = { 84, 70, 331, 300 }, + [47] = { 83.2, 69.9, 331, 300 }, + [48] = { 81.5, 69.2, 331, 300 }, + [49] = { 82.5, 69, 331, 300 }, + [50] = { 83.9, 68.5, 331, 300 }, + [51] = { 80.6, 68.2, 331, 300 }, + [52] = { 83, 68.1, 331, 300 }, + [53] = { 81.9, 67.8, 331, 300 }, + [54] = { 83.5, 67.6, 331, 300 }, + [55] = { 82.3, 67.6, 331, 300 }, + [56] = { 82.9, 66.6, 331, 300 }, + [57] = { 81.7, 66.5, 331, 300 }, + [58] = { 80.6, 66.3, 331, 300 }, + [59] = { 81.2, 65.7, 331, 300 }, + [60] = { 80.6, 64.9, 331, 300 }, + }, + ["lvl"] = "29-30", + }, + [6086] = { + ["coords"] = { + [1] = { 37.5, 47.4, 148, 275 }, + [2] = { 36.5, 46, 148, 275 }, + [3] = { 39.4, 44.9, 148, 275 }, + [4] = { 39.3, 44.9, 148, 275 }, + [5] = { 39.6, 44.9, 148, 275 }, + [6] = { 37.6, 44.2, 148, 275 }, + [7] = { 36.4, 43.9, 148, 275 }, + [8] = { 38.9, 43.7, 148, 275 }, + [9] = { 36.4, 43.7, 148, 275 }, + [10] = { 36.3, 43.7, 148, 275 }, + [11] = { 32.5, 43.6, 148, 275 }, + [12] = { 32.4, 43.5, 148, 275 }, + [13] = { 38.7, 43.1, 148, 275 }, + [14] = { 39.2, 41.8, 148, 275 }, + [15] = { 37.7, 41.7, 148, 275 }, + [16] = { 38, 41.5, 148, 275 }, + [17] = { 31.3, 41.2, 148, 275 }, + [18] = { 33.2, 40.3, 148, 275 }, + [19] = { 33.1, 40.2, 148, 275 }, + [20] = { 28, 53.5, 1519, 180 }, + [21] = { 27.1, 51.1, 1519, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [6089] = { + ["coords"] = { + [1] = { 77.1, 53.3, 1519, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [6090] = { + ["coords"] = { + [1] = { 77, 53.1, 1519, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [6092] = "_", + [6093] = { + ["coords"] = { + [1] = { 89.4, 79, 12, 120 }, + }, + ["lvl"] = "11", + }, + [6106] = "_", + [6107] = "_", + [6108] = "_", + [6115] = { + ["coords"] = { + [1] = { 53.5, 3.1, 17, 275 }, + [2] = { 53.7, 2.9, 17, 275 }, + [3] = { 53.5, 2.8, 17, 275 }, + [4] = { 53.6, 2.8, 17, 275 }, + [5] = { 53.7, 2.5, 17, 275 }, + [6] = { 53.3, 2.5, 17, 275 }, + [7] = { 53.5, 2.4, 17, 275 }, + [8] = { 53.3, 2.2, 17, 275 }, + [9] = { 53.5, 2, 17, 275 }, + [10] = { 54.3, 1.5, 17, 275 }, + [11] = { 54.6, 1.4, 17, 275 }, + [12] = { 78, 85, 331, 275 }, + [13] = { 78.4, 84.8, 331, 275 }, + [14] = { 78, 84.6, 331, 275 }, + [15] = { 78.1, 84.5, 331, 275 }, + [16] = { 78.4, 84.1, 331, 275 }, + [17] = { 77.7, 84, 331, 275 }, + [18] = { 78, 83.8, 331, 275 }, + [19] = { 77.7, 83.5, 331, 275 }, + [20] = { 78.1, 83.2, 331, 275 }, + [21] = { 79.4, 82.2, 331, 275 }, + [22] = { 80, 82, 331, 275 }, + [23] = { 81.3, 79.5, 331, 300 }, + [24] = { 87.1, 79.3, 331, 300 }, + [25] = { 82.5, 79.3, 331, 300 }, + [26] = { 83, 78.6, 331, 300 }, + [27] = { 88.2, 78.5, 331, 300 }, + [28] = { 85.9, 78.5, 331, 300 }, + [29] = { 84.8, 77.9, 331, 300 }, + [30] = { 88.9, 77.8, 331, 300 }, + [31] = { 85.3, 77.6, 331, 300 }, + [32] = { 89.7, 77.1, 331, 300 }, + [33] = { 89.3, 77, 331, 300 }, + [34] = { 82.1, 77, 331, 300 }, + [35] = { 89.6, 76.5, 331, 300 }, + [36] = { 84.6, 75.1, 331, 300 }, + [37] = { 84.4, 73.4, 331, 300 }, + [38] = { 83, 71.7, 331, 300 }, + [39] = { 84.1, 71.6, 331, 300 }, + [40] = { 84.6, 71.1, 331, 300 }, + [41] = { 82.5, 71, 331, 300 }, + [42] = { 81.3, 70.8, 331, 300 }, + [43] = { 83.4, 70.7, 331, 300 }, + [44] = { 81.8, 70.1, 331, 300 }, + [45] = { 80.7, 70.1, 331, 300 }, + [46] = { 84, 70, 331, 300 }, + [47] = { 83.2, 69.9, 331, 300 }, + [48] = { 81.5, 69.2, 331, 300 }, + [49] = { 82.5, 69, 331, 300 }, + [50] = { 83.9, 68.5, 331, 300 }, + [51] = { 80.6, 68.2, 331, 300 }, + [52] = { 83, 68.1, 331, 300 }, + [53] = { 81.9, 67.8, 331, 300 }, + [54] = { 83.5, 67.6, 331, 300 }, + [55] = { 82.3, 67.6, 331, 300 }, + [56] = { 82.9, 66.6, 331, 300 }, + [57] = { 81.7, 66.5, 331, 300 }, + [58] = { 80.6, 66.3, 331, 300 }, + [59] = { 81.2, 65.7, 331, 300 }, + [60] = { 80.6, 64.9, 331, 300 }, + }, + ["lvl"] = "29-30", + }, + [6116] = { + ["coords"] = { + [1] = { 15.8, 73.6, 16, 333 }, + [2] = { 14.7, 73.5, 16, 333 }, + [3] = { 13.5, 73.2, 16, 333 }, + [4] = { 16.5, 72.7, 16, 333 }, + [5] = { 14.6, 72.6, 16, 333 }, + [6] = { 14.5, 72.3, 16, 333 }, + [7] = { 14, 71.8, 16, 333 }, + [8] = { 16.6, 71.7, 16, 333 }, + [9] = { 16.7, 70.8, 16, 333 }, + [10] = { 17.3, 70.7, 16, 333 }, + [11] = { 17.9, 70, 16, 333 }, + [12] = { 16.6, 69.4, 16, 333 }, + [13] = { 17.9, 68.8, 16, 333 }, + [14] = { 16.5, 68.8, 16, 333 }, + [15] = { 17.3, 68.5, 16, 333 }, + [16] = { 17.8, 67.7, 16, 333 }, + [17] = { 16.5, 67.7, 16, 333 }, + [18] = { 17.3, 67.6, 16, 333 }, + [19] = { 17.7, 66.8, 16, 333 }, + [20] = { 17.1, 66.6, 16, 333 }, + [21] = { 17.1, 65.9, 16, 333 }, + [22] = { 98.2, 47, 331, 333 }, + [23] = { 99.1, 46.2, 331, 333 }, + [24] = { 98.6, 45.8, 331, 333 }, + }, + ["lvl"] = "45-46", + }, + [6117] = { + ["coords"] = { + [1] = { 15.8, 73.6, 16, 333 }, + [2] = { 14.7, 73.5, 16, 333 }, + [3] = { 13.5, 73.2, 16, 333 }, + [4] = { 16.5, 72.7, 16, 333 }, + [5] = { 14.6, 72.6, 16, 333 }, + [6] = { 14.5, 72.3, 16, 333 }, + [7] = { 14, 71.8, 16, 333 }, + [8] = { 16.6, 71.7, 16, 333 }, + [9] = { 16.7, 70.8, 16, 333 }, + [10] = { 17.3, 70.7, 16, 333 }, + [11] = { 17.9, 70, 16, 333 }, + [12] = { 16.6, 69.4, 16, 333 }, + [13] = { 17.9, 68.8, 16, 333 }, + [14] = { 16.5, 68.8, 16, 333 }, + [15] = { 17.3, 68.5, 16, 333 }, + [16] = { 17.8, 67.7, 16, 333 }, + [17] = { 16.5, 67.7, 16, 333 }, + [18] = { 17.3, 67.6, 16, 333 }, + [19] = { 17.7, 66.8, 16, 333 }, + [20] = { 17.1, 66.6, 16, 333 }, + [21] = { 17.1, 65.9, 16, 333 }, + [22] = { 98.2, 47, 331, 333 }, + [23] = { 99.1, 46.2, 331, 333 }, + [24] = { 98.6, 45.8, 331, 333 }, + }, + ["lvl"] = "46-47", + }, + [6120] = { + ["coords"] = { + [1] = { 47.6, 9.3, 1537, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [6121] = { + ["coords"] = { + [1] = { 44.5, 66.3, 12, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [6122] = { + ["coords"] = { + [1] = { 39.2, 85.2, 1519, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [6123] = { + ["coords"] = { + [1] = { 77.5, 63.1, 1, 120 }, + [2] = { 78, 62.4, 1, 270 }, + [3] = { 77.4, 62.4, 1, 270 }, + [4] = { 76.8, 62.3, 1, 270 }, + [5] = { 77.8, 62.1, 1, 270 }, + [6] = { 78, 61.9, 1, 270 }, + [7] = { 77.4, 61.3, 1, 270 }, + [8] = { 78.2, 61.2, 1, 270 }, + [9] = { 77, 60.9, 1, 270 }, + [10] = { 77.5, 60.5, 1, 270 }, + [11] = { 78.1, 60, 1, 270 }, + [12] = { 76.9, 60, 1, 270 }, + [13] = { 77.4, 59.3, 1, 270 }, + [14] = { 10.7, 91.1, 38, 300 }, + [15] = { 10.8, 91, 38, 300 }, + [16] = { 3.2, 92.6, 5602, 120 }, + [17] = { 2.9, 92.5, 5602, 300 }, + [18] = { 2.7, 92.5, 5602, 300 }, + [19] = { 4.1, 92.1, 5602, 300 }, + [20] = { 3.1, 91.9, 5602, 120 }, + [21] = { 4.1, 91.6, 5602, 300 }, + [22] = { 4.1, 91.5, 5602, 300 }, + [23] = { 3.9, 91.5, 5602, 300 }, + [24] = { 3.9, 91.3, 5602, 300 }, + [25] = { 2.7, 91.3, 5602, 120 }, + [26] = { 4.1, 91.2, 5602, 300 }, + [27] = { 3.5, 91.1, 5602, 300 }, + [28] = { 2, 91, 5602, 300 }, + [29] = { 4, 90.9, 5602, 300 }, + [30] = { 4.1, 90.9, 5602, 300 }, + [31] = { 3.8, 90.9, 5602, 300 }, + [32] = { 3.2, 90.9, 5602, 300 }, + [33] = { 1.5, 90.9, 5602, 120 }, + [34] = { 2.1, 90.7, 5602, 120 }, + [35] = { 2.9, 90.5, 5602, 120 }, + [36] = { 0.9, 90.1, 5602, 120 }, + [37] = { 2.8, 90.1, 5602, 300 }, + [38] = { 0, 90, 5602, 120 }, + [39] = { 2.9, 89.9, 5602, 300 }, + [40] = { 1.5, 89.6, 5602, 120 }, + [41] = { 0.1, 89.3, 5602, 120 }, + [42] = { 0.8, 89.1, 5602, 120 }, + }, + ["lvl"] = "9-10", + }, + [6124] = { + ["coords"] = { + [1] = { 77.9, 62.2, 1, 120 }, + }, + ["lvl"] = "11", + }, + [6125] = { + ["coords"] = { + [1] = { 19.1, 64, 16, 333 }, + [2] = { 19.7, 63.8, 16, 333 }, + [3] = { 20.4, 63.7, 16, 333 }, + [4] = { 19.2, 62.7, 16, 333 }, + [5] = { 20.3, 62.2, 16, 333 }, + [6] = { 19.8, 62.2, 16, 333 }, + [7] = { 19.4, 61.8, 16, 333 }, + [8] = { 21, 61.8, 16, 333 }, + [9] = { 20.5, 61.2, 16, 333 }, + [10] = { 19.9, 60.9, 16, 333 }, + [11] = { 19.2, 60.9, 16, 333 }, + [12] = { 20.6, 60.7, 16, 333 }, + [13] = { 20.2, 60.6, 16, 333 }, + [14] = { 21.3, 60.4, 16, 333 }, + [15] = { 20.9, 59.9, 16, 333 }, + }, + ["lvl"] = "45-46", + }, + [6126] = { + ["coords"] = { + [1] = { 19.1, 64, 16, 333 }, + [2] = { 19.7, 63.8, 16, 333 }, + [3] = { 20.4, 63.7, 16, 333 }, + [4] = { 19.2, 62.7, 16, 333 }, + [5] = { 20.3, 62.2, 16, 333 }, + [6] = { 19.8, 62.2, 16, 333 }, + [7] = { 19.4, 61.8, 16, 333 }, + [8] = { 21, 61.8, 16, 333 }, + [9] = { 20.5, 61.2, 16, 333 }, + [10] = { 19.9, 60.9, 16, 333 }, + [11] = { 19.2, 60.9, 16, 333 }, + [12] = { 20.6, 60.7, 16, 333 }, + [13] = { 20.2, 60.6, 16, 333 }, + [14] = { 21.3, 60.4, 16, 333 }, + [15] = { 20.9, 59.9, 16, 333 }, + }, + ["lvl"] = "45-47", + }, + [6127] = { + ["coords"] = { + [1] = { 19.1, 64, 16, 333 }, + [2] = { 19.7, 63.8, 16, 333 }, + [3] = { 20.4, 63.7, 16, 333 }, + [4] = { 19.2, 62.7, 16, 333 }, + [5] = { 20.3, 62.2, 16, 333 }, + [6] = { 19.8, 62.2, 16, 333 }, + [7] = { 19.4, 61.8, 16, 333 }, + [8] = { 21, 61.8, 16, 333 }, + [9] = { 20.5, 61.2, 16, 333 }, + [10] = { 19.9, 60.9, 16, 333 }, + [11] = { 19.2, 60.9, 16, 333 }, + [12] = { 20.6, 60.7, 16, 333 }, + [13] = { 20.2, 60.6, 16, 333 }, + [14] = { 21.3, 60.4, 16, 333 }, + [15] = { 20.9, 59.9, 16, 333 }, + }, + ["lvl"] = "46-47", + }, + [6128] = { + ["coords"] = { + [1] = { 47.2, 63.6, 141, 120 }, + }, + ["lvl"] = "10", + }, + [6130] = { + ["coords"] = { + [1] = { 39.5, 85.6, 16, 600 }, + [2] = { 42.9, 85.4, 16, 600 }, + [3] = { 42.2, 84.7, 16, 600 }, + [4] = { 41.6, 84.6, 16, 600 }, + [5] = { 42.9, 84.6, 16, 600 }, + [6] = { 40.3, 84.1, 16, 600 }, + [7] = { 39.4, 83.8, 16, 600 }, + [8] = { 42.3, 83.2, 16, 600 }, + [9] = { 43.5, 82.6, 16, 600 }, + [10] = { 42.9, 82.5, 16, 600 }, + [11] = { 43.4, 80.9, 16, 600 }, + [12] = { 41.4, 77.4, 16, 600 }, + [13] = { 41.5, 75.8, 16, 600 }, + [14] = { 42.2, 75.7, 16, 600 }, + }, + ["lvl"] = "52-53", + ["rnk"] = "1", + }, + [6131] = { + ["coords"] = { + [1] = { 39, 85.7, 16, 600 }, + [2] = { 40.4, 85.6, 16, 600 }, + [3] = { 38.9, 84.6, 16, 600 }, + [4] = { 43, 83.6, 16, 600 }, + [5] = { 43.2, 81.5, 16, 600 }, + [6] = { 43, 80.6, 16, 600 }, + [7] = { 43, 79.6, 16, 600 }, + [8] = { 42, 77.9, 16, 600 }, + [9] = { 42.8, 76.6, 16, 600 }, + [10] = { 42.2, 76.4, 16, 600 }, + [11] = { 42.7, 75.6, 16, 600 }, + [12] = { 42.3, 74.9, 16, 600 }, + [13] = { 37.5, 80.7, 16, 600 }, + [14] = { 38.2, 80.7, 16, 600 }, + [15] = { 37, 79.8, 16, 600 }, + [16] = { 36.9, 78.7, 16, 600 }, + [17] = { 41.1, 76.9, 16, 600 }, + [18] = { 40.4, 76.7, 16, 600 }, + [19] = { 39.5, 76.4, 16, 600 }, + [20] = { 36.9, 75.8, 16, 600 }, + [21] = { 38.3, 74.7, 16, 600 }, + [22] = { 36.4, 74.6, 16, 600 }, + [23] = { 37.1, 74.5, 16, 600 }, + [24] = { 37.5, 73.7, 16, 600 }, + [25] = { 36.4, 73.7, 16, 600 }, + [26] = { 36.8, 73.7, 16, 600 }, + [27] = { 38.3, 73.6, 16, 600 }, + [28] = { 36.4, 72.9, 16, 600 }, + }, + ["lvl"] = "51-52", + ["rnk"] = "1", + }, + [6132] = { + ["coords"] = { + [1] = { 43, 90.3, 17, 275 }, + [2] = { 43.3, 90.3, 17, 275 }, + [3] = { 43, 90.2, 17, 275 }, + [4] = { 42.6, 90.1, 17, 275 }, + [5] = { 29.5, 17.9, 400, 275 }, + [6] = { 30.3, 17.7, 400, 275 }, + [7] = { 29.6, 17.7, 400, 275 }, + [8] = { 28.6, 17.3, 400, 275 }, + }, + ["lvl"] = "23-24", + ["rnk"] = "1", + }, + [6139] = { + ["coords"] = { + [1] = { 11.1, 35.5, 400, 300 }, + [2] = { 11.4, 34.5, 400, 300 }, + [3] = { 15.3, 34.1, 400, 300 }, + }, + ["lvl"] = "28-29", + }, + [6141] = { + ["coords"] = { + [1] = { 49.9, 51.5, 406, 300 }, + [2] = { 50.6, 47.3, 406, 300 }, + }, + ["lvl"] = "21-22", + }, + [6142] = { + ["coords"] = { + [1] = { 29.6, 56.4, 141, 30 }, + [2] = { 59.5, 45.4, 1657, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "33", + }, + [6145] = { + ["coords"] = { + [1] = { 66, 93.3, 14, 180 }, + [2] = { 62.9, 90.6, 14, 180 }, + [3] = { 58.2, 81, 14, 180 }, + [4] = { 70.2, 78.9, 14, 180 }, + [5] = { 60, 77.7, 14, 180 }, + [6] = { 38.5, 76.2, 14, 300 }, + [7] = { 38.6, 75.8, 14, 180 }, + [8] = { 61.9, 75.2, 14, 180 }, + [9] = { 65.5, 71.7, 14, 180 }, + [10] = { 62.2, 70.4, 14, 180 }, + [11] = { 65.6, 60.7, 14, 180 }, + [12] = { 63.6, 58.6, 14, 180 }, + [13] = { 65.8, 58, 14, 180 }, + [14] = { 64.2, 55.5, 14, 180 }, + [15] = { 62.9, 53.7, 14, 180 }, + [16] = { 64.8, 51.7, 14, 180 }, + [17] = { 62.2, 49.9, 14, 180 }, + [18] = { 63.5, 48.9, 14, 180 }, + [19] = { 61.2, 48.1, 14, 180 }, + [20] = { 62.8, 47.3, 14, 180 }, + [21] = { 61.3, 44.2, 14, 180 }, + [22] = { 62.9, 43.1, 14, 180 }, + [23] = { 61.7, 39, 14, 180 }, + [24] = { 61.6, 20.7, 14, 180 }, + [25] = { 60.7, 14.4, 14, 180 }, + [26] = { 57.7, 9.8, 14, 180 }, + [27] = { 60.7, 66.4, 15, 300 }, + [28] = { 62.3, 65.7, 15, 300 }, + [29] = { 62.7, 65.6, 15, 300 }, + [30] = { 58.9, 65.4, 15, 300 }, + [31] = { 59.3, 64.4, 15, 300 }, + [32] = { 62.1, 63.3, 15, 300 }, + [33] = { 62.5, 63, 15, 300 }, + [34] = { 59.5, 62.8, 15, 300 }, + [35] = { 56.5, 62.3, 15, 300 }, + [36] = { 60.7, 62, 15, 300 }, + [37] = { 61.1, 61.7, 15, 300 }, + [38] = { 59, 61.7, 15, 300 }, + [39] = { 61.9, 60.9, 15, 300 }, + [40] = { 70.7, 60, 15, 300 }, + [41] = { 68.9, 58.5, 15, 300 }, + [42] = { 69.4, 58, 15, 300 }, + [43] = { 70.1, 56.7, 15, 300 }, + [44] = { 59.8, 53.7, 15, 300 }, + [45] = { 71.9, 49.9, 15, 300 }, + [46] = { 56.6, 49.3, 15, 300 }, + [47] = { 60.8, 46.7, 15, 300 }, + [48] = { 62.5, 46.2, 15, 300 }, + [49] = { 56.2, 45.7, 15, 300 }, + [50] = { 52.2, 45.6, 15, 300 }, + [51] = { 56.8, 45.4, 15, 300 }, + [52] = { 57.2, 45.1, 15, 300 }, + [53] = { 57.5, 44.7, 15, 300 }, + [54] = { 52.2, 44.5, 15, 300 }, + [55] = { 55.1, 42.4, 15, 300 }, + [56] = { 49.5, 41.6, 15, 300 }, + [57] = { 66.3, 41, 15, 300 }, + [58] = { 53.2, 39.5, 15, 300 }, + [59] = { 64.6, 39.1, 15, 300 }, + [60] = { 52.7, 38.6, 15, 360 }, + [61] = { 64.6, 38.1, 15, 300 }, + [62] = { 48.2, 36.5, 15, 300 }, + [63] = { 50, 35.7, 15, 300 }, + [64] = { 47.1, 31.9, 15, 300 }, + [65] = { 62.9, 31.8, 15, 300 }, + [66] = { 63.6, 24.3, 15, 300 }, + [67] = { 62.4, 22.3, 15, 300 }, + [68] = { 62.5, 21.8, 15, 300 }, + [69] = { 61.3, 16.1, 15, 300 }, + [70] = { 61.6, 15.3, 15, 300 }, + [71] = { 59.9, 13.8, 15, 300 }, + [72] = { 59.6, 13.8, 15, 300 }, + [73] = { 56.5, 12.9, 15, 300 }, + [74] = { 56.8, 12.5, 15, 300 }, + [75] = { 62, 10.8, 15, 300 }, + [76] = { 65, 60.4, 17, 300 }, + [77] = { 67.6, 59.5, 17, 300 }, + [78] = { 63.5, 54.2, 17, 300 }, + [79] = { 63.3, 52.7, 17, 300 }, + [80] = { 63.8, 50.4, 17, 300 }, + [81] = { 79.7, 45.8, 17, 180 }, + [82] = { 65.7, 44.6, 17, 300 }, + [83] = { 78.1, 44.4, 17, 180 }, + [84] = { 65.2, 40.9, 17, 300 }, + [85] = { 63.9, 40.3, 17, 300 }, + [86] = { 64.9, 38.4, 17, 300 }, + [87] = { 65.3, 36.9, 17, 300 }, + [88] = { 65.4, 36.7, 17, 180 }, + [89] = { 30.4, 88, 148, 300 }, + [90] = { 31.9, 85.4, 148, 300 }, + [91] = { 31.9, 81.1, 148, 300 }, + [92] = { 34.8, 77.4, 148, 300 }, + [93] = { 30.4, 74, 148, 300 }, + [94] = { 33.5, 66, 148, 300 }, + [95] = { 32.1, 62.9, 148, 300 }, + [96] = { 32.4, 58.3, 148, 300 }, + [97] = { 31.5, 55.5, 148, 300 }, + [98] = { 28.9, 52.9, 148, 300 }, + [99] = { 29, 48.9, 148, 300 }, + [100] = { 31.6, 43.9, 148, 300 }, + [101] = { 29.1, 43.5, 148, 300 }, + [102] = { 34.5, 42.7, 148, 300 }, + [103] = { 33.4, 39.5, 148, 300 }, + [104] = { 29.8, 38.3, 148, 300 }, + [105] = { 35, 35.4, 148, 300 }, + [106] = { 33.6, 34.7, 148, 300 }, + [107] = { 33.3, 34.6, 148, 300 }, + [108] = { 34, 29.4, 148, 300 }, + [109] = { 39, 28.2, 148, 300 }, + [110] = { 38.6, 27.9, 148, 300 }, + [111] = { 35.9, 26.6, 148, 300 }, + [112] = { 37.2, 25.1, 148, 300 }, + [113] = { 40.7, 22.7, 148, 300 }, + [114] = { 39.8, 22.1, 148, 300 }, + [115] = { 38.5, 21.8, 148, 300 }, + [116] = { 43.2, 18.8, 148, 300 }, + [117] = { 41, 18, 148, 300 }, + [118] = { 53.8, 17, 148, 300 }, + [119] = { 44.9, 15.6, 148, 300 }, + [120] = { 36.4, 54.3, 331, 300 }, + [121] = { 36.6, 53.4, 331, 300 }, + [122] = { 33.5, 49.1, 331, 300 }, + [123] = { 38.3, 48.3, 331, 300 }, + [124] = { 36.1, 47.3, 331, 300 }, + [125] = { 35.1, 47.2, 331, 300 }, + [126] = { 9.3, 33, 331, 300 }, + [127] = { 23.5, 79, 405, 300 }, + [128] = { 33.7, 35, 405, 300 }, + [129] = { 32.7, 28.4, 405, 300 }, + [130] = { 32.2, 24.6, 405, 300 }, + [131] = { 35.4, 21, 405, 300 }, + [132] = { 41.1, 19, 405, 300 }, + [133] = { 28.3, 12.5, 405, 300 }, + [134] = { 63.2, 47.7, 406, 300 }, + [135] = { 64.4, 47.4, 406, 300 }, + [136] = { 65.5, 47, 406, 300 }, + [137] = { 62, 46.1, 406, 300 }, + [138] = { 28.9, 87.2, 2100, 300 }, + [139] = { 30.7, 86.4, 2100, 300 }, + [140] = { 36.5, 84.4, 2100, 300 }, + [141] = { 26.8, 84, 2100, 300 }, + [142] = { 31, 83.9, 2100, 300 }, + [143] = { 26.8, 80.7, 2100, 300 }, + [144] = { 27.7, 80.2, 2100, 300 }, + [145] = { 21.7, 54.8, 2100, 300 }, + [146] = { 20.6, 54.5, 2100, 300 }, + }, + ["lvl"] = "1", + }, + [6146] = { + ["coords"] = { + [1] = { 55.4, 89.9, 16, 600 }, + [2] = { 63.8, 87.3, 16, 600 }, + [3] = { 59.3, 83.4, 16, 600 }, + [4] = { 48.8, 83.4, 16, 600 }, + [5] = { 58.1, 82, 16, 600 }, + [6] = { 52.4, 81.7, 16, 600 }, + [7] = { 60.3, 81.7, 16, 600 }, + [8] = { 55.4, 81.3, 16, 600 }, + [9] = { 56.7, 79.8, 16, 600 }, + [10] = { 48.7, 79.4, 16, 600 }, + [11] = { 48.5, 75.7, 16, 600 }, + [12] = { 48.5, 70.8, 16, 600 }, + [13] = { 74.6, 26.9, 16, 600 }, + [14] = { 75.9, 20.3, 16, 600 }, + [15] = { 77.2, 18.5, 16, 600 }, + [16] = { 74.4, 18.5, 16, 600 }, + [17] = { 78.2, 17.1, 16, 600 }, + [18] = { 73.1, 16.6, 16, 600 }, + [19] = { 75.6, 16.2, 16, 600 }, + [20] = { 80, 14.4, 16, 600 }, + [21] = { 73.9, 14.4, 16, 600 }, + }, + ["lvl"] = "54-55", + ["rnk"] = "1", + }, + [6147] = { + ["coords"] = { + [1] = { 54.4, 90.1, 16, 600 }, + [2] = { 58.1, 89.4, 16, 600 }, + [3] = { 56.7, 87.4, 16, 600 }, + [4] = { 48.6, 87.2, 16, 600 }, + [5] = { 43.5, 87.2, 16, 600 }, + [6] = { 62.4, 86.8, 16, 600 }, + [7] = { 57.7, 85.5, 16, 600 }, + [8] = { 49.8, 85.4, 16, 600 }, + [9] = { 54.1, 83.3, 16, 600 }, + [10] = { 56.5, 83.1, 16, 600 }, + [11] = { 50, 81.7, 16, 600 }, + [12] = { 54.1, 81.1, 16, 600 }, + [13] = { 52.7, 79.3, 16, 600 }, + [14] = { 50.1, 77.7, 16, 600 }, + [15] = { 54.5, 74.4, 16, 600 }, + [16] = { 48.3, 73.9, 16, 25 }, + [17] = { 70.3, 24.2, 16, 600 }, + [18] = { 82.5, 22.5, 16, 600 }, + [19] = { 70.7, 20.5, 16, 600 }, + [20] = { 73.4, 20.4, 16, 600 }, + [21] = { 71.8, 18.8, 16, 600 }, + [22] = { 77.3, 14.8, 16, 600 }, + [23] = { 75.2, 13.9, 16, 600 }, + [24] = { 78.5, 13.4, 16, 600 }, + [25] = { 65.9, 12.9, 16, 600 }, + [26] = { 70.5, 12.5, 16, 600 }, + [27] = { 72, 12.4, 16, 600 }, + }, + ["lvl"] = "53-54", + ["rnk"] = "1", + }, + [6148] = { + ["coords"] = { + [1] = { 60.1, 89.7, 16, 600 }, + [2] = { 52.7, 85.4, 16, 600 }, + [3] = { 61.7, 83.6, 16, 600 }, + [4] = { 59, 79.4, 16, 600 }, + [5] = { 47.5, 78.9, 16, 25 }, + [6] = { 57.9, 78, 16, 600 }, + [7] = { 47.2, 77.5, 16, 600 }, + [8] = { 52.8, 75.4, 16, 600 }, + [9] = { 46.2, 71.6, 16, 600 }, + [10] = { 45.6, 69.1, 16, 600 }, + [11] = { 19.2, 66.8, 16, 600 }, + [12] = { 26.4, 54, 16, 600 }, + [13] = { 73.2, 24.1, 16, 600 }, + [14] = { 74.3, 23.3, 16, 600 }, + [15] = { 76.6, 22.1, 16, 600 }, + [16] = { 83.7, 20.5, 16, 600 }, + [17] = { 85, 18.7, 16, 600 }, + [18] = { 79.7, 18.6, 16, 600 }, + [19] = { 82.2, 18.3, 16, 600 }, + [20] = { 83.5, 16.7, 16, 600 }, + [21] = { 72.3, 14.4, 16, 600 }, + [22] = { 68.2, 12.5, 16, 600 }, + [23] = { 73.7, 11.7, 16, 600 }, + }, + ["lvl"] = "52-53", + ["rnk"] = "1", + }, + [6166] = { + ["coords"] = { + [1] = { 26.6, 44.7, 44, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "24", + }, + [6167] = { + ["coords"] = { + [1] = { 39, 73.7, 406, 300 }, + }, + ["lvl"] = "28", + }, + [6168] = { + ["coords"] = { + [1] = { 64.8, 42.1, 491, 604800 }, + }, + ["lvl"] = "28", + ["rnk"] = "1", + }, + [6169] = { + ["coords"] = { + [1] = { 24.9, 30.2, 1, 300 }, + [2] = { 79.4, 16.1, 721, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "43-45", + }, + [6171] = { + ["coords"] = { + [1] = { 50.5, 47.5, 1519, 490 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [6173] = { + ["coords"] = { + [1] = { 49.5, 44.9, 1519, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "9", + }, + [6174] = { + ["coords"] = { + [1] = { 63.8, 72.2, 1519, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [6175] = { + ["coords"] = { + [1] = { 23.3, 61.9, 1537, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "8", + }, + [6177] = { + ["coords"] = { + [1] = { 78.3, 58.1, 1, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "8", + }, + [6178] = { + ["coords"] = { + [1] = { 23.5, 8.3, 1537, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [6181] = { + ["coords"] = { + [1] = { 52.5, 36.9, 1, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [6183] = "_", + [6185] = { + ["coords"] = { + [1] = { 32.4, 45.6, 16, 333 }, + [2] = { 32, 45.5, 16, 333 }, + [3] = { 32.2, 45.4, 16, 333 }, + [4] = { 32.5, 45.2, 16, 333 }, + [5] = { 33.7, 43.2, 16, 333 }, + [6] = { 34.3, 41.2, 16, 333 }, + [7] = { 34.4, 40.8, 16, 333 }, + [8] = { 34.8, 40.7, 16, 333 }, + [9] = { 34.6, 40.6, 16, 333 }, + [10] = { 34.7, 40.3, 16, 333 }, + [11] = { 35.5, 38, 16, 333 }, + [12] = { 35.7, 37.3, 16, 333 }, + [13] = { 35.6, 35.9, 16, 333 }, + [14] = { 35.6, 35.7, 16, 333 }, + [15] = { 37, 35.3, 16, 333 }, + [16] = { 31.1, 46.2, 16, 333 }, + [17] = { 32.3, 46.1, 16, 333 }, + [18] = { 31.7, 46.1, 16, 333 }, + [19] = { 33, 46.1, 16, 333 }, + [20] = { 31.6, 45.3, 16, 333 }, + [21] = { 33, 44.9, 16, 333 }, + [22] = { 31.4, 44.8, 16, 333 }, + [23] = { 33, 44.1, 16, 333 }, + [24] = { 31.4, 43.5, 16, 333 }, + [25] = { 31.4, 43.3, 16, 333 }, + [26] = { 34.3, 43.2, 16, 333 }, + [27] = { 32.6, 42.9, 16, 333 }, + [28] = { 33.6, 42.2, 16, 333 }, + [29] = { 34.3, 42.1, 16, 333 }, + [30] = { 35, 42, 16, 333 }, + [31] = { 35, 41.2, 16, 333 }, + [32] = { 35.6, 41, 16, 333 }, + [33] = { 35, 40.2, 16, 333 }, + [34] = { 34.9, 39.1, 16, 333 }, + [35] = { 37.6, 37.2, 16, 333 }, + [36] = { 36.4, 36.1, 16, 333 }, + }, + ["lvl"] = "47-48", + }, + [6187] = { + ["coords"] = { + [1] = { 38.1, 33.6, 16, 300 }, + [2] = { 38.1, 32.7, 16, 300 }, + [3] = { 38.3, 32.5, 16, 333 }, + [4] = { 38.5, 32.4, 16, 333 }, + [5] = { 48.4, 31.1, 16, 333 }, + [6] = { 48.3, 30.7, 16, 333 }, + [7] = { 48.1, 30.4, 16, 333 }, + [8] = { 48.6, 30.4, 16, 333 }, + [9] = { 48.3, 30.3, 16, 333 }, + [10] = { 38.6, 30.2, 16, 300 }, + [11] = { 36.3, 29.9, 16, 120 }, + [12] = { 44.7, 26.6, 16, 333 }, + [13] = { 44.2, 26.6, 16, 333 }, + [14] = { 38.1, 26.5, 16, 300 }, + [15] = { 44.5, 26.1, 16, 333 }, + [16] = { 39.7, 23.9, 16, 300 }, + [17] = { 40.9, 22.6, 16, 300 }, + [18] = { 45.4, 22.5, 16, 333 }, + [19] = { 45, 22.1, 16, 333 }, + [20] = { 45.7, 22, 16, 333 }, + [21] = { 45.2, 22, 16, 333 }, + [22] = { 45.5, 22, 16, 333 }, + [23] = { 39.1, 21.2, 16, 300 }, + [24] = { 41.6, 20.4, 16, 333 }, + [25] = { 41.3, 20.2, 16, 333 }, + [26] = { 41.5, 19.5, 16, 333 }, + [27] = { 41.7, 19.3, 16, 333 }, + [28] = { 41.8, 18.9, 16, 333 }, + [29] = { 43.2, 18, 16, 333 }, + [30] = { 66.7, 86.9, 618, 300 }, + [31] = { 66.6, 86.8, 618, 300 }, + [32] = { 68.9, 86.3, 618, 300 }, + [33] = { 66.8, 85.7, 618, 300 }, + [34] = { 66.6, 84.9, 618, 300 }, + [35] = { 69.6, 82.6, 618, 300 }, + [36] = { 71.4, 82, 618, 333 }, + [37] = { 71.2, 81.8, 618, 333 }, + [38] = { 71.3, 81.3, 618, 333 }, + }, + ["lvl"] = "49-50", + }, + [6188] = { + ["coords"] = { + [1] = { 38, 32.7, 16, 300 }, + [2] = { 48, 32.4, 16, 333 }, + [3] = { 38.3, 32.4, 16, 333 }, + [4] = { 48, 31.6, 16, 333 }, + [5] = { 48.7, 31.4, 16, 333 }, + [6] = { 47.5, 31.3, 16, 333 }, + [7] = { 47.6, 30.3, 16, 333 }, + [8] = { 35.4, 30.1, 16, 300 }, + [9] = { 38.8, 29.9, 16, 300 }, + [10] = { 35.7, 29.5, 16, 300 }, + [11] = { 46.8, 29.4, 16, 333 }, + [12] = { 47.5, 29.4, 16, 333 }, + [13] = { 48.1, 29.3, 16, 333 }, + [14] = { 48.7, 29.3, 16, 333 }, + [15] = { 46.2, 29.3, 16, 333 }, + [16] = { 46, 28.4, 16, 333 }, + [17] = { 45.5, 28.4, 16, 333 }, + [18] = { 46.7, 28.3, 16, 333 }, + [19] = { 36.6, 27.5, 16, 120 }, + [20] = { 43.6, 27.5, 16, 333 }, + [21] = { 44.9, 27.4, 16, 333 }, + [22] = { 44.2, 27.2, 16, 333 }, + [23] = { 37.6, 27.2, 16, 300 }, + [24] = { 45.3, 27.1, 16, 333 }, + [25] = { 43.5, 26.4, 16, 333 }, + [26] = { 44.4, 26.3, 16, 333 }, + [27] = { 45.3, 26.2, 16, 333 }, + [28] = { 38.1, 26.1, 16, 300 }, + [29] = { 44.9, 25.5, 16, 333 }, + [30] = { 44.1, 25.4, 16, 333 }, + [31] = { 43.5, 25.4, 16, 333 }, + [32] = { 45.5, 25.4, 16, 333 }, + [33] = { 39.4, 25.3, 16, 300 }, + [34] = { 45.7, 24.5, 16, 333 }, + [35] = { 44.2, 24.4, 16, 333 }, + [36] = { 39.7, 23.6, 16, 120 }, + [37] = { 44.8, 23.4, 16, 333 }, + [38] = { 44.1, 23.4, 16, 333 }, + [39] = { 45.6, 23.3, 16, 333 }, + [40] = { 44.2, 22.6, 16, 333 }, + [41] = { 46.1, 22.5, 16, 333 }, + [42] = { 44.8, 22.5, 16, 333 }, + [43] = { 41.5, 21.8, 16, 333 }, + [44] = { 41.4, 21.8, 16, 333 }, + [45] = { 38.7, 21.6, 16, 300 }, + [46] = { 44.2, 21.5, 16, 333 }, + [47] = { 46.2, 21.4, 16, 333 }, + [48] = { 42.3, 21.4, 16, 333 }, + [49] = { 44.8, 21.3, 16, 333 }, + [50] = { 45.3, 21.2, 16, 333 }, + [51] = { 38.9, 20.6, 16, 300 }, + [52] = { 42.8, 20.6, 16, 333 }, + [53] = { 44.1, 20.5, 16, 333 }, + [54] = { 42.1, 20.4, 16, 333 }, + [55] = { 40.9, 20.4, 16, 333 }, + [56] = { 40.1, 19.6, 16, 333 }, + [57] = { 40.8, 19.6, 16, 333 }, + [58] = { 44.1, 19.5, 16, 333 }, + [59] = { 42.9, 19.5, 16, 333 }, + [60] = { 42.1, 19.5, 16, 333 }, + [61] = { 42.2, 18.7, 16, 333 }, + [62] = { 44.2, 18.6, 16, 333 }, + [63] = { 43.5, 18.5, 16, 333 }, + [64] = { 42.8, 18.4, 16, 333 }, + [65] = { 67, 88.9, 618, 300 }, + [66] = { 67.2, 88.5, 618, 300 }, + [67] = { 67.9, 87.1, 618, 120 }, + [68] = { 68.6, 86.9, 618, 300 }, + [69] = { 66.4, 86.6, 618, 300 }, + [70] = { 68.9, 86.1, 618, 300 }, + [71] = { 66.5, 85.4, 618, 300 }, + [72] = { 70, 84.3, 618, 120 }, + [73] = { 69.4, 82.9, 618, 300 }, + [74] = { 69.5, 82.2, 618, 300 }, + [75] = { 70.9, 82, 618, 333 }, + [76] = { 70.4, 81.5, 618, 333 }, + [77] = { 70.8, 81.4, 618, 333 }, + [78] = { 38.3, 32.5, 16, 333 }, + [79] = { 38.5, 32.4, 16, 333 }, + [80] = { 48.4, 31.1, 16, 333 }, + [81] = { 48.3, 30.7, 16, 333 }, + [82] = { 48.1, 30.4, 16, 333 }, + [83] = { 48.6, 30.4, 16, 333 }, + [84] = { 48.3, 30.3, 16, 333 }, + [85] = { 44.7, 26.6, 16, 333 }, + [86] = { 44.2, 26.6, 16, 333 }, + [87] = { 44.5, 26.1, 16, 333 }, + [88] = { 45.4, 22.5, 16, 333 }, + [89] = { 45, 22.1, 16, 333 }, + [90] = { 45.7, 22, 16, 333 }, + [91] = { 45.2, 22, 16, 333 }, + [92] = { 45.5, 22, 16, 333 }, + [93] = { 41.6, 20.4, 16, 333 }, + [94] = { 41.3, 20.2, 16, 333 }, + [95] = { 41.5, 19.5, 16, 333 }, + [96] = { 41.7, 19.3, 16, 333 }, + [97] = { 41.8, 18.9, 16, 333 }, + [98] = { 43.2, 18, 16, 333 }, + [99] = { 71.4, 82, 618, 333 }, + [100] = { 71.2, 81.8, 618, 333 }, + [101] = { 71.3, 81.3, 618, 333 }, + }, + ["lvl"] = "50-51", + }, + [6189] = { + ["coords"] = { + [1] = { 39.2, 33.7, 16, 300 }, + [2] = { 37.5, 33.2, 16, 300 }, + [3] = { 38.5, 33, 16, 300 }, + [4] = { 38.7, 29.8, 16, 300 }, + [5] = { 36.3, 29.3, 16, 300 }, + [6] = { 35.4, 29.2, 16, 300 }, + [7] = { 35.6, 29, 16, 300 }, + [8] = { 36.6, 28.5, 16, 300 }, + [9] = { 36.5, 27.5, 16, 300 }, + [10] = { 35.5, 25.7, 16, 300 }, + [11] = { 39.6, 23.5, 16, 300 }, + [12] = { 41.4, 22.3, 16, 300 }, + [13] = { 40.1, 21.4, 16, 300 }, + [14] = { 67.6, 88.4, 618, 300 }, + [15] = { 67, 88.3, 618, 300 }, + [16] = { 67.1, 88.2, 618, 300 }, + [17] = { 67.9, 87.8, 618, 300 }, + [18] = { 67.8, 87.1, 618, 300 }, + [19] = { 66.5, 86.5, 618, 300 }, + [20] = { 67.1, 85.8, 618, 300 }, + [21] = { 66.4, 84.7, 618, 300 }, + [22] = { 66.6, 84.7, 618, 300 }, + [23] = { 70, 84.2, 618, 300 }, + [24] = { 70.4, 82.7, 618, 300 }, + [25] = { 48, 32.4, 16, 333 }, + [26] = { 48, 31.6, 16, 333 }, + [27] = { 48.7, 31.4, 16, 333 }, + [28] = { 47.5, 31.3, 16, 333 }, + [29] = { 47.6, 30.3, 16, 333 }, + [30] = { 46.8, 29.4, 16, 333 }, + [31] = { 47.5, 29.4, 16, 333 }, + [32] = { 48.1, 29.3, 16, 333 }, + [33] = { 48.7, 29.3, 16, 333 }, + [34] = { 46.2, 29.3, 16, 333 }, + [35] = { 46, 28.4, 16, 333 }, + [36] = { 45.5, 28.4, 16, 333 }, + [37] = { 46.7, 28.3, 16, 333 }, + [38] = { 43.6, 27.5, 16, 333 }, + [39] = { 44.9, 27.4, 16, 333 }, + [40] = { 44.2, 27.2, 16, 333 }, + [41] = { 45.3, 27.1, 16, 333 }, + [42] = { 45.3, 26.2, 16, 333 }, + [43] = { 44.9, 25.5, 16, 333 }, + [44] = { 45.5, 25.4, 16, 333 }, + [45] = { 45.7, 24.5, 16, 333 }, + [46] = { 44.2, 24.4, 16, 333 }, + [47] = { 44.8, 23.4, 16, 333 }, + [48] = { 44.1, 23.4, 16, 333 }, + [49] = { 45.6, 23.3, 16, 333 }, + [50] = { 44.2, 22.6, 16, 333 }, + [51] = { 46.1, 22.5, 16, 333 }, + [52] = { 44.8, 22.5, 16, 333 }, + [53] = { 41.5, 21.8, 16, 333 }, + [54] = { 44.2, 21.5, 16, 333 }, + [55] = { 46.2, 21.4, 16, 333 }, + [56] = { 42.3, 21.4, 16, 333 }, + [57] = { 44.8, 21.3, 16, 333 }, + [58] = { 42.8, 20.6, 16, 333 }, + [59] = { 44.1, 20.5, 16, 333 }, + [60] = { 42.1, 20.4, 16, 333 }, + [61] = { 40.9, 20.4, 16, 333 }, + [62] = { 40.1, 19.6, 16, 333 }, + [63] = { 40.8, 19.6, 16, 333 }, + [64] = { 44.1, 19.5, 16, 333 }, + [65] = { 42.9, 19.5, 16, 333 }, + [66] = { 42.1, 19.5, 16, 333 }, + [67] = { 42.2, 18.7, 16, 333 }, + [68] = { 44.2, 18.6, 16, 333 }, + [69] = { 43.5, 18.5, 16, 333 }, + [70] = { 42.8, 18.4, 16, 333 }, + [71] = { 70.9, 82, 618, 333 }, + [72] = { 70.4, 81.5, 618, 333 }, + [73] = { 70.8, 81.4, 618, 333 }, + }, + ["lvl"] = "51-52", + }, + [6190] = { + ["coords"] = { + [1] = { 35.7, 62.7, 16, 333 }, + [2] = { 34.2, 62, 16, 333 }, + [3] = { 35.3, 61.6, 16, 333 }, + [4] = { 25.8, 61.6, 16, 333 }, + [5] = { 31.1, 61, 16, 333 }, + [6] = { 33.5, 60.8, 16, 333 }, + [7] = { 32.5, 60.7, 16, 333 }, + [8] = { 30, 60.5, 16, 333 }, + [9] = { 33.2, 60.1, 16, 333 }, + [10] = { 23.8, 60, 16, 333 }, + [11] = { 27.7, 59.8, 16, 333 }, + [12] = { 28.9, 59.8, 16, 333 }, + [13] = { 33.9, 59.5, 16, 333 }, + [14] = { 31.9, 59.2, 16, 333 }, + [15] = { 24.5, 59, 16, 333 }, + [16] = { 34.1, 58.1, 16, 333 }, + [17] = { 29, 58.1, 16, 333 }, + [18] = { 33.1, 57.6, 16, 333 }, + [19] = { 26.1, 57.2, 16, 333 }, + [20] = { 33.8, 56.9, 16, 333 }, + [21] = { 27.4, 56.2, 16, 333 }, + [22] = { 26.4, 56.1, 16, 333 }, + [23] = { 31.6, 56, 16, 333 }, + [24] = { 33.6, 55.6, 16, 333 }, + [25] = { 31, 55.1, 16, 333 }, + [26] = { 25.6, 54.9, 16, 333 }, + [27] = { 27.1, 54.7, 16, 333 }, + [28] = { 30.3, 54.4, 16, 333 }, + [29] = { 26.3, 54.4, 16, 333 }, + [30] = { 31.7, 53.7, 16, 333 }, + [31] = { 29.2, 53.7, 16, 333 }, + [32] = { 29.8, 53, 16, 333 }, + [33] = { 31.1, 52.9, 16, 333 }, + [34] = { 28.5, 52.8, 16, 333 }, + [35] = { 32.4, 52.7, 16, 333 }, + [36] = { 30.5, 52.3, 16, 333 }, + [37] = { 25.3, 52.1, 16, 333 }, + [38] = { 29.5, 52, 16, 333 }, + [39] = { 31.7, 51.9, 16, 333 }, + [40] = { 25.7, 50.9, 16, 333 }, + [41] = { 32.5, 50.9, 16, 333 }, + [42] = { 34.5, 50.4, 16, 333 }, + [43] = { 26.4, 50, 16, 333 }, + [44] = { 32.9, 49.8, 16, 333 }, + [45] = { 29, 49.8, 16, 333 }, + [46] = { 33.8, 49.6, 16, 333 }, + [47] = { 35, 49.2, 16, 333 }, + [48] = { 36.6, 46.2, 16, 333 }, + [49] = { 37.5, 45.8, 16, 333 }, + [50] = { 38.9, 44.7, 16, 333 }, + [51] = { 38.2, 42.8, 16, 333 }, + }, + ["lvl"] = "46-47", + }, + [6193] = { + ["coords"] = { + [1] = { 35.7, 62.7, 16, 333 }, + [2] = { 34.2, 62, 16, 333 }, + [3] = { 35.3, 61.6, 16, 333 }, + [4] = { 25.8, 61.6, 16, 333 }, + [5] = { 31.1, 61, 16, 333 }, + [6] = { 33.5, 60.8, 16, 333 }, + [7] = { 32.5, 60.7, 16, 333 }, + [8] = { 30, 60.5, 16, 333 }, + [9] = { 33.2, 60.1, 16, 333 }, + [10] = { 23.8, 60, 16, 333 }, + [11] = { 27.7, 59.8, 16, 333 }, + [12] = { 28.9, 59.8, 16, 333 }, + [13] = { 33.9, 59.5, 16, 333 }, + [14] = { 31.9, 59.2, 16, 333 }, + [15] = { 24.5, 59, 16, 333 }, + [16] = { 34.1, 58.1, 16, 333 }, + [17] = { 29, 58.1, 16, 333 }, + [18] = { 33.1, 57.6, 16, 333 }, + [19] = { 26.1, 57.2, 16, 333 }, + [20] = { 33.8, 56.9, 16, 333 }, + [21] = { 27.4, 56.2, 16, 333 }, + [22] = { 26.4, 56.1, 16, 333 }, + [23] = { 31.6, 56, 16, 333 }, + [24] = { 33.6, 55.6, 16, 333 }, + [25] = { 31, 55.1, 16, 333 }, + [26] = { 25.6, 54.9, 16, 333 }, + [27] = { 27.1, 54.7, 16, 333 }, + [28] = { 30.3, 54.4, 16, 333 }, + [29] = { 26.3, 54.4, 16, 333 }, + [30] = { 31.7, 53.7, 16, 333 }, + [31] = { 29.2, 53.7, 16, 333 }, + [32] = { 29.8, 53, 16, 333 }, + [33] = { 31.1, 52.9, 16, 333 }, + [34] = { 28.5, 52.8, 16, 333 }, + [35] = { 32.4, 52.7, 16, 333 }, + [36] = { 30.5, 52.3, 16, 333 }, + [37] = { 25.3, 52.1, 16, 333 }, + [38] = { 29.5, 52, 16, 333 }, + [39] = { 31.7, 51.9, 16, 333 }, + [40] = { 25.7, 50.9, 16, 333 }, + [41] = { 32.5, 50.9, 16, 333 }, + [42] = { 34.5, 50.4, 16, 333 }, + [43] = { 26.4, 50, 16, 333 }, + [44] = { 32.9, 49.8, 16, 333 }, + [45] = { 29, 49.8, 16, 333 }, + [46] = { 33.8, 49.6, 16, 333 }, + [47] = { 35, 49.2, 16, 333 }, + [48] = { 36.6, 46.2, 16, 333 }, + [49] = { 37.5, 45.8, 16, 333 }, + [50] = { 38.9, 44.7, 16, 333 }, + [51] = { 38.2, 42.8, 16, 333 }, + }, + ["lvl"] = "47-48", + }, + [6194] = { + ["coords"] = { + [1] = { 43.6, 64.7, 16, 333 }, + [2] = { 40.2, 64, 16, 333 }, + [3] = { 41.6, 63.9, 16, 333 }, + [4] = { 44, 63.7, 16, 333 }, + [5] = { 42.6, 63.6, 16, 333 }, + [6] = { 39.3, 62.7, 16, 333 }, + [7] = { 37.5, 61.9, 16, 333 }, + [8] = { 40.2, 61.8, 16, 333 }, + [9] = { 41.8, 61.6, 16, 333 }, + [10] = { 38.9, 61.6, 16, 333 }, + [11] = { 37.1, 61.4, 16, 333 }, + [12] = { 39.7, 61.2, 16, 333 }, + [13] = { 38.2, 60.9, 16, 333 }, + [14] = { 39, 59.8, 16, 333 }, + [15] = { 36.4, 59.8, 16, 333 }, + [16] = { 37.1, 59, 16, 333 }, + [17] = { 35.5, 58.8, 16, 333 }, + [18] = { 39.8, 58.6, 16, 333 }, + [19] = { 36.4, 57.9, 16, 333 }, + [20] = { 39, 57.8, 16, 333 }, + [21] = { 38.1, 57.2, 16, 333 }, + [22] = { 35.7, 57, 16, 333 }, + [23] = { 39.6, 57, 16, 333 }, + [24] = { 36.7, 56.7, 16, 333 }, + [25] = { 35, 56.2, 16, 333 }, + [26] = { 37.6, 56.1, 16, 333 }, + [27] = { 40.2, 56, 16, 333 }, + [28] = { 39, 55.8, 16, 333 }, + [29] = { 41.1, 55.8, 16, 333 }, + [30] = { 36.4, 55.7, 16, 333 }, + [31] = { 36.9, 55.3, 16, 333 }, + [32] = { 41.1, 55.3, 16, 333 }, + [33] = { 35.5, 55.1, 16, 333 }, + [34] = { 34.4, 55.1, 16, 333 }, + [35] = { 39.5, 54.9, 16, 333 }, + [36] = { 38.2, 54.7, 16, 333 }, + [37] = { 37.7, 54.4, 16, 333 }, + [38] = { 41.1, 54.3, 16, 333 }, + [39] = { 38.8, 54, 16, 333 }, + [40] = { 40.9, 54, 16, 333 }, + [41] = { 36, 54, 16, 333 }, + [42] = { 35.2, 53.9, 16, 333 }, + [43] = { 41.4, 53.7, 16, 333 }, + [44] = { 38.1, 53, 16, 333 }, + [45] = { 40.5, 53, 16, 333 }, + [46] = { 35.6, 52.9, 16, 333 }, + [47] = { 38.8, 52.3, 16, 333 }, + [48] = { 41.7, 52.1, 16, 333 }, + [49] = { 40.5, 52.1, 16, 333 }, + [50] = { 35, 52, 16, 333 }, + [51] = { 36.1, 52, 16, 333 }, + [52] = { 37.6, 51.9, 16, 333 }, + [53] = { 41.1, 51.8, 16, 333 }, + [54] = { 37, 51.1, 16, 333 }, + [55] = { 41, 51, 16, 333 }, + [56] = { 38.2, 50.9, 16, 333 }, + [57] = { 35.4, 50.8, 16, 333 }, + [58] = { 39.9, 50.8, 16, 333 }, + [59] = { 41, 50.4, 16, 333 }, + [60] = { 36.1, 50.1, 16, 333 }, + [61] = { 41.6, 49.9, 16, 333 }, + [62] = { 37.9, 49.8, 16, 333 }, + [63] = { 40.3, 49.7, 16, 333 }, + [64] = { 40.8, 49.2, 16, 333 }, + [65] = { 39.5, 49.1, 16, 333 }, + [66] = { 38.2, 49.1, 16, 333 }, + [67] = { 37, 49, 16, 333 }, + [68] = { 37.7, 48.4, 16, 333 }, + [69] = { 36.3, 48, 16, 333 }, + [70] = { 39.9, 48, 16, 333 }, + [71] = { 38.9, 47.9, 16, 333 }, + [72] = { 39.9, 47.2, 16, 333 }, + [73] = { 41.6, 46.4, 16, 333 }, + [74] = { 40.4, 46.2, 16, 333 }, + [75] = { 39, 46.2, 16, 333 }, + }, + ["lvl"] = "48-49", + }, + [6195] = { + ["coords"] = { + [1] = { 49.4, 67.7, 16, 333 }, + [2] = { 45.9, 67.1, 16, 333 }, + [3] = { 50.2, 66.7, 16, 333 }, + [4] = { 48.8, 66.7, 16, 333 }, + [5] = { 49.4, 65.8, 16, 333 }, + [6] = { 48.2, 65.7, 16, 333 }, + [7] = { 46.5, 65.7, 16, 333 }, + [8] = { 50.1, 65, 16, 333 }, + [9] = { 47.5, 64.9, 16, 333 }, + [10] = { 48.6, 64.5, 16, 333 }, + [11] = { 47, 64, 16, 333 }, + [12] = { 48.1, 63.7, 16, 333 }, + [13] = { 49.5, 63.7, 16, 333 }, + [14] = { 46.2, 63.2, 16, 333 }, + [15] = { 47.4, 63.1, 16, 333 }, + [16] = { 48.7, 62.7, 16, 333 }, + [17] = { 50.2, 62.6, 16, 333 }, + [18] = { 45.2, 62.1, 16, 333 }, + [19] = { 48.2, 62, 16, 333 }, + [20] = { 43.1, 62, 16, 333 }, + [21] = { 46.8, 61.8, 16, 333 }, + [22] = { 44, 61.5, 16, 333 }, + [23] = { 46.1, 60.9, 16, 333 }, + [24] = { 47.5, 60.9, 16, 333 }, + [25] = { 44.9, 60.7, 16, 333 }, + [26] = { 49.5, 60.2, 16, 333 }, + [27] = { 45.4, 60.1, 16, 333 }, + [28] = { 44.2, 60, 16, 333 }, + [29] = { 46.7, 60, 16, 333 }, + [30] = { 48.1, 59.8, 16, 333 }, + [31] = { 47.5, 59, 16, 333 }, + [32] = { 43.5, 58.9, 16, 333 }, + [33] = { 46, 58.9, 16, 333 }, + [34] = { 48.8, 58.8, 16, 333 }, + [35] = { 44.6, 58.8, 16, 333 }, + [36] = { 44.4, 58, 16, 333 }, + [37] = { 45.5, 57.9, 16, 333 }, + [38] = { 48.1, 57.9, 16, 333 }, + [39] = { 46.8, 57.6, 16, 333 }, + [40] = { 49.4, 57.6, 16, 333 }, + [41] = { 47.3, 57.2, 16, 333 }, + [42] = { 48.7, 57, 16, 333 }, + [43] = { 44.8, 57, 16, 333 }, + [44] = { 46.1, 57, 16, 333 }, + [45] = { 43.6, 56.9, 16, 333 }, + [46] = { 44.1, 56.3, 16, 333 }, + [47] = { 45.5, 56.1, 16, 333 }, + [48] = { 49.4, 56, 16, 333 }, + [49] = { 46.7, 56, 16, 333 }, + [50] = { 48, 55.8, 16, 333 }, + [51] = { 46, 55.1, 16, 333 }, + [52] = { 44.9, 55, 16, 333 }, + [53] = { 47.1, 54.8, 16, 333 }, + [54] = { 46.9, 54.3, 16, 333 }, + [55] = { 41.1, 54.2, 16, 333 }, + [56] = { 45.5, 54, 16, 333 }, + [57] = { 48.2, 53.9, 16, 333 }, + [58] = { 44.4, 53.9, 16, 333 }, + [59] = { 49.6, 53.8, 16, 333 }, + [60] = { 40.2, 53.1, 16, 333 }, + [61] = { 46.1, 53, 16, 333 }, + [62] = { 34.5, 53, 16, 333 }, + [63] = { 44.8, 53, 16, 333 }, + [64] = { 47.5, 52.9, 16, 333 }, + [65] = { 48.8, 52.8, 16, 333 }, + [66] = { 41.9, 52.7, 16, 333 }, + [67] = { 41.1, 52, 16, 333 }, + [68] = { 48.1, 52, 16, 333 }, + [69] = { 49.6, 51.9, 16, 333 }, + [70] = { 44.1, 51.8, 16, 333 }, + [71] = { 41.4, 51.7, 16, 333 }, + [72] = { 45.4, 51.6, 16, 333 }, + [73] = { 48.8, 51, 16, 333 }, + [74] = { 47.4, 51, 16, 333 }, + [75] = { 44.9, 50.9, 16, 333 }, + [76] = { 43.7, 50.9, 16, 333 }, + [77] = { 47.4, 50.9, 16, 333 }, + [78] = { 46.1, 50.8, 16, 333 }, + [79] = { 39, 50.1, 16, 333 }, + [80] = { 44.2, 50.1, 16, 333 }, + [81] = { 47.2, 50, 16, 333 }, + [82] = { 48.1, 50, 16, 333 }, + [83] = { 45.5, 50, 16, 333 }, + [84] = { 48.3, 49.9, 16, 333 }, + [85] = { 48.7, 49.4, 16, 333 }, + [86] = { 48.7, 49.2, 16, 333 }, + [87] = { 44.8, 49, 16, 333 }, + [88] = { 47.5, 49, 16, 333 }, + [89] = { 46.2, 48.8, 16, 333 }, + [90] = { 48.3, 48.3, 16, 333 }, + [91] = { 43.9, 48.3, 16, 333 }, + [92] = { 42.8, 48.2, 16, 333 }, + [93] = { 41.5, 48.1, 16, 333 }, + [94] = { 47.1, 47.8, 16, 333 }, + [95] = { 45.6, 47.5, 16, 333 }, + [96] = { 47.7, 47.2, 16, 333 }, + [97] = { 46.3, 47, 16, 333 }, + [98] = { 43.4, 46.9, 16, 333 }, + [99] = { 46.9, 46.4, 16, 333 }, + [100] = { 47.9, 46.1, 16, 333 }, + [101] = { 49.2, 45.9, 16, 333 }, + [102] = { 47.7, 45.3, 16, 333 }, + [103] = { 43.2, 45.2, 16, 333 }, + [104] = { 48.8, 45.1, 16, 333 }, + [105] = { 46.3, 45, 16, 333 }, + [106] = { 46.7, 44.1, 16, 333 }, + [107] = { 48.4, 44, 16, 333 }, + [108] = { 45.4, 43.9, 16, 333 }, + [109] = { 49.4, 43.7, 16, 333 }, + [110] = { 44.8, 43.5, 16, 333 }, + [111] = { 50.2, 43.1, 16, 333 }, + [112] = { 49, 43.1, 16, 333 }, + [113] = { 46.2, 43, 16, 333 }, + [114] = { 47.6, 43, 16, 333 }, + [115] = { 47.9, 42.3, 16, 333 }, + [116] = { 43.5, 42, 16, 333 }, + [117] = { 49.5, 42, 16, 333 }, + [118] = { 45.4, 42, 16, 333 }, + [119] = { 46.8, 41.3, 16, 333 }, + [120] = { 45.1, 41.2, 16, 333 }, + [121] = { 46.4, 39.7, 16, 333 }, + [122] = { 43.6, 64.7, 16, 333 }, + [123] = { 40.2, 64, 16, 333 }, + [124] = { 41.6, 63.9, 16, 333 }, + [125] = { 44, 63.7, 16, 333 }, + [126] = { 42.6, 63.6, 16, 333 }, + [127] = { 39.3, 62.7, 16, 333 }, + [128] = { 37.5, 61.9, 16, 333 }, + [129] = { 40.2, 61.8, 16, 333 }, + [130] = { 41.8, 61.6, 16, 333 }, + [131] = { 38.9, 61.6, 16, 333 }, + [132] = { 37.1, 61.4, 16, 333 }, + [133] = { 39.7, 61.2, 16, 333 }, + [134] = { 38.2, 60.9, 16, 333 }, + [135] = { 39, 59.8, 16, 333 }, + [136] = { 36.4, 59.8, 16, 333 }, + [137] = { 37.1, 59, 16, 333 }, + [138] = { 35.5, 58.8, 16, 333 }, + [139] = { 39.8, 58.6, 16, 333 }, + [140] = { 36.4, 57.9, 16, 333 }, + [141] = { 39, 57.8, 16, 333 }, + [142] = { 38.1, 57.2, 16, 333 }, + [143] = { 35.7, 57, 16, 333 }, + [144] = { 39.6, 57, 16, 333 }, + [145] = { 36.7, 56.7, 16, 333 }, + [146] = { 35, 56.2, 16, 333 }, + [147] = { 37.6, 56.1, 16, 333 }, + [148] = { 40.2, 56, 16, 333 }, + [149] = { 39, 55.8, 16, 333 }, + [150] = { 41.1, 55.8, 16, 333 }, + [151] = { 36.4, 55.7, 16, 333 }, + [152] = { 36.9, 55.3, 16, 333 }, + [153] = { 41.1, 55.3, 16, 333 }, + [154] = { 35.5, 55.1, 16, 333 }, + [155] = { 34.4, 55.1, 16, 333 }, + [156] = { 39.5, 54.9, 16, 333 }, + [157] = { 38.2, 54.7, 16, 333 }, + [158] = { 37.7, 54.4, 16, 333 }, + [159] = { 41.1, 54.3, 16, 333 }, + [160] = { 38.8, 54, 16, 333 }, + [161] = { 40.9, 54, 16, 333 }, + [162] = { 36, 54, 16, 333 }, + [163] = { 35.2, 53.9, 16, 333 }, + [164] = { 41.4, 53.7, 16, 333 }, + [165] = { 38.1, 53, 16, 333 }, + [166] = { 40.5, 53, 16, 333 }, + [167] = { 35.6, 52.9, 16, 333 }, + [168] = { 38.8, 52.3, 16, 333 }, + [169] = { 41.7, 52.1, 16, 333 }, + [170] = { 40.5, 52.1, 16, 333 }, + [171] = { 35, 52, 16, 333 }, + [172] = { 36.1, 52, 16, 333 }, + [173] = { 37.6, 51.9, 16, 333 }, + [174] = { 41.1, 51.8, 16, 333 }, + [175] = { 37, 51.1, 16, 333 }, + [176] = { 41, 51, 16, 333 }, + [177] = { 38.2, 50.9, 16, 333 }, + [178] = { 35.4, 50.8, 16, 333 }, + [179] = { 39.9, 50.8, 16, 333 }, + [180] = { 41, 50.4, 16, 333 }, + [181] = { 36.1, 50.1, 16, 333 }, + [182] = { 41.6, 49.9, 16, 333 }, + [183] = { 37.9, 49.8, 16, 333 }, + [184] = { 40.3, 49.7, 16, 333 }, + [185] = { 40.8, 49.2, 16, 333 }, + [186] = { 39.5, 49.1, 16, 333 }, + [187] = { 38.2, 49.1, 16, 333 }, + [188] = { 37, 49, 16, 333 }, + [189] = { 37.7, 48.4, 16, 333 }, + [190] = { 36.3, 48, 16, 333 }, + [191] = { 39.9, 48, 16, 333 }, + [192] = { 38.9, 47.9, 16, 333 }, + [193] = { 39.9, 47.2, 16, 333 }, + [194] = { 41.6, 46.4, 16, 333 }, + [195] = { 40.4, 46.2, 16, 333 }, + [196] = { 39, 46.2, 16, 333 }, + }, + ["lvl"] = "51-52", + }, + [6196] = { + ["coords"] = { + [1] = { 49.4, 67.7, 16, 333 }, + [2] = { 45.9, 67.1, 16, 333 }, + [3] = { 50.2, 66.7, 16, 333 }, + [4] = { 48.8, 66.7, 16, 333 }, + [5] = { 49.4, 65.8, 16, 333 }, + [6] = { 48.2, 65.7, 16, 333 }, + [7] = { 46.5, 65.7, 16, 333 }, + [8] = { 50.1, 65, 16, 333 }, + [9] = { 47.5, 64.9, 16, 333 }, + [10] = { 48.6, 64.5, 16, 333 }, + [11] = { 47, 64, 16, 333 }, + [12] = { 48.1, 63.7, 16, 333 }, + [13] = { 49.5, 63.7, 16, 333 }, + [14] = { 46.2, 63.2, 16, 333 }, + [15] = { 47.4, 63.1, 16, 333 }, + [16] = { 48.7, 62.7, 16, 333 }, + [17] = { 50.2, 62.6, 16, 333 }, + [18] = { 45.2, 62.1, 16, 333 }, + [19] = { 48.2, 62, 16, 333 }, + [20] = { 43.1, 62, 16, 333 }, + [21] = { 46.8, 61.8, 16, 333 }, + [22] = { 44, 61.5, 16, 333 }, + [23] = { 46.1, 60.9, 16, 333 }, + [24] = { 47.5, 60.9, 16, 333 }, + [25] = { 44.9, 60.7, 16, 333 }, + [26] = { 45.4, 60.1, 16, 333 }, + [27] = { 44.2, 60, 16, 333 }, + [28] = { 46.7, 60, 16, 333 }, + [29] = { 48.1, 59.8, 16, 333 }, + [30] = { 47.5, 59, 16, 333 }, + [31] = { 43.5, 58.9, 16, 333 }, + [32] = { 46, 58.9, 16, 333 }, + [33] = { 48.8, 58.8, 16, 333 }, + [34] = { 44.6, 58.8, 16, 333 }, + [35] = { 44.4, 58, 16, 333 }, + [36] = { 45.5, 57.9, 16, 333 }, + [37] = { 48.1, 57.9, 16, 333 }, + [38] = { 46.8, 57.6, 16, 333 }, + [39] = { 49.4, 57.6, 16, 333 }, + [40] = { 47.3, 57.2, 16, 333 }, + [41] = { 48.7, 57, 16, 333 }, + [42] = { 44.8, 57, 16, 333 }, + [43] = { 46.1, 57, 16, 333 }, + [44] = { 44.1, 56.3, 16, 333 }, + [45] = { 45.5, 56.1, 16, 333 }, + [46] = { 49.4, 56, 16, 333 }, + [47] = { 46.7, 56, 16, 333 }, + [48] = { 48, 55.8, 16, 333 }, + [49] = { 46, 55.1, 16, 333 }, + [50] = { 44.9, 55, 16, 333 }, + [51] = { 47.1, 54.8, 16, 333 }, + [52] = { 46.9, 54.3, 16, 333 }, + [53] = { 45.5, 54, 16, 333 }, + [54] = { 48.2, 53.9, 16, 333 }, + [55] = { 44.4, 53.9, 16, 333 }, + [56] = { 40.2, 53.1, 16, 333 }, + [57] = { 46.1, 53, 16, 333 }, + [58] = { 44.8, 53, 16, 333 }, + [59] = { 47.5, 52.9, 16, 333 }, + [60] = { 48.8, 52.8, 16, 333 }, + [61] = { 41.9, 52.7, 16, 333 }, + [62] = { 41.1, 52, 16, 333 }, + [63] = { 48.1, 52, 16, 333 }, + [64] = { 49.6, 51.9, 16, 333 }, + [65] = { 44.1, 51.8, 16, 333 }, + [66] = { 45.4, 51.6, 16, 333 }, + [67] = { 48.8, 51, 16, 333 }, + [68] = { 47.4, 51, 16, 333 }, + [69] = { 44.9, 50.9, 16, 333 }, + [70] = { 43.7, 50.9, 16, 333 }, + [71] = { 47.4, 50.9, 16, 333 }, + [72] = { 46.1, 50.8, 16, 333 }, + [73] = { 44.2, 50.1, 16, 333 }, + [74] = { 47.2, 50, 16, 333 }, + [75] = { 48.1, 50, 16, 333 }, + [76] = { 45.5, 50, 16, 333 }, + [77] = { 48.3, 49.9, 16, 333 }, + [78] = { 48.7, 49.4, 16, 333 }, + [79] = { 48.7, 49.2, 16, 333 }, + [80] = { 44.8, 49, 16, 333 }, + [81] = { 47.5, 49, 16, 333 }, + [82] = { 46.2, 48.8, 16, 333 }, + [83] = { 48.3, 48.3, 16, 333 }, + [84] = { 43.9, 48.3, 16, 333 }, + [85] = { 42.8, 48.2, 16, 333 }, + [86] = { 41.5, 48.1, 16, 333 }, + [87] = { 47.1, 47.8, 16, 333 }, + [88] = { 45.6, 47.5, 16, 333 }, + [89] = { 47.7, 47.2, 16, 333 }, + [90] = { 46.3, 47, 16, 333 }, + [91] = { 43.4, 46.9, 16, 333 }, + [92] = { 46.9, 46.4, 16, 333 }, + [93] = { 47.9, 46.1, 16, 333 }, + [94] = { 49.2, 45.9, 16, 333 }, + [95] = { 47.7, 45.3, 16, 333 }, + [96] = { 43.2, 45.2, 16, 333 }, + [97] = { 48.8, 45.1, 16, 333 }, + [98] = { 46.3, 45, 16, 333 }, + [99] = { 46.7, 44.1, 16, 333 }, + [100] = { 48.4, 44, 16, 333 }, + [101] = { 45.4, 43.9, 16, 333 }, + [102] = { 49.4, 43.7, 16, 333 }, + [103] = { 50.2, 43.1, 16, 333 }, + [104] = { 49, 43.1, 16, 333 }, + [105] = { 46.2, 43, 16, 333 }, + [106] = { 47.6, 43, 16, 333 }, + [107] = { 47.9, 42.3, 16, 333 }, + [108] = { 43.5, 42, 16, 333 }, + [109] = { 49.5, 42, 16, 333 }, + [110] = { 45.4, 42, 16, 333 }, + [111] = { 46.8, 41.3, 16, 333 }, + [112] = { 45.1, 41.2, 16, 333 }, + [113] = { 46.4, 39.7, 16, 333 }, + }, + ["lvl"] = "50-51", + }, + [6197] = "_", + [6198] = { + ["coords"] = { + [1] = { 58.2, 31.2, 16, 333 }, + [2] = { 55.8, 30.8, 16, 333 }, + [3] = { 57.9, 30.4, 16, 333 }, + [4] = { 56.9, 30.4, 16, 333 }, + [5] = { 55.6, 30.1, 16, 333 }, + [6] = { 56.6, 30, 16, 333 }, + [7] = { 56.2, 29.9, 16, 333 }, + [8] = { 56.2, 29.8, 16, 333 }, + [9] = { 55.5, 29.5, 16, 333 }, + [10] = { 55.9, 29.4, 16, 333 }, + [11] = { 58.8, 29.1, 16, 333 }, + [12] = { 59.2, 29.1, 16, 333 }, + [13] = { 56.4, 28.8, 16, 333 }, + [14] = { 59.2, 28.6, 16, 333 }, + [15] = { 58.8, 28.5, 16, 333 }, + [16] = { 58.6, 28.5, 16, 333 }, + [17] = { 55.5, 28.5, 16, 333 }, + [18] = { 58.8, 28.4, 16, 333 }, + [19] = { 58, 28.2, 16, 333 }, + [20] = { 56.7, 28, 16, 333 }, + [21] = { 55.3, 27.6, 16, 333 }, + [22] = { 58, 27.5, 16, 333 }, + [23] = { 58.8, 27.4, 16, 333 }, + [24] = { 56.7, 27.3, 16, 333 }, + [25] = { 55.9, 27, 16, 333 }, + [26] = { 55.3, 26.5, 16, 333 }, + [27] = { 58, 26.5, 16, 333 }, + [28] = { 57.4, 26.3, 16, 333 }, + [29] = { 55.9, 26.2, 16, 333 }, + [30] = { 56.6, 25.5, 16, 333 }, + }, + ["lvl"] = "51-52", + }, + [6199] = { + ["coords"] = { + [1] = { 58.2, 31.2, 16, 333 }, + [2] = { 55.8, 30.8, 16, 333 }, + [3] = { 57.9, 30.4, 16, 333 }, + [4] = { 56.9, 30.4, 16, 333 }, + [5] = { 55.6, 30.1, 16, 333 }, + [6] = { 56.6, 30, 16, 333 }, + [7] = { 56.2, 29.9, 16, 333 }, + [8] = { 56.2, 29.8, 16, 333 }, + [9] = { 55.5, 29.5, 16, 333 }, + [10] = { 55.9, 29.4, 16, 333 }, + [11] = { 58.8, 29.1, 16, 333 }, + [12] = { 59.2, 29.1, 16, 333 }, + [13] = { 56.4, 28.8, 16, 333 }, + [14] = { 59.2, 28.6, 16, 333 }, + [15] = { 58.8, 28.5, 16, 333 }, + [16] = { 58.6, 28.5, 16, 333 }, + [17] = { 55.5, 28.5, 16, 333 }, + [18] = { 58.8, 28.4, 16, 333 }, + [19] = { 58, 28.2, 16, 333 }, + [20] = { 56.7, 28, 16, 333 }, + [21] = { 55.3, 27.6, 16, 333 }, + [22] = { 58, 27.5, 16, 333 }, + [23] = { 58.8, 27.4, 16, 333 }, + [24] = { 56.7, 27.3, 16, 333 }, + [25] = { 55.9, 27, 16, 333 }, + [26] = { 55.3, 26.5, 16, 333 }, + [27] = { 58, 26.5, 16, 333 }, + [28] = { 57.4, 26.3, 16, 333 }, + [29] = { 55.9, 26.2, 16, 333 }, + [30] = { 56.6, 25.5, 16, 333 }, + }, + ["lvl"] = "52-53", + }, + [6200] = { + ["coords"] = { + [1] = { 61.9, 26.8, 16, 333 }, + [2] = { 61.1, 26.4, 16, 333 }, + [3] = { 62.4, 26.3, 16, 333 }, + [4] = { 62.1, 25.9, 16, 333 }, + [5] = { 60.7, 25.6, 16, 333 }, + [6] = { 62.8, 25.5, 16, 333 }, + [7] = { 61.4, 25.2, 16, 333 }, + [8] = { 60.7, 25, 16, 333 }, + [9] = { 61.4, 25, 16, 333 }, + [10] = { 61.8, 24.5, 16, 333 }, + [11] = { 60.7, 24.5, 16, 333 }, + [12] = { 62.6, 24.4, 16, 333 }, + [13] = { 60, 24.3, 16, 333 }, + [14] = { 61, 24.1, 16, 333 }, + [15] = { 61.8, 23.6, 16, 333 }, + [16] = { 61.2, 23.4, 16, 333 }, + [17] = { 60.7, 23.4, 16, 333 }, + [18] = { 62.6, 23.4, 16, 333 }, + [19] = { 51.8, 20.7, 16, 333 }, + [20] = { 52.1, 20.4, 16, 333 }, + [21] = { 66.4, 19.7, 16, 333 }, + [22] = { 50.1, 19.6, 16, 333 }, + [23] = { 66.8, 19.4, 16, 333 }, + [24] = { 52.1, 19.1, 16, 333 }, + [25] = { 52.5, 19, 16, 333 }, + [26] = { 52.1, 18.7, 16, 333 }, + [27] = { 65.8, 18.6, 16, 333 }, + [28] = { 66.4, 18.5, 16, 333 }, + [29] = { 67, 18.5, 16, 333 }, + [30] = { 50.7, 18.4, 16, 333 }, + [31] = { 68.6, 18.3, 16, 333 }, + [32] = { 51.4, 18.2, 16, 333 }, + [33] = { 67.2, 17.7, 16, 333 }, + [34] = { 68, 17.7, 16, 333 }, + [35] = { 66.6, 17.6, 16, 333 }, + [36] = { 50.8, 17.6, 16, 333 }, + [37] = { 65.8, 17.6, 16, 333 }, + [38] = { 51.3, 17.5, 16, 333 }, + [39] = { 65.2, 17.4, 16, 333 }, + [40] = { 52.2, 17.1, 16, 333 }, + [41] = { 65.9, 16.9, 16, 333 }, + [42] = { 66.4, 16.8, 16, 333 }, + [43] = { 66.2, 16.7, 16, 333 }, + [44] = { 66, 16.5, 16, 333 }, + [45] = { 65.3, 16.4, 16, 333 }, + [46] = { 67.2, 16.3, 16, 333 }, + [47] = { 65.9, 15.6, 16, 333 }, + [48] = { 66.6, 15.4, 16, 333 }, + }, + ["lvl"] = "51-52", + }, + [6201] = { + ["coords"] = { + [1] = { 61.9, 26.8, 16, 333 }, + [2] = { 61.1, 26.4, 16, 333 }, + [3] = { 62.4, 26.3, 16, 333 }, + [4] = { 62.1, 25.9, 16, 333 }, + [5] = { 60.7, 25.6, 16, 333 }, + [6] = { 62.8, 25.5, 16, 333 }, + [7] = { 61.4, 25.2, 16, 333 }, + [8] = { 60.7, 25, 16, 333 }, + [9] = { 61.4, 25, 16, 333 }, + [10] = { 61.8, 24.5, 16, 333 }, + [11] = { 60.7, 24.5, 16, 333 }, + [12] = { 62.6, 24.4, 16, 333 }, + [13] = { 60, 24.3, 16, 333 }, + [14] = { 61, 24.1, 16, 333 }, + [15] = { 61.8, 23.6, 16, 333 }, + [16] = { 61.2, 23.4, 16, 333 }, + [17] = { 60.7, 23.4, 16, 333 }, + [18] = { 62.6, 23.4, 16, 333 }, + [19] = { 51.8, 20.7, 16, 333 }, + [20] = { 52.1, 20.4, 16, 333 }, + [21] = { 66.4, 19.7, 16, 333 }, + [22] = { 50.1, 19.6, 16, 333 }, + [23] = { 66.8, 19.4, 16, 333 }, + [24] = { 52.1, 19.1, 16, 333 }, + [25] = { 52.5, 19, 16, 333 }, + [26] = { 52.1, 18.7, 16, 333 }, + [27] = { 65.8, 18.6, 16, 333 }, + [28] = { 66.4, 18.5, 16, 333 }, + [29] = { 67, 18.5, 16, 333 }, + [30] = { 50.7, 18.4, 16, 333 }, + [31] = { 68.6, 18.3, 16, 333 }, + [32] = { 51.4, 18.2, 16, 333 }, + [33] = { 67.2, 17.7, 16, 333 }, + [34] = { 68, 17.7, 16, 333 }, + [35] = { 66.6, 17.6, 16, 333 }, + [36] = { 50.8, 17.6, 16, 333 }, + [37] = { 65.8, 17.6, 16, 333 }, + [38] = { 51.3, 17.5, 16, 333 }, + [39] = { 65.2, 17.4, 16, 333 }, + [40] = { 52.2, 17.1, 16, 333 }, + [41] = { 65.9, 16.9, 16, 333 }, + [42] = { 66.4, 16.8, 16, 333 }, + [43] = { 66.2, 16.7, 16, 333 }, + [44] = { 66, 16.5, 16, 333 }, + [45] = { 65.3, 16.4, 16, 333 }, + [46] = { 67.2, 16.3, 16, 333 }, + [47] = { 65.9, 15.6, 16, 333 }, + [48] = { 66.6, 15.4, 16, 333 }, + }, + ["lvl"] = "51-53", + }, + [6202] = { + ["coords"] = { + [1] = { 61.9, 26.8, 16, 333 }, + [2] = { 61.1, 26.4, 16, 333 }, + [3] = { 62.4, 26.3, 16, 333 }, + [4] = { 62.1, 25.9, 16, 333 }, + [5] = { 60.7, 25.6, 16, 333 }, + [6] = { 62.8, 25.5, 16, 333 }, + [7] = { 61.4, 25.2, 16, 333 }, + [8] = { 60.7, 25, 16, 333 }, + [9] = { 61.4, 25, 16, 333 }, + [10] = { 61.8, 24.5, 16, 333 }, + [11] = { 60.7, 24.5, 16, 333 }, + [12] = { 62.6, 24.4, 16, 333 }, + [13] = { 60, 24.3, 16, 333 }, + [14] = { 61, 24.1, 16, 333 }, + [15] = { 61.8, 23.6, 16, 333 }, + [16] = { 61.2, 23.4, 16, 333 }, + [17] = { 60.7, 23.4, 16, 333 }, + [18] = { 62.6, 23.4, 16, 333 }, + [19] = { 51.8, 20.7, 16, 333 }, + [20] = { 52.1, 20.4, 16, 333 }, + [21] = { 66.4, 19.7, 16, 333 }, + [22] = { 50.1, 19.6, 16, 333 }, + [23] = { 66.8, 19.4, 16, 333 }, + [24] = { 52.1, 19.1, 16, 333 }, + [25] = { 52.5, 19, 16, 333 }, + [26] = { 52.1, 18.7, 16, 333 }, + [27] = { 65.8, 18.6, 16, 333 }, + [28] = { 66.4, 18.5, 16, 333 }, + [29] = { 67, 18.5, 16, 333 }, + [30] = { 50.7, 18.4, 16, 333 }, + [31] = { 68.6, 18.3, 16, 333 }, + [32] = { 51.4, 18.2, 16, 333 }, + [33] = { 67.2, 17.7, 16, 333 }, + [34] = { 68, 17.7, 16, 333 }, + [35] = { 66.6, 17.6, 16, 333 }, + [36] = { 50.8, 17.6, 16, 333 }, + [37] = { 65.8, 17.6, 16, 333 }, + [38] = { 51.3, 17.5, 16, 333 }, + [39] = { 65.2, 17.4, 16, 333 }, + [40] = { 52.2, 17.1, 16, 333 }, + [41] = { 65.9, 16.9, 16, 333 }, + [42] = { 66.4, 16.8, 16, 333 }, + [43] = { 66.2, 16.7, 16, 333 }, + [44] = { 66, 16.5, 16, 333 }, + [45] = { 65.3, 16.4, 16, 333 }, + [46] = { 67.2, 16.3, 16, 333 }, + [47] = { 65.9, 15.6, 16, 333 }, + [48] = { 66.6, 15.4, 16, 333 }, + }, + ["lvl"] = "52-53", + }, + [6206] = { + ["coords"] = { + [1] = { 52.4, 91.8, 721, 18000 }, + [2] = { 49.2, 89.7, 721, 18000 }, + [3] = { 47.6, 88, 721, 18000 }, + [4] = { 56.3, 85.5, 721, 18000 }, + [5] = { 60.7, 81.8, 721, 18000 }, + [6] = { 51.4, 80.5, 721, 18000 }, + [7] = { 51.2, 77.8, 721, 18000 }, + [8] = { 53.9, 76.6, 721, 18000 }, + [9] = { 49, 76.1, 721, 18000 }, + [10] = { 53.5, 76, 721, 18000 }, + [11] = { 53.7, 71.4, 721, 18000 }, + [12] = { 43, 68.4, 721, 18000 }, + [13] = { 37.2, 67.7, 721, 18000 }, + [14] = { 58.1, 66.5, 721, 18000 }, + [15] = { 57.1, 65.2, 721, 18000 }, + [16] = { 50.2, 63.7, 721, 18000 }, + [17] = { 58.3, 62.1, 721, 18000 }, + [18] = { 40.7, 53.6, 721, 18000 }, + [19] = { 58.7, 52.7, 721, 18000 }, + [20] = { 49.5, 47.6, 721, 18000 }, + [21] = { 52.9, 36.5, 721, 18000 }, + [22] = { 50.7, 36.3, 721, 18000 }, + }, + ["lvl"] = "25-27", + ["rnk"] = "1", + }, + [6207] = { + ["coords"] = { + [1] = { 47.7, 82.9, 721, 18000 }, + [2] = { 35.8, 71.2, 721, 18000 }, + [3] = { 50.9, 64, 721, 18000 }, + [4] = { 59.2, 63.9, 721, 18000 }, + [5] = { 53.6, 36.4, 721, 18000 }, + }, + ["lvl"] = "25-27", + }, + [6208] = { + ["coords"] = { + [1] = { 18.1, 39.3, 1, 1677 }, + [2] = { 21.7, 34, 1, 1677 }, + [3] = { 21.8, 33.1, 1, 1677 }, + [4] = { 20.5, 94.8, 721, 1677 }, + [5] = { 51.8, 49.7, 721, 1677 }, + [6] = { 52.3, 41.8, 721, 1677 }, + }, + ["lvl"] = "25-26", + ["rnk"] = "1", + }, + [6209] = { + ["coords"] = { + [1] = { 18.7, 38.7, 1, 1704 }, + [2] = { 19.3, 36.6, 1, 1704 }, + [3] = { 23, 31.9, 1, 1704 }, + [4] = { 21.1, 31.5, 1, 1704 }, + [5] = { 25.8, 89.7, 721, 1704 }, + [6] = { 31.1, 71.6, 721, 1704 }, + [7] = { 62.6, 31.5, 721, 1704 }, + [8] = { 46.2, 27.9, 721, 1704 }, + }, + ["lvl"] = "26", + ["rnk"] = "1", + }, + [6210] = { + ["coords"] = { + [1] = { 18.8, 39.2, 1, 1623 }, + [2] = { 20.6, 37, 1, 1623 }, + [3] = { 21.8, 33.7, 1, 1623 }, + [4] = { 26.2, 94, 721, 1623 }, + [5] = { 42.1, 75, 721, 1623 }, + [6] = { 52.3, 46.6, 721, 1623 }, + }, + ["lvl"] = "24-25", + ["rnk"] = "1", + }, + [6211] = { + ["coords"] = { + [1] = { 56, 89.6, 721, 18000 }, + [2] = { 52.3, 88.7, 721, 18000 }, + [3] = { 50.7, 88.2, 721, 18000 }, + [4] = { 45.3, 84.2, 721, 18000 }, + [5] = { 37.7, 81.4, 721, 18000 }, + [6] = { 51.6, 80.5, 721, 18000 }, + [7] = { 60.7, 80, 721, 18000 }, + [8] = { 59.2, 76.3, 721, 18000 }, + [9] = { 33.9, 75.8, 721, 18000 }, + [10] = { 48.4, 75.7, 721, 18000 }, + [11] = { 61, 73.9, 721, 18000 }, + [12] = { 61.5, 72, 721, 18000 }, + [13] = { 54.5, 71.1, 721, 18000 }, + [14] = { 58.1, 70.4, 721, 18000 }, + [15] = { 58.6, 69.3, 721, 18000 }, + [16] = { 48.1, 68.9, 721, 18000 }, + }, + ["lvl"] = "27-28", + ["rnk"] = "1", + }, + [6213] = { + ["coords"] = { + [1] = { 19.3, 38.8, 1, 1650 }, + [2] = { 19.7, 36.7, 1, 1650 }, + [3] = { 20.9, 36, 1, 1650 }, + [4] = { 22.1, 34.1, 1, 1650 }, + [5] = { 21.8, 32.2, 1, 1650 }, + [6] = { 31, 90.9, 721, 1650 }, + [7] = { 34.1, 72.8, 721, 1650 }, + [8] = { 44.6, 66.8, 721, 1650 }, + [9] = { 54.9, 50.5, 721, 1650 }, + [10] = { 52.4, 33.7, 721, 1650 }, + }, + ["lvl"] = "24-26", + ["rnk"] = "1", + }, + [6214] = "_", + [6218] = { + ["coords"] = { + [1] = { 46.9, 61.7, 721, 18000 }, + [2] = { 49.8, 57.5, 721, 18000 }, + [3] = { 51.9, 53.8, 721, 18000 }, + [4] = { 46, 48.5, 721, 18000 }, + [5] = { 49.9, 44.5, 721, 18000 }, + [6] = { 43.2, 44.2, 721, 18000 }, + [7] = { 57.2, 43, 721, 18000 }, + [8] = { 46.8, 37.5, 721, 18000 }, + }, + ["lvl"] = "27-28", + ["rnk"] = "1", + }, + [6219] = { + ["coords"] = { + [1] = { 53.2, 60.5, 721, 18000 }, + [2] = { 57.5, 56.9, 721, 18000 }, + [3] = { 51.7, 48.6, 721, 18000 }, + [4] = { 54.3, 44.5, 721, 18000 }, + [5] = { 55.3, 41.3, 721, 18000 }, + }, + ["lvl"] = "28-29", + ["rnk"] = "1", + }, + [6220] = { + ["coords"] = { + [1] = { 42.4, 57.8, 721, 18000 }, + [2] = { 55.1, 56.8, 721, 18000 }, + [3] = { 48.5, 53, 721, 18000 }, + [4] = { 41.3, 51.5, 721, 18000 }, + [5] = { 46.1, 42.3, 721, 18000 }, + [6] = { 51.2, 38.9, 721, 18000 }, + }, + ["lvl"] = "28-29", + ["rnk"] = "1", + }, + [6221] = { + ["coords"] = { + [1] = { 23.1, 39.5, 1, 300 }, + [2] = { 22.4, 39.3, 1, 300 }, + [3] = { 22.8, 39.2, 1, 300 }, + [4] = { 21.8, 39.2, 1, 300 }, + [5] = { 22.6, 39.2, 1, 300 }, + [6] = { 22.5, 39.1, 1, 300 }, + [7] = { 22.8, 39.1, 1, 300 }, + [8] = { 22.2, 39.1, 1, 300 }, + [9] = { 22.8, 39, 1, 300 }, + [10] = { 23.5, 38.9, 1, 300 }, + [11] = { 22.5, 38.8, 1, 300 }, + [12] = { 21.9, 38.7, 1, 300 }, + [13] = { 21.9, 38.6, 1, 300 }, + [14] = { 64, 97.1, 721, 300 }, + [15] = { 57.2, 95, 721, 300 }, + [16] = { 61.1, 94.5, 721, 300 }, + [17] = { 52, 94.4, 721, 300 }, + [18] = { 59.7, 94.1, 721, 300 }, + [19] = { 58.6, 93.7, 721, 300 }, + [20] = { 58.6, 93.4, 721, 300 }, + [21] = { 61.2, 93.3, 721, 300 }, + [22] = { 55.8, 93.1, 721, 300 }, + [23] = { 60.9, 92.7, 721, 300 }, + [24] = { 67.5, 91.8, 721, 300 }, + [25] = { 58.1, 91.3, 721, 300 }, + [26] = { 53.1, 89.9, 721, 300 }, + [27] = { 53.5, 89.2, 721, 300 }, + }, + ["lvl"] = "24-25", + }, + [6222] = { + ["coords"] = { + [1] = { 10.3, 95.9, 721, 18000 }, + [2] = { 5.4, 89.3, 721, 18000 }, + [3] = { 5.8, 88.3, 721, 18000 }, + [4] = { 5.3, 86, 721, 18000 }, + [5] = { 7.6, 84.3, 721, 18000 }, + [6] = { 8.6, 81.8, 721, 18000 }, + [7] = { 3.5, 79.1, 721, 18000 }, + [8] = { 3.5, 78.9, 721, 18000 }, + [9] = { 9.8, 68.4, 721, 18000 }, + [10] = { 1.2, 63.2, 721, 18000 }, + [11] = { 1.1, 62.7, 721, 18000 }, + [12] = { 3.1, 56, 721, 18000 }, + [13] = { 3.6, 54.6, 721, 18000 }, + }, + ["lvl"] = "29-30", + }, + [6223] = { + ["coords"] = { + [1] = { 15.7, 85.1, 721, 18000 }, + [2] = { 24.2, 74.2, 721, 18000 }, + [3] = { 15.9, 73, 721, 18000 }, + [4] = { 27.7, 71.8, 721, 18000 }, + [5] = { 29.7, 64.4, 721, 18000 }, + [6] = { 28.5, 60.3, 721, 18000 }, + [7] = { 29.8, 56, 721, 18000 }, + [8] = { 29.1, 50.5, 721, 18000 }, + [9] = { 32.9, 48, 721, 18000 }, + }, + ["lvl"] = "28-29", + ["rnk"] = "1", + }, + [6225] = { + ["coords"] = { + [1] = { 3.6, 79.1, 721, 18000 }, + [2] = { 5.5, 69.8, 721, 18000 }, + [3] = { 1.6, 62.8, 721, 18000 }, + }, + ["lvl"] = "29-30", + ["rnk"] = "1", + }, + [6228] = { + ["coords"] = {}, + ["lvl"] = "33", + ["rnk"] = "1", + }, + [6230] = { + ["coords"] = { + [1] = { 1.3, 68.3, 721, 18000 }, + [2] = { 5, 57.3, 721, 18000 }, + }, + ["lvl"] = "30-31", + ["rnk"] = "1", + }, + [6231] = { + ["coords"] = { + [1] = { 19.8, 31.9, 1, 120 }, + [2] = { 35, 31.4, 721, 120 }, + }, + ["lvl"] = "26", + ["rnk"] = "1", + }, + [6233] = { + ["coords"] = { + [1] = { 9.2, 92.1, 721, 18000 }, + [2] = { 11.7, 89.4, 721, 18000 }, + [3] = { 17.9, 89.4, 721, 18000 }, + [4] = { 23.4, 74.1, 721, 18000 }, + [5] = { 28.2, 71, 721, 18000 }, + [6] = { 25, 69.8, 721, 18000 }, + [7] = { 15.7, 69.7, 721, 18000 }, + [8] = { 29.8, 65.6, 721, 18000 }, + [9] = { 27.4, 65.4, 721, 18000 }, + [10] = { 27.3, 57.3, 721, 18000 }, + [11] = { 29.7, 57.1, 721, 18000 }, + [12] = { 6.8, 56.9, 721, 18000 }, + [13] = { 2.2, 55.8, 721, 18000 }, + [14] = { 30.4, 53.4, 721, 18000 }, + [15] = { 30.8, 52.8, 721, 18000 }, + [16] = { 34.5, 51.8, 721, 18000 }, + [17] = { 33.6, 51.7, 721, 18000 }, + [18] = { 33.3, 51.6, 721, 18000 }, + [19] = { 32.9, 49, 721, 18000 }, + [20] = { 34.2, 48.1, 721, 18000 }, + }, + ["lvl"] = "28-29", + ["rnk"] = "1", + }, + [6237] = { + ["coords"] = { + [1] = { 51.3, 68.8, 1519, 540 }, + [2] = { 51.1, 68.7, 1519, 540 }, + [3] = { 51.8, 68.2, 1519, 540 }, + [4] = { 51.8, 67.7, 1519, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [6241] = { + ["coords"] = { + [1] = { 36, 44.9, 38, 30 }, + [2] = { 17, 67.2, 5602, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [6242] = "_", + [6243] = { + ["coords"] = { + [1] = { 36.5, 37.9, 719, 604800 }, + }, + ["lvl"] = "26", + ["rnk"] = "1", + }, + [6244] = { + ["coords"] = { + [1] = { 49.3, 57.1, 17, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [6245] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [6246] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [6249] = { + ["coords"] = { + [1] = { 68.6, 48.8, 17, 275 }, + [2] = { 68.7, 48.8, 17, 275 }, + [3] = { 68.5, 48.8, 17, 275 }, + [4] = { 68.6, 48.7, 17, 275 }, + [5] = { 68.7, 48.7, 17, 275 }, + [6] = { 68.6, 48.6, 17, 275 }, + [7] = { 69.1, 48.1, 17, 120 }, + [8] = { 69.1, 48, 17, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "22-43", + }, + [6267] = { + ["coords"] = { + [1] = { 39.1, 83.5, 1519, 285 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [6268] = { + ["coords"] = { + [1] = { 62.6, 35.2, 17, 0 }, + }, + ["lvl"] = "30", + }, + [6269] = "_", + [6270] = "_", + [6271] = { + ["coords"] = { + [1] = { 35.9, 76.6, 40, 300 }, + [2] = { 32.5, 71.8, 40, 300 }, + [3] = { 51.8, 53.9, 40, 300 }, + [4] = { 60.2, 43.3, 40, 300 }, + [5] = { 7.4, 44.1, 1581, 300 }, + }, + ["lvl"] = "1", + }, + [6286] = { + ["coords"] = { + [1] = { 57.1, 61.3, 141, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "13", + }, + [6293] = { + ["coords"] = { + [1] = { 75.9, 37.9, 1497, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [6294] = { + ["coords"] = { + [1] = { 74.2, 9.4, 1537, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [6295] = { + ["coords"] = { + [1] = { 27.6, 46.5, 44, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "29", + }, + [6296] = "_", + [6301] = { + ["coords"] = { + [1] = { 38.1, 41.2, 148, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [6326] = "_", + [6327] = "_", + [6329] = { + ["coords"] = { + [1] = { 53.9, 90, 721, 18000 }, + [2] = { 50.7, 89.8, 721, 18000 }, + [3] = { 46.4, 88.8, 721, 18000 }, + [4] = { 54.4, 88.4, 721, 18000 }, + [5] = { 49.1, 88.2, 721, 18000 }, + [6] = { 46.7, 87.6, 721, 18000 }, + [7] = { 38.8, 83, 721, 18000 }, + [8] = { 38.2, 82.1, 721, 18000 }, + [9] = { 61.5, 79.3, 721, 18000 }, + [10] = { 46.1, 78.2, 721, 18000 }, + [11] = { 45.7, 77.3, 721, 18000 }, + [12] = { 59.2, 77.2, 721, 18000 }, + [13] = { 57.8, 76.9, 721, 18000 }, + [14] = { 33.6, 75, 721, 18000 }, + [15] = { 41.5, 73.6, 721, 18000 }, + [16] = { 51.3, 73.3, 721, 18000 }, + [17] = { 41, 73.1, 721, 18000 }, + [18] = { 61.3, 73, 721, 18000 }, + [19] = { 50.6, 72.9, 721, 18000 }, + [20] = { 41.9, 72.8, 721, 18000 }, + [21] = { 46, 72, 721, 18000 }, + [22] = { 46, 71.2, 721, 18000 }, + [23] = { 59.5, 70.1, 721, 18000 }, + [24] = { 42.5, 68.4, 721, 18000 }, + [25] = { 37.7, 68.2, 721, 18000 }, + [26] = { 61.6, 66.9, 721, 18000 }, + [27] = { 41.1, 64.6, 721, 18000 }, + [28] = { 49.5, 63.7, 721, 18000 }, + [29] = { 53.7, 63.6, 721, 18000 }, + [30] = { 48.4, 63.5, 721, 18000 }, + [31] = { 40.2, 63.5, 721, 18000 }, + [32] = { 45, 62.3, 721, 18000 }, + [33] = { 55.1, 61.6, 721, 18000 }, + [34] = { 43.3, 59.6, 721, 18000 }, + [35] = { 58.2, 56.8, 721, 18000 }, + [36] = { 40.9, 56, 721, 18000 }, + [37] = { 40.6, 55.4, 721, 18000 }, + [38] = { 49.5, 55, 721, 18000 }, + [39] = { 59, 53.4, 721, 18000 }, + [40] = { 48, 49.8, 721, 18000 }, + [41] = { 52.9, 49.5, 721, 18000 }, + [42] = { 40.5, 48.4, 721, 18000 }, + [43] = { 40.7, 47.6, 721, 18000 }, + [44] = { 58.8, 44.7, 721, 18000 }, + [45] = { 57.4, 42.2, 721, 18000 }, + [46] = { 47.5, 36.3, 721, 18000 }, + }, + ["lvl"] = "25-26", + ["rnk"] = "1", + }, + [6346] = "_", + [6350] = { + ["coords"] = { + [1] = { 57.2, 96.1, 16, 333 }, + [2] = { 58.5, 96, 16, 333 }, + [3] = { 51.3, 95.4, 16, 333 }, + [4] = { 78.9, 93.9, 16, 180 }, + [5] = { 79.6, 89.4, 16, 180 }, + [6] = { 61.4, 88.3, 16, 333 }, + [7] = { 81, 87.7, 16, 180 }, + [8] = { 65.8, 86.5, 16, 333 }, + [9] = { 78, 81.6, 16, 180 }, + [10] = { 78.3, 79.5, 16, 180 }, + [11] = { 70.5, 74.8, 16, 333 }, + [12] = { 68.6, 74.2, 16, 333 }, + [13] = { 73.8, 73.7, 16, 180 }, + [14] = { 62.6, 73, 16, 333 }, + [15] = { 60, 72.8, 16, 333 }, + [16] = { 64.6, 71.9, 16, 333 }, + [17] = { 61.8, 71.6, 16, 333 }, + [18] = { 63.8, 70.9, 16, 333 }, + [19] = { 59.9, 70.7, 16, 333 }, + [20] = { 55.4, 70.4, 16, 333 }, + [21] = { 53.6, 69.7, 16, 333 }, + [22] = { 54.5, 67.9, 16, 333 }, + }, + ["lvl"] = "54-55", + }, + [6351] = { + ["coords"] = { + [1] = { 74.1, 1.2, 14, 300 }, + [2] = { 50.4, 98.6, 16, 300 }, + [3] = { 69.3, 98.1, 16, 300 }, + [4] = { 67.4, 98, 16, 300 }, + [5] = { 71.2, 98, 16, 300 }, + [6] = { 45.5, 97.8, 16, 300 }, + [7] = { 56.4, 97.4, 16, 300 }, + [8] = { 47.6, 97.2, 16, 300 }, + [9] = { 65, 96.5, 16, 300 }, + [10] = { 62.1, 96.4, 16, 300 }, + [11] = { 66.5, 96.1, 16, 300 }, + [12] = { 56.6, 95.7, 16, 300 }, + [13] = { 67.2, 95.6, 16, 300 }, + [14] = { 55.3, 95.3, 16, 300 }, + [15] = { 62, 95.1, 16, 300 }, + [16] = { 50.7, 94.1, 16, 300 }, + [17] = { 47, 92.2, 16, 300 }, + [18] = { 48.3, 92, 16, 300 }, + [19] = { 78, 91.3, 16, 300 }, + [20] = { 80.2, 89.5, 16, 300 }, + [21] = { 65.6, 85.4, 16, 300 }, + [22] = { 65.4, 84.7, 16, 300 }, + [23] = { 78.3, 84, 16, 300 }, + [24] = { 78, 84, 16, 300 }, + [25] = { 79.7, 83.3, 16, 300 }, + [26] = { 80.2, 81.6, 16, 300 }, + [27] = { 81, 79.6, 16, 300 }, + [28] = { 67.2, 78.8, 16, 300 }, + [29] = { 64.3, 78.2, 16, 300 }, + [30] = { 60.7, 76.6, 16, 300 }, + [31] = { 69.2, 76, 16, 300 }, + [32] = { 68.2, 75.3, 16, 300 }, + [33] = { 71.1, 74.6, 16, 300 }, + [34] = { 66.8, 74.2, 16, 300 }, + [35] = { 63.1, 74.1, 16, 300 }, + [36] = { 68.6, 71.9, 16, 300 }, + [37] = { 63.1, 71.7, 16, 300 }, + [38] = { 60.5, 71.6, 16, 300 }, + [39] = { 65.3, 71, 16, 300 }, + }, + ["lvl"] = "54-55", + }, + [6352] = { + ["coords"] = { + [1] = { 65.8, 97, 16, 333 }, + [2] = { 55, 96.9, 16, 180 }, + [3] = { 53.6, 96.8, 16, 180 }, + [4] = { 50, 96.7, 16, 180 }, + [5] = { 53.3, 96, 16, 333 }, + [6] = { 60.6, 95.5, 16, 333 }, + [7] = { 63.1, 95.3, 16, 333 }, + [8] = { 59.1, 95.3, 16, 333 }, + [9] = { 54, 95.2, 16, 333 }, + [10] = { 47.3, 93.3, 16, 333 }, + [11] = { 45.3, 92.3, 16, 333 }, + [12] = { 77.8, 87.7, 16, 180 }, + [13] = { 79.1, 86.3, 16, 180 }, + [14] = { 80.3, 85.3, 16, 180 }, + [15] = { 63.8, 85, 16, 333 }, + [16] = { 63, 83.5, 16, 333 }, + [17] = { 79, 82.6, 16, 180 }, + [18] = { 78.9, 77.7, 16, 180 }, + [19] = { 77.9, 77.6, 16, 180 }, + [20] = { 71.9, 74.9, 16, 333 }, + [21] = { 75.2, 74.5, 16, 180 }, + [22] = { 72.3, 73.5, 16, 180 }, + [23] = { 56.6, 73.5, 16, 333 }, + [24] = { 61.5, 72.7, 16, 333 }, + [25] = { 65.4, 72.5, 16, 333 }, + [26] = { 56.2, 72.5, 16, 333 }, + [27] = { 73.2, 71.8, 16, 180 }, + [28] = { 54.7, 69.3, 16, 333 }, + [29] = { 56.2, 69.1, 16, 333 }, + [30] = { 55.3, 68.6, 16, 333 }, + [31] = { 52.6, 44.4, 16, 333 }, + [32] = { 52.2, 42.7, 16, 333 }, + [33] = { 69.8, 36.5, 16, 333 }, + [34] = { 71.2, 36.3, 16, 333 }, + [35] = { 92, 34.4, 16, 333 }, + [36] = { 86.9, 34.3, 16, 333 }, + [37] = { 68.4, 34.2, 16, 333 }, + [38] = { 88.8, 31.6, 16, 333 }, + [39] = { 86.9, 30.5, 16, 333 }, + [40] = { 85.7, 30.4, 16, 333 }, + [41] = { 84.4, 30.3, 16, 333 }, + [42] = { 86.2, 29.4, 16, 333 }, + [43] = { 86.3, 27.7, 16, 333 }, + [44] = { 89, 27.5, 16, 333 }, + [45] = { 85.7, 26.3, 16, 333 }, + [46] = { 88.2, 26.1, 16, 333 }, + [47] = { 88.1, 22.6, 16, 333 }, + }, + ["lvl"] = "53-54", + }, + [6368] = { + ["coords"] = { + [1] = { 44.1, 54, 12, 270 }, + [2] = { 44.4, 53.8, 12, 270 }, + [3] = { 43.8, 53.6, 12, 270 }, + [4] = { 44.6, 53.5, 12, 270 }, + [5] = { 43.7, 53.1, 12, 270 }, + [6] = { 44.4, 52.9, 12, 270 }, + [7] = { 44, 52.9, 12, 270 }, + [8] = { 44.3, 52.7, 12, 270 }, + [9] = { 43.8, 52.6, 12, 270 }, + [10] = { 43.2, 80.3, 33, 180 }, + [11] = { 29.7, 61.7, 876, 120 }, + [12] = { 29.9, 61.6, 876, 120 }, + [13] = { 29.7, 61.5, 876, 120 }, + [14] = { 29.9, 61, 876, 120 }, + [15] = { 29.6, 60.4, 876, 120 }, + [16] = { 30, 60.4, 876, 120 }, + }, + ["lvl"] = "1", + }, + [6371] = { + ["coords"] = { + [1] = { 73.3, 1.6, 14, 300 }, + [2] = { 47.6, 98.6, 16, 300 }, + [3] = { 49, 98.6, 16, 300 }, + [4] = { 68.7, 98, 16, 300 }, + [5] = { 54.4, 97.9, 16, 300 }, + [6] = { 48.2, 97.7, 16, 300 }, + [7] = { 49.9, 97.6, 16, 300 }, + [8] = { 46.7, 97.5, 16, 300 }, + [9] = { 45, 97.2, 16, 300 }, + [10] = { 72.7, 97.1, 16, 300 }, + [11] = { 68.1, 96.9, 16, 300 }, + [12] = { 66.1, 96.7, 16, 300 }, + [13] = { 46.8, 96.4, 16, 300 }, + [14] = { 48.4, 96.3, 16, 300 }, + [15] = { 47.7, 96, 16, 300 }, + [16] = { 70.2, 95.8, 16, 300 }, + [17] = { 53.8, 95.7, 16, 300 }, + [18] = { 45.8, 95.4, 16, 300 }, + [19] = { 44.7, 95, 16, 300 }, + [20] = { 46.7, 94.9, 16, 300 }, + [21] = { 49.3, 94.9, 16, 300 }, + [22] = { 66.6, 94.7, 16, 300 }, + [23] = { 68.9, 94.7, 16, 300 }, + [24] = { 45.2, 94.3, 16, 300 }, + [25] = { 67.2, 93.9, 16, 300 }, + [26] = { 48.2, 93.5, 16, 300 }, + [27] = { 77.8, 91.7, 16, 300 }, + [28] = { 77, 91.6, 16, 300 }, + [29] = { 78.7, 91.6, 16, 300 }, + [30] = { 77.6, 91.2, 16, 300 }, + [31] = { 67.3, 77.3, 16, 300 }, + [32] = { 68.2, 77.2, 16, 300 }, + [33] = { 70.7, 75.5, 16, 300 }, + [34] = { 71, 74.5, 16, 300 }, + [35] = { 67.6, 74.3, 16, 300 }, + [36] = { 69.2, 74.2, 16, 300 }, + [37] = { 68.3, 73.7, 16, 300 }, + [38] = { 80.4, 45.1, 16, 300 }, + [39] = { 53.5, 39.9, 16, 300 }, + [40] = { 55.9, 39, 16, 300 }, + [41] = { 89.6, 38.2, 16, 300 }, + [42] = { 70.2, 37.3, 16, 300 }, + [43] = { 87.6, 35, 16, 300 }, + [44] = { 87.6, 33.4, 16, 300 }, + [45] = { 85, 31.1, 16, 300 }, + [46] = { 87.4, 30.9, 16, 300 }, + [47] = { 89.6, 30.5, 16, 300 }, + [48] = { 88.4, 30.4, 16, 300 }, + [49] = { 87, 28.4, 16, 300 }, + [50] = { 85.5, 28.3, 16, 300 }, + [51] = { 88.2, 24.3, 16, 300 }, + [52] = { 87.7, 23.6, 16, 300 }, + [53] = { 89.7, 19.5, 16, 300 }, + [54] = { 89.5, 17.3, 16, 300 }, + [55] = { 88.9, 16.7, 16, 300 }, + [56] = { 87, 15.6, 16, 300 }, + [57] = { 46.9, 14.8, 16, 300 }, + [58] = { 86.9, 13.3, 16, 300 }, + [59] = { 58.6, 8.7, 16, 300 }, + [60] = { 60, 8.7, 16, 300 }, + [61] = { 72.4, 8.5, 16, 300 }, + [62] = { 83, 7.8, 16, 300 }, + }, + ["lvl"] = "51-52", + }, + [6375] = { + ["coords"] = { + [1] = { 19.3, 65.6, 16, 333 }, + [2] = { 18.2, 63.2, 16, 333 }, + [3] = { 18, 61.9, 16, 333 }, + [4] = { 17.9, 58.9, 16, 333 }, + [5] = { 19.9, 58.1, 16, 333 }, + [6] = { 21.2, 57.2, 16, 333 }, + [7] = { 17.8, 57, 16, 333 }, + [8] = { 16.4, 56.2, 16, 333 }, + [9] = { 19.1, 55.8, 16, 333 }, + [10] = { 18.9, 54.9, 16, 333 }, + [11] = { 18, 54.8, 16, 333 }, + [12] = { 21.1, 54.2, 16, 333 }, + [13] = { 18.1, 53.7, 16, 333 }, + [14] = { 19.2, 52.8, 16, 333 }, + [15] = { 17.1, 52.7, 16, 333 }, + [16] = { 16.9, 52.1, 16, 333 }, + [17] = { 18.5, 51.8, 16, 333 }, + [18] = { 16.6, 50.6, 16, 333 }, + [19] = { 19.1, 49.3, 16, 333 }, + }, + ["lvl"] = "46-48", + }, + [6378] = { + ["coords"] = { + [1] = { 50, 34.4, 16, 333 }, + [2] = { 52.7, 34, 16, 333 }, + [3] = { 53.2, 32.7, 16, 333 }, + [4] = { 52, 32.3, 16, 333 }, + [5] = { 51.3, 29.5, 16, 333 }, + [6] = { 52, 28.8, 16, 333 }, + [7] = { 50.6, 28.7, 16, 333 }, + [8] = { 49.4, 28.1, 16, 333 }, + [9] = { 51.7, 27.9, 16, 333 }, + [10] = { 53.5, 27.3, 16, 333 }, + [11] = { 51.2, 26.4, 16, 333 }, + [12] = { 53.1, 25.7, 16, 333 }, + [13] = { 48.2, 25.6, 16, 333 }, + [14] = { 49.1, 25.5, 16, 333 }, + [15] = { 52, 25.2, 16, 333 }, + [16] = { 58.3, 24.5, 16, 333 }, + [17] = { 50.1, 24.4, 16, 333 }, + [18] = { 47.1, 24.2, 16, 333 }, + [19] = { 53.9, 24, 16, 333 }, + [20] = { 50.6, 23.9, 16, 333 }, + [21] = { 54.3, 23.8, 16, 333 }, + [22] = { 58.6, 23, 16, 333 }, + [23] = { 47.4, 22.8, 16, 333 }, + [24] = { 57.1, 22.6, 16, 333 }, + [25] = { 48.1, 22.5, 16, 333 }, + [26] = { 55.3, 22.2, 16, 333 }, + [27] = { 58, 22.1, 16, 333 }, + [28] = { 56.2, 22.1, 16, 333 }, + [29] = { 48.2, 21.7, 16, 333 }, + [30] = { 55.3, 21.5, 16, 333 }, + [31] = { 58.8, 21.4, 16, 333 }, + [32] = { 61.4, 21.4, 16, 333 }, + [33] = { 62.6, 21.2, 16, 333 }, + [34] = { 59.3, 20.6, 16, 333 }, + [35] = { 60.7, 20.3, 16, 333 }, + [36] = { 56.7, 20.2, 16, 333 }, + [37] = { 58, 20.2, 16, 333 }, + [38] = { 47.4, 19.7, 16, 333 }, + [39] = { 64.1, 19.6, 16, 333 }, + [40] = { 62.4, 19.5, 16, 333 }, + [41] = { 60.1, 19.5, 16, 333 }, + [42] = { 48.1, 19.4, 16, 333 }, + [43] = { 57.1, 19.3, 16, 333 }, + [44] = { 47.4, 19.1, 16, 333 }, + [45] = { 61.2, 19, 16, 333 }, + [46] = { 60.6, 18.8, 16, 333 }, + [47] = { 48.3, 18.8, 16, 333 }, + [48] = { 58, 18.5, 16, 333 }, + [49] = { 59.5, 18.5, 16, 333 }, + [50] = { 55.2, 17.6, 16, 333 }, + [51] = { 60.1, 17.5, 16, 333 }, + [52] = { 56.1, 17.4, 16, 333 }, + [53] = { 57.2, 17.3, 16, 333 }, + [54] = { 54.6, 16.8, 16, 333 }, + [55] = { 60.5, 16.7, 16, 333 }, + [56] = { 59.2, 16.3, 16, 333 }, + [57] = { 48.4, 16, 16, 333 }, + [58] = { 54.8, 15.6, 16, 333 }, + [59] = { 55.9, 15.4, 16, 333 }, + [60] = { 61.9, 14.7, 16, 333 }, + [61] = { 53.8, 14.4, 16, 333 }, + [62] = { 55.3, 14.3, 16, 333 }, + [63] = { 60.5, 14.3, 16, 333 }, + [64] = { 81.1, 80, 618, 333 }, + [65] = { 81.8, 79.9, 618, 333 }, + [66] = { 81.6, 78.5, 618, 333 }, + }, + ["lvl"] = "50-52", + }, + [6389] = { + ["coords"] = { + [1] = { 43.4, 41.7, 130, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [6391] = { + ["coords"] = { + [1] = { 71, 38, 1, 300 }, + [2] = { 41.8, 71.9, 721, 18000 }, + [3] = { 42.2, 70.7, 721, 18000 }, + [4] = { 36.9, 68.4, 721, 18000 }, + [5] = { 37.7, 67.4, 721, 18000 }, + [6] = { 40.9, 64.8, 721, 18000 }, + [7] = { 35.1, 62.9, 721, 18000 }, + [8] = { 34.9, 62.2, 721, 18000 }, + }, + ["fac"] = "A", + ["lvl"] = "29-30", + ["rnk"] = "1", + }, + [6392] = { + ["coords"] = { + [1] = { 40.3, 75.1, 721, 18000 }, + [2] = { 40, 74.6, 721, 18000 }, + [3] = { 40.7, 65.5, 721, 18000 }, + [4] = { 35, 62.6, 721, 18000 }, + }, + ["fac"] = "A", + ["lvl"] = "29-30", + ["rnk"] = "1", + }, + [6394] = { + ["coords"] = { + [1] = { 44.7, 59.4, 17, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [6407] = { + ["coords"] = { + [1] = { 39.9, 74.9, 721, 18000 }, + [2] = { 38.5, 60.7, 721, 18000 }, + [3] = { 38.2, 60.5, 721, 18000 }, + }, + ["fac"] = "A", + ["lvl"] = "29-30", + ["rnk"] = "1", + }, + [6408] = { + ["coords"] = { + [1] = { 56.3, 74.3, 14, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [6410] = { + ["coords"] = { + [1] = { 37.7, 28.2, 215, 30 }, + [2] = { 38.9, 56, 1638, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [6411] = { + ["coords"] = { + [1] = { 62.1, 39.1, 1497, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [6426] = { + ["coords"] = { + [1] = { 26, 69.6, 5136, 900 }, + [2] = { 41.6, 67.9, 5136, 900 }, + [3] = { 32.2, 64.9, 5136, 900 }, + [4] = { 33.8, 62.9, 5136, 900 }, + [5] = { 37.6, 58.8, 5136, 900 }, + [6] = { 24.4, 58.8, 5136, 900 }, + [7] = { 33.1, 56.8, 5136, 900 }, + [8] = { 27.3, 56.3, 5136, 900 }, + [9] = { 40.7, 55.1, 5136, 900 }, + [10] = { 21.8, 52.7, 5136, 900 }, + [11] = { 27, 50.8, 5136, 900 }, + [12] = { 46.5, 47.2, 5136, 900 }, + [13] = { 51.4, 46.6, 5136, 900 }, + }, + ["lvl"] = "31-33", + ["rnk"] = "1", + }, + [6427] = { + ["coords"] = { + [1] = { 38.4, 68.9, 5136, 900 }, + [2] = { 35.5, 66.9, 5136, 900 }, + [3] = { 51.6, 65.9, 5136, 900 }, + [4] = { 45.9, 56.4, 5136, 900 }, + [5] = { 26.9, 52.9, 5136, 900 }, + [6] = { 24.2, 52.1, 5136, 900 }, + [7] = { 40.8, 46.6, 5136, 900 }, + [8] = { 36.1, 43.9, 5136, 900 }, + }, + ["lvl"] = "32-33", + ["rnk"] = "1", + }, + [6446] = { + ["coords"] = { + [1] = { 42.7, 53.6, 1637, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [6466] = { + ["coords"] = { + [1] = { 54, 68, 1637, 120 }, + }, + ["lvl"] = "12", + }, + [6467] = { + ["coords"] = { + [1] = { 8, 67.4, 28, 30 }, + [2] = { 83.5, 69.1, 1497, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [6487] = { + ["coords"] = { + [1] = { 83.2, 74.5, 5135, 604800 }, + }, + ["lvl"] = "37", + ["rnk"] = "1", + }, + [6488] = { + ["coords"] = { + [1] = { 26, 69.6, 5136, 604800 }, + [2] = { 41.6, 67.9, 5136, 604800 }, + [3] = { 51.7, 67.9, 5136, 604800 }, + [4] = { 35.4, 67.1, 5136, 604800 }, + [5] = { 27.4, 56.3, 5136, 604800 }, + [6] = { 40.8, 46.6, 5136, 604800 }, + [7] = { 36.1, 43.9, 5136, 604800 }, + }, + ["lvl"] = "33", + ["rnk"] = "1", + }, + [6489] = { + ["coords"] = { + [1] = { 26, 69.6, 5136, 604800 }, + [2] = { 41.6, 67.9, 5136, 604800 }, + [3] = { 51.7, 67.9, 5136, 604800 }, + [4] = { 35.4, 67.1, 5136, 604800 }, + [5] = { 27.3, 56.2, 5136, 604800 }, + [6] = { 40.8, 46.6, 5136, 604800 }, + [7] = { 36.1, 43.9, 5136, 604800 }, + }, + ["lvl"] = "33", + ["rnk"] = "1", + }, + [6490] = { + ["coords"] = { + [1] = { 26, 69.6, 5136, 604800 }, + [2] = { 41.6, 67.9, 5136, 604800 }, + [3] = { 51.7, 67.9, 5136, 604800 }, + [4] = { 35.4, 67.1, 5136, 604800 }, + [5] = { 27.4, 56.4, 5136, 604800 }, + [6] = { 40.8, 46.6, 5136, 604800 }, + [7] = { 36.1, 43.9, 5136, 604800 }, + }, + ["lvl"] = "33", + ["rnk"] = "1", + }, + [6491] = { + ["coords"] = { + [1] = { 30, 69.5, 1, 60 }, + [2] = { 47.3, 54.6, 1, 60 }, + [3] = { 54.4, 39.2, 1, 60 }, + [4] = { 8.4, 55.3, 3, 490 }, + [5] = { 56.7, 23.7, 3, 180 }, + [6] = { 51.1, 12.1, 4, 490 }, + [7] = { 50.3, 62.4, 8, 490 }, + [8] = { 75.1, 59, 10, 490 }, + [9] = { 20, 49.2, 10, 25 }, + [10] = { 11, 43.8, 11, 490 }, + [11] = { 49.4, 41.7, 11, 490 }, + [12] = { 83.6, 69.7, 12, 60 }, + [13] = { 39.5, 60.5, 12, 490 }, + [14] = { 49.7, 42.5, 12, 60 }, + [15] = { 57.2, 73.3, 14, 490 }, + [16] = { 44.2, 69.4, 14, 490 }, + [17] = { 53.5, 44.5, 14, 490 }, + [18] = { 47.4, 17.9, 14, 490 }, + [19] = { 41.2, 74.4, 15, 25 }, + [20] = { 63.6, 43.1, 15, 490 }, + [21] = { 39.7, 30.8, 15, 490 }, + [22] = { 14, 78.6, 16, 490 }, + [23] = { 54.3, 71.5, 16, 490 }, + [24] = { 70.4, 16.1, 16, 490 }, + [25] = { 43.4, 92.6, 17, 490 }, + [26] = { 45.3, 61.1, 17, 490 }, + [27] = { 60.2, 39.7, 17, 490 }, + [28] = { 50.7, 32.6, 17, 490 }, + [29] = { 45, 86, 28, 490 }, + [30] = { 65.6, 74.6, 28, 490 }, + [31] = { 25.3, 56.8, 28, 490 }, + [32] = { 30.4, 73.3, 33, 490 }, + [33] = { 33.1, 48.7, 33, 120 }, + [34] = { 38.4, 9, 33, 490 }, + [35] = { 63.5, 81.4, 36, 490 }, + [36] = { 82.2, 32, 36, 490 }, + [37] = { 79, 62.9, 38, 25 }, + [38] = { 32.6, 47, 38, 490 }, + [39] = { 51.7, 49.7, 40, 490 }, + [40] = { 40, 74.2, 41, 60 }, + [41] = { 20.8, 56.6, 44, 490 }, + [42] = { 48.8, 55.6, 45, 490 }, + [43] = { 64.1, 24.1, 46, 490 }, + [44] = { 73.1, 68.2, 47, 490 }, + [45] = { 16.9, 44.5, 47, 490 }, + [46] = { 35.5, 22.8, 51, 490 }, + [47] = { 82, 69.7, 85, 490 }, + [48] = { 62.2, 68, 85, 25 }, + [49] = { 30.8, 64.9, 85, 490 }, + [50] = { 4.9, 55.6, 85, 300 }, + [51] = { 56.4, 49.4, 85, 490 }, + [52] = { 79, 40.7, 85, 490 }, + [53] = { 44.3, 41.5, 130, 490 }, + [54] = { 39.2, 93.7, 139, 490 }, + [55] = { 37.8, 70.1, 139, 60 }, + [56] = { 80.1, 64.6, 139, 490 }, + [57] = { 47.3, 44.2, 139, 490 }, + [58] = { 8.7, 25.9, 139, 300 }, + [59] = { 56.2, 63.3, 141, 60 }, + [60] = { 33.4, 52.3, 141, 60 }, + [61] = { 58.7, 42.3, 141, 60 }, + [62] = { 43.6, 92.4, 148, 490 }, + [63] = { 41.8, 36.6, 148, 490 }, + [64] = { 42.6, 78.1, 215, 490 }, + [65] = { 46.5, 55.5, 215, 490 }, + [66] = { 41.3, 20.7, 215, 490 }, + [67] = { 51.8, 52.5, 267, 490 }, + [68] = { 64.5, 19.7, 267, 490 }, + [69] = { 80.7, 58.4, 331, 490 }, + [70] = { 40.5, 52.8, 331, 490 }, + [71] = { 27.9, 9.7, 331, 490 }, + [72] = { 31.8, 48.2, 357, 490 }, + [73] = { 54.8, 48.1, 357, 490 }, + [74] = { 73, 44.5, 357, 490 }, + [75] = { 56.8, 87, 361, 490 }, + [76] = { 49.6, 30.7, 361, 490 }, + [77] = { 68.7, 53.3, 400, 490 }, + [78] = { 30.6, 23, 400, 490 }, + [79] = { 50.4, 62.9, 405, 490 }, + [80] = { 58.4, 62.9, 406, 490 }, + [81] = { 23.1, 12.4, 406, 25 }, + [82] = { 67.4, 67.6, 408, 300 }, + [83] = { 49.1, 24, 409, 300 }, + [84] = { 30.7, 73.9, 440, 120 }, + [85] = { 64.9, 56, 440, 180 }, + [86] = { 32.2, 29, 440, 490 }, + [87] = { 53.9, 28.8, 440, 490 }, + [88] = { 80.3, 50.3, 490, 490 }, + [89] = { 22.3, 19.3, 490, 490 }, + [90] = { 62.2, 70.1, 493, 490 }, + [91] = { 15.2, 61.9, 616, 300 }, + [92] = { 85.9, 28.8, 616, 120 }, + [93] = { 4, 7.8, 616, 490 }, + [94] = { 61.2, 34.7, 618, 490 }, + [95] = { 60.4, 38.8, 876, 120 }, + [96] = { 28.2, 87.1, 1377, 60 }, + [97] = { 47.2, 37.3, 1377, 490 }, + [98] = { 81.2, 20.8, 1377, 490 }, + [99] = { 67.9, 14, 1497, 25 }, + [100] = { 77.7, 25.9, 1657, 60 }, + [101] = { 74, 48.4, 1941, 180 }, + [102] = { 47.3, 63.7, 2040, 300 }, + [103] = { 39.2, 45.3, 4012, 490 }, + [104] = { 61.3, 33.8, 4012, 300 }, + [105] = { 44.8, 79.8, 5121, 280 }, + [106] = { 44.9, 57.6, 5179, 300 }, + [107] = { 49.3, 88.3, 5225, 300 }, + [108] = { 60.3, 32.3, 5225, 300 }, + [109] = { 51.7, 55.2, 5536, 300 }, + [110] = { 40.9, 68.8, 5561, 120 }, + [111] = { 50.7, 47.6, 5581, 120 }, + [112] = { 70.8, 16.8, 5581, 120 }, + [113] = { 26.3, 94.3, 5602, 180 }, + [114] = { 39, 76.5, 5602, 25 }, + [115] = { 15.2, 68.3, 5602, 490 }, + [116] = { 50.7, 59.8, 5602, 120 }, + [117] = { 47.4, 19.1, 5602, 120 }, + [118] = { 6.7, 11, 5602, 490 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [6495] = { + ["coords"] = { + [1] = { 80.4, 76.5, 400, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [6497] = { + ["coords"] = { + [1] = { 54.6, 74, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "13", + }, + [6498] = { + ["coords"] = { + [1] = { 50.1, 60.7, 490, 900 }, + [2] = { 71, 52.3, 490, 900 }, + [3] = { 56.9, 51.3, 490, 900 }, + [4] = { 31.2, 36.4, 490, 900 }, + [5] = { 56.8, 24, 490, 900 }, + [6] = { 34.6, 22.4, 490, 600 }, + }, + ["lvl"] = "54-55", + ["rnk"] = "1", + }, + [6499] = { + ["coords"] = { + [1] = { 50.1, 60.7, 490, 900 }, + [2] = { 71, 52.3, 490, 900 }, + [3] = { 56.9, 51.3, 490, 900 }, + [4] = { 31.2, 36.4, 490, 900 }, + [5] = { 56.8, 24, 490, 900 }, + [6] = { 34.6, 22.4, 490, 600 }, + }, + ["lvl"] = "54-56", + ["rnk"] = "1", + }, + [6500] = { + ["coords"] = { + [1] = { 50.1, 60.7, 490, 900 }, + [2] = { 71, 52.3, 490, 900 }, + [3] = { 56.9, 51.3, 490, 900 }, + [4] = { 31.2, 36.4, 490, 900 }, + [5] = { 56.8, 24, 490, 900 }, + [6] = { 34.6, 22.4, 490, 600 }, + }, + ["lvl"] = "54-55", + ["rnk"] = "1", + }, + [6505] = { + ["coords"] = { + [1] = { 61.9, 83.2, 490, 300 }, + [2] = { 61.4, 81.9, 490, 300 }, + [3] = { 59.8, 81.6, 490, 300 }, + [4] = { 61, 81.6, 490, 300 }, + [5] = { 59.6, 81.1, 490, 300 }, + [6] = { 62.5, 80.4, 490, 300 }, + [7] = { 63.6, 80.2, 490, 300 }, + [8] = { 58.3, 80, 490, 300 }, + [9] = { 59.6, 79.2, 490, 300 }, + [10] = { 64.8, 79.1, 490, 300 }, + [11] = { 61.3, 78.8, 490, 300 }, + [12] = { 67.9, 78.7, 490, 300 }, + [13] = { 58, 78.5, 490, 300 }, + [14] = { 60.6, 78.1, 490, 300 }, + [15] = { 63.4, 78.1, 490, 300 }, + [16] = { 66.3, 77.8, 490, 300 }, + [17] = { 64, 77.5, 490, 300 }, + [18] = { 57.4, 77.1, 490, 300 }, + [19] = { 62.4, 76.8, 490, 300 }, + [20] = { 62.7, 76.3, 490, 300 }, + [21] = { 58.3, 76.1, 490, 300 }, + [22] = { 59.9, 75.9, 490, 300 }, + [23] = { 61.4, 75.8, 490, 300 }, + [24] = { 60.7, 75.3, 490, 300 }, + [25] = { 64.6, 75.1, 490, 300 }, + [26] = { 68.1, 75, 490, 300 }, + [27] = { 59.2, 74.7, 490, 300 }, + [28] = { 64.2, 74.2, 490, 300 }, + [29] = { 60, 73.7, 490, 300 }, + [30] = { 67.5, 73.6, 490, 300 }, + [31] = { 60.9, 73.4, 490, 300 }, + [32] = { 67.6, 72.9, 490, 300 }, + [33] = { 61.5, 72.7, 490, 300 }, + [34] = { 67.6, 72.1, 490, 300 }, + [35] = { 64.1, 72.1, 490, 300 }, + [36] = { 62.6, 72, 490, 300 }, + [37] = { 66.8, 71.1, 490, 300 }, + [38] = { 65.1, 71.1, 490, 300 }, + [39] = { 59.7, 71, 490, 300 }, + [40] = { 61.6, 70.9, 490, 300 }, + [41] = { 60.7, 69.7, 490, 300 }, + [42] = { 66.3, 68, 490, 300 }, + [43] = { 66.5, 68, 490, 300 }, + [44] = { 68.1, 67.4, 490, 300 }, + [45] = { 60.7, 67, 490, 300 }, + [46] = { 62.9, 66.7, 490, 300 }, + [47] = { 61.7, 66.3, 490, 300 }, + [48] = { 63.1, 66.3, 490, 300 }, + [49] = { 67.2, 65.7, 490, 300 }, + [50] = { 65.2, 65.4, 490, 300 }, + [51] = { 64.5, 64, 490, 300 }, + [52] = { 67, 62.9, 490, 300 }, + [53] = { 63.6, 62.7, 490, 300 }, + [54] = { 64.5, 61.9, 490, 300 }, + [55] = { 66.4, 61.8, 490, 300 }, + [56] = { 68.2, 61.2, 490, 300 }, + [57] = { 63.9, 61.1, 490, 300 }, + [58] = { 65.2, 60.6, 490, 300 }, + [59] = { 67.5, 60.2, 490, 300 }, + }, + ["lvl"] = "48-49", + }, + [6506] = { + ["coords"] = { + [1] = { 61.9, 83.2, 490, 300 }, + [2] = { 61.4, 81.9, 490, 300 }, + [3] = { 59.8, 81.6, 490, 300 }, + [4] = { 61, 81.6, 490, 300 }, + [5] = { 59.6, 81.1, 490, 300 }, + [6] = { 62.5, 80.4, 490, 300 }, + [7] = { 63.6, 80.2, 490, 300 }, + [8] = { 58.3, 80, 490, 300 }, + [9] = { 59.6, 79.2, 490, 300 }, + [10] = { 64.8, 79.1, 490, 300 }, + [11] = { 61.3, 78.8, 490, 300 }, + [12] = { 67.9, 78.7, 490, 300 }, + [13] = { 58, 78.5, 490, 300 }, + [14] = { 60.6, 78.1, 490, 300 }, + [15] = { 63.4, 78.1, 490, 300 }, + [16] = { 66.3, 77.8, 490, 300 }, + [17] = { 64, 77.5, 490, 300 }, + [18] = { 57.4, 77.1, 490, 300 }, + [19] = { 62.4, 76.8, 490, 300 }, + [20] = { 62.7, 76.3, 490, 300 }, + [21] = { 58.3, 76.1, 490, 300 }, + [22] = { 59.9, 75.9, 490, 300 }, + [23] = { 61.4, 75.8, 490, 300 }, + [24] = { 60.7, 75.3, 490, 300 }, + [25] = { 64.6, 75.1, 490, 300 }, + [26] = { 68.1, 75, 490, 300 }, + [27] = { 59.2, 74.7, 490, 300 }, + [28] = { 64.2, 74.2, 490, 300 }, + [29] = { 60, 73.7, 490, 300 }, + [30] = { 67.5, 73.6, 490, 300 }, + [31] = { 60.9, 73.4, 490, 300 }, + [32] = { 67.6, 72.9, 490, 300 }, + [33] = { 61.5, 72.7, 490, 300 }, + [34] = { 67.6, 72.1, 490, 300 }, + [35] = { 64.1, 72.1, 490, 300 }, + [36] = { 62.6, 72, 490, 300 }, + [37] = { 66.8, 71.1, 490, 300 }, + [38] = { 65.1, 71.1, 490, 300 }, + [39] = { 59.7, 71, 490, 300 }, + [40] = { 61.6, 70.9, 490, 300 }, + [41] = { 60.7, 69.7, 490, 300 }, + [42] = { 66.3, 68, 490, 300 }, + [43] = { 66.5, 68, 490, 300 }, + [44] = { 68.1, 67.4, 490, 300 }, + [45] = { 60.7, 67, 490, 300 }, + [46] = { 62.9, 66.7, 490, 300 }, + [47] = { 61.7, 66.3, 490, 300 }, + [48] = { 63.1, 66.3, 490, 300 }, + [49] = { 67.2, 65.7, 490, 300 }, + [50] = { 65.2, 65.4, 490, 300 }, + [51] = { 64.5, 64, 490, 300 }, + [52] = { 67, 62.9, 490, 300 }, + [53] = { 63.6, 62.7, 490, 300 }, + [54] = { 64.5, 61.9, 490, 300 }, + [55] = { 66.4, 61.8, 490, 300 }, + [56] = { 68.2, 61.2, 490, 300 }, + [57] = { 63.9, 61.1, 490, 300 }, + [58] = { 65.2, 60.6, 490, 300 }, + [59] = { 67.5, 60.2, 490, 300 }, + }, + ["lvl"] = "49-50", + }, + [6507] = { + ["coords"] = { + [1] = { 71.6, 61.5, 490, 300 }, + [2] = { 70.6, 60.1, 490, 300 }, + [3] = { 62.6, 59, 490, 300 }, + [4] = { 70.5, 58.8, 490, 300 }, + [5] = { 64.3, 58.7, 490, 300 }, + [6] = { 69.2, 57.5, 490, 300 }, + [7] = { 67.1, 57.3, 490, 300 }, + [8] = { 69.6, 56.1, 490, 300 }, + [9] = { 68.3, 56, 490, 300 }, + [10] = { 63.6, 54.9, 490, 300 }, + [11] = { 68.7, 54.9, 490, 300 }, + [12] = { 62.7, 54.8, 490, 300 }, + [13] = { 68, 53.9, 490, 300 }, + [14] = { 70.9, 53.5, 490, 300 }, + [15] = { 71.6, 53.4, 490, 300 }, + [16] = { 69.7, 53.3, 490, 300 }, + [17] = { 62.7, 53.3, 490, 300 }, + [18] = { 70.3, 52.9, 490, 300 }, + [19] = { 67.5, 52.8, 490, 300 }, + [20] = { 70.8, 52.1, 490, 300 }, + [21] = { 63.5, 52, 490, 300 }, + [22] = { 66.4, 51.8, 490, 300 }, + [23] = { 72.6, 50.6, 490, 300 }, + [24] = { 70.3, 50.6, 490, 300 }, + [25] = { 67.5, 50.5, 490, 300 }, + [26] = { 62.4, 50.5, 490, 300 }, + [27] = { 64.4, 50.5, 490, 300 }, + [28] = { 71.8, 50.3, 490, 300 }, + [29] = { 72.6, 50.2, 490, 300 }, + [30] = { 63.8, 50.1, 490, 300 }, + [31] = { 69.6, 49.7, 490, 300 }, + [32] = { 65.7, 49.5, 490, 300 }, + [33] = { 67.8, 49.4, 490, 300 }, + [34] = { 65.8, 49.1, 490, 300 }, + [35] = { 64.5, 49.1, 490, 300 }, + [36] = { 66.9, 49.1, 490, 300 }, + [37] = { 66.6, 48.1, 490, 300 }, + [38] = { 64.1, 47.8, 490, 300 }, + [39] = { 65.5, 46.8, 490, 300 }, + [40] = { 70.6, 45.4, 490, 300 }, + [41] = { 68, 45.2, 490, 300 }, + }, + ["lvl"] = "49-50", + }, + [6508] = { + ["coords"] = { + [1] = { 71.6, 61.5, 490, 300 }, + [2] = { 70.6, 60.1, 490, 300 }, + [3] = { 62.6, 59, 490, 300 }, + [4] = { 70.5, 58.8, 490, 300 }, + [5] = { 64.3, 58.7, 490, 300 }, + [6] = { 69.2, 57.5, 490, 300 }, + [7] = { 67.1, 57.3, 490, 300 }, + [8] = { 69.6, 56.1, 490, 300 }, + [9] = { 68.3, 56, 490, 300 }, + [10] = { 63.6, 54.9, 490, 300 }, + [11] = { 68.7, 54.9, 490, 300 }, + [12] = { 62.7, 54.8, 490, 300 }, + [13] = { 68, 53.9, 490, 300 }, + [14] = { 70.9, 53.5, 490, 300 }, + [15] = { 71.6, 53.4, 490, 300 }, + [16] = { 69.7, 53.3, 490, 300 }, + [17] = { 62.7, 53.3, 490, 300 }, + [18] = { 70.3, 52.9, 490, 300 }, + [19] = { 67.5, 52.8, 490, 300 }, + [20] = { 70.8, 52.1, 490, 300 }, + [21] = { 63.5, 52, 490, 300 }, + [22] = { 66.4, 51.8, 490, 300 }, + [23] = { 72.6, 50.6, 490, 300 }, + [24] = { 70.3, 50.6, 490, 300 }, + [25] = { 67.5, 50.5, 490, 300 }, + [26] = { 62.4, 50.5, 490, 300 }, + [27] = { 64.4, 50.5, 490, 300 }, + [28] = { 71.8, 50.3, 490, 300 }, + [29] = { 72.6, 50.2, 490, 300 }, + [30] = { 63.8, 50.1, 490, 300 }, + [31] = { 69.6, 49.7, 490, 300 }, + [32] = { 65.7, 49.5, 490, 300 }, + [33] = { 67.8, 49.4, 490, 300 }, + [34] = { 65.8, 49.1, 490, 300 }, + [35] = { 64.5, 49.1, 490, 300 }, + [36] = { 66.9, 49.1, 490, 300 }, + [37] = { 66.6, 48.1, 490, 300 }, + [38] = { 64.1, 47.8, 490, 300 }, + [39] = { 65.5, 46.8, 490, 300 }, + [40] = { 70.6, 45.4, 490, 300 }, + [41] = { 68, 45.2, 490, 300 }, + }, + ["lvl"] = "50-51", + }, + [6509] = { + ["coords"] = { + [1] = { 73.5, 69.8, 490, 300 }, + [2] = { 70.6, 65.8, 490, 300 }, + [3] = { 71.6, 64, 490, 300 }, + [4] = { 74.2, 50.8, 490, 300 }, + [5] = { 76.1, 48, 490, 300 }, + [6] = { 75.1, 46.9, 490, 300 }, + [7] = { 73.2, 46.3, 490, 300 }, + [8] = { 76, 45.1, 490, 300 }, + [9] = { 75, 44.7, 490, 300 }, + [10] = { 74.6, 43.7, 490, 300 }, + [11] = { 63.6, 43.7, 490, 300 }, + [12] = { 75.4, 41.1, 490, 300 }, + [13] = { 60.7, 41, 490, 300 }, + [14] = { 73, 41, 490, 300 }, + [15] = { 60.4, 40.4, 490, 300 }, + [16] = { 60.3, 39.8, 490, 300 }, + [17] = { 75, 39.6, 490, 300 }, + [18] = { 71, 39.3, 490, 300 }, + [19] = { 66.9, 38.9, 490, 300 }, + [20] = { 72.5, 38.6, 490, 300 }, + [21] = { 62.7, 38.6, 490, 300 }, + [22] = { 72.7, 37.7, 490, 300 }, + [23] = { 56.4, 37.3, 490, 300 }, + [24] = { 58, 37.1, 490, 300 }, + [25] = { 59.9, 36.6, 490, 300 }, + [26] = { 56.6, 36, 490, 300 }, + [27] = { 66.5, 35.9, 490, 300 }, + [28] = { 73.5, 35.4, 490, 300 }, + [29] = { 59.2, 35.3, 490, 300 }, + [30] = { 67.2, 34.8, 490, 300 }, + [31] = { 69, 34.6, 490, 300 }, + [32] = { 60.3, 34.1, 490, 300 }, + [33] = { 67.8, 33.6, 490, 300 }, + [34] = { 66, 33.5, 490, 300 }, + [35] = { 63.7, 33.4, 490, 300 }, + [36] = { 56.7, 33.1, 490, 300 }, + [37] = { 69.3, 31.9, 490, 300 }, + [38] = { 67.8, 31.8, 490, 300 }, + [39] = { 70.8, 31.7, 490, 300 }, + [40] = { 65.8, 31.7, 490, 300 }, + [41] = { 63.1, 31.6, 490, 300 }, + [42] = { 64.5, 30.7, 490, 300 }, + [43] = { 72, 30.7, 490, 300 }, + [44] = { 67, 30.1, 490, 300 }, + [45] = { 68.4, 30.1, 490, 300 }, + [46] = { 68.9, 29.7, 490, 300 }, + [47] = { 64.7, 29.3, 490, 300 }, + [48] = { 70.5, 28.4, 490, 300 }, + [49] = { 65.5, 27.8, 490, 300 }, + [50] = { 70.7, 27.7, 490, 300 }, + [51] = { 67.6, 27.6, 490, 300 }, + [52] = { 61.1, 27.6, 490, 300 }, + [53] = { 65.3, 26.4, 490, 300 }, + [54] = { 67, 26.2, 490, 300 }, + [55] = { 68.9, 24.9, 490, 300 }, + [56] = { 67.9, 24.4, 490, 300 }, + [57] = { 69.5, 23.1, 490, 300 }, + [58] = { 69.6, 22.5, 490, 300 }, + [59] = { 70.9, 21.9, 490, 300 }, + [60] = { 68.4, 21.4, 490, 300 }, + [61] = { 69.2, 20.5, 490, 300 }, + }, + ["lvl"] = "48-49", + }, + [6510] = { + ["coords"] = { + [1] = { 58.9, 83.7, 490, 300 }, + [2] = { 56.2, 80.2, 490, 300 }, + [3] = { 57.6, 73.7, 490, 300 }, + [4] = { 54.8, 72.4, 490, 300 }, + [5] = { 44.7, 71, 490, 300 }, + [6] = { 53.2, 70.8, 490, 300 }, + [7] = { 49.4, 70.6, 490, 300 }, + [8] = { 46.6, 68.8, 490, 300 }, + [9] = { 57, 68.6, 490, 300 }, + [10] = { 51.5, 68.5, 490, 300 }, + [11] = { 46.5, 68.3, 490, 300 }, + [12] = { 48.3, 67.8, 490, 300 }, + [13] = { 58.1, 66.9, 490, 300 }, + [14] = { 45.5, 66.9, 490, 300 }, + [15] = { 55.1, 66.7, 490, 300 }, + [16] = { 50, 65.1, 490, 300 }, + [17] = { 52.8, 64.4, 490, 300 }, + [18] = { 50.7, 64, 490, 300 }, + [19] = { 60.6, 63.9, 490, 300 }, + [20] = { 53.1, 62.5, 490, 300 }, + [21] = { 52.6, 61.9, 490, 300 }, + [22] = { 56.2, 61.7, 490, 300 }, + [23] = { 48.2, 61.5, 490, 300 }, + [24] = { 49.9, 61.4, 490, 300 }, + [25] = { 59.8, 61.1, 490, 300 }, + [26] = { 43.8, 60.2, 490, 300 }, + [27] = { 51.4, 60.2, 490, 300 }, + [28] = { 59.9, 58.1, 490, 300 }, + [29] = { 61, 56.3, 490, 300 }, + [30] = { 57.4, 54.5, 490, 300 }, + [31] = { 60.7, 54.2, 490, 300 }, + [32] = { 58.5, 52.6, 490, 300 }, + [33] = { 57.2, 49.7, 490, 300 }, + [34] = { 61.3, 48.9, 490, 300 }, + [35] = { 60.4, 46.5, 490, 300 }, + [36] = { 57.7, 46.5, 490, 300 }, + [37] = { 59.9, 45.3, 490, 300 }, + [38] = { 59, 45, 490, 300 }, + [39] = { 65.8, 42.9, 490, 300 }, + [40] = { 62.5, 42.4, 490, 300 }, + [41] = { 59.7, 41.5, 490, 300 }, + [42] = { 44.9, 36.9, 490, 300 }, + [43] = { 50.8, 34.5, 490, 300 }, + [44] = { 53.8, 31.1, 490, 300 }, + [45] = { 44.6, 30.6, 490, 300 }, + [46] = { 56.1, 30.5, 490, 300 }, + [47] = { 45.4, 29, 490, 300 }, + [48] = { 56.8, 28.9, 490, 300 }, + [49] = { 43.7, 28.7, 490, 300 }, + [50] = { 47.9, 27.6, 490, 300 }, + [51] = { 44.6, 27, 490, 300 }, + [52] = { 57.4, 25.7, 490, 300 }, + [53] = { 43.9, 25.5, 490, 300 }, + [54] = { 56.3, 25.2, 490, 300 }, + [55] = { 56.8, 23.5, 490, 300 }, + [56] = { 56.3, 22.4, 490, 300 }, + [57] = { 46.4, 22.2, 490, 300 }, + [58] = { 60, 19.9, 490, 300 }, + [59] = { 58.3, 19.8, 490, 300 }, + [60] = { 58.6, 17.3, 490, 300 }, + [61] = { 57.2, 16.6, 490, 300 }, + [62] = { 56.5, 15.6, 490, 300 }, + [63] = { 53.4, 14.8, 490, 300 }, + [64] = { 52, 14.5, 490, 300 }, + [65] = { 54.2, 13.7, 490, 300 }, + }, + ["lvl"] = "51-52", + }, + [6511] = { + ["coords"] = { + [1] = { 73.5, 69.8, 490, 300 }, + [2] = { 70.6, 65.8, 490, 300 }, + [3] = { 71.6, 64, 490, 300 }, + [4] = { 74.2, 50.8, 490, 300 }, + [5] = { 76.1, 48, 490, 300 }, + [6] = { 75.1, 46.9, 490, 300 }, + [7] = { 73.2, 46.3, 490, 300 }, + [8] = { 76, 45.1, 490, 300 }, + [9] = { 75, 44.7, 490, 300 }, + [10] = { 74.6, 43.7, 490, 300 }, + [11] = { 63.6, 43.7, 490, 300 }, + [12] = { 75.4, 41.1, 490, 300 }, + [13] = { 60.7, 41, 490, 300 }, + [14] = { 73, 41, 490, 300 }, + [15] = { 60.4, 40.4, 490, 300 }, + [16] = { 60.3, 39.8, 490, 300 }, + [17] = { 75, 39.6, 490, 300 }, + [18] = { 71, 39.3, 490, 300 }, + [19] = { 66.9, 38.9, 490, 300 }, + [20] = { 72.5, 38.6, 490, 300 }, + [21] = { 62.7, 38.6, 490, 300 }, + [22] = { 72.7, 37.7, 490, 300 }, + [23] = { 56.4, 37.3, 490, 300 }, + [24] = { 58, 37.1, 490, 300 }, + [25] = { 59.9, 36.6, 490, 300 }, + [26] = { 56.6, 36, 490, 300 }, + [27] = { 66.5, 35.9, 490, 300 }, + [28] = { 73.5, 35.4, 490, 300 }, + [29] = { 59.2, 35.3, 490, 300 }, + [30] = { 67.2, 34.8, 490, 300 }, + [31] = { 69, 34.6, 490, 300 }, + [32] = { 60.3, 34.1, 490, 300 }, + [33] = { 67.8, 33.6, 490, 300 }, + [34] = { 66, 33.5, 490, 300 }, + [35] = { 63.7, 33.4, 490, 300 }, + [36] = { 56.7, 33.1, 490, 300 }, + [37] = { 69.3, 31.9, 490, 300 }, + [38] = { 67.8, 31.8, 490, 300 }, + [39] = { 70.8, 31.7, 490, 300 }, + [40] = { 65.8, 31.7, 490, 300 }, + [41] = { 63.1, 31.6, 490, 300 }, + [42] = { 64.5, 30.7, 490, 300 }, + [43] = { 72, 30.7, 490, 300 }, + [44] = { 67, 30.1, 490, 300 }, + [45] = { 68.4, 30.1, 490, 300 }, + [46] = { 68.9, 29.7, 490, 300 }, + [47] = { 64.7, 29.3, 490, 300 }, + [48] = { 70.5, 28.4, 490, 300 }, + [49] = { 65.5, 27.8, 490, 300 }, + [50] = { 70.7, 27.7, 490, 300 }, + [51] = { 67.6, 27.6, 490, 300 }, + [52] = { 61.1, 27.6, 490, 300 }, + [53] = { 65.3, 26.4, 490, 300 }, + [54] = { 67, 26.2, 490, 300 }, + [55] = { 68.9, 24.9, 490, 300 }, + [56] = { 67.9, 24.4, 490, 300 }, + [57] = { 69.5, 23.1, 490, 300 }, + [58] = { 69.6, 22.5, 490, 300 }, + [59] = { 70.9, 21.9, 490, 300 }, + [60] = { 68.4, 21.4, 490, 300 }, + [61] = { 69.2, 20.5, 490, 300 }, + }, + ["lvl"] = "49-50", + }, + [6512] = { + ["coords"] = { + [1] = { 38.2, 81.7, 490, 300 }, + [2] = { 35.5, 78.9, 490, 300 }, + [3] = { 40.7, 78.8, 490, 300 }, + [4] = { 30.8, 77.1, 490, 300 }, + [5] = { 33.3, 76.7, 490, 300 }, + [6] = { 37.2, 75.3, 490, 300 }, + [7] = { 32.2, 72.5, 490, 300 }, + [8] = { 37, 69.8, 490, 300 }, + [9] = { 33.6, 69.3, 490, 300 }, + [10] = { 36.5, 68.2, 490, 300 }, + [11] = { 26.9, 68.1, 490, 300 }, + [12] = { 30.8, 65.9, 490, 300 }, + [13] = { 33, 65.7, 490, 300 }, + [14] = { 34.7, 62.7, 490, 300 }, + [15] = { 29.4, 59.7, 490, 300 }, + [16] = { 25, 57.9, 490, 300 }, + [17] = { 29.5, 57, 490, 300 }, + [18] = { 42.3, 55.9, 490, 300 }, + [19] = { 39.2, 54.9, 490, 300 }, + [20] = { 40.8, 54.2, 490, 300 }, + [21] = { 24.8, 52.2, 490, 300 }, + [22] = { 39.2, 51.9, 490, 300 }, + [23] = { 41.9, 48.1, 490, 300 }, + [24] = { 37.9, 47.9, 490, 300 }, + [25] = { 26.3, 46.7, 490, 300 }, + [26] = { 29.9, 44.3, 490, 300 }, + [27] = { 35.6, 43.7, 490, 300 }, + [28] = { 41.5, 43.3, 490, 300 }, + [29] = { 27.7, 43.2, 490, 300 }, + [30] = { 41.9, 42.8, 490, 300 }, + [31] = { 35.4, 40.7, 490, 300 }, + [32] = { 30.3, 40.7, 490, 300 }, + [33] = { 34.2, 40.6, 490, 300 }, + [34] = { 29, 39, 490, 300 }, + [35] = { 41.3, 38.9, 490, 300 }, + [36] = { 35.5, 38.3, 490, 300 }, + [37] = { 34.4, 35.8, 490, 300 }, + [38] = { 39.5, 35.8, 490, 300 }, + [39] = { 36.6, 34.5, 490, 300 }, + [40] = { 28.6, 33.2, 490, 300 }, + [41] = { 41.2, 32.5, 490, 300 }, + [42] = { 30.9, 31.6, 490, 300 }, + [43] = { 35.3, 30.4, 490, 300 }, + [44] = { 39.3, 30.3, 490, 300 }, + [45] = { 32.4, 28.4, 490, 300 }, + [46] = { 41.1, 25, 490, 300 }, + [47] = { 38.9, 24.6, 490, 300 }, + [48] = { 36.4, 23.5, 490, 300 }, + [49] = { 40.3, 23.3, 490, 300 }, + [50] = { 33.8, 22.5, 490, 300 }, + [51] = { 39.4, 21.6, 490, 300 }, + [52] = { 32.8, 21.5, 490, 300 }, + }, + ["lvl"] = "52-53", + }, + [6513] = { + ["coords"] = { + [1] = { 62.6, 19.7, 490, 300 }, + [2] = { 61.6, 18.1, 490, 300 }, + [3] = { 63.3, 18.1, 490, 300 }, + [4] = { 69, 17.6, 490, 300 }, + [5] = { 66.2, 17.3, 490, 300 }, + [6] = { 62.4, 17.3, 490, 300 }, + [7] = { 67.4, 17.2, 490, 300 }, + [8] = { 68.6, 16.9, 490, 300 }, + [9] = { 63.3, 16.8, 490, 300 }, + [10] = { 64.9, 16.8, 490, 300 }, + [11] = { 60.4, 16.7, 490, 300 }, + [12] = { 65.2, 16.6, 490, 300 }, + [13] = { 67.7, 16.6, 490, 300 }, + [14] = { 64.1, 16.3, 490, 300 }, + [15] = { 68.1, 15.9, 490, 300 }, + [16] = { 69.1, 15.8, 490, 300 }, + [17] = { 65.9, 15.6, 490, 300 }, + [18] = { 67.1, 15.3, 490, 300 }, + [19] = { 68.8, 15.2, 490, 300 }, + [20] = { 67.4, 15.1, 490, 300 }, + [21] = { 65.6, 14.7, 490, 300 }, + [22] = { 68.6, 14.4, 490, 300 }, + [23] = { 66.4, 14.3, 490, 300 }, + [24] = { 68.6, 14.2, 490, 300 }, + [25] = { 67.7, 13.8, 490, 300 }, + [26] = { 68.3, 13.1, 490, 300 }, + }, + ["lvl"] = "51-52", + }, + [6514] = { + ["coords"] = { + [1] = { 62.6, 19.7, 490, 300 }, + [2] = { 61.6, 18.1, 490, 300 }, + [3] = { 63.3, 18.1, 490, 300 }, + [4] = { 69, 17.6, 490, 300 }, + [5] = { 66.2, 17.3, 490, 300 }, + [6] = { 62.4, 17.3, 490, 300 }, + [7] = { 67.4, 17.2, 490, 300 }, + [8] = { 68.6, 16.9, 490, 300 }, + [9] = { 63.3, 16.8, 490, 300 }, + [10] = { 64.9, 16.8, 490, 300 }, + [11] = { 60.4, 16.7, 490, 300 }, + [12] = { 65.2, 16.6, 490, 300 }, + [13] = { 67.7, 16.6, 490, 300 }, + [14] = { 64.1, 16.3, 490, 300 }, + [15] = { 68.1, 15.9, 490, 300 }, + [16] = { 69.1, 15.8, 490, 300 }, + [17] = { 65.9, 15.6, 490, 300 }, + [18] = { 67.1, 15.3, 490, 300 }, + [19] = { 68.8, 15.2, 490, 300 }, + [20] = { 67.4, 15.1, 490, 300 }, + [21] = { 65.6, 14.7, 490, 300 }, + [22] = { 68.6, 14.4, 490, 300 }, + [23] = { 66.4, 14.3, 490, 300 }, + [24] = { 68.6, 14.2, 490, 300 }, + [25] = { 67.7, 13.8, 490, 300 }, + [26] = { 68.3, 13.1, 490, 300 }, + }, + ["lvl"] = "50-51", + }, + [6516] = { + ["coords"] = { + [1] = { 69, 17.6, 490, 300 }, + [2] = { 66.2, 17.3, 490, 300 }, + [3] = { 67.4, 17.2, 490, 300 }, + [4] = { 68.6, 16.9, 490, 300 }, + [5] = { 64.9, 16.8, 490, 300 }, + [6] = { 65.2, 16.6, 490, 300 }, + [7] = { 67.7, 16.6, 490, 300 }, + [8] = { 64.1, 16.3, 490, 300 }, + [9] = { 68.1, 15.9, 490, 300 }, + [10] = { 69.1, 15.8, 490, 300 }, + [11] = { 65.9, 15.6, 490, 300 }, + [12] = { 67.1, 15.3, 490, 300 }, + [13] = { 68.8, 15.2, 490, 300 }, + [14] = { 67.4, 15.1, 490, 300 }, + [15] = { 65.6, 14.7, 490, 300 }, + [16] = { 68.6, 14.4, 490, 300 }, + [17] = { 66.4, 14.3, 490, 300 }, + [18] = { 68.6, 14.2, 490, 300 }, + [19] = { 67.7, 13.8, 490, 300 }, + [20] = { 68.3, 13.1, 490, 300 }, + }, + ["lvl"] = "52-53", + }, + [6517] = { + ["coords"] = { + [1] = { 47.6, 36.1, 490, 300 }, + [2] = { 46.4, 35.8, 490, 300 }, + [3] = { 47.1, 34.6, 490, 300 }, + [4] = { 49.1, 33.9, 490, 300 }, + [5] = { 46.6, 33.4, 490, 300 }, + [6] = { 61.8, 33.4, 490, 300 }, + [7] = { 48.6, 33.1, 490, 300 }, + [8] = { 60, 32.9, 490, 300 }, + [9] = { 47.2, 31.9, 490, 300 }, + [10] = { 49.1, 31.6, 490, 300 }, + [11] = { 61, 31.6, 490, 300 }, + [12] = { 59, 31.4, 490, 300 }, + [13] = { 61.6, 30.6, 490, 300 }, + [14] = { 59.9, 30.3, 490, 300 }, + [15] = { 47.9, 30.1, 490, 300 }, + [16] = { 58.1, 30, 490, 300 }, + [17] = { 58.9, 29.3, 490, 300 }, + [18] = { 49.1, 29.3, 490, 300 }, + [19] = { 60, 25, 490, 300 }, + [20] = { 64.5, 24.2, 490, 300 }, + [21] = { 65.1, 24, 490, 300 }, + [22] = { 59.3, 23.9, 490, 300 }, + [23] = { 63.5, 23.6, 490, 300 }, + [24] = { 61, 23.5, 490, 300 }, + [25] = { 59.9, 22.8, 490, 300 }, + [26] = { 64.3, 22.2, 490, 300 }, + }, + ["lvl"] = "50-51", + }, + [6518] = { + ["coords"] = { + [1] = { 50.1, 28, 490, 300 }, + [2] = { 51.7, 27.6, 490, 300 }, + [3] = { 50.8, 26.4, 490, 300 }, + [4] = { 52.7, 26.4, 490, 300 }, + [5] = { 54, 26.1, 490, 300 }, + [6] = { 53.6, 25.5, 490, 300 }, + [7] = { 50.2, 25.3, 490, 300 }, + [8] = { 51.8, 25.1, 490, 300 }, + [9] = { 51.2, 24, 490, 300 }, + [10] = { 54.5, 23.7, 490, 300 }, + [11] = { 49, 23.4, 490, 300 }, + [12] = { 50.1, 22.5, 490, 300 }, + [13] = { 48.1, 22.4, 490, 300 }, + [14] = { 42.9, 22.2, 490, 300 }, + [15] = { 47.4, 21.3, 490, 300 }, + [16] = { 41.7, 21.1, 490, 300 }, + [17] = { 49.2, 20.9, 490, 300 }, + [18] = { 43.7, 20.6, 490, 300 }, + [19] = { 53.7, 19.9, 490, 300 }, + [20] = { 42.9, 19.6, 490, 300 }, + [21] = { 46.1, 19.5, 490, 300 }, + [22] = { 48.4, 19.5, 490, 300 }, + [23] = { 44.7, 19.3, 490, 300 }, + [24] = { 49.3, 18.3, 490, 300 }, + [25] = { 47.2, 18.2, 490, 300 }, + [26] = { 45.3, 18, 490, 300 }, + [27] = { 43.7, 17.8, 490, 300 }, + [28] = { 44.4, 17.2, 490, 300 }, + [29] = { 46.3, 16.7, 490, 300 }, + [30] = { 43.2, 16.6, 490, 300 }, + [31] = { 45.7, 15.5, 490, 300 }, + [32] = { 47.5, 15.1, 490, 300 }, + }, + ["lvl"] = "52-54", + }, + [6519] = { + ["coords"] = { + [1] = { 50.1, 28, 490, 300 }, + [2] = { 51.7, 27.6, 490, 300 }, + [3] = { 50.8, 26.4, 490, 300 }, + [4] = { 52.7, 26.4, 490, 300 }, + [5] = { 54, 26.1, 490, 300 }, + [6] = { 53.6, 25.5, 490, 300 }, + [7] = { 50.2, 25.3, 490, 300 }, + [8] = { 51.8, 25.1, 490, 300 }, + [9] = { 51.2, 24, 490, 300 }, + [10] = { 54.5, 23.7, 490, 300 }, + [11] = { 49, 23.4, 490, 300 }, + [12] = { 50.1, 22.5, 490, 300 }, + [13] = { 48.1, 22.4, 490, 300 }, + [14] = { 42.9, 22.2, 490, 300 }, + [15] = { 47.4, 21.3, 490, 300 }, + [16] = { 41.7, 21.1, 490, 300 }, + [17] = { 49.2, 20.9, 490, 300 }, + [18] = { 43.7, 20.6, 490, 300 }, + [19] = { 53.7, 19.9, 490, 300 }, + [20] = { 42.9, 19.6, 490, 300 }, + [21] = { 46.1, 19.5, 490, 300 }, + [22] = { 48.4, 19.5, 490, 300 }, + [23] = { 44.7, 19.3, 490, 300 }, + [24] = { 49.3, 18.3, 490, 300 }, + [25] = { 47.2, 18.2, 490, 300 }, + [26] = { 45.3, 18, 490, 300 }, + [27] = { 43.7, 17.8, 490, 300 }, + [28] = { 44.4, 17.2, 490, 300 }, + [29] = { 46.3, 16.7, 490, 300 }, + [30] = { 43.2, 16.6, 490, 300 }, + [31] = { 45.7, 15.5, 490, 300 }, + [32] = { 47.5, 15.1, 490, 300 }, + }, + ["lvl"] = "53-54", + }, + [6520] = { + ["coords"] = { + [1] = { 55.6, 57.9, 490, 300 }, + [2] = { 45.5, 56, 490, 300 }, + [3] = { 48.9, 55.8, 490, 300 }, + [4] = { 54, 54.8, 490, 300 }, + [5] = { 51.8, 54.8, 490, 300 }, + [6] = { 46.7, 53.8, 490, 300 }, + [7] = { 49.9, 53.3, 490, 300 }, + [8] = { 47.4, 53.2, 490, 300 }, + [9] = { 51.6, 51.8, 490, 300 }, + [10] = { 48.3, 51.6, 490, 300 }, + [11] = { 45.7, 51.6, 490, 300 }, + [12] = { 53.5, 51.2, 490, 300 }, + [13] = { 47.6, 50.5, 490, 300 }, + [14] = { 51, 49.4, 490, 300 }, + [15] = { 51.7, 49.1, 490, 300 }, + [16] = { 55.1, 48.8, 490, 300 }, + [17] = { 45.1, 48.5, 490, 300 }, + [18] = { 50.4, 48.4, 490, 300 }, + [19] = { 48.5, 48, 490, 300 }, + [20] = { 49.5, 47.8, 490, 300 }, + [21] = { 54.2, 47.1, 490, 300 }, + [22] = { 50.8, 47.1, 490, 300 }, + [23] = { 45.9, 46.8, 490, 300 }, + [24] = { 49.9, 46.2, 490, 300 }, + [25] = { 48.9, 46.2, 490, 300 }, + [26] = { 52.7, 45.7, 490, 300 }, + [27] = { 46.8, 45.4, 490, 300 }, + [28] = { 51.1, 45, 490, 300 }, + [29] = { 55.1, 44.7, 490, 300 }, + [30] = { 53.7, 44.5, 490, 300 }, + [31] = { 49.7, 44, 490, 300 }, + [32] = { 47.8, 44, 490, 300 }, + [33] = { 52.8, 42.8, 490, 300 }, + [34] = { 52.8, 42.6, 490, 300 }, + }, + ["lvl"] = "53-54", + }, + [6521] = { + ["coords"] = { + [1] = { 55.6, 57.9, 490, 300 }, + [2] = { 45.5, 56, 490, 300 }, + [3] = { 48.9, 55.8, 490, 300 }, + [4] = { 54, 54.8, 490, 300 }, + [5] = { 51.8, 54.8, 490, 300 }, + [6] = { 46.7, 53.8, 490, 300 }, + [7] = { 49.9, 53.3, 490, 300 }, + [8] = { 47.4, 53.2, 490, 300 }, + [9] = { 51.6, 51.8, 490, 300 }, + [10] = { 48.3, 51.6, 490, 300 }, + [11] = { 45.7, 51.6, 490, 300 }, + [12] = { 53.5, 51.2, 490, 300 }, + [13] = { 47.6, 50.5, 490, 300 }, + [14] = { 51, 49.4, 490, 300 }, + [15] = { 51.7, 49.1, 490, 300 }, + [16] = { 55.1, 48.8, 490, 300 }, + [17] = { 45.1, 48.5, 490, 300 }, + [18] = { 50.4, 48.4, 490, 300 }, + [19] = { 48.5, 48, 490, 300 }, + [20] = { 49.5, 47.8, 490, 300 }, + [21] = { 54.2, 47.1, 490, 300 }, + [22] = { 50.8, 47.1, 490, 300 }, + [23] = { 45.9, 46.8, 490, 300 }, + [24] = { 49.9, 46.2, 490, 300 }, + [25] = { 48.9, 46.2, 490, 300 }, + [26] = { 52.7, 45.7, 490, 300 }, + [27] = { 46.8, 45.4, 490, 300 }, + [28] = { 51.1, 45, 490, 300 }, + [29] = { 55.1, 44.7, 490, 300 }, + [30] = { 53.7, 44.5, 490, 300 }, + [31] = { 49.7, 44, 490, 300 }, + [32] = { 47.8, 44, 490, 300 }, + [33] = { 52.8, 42.8, 490, 300 }, + [34] = { 52.8, 42.6, 490, 300 }, + }, + ["lvl"] = "54-55", + }, + [6522] = { + ["coords"] = { + [1] = { 54.8, 76.3, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "15", + ["rnk"] = "1", + }, + [6526] = "_", + [6527] = { + ["coords"] = { + [1] = { 47.6, 36.1, 490, 300 }, + [2] = { 46.4, 35.8, 490, 300 }, + [3] = { 47.1, 34.6, 490, 300 }, + [4] = { 49.1, 33.9, 490, 300 }, + [5] = { 46.6, 33.4, 490, 300 }, + [6] = { 61.8, 33.4, 490, 300 }, + [7] = { 48.6, 33.1, 490, 300 }, + [8] = { 60, 32.9, 490, 300 }, + [9] = { 47.2, 31.9, 490, 300 }, + [10] = { 49.1, 31.6, 490, 300 }, + [11] = { 61, 31.6, 490, 300 }, + [12] = { 59, 31.4, 490, 300 }, + [13] = { 61.6, 30.6, 490, 300 }, + [14] = { 59.9, 30.3, 490, 300 }, + [15] = { 47.9, 30.1, 490, 300 }, + [16] = { 58.1, 30, 490, 300 }, + [17] = { 58.9, 29.3, 490, 300 }, + [18] = { 49.1, 29.3, 490, 300 }, + [19] = { 60, 25, 490, 300 }, + [20] = { 64.5, 24.2, 490, 300 }, + [21] = { 65.1, 24, 490, 300 }, + [22] = { 59.3, 23.9, 490, 300 }, + [23] = { 63.5, 23.6, 490, 300 }, + [24] = { 61, 23.5, 490, 300 }, + [25] = { 59.9, 22.8, 490, 300 }, + [26] = { 64.3, 22.2, 490, 300 }, + }, + ["lvl"] = "51-52", + }, + [6546] = { + ["coords"] = { + [1] = { 46, 57.1, 15, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "62", + }, + [6547] = { + ["coords"] = { + [1] = { 80.8, 85.4, 139, 18000 }, + [2] = { 80.8, 85.3, 139, 18000 }, + [3] = { 80.6, 85.1, 139, 18000 }, + [4] = { 40, 70.8, 4012, 18000 }, + [5] = { 40, 70.6, 4012, 18000 }, + [6] = { 39.8, 70.4, 4012, 18000 }, + [7] = { 68, 66, 5136, 18000 }, + [8] = { 68.2, 57.1, 5136, 18000 }, + [9] = { 72.7, 50.6, 5136, 18000 }, + [10] = { 71.2, 49.3, 5136, 18000 }, + [11] = { 68.2, 45.6, 5136, 18000 }, + [12] = { 76.3, 45.1, 5136, 18000 }, + [13] = { 65.6, 45.1, 5136, 18000 }, + [14] = { 65.6, 43, 5136, 18000 }, + [15] = { 68, 41.5, 5136, 18000 }, + [16] = { 76, 40.9, 5136, 18000 }, + [17] = { 76.8, 40.7, 5136, 18000 }, + [18] = { 78.7, 39.9, 5136, 18000 }, + [19] = { 72.1, 37.1, 5136, 18000 }, + [20] = { 67.9, 36.3, 5136, 18000 }, + [21] = { 74.8, 35.8, 5136, 18000 }, + [22] = { 69.9, 35.6, 5136, 18000 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [6548] = { + ["coords"] = { + [1] = { 78.3, 76.1, 400, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "51", + }, + [6551] = { + ["coords"] = { + [1] = { 47.8, 86.4, 490, 300 }, + [2] = { 53.3, 85.9, 490, 300 }, + [3] = { 55.4, 85.5, 490, 300 }, + [4] = { 52, 85.5, 490, 300 }, + [5] = { 56.4, 84.9, 490, 300 }, + [6] = { 45, 84.8, 490, 300 }, + [7] = { 52.8, 84.8, 490, 300 }, + [8] = { 46.5, 84.8, 490, 300 }, + [9] = { 51, 84.7, 490, 300 }, + [10] = { 54.1, 84.6, 490, 300 }, + [11] = { 50, 84.5, 490, 300 }, + [12] = { 55.4, 84.5, 490, 300 }, + [13] = { 47.3, 84.3, 490, 300 }, + [14] = { 43.8, 84, 490, 300 }, + [15] = { 44.8, 83.3, 490, 300 }, + [16] = { 52.1, 83.1, 490, 300 }, + [17] = { 53.4, 83, 490, 300 }, + [18] = { 42.7, 83, 490, 300 }, + [19] = { 54.8, 82.4, 490, 300 }, + [20] = { 49.5, 81.9, 490, 300 }, + [21] = { 46.9, 81.9, 490, 300 }, + [22] = { 46.5, 81.8, 490, 300 }, + [23] = { 48.3, 81.5, 490, 300 }, + [24] = { 52.3, 81, 490, 300 }, + [25] = { 45.5, 81, 490, 300 }, + [26] = { 51.8, 80.5, 490, 300 }, + [27] = { 43.7, 80.4, 490, 300 }, + [28] = { 48.1, 80.4, 490, 300 }, + [29] = { 44.6, 80.4, 490, 300 }, + [30] = { 43.1, 80.4, 490, 300 }, + [31] = { 48.7, 80, 490, 300 }, + [32] = { 54.3, 79.1, 490, 300 }, + [33] = { 44.6, 79.1, 490, 300 }, + [34] = { 43.9, 78.8, 490, 300 }, + [35] = { 44.6, 78.5, 490, 300 }, + [36] = { 52.1, 78.1, 490, 300 }, + [37] = { 50, 77.6, 490, 300 }, + [38] = { 51.1, 77.3, 490, 300 }, + [39] = { 46.3, 77.2, 490, 300 }, + [40] = { 48.3, 77.1, 490, 300 }, + [41] = { 48.7, 76.9, 490, 300 }, + [42] = { 45.3, 76.7, 490, 300 }, + [43] = { 47.2, 76.5, 490, 300 }, + [44] = { 43.3, 76.4, 490, 300 }, + [45] = { 53, 76.4, 490, 300 }, + [46] = { 53.7, 76.3, 490, 300 }, + [47] = { 50.1, 76, 490, 300 }, + [48] = { 54.8, 75.5, 490, 300 }, + [49] = { 51.5, 75.4, 490, 300 }, + [50] = { 44.5, 75.3, 490, 300 }, + [51] = { 48.1, 75.1, 490, 300 }, + [52] = { 53.8, 74.7, 490, 300 }, + [53] = { 46.4, 74.5, 490, 300 }, + [54] = { 51.2, 74, 490, 300 }, + [55] = { 47.4, 73.5, 490, 300 }, + [56] = { 52.2, 73, 490, 300 }, + [57] = { 51.2, 72.3, 490, 300 }, + [58] = { 45.5, 72.3, 490, 300 }, + }, + ["lvl"] = "51-52", + }, + [6552] = { + ["coords"] = { + [1] = { 47.8, 86.4, 490, 300 }, + [2] = { 53.3, 85.9, 490, 300 }, + [3] = { 55.4, 85.5, 490, 300 }, + [4] = { 52, 85.5, 490, 300 }, + [5] = { 56.4, 84.9, 490, 300 }, + [6] = { 45, 84.8, 490, 300 }, + [7] = { 52.8, 84.8, 490, 300 }, + [8] = { 46.5, 84.8, 490, 300 }, + [9] = { 51, 84.7, 490, 300 }, + [10] = { 54.1, 84.6, 490, 300 }, + [11] = { 50, 84.5, 490, 300 }, + [12] = { 55.4, 84.5, 490, 300 }, + [13] = { 47.3, 84.3, 490, 300 }, + [14] = { 43.8, 84, 490, 300 }, + [15] = { 44.8, 83.3, 490, 300 }, + [16] = { 52.1, 83.1, 490, 300 }, + [17] = { 53.4, 83, 490, 300 }, + [18] = { 42.7, 83, 490, 300 }, + [19] = { 54.8, 82.4, 490, 300 }, + [20] = { 49.5, 81.9, 490, 300 }, + [21] = { 46.9, 81.9, 490, 300 }, + [22] = { 46.5, 81.8, 490, 300 }, + [23] = { 48.3, 81.5, 490, 300 }, + [24] = { 52.3, 81, 490, 300 }, + [25] = { 45.5, 81, 490, 300 }, + [26] = { 51.8, 80.5, 490, 300 }, + [27] = { 43.7, 80.4, 490, 300 }, + [28] = { 48.1, 80.4, 490, 300 }, + [29] = { 44.6, 80.4, 490, 300 }, + [30] = { 43.1, 80.4, 490, 300 }, + [31] = { 48.7, 80, 490, 300 }, + [32] = { 54.3, 79.1, 490, 300 }, + [33] = { 44.6, 79.1, 490, 300 }, + [34] = { 43.9, 78.8, 490, 300 }, + [35] = { 44.6, 78.5, 490, 300 }, + [36] = { 52.1, 78.1, 490, 300 }, + [37] = { 50, 77.6, 490, 300 }, + [38] = { 51.1, 77.3, 490, 300 }, + [39] = { 46.3, 77.2, 490, 300 }, + [40] = { 48.3, 77.1, 490, 300 }, + [41] = { 48.7, 76.9, 490, 300 }, + [42] = { 45.3, 76.7, 490, 300 }, + [43] = { 47.2, 76.5, 490, 300 }, + [44] = { 43.3, 76.4, 490, 300 }, + [45] = { 53, 76.4, 490, 300 }, + [46] = { 53.7, 76.3, 490, 300 }, + [47] = { 50.1, 76, 490, 300 }, + [48] = { 54.8, 75.5, 490, 300 }, + [49] = { 51.5, 75.4, 490, 300 }, + [50] = { 44.5, 75.3, 490, 300 }, + [51] = { 48.1, 75.1, 490, 300 }, + [52] = { 53.8, 74.7, 490, 300 }, + [53] = { 46.4, 74.5, 490, 300 }, + [54] = { 51.2, 74, 490, 300 }, + [55] = { 47.4, 73.5, 490, 300 }, + [56] = { 52.2, 73, 490, 300 }, + [57] = { 51.2, 72.3, 490, 300 }, + [58] = { 45.5, 72.3, 490, 300 }, + }, + ["lvl"] = "51-52", + }, + [6553] = { + ["coords"] = { + [1] = { 45.8, 88.7, 490, 300 }, + [2] = { 46.7, 87.4, 490, 300 }, + [3] = { 48.6, 87.3, 490, 300 }, + [4] = { 46.9, 87, 490, 300 }, + [5] = { 47.7, 86.7, 490, 300 }, + [6] = { 47, 85.8, 490, 300 }, + [7] = { 49, 85.6, 490, 300 }, + [8] = { 46.4, 85.5, 490, 300 }, + [9] = { 48.4, 85.3, 490, 300 }, + [10] = { 47.4, 85.2, 490, 300 }, + [11] = { 45.9, 84.6, 490, 300 }, + [12] = { 49.4, 84.2, 490, 300 }, + [13] = { 47.9, 84.1, 490, 300 }, + [14] = { 45, 83.7, 490, 300 }, + [15] = { 45, 83.1, 490, 300 }, + [16] = { 46.7, 83, 490, 300 }, + [17] = { 49.4, 82.8, 490, 300 }, + [18] = { 45.3, 82.6, 490, 300 }, + [19] = { 48.4, 82, 490, 300 }, + [20] = { 44, 82, 490, 300 }, + [21] = { 43.6, 81.2, 490, 300 }, + [22] = { 49.9, 81.1, 490, 300 }, + [23] = { 44, 80.7, 490, 300 }, + [24] = { 50.3, 79.7, 490, 300 }, + }, + ["lvl"] = "51-53", + }, + [6554] = { + ["coords"] = { + [1] = { 45.8, 88.7, 490, 300 }, + [2] = { 46.7, 87.4, 490, 300 }, + [3] = { 48.6, 87.3, 490, 300 }, + [4] = { 46.9, 87, 490, 300 }, + [5] = { 47.7, 86.7, 490, 300 }, + [6] = { 47, 85.8, 490, 300 }, + [7] = { 49, 85.6, 490, 300 }, + [8] = { 46.4, 85.5, 490, 300 }, + [9] = { 48.4, 85.3, 490, 300 }, + [10] = { 47.4, 85.2, 490, 300 }, + [11] = { 45.9, 84.6, 490, 300 }, + [12] = { 49.4, 84.2, 490, 300 }, + [13] = { 47.9, 84.1, 490, 300 }, + [14] = { 45, 83.7, 490, 300 }, + [15] = { 45, 83.1, 490, 300 }, + [16] = { 46.7, 83, 490, 300 }, + [17] = { 49.4, 82.8, 490, 300 }, + [18] = { 45.3, 82.6, 490, 300 }, + [19] = { 48.4, 82, 490, 300 }, + [20] = { 44, 82, 490, 300 }, + [21] = { 43.6, 81.2, 490, 300 }, + [22] = { 49.9, 81.1, 490, 300 }, + [23] = { 44, 80.7, 490, 300 }, + [24] = { 50.3, 79.7, 490, 300 }, + }, + ["lvl"] = "52-53", + }, + [6555] = { + ["coords"] = { + [1] = { 45.8, 88.7, 490, 300 }, + [2] = { 46.7, 87.4, 490, 300 }, + [3] = { 48.6, 87.3, 490, 300 }, + [4] = { 46.9, 87, 490, 300 }, + [5] = { 47.7, 86.7, 490, 300 }, + [6] = { 47, 85.8, 490, 300 }, + [7] = { 49, 85.6, 490, 300 }, + [8] = { 46.4, 85.5, 490, 300 }, + [9] = { 48.4, 85.3, 490, 300 }, + [10] = { 47.4, 85.2, 490, 300 }, + [11] = { 45.9, 84.6, 490, 300 }, + [12] = { 49.4, 84.2, 490, 300 }, + [13] = { 47.9, 84.1, 490, 300 }, + [14] = { 45, 83.7, 490, 300 }, + [15] = { 45, 83.1, 490, 300 }, + [16] = { 46.7, 83, 490, 300 }, + [17] = { 49.4, 82.8, 490, 300 }, + [18] = { 45.3, 82.6, 490, 300 }, + [19] = { 48.4, 82, 490, 300 }, + [20] = { 44, 82, 490, 300 }, + [21] = { 43.6, 81.2, 490, 300 }, + [22] = { 49.9, 81.1, 490, 300 }, + [23] = { 44, 80.7, 490, 300 }, + [24] = { 50.3, 79.7, 490, 300 }, + }, + ["lvl"] = "52-53", + }, + [6557] = { + ["coords"] = { + [1] = { 57.5, 83, 490, 300 }, + [2] = { 55.5, 73.7, 490, 300 }, + [3] = { 48.3, 70.7, 490, 300 }, + [4] = { 46.1, 70.6, 490, 300 }, + [5] = { 58.1, 69.5, 490, 300 }, + [6] = { 44.2, 68.2, 490, 300 }, + [7] = { 56.1, 67.3, 490, 300 }, + [8] = { 51.4, 66.6, 490, 300 }, + [9] = { 44.4, 66.6, 490, 300 }, + [10] = { 57.2, 66.2, 490, 300 }, + [11] = { 51.8, 65.5, 490, 300 }, + [12] = { 43.5, 65.2, 490, 300 }, + [13] = { 58, 64, 490, 300 }, + [14] = { 49, 63.4, 490, 300 }, + [15] = { 54.3, 62.9, 490, 300 }, + [16] = { 45.3, 61.8, 490, 300 }, + [17] = { 61.5, 60.5, 490, 300 }, + [18] = { 59.9, 56.2, 490, 300 }, + [19] = { 57.3, 51.2, 490, 300 }, + [20] = { 61, 47.6, 490, 300 }, + [21] = { 58.2, 45.5, 490, 300 }, + [22] = { 51.2, 33.9, 490, 300 }, + [23] = { 51.2, 30.6, 490, 300 }, + [24] = { 47.4, 26, 490, 300 }, + [25] = { 46.1, 23.9, 490, 300 }, + [26] = { 51.8, 17.9, 490, 300 }, + [27] = { 38.5, 17.3, 490, 300 }, + }, + ["lvl"] = "50-52", + }, + [6561] = "_", + [6566] = { + ["coords"] = { + [1] = { 78.1, 69.6, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [6569] = { + ["coords"] = { + [1] = { 24.5, 30.4, 1, 300 }, + [2] = { 75.4, 18.2, 721, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [6577] = { + ["coords"] = { + [1] = { 63.2, 48.1, 38, 30 }, + [2] = { 30.9, 68.9, 5602, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "16", + }, + [6578] = "_", + [6579] = { + ["coords"] = { + [1] = { 62.6, 34.1, 1519, 30 }, + [2] = { 50.1, 95.7, 5581, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "17", + }, + [6582] = { + ["coords"] = { + [1] = { 48.7, 85.4, 490, 54000 }, + }, + ["lvl"] = "54", + ["rnk"] = "4", + }, + [6585] = { + ["coords"] = { + [1] = { 68.5, 12.7, 490, 27000 }, + }, + ["lvl"] = "52-53", + ["rnk"] = "4", + }, + [6646] = { + ["coords"] = { + [1] = { 72.3, 20, 16, 252000 }, + }, + ["lvl"] = "54", + ["rnk"] = "2", + }, + [6647] = { + ["coords"] = { + [1] = { 58.5, 30.9, 16, 108000 }, + }, + ["lvl"] = "52", + ["rnk"] = "4", + }, + [6648] = { + ["coords"] = { + [1] = { 16.6, 54.1, 16, 180000 }, + }, + ["lvl"] = "50", + ["rnk"] = "4", + }, + [6649] = { + ["coords"] = { + [1] = { 35.4, 55.7, 16, 27000 }, + }, + ["lvl"] = "51", + ["rnk"] = "4", + }, + [6650] = { + ["coords"] = { + [1] = { 41.3, 54, 16, 54000 }, + }, + ["lvl"] = "51", + ["rnk"] = "4", + }, + [6651] = { + ["coords"] = { + [1] = { 37.7, 32.9, 16, 54000 }, + }, + ["lvl"] = "49-50", + ["rnk"] = "4", + }, + [6652] = { + ["coords"] = { + [1] = { 61.6, 24.2, 16, 108000 }, + }, + ["lvl"] = "52", + ["rnk"] = "4", + }, + [6653] = { + ["coords"] = { + [1] = { 74.6, 72.1, 8, 300 }, + [2] = { 82.5, 63.2, 8, 300 }, + [3] = { 14.7, 55.7, 8, 300 }, + [4] = { 58.1, 54.9, 8, 300 }, + [5] = { 26.9, 52.7, 8, 300 }, + [6] = { 40.9, 48.5, 8, 300 }, + [7] = { 30.7, 44.4, 8, 300 }, + [8] = { 13, 36.5, 8, 300 }, + [9] = { 80.4, 19.7, 8, 300 }, + [10] = { 73.8, 14.1, 8, 300 }, + [11] = { 23.3, 60.3, 11, 120 }, + }, + ["lvl"] = "1", + }, + [6667] = { + ["coords"] = { + [1] = { 56.7, 13.5, 148, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "18", + }, + [6687] = "_", + [6688] = "_", + [6706] = { + ["coords"] = { + [1] = { 64.7, 10.5, 405, 120 }, + [2] = { 43.6, 82.4, 406, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [6726] = { + ["coords"] = { + [1] = { 21.6, 74.1, 405, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [6729] = { + ["coords"] = { + [1] = { 76.9, 93.2, 719, 0 }, + }, + ["fac"] = "A", + ["lvl"] = "27", + }, + [6731] = { + ["coords"] = { + [1] = { 18.2, 60, 331, 300 }, + [2] = { 54.8, 26.8, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "27", + }, + [6734] = { + ["coords"] = { + [1] = { 35.5, 48.4, 38, 300 }, + [2] = { 16.7, 69, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [6735] = { + ["coords"] = { + [1] = { 31.2, 50.2, 141, 30 }, + [2] = { 67.4, 15.6, 1657, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [6740] = { + ["coords"] = { + [1] = { 60.4, 75.3, 1519, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [6741] = { + ["coords"] = { + [1] = { 67.7, 37.9, 1497, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [6746] = { + ["coords"] = { + [1] = { 39.1, 30, 215, 30 }, + [2] = { 45.8, 64.7, 1638, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [6767] = "_", + [6769] = "_", + [6770] = "_", + [6772] = "_", + [6773] = "_", + [6774] = { + ["coords"] = { + [1] = { 45.6, 47.7, 12, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [6775] = { + ["coords"] = { + [1] = { 38.5, 81.6, 215, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "3", + }, + [6780] = { + ["coords"] = { + [1] = { 61.2, 47.6, 141, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "7", + }, + [6782] = { + ["coords"] = { + [1] = { 33.8, 72.2, 1, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [6783] = "_", + [6784] = { + ["coords"] = { + [1] = { 38.2, 56.8, 85, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "5", + }, + [6786] = { + ["coords"] = { + [1] = { 52.1, 68.3, 14, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "4", + }, + [6788] = { + ["coords"] = { + [1] = { 51.5, 38.3, 148, 120 }, + [2] = { 36, 12.3, 361, 120 }, + }, + ["lvl"] = "18-19", + }, + [6789] = { + ["coords"] = { + [1] = { 51.4, 38.3, 148, 120 }, + [2] = { 51.6, 38.3, 148, 120 }, + [3] = { 51.5, 38.2, 148, 120 }, + [4] = { 51.6, 37.8, 148, 120 }, + [5] = { 36, 12.4, 361, 120 }, + [6] = { 36.1, 12.3, 361, 120 }, + [7] = { 36, 12.2, 361, 120 }, + [8] = { 36.1, 11.8, 361, 120 }, + }, + ["lvl"] = "9-10", + }, + [6827] = "_", + [6846] = { + ["coords"] = { + [1] = { 48.1, 87.3, 12, 120 }, + }, + ["lvl"] = "10", + }, + [6868] = { + ["coords"] = { + [1] = { 2.4, 46.1, 3, 30 }, + [2] = { 81.4, 37.2, 51, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [6886] = { + ["coords"] = { + [1] = { 25.2, 44.5, 1, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "12", + }, + [6906] = { + ["coords"] = { + [1] = { 59.1, 93.5, 1337, 604800 }, + }, + ["fac"] = "A", + ["lvl"] = "41", + ["rnk"] = "1", + }, + [6907] = { + ["coords"] = { + [1] = { 58.9, 94.4, 1337, 604800 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + ["rnk"] = "1", + }, + [6908] = { + ["coords"] = { + [1] = { 57.4, 94.2, 1337, 604800 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + ["rnk"] = "1", + }, + [6909] = { + ["coords"] = { + [1] = { 37.6, 22.2, 141, 120 }, + }, + ["lvl"] = "12", + }, + [6910] = { + ["coords"] = { + [1] = { 54.1, 72.2, 1337, 604800 }, + }, + ["lvl"] = "40", + ["rnk"] = "1", + }, + [6911] = { + ["coords"] = {}, + ["lvl"] = "8-9", + }, + [6912] = { + ["coords"] = { + [1] = { 53.3, 63.8, 1337, 18000 }, + }, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [6926] = "_", + [6929] = { + ["coords"] = { + [1] = { 53.6, 69, 1637, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [6931] = "_", + [6946] = { + ["coords"] = { + [1] = { 78.3, 71.1, 1519, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [6966] = { + ["coords"] = { + [1] = { 28.1, 52, 44, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [6986] = { + ["coords"] = { + [1] = { 59.5, 36.6, 1637, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [6987] = { + ["coords"] = { + [1] = { 59.6, 36.9, 1637, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [7006] = "_", + [7007] = { + ["coords"] = { + [1] = { 37.3, 44.2, 130, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "22", + }, + [7008] = "_", + [7010] = { + ["coords"] = { + [1] = { 56.3, 46.7, 1637, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [7011] = { + ["coords"] = { + [1] = { 35.9, 52.9, 1337, 18000 }, + [2] = { 36.9, 52.6, 1337, 18000 }, + [3] = { 50.1, 52.3, 1337, 18000 }, + [4] = { 48.3, 51.4, 1337, 18000 }, + [5] = { 36.9, 51.2, 1337, 18000 }, + [6] = { 50.1, 51.1, 1337, 18000 }, + [7] = { 47.5, 51, 1337, 18000 }, + [8] = { 41.3, 50.8, 1337, 18000 }, + [9] = { 35, 50.7, 1337, 18000 }, + [10] = { 38.6, 50.1, 1337, 18000 }, + [11] = { 40.6, 49.6, 1337, 18000 }, + [12] = { 45.3, 49, 1337, 18000 }, + [13] = { 41.3, 48.6, 1337, 18000 }, + [14] = { 34.7, 48.6, 1337, 18000 }, + [15] = { 38.5, 48.4, 1337, 18000 }, + [16] = { 47, 47.9, 1337, 18000 }, + [17] = { 36, 47.7, 1337, 18000 }, + [18] = { 42.3, 47.5, 1337, 18000 }, + [19] = { 47.6, 46.5, 1337, 18000 }, + [20] = { 45.4, 46.1, 1337, 18000 }, + [21] = { 49.6, 42.6, 1337, 18000 }, + [22] = { 45.6, 41.6, 1337, 18000 }, + [23] = { 49.4, 41.5, 1337, 18000 }, + [24] = { 43.6, 41.5, 1337, 18000 }, + [25] = { 39.8, 36.8, 1337, 18000 }, + [26] = { 41.5, 36.6, 1337, 18000 }, + [27] = { 40, 35.8, 1337, 18000 }, + [28] = { 40.9, 34.6, 1337, 18000 }, + }, + ["lvl"] = "42-43", + }, + [7012] = { + ["coords"] = { + [1] = { 36.1, 51.1, 1337, 18000 }, + [2] = { 42.2, 50.3, 1337, 18000 }, + [3] = { 46.2, 49.3, 1337, 18000 }, + [4] = { 42.8, 49.1, 1337, 18000 }, + [5] = { 48.2, 48.6, 1337, 18000 }, + [6] = { 35.5, 47.9, 1337, 18000 }, + [7] = { 45.6, 47.8, 1337, 18000 }, + [8] = { 41.7, 41.7, 1337, 18000 }, + [9] = { 42.7, 41.4, 1337, 18000 }, + [10] = { 41, 38.3, 1337, 18000 }, + }, + ["lvl"] = "42-43", + }, + [7013] = "_", + [7014] = "_", + [7015] = { + ["coords"] = { + [1] = { 36.7, 67.6, 148, 9000 }, + }, + ["lvl"] = "16", + ["rnk"] = "4", + }, + [7016] = { + ["coords"] = { + [1] = { 57.8, 21.4, 148, 38000 }, + }, + ["lvl"] = "22", + ["rnk"] = "4", + }, + [7017] = { + ["coords"] = { + [1] = { 56.6, 34.9, 148, 9000 }, + [2] = { 41.9, 8.5, 361, 9000 }, + }, + ["lvl"] = "15-16", + ["rnk"] = "4", + }, + [7022] = { + ["coords"] = { + [1] = { 36.5, 60.5, 1337, 18000 }, + [2] = { 41.4, 60, 1337, 18000 }, + [3] = { 46.5, 56.7, 1337, 18000 }, + [4] = { 45.4, 55, 1337, 18000 }, + }, + ["lvl"] = "39-40", + ["rnk"] = "1", + }, + [7023] = { + ["coords"] = { + [1] = { 28.8, 61.8, 1337, 604800 }, + }, + ["lvl"] = "42", + ["rnk"] = "1", + }, + [7024] = { + ["coords"] = { + [1] = { 68.5, 70.1, 40, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "22", + }, + [7025] = { + ["coords"] = { + [1] = { 48.8, 59.2, 46, 500 }, + [2] = { 41.1, 57.1, 46, 300 }, + [3] = { 49, 57, 46, 500 }, + [4] = { 56.5, 56.9, 46, 300 }, + [5] = { 45, 56.8, 46, 500 }, + [6] = { 50.5, 56.7, 46, 300 }, + [7] = { 42.5, 56.1, 46, 500 }, + [8] = { 42.3, 56, 46, 500 }, + [9] = { 42.4, 54.7, 46, 500 }, + [10] = { 55.6, 54.1, 46, 500 }, + [11] = { 57.3, 54, 46, 300 }, + [12] = { 42.9, 54, 46, 300 }, + [13] = { 49.1, 52.6, 46, 300 }, + [14] = { 51.3, 51.7, 46, 300 }, + [15] = { 45.1, 51.1, 46, 500 }, + [16] = { 44.6, 50.9, 46, 500 }, + [17] = { 44.5, 50.6, 46, 500 }, + }, + ["lvl"] = "55-56", + }, + [7026] = { + ["coords"] = { + [1] = { 97.4, 72.5, 25, 500 }, + [2] = { 50.5, 61.3, 46, 500 }, + [3] = { 50.7, 60.9, 46, 500 }, + [4] = { 53.8, 57.4, 46, 300 }, + [5] = { 44.7, 57.3, 46, 500 }, + [6] = { 38.4, 56.7, 46, 300 }, + [7] = { 46.5, 55.9, 46, 300 }, + [8] = { 44, 55.5, 46, 300 }, + [9] = { 51.4, 54.4, 46, 500 }, + [10] = { 49.8, 54, 46, 500 }, + [11] = { 55.3, 54, 46, 500 }, + [12] = { 53.5, 52.8, 46, 500 }, + [13] = { 53.4, 52.5, 46, 500 }, + [14] = { 43.1, 37, 46, 500 }, + [15] = { 40.5, 32.6, 46, 500 }, + }, + ["lvl"] = "55-56", + }, + [7027] = { + ["coords"] = { + [1] = { 100, 76.4, 25, 500 }, + [2] = { 99.7, 75.8, 25, 500 }, + [3] = { 99.5, 75.2, 25, 500 }, + [4] = { 94.8, 72.3, 25, 500 }, + [5] = { 43.4, 58.9, 46, 300 }, + [6] = { 47.4, 57.3, 46, 300 }, + [7] = { 41.8, 55.7, 46, 500 }, + [8] = { 39.3, 55.6, 46, 500 }, + [9] = { 48.5, 55.2, 46, 500 }, + [10] = { 55.8, 54.4, 46, 500 }, + [11] = { 51.7, 54.3, 46, 500 }, + [12] = { 38.8, 54.2, 46, 500 }, + [13] = { 51, 53.5, 46, 500 }, + [14] = { 56.2, 53.3, 46, 500 }, + [15] = { 56, 53.1, 46, 500 }, + [16] = { 43.8, 36.8, 46, 500 }, + [17] = { 42.4, 35.7, 46, 500 }, + [18] = { 43.7, 34.1, 46, 500 }, + [19] = { 41.2, 33.5, 46, 500 }, + [20] = { 41.1, 33.4, 46, 500 }, + [21] = { 41, 33.3, 46, 500 }, + [22] = { 39.9, 32.5, 46, 500 }, + }, + ["lvl"] = "56-57", + }, + [7028] = { + ["coords"] = { + [1] = { 97.8, 86.1, 25, 500 }, + [2] = { 97.1, 85.4, 25, 500 }, + [3] = { 94.4, 85, 25, 500 }, + [4] = { 91.6, 81.4, 25, 500 }, + [5] = { 3.5, 62.5, 25, 500 }, + [6] = { 1, 62.4, 25, 500 }, + [7] = { 4.5, 58.9, 25, 500 }, + [8] = { 0.4, 58.8, 25, 500 }, + [9] = { 2.5, 56.7, 25, 500 }, + [10] = { 50.4, 61.6, 46, 500 }, + [11] = { 55.7, 54.5, 46, 500 }, + [12] = { 55.2, 54.5, 46, 500 }, + [13] = { 42.7, 38.5, 46, 500 }, + [14] = { 42.9, 36.9, 46, 500 }, + [15] = { 40.6, 35.9, 46, 500 }, + [16] = { 40.5, 35.7, 46, 500 }, + [17] = { 39.8, 35.6, 46, 500 }, + [18] = { 41.7, 35.3, 46, 500 }, + [19] = { 39.1, 34.7, 46, 500 }, + [20] = { 41.3, 33.8, 46, 500 }, + [21] = { 43.5, 33.7, 46, 500 }, + [22] = { 17.7, 30.2, 46, 500 }, + [23] = { 17.1, 30.2, 46, 500 }, + [24] = { 18, 29.3, 46, 500 }, + [25] = { 17, 29.3, 46, 500 }, + [26] = { 17.5, 28.8, 46, 500 }, + [27] = { 93.9, 60, 5581, 500 }, + [28] = { 93.4, 60, 5581, 500 }, + [29] = { 94.1, 59.2, 5581, 500 }, + [30] = { 93.2, 59.2, 5581, 500 }, + [31] = { 93.7, 58.7, 5581, 500 }, + }, + ["lvl"] = "56-57", + }, + [7029] = { + ["coords"] = { + [1] = { 91.8, 82.4, 25, 500 }, + [2] = { 99.9, 82.2, 25, 500 }, + [3] = { 96.2, 81.6, 25, 500 }, + [4] = { 94.6, 80.6, 25, 500 }, + [5] = { 97.6, 78.4, 25, 500 }, + [6] = { 95.4, 77.7, 25, 500 }, + [7] = { 97.6, 74.2, 25, 500 }, + [8] = { 94.5, 73.3, 25, 500 }, + [9] = { 54.7, 55.3, 46, 300 }, + [10] = { 42.9, 54.1, 46, 300 }, + [11] = { 55.5, 53.8, 46, 300 }, + [12] = { 46.5, 53.7, 46, 300 }, + [13] = { 48.1, 53.1, 46, 300 }, + [14] = { 46.4, 51.6, 46, 300 }, + [15] = { 43.2, 35.7, 46, 300 }, + [16] = { 43.9, 35.2, 46, 300 }, + [17] = { 42.8, 35.1, 46, 300 }, + [18] = { 39.2, 35, 46, 500 }, + [19] = { 41.1, 34.9, 46, 500 }, + [20] = { 40.2, 34.8, 46, 500 }, + [21] = { 39.9, 34.6, 46, 500 }, + [22] = { 40.6, 34, 46, 500 }, + [23] = { 42.9, 33.9, 46, 300 }, + [24] = { 40, 33.8, 46, 500 }, + [25] = { 40.6, 33, 46, 500 }, + [26] = { 39.8, 32.8, 46, 500 }, + }, + ["lvl"] = "57-58", + }, + [7030] = { + ["coords"] = { + [1] = { 28.1, 57.7, 1337, 18000 }, + [2] = { 26.2, 36, 1337, 604800 }, + [3] = { 25.4, 35.7, 1337, 604800 }, + }, + ["lvl"] = "40-41", + ["rnk"] = "1", + }, + [7031] = { + ["coords"] = { + [1] = { 75.3, 69.7, 46, 500 }, + [2] = { 69.8, 59.9, 46, 500 }, + [3] = { 59.9, 57.9, 46, 500 }, + [4] = { 80.6, 50.6, 46, 500 }, + [5] = { 76.6, 38.3, 46, 500 }, + [6] = { 79.2, 37.4, 46, 500 }, + [7] = { 80.4, 34.2, 46, 500 }, + }, + ["lvl"] = "51-53", + }, + [7033] = { + ["coords"] = { + [1] = { 76.1, 56.4, 46, 500 }, + [2] = { 76.3, 55.9, 46, 500 }, + [3] = { 78.6, 55.5, 46, 500 }, + [4] = { 77.7, 54.9, 46, 500 }, + [5] = { 83.8, 53.6, 46, 500 }, + [6] = { 82.3, 53.5, 46, 500 }, + [7] = { 83.5, 52.2, 46, 500 }, + [8] = { 77, 51.2, 46, 500 }, + [9] = { 76.1, 50.4, 46, 500 }, + [10] = { 74.5, 48.8, 46, 500 }, + [11] = { 86.7, 48.5, 46, 500 }, + [12] = { 75.4, 48.3, 46, 500 }, + [13] = { 81.6, 48.2, 46, 500 }, + [14] = { 76.8, 47.8, 46, 500 }, + [15] = { 87, 47.2, 46, 500 }, + [16] = { 77.4, 47.2, 46, 500 }, + [17] = { 74.6, 47.2, 46, 500 }, + [18] = { 83.4, 46.7, 46, 500 }, + [19] = { 82, 46.5, 46, 500 }, + [20] = { 80.1, 46.4, 46, 500 }, + [21] = { 81.6, 45.9, 46, 500 }, + [22] = { 82.5, 45.7, 46, 500 }, + [23] = { 75.2, 45.3, 46, 500 }, + [24] = { 78.3, 45.2, 46, 500 }, + [25] = { 87.1, 45.2, 46, 500 }, + [26] = { 77.2, 45.2, 46, 500 }, + [27] = { 79.2, 45.1, 46, 500 }, + [28] = { 79.9, 44.6, 46, 500 }, + [29] = { 81.4, 44.2, 46, 500 }, + [30] = { 78.9, 44, 46, 500 }, + [31] = { 77.1, 43.6, 46, 500 }, + [32] = { 78.3, 43.5, 46, 500 }, + [33] = { 79.4, 43.5, 46, 500 }, + [34] = { 74.6, 43.3, 46, 500 }, + [35] = { 81.6, 43, 46, 500 }, + [36] = { 80, 42.6, 46, 500 }, + [37] = { 80.2, 42.1, 46, 500 }, + [38] = { 80.7, 41.8, 46, 500 }, + [39] = { 78.2, 41.3, 46, 500 }, + [40] = { 81.6, 41.2, 46, 500 }, + [41] = { 80.5, 41, 46, 500 }, + [42] = { 74.5, 40.1, 46, 500 }, + [43] = { 82.1, 39.6, 46, 500 }, + [44] = { 83.6, 38.7, 46, 500 }, + [45] = { 74.4, 38.4, 46, 500 }, + [46] = { 74.7, 37.1, 46, 500 }, + [47] = { 82.4, 36.5, 46, 500 }, + [48] = { 79.2, 35.4, 46, 500 }, + [49] = { 76.8, 34.9, 46, 500 }, + [50] = { 82.6, 33.6, 46, 500 }, + [51] = { 77.9, 33.4, 46, 500 }, + }, + ["lvl"] = "50-51", + }, + [7034] = { + ["coords"] = { + [1] = { 80.4, 48.3, 46, 500 }, + [2] = { 82.4, 48.2, 46, 500 }, + [3] = { 83.1, 47.6, 46, 500 }, + [4] = { 84.7, 47, 46, 500 }, + [5] = { 81, 46.6, 46, 500 }, + [6] = { 83.6, 45.4, 46, 500 }, + [7] = { 85, 45.3, 46, 500 }, + [8] = { 80.4, 45.1, 46, 500 }, + [9] = { 80, 44.6, 46, 500 }, + [10] = { 79.6, 44.6, 46, 500 }, + [11] = { 83, 43.4, 46, 500 }, + [12] = { 79.2, 43, 46, 500 }, + [13] = { 80.6, 42.8, 46, 500 }, + [14] = { 79.5, 42.2, 46, 500 }, + [15] = { 81.9, 42.1, 46, 500 }, + [16] = { 81.5, 41.8, 46, 500 }, + [17] = { 78.2, 40.4, 46, 500 }, + [18] = { 81.5, 39.4, 46, 500 }, + [19] = { 78.1, 38.3, 46, 500 }, + [20] = { 84.4, 37, 46, 500 }, + [21] = { 85.8, 36.3, 46, 500 }, + [22] = { 79.1, 35.4, 46, 500 }, + [23] = { 76.1, 56.4, 46, 500 }, + [24] = { 76.3, 55.9, 46, 500 }, + [25] = { 78.6, 55.5, 46, 500 }, + [26] = { 77.7, 54.9, 46, 500 }, + [27] = { 83.8, 53.6, 46, 500 }, + [28] = { 82.3, 53.5, 46, 500 }, + [29] = { 83.5, 52.2, 46, 500 }, + [30] = { 77, 51.2, 46, 500 }, + [31] = { 76.1, 50.4, 46, 500 }, + [32] = { 74.5, 48.8, 46, 500 }, + [33] = { 86.7, 48.5, 46, 500 }, + [34] = { 75.4, 48.3, 46, 500 }, + [35] = { 81.6, 48.2, 46, 500 }, + [36] = { 76.8, 47.8, 46, 500 }, + [37] = { 87, 47.2, 46, 500 }, + [38] = { 77.4, 47.2, 46, 500 }, + [39] = { 74.6, 47.2, 46, 500 }, + [40] = { 83.4, 46.7, 46, 500 }, + [41] = { 82, 46.5, 46, 500 }, + [42] = { 80.1, 46.4, 46, 500 }, + [43] = { 81.6, 45.9, 46, 500 }, + [44] = { 82.5, 45.7, 46, 500 }, + [45] = { 75.2, 45.3, 46, 500 }, + [46] = { 78.3, 45.2, 46, 500 }, + [47] = { 87.1, 45.2, 46, 500 }, + [48] = { 77.2, 45.2, 46, 500 }, + [49] = { 79.2, 45.1, 46, 500 }, + [50] = { 79.9, 44.6, 46, 500 }, + [51] = { 81.4, 44.2, 46, 500 }, + [52] = { 78.9, 44, 46, 500 }, + [53] = { 77.1, 43.6, 46, 500 }, + [54] = { 78.3, 43.5, 46, 500 }, + [55] = { 79.4, 43.5, 46, 500 }, + [56] = { 74.6, 43.3, 46, 500 }, + [57] = { 81.6, 43, 46, 500 }, + [58] = { 80, 42.6, 46, 500 }, + [59] = { 80.2, 42.1, 46, 500 }, + [60] = { 80.7, 41.8, 46, 500 }, + [61] = { 78.2, 41.3, 46, 500 }, + [62] = { 81.6, 41.2, 46, 500 }, + [63] = { 80.5, 41, 46, 500 }, + [64] = { 74.5, 40.1, 46, 500 }, + [65] = { 82.1, 39.6, 46, 500 }, + [66] = { 83.6, 38.7, 46, 500 }, + [67] = { 74.4, 38.4, 46, 500 }, + [68] = { 74.7, 37.1, 46, 500 }, + [69] = { 82.4, 36.5, 46, 500 }, + [70] = { 79.2, 35.4, 46, 500 }, + [71] = { 76.8, 34.9, 46, 500 }, + [72] = { 82.6, 33.6, 46, 500 }, + [73] = { 77.9, 33.4, 46, 500 }, + }, + ["lvl"] = "51-52", + }, + [7035] = { + ["coords"] = { + [1] = { 80.4, 48.3, 46, 500 }, + [2] = { 82.4, 48.2, 46, 500 }, + [3] = { 83.1, 47.6, 46, 500 }, + [4] = { 84.7, 47, 46, 500 }, + [5] = { 81, 46.6, 46, 500 }, + [6] = { 83.6, 45.4, 46, 500 }, + [7] = { 85, 45.3, 46, 500 }, + [8] = { 80.4, 45.1, 46, 500 }, + [9] = { 80, 44.6, 46, 500 }, + [10] = { 79.6, 44.6, 46, 500 }, + [11] = { 83, 43.4, 46, 500 }, + [12] = { 79.2, 43, 46, 500 }, + [13] = { 80.6, 42.8, 46, 500 }, + [14] = { 79.5, 42.2, 46, 500 }, + [15] = { 81.9, 42.1, 46, 500 }, + [16] = { 81.5, 41.8, 46, 500 }, + [17] = { 78.2, 40.4, 46, 500 }, + [18] = { 81.5, 39.4, 46, 500 }, + [19] = { 78.1, 38.3, 46, 500 }, + [20] = { 84.4, 37, 46, 500 }, + [21] = { 85.8, 36.3, 46, 500 }, + [22] = { 79.1, 35.4, 46, 500 }, + }, + ["lvl"] = "52-53", + }, + [7036] = { + ["coords"] = { + [1] = { 66.2, 44.2, 46, 500 }, + [2] = { 66, 42.8, 46, 500 }, + [3] = { 65.7, 42.2, 46, 500 }, + [4] = { 61.1, 42, 46, 500 }, + [5] = { 65.4, 41.5, 46, 500 }, + [6] = { 63.9, 40.9, 46, 500 }, + [7] = { 66.2, 40.4, 46, 500 }, + [8] = { 54, 40.1, 46, 500 }, + [9] = { 65.7, 40.1, 46, 500 }, + [10] = { 62.9, 39.5, 46, 500 }, + [11] = { 63.1, 38.8, 46, 500 }, + [12] = { 69.5, 38.6, 46, 500 }, + [13] = { 61.3, 37, 46, 500 }, + [14] = { 55.4, 36.9, 46, 500 }, + [15] = { 64.4, 36.6, 46, 500 }, + [16] = { 56.2, 36.4, 46, 500 }, + [17] = { 63.2, 36.3, 46, 500 }, + [18] = { 71, 36.2, 46, 500 }, + [19] = { 56.8, 36, 46, 500 }, + [20] = { 64.7, 34.3, 46, 500 }, + }, + ["lvl"] = "53-54", + }, + [7037] = { + ["coords"] = { + [1] = { 66.2, 44.2, 46, 500 }, + [2] = { 66, 42.8, 46, 500 }, + [3] = { 65.7, 42.2, 46, 500 }, + [4] = { 61.1, 42, 46, 500 }, + [5] = { 65.4, 41.5, 46, 500 }, + [6] = { 63.9, 40.9, 46, 500 }, + [7] = { 66.2, 40.4, 46, 500 }, + [8] = { 54, 40.1, 46, 500 }, + [9] = { 65.7, 40.1, 46, 500 }, + [10] = { 62.9, 39.5, 46, 500 }, + [11] = { 63.1, 38.8, 46, 500 }, + [12] = { 69.5, 38.6, 46, 500 }, + [13] = { 61.3, 37, 46, 500 }, + [14] = { 55.4, 36.9, 46, 500 }, + [15] = { 64.4, 36.6, 46, 500 }, + [16] = { 56.2, 36.4, 46, 500 }, + [17] = { 63.2, 36.3, 46, 500 }, + [18] = { 71, 36.2, 46, 500 }, + [19] = { 56.8, 36, 46, 500 }, + [20] = { 64.7, 34.3, 46, 500 }, + }, + ["lvl"] = "53-55", + }, + [7038] = { + ["coords"] = { + [1] = { 66.2, 44.2, 46, 500 }, + [2] = { 66, 42.8, 46, 500 }, + [3] = { 65.7, 42.2, 46, 500 }, + [4] = { 61.1, 42, 46, 500 }, + [5] = { 65.4, 41.5, 46, 500 }, + [6] = { 63.9, 40.9, 46, 500 }, + [7] = { 66.2, 40.4, 46, 500 }, + [8] = { 54, 40.1, 46, 500 }, + [9] = { 65.7, 40.1, 46, 500 }, + [10] = { 62.9, 39.5, 46, 500 }, + [11] = { 63.1, 38.8, 46, 500 }, + [12] = { 69.5, 38.6, 46, 500 }, + [13] = { 61.3, 37, 46, 500 }, + [14] = { 55.4, 36.9, 46, 500 }, + [15] = { 64.4, 36.6, 46, 500 }, + [16] = { 56.2, 36.4, 46, 500 }, + [17] = { 63.2, 36.3, 46, 500 }, + [18] = { 71, 36.2, 46, 500 }, + [19] = { 56.8, 36, 46, 500 }, + [20] = { 64.7, 34.3, 46, 500 }, + }, + ["lvl"] = "54-55", + }, + [7039] = { + ["coords"] = { + [1] = { 60.8, 43, 46, 500 }, + [2] = { 64.5, 41.7, 46, 500 }, + [3] = { 55.7, 40.5, 46, 500 }, + [4] = { 62.1, 40.5, 46, 500 }, + [5] = { 61.7, 40.4, 46, 500 }, + [6] = { 66.8, 40.4, 46, 500 }, + [7] = { 68.6, 38.9, 46, 500 }, + [8] = { 58.3, 38.3, 46, 500 }, + [9] = { 52.5, 38.3, 46, 500 }, + [10] = { 59.4, 37.8, 46, 500 }, + [11] = { 68.3, 37.7, 46, 500 }, + [12] = { 67.4, 37.6, 46, 500 }, + [13] = { 65.9, 36.5, 46, 500 }, + [14] = { 66.7, 36.3, 46, 500 }, + [15] = { 54.6, 35.9, 46, 500 }, + [16] = { 61.1, 35.4, 46, 500 }, + [17] = { 60.9, 35.1, 46, 500 }, + [18] = { 62.8, 35, 46, 500 }, + [19] = { 56.9, 34.6, 46, 500 }, + [20] = { 56.5, 34, 46, 500 }, + }, + ["lvl"] = "53-55", + }, + [7040] = { + ["coords"] = { + [1] = { 58.3, 64.5, 46, 500 }, + [2] = { 56.1, 64.4, 46, 500 }, + [3] = { 75.5, 62.5, 46, 500 }, + [4] = { 57, 61.4, 46, 500 }, + [5] = { 56.3, 60.6, 46, 500 }, + [6] = { 87.2, 39.8, 46, 500 }, + [7] = { 90.4, 38.4, 46, 500 }, + [8] = { 90.5, 37.3, 46, 500 }, + [9] = { 89.6, 37.3, 46, 300 }, + [10] = { 88.5, 36.4, 46, 500 }, + [11] = { 87.2, 35.1, 46, 500 }, + [12] = { 83.6, 28.6, 46, 500 }, + [13] = { 87, 28.3, 46, 500 }, + [14] = { 85.4, 27.2, 46, 500 }, + [15] = { 82.4, 26.6, 46, 500 }, + [16] = { 86.8, 26.3, 46, 500 }, + }, + ["lvl"] = "52-53", + ["rnk"] = "1", + }, + [7041] = { + ["coords"] = { + [1] = { 76.7, 62.5, 46, 500 }, + [2] = { 77.9, 62.2, 46, 500 }, + [3] = { 57.5, 62.2, 46, 500 }, + [4] = { 77.3, 61.9, 46, 500 }, + [5] = { 77.1, 61.6, 46, 500 }, + [6] = { 58.4, 60.8, 46, 500 }, + [7] = { 57.6, 60.6, 46, 500 }, + [8] = { 88.4, 40, 46, 500 }, + [9] = { 88.8, 38.9, 46, 500 }, + [10] = { 88.9, 37.6, 46, 500 }, + [11] = { 88.3, 37.5, 46, 500 }, + [12] = { 89.2, 35.5, 46, 500 }, + [13] = { 84.7, 28.7, 46, 500 }, + [14] = { 84, 26.9, 46, 500 }, + [15] = { 84.7, 26.9, 46, 500 }, + }, + ["lvl"] = "53-54", + ["rnk"] = "1", + }, + [7042] = { + ["coords"] = { + [1] = { 33.8, 71.2, 46, 500 }, + [2] = { 32.6, 71.1, 46, 500 }, + [3] = { 33.7, 69.8, 46, 500 }, + [4] = { 32.3, 69.5, 46, 500 }, + [5] = { 34.5, 68.9, 46, 500 }, + [6] = { 31.7, 66.5, 46, 500 }, + [7] = { 32.9, 66.5, 46, 500 }, + [8] = { 30, 62.8, 46, 500 }, + [9] = { 32.5, 62.4, 46, 500 }, + [10] = { 30.9, 62.3, 46, 500 }, + [11] = { 30.7, 61.4, 46, 500 }, + [12] = { 31.4, 61.3, 46, 500 }, + [13] = { 32.4, 60.6, 46, 500 }, + [14] = { 30, 60.5, 46, 500 }, + [15] = { 31.2, 59.1, 46, 500 }, + [16] = { 37.2, 49.1, 46, 500 }, + [17] = { 35.7, 49.1, 46, 500 }, + [18] = { 20.2, 48.8, 46, 500 }, + [19] = { 34.7, 48.7, 46, 500 }, + [20] = { 36.1, 48.6, 46, 500 }, + [21] = { 23.4, 47.6, 46, 500 }, + [22] = { 21.6, 47.4, 46, 500 }, + [23] = { 36.9, 47.2, 46, 500 }, + [24] = { 21.4, 46.4, 46, 500 }, + [25] = { 19.9, 45.4, 46, 500 }, + [26] = { 22.3, 45.2, 46, 500 }, + [27] = { 20.8, 45, 46, 500 }, + [28] = { 96.1, 76.8, 5581, 500 }, + [29] = { 99.1, 75.7, 5581, 500 }, + [30] = { 97.5, 75.6, 5581, 500 }, + [31] = { 97.3, 74.7, 5581, 500 }, + [32] = { 95.9, 73.7, 5581, 500 }, + [33] = { 98.1, 73.5, 5581, 500 }, + [34] = { 96.7, 73.4, 5581, 500 }, + }, + ["lvl"] = "56-57", + ["rnk"] = "1", + }, + [7043] = { + ["coords"] = { + [1] = { 33.8, 71.2, 46, 500 }, + [2] = { 32.6, 71.1, 46, 500 }, + [3] = { 33.7, 69.8, 46, 500 }, + [4] = { 32.3, 69.5, 46, 500 }, + [5] = { 34.5, 68.9, 46, 500 }, + [6] = { 31.7, 66.5, 46, 500 }, + [7] = { 32.9, 66.5, 46, 500 }, + [8] = { 30, 62.8, 46, 500 }, + [9] = { 32.5, 62.4, 46, 500 }, + [10] = { 30.9, 62.3, 46, 500 }, + [11] = { 30.7, 61.4, 46, 500 }, + [12] = { 31.4, 61.3, 46, 500 }, + [13] = { 32.4, 60.6, 46, 500 }, + [14] = { 30, 60.5, 46, 500 }, + [15] = { 31.2, 59.1, 46, 500 }, + [16] = { 37.2, 49.1, 46, 500 }, + [17] = { 35.7, 49.1, 46, 500 }, + [18] = { 20.2, 48.8, 46, 500 }, + [19] = { 34.7, 48.7, 46, 500 }, + [20] = { 36.1, 48.6, 46, 500 }, + [21] = { 23.4, 47.6, 46, 500 }, + [22] = { 21.6, 47.4, 46, 500 }, + [23] = { 36.9, 47.2, 46, 500 }, + [24] = { 21.4, 46.4, 46, 500 }, + [25] = { 19.9, 45.4, 46, 500 }, + [26] = { 22.3, 45.2, 46, 500 }, + [27] = { 20.8, 45, 46, 500 }, + [28] = { 96.1, 76.8, 5581, 500 }, + [29] = { 99.1, 75.7, 5581, 500 }, + [30] = { 97.5, 75.6, 5581, 500 }, + [31] = { 97.3, 74.7, 5581, 500 }, + [32] = { 95.9, 73.7, 5581, 500 }, + [33] = { 98.1, 73.5, 5581, 500 }, + [34] = { 96.7, 73.4, 5581, 500 }, + }, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [7045] = { + ["coords"] = { + [1] = { 57.6, 65.2, 46, 500 }, + [2] = { 63.4, 54.5, 46, 500 }, + }, + ["lvl"] = "53-55", + ["rnk"] = "1", + }, + [7046] = { + ["coords"] = { + [1] = { 37.8, 63.8, 46, 500 }, + [2] = { 20, 59.5, 46, 500 }, + [3] = { 25.5, 44.1, 46, 500 }, + [4] = { 95.9, 86.5, 5581, 500 }, + }, + ["lvl"] = "56-58", + ["rnk"] = "1", + }, + [7047] = { + ["coords"] = { + [1] = { 84.6, 62.1, 46, 500 }, + [2] = { 88.6, 59.5, 46, 300 }, + [3] = { 91.2, 58.2, 46, 300 }, + [4] = { 92.3, 58, 46, 300 }, + [5] = { 84.6, 56.3, 46, 300 }, + [6] = { 92, 54.9, 46, 300 }, + [7] = { 90.6, 54.6, 46, 300 }, + [8] = { 92.6, 53.5, 46, 300 }, + [9] = { 92.2, 52.9, 46, 300 }, + [10] = { 90.6, 52.1, 46, 300 }, + [11] = { 90.5, 50.9, 46, 500 }, + [12] = { 87.9, 48.5, 46, 300 }, + [13] = { 90.6, 47.4, 46, 500 }, + [14] = { 90.5, 45.2, 46, 500 }, + [15] = { 89.5, 43.9, 46, 500 }, + [16] = { 88.6, 42.8, 46, 300 }, + [17] = { 92.5, 42, 46, 300 }, + [18] = { 89.4, 41.7, 46, 300 }, + [19] = { 85.2, 40.2, 46, 300 }, + [20] = { 91.9, 38.5, 46, 500 }, + [21] = { 87.7, 36.5, 46, 300 }, + [22] = { 91.7, 35.5, 46, 500 }, + [23] = { 85.1, 33.7, 46, 300 }, + [24] = { 87.8, 33.4, 46, 500 }, + [25] = { 93.8, 33.4, 46, 300 }, + [26] = { 91.6, 33.4, 46, 500 }, + [27] = { 81.4, 32, 46, 300 }, + [28] = { 84.9, 31.9, 46, 500 }, + [29] = { 86.9, 30.5, 46, 500 }, + [30] = { 88.3, 29.8, 46, 500 }, + [31] = { 82.3, 28.6, 46, 300 }, + [32] = { 81, 28.2, 46, 500 }, + [33] = { 86.1, 28, 46, 300 }, + [34] = { 81.4, 26.5, 46, 500 }, + [35] = { 85.2, 23.4, 46, 300 }, + [36] = { 84.4, 22.6, 46, 300 }, + [37] = { 85.3, 21.6, 46, 300 }, + }, + ["lvl"] = "51-52", + }, + [7049] = { + ["coords"] = { + [1] = { 23.3, 70.6, 46, 500 }, + [2] = { 22.5, 68.9, 46, 500 }, + [3] = { 24.3, 67.4, 46, 500 }, + [4] = { 22.3, 58.9, 46, 500 }, + [5] = { 28.7, 57.8, 46, 500 }, + [6] = { 17, 55.4, 46, 500 }, + [7] = { 24.8, 47.2, 46, 500 }, + [8] = { 25.4, 45.7, 46, 500 }, + [9] = { 99, 96.5, 5581, 500 }, + [10] = { 98.2, 95, 5581, 500 }, + [11] = { 99.9, 93.6, 5581, 500 }, + [12] = { 98.1, 85.9, 5581, 500 }, + [13] = { 93.2, 82.7, 5581, 500 }, + }, + ["lvl"] = "55-56", + }, + [7051] = { + ["coords"] = { + [1] = { 71.5, 74.9, 40, 300 }, + }, + ["lvl"] = "23", + }, + [7055] = { + ["coords"] = { + [1] = { 49.2, 58.5, 46, 500 }, + [2] = { 44.6, 58, 46, 500 }, + [3] = { 38.7, 54.5, 46, 500 }, + [4] = { 55.7, 54.1, 46, 500 }, + [5] = { 51, 53.4, 46, 500 }, + }, + ["lvl"] = "54-55", + }, + [7056] = { + ["coords"] = { + [1] = { 71.1, 74.7, 40, 300 }, + [2] = { 71.1, 74.6, 40, 300 }, + }, + ["lvl"] = "24", + }, + [7057] = { + ["coords"] = { + [1] = { 34.2, 84.9, 1337, 43200 }, + [2] = { 16.1, 94, 5602, 43200 }, + }, + ["lvl"] = "38", + ["rnk"] = "1", + }, + [7068] = { + ["coords"] = { + [1] = { 19.7, 78.2, 267, 600 }, + [2] = { 18.3, 77.9, 267, 600 }, + [3] = { 19.8, 76.9, 267, 600 }, + [4] = { 18.3, 76.5, 267, 600 }, + [5] = { 76.8, 37.2, 5179, 600 }, + [6] = { 75.6, 37, 5179, 600 }, + [7] = { 76.9, 36.1, 5179, 600 }, + [8] = { 75.6, 35.8, 5179, 600 }, + }, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [7069] = { + ["coords"] = { + [1] = { 13.6, 83.4, 267, 600 }, + [2] = { 13.4, 80, 267, 600 }, + [3] = { 16, 77.6, 267, 600 }, + [4] = { 15.6, 77.2, 267, 600 }, + [5] = { 71.5, 41.8, 5179, 600 }, + [6] = { 71.3, 38.8, 5179, 600 }, + [7] = { 73.6, 36.7, 5179, 600 }, + [8] = { 73.3, 36.4, 5179, 600 }, + }, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [7070] = { + ["coords"] = { + [1] = { 13.1, 82.8, 267, 600 }, + [2] = { 16.3, 80.9, 267, 600 }, + [3] = { 16.7, 80.5, 267, 600 }, + [4] = { 17.3, 80.4, 267, 600 }, + [5] = { 71.1, 41.3, 5179, 600 }, + [6] = { 73.8, 39.6, 5179, 600 }, + [7] = { 74.2, 39.2, 5179, 600 }, + [8] = { 74.8, 39.2, 5179, 600 }, + }, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [7071] = { + ["coords"] = { + [1] = { 13.2, 83.3, 267, 600 }, + [2] = { 19, 80.6, 267, 600 }, + [3] = { 18.4, 78.1, 267, 600 }, + [4] = { 17.3, 76.6, 267, 600 }, + [5] = { 19.7, 76.6, 267, 600 }, + [6] = { 15.8, 76.6, 267, 600 }, + [7] = { 18.4, 76.5, 267, 600 }, + [8] = { 20.3, 76, 267, 600 }, + [9] = { 71.2, 41.7, 5179, 600 }, + [10] = { 76.3, 39.3, 5179, 600 }, + [11] = { 75.7, 37.1, 5179, 600 }, + [12] = { 74.7, 35.8, 5179, 600 }, + [13] = { 76.9, 35.8, 5179, 600 }, + [14] = { 73.4, 35.8, 5179, 600 }, + [15] = { 75.7, 35.8, 5179, 600 }, + [16] = { 77.4, 35.3, 5179, 600 }, + }, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [7072] = { + ["coords"] = { + [1] = { 14.1, 83.9, 267, 600 }, + [2] = { 16.9, 83.8, 267, 600 }, + [3] = { 15.4, 81.8, 267, 600 }, + [4] = { 15.6, 80.3, 267, 600 }, + [5] = { 71.9, 42.3, 5179, 600 }, + [6] = { 74.4, 42.1, 5179, 600 }, + [7] = { 73, 40.4, 5179, 600 }, + [8] = { 73.3, 39.1, 5179, 600 }, + }, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [7075] = { + ["coords"] = { + [1] = { 16.2, 84.9, 267, 600 }, + [2] = { 14, 84.1, 267, 600 }, + [3] = { 16.3, 82.2, 267, 600 }, + [4] = { 14.7, 82, 267, 600 }, + [5] = { 13.4, 80.9, 267, 600 }, + [6] = { 17.1, 80.7, 267, 600 }, + [7] = { 15.5, 77.4, 267, 600 }, + [8] = { 73.8, 43.1, 5179, 600 }, + [9] = { 71.8, 42.4, 5179, 600 }, + [10] = { 73.9, 40.7, 5179, 600 }, + [11] = { 72.4, 40.6, 5179, 600 }, + [12] = { 71.3, 39.6, 5179, 600 }, + [13] = { 74.6, 39.4, 5179, 600 }, + [14] = { 73.1, 36.6, 5179, 600 }, + }, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [7076] = { + ["coords"] = { + [1] = { 42.5, 19.5, 1337, 18000 }, + [2] = { 40.5, 19.2, 1337, 18000 }, + [3] = { 43.6, 17.1, 1337, 18000 }, + [4] = { 39.7, 16.4, 1337, 18000 }, + [5] = { 42.7, 14.2, 1337, 18000 }, + [6] = { 40.8, 14, 1337, 18000 }, + }, + ["fac"] = "AH", + ["lvl"] = "44-45", + }, + [7077] = { + ["coords"] = { + [1] = { 41.8, 22, 1337, 18000 }, + [2] = { 40.5, 21.7, 1337, 18000 }, + [3] = { 39.3, 20.7, 1337, 18000 }, + [4] = { 44.3, 20.3, 1337, 18000 }, + [5] = { 45, 18.6, 1337, 18000 }, + [6] = { 38.1, 17, 1337, 18000 }, + [7] = { 45.2, 16.5, 1337, 18000 }, + [8] = { 38.3, 14.9, 1337, 18000 }, + [9] = { 39.1, 13.2, 1337, 18000 }, + [10] = { 44, 12.9, 1337, 18000 }, + [11] = { 42.9, 11.8, 1337, 18000 }, + [12] = { 41.5, 11.5, 1337, 18000 }, + }, + ["fac"] = "AH", + ["lvl"] = "44-45", + }, + [7078] = { + ["coords"] = { + [1] = { 39.4, 63.6, 1337, 18000 }, + [2] = { 39.5, 63.3, 1337, 18000 }, + [3] = { 39.9, 63.3, 1337, 18000 }, + [4] = { 39.1, 63.1, 1337, 18000 }, + [5] = { 40.3, 63, 1337, 18000 }, + [6] = { 39.5, 62.9, 1337, 18000 }, + [7] = { 39.4, 62.7, 1337, 18000 }, + [8] = { 40.4, 62.4, 1337, 18000 }, + [9] = { 39.8, 62.2, 1337, 18000 }, + [10] = { 48.8, 62, 1337, 18000 }, + [11] = { 40.1, 62, 1337, 18000 }, + [12] = { 48.2, 61.7, 1337, 18000 }, + [13] = { 48.9, 61.4, 1337, 18000 }, + [14] = { 49.7, 61.3, 1337, 18000 }, + [15] = { 47.9, 61.3, 1337, 18000 }, + [16] = { 49.4, 61.2, 1337, 18000 }, + [17] = { 48.5, 61, 1337, 18000 }, + [18] = { 49.6, 60.7, 1337, 18000 }, + [19] = { 48.9, 60.5, 1337, 18000 }, + [20] = { 49.2, 60.3, 1337, 18000 }, + [21] = { 42.4, 58.6, 1337, 18000 }, + [22] = { 41.9, 58.1, 1337, 18000 }, + [23] = { 41.7, 57.9, 1337, 18000 }, + [24] = { 41.2, 57.9, 1337, 18000 }, + [25] = { 43.1, 57.8, 1337, 18000 }, + [26] = { 42.8, 57.5, 1337, 18000 }, + [27] = { 43.3, 57.3, 1337, 18000 }, + [28] = { 42.2, 57.2, 1337, 18000 }, + [29] = { 43, 57.1, 1337, 18000 }, + [30] = { 43.2, 56.6, 1337, 18000 }, + }, + ["lvl"] = "35-36", + }, + [7079] = { + ["coords"] = { + [1] = { 58.4, 48.6, 721, 604800 }, + }, + ["lvl"] = "30", + ["rnk"] = "1", + }, + [7086] = { + ["coords"] = { + [1] = { 55.2, 85.2, 148, 300 }, + [2] = { 38.7, 72.7, 361, 300 }, + [3] = { 39, 72.6, 361, 300 }, + [4] = { 39.9, 72.5, 361, 300 }, + [5] = { 40.4, 72.5, 361, 300 }, + [6] = { 38.9, 71.9, 361, 300 }, + [7] = { 40.7, 71.9, 361, 300 }, + [8] = { 38.8, 71.5, 361, 300 }, + [9] = { 40.6, 71.3, 361, 300 }, + [10] = { 39.7, 71.2, 361, 300 }, + [11] = { 39.2, 71, 361, 300 }, + [12] = { 41.2, 70.9, 361, 300 }, + [13] = { 40.2, 70.8, 361, 300 }, + [14] = { 40.6, 70.6, 361, 300 }, + [15] = { 40.1, 68.2, 361, 300 }, + [16] = { 41.7, 67.9, 361, 300 }, + [17] = { 42.2, 67.7, 361, 300 }, + [18] = { 40.5, 67.6, 361, 300 }, + [19] = { 40.1, 67.5, 361, 300 }, + [20] = { 41.8, 67.2, 361, 300 }, + [21] = { 41.1, 66.9, 361, 300 }, + [22] = { 41.6, 66.7, 361, 300 }, + [23] = { 40.4, 66.6, 361, 300 }, + [24] = { 40.9, 66.1, 361, 300 }, + [25] = { 40.2, 65.7, 361, 300 }, + }, + ["lvl"] = "49-50", + }, + [7092] = { + ["coords"] = { + [1] = { 49.8, 70, 148, 300 }, + [2] = { 50.4, 70, 148, 300 }, + [3] = { 40.7, 59.7, 361, 300 }, + [4] = { 40.6, 59.4, 361, 300 }, + [5] = { 40.5, 59.1, 361, 300 }, + [6] = { 40.9, 59, 361, 300 }, + [7] = { 40.3, 58.9, 361, 300 }, + [8] = { 40, 56, 361, 300 }, + [9] = { 40.5, 55.7, 361, 300 }, + [10] = { 40.1, 55.4, 361, 300 }, + [11] = { 39.7, 54.9, 361, 300 }, + [12] = { 40.1, 54.7, 361, 300 }, + [13] = { 39.1, 54.6, 361, 300 }, + [14] = { 39.3, 54.5, 361, 300 }, + [15] = { 40.4, 54.1, 361, 300 }, + [16] = { 39.5, 54, 361, 300 }, + [17] = { 42.8, 51.1, 361, 300 }, + [18] = { 42.6, 50.4, 361, 300 }, + [19] = { 41.4, 50.2, 361, 300 }, + [20] = { 41.9, 49.5, 361, 300 }, + [21] = { 39.5, 49.2, 361, 300 }, + [22] = { 38.5, 49.2, 361, 300 }, + [23] = { 41.7, 48.9, 361, 300 }, + [24] = { 43.9, 48.6, 361, 300 }, + [25] = { 34.2, 48.5, 361, 300 }, + [26] = { 34.9, 48.4, 361, 300 }, + [27] = { 39.6, 48.4, 361, 300 }, + [28] = { 43.5, 48.3, 361, 300 }, + [29] = { 39.2, 48.3, 361, 300 }, + [30] = { 40, 48.1, 361, 300 }, + [31] = { 42.6, 47.6, 361, 300 }, + [32] = { 41.2, 47.4, 361, 300 }, + [33] = { 42.2, 46.5, 361, 300 }, + [34] = { 44, 46.4, 361, 300 }, + [35] = { 40.9, 45.7, 361, 300 }, + [36] = { 41.4, 45.5, 361, 300 }, + }, + ["lvl"] = "51-52", + }, + [7093] = { + ["coords"] = { + [1] = { 36.5, 52.8, 361, 300 }, + [2] = { 37, 52.4, 361, 300 }, + [3] = { 37.5, 52, 361, 300 }, + [4] = { 37, 47.3, 361, 300 }, + [5] = { 36.6, 46.9, 361, 300 }, + [6] = { 36.7, 46.2, 361, 300 }, + [7] = { 36.9, 45.5, 361, 300 }, + [8] = { 37.1, 45.1, 361, 300 }, + [9] = { 37.3, 44.8, 361, 300 }, + }, + ["lvl"] = "53", + }, + [7094] = "_", + [7095] = "_", + [7096] = "_", + [7097] = { + ["coords"] = { + [1] = { 54.8, 88.1, 148, 300 }, + [2] = { 57.5, 26.6, 331, 300 }, + [3] = { 56.7, 90.9, 361, 300 }, + [4] = { 46.5, 87.7, 361, 300 }, + [5] = { 51.5, 85.6, 361, 300 }, + [6] = { 53.8, 84.3, 361, 300 }, + [7] = { 56.8, 83.6, 361, 300 }, + [8] = { 44.6, 82.8, 361, 300 }, + [9] = { 50.7, 82.1, 361, 300 }, + [10] = { 49, 81.5, 361, 300 }, + [11] = { 44.5, 81.5, 361, 300 }, + [12] = { 42.2, 81.5, 361, 300 }, + [13] = { 47.8, 77.2, 361, 300 }, + [14] = { 46.9, 73.8, 361, 300 }, + [15] = { 37.6, 72.8, 361, 300 }, + [16] = { 39.9, 69, 361, 300 }, + [17] = { 6, 99.9, 616, 300 }, + [18] = { 2.9, 98.9, 616, 300 }, + [19] = { 0.8, 91.1, 616, 300 }, + }, + ["lvl"] = "48-49", + }, + [7098] = { + ["coords"] = { + [1] = { 53.7, 27, 361, 300 }, + [2] = { 56.7, 26.4, 361, 300 }, + [3] = { 55.6, 23.3, 361, 300 }, + [4] = { 63.7, 21.9, 361, 300 }, + [5] = { 56.4, 21.4, 361, 300 }, + [6] = { 62.5, 19.4, 361, 300 }, + [7] = { 64, 18.3, 361, 300 }, + [8] = { 53.8, 16.2, 361, 300 }, + [9] = { 51.2, 16.2, 361, 300 }, + [10] = { 62.5, 16, 361, 300 }, + [11] = { 57.5, 15.9, 361, 300 }, + [12] = { 53.2, 11.6, 361, 300 }, + [13] = { 55.7, 10.8, 361, 300 }, + [14] = { 11.5, 1.3, 616, 300 }, + [15] = { 16.9, 0.1, 616, 300 }, + }, + ["lvl"] = "52-53", + }, + [7099] = { + ["coords"] = { + [1] = { 44.9, 69.9, 361, 300 }, + [2] = { 45, 66.9, 361, 300 }, + [3] = { 42.6, 64.6, 361, 300 }, + [4] = { 43.2, 63.4, 361, 300 }, + [5] = { 41.3, 57, 361, 300 }, + [6] = { 39.5, 56.8, 361, 300 }, + [7] = { 38.5, 55.1, 361, 300 }, + [8] = { 38.1, 53.7, 361, 300 }, + [9] = { 41.5, 53.7, 361, 300 }, + [10] = { 41.8, 50.1, 361, 300 }, + [11] = { 38.6, 49.4, 361, 300 }, + [12] = { 38.2, 42, 361, 300 }, + [13] = { 39.2, 37, 361, 300 }, + [14] = { 40.6, 34.3, 361, 300 }, + [15] = { 49.5, 33.6, 361, 300 }, + [16] = { 51.7, 29.5, 361, 300 }, + [17] = { 45.2, 17.6, 361, 300 }, + [18] = { 50.2, 16, 361, 300 }, + [19] = { 47.9, 15.4, 361, 300 }, + [20] = { 3.9, 13, 616, 300 }, + [21] = { 7.8, 5.8, 616, 300 }, + }, + ["lvl"] = "50-51", + }, + [7100] = { + ["coords"] = { + [1] = { 58, 22.4, 361, 300 }, + [2] = { 58.4, 22.4, 361, 300 }, + [3] = { 58.1, 22, 361, 300 }, + [4] = { 57.2, 21.9, 361, 300 }, + [5] = { 57.4, 21.7, 361, 300 }, + [6] = { 59.6, 21.4, 361, 300 }, + [7] = { 59.2, 21.2, 361, 300 }, + [8] = { 59, 21, 361, 300 }, + [9] = { 57.2, 21, 361, 300 }, + [10] = { 58.1, 20.3, 361, 300 }, + [11] = { 59.3, 20.2, 361, 300 }, + [12] = { 59.1, 19.9, 361, 300 }, + [13] = { 59.5, 19.7, 361, 300 }, + [14] = { 57.3, 19.7, 361, 300 }, + [15] = { 55, 19.6, 361, 300 }, + [16] = { 58.3, 19.1, 361, 300 }, + [17] = { 57.9, 19.1, 361, 300 }, + [18] = { 57.8, 18.5, 361, 300 }, + [19] = { 58.4, 18.4, 361, 300 }, + [20] = { 57.2, 18.3, 361, 300 }, + [21] = { 56.6, 17.9, 361, 300 }, + [22] = { 55.4, 17.7, 361, 300 }, + [23] = { 55, 17.7, 361, 300 }, + [24] = { 58.2, 17.7, 361, 300 }, + [25] = { 57.1, 17.6, 361, 300 }, + [26] = { 57.1, 17.2, 361, 300 }, + [27] = { 56.1, 17, 361, 300 }, + [28] = { 54.4, 16.9, 361, 300 }, + [29] = { 55.5, 16.6, 361, 300 }, + [30] = { 54.9, 15.7, 361, 300 }, + }, + ["lvl"] = "52-53", + }, + [7101] = { + ["coords"] = { + [1] = { 58, 22.4, 361, 300 }, + [2] = { 58.4, 22.4, 361, 300 }, + [3] = { 58.1, 22, 361, 300 }, + [4] = { 57.2, 21.9, 361, 300 }, + [5] = { 57.4, 21.7, 361, 300 }, + [6] = { 59.6, 21.4, 361, 300 }, + [7] = { 59.2, 21.2, 361, 300 }, + [8] = { 59, 21, 361, 300 }, + [9] = { 57.2, 21, 361, 300 }, + [10] = { 58.1, 20.3, 361, 300 }, + [11] = { 59.3, 20.2, 361, 300 }, + [12] = { 59.1, 19.9, 361, 300 }, + [13] = { 59.5, 19.7, 361, 300 }, + [14] = { 57.3, 19.7, 361, 300 }, + [15] = { 55, 19.6, 361, 300 }, + [16] = { 58.3, 19.1, 361, 300 }, + [17] = { 57.9, 19.1, 361, 300 }, + [18] = { 57.8, 18.5, 361, 300 }, + [19] = { 58.4, 18.4, 361, 300 }, + [20] = { 57.2, 18.3, 361, 300 }, + [21] = { 56.6, 17.9, 361, 300 }, + [22] = { 55.4, 17.7, 361, 300 }, + [23] = { 55, 17.7, 361, 300 }, + [24] = { 58.2, 17.7, 361, 300 }, + [25] = { 57.1, 17.6, 361, 300 }, + [26] = { 57.1, 17.2, 361, 300 }, + [27] = { 56.1, 17, 361, 300 }, + [28] = { 54.4, 16.9, 361, 300 }, + [29] = { 55.5, 16.6, 361, 300 }, + [30] = { 54.9, 15.7, 361, 300 }, + }, + ["lvl"] = "53-54", + }, + [7104] = { + ["coords"] = { + [1] = { 57.8, 22.3, 361, 54000 }, + }, + ["lvl"] = "56", + ["rnk"] = "2", + }, + [7105] = { + ["coords"] = { + [1] = { 40.2, 19.8, 331, 300 }, + [2] = { 38.9, 16.9, 331, 300 }, + [3] = { 43.3, 88.9, 361, 300 }, + [4] = { 43.8, 88.4, 361, 300 }, + [5] = { 42.8, 87.4, 361, 300 }, + [6] = { 43.4, 87.3, 361, 300 }, + [7] = { 44, 87.2, 361, 300 }, + [8] = { 41.7, 87.1, 361, 300 }, + [9] = { 42.1, 87, 361, 300 }, + [10] = { 41.9, 87, 361, 300 }, + [11] = { 43.5, 86.9, 361, 300 }, + [12] = { 40.7, 86.8, 361, 300 }, + [13] = { 42.6, 86.6, 361, 300 }, + [14] = { 41.6, 86.5, 361, 300 }, + [15] = { 44.3, 86, 361, 300 }, + [16] = { 41.2, 85.9, 361, 300 }, + [17] = { 41.6, 85.7, 361, 300 }, + [18] = { 40.8, 85.6, 361, 300 }, + [19] = { 40.3, 85.6, 361, 300 }, + [20] = { 40, 85.5, 361, 300 }, + [21] = { 42, 85.3, 361, 300 }, + [22] = { 39.8, 85.2, 361, 300 }, + [23] = { 39.7, 85, 361, 300 }, + [24] = { 41.8, 84.8, 361, 300 }, + [25] = { 41.7, 84.2, 361, 300 }, + [26] = { 42, 84.2, 361, 300 }, + [27] = { 41.8, 84.1, 361, 300 }, + [28] = { 39.3, 84.1, 361, 300 }, + [29] = { 42.3, 83.7, 361, 300 }, + [30] = { 39, 83.6, 361, 300 }, + [31] = { 39.3, 83, 361, 300 }, + [32] = { 39, 82.9, 361, 300 }, + [33] = { 39.1, 82.1, 361, 300 }, + [34] = { 38, 81.1, 361, 300 }, + [35] = { 38.1, 80.6, 361, 300 }, + [36] = { 38.7, 80.3, 361, 300 }, + }, + ["lvl"] = "49-50", + }, + [7106] = { + ["coords"] = { + [1] = { 48.2, 86.5, 148, 300 }, + [2] = { 47.9, 86.3, 148, 300 }, + [3] = { 49.2, 86, 148, 300 }, + [4] = { 49.6, 86, 148, 300 }, + [5] = { 48.8, 85.8, 148, 300 }, + [6] = { 48.6, 85.6, 148, 300 }, + [7] = { 47.9, 85.5, 148, 300 }, + [8] = { 48.3, 85.4, 148, 300 }, + [9] = { 37.2, 69.9, 361, 300 }, + [10] = { 37.8, 69.5, 361, 300 }, + [11] = { 38.1, 69.5, 361, 300 }, + [12] = { 37.7, 69.3, 361, 300 }, + [13] = { 37, 69.1, 361, 300 }, + [14] = { 38, 69.1, 361, 300 }, + [15] = { 37.4, 68.8, 361, 300 }, + [16] = { 37.2, 68.6, 361, 300 }, + [17] = { 37.7, 68.6, 361, 300 }, + [18] = { 37, 68.1, 361, 300 }, + [19] = { 37.4, 67.5, 361, 300 }, + [20] = { 37.1, 67.3, 361, 300 }, + [21] = { 32.3, 67.3, 361, 300 }, + [22] = { 37.5, 67.2, 361, 300 }, + [23] = { 35.4, 67, 361, 300 }, + [24] = { 31.9, 67, 361, 300 }, + [25] = { 36.9, 66.9, 361, 300 }, + [26] = { 35.5, 66.8, 361, 300 }, + [27] = { 33.4, 66.7, 361, 300 }, + [28] = { 37.3, 66.7, 361, 300 }, + [29] = { 33.9, 66.6, 361, 300 }, + [30] = { 35.3, 66.6, 361, 300 }, + [31] = { 37.6, 66.5, 361, 300 }, + [32] = { 33, 66.4, 361, 300 }, + [33] = { 37.5, 66.3, 361, 300 }, + [34] = { 32.8, 66.2, 361, 300 }, + [35] = { 31.9, 66.1, 361, 300 }, + [36] = { 37.4, 66.1, 361, 300 }, + [37] = { 32.4, 65.9, 361, 300 }, + }, + ["lvl"] = "50-51", + }, + [7107] = { + ["coords"] = { + [1] = { 54.3, 47, 148, 300 }, + [2] = { 54, 46.8, 148, 300 }, + [3] = { 57.4, 42.3, 148, 300 }, + [4] = { 57.3, 41.4, 148, 300 }, + [5] = { 57.2, 40.4, 148, 300 }, + [6] = { 57.2, 40.1, 148, 300 }, + [7] = { 36.7, 56.8, 361, 300 }, + [8] = { 39.2, 22.3, 361, 300 }, + [9] = { 39, 22, 361, 300 }, + [10] = { 41, 20.4, 361, 300 }, + [11] = { 41.4, 20.4, 361, 300 }, + [12] = { 40.7, 19.8, 361, 300 }, + [13] = { 42.5, 19.7, 361, 300 }, + [14] = { 41.6, 19.6, 361, 300 }, + [15] = { 41.8, 19.1, 361, 300 }, + [16] = { 42.1, 18.7, 361, 300 }, + [17] = { 42.8, 18.7, 361, 300 }, + [18] = { 42.5, 18.5, 361, 300 }, + [19] = { 42.7, 18, 361, 300 }, + [20] = { 42.4, 17.1, 361, 300 }, + [21] = { 42.8, 16.9, 361, 300 }, + [22] = { 43.4, 16.1, 361, 300 }, + [23] = { 42.7, 15.9, 361, 300 }, + [24] = { 43.1, 15.6, 361, 300 }, + [25] = { 43.2, 15.1, 361, 300 }, + [26] = { 42.6, 14.7, 361, 300 }, + [27] = { 42.5, 14.4, 361, 300 }, + [28] = { 46.2, 14.4, 361, 300 }, + [29] = { 45.1, 14.3, 361, 300 }, + [30] = { 44.9, 14, 361, 300 }, + [31] = { 44, 13.8, 361, 300 }, + }, + ["lvl"] = "52-53", + }, + [7108] = { + ["coords"] = { + [1] = { 54.3, 47, 148, 300 }, + [2] = { 54, 46.8, 148, 300 }, + [3] = { 57.4, 42.3, 148, 300 }, + [4] = { 57.3, 41.4, 148, 300 }, + [5] = { 57.2, 40.4, 148, 300 }, + [6] = { 57.2, 40.1, 148, 300 }, + [7] = { 39.2, 22.3, 361, 300 }, + [8] = { 39, 22, 361, 300 }, + [9] = { 41, 20.4, 361, 300 }, + [10] = { 41.4, 20.4, 361, 300 }, + [11] = { 40.7, 19.8, 361, 300 }, + [12] = { 42.5, 19.7, 361, 300 }, + [13] = { 41.6, 19.6, 361, 300 }, + [14] = { 41.8, 19.1, 361, 300 }, + [15] = { 42.1, 18.7, 361, 300 }, + [16] = { 42.8, 18.7, 361, 300 }, + [17] = { 42.5, 18.5, 361, 300 }, + [18] = { 42.7, 18, 361, 300 }, + [19] = { 42.4, 17.1, 361, 300 }, + [20] = { 42.8, 16.9, 361, 300 }, + [21] = { 43.4, 16.1, 361, 300 }, + [22] = { 42.7, 15.9, 361, 300 }, + [23] = { 43.1, 15.6, 361, 300 }, + [24] = { 43.2, 15.1, 361, 300 }, + [25] = { 42.6, 14.7, 361, 300 }, + [26] = { 42.5, 14.4, 361, 300 }, + [27] = { 46.2, 14.4, 361, 300 }, + [28] = { 45.1, 14.3, 361, 300 }, + [29] = { 44.9, 14, 361, 300 }, + [30] = { 44, 13.8, 361, 300 }, + }, + ["lvl"] = "52-53", + }, + [7109] = { + ["coords"] = { + [1] = { 41.3, 22.2, 331, 300 }, + [2] = { 40.7, 21.6, 331, 300 }, + [3] = { 40.9, 21.5, 331, 300 }, + [4] = { 44, 88.9, 361, 300 }, + [5] = { 43.1, 88.8, 361, 300 }, + [6] = { 42.9, 88.1, 361, 300 }, + [7] = { 43.1, 88.1, 361, 300 }, + [8] = { 43.2, 87.9, 361, 300 }, + [9] = { 40.4, 86.4, 361, 300 }, + [10] = { 44.2, 86.4, 361, 300 }, + [11] = { 42.2, 86.4, 361, 300 }, + [12] = { 39.8, 85.8, 361, 300 }, + [13] = { 40, 85.7, 361, 300 }, + [14] = { 40.7, 85.5, 361, 300 }, + [15] = { 42, 85, 361, 300 }, + [16] = { 40.2, 84.5, 361, 300 }, + [17] = { 42.9, 83.9, 361, 300 }, + [18] = { 40.7, 83.8, 361, 300 }, + [19] = { 42.7, 83.3, 361, 300 }, + [20] = { 38.8, 83.2, 361, 300 }, + [21] = { 38.9, 83, 361, 300 }, + [22] = { 38.9, 82.6, 361, 300 }, + [23] = { 39.2, 82.2, 361, 300 }, + [24] = { 38.6, 81.4, 361, 300 }, + [25] = { 48.2, 86.5, 148, 300 }, + [26] = { 47.9, 86.3, 148, 300 }, + [27] = { 49.2, 86, 148, 300 }, + [28] = { 49.6, 86, 148, 300 }, + [29] = { 48.8, 85.8, 148, 300 }, + [30] = { 48.6, 85.6, 148, 300 }, + [31] = { 47.9, 85.5, 148, 300 }, + [32] = { 48.3, 85.4, 148, 300 }, + [33] = { 37.2, 69.9, 361, 300 }, + [34] = { 37.8, 69.5, 361, 300 }, + [35] = { 38.1, 69.5, 361, 300 }, + [36] = { 37.7, 69.3, 361, 300 }, + [37] = { 37, 69.1, 361, 300 }, + [38] = { 38, 69.1, 361, 300 }, + [39] = { 37.4, 68.8, 361, 300 }, + [40] = { 37.2, 68.6, 361, 300 }, + [41] = { 37.7, 68.6, 361, 300 }, + [42] = { 37, 68.1, 361, 300 }, + [43] = { 37.4, 67.5, 361, 300 }, + [44] = { 37.1, 67.3, 361, 300 }, + [45] = { 32.3, 67.3, 361, 300 }, + [46] = { 37.5, 67.2, 361, 300 }, + [47] = { 35.4, 67, 361, 300 }, + [48] = { 31.9, 67, 361, 300 }, + [49] = { 36.9, 66.9, 361, 300 }, + [50] = { 35.5, 66.8, 361, 300 }, + [51] = { 33.4, 66.7, 361, 300 }, + [52] = { 37.3, 66.7, 361, 300 }, + [53] = { 33.9, 66.6, 361, 300 }, + [54] = { 35.3, 66.6, 361, 300 }, + [55] = { 37.6, 66.5, 361, 300 }, + [56] = { 33, 66.4, 361, 300 }, + [57] = { 37.5, 66.3, 361, 300 }, + [58] = { 32.8, 66.2, 361, 300 }, + [59] = { 31.9, 66.1, 361, 300 }, + [60] = { 37.4, 66.1, 361, 300 }, + [61] = { 32.4, 65.9, 361, 300 }, + }, + ["lvl"] = "50-51", + }, + [7110] = { + ["coords"] = { + [1] = { 48.2, 86.5, 148, 300 }, + [2] = { 47.9, 86.3, 148, 300 }, + [3] = { 49.2, 86, 148, 300 }, + [4] = { 49.6, 86, 148, 300 }, + [5] = { 48.8, 85.8, 148, 300 }, + [6] = { 48.6, 85.6, 148, 300 }, + [7] = { 47.9, 85.5, 148, 300 }, + [8] = { 48.3, 85.4, 148, 300 }, + [9] = { 37.2, 69.9, 361, 300 }, + [10] = { 37.8, 69.5, 361, 300 }, + [11] = { 38.1, 69.5, 361, 300 }, + [12] = { 37.7, 69.3, 361, 300 }, + [13] = { 37, 69.1, 361, 300 }, + [14] = { 38, 69.1, 361, 300 }, + [15] = { 37.4, 68.8, 361, 300 }, + [16] = { 37.2, 68.6, 361, 300 }, + [17] = { 37.7, 68.6, 361, 300 }, + [18] = { 37, 68.1, 361, 300 }, + [19] = { 37.4, 67.5, 361, 300 }, + [20] = { 37.1, 67.3, 361, 300 }, + [21] = { 32.3, 67.3, 361, 300 }, + [22] = { 37.5, 67.2, 361, 300 }, + [23] = { 35.4, 67, 361, 300 }, + [24] = { 31.9, 67, 361, 300 }, + [25] = { 36.9, 66.9, 361, 300 }, + [26] = { 35.5, 66.8, 361, 300 }, + [27] = { 33.4, 66.7, 361, 300 }, + [28] = { 37.3, 66.7, 361, 300 }, + [29] = { 33.9, 66.6, 361, 300 }, + [30] = { 35.3, 66.6, 361, 300 }, + [31] = { 37.6, 66.5, 361, 300 }, + [32] = { 33, 66.4, 361, 300 }, + [33] = { 37.5, 66.3, 361, 300 }, + [34] = { 32.8, 66.2, 361, 300 }, + [35] = { 31.9, 66.1, 361, 300 }, + [36] = { 37.4, 66.1, 361, 300 }, + [37] = { 32.4, 65.9, 361, 300 }, + }, + ["lvl"] = "51-52", + }, + [7111] = { + ["coords"] = { + [1] = { 54.3, 46.6, 148, 300 }, + [2] = { 54.4, 45.9, 148, 300 }, + [3] = { 55.9, 44, 148, 300 }, + [4] = { 57.1, 40.2, 148, 300 }, + [5] = { 57.9, 40.1, 148, 300 }, + [6] = { 57.9, 40, 148, 300 }, + [7] = { 36.8, 56.5, 361, 300 }, + [8] = { 39.9, 22.2, 361, 300 }, + [9] = { 39.6, 22, 361, 300 }, + [10] = { 39.3, 21.8, 361, 300 }, + [11] = { 41.7, 21.7, 361, 300 }, + [12] = { 39.4, 21, 361, 300 }, + [13] = { 41.2, 20.6, 361, 300 }, + [14] = { 41.1, 18.9, 361, 300 }, + [15] = { 42.9, 15, 361, 300 }, + [16] = { 42.4, 14.5, 361, 300 }, + [17] = { 43.3, 14.4, 361, 300 }, + [18] = { 43.3, 14.3, 361, 300 }, + }, + ["lvl"] = "53-54", + }, + [7112] = { + ["coords"] = { + [1] = { 51.3, 81.4, 148, 300 }, + [2] = { 50.9, 81.3, 148, 300 }, + [3] = { 50.7, 81.2, 148, 300 }, + [4] = { 50.5, 80.4, 148, 300 }, + [5] = { 50.9, 80.2, 148, 300 }, + [6] = { 50.2, 79.9, 148, 300 }, + [7] = { 38.9, 62.2, 361, 300 }, + [8] = { 38.1, 62.2, 361, 300 }, + [9] = { 38, 62.1, 361, 300 }, + [10] = { 38.9, 62, 361, 300 }, + [11] = { 38.5, 61.7, 361, 300 }, + [12] = { 38.7, 61.5, 361, 300 }, + [13] = { 38.2, 61.4, 361, 300 }, + [14] = { 36.5, 61.4, 361, 300 }, + [15] = { 35.9, 61.4, 361, 300 }, + [16] = { 35.4, 61.4, 361, 300 }, + [17] = { 36.3, 61.3, 361, 300 }, + [18] = { 37.7, 61.3, 361, 300 }, + [19] = { 37.7, 61.2, 361, 300 }, + [20] = { 35.1, 61.2, 361, 300 }, + [21] = { 38.1, 61.1, 361, 300 }, + [22] = { 38, 60.7, 361, 300 }, + [23] = { 38.6, 60.6, 361, 300 }, + [24] = { 38.2, 60.4, 361, 300 }, + [25] = { 34.9, 60.3, 361, 300 }, + [26] = { 35.4, 60, 361, 300 }, + [27] = { 34.5, 59.7, 361, 300 }, + [28] = { 39.2, 58.5, 361, 300 }, + [29] = { 39.5, 58.2, 361, 300 }, + }, + ["lvl"] = "51-52", + }, + [7113] = { + ["coords"] = { + [1] = { 51.4, 80.8, 148, 300 }, + [2] = { 50.5, 79.6, 148, 300 }, + [3] = { 51, 79.2, 148, 300 }, + [4] = { 36.4, 62.4, 361, 300 }, + [5] = { 36.1, 62.1, 361, 300 }, + [6] = { 37.5, 61.4, 361, 300 }, + [7] = { 38, 61.4, 361, 300 }, + [8] = { 36.9, 61.3, 361, 300 }, + [9] = { 38.5, 61.1, 361, 300 }, + [10] = { 38.1, 60.7, 361, 300 }, + [11] = { 35.9, 60.7, 361, 300 }, + [12] = { 38.8, 60.2, 361, 300 }, + [13] = { 38.3, 59.4, 361, 300 }, + [14] = { 35, 59.4, 361, 300 }, + [15] = { 39.3, 59.3, 361, 300 }, + [16] = { 35.5, 58.9, 361, 300 }, + [17] = { 38.5, 57.7, 361, 300 }, + }, + ["lvl"] = "50-51", + }, + [7114] = { + ["coords"] = { + [1] = { 50.9, 78.3, 148, 300 }, + [2] = { 35.4, 57.8, 361, 300 }, + [3] = { 36.7, 53.4, 361, 300 }, + [4] = { 36.1, 51.8, 361, 300 }, + [5] = { 39.7, 49.5, 361, 300 }, + [6] = { 40.5, 48.5, 361, 300 }, + [7] = { 40.5, 48.4, 361, 300 }, + [8] = { 37.6, 47.1, 361, 300 }, + [9] = { 38.8, 45.9, 361, 300 }, + }, + ["lvl"] = "52-53", + }, + [7115] = { + ["coords"] = { + [1] = { 51.3, 81.4, 148, 300 }, + [2] = { 50.9, 81.3, 148, 300 }, + [3] = { 50.7, 81.2, 148, 300 }, + [4] = { 50.5, 80.4, 148, 300 }, + [5] = { 50.9, 80.2, 148, 300 }, + [6] = { 50.2, 79.9, 148, 300 }, + [7] = { 38.9, 62.2, 361, 300 }, + [8] = { 38.1, 62.2, 361, 300 }, + [9] = { 38, 62.1, 361, 300 }, + [10] = { 38.9, 62, 361, 300 }, + [11] = { 38.5, 61.7, 361, 300 }, + [12] = { 38.7, 61.5, 361, 300 }, + [13] = { 38.2, 61.4, 361, 300 }, + [14] = { 36.5, 61.4, 361, 300 }, + [15] = { 35.9, 61.4, 361, 300 }, + [16] = { 35.4, 61.4, 361, 300 }, + [17] = { 36.3, 61.3, 361, 300 }, + [18] = { 37.7, 61.3, 361, 300 }, + [19] = { 37.7, 61.2, 361, 300 }, + [20] = { 35.1, 61.2, 361, 300 }, + [21] = { 38.1, 61.1, 361, 300 }, + [22] = { 38, 60.7, 361, 300 }, + [23] = { 38.6, 60.6, 361, 300 }, + [24] = { 38.2, 60.4, 361, 300 }, + [25] = { 34.9, 60.3, 361, 300 }, + [26] = { 35.4, 60, 361, 300 }, + [27] = { 34.5, 59.7, 361, 300 }, + [28] = { 39.2, 58.5, 361, 300 }, + [29] = { 39.5, 58.2, 361, 300 }, + }, + ["lvl"] = "51-52", + }, + [7116] = "_", + [7117] = "_", + [7118] = { + ["coords"] = { + [1] = { 51.1, 77.9, 148, 300 }, + [2] = { 51.2, 77.4, 148, 300 }, + [3] = { 35.6, 57.4, 361, 300 }, + [4] = { 35.7, 56.9, 361, 300 }, + [5] = { 36.1, 56.5, 361, 300 }, + [6] = { 36.6, 55.1, 361, 300 }, + [7] = { 37, 54.9, 361, 300 }, + [8] = { 37.1, 54.9, 361, 300 }, + [9] = { 38.2, 54.8, 361, 300 }, + [10] = { 37.6, 54.4, 361, 300 }, + [11] = { 38, 54, 361, 300 }, + [12] = { 36.7, 53.2, 361, 300 }, + [13] = { 37, 53.2, 361, 300 }, + [14] = { 37.5, 52.8, 361, 300 }, + [15] = { 36.5, 51.6, 361, 300 }, + [16] = { 36.9, 51.3, 361, 300 }, + [17] = { 37.8, 50.8, 361, 300 }, + [18] = { 38.5, 50.6, 361, 300 }, + [19] = { 38.6, 50.5, 361, 300 }, + [20] = { 38.4, 50.3, 361, 300 }, + [21] = { 38.5, 50.2, 361, 300 }, + [22] = { 40.2, 48.8, 361, 300 }, + [23] = { 39.9, 48.6, 361, 300 }, + [24] = { 40.7, 48.4, 361, 300 }, + [25] = { 40.1, 48.1, 361, 300 }, + [26] = { 37.6, 47.9, 361, 300 }, + [27] = { 38.1, 47.4, 361, 300 }, + [28] = { 39.8, 47.1, 361, 300 }, + [29] = { 37.2, 47, 361, 300 }, + [30] = { 39.1, 46.9, 361, 300 }, + [31] = { 38.6, 46.8, 361, 300 }, + [32] = { 38.1, 46.2, 361, 300 }, + [33] = { 37.8, 45.8, 361, 300 }, + [34] = { 37.5, 45.4, 361, 300 }, + }, + ["lvl"] = "53-54", + }, + [7119] = "_", + [7120] = { + ["coords"] = { + [1] = { 51.1, 77.9, 148, 300 }, + [2] = { 51.2, 77.4, 148, 300 }, + [3] = { 35.6, 57.4, 361, 300 }, + [4] = { 35.7, 56.9, 361, 300 }, + [5] = { 36.1, 56.5, 361, 300 }, + [6] = { 36.6, 55.1, 361, 300 }, + [7] = { 37, 54.9, 361, 300 }, + [8] = { 37.1, 54.9, 361, 300 }, + [9] = { 38.2, 54.8, 361, 300 }, + [10] = { 37.6, 54.4, 361, 300 }, + [11] = { 38, 54, 361, 300 }, + [12] = { 36.7, 53.2, 361, 300 }, + [13] = { 37, 53.2, 361, 300 }, + [14] = { 37.5, 52.8, 361, 300 }, + [15] = { 36.5, 51.6, 361, 300 }, + [16] = { 36.9, 51.3, 361, 300 }, + [17] = { 37.8, 50.8, 361, 300 }, + [18] = { 38.5, 50.6, 361, 300 }, + [19] = { 38.6, 50.5, 361, 300 }, + [20] = { 38.4, 50.3, 361, 300 }, + [21] = { 38.5, 50.2, 361, 300 }, + [22] = { 40.2, 48.8, 361, 300 }, + [23] = { 39.9, 48.6, 361, 300 }, + [24] = { 40.7, 48.4, 361, 300 }, + [25] = { 40.1, 48.1, 361, 300 }, + [26] = { 37.6, 47.9, 361, 300 }, + [27] = { 38.1, 47.4, 361, 300 }, + [28] = { 39.8, 47.1, 361, 300 }, + [29] = { 37.2, 47, 361, 300 }, + [30] = { 39.1, 46.9, 361, 300 }, + [31] = { 38.6, 46.8, 361, 300 }, + [32] = { 38.1, 46.2, 361, 300 }, + [33] = { 37.8, 45.8, 361, 300 }, + [34] = { 37.5, 45.4, 361, 300 }, + }, + ["lvl"] = "53-54", + }, + [7121] = "_", + [7122] = "_", + [7123] = "_", + [7124] = "_", + [7127] = "_", + [7128] = "_", + [7129] = "_", + [7130] = "_", + [7131] = "_", + [7132] = { + ["coords"] = { + [1] = { 49.8, 27.4, 361, 300 }, + [2] = { 50.5, 27.3, 361, 300 }, + [3] = { 50.8, 27, 361, 300 }, + [4] = { 49.1, 26.6, 361, 300 }, + [5] = { 49.7, 26.5, 361, 300 }, + [6] = { 48.9, 24.7, 361, 300 }, + [7] = { 48.3, 24.3, 361, 300 }, + [8] = { 50.4, 23.8, 361, 300 }, + [9] = { 48.1, 23.8, 361, 300 }, + [10] = { 51.1, 23.4, 361, 300 }, + [11] = { 49.5, 23.1, 361, 300 }, + [12] = { 50.6, 22.4, 361, 300 }, + [13] = { 4.4, 2, 616, 300 }, + [14] = { 5.7, 1.7, 616, 300 }, + [15] = { 6.2, 1.3, 616, 300 }, + [16] = { 3.2, 0.5, 616, 300 }, + [17] = { 4.2, 0.3, 616, 300 }, + }, + ["lvl"] = "53-54", + }, + [7133] = "_", + [7134] = "_", + [7136] = { + ["coords"] = { + [1] = { 44.6, 42.8, 361, 300 }, + [2] = { 40.6, 42.3, 361, 300 }, + [3] = { 43.3, 40.1, 361, 300 }, + [4] = { 43.7, 38.6, 361, 300 }, + }, + ["lvl"] = "52-53", + ["rnk"] = "1", + }, + [7137] = { + ["coords"] = { + [1] = { 43.1, 41.4, 361, 54000 }, + }, + ["lvl"] = "56", + ["rnk"] = "2", + }, + [7138] = { + ["coords"] = { + [1] = { 51.5, 24.8, 361, 300 }, + [2] = { 47, 24, 361, 300 }, + [3] = { 48.8, 21.6, 361, 300 }, + }, + ["lvl"] = "52-53", + }, + [7139] = { + ["coords"] = { + [1] = { 48.5, 29.8, 361, 300 }, + [2] = { 48.4, 29.2, 361, 300 }, + [3] = { 49.8, 29.1, 361, 300 }, + [4] = { 48, 28, 361, 300 }, + [5] = { 47.8, 26.4, 361, 300 }, + [6] = { 51.8, 25.5, 361, 300 }, + [7] = { 46.7, 25.1, 361, 300 }, + [8] = { 51, 24.9, 361, 300 }, + [9] = { 52.5, 24.6, 361, 300 }, + [10] = { 51.8, 24.2, 361, 300 }, + [11] = { 46, 24.1, 361, 300 }, + [12] = { 46.8, 23.9, 361, 300 }, + [13] = { 53.1, 23.6, 361, 300 }, + [14] = { 47.1, 22.9, 361, 300 }, + [15] = { 53.2, 22.1, 361, 300 }, + [16] = { 51.5, 21.7, 361, 300 }, + [17] = { 52.6, 21.2, 361, 300 }, + [18] = { 48.5, 21.2, 361, 300 }, + [19] = { 50.7, 21.1, 361, 300 }, + [20] = { 50.6, 20.8, 361, 300 }, + [21] = { 49.2, 20.2, 361, 300 }, + [22] = { 48.8, 19.4, 361, 300 }, + [23] = { 51, 19.3, 361, 300 }, + [24] = { 50.3, 18.6, 361, 300 }, + [25] = { 49.3, 18.5, 361, 300 }, + [26] = { 49.5, 18, 361, 300 }, + [27] = { 2.1, 6.3, 616, 300 }, + [28] = { 2, 5.1, 616, 300 }, + [29] = { 4.5, 5, 616, 300 }, + [30] = { 1.2, 3, 616, 300 }, + [31] = { 0.9, 0.3, 616, 300 }, + }, + ["lvl"] = "52-53", + }, + [7143] = "_", + [7144] = "_", + [7146] = "_", + [7149] = { + ["coords"] = { + [1] = { 48, 22.5, 361, 300 }, + }, + ["lvl"] = "55-56", + }, + [7150] = "_", + [7151] = "_", + [7152] = "_", + [7153] = { + ["coords"] = { + [1] = { 47.8, 94, 361, 300 }, + [2] = { 48.6, 94, 361, 300 }, + [3] = { 48.1, 93.7, 361, 300 }, + [4] = { 48.2, 93, 361, 300 }, + [5] = { 48.7, 92.6, 361, 300 }, + [6] = { 46.6, 92, 361, 300 }, + [7] = { 48.7, 91.9, 361, 300 }, + [8] = { 49.7, 91.6, 361, 300 }, + [9] = { 49, 91.4, 361, 300 }, + [10] = { 48.4, 91.4, 361, 300 }, + [11] = { 49, 91, 361, 300 }, + [12] = { 48.3, 90.9, 361, 300 }, + [13] = { 48.9, 90.5, 361, 300 }, + [14] = { 47.9, 89.3, 361, 300 }, + [15] = { 46.3, 89.2, 361, 300 }, + [16] = { 48.8, 88.9, 361, 300 }, + [17] = { 49.7, 88.2, 361, 300 }, + }, + ["lvl"] = "48-49", + }, + [7154] = { + ["coords"] = { + [1] = { 47.4, 92.6, 361, 300 }, + [2] = { 49, 92.6, 361, 300 }, + [3] = { 48.3, 91.4, 361, 300 }, + [4] = { 49.2, 91.4, 361, 300 }, + [5] = { 46.3, 90.6, 361, 300 }, + [6] = { 46.2, 90, 361, 300 }, + [7] = { 48.4, 89.8, 361, 300 }, + [8] = { 48.9, 89.1, 361, 300 }, + [9] = { 48.8, 88.9, 361, 300 }, + [10] = { 47.7, 88.8, 361, 300 }, + [11] = { 46.8, 88.3, 361, 300 }, + }, + ["lvl"] = "48-49", + }, + [7156] = { + ["coords"] = { + [1] = { 62.5, 13.2, 361, 300 }, + [2] = { 63.3, 12.9, 361, 300 }, + [3] = { 62.4, 12.7, 361, 300 }, + [4] = { 63.7, 12.3, 361, 300 }, + [5] = { 62.5, 11.8, 361, 300 }, + [6] = { 63.1, 11.6, 361, 300 }, + [7] = { 63.4, 11.6, 361, 300 }, + [8] = { 62.5, 11.6, 361, 300 }, + [9] = { 62.6, 11.2, 361, 300 }, + [10] = { 61.5, 11.1, 361, 300 }, + [11] = { 63.1, 10.9, 361, 300 }, + [12] = { 61.4, 10.6, 361, 300 }, + [13] = { 62.6, 10.3, 361, 300 }, + [14] = { 62.7, 10.1, 361, 300 }, + [15] = { 61.4, 10, 361, 300 }, + [16] = { 62.7, 9.9, 361, 300 }, + [17] = { 63.1, 9.8, 361, 300 }, + [18] = { 62.3, 9.2, 361, 300 }, + [19] = { 63.6, 9.1, 361, 300 }, + [20] = { 61.1, 9, 361, 300 }, + [21] = { 63.1, 9, 361, 300 }, + [22] = { 60.4, 8.8, 361, 300 }, + [23] = { 62.7, 8.4, 361, 300 }, + [24] = { 60.9, 8.4, 361, 300 }, + [25] = { 63.3, 8.2, 361, 300 }, + [26] = { 63.7, 8.2, 361, 300 }, + [27] = { 60.1, 8.1, 361, 300 }, + [28] = { 62.8, 8, 361, 300 }, + [29] = { 62.6, 7.7, 361, 300 }, + [30] = { 61.2, 7.7, 361, 300 }, + [31] = { 61.3, 7.4, 361, 300 }, + [32] = { 60.1, 7.4, 361, 300 }, + [33] = { 63, 7.3, 361, 300 }, + [34] = { 62.7, 7.1, 361, 300 }, + [35] = { 62.1, 7.1, 361, 300 }, + [36] = { 64, 6.8, 361, 300 }, + [37] = { 60.1, 6.5, 361, 300 }, + [38] = { 61.7, 6.3, 361, 300 }, + [39] = { 62.4, 6.3, 361, 300 }, + [40] = { 59.8, 6.2, 361, 300 }, + [41] = { 63.7, 6, 361, 300 }, + [42] = { 60.3, 5.9, 361, 300 }, + [43] = { 61.1, 5.8, 361, 300 }, + [44] = { 60.1, 5.8, 361, 300 }, + [45] = { 60.4, 5.6, 361, 300 }, + }, + ["lvl"] = "53-54", + }, + [7157] = { + ["coords"] = { + [1] = { 62.5, 13.2, 361, 300 }, + [2] = { 63.3, 12.9, 361, 300 }, + [3] = { 62.4, 12.7, 361, 300 }, + [4] = { 63.7, 12.3, 361, 300 }, + [5] = { 62.5, 11.8, 361, 300 }, + [6] = { 63.1, 11.6, 361, 300 }, + [7] = { 63.4, 11.6, 361, 300 }, + [8] = { 62.5, 11.6, 361, 300 }, + [9] = { 62.6, 11.2, 361, 300 }, + [10] = { 61.5, 11.1, 361, 300 }, + [11] = { 63.1, 10.9, 361, 300 }, + [12] = { 61.4, 10.6, 361, 300 }, + [13] = { 62.6, 10.3, 361, 300 }, + [14] = { 62.7, 10.1, 361, 300 }, + [15] = { 61.4, 10, 361, 300 }, + [16] = { 62.7, 9.9, 361, 300 }, + [17] = { 63.1, 9.8, 361, 300 }, + [18] = { 62.3, 9.2, 361, 300 }, + [19] = { 63.6, 9.1, 361, 300 }, + [20] = { 61.1, 9, 361, 300 }, + [21] = { 63.1, 9, 361, 300 }, + [22] = { 60.4, 8.8, 361, 300 }, + [23] = { 62.7, 8.4, 361, 300 }, + [24] = { 60.9, 8.4, 361, 300 }, + [25] = { 63.3, 8.2, 361, 300 }, + [26] = { 63.7, 8.2, 361, 300 }, + [27] = { 60.1, 8.1, 361, 300 }, + [28] = { 62.8, 8, 361, 300 }, + [29] = { 62.6, 7.7, 361, 300 }, + [30] = { 61.2, 7.7, 361, 300 }, + [31] = { 61.3, 7.4, 361, 300 }, + [32] = { 60.1, 7.4, 361, 300 }, + [33] = { 63, 7.3, 361, 300 }, + [34] = { 62.7, 7.1, 361, 300 }, + [35] = { 62.1, 7.1, 361, 300 }, + [36] = { 64, 6.8, 361, 300 }, + [37] = { 60.1, 6.5, 361, 300 }, + [38] = { 61.7, 6.3, 361, 300 }, + [39] = { 62.4, 6.3, 361, 300 }, + [40] = { 59.8, 6.2, 361, 300 }, + [41] = { 63.7, 6, 361, 300 }, + [42] = { 60.3, 5.9, 361, 300 }, + [43] = { 61.1, 5.8, 361, 300 }, + [44] = { 60.1, 5.8, 361, 300 }, + [45] = { 60.4, 5.6, 361, 300 }, + }, + ["lvl"] = "54-55", + }, + [7158] = { + ["coords"] = { + [1] = { 62.5, 13.2, 361, 300 }, + [2] = { 63.3, 12.9, 361, 300 }, + [3] = { 62.4, 12.7, 361, 300 }, + [4] = { 63.7, 12.3, 361, 300 }, + [5] = { 62.5, 11.8, 361, 300 }, + [6] = { 63.1, 11.6, 361, 300 }, + [7] = { 63.4, 11.6, 361, 300 }, + [8] = { 62.5, 11.6, 361, 300 }, + [9] = { 62.6, 11.2, 361, 300 }, + [10] = { 61.5, 11.1, 361, 300 }, + [11] = { 63.1, 10.9, 361, 300 }, + [12] = { 61.4, 10.6, 361, 300 }, + [13] = { 62.6, 10.3, 361, 300 }, + [14] = { 62.7, 10.1, 361, 300 }, + [15] = { 61.4, 10, 361, 300 }, + [16] = { 62.7, 9.9, 361, 300 }, + [17] = { 63.1, 9.8, 361, 300 }, + [18] = { 62.3, 9.2, 361, 300 }, + [19] = { 63.6, 9.1, 361, 300 }, + [20] = { 61.1, 9, 361, 300 }, + [21] = { 63.1, 9, 361, 300 }, + [22] = { 60.4, 8.8, 361, 300 }, + [23] = { 62.7, 8.4, 361, 300 }, + [24] = { 60.9, 8.4, 361, 300 }, + [25] = { 63.3, 8.2, 361, 300 }, + [26] = { 63.7, 8.2, 361, 300 }, + [27] = { 60.1, 8.1, 361, 300 }, + [28] = { 62.8, 8, 361, 300 }, + [29] = { 62.6, 7.7, 361, 300 }, + [30] = { 61.2, 7.7, 361, 300 }, + [31] = { 61.3, 7.4, 361, 300 }, + [32] = { 60.1, 7.4, 361, 300 }, + [33] = { 63, 7.3, 361, 300 }, + [34] = { 62.7, 7.1, 361, 300 }, + [35] = { 62.1, 7.1, 361, 300 }, + [36] = { 64, 6.8, 361, 300 }, + [37] = { 60.1, 6.5, 361, 300 }, + [38] = { 61.7, 6.3, 361, 300 }, + [39] = { 62.4, 6.3, 361, 300 }, + [40] = { 59.8, 6.2, 361, 300 }, + [41] = { 63.7, 6, 361, 300 }, + [42] = { 60.3, 5.9, 361, 300 }, + [43] = { 61.1, 5.8, 361, 300 }, + [44] = { 60.1, 5.8, 361, 300 }, + [45] = { 60.4, 5.6, 361, 300 }, + }, + ["lvl"] = "53-54", + }, + [7161] = { + ["coords"] = { + [1] = { 63.1, 36.3, 17, 30 }, + }, + ["lvl"] = "20", + }, + [7167] = { + ["coords"] = { + [1] = { 65, 45.4, 17, 0 }, + }, + ["lvl"] = "50", + ["rnk"] = "1", + }, + [7170] = { + ["coords"] = { + [1] = { 55.3, 66.9, 38, 600 }, + [2] = { 26.9, 78.5, 5602, 600 }, + }, + ["fac"] = "H", + ["lvl"] = "21", + ["rnk"] = "1", + }, + [7172] = { + ["coords"] = { + [1] = { 37.4, 9.5, 1337, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [7173] = "_", + [7174] = "_", + [7175] = { + ["coords"] = { + [1] = { 60.1, 75.3, 1337, 18000 }, + [2] = { 47.5, 75.1, 1337, 18000 }, + [3] = { 48.1, 75.1, 1337, 18000 }, + [4] = { 48.1, 73.8, 1337, 18000 }, + [5] = { 48.2, 71.4, 1337, 18000 }, + [6] = { 48.1, 70.1, 1337, 18000 }, + [7] = { 47.5, 69.8, 1337, 18000 }, + [8] = { 60.2, 69.6, 1337, 18000 }, + }, + ["lvl"] = "35", + }, + [7186] = "_", + [7206] = { + ["coords"] = { + [1] = { 47.4, 40.7, 1337, 604800 }, + }, + ["lvl"] = "44", + ["rnk"] = "1", + }, + [7207] = { + ["coords"] = { + [1] = { 80.1, 69.9, 1519, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [7227] = "_", + [7228] = { + ["coords"] = { + [1] = { 37.5, 73.8, 1337, 604800 }, + }, + ["lvl"] = "40", + ["rnk"] = "1", + }, + [7229] = "_", + [7232] = { + ["coords"] = { + [1] = { 59.5, 34.5, 1519, 490 }, + [2] = { 48.4, 95.9, 5581, 490 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [7234] = { + ["coords"] = { + [1] = { 69.4, 53.4, 141, 120 }, + }, + ["lvl"] = "8", + }, + [7235] = { + ["coords"] = { + [1] = { 69.6, 55.3, 141, 120 }, + [2] = { 69.4, 53.2, 141, 120 }, + [3] = { 69.7, 52.9, 141, 120 }, + [4] = { 68.6, 52.9, 141, 120 }, + [5] = { 68.9, 52.3, 141, 120 }, + [6] = { 68.6, 52.3, 141, 120 }, + [7] = { 68.6, 52.2, 141, 120 }, + [8] = { 68.3, 52.2, 141, 120 }, + [9] = { 68.5, 51.7, 141, 120 }, + }, + ["lvl"] = "6-7", + }, + [7236] = "_", + [7246] = { + ["coords"] = { + [1] = { 51.2, 57.6, 1176, 18000 }, + [2] = { 45.5, 54.9, 1176, 18000 }, + [3] = { 39, 51.3, 1176, 18000 }, + [4] = { 38.5, 50.7, 1176, 18000 }, + [5] = { 41.7, 50, 1176, 18000 }, + [6] = { 37.6, 48.8, 1176, 18000 }, + [7] = { 37.2, 48.1, 1176, 18000 }, + [8] = { 61.5, 46.8, 1176, 18000 }, + [9] = { 23.2, 46.6, 1176, 18000 }, + [10] = { 35.3, 46.1, 1176, 18000 }, + [11] = { 19.1, 45.9, 1176, 18000 }, + [12] = { 59.3, 44.7, 1176, 18000 }, + [13] = { 37.4, 44.2, 1176, 18000 }, + [14] = { 59.3, 44.1, 1176, 18000 }, + [15] = { 58.6, 44.1, 1176, 18000 }, + [16] = { 29.6, 43.6, 1176, 18000 }, + [17] = { 30, 43.3, 1176, 18000 }, + [18] = { 63.5, 43, 1176, 18000 }, + [19] = { 18.4, 42.5, 1176, 18000 }, + [20] = { 26.6, 42.2, 1176, 18000 }, + [21] = { 50.3, 42.2, 1176, 18000 }, + [22] = { 26.8, 41.9, 1176, 18000 }, + [23] = { 26.3, 41.8, 1176, 18000 }, + [24] = { 14.6, 38.9, 1176, 18000 }, + [25] = { 53.8, 37.3, 1176, 18000 }, + [26] = { 27.3, 36.7, 1176, 18000 }, + [27] = { 31.5, 36.3, 1176, 18000 }, + [28] = { 24.8, 35, 1176, 18000 }, + [29] = { 65.5, 32.4, 1176, 18000 }, + [30] = { 49.4, 25.6, 1176, 18000 }, + [31] = { 36.8, 25.2, 1176, 18000 }, + [32] = { 36.4, 24.2, 1176, 18000 }, + [33] = { 65.3, 22.6, 1176, 18000 }, + [34] = { 36.6, 20.2, 1176, 18000 }, + [35] = { 36.5, 19.8, 1176, 18000 }, + [36] = { 33.6, 18.8, 1176, 18000 }, + [37] = { 29.9, 16.5, 1176, 18000 }, + [38] = { 30.8, 14.3, 1176, 18000 }, + }, + ["lvl"] = "45-46", + ["rnk"] = "1", + }, + [7247] = { + ["coords"] = { + [1] = { 52, 44.1, 1176, 18000 }, + [2] = { 20, 39.2, 1176, 120 }, + [3] = { 35, 32, 1176, 18000 }, + [4] = { 56, 30.8, 1176, 18000 }, + [5] = { 32.4, 25, 1176, 18000 }, + [6] = { 29.7, 16.6, 1176, 18000 }, + }, + ["lvl"] = "45-46", + ["rnk"] = "1", + }, + [7267] = { + ["coords"] = { + [1] = { 43.9, 35.2, 1176, 604800 }, + }, + ["lvl"] = "48", + ["rnk"] = "1", + }, + [7268] = { + ["coords"] = { + [1] = { 22.1, 47.3, 1176, 18000 }, + [2] = { 16.7, 45.7, 1176, 18000 }, + [3] = { 15.7, 45.2, 1176, 18000 }, + [4] = { 16.5, 44.3, 1176, 18000 }, + [5] = { 13.8, 36.5, 1176, 18000 }, + [6] = { 14.1, 36.4, 1176, 18000 }, + [7] = { 41.1, 36.1, 1176, 18000 }, + [8] = { 40.9, 35.4, 1176, 18000 }, + [9] = { 44.2, 31.3, 1176, 18000 }, + [10] = { 43.4, 30.8, 1176, 18000 }, + }, + ["lvl"] = "45-46", + ["rnk"] = "1", + }, + [7269] = { + ["coords"] = { + [1] = { 58.4, 62.5, 1176, 18000 }, + [2] = { 45.3, 58.9, 1176, 18000 }, + [3] = { 42.8, 58.1, 1176, 18000 }, + [4] = { 57.9, 58, 1176, 18000 }, + [5] = { 49.3, 57.7, 1176, 18000 }, + [6] = { 43.8, 53.9, 1176, 18000 }, + [7] = { 56.1, 53.3, 1176, 18000 }, + [8] = { 41.1, 51.6, 1176, 18000 }, + [9] = { 43.8, 51, 1176, 18000 }, + [10] = { 36.5, 47.9, 1176, 18000 }, + [11] = { 53.8, 47.9, 1176, 18000 }, + [12] = { 47.3, 47.1, 1176, 18000 }, + [13] = { 29.4, 43.7, 1176, 18000 }, + [14] = { 60.7, 43.5, 1176, 18000 }, + [15] = { 58.3, 43.2, 1176, 18000 }, + [16] = { 50.3, 43.1, 1176, 18000 }, + [17] = { 50.9, 42.9, 1176, 18000 }, + [18] = { 34.1, 40.6, 1176, 18000 }, + [19] = { 53.3, 39.7, 1176, 18000 }, + [20] = { 27.1, 36.6, 1176, 18000 }, + [21] = { 56, 31.4, 1176, 18000 }, + [22] = { 57.7, 30.2, 1176, 18000 }, + [23] = { 55.2, 30.1, 1176, 18000 }, + [24] = { 54.3, 29.7, 1176, 18000 }, + [25] = { 55.3, 29.2, 1176, 18000 }, + [26] = { 55.8, 29.1, 1176, 18000 }, + [27] = { 52.9, 29.1, 1176, 18000 }, + [28] = { 54.9, 29, 1176, 18000 }, + [29] = { 54.4, 28.9, 1176, 18000 }, + [30] = { 58.5, 28.9, 1176, 18000 }, + [31] = { 53.8, 28.8, 1176, 18000 }, + [32] = { 52.5, 28.1, 1176, 18000 }, + [33] = { 54, 28.1, 1176, 18000 }, + [34] = { 53.1, 28, 1176, 18000 }, + [35] = { 51.9, 28, 1176, 18000 }, + [36] = { 56.1, 27.6, 1176, 18000 }, + [37] = { 59.1, 27.3, 1176, 18000 }, + [38] = { 52, 27.1, 1176, 18000 }, + [39] = { 57.2, 27, 1176, 18000 }, + [40] = { 50.5, 27, 1176, 18000 }, + [41] = { 52.7, 26.9, 1176, 18000 }, + [42] = { 53.4, 26.9, 1176, 18000 }, + [43] = { 56.5, 26.6, 1176, 18000 }, + [44] = { 55.9, 26.5, 1176, 18000 }, + [45] = { 52.4, 26.4, 1176, 18000 }, + [46] = { 57.9, 25.9, 1176, 18000 }, + [47] = { 53.3, 25.9, 1176, 18000 }, + [48] = { 56.9, 25.8, 1176, 18000 }, + [49] = { 52.5, 25.6, 1176, 18000 }, + [50] = { 56, 25.5, 1176, 18000 }, + [51] = { 54.7, 25.4, 1176, 18000 }, + [52] = { 53.8, 25.3, 1176, 18000 }, + [53] = { 49.5, 25.2, 1176, 18000 }, + [54] = { 55.2, 25.1, 1176, 18000 }, + [55] = { 51.6, 25.1, 1176, 18000 }, + [56] = { 56.4, 25, 1176, 18000 }, + [57] = { 54.5, 24.7, 1176, 18000 }, + [58] = { 48.4, 24.7, 1176, 18000 }, + [59] = { 53.7, 24.7, 1176, 18000 }, + [60] = { 56.9, 24.5, 1176, 18000 }, + [61] = { 53.1, 24.5, 1176, 18000 }, + [62] = { 55.7, 24.5, 1176, 18000 }, + [63] = { 50.1, 23.8, 1176, 18000 }, + [64] = { 58.5, 23.6, 1176, 18000 }, + [65] = { 56.6, 21.9, 1176, 18000 }, + [66] = { 31.7, 21.8, 1176, 18000 }, + [67] = { 36.7, 18.3, 1176, 18000 }, + [68] = { 34.4, 18.2, 1176, 18000 }, + }, + ["lvl"] = "44-46", + }, + [7270] = "_", + [7271] = { + ["coords"] = { + [1] = { 44, 15.2, 1176, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "46", + ["rnk"] = "1", + }, + [7272] = { + ["coords"] = { + [1] = { 55.3, 29.7, 1176, 604800 }, + }, + ["lvl"] = "45-46", + ["rnk"] = "1", + }, + [7273] = { + ["coords"] = { + [1] = { 31.6, 42, 1176, 0 }, + }, + ["lvl"] = "46", + ["rnk"] = "1", + }, + [7274] = { + ["coords"] = { + [1] = { 24.5, 17.9, 1176, 604800 }, + }, + ["lvl"] = "46", + ["rnk"] = "1", + }, + [7290] = { + ["coords"] = { + [1] = { 28.6, 35.1, 1337, 18000 }, + [2] = { 29.3, 33.7, 1337, 18000 }, + }, + ["lvl"] = "43-44", + ["rnk"] = "1", + }, + [7291] = { + ["coords"] = { + [1] = { 25.8, 36, 1337, 604800 }, + }, + ["lvl"] = "45", + ["rnk"] = "1", + }, + [7295] = { + ["coords"] = { + [1] = { 43.2, 65.7, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [7299] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [7309] = { + ["coords"] = { + [1] = { 41.6, 22, 1337, 18000 }, + [2] = { 41.3, 21.9, 1337, 18000 }, + [3] = { 41, 21.9, 1337, 18000 }, + [4] = { 40.8, 21.8, 1337, 18000 }, + [5] = { 40.2, 21.5, 1337, 18000 }, + [6] = { 40, 21.3, 1337, 18000 }, + [7] = { 39.7, 21.1, 1337, 18000 }, + [8] = { 39.5, 20.9, 1337, 18000 }, + [9] = { 44.4, 20, 1337, 18000 }, + [10] = { 44.6, 19.6, 1337, 18000 }, + [11] = { 44.7, 19.3, 1337, 18000 }, + [12] = { 44.9, 18.9, 1337, 18000 }, + [13] = { 45, 18.1, 1337, 18000 }, + [14] = { 45.1, 17.7, 1337, 18000 }, + [15] = { 45.1, 17.3, 1337, 18000 }, + [16] = { 45.2, 16.9, 1337, 18000 }, + [17] = { 38.2, 16.6, 1337, 18000 }, + [18] = { 38.2, 16.2, 1337, 18000 }, + [19] = { 38.2, 15.7, 1337, 18000 }, + [20] = { 38.3, 15.3, 1337, 18000 }, + [21] = { 38.5, 14.6, 1337, 18000 }, + [22] = { 38.6, 14.2, 1337, 18000 }, + [23] = { 38.8, 13.8, 1337, 18000 }, + [24] = { 38.9, 13.5, 1337, 18000 }, + [25] = { 43.8, 12.6, 1337, 18000 }, + [26] = { 43.6, 12.4, 1337, 18000 }, + [27] = { 43.4, 12.2, 1337, 18000 }, + [28] = { 43.1, 12, 1337, 18000 }, + [29] = { 42.6, 11.7, 1337, 18000 }, + [30] = { 42.3, 11.6, 1337, 18000 }, + [31] = { 42, 11.5, 1337, 18000 }, + [32] = { 41.7, 11.5, 1337, 18000 }, + }, + ["fac"] = "AH", + ["lvl"] = "44-45", + }, + [7310] = { + ["coords"] = { + [1] = { 54.7, 5.8, 17, 413 }, + [2] = { 54.7, 5.7, 17, 413 }, + }, + ["lvl"] = "25", + }, + [7311] = { + ["coords"] = { + [1] = { 42.9, 9.7, 14, 30 }, + [2] = { 39.2, 86.3, 1637, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [7312] = { + ["coords"] = { + [1] = { 27.2, 8.6, 1537, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [7313] = { + ["coords"] = { + [1] = { 24.8, 64.8, 141, 30 }, + [2] = { 36.7, 85.9, 1657, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [7314] = "_", + [7316] = { + ["coords"] = { + [1] = { 23.2, 56.5, 141, 30 }, + [2] = { 28.9, 45.8, 1657, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [7317] = { + ["coords"] = { + [1] = { 44.9, 61.6, 141, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [7318] = { + ["coords"] = { + [1] = { 45.5, 58.6, 141, 120 }, + }, + ["lvl"] = "10", + }, + [7319] = { + ["coords"] = { + [1] = { 48.1, 25.1, 141, 120 }, + }, + ["lvl"] = "12", + }, + [7320] = { + ["coords"] = { + [1] = { 41, 33.1, 1337, 18000 }, + [2] = { 40.3, 32.9, 1337, 18000 }, + [3] = { 47.1, 32.7, 1337, 18000 }, + [4] = { 42.8, 32.6, 1337, 18000 }, + [5] = { 44.8, 31.6, 1337, 18000 }, + [6] = { 48.2, 30.1, 1337, 18000 }, + [7] = { 38.6, 30, 1337, 18000 }, + [8] = { 39.4, 29.9, 1337, 18000 }, + [9] = { 47.6, 29.5, 1337, 18000 }, + }, + ["lvl"] = "44-45", + ["rnk"] = "1", + }, + [7321] = { + ["coords"] = { + [1] = { 40.6, 33.7, 1337, 18000 }, + [2] = { 42.7, 33.7, 1337, 18000 }, + [3] = { 45, 33.2, 1337, 18000 }, + [4] = { 45.1, 31.6, 1337, 18000 }, + [5] = { 48.1, 30.9, 1337, 18000 }, + [6] = { 46.8, 29.6, 1337, 18000 }, + }, + ["lvl"] = "44-45", + ["rnk"] = "1", + }, + [7327] = { + ["coords"] = { + [1] = { 29.6, 21.6, 722, 18000 }, + [2] = { 34.3, 20.5, 722, 18000 }, + [3] = { 37.9, 18.5, 722, 18000 }, + [4] = { 31.1, 16.8, 722, 18000 }, + [5] = { 25.4, 14.8, 722, 18000 }, + }, + ["lvl"] = "34-35", + ["rnk"] = "1", + }, + [7328] = { + ["coords"] = { + [1] = { 57, 34.1, 722, 18000 }, + [2] = { 53.8, 32.9, 722, 18000 }, + [3] = { 38, 31.5, 722, 18000 }, + [4] = { 46.4, 30.4, 722, 18000 }, + [5] = { 38.2, 27, 722, 18000 }, + [6] = { 54.5, 25.1, 722, 18000 }, + [7] = { 34.8, 24.9, 722, 18000 }, + [8] = { 44.6, 24.8, 722, 18000 }, + [9] = { 41.4, 23.4, 722, 18000 }, + [10] = { 60.4, 23.3, 722, 18000 }, + [11] = { 47.5, 23, 722, 18000 }, + }, + ["lvl"] = "35-36", + ["rnk"] = "1", + }, + [7329] = { + ["coords"] = { + [1] = { 57.9, 36.6, 722, 18000 }, + [2] = { 57.5, 33.3, 722, 18000 }, + [3] = { 49.9, 33.3, 722, 18000 }, + [4] = { 39, 31.9, 722, 18000 }, + [5] = { 54.8, 31.8, 722, 18000 }, + [6] = { 38.4, 31.5, 722, 18000 }, + [7] = { 47.2, 30.6, 722, 18000 }, + [8] = { 48, 30.2, 722, 18000 }, + [9] = { 40.5, 29.3, 722, 18000 }, + [10] = { 46, 27.5, 722, 18000 }, + [11] = { 36.9, 27.3, 722, 18000 }, + [12] = { 53.8, 26.1, 722, 18000 }, + [13] = { 59.1, 25.2, 722, 18000 }, + [14] = { 40.8, 24.5, 722, 18000 }, + [15] = { 34.2, 24.5, 722, 18000 }, + [16] = { 47.9, 24.3, 722, 18000 }, + [17] = { 44.6, 24, 722, 18000 }, + [18] = { 46.7, 22.2, 722, 18000 }, + }, + ["lvl"] = "35-36", + ["rnk"] = "1", + }, + [7332] = { + ["coords"] = { + [1] = { 30.3, 22, 722, 18000 }, + [2] = { 34, 19.2, 722, 18000 }, + [3] = { 36.9, 18.5, 722, 18000 }, + [4] = { 28, 17.8, 722, 18000 }, + [5] = { 27, 16.3, 722, 18000 }, + [6] = { 35.2, 15.8, 722, 18000 }, + [7] = { 22.6, 15.1, 722, 18000 }, + }, + ["lvl"] = "34-35", + ["rnk"] = "1", + }, + [7333] = { + ["coords"] = { + [1] = { 28.6, 18.8, 722, 18000 }, + [2] = { 28.7, 18.4, 722, 18000 }, + [3] = { 28.3, 18.2, 722, 18000 }, + [4] = { 28, 18.1, 722, 18000 }, + [5] = { 35.4, 16.5, 722, 18000 }, + [6] = { 36.2, 16.1, 722, 18000 }, + [7] = { 35.7, 16, 722, 18000 }, + [8] = { 35.3, 15.4, 722, 18000 }, + }, + ["lvl"] = "34", + }, + [7334] = { + ["coords"] = { + [1] = { 53.1, 25.9, 722, 18000 }, + [2] = { 43.7, 23.2, 722, 18000 }, + }, + ["lvl"] = "37", + }, + [7335] = { + ["coords"] = { + [1] = { 34.6, 20.9, 722, 18000 }, + [2] = { 30.1, 20.8, 722, 18000 }, + [3] = { 37.4, 19.8, 722, 18000 }, + [4] = { 31.4, 16.8, 722, 18000 }, + [5] = { 25, 14.2, 722, 18000 }, + }, + ["lvl"] = "35-36", + ["rnk"] = "1", + }, + [7337] = { + ["coords"] = { + [1] = { 57.6, 35.4, 722, 18000 }, + [2] = { 50.7, 33.4, 722, 18000 }, + [3] = { 37.5, 30.9, 722, 18000 }, + [4] = { 47.2, 29.7, 722, 18000 }, + [5] = { 40.2, 28.6, 722, 18000 }, + [6] = { 55, 26.5, 722, 18000 }, + [7] = { 37.7, 26.5, 722, 18000 }, + [8] = { 44, 24, 722, 18000 }, + [9] = { 59.5, 23.6, 722, 18000 }, + [10] = { 46.9, 23.1, 722, 18000 }, + }, + ["lvl"] = "36-37", + ["rnk"] = "1", + }, + [7341] = { + ["coords"] = { + [1] = { 35.1, 60.4, 722, 18000 }, + [2] = { 38.2, 56.8, 722, 18000 }, + [3] = { 27.7, 40.1, 722, 18000 }, + [4] = { 28.5, 37.5, 722, 18000 }, + [5] = { 43.1, 37, 722, 18000 }, + [6] = { 37.6, 34.4, 722, 18000 }, + }, + ["lvl"] = "37-38", + ["rnk"] = "1", + }, + [7342] = { + ["coords"] = { + [1] = { 33, 54.5, 722, 18000 }, + [2] = { 32, 51.8, 722, 18000 }, + [3] = { 38.8, 48.8, 722, 18000 }, + [4] = { 28.8, 46.2, 722, 18000 }, + [5] = { 31.4, 44.2, 722, 18000 }, + [6] = { 24.7, 20, 722, 18000 }, + }, + ["lvl"] = "39-40", + ["rnk"] = "1", + }, + [7343] = { + ["coords"] = { + [1] = { 40.9, 51.7, 722, 604800 }, + [2] = { 41.2, 51.7, 722, 604800 }, + [3] = { 36, 40.7, 722, 604800 }, + [4] = { 32.2, 39.5, 722, 604800 }, + [5] = { 29.1, 37.3, 722, 604800 }, + [6] = { 28.9, 37, 722, 604800 }, + [7] = { 70.6, 36.3, 722, 604800 }, + [8] = { 70, 36.2, 722, 604800 }, + [9] = { 69.4, 36.1, 722, 604800 }, + [10] = { 70.9, 35.6, 722, 604800 }, + [11] = { 68.8, 35.5, 722, 604800 }, + [12] = { 70.3, 35.3, 722, 604800 }, + [13] = { 69.7, 35.2, 722, 604800 }, + [14] = { 68.1, 34.9, 722, 604800 }, + [15] = { 67.5, 34.7, 722, 604800 }, + [16] = { 68.7, 34.7, 722, 604800 }, + [17] = { 67, 34.6, 722, 604800 }, + [18] = { 70.4, 34.4, 722, 604800 }, + [19] = { 67.9, 34.4, 722, 604800 }, + [20] = { 69.2, 34.2, 722, 604800 }, + [21] = { 69.6, 33.9, 722, 604800 }, + [22] = { 68.4, 33.8, 722, 604800 }, + [23] = { 67.7, 33.8, 722, 604800 }, + [24] = { 66.4, 33.6, 722, 604800 }, + [25] = { 67.1, 33.6, 722, 604800 }, + [26] = { 68.8, 33.4, 722, 604800 }, + [27] = { 68.1, 33.1, 722, 604800 }, + [28] = { 69, 32.3, 722, 604800 }, + }, + ["lvl"] = "35", + }, + [7344] = { + ["coords"] = { + [1] = { 33.5, 61.8, 722, 18000 }, + [2] = { 34.8, 61.7, 722, 18000 }, + [3] = { 33.7, 60.3, 722, 18000 }, + [4] = { 38.2, 58.7, 722, 18000 }, + [5] = { 39.2, 58.7, 722, 18000 }, + [6] = { 27.7, 57.5, 722, 18000 }, + [7] = { 28.9, 57, 722, 18000 }, + [8] = { 41.4, 52.3, 722, 18000 }, + [9] = { 40.9, 51, 722, 18000 }, + [10] = { 27.8, 45.8, 722, 18000 }, + [11] = { 37.4, 42.1, 722, 18000 }, + [12] = { 38.1, 41.5, 722, 18000 }, + [13] = { 37.3, 40.9, 722, 18000 }, + [14] = { 26.7, 40, 722, 18000 }, + [15] = { 27.5, 39.1, 722, 18000 }, + [16] = { 39.8, 37.1, 722, 18000 }, + [17] = { 40.7, 37, 722, 18000 }, + [18] = { 32.3, 35.7, 722, 18000 }, + [19] = { 31.3, 34.1, 722, 18000 }, + }, + ["lvl"] = "37-38", + }, + [7345] = { + ["coords"] = { + [1] = { 32.9, 51.7, 722, 18000 }, + [2] = { 38.8, 49.8, 722, 18000 }, + }, + ["lvl"] = "39-40", + ["rnk"] = "1", + }, + [7346] = { + ["coords"] = { + [1] = { 33.2, 56.6, 722, 18000 }, + [2] = { 34, 56.6, 722, 18000 }, + [3] = { 36.2, 55.6, 722, 18000 }, + [4] = { 36.9, 55, 722, 18000 }, + [5] = { 31.4, 51.3, 722, 18000 }, + [6] = { 32.6, 50.8, 722, 18000 }, + [7] = { 32, 50.6, 722, 18000 }, + [8] = { 31.2, 50.1, 722, 18000 }, + [9] = { 38.2, 49.3, 722, 18000 }, + [10] = { 38.2, 48.2, 722, 18000 }, + [11] = { 20.9, 48.1, 722, 18000 }, + [12] = { 19.6, 47.8, 722, 18000 }, + [13] = { 38.9, 47.3, 722, 18000 }, + [14] = { 37.8, 47.2, 722, 18000 }, + [15] = { 29.3, 47.2, 722, 18000 }, + [16] = { 20.4, 47, 722, 18000 }, + [17] = { 27.9, 46.8, 722, 18000 }, + [18] = { 32.4, 43.9, 722, 18000 }, + [19] = { 28.9, 43.2, 722, 18000 }, + [20] = { 32.5, 42.5, 722, 18000 }, + [21] = { 28.6, 42.4, 722, 18000 }, + [22] = { 33.6, 39.7, 722, 18000 }, + [23] = { 34, 38.2, 722, 18000 }, + [24] = { 24.3, 36.9, 722, 18000 }, + [25] = { 23.7, 36.4, 722, 18000 }, + [26] = { 22.4, 36.3, 722, 18000 }, + [27] = { 21.7, 35.3, 722, 18000 }, + [28] = { 22, 34.7, 722, 18000 }, + [29] = { 24.1, 30.9, 722, 18000 }, + [30] = { 24.8, 29.9, 722, 18000 }, + }, + ["lvl"] = "38-39", + }, + [7347] = { + ["coords"] = { + [1] = { 32.2, 55.2, 722, 18000 }, + [2] = { 36.4, 54.2, 722, 18000 }, + [3] = { 36.9, 54.1, 722, 18000 }, + [4] = { 31.1, 49.4, 722, 18000 }, + [5] = { 20.2, 48.5, 722, 18000 }, + [6] = { 28.8, 48.3, 722, 18000 }, + [7] = { 33.1, 43.1, 722, 18000 }, + [8] = { 29.2, 42.3, 722, 18000 }, + [9] = { 29.4, 41.5, 722, 18000 }, + [10] = { 34.4, 39.3, 722, 18000 }, + [11] = { 33.3, 38.8, 722, 18000 }, + [12] = { 24.4, 36, 722, 18000 }, + [13] = { 23, 33.9, 722, 18000 }, + [14] = { 21.9, 33.5, 722, 18000 }, + [15] = { 24.6, 31.1, 722, 18000 }, + [16] = { 25.3, 21.1, 722, 18000 }, + [17] = { 23.7, 19.6, 722, 18000 }, + }, + ["lvl"] = "38-39", + ["rnk"] = "1", + }, + [7348] = { + ["coords"] = { + [1] = { 34.3, 61.1, 722, 18000 }, + [2] = { 38.6, 57.8, 722, 18000 }, + [3] = { 28.3, 56.7, 722, 18000 }, + [4] = { 41.9, 51.5, 722, 18000 }, + [5] = { 36.8, 41.6, 722, 18000 }, + [6] = { 27.2, 40.9, 722, 18000 }, + [7] = { 26.6, 38.9, 722, 18000 }, + [8] = { 28.6, 37.7, 722, 18000 }, + [9] = { 43.6, 37, 722, 18000 }, + [10] = { 39.8, 36.1, 722, 18000 }, + [11] = { 31.5, 35.6, 722, 18000 }, + }, + ["lvl"] = "37-38", + ["rnk"] = "1", + }, + [7352] = { + ["coords"] = { + [1] = { 28.1, 55.6, 722, 18000 }, + [2] = { 40.3, 52.2, 722, 18000 }, + [3] = { 37.8, 40.2, 722, 18000 }, + [4] = { 43.6, 37.4, 722, 18000 }, + [5] = { 43.1, 36.7, 722, 18000 }, + [6] = { 40.6, 36.1, 722, 18000 }, + [7] = { 37.5, 34.7, 722, 18000 }, + [8] = { 32, 34.3, 722, 18000 }, + }, + ["lvl"] = "37-38", + ["rnk"] = "1", + }, + [7353] = { + ["coords"] = { + [1] = { 38.3, 49.3, 722, 18000 }, + [2] = { 19.1, 48.5, 722, 18000 }, + [3] = { 24.1, 35.5, 722, 18000 }, + [4] = { 22.5, 35.3, 722, 18000 }, + [5] = { 23.6, 31.8, 722, 18000 }, + [6] = { 24.8, 21, 722, 18000 }, + [7] = { 24.2, 20.6, 722, 18000 }, + }, + ["lvl"] = "39-40", + ["rnk"] = "1", + }, + [7354] = { + ["coords"] = { + [1] = { 27.8, 45.8, 722, 604800 }, + }, + ["lvl"] = "40", + ["rnk"] = "2", + }, + [7357] = { + ["coords"] = { + [1] = { 68.1, 36.7, 722, 604800 }, + }, + ["lvl"] = "39", + ["rnk"] = "1", + }, + [7358] = { + ["coords"] = { + [1] = { 35.2, 47.5, 722, 604800 }, + }, + ["lvl"] = "41", + ["rnk"] = "1", + }, + [7360] = { + ["coords"] = { + [1] = { 31.2, 56, 267, 300 }, + [2] = { 86.9, 17.9, 5179, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "28-29", + }, + [7370] = { + ["coords"] = { + [1] = { 27.9, 36.1, 4, 180 }, + [2] = { 30, 29.2, 4, 600 }, + [3] = { 68.9, 4.8, 33, 180 }, + [4] = { 53.7, 90.3, 41, 180 }, + [5] = { 56.6, 81.1, 41, 600 }, + [6] = { 54.4, 80.7, 41, 600 }, + [7] = { 50.6, 80.1, 41, 600 }, + [8] = { 55.8, 79.7, 41, 600 }, + [9] = { 45.4, 78.5, 41, 600 }, + [10] = { 54.7, 78.4, 41, 600 }, + [11] = { 53.5, 78.4, 41, 600 }, + [12] = { 52, 78.2, 41, 600 }, + [13] = { 41.2, 75.5, 41, 600 }, + [14] = { 45.6, 71.5, 41, 600 }, + [15] = { 41.5, 69.5, 41, 600 }, + }, + ["lvl"] = "58-60", + }, + [7373] = "_", + [7374] = "_", + [7375] = "_", + [7377] = "_", + [7378] = "_", + [7381] = { + ["coords"] = { + [1] = { 44.2, 53.3, 12, 300 }, + [2] = { 29.5, 61.9, 876, 120 }, + [3] = { 50.6, 60, 5581, 120 }, + }, + ["lvl"] = "1", + }, + [7382] = { + ["coords"] = { + [1] = { 44.2, 53.2, 12, 300 }, + [2] = { 29.7, 61.2, 876, 120 }, + [3] = { 50.6, 60.1, 5581, 120 }, + }, + ["lvl"] = "1", + }, + [7383] = { + ["coords"] = { + [1] = { 29.7, 60.3, 876, 120 }, + [2] = { 59.4, 61.2, 2040, 300 }, + [3] = { 66, 31.1, 5225, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [7385] = { + ["coords"] = { + [1] = { 44.2, 53.3, 12, 555 }, + [2] = { 30, 60.5, 876, 120 }, + [3] = { 41.9, 70.4, 2040, 25 }, + [4] = { 57.7, 35.5, 5225, 25 }, + [5] = { 76.6, 89.5, 5581, 25 }, + }, + ["lvl"] = "1", + }, + [7386] = { + ["coords"] = { + [1] = { 29.3, 60.9, 876, 120 }, + [2] = { 47.1, 56.5, 1519, 180 }, + [3] = { 41, 69.3, 2040, 25 }, + [4] = { 57.3, 35, 5225, 25 }, + }, + ["lvl"] = "1", + }, + [7388] = "_", + [7393] = "_", + [7395] = { + ["coords"] = { + [1] = { 57.5, 68.1, 440, 25 }, + [2] = { 67.4, 44.5, 1497, 180 }, + [3] = { 67.6, 44.5, 1497, 180 }, + [4] = { 67.4, 44.3, 1497, 180 }, + [5] = { 67.5, 43.9, 1497, 180 }, + [6] = { 67.7, 43.8, 1497, 180 }, + [7] = { 67.4, 43.8, 1497, 180 }, + }, + ["lvl"] = "1", + }, + [7396] = { + ["coords"] = { + [1] = { 43, 26.1, 1337, 18000 }, + [2] = { 43.7, 25.1, 1337, 18000 }, + [3] = { 44.5, 24.3, 1337, 18000 }, + [4] = { 44.1, 23.4, 1337, 18000 }, + [5] = { 42.9, 22, 1337, 18000 }, + [6] = { 43.4, 21.9, 1337, 18000 }, + [7] = { 42.9, 20.3, 1337, 18000 }, + [8] = { 39.5, 19.6, 1337, 18000 }, + [9] = { 44, 19.4, 1337, 18000 }, + [10] = { 38.6, 17.7, 1337, 18000 }, + [11] = { 39, 16.7, 1337, 18000 }, + [12] = { 38.5, 16.2, 1337, 18000 }, + [13] = { 44.9, 15.4, 1337, 18000 }, + [14] = { 47.5, 14.5, 1337, 18000 }, + [15] = { 43.3, 13.8, 1337, 18000 }, + [16] = { 47, 13.7, 1337, 18000 }, + [17] = { 47.5, 13.6, 1337, 18000 }, + [18] = { 42.6, 12.6, 1337, 18000 }, + [19] = { 43.2, 12.6, 1337, 18000 }, + [20] = { 47, 12.1, 1337, 18000 }, + [21] = { 38.7, 10.1, 1337, 18000 }, + [22] = { 37.9, 10, 1337, 18000 }, + [23] = { 40, 9.4, 1337, 18000 }, + [24] = { 38.8, 8.5, 1337, 18000 }, + }, + ["lvl"] = "44-45", + }, + [7397] = { + ["coords"] = { + [1] = { 43.7, 24.5, 1337, 18000 }, + [2] = { 44.5, 23.9, 1337, 18000 }, + [3] = { 42.1, 20.8, 1337, 18000 }, + [4] = { 39.4, 18.1, 1337, 18000 }, + [5] = { 44.2, 13.4, 1337, 18000 }, + [6] = { 46.4, 12.2, 1337, 18000 }, + [7] = { 38.2, 8.9, 1337, 18000 }, + }, + ["lvl"] = "44-45", + }, + [7405] = { + ["coords"] = { + [1] = { 34.8, 38.4, 1337, 18000 }, + [2] = { 34.7, 38.2, 1337, 18000 }, + [3] = { 34.4, 38.2, 1337, 18000 }, + [4] = { 34.9, 38.2, 1337, 18000 }, + [5] = { 35, 37.9, 1337, 18000 }, + [6] = { 35.4, 37.7, 1337, 18000 }, + [7] = { 35.3, 37.6, 1337, 18000 }, + [8] = { 35.1, 37.5, 1337, 18000 }, + [9] = { 35.1, 37.4, 1337, 18000 }, + [10] = { 35.5, 37.3, 1337, 18000 }, + }, + ["lvl"] = "42-43", + }, + [7408] = { + ["coords"] = { + [1] = { 52.5, 28.4, 440, 30 }, + }, + ["lvl"] = "40", + }, + [7410] = { + ["coords"] = { + [1] = { 59.1, 97.2, 5581, 1680 }, + }, + ["fac"] = "A", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [7428] = { + ["coords"] = { + [1] = { 61.9, 73, 618, 600 }, + [2] = { 63.6, 72.3, 618, 600 }, + [3] = { 64.4, 72.2, 618, 600 }, + [4] = { 63.8, 71.6, 618, 600 }, + [5] = { 65.5, 70.8, 618, 600 }, + [6] = { 60, 70.2, 618, 600 }, + [7] = { 62.9, 70, 618, 600 }, + [8] = { 59.5, 69.6, 618, 600 }, + [9] = { 62.6, 69.5, 618, 600 }, + [10] = { 63.4, 69.3, 618, 600 }, + [11] = { 58.7, 69.3, 618, 600 }, + [12] = { 65.7, 69.3, 618, 600 }, + [13] = { 63.3, 69.2, 618, 600 }, + [14] = { 64.3, 68.9, 618, 600 }, + [15] = { 62.9, 68.8, 618, 600 }, + [16] = { 58.1, 68.7, 618, 600 }, + [17] = { 61.9, 68.5, 618, 600 }, + [18] = { 61.4, 68.1, 618, 600 }, + [19] = { 60.4, 67.8, 618, 600 }, + [20] = { 58.3, 67.5, 618, 600 }, + [21] = { 58.2, 67.4, 618, 600 }, + [22] = { 61.1, 67.3, 618, 600 }, + [23] = { 60.2, 67.3, 618, 600 }, + [24] = { 63.8, 67.1, 618, 600 }, + [25] = { 64.3, 66.2, 618, 600 }, + [26] = { 59.8, 65.3, 618, 600 }, + [27] = { 60.6, 65.1, 618, 600 }, + }, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [7429] = { + ["coords"] = { + [1] = { 61.9, 73, 618, 600 }, + [2] = { 63.6, 72.3, 618, 600 }, + [3] = { 64.4, 72.2, 618, 600 }, + [4] = { 63.8, 71.6, 618, 600 }, + [5] = { 65.5, 70.8, 618, 600 }, + [6] = { 60, 70.2, 618, 600 }, + [7] = { 62.9, 70, 618, 600 }, + [8] = { 59.5, 69.6, 618, 600 }, + [9] = { 62.6, 69.5, 618, 600 }, + [10] = { 63.4, 69.3, 618, 600 }, + [11] = { 58.7, 69.3, 618, 600 }, + [12] = { 65.7, 69.3, 618, 600 }, + [13] = { 63.3, 69.2, 618, 600 }, + [14] = { 64.3, 68.9, 618, 600 }, + [15] = { 62.9, 68.8, 618, 600 }, + [16] = { 58.1, 68.7, 618, 600 }, + [17] = { 61.9, 68.5, 618, 600 }, + [18] = { 61.4, 68.1, 618, 600 }, + [19] = { 60.4, 67.8, 618, 600 }, + [20] = { 58.3, 67.5, 618, 600 }, + [21] = { 58.2, 67.4, 618, 600 }, + [22] = { 61.1, 67.3, 618, 600 }, + [23] = { 60.2, 67.3, 618, 600 }, + [24] = { 63.8, 67.1, 618, 600 }, + [25] = { 64.3, 66.2, 618, 600 }, + [26] = { 59.8, 65.3, 618, 600 }, + [27] = { 60.6, 65.1, 618, 600 }, + }, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [7431] = { + ["coords"] = { + [1] = { 51.1, 22.3, 618, 333 }, + [2] = { 50.7, 21.4, 618, 333 }, + [3] = { 50.5, 20.1, 618, 333 }, + [4] = { 49.7, 18.7, 618, 333 }, + [5] = { 53.7, 18.1, 618, 333 }, + [6] = { 54.5, 17.2, 618, 333 }, + [7] = { 55.5, 17.1, 618, 333 }, + [8] = { 53.1, 16.8, 618, 333 }, + [9] = { 54.5, 15.7, 618, 333 }, + [10] = { 56.8, 15.3, 618, 333 }, + [11] = { 53.1, 15.2, 618, 333 }, + [12] = { 54.9, 15.2, 618, 333 }, + [13] = { 54.1, 15, 618, 333 }, + [14] = { 56.9, 14, 618, 333 }, + [15] = { 54.9, 13.5, 618, 333 }, + [16] = { 54.6, 13.2, 618, 333 }, + [17] = { 56.3, 13, 618, 333 }, + [18] = { 55.5, 12.8, 618, 333 }, + [19] = { 56.8, 12.5, 618, 333 }, + [20] = { 54.8, 12.2, 618, 333 }, + [21] = { 56.4, 11.7, 618, 333 }, + }, + ["lvl"] = "56-57", + }, + [7432] = { + ["coords"] = { + [1] = { 51.5, 21.5, 618, 333 }, + [2] = { 50.1, 20.8, 618, 333 }, + [3] = { 49.8, 20, 618, 333 }, + [4] = { 50.2, 19.4, 618, 333 }, + [5] = { 51.3, 19.3, 618, 333 }, + [6] = { 50.7, 18.6, 618, 333 }, + [7] = { 50.1, 18, 618, 333 }, + [8] = { 48.4, 17.7, 618, 333 }, + [9] = { 50.7, 17.4, 618, 333 }, + [10] = { 49.8, 17.3, 618, 333 }, + [11] = { 56.6, 17.2, 618, 333 }, + [12] = { 48.9, 17, 618, 333 }, + [13] = { 56.7, 16.7, 618, 333 }, + [14] = { 55.9, 16.6, 618, 333 }, + [15] = { 54, 16.5, 618, 333 }, + [16] = { 55, 16.5, 618, 333 }, + [17] = { 49.4, 16.3, 618, 333 }, + [18] = { 48.9, 16, 618, 333 }, + [19] = { 56.3, 15.9, 618, 333 }, + [20] = { 53.6, 15.8, 618, 333 }, + [21] = { 52.7, 15.8, 618, 333 }, + [22] = { 49.9, 15.6, 618, 333 }, + [23] = { 55.7, 15.2, 618, 333 }, + [24] = { 51.1, 15.2, 618, 333 }, + [25] = { 48.3, 15.2, 618, 333 }, + [26] = { 52.1, 15.2, 618, 333 }, + [27] = { 50.1, 15.2, 618, 333 }, + [28] = { 48.8, 14.6, 618, 333 }, + [29] = { 52.5, 14.6, 618, 333 }, + [30] = { 56.4, 14.4, 618, 333 }, + [31] = { 49.7, 14.4, 618, 333 }, + [32] = { 55.5, 14.3, 618, 333 }, + [33] = { 51.6, 14.2, 618, 333 }, + [34] = { 48.3, 14, 618, 333 }, + [35] = { 50.3, 13.8, 618, 333 }, + [36] = { 54, 13.6, 618, 333 }, + [37] = { 50.9, 13.2, 618, 333 }, + [38] = { 53.5, 13, 618, 333 }, + [39] = { 54, 12.2, 618, 333 }, + [40] = { 53.1, 12.2, 618, 333 }, + [41] = { 53.6, 11.8, 618, 333 }, + [42] = { 53.9, 10.8, 618, 333 }, + }, + ["lvl"] = "59-60", + }, + [7433] = { + ["coords"] = { + [1] = { 50.4, 16.6, 618, 333 }, + [2] = { 50.8, 16, 618, 333 }, + [3] = { 51.6, 15.8, 618, 333 }, + [4] = { 49.3, 15.1, 618, 333 }, + [5] = { 50.8, 14.4, 618, 333 }, + [6] = { 52.6, 14.4, 618, 333 }, + [7] = { 53, 14.2, 618, 333 }, + [8] = { 51.2, 13.9, 618, 333 }, + [9] = { 49.2, 13.7, 618, 333 }, + [10] = { 48.6, 13, 618, 333 }, + [11] = { 52, 12.1, 618, 333 }, + [12] = { 48.6, 12.1, 618, 333 }, + [13] = { 52.6, 11.7, 618, 333 }, + [14] = { 54.9, 11.1, 618, 333 }, + [15] = { 53.1, 11, 618, 333 }, + [16] = { 49.4, 10.9, 618, 333 }, + [17] = { 52.2, 10.8, 618, 333 }, + [18] = { 51.7, 10.2, 618, 333 }, + [19] = { 52.4, 9.6, 618, 333 }, + [20] = { 49.3, 8.1, 618, 333 }, + [21] = { 50.2, 8.1, 618, 333 }, + [22] = { 51.3, 8, 618, 333 }, + [23] = { 49.8, 7.5, 618, 333 }, + [24] = { 48.7, 7.4, 618, 333 }, + [25] = { 50.4, 6.7, 618, 333 }, + }, + ["lvl"] = "58-59", + }, + [7434] = { + ["coords"] = { + [1] = { 49.3, 12.3, 618, 333 }, + [2] = { 48.3, 9.5, 618, 333 }, + [3] = { 51.7, 8.9, 618, 333 }, + [4] = { 50.7, 8.8, 618, 333 }, + [5] = { 50.7, 7.4, 618, 333 }, + }, + ["lvl"] = "59-60", + }, + [7435] = { + ["coords"] = { + [1] = { 93, 9.3, 616, 600 }, + [2] = { 96.6, 8.9, 616, 600 }, + [3] = { 95.7, 8.1, 616, 600 }, + [4] = { 97.2, 4.7, 616, 600 }, + [5] = { 97.6, 3.6, 616, 600 }, + [6] = { 97.4, 3, 616, 600 }, + [7] = { 97.3, 1.9, 616, 600 }, + [8] = { 52.8, 55.1, 618, 600 }, + [9] = { 54.4, 54.9, 618, 600 }, + [10] = { 58.7, 54.5, 618, 600 }, + [11] = { 53.9, 54.5, 618, 600 }, + [12] = { 59.2, 53.9, 618, 600 }, + [13] = { 60.6, 53.6, 618, 600 }, + [14] = { 57.4, 53, 618, 600 }, + [15] = { 59.6, 53, 618, 600 }, + [16] = { 54.6, 53, 618, 600 }, + [17] = { 57.2, 52.5, 618, 600 }, + [18] = { 54.8, 52.5, 618, 600 }, + [19] = { 54.7, 52.2, 618, 600 }, + [20] = { 59.6, 51.9, 618, 600 }, + [21] = { 56.7, 51.9, 618, 600 }, + [22] = { 54.7, 51.8, 618, 600 }, + [23] = { 56.7, 51.7, 618, 600 }, + [24] = { 58.8, 51.7, 618, 600 }, + [25] = { 58.3, 51.2, 618, 600 }, + [26] = { 58.9, 51.1, 618, 600 }, + [27] = { 61.2, 50.9, 618, 600 }, + [28] = { 54.3, 50.5, 618, 600 }, + [29] = { 55.2, 50.5, 618, 600 }, + [30] = { 55.8, 50.2, 618, 600 }, + [31] = { 56.7, 50.2, 618, 600 }, + [32] = { 56.5, 50, 618, 600 }, + [33] = { 55.3, 50, 618, 600 }, + [34] = { 54.5, 49.9, 618, 600 }, + [35] = { 54.3, 49.9, 618, 600 }, + [36] = { 60.7, 49.8, 618, 600 }, + [37] = { 56.4, 49.8, 618, 600 }, + [38] = { 56.1, 49.7, 618, 600 }, + [39] = { 58.1, 49.5, 618, 600 }, + [40] = { 55.6, 49.5, 618, 600 }, + [41] = { 57.7, 49.3, 618, 600 }, + [42] = { 59.7, 49.2, 618, 600 }, + [43] = { 58.4, 48.2, 618, 600 }, + }, + ["lvl"] = "55-56", + ["rnk"] = "1", + }, + [7436] = { + ["coords"] = { + [1] = { 93, 9.3, 616, 600 }, + [2] = { 96.6, 8.9, 616, 600 }, + [3] = { 95.7, 8.1, 616, 600 }, + [4] = { 97.2, 4.7, 616, 600 }, + [5] = { 97.6, 3.6, 616, 600 }, + [6] = { 97.4, 3, 616, 600 }, + [7] = { 97.3, 1.9, 616, 600 }, + [8] = { 52.8, 55.1, 618, 600 }, + [9] = { 54.4, 54.9, 618, 600 }, + [10] = { 58.7, 54.5, 618, 600 }, + [11] = { 53.9, 54.5, 618, 600 }, + [12] = { 59.2, 53.9, 618, 600 }, + [13] = { 60.6, 53.6, 618, 600 }, + [14] = { 57.4, 53, 618, 600 }, + [15] = { 59.6, 53, 618, 600 }, + [16] = { 54.6, 53, 618, 600 }, + [17] = { 57.2, 52.5, 618, 600 }, + [18] = { 54.8, 52.5, 618, 600 }, + [19] = { 54.7, 52.2, 618, 600 }, + [20] = { 59.6, 51.9, 618, 600 }, + [21] = { 56.7, 51.9, 618, 600 }, + [22] = { 54.7, 51.8, 618, 600 }, + [23] = { 56.7, 51.7, 618, 600 }, + [24] = { 58.8, 51.7, 618, 600 }, + [25] = { 58.3, 51.2, 618, 600 }, + [26] = { 58.9, 51.1, 618, 600 }, + [27] = { 61.2, 50.9, 618, 600 }, + [28] = { 54.3, 50.5, 618, 600 }, + [29] = { 55.2, 50.5, 618, 600 }, + [30] = { 55.8, 50.2, 618, 600 }, + [31] = { 56.7, 50.2, 618, 600 }, + [32] = { 56.5, 50, 618, 600 }, + [33] = { 55.3, 50, 618, 600 }, + [34] = { 54.5, 49.9, 618, 600 }, + [35] = { 54.3, 49.9, 618, 600 }, + [36] = { 60.7, 49.8, 618, 600 }, + [37] = { 56.4, 49.8, 618, 600 }, + [38] = { 56.1, 49.7, 618, 600 }, + [39] = { 58.1, 49.5, 618, 600 }, + [40] = { 55.6, 49.5, 618, 600 }, + [41] = { 57.7, 49.3, 618, 600 }, + [42] = { 59.7, 49.2, 618, 600 }, + [43] = { 58.4, 48.2, 618, 600 }, + }, + ["lvl"] = "56-57", + ["rnk"] = "1", + }, + [7437] = { + ["coords"] = { + [1] = { 93, 9.3, 616, 600 }, + [2] = { 96.6, 8.9, 616, 600 }, + [3] = { 95.7, 8.1, 616, 600 }, + [4] = { 97.2, 4.7, 616, 600 }, + [5] = { 97.6, 3.6, 616, 600 }, + [6] = { 97.4, 3, 616, 600 }, + [7] = { 97.3, 1.9, 616, 600 }, + [8] = { 52.8, 55.1, 618, 600 }, + [9] = { 54.4, 54.9, 618, 600 }, + [10] = { 58.7, 54.5, 618, 600 }, + [11] = { 53.9, 54.5, 618, 600 }, + [12] = { 59.2, 53.9, 618, 600 }, + [13] = { 60.6, 53.6, 618, 600 }, + [14] = { 57.4, 53, 618, 600 }, + [15] = { 59.6, 53, 618, 600 }, + [16] = { 54.6, 53, 618, 600 }, + [17] = { 57.2, 52.5, 618, 600 }, + [18] = { 54.8, 52.5, 618, 600 }, + [19] = { 54.7, 52.2, 618, 600 }, + [20] = { 59.6, 51.9, 618, 600 }, + [21] = { 56.7, 51.9, 618, 600 }, + [22] = { 54.7, 51.8, 618, 600 }, + [23] = { 56.7, 51.7, 618, 600 }, + [24] = { 58.8, 51.7, 618, 600 }, + [25] = { 58.3, 51.2, 618, 600 }, + [26] = { 58.9, 51.1, 618, 600 }, + [27] = { 61.2, 50.9, 618, 600 }, + [28] = { 54.3, 50.5, 618, 600 }, + [29] = { 55.2, 50.5, 618, 600 }, + [30] = { 55.8, 50.2, 618, 600 }, + [31] = { 56.7, 50.2, 618, 600 }, + [32] = { 56.5, 50, 618, 600 }, + [33] = { 55.3, 50, 618, 600 }, + [34] = { 54.5, 49.9, 618, 600 }, + [35] = { 54.3, 49.9, 618, 600 }, + [36] = { 60.7, 49.8, 618, 600 }, + [37] = { 56.4, 49.8, 618, 600 }, + [38] = { 56.1, 49.7, 618, 600 }, + [39] = { 58.1, 49.5, 618, 600 }, + [40] = { 55.6, 49.5, 618, 600 }, + [41] = { 57.7, 49.3, 618, 600 }, + [42] = { 59.7, 49.2, 618, 600 }, + [43] = { 58.4, 48.2, 618, 600 }, + }, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [7438] = { + ["coords"] = { + [1] = { 67.3, 40, 618, 120 }, + [2] = { 67.7, 39.4, 618, 120 }, + [3] = { 66.6, 38.9, 618, 120 }, + [4] = { 66, 38.5, 618, 120 }, + [5] = { 69.5, 38.3, 618, 120 }, + [6] = { 67.9, 38.1, 618, 120 }, + [7] = { 68, 38, 618, 120 }, + [8] = { 68.8, 37.8, 618, 120 }, + [9] = { 65.2, 37.8, 618, 120 }, + [10] = { 65.8, 37.6, 618, 120 }, + [11] = { 65.1, 37.2, 618, 120 }, + [12] = { 66.7, 37.1, 618, 120 }, + [13] = { 66.8, 37, 618, 120 }, + [14] = { 68.2, 36.9, 618, 120 }, + [15] = { 68.1, 36.9, 618, 120 }, + }, + ["lvl"] = "57-58", + }, + [7439] = { + ["coords"] = { + [1] = { 67.5, 39.8, 618, 120 }, + [2] = { 67.1, 36.2, 618, 120 }, + [3] = { 66.5, 35.9, 618, 120 }, + [4] = { 67.5, 35.9, 618, 120 }, + [5] = { 67.6, 35.7, 618, 120 }, + [6] = { 68.1, 35.7, 618, 120 }, + [7] = { 67.4, 35.2, 618, 120 }, + [8] = { 68.5, 35.1, 618, 120 }, + [9] = { 66.6, 38.9, 618, 120 }, + [10] = { 66, 38.5, 618, 120 }, + [11] = { 68, 38, 618, 120 }, + [12] = { 68.8, 37.8, 618, 120 }, + [13] = { 65.2, 37.8, 618, 120 }, + [14] = { 65.8, 37.6, 618, 120 }, + [15] = { 65.1, 37.2, 618, 120 }, + [16] = { 66.7, 37.1, 618, 120 }, + [17] = { 66.8, 37, 618, 120 }, + [18] = { 68.1, 36.9, 618, 120 }, + }, + ["lvl"] = "56-57", + }, + [7440] = { + ["coords"] = { + [1] = { 39.4, 44.7, 618, 120 }, + [2] = { 39.4, 44.1, 618, 120 }, + [3] = { 40.1, 44, 618, 120 }, + [4] = { 40.3, 43.9, 618, 120 }, + [5] = { 40.1, 43.4, 618, 120 }, + [6] = { 39.8, 43, 618, 120 }, + [7] = { 41.4, 42.7, 618, 120 }, + [8] = { 39.8, 42.7, 618, 120 }, + [9] = { 41.6, 42.6, 618, 120 }, + [10] = { 32.4, 37.6, 618, 120 }, + [11] = { 29.7, 37, 618, 120 }, + [12] = { 30.5, 36.9, 618, 120 }, + [13] = { 33, 36.8, 618, 120 }, + [14] = { 33.2, 36.8, 618, 120 }, + [15] = { 33.3, 36.4, 618, 120 }, + [16] = { 30.3, 36.3, 618, 120 }, + [17] = { 30, 36.2, 618, 120 }, + [18] = { 30.6, 35.9, 618, 120 }, + [19] = { 30.6, 35.6, 618, 120 }, + [20] = { 66.1, 35.5, 618, 120 }, + [21] = { 65.9, 35, 618, 120 }, + [22] = { 67, 34.5, 618, 120 }, + [23] = { 68, 34.4, 618, 120 }, + [24] = { 66.2, 34.3, 618, 120 }, + [25] = { 67.1, 34.1, 618, 120 }, + [26] = { 67.1, 36.2, 618, 120 }, + [27] = { 66.5, 35.9, 618, 120 }, + [28] = { 67.5, 35.9, 618, 120 }, + [29] = { 67.6, 35.7, 618, 120 }, + [30] = { 68.1, 35.7, 618, 120 }, + [31] = { 67.4, 35.2, 618, 120 }, + [32] = { 68.5, 35.1, 618, 120 }, + }, + ["lvl"] = "55-56", + }, + [7441] = { + ["coords"] = { + [1] = { 39.4, 44.7, 618, 120 }, + [2] = { 39.4, 44.1, 618, 120 }, + [3] = { 40.1, 44, 618, 120 }, + [4] = { 40.3, 43.9, 618, 120 }, + [5] = { 40.1, 43.4, 618, 120 }, + [6] = { 39.8, 43, 618, 120 }, + [7] = { 41.4, 42.7, 618, 120 }, + [8] = { 39.8, 42.7, 618, 120 }, + [9] = { 32.4, 37.6, 618, 120 }, + [10] = { 29.7, 37, 618, 120 }, + [11] = { 30.5, 36.9, 618, 120 }, + [12] = { 33, 36.8, 618, 120 }, + [13] = { 33.2, 36.8, 618, 120 }, + [14] = { 33.3, 36.4, 618, 120 }, + [15] = { 30.3, 36.3, 618, 120 }, + [16] = { 30, 36.2, 618, 120 }, + [17] = { 30.6, 35.9, 618, 120 }, + [18] = { 30.6, 35.6, 618, 120 }, + }, + ["lvl"] = "54-55", + }, + [7442] = { + ["coords"] = { + [1] = { 42, 44.8, 618, 120 }, + [2] = { 42.4, 44.1, 618, 120 }, + [3] = { 40.7, 43.8, 618, 120 }, + [4] = { 41.3, 43.3, 618, 120 }, + [5] = { 42.6, 43, 618, 120 }, + [6] = { 39, 42.8, 618, 120 }, + [7] = { 40.4, 42.7, 618, 120 }, + [8] = { 42.3, 42.6, 618, 120 }, + [9] = { 40.9, 42.5, 618, 120 }, + [10] = { 33.4, 37.7, 618, 120 }, + [11] = { 32.4, 37.1, 618, 120 }, + [12] = { 33.8, 37, 618, 120 }, + [13] = { 34.7, 37, 618, 120 }, + [14] = { 30.9, 36.7, 618, 120 }, + [15] = { 31.4, 36.3, 618, 120 }, + [16] = { 33.8, 36.2, 618, 120 }, + [17] = { 30.1, 35.6, 618, 120 }, + [18] = { 31.4, 35, 618, 120 }, + [19] = { 30.9, 34.9, 618, 120 }, + }, + ["lvl"] = "53-54", + }, + [7443] = { + ["coords"] = { + [1] = { 66.7, 54.4, 618, 333 }, + [2] = { 68.9, 53.8, 618, 333 }, + [3] = { 67.2, 52.9, 618, 333 }, + [4] = { 66.1, 51.4, 618, 333 }, + [5] = { 68.1, 50.2, 618, 333 }, + [6] = { 54.3, 49, 618, 333 }, + [7] = { 66.4, 48.9, 618, 333 }, + [8] = { 54.9, 48.3, 618, 333 }, + [9] = { 69, 48.3, 618, 333 }, + [10] = { 66.3, 48.3, 618, 333 }, + [11] = { 61.8, 48.1, 618, 333 }, + [12] = { 62.5, 48.1, 618, 333 }, + [13] = { 62.9, 47.8, 618, 333 }, + [14] = { 62.3, 46.4, 618, 333 }, + [15] = { 57.6, 46.1, 618, 333 }, + [16] = { 56.4, 46, 618, 333 }, + [17] = { 58.2, 46, 618, 333 }, + [18] = { 58.7, 45.9, 618, 333 }, + [19] = { 54.6, 45.5, 618, 333 }, + [20] = { 60.3, 45.4, 618, 333 }, + [21] = { 62.5, 44.9, 618, 333 }, + [22] = { 59.2, 44.8, 618, 333 }, + [23] = { 62.4, 44.8, 618, 333 }, + [24] = { 60.2, 44.7, 618, 333 }, + [25] = { 61.6, 43.9, 618, 333 }, + [26] = { 58.2, 43.8, 618, 333 }, + [27] = { 59.8, 42.6, 618, 333 }, + [28] = { 60.5, 42.1, 618, 333 }, + [29] = { 59.6, 41.8, 618, 333 }, + [30] = { 58.3, 41.3, 618, 333 }, + [31] = { 59.7, 41.3, 618, 333 }, + [32] = { 57.8, 40.5, 618, 333 }, + [33] = { 57.7, 40.3, 618, 333 }, + [34] = { 57.1, 39, 618, 333 }, + [35] = { 56.6, 38.7, 618, 333 }, + [36] = { 56.5, 38.4, 618, 333 }, + [37] = { 55.9, 38.3, 618, 333 }, + [38] = { 59.6, 34.4, 618, 333 }, + [39] = { 62.4, 33.4, 618, 333 }, + [40] = { 68.6, 32.9, 618, 333 }, + [41] = { 67.9, 32.7, 618, 333 }, + [42] = { 51.9, 32.6, 618, 333 }, + [43] = { 68.3, 32.5, 618, 333 }, + [44] = { 64.4, 32, 618, 333 }, + [45] = { 63, 31.7, 618, 333 }, + [46] = { 61.7, 31.7, 618, 333 }, + [47] = { 67.2, 31.4, 618, 333 }, + [48] = { 65.8, 30.8, 618, 333 }, + [49] = { 56.6, 30.8, 618, 333 }, + [50] = { 64, 28.7, 618, 333 }, + [51] = { 68, 28.6, 618, 333 }, + [52] = { 57.4, 28.5, 618, 333 }, + [53] = { 64.9, 27.7, 618, 333 }, + [54] = { 64.1, 26.5, 618, 333 }, + [55] = { 66, 26, 618, 333 }, + [56] = { 49.7, 90.2, 5179, 120 }, + }, + ["lvl"] = "55-56", + }, + [7444] = { + ["coords"] = { + [1] = { 30.2, 47.2, 618, 333 }, + [2] = { 48.2, 46.7, 618, 333 }, + [3] = { 46.3, 46.7, 618, 333 }, + [4] = { 48.5, 46.4, 618, 333 }, + [5] = { 45.4, 45.8, 618, 333 }, + [6] = { 48.1, 45.7, 618, 333 }, + [7] = { 47.8, 44.3, 618, 333 }, + [8] = { 45.3, 44, 618, 333 }, + [9] = { 34.4, 43.9, 618, 333 }, + [10] = { 44.2, 43, 618, 333 }, + [11] = { 46, 41.9, 618, 333 }, + [12] = { 50.7, 39.6, 618, 333 }, + [13] = { 30.4, 39.4, 618, 333 }, + [14] = { 35.8, 39.3, 618, 333 }, + [15] = { 31.6, 39.3, 618, 333 }, + [16] = { 50.7, 39.2, 618, 333 }, + [17] = { 38.9, 39.2, 618, 333 }, + [18] = { 30.5, 39, 618, 333 }, + [19] = { 33.7, 39, 618, 333 }, + [20] = { 39.5, 38.9, 618, 333 }, + [21] = { 52, 38.7, 618, 333 }, + [22] = { 39.4, 38, 618, 333 }, + [23] = { 44.6, 37.9, 618, 333 }, + [24] = { 54.9, 37.7, 618, 333 }, + [25] = { 40.4, 37.2, 618, 333 }, + [26] = { 47.2, 37, 618, 333 }, + [27] = { 53.4, 37, 618, 333 }, + [28] = { 42.2, 37, 618, 333 }, + [29] = { 41.8, 36.3, 618, 333 }, + [30] = { 47.6, 35.9, 618, 333 }, + [31] = { 45.9, 34.9, 618, 333 }, + [32] = { 48.1, 34.8, 618, 333 }, + [33] = { 48.6, 34.3, 618, 333 }, + [34] = { 42.7, 34.1, 618, 333 }, + }, + ["lvl"] = "53-54", + }, + [7445] = { + ["coords"] = { + [1] = { 60.8, 64, 618, 333 }, + [2] = { 58.3, 60.5, 618, 333 }, + [3] = { 61.1, 58.7, 618, 333 }, + [4] = { 62.7, 55.1, 618, 333 }, + [5] = { 63.5, 55, 618, 333 }, + [6] = { 62.3, 29.5, 618, 333 }, + [7] = { 61.5, 27.3, 618, 333 }, + [8] = { 61.9, 26.9, 618, 333 }, + [9] = { 56.6, 26.4, 618, 333 }, + [10] = { 62.7, 26.2, 618, 333 }, + [11] = { 59.3, 25.9, 618, 333 }, + [12] = { 62.6, 24.9, 618, 333 }, + [13] = { 56.9, 24.9, 618, 333 }, + [14] = { 60.4, 24.6, 618, 333 }, + [15] = { 59.9, 24.2, 618, 333 }, + [16] = { 61.1, 24.2, 618, 333 }, + [17] = { 59.3, 23.7, 618, 333 }, + [18] = { 55.8, 23.6, 618, 333 }, + [19] = { 55.8, 22.2, 618, 333 }, + [20] = { 61.6, 21.5, 618, 333 }, + [21] = { 59, 21.3, 618, 333 }, + [22] = { 60.7, 21.1, 618, 333 }, + [23] = { 58.4, 20.8, 618, 333 }, + [24] = { 59.8, 20.3, 618, 333 }, + [25] = { 54.7, 20.2, 618, 333 }, + [26] = { 57.6, 19.5, 618, 333 }, + [27] = { 56.1, 19.4, 618, 333 }, + [28] = { 60.4, 18.1, 618, 333 }, + [29] = { 59.8, 17.9, 618, 333 }, + [30] = { 58.1, 16.7, 618, 333 }, + [31] = { 59.3, 16.6, 618, 333 }, + [32] = { 59.2, 16.5, 618, 333 }, + [33] = { 58.6, 15.8, 618, 333 }, + [34] = { 57.9, 15.3, 618, 333 }, + [35] = { 58.7, 15.2, 618, 333 }, + [36] = { 60.6, 15.2, 618, 333 }, + [37] = { 59.5, 15.1, 618, 333 }, + [38] = { 60.5, 14.4, 618, 333 }, + [39] = { 58.2, 14, 618, 333 }, + [40] = { 58.7, 13.8, 618, 333 }, + [41] = { 60.2, 13.8, 618, 333 }, + [42] = { 59.6, 13.7, 618, 333 }, + [43] = { 60.3, 12.7, 618, 333 }, + [44] = { 57.8, 12.6, 618, 333 }, + [45] = { 59.1, 12.1, 618, 333 }, + [46] = { 49.8, 90.9, 5179, 120 }, + }, + ["lvl"] = "57-58", + }, + [7446] = { + ["coords"] = { + [1] = { 63.4, 74.4, 618, 333 }, + [2] = { 58.7, 74, 618, 333 }, + [3] = { 61.1, 72.9, 618, 333 }, + [4] = { 58.4, 72.3, 618, 333 }, + [5] = { 58, 72.2, 618, 333 }, + [6] = { 59.7, 72.2, 618, 333 }, + [7] = { 58.4, 71.8, 618, 333 }, + [8] = { 60.1, 71.5, 618, 333 }, + [9] = { 59.2, 71.5, 618, 333 }, + [10] = { 57.1, 71.4, 618, 333 }, + [11] = { 56.4, 71.4, 618, 333 }, + [12] = { 56.8, 70.9, 618, 333 }, + [13] = { 57.6, 70.8, 618, 333 }, + [14] = { 66.7, 70.6, 618, 333 }, + [15] = { 58.6, 70.6, 618, 333 }, + [16] = { 57.2, 69.9, 618, 333 }, + [17] = { 67.1, 69.8, 618, 333 }, + [18] = { 56.7, 69.3, 618, 333 }, + [19] = { 66.8, 69.3, 618, 333 }, + [20] = { 67.1, 69, 618, 333 }, + [21] = { 57.3, 68.7, 618, 333 }, + [22] = { 50.1, 90.6, 5179, 120 }, + }, + ["lvl"] = "59-60", + }, + [7448] = { + ["coords"] = { + [1] = { 66.6, 53.3, 618, 333 }, + [2] = { 68, 53.3, 618, 333 }, + [3] = { 65.4, 53.1, 618, 333 }, + [4] = { 68.5, 52.8, 618, 333 }, + [5] = { 66.3, 52.5, 618, 333 }, + [6] = { 68.2, 51.8, 618, 333 }, + [7] = { 66.5, 51.2, 618, 333 }, + [8] = { 66.7, 49.8, 618, 333 }, + [9] = { 66.6, 49.6, 618, 333 }, + [10] = { 67.6, 48.7, 618, 333 }, + [11] = { 55.5, 48.5, 618, 333 }, + [12] = { 66.8, 47.4, 618, 333 }, + [13] = { 63.4, 47.1, 618, 333 }, + [14] = { 56.2, 46.9, 618, 333 }, + [15] = { 55.2, 46.6, 618, 333 }, + [16] = { 59.7, 45.9, 618, 333 }, + [17] = { 63.4, 45.8, 618, 333 }, + [18] = { 58, 44.6, 618, 333 }, + [19] = { 58.8, 43.5, 618, 333 }, + [20] = { 59.7, 42, 618, 333 }, + [21] = { 61.2, 41.7, 618, 333 }, + [22] = { 57.7, 41.6, 618, 333 }, + [23] = { 57.1, 40, 618, 333 }, + [24] = { 55.6, 37.1, 618, 333 }, + [25] = { 67.1, 30.8, 618, 333 }, + [26] = { 65.6, 30.7, 618, 333 }, + [27] = { 68.2, 30.3, 618, 333 }, + [28] = { 65.8, 29.8, 618, 333 }, + [29] = { 66.1, 27.6, 618, 333 }, + [30] = { 66.1, 26.8, 618, 333 }, + [31] = { 64.9, 24.6, 618, 333 }, + }, + ["lvl"] = "55-57", + }, + [7449] = { + ["coords"] = { + [1] = { 63.3, 62.1, 618, 333 }, + [2] = { 61.9, 54.7, 618, 333 }, + [3] = { 62.8, 54.5, 618, 333 }, + [4] = { 62, 29.9, 618, 333 }, + [5] = { 61.9, 25.9, 618, 333 }, + [6] = { 56.6, 25.6, 618, 333 }, + [7] = { 58.5, 25.5, 618, 333 }, + [8] = { 58.6, 25, 618, 333 }, + [9] = { 56.3, 24.1, 618, 333 }, + [10] = { 59.5, 23.6, 618, 333 }, + [11] = { 58.6, 23.5, 618, 333 }, + [12] = { 60.1, 23.4, 618, 333 }, + [13] = { 59.5, 23.1, 618, 333 }, + [14] = { 58, 23, 618, 333 }, + [15] = { 55.4, 22.9, 618, 333 }, + [16] = { 57.2, 22.8, 618, 333 }, + [17] = { 60, 22.1, 618, 333 }, + [18] = { 54.4, 21.8, 618, 333 }, + [19] = { 60.4, 21.8, 618, 333 }, + [20] = { 58.6, 21.5, 618, 333 }, + [21] = { 55.9, 21.5, 618, 333 }, + [22] = { 60, 21.4, 618, 333 }, + [23] = { 61, 21.1, 618, 333 }, + [24] = { 57.1, 20.6, 618, 333 }, + [25] = { 58.2, 19.9, 618, 333 }, + [26] = { 54.8, 19.8, 618, 333 }, + [27] = { 59.3, 19.4, 618, 333 }, + [28] = { 58, 19.1, 618, 333 }, + [29] = { 58.7, 17.5, 618, 333 }, + [30] = { 59.9, 17.4, 618, 333 }, + [31] = { 58.4, 16, 618, 333 }, + [32] = { 61.1, 15.8, 618, 333 }, + [33] = { 60.4, 14.8, 618, 333 }, + [34] = { 59, 14.3, 618, 333 }, + [35] = { 61.6, 13.9, 618, 333 }, + [36] = { 57.9, 13.5, 618, 333 }, + [37] = { 58.5, 13, 618, 333 }, + [38] = { 59.6, 12.3, 618, 333 }, + [39] = { 60.1, 11.5, 618, 333 }, + }, + ["lvl"] = "57-59", + }, + [7450] = { + ["coords"] = { + [1] = { 69.3, 23.1, 361, 333 }, + [2] = { 28.6, 48.3, 618, 333 }, + [3] = { 48.1, 46.4, 618, 333 }, + [4] = { 45.6, 46.3, 618, 333 }, + [5] = { 29, 45, 618, 333 }, + [6] = { 36.2, 44.3, 618, 333 }, + [7] = { 45.5, 42.9, 618, 333 }, + [8] = { 47.4, 42.8, 618, 333 }, + [9] = { 44.5, 42.8, 618, 333 }, + [10] = { 37.8, 40.6, 618, 333 }, + [11] = { 49.7, 39.9, 618, 333 }, + [12] = { 33.4, 39.7, 618, 333 }, + [13] = { 33, 39.3, 618, 333 }, + [14] = { 51.5, 39.3, 618, 333 }, + [15] = { 38.9, 38.5, 618, 333 }, + [16] = { 44.8, 38.3, 618, 333 }, + [17] = { 52.5, 38.1, 618, 333 }, + [18] = { 54.9, 37.7, 618, 333 }, + [19] = { 44, 37.6, 618, 333 }, + [20] = { 38.5, 37.6, 618, 333 }, + [21] = { 46.8, 37.5, 618, 333 }, + [22] = { 54, 37.2, 618, 333 }, + [23] = { 42.6, 36.8, 618, 333 }, + [24] = { 38.9, 36.3, 618, 333 }, + [25] = { 45.5, 35.9, 618, 333 }, + [26] = { 37, 35.6, 618, 333 }, + [27] = { 47.8, 35.5, 618, 333 }, + [28] = { 40.6, 35.3, 618, 333 }, + [29] = { 49.4, 35.1, 618, 333 }, + [30] = { 43.2, 34.5, 618, 333 }, + [31] = { 41.5, 34.1, 618, 333 }, + }, + ["lvl"] = "53-55", + }, + [7451] = { + ["coords"] = { + [1] = { 59.7, 36.8, 618, 333 }, + [2] = { 58, 34.8, 618, 333 }, + [3] = { 58.3, 34.4, 618, 333 }, + [4] = { 58.9, 34.2, 618, 333 }, + [5] = { 60.5, 33.9, 618, 333 }, + [6] = { 51.3, 33.8, 618, 333 }, + [7] = { 60.4, 33.3, 618, 333 }, + [8] = { 61.9, 32.9, 618, 333 }, + [9] = { 55.2, 32.5, 618, 333 }, + [10] = { 56.6, 32.1, 618, 333 }, + [11] = { 62.2, 31.8, 618, 333 }, + [12] = { 59.8, 31.7, 618, 333 }, + [13] = { 54.9, 31.6, 618, 333 }, + [14] = { 60.6, 29.9, 618, 333 }, + [15] = { 61.2, 29.8, 618, 333 }, + [16] = { 60.9, 29.8, 618, 333 }, + [17] = { 55.5, 28.6, 618, 333 }, + [18] = { 56.1, 28.5, 618, 333 }, + [19] = { 55, 28.2, 618, 333 }, + [20] = { 56, 28.2, 618, 333 }, + [21] = { 58.7, 28, 618, 333 }, + [22] = { 59.5, 28, 618, 333 }, + }, + ["lvl"] = "54-56", + }, + [7452] = { + ["coords"] = { + [1] = { 64.8, 65, 618, 333 }, + [2] = { 65.4, 64.4, 618, 333 }, + [3] = { 64, 64.4, 618, 333 }, + [4] = { 65.6, 62.7, 618, 333 }, + [5] = { 64.4, 62.3, 618, 333 }, + [6] = { 64.9, 62.3, 618, 333 }, + [7] = { 65.3, 61.9, 618, 333 }, + [8] = { 66.3, 61.8, 618, 333 }, + [9] = { 64.5, 61.2, 618, 333 }, + [10] = { 65.6, 61.1, 618, 333 }, + [11] = { 65, 61.1, 618, 333 }, + [12] = { 63.9, 61.1, 618, 333 }, + [13] = { 66, 60.4, 618, 333 }, + [14] = { 58.6, 60.3, 618, 333 }, + [15] = { 64.9, 60.3, 618, 333 }, + [16] = { 59.2, 60.3, 618, 333 }, + [17] = { 65.3, 60.2, 618, 333 }, + [18] = { 66.6, 60, 618, 333 }, + [19] = { 59.4, 59.8, 618, 333 }, + [20] = { 59.1, 59.7, 618, 333 }, + [21] = { 63.9, 59.6, 618, 333 }, + [22] = { 64.8, 59.5, 618, 333 }, + [23] = { 65.7, 59.4, 618, 333 }, + [24] = { 58.3, 59.4, 618, 333 }, + [25] = { 63.7, 59.1, 618, 333 }, + [26] = { 58.9, 59, 618, 333 }, + [27] = { 58.9, 58.6, 618, 333 }, + [28] = { 65.9, 58.6, 618, 333 }, + [29] = { 64.4, 58.1, 618, 333 }, + [30] = { 65.3, 57.9, 618, 333 }, + [31] = { 65.8, 57.7, 618, 333 }, + [32] = { 67.3, 25.6, 618, 333 }, + [33] = { 64.3, 25, 618, 333 }, + [34] = { 66.9, 24.9, 618, 333 }, + [35] = { 65.7, 24.3, 618, 333 }, + [36] = { 66.2, 23.6, 618, 333 }, + [37] = { 65.2, 23.6, 618, 333 }, + [38] = { 63.4, 23.5, 618, 333 }, + [39] = { 67.2, 23.5, 618, 333 }, + [40] = { 63.3, 23.4, 618, 333 }, + [41] = { 65.7, 23, 618, 333 }, + [42] = { 64.1, 22.9, 618, 333 }, + [43] = { 63.9, 22.9, 618, 333 }, + [44] = { 66.7, 22.8, 618, 333 }, + [45] = { 64.7, 22.7, 618, 333 }, + [46] = { 67.6, 22.6, 618, 333 }, + [47] = { 65.6, 22.3, 618, 333 }, + [48] = { 65.7, 22.3, 618, 333 }, + [49] = { 67.2, 22.2, 618, 333 }, + [50] = { 63.4, 22.1, 618, 333 }, + [51] = { 64.9, 22, 618, 333 }, + [52] = { 68, 22, 618, 333 }, + [53] = { 64.1, 21.8, 618, 333 }, + [54] = { 64.5, 21.7, 618, 333 }, + [55] = { 63.8, 21.5, 618, 333 }, + [56] = { 63, 21.5, 618, 333 }, + [57] = { 66.7, 21.5, 618, 333 }, + [58] = { 65.7, 21.1, 618, 333 }, + [59] = { 64.8, 20.8, 618, 333 }, + [60] = { 66.2, 20.8, 618, 333 }, + [61] = { 65.7, 20.8, 618, 333 }, + [62] = { 63.4, 20.7, 618, 333 }, + [63] = { 64.4, 20.7, 618, 333 }, + [64] = { 65.7, 20.2, 618, 333 }, + [65] = { 63.2, 19.9, 618, 333 }, + [66] = { 66.7, 19.8, 618, 333 }, + [67] = { 66.4, 19.4, 618, 333 }, + [68] = { 65.3, 19.3, 618, 333 }, + [69] = { 63.6, 19, 618, 333 }, + [70] = { 65.4, 18.5, 618, 333 }, + [71] = { 65.9, 18.1, 618, 333 }, + [72] = { 64.9, 17.8, 618, 333 }, + [73] = { 61.9, 17.7, 618, 333 }, + [74] = { 63, 17.3, 618, 333 }, + [75] = { 63.9, 17.2, 618, 333 }, + [76] = { 61.9, 16.6, 618, 333 }, + [77] = { 63.9, 16.5, 618, 333 }, + [78] = { 63.3, 16, 618, 333 }, + [79] = { 62.1, 15.6, 618, 333 }, + }, + ["lvl"] = "56-57", + }, + [7453] = { + ["coords"] = { + [1] = { 64.8, 65, 618, 333 }, + [2] = { 65.4, 64.4, 618, 333 }, + [3] = { 64, 64.4, 618, 333 }, + [4] = { 65.6, 62.7, 618, 333 }, + [5] = { 64.4, 62.3, 618, 333 }, + [6] = { 64.9, 62.3, 618, 333 }, + [7] = { 65.3, 61.9, 618, 333 }, + [8] = { 66.3, 61.8, 618, 333 }, + [9] = { 64.5, 61.2, 618, 333 }, + [10] = { 65.6, 61.1, 618, 333 }, + [11] = { 65, 61.1, 618, 333 }, + [12] = { 63.9, 61.1, 618, 333 }, + [13] = { 66, 60.4, 618, 333 }, + [14] = { 58.6, 60.3, 618, 333 }, + [15] = { 64.9, 60.3, 618, 333 }, + [16] = { 59.2, 60.3, 618, 333 }, + [17] = { 65.3, 60.2, 618, 333 }, + [18] = { 66.6, 60, 618, 333 }, + [19] = { 59.4, 59.8, 618, 333 }, + [20] = { 59.1, 59.7, 618, 333 }, + [21] = { 63.9, 59.6, 618, 333 }, + [22] = { 64.8, 59.5, 618, 333 }, + [23] = { 65.7, 59.4, 618, 333 }, + [24] = { 58.3, 59.4, 618, 333 }, + [25] = { 63.7, 59.1, 618, 333 }, + [26] = { 58.9, 59, 618, 333 }, + [27] = { 58.9, 58.6, 618, 333 }, + [28] = { 65.9, 58.6, 618, 333 }, + [29] = { 64.4, 58.1, 618, 333 }, + [30] = { 65.3, 57.9, 618, 333 }, + [31] = { 65.8, 57.7, 618, 333 }, + [32] = { 67.3, 25.6, 618, 333 }, + [33] = { 64.3, 25, 618, 333 }, + [34] = { 66.9, 24.9, 618, 333 }, + [35] = { 65.7, 24.3, 618, 333 }, + [36] = { 66.2, 23.6, 618, 333 }, + [37] = { 65.2, 23.6, 618, 333 }, + [38] = { 63.4, 23.5, 618, 333 }, + [39] = { 67.2, 23.5, 618, 333 }, + [40] = { 63.3, 23.4, 618, 333 }, + [41] = { 65.7, 23, 618, 333 }, + [42] = { 64.1, 22.9, 618, 333 }, + [43] = { 63.9, 22.9, 618, 333 }, + [44] = { 66.7, 22.8, 618, 333 }, + [45] = { 64.7, 22.7, 618, 333 }, + [46] = { 67.6, 22.6, 618, 333 }, + [47] = { 65.6, 22.3, 618, 333 }, + [48] = { 65.7, 22.3, 618, 333 }, + [49] = { 67.2, 22.2, 618, 333 }, + [50] = { 63.4, 22.1, 618, 333 }, + [51] = { 64.9, 22, 618, 333 }, + [52] = { 68, 22, 618, 333 }, + [53] = { 64.1, 21.8, 618, 333 }, + [54] = { 64.5, 21.7, 618, 333 }, + [55] = { 63.8, 21.5, 618, 333 }, + [56] = { 63, 21.5, 618, 333 }, + [57] = { 66.7, 21.5, 618, 333 }, + [58] = { 65.7, 21.1, 618, 333 }, + [59] = { 64.8, 20.8, 618, 333 }, + [60] = { 66.2, 20.8, 618, 333 }, + [61] = { 65.7, 20.8, 618, 333 }, + [62] = { 63.4, 20.7, 618, 333 }, + [63] = { 64.4, 20.7, 618, 333 }, + [64] = { 65.7, 20.2, 618, 333 }, + [65] = { 63.2, 19.9, 618, 333 }, + [66] = { 66.7, 19.8, 618, 333 }, + [67] = { 66.4, 19.4, 618, 333 }, + [68] = { 65.3, 19.3, 618, 333 }, + [69] = { 63.6, 19, 618, 333 }, + [70] = { 65.4, 18.5, 618, 333 }, + [71] = { 65.9, 18.1, 618, 333 }, + [72] = { 64.9, 17.8, 618, 333 }, + [73] = { 61.9, 17.7, 618, 333 }, + [74] = { 63, 17.3, 618, 333 }, + [75] = { 63.9, 17.2, 618, 333 }, + [76] = { 61.9, 16.6, 618, 333 }, + [77] = { 63.9, 16.5, 618, 333 }, + [78] = { 63.3, 16, 618, 333 }, + [79] = { 62.1, 15.6, 618, 333 }, + }, + ["lvl"] = "57-58", + }, + [7454] = { + ["coords"] = { + [1] = { 64.8, 65, 618, 333 }, + [2] = { 65.4, 64.4, 618, 333 }, + [3] = { 64, 64.4, 618, 333 }, + [4] = { 65.6, 62.7, 618, 333 }, + [5] = { 64.4, 62.3, 618, 333 }, + [6] = { 64.9, 62.3, 618, 333 }, + [7] = { 65.3, 61.9, 618, 333 }, + [8] = { 66.3, 61.8, 618, 333 }, + [9] = { 64.5, 61.2, 618, 333 }, + [10] = { 65.6, 61.1, 618, 333 }, + [11] = { 65, 61.1, 618, 333 }, + [12] = { 63.9, 61.1, 618, 333 }, + [13] = { 66, 60.4, 618, 333 }, + [14] = { 58.6, 60.3, 618, 333 }, + [15] = { 64.9, 60.3, 618, 333 }, + [16] = { 59.2, 60.3, 618, 333 }, + [17] = { 65.3, 60.2, 618, 333 }, + [18] = { 66.6, 60, 618, 333 }, + [19] = { 59.4, 59.8, 618, 333 }, + [20] = { 59.1, 59.7, 618, 333 }, + [21] = { 63.9, 59.6, 618, 333 }, + [22] = { 64.8, 59.5, 618, 333 }, + [23] = { 65.7, 59.4, 618, 333 }, + [24] = { 58.3, 59.4, 618, 333 }, + [25] = { 63.7, 59.1, 618, 333 }, + [26] = { 58.9, 59, 618, 333 }, + [27] = { 58.9, 58.6, 618, 333 }, + [28] = { 65.9, 58.6, 618, 333 }, + [29] = { 64.4, 58.1, 618, 333 }, + [30] = { 65.3, 57.9, 618, 333 }, + [31] = { 65.8, 57.7, 618, 333 }, + [32] = { 67.3, 25.6, 618, 333 }, + [33] = { 64.3, 25, 618, 333 }, + [34] = { 66.9, 24.9, 618, 333 }, + [35] = { 65.7, 24.3, 618, 333 }, + [36] = { 66.2, 23.6, 618, 333 }, + [37] = { 65.2, 23.6, 618, 333 }, + [38] = { 63.4, 23.5, 618, 333 }, + [39] = { 67.2, 23.5, 618, 333 }, + [40] = { 63.3, 23.4, 618, 333 }, + [41] = { 65.7, 23, 618, 333 }, + [42] = { 64.1, 22.9, 618, 333 }, + [43] = { 63.9, 22.9, 618, 333 }, + [44] = { 66.7, 22.8, 618, 333 }, + [45] = { 64.7, 22.7, 618, 333 }, + [46] = { 67.6, 22.6, 618, 333 }, + [47] = { 65.6, 22.3, 618, 333 }, + [48] = { 65.7, 22.3, 618, 333 }, + [49] = { 67.2, 22.2, 618, 333 }, + [50] = { 63.4, 22.1, 618, 333 }, + [51] = { 64.9, 22, 618, 333 }, + [52] = { 68, 22, 618, 333 }, + [53] = { 64.1, 21.8, 618, 333 }, + [54] = { 64.5, 21.7, 618, 333 }, + [55] = { 63.8, 21.5, 618, 333 }, + [56] = { 63, 21.5, 618, 333 }, + [57] = { 66.7, 21.5, 618, 333 }, + [58] = { 65.7, 21.1, 618, 333 }, + [59] = { 64.8, 20.8, 618, 333 }, + [60] = { 66.2, 20.8, 618, 333 }, + [61] = { 65.7, 20.8, 618, 333 }, + [62] = { 63.4, 20.7, 618, 333 }, + [63] = { 64.4, 20.7, 618, 333 }, + [64] = { 65.7, 20.2, 618, 333 }, + [65] = { 63.2, 19.9, 618, 333 }, + [66] = { 66.7, 19.8, 618, 333 }, + [67] = { 66.4, 19.4, 618, 333 }, + [68] = { 65.3, 19.3, 618, 333 }, + [69] = { 63.6, 19, 618, 333 }, + [70] = { 65.4, 18.5, 618, 333 }, + [71] = { 65.9, 18.1, 618, 333 }, + [72] = { 64.9, 17.8, 618, 333 }, + [73] = { 61.9, 17.7, 618, 333 }, + [74] = { 63, 17.3, 618, 333 }, + [75] = { 63.9, 17.2, 618, 333 }, + [76] = { 61.9, 16.6, 618, 333 }, + [77] = { 63.9, 16.5, 618, 333 }, + [78] = { 63.3, 16, 618, 333 }, + [79] = { 62.1, 15.6, 618, 333 }, + }, + ["lvl"] = "58-59", + }, + [7457] = { + ["coords"] = { + [1] = { 49, 46.8, 618, 333 }, + [2] = { 28.9, 46.5, 618, 333 }, + [3] = { 44.5, 44.5, 618, 333 }, + [4] = { 46.7, 44.4, 618, 333 }, + [5] = { 48, 44.2, 618, 333 }, + [6] = { 33.8, 44, 618, 333 }, + [7] = { 47.5, 43.9, 618, 333 }, + [8] = { 47, 42.9, 618, 333 }, + [9] = { 38.5, 41.2, 618, 333 }, + [10] = { 44.7, 41.1, 618, 333 }, + [11] = { 33.8, 40.3, 618, 333 }, + [12] = { 50.8, 40.1, 618, 333 }, + [13] = { 32.4, 40, 618, 333 }, + [14] = { 40.2, 39.3, 618, 333 }, + [15] = { 30.3, 39.2, 618, 333 }, + [16] = { 43.6, 38.5, 618, 333 }, + [17] = { 45.9, 38.1, 618, 333 }, + [18] = { 51.4, 37.8, 618, 333 }, + [19] = { 39.7, 37.8, 618, 333 }, + [20] = { 47.8, 37.7, 618, 333 }, + [21] = { 43.2, 37.5, 618, 333 }, + [22] = { 39.8, 37.5, 618, 333 }, + [23] = { 45.8, 37.4, 618, 333 }, + [24] = { 54.4, 36.3, 618, 333 }, + [25] = { 41.1, 36.1, 618, 333 }, + [26] = { 53.2, 35.9, 618, 333 }, + [27] = { 44.7, 35.6, 618, 333 }, + [28] = { 45, 35.4, 618, 333 }, + [29] = { 49.1, 34.4, 618, 333 }, + [30] = { 48.6, 34.3, 618, 333 }, + [31] = { 43.4, 33.2, 618, 333 }, + }, + ["lvl"] = "53-55", + }, + [7458] = { + ["coords"] = { + [1] = { 65.8, 46.2, 618, 333 }, + [2] = { 66.8, 46.2, 618, 333 }, + [3] = { 67, 45.6, 618, 333 }, + [4] = { 66.4, 45.6, 618, 333 }, + [5] = { 67.6, 45, 618, 333 }, + [6] = { 65.9, 44.6, 618, 333 }, + [7] = { 67, 44.2, 618, 333 }, + [8] = { 67.7, 44.1, 618, 333 }, + [9] = { 66.3, 43.8, 618, 333 }, + [10] = { 67.1, 43.4, 618, 333 }, + [11] = { 66.6, 43.3, 618, 333 }, + [12] = { 67.7, 42.9, 618, 333 }, + [13] = { 66.1, 42.6, 618, 333 }, + [14] = { 65.2, 42.4, 618, 333 }, + [15] = { 67.5, 41.8, 618, 333 }, + [16] = { 65.8, 41.7, 618, 333 }, + [17] = { 68, 41.5, 618, 333 }, + [18] = { 68.5, 41.4, 618, 333 }, + [19] = { 67.5, 41.2, 618, 333 }, + [20] = { 69.9, 41.2, 618, 333 }, + [21] = { 66.3, 41.1, 618, 333 }, + [22] = { 66.2, 41.1, 618, 333 }, + [23] = { 65.7, 40.4, 618, 333 }, + [24] = { 71.8, 40.2, 618, 333 }, + [25] = { 69.9, 40.1, 618, 333 }, + [26] = { 69.3, 39.9, 618, 333 }, + [27] = { 64, 39.8, 618, 333 }, + [28] = { 65.3, 39.6, 618, 333 }, + [29] = { 70.8, 39.4, 618, 333 }, + [30] = { 71, 38.8, 618, 333 }, + [31] = { 58.8, 34, 618, 333 }, + [32] = { 52.5, 33.8, 618, 333 }, + [33] = { 57.8, 33.3, 618, 333 }, + [34] = { 55.2, 33.2, 618, 333 }, + [35] = { 60.9, 32.7, 618, 333 }, + [36] = { 52.4, 32.4, 618, 333 }, + [37] = { 61.9, 31.4, 618, 333 }, + [38] = { 61.2, 31.3, 618, 333 }, + [39] = { 54.7, 30.1, 618, 333 }, + [40] = { 57.8, 29, 618, 333 }, + }, + ["lvl"] = "55-56", + }, + [7459] = { + ["coords"] = { + [1] = { 67.6, 46.3, 618, 333 }, + [2] = { 66.8, 44.9, 618, 333 }, + [3] = { 65.9, 43.6, 618, 333 }, + [4] = { 69.8, 42.2, 618, 333 }, + [5] = { 70.1, 42.1, 618, 333 }, + [6] = { 66.7, 41.8, 618, 333 }, + [7] = { 68.8, 41.6, 618, 333 }, + [8] = { 69.7, 41.6, 618, 333 }, + [9] = { 70, 41.2, 618, 333 }, + [10] = { 68.3, 41.1, 618, 333 }, + [11] = { 66.8, 41, 618, 333 }, + [12] = { 68.9, 41, 618, 333 }, + [13] = { 71.2, 40.7, 618, 333 }, + [14] = { 64.7, 40.6, 618, 333 }, + [15] = { 70.3, 40.6, 618, 333 }, + [16] = { 71.4, 40.5, 618, 333 }, + [17] = { 64.9, 40.4, 618, 333 }, + [18] = { 70, 39.8, 618, 333 }, + [19] = { 71.6, 39.6, 618, 333 }, + [20] = { 71.6, 39, 618, 333 }, + [21] = { 70.8, 38.8, 618, 333 }, + [22] = { 70.2, 38.8, 618, 333 }, + [23] = { 71.1, 38.7, 618, 333 }, + [24] = { 70.6, 38.3, 618, 333 }, + [25] = { 70.5, 37.6, 618, 333 }, + [26] = { 70.9, 37.5, 618, 333 }, + }, + ["lvl"] = "56-57", + }, + [7460] = { + ["coords"] = { + [1] = { 67.6, 46.3, 618, 333 }, + [2] = { 66.8, 44.9, 618, 333 }, + [3] = { 65.9, 43.6, 618, 333 }, + [4] = { 69.8, 42.2, 618, 333 }, + [5] = { 70.1, 42.1, 618, 333 }, + [6] = { 66.7, 41.8, 618, 333 }, + [7] = { 68.8, 41.6, 618, 333 }, + [8] = { 69.7, 41.6, 618, 333 }, + [9] = { 70, 41.2, 618, 333 }, + [10] = { 68.3, 41.1, 618, 333 }, + [11] = { 66.8, 41, 618, 333 }, + [12] = { 68.9, 41, 618, 333 }, + [13] = { 71.2, 40.7, 618, 333 }, + [14] = { 64.7, 40.6, 618, 333 }, + [15] = { 70.3, 40.6, 618, 333 }, + [16] = { 71.4, 40.5, 618, 333 }, + [17] = { 64.9, 40.4, 618, 333 }, + [18] = { 70, 39.8, 618, 333 }, + [19] = { 71.6, 39.6, 618, 333 }, + [20] = { 71.6, 39, 618, 333 }, + [21] = { 70.8, 38.8, 618, 333 }, + [22] = { 70.2, 38.8, 618, 333 }, + [23] = { 71.1, 38.7, 618, 333 }, + [24] = { 70.6, 38.3, 618, 333 }, + [25] = { 70.5, 37.6, 618, 333 }, + [26] = { 70.9, 37.5, 618, 333 }, + }, + ["lvl"] = "57-58", + }, + [7461] = { + ["coords"] = { + [1] = { 91.9, 74.8, 616, 600 }, + [2] = { 99, 73.7, 616, 600 }, + [3] = { 93.4, 73.4, 616, 600 }, + [4] = { 99.5, 64.3, 616, 600 }, + [5] = { 99.4, 63.8, 616, 600 }, + [6] = { 97.8, 63.3, 616, 600 }, + [7] = { 57.7, 88.7, 618, 600 }, + [8] = { 58.4, 87.8, 618, 600 }, + [9] = { 52.2, 84.7, 618, 600 }, + [10] = { 55.5, 84.2, 618, 600 }, + [11] = { 52.9, 84.1, 618, 600 }, + [12] = { 59.1, 83.9, 618, 600 }, + [13] = { 61.4, 83.6, 618, 600 }, + [14] = { 60.5, 83.6, 618, 600 }, + [15] = { 60.3, 83.2, 618, 600 }, + [16] = { 56.2, 80.3, 618, 600 }, + [17] = { 55.7, 80, 618, 600 }, + [18] = { 55.6, 79.8, 618, 600 }, + [19] = { 54.9, 79.5, 618, 600 }, + [20] = { 63.6, 79.2, 618, 600 }, + [21] = { 64.5, 78.8, 618, 600 }, + [22] = { 60.1, 78.1, 618, 600 }, + [23] = { 59.7, 76.6, 618, 600 }, + }, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [7462] = { + ["coords"] = { + [1] = { 91.8, 87.1, 616, 600 }, + [2] = { 92.5, 87, 616, 600 }, + [3] = { 92.2, 85.7, 616, 600 }, + [4] = { 92.3, 84.1, 616, 600 }, + [5] = { 94.5, 74.9, 616, 600 }, + [6] = { 99.6, 62.7, 616, 600 }, + [7] = { 98.8, 62.4, 616, 600 }, + [8] = { 52.2, 90.3, 618, 600 }, + [9] = { 52.5, 90.3, 618, 600 }, + [10] = { 52.4, 89.6, 618, 600 }, + [11] = { 52.4, 88.9, 618, 600 }, + [12] = { 57.1, 88.7, 618, 600 }, + [13] = { 58.5, 88.3, 618, 600 }, + [14] = { 57, 88, 618, 600 }, + [15] = { 57.8, 87.6, 618, 600 }, + [16] = { 59.3, 87.1, 618, 600 }, + [17] = { 58.1, 86.9, 618, 600 }, + [18] = { 56.8, 86.3, 618, 600 }, + [19] = { 56.5, 84.8, 618, 600 }, + [20] = { 53.4, 84.8, 618, 600 }, + [21] = { 61.6, 84.4, 618, 600 }, + [22] = { 58.4, 83.3, 618, 600 }, + [23] = { 60.7, 82.6, 618, 600 }, + [24] = { 64.2, 80.1, 618, 600 }, + [25] = { 55.7, 79.3, 618, 600 }, + [26] = { 55.4, 79.1, 618, 600 }, + [27] = { 56.7, 79, 618, 600 }, + [28] = { 58.9, 77.4, 618, 600 }, + }, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [7463] = { + ["coords"] = { + [1] = { 91.1, 86, 616, 600 }, + [2] = { 90.8, 84.1, 616, 300 }, + [3] = { 89, 82.4, 616, 600 }, + [4] = { 95.5, 77.8, 616, 300 }, + [5] = { 94, 76.8, 616, 600 }, + [6] = { 92.3, 76.5, 616, 600 }, + [7] = { 92.3, 75.3, 616, 600 }, + [8] = { 94.5, 72.4, 616, 300 }, + [9] = { 51.9, 89.8, 618, 600 }, + [10] = { 51.7, 88.9, 618, 300 }, + [11] = { 50.9, 88.2, 618, 600 }, + [12] = { 59.2, 88.1, 618, 600 }, + [13] = { 56.3, 87.6, 618, 300 }, + [14] = { 57.4, 86.7, 618, 600 }, + [15] = { 53.9, 86.1, 618, 300 }, + [16] = { 57.4, 86.1, 618, 300 }, + [17] = { 53.2, 85.6, 618, 600 }, + [18] = { 52.4, 85.5, 618, 600 }, + [19] = { 52.4, 85, 618, 600 }, + [20] = { 53.4, 83.6, 618, 300 }, + [21] = { 62.3, 83.6, 618, 600 }, + [22] = { 60.4, 83.2, 618, 600 }, + [23] = { 57.7, 79.8, 618, 600 }, + [24] = { 61, 79.8, 618, 600 }, + [25] = { 64.9, 79.7, 618, 600 }, + [26] = { 56.2, 79, 618, 600 }, + [27] = { 60.6, 78.5, 618, 600 }, + [28] = { 60.5, 78.5, 618, 600 }, + [29] = { 59.8, 75.2, 618, 600 }, + [30] = { 59.4, 75.1, 618, 600 }, + }, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [7488] = "_", + [7523] = { + ["coords"] = { + [1] = { 51.2, 46.9, 618, 333 }, + [2] = { 50.9, 46.7, 618, 333 }, + [3] = { 51.1, 46.1, 618, 333 }, + [4] = { 51.7, 46, 618, 333 }, + [5] = { 51.2, 45.7, 618, 333 }, + [6] = { 50.7, 45.4, 618, 333 }, + [7] = { 51.9, 44.9, 618, 333 }, + [8] = { 55.8, 44.7, 618, 333 }, + [9] = { 52.1, 44.7, 618, 333 }, + [10] = { 56.8, 44.7, 618, 333 }, + [11] = { 51.7, 44.6, 618, 333 }, + [12] = { 53.7, 44.3, 618, 333 }, + [13] = { 53.6, 44.1, 618, 333 }, + [14] = { 53.1, 44.1, 618, 333 }, + [15] = { 52.1, 44, 618, 333 }, + [16] = { 55.5, 44, 618, 333 }, + [17] = { 56, 44, 618, 333 }, + [18] = { 56.4, 44, 618, 333 }, + [19] = { 54.5, 43.9, 618, 333 }, + [20] = { 53.6, 43.5, 618, 333 }, + [21] = { 55.3, 43.3, 618, 333 }, + [22] = { 55.9, 43.3, 618, 333 }, + [23] = { 56.5, 43.2, 618, 333 }, + [24] = { 56.7, 43, 618, 333 }, + [25] = { 50.3, 42.7, 618, 333 }, + [26] = { 53.6, 42.5, 618, 333 }, + [27] = { 50.6, 42.5, 618, 333 }, + [28] = { 56.3, 42.5, 618, 333 }, + [29] = { 56.9, 42.5, 618, 333 }, + [30] = { 53.5, 42.1, 618, 333 }, + [31] = { 50.7, 42, 618, 333 }, + [32] = { 52.1, 41.8, 618, 333 }, + [33] = { 54.1, 41.8, 618, 333 }, + [34] = { 50.2, 41.3, 618, 333 }, + [35] = { 52.6, 41.3, 618, 333 }, + [36] = { 53, 41.1, 618, 333 }, + [37] = { 51.7, 41, 618, 333 }, + [38] = { 53.5, 40.5, 618, 333 }, + [39] = { 52.4, 40.5, 618, 333 }, + [40] = { 52.1, 40.4, 618, 333 }, + [41] = { 52.5, 39.8, 618, 333 }, + [42] = { 53.4, 39.8, 618, 333 }, + }, + ["lvl"] = "54-55", + }, + [7524] = { + ["coords"] = { + [1] = { 51.2, 46.9, 618, 333 }, + [2] = { 50.9, 46.7, 618, 333 }, + [3] = { 51.1, 46.1, 618, 333 }, + [4] = { 51.7, 46, 618, 333 }, + [5] = { 51.2, 45.7, 618, 333 }, + [6] = { 50.7, 45.4, 618, 333 }, + [7] = { 51.9, 44.9, 618, 333 }, + [8] = { 55.8, 44.7, 618, 333 }, + [9] = { 52.1, 44.7, 618, 333 }, + [10] = { 56.8, 44.7, 618, 333 }, + [11] = { 51.7, 44.6, 618, 333 }, + [12] = { 53.7, 44.3, 618, 333 }, + [13] = { 53.6, 44.1, 618, 333 }, + [14] = { 53.1, 44.1, 618, 333 }, + [15] = { 52.1, 44, 618, 333 }, + [16] = { 55.5, 44, 618, 333 }, + [17] = { 56, 44, 618, 333 }, + [18] = { 56.4, 44, 618, 333 }, + [19] = { 54.5, 43.9, 618, 333 }, + [20] = { 53.6, 43.5, 618, 333 }, + [21] = { 55.3, 43.3, 618, 333 }, + [22] = { 55.9, 43.3, 618, 333 }, + [23] = { 56.5, 43.2, 618, 333 }, + [24] = { 56.7, 43, 618, 333 }, + [25] = { 50.3, 42.7, 618, 333 }, + [26] = { 53.6, 42.5, 618, 333 }, + [27] = { 50.6, 42.5, 618, 333 }, + [28] = { 56.3, 42.5, 618, 333 }, + [29] = { 56.9, 42.5, 618, 333 }, + [30] = { 53.5, 42.1, 618, 333 }, + [31] = { 50.7, 42, 618, 333 }, + [32] = { 52.1, 41.8, 618, 333 }, + [33] = { 54.1, 41.8, 618, 333 }, + [34] = { 50.2, 41.3, 618, 333 }, + [35] = { 52.6, 41.3, 618, 333 }, + [36] = { 53, 41.1, 618, 333 }, + [37] = { 51.7, 41, 618, 333 }, + [38] = { 53.5, 40.5, 618, 333 }, + [39] = { 52.4, 40.5, 618, 333 }, + [40] = { 52.1, 40.4, 618, 333 }, + [41] = { 52.5, 39.8, 618, 333 }, + [42] = { 53.4, 39.8, 618, 333 }, + }, + ["lvl"] = "55-56", + }, + [7525] = "_", + [7526] = "_", + [7528] = "_", + [7543] = { + ["coords"] = { + [1] = { 17.7, 66.9, 46, 300 }, + [2] = { 17.7, 66.8, 46, 300 }, + [3] = { 19.3, 65.8, 46, 300 }, + [4] = { 15.8, 63.5, 46, 300 }, + [5] = { 15.6, 63.4, 46, 300 }, + [6] = { 15.9, 63.3, 46, 300 }, + [7] = { 93.9, 93.2, 5581, 300 }, + [8] = { 93.9, 93.1, 5581, 300 }, + [9] = { 95.4, 92.2, 5581, 300 }, + [10] = { 92.1, 90.1, 5581, 300 }, + [11] = { 92, 90.1, 5581, 300 }, + [12] = { 92.2, 89.9, 5581, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [7544] = { + ["coords"] = { + [1] = { 80.4, 31.8, 616, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [7546] = { + ["coords"] = { + [1] = { 59.4, 60.1, 440, 300 }, + [2] = { 57.6, 59.4, 440, 180 }, + [3] = { 57.2, 58.4, 440, 25 }, + [4] = { 57.2, 58.3, 440, 25 }, + [5] = { 63.9, 58, 440, 25 }, + [6] = { 63.9, 56.7, 440, 25 }, + [7] = { 63.8, 56.4, 440, 25 }, + [8] = { 57.4, 56.4, 440, 25 }, + [9] = { 45.9, 69.4, 1941, 300 }, + [10] = { 36.8, 65.7, 1941, 180 }, + [11] = { 35, 60.5, 1941, 25 }, + [12] = { 35, 60.3, 1941, 25 }, + [13] = { 68.9, 58.5, 1941, 25 }, + [14] = { 69.1, 58.5, 1941, 25 }, + [15] = { 69.1, 51.7, 1941, 25 }, + [16] = { 68.4, 50.3, 1941, 25 }, + [17] = { 35.9, 50.2, 1941, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [7563] = "_", + [7564] = { + ["coords"] = { + [1] = { 51.8, 28.7, 440, 30 }, + }, + ["lvl"] = "40", + }, + [7583] = { + ["coords"] = { + [1] = { 51.1, 26.9, 440, 30 }, + }, + ["lvl"] = "30", + }, + [7584] = { + ["coords"] = { + [1] = { 57.4, 73.3, 357, 300 }, + [2] = { 68, 60.1, 357, 300 }, + [3] = { 50.8, 47.4, 357, 300 }, + [4] = { 83.2, 46.1, 357, 300 }, + [5] = { 44, 23, 357, 300 }, + }, + ["lvl"] = "44-46", + ["rnk"] = "1", + }, + [7603] = { + ["coords"] = { + [1] = { 10.3, 97.3, 721, 18000 }, + [2] = { 8.9, 95.4, 721, 18000 }, + [3] = { 9.5, 95.1, 721, 18000 }, + [4] = { 9.2, 94.6, 721, 18000 }, + [5] = { 5, 88.3, 721, 18000 }, + [6] = { 6.1, 87.8, 721, 18000 }, + [7] = { 5.4, 87.7, 721, 18000 }, + [8] = { 5.7, 86.8, 721, 18000 }, + [9] = { 9, 82.4, 721, 18000 }, + [10] = { 9.5, 82, 721, 18000 }, + [11] = { 9.5, 80.9, 721, 18000 }, + [12] = { 8.9, 80.9, 721, 18000 }, + [13] = { 9.2, 70.8, 721, 18000 }, + [14] = { 8.6, 69.9, 721, 18000 }, + [15] = { 9.8, 69.7, 721, 18000 }, + [16] = { 9.2, 68.5, 721, 18000 }, + [17] = { 7.3, 59.5, 721, 18000 }, + [18] = { 7.9, 58.5, 721, 18000 }, + [19] = { 6.6, 58.4, 721, 18000 }, + [20] = { 6.3, 57.3, 721, 18000 }, + [21] = { 2.6, 57.1, 721, 18000 }, + [22] = { 0.7, 56.3, 721, 18000 }, + [23] = { 1.5, 56.2, 721, 18000 }, + [24] = { 4.3, 55.8, 721, 18000 }, + [25] = { 0.6, 55.3, 721, 18000 }, + [26] = { 5, 55.2, 721, 18000 }, + [27] = { 5.3, 54.5, 721, 18000 }, + [28] = { 3.3, 53.8, 721, 18000 }, + }, + ["lvl"] = "28-29", + }, + [7604] = { + ["coords"] = { + [1] = { 23.5, 18.3, 1176, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "45", + ["rnk"] = "1", + }, + [7605] = { + ["coords"] = { + [1] = { 23.6, 17.9, 1176, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "44", + ["rnk"] = "1", + }, + [7606] = { + ["coords"] = { + [1] = { 23.6, 17.6, 1176, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "44", + ["rnk"] = "1", + }, + [7607] = { + ["coords"] = { + [1] = { 23.7, 18.5, 1176, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "43", + ["rnk"] = "1", + }, + [7608] = { + ["coords"] = { + [1] = { 23.9, 17.4, 1176, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "44", + ["rnk"] = "1", + }, + [7624] = "_", + [7643] = { + ["coords"] = { + [1] = { 45, 57.4, 8, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [7663] = "_", + [7668] = { + ["coords"] = { + [1] = { 53.3, 58.8, 4, 300 }, + [2] = { 51.7, 57.1, 4, 300 }, + [3] = { 62.8, 56.8, 4, 300 }, + [4] = { 63.1, 55.7, 4, 300 }, + [5] = { 54.1, 52.5, 4, 300 }, + [6] = { 61.8, 51.2, 4, 300 }, + [7] = { 55, 48.5, 4, 300 }, + }, + ["lvl"] = "57", + }, + [7669] = { + ["coords"] = { + [1] = { 48.3, 42.9, 4, 300 }, + [2] = { 41.2, 14.4, 4, 300 }, + [3] = { 43.6, 11, 4, 300 }, + [4] = { 21, 77.9, 8, 300 }, + }, + ["lvl"] = "53-54", + }, + [7670] = { + ["coords"] = { + [1] = { 64.3, 46.8, 4, 300 }, + [2] = { 63.3, 40.8, 4, 300 }, + [3] = { 64.4, 34.2, 4, 300 }, + }, + ["lvl"] = "54-55", + }, + [7683] = { + ["coords"] = { + [1] = { 58.6, 54.7, 1497, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [7724] = { + ["coords"] = { + [1] = { 50.2, 27.5, 440, 30 }, + }, + ["lvl"] = "44", + }, + [7725] = { + ["coords"] = { + [1] = { 66.5, 48.2, 357, 300 }, + [2] = { 68.9, 47.8, 357, 300 }, + [3] = { 66.4, 47.8, 357, 300 }, + [4] = { 65.9, 47.8, 357, 300 }, + [5] = { 65.9, 47.4, 357, 300 }, + [6] = { 66.1, 47.4, 357, 300 }, + [7] = { 68.8, 47.3, 357, 300 }, + [8] = { 67.1, 47.2, 357, 300 }, + [9] = { 68.8, 47, 357, 300 }, + [10] = { 66.7, 47, 357, 300 }, + [11] = { 68.6, 46.9, 357, 300 }, + [12] = { 66.7, 46.8, 357, 300 }, + [13] = { 66.1, 46.7, 357, 300 }, + [14] = { 66.9, 46.7, 357, 300 }, + [15] = { 66.6, 46.7, 357, 300 }, + [16] = { 67.4, 46.5, 357, 300 }, + [17] = { 66.6, 46.4, 357, 300 }, + [18] = { 67.2, 46.4, 357, 300 }, + [19] = { 67.9, 46.3, 357, 300 }, + [20] = { 66.8, 46.2, 357, 300 }, + [21] = { 66.6, 46.2, 357, 300 }, + [22] = { 68.1, 46.1, 357, 300 }, + [23] = { 67, 45.9, 357, 300 }, + [24] = { 69, 40.8, 357, 300 }, + [25] = { 69.3, 40.6, 357, 300 }, + [26] = { 69, 40.6, 357, 300 }, + [27] = { 69, 40.2, 357, 300 }, + [28] = { 69, 40.1, 357, 300 }, + [29] = { 69.9, 40, 357, 300 }, + [30] = { 68.7, 39.9, 357, 300 }, + [31] = { 69, 39.5, 357, 300 }, + [32] = { 67.3, 39.4, 357, 300 }, + [33] = { 69.5, 39.3, 357, 300 }, + [34] = { 69.7, 39.3, 357, 300 }, + [35] = { 68.7, 39.3, 357, 300 }, + [36] = { 66.7, 39.2, 357, 300 }, + [37] = { 67, 39.2, 357, 300 }, + [38] = { 68.9, 39, 357, 300 }, + [39] = { 69.3, 38.9, 357, 300 }, + [40] = { 70, 38.9, 357, 300 }, + [41] = { 66.4, 38.8, 357, 300 }, + [42] = { 66.6, 38.8, 357, 300 }, + [43] = { 67.1, 38.8, 357, 300 }, + [44] = { 69.6, 38.8, 357, 300 }, + [45] = { 69.8, 38.6, 357, 300 }, + [46] = { 66.4, 38.5, 357, 300 }, + [47] = { 66.7, 38.5, 357, 300 }, + [48] = { 66.9, 38.5, 357, 300 }, + [49] = { 68.9, 38.4, 357, 300 }, + [50] = { 69.9, 38.4, 357, 300 }, + [51] = { 66.8, 38.3, 357, 300 }, + [52] = { 66.6, 38.2, 357, 300 }, + [53] = { 68.8, 37.9, 357, 300 }, + [54] = { 70, 37.8, 357, 300 }, + [55] = { 94.4, 90.8, 2557, 300 }, + [56] = { 91.3, 90.2, 2557, 300 }, + [57] = { 92.9, 89.9, 2557, 300 }, + [58] = { 89.6, 88, 2557, 300 }, + [59] = { 90.9, 87.8, 2557, 300 }, + [60] = { 93.3, 87.6, 2557, 300 }, + [61] = { 89.6, 86.3, 2557, 300 }, + [62] = { 91.1, 86.3, 2557, 300 }, + [63] = { 92.2, 86.1, 2557, 300 }, + [64] = { 91.6, 85.1, 2557, 300 }, + [65] = { 90.7, 84.7, 2557, 300 }, + }, + ["lvl"] = "42-43", + }, + [7726] = { + ["coords"] = { + [1] = { 66.5, 48.2, 357, 300 }, + [2] = { 68.9, 47.8, 357, 300 }, + [3] = { 66.4, 47.8, 357, 300 }, + [4] = { 65.9, 47.8, 357, 300 }, + [5] = { 65.9, 47.4, 357, 300 }, + [6] = { 66.1, 47.4, 357, 300 }, + [7] = { 68.8, 47.3, 357, 300 }, + [8] = { 67.1, 47.2, 357, 300 }, + [9] = { 68.8, 47, 357, 300 }, + [10] = { 66.7, 47, 357, 300 }, + [11] = { 68.6, 46.9, 357, 300 }, + [12] = { 66.7, 46.8, 357, 300 }, + [13] = { 66.1, 46.7, 357, 300 }, + [14] = { 66.9, 46.7, 357, 300 }, + [15] = { 66.6, 46.7, 357, 300 }, + [16] = { 67.4, 46.5, 357, 300 }, + [17] = { 66.6, 46.4, 357, 300 }, + [18] = { 67.2, 46.4, 357, 300 }, + [19] = { 67.9, 46.3, 357, 300 }, + [20] = { 66.8, 46.2, 357, 300 }, + [21] = { 66.6, 46.2, 357, 300 }, + [22] = { 68.1, 46.1, 357, 300 }, + [23] = { 67, 45.9, 357, 300 }, + [24] = { 69, 40.8, 357, 300 }, + [25] = { 69.3, 40.6, 357, 300 }, + [26] = { 69, 40.6, 357, 300 }, + [27] = { 69, 40.2, 357, 300 }, + [28] = { 69, 40.1, 357, 300 }, + [29] = { 69.9, 40, 357, 300 }, + [30] = { 68.7, 39.9, 357, 300 }, + [31] = { 69, 39.5, 357, 300 }, + [32] = { 67.3, 39.4, 357, 300 }, + [33] = { 69.5, 39.3, 357, 300 }, + [34] = { 69.7, 39.3, 357, 300 }, + [35] = { 68.7, 39.3, 357, 300 }, + [36] = { 66.7, 39.2, 357, 300 }, + [37] = { 67, 39.2, 357, 300 }, + [38] = { 68.9, 39, 357, 300 }, + [39] = { 69.3, 38.9, 357, 300 }, + [40] = { 70, 38.9, 357, 300 }, + [41] = { 66.4, 38.8, 357, 300 }, + [42] = { 66.6, 38.8, 357, 300 }, + [43] = { 67.1, 38.8, 357, 300 }, + [44] = { 69.6, 38.8, 357, 300 }, + [45] = { 69.8, 38.6, 357, 300 }, + [46] = { 66.4, 38.5, 357, 300 }, + [47] = { 66.7, 38.5, 357, 300 }, + [48] = { 66.9, 38.5, 357, 300 }, + [49] = { 68.9, 38.4, 357, 300 }, + [50] = { 69.9, 38.4, 357, 300 }, + [51] = { 66.8, 38.3, 357, 300 }, + [52] = { 66.6, 38.2, 357, 300 }, + [53] = { 68.8, 37.9, 357, 300 }, + [54] = { 70, 37.8, 357, 300 }, + [55] = { 94.4, 90.8, 2557, 300 }, + [56] = { 91.3, 90.2, 2557, 300 }, + [57] = { 92.9, 89.9, 2557, 300 }, + [58] = { 89.6, 88, 2557, 300 }, + [59] = { 90.9, 87.8, 2557, 300 }, + [60] = { 93.3, 87.6, 2557, 300 }, + [61] = { 89.6, 86.3, 2557, 300 }, + [62] = { 91.1, 86.3, 2557, 300 }, + [63] = { 92.2, 86.1, 2557, 300 }, + [64] = { 91.6, 85.1, 2557, 300 }, + [65] = { 90.7, 84.7, 2557, 300 }, + }, + ["lvl"] = "41-42", + }, + [7727] = { + ["coords"] = { + [1] = { 66.5, 48.2, 357, 300 }, + [2] = { 68.9, 47.8, 357, 300 }, + [3] = { 66.4, 47.8, 357, 300 }, + [4] = { 65.9, 47.8, 357, 300 }, + [5] = { 65.9, 47.4, 357, 300 }, + [6] = { 66.1, 47.4, 357, 300 }, + [7] = { 68.8, 47.3, 357, 300 }, + [8] = { 67.1, 47.2, 357, 300 }, + [9] = { 68.8, 47, 357, 300 }, + [10] = { 66.7, 47, 357, 300 }, + [11] = { 68.6, 46.9, 357, 300 }, + [12] = { 66.7, 46.8, 357, 300 }, + [13] = { 66.1, 46.7, 357, 300 }, + [14] = { 66.9, 46.7, 357, 300 }, + [15] = { 66.6, 46.7, 357, 300 }, + [16] = { 67.4, 46.5, 357, 300 }, + [17] = { 66.6, 46.4, 357, 300 }, + [18] = { 67.2, 46.4, 357, 300 }, + [19] = { 67.9, 46.3, 357, 300 }, + [20] = { 66.8, 46.2, 357, 300 }, + [21] = { 66.6, 46.2, 357, 300 }, + [22] = { 68.1, 46.1, 357, 300 }, + [23] = { 67, 45.9, 357, 300 }, + [24] = { 69, 40.8, 357, 300 }, + [25] = { 69.3, 40.6, 357, 300 }, + [26] = { 69, 40.6, 357, 300 }, + [27] = { 69, 40.2, 357, 300 }, + [28] = { 69, 40.1, 357, 300 }, + [29] = { 69.9, 40, 357, 300 }, + [30] = { 68.7, 39.9, 357, 300 }, + [31] = { 69, 39.5, 357, 300 }, + [32] = { 67.3, 39.4, 357, 300 }, + [33] = { 69.5, 39.3, 357, 300 }, + [34] = { 69.7, 39.3, 357, 300 }, + [35] = { 68.7, 39.3, 357, 300 }, + [36] = { 66.7, 39.2, 357, 300 }, + [37] = { 67, 39.2, 357, 300 }, + [38] = { 68.9, 39, 357, 300 }, + [39] = { 69.3, 38.9, 357, 300 }, + [40] = { 70, 38.9, 357, 300 }, + [41] = { 66.4, 38.8, 357, 300 }, + [42] = { 66.6, 38.8, 357, 300 }, + [43] = { 67.1, 38.8, 357, 300 }, + [44] = { 69.6, 38.8, 357, 300 }, + [45] = { 69.8, 38.6, 357, 300 }, + [46] = { 66.4, 38.5, 357, 300 }, + [47] = { 66.7, 38.5, 357, 300 }, + [48] = { 66.9, 38.5, 357, 300 }, + [49] = { 68.9, 38.4, 357, 300 }, + [50] = { 69.9, 38.4, 357, 300 }, + [51] = { 66.8, 38.3, 357, 300 }, + [52] = { 66.6, 38.2, 357, 300 }, + [53] = { 68.8, 37.9, 357, 300 }, + [54] = { 70, 37.8, 357, 300 }, + [55] = { 94.4, 90.8, 2557, 300 }, + [56] = { 91.3, 90.2, 2557, 300 }, + [57] = { 92.9, 89.9, 2557, 300 }, + [58] = { 89.6, 88, 2557, 300 }, + [59] = { 90.9, 87.8, 2557, 300 }, + [60] = { 93.3, 87.6, 2557, 300 }, + [61] = { 89.6, 86.3, 2557, 300 }, + [62] = { 91.1, 86.3, 2557, 300 }, + [63] = { 92.2, 86.1, 2557, 300 }, + [64] = { 91.6, 85.1, 2557, 300 }, + [65] = { 90.7, 84.7, 2557, 300 }, + }, + ["lvl"] = "43-44", + }, + [7730] = { + ["coords"] = { + [1] = { 43.1, 68.9, 406, 300 }, + [2] = { 43.2, 68.5, 406, 300 }, + [3] = { 47.9, 64.5, 406, 300 }, + [4] = { 47.9, 62.9, 406, 300 }, + [5] = { 50.5, 62.8, 406, 300 }, + [6] = { 52, 62.8, 406, 300 }, + [7] = { 52, 62.6, 406, 300 }, + [8] = { 51.9, 62.4, 406, 300 }, + [9] = { 48, 62.4, 406, 300 }, + [10] = { 50.2, 62.3, 406, 300 }, + [11] = { 49.4, 61.4, 406, 300 }, + [12] = { 49.5, 61.2, 406, 300 }, + [13] = { 50.5, 60.8, 406, 300 }, + [14] = { 48.9, 60.3, 406, 300 }, + [15] = { 49, 60.3, 406, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "38", + }, + [7731] = { + ["coords"] = { + [1] = { 50.2, 63.5, 406, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [7732] = { + ["coords"] = { + [1] = { 19.9, 32.2, 1, 477 }, + [2] = { 19.7, 32, 1, 477 }, + [3] = { 35.8, 33.6, 721, 477 }, + [4] = { 34.4, 31.6, 721, 477 }, + }, + ["lvl"] = "1", + }, + [7736] = { + ["coords"] = { + [1] = { 31, 43.5, 357, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [7743] = "_", + [7745] = "_", + [7746] = "_", + [7747] = "_", + [7748] = "_", + [7765] = { + ["coords"] = { + [1] = { 42.4, 22, 357, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [7766] = { + ["coords"] = { + [1] = { 73.2, 35.7, 1519, 30 }, + [2] = { 55.8, 96.5, 5581, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "37", + }, + [7770] = { + ["coords"] = { + [1] = { 65.7, 64.2, 440, 300 }, + [2] = { 78.5, 90.5, 1941, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "40", + }, + [7772] = { + ["coords"] = { + [1] = { 49.5, 19.8, 357, 900 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [7777] = { + ["coords"] = { + [1] = { 76, 42.9, 357, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [7779] = { + ["coords"] = { + [1] = { 75.4, 31.2, 1519, 555 }, + [2] = { 56.9, 94.1, 5581, 555 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [7784] = { + ["coords"] = { + [1] = { 60.2, 64.7, 440, 300 }, + [2] = { 50.4, 93.3, 1941, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "42", + }, + [7790] = { + ["coords"] = { + [1] = { 79.2, 22.4, 1637, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [7795] = { + ["coords"] = { + [1] = { 29.9, 38.3, 1176, 604800 }, + }, + ["lvl"] = "46", + ["rnk"] = "1", + }, + [7797] = { + ["coords"] = { + [1] = { 44.1, 34.9, 1176, 604800 }, + }, + ["lvl"] = "46", + ["rnk"] = "1", + }, + [7798] = { + ["coords"] = { + [1] = { 63, 36.4, 1519, 430 }, + [2] = { 50.3, 96.9, 5581, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [7804] = { + ["coords"] = { + [1] = { 51.4, 28.7, 440, 300 }, + }, + ["lvl"] = "55", + }, + [7823] = { + ["coords"] = { + [1] = { 51, 29.3, 440, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [7824] = { + ["coords"] = { + [1] = { 51.6, 25.4, 440, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [7843] = { + ["coords"] = { + [1] = { 23.7, 39.2, 1, 285 }, + [2] = { 70.6, 38.2, 1, 60 }, + [3] = { 70.8, 38.1, 1, 60 }, + [4] = { 68.6, 94.6, 721, 285 }, + [5] = { 68.5, 94.1, 721, 285 }, + }, + ["fac"] = "A", + ["lvl"] = "24-25", + }, + [7850] = { + ["coords"] = { + [1] = { 54.6, 89.5, 721, 604800 }, + [2] = { 50.7, 88.9, 721, 604800 }, + [3] = { 57.2, 85.8, 721, 604800 }, + [4] = { 44, 85.4, 721, 604800 }, + [5] = { 61.8, 81.7, 721, 604800 }, + [6] = { 60.2, 77.3, 721, 604800 }, + [7] = { 61.1, 70.1, 721, 604800 }, + [8] = { 59.4, 68.6, 721, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "28", + }, + [7853] = { + ["coords"] = { + [1] = { 27.6, 77.5, 33, 30 }, + }, + ["lvl"] = "30", + }, + [7854] = { + ["coords"] = { + [1] = { 74.4, 42.9, 357, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "49", + }, + [7855] = { + ["coords"] = { + [1] = { 72.4, 48.6, 440, 300 }, + [2] = { 73.6, 48.4, 440, 300 }, + [3] = { 73.2, 48.4, 440, 300 }, + [4] = { 73.2, 48.3, 440, 300 }, + [5] = { 73.7, 48.3, 440, 300 }, + [6] = { 72.1, 48.2, 440, 300 }, + [7] = { 72.5, 48.2, 440, 300 }, + [8] = { 71.5, 48.1, 440, 300 }, + [9] = { 72.7, 48, 440, 300 }, + [10] = { 72.8, 47.9, 440, 300 }, + [11] = { 70.9, 47.3, 440, 300 }, + [12] = { 71.5, 47.3, 440, 300 }, + [13] = { 73, 47.2, 440, 300 }, + [14] = { 72.4, 47.2, 440, 300 }, + [15] = { 73.7, 47.2, 440, 300 }, + [16] = { 72, 47.2, 440, 300 }, + [17] = { 71.5, 46.6, 440, 300 }, + [18] = { 74, 46.6, 440, 300 }, + [19] = { 73.4, 46.5, 440, 300 }, + [20] = { 73, 46.5, 440, 300 }, + [21] = { 74.3, 46.5, 440, 300 }, + [22] = { 73, 46.2, 440, 300 }, + [23] = { 71.3, 45.9, 440, 300 }, + [24] = { 73.9, 45.9, 440, 300 }, + [25] = { 70.9, 45.9, 440, 300 }, + [26] = { 71.2, 45.8, 440, 300 }, + [27] = { 72, 45.8, 440, 300 }, + [28] = { 73.5, 45.8, 440, 300 }, + [29] = { 75.9, 45.6, 440, 300 }, + [30] = { 71.4, 45.6, 440, 300 }, + [31] = { 76.3, 45.6, 440, 300 }, + [32] = { 76.4, 45.6, 440, 300 }, + [33] = { 75.8, 45.5, 440, 300 }, + [34] = { 76.1, 45.4, 440, 300 }, + [35] = { 72.8, 45.3, 440, 300 }, + [36] = { 76.3, 45.3, 440, 300 }, + [37] = { 71.9, 45.2, 440, 300 }, + [38] = { 73, 45.2, 440, 300 }, + [39] = { 72.4, 45.2, 440, 300 }, + [40] = { 75.6, 45.1, 440, 300 }, + [41] = { 76, 45.1, 440, 300 }, + [42] = { 73.3, 45, 440, 300 }, + [43] = { 71.9, 44.4, 440, 300 }, + [44] = { 72.3, 44.3, 440, 300 }, + [45] = { 72.3, 44.2, 440, 300 }, + [46] = { 71.6, 43.8, 440, 300 }, + [47] = { 72, 43.7, 440, 300 }, + [48] = { 71.2, 43.5, 440, 300 }, + [49] = { 70.9, 43.1, 440, 300 }, + [50] = { 70.6, 43, 440, 300 }, + [51] = { 71.4, 43, 440, 300 }, + [52] = { 70.9, 42.5, 440, 300 }, + [53] = { 1.1, 42.4, 5121, 300 }, + [54] = { 3.7, 41.9, 5121, 300 }, + [55] = { 2.8, 41.9, 5121, 300 }, + [56] = { 2.8, 41.7, 5121, 300 }, + [57] = { 3.8, 41.7, 5121, 300 }, + [58] = { 0.5, 41.6, 5121, 300 }, + [59] = { 1.2, 41.4, 5121, 300 }, + [60] = { 1.8, 41, 5121, 300 }, + [61] = { 2, 40.9, 5121, 300 }, + [62] = { 2.4, 39.5, 5121, 300 }, + [63] = { 1.1, 39.5, 5121, 300 }, + [64] = { 3.8, 39.4, 5121, 300 }, + [65] = { 0.3, 39.4, 5121, 300 }, + [66] = { 4.4, 38.1, 5121, 300 }, + [67] = { 3.2, 38, 5121, 300 }, + [68] = { 2.3, 38, 5121, 300 }, + [69] = { 5.2, 37.9, 5121, 300 }, + [70] = { 2.3, 37.3, 5121, 300 }, + [71] = { 4.3, 36.7, 5121, 300 }, + [72] = { 0.2, 36.5, 5121, 300 }, + [73] = { 3.4, 36.5, 5121, 300 }, + [74] = { 8.5, 36, 5121, 300 }, + [75] = { 9.4, 36, 5121, 300 }, + [76] = { 9.6, 36, 5121, 300 }, + [77] = { 8.4, 35.9, 5121, 300 }, + [78] = { 9, 35.6, 5121, 300 }, + [79] = { 1.9, 35.5, 5121, 300 }, + [80] = { 9.4, 35.4, 5121, 300 }, + [81] = { 0.1, 35.2, 5121, 300 }, + [82] = { 2.3, 35.2, 5121, 300 }, + [83] = { 1.2, 35.1, 5121, 300 }, + [84] = { 8, 35, 5121, 300 }, + [85] = { 8.9, 34.9, 5121, 300 }, + [86] = { 3, 34.7, 5121, 300 }, + [87] = { 0, 33.5, 5121, 300 }, + [88] = { 0.9, 33.3, 5121, 300 }, + [89] = { 0.8, 33.1, 5121, 300 }, + [90] = { 0.3, 32, 5121, 300 }, + }, + ["lvl"] = "44-45", + }, + [7856] = { + ["coords"] = { + [1] = { 72.4, 48.6, 440, 300 }, + [2] = { 73.6, 48.4, 440, 300 }, + [3] = { 73.2, 48.4, 440, 300 }, + [4] = { 73.2, 48.3, 440, 300 }, + [5] = { 73.7, 48.3, 440, 300 }, + [6] = { 72.1, 48.2, 440, 300 }, + [7] = { 72.5, 48.2, 440, 300 }, + [8] = { 71.5, 48.1, 440, 300 }, + [9] = { 72.7, 48, 440, 300 }, + [10] = { 72.8, 47.9, 440, 300 }, + [11] = { 70.9, 47.3, 440, 300 }, + [12] = { 71.5, 47.3, 440, 300 }, + [13] = { 73, 47.2, 440, 300 }, + [14] = { 72.4, 47.2, 440, 300 }, + [15] = { 73.7, 47.2, 440, 300 }, + [16] = { 72, 47.2, 440, 300 }, + [17] = { 71.5, 46.6, 440, 300 }, + [18] = { 74, 46.6, 440, 300 }, + [19] = { 73.4, 46.5, 440, 300 }, + [20] = { 73, 46.5, 440, 300 }, + [21] = { 74.3, 46.5, 440, 300 }, + [22] = { 73, 46.2, 440, 300 }, + [23] = { 71.3, 45.9, 440, 300 }, + [24] = { 73.9, 45.9, 440, 300 }, + [25] = { 70.9, 45.9, 440, 300 }, + [26] = { 71.2, 45.8, 440, 300 }, + [27] = { 72, 45.8, 440, 300 }, + [28] = { 73.5, 45.8, 440, 300 }, + [29] = { 75.9, 45.6, 440, 300 }, + [30] = { 71.4, 45.6, 440, 300 }, + [31] = { 76.3, 45.6, 440, 300 }, + [32] = { 76.4, 45.6, 440, 300 }, + [33] = { 75.8, 45.5, 440, 300 }, + [34] = { 76.1, 45.4, 440, 300 }, + [35] = { 72.8, 45.3, 440, 300 }, + [36] = { 76.3, 45.3, 440, 300 }, + [37] = { 71.9, 45.2, 440, 300 }, + [38] = { 73, 45.2, 440, 300 }, + [39] = { 72.4, 45.2, 440, 300 }, + [40] = { 75.6, 45.1, 440, 300 }, + [41] = { 76, 45.1, 440, 300 }, + [42] = { 73.3, 45, 440, 300 }, + [43] = { 71.9, 44.4, 440, 300 }, + [44] = { 72.3, 44.3, 440, 300 }, + [45] = { 72.3, 44.2, 440, 300 }, + [46] = { 71.6, 43.8, 440, 300 }, + [47] = { 72, 43.7, 440, 300 }, + [48] = { 71.2, 43.5, 440, 300 }, + [49] = { 70.9, 43.1, 440, 300 }, + [50] = { 70.6, 43, 440, 300 }, + [51] = { 71.4, 43, 440, 300 }, + [52] = { 70.9, 42.5, 440, 300 }, + [53] = { 1.1, 42.4, 5121, 300 }, + [54] = { 3.7, 41.9, 5121, 300 }, + [55] = { 2.8, 41.9, 5121, 300 }, + [56] = { 2.8, 41.7, 5121, 300 }, + [57] = { 3.8, 41.7, 5121, 300 }, + [58] = { 0.5, 41.6, 5121, 300 }, + [59] = { 1.2, 41.4, 5121, 300 }, + [60] = { 1.8, 41, 5121, 300 }, + [61] = { 2, 40.9, 5121, 300 }, + [62] = { 2.4, 39.5, 5121, 300 }, + [63] = { 1.1, 39.5, 5121, 300 }, + [64] = { 3.8, 39.4, 5121, 300 }, + [65] = { 0.3, 39.4, 5121, 300 }, + [66] = { 4.4, 38.1, 5121, 300 }, + [67] = { 3.2, 38, 5121, 300 }, + [68] = { 2.3, 38, 5121, 300 }, + [69] = { 5.2, 37.9, 5121, 300 }, + [70] = { 2.3, 37.3, 5121, 300 }, + [71] = { 4.3, 36.7, 5121, 300 }, + [72] = { 0.2, 36.5, 5121, 300 }, + [73] = { 3.4, 36.5, 5121, 300 }, + [74] = { 8.5, 36, 5121, 300 }, + [75] = { 9.4, 36, 5121, 300 }, + [76] = { 9.6, 36, 5121, 300 }, + [77] = { 8.4, 35.9, 5121, 300 }, + [78] = { 9, 35.6, 5121, 300 }, + [79] = { 1.9, 35.5, 5121, 300 }, + [80] = { 9.4, 35.4, 5121, 300 }, + [81] = { 0.1, 35.2, 5121, 300 }, + [82] = { 2.3, 35.2, 5121, 300 }, + [83] = { 1.2, 35.1, 5121, 300 }, + [84] = { 8, 35, 5121, 300 }, + [85] = { 8.9, 34.9, 5121, 300 }, + [86] = { 3, 34.7, 5121, 300 }, + [87] = { 0, 33.5, 5121, 300 }, + [88] = { 0.9, 33.3, 5121, 300 }, + [89] = { 0.8, 33.1, 5121, 300 }, + [90] = { 0.3, 32, 5121, 300 }, + }, + ["lvl"] = "44-45", + }, + [7857] = { + ["coords"] = { + [1] = { 73.8, 48.3, 440, 300 }, + [2] = { 74.8, 48.3, 440, 300 }, + [3] = { 74.6, 48.3, 440, 300 }, + [4] = { 73.8, 48.2, 440, 300 }, + [5] = { 74.6, 48.1, 440, 300 }, + [6] = { 74.8, 48.1, 440, 300 }, + [7] = { 74.7, 48.1, 440, 300 }, + [8] = { 74.2, 48, 440, 300 }, + [9] = { 73.5, 47.9, 440, 300 }, + [10] = { 73, 47.9, 440, 300 }, + [11] = { 74.2, 47.9, 440, 300 }, + [12] = { 74.6, 47.8, 440, 300 }, + [13] = { 72.9, 47.8, 440, 300 }, + [14] = { 74.9, 47.8, 440, 300 }, + [15] = { 74.4, 47.7, 440, 300 }, + [16] = { 74.4, 47.6, 440, 300 }, + [17] = { 74.2, 47.5, 440, 300 }, + [18] = { 74.5, 47.4, 440, 300 }, + [19] = { 73.3, 47.4, 440, 300 }, + [20] = { 74.3, 47.4, 440, 300 }, + [21] = { 73.4, 47.3, 440, 300 }, + [22] = { 73.3, 47.3, 440, 300 }, + [23] = { 74.2, 47.3, 440, 300 }, + [24] = { 74.6, 47.3, 440, 300 }, + [25] = { 74.3, 47.2, 440, 300 }, + [26] = { 74.1, 47.2, 440, 300 }, + [27] = { 74.2, 47.2, 440, 300 }, + [28] = { 74.4, 47.1, 440, 300 }, + [29] = { 74.5, 47, 440, 300 }, + [30] = { 4.1, 41.7, 5121, 300 }, + [31] = { 6.3, 41.7, 5121, 300 }, + [32] = { 5.7, 41.7, 5121, 300 }, + [33] = { 4, 41.5, 5121, 300 }, + [34] = { 5.9, 41.3, 5121, 300 }, + [35] = { 6.1, 41.3, 5121, 300 }, + [36] = { 5, 41.2, 5121, 300 }, + [37] = { 3.4, 40.9, 5121, 300 }, + [38] = { 2.4, 40.9, 5121, 300 }, + [39] = { 4.9, 40.9, 5121, 300 }, + [40] = { 3.5, 40.9, 5121, 300 }, + [41] = { 5.9, 40.8, 5121, 300 }, + [42] = { 2.2, 40.7, 5121, 300 }, + [43] = { 6.3, 40.6, 5121, 300 }, + [44] = { 5.4, 40.5, 5121, 300 }, + [45] = { 5.4, 40.3, 5121, 300 }, + [46] = { 5, 40, 5121, 300 }, + [47] = { 5.7, 39.9, 5121, 300 }, + [48] = { 3.1, 39.8, 5121, 300 }, + [49] = { 5.2, 39.7, 5121, 300 }, + [50] = { 3.2, 39.7, 5121, 300 }, + [51] = { 3.1, 39.6, 5121, 300 }, + [52] = { 4.9, 39.6, 5121, 300 }, + [53] = { 5.8, 39.6, 5121, 300 }, + [54] = { 5.2, 39.5, 5121, 300 }, + [55] = { 4.8, 39.5, 5121, 300 }, + [56] = { 4.9, 39.3, 5121, 300 }, + [57] = { 5.4, 39.2, 5121, 300 }, + [58] = { 5.6, 39, 5121, 300 }, + }, + ["lvl"] = "44-45", + }, + [7858] = { + ["coords"] = { + [1] = { 72.8, 48.1, 440, 300 }, + [2] = { 73.3, 47.9, 440, 300 }, + [3] = { 72.7, 47.8, 440, 300 }, + [4] = { 72.5, 47, 440, 300 }, + [5] = { 72.4, 46.9, 440, 300 }, + [6] = { 72.2, 46.8, 440, 300 }, + [7] = { 72.3, 46.8, 440, 300 }, + [8] = { 74.8, 46.7, 440, 300 }, + [9] = { 72.2, 46.7, 440, 300 }, + [10] = { 74.9, 46.6, 440, 300 }, + [11] = { 72.4, 46.5, 440, 300 }, + [12] = { 74.9, 46.1, 440, 300 }, + [13] = { 75.3, 46, 440, 300 }, + [14] = { 75.4, 45.9, 440, 300 }, + [15] = { 76.4, 45.8, 440, 300 }, + [16] = { 74.7, 45.8, 440, 300 }, + [17] = { 74.7, 45.7, 440, 300 }, + [18] = { 75.3, 45.7, 440, 300 }, + [19] = { 75.8, 45.6, 440, 300 }, + [20] = { 76.4, 45.6, 440, 300 }, + [21] = { 76.3, 45.5, 440, 300 }, + [22] = { 75.8, 45.3, 440, 300 }, + [23] = { 75.4, 45.3, 440, 300 }, + [24] = { 75.3, 45.2, 440, 300 }, + [25] = { 76.2, 45.2, 440, 300 }, + [26] = { 76, 45.1, 440, 300 }, + [27] = { 75.7, 45.1, 440, 300 }, + [28] = { 76.1, 45, 440, 300 }, + [29] = { 75.6, 44.9, 440, 300 }, + [30] = { 75.5, 44.8, 440, 300 }, + [31] = { 2, 41.3, 5121, 300 }, + [32] = { 3, 40.8, 5121, 300 }, + [33] = { 1.8, 40.8, 5121, 300 }, + [34] = { 1.2, 38.9, 5121, 300 }, + [35] = { 1.1, 38.9, 5121, 300 }, + [36] = { 0.7, 38.7, 5121, 300 }, + [37] = { 0.8, 38.5, 5121, 300 }, + [38] = { 6.3, 38.3, 5121, 300 }, + [39] = { 0.6, 38.3, 5121, 300 }, + [40] = { 6.4, 38.1, 5121, 300 }, + [41] = { 1.1, 38, 5121, 300 }, + [42] = { 6.5, 37.1, 5121, 300 }, + [43] = { 7.3, 36.8, 5121, 300 }, + [44] = { 7.5, 36.8, 5121, 300 }, + [45] = { 9.7, 36.5, 5121, 300 }, + [46] = { 6.1, 36.4, 5121, 300 }, + [47] = { 6, 36.2, 5121, 300 }, + [48] = { 7.2, 36.2, 5121, 300 }, + [49] = { 8.4, 36.1, 5121, 300 }, + [50] = { 9.6, 36.1, 5121, 300 }, + [51] = { 9.5, 35.9, 5121, 300 }, + [52] = { 8.3, 35.4, 5121, 300 }, + [53] = { 7.5, 35.3, 5121, 300 }, + [54] = { 7.4, 35.3, 5121, 300 }, + [55] = { 9.3, 35.2, 5121, 300 }, + [56] = { 8.9, 35, 5121, 300 }, + [57] = { 8.1, 35, 5121, 300 }, + [58] = { 9, 34.9, 5121, 300 }, + [59] = { 9, 34.8, 5121, 300 }, + [60] = { 7.9, 34.6, 5121, 300 }, + [61] = { 7.7, 34.4, 5121, 300 }, + }, + ["lvl"] = "44-45", + }, + [7872] = { + ["coords"] = { + [1] = { 28.8, 74.9, 15, 275 }, + [2] = { 47.7, 95.6, 17, 275 }, + [3] = { 48.7, 95.6, 17, 275 }, + [4] = { 48, 94.4, 17, 275 }, + [5] = { 50.4, 92.8, 17, 275 }, + [6] = { 48.3, 92.4, 17, 275 }, + [7] = { 48.1, 92.4, 17, 275 }, + [8] = { 46.8, 92.1, 17, 275 }, + [9] = { 47, 91.8, 17, 275 }, + [10] = { 47.9, 90.7, 17, 275 }, + [11] = { 48.1, 90.3, 17, 275 }, + [12] = { 46.2, 90.2, 17, 275 }, + [13] = { 48.6, 89.9, 17, 275 }, + [14] = { 47.3, 89.8, 17, 275 }, + [15] = { 48, 88.6, 17, 275 }, + [16] = { 45.9, 87.7, 17, 275 }, + [17] = { 46.7, 87.7, 17, 275 }, + [18] = { 40.3, 30, 400, 275 }, + [19] = { 42.6, 29.9, 400, 275 }, + [20] = { 41, 27.3, 400, 275 }, + [21] = { 38.2, 21.9, 400, 275 }, + [22] = { 38.7, 21.2, 400, 275 }, + }, + ["lvl"] = "33-34", + ["rnk"] = "1", + }, + [7873] = { + ["coords"] = { + [1] = { 27.4, 75.4, 15, 275 }, + [2] = { 27.5, 74.5, 15, 275 }, + [3] = { 26.9, 74.5, 15, 275 }, + [4] = { 48.9, 95.6, 17, 275 }, + [5] = { 48.5, 95.5, 17, 275 }, + [6] = { 47.8, 95.2, 17, 275 }, + [7] = { 48.1, 94.9, 17, 275 }, + [8] = { 48, 94.6, 17, 275 }, + [9] = { 48.4, 94.1, 17, 275 }, + [10] = { 48.1, 94, 17, 275 }, + [11] = { 48.6, 93.4, 17, 275 }, + [12] = { 49.7, 93, 17, 275 }, + [13] = { 48.1, 93, 17, 275 }, + [14] = { 47.6, 92.8, 17, 275 }, + [15] = { 46.9, 92.7, 17, 275 }, + [16] = { 49.8, 92.6, 17, 275 }, + [17] = { 49.4, 92.6, 17, 275 }, + [18] = { 46.9, 92.1, 17, 275 }, + [19] = { 48.2, 92.1, 17, 275 }, + [20] = { 46.9, 91.7, 17, 275 }, + [21] = { 48.4, 91.7, 17, 275 }, + [22] = { 48.5, 91.7, 17, 275 }, + [23] = { 46.7, 91.6, 17, 275 }, + [24] = { 46.6, 91.3, 17, 275 }, + [25] = { 48.3, 90.9, 17, 275 }, + [26] = { 48.4, 90.6, 17, 275 }, + [27] = { 48, 90.4, 17, 275 }, + [28] = { 46.2, 90.4, 17, 275 }, + [29] = { 48.3, 90.4, 17, 275 }, + [30] = { 48.2, 90.1, 17, 275 }, + [31] = { 46.7, 90.1, 17, 275 }, + [32] = { 47.1, 90.1, 17, 275 }, + [33] = { 45.7, 89.9, 17, 275 }, + [34] = { 47.1, 89.9, 17, 275 }, + [35] = { 48.5, 89.9, 17, 275 }, + [36] = { 47.3, 89.9, 17, 275 }, + [37] = { 48.7, 89.8, 17, 275 }, + [38] = { 46.1, 89.8, 17, 275 }, + [39] = { 46.4, 89.8, 17, 275 }, + [40] = { 48.3, 89.2, 17, 275 }, + [41] = { 47.4, 89.1, 17, 275 }, + [42] = { 47.5, 89.1, 17, 275 }, + [43] = { 48.1, 88.9, 17, 275 }, + [44] = { 47.5, 88.9, 17, 275 }, + [45] = { 47.7, 88.7, 17, 275 }, + [46] = { 47.2, 88.6, 17, 275 }, + [47] = { 47.9, 88.5, 17, 275 }, + [48] = { 47.3, 88.5, 17, 275 }, + [49] = { 47.1, 88.3, 17, 275 }, + [50] = { 46.7, 88.1, 17, 275 }, + [51] = { 45.8, 87.8, 17, 275 }, + [52] = { 46.4, 87.8, 17, 275 }, + [53] = { 46.3, 87.8, 17, 275 }, + [54] = { 46.7, 87.6, 17, 275 }, + [55] = { 46, 87.5, 17, 275 }, + [56] = { 43.1, 30, 400, 275 }, + [57] = { 42.3, 29.7, 400, 275 }, + [58] = { 40.6, 29, 400, 275 }, + [59] = { 41.4, 28.3, 400, 275 }, + [60] = { 41.1, 27.6, 400, 275 }, + [61] = { 42.1, 26.6, 400, 275 }, + [62] = { 41.2, 26.3, 400, 275 }, + [63] = { 40.1, 23.6, 400, 275 }, + [64] = { 38.5, 23.2, 400, 275 }, + [65] = { 38.5, 22, 400, 275 }, + [66] = { 38.6, 21.1, 400, 275 }, + [67] = { 38, 20.7, 400, 275 }, + [68] = { 37.8, 20.1, 400, 275 }, + }, + ["lvl"] = "33-34", + ["rnk"] = "1", + }, + [7874] = { + ["coords"] = { + [1] = { 48.6, 95.6, 17, 275 }, + [2] = { 47.6, 95.5, 17, 275 }, + [3] = { 48.6, 95.2, 17, 275 }, + [4] = { 48.5, 94.5, 17, 275 }, + [5] = { 48.1, 94.1, 17, 275 }, + [6] = { 48.4, 93, 17, 275 }, + [7] = { 47.6, 92.9, 17, 275 }, + [8] = { 47.1, 92.7, 17, 275 }, + [9] = { 47.8, 92.7, 17, 275 }, + [10] = { 48.3, 92.5, 17, 275 }, + [11] = { 46.5, 92.3, 17, 275 }, + [12] = { 48.1, 92.2, 17, 275 }, + [13] = { 48.3, 92.2, 17, 275 }, + [14] = { 47.1, 91.7, 17, 275 }, + [15] = { 48.7, 91.4, 17, 275 }, + [16] = { 46.2, 91, 17, 275 }, + [17] = { 46.5, 90.7, 17, 275 }, + [18] = { 48.2, 90.7, 17, 275 }, + [19] = { 47.8, 90.6, 17, 275 }, + [20] = { 45.9, 90.3, 17, 275 }, + [21] = { 46.2, 90.3, 17, 275 }, + [22] = { 48.3, 89.8, 17, 275 }, + [23] = { 48.6, 89.7, 17, 275 }, + [24] = { 46.1, 87.7, 17, 275 }, + [25] = { 45.8, 87.6, 17, 275 }, + [26] = { 42.4, 30, 400, 275 }, + [27] = { 40.1, 29.7, 400, 275 }, + [28] = { 42.6, 29, 400, 275 }, + [29] = { 42.2, 27.6, 400, 275 }, + [30] = { 41.3, 26.6, 400, 275 }, + [31] = { 40.1, 23.8, 400, 275 }, + [32] = { 39.1, 23.4, 400, 275 }, + [33] = { 37.7, 22.3, 400, 275 }, + [34] = { 38.9, 21.1, 400, 275 }, + [35] = { 37.1, 19.4, 400, 275 }, + [36] = { 36.2, 17.9, 400, 275 }, + }, + ["lvl"] = "33-34", + ["rnk"] = "1", + }, + [7876] = { + ["coords"] = { + [1] = { 51.6, 26.8, 440, 30 }, + }, + ["lvl"] = "45", + }, + [7881] = { + ["coords"] = { + [1] = { 67.1, 24, 440, 30 }, + }, + ["lvl"] = "30", + }, + [7883] = { + ["coords"] = { + [1] = { 73.4, 47.1, 440, 300 }, + [2] = { 3.2, 39.3, 5121, 300 }, + }, + ["lvl"] = "45", + }, + [7895] = { + ["coords"] = { + [1] = { 47.7, 90.7, 17, 54000 }, + }, + ["lvl"] = "36", + ["rnk"] = "2", + }, + [7896] = "_", + [7897] = { + ["coords"] = { + [1] = { 47.5, 76.5, 721, 18000 }, + }, + ["lvl"] = "20", + }, + [7906] = "_", + [7907] = { + ["coords"] = { + [1] = { 55.4, 92.2, 141, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [7916] = { + ["coords"] = { + [1] = { 55.5, 92, 141, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [7917] = { + ["coords"] = { + [1] = { 51.1, 48.4, 1519, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [7919] = "_", + [7935] = "_", + [7937] = { + ["coords"] = { + [1] = { 24.2, 29.7, 1, 300 }, + [2] = { 73.1, 11.9, 721, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [7938] = "_", + [7939] = { + ["coords"] = { + [1] = { 31.4, 46.7, 357, 300 }, + [2] = { 32.1, 46.3, 357, 300 }, + [3] = { 30.6, 45.9, 357, 300 }, + [4] = { 31.5, 45.9, 357, 300 }, + [5] = { 31.9, 44.8, 357, 300 }, + [6] = { 30.8, 44.8, 357, 300 }, + [7] = { 32.3, 44.5, 357, 300 }, + [8] = { 31, 44, 357, 300 }, + [9] = { 29.8, 43.8, 357, 300 }, + [10] = { 32.2, 43.7, 357, 300 }, + [11] = { 32.3, 43.5, 357, 300 }, + [12] = { 31.6, 43.4, 357, 300 }, + [13] = { 32.7, 43.2, 357, 300 }, + [14] = { 30, 42.9, 357, 300 }, + [15] = { 32.2, 42.9, 357, 300 }, + [16] = { 31.7, 42.6, 357, 300 }, + [17] = { 31.1, 42.6, 357, 300 }, + [18] = { 31.1, 40.8, 357, 300 }, + [19] = { 30.9, 40.8, 357, 300 }, + [20] = { 31.1, 40.1, 357, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [7944] = { + ["coords"] = { + [1] = { 24.4, 29.8, 1, 300 }, + [2] = { 75, 13, 721, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "57", + }, + [7950] = { + ["coords"] = { + [1] = { 24.1, 29.8, 1, 300 }, + [2] = { 71.9, 13.3, 721, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "57", + }, + [7952] = { + ["coords"] = { + [1] = { 55.2, 75.6, 14, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [7957] = { + ["coords"] = { + [1] = { 65.9, 45.6, 357, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "36", + }, + [7975] = { + ["coords"] = { + [1] = { 38.1, 81.8, 215, 250 }, + [2] = { 37.7, 81.5, 215, 250 }, + [3] = { 38.3, 81.3, 215, 250 }, + [4] = { 36.7, 80.9, 215, 250 }, + [5] = { 37.9, 80.7, 215, 250 }, + [6] = { 37.1, 80, 215, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "57", + }, + [7997] = { + ["coords"] = { + [1] = { 66.6, 47, 357, 30 }, + [2] = { 66.5, 47, 357, 30 }, + [3] = { 66.6, 46.9, 357, 30 }, + [4] = { 66.5, 46.9, 357, 30 }, + [5] = { 66.6, 46.8, 357, 30 }, + [6] = { 66.5, 46.8, 357, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "42-43", + }, + [7998] = { + ["coords"] = { + [1] = { 81.9, 65.1, 721, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "27", + ["rnk"] = "1", + }, + [8015] = { + ["coords"] = { + [1] = { 59.1, 60, 331, 300 }, + [2] = { 59.3, 59.1, 331, 300 }, + [3] = { 59.5, 59.1, 331, 300 }, + [4] = { 59.4, 58.9, 331, 300 }, + [5] = { 59, 58.9, 331, 300 }, + [6] = { 86.5, 47.5, 331, 300 }, + [7] = { 86.8, 47.5, 331, 300 }, + [8] = { 84.7, 45.3, 331, 300 }, + [9] = { 84.8, 45.3, 331, 300 }, + [10] = { 86, 44.4, 331, 300 }, + [11] = { 86.2, 44, 331, 300 }, + [12] = { 86.7, 43.2, 331, 300 }, + [13] = { 86.7, 43.1, 331, 300 }, + [14] = { 86.6, 43.1, 331, 300 }, + [15] = { 86.7, 43, 331, 300 }, + [16] = { 86.5, 42.9, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [8016] = { + ["coords"] = { + [1] = { 43.7, 91.8, 17, 300 }, + [2] = { 39.1, 30.3, 17, 275 }, + [3] = { 39.4, 30.1, 17, 275 }, + [4] = { 39.3, 29.9, 17, 275 }, + [5] = { 39.3, 29.7, 17, 275 }, + [6] = { 39.4, 29.5, 17, 275 }, + [7] = { 39.6, 29.5, 17, 275 }, + [8] = { 39.6, 29.1, 17, 275 }, + [9] = { 48.2, 6.2, 17, 275 }, + [10] = { 48.4, 5.6, 17, 275 }, + [11] = { 47.7, 5.5, 17, 275 }, + [12] = { 69, 89.5, 331, 275 }, + [13] = { 67.9, 89.3, 331, 275 }, + [14] = { 67.7, 89.1, 331, 275 }, + [15] = { 68.4, 89, 331, 275 }, + [16] = { 67.9, 88.7, 331, 275 }, + [17] = { 68.5, 88.7, 331, 275 }, + [18] = { 68.1, 88.6, 331, 275 }, + [19] = { 31.3, 21.2, 400, 300 }, + [20] = { 87.9, 96.7, 406, 275 }, + [21] = { 88.4, 96.4, 406, 275 }, + [22] = { 88.2, 96, 406, 275 }, + [23] = { 88.3, 95.7, 406, 275 }, + [24] = { 88.4, 95.4, 406, 275 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [8017] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "3", + }, + [8018] = { + ["coords"] = { + [1] = { 11.1, 46.2, 47, 120 }, + [2] = { 95.9, 5.5, 267, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [8019] = { + ["coords"] = { + [1] = { 30.2, 43.2, 357, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [8020] = { + ["coords"] = { + [1] = { 75.4, 44.4, 357, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [8055] = { + ["coords"] = { + [1] = { 36, 44.7, 38, 300 }, + [2] = { 17, 67.1, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [8095] = { + ["coords"] = { + [1] = { 61.6, 69.1, 1176, 18000 }, + [2] = { 62.4, 65, 1176, 18000 }, + [3] = { 55.3, 62.7, 1176, 18000 }, + [4] = { 63, 57.7, 1176, 18000 }, + [5] = { 52.7, 55.7, 1176, 18000 }, + [6] = { 63.8, 54.7, 1176, 18000 }, + [7] = { 38.9, 50.5, 1176, 18000 }, + [8] = { 63.2, 50.2, 1176, 18000 }, + [9] = { 63, 47.3, 1176, 18000 }, + [10] = { 29.7, 43.2, 1176, 18000 }, + [11] = { 60.9, 42.1, 1176, 18000 }, + [12] = { 29.6, 31.6, 1176, 18000 }, + [13] = { 27.6, 31.2, 1176, 18000 }, + [14] = { 62.7, 30.7, 1176, 18000 }, + [15] = { 64.1, 27.1, 1176, 18000 }, + [16] = { 64.8, 22.6, 1176, 18000 }, + [17] = { 55.7, 21.2, 1176, 18000 }, + [18] = { 36.7, 20, 1176, 18000 }, + [19] = { 59.8, 18.4, 1176, 18000 }, + }, + ["lvl"] = "45-47", + ["rnk"] = "1", + }, + [8120] = { + ["coords"] = { + [1] = { 40.4, 33.3, 1176, 18000 }, + [2] = { 42.1, 30.7, 1176, 18000 }, + }, + ["lvl"] = "47", + ["rnk"] = "1", + }, + [8125] = { + ["coords"] = { + [1] = { 52.6, 28.1, 440, 30 }, + }, + ["lvl"] = "43", + }, + [8127] = { + ["coords"] = { + [1] = { 69, 25.6, 1176, 604800 }, + }, + ["lvl"] = "48", + ["rnk"] = "1", + }, + [8130] = { + ["coords"] = { + [1] = { 69.2, 26, 1176, 18000 }, + [2] = { 68.4, 25.4, 1176, 18000 }, + [3] = { 68.7, 25.2, 1176, 18000 }, + }, + ["lvl"] = "30-35", + ["rnk"] = "1", + }, + [8138] = { + ["coords"] = { + [1] = { 63.6, 29.1, 1176, 0 }, + }, + ["lvl"] = "39", + }, + [8139] = { + ["coords"] = { + [1] = { 67, 22, 440, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "40", + }, + [8147] = { + ["coords"] = { + [1] = { 73.6, 46.7, 357, 300 }, + [2] = { 73.4, 46.6, 357, 300 }, + [3] = { 74, 45.4, 357, 300 }, + [4] = { 73.8, 45.2, 357, 300 }, + [5] = { 74.5, 44.7, 357, 300 }, + [6] = { 75.3, 44, 357, 300 }, + [7] = { 76, 43.8, 357, 300 }, + [8] = { 74.7, 43.8, 357, 300 }, + [9] = { 75.1, 43.4, 357, 300 }, + [10] = { 76.6, 43.3, 357, 300 }, + [11] = { 76.5, 43.1, 357, 300 }, + [12] = { 76.7, 43.1, 357, 300 }, + [13] = { 74.7, 43.1, 357, 300 }, + [14] = { 76, 42.9, 357, 300 }, + [15] = { 78.1, 42.9, 357, 300 }, + [16] = { 74.8, 42.7, 357, 300 }, + [17] = { 78, 42.6, 357, 300 }, + [18] = { 76.2, 42.5, 357, 300 }, + [19] = { 75.8, 41.7, 357, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [8148] = "_", + [8150] = { + ["coords"] = { + [1] = { 66.2, 6.6, 405, 300 }, + [2] = { 44.7, 79.5, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [8151] = { + ["coords"] = { + [1] = { 67.4, 16.2, 405, 300 }, + [2] = { 67.8, 15.7, 405, 300 }, + [3] = { 66.8, 12.8, 405, 300 }, + [4] = { 67.1, 12.6, 405, 300 }, + [5] = { 64.4, 11.1, 405, 300 }, + [6] = { 67.9, 10.3, 405, 300 }, + [7] = { 64.3, 9.7, 405, 300 }, + [8] = { 67.5, 9.4, 405, 300 }, + [9] = { 65.2, 9.4, 405, 300 }, + [10] = { 64.6, 8.6, 405, 300 }, + [11] = { 65.1, 6.6, 405, 300 }, + [12] = { 66, 6, 405, 300 }, + [13] = { 45.6, 86.7, 406, 300 }, + [14] = { 45.9, 86.3, 406, 300 }, + [15] = { 45.2, 84.1, 406, 300 }, + [16] = { 45.4, 84, 406, 300 }, + [17] = { 43.4, 82.8, 406, 300 }, + [18] = { 46, 82.2, 406, 300 }, + [19] = { 43.3, 81.8, 406, 300 }, + [20] = { 45.7, 81.6, 406, 300 }, + [21] = { 44, 81.6, 406, 300 }, + [22] = { 43.5, 81, 406, 300 }, + [23] = { 43.9, 79.4, 406, 300 }, + [24] = { 44.6, 79, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [8155] = { + ["coords"] = { + [1] = { 3.8, 47.4, 3, 300 }, + [2] = { 6.3, 46.9, 3, 300 }, + [3] = { 4, 46.8, 3, 300 }, + [4] = { 6.3, 46.2, 3, 300 }, + [5] = { 5.7, 43.6, 3, 300 }, + [6] = { 83, 38.7, 51, 300 }, + [7] = { 83.2, 38.1, 51, 300 }, + [8] = { 85.1, 34.5, 51, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [8196] = { + ["coords"] = { + [1] = { 63.3, 52.6, 440, 600 }, + [2] = { 66.1, 30.6, 1941, 600 }, + }, + ["lvl"] = "50", + ["rnk"] = "1", + }, + [8197] = { + ["coords"] = { + [1] = { 64.1, 48.7, 440, 600 }, + [2] = { 70.3, 10.4, 1941, 600 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [8198] = { + ["coords"] = { + [1] = { 62.6, 49.4, 440, 600 }, + [2] = { 62.7, 13.8, 1941, 600 }, + }, + ["lvl"] = "52", + ["rnk"] = "1", + }, + [8201] = { + ["coords"] = { + [1] = { 38.7, 55.6, 440, 54000 }, + }, + ["lvl"] = "50", + ["rnk"] = "4", + }, + [8202] = { + ["coords"] = { + [1] = { 41.3, 54.7, 440, 180000 }, + }, + ["lvl"] = "48", + ["rnk"] = "4", + }, + [8203] = { + ["coords"] = { + [1] = { 73.2, 48.7, 440, 27000 }, + [2] = { 2.8, 42.6, 5121, 27000 }, + }, + ["lvl"] = "47", + ["rnk"] = "4", + }, + [8204] = { + ["coords"] = { + [1] = { 34.1, 44.7, 440, 27000 }, + }, + ["lvl"] = "50", + ["rnk"] = "4", + }, + [8205] = { + ["coords"] = { + [1] = { 53.3, 73.8, 440, 108000 }, + }, + ["lvl"] = "50", + ["rnk"] = "4", + }, + [8206] = "_", + [8207] = { + ["coords"] = { + [1] = { 54.2, 39.9, 440, 108000 }, + }, + ["lvl"] = "46", + ["rnk"] = "4", + }, + [8208] = { + ["coords"] = { + [1] = { 47.4, 25, 440, 180000 }, + }, + ["lvl"] = "44", + ["rnk"] = "4", + }, + [8210] = { + ["coords"] = { + [1] = { 37.1, 45.3, 47, 108000 }, + }, + ["lvl"] = "44", + ["rnk"] = "4", + }, + [8211] = { + ["coords"] = { + [1] = { 11.9, 53.7, 47, 54000 }, + [2] = { 96.9, 14.6, 267, 54000 }, + }, + ["lvl"] = "42", + ["rnk"] = "4", + }, + [8212] = { + ["coords"] = { + [1] = { 58.9, 43.1, 47, 180000 }, + }, + ["lvl"] = "49", + ["rnk"] = "4", + }, + [8213] = { + ["coords"] = { + [1] = { 81.5, 49.2, 47, 54000 }, + }, + ["lvl"] = "51", + ["rnk"] = "4", + }, + [8214] = { + ["coords"] = { + [1] = { 30.3, 48.8, 47, 27000 }, + }, + ["fac"] = "A", + ["lvl"] = "49", + ["rnk"] = "4", + }, + [8215] = { + ["coords"] = { + [1] = { 70.2, 55.4, 47, 180000 }, + }, + ["lvl"] = "50", + ["rnk"] = "2", + }, + [8216] = { + ["coords"] = { + [1] = { 50.5, 64.1, 47, 27000 }, + }, + ["lvl"] = "48", + ["rnk"] = "4", + }, + [8217] = { + ["coords"] = { + [1] = { 63.9, 77.6, 47, 108000 }, + }, + ["lvl"] = "52", + ["rnk"] = "2", + }, + [8218] = { + ["coords"] = { + [1] = { 32.1, 72.7, 47, 54000 }, + }, + ["lvl"] = "45", + ["rnk"] = "4", + }, + [8219] = { + ["coords"] = { + [1] = { 32.4, 56.9, 47, 27000 }, + }, + ["lvl"] = "43", + ["rnk"] = "4", + }, + [8256] = { + ["coords"] = { + [1] = { 71.8, 16.1, 1537, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [8257] = { + ["coords"] = { + [1] = { 40.7, 49.8, 1477, 18000 }, + [2] = { 59.5, 30.7, 1477, 18000 }, + }, + ["lvl"] = "40", + }, + [8276] = { + ["coords"] = { + [1] = { 11.2, 57.1, 47, 350 }, + [2] = { 36.9, 48, 47, 350 }, + [3] = { 96, 18.7, 267, 350 }, + }, + ["fac"] = "AH", + ["lvl"] = "40-42", + }, + [8277] = { + ["coords"] = { + [1] = { 61.9, 73.2, 51, 108000 }, + }, + ["lvl"] = "48", + ["rnk"] = "4", + }, + [8278] = { + ["coords"] = { + [1] = { 29.5, 62.4, 51, 54000 }, + [2] = { 100, 32.5, 5581, 54000 }, + }, + ["lvl"] = "50", + ["rnk"] = "4", + }, + [8279] = { + ["coords"] = { + [1] = { 45.9, 67.8, 51, 54000 }, + }, + ["lvl"] = "46", + ["rnk"] = "4", + }, + [8280] = { + ["coords"] = { + [1] = { 58.6, 56.6, 51, 180000 }, + }, + ["lvl"] = "47", + ["rnk"] = "4", + }, + [8281] = { + ["coords"] = { + [1] = { 51.2, 46.8, 51, 108000 }, + }, + ["lvl"] = "49", + ["rnk"] = "4", + }, + [8282] = { + ["coords"] = { + [1] = { 14.5, 37.2, 51, 27000 }, + [2] = { 89.6, 15.1, 5581, 27000 }, + }, + ["lvl"] = "51", + ["rnk"] = "2", + }, + [8283] = { + ["coords"] = { + [1] = { 42.4, 23.1, 51, 27000 }, + }, + ["lvl"] = "50", + ["rnk"] = "4", + }, + [8296] = { + ["coords"] = { + [1] = { 45.2, 16, 4, 27000 }, + }, + ["lvl"] = "48", + ["rnk"] = "4", + }, + [8297] = { + ["coords"] = { + [1] = { 49.7, 40.5, 4, 108000 }, + }, + ["lvl"] = "56", + ["rnk"] = "4", + }, + [8298] = { + ["coords"] = { + [1] = { 51.3, 53.1, 4, 27000 }, + }, + ["lvl"] = "54", + ["rnk"] = "4", + }, + [8299] = { + ["coords"] = { + [1] = { 61.1, 35.4, 4, 54000 }, + }, + ["lvl"] = "52", + ["rnk"] = "4", + }, + [8300] = { + ["coords"] = { + [1] = { 61.1, 36.6, 4, 54000 }, + }, + ["lvl"] = "51", + ["rnk"] = "4", + }, + [8301] = { + ["coords"] = { + [1] = { 48.3, 38.7, 4, 54000 }, + }, + ["lvl"] = "53", + ["rnk"] = "4", + }, + [8302] = { + ["coords"] = { + [1] = { 44.1, 25, 4, 108000 }, + }, + ["lvl"] = "49", + ["rnk"] = "4", + }, + [8303] = { + ["coords"] = { + [1] = { 56.1, 31.1, 4, 180000 }, + }, + ["lvl"] = "50", + ["rnk"] = "4", + }, + [8304] = { + ["coords"] = { + [1] = { 41.3, 38.7, 4, 27000 }, + }, + ["lvl"] = "57", + ["rnk"] = "4", + }, + [8305] = { + ["coords"] = { + [1] = { 50.2, 37.7, 11, 300 }, + [2] = { 7.3, 7.9, 5602, 300 }, + }, + ["lvl"] = "25", + }, + [8308] = { + ["coords"] = { + [1] = { 18, 59.8, 331, 300 }, + [2] = { 54.6, 26.6, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "27", + }, + [8311] = { + ["coords"] = { + [1] = { 48.4, 67.5, 1477, 18000 }, + [2] = { 48.6, 67.1, 1477, 18000 }, + [3] = { 49.1, 66.3, 1477, 18000 }, + [4] = { 48.2, 65.5, 1477, 18000 }, + [5] = { 44.8, 64.8, 1477, 18000 }, + [6] = { 42, 62.8, 1477, 18000 }, + [7] = { 47.1, 60, 1477, 18000 }, + [8] = { 60.8, 58.8, 1477, 18000 }, + [9] = { 61.5, 58.5, 1477, 18000 }, + [10] = { 50.7, 58.2, 1477, 18000 }, + [11] = { 61, 57.7, 1477, 18000 }, + [12] = { 59.8, 57.2, 1477, 18000 }, + [13] = { 61.4, 57.1, 1477, 18000 }, + [14] = { 49.5, 56.7, 1477, 18000 }, + [15] = { 46.4, 55.8, 1477, 18000 }, + [16] = { 53.8, 55.6, 1477, 18000 }, + [17] = { 37.7, 55.2, 1477, 18000 }, + [18] = { 47.2, 55.1, 1477, 18000 }, + [19] = { 45.6, 54.8, 1477, 18000 }, + [20] = { 54.8, 54.7, 1477, 18000 }, + [21] = { 54.1, 54.4, 1477, 18000 }, + [22] = { 37.2, 54.3, 1477, 18000 }, + [23] = { 37.8, 54, 1477, 18000 }, + [24] = { 57, 52.8, 1477, 18000 }, + [25] = { 43.5, 52.6, 1477, 18000 }, + [26] = { 42.2, 50.8, 1477, 18000 }, + [27] = { 57.5, 50.7, 1477, 18000 }, + [28] = { 56.8, 49.6, 1477, 18000 }, + [29] = { 56.9, 48.7, 1477, 18000 }, + [30] = { 57.8, 48.1, 1477, 18000 }, + [31] = { 57.3, 47.2, 1477, 18000 }, + [32] = { 42, 46.7, 1477, 18000 }, + [33] = { 42.8, 45.6, 1477, 18000 }, + [34] = { 41.2, 45.1, 1477, 18000 }, + [35] = { 42.8, 44.5, 1477, 18000 }, + [36] = { 43.5, 40.8, 1477, 18000 }, + [37] = { 42.9, 39.7, 1477, 18000 }, + [38] = { 63.5, 38.6, 1477, 18000 }, + [39] = { 62.7, 38.5, 1477, 18000 }, + [40] = { 62.5, 38.1, 1477, 18000 }, + [41] = { 63.3, 37, 1477, 18000 }, + [42] = { 62.3, 36.7, 1477, 18000 }, + [43] = { 46.1, 36.6, 1477, 18000 }, + [44] = { 46.8, 36.2, 1477, 18000 }, + [45] = { 46.3, 35.2, 1477, 18000 }, + [46] = { 49.4, 34.5, 1477, 18000 }, + [47] = { 50.5, 34.1, 1477, 18000 }, + [48] = { 38.3, 34.1, 1477, 18000 }, + [49] = { 50.2, 33.4, 1477, 18000 }, + [50] = { 39.2, 32.9, 1477, 18000 }, + [51] = { 39.5, 32.6, 1477, 18000 }, + [52] = { 50.8, 32.3, 1477, 18000 }, + [53] = { 40.3, 32.2, 1477, 18000 }, + [54] = { 50, 31.9, 1477, 18000 }, + [55] = { 59.9, 31, 1477, 18000 }, + [56] = { 50.2, 30.8, 1477, 18000 }, + [57] = { 51.6, 26.3, 1477, 18000 }, + [58] = { 51.4, 26, 1477, 18000 }, + [59] = { 51.1, 25.4, 1477, 18000 }, + [60] = { 51.9, 25.1, 1477, 18000 }, + [61] = { 47, 10.1, 1477, 18000 }, + [62] = { 48, 10, 1477, 18000 }, + [63] = { 47.6, 8.7, 1477, 18000 }, + }, + ["lvl"] = "45-46", + }, + [8316] = "_", + [8318] = { + ["coords"] = { + [1] = { 56.7, 75.5, 1477, 18000 }, + [2] = { 56.2, 75.2, 1477, 18000 }, + [3] = { 56.1, 74.9, 1477, 18000 }, + [4] = { 57.1, 74.8, 1477, 18000 }, + [5] = { 35.8, 69.9, 1477, 18000 }, + [6] = { 37.8, 69.8, 1477, 18000 }, + [7] = { 36.4, 69, 1477, 18000 }, + [8] = { 36.8, 68.5, 1477, 18000 }, + [9] = { 44.1, 65.7, 1477, 18000 }, + [10] = { 54.8, 65.3, 1477, 18000 }, + [11] = { 44.5, 65.2, 1477, 18000 }, + [12] = { 55.9, 65.2, 1477, 18000 }, + [13] = { 44.2, 64.1, 1477, 18000 }, + [14] = { 60.1, 59.3, 1477, 18000 }, + [15] = { 61.1, 59.3, 1477, 18000 }, + [16] = { 39.6, 58.6, 1477, 18000 }, + [17] = { 38.3, 57.5, 1477, 18000 }, + [18] = { 62.8, 49.9, 1477, 18000 }, + [19] = { 36.5, 49.2, 1477, 18000 }, + [20] = { 64.3, 48.8, 1477, 18000 }, + [21] = { 63.7, 48.8, 1477, 18000 }, + [22] = { 36.6, 48.2, 1477, 18000 }, + [23] = { 37, 40.9, 1477, 18000 }, + [24] = { 62.4, 39.6, 1477, 18000 }, + [25] = { 36.4, 39.5, 1477, 18000 }, + [26] = { 63.2, 37.9, 1477, 18000 }, + [27] = { 41.2, 30, 1477, 18000 }, + [28] = { 40.9, 28.7, 1477, 18000 }, + [29] = { 56.5, 28, 1477, 18000 }, + [30] = { 43.3, 27.5, 1477, 18000 }, + [31] = { 55.7, 27.3, 1477, 18000 }, + [32] = { 57.5, 27, 1477, 18000 }, + [33] = { 43.3, 26.5, 1477, 18000 }, + [34] = { 61.8, 26, 1477, 18000 }, + [35] = { 52.5, 25.7, 1477, 18000 }, + [36] = { 52.5, 24.3, 1477, 18000 }, + [37] = { 61.9, 24.3, 1477, 18000 }, + [38] = { 64.2, 22.4, 1477, 18000 }, + [39] = { 61.8, 21.9, 1477, 18000 }, + [40] = { 43, 18, 1477, 18000 }, + [41] = { 42.3, 16.1, 1477, 18000 }, + }, + ["lvl"] = "46-47", + }, + [8319] = { + ["coords"] = { + [1] = { 49.7, 75.7, 1477, 18000 }, + [2] = { 51.2, 74.3, 1477, 18000 }, + [3] = { 51.6, 73.9, 1477, 18000 }, + [4] = { 49.7, 72, 1477, 18000 }, + [5] = { 74.5, 66.2, 1477, 18000 }, + [6] = { 72.1, 65.1, 1477, 18000 }, + [7] = { 74.5, 65, 1477, 18000 }, + [8] = { 73.4, 61.8, 1477, 18000 }, + [9] = { 62.4, 56.5, 1477, 18000 }, + [10] = { 64.5, 56.3, 1477, 18000 }, + [11] = { 63, 55.5, 1477, 18000 }, + [12] = { 57.2, 54.4, 1477, 18000 }, + [13] = { 57.5, 52.8, 1477, 18000 }, + [14] = { 57, 52.5, 1477, 18000 }, + [15] = { 57.4, 51.5, 1477, 18000 }, + [16] = { 58.9, 51.4, 1477, 18000 }, + [17] = { 45.9, 48.8, 1477, 18000 }, + [18] = { 45, 48.7, 1477, 18000 }, + [19] = { 44.3, 47, 1477, 18000 }, + [20] = { 45.9, 46.8, 1477, 18000 }, + [21] = { 53, 45.1, 1477, 18000 }, + [22] = { 52.6, 43.9, 1477, 18000 }, + [23] = { 54.4, 43.6, 1477, 18000 }, + [24] = { 53.6, 42.5, 1477, 18000 }, + [25] = { 60.6, 39.2, 1477, 18000 }, + [26] = { 45.2, 37.5, 1477, 18000 }, + [27] = { 60, 36.8, 1477, 18000 }, + [28] = { 54.7, 36.8, 1477, 18000 }, + [29] = { 46.2, 36.4, 1477, 18000 }, + [30] = { 53.4, 35.7, 1477, 18000 }, + [31] = { 58.9, 35.6, 1477, 18000 }, + [32] = { 60.5, 34.4, 1477, 18000 }, + [33] = { 51.1, 33.2, 1477, 18000 }, + [34] = { 49.5, 32.3, 1477, 18000 }, + [35] = { 50.6, 30.9, 1477, 18000 }, + [36] = { 49.5, 29.4, 1477, 18000 }, + [37] = { 50.6, 28.2, 1477, 18000 }, + [38] = { 52.7, 7.1, 1477, 18000 }, + }, + ["lvl"] = "49-50", + }, + [8320] = { + ["coords"] = { + [1] = { 21.4, 37.3, 1, 1206 }, + [2] = { 48.6, 77.6, 721, 1206 }, + }, + ["lvl"] = "28", + }, + [8321] = "_", + [8322] = "_", + [8323] = "_", + [8336] = { + ["coords"] = { + [1] = { 24.8, 64.8, 1477, 18000 }, + [2] = { 34.5, 60.5, 1477, 18000 }, + [3] = { 24.4, 50.4, 1477, 18000 }, + [4] = { 21, 46.6, 1477, 18000 }, + [5] = { 33.6, 31.1, 1477, 18000 }, + [6] = { 24.8, 27.1, 1477, 18000 }, + [7] = { 27.6, 26.7, 1477, 18000 }, + }, + ["lvl"] = "49-50", + ["rnk"] = "1", + }, + [8359] = { + ["coords"] = { + [1] = { 39.1, 28.2, 215, 30 }, + [2] = { 45.8, 55.8, 1638, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [8376] = { + ["coords"] = { + [1] = { 82.6, 55.1, 400, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [8377] = "_", + [8379] = { + ["coords"] = { + [1] = { 29.7, 40.5, 16, 333 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [8383] = { + ["coords"] = { + [1] = { 80.9, 61.4, 1519, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [8384] = { + ["coords"] = { + [1] = { 49, 67, 1477, 18000 }, + [2] = { 48, 66.5, 1477, 18000 }, + [3] = { 50.4, 58.8, 1477, 18000 }, + [4] = { 61.1, 58.8, 1477, 18000 }, + [5] = { 50.7, 57.4, 1477, 18000 }, + [6] = { 54.2, 56.3, 1477, 18000 }, + [7] = { 45.9, 56.2, 1477, 18000 }, + [8] = { 36.8, 55.2, 1477, 18000 }, + [9] = { 41.9, 46, 1477, 18000 }, + [10] = { 58, 45.6, 1477, 18000 }, + [11] = { 43.6, 39.9, 1477, 18000 }, + [12] = { 63.1, 37.8, 1477, 18000 }, + [13] = { 45.6, 35.8, 1477, 18000 }, + [14] = { 54, 35.6, 1477, 18000 }, + [15] = { 39.5, 33.9, 1477, 18000 }, + [16] = { 49.3, 33.6, 1477, 18000 }, + [17] = { 38.6, 33.4, 1477, 18000 }, + [18] = { 49.4, 32.5, 1477, 18000 }, + [19] = { 49.6, 31.1, 1477, 18000 }, + [20] = { 52.6, 25.4, 1477, 18000 }, + [21] = { 50.7, 25.4, 1477, 18000 }, + }, + ["lvl"] = "47-49", + ["rnk"] = "1", + }, + [8390] = { + ["coords"] = { + [1] = { 48.7, 71.4, 1497, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [8392] = { + ["coords"] = { + [1] = { 77.8, 91.5, 16, 0 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [8403] = { + ["coords"] = { + [1] = { 67.6, 44.2, 1497, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [8406] = "_", + [8407] = "_", + [8416] = { + ["coords"] = { + [1] = { 28.5, 67.6, 1, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "2", + }, + [8417] = { + ["coords"] = { + [1] = { 41.1, 25.6, 51, 30 }, + }, + ["lvl"] = "46-47", + }, + [8418] = { + ["coords"] = { + [1] = { 48.2, 32.8, 17, 413 }, + [2] = { 62.6, 29.8, 718, 413 }, + }, + ["fac"] = "AH", + ["lvl"] = "25", + }, + [8419] = { + ["coords"] = { + [1] = { 29.1, 26.7, 51, 500 }, + [2] = { 28.7, 26.3, 51, 500 }, + [3] = { 29.7, 25.9, 51, 500 }, + [4] = { 28.7, 25.4, 51, 500 }, + [5] = { 99.7, 7.9, 5581, 500 }, + [6] = { 99.4, 7.6, 5581, 500 }, + [7] = { 99.4, 7, 5581, 500 }, + }, + ["lvl"] = "49-51", + ["rnk"] = "1", + }, + [8436] = { + ["coords"] = { + [1] = { 29.6, 26.3, 51, 500 }, + [2] = { 100, 7.6, 5581, 500 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [8440] = { + ["coords"] = { + [1] = { 24.5, 45.7, 1477, 0 }, + }, + ["fac"] = "AH", + ["lvl"] = "49-50", + ["rnk"] = "1", + }, + [8450] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [8479] = { + ["coords"] = { + [1] = { 39.1, 39, 51, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [8496] = { + ["coords"] = { + [1] = { 62.4, 38.7, 17, 30 }, + }, + ["lvl"] = "17", + }, + [8498] = "_", + [8499] = "_", + [8500] = "_", + [8501] = "_", + [8502] = "_", + [8503] = { + ["coords"] = { + [1] = { 25.8, 42.6, 1, 9000 }, + }, + ["lvl"] = "11", + ["rnk"] = "4", + }, + [8504] = { + ["coords"] = { + [1] = { 42.8, 63, 51, 500 }, + [2] = { 42.7, 62.9, 51, 500 }, + [3] = { 42.8, 62.7, 51, 500 }, + [4] = { 35.3, 62, 51, 500 }, + [5] = { 37.1, 60.8, 51, 500 }, + [6] = { 36.8, 60.2, 51, 500 }, + [7] = { 52.6, 58.1, 51, 500 }, + [8] = { 49.2, 55.9, 51, 500 }, + [9] = { 50.4, 55.5, 51, 500 }, + [10] = { 34.5, 54.2, 51, 500 }, + [11] = { 33.2, 53.6, 51, 500 }, + [12] = { 33.7, 52.2, 51, 500 }, + }, + ["lvl"] = "48", + ["rnk"] = "1", + }, + [8506] = { + ["coords"] = { + [1] = { 7.9, 67.6, 5144, 318 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [8507] = { + ["coords"] = { + [1] = { 31, 4.8, 1537, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [8516] = { + ["coords"] = { + [1] = { 61.3, 12.3, 722, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "36", + }, + [8517] = { + ["coords"] = { + [1] = { 70.9, 94.6, 1537, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [8518] = { + ["coords"] = { + [1] = { 35.8, 26.8, 406, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "29", + ["rnk"] = "1", + }, + [8519] = { + ["coords"] = { + [1] = { 60.9, 83.4, 139, 345 }, + [2] = { 62.9, 83.2, 139, 345 }, + [3] = { 63.3, 81.8, 139, 345 }, + [4] = { 60.2, 81.5, 139, 345 }, + [5] = { 62.9, 80.6, 139, 345 }, + [6] = { 63.6, 79.3, 139, 345 }, + [7] = { 59.5, 78.9, 139, 345 }, + [8] = { 62.5, 78.1, 139, 345 }, + [9] = { 61.1, 77.5, 139, 345 }, + [10] = { 15.6, 68.3, 4012, 345 }, + [11] = { 18, 68, 4012, 345 }, + [12] = { 18.6, 66.4, 4012, 345 }, + [13] = { 14.7, 65.9, 4012, 345 }, + [14] = { 18, 64.9, 4012, 345 }, + [15] = { 18.9, 63.2, 4012, 345 }, + [16] = { 13.9, 62.8, 4012, 345 }, + [17] = { 17.5, 61.8, 4012, 345 }, + [18] = { 15.9, 61.1, 4012, 345 }, + }, + ["lvl"] = "54-55", + }, + [8520] = { + ["coords"] = { + [1] = { 61.9, 82.1, 139, 345 }, + [2] = { 65.2, 82.1, 139, 345 }, + [3] = { 66.1, 81.4, 139, 345 }, + [4] = { 59.7, 80.9, 139, 345 }, + [5] = { 64.6, 80.8, 139, 345 }, + [6] = { 60.9, 80.4, 139, 345 }, + [7] = { 58.8, 79.8, 139, 345 }, + [8] = { 65.4, 79.6, 139, 345 }, + [9] = { 61.7, 79.6, 139, 345 }, + [10] = { 60.2, 79.3, 139, 345 }, + [11] = { 60.1, 76.8, 139, 345 }, + [12] = { 16.8, 66.8, 4012, 345 }, + [13] = { 20.8, 66.7, 4012, 345 }, + [14] = { 22, 65.9, 4012, 345 }, + [15] = { 14.1, 65.2, 4012, 345 }, + [16] = { 20.1, 65.1, 4012, 345 }, + [17] = { 15.6, 64.6, 4012, 345 }, + [18] = { 13, 63.9, 4012, 345 }, + [19] = { 21.1, 63.7, 4012, 345 }, + [20] = { 16.6, 63.6, 4012, 345 }, + [21] = { 14.8, 63.2, 4012, 345 }, + [22] = { 14.6, 60.2, 4012, 345 }, + }, + ["lvl"] = "55-56", + }, + [8521] = { + ["coords"] = { + [1] = { 50.8, 51.8, 139, 345 }, + [2] = { 50, 51, 139, 345 }, + [3] = { 52, 50.7, 139, 345 }, + [4] = { 51.9, 50.1, 139, 345 }, + [5] = { 50.7, 49.7, 139, 345 }, + [6] = { 71.5, 37.5, 139, 280 }, + [7] = { 71.2, 35.7, 139, 345 }, + [8] = { 71.6, 34.1, 139, 345 }, + [9] = { 72.1, 33, 139, 280 }, + [10] = { 70.6, 32.4, 139, 345 }, + [11] = { 3.3, 29.6, 4012, 345 }, + [12] = { 2.2, 28.6, 4012, 345 }, + [13] = { 4.7, 28.3, 4012, 345 }, + [14] = { 4.5, 27.5, 4012, 345 }, + [15] = { 3.1, 27, 4012, 345 }, + [16] = { 28.6, 12.2, 4012, 280 }, + [17] = { 28.2, 9.9, 4012, 345 }, + [18] = { 28.7, 8, 4012, 345 }, + [19] = { 29.3, 6.6, 4012, 280 }, + [20] = { 27.5, 5.9, 4012, 345 }, + }, + ["lvl"] = "56-57", + }, + [8522] = { + ["coords"] = { + [1] = { 50.8, 51.9, 139, 345 }, + [2] = { 50.5, 49.7, 139, 345 }, + [3] = { 51.8, 48.1, 139, 345 }, + [4] = { 50.7, 47.3, 139, 345 }, + [5] = { 72.8, 35.2, 139, 345 }, + [6] = { 3.2, 29.7, 4012, 345 }, + [7] = { 2.9, 27.1, 4012, 345 }, + [8] = { 4.4, 25, 4012, 345 }, + [9] = { 3, 24, 4012, 345 }, + [10] = { 30.1, 9.3, 4012, 345 }, + }, + ["lvl"] = "57-58", + }, + [8523] = { + ["coords"] = { + [1] = { 42.5, 38.5, 139, 345 }, + [2] = { 38.5, 37.9, 139, 345 }, + [3] = { 43.1, 36.8, 139, 345 }, + [4] = { 17.6, 35.7, 139, 345 }, + [5] = { 42.4, 35.6, 139, 345 }, + [6] = { 35.3, 35.4, 139, 345 }, + [7] = { 33.3, 35.4, 139, 345 }, + [8] = { 29.2, 34.6, 139, 345 }, + [9] = { 27.7, 34.6, 139, 345 }, + [10] = { 34.5, 34.5, 139, 345 }, + [11] = { 18.2, 34.4, 139, 345 }, + [12] = { 37.5, 34.2, 139, 345 }, + [13] = { 17.7, 32.2, 139, 345 }, + [14] = { 14.7, 32.2, 139, 345 }, + [15] = { 17.5, 31.8, 139, 345 }, + [16] = { 20.7, 31.5, 139, 345 }, + [17] = { 16.6, 30.8, 139, 345 }, + [18] = { 26.5, 30.7, 139, 345 }, + [19] = { 25.9, 29.7, 139, 345 }, + [20] = { 18, 29.1, 139, 345 }, + [21] = { 44.7, 27, 139, 345 }, + [22] = { 45.5, 24.9, 139, 345 }, + [23] = { 23.1, 20.1, 139, 345 }, + [24] = { 75, 99.3, 5225, 345 }, + [25] = { 73.1, 99.2, 5225, 345 }, + [26] = { 81.6, 99.1, 5225, 345 }, + [27] = { 61.2, 99, 5225, 345 }, + [28] = { 85.5, 98.7, 5225, 345 }, + [29] = { 60.5, 96.3, 5225, 345 }, + [30] = { 56.8, 96.2, 5225, 345 }, + [31] = { 60.3, 95.7, 5225, 345 }, + [32] = { 64.3, 95.4, 5225, 345 }, + [33] = { 59.2, 94.5, 5225, 345 }, + [34] = { 71.6, 94.4, 5225, 345 }, + [35] = { 70.8, 93, 5225, 345 }, + [36] = { 60.9, 92.3, 5225, 345 }, + [37] = { 94.4, 89.7, 5225, 345 }, + [38] = { 95.5, 87.1, 5225, 345 }, + [39] = { 67.3, 81.1, 5225, 345 }, + }, + ["lvl"] = "53-54", + }, + [8524] = { + ["coords"] = { + [1] = { 43.1, 39.1, 139, 345 }, + [2] = { 39.3, 36.8, 139, 345 }, + [3] = { 34.6, 36.7, 139, 345 }, + [4] = { 37.5, 35.3, 139, 345 }, + [5] = { 18.4, 34.8, 139, 345 }, + [6] = { 18.4, 34.7, 139, 345 }, + [7] = { 31.9, 33.2, 139, 345 }, + [8] = { 28.3, 33.1, 139, 345 }, + [9] = { 45.5, 33.1, 139, 345 }, + [10] = { 17.9, 32.6, 139, 345 }, + [11] = { 17.5, 32.6, 139, 345 }, + [12] = { 27.6, 31.3, 139, 345 }, + [13] = { 36, 30.5, 139, 345 }, + [14] = { 29.2, 29.7, 139, 345 }, + [15] = { 24, 28.9, 139, 345 }, + [16] = { 33.7, 27.1, 139, 345 }, + [17] = { 36.7, 26.7, 139, 345 }, + [18] = { 31.8, 26.3, 139, 345 }, + [19] = { 39.6, 23.9, 139, 345 }, + [20] = { 41.4, 23.8, 139, 345 }, + [21] = { 44.9, 23.5, 139, 345 }, + [22] = { 37.4, 21.4, 139, 345 }, + [23] = { 25.1, 20.1, 139, 345 }, + [24] = { 61.5, 99.5, 5225, 345 }, + [25] = { 61.4, 99.4, 5225, 345 }, + [26] = { 78.4, 97.5, 5225, 345 }, + [27] = { 73.8, 97.3, 5225, 345 }, + [28] = { 95.4, 97.3, 5225, 345 }, + [29] = { 60.7, 96.8, 5225, 345 }, + [30] = { 60.3, 96.7, 5225, 345 }, + [31] = { 72.9, 95.1, 5225, 345 }, + [32] = { 83.5, 94.1, 5225, 345 }, + [33] = { 75, 93.1, 5225, 345 }, + [34] = { 68.4, 92.1, 5225, 345 }, + [35] = { 80.6, 89.8, 5225, 345 }, + [36] = { 84.4, 89.3, 5225, 345 }, + [37] = { 78.3, 88.8, 5225, 345 }, + [38] = { 88.1, 85.8, 5225, 345 }, + [39] = { 90.3, 85.7, 5225, 345 }, + [40] = { 94.7, 85.3, 5225, 345 }, + [41] = { 85.2, 82.7, 5225, 345 }, + [42] = { 69.8, 81.1, 5225, 345 }, + }, + ["lvl"] = "54-55", + }, + [8525] = { + ["coords"] = { + [1] = { 61.1, 72.9, 139, 345 }, + [2] = { 61.1, 70.3, 139, 345 }, + [3] = { 36.9, 31.3, 139, 345 }, + [4] = { 30.3, 25.4, 139, 345 }, + [5] = { 37.8, 25, 139, 345 }, + [6] = { 26.5, 23.6, 139, 345 }, + [7] = { 33.8, 22.7, 139, 345 }, + [8] = { 15.8, 55.4, 4012, 345 }, + [9] = { 15.8, 52.2, 4012, 345 }, + [10] = { 84.6, 95.1, 5225, 345 }, + [11] = { 76.4, 87.8, 5225, 345 }, + [12] = { 85.7, 87.2, 5225, 345 }, + [13] = { 71.5, 85.5, 5225, 345 }, + [14] = { 80.8, 84.3, 5225, 345 }, + }, + ["lvl"] = "55-56", + }, + [8526] = { + ["coords"] = { + [1] = { 59.2, 71, 139, 345 }, + [2] = { 59.8, 70.5, 139, 345 }, + [3] = { 58, 68.8, 139, 345 }, + [4] = { 59.2, 68.2, 139, 345 }, + [5] = { 58.9, 67.8, 139, 345 }, + [6] = { 61.7, 66.9, 139, 345 }, + [7] = { 59, 66.7, 139, 345 }, + [8] = { 60.1, 66.7, 139, 345 }, + [9] = { 13.5, 53.1, 4012, 345 }, + [10] = { 14.3, 52.5, 4012, 345 }, + [11] = { 12, 50.4, 4012, 345 }, + [12] = { 13.5, 49.6, 4012, 345 }, + [13] = { 13.1, 49.2, 4012, 345 }, + [14] = { 16.6, 48.1, 4012, 345 }, + [15] = { 13.3, 47.9, 4012, 345 }, + [16] = { 14.6, 47.9, 4012, 345 }, + }, + ["lvl"] = "56-57", + }, + [8527] = { + ["coords"] = { + [1] = { 66.2, 40.9, 139, 345 }, + [2] = { 68.9, 40.8, 139, 345 }, + [3] = { 68.3, 40.7, 139, 345 }, + [4] = { 64.6, 40.5, 139, 345 }, + [5] = { 67.9, 40.3, 139, 345 }, + [6] = { 69.3, 39.8, 139, 345 }, + [7] = { 66.1, 39.2, 139, 345 }, + [8] = { 68.6, 38.5, 139, 345 }, + [9] = { 67.3, 38.3, 139, 345 }, + [10] = { 67.9, 38.2, 139, 345 }, + [11] = { 64.9, 36.9, 139, 345 }, + [12] = { 65.9, 36.8, 139, 345 }, + [13] = { 67.3, 35.6, 139, 345 }, + [14] = { 65.3, 35.4, 139, 345 }, + [15] = { 22.1, 16.2, 4012, 345 }, + [16] = { 25.5, 16.2, 4012, 345 }, + [17] = { 24.7, 16, 4012, 345 }, + [18] = { 20.2, 15.8, 4012, 345 }, + [19] = { 24.2, 15.6, 4012, 345 }, + [20] = { 25.9, 14.9, 4012, 345 }, + [21] = { 22, 14.2, 4012, 345 }, + [22] = { 25, 13.3, 4012, 345 }, + [23] = { 23.4, 13, 4012, 345 }, + [24] = { 24.2, 12.9, 4012, 345 }, + [25] = { 20.5, 11.3, 4012, 345 }, + [26] = { 21.7, 11.2, 4012, 345 }, + [27] = { 23.4, 9.8, 4012, 345 }, + [28] = { 21, 9.5, 4012, 345 }, + }, + ["lvl"] = "57-58", + }, + [8528] = { + ["coords"] = { + [1] = { 78.3, 55, 139, 345 }, + [2] = { 75.6, 50.5, 139, 345 }, + [3] = { 78.5, 45.8, 139, 345 }, + [4] = { 84.4, 45.6, 139, 345 }, + [5] = { 79.2, 44.9, 139, 345 }, + [6] = { 86.5, 43.7, 139, 345 }, + [7] = { 84.8, 43.4, 139, 345 }, + [8] = { 36.9, 33.5, 4012, 345 }, + [9] = { 33.6, 28, 4012, 345 }, + [10] = { 37.1, 22.2, 4012, 345 }, + [11] = { 44.4, 22, 4012, 345 }, + [12] = { 38, 21.1, 4012, 345 }, + [13] = { 47, 19.7, 4012, 345 }, + [14] = { 44.9, 19.3, 4012, 345 }, + }, + ["lvl"] = "58-59", + }, + [8529] = { + ["coords"] = { + [1] = { 34.1, 65.7, 139, 345 }, + [2] = { 33.5, 61.1, 139, 345 }, + [3] = { 36.2, 57.6, 139, 345 }, + [4] = { 37, 57.4, 139, 345 }, + [5] = { 75.9, 52, 139, 345 }, + [6] = { 76.5, 50.8, 139, 345 }, + [7] = { 40.5, 48.8, 139, 345 }, + [8] = { 76.5, 48.3, 139, 345 }, + [9] = { 87, 44.1, 139, 345 }, + [10] = { 80.1, 44, 139, 345 }, + [11] = { 80.8, 43.4, 139, 345 }, + [12] = { 84.7, 40.9, 139, 345 }, + [13] = { 81.7, 40.8, 139, 345 }, + [14] = { 82.8, 37.9, 139, 345 }, + [15] = { 33.9, 29.9, 4012, 345 }, + [16] = { 34.7, 28.4, 4012, 345 }, + [17] = { 34.8, 25.3, 4012, 345 }, + [18] = { 47.6, 20.2, 4012, 345 }, + [19] = { 39.1, 20.1, 4012, 345 }, + [20] = { 40, 19.4, 4012, 345 }, + [21] = { 44.7, 16.2, 4012, 345 }, + [22] = { 41.1, 16.1, 4012, 345 }, + [23] = { 42.4, 12.6, 4012, 345 }, + }, + ["lvl"] = "59-60", + }, + [8530] = { + ["coords"] = { + [1] = { 25.6, 37.1, 139, 345 }, + [2] = { 38, 36.6, 139, 345 }, + [3] = { 38.6, 35.5, 139, 345 }, + [4] = { 31, 34.7, 139, 345 }, + [5] = { 32.6, 34.3, 139, 345 }, + [6] = { 18.6, 34.3, 139, 345 }, + [7] = { 36.3, 33.7, 139, 345 }, + [8] = { 37.3, 33.1, 139, 345 }, + [9] = { 25.2, 33.1, 139, 345 }, + [10] = { 42.1, 33, 139, 345 }, + [11] = { 26.4, 32.6, 139, 345 }, + [12] = { 14.2, 32.4, 139, 345 }, + [13] = { 17.8, 32.1, 139, 345 }, + [14] = { 25.7, 31.7, 139, 345 }, + [15] = { 31.1, 31.3, 139, 345 }, + [16] = { 17.5, 31.3, 139, 345 }, + [17] = { 16.7, 30.9, 139, 345 }, + [18] = { 16.7, 30.4, 139, 345 }, + [19] = { 28.2, 30.2, 139, 345 }, + [20] = { 36.9, 29.4, 139, 345 }, + [21] = { 35.2, 29.2, 139, 345 }, + [22] = { 42.7, 28.1, 139, 345 }, + [23] = { 27.3, 26.6, 139, 345 }, + [24] = { 41.3, 26.6, 139, 345 }, + [25] = { 42, 24.9, 139, 345 }, + [26] = { 37.1, 23.7, 139, 345 }, + [27] = { 36.4, 22.7, 139, 345 }, + [28] = { 43.4, 22.3, 139, 345 }, + [29] = { 22.3, 21.4, 139, 345 }, + [30] = { 41.2, 21.3, 139, 345 }, + [31] = { 22.3, 19.4, 139, 345 }, + [32] = { 77.2, 99.4, 5225, 345 }, + [33] = { 79.2, 98.9, 5225, 345 }, + [34] = { 61.6, 98.8, 5225, 345 }, + [35] = { 83.8, 98.1, 5225, 345 }, + [36] = { 85.1, 97.3, 5225, 345 }, + [37] = { 69.9, 97.3, 5225, 345 }, + [38] = { 91.1, 97.2, 5225, 345 }, + [39] = { 71.4, 96.7, 5225, 345 }, + [40] = { 56.1, 96.5, 5225, 345 }, + [41] = { 60.7, 96.2, 5225, 345 }, + [42] = { 70.6, 95.6, 5225, 345 }, + [43] = { 77.4, 95.1, 5225, 345 }, + [44] = { 60.3, 95, 5225, 345 }, + [45] = { 59.3, 94.6, 5225, 345 }, + [46] = { 59.2, 94, 5225, 345 }, + [47] = { 73.7, 93.7, 5225, 345 }, + [48] = { 84.6, 92.8, 5225, 345 }, + [49] = { 82.5, 92.5, 5225, 345 }, + [50] = { 91.9, 91.1, 5225, 345 }, + [51] = { 72.6, 89.2, 5225, 345 }, + [52] = { 90.1, 89.2, 5225, 345 }, + [53] = { 91.1, 87.1, 5225, 345 }, + [54] = { 84.9, 85.6, 5225, 345 }, + [55] = { 84, 84.4, 5225, 345 }, + [56] = { 92.8, 83.8, 5225, 345 }, + [57] = { 66.3, 82.7, 5225, 345 }, + [58] = { 90, 82.5, 5225, 345 }, + [59] = { 66.3, 80.2, 5225, 345 }, + }, + ["lvl"] = "54-55", + }, + [8531] = { + ["coords"] = { + [1] = { 60.1, 73.6, 139, 345 }, + [2] = { 60.9, 73, 139, 345 }, + [3] = { 58.4, 72.9, 139, 345 }, + [4] = { 59.3, 69, 139, 345 }, + [5] = { 62.2, 67.8, 139, 345 }, + [6] = { 61.2, 67, 139, 345 }, + [7] = { 61.9, 65.4, 139, 345 }, + [8] = { 60.4, 65.1, 139, 345 }, + [9] = { 14.7, 56.3, 4012, 345 }, + [10] = { 15.6, 55.5, 4012, 345 }, + [11] = { 12.5, 55.5, 4012, 345 }, + [12] = { 13.6, 50.6, 4012, 345 }, + [13] = { 17.2, 49.2, 4012, 345 }, + [14] = { 16, 48.2, 4012, 345 }, + [15] = { 16.8, 46.2, 4012, 345 }, + [16] = { 15, 45.9, 4012, 345 }, + }, + ["lvl"] = "56-57", + }, + [8532] = { + ["coords"] = { + [1] = { 31.8, 63.9, 139, 345 }, + [2] = { 34, 63.7, 139, 345 }, + [3] = { 37.5, 57.4, 139, 345 }, + [4] = { 37, 56.7, 139, 345 }, + [5] = { 38.2, 56.2, 139, 345 }, + [6] = { 79.2, 56.2, 139, 345 }, + [7] = { 37.3, 53.6, 139, 345 }, + [8] = { 39.6, 52, 139, 345 }, + [9] = { 75.6, 50.9, 139, 345 }, + [10] = { 39.8, 49.8, 139, 345 }, + [11] = { 77.5, 47.4, 139, 345 }, + [12] = { 81.9, 44, 139, 345 }, + [13] = { 81.8, 42.1, 139, 345 }, + [14] = { 85.2, 41.9, 139, 345 }, + [15] = { 67.1, 40.8, 139, 345 }, + [16] = { 65.4, 40.8, 139, 345 }, + [17] = { 67.2, 39.9, 139, 345 }, + [18] = { 65.5, 39.7, 139, 345 }, + [19] = { 64.4, 39.2, 139, 345 }, + [20] = { 64.7, 38.3, 139, 345 }, + [21] = { 65.5, 38.3, 139, 345 }, + [22] = { 66, 35.9, 139, 345 }, + [23] = { 38, 34.9, 4012, 345 }, + [24] = { 33.6, 28.5, 4012, 345 }, + [25] = { 36, 24.2, 4012, 345 }, + [26] = { 41.3, 20, 4012, 345 }, + [27] = { 41.2, 17.7, 4012, 345 }, + [28] = { 45.3, 17.4, 4012, 345 }, + [29] = { 23.2, 16.2, 4012, 345 }, + [30] = { 21.1, 16.1, 4012, 345 }, + [31] = { 23.3, 15, 4012, 345 }, + [32] = { 21.3, 14.8, 4012, 345 }, + [33] = { 19.9, 14.2, 4012, 345 }, + [34] = { 20.2, 13.1, 4012, 345 }, + [35] = { 21.2, 13, 4012, 345 }, + [36] = { 21.8, 10.2, 4012, 345 }, + }, + ["lvl"] = "58-59", + }, + [8534] = { + ["coords"] = { + [1] = { 83.3, 66.9, 28, 345 }, + [2] = { 78.9, 56.5, 28, 345 }, + [3] = { 73.3, 54.8, 28, 345 }, + [4] = { 75.6, 44.6, 28, 345 }, + [5] = { 25.3, 91.1, 139, 345 }, + [6] = { 63.6, 86, 139, 345 }, + [7] = { 44.4, 83.1, 139, 345 }, + [8] = { 34.9, 82.6, 139, 345 }, + [9] = { 48.9, 79.9, 139, 345 }, + [10] = { 57.8, 79.8, 139, 345 }, + [11] = { 20.4, 79.6, 139, 345 }, + [12] = { 14.2, 77.7, 139, 345 }, + [13] = { 42.3, 77, 139, 345 }, + [14] = { 56.5, 76.5, 139, 345 }, + [15] = { 36.3, 72.9, 139, 345 }, + [16] = { 24.4, 71.7, 139, 345 }, + [17] = { 46.1, 70.7, 139, 345 }, + [18] = { 19.2, 68.4, 139, 345 }, + [19] = { 16.8, 66.3, 139, 345 }, + [20] = { 78.3, 66.2, 139, 345 }, + [21] = { 77.4, 63.4, 139, 345 }, + [22] = { 57.6, 61.2, 139, 345 }, + [23] = { 49.3, 60.3, 139, 345 }, + [24] = { 61.2, 58.7, 139, 345 }, + [25] = { 58.1, 58, 139, 345 }, + [26] = { 70.9, 57.6, 139, 345 }, + [27] = { 52.6, 53.6, 139, 345 }, + [28] = { 40.8, 33.4, 139, 345 }, + [29] = { 25.4, 32.4, 139, 345 }, + [30] = { 36.1, 32, 139, 345 }, + [31] = { 41.8, 25.2, 139, 345 }, + [32] = { 39, 21.5, 139, 345 }, + [33] = { 22.7, 18.9, 139, 345 }, + [34] = { 24.4, 18.7, 139, 345 }, + [35] = { 18.9, 71.5, 4012, 345 }, + [36] = { 1, 64, 4012, 345 }, + [37] = { 11.8, 63.9, 4012, 345 }, + [38] = { 10.3, 59.8, 4012, 345 }, + [39] = { 36.9, 47.2, 4012, 345 }, + [40] = { 35.8, 43.8, 4012, 345 }, + [41] = { 11.6, 41.1, 4012, 345 }, + [42] = { 1.4, 40.1, 4012, 345 }, + [43] = { 16, 38.1, 4012, 345 }, + [44] = { 12.2, 37.2, 4012, 345 }, + [45] = { 27.8, 36.8, 4012, 345 }, + [46] = { 5.4, 31.8, 4012, 345 }, + [47] = { 89.5, 97.8, 5225, 345 }, + [48] = { 70.2, 96.5, 5225, 345 }, + [49] = { 83.6, 95.9, 5225, 345 }, + [50] = { 90.8, 87.5, 5225, 345 }, + [51] = { 87.3, 82.8, 5225, 345 }, + [52] = { 66.8, 79.6, 5225, 345 }, + [53] = { 68.9, 79.4, 5225, 345 }, + }, + ["lvl"] = "54-56", + }, + [8535] = { + ["coords"] = { + [1] = { 28.8, 41.6, 139, 345 }, + [2] = { 32.2, 38.4, 139, 345 }, + [3] = { 19.9, 37.5, 139, 345 }, + [4] = { 63.8, 30.1, 139, 345 }, + [5] = { 65.7, 28.5, 139, 345 }, + [6] = { 60.1, 28, 139, 345 }, + [7] = { 19.1, 3, 4012, 345 }, + [8] = { 21.5, 1.1, 4012, 345 }, + [9] = { 14.6, 0.4, 4012, 345 }, + }, + ["lvl"] = "56-58", + }, + [8536] = "_", + [8537] = "_", + [8538] = { + ["coords"] = { + [1] = { 60.1, 72.6, 139, 345 }, + [2] = { 58, 68, 139, 345 }, + [3] = { 14.6, 55.1, 4012, 345 }, + [4] = { 12, 49.5, 4012, 345 }, + }, + ["lvl"] = "55-56", + }, + [8539] = { + ["coords"] = { + [1] = { 34.6, 60.1, 139, 345 }, + [2] = { 40.9, 49, 139, 345 }, + [3] = { 83.2, 44.6, 139, 345 }, + [4] = { 70.5, 30.4, 139, 345 }, + [5] = { 71.4, 30.2, 139, 345 }, + [6] = { 71.5, 30.2, 139, 345 }, + [7] = { 70.5, 29.6, 139, 345 }, + [8] = { 42.9, 20.8, 4012, 345 }, + [9] = { 27.4, 3.4, 4012, 345 }, + [10] = { 28.5, 3.2, 4012, 345 }, + [11] = { 28.6, 3.1, 4012, 345 }, + [12] = { 27.4, 2.4, 4012, 345 }, + }, + ["lvl"] = "57-58", + }, + [8540] = { + ["coords"] = { + [1] = { 36.3, 36.7, 139, 345 }, + [2] = { 28.3, 35.9, 139, 345 }, + [3] = { 44.5, 34.4, 139, 345 }, + [4] = { 40.3, 33.3, 139, 345 }, + [5] = { 30.1, 33.2, 139, 345 }, + [6] = { 19.9, 32.9, 139, 345 }, + [7] = { 39.8, 31.9, 139, 345 }, + [8] = { 17.6, 31.8, 139, 345 }, + [9] = { 18.7, 31.7, 139, 345 }, + [10] = { 17.6, 31.4, 139, 345 }, + [11] = { 29.3, 31.3, 139, 345 }, + [12] = { 40.5, 31.1, 139, 345 }, + [13] = { 17.7, 31, 139, 345 }, + [14] = { 16.7, 30.4, 139, 345 }, + [15] = { 43, 29, 139, 345 }, + [16] = { 44.6, 28.9, 139, 345 }, + [17] = { 45.4, 27.9, 139, 345 }, + [18] = { 23.6, 27.8, 139, 345 }, + [19] = { 23.2, 25.7, 139, 345 }, + [20] = { 25.2, 25, 139, 345 }, + [21] = { 24.2, 24, 139, 345 }, + [22] = { 21.9, 23.9, 139, 345 }, + [23] = { 40.5, 23.1, 139, 345 }, + [24] = { 24.5, 22.9, 139, 345 }, + [25] = { 41.7, 22.8, 139, 345 }, + [26] = { 94.2, 98.9, 5225, 345 }, + [27] = { 88.9, 97.6, 5225, 345 }, + [28] = { 76.1, 97.5, 5225, 345 }, + [29] = { 63.3, 97.2, 5225, 345 }, + [30] = { 88.2, 95.8, 5225, 345 }, + [31] = { 60.4, 95.7, 5225, 345 }, + [32] = { 61.8, 95.5, 5225, 345 }, + [33] = { 60.4, 95.2, 5225, 345 }, + [34] = { 75, 95.1, 5225, 345 }, + [35] = { 89.2, 94.8, 5225, 345 }, + [36] = { 60.6, 94.7, 5225, 345 }, + [37] = { 59.2, 93.9, 5225, 345 }, + [38] = { 92.3, 92.3, 5225, 345 }, + [39] = { 94.3, 92.1, 5225, 345 }, + [40] = { 95.3, 90.9, 5225, 345 }, + [41] = { 67.9, 90.7, 5225, 345 }, + [42] = { 67.4, 88.1, 5225, 345 }, + [43] = { 70, 87.2, 5225, 345 }, + [44] = { 68.7, 85.9, 5225, 345 }, + [45] = { 65.9, 85.8, 5225, 345 }, + [46] = { 89.1, 84.8, 5225, 345 }, + [47] = { 69.1, 84.5, 5225, 345 }, + [48] = { 90.7, 84.5, 5225, 345 }, + }, + ["lvl"] = "53-55", + }, + [8541] = { + ["coords"] = { + [1] = { 59.4, 73, 139, 345 }, + [2] = { 60, 72.5, 139, 345 }, + [3] = { 62, 71.8, 139, 345 }, + [4] = { 58.5, 71.7, 139, 345 }, + [5] = { 60.5, 71.7, 139, 345 }, + [6] = { 61.1, 71.5, 139, 345 }, + [7] = { 59.9, 70.8, 139, 345 }, + [8] = { 60.6, 70.5, 139, 345 }, + [9] = { 61.8, 70.2, 139, 345 }, + [10] = { 58.5, 70.2, 139, 345 }, + [11] = { 60.1, 69.7, 139, 345 }, + [12] = { 60.9, 69.2, 139, 345 }, + [13] = { 61.2, 69.1, 139, 345 }, + [14] = { 58.5, 69, 139, 345 }, + [15] = { 60, 69, 139, 345 }, + [16] = { 60.1, 67.7, 139, 345 }, + [17] = { 59.7, 67.7, 139, 345 }, + [18] = { 61.2, 67.6, 139, 345 }, + [19] = { 62.6, 66.7, 139, 345 }, + [20] = { 58.6, 66.2, 139, 345 }, + [21] = { 60.1, 66.1, 139, 345 }, + [22] = { 59.5, 65, 139, 345 }, + [23] = { 61, 65, 139, 345 }, + [24] = { 25.7, 27.5, 139, 345 }, + [25] = { 38.9, 26.4, 139, 345 }, + [26] = { 29, 26.3, 139, 345 }, + [27] = { 27.5, 25.1, 139, 345 }, + [28] = { 35.4, 23.9, 139, 345 }, + [29] = { 38, 22.5, 139, 345 }, + [30] = { 38.7, 21.8, 139, 345 }, + [31] = { 13.7, 55.5, 4012, 345 }, + [32] = { 14.5, 55, 4012, 345 }, + [33] = { 17, 54.1, 4012, 345 }, + [34] = { 12.6, 54, 4012, 345 }, + [35] = { 15.1, 54, 4012, 345 }, + [36] = { 15.9, 53.8, 4012, 345 }, + [37] = { 14.4, 52.8, 4012, 345 }, + [38] = { 15.3, 52.4, 4012, 345 }, + [39] = { 16.8, 52.2, 4012, 345 }, + [40] = { 12.7, 52.2, 4012, 345 }, + [41] = { 14.6, 51.5, 4012, 345 }, + [42] = { 15.6, 51, 4012, 345 }, + [43] = { 16, 50.8, 4012, 345 }, + [44] = { 12.7, 50.7, 4012, 345 }, + [45] = { 14.5, 50.6, 4012, 345 }, + [46] = { 14.6, 49.1, 4012, 345 }, + [47] = { 14.2, 49, 4012, 345 }, + [48] = { 16, 48.9, 4012, 345 }, + [49] = { 17.7, 47.9, 4012, 345 }, + [50] = { 12.7, 47.3, 4012, 345 }, + [51] = { 14.6, 47.1, 4012, 345 }, + [52] = { 13.8, 45.8, 4012, 345 }, + [53] = { 15.7, 45.7, 4012, 345 }, + [54] = { 70.5, 90.4, 5225, 345 }, + [55] = { 87.2, 88.9, 5225, 345 }, + [56] = { 74.7, 88.8, 5225, 345 }, + [57] = { 72.9, 87.3, 5225, 345 }, + [58] = { 82.7, 85.8, 5225, 345 }, + [59] = { 86.1, 84.1, 5225, 345 }, + [60] = { 86.9, 83.2, 5225, 345 }, + }, + ["lvl"] = "55-57", + }, + [8542] = { + ["coords"] = { + [1] = { 32.5, 65.3, 139, 345 }, + [2] = { 34.4, 62.6, 139, 345 }, + [3] = { 34, 59.9, 139, 345 }, + [4] = { 36.3, 58.9, 139, 345 }, + [5] = { 37.8, 55.5, 139, 345 }, + [6] = { 37.3, 54.7, 139, 345 }, + [7] = { 77.6, 54.1, 139, 345 }, + [8] = { 78.3, 52.6, 139, 345 }, + [9] = { 76.6, 52.4, 139, 345 }, + [10] = { 37.4, 52.4, 139, 345 }, + [11] = { 42, 52.4, 139, 345 }, + [12] = { 77, 52.3, 139, 345 }, + [13] = { 77.5, 51.1, 139, 345 }, + [14] = { 77.5, 49.9, 139, 345 }, + [15] = { 84.6, 44.4, 139, 345 }, + [16] = { 83.1, 40.5, 139, 345 }, + [17] = { 84.5, 37.4, 139, 345 }, + [18] = { 71.7, 32.4, 139, 345 }, + [19] = { 69.8, 31.8, 139, 345 }, + [20] = { 73, 31.6, 139, 345 }, + [21] = { 72.1, 31.5, 139, 345 }, + [22] = { 70, 30.9, 139, 345 }, + [23] = { 72.3, 30.8, 139, 345 }, + [24] = { 72.8, 30.5, 139, 345 }, + [25] = { 69.8, 30.4, 139, 345 }, + [26] = { 71.4, 29.3, 139, 345 }, + [27] = { 72.3, 29.2, 139, 345 }, + [28] = { 69.6, 29, 139, 345 }, + [29] = { 70.5, 27.9, 139, 345 }, + [30] = { 36.1, 32.4, 4012, 345 }, + [31] = { 36.9, 30.5, 4012, 345 }, + [32] = { 34.8, 30.4, 4012, 345 }, + [33] = { 35.4, 30.3, 4012, 345 }, + [34] = { 35.9, 28.8, 4012, 345 }, + [35] = { 35.9, 27.3, 4012, 345 }, + [36] = { 44.6, 20.5, 4012, 345 }, + [37] = { 42.8, 15.8, 4012, 345 }, + [38] = { 44.5, 12, 4012, 345 }, + [39] = { 28.8, 5.9, 4012, 345 }, + [40] = { 26.5, 5.1, 4012, 345 }, + [41] = { 30.5, 4.9, 4012, 345 }, + [42] = { 29.3, 4.8, 4012, 345 }, + [43] = { 26.8, 4, 4012, 345 }, + [44] = { 29.6, 3.9, 4012, 345 }, + [45] = { 30.2, 3.5, 4012, 345 }, + [46] = { 26.4, 3.4, 4012, 345 }, + [47] = { 28.4, 2, 4012, 345 }, + [48] = { 29.6, 1.9, 4012, 345 }, + [49] = { 26.3, 1.7, 4012, 345 }, + [50] = { 27.4, 0.3, 4012, 345 }, + }, + ["lvl"] = "57-59", + }, + [8543] = { + ["coords"] = { + [1] = { 59.2, 73.3, 139, 345 }, + [2] = { 57.5, 70.4, 139, 345 }, + [3] = { 62.1, 69, 139, 345 }, + [4] = { 56.9, 68, 139, 345 }, + [5] = { 58.2, 63.6, 139, 345 }, + [6] = { 27.4, 39.4, 139, 345 }, + [7] = { 40.5, 35.5, 139, 345 }, + [8] = { 43.6, 35.3, 139, 345 }, + [9] = { 43, 34.5, 139, 345 }, + [10] = { 41.6, 34.5, 139, 345 }, + [11] = { 26, 33.8, 139, 345 }, + [12] = { 35.1, 32.8, 139, 345 }, + [13] = { 44.1, 32.7, 139, 345 }, + [14] = { 25.6, 32.2, 139, 345 }, + [15] = { 32.1, 31.6, 139, 345 }, + [16] = { 24.2, 31.4, 139, 345 }, + [17] = { 31.8, 31.2, 139, 345 }, + [18] = { 34.2, 31.1, 139, 345 }, + [19] = { 29.8, 30.5, 139, 345 }, + [20] = { 24.7, 30.3, 139, 345 }, + [21] = { 31.9, 30, 139, 345 }, + [22] = { 32.4, 29.9, 139, 345 }, + [23] = { 33.6, 29, 139, 345 }, + [24] = { 21.6, 28.9, 139, 345 }, + [25] = { 36.4, 28.1, 139, 345 }, + [26] = { 32.8, 27.7, 139, 345 }, + [27] = { 22.3, 26.8, 139, 345 }, + [28] = { 35.2, 26.4, 139, 345 }, + [29] = { 34.5, 25.3, 139, 345 }, + [30] = { 36.2, 25.1, 139, 345 }, + [31] = { 28, 24.1, 139, 345 }, + [32] = { 42.8, 23.8, 139, 345 }, + [33] = { 31.9, 23.7, 139, 345 }, + [34] = { 37.6, 20.5, 139, 345 }, + [35] = { 40.5, 20.3, 139, 345 }, + [36] = { 37.2, 20.1, 139, 345 }, + [37] = { 21.6, 19.8, 139, 345 }, + [38] = { 37.4, 18.9, 139, 345 }, + [39] = { 37.8, 18.8, 139, 345 }, + [40] = { 23.1, 17.6, 139, 345 }, + [41] = { 13.6, 55.9, 4012, 345 }, + [42] = { 11.5, 52.4, 4012, 345 }, + [43] = { 17.1, 50.6, 4012, 345 }, + [44] = { 10.7, 49.5, 4012, 345 }, + [45] = { 12.3, 44.1, 4012, 345 }, + [46] = { 92.4, 99.1, 5225, 345 }, + [47] = { 90.6, 99.1, 5225, 345 }, + [48] = { 71, 98.2, 5225, 345 }, + [49] = { 82.4, 97, 5225, 345 }, + [50] = { 93.7, 96.9, 5225, 345 }, + [51] = { 70.5, 96.2, 5225, 345 }, + [52] = { 78.6, 95.5, 5225, 345 }, + [53] = { 68.7, 95.2, 5225, 345 }, + [54] = { 78.2, 95, 5225, 345 }, + [55] = { 81.2, 94.9, 5225, 345 }, + [56] = { 75.8, 94.1, 5225, 345 }, + [57] = { 69.3, 93.9, 5225, 345 }, + [58] = { 78.4, 93.5, 5225, 345 }, + [59] = { 78.9, 93.4, 5225, 345 }, + [60] = { 80.5, 92.2, 5225, 345 }, + [61] = { 65.4, 92.1, 5225, 345 }, + [62] = { 84, 91, 5225, 345 }, + [63] = { 79.4, 90.6, 5225, 345 }, + [64] = { 66.3, 89.5, 5225, 345 }, + [65] = { 82.5, 88.9, 5225, 345 }, + [66] = { 81.6, 87.5, 5225, 345 }, + [67] = { 83.8, 87.3, 5225, 345 }, + [68] = { 73.4, 86, 5225, 345 }, + [69] = { 92.1, 85.7, 5225, 345 }, + [70] = { 78.4, 85.6, 5225, 345 }, + [71] = { 85.5, 81.6, 5225, 345 }, + [72] = { 89.1, 81.3, 5225, 345 }, + [73] = { 85, 81.1, 5225, 345 }, + [74] = { 65.4, 80.7, 5225, 345 }, + [75] = { 85.2, 79.6, 5225, 345 }, + [76] = { 85.8, 79.5, 5225, 345 }, + [77] = { 67.3, 77.9, 5225, 345 }, + }, + ["lvl"] = "57-58", + }, + [8544] = { + ["coords"] = { + [1] = { 87, 40.1, 139, 345 }, + [2] = { 47.6, 15.2, 4012, 345 }, + }, + ["lvl"] = "58-59", + }, + [8545] = { + ["coords"] = { + [1] = { 33.7, 66.4, 139, 345 }, + [2] = { 35.5, 64, 139, 345 }, + [3] = { 35.3, 58.7, 139, 345 }, + [4] = { 37.8, 52.1, 139, 345 }, + [5] = { 86.8, 40.7, 139, 345 }, + [6] = { 86.1, 39.4, 139, 345 }, + [7] = { 86.5, 39.2, 139, 345 }, + [8] = { 47.4, 16, 4012, 345 }, + [9] = { 46.4, 14.4, 4012, 345 }, + [10] = { 46.9, 14.1, 4012, 345 }, + }, + ["lvl"] = "59-60", + }, + [8546] = { + ["coords"] = { + [1] = { 40.5, 54.9, 139, 345 }, + [2] = { 40.6, 54.7, 139, 345 }, + [3] = { 39.2, 54, 139, 345 }, + [4] = { 41.7, 54, 139, 345 }, + [5] = { 39, 53.7, 139, 345 }, + [6] = { 39.3, 51.5, 139, 345 }, + [7] = { 39.9, 51.4, 139, 345 }, + [8] = { 39.2, 51.2, 139, 345 }, + [9] = { 40.9, 50.6, 139, 345 }, + [10] = { 42, 50.3, 139, 345 }, + [11] = { 40.9, 50.3, 139, 345 }, + [12] = { 42, 50, 139, 345 }, + [13] = { 37.7, 50, 139, 345 }, + [14] = { 39.2, 48.9, 139, 345 }, + [15] = { 39.3, 48.6, 139, 345 }, + [16] = { 42, 47.9, 139, 345 }, + [17] = { 81.9, 46.6, 139, 345 }, + [18] = { 85.9, 46.1, 139, 345 }, + [19] = { 85.7, 46, 139, 345 }, + [20] = { 85.7, 44, 139, 345 }, + [21] = { 85.7, 43.7, 139, 345 }, + [22] = { 83.1, 43.4, 139, 345 }, + [23] = { 83, 43.1, 139, 345 }, + [24] = { 83.6, 42, 139, 345 }, + [25] = { 83.6, 40.3, 139, 345 }, + [26] = { 83.5, 40, 139, 345 }, + [27] = { 83.2, 39.1, 139, 345 }, + [28] = { 83.1, 39, 139, 345 }, + [29] = { 65.9, 37.8, 139, 345 }, + [30] = { 66, 37.7, 139, 345 }, + [31] = { 66.6, 37.3, 139, 345 }, + [32] = { 66.6, 37.2, 139, 345 }, + [33] = { 41.4, 23.2, 4012, 345 }, + [34] = { 46.2, 22.6, 4012, 345 }, + [35] = { 46, 22.5, 4012, 345 }, + [36] = { 46, 20, 4012, 345 }, + [37] = { 46, 19.7, 4012, 345 }, + [38] = { 42.9, 19.3, 4012, 345 }, + [39] = { 42.7, 19, 4012, 345 }, + [40] = { 43.4, 17.7, 4012, 345 }, + [41] = { 43.4, 15.5, 4012, 345 }, + [42] = { 43.3, 15.2, 4012, 345 }, + [43] = { 43, 14.1, 4012, 345 }, + [44] = { 42.8, 14, 4012, 345 }, + [45] = { 21.7, 12.5, 4012, 345 }, + [46] = { 21.8, 12.3, 4012, 345 }, + [47] = { 22.6, 11.9, 4012, 345 }, + [48] = { 22.6, 11.7, 4012, 345 }, + }, + ["lvl"] = "58-59", + }, + [8547] = { + ["coords"] = { + [1] = { 39.3, 34.2, 139, 345 }, + [2] = { 27, 28.9, 139, 345 }, + [3] = { 87.7, 98.7, 5225, 345 }, + [4] = { 72.3, 92.1, 5225, 345 }, + }, + ["lvl"] = "53-54", + }, + [8548] = { + ["coords"] = { + [1] = { 60.5, 71.7, 139, 345 }, + [2] = { 60.1, 71.2, 139, 345 }, + [3] = { 60, 70.8, 139, 345 }, + [4] = { 60.4, 70.8, 139, 345 }, + [5] = { 59.9, 70.7, 139, 345 }, + [6] = { 59.6, 70.3, 139, 345 }, + [7] = { 59.6, 69.9, 139, 345 }, + [8] = { 61.3, 69.2, 139, 345 }, + [9] = { 61.4, 68.9, 139, 345 }, + [10] = { 57.8, 68.6, 139, 345 }, + [11] = { 60.7, 68.2, 139, 345 }, + [12] = { 59.2, 67.6, 139, 345 }, + [13] = { 58.6, 67.5, 139, 345 }, + [14] = { 58.8, 67.2, 139, 345 }, + [15] = { 60.8, 66.3, 139, 345 }, + [16] = { 61, 65.9, 139, 345 }, + [17] = { 15.1, 54, 4012, 345 }, + [18] = { 14.6, 53.3, 4012, 345 }, + [19] = { 14.5, 52.9, 4012, 345 }, + [20] = { 15, 52.9, 4012, 345 }, + [21] = { 14.4, 52.8, 4012, 345 }, + [22] = { 14, 52.3, 4012, 345 }, + [23] = { 14, 51.7, 4012, 345 }, + [24] = { 16, 50.9, 4012, 345 }, + [25] = { 16.2, 50.5, 4012, 345 }, + [26] = { 11.8, 50.1, 4012, 345 }, + [27] = { 15.4, 49.7, 4012, 345 }, + [28] = { 13.6, 48.9, 4012, 345 }, + [29] = { 12.8, 48.8, 4012, 345 }, + [30] = { 13, 48.5, 4012, 345 }, + [31] = { 15.5, 47.4, 4012, 345 }, + [32] = { 15.7, 46.9, 4012, 345 }, + }, + ["lvl"] = "56-57", + }, + [8549] = "_", + [8550] = { + ["coords"] = { + [1] = { 40.5, 54.9, 139, 345 }, + [2] = { 40.6, 54.7, 139, 345 }, + [3] = { 39.2, 54, 139, 345 }, + [4] = { 41.7, 54, 139, 345 }, + [5] = { 39, 53.7, 139, 345 }, + [6] = { 39.3, 51.5, 139, 345 }, + [7] = { 39.9, 51.4, 139, 345 }, + [8] = { 39.2, 51.2, 139, 345 }, + [9] = { 40.9, 50.6, 139, 345 }, + [10] = { 42, 50.3, 139, 345 }, + [11] = { 40.9, 50.3, 139, 345 }, + [12] = { 42, 50, 139, 345 }, + [13] = { 37.7, 50, 139, 345 }, + [14] = { 39.2, 48.9, 139, 345 }, + [15] = { 39.3, 48.6, 139, 345 }, + [16] = { 42, 47.9, 139, 345 }, + [17] = { 81.9, 46.6, 139, 345 }, + [18] = { 85.9, 46.1, 139, 345 }, + [19] = { 85.7, 46, 139, 345 }, + [20] = { 85.7, 44, 139, 345 }, + [21] = { 85.7, 43.7, 139, 345 }, + [22] = { 83.1, 43.4, 139, 345 }, + [23] = { 83, 43.1, 139, 345 }, + [24] = { 83.6, 42, 139, 345 }, + [25] = { 83.6, 40.3, 139, 345 }, + [26] = { 83.5, 40, 139, 345 }, + [27] = { 83.2, 39.1, 139, 345 }, + [28] = { 83.1, 39, 139, 345 }, + [29] = { 65.9, 37.8, 139, 345 }, + [30] = { 66, 37.7, 139, 345 }, + [31] = { 66.6, 37.3, 139, 345 }, + [32] = { 66.6, 37.2, 139, 345 }, + [33] = { 41.4, 23.2, 4012, 345 }, + [34] = { 46.2, 22.6, 4012, 345 }, + [35] = { 46, 22.5, 4012, 345 }, + [36] = { 46, 20, 4012, 345 }, + [37] = { 46, 19.7, 4012, 345 }, + [38] = { 42.9, 19.3, 4012, 345 }, + [39] = { 42.7, 19, 4012, 345 }, + [40] = { 43.4, 17.7, 4012, 345 }, + [41] = { 43.4, 15.5, 4012, 345 }, + [42] = { 43.3, 15.2, 4012, 345 }, + [43] = { 43, 14.1, 4012, 345 }, + [44] = { 42.8, 14, 4012, 345 }, + [45] = { 21.7, 12.5, 4012, 345 }, + [46] = { 21.8, 12.3, 4012, 345 }, + [47] = { 22.6, 11.9, 4012, 345 }, + [48] = { 22.6, 11.7, 4012, 345 }, + }, + ["lvl"] = "59-60", + }, + [8551] = { + ["coords"] = { + [1] = { 60.4, 70.9, 139, 345 }, + [2] = { 60.1, 70.8, 139, 345 }, + [3] = { 59.7, 70.1, 139, 345 }, + [4] = { 61.6, 68.9, 139, 345 }, + [5] = { 15, 53, 4012, 345 }, + [6] = { 14.6, 52.9, 4012, 345 }, + [7] = { 14.1, 52, 4012, 345 }, + [8] = { 16.4, 50.5, 4012, 345 }, + }, + ["lvl"] = "55-56", + }, + [8552] = "_", + [8553] = { + ["coords"] = { + [1] = { 40.6, 38.2, 139, 345 }, + [2] = { 27, 36.6, 139, 345 }, + [3] = { 30.6, 28.1, 139, 345 }, + [4] = { 30.6, 27.7, 139, 345 }, + [5] = { 43.5, 25.7, 139, 345 }, + [6] = { 32.8, 23.8, 139, 345 }, + [7] = { 30.7, 21, 139, 345 }, + [8] = { 31.1, 20.9, 139, 345 }, + [9] = { 76.7, 91, 5225, 345 }, + [10] = { 76.7, 90.6, 5225, 345 }, + [11] = { 92.9, 88.1, 5225, 345 }, + [12] = { 79.6, 85.7, 5225, 345 }, + [13] = { 76.8, 82.2, 5225, 345 }, + [14] = { 77.4, 82.1, 5225, 345 }, + }, + ["lvl"] = "54-55", + }, + [8555] = { + ["coords"] = { + [1] = { 67.7, 21.1, 28, 345 }, + [2] = { 67.7, 19.9, 28, 345 }, + [3] = { 68.9, 19.2, 28, 345 }, + [4] = { 69.6, 18.6, 28, 345 }, + [5] = { 8, 40.2, 139, 345 }, + [6] = { 8, 38.9, 139, 345 }, + [7] = { 9.4, 38.1, 139, 345 }, + [8] = { 10.1, 37.5, 139, 345 }, + [9] = { 16.1, 33.1, 139, 345 }, + [10] = { 17, 33, 139, 345 }, + [11] = { 13.7, 32.9, 139, 345 }, + [12] = { 15.4, 32.3, 139, 345 }, + [13] = { 14.5, 31.9, 139, 345 }, + [14] = { 16.6, 31.8, 139, 345 }, + [15] = { 14.4, 30.5, 139, 345 }, + [16] = { 58.5, 97.3, 5225, 345 }, + [17] = { 59.7, 97.3, 5225, 345 }, + [18] = { 55.5, 97.1, 5225, 345 }, + [19] = { 57.7, 96.4, 5225, 345 }, + [20] = { 56.5, 95.8, 5225, 345 }, + [21] = { 59.2, 95.8, 5225, 345 }, + [22] = { 56.3, 94.1, 5225, 345 }, + }, + ["lvl"] = "53-54", + }, + [8556] = { + ["coords"] = { + [1] = { 68.5, 18.7, 28, 345 }, + [2] = { 68.9, 17.4, 28, 345 }, + [3] = { 8.9, 37.5, 139, 345 }, + [4] = { 9.3, 36.1, 139, 345 }, + [5] = { 11.1, 34.7, 139, 345 }, + [6] = { 11.9, 34.3, 139, 345 }, + [7] = { 13.1, 33.6, 139, 345 }, + [8] = { 12.4, 33.4, 139, 345 }, + [9] = { 17.9, 33.4, 139, 345 }, + [10] = { 13.2, 33.4, 139, 345 }, + [11] = { 15, 31.2, 139, 345 }, + [12] = { 29.4, 23.9, 139, 345 }, + [13] = { 23.5, 21.9, 139, 345 }, + [14] = { 52.2, 99.4, 5225, 345 }, + [15] = { 53.3, 98.8, 5225, 345 }, + [16] = { 54.8, 98, 5225, 345 }, + [17] = { 53.9, 97.8, 5225, 345 }, + [18] = { 60.8, 97.7, 5225, 345 }, + [19] = { 54.9, 97.7, 5225, 345 }, + [20] = { 57.1, 95, 5225, 345 }, + [21] = { 75.3, 85.8, 5225, 345 }, + [22] = { 67.8, 83.3, 5225, 345 }, + }, + ["lvl"] = "55-56", + }, + [8557] = { + ["coords"] = { + [1] = { 68.2, 21.2, 28, 345 }, + [2] = { 67.8, 20.3, 28, 345 }, + [3] = { 69.3, 17.8, 28, 345 }, + [4] = { 68.7, 17.8, 28, 345 }, + [5] = { 68.7, 17.4, 28, 345 }, + [6] = { 69.4, 16.7, 28, 345 }, + [7] = { 69.5, 16.6, 28, 345 }, + [8] = { 8.6, 40.3, 139, 345 }, + [9] = { 67.8, 39.6, 139, 345 }, + [10] = { 67.7, 39.6, 139, 345 }, + [11] = { 8.1, 39.4, 139, 345 }, + [12] = { 9.8, 36.6, 139, 345 }, + [13] = { 9.1, 36.6, 139, 345 }, + [14] = { 9.1, 36.1, 139, 345 }, + [15] = { 11.7, 35.3, 139, 345 }, + [16] = { 9.8, 35.3, 139, 345 }, + [17] = { 10, 35.3, 139, 345 }, + [18] = { 11.3, 33.9, 139, 345 }, + [19] = { 12.8, 31.7, 139, 345 }, + [20] = { 13.4, 31.1, 139, 345 }, + [21] = { 24.1, 14.7, 4012, 345 }, + [22] = { 23.9, 14.6, 4012, 345 }, + [23] = { 52.5, 98.3, 5225, 345 }, + [24] = { 54.4, 95.6, 5225, 345 }, + [25] = { 55.1, 94.8, 5225, 345 }, + }, + ["lvl"] = "57-58", + }, + [8558] = { + ["coords"] = { + [1] = { 68.4, 20, 28, 345 }, + [2] = { 88.5, 51.9, 139, 180 }, + [3] = { 88.8, 51.7, 139, 300 }, + [4] = { 88.5, 51.6, 139, 180 }, + [5] = { 88.7, 51.6, 139, 180 }, + [6] = { 86.6, 45, 139, 180 }, + [7] = { 8.7, 39, 139, 345 }, + [8] = { 11.5, 35.2, 139, 345 }, + [9] = { 12.6, 32.3, 139, 345 }, + [10] = { 12.6, 32.1, 139, 345 }, + [11] = { 49.4, 29.7, 4012, 180 }, + [12] = { 49.8, 29.5, 4012, 300 }, + [13] = { 49.4, 29.4, 4012, 180 }, + [14] = { 49.6, 29.3, 4012, 180 }, + [15] = { 47.1, 21.3, 4012, 180 }, + [16] = { 52.8, 100, 5225, 345 }, + [17] = { 54.2, 96.3, 5225, 345 }, + [18] = { 54.1, 96.1, 5225, 345 }, + [19] = { 40.5, 54.9, 139, 345 }, + [20] = { 40.6, 54.7, 139, 345 }, + [21] = { 39.2, 54, 139, 345 }, + [22] = { 41.7, 54, 139, 345 }, + [23] = { 39, 53.7, 139, 345 }, + [24] = { 39.3, 51.5, 139, 345 }, + [25] = { 39.9, 51.4, 139, 345 }, + [26] = { 39.2, 51.2, 139, 345 }, + [27] = { 40.9, 50.6, 139, 345 }, + [28] = { 42, 50.3, 139, 345 }, + [29] = { 40.9, 50.3, 139, 345 }, + [30] = { 42, 50, 139, 345 }, + [31] = { 37.7, 50, 139, 345 }, + [32] = { 39.2, 48.9, 139, 345 }, + [33] = { 39.3, 48.6, 139, 345 }, + [34] = { 42, 47.9, 139, 345 }, + [35] = { 81.9, 46.6, 139, 345 }, + [36] = { 85.9, 46.1, 139, 345 }, + [37] = { 85.7, 46, 139, 345 }, + [38] = { 85.7, 44, 139, 345 }, + [39] = { 85.7, 43.7, 139, 345 }, + [40] = { 83.1, 43.4, 139, 345 }, + [41] = { 83, 43.1, 139, 345 }, + [42] = { 83.6, 42, 139, 345 }, + [43] = { 83.6, 40.3, 139, 345 }, + [44] = { 83.5, 40, 139, 345 }, + [45] = { 83.2, 39.1, 139, 345 }, + [46] = { 83.1, 39, 139, 345 }, + [47] = { 65.9, 37.8, 139, 345 }, + [48] = { 66, 37.7, 139, 345 }, + [49] = { 66.6, 37.3, 139, 345 }, + [50] = { 66.6, 37.2, 139, 345 }, + [51] = { 41.4, 23.2, 4012, 345 }, + [52] = { 46.2, 22.6, 4012, 345 }, + [53] = { 46, 22.5, 4012, 345 }, + [54] = { 46, 20, 4012, 345 }, + [55] = { 46, 19.7, 4012, 345 }, + [56] = { 42.9, 19.3, 4012, 345 }, + [57] = { 42.7, 19, 4012, 345 }, + [58] = { 43.4, 17.7, 4012, 345 }, + [59] = { 43.4, 15.5, 4012, 345 }, + [60] = { 43.3, 15.2, 4012, 345 }, + [61] = { 43, 14.1, 4012, 345 }, + [62] = { 42.8, 14, 4012, 345 }, + [63] = { 21.7, 12.5, 4012, 345 }, + [64] = { 21.8, 12.3, 4012, 345 }, + [65] = { 22.6, 11.9, 4012, 345 }, + [66] = { 22.6, 11.7, 4012, 345 }, + }, + ["lvl"] = "58-59", + }, + [8559] = "_", + [8566] = { + ["coords"] = { + [1] = { 52.9, 58.8, 51, 500 }, + [2] = { 51.9, 58.7, 51, 500 }, + [3] = { 53.5, 58.6, 51, 500 }, + [4] = { 32.6, 55.5, 51, 500 }, + [5] = { 32.5, 54.9, 51, 500 }, + [6] = { 40.8, 36.1, 51, 500 }, + }, + ["lvl"] = "47-48", + }, + [8567] = { + ["coords"] = { + [1] = { 30, 36.4, 722, 604800 }, + }, + ["lvl"] = "40", + ["rnk"] = "1", + }, + [8576] = { + ["coords"] = { + [1] = { 22.3, 51.5, 16, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [8579] = { + ["coords"] = { + [1] = { 67, 22.4, 440, 30 }, + }, + ["lvl"] = "41", + }, + [8580] = { + ["coords"] = { + [1] = { 49.8, 47.1, 1477, 604800 }, + }, + ["lvl"] = "50", + ["rnk"] = "1", + }, + [8582] = { + ["coords"] = { + [1] = { 68.6, 89.1, 331, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "31", + }, + [8583] = { + ["coords"] = { + [1] = { 60.9, 42, 141, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "8", + }, + [8584] = { + ["coords"] = { + [1] = { 54.6, 33, 141, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [8587] = { + ["coords"] = { + [1] = { 22.6, 51.4, 16, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "49", + }, + [8596] = { + ["coords"] = { + [1] = { 82.8, 64.1, 28, 345 }, + [2] = { 78.6, 57.2, 28, 345 }, + [3] = { 74, 56.9, 28, 345 }, + [4] = { 72, 56.5, 28, 345 }, + [5] = { 75.3, 56.4, 28, 345 }, + [6] = { 77.5, 56.1, 28, 345 }, + [7] = { 75.4, 55.8, 28, 345 }, + [8] = { 76.9, 54.8, 28, 345 }, + [9] = { 73.4, 52.6, 28, 345 }, + [10] = { 74.5, 43.6, 28, 345 }, + [11] = { 74.1, 43.4, 28, 345 }, + [12] = { 75.8, 40.9, 28, 345 }, + [13] = { 70.2, 37.5, 28, 345 }, + [14] = { 68, 34.2, 28, 345 }, + [15] = { 67.5, 33.4, 28, 345 }, + [16] = { 68.5, 30.6, 28, 345 }, + [17] = { 66.1, 23.8, 28, 345 }, + [18] = { 24.8, 88, 139, 345 }, + [19] = { 45.1, 86.6, 139, 345 }, + [20] = { 32.5, 84.3, 139, 345 }, + [21] = { 57.7, 83.8, 139, 345 }, + [22] = { 58.2, 83.2, 139, 345 }, + [23] = { 36.1, 82.4, 139, 345 }, + [24] = { 30.8, 82.3, 139, 345 }, + [25] = { 71.5, 81.7, 139, 345 }, + [26] = { 69.7, 81.6, 139, 345 }, + [27] = { 68.8, 80.6, 139, 345 }, + [28] = { 57.5, 80.4, 139, 345 }, + [29] = { 20.1, 80.3, 139, 345 }, + [30] = { 44.3, 80.2, 139, 345 }, + [31] = { 15, 80, 139, 345 }, + [32] = { 23.4, 79.9, 139, 345 }, + [33] = { 12.8, 79.6, 139, 345 }, + [34] = { 16.4, 79.4, 139, 345 }, + [35] = { 18.9, 79.1, 139, 345 }, + [36] = { 20.5, 79.1, 139, 345 }, + [37] = { 16.5, 78.7, 139, 345 }, + [38] = { 52.8, 78.3, 139, 345 }, + [39] = { 18.2, 77.7, 139, 345 }, + [40] = { 50, 76.6, 139, 345 }, + [41] = { 53.4, 75.9, 139, 345 }, + [42] = { 14.4, 75.2, 139, 345 }, + [43] = { 45.3, 74.8, 139, 345 }, + [44] = { 44.6, 74.8, 139, 345 }, + [45] = { 63.2, 74, 139, 345 }, + [46] = { 24.2, 72.4, 139, 345 }, + [47] = { 19.5, 72.3, 139, 345 }, + [48] = { 41.9, 71.7, 139, 345 }, + [49] = { 24.9, 71.4, 139, 345 }, + [50] = { 44.1, 70, 139, 345 }, + [51] = { 21.1, 68.2, 139, 345 }, + [52] = { 25.7, 67, 139, 345 }, + [53] = { 21.2, 66.8, 139, 345 }, + [54] = { 21.6, 66.4, 139, 345 }, + [55] = { 20.2, 66, 139, 345 }, + [56] = { 42.6, 65.5, 139, 345 }, + [57] = { 15.6, 65.2, 139, 345 }, + [58] = { 15.1, 65, 139, 345 }, + [59] = { 23, 64.1, 139, 345 }, + [60] = { 17.7, 64.1, 139, 345 }, + [61] = { 26.9, 63.8, 139, 345 }, + [62] = { 17, 62.2, 139, 345 }, + [63] = { 31.5, 61.4, 139, 345 }, + [64] = { 10.8, 58.4, 139, 345 }, + [65] = { 8.3, 54.8, 139, 345 }, + [66] = { 7.7, 53.9, 139, 345 }, + [67] = { 8.9, 50.7, 139, 345 }, + [68] = { 6.2, 43.2, 139, 345 }, + [69] = { 11.7, 68.8, 4012, 345 }, + [70] = { 12.3, 68, 4012, 345 }, + [71] = { 28.6, 66.2, 4012, 345 }, + [72] = { 26.4, 66.1, 4012, 345 }, + [73] = { 25.3, 64.9, 4012, 345 }, + [74] = { 11.4, 64.7, 4012, 345 }, + [75] = { 5.7, 62.1, 4012, 345 }, + [76] = { 2.3, 59.9, 4012, 345 }, + [77] = { 6.4, 59.2, 4012, 345 }, + [78] = { 18.4, 56.8, 4012, 345 }, + }, + ["lvl"] = "53-54", + }, + [8597] = { + ["coords"] = { + [1] = { 70.5, 72.6, 139, 345 }, + [2] = { 80.2, 71.9, 139, 345 }, + [3] = { 75.1, 71.9, 139, 345 }, + [4] = { 75.8, 71.6, 139, 345 }, + [5] = { 79.7, 70.5, 139, 345 }, + [6] = { 65.2, 70.1, 139, 345 }, + [7] = { 66.5, 69.5, 139, 345 }, + [8] = { 74.6, 69.4, 139, 345 }, + [9] = { 76.5, 68.1, 139, 345 }, + [10] = { 66.4, 67.7, 139, 345 }, + [11] = { 70, 66.9, 139, 345 }, + [12] = { 77.6, 66.7, 139, 345 }, + [13] = { 68, 64, 139, 345 }, + [14] = { 76.7, 63.2, 139, 345 }, + [15] = { 75.7, 63.1, 139, 345 }, + [16] = { 48.2, 62.7, 139, 345 }, + [17] = { 46.4, 62.7, 139, 345 }, + [18] = { 52.3, 62.2, 139, 345 }, + [19] = { 53.2, 62, 139, 345 }, + [20] = { 71.1, 61.1, 139, 345 }, + [21] = { 54.1, 61.1, 139, 345 }, + [22] = { 64.4, 60.8, 139, 345 }, + [23] = { 58.3, 60.8, 139, 345 }, + [24] = { 56.8, 59, 139, 345 }, + [25] = { 65.9, 58.8, 139, 345 }, + [26] = { 68.2, 58.7, 139, 345 }, + [27] = { 55.2, 58.7, 139, 345 }, + [28] = { 53.1, 57.9, 139, 345 }, + [29] = { 54.3, 57.6, 139, 345 }, + [30] = { 64, 56.1, 139, 345 }, + [31] = { 49.3, 56, 139, 345 }, + [32] = { 54.9, 54.8, 139, 345 }, + [33] = { 73.3, 54.2, 139, 345 }, + [34] = { 54.8, 53.9, 139, 345 }, + [35] = { 27.3, 55.1, 4012, 345 }, + [36] = { 39.2, 54.2, 4012, 345 }, + [37] = { 32.9, 54.2, 4012, 345 }, + [38] = { 33.9, 53.9, 4012, 345 }, + [39] = { 38.7, 52.5, 4012, 345 }, + [40] = { 20.9, 52, 4012, 345 }, + [41] = { 22.4, 51.2, 4012, 345 }, + [42] = { 32.4, 51.2, 4012, 345 }, + [43] = { 34.7, 49.5, 4012, 345 }, + [44] = { 22.4, 49.1, 4012, 345 }, + [45] = { 26.8, 48.1, 4012, 345 }, + [46] = { 36.1, 47.8, 4012, 345 }, + [47] = { 24.3, 44.6, 4012, 345 }, + [48] = { 35, 43.6, 4012, 345 }, + [49] = { 33.8, 43.5, 4012, 345 }, + [50] = { 0, 43, 4012, 345 }, + [51] = { 5.1, 42.3, 4012, 345 }, + [52] = { 6.2, 42.1, 4012, 345 }, + [53] = { 28.1, 41, 4012, 345 }, + [54] = { 7.3, 41, 4012, 345 }, + [55] = { 19.9, 40.6, 4012, 345 }, + [56] = { 12.5, 40.6, 4012, 345 }, + [57] = { 10.6, 38.4, 4012, 345 }, + [58] = { 21.8, 38.2, 4012, 345 }, + [59] = { 24.5, 38.1, 4012, 345 }, + [60] = { 8.7, 38, 4012, 345 }, + [61] = { 6, 37, 4012, 345 }, + [62] = { 7.6, 36.8, 4012, 345 }, + [63] = { 19.4, 34.9, 4012, 345 }, + [64] = { 1.4, 34.8, 4012, 345 }, + [65] = { 8.3, 33.2, 4012, 345 }, + [66] = { 30.8, 32.5, 4012, 345 }, + [67] = { 8.1, 32.2, 4012, 345 }, + }, + ["lvl"] = "55-56", + }, + [8598] = { + ["coords"] = { + [1] = { 69.9, 49.6, 139, 345 }, + [2] = { 63.2, 48, 139, 345 }, + [3] = { 62.4, 47.7, 139, 345 }, + [4] = { 56.4, 46, 139, 345 }, + [5] = { 69.6, 46, 139, 345 }, + [6] = { 70.4, 44.7, 139, 345 }, + [7] = { 65.5, 44.6, 139, 345 }, + [8] = { 64.4, 44, 139, 345 }, + [9] = { 70.6, 43.3, 139, 345 }, + [10] = { 34.8, 43.2, 139, 345 }, + [11] = { 52.3, 43.1, 139, 345 }, + [12] = { 69.5, 42.1, 139, 345 }, + [13] = { 31.2, 41.9, 139, 345 }, + [14] = { 62.6, 41.6, 139, 345 }, + [15] = { 50.6, 41.6, 139, 345 }, + [16] = { 72.4, 41.4, 139, 345 }, + [17] = { 32.3, 40.7, 139, 345 }, + [18] = { 34.8, 40.6, 139, 345 }, + [19] = { 50.2, 40.5, 139, 345 }, + [20] = { 72.8, 40.5, 139, 345 }, + [21] = { 35.4, 40.5, 139, 345 }, + [22] = { 49.3, 39.7, 139, 345 }, + [23] = { 53.8, 39.6, 139, 345 }, + [24] = { 45, 39.4, 139, 345 }, + [25] = { 52.6, 39.3, 139, 345 }, + [26] = { 51.9, 39, 139, 345 }, + [27] = { 47.5, 38.9, 139, 345 }, + [28] = { 46.1, 38.8, 139, 345 }, + [29] = { 52.8, 38.5, 139, 345 }, + [30] = { 50.9, 38.2, 139, 345 }, + [31] = { 69.2, 38.2, 139, 345 }, + [32] = { 72.4, 37.9, 139, 345 }, + [33] = { 63.9, 37.8, 139, 345 }, + [34] = { 46.3, 37.5, 139, 345 }, + [35] = { 48.5, 37, 139, 345 }, + [36] = { 31.1, 36.9, 139, 345 }, + [37] = { 61.8, 36.8, 139, 345 }, + [38] = { 23.8, 36.8, 139, 345 }, + [39] = { 44.4, 36.4, 139, 345 }, + [40] = { 68.8, 36.2, 139, 345 }, + [41] = { 63.6, 35.7, 139, 345 }, + [42] = { 51.2, 35.6, 139, 345 }, + [43] = { 22.8, 35.3, 139, 345 }, + [44] = { 58.2, 34.7, 139, 345 }, + [45] = { 23.9, 34.3, 139, 345 }, + [46] = { 66.1, 34, 139, 345 }, + [47] = { 67.1, 34, 139, 345 }, + [48] = { 65.3, 33, 139, 345 }, + [49] = { 62.6, 33, 139, 345 }, + [50] = { 53.3, 32.9, 139, 345 }, + [51] = { 61.1, 32.7, 139, 345 }, + [52] = { 55.4, 31.5, 139, 345 }, + [53] = { 51.6, 31.4, 139, 345 }, + [54] = { 49.7, 30.7, 139, 345 }, + [55] = { 66.2, 30.5, 139, 345 }, + [56] = { 62.4, 30.2, 139, 345 }, + [57] = { 48.1, 29.8, 139, 345 }, + [58] = { 52.1, 29.8, 139, 345 }, + [59] = { 55.2, 29.7, 139, 345 }, + [60] = { 60.2, 29.6, 139, 345 }, + [61] = { 56.9, 29.1, 139, 345 }, + [62] = { 56.2, 28.5, 139, 345 }, + [63] = { 59.5, 28.4, 139, 345 }, + [64] = { 63.3, 27.9, 139, 345 }, + [65] = { 20.4, 26.8, 139, 345 }, + [66] = { 67.7, 26.3, 139, 345 }, + [67] = { 19.6, 25.9, 139, 345 }, + [68] = { 20.6, 25.9, 139, 345 }, + [69] = { 20.3, 24.7, 139, 345 }, + [70] = { 62.5, 24.4, 139, 345 }, + [71] = { 20, 22.7, 139, 345 }, + [72] = { 57.9, 21.3, 139, 345 }, + [73] = { 57.9, 20.2, 139, 345 }, + [74] = { 26.6, 26.9, 4012, 345 }, + [75] = { 18.4, 24.9, 4012, 345 }, + [76] = { 17.4, 24.6, 4012, 345 }, + [77] = { 10, 22.5, 4012, 345 }, + [78] = { 26.3, 22.5, 4012, 345 }, + [79] = { 27.3, 20.9, 4012, 345 }, + [80] = { 21.2, 20.8, 4012, 345 }, + [81] = { 19.9, 20.1, 4012, 345 }, + [82] = { 27.5, 19.2, 4012, 345 }, + [83] = { 5, 19, 4012, 345 }, + [84] = { 26.2, 17.7, 4012, 345 }, + [85] = { 17.7, 17.2, 4012, 345 }, + [86] = { 2.9, 17.1, 4012, 345 }, + [87] = { 29.7, 16.8, 4012, 345 }, + [88] = { 2.5, 15.8, 4012, 345 }, + [89] = { 30.2, 15.8, 4012, 345 }, + [90] = { 1.4, 14.8, 4012, 345 }, + [91] = { 6.9, 14.7, 4012, 345 }, + [92] = { 5.4, 14.3, 4012, 345 }, + [93] = { 4.5, 14, 4012, 345 }, + [94] = { 5.7, 13.3, 4012, 345 }, + [95] = { 3.3, 13, 4012, 345 }, + [96] = { 25.7, 13, 4012, 345 }, + [97] = { 29.6, 12.6, 4012, 345 }, + [98] = { 19.3, 12.5, 4012, 345 }, + [99] = { 0.4, 11.4, 4012, 345 }, + [100] = { 16.7, 11.2, 4012, 345 }, + [101] = { 25.3, 10.5, 4012, 345 }, + [102] = { 18.9, 9.9, 4012, 345 }, + [103] = { 3.8, 9.8, 4012, 345 }, + [104] = { 12.2, 8.7, 4012, 345 }, + [105] = { 22, 7.9, 4012, 345 }, + [106] = { 23.2, 7.8, 4012, 345 }, + [107] = { 21, 6.6, 4012, 345 }, + [108] = { 17.6, 6.6, 4012, 345 }, + [109] = { 6.3, 6.4, 4012, 345 }, + [110] = { 15.8, 6.2, 4012, 345 }, + [111] = { 8.8, 4.7, 4012, 345 }, + [112] = { 4.2, 4.6, 4012, 345 }, + [113] = { 1.8, 3.7, 4012, 345 }, + [114] = { 22.1, 3.6, 4012, 345 }, + [115] = { 17.4, 3.1, 4012, 345 }, + [116] = { 4.8, 2.7, 4012, 345 }, + [117] = { 8.6, 2.6, 4012, 345 }, + [118] = { 14.7, 2.4, 4012, 345 }, + [119] = { 10.7, 1.8, 4012, 345 }, + [120] = { 9.9, 1, 4012, 345 }, + [121] = { 13.9, 1, 4012, 345 }, + [122] = { 18.6, 0.4, 4012, 345 }, + [123] = { 68.4, 98.8, 5225, 345 }, + [124] = { 98.7, 93.3, 5225, 345 }, + [125] = { 63.9, 89.5, 5225, 345 }, + [126] = { 62.9, 88.3, 5225, 345 }, + [127] = { 64.1, 88.3, 5225, 345 }, + [128] = { 63.8, 86.8, 5225, 345 }, + [129] = { 63.4, 84.4, 5225, 345 }, + }, + ["lvl"] = "57-58", + }, + [8599] = "_", + [8600] = { + ["coords"] = { + [1] = { 84.1, 69, 28, 345 }, + [2] = { 82.4, 68.5, 28, 345 }, + [3] = { 83.1, 64.7, 28, 345 }, + [4] = { 82.8, 61.6, 28, 345 }, + [5] = { 77.4, 58.6, 28, 345 }, + [6] = { 76, 57.4, 28, 345 }, + [7] = { 78.6, 57.1, 28, 345 }, + [8] = { 75.6, 56.1, 28, 345 }, + [9] = { 74.4, 55.8, 28, 345 }, + [10] = { 75.7, 55.6, 28, 345 }, + [11] = { 78, 55.3, 28, 345 }, + [12] = { 73, 54.8, 28, 345 }, + [13] = { 74, 52.8, 28, 345 }, + [14] = { 75.9, 52.4, 28, 345 }, + [15] = { 76.9, 51.6, 28, 345 }, + [16] = { 77.4, 48.4, 28, 345 }, + [17] = { 76.2, 47.9, 28, 345 }, + [18] = { 75.2, 44.5, 28, 345 }, + [19] = { 74.8, 42.2, 28, 345 }, + [20] = { 26.2, 93.5, 139, 345 }, + [21] = { 24.4, 92.9, 139, 345 }, + [22] = { 26.7, 89.1, 139, 345 }, + [23] = { 44.6, 88.9, 139, 345 }, + [24] = { 25.1, 88.7, 139, 345 }, + [25] = { 61.2, 87.3, 139, 345 }, + [26] = { 62, 86.7, 139, 345 }, + [27] = { 60.6, 85.9, 139, 345 }, + [28] = { 42.9, 85.8, 139, 345 }, + [29] = { 47.2, 85.6, 139, 345 }, + [30] = { 32.7, 85.3, 139, 345 }, + [31] = { 24.7, 85.2, 139, 345 }, + [32] = { 64.5, 84.9, 139, 345 }, + [33] = { 42, 84.5, 139, 345 }, + [34] = { 33.6, 84.5, 139, 345 }, + [35] = { 32, 84.4, 139, 345 }, + [36] = { 35.3, 84.3, 139, 345 }, + [37] = { 37.5, 84.2, 139, 345 }, + [38] = { 74, 84, 139, 345 }, + [39] = { 72, 83.7, 139, 345 }, + [40] = { 42.1, 82.6, 139, 345 }, + [41] = { 44.4, 82.5, 139, 345 }, + [42] = { 32, 82.4, 139, 345 }, + [43] = { 33.7, 82.3, 139, 345 }, + [44] = { 42, 82.2, 139, 345 }, + [45] = { 18.8, 81.8, 139, 345 }, + [46] = { 54.7, 80.9, 139, 345 }, + [47] = { 55.8, 80.8, 139, 345 }, + [48] = { 50.6, 80.6, 139, 345 }, + [49] = { 50.2, 80.6, 139, 345 }, + [50] = { 17.2, 80.5, 139, 345 }, + [51] = { 20.1, 80.2, 139, 345 }, + [52] = { 68.8, 79.9, 139, 345 }, + [53] = { 16.8, 79.1, 139, 345 }, + [54] = { 15.4, 78.8, 139, 345 }, + [55] = { 16.9, 78.6, 139, 345 }, + [56] = { 19.5, 78.2, 139, 345 }, + [57] = { 56.6, 78.1, 139, 345 }, + [58] = { 52.9, 77.8, 139, 345 }, + [59] = { 13.8, 77.7, 139, 345 }, + [60] = { 52.1, 77.6, 139, 345 }, + [61] = { 56.1, 77.3, 139, 345 }, + [62] = { 44.3, 77.2, 139, 345 }, + [63] = { 65.5, 77, 139, 345 }, + [64] = { 54.1, 76.8, 139, 345 }, + [65] = { 56.6, 76.4, 139, 345 }, + [66] = { 33.2, 76.2, 139, 345 }, + [67] = { 19.3, 76, 139, 345 }, + [68] = { 55, 75.7, 139, 345 }, + [69] = { 35.2, 75.5, 139, 345 }, + [70] = { 15, 75.5, 139, 345 }, + [71] = { 17.1, 75, 139, 345 }, + [72] = { 42.1, 74.9, 139, 345 }, + [73] = { 18.2, 74.1, 139, 345 }, + [74] = { 33.9, 73, 139, 345 }, + [75] = { 36.8, 72.5, 139, 345 }, + [76] = { 35.6, 71.5, 139, 345 }, + [77] = { 28.3, 71.4, 139, 345 }, + [78] = { 45.8, 71.2, 139, 345 }, + [79] = { 48.2, 71.1, 139, 345 }, + [80] = { 28.6, 70.7, 139, 345 }, + [81] = { 36.1, 70.6, 139, 345 }, + [82] = { 18.8, 70.5, 139, 345 }, + [83] = { 27.8, 70.5, 139, 345 }, + [84] = { 42.9, 70.3, 139, 345 }, + [85] = { 46.3, 70.1, 139, 345 }, + [86] = { 17.4, 70, 139, 345 }, + [87] = { 29.1, 69.7, 139, 345 }, + [88] = { 33.3, 69.1, 139, 345 }, + [89] = { 42, 69, 139, 345 }, + [90] = { 31, 68.6, 139, 345 }, + [91] = { 21.2, 68.4, 139, 345 }, + [92] = { 40, 68.1, 139, 345 }, + [93] = { 19.2, 68, 139, 345 }, + [94] = { 36.2, 68, 139, 345 }, + [95] = { 29.3, 68, 139, 345 }, + [96] = { 27.6, 67.5, 139, 345 }, + [97] = { 40.8, 66.7, 139, 345 }, + [98] = { 24.2, 66.6, 139, 345 }, + [99] = { 18.2, 66.2, 139, 345 }, + [100] = { 16.3, 66.2, 139, 345 }, + [101] = { 21.5, 64.7, 139, 345 }, + [102] = { 31.2, 64.2, 139, 345 }, + [103] = { 27.1, 64, 139, 345 }, + [104] = { 15.9, 63.7, 139, 345 }, + [105] = { 21.8, 62.1, 139, 345 }, + [106] = { 16, 73.1, 4012, 345 }, + [107] = { 16.9, 72.3, 4012, 345 }, + [108] = { 15.2, 71.4, 4012, 345 }, + [109] = { 20, 70.2, 4012, 345 }, + [110] = { 31.7, 69, 4012, 345 }, + [111] = { 29.1, 68.6, 4012, 345 }, + [112] = { 8, 65.3, 4012, 345 }, + [113] = { 9.3, 65.1, 4012, 345 }, + [114] = { 3, 64.9, 4012, 345 }, + [115] = { 2.5, 64.8, 4012, 345 }, + [116] = { 25.3, 64.1, 4012, 345 }, + [117] = { 10.3, 61.8, 4012, 345 }, + [118] = { 5.7, 61.4, 4012, 345 }, + [119] = { 4.8, 61.2, 4012, 345 }, + [120] = { 9.7, 60.9, 4012, 345 }, + [121] = { 21.2, 60.4, 4012, 345 }, + [122] = { 7.3, 60.2, 4012, 345 }, + [123] = { 10.3, 59.7, 4012, 345 }, + [124] = { 8.3, 58.8, 4012, 345 }, + [125] = { 0, 53.3, 4012, 345 }, + }, + ["lvl"] = "53-55", + }, + [8601] = { + ["coords"] = { + [1] = { 72.2, 72.8, 139, 345 }, + [2] = { 78.2, 72.2, 139, 345 }, + [3] = { 68.6, 71.5, 139, 345 }, + [4] = { 80.8, 70.6, 139, 345 }, + [5] = { 65.1, 69.1, 139, 345 }, + [6] = { 44.8, 67.6, 139, 345 }, + [7] = { 49.1, 67.6, 139, 345 }, + [8] = { 68, 66.3, 139, 345 }, + [9] = { 46.2, 65.8, 139, 345 }, + [10] = { 67.4, 65.8, 139, 345 }, + [11] = { 49.6, 65.5, 139, 345 }, + [12] = { 64.8, 64.9, 139, 345 }, + [13] = { 45.4, 64.9, 139, 345 }, + [14] = { 64.7, 64.5, 139, 345 }, + [15] = { 48.5, 64.1, 139, 345 }, + [16] = { 45.7, 64, 139, 345 }, + [17] = { 47.3, 63.8, 139, 345 }, + [18] = { 69.8, 63.7, 139, 345 }, + [19] = { 66.5, 63.6, 139, 345 }, + [20] = { 50.7, 63.4, 139, 345 }, + [21] = { 52.8, 63.3, 139, 345 }, + [22] = { 62.5, 63, 139, 345 }, + [23] = { 70, 62.6, 139, 345 }, + [24] = { 72.5, 62.3, 139, 345 }, + [25] = { 67.3, 62.3, 139, 345 }, + [26] = { 48.8, 62.3, 139, 345 }, + [27] = { 56.3, 62.1, 139, 345 }, + [28] = { 69.2, 62.1, 139, 345 }, + [29] = { 50.1, 61.6, 139, 345 }, + [30] = { 73.6, 61.4, 139, 345 }, + [31] = { 60.9, 61, 139, 345 }, + [32] = { 49.8, 60.8, 139, 345 }, + [33] = { 52.7, 60.3, 139, 345 }, + [34] = { 51.2, 60.2, 139, 345 }, + [35] = { 76.5, 60.2, 139, 345 }, + [36] = { 48.8, 60.2, 139, 345 }, + [37] = { 61.9, 60, 139, 345 }, + [38] = { 66.6, 59.9, 139, 345 }, + [39] = { 74, 59.7, 139, 345 }, + [40] = { 60.1, 59.5, 139, 345 }, + [41] = { 57.7, 58.9, 139, 345 }, + [42] = { 48.8, 58.6, 139, 345 }, + [43] = { 58.4, 57.5, 139, 345 }, + [44] = { 61, 57.1, 139, 345 }, + [45] = { 69.5, 57.1, 139, 345 }, + [46] = { 68.6, 56.7, 139, 345 }, + [47] = { 69.8, 56.4, 139, 345 }, + [48] = { 52.1, 56.3, 139, 345 }, + [49] = { 73.2, 55.4, 139, 345 }, + [50] = { 56.4, 55.1, 139, 345 }, + [51] = { 60.1, 54.9, 139, 345 }, + [52] = { 70.7, 54.8, 139, 345 }, + [53] = { 50.1, 54.2, 139, 345 }, + [54] = { 57.7, 53.2, 139, 345 }, + [55] = { 55.3, 53.1, 139, 345 }, + [56] = { 56.9, 52.4, 139, 345 }, + [57] = { 53.5, 51.8, 139, 345 }, + [58] = { 53.5, 51.4, 139, 345 }, + [59] = { 55.5, 51, 139, 345 }, + [60] = { 53.3, 50.3, 139, 345 }, + [61] = { 29.5, 55.3, 4012, 345 }, + [62] = { 36.8, 54.6, 4012, 345 }, + [63] = { 25, 53.8, 4012, 345 }, + [64] = { 40, 52.6, 4012, 345 }, + [65] = { 20.7, 50.8, 4012, 345 }, + [66] = { 1.1, 49, 4012, 345 }, + [67] = { 24.3, 47.4, 4012, 345 }, + [68] = { 23.6, 46.7, 4012, 345 }, + [69] = { 1.7, 46.4, 4012, 345 }, + [70] = { 20.3, 45.7, 4012, 345 }, + [71] = { 20.2, 45.2, 4012, 345 }, + [72] = { 0.5, 44.7, 4012, 345 }, + [73] = { 26.5, 44.2, 4012, 345 }, + [74] = { 22.5, 44, 4012, 345 }, + [75] = { 3.1, 43.8, 4012, 345 }, + [76] = { 5.7, 43.7, 4012, 345 }, + [77] = { 17.5, 43.3, 4012, 345 }, + [78] = { 26.8, 42.9, 4012, 345 }, + [79] = { 29.9, 42.5, 4012, 345 }, + [80] = { 23.4, 42.5, 4012, 345 }, + [81] = { 0.8, 42.4, 4012, 345 }, + [82] = { 9.9, 42.3, 4012, 345 }, + [83] = { 25.8, 42.2, 4012, 345 }, + [84] = { 2.4, 41.6, 4012, 345 }, + [85] = { 31.1, 41.3, 4012, 345 }, + [86] = { 15.6, 40.9, 4012, 345 }, + [87] = { 2, 40.6, 4012, 345 }, + [88] = { 5.6, 40, 4012, 345 }, + [89] = { 3.7, 39.9, 4012, 345 }, + [90] = { 34.7, 39.9, 4012, 345 }, + [91] = { 0.8, 39.9, 4012, 345 }, + [92] = { 16.8, 39.6, 4012, 345 }, + [93] = { 22.6, 39.6, 4012, 345 }, + [94] = { 31.7, 39.3, 4012, 345 }, + [95] = { 14.7, 39.1, 4012, 345 }, + [96] = { 11.7, 38.3, 4012, 345 }, + [97] = { 0.8, 38, 4012, 345 }, + [98] = { 12.5, 36.6, 4012, 345 }, + [99] = { 15.7, 36.1, 4012, 345 }, + [100] = { 26.1, 36, 4012, 345 }, + [101] = { 25, 35.6, 4012, 345 }, + [102] = { 26.5, 35.3, 4012, 345 }, + [103] = { 4.9, 35.1, 4012, 345 }, + [104] = { 30.7, 34, 4012, 345 }, + [105] = { 10.1, 33.6, 4012, 345 }, + [106] = { 14.6, 33.4, 4012, 345 }, + [107] = { 27.6, 33.3, 4012, 345 }, + [108] = { 2.4, 32.6, 4012, 345 }, + [109] = { 11.6, 31.3, 4012, 345 }, + [110] = { 8.7, 31.3, 4012, 345 }, + [111] = { 10.7, 30.3, 4012, 345 }, + [112] = { 6.5, 29.6, 4012, 345 }, + [113] = { 6.6, 29.1, 4012, 345 }, + [114] = { 8.9, 28.6, 4012, 345 }, + [115] = { 6.3, 27.8, 4012, 345 }, + }, + ["lvl"] = "54-56", + }, + [8602] = { + ["coords"] = { + [1] = { 67.7, 50.9, 139, 345 }, + [2] = { 62.1, 48.8, 139, 345 }, + [3] = { 60.1, 47.4, 139, 345 }, + [4] = { 51.7, 44.4, 139, 345 }, + [5] = { 65.1, 44, 139, 345 }, + [6] = { 31.9, 43.4, 139, 345 }, + [7] = { 71.6, 43.3, 139, 345 }, + [8] = { 32.7, 43.1, 139, 345 }, + [9] = { 43.5, 43, 139, 345 }, + [10] = { 55.8, 42.8, 139, 345 }, + [11] = { 51.5, 42, 139, 345 }, + [12] = { 29.6, 41.8, 139, 345 }, + [13] = { 51.7, 41.8, 139, 345 }, + [14] = { 53, 41.7, 139, 345 }, + [15] = { 33.3, 41.6, 139, 345 }, + [16] = { 45.8, 39.9, 139, 345 }, + [17] = { 33.5, 39.4, 139, 345 }, + [18] = { 30.9, 39.4, 139, 345 }, + [19] = { 69.9, 39.1, 139, 345 }, + [20] = { 51.6, 38.7, 139, 345 }, + [21] = { 62.2, 38.2, 139, 345 }, + [22] = { 20.6, 38, 139, 345 }, + [23] = { 31.3, 37.6, 139, 345 }, + [24] = { 21.7, 37.2, 139, 345 }, + [25] = { 22.3, 37.1, 139, 345 }, + [26] = { 46.2, 36.5, 139, 345 }, + [27] = { 50.6, 36.5, 139, 345 }, + [28] = { 19.2, 36.4, 139, 345 }, + [29] = { 19.9, 35.8, 139, 345 }, + [30] = { 75, 35.8, 139, 345 }, + [31] = { 48.3, 35.5, 139, 345 }, + [32] = { 63.5, 34.3, 139, 345 }, + [33] = { 60.6, 34.2, 139, 345 }, + [34] = { 75.8, 33.8, 139, 345 }, + [35] = { 67.8, 33.6, 139, 345 }, + [36] = { 55.6, 32.9, 139, 345 }, + [37] = { 75.2, 32, 139, 345 }, + [38] = { 60.1, 31.4, 139, 345 }, + [39] = { 60.2, 29.8, 139, 345 }, + [40] = { 66.7, 29.6, 139, 345 }, + [41] = { 62.3, 29.5, 139, 345 }, + [42] = { 64.4, 28.2, 139, 345 }, + [43] = { 47.5, 28.1, 139, 345 }, + [44] = { 19.5, 28, 139, 345 }, + [45] = { 51.1, 27.7, 139, 345 }, + [46] = { 49.7, 27.2, 139, 345 }, + [47] = { 63.3, 26.1, 139, 345 }, + [48] = { 18.8, 25.1, 139, 345 }, + [49] = { 49.5, 25, 139, 345 }, + [50] = { 51.5, 24.9, 139, 345 }, + [51] = { 52.8, 24.2, 139, 345 }, + [52] = { 53.1, 23.3, 139, 345 }, + [53] = { 19.1, 23.1, 139, 345 }, + [54] = { 20.2, 23, 139, 345 }, + [55] = { 57.7, 20.9, 139, 345 }, + [56] = { 55.3, 20.7, 139, 345 }, + [57] = { 20.8, 20.1, 139, 345 }, + [58] = { 23.9, 28.4, 4012, 345 }, + [59] = { 17.1, 25.9, 4012, 345 }, + [60] = { 14.6, 24.3, 4012, 345 }, + [61] = { 4.4, 20.5, 4012, 345 }, + [62] = { 20.8, 20.1, 4012, 345 }, + [63] = { 28.7, 19.2, 4012, 345 }, + [64] = { 9.4, 18.5, 4012, 345 }, + [65] = { 4.1, 17.6, 4012, 345 }, + [66] = { 4.3, 17.4, 4012, 345 }, + [67] = { 5.9, 17.2, 4012, 345 }, + [68] = { 26.7, 14, 4012, 345 }, + [69] = { 4.2, 13.5, 4012, 345 }, + [70] = { 17.2, 12.9, 4012, 345 }, + [71] = { 3, 10.9, 4012, 345 }, + [72] = { 32.9, 10, 4012, 345 }, + [73] = { 0.2, 9.6, 4012, 345 }, + [74] = { 18.8, 8.1, 4012, 345 }, + [75] = { 15.3, 8, 4012, 345 }, + [76] = { 33.9, 7.5, 4012, 345 }, + [77] = { 24, 7.3, 4012, 345 }, + [78] = { 9.1, 6.4, 4012, 345 }, + [79] = { 33.1, 5.3, 4012, 345 }, + [80] = { 14.6, 4.6, 4012, 345 }, + [81] = { 14.7, 2.7, 4012, 345 }, + [82] = { 22.8, 2.4, 4012, 345 }, + [83] = { 17.3, 2.2, 4012, 345 }, + [84] = { 19.9, 0.7, 4012, 345 }, + [85] = { 3.6, 0, 4012, 345 }, + [86] = { 97.9, 91.1, 5225, 345 }, + [87] = { 62.8, 91, 5225, 345 }, + [88] = { 61.9, 87.3, 5225, 345 }, + [89] = { 62.3, 84.8, 5225, 345 }, + [90] = { 63.7, 84.6, 5225, 345 }, + [91] = { 64.4, 81, 5225, 345 }, + }, + ["lvl"] = "56-58", + }, + [8603] = { + ["coords"] = { + [1] = { 83.2, 71.1, 28, 345 }, + [2] = { 83, 65.8, 28, 345 }, + [3] = { 76.6, 56.7, 28, 345 }, + [4] = { 76.5, 56.5, 28, 345 }, + [5] = { 72.2, 54.5, 28, 345 }, + [6] = { 75.9, 53.6, 28, 345 }, + [7] = { 75.4, 52.4, 28, 345 }, + [8] = { 75.6, 52.1, 28, 345 }, + [9] = { 76.1, 43.5, 28, 345 }, + [10] = { 69.5, 37.1, 28, 345 }, + [11] = { 67.5, 26.5, 28, 345 }, + [12] = { 65.8, 26.3, 28, 345 }, + [13] = { 66.6, 22.9, 28, 345 }, + [14] = { 25.2, 95.8, 139, 345 }, + [15] = { 44.5, 91, 139, 345 }, + [16] = { 25, 89.9, 139, 345 }, + [17] = { 61.7, 86.3, 139, 345 }, + [18] = { 31.1, 85.4, 139, 345 }, + [19] = { 64.4, 85.1, 139, 345 }, + [20] = { 43.2, 83.5, 139, 345 }, + [21] = { 34.2, 83.1, 139, 345 }, + [22] = { 36.1, 82.7, 139, 345 }, + [23] = { 70.2, 82.4, 139, 345 }, + [24] = { 39.8, 81.8, 139, 345 }, + [25] = { 57.4, 80.8, 139, 345 }, + [26] = { 70.6, 80.4, 139, 345 }, + [27] = { 23.6, 79.9, 139, 345 }, + [28] = { 17.9, 79.7, 139, 345 }, + [29] = { 46.5, 79.6, 139, 345 }, + [30] = { 17.7, 79.6, 139, 345 }, + [31] = { 54.6, 79.5, 139, 345 }, + [32] = { 22, 79.4, 139, 345 }, + [33] = { 49.8, 79.3, 139, 345 }, + [34] = { 55.6, 78.8, 139, 345 }, + [35] = { 51.4, 78.5, 139, 345 }, + [36] = { 54.6, 78.2, 139, 345 }, + [37] = { 31, 78, 139, 345 }, + [38] = { 12.9, 77.3, 139, 345 }, + [39] = { 72.4, 76.4, 139, 345 }, + [40] = { 17.1, 76.4, 139, 345 }, + [41] = { 16.6, 74.9, 139, 345 }, + [42] = { 16.7, 74.6, 139, 345 }, + [43] = { 33.8, 74.5, 139, 345 }, + [44] = { 70, 74.3, 139, 345 }, + [45] = { 37, 74.2, 139, 345 }, + [46] = { 75.5, 73.9, 139, 345 }, + [47] = { 47.2, 73.7, 139, 345 }, + [48] = { 23.1, 72.9, 139, 345 }, + [49] = { 78.1, 72.5, 139, 345 }, + [50] = { 44.3, 71.8, 139, 345 }, + [51] = { 21.4, 71.8, 139, 345 }, + [52] = { 72.9, 71.8, 139, 345 }, + [53] = { 33.6, 71.5, 139, 345 }, + [54] = { 66.1, 71.4, 139, 345 }, + [55] = { 68.7, 71.1, 139, 345 }, + [56] = { 34.8, 70.5, 139, 345 }, + [57] = { 41.3, 70.4, 139, 345 }, + [58] = { 25.8, 70.2, 139, 345 }, + [59] = { 78.6, 70, 139, 345 }, + [60] = { 30.2, 69.6, 139, 345 }, + [61] = { 40.7, 69.5, 139, 345 }, + [62] = { 20.7, 69.2, 139, 345 }, + [63] = { 36.9, 69, 139, 345 }, + [64] = { 80.1, 68.8, 139, 345 }, + [65] = { 43.1, 68, 139, 345 }, + [66] = { 68.3, 67.8, 139, 345 }, + [67] = { 66.4, 67.6, 139, 345 }, + [68] = { 75.8, 67.5, 139, 345 }, + [69] = { 47.5, 66.2, 139, 345 }, + [70] = { 19.3, 66.2, 139, 345 }, + [71] = { 49.5, 66, 139, 345 }, + [72] = { 68.6, 65.5, 139, 345 }, + [73] = { 41.1, 65.3, 139, 345 }, + [74] = { 17.3, 65.1, 139, 345 }, + [75] = { 65.5, 64.7, 139, 345 }, + [76] = { 77.7, 63.7, 139, 345 }, + [77] = { 32.3, 63.5, 139, 345 }, + [78] = { 51.4, 62.9, 139, 345 }, + [79] = { 70.7, 62.9, 139, 345 }, + [80] = { 47.6, 61.5, 139, 345 }, + [81] = { 59.2, 61.4, 139, 345 }, + [82] = { 66.8, 61.4, 139, 345 }, + [83] = { 67.9, 61, 139, 345 }, + [84] = { 48.4, 60.3, 139, 345 }, + [85] = { 55.2, 59.4, 139, 345 }, + [86] = { 69.6, 59.1, 139, 345 }, + [87] = { 75.6, 58.8, 139, 345 }, + [88] = { 50.8, 58.8, 139, 345 }, + [89] = { 59.3, 58.2, 139, 345 }, + [90] = { 10, 58, 139, 345 }, + [91] = { 66.5, 57.1, 139, 345 }, + [92] = { 51.5, 56.3, 139, 345 }, + [93] = { 55.3, 56.3, 139, 345 }, + [94] = { 54.7, 55.3, 139, 345 }, + [95] = { 58.5, 55, 139, 345 }, + [96] = { 72.4, 54.5, 139, 345 }, + [97] = { 60.9, 54.2, 139, 345 }, + [98] = { 60.1, 54.1, 139, 345 }, + [99] = { 51.2, 53.8, 139, 345 }, + [100] = { 55.7, 53.3, 139, 345 }, + [101] = { 55, 49.7, 139, 345 }, + [102] = { 7.7, 46.2, 139, 345 }, + [103] = { 5.8, 46, 139, 345 }, + [104] = { 6.8, 42.2, 139, 345 }, + [105] = { 16.6, 71.8, 4012, 345 }, + [106] = { 19.8, 70.4, 4012, 345 }, + [107] = { 27, 67.1, 4012, 345 }, + [108] = { 11.4, 65.2, 4012, 345 }, + [109] = { 27.5, 64.7, 4012, 345 }, + [110] = { 7.8, 63.5, 4012, 345 }, + [111] = { 1.9, 63.3, 4012, 345 }, + [112] = { 9.1, 62.6, 4012, 345 }, + [113] = { 3.9, 62.3, 4012, 345 }, + [114] = { 7.9, 61.9, 4012, 345 }, + [115] = { 29.7, 59.7, 4012, 345 }, + [116] = { 26.8, 57.1, 4012, 345 }, + [117] = { 33.5, 56.6, 4012, 345 }, + [118] = { 36.6, 55, 4012, 345 }, + [119] = { 30.4, 54.1, 4012, 345 }, + [120] = { 22, 53.5, 4012, 345 }, + [121] = { 25.2, 53.2, 4012, 345 }, + [122] = { 37.3, 51.8, 4012, 345 }, + [123] = { 39.1, 50.5, 4012, 345 }, + [124] = { 24.6, 49.1, 4012, 345 }, + [125] = { 22.3, 49, 4012, 345 }, + [126] = { 33.8, 48.8, 4012, 345 }, + [127] = { 1.7, 47, 4012, 345 }, + [128] = { 25.1, 46.4, 4012, 345 }, + [129] = { 21.3, 45.5, 4012, 345 }, + [130] = { 36.1, 44.1, 4012, 345 }, + [131] = { 4, 43.2, 4012, 345 }, + [132] = { 27.7, 43.2, 4012, 345 }, + [133] = { 13.5, 41.4, 4012, 345 }, + [134] = { 22.8, 41.3, 4012, 345 }, + [135] = { 24.2, 40.9, 4012, 345 }, + [136] = { 0.3, 40, 4012, 345 }, + [137] = { 8.6, 38.9, 4012, 345 }, + [138] = { 26.2, 38.5, 4012, 345 }, + [139] = { 33.6, 38.2, 4012, 345 }, + [140] = { 3.2, 38.2, 4012, 345 }, + [141] = { 13.6, 37.5, 4012, 345 }, + [142] = { 22.4, 36.1, 4012, 345 }, + [143] = { 4, 35.1, 4012, 345 }, + [144] = { 8.7, 35.1, 4012, 345 }, + [145] = { 8, 33.8, 4012, 345 }, + [146] = { 12.6, 33.5, 4012, 345 }, + [147] = { 29.7, 32.9, 4012, 345 }, + [148] = { 15.6, 32.6, 4012, 345 }, + [149] = { 14.6, 32.4, 4012, 345 }, + [150] = { 3.7, 32.1, 4012, 345 }, + [151] = { 9.2, 31.4, 4012, 345 }, + [152] = { 8.3, 27, 4012, 345 }, + }, + ["lvl"] = "54-55", + }, + [8605] = { + ["coords"] = { + [1] = { 70.4, 50.8, 139, 345 }, + [2] = { 69.9, 49, 139, 345 }, + [3] = { 58.5, 48.5, 139, 345 }, + [4] = { 70.3, 46.5, 139, 345 }, + [5] = { 32.3, 45.1, 139, 345 }, + [6] = { 67.5, 44.7, 139, 345 }, + [7] = { 50.6, 44.7, 139, 345 }, + [8] = { 62.9, 44.6, 139, 345 }, + [9] = { 72, 44.3, 139, 345 }, + [10] = { 32.9, 44.1, 139, 345 }, + [11] = { 32.2, 42.2, 139, 345 }, + [12] = { 69.2, 41.7, 139, 345 }, + [13] = { 52.3, 41.5, 139, 345 }, + [14] = { 45, 41.2, 139, 345 }, + [15] = { 43.8, 40.7, 139, 345 }, + [16] = { 31.8, 39.9, 139, 345 }, + [17] = { 46.6, 39.6, 139, 345 }, + [18] = { 35.8, 39.6, 139, 345 }, + [19] = { 48.9, 39.6, 139, 345 }, + [20] = { 73.9, 39.6, 139, 345 }, + [21] = { 23.1, 39, 139, 345 }, + [22] = { 56.3, 38.9, 139, 345 }, + [23] = { 53.8, 38.7, 139, 345 }, + [24] = { 53.5, 37.9, 139, 345 }, + [25] = { 63.4, 37.6, 139, 345 }, + [26] = { 69, 35.9, 139, 345 }, + [27] = { 62, 34.1, 139, 345 }, + [28] = { 68.7, 34.1, 139, 345 }, + [29] = { 54.5, 33.3, 139, 345 }, + [30] = { 75.1, 33.1, 139, 345 }, + [31] = { 59.1, 32.8, 139, 345 }, + [32] = { 64, 32.6, 139, 345 }, + [33] = { 61.6, 32.4, 139, 345 }, + [34] = { 66.9, 31.5, 139, 345 }, + [35] = { 63.9, 30.1, 139, 345 }, + [36] = { 18.7, 28.9, 139, 345 }, + [37] = { 66, 28.8, 139, 345 }, + [38] = { 49, 27.8, 139, 345 }, + [39] = { 65.4, 27.8, 139, 345 }, + [40] = { 18.1, 27.4, 139, 345 }, + [41] = { 68.9, 26.7, 139, 345 }, + [42] = { 65.5, 26.5, 139, 345 }, + [43] = { 60.1, 26.5, 139, 345 }, + [44] = { 61.3, 23.5, 139, 345 }, + [45] = { 27.2, 28.4, 4012, 345 }, + [46] = { 26.6, 26.1, 4012, 345 }, + [47] = { 12.6, 25.5, 4012, 345 }, + [48] = { 27.1, 23.1, 4012, 345 }, + [49] = { 23.7, 21, 4012, 345 }, + [50] = { 3, 20.9, 4012, 345 }, + [51] = { 18, 20.8, 4012, 345 }, + [52] = { 29.1, 20.4, 4012, 345 }, + [53] = { 25.8, 17.2, 4012, 345 }, + [54] = { 5, 17, 4012, 345 }, + [55] = { 0.9, 14.6, 4012, 345 }, + [56] = { 31.5, 14.6, 4012, 345 }, + [57] = { 9.9, 13.7, 4012, 345 }, + [58] = { 6.9, 13.5, 4012, 345 }, + [59] = { 6.6, 12.6, 4012, 345 }, + [60] = { 18.7, 12.2, 4012, 345 }, + [61] = { 25.5, 10.2, 4012, 345 }, + [62] = { 16.9, 7.9, 4012, 345 }, + [63] = { 25.2, 7.9, 4012, 345 }, + [64] = { 7.8, 6.9, 4012, 345 }, + [65] = { 33, 6.8, 4012, 345 }, + [66] = { 13.3, 6.3, 4012, 345 }, + [67] = { 19.4, 6.1, 4012, 345 }, + [68] = { 16.5, 5.8, 4012, 345 }, + [69] = { 23, 4.8, 4012, 345 }, + [70] = { 19.2, 3.1, 4012, 345 }, + [71] = { 21.9, 1.4, 4012, 345 }, + [72] = { 1, 0.3, 4012, 345 }, + [73] = { 21.1, 0.2, 4012, 345 }, + [74] = { 61.8, 92.1, 5225, 345 }, + [75] = { 99.8, 90.8, 5225, 345 }, + [76] = { 61.1, 90.2, 5225, 345 }, + }, + ["lvl"] = "56-57", + }, + [8606] = { + ["coords"] = { + [1] = { 54.5, 70.5, 139, 345 }, + [2] = { 53.3, 70.5, 139, 345 }, + [3] = { 51.7, 70.3, 139, 345 }, + [4] = { 52.7, 69.6, 139, 345 }, + [5] = { 50.7, 69, 139, 345 }, + [6] = { 55.9, 68.9, 139, 345 }, + [7] = { 52.7, 67.5, 139, 345 }, + [8] = { 72.1, 67.4, 139, 345 }, + [9] = { 52.3, 67.3, 139, 345 }, + [10] = { 55.8, 66.9, 139, 345 }, + [11] = { 57, 66.2, 139, 345 }, + [12] = { 73.7, 65.7, 139, 345 }, + [13] = { 74.3, 63.8, 139, 345 }, + [14] = { 72.7, 63.6, 139, 345 }, + [15] = { 73.6, 63.3, 139, 345 }, + [16] = { 76, 63.1, 139, 345 }, + [17] = { 77.3, 61.5, 139, 345 }, + [18] = { 72.7, 61.1, 139, 345 }, + [19] = { 74.9, 60.3, 139, 345 }, + [20] = { 76.4, 58.8, 139, 345 }, + [21] = { 77.1, 57.9, 139, 345 }, + [22] = { 76, 56.8, 139, 345 }, + [23] = { 7.8, 52.5, 4012, 345 }, + [24] = { 6.3, 52.4, 4012, 345 }, + [25] = { 4.3, 52.2, 4012, 345 }, + [26] = { 5.5, 51.4, 4012, 345 }, + [27] = { 3.2, 50.6, 4012, 345 }, + [28] = { 9.4, 50.5, 4012, 345 }, + [29] = { 5.5, 48.9, 4012, 345 }, + [30] = { 29.4, 48.7, 4012, 345 }, + [31] = { 5, 48.6, 4012, 345 }, + [32] = { 9.3, 48.1, 4012, 345 }, + [33] = { 10.8, 47.3, 4012, 345 }, + [34] = { 31.3, 46.6, 4012, 345 }, + [35] = { 32, 44.3, 4012, 345 }, + [36] = { 30, 44, 4012, 345 }, + [37] = { 31.2, 43.7, 4012, 345 }, + [38] = { 34.1, 43.5, 4012, 345 }, + [39] = { 35.7, 41.5, 4012, 345 }, + [40] = { 30, 41, 4012, 345 }, + [41] = { 32.8, 40, 4012, 345 }, + [42] = { 34.6, 38.2, 4012, 345 }, + [43] = { 35.4, 37.1, 4012, 345 }, + [44] = { 34.1, 35.7, 4012, 345 }, + }, + ["lvl"] = "55-56", + }, + [8607] = { + ["coords"] = { + [1] = { 56.6, 69.1, 139, 345 }, + [2] = { 54.2, 69, 139, 345 }, + [3] = { 54.8, 65.4, 139, 345 }, + [4] = { 76.3, 62.7, 139, 345 }, + [5] = { 74.7, 62.4, 139, 345 }, + [6] = { 73.9, 61.3, 139, 345 }, + [7] = { 76.6, 58.6, 139, 345 }, + [8] = { 10.3, 50.7, 4012, 345 }, + [9] = { 7.4, 50.7, 4012, 345 }, + [10] = { 8.1, 46.3, 4012, 345 }, + [11] = { 34.5, 43, 4012, 345 }, + [12] = { 32.5, 42.6, 4012, 345 }, + [13] = { 31.5, 41.2, 4012, 345 }, + [14] = { 34.9, 37.9, 4012, 345 }, + }, + ["lvl"] = "54-55", + }, + [8608] = { + ["coords"] = {}, + ["lvl"] = "53", + }, + [8609] = { + ["coords"] = { + [1] = { 65.5, 24.3, 4, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [8610] = { + ["coords"] = { + [1] = { 22, 49.6, 16, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [8613] = "_", + [8620] = { + ["coords"] = {}, + ["lvl"] = "20", + }, + [8637] = { + ["coords"] = { + [1] = { 62.3, 62.4, 51, 500 }, + [2] = { 62.8, 62.3, 51, 500 }, + [3] = { 62.4, 61.7, 51, 500 }, + [4] = { 63.1, 61.3, 51, 500 }, + [5] = { 63.9, 60.4, 51, 500 }, + [6] = { 63.1, 59.6, 51, 500 }, + [7] = { 63.7, 59.3, 51, 500 }, + [8] = { 63.1, 58.7, 51, 500 }, + [9] = { 62.9, 58.5, 51, 500 }, + [10] = { 62.7, 58.1, 51, 500 }, + [11] = { 69.2, 34.2, 51, 500 }, + [12] = { 68.9, 33.2, 51, 500 }, + [13] = { 69.3, 32.7, 51, 500 }, + }, + ["lvl"] = "44-45", + }, + [8660] = { + ["coords"] = { + [1] = { 17.9, 65.6, 16, 180000 }, + }, + ["lvl"] = "48", + ["rnk"] = "4", + }, + [8662] = { + ["coords"] = { + [1] = { 37.3, 17.2, 722, 18000 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [8663] = "_", + [8666] = { + ["coords"] = { + [1] = { 47.1, 56.5, 1519, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [8667] = { + ["coords"] = { + [1] = { 36.1, 64.1, 440, 300 }, + [2] = { 59.6, 58.1, 440, 300 }, + [3] = { 43, 46.6, 440, 300 }, + [4] = { 45.6, 46, 440, 300 }, + [5] = { 38.6, 42.5, 440, 300 }, + [6] = { 47, 59.3, 1941, 300 }, + }, + ["lvl"] = "43-45", + }, + [8670] = { + ["coords"] = { + [1] = { 60.8, 71.5, 1519, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [8675] = { + ["coords"] = { + [1] = { 51.4, 44.3, 4, 300 }, + [2] = { 53, 42.5, 4, 120 }, + [3] = { 59.7, 42.3, 4, 300 }, + [4] = { 51.4, 41.5, 4, 300 }, + [5] = { 53.9, 41.4, 4, 300 }, + [6] = { 46, 41.1, 4, 120 }, + [7] = { 52.5, 39.1, 4, 300 }, + [8] = { 50, 38, 4, 300 }, + [9] = { 53.1, 37.9, 4, 300 }, + [10] = { 47, 36.6, 4, 120 }, + [11] = { 61.6, 36.6, 4, 300 }, + [12] = { 44.7, 36.1, 4, 300 }, + [13] = { 60.1, 35.1, 4, 300 }, + [14] = { 52, 33.6, 4, 300 }, + }, + ["lvl"] = "50-51", + }, + [8676] = "_", + [8677] = "_", + [8696] = { + ["coords"] = { + [1] = { 64.2, 13.6, 722, 18000 }, + }, + ["fac"] = "AH", + ["lvl"] = "36", + }, + [8716] = { + ["coords"] = { + [1] = { 39.2, 77.1, 4, 900 }, + [2] = { 39.2, 73.7, 4, 900 }, + [3] = { 38.1, 72.3, 4, 900 }, + [4] = { 37.2, 71.1, 4, 900 }, + [5] = { 34.9, 70.7, 4, 900 }, + [6] = { 34.6, 64.2, 4, 900 }, + [7] = { 74.2, 23.8, 33, 900 }, + [8] = { 73.8, 23.2, 33, 900 }, + [9] = { 72.6, 23, 33, 900 }, + [10] = { 72.4, 19.6, 33, 900 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [8717] = { + ["coords"] = { + [1] = { 40.1, 75.6, 4, 900 }, + [2] = { 39.5, 75.2, 4, 900 }, + [3] = { 40.2, 72.7, 4, 900 }, + [4] = { 40, 69.5, 4, 900 }, + [5] = { 39.2, 68, 4, 900 }, + [6] = { 41.1, 67.7, 4, 900 }, + [7] = { 42.2, 66.3, 4, 900 }, + [8] = { 38.3, 66.1, 4, 900 }, + [9] = { 41, 64.9, 4, 900 }, + [10] = { 38.9, 64.8, 4, 900 }, + [11] = { 42, 63.4, 4, 900 }, + [12] = { 42.2, 62.6, 4, 900 }, + [13] = { 41.1, 62, 4, 900 }, + [14] = { 34.8, 61.9, 4, 900 }, + [15] = { 39, 61.8, 4, 900 }, + [16] = { 43, 61.7, 4, 900 }, + [17] = { 34.2, 61, 4, 900 }, + [18] = { 42.2, 60.8, 4, 900 }, + [19] = { 40.1, 60.8, 4, 900 }, + [20] = { 38.2, 60.5, 4, 900 }, + [21] = { 44.1, 59.8, 4, 900 }, + [22] = { 41, 59.1, 4, 900 }, + [23] = { 37, 59.1, 4, 900 }, + [24] = { 44.1, 59, 4, 900 }, + [25] = { 34.9, 59, 4, 900 }, + [26] = { 38.9, 59, 4, 900 }, + [27] = { 43, 58.9, 4, 900 }, + [28] = { 38.2, 57.9, 4, 900 }, + [29] = { 41.8, 57.8, 4, 900 }, + [30] = { 40, 57.7, 4, 900 }, + [31] = { 43, 57.6, 4, 900 }, + [32] = { 38.9, 56, 4, 900 }, + [33] = { 36.9, 55.8, 4, 900 }, + [34] = { 41.3, 55.8, 4, 900 }, + [35] = { 40.1, 54.5, 4, 900 }, + [36] = { 36, 54.4, 4, 900 }, + [37] = { 34.3, 54.3, 4, 900 }, + [38] = { 38.1, 54.1, 4, 900 }, + [39] = { 39.2, 53.3, 4, 900 }, + [40] = { 37.2, 53.1, 4, 900 }, + [41] = { 35.2, 53.1, 4, 900 }, + [42] = { 35.8, 51.5, 4, 900 }, + [43] = { 74.4, 20.6, 33, 900 }, + [44] = { 72.5, 18.3, 33, 900 }, + [45] = { 72.2, 17.9, 33, 900 }, + [46] = { 74.3, 17.6, 33, 900 }, + [47] = { 73.7, 16.9, 33, 900 }, + [48] = { 72.6, 16.8, 33, 900 }, + [49] = { 74.3, 16.3, 33, 900 }, + [50] = { 73.6, 15.1, 33, 900 }, + [51] = { 73.2, 14.4, 33, 900 }, + [52] = { 72.2, 14.3, 33, 900 }, + [53] = { 74.3, 14.2, 33, 900 }, + [54] = { 73.8, 13.7, 33, 900 }, + [55] = { 72.7, 13.7, 33, 900 }, + [56] = { 73.1, 12.9, 33, 900 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [8718] = { + ["coords"] = { + [1] = { 39.8, 76.9, 4, 900 }, + [2] = { 43.4, 75.1, 4, 900 }, + [3] = { 39.6, 75.1, 4, 900 }, + [4] = { 39.7, 71.5, 4, 900 }, + [5] = { 40.2, 70.8, 4, 900 }, + [6] = { 42, 67.5, 4, 900 }, + [7] = { 40.2, 64.6, 4, 900 }, + [8] = { 42.3, 62.8, 4, 900 }, + [9] = { 42.1, 62.7, 4, 900 }, + [10] = { 44.1, 61.2, 4, 900 }, + [11] = { 35, 60.8, 4, 900 }, + [12] = { 43.3, 58.9, 4, 900 }, + [13] = { 37.9, 55.8, 4, 900 }, + [14] = { 36.4, 53.3, 4, 900 }, + [15] = { 72.6, 17.8, 33, 900 }, + [16] = { 74.2, 15.1, 33, 900 }, + [17] = { 73.4, 13.8, 33, 900 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [8719] = { + ["coords"] = { + [1] = { 61.2, 71.3, 1519, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [8738] = { + ["coords"] = { + [1] = { 62.7, 36.3, 17, 30 }, + }, + ["lvl"] = "40", + }, + [8756] = { + ["coords"] = { + [1] = { 60.9, 67.1, 16, 600 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + ["rnk"] = "1", + }, + [8761] = { + ["coords"] = { + [1] = { 57.3, 88.6, 16, 333 }, + [2] = { 57.2, 86.4, 16, 333 }, + [3] = { 56, 86.4, 16, 333 }, + [4] = { 47.6, 85.9, 16, 333 }, + [5] = { 57.3, 84.8, 16, 333 }, + [6] = { 53.4, 84.6, 16, 333 }, + [7] = { 54.6, 84.6, 16, 333 }, + [8] = { 46.8, 84.4, 16, 333 }, + [9] = { 58.6, 84.3, 16, 333 }, + [10] = { 56, 84.3, 16, 333 }, + [11] = { 49.4, 84.3, 16, 333 }, + [12] = { 46.1, 83.4, 16, 333 }, + [13] = { 46.8, 82.8, 16, 333 }, + [14] = { 60, 82.6, 16, 333 }, + [15] = { 45.6, 82.6, 16, 333 }, + [16] = { 53.2, 82.6, 16, 333 }, + [17] = { 50.7, 82.6, 16, 333 }, + [18] = { 52, 82.6, 16, 333 }, + [19] = { 49.4, 82.6, 16, 333 }, + [20] = { 48, 82.5, 16, 333 }, + [21] = { 54.7, 82.3, 16, 333 }, + [22] = { 58.6, 82.3, 16, 333 }, + [23] = { 44.9, 81.6, 16, 333 }, + [24] = { 53.4, 80.8, 16, 333 }, + [25] = { 49.6, 80.8, 16, 333 }, + [26] = { 45.5, 80.7, 16, 333 }, + [27] = { 48.1, 80.7, 16, 333 }, + [28] = { 54.7, 80.6, 16, 333 }, + [29] = { 50.9, 80.5, 16, 333 }, + [30] = { 51.8, 80.5, 16, 333 }, + [31] = { 60, 80.4, 16, 333 }, + [32] = { 58.6, 80.3, 16, 333 }, + [33] = { 44.9, 79.9, 16, 333 }, + [34] = { 57.4, 78.9, 16, 333 }, + [35] = { 49.3, 78.8, 16, 333 }, + [36] = { 53.6, 78.8, 16, 333 }, + [37] = { 43.9, 78.8, 16, 333 }, + [38] = { 46.7, 78.8, 16, 333 }, + [39] = { 54.6, 78.7, 16, 333 }, + [40] = { 51, 78.6, 16, 333 }, + [41] = { 58.6, 78.6, 16, 333 }, + [42] = { 58.5, 76.8, 16, 333 }, + [43] = { 57.2, 76.7, 16, 333 }, + [44] = { 45.5, 76.7, 16, 333 }, + [45] = { 52, 76.6, 16, 333 }, + [46] = { 49.3, 75.7, 16, 333 }, + [47] = { 50.8, 75.6, 16, 333 }, + [48] = { 46.7, 74.9, 16, 333 }, + [49] = { 48.1, 74.7, 16, 333 }, + [50] = { 40.9, 73.6, 16, 333 }, + [51] = { 39.6, 71.9, 16, 333 }, + [52] = { 40.3, 71.7, 16, 333 }, + [53] = { 43.1, 71.6, 16, 333 }, + [54] = { 37.7, 71.2, 16, 333 }, + [55] = { 42.3, 70.9, 16, 333 }, + [56] = { 37.3, 70.7, 16, 333 }, + [57] = { 40.6, 70, 16, 333 }, + [58] = { 36.6, 69.3, 16, 333 }, + [59] = { 40.4, 69.1, 16, 333 }, + [60] = { 38.2, 68.9, 16, 333 }, + [61] = { 35.5, 68.6, 16, 333 }, + [62] = { 36.9, 67, 16, 333 }, + [63] = { 35.8, 66.7, 16, 333 }, + [64] = { 35.2, 65.9, 16, 333 }, + [65] = { 36.1, 65.8, 16, 333 }, + [66] = { 52.1, 35.4, 16, 333 }, + [67] = { 73.2, 33.3, 16, 333 }, + [68] = { 52.1, 33, 16, 333 }, + [69] = { 51, 31.5, 16, 333 }, + [70] = { 72.9, 31.2, 16, 333 }, + [71] = { 52.9, 30.9, 16, 333 }, + [72] = { 50.3, 30.6, 16, 333 }, + [73] = { 53.2, 30.4, 16, 333 }, + [74] = { 71, 30.3, 16, 333 }, + [75] = { 70.5, 29.3, 16, 333 }, + [76] = { 52.7, 29.2, 16, 333 }, + [77] = { 76.3, 28.3, 16, 333 }, + [78] = { 70.5, 28.1, 16, 333 }, + [79] = { 51.1, 27.8, 16, 333 }, + [80] = { 66.4, 27.4, 16, 333 }, + [81] = { 81, 27.2, 16, 333 }, + [82] = { 49.4, 27.1, 16, 333 }, + [83] = { 50.2, 26.4, 16, 333 }, + [84] = { 47.5, 26.4, 16, 333 }, + [85] = { 68.4, 26.3, 16, 333 }, + [86] = { 48.7, 26.3, 16, 333 }, + [87] = { 52.7, 26.2, 16, 333 }, + [88] = { 78, 26.1, 16, 333 }, + [89] = { 50.7, 25.6, 16, 333 }, + [90] = { 79.6, 25.4, 16, 333 }, + [91] = { 78.3, 25.3, 16, 333 }, + [92] = { 51.6, 25, 16, 333 }, + [93] = { 49, 24.9, 16, 333 }, + [94] = { 52.8, 24.4, 16, 333 }, + [95] = { 64.4, 24.3, 16, 333 }, + [96] = { 83, 24.1, 16, 333 }, + [97] = { 56.1, 24, 16, 333 }, + [98] = { 66.5, 23.5, 16, 333 }, + [99] = { 75.7, 22.6, 16, 333 }, + [100] = { 64.6, 22.5, 16, 333 }, + [101] = { 73.1, 22.2, 16, 333 }, + [102] = { 56.6, 21.5, 16, 333 }, + [103] = { 57.6, 21.4, 16, 333 }, + [104] = { 61.8, 20.6, 16, 333 }, + [105] = { 48.5, 20.6, 16, 333 }, + [106] = { 58.5, 19.4, 16, 333 }, + [107] = { 55.2, 19, 16, 333 }, + [108] = { 46.2, 18.6, 16, 333 }, + [109] = { 81.2, 18.6, 16, 333 }, + [110] = { 56.5, 18.4, 16, 333 }, + [111] = { 61.9, 18.3, 16, 333 }, + [112] = { 62.6, 17.5, 16, 333 }, + [113] = { 63.9, 17.5, 16, 333 }, + [114] = { 58.5, 17.3, 16, 333 }, + [115] = { 55.3, 16.9, 16, 333 }, + [116] = { 56.7, 16.6, 16, 333 }, + [117] = { 63.3, 16.3, 16, 333 }, + [118] = { 61.2, 15.7, 16, 333 }, + [119] = { 68.4, 15.2, 16, 333 }, + [120] = { 53.6, 15, 16, 333 }, + [121] = { 52.3, 14.4, 16, 333 }, + [122] = { 61.3, 13.7, 16, 333 }, + [123] = { 81.2, 79.5, 618, 333 }, + [124] = { 82.2, 79.3, 618, 333 }, + }, + ["lvl"] = "52-53", + }, + [8763] = { + ["coords"] = { + [1] = { 36.6, 83.3, 16, 300 }, + [2] = { 35.5, 82.1, 16, 300 }, + [3] = { 32.2, 81.8, 16, 300 }, + [4] = { 25, 80.7, 16, 300 }, + [5] = { 29.3, 80.6, 16, 300 }, + [6] = { 20, 79.4, 16, 300 }, + [7] = { 38.8, 70.2, 16, 300 }, + [8] = { 40.1, 69.7, 16, 300 }, + [9] = { 39, 68.6, 16, 300 }, + [10] = { 36.9, 68.6, 16, 300 }, + [11] = { 40.7, 68.5, 16, 300 }, + [12] = { 34.5, 68.4, 16, 300 }, + [13] = { 37.6, 67.7, 16, 300 }, + [14] = { 34.5, 67, 16, 300 }, + [15] = { 40, 65.9, 16, 300 }, + }, + ["lvl"] = "49-50", + }, + [8765] = "_", + [8766] = { + ["coords"] = { + [1] = { 38.8, 71.3, 16, 333 }, + [2] = { 44.5, 71.1, 16, 333 }, + [3] = { 41.8, 69.8, 16, 333 }, + [4] = { 36.2, 67.9, 16, 333 }, + [5] = { 70.6, 31.2, 16, 333 }, + [6] = { 74.6, 29.5, 16, 333 }, + [7] = { 71.7, 29.5, 16, 333 }, + [8] = { 67.7, 29.5, 16, 333 }, + [9] = { 69.2, 27.2, 16, 333 }, + [10] = { 66.4, 25.5, 16, 333 }, + [11] = { 76.8, 25.4, 16, 333 }, + [12] = { 80.4, 24.5, 16, 333 }, + [13] = { 71.6, 24.3, 16, 333 }, + [14] = { 74.7, 12.7, 16, 333 }, + }, + ["lvl"] = "52-53", + }, + [8767] = { + ["coords"] = { + [1] = { 66.4, 19.6, 722, 18000 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [8777] = "_", + [8796] = "_", + [8837] = { + ["coords"] = { + [1] = { 17.6, 42.7, 51, 500 }, + [2] = { 17.2, 38.4, 51, 500 }, + [3] = { 13.6, 37.6, 51, 500 }, + [4] = { 15.7, 37.5, 51, 500 }, + [5] = { 16, 36.8, 51, 500 }, + [6] = { 16, 36, 51, 500 }, + [7] = { 13.5, 36, 51, 500 }, + [8] = { 15.4, 35.3, 51, 500 }, + [9] = { 14.4, 34.6, 51, 500 }, + [10] = { 91.8, 18.9, 5581, 500 }, + [11] = { 91.5, 15.9, 5581, 500 }, + [12] = { 89, 15.4, 5581, 500 }, + [13] = { 90.4, 15.3, 5581, 500 }, + [14] = { 90.7, 14.9, 5581, 500 }, + [15] = { 90.7, 14.3, 5581, 500 }, + [16] = { 88.9, 14.3, 5581, 500 }, + [17] = { 90.3, 13.8, 5581, 500 }, + [18] = { 89.5, 13.3, 5581, 500 }, + }, + ["lvl"] = "47-49", + }, + [8856] = { + ["coords"] = { + [1] = { 73.2, 35.6, 1519, 240 }, + [2] = { 55.8, 96.5, 5581, 240 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [8880] = "_", + [8886] = { + ["coords"] = { + [1] = { 32, 46.9, 718, 604800 }, + [2] = { 32.3, 46.7, 718, 604800 }, + [3] = { 32, 46.4, 718, 604800 }, + [4] = { 29.5, 41.9, 718, 18000 }, + [5] = { 29.6, 41.6, 718, 18000 }, + [6] = { 27.1, 34, 718, 18000 }, + [7] = { 27, 33.9, 718, 18000 }, + [8] = { 26.9, 33.5, 718, 18000 }, + [9] = { 26.9, 22, 718, 18000 }, + [10] = { 26.6, 21.9, 718, 18000 }, + [11] = { 33.5, 21.2, 718, 18000 }, + [12] = { 33.5, 20.6, 718, 18000 }, + }, + ["lvl"] = "18-19", + }, + [8888] = { + ["coords"] = { + [1] = { 49.8, 57.2, 25, 500 }, + [2] = { 29, 28.9, 46, 500 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [8889] = { + ["coords"] = { + [1] = { 36.3, 25.6, 25, 370 }, + [2] = { 33.1, 24.6, 25, 370 }, + [3] = { 25.4, 13.5, 25, 370 }, + [4] = { 39.2, 12, 25, 370 }, + [5] = { 30.5, 5.6, 25, 370 }, + [6] = { 25.7, 21.3, 46, 370 }, + [7] = { 24.9, 21.1, 46, 370 }, + [8] = { 31.2, 90.6, 51, 370 }, + [9] = { 30.2, 90.3, 51, 370 }, + [10] = { 27.7, 86.8, 51, 370 }, + [11] = { 32.1, 86.3, 51, 370 }, + [12] = { 29.4, 84.3, 51, 370 }, + [13] = { 25.2, 79.3, 51, 370 }, + [14] = { 27.7, 77.2, 51, 370 }, + [15] = { 25.2, 75.2, 51, 370 }, + [16] = { 45.2, 82.2, 1584, 18000 }, + [17] = { 48.5, 82, 1584, 18000 }, + [18] = { 45.1, 81.5, 1584, 18000 }, + [19] = { 49.9, 81.3, 1584, 18000 }, + [20] = { 98.7, 49.3, 5581, 370 }, + [21] = { 99.8, 47.6, 5581, 370 }, + [22] = { 97, 44.2, 5581, 370 }, + [23] = { 98.7, 42.7, 5581, 370 }, + [24] = { 97, 41.3, 5581, 370 }, + }, + ["lvl"] = "48-49", + ["rnk"] = "1", + }, + [8890] = { + ["coords"] = { + [1] = { 19.1, 19, 25, 370 }, + [2] = { 36.7, 18.6, 25, 370 }, + [3] = { 23.1, 7.9, 25, 370 }, + [4] = { 35.3, 2, 25, 370 }, + [5] = { 25.7, 88.5, 51, 370 }, + [6] = { 31.3, 88.4, 51, 370 }, + [7] = { 27, 85, 51, 370 }, + [8] = { 30.9, 83.2, 51, 370 }, + [9] = { 24.9, 79.3, 51, 370 }, + [10] = { 25.2, 77.1, 51, 370 }, + [11] = { 48.7, 96.8, 1584, 18000 }, + [12] = { 50, 96.3, 1584, 18000 }, + [13] = { 49.9, 96, 1584, 18000 }, + [14] = { 53.1, 95.5, 1584, 18000 }, + [15] = { 47.3, 94.7, 1584, 18000 }, + [16] = { 52.3, 94.6, 1584, 18000 }, + [17] = { 47.2, 94.2, 1584, 18000 }, + [18] = { 53.9, 93, 1584, 18000 }, + [19] = { 54, 92.7, 1584, 18000 }, + [20] = { 49.8, 91.6, 1584, 18000 }, + [21] = { 52.2, 91.3, 1584, 18000 }, + [22] = { 46.8, 90.6, 1584, 18000 }, + [23] = { 51.8, 90.4, 1584, 18000 }, + [24] = { 48.1, 89.3, 1584, 18000 }, + [25] = { 50.5, 89.2, 1584, 18000 }, + [26] = { 51.3, 88.3, 1584, 18000 }, + [27] = { 54.2, 87.2, 1584, 18000 }, + [28] = { 54.3, 87.1, 1584, 18000 }, + [29] = { 52.5, 87, 1584, 18000 }, + [30] = { 52.5, 86.9, 1584, 18000 }, + [31] = { 48, 86.3, 1584, 18000 }, + [32] = { 49.9, 85.2, 1584, 18000 }, + [33] = { 48.1, 84, 1584, 18000 }, + [34] = { 48.6, 84, 1584, 18000 }, + [35] = { 50.9, 83.3, 1584, 18000 }, + [36] = { 51.2, 82.8, 1584, 18000 }, + [37] = { 48.8, 81.7, 1584, 18000 }, + [38] = { 49.8, 80.8, 1584, 18000 }, + [39] = { 47.1, 80.4, 1584, 18000 }, + [40] = { 47, 79.9, 1584, 18000 }, + [41] = { 50.4, 79.5, 1584, 18000 }, + [42] = { 50, 79.2, 1584, 18000 }, + [43] = { 50.3, 79, 1584, 18000 }, + [44] = { 48.4, 78.7, 1584, 18000 }, + [45] = { 48.4, 78.2, 1584, 18000 }, + [46] = { 97.3, 50.5, 5581, 370 }, + [47] = { 98.2, 48.1, 5581, 370 }, + [48] = { 96.8, 44.2, 5581, 370 }, + [49] = { 97, 42.7, 5581, 370 }, + }, + ["lvl"] = "49-50", + ["rnk"] = "1", + }, + [8891] = { + ["coords"] = { + [1] = { 51.2, 98.4, 1584, 18000 }, + [2] = { 54.8, 94.2, 1584, 18000 }, + [3] = { 53.8, 93, 1584, 18000 }, + [4] = { 48.1, 92.7, 1584, 18000 }, + [5] = { 53.9, 92.7, 1584, 18000 }, + [6] = { 49.7, 91.9, 1584, 18000 }, + [7] = { 55.1, 90.7, 1584, 18000 }, + [8] = { 49.5, 90.3, 1584, 18000 }, + [9] = { 55.1, 90.2, 1584, 18000 }, + [10] = { 49.4, 89.7, 1584, 18000 }, + [11] = { 53.8, 89.4, 1584, 18000 }, + [12] = { 48.2, 89, 1584, 18000 }, + [13] = { 49.7, 87.9, 1584, 18000 }, + [14] = { 46.4, 87.4, 1584, 18000 }, + [15] = { 46.3, 87.1, 1584, 18000 }, + [16] = { 46.5, 87.1, 1584, 18000 }, + [17] = { 54.1, 86.8, 1584, 18000 }, + [18] = { 52.3, 86.7, 1584, 18000 }, + [19] = { 49.7, 85.7, 1584, 18000 }, + [20] = { 50, 85.5, 1584, 18000 }, + [21] = { 54.4, 79.2, 1584, 18000 }, + [22] = { 51.9, 79, 1584, 18000 }, + [23] = { 56.3, 78.4, 1584, 18000 }, + [24] = { 56.2, 78.3, 1584, 18000 }, + [25] = { 58, 75.6, 1584, 18000 }, + [26] = { 48.3, 75.3, 1584, 18000 }, + [27] = { 48.2, 74.5, 1584, 18000 }, + [28] = { 49.2, 74.4, 1584, 18000 }, + [29] = { 45.9, 73, 1584, 18000 }, + [30] = { 46.9, 72.7, 1584, 18000 }, + [31] = { 46.9, 72.4, 1584, 18000 }, + [32] = { 46.8, 72.4, 1584, 18000 }, + [33] = { 57.5, 71.9, 1584, 18000 }, + [34] = { 57.4, 71.5, 1584, 18000 }, + [35] = { 49.1, 71.3, 1584, 18000 }, + [36] = { 49.1, 71, 1584, 18000 }, + [37] = { 50.3, 70.4, 1584, 18000 }, + [38] = { 58.1, 70, 1584, 18000 }, + [39] = { 46.7, 70, 1584, 18000 }, + [40] = { 50.4, 69.9, 1584, 18000 }, + [41] = { 46.9, 69.9, 1584, 18000 }, + [42] = { 48, 69.7, 1584, 18000 }, + [43] = { 57.9, 69.6, 1584, 18000 }, + [44] = { 51.9, 69.6, 1584, 18000 }, + [45] = { 49.6, 69.5, 1584, 18000 }, + [46] = { 51.8, 69.4, 1584, 18000 }, + [47] = { 51.8, 69.3, 1584, 18000 }, + [48] = { 52.1, 69.2, 1584, 18000 }, + [49] = { 57.9, 68.7, 1584, 18000 }, + [50] = { 55.4, 68.1, 1584, 18000 }, + [51] = { 55.9, 67.7, 1584, 18000 }, + [52] = { 51.6, 67.3, 1584, 18000 }, + [53] = { 51.3, 66.8, 1584, 18000 }, + [54] = { 51.3, 66.6, 1584, 18000 }, + [55] = { 53.8, 66.6, 1584, 18000 }, + [56] = { 51.4, 66.6, 1584, 18000 }, + [57] = { 51.2, 64.3, 1584, 18000 }, + [58] = { 58.4, 61, 1584, 18000 }, + }, + ["lvl"] = "50-51", + ["rnk"] = "1", + }, + [8892] = { + ["coords"] = { + [1] = { 52.1, 79.7, 1584, 18000 }, + [2] = { 54, 79.4, 1584, 18000 }, + [3] = { 56, 78.5, 1584, 18000 }, + [4] = { 50.3, 76.1, 1584, 18000 }, + [5] = { 57.8, 76, 1584, 18000 }, + [6] = { 49.8, 75.9, 1584, 18000 }, + [7] = { 56.4, 75.8, 1584, 18000 }, + [8] = { 57.9, 75.5, 1584, 18000 }, + [9] = { 56.6, 75.5, 1584, 18000 }, + [10] = { 48.4, 75.3, 1584, 18000 }, + [11] = { 48.2, 74.8, 1584, 18000 }, + [12] = { 49.2, 74.2, 1584, 18000 }, + [13] = { 45.8, 73.4, 1584, 18000 }, + [14] = { 58.5, 73.3, 1584, 18000 }, + [15] = { 58.4, 73.2, 1584, 18000 }, + [16] = { 46, 73, 1584, 18000 }, + [17] = { 58.7, 73, 1584, 18000 }, + [18] = { 51, 72.9, 1584, 18000 }, + [19] = { 58.6, 72.8, 1584, 18000 }, + [20] = { 51.1, 72.6, 1584, 18000 }, + [21] = { 57.3, 71.9, 1584, 18000 }, + [22] = { 42.6, 71.6, 1584, 18000 }, + [23] = { 57.3, 71.5, 1584, 18000 }, + [24] = { 49, 71.3, 1584, 18000 }, + [25] = { 46.1, 71.1, 1584, 18000 }, + [26] = { 46.1, 70.9, 1584, 18000 }, + [27] = { 50.1, 70.2, 1584, 18000 }, + [28] = { 50.3, 69.9, 1584, 18000 }, + [29] = { 48.2, 69.6, 1584, 18000 }, + [30] = { 49.4, 69.6, 1584, 18000 }, + [31] = { 47.8, 69.3, 1584, 18000 }, + [32] = { 37.8, 69.3, 1584, 18000 }, + [33] = { 52, 69.2, 1584, 18000 }, + [34] = { 55.5, 68.3, 1584, 18000 }, + [35] = { 53.6, 68.2, 1584, 18000 }, + [36] = { 53.9, 68.2, 1584, 18000 }, + [37] = { 53.6, 68.1, 1584, 18000 }, + [38] = { 55.7, 67.4, 1584, 18000 }, + [39] = { 51.9, 67, 1584, 18000 }, + [40] = { 34.1, 66.9, 1584, 18000 }, + [41] = { 54.1, 66.7, 1584, 18000 }, + [42] = { 54, 66.6, 1584, 18000 }, + [43] = { 54, 66.5, 1584, 18000 }, + [44] = { 46.3, 65.4, 1584, 18000 }, + [45] = { 50.6, 65, 1584, 18000 }, + [46] = { 50.5, 64.7, 1584, 18000 }, + [47] = { 48.9, 64.7, 1584, 18000 }, + [48] = { 36, 61.6, 1584, 18000 }, + [49] = { 35.8, 61.5, 1584, 18000 }, + [50] = { 50, 61.2, 1584, 18000 }, + [51] = { 46.9, 61.2, 1584, 18000 }, + [52] = { 59.5, 58.7, 1584, 18000 }, + [53] = { 57.1, 56.5, 1584, 18000 }, + [54] = { 59.3, 54.8, 1584, 18000 }, + }, + ["lvl"] = "51-52", + ["rnk"] = "1", + }, + [8893] = { + ["coords"] = { + [1] = { 51.3, 74.5, 1584, 18000 }, + [2] = { 56.1, 73.9, 1584, 18000 }, + [3] = { 42.8, 71.9, 1584, 18000 }, + [4] = { 42.8, 71.6, 1584, 18000 }, + [5] = { 39.9, 71.2, 1584, 18000 }, + [6] = { 39.7, 71.1, 1584, 18000 }, + [7] = { 39.4, 70.9, 1584, 18000 }, + [8] = { 55.9, 70, 1584, 18000 }, + [9] = { 45.4, 69.6, 1584, 18000 }, + [10] = { 45.6, 69.5, 1584, 18000 }, + [11] = { 42.5, 69.1, 1584, 18000 }, + [12] = { 42.3, 69.1, 1584, 18000 }, + [13] = { 37.5, 69.1, 1584, 18000 }, + [14] = { 37.6, 68.8, 1584, 18000 }, + [15] = { 40.8, 68.3, 1584, 18000 }, + [16] = { 40.6, 68.2, 1584, 18000 }, + [17] = { 53.2, 67.3, 1584, 18000 }, + [18] = { 34.3, 67.2, 1584, 18000 }, + [19] = { 45.5, 67, 1584, 18000 }, + [20] = { 33.9, 66.8, 1584, 18000 }, + [21] = { 45.8, 66.7, 1584, 18000 }, + [22] = { 37.2, 66.6, 1584, 18000 }, + [23] = { 37.3, 66.4, 1584, 18000 }, + [24] = { 45.6, 66.4, 1584, 18000 }, + [25] = { 39, 66.2, 1584, 18000 }, + [26] = { 38.9, 66.1, 1584, 18000 }, + [27] = { 46.5, 65.8, 1584, 18000 }, + [28] = { 50.4, 65.7, 1584, 18000 }, + [29] = { 46.5, 65.7, 1584, 18000 }, + [30] = { 50.5, 65.6, 1584, 18000 }, + [31] = { 50.3, 65.5, 1584, 18000 }, + [32] = { 48.7, 64.4, 1584, 18000 }, + [33] = { 48.7, 64.2, 1584, 18000 }, + [34] = { 36.1, 61.7, 1584, 18000 }, + [35] = { 49.6, 61.5, 1584, 18000 }, + [36] = { 49.9, 61.1, 1584, 18000 }, + [37] = { 47.1, 61.1, 1584, 18000 }, + [38] = { 47.2, 61, 1584, 18000 }, + }, + ["lvl"] = "52-53", + ["rnk"] = "1", + }, + [8894] = { + ["coords"] = { + [1] = { 52.8, 77.2, 1584, 18000 }, + [2] = { 53.1, 76.5, 1584, 18000 }, + [3] = { 58.1, 75.1, 1584, 18000 }, + [4] = { 56.1, 74.7, 1584, 18000 }, + [5] = { 51, 74.3, 1584, 18000 }, + [6] = { 42.6, 72, 1584, 18000 }, + [7] = { 39.2, 70.8, 1584, 18000 }, + [8] = { 45.1, 69.8, 1584, 18000 }, + [9] = { 45.2, 69.7, 1584, 18000 }, + [10] = { 51.5, 69.6, 1584, 18000 }, + [11] = { 42.8, 69.1, 1584, 18000 }, + [12] = { 42.6, 69.1, 1584, 18000 }, + [13] = { 37.8, 69, 1584, 18000 }, + [14] = { 51.3, 68.9, 1584, 18000 }, + [15] = { 41.1, 68.5, 1584, 18000 }, + [16] = { 41, 68.4, 1584, 18000 }, + [17] = { 34.2, 67.1, 1584, 18000 }, + [18] = { 37.1, 66.8, 1584, 18000 }, + [19] = { 45.3, 66.7, 1584, 18000 }, + [20] = { 39.4, 66.5, 1584, 18000 }, + [21] = { 39.2, 66.4, 1584, 18000 }, + [22] = { 37.3, 66.3, 1584, 18000 }, + [23] = { 50.4, 66, 1584, 18000 }, + [24] = { 46.4, 65.5, 1584, 18000 }, + [25] = { 48.8, 64.5, 1584, 18000 }, + [26] = { 36.2, 61.8, 1584, 18000 }, + [27] = { 50, 61.4, 1584, 18000 }, + [28] = { 47, 61.1, 1584, 18000 }, + [29] = { 56.8, 59, 1584, 18000 }, + [30] = { 59.4, 56.6, 1584, 18000 }, + [31] = { 57.8, 55.9, 1584, 18000 }, + }, + ["lvl"] = "52-53", + ["rnk"] = "1", + }, + [8895] = { + ["coords"] = { + [1] = { 42.7, 72.2, 1584, 18000 }, + [2] = { 39.7, 70.5, 1584, 18000 }, + [3] = { 45.4, 70, 1584, 18000 }, + [4] = { 42.5, 69.4, 1584, 18000 }, + [5] = { 55.5, 69.4, 1584, 18000 }, + [6] = { 37.8, 68.7, 1584, 18000 }, + [7] = { 53.4, 68.1, 1584, 18000 }, + [8] = { 41, 67.9, 1584, 18000 }, + [9] = { 34.2, 66.9, 1584, 18000 }, + [10] = { 45.6, 66.7, 1584, 18000 }, + [11] = { 39, 66.7, 1584, 18000 }, + [12] = { 37.3, 66.6, 1584, 18000 }, + [13] = { 50.2, 65.8, 1584, 18000 }, + [14] = { 46.3, 65.7, 1584, 18000 }, + [15] = { 48.9, 64.3, 1584, 18000 }, + [16] = { 36, 61.8, 1584, 18000 }, + [17] = { 49.9, 61.4, 1584, 18000 }, + [18] = { 47.1, 61.3, 1584, 18000 }, + [19] = { 57.1, 52.1, 1584, 18000 }, + [20] = { 59.4, 47.8, 1584, 18000 }, + }, + ["lvl"] = "53-54", + ["rnk"] = "1", + }, + [8896] = { + ["coords"] = { + [1] = { 53.1, 76.8, 1584, 18000 }, + [2] = { 52.8, 76.3, 1584, 18000 }, + [3] = { 57.4, 75.7, 1584, 18000 }, + [4] = { 58, 75.4, 1584, 18000 }, + [5] = { 57.7, 75, 1584, 18000 }, + [6] = { 57.9, 74.8, 1584, 18000 }, + [7] = { 58.2, 72.6, 1584, 18000 }, + [8] = { 58.6, 72.4, 1584, 18000 }, + [9] = { 58.2, 72.2, 1584, 18000 }, + [10] = { 56.4, 69.9, 1584, 18000 }, + [11] = { 58.4, 69.8, 1584, 18000 }, + [12] = { 58.5, 69.6, 1584, 18000 }, + [13] = { 55.8, 69.4, 1584, 18000 }, + [14] = { 51.4, 69.4, 1584, 18000 }, + [15] = { 51.5, 69.2, 1584, 18000 }, + [16] = { 53.2, 68, 1584, 18000 }, + [17] = { 52.8, 67.9, 1584, 18000 }, + [18] = { 57.9, 59.9, 1584, 18000 }, + [19] = { 57.2, 58.9, 1584, 18000 }, + [20] = { 59.7, 58.6, 1584, 18000 }, + [21] = { 56.9, 58.3, 1584, 18000 }, + [22] = { 59.4, 58.3, 1584, 18000 }, + [23] = { 59.8, 57.9, 1584, 18000 }, + [24] = { 59.3, 56.8, 1584, 18000 }, + [25] = { 55, 56.8, 1584, 18000 }, + [26] = { 57.5, 56.6, 1584, 18000 }, + [27] = { 59.5, 56.6, 1584, 18000 }, + [28] = { 57.3, 56.4, 1584, 18000 }, + [29] = { 55.1, 56.4, 1584, 18000 }, + [30] = { 59, 55.4, 1584, 18000 }, + [31] = { 59.4, 55.4, 1584, 18000 }, + [32] = { 59.4, 55.2, 1584, 18000 }, + [33] = { 60.5, 54, 1584, 18000 }, + [34] = { 59.9, 53.5, 1584, 18000 }, + [35] = { 60.8, 52.7, 1584, 18000 }, + [36] = { 57, 52.2, 1584, 18000 }, + [37] = { 59.2, 52, 1584, 18000 }, + [38] = { 59.3, 51.9, 1584, 18000 }, + [39] = { 57.2, 51.8, 1584, 18000 }, + [40] = { 59, 50.9, 1584, 18000 }, + [41] = { 59.7, 47.5, 1584, 18000 }, + [42] = { 59.5, 47.3, 1584, 18000 }, + }, + ["lvl"] = "52-54", + }, + [8897] = { + ["coords"] = { + [1] = { 57.6, 75.5, 1584, 18000 }, + [2] = { 56.9, 51.9, 1584, 18000 }, + [3] = { 64.8, 48.8, 1584, 18000 }, + [4] = { 64.8, 48.4, 1584, 18000 }, + [5] = { 64.7, 48.2, 1584, 18000 }, + [6] = { 59.5, 47.5, 1584, 18000 }, + [7] = { 66.2, 47.2, 1584, 18000 }, + [8] = { 66, 47.2, 1584, 18000 }, + [9] = { 66.2, 46.3, 1584, 18000 }, + [10] = { 66.1, 44.2, 1584, 18000 }, + [11] = { 65.8, 44, 1584, 18000 }, + [12] = { 66.2, 43.9, 1584, 18000 }, + [13] = { 60.9, 42.9, 1584, 18000 }, + [14] = { 64.4, 42.9, 1584, 18000 }, + [15] = { 60.6, 42.1, 1584, 18000 }, + [16] = { 64.9, 41.9, 1584, 18000 }, + [17] = { 60.8, 41.9, 1584, 18000 }, + [18] = { 64.7, 41.6, 1584, 18000 }, + [19] = { 63, 41, 1584, 18000 }, + [20] = { 62.6, 40.7, 1584, 18000 }, + [21] = { 63.8, 40.3, 1584, 18000 }, + [22] = { 61.8, 40.3, 1584, 18000 }, + [23] = { 63.5, 40.1, 1584, 18000 }, + [24] = { 61.8, 40, 1584, 18000 }, + }, + ["lvl"] = "51-54", + }, + [8898] = { + ["coords"] = { + [1] = { 44.5, 65.9, 1584, 18000 }, + [2] = { 44.4, 65.7, 1584, 18000 }, + [3] = { 41.2, 65, 1584, 18000 }, + [4] = { 44.7, 64.5, 1584, 18000 }, + [5] = { 42.8, 64, 1584, 18000 }, + [6] = { 43.1, 63.9, 1584, 18000 }, + [7] = { 42.3, 62.7, 1584, 18000 }, + [8] = { 41.2, 62.7, 1584, 18000 }, + [9] = { 41.2, 62.6, 1584, 18000 }, + [10] = { 46.5, 59.9, 1584, 18000 }, + [11] = { 46.4, 59.4, 1584, 18000 }, + [12] = { 58.6, 45.2, 1584, 18000 }, + }, + ["lvl"] = "54-55", + ["rnk"] = "1", + }, + [8899] = { + ["coords"] = { + [1] = { 44.6, 65.5, 1584, 18000 }, + [2] = { 44.9, 64.7, 1584, 18000 }, + [3] = { 41.2, 64.7, 1584, 18000 }, + [4] = { 44.8, 61.5, 1584, 18000 }, + [5] = { 44.9, 61.2, 1584, 18000 }, + [6] = { 46.7, 59.8, 1584, 18000 }, + [7] = { 46.6, 59.2, 1584, 18000 }, + [8] = { 57.2, 46.2, 1584, 18000 }, + [9] = { 56.5, 45.2, 1584, 18000 }, + [10] = { 83, 12.5, 1584, 18000 }, + [11] = { 81.7, 10.4, 1584, 18000 }, + [12] = { 84, 10.4, 1584, 18000 }, + [13] = { 80.9, 9.2, 1584, 18000 }, + [14] = { 85.1, 9, 1584, 18000 }, + [15] = { 83.9, 8.4, 1584, 18000 }, + [16] = { 81.5, 8.2, 1584, 18000 }, + }, + ["lvl"] = "54-55", + ["rnk"] = "1", + }, + [8900] = { + ["coords"] = { + [1] = { 41.3, 59.6, 1584, 18000 }, + [2] = { 41.1, 59.6, 1584, 18000 }, + [3] = { 41.3, 59.4, 1584, 18000 }, + [4] = { 44, 59.1, 1584, 18000 }, + [5] = { 44.6, 58.3, 1584, 18000 }, + [6] = { 45, 58, 1584, 18000 }, + [7] = { 46.1, 56.9, 1584, 18000 }, + [8] = { 41.5, 55.9, 1584, 18000 }, + [9] = { 56, 48.5, 1584, 18000 }, + [10] = { 58.5, 46.1, 1584, 18000 }, + [11] = { 58.4, 45.5, 1584, 18000 }, + [12] = { 53, 32.4, 1584, 18000 }, + [13] = { 53.5, 31.8, 1584, 18000 }, + [14] = { 53.1, 31.4, 1584, 18000 }, + [15] = { 52.4, 30.3, 1584, 18000 }, + [16] = { 51.8, 29.8, 1584, 18000 }, + [17] = { 50.5, 28.7, 1584, 18000 }, + [18] = { 51, 28.5, 1584, 18000 }, + [19] = { 53.7, 27.5, 1584, 18000 }, + [20] = { 54, 27, 1584, 18000 }, + [21] = { 53.5, 26.6, 1584, 18000 }, + [22] = { 51.8, 25.9, 1584, 18000 }, + [23] = { 52.4, 25.7, 1584, 18000 }, + [24] = { 52.1, 25.1, 1584, 18000 }, + }, + ["lvl"] = "54-55", + }, + [8901] = { + ["coords"] = { + [1] = { 43.2, 67.7, 1584, 604800 }, + [2] = { 42.9, 67.7, 1584, 604800 }, + [3] = { 42.9, 67.6, 1584, 604800 }, + [4] = { 43.1, 67.5, 1584, 604800 }, + [5] = { 66, 18.4, 1584, 120 }, + [6] = { 66.2, 18.2, 1584, 120 }, + [7] = { 66.1, 18.1, 1584, 120 }, + [8] = { 65.2, 17.8, 1584, 120 }, + [9] = { 65.4, 17.7, 1584, 120 }, + [10] = { 66.4, 17.7, 1584, 120 }, + [11] = { 64.9, 17.6, 1584, 120 }, + [12] = { 66.3, 17.6, 1584, 120 }, + [13] = { 65.2, 17.6, 1584, 120 }, + [14] = { 64.7, 17.6, 1584, 120 }, + [15] = { 66.7, 17.6, 1584, 120 }, + [16] = { 66.7, 17.3, 1584, 120 }, + [17] = { 66.4, 17.2, 1584, 120 }, + [18] = { 64.6, 17, 1584, 120 }, + [19] = { 66.3, 17, 1584, 120 }, + [20] = { 66.3, 16.9, 1584, 120 }, + [21] = { 64.5, 16.9, 1584, 120 }, + [22] = { 64.7, 16.8, 1584, 120 }, + [23] = { 64.6, 16.7, 1584, 120 }, + [24] = { 70.5, 15.9, 1584, 120 }, + [25] = { 67.3, 15.9, 1584, 120 }, + [26] = { 70.7, 15.9, 1584, 120 }, + [27] = { 68.7, 15.8, 1584, 120 }, + [28] = { 69.7, 15.8, 1584, 120 }, + [29] = { 68.8, 15.7, 1584, 120 }, + [30] = { 66.4, 15.7, 1584, 120 }, + [31] = { 66.2, 15.7, 1584, 120 }, + [32] = { 67.2, 15.7, 1584, 120 }, + [33] = { 70.7, 15.5, 1584, 120 }, + [34] = { 70.5, 15.5, 1584, 120 }, + [35] = { 66.2, 15.5, 1584, 120 }, + [36] = { 69.7, 15.4, 1584, 120 }, + [37] = { 69.8, 15.4, 1584, 120 }, + [38] = { 64.8, 15.1, 1584, 120 }, + [39] = { 64.6, 15.1, 1584, 120 }, + [40] = { 63.9, 14.8, 1584, 120 }, + [41] = { 66.4, 14.7, 1584, 120 }, + [42] = { 68.1, 14.7, 1584, 120 }, + [43] = { 70.6, 14.6, 1584, 120 }, + [44] = { 68.3, 14.6, 1584, 120 }, + [45] = { 63.8, 14.5, 1584, 120 }, + [46] = { 66.7, 14.4, 1584, 120 }, + [47] = { 70.4, 14.4, 1584, 120 }, + [48] = { 64.1, 14.4, 1584, 120 }, + [49] = { 66.4, 14.4, 1584, 120 }, + [50] = { 70.6, 14.3, 1584, 120 }, + [51] = { 67.9, 13.6, 1584, 120 }, + [52] = { 64.9, 13.5, 1584, 120 }, + [53] = { 67.7, 13.4, 1584, 120 }, + [54] = { 65.1, 13.4, 1584, 120 }, + [55] = { 62.4, 13.3, 1584, 120 }, + [56] = { 61.3, 13.3, 1584, 120 }, + [57] = { 62.2, 13.2, 1584, 120 }, + [58] = { 64.8, 13.2, 1584, 120 }, + [59] = { 71.3, 13.2, 1584, 120 }, + [60] = { 61.4, 13.2, 1584, 120 }, + [61] = { 66.7, 13.2, 1584, 120 }, + [62] = { 65.1, 13.1, 1584, 120 }, + [63] = { 63.1, 13.1, 1584, 120 }, + [64] = { 62.9, 13, 1584, 120 }, + [65] = { 64.9, 13, 1584, 120 }, + [66] = { 68.6, 13, 1584, 120 }, + [67] = { 71.5, 13, 1584, 120 }, + [68] = { 71.3, 12.9, 1584, 120 }, + [69] = { 68.8, 12.8, 1584, 120 }, + [70] = { 66.6, 12.8, 1584, 120 }, + [71] = { 60.4, 12.4, 1584, 120 }, + [72] = { 60.2, 12.2, 1584, 120 }, + [73] = { 62.1, 12.2, 1584, 120 }, + [74] = { 60.5, 12.2, 1584, 120 }, + [75] = { 70, 12.1, 1584, 120 }, + [76] = { 68, 12.1, 1584, 120 }, + [77] = { 71.1, 12, 1584, 120 }, + [78] = { 68.1, 12, 1584, 120 }, + [79] = { 60.7, 11.9, 1584, 120 }, + [80] = { 62.3, 11.9, 1584, 120 }, + [81] = { 63.1, 11.9, 1584, 120 }, + [82] = { 70.1, 11.9, 1584, 120 }, + [83] = { 69.8, 11.8, 1584, 120 }, + [84] = { 71.1, 11.8, 1584, 120 }, + [85] = { 63, 11.8, 1584, 120 }, + [86] = { 71.2, 11.8, 1584, 120 }, + [87] = { 60.3, 11.7, 1584, 120 }, + [88] = { 69.8, 11.6, 1584, 120 }, + [89] = { 60.7, 11.6, 1584, 120 }, + [90] = { 65.6, 11.2, 1584, 120 }, + [91] = { 66.5, 11.2, 1584, 120 }, + [92] = { 65.7, 11.1, 1584, 120 }, + [93] = { 66.4, 11.1, 1584, 120 }, + [94] = { 59.9, 11.1, 1584, 120 }, + [95] = { 64.3, 11, 1584, 120 }, + [96] = { 64.5, 11, 1584, 120 }, + [97] = { 60.2, 10.9, 1584, 120 }, + [98] = { 65.5, 10.9, 1584, 120 }, + [99] = { 66.6, 10.9, 1584, 120 }, + [100] = { 59.9, 10.8, 1584, 120 }, + [101] = { 64.4, 10.8, 1584, 120 }, + [102] = { 64.3, 10.8, 1584, 120 }, + [103] = { 68.7, 10.7, 1584, 120 }, + [104] = { 60.9, 10.7, 1584, 120 }, + [105] = { 60.1, 10.7, 1584, 120 }, + [106] = { 61.1, 10.6, 1584, 120 }, + [107] = { 68.5, 10.5, 1584, 120 }, + [108] = { 60.8, 10.5, 1584, 120 }, + [109] = { 68.6, 10.4, 1584, 120 }, + [110] = { 61, 10.4, 1584, 120 }, + [111] = { 61.1, 10.3, 1584, 120 }, + [112] = { 61.5, 10.1, 1584, 120 }, + [113] = { 66.4, 10.1, 1584, 120 }, + [114] = { 61.1, 10.1, 1584, 120 }, + [115] = { 60, 10.1, 1584, 120 }, + [116] = { 63.1, 10.1, 1584, 120 }, + [117] = { 60.2, 10.1, 1584, 120 }, + [118] = { 65, 10, 1584, 120 }, + [119] = { 68.1, 9.9, 1584, 120 }, + [120] = { 61.3, 9.9, 1584, 120 }, + [121] = { 63, 9.9, 1584, 120 }, + [122] = { 60.3, 9.9, 1584, 120 }, + [123] = { 66.5, 9.9, 1584, 120 }, + [124] = { 60.1, 9.9, 1584, 120 }, + [125] = { 66.3, 9.9, 1584, 120 }, + [126] = { 64.2, 9.9, 1584, 120 }, + [127] = { 67.9, 9.8, 1584, 120 }, + [128] = { 61.4, 9.8, 1584, 120 }, + [129] = { 64.3, 9.8, 1584, 120 }, + [130] = { 62.2, 9.8, 1584, 120 }, + [131] = { 65.1, 9.7, 1584, 120 }, + [132] = { 65, 9.7, 1584, 120 }, + [133] = { 60, 9.7, 1584, 120 }, + [134] = { 64.2, 9.7, 1584, 120 }, + [135] = { 66.5, 9.7, 1584, 120 }, + [136] = { 60.2, 9.6, 1584, 120 }, + [137] = { 68.1, 9.6, 1584, 120 }, + [138] = { 62.3, 9.6, 1584, 120 }, + [139] = { 67.9, 9.5, 1584, 120 }, + [140] = { 68.9, 9.4, 1584, 120 }, + [141] = { 71.1, 9.2, 1584, 120 }, + [142] = { 70.4, 9.2, 1584, 120 }, + [143] = { 68.8, 9.1, 1584, 120 }, + [144] = { 71.4, 9, 1584, 120 }, + [145] = { 70.5, 9, 1584, 120 }, + [146] = { 70.3, 9, 1584, 120 }, + [147] = { 71.2, 8.9, 1584, 120 }, + [148] = { 69, 8.9, 1584, 120 }, + [149] = { 63.2, 8.7, 1584, 120 }, + [150] = { 60.3, 8.7, 1584, 120 }, + [151] = { 60, 8.6, 1584, 120 }, + [152] = { 61, 8.5, 1584, 120 }, + [153] = { 63, 8.5, 1584, 120 }, + [154] = { 60.4, 8.4, 1584, 120 }, + [155] = { 62.1, 8.3, 1584, 120 }, + [156] = { 60.1, 8.3, 1584, 120 }, + [157] = { 68.2, 8.1, 1584, 120 }, + [158] = { 61.2, 8, 1584, 120 }, + [159] = { 61, 8, 1584, 120 }, + [160] = { 62.3, 8, 1584, 120 }, + [161] = { 67.2, 8, 1584, 120 }, + [162] = { 71.5, 7.9, 1584, 120 }, + [163] = { 68.4, 7.9, 1584, 120 }, + [164] = { 65.9, 7.8, 1584, 120 }, + [165] = { 67.4, 7.8, 1584, 120 }, + [166] = { 70.3, 7.7, 1584, 120 }, + [167] = { 65.7, 7.7, 1584, 120 }, + [168] = { 67.2, 7.7, 1584, 120 }, + [169] = { 71.3, 7.7, 1584, 120 }, + [170] = { 65.9, 7.6, 1584, 120 }, + [171] = { 63.2, 7.5, 1584, 120 }, + [172] = { 70.5, 7.4, 1584, 120 }, + [173] = { 63, 7.2, 1584, 120 }, + [174] = { 64.8, 6.6, 1584, 120 }, + [175] = { 66.1, 6.6, 1584, 120 }, + [176] = { 67.3, 6.6, 1584, 120 }, + [177] = { 67.4, 6.5, 1584, 120 }, + [178] = { 70.5, 6.4, 1584, 120 }, + [179] = { 64.7, 6.4, 1584, 120 }, + [180] = { 68.4, 6.4, 1584, 120 }, + [181] = { 66.1, 6.3, 1584, 120 }, + [182] = { 70.7, 6.3, 1584, 120 }, + [183] = { 68.1, 6.3, 1584, 120 }, + [184] = { 61.5, 6.2, 1584, 120 }, + [185] = { 68.2, 6.1, 1584, 120 }, + [186] = { 65.6, 6.1, 1584, 120 }, + [187] = { 65.4, 6.1, 1584, 120 }, + [188] = { 61.4, 6, 1584, 120 }, + [189] = { 61.6, 6, 1584, 120 }, + [190] = { 61.5, 5.8, 1584, 120 }, + [191] = { 65.5, 5.8, 1584, 120 }, + [192] = { 70.5, 5.4, 1584, 120 }, + [193] = { 69.8, 5.3, 1584, 120 }, + [194] = { 62.1, 5.3, 1584, 120 }, + [195] = { 69.1, 5.2, 1584, 120 }, + [196] = { 62.3, 5.1, 1584, 120 }, + [197] = { 70.6, 5.1, 1584, 120 }, + [198] = { 70.4, 5, 1584, 120 }, + [199] = { 62.1, 5, 1584, 120 }, + [200] = { 63, 5, 1584, 120 }, + [201] = { 69.9, 5, 1584, 120 }, + [202] = { 65.4, 5, 1584, 120 }, + [203] = { 69, 5, 1584, 120 }, + [204] = { 69.7, 4.9, 1584, 120 }, + [205] = { 62.2, 4.9, 1584, 120 }, + [206] = { 65.2, 4.9, 1584, 120 }, + [207] = { 64.5, 4.9, 1584, 120 }, + [208] = { 62.9, 4.9, 1584, 120 }, + [209] = { 65.5, 4.8, 1584, 120 }, + [210] = { 64.3, 4.7, 1584, 120 }, + [211] = { 65.7, 4.7, 1584, 120 }, + [212] = { 66.9, 4.6, 1584, 120 }, + [213] = { 65.7, 4.5, 1584, 120 }, + [214] = { 67, 4.4, 1584, 120 }, + [215] = { 65.4, 4.4, 1584, 120 }, + [216] = { 64.7, 4.3, 1584, 120 }, + [217] = { 64.9, 4.2, 1584, 120 }, + [218] = { 64.2, 4.1, 1584, 120 }, + [219] = { 64.7, 4.1, 1584, 120 }, + [220] = { 66.5, 4, 1584, 120 }, + [221] = { 64.3, 3.9, 1584, 120 }, + [222] = { 66.3, 3.9, 1584, 120 }, + [223] = { 66.6, 3.8, 1584, 120 }, + [224] = { 66.4, 3.6, 1584, 120 }, + [225] = { 65.8, 3.2, 1584, 120 }, + [226] = { 64.8, 3.2, 1584, 120 }, + [227] = { 64.6, 3.1, 1584, 120 }, + [228] = { 65.7, 3, 1584, 120 }, + [229] = { 66.1, 3, 1584, 120 }, + [230] = { 64.7, 2.9, 1584, 120 }, + [231] = { 65.9, 2.8, 1584, 120 }, + }, + ["lvl"] = "54-55", + }, + [8902] = { + ["coords"] = { + [1] = { 53.4, 76.8, 1584, 18000 }, + [2] = { 52.3, 76.3, 1584, 18000 }, + [3] = { 56.1, 69.1, 1584, 18000 }, + [4] = { 51.9, 68.9, 1584, 18000 }, + [5] = { 55.4, 68.8, 1584, 18000 }, + [6] = { 51.6, 68.5, 1584, 18000 }, + [7] = { 52.6, 68, 1584, 18000 }, + [8] = { 53.5, 67.4, 1584, 18000 }, + [9] = { 55.5, 48.2, 1584, 18000 }, + [10] = { 55.8, 48.2, 1584, 18000 }, + [11] = { 55.7, 47.9, 1584, 18000 }, + [12] = { 57, 46, 1584, 18000 }, + [13] = { 58.7, 45.9, 1584, 18000 }, + [14] = { 58.4, 45.9, 1584, 18000 }, + [15] = { 57.1, 45.7, 1584, 18000 }, + [16] = { 56.5, 45.5, 1584, 18000 }, + }, + ["lvl"] = "54-56", + }, + [8903] = { + ["coords"] = { + [1] = { 81.9, 12.6, 1584, 18000 }, + [2] = { 84.2, 12.5, 1584, 18000 }, + }, + ["lvl"] = "55-56", + ["rnk"] = "1", + }, + [8904] = { + ["coords"] = { + [1] = { 55.6, 69, 1584, 18000 }, + [2] = { 53.7, 67.8, 1584, 18000 }, + [3] = { 81.3, 13.5, 1584, 18000 }, + [4] = { 81.3, 13.2, 1584, 18000 }, + [5] = { 84.4, 13.2, 1584, 18000 }, + [6] = { 81.7, 13.1, 1584, 18000 }, + [7] = { 81.4, 12.9, 1584, 18000 }, + [8] = { 81.7, 12.8, 1584, 18000 }, + [9] = { 84.4, 12.8, 1584, 18000 }, + [10] = { 84.5, 12.7, 1584, 18000 }, + [11] = { 80.7, 12.7, 1584, 18000 }, + [12] = { 81, 12.6, 1584, 18000 }, + [13] = { 80.5, 12.5, 1584, 18000 }, + [14] = { 85.3, 12.4, 1584, 18000 }, + [15] = { 81, 12.3, 1584, 18000 }, + [16] = { 80.7, 12.2, 1584, 18000 }, + [17] = { 83, 12.1, 1584, 18000 }, + [18] = { 85.3, 12.1, 1584, 18000 }, + [19] = { 83.3, 11.7, 1584, 18000 }, + [20] = { 82.9, 11.4, 1584, 18000 }, + [21] = { 83.1, 11.4, 1584, 18000 }, + [22] = { 85.2, 9.3, 1584, 18000 }, + [23] = { 80.8, 8.8, 1584, 18000 }, + [24] = { 80.9, 8.6, 1584, 18000 }, + [25] = { 85.5, 8.4, 1584, 18000 }, + [26] = { 84.3, 8.4, 1584, 18000 }, + [27] = { 80.5, 8.4, 1584, 18000 }, + [28] = { 80.8, 8.3, 1584, 18000 }, + [29] = { 82.9, 8.2, 1584, 18000 }, + [30] = { 84.4, 8, 1584, 18000 }, + [31] = { 81.4, 7.6, 1584, 18000 }, + [32] = { 83.1, 7.3, 1584, 18000 }, + [33] = { 81.5, 7.2, 1584, 18000 }, + [34] = { 81.5, 6.8, 1584, 18000 }, + }, + ["lvl"] = "55-56", + }, + [8905] = { + ["coords"] = { + [1] = { 61.5, 55.6, 1584, 604800 }, + [2] = { 61.9, 55.2, 1584, 604800 }, + [3] = { 61.3, 55.2, 1584, 604800 }, + [4] = { 61.7, 54.7, 1584, 604800 }, + [5] = { 63.8, 48.1, 1584, 18000 }, + [6] = { 63.7, 47.6, 1584, 18000 }, + [7] = { 65.6, 45.9, 1584, 18000 }, + [8] = { 65.5, 44.8, 1584, 18000 }, + [9] = { 63.8, 43.7, 1584, 18000 }, + [10] = { 61.2, 43.1, 1584, 18000 }, + [11] = { 63.1, 41.6, 1584, 18000 }, + [12] = { 62.2, 41.4, 1584, 18000 }, + }, + ["lvl"] = "53-54", + ["rnk"] = "1", + }, + [8906] = { + ["coords"] = { + [1] = { 44.6, 57.8, 1584, 18000 }, + [2] = { 46.1, 57.2, 1584, 18000 }, + [3] = { 41.5, 55.7, 1584, 18000 }, + [4] = { 43.4, 52.1, 1584, 604800 }, + }, + ["lvl"] = "54-55", + ["rnk"] = "1", + }, + [8907] = { + ["coords"] = { + [1] = { 41.8, 57.9, 1584, 18000 }, + [2] = { 44.6, 56.8, 1584, 18000 }, + [3] = { 43.1, 52.1, 1584, 604800 }, + }, + ["lvl"] = "55-56", + ["rnk"] = "1", + }, + [8908] = { + ["coords"] = { + [1] = { 53.1, 31.9, 1584, 18000 }, + [2] = { 54, 30.6, 1584, 18000 }, + [3] = { 51.9, 30.3, 1584, 18000 }, + [4] = { 50.8, 28.3, 1584, 18000 }, + [5] = { 53.6, 27, 1584, 18000 }, + [6] = { 52.1, 25.6, 1584, 18000 }, + }, + ["lvl"] = "55-56", + ["rnk"] = "1", + }, + [8909] = { + ["coords"] = { + [1] = { 56.5, 76.4, 1584, 18000 }, + [2] = { 48.6, 72.7, 1584, 18000 }, + [3] = { 48.4, 72.4, 1584, 18000 }, + [4] = { 50.4, 70.7, 1584, 18000 }, + [5] = { 50.5, 70.3, 1584, 18000 }, + [6] = { 47, 69.8, 1584, 18000 }, + [7] = { 47.8, 69.7, 1584, 18000 }, + [8] = { 57.5, 69.4, 1584, 18000 }, + [9] = { 48, 69.3, 1584, 18000 }, + [10] = { 52, 67.4, 1584, 18000 }, + [11] = { 52.2, 67.2, 1584, 18000 }, + }, + ["lvl"] = "50-52", + ["rnk"] = "1", + }, + [8910] = { + ["coords"] = { + [1] = { 42.5, 76.5, 1584, 18000 }, + [2] = { 46.5, 68, 1584, 18000 }, + [3] = { 57.8, 67.7, 1584, 18000 }, + [4] = { 58.9, 67.5, 1584, 18000 }, + [5] = { 37.7, 66.6, 1584, 18000 }, + [6] = { 57.6, 62.8, 1584, 18000 }, + [7] = { 58.5, 62.7, 1584, 18000 }, + [8] = { 58.1, 59.9, 1584, 18000 }, + [9] = { 52.8, 58.8, 1584, 18000 }, + [10] = { 51.5, 57, 1584, 18000 }, + [11] = { 54.5, 56.1, 1584, 18000 }, + [12] = { 52.9, 54.5, 1584, 18000 }, + [13] = { 55.6, 53.8, 1584, 18000 }, + [14] = { 54.4, 52.7, 1584, 18000 }, + [15] = { 58.4, 51.9, 1584, 18000 }, + [16] = { 56.7, 51.2, 1584, 18000 }, + [17] = { 56.1, 50.7, 1584, 18000 }, + [18] = { 60.2, 46.1, 1584, 18000 }, + [19] = { 59.5, 45.1, 1584, 18000 }, + }, + ["lvl"] = "52-54", + ["rnk"] = "1", + }, + [8911] = { + ["coords"] = { + [1] = { 41.3, 65.8, 1584, 18000 }, + [2] = { 41.3, 65.5, 1584, 18000 }, + [3] = { 41.4, 65.1, 1584, 18000 }, + [4] = { 44.7, 64.7, 1584, 18000 }, + [5] = { 44.9, 64.4, 1584, 18000 }, + [6] = { 58.2, 64.3, 1584, 18000 }, + [7] = { 43.4, 63.6, 1584, 18000 }, + [8] = { 42.4, 63.2, 1584, 18000 }, + [9] = { 42.5, 62.9, 1584, 18000 }, + [10] = { 41, 62.6, 1584, 18000 }, + [11] = { 44.7, 61.3, 1584, 18000 }, + [12] = { 47.9, 54.7, 1584, 18000 }, + [13] = { 49.7, 53.9, 1584, 18000 }, + [14] = { 47.7, 53.9, 1584, 18000 }, + [15] = { 49.4, 53, 1584, 18000 }, + [16] = { 56.3, 52.3, 1584, 18000 }, + [17] = { 58.3, 52.2, 1584, 18000 }, + [18] = { 60.6, 49.4, 1584, 18000 }, + [19] = { 55.8, 48.5, 1584, 18000 }, + [20] = { 56.1, 48.2, 1584, 18000 }, + [21] = { 61.8, 46.3, 1584, 18000 }, + [22] = { 56.7, 45.8, 1584, 18000 }, + [23] = { 58.8, 45.6, 1584, 18000 }, + [24] = { 59.7, 45.1, 1584, 18000 }, + [25] = { 58.1, 41.7, 1584, 18000 }, + [26] = { 56, 39.7, 1584, 18000 }, + [27] = { 56.1, 39.5, 1584, 18000 }, + [28] = { 59.4, 38.7, 1584, 18000 }, + [29] = { 56.5, 38.3, 1584, 18000 }, + [30] = { 57.4, 35.1, 1584, 18000 }, + [31] = { 62.1, 31.1, 1584, 18000 }, + [32] = { 66.1, 30.3, 1584, 18000 }, + [33] = { 66.5, 30, 1584, 18000 }, + [34] = { 56.2, 29.5, 1584, 18000 }, + [35] = { 66.7, 29.4, 1584, 18000 }, + [36] = { 60.4, 28.6, 1584, 18000 }, + [37] = { 59.9, 28.3, 1584, 18000 }, + [38] = { 60, 27.7, 1584, 18000 }, + [39] = { 60.6, 27.4, 1584, 18000 }, + [40] = { 62.8, 24.4, 1584, 18000 }, + [41] = { 62.4, 24.3, 1584, 18000 }, + [42] = { 66.3, 23.9, 1584, 18000 }, + [43] = { 62.8, 23.8, 1584, 18000 }, + [44] = { 69.2, 14.4, 1584, 18000 }, + [45] = { 69.3, 6.4, 1584, 18000 }, + }, + ["lvl"] = "54-56", + ["rnk"] = "1", + }, + [8912] = { + ["coords"] = { + [1] = { 51.6, 98.5, 1584, 18000 }, + [2] = { 51.5, 98.1, 1584, 18000 }, + [3] = { 51.3, 98.1, 1584, 18000 }, + [4] = { 48.4, 96.6, 1584, 18000 }, + [5] = { 50.1, 96.2, 1584, 18000 }, + [6] = { 52.9, 95.8, 1584, 18000 }, + [7] = { 51.6, 94.7, 1584, 604800 }, + [8] = { 54.7, 94, 1584, 18000 }, + [9] = { 54.9, 93.9, 1584, 18000 }, + [10] = { 50, 92.5, 1584, 18000 }, + [11] = { 50.2, 92.4, 1584, 18000 }, + [12] = { 48, 92.3, 1584, 18000 }, + [13] = { 46.8, 91, 1584, 18000 }, + [14] = { 52.2, 90.9, 1584, 18000 }, + [15] = { 52.1, 90.4, 1584, 18000 }, + [16] = { 49.7, 90.2, 1584, 18000 }, + [17] = { 53.8, 89.8, 1584, 18000 }, + [18] = { 49.5, 89.7, 1584, 18000 }, + [19] = { 48.2, 89.4, 1584, 18000 }, + [20] = { 51.6, 88.5, 1584, 18000 }, + [21] = { 51.6, 88.1, 1584, 18000 }, + [22] = { 49.9, 87.9, 1584, 18000 }, + [23] = { 49.7, 85.5, 1584, 18000 }, + [24] = { 50.2, 85.3, 1584, 18000 }, + }, + ["lvl"] = "50-51", + ["rnk"] = "1", + }, + [8913] = { + ["coords"] = { + [1] = { 56.5, 77.5, 1584, 604800 }, + [2] = { 56.4, 77.2, 1584, 604800 }, + [3] = { 58.5, 72.6, 1584, 18000 }, + [4] = { 58.3, 71.9, 1584, 18000 }, + [5] = { 58.1, 69.5, 1584, 18000 }, + [6] = { 57.9, 60.8, 1584, 18000 }, + [7] = { 56.6, 58.5, 1584, 18000 }, + [8] = { 59.4, 57.1, 1584, 18000 }, + [9] = { 55.3, 56.5, 1584, 18000 }, + [10] = { 57.6, 56, 1584, 18000 }, + [11] = { 60.3, 54.2, 1584, 18000 }, + [12] = { 60.9, 53.1, 1584, 18000 }, + [13] = { 56.8, 52.2, 1584, 18000 }, + [14] = { 57, 51.7, 1584, 18000 }, + [15] = { 59.5, 51, 1584, 18000 }, + [16] = { 59.5, 50.8, 1584, 18000 }, + [17] = { 59.3, 47.5, 1584, 18000 }, + [18] = { 59.7, 47.3, 1584, 18000 }, + }, + ["lvl"] = "52-53", + ["rnk"] = "1", + }, + [8914] = { + ["coords"] = { + [1] = { 58.6, 72, 1584, 18000 }, + [2] = { 55.2, 57, 1584, 18000 }, + [3] = { 57.7, 56.4, 1584, 18000 }, + [4] = { 60, 53, 1584, 18000 }, + [5] = { 59, 50.8, 1584, 18000 }, + }, + ["lvl"] = "53-54", + ["rnk"] = "1", + }, + [8915] = { + ["coords"] = { + [1] = { 84.7, 12.9, 1584, 18000 }, + [2] = { 85.6, 12.4, 1584, 18000 }, + [3] = { 85.6, 11.8, 1584, 18000 }, + [4] = { 82.7, 11.8, 1584, 18000 }, + [5] = { 85.6, 9, 1584, 18000 }, + [6] = { 80.5, 8.7, 1584, 18000 }, + [7] = { 85.2, 8.4, 1584, 18000 }, + [8] = { 84.5, 8.4, 1584, 18000 }, + [9] = { 83.2, 8.2, 1584, 18000 }, + [10] = { 84.6, 8, 1584, 18000 }, + [11] = { 82.8, 7.5, 1584, 18000 }, + [12] = { 81.3, 6.9, 1584, 18000 }, + }, + ["lvl"] = "54-55", + }, + [8916] = { + ["coords"] = { + [1] = { 52.5, 76.8, 1584, 18000 }, + [2] = { 53.6, 76.8, 1584, 18000 }, + [3] = { 52.6, 76.1, 1584, 18000 }, + [4] = { 51, 75.2, 1584, 18000 }, + [5] = { 56.3, 75.2, 1584, 18000 }, + [6] = { 55.9, 75.1, 1584, 18000 }, + [7] = { 55.8, 74.8, 1584, 18000 }, + [8] = { 50.7, 74.8, 1584, 18000 }, + [9] = { 56.4, 74.4, 1584, 18000 }, + [10] = { 56, 74.2, 1584, 18000 }, + [11] = { 51.2, 74.1, 1584, 18000 }, + [12] = { 56.4, 74.1, 1584, 18000 }, + [13] = { 51, 74, 1584, 18000 }, + [14] = { 56.3, 73.8, 1584, 18000 }, + [15] = { 51.1, 73.7, 1584, 18000 }, + [16] = { 51, 73.5, 1584, 18000 }, + [17] = { 50.8, 73.5, 1584, 18000 }, + [18] = { 56, 69.7, 1584, 18000 }, + [19] = { 55.8, 69.7, 1584, 18000 }, + [20] = { 51.2, 69.6, 1584, 18000 }, + [21] = { 51.6, 69.4, 1584, 18000 }, + [22] = { 51.6, 69, 1584, 18000 }, + [23] = { 52.8, 68.3, 1584, 18000 }, + [24] = { 53, 68.1, 1584, 18000 }, + }, + ["lvl"] = "52-54", + }, + [8917] = { + ["coords"] = { + [1] = { 21.8, 32, 25, 500 }, + [2] = { 23.4, 30.6, 25, 500 }, + [3] = { 30.9, 29.9, 25, 500 }, + [4] = { 33.9, 29.6, 25, 500 }, + [5] = { 16.9, 28.2, 25, 500 }, + [6] = { 23.1, 27.4, 25, 500 }, + [7] = { 16.4, 25.2, 25, 500 }, + [8] = { 30.2, 25.1, 25, 500 }, + [9] = { 24.3, 23.7, 25, 500 }, + [10] = { 15.3, 22.9, 25, 500 }, + [11] = { 40.5, 22.5, 25, 500 }, + [12] = { 21.3, 22.1, 25, 500 }, + [13] = { 20.2, 20.6, 25, 500 }, + [14] = { 28.2, 20.3, 25, 500 }, + [15] = { 14.4, 17.8, 25, 500 }, + [16] = { 40.8, 14.5, 25, 500 }, + [17] = { 15.9, 13, 25, 500 }, + [18] = { 41.7, 12.5, 25, 500 }, + [19] = { 19.9, 12.2, 25, 500 }, + [20] = { 15.1, 11.6, 25, 500 }, + [21] = { 41.8, 8.8, 25, 500 }, + [22] = { 28.8, 7.9, 25, 500 }, + [23] = { 19.4, 6.1, 25, 500 }, + [24] = { 40, 5.2, 25, 500 }, + [25] = { 29.5, 5, 25, 500 }, + [26] = { 39.8, 3.2, 25, 500 }, + [27] = { 37.2, 2.6, 25, 500 }, + [28] = { 29, 0, 25, 500 }, + [29] = { 22.2, 22.9, 46, 500 }, + [30] = { 22.6, 22.5, 46, 500 }, + [31] = { 24.4, 22.4, 46, 500 }, + [32] = { 25.1, 22.3, 46, 500 }, + [33] = { 21, 22, 46, 500 }, + [34] = { 22.5, 21.8, 46, 500 }, + [35] = { 26.7, 20.6, 46, 500 }, + [36] = { 26.6, 92.6, 51, 500 }, + [37] = { 27.1, 92.2, 51, 500 }, + [38] = { 29.5, 92, 51, 500 }, + [39] = { 30.4, 91.9, 51, 500 }, + [40] = { 25, 91.4, 51, 500 }, + [41] = { 27, 91.2, 51, 500 }, + [42] = { 24.9, 90.5, 51, 500 }, + [43] = { 29.2, 90.5, 51, 500 }, + [44] = { 27.4, 90, 51, 500 }, + [45] = { 24.5, 89.8, 51, 500 }, + [46] = { 32.6, 89.6, 51, 500 }, + [47] = { 26.4, 89.5, 51, 500 }, + [48] = { 26.1, 89, 51, 500 }, + [49] = { 28.6, 88.9, 51, 500 }, + [50] = { 24.2, 88.1, 51, 500 }, + [51] = { 32.7, 87.1, 51, 500 }, + [52] = { 24.7, 86.7, 51, 500 }, + [53] = { 32.9, 86.5, 51, 500 }, + [54] = { 26, 86.4, 51, 500 }, + [55] = { 24.4, 86.2, 51, 500 }, + [56] = { 33, 85.3, 51, 500 }, + [57] = { 28.8, 85, 51, 500 }, + [58] = { 25.8, 84.5, 51, 500 }, + [59] = { 32.4, 84.2, 51, 500 }, + [60] = { 29, 84.1, 51, 500 }, + [61] = { 32.3, 83.5, 51, 500 }, + [62] = { 31.5, 83.4, 51, 500 }, + [63] = { 28.9, 82.6, 51, 500 }, + [64] = { 30.1, 82.4, 51, 500 }, + [65] = { 30.8, 82.3, 51, 500 }, + [66] = { 31.6, 82.2, 51, 500 }, + [67] = { 97.9, 53.4, 5581, 500 }, + [68] = { 98.3, 53.1, 5581, 500 }, + [69] = { 99.9, 52.9, 5581, 500 }, + [70] = { 96.9, 52.5, 5581, 500 }, + [71] = { 98.2, 52.3, 5581, 500 }, + [72] = { 96.8, 51.9, 5581, 500 }, + [73] = { 99.8, 51.9, 5581, 500 }, + [74] = { 98.5, 51.5, 5581, 500 }, + [75] = { 96.5, 51.4, 5581, 500 }, + [76] = { 97.8, 51.2, 5581, 500 }, + [77] = { 97.6, 50.9, 5581, 500 }, + [78] = { 99.3, 50.8, 5581, 500 }, + [79] = { 96.3, 50.3, 5581, 500 }, + [80] = { 96.6, 49.2, 5581, 500 }, + [81] = { 97.5, 49, 5581, 500 }, + [82] = { 96.5, 48.9, 5581, 500 }, + [83] = { 99.5, 48.1, 5581, 500 }, + [84] = { 97.4, 47.7, 5581, 500 }, + [85] = { 99.6, 47.5, 5581, 500 }, + [86] = { 99.5, 46.4, 5581, 500 }, + }, + ["lvl"] = "46-48", + }, + [8920] = { + ["coords"] = { + [1] = { 41.5, 59.8, 1584, 18000 }, + [2] = { 41, 59.7, 1584, 18000 }, + [3] = { 41.4, 59.7, 1584, 18000 }, + [4] = { 41, 59.4, 1584, 18000 }, + [5] = { 41.1, 59.4, 1584, 18000 }, + [6] = { 43, 59.1, 1584, 18000 }, + [7] = { 41.9, 58.1, 1584, 18000 }, + [8] = { 41.7, 57.9, 1584, 18000 }, + [9] = { 41.9, 57.9, 1584, 18000 }, + [10] = { 41.7, 57.7, 1584, 18000 }, + [11] = { 46.4, 57.7, 1584, 18000 }, + [12] = { 44.3, 57.6, 1584, 18000 }, + [13] = { 46.2, 57.3, 1584, 18000 }, + [14] = { 46.1, 57.2, 1584, 18000 }, + [15] = { 44.1, 57.1, 1584, 18000 }, + [16] = { 45.8, 56.7, 1584, 18000 }, + [17] = { 45.9, 56.6, 1584, 18000 }, + [18] = { 42.3, 56.2, 1584, 18000 }, + [19] = { 41.3, 55.7, 1584, 18000 }, + [20] = { 41.7, 55.5, 1584, 18000 }, + [21] = { 56.3, 45.6, 1584, 18000 }, + }, + ["lvl"] = "54-56", + }, + [8921] = { + ["coords"] = { + [1] = { 48.7, 96.6, 1584, 18000 }, + [2] = { 49.8, 96.3, 1584, 18000 }, + [3] = { 53.1, 95.9, 1584, 18000 }, + [4] = { 53.2, 95.7, 1584, 18000 }, + [5] = { 53.4, 95.2, 1584, 18000 }, + [6] = { 47.5, 94.9, 1584, 18000 }, + [7] = { 52.3, 94.8, 1584, 18000 }, + [8] = { 52.5, 94.6, 1584, 18000 }, + [9] = { 47.5, 94.5, 1584, 18000 }, + [10] = { 47.4, 94.3, 1584, 18000 }, + [11] = { 47.3, 93.9, 1584, 18000 }, + [12] = { 54.8, 93.7, 1584, 18000 }, + [13] = { 47.9, 92.6, 1584, 18000 }, + [14] = { 50, 92, 1584, 18000 }, + [15] = { 47, 91.1, 1584, 18000 }, + [16] = { 55, 90.8, 1584, 18000 }, + [17] = { 47, 90.8, 1584, 18000 }, + [18] = { 54.9, 90.5, 1584, 18000 }, + [19] = { 47.9, 89.6, 1584, 18000 }, + [20] = { 50.6, 89.5, 1584, 18000 }, + [21] = { 54, 89.4, 1584, 18000 }, + [22] = { 50.5, 89.4, 1584, 18000 }, + [23] = { 53.8, 89.1, 1584, 18000 }, + [24] = { 48, 89, 1584, 18000 }, + [25] = { 51.8, 88.8, 1584, 18000 }, + [26] = { 50, 87.8, 1584, 18000 }, + [27] = { 49.8, 87.7, 1584, 18000 }, + [28] = { 47.8, 87.6, 1584, 18000 }, + [29] = { 49.5, 87.5, 1584, 18000 }, + [30] = { 47.9, 87.5, 1584, 18000 }, + [31] = { 47.8, 87.4, 1584, 18000 }, + [32] = { 46.7, 87.2, 1584, 18000 }, + [33] = { 50.1, 87.1, 1584, 18000 }, + [34] = { 54, 87, 1584, 18000 }, + [35] = { 50.2, 86.9, 1584, 18000 }, + [36] = { 53.2, 86.8, 1584, 18000 }, + [37] = { 50.1, 86.8, 1584, 18000 }, + [38] = { 53.1, 86.8, 1584, 18000 }, + [39] = { 53.3, 86.7, 1584, 18000 }, + [40] = { 52.5, 86.6, 1584, 18000 }, + [41] = { 48.1, 86.3, 1584, 18000 }, + [42] = { 48, 86.2, 1584, 18000 }, + [43] = { 48.3, 84.3, 1584, 18000 }, + [44] = { 48.5, 84.3, 1584, 18000 }, + [45] = { 51.2, 83.2, 1584, 18000 }, + [46] = { 51, 83, 1584, 18000 }, + [47] = { 49.7, 81.7, 1584, 18000 }, + [48] = { 49.6, 81.6, 1584, 18000 }, + [49] = { 49.7, 81.5, 1584, 18000 }, + [50] = { 50.3, 79.5, 1584, 18000 }, + [51] = { 50.4, 79.4, 1584, 18000 }, + [52] = { 47.7, 79.3, 1584, 18000 }, + [53] = { 47.8, 79.3, 1584, 18000 }, + [54] = { 53.8, 79.1, 1584, 18000 }, + [55] = { 47.8, 79.1, 1584, 18000 }, + [56] = { 53.1, 79, 1584, 18000 }, + [57] = { 52.9, 78.9, 1584, 18000 }, + [58] = { 54.1, 78.9, 1584, 18000 }, + [59] = { 54.5, 78.9, 1584, 18000 }, + [60] = { 53, 78.8, 1584, 18000 }, + [61] = { 47.4, 77.8, 1584, 18000 }, + [62] = { 47.5, 77.8, 1584, 18000 }, + [63] = { 47.5, 77.6, 1584, 18000 }, + [64] = { 50.2, 74.7, 1584, 18000 }, + [65] = { 50.1, 74.7, 1584, 18000 }, + [66] = { 50.2, 74.5, 1584, 18000 }, + [67] = { 54, 74, 1584, 604800 }, + [68] = { 53.4, 73.9, 1584, 604800 }, + [69] = { 54.3, 73.6, 1584, 604800 }, + [70] = { 53, 73.4, 1584, 604800 }, + [71] = { 53.7, 73.4, 1584, 604800 }, + [72] = { 54.2, 73, 1584, 604800 }, + [73] = { 50.9, 72.6, 1584, 18000 }, + [74] = { 50.9, 72.3, 1584, 18000 }, + [75] = { 53, 71.6, 1584, 604800 }, + [76] = { 41.8, 71.6, 1584, 18000 }, + [77] = { 52.5, 71.5, 1584, 604800 }, + [78] = { 53.8, 71.5, 1584, 604800 }, + [79] = { 43.4, 71.3, 1584, 18000 }, + [80] = { 53, 71.2, 1584, 604800 }, + [81] = { 53.1, 71.1, 1584, 604800 }, + [82] = { 52.8, 71, 1584, 604800 }, + [83] = { 54.1, 71, 1584, 604800 }, + [84] = { 53.4, 70.8, 1584, 18000 }, + [85] = { 57.8, 69.9, 1584, 18000 }, + [86] = { 57.3, 69.9, 1584, 18000 }, + [87] = { 57.2, 69.8, 1584, 18000 }, + [88] = { 57.2, 69.7, 1584, 18000 }, + [89] = { 46.8, 69, 1584, 18000 }, + [90] = { 46.6, 68.9, 1584, 18000 }, + [91] = { 46.8, 68.7, 1584, 18000 }, + [92] = { 36.9, 68.2, 1584, 18000 }, + [93] = { 36.8, 68.1, 1584, 18000 }, + [94] = { 46.7, 60.9, 1584, 18000 }, + [95] = { 46.9, 60.8, 1584, 18000 }, + [96] = { 47.1, 60.7, 1584, 18000 }, + }, + ["lvl"] = "49-50", + }, + [8922] = { + ["coords"] = { + [1] = { 58.2, 69.4, 1584, 18000 }, + [2] = { 58.1, 60.5, 1584, 18000 }, + [3] = { 56.4, 58.2, 1584, 18000 }, + [4] = { 60, 58.2, 1584, 18000 }, + [5] = { 59.7, 56.8, 1584, 18000 }, + [6] = { 59.1, 54.5, 1584, 18000 }, + }, + ["lvl"] = "54-55", + }, + [8923] = { + ["coords"] = { + [1] = { 52.3, 29.8, 1584, 604800 }, + }, + ["lvl"] = "57", + ["rnk"] = "2", + }, + [8924] = { + ["coords"] = { + [1] = { 34.5, 7.9, 25, 108000 }, + [2] = { 30.6, 85, 51, 108000 }, + }, + ["lvl"] = "50", + ["rnk"] = "2", + }, + [8925] = { + ["coords"] = {}, + ["lvl"] = "50-52", + ["rnk"] = "1", + }, + [8926] = { + ["coords"] = {}, + ["lvl"] = "50-52", + ["rnk"] = "1", + }, + [8927] = { + ["coords"] = {}, + ["lvl"] = "50-52", + ["rnk"] = "1", + }, + [8928] = { + ["coords"] = {}, + ["lvl"] = "50-52", + ["rnk"] = "1", + }, + [8929] = { + ["coords"] = { + [1] = { 86, 10.1, 1584, 604800 }, + }, + ["lvl"] = "58", + ["rnk"] = "1", + }, + [8932] = { + ["coords"] = {}, + ["lvl"] = "50-52", + ["rnk"] = "1", + }, + [8933] = { + ["coords"] = {}, + ["lvl"] = "50-52", + ["rnk"] = "1", + }, + [8935] = "_", + [8956] = { + ["coords"] = { + [1] = { 57.4, 25.5, 331, 300 }, + [2] = { 56.5, 89.8, 361, 300 }, + [3] = { 45.6, 87.6, 361, 300 }, + [4] = { 57.8, 87.5, 361, 300 }, + [5] = { 48, 87.2, 361, 300 }, + [6] = { 58.3, 87.2, 361, 300 }, + [7] = { 58.2, 86.8, 361, 300 }, + [8] = { 58, 86.7, 361, 300 }, + [9] = { 46.3, 86.5, 361, 300 }, + [10] = { 48.5, 86.4, 361, 300 }, + [11] = { 49.3, 85.5, 361, 300 }, + [12] = { 45.7, 85.3, 361, 300 }, + [13] = { 56.8, 84.9, 361, 300 }, + [14] = { 45.1, 84.9, 361, 300 }, + [15] = { 49.6, 84.7, 361, 300 }, + [16] = { 44.5, 83.9, 361, 300 }, + [17] = { 54.9, 83.8, 361, 300 }, + [18] = { 45.7, 83.8, 361, 300 }, + [19] = { 56.2, 83.7, 361, 300 }, + [20] = { 55.5, 83.2, 361, 300 }, + [21] = { 43.8, 82.8, 361, 300 }, + [22] = { 44.5, 82.1, 361, 300 }, + [23] = { 45.6, 82, 361, 300 }, + [24] = { 49.1, 79.7, 361, 300 }, + [25] = { 48.4, 78.8, 361, 300 }, + [26] = { 41.5, 78.7, 361, 300 }, + [27] = { 41.2, 78.5, 361, 300 }, + [28] = { 40.4, 78, 361, 300 }, + [29] = { 40.8, 77.2, 361, 300 }, + [30] = { 46.4, 77.2, 361, 300 }, + [31] = { 48.5, 76.8, 361, 300 }, + [32] = { 48, 76, 361, 300 }, + [33] = { 46.3, 75.5, 361, 300 }, + [34] = { 41.5, 75.3, 361, 300 }, + [35] = { 47.9, 74.6, 361, 300 }, + [36] = { 45.8, 74.2, 361, 300 }, + [37] = { 46.8, 74.2, 361, 300 }, + [38] = { 45.1, 73.5, 361, 300 }, + [39] = { 45.7, 73.5, 361, 300 }, + [40] = { 47.1, 73.1, 361, 300 }, + [41] = { 45.6, 72.8, 361, 300 }, + [42] = { 45.1, 72.7, 361, 300 }, + [43] = { 46.6, 72.5, 361, 300 }, + [44] = { 37.4, 71.9, 361, 300 }, + [45] = { 39.7, 70.1, 361, 300 }, + [46] = { 41.6, 70.1, 361, 300 }, + [47] = { 3.1, 95.5, 616, 300 }, + [48] = { 2, 93.9, 616, 300 }, + [49] = { 2.2, 90.4, 616, 300 }, + [50] = { 1.3, 88.9, 616, 300 }, + [51] = { 1.1, 86.4, 616, 300 }, + }, + ["lvl"] = "47-48", + }, + [8957] = { + ["coords"] = { + [1] = { 54.4, 28.1, 361, 300 }, + [2] = { 53.5, 28.1, 361, 300 }, + [3] = { 56.1, 27.4, 361, 300 }, + [4] = { 56.7, 26.5, 361, 300 }, + [5] = { 53.3, 26.4, 361, 300 }, + [6] = { 56.7, 24.9, 361, 300 }, + [7] = { 54.5, 24.8, 361, 300 }, + [8] = { 55.1, 24.1, 361, 300 }, + [9] = { 56.4, 24, 361, 300 }, + [10] = { 55.6, 23.4, 361, 300 }, + [11] = { 56.1, 22.2, 361, 300 }, + [12] = { 55.6, 21.1, 361, 300 }, + [13] = { 56.2, 20.6, 361, 300 }, + [14] = { 63, 19.7, 361, 300 }, + [15] = { 64.6, 19.7, 361, 300 }, + [16] = { 57.6, 17.8, 361, 300 }, + [17] = { 60.6, 17.1, 361, 300 }, + [18] = { 61.8, 17.1, 361, 300 }, + [19] = { 62.4, 16.1, 361, 300 }, + [20] = { 52.1, 16.1, 361, 300 }, + [21] = { 53.2, 16, 361, 300 }, + [22] = { 51.3, 15.4, 361, 300 }, + [23] = { 53.9, 15.4, 361, 300 }, + [24] = { 60.2, 14.9, 361, 300 }, + [25] = { 61.9, 13.5, 361, 300 }, + [26] = { 63.6, 13.5, 361, 300 }, + [27] = { 49.9, 13.1, 361, 300 }, + [28] = { 50.9, 12.7, 361, 300 }, + [29] = { 50.4, 12.6, 361, 300 }, + [30] = { 50.9, 12.2, 361, 300 }, + [31] = { 49.6, 12.2, 361, 300 }, + [32] = { 51.6, 12.1, 361, 300 }, + [33] = { 56.1, 11.7, 361, 300 }, + [34] = { 55.4, 10.8, 361, 300 }, + [35] = { 56, 9.9, 361, 300 }, + [36] = { 56.3, 6.6, 361, 300 }, + [37] = { 12.7, 3.3, 616, 300 }, + [38] = { 11, 3.1, 616, 300 }, + [39] = { 15.8, 1.9, 616, 300 }, + [40] = { 16.8, 0.4, 616, 300 }, + [41] = { 10.6, 0.2, 616, 300 }, + [42] = { 24.7, 45.5, 618, 300 }, + }, + ["lvl"] = "51-52", + }, + [8958] = { + ["coords"] = { + [1] = { 43.8, 67.6, 361, 300 }, + [2] = { 44.9, 67.3, 361, 300 }, + [3] = { 43.7, 65.8, 361, 300 }, + [4] = { 43.3, 65.5, 361, 300 }, + [5] = { 44.7, 65.5, 361, 300 }, + [6] = { 44.2, 65.3, 361, 300 }, + [7] = { 43.7, 65.2, 361, 300 }, + [8] = { 44.4, 64.9, 361, 300 }, + [9] = { 44, 64.8, 361, 300 }, + [10] = { 43, 63.7, 361, 300 }, + [11] = { 44.1, 63.4, 361, 300 }, + [12] = { 42.8, 63.3, 361, 300 }, + [13] = { 44.7, 63.3, 361, 300 }, + [14] = { 43.6, 62.9, 361, 300 }, + [15] = { 42.9, 62.9, 361, 300 }, + [16] = { 42.3, 62.5, 361, 300 }, + [17] = { 42, 58.6, 361, 300 }, + [18] = { 38.1, 56, 361, 300 }, + [19] = { 39.6, 51.6, 361, 300 }, + [20] = { 38.8, 45.3, 361, 300 }, + [21] = { 39.3, 45.1, 361, 300 }, + [22] = { 38.1, 45.1, 361, 300 }, + [23] = { 37.7, 45, 361, 300 }, + [24] = { 38.3, 44.4, 361, 300 }, + [25] = { 38.6, 44.3, 361, 300 }, + [26] = { 38.8, 44.3, 361, 300 }, + [27] = { 37.9, 43.9, 361, 300 }, + [28] = { 37.9, 43.2, 361, 300 }, + [29] = { 37.6, 42.9, 361, 300 }, + [30] = { 38.2, 41.9, 361, 300 }, + [31] = { 49.1, 35.9, 361, 300 }, + [32] = { 40, 32.9, 361, 300 }, + [33] = { 39.3, 31, 361, 300 }, + [34] = { 39.8, 30.7, 361, 300 }, + [35] = { 41.7, 24.5, 361, 300 }, + [36] = { 41.2, 23.6, 361, 300 }, + [37] = { 46.8, 19.6, 361, 300 }, + [38] = { 44.5, 18, 361, 300 }, + [39] = { 49.7, 16.3, 361, 300 }, + [40] = { 46.2, 15.6, 361, 300 }, + [41] = { 3.1, 17.3, 616, 300 }, + }, + ["lvl"] = "49-50", + }, + [8959] = { + ["coords"] = { + [1] = { 57.2, 27.5, 331, 300 }, + [2] = { 55.1, 27.3, 331, 300 }, + [3] = { 57.5, 26.7, 331, 300 }, + [4] = { 54.6, 26.6, 331, 300 }, + [5] = { 56, 25, 331, 300 }, + [6] = { 56.3, 91.8, 361, 300 }, + [7] = { 54.2, 91.6, 361, 300 }, + [8] = { 56.7, 90.9, 361, 300 }, + [9] = { 53.7, 90.8, 361, 300 }, + [10] = { 55.1, 89.2, 361, 300 }, + [11] = { 52.5, 89, 361, 300 }, + [12] = { 50.4, 87.6, 361, 300 }, + [13] = { 52.6, 87.3, 361, 300 }, + [14] = { 52, 86.3, 361, 300 }, + [15] = { 51.2, 86.2, 361, 300 }, + [16] = { 55, 85.8, 361, 300 }, + [17] = { 51.5, 85.6, 361, 300 }, + [18] = { 54.1, 85.4, 361, 300 }, + [19] = { 53.4, 84.8, 361, 300 }, + [20] = { 54.3, 84.8, 361, 300 }, + [21] = { 53.8, 84.1, 361, 300 }, + [22] = { 53.2, 83.4, 361, 300 }, + [23] = { 53.6, 83.3, 361, 300 }, + [24] = { 49.1, 83.2, 361, 300 }, + [25] = { 50.3, 83, 361, 300 }, + [26] = { 52.1, 82.9, 361, 300 }, + [27] = { 53.6, 82.8, 361, 300 }, + [28] = { 52.7, 82.3, 361, 300 }, + [29] = { 52.4, 82.1, 361, 300 }, + [30] = { 48.7, 82.1, 361, 300 }, + [31] = { 42.2, 82.1, 361, 300 }, + [32] = { 49.6, 81.9, 361, 300 }, + [33] = { 42, 81.8, 361, 300 }, + [34] = { 41.5, 81.7, 361, 300 }, + [35] = { 47.9, 81.6, 361, 300 }, + [36] = { 49.1, 81.5, 361, 300 }, + [37] = { 42.7, 81.2, 361, 300 }, + [38] = { 45, 81.2, 361, 300 }, + [39] = { 41.7, 81, 361, 300 }, + [40] = { 51.4, 80.6, 361, 300 }, + [41] = { 42.2, 80.6, 361, 300 }, + [42] = { 44.6, 80.5, 361, 300 }, + [43] = { 47.4, 80.5, 361, 300 }, + [44] = { 41.1, 80.5, 361, 300 }, + [45] = { 43.3, 80.4, 361, 300 }, + [46] = { 49.7, 80.2, 361, 300 }, + [47] = { 50.3, 80.1, 361, 300 }, + [48] = { 48, 79.6, 361, 300 }, + [49] = { 46.4, 78.6, 361, 300 }, + [50] = { 47.4, 77, 361, 300 }, + [51] = { 42, 76.2, 361, 300 }, + [52] = { 37.7, 74.6, 361, 300 }, + [53] = { 37.3, 73.6, 361, 300 }, + [54] = { 9, 99.9, 616, 300 }, + [55] = { 2.4, 99.9, 616, 300 }, + [56] = { 4.1, 99.6, 616, 300 }, + [57] = { 1, 98.9, 616, 300 }, + [58] = { 3.1, 98.8, 616, 300 }, + [59] = { 7.3, 97.2, 616, 300 }, + [60] = { 0.2, 96.9, 616, 300 }, + [61] = { 4.3, 96.5, 616, 300 }, + [62] = { 5.3, 96.3, 616, 300 }, + [63] = { 1.3, 95.3, 616, 300 }, + [64] = { 0, 90.8, 616, 300 }, + }, + ["lvl"] = "47-48", + }, + [8960] = { + ["coords"] = { + [1] = { 52.3, 62, 148, 300 }, + [2] = { 45, 70.9, 361, 300 }, + [3] = { 45.6, 70.6, 361, 300 }, + [4] = { 45.2, 70.4, 361, 300 }, + [5] = { 44.4, 70.2, 361, 300 }, + [6] = { 45.7, 70, 361, 300 }, + [7] = { 45.2, 69.7, 361, 300 }, + [8] = { 44.4, 69.4, 361, 300 }, + [9] = { 44.9, 69.4, 361, 300 }, + [10] = { 44.5, 68.4, 361, 300 }, + [11] = { 45.5, 68.2, 361, 300 }, + [12] = { 42.4, 57.7, 361, 300 }, + [13] = { 38, 54.4, 361, 300 }, + [14] = { 38, 52.8, 361, 300 }, + [15] = { 38.2, 50.8, 361, 300 }, + [16] = { 39.2, 50.8, 361, 300 }, + [17] = { 39.2, 47.3, 361, 300 }, + [18] = { 38.3, 47.1, 361, 300 }, + [19] = { 38.8, 46, 361, 300 }, + [20] = { 38.3, 39.7, 361, 300 }, + [21] = { 37, 39.3, 361, 300 }, + [22] = { 37.6, 38.9, 361, 300 }, + [23] = { 39.3, 38.8, 361, 300 }, + [24] = { 49.4, 35.5, 361, 300 }, + [25] = { 40.3, 34.3, 361, 300 }, + [26] = { 41.5, 34.3, 361, 300 }, + [27] = { 49.6, 33.6, 361, 300 }, + [28] = { 41.2, 33.5, 361, 300 }, + [29] = { 41.3, 33.4, 361, 300 }, + [30] = { 40.7, 33.3, 361, 300 }, + [31] = { 40.6, 32.9, 361, 300 }, + [32] = { 50.3, 32.6, 361, 300 }, + [33] = { 49.3, 32.6, 361, 300 }, + [34] = { 50.8, 31.9, 361, 300 }, + [35] = { 51.5, 31.9, 361, 300 }, + [36] = { 51.9, 31.8, 361, 300 }, + [37] = { 51.3, 31.6, 361, 300 }, + [38] = { 52.2, 30.9, 361, 300 }, + [39] = { 52.3, 30.6, 361, 300 }, + [40] = { 51.6, 30, 361, 300 }, + [41] = { 52, 29.8, 361, 300 }, + [42] = { 40.4, 25.3, 361, 300 }, + [43] = { 42.9, 24.1, 361, 300 }, + [44] = { 45, 24, 361, 300 }, + [45] = { 44.3, 22.5, 361, 300 }, + [46] = { 43.3, 22.2, 361, 300 }, + [47] = { 45.5, 18.5, 361, 300 }, + [48] = { 47.6, 16, 361, 300 }, + [49] = { 50.3, 15.4, 361, 300 }, + [50] = { 3.8, 16.4, 616, 300 }, + [51] = { 4.1, 13.1, 616, 300 }, + [52] = { 5.3, 11.3, 616, 300 }, + [53] = { 3.5, 11.2, 616, 300 }, + [54] = { 6.2, 10, 616, 300 }, + [55] = { 7.5, 9.9, 616, 300 }, + [56] = { 8.2, 9.9, 616, 300 }, + [57] = { 7.1, 9.4, 616, 300 }, + [58] = { 8.8, 8.3, 616, 300 }, + [59] = { 8.9, 7.7, 616, 300 }, + [60] = { 7.6, 6.7, 616, 300 }, + [61] = { 8.3, 6.3, 616, 300 }, + }, + ["lvl"] = "49-50", + }, + [8961] = { + ["coords"] = { + [1] = { 53.8, 27.7, 361, 300 }, + [2] = { 52.7, 27.5, 361, 300 }, + [3] = { 55.5, 26.9, 361, 300 }, + [4] = { 54.5, 26.6, 361, 300 }, + [5] = { 56.5, 21.2, 361, 300 }, + [6] = { 64.8, 20.4, 361, 300 }, + [7] = { 62.1, 20.3, 361, 300 }, + [8] = { 56.6, 19.4, 361, 300 }, + [9] = { 62, 19, 361, 300 }, + [10] = { 57.3, 18.6, 361, 300 }, + [11] = { 58.3, 16.9, 361, 300 }, + [12] = { 53.8, 13.5, 361, 300 }, + [13] = { 56.7, 12.9, 361, 300 }, + [14] = { 56.1, 8.2, 361, 300 }, + [15] = { 11.6, 2.6, 616, 300 }, + [16] = { 9.7, 2.1, 616, 300 }, + [17] = { 14.7, 1.1, 616, 300 }, + [18] = { 12.9, 0.4, 616, 300 }, + [19] = { 24.9, 46.1, 618, 300 }, + }, + ["lvl"] = "51-52", + }, + [8964] = { + ["coords"] = { + [1] = { 50.7, 76.6, 25, 900 }, + [2] = { 50.5, 50, 25, 900 }, + [3] = { 29.2, 33.6, 46, 900 }, + [4] = { 29.2, 27.2, 46, 900 }, + [5] = { 35.8, 98.3, 51, 900 }, + }, + ["lvl"] = "50-52", + ["rnk"] = "1", + }, + [8976] = { + ["coords"] = { + [1] = { 17.3, 52.9, 46, 180000 }, + [2] = { 93.5, 80.6, 5581, 180000 }, + }, + ["lvl"] = "60", + ["rnk"] = "2", + }, + [8977] = { + ["coords"] = { + [1] = { 79.9, 47.2, 46, 500 }, + }, + ["lvl"] = "54", + }, + [8978] = { + ["coords"] = { + [1] = { 53.9, 40.8, 46, 27000 }, + }, + ["lvl"] = "57", + ["rnk"] = "4", + }, + [8979] = { + ["coords"] = { + [1] = { 94.2, 72.7, 25, 27000 }, + [2] = { 39.8, 32.7, 46, 27000 }, + }, + ["lvl"] = "59", + ["rnk"] = "4", + }, + [8981] = { + ["coords"] = { + [1] = { 77, 27, 46, 54000 }, + }, + ["lvl"] = "56", + ["rnk"] = "4", + }, + [8982] = { + ["coords"] = { + [1] = { 78.2, 12.6, 1584, 18000 }, + [2] = { 73.7, 12.6, 1584, 18000 }, + [3] = { 76, 12.5, 1584, 18000 }, + [4] = { 75.9, 8.4, 1584, 18000 }, + [5] = { 73.7, 8.3, 1584, 18000 }, + [6] = { 78.2, 8.3, 1584, 18000 }, + }, + ["lvl"] = "56", + ["rnk"] = "1", + }, + [8983] = { + ["coords"] = { + [1] = { 43.3, 52.5, 1584, 18000 }, + }, + ["lvl"] = "57", + ["rnk"] = "1", + }, + [8997] = { + ["coords"] = { + [1] = { 38.3, 43, 148, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [9016] = { + ["coords"] = { + [1] = { 34.8, 63.9, 1584, 604800 }, + }, + ["lvl"] = "54", + ["rnk"] = "1", + }, + [9017] = { + ["coords"] = { + [1] = { 57.5, 48.9, 1584, 604800 }, + }, + ["lvl"] = "55", + ["rnk"] = "1", + }, + [9018] = { + ["coords"] = { + [1] = { 51.4, 94.8, 1584, 604800 }, + }, + ["lvl"] = "52", + ["rnk"] = "1", + }, + [9019] = { + ["coords"] = { + [1] = { 86, 10.5, 1584, 604800 }, + }, + ["lvl"] = "59", + ["rnk"] = "1", + }, + [9020] = { + ["coords"] = { + [1] = { 53.1, 90, 1584, 18000 }, + }, + ["fac"] = "AH", + ["lvl"] = "54", + ["rnk"] = "1", + }, + [9021] = { + ["coords"] = { + [1] = { 54.7, 86.4, 1584, 18000 }, + }, + ["fac"] = "AH", + ["lvl"] = "52", + ["rnk"] = "1", + }, + [9022] = { + ["coords"] = { + [1] = { 48.2, 97.6, 1584, 18000 }, + }, + ["fac"] = "A", + ["lvl"] = "52", + ["rnk"] = "1", + }, + [9023] = { + ["coords"] = { + [1] = { 55.4, 94.4, 1584, 18000 }, + }, + ["fac"] = "A", + ["lvl"] = "52", + ["rnk"] = "1", + }, + [9024] = { + ["coords"] = { + [1] = { 56.4, 77.5, 1584, 604800 }, + }, + ["lvl"] = "52", + ["rnk"] = "2", + }, + [9025] = { + ["coords"] = { + [1] = { 57.6, 70.8, 1584, 604800 }, + }, + ["lvl"] = "51", + ["rnk"] = "2", + }, + [9026] = { + ["coords"] = { + [1] = { 25, 76, 51, 900 }, + [2] = { 96.8, 41.9, 5581, 900 }, + }, + ["lvl"] = "52", + ["rnk"] = "1", + }, + [9033] = { + ["coords"] = { + [1] = { 43, 67.9, 1584, 604800 }, + }, + ["lvl"] = "57", + ["rnk"] = "1", + }, + [9034] = { + ["coords"] = { + [1] = { 53.7, 21, 1584, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [9035] = { + ["coords"] = { + [1] = { 55.2, 23.5, 1584, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [9036] = { + ["coords"] = { + [1] = { 54.1, 19, 1584, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "56", + ["rnk"] = "1", + }, + [9037] = { + ["coords"] = { + [1] = { 56.5, 22.6, 1584, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "56", + ["rnk"] = "1", + }, + [9038] = { + ["coords"] = { + [1] = { 56.8, 17.9, 1584, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "56", + ["rnk"] = "1", + }, + [9039] = { + ["coords"] = { + [1] = { 58.3, 18.3, 1584, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "57", + ["rnk"] = "1", + }, + [9040] = { + ["coords"] = { + [1] = { 58.8, 21.8, 1584, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "56", + ["rnk"] = "1", + }, + [9041] = { + ["coords"] = { + [1] = { 61.3, 54.4, 1584, 604800 }, + }, + ["lvl"] = "56", + ["rnk"] = "2", + }, + [9042] = { + ["coords"] = { + [1] = { 61.2, 54.5, 1584, 604800 }, + }, + ["lvl"] = "55", + ["rnk"] = "2", + }, + [9043] = { + ["coords"] = { + [1] = { 73.4, 53.1, 25, 500 }, + [2] = { 76.3, 52.3, 25, 500 }, + [3] = { 78.4, 51.7, 25, 500 }, + [4] = { 76.7, 48.3, 25, 500 }, + [5] = { 67.8, 47.4, 25, 500 }, + [6] = { 76.3, 47.2, 25, 500 }, + [7] = { 72.1, 44.1, 25, 500 }, + [8] = { 34.7, 27.9, 46, 500 }, + [9] = { 35.4, 27.7, 46, 500 }, + [10] = { 35.9, 27.6, 46, 500 }, + [11] = { 35.5, 26.8, 46, 500 }, + [12] = { 33.4, 26.6, 46, 500 }, + [13] = { 35.4, 26.5, 46, 500 }, + [14] = { 34.4, 25.8, 46, 500 }, + [15] = { 43, 99.3, 51, 500 }, + [16] = { 44, 99, 51, 500 }, + [17] = { 44.6, 98.8, 51, 500 }, + [18] = { 44.1, 97.7, 51, 500 }, + [19] = { 41.3, 97.5, 51, 500 }, + [20] = { 44, 97.4, 51, 500 }, + [21] = { 42.6, 96.4, 51, 500 }, + }, + ["lvl"] = "53-54", + ["rnk"] = "1", + }, + [9044] = { + ["coords"] = { + [1] = { 65.5, 69.8, 25, 500 }, + [2] = { 64.7, 69.2, 25, 500 }, + [3] = { 73.6, 55, 25, 500 }, + [4] = { 67.5, 54.7, 25, 500 }, + [5] = { 73, 53.8, 25, 500 }, + [6] = { 67.4, 53.5, 25, 500 }, + [7] = { 72.9, 52.9, 25, 500 }, + [8] = { 78.3, 52.5, 25, 500 }, + [9] = { 67.3, 48, 25, 500 }, + [10] = { 73, 46.1, 25, 500 }, + [11] = { 72.2, 45.3, 25, 500 }, + [12] = { 72.6, 43.6, 25, 500 }, + [13] = { 32.8, 32, 46, 500 }, + [14] = { 32.6, 31.8, 46, 500 }, + [15] = { 34.8, 28.4, 46, 500 }, + [16] = { 33.3, 28.3, 46, 500 }, + [17] = { 34.6, 28.1, 46, 500 }, + [18] = { 33.2, 28, 46, 500 }, + [19] = { 34.6, 27.9, 46, 500 }, + [20] = { 35.9, 27.8, 46, 500 }, + [21] = { 33.2, 26.7, 46, 500 }, + [22] = { 34.6, 26.3, 46, 500 }, + [23] = { 34.4, 26.1, 46, 500 }, + [24] = { 34.5, 25.7, 46, 500 }, + [25] = { 43.1, 99.9, 51, 500 }, + [26] = { 41.2, 99.8, 51, 500 }, + [27] = { 42.9, 99.5, 51, 500 }, + [28] = { 41.1, 99.4, 51, 500 }, + [29] = { 42.9, 99.2, 51, 500 }, + [30] = { 44.6, 99.1, 51, 500 }, + [31] = { 41.1, 97.7, 51, 500 }, + [32] = { 42.9, 97.1, 51, 500 }, + [33] = { 42.6, 96.8, 51, 500 }, + [34] = { 42.8, 96.3, 51, 500 }, + }, + ["lvl"] = "53-54", + ["rnk"] = "1", + }, + [9045] = { + ["coords"] = { + [1] = { 61.2, 62.7, 1583, 18000 }, + [2] = { 37.9, 50.4, 1583, 18000 }, + [3] = { 30.7, 47.4, 1583, 18000 }, + [4] = { 33.1, 43.4, 1583, 18000 }, + [5] = { 30, 42.6, 1583, 18000 }, + [6] = { 64.5, 41, 1583, 18000 }, + [7] = { 58.3, 40.9, 1583, 18000 }, + [8] = { 40.8, 37.7, 1583, 18000 }, + }, + ["lvl"] = "54-55", + ["rnk"] = "1", + }, + [9046] = { + ["coords"] = { + [1] = { 74.3, 52.8, 25, 150 }, + [2] = { 34.9, 27.9, 46, 150 }, + [3] = { 43.3, 99.2, 51, 150 }, + }, + ["lvl"] = "55", + ["rnk"] = "2", + }, + [9056] = { + ["coords"] = { + [1] = { 61.4, 43.4, 1584, 604800 }, + }, + ["lvl"] = "54", + ["rnk"] = "1", + }, + [9096] = { + ["coords"] = { + [1] = { 27.9, 35.3, 1583, 18000 }, + [2] = { 28.7, 35.3, 1583, 18000 }, + [3] = { 49.5, 35.2, 1583, 18000 }, + [4] = { 38.1, 34.5, 1583, 18000 }, + [5] = { 30.1, 34.2, 1583, 18000 }, + [6] = { 31.5, 34.1, 1583, 18000 }, + [7] = { 28, 34, 1583, 18000 }, + [8] = { 38.1, 33.7, 1583, 18000 }, + [9] = { 42.3, 33.6, 1583, 18000 }, + [10] = { 36.7, 29.8, 1583, 18000 }, + [11] = { 36.1, 29.8, 1583, 18000 }, + [12] = { 39.3, 28.5, 1583, 18000 }, + [13] = { 45.7, 28.1, 1583, 18000 }, + [14] = { 30, 25.8, 1583, 18000 }, + [15] = { 36.5, 24.9, 1583, 18000 }, + [16] = { 38.3, 23.6, 1583, 18000 }, + [17] = { 45.7, 23.5, 1583, 18000 }, + [18] = { 39.4, 23.1, 1583, 18000 }, + [19] = { 32.8, 19.2, 1583, 18000 }, + [20] = { 37.1, 18.1, 1583, 18000 }, + [21] = { 33.9, 18, 1583, 18000 }, + }, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [9097] = { + ["coords"] = { + [1] = { 66.1, 63.3, 1583, 18000 }, + [2] = { 60.4, 62.5, 1583, 18000 }, + [3] = { 65.7, 62.3, 1583, 18000 }, + [4] = { 67.1, 61.6, 1583, 18000 }, + [5] = { 67.2, 60.7, 1583, 18000 }, + [6] = { 66.8, 58, 1583, 18000 }, + [7] = { 66.9, 57.2, 1583, 18000 }, + [8] = { 64.3, 56.8, 1583, 18000 }, + [9] = { 67.2, 51.7, 1583, 18000 }, + [10] = { 60.4, 51.4, 1583, 18000 }, + [11] = { 31.8, 50.9, 1583, 18000 }, + [12] = { 67.2, 50.9, 1583, 18000 }, + [13] = { 30, 50.6, 1583, 18000 }, + [14] = { 60.2, 50.5, 1583, 18000 }, + [15] = { 38.3, 49.7, 1583, 18000 }, + [16] = { 31.9, 48.1, 1583, 18000 }, + [17] = { 46.2, 46.9, 1583, 18000 }, + [18] = { 46.6, 46.4, 1583, 18000 }, + [19] = { 42, 45.8, 1583, 18000 }, + [20] = { 42, 45.2, 1583, 18000 }, + [21] = { 42, 44.6, 1583, 18000 }, + [22] = { 52.5, 44.4, 1583, 18000 }, + [23] = { 53.2, 44.4, 1583, 18000 }, + [24] = { 31.7, 42.8, 1583, 18000 }, + [25] = { 33.6, 42.7, 1583, 18000 }, + [26] = { 52.9, 41, 1583, 18000 }, + [27] = { 64.9, 40.9, 1583, 18000 }, + [28] = { 36.3, 40.5, 1583, 18000 }, + [29] = { 32.1, 40.5, 1583, 18000 }, + [30] = { 30.4, 40.4, 1583, 18000 }, + [31] = { 58.6, 40.3, 1583, 18000 }, + [32] = { 33.5, 39.9, 1583, 18000 }, + [33] = { 33, 39.5, 1583, 18000 }, + [34] = { 33.5, 39.4, 1583, 18000 }, + [35] = { 37.2, 38.7, 1583, 18000 }, + [36] = { 54, 38.3, 1583, 18000 }, + [37] = { 67, 37.7, 1583, 18000 }, + [38] = { 66.6, 37.7, 1583, 18000 }, + [39] = { 37.2, 37.1, 1583, 18000 }, + [40] = { 53.8, 37.1, 1583, 18000 }, + [41] = { 30.4, 35.5, 1583, 18000 }, + [42] = { 32.2, 35.5, 1583, 18000 }, + [43] = { 38.1, 35.3, 1583, 18000 }, + }, + ["lvl"] = "54-55", + ["rnk"] = "1", + }, + [9098] = { + ["coords"] = { + [1] = { 60.6, 63.5, 1583, 18000 }, + [2] = { 67.2, 62.3, 1583, 18000 }, + [3] = { 66.8, 58.8, 1583, 18000 }, + [4] = { 65.1, 56.5, 1583, 18000 }, + [5] = { 66.7, 50.9, 1583, 18000 }, + [6] = { 59.6, 50.6, 1583, 18000 }, + [7] = { 38.7, 50.4, 1583, 18000 }, + [8] = { 31.2, 47.6, 1583, 18000 }, + [9] = { 46.6, 47.4, 1583, 18000 }, + [10] = { 52.5, 43.7, 1583, 18000 }, + [11] = { 29.9, 43.4, 1583, 18000 }, + [12] = { 32.5, 43.3, 1583, 18000 }, + [13] = { 58.6, 41.5, 1583, 18000 }, + [14] = { 53.5, 40.9, 1583, 18000 }, + [15] = { 67.4, 40, 1583, 18000 }, + [16] = { 54.6, 37, 1583, 18000 }, + [17] = { 40.8, 36.8, 1583, 18000 }, + }, + ["lvl"] = "54-55", + ["rnk"] = "1", + }, + [9116] = { + ["coords"] = { + [1] = { 51.3, 81.5, 361, 300 }, + [2] = { 7.2, 98.8, 616, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "57", + }, + [9156] = { + ["coords"] = { + [1] = { 56.1, 39.7, 1584, 604800 }, + }, + ["lvl"] = "57", + ["rnk"] = "1", + }, + [9157] = { + ["coords"] = { + [1] = { 43.1, 10, 490, 300 }, + [2] = { 44.1, 9.7, 490, 300 }, + [3] = { 44.1, 9.1, 490, 300 }, + [4] = { 44.7, 9, 490, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [9162] = { + ["coords"] = { + [1] = { 60.7, 38.9, 490, 300 }, + [2] = { 62.7, 35.9, 490, 300 }, + [3] = { 64.8, 35.4, 490, 300 }, + [4] = { 65.4, 35.3, 490, 300 }, + [5] = { 58.1, 33.9, 490, 300 }, + [6] = { 72.5, 31.6, 490, 300 }, + [7] = { 66.1, 30.4, 490, 300 }, + [8] = { 70.1, 28.1, 490, 300 }, + [9] = { 69, 26.4, 490, 300 }, + [10] = { 70.4, 20.6, 490, 300 }, + }, + ["lvl"] = "49-50", + }, + [9163] = { + ["coords"] = { + [1] = { 57.2, 80.4, 490, 300 }, + [2] = { 44, 72.7, 490, 300 }, + [3] = { 58.3, 72.5, 490, 300 }, + [4] = { 56.3, 72.5, 490, 300 }, + [5] = { 50.8, 71.2, 490, 300 }, + [6] = { 57.1, 70.6, 490, 300 }, + [7] = { 46.7, 69.9, 490, 300 }, + [8] = { 44.6, 69.9, 490, 300 }, + [9] = { 51, 69.8, 490, 300 }, + [10] = { 53.2, 69.8, 490, 300 }, + [11] = { 45.2, 69.4, 490, 300 }, + [12] = { 50, 68.5, 490, 300 }, + [13] = { 47, 67, 490, 300 }, + [14] = { 49.5, 66.7, 490, 300 }, + [15] = { 52.2, 66.3, 490, 300 }, + [16] = { 52.7, 65.6, 490, 300 }, + [17] = { 46.7, 65.2, 490, 300 }, + [18] = { 43, 65.2, 490, 300 }, + [19] = { 56.4, 65.1, 490, 300 }, + [20] = { 48.9, 65, 490, 300 }, + [21] = { 54.3, 63.9, 490, 300 }, + [22] = { 47, 63.8, 490, 300 }, + [23] = { 53.4, 63.3, 490, 300 }, + [24] = { 52, 63.1, 490, 300 }, + [25] = { 58.8, 63.1, 490, 300 }, + [26] = { 50.4, 62.9, 490, 300 }, + [27] = { 60.8, 62.9, 490, 300 }, + [28] = { 56.3, 62.9, 490, 300 }, + [29] = { 46.3, 62.7, 490, 300 }, + [30] = { 46.9, 61.7, 490, 300 }, + [31] = { 43.2, 61.4, 490, 300 }, + [32] = { 53.5, 61.3, 490, 300 }, + [33] = { 48.9, 60.4, 490, 300 }, + [34] = { 60.7, 60.4, 490, 300 }, + [35] = { 54.9, 60.3, 490, 300 }, + [36] = { 51.3, 60.2, 490, 300 }, + [37] = { 49.9, 60.1, 490, 300 }, + [38] = { 52.3, 59, 490, 300 }, + [39] = { 58.6, 56.9, 490, 300 }, + [40] = { 57.8, 54, 490, 300 }, + [41] = { 59.8, 51.4, 490, 300 }, + [42] = { 57.7, 51, 490, 300 }, + [43] = { 60.3, 48.9, 490, 300 }, + [44] = { 57.1, 47.6, 490, 300 }, + [45] = { 58.3, 46.3, 490, 300 }, + [46] = { 52.8, 31.8, 490, 300 }, + [47] = { 54.5, 28.5, 490, 300 }, + [48] = { 46.5, 28, 490, 300 }, + [49] = { 46.2, 24.7, 490, 300 }, + [50] = { 50.8, 19.9, 490, 300 }, + }, + ["lvl"] = "51-52", + }, + [9164] = { + ["coords"] = { + [1] = { 39.4, 83.5, 490, 300 }, + [2] = { 40.1, 81.2, 490, 300 }, + [3] = { 31.6, 78, 490, 300 }, + [4] = { 34.8, 76.8, 490, 300 }, + [5] = { 42.1, 76.2, 490, 300 }, + [6] = { 30, 76.1, 490, 300 }, + [7] = { 39, 76, 490, 300 }, + [8] = { 40.8, 75.4, 490, 300 }, + [9] = { 42.5, 73.6, 490, 300 }, + [10] = { 29.2, 73.4, 490, 300 }, + [11] = { 37.9, 71.3, 490, 300 }, + [12] = { 33.3, 70.7, 490, 300 }, + [13] = { 41.9, 70.6, 490, 300 }, + [14] = { 42.2, 69.1, 490, 300 }, + [15] = { 34.9, 69.1, 490, 300 }, + [16] = { 33, 68.7, 490, 300 }, + [17] = { 30.9, 68.3, 490, 300 }, + [18] = { 38.5, 67.8, 490, 300 }, + [19] = { 40.6, 67.3, 490, 300 }, + [20] = { 38.9, 67, 490, 300 }, + [21] = { 27.5, 66.1, 490, 300 }, + [22] = { 34.1, 64.4, 490, 300 }, + [23] = { 30.2, 64, 490, 300 }, + [24] = { 29.3, 62.9, 490, 300 }, + [25] = { 31.2, 62.9, 490, 300 }, + [26] = { 39.2, 61.4, 490, 300 }, + [27] = { 35.6, 61.1, 490, 300 }, + [28] = { 27, 60.2, 490, 300 }, + [29] = { 26.6, 58.9, 490, 300 }, + [30] = { 42, 58.7, 490, 300 }, + [31] = { 25.6, 57.4, 490, 300 }, + [32] = { 42.5, 57.3, 490, 300 }, + [33] = { 40, 56.1, 490, 300 }, + [34] = { 28.4, 56.1, 490, 300 }, + [35] = { 29.3, 54.8, 490, 300 }, + [36] = { 24.5, 54.2, 490, 300 }, + [37] = { 40.6, 50.2, 490, 300 }, + [38] = { 42.4, 49.8, 490, 300 }, + [39] = { 33.8, 47, 490, 300 }, + [40] = { 42.8, 46.7, 490, 300 }, + [41] = { 29.3, 45.1, 490, 300 }, + [42] = { 28.4, 44, 490, 300 }, + [43] = { 37.3, 43.8, 490, 300 }, + [44] = { 40.9, 41.4, 490, 300 }, + [45] = { 37.4, 38.6, 490, 300 }, + [46] = { 30.1, 38.5, 490, 300 }, + [47] = { 32.2, 38.4, 490, 300 }, + [48] = { 31.2, 37.2, 490, 300 }, + [49] = { 31.9, 35.9, 490, 300 }, + [50] = { 40.9, 35.7, 490, 300 }, + [51] = { 40, 34.3, 490, 300 }, + [52] = { 32.1, 30.2, 490, 300 }, + [53] = { 33.6, 30, 490, 300 }, + [54] = { 38.3, 23.5, 490, 300 }, + }, + ["lvl"] = "54-55", + }, + [9165] = { + ["coords"] = { + [1] = { 31.8, 35, 440, 300 }, + [2] = { 31.5, 34.2, 440, 300 }, + [3] = { 32.4, 34.2, 440, 300 }, + [4] = { 31.9, 33.7, 440, 300 }, + [5] = { 31.9, 24.2, 440, 300 }, + [6] = { 32.3, 23.4, 440, 300 }, + [7] = { 32.3, 23.3, 440, 300 }, + [8] = { 31.7, 22.6, 440, 300 }, + [9] = { 79.5, 61.5, 490, 300 }, + [10] = { 79.1, 60.1, 490, 300 }, + [11] = { 80.8, 60, 490, 300 }, + [12] = { 77.2, 59.7, 490, 300 }, + [13] = { 79.8, 59.1, 490, 300 }, + [14] = { 78, 58.7, 490, 300 }, + [15] = { 79.8, 41.4, 490, 300 }, + [16] = { 78.1, 41, 490, 300 }, + [17] = { 77.3, 40, 490, 300 }, + [18] = { 80.6, 40, 490, 300 }, + [19] = { 80.5, 39.7, 490, 300 }, + [20] = { 78.7, 39.5, 490, 300 }, + [21] = { 79.4, 38.4, 490, 300 }, + [22] = { 57.7, 35.3, 490, 300 }, + [23] = { 66.1, 34.5, 490, 300 }, + [24] = { 70.9, 22.3, 490, 300 }, + [25] = { 68.3, 21.3, 490, 300 }, + }, + ["lvl"] = "50-51", + }, + [9166] = { + ["coords"] = { + [1] = { 43.6, 92.7, 490, 300 }, + [2] = { 57.3, 92.4, 490, 300 }, + [3] = { 58, 91.4, 490, 300 }, + [4] = { 56.7, 91.2, 490, 300 }, + [5] = { 42.9, 91.1, 490, 300 }, + [6] = { 57.5, 90.5, 490, 300 }, + [7] = { 50.6, 90.2, 490, 300 }, + [8] = { 43.6, 89.7, 490, 300 }, + [9] = { 44.5, 88.6, 490, 300 }, + [10] = { 56.3, 88.5, 490, 300 }, + [11] = { 50.6, 87.4, 490, 300 }, + [12] = { 57.6, 87.4, 490, 300 }, + [13] = { 43.9, 87.1, 490, 300 }, + [14] = { 42.9, 85.9, 490, 300 }, + [15] = { 52.2, 69.8, 490, 300 }, + [16] = { 44.1, 66.2, 490, 300 }, + [17] = { 53.5, 62.9, 490, 300 }, + [18] = { 50.1, 61, 490, 300 }, + [19] = { 56.9, 12.4, 490, 300 }, + [20] = { 56.3, 11.7, 490, 300 }, + [21] = { 50.2, 11.5, 490, 300 }, + [22] = { 57.3, 10.2, 490, 300 }, + [23] = { 50.1, 10.2, 490, 300 }, + [24] = { 56.4, 9.1, 490, 300 }, + [25] = { 57.9, 8.8, 490, 300 }, + [26] = { 57.3, 7.4, 490, 300 }, + }, + ["lvl"] = "50-52", + }, + [9167] = { + ["coords"] = { + [1] = { 32.9, 79, 490, 300 }, + [2] = { 36.3, 78.6, 490, 300 }, + [3] = { 36.3, 76.6, 490, 300 }, + [4] = { 39.7, 76.4, 490, 300 }, + [5] = { 36.5, 71.2, 490, 300 }, + [6] = { 31.2, 70.9, 490, 300 }, + [7] = { 31.8, 67.5, 490, 300 }, + [8] = { 34.7, 66.1, 490, 300 }, + [9] = { 26.5, 64.5, 490, 300 }, + [10] = { 36.6, 62.3, 490, 300 }, + [11] = { 21.1, 61.3, 490, 300 }, + [12] = { 25.1, 60.8, 490, 300 }, + [13] = { 20.4, 60.3, 490, 300 }, + [14] = { 23.7, 59.9, 490, 300 }, + [15] = { 22, 59.5, 490, 300 }, + [16] = { 21, 58.7, 490, 300 }, + [17] = { 23.3, 57.9, 490, 300 }, + [18] = { 27.4, 57.7, 490, 300 }, + [19] = { 27.1, 55, 490, 300 }, + [20] = { 41.1, 52, 490, 300 }, + [21] = { 38.4, 51.3, 490, 300 }, + [22] = { 23.2, 50.1, 490, 300 }, + [23] = { 22.3, 50, 490, 300 }, + [24] = { 39.5, 49.8, 490, 300 }, + [25] = { 40, 47.9, 490, 300 }, + [26] = { 28.5, 46.5, 490, 300 }, + [27] = { 38.1, 45.8, 490, 300 }, + [28] = { 35.3, 45.5, 490, 300 }, + [29] = { 31.2, 45.2, 490, 300 }, + [30] = { 40.1, 45.2, 490, 300 }, + [31] = { 27.5, 45.2, 490, 300 }, + [32] = { 32.1, 43.9, 490, 300 }, + [33] = { 25.7, 42.8, 490, 300 }, + [34] = { 36.5, 42.7, 490, 300 }, + [35] = { 33, 42.6, 490, 300 }, + [36] = { 40.1, 42.5, 490, 300 }, + [37] = { 23.1, 41.1, 490, 300 }, + [38] = { 21.9, 40.7, 490, 300 }, + [39] = { 20.2, 40.3, 490, 300 }, + [40] = { 21.4, 40.2, 490, 300 }, + [41] = { 42.2, 40.1, 490, 300 }, + [42] = { 23.7, 39.9, 490, 300 }, + [43] = { 37.6, 39.7, 490, 300 }, + [44] = { 25.1, 39.2, 490, 300 }, + [45] = { 26.6, 38.7, 490, 300 }, + [46] = { 21, 38.5, 490, 300 }, + [47] = { 41.6, 37.3, 490, 300 }, + [48] = { 33, 37.2, 490, 300 }, + [49] = { 38, 37.1, 490, 300 }, + [50] = { 36.8, 36.7, 490, 300 }, + [51] = { 35.6, 35.8, 490, 300 }, + [52] = { 31, 35, 490, 300 }, + [53] = { 35.5, 33.1, 490, 300 }, + [54] = { 29.3, 31.8, 490, 300 }, + [55] = { 42.5, 31.6, 490, 300 }, + [56] = { 28.3, 30.3, 490, 300 }, + [57] = { 38.1, 28.4, 490, 300 }, + [58] = { 36.6, 27.9, 490, 300 }, + [59] = { 39.1, 19.5, 490, 300 }, + [60] = { 80, 65.5, 1377, 300 }, + [61] = { 79.2, 64.4, 1377, 300 }, + [62] = { 80.9, 63.5, 1377, 300 }, + [63] = { 79.9, 62.7, 1377, 300 }, + [64] = { 82.1, 44, 1377, 300 }, + [65] = { 80.8, 43.6, 1377, 300 }, + [66] = { 79, 43.2, 1377, 300 }, + [67] = { 80.3, 43.1, 1377, 300 }, + [68] = { 82.7, 42.7, 1377, 300 }, + [69] = { 84.2, 42, 1377, 300 }, + [70] = { 79.9, 41.2, 1377, 300 }, + }, + ["lvl"] = "52-54", + }, + [9179] = { + ["coords"] = { + [1] = { 42.5, 52.5, 3, 300 }, + }, + ["lvl"] = "38", + }, + [9180] = "_", + [9196] = { + ["coords"] = { + [1] = { 35, 55.3, 1583, 604800 }, + }, + ["lvl"] = "59", + ["rnk"] = "1", + }, + [9197] = { + ["coords"] = { + [1] = { 42.1, 60.5, 1583, 18000 }, + [2] = { 50, 59, 1583, 18000 }, + [3] = { 45.8, 55.8, 1583, 18000 }, + [4] = { 42.9, 55.8, 1583, 18000 }, + }, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [9198] = { + ["coords"] = { + [1] = { 36.9, 59.5, 1583, 18000 }, + [2] = { 44.1, 58.5, 1583, 18000 }, + [3] = { 35.5, 56, 1583, 604800 }, + }, + ["lvl"] = "55-56", + ["rnk"] = "1", + }, + [9199] = { + ["coords"] = { + [1] = { 57.5, 58.4, 1583, 18000 }, + [2] = { 52.3, 58.1, 1583, 604800 }, + [3] = { 57.3, 57.1, 1583, 18000 }, + [4] = { 50, 56.7, 1583, 18000 }, + }, + ["lvl"] = "54-55", + ["rnk"] = "1", + }, + [9200] = { + ["coords"] = { + [1] = { 35.8, 60.4, 1583, 18000 }, + [2] = { 44.8, 57.8, 1583, 18000 }, + [3] = { 38, 53.9, 1583, 18000 }, + }, + ["lvl"] = "55-56", + ["rnk"] = "1", + }, + [9201] = { + ["coords"] = { + [1] = { 38, 60.1, 1583, 18000 }, + [2] = { 59.2, 55.7, 1583, 18000 }, + [3] = { 38, 55.6, 1583, 18000 }, + [4] = { 35.5, 54.7, 1583, 604800 }, + [5] = { 40.7, 53.9, 1583, 18000 }, + }, + ["lvl"] = "54-55", + ["rnk"] = "1", + }, + [9216] = { + ["coords"] = { + [1] = { 60.2, 64.9, 1583, 18000 }, + [2] = { 42.9, 60.9, 1583, 18000 }, + [3] = { 49.4, 59.8, 1583, 18000 }, + [4] = { 41.9, 58.4, 1583, 18000 }, + [5] = { 43, 57.3, 1583, 18000 }, + [6] = { 44.1, 56.8, 1583, 18000 }, + [7] = { 39.9, 55.2, 1583, 18000 }, + [8] = { 45.3, 55, 1583, 18000 }, + }, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [9217] = { + ["coords"] = { + [1] = { 41.9, 56.7, 1583, 604800 }, + }, + ["lvl"] = "58", + ["rnk"] = "2", + }, + [9218] = { + ["coords"] = { + [1] = { 38, 60.1, 1583, 604800 }, + }, + ["lvl"] = "58", + ["rnk"] = "2", + }, + [9219] = { + ["coords"] = { + [1] = { 56.2, 57.7, 1583, 604800 }, + }, + ["lvl"] = "57", + ["rnk"] = "2", + }, + [9236] = { + ["coords"] = { + [1] = { 55.6, 72, 1583, 604800 }, + }, + ["lvl"] = "58", + ["rnk"] = "3", + }, + [9237] = { + ["coords"] = { + [1] = { 53, 54.4, 1583, 604800 }, + }, + ["lvl"] = "59", + ["rnk"] = "1", + }, + [9238] = { + ["coords"] = { + [1] = { 78.3, 74.7, 400, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [9239] = { + ["coords"] = { + [1] = { 54.6, 69.1, 1583, 18000 }, + [2] = { 55.7, 67.3, 1583, 18000 }, + [3] = { 52, 61.2, 1583, 18000 }, + [4] = { 62.3, 58.6, 1583, 18000 }, + [5] = { 52, 57.8, 1583, 18000 }, + [6] = { 66.2, 56.7, 1583, 18000 }, + [7] = { 51.7, 55.2, 1583, 18000 }, + [8] = { 51.5, 54.5, 1583, 18000 }, + [9] = { 64.1, 52.5, 1583, 18000 }, + [10] = { 53.4, 52.2, 1583, 18000 }, + }, + ["lvl"] = "55-56", + ["rnk"] = "1", + }, + [9240] = { + ["coords"] = { + [1] = { 54.5, 72.7, 1583, 604800 }, + [2] = { 56.4, 72.7, 1583, 604800 }, + [3] = { 54.5, 68.4, 1583, 18000 }, + [4] = { 55.1, 67.2, 1583, 18000 }, + [5] = { 56.5, 61.2, 1583, 18000 }, + [6] = { 52.4, 61.2, 1583, 18000 }, + [7] = { 54.4, 61, 1583, 18000 }, + [8] = { 56.2, 60.6, 1583, 18000 }, + [9] = { 52.4, 60.5, 1583, 18000 }, + [10] = { 59.1, 59, 1583, 18000 }, + [11] = { 63.1, 57.9, 1583, 18000 }, + [12] = { 60, 57.4, 1583, 18000 }, + [13] = { 52, 57.1, 1583, 18000 }, + [14] = { 54.7, 56.6, 1583, 18000 }, + [15] = { 54.7, 55.1, 1583, 18000 }, + [16] = { 54.8, 52, 1583, 18000 }, + [17] = { 53.2, 51.4, 1583, 18000 }, + }, + ["lvl"] = "55-56", + ["rnk"] = "1", + }, + [9241] = { + ["coords"] = { + [1] = { 54.5, 64.4, 1583, 18000 }, + [2] = { 59.5, 63.8, 1583, 18000 }, + [3] = { 66.3, 63.6, 1583, 18000 }, + [4] = { 54.4, 63.6, 1583, 18000 }, + [5] = { 52.8, 62, 1583, 18000 }, + [6] = { 51.5, 59.8, 1583, 18000 }, + [7] = { 54.6, 57.5, 1583, 18000 }, + [8] = { 54.6, 56.2, 1583, 18000 }, + [9] = { 66.3, 56.1, 1583, 18000 }, + [10] = { 54.8, 52.7, 1583, 18000 }, + }, + ["lvl"] = "56-57", + ["rnk"] = "1", + }, + [9257] = { + ["coords"] = { + [1] = { 66.7, 61.4, 1583, 18000 }, + [2] = { 64.8, 55.7, 1583, 18000 }, + [3] = { 66.7, 51.8, 1583, 18000 }, + [4] = { 59.8, 51.7, 1583, 18000 }, + [5] = { 53.2, 43.7, 1583, 18000 }, + [6] = { 65, 41.9, 1583, 18000 }, + [7] = { 64.4, 41.7, 1583, 18000 }, + [8] = { 67.4, 39.4, 1583, 18000 }, + [9] = { 54.6, 38.1, 1583, 18000 }, + }, + ["lvl"] = "54-55", + ["rnk"] = "1", + }, + [9258] = { + ["coords"] = { + [1] = { 63, 61.9, 1583, 18000 }, + [2] = { 63.7, 59.3, 1583, 18000 }, + [3] = { 37.2, 48.4, 1583, 18000 }, + [4] = { 57.1, 43.9, 1583, 18000 }, + [5] = { 46.6, 43.3, 1583, 18000 }, + [6] = { 54.3, 40.3, 1583, 18000 }, + }, + ["lvl"] = "55-56", + ["rnk"] = "1", + }, + [9259] = { + ["coords"] = { + [1] = { 49.8, 72.1, 1583, 18000 }, + [2] = { 53.1, 71.5, 1583, 18000 }, + [3] = { 52.4, 71.5, 1583, 18000 }, + [4] = { 55.2, 71.3, 1583, 18000 }, + [5] = { 49.9, 71, 1583, 18000 }, + [6] = { 55.8, 70.3, 1583, 18000 }, + [7] = { 56.6, 68.6, 1583, 18000 }, + [8] = { 48.7, 67.5, 1583, 18000 }, + [9] = { 53.4, 66.4, 1583, 18000 }, + [10] = { 52.5, 65.6, 1583, 18000 }, + [11] = { 52.2, 64.7, 1583, 18000 }, + [12] = { 47.1, 63.9, 1583, 18000 }, + [13] = { 49.8, 62.1, 1583, 18000 }, + [14] = { 47.1, 61.9, 1583, 18000 }, + [15] = { 50, 61.6, 1583, 18000 }, + [16] = { 46.9, 58.9, 1583, 18000 }, + [17] = { 49.2, 57.5, 1583, 18000 }, + [18] = { 49.4, 56.1, 1583, 18000 }, + [19] = { 47.1, 54.2, 1583, 18000 }, + [20] = { 58.1, 47.8, 1583, 18000 }, + [21] = { 65.2, 47.5, 1583, 18000 }, + [22] = { 66.6, 47.4, 1583, 18000 }, + [23] = { 51.4, 47.3, 1583, 18000 }, + [24] = { 54.8, 46.6, 1583, 18000 }, + [25] = { 56.8, 46.3, 1583, 18000 }, + }, + ["lvl"] = "56-57", + ["rnk"] = "1", + }, + [9260] = { + ["coords"] = { + [1] = { 57.5, 75.6, 1583, 18000 }, + [2] = { 58.6, 75.2, 1583, 18000 }, + [3] = { 57, 75, 1583, 18000 }, + [4] = { 57.3, 48, 1583, 18000 }, + }, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [9261] = { + ["coords"] = { + [1] = { 50.3, 71.5, 1583, 18000 }, + [2] = { 55.7, 69.5, 1583, 18000 }, + [3] = { 49.1, 67.5, 1583, 18000 }, + [4] = { 49.5, 65.6, 1583, 18000 }, + [5] = { 51.8, 65.2, 1583, 18000 }, + [6] = { 47.2, 61, 1583, 18000 }, + [7] = { 49, 58.7, 1583, 18000 }, + [8] = { 47.3, 57.8, 1583, 18000 }, + [9] = { 47.2, 55.6, 1583, 18000 }, + [10] = { 51, 48.3, 1583, 18000 }, + [11] = { 66.8, 48.3, 1583, 18000 }, + [12] = { 55, 47.2, 1583, 18000 }, + [13] = { 62.9, 45.7, 1583, 18000 }, + }, + ["lvl"] = "56-57", + ["rnk"] = "1", + }, + [9262] = { + ["coords"] = { + [1] = { 49.5, 71.5, 1583, 18000 }, + [2] = { 52.8, 71, 1583, 18000 }, + [3] = { 55.6, 71, 1583, 18000 }, + [4] = { 52, 65.9, 1583, 18000 }, + [5] = { 49, 65.6, 1583, 18000 }, + [6] = { 47.8, 61.8, 1583, 18000 }, + [7] = { 48.6, 58.6, 1583, 18000 }, + [8] = { 47.7, 56, 1583, 18000 }, + [9] = { 54.4, 46.9, 1583, 18000 }, + [10] = { 63.3, 46.1, 1583, 18000 }, + [11] = { 56.6, 45.6, 1583, 18000 }, + }, + ["lvl"] = "56-57", + ["rnk"] = "1", + }, + [9263] = { + ["coords"] = { + [1] = { 57.1, 78, 1583, 18000 }, + [2] = { 59, 76.1, 1583, 18000 }, + [3] = { 57, 75.8, 1583, 18000 }, + [4] = { 52.7, 71.9, 1583, 18000 }, + [5] = { 49.4, 60.5, 1583, 18000 }, + }, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [9264] = { + ["coords"] = { + [1] = { 57.5, 78.2, 1583, 18000 }, + [2] = { 57.3, 76.4, 1583, 18000 }, + [3] = { 58.6, 75.9, 1583, 18000 }, + [4] = { 49.3, 61.8, 1583, 18000 }, + }, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [9265] = { + ["coords"] = { + [1] = { 56.6, 69, 1583, 18000 }, + [2] = { 65.9, 63.1, 1583, 18000 }, + [3] = { 60, 59, 1583, 18000 }, + [4] = { 52.3, 57.8, 1583, 18000 }, + [5] = { 59, 57.4, 1583, 18000 }, + [6] = { 55, 57.3, 1583, 18000 }, + }, + ["lvl"] = "56-57", + ["rnk"] = "1", + }, + [9266] = { + ["coords"] = { + [1] = { 54.9, 64.4, 1583, 18000 }, + [2] = { 66, 62.4, 1583, 18000 }, + [3] = { 52.6, 61.4, 1583, 18000 }, + [4] = { 52.8, 58.4, 1583, 18000 }, + [5] = { 65.8, 56.7, 1583, 18000 }, + [6] = { 65.9, 56, 1583, 18000 }, + [7] = { 64, 51.7, 1583, 18000 }, + }, + ["lvl"] = "56-57", + ["rnk"] = "1", + }, + [9267] = { + ["coords"] = { + [1] = { 66.4, 62.6, 1583, 18000 }, + [2] = { 56.2, 61.3, 1583, 18000 }, + [3] = { 52, 60.6, 1583, 18000 }, + [4] = { 56.6, 60.6, 1583, 18000 }, + [5] = { 63.6, 58.4, 1583, 18000 }, + [6] = { 55.1, 56.6, 1583, 18000 }, + [7] = { 63.3, 56.4, 1583, 18000 }, + [8] = { 53, 52.2, 1583, 18000 }, + [9] = { 52.7, 50.9, 1583, 18000 }, + }, + ["lvl"] = "55-56", + ["rnk"] = "1", + }, + [9268] = { + ["coords"] = { + [1] = { 59.5, 64.6, 1583, 18000 }, + [2] = { 59.1, 64.6, 1583, 18000 }, + [3] = { 60, 64.5, 1583, 18000 }, + [4] = { 56.5, 62.5, 1583, 18000 }, + [5] = { 61.9, 62.5, 1583, 18000 }, + [6] = { 59.5, 62.5, 1583, 18000 }, + [7] = { 56, 62.2, 1583, 18000 }, + [8] = { 59.2, 59.9, 1583, 18000 }, + [9] = { 51.8, 58.5, 1583, 18000 }, + [10] = { 64.1, 54.7, 1583, 18000 }, + [11] = { 59.6, 52.3, 1583, 18000 }, + [12] = { 55.5, 51.6, 1583, 18000 }, + }, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [9269] = { + ["coords"] = { + [1] = { 56.6, 68.4, 1583, 18000 }, + [2] = { 54.9, 63.6, 1583, 18000 }, + [3] = { 51.9, 61.9, 1583, 18000 }, + [4] = { 59.8, 58.9, 1583, 18000 }, + [5] = { 60.4, 58, 1583, 18000 }, + [6] = { 59.2, 58, 1583, 18000 }, + [7] = { 52.3, 57.2, 1583, 18000 }, + [8] = { 59.8, 57.1, 1583, 18000 }, + [9] = { 54.6, 56.9, 1583, 18000 }, + [10] = { 63.7, 52.5, 1583, 18000 }, + [11] = { 54.8, 51.5, 1583, 18000 }, + }, + ["lvl"] = "56-57", + ["rnk"] = "1", + }, + [9275] = "_", + [9276] = "_", + [9296] = { + ["coords"] = { + [1] = { 50.7, 39.3, 12, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "2", + }, + [9297] = { + ["coords"] = { + [1] = { 32.5, 29.4, 33, 120 }, + [2] = { 73, 32.7, 45, 120 }, + [3] = { 26.9, 77.1, 33, 120 }, + [4] = { 4, 44.8, 3, 120 }, + [5] = { 83.2, 35.8, 51, 120 }, + [6] = { 39.4, 27, 215, 120 }, + [7] = { 47, 49.8, 1638, 120 }, + [8] = { 34.8, 30.9, 51, 120 }, + [9] = { 45.1, 63.9, 1637, 120 }, + [10] = { 51.5, 30.3, 17, 120 }, + [11] = { 48.3, 61.7, 406, 120 }, + [12] = { 81.7, 81.8, 47, 120 }, + [13] = { 45.1, 49.1, 400, 120 }, + [14] = { 46.1, 54.8, 8, 120 }, + [15] = { 21.6, 74.1, 405, 120 }, + [16] = { 51.6, 25.4, 440, 120 }, + [17] = { 75.4, 44.4, 357, 120 }, + [18] = { 22, 49.6, 16, 120 }, + [19] = { 44.4, 59.2, 17, 120 }, + [20] = { 60.5, 36.3, 618, 120 }, + [21] = { 35.6, 31.9, 15, 120 }, + [22] = { 53.9, 70.5, 17, 120 }, + [23] = { 50.1, 74.9, 148, 120 }, + [24] = { 34.4, 54, 361, 120 }, + [25] = { 12.2, 33.8, 331, 120 }, + [26] = { 73.2, 61.6, 331, 120 }, + [27] = { 32.1, 66.6, 493, 120 }, + [28] = { 65.7, 24.2, 46, 120 }, + [29] = { 48.7, 36.7, 1377, 120 }, + [30] = { 4.1, 60.7, 85, 120 }, + [31] = { 71, 46.2, 5561, 120 }, + [32] = { 24.6, 74.2, 440, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [9318] = { + ["coords"] = { + [1] = { 50, 38.9, 51, 300 }, + [2] = { 51.8, 37.3, 51, 300 }, + [3] = { 51.1, 33.6, 51, 300 }, + [4] = { 51.2, 29.2, 51, 300 }, + [5] = { 43.4, 28.1, 51, 300 }, + [6] = { 48.5, 27.7, 51, 300 }, + [7] = { 48.5, 26.5, 51, 300 }, + [8] = { 50.4, 25.9, 51, 300 }, + [9] = { 44.7, 24.9, 51, 300 }, + [10] = { 49.6, 23.5, 51, 300 }, + [11] = { 45.1, 21.5, 51, 300 }, + [12] = { 47.8, 21.4, 51, 300 }, + [13] = { 46.3, 20.1, 51, 300 }, + }, + ["lvl"] = "47-49", + }, + [9319] = { + ["coords"] = { + [1] = { 52.9, 71.4, 1584, 604800 }, + }, + ["lvl"] = "52", + ["rnk"] = "1", + }, + [9320] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [9377] = { + ["coords"] = { + [1] = { 71.6, 90.5, 400, 300 }, + [2] = { 71.9, 66.1, 400, 300 }, + [3] = { 71.2, 57.3, 400, 300 }, + [4] = { 75.3, 52.8, 400, 300 }, + }, + ["lvl"] = "33-34", + }, + [9416] = { + ["coords"] = { + [1] = { 62.7, 62.1, 1583, 18000 }, + [2] = { 63.3, 61.5, 1583, 18000 }, + [3] = { 63.9, 59, 1583, 18000 }, + [4] = { 37.2, 48.9, 1583, 18000 }, + [5] = { 37.3, 47.9, 1583, 18000 }, + [6] = { 57, 44.4, 1583, 18000 }, + [7] = { 46.6, 43.8, 1583, 18000 }, + [8] = { 57.4, 43.5, 1583, 18000 }, + [9] = { 46.6, 42.7, 1583, 18000 }, + [10] = { 54.5, 41, 1583, 18000 }, + [11] = { 54.1, 41, 1583, 18000 }, + }, + ["lvl"] = "53-54", + }, + [9417] = "_", + [9447] = { + ["coords"] = { + [1] = { 79.3, 87.2, 139, 898 }, + [2] = { 83.1, 86.9, 139, 953 }, + [3] = { 82.9, 86.7, 139, 845 }, + [4] = { 83.5, 86.3, 139, 866 }, + [5] = { 81, 86.2, 139, 884 }, + [6] = { 81.1, 86.1, 139, 789 }, + [7] = { 81.1, 86.1, 139, 953 }, + [8] = { 80.6, 85.5, 139, 1016 }, + [9] = { 79.9, 85.3, 139, 827 }, + [10] = { 81.4, 85, 139, 811 }, + [11] = { 67.8, 84.8, 139, 972 }, + [12] = { 80.1, 84.8, 139, 963 }, + [13] = { 83.3, 84.8, 139, 721 }, + [14] = { 81.5, 84.8, 139, 881 }, + [15] = { 80.8, 84.8, 139, 870 }, + [16] = { 77.6, 84.8, 139, 976 }, + [17] = { 80.8, 84.7, 139, 979 }, + [18] = { 80.8, 84.6, 139, 952 }, + [19] = { 82.1, 84.6, 139, 886 }, + [20] = { 67.1, 84.6, 139, 1010 }, + [21] = { 68.7, 84.4, 139, 953 }, + [22] = { 82.7, 84.2, 139, 845 }, + [23] = { 80.2, 84.1, 139, 744 }, + [24] = { 80.3, 84, 139, 1016 }, + [25] = { 82.9, 84, 139, 860 }, + [26] = { 67.2, 83.8, 139, 948 }, + [27] = { 81.4, 83.3, 139, 935 }, + [28] = { 82.5, 83.2, 139, 947 }, + [29] = { 81.1, 83.1, 139, 903 }, + [30] = { 77.1, 83, 139, 907 }, + [31] = { 68.8, 83, 139, 971 }, + [32] = { 78.2, 83, 139, 725 }, + [33] = { 68, 82.5, 139, 726 }, + [34] = { 68.4, 82.4, 139, 887 }, + [35] = { 77.6, 82.2, 139, 837 }, + [36] = { 78.3, 82.1, 139, 971 }, + [37] = { 79.9, 81.9, 139, 776 }, + [38] = { 82.8, 81.2, 139, 881 }, + [39] = { 84.3, 81.2, 139, 818 }, + [40] = { 82.7, 81.2, 139, 947 }, + [41] = { 78.3, 81.1, 139, 962 }, + [42] = { 77.6, 81.1, 139, 976 }, + [43] = { 81.4, 80.5, 139, 800 }, + [44] = { 80.1, 80.5, 139, 907 }, + [45] = { 81.3, 80.5, 139, 721 }, + [46] = { 78.2, 80.3, 139, 1016 }, + [47] = { 77.7, 80.3, 139, 745 }, + [48] = { 82.7, 80.3, 139, 874 }, + [49] = { 77.7, 80.2, 139, 786 }, + [50] = { 77.2, 80.2, 139, 839 }, + [51] = { 82.6, 79.8, 139, 983 }, + [52] = { 81.9, 79.8, 139, 810 }, + [53] = { 83.2, 79.4, 139, 853 }, + [54] = { 78, 79.1, 139, 1015 }, + [55] = { 84.2, 78.7, 139, 840 }, + [56] = { 78, 77.4, 139, 741 }, + [57] = { 78.3, 77.3, 139, 733 }, + [58] = { 85.1, 76.9, 139, 749 }, + [59] = { 83.7, 75.9, 139, 803 }, + [60] = { 38.2, 73, 4012, 898 }, + [61] = { 42.8, 72.6, 4012, 953 }, + [62] = { 42.5, 72.3, 4012, 845 }, + [63] = { 43.2, 71.8, 4012, 866 }, + [64] = { 40.3, 71.7, 4012, 884 }, + [65] = { 40.3, 71.6, 4012, 789 }, + [66] = { 40.3, 71.6, 4012, 953 }, + [67] = { 39.7, 70.9, 4012, 1016 }, + [68] = { 38.9, 70.6, 4012, 827 }, + [69] = { 40.7, 70.2, 4012, 811 }, + [70] = { 24.1, 70.1, 4012, 972 }, + [71] = { 39.2, 70, 4012, 963 }, + [72] = { 43.1, 70, 4012, 721 }, + [73] = { 40.8, 70, 4012, 881 }, + [74] = { 40, 70, 4012, 870 }, + [75] = { 36, 70, 4012, 976 }, + [76] = { 40, 69.9, 4012, 979 }, + [77] = { 39.9, 69.8, 4012, 952 }, + [78] = { 41.6, 69.8, 4012, 886 }, + [79] = { 23.2, 69.7, 4012, 1010 }, + [80] = { 25.2, 69.5, 4012, 953 }, + [81] = { 42.4, 69.2, 4012, 845 }, + [82] = { 39.3, 69.2, 4012, 744 }, + [83] = { 39.4, 69, 4012, 1016 }, + [84] = { 42.6, 69, 4012, 860 }, + [85] = { 23.3, 68.8, 4012, 948 }, + [86] = { 40.7, 68.1, 4012, 935 }, + [87] = { 42.1, 68.1, 4012, 947 }, + [88] = { 40.4, 67.9, 4012, 903 }, + [89] = { 35.4, 67.8, 4012, 907 }, + [90] = { 25.3, 67.8, 4012, 971 }, + [91] = { 36.8, 67.8, 4012, 725 }, + [92] = { 24.3, 67.1, 4012, 726 }, + [93] = { 24.8, 67, 4012, 887 }, + [94] = { 36.1, 66.8, 4012, 837 }, + [95] = { 36.9, 66.8, 4012, 971 }, + [96] = { 38.9, 66.4, 4012, 776 }, + [97] = { 42.4, 65.6, 4012, 881 }, + [98] = { 44.2, 65.6, 4012, 818 }, + [99] = { 42.3, 65.6, 4012, 947 }, + [100] = { 36.9, 65.5, 4012, 962 }, + [101] = { 36.1, 65.5, 4012, 976 }, + [102] = { 40.7, 64.8, 4012, 800 }, + [103] = { 39.2, 64.8, 4012, 907 }, + [104] = { 40.6, 64.7, 4012, 721 }, + [105] = { 36.8, 64.5, 4012, 1016 }, + [106] = { 36.1, 64.5, 4012, 745 }, + [107] = { 42.4, 64.5, 4012, 874 }, + [108] = { 36.2, 64.4, 4012, 786 }, + [109] = { 35.6, 64.4, 4012, 839 }, + [110] = { 42.1, 63.9, 4012, 983 }, + [111] = { 41.3, 63.9, 4012, 810 }, + [112] = { 42.9, 63.4, 4012, 853 }, + [113] = { 36.6, 63, 4012, 1015 }, + [114] = { 44.2, 62.6, 4012, 840 }, + [115] = { 36.5, 61, 4012, 741 }, + [116] = { 36.9, 60.8, 4012, 733 }, + [117] = { 45.2, 60.3, 4012, 749 }, + [118] = { 43.5, 59.1, 4012, 803 }, + }, + ["lvl"] = "53-54", + ["rnk"] = "1", + }, + [9448] = { + ["coords"] = { + [1] = { 85, 87.7, 139, 864 }, + [2] = { 87.2, 87.3, 139, 1009 }, + [3] = { 88.1, 86.9, 139, 930 }, + [4] = { 88, 86.9, 139, 858 }, + [5] = { 83.9, 86.4, 139, 823 }, + [6] = { 85.6, 86.3, 139, 732 }, + [7] = { 87.2, 86.2, 139, 947 }, + [8] = { 88.2, 86, 139, 888 }, + [9] = { 87.6, 85.9, 139, 778 }, + [10] = { 84.5, 85.8, 139, 828 }, + [11] = { 85.3, 85.8, 139, 796 }, + [12] = { 88.5, 85.7, 139, 728 }, + [13] = { 87.6, 85.1, 139, 786 }, + [14] = { 86.3, 85, 139, 961 }, + [15] = { 87.5, 85, 139, 847 }, + [16] = { 85.9, 84.8, 139, 731 }, + [17] = { 84.1, 84.7, 139, 910 }, + [18] = { 86.4, 84.7, 139, 902 }, + [19] = { 88.6, 84.5, 139, 998 }, + [20] = { 86.1, 84.3, 139, 943 }, + [21] = { 84.1, 83.6, 139, 743 }, + [22] = { 85.3, 83.6, 139, 756 }, + [23] = { 84.2, 83.1, 139, 791 }, + [24] = { 95.2, 82.8, 139, 300 }, + [25] = { 84.9, 82.4, 139, 743 }, + [26] = { 87.4, 82.3, 139, 919 }, + [27] = { 86.2, 82, 139, 870 }, + [28] = { 96, 81.9, 139, 300 }, + [29] = { 85.9, 81.4, 139, 875 }, + [30] = { 87, 81.3, 139, 812 }, + [31] = { 86.9, 80.6, 139, 972 }, + [32] = { 87.2, 79.8, 139, 1002 }, + [33] = { 45.1, 73.5, 4012, 864 }, + [34] = { 47.9, 73, 4012, 1009 }, + [35] = { 48.9, 72.6, 4012, 930 }, + [36] = { 48.8, 72.6, 4012, 858 }, + [37] = { 43.8, 72, 4012, 823 }, + [38] = { 45.9, 71.8, 4012, 732 }, + [39] = { 47.8, 71.8, 4012, 947 }, + [40] = { 49, 71.5, 4012, 888 }, + [41] = { 48.3, 71.4, 4012, 778 }, + [42] = { 44.5, 71.3, 4012, 828 }, + [43] = { 45.5, 71.2, 4012, 796 }, + [44] = { 49.4, 71.2, 4012, 728 }, + [45] = { 48.3, 70.3, 4012, 786 }, + [46] = { 46.7, 70.3, 4012, 961 }, + [47] = { 48.2, 70.2, 4012, 847 }, + [48] = { 46.2, 70.1, 4012, 731 }, + [49] = { 44.1, 69.9, 4012, 910 }, + [50] = { 46.9, 69.9, 4012, 902 }, + [51] = { 49.5, 69.7, 4012, 998 }, + [52] = { 46.5, 69.3, 4012, 943 }, + [53] = { 44, 68.5, 4012, 743 }, + [54] = { 45.5, 68.5, 4012, 756 }, + [55] = { 44.2, 67.9, 4012, 791 }, + [56] = { 57.6, 67.6, 4012, 300 }, + [57] = { 45.1, 67.1, 4012, 743 }, + [58] = { 48, 67, 4012, 919 }, + [59] = { 46.6, 66.6, 4012, 870 }, + [60] = { 58.6, 66.4, 4012, 300 }, + [61] = { 46.2, 65.9, 4012, 875 }, + [62] = { 47.6, 65.7, 4012, 812 }, + [63] = { 47.5, 64.9, 4012, 972 }, + [64] = { 47.8, 63.9, 4012, 1002 }, + }, + ["lvl"] = "56-57", + ["rnk"] = "1", + }, + [9449] = { + ["coords"] = { + [1] = { 90.7, 95, 139, 180 }, + [2] = { 90.6, 94.4, 139, 300 }, + [3] = { 90.7, 94.1, 139, 300 }, + [4] = { 90.4, 94.1, 139, 300 }, + [5] = { 90.5, 93.9, 139, 300 }, + [6] = { 94.3, 93.5, 139, 300 }, + [7] = { 94.4, 93.5, 139, 300 }, + [8] = { 90.6, 93.1, 139, 180 }, + [9] = { 94.3, 92.6, 139, 180 }, + [10] = { 91.2, 92.2, 139, 180 }, + [11] = { 96.8, 91.9, 139, 180 }, + [12] = { 94.5, 90, 139, 300 }, + [13] = { 93.8, 89.2, 139, 300 }, + [14] = { 93.1, 88.3, 139, 180 }, + [15] = { 91.4, 86.7, 139, 300 }, + [16] = { 81.1, 86, 139, 963 }, + [17] = { 81.1, 86, 139, 947 }, + [18] = { 80.5, 85.4, 139, 812 }, + [19] = { 80, 85.3, 139, 741 }, + [20] = { 79.9, 85.2, 139, 824 }, + [21] = { 90.4, 85.2, 139, 180 }, + [22] = { 83.3, 85, 139, 1015 }, + [23] = { 80.2, 84.9, 139, 893 }, + [24] = { 80.9, 84.7, 139, 877 }, + [25] = { 82.2, 84.5, 139, 739 }, + [26] = { 91.7, 84.5, 139, 180 }, + [27] = { 93.8, 84.5, 139, 180 }, + [28] = { 80.3, 84.3, 139, 988 }, + [29] = { 81.6, 84.2, 139, 790 }, + [30] = { 81.5, 84.2, 139, 776 }, + [31] = { 98.1, 84.2, 139, 300 }, + [32] = { 81.7, 84, 139, 766 }, + [33] = { 68.1, 83.9, 139, 825 }, + [34] = { 80.5, 83.8, 139, 950 }, + [35] = { 80.4, 83.6, 139, 721 }, + [36] = { 79.9, 83.4, 139, 890 }, + [37] = { 77.4, 83.2, 139, 725 }, + [38] = { 67.8, 83.1, 139, 757 }, + [39] = { 78.3, 82.6, 139, 862 }, + [40] = { 94.9, 82, 139, 300 }, + [41] = { 79.5, 81.6, 139, 860 }, + [42] = { 97, 81.6, 139, 180 }, + [43] = { 84.2, 81.2, 139, 937 }, + [44] = { 77.3, 80.9, 139, 757 }, + [45] = { 85.2, 80.7, 139, 989 }, + [46] = { 95.5, 80.5, 139, 300 }, + [47] = { 93.5, 80.5, 139, 300 }, + [48] = { 96.5, 80.4, 139, 180 }, + [49] = { 92.3, 80.2, 139, 300 }, + [50] = { 83.4, 80.2, 139, 753 }, + [51] = { 83.4, 80.1, 139, 998 }, + [52] = { 97.4, 79.7, 139, 300 }, + [53] = { 95.5, 79.7, 139, 300 }, + [54] = { 83.2, 79.6, 139, 775 }, + [55] = { 84.2, 79.5, 139, 757 }, + [56] = { 84.7, 79.5, 139, 963 }, + [57] = { 84, 79.2, 139, 911 }, + [58] = { 79, 79, 139, 921 }, + [59] = { 94.4, 78.9, 139, 300 }, + [60] = { 95.2, 78.9, 139, 300 }, + [61] = { 83.4, 78.4, 139, 893 }, + [62] = { 78.5, 78.3, 139, 736 }, + [63] = { 78.4, 78.3, 139, 908 }, + [64] = { 83.6, 78.3, 139, 816 }, + [65] = { 83.7, 78.2, 139, 778 }, + [66] = { 92.2, 78.1, 139, 180 }, + [67] = { 85.1, 78, 139, 942 }, + [68] = { 83.9, 77.5, 139, 904 }, + [69] = { 83.8, 77.4, 139, 928 }, + [70] = { 83.6, 77.4, 139, 884 }, + [71] = { 84.3, 76.9, 139, 890 }, + [72] = { 76.7, 76.6, 139, 908 }, + [73] = { 92.9, 75.3, 139, 180 }, + [74] = { 78.4, 75.3, 139, 834 }, + [75] = { 77.8, 74.7, 139, 903 }, + [76] = { 93.1, 74.1, 139, 180 }, + [77] = { 92.2, 74, 139, 180 }, + [78] = { 52.2, 82.5, 4012, 180 }, + [79] = { 52, 81.7, 4012, 300 }, + [80] = { 52.2, 81.4, 4012, 300 }, + [81] = { 51.7, 81.4, 4012, 300 }, + [82] = { 51.9, 81.1, 4012, 300 }, + [83] = { 56.5, 80.7, 4012, 300 }, + [84] = { 56.6, 80.6, 4012, 300 }, + [85] = { 52, 80.2, 4012, 180 }, + [86] = { 56.5, 79.5, 4012, 180 }, + [87] = { 52.7, 79.1, 4012, 180 }, + [88] = { 59.6, 78.8, 4012, 180 }, + [89] = { 56.8, 76.3, 4012, 300 }, + [90] = { 56, 75.4, 4012, 300 }, + [91] = { 55.1, 74.2, 4012, 180 }, + [92] = { 52.9, 72.4, 4012, 300 }, + [93] = { 40.3, 71.5, 4012, 963 }, + [94] = { 40.4, 71.4, 4012, 947 }, + [95] = { 39.6, 70.8, 4012, 812 }, + [96] = { 39, 70.6, 4012, 741 }, + [97] = { 38.9, 70.6, 4012, 824 }, + [98] = { 51.8, 70.6, 4012, 180 }, + [99] = { 43, 70.3, 4012, 1015 }, + [100] = { 39.2, 70.2, 4012, 893 }, + [101] = { 40, 69.9, 4012, 877 }, + [102] = { 41.7, 69.7, 4012, 739 }, + [103] = { 53.3, 69.7, 4012, 180 }, + [104] = { 55.9, 69.6, 4012, 180 }, + [105] = { 39.3, 69.4, 4012, 988 }, + [106] = { 40.9, 69.3, 4012, 790 }, + [107] = { 40.8, 69.3, 4012, 776 }, + [108] = { 61.1, 69.2, 4012, 300 }, + [109] = { 41.1, 69.1, 4012, 766 }, + [110] = { 24.4, 68.9, 4012, 825 }, + [111] = { 39.6, 68.8, 4012, 950 }, + [112] = { 39.5, 68.5, 4012, 721 }, + [113] = { 38.9, 68.4, 4012, 890 }, + [114] = { 62.4, 68.3, 4012, 300 }, + [115] = { 62.8, 68.2, 4012, 180 }, + [116] = { 62.4, 68.2, 4012, 300 }, + [117] = { 63.1, 68.1, 4012, 180 }, + [118] = { 35.8, 68, 4012, 725 }, + [119] = { 24, 68, 4012, 757 }, + [120] = { 36.9, 67.3, 4012, 862 }, + [121] = { 57.3, 66.6, 4012, 300 }, + [122] = { 38.4, 66.1, 4012, 860 }, + [123] = { 59.8, 66.1, 4012, 180 }, + [124] = { 44.1, 65.6, 4012, 937 }, + [125] = { 35.7, 65.2, 4012, 757 }, + [126] = { 45.3, 65, 4012, 989 }, + [127] = { 58, 64.8, 4012, 300 }, + [128] = { 55.5, 64.7, 4012, 300 }, + [129] = { 59.2, 64.7, 4012, 180 }, + [130] = { 54.1, 64.4, 4012, 300 }, + [131] = { 43.1, 64.3, 4012, 753 }, + [132] = { 61.2, 64.3, 4012, 300 }, + [133] = { 43.1, 64.2, 4012, 998 }, + [134] = { 60.3, 63.8, 4012, 300 }, + [135] = { 58, 63.8, 4012, 300 }, + [136] = { 43, 63.6, 4012, 775 }, + [137] = { 44.2, 63.5, 4012, 757 }, + [138] = { 44.8, 63.5, 4012, 963 }, + [139] = { 43.9, 63.2, 4012, 911 }, + [140] = { 37.8, 62.9, 4012, 921 }, + [141] = { 56.6, 62.8, 4012, 300 }, + [142] = { 57.6, 62.8, 4012, 300 }, + [143] = { 43.2, 62.2, 4012, 893 }, + [144] = { 37.1, 62.1, 4012, 736 }, + [145] = { 37, 62.1, 4012, 908 }, + [146] = { 43.5, 62.1, 4012, 816 }, + [147] = { 43.5, 62, 4012, 778 }, + [148] = { 54, 61.9, 4012, 180 }, + [149] = { 45.2, 61.7, 4012, 942 }, + [150] = { 43.8, 61.1, 4012, 904 }, + [151] = { 43.7, 61, 4012, 928 }, + [152] = { 43.4, 60.9, 4012, 884 }, + [153] = { 44.2, 60.3, 4012, 890 }, + [154] = { 34.9, 59.9, 4012, 908 }, + [155] = { 54.8, 58.4, 4012, 180 }, + [156] = { 57.3, 58.4, 4012, 300 }, + [157] = { 37.1, 58.3, 4012, 834 }, + [158] = { 36.3, 57.7, 4012, 903 }, + [159] = { 55, 56.9, 4012, 180 }, + [160] = { 54, 56.8, 4012, 180 }, + [161] = { 61, 56.6, 4012, 180 }, + [162] = { 57, 46.3, 4012, 180 }, + [163] = { 54.5, 39.4, 4012, 180 }, + }, + ["lvl"] = "54-55", + ["rnk"] = "1", + }, + [9450] = { + ["coords"] = { + [1] = { 87.3, 87.3, 139, 797 }, + [2] = { 85.4, 87, 139, 1001 }, + [3] = { 84.6, 87, 139, 818 }, + [4] = { 87.9, 86.2, 139, 817 }, + [5] = { 87.1, 86.1, 139, 752 }, + [6] = { 85.6, 86.1, 139, 955 }, + [7] = { 88.5, 85.8, 139, 965 }, + [8] = { 91.3, 85.7, 139, 180 }, + [9] = { 88.4, 85.6, 139, 744 }, + [10] = { 86.6, 83.1, 139, 804 }, + [11] = { 86, 83.1, 139, 786 }, + [12] = { 86.8, 82.2, 139, 940 }, + [13] = { 87.4, 82.2, 139, 955 }, + [14] = { 94.8, 82.1, 139, 180 }, + [15] = { 87.7, 80.7, 139, 938 }, + [16] = { 86.4, 79.9, 139, 906 }, + [17] = { 97.3, 79.6, 139, 180 }, + [18] = { 48, 73.1, 4012, 797 }, + [19] = { 45.6, 72.8, 4012, 1001 }, + [20] = { 44.6, 72.7, 4012, 818 }, + [21] = { 48.7, 71.7, 4012, 817 }, + [22] = { 47.6, 71.7, 4012, 752 }, + [23] = { 45.8, 71.7, 4012, 955 }, + [24] = { 49.4, 71.2, 4012, 965 }, + [25] = { 52.9, 71.2, 4012, 180 }, + [26] = { 49.3, 71, 4012, 744 }, + [27] = { 47.1, 67.9, 4012, 804 }, + [28] = { 46.3, 67.9, 4012, 786 }, + [29] = { 47.3, 66.8, 4012, 940 }, + [30] = { 48, 66.8, 4012, 955 }, + [31] = { 57.2, 66.7, 4012, 180 }, + [32] = { 48.5, 65.1, 4012, 938 }, + [33] = { 46.8, 64, 4012, 906 }, + [34] = { 60.2, 63.7, 4012, 180 }, + }, + ["lvl"] = "55-56", + ["rnk"] = "1", + }, + [9451] = { + ["coords"] = { + [1] = { 87.2, 87.3, 139, 925 }, + [2] = { 86.2, 87, 139, 760 }, + [3] = { 91, 86.6, 139, 300 }, + [4] = { 85.3, 86.3, 139, 1013 }, + [5] = { 87.1, 86, 139, 1009 }, + [6] = { 87.8, 85.8, 139, 865 }, + [7] = { 91.3, 85.7, 139, 300 }, + [8] = { 85.1, 84.6, 139, 865 }, + [9] = { 93.5, 83.4, 139, 300 }, + [10] = { 86.5, 83.1, 139, 788 }, + [11] = { 85.7, 82.9, 139, 746 }, + [12] = { 87.9, 82.8, 139, 777 }, + [13] = { 88, 82.8, 139, 889 }, + [14] = { 86.9, 81.2, 139, 977 }, + [15] = { 93.5, 80.5, 139, 300 }, + [16] = { 95.5, 80.4, 139, 300 }, + [17] = { 95.3, 79.6, 139, 300 }, + [18] = { 95.6, 79.3, 139, 300 }, + [19] = { 47.9, 73.1, 4012, 925 }, + [20] = { 46.6, 72.7, 4012, 760 }, + [21] = { 52.5, 72.2, 4012, 300 }, + [22] = { 45.5, 71.8, 4012, 1013 }, + [23] = { 47.7, 71.5, 4012, 1009 }, + [24] = { 48.6, 71.2, 4012, 865 }, + [25] = { 52.8, 71.1, 4012, 300 }, + [26] = { 45.2, 69.8, 4012, 865 }, + [27] = { 55.6, 68.3, 4012, 300 }, + [28] = { 47, 67.9, 4012, 788 }, + [29] = { 46, 67.7, 4012, 746 }, + [30] = { 48.7, 67.6, 4012, 777 }, + [31] = { 48.7, 67.5, 4012, 889 }, + [32] = { 47.5, 65.6, 4012, 977 }, + [33] = { 55.6, 64.7, 4012, 300 }, + [34] = { 57.9, 64.6, 4012, 300 }, + [35] = { 57.7, 63.6, 4012, 300 }, + [36] = { 58.2, 63.3, 4012, 300 }, + }, + ["lvl"] = "55-57", + ["rnk"] = "1", + }, + [9452] = { + ["coords"] = { + [1] = { 94.3, 93.6, 139, 300 }, + [2] = { 94.2, 93.3, 139, 180 }, + [3] = { 94.1, 93.1, 139, 300 }, + [4] = { 91.7, 87.3, 139, 180 }, + [5] = { 91.1, 86.7, 139, 300 }, + [6] = { 78.7, 86.4, 139, 1014 }, + [7] = { 83.5, 86.4, 139, 892 }, + [8] = { 91.5, 86.2, 139, 300 }, + [9] = { 91.1, 85.9, 139, 300 }, + [10] = { 80.7, 85.7, 139, 940 }, + [11] = { 80.6, 85.6, 139, 857 }, + [12] = { 80.7, 85.5, 139, 876 }, + [13] = { 83.1, 84.9, 139, 1012 }, + [14] = { 82.6, 84.9, 139, 1011 }, + [15] = { 81.8, 84.1, 139, 989 }, + [16] = { 68.1, 84, 139, 831 }, + [17] = { 98.4, 84, 139, 300 }, + [18] = { 80.6, 83.8, 139, 911 }, + [19] = { 80.6, 83.6, 139, 834 }, + [20] = { 80.5, 83.5, 139, 858 }, + [21] = { 82.9, 83.4, 139, 824 }, + [22] = { 67.7, 83.3, 139, 832 }, + [23] = { 82.9, 83.3, 139, 961 }, + [24] = { 81.8, 82.3, 139, 851 }, + [25] = { 83.6, 82.2, 139, 884 }, + [26] = { 82.5, 82.1, 139, 834 }, + [27] = { 77.3, 81.9, 139, 941 }, + [28] = { 93.8, 81.2, 139, 300 }, + [29] = { 78.6, 80.7, 139, 728 }, + [30] = { 92.3, 80.3, 139, 300 }, + [31] = { 77.4, 80, 139, 964 }, + [32] = { 84.6, 79.9, 139, 828 }, + [33] = { 84.6, 79.9, 139, 848 }, + [34] = { 83.7, 79.8, 139, 855 }, + [35] = { 83.7, 79.8, 139, 812 }, + [36] = { 83.9, 79.7, 139, 850 }, + [37] = { 81.9, 79.7, 139, 730 }, + [38] = { 95.3, 79.6, 139, 300 }, + [39] = { 83.9, 79.6, 139, 810 }, + [40] = { 84.6, 79.5, 139, 814 }, + [41] = { 84.7, 79.5, 139, 774 }, + [42] = { 83.2, 79.5, 139, 805 }, + [43] = { 93.3, 79.4, 139, 300 }, + [44] = { 84.6, 79.4, 139, 775 }, + [45] = { 84.7, 79.4, 139, 870 }, + [46] = { 95.6, 79.3, 139, 300 }, + [47] = { 92.8, 79.3, 139, 300 }, + [48] = { 92.7, 79.3, 139, 300 }, + [49] = { 84.1, 79.2, 139, 832 }, + [50] = { 82.9, 79.1, 139, 1013 }, + [51] = { 82.9, 79.1, 139, 773 }, + [52] = { 96.1, 78.8, 139, 300 }, + [53] = { 84.1, 78.6, 139, 953 }, + [54] = { 83.4, 78.5, 139, 800 }, + [55] = { 82.7, 78.2, 139, 744 }, + [56] = { 83.7, 77.5, 139, 789 }, + [57] = { 83.6, 77.5, 139, 807 }, + [58] = { 85.5, 75.4, 139, 927 }, + [59] = { 84.8, 75.1, 139, 1002 }, + [60] = { 84.7, 74.6, 139, 951 }, + [61] = { 56.5, 80.7, 4012, 300 }, + [62] = { 56.5, 80.4, 4012, 180 }, + [63] = { 56.3, 80.1, 4012, 300 }, + [64] = { 62.2, 78.6, 4012, 180 }, + [65] = { 64.7, 77.1, 4012, 180 }, + [66] = { 62.4, 75.5, 4012, 180 }, + [67] = { 53.3, 73, 4012, 180 }, + [68] = { 52.7, 72.3, 4012, 300 }, + [69] = { 37.4, 72, 4012, 1014 }, + [70] = { 43.3, 72, 4012, 892 }, + [71] = { 53.1, 71.8, 4012, 300 }, + [72] = { 52.6, 71.3, 4012, 300 }, + [73] = { 39.8, 71.1, 4012, 940 }, + [74] = { 39.8, 71, 4012, 857 }, + [75] = { 39.9, 70.9, 4012, 876 }, + [76] = { 42.8, 70.1, 4012, 1012 }, + [77] = { 42.2, 70.1, 4012, 1011 }, + [78] = { 63.3, 69.5, 4012, 300 }, + [79] = { 41.2, 69.2, 4012, 989 }, + [80] = { 24.4, 69.1, 4012, 831 }, + [81] = { 61.6, 69.1, 4012, 300 }, + [82] = { 39.7, 68.8, 4012, 911 }, + [83] = { 39.7, 68.5, 4012, 834 }, + [84] = { 39.6, 68.4, 4012, 858 }, + [85] = { 42.5, 68.3, 4012, 824 }, + [86] = { 23.9, 68.2, 4012, 832 }, + [87] = { 42.6, 68.2, 4012, 961 }, + [88] = { 63.2, 67.9, 4012, 300 }, + [89] = { 63.1, 67.9, 4012, 300 }, + [90] = { 63.1, 67.1, 4012, 300 }, + [91] = { 41.3, 66.9, 4012, 851 }, + [92] = { 43.4, 66.8, 4012, 884 }, + [93] = { 42, 66.7, 4012, 834 }, + [94] = { 35.8, 66.4, 4012, 941 }, + [95] = { 55.9, 65.6, 4012, 300 }, + [96] = { 37.3, 65, 4012, 728 }, + [97] = { 54.1, 64.6, 4012, 300 }, + [98] = { 35.8, 64.2, 4012, 964 }, + [99] = { 44.6, 64.1, 4012, 828 }, + [100] = { 44.7, 64, 4012, 848 }, + [101] = { 43.5, 63.9, 4012, 855 }, + [102] = { 61.3, 63.9, 4012, 300 }, + [103] = { 43.6, 63.8, 4012, 812 }, + [104] = { 43.8, 63.7, 4012, 850 }, + [105] = { 41.4, 63.7, 4012, 730 }, + [106] = { 57.7, 63.7, 4012, 300 }, + [107] = { 43.8, 63.7, 4012, 810 }, + [108] = { 44.7, 63.6, 4012, 814 }, + [109] = { 44.8, 63.5, 4012, 774 }, + [110] = { 42.9, 63.5, 4012, 805 }, + [111] = { 55.4, 63.4, 4012, 300 }, + [112] = { 44.7, 63.4, 4012, 775 }, + [113] = { 44.7, 63.3, 4012, 870 }, + [114] = { 58.1, 63.3, 4012, 300 }, + [115] = { 54.7, 63.3, 4012, 300 }, + [116] = { 54.6, 63.3, 4012, 300 }, + [117] = { 44.1, 63.2, 4012, 832 }, + [118] = { 42.6, 63.1, 4012, 1013 }, + [119] = { 42.6, 63, 4012, 773 }, + [120] = { 58.7, 62.6, 4012, 300 }, + [121] = { 44.1, 62.4, 4012, 953 }, + [122] = { 43.2, 62.3, 4012, 800 }, + [123] = { 42.3, 61.9, 4012, 744 }, + [124] = { 59.7, 61.8, 4012, 300 }, + [125] = { 59.8, 61.7, 4012, 300 }, + [126] = { 43.5, 61, 4012, 789 }, + [127] = { 43.4, 61, 4012, 807 }, + [128] = { 45.8, 58.6, 4012, 927 }, + [129] = { 44.8, 58.2, 4012, 1002 }, + [130] = { 44.7, 57.5, 4012, 951 }, + }, + ["lvl"] = "53-55", + ["rnk"] = "1", + }, + [9453] = { + ["coords"] = { + [1] = { 70.4, 49.9, 440, 0 }, + }, + ["lvl"] = "54", + }, + [9460] = { + ["coords"] = { + [1] = { 52.1, 29.5, 440, 300 }, + [2] = { 51.1, 29.4, 440, 300 }, + [3] = { 51.8, 29.4, 440, 300 }, + [4] = { 50.9, 29.4, 440, 300 }, + [5] = { 51.6, 29.2, 440, 300 }, + [6] = { 51.4, 29.1, 440, 300 }, + [7] = { 51.9, 29.1, 440, 300 }, + [8] = { 52, 29.1, 440, 300 }, + [9] = { 52.3, 28.8, 440, 300 }, + [10] = { 51, 28.8, 440, 300 }, + [11] = { 52.2, 28.8, 440, 300 }, + [12] = { 51.6, 28.8, 440, 300 }, + [13] = { 52.4, 28.8, 440, 300 }, + [14] = { 50.9, 28.7, 440, 300 }, + [15] = { 51.8, 28.7, 440, 300 }, + [16] = { 51.3, 28.7, 440, 300 }, + [17] = { 52.1, 28.6, 440, 300 }, + [18] = { 52.6, 28.4, 440, 300 }, + [19] = { 51.7, 28.3, 440, 300 }, + [20] = { 50.8, 28.3, 440, 300 }, + [21] = { 52.5, 28.1, 440, 300 }, + [22] = { 51.2, 28.1, 440, 300 }, + [23] = { 51.9, 28, 440, 300 }, + [24] = { 52.7, 27.9, 440, 300 }, + [25] = { 67.6, 27.8, 440, 25 }, + [26] = { 52.5, 27.7, 440, 300 }, + [27] = { 51, 27.7, 440, 300 }, + [28] = { 67.4, 27.5, 440, 25 }, + [29] = { 52.1, 27.5, 440, 300 }, + [30] = { 52.3, 27.4, 440, 300 }, + [31] = { 50.5, 27.4, 440, 300 }, + [32] = { 52.1, 27.3, 440, 300 }, + [33] = { 52.3, 27.1, 440, 300 }, + [34] = { 51, 27.1, 440, 300 }, + [35] = { 51.9, 27, 440, 300 }, + [36] = { 67.4, 27, 440, 25 }, + [37] = { 51.7, 27, 440, 300 }, + [38] = { 67.7, 27, 440, 25 }, + [39] = { 67.6, 26.5, 440, 25 }, + [40] = { 52, 26.4, 440, 300 }, + [41] = { 67.7, 26.4, 440, 25 }, + [42] = { 51.8, 26.4, 440, 300 }, + [43] = { 51.2, 26.3, 440, 300 }, + [44] = { 51.3, 26.3, 440, 300 }, + [45] = { 67.4, 26.3, 440, 25 }, + [46] = { 51.5, 25.6, 440, 300 }, + [47] = { 51.6, 25.3, 440, 300 }, + [48] = { 45.2, 5.8, 490, 120 }, + }, + ["lvl"] = "57", + }, + [9499] = { + ["coords"] = { + [1] = { 53, 49.3, 1584, 604800 }, + }, + ["lvl"] = "55", + ["rnk"] = "1", + }, + [9500] = { + ["coords"] = { + [1] = { 54.2, 50.9, 1584, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "54", + ["rnk"] = "1", + }, + [9502] = { + ["coords"] = { + [1] = { 55.7, 52.5, 1584, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [9503] = { + ["coords"] = { + [1] = { 54.1, 49, 1584, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "52-54", + }, + [9518] = { + ["coords"] = { + [1] = { 38.3, 50.5, 361, 300 }, + }, + ["lvl"] = "56", + }, + [9520] = { + ["coords"] = { + [1] = { 96, 79.3, 25, 900 }, + [2] = { 40.2, 34.2, 46, 900 }, + }, + ["fac"] = "H", + ["lvl"] = "56", + ["rnk"] = "1", + }, + [9521] = { + ["coords"] = { + [1] = { 45.6, 42.6, 130, 120 }, + [2] = { 58.6, 80.2, 36, 120 }, + [3] = { 60.1, 18.6, 267, 120 }, + [4] = { 63.3, 48.6, 1497, 120 }, + [5] = { 80.2, 57, 139, 120 }, + [6] = { 39.3, 36, 4012, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [9525] = { + ["coords"] = { + [1] = { 46.3, 56.8, 400, 300 }, + [2] = { 43.4, 54.2, 400, 300 }, + [3] = { 43.2, 54.1, 400, 300 }, + [4] = { 42.6, 51, 400, 300 }, + [5] = { 45.7, 51, 400, 300 }, + [6] = { 46.3, 50.7, 400, 300 }, + [7] = { 45.4, 50.5, 400, 300 }, + [8] = { 44.5, 50.1, 400, 300 }, + [9] = { 46.2, 50.1, 400, 300 }, + [10] = { 46, 49.8, 400, 300 }, + [11] = { 44.5, 49.7, 400, 300 }, + [12] = { 45.4, 49.5, 400, 300 }, + [13] = { 45.8, 49.4, 400, 300 }, + [14] = { 44.6, 49.4, 400, 300 }, + [15] = { 47.7, 49.2, 400, 300 }, + [16] = { 44.8, 48.8, 400, 300 }, + [17] = { 46.7, 47.4, 400, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [9526] = { + ["coords"] = { + [1] = { 71, 72.5, 1519, 120 }, + [2] = { 56.6, 52.6, 40, 120 }, + [3] = { 30.6, 59.4, 44, 120 }, + [4] = { 9.5, 59.7, 11, 120 }, + [5] = { 96.1, 47.1, 1, 120 }, + [6] = { 33.9, 51, 38, 120 }, + [7] = { 15.9, 70.3, 5602, 120 }, + [8] = { 55.5, 47.7, 1537, 120 }, + [9] = { 84.3, 68.3, 46, 120 }, + [10] = { 77.5, 44.3, 10, 120 }, + [11] = { 49.3, 52.3, 267, 120 }, + [12] = { 45.7, 46.1, 45, 120 }, + [13] = { 27.5, 77.8, 33, 120 }, + [14] = { 37.9, 30.9, 51, 120 }, + [15] = { 67.5, 51.3, 15, 120 }, + [16] = { 51, 29.3, 440, 120 }, + [17] = { 11.1, 46.2, 47, 120 }, + [18] = { 95.9, 5.5, 267, 120 }, + [19] = { 65.5, 24.3, 4, 120 }, + [20] = { 42.9, 85.1, 28, 120 }, + [21] = { 81.6, 59.3, 139, 120 }, + [22] = { 41, 38.8, 4012, 120 }, + [23] = { 68.6, 18.7, 1, 120 }, + [24] = { 22.7, 65.4, 11, 120 }, + [25] = { 34.1, 10.9, 17, 120 }, + [26] = { 79.4, 63.9, 406, 120 }, + [27] = { 26.9, 35.6, 1, 120 }, + [28] = { 96.8, 63.6, 721, 120 }, + [29] = { 69.6, 78.4, 5561, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [9527] = { + ["coords"] = { + [1] = { 58.4, 94, 141, 120 }, + [2] = { 36.3, 45.6, 148, 120 }, + [3] = { 34.4, 48, 331, 120 }, + [4] = { 89.5, 45.9, 357, 120 }, + [5] = { 7.8, 17.9, 400, 120 }, + [6] = { 41.3, 18.9, 406, 120 }, + [7] = { 64.7, 10.5, 405, 120 }, + [8] = { 43.6, 82.4, 406, 120 }, + [9] = { 30.2, 43.2, 357, 120 }, + [10] = { 48.1, 67.3, 493, 120 }, + [11] = { 62.3, 36.6, 618, 120 }, + [12] = { 11.9, 77.6, 16, 120 }, + [13] = { 62.5, 24.2, 361, 120 }, + [14] = { 50.6, 34.4, 1377, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [9542] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [9543] = { + ["coords"] = { + [1] = { 52.8, 50.9, 1584, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "53", + ["rnk"] = "1", + }, + [9545] = { + ["coords"] = { + [1] = { 52.7, 55.1, 1584, 18000 }, + [2] = { 53.2, 54.7, 1584, 18000 }, + [3] = { 52.7, 54.4, 1584, 18000 }, + [4] = { 52.8, 54.3, 1584, 18000 }, + [5] = { 52, 53.8, 1584, 18000 }, + [6] = { 52, 53.7, 1584, 18000 }, + [7] = { 52.3, 53.7, 1584, 18000 }, + [8] = { 54.4, 52, 1584, 18000 }, + [9] = { 54.5, 51.9, 1584, 18000 }, + [10] = { 52.3, 51.7, 1584, 18000 }, + [11] = { 54, 51.5, 1584, 18000 }, + [12] = { 52.5, 51.4, 1584, 18000 }, + [13] = { 51.2, 51.4, 1584, 18000 }, + [14] = { 54, 51, 1584, 18000 }, + [15] = { 51.2, 50.9, 1584, 18000 }, + [16] = { 51.3, 50.7, 1584, 18000 }, + [17] = { 54.4, 50.4, 1584, 18000 }, + [18] = { 52.5, 50.2, 1584, 18000 }, + [19] = { 52, 50, 1584, 18000 }, + [20] = { 53.2, 50, 1584, 18000 }, + [21] = { 52.3, 49.8, 1584, 18000 }, + [22] = { 54.6, 49.6, 1584, 18000 }, + [23] = { 54.6, 49.5, 1584, 18000 }, + [24] = { 54.4, 49.4, 1584, 18000 }, + [25] = { 53.2, 49.3, 1584, 18000 }, + [26] = { 54.5, 49.1, 1584, 18000 }, + [27] = { 54.3, 49, 1584, 18000 }, + [28] = { 54.4, 48.9, 1584, 18000 }, + }, + ["lvl"] = "48-52", + }, + [9547] = { + ["coords"] = { + [1] = { 52.2, 54.7, 1584, 18000 }, + [2] = { 53.1, 54.4, 1584, 18000 }, + [3] = { 53.3, 54.2, 1584, 18000 }, + [4] = { 52.6, 54.2, 1584, 18000 }, + [5] = { 52.4, 54, 1584, 18000 }, + [6] = { 54.2, 51.9, 1584, 18000 }, + [7] = { 51.3, 51.6, 1584, 18000 }, + [8] = { 54.2, 51.5, 1584, 18000 }, + [9] = { 52.2, 51.4, 1584, 18000 }, + [10] = { 54.2, 51.3, 1584, 18000 }, + [11] = { 52.2, 50.8, 1584, 18000 }, + [12] = { 52.5, 50.7, 1584, 18000 }, + [13] = { 52.5, 50.5, 1584, 18000 }, + [14] = { 52.7, 50.5, 1584, 18000 }, + [15] = { 52.2, 50.3, 1584, 18000 }, + [16] = { 51.5, 50.3, 1584, 18000 }, + [17] = { 54.3, 50.3, 1584, 18000 }, + [18] = { 54.2, 50.2, 1584, 18000 }, + [19] = { 54.5, 50.1, 1584, 18000 }, + [20] = { 51.5, 50, 1584, 18000 }, + [21] = { 52.4, 49.9, 1584, 18000 }, + [22] = { 53.1, 49.8, 1584, 18000 }, + [23] = { 54.6, 49.8, 1584, 18000 }, + [24] = { 54.8, 49.7, 1584, 18000 }, + [25] = { 54.6, 49.3, 1584, 18000 }, + [26] = { 53.2, 49.3, 1584, 18000 }, + [27] = { 54.5, 49.1, 1584, 18000 }, + }, + ["lvl"] = "48-52", + }, + [9549] = { + ["coords"] = { + [1] = { 48.5, 61.1, 406, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [9550] = { + ["coords"] = { + [1] = { 50.9, 65.3, 1637, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "41", + }, + [9554] = { + ["coords"] = { + [1] = { 52.6, 55.3, 1584, 18000 }, + [2] = { 53.1, 54.8, 1584, 18000 }, + [3] = { 52.3, 54.1, 1584, 18000 }, + [4] = { 52.9, 54.1, 1584, 18000 }, + [5] = { 53.6, 53.1, 1584, 18000 }, + [6] = { 53.5, 52.9, 1584, 18000 }, + [7] = { 52.3, 51, 1584, 18000 }, + [8] = { 54.6, 50.6, 1584, 18000 }, + [9] = { 54.7, 50.5, 1584, 18000 }, + [10] = { 54.8, 50.4, 1584, 18000 }, + [11] = { 54.7, 50.4, 1584, 18000 }, + [12] = { 55, 50.3, 1584, 18000 }, + }, + ["lvl"] = "48-52", + ["rnk"] = "1", + }, + [9557] = "_", + [9567] = "_", + [9568] = { + ["coords"] = { + [1] = { 56, 55.3, 1583, 604800 }, + }, + ["lvl"] = "60", + ["rnk"] = "3", + }, + [9576] = "_", + [9577] = "_", + [9578] = "_", + [9579] = "_", + [9580] = "_", + [9581] = "_", + [9582] = "_", + [9583] = { + ["coords"] = { + [1] = { 55.2, 85.8, 1583, 18000 }, + [2] = { 48.2, 79.1, 1583, 18000 }, + [3] = { 40, 77.7, 1583, 18000 }, + [4] = { 42.8, 75, 1583, 18000 }, + [5] = { 34.9, 74.5, 1583, 18000 }, + [6] = { 38.4, 72, 1583, 18000 }, + [7] = { 34.2, 70.3, 1583, 18000 }, + [8] = { 40.2, 66.5, 1583, 18000 }, + [9] = { 36.8, 65.7, 1583, 18000 }, + [10] = { 37.2, 63.7, 1583, 18000 }, + [11] = { 37.5, 63.7, 1583, 18000 }, + [12] = { 55.4, 61.4, 1583, 18000 }, + [13] = { 49.4, 61.1, 1583, 18000 }, + [14] = { 40.1, 60.9, 1583, 18000 }, + [15] = { 51.1, 60.6, 1583, 18000 }, + [16] = { 59.3, 58.9, 1583, 18000 }, + }, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [9584] = { + ["coords"] = { + [1] = { 40.4, 84.6, 1519, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [9598] = { + ["coords"] = { + [1] = { 49.6, 29.6, 361, 0 }, + [2] = { 4, 5.9, 616, 0 }, + }, + ["fac"] = "A", + ["lvl"] = "56", + }, + [9600] = { + ["coords"] = { + [1] = { 43.3, 80.3, 33, 180 }, + [2] = { 56.3, 80.5, 490, 300 }, + [3] = { 32, 76.4, 490, 300 }, + [4] = { 39.4, 72.6, 490, 300 }, + [5] = { 31.1, 67, 490, 300 }, + [6] = { 36.2, 66.6, 490, 300 }, + [7] = { 53.3, 63.9, 490, 300 }, + [8] = { 40.2, 54.7, 490, 300 }, + [9] = { 58.7, 54.2, 490, 300 }, + [10] = { 60.3, 44.8, 490, 300 }, + [11] = { 60.1, 44.4, 490, 300 }, + [12] = { 31.2, 37, 490, 300 }, + }, + ["lvl"] = "1", + }, + [9601] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "57", + }, + [9602] = { + ["coords"] = { + [1] = { 81.6, 41.5, 46, 54000 }, + }, + ["lvl"] = "54", + ["rnk"] = "4", + }, + [9604] = { + ["coords"] = { + [1] = { 80.6, 41.3, 46, 108000 }, + }, + ["lvl"] = "54", + ["rnk"] = "4", + }, + [9617] = "_", + [9658] = "_", + [9659] = "_", + [9676] = { + ["coords"] = { + [1] = { 38.5, 73.8, 721, 18000 }, + }, + ["fac"] = "A", + ["lvl"] = "24", + }, + [9677] = { + ["coords"] = { + [1] = { 51.8, 73.4, 1584, 18000 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [9678] = { + ["coords"] = { + [1] = { 52.4, 70.2, 1584, 18000 }, + }, + ["fac"] = "AH", + ["lvl"] = "56", + ["rnk"] = "1", + }, + [9679] = { + ["coords"] = { + [1] = { 58.8, 76.1, 1584, 18000 }, + }, + ["fac"] = "AH", + ["lvl"] = "52", + ["rnk"] = "1", + }, + [9680] = { + ["coords"] = { + [1] = { 55.9, 74.8, 1584, 18000 }, + }, + ["fac"] = "AH", + ["lvl"] = "54", + ["rnk"] = "1", + }, + [9681] = { + ["coords"] = { + [1] = { 51.6, 73.1, 1584, 18000 }, + }, + ["fac"] = "AH", + ["lvl"] = "53", + ["rnk"] = "1", + }, + [9684] = { + ["coords"] = { + [1] = { 31.7, 28.7, 440, 0 }, + [2] = { 79.4, 49.9, 490, 0 }, + }, + ["lvl"] = "56", + }, + [9686] = "_", + [9692] = { + ["coords"] = { + [1] = { 52.8, 79.4, 1583, 18000 }, + [2] = { 40, 76.5, 1583, 18000 }, + [3] = { 37.1, 75, 1583, 18000 }, + [4] = { 42.8, 73, 1583, 18000 }, + [5] = { 40.7, 71.8, 1583, 18000 }, + [6] = { 34, 66.7, 1583, 18000 }, + [7] = { 55.6, 59.9, 1583, 18000 }, + [8] = { 60, 57.8, 1583, 18000 }, + }, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [9693] = { + ["coords"] = { + [1] = { 47.7, 79.8, 1583, 18000 }, + [2] = { 37.4, 79.1, 1583, 18000 }, + [3] = { 35.1, 75.8, 1583, 18000 }, + [4] = { 38.4, 71.5, 1583, 18000 }, + [5] = { 36.5, 66.2, 1583, 18000 }, + [6] = { 40.7, 65.9, 1583, 18000 }, + [7] = { 59.9, 63.7, 1583, 18000 }, + [8] = { 56.1, 61.2, 1583, 18000 }, + [9] = { 36.5, 60.7, 1583, 18000 }, + [10] = { 59.9, 59.6, 1583, 18000 }, + [11] = { 34.9, 58.8, 1583, 18000 }, + }, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [9696] = { + ["coords"] = { + [1] = { 53.3, 79.7, 1583, 18000 }, + [2] = { 52.9, 79.1, 1583, 18000 }, + [3] = { 40.2, 76.2, 1583, 18000 }, + [4] = { 39.7, 76.2, 1583, 18000 }, + [5] = { 37.5, 75.1, 1583, 18000 }, + [6] = { 36.8, 75.1, 1583, 18000 }, + [7] = { 42.5, 73, 1583, 18000 }, + [8] = { 43, 73, 1583, 18000 }, + [9] = { 40.9, 72.1, 1583, 18000 }, + [10] = { 40.6, 71.5, 1583, 18000 }, + [11] = { 33.7, 67.2, 1583, 18000 }, + [12] = { 34.2, 66.2, 1583, 18000 }, + [13] = { 55.7, 60.3, 1583, 18000 }, + [14] = { 55.3, 59.5, 1583, 18000 }, + [15] = { 59.7, 57.9, 1583, 18000 }, + [16] = { 60.2, 57.6, 1583, 18000 }, + }, + ["lvl"] = "56-57", + }, + [9697] = { + ["coords"] = { + [1] = { 24.5, 69.2, 46, 500 }, + [2] = { 26.5, 62.8, 46, 500 }, + [3] = { 23.6, 59.5, 46, 500 }, + [4] = { 26.5, 57.7, 46, 500 }, + [5] = { 99.3, 86.5, 5581, 500 }, + }, + ["lvl"] = "55-56", + }, + [9699] = { + ["coords"] = { + [1] = { 23.4, 69.3, 46, 750 }, + [2] = { 57.9, 62.4, 46, 750 }, + [3] = { 64.7, 60.2, 46, 750 }, + [4] = { 17.1, 59.5, 46, 750 }, + [5] = { 47.2, 58.1, 46, 750 }, + [6] = { 81.3, 57.9, 46, 750 }, + [7] = { 40.6, 57.4, 46, 750 }, + [8] = { 54.8, 56.9, 46, 750 }, + [9] = { 72.3, 55.4, 46, 750 }, + [10] = { 50, 54.1, 46, 750 }, + [11] = { 44.9, 53.7, 46, 750 }, + [12] = { 18.8, 49.6, 46, 750 }, + [13] = { 66, 49.1, 46, 750 }, + [14] = { 89.5, 48.1, 46, 750 }, + [15] = { 72.2, 48, 46, 750 }, + [16] = { 39.5, 46.8, 46, 750 }, + [17] = { 79.5, 43.1, 46, 750 }, + [18] = { 43.5, 37.1, 46, 750 }, + [19] = { 67.5, 36.1, 46, 750 }, + [20] = { 89.5, 34.3, 46, 750 }, + [21] = { 84.7, 31.1, 46, 750 }, + [22] = { 78.4, 29.7, 46, 750 }, + [23] = { 59.2, 84.1, 51, 750 }, + [24] = { 21.4, 75.3, 51, 750 }, + [25] = { 29.6, 72.8, 51, 750 }, + [26] = { 35.4, 72, 51, 750 }, + [27] = { 43.4, 71.2, 51, 750 }, + [28] = { 62.4, 70.6, 51, 750 }, + [29] = { 49.3, 69.9, 51, 750 }, + [30] = { 54.4, 69.7, 51, 750 }, + [31] = { 47.7, 68.5, 51, 750 }, + [32] = { 32.9, 66.9, 51, 750 }, + [33] = { 62.3, 66.8, 51, 750 }, + [34] = { 50.2, 62.7, 51, 750 }, + [35] = { 32.4, 61.4, 51, 750 }, + [36] = { 58.8, 60.9, 51, 750 }, + [37] = { 57.9, 59.2, 51, 750 }, + [38] = { 28.2, 56.4, 51, 750 }, + [39] = { 46.8, 55.5, 51, 750 }, + [40] = { 68.7, 55, 51, 750 }, + [41] = { 34.3, 44.9, 51, 750 }, + [42] = { 54.7, 44.3, 51, 750 }, + [43] = { 28.1, 43.9, 51, 750 }, + [44] = { 44.8, 41, 51, 750 }, + [45] = { 51.8, 40.8, 51, 750 }, + [46] = { 48.8, 38.8, 51, 750 }, + [47] = { 56, 37.3, 51, 750 }, + [48] = { 68.2, 36.6, 51, 750 }, + [49] = { 24.1, 36.4, 51, 750 }, + [50] = { 25.5, 35.2, 51, 750 }, + [51] = { 73.5, 29.5, 51, 750 }, + [52] = { 35.5, 26.4, 51, 750 }, + [53] = { 57.6, 26.2, 51, 750 }, + [54] = { 74.7, 19.7, 51, 750 }, + [55] = { 99, 95.4, 5581, 750 }, + [56] = { 93.4, 86.5, 5581, 750 }, + [57] = { 94.9, 77.5, 5581, 750 }, + [58] = { 94.4, 41.4, 5581, 750 }, + [59] = { 99.1, 28.4, 5581, 750 }, + [60] = { 99, 19.7, 5581, 750 }, + [61] = { 96.3, 14.6, 5581, 750 }, + [62] = { 97.2, 13.7, 5581, 750 }, + }, + ["lvl"] = "1", + }, + [9700] = { + ["coords"] = { + [1] = { 80.1, 74.5, 25, 750 }, + [2] = { 88.9, 60.9, 25, 750 }, + [3] = { 11.2, 53.8, 25, 750 }, + [4] = { 92.3, 53.4, 25, 750 }, + [5] = { 78.7, 74.8, 46, 750 }, + [6] = { 75.3, 70.2, 46, 750 }, + [7] = { 34.9, 67.3, 46, 750 }, + [8] = { 54.5, 62.6, 46, 750 }, + [9] = { 49.3, 62.6, 46, 750 }, + [10] = { 28.9, 62.1, 46, 750 }, + [11] = { 70.3, 61.3, 46, 750 }, + [12] = { 35.7, 61.1, 46, 750 }, + [13] = { 34.9, 57.6, 46, 750 }, + [14] = { 59.7, 57.2, 46, 750 }, + [15] = { 77.8, 50.7, 46, 750 }, + [16] = { 46.3, 50.6, 46, 750 }, + [17] = { 51.5, 50.6, 46, 750 }, + [18] = { 55, 48.9, 46, 750 }, + [19] = { 33.3, 46.9, 46, 750 }, + [20] = { 78.8, 46.1, 46, 750 }, + [21] = { 35.4, 45.3, 46, 750 }, + [22] = { 23.5, 44.8, 46, 750 }, + [23] = { 44.2, 43.6, 46, 750 }, + [24] = { 21.9, 41.9, 46, 750 }, + [25] = { 76.9, 39.1, 46, 750 }, + [26] = { 62, 38.2, 46, 750 }, + [27] = { 51, 35.1, 46, 750 }, + [28] = { 80.9, 34.4, 46, 750 }, + [29] = { 36.3, 33.1, 46, 750 }, + [30] = { 15.9, 31.9, 46, 750 }, + [31] = { 62, 31.8, 46, 750 }, + [32] = { 65.8, 31.4, 46, 750 }, + [33] = { 70.9, 31.3, 46, 750 }, + [34] = { 14.8, 29.9, 46, 750 }, + [35] = { 38.5, 29.8, 46, 750 }, + [36] = { 19.6, 28.1, 46, 750 }, + [37] = { 39.3, 28, 46, 750 }, + [38] = { 65.5, 26.2, 46, 750 }, + [39] = { 65.2, 25.8, 46, 750 }, + [40] = { 63.2, 25.5, 46, 750 }, + [41] = { 49.1, 99.4, 51, 750 }, + [42] = { 36.2, 77.9, 51, 750 }, + [43] = { 58.9, 76.9, 51, 750 }, + [44] = { 38.2, 76.8, 51, 750 }, + [45] = { 31.3, 74.7, 51, 750 }, + [46] = { 34.7, 74.6, 51, 750 }, + [47] = { 58.2, 73.5, 51, 750 }, + [48] = { 38.6, 73.3, 51, 750 }, + [49] = { 32.8, 70.5, 51, 750 }, + [50] = { 30.8, 63.7, 51, 750 }, + [51] = { 27.8, 63.1, 51, 750 }, + [52] = { 52.5, 62.5, 51, 750 }, + [53] = { 46.2, 61.1, 51, 750 }, + [54] = { 40.2, 57.8, 51, 750 }, + [55] = { 53.3, 54.2, 51, 750 }, + [56] = { 56.4, 52.8, 51, 750 }, + [57] = { 49.6, 51.5, 51, 750 }, + [58] = { 45.6, 47.5, 51, 750 }, + [59] = { 53.6, 47.1, 51, 750 }, + [60] = { 57.9, 45.4, 51, 750 }, + [61] = { 30.9, 43.6, 51, 750 }, + [62] = { 38.3, 40.8, 51, 750 }, + [63] = { 56.2, 39.5, 51, 750 }, + [64] = { 43.3, 39, 51, 750 }, + [65] = { 43.5, 34.4, 51, 750 }, + [66] = { 29.1, 26.8, 51, 750 }, + [67] = { 99.1, 73.2, 5581, 750 }, + [68] = { 97.7, 70.5, 5581, 750 }, + [69] = { 92.3, 61.6, 5581, 750 }, + [70] = { 91.3, 59.7, 5581, 750 }, + [71] = { 95.6, 58.1, 5581, 750 }, + [72] = { 98.8, 33, 5581, 750 }, + [73] = { 99.7, 8, 5581, 750 }, + }, + ["lvl"] = "1", + }, + [9701] = { + ["coords"] = { + [1] = { 39.2, 70.7, 1583, 25 }, + [2] = { 39.9, 70.6, 1583, 25 }, + [3] = { 41, 70.4, 1583, 25 }, + [4] = { 38.5, 70.4, 1583, 25 }, + [5] = { 40.3, 70.2, 1583, 25 }, + [6] = { 38.1, 70.1, 1583, 25 }, + [7] = { 39.1, 70.1, 1583, 25 }, + [8] = { 39.9, 69.7, 1583, 25 }, + [9] = { 40.3, 69.3, 1583, 25 }, + [10] = { 40.4, 69.3, 1583, 25 }, + [11] = { 40, 69.1, 1583, 25 }, + [12] = { 38.3, 65.3, 1583, 25 }, + [13] = { 37.8, 64.9, 1583, 25 }, + [14] = { 38.2, 64.9, 1583, 25 }, + [15] = { 37.6, 64.4, 1583, 25 }, + [16] = { 39.5, 64.3, 1583, 25 }, + [17] = { 40.3, 64.3, 1583, 25 }, + [18] = { 37.9, 64.2, 1583, 25 }, + [19] = { 38.5, 64.1, 1583, 25 }, + [20] = { 37.8, 64, 1583, 25 }, + [21] = { 40.6, 64, 1583, 25 }, + [22] = { 39.9, 63.9, 1583, 25 }, + [23] = { 41, 63.7, 1583, 25 }, + [24] = { 39.3, 63.5, 1583, 25 }, + [25] = { 38.3, 63.5, 1583, 25 }, + [26] = { 38.5, 63.3, 1583, 25 }, + [27] = { 40.2, 63.2, 1583, 25 }, + [28] = { 39.4, 63, 1583, 25 }, + [29] = { 39, 62.8, 1583, 25 }, + }, + ["lvl"] = "58", + }, + [9702] = "_", + [9703] = "_", + [9704] = "_", + [9716] = { + ["coords"] = { + [1] = { 53.3, 86.4, 1583, 18000 }, + [2] = { 55.5, 86.3, 1583, 18000 }, + [3] = { 53, 85.8, 1583, 18000 }, + [4] = { 48.3, 80.5, 1583, 18000 }, + [5] = { 37.4, 80.1, 1583, 18000 }, + [6] = { 37.8, 79.6, 1583, 18000 }, + [7] = { 34.4, 73.2, 1583, 18000 }, + [8] = { 33.8, 72.7, 1583, 18000 }, + [9] = { 38.1, 71.8, 1583, 18000 }, + [10] = { 40.2, 65.9, 1583, 18000 }, + [11] = { 36.8, 60.2, 1583, 18000 }, + [12] = { 40, 59.9, 1583, 18000 }, + }, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [9717] = { + ["coords"] = { + [1] = { 52.5, 86.3, 1583, 18000 }, + [2] = { 54.8, 86.2, 1583, 18000 }, + [3] = { 48.6, 79.8, 1583, 18000 }, + [4] = { 34.5, 72.4, 1583, 18000 }, + [5] = { 34.2, 69.7, 1583, 18000 }, + [6] = { 40.6, 66.5, 1583, 18000 }, + [7] = { 36.2, 65.6, 1583, 18000 }, + [8] = { 37.1, 60.7, 1583, 18000 }, + [9] = { 34.8, 60, 1583, 18000 }, + }, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [9718] = { + ["coords"] = { + [1] = { 34, 66.7, 1583, 604800 }, + }, + ["lvl"] = "59", + ["rnk"] = "2", + }, + [9736] = { + ["coords"] = { + [1] = { 52.9, 85.2, 1583, 604800 }, + }, + ["lvl"] = "59", + ["rnk"] = "1", + }, + [9796] = { + ["coords"] = { + [1] = { 42.7, 67.2, 14, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "8", + }, + [9816] = { + ["coords"] = { + [1] = { 30.3, 27.1, 1583, 604800 }, + }, + ["lvl"] = "60", + ["rnk"] = "3", + }, + [9817] = { + ["coords"] = { + [1] = { 42, 36.7, 1583, 18000 }, + [2] = { 48.5, 35.9, 1583, 18000 }, + [3] = { 39.6, 31.3, 1583, 18000 }, + [4] = { 34.6, 31, 1583, 18000 }, + [5] = { 40.2, 30.3, 1583, 18000 }, + [6] = { 34.5, 29.9, 1583, 18000 }, + [7] = { 30.6, 27.6, 1583, 18000 }, + [8] = { 33.8, 25.4, 1583, 18000 }, + [9] = { 34, 24.9, 1583, 18000 }, + [10] = { 40.3, 24.6, 1583, 18000 }, + [11] = { 29.5, 24.1, 1583, 18000 }, + [12] = { 29.1, 23.8, 1583, 18000 }, + [13] = { 42.6, 21.4, 1583, 18000 }, + [14] = { 42.2, 21.4, 1583, 18000 }, + [15] = { 31.2, 19.5, 1583, 18000 }, + [16] = { 39.3, 15, 1583, 18000 }, + [17] = { 30.3, 13.6, 1583, 18000 }, + [18] = { 34.7, 12.1, 1583, 18000 }, + [19] = { 35.8, 11.9, 1583, 18000 }, + }, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [9818] = { + ["coords"] = { + [1] = { 48.6, 36.4, 1583, 18000 }, + [2] = { 42.6, 36.3, 1583, 18000 }, + [3] = { 35.2, 30.9, 1583, 18000 }, + [4] = { 38.9, 30.3, 1583, 18000 }, + [5] = { 39.5, 29.3, 1583, 18000 }, + [6] = { 41.7, 25.9, 1583, 18000 }, + [7] = { 33.1, 25, 1583, 18000 }, + [8] = { 28.9, 24.5, 1583, 18000 }, + [9] = { 42.5, 21, 1583, 18000 }, + [10] = { 30.4, 19.5, 1583, 18000 }, + [11] = { 39.5, 15.5, 1583, 18000 }, + [12] = { 34.7, 13.6, 1583, 18000 }, + [13] = { 35.9, 13.5, 1583, 18000 }, + [14] = { 30.3, 12.9, 1583, 18000 }, + }, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [9819] = { + ["coords"] = { + [1] = { 43.3, 37.1, 1583, 18000 }, + [2] = { 42.6, 37, 1583, 18000 }, + [3] = { 49.3, 36.4, 1583, 18000 }, + [4] = { 48.1, 36, 1583, 18000 }, + [5] = { 42.8, 32.7, 1583, 18000 }, + [6] = { 34.4, 30.7, 1583, 18000 }, + [7] = { 34.2, 27.5, 1583, 18000 }, + [8] = { 34.7, 27.5, 1583, 18000 }, + [9] = { 34.4, 27.5, 1583, 18000 }, + [10] = { 31.9, 27.3, 1583, 18000 }, + [11] = { 32.2, 27.3, 1583, 18000 }, + [12] = { 32.5, 27.3, 1583, 18000 }, + [13] = { 29.6, 26.7, 1583, 18000 }, + [14] = { 29.3, 26.7, 1583, 18000 }, + [15] = { 41.2, 26.1, 1583, 18000 }, + [16] = { 34.2, 25.2, 1583, 18000 }, + [17] = { 41.7, 24.8, 1583, 18000 }, + [18] = { 30, 24.4, 1583, 18000 }, + [19] = { 37, 24.2, 1583, 18000 }, + [20] = { 36.7, 24.2, 1583, 18000 }, + [21] = { 37.4, 24.2, 1583, 18000 }, + [22] = { 28.6, 24, 1583, 18000 }, + [23] = { 33.7, 23, 1583, 18000 }, + [24] = { 33.4, 23, 1583, 18000 }, + [25] = { 33, 23, 1583, 18000 }, + [26] = { 42.3, 22.1, 1583, 18000 }, + [27] = { 42.6, 22, 1583, 18000 }, + [28] = { 31.7, 19.1, 1583, 18000 }, + [29] = { 31.7, 18.6, 1583, 18000 }, + [30] = { 30.1, 18.6, 1583, 18000 }, + [31] = { 39.1, 15.6, 1583, 18000 }, + [32] = { 38.9, 13.8, 1583, 18000 }, + [33] = { 31, 13.6, 1583, 18000 }, + [34] = { 31, 12.9, 1583, 18000 }, + }, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [9820] = "_", + [9837] = "_", + [9858] = { + ["coords"] = { + [1] = { 28.2, 76.3, 33, 300 }, + }, + ["lvl"] = "50", + }, + [9878] = { + ["coords"] = { + [1] = { 41.2, 43.7, 361, 300 }, + [2] = { 40.1, 43.4, 361, 300 }, + [3] = { 42.8, 41.4, 361, 300 }, + [4] = { 41.6, 41.4, 361, 300 }, + [5] = { 42.5, 41.2, 361, 300 }, + [6] = { 44.6, 41, 361, 300 }, + [7] = { 43.9, 40.8, 361, 300 }, + [8] = { 44.5, 40.4, 361, 300 }, + [9] = { 43.4, 40.4, 361, 300 }, + [10] = { 41.7, 40.2, 361, 300 }, + [11] = { 40.3, 39, 361, 300 }, + [12] = { 44.5, 38.6, 361, 300 }, + [13] = { 42.7, 38.2, 361, 300 }, + [14] = { 41.2, 37.8, 361, 300 }, + [15] = { 42, 37.7, 361, 300 }, + }, + ["lvl"] = "51-52", + }, + [9879] = { + ["coords"] = { + [1] = { 40.5, 42.2, 361, 300 }, + [2] = { 40.3, 41.2, 361, 300 }, + [3] = { 45.1, 41, 361, 300 }, + [4] = { 41, 39.7, 361, 300 }, + [5] = { 43.4, 38.8, 361, 300 }, + [6] = { 45.7, 38.6, 361, 300 }, + }, + ["lvl"] = "53-54", + }, + [9896] = "_", + [9938] = { + ["coords"] = { + [1] = { 77.3, 10.4, 1584, 604800 }, + }, + ["lvl"] = "57", + ["rnk"] = "1", + }, + [9939] = { + ["coords"] = { + [1] = { 29.8, 60.7, 876, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [9940] = { + ["coords"] = { + [1] = { 64.8, 34.3, 17, 300 }, + [2] = { 50.6, 17.8, 5121, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "20", + }, + [9941] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "23-24", + }, + [9947] = { + ["coords"] = { + [1] = { 53.7, 51.5, 876, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [9948] = { + ["coords"] = { + [1] = { 53.9, 49.9, 876, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [9956] = { + ["coords"] = { + [1] = { 65.7, 16.7, 1584, 25 }, + [2] = { 65.6, 16.4, 1584, 600 }, + [3] = { 67.4, 14.3, 1584, 600 }, + [4] = { 68.1, 10.7, 1584, 25 }, + [5] = { 70.7, 10.3, 1584, 600 }, + [6] = { 64.1, 10.3, 1584, 600 }, + [7] = { 68.8, 10.2, 1584, 600 }, + [8] = { 60.4, 10.2, 1584, 600 }, + [9] = { 64.5, 10.1, 1584, 25 }, + [10] = { 66.2, 10.1, 1584, 600 }, + [11] = { 61.4, 9.2, 1584, 600 }, + [12] = { 67.4, 6.4, 1584, 600 }, + [13] = { 63.1, 6.4, 1584, 600 }, + [14] = { 65.1, 4.4, 1584, 600 }, + [15] = { 65.4, 4, 1584, 25 }, + }, + ["lvl"] = "54-55", + }, + [9958] = { + ["coords"] = { + [1] = { 71.1, 73.3, 15, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [9977] = { + ["coords"] = { + [1] = { 42.6, 64.1, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [9985] = { + ["coords"] = { + [1] = { 52.3, 28.4, 440, 25 }, + }, + ["lvl"] = "30", + }, + [9989] = { + ["coords"] = { + [1] = { 34.6, 48.1, 38, 300 }, + [2] = { 16.3, 68.9, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [10000] = { + ["coords"] = { + [1] = { 75.2, 63.5, 209, 18000 }, + }, + ["lvl"] = "26", + ["rnk"] = "1", + }, + [10016] = { + ["coords"] = { + [1] = { 57.7, 87.3, 361, 300 }, + [2] = { 45.5, 87.3, 361, 300 }, + [3] = { 56.6, 87.1, 361, 300 }, + [4] = { 47.4, 86.2, 361, 300 }, + [5] = { 46.3, 86.2, 361, 300 }, + [6] = { 57.2, 85.5, 361, 300 }, + [7] = { 55.5, 84, 361, 300 }, + [8] = { 44.5, 77.7, 361, 300 }, + [9] = { 46.1, 75.9, 361, 300 }, + [10] = { 45.2, 73.1, 361, 300 }, + [11] = { 40.6, 72.7, 361, 300 }, + [12] = { 38.7, 71.8, 361, 300 }, + [13] = { 38.2, 68.3, 361, 300 }, + [14] = { 37.7, 67.9, 361, 300 }, + [15] = { 39, 67, 361, 300 }, + [16] = { 43.4, 65.1, 361, 300 }, + [17] = { 41.1, 56.8, 361, 300 }, + [18] = { 41.8, 53, 361, 300 }, + [19] = { 41.3, 49.8, 361, 300 }, + [20] = { 38.4, 42, 361, 300 }, + [21] = { 45.8, 41.3, 361, 300 }, + [22] = { 46.8, 39.7, 361, 300 }, + [23] = { 39.3, 37.1, 361, 300 }, + [24] = { 39.7, 30.7, 361, 300 }, + [25] = { 50, 30.2, 361, 300 }, + [26] = { 47.9, 28.8, 361, 300 }, + [27] = { 49.5, 28.6, 361, 300 }, + [28] = { 56.9, 25.3, 361, 300 }, + [29] = { 50.6, 21.8, 361, 300 }, + [30] = { 48.9, 20.4, 361, 300 }, + [31] = { 54.8, 18.9, 361, 300 }, + [32] = { 49.6, 18.2, 361, 300 }, + [33] = { 49.9, 17.1, 361, 300 }, + [34] = { 65, 15.6, 361, 300 }, + [35] = { 60, 15.3, 361, 300 }, + [36] = { 4.7, 7, 616, 300 }, + [37] = { 1, 4.5, 616, 300 }, + [38] = { 3.9, 4.2, 616, 300 }, + [39] = { 25.1, 42.2, 618, 300 }, + }, + ["lvl"] = "1", + }, + [10017] = { + ["coords"] = { + [1] = { 48, 85.5, 148, 300 }, + [2] = { 55.8, 27.4, 331, 300 }, + [3] = { 57.1, 27.3, 331, 300 }, + [4] = { 54.6, 26.2, 331, 300 }, + [5] = { 55, 25.9, 331, 300 }, + [6] = { 56.9, 24.9, 331, 300 }, + [7] = { 56.5, 24.5, 331, 300 }, + [8] = { 48, 93.4, 361, 300 }, + [9] = { 54.9, 91.6, 361, 300 }, + [10] = { 56.3, 91.5, 361, 300 }, + [11] = { 53.8, 90.4, 361, 300 }, + [12] = { 54.1, 90.1, 361, 300 }, + [13] = { 56.1, 89.2, 361, 300 }, + [14] = { 55.6, 88.8, 361, 300 }, + [15] = { 50.4, 88.4, 361, 300 }, + [16] = { 54.1, 88.3, 361, 300 }, + [17] = { 48.2, 87.8, 361, 300 }, + [18] = { 49.6, 87.8, 361, 300 }, + [19] = { 46.4, 87.3, 361, 300 }, + [20] = { 52, 86.4, 361, 300 }, + [21] = { 55, 86.1, 361, 300 }, + [22] = { 46.4, 86, 361, 300 }, + [23] = { 54.6, 84.4, 361, 300 }, + [24] = { 56.6, 84.1, 361, 300 }, + [25] = { 56.2, 83.8, 361, 300 }, + [26] = { 53.2, 83, 361, 300 }, + [27] = { 44.1, 82.9, 361, 300 }, + [28] = { 53.2, 82.7, 361, 300 }, + [29] = { 48.8, 82.4, 361, 300 }, + [30] = { 47.7, 81.6, 361, 300 }, + [31] = { 43.3, 81.5, 361, 300 }, + [32] = { 44.2, 81.4, 361, 300 }, + [33] = { 41.6, 81.3, 361, 300 }, + [34] = { 50.5, 81.2, 361, 300 }, + [35] = { 49.5, 80.8, 361, 300 }, + [36] = { 41.4, 80, 361, 300 }, + [37] = { 43.8, 79.3, 361, 300 }, + [38] = { 41.3, 78.1, 361, 300 }, + [39] = { 47.9, 77.5, 361, 300 }, + [40] = { 48.1, 77, 361, 300 }, + [41] = { 47.9, 76.4, 361, 300 }, + [42] = { 46.7, 76, 361, 300 }, + [43] = { 46.3, 75.9, 361, 300 }, + [44] = { 41.8, 75.7, 361, 300 }, + [45] = { 42.1, 75.6, 361, 300 }, + [46] = { 46.3, 75.6, 361, 300 }, + [47] = { 48, 75.5, 361, 300 }, + [48] = { 37.5, 75, 361, 300 }, + [49] = { 47.7, 74.2, 361, 300 }, + [50] = { 38.6, 72.4, 361, 300 }, + [51] = { 40.3, 69.7, 361, 300 }, + [52] = { 44.8, 69.3, 361, 300 }, + [53] = { 43.6, 67.8, 361, 300 }, + [54] = { 37.1, 67.2, 361, 300 }, + [55] = { 32.1, 66, 361, 300 }, + [56] = { 43, 64.9, 361, 300 }, + [57] = { 41.6, 62.3, 361, 300 }, + [58] = { 41, 60.9, 361, 300 }, + [59] = { 41.8, 59, 361, 300 }, + [60] = { 41.8, 58.5, 361, 300 }, + [61] = { 38.7, 56.8, 361, 300 }, + [62] = { 39.8, 53.4, 361, 300 }, + [63] = { 43.7, 48.3, 361, 300 }, + [64] = { 38, 48.1, 361, 300 }, + [65] = { 44.8, 46.6, 361, 300 }, + [66] = { 37.9, 44.9, 361, 300 }, + [67] = { 44.2, 44.8, 361, 300 }, + [68] = { 45.3, 42.9, 361, 300 }, + [69] = { 46.4, 40.3, 361, 300 }, + [70] = { 38.3, 39.4, 361, 300 }, + [71] = { 37.6, 38.8, 361, 300 }, + [72] = { 48.6, 37.8, 361, 300 }, + [73] = { 41.4, 37.6, 361, 300 }, + [74] = { 49.7, 35.1, 361, 300 }, + [75] = { 41.5, 35, 361, 300 }, + [76] = { 49.2, 32.8, 361, 300 }, + [77] = { 39.6, 32.7, 361, 300 }, + [78] = { 51, 32.2, 361, 300 }, + [79] = { 40.4, 31.6, 361, 300 }, + [80] = { 41.8, 31.3, 361, 300 }, + [81] = { 49.6, 30.9, 361, 300 }, + [82] = { 50.6, 30.5, 361, 300 }, + [83] = { 40.8, 30.2, 361, 300 }, + [84] = { 48.3, 29.5, 361, 300 }, + [85] = { 40.9, 28.1, 361, 300 }, + [86] = { 54.1, 28.1, 361, 300 }, + [87] = { 53.6, 27.5, 361, 300 }, + [88] = { 40.8, 27.5, 361, 300 }, + [89] = { 56.2, 27.3, 361, 300 }, + [90] = { 47.8, 26.1, 361, 300 }, + [91] = { 53.9, 25.8, 361, 300 }, + [92] = { 55.1, 24.1, 361, 300 }, + [93] = { 46.1, 23.9, 361, 300 }, + [94] = { 45, 23.7, 361, 300 }, + [95] = { 43.2, 22.9, 361, 300 }, + [96] = { 47.3, 22.8, 361, 300 }, + [97] = { 44.4, 22.2, 361, 300 }, + [98] = { 56.6, 21.9, 361, 300 }, + [99] = { 55.7, 20.3, 361, 300 }, + [100] = { 48.8, 20.1, 361, 300 }, + [101] = { 62.3, 19.2, 361, 300 }, + [102] = { 57.5, 18.7, 361, 300 }, + [103] = { 64.2, 18.5, 361, 300 }, + [104] = { 43, 17.4, 361, 300 }, + [105] = { 62.3, 17.2, 361, 300 }, + [106] = { 58, 17.1, 361, 300 }, + [107] = { 62.7, 16.4, 361, 300 }, + [108] = { 53.2, 16.1, 361, 300 }, + [109] = { 52.8, 16.1, 361, 300 }, + [110] = { 50.4, 15.8, 361, 300 }, + [111] = { 46.4, 15.1, 361, 300 }, + [112] = { 45, 13.7, 361, 300 }, + [113] = { 61.5, 13.7, 361, 300 }, + [114] = { 55.5, 11.1, 361, 300 }, + [115] = { 56.3, 9, 361, 300 }, + [116] = { 63.7, 8.9, 361, 300 }, + [117] = { 60.4, 8.5, 361, 300 }, + [118] = { 56.1, 7.3, 361, 300 }, + [119] = { 60.4, 6.1, 361, 300 }, + [120] = { 0.6, 98.9, 616, 300 }, + [121] = { 5.6, 98.3, 616, 300 }, + [122] = { 3.9, 97.5, 616, 300 }, + [123] = { 1, 91.6, 616, 300 }, + [124] = { 1.4, 90.7, 616, 300 }, + [125] = { 1, 89.7, 616, 300 }, + [126] = { 1.1, 88, 616, 300 }, + [127] = { 0.7, 85.8, 616, 300 }, + [128] = { 2.2, 20.5, 616, 300 }, + [129] = { 4.2, 15.7, 616, 300 }, + [130] = { 3.3, 11.7, 616, 300 }, + [131] = { 6.6, 10.5, 616, 300 }, + [132] = { 4.1, 8.1, 616, 300 }, + [133] = { 5.9, 7.6, 616, 300 }, + [134] = { 1.8, 5.7, 616, 300 }, + [135] = { 12.2, 3.2, 616, 300 }, + [136] = { 11.2, 2.2, 616, 300 }, + [137] = { 16, 1.8, 616, 300 }, + }, + ["lvl"] = "1", + }, + [10036] = { + ["coords"] = { + [1] = { 36.2, 32.6, 15, 360 }, + [2] = { 35.4, 32.5, 15, 360 }, + [3] = { 36.9, 31.9, 15, 360 }, + [4] = { 37.6, 31.8, 15, 360 }, + [5] = { 37.6, 31.5, 15, 360 }, + [6] = { 35.4, 31.3, 15, 360 }, + [7] = { 34.4, 30.9, 15, 360 }, + [8] = { 35.4, 30.6, 15, 360 }, + [9] = { 34.4, 30.5, 15, 360 }, + [10] = { 35.1, 30.4, 15, 360 }, + [11] = { 35.8, 30.4, 15, 360 }, + [12] = { 35.2, 30.2, 15, 360 }, + [13] = { 35.9, 30.1, 15, 360 }, + [14] = { 36.3, 30, 15, 360 }, + [15] = { 35, 29.2, 15, 360 }, + [16] = { 35.2, 29.1, 15, 360 }, + [17] = { 54.3, 70.8, 17, 360 }, + [18] = { 53.8, 70.8, 17, 360 }, + [19] = { 54.6, 70.5, 17, 360 }, + [20] = { 55, 70.5, 17, 360 }, + [21] = { 55, 70.3, 17, 360 }, + [22] = { 53.8, 70.2, 17, 360 }, + [23] = { 53.3, 70, 17, 360 }, + [24] = { 53.9, 69.8, 17, 360 }, + [25] = { 53.3, 69.8, 17, 360 }, + [26] = { 53.7, 69.7, 17, 360 }, + [27] = { 54.1, 69.7, 17, 360 }, + [28] = { 53.7, 69.6, 17, 360 }, + [29] = { 54.1, 69.6, 17, 360 }, + [30] = { 54.3, 69.5, 17, 360 }, + [31] = { 53.7, 69.1, 17, 360 }, + [32] = { 53.7, 69, 17, 360 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [10038] = { + ["coords"] = { + [1] = { 75.1, 48, 10, 300 }, + [2] = { 75.3, 45.4, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [10043] = { + ["coords"] = { + [1] = { 52.9, 51.1, 1584, 604800 }, + [2] = { 52.7, 50.9, 1584, 604800 }, + [3] = { 52.8, 50.7, 1584, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "48-52", + ["rnk"] = "1", + }, + [10044] = "_", + [10048] = { + ["coords"] = { + [1] = { 50.6, 62.9, 406, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [10077] = { + ["coords"] = { + [1] = { 86.6, 49.6, 46, 27000 }, + }, + ["lvl"] = "53", + ["rnk"] = "4", + }, + [10078] = { + ["coords"] = { + [1] = { 46.7, 43.4, 46, 108000 }, + }, + ["lvl"] = "55", + ["rnk"] = "4", + }, + [10079] = { + ["coords"] = { + [1] = { 44.2, 92.2, 17, 300 }, + [2] = { 32.2, 22.2, 400, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [10080] = { + ["coords"] = { + [1] = { 52.4, 42.3, 1176, 604800 }, + }, + ["lvl"] = "45", + ["rnk"] = "2", + }, + [10082] = { + ["coords"] = { + [1] = { 53.8, 37.3, 1176, 604800 }, + }, + ["lvl"] = "45", + ["rnk"] = "2", + }, + [10083] = { + ["coords"] = { + [1] = { 36.3, 38.2, 1583, 18000 }, + [2] = { 33.7, 37.2, 1583, 18000 }, + [3] = { 38.6, 34.1, 1583, 18000 }, + [4] = { 36.1, 28.6, 1583, 18000 }, + [5] = { 36.8, 28.5, 1583, 18000 }, + [6] = { 45.7, 27.5, 1583, 18000 }, + [7] = { 39.8, 27.4, 1583, 18000 }, + [8] = { 42.6, 26, 1583, 18000 }, + [9] = { 45.6, 24.2, 1583, 18000 }, + [10] = { 39.9, 24.2, 1583, 18000 }, + }, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [10084] = "_", + [10116] = { + ["coords"] = { + [1] = { 44.7, 82.8, 1584, 18000 }, + [2] = { 44.8, 82.8, 1584, 18000 }, + [3] = { 56.6, 80.9, 5103, 18000 }, + [4] = { 54.4, 65.1, 5601, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [10117] = { + ["coords"] = { + [1] = { 52.2, 98.4, 1584, 18000 }, + [2] = { 54.6, 93.3, 1584, 18000 }, + [3] = { 49.2, 84.3, 1584, 18000 }, + [4] = { 47.1, 81.5, 1584, 18000 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [10118] = { + ["coords"] = { + [1] = { 56.3, 92.4, 141, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [10119] = { + ["coords"] = { + [1] = { 74.3, 37.8, 46, 27000 }, + }, + ["lvl"] = "60", + ["rnk"] = "2", + }, + [10120] = { + ["coords"] = { + [1] = { 44.1, 26.2, 1337, 18000 }, + [2] = { 44.9, 25.6, 1337, 18000 }, + [3] = { 38.4, 19, 1337, 18000 }, + [4] = { 44.8, 14.6, 1337, 18000 }, + }, + ["fac"] = "AH", + ["lvl"] = "45", + ["rnk"] = "1", + }, + [10136] = { + ["coords"] = { + [1] = { 72.2, 9.2, 130, 30 }, + [2] = { 47.5, 73.3, 1497, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [10156] = "_", + [10159] = { + ["coords"] = { + [1] = { 43.6, 53.4, 148, 413 }, + [2] = { 42, 52.3, 148, 413 }, + [3] = { 42.8, 52.2, 148, 413 }, + [4] = { 42.7, 49.8, 148, 413 }, + [5] = { 42.2, 49.4, 148, 413 }, + [6] = { 43.1, 47.7, 148, 413 }, + [7] = { 43.7, 46.8, 148, 413 }, + [8] = { 42.2, 46.1, 148, 413 }, + [9] = { 43, 45.5, 148, 413 }, + [10] = { 42.7, 45.4, 148, 413 }, + [11] = { 43.6, 45.4, 148, 413 }, + [12] = { 44, 45, 148, 413 }, + }, + ["lvl"] = "11-12", + }, + [10160] = { + ["coords"] = { + [1] = { 45.1, 54.6, 148, 413 }, + [2] = { 44.7, 53.9, 148, 413 }, + [3] = { 45.2, 52.6, 148, 413 }, + [4] = { 45.6, 51.9, 148, 413 }, + [5] = { 44.2, 50.9, 148, 413 }, + [6] = { 45.2, 50.6, 148, 413 }, + [7] = { 45.1, 49.2, 148, 413 }, + [8] = { 46.2, 49.2, 148, 413 }, + [9] = { 47.2, 48.7, 148, 413 }, + [10] = { 47.3, 48.5, 148, 413 }, + [11] = { 47.1, 48.2, 148, 413 }, + [12] = { 46.6, 48.2, 148, 413 }, + [13] = { 44.3, 47.9, 148, 413 }, + [14] = { 46, 47.5, 148, 413 }, + [15] = { 44.8, 47.3, 148, 413 }, + [16] = { 46.7, 46.8, 148, 413 }, + [17] = { 45.8, 46.6, 148, 413 }, + [18] = { 45.1, 46.1, 148, 413 }, + [19] = { 45.6, 45.6, 148, 413 }, + [20] = { 44.5, 45.6, 148, 413 }, + [21] = { 47.2, 44.8, 148, 413 }, + [22] = { 45.3, 44.8, 148, 413 }, + }, + ["lvl"] = "12-14", + }, + [10162] = { + ["coords"] = { + [1] = { 51.3, 23.9, 1583, 604800 }, + [2] = { 83.6, 58.3, 2677, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [10176] = { + ["coords"] = { + [1] = { 43.3, 68.5, 14, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [10182] = { + ["coords"] = { + [1] = { 53.4, 6.8, 405, 550 }, + [2] = { 35.1, 79.6, 406, 550 }, + }, + ["fac"] = "H", + ["lvl"] = "62", + ["rnk"] = "1", + }, + [10184] = { + ["coords"] = { + [1] = { 66.9, 30.3, 2159, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [10196] = { + ["coords"] = { + [1] = { 55.3, 49.8, 618, 54000 }, + }, + ["lvl"] = "56-57", + ["rnk"] = "2", + }, + [10197] = { + ["coords"] = { + [1] = { 45, 37.4, 618, 27000 }, + }, + ["lvl"] = "55", + ["rnk"] = "2", + }, + [10198] = { + ["coords"] = { + [1] = { 63.4, 70.2, 618, 108000 }, + }, + ["lvl"] = "60", + ["rnk"] = "2", + }, + [10199] = { + ["coords"] = { + [1] = { 66.9, 35.6, 618, 27000 }, + }, + ["lvl"] = "59", + ["rnk"] = "2", + }, + [10200] = { + ["coords"] = { + [1] = { 51.1, 10.7, 618, 54000 }, + }, + ["lvl"] = "57", + ["rnk"] = "2", + }, + [10201] = { + ["coords"] = { + [1] = { 65, 80.3, 618, 180000 }, + }, + ["lvl"] = "61", + ["rnk"] = "2", + }, + [10202] = { + ["coords"] = { + [1] = { 66.5, 53.1, 618, 108000 }, + }, + ["lvl"] = "59", + ["rnk"] = "2", + }, + [10203] = "_", + [10204] = { + ["coords"] = { + [1] = { 53.4, 6.8, 405, 550 }, + [2] = { 35.2, 79.6, 406, 550 }, + }, + ["fac"] = "H", + ["lvl"] = "62", + ["rnk"] = "1", + }, + [10216] = { + ["coords"] = { + [1] = { 36.1, 44.9, 148, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [10219] = { + ["coords"] = { + [1] = { 36.6, 45.6, 148, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "21", + }, + [10220] = { + ["coords"] = { + [1] = { 39.3, 84.3, 1583, 604800 }, + }, + ["lvl"] = "59", + ["rnk"] = "1", + }, + [10221] = { + ["coords"] = { + [1] = { 37.4, 84.6, 1583, 3600 }, + [2] = { 37.9, 84.5, 1583, 3600 }, + [3] = { 37, 84.2, 1583, 3600 }, + [4] = { 38.7, 84.2, 1583, 3600 }, + [5] = { 37.6, 83.9, 1583, 3600 }, + [6] = { 38.1, 83.8, 1583, 3600 }, + [7] = { 36.6, 83.6, 1583, 3600 }, + [8] = { 39.4, 83.5, 1583, 3600 }, + [9] = { 37.2, 83.4, 1583, 3600 }, + [10] = { 36.9, 82.9, 1583, 3600 }, + [11] = { 34.2, 67.3, 1583, 3600 }, + [12] = { 34.4, 66.6, 1583, 3600 }, + }, + ["lvl"] = "52-53", + }, + [10236] = "_", + [10237] = "_", + [10238] = "_", + [10239] = "_", + [10256] = "_", + [10257] = { + ["coords"] = { + [1] = { 63.1, 53, 1583, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "58", + ["rnk"] = "1", + }, + [10265] = "_", + [10291] = "_", + [10292] = "_", + [10294] = "_", + [10295] = "_", + [10297] = "_", + [10298] = "_", + [10299] = { + ["coords"] = { + [1] = { 46.2, 41.9, 1583, 18000 }, + }, + ["lvl"] = "54-55", + ["rnk"] = "1", + }, + [10303] = { + ["coords"] = { + [1] = { 61.9, 38.4, 618, 333 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [10304] = { + ["coords"] = { + [1] = { 53.5, 22, 139, 345 }, + }, + ["fac"] = "AH", + ["lvl"] = "62", + }, + [10307] = { + ["coords"] = { + [1] = { 61.9, 38.3, 618, 333 }, + }, + ["lvl"] = "55", + }, + [10316] = { + ["coords"] = { + [1] = { 32, 29.6, 1583, 604800 }, + [2] = { 28.7, 29.5, 1583, 604800 }, + [3] = { 30.4, 29.5, 1583, 604800 }, + [4] = { 28.7, 27.1, 1583, 604800 }, + [5] = { 30.4, 24.6, 1583, 604800 }, + [6] = { 28.7, 24.6, 1583, 604800 }, + [7] = { 32.1, 24.6, 1583, 604800 }, + }, + ["lvl"] = "59-60", + }, + [10317] = { + ["coords"] = { + [1] = { 31, 54.1, 1583, 18000 }, + [2] = { 29.6, 52.4, 1583, 18000 }, + [3] = { 40.9, 52.3, 1583, 18000 }, + [4] = { 53.6, 49.5, 1583, 18000 }, + [5] = { 54.1, 46.8, 1583, 18000 }, + [6] = { 44.7, 46.5, 1583, 18000 }, + [7] = { 53.9, 46.4, 1583, 18000 }, + [8] = { 54.1, 45.9, 1583, 18000 }, + [9] = { 56.7, 45.7, 1583, 18000 }, + [10] = { 57, 45.4, 1583, 18000 }, + [11] = { 51.9, 45, 1583, 18000 }, + [12] = { 55.3, 35, 1583, 18000 }, + [13] = { 34.4, 27, 1583, 18000 }, + [14] = { 32.2, 26.7, 1583, 18000 }, + [15] = { 37, 24.7, 1583, 18000 }, + [16] = { 33.4, 23.7, 1583, 18000 }, + }, + ["lvl"] = "60-61", + ["rnk"] = "1", + }, + [10318] = { + ["coords"] = { + [1] = { 32.3, 49.6, 1583, 18000 }, + [2] = { 55.8, 49.4, 1583, 18000 }, + [3] = { 52.5, 49.3, 1583, 18000 }, + [4] = { 56.3, 48.9, 1583, 18000 }, + [5] = { 56.8, 46.5, 1583, 18000 }, + [6] = { 38.7, 46.3, 1583, 18000 }, + [7] = { 38.8, 45.2, 1583, 18000 }, + [8] = { 44.7, 45, 1583, 18000 }, + [9] = { 52.3, 44.6, 1583, 18000 }, + [10] = { 55.3, 34.5, 1583, 18000 }, + [11] = { 54.7, 22.5, 1583, 18000 }, + }, + ["lvl"] = "60-61", + ["rnk"] = "1", + }, + [10319] = { + ["coords"] = { + [1] = { 39.3, 54.6, 1583, 18000 }, + [2] = { 39.7, 52.9, 1583, 18000 }, + [3] = { 30.4, 52.3, 1583, 18000 }, + [4] = { 31.7, 50.7, 1583, 18000 }, + [5] = { 31.7, 49.6, 1583, 18000 }, + [6] = { 53, 49.5, 1583, 18000 }, + [7] = { 50, 46.8, 1583, 18000 }, + [8] = { 44.2, 46.3, 1583, 18000 }, + [9] = { 41, 45.6, 1583, 18000 }, + [10] = { 53.3, 45.5, 1583, 18000 }, + [11] = { 44.2, 45.2, 1583, 18000 }, + [12] = { 50, 44.7, 1583, 18000 }, + [13] = { 38.5, 44.6, 1583, 18000 }, + [14] = { 54.4, 30.8, 1583, 18000 }, + [15] = { 55.1, 30.8, 1583, 18000 }, + [16] = { 55.1, 22.9, 1583, 18000 }, + [17] = { 54.4, 22.9, 1583, 18000 }, + }, + ["lvl"] = "60-61", + ["rnk"] = "1", + }, + [10339] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "3", + }, + [10356] = { + ["coords"] = { + [1] = { 45.6, 47.5, 85, 7200 }, + }, + ["lvl"] = "10", + ["rnk"] = "4", + }, + [10357] = { + ["coords"] = { + [1] = { 42.9, 67.6, 85, 9000 }, + }, + ["lvl"] = "11", + ["rnk"] = "4", + }, + [10358] = { + ["coords"] = { + [1] = { 75, 60.5, 85, 9000 }, + }, + ["lvl"] = "12", + ["rnk"] = "4", + }, + [10359] = { + ["coords"] = { + [1] = { 88.2, 51.4, 85, 9000 }, + }, + ["lvl"] = "13", + ["rnk"] = "4", + }, + [10362] = "_", + [10363] = { + ["coords"] = { + [1] = { 33.4, 45.6, 1583, 604800 }, + }, + ["lvl"] = "62", + ["rnk"] = "3", + }, + [10365] = "_", + [10366] = { + ["coords"] = { + [1] = { 32.2, 51, 1583, 18000 }, + [2] = { 56.2, 50, 1583, 18000 }, + [3] = { 56.6, 49.6, 1583, 18000 }, + [4] = { 49.3, 46.8, 1583, 18000 }, + [5] = { 57.3, 46.3, 1583, 18000 }, + [6] = { 49.3, 44.7, 1583, 18000 }, + [7] = { 51.7, 43.9, 1583, 18000 }, + [8] = { 56.7, 35.8, 1583, 18000 }, + }, + ["lvl"] = "60-61", + ["rnk"] = "1", + }, + [10368] = "_", + [10371] = { + ["coords"] = { + [1] = { 30.5, 53.7, 1583, 18000 }, + [2] = { 40.7, 53.3, 1583, 18000 }, + [3] = { 32.3, 50.1, 1583, 18000 }, + [4] = { 52, 50, 1583, 18000 }, + [5] = { 38.1, 45.7, 1583, 18000 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [10372] = { + ["coords"] = { + [1] = { 40, 54.1, 1583, 18000 }, + [2] = { 29.9, 53, 1583, 18000 }, + [3] = { 53.1, 50.4, 1583, 18000 }, + [4] = { 51.9, 48.9, 1583, 18000 }, + [5] = { 38.1, 47, 1583, 18000 }, + [6] = { 54.5, 46.4, 1583, 18000 }, + [7] = { 55.4, 36.5, 1583, 18000 }, + }, + ["lvl"] = "60-61", + ["rnk"] = "1", + }, + [10374] = { + ["coords"] = { + [1] = { 61.9, 76.3, 1583, 18000 }, + [2] = { 55.1, 75.7, 1583, 18000 }, + [3] = { 62.5, 75, 1583, 18000 }, + [4] = { 54.1, 74.9, 1583, 18000 }, + [5] = { 59.9, 73, 1583, 18000 }, + [6] = { 62.8, 71.1, 1583, 18000 }, + [7] = { 64.1, 70, 1583, 18000 }, + }, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [10375] = { + ["coords"] = { + [1] = { 62.6, 76.4, 1583, 18000 }, + [2] = { 56.1, 75.9, 1583, 18000 }, + [3] = { 54.6, 75.6, 1583, 18000 }, + [4] = { 61.8, 75.4, 1583, 18000 }, + [5] = { 61.2, 75, 1583, 18000 }, + [6] = { 55.7, 74.8, 1583, 18000 }, + [7] = { 54.7, 74.6, 1583, 18000 }, + [8] = { 61.9, 74.4, 1583, 18000 }, + [9] = { 63.6, 71.2, 1583, 18000 }, + [10] = { 63.4, 70.1, 1583, 18000 }, + [11] = { 63, 69.2, 1583, 18000 }, + [12] = { 63.7, 69, 1583, 18000 }, + [13] = { 54.1, 74.9, 1583, 604800 }, + }, + ["lvl"] = "55-56", + }, + [10376] = { + ["coords"] = { + [1] = { 54.1, 74.9, 1583, 604800 }, + }, + ["lvl"] = "60", + ["rnk"] = "2", + }, + [10377] = { + ["coords"] = { + [1] = { 44.9, 48.9, 400, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "28", + ["rnk"] = "1", + }, + [10378] = { + ["coords"] = { + [1] = { 44.4, 59.2, 17, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [10381] = { + ["coords"] = { + [1] = { 62.5, 89.5, 2017, 18000 }, + [2] = { 55.7, 87.3, 2017, 18000 }, + [3] = { 56.2, 86.9, 2017, 18000 }, + [4] = { 56.4, 86.5, 2017, 18000 }, + [5] = { 62.3, 83.4, 2017, 18000 }, + [6] = { 59.3, 79, 2017, 18000 }, + [7] = { 66.3, 78.8, 2017, 18000 }, + [8] = { 63, 78.1, 2017, 18000 }, + [9] = { 56.8, 76.4, 2017, 18000 }, + [10] = { 57.3, 75, 2017, 18000 }, + [11] = { 70.3, 71.7, 2017, 18000 }, + [12] = { 72.1, 69.8, 2017, 18000 }, + [13] = { 74.8, 67.7, 2017, 18000 }, + [14] = { 74.8, 66.9, 2017, 18000 }, + [15] = { 84.1, 66.8, 2017, 18000 }, + [16] = { 74.4, 66.5, 2017, 18000 }, + [17] = { 84.6, 65, 2017, 18000 }, + [18] = { 71.8, 64.1, 2017, 18000 }, + [19] = { 72.4, 63.6, 2017, 18000 }, + [20] = { 73.7, 62.9, 2017, 18000 }, + [21] = { 81.1, 61, 2017, 18000 }, + [22] = { 60.6, 60.9, 2017, 18000 }, + [23] = { 55, 60.9, 2017, 18000 }, + [24] = { 72.2, 60.5, 2017, 18000 }, + [25] = { 55.3, 60.4, 2017, 18000 }, + [26] = { 63.6, 60.2, 2017, 18000 }, + [27] = { 63.2, 60.1, 2017, 18000 }, + [28] = { 63.3, 58.6, 2017, 18000 }, + [29] = { 82.7, 57.4, 2017, 18000 }, + [30] = { 52, 54.1, 2017, 18000 }, + }, + ["lvl"] = "56-57", + ["rnk"] = "1", + }, + [10382] = { + ["coords"] = { + [1] = { 63.4, 89.8, 2017, 18000 }, + [2] = { 62.6, 85.9, 2017, 18000 }, + [3] = { 62.1, 85.9, 2017, 18000 }, + [4] = { 61.7, 85.8, 2017, 18000 }, + [5] = { 63.1, 83.6, 2017, 18000 }, + [6] = { 57.7, 83.2, 2017, 18000 }, + [7] = { 56.8, 82.9, 2017, 18000 }, + [8] = { 63.1, 82.2, 2017, 18000 }, + [9] = { 57.1, 82.1, 2017, 18000 }, + [10] = { 59.5, 79.7, 2017, 18000 }, + [11] = { 65.7, 78.7, 2017, 18000 }, + [12] = { 62.6, 78.3, 2017, 18000 }, + [13] = { 66, 77.7, 2017, 18000 }, + [14] = { 61.6, 77.1, 2017, 18000 }, + [15] = { 57.7, 76.1, 2017, 18000 }, + [16] = { 59.6, 75.3, 2017, 18000 }, + [17] = { 59.3, 74.6, 2017, 18000 }, + [18] = { 59.7, 74.1, 2017, 18000 }, + [19] = { 71, 71.9, 2017, 18000 }, + [20] = { 72.3, 69, 2017, 18000 }, + [21] = { 72, 67.4, 2017, 18000 }, + [22] = { 83.4, 65.7, 2017, 18000 }, + [23] = { 57.4, 63.9, 2017, 18000 }, + [24] = { 57.3, 63.2, 2017, 18000 }, + [25] = { 58.1, 62.8, 2017, 18000 }, + [26] = { 60.7, 62.8, 2017, 18000 }, + [27] = { 61.3, 62, 2017, 18000 }, + [28] = { 54.3, 61.4, 2017, 18000 }, + [29] = { 80.5, 61, 2017, 18000 }, + [30] = { 81.7, 60.1, 2017, 18000 }, + [31] = { 71.8, 59.8, 2017, 18000 }, + [32] = { 72.1, 58.9, 2017, 18000 }, + [33] = { 80.8, 56.8, 2017, 18000 }, + [34] = { 52.5, 55.5, 2017, 18000 }, + [35] = { 52.9, 54.3, 2017, 18000 }, + }, + ["lvl"] = "55-56", + ["rnk"] = "1", + }, + [10384] = { + ["coords"] = { + [1] = { 55.9, 86.5, 2017, 18000 }, + [2] = { 55.3, 86.3, 2017, 18000 }, + [3] = { 62.4, 86.1, 2017, 18000 }, + [4] = { 60.3, 80.5, 2017, 18000 }, + [5] = { 60, 80.2, 2017, 18000 }, + [6] = { 58.9, 63.5, 2017, 18000 }, + [7] = { 52.7, 62.5, 2017, 18000 }, + [8] = { 52.4, 62.5, 2017, 18000 }, + [9] = { 58.1, 60.8, 2017, 18000 }, + [10] = { 62.2, 59.2, 2017, 18000 }, + [11] = { 62, 59, 2017, 18000 }, + [12] = { 64.9, 58.2, 2017, 18000 }, + [13] = { 70.9, 57, 2017, 18000 }, + }, + ["lvl"] = "55-56", + ["rnk"] = "1", + }, + [10385] = { + ["coords"] = { + [1] = { 61.1, 87.7, 2017, 18000 }, + [2] = { 66.7, 79.7, 2017, 18000 }, + [3] = { 66.5, 79.5, 2017, 18000 }, + [4] = { 75.7, 68.1, 2017, 18000 }, + [5] = { 75.6, 67.7, 2017, 18000 }, + [6] = { 71.5, 66.2, 2017, 18000 }, + [7] = { 60.3, 64.2, 2017, 18000 }, + [8] = { 52.7, 62.5, 2017, 18000 }, + [9] = { 62.2, 59.2, 2017, 18000 }, + [10] = { 62, 59, 2017, 18000 }, + [11] = { 70.9, 55.5, 2017, 18000 }, + [12] = { 71.4, 54.6, 2017, 18000 }, + }, + ["lvl"] = "56-57", + ["rnk"] = "1", + }, + [10390] = { + ["coords"] = { + [1] = { 62.1, 93.5, 2017, 18000 }, + [2] = { 62.4, 92.9, 2017, 18000 }, + [3] = { 62.2, 92.1, 2017, 18000 }, + [4] = { 63.6, 90.1, 2017, 18000 }, + [5] = { 63, 89.6, 2017, 18000 }, + [6] = { 63.1, 89, 2017, 18000 }, + [7] = { 61.8, 86.8, 2017, 18000 }, + [8] = { 55.7, 86.1, 2017, 18000 }, + [9] = { 62.1, 85.9, 2017, 18000 }, + [10] = { 55.3, 85.3, 2017, 18000 }, + [11] = { 57, 83.2, 2017, 18000 }, + [12] = { 57.2, 82.6, 2017, 18000 }, + [13] = { 62.1, 82.5, 2017, 18000 }, + [14] = { 62.1, 82.4, 2017, 18000 }, + [15] = { 65.5, 79.5, 2017, 18000 }, + [16] = { 60, 79.5, 2017, 18000 }, + [17] = { 60, 78.9, 2017, 18000 }, + [18] = { 59.1, 78.4, 2017, 18000 }, + [19] = { 66.4, 78, 2017, 18000 }, + [20] = { 31.6, 77.7, 2017, 18000 }, + [21] = { 36.4, 77.7, 2017, 18000 }, + [22] = { 63, 77.6, 2017, 18000 }, + [23] = { 31.9, 77.5, 2017, 18000 }, + [24] = { 57.3, 77.5, 2017, 18000 }, + [25] = { 61.7, 77.5, 2017, 18000 }, + [26] = { 36.2, 77.5, 2017, 18000 }, + [27] = { 56.6, 77.1, 2017, 18000 }, + [28] = { 31.6, 76.8, 2017, 18000 }, + [29] = { 60.1, 76, 2017, 18000 }, + [30] = { 59.7, 75.9, 2017, 18000 }, + [31] = { 69.7, 73.4, 2017, 18000 }, + [32] = { 70.5, 72.6, 2017, 18000 }, + [33] = { 71.3, 72.4, 2017, 18000 }, + [34] = { 74.3, 68.8, 2017, 18000 }, + [35] = { 73.8, 68.7, 2017, 18000 }, + [36] = { 71.5, 68.5, 2017, 18000 }, + [37] = { 72, 67.9, 2017, 18000 }, + [38] = { 45.1, 66.9, 2017, 18000 }, + [39] = { 41.5, 66.3, 2017, 18000 }, + [40] = { 85, 66.2, 2017, 18000 }, + [41] = { 41.7, 66, 2017, 18000 }, + [42] = { 41.6, 65.9, 2017, 18000 }, + [43] = { 84.2, 65.7, 2017, 18000 }, + [44] = { 72.9, 64.1, 2017, 18000 }, + [45] = { 73, 63.7, 2017, 18000 }, + [46] = { 58.2, 63.6, 2017, 18000 }, + [47] = { 57.6, 62.9, 2017, 18000 }, + [48] = { 60.1, 62.5, 2017, 18000 }, + [49] = { 61.1, 61.2, 2017, 18000 }, + [50] = { 55.6, 61.1, 2017, 18000 }, + [51] = { 43.5, 60.4, 2017, 18000 }, + [52] = { 56, 60.3, 2017, 18000 }, + [53] = { 80.6, 60, 2017, 18000 }, + [54] = { 81, 59.9, 2017, 18000 }, + [55] = { 63.1, 59.6, 2017, 18000 }, + [56] = { 71.1, 59.4, 2017, 18000 }, + [57] = { 63.9, 59, 2017, 18000 }, + [58] = { 71.7, 58.9, 2017, 18000 }, + [59] = { 82.6, 58.3, 2017, 18000 }, + [60] = { 82.1, 58.1, 2017, 18000 }, + [61] = { 81.4, 56.7, 2017, 18000 }, + [62] = { 52.1, 54.9, 2017, 18000 }, + [63] = { 52.6, 54.1, 2017, 18000 }, + }, + ["lvl"] = "55-56", + }, + [10391] = { + ["coords"] = { + [1] = { 62.7, 93.3, 2017, 18000 }, + [2] = { 62.7, 92.2, 2017, 18000 }, + [3] = { 63.2, 90.4, 2017, 18000 }, + [4] = { 63, 89.6, 2017, 18000 }, + [5] = { 62, 87.3, 2017, 18000 }, + [6] = { 55.5, 86.8, 2017, 18000 }, + [7] = { 55.1, 85.6, 2017, 18000 }, + [8] = { 61.4, 85.6, 2017, 18000 }, + [9] = { 62.4, 84.4, 2017, 18000 }, + [10] = { 58.1, 83.5, 2017, 18000 }, + [11] = { 57.9, 82.3, 2017, 18000 }, + [12] = { 63.6, 82.2, 2017, 18000 }, + [13] = { 66.1, 79.4, 2017, 18000 }, + [14] = { 60.4, 79.3, 2017, 18000 }, + [15] = { 65.3, 78.8, 2017, 18000 }, + [16] = { 59.9, 78.6, 2017, 18000 }, + [17] = { 62.1, 78.2, 2017, 18000 }, + [18] = { 62.3, 77.6, 2017, 18000 }, + [19] = { 36.6, 77.5, 2017, 18000 }, + [20] = { 36.4, 77.3, 2017, 18000 }, + [21] = { 36.5, 77.2, 2017, 18000 }, + [22] = { 31.3, 77, 2017, 18000 }, + [23] = { 31.3, 76.7, 2017, 18000 }, + [24] = { 57.2, 76.3, 2017, 18000 }, + [25] = { 57.4, 75.8, 2017, 18000 }, + [26] = { 59.1, 73.9, 2017, 18000 }, + [27] = { 59.4, 73.3, 2017, 18000 }, + [28] = { 70.5, 73.1, 2017, 18000 }, + [29] = { 70.1, 72.1, 2017, 18000 }, + [30] = { 45.3, 69.7, 2017, 18000 }, + [31] = { 71.9, 69.4, 2017, 18000 }, + [32] = { 72.5, 67.9, 2017, 18000 }, + [33] = { 73.7, 67.5, 2017, 18000 }, + [34] = { 73.6, 67.1, 2017, 18000 }, + [35] = { 83.4, 66.5, 2017, 18000 }, + [36] = { 45.3, 66.2, 2017, 18000 }, + [37] = { 41.5, 66.1, 2017, 18000 }, + [38] = { 84.1, 66, 2017, 18000 }, + [39] = { 41.4, 65.9, 2017, 18000 }, + [40] = { 48, 65.6, 2017, 18000 }, + [41] = { 72.1, 64.9, 2017, 18000 }, + [42] = { 72.5, 64.6, 2017, 18000 }, + [43] = { 58.1, 64.2, 2017, 18000 }, + [44] = { 57.8, 63.2, 2017, 18000 }, + [45] = { 60.4, 61.8, 2017, 18000 }, + [46] = { 55.3, 61.7, 2017, 18000 }, + [47] = { 54.9, 61.3, 2017, 18000 }, + [48] = { 71.4, 61.3, 2017, 18000 }, + [49] = { 59.8, 61.3, 2017, 18000 }, + [50] = { 71.2, 60.4, 2017, 18000 }, + [51] = { 43.2, 60.4, 2017, 18000 }, + [52] = { 79.8, 60.2, 2017, 18000 }, + [53] = { 63.9, 59.7, 2017, 18000 }, + [54] = { 63.4, 59.6, 2017, 18000 }, + [55] = { 81.3, 59.4, 2017, 18000 }, + [56] = { 47, 58.9, 2017, 18000 }, + [57] = { 44.6, 58.1, 2017, 18000 }, + [58] = { 81.5, 57.5, 2017, 18000 }, + [59] = { 82.2, 57.1, 2017, 18000 }, + [60] = { 52.9, 55.2, 2017, 18000 }, + [61] = { 52.6, 54.8, 2017, 18000 }, + }, + ["lvl"] = "56-57", + }, + [10393] = { + ["coords"] = { + [1] = { 57.1, 82.8, 2017, 604800 }, + [2] = { 69.6, 73.3, 2017, 604800 }, + }, + ["lvl"] = "58", + ["rnk"] = "2", + }, + [10395] = "_", + [10397] = "_", + [10398] = { + ["coords"] = { + [1] = { 89.3, 42.3, 2017, 18000 }, + [2] = { 77.1, 39.3, 2017, 18000 }, + [3] = { 81.8, 39.2, 2017, 18000 }, + [4] = { 77.7, 39, 2017, 18000 }, + [5] = { 75.1, 35.8, 2017, 18000 }, + [6] = { 75.6, 35.4, 2017, 18000 }, + [7] = { 90.2, 34.8, 2017, 18000 }, + [8] = { 78, 26.8, 2017, 18000 }, + [9] = { 78.3, 26.4, 2017, 18000 }, + [10] = { 84.3, 20.8, 2017, 18000 }, + [11] = { 84.6, 20.7, 2017, 18000 }, + [12] = { 82.6, 18, 2017, 18000 }, + [13] = { 82.8, 17.5, 2017, 18000 }, + [14] = { 84.3, 17, 2017, 18000 }, + }, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [10399] = { + ["coords"] = { + [1] = { 72.5, 42.1, 2017, 18000 }, + [2] = { 72.9, 42, 2017, 18000 }, + [3] = { 72.6, 41, 2017, 18000 }, + [4] = { 93.4, 41, 2017, 18000 }, + [5] = { 93.8, 41, 2017, 18000 }, + [6] = { 72, 40.6, 2017, 18000 }, + [7] = { 72.3, 40.1, 2017, 18000 }, + [8] = { 93.5, 40, 2017, 18000 }, + [9] = { 94, 39.4, 2017, 18000 }, + [10] = { 93.7, 39, 2017, 18000 }, + [11] = { 87.1, 14.1, 2017, 18000 }, + [12] = { 87.3, 13.5, 2017, 18000 }, + [13] = { 86.6, 13.5, 2017, 18000 }, + [14] = { 86.1, 12.8, 2017, 18000 }, + [15] = { 86.5, 12.4, 2017, 18000 }, + }, + ["lvl"] = "59-60", + }, + [10400] = { + ["coords"] = { + [1] = { 88.9, 41.8, 2017, 18000 }, + [2] = { 89.3, 41.6, 2017, 18000 }, + [3] = { 82.2, 39.4, 2017, 18000 }, + [4] = { 75.1, 36.7, 2017, 18000 }, + [5] = { 76, 35.9, 2017, 18000 }, + [6] = { 90.1, 35.2, 2017, 18000 }, + [7] = { 90.5, 34.9, 2017, 18000 }, + [8] = { 86.5, 34.1, 2017, 18000 }, + [9] = { 86.4, 33, 2017, 18000 }, + [10] = { 78, 26.2, 2017, 18000 }, + [11] = { 76, 22.2, 2017, 18000 }, + [12] = { 76.1, 21.7, 2017, 18000 }, + [13] = { 84.4, 20.2, 2017, 18000 }, + [14] = { 82.2, 18.2, 2017, 18000 }, + [15] = { 82.4, 17.8, 2017, 18000 }, + [16] = { 84.7, 17.4, 2017, 18000 }, + [17] = { 84.5, 17.2, 2017, 18000 }, + }, + ["lvl"] = "60-61", + ["rnk"] = "1", + }, + [10401] = "_", + [10402] = "_", + [10403] = "_", + [10404] = "_", + [10405] = { + ["coords"] = { + [1] = { 62.5, 83.9, 2017, 18000 }, + [2] = { 56.9, 83.6, 2017, 18000 }, + [3] = { 65.9, 78.6, 2017, 18000 }, + [4] = { 65.7, 78.4, 2017, 18000 }, + [5] = { 73.6, 71.4, 2017, 18000 }, + [6] = { 71.4, 70.9, 2017, 18000 }, + [7] = { 73.8, 70.7, 2017, 18000 }, + [8] = { 71.5, 70.5, 2017, 18000 }, + [9] = { 70.3, 66.1, 2017, 18000 }, + [10] = { 70.6, 65.8, 2017, 18000 }, + [11] = { 70.3, 65.5, 2017, 18000 }, + [12] = { 52.9, 62.4, 2017, 18000 }, + [13] = { 52.6, 62.2, 2017, 18000 }, + [14] = { 55.1, 60.9, 2017, 18000 }, + [15] = { 65.2, 60.2, 2017, 18000 }, + [16] = { 65.1, 59.8, 2017, 18000 }, + [17] = { 64.1, 59, 2017, 18000 }, + [18] = { 67.4, 56.8, 2017, 18000 }, + [19] = { 69.8, 56.1, 2017, 18000 }, + [20] = { 68.7, 55.1, 2017, 18000 }, + [21] = { 69, 54.9, 2017, 18000 }, + [22] = { 88.2, 43.4, 2017, 18000 }, + [23] = { 86.5, 39, 2017, 18000 }, + [24] = { 86.7, 33.6, 2017, 18000 }, + [25] = { 79.6, 24.4, 2017, 18000 }, + [26] = { 85.1, 24.2, 2017, 18000 }, + [27] = { 80.3, 24.2, 2017, 18000 }, + [28] = { 83, 24.2, 2017, 18000 }, + [29] = { 80.7, 19.9, 2017, 18000 }, + [30] = { 74.7, 19.2, 2017, 18000 }, + [31] = { 73.9, 18.6, 2017, 18000 }, + [32] = { 77.7, 18.2, 2017, 18000 }, + [33] = { 74, 17.8, 2017, 18000 }, + [34] = { 73.8, 13.8, 2017, 18000 }, + }, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [10406] = { + ["coords"] = { + [1] = { 85.5, 45.5, 2017, 18000 }, + [2] = { 85.4, 44.7, 2017, 18000 }, + [3] = { 88, 43.1, 2017, 18000 }, + [4] = { 80.3, 41.6, 2017, 18000 }, + [5] = { 84.1, 41, 2017, 18000 }, + [6] = { 83.8, 40.5, 2017, 18000 }, + [7] = { 86.1, 39.4, 2017, 18000 }, + [8] = { 87.6, 34.5, 2017, 18000 }, + [9] = { 88.1, 33.6, 2017, 18000 }, + [10] = { 85.1, 26.9, 2017, 18000 }, + [11] = { 76.2, 24.3, 2017, 18000 }, + [12] = { 85.1, 23.9, 2017, 18000 }, + [13] = { 80.1, 19.7, 2017, 18000 }, + [14] = { 80.7, 19.3, 2017, 18000 }, + [15] = { 77.3, 18.1, 2017, 18000 }, + [16] = { 77.4, 17.4, 2017, 18000 }, + [17] = { 74.1, 13.4, 2017, 18000 }, + }, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [10407] = { + ["coords"] = { + [1] = { 85, 45.1, 2017, 18000 }, + [2] = { 80.4, 42.2, 2017, 18000 }, + [3] = { 80, 42, 2017, 18000 }, + [4] = { 88.5, 34.5, 2017, 18000 }, + [5] = { 84.2, 28, 2017, 18000 }, + [6] = { 84, 27.1, 2017, 18000 }, + [7] = { 76.5, 25, 2017, 18000 }, + [8] = { 76.8, 24.1, 2017, 18000 }, + [9] = { 82.8, 23.4, 2017, 18000 }, + [10] = { 74.5, 18.3, 2017, 18000 }, + }, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [10408] = { + ["coords"] = { + [1] = { 82.5, 43, 2017, 604800 }, + [2] = { 74.7, 36.8, 2017, 604800 }, + [3] = { 87.9, 33.7, 2017, 604800 }, + [4] = { 84.6, 26.5, 2017, 604800 }, + [5] = { 76.2, 22.5, 2017, 604800 }, + [6] = { 74.3, 14.6, 2017, 604800 }, + [7] = { 75.1, 13.3, 2017, 604800 }, + }, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [10409] = { + ["coords"] = { + [1] = { 75.1, 13.3, 2017, 604800 }, + [2] = { 82.5, 43, 2017, 604800 }, + [3] = { 74.7, 36.8, 2017, 604800 }, + [4] = { 87.9, 33.7, 2017, 604800 }, + [5] = { 84.6, 26.5, 2017, 604800 }, + [6] = { 76.2, 22.5, 2017, 604800 }, + [7] = { 74.3, 14.6, 2017, 604800 }, + }, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [10411] = { + ["coords"] = { + [1] = { 56.2, 86.6, 2017, 600 }, + [2] = { 69.7, 73.6, 2017, 600 }, + [3] = { 75.5, 12.2, 2017, 600 }, + }, + ["lvl"] = "55-57", + }, + [10412] = { + ["coords"] = { + [1] = { 80.2, 39.2, 2017, 18000 }, + [2] = { 77.4, 39, 2017, 18000 }, + [3] = { 88.3, 38.3, 2017, 18000 }, + [4] = { 87.5, 35, 2017, 18000 }, + [5] = { 80, 22.6, 2017, 18000 }, + [6] = { 83.2, 22.1, 2017, 18000 }, + [7] = { 77.2, 21.3, 2017, 18000 }, + }, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [10413] = { + ["coords"] = { + [1] = { 83.2, 43.1, 2017, 18000 }, + [2] = { 85, 42.2, 2017, 18000 }, + [3] = { 86.5, 41, 2017, 18000 }, + [4] = { 78.8, 37.2, 2017, 18000 }, + [5] = { 75.6, 36.8, 2017, 18000 }, + [6] = { 80, 21.1, 2017, 18000 }, + }, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [10414] = { + ["coords"] = { + [1] = { 57, 82.3, 2017, 18000 }, + [2] = { 74.2, 65.7, 2017, 18000 }, + [3] = { 52.1, 56.8, 2017, 18000 }, + }, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [10415] = { + ["coords"] = { + [1] = { 72.6, 41.2, 2017, 18000 }, + [2] = { 93.5, 40, 2017, 18000 }, + [3] = { 86.6, 13.5, 2017, 18000 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [10416] = { + ["coords"] = { + [1] = { 62.6, 21.9, 2017, 18000 }, + [2] = { 67.1, 19.6, 2017, 18000 }, + [3] = { 65.3, 13.9, 2017, 18000 }, + [4] = { 64, 8.3, 2017, 18000 }, + }, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [10417] = { + ["coords"] = { + [1] = { 66.3, 21.3, 2017, 18000 }, + [2] = { 64.4, 20.9, 2017, 18000 }, + [3] = { 64.3, 19.2, 2017, 18000 }, + [4] = { 66.2, 17.9, 2017, 18000 }, + [5] = { 67.8, 15.7, 2017, 18000 }, + [6] = { 66.9, 14.1, 2017, 18000 }, + [7] = { 64.2, 11.6, 2017, 18000 }, + [8] = { 62.4, 10.1, 2017, 18000 }, + [9] = { 66.8, 9.4, 2017, 18000 }, + }, + ["lvl"] = "60-61", + ["rnk"] = "1", + }, + [10418] = { + ["coords"] = { + [1] = { 38.2, 73.9, 2017, 18000 }, + [2] = { 35.8, 72.6, 2017, 18000 }, + [3] = { 36.4, 72.2, 2017, 18000 }, + [4] = { 39.2, 71.1, 2017, 18000 }, + [5] = { 38.2, 68.5, 2017, 18000 }, + [6] = { 38.8, 68.5, 2017, 18000 }, + [7] = { 44.8, 67.1, 2017, 18000 }, + [8] = { 36.7, 66.5, 2017, 18000 }, + [9] = { 44, 64.2, 2017, 18000 }, + [10] = { 38.2, 64, 2017, 18000 }, + [11] = { 45.4, 64, 2017, 18000 }, + [12] = { 47, 63.9, 2017, 18000 }, + [13] = { 38.6, 63.7, 2017, 18000 }, + [14] = { 43.6, 63.3, 2017, 18000 }, + [15] = { 45.1, 63.1, 2017, 18000 }, + [16] = { 46.5, 63.1, 2017, 18000 }, + [17] = { 42.9, 61.2, 2017, 18000 }, + }, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [10419] = { + ["coords"] = { + [1] = { 37.7, 73.7, 2017, 18000 }, + [2] = { 35.8, 72.3, 2017, 18000 }, + [3] = { 39.6, 70.8, 2017, 18000 }, + [4] = { 38.1, 69.4, 2017, 18000 }, + [5] = { 38.4, 68.9, 2017, 18000 }, + [6] = { 36.9, 65.5, 2017, 18000 }, + [7] = { 45.2, 63.4, 2017, 18000 }, + [8] = { 47.9, 61.2, 2017, 18000 }, + [9] = { 45.3, 60.9, 2017, 18000 }, + }, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [10420] = { + ["coords"] = { + [1] = { 37.6, 74.3, 2017, 18000 }, + [2] = { 36.1, 71.9, 2017, 18000 }, + [3] = { 39.5, 71.5, 2017, 18000 }, + [4] = { 39.7, 71.2, 2017, 18000 }, + [5] = { 36.5, 65.5, 2017, 18000 }, + [6] = { 43.7, 63.6, 2017, 18000 }, + [7] = { 38.1, 63.6, 2017, 18000 }, + [8] = { 46.7, 63.6, 2017, 18000 }, + [9] = { 38.3, 63.4, 2017, 18000 }, + }, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [10421] = { + ["coords"] = { + [1] = { 27.5, 80.6, 2017, 18000 }, + [2] = { 27.8, 80.2, 2017, 18000 }, + [3] = { 29.2, 78.8, 2017, 18000 }, + [4] = { 32.1, 78.7, 2017, 18000 }, + [5] = { 29.5, 78.6, 2017, 18000 }, + [6] = { 31.9, 78.3, 2017, 18000 }, + [7] = { 27.7, 75.8, 2017, 18000 }, + [8] = { 27.8, 74.7, 2017, 18000 }, + [9] = { 30.4, 74.2, 2017, 18000 }, + }, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [10422] = { + ["coords"] = { + [1] = { 35.6, 82.3, 2017, 18000 }, + [2] = { 30.2, 74.5, 2017, 18000 }, + }, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [10423] = { + ["coords"] = { + [1] = { 27, 80.3, 2017, 18000 }, + [2] = { 27, 79.7, 2017, 18000 }, + [3] = { 31.4, 78.5, 2017, 18000 }, + [4] = { 29.8, 78, 2017, 18000 }, + [5] = { 27.6, 75.3, 2017, 18000 }, + [6] = { 30.1, 73.7, 2017, 18000 }, + }, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [10424] = { + ["coords"] = { + [1] = { 37.7, 91.9, 2017, 18000 }, + [2] = { 38.2, 91.4, 2017, 18000 }, + [3] = { 35.9, 88.4, 2017, 18000 }, + [4] = { 36.6, 87.7, 2017, 18000 }, + [5] = { 36.2, 85.7, 2017, 1800 }, + [6] = { 37.1, 85.7, 2017, 18000 }, + [7] = { 37.6, 85.3, 2017, 18000 }, + [8] = { 38.3, 84, 2017, 18000 }, + [9] = { 38.3, 83.2, 2017, 18000 }, + [10] = { 36.1, 82, 2017, 18000 }, + [11] = { 35.8, 79.1, 2017, 1800 }, + [12] = { 36.7, 78.6, 2017, 18000 }, + [13] = { 37.1, 78.3, 2017, 18000 }, + [14] = { 29.2, 78.1, 2017, 18000 }, + [15] = { 32.8, 77.4, 2017, 1800 }, + [16] = { 40.2, 72.8, 2017, 18000 }, + [17] = { 45.8, 62, 2017, 18000 }, + [18] = { 48.2, 62, 2017, 18000 }, + [19] = { 37.8, 72.5, 2017, 0 }, + }, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [10425] = { + ["coords"] = { + [1] = { 38, 92.1, 2017, 18000 }, + [2] = { 36.4, 88.4, 2017, 18000 }, + [3] = { 37.4, 85.7, 2017, 18000 }, + [4] = { 36.2, 85.6, 2017, 1800 }, + [5] = { 35.9, 82.8, 2017, 18000 }, + [6] = { 35.7, 78.9, 2017, 1800 }, + [7] = { 32.9, 77.6, 2017, 1800 }, + }, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [10426] = { + ["coords"] = { + [1] = { 38.4, 83.6, 2017, 18000 }, + [2] = { 37, 79, 2017, 18000 }, + [3] = { 37.2, 78.8, 2017, 18000 }, + }, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [10429] = { + ["coords"] = { + [1] = { 51.2, 24.5, 1583, 604800 }, + }, + ["lvl"] = "62", + ["rnk"] = "3", + }, + [10430] = { + ["coords"] = { + [1] = { 65.5, 30.3, 1583, 604800 }, + }, + ["lvl"] = "62", + ["rnk"] = "3", + }, + [10432] = { + ["coords"] = { + [1] = { 47.6, 81.7, 2057, 604800 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [10433] = { + ["coords"] = { + [1] = { 42.2, 78.4, 2057, 604800 }, + }, + ["lvl"] = "58", + ["rnk"] = "1", + }, + [10435] = { + ["coords"] = { + [1] = { 82.6, 63.4, 2017, 604800 }, + }, + ["lvl"] = "58", + ["rnk"] = "1", + }, + [10436] = { + ["coords"] = { + [1] = { 90.8, 39.1, 2017, 604800 }, + }, + ["lvl"] = "59", + ["rnk"] = "1", + }, + [10437] = { + ["coords"] = { + [1] = { 75, 39.1, 2017, 604800 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [10438] = { + ["coords"] = { + [1] = { 85, 16.2, 2017, 604800 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [10440] = { + ["coords"] = { + [1] = { 58.5, 16.6, 2017, 604800 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [10443] = "_", + [10444] = "_", + [10446] = "_", + [10448] = "_", + [10449] = "_", + [10450] = "_", + [10451] = "_", + [10452] = "_", + [10453] = "_", + [10454] = "_", + [10460] = { + ["coords"] = { + [1] = { 66.9, 24.1, 440, 30 }, + }, + ["lvl"] = "48", + }, + [10463] = { + ["coords"] = { + [1] = { 84.9, 42.7, 2017, 18000 }, + [2] = { 82.7, 41.4, 2017, 18000 }, + [3] = { 87.5, 41.2, 2017, 18000 }, + [4] = { 88.8, 40.4, 2017, 18000 }, + [5] = { 79.6, 38.3, 2017, 18000 }, + [6] = { 89.6, 36.5, 2017, 18000 }, + [7] = { 84.4, 23.9, 2017, 18000 }, + [8] = { 78.2, 21.1, 2017, 18000 }, + [9] = { 83.6, 20.6, 2017, 18000 }, + }, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [10464] = { + ["coords"] = { + [1] = { 83.4, 45.3, 2017, 18000 }, + [2] = { 87.7, 36.7, 2017, 18000 }, + [3] = { 77.5, 36.6, 2017, 18000 }, + [4] = { 78.3, 24.3, 2017, 18000 }, + [5] = { 81.2, 21.6, 2017, 18000 }, + [6] = { 76, 18.9, 2017, 18000 }, + }, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [10466] = "_", + [10469] = { + ["coords"] = { + [1] = { 77.3, 91.1, 2057, 18000 }, + [2] = { 35.9, 68.6, 2057, 18000 }, + [3] = { 24.8, 66.7, 2057, 18000 }, + [4] = { 31.4, 62.8, 2057, 18000 }, + [5] = { 42.1, 62.5, 2057, 18000 }, + [6] = { 25, 61.6, 2057, 18000 }, + [7] = { 32, 50.3, 2057, 18000 }, + [8] = { 33, 48.9, 2057, 18000 }, + [9] = { 26, 47.6, 2057, 18000 }, + [10] = { 23.6, 45.7, 2057, 18000 }, + [11] = { 40.7, 45, 2057, 18000 }, + [12] = { 34.2, 38.4, 2057, 18000 }, + [13] = { 26.5, 37.8, 2057, 18000 }, + [14] = { 26.7, 35.2, 2057, 18000 }, + [15] = { 29.9, 21.3, 2057, 18000 }, + }, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [10470] = { + ["coords"] = { + [1] = { 64.4, 73.3, 2057, 18000 }, + [2] = { 70.7, 68.9, 2057, 18000 }, + [3] = { 77.5, 68.3, 2057, 18000 }, + [4] = { 76.8, 66.9, 2057, 18000 }, + [5] = { 83.9, 64, 2057, 18000 }, + [6] = { 80.1, 58.1, 2057, 18000 }, + [7] = { 82.2, 54.7, 2057, 18000 }, + [8] = { 81.4, 54, 2057, 18000 }, + [9] = { 74.7, 50.8, 2057, 18000 }, + [10] = { 81, 47.1, 2057, 18000 }, + [11] = { 84.1, 44, 2057, 18000 }, + [12] = { 73, 41.3, 2057, 18000 }, + [13] = { 78.4, 40, 2057, 18000 }, + [14] = { 69.9, 36.3, 2057, 18000 }, + [15] = { 62.3, 35.9, 2057, 18000 }, + [16] = { 68.5, 35.1, 2057, 18000 }, + }, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [10471] = { + ["coords"] = { + [1] = { 70.6, 70.5, 2057, 18000 }, + [2] = { 84.5, 62.6, 2057, 18000 }, + [3] = { 79.5, 57.3, 2057, 18000 }, + [4] = { 72.4, 57, 2057, 18000 }, + [5] = { 81.6, 52.9, 2057, 18000 }, + [6] = { 81.2, 46.4, 2057, 18000 }, + [7] = { 84.3, 45, 2057, 18000 }, + [8] = { 79.1, 40.9, 2057, 18000 }, + [9] = { 72.3, 40.8, 2057, 18000 }, + [10] = { 69.1, 37.2, 2057, 18000 }, + [11] = { 70.7, 36.8, 2057, 18000 }, + [12] = { 61.8, 36.8, 2057, 18000 }, + [13] = { 64.4, 36.1, 2057, 18000 }, + }, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [10472] = { + ["coords"] = { + [1] = { 80.6, 96.9, 2057, 18000 }, + [2] = { 80.8, 95.6, 2057, 18000 }, + [3] = { 77.7, 90.1, 2057, 18000 }, + [4] = { 77, 89.6, 2057, 18000 }, + }, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [10473] = "_", + [10475] = { + ["coords"] = { + [1] = { 44.1, 99.5, 2057, 18000 }, + [2] = { 50.9, 99.4, 2057, 18000 }, + [3] = { 45.2, 98.7, 2057, 18000 }, + [4] = { 57.1, 97.7, 2057, 18000 }, + [5] = { 47.7, 97.3, 2057, 18000 }, + [6] = { 52, 97.2, 2057, 18000 }, + [7] = { 51.3, 97.2, 2057, 18000 }, + [8] = { 46.8, 97.1, 2057, 18000 }, + [9] = { 58.3, 96.8, 2057, 18000 }, + [10] = { 51.6, 96.1, 2057, 18000 }, + [11] = { 57, 95.6, 2057, 18000 }, + [12] = { 46.2, 95.3, 2057, 18000 }, + [13] = { 43, 93.5, 2057, 18000 }, + [14] = { 42.4, 93.5, 2057, 18000 }, + [15] = { 48.2, 92.2, 2057, 18000 }, + [16] = { 47.5, 91, 2057, 18000 }, + [17] = { 48.6, 91, 2057, 18000 }, + [18] = { 53.6, 91, 2057, 18000 }, + [19] = { 53.2, 89.7, 2057, 18000 }, + [20] = { 51.5, 87.2, 2057, 18000 }, + [21] = { 52.6, 86.2, 2057, 18000 }, + [22] = { 51.3, 85.1, 2057, 18000 }, + [23] = { 57.1, 83.4, 2057, 18000 }, + [24] = { 58.2, 81.8, 2057, 18000 }, + [25] = { 57.2, 81.3, 2057, 18000 }, + }, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [10476] = { + ["coords"] = { + [1] = { 46.9, 34.7, 2057, 18000 }, + [2] = { 52.6, 34.6, 2057, 18000 }, + [3] = { 39.8, 33.6, 2057, 18000 }, + [4] = { 41.7, 32.1, 2057, 18000 }, + [5] = { 46.3, 31.9, 2057, 18000 }, + [6] = { 47, 20.7, 2057, 18000 }, + [7] = { 40.8, 20.6, 2057, 18000 }, + [8] = { 45.4, 19.2, 2057, 18000 }, + [9] = { 54, 18.9, 2057, 18000 }, + [10] = { 39.7, 18.1, 2057, 18000 }, + }, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [10477] = { + ["coords"] = { + [1] = { 79.9, 96, 2057, 18000 }, + [2] = { 25.6, 67.5, 2057, 18000 }, + [3] = { 36.3, 66.6, 2057, 18000 }, + [4] = { 42.5, 63.7, 2057, 18000 }, + [5] = { 24.9, 60.2, 2057, 18000 }, + [6] = { 33, 50.4, 2057, 18000 }, + [7] = { 25.1, 48.3, 2057, 18000 }, + [8] = { 40, 48.1, 2057, 18000 }, + [9] = { 40, 45.2, 2057, 18000 }, + [10] = { 34.7, 41.1, 2057, 18000 }, + [11] = { 34.7, 39.8, 2057, 18000 }, + [12] = { 27.3, 34.6, 2057, 18000 }, + [13] = { 31.4, 19.5, 2057, 18000 }, + }, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [10478] = { + ["coords"] = { + [1] = { 76.7, 90.7, 2057, 18000 }, + [2] = { 81, 90.4, 2057, 18000 }, + [3] = { 78.9, 87.8, 2057, 18000 }, + [4] = { 75.3, 87.7, 2057, 18000 }, + [5] = { 82.8, 87.5, 2057, 18000 }, + }, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [10480] = { + ["coords"] = { + [1] = { 75.6, 42, 2057, 18000 }, + [2] = { 81.7, 41.1, 2057, 18000 }, + [3] = { 78.4, 39.6, 2057, 18000 }, + [4] = { 76.9, 38.9, 2057, 18000 }, + [5] = { 81.8, 37.5, 2057, 18000 }, + [6] = { 78.6, 37.1, 2057, 18000 }, + [7] = { 80.2, 36.3, 2057, 18000 }, + [8] = { 75.1, 36.1, 2057, 18000 }, + [9] = { 76, 34.7, 2057, 18000 }, + [10] = { 79.3, 34.1, 2057, 18000 }, + [11] = { 77.5, 33.3, 2057, 18000 }, + [12] = { 80.4, 31.9, 2057, 18000 }, + [13] = { 78.7, 31.5, 2057, 18000 }, + [14] = { 75.3, 29.1, 2057, 18000 }, + [15] = { 78.3, 28.8, 2057, 18000 }, + [16] = { 81.2, 28.7, 2057, 18000 }, + [17] = { 77, 28.2, 2057, 18000 }, + [18] = { 80.1, 27.4, 2057, 18000 }, + [19] = { 77, 25.9, 2057, 18000 }, + [20] = { 81.1, 23.5, 2057, 18000 }, + [21] = { 77.8, 22.3, 2057, 18000 }, + }, + ["lvl"] = "58-59", + }, + [10481] = { + ["coords"] = { + [1] = { 52.4, 64.8, 2057, 18000 }, + [2] = { 55.2, 56.8, 2057, 18000 }, + [3] = { 49.1, 56.1, 2057, 18000 }, + [4] = { 48.4, 44.9, 2057, 18000 }, + [5] = { 46.1, 44.9, 2057, 18000 }, + [6] = { 52.9, 44.9, 2057, 18000 }, + [7] = { 32.8, 41.1, 2057, 18000 }, + [8] = { 51.1, 39.6, 2057, 18000 }, + [9] = { 80.1, 39.3, 2057, 18000 }, + [10] = { 41.6, 38.5, 2057, 18000 }, + [11] = { 83.8, 38.5, 2057, 18000 }, + [12] = { 49, 38.3, 2057, 18000 }, + [13] = { 77.2, 35.8, 2057, 18000 }, + [14] = { 49.6, 32.4, 2057, 18000 }, + [15] = { 49, 31.4, 2057, 18000 }, + [16] = { 34, 31.4, 2057, 18000 }, + [17] = { 76.2, 31.2, 2057, 18000 }, + [18] = { 40.1, 31.2, 2057, 18000 }, + [19] = { 79.9, 25.3, 2057, 18000 }, + [20] = { 25.8, 24.5, 2057, 18000 }, + [21] = { 75.9, 23.5, 2057, 18000 }, + [22] = { 48.3, 21.1, 2057, 18000 }, + [23] = { 40.9, 20.1, 2057, 18000 }, + [24] = { 31.7, 19, 2057, 18000 }, + [25] = { 39.4, 18.5, 2057, 18000 }, + [26] = { 46.4, 18.4, 2057, 18000 }, + }, + ["lvl"] = "58-59", + }, + [10482] = { + ["coords"] = { + [1] = { 23.8, 63.1, 2057, 18000 }, + }, + ["lvl"] = "55-56", + }, + [10483] = "_", + [10484] = "_", + [10485] = { + ["coords"] = { + [1] = { 49, 64.9, 2057, 18000 }, + [2] = { 55.4, 64.3, 2057, 18000 }, + [3] = { 47.3, 64.2, 2057, 18000 }, + [4] = { 53.4, 64, 2057, 18000 }, + [5] = { 47.3, 61.8, 2057, 18000 }, + [6] = { 49.6, 61.2, 2057, 18000 }, + [7] = { 53.8, 56.9, 2057, 18000 }, + [8] = { 46.3, 55.5, 2057, 18000 }, + [9] = { 54, 55.5, 2057, 18000 }, + [10] = { 49.2, 53.9, 2057, 18000 }, + [11] = { 47.7, 53.7, 2057, 18000 }, + [12] = { 55.7, 48.4, 2057, 18000 }, + [13] = { 46.7, 48.3, 2057, 18000 }, + [14] = { 53, 48.3, 2057, 18000 }, + [15] = { 53.6, 47.8, 2057, 18000 }, + [16] = { 48.4, 47.3, 2057, 18000 }, + [17] = { 47.5, 46.9, 2057, 18000 }, + [18] = { 56.5, 46.3, 2057, 18000 }, + [19] = { 48.4, 44.9, 2057, 18000 }, + [20] = { 41.4, 41.2, 2057, 18000 }, + [21] = { 48.4, 40.6, 2057, 18000 }, + [22] = { 39.3, 39.2, 2057, 18000 }, + [23] = { 47.6, 38.4, 2057, 18000 }, + [24] = { 35.5, 37.5, 2057, 18000 }, + [25] = { 31.9, 37.5, 2057, 18000 }, + [26] = { 43.1, 37.2, 2057, 18000 }, + [27] = { 40.6, 36.2, 2057, 18000 }, + [28] = { 25.6, 33.6, 2057, 18000 }, + [29] = { 48.3, 32.6, 2057, 18000 }, + [30] = { 47.7, 31.9, 2057, 18000 }, + [31] = { 47.1, 30.7, 2057, 18000 }, + [32] = { 31.8, 30.3, 2057, 18000 }, + [33] = { 43, 29.9, 2057, 18000 }, + [34] = { 39.7, 29.7, 2057, 18000 }, + [35] = { 42.6, 28.6, 2057, 18000 }, + [36] = { 32.9, 28, 2057, 18000 }, + [37] = { 48.5, 23.6, 2057, 18000 }, + [38] = { 40, 23.3, 2057, 18000 }, + [39] = { 26.2, 23, 2057, 18000 }, + [40] = { 41.2, 22.9, 2057, 18000 }, + [41] = { 32.1, 22.4, 2057, 18000 }, + [42] = { 25.4, 21.9, 2057, 18000 }, + [43] = { 50.3, 21.7, 2057, 18000 }, + [44] = { 24.1, 21.5, 2057, 18000 }, + [45] = { 39.5, 21.3, 2057, 18000 }, + [46] = { 35.7, 19.3, 2057, 18000 }, + [47] = { 49.2, 18.3, 2057, 18000 }, + [48] = { 33.7, 18, 2057, 18000 }, + [49] = { 41.8, 17.6, 2057, 18000 }, + }, + ["lvl"] = "57-58", + }, + [10486] = { + ["coords"] = { + [1] = { 96.7, 66.1, 2057, 18000 }, + [2] = { 96.6, 61.1, 2057, 18000 }, + }, + ["lvl"] = "59-61", + ["rnk"] = "1", + }, + [10487] = { + ["coords"] = { + [1] = { 38.8, 67.7, 2057, 18000 }, + [2] = { 30.8, 65.5, 2057, 18000 }, + [3] = { 24.6, 55.8, 2057, 18000 }, + [4] = { 27.1, 27.1, 2057, 18000 }, + }, + ["lvl"] = "58-60", + ["rnk"] = "1", + }, + [10488] = { + ["coords"] = { + [1] = { 19.2, 98.7, 2057, 18000 }, + [2] = { 32.2, 96.7, 2057, 18000 }, + [3] = { 30.4, 95.1, 2057, 18000 }, + [4] = { 22.4, 94.1, 2057, 18000 }, + [5] = { 20.2, 92.6, 2057, 18000 }, + [6] = { 32.6, 90.1, 2057, 18000 }, + [7] = { 19.5, 85.5, 2057, 18000 }, + [8] = { 33.5, 84.9, 2057, 18000 }, + [9] = { 30.3, 84.3, 2057, 18000 }, + [10] = { 24.8, 79.8, 2057, 18000 }, + [11] = { 19.4, 77.5, 2057, 18000 }, + [12] = { 31.6, 76.7, 2057, 18000 }, + }, + ["lvl"] = "58-61", + ["rnk"] = "1", + }, + [10489] = { + ["coords"] = { + [1] = { 67.9, 61.3, 2057, 18000 }, + [2] = { 53.6, 59.3, 2057, 18000 }, + [3] = { 58.5, 55.9, 2057, 18000 }, + [4] = { 61.6, 55, 2057, 18000 }, + [5] = { 58.4, 53.4, 2057, 18000 }, + [6] = { 53.6, 50.6, 2057, 18000 }, + [7] = { 76, 50.2, 2057, 18000 }, + [8] = { 55, 36, 2057, 18000 }, + [9] = { 37.7, 26.6, 2057, 18000 }, + [10] = { 40.6, 16.8, 2057, 18000 }, + }, + ["lvl"] = "57-59", + ["rnk"] = "1", + }, + [10491] = { + ["coords"] = { + [1] = { 78.5, 42.6, 2057, 18000 }, + [2] = { 76.3, 38.7, 2057, 18000 }, + [3] = { 75.8, 36, 2057, 18000 }, + [4] = { 77.7, 32.6, 2057, 18000 }, + }, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [10492] = "_", + [10493] = "_", + [10494] = "_", + [10495] = { + ["coords"] = { + [1] = { 99, 67, 2057, 18000 }, + [2] = { 48.7, 64.9, 2057, 18000 }, + [3] = { 46.4, 64.4, 2057, 18000 }, + [4] = { 48.9, 62.1, 2057, 18000 }, + [5] = { 53.4, 61.9, 2057, 18000 }, + [6] = { 98.7, 61.9, 2057, 18000 }, + [7] = { 56.6, 61.8, 2057, 18000 }, + [8] = { 47.9, 56.5, 2057, 18000 }, + [9] = { 53.5, 53.9, 2057, 18000 }, + [10] = { 55.7, 53.2, 2057, 18000 }, + [11] = { 47.6, 53.1, 2057, 18000 }, + [12] = { 49.9, 47.7, 2057, 18000 }, + [13] = { 55.6, 45.6, 2057, 18000 }, + [14] = { 46.1, 44.9, 2057, 18000 }, + [15] = { 35.4, 40.4, 2057, 18000 }, + [16] = { 43.4, 40.3, 2057, 18000 }, + [17] = { 50.1, 38, 2057, 18000 }, + [18] = { 32.2, 32.1, 2057, 18000 }, + [19] = { 50.3, 31.3, 2057, 18000 }, + [20] = { 41.4, 29.3, 2057, 18000 }, + [21] = { 34.5, 29, 2057, 18000 }, + [22] = { 27.2, 25, 2057, 18000 }, + [23] = { 24.7, 24.8, 2057, 18000 }, + [24] = { 34.8, 22.4, 2057, 18000 }, + [25] = { 48.3, 22.1, 2057, 18000 }, + [26] = { 42.9, 21.2, 2057, 18000 }, + }, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [10498] = { + ["coords"] = { + [1] = { 37.1, 68.8, 2057, 18000 }, + [2] = { 24.6, 68.3, 2057, 18000 }, + [3] = { 43.2, 62.7, 2057, 18000 }, + [4] = { 24.2, 60.9, 2057, 18000 }, + [5] = { 25.8, 49.1, 2057, 18000 }, + [6] = { 33.8, 40.5, 2057, 18000 }, + [7] = { 30.5, 19.2, 2057, 18000 }, + }, + ["lvl"] = "58-60", + ["rnk"] = "1", + }, + [10499] = { + ["coords"] = { + [1] = { 69.3, 66.6, 2057, 18000 }, + [2] = { 84.4, 64.1, 2057, 18000 }, + [3] = { 81, 58.6, 2057, 18000 }, + [4] = { 73.5, 57, 2057, 18000 }, + [5] = { 59.7, 54.7, 2057, 18000 }, + [6] = { 75.5, 49.2, 2057, 18000 }, + [7] = { 63.4, 35.7, 2057, 18000 }, + }, + ["lvl"] = "58-60", + ["rnk"] = "1", + }, + [10502] = { + ["coords"] = { + [1] = { 78.3, 24.3, 2057, 604800 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [10503] = { + ["coords"] = { + [1] = { 55.5, 23.2, 2057, 604800 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [10509] = { + ["coords"] = { + [1] = { 30.3, 25.5, 1583, 604800 }, + }, + ["lvl"] = "59", + ["rnk"] = "2", + }, + [10510] = "_", + [10556] = { + ["coords"] = { + [1] = { 42.3, 73.2, 14, 300 }, + [2] = { 44.7, 72.8, 14, 300 }, + [3] = { 41.2, 72.7, 14, 300 }, + [4] = { 47.6, 69.4, 14, 300 }, + [5] = { 45, 69.1, 14, 300 }, + [6] = { 47.2, 65.4, 14, 300 }, + [7] = { 45.6, 65.3, 14, 25 }, + [8] = { 38.8, 61.8, 14, 300 }, + [9] = { 46.8, 60.8, 14, 300 }, + [10] = { 40.9, 60.4, 14, 300 }, + [11] = { 41.3, 58.8, 14, 300 }, + [12] = { 47.1, 57.9, 14, 300 }, + [13] = { 43.8, 57.8, 14, 300 }, + [14] = { 42.7, 57.4, 14, 300 }, + [15] = { 67.3, 35.3, 17, 300 }, + [16] = { 66.8, 35, 17, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "4", + }, + [10558] = { + ["coords"] = { + [1] = { 73.4, 71.9, 2017, 604800 }, + [2] = { 73.6, 61.2, 2017, 604800 }, + [3] = { 58.6, 60.8, 2017, 604800 }, + [4] = { 61, 59.6, 2017, 604800 }, + }, + ["lvl"] = "57", + ["rnk"] = "2", + }, + [10559] = { + ["coords"] = { + [1] = { 27.6, 96.4, 148, 19800 }, + [2] = { 9.9, 14.3, 331, 19800 }, + }, + ["lvl"] = "22", + ["rnk"] = "4", + }, + [10578] = { + ["coords"] = { + [1] = { 55.7, 75.4, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [10580] = { + ["coords"] = { + [1] = { 53.6, 68.2, 28, 315 }, + [2] = { 52.5, 67.6, 28, 315 }, + [3] = { 52.8, 65.2, 28, 315 }, + }, + ["lvl"] = "54-56", + }, + [10583] = { + ["coords"] = { + [1] = { 45.2, 5.8, 490, 120 }, + }, + ["lvl"] = "55", + ["rnk"] = "1", + }, + [10584] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [10596] = { + ["coords"] = { + [1] = { 65, 74.4, 1583, 604800 }, + }, + ["lvl"] = "59", + ["rnk"] = "1", + }, + [10605] = { + ["coords"] = { + [1] = { 43.7, 67.8, 28, 315 }, + [2] = { 38.7, 56, 28, 315 }, + [3] = { 38.6, 56, 28, 315 }, + [4] = { 38.7, 55.9, 28, 315 }, + [5] = { 40.7, 52.6, 28, 315 }, + [6] = { 40.4, 52.6, 28, 315 }, + [7] = { 41, 52.4, 28, 315 }, + [8] = { 40.7, 52.2, 28, 315 }, + [9] = { 40.3, 52.2, 28, 315 }, + [10] = { 40.8, 51.9, 28, 315 }, + [11] = { 41, 51.9, 28, 315 }, + [12] = { 40.3, 51.7, 28, 315 }, + [13] = { 40.9, 51.5, 28, 315 }, + [14] = { 40.5, 51.4, 28, 315 }, + [15] = { 47.3, 51.4, 28, 315 }, + [16] = { 47.4, 51.3, 28, 315 }, + [17] = { 47.3, 51.3, 28, 315 }, + [18] = { 51.8, 44.8, 28, 315 }, + [19] = { 52.1, 44.8, 28, 315 }, + [20] = { 51.9, 44.6, 28, 315 }, + [21] = { 52.2, 44.6, 28, 315 }, + [22] = { 51.6, 44.5, 28, 315 }, + [23] = { 52.2, 44.2, 28, 315 }, + [24] = { 51.4, 44.1, 28, 315 }, + [25] = { 51.7, 44, 28, 315 }, + [26] = { 52.2, 44, 28, 315 }, + [27] = { 51.9, 43.8, 28, 315 }, + [28] = { 89.3, 60, 139, 180 }, + [29] = { 89, 58, 139, 180 }, + [30] = { 91.2, 57.4, 139, 180 }, + [31] = { 90, 55.9, 139, 180 }, + [32] = { 90.6, 55, 139, 180 }, + [33] = { 91.3, 54.5, 139, 180 }, + [34] = { 88.8, 52.4, 139, 180 }, + [35] = { 88.6, 52.3, 139, 180 }, + [36] = { 88.5, 52.1, 139, 180 }, + [37] = { 88.9, 52.1, 139, 180 }, + [38] = { 88.7, 52, 139, 180 }, + [39] = { 88.9, 51.8, 139, 180 }, + [40] = { 55.9, 40.8, 4012, 300 }, + [41] = { 50.4, 39.6, 4012, 180 }, + [42] = { 50.1, 37.1, 4012, 180 }, + [43] = { 52.8, 36.5, 4012, 180 }, + [44] = { 51.3, 34.6, 4012, 180 }, + [45] = { 57.3, 34.2, 4012, 300 }, + [46] = { 52, 33.5, 4012, 180 }, + [47] = { 53.8, 33.4, 4012, 180 }, + [48] = { 58.6, 32.9, 4012, 300 }, + [49] = { 52.9, 32.9, 4012, 180 }, + [50] = { 49.8, 30.3, 4012, 180 }, + [51] = { 49.5, 30.2, 4012, 180 }, + [52] = { 49.4, 30, 4012, 180 }, + [53] = { 49.9, 29.9, 4012, 180 }, + [54] = { 49.7, 29.9, 4012, 180 }, + [55] = { 49.9, 29.7, 4012, 180 }, + }, + ["lvl"] = "52-54", + }, + [10607] = "_", + [10608] = { + ["coords"] = { + [1] = { 43.7, 20.4, 28, 767 }, + [2] = { 43.2, 20.2, 28, 1009 }, + [3] = { 42.9, 20.1, 28, 887 }, + [4] = { 46.8, 14.5, 28, 902 }, + [5] = { 90.8, 95.5, 139, 180 }, + [6] = { 91, 94.7, 139, 180 }, + [7] = { 90.7, 94.2, 139, 300 }, + [8] = { 90.4, 94, 139, 300 }, + [9] = { 91.8, 92.9, 139, 180 }, + [10] = { 90.2, 92.7, 139, 180 }, + [11] = { 96.1, 82, 139, 300 }, + [12] = { 93.2, 75.7, 139, 180 }, + [13] = { 93.2, 74.7, 139, 180 }, + [14] = { 92.8, 74.3, 139, 180 }, + [15] = { 52.2, 83.1, 4012, 180 }, + [16] = { 52.5, 82.2, 4012, 180 }, + [17] = { 52.1, 81.6, 4012, 300 }, + [18] = { 51.8, 81.3, 4012, 300 }, + [19] = { 53.5, 79.9, 4012, 180 }, + [20] = { 51.5, 79.7, 4012, 180 }, + [21] = { 58.7, 66.5, 4012, 300 }, + [22] = { 55.2, 58.8, 4012, 180 }, + [23] = { 55.1, 57.7, 4012, 180 }, + [24] = { 54.6, 57.1, 4012, 180 }, + [25] = { 57.6, 53.9, 4012, 180 }, + [26] = { 19.2, 97.1, 5225, 902 }, + }, + ["lvl"] = "55-57", + ["rnk"] = "1", + }, + [10616] = { + ["coords"] = { + [1] = { 81.4, 66.1, 12, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [10620] = "_", + [10636] = { + ["coords"] = { + [1] = { 44.7, 15, 14, 300 }, + [2] = { 43.9, 91.9, 17, 300 }, + [3] = { 46.9, 8.4, 17, 275 }, + [4] = { 48, 8.2, 17, 25 }, + [5] = { 21.3, 32.9, 400, 300 }, + [6] = { 31.6, 21.6, 400, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [10639] = { + ["coords"] = { + [1] = { 36.4, 36.3, 331, 19800 }, + }, + ["lvl"] = "25", + ["rnk"] = "4", + }, + [10640] = { + ["coords"] = { + [1] = { 56, 62.8, 331, 54000 }, + }, + ["lvl"] = "27", + ["rnk"] = "4", + }, + [10642] = { + ["coords"] = { + [1] = { 52.8, 70, 331, 108000 }, + }, + ["lvl"] = "27", + ["rnk"] = "4", + }, + [10643] = { + ["coords"] = { + [1] = { 19.4, 42.7, 331, 38000 }, + }, + ["lvl"] = "23", + ["rnk"] = "4", + }, + [10644] = { + ["coords"] = { + [1] = { 20.9, 36.9, 331, 38000 }, + }, + ["lvl"] = "22", + ["rnk"] = "4", + }, + [10647] = { + ["coords"] = { + [1] = { 78.1, 46.4, 331, 38000 }, + }, + ["lvl"] = "32", + ["rnk"] = "4", + }, + [10648] = { + ["coords"] = { + [1] = { 54.1, 47.1, 148, 300 }, + [2] = { 39.1, 22.4, 361, 300 }, + }, + ["lvl"] = "55", + }, + [10658] = { + ["coords"] = { + [1] = { 49.9, 73.4, 148, 30 }, + [2] = { 34.2, 52.4, 361, 30 }, + [3] = { 29.3, 60.8, 876, 120 }, + }, + ["lvl"] = "1", + }, + [10659] = { + ["coords"] = { + [1] = { 92.4, 11.9, 616, 333 }, + [2] = { 92.4, 11.5, 616, 333 }, + [3] = { 94.3, 10.6, 616, 333 }, + [4] = { 97, 7.3, 616, 333 }, + [5] = { 97, 7.2, 616, 333 }, + [6] = { 97.6, 0.8, 616, 333 }, + [7] = { 97.5, 0.6, 616, 333 }, + [8] = { 96.7, 0.1, 616, 333 }, + [9] = { 52.5, 56.2, 618, 333 }, + [10] = { 52.5, 56.1, 618, 333 }, + [11] = { 53.3, 55.7, 618, 333 }, + [12] = { 58.2, 54.5, 618, 333 }, + [13] = { 54.6, 54.2, 618, 333 }, + [14] = { 54.5, 54.2, 618, 333 }, + [15] = { 57.8, 51.7, 618, 333 }, + [16] = { 54.8, 51.2, 618, 333 }, + [17] = { 54.8, 51.1, 618, 333 }, + [18] = { 54.4, 50.9, 618, 333 }, + [19] = { 54.5, 50.8, 618, 333 }, + [20] = { 60.1, 50.6, 618, 333 }, + [21] = { 60.3, 50.2, 618, 333 }, + [22] = { 60.2, 50.1, 618, 333 }, + [23] = { 57.2, 49.8, 618, 333 }, + [24] = { 60.2, 49.5, 618, 333 }, + [25] = { 56.8, 49.3, 618, 333 }, + [26] = { 56.8, 48.6, 618, 333 }, + }, + ["lvl"] = "54-55", + }, + [10660] = { + ["coords"] = { + [1] = { 94.4, 11.1, 616, 333 }, + [2] = { 94.3, 10.9, 616, 333 }, + [3] = { 97.3, 0.9, 616, 333 }, + [4] = { 96.9, 0.2, 616, 333 }, + [5] = { 53.4, 55.9, 618, 333 }, + [6] = { 53.3, 55.8, 618, 333 }, + [7] = { 58, 53.9, 618, 333 }, + [8] = { 57.8, 51.7, 618, 333 }, + [9] = { 61.9, 51.3, 618, 333 }, + [10] = { 54.7, 51.3, 618, 333 }, + [11] = { 62.3, 51.2, 618, 333 }, + [12] = { 56.6, 51, 618, 333 }, + [13] = { 54.5, 51, 618, 333 }, + [14] = { 56.1, 50.9, 618, 333 }, + [15] = { 60.8, 50.8, 618, 333 }, + [16] = { 59, 50.6, 618, 333 }, + [17] = { 59.2, 50.5, 618, 333 }, + [18] = { 59.6, 50.4, 618, 333 }, + [19] = { 57.8, 50.3, 618, 333 }, + [20] = { 57.9, 50.3, 618, 333 }, + [21] = { 59.7, 50.3, 618, 333 }, + [22] = { 54.8, 50, 618, 333 }, + [23] = { 57.3, 50, 618, 333 }, + [24] = { 54.8, 49.9, 618, 333 }, + [25] = { 60.7, 49.9, 618, 333 }, + [26] = { 60, 49.7, 618, 333 }, + }, + ["lvl"] = "55-56", + }, + [10661] = { + ["coords"] = { + [1] = { 92.6, 11.6, 616, 333 }, + [2] = { 97.1, 7.5, 616, 333 }, + [3] = { 52.6, 56.1, 618, 333 }, + [4] = { 54.6, 54.3, 618, 333 }, + [5] = { 57.8, 53.8, 618, 333 }, + [6] = { 57.9, 51.7, 618, 333 }, + [7] = { 56.3, 51, 618, 333 }, + [8] = { 62.2, 50.9, 618, 333 }, + [9] = { 57.9, 50.3, 618, 333 }, + [10] = { 57.2, 50, 618, 333 }, + [11] = { 58.8, 50, 618, 333 }, + [12] = { 54.8, 49.8, 618, 333 }, + [13] = { 56.7, 48.9, 618, 333 }, + }, + ["lvl"] = "54-56", + }, + [10663] = { + ["coords"] = { + [1] = { 94, 7.4, 616, 600 }, + [2] = { 53.2, 54.2, 618, 600 }, + }, + ["lvl"] = "58", + ["rnk"] = "1", + }, + [10664] = { + ["coords"] = { + [1] = { 92.9, 11.1, 616, 600 }, + [2] = { 52.7, 55.9, 618, 600 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [10665] = { + ["coords"] = { + [1] = { 57.4, 48.8, 85, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [10676] = { + ["coords"] = { + [1] = { 52.7, 43, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [10678] = { + ["coords"] = { + [1] = { 23.5, 98.5, 2057, 18000 }, + [2] = { 21, 97.5, 2057, 18000 }, + [3] = { 29.4, 96.3, 2057, 18000 }, + [4] = { 24.3, 96.1, 2057, 18000 }, + [5] = { 32.1, 95.2, 2057, 18000 }, + [6] = { 28.1, 94.9, 2057, 18000 }, + [7] = { 23.1, 93.3, 2057, 18000 }, + [8] = { 29.6, 93.1, 2057, 18000 }, + [9] = { 31.4, 92.2, 2057, 18000 }, + [10] = { 28.3, 88, 2057, 18000 }, + [11] = { 24.9, 87.5, 2057, 18000 }, + [12] = { 29.8, 86, 2057, 18000 }, + [13] = { 25.3, 85.8, 2057, 18000 }, + [14] = { 26.5, 84.3, 2057, 18000 }, + [15] = { 21.1, 82, 2057, 18000 }, + [16] = { 30.7, 81, 2057, 18000 }, + [17] = { 25.2, 80.2, 2057, 18000 }, + [18] = { 31.9, 78.7, 2057, 18000 }, + [19] = { 21.4, 78.3, 2057, 18000 }, + [20] = { 24, 78, 2057, 18000 }, + [21] = { 29, 77.3, 2057, 18000 }, + [22] = { 31.7, 75.8, 2057, 18000 }, + }, + ["lvl"] = "57-59", + }, + [10682] = { + ["coords"] = { + [1] = { 52.5, 42.9, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [10685] = { + ["coords"] = { + [1] = { 43.6, 30.2, 14, 300 }, + [2] = { 43.7, 30.2, 14, 300 }, + [3] = { 43.8, 30.2, 14, 300 }, + [4] = { 43.6, 30.1, 14, 300 }, + [5] = { 43.8, 30.1, 14, 300 }, + [6] = { 43.5, 30, 14, 300 }, + [7] = { 48.7, 16.2, 14, 300 }, + [8] = { 48.5, 16.2, 14, 300 }, + [9] = { 49, 16, 14, 300 }, + [10] = { 48.5, 16, 14, 300 }, + [11] = { 48.3, 15.9, 14, 300 }, + [12] = { 48.8, 15.8, 14, 300 }, + [13] = { 48.6, 15.7, 14, 300 }, + [14] = { 48.3, 15.7, 14, 300 }, + [15] = { 43, 15.7, 14, 300 }, + [16] = { 42.7, 15.4, 14, 300 }, + [17] = { 43, 15.4, 14, 300 }, + [18] = { 42.8, 15.2, 14, 300 }, + [19] = { 42.7, 15.1, 14, 300 }, + [20] = { 42.8, 14.9, 14, 300 }, + [21] = { 42.6, 14.9, 14, 300 }, + [22] = { 43, 14.9, 14, 300 }, + [23] = { 54, 20.7, 17, 413 }, + [24] = { 54, 20.6, 17, 413 }, + [25] = { 48.2, 9.2, 17, 413 }, + [26] = { 48.1, 9.2, 17, 413 }, + [27] = { 48, 9, 17, 413 }, + [28] = { 48.1, 9, 17, 413 }, + [29] = { 47.9, 8.5, 17, 413 }, + [30] = { 47.8, 8.5, 17, 413 }, + [31] = { 47.8, 8.4, 17, 413 }, + }, + ["lvl"] = "3", + }, + [10696] = { + ["coords"] = { + [1] = { 44.7, 51.8, 45, 400 }, + [2] = { 43.2, 50.6, 45, 400 }, + [3] = { 45.8, 49.7, 45, 400 }, + [4] = { 47.6, 48.7, 45, 400 }, + [5] = { 44.5, 48.5, 45, 400 }, + [6] = { 44.3, 48.4, 45, 400 }, + [7] = { 43.2, 48.3, 45, 400 }, + [8] = { 46.6, 48.2, 45, 400 }, + [9] = { 48.3, 48.1, 45, 400 }, + [10] = { 45.2, 47.7, 45, 400 }, + [11] = { 45.2, 47.3, 45, 400 }, + [12] = { 47, 47.2, 45, 400 }, + [13] = { 43.7, 46.2, 45, 400 }, + [14] = { 47, 45.9, 45, 400 }, + [15] = { 46.5, 45.5, 45, 400 }, + [16] = { 46.6, 45.4, 45, 400 }, + [17] = { 48.1, 45.3, 45, 400 }, + [18] = { 47.9, 45.1, 45, 400 }, + [19] = { 48.1, 44.6, 45, 400 }, + [20] = { 46.8, 43.4, 45, 400 }, + [21] = { 45, 43.4, 45, 400 }, + [22] = { 46.3, 43.3, 45, 400 }, + }, + ["fac"] = "A", + ["lvl"] = "41-45", + }, + [10698] = { + ["coords"] = { + [1] = { 60.1, 70.8, 139, 345 }, + [2] = { 59.5, 70.3, 139, 345 }, + [3] = { 14.6, 52.9, 4012, 345 }, + [4] = { 13.9, 52.3, 4012, 345 }, + }, + ["lvl"] = "53-54", + }, + [10736] = "_", + [10740] = { + ["coords"] = { + [1] = { 48.6, 39.6, 1583, 18000 }, + }, + ["fac"] = "AH", + ["lvl"] = "57", + ["rnk"] = "1", + }, + [10756] = { + ["coords"] = { + [1] = { 45.3, 97.1, 17, 300 }, + [2] = { 36.7, 39.2, 400, 300 }, + [3] = { 37.5, 37.7, 400, 300 }, + [4] = { 35.4, 35.9, 400, 300 }, + [5] = { 35.2, 34.8, 400, 300 }, + [6] = { 35, 33.5, 400, 300 }, + }, + ["lvl"] = "28-29", + }, + [10757] = { + ["coords"] = { + [1] = { 44.7, 97.1, 17, 300 }, + [2] = { 45.1, 97.1, 17, 300 }, + [3] = { 44.8, 96.7, 17, 300 }, + [4] = { 37.5, 39.1, 400, 300 }, + [5] = { 36.8, 38, 400, 300 }, + [6] = { 36.8, 37.1, 400, 300 }, + [7] = { 35.8, 35.6, 400, 300 }, + [8] = { 36.7, 34.7, 400, 300 }, + [9] = { 35.9, 34.6, 400, 300 }, + [10] = { 32.8, 34.6, 400, 300 }, + [11] = { 33.6, 33.5, 400, 300 }, + [12] = { 34.5, 33.5, 400, 300 }, + [13] = { 33.6, 32.5, 400, 300 }, + }, + ["lvl"] = "27-28", + }, + [10758] = { + ["coords"] = { + [1] = { 46.7, 98.1, 17, 300 }, + [2] = { 46.9, 97.9, 17, 300 }, + [3] = { 46.6, 97.9, 17, 300 }, + [4] = { 46.6, 97.8, 17, 300 }, + [5] = { 46.8, 97.8, 17, 300 }, + [6] = { 44.2, 96.8, 17, 300 }, + [7] = { 46.4, 96.7, 17, 300 }, + [8] = { 46.2, 96.6, 17, 300 }, + [9] = { 46.4, 96.6, 17, 300 }, + [10] = { 45.3, 96.5, 17, 300 }, + [11] = { 46.4, 96.4, 17, 300 }, + [12] = { 45.5, 96.1, 17, 300 }, + [13] = { 45.3, 96.1, 17, 300 }, + [14] = { 45.5, 96, 17, 300 }, + [15] = { 44.1, 95.6, 17, 300 }, + [16] = { 44.5, 94.8, 17, 300 }, + [17] = { 44.5, 94.7, 17, 300 }, + [18] = { 46.9, 94.6, 17, 300 }, + [19] = { 44.6, 94.5, 17, 300 }, + [20] = { 44.6, 94.4, 17, 300 }, + [21] = { 44.4, 94.3, 17, 300 }, + [22] = { 46.9, 94.3, 17, 300 }, + [23] = { 46.6, 94.2, 17, 300 }, + [24] = { 38.9, 40.6, 400, 300 }, + [25] = { 35.1, 39.2, 400, 300 }, + [26] = { 34.5, 39.1, 400, 300 }, + [27] = { 33.9, 39, 400, 300 }, + [28] = { 33.6, 38.6, 400, 300 }, + [29] = { 34.5, 38.1, 400, 300 }, + [30] = { 33.2, 38.1, 400, 300 }, + [31] = { 34, 38, 400, 300 }, + [32] = { 34.1, 38, 400, 300 }, + [33] = { 34, 37.2, 400, 300 }, + [34] = { 34.4, 37.1, 400, 300 }, + [35] = { 34.4, 36.9, 400, 300 }, + [36] = { 33.4, 36.7, 400, 300 }, + [37] = { 34.2, 36.5, 400, 300 }, + [38] = { 38, 35.7, 400, 300 }, + [39] = { 33.1, 35.4, 400, 300 }, + [40] = { 38.4, 35.4, 400, 300 }, + [41] = { 37.8, 35.3, 400, 300 }, + [42] = { 37.9, 35.2, 400, 300 }, + [43] = { 38.2, 35, 400, 300 }, + [44] = { 32.3, 32.7, 400, 300 }, + [45] = { 37.4, 32.5, 400, 300 }, + [46] = { 37, 32.4, 400, 300 }, + [47] = { 37.5, 32.3, 400, 300 }, + [48] = { 34.9, 32, 400, 300 }, + [49] = { 37.4, 31.8, 400, 300 }, + [50] = { 35.3, 31.2, 400, 300 }, + [51] = { 35.4, 31.2, 400, 300 }, + [52] = { 35, 31, 400, 300 }, + [53] = { 35.4, 31, 400, 300 }, + [54] = { 32.1, 30.1, 400, 300 }, + [55] = { 33, 28, 400, 300 }, + [56] = { 33.1, 28, 400, 300 }, + [57] = { 38.6, 27.8, 400, 300 }, + [58] = { 33.3, 27.4, 400, 300 }, + [59] = { 33.2, 27.3, 400, 300 }, + [60] = { 32.8, 27, 400, 300 }, + [61] = { 38.5, 26.9, 400, 300 }, + [62] = { 37.9, 26.8, 400, 300 }, + }, + ["lvl"] = "25-26", + }, + [10759] = { + ["coords"] = { + [1] = { 46.7, 98.1, 17, 300 }, + [2] = { 46.9, 97.9, 17, 300 }, + [3] = { 46.6, 97.9, 17, 300 }, + [4] = { 46.6, 97.8, 17, 300 }, + [5] = { 46.8, 97.8, 17, 300 }, + [6] = { 44.2, 96.8, 17, 300 }, + [7] = { 46.4, 96.7, 17, 300 }, + [8] = { 46.2, 96.6, 17, 300 }, + [9] = { 46.4, 96.6, 17, 300 }, + [10] = { 45.3, 96.5, 17, 300 }, + [11] = { 46.4, 96.4, 17, 300 }, + [12] = { 45.5, 96.1, 17, 300 }, + [13] = { 45.3, 96.1, 17, 300 }, + [14] = { 45.5, 96, 17, 300 }, + [15] = { 44.1, 95.6, 17, 300 }, + [16] = { 44.5, 94.8, 17, 300 }, + [17] = { 44.5, 94.7, 17, 300 }, + [18] = { 46.9, 94.6, 17, 300 }, + [19] = { 44.6, 94.5, 17, 300 }, + [20] = { 44.6, 94.4, 17, 300 }, + [21] = { 44.4, 94.3, 17, 300 }, + [22] = { 46.9, 94.3, 17, 300 }, + [23] = { 46.6, 94.2, 17, 300 }, + [24] = { 38.9, 40.6, 400, 300 }, + [25] = { 35.1, 39.2, 400, 300 }, + [26] = { 34.5, 39.1, 400, 300 }, + [27] = { 33.9, 39, 400, 300 }, + [28] = { 33.6, 38.6, 400, 300 }, + [29] = { 34.5, 38.1, 400, 300 }, + [30] = { 33.2, 38.1, 400, 300 }, + [31] = { 34, 38, 400, 300 }, + [32] = { 34.1, 38, 400, 300 }, + [33] = { 34, 37.2, 400, 300 }, + [34] = { 34.4, 37.1, 400, 300 }, + [35] = { 34.4, 36.9, 400, 300 }, + [36] = { 33.4, 36.7, 400, 300 }, + [37] = { 34.2, 36.5, 400, 300 }, + [38] = { 38, 35.7, 400, 300 }, + [39] = { 33.1, 35.4, 400, 300 }, + [40] = { 38.4, 35.4, 400, 300 }, + [41] = { 37.8, 35.3, 400, 300 }, + [42] = { 37.9, 35.2, 400, 300 }, + [43] = { 38.2, 35, 400, 300 }, + [44] = { 32.3, 32.7, 400, 300 }, + [45] = { 37.4, 32.5, 400, 300 }, + [46] = { 37, 32.4, 400, 300 }, + [47] = { 37.5, 32.3, 400, 300 }, + [48] = { 34.9, 32, 400, 300 }, + [49] = { 37.4, 31.8, 400, 300 }, + [50] = { 35.3, 31.2, 400, 300 }, + [51] = { 35.4, 31.2, 400, 300 }, + [52] = { 35, 31, 400, 300 }, + [53] = { 35.4, 31, 400, 300 }, + [54] = { 32.1, 30.1, 400, 300 }, + [55] = { 33, 28, 400, 300 }, + [56] = { 33.1, 28, 400, 300 }, + [57] = { 38.6, 27.8, 400, 300 }, + [58] = { 33.3, 27.4, 400, 300 }, + [59] = { 33.2, 27.3, 400, 300 }, + [60] = { 32.8, 27, 400, 300 }, + [61] = { 38.5, 26.9, 400, 300 }, + [62] = { 37.9, 26.8, 400, 300 }, + }, + ["lvl"] = "26-27", + }, + [10760] = { + ["coords"] = { + [1] = { 46.7, 98.1, 17, 300 }, + [2] = { 46.9, 97.9, 17, 300 }, + [3] = { 46.6, 97.9, 17, 300 }, + [4] = { 46.6, 97.8, 17, 300 }, + [5] = { 46.8, 97.8, 17, 300 }, + [6] = { 44.2, 96.8, 17, 300 }, + [7] = { 46.4, 96.7, 17, 300 }, + [8] = { 46.2, 96.6, 17, 300 }, + [9] = { 46.4, 96.6, 17, 300 }, + [10] = { 45.3, 96.5, 17, 300 }, + [11] = { 46.4, 96.4, 17, 300 }, + [12] = { 45.5, 96.1, 17, 300 }, + [13] = { 45.3, 96.1, 17, 300 }, + [14] = { 45.5, 96, 17, 300 }, + [15] = { 44.1, 95.6, 17, 300 }, + [16] = { 44.5, 94.8, 17, 300 }, + [17] = { 44.5, 94.7, 17, 300 }, + [18] = { 46.9, 94.6, 17, 300 }, + [19] = { 44.6, 94.5, 17, 300 }, + [20] = { 44.6, 94.4, 17, 300 }, + [21] = { 44.4, 94.3, 17, 300 }, + [22] = { 46.9, 94.3, 17, 300 }, + [23] = { 46.6, 94.2, 17, 300 }, + [24] = { 38.9, 40.6, 400, 300 }, + [25] = { 35.1, 39.2, 400, 300 }, + [26] = { 34.5, 39.1, 400, 300 }, + [27] = { 33.9, 39, 400, 300 }, + [28] = { 33.6, 38.6, 400, 300 }, + [29] = { 34.5, 38.1, 400, 300 }, + [30] = { 33.2, 38.1, 400, 300 }, + [31] = { 34, 38, 400, 300 }, + [32] = { 34.1, 38, 400, 300 }, + [33] = { 34, 37.2, 400, 300 }, + [34] = { 34.4, 37.1, 400, 300 }, + [35] = { 34.4, 36.9, 400, 300 }, + [36] = { 33.4, 36.7, 400, 300 }, + [37] = { 34.2, 36.5, 400, 300 }, + [38] = { 38, 35.7, 400, 300 }, + [39] = { 33.1, 35.4, 400, 300 }, + [40] = { 38.4, 35.4, 400, 300 }, + [41] = { 37.8, 35.3, 400, 300 }, + [42] = { 37.9, 35.2, 400, 300 }, + [43] = { 38.2, 35, 400, 300 }, + [44] = { 32.3, 32.7, 400, 300 }, + [45] = { 37.4, 32.5, 400, 300 }, + [46] = { 37, 32.4, 400, 300 }, + [47] = { 37.5, 32.3, 400, 300 }, + [48] = { 34.9, 32, 400, 300 }, + [49] = { 37.4, 31.8, 400, 300 }, + [50] = { 35.3, 31.2, 400, 300 }, + [51] = { 35.4, 31.2, 400, 300 }, + [52] = { 35, 31, 400, 300 }, + [53] = { 35.4, 31, 400, 300 }, + [54] = { 32.1, 30.1, 400, 300 }, + [55] = { 33, 28, 400, 300 }, + [56] = { 33.1, 28, 400, 300 }, + [57] = { 38.6, 27.8, 400, 300 }, + [58] = { 33.3, 27.4, 400, 300 }, + [59] = { 33.2, 27.3, 400, 300 }, + [60] = { 32.8, 27, 400, 300 }, + [61] = { 38.5, 26.9, 400, 300 }, + [62] = { 37.9, 26.8, 400, 300 }, + }, + ["lvl"] = "25-27", + }, + [10761] = { + ["coords"] = { + [1] = { 46.5, 94, 17, 300 }, + [2] = { 39.2, 41.6, 400, 300 }, + [3] = { 34.5, 40, 400, 300 }, + [4] = { 33.7, 39.9, 400, 300 }, + [5] = { 33.3, 39, 400, 300 }, + [6] = { 34.9, 38.1, 400, 300 }, + [7] = { 32.7, 38, 400, 300 }, + [8] = { 33, 37.5, 400, 300 }, + [9] = { 34.7, 37.5, 400, 300 }, + [10] = { 37.7, 26.4, 400, 300 }, + }, + ["lvl"] = "28", + }, + [10762] = { + ["coords"] = { + [1] = { 48.8, 39.6, 1583, 18000 }, + [2] = { 48.5, 39.4, 1583, 18000 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [10780] = { + ["coords"] = { + [1] = { 43.8, 81.2, 28, 473 }, + [2] = { 41.4, 80.6, 28, 473 }, + [3] = { 36.1, 75.3, 28, 473 }, + [4] = { 41.3, 55, 28, 473 }, + [5] = { 42.4, 51.5, 28, 473 }, + [6] = { 54.1, 35.8, 28, 473 }, + [7] = { 54.5, 29, 28, 473 }, + [8] = { 52.2, 22.8, 28, 473 }, + [9] = { 44.6, 18.7, 28, 473 }, + [10] = { 51.6, 76.8, 130, 413 }, + [11] = { 41.6, 24.7, 130, 413 }, + [12] = { 53.8, 5.1, 5179, 413 }, + }, + ["lvl"] = "5", + }, + [10781] = { + ["coords"] = { + [1] = { 69.8, 43.2, 1497, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [10782] = { + ["coords"] = { + [1] = { 57.2, 48.1, 1519, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [10799] = { + ["coords"] = { + [1] = { 51.5, 43.5, 1583, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [10808] = { + ["coords"] = {}, + ["lvl"] = "58", + ["rnk"] = "1", + }, + [10809] = { + ["coords"] = { + [1] = { 75.1, 13.3, 2017, 604800 }, + }, + ["lvl"] = "60", + ["rnk"] = "2", + }, + [10810] = "_", + [10811] = { + ["coords"] = { + [1] = { 39.1, 89.6, 2017, 604800 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [10812] = { + ["coords"] = { + [1] = { 33.9, 95, 2017, 604800 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [10814] = { + ["coords"] = { + [1] = { 34.4, 46.4, 1583, 604800 }, + [2] = { 32.6, 46.3, 1583, 604800 }, + }, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [10816] = { + ["coords"] = { + [1] = { 47.9, 49.3, 28, 120 }, + }, + ["lvl"] = "55", + }, + [10817] = { + ["coords"] = { + [1] = { 39.3, 70.5, 139, 54000 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "4", + }, + [10818] = "_", + [10820] = "_", + [10821] = { + ["coords"] = { + [1] = { 66.1, 50.2, 139, 180000 }, + [2] = { 22, 27.6, 4012, 180000 }, + }, + ["lvl"] = "57", + ["rnk"] = "4", + }, + [10822] = { + ["coords"] = { + [1] = { 69, 18.8, 139, 27000 }, + }, + ["lvl"] = "58", + ["rnk"] = "4", + }, + [10823] = { + ["coords"] = { + [1] = { 72.2, 16.9, 139, 54000 }, + }, + ["lvl"] = "59", + ["rnk"] = "4", + }, + [10824] = { + ["coords"] = { + [1] = { 52.2, 18.5, 139, 27000 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "4", + }, + [10825] = { + ["coords"] = { + [1] = { 48.6, 41.4, 139, 108000 }, + [2] = { 0.6, 16.9, 4012, 108000 }, + }, + ["lvl"] = "56", + ["rnk"] = "4", + }, + [10826] = { + ["coords"] = { + [1] = { 26.2, 32.8, 139, 108000 }, + [2] = { 71.2, 97, 5225, 108000 }, + }, + ["lvl"] = "57", + ["rnk"] = "4", + }, + [10827] = { + ["coords"] = { + [1] = { 85.7, 45.3, 139, 27000 }, + [2] = { 45.9, 21.6, 4012, 27000 }, + }, + ["lvl"] = "56", + ["rnk"] = "4", + }, + [10828] = { + ["coords"] = { + [1] = { 88.5, 86.5, 139, 27000 }, + [2] = { 49.4, 72.1, 4012, 27000 }, + }, + ["lvl"] = "59", + ["rnk"] = "2", + }, + [10879] = { + ["coords"] = { + [1] = { 68.6, 48.1, 1497, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "3", + }, + [10881] = { + ["coords"] = { + [1] = { 38.8, 28.8, 215, 30 }, + [2] = { 44.3, 58.8, 1638, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "3", + }, + [10897] = { + ["coords"] = { + [1] = { 48.1, 67.3, 493, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [10898] = "_", + [10899] = { + ["coords"] = { + [1] = { 28.7, 27.7, 1583, 604800 }, + }, + ["lvl"] = "61", + ["rnk"] = "2", + }, + [10901] = { + ["coords"] = { + [1] = { 78.1, 20.1, 2057, 604800 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [10916] = { + ["coords"] = { + [1] = { 60.2, 5.8, 361, 120 }, + [2] = { 53.1, 34.8, 618, 120 }, + [3] = { 53.1, 34.7, 618, 120 }, + [4] = { 53.2, 34.6, 618, 120 }, + }, + ["lvl"] = "57", + }, + [10917] = { + ["coords"] = { + [1] = { 84.7, 61.2, 2017, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [10918] = { + ["coords"] = { + [1] = { 63.8, 73.8, 618, 333 }, + }, + ["fac"] = "AH", + ["lvl"] = "61", + }, + [10919] = { + ["coords"] = { + [1] = { 68.1, 23.6, 148, 300 }, + [2] = { 68, 23.5, 148, 300 }, + [3] = { 68.1, 23.5, 148, 300 }, + [4] = { 68.5, 23.4, 148, 300 }, + [5] = { 68.6, 23.4, 148, 300 }, + [6] = { 69.2, 23, 148, 300 }, + [7] = { 68, 22.9, 148, 300 }, + [8] = { 68.1, 22.9, 148, 300 }, + [9] = { 67.9, 22.9, 148, 300 }, + [10] = { 68.1, 22.8, 148, 300 }, + [11] = { 69.3, 22.8, 148, 300 }, + [12] = { 67.9, 22.8, 148, 300 }, + [13] = { 68, 22.8, 148, 300 }, + [14] = { 67.8, 22.8, 148, 300 }, + [15] = { 68, 22.7, 148, 300 }, + [16] = { 68.1, 22.7, 148, 300 }, + [17] = { 68.2, 22.7, 148, 300 }, + [18] = { 68.3, 22.6, 148, 300 }, + [19] = { 68.2, 22.5, 148, 300 }, + [20] = { 68.1, 22.5, 148, 300 }, + [21] = { 68.2, 22.4, 148, 300 }, + [22] = { 69, 21.6, 148, 300 }, + [23] = { 69.9, 21.4, 148, 300 }, + [24] = { 70.2, 21.3, 148, 300 }, + [25] = { 69.1, 20, 148, 300 }, + [26] = { 68.9, 19.7, 148, 300 }, + [27] = { 69, 19.7, 148, 300 }, + [28] = { 68.2, 19.7, 148, 300 }, + [29] = { 68.8, 19.7, 148, 300 }, + [30] = { 69.1, 19.6, 148, 300 }, + [31] = { 69, 19.6, 148, 300 }, + [32] = { 68.2, 19.1, 148, 300 }, + [33] = { 68.6, 18.9, 148, 300 }, + [34] = { 68.8, 18.8, 148, 300 }, + [35] = { 68.7, 18.8, 148, 300 }, + [36] = { 68.3, 18.6, 148, 300 }, + [37] = { 68.4, 18.6, 148, 300 }, + [38] = { 68.1, 18.1, 148, 300 }, + [39] = { 68.3, 18.1, 148, 300 }, + [40] = { 68.2, 18, 148, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "52-58", + }, + [10920] = { + ["coords"] = { + [1] = { 51.1, 81.8, 361, 300 }, + [2] = { 6.8, 99.2, 616, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "57", + }, + [10921] = { + ["coords"] = { + [1] = { 50.9, 81.6, 361, 300 }, + [2] = { 6.4, 99, 616, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [10922] = { + ["coords"] = { + [1] = { 51.2, 82.1, 361, 300 }, + [2] = { 7, 99.9, 616, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "59", + }, + [10923] = { + ["coords"] = { + [1] = { 50.6, 84.1, 361, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "62", + }, + [10924] = { + ["coords"] = { + [1] = { 51, 81.6, 361, 300 }, + [2] = { 6.5, 98.9, 616, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "63", + }, + [10929] = { + ["coords"] = { + [1] = { 97, 0.7, 616, 300 }, + [2] = { 54.5, 51.2, 618, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "62", + ["rnk"] = "1", + }, + [10930] = { + ["coords"] = { + [1] = { 35, 47.7, 38, 100 }, + [2] = { 16.5, 68.7, 5602, 100 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [10931] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [10942] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [10943] = { + ["coords"] = {}, + ["lvl"] = "55-56", + ["rnk"] = "1", + }, + [10981] = { + ["coords"] = { + [1] = { 54.3, 85, 2597, 430 }, + [2] = { 53.1, 82.6, 2597, 430 }, + [3] = { 54.9, 81.2, 2597, 430 }, + [4] = { 55.2, 78.5, 2597, 430 }, + [5] = { 50, 77.2, 2597, 430 }, + [6] = { 52, 77.1, 2597, 430 }, + [7] = { 52.4, 76.1, 2597, 430 }, + [8] = { 53.8, 75.5, 2597, 430 }, + [9] = { 50.7, 74.1, 2597, 430 }, + [10] = { 51.4, 74, 2597, 430 }, + [11] = { 53.2, 72.6, 2597, 430 }, + [12] = { 48.9, 70.4, 2597, 430 }, + [13] = { 49.4, 68.9, 2597, 430 }, + [14] = { 53, 68.8, 2597, 430 }, + [15] = { 53.4, 58.3, 2597, 430 }, + [16] = { 46.7, 58.2, 2597, 430 }, + [17] = { 46.5, 55.5, 2597, 430 }, + [18] = { 45.2, 53.5, 2597, 430 }, + [19] = { 44.9, 51.9, 2597, 430 }, + }, + ["lvl"] = "50-51", + }, + [10983] = { + ["coords"] = { + [1] = { 41.1, 52.4, 2597, 900 }, + [2] = { 41.3, 51.8, 2597, 900 }, + [3] = { 40.7, 51.5, 2597, 900 }, + [4] = { 40.8, 51, 2597, 900 }, + [5] = { 40.9, 49.9, 2597, 900 }, + [6] = { 36.8, 47.5, 2597, 900 }, + [7] = { 40.6, 46.4, 2597, 900 }, + [8] = { 40.3, 46.1, 2597, 900 }, + [9] = { 45.2, 45.4, 2597, 900 }, + [10] = { 41.2, 44.7, 2597, 900 }, + [11] = { 42.2, 44.7, 2597, 900 }, + [12] = { 41.5, 44.2, 2597, 900 }, + [13] = { 41.1, 44, 2597, 900 }, + [14] = { 42, 43.7, 2597, 900 }, + [15] = { 36.8, 43.7, 2597, 900 }, + [16] = { 41.4, 43.5, 2597, 900 }, + [17] = { 41.1, 43.1, 2597, 900 }, + [18] = { 41.7, 42.4, 2597, 900 }, + [19] = { 41.3, 41.7, 2597, 900 }, + [20] = { 44.9, 38.8, 2597, 900 }, + [21] = { 45.2, 38.5, 2597, 900 }, + [22] = { 44.7, 38.5, 2597, 900 }, + [23] = { 45.3, 38.3, 2597, 900 }, + [24] = { 44.5, 37.9, 2597, 900 }, + [25] = { 44.6, 37.8, 2597, 900 }, + [26] = { 45.3, 37.7, 2597, 900 }, + [27] = { 44.4, 37.4, 2597, 900 }, + }, + ["lvl"] = "57-58", + }, + [10984] = { + ["coords"] = { + [1] = { 42.3, 45, 2597, 1800 }, + [2] = { 42.4, 44.6, 2597, 1800 }, + }, + ["lvl"] = "61-62", + ["rnk"] = "1", + }, + [10986] = { + ["coords"] = { + [1] = { 37.9, 46.8, 2597, 120 }, + [2] = { 38.9, 38.7, 2597, 120 }, + [3] = { 38.5, 33.5, 2597, 120 }, + [4] = { 40.2, 29.3, 2597, 120 }, + [5] = { 49.5, 29, 2597, 120 }, + [6] = { 41.4, 28.9, 2597, 120 }, + [7] = { 43.2, 23.3, 2597, 120 }, + [8] = { 42.8, 22.4, 2597, 120 }, + [9] = { 43.2, 19.8, 2597, 120 }, + }, + ["lvl"] = "52-53", + }, + [10990] = { + ["coords"] = { + [1] = { 51.1, 42.6, 2597, 430 }, + [2] = { 54, 40.7, 2597, 430 }, + [3] = { 46.6, 40.4, 2597, 430 }, + [4] = { 49.9, 34.8, 2597, 430 }, + [5] = { 49.6, 34.6, 2597, 430 }, + [6] = { 51.5, 32.9, 2597, 430 }, + [7] = { 52, 30.8, 2597, 430 }, + [8] = { 52, 29.5, 2597, 430 }, + [9] = { 48.2, 28.8, 2597, 430 }, + [10] = { 49, 28.2, 2597, 430 }, + [11] = { 49.1, 28, 2597, 430 }, + [12] = { 44.6, 27.1, 2597, 430 }, + [13] = { 43, 26.9, 2597, 430 }, + [14] = { 46.4, 26.8, 2597, 430 }, + [15] = { 44.8, 25.7, 2597, 430 }, + [16] = { 47, 25.7, 2597, 430 }, + [17] = { 50.2, 24.6, 2597, 430 }, + [18] = { 47.3, 23.5, 2597, 430 }, + [19] = { 45, 22.5, 2597, 430 }, + [20] = { 49.5, 22.5, 2597, 430 }, + [21] = { 42.7, 22.5, 2597, 430 }, + [22] = { 46.7, 22.1, 2597, 430 }, + [23] = { 45.7, 21.7, 2597, 430 }, + [24] = { 44.9, 21.5, 2597, 430 }, + [25] = { 44.8, 21.3, 2597, 430 }, + [26] = { 47.3, 21.2, 2597, 430 }, + [27] = { 52.7, 21.2, 2597, 430 }, + [28] = { 46.1, 21.2, 2597, 430 }, + [29] = { 43.6, 20.5, 2597, 430 }, + [30] = { 47.2, 20.4, 2597, 430 }, + [31] = { 49, 20.1, 2597, 430 }, + [32] = { 46.9, 20, 2597, 430 }, + [33] = { 53.3, 19.7, 2597, 430 }, + [34] = { 47.6, 15, 2597, 430 }, + [35] = { 48.1, 13.5, 2597, 430 }, + [36] = { 48.2, 13.2, 2597, 430 }, + }, + ["lvl"] = "50-51", + }, + [10997] = { + ["coords"] = { + [1] = { 25.1, 74.7, 2017, 604800 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11019] = { + ["coords"] = { + [1] = { 51.3, 82, 361, 300 }, + [2] = { 7.2, 99.7, 616, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [11024] = { + ["coords"] = { + [1] = { 51.3, 82, 361, 300 }, + [2] = { 7.1, 99.7, 616, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "49", + }, + [11026] = { + ["coords"] = { + [1] = { 61.9, 30.6, 1519, 285 }, + [2] = { 49.7, 93.8, 5581, 285 }, + }, + ["fac"] = "A", + ["lvl"] = "24", + }, + [11029] = { + ["coords"] = { + [1] = { 23.5, 28.1, 1, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "31", + }, + [11032] = { + ["coords"] = { + [1] = { 41.1, 68.7, 2017, 604800 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11033] = { + ["coords"] = { + [1] = { 80.6, 58, 139, 345 }, + [2] = { 39.7, 37.2, 4012, 345 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [11034] = { + ["coords"] = { + [1] = { 81.8, 57.9, 139, 345 }, + [2] = { 41.2, 37.1, 4012, 345 }, + }, + ["lvl"] = "62", + }, + [11035] = { + ["coords"] = { + [1] = { 81.5, 59.7, 139, 300 }, + [2] = { 40.8, 39.2, 4012, 300 }, + }, + ["lvl"] = "57", + }, + [11036] = { + ["coords"] = { + [1] = { 81.7, 57.8, 139, 480 }, + [2] = { 41.1, 37, 4012, 480 }, + }, + ["lvl"] = "60", + }, + [11038] = { + ["coords"] = { + [1] = { 79.5, 63.9, 139, 345 }, + [2] = { 38.4, 44.4, 4012, 345 }, + }, + ["lvl"] = "52", + }, + [11039] = { + ["coords"] = { + [1] = { 81.4, 59.8, 139, 345 }, + [2] = { 40.8, 39.4, 4012, 345 }, + }, + ["lvl"] = "60", + }, + [11043] = { + ["coords"] = { + [1] = { 38.3, 87.5, 2017, 18000 }, + [2] = { 38, 86.8, 2017, 18000 }, + [3] = { 36.4, 82.5, 2017, 18000 }, + [4] = { 36.2, 92.1, 2017, 0 }, + }, + ["lvl"] = "58-60", + ["rnk"] = "1", + }, + [11045] = "_", + [11063] = { + ["coords"] = { + [1] = { 81.5, 59.8, 139, 345 }, + [2] = { 40.9, 39.4, 4012, 345 }, + }, + ["lvl"] = "58", + }, + [11064] = { + ["coords"] = { + [1] = { 25.6, 37.1, 139, 345 }, + [2] = { 38, 36.6, 139, 345 }, + [3] = { 38.6, 35.5, 139, 345 }, + [4] = { 31, 34.7, 139, 345 }, + [5] = { 32.6, 34.3, 139, 345 }, + [6] = { 18.6, 34.3, 139, 345 }, + [7] = { 36.3, 33.7, 139, 345 }, + [8] = { 37.3, 33.1, 139, 345 }, + [9] = { 25.2, 33.1, 139, 345 }, + [10] = { 42.1, 33, 139, 345 }, + [11] = { 26.4, 32.6, 139, 345 }, + [12] = { 14.2, 32.4, 139, 345 }, + [13] = { 17.8, 32.1, 139, 345 }, + [14] = { 25.7, 31.7, 139, 345 }, + [15] = { 31.1, 31.3, 139, 345 }, + [16] = { 17.5, 31.3, 139, 345 }, + [17] = { 16.7, 30.9, 139, 345 }, + [18] = { 16.7, 30.4, 139, 345 }, + [19] = { 28.2, 30.2, 139, 345 }, + [20] = { 36.9, 29.4, 139, 345 }, + [21] = { 35.2, 29.2, 139, 345 }, + [22] = { 42.7, 28.1, 139, 345 }, + [23] = { 27.3, 26.6, 139, 345 }, + [24] = { 41.3, 26.6, 139, 345 }, + [25] = { 42, 24.9, 139, 345 }, + [26] = { 37.1, 23.7, 139, 345 }, + [27] = { 36.4, 22.7, 139, 345 }, + [28] = { 43.4, 22.3, 139, 345 }, + [29] = { 22.3, 21.4, 139, 345 }, + [30] = { 41.2, 21.3, 139, 345 }, + [31] = { 22.3, 19.4, 139, 345 }, + [32] = { 77.2, 99.4, 5225, 345 }, + [33] = { 79.2, 98.9, 5225, 345 }, + [34] = { 61.6, 98.8, 5225, 345 }, + [35] = { 83.8, 98.1, 5225, 345 }, + [36] = { 85.1, 97.3, 5225, 345 }, + [37] = { 69.9, 97.3, 5225, 345 }, + [38] = { 91.1, 97.2, 5225, 345 }, + [39] = { 71.4, 96.7, 5225, 345 }, + [40] = { 56.1, 96.5, 5225, 345 }, + [41] = { 60.7, 96.2, 5225, 345 }, + [42] = { 70.6, 95.6, 5225, 345 }, + [43] = { 77.4, 95.1, 5225, 345 }, + [44] = { 60.3, 95, 5225, 345 }, + [45] = { 59.3, 94.6, 5225, 345 }, + [46] = { 59.2, 94, 5225, 345 }, + [47] = { 73.7, 93.7, 5225, 345 }, + [48] = { 84.6, 92.8, 5225, 345 }, + [49] = { 82.5, 92.5, 5225, 345 }, + [50] = { 91.9, 91.1, 5225, 345 }, + [51] = { 72.6, 89.2, 5225, 345 }, + [52] = { 90.1, 89.2, 5225, 345 }, + [53] = { 91.1, 87.1, 5225, 345 }, + [54] = { 84.9, 85.6, 5225, 345 }, + [55] = { 84, 84.4, 5225, 345 }, + [56] = { 92.8, 83.8, 5225, 345 }, + [57] = { 66.3, 82.7, 5225, 345 }, + [58] = { 90, 82.5, 5225, 345 }, + [59] = { 66.3, 80.2, 5225, 345 }, + [60] = { 60.1, 73.6, 139, 345 }, + [61] = { 60.9, 73, 139, 345 }, + [62] = { 58.4, 72.9, 139, 345 }, + [63] = { 59.3, 69, 139, 345 }, + [64] = { 62.2, 67.8, 139, 345 }, + [65] = { 61.2, 67, 139, 345 }, + [66] = { 61.9, 65.4, 139, 345 }, + [67] = { 60.4, 65.1, 139, 345 }, + [68] = { 14.7, 56.3, 4012, 345 }, + [69] = { 15.6, 55.5, 4012, 345 }, + [70] = { 12.5, 55.5, 4012, 345 }, + [71] = { 13.6, 50.6, 4012, 345 }, + [72] = { 17.2, 49.2, 4012, 345 }, + [73] = { 16, 48.2, 4012, 345 }, + [74] = { 16.8, 46.2, 4012, 345 }, + [75] = { 15, 45.9, 4012, 345 }, + [76] = { 31.8, 63.9, 139, 345 }, + [77] = { 34, 63.7, 139, 345 }, + [78] = { 37.5, 57.4, 139, 345 }, + [79] = { 37, 56.7, 139, 345 }, + [80] = { 38.2, 56.2, 139, 345 }, + [81] = { 79.2, 56.2, 139, 345 }, + [82] = { 37.3, 53.6, 139, 345 }, + [83] = { 39.6, 52, 139, 345 }, + [84] = { 75.6, 50.9, 139, 345 }, + [85] = { 39.8, 49.8, 139, 345 }, + [86] = { 77.5, 47.4, 139, 345 }, + [87] = { 81.9, 44, 139, 345 }, + [88] = { 81.8, 42.1, 139, 345 }, + [89] = { 85.2, 41.9, 139, 345 }, + [90] = { 67.1, 40.8, 139, 345 }, + [91] = { 65.4, 40.8, 139, 345 }, + [92] = { 67.2, 39.9, 139, 345 }, + [93] = { 65.5, 39.7, 139, 345 }, + [94] = { 64.4, 39.2, 139, 345 }, + [95] = { 64.7, 38.3, 139, 345 }, + [96] = { 65.5, 38.3, 139, 345 }, + [97] = { 66, 35.9, 139, 345 }, + [98] = { 38, 34.9, 4012, 345 }, + [99] = { 33.6, 28.5, 4012, 345 }, + [100] = { 36, 24.2, 4012, 345 }, + [101] = { 41.3, 20, 4012, 345 }, + [102] = { 41.2, 17.7, 4012, 345 }, + [103] = { 45.3, 17.4, 4012, 345 }, + [104] = { 23.2, 16.2, 4012, 345 }, + [105] = { 21.1, 16.1, 4012, 345 }, + [106] = { 23.3, 15, 4012, 345 }, + [107] = { 21.3, 14.8, 4012, 345 }, + [108] = { 19.9, 14.2, 4012, 345 }, + [109] = { 20.2, 13.1, 4012, 345 }, + [110] = { 21.2, 13, 4012, 345 }, + [111] = { 21.8, 10.2, 4012, 345 }, + }, + ["fac"] = "AH", + ["lvl"] = "56-57", + }, + [11068] = { + ["coords"] = { + [1] = { 53, 73.7, 1519, 375 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [11069] = { + ["coords"] = { + [1] = { 67.2, 37.7, 1519, 430 }, + [2] = { 52.6, 97.6, 5581, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [11073] = { + ["coords"] = { + [1] = { 50.2, 61.1, 1337, 18000 }, + }, + ["fac"] = "AH", + ["lvl"] = "54", + }, + [11074] = { + ["coords"] = { + [1] = { 51.6, 59.5, 406, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "46", + }, + [11080] = "_", + [11082] = { + ["coords"] = { + [1] = { 55.1, 87.1, 2017, 604800 }, + }, + ["lvl"] = "57", + ["rnk"] = "1", + }, + [11096] = { + ["coords"] = { + [1] = { 72.1, 62.9, 1519, 285 }, + }, + ["fac"] = "A", + ["lvl"] = "24", + }, + [11102] = { + ["coords"] = { + [1] = { 80.3, 56.4, 139, 610 }, + [2] = { 39.4, 35.2, 4012, 610 }, + }, + ["lvl"] = "60", + }, + [11103] = { + ["coords"] = { + [1] = { 66.3, 6.6, 405, 300 }, + [2] = { 44.8, 79.4, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [11104] = { + ["coords"] = { + [1] = { 65.6, 7.8, 405, 300 }, + [2] = { 44.3, 80.4, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [11105] = { + ["coords"] = { + [1] = { 24.9, 68.7, 405, 300 }, + [2] = { 11.4, 92.8, 2100, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [11106] = { + ["coords"] = { + [1] = { 24.1, 68.2, 405, 300 }, + [2] = { 7, 90.3, 2100, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [11138] = { + ["coords"] = { + [1] = { 62.3, 36.6, 618, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [11139] = { + ["coords"] = { + [1] = { 60.5, 36.3, 618, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [11140] = { + ["coords"] = { + [1] = { 14.4, 33.7, 139, 345 }, + [2] = { 56.4, 98.2, 5225, 345 }, + }, + ["fac"] = "AH", + ["lvl"] = "59", + }, + [11144] = "_", + [11190] = { + ["coords"] = { + [1] = { 61.4, 39, 618, 333 }, + [2] = { 61.5, 38.9, 618, 333 }, + [3] = { 61.7, 38.7, 618, 333 }, + [4] = { 61, 38.7, 618, 333 }, + [5] = { 61.5, 38.5, 618, 333 }, + [6] = { 60.9, 38.5, 618, 333 }, + [7] = { 61.6, 38.4, 618, 333 }, + [8] = { 60.7, 38.3, 618, 333 }, + [9] = { 60.5, 38.3, 618, 333 }, + [10] = { 61.8, 38.3, 618, 333 }, + [11] = { 61.1, 38.2, 618, 333 }, + [12] = { 60.5, 38.1, 618, 333 }, + [13] = { 60.7, 38.1, 618, 333 }, + [14] = { 61.4, 37.9, 618, 333 }, + [15] = { 61.9, 37.7, 618, 333 }, + [16] = { 61, 37.6, 618, 333 }, + [17] = { 61.5, 37.3, 618, 333 }, + [18] = { 61.3, 37.3, 618, 333 }, + [19] = { 61.4, 37.3, 618, 333 }, + [20] = { 61.5, 37.1, 618, 333 }, + [21] = { 61.2, 37, 618, 300 }, + [22] = { 61.3, 37, 618, 333 }, + }, + ["lvl"] = "57", + }, + [11196] = { + ["coords"] = { + [1] = { 67.7, 23.3, 148, 300 }, + [2] = { 67.8, 23.2, 148, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "52-58", + }, + [11198] = { + ["coords"] = { + [1] = { 26.9, 33.1, 8, 300 }, + [2] = { 26.5, 31.5, 8, 25 }, + [3] = { 25.1, 31.5, 8, 300 }, + [4] = { 26.6, 30.3, 8, 25 }, + }, + ["lvl"] = "42", + }, + [11218] = { + ["coords"] = { + [1] = { 44.4, 76.4, 148, 60 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [11257] = { + ["coords"] = { + [1] = { 30.7, 96.4, 2057, 18000 }, + [2] = { 22.7, 96.2, 2057, 18000 }, + [3] = { 26.5, 88.2, 2057, 18000 }, + [4] = { 22.8, 80.1, 2057, 18000 }, + [5] = { 29.5, 78.8, 2057, 18000 }, + }, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [11258] = { + ["coords"] = { + [1] = { 47.1, 33.4, 2057, 18000 }, + [2] = { 41, 33.4, 2057, 18000 }, + [3] = { 53.4, 33.4, 2057, 18000 }, + [4] = { 46.7, 19.4, 2057, 18000 }, + [5] = { 40.5, 19.3, 2057, 18000 }, + [6] = { 53.3, 18.8, 2057, 18000 }, + }, + ["lvl"] = "1", + }, + [11260] = { + ["coords"] = { + [1] = { 50.1, 44.4, 12, 270 }, + [2] = { 51.2, 42.9, 12, 270 }, + [3] = { 52.2, 41.1, 12, 270 }, + [4] = { 51.5, 39.6, 12, 270 }, + [5] = { 50.7, 38.8, 12, 270 }, + [6] = { 59.9, 30.2, 12, 120 }, + [7] = { 60, 30, 12, 120 }, + [8] = { 60.8, 29.7, 12, 25 }, + [9] = { 60.3, 29.2, 12, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [11262] = { + ["coords"] = {}, + ["lvl"] = "56-57", + ["rnk"] = "1", + }, + [11277] = { + ["coords"] = { + [1] = { 68.6, 79.7, 28, 25 }, + [2] = { 68.6, 79.5, 28, 25 }, + [3] = { 69.8, 79.2, 28, 25 }, + [4] = { 68.2, 78.7, 28, 25 }, + [5] = { 69.2, 77.4, 28, 25 }, + [6] = { 69.1, 77.3, 28, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "57", + }, + [11278] = { + ["coords"] = { + [1] = { 68, 77.6, 28, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [11279] = { + ["coords"] = { + [1] = { 68.6, 80.4, 28, 25 }, + [2] = { 68.4, 80.3, 28, 25 }, + [3] = { 69.9, 74.1, 28, 25 }, + [4] = { 70, 74, 28, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "51", + }, + [11280] = { + ["coords"] = { + [1] = { 70, 77, 28, 25 }, + [2] = { 69.9, 77, 28, 25 }, + [3] = { 68.6, 76.2, 28, 25 }, + [4] = { 68.7, 76.1, 28, 25 }, + [5] = { 69.5, 75.4, 28, 25 }, + [6] = { 69.7, 75.4, 28, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "51", + }, + [11281] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "52", + }, + [11282] = { + ["coords"] = { + [1] = { 68.9, 79, 28, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [11283] = { + ["coords"] = { + [1] = { 69, 78.9, 28, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [11285] = { + ["coords"] = { + [1] = { 63.8, 74.8, 28, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [11286] = { + ["coords"] = { + [1] = { 70.6, 74.1, 28, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "57", + }, + [11287] = { + ["coords"] = { + [1] = { 69.6, 79.7, 28, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "37", + }, + [11288] = { + ["coords"] = { + [1] = { 51.1, 50.1, 139, 345 }, + [2] = { 51, 50.1, 139, 345 }, + [3] = { 51.1, 50, 139, 345 }, + [4] = { 51, 50, 139, 345 }, + [5] = { 51.2, 50, 139, 345 }, + [6] = { 51.1, 49.9, 139, 345 }, + [7] = { 51.1, 49.8, 139, 345 }, + [8] = { 51.2, 49.8, 139, 345 }, + [9] = { 3.6, 27.5, 4012, 345 }, + [10] = { 3.5, 27.5, 4012, 345 }, + [11] = { 3.6, 27.4, 4012, 345 }, + [12] = { 3.5, 27.4, 4012, 345 }, + [13] = { 3.7, 27.4, 4012, 345 }, + [14] = { 3.6, 27.3, 4012, 345 }, + [15] = { 3.6, 27.2, 4012, 345 }, + [16] = { 3.7, 27.1, 4012, 345 }, + [17] = { 51.2, 50.1, 139, 345 }, + [18] = { 51.2, 49.9, 139, 345 }, + [19] = { 3.7, 27.5, 4012, 345 }, + [20] = { 3.8, 27.2, 4012, 345 }, + }, + ["lvl"] = "57-58", + }, + [11289] = { + ["coords"] = { + [1] = { 51.2, 50.1, 139, 345 }, + [2] = { 51.2, 49.9, 139, 345 }, + [3] = { 3.7, 27.5, 4012, 345 }, + [4] = { 3.8, 27.2, 4012, 345 }, + }, + ["fac"] = "AH", + ["lvl"] = "57-58", + }, + [11290] = { + ["coords"] = { + [1] = { 28.3, 87.2, 139, 345 }, + [2] = { 27.8, 86.1, 139, 345 }, + [3] = { 26.8, 86, 139, 345 }, + [4] = { 27.5, 85, 139, 345 }, + [5] = { 27.6, 84.3, 139, 345 }, + [6] = { 26.7, 83.3, 139, 345 }, + [7] = { 28.3, 83.2, 139, 345 }, + [8] = { 28.5, 83, 139, 345 }, + }, + ["lvl"] = "53-54", + }, + [11291] = { + ["coords"] = { + [1] = { 27.6, 87.4, 139, 345 }, + [2] = { 27.5, 86.1, 139, 345 }, + [3] = { 28.4, 86.1, 139, 345 }, + [4] = { 27.2, 86, 139, 345 }, + [5] = { 27.9, 85.4, 139, 345 }, + [6] = { 27.6, 85.4, 139, 345 }, + [7] = { 27.3, 85.3, 139, 345 }, + [8] = { 29.1, 84.8, 139, 345 }, + [9] = { 26.6, 84.7, 139, 345 }, + [10] = { 28.4, 84.6, 139, 345 }, + [11] = { 27.5, 83.2, 139, 345 }, + }, + ["lvl"] = "54-55", + }, + [11292] = "_", + [11318] = { + ["coords"] = { + [1] = { 65.2, 70.2, 2437, 18000 }, + [2] = { 65.1, 69.1, 2437, 18000 }, + [3] = { 67.7, 67.1, 2437, 18000 }, + [4] = { 64.1, 66, 2437, 18000 }, + [5] = { 69.9, 64.3, 2437, 18000 }, + [6] = { 65.6, 62.9, 2437, 18000 }, + [7] = { 69.4, 62.7, 2437, 18000 }, + [8] = { 67.3, 62.2, 2437, 18000 }, + [9] = { 73.8, 61.7, 2437, 18000 }, + [10] = { 65.3, 61.3, 2437, 18000 }, + [11] = { 62.1, 61.2, 2437, 18000 }, + [12] = { 70.3, 59.9, 2437, 18000 }, + [13] = { 62.4, 56.9, 2437, 18000 }, + [14] = { 65.6, 56.5, 2437, 18000 }, + [15] = { 66.8, 56.4, 2437, 18000 }, + [16] = { 69.4, 54.6, 2437, 18000 }, + [17] = { 62, 52.2, 2437, 18000 }, + [18] = { 63.4, 51.8, 2437, 18000 }, + [19] = { 61.5, 49.6, 2437, 18000 }, + [20] = { 70.7, 48.7, 2437, 18000 }, + [21] = { 60.9, 45.3, 2437, 18000 }, + [22] = { 65.6, 44.9, 2437, 18000 }, + [23] = { 67.2, 41, 2437, 18000 }, + [24] = { 70.1, 40.7, 2437, 18000 }, + [25] = { 64.2, 40, 2437, 18000 }, + [26] = { 57.5, 39.3, 2437, 18000 }, + [27] = { 60.8, 39, 2437, 18000 }, + [28] = { 68.4, 38.1, 2437, 18000 }, + [29] = { 62.1, 36.9, 2437, 18000 }, + }, + ["lvl"] = "13-15", + ["rnk"] = "1", + }, + [11319] = { + ["coords"] = { + [1] = { 71.3, 66.5, 2437, 18000 }, + [2] = { 67.9, 65.1, 2437, 18000 }, + [3] = { 70, 63.2, 2437, 18000 }, + [4] = { 74.4, 62.9, 2437, 18000 }, + [5] = { 65.1, 62.2, 2437, 18000 }, + [6] = { 66.6, 59.6, 2437, 18000 }, + [7] = { 62.3, 50.9, 2437, 18000 }, + [8] = { 70.1, 43.5, 2437, 18000 }, + [9] = { 64.9, 41, 2437, 18000 }, + [10] = { 57.6, 38.1, 2437, 18000 }, + [11] = { 61.2, 38, 2437, 18000 }, + [12] = { 69.1, 37.6, 2437, 18000 }, + [13] = { 63, 37, 2437, 18000 }, + [14] = { 61.8, 35.8, 2437, 18000 }, + }, + ["lvl"] = "13-15", + ["rnk"] = "1", + }, + [11320] = { + ["coords"] = { + [1] = { 60.3, 68.3, 2437, 18000 }, + [2] = { 60.1, 63.4, 2437, 18000 }, + [3] = { 59.5, 42.3, 2437, 18000 }, + [4] = { 66.1, 34.3, 2437, 18000 }, + [5] = { 50.5, 33.4, 2437, 18000 }, + [6] = { 66.4, 29.6, 2437, 18000 }, + [7] = { 55.2, 27.5, 2437, 18000 }, + [8] = { 65.7, 22.4, 2437, 18000 }, + [9] = { 65.1, 17.2, 2437, 18000 }, + [10] = { 69.7, 12.9, 2437, 18000 }, + [11] = { 68.1, 11.3, 2437, 18000 }, + }, + ["lvl"] = "13-14", + ["rnk"] = "1", + }, + [11321] = { + ["coords"] = { + [1] = { 60.3, 59.2, 2437, 18000 }, + [2] = { 53.7, 50.4, 2437, 18000 }, + [3] = { 53.1, 48.4, 2437, 18000 }, + [4] = { 51.1, 43.9, 2437, 18000 }, + [5] = { 50.6, 37.5, 2437, 18000 }, + [6] = { 51.1, 34, 2437, 18000 }, + [7] = { 52.6, 33.3, 2437, 18000 }, + [8] = { 54.2, 30.6, 2437, 18000 }, + [9] = { 51, 30.6, 2437, 18000 }, + [10] = { 54, 27.2, 2437, 18000 }, + [11] = { 48.1, 25.5, 2437, 18000 }, + [12] = { 49.1, 23.2, 2437, 18000 }, + [13] = { 67, 15.4, 2437, 18000 }, + }, + ["lvl"] = "13-15", + ["rnk"] = "1", + }, + [11322] = { + ["coords"] = { + [1] = { 32, 89.3, 2437, 18000 }, + [2] = { 40.9, 88.5, 2437, 18000 }, + [3] = { 28.2, 87.6, 2437, 18000 }, + [4] = { 26.1, 86.6, 2437, 18000 }, + [5] = { 40.1, 86.2, 2437, 18000 }, + [6] = { 34.1, 84, 2437, 18000 }, + [7] = { 25.4, 83.6, 2437, 18000 }, + [8] = { 32.7, 83, 2437, 18000 }, + [9] = { 26.9, 82.7, 2437, 18000 }, + [10] = { 37.8, 82.6, 2437, 18000 }, + [11] = { 37.1, 81.3, 2437, 18000 }, + [12] = { 32.3, 78.4, 2437, 18000 }, + [13] = { 26.6, 77.5, 2437, 18000 }, + [14] = { 33.2, 77.1, 2437, 18000 }, + [15] = { 30.9, 70.8, 2437, 18000 }, + [16] = { 27.3, 69.2, 2437, 18000 }, + [17] = { 33.6, 69, 2437, 18000 }, + [18] = { 41.4, 68.3, 2437, 18000 }, + [19] = { 34.6, 67.9, 2437, 18000 }, + [20] = { 26.6, 67.6, 2437, 18000 }, + [21] = { 32.8, 64.8, 2437, 18000 }, + [22] = { 31.5, 64, 2437, 18000 }, + [23] = { 48.3, 62.7, 2437, 18000 }, + [24] = { 48.8, 62.7, 2437, 18000 }, + [25] = { 33.3, 54.6, 2437, 18000 }, + [26] = { 32.4, 53.6, 2437, 18000 }, + [27] = { 49.2, 49.1, 2437, 18000 }, + [28] = { 48.5, 47.4, 2437, 18000 }, + [29] = { 40.6, 46.1, 2437, 18000 }, + }, + ["lvl"] = "13-15", + ["rnk"] = "1", + }, + [11323] = { + ["coords"] = { + [1] = { 37.3, 91.8, 2437, 18000 }, + [2] = { 36.7, 90.3, 2437, 18000 }, + [3] = { 30.9, 76.3, 2437, 18000 }, + [4] = { 32.8, 75, 2437, 18000 }, + [5] = { 27.8, 73.4, 2437, 18000 }, + [6] = { 26.6, 72.8, 2437, 18000 }, + [7] = { 40.7, 65.7, 2437, 18000 }, + [8] = { 41.8, 65.6, 2437, 18000 }, + [9] = { 46.3, 62.3, 2437, 18000 }, + [10] = { 40.9, 61.5, 2437, 18000 }, + [11] = { 46.9, 60.3, 2437, 18000 }, + [12] = { 35.2, 56.2, 2437, 18000 }, + [13] = { 35.4, 54.8, 2437, 18000 }, + [14] = { 49.5, 53.4, 2437, 18000 }, + [15] = { 48.5, 52.6, 2437, 18000 }, + [16] = { 48.4, 50.3, 2437, 18000 }, + [17] = { 48.4, 49.8, 2437, 18000 }, + [18] = { 46.8, 49.3, 2437, 18000 }, + [19] = { 39.8, 48.5, 2437, 18000 }, + [20] = { 40.8, 48.4, 2437, 18000 }, + [21] = { 46.6, 47.7, 2437, 18000 }, + }, + ["lvl"] = "13-15", + ["rnk"] = "1", + }, + [11324] = { + ["coords"] = { + [1] = { 28.9, 86.2, 2437, 18000 }, + [2] = { 26.6, 84.3, 2437, 18000 }, + [3] = { 36.9, 82.6, 2437, 18000 }, + [4] = { 31.2, 72.3, 2437, 18000 }, + [5] = { 34.3, 68.8, 2437, 18000 }, + [6] = { 40.4, 68.4, 2437, 18000 }, + [7] = { 32, 65.9, 2437, 18000 }, + [8] = { 48.5, 61.1, 2437, 18000 }, + [9] = { 32.6, 55, 2437, 18000 }, + [10] = { 39.6, 45.3, 2437, 18000 }, + }, + ["lvl"] = "13-15", + ["rnk"] = "1", + }, + [11328] = { + ["coords"] = { + [1] = { 81.8, 68.9, 12, 270 }, + [2] = { 82.4, 68.7, 12, 270 }, + [3] = { 81.2, 67.9, 12, 270 }, + [4] = { 81.1, 67.8, 12, 270 }, + [5] = { 82.1, 66.8, 12, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "6-7", + }, + [11337] = "_", + [11338] = { + ["coords"] = { + [1] = { 47.2, 80.8, 1977, 7200 }, + [2] = { 51.1, 76.7, 1977, 7200 }, + [3] = { 50.7, 75.9, 1977, 7200 }, + [4] = { 48.4, 75.4, 1977, 7200 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [11339] = { + ["coords"] = { + [1] = { 41.3, 29.4, 1977, 7200 }, + [2] = { 44.2, 22.6, 1977, 7200 }, + [3] = { 47, 22.4, 1977, 7200 }, + [4] = { 48.6, 21.3, 1977, 7200 }, + [5] = { 50.6, 20.9, 1977, 7200 }, + [6] = { 50.6, 20.8, 1977, 7200 }, + [7] = { 47.9, 20.7, 1977, 7200 }, + [8] = { 47.2, 20.7, 1977, 7200 }, + [9] = { 48.6, 20.3, 1977, 7200 }, + [10] = { 47.9, 20.2, 1977, 7200 }, + [11] = { 47.2, 20.2, 1977, 7200 }, + [12] = { 47.6, 19.2, 1977, 7200 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [11340] = { + ["coords"] = { + [1] = { 59.8, 46.9, 1977, 7200 }, + [2] = { 60.3, 46, 1977, 7200 }, + [3] = { 48, 41.1, 1977, 7200 }, + [4] = { 49.8, 39.8, 1977, 7200 }, + [5] = { 50, 39.7, 1977, 7200 }, + [6] = { 49.7, 39.7, 1977, 7200 }, + [7] = { 47.4, 38.7, 1977, 7200 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [11341] = "_", + [11342] = "_", + [11343] = "_", + [11344] = "_", + [11345] = "_", + [11347] = { + ["coords"] = { + [1] = { 65.1, 33.8, 1977, 604800 }, + }, + ["lvl"] = "60-62", + ["rnk"] = "1", + }, + [11348] = { + ["coords"] = { + [1] = { 65.1, 33.5, 1977, 604800 }, + }, + ["lvl"] = "60-62", + ["rnk"] = "1", + }, + [11349] = "_", + [11350] = { + ["coords"] = { + [1] = { 49.9, 59, 1977, 7200 }, + [2] = { 47.3, 54.3, 1977, 7200 }, + [3] = { 47.6, 53.8, 1977, 7200 }, + [4] = { 51.6, 53.5, 1977, 7200 }, + [5] = { 44.6, 52.6, 1977, 7200 }, + [6] = { 54, 50.4, 1977, 7200 }, + [7] = { 33.5, 48.5, 1977, 7200 }, + [8] = { 33.7, 48, 1977, 7200 }, + [9] = { 33.2, 46.5, 1977, 7200 }, + [10] = { 33.5, 46.4, 1977, 7200 }, + [11] = { 37.9, 46, 1977, 7200 }, + [12] = { 33.2, 42.8, 1977, 7200 }, + [13] = { 56.2, 42.1, 1977, 7200 }, + [14] = { 56.4, 41.7, 1977, 7200 }, + [15] = { 61.6, 36.7, 1977, 7200 }, + [16] = { 62.2, 35.5, 1977, 7200 }, + [17] = { 62.7, 34.8, 1977, 7200 }, + [18] = { 57.6, 33.6, 1977, 7200 }, + [19] = { 57.5, 33.2, 1977, 7200 }, + [20] = { 62.6, 33.1, 1977, 7200 }, + [21] = { 62.3, 32.1, 1977, 7200 }, + [22] = { 62.1, 31.8, 1977, 7200 }, + [23] = { 60.3, 30.5, 1977, 7200 }, + [24] = { 59.9, 30.4, 1977, 7200 }, + [25] = { 45.1, 30, 1977, 7200 }, + [26] = { 60, 29.9, 1977, 7200 }, + [27] = { 53.4, 26.6, 1977, 7200 }, + [28] = { 54, 26.3, 1977, 7200 }, + [29] = { 52.8, 23.9, 1977, 7200 }, + [30] = { 41.5, 23.4, 1977, 7200 }, + [31] = { 41.6, 21.9, 1977, 7200 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11351] = { + ["coords"] = { + [1] = { 37.9, 71.6, 1977, 7200 }, + [2] = { 40.2, 70.3, 1977, 7200 }, + [3] = { 40.2, 70, 1977, 7200 }, + [4] = { 41.1, 55.4, 1977, 7200 }, + [5] = { 41.5, 55.3, 1977, 7200 }, + [6] = { 44, 30.6, 1977, 7200 }, + [7] = { 39.7, 30.2, 1977, 7200 }, + [8] = { 41.3, 28.3, 1977, 7200 }, + [9] = { 42.5, 26.9, 1977, 7200 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11352] = { + ["coords"] = { + [1] = { 59.3, 78.1, 1977, 7200 }, + [2] = { 50.4, 67.1, 1977, 7200 }, + [3] = { 56.9, 65.1, 1977, 7200 }, + [4] = { 40.8, 61.9, 1977, 7200 }, + [5] = { 56.3, 51.5, 1977, 7200 }, + [6] = { 56.5, 45.7, 1977, 7200 }, + [7] = { 48.5, 43.7, 1977, 7200 }, + [8] = { 49.2, 43.6, 1977, 7200 }, + [9] = { 51.9, 41.8, 1977, 7200 }, + [10] = { 45.7, 41.7, 1977, 7200 }, + [11] = { 47.6, 41.1, 1977, 7200 }, + [12] = { 45.7, 38.3, 1977, 7200 }, + [13] = { 51.7, 37.8, 1977, 7200 }, + [14] = { 48.3, 36.2, 1977, 7200 }, + [15] = { 49, 36.1, 1977, 7200 }, + [16] = { 34.8, 35.1, 1977, 7200 }, + [17] = { 53, 27.3, 1977, 7200 }, + [18] = { 40.8, 24.1, 1977, 7200 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [11353] = { + ["coords"] = { + [1] = { 62.4, 82.7, 1977, 7200 }, + [2] = { 62.6, 82.6, 1977, 7200 }, + [3] = { 61, 82.6, 1977, 7200 }, + [4] = { 60.7, 82.3, 1977, 7200 }, + [5] = { 58.3, 82.2, 1977, 7200 }, + [6] = { 58.3, 82, 1977, 7200 }, + [7] = { 57.4, 80.5, 1977, 7200 }, + [8] = { 62.4, 80.5, 1977, 7200 }, + [9] = { 57.3, 80.4, 1977, 7200 }, + [10] = { 59.3, 80.2, 1977, 7200 }, + [11] = { 59.7, 79.9, 1977, 7200 }, + [12] = { 62.4, 79.9, 1977, 7200 }, + [13] = { 58, 79.7, 1977, 7200 }, + [14] = { 58.1, 79.7, 1977, 7200 }, + [15] = { 58.1, 79.5, 1977, 7200 }, + [16] = { 63.6, 79.4, 1977, 7200 }, + [17] = { 58.2, 79.3, 1977, 7200 }, + [18] = { 63.5, 79.3, 1977, 7200 }, + [19] = { 58, 75.9, 1977, 7200 }, + [20] = { 58.2, 75.6, 1977, 7200 }, + [21] = { 59, 73.9, 1977, 7200 }, + [22] = { 59.1, 73.7, 1977, 7200 }, + [23] = { 58.9, 73.7, 1977, 7200 }, + [24] = { 59, 73.5, 1977, 7200 }, + [25] = { 63.4, 72.6, 1977, 7200 }, + [26] = { 64.3, 68, 1977, 7200 }, + [27] = { 41.3, 30.1, 1977, 7200 }, + [28] = { 49.6, 25.7, 1977, 7200 }, + [29] = { 49.5, 25.5, 1977, 7200 }, + [30] = { 45.7, 25.1, 1977, 7200 }, + [31] = { 48.5, 19.3, 1977, 7200 }, + [32] = { 46.2, 16.3, 1977, 7200 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11354] = "_", + [11356] = { + ["coords"] = { + [1] = { 58.4, 82.5, 1977, 7200 }, + [2] = { 62.7, 82.4, 1977, 7200 }, + [3] = { 58.2, 82.3, 1977, 7200 }, + [4] = { 63.4, 79.1, 1977, 7200 }, + [5] = { 63.5, 78.9, 1977, 7200 }, + [6] = { 60.9, 78.3, 1977, 7200 }, + [7] = { 60.8, 78.1, 1977, 7200 }, + [8] = { 61, 76, 1977, 7200 }, + [9] = { 60.8, 75.6, 1977, 7200 }, + [10] = { 60.5, 75.1, 1977, 7200 }, + [11] = { 60.3, 74.9, 1977, 7200 }, + [12] = { 63.3, 73.1, 1977, 7200 }, + [13] = { 63.4, 72.6, 1977, 7200 }, + [14] = { 63.5, 72.6, 1977, 7200 }, + [15] = { 61.2, 70.5, 1977, 7200 }, + [16] = { 61, 70.2, 1977, 7200 }, + [17] = { 61.2, 70, 1977, 7200 }, + [18] = { 61.4, 69.8, 1977, 7200 }, + [19] = { 64.5, 68.2, 1977, 7200 }, + [20] = { 64.4, 67.8, 1977, 7200 }, + [21] = { 64.5, 67.6, 1977, 7200 }, + [22] = { 50.1, 39.9, 1977, 7200 }, + [23] = { 50, 39.8, 1977, 7200 }, + [24] = { 47.6, 38.9, 1977, 7200 }, + [25] = { 47.8, 38.7, 1977, 7200 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [11357] = { + ["coords"] = { + [1] = { 45.5, 45.3, 1977, 7200 }, + [2] = { 45.5, 44.9, 1977, 7200 }, + [3] = { 52.1, 44.7, 1977, 7200 }, + [4] = { 52.4, 44.7, 1977, 7200 }, + [5] = { 46.3, 43.7, 1977, 60 }, + [6] = { 51.6, 43.6, 1977, 7200 }, + [7] = { 51.6, 43.4, 1977, 7200 }, + [8] = { 47.9, 40.8, 1977, 7200 }, + [9] = { 47.7, 40.4, 1977, 7200 }, + [10] = { 49.9, 40.3, 1977, 7200 }, + [11] = { 49.9, 39.1, 1977, 7200 }, + [12] = { 47.8, 39.1, 1977, 7200 }, + [13] = { 47.6, 38.5, 1977, 7200 }, + [14] = { 46.1, 36.3, 1977, 60 }, + [15] = { 45.9, 36.2, 1977, 7200 }, + [16] = { 45.9, 36.1, 1977, 7200 }, + [17] = { 45.5, 35, 1977, 7200 }, + [18] = { 51.9, 34.8, 1977, 7200 }, + [19] = { 52.1, 34.8, 1977, 7200 }, + [20] = { 45.5, 34.7, 1977, 7200 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11358] = "_", + [11359] = { + ["coords"] = { + [1] = { 45.6, 45.1, 1977, 7200 }, + [2] = { 52.2, 44.6, 1977, 7200 }, + [3] = { 51.5, 43.5, 1977, 7200 }, + [4] = { 50.1, 39.9, 1977, 7200 }, + [5] = { 50.2, 39.8, 1977, 7200 }, + [6] = { 50.1, 39.7, 1977, 7200 }, + [7] = { 50.2, 39.6, 1977, 7200 }, + [8] = { 46, 36.1, 1977, 7200 }, + [9] = { 52, 34.9, 1977, 7200 }, + [10] = { 45.7, 34.9, 1977, 7200 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [11360] = { + ["coords"] = { + [1] = { 59.7, 41.8, 1977, 7200 }, + [2] = { 60.2, 41.5, 1977, 7200 }, + [3] = { 60.7, 41.5, 1977, 7200 }, + [4] = { 59.7, 41.1, 1977, 7200 }, + [5] = { 59.9, 40.9, 1977, 7200 }, + [6] = { 60.3, 40.6, 1977, 7200 }, + [7] = { 60.9, 36.8, 1977, 7200 }, + [8] = { 61.4, 36.2, 1977, 7200 }, + [9] = { 61.9, 34.8, 1977, 7200 }, + [10] = { 62.3, 34.7, 1977, 7200 }, + [11] = { 61.8, 32.9, 1977, 7200 }, + [12] = { 61.6, 32.5, 1977, 7200 }, + }, + ["lvl"] = "60", + }, + [11361] = { + ["coords"] = { + [1] = { 54.3, 50.6, 1977, 7200 }, + [2] = { 53.7, 50.5, 1977, 7200 }, + [3] = { 56.1, 42.5, 1977, 7200 }, + [4] = { 59.3, 42.5, 1977, 7200 }, + [5] = { 59, 42.4, 1977, 7200 }, + [6] = { 58.7, 42.4, 1977, 7200 }, + [7] = { 60.4, 41.9, 1977, 7200 }, + [8] = { 56.2, 41.6, 1977, 7200 }, + [9] = { 56.5, 41.3, 1977, 7200 }, + [10] = { 60.6, 41.2, 1977, 7200 }, + [11] = { 60.5, 40, 1977, 7200 }, + [12] = { 61.5, 37.1, 1977, 7200 }, + [13] = { 61.8, 36.8, 1977, 7200 }, + [14] = { 62.6, 35.9, 1977, 7200 }, + [15] = { 62.1, 35.9, 1977, 7200 }, + [16] = { 62.5, 35.3, 1977, 7200 }, + [17] = { 65.5, 34, 1977, 7200 }, + [18] = { 57.7, 33.8, 1977, 7200 }, + [19] = { 57.4, 33.8, 1977, 7200 }, + [20] = { 65.5, 33.2, 1977, 7200 }, + [21] = { 57.7, 33.1, 1977, 7200 }, + [22] = { 62.4, 32.8, 1977, 7200 }, + [23] = { 62.1, 32.2, 1977, 7200 }, + [24] = { 62.5, 31.9, 1977, 7200 }, + [25] = { 61.8, 31.8, 1977, 7200 }, + [26] = { 62.1, 31.4, 1977, 7200 }, + [27] = { 60.1, 30.8, 1977, 7200 }, + [28] = { 60.7, 30.3, 1977, 7200 }, + [29] = { 61.2, 30.3, 1977, 7200 }, + [30] = { 60.5, 30.1, 1977, 7200 }, + [31] = { 60.3, 29.5, 1977, 7200 }, + [32] = { 53.1, 26.8, 1977, 7200 }, + [33] = { 52.7, 26.6, 1977, 7200 }, + [34] = { 54.3, 26.4, 1977, 7200 }, + [35] = { 53.9, 25.9, 1977, 7200 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11364] = "_", + [11365] = { + ["coords"] = { + [1] = { 50.3, 28.9, 1977, 7200 }, + [2] = { 50.5, 28.8, 1977, 7200 }, + [3] = { 50.3, 28.7, 1977, 7200 }, + [4] = { 45, 27.6, 1977, 7200 }, + [5] = { 44.9, 27.4, 1977, 7200 }, + [6] = { 45.1, 27.4, 1977, 7200 }, + [7] = { 45.6, 25.6, 1977, 7200 }, + [8] = { 45.5, 25.6, 1977, 7200 }, + [9] = { 45.5, 25.4, 1977, 7200 }, + [10] = { 45.5, 25.3, 1977, 7200 }, + [11] = { 49.7, 24.9, 1977, 7200 }, + [12] = { 49.8, 24.6, 1977, 7200 }, + [13] = { 49.7, 24.6, 1977, 7200 }, + [14] = { 44.6, 24.3, 1977, 7200 }, + [15] = { 44.9, 23.7, 1977, 7200 }, + [16] = { 44.9, 23.6, 1977, 7200 }, + [17] = { 44.4, 22.9, 1977, 7200 }, + [18] = { 44.2, 22.8, 1977, 7200 }, + [19] = { 44.4, 22.8, 1977, 7200 }, + [20] = { 44.3, 22.7, 1977, 7200 }, + [21] = { 46.9, 22.1, 1977, 7200 }, + [22] = { 47.1, 22, 1977, 7200 }, + [23] = { 47.2, 21.9, 1977, 7200 }, + [24] = { 47.1, 21.9, 1977, 7200 }, + [25] = { 50.5, 21.3, 1977, 7200 }, + [26] = { 45.7, 21.2, 1977, 7200 }, + [27] = { 50.6, 21.2, 1977, 7200 }, + [28] = { 50.5, 21.2, 1977, 7200 }, + [29] = { 49.9, 21.2, 1977, 7200 }, + [30] = { 45.3, 21.1, 1977, 7200 }, + [31] = { 50.6, 21.1, 1977, 7200 }, + [32] = { 48.3, 20.9, 1977, 7200 }, + [33] = { 49.6, 20.8, 1977, 7200 }, + [34] = { 48.3, 20.7, 1977, 7200 }, + [35] = { 48.4, 20.7, 1977, 7200 }, + [36] = { 48.4, 20.5, 1977, 7200 }, + [37] = { 45.3, 20.3, 1977, 7200 }, + [38] = { 45.6, 20.2, 1977, 7200 }, + [39] = { 49.9, 20.2, 1977, 7200 }, + [40] = { 49.5, 20.2, 1977, 7200 }, + [41] = { 47.5, 19.2, 1977, 7200 }, + [42] = { 47.6, 19.1, 1977, 7200 }, + [43] = { 47.4, 19.1, 1977, 7200 }, + [44] = { 47.5, 19.1, 1977, 7200 }, + [45] = { 46.9, 18.9, 1977, 7200 }, + [46] = { 47.1, 18.9, 1977, 7200 }, + [47] = { 47, 18.9, 1977, 7200 }, + [48] = { 47.1, 18.8, 1977, 7200 }, + [49] = { 46.9, 16.3, 1977, 7200 }, + [50] = { 47.2, 16.2, 1977, 7200 }, + [51] = { 47, 16.2, 1977, 7200 }, + [52] = { 47.1, 16.2, 1977, 7200 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11366] = "_", + [11367] = "_", + [11368] = { + ["coords"] = { + [1] = { 34.9, 77.4, 1977, 7200 }, + [2] = { 34.9, 77.2, 1977, 7200 }, + [3] = { 34.7, 77.1, 1977, 7200 }, + [4] = { 34.8, 77, 1977, 7200 }, + [5] = { 34.7, 76.7, 1977, 7200 }, + [6] = { 39.8, 74.9, 1977, 7200 }, + [7] = { 36.7, 74.8, 1977, 7200 }, + [8] = { 39.5, 74.7, 1977, 7200 }, + [9] = { 39.6, 74.7, 1977, 7200 }, + [10] = { 39.3, 74.5, 1977, 7200 }, + [11] = { 37.5, 74.4, 1977, 7200 }, + [12] = { 39.5, 74.4, 1977, 7200 }, + [13] = { 39.6, 74.3, 1977, 7200 }, + [14] = { 40.1, 73.6, 1977, 7200 }, + [15] = { 39.6, 73.4, 1977, 7200 }, + [16] = { 38.3, 72.1, 1977, 7200 }, + [17] = { 38.3, 72, 1977, 7200 }, + [18] = { 38.1, 71.8, 1977, 7200 }, + [19] = { 38.7, 71.3, 1977, 7200 }, + [20] = { 41.2, 71.3, 1977, 7200 }, + [21] = { 37.5, 71.1, 1977, 7200 }, + [22] = { 38.5, 70.8, 1977, 7200 }, + [23] = { 41.2, 70.5, 1977, 7200 }, + [24] = { 40.9, 70.2, 1977, 7200 }, + [25] = { 37.8, 70, 1977, 7200 }, + [26] = { 40.8, 69.6, 1977, 7200 }, + [27] = { 40.5, 68.5, 1977, 7200 }, + [28] = { 40.1, 66.9, 1977, 7200 }, + [29] = { 40.1, 66.6, 1977, 7200 }, + [30] = { 41.2, 65.8, 1977, 7200 }, + [31] = { 41.3, 65.7, 1977, 7200 }, + [32] = { 41, 65.7, 1977, 7200 }, + [33] = { 40.4, 65.4, 1977, 7200 }, + [34] = { 38.9, 58.9, 1977, 7200 }, + [35] = { 39, 58.6, 1977, 7200 }, + [36] = { 39.2, 58.6, 1977, 7200 }, + [37] = { 38.4, 58.4, 1977, 7200 }, + [38] = { 40.3, 54, 1977, 7200 }, + [39] = { 40.7, 53.8, 1977, 7200 }, + [40] = { 40.2, 53.2, 1977, 7200 }, + [41] = { 53, 24, 1977, 7200 }, + [42] = { 53.2, 23.3, 1977, 7200 }, + }, + ["lvl"] = "60", + }, + [11369] = "_", + [11370] = { + ["coords"] = { + [1] = { 47.2, 80.5, 1977, 7200 }, + [2] = { 50.2, 80.2, 1977, 7200 }, + [3] = { 47.1, 80.2, 1977, 7200 }, + [4] = { 50.2, 79.8, 1977, 7200 }, + [5] = { 50.7, 76.9, 1977, 7200 }, + [6] = { 48.7, 75, 1977, 7200 }, + [7] = { 49, 74.8, 1977, 7200 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11371] = { + ["coords"] = { + [1] = { 51, 60.7, 1977, 7200 }, + [2] = { 51.4, 59.6, 1977, 7200 }, + [3] = { 50.9, 59.6, 1977, 7200 }, + [4] = { 48.2, 56.9, 1977, 7200 }, + [5] = { 54.4, 56.8, 1977, 7200 }, + [6] = { 54.1, 56.4, 1977, 7200 }, + [7] = { 53.7, 56.3, 1977, 7200 }, + [8] = { 50.3, 55, 1977, 7200 }, + [9] = { 57.8, 54.3, 1977, 7200 }, + [10] = { 50.2, 54.2, 1977, 7200 }, + [11] = { 56.7, 54.1, 1977, 7200 }, + [12] = { 57.1, 54, 1977, 7200 }, + [13] = { 57.4, 54, 1977, 7200 }, + [14] = { 51.6, 53.2, 1977, 7200 }, + [15] = { 50.6, 53.2, 1977, 7200 }, + [16] = { 56.2, 52.2, 1977, 7200 }, + [17] = { 56.2, 52.1, 1977, 7200 }, + [18] = { 44.2, 51.9, 1977, 7200 }, + [19] = { 36.5, 49.6, 1977, 7200 }, + [20] = { 35.5, 47.6, 1977, 7200 }, + [21] = { 35.6, 46.8, 1977, 7200 }, + [22] = { 35.7, 46.4, 1977, 7200 }, + [23] = { 33, 45.3, 1977, 7200 }, + [24] = { 34.1, 36.2, 1977, 7200 }, + [25] = { 44.9, 30, 1977, 7200 }, + [26] = { 41.7, 29.9, 1977, 7200 }, + [27] = { 56.2, 25.3, 1977, 7200 }, + [28] = { 55.7, 25.3, 1977, 7200 }, + [29] = { 41.4, 24, 1977, 7200 }, + [30] = { 56, 23.6, 1977, 7200 }, + [31] = { 55.8, 23.4, 1977, 7200 }, + [32] = { 55.4, 22.6, 1977, 7200 }, + [33] = { 42.4, 22, 1977, 7200 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11372] = { + ["coords"] = { + [1] = { 50.8, 60.3, 1977, 7200 }, + [2] = { 48.2, 56.7, 1977, 7200 }, + [3] = { 53.6, 55.4, 1977, 7200 }, + [4] = { 50, 55.1, 1977, 7200 }, + [5] = { 50.1, 54.6, 1977, 7200 }, + [6] = { 51.6, 54.5, 1977, 7200 }, + [7] = { 52, 54.3, 1977, 7200 }, + [8] = { 57.2, 54.1, 1977, 7200 }, + [9] = { 57.7, 54, 1977, 7200 }, + [10] = { 52, 53.7, 1977, 7200 }, + [11] = { 50.7, 53.3, 1977, 7200 }, + [12] = { 44.3, 52.4, 1977, 7200 }, + [13] = { 33.8, 50, 1977, 7200 }, + [14] = { 36.9, 50, 1977, 7200 }, + [15] = { 34.1, 49.5, 1977, 7200 }, + [16] = { 36.1, 46.6, 1977, 7200 }, + [17] = { 33.2, 45, 1977, 7200 }, + [18] = { 33.5, 36.5, 1977, 7200 }, + [19] = { 33.8, 36.2, 1977, 7200 }, + [20] = { 34.2, 35.6, 1977, 7200 }, + [21] = { 45.3, 29.5, 1977, 7200 }, + [22] = { 41.3, 29.1, 1977, 7200 }, + [23] = { 58.2, 27.6, 1977, 7200 }, + [24] = { 58.4, 27.6, 1977, 7200 }, + [25] = { 56.6, 25.8, 1977, 7200 }, + [26] = { 56.8, 25.4, 1977, 7200 }, + [27] = { 41.3, 23.4, 1977, 7200 }, + [28] = { 55.5, 23.3, 1977, 7200 }, + [29] = { 42.4, 21.8, 1977, 7200 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11373] = { + ["coords"] = { + [1] = { 51, 57.5, 1977, 7200 }, + [2] = { 51.5, 57.4, 1977, 7200 }, + [3] = { 52, 56.9, 1977, 7200 }, + [4] = { 52.2, 56.3, 1977, 7200 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11374] = { + ["coords"] = { + [1] = { 45.7, 57.9, 1977, 7200 }, + [2] = { 45.8, 56.1, 1977, 7200 }, + [3] = { 40.3, 50.2, 1977, 7200 }, + [4] = { 46.3, 49.2, 1977, 7200 }, + [5] = { 51.3, 48.6, 1977, 7200 }, + [6] = { 48.8, 47.9, 1977, 7200 }, + [7] = { 47.6, 47.8, 1977, 7200 }, + [8] = { 40.6, 47.4, 1977, 7200 }, + [9] = { 52.1, 46.7, 1977, 7200 }, + [10] = { 53.3, 45.8, 1977, 7200 }, + [11] = { 44.2, 45.8, 1977, 7200 }, + [12] = { 42.5, 44.7, 1977, 7200 }, + [13] = { 41.3, 44.4, 1977, 7200 }, + [14] = { 39.2, 42.3, 1977, 7200 }, + [15] = { 36.4, 42.1, 1977, 7200 }, + [16] = { 53.4, 41.9, 1977, 7200 }, + [17] = { 53.9, 40.3, 1977, 7200 }, + [18] = { 55.6, 38.7, 1977, 7200 }, + [19] = { 38.7, 38.6, 1977, 7200 }, + [20] = { 55.4, 36.6, 1977, 7200 }, + [21] = { 56.3, 35.2, 1977, 7200 }, + [22] = { 39.6, 34.9, 1977, 7200 }, + [23] = { 54.1, 34.6, 1977, 7200 }, + [24] = { 43.9, 34.5, 1977, 7200 }, + [25] = { 41.3, 33.6, 1977, 7200 }, + [26] = { 42.5, 33.4, 1977, 7200 }, + [27] = { 46.8, 32.3, 1977, 7200 }, + [28] = { 51.1, 32.2, 1977, 7200 }, + [29] = { 52.6, 31.9, 1977, 7200 }, + [30] = { 49.3, 31.4, 1977, 7200 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11375] = "_", + [11376] = "_", + [11377] = "_", + [11378] = { + ["coords"] = { + [1] = { 44.6, 68.7, 14, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "4", + }, + [11379] = "_", + [11380] = { + ["coords"] = { + [1] = { 31.3, 20.6, 1977, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [11381] = "_", + [11382] = { + ["coords"] = { + [1] = { 62, 66.6, 1977, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [11383] = { + ["coords"] = { + [1] = { 50.7, 16.4, 33, 10800 }, + }, + ["lvl"] = "57", + ["rnk"] = "1", + }, + [11384] = "_", + [11385] = "_", + [11386] = "_", + [11387] = { + ["coords"] = { + [1] = { 51.5, 53.4, 1977, 7200 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [11388] = { + ["coords"] = { + [1] = { 45.9, 77.9, 1977, 7200 }, + }, + ["lvl"] = "57-61", + ["rnk"] = "1", + }, + [11389] = { + ["coords"] = { + [1] = { 49.9, 39.5, 1977, 7200 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [11390] = { + ["coords"] = { + [1] = { 49.9, 40, 1977, 7200 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [11391] = { + ["coords"] = { + [1] = { 63, 68.7, 1977, 7200 }, + }, + ["lvl"] = "60-61", + ["rnk"] = "1", + }, + [11392] = "_", + [11393] = "_", + [11394] = "_", + [11395] = "_", + [11396] = "_", + [11397] = { + ["coords"] = { + [1] = { 35.7, 63.2, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [11398] = "_", + [11399] = "_", + [11400] = "_", + [11402] = "_", + [11403] = "_", + [11404] = "_", + [11405] = "_", + [11407] = { + ["coords"] = { + [1] = { 47, 58.8, 215, 30 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [11408] = "_", + [11409] = "_", + [11410] = "_", + [11411] = "_", + [11412] = "_", + [11413] = "_", + [11414] = "_", + [11415] = "_", + [11416] = "_", + [11440] = { + ["coords"] = { + [1] = { 58.9, 48.5, 357, 300 }, + [2] = { 59.1, 47.1, 357, 300 }, + [3] = { 58.3, 45.9, 357, 300 }, + [4] = { 57.9, 45.8, 357, 300 }, + [5] = { 54.5, 45.6, 357, 300 }, + [6] = { 64.3, 45.6, 357, 300 }, + [7] = { 54, 45.6, 357, 300 }, + [8] = { 63.7, 45.5, 357, 300 }, + [9] = { 55, 45.4, 357, 300 }, + [10] = { 56, 45.3, 357, 300 }, + [11] = { 63.1, 45.3, 357, 300 }, + [12] = { 58.9, 45.2, 357, 300 }, + [13] = { 59.4, 45.2, 357, 300 }, + [14] = { 60.9, 45, 357, 300 }, + [15] = { 56.5, 45, 357, 300 }, + [16] = { 57.5, 44.9, 357, 300 }, + [17] = { 55.2, 44.9, 357, 300 }, + [18] = { 53.7, 44.8, 357, 300 }, + [19] = { 64.6, 44.5, 357, 300 }, + [20] = { 63, 44.3, 357, 300 }, + [21] = { 62.7, 44.3, 357, 300 }, + [22] = { 55.2, 44.2, 357, 300 }, + [23] = { 57, 44.2, 357, 300 }, + [24] = { 58.5, 44, 357, 300 }, + [25] = { 65, 43.9, 357, 300 }, + [26] = { 62, 43.7, 357, 300 }, + [27] = { 62.4, 43.6, 357, 300 }, + [28] = { 55.8, 43.5, 357, 300 }, + [29] = { 61.7, 43.3, 357, 300 }, + [30] = { 56.6, 43.2, 357, 300 }, + [31] = { 56.9, 43.2, 357, 300 }, + [32] = { 59.2, 43.1, 357, 300 }, + [33] = { 58.6, 42.9, 357, 300 }, + [34] = { 61.1, 42.8, 357, 300 }, + [35] = { 57.3, 42.8, 357, 300 }, + [36] = { 59.7, 42.7, 357, 300 }, + [37] = { 60.3, 42.4, 357, 300 }, + [38] = { 58, 42.3, 357, 300 }, + [39] = { 58.8, 41.9, 357, 300 }, + [40] = { 59.4, 40.3, 357, 300 }, + [41] = { 61.2, 39.6, 357, 300 }, + [42] = { 58.9, 39.5, 357, 300 }, + [43] = { 61.7, 39.2, 357, 300 }, + [44] = { 59.5, 39.2, 357, 300 }, + [45] = { 62.2, 38.8, 357, 300 }, + [46] = { 59.9, 38.7, 357, 300 }, + [47] = { 61.7, 38.1, 357, 300 }, + [48] = { 63.8, 36.5, 357, 300 }, + [49] = { 65.6, 36.3, 357, 300 }, + [50] = { 62, 36.1, 357, 300 }, + [51] = { 64.6, 36, 357, 300 }, + [52] = { 61, 36, 357, 300 }, + [53] = { 60.1, 35.9, 357, 300 }, + [54] = { 62.2, 35.9, 357, 300 }, + [55] = { 63.8, 35.8, 357, 300 }, + [56] = { 59.3, 35.8, 357, 300 }, + [57] = { 65.6, 35.8, 357, 300 }, + [58] = { 63.8, 35.5, 357, 300 }, + [59] = { 65, 28.8, 357, 300 }, + [60] = { 64.8, 28.7, 357, 300 }, + [61] = { 64.9, 28.5, 357, 300 }, + [62] = { 53.2, 95.8, 2557, 300 }, + [63] = { 62.4, 92.3, 2557, 300 }, + [64] = { 50.2, 91.7, 2557, 300 }, + [65] = { 65.2, 90.2, 2557, 300 }, + [66] = { 53.2, 89.9, 2557, 300 }, + [67] = { 67.8, 88, 2557, 300 }, + [68] = { 55.7, 87.6, 2557, 300 }, + [69] = { 64.9, 84, 2557, 300 }, + [70] = { 76.1, 75.8, 2557, 300 }, + [71] = { 85.3, 74.3, 2557, 300 }, + [72] = { 66.3, 73.4, 2557, 300 }, + [73] = { 80.3, 73.2, 2557, 300 }, + [74] = { 61.2, 72.8, 2557, 300 }, + [75] = { 56.8, 72.6, 2557, 300 }, + [76] = { 67.7, 72.3, 2557, 300 }, + [77] = { 75.9, 72.1, 2557, 300 }, + [78] = { 52.3, 71.8, 2557, 300 }, + [79] = { 85.5, 71.8, 2557, 300 }, + [80] = { 76, 70.2, 2557, 300 }, + [81] = { 82.2, 34.3, 2557, 300 }, + [82] = { 81.4, 34.3, 2557, 300 }, + [83] = { 81.7, 32.9, 2557, 300 }, + }, + ["lvl"] = "53-54", + ["rnk"] = "1", + }, + [11441] = { + ["coords"] = { + [1] = { 61.6, 93.7, 2557, 18000 }, + [2] = { 62.2, 92.7, 2557, 18000 }, + [3] = { 67, 90.8, 2557, 18000 }, + [4] = { 49.4, 90.4, 2557, 18000 }, + [5] = { 75.5, 89.5, 2557, 18000 }, + [6] = { 66.2, 89.4, 2557, 18000 }, + [7] = { 48.8, 89.1, 2557, 18000 }, + [8] = { 67.8, 89, 2557, 18000 }, + [9] = { 74.8, 88.5, 2557, 18000 }, + [10] = { 66.5, 88.2, 2557, 18000 }, + [11] = { 65.8, 88, 2557, 18000 }, + [12] = { 70.6, 87, 2557, 18000 }, + [13] = { 55.3, 86.8, 2557, 18000 }, + [14] = { 59.2, 85.7, 2557, 18000 }, + [15] = { 59.8, 85.2, 2557, 18000 }, + [16] = { 41.3, 85.1, 2557, 18000 }, + [17] = { 46.3, 84.4, 2557, 18000 }, + [18] = { 53.3, 83.7, 2557, 18000 }, + [19] = { 45.6, 82.3, 2557, 18000 }, + [20] = { 60.1, 82.1, 2557, 18000 }, + [21] = { 52.4, 82.1, 2557, 18000 }, + [22] = { 77.9, 81.5, 2557, 18000 }, + [23] = { 48.7, 81.5, 2557, 18000 }, + [24] = { 66.7, 80.3, 2557, 18000 }, + [25] = { 67.5, 79.4, 2557, 18000 }, + [26] = { 58.9, 79, 2557, 18000 }, + [27] = { 59, 77.9, 2557, 18000 }, + [28] = { 61.6, 77.4, 2557, 18000 }, + [29] = { 43.5, 76.2, 2557, 18000 }, + [30] = { 55.5, 75.9, 2557, 18000 }, + [31] = { 50.4, 75.1, 2557, 18000 }, + [32] = { 52.9, 74, 2557, 18000 }, + [33] = { 63.7, 72.8, 2557, 18000 }, + [34] = { 46.3, 72.1, 2557, 18000 }, + [35] = { 59.1, 71.8, 2557, 18000 }, + [36] = { 42.1, 71.2, 2557, 18000 }, + [37] = { 45.1, 71.1, 2557, 18000 }, + [38] = { 59.1, 70.6, 2557, 18000 }, + [39] = { 64.4, 68.3, 2557, 18000 }, + [40] = { 66, 68.3, 2557, 18000 }, + [41] = { 56.2, 67, 2557, 18000 }, + [42] = { 54.5, 66.5, 2557, 18000 }, + }, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [11442] = { + ["coords"] = { + [1] = { 65.4, 36.1, 357, 3300 }, + [2] = { 62.9, 36, 357, 3300 }, + [3] = { 59.2, 36, 357, 3300 }, + [4] = { 64.5, 35.9, 357, 3300 }, + [5] = { 63.7, 33.8, 357, 3300 }, + [6] = { 63, 33.8, 357, 300 }, + [7] = { 61.1, 33.5, 357, 3300 }, + [8] = { 64.2, 33.2, 357, 300 }, + [9] = { 62.6, 32.8, 357, 300 }, + [10] = { 63.4, 32.3, 357, 300 }, + [11] = { 61.7, 32.3, 357, 3300 }, + [12] = { 62, 32, 357, 300 }, + [13] = { 64, 31.8, 357, 300 }, + [14] = { 61.1, 31.8, 357, 3300 }, + [15] = { 63.2, 31.7, 357, 3300 }, + [16] = { 61.4, 30.8, 357, 300 }, + [17] = { 63.6, 30.7, 357, 300 }, + [18] = { 61.5, 30, 357, 3300 }, + [19] = { 63.7, 30, 357, 300 }, + [20] = { 64.2, 29.5, 357, 3300 }, + [21] = { 60.9, 29.3, 357, 3300 }, + [22] = { 63.7, 29.1, 357, 300 }, + [23] = { 61.6, 29, 357, 300 }, + [24] = { 63.3, 28.2, 357, 300 }, + [25] = { 61.8, 28.1, 357, 3300 }, + [26] = { 61.1, 28, 357, 300 }, + [27] = { 63.9, 28, 357, 300 }, + [28] = { 62.2, 27.5, 357, 300 }, + [29] = { 61.8, 27.4, 357, 300 }, + [30] = { 63.4, 27.3, 357, 300 }, + [31] = { 61, 27.3, 357, 300 }, + [32] = { 63.1, 27.2, 357, 3300 }, + [33] = { 62.6, 26.7, 357, 300 }, + [34] = { 64.1, 26.5, 357, 3300 }, + [35] = { 61.1, 26.4, 357, 3300 }, + [36] = { 63.1, 26.1, 357, 3300 }, + [37] = { 61.6, 26, 357, 3300 }, + [38] = { 62.1, 25.1, 357, 3300 }, + [39] = { 84.2, 73.7, 2557, 3300 }, + [40] = { 71.5, 73, 2557, 3300 }, + [41] = { 51.7, 72.9, 2557, 3300 }, + [42] = { 79.6, 72.5, 2557, 3300 }, + [43] = { 75.7, 61.2, 2557, 3300 }, + [44] = { 71.6, 61, 2557, 300 }, + [45] = { 61.7, 59.8, 2557, 3300 }, + [46] = { 78.2, 57.8, 2557, 300 }, + [47] = { 69.6, 55.8, 2557, 300 }, + [48] = { 73.8, 53.3, 2557, 300 }, + [49] = { 65, 53.2, 2557, 3300 }, + [50] = { 66.7, 51.6, 2557, 300 }, + [51] = { 76.9, 50.7, 2557, 300 }, + [52] = { 61.8, 50.3, 2557, 3300 }, + [53] = { 73.1, 49.7, 2557, 3300 }, + [54] = { 63.7, 45.1, 2557, 300 }, + [55] = { 75.1, 44.5, 2557, 300 }, + [56] = { 64.2, 40.8, 2557, 3300 }, + [57] = { 75.3, 40.8, 2557, 300 }, + [58] = { 78, 38.1, 2557, 3300 }, + [59] = { 60.9, 37.1, 2557, 3300 }, + [60] = { 75.4, 36.1, 2557, 300 }, + [61] = { 64.3, 35.5, 2557, 300 }, + [62] = { 73.5, 31.3, 2557, 300 }, + [63] = { 65.7, 30.9, 2557, 3300 }, + [64] = { 61.9, 30.5, 2557, 300 }, + [65] = { 76.7, 30.2, 2557, 300 }, + [66] = { 67.7, 27.7, 2557, 300 }, + [67] = { 65.4, 27.1, 2557, 300 }, + [68] = { 73.8, 26.6, 2557, 300 }, + [69] = { 61.5, 26.3, 2557, 300 }, + [70] = { 72.5, 25.8, 2557, 3300 }, + [71] = { 69.9, 23.5, 2557, 300 }, + [72] = { 77.5, 22.2, 2557, 3300 }, + [73] = { 62, 21.5, 2557, 3300 }, + [74] = { 72.4, 20.3, 2557, 3300 }, + [75] = { 64.5, 19.4, 2557, 3300 }, + [76] = { 67.2, 15, 2557, 3300 }, + }, + ["lvl"] = "53-54", + ["rnk"] = "1", + }, + [11443] = { + ["coords"] = { + [1] = { 62.6, 45.6, 357, 300 }, + [2] = { 58.6, 44.4, 357, 300 }, + [3] = { 61.3, 44.3, 357, 300 }, + [4] = { 60.9, 44.2, 357, 300 }, + [5] = { 58.9, 48.5, 357, 300 }, + [6] = { 59.1, 47.1, 357, 300 }, + [7] = { 58.3, 45.9, 357, 300 }, + [8] = { 57.9, 45.8, 357, 300 }, + [9] = { 54.5, 45.6, 357, 300 }, + [10] = { 64.3, 45.6, 357, 300 }, + [11] = { 54, 45.6, 357, 300 }, + [12] = { 63.7, 45.5, 357, 300 }, + [13] = { 55, 45.4, 357, 300 }, + [14] = { 56, 45.3, 357, 300 }, + [15] = { 63.1, 45.3, 357, 300 }, + [16] = { 58.9, 45.2, 357, 300 }, + [17] = { 59.4, 45.2, 357, 300 }, + [18] = { 60.9, 45, 357, 300 }, + [19] = { 56.5, 45, 357, 300 }, + [20] = { 57.5, 44.9, 357, 300 }, + [21] = { 55.2, 44.9, 357, 300 }, + [22] = { 53.7, 44.8, 357, 300 }, + [23] = { 64.6, 44.5, 357, 300 }, + [24] = { 63, 44.3, 357, 300 }, + [25] = { 62.7, 44.3, 357, 300 }, + [26] = { 55.2, 44.2, 357, 300 }, + [27] = { 57, 44.2, 357, 300 }, + [28] = { 58.5, 44, 357, 300 }, + [29] = { 65, 43.9, 357, 300 }, + [30] = { 62, 43.7, 357, 300 }, + [31] = { 62.4, 43.6, 357, 300 }, + [32] = { 55.8, 43.5, 357, 300 }, + [33] = { 61.7, 43.3, 357, 300 }, + [34] = { 56.6, 43.2, 357, 300 }, + [35] = { 56.9, 43.2, 357, 300 }, + [36] = { 59.2, 43.1, 357, 300 }, + [37] = { 58.6, 42.9, 357, 300 }, + [38] = { 61.1, 42.8, 357, 300 }, + [39] = { 57.3, 42.8, 357, 300 }, + [40] = { 59.7, 42.7, 357, 300 }, + [41] = { 60.3, 42.4, 357, 300 }, + [42] = { 58, 42.3, 357, 300 }, + [43] = { 58.8, 41.9, 357, 300 }, + [44] = { 59.4, 40.3, 357, 300 }, + [45] = { 61.2, 39.6, 357, 300 }, + [46] = { 58.9, 39.5, 357, 300 }, + [47] = { 61.7, 39.2, 357, 300 }, + [48] = { 59.5, 39.2, 357, 300 }, + [49] = { 62.2, 38.8, 357, 300 }, + [50] = { 59.9, 38.7, 357, 300 }, + [51] = { 61.7, 38.1, 357, 300 }, + [52] = { 63.8, 36.5, 357, 300 }, + [53] = { 65.6, 36.3, 357, 300 }, + [54] = { 65.4, 36.1, 357, 3300 }, + [55] = { 62, 36.1, 357, 300 }, + [56] = { 64.6, 36, 357, 300 }, + [57] = { 62.9, 36, 357, 3300 }, + [58] = { 59.2, 36, 357, 3300 }, + [59] = { 61, 36, 357, 300 }, + [60] = { 60.1, 35.9, 357, 300 }, + [61] = { 64.5, 35.9, 357, 3300 }, + [62] = { 62.2, 35.9, 357, 300 }, + [63] = { 63.8, 35.8, 357, 300 }, + [64] = { 59.3, 35.8, 357, 300 }, + [65] = { 65.6, 35.8, 357, 300 }, + [66] = { 63.8, 35.5, 357, 300 }, + [67] = { 63.7, 33.8, 357, 3300 }, + [68] = { 63, 33.8, 357, 300 }, + [69] = { 61.1, 33.5, 357, 3300 }, + [70] = { 64.2, 33.2, 357, 300 }, + [71] = { 62.6, 32.8, 357, 300 }, + [72] = { 63.4, 32.3, 357, 300 }, + [73] = { 61.7, 32.3, 357, 3300 }, + [74] = { 62, 32, 357, 300 }, + [75] = { 64, 31.8, 357, 300 }, + [76] = { 61.1, 31.8, 357, 3300 }, + [77] = { 63.2, 31.7, 357, 3300 }, + [78] = { 61.4, 30.8, 357, 300 }, + [79] = { 63.6, 30.7, 357, 300 }, + [80] = { 61.5, 30, 357, 3300 }, + [81] = { 63.7, 30, 357, 300 }, + [82] = { 64.2, 29.5, 357, 3300 }, + [83] = { 60.9, 29.3, 357, 3300 }, + [84] = { 63.7, 29.1, 357, 300 }, + [85] = { 61.6, 29, 357, 300 }, + [86] = { 65, 28.8, 357, 300 }, + [87] = { 64.8, 28.7, 357, 300 }, + [88] = { 64.9, 28.5, 357, 300 }, + [89] = { 63.3, 28.2, 357, 300 }, + [90] = { 61.8, 28.1, 357, 3300 }, + [91] = { 61.1, 28, 357, 300 }, + [92] = { 63.9, 28, 357, 300 }, + [93] = { 62.2, 27.5, 357, 300 }, + [94] = { 61.8, 27.4, 357, 300 }, + [95] = { 63.4, 27.3, 357, 300 }, + [96] = { 61, 27.3, 357, 300 }, + [97] = { 63.1, 27.2, 357, 3300 }, + [98] = { 62.6, 26.7, 357, 300 }, + [99] = { 64.1, 26.5, 357, 3300 }, + [100] = { 61.1, 26.4, 357, 3300 }, + [101] = { 63.1, 26.1, 357, 3300 }, + [102] = { 61.6, 26, 357, 3300 }, + [103] = { 62.1, 25.1, 357, 3300 }, + [104] = { 53.2, 95.8, 2557, 300 }, + [105] = { 62.4, 92.3, 2557, 300 }, + [106] = { 50.2, 91.7, 2557, 300 }, + [107] = { 65.2, 90.2, 2557, 300 }, + [108] = { 53.2, 89.9, 2557, 300 }, + [109] = { 67.8, 88, 2557, 300 }, + [110] = { 55.7, 87.6, 2557, 300 }, + [111] = { 64.9, 84, 2557, 300 }, + [112] = { 76.1, 75.8, 2557, 300 }, + [113] = { 85.3, 74.3, 2557, 300 }, + [114] = { 84.2, 73.7, 2557, 3300 }, + [115] = { 66.3, 73.4, 2557, 300 }, + [116] = { 80.3, 73.2, 2557, 300 }, + [117] = { 71.5, 73, 2557, 3300 }, + [118] = { 51.7, 72.9, 2557, 3300 }, + [119] = { 61.2, 72.8, 2557, 300 }, + [120] = { 56.8, 72.6, 2557, 300 }, + [121] = { 79.6, 72.5, 2557, 3300 }, + [122] = { 67.7, 72.3, 2557, 300 }, + [123] = { 75.9, 72.1, 2557, 300 }, + [124] = { 52.3, 71.8, 2557, 300 }, + [125] = { 85.5, 71.8, 2557, 300 }, + [126] = { 76, 70.2, 2557, 300 }, + [127] = { 75.7, 61.2, 2557, 3300 }, + [128] = { 71.6, 61, 2557, 300 }, + [129] = { 61.7, 59.8, 2557, 3300 }, + [130] = { 78.2, 57.8, 2557, 300 }, + [131] = { 69.6, 55.8, 2557, 300 }, + [132] = { 73.8, 53.3, 2557, 300 }, + [133] = { 65, 53.2, 2557, 3300 }, + [134] = { 66.7, 51.6, 2557, 300 }, + [135] = { 76.9, 50.7, 2557, 300 }, + [136] = { 61.8, 50.3, 2557, 3300 }, + [137] = { 73.1, 49.7, 2557, 3300 }, + [138] = { 63.7, 45.1, 2557, 300 }, + [139] = { 75.1, 44.5, 2557, 300 }, + [140] = { 64.2, 40.8, 2557, 3300 }, + [141] = { 75.3, 40.8, 2557, 300 }, + [142] = { 78, 38.1, 2557, 3300 }, + [143] = { 60.9, 37.1, 2557, 3300 }, + [144] = { 75.4, 36.1, 2557, 300 }, + [145] = { 64.3, 35.5, 2557, 300 }, + [146] = { 82.2, 34.3, 2557, 300 }, + [147] = { 81.4, 34.3, 2557, 300 }, + [148] = { 81.7, 32.9, 2557, 300 }, + [149] = { 73.5, 31.3, 2557, 300 }, + [150] = { 65.7, 30.9, 2557, 3300 }, + [151] = { 61.9, 30.5, 2557, 300 }, + [152] = { 76.7, 30.2, 2557, 300 }, + [153] = { 67.7, 27.7, 2557, 300 }, + [154] = { 65.4, 27.1, 2557, 300 }, + [155] = { 73.8, 26.6, 2557, 300 }, + [156] = { 61.5, 26.3, 2557, 300 }, + [157] = { 72.5, 25.8, 2557, 3300 }, + [158] = { 69.9, 23.5, 2557, 300 }, + [159] = { 77.5, 22.2, 2557, 3300 }, + [160] = { 62, 21.5, 2557, 3300 }, + [161] = { 72.4, 20.3, 2557, 3300 }, + [162] = { 64.5, 19.4, 2557, 3300 }, + [163] = { 67.2, 15, 2557, 3300 }, + }, + ["lvl"] = "52-53", + ["rnk"] = "1", + }, + [11444] = { + ["coords"] = { + [1] = { 62.3, 93.8, 2557, 18000 }, + [2] = { 54.3, 91.4, 2557, 18000 }, + [3] = { 67, 90.8, 2557, 18000 }, + [4] = { 44.1, 90.7, 2557, 18000 }, + [5] = { 53.6, 90.5, 2557, 18000 }, + [6] = { 44.7, 89.6, 2557, 18000 }, + [7] = { 66.2, 89.4, 2557, 18000 }, + [8] = { 67.8, 89, 2557, 18000 }, + [9] = { 66.5, 88.2, 2557, 18000 }, + [10] = { 46.4, 85.4, 2557, 18000 }, + [11] = { 45.7, 85.2, 2557, 18000 }, + [12] = { 59.2, 84.2, 2557, 18000 }, + [13] = { 52.4, 83.4, 2557, 18000 }, + [14] = { 78.3, 82.4, 2557, 18000 }, + [15] = { 53.7, 82.3, 2557, 18000 }, + [16] = { 67.4, 81.6, 2557, 18000 }, + [17] = { 68.2, 80.7, 2557, 18000 }, + [18] = { 58.3, 78.3, 2557, 18000 }, + [19] = { 53.9, 74.9, 2557, 18000 }, + [20] = { 53.7, 73.4, 2557, 18000 }, + [21] = { 65.2, 69.1, 2557, 18000 }, + [22] = { 54.5, 68, 2557, 18000 }, + [23] = { 43.1, 67.3, 2557, 18000 }, + [24] = { 65, 67.1, 2557, 18000 }, + [25] = { 55.5, 66.2, 2557, 18000 }, + [26] = { 29.9, 42.5, 2557, 18000 }, + [27] = { 36.4, 37, 2557, 18000 }, + }, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [11445] = { + ["coords"] = { + [1] = { 33, 45, 2557, 18000 }, + [2] = { 33.5, 43.9, 2557, 18000 }, + [3] = { 30.1, 43.4, 2557, 18000 }, + [4] = { 29.5, 42.1, 2557, 18000 }, + [5] = { 35.7, 37.5, 2557, 18000 }, + [6] = { 35.4, 36.1, 2557, 18000 }, + }, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [11446] = { + ["coords"] = { + [1] = { 37, 34.2, 2557, 18000 }, + [2] = { 26.6, 33.6, 2557, 18000 }, + [3] = { 38.6, 30, 2557, 18000 }, + [4] = { 25.2, 30, 2557, 18000 }, + [5] = { 24.9, 27.7, 2557, 18000 }, + [6] = { 38.9, 27.1, 2557, 18000 }, + [7] = { 38.4, 23.3, 2557, 18000 }, + [8] = { 25.3, 23.2, 2557, 18000 }, + [9] = { 37.2, 20.1, 2557, 18000 }, + [10] = { 26.5, 20.1, 2557, 18000 }, + [11] = { 34.9, 17.3, 2557, 18000 }, + [12] = { 29.9, 16.5, 2557, 18000 }, + [13] = { 33.5, 16.4, 2557, 18000 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11447] = { + ["coords"] = { + [1] = { 62.5, 30, 357, 25200 }, + [2] = { 69.3, 41.1, 2557, 25200 }, + }, + ["lvl"] = "60", + ["rnk"] = "2", + }, + [11448] = { + ["coords"] = { + [1] = { 33, 78.9, 2557, 18000 }, + [2] = { 27, 73.5, 2557, 18000 }, + [3] = { 25.3, 67.4, 2557, 18000 }, + [4] = { 22.5, 67, 2557, 18000 }, + [5] = { 21.9, 66.6, 2557, 18000 }, + [6] = { 25.5, 62.6, 2557, 18000 }, + [7] = { 24.4, 58.9, 2557, 18000 }, + [8] = { 32, 56.7, 2557, 18000 }, + [9] = { 22.6, 56.2, 2557, 18000 }, + [10] = { 26.5, 55.6, 2557, 18000 }, + [11] = { 23.3, 55.4, 2557, 18000 }, + [12] = { 25.3, 55.3, 2557, 18000 }, + [13] = { 22.8, 55.1, 2557, 18000 }, + [14] = { 26.9, 54.7, 2557, 18000 }, + [15] = { 22.8, 53.8, 2557, 18000 }, + }, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [11449] = "_", + [11450] = { + ["coords"] = { + [1] = { 33.2, 78, 2557, 18000 }, + [2] = { 27.8, 74.4, 2557, 18000 }, + [3] = { 26.1, 66.7, 2557, 18000 }, + [4] = { 28.4, 66.5, 2557, 18000 }, + [5] = { 25.4, 66.2, 2557, 18000 }, + [6] = { 28.5, 65, 2557, 18000 }, + [7] = { 26, 62, 2557, 18000 }, + [8] = { 24.2, 61.7, 2557, 18000 }, + [9] = { 22.3, 61.6, 2557, 18000 }, + [10] = { 24.1, 59.9, 2557, 18000 }, + [11] = { 32.6, 57.8, 2557, 18000 }, + [12] = { 31.3, 57.3, 2557, 18000 }, + [13] = { 25.3, 53.8, 2557, 18000 }, + }, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [11462] = { + ["coords"] = {}, + ["lvl"] = "53-55", + ["rnk"] = "1", + }, + [11463] = "_", + [11467] = { + ["coords"] = {}, + ["lvl"] = "59", + ["rnk"] = "2", + }, + [11468] = "_", + [11471] = { + ["coords"] = {}, + ["lvl"] = "56-58", + ["rnk"] = "1", + }, + [11473] = { + ["coords"] = {}, + ["lvl"] = "56-59", + ["rnk"] = "1", + }, + [11474] = "_", + [11475] = { + ["coords"] = {}, + ["lvl"] = "57-59", + ["rnk"] = "1", + }, + [11477] = { + ["coords"] = {}, + ["lvl"] = "57-59", + }, + [11478] = "_", + [11479] = "_", + [11480] = { + ["coords"] = {}, + ["lvl"] = "57-60", + ["rnk"] = "1", + }, + [11481] = "_", + [11493] = "_", + [11495] = "_", + [11497] = { + ["coords"] = { + [1] = { 62.5, 29.9, 357, 25200 }, + [2] = { 69.2, 40.5, 2557, 25200 }, + }, + ["lvl"] = "60", + ["rnk"] = "2", + }, + [11498] = { + ["coords"] = { + [1] = { 62.5, 30, 357, 25200 }, + [2] = { 69.3, 41.1, 2557, 25200 }, + }, + ["lvl"] = "58", + ["rnk"] = "2", + }, + [11499] = "_", + [11500] = { + ["coords"] = { + [1] = { 33.9, 21.9, 215, 180 }, + [2] = { 87.4, 49.2, 405, 180 }, + [3] = { 20.3, 24.8, 1638, 180 }, + }, + ["fac"] = "H", + ["lvl"] = "28", + }, + [11501] = { + ["coords"] = { + [1] = { 31.9, 25.9, 2557, 604800 }, + }, + ["lvl"] = "61-62", + ["rnk"] = "1", + }, + [11517] = { + ["coords"] = { + [1] = { 56.1, 38, 2437, 604800 }, + }, + ["lvl"] = "16", + ["rnk"] = "1", + }, + [11518] = { + ["coords"] = { + [1] = { 33, 84.5, 2437, 604800 }, + }, + ["lvl"] = "16", + ["rnk"] = "1", + }, + [11519] = { + ["coords"] = { + [1] = { 41.5, 86.2, 2437, 604800 }, + }, + ["lvl"] = "16", + ["rnk"] = "1", + }, + [11520] = { + ["coords"] = { + [1] = { 41, 57.7, 2437, 604800 }, + }, + ["lvl"] = "16", + ["rnk"] = "1", + }, + [11536] = { + ["coords"] = { + [1] = { 81.6, 60, 139, 345 }, + [2] = { 41, 39.6, 4012, 345 }, + }, + ["lvl"] = "58", + }, + [11537] = "_", + [11538] = "_", + [11539] = "_", + [11540] = "_", + [11541] = "_", + [11542] = "_", + [11543] = "_", + [11544] = "_", + [11545] = "_", + [11549] = "_", + [11550] = "_", + [11551] = { + ["coords"] = { + [1] = { 55.7, 50.8, 2057, 18000 }, + [2] = { 52.9, 50.4, 2057, 18000 }, + [3] = { 36.6, 46.1, 2057, 18000 }, + [4] = { 50, 32.9, 2057, 18000 }, + }, + ["lvl"] = "58-60", + ["rnk"] = "1", + }, + [11558] = { + ["coords"] = { + [1] = { 65.5, 3.3, 361, 300 }, + }, + ["lvl"] = "55", + }, + [11561] = { + ["coords"] = { + [1] = { 63, 92.1, 405, 300 }, + [2] = { 64.1, 92.1, 405, 300 }, + [3] = { 64.1, 91.3, 405, 300 }, + [4] = { 63.3, 91, 405, 300 }, + [5] = { 61.1, 90.9, 405, 300 }, + [6] = { 63.5, 90.8, 405, 300 }, + [7] = { 62.1, 90.6, 405, 300 }, + [8] = { 64.2, 90.4, 405, 300 }, + [9] = { 60.5, 90.3, 405, 300 }, + [10] = { 58.3, 90.2, 405, 300 }, + [11] = { 64.8, 90.1, 405, 300 }, + [12] = { 59.7, 90, 405, 300 }, + [13] = { 63, 90, 405, 300 }, + [14] = { 63.9, 89, 405, 300 }, + [15] = { 64.9, 88.9, 405, 300 }, + [16] = { 63.9, 88.8, 405, 300 }, + [17] = { 59.6, 88.1, 405, 300 }, + [18] = { 64.3, 88.1, 405, 300 }, + [19] = { 64.9, 87.8, 405, 300 }, + [20] = { 63.9, 87.2, 405, 300 }, + [21] = { 65.2, 86.5, 405, 300 }, + [22] = { 65.2, 85.8, 405, 300 }, + [23] = { 64.2, 84.6, 405, 300 }, + [24] = { 64.9, 83.5, 405, 300 }, + [25] = { 64.3, 82.9, 405, 300 }, + [26] = { 64, 81.5, 405, 300 }, + }, + ["lvl"] = "37-38", + }, + [11562] = { + ["coords"] = { + [1] = { 22.9, 84.1, 405, 300 }, + [2] = { 23.4, 82.5, 405, 300 }, + [3] = { 18.8, 82.4, 405, 300 }, + [4] = { 24.1, 81.9, 405, 300 }, + [5] = { 23.3, 80.3, 405, 300 }, + [6] = { 25, 80.2, 405, 300 }, + [7] = { 24, 79.6, 405, 300 }, + [8] = { 18.5, 79.1, 405, 300 }, + [9] = { 24.7, 78.7, 405, 300 }, + [10] = { 19.1, 77.6, 405, 300 }, + [11] = { 18.4, 77.4, 405, 300 }, + [12] = { 26.6, 76.6, 405, 300 }, + [13] = { 18, 75.4, 405, 300 }, + [14] = { 19.6, 72.2, 405, 300 }, + [15] = { 20.4, 69.9, 405, 300 }, + [16] = { 31.3, 35.8, 405, 300 }, + [17] = { 33.8, 34.7, 405, 300 }, + [18] = { 35.1, 34.3, 405, 300 }, + [19] = { 34.7, 33.4, 405, 300 }, + [20] = { 34.9, 31.4, 405, 300 }, + [21] = { 31.6, 31.2, 405, 300 }, + [22] = { 33.4, 30.1, 405, 300 }, + [23] = { 31.4, 27.9, 405, 300 }, + }, + ["lvl"] = "33-34", + }, + [11563] = { + ["coords"] = { + [1] = { 22.1, 84.5, 405, 300 }, + [2] = { 21.2, 83.7, 405, 300 }, + [3] = { 21.8, 82, 405, 300 }, + [4] = { 25.6, 81.7, 405, 300 }, + [5] = { 17.5, 79.5, 405, 300 }, + [6] = { 24.9, 79.3, 405, 300 }, + [7] = { 21.9, 79, 405, 300 }, + [8] = { 23.2, 78, 405, 300 }, + [9] = { 20.5, 77.7, 405, 300 }, + [10] = { 21, 77.6, 405, 300 }, + [11] = { 17.7, 72, 405, 300 }, + [12] = { 33, 35.5, 405, 300 }, + [13] = { 30.8, 34.8, 405, 300 }, + [14] = { 32.3, 34.6, 405, 300 }, + [15] = { 31.5, 33.5, 405, 300 }, + [16] = { 33, 31.1, 405, 300 }, + [17] = { 32.3, 29.7, 405, 300 }, + [18] = { 33.7, 29, 405, 300 }, + [19] = { 32, 27.9, 405, 300 }, + }, + ["lvl"] = "34-35", + }, + [11576] = { + ["coords"] = { + [1] = { 45, 74.4, 405, 300 }, + [2] = { 35.7, 73.4, 405, 300 }, + [3] = { 69.7, 65.4, 405, 300 }, + [4] = { 70.4, 55.1, 405, 300 }, + [5] = { 64.6, 42.4, 405, 300 }, + [6] = { 45.2, 39, 405, 300 }, + [7] = { 48.5, 33.3, 405, 300 }, + [8] = { 42, 29.1, 405, 300 }, + [9] = { 62.2, 27.3, 405, 300 }, + [10] = { 44.6, 20.3, 405, 300 }, + [11] = { 55.9, 20.1, 405, 300 }, + [12] = { 50.1, 9, 405, 300 }, + [13] = { 37.1, 89.6, 406, 300 }, + [14] = { 32.7, 81.3, 406, 300 }, + }, + ["lvl"] = "32-34", + }, + [11577] = { + ["coords"] = { + [1] = { 43.3, 62.4, 405, 300 }, + [2] = { 42.6, 61.4, 405, 300 }, + [3] = { 42.5, 54.1, 405, 300 }, + [4] = { 77.2, 53.7, 405, 300 }, + [5] = { 41.9, 52, 405, 300 }, + [6] = { 41.1, 51, 405, 300 }, + [7] = { 61.6, 50.6, 405, 300 }, + [8] = { 51.5, 50, 405, 300 }, + [9] = { 53.9, 48, 405, 300 }, + [10] = { 52.2, 46.8, 405, 300 }, + [11] = { 40, 45.6, 405, 300 }, + [12] = { 54.6, 44.6, 405, 300 }, + [13] = { 43.4, 44.3, 405, 300 }, + [14] = { 41.3, 41.4, 405, 300 }, + [15] = { 73.8, 10.1, 405, 300 }, + [16] = { 50.4, 82.1, 406, 300 }, + }, + ["lvl"] = "35-37", + }, + [11578] = { + ["coords"] = { + [1] = { 58.1, 90.7, 405, 300 }, + [2] = { 58.2, 86.2, 405, 300 }, + [3] = { 56, 85, 405, 300 }, + [4] = { 30.8, 81.4, 405, 300 }, + [5] = { 29.3, 81.1, 405, 300 }, + [6] = { 31.7, 80.6, 405, 300 }, + [7] = { 61.6, 80.1, 405, 300 }, + [8] = { 62.6, 79.2, 405, 300 }, + [9] = { 61.3, 76.9, 405, 300 }, + [10] = { 61.9, 76.8, 405, 300 }, + [11] = { 59.8, 74.5, 405, 300 }, + [12] = { 32.1, 69.6, 405, 300 }, + [13] = { 56.4, 49, 405, 300 }, + [14] = { 50.9, 97.8, 2100, 300 }, + }, + ["lvl"] = "32-34", + }, + [11579] = "_", + [11580] = "_", + [11581] = "_", + [11582] = { + ["coords"] = { + [1] = { 53.4, 34.8, 2057, 18000 }, + [2] = { 47.5, 32.1, 2057, 18000 }, + [3] = { 40.6, 32.1, 2057, 18000 }, + [4] = { 46.4, 20.7, 2057, 18000 }, + [5] = { 39.6, 19.9, 2057, 18000 }, + [6] = { 53.9, 17.7, 2057, 18000 }, + }, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [11597] = "_", + [11599] = "_", + [11601] = "_", + [11605] = { + ["coords"] = {}, + ["lvl"] = "54-55", + ["rnk"] = "1", + }, + [11606] = "_", + [11617] = "_", + [11618] = "_", + [11619] = "_", + [11620] = { + ["coords"] = { + [1] = { 54.3, 66.1, 139, 345 }, + [2] = { 54.1, 66.1, 139, 345 }, + [3] = { 54.6, 65.9, 139, 345 }, + [4] = { 54.4, 65.8, 139, 345 }, + [5] = { 7.5, 47.1, 4012, 345 }, + [6] = { 7.2, 47.1, 4012, 345 }, + [7] = { 7.8, 46.9, 4012, 345 }, + [8] = { 7.7, 46.7, 4012, 345 }, + }, + ["lvl"] = "57-58", + }, + [11621] = { + ["coords"] = { + [1] = { 54.6, 66, 139, 345 }, + [2] = { 54, 66, 139, 345 }, + [3] = { 54.4, 65.9, 139, 345 }, + [4] = { 54.5, 65.9, 139, 345 }, + [5] = { 54, 65.9, 139, 345 }, + [6] = { 54.1, 65.9, 139, 345 }, + [7] = { 7.9, 47, 4012, 345 }, + [8] = { 7.1, 47, 4012, 345 }, + [9] = { 7.7, 46.8, 4012, 345 }, + [10] = { 7.2, 46.8, 4012, 345 }, + [11] = { 7.3, 46.8, 4012, 345 }, + }, + ["lvl"] = "57-58", + }, + [11622] = { + ["coords"] = { + [1] = { 24.9, 84.6, 2057, 604800 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [11623] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [11624] = { + ["coords"] = { + [1] = { 25.8, 68.2, 405, 300 }, + [2] = { 16.4, 90.4, 2100, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [11627] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "34", + }, + [11656] = { + ["coords"] = { + [1] = { 69.2, 83.5, 331, 300 }, + [2] = { 70.5, 82.5, 331, 300 }, + [3] = { 71.4, 82.3, 331, 300 }, + [4] = { 71.7, 80.3, 331, 300 }, + [5] = { 72.9, 79, 331, 300 }, + [6] = { 88.6, 64.3, 331, 300 }, + [7] = { 87.9, 64.3, 331, 300 }, + [8] = { 85.3, 63.9, 331, 300 }, + [9] = { 87.4, 63.7, 331, 300 }, + [10] = { 84.2, 63.5, 331, 300 }, + [11] = { 84.3, 63, 331, 300 }, + [12] = { 84.1, 62.9, 331, 300 }, + [13] = { 83.7, 62.9, 331, 300 }, + [14] = { 84.4, 61.5, 331, 300 }, + [15] = { 85, 61.1, 331, 300 }, + [16] = { 83.9, 61.1, 331, 300 }, + [17] = { 84.6, 60.8, 331, 300 }, + [18] = { 83.4, 60.7, 331, 300 }, + [19] = { 85.4, 59.2, 331, 300 }, + [20] = { 83.7, 59.1, 331, 300 }, + [21] = { 85.2, 58.8, 331, 300 }, + [22] = { 85.8, 58.6, 331, 300 }, + [23] = { 84.3, 58.3, 331, 300 }, + [24] = { 85.6, 58.2, 331, 300 }, + [25] = { 86.1, 58.1, 331, 300 }, + [26] = { 85.6, 57.8, 331, 300 }, + [27] = { 85.6, 57.4, 331, 300 }, + [28] = { 86.9, 57.1, 331, 300 }, + [29] = { 86.7, 56.7, 331, 300 }, + [30] = { 83.6, 56.3, 331, 300 }, + [31] = { 85.1, 56, 331, 300 }, + [32] = { 86.7, 55.8, 331, 300 }, + [33] = { 85.7, 55.7, 331, 300 }, + [34] = { 87, 55.3, 331, 300 }, + [35] = { 85.9, 55, 331, 300 }, + [36] = { 88.5, 54.1, 331, 300 }, + [37] = { 88, 53.7, 331, 300 }, + [38] = { 87.7, 52.6, 331, 300 }, + [39] = { 88.5, 51, 331, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "26-27", + }, + [11657] = { + ["coords"] = { + [1] = { 52.5, 7.8, 2597, 432000 }, + }, + ["lvl"] = "58", + ["rnk"] = "1", + }, + [11658] = { + ["coords"] = { + [1] = { 35.9, 65.1, 2717, 21600 }, + [2] = { 40, 63.1, 2717, 21600 }, + [3] = { 38.7, 58.7, 2717, 21600 }, + [4] = { 43.2, 49.2, 2717, 21600 }, + [5] = { 38.1, 49, 2717, 21600 }, + [6] = { 37.6, 47.9, 2717, 21600 }, + [7] = { 47.3, 39.9, 2717, 21600 }, + [8] = { 50.5, 37.6, 2717, 21600 }, + [9] = { 51, 36.3, 2717, 21600 }, + [10] = { 35.8, 32.1, 2717, 21600 }, + [11] = { 35.1, 30.9, 2717, 21600 }, + [12] = { 37.8, 27.2, 2717, 21600 }, + [13] = { 36.8, 27.1, 2717, 21600 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [11659] = { + ["coords"] = { + [1] = { 36.3, 77.2, 2717, 21600 }, + [2] = { 37.4, 75.6, 2717, 21600 }, + [3] = { 32.7, 69, 2717, 21600 }, + [4] = { 33.5, 68.2, 2717, 21600 }, + [5] = { 36.3, 66.3, 2717, 21600 }, + [6] = { 39.4, 63.8, 2717, 21600 }, + [7] = { 37.6, 59.1, 2717, 21600 }, + [8] = { 42.5, 48.5, 2717, 21600 }, + [9] = { 46.4, 40.5, 2717, 21600 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [11660] = "_", + [11662] = { + ["coords"] = { + [1] = { 78, 86.5, 2717, 7200 }, + [2] = { 78.1, 85.9, 2717, 7200 }, + [3] = { 78.1, 84.5, 2717, 7200 }, + [4] = { 78.1, 83.9, 2717, 7200 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [11665] = { + ["coords"] = { + [1] = { 76.2, 78.8, 2717, 10800 }, + [2] = { 55.7, 76.2, 2717, 10800 }, + [3] = { 36.3, 75, 2717, 10800 }, + [4] = { 33, 70.4, 2717, 10800 }, + [5] = { 34.8, 68.9, 2717, 10800 }, + [6] = { 37.8, 68.4, 2717, 10800 }, + [7] = { 38.4, 66.8, 2717, 10800 }, + [8] = { 42.1, 62.1, 2717, 10800 }, + [9] = { 67.8, 61.2, 2717, 10800 }, + [10] = { 39.5, 59.8, 2717, 10800 }, + [11] = { 36.4, 59.2, 2717, 10800 }, + [12] = { 44.4, 46.2, 2717, 10800 }, + [13] = { 52.9, 38.9, 2717, 10800 }, + [14] = { 44, 34.5, 2717, 10800 }, + [15] = { 37.4, 30.4, 2717, 10800 }, + [16] = { 43.3, 28.3, 2717, 10800 }, + [17] = { 40.7, 24.5, 2717, 10800 }, + [18] = { 41.6, 23.8, 2717, 10800 }, + }, + ["lvl"] = "61-62", + ["rnk"] = "1", + }, + [11666] = { + ["coords"] = { + [1] = { 56.3, 86.3, 2717, 7200 }, + [2] = { 74, 86.2, 2717, 7200 }, + [3] = { 50.5, 84.5, 2717, 7200 }, + [4] = { 51.9, 81.1, 2717, 7200 }, + [5] = { 49.6, 80.6, 2717, 7200 }, + [6] = { 57, 79.1, 2717, 7200 }, + [7] = { 52.9, 77.2, 2717, 7200 }, + [8] = { 72.1, 77.2, 2717, 7200 }, + [9] = { 57, 74.7, 2717, 7200 }, + [10] = { 59.9, 72.2, 2717, 7200 }, + [11] = { 68.7, 71.7, 2717, 7200 }, + [12] = { 65.3, 60.2, 2717, 7200 }, + [13] = { 65.8, 56.3, 2717, 7200 }, + }, + ["lvl"] = "61-62", + ["rnk"] = "1", + }, + [11667] = { + ["coords"] = { + [1] = { 51.2, 85.5, 2717, 7200 }, + [2] = { 73.4, 85.3, 2717, 7200 }, + [3] = { 56.4, 85.1, 2717, 7200 }, + [4] = { 52.7, 81.6, 2717, 7200 }, + [5] = { 56.5, 80.9, 2717, 7200 }, + [6] = { 49.2, 79.7, 2717, 7200 }, + [7] = { 72.3, 78.9, 2717, 7200 }, + [8] = { 54.1, 77.3, 2717, 7200 }, + [9] = { 57.7, 74, 2717, 7200 }, + [10] = { 61.1, 71.7, 2717, 7200 }, + [11] = { 68, 71.3, 2717, 7200 }, + [12] = { 65, 60.8, 2717, 7200 }, + [13] = { 65.3, 56.7, 2717, 7200 }, + }, + ["lvl"] = "61-62", + ["rnk"] = "1", + }, + [11668] = { + ["coords"] = { + [1] = { 69.4, 81.4, 2717, 7200 }, + [2] = { 74.9, 81.3, 2717, 7200 }, + [3] = { 73.9, 76, 2717, 7200 }, + [4] = { 62.5, 73, 2717, 7200 }, + [5] = { 35.9, 61.1, 2717, 7200 }, + [6] = { 68.2, 59.3, 2717, 7200 }, + [7] = { 41.2, 58.6, 2717, 7200 }, + [8] = { 36.1, 57.4, 2717, 7200 }, + [9] = { 41.5, 55.2, 2717, 7200 }, + [10] = { 68.2, 54.8, 2717, 7200 }, + [11] = { 43.6, 47.7, 2717, 7200 }, + [12] = { 49.6, 43, 2717, 7200 }, + [13] = { 42.6, 35.2, 2717, 7200 }, + [14] = { 51.2, 31.6, 2717, 7200 }, + [15] = { 38.3, 30.4, 2717, 7200 }, + [16] = { 50.3, 29.2, 2717, 7200 }, + [17] = { 36.6, 28.7, 2717, 7200 }, + [18] = { 43.2, 25.6, 2717, 7200 }, + }, + ["lvl"] = "61-62", + ["rnk"] = "1", + }, + [11669] = { + ["coords"] = { + [1] = { 58.8, 48.6, 2717, 420 }, + [2] = { 58.6, 48.5, 2717, 420 }, + [3] = { 59.6, 48.4, 2717, 420 }, + [4] = { 59, 48.3, 2717, 420 }, + [5] = { 58.8, 48.3, 2717, 420 }, + [6] = { 58.4, 47.8, 2717, 420 }, + [7] = { 58.8, 47.7, 2717, 420 }, + [8] = { 59.2, 47.6, 2717, 420 }, + [9] = { 58.7, 47.1, 2717, 420 }, + [10] = { 59.2, 47.1, 2717, 420 }, + [11] = { 58.7, 42, 2717, 420 }, + [12] = { 59.5, 42, 2717, 420 }, + [13] = { 59.9, 42, 2717, 420 }, + [14] = { 59.1, 41.9, 2717, 420 }, + [15] = { 59.7, 41.4, 2717, 420 }, + [16] = { 59.9, 41.4, 2717, 420 }, + [17] = { 58.6, 41.3, 2717, 420 }, + [18] = { 59.3, 41.2, 2717, 420 }, + [19] = { 58.9, 41.2, 2717, 420 }, + [20] = { 60, 40.8, 2717, 420 }, + [21] = { 58.9, 40.6, 2717, 420 }, + [22] = { 59.3, 40.5, 2717, 420 }, + [23] = { 59.1, 40.3, 2717, 420 }, + [24] = { 58.7, 40.3, 2717, 420 }, + [25] = { 57.1, 40.2, 2717, 420 }, + [26] = { 59.4, 40.1, 2717, 420 }, + [27] = { 59, 40, 2717, 420 }, + [28] = { 56.5, 40, 2717, 420 }, + [29] = { 58.8, 39.9, 2717, 420 }, + [30] = { 56.9, 39.8, 2717, 420 }, + [31] = { 56.6, 39.5, 2717, 420 }, + [32] = { 58.6, 39.4, 2717, 420 }, + [33] = { 59.1, 39.4, 2717, 420 }, + [34] = { 58.8, 39.3, 2717, 420 }, + [35] = { 57.1, 39.3, 2717, 420 }, + [36] = { 56.8, 38.9, 2717, 420 }, + [37] = { 57.2, 38.6, 2717, 420 }, + [38] = { 59.1, 38.5, 2717, 420 }, + [39] = { 56.7, 38.4, 2717, 420 }, + [40] = { 58.8, 38.4, 2717, 420 }, + [41] = { 59.5, 38.4, 2717, 420 }, + [42] = { 59.3, 38.2, 2717, 420 }, + [43] = { 57.2, 38.2, 2717, 420 }, + [44] = { 56.9, 38.2, 2717, 420 }, + [45] = { 59, 38.2, 2717, 420 }, + [46] = { 58.9, 37.8, 2717, 420 }, + [47] = { 59.5, 37.7, 2717, 420 }, + [48] = { 59.1, 37.6, 2717, 420 }, + [49] = { 58.9, 37.6, 2717, 420 }, + [50] = { 59.2, 37, 2717, 420 }, + }, + ["lvl"] = "61-62", + ["rnk"] = "1", + }, + [11670] = "_", + [11671] = { + ["coords"] = { + [1] = { 64.4, 46.5, 2717, 3600 }, + [2] = { 63.8, 45.7, 2717, 3600 }, + [3] = { 64.7, 45.5, 2717, 3600 }, + [4] = { 63.9, 44.5, 2717, 3600 }, + [5] = { 64.5, 44.5, 2717, 3600 }, + [6] = { 63.6, 42.1, 2717, 3600 }, + [7] = { 63.1, 41.2, 2717, 3600 }, + [8] = { 64.3, 41.1, 2717, 3600 }, + [9] = { 63.7, 41, 2717, 3600 }, + [10] = { 63.6, 39.9, 2717, 3600 }, + [11] = { 64.5, 37.9, 2717, 3600 }, + [12] = { 63.8, 37.2, 2717, 3600 }, + [13] = { 67.3, 37.1, 2717, 3600 }, + [14] = { 64.3, 36.6, 2717, 3600 }, + [15] = { 67.9, 36.2, 2717, 3600 }, + [16] = { 65, 36.2, 2717, 3600 }, + [17] = { 66.8, 36, 2717, 3600 }, + [18] = { 64.2, 35.5, 2717, 3600 }, + [19] = { 68, 34.8, 2717, 3600 }, + [20] = { 67.3, 34.6, 2717, 3600 }, + [21] = { 65.5, 33.9, 2717, 3600 }, + [22] = { 65, 33.6, 2717, 3600 }, + [23] = { 66, 33.1, 2717, 3600 }, + [24] = { 65.5, 32.7, 2717, 3600 }, + [25] = { 66.1, 31.8, 2717, 3600 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [11672] = { + ["coords"] = { + [1] = { 67.3, 66.7, 2717, 7200 }, + [2] = { 64.4, 66.5, 2717, 7200 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [11673] = { + ["coords"] = { + [1] = { 51.3, 87.7, 2717, 1080 }, + [2] = { 76.9, 84.6, 2717, 1080 }, + [3] = { 70.9, 79.3, 2717, 1080 }, + [4] = { 34.9, 78.3, 2717, 1080 }, + [5] = { 79.4, 74.6, 2717, 1080 }, + [6] = { 39.7, 74.4, 2717, 1080 }, + [7] = { 61.6, 74.2, 2717, 1080 }, + [8] = { 38.8, 74, 2717, 1080 }, + [9] = { 31.7, 72.2, 2717, 1080 }, + [10] = { 66, 70.4, 2717, 1080 }, + [11] = { 42.1, 65.4, 2717, 1080 }, + [12] = { 42.5, 63.7, 2717, 1080 }, + [13] = { 64.4, 63.5, 2717, 1080 }, + [14] = { 53.9, 40.7, 2717, 1080 }, + [15] = { 42.4, 30.1, 2717, 1080 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [11676] = "_", + [11677] = { + ["coords"] = { + [1] = { 44.2, 68.5, 2597, 432000 }, + }, + ["lvl"] = "58", + ["rnk"] = "1", + }, + [11679] = { + ["coords"] = { + [1] = { 36.3, 47.4, 2597, 900 }, + [2] = { 36.9, 46.8, 2597, 900 }, + [3] = { 35.5, 46, 2597, 900 }, + [4] = { 44.6, 45.6, 2597, 900 }, + [5] = { 36.2, 45.1, 2597, 900 }, + [6] = { 42.3, 44.7, 2597, 900 }, + [7] = { 36.6, 44.7, 2597, 900 }, + [8] = { 42.2, 44.4, 2597, 900 }, + [9] = { 37.3, 42.5, 2597, 900 }, + [10] = { 37.1, 42, 2597, 900 }, + [11] = { 36.8, 42, 2597, 900 }, + }, + ["lvl"] = "59-60", + }, + [11680] = { + ["coords"] = { + [1] = { 69.7, 84.5, 331, 300 }, + [2] = { 69.7, 84.4, 331, 300 }, + [3] = { 70.9, 83.8, 331, 300 }, + [4] = { 69.5, 83.7, 331, 300 }, + [5] = { 69.3, 82.4, 331, 300 }, + [6] = { 70.9, 82, 331, 300 }, + [7] = { 72.4, 82, 331, 300 }, + [8] = { 73.4, 81.2, 331, 300 }, + [9] = { 73.6, 79.4, 331, 300 }, + [10] = { 71.5, 79.2, 331, 300 }, + [11] = { 72.5, 78.8, 331, 300 }, + [12] = { 87.4, 64.9, 331, 300 }, + [13] = { 87.1, 64.7, 331, 300 }, + [14] = { 87.1, 64.4, 331, 300 }, + [15] = { 89.6, 62.8, 331, 300 }, + [16] = { 85.3, 62.4, 331, 300 }, + [17] = { 89.8, 62.4, 331, 300 }, + [18] = { 87.6, 62.3, 331, 300 }, + [19] = { 89.4, 62.3, 331, 300 }, + [20] = { 86.6, 62.1, 331, 300 }, + [21] = { 83.1, 62.1, 331, 300 }, + [22] = { 88.1, 61.4, 331, 300 }, + [23] = { 85.2, 60.6, 331, 300 }, + [24] = { 86.3, 60.4, 331, 300 }, + [25] = { 87, 59.4, 331, 300 }, + [26] = { 84.8, 59.2, 331, 300 }, + [27] = { 84.1, 58.8, 331, 300 }, + [28] = { 87.5, 58.5, 331, 300 }, + [29] = { 86.9, 58.1, 331, 300 }, + [30] = { 88.2, 57.7, 331, 300 }, + [31] = { 85.8, 57.6, 331, 300 }, + [32] = { 86.2, 57.1, 331, 300 }, + [33] = { 86.4, 57.1, 331, 300 }, + [34] = { 85.7, 56.3, 331, 300 }, + [35] = { 86.5, 54.8, 331, 300 }, + [36] = { 92.2, 54.3, 331, 300 }, + [37] = { 47.2, 54.3, 331, 300 }, + [38] = { 91.9, 54, 331, 300 }, + [39] = { 91.9, 53.9, 331, 300 }, + [40] = { 87.5, 53.6, 331, 300 }, + [41] = { 47.4, 53.5, 331, 300 }, + [42] = { 47.1, 53.3, 331, 300 }, + [43] = { 89.2, 53.3, 331, 300 }, + [44] = { 47.6, 52.9, 331, 300 }, + [45] = { 89.5, 52.5, 331, 300 }, + [46] = { 89.2, 51.2, 331, 300 }, + [47] = { 88.7, 50.2, 331, 300 }, + [48] = { 89.2, 50, 331, 300 }, + [49] = { 89.6, 49.3, 331, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "26-28", + }, + [11683] = { + ["coords"] = { + [1] = { 71.9, 81, 331, 300 }, + [2] = { 71.5, 81, 331, 300 }, + [3] = { 72.4, 81, 331, 300 }, + [4] = { 72.2, 80.9, 331, 300 }, + [5] = { 73, 80.7, 331, 300 }, + [6] = { 72.8, 80, 331, 300 }, + [7] = { 72.4, 79.5, 331, 300 }, + [8] = { 86.4, 60.3, 331, 300 }, + [9] = { 88.9, 59.7, 331, 300 }, + [10] = { 91.3, 58.8, 331, 300 }, + [11] = { 90.6, 58.7, 331, 300 }, + [12] = { 91.1, 58.4, 331, 300 }, + [13] = { 88.9, 58.3, 331, 300 }, + [14] = { 90.9, 58.2, 331, 300 }, + [15] = { 91.1, 57.9, 331, 300 }, + [16] = { 90.8, 57.9, 331, 300 }, + [17] = { 90.6, 57.6, 331, 300 }, + [18] = { 91.3, 57.6, 331, 300 }, + [19] = { 88.9, 56.6, 331, 300 }, + [20] = { 89.5, 56.4, 331, 300 }, + [21] = { 88.5, 55.3, 331, 300 }, + [22] = { 47.8, 53.4, 331, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "28-29", + }, + [11685] = { + ["coords"] = { + [1] = { 27.6, 62.8, 405, 300 }, + [2] = { 30.7, 60.5, 405, 300 }, + [3] = { 26.4, 61, 2100, 300 }, + [4] = { 42.9, 48.3, 2100, 300 }, + }, + ["lvl"] = "40-42", + }, + [11686] = { + ["coords"] = { + [1] = { 28.4, 63.8, 405, 300 }, + [2] = { 27.4, 63.3, 405, 300 }, + [3] = { 27.9, 62.6, 405, 300 }, + [4] = { 29.1, 62.5, 405, 300 }, + [5] = { 30.4, 61.5, 405, 300 }, + [6] = { 30.6, 66.2, 2100, 300 }, + [7] = { 24.9, 63.5, 2100, 300 }, + [8] = { 27.5, 59.6, 2100, 300 }, + [9] = { 34.5, 59, 2100, 300 }, + [10] = { 41.5, 53.7, 2100, 300 }, + }, + ["lvl"] = "40-41", + }, + [11687] = { + ["coords"] = { + [1] = { 28.4, 65, 405, 300 }, + [2] = { 27.7, 63.6, 405, 300 }, + [3] = { 28.2, 63.1, 405, 300 }, + [4] = { 28.8, 62.9, 405, 300 }, + [5] = { 30.4, 62.9, 405, 300 }, + [6] = { 28.4, 61.8, 405, 300 }, + [7] = { 30.9, 61.7, 405, 300 }, + [8] = { 30.3, 73, 2100, 300 }, + [9] = { 26.7, 65.2, 2100, 300 }, + [10] = { 29.5, 62.5, 2100, 300 }, + [11] = { 32.5, 61.6, 2100, 300 }, + [12] = { 41.4, 61.5, 2100, 300 }, + [13] = { 30.3, 55.4, 2100, 300 }, + [14] = { 44.2, 55.1, 2100, 300 }, + }, + ["lvl"] = "41-42", + }, + [11688] = { + ["coords"] = { + [1] = { 27.8, 62, 405, 27000 }, + [2] = { 27.4, 56.3, 2100, 27000 }, + }, + ["lvl"] = "43", + ["rnk"] = "4", + }, + [11697] = { + ["coords"] = { + [1] = { 53.5, 3.1, 17, 275 }, + [2] = { 53.7, 2.9, 17, 275 }, + [3] = { 53.5, 2.8, 17, 275 }, + [4] = { 53.6, 2.8, 17, 275 }, + [5] = { 53.7, 2.5, 17, 275 }, + [6] = { 53.3, 2.5, 17, 275 }, + [7] = { 53.5, 2.4, 17, 275 }, + [8] = { 53.3, 2.2, 17, 275 }, + [9] = { 53.5, 2, 17, 275 }, + [10] = { 54.3, 1.5, 17, 275 }, + [11] = { 54.6, 1.4, 17, 275 }, + [12] = { 78, 85, 331, 275 }, + [13] = { 78.4, 84.8, 331, 275 }, + [14] = { 78, 84.6, 331, 275 }, + [15] = { 78.1, 84.5, 331, 275 }, + [16] = { 78.4, 84.1, 331, 275 }, + [17] = { 77.7, 84, 331, 275 }, + [18] = { 78, 83.8, 331, 275 }, + [19] = { 77.7, 83.5, 331, 275 }, + [20] = { 78.1, 83.2, 331, 275 }, + [21] = { 79.4, 82.2, 331, 275 }, + [22] = { 80, 82, 331, 275 }, + [23] = { 81.3, 79.5, 331, 300 }, + [24] = { 87.1, 79.3, 331, 300 }, + [25] = { 82.5, 79.3, 331, 300 }, + [26] = { 83, 78.6, 331, 300 }, + [27] = { 88.2, 78.5, 331, 300 }, + [28] = { 85.9, 78.5, 331, 300 }, + [29] = { 84.8, 77.9, 331, 300 }, + [30] = { 88.9, 77.8, 331, 300 }, + [31] = { 85.3, 77.6, 331, 300 }, + [32] = { 89.7, 77.1, 331, 300 }, + [33] = { 89.3, 77, 331, 300 }, + [34] = { 82.1, 77, 331, 300 }, + [35] = { 89.6, 76.5, 331, 300 }, + [36] = { 84.6, 75.1, 331, 300 }, + [37] = { 84.4, 73.4, 331, 300 }, + [38] = { 83, 71.7, 331, 300 }, + [39] = { 84.1, 71.6, 331, 300 }, + [40] = { 84.6, 71.1, 331, 300 }, + [41] = { 82.5, 71, 331, 300 }, + [42] = { 81.3, 70.8, 331, 300 }, + [43] = { 83.4, 70.7, 331, 300 }, + [44] = { 81.8, 70.1, 331, 300 }, + [45] = { 80.7, 70.1, 331, 300 }, + [46] = { 84, 70, 331, 300 }, + [47] = { 83.2, 69.9, 331, 300 }, + [48] = { 81.5, 69.2, 331, 300 }, + [49] = { 82.5, 69, 331, 300 }, + [50] = { 83.9, 68.5, 331, 300 }, + [51] = { 80.6, 68.2, 331, 300 }, + [52] = { 83, 68.1, 331, 300 }, + [53] = { 81.9, 67.8, 331, 300 }, + [54] = { 83.5, 67.6, 331, 300 }, + [55] = { 82.3, 67.6, 331, 300 }, + [56] = { 82.9, 66.6, 331, 300 }, + [57] = { 81.7, 66.5, 331, 300 }, + [58] = { 80.6, 66.3, 331, 300 }, + [59] = { 81.2, 65.7, 331, 300 }, + [60] = { 80.6, 64.9, 331, 300 }, + }, + ["lvl"] = "29-30", + }, + [11698] = { + ["coords"] = { + [1] = { 56.1, 49.8, 1377, 300 }, + [2] = { 50.2, 49.6, 1377, 300 }, + [3] = { 49.5, 48.5, 1377, 300 }, + [4] = { 47.2, 45.9, 1377, 300 }, + [5] = { 54.1, 44.9, 1377, 300 }, + [6] = { 56.3, 44.2, 1377, 300 }, + [7] = { 48.5, 43.9, 1377, 300 }, + [8] = { 51, 43, 1377, 300 }, + [9] = { 47.7, 42.8, 1377, 300 }, + [10] = { 51.9, 41.1, 1377, 300 }, + [11] = { 50.2, 41, 1377, 300 }, + [12] = { 53.4, 39.7, 1377, 300 }, + [13] = { 42.1, 30.4, 1377, 300 }, + [14] = { 46.6, 29.8, 1377, 300 }, + [15] = { 47.9, 25.8, 1377, 300 }, + [16] = { 46.5, 24.2, 1377, 300 }, + [17] = { 46.4, 23, 1377, 300 }, + [18] = { 43.6, 17.7, 1377, 300 }, + [19] = { 42.5, 12.6, 1377, 300 }, + }, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [11704] = { + ["coords"] = { + [1] = { 53.4, 22.1, 139, 345 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [11711] = { + ["coords"] = { + [1] = { 45.9, 90.3, 148, 60 }, + [2] = { 29.7, 71.5, 361, 60 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [11712] = { + ["coords"] = { + [1] = { 22.7, 52.7, 331, 300 }, + [2] = { 59.1, 19.8, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "41", + }, + [11715] = { + ["coords"] = { + [1] = { 68.5, 8.9, 405, 300 }, + [2] = { 46.4, 81.2, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [11719] = "_", + [11721] = { + ["coords"] = { + [1] = { 44.4, 30.3, 1377, 300 }, + [2] = { 47.4, 27.4, 1377, 300 }, + [3] = { 45.7, 26.9, 1377, 300 }, + [4] = { 50.6, 26.7, 1377, 300 }, + [5] = { 49.1, 23.9, 1377, 300 }, + [6] = { 48, 23, 1377, 300 }, + [7] = { 43.3, 18.2, 1377, 300 }, + [8] = { 43.9, 16.8, 1377, 300 }, + [9] = { 40.4, 15.2, 1377, 300 }, + [10] = { 45.7, 13.2, 1377, 300 }, + [11] = { 41.5, 11.9, 1377, 300 }, + }, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [11722] = { + ["coords"] = { + [1] = { 60.8, 84.2, 357, 300 }, + [2] = { 61.4, 83.7, 357, 300 }, + [3] = { 45.4, 30.8, 1377, 300 }, + [4] = { 47.5, 30.8, 1377, 300 }, + [5] = { 43.9, 30.1, 1377, 300 }, + [6] = { 42, 28, 1377, 300 }, + [7] = { 47.4, 27.4, 1377, 300 }, + [8] = { 40.6, 27.4, 1377, 300 }, + [9] = { 40.6, 27.3, 1377, 300 }, + [10] = { 50, 26.8, 1377, 300 }, + [11] = { 48.2, 26.6, 1377, 300 }, + [12] = { 45.6, 25.6, 1377, 300 }, + [13] = { 49.7, 24.7, 1377, 300 }, + [14] = { 39.5, 22, 1377, 300 }, + [15] = { 43.2, 18.6, 1377, 300 }, + [16] = { 48.5, 18.4, 1377, 300 }, + [17] = { 41, 18, 1377, 300 }, + [18] = { 40.5, 16.6, 1377, 300 }, + [19] = { 47.2, 16.4, 1377, 300 }, + [20] = { 44, 15.7, 1377, 300 }, + [21] = { 38.9, 15.4, 1377, 300 }, + [22] = { 40.8, 13.9, 1377, 300 }, + [23] = { 37.9, 13.3, 1377, 300 }, + [24] = { 43.8, 12.7, 1377, 300 }, + [25] = { 39, 12.3, 1377, 300 }, + [26] = { 41.6, 12, 1377, 300 }, + }, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [11726] = { + ["coords"] = { + [1] = { 22.7, 72.7, 1377, 300 }, + [2] = { 22.5, 71, 1377, 300 }, + [3] = { 27.4, 68.7, 1377, 300 }, + [4] = { 19.1, 66.8, 1377, 300 }, + [5] = { 32.5, 64.1, 1377, 300 }, + [6] = { 37.1, 63.6, 1377, 300 }, + [7] = { 26.4, 61.8, 1377, 300 }, + [8] = { 23.2, 58.6, 1377, 300 }, + [9] = { 21.5, 52.3, 1377, 300 }, + }, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [11728] = { + ["coords"] = { + [1] = { 23.1, 72.6, 1377, 300 }, + [2] = { 22.1, 69.6, 1377, 300 }, + [3] = { 20.3, 69.5, 1377, 300 }, + [4] = { 29, 69.4, 1377, 300 }, + [5] = { 24.9, 69.3, 1377, 300 }, + [6] = { 22.8, 68.7, 1377, 300 }, + [7] = { 31.8, 66.3, 1377, 300 }, + [8] = { 35.4, 65.4, 1377, 300 }, + [9] = { 36.1, 64.2, 1377, 300 }, + [10] = { 21.6, 64.1, 1377, 300 }, + [11] = { 25.9, 64, 1377, 300 }, + [12] = { 24.6, 63.7, 1377, 300 }, + [13] = { 34.1, 63.3, 1377, 300 }, + [14] = { 30.8, 62.6, 1377, 300 }, + [15] = { 22.8, 62.5, 1377, 300 }, + [16] = { 35.2, 62.2, 1377, 300 }, + [17] = { 22.3, 62.1, 1377, 300 }, + [18] = { 33, 61.4, 1377, 300 }, + [19] = { 25.5, 60.6, 1377, 300 }, + [20] = { 24.2, 59.8, 1377, 300 }, + [21] = { 23.2, 58.8, 1377, 300 }, + [22] = { 25.9, 58.4, 1377, 300 }, + [23] = { 31.6, 56.3, 1377, 300 }, + [24] = { 24.5, 56, 1377, 300 }, + [25] = { 25.3, 56, 1377, 300 }, + [26] = { 23.4, 55.6, 1377, 300 }, + [27] = { 21.4, 54.5, 1377, 300 }, + [28] = { 29.8, 51.1, 1377, 300 }, + [29] = { 24.6, 48.2, 1377, 300 }, + }, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [11729] = { + ["coords"] = { + [1] = { 24.8, 72.8, 1377, 300 }, + [2] = { 24.3, 72.2, 1377, 300 }, + [3] = { 23.3, 69.4, 1377, 300 }, + [4] = { 30.2, 68.4, 1377, 300 }, + [5] = { 23.3, 67.6, 1377, 300 }, + [6] = { 31.3, 67.3, 1377, 300 }, + [7] = { 28.6, 67.2, 1377, 300 }, + [8] = { 27.3, 65.6, 1377, 300 }, + [9] = { 33.2, 65.5, 1377, 300 }, + [10] = { 20.1, 65.4, 1377, 300 }, + [11] = { 33.4, 64.9, 1377, 300 }, + [12] = { 31.3, 64.6, 1377, 300 }, + [13] = { 24, 64.3, 1377, 300 }, + [14] = { 20.9, 64.3, 1377, 300 }, + [15] = { 22.9, 64.2, 1377, 300 }, + [16] = { 26.5, 63.8, 1377, 300 }, + [17] = { 24.4, 62.9, 1377, 300 }, + [18] = { 24.5, 62.7, 1377, 300 }, + [19] = { 35, 62.6, 1377, 300 }, + [20] = { 33.4, 62.3, 1377, 300 }, + [21] = { 25.4, 61.5, 1377, 300 }, + [22] = { 24.9, 60.7, 1377, 300 }, + [23] = { 32.1, 57.3, 1377, 300 }, + [24] = { 19.6, 55.1, 1377, 300 }, + [25] = { 29.6, 54.9, 1377, 300 }, + [26] = { 24.2, 51.6, 1377, 300 }, + [27] = { 25.3, 50.3, 1377, 300 }, + [28] = { 28.3, 48.5, 1377, 300 }, + [29] = { 21.7, 47.2, 1377, 300 }, + }, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [11730] = { + ["coords"] = { + [1] = { 62.6, 99.9, 1377, 300 }, + [2] = { 53.2, 99.1, 1377, 300 }, + [3] = { 62.4, 97.8, 1377, 300 }, + [4] = { 53.1, 97.4, 1377, 300 }, + [5] = { 61, 95.7, 1377, 300 }, + [6] = { 50.6, 93.6, 1377, 300 }, + [7] = { 61.7, 93.1, 1377, 300 }, + [8] = { 61.9, 90.3, 1377, 300 }, + [9] = { 53.9, 88.4, 1377, 300 }, + [10] = { 56.1, 86.9, 1377, 300 }, + [11] = { 58.1, 86.9, 1377, 300 }, + [12] = { 66.4, 83.7, 1377, 300 }, + [13] = { 60.8, 83.1, 1377, 300 }, + [14] = { 66, 82.9, 1377, 300 }, + [15] = { 62, 80.3, 1377, 300 }, + [16] = { 49.3, 80.1, 1377, 300 }, + [17] = { 52.3, 78.5, 1377, 300 }, + [18] = { 64.8, 76.6, 1377, 300 }, + [19] = { 48.5, 76.2, 1377, 300 }, + [20] = { 65.3, 75.5, 1377, 300 }, + [21] = { 65.8, 75, 1377, 300 }, + [22] = { 61, 72.4, 1377, 300 }, + [23] = { 78.4, 10.1, 3478, 300 }, + [24] = { 84.7, 9.5, 3478, 300 }, + [25] = { 86.4, 9.3, 3478, 300 }, + [26] = { 78.5, 8.6, 3478, 300 }, + [27] = { 86.2, 7.6, 3478, 300 }, + [28] = { 78.4, 7.3, 3478, 300 }, + [29] = { 85.1, 6, 3478, 300 }, + [30] = { 76.3, 4.3, 3478, 300 }, + [31] = { 85.7, 3.9, 3478, 300 }, + [32] = { 85.8, 1.7, 3478, 300 }, + [33] = { 79.1, 0.2, 3478, 300 }, + }, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [11731] = { + ["coords"] = { + [1] = { 60.6, 95.3, 1377, 300 }, + [2] = { 54.4, 94.9, 1377, 300 }, + [3] = { 53.6, 85.1, 1377, 300 }, + [4] = { 51.8, 81.2, 1377, 300 }, + [5] = { 64.4, 80.9, 1377, 300 }, + [6] = { 61, 78.8, 1377, 300 }, + [7] = { 65.4, 75, 1377, 300 }, + [8] = { 59.9, 71.7, 1377, 300 }, + [9] = { 64.9, 71.3, 1377, 300 }, + [10] = { 54.8, 71, 1377, 300 }, + [11] = { 78, 11.3, 3478, 300 }, + [12] = { 83.4, 9.9, 3478, 300 }, + [13] = { 84.7, 5.6, 3478, 300 }, + [14] = { 79.5, 5.3, 3478, 300 }, + }, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [11732] = { + ["coords"] = { + [1] = { 53.4, 99.6, 1377, 300 }, + [2] = { 58.9, 99.5, 1377, 300 }, + [3] = { 60, 98.3, 1377, 300 }, + [4] = { 52.9, 96, 1377, 300 }, + [5] = { 62.1, 95.2, 1377, 300 }, + [6] = { 62.2, 95.1, 1377, 300 }, + [7] = { 50.7, 92.8, 1377, 300 }, + [8] = { 52.3, 89.7, 1377, 300 }, + [9] = { 58.2, 89.5, 1377, 300 }, + [10] = { 63, 89, 1377, 300 }, + [11] = { 60.2, 87.7, 1377, 300 }, + [12] = { 60.4, 85.8, 1377, 300 }, + [13] = { 54, 85.7, 1377, 300 }, + [14] = { 58.3, 84.1, 1377, 300 }, + [15] = { 50.7, 83.4, 1377, 300 }, + [16] = { 67, 83.4, 1377, 300 }, + [17] = { 65.5, 83.3, 1377, 300 }, + [18] = { 49.3, 82.7, 1377, 300 }, + [19] = { 62.8, 81.3, 1377, 300 }, + [20] = { 56.4, 81.2, 1377, 300 }, + [21] = { 60.8, 80.2, 1377, 300 }, + [22] = { 58.8, 80, 1377, 300 }, + [23] = { 51.6, 79.8, 1377, 300 }, + [24] = { 54.3, 78.9, 1377, 300 }, + [25] = { 66.2, 77.5, 1377, 300 }, + [26] = { 51, 77.1, 1377, 300 }, + [27] = { 51.4, 77.1, 1377, 300 }, + [28] = { 61.3, 75.2, 1377, 300 }, + [29] = { 55.5, 75.1, 1377, 300 }, + [30] = { 54.9, 74.9, 1377, 300 }, + [31] = { 64, 74.3, 1377, 300 }, + [32] = { 53.1, 73.9, 1377, 300 }, + [33] = { 62.9, 73.5, 1377, 300 }, + [34] = { 49.5, 73.3, 1377, 300 }, + [35] = { 60.2, 72.5, 1377, 300 }, + [36] = { 78.4, 10.9, 3478, 300 }, + [37] = { 77.9, 10, 3478, 300 }, + [38] = { 85.9, 9.8, 3478, 300 }, + [39] = { 78.6, 9.1, 3478, 300 }, + [40] = { 83.3, 9, 3478, 300 }, + [41] = { 84.2, 8, 3478, 300 }, + [42] = { 78.2, 6.2, 3478, 300 }, + [43] = { 86, 5.6, 3478, 300 }, + [44] = { 86, 5.5, 3478, 300 }, + [45] = { 76.4, 3.7, 3478, 300 }, + [46] = { 77.7, 1.3, 3478, 300 }, + [47] = { 82.7, 1.1, 3478, 300 }, + [48] = { 86.7, 0.7, 3478, 300 }, + }, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [11733] = { + ["coords"] = { + [1] = { 57.3, 99.6, 1377, 300 }, + [2] = { 51.6, 99.4, 1377, 300 }, + [3] = { 61.5, 97.8, 1377, 300 }, + [4] = { 51.9, 97.8, 1377, 300 }, + [5] = { 63.1, 97.4, 1377, 300 }, + [6] = { 54.2, 96.9, 1377, 300 }, + [7] = { 53.9, 95.2, 1377, 300 }, + [8] = { 52.5, 95.1, 1377, 300 }, + [9] = { 50.9, 94.1, 1377, 300 }, + [10] = { 52.8, 93, 1377, 300 }, + [11] = { 62.6, 91.5, 1377, 300 }, + [12] = { 58.9, 91.3, 1377, 300 }, + [13] = { 62.7, 90.6, 1377, 300 }, + [14] = { 60.5, 90.2, 1377, 300 }, + [15] = { 52.2, 90, 1377, 300 }, + [16] = { 53.3, 88.6, 1377, 300 }, + [17] = { 53.4, 85.3, 1377, 300 }, + [18] = { 57.4, 83.4, 1377, 300 }, + [19] = { 54.9, 83.1, 1377, 300 }, + [20] = { 66.9, 82.2, 1377, 300 }, + [21] = { 65.1, 82, 1377, 300 }, + [22] = { 60, 81.2, 1377, 300 }, + [23] = { 52.1, 81.1, 1377, 300 }, + [24] = { 62.3, 80.8, 1377, 300 }, + [25] = { 65.9, 79.1, 1377, 300 }, + [26] = { 58.2, 79, 1377, 300 }, + [27] = { 61.5, 78.7, 1377, 300 }, + [28] = { 56.3, 78.5, 1377, 300 }, + [29] = { 53.2, 77.6, 1377, 300 }, + [30] = { 58.6, 77.4, 1377, 300 }, + [31] = { 61.2, 77, 1377, 300 }, + [32] = { 63.1, 76.6, 1377, 300 }, + [33] = { 55.1, 76.3, 1377, 300 }, + [34] = { 59.9, 75.7, 1377, 300 }, + [35] = { 57.3, 74.6, 1377, 300 }, + [36] = { 63.5, 73.9, 1377, 300 }, + [37] = { 54, 73.1, 1377, 300 }, + [38] = { 60.8, 71.5, 1377, 300 }, + [39] = { 55.1, 71.2, 1377, 300 }, + [40] = { 77.8, 11.3, 3478, 300 }, + [41] = { 86.1, 10.9, 3478, 300 }, + [42] = { 85.4, 9.6, 3478, 300 }, + [43] = { 81.9, 9.1, 3478, 300 }, + [44] = { 77.1, 8.9, 3478, 300 }, + [45] = { 85.4, 7.6, 3478, 300 }, + [46] = { 77.4, 7.6, 3478, 300 }, + [47] = { 86.8, 7.4, 3478, 300 }, + [48] = { 79.3, 7, 3478, 300 }, + [49] = { 79.1, 5.6, 3478, 300 }, + [50] = { 77.9, 5.5, 3478, 300 }, + [51] = { 76.6, 4.7, 3478, 300 }, + [52] = { 78.1, 3.8, 3478, 300 }, + [53] = { 86.4, 2.7, 3478, 300 }, + [54] = { 83.3, 2.5, 3478, 300 }, + [55] = { 86.5, 2, 3478, 300 }, + [56] = { 84.7, 1.6, 3478, 300 }, + [57] = { 77.6, 1.5, 3478, 300 }, + [58] = { 78.5, 0.4, 3478, 300 }, + }, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [11734] = { + ["coords"] = { + [1] = { 63.8, 99.4, 1377, 300 }, + [2] = { 61.6, 98.9, 1377, 300 }, + [3] = { 63.1, 98.4, 1377, 300 }, + [4] = { 51.4, 97.8, 1377, 300 }, + [5] = { 54.9, 97, 1377, 300 }, + [6] = { 63.1, 94.2, 1377, 300 }, + [7] = { 63, 94.1, 1377, 300 }, + [8] = { 51.4, 93.5, 1377, 300 }, + [9] = { 61.2, 91.4, 1377, 300 }, + [10] = { 60.9, 88.8, 1377, 300 }, + [11] = { 59.3, 88, 1377, 300 }, + [12] = { 54.1, 87.2, 1377, 300 }, + [13] = { 61.8, 86.8, 1377, 300 }, + [14] = { 62.1, 84.9, 1377, 300 }, + [15] = { 57.8, 81.8, 1377, 300 }, + [16] = { 64, 81.6, 1377, 300 }, + [17] = { 66.3, 81.2, 1377, 300 }, + [18] = { 57.3, 80.4, 1377, 300 }, + [19] = { 53.1, 80, 1377, 300 }, + [20] = { 55, 79.9, 1377, 300 }, + [21] = { 61.5, 78.8, 1377, 300 }, + [22] = { 59.6, 78.5, 1377, 300 }, + [23] = { 65.9, 75.8, 1377, 300 }, + [24] = { 54.7, 75.6, 1377, 300 }, + [25] = { 60.9, 74.9, 1377, 300 }, + [26] = { 65.9, 73.7, 1377, 300 }, + [27] = { 56.3, 72.9, 1377, 300 }, + [28] = { 64.9, 72.7, 1377, 300 }, + [29] = { 53.1, 71.9, 1377, 300 }, + [30] = { 59, 71.3, 1377, 300 }, + [31] = { 86, 11.8, 3478, 300 }, + [32] = { 77.1, 11.2, 3478, 300 }, + [33] = { 77.2, 10.1, 3478, 300 }, + [34] = { 82, 9.6, 3478, 300 }, + [35] = { 81.5, 9.6, 3478, 300 }, + [36] = { 87.4, 8.9, 3478, 300 }, + [37] = { 85.6, 8.5, 3478, 300 }, + [38] = { 86.8, 8.1, 3478, 300 }, + [39] = { 77, 7.7, 3478, 300 }, + [40] = { 79.9, 7, 3478, 300 }, + [41] = { 86.8, 4.8, 3478, 300 }, + [42] = { 86.7, 4.7, 3478, 300 }, + [43] = { 76.9, 4.2, 3478, 300 }, + [44] = { 85.2, 2.6, 3478, 300 }, + [45] = { 84.9, 0.5, 3478, 300 }, + }, + ["lvl"] = "59-61", + ["rnk"] = "1", + }, + [11735] = { + ["coords"] = { + [1] = { 10.4, 42.7, 490, 300 }, + [2] = { 9.5, 41.8, 490, 300 }, + [3] = { 7.6, 39.2, 490, 300 }, + [4] = { 11, 37.1, 490, 300 }, + [5] = { 11.3, 37.1, 490, 300 }, + [6] = { 11.7, 36.8, 490, 300 }, + [7] = { 14.2, 34.3, 490, 300 }, + [8] = { 12.9, 33.1, 490, 300 }, + [9] = { 17.1, 30.9, 490, 300 }, + [10] = { 17.4, 29, 490, 300 }, + [11] = { 18.2, 28.8, 490, 300 }, + [12] = { 68.6, 45.7, 1377, 300 }, + [13] = { 64.6, 45.3, 1377, 300 }, + [14] = { 67.6, 44.8, 1377, 300 }, + [15] = { 62.1, 43.9, 1377, 300 }, + [16] = { 60.9, 43, 1377, 300 }, + [17] = { 65.6, 42, 1377, 300 }, + [18] = { 43, 41.1, 1377, 300 }, + [19] = { 61.7, 41, 1377, 300 }, + [20] = { 69.2, 39.8, 1377, 300 }, + [21] = { 69.6, 39.8, 1377, 300 }, + [22] = { 70, 39.4, 1377, 300 }, + [23] = { 60.4, 38.6, 1377, 300 }, + [24] = { 40.7, 38.4, 1377, 300 }, + [25] = { 42.9, 38.2, 1377, 300 }, + [26] = { 65.7, 37.6, 1377, 300 }, + [27] = { 39.4, 37.1, 1377, 300 }, + [28] = { 44.4, 37.1, 1377, 300 }, + [29] = { 72.6, 36.8, 1377, 300 }, + [30] = { 40.5, 36.7, 1377, 300 }, + [31] = { 71.2, 35.5, 1377, 300 }, + [32] = { 57.1, 33.8, 1377, 300 }, + [33] = { 75.8, 33.2, 1377, 300 }, + [34] = { 39.8, 32.8, 1377, 300 }, + [35] = { 66.4, 32.7, 1377, 300 }, + [36] = { 56.5, 32.6, 1377, 300 }, + [37] = { 63, 32.2, 1377, 300 }, + [38] = { 63.9, 32.2, 1377, 300 }, + [39] = { 33.9, 31.5, 1377, 300 }, + [40] = { 64.7, 31.3, 1377, 300 }, + [41] = { 40, 31.3, 1377, 300 }, + [42] = { 62.8, 31.2, 1377, 300 }, + [43] = { 76, 31.2, 1377, 300 }, + [44] = { 76.8, 30.9, 1377, 300 }, + [45] = { 53.7, 30.7, 1377, 300 }, + [46] = { 56.1, 30.2, 1377, 300 }, + [47] = { 52.5, 29.6, 1377, 300 }, + [48] = { 33.1, 29.3, 1377, 300 }, + [49] = { 66.5, 29, 1377, 300 }, + [50] = { 34.4, 28.7, 1377, 300 }, + [51] = { 31.8, 28.3, 1377, 300 }, + [52] = { 59.9, 28.1, 1377, 300 }, + [53] = { 36, 28.1, 1377, 300 }, + [54] = { 64.6, 28, 1377, 300 }, + [55] = { 59.8, 27.9, 1377, 300 }, + [56] = { 36.8, 27.3, 1377, 300 }, + [57] = { 65.5, 27.2, 1377, 300 }, + [58] = { 53, 27.1, 1377, 300 }, + [59] = { 64.3, 27, 1377, 300 }, + [60] = { 58.7, 26.9, 1377, 300 }, + [61] = { 34.5, 26.7, 1377, 300 }, + [62] = { 61.8, 26.6, 1377, 300 }, + [63] = { 60.5, 25.7, 1377, 300 }, + [64] = { 58.9, 25.6, 1377, 300 }, + [65] = { 54.5, 24.5, 1377, 300 }, + [66] = { 62.9, 24.1, 1377, 300 }, + [67] = { 62.8, 24.1, 1377, 300 }, + [68] = { 36.6, 23.6, 1377, 300 }, + [69] = { 66.1, 23.4, 1377, 300 }, + [70] = { 56.1, 22.4, 1377, 300 }, + [71] = { 61, 22.3, 1377, 300 }, + [72] = { 34, 21.8, 1377, 300 }, + [73] = { 37.7, 20.9, 1377, 300 }, + [74] = { 59.9, 20.5, 1377, 300 }, + [75] = { 58.8, 20.5, 1377, 300 }, + [76] = { 62.6, 19.7, 1377, 300 }, + [77] = { 51.3, 19.6, 1377, 300 }, + [78] = { 60.2, 19.5, 1377, 300 }, + [79] = { 35.9, 19.4, 1377, 300 }, + [80] = { 60.1, 18.4, 1377, 300 }, + [81] = { 63.7, 17, 1377, 300 }, + [82] = { 36.9, 16.7, 1377, 300 }, + [83] = { 61.5, 15.2, 1377, 300 }, + [84] = { 54.4, 14.5, 1377, 300 }, + [85] = { 61.4, 14.5, 1377, 300 }, + [86] = { 64.1, 14.2, 1377, 300 }, + [87] = { 55, 13.6, 1377, 300 }, + [88] = { 48.9, 13.4, 1377, 300 }, + [89] = { 59, 13.3, 1377, 300 }, + [90] = { 56.8, 11.3, 1377, 300 }, + }, + ["lvl"] = "54-55", + }, + [11737] = { + ["coords"] = { + [1] = { 9.7, 73.4, 490, 300 }, + [2] = { 44.9, 92.3, 1377, 300 }, + [3] = { 44.9, 92.2, 1377, 300 }, + [4] = { 44.8, 90.9, 1377, 300 }, + [5] = { 44.6, 90.7, 1377, 300 }, + [6] = { 24.3, 89.9, 1377, 300 }, + [7] = { 36.8, 88.8, 1377, 300 }, + [8] = { 38, 88.3, 1377, 300 }, + [9] = { 45.4, 87.2, 1377, 300 }, + [10] = { 38.9, 87, 1377, 300 }, + [11] = { 23.6, 86.8, 1377, 300 }, + [12] = { 37.2, 86.7, 1377, 300 }, + [13] = { 34.8, 86.5, 1377, 300 }, + [14] = { 23.5, 85.8, 1377, 300 }, + [15] = { 41.9, 85.6, 1377, 300 }, + [16] = { 38, 85.4, 1377, 300 }, + [17] = { 43.7, 84.8, 1377, 300 }, + [18] = { 46.2, 84.5, 1377, 300 }, + [19] = { 23.4, 84.1, 1377, 300 }, + [20] = { 45.6, 84, 1377, 300 }, + [21] = { 40.2, 83.8, 1377, 300 }, + [22] = { 30.3, 83.4, 1377, 300 }, + [23] = { 28.6, 82.9, 1377, 300 }, + [24] = { 44.7, 82.6, 1377, 300 }, + [25] = { 24.5, 82.5, 1377, 300 }, + [26] = { 39.9, 81.7, 1377, 300 }, + [27] = { 26.4, 81.5, 1377, 300 }, + [28] = { 42.6, 81.2, 1377, 300 }, + [29] = { 41, 80.5, 1377, 300 }, + [30] = { 67, 80.2, 1377, 300 }, + [31] = { 24.4, 80.1, 1377, 300 }, + [32] = { 40.8, 80.1, 1377, 300 }, + [33] = { 27.4, 80, 1377, 300 }, + [34] = { 30.2, 79.9, 1377, 300 }, + [35] = { 34.2, 79.7, 1377, 300 }, + [36] = { 28.1, 79.3, 1377, 300 }, + [37] = { 43, 79.1, 1377, 300 }, + [38] = { 22.6, 78.6, 1377, 300 }, + [39] = { 22.2, 78.6, 1377, 300 }, + [40] = { 25.9, 78.4, 1377, 300 }, + [41] = { 31.7, 78.4, 1377, 300 }, + [42] = { 67.8, 78.3, 1377, 300 }, + [43] = { 36, 78.1, 1377, 300 }, + [44] = { 26.7, 77.9, 1377, 300 }, + [45] = { 32.2, 77.4, 1377, 300 }, + [46] = { 27.4, 77.2, 1377, 300 }, + [47] = { 22.6, 77, 1377, 300 }, + [48] = { 20.2, 76.9, 1377, 300 }, + [49] = { 65.3, 76.8, 1377, 300 }, + [50] = { 63.5, 76.8, 1377, 300 }, + [51] = { 25, 76.6, 1377, 300 }, + [52] = { 67.6, 76.1, 1377, 300 }, + [53] = { 36, 75.7, 1377, 300 }, + [54] = { 31.2, 75.5, 1377, 300 }, + [55] = { 26.1, 74.6, 1377, 300 }, + [56] = { 30.9, 74.5, 1377, 300 }, + [57] = { 64.7, 74.3, 1377, 300 }, + [58] = { 28.4, 74.1, 1377, 300 }, + [59] = { 43.1, 73.9, 1377, 300 }, + [60] = { 33.6, 73.9, 1377, 300 }, + [61] = { 62.7, 73.8, 1377, 300 }, + [62] = { 34.9, 73.5, 1377, 300 }, + [63] = { 40.9, 73.3, 1377, 300 }, + [64] = { 65.4, 72.7, 1377, 300 }, + [65] = { 31.6, 72.5, 1377, 300 }, + [66] = { 45.7, 71.5, 1377, 300 }, + [67] = { 33.1, 71.4, 1377, 300 }, + [68] = { 39.7, 71.3, 1377, 300 }, + [69] = { 33.4, 71.2, 1377, 300 }, + [70] = { 35.4, 70.9, 1377, 300 }, + [71] = { 63.8, 70.4, 1377, 300 }, + [72] = { 64.7, 70.4, 1377, 300 }, + [73] = { 44.9, 70.2, 1377, 300 }, + [74] = { 36.9, 70, 1377, 300 }, + [75] = { 47.7, 69.8, 1377, 300 }, + [76] = { 44.6, 69.8, 1377, 300 }, + [77] = { 41.2, 69.7, 1377, 300 }, + [78] = { 48.3, 69.6, 1377, 300 }, + [79] = { 62.3, 69.3, 1377, 300 }, + [80] = { 36, 68.7, 1377, 300 }, + [81] = { 39.5, 68.6, 1377, 300 }, + [82] = { 33, 67.8, 1377, 300 }, + [83] = { 63.8, 67.2, 1377, 300 }, + [84] = { 61.5, 67.1, 1377, 300 }, + [85] = { 64.2, 66.6, 1377, 300 }, + [86] = { 49.5, 66.6, 1377, 300 }, + [87] = { 71.5, 3.3, 3478, 300 }, + [88] = { 71.5, 3.2, 3478, 300 }, + [89] = { 71.4, 2.2, 3478, 300 }, + [90] = { 71.3, 2, 3478, 300 }, + [91] = { 54.1, 1.4, 3478, 300 }, + [92] = { 64.7, 0.5, 3478, 300 }, + [93] = { 65.7, 0.2, 3478, 300 }, + }, + ["lvl"] = "57-58", + }, + [11738] = { + ["coords"] = { + [1] = { 9.3, 42.6, 490, 300 }, + [2] = { 11.5, 41.1, 490, 300 }, + [3] = { 7.5, 40.2, 490, 300 }, + [4] = { 10.3, 39.9, 490, 300 }, + [5] = { 8.7, 37.4, 490, 300 }, + [6] = { 13.9, 37.3, 490, 300 }, + [7] = { 9.7, 36.3, 490, 300 }, + [8] = { 15.5, 35.5, 490, 300 }, + [9] = { 13, 33.1, 490, 300 }, + [10] = { 12, 32.9, 490, 300 }, + [11] = { 15.8, 31.5, 490, 300 }, + [12] = { 10.8, 30.7, 490, 300 }, + [13] = { 11.1, 30.2, 490, 300 }, + [14] = { 18.3, 27.5, 490, 300 }, + [15] = { 17.7, 27.3, 490, 300 }, + [16] = { 67.4, 45.5, 1377, 300 }, + [17] = { 62.1, 44.9, 1377, 300 }, + [18] = { 69.8, 44, 1377, 300 }, + [19] = { 62.9, 43.6, 1377, 300 }, + [20] = { 65.5, 43, 1377, 300 }, + [21] = { 68.5, 42.7, 1377, 300 }, + [22] = { 44.6, 42.6, 1377, 300 }, + [23] = { 44.9, 41, 1377, 300 }, + [24] = { 64, 40.8, 1377, 300 }, + [25] = { 62.9, 40.5, 1377, 300 }, + [26] = { 61.6, 40.1, 1377, 300 }, + [27] = { 66.8, 40.1, 1377, 300 }, + [28] = { 72.3, 40, 1377, 300 }, + [29] = { 67.8, 38.9, 1377, 300 }, + [30] = { 74, 38, 1377, 300 }, + [31] = { 71.4, 35.5, 1377, 300 }, + [32] = { 38, 35.3, 1377, 300 }, + [33] = { 70.3, 35.3, 1377, 300 }, + [34] = { 42.3, 35.1, 1377, 300 }, + [35] = { 36.3, 34, 1377, 300 }, + [36] = { 74.3, 33.8, 1377, 300 }, + [37] = { 38.9, 33.2, 1377, 300 }, + [38] = { 69, 32.9, 1377, 300 }, + [39] = { 69.4, 32.5, 1377, 300 }, + [40] = { 68.3, 32, 1377, 300 }, + [41] = { 60.9, 31.9, 1377, 300 }, + [42] = { 58, 31.8, 1377, 300 }, + [43] = { 36.9, 31.6, 1377, 300 }, + [44] = { 35.6, 31.5, 1377, 300 }, + [45] = { 61.1, 31.4, 1377, 300 }, + [46] = { 54.1, 30.3, 1377, 300 }, + [47] = { 51, 30.3, 1377, 300 }, + [48] = { 36.7, 29.9, 1377, 300 }, + [49] = { 65, 29.7, 1377, 300 }, + [50] = { 66.9, 29.6, 1377, 300 }, + [51] = { 77, 29.6, 1377, 300 }, + [52] = { 76.3, 29.3, 1377, 300 }, + [53] = { 63.9, 28.9, 1377, 300 }, + [54] = { 53.4, 28.4, 1377, 300 }, + [55] = { 58.5, 27.7, 1377, 300 }, + [56] = { 56.7, 27.6, 1377, 300 }, + [57] = { 56, 27, 1377, 300 }, + [58] = { 31.4, 26.2, 1377, 300 }, + [59] = { 53.5, 25.6, 1377, 300 }, + [60] = { 30.5, 25.6, 1377, 300 }, + [61] = { 62.7, 25.5, 1377, 300 }, + [62] = { 52.2, 24.7, 1377, 300 }, + [63] = { 58, 24, 1377, 300 }, + [64] = { 64.4, 23.4, 1377, 300 }, + [65] = { 53.1, 22.9, 1377, 300 }, + [66] = { 58.3, 22.8, 1377, 300 }, + [67] = { 55.6, 22.8, 1377, 300 }, + [68] = { 36.2, 22.6, 1377, 300 }, + [69] = { 34.6, 21.4, 1377, 300 }, + [70] = { 33.1, 21.1, 1377, 300 }, + [71] = { 57.8, 20.6, 1377, 300 }, + [72] = { 34.4, 20.2, 1377, 300 }, + [73] = { 37.3, 19.9, 1377, 300 }, + [74] = { 57.2, 19.6, 1377, 300 }, + [75] = { 53.5, 19.6, 1377, 300 }, + [76] = { 38.7, 18.7, 1377, 300 }, + [77] = { 63, 18.3, 1377, 300 }, + [78] = { 61.8, 18.1, 1377, 300 }, + [79] = { 35.7, 18.1, 1377, 300 }, + [80] = { 58.1, 18, 1377, 300 }, + [81] = { 61.1, 17.2, 1377, 300 }, + [82] = { 55, 16.9, 1377, 300 }, + [83] = { 50.5, 16.8, 1377, 300 }, + [84] = { 56.6, 16.8, 1377, 300 }, + [85] = { 63.7, 16, 1377, 300 }, + [86] = { 50.2, 15.3, 1377, 300 }, + [87] = { 38.7, 15, 1377, 300 }, + [88] = { 51.6, 13.9, 1377, 300 }, + [89] = { 57.9, 12.5, 1377, 300 }, + [90] = { 53.7, 12.2, 1377, 300 }, + [91] = { 56.9, 9.5, 1377, 300 }, + }, + ["lvl"] = "55-56", + }, + [11739] = { + ["coords"] = { + [1] = { 35.3, 91.1, 1377, 300 }, + [2] = { 37.1, 89.6, 1377, 300 }, + [3] = { 34.9, 88.7, 1377, 300 }, + [4] = { 23.1, 88.6, 1377, 300 }, + [5] = { 44.4, 88.1, 1377, 300 }, + [6] = { 44.5, 87.5, 1377, 300 }, + [7] = { 46.6, 87.2, 1377, 300 }, + [8] = { 42.2, 87.2, 1377, 300 }, + [9] = { 64.9, 86.3, 1377, 300 }, + [10] = { 39.8, 86.3, 1377, 300 }, + [11] = { 46.7, 86.1, 1377, 300 }, + [12] = { 36, 86, 1377, 300 }, + [13] = { 44.8, 84.9, 1377, 300 }, + [14] = { 42.4, 84.7, 1377, 300 }, + [15] = { 37.9, 84.5, 1377, 300 }, + [16] = { 27.9, 84.4, 1377, 300 }, + [17] = { 37, 84.3, 1377, 300 }, + [18] = { 40.6, 83.9, 1377, 300 }, + [19] = { 41.4, 83.4, 1377, 300 }, + [20] = { 36.4, 83, 1377, 300 }, + [21] = { 31.8, 82.8, 1377, 300 }, + [22] = { 43.7, 82.8, 1377, 300 }, + [23] = { 27.4, 82.7, 1377, 300 }, + [24] = { 31.1, 82.1, 1377, 300 }, + [25] = { 37.9, 81.9, 1377, 300 }, + [26] = { 24.7, 81.7, 1377, 300 }, + [27] = { 37, 81.5, 1377, 300 }, + [28] = { 29.5, 81.4, 1377, 300 }, + [29] = { 38, 81, 1377, 300 }, + [30] = { 25.1, 81, 1377, 300 }, + [31] = { 42.5, 80.6, 1377, 300 }, + [32] = { 45.6, 80, 1377, 300 }, + [33] = { 32.6, 80, 1377, 300 }, + [34] = { 40.7, 80, 1377, 300 }, + [35] = { 42.2, 79.8, 1377, 300 }, + [36] = { 23, 79.3, 1377, 300 }, + [37] = { 33.5, 79.2, 1377, 300 }, + [38] = { 29.4, 78.6, 1377, 300 }, + [39] = { 35, 78.5, 1377, 300 }, + [40] = { 44.9, 78.5, 1377, 300 }, + [41] = { 40.7, 78.3, 1377, 300 }, + [42] = { 34.3, 77.5, 1377, 300 }, + [43] = { 19.6, 77.4, 1377, 300 }, + [44] = { 23.2, 77.1, 1377, 300 }, + [45] = { 66.6, 77.1, 1377, 300 }, + [46] = { 29.3, 77, 1377, 300 }, + [47] = { 25.5, 76.9, 1377, 300 }, + [48] = { 28, 76.9, 1377, 300 }, + [49] = { 42.1, 76.8, 1377, 300 }, + [50] = { 43.3, 76.6, 1377, 300 }, + [51] = { 33.7, 75.9, 1377, 300 }, + [52] = { 38.5, 75.8, 1377, 300 }, + [53] = { 45.3, 75.7, 1377, 300 }, + [54] = { 65.6, 75.6, 1377, 300 }, + [55] = { 42.5, 75.5, 1377, 300 }, + [56] = { 33.2, 75.3, 1377, 300 }, + [57] = { 29.7, 75.3, 1377, 300 }, + [58] = { 27.2, 75.3, 1377, 300 }, + [59] = { 45.6, 74.6, 1377, 300 }, + [60] = { 32.3, 74.5, 1377, 300 }, + [61] = { 66.5, 74.3, 1377, 300 }, + [62] = { 39.2, 74.3, 1377, 300 }, + [63] = { 35.9, 74, 1377, 300 }, + [64] = { 36.7, 73.7, 1377, 300 }, + [65] = { 33.1, 72.9, 1377, 300 }, + [66] = { 45.2, 72.9, 1377, 300 }, + [67] = { 45, 72.6, 1377, 300 }, + [68] = { 34.1, 72.5, 1377, 300 }, + [69] = { 63.4, 72.5, 1377, 300 }, + [70] = { 48.9, 70.9, 1377, 300 }, + [71] = { 38.7, 70, 1377, 300 }, + [72] = { 41.4, 69.9, 1377, 300 }, + [73] = { 47.5, 69.9, 1377, 300 }, + [74] = { 35.1, 69.8, 1377, 300 }, + [75] = { 41.9, 68.7, 1377, 300 }, + [76] = { 31.8, 67.8, 1377, 300 }, + [77] = { 41.8, 67.5, 1377, 300 }, + [78] = { 39.3, 67.2, 1377, 300 }, + [79] = { 48.6, 67.2, 1377, 300 }, + [80] = { 34, 67.1, 1377, 300 }, + [81] = { 40.4, 66.7, 1377, 300 }, + [82] = { 37.1, 66.1, 1377, 300 }, + [83] = { 63.4, 2.4, 3478, 300 }, + [84] = { 64.9, 1.2, 3478, 300 }, + [85] = { 63.1, 0.5, 3478, 300 }, + [86] = { 53.1, 0.3, 3478, 300 }, + }, + ["lvl"] = "57-58", + }, + [11740] = { + ["coords"] = { + [1] = { 9.4, 44, 490, 300 }, + [2] = { 7.7, 41.7, 490, 300 }, + [3] = { 10, 38.8, 490, 300 }, + [4] = { 11, 37.5, 490, 300 }, + [5] = { 13.2, 35.7, 490, 300 }, + [6] = { 14.8, 34.3, 490, 300 }, + [7] = { 12.1, 30.4, 490, 300 }, + [8] = { 10.6, 28.8, 490, 300 }, + [9] = { 12.4, 28.3, 490, 300 }, + [10] = { 67.5, 47.1, 1377, 300 }, + [11] = { 65.7, 44.6, 1377, 300 }, + [12] = { 64, 44.1, 1377, 300 }, + [13] = { 60.2, 41.7, 1377, 300 }, + [14] = { 68.2, 41.5, 1377, 300 }, + [15] = { 65, 40.4, 1377, 300 }, + [16] = { 69.2, 40.1, 1377, 300 }, + [17] = { 42, 39.3, 1377, 300 }, + [18] = { 63.8, 39.3, 1377, 300 }, + [19] = { 45.1, 38.9, 1377, 300 }, + [20] = { 71.6, 38.3, 1377, 300 }, + [21] = { 62.4, 37.8, 1377, 300 }, + [22] = { 42.6, 37, 1377, 300 }, + [23] = { 73.2, 36.8, 1377, 300 }, + [24] = { 44.7, 36.6, 1377, 300 }, + [25] = { 36.9, 35.3, 1377, 300 }, + [26] = { 39.3, 34.9, 1377, 300 }, + [27] = { 38.2, 34.3, 1377, 300 }, + [28] = { 36.9, 33.3, 1377, 300 }, + [29] = { 60.4, 33.1, 1377, 300 }, + [30] = { 60.7, 33, 1377, 300 }, + [31] = { 61.7, 32.8, 1377, 300 }, + [32] = { 55.2, 32.6, 1377, 300 }, + [33] = { 70.4, 32.6, 1377, 300 }, + [34] = { 34.5, 32.6, 1377, 300 }, + [35] = { 54.1, 32.6, 1377, 300 }, + [36] = { 51.4, 32, 1377, 300 }, + [37] = { 58.9, 31.3, 1377, 300 }, + [38] = { 66.3, 31.2, 1377, 300 }, + [39] = { 54.8, 31.1, 1377, 300 }, + [40] = { 68.8, 30.9, 1377, 300 }, + [41] = { 70.7, 30.4, 1377, 300 }, + [42] = { 58.4, 29.7, 1377, 300 }, + [43] = { 34.1, 29.6, 1377, 300 }, + [44] = { 55.7, 28.6, 1377, 300 }, + [45] = { 38.9, 28.5, 1377, 300 }, + [46] = { 37.8, 28.5, 1377, 300 }, + [47] = { 54.1, 28.1, 1377, 300 }, + [48] = { 62.5, 28, 1377, 300 }, + [49] = { 59.9, 26.7, 1377, 300 }, + [50] = { 31.4, 25.8, 1377, 300 }, + [51] = { 34, 25.7, 1377, 300 }, + [52] = { 57.2, 25.7, 1377, 300 }, + [53] = { 32.6, 24.6, 1377, 300 }, + [54] = { 56.4, 23.9, 1377, 300 }, + [55] = { 63.7, 22.7, 1377, 300 }, + [56] = { 58.6, 22.5, 1377, 300 }, + [57] = { 56.7, 22.3, 1377, 300 }, + [58] = { 61.8, 21.9, 1377, 300 }, + [59] = { 64.4, 21.7, 1377, 300 }, + [60] = { 52.7, 21, 1377, 300 }, + [61] = { 54, 21, 1377, 300 }, + [62] = { 50.8, 19, 1377, 300 }, + [63] = { 51.7, 18.4, 1377, 300 }, + [64] = { 34.8, 18.3, 1377, 300 }, + [65] = { 55.9, 17.7, 1377, 300 }, + [66] = { 59.4, 17.7, 1377, 300 }, + [67] = { 53.9, 17.6, 1377, 300 }, + [68] = { 52.9, 16.9, 1377, 300 }, + [69] = { 36.5, 15.9, 1377, 300 }, + [70] = { 60.3, 15.8, 1377, 300 }, + [71] = { 59, 15.7, 1377, 300 }, + [72] = { 52.2, 14.7, 1377, 300 }, + [73] = { 56, 13.8, 1377, 300 }, + [74] = { 60.6, 12.8, 1377, 300 }, + [75] = { 53.6, 12.6, 1377, 300 }, + [76] = { 57, 12.5, 1377, 300 }, + [77] = { 54.7, 11, 1377, 300 }, + }, + ["lvl"] = "55-56", + }, + [11741] = { + ["coords"] = { + [1] = { 36.2, 66, 1377, 300 }, + [2] = { 52.2, 65.7, 1377, 300 }, + [3] = { 33.1, 65.7, 1377, 300 }, + [4] = { 42.3, 64.4, 1377, 300 }, + [5] = { 53.3, 64.4, 1377, 300 }, + [6] = { 63.6, 63.1, 1377, 300 }, + [7] = { 48.2, 62.9, 1377, 300 }, + [8] = { 37.8, 62.9, 1377, 300 }, + [9] = { 53.2, 62.7, 1377, 300 }, + [10] = { 63, 62, 1377, 300 }, + [11] = { 32.9, 61.6, 1377, 300 }, + [12] = { 38.9, 61.3, 1377, 300 }, + [13] = { 55.1, 61.3, 1377, 300 }, + [14] = { 52.9, 61.2, 1377, 300 }, + [15] = { 41.9, 61.2, 1377, 300 }, + [16] = { 53.7, 60.6, 1377, 300 }, + [17] = { 38, 60.1, 1377, 300 }, + [18] = { 33.3, 59.9, 1377, 300 }, + [19] = { 55.1, 59.8, 1377, 300 }, + [20] = { 50.7, 59.1, 1377, 300 }, + [21] = { 57.8, 59, 1377, 300 }, + [22] = { 48.5, 58.5, 1377, 300 }, + [23] = { 51.9, 57.2, 1377, 300 }, + [24] = { 49, 56.9, 1377, 300 }, + [25] = { 39.7, 56.9, 1377, 300 }, + [26] = { 48.3, 56.9, 1377, 300 }, + [27] = { 37.9, 56.9, 1377, 300 }, + [28] = { 55.1, 56.8, 1377, 300 }, + [29] = { 34.9, 55.8, 1377, 300 }, + [30] = { 37.7, 55.6, 1377, 300 }, + [31] = { 48, 54.8, 1377, 300 }, + [32] = { 38.7, 54.2, 1377, 300 }, + [33] = { 49.5, 53.5, 1377, 300 }, + [34] = { 40.8, 52.7, 1377, 300 }, + [35] = { 34.8, 52.1, 1377, 300 }, + [36] = { 43.8, 51.3, 1377, 300 }, + [37] = { 39.5, 50.8, 1377, 300 }, + [38] = { 39.3, 50.3, 1377, 300 }, + [39] = { 40.9, 49.3, 1377, 300 }, + [40] = { 33.1, 48.7, 1377, 300 }, + [41] = { 44.2, 48.2, 1377, 300 }, + [42] = { 20, 47.3, 1377, 300 }, + [43] = { 30.7, 46.4, 1377, 300 }, + [44] = { 30.2, 45.4, 1377, 300 }, + [45] = { 29.5, 44.5, 1377, 300 }, + [46] = { 28.3, 44.1, 1377, 300 }, + [47] = { 33, 44, 1377, 300 }, + [48] = { 34, 43.7, 1377, 300 }, + [49] = { 31, 43.5, 1377, 300 }, + [50] = { 30.1, 43.4, 1377, 300 }, + [51] = { 20.6, 42.6, 1377, 300 }, + [52] = { 28, 41.4, 1377, 300 }, + [53] = { 29.4, 41.1, 1377, 300 }, + [54] = { 32.8, 41.1, 1377, 300 }, + [55] = { 25.3, 41, 1377, 300 }, + [56] = { 35, 40.4, 1377, 300 }, + [57] = { 30.6, 39.6, 1377, 300 }, + [58] = { 21.5, 39.3, 1377, 300 }, + [59] = { 28.3, 39.2, 1377, 300 }, + [60] = { 36.3, 38.9, 1377, 300 }, + [61] = { 34.3, 37.9, 1377, 300 }, + [62] = { 36.9, 37.1, 1377, 300 }, + [63] = { 21, 36.8, 1377, 300 }, + [64] = { 32.4, 31.3, 1377, 300 }, + [65] = { 26.6, 27.8, 1377, 300 }, + [66] = { 28.2, 27.8, 1377, 300 }, + }, + ["lvl"] = "57-58", + }, + [11742] = "_", + [11743] = "_", + [11744] = { + ["coords"] = { + [1] = { 58.9, 84.3, 357, 300 }, + [2] = { 58.5, 84, 357, 300 }, + [3] = { 59.2, 83.8, 357, 300 }, + [4] = { 10.5, 30.3, 490, 300 }, + [5] = { 41.4, 37.1, 1377, 300 }, + [6] = { 52.2, 33.7, 1377, 300 }, + [7] = { 68.7, 32.6, 1377, 300 }, + [8] = { 18.1, 32.5, 1377, 300 }, + [9] = { 19.9, 32, 1377, 300 }, + [10] = { 62.7, 31.3, 1377, 300 }, + [11] = { 20.4, 31.2, 1377, 300 }, + [12] = { 21.6, 30, 1377, 300 }, + [13] = { 20, 29.5, 1377, 300 }, + [14] = { 18, 29.5, 1377, 300 }, + [15] = { 18.7, 28.5, 1377, 300 }, + [16] = { 20.6, 28.3, 1377, 300 }, + [17] = { 22.8, 28.2, 1377, 300 }, + [18] = { 19.7, 27.4, 1377, 300 }, + [19] = { 23.6, 27.2, 1377, 300 }, + [20] = { 21.8, 26.9, 1377, 300 }, + [21] = { 17.1, 26.7, 1377, 300 }, + [22] = { 17.6, 26.6, 1377, 300 }, + [23] = { 34.7, 25.5, 1377, 300 }, + [24] = { 20.7, 25.5, 1377, 300 }, + [25] = { 18.6, 25.5, 1377, 300 }, + [26] = { 22.6, 25.1, 1377, 300 }, + [27] = { 17, 24.9, 1377, 300 }, + [28] = { 21.7, 24.2, 1377, 300 }, + [29] = { 17.6, 23.6, 1377, 300 }, + [30] = { 56.1, 23.5, 1377, 300 }, + [31] = { 20.5, 23.1, 1377, 300 }, + [32] = { 22.5, 22.8, 1377, 300 }, + [33] = { 28.5, 22.5, 1377, 300 }, + [34] = { 19, 22.2, 1377, 300 }, + [35] = { 29.5, 21.4, 1377, 300 }, + [36] = { 21.8, 21.3, 1377, 300 }, + [37] = { 19.6, 21.3, 1377, 300 }, + [38] = { 67.4, 21.1, 1377, 300 }, + [39] = { 30.2, 20.1, 1377, 300 }, + [40] = { 28.5, 20, 1377, 300 }, + [41] = { 18.7, 19.9, 1377, 300 }, + [42] = { 29.4, 18.5, 1377, 300 }, + [43] = { 19.9, 18.2, 1377, 300 }, + [44] = { 31.2, 18.2, 1377, 300 }, + [45] = { 27.5, 18.1, 1377, 300 }, + [46] = { 28.4, 17.5, 1377, 300 }, + [47] = { 61.9, 17, 1377, 300 }, + [48] = { 30.4, 16.8, 1377, 300 }, + [49] = { 32.1, 16.8, 1377, 300 }, + [50] = { 31.2, 16, 1377, 300 }, + [51] = { 29.3, 15.3, 1377, 300 }, + [52] = { 32.9, 15.3, 1377, 300 }, + [53] = { 32.1, 14.3, 1377, 300 }, + [54] = { 30.2, 13.9, 1377, 300 }, + [55] = { 34.2, 13.5, 1377, 300 }, + [56] = { 33.3, 12.9, 1377, 300 }, + [57] = { 34.7, 12.4, 1377, 300 }, + }, + ["lvl"] = "55-57", + }, + [11746] = { + ["coords"] = { + [1] = { 52.8, 83.3, 357, 300 }, + [2] = { 54.1, 83.2, 357, 300 }, + [3] = { 55.3, 83, 357, 300 }, + [4] = { 52.6, 82.5, 357, 300 }, + [5] = { 53.6, 82.5, 357, 300 }, + [6] = { 54.4, 82.4, 357, 300 }, + [7] = { 52.9, 81.8, 357, 300 }, + [8] = { 46.4, 53.4, 1377, 300 }, + [9] = { 21.5, 40.3, 1377, 300 }, + [10] = { 22.6, 19.5, 1377, 300 }, + [11] = { 23.5, 17.9, 1377, 300 }, + [12] = { 21.5, 17.8, 1377, 300 }, + [13] = { 22.7, 17.4, 1377, 300 }, + [14] = { 18.7, 17.1, 1377, 300 }, + [15] = { 20.7, 16.6, 1377, 300 }, + [16] = { 21.8, 15.8, 1377, 300 }, + [17] = { 20, 15.7, 1377, 300 }, + [18] = { 27, 15.5, 1377, 300 }, + [19] = { 23.4, 15.5, 1377, 300 }, + [20] = { 25.4, 15.2, 1377, 300 }, + [21] = { 22.7, 14.5, 1377, 300 }, + [22] = { 26.5, 14.2, 1377, 300 }, + [23] = { 28.3, 14.1, 1377, 300 }, + [24] = { 20.8, 14, 1377, 300 }, + [25] = { 24.6, 13.8, 1377, 300 }, + [26] = { 21.8, 12.7, 1377, 300 }, + [27] = { 25.5, 12.3, 1377, 300 }, + [28] = { 22, 11.6, 1377, 300 }, + [29] = { 24.6, 11.3, 1377, 300 }, + [30] = { 26.9, 11, 1377, 300 }, + [31] = { 21.1, 10.6, 1377, 300 }, + [32] = { 21.6, 10, 1377, 300 }, + [33] = { 23.6, 9.9, 1377, 300 }, + [34] = { 25.2, 9.7, 1377, 300 }, + [35] = { 22.2, 8.6, 1377, 300 }, + }, + ["lvl"] = "56-58", + }, + [11747] = { + ["coords"] = { + [1] = { 34.2, 89, 1377, 300 }, + [2] = { 27.9, 77.9, 1377, 300 }, + [3] = { 38.9, 67.6, 1377, 300 }, + [4] = { 62.5, 0.7, 3478, 300 }, + }, + ["lvl"] = "58-59", + }, + [11757] = { + ["coords"] = { + [1] = { 62, 38.2, 618, 333 }, + }, + ["lvl"] = "42", + }, + [11777] = { + ["coords"] = { + [1] = { 28.9, 58.3, 405, 300 }, + [2] = { 28, 58.1, 405, 300 }, + [3] = { 27.2, 57.7, 405, 300 }, + [4] = { 26.5, 57, 405, 300 }, + [5] = { 29.8, 56.2, 405, 300 }, + [6] = { 28.1, 55.6, 405, 300 }, + [7] = { 27.5, 54.2, 405, 300 }, + [8] = { 26.6, 53.4, 405, 300 }, + [9] = { 33.1, 36.2, 2100, 300 }, + [10] = { 28.3, 35.1, 2100, 300 }, + [11] = { 24.2, 32.9, 2100, 300 }, + [12] = { 20.2, 29.3, 2100, 300 }, + [13] = { 37.9, 24.7, 2100, 300 }, + [14] = { 29.1, 21.6, 2100, 300 }, + [15] = { 25.8, 14.1, 2100, 300 }, + [16] = { 20.5, 9.8, 2100, 300 }, + }, + ["lvl"] = "40-41", + ["rnk"] = "1", + }, + [11778] = { + ["coords"] = { + [1] = { 27.7, 58.4, 405, 300 }, + [2] = { 27.9, 57.2, 405, 300 }, + [3] = { 29.6, 56.1, 405, 300 }, + [4] = { 27.1, 55.2, 405, 300 }, + [5] = { 28.4, 54.4, 405, 300 }, + [6] = { 26.7, 54.2, 405, 300 }, + [7] = { 27, 53.7, 405, 300 }, + [8] = { 26.5, 36.7, 2100, 300 }, + [9] = { 27.8, 30.2, 2100, 300 }, + [10] = { 36.9, 24.1, 2100, 300 }, + [11] = { 23.2, 19.7, 2100, 300 }, + [12] = { 30.4, 15, 2100, 300 }, + [13] = { 21.1, 14, 2100, 300 }, + [14] = { 23, 11.2, 2100, 300 }, + }, + ["lvl"] = "41-42", + ["rnk"] = "1", + }, + [11779] = "_", + [11780] = "_", + [11781] = { + ["coords"] = { + [1] = { 32.4, 65.4, 405, 300 }, + [2] = { 31.3, 64, 405, 300 }, + [3] = { 52.2, 74.9, 2100, 300 }, + [4] = { 46.5, 67.6, 2100, 300 }, + }, + ["lvl"] = "40-41", + ["rnk"] = "1", + }, + [11782] = { + ["coords"] = { + [1] = { 35.1, 63.2, 405, 300 }, + [2] = { 36.3, 63.1, 405, 300 }, + [3] = { 67, 63, 2100, 300 }, + [4] = { 73.9, 62.2, 2100, 300 }, + }, + ["lvl"] = "42-43", + ["rnk"] = "1", + }, + [11783] = { + ["coords"] = { + [1] = { 39.9, 93.6, 2100, 7200 }, + [2] = { 39.7, 93.6, 2100, 7200 }, + [3] = { 39.9, 93.4, 2100, 7200 }, + [4] = { 39.7, 93.4, 2100, 7200 }, + [5] = { 31.7, 80.2, 2100, 7200 }, + [6] = { 31.6, 80, 2100, 7200 }, + [7] = { 31.8, 80, 2100, 7200 }, + [8] = { 31.7, 79.9, 2100, 7200 }, + [9] = { 36.6, 72.4, 2100, 7200 }, + [10] = { 36.5, 72.3, 2100, 7200 }, + [11] = { 36.7, 72.2, 2100, 7200 }, + [12] = { 36.6, 72.2, 2100, 7200 }, + [13] = { 32.2, 69.3, 2100, 7200 }, + [14] = { 32.1, 69.3, 2100, 7200 }, + [15] = { 32.2, 69.1, 2100, 7200 }, + [16] = { 32.1, 69.1, 2100, 7200 }, + [17] = { 27.7, 66.7, 2100, 7200 }, + [18] = { 27.5, 66.7, 2100, 7200 }, + [19] = { 27.7, 66.5, 2100, 7200 }, + [20] = { 27.6, 66.4, 2100, 7200 }, + [21] = { 39, 62.9, 2100, 7200 }, + [22] = { 38.9, 62.8, 2100, 7200 }, + [23] = { 39, 62.7, 2100, 7200 }, + [24] = { 38.9, 62.6, 2100, 7200 }, + }, + ["lvl"] = "46", + }, + [11784] = { + ["coords"] = { + [1] = { 39.8, 93.2, 2100, 7200 }, + [2] = { 31.8, 80.2, 2100, 7200 }, + [3] = { 35.9, 76.4, 2100, 7200 }, + [4] = { 35.9, 76.2, 2100, 7200 }, + [5] = { 36.5, 72.5, 2100, 7200 }, + [6] = { 32.2, 68.9, 2100, 7200 }, + [7] = { 27.9, 66.7, 2100, 7200 }, + [8] = { 38.8, 62.7, 2100, 7200 }, + }, + ["lvl"] = "47-48", + ["rnk"] = "1", + }, + [11785] = { + ["coords"] = { + [1] = { 34, 68.4, 405, 300 }, + [2] = { 33.2, 67.7, 405, 300 }, + [3] = { 34.4, 66.7, 405, 300 }, + [4] = { 32.6, 66.6, 405, 300 }, + [5] = { 33.7, 66.3, 405, 300 }, + [6] = { 30.2, 65.3, 405, 300 }, + [7] = { 31.5, 64.6, 405, 300 }, + [8] = { 35, 64.2, 405, 300 }, + [9] = { 35.1, 64.1, 405, 300 }, + [10] = { 34.2, 63.5, 405, 300 }, + [11] = { 33.9, 62.1, 405, 300 }, + [12] = { 35.2, 61.1, 405, 300 }, + [13] = { 33.8, 59.8, 405, 300 }, + [14] = { 35, 58.9, 405, 300 }, + [15] = { 61, 91.1, 2100, 300 }, + [16] = { 56.9, 87.4, 2100, 300 }, + [17] = { 63.3, 81.9, 2100, 300 }, + [18] = { 53.5, 81.3, 2100, 300 }, + [19] = { 59.5, 80.1, 2100, 300 }, + [20] = { 40.3, 74.6, 2100, 300 }, + [21] = { 47.3, 70.6, 2100, 300 }, + [22] = { 66.7, 68.6, 2100, 300 }, + [23] = { 67, 68.1, 2100, 300 }, + [24] = { 62.1, 64.8, 2100, 300 }, + [25] = { 60.5, 56.8, 2100, 300 }, + [26] = { 67.5, 51.3, 2100, 300 }, + [27] = { 60.1, 44.6, 2100, 300 }, + [28] = { 66.7, 39.6, 2100, 300 }, + }, + ["lvl"] = "40-41", + ["rnk"] = "1", + }, + [11786] = { + ["coords"] = { + [1] = { 29.7, 65.5, 405, 300 }, + [2] = { 32.5, 63.7, 405, 300 }, + [3] = { 36.6, 62.8, 405, 300 }, + [4] = { 34.7, 62.7, 405, 300 }, + [5] = { 34.9, 61.3, 405, 300 }, + [6] = { 36.4, 61.2, 405, 300 }, + [7] = { 34.1, 61, 405, 300 }, + [8] = { 36.6, 60.8, 405, 300 }, + [9] = { 37.6, 75.4, 2100, 300 }, + [10] = { 52.9, 65.8, 2100, 300 }, + [11] = { 75.5, 60.7, 2100, 300 }, + [12] = { 64.7, 60.1, 2100, 300 }, + [13] = { 66.2, 52.6, 2100, 300 }, + [14] = { 74.2, 51.9, 2100, 300 }, + [15] = { 61.4, 50.8, 2100, 300 }, + [16] = { 75.1, 49.9, 2100, 300 }, + }, + ["lvl"] = "41-42", + ["rnk"] = "1", + }, + [11787] = { + ["coords"] = { + [1] = { 29.6, 57.3, 405, 300 }, + [2] = { 29.1, 57.3, 405, 300 }, + [3] = { 29.4, 56.4, 405, 300 }, + [4] = { 28.2, 56.4, 405, 300 }, + [5] = { 26.7, 56.4, 405, 300 }, + [6] = { 28.5, 56.1, 405, 300 }, + [7] = { 27.7, 55.2, 405, 300 }, + [8] = { 28.3, 55, 405, 300 }, + [9] = { 27.3, 54.9, 405, 300 }, + [10] = { 27.5, 54.2, 405, 300 }, + [11] = { 37.2, 30.8, 2100, 300 }, + [12] = { 34.3, 30.7, 2100, 300 }, + [13] = { 35.9, 26.1, 2100, 300 }, + [14] = { 29.2, 26, 2100, 300 }, + [15] = { 21, 25.8, 2100, 300 }, + [16] = { 30.8, 24.1, 2100, 300 }, + [17] = { 27, 19.6, 2100, 300 }, + [18] = { 30, 18.2, 2100, 300 }, + [19] = { 24.7, 17.8, 2100, 300 }, + [20] = { 25.7, 13.8, 2100, 300 }, + }, + ["lvl"] = "40-41", + ["rnk"] = "1", + }, + [11788] = { + ["coords"] = { + [1] = { 29.7, 58.3, 405, 300 }, + [2] = { 28.3, 57.2, 405, 300 }, + [3] = { 28.8, 57, 405, 300 }, + [4] = { 27.9, 56.3, 405, 300 }, + [5] = { 27.3, 55.9, 405, 300 }, + [6] = { 29.3, 55.8, 405, 300 }, + [7] = { 29.5, 55.4, 405, 300 }, + [8] = { 26.6, 55.3, 405, 300 }, + [9] = { 26.7, 54.9, 405, 300 }, + [10] = { 28.6, 53.3, 405, 300 }, + [11] = { 37.6, 36.4, 2100, 300 }, + [12] = { 29.9, 30.3, 2100, 300 }, + [13] = { 32.6, 29, 2100, 300 }, + [14] = { 27.8, 25.4, 2100, 300 }, + [15] = { 24.6, 23.3, 2100, 300 }, + [16] = { 35.3, 22.9, 2100, 300 }, + [17] = { 36.5, 20.6, 2100, 300 }, + [18] = { 21, 20.1, 2100, 300 }, + [19] = { 21.2, 17.6, 2100, 300 }, + [20] = { 31.7, 9.2, 2100, 300 }, + }, + ["lvl"] = "41-42", + ["rnk"] = "1", + }, + [11789] = { + ["coords"] = { + [1] = { 38.6, 95.5, 2100, 7200 }, + [2] = { 39.1, 95.4, 2100, 7200 }, + [3] = { 38.1, 95.3, 2100, 7200 }, + [4] = { 38.8, 95.2, 2100, 7200 }, + [5] = { 38.5, 95.1, 2100, 7200 }, + [6] = { 41.1, 94, 2100, 7200 }, + [7] = { 41.4, 93.9, 2100, 7200 }, + [8] = { 40.8, 93.4, 2100, 7200 }, + [9] = { 41.2, 93.3, 2100, 7200 }, + [10] = { 38.2, 92.9, 2100, 7200 }, + [11] = { 37.9, 92.8, 2100, 7200 }, + [12] = { 41, 92.7, 2100, 7200 }, + [13] = { 37.9, 92.5, 2100, 7200 }, + [14] = { 35.3, 92.5, 2100, 7200 }, + [15] = { 37.6, 92.5, 2100, 7200 }, + [16] = { 38.1, 92.4, 2100, 7200 }, + [17] = { 34.9, 92.1, 2100, 7200 }, + [18] = { 37.8, 92.1, 2100, 7200 }, + [19] = { 35.3, 91.8, 2100, 7200 }, + [20] = { 35, 91.6, 2100, 7200 }, + [21] = { 35.6, 91.4, 2100, 7200 }, + [22] = { 31.5, 77.8, 2100, 7200 }, + [23] = { 31.9, 77.3, 2100, 7200 }, + [24] = { 30.7, 77.3, 2100, 7200 }, + [25] = { 35.1, 77, 2100, 7200 }, + [26] = { 31.8, 76.8, 2100, 7200 }, + [27] = { 30.8, 76.7, 2100, 7200 }, + [28] = { 35.3, 76.4, 2100, 7200 }, + [29] = { 31.4, 76.4, 2100, 7200 }, + [30] = { 35.6, 75.9, 2100, 7200 }, + [31] = { 35.2, 75.7, 2100, 7200 }, + [32] = { 34.7, 75.5, 2100, 7200 }, + [33] = { 32.4, 74.4, 2100, 7200 }, + [34] = { 32, 74.2, 2100, 7200 }, + [35] = { 32.3, 74, 2100, 7200 }, + [36] = { 31.5, 73.6, 2100, 7200 }, + [37] = { 32, 73.5, 2100, 7200 }, + [38] = { 31.7, 73, 2100, 7200 }, + [39] = { 36.6, 73, 2100, 7200 }, + [40] = { 36.3, 72.5, 2100, 7200 }, + [41] = { 36.8, 72.4, 2100, 7200 }, + [42] = { 37.4, 72.3, 2100, 7200 }, + [43] = { 37, 72, 2100, 7200 }, + [44] = { 38.5, 67.7, 2100, 7200 }, + [45] = { 38.3, 67.3, 2100, 7200 }, + [46] = { 39.3, 66.7, 2100, 7200 }, + [47] = { 38.4, 66.6, 2100, 7200 }, + [48] = { 38.8, 66.5, 2100, 7200 }, + [49] = { 42.2, 62.3, 2100, 7200 }, + [50] = { 41.8, 62.2, 2100, 7200 }, + [51] = { 35.8, 62.2, 2100, 7200 }, + [52] = { 36.4, 62.1, 2100, 7200 }, + [53] = { 41.4, 62, 2100, 7200 }, + [54] = { 42.2, 62, 2100, 7200 }, + [55] = { 35.4, 61.7, 2100, 7200 }, + [56] = { 36.6, 61.4, 2100, 7200 }, + [57] = { 41.6, 61.4, 2100, 7200 }, + [58] = { 42.1, 61.3, 2100, 7200 }, + [59] = { 36.2, 60.9, 2100, 7200 }, + [60] = { 35.5, 60.8, 2100, 7200 }, + [61] = { 13.1, 60.7, 2100, 7200 }, + [62] = { 12.8, 60.3, 2100, 7200 }, + [63] = { 13.5, 60.3, 2100, 7200 }, + [64] = { 13.3, 60.2, 2100, 7200 }, + [65] = { 13.3, 59.9, 2100, 7200 }, + [66] = { 10.6, 59.7, 2100, 7200 }, + [67] = { 13.6, 59.6, 2100, 7200 }, + [68] = { 10.4, 59.3, 2100, 7200 }, + [69] = { 10.9, 59.2, 2100, 7200 }, + [70] = { 10.6, 59.2, 2100, 7200 }, + [71] = { 10.7, 58.8, 2100, 7200 }, + [72] = { 10.9, 58.5, 2100, 7200 }, + [73] = { 11.1, 55.8, 2100, 7200 }, + [74] = { 10.5, 55.7, 2100, 7200 }, + [75] = { 10.8, 55.4, 2100, 7200 }, + [76] = { 10.3, 55.2, 2100, 7200 }, + [77] = { 11, 55.1, 2100, 7200 }, + [78] = { 14.1, 54.8, 2100, 7200 }, + [79] = { 14.7, 54.8, 2100, 7200 }, + [80] = { 14.1, 54.4, 2100, 7200 }, + [81] = { 14.6, 54.2, 2100, 7200 }, + [82] = { 14.4, 54.1, 2100, 7200 }, + [83] = { 11.7, 53.6, 2100, 7200 }, + [84] = { 12.4, 53.5, 2100, 7200 }, + [85] = { 12, 53.4, 2100, 7200 }, + [86] = { 11.8, 53.3, 2100, 7200 }, + [87] = { 12.4, 53, 2100, 7200 }, + [88] = { 10.4, 50.3, 2100, 7200 }, + [89] = { 10.7, 50.1, 2100, 7200 }, + [90] = { 10.4, 49.8, 2100, 7200 }, + [91] = { 10.8, 49.8, 2100, 7200 }, + [92] = { 10.6, 49.5, 2100, 7200 }, + [93] = { 10.9, 49.4, 2100, 7200 }, + [94] = { 13.1, 48.7, 2100, 7200 }, + [95] = { 12.8, 48.4, 2100, 7200 }, + [96] = { 13.3, 48.3, 2100, 7200 }, + [97] = { 12.6, 47.9, 2100, 7200 }, + [98] = { 13, 47.6, 2100, 7200 }, + }, + ["lvl"] = "46-48", + }, + [11790] = { + ["coords"] = { + [1] = { 42, 42.4, 2100, 7200 }, + [2] = { 39.3, 37.3, 2100, 7200 }, + [3] = { 38.6, 32.7, 2100, 7200 }, + [4] = { 46.7, 32.6, 2100, 7200 }, + [5] = { 46.9, 32.2, 2100, 7200 }, + [6] = { 47.7, 31.5, 2100, 7200 }, + [7] = { 47.2, 31.3, 2100, 7200 }, + [8] = { 44.9, 30.1, 2100, 7200 }, + [9] = { 43.1, 29.1, 2100, 7200 }, + [10] = { 42.6, 29, 2100, 7200 }, + [11] = { 39, 28, 2100, 7200 }, + [12] = { 46.9, 27.3, 2100, 7200 }, + [13] = { 39.9, 25.9, 2100, 7200 }, + [14] = { 38.6, 23.4, 2100, 7200 }, + [15] = { 42.2, 21.4, 2100, 7200 }, + [16] = { 42.8, 21.3, 2100, 7200 }, + }, + ["lvl"] = "43-44", + ["rnk"] = "1", + }, + [11791] = { + ["coords"] = { + [1] = { 41.2, 43.9, 2100, 7200 }, + [2] = { 41.5, 43.8, 2100, 7200 }, + [3] = { 41.9, 42.9, 2100, 7200 }, + [4] = { 29.9, 42.7, 2100, 7200 }, + [5] = { 30.5, 42.7, 2100, 7200 }, + [6] = { 41.9, 41.4, 2100, 7200 }, + [7] = { 41.6, 41.3, 2100, 7200 }, + [8] = { 37.9, 40.1, 2100, 7200 }, + [9] = { 38.1, 39.9, 2100, 7200 }, + [10] = { 32, 36.7, 2100, 7200 }, + [11] = { 32.3, 36.4, 2100, 7200 }, + [12] = { 39.5, 36, 2100, 7200 }, + [13] = { 32.1, 34.7, 2100, 7200 }, + [14] = { 32.5, 34.7, 2100, 7200 }, + [15] = { 39.2, 32.9, 2100, 7200 }, + [16] = { 28.8, 32.6, 2100, 7200 }, + [17] = { 29, 32.4, 2100, 7200 }, + [18] = { 25, 31.9, 2100, 7200 }, + [19] = { 25, 31.3, 2100, 7200 }, + [20] = { 38.8, 28.3, 2100, 7200 }, + [21] = { 40.1, 25.7, 2100, 7200 }, + [22] = { 38.7, 23.1, 2100, 7200 }, + }, + ["lvl"] = "43-45", + ["rnk"] = "1", + }, + [11792] = { + ["coords"] = { + [1] = { 41, 42, 2100, 7200 }, + [2] = { 39.1, 37.9, 2100, 7200 }, + [3] = { 33, 33.9, 2100, 7200 }, + [4] = { 33.8, 33.9, 2100, 7200 }, + [5] = { 34.1, 32.5, 2100, 604800 }, + [6] = { 32.7, 32.5, 2100, 604800 }, + [7] = { 39.7, 23.1, 2100, 7200 }, + }, + ["lvl"] = "42-44", + ["rnk"] = "1", + }, + [11793] = { + ["coords"] = { + [1] = { 19.1, 28.2, 2100, 7200 }, + [2] = { 19.4, 27.9, 2100, 7200 }, + [3] = { 38.9, 20.9, 2100, 7200 }, + [4] = { 38.8, 20.8, 2100, 7200 }, + [5] = { 40.4, 11.1, 2100, 7200 }, + [6] = { 40.4, 11, 2100, 7200 }, + }, + ["lvl"] = "45-46", + ["rnk"] = "1", + }, + [11794] = { + ["coords"] = { + [1] = { 30.6, 28.8, 2100, 7200 }, + [2] = { 30.7, 28.5, 2100, 7200 }, + [3] = { 19.4, 28.2, 2100, 7200 }, + [4] = { 19.4, 27.6, 2100, 7200 }, + [5] = { 26.9, 23.8, 2100, 7200 }, + [6] = { 27.2, 23.8, 2100, 7200 }, + [7] = { 27.4, 23.6, 2100, 7200 }, + [8] = { 30.4, 23.2, 2100, 7200 }, + [9] = { 27.5, 23.1, 2100, 7200 }, + [10] = { 30.4, 23.1, 2100, 7200 }, + [11] = { 30.4, 18.2, 2100, 7200 }, + [12] = { 30.4, 18.1, 2100, 7200 }, + }, + ["lvl"] = "45-47", + ["rnk"] = "1", + }, + [11796] = { + ["coords"] = { + [1] = { 48.2, 31.8, 493, 300 }, + }, + ["lvl"] = "60", + }, + [11807] = { + ["coords"] = { + [1] = { 31.4, 44.4, 1, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [11809] = "_", + [11814] = { + ["coords"] = { + [1] = { 56.1, 74.2, 14, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "12", + }, + [11817] = { + ["coords"] = { + [1] = { 69.1, 19.6, 148, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [11820] = { + ["coords"] = { + [1] = { 71.4, 67.6, 331, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "28", + }, + [11821] = { + ["coords"] = { + [1] = { 71.1, 90.1, 406, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [11822] = { + ["coords"] = { + [1] = { 61.1, 66.5, 493, 300 }, + [2] = { 65.9, 61.4, 493, 300 }, + [3] = { 65.8, 60.4, 493, 300 }, + [4] = { 65.8, 59.8, 493, 300 }, + [5] = { 71.3, 56.6, 493, 300 }, + [6] = { 71, 56.1, 493, 300 }, + [7] = { 68.4, 52.7, 493, 300 }, + [8] = { 68.8, 52.4, 493, 300 }, + [9] = { 44.7, 45.7, 493, 300 }, + [10] = { 45.2, 45.2, 493, 300 }, + [11] = { 44.5, 44.9, 493, 300 }, + [12] = { 45, 44.7, 493, 300 }, + [13] = { 51.4, 44.2, 493, 300 }, + [14] = { 51.9, 44.1, 493, 300 }, + [15] = { 46, 43.3, 493, 300 }, + [16] = { 36.6, 42.5, 493, 300 }, + [17] = { 46, 42.5, 493, 300 }, + [18] = { 36.8, 42.1, 493, 300 }, + [19] = { 51, 40.5, 493, 300 }, + [20] = { 45, 39.8, 493, 300 }, + [21] = { 51.7, 39.2, 493, 300 }, + [22] = { 36.1, 39.1, 493, 300 }, + [23] = { 48.1, 37.3, 493, 300 }, + [24] = { 48.5, 37.2, 493, 300 }, + [25] = { 42.9, 35.3, 493, 300 }, + [26] = { 51.5, 34.9, 493, 300 }, + [27] = { 52.8, 34.8, 493, 300 }, + [28] = { 42.9, 34.4, 493, 300 }, + [29] = { 48.3, 33.5, 493, 300 }, + [30] = { 55.8, 32.8, 493, 300 }, + [31] = { 56.7, 32.5, 493, 300 }, + [32] = { 55.7, 31.4, 493, 300 }, + [33] = { 54.8, 29.9, 493, 300 }, + }, + ["lvl"] = "55", + }, + [11826] = { + ["coords"] = { + [1] = { 30.5, 42.7, 357, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [11827] = { + ["coords"] = { + [1] = { 38.1, 64.6, 1519, 310 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [11828] = { + ["coords"] = { + [1] = { 37.9, 64.7, 1519, 540 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [11830] = { + ["coords"] = { + [1] = { 61, 82, 1977, 7200 }, + [2] = { 57.1, 80.8, 1977, 7200 }, + [3] = { 59.7, 80.4, 1977, 7200 }, + [4] = { 62.2, 80.2, 1977, 7200 }, + [5] = { 60.3, 79.4, 1977, 7200 }, + [6] = { 60.2, 79.2, 1977, 7200 }, + [7] = { 61, 78, 1977, 7200 }, + [8] = { 59.1, 78, 1977, 7200 }, + [9] = { 60.9, 77.8, 1977, 7200 }, + [10] = { 59.9, 77.7, 1977, 7200 }, + [11] = { 58, 75.5, 1977, 7200 }, + [12] = { 58.9, 74.1, 1977, 7200 }, + [13] = { 58.7, 74, 1977, 7200 }, + [14] = { 63.3, 72.8, 1977, 7200 }, + [15] = { 64.4, 68, 1977, 7200 }, + [16] = { 50.4, 58.9, 1977, 7200 }, + [17] = { 51.5, 53.9, 1977, 7200 }, + [18] = { 44.2, 52.3, 1977, 7200 }, + [19] = { 38.1, 45.4, 1977, 7200 }, + [20] = { 33.6, 42.7, 1977, 7200 }, + [21] = { 49.9, 39.9, 1977, 7200 }, + [22] = { 49.6, 39.9, 1977, 7200 }, + [23] = { 50, 39.8, 1977, 7200 }, + [24] = { 49.9, 39.7, 1977, 7200 }, + [25] = { 50.1, 39.6, 1977, 7200 }, + [26] = { 49.6, 39.6, 1977, 7200 }, + [27] = { 44, 31.2, 1977, 7200 }, + [28] = { 45.4, 30.2, 1977, 7200 }, + [29] = { 40, 29.8, 1977, 7200 }, + [30] = { 41.3, 28.2, 1977, 7200 }, + [31] = { 42.6, 27.4, 1977, 7200 }, + [32] = { 53.1, 26.2, 1977, 7200 }, + [33] = { 41.7, 23.6, 1977, 7200 }, + [34] = { 52.8, 23.3, 1977, 7200 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11831] = { + ["coords"] = { + [1] = { 37.8, 71.7, 1977, 7200 }, + [2] = { 37.8, 71.5, 1977, 7200 }, + [3] = { 40.3, 70.2, 1977, 7200 }, + [4] = { 41.1, 55.1, 1977, 7200 }, + [5] = { 53.9, 51, 1977, 7200 }, + [6] = { 54.3, 25.9, 1977, 7200 }, + [7] = { 41.9, 21.8, 1977, 7200 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11832] = { + ["coords"] = { + [1] = { 36.2, 41.8, 493, 600 }, + }, + ["lvl"] = "62", + }, + [11833] = { + ["coords"] = { + [1] = { 44.1, 22.8, 215, 30 }, + [2] = { 70.1, 29.5, 1638, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [11834] = { + ["coords"] = { + [1] = { 58.1, 38.1, 2437, 18000 }, + }, + ["fac"] = "AH", + ["lvl"] = "14", + }, + [11836] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "14", + }, + [11838] = { + ["coords"] = { + [1] = { 52.4, 95.5, 2597, 120 }, + [2] = { 54.6, 56.1, 2597, 120 }, + [3] = { 54.5, 55.6, 2597, 120 }, + [4] = { 54.4, 53.4, 2597, 120 }, + [5] = { 54.3, 53, 2597, 120 }, + [6] = { 54.9, 52.7, 2597, 120 }, + [7] = { 55.1, 52.4, 2597, 120 }, + [8] = { 54.1, 52, 2597, 120 }, + [9] = { 54.3, 51.8, 2597, 120 }, + [10] = { 54.6, 51.7, 2597, 120 }, + [11] = { 54.4, 51.6, 2597, 120 }, + [12] = { 54.5, 50.7, 2597, 120 }, + [13] = { 54.7, 50.4, 2597, 120 }, + [14] = { 55, 50.3, 2597, 120 }, + [15] = { 55.1, 47.4, 2597, 120 }, + [16] = { 55.3, 47.2, 2597, 120 }, + [17] = { 55.5, 46.8, 2597, 120 }, + }, + ["lvl"] = "56-57", + }, + [11839] = { + ["coords"] = { + [1] = { 52.6, 96.7, 2597, 120 }, + [2] = { 53.4, 93.8, 2597, 120 }, + [3] = { 50.2, 93.4, 2597, 120 }, + [4] = { 53.3, 90.7, 2597, 120 }, + [5] = { 54.5, 55.8, 2597, 120 }, + [6] = { 54.2, 55.8, 2597, 120 }, + [7] = { 54.7, 55.6, 2597, 120 }, + [8] = { 54.3, 55.3, 2597, 120 }, + [9] = { 54.5, 55.1, 2597, 120 }, + [10] = { 54.7, 53.1, 2597, 120 }, + [11] = { 54.5, 52.9, 2597, 120 }, + [12] = { 54.7, 52.6, 2597, 120 }, + [13] = { 54.2, 52.5, 2597, 120 }, + [14] = { 54.4, 52, 2597, 120 }, + [15] = { 54.4, 51.2, 2597, 120 }, + [16] = { 54.7, 50.7, 2597, 120 }, + [17] = { 55, 50.6, 2597, 120 }, + [18] = { 54.8, 50.3, 2597, 120 }, + [19] = { 54.9, 50, 2597, 120 }, + [20] = { 55.3, 47.7, 2597, 120 }, + [21] = { 55.4, 47.4, 2597, 120 }, + [22] = { 55, 47.3, 2597, 120 }, + [23] = { 55.7, 47.1, 2597, 120 }, + [24] = { 55.1, 46.8, 2597, 120 }, + }, + ["lvl"] = "56-57", + }, + [11840] = { + ["coords"] = { + [1] = { 51.7, 94.8, 2597, 120 }, + [2] = { 52.6, 93.9, 2597, 120 }, + [3] = { 52.1, 91, 2597, 120 }, + [4] = { 54.3, 53.1, 2597, 120 }, + [5] = { 54.8, 52.9, 2597, 120 }, + [6] = { 53.8, 51.9, 2597, 120 }, + [7] = { 54.3, 51.6, 2597, 120 }, + [8] = { 54.8, 51.1, 2597, 120 }, + }, + ["lvl"] = "58-59", + }, + [11856] = { + ["coords"] = { + [1] = { 71.3, 82.6, 406, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "15", + }, + [11857] = { + ["coords"] = { + [1] = { 35.2, 27.8, 17, 25 }, + [2] = { 81.3, 92.4, 406, 25 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [11858] = { + ["coords"] = { + [1] = { 71.4, 83, 406, 300 }, + }, + ["lvl"] = "18", + }, + [11860] = { + ["coords"] = { + [1] = { 50, 62.7, 406, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [11861] = { + ["coords"] = { + [1] = { 50, 65.1, 406, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [11862] = { + ["coords"] = { + [1] = { 50.1, 65.3, 406, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [11864] = { + ["coords"] = { + [1] = { 50.2, 60.5, 406, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [11867] = { + ["coords"] = { + [1] = { 63.9, 69.1, 1519, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + ["rnk"] = "1", + }, + [11874] = { + ["coords"] = { + [1] = { 24.7, 32.6, 8, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "44", + }, + [11880] = { + ["coords"] = { + [1] = { 19.6, 88.7, 1377, 300 }, + [2] = { 18.7, 87.3, 1377, 300 }, + [3] = { 16.7, 86.9, 1377, 300 }, + [4] = { 16.8, 85.5, 1377, 300 }, + [5] = { 18.1, 84.5, 1377, 300 }, + [6] = { 20.7, 84.3, 1377, 300 }, + [7] = { 20, 83.2, 1377, 300 }, + [8] = { 17, 83, 1377, 300 }, + [9] = { 19.6, 82, 1377, 300 }, + [10] = { 17.5, 81.7, 1377, 300 }, + [11] = { 18, 80.1, 1377, 300 }, + [12] = { 26.3, 71.4, 1377, 1620 }, + [13] = { 26.2, 71.3, 1377, 1620 }, + [14] = { 26.2, 71.1, 1377, 1620 }, + [15] = { 26.4, 71, 1377, 1620 }, + [16] = { 38.8, 47.1, 1377, 300 }, + [17] = { 40.9, 47, 1377, 300 }, + [18] = { 37.8, 46.9, 1377, 300 }, + [19] = { 38.8, 46.3, 1377, 300 }, + [20] = { 39.8, 46, 1377, 300 }, + [21] = { 39.5, 46, 1377, 300 }, + [22] = { 41.7, 45.5, 1377, 300 }, + [23] = { 38, 45.5, 1377, 300 }, + [24] = { 40.6, 45.3, 1377, 300 }, + [25] = { 39.9, 44.9, 1377, 300 }, + [26] = { 37.8, 44.4, 1377, 300 }, + [27] = { 40.7, 44.3, 1377, 300 }, + [28] = { 41.8, 44.2, 1377, 300 }, + [29] = { 37, 44, 1377, 300 }, + [30] = { 38.1, 43.6, 1377, 300 }, + [31] = { 40.8, 43.5, 1377, 300 }, + [32] = { 40.8, 42.6, 1377, 300 }, + [33] = { 39.7, 40.8, 1377, 300 }, + [34] = { 24.8, 40.1, 1377, 3000 }, + [35] = { 24.8, 40, 1377, 3000 }, + [36] = { 24.8, 39.9, 1377, 3000 }, + [37] = { 24.7, 39.8, 1377, 3000 }, + [38] = { 26.3, 37, 1377, 300 }, + [39] = { 24.8, 37, 1377, 300 }, + [40] = { 25.4, 36.7, 1377, 300 }, + [41] = { 23.7, 35.5, 1377, 300 }, + [42] = { 25.4, 35.5, 1377, 300 }, + [43] = { 26.5, 35.4, 1377, 300 }, + [44] = { 24.8, 34.4, 1377, 300 }, + [45] = { 25.1, 34, 1377, 300 }, + [46] = { 25.6, 33.1, 1377, 300 }, + [47] = { 24.6, 32.7, 1377, 300 }, + [48] = { 25.4, 31.5, 1377, 300 }, + [49] = { 27.4, 31.3, 1377, 300 }, + [50] = { 26.4, 31.1, 1377, 300 }, + [51] = { 28.4, 31, 1377, 300 }, + [52] = { 67.3, 20.7, 1377, 300 }, + [53] = { 67, 20.4, 1377, 300 }, + [54] = { 65.1, 19.8, 1377, 300 }, + [55] = { 66.6, 19.7, 1377, 300 }, + [56] = { 67.7, 18.4, 1377, 300 }, + [57] = { 67.7, 15.4, 1377, 300 }, + [58] = { 50.2, 0.5, 3478, 300 }, + }, + ["lvl"] = "58-59", + }, + [11881] = { + ["coords"] = { + [1] = { 20.7, 88.4, 1377, 300 }, + [2] = { 20.7, 87.2, 1377, 300 }, + [3] = { 19.6, 87.1, 1377, 300 }, + [4] = { 18.6, 85.8, 1377, 300 }, + [5] = { 20.7, 85.7, 1377, 300 }, + [6] = { 21.7, 85.7, 1377, 300 }, + [7] = { 17.6, 85.4, 1377, 300 }, + [8] = { 21.5, 84.3, 1377, 300 }, + [9] = { 17.2, 83.8, 1377, 300 }, + [10] = { 20.6, 82.7, 1377, 300 }, + [11] = { 17.7, 82.7, 1377, 300 }, + [12] = { 18.5, 82.7, 1377, 300 }, + [13] = { 18.7, 80.2, 1377, 300 }, + [14] = { 39.3, 47.2, 1377, 300 }, + [15] = { 39.8, 46.9, 1377, 300 }, + [16] = { 40.2, 45.9, 1377, 300 }, + [17] = { 39.2, 45.8, 1377, 300 }, + [18] = { 37.1, 44.8, 1377, 300 }, + [19] = { 40.4, 44.8, 1377, 300 }, + [20] = { 41.1, 44, 1377, 300 }, + [21] = { 37.9, 43.9, 1377, 300 }, + [22] = { 37.1, 42.9, 1377, 300 }, + [23] = { 39.6, 42.9, 1377, 300 }, + [24] = { 39, 42.6, 1377, 300 }, + [25] = { 38.1, 41.5, 1377, 300 }, + [26] = { 38.8, 40.8, 1377, 300 }, + [27] = { 24.8, 38.5, 1377, 300 }, + [28] = { 24.5, 36.9, 1377, 300 }, + [29] = { 25.3, 36.7, 1377, 300 }, + [30] = { 25, 36.1, 1377, 300 }, + [31] = { 25.2, 36, 1377, 300 }, + [32] = { 27.5, 35.6, 1377, 300 }, + [33] = { 24.6, 35.5, 1377, 300 }, + [34] = { 27, 34.9, 1377, 300 }, + [35] = { 23.7, 34.1, 1377, 300 }, + [36] = { 28.3, 34.1, 1377, 300 }, + [37] = { 27.2, 34.1, 1377, 300 }, + [38] = { 26.4, 34.1, 1377, 300 }, + [39] = { 25.5, 33.1, 1377, 300 }, + [40] = { 28.3, 32.8, 1377, 300 }, + [41] = { 27.4, 32.7, 1377, 300 }, + [42] = { 29.1, 32.5, 1377, 300 }, + [43] = { 28.4, 31.9, 1377, 300 }, + [44] = { 51.1, 0.2, 3478, 300 }, + }, + ["lvl"] = "59-60", + }, + [11896] = { + ["coords"] = { + [1] = { 54.8, 31.8, 139, 345 }, + [2] = { 8.2, 5.1, 4012, 345 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [11898] = { + ["coords"] = { + [1] = { 85.4, 83.2, 139, 610 }, + [2] = { 45.6, 68.1, 4012, 610 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [11899] = { + ["coords"] = { + [1] = { 35.6, 31.9, 15, 120 }, + [2] = { 53.9, 70.5, 17, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [11900] = { + ["coords"] = { + [1] = { 50.1, 74.9, 148, 120 }, + [2] = { 34.4, 54, 361, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [11901] = { + ["coords"] = { + [1] = { 12.2, 33.8, 331, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [11902] = "_", + [11903] = "_", + [11904] = "_", + [11905] = "_", + [11906] = "_", + [11907] = "_", + [11908] = "_", + [11909] = "_", + [11910] = { + ["coords"] = { + [1] = { 32.8, 27, 17, 300 }, + [2] = { 32.4, 26.4, 17, 300 }, + [3] = { 30.6, 24.4, 17, 300 }, + [4] = { 31.5, 24.4, 17, 300 }, + [5] = { 33.5, 24.3, 17, 300 }, + [6] = { 33.6, 24.3, 17, 300 }, + [7] = { 32.9, 24.2, 17, 300 }, + [8] = { 32.7, 24.1, 17, 300 }, + [9] = { 32.8, 24, 17, 300 }, + [10] = { 33.5, 23.9, 17, 300 }, + [11] = { 33.6, 23.9, 17, 300 }, + [12] = { 32.6, 23.8, 17, 300 }, + [13] = { 32.8, 23.8, 17, 300 }, + [14] = { 32.8, 23.7, 17, 300 }, + [15] = { 32.7, 23.6, 17, 300 }, + [16] = { 32.2, 23.4, 17, 300 }, + [17] = { 33.7, 23.2, 17, 300 }, + [18] = { 33.5, 23.1, 17, 300 }, + [19] = { 33.7, 23.1, 17, 300 }, + [20] = { 33.9, 23.1, 17, 300 }, + [21] = { 33.6, 23.1, 17, 300 }, + [22] = { 33.1, 23, 17, 300 }, + [23] = { 33.2, 22.9, 17, 300 }, + [24] = { 33, 22.9, 17, 300 }, + [25] = { 33.1, 22.8, 17, 300 }, + [26] = { 34.1, 22.8, 17, 300 }, + [27] = { 33.5, 22.6, 17, 300 }, + [28] = { 33.3, 22.5, 17, 300 }, + [29] = { 33.3, 22.4, 17, 300 }, + [30] = { 33.2, 22.4, 17, 300 }, + [31] = { 34.2, 22.3, 17, 300 }, + [32] = { 33.4, 22.3, 17, 300 }, + [33] = { 33.8, 22.2, 17, 300 }, + [34] = { 34.1, 22.2, 17, 300 }, + [35] = { 33.1, 22.2, 17, 300 }, + [36] = { 33.3, 22.2, 17, 300 }, + [37] = { 33.5, 22.2, 17, 300 }, + [38] = { 34.2, 22.2, 17, 300 }, + [39] = { 33.8, 22.1, 17, 300 }, + [40] = { 33.8, 22, 17, 300 }, + [41] = { 34.1, 21.7, 17, 300 }, + [42] = { 33.7, 21.7, 17, 300 }, + [43] = { 34.2, 21.7, 17, 300 }, + [44] = { 34.3, 21.6, 17, 300 }, + [45] = { 34.7, 21.6, 17, 300 }, + [46] = { 34.7, 21.4, 17, 300 }, + [47] = { 34.6, 21.4, 17, 300 }, + [48] = { 34.7, 21.2, 17, 300 }, + [49] = { 34.8, 21, 17, 300 }, + [50] = { 77.3, 91.1, 406, 300 }, + [51] = { 76.7, 90.1, 406, 300 }, + [52] = { 73.5, 86.7, 406, 300 }, + [53] = { 75.1, 86.7, 406, 300 }, + [54] = { 78.5, 86.5, 406, 300 }, + [55] = { 78.6, 86.5, 406, 300 }, + [56] = { 77.4, 86.4, 406, 300 }, + [57] = { 77.1, 86.2, 406, 300 }, + [58] = { 77.3, 86, 406, 300 }, + [59] = { 78.4, 85.9, 406, 300 }, + [60] = { 78.5, 85.9, 406, 300 }, + [61] = { 77, 85.8, 406, 300 }, + [62] = { 77.2, 85.7, 406, 300 }, + [63] = { 77.3, 85.5, 406, 300 }, + [64] = { 77, 85.4, 406, 300 }, + [65] = { 76.3, 85, 406, 300 }, + [66] = { 78.7, 84.7, 406, 300 }, + [67] = { 78.5, 84.6, 406, 300 }, + [68] = { 78.7, 84.5, 406, 300 }, + [69] = { 79.2, 84.5, 406, 300 }, + [70] = { 78.6, 84.5, 406, 300 }, + [71] = { 77.8, 84.3, 406, 300 }, + [72] = { 78, 84.2, 406, 300 }, + [73] = { 77.6, 84.2, 406, 300 }, + [74] = { 77.8, 84, 406, 300 }, + [75] = { 77.7, 84, 406, 300 }, + [76] = { 79.5, 84, 406, 300 }, + [77] = { 78.5, 83.7, 406, 300 }, + [78] = { 78.2, 83.5, 406, 300 }, + [79] = { 78, 83.3, 406, 300 }, + [80] = { 79.7, 83.2, 406, 300 }, + [81] = { 78.4, 83.2, 406, 300 }, + [82] = { 78.9, 83.1, 406, 300 }, + [83] = { 79.5, 83.1, 406, 300 }, + [84] = { 77.8, 83, 406, 300 }, + [85] = { 78.2, 83, 406, 300 }, + [86] = { 78.4, 83, 406, 300 }, + [87] = { 79.6, 82.9, 406, 300 }, + [88] = { 79, 82.9, 406, 300 }, + [89] = { 78.9, 82.7, 406, 300 }, + [90] = { 79.4, 82.2, 406, 300 }, + [91] = { 78.8, 82.2, 406, 300 }, + [92] = { 79.6, 82.1, 406, 300 }, + [93] = { 79.8, 82.1, 406, 300 }, + [94] = { 80.4, 81.9, 406, 300 }, + [95] = { 80.5, 81.6, 406, 300 }, + [96] = { 80.3, 81.6, 406, 300 }, + [97] = { 80.4, 81.3, 406, 300 }, + [98] = { 80.7, 81, 406, 300 }, + }, + ["lvl"] = "14-15", + }, + [11911] = { + ["coords"] = { + [1] = { 32.8, 27, 17, 300 }, + [2] = { 32.4, 26.4, 17, 300 }, + [3] = { 30.6, 24.4, 17, 300 }, + [4] = { 31.5, 24.4, 17, 300 }, + [5] = { 33.5, 24.3, 17, 300 }, + [6] = { 33.6, 24.3, 17, 300 }, + [7] = { 32.9, 24.2, 17, 300 }, + [8] = { 32.7, 24.1, 17, 300 }, + [9] = { 32.8, 24, 17, 300 }, + [10] = { 33.5, 23.9, 17, 300 }, + [11] = { 33.6, 23.9, 17, 300 }, + [12] = { 32.6, 23.8, 17, 300 }, + [13] = { 32.8, 23.8, 17, 300 }, + [14] = { 32.8, 23.7, 17, 300 }, + [15] = { 32.7, 23.6, 17, 300 }, + [16] = { 32.2, 23.4, 17, 300 }, + [17] = { 33.7, 23.2, 17, 300 }, + [18] = { 33.5, 23.1, 17, 300 }, + [19] = { 33.7, 23.1, 17, 300 }, + [20] = { 33.9, 23.1, 17, 300 }, + [21] = { 33.6, 23.1, 17, 300 }, + [22] = { 33.1, 23, 17, 300 }, + [23] = { 33.2, 22.9, 17, 300 }, + [24] = { 33, 22.9, 17, 300 }, + [25] = { 33.1, 22.8, 17, 300 }, + [26] = { 34.1, 22.8, 17, 300 }, + [27] = { 33.5, 22.6, 17, 300 }, + [28] = { 33.3, 22.5, 17, 300 }, + [29] = { 33.3, 22.4, 17, 300 }, + [30] = { 33.2, 22.4, 17, 300 }, + [31] = { 34.2, 22.3, 17, 300 }, + [32] = { 33.4, 22.3, 17, 300 }, + [33] = { 33.8, 22.2, 17, 300 }, + [34] = { 34.1, 22.2, 17, 300 }, + [35] = { 33.1, 22.2, 17, 300 }, + [36] = { 33.3, 22.2, 17, 300 }, + [37] = { 33.5, 22.2, 17, 300 }, + [38] = { 34.2, 22.2, 17, 300 }, + [39] = { 33.8, 22.1, 17, 300 }, + [40] = { 33.8, 22, 17, 300 }, + [41] = { 34.1, 21.7, 17, 300 }, + [42] = { 33.7, 21.7, 17, 300 }, + [43] = { 34.2, 21.7, 17, 300 }, + [44] = { 34.3, 21.6, 17, 300 }, + [45] = { 34.7, 21.6, 17, 300 }, + [46] = { 34.7, 21.4, 17, 300 }, + [47] = { 34.6, 21.4, 17, 300 }, + [48] = { 34.7, 21.2, 17, 300 }, + [49] = { 34.8, 21, 17, 300 }, + [50] = { 77.3, 91.1, 406, 300 }, + [51] = { 76.7, 90.1, 406, 300 }, + [52] = { 73.5, 86.7, 406, 300 }, + [53] = { 75.1, 86.7, 406, 300 }, + [54] = { 78.5, 86.5, 406, 300 }, + [55] = { 78.6, 86.5, 406, 300 }, + [56] = { 77.4, 86.4, 406, 300 }, + [57] = { 77.1, 86.2, 406, 300 }, + [58] = { 77.3, 86, 406, 300 }, + [59] = { 78.4, 85.9, 406, 300 }, + [60] = { 78.5, 85.9, 406, 300 }, + [61] = { 77, 85.8, 406, 300 }, + [62] = { 77.2, 85.7, 406, 300 }, + [63] = { 77.3, 85.5, 406, 300 }, + [64] = { 77, 85.4, 406, 300 }, + [65] = { 76.3, 85, 406, 300 }, + [66] = { 78.7, 84.7, 406, 300 }, + [67] = { 78.5, 84.6, 406, 300 }, + [68] = { 78.7, 84.5, 406, 300 }, + [69] = { 79.2, 84.5, 406, 300 }, + [70] = { 78.6, 84.5, 406, 300 }, + [71] = { 77.8, 84.3, 406, 300 }, + [72] = { 78, 84.2, 406, 300 }, + [73] = { 77.6, 84.2, 406, 300 }, + [74] = { 77.8, 84, 406, 300 }, + [75] = { 77.7, 84, 406, 300 }, + [76] = { 79.5, 84, 406, 300 }, + [77] = { 78.5, 83.7, 406, 300 }, + [78] = { 78.2, 83.5, 406, 300 }, + [79] = { 78, 83.3, 406, 300 }, + [80] = { 79.7, 83.2, 406, 300 }, + [81] = { 78.4, 83.2, 406, 300 }, + [82] = { 78.9, 83.1, 406, 300 }, + [83] = { 79.5, 83.1, 406, 300 }, + [84] = { 77.8, 83, 406, 300 }, + [85] = { 78.2, 83, 406, 300 }, + [86] = { 78.4, 83, 406, 300 }, + [87] = { 79.6, 82.9, 406, 300 }, + [88] = { 79, 82.9, 406, 300 }, + [89] = { 78.9, 82.7, 406, 300 }, + [90] = { 79.4, 82.2, 406, 300 }, + [91] = { 78.8, 82.2, 406, 300 }, + [92] = { 79.6, 82.1, 406, 300 }, + [93] = { 79.8, 82.1, 406, 300 }, + [94] = { 80.4, 81.9, 406, 300 }, + [95] = { 80.5, 81.6, 406, 300 }, + [96] = { 80.3, 81.6, 406, 300 }, + [97] = { 80.4, 81.3, 406, 300 }, + [98] = { 80.7, 81, 406, 300 }, + }, + ["lvl"] = "14-15", + }, + [11912] = { + ["coords"] = { + [1] = { 33.6, 24, 17, 300 }, + [2] = { 32.8, 23.6, 17, 300 }, + [3] = { 30.5, 22.6, 17, 300 }, + [4] = { 32.3, 22.6, 17, 300 }, + [5] = { 30.6, 22.5, 17, 300 }, + [6] = { 32.2, 22.4, 17, 300 }, + [7] = { 32.3, 22.4, 17, 300 }, + [8] = { 31.3, 22.3, 17, 300 }, + [9] = { 33.3, 22.2, 17, 300 }, + [10] = { 31.7, 22.2, 17, 300 }, + [11] = { 31.5, 22.2, 17, 300 }, + [12] = { 31.7, 22.1, 17, 300 }, + [13] = { 31.3, 22.1, 17, 300 }, + [14] = { 31.9, 22, 17, 300 }, + [15] = { 32.3, 22, 17, 300 }, + [16] = { 31.3, 22, 17, 300 }, + [17] = { 31.7, 21.9, 17, 300 }, + [18] = { 31.2, 21.9, 17, 300 }, + [19] = { 31.6, 21.9, 17, 300 }, + [20] = { 31.6, 21.8, 17, 300 }, + [21] = { 31.4, 21.8, 17, 300 }, + [22] = { 34.8, 21.4, 17, 300 }, + [23] = { 30.7, 20.9, 17, 300 }, + [24] = { 30.5, 20.7, 17, 300 }, + [25] = { 78.6, 86.1, 406, 300 }, + [26] = { 77.3, 85.4, 406, 300 }, + [27] = { 73.4, 83.7, 406, 300 }, + [28] = { 73.1, 83.7, 406, 300 }, + [29] = { 76.4, 83.7, 406, 300 }, + [30] = { 70, 83.5, 406, 300 }, + [31] = { 71.8, 83.5, 406, 300 }, + [32] = { 73.6, 83.5, 406, 300 }, + [33] = { 73.3, 83.4, 406, 300 }, + [34] = { 76.2, 83.4, 406, 300 }, + [35] = { 76.4, 83.3, 406, 300 }, + [36] = { 69.6, 83.3, 406, 300 }, + [37] = { 72.8, 83.2, 406, 300 }, + [38] = { 74.8, 83.2, 406, 300 }, + [39] = { 69.9, 83.2, 406, 300 }, + [40] = { 71.1, 83.1, 406, 300 }, + [41] = { 78.1, 83.1, 406, 300 }, + [42] = { 75.4, 83.1, 406, 300 }, + [43] = { 75.1, 83, 406, 300 }, + [44] = { 70.1, 83, 406, 300 }, + [45] = { 72, 82.9, 406, 300 }, + [46] = { 75.4, 82.9, 406, 300 }, + [47] = { 74.7, 82.8, 406, 300 }, + [48] = { 71.6, 82.7, 406, 300 }, + [49] = { 75.8, 82.7, 406, 300 }, + [50] = { 76.4, 82.7, 406, 300 }, + [51] = { 74.8, 82.7, 406, 300 }, + [52] = { 72.4, 82.6, 406, 300 }, + [53] = { 72.1, 82.6, 406, 300 }, + [54] = { 71.7, 82.5, 406, 300 }, + [55] = { 75.5, 82.5, 406, 300 }, + [56] = { 74.6, 82.4, 406, 300 }, + [57] = { 75.3, 82.4, 406, 300 }, + [58] = { 75, 82.3, 406, 300 }, + [59] = { 72.4, 81.8, 406, 300 }, + [60] = { 72.3, 81.7, 406, 300 }, + [61] = { 80.6, 81.7, 406, 300 }, + [62] = { 73, 80.9, 406, 300 }, + [63] = { 73.7, 80.9, 406, 300 }, + [64] = { 73.4, 80.5, 406, 300 }, + }, + ["lvl"] = "15-16", + }, + [11913] = { + ["coords"] = { + [1] = { 33.6, 24, 17, 300 }, + [2] = { 32.8, 23.6, 17, 300 }, + [3] = { 30.5, 22.6, 17, 300 }, + [4] = { 32.3, 22.6, 17, 300 }, + [5] = { 30.6, 22.5, 17, 300 }, + [6] = { 32.2, 22.4, 17, 300 }, + [7] = { 32.3, 22.4, 17, 300 }, + [8] = { 31.3, 22.3, 17, 300 }, + [9] = { 33.3, 22.2, 17, 300 }, + [10] = { 31.7, 22.2, 17, 300 }, + [11] = { 31.5, 22.2, 17, 300 }, + [12] = { 31.7, 22.1, 17, 300 }, + [13] = { 31.3, 22.1, 17, 300 }, + [14] = { 31.9, 22, 17, 300 }, + [15] = { 32.3, 22, 17, 300 }, + [16] = { 31.3, 22, 17, 300 }, + [17] = { 31.7, 21.9, 17, 300 }, + [18] = { 31.2, 21.9, 17, 300 }, + [19] = { 31.6, 21.9, 17, 300 }, + [20] = { 31.6, 21.8, 17, 300 }, + [21] = { 31.4, 21.8, 17, 300 }, + [22] = { 34.8, 21.4, 17, 300 }, + [23] = { 30.7, 20.9, 17, 300 }, + [24] = { 30.5, 20.7, 17, 300 }, + [25] = { 78.6, 86.1, 406, 300 }, + [26] = { 77.3, 85.4, 406, 300 }, + [27] = { 73.4, 83.7, 406, 300 }, + [28] = { 73.1, 83.7, 406, 300 }, + [29] = { 76.4, 83.7, 406, 300 }, + [30] = { 70, 83.5, 406, 300 }, + [31] = { 71.8, 83.5, 406, 300 }, + [32] = { 73.6, 83.5, 406, 300 }, + [33] = { 73.3, 83.4, 406, 300 }, + [34] = { 76.2, 83.4, 406, 300 }, + [35] = { 76.4, 83.3, 406, 300 }, + [36] = { 69.6, 83.3, 406, 300 }, + [37] = { 72.8, 83.2, 406, 300 }, + [38] = { 74.8, 83.2, 406, 300 }, + [39] = { 69.9, 83.2, 406, 300 }, + [40] = { 71.1, 83.1, 406, 300 }, + [41] = { 78.1, 83.1, 406, 300 }, + [42] = { 75.4, 83.1, 406, 300 }, + [43] = { 75.1, 83, 406, 300 }, + [44] = { 70.1, 83, 406, 300 }, + [45] = { 72, 82.9, 406, 300 }, + [46] = { 75.4, 82.9, 406, 300 }, + [47] = { 74.7, 82.8, 406, 300 }, + [48] = { 71.6, 82.7, 406, 300 }, + [49] = { 75.8, 82.7, 406, 300 }, + [50] = { 76.4, 82.7, 406, 300 }, + [51] = { 74.8, 82.7, 406, 300 }, + [52] = { 72.4, 82.6, 406, 300 }, + [53] = { 72.1, 82.6, 406, 300 }, + [54] = { 71.7, 82.5, 406, 300 }, + [55] = { 75.5, 82.5, 406, 300 }, + [56] = { 74.6, 82.4, 406, 300 }, + [57] = { 75.3, 82.4, 406, 300 }, + [58] = { 75, 82.3, 406, 300 }, + [59] = { 72.4, 81.8, 406, 300 }, + [60] = { 72.3, 81.7, 406, 300 }, + [61] = { 80.6, 81.7, 406, 300 }, + [62] = { 73, 80.9, 406, 300 }, + [63] = { 73.7, 80.9, 406, 300 }, + [64] = { 73.4, 80.5, 406, 300 }, + }, + ["lvl"] = "15-16", + }, + [11914] = { + ["coords"] = { + [1] = { 31.1, 21.9, 17, 300 }, + [2] = { 74.5, 82.4, 406, 300 }, + }, + ["lvl"] = "17", + }, + [11915] = { + ["coords"] = { + [1] = { 89.5, 19.4, 405, 300 }, + [2] = { 89.2, 19.3, 405, 300 }, + [3] = { 89.5, 18.9, 405, 300 }, + [4] = { 86.6, 18.6, 405, 300 }, + [5] = { 90, 18.3, 405, 300 }, + [6] = { 88.2, 18.2, 405, 300 }, + [7] = { 89.8, 18, 405, 300 }, + [8] = { 87.2, 17.7, 405, 300 }, + [9] = { 88, 17.2, 405, 300 }, + [10] = { 85.6, 17, 405, 300 }, + [11] = { 88.6, 16.5, 405, 300 }, + [12] = { 85.1, 16.4, 405, 300 }, + [13] = { 87.4, 16.3, 405, 300 }, + [14] = { 87.5, 16.3, 405, 300 }, + [15] = { 86.6, 16.1, 405, 300 }, + [16] = { 87.3, 15.6, 405, 300 }, + [17] = { 85.3, 15.4, 405, 300 }, + [18] = { 86.2, 15.4, 405, 300 }, + [19] = { 85.8, 15.1, 405, 300 }, + [20] = { 62.2, 89.1, 406, 300 }, + [21] = { 61.9, 88.9, 406, 300 }, + [22] = { 62.1, 88.6, 406, 300 }, + [23] = { 60, 88.4, 406, 300 }, + [24] = { 62.5, 88.2, 406, 300 }, + [25] = { 61.2, 88.1, 406, 300 }, + [26] = { 62.3, 88, 406, 300 }, + [27] = { 60.4, 87.8, 406, 300 }, + [28] = { 61, 87.4, 406, 300 }, + [29] = { 59.3, 87.3, 406, 300 }, + [30] = { 61.5, 86.9, 406, 300 }, + [31] = { 58.9, 86.8, 406, 300 }, + [32] = { 60.6, 86.7, 406, 300 }, + [33] = { 60, 86.5, 406, 300 }, + [34] = { 60.5, 86.2, 406, 300 }, + [35] = { 59, 86.1, 406, 300 }, + [36] = { 59.7, 86, 406, 300 }, + [37] = { 59.3, 85.8, 406, 300 }, + }, + ["lvl"] = "16-17", + }, + [11916] = { + ["coords"] = { + [1] = { 33.7, 62.6, 1519, 375 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [11917] = { + ["coords"] = { + [1] = { 85.8, 19.1, 405, 300 }, + [2] = { 88.7, 18.8, 405, 300 }, + [3] = { 88.9, 18.8, 405, 300 }, + [4] = { 85.4, 18.5, 405, 300 }, + [5] = { 86.2, 18.5, 405, 300 }, + [6] = { 87.1, 18.3, 405, 300 }, + [7] = { 86.6, 18.2, 405, 300 }, + [8] = { 87.3, 18.1, 405, 300 }, + [9] = { 88.4, 18.1, 405, 300 }, + [10] = { 87.2, 17.6, 405, 300 }, + [11] = { 88.1, 17.3, 405, 300 }, + [12] = { 88.1, 16.9, 405, 300 }, + [13] = { 87.2, 16.7, 405, 300 }, + [14] = { 86.7, 16.7, 405, 300 }, + [15] = { 87.9, 16.6, 405, 300 }, + [16] = { 88.7, 16.6, 405, 300 }, + [17] = { 85.3, 16.5, 405, 300 }, + [18] = { 86, 16.5, 405, 300 }, + [19] = { 87.5, 16.3, 405, 300 }, + [20] = { 86.6, 15.8, 405, 300 }, + [21] = { 85.7, 15.5, 405, 300 }, + [22] = { 84.1, 15.5, 405, 300 }, + [23] = { 86.2, 15.2, 405, 300 }, + [24] = { 84.2, 14.8, 405, 300 }, + [25] = { 59.4, 88.8, 406, 300 }, + [26] = { 61.5, 88.6, 406, 300 }, + [27] = { 61.7, 88.6, 406, 300 }, + [28] = { 59.1, 88.4, 406, 300 }, + [29] = { 59.6, 88.4, 406, 300 }, + [30] = { 60.3, 88.2, 406, 300 }, + [31] = { 60, 88.2, 406, 300 }, + [32] = { 60.5, 88.1, 406, 300 }, + [33] = { 61.3, 88.1, 406, 300 }, + [34] = { 60.4, 87.7, 406, 300 }, + [35] = { 61.1, 87.5, 406, 300 }, + [36] = { 61.1, 87.2, 406, 300 }, + [37] = { 60.4, 87, 406, 300 }, + [38] = { 60.1, 87, 406, 300 }, + [39] = { 61, 87, 406, 300 }, + [40] = { 61.5, 86.9, 406, 300 }, + [41] = { 59, 86.8, 406, 300 }, + [42] = { 59.6, 86.8, 406, 300 }, + [43] = { 60.6, 86.7, 406, 300 }, + [44] = { 60, 86.4, 406, 300 }, + [45] = { 59.3, 86.1, 406, 300 }, + [46] = { 58.1, 86.1, 406, 300 }, + [47] = { 59.6, 85.9, 406, 300 }, + [48] = { 58.2, 85.6, 406, 300 }, + }, + ["lvl"] = "16-17", + }, + [11918] = { + ["coords"] = { + [1] = { 85.8, 19.6, 405, 300 }, + [2] = { 85.3, 19.1, 405, 300 }, + [3] = { 86.8, 18.5, 405, 300 }, + [4] = { 86.1, 18.5, 405, 300 }, + [5] = { 88.2, 18, 405, 300 }, + [6] = { 86.5, 17.6, 405, 300 }, + [7] = { 85.8, 17.2, 405, 300 }, + [8] = { 86.5, 17.2, 405, 300 }, + [9] = { 86.8, 17, 405, 300 }, + [10] = { 86.7, 16.7, 405, 300 }, + [11] = { 85.4, 15.7, 405, 300 }, + [12] = { 84.3, 15.3, 405, 300 }, + [13] = { 59.4, 89.2, 406, 300 }, + [14] = { 59, 88.8, 406, 300 }, + [15] = { 60.1, 88.4, 406, 300 }, + [16] = { 59.6, 88.4, 406, 300 }, + [17] = { 61.1, 88, 406, 300 }, + [18] = { 59.9, 87.7, 406, 300 }, + [19] = { 59.4, 87.4, 406, 300 }, + [20] = { 59.9, 87.4, 406, 300 }, + [21] = { 60.1, 87.3, 406, 300 }, + [22] = { 60, 87, 406, 300 }, + [23] = { 59.1, 86.3, 406, 300 }, + [24] = { 58.2, 86, 406, 300 }, + }, + ["lvl"] = "17-18", + }, + [11919] = "_", + [11921] = { + ["coords"] = { + [1] = { 53.8, 73, 406, 300 }, + }, + ["lvl"] = "21", + ["rnk"] = "1", + }, + [11926] = "_", + [11938] = "_", + [11957] = { + ["coords"] = { + [1] = { 58.4, 73.5, 493, 300 }, + }, + ["lvl"] = "60", + }, + [11958] = "_", + [11959] = "_", + [11978] = "_", + [11980] = "_", + [11981] = { + ["coords"] = { + [1] = { 37.3, 4.2, 2677, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [11982] = { + ["coords"] = { + [1] = { 67.3, 30.1, 2717, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [11983] = { + ["coords"] = { + [1] = { 34.3, 33.7, 2677, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [11988] = { + ["coords"] = { + [1] = { 66, 65.7, 2717, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [11997] = { + ["coords"] = { + [1] = { 60.1, 92.9, 2597, 120 }, + [2] = { 54.3, 5.5, 2597, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [11998] = { + ["coords"] = { + [1] = { 58, 64.7, 2597, 490 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [12017] = { + ["coords"] = { + [1] = { 38.2, 54, 2677, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [12020] = "_", + [12030] = { + ["coords"] = { + [1] = { 23.2, 69.7, 405, 300 }, + [2] = { 2.3, 98.5, 2100, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [12031] = { + ["coords"] = { + [1] = { 22.6, 72, 405, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [12033] = { + ["coords"] = { + [1] = { 26.2, 69.6, 405, 300 }, + [2] = { 18.3, 98.2, 2100, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [12035] = "_", + [12036] = "_", + [12037] = { + ["coords"] = { + [1] = { 83.4, 48.5, 331, 54000 }, + }, + ["lvl"] = "32", + ["rnk"] = "4", + }, + [12038] = "_", + [12039] = "_", + [12040] = "_", + [12043] = { + ["coords"] = { + [1] = { 48.5, 61.3, 406, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "32", + }, + [12044] = "_", + [12047] = { + ["coords"] = { + [1] = { 55, 43.7, 2597, 120 }, + [2] = { 55.4, 43.5, 2597, 120 }, + [3] = { 44.6, 43.4, 2597, 120 }, + [4] = { 44.6, 43.3, 2597, 120 }, + [5] = { 50, 43.3, 2597, 120 }, + [6] = { 50, 42.9, 2597, 120 }, + [7] = { 54.2, 42.8, 2597, 120 }, + [8] = { 55.3, 42.7, 2597, 120 }, + [9] = { 54.2, 42.7, 2597, 120 }, + [10] = { 53.2, 42.6, 2597, 120 }, + [11] = { 50.1, 42.6, 2597, 120 }, + [12] = { 49.8, 42.6, 2597, 120 }, + [13] = { 48.2, 42.4, 2597, 120 }, + [14] = { 48.3, 42.4, 2597, 120 }, + [15] = { 54.8, 42.4, 2597, 120 }, + [16] = { 49.7, 42.2, 2597, 120 }, + [17] = { 54.9, 41.8, 2597, 120 }, + [18] = { 46.9, 41.7, 2597, 120 }, + [19] = { 50.2, 39.9, 2597, 120 }, + [20] = { 47.2, 39.7, 2597, 120 }, + [21] = { 51.8, 39.2, 2597, 120 }, + [22] = { 52.1, 39.1, 2597, 120 }, + [23] = { 47.4, 38.9, 2597, 120 }, + [24] = { 52.1, 38.2, 2597, 120 }, + [25] = { 50, 38, 2597, 120 }, + [26] = { 52.2, 37.9, 2597, 120 }, + [27] = { 51.2, 37.8, 2597, 120 }, + [28] = { 49.8, 37.8, 2597, 120 }, + [29] = { 52, 37.6, 2597, 120 }, + [30] = { 51.5, 37.4, 2597, 120 }, + [31] = { 49.8, 37.4, 2597, 120 }, + [32] = { 48.7, 37.3, 2597, 120 }, + [33] = { 51.1, 37.1, 2597, 120 }, + [34] = { 47.3, 36.8, 2597, 120 }, + [35] = { 47, 36.5, 2597, 120 }, + [36] = { 47.4, 36.5, 2597, 120 }, + [37] = { 46.8, 36.4, 2597, 120 }, + [38] = { 47.6, 36.1, 2597, 120 }, + [39] = { 47.1, 36, 2597, 120 }, + [40] = { 47.5, 35.7, 2597, 120 }, + [41] = { 51.3, 35, 2597, 120 }, + [42] = { 51.2, 35, 2597, 120 }, + [43] = { 50.3, 34.3, 2597, 120 }, + [44] = { 50.3, 34.2, 2597, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [12048] = { + ["coords"] = { + [1] = { 49.9, 43.2, 2597, 430 }, + [2] = { 55.4, 43, 2597, 430 }, + [3] = { 49.7, 43, 2597, 430 }, + [4] = { 54.9, 42.9, 2597, 430 }, + [5] = { 49.4, 42.8, 2597, 430 }, + [6] = { 46.8, 42.4, 2597, 430 }, + [7] = { 55.2, 42.3, 2597, 430 }, + [8] = { 47, 42, 2597, 430 }, + [9] = { 46.6, 42, 2597, 430 }, + [10] = { 46.7, 41.8, 2597, 430 }, + [11] = { 50.3, 39.9, 2597, 430 }, + [12] = { 50.4, 39.7, 2597, 430 }, + [13] = { 52.6, 39.1, 2597, 430 }, + [14] = { 51.4, 38.7, 2597, 430 }, + [15] = { 49.1, 38.6, 2597, 430 }, + [16] = { 48.9, 38.5, 2597, 430 }, + [17] = { 47.8, 38.4, 2597, 430 }, + [18] = { 51.6, 38.3, 2597, 120 }, + [19] = { 51.7, 38.2, 2597, 120 }, + [20] = { 50.2, 38, 2597, 430 }, + [21] = { 51.4, 37.9, 2597, 430 }, + [22] = { 51.9, 37.9, 2597, 430 }, + [23] = { 50.2, 37.5, 2597, 430 }, + [24] = { 47.7, 37.5, 2597, 430 }, + [25] = { 50, 37.4, 2597, 430 }, + [26] = { 48.7, 37.3, 2597, 430 }, + [27] = { 49.5, 37.3, 2597, 430 }, + [28] = { 51.6, 37.2, 2597, 430 }, + [29] = { 51.5, 37.1, 2597, 430 }, + [30] = { 51.1, 36.7, 2597, 430 }, + [31] = { 47.7, 36.6, 2597, 430 }, + [32] = { 48.1, 35.8, 2597, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [12050] = { + ["coords"] = { + [1] = { 49.4, 88.3, 2597, 120 }, + [2] = { 49.2, 88.2, 2597, 120 }, + [3] = { 49.2, 88, 2597, 120 }, + [4] = { 49.4, 88, 2597, 120 }, + [5] = { 50.1, 77, 2597, 120 }, + [6] = { 49.9, 76.7, 2597, 120 }, + [7] = { 50.2, 76.7, 2597, 120 }, + [8] = { 50.1, 76.6, 2597, 120 }, + [9] = { 51.4, 60.2, 2597, 120 }, + [10] = { 51.3, 60.2, 2597, 120 }, + [11] = { 51.5, 60, 2597, 120 }, + [12] = { 51.3, 60, 2597, 120 }, + [13] = { 44.6, 45.8, 2597, 120 }, + [14] = { 44.8, 45.6, 2597, 120 }, + [15] = { 44.6, 45.6, 2597, 120 }, + [16] = { 44.7, 45.4, 2597, 120 }, + [17] = { 49, 40.4, 2597, 120 }, + [18] = { 48.7, 40.3, 2597, 120 }, + [19] = { 49.4, 39.9, 2597, 120 }, + [20] = { 48.4, 39.7, 2597, 120 }, + [21] = { 49.1, 39.1, 2597, 120 }, + [22] = { 48.9, 39, 2597, 120 }, + [23] = { 49.2, 38, 2597, 120 }, + [24] = { 48.9, 38, 2597, 120 }, + [25] = { 51.5, 34.4, 2597, 120 }, + [26] = { 51.4, 34.2, 2597, 120 }, + [27] = { 51.6, 34.2, 2597, 120 }, + [28] = { 51.5, 34.1, 2597, 120 }, + [29] = { 42.7, 15.9, 2597, 600 }, + [30] = { 42.8, 15.9, 2597, 600 }, + [31] = { 42.7, 15.7, 2597, 600 }, + [32] = { 42.8, 15.7, 2597, 600 }, + [33] = { 49, 14.9, 2597, 120 }, + [34] = { 48.8, 14.8, 2597, 120 }, + [35] = { 49.1, 14.7, 2597, 120 }, + [36] = { 42.5, 14.7, 2597, 600 }, + [37] = { 42.5, 14.6, 2597, 600 }, + [38] = { 42.8, 14.6, 2597, 600 }, + [39] = { 48.9, 14.6, 2597, 120 }, + [40] = { 42.7, 14.5, 2597, 600 }, + [41] = { 42.4, 14, 2597, 600 }, + [42] = { 42.6, 13.9, 2597, 600 }, + [43] = { 41.9, 13.5, 2597, 120 }, + [44] = { 41.9, 13.3, 2597, 120 }, + [45] = { 42.8, 13.2, 2597, 120 }, + [46] = { 42.7, 13, 2597, 120 }, + [47] = { 42.3, 12.9, 2597, 120 }, + [48] = { 42.7, 12.8, 2597, 120 }, + [49] = { 42.2, 12.7, 2597, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "58", + }, + [12051] = { + ["coords"] = { + [1] = { 49.8, 86.7, 2597, 120 }, + [2] = { 48.9, 85.5, 2597, 120 }, + [3] = { 51, 83.7, 2597, 120 }, + [4] = { 50.7, 83.6, 2597, 120 }, + [5] = { 51.2, 83.5, 2597, 120 }, + [6] = { 50.9, 83.5, 2597, 120 }, + [7] = { 55.9, 83.3, 2597, 120 }, + [8] = { 56.9, 82.8, 2597, 120 }, + [9] = { 55.9, 82.8, 2597, 120 }, + [10] = { 50.2, 82.4, 2597, 120 }, + [11] = { 50.1, 82.3, 2597, 120 }, + [12] = { 57.2, 82.2, 2597, 120 }, + [13] = { 49.3, 81.8, 2597, 120 }, + [14] = { 50.6, 81.7, 2597, 120 }, + [15] = { 50.4, 81.6, 2597, 120 }, + [16] = { 48.1, 81.5, 2597, 120 }, + [17] = { 47.9, 81.4, 2597, 120 }, + [18] = { 50.6, 81.4, 2597, 120 }, + [19] = { 50.4, 81.3, 2597, 120 }, + [20] = { 50.1, 81.1, 2597, 120 }, + [21] = { 48.5, 81, 2597, 120 }, + [22] = { 50.9, 81, 2597, 120 }, + [23] = { 50.3, 80.7, 2597, 120 }, + [24] = { 48.2, 80.6, 2597, 120 }, + [25] = { 50.1, 80.5, 2597, 120 }, + [26] = { 50.3, 80.4, 2597, 120 }, + [27] = { 50.7, 80.1, 2597, 120 }, + [28] = { 50.1, 80, 2597, 120 }, + [29] = { 50.3, 79.5, 2597, 120 }, + [30] = { 50.5, 79.5, 2597, 120 }, + [31] = { 53.4, 78.8, 2597, 120 }, + [32] = { 53.3, 78.8, 2597, 120 }, + [33] = { 50.4, 78.5, 2597, 120 }, + [34] = { 50.3, 78.4, 2597, 120 }, + [35] = { 49.9, 76.4, 2597, 120 }, + [36] = { 51, 70.5, 2597, 120 }, + [37] = { 51.1, 70.4, 2597, 120 }, + [38] = { 51.7, 67.9, 2597, 120 }, + [39] = { 50, 65.9, 2597, 120 }, + [40] = { 50.1, 65.8, 2597, 120 }, + [41] = { 50.1, 65.1, 2597, 120 }, + [42] = { 52.7, 64.7, 2597, 120 }, + [43] = { 52.5, 63.6, 2597, 120 }, + [44] = { 48.4, 57.8, 2597, 120 }, + [45] = { 46.5, 57.6, 2597, 120 }, + [46] = { 46.4, 57.5, 2597, 120 }, + [47] = { 45.6, 57, 2597, 120 }, + [48] = { 45.7, 57, 2597, 120 }, + [49] = { 46.7, 54.1, 2597, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "57", + }, + [12052] = { + ["coords"] = { + [1] = { 50.6, 63.5, 2597, 120 }, + [2] = { 50.5, 63.4, 2597, 120 }, + [3] = { 51.4, 60.6, 2597, 120 }, + [4] = { 45.9, 59.3, 2597, 430 }, + [5] = { 45.2, 59.1, 2597, 430 }, + [6] = { 49.1, 58.9, 2597, 120 }, + [7] = { 49.5, 58.9, 2597, 120 }, + [8] = { 49.6, 58.9, 2597, 120 }, + [9] = { 49.2, 58.9, 2597, 120 }, + [10] = { 46.7, 58.8, 2597, 430 }, + [11] = { 45.3, 58.7, 2597, 430 }, + [12] = { 46.9, 58.2, 2597, 430 }, + [13] = { 44.9, 58.1, 2597, 430 }, + [14] = { 47.2, 57.5, 2597, 430 }, + [15] = { 47.6, 57.5, 2597, 120 }, + [16] = { 44.6, 57.4, 2597, 430 }, + [17] = { 47.6, 57.4, 2597, 430 }, + [18] = { 47.7, 57.4, 2597, 120 }, + [19] = { 45, 57.2, 2597, 430 }, + [20] = { 46.9, 56.6, 2597, 430 }, + [21] = { 51, 56.6, 2597, 430 }, + [22] = { 51.4, 56.4, 2597, 430 }, + [23] = { 47.4, 56.1, 2597, 430 }, + [24] = { 49.2, 56.1, 2597, 430 }, + [25] = { 47.1, 55.8, 2597, 430 }, + [26] = { 50.3, 55.8, 2597, 430 }, + [27] = { 48.7, 55.7, 2597, 120 }, + [28] = { 48.8, 55.6, 2597, 120 }, + [29] = { 46.4, 55.4, 2597, 430 }, + [30] = { 46.7, 55.4, 2597, 120 }, + [31] = { 46.9, 55.4, 2597, 430 }, + [32] = { 50.3, 55.3, 2597, 430 }, + [33] = { 51.5, 54.8, 2597, 430 }, + [34] = { 50.5, 54.7, 2597, 430 }, + [35] = { 50.9, 54.4, 2597, 430 }, + [36] = { 50.5, 54.2, 2597, 430 }, + [37] = { 48.3, 54, 2597, 430 }, + [38] = { 48.4, 54, 2597, 430 }, + [39] = { 44, 53.3, 2597, 430 }, + [40] = { 50.2, 52.5, 2597, 430 }, + [41] = { 48.4, 52.4, 2597, 430 }, + [42] = { 48.4, 52.3, 2597, 430 }, + [43] = { 49.8, 52.2, 2597, 430 }, + [44] = { 50.3, 52, 2597, 430 }, + [45] = { 49.9, 51.9, 2597, 430 }, + [46] = { 50.2, 51.7, 2597, 430 }, + [47] = { 46.4, 51.4, 2597, 430 }, + [48] = { 47, 51, 2597, 430 }, + [49] = { 47.4, 50.9, 2597, 430 }, + [50] = { 47.1, 50.7, 2597, 430 }, + [51] = { 46.8, 50.6, 2597, 430 }, + [52] = { 47, 50.6, 2597, 430 }, + [53] = { 47.3, 50.5, 2597, 430 }, + [54] = { 47.1, 50.3, 2597, 430 }, + [55] = { 51, 50.3, 2597, 430 }, + [56] = { 51, 50.2, 2597, 430 }, + [57] = { 45.7, 48.6, 2597, 430 }, + [58] = { 45.4, 48.2, 2597, 430 }, + [59] = { 45.7, 48.1, 2597, 430 }, + [60] = { 45.5, 47.9, 2597, 430 }, + [61] = { 45.3, 47.7, 2597, 430 }, + [62] = { 45.7, 47.6, 2597, 430 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [12053] = { + ["coords"] = { + [1] = { 49.4, 88.3, 2597, 120 }, + [2] = { 49.2, 88.2, 2597, 120 }, + [3] = { 49.2, 88, 2597, 120 }, + [4] = { 49.4, 88, 2597, 120 }, + [5] = { 47.4, 87.5, 2597, 120 }, + [6] = { 47.6, 87.5, 2597, 120 }, + [7] = { 47.6, 87.3, 2597, 120 }, + [8] = { 47.1, 87.2, 2597, 120 }, + [9] = { 47.7, 86.9, 2597, 120 }, + [10] = { 47, 86.8, 2597, 120 }, + [11] = { 48.1, 86.6, 2597, 120 }, + [12] = { 47.6, 86.5, 2597, 120 }, + [13] = { 48.1, 86.4, 2597, 120 }, + [14] = { 48.9, 86.3, 2597, 120 }, + [15] = { 47.1, 86.2, 2597, 120 }, + [16] = { 47.4, 86.1, 2597, 120 }, + [17] = { 48.8, 86, 2597, 120 }, + [18] = { 49.5, 85.8, 2597, 120 }, + [19] = { 49.1, 85.7, 2597, 120 }, + [20] = { 49.6, 85.5, 2597, 120 }, + [21] = { 48.7, 85.4, 2597, 120 }, + [22] = { 46.5, 84, 2597, 120 }, + [23] = { 48.8, 83.9, 2597, 120 }, + [24] = { 48.9, 83.9, 2597, 120 }, + [25] = { 47.5, 83.4, 2597, 120 }, + [26] = { 48, 83.1, 2597, 120 }, + [27] = { 48, 82.9, 2597, 120 }, + [28] = { 47.9, 82.8, 2597, 120 }, + [29] = { 47.8, 82.7, 2597, 120 }, + [30] = { 48, 82.5, 2597, 120 }, + [31] = { 47.8, 82.5, 2597, 120 }, + [32] = { 48, 81.9, 2597, 120 }, + [33] = { 50.1, 77, 2597, 120 }, + [34] = { 49.9, 76.7, 2597, 120 }, + [35] = { 50.2, 76.7, 2597, 120 }, + [36] = { 50.1, 76.6, 2597, 120 }, + [37] = { 51.4, 60.2, 2597, 120 }, + [38] = { 51.3, 60.2, 2597, 120 }, + [39] = { 51.5, 60, 2597, 120 }, + [40] = { 51.3, 60, 2597, 120 }, + [41] = { 44.6, 45.8, 2597, 120 }, + [42] = { 44.8, 45.6, 2597, 120 }, + [43] = { 44.6, 45.6, 2597, 120 }, + [44] = { 44.7, 45.4, 2597, 120 }, + [45] = { 51.5, 34.4, 2597, 120 }, + [46] = { 51.4, 34.2, 2597, 120 }, + [47] = { 51.6, 34.2, 2597, 120 }, + [48] = { 51.5, 34.1, 2597, 120 }, + [49] = { 42.7, 15.9, 2597, 120 }, + [50] = { 42.8, 15.9, 2597, 120 }, + [51] = { 42.7, 15.7, 2597, 120 }, + [52] = { 42.8, 15.7, 2597, 120 }, + [53] = { 49, 14.9, 2597, 120 }, + [54] = { 48.8, 14.8, 2597, 120 }, + [55] = { 49.1, 14.7, 2597, 120 }, + [56] = { 48.9, 14.6, 2597, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "58", + }, + [12054] = "_", + [12056] = { + ["coords"] = { + [1] = { 53.2, 83.9, 2717, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [12057] = { + ["coords"] = { + [1] = { 32.6, 76.1, 2717, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [12076] = { + ["coords"] = { + [1] = { 73.9, 85.7, 2717, 7200 }, + [2] = { 56.1, 85.6, 2717, 7200 }, + [3] = { 72.7, 85.1, 2717, 7200 }, + [4] = { 56.4, 84.6, 2717, 7200 }, + [5] = { 52.2, 81.9, 2717, 7200 }, + [6] = { 52.4, 80.9, 2717, 7200 }, + [7] = { 49.8, 79.9, 2717, 7200 }, + [8] = { 49.5, 79.2, 2717, 7200 }, + [9] = { 73, 78.9, 2717, 7200 }, + [10] = { 71.7, 77.8, 2717, 7200 }, + [11] = { 69, 71, 2717, 7200 }, + [12] = { 68.5, 70.7, 2717, 7200 }, + [13] = { 64.7, 55.8, 2717, 7200 }, + [14] = { 65.4, 55.7, 2717, 7200 }, + }, + ["lvl"] = "61-62", + ["rnk"] = "1", + }, + [12096] = { + ["coords"] = { + [1] = { 43.1, 17.6, 2597, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [12098] = { + ["coords"] = { + [1] = { 78.1, 85.2, 2717, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [12099] = { + ["coords"] = { + [1] = { 32.4, 76.8, 2717, 604800 }, + [2] = { 33, 76.7, 2717, 604800 }, + [3] = { 32.1, 76.3, 2717, 604800 }, + [4] = { 33.3, 76.3, 2717, 604800 }, + [5] = { 33.2, 75.8, 2717, 604800 }, + [6] = { 32.1, 75.7, 2717, 604800 }, + [7] = { 32.8, 75.3, 2717, 604800 }, + [8] = { 32.4, 75.2, 2717, 604800 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [12100] = { + ["coords"] = { + [1] = { 50.9, 84.9, 2717, 7200 }, + [2] = { 56.9, 80.1, 2717, 7200 }, + [3] = { 53.4, 77.6, 2717, 7200 }, + [4] = { 57.4, 74.3, 2717, 7200 }, + [5] = { 60.6, 72.4, 2717, 7200 }, + [6] = { 65, 59.5, 2717, 7200 }, + }, + ["lvl"] = "62-63", + ["rnk"] = "1", + }, + [12101] = { + ["coords"] = { + [1] = { 79.1, 84.5, 2717, 1680 }, + [2] = { 43.6, 76, 2717, 1680 }, + [3] = { 81.4, 69.3, 2717, 1680 }, + [4] = { 45.1, 68.4, 2717, 1680 }, + [5] = { 43.4, 64.5, 2717, 1680 }, + [6] = { 54.3, 55.9, 2717, 1680 }, + [7] = { 58.3, 49.1, 2717, 1680 }, + [8] = { 41.1, 45.7, 2717, 1680 }, + [9] = { 57.1, 43.7, 2717, 1680 }, + [10] = { 53.3, 43.2, 2717, 1680 }, + [11] = { 43.8, 40.6, 2717, 1680 }, + [12] = { 56.9, 38.9, 2717, 1680 }, + }, + ["lvl"] = "61-62", + ["rnk"] = "1", + }, + [12116] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [12118] = { + ["coords"] = { + [1] = { 64.4, 42.2, 2717, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [12119] = { + ["coords"] = { + [1] = { 64.6, 42.5, 2717, 7200 }, + [2] = { 64.1, 42.3, 2717, 7200 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [12121] = { + ["coords"] = { + [1] = { 47.2, 87.1, 2597, 1785 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [12122] = { + ["coords"] = { + [1] = { 47.1, 86.8, 2597, 1785 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [12127] = { + ["coords"] = { + [1] = { 51.3, 36.3, 2597, 120 }, + [2] = { 51.1, 34, 2597, 120 }, + [3] = { 51, 33.9, 2597, 120 }, + [4] = { 51.9, 30.1, 2597, 120 }, + [5] = { 51.3, 25.8, 2597, 120 }, + [6] = { 52.3, 22.8, 2597, 120 }, + [7] = { 52.3, 22.7, 2597, 120 }, + [8] = { 50.9, 22.6, 2597, 120 }, + [9] = { 51.4, 19, 2597, 120 }, + [10] = { 42.5, 18.5, 2597, 120 }, + [11] = { 43, 18.5, 2597, 600 }, + [12] = { 50, 17.1, 2597, 120 }, + [13] = { 49.9, 17, 2597, 120 }, + [14] = { 42.9, 17, 2597, 600 }, + [15] = { 44.3, 16.9, 2597, 600 }, + [16] = { 45.6, 16.7, 2597, 600 }, + [17] = { 44.6, 16.6, 2597, 600 }, + [18] = { 44, 16.4, 2597, 600 }, + [19] = { 43.5, 16.4, 2597, 600 }, + [20] = { 42.9, 16.4, 2597, 600 }, + [21] = { 45.6, 16.3, 2597, 600 }, + [22] = { 48.5, 16.1, 2597, 120 }, + [23] = { 43.1, 15.9, 2597, 600 }, + [24] = { 43.2, 15.8, 2597, 600 }, + [25] = { 43.6, 15.8, 2597, 600 }, + [26] = { 48.5, 15.7, 2597, 120 }, + [27] = { 44.5, 15.4, 2597, 600 }, + [28] = { 42.6, 15.1, 2597, 600 }, + [29] = { 42.9, 14.9, 2597, 600 }, + [30] = { 52.3, 13.8, 2597, 120 }, + [31] = { 52.3, 13.7, 2597, 120 }, + [32] = { 42.1, 13, 2597, 120 }, + [33] = { 42.5, 12.8, 2597, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "57", + }, + [12129] = { + ["coords"] = { + [1] = { 66.5, 92.3, 2159, 1201 }, + [2] = { 63.6, 82.2, 2159, 6300 }, + [3] = { 51.5, 71.2, 2159, 1201 }, + [4] = { 43.1, 47, 2159, 6300 }, + [5] = { 46.8, 15, 2159, 1201 }, + }, + ["lvl"] = "60-63", + ["rnk"] = "1", + }, + [12138] = { + ["coords"] = { + [1] = { 30, 12.8, 11, 0 }, + [2] = { 21.2, 98.6, 45, 0 }, + }, + ["lvl"] = "12", + }, + [12142] = "_", + [12156] = { + ["coords"] = { + [1] = { 44.4, 46.2, 2597, 900 }, + }, + ["lvl"] = "60", + }, + [12157] = { + ["coords"] = { + [1] = { 37, 47.6, 2597, 900 }, + [2] = { 44, 47.1, 2597, 900 }, + [3] = { 35.5, 46.9, 2597, 900 }, + [4] = { 38.4, 46.3, 2597, 900 }, + [5] = { 35.8, 45.3, 2597, 900 }, + [6] = { 45.4, 45.2, 2597, 900 }, + [7] = { 38.1, 44.9, 2597, 900 }, + [8] = { 37.7, 44.9, 2597, 900 }, + [9] = { 42.1, 44.8, 2597, 900 }, + [10] = { 35.6, 44.5, 2597, 900 }, + [11] = { 37.3, 44, 2597, 900 }, + [12] = { 40.5, 43.7, 2597, 900 }, + [13] = { 35.6, 43.3, 2597, 900 }, + }, + ["lvl"] = "59-60", + }, + [12159] = { + ["coords"] = { + [1] = { 44.5, 45.9, 2597, 432000 }, + }, + ["lvl"] = "62", + ["rnk"] = "3", + }, + [12176] = "_", + [12177] = "_", + [12178] = { + ["coords"] = { + [1] = { 64, 58.4, 1377, 300 }, + [2] = { 60.9, 58.4, 1377, 300 }, + [3] = { 62.7, 58.4, 1377, 300 }, + [4] = { 59.9, 56.6, 1377, 300 }, + [5] = { 63.5, 54.5, 1377, 300 }, + [6] = { 60.8, 54.3, 1377, 300 }, + [7] = { 61.7, 54.2, 1377, 300 }, + [8] = { 59.8, 54.1, 1377, 300 }, + [9] = { 62.7, 52.8, 1377, 300 }, + [10] = { 58.8, 52.8, 1377, 300 }, + [11] = { 62.8, 50.9, 1377, 300 }, + [12] = { 62.7, 50.9, 1377, 300 }, + [13] = { 62.6, 50.3, 1377, 300 }, + [14] = { 60.4, 50.1, 1377, 300 }, + [15] = { 63, 50.1, 1377, 300 }, + [16] = { 60.9, 49.8, 1377, 300 }, + [17] = { 63.9, 48.3, 1377, 300 }, + [18] = { 63.7, 47.2, 1377, 300 }, + [19] = { 64.9, 47.2, 1377, 300 }, + }, + ["lvl"] = "55-56", + }, + [12179] = { + ["coords"] = { + [1] = { 6.6, 50.7, 490, 300 }, + [2] = { 6.6, 49.1, 490, 300 }, + [3] = { 7.9, 46.6, 490, 300 }, + [4] = { 7.9, 45.3, 490, 300 }, + [5] = { 61.8, 58.5, 1377, 300 }, + [6] = { 64.7, 58.2, 1377, 300 }, + [7] = { 61.1, 56.1, 1377, 300 }, + [8] = { 63.4, 56, 1377, 300 }, + [9] = { 62.7, 55.8, 1377, 300 }, + [10] = { 60.1, 55.7, 1377, 300 }, + [11] = { 58.8, 55.6, 1377, 300 }, + [12] = { 62, 55.5, 1377, 300 }, + [13] = { 63.4, 55, 1377, 300 }, + [14] = { 62.7, 54.4, 1377, 300 }, + [15] = { 64.6, 54.2, 1377, 300 }, + [16] = { 63.4, 53.9, 1377, 300 }, + [17] = { 61.8, 52.9, 1377, 300 }, + [18] = { 63.6, 52.8, 1377, 300 }, + [19] = { 60.2, 52.8, 1377, 300 }, + [20] = { 60.2, 52.5, 1377, 300 }, + [21] = { 64.5, 52.5, 1377, 300 }, + [22] = { 63.7, 51.5, 1377, 300 }, + [23] = { 62.7, 50.9, 1377, 300 }, + [24] = { 62.9, 50.8, 1377, 300 }, + [25] = { 65.9, 49.9, 1377, 300 }, + [26] = { 63.7, 49.9, 1377, 300 }, + [27] = { 62.7, 49.9, 1377, 300 }, + [28] = { 61.6, 48.5, 1377, 300 }, + [29] = { 65.9, 48.5, 1377, 300 }, + [30] = { 62.8, 48.2, 1377, 300 }, + }, + ["lvl"] = "56-57", + }, + [12180] = "_", + [12199] = { + ["coords"] = { + [1] = { 62.7, 49.8, 1377, 300 }, + }, + ["lvl"] = "58", + }, + [12200] = "_", + [12201] = { + ["coords"] = { + [1] = { 19, 83.1, 2100, 604800 }, + }, + ["lvl"] = "51", + ["rnk"] = "1", + }, + [12203] = { + ["coords"] = { + [1] = { 31.8, 59.8, 2100, 604800 }, + }, + ["lvl"] = "50", + ["rnk"] = "1", + }, + [12206] = { + ["coords"] = { + [1] = { 42.5, 94.7, 2100, 7200 }, + [2] = { 28.6, 85.1, 2100, 7200 }, + [3] = { 28.4, 83.8, 2100, 7200 }, + [4] = { 24.6, 83.5, 2100, 7200 }, + [5] = { 35.1, 82.4, 2100, 7200 }, + [6] = { 24.7, 82.3, 2100, 7200 }, + [7] = { 36.3, 81.5, 2100, 7200 }, + [8] = { 32.8, 81.1, 2100, 7200 }, + [9] = { 36.9, 80.8, 2100, 7200 }, + [10] = { 32.3, 79.9, 2100, 7200 }, + [11] = { 31, 79.6, 2100, 7200 }, + [12] = { 32, 72.9, 2100, 7200 }, + [13] = { 28, 67.9, 2100, 7200 }, + [14] = { 32.6, 64.5, 2100, 7200 }, + [15] = { 31.1, 64, 2100, 7200 }, + [16] = { 31.9, 63.6, 2100, 7200 }, + }, + ["lvl"] = "47-49", + ["rnk"] = "1", + }, + [12207] = { + ["coords"] = { + [1] = { 41.8, 91.2, 2100, 7200 }, + [2] = { 27.1, 86.9, 2100, 7200 }, + [3] = { 34.3, 85.4, 2100, 7200 }, + [4] = { 37.7, 83.9, 2100, 7200 }, + [5] = { 29.3, 81.2, 2100, 7200 }, + [6] = { 23.4, 67.4, 2100, 7200 }, + [7] = { 25.8, 65.5, 2100, 7200 }, + [8] = { 21, 65.4, 2100, 7200 }, + [9] = { 21.8, 64.9, 2100, 7200 }, + [10] = { 18.3, 63.1, 2100, 7200 }, + [11] = { 27.3, 61.5, 2100, 7200 }, + }, + ["lvl"] = "46-47", + ["rnk"] = "1", + }, + [12216] = { + ["coords"] = { + [1] = { 37.8, 39.8, 2100, 7200 }, + [2] = { 32.6, 37, 2100, 7200 }, + [3] = { 39.5, 37, 2100, 7200 }, + [4] = { 39.6, 36.6, 2100, 7200 }, + [5] = { 32.3, 35.1, 2100, 7200 }, + [6] = { 31.8, 34.9, 2100, 7200 }, + [7] = { 32.3, 34.8, 2100, 7200 }, + [8] = { 46.6, 34.7, 2100, 7200 }, + [9] = { 46.5, 34.3, 2100, 7200 }, + [10] = { 38.8, 33, 2100, 7200 }, + [11] = { 28.4, 32.8, 2100, 7200 }, + [12] = { 39.2, 32.3, 2100, 7200 }, + [13] = { 28.7, 32, 2100, 7200 }, + [14] = { 49.5, 31.3, 2100, 7200 }, + [15] = { 47.1, 31, 2100, 7200 }, + [16] = { 49.2, 31, 2100, 7200 }, + [17] = { 47.7, 31, 2100, 7200 }, + [18] = { 25, 31, 2100, 7200 }, + [19] = { 45.1, 30.9, 2100, 7200 }, + [20] = { 43.1, 28.9, 2100, 7200 }, + [21] = { 42.6, 28.8, 2100, 7200 }, + [22] = { 38.7, 28.6, 2100, 7200 }, + [23] = { 39, 28.3, 2100, 7200 }, + [24] = { 46.3, 28.2, 2100, 7200 }, + [25] = { 39.2, 27.9, 2100, 7200 }, + [26] = { 46.7, 27.5, 2100, 7200 }, + [27] = { 46.5, 27.4, 2100, 7200 }, + [28] = { 39.7, 25.8, 2100, 7200 }, + [29] = { 38.6, 23.6, 2100, 7200 }, + [30] = { 38.8, 23.5, 2100, 7200 }, + [31] = { 39, 22.9, 2100, 7200 }, + [32] = { 42.7, 21.9, 2100, 7200 }, + [33] = { 42.5, 21.6, 2100, 7200 }, + [34] = { 42.9, 21.6, 2100, 7200 }, + }, + ["lvl"] = "42-43", + }, + [12217] = { + ["coords"] = { + [1] = { 37.6, 39.8, 2100, 7200 }, + [2] = { 37.9, 39.6, 2100, 7200 }, + [3] = { 32.1, 37.1, 2100, 7200 }, + [4] = { 32.3, 36.8, 2100, 7200 }, + [5] = { 32.6, 36.6, 2100, 7200 }, + [6] = { 39.3, 36.4, 2100, 7200 }, + [7] = { 32.8, 35, 2100, 7200 }, + [8] = { 46.8, 34.3, 2100, 7200 }, + [9] = { 38.7, 33.4, 2100, 7200 }, + [10] = { 39, 32.6, 2100, 7200 }, + [11] = { 25.4, 32.2, 2100, 7200 }, + [12] = { 29.1, 31.9, 2100, 7200 }, + [13] = { 25.2, 31.6, 2100, 7200 }, + [14] = { 47.5, 31.6, 2100, 7200 }, + [15] = { 25.5, 31.5, 2100, 7200 }, + [16] = { 49.2, 31.4, 2100, 7200 }, + [17] = { 49.5, 30.9, 2100, 7200 }, + [18] = { 45.2, 30.5, 2100, 7200 }, + [19] = { 45.1, 30, 2100, 7200 }, + [20] = { 42.8, 29.1, 2100, 7200 }, + [21] = { 39.2, 28.5, 2100, 7200 }, + [22] = { 47.2, 27.3, 2100, 7200 }, + [23] = { 39.8, 26.2, 2100, 7200 }, + [24] = { 39.8, 25.4, 2100, 7200 }, + [25] = { 40, 25.2, 2100, 7200 }, + [26] = { 38.9, 23.2, 2100, 7200 }, + [27] = { 42.2, 21.7, 2100, 7200 }, + }, + ["lvl"] = "42-43", + }, + [12218] = { + ["coords"] = { + [1] = { 40.2, 19.7, 2100, 7200 }, + [2] = { 40.6, 19.5, 2100, 7200 }, + [3] = { 40.2, 19.3, 2100, 7200 }, + [4] = { 40.9, 19.2, 2100, 7200 }, + [5] = { 40.2, 19, 2100, 7200 }, + [6] = { 40.7, 19, 2100, 7200 }, + [7] = { 40, 18.7, 2100, 7200 }, + [8] = { 40.4, 18.4, 2100, 7200 }, + [9] = { 41.5, 17.3, 2100, 7200 }, + [10] = { 41.2, 17.1, 2100, 7200 }, + [11] = { 40.5, 17, 2100, 7200 }, + [12] = { 40.9, 16.7, 2100, 7200 }, + [13] = { 40.8, 16.6, 2100, 7200 }, + [14] = { 41.1, 16.6, 2100, 7200 }, + [15] = { 40.6, 16.3, 2100, 7200 }, + [16] = { 41.1, 16.2, 2100, 7200 }, + [17] = { 34.6, 12.3, 2100, 7200 }, + [18] = { 34.3, 12, 2100, 7200 }, + [19] = { 35, 11.9, 2100, 7200 }, + [20] = { 34.3, 11.6, 2100, 7200 }, + [21] = { 34.7, 11.6, 2100, 7200 }, + [22] = { 35.1, 11.3, 2100, 7200 }, + [23] = { 34.7, 11.2, 2100, 7200 }, + [24] = { 34.4, 11.1, 2100, 7200 }, + [25] = { 33.4, 10.3, 2100, 7200 }, + [26] = { 33.6, 10.2, 2100, 7200 }, + [27] = { 35.7, 10, 2100, 7200 }, + [28] = { 33.3, 9.8, 2100, 7200 }, + [29] = { 33.5, 9.6, 2100, 7200 }, + [30] = { 36, 9.6, 2100, 7200 }, + [31] = { 35.5, 9.5, 2100, 7200 }, + [32] = { 33.8, 9.4, 2100, 7200 }, + [33] = { 33.2, 9.2, 2100, 7200 }, + [34] = { 33.8, 9.2, 2100, 7200 }, + [35] = { 35.7, 9.2, 2100, 7200 }, + [36] = { 35.3, 9.1, 2100, 7200 }, + [37] = { 33.5, 9.1, 2100, 7200 }, + [38] = { 36, 9.1, 2100, 7200 }, + [39] = { 35.7, 8.6, 2100, 7200 }, + [40] = { 36.2, 8.6, 2100, 7200 }, + [41] = { 35, 8.2, 2100, 7200 }, + [42] = { 32.7, 8.1, 2100, 7200 }, + [43] = { 32.9, 7.7, 2100, 7200 }, + [44] = { 34.6, 7.7, 2100, 7200 }, + [45] = { 33.2, 7.5, 2100, 7200 }, + [46] = { 32.4, 7.4, 2100, 7200 }, + [47] = { 35.5, 7.4, 2100, 7200 }, + [48] = { 34.7, 7.3, 2100, 7200 }, + [49] = { 33, 7.3, 2100, 7200 }, + [50] = { 32.3, 7.2, 2100, 7200 }, + [51] = { 34.3, 7.2, 2100, 7200 }, + [52] = { 34.5, 6.9, 2100, 7200 }, + [53] = { 32.5, 6.9, 2100, 7200 }, + [54] = { 32.9, 6.8, 2100, 7200 }, + [55] = { 35.4, 6.7, 2100, 7200 }, + [56] = { 35, 6.7, 2100, 7200 }, + }, + ["lvl"] = "45-47", + }, + [12219] = { + ["coords"] = { + [1] = { 34.1, 25, 2100, 7200 }, + [2] = { 34.1, 24.6, 2100, 7200 }, + [3] = { 32.5, 22.8, 2100, 7200 }, + [4] = { 26, 22.1, 2100, 7200 }, + [5] = { 32.5, 21.3, 2100, 7200 }, + [6] = { 28.6, 20.1, 2100, 7200 }, + [7] = { 25.7, 19.7, 2100, 7200 }, + [8] = { 37.8, 19.4, 2100, 7200 }, + [9] = { 29.9, 18.3, 2100, 7200 }, + [10] = { 26.4, 17.1, 2100, 7200 }, + [11] = { 37.4, 15.5, 2100, 7200 }, + [12] = { 31.5, 15.4, 2100, 7200 }, + [13] = { 31.7, 15.1, 2100, 7200 }, + [14] = { 33.2, 14, 2100, 7200 }, + [15] = { 39.7, 13.5, 2100, 7200 }, + [16] = { 40.9, 10.7, 2100, 7200 }, + [17] = { 43.1, 9.7, 2100, 7200 }, + }, + ["lvl"] = "44-45", + ["rnk"] = "1", + }, + [12220] = { + ["coords"] = { + [1] = { 34.8, 24.5, 2100, 7200 }, + [2] = { 34.8, 24.1, 2100, 7200 }, + [3] = { 34.6, 24, 2100, 7200 }, + [4] = { 33.9, 23, 2100, 7200 }, + [5] = { 33.7, 22.9, 2100, 7200 }, + [6] = { 25.8, 22.6, 2100, 7200 }, + [7] = { 33.9, 22.5, 2100, 7200 }, + [8] = { 36.2, 22.1, 2100, 7200 }, + [9] = { 36, 22.1, 2100, 7200 }, + [10] = { 36.3, 22, 2100, 7200 }, + [11] = { 26.2, 21.9, 2100, 7200 }, + [12] = { 32.1, 21.7, 2100, 7200 }, + [13] = { 26, 21.6, 2100, 7200 }, + [14] = { 32.2, 21.4, 2100, 7200 }, + [15] = { 31.9, 21.3, 2100, 7200 }, + [16] = { 28.4, 20.4, 2100, 7200 }, + [17] = { 31.7, 20.2, 2100, 7200 }, + [18] = { 39.1, 20.2, 2100, 7200 }, + [19] = { 38.9, 20.1, 2100, 7200 }, + [20] = { 31.9, 20, 2100, 7200 }, + [21] = { 31.5, 20, 2100, 7200 }, + [22] = { 28.3, 19.9, 2100, 7200 }, + [23] = { 28.6, 19.7, 2100, 7200 }, + [24] = { 38.9, 19.7, 2100, 7200 }, + [25] = { 34, 19, 2100, 7200 }, + [26] = { 34, 18.7, 2100, 7200 }, + [27] = { 31.2, 18.6, 2100, 7200 }, + [28] = { 33.7, 18.5, 2100, 7200 }, + [29] = { 31.4, 18.3, 2100, 7200 }, + [30] = { 31.2, 18.2, 2100, 7200 }, + [31] = { 26.3, 17.5, 2100, 7200 }, + [32] = { 25.9, 17.4, 2100, 7200 }, + [33] = { 30.4, 17.2, 2100, 7200 }, + [34] = { 26, 17.1, 2100, 7200 }, + [35] = { 30.1, 17, 2100, 7200 }, + [36] = { 30.7, 16.9, 2100, 7200 }, + [37] = { 28.1, 16.8, 2100, 7200 }, + [38] = { 27.9, 16.6, 2100, 7200 }, + [39] = { 28.1, 16.5, 2100, 7200 }, + [40] = { 25.8, 15.9, 2100, 7200 }, + [41] = { 25.6, 15.5, 2100, 7200 }, + [42] = { 25.9, 15.4, 2100, 7200 }, + [43] = { 40.7, 15.2, 2100, 7200 }, + [44] = { 41.1, 15.2, 2100, 7200 }, + [45] = { 40.9, 14.8, 2100, 7200 }, + [46] = { 32.5, 14.3, 2100, 7200 }, + [47] = { 32.2, 14, 2100, 7200 }, + [48] = { 32.4, 13.7, 2100, 7200 }, + [49] = { 37.1, 12.4, 2100, 7200 }, + [50] = { 37.3, 12.1, 2100, 7200 }, + [51] = { 37.1, 12, 2100, 7200 }, + [52] = { 38.5, 11, 2100, 7200 }, + [53] = { 38.7, 11, 2100, 7200 }, + [54] = { 38.4, 10.6, 2100, 7200 }, + [55] = { 37.8, 9.3, 2100, 7200 }, + [56] = { 37.9, 9, 2100, 7200 }, + [57] = { 37.6, 8.9, 2100, 7200 }, + }, + ["lvl"] = "45-46", + ["rnk"] = "1", + }, + [12221] = { + ["coords"] = { + [1] = { 31.9, 30.9, 2100, 7200 }, + [2] = { 31.7, 30.8, 2100, 7200 }, + [3] = { 33.2, 30.1, 2100, 7200 }, + [4] = { 33.5, 29.8, 2100, 7200 }, + [5] = { 33.2, 29.7, 2100, 7200 }, + [6] = { 33, 29.5, 2100, 7200 }, + [7] = { 33.2, 29.3, 2100, 7200 }, + [8] = { 34.9, 28, 2100, 7200 }, + [9] = { 35.2, 27.7, 2100, 7200 }, + [10] = { 34.8, 27.4, 2100, 7200 }, + [11] = { 35.1, 27.1, 2100, 7200 }, + [12] = { 34.2, 27.1, 2100, 7200 }, + [13] = { 34.1, 26.8, 2100, 7200 }, + [14] = { 23.9, 26.2, 2100, 7200 }, + [15] = { 32.4, 26.2, 2100, 7200 }, + [16] = { 32.7, 26, 2100, 7200 }, + [17] = { 23.6, 25.9, 2100, 7200 }, + [18] = { 32.4, 25.7, 2100, 7200 }, + [19] = { 23.4, 25.6, 2100, 7200 }, + [20] = { 32.9, 25.5, 2100, 7200 }, + [21] = { 23.9, 25.4, 2100, 7200 }, + [22] = { 32.6, 25.2, 2100, 7200 }, + [23] = { 23.7, 25, 2100, 7200 }, + [24] = { 29.3, 23.4, 2100, 7200 }, + [25] = { 29.1, 23.4, 2100, 7200 }, + [26] = { 28.8, 23.1, 2100, 7200 }, + [27] = { 29.2, 23.1, 2100, 7200 }, + }, + ["lvl"] = "46-47", + ["rnk"] = "1", + }, + [12222] = { + ["coords"] = { + [1] = { 29.2, 41.1, 2100, 7200 }, + [2] = { 29, 40.8, 2100, 7200 }, + [3] = { 28.2, 38, 2100, 7200 }, + [4] = { 28.2, 37.6, 2100, 7200 }, + [5] = { 28.2, 37.1, 2100, 7200 }, + [6] = { 29.6, 30.3, 2100, 7200 }, + [7] = { 29.5, 29.9, 2100, 7200 }, + [8] = { 29.9, 29.8, 2100, 7200 }, + [9] = { 29.6, 29.5, 2100, 7200 }, + [10] = { 35.5, 18.5, 2100, 7200 }, + [11] = { 35.9, 18.3, 2100, 7200 }, + [12] = { 36.5, 17.6, 2100, 7200 }, + [13] = { 36.2, 17.5, 2100, 7200 }, + [14] = { 33.3, 17.3, 2100, 7200 }, + [15] = { 33.2, 17, 2100, 7200 }, + [16] = { 33.4, 16.8, 2100, 7200 }, + [17] = { 35, 16.7, 2100, 7200 }, + [18] = { 33.2, 16.5, 2100, 7200 }, + [19] = { 34.6, 16.5, 2100, 7200 }, + [20] = { 34.9, 16.3, 2100, 7200 }, + [21] = { 35, 16, 2100, 7200 }, + [22] = { 34.7, 16, 2100, 7200 }, + [23] = { 34.8, 14.8, 2100, 7200 }, + [24] = { 34.9, 14.7, 2100, 7200 }, + }, + ["lvl"] = "45-46", + ["rnk"] = "1", + }, + [12223] = { + ["coords"] = { + [1] = { 27.7, 41.3, 2100, 7200 }, + [2] = { 27.2, 35.5, 2100, 7200 }, + [3] = { 26.6, 33.2, 2100, 7200 }, + [4] = { 26.9, 32.6, 2100, 7200 }, + [5] = { 28.3, 30.8, 2100, 7200 }, + [6] = { 27.4, 26.1, 2100, 7200 }, + [7] = { 31.3, 25.5, 2100, 7200 }, + [8] = { 28.4, 24.9, 2100, 7200 }, + }, + ["lvl"] = "45-46", + ["rnk"] = "1", + }, + [12224] = { + ["coords"] = { + [1] = { 32.5, 28, 2100, 7200 }, + [2] = { 24.7, 27.4, 2100, 7200 }, + [3] = { 30, 25.4, 2100, 7200 }, + }, + ["lvl"] = "46-47", + ["rnk"] = "1", + }, + [12225] = { + ["coords"] = { + [1] = { 19.3, 33.6, 2100, 604800 }, + }, + ["lvl"] = "49", + ["rnk"] = "1", + }, + [12236] = { + ["coords"] = { + [1] = { 33.4, 32, 2100, 604800 }, + }, + ["lvl"] = "47", + ["rnk"] = "1", + }, + [12237] = { + ["coords"] = { + [1] = { 26.6, 33.2, 2100, 604800 }, + }, + ["lvl"] = "48", + ["rnk"] = "2", + }, + [12239] = { + ["coords"] = { + [1] = { 29.4, 56.9, 405, 300 }, + [2] = { 36.2, 28.8, 2100, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "42", + ["rnk"] = "1", + }, + [12240] = { + ["coords"] = { + [1] = { 29.6, 60.5, 405, 300 }, + [2] = { 37.3, 48.5, 2100, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "43", + ["rnk"] = "1", + }, + [12241] = { + ["coords"] = { + [1] = { 35.8, 60.4, 405, 300 }, + [2] = { 70.9, 47.9, 2100, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "43", + ["rnk"] = "1", + }, + [12242] = { + ["coords"] = { + [1] = { 46.7, 29, 2100, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "46", + ["rnk"] = "1", + }, + [12243] = { + ["coords"] = { + [1] = { 43, 10.2, 2100, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "47", + ["rnk"] = "1", + }, + [12244] = { + ["coords"] = { + [1] = { 23.5, 21.9, 139, 518 }, + [2] = { 67.8, 83.3, 5225, 518 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [12245] = { + ["coords"] = { + [1] = { 62, 38.8, 405, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "38", + }, + [12247] = { + ["coords"] = { + [1] = { 40.7, 38.6, 139, 518 }, + [2] = { 27, 36.6, 139, 518 }, + [3] = { 32.2, 30.8, 139, 518 }, + [4] = { 43.5, 26.2, 139, 518 }, + [5] = { 29.3, 24, 139, 518 }, + [6] = { 33, 23.9, 139, 518 }, + [7] = { 23.5, 21.9, 139, 518 }, + [8] = { 37.7, 19.7, 139, 518 }, + [9] = { 78.8, 94.4, 5225, 518 }, + [10] = { 92.9, 88.7, 5225, 518 }, + [11] = { 75.1, 86, 5225, 518 }, + [12] = { 79.7, 85.8, 5225, 518 }, + [13] = { 67.8, 83.3, 5225, 518 }, + [14] = { 85.6, 80.5, 5225, 518 }, + }, + ["lvl"] = "1", + }, + [12248] = { + ["coords"] = { + [1] = { 70.7, 16.5, 139, 345 }, + }, + ["lvl"] = "60", + }, + [12251] = { + ["coords"] = { + [1] = { 29.3, 24, 139, 518 }, + [2] = { 75.1, 86, 5225, 518 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [12252] = { + ["coords"] = { + [1] = { 33, 23.9, 139, 518 }, + [2] = { 79.7, 85.8, 5225, 518 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [12253] = { + ["coords"] = { + [1] = { 32.2, 30.8, 139, 518 }, + [2] = { 78.8, 94.4, 5225, 518 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [12254] = { + ["coords"] = { + [1] = { 37.7, 19.7, 139, 518 }, + [2] = { 85.6, 80.5, 5225, 518 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [12255] = { + ["coords"] = { + [1] = { 43.5, 26.2, 139, 518 }, + [2] = { 92.9, 88.7, 5225, 518 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [12258] = { + ["coords"] = { + [1] = { 23.5, 15.7, 2100, 604800 }, + }, + ["lvl"] = "48", + ["rnk"] = "1", + }, + [12260] = { + ["coords"] = { + [1] = { 15.7, 63.2, 46, 300 }, + [2] = { 92.1, 89.9, 5581, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + ["rnk"] = "1", + }, + [12262] = { + ["coords"] = { + [1] = { 40.7, 38.9, 139, 345 }, + [2] = { 27.1, 36.3, 139, 345 }, + [3] = { 43.5, 26.4, 139, 345 }, + [4] = { 29.2, 24.2, 139, 345 }, + [5] = { 33.1, 24.1, 139, 345 }, + [6] = { 23.5, 22.2, 139, 345 }, + [7] = { 93, 89, 5225, 345 }, + [8] = { 75, 86.2, 5225, 345 }, + [9] = { 79.9, 86, 5225, 345 }, + [10] = { 67.9, 83.7, 5225, 345 }, + }, + ["lvl"] = "58", + ["rnk"] = "1", + }, + [12263] = { + ["coords"] = { + [1] = { 32.3, 30.5, 139, 345 }, + [2] = { 37.5, 19.9, 139, 345 }, + [3] = { 78.9, 94, 5225, 345 }, + [4] = { 85.4, 80.8, 5225, 345 }, + }, + ["lvl"] = "58", + ["rnk"] = "1", + }, + [12264] = { + ["coords"] = { + [1] = { 52.8, 87, 2717, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [12277] = { + ["coords"] = { + [1] = { 33.9, 53.5, 405, 300 }, + [2] = { 60.8, 10.1, 2100, 300 }, + }, + ["lvl"] = "39", + }, + [12296] = { + ["coords"] = { + [1] = { 43.7, 39.3, 17, 413 }, + [2] = { 56.9, 39, 17, 413 }, + [3] = { 55, 38.7, 17, 413 }, + [4] = { 51.1, 38.5, 17, 413 }, + [5] = { 53.3, 38, 17, 413 }, + [6] = { 58, 37.1, 17, 413 }, + [7] = { 48.7, 36.9, 17, 413 }, + [8] = { 48.8, 36.5, 17, 413 }, + [9] = { 42.7, 36, 17, 413 }, + [10] = { 50.7, 35.9, 17, 413 }, + [11] = { 50.5, 35.8, 17, 413 }, + [12] = { 55.1, 35.4, 17, 413 }, + [13] = { 60.3, 35.3, 17, 413 }, + [14] = { 58.4, 34.7, 17, 413 }, + [15] = { 57.4, 34, 17, 413 }, + [16] = { 44.7, 33.8, 17, 413 }, + [17] = { 54.5, 32.1, 17, 413 }, + [18] = { 50.3, 31.5, 17, 413 }, + [19] = { 59.9, 31, 17, 413 }, + [20] = { 50, 30.4, 17, 413 }, + [21] = { 54.7, 30, 17, 413 }, + [22] = { 46.1, 30, 17, 413 }, + [23] = { 48.8, 29.6, 17, 413 }, + [24] = { 60.3, 28.1, 17, 413 }, + [25] = { 43.3, 28.1, 17, 413 }, + [26] = { 49.3, 27.2, 17, 413 }, + [27] = { 53.4, 26.8, 17, 413 }, + [28] = { 45.4, 26.7, 17, 413 }, + [29] = { 48.3, 26.3, 17, 413 }, + [30] = { 41.2, 25.7, 17, 413 }, + [31] = { 54.3, 24.2, 17, 413 }, + [32] = { 47, 24.2, 17, 413 }, + [33] = { 58.2, 23.9, 17, 413 }, + [34] = { 48.8, 23.8, 17, 413 }, + [35] = { 50.2, 23.3, 17, 413 }, + [36] = { 41.5, 22.7, 17, 413 }, + [37] = { 58.7, 22.1, 17, 413 }, + [38] = { 54.4, 21.9, 17, 413 }, + [39] = { 54.3, 21.8, 17, 413 }, + [40] = { 60.3, 21.6, 17, 413 }, + [41] = { 53.4, 20.8, 17, 413 }, + [42] = { 57.7, 20.8, 17, 413 }, + [43] = { 40.8, 20.7, 17, 413 }, + [44] = { 42.5, 20.5, 17, 413 }, + [45] = { 57.6, 20.5, 17, 413 }, + [46] = { 51.7, 20.4, 17, 413 }, + [47] = { 44.2, 19.8, 17, 413 }, + [48] = { 51, 19.5, 17, 413 }, + [49] = { 52.8, 18.6, 17, 413 }, + [50] = { 57.4, 18.1, 17, 413 }, + [51] = { 56.7, 18.1, 17, 413 }, + [52] = { 59.2, 17.7, 17, 413 }, + [53] = { 44.5, 17.6, 17, 413 }, + [54] = { 56.6, 16.6, 17, 413 }, + [55] = { 50.4, 15.4, 17, 413 }, + [56] = { 42.8, 15.3, 17, 413 }, + [57] = { 45.5, 14.7, 17, 413 }, + [58] = { 48.1, 14.5, 17, 413 }, + [59] = { 52.4, 14.3, 17, 413 }, + [60] = { 55, 13.3, 17, 413 }, + [61] = { 50.5, 13, 17, 413 }, + [62] = { 52.4, 12.7, 17, 413 }, + [63] = { 53.8, 12.2, 17, 413 }, + [64] = { 54.7, 10.6, 17, 413 }, + [65] = { 72.8, 95.2, 718, 413 }, + [66] = { 1.1, 47, 718, 413 }, + }, + ["lvl"] = "3", + }, + [12297] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [12298] = { + ["coords"] = { + [1] = { 37.1, 91.2, 148, 413 }, + [2] = { 39.1, 89.9, 148, 413 }, + [3] = { 40.7, 89.8, 148, 413 }, + [4] = { 35.2, 89.3, 148, 413 }, + [5] = { 43.2, 88.4, 148, 413 }, + [6] = { 34.6, 87.3, 148, 413 }, + [7] = { 43.5, 83.4, 148, 413 }, + [8] = { 36.2, 81.9, 148, 413 }, + [9] = { 40.3, 81.8, 148, 413 }, + [10] = { 44, 80.1, 148, 413 }, + [11] = { 41, 77.8, 148, 413 }, + [12] = { 38.4, 77.5, 148, 413 }, + [13] = { 43.1, 75.5, 148, 413 }, + [14] = { 42.2, 73.4, 148, 413 }, + [15] = { 38.9, 70.4, 148, 413 }, + [16] = { 40.1, 69.8, 148, 413 }, + [17] = { 41.9, 69.7, 148, 413 }, + [18] = { 43.3, 66.9, 148, 413 }, + [19] = { 43.7, 64, 148, 413 }, + [20] = { 39.1, 61.9, 148, 413 }, + [21] = { 40.8, 60.2, 148, 413 }, + [22] = { 38.6, 59.2, 148, 413 }, + [23] = { 38.7, 54.5, 148, 413 }, + [24] = { 44, 52.9, 148, 413 }, + [25] = { 41.4, 52.7, 148, 413 }, + [26] = { 40.3, 52.3, 148, 413 }, + [27] = { 46.8, 51.2, 148, 413 }, + [28] = { 41.2, 48.3, 148, 413 }, + [29] = { 46.2, 48.3, 148, 413 }, + [30] = { 43.8, 48.2, 148, 413 }, + [31] = { 39.1, 47.9, 148, 413 }, + [32] = { 41.5, 46.1, 148, 413 }, + [33] = { 45, 44.3, 148, 413 }, + [34] = { 47, 44.1, 148, 413 }, + [35] = { 47.1, 42.2, 148, 413 }, + [36] = { 45.8, 41.5, 148, 413 }, + [37] = { 46, 41.4, 148, 413 }, + [38] = { 43.8, 41.4, 148, 413 }, + [39] = { 47.2, 41.3, 148, 413 }, + [40] = { 43.4, 40.8, 148, 413 }, + [41] = { 42.3, 39.6, 148, 413 }, + [42] = { 48.2, 39, 148, 413 }, + [43] = { 41.8, 38.1, 148, 413 }, + [44] = { 49.1, 36.1, 148, 413 }, + [45] = { 38.6, 36.1, 148, 413 }, + [46] = { 49.5, 35.2, 148, 413 }, + [47] = { 41, 34.8, 148, 413 }, + [48] = { 48.1, 34, 148, 413 }, + [49] = { 46.9, 33.9, 148, 413 }, + [50] = { 51.1, 33.5, 148, 413 }, + [51] = { 51.9, 32.8, 148, 413 }, + [52] = { 45.6, 31.7, 148, 413 }, + [53] = { 43.6, 31.4, 148, 413 }, + [54] = { 51.2, 29.8, 148, 413 }, + [55] = { 49.5, 28.6, 148, 413 }, + [56] = { 44.6, 27.6, 148, 413 }, + [57] = { 47.7, 27.5, 148, 413 }, + [58] = { 46.6, 25, 148, 413 }, + [59] = { 44.5, 24.4, 148, 413 }, + }, + ["lvl"] = "5", + }, + [12299] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [12317] = "_", + [12336] = { + ["coords"] = { + [1] = { 52.6, 43.4, 1519, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "44", + }, + [12337] = { + ["coords"] = { + [1] = { 58.9, 38.2, 139, 610 }, + [2] = { 13.2, 12.9, 4012, 610 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [12338] = { + ["coords"] = { + [1] = { 26.6, 75, 405, 300 }, + [2] = { 26.3, 74.9, 405, 300 }, + [3] = { 26, 74.7, 405, 300 }, + [4] = { 26.4, 74.7, 405, 300 }, + [5] = { 25.3, 73.1, 405, 300 }, + [6] = { 25.5, 72.8, 405, 300 }, + [7] = { 23.3, 72.7, 405, 300 }, + [8] = { 25.5, 71.1, 405, 300 }, + [9] = { 25, 70.9, 405, 300 }, + [10] = { 24, 70.8, 405, 300 }, + [11] = { 24.9, 70.8, 405, 300 }, + [12] = { 23.9, 70.7, 405, 300 }, + [13] = { 26.1, 70.3, 405, 300 }, + [14] = { 23.5, 70.3, 405, 300 }, + [15] = { 26, 70.2, 405, 300 }, + [16] = { 24.9, 70.2, 405, 300 }, + [17] = { 24.1, 70.1, 405, 300 }, + [18] = { 25.7, 69.7, 405, 300 }, + [19] = { 26.1, 69.7, 405, 300 }, + [20] = { 24.7, 69.1, 405, 300 }, + [21] = { 26, 67.9, 405, 300 }, + [22] = { 25.4, 67.7, 405, 300 }, + [23] = { 25.7, 67.6, 405, 300 }, + [24] = { 15.6, 98.5, 2100, 300 }, + [25] = { 18.2, 98.5, 2100, 300 }, + [26] = { 10.5, 95, 2100, 300 }, + [27] = { 17.5, 88.5, 2100, 300 }, + [28] = { 14.1, 87.7, 2100, 300 }, + [29] = { 16, 86.9, 2100, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [12347] = { + ["coords"] = { + [1] = { 34.3, 35.9, 405, 300 }, + [2] = { 31, 35.7, 405, 300 }, + [3] = { 32.5, 33.8, 405, 300 }, + [4] = { 33.9, 33.2, 405, 300 }, + [5] = { 30.5, 31.9, 405, 300 }, + [6] = { 33.2, 30.4, 405, 300 }, + [7] = { 34.5, 29.1, 405, 300 }, + [8] = { 31.6, 28.2, 405, 300 }, + [9] = { 32.8, 26.6, 405, 300 }, + [10] = { 34.6, 25.9, 405, 300 }, + [11] = { 36.7, 24.4, 405, 300 }, + [12] = { 30.9, 24.4, 405, 300 }, + [13] = { 35.2, 22.5, 405, 300 }, + }, + ["lvl"] = "30-32", + }, + [12349] = { + ["coords"] = { + [1] = { 55.2, 75.3, 14, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [12350] = { + ["coords"] = { + [1] = { 51.3, 47.3, 8, 300 }, + [2] = { 55.1, 75.8, 14, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [12354] = { + ["coords"] = { + [1] = { 61.7, 23.9, 17, 300 }, + [2] = { 47.7, 58.6, 215, 375 }, + [3] = { 45.7, 51.2, 400, 300 }, + [4] = { 60.5, 37.8, 618, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "11-12", + }, + [12355] = { + ["coords"] = { + [1] = { 61.9, 24, 17, 300 }, + [2] = { 47.8, 58.6, 215, 375 }, + [3] = { 74.5, 43.2, 357, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "11-12", + }, + [12374] = { + ["coords"] = { + [1] = { 64.3, 50.2, 1, 270 }, + [2] = { 55.6, 35.7, 5130, 280 }, + [3] = { 57.4, 26.9, 5130, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [12375] = { + ["coords"] = { + [1] = { 36.8, 62.6, 11, 120 }, + [2] = { 8.9, 54.3, 11, 300 }, + [3] = { 84.7, 64.7, 12, 270 }, + [4] = { 65.1, 51.8, 15, 300 }, + [5] = { 52.1, 55.3, 267, 300 }, + [6] = { 43.1, 68.5, 5581, 120 }, + [7] = { 41.5, 64.2, 5581, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [12376] = { + ["coords"] = { + [1] = { 36.7, 62.3, 11, 120 }, + [2] = { 7.9, 54.1, 11, 300 }, + [3] = { 84.3, 64.5, 12, 270 }, + [4] = { 65.1, 51.5, 15, 300 }, + [5] = { 43.2, 99, 28, 3600 }, + [6] = { 79.4, 52, 36, 3600 }, + [7] = { 52.3, 55.6, 267, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [12377] = { + ["coords"] = { + [1] = { 28.4, 35.8, 4, 180 }, + [2] = { 28.1, 34.1, 4, 180 }, + [3] = { 28.5, 30.2, 4, 600 }, + [4] = { 28.5, 29.5, 4, 600 }, + [5] = { 69.2, 4.6, 33, 180 }, + [6] = { 54.4, 89.9, 41, 180 }, + [7] = { 54, 87.7, 41, 180 }, + [8] = { 54.6, 82.4, 41, 600 }, + [9] = { 54.6, 81.5, 41, 600 }, + [10] = { 55.6, 81.1, 41, 600 }, + [11] = { 54.5, 79.6, 41, 600 }, + [12] = { 52.8, 79.4, 41, 600 }, + [13] = { 49.9, 79.1, 41, 600 }, + [14] = { 56.8, 78.6, 41, 600 }, + [15] = { 55.7, 78.4, 41, 600 }, + [16] = { 52.9, 78.1, 41, 600 }, + [17] = { 53.9, 76.9, 41, 600 }, + [18] = { 45.6, 76.8, 41, 600 }, + [19] = { 54.8, 74.5, 41, 600 }, + [20] = { 46.8, 74.4, 41, 600 }, + [21] = { 55.2, 74.2, 41, 600 }, + [22] = { 41.3, 72.6, 41, 600 }, + [23] = { 45.7, 72.2, 41, 600 }, + [24] = { 41.3, 70, 41, 600 }, + }, + ["lvl"] = "58-60", + }, + [12378] = { + ["coords"] = { + [1] = { 29.3, 30.2, 4, 600 }, + [2] = { 55.6, 82.5, 41, 600 }, + [3] = { 53.6, 82.3, 41, 600 }, + [4] = { 53.6, 80.9, 41, 600 }, + [5] = { 51.8, 80.1, 41, 600 }, + [6] = { 49.6, 79.9, 41, 600 }, + [7] = { 50.9, 78.2, 41, 600 }, + [8] = { 54.7, 77, 41, 600 }, + [9] = { 42.5, 75.8, 41, 600 }, + [10] = { 43.2, 73.3, 41, 600 }, + [11] = { 43.5, 70.2, 41, 600 }, + [12] = { 43, 70, 41, 600 }, + }, + ["lvl"] = "59-60", + }, + [12379] = { + ["coords"] = { + [1] = { 52.6, 80.7, 41, 600 }, + [2] = { 53.8, 78.4, 41, 600 }, + [3] = { 49.8, 78, 41, 600 }, + [4] = { 55.7, 77.2, 41, 600 }, + [5] = { 55, 76.2, 41, 600 }, + [6] = { 43.6, 75.9, 41, 600 }, + [7] = { 44.8, 73.9, 41, 600 }, + [8] = { 43.5, 73.7, 41, 600 }, + [9] = { 44.1, 72.8, 41, 600 }, + }, + ["lvl"] = "59-60", + }, + [12380] = { + ["coords"] = { + [1] = { 47.2, 81.1, 41, 600 }, + [2] = { 48.2, 79.7, 41, 180 }, + [3] = { 47.9, 79.4, 41, 600 }, + [4] = { 46.6, 79.1, 41, 600 }, + [5] = { 45.3, 79, 41, 600 }, + [6] = { 44.4, 78.6, 41, 600 }, + [7] = { 48.8, 78.4, 41, 180 }, + [8] = { 46.8, 78.4, 41, 180 }, + [9] = { 45.2, 78, 41, 600 }, + [10] = { 49.6, 77.8, 41, 600 }, + [11] = { 46.9, 77.6, 41, 600 }, + [12] = { 46.8, 77.3, 41, 600 }, + [13] = { 45.4, 77.2, 41, 600 }, + [14] = { 49.2, 76.5, 41, 600 }, + [15] = { 54.9, 75.1, 41, 600 }, + [16] = { 49.9, 75, 41, 600 }, + [17] = { 48.7, 74.9, 41, 600 }, + [18] = { 48.2, 74.6, 41, 180 }, + [19] = { 43.8, 73.9, 41, 600 }, + [20] = { 44.1, 72.1, 41, 600 }, + [21] = { 41.9, 71.6, 41, 600 }, + [22] = { 42.1, 69, 41, 600 }, + }, + ["lvl"] = "59-60", + }, + [12384] = { + ["coords"] = { + [1] = { 14.4, 33.5, 139, 345 }, + [2] = { 56.4, 97.8, 5225, 345 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [12386] = "_", + [12396] = { + ["coords"] = { + [1] = { 40, 78.7, 4, 900 }, + [2] = { 41.7, 78.5, 4, 900 }, + [3] = { 43.1, 77.2, 4, 900 }, + [4] = { 44.3, 75.3, 4, 900 }, + [5] = { 42.9, 74.1, 4, 900 }, + [6] = { 45.1, 73.4, 4, 900 }, + [7] = { 44.9, 73.2, 4, 900 }, + [8] = { 44.8, 73, 4, 900 }, + [9] = { 38, 69.2, 4, 900 }, + [10] = { 40.1, 66.5, 4, 900 }, + [11] = { 34.9, 63.7, 4, 900 }, + [12] = { 34.6, 63.7, 4, 900 }, + [13] = { 40.1, 63.3, 4, 900 }, + [14] = { 74.2, 22.2, 33, 900 }, + [15] = { 72.6, 19.3, 33, 900 }, + [16] = { 72.4, 19.3, 33, 900 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [12417] = "_", + [12418] = { + ["coords"] = { + [1] = { 64.1, 45.5, 357, 300 }, + [2] = { 62.1, 44.9, 357, 300 }, + [3] = { 55.7, 44.1, 357, 300 }, + [4] = { 59.1, 43.7, 357, 300 }, + [5] = { 61.4, 43.2, 357, 300 }, + [6] = { 57.6, 42.9, 357, 300 }, + [7] = { 62, 37.6, 357, 300 }, + [8] = { 63.5, 36.1, 357, 300 }, + [9] = { 62.4, 33.7, 357, 300 }, + [10] = { 62.4, 32.5, 357, 300 }, + [11] = { 61.1, 30.6, 357, 300 }, + [12] = { 61.5, 30.6, 357, 300 }, + [13] = { 61.3, 29.6, 357, 300 }, + [14] = { 66.4, 81.2, 2557, 300 }, + [15] = { 74.5, 73.2, 2557, 300 }, + [16] = { 68.8, 60.6, 2557, 300 }, + [17] = { 68.6, 54.3, 2557, 300 }, + [18] = { 61.9, 44.1, 2557, 300 }, + [19] = { 63.9, 44, 2557, 300 }, + [20] = { 62.9, 38.9, 2557, 300 }, + }, + ["lvl"] = "52-54", + }, + [12421] = "_", + [12423] = { + ["coords"] = { + [1] = { 47, 66.8, 12, 60 }, + }, + ["fac"] = "A", + ["lvl"] = "7", + }, + [12428] = { + ["coords"] = { + [1] = { 59.2, 46.5, 85, 60 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [12431] = { + ["coords"] = { + [1] = { 59.5, 7.6, 130, 9000 }, + }, + ["lvl"] = "13", + ["rnk"] = "4", + }, + [12432] = { + ["coords"] = { + [1] = { 53.8, 51.9, 130, 9000 }, + }, + ["lvl"] = "14", + ["rnk"] = "4", + }, + [12433] = { + ["coords"] = { + [1] = { 24, 79.7, 85, 9000 }, + }, + ["lvl"] = "15", + ["rnk"] = "4", + }, + [12435] = { + ["coords"] = { + [1] = { 48.8, 53.3, 2677, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [12457] = { + ["coords"] = { + [1] = { 42.6, 38.8, 2677, 604800 }, + [2] = { 25, 38.3, 2677, 604800 }, + [3] = { 15.5, 36.6, 2677, 604800 }, + [4] = { 6.2, 23, 2677, 604800 }, + [5] = { 19.8, 16, 2677, 604800 }, + [6] = { 19.1, 15.7, 2677, 604800 }, + [7] = { 12.8, 7.4, 2677, 604800 }, + [8] = { 14.5, 5.3, 2677, 604800 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [12458] = { + ["coords"] = { + [1] = { 49.1, 92.8, 2677, 720 }, + [2] = { 49.1, 92.4, 2677, 720 }, + [3] = { 48.8, 92.3, 2677, 720 }, + [4] = { 32.6, 87.7, 2677, 720 }, + [5] = { 33.1, 87.3, 2677, 720 }, + [6] = { 32.7, 87.2, 2677, 720 }, + [7] = { 34.8, 73.1, 2677, 720 }, + [8] = { 34.9, 72.7, 2677, 720 }, + [9] = { 35.1, 72.7, 2677, 720 }, + [10] = { 48.8, 68.2, 2677, 720 }, + [11] = { 48.6, 68.1, 2677, 720 }, + [12] = { 48.6, 67.7, 2677, 720 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [12459] = { + ["coords"] = { + [1] = { 39.1, 46.5, 2677, 604800 }, + [2] = { 34.5, 45.3, 2677, 604800 }, + [3] = { 27.8, 43.4, 2677, 604800 }, + [4] = { 42.1, 37.5, 2677, 604800 }, + [5] = { 24.5, 37.4, 2677, 604800 }, + [6] = { 16.1, 37.4, 2677, 604800 }, + [7] = { 12.8, 31.6, 2677, 604800 }, + [8] = { 38.9, 29.7, 2677, 604800 }, + [9] = { 6.9, 26.9, 2677, 604800 }, + [10] = { 16.6, 19.7, 2677, 604800 }, + [11] = { 4, 18.5, 2677, 604800 }, + [12] = { 22.9, 13.2, 2677, 604800 }, + [13] = { 11.2, 7.6, 2677, 604800 }, + [14] = { 18, 1.6, 2677, 604800 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [12460] = { + ["coords"] = { + [1] = { 30, 22, 2677, 604800 }, + [2] = { 38.3, 17, 2677, 604800 }, + [3] = { 40.1, 14.8, 2677, 604800 }, + [4] = { 41.6, 12.5, 2677, 604800 }, + [5] = { 24, 3.5, 2677, 604800 }, + [6] = { 23.4, 0.6, 2677, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [12461] = { + ["coords"] = { + [1] = { 27, 40.2, 2677, 604800 }, + [2] = { 13.2, 36.5, 2677, 604800 }, + [3] = { 38.7, 30.8, 2677, 604800 }, + [4] = { 6.7, 24.9, 2677, 604800 }, + [5] = { 28.8, 23.2, 2677, 604800 }, + [6] = { 28.2, 20.3, 2677, 604800 }, + [7] = { 30.2, 19.6, 2677, 604800 }, + [8] = { 18, 16.3, 2677, 604800 }, + [9] = { 13.7, 7.7, 2677, 604800 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [12462] = "_", + [12463] = { + ["coords"] = { + [1] = { 19.4, 53.7, 2677, 604800 }, + [2] = { 18.1, 52.5, 2677, 604800 }, + [3] = { 13.9, 43.7, 2677, 604800 }, + [4] = { 13.1, 42.1, 2677, 604800 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [12464] = { + ["coords"] = { + [1] = { 15.9, 56.9, 2677, 604800 }, + [2] = { 20.1, 56, 2677, 604800 }, + [3] = { 16.4, 42.1, 2677, 604800 }, + [4] = { 13.4, 40, 2677, 604800 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [12465] = { + ["coords"] = { + [1] = { 19, 58.9, 2677, 604800 }, + [2] = { 16.5, 54, 2677, 604800 }, + [3] = { 15.4, 43.8, 2677, 604800 }, + [4] = { 14.7, 39, 2677, 604800 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [12466] = "_", + [12467] = { + ["coords"] = { + [1] = { 17.1, 58.9, 2677, 604800 }, + [2] = { 16.1, 39.5, 2677, 604800 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [12468] = { + ["coords"] = { + [1] = { 32.2, 91.8, 2677, 720 }, + [2] = { 54, 87.7, 2677, 720 }, + [3] = { 28.8, 83.4, 2677, 720 }, + [4] = { 38.1, 79.4, 2677, 720 }, + [5] = { 24.7, 76.2, 2677, 720 }, + [6] = { 42.6, 74.3, 2677, 720 }, + [7] = { 50.8, 71.9, 2677, 720 }, + [8] = { 33.1, 71.6, 2677, 720 }, + [9] = { 38.8, 66.9, 2677, 720 }, + [10] = { 30.7, 64.5, 2677, 720 }, + [11] = { 47.2, 63.7, 2677, 720 }, + [12] = { 43.8, 56.1, 2677, 720 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [12469] = "_", + [12470] = "_", + [12474] = { + ["coords"] = { + [1] = { 95, 39.9, 331, 1800 }, + [2] = { 94.9, 39.8, 331, 1800 }, + [3] = { 95, 39.8, 331, 1800 }, + [4] = { 89.5, 39.7, 331, 1800 }, + [5] = { 89.5, 39.6, 331, 1800 }, + [6] = { 92.8, 39.5, 331, 1800 }, + [7] = { 92.9, 39.5, 331, 1800 }, + [8] = { 92.9, 39.4, 331, 1800 }, + [9] = { 91.5, 39, 331, 1800 }, + [10] = { 91.6, 38.9, 331, 1800 }, + [11] = { 91.5, 38.9, 331, 1800 }, + [12] = { 90.4, 38.8, 331, 1800 }, + [13] = { 90.3, 38.8, 331, 1800 }, + [14] = { 90.4, 38.7, 331, 1800 }, + [15] = { 95.3, 37.3, 331, 1800 }, + [16] = { 95.2, 37.3, 331, 1800 }, + [17] = { 92.6, 37.2, 331, 1800 }, + [18] = { 92.7, 37.2, 331, 1800 }, + [19] = { 95.3, 37.2, 331, 1800 }, + [20] = { 92.6, 37.1, 331, 1800 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [12475] = { + ["coords"] = { + [1] = { 95, 39.9, 331, 1800 }, + [2] = { 94.9, 39.8, 331, 1800 }, + [3] = { 95, 39.8, 331, 1800 }, + [4] = { 89.5, 39.7, 331, 1800 }, + [5] = { 89.5, 39.6, 331, 1800 }, + [6] = { 92.8, 39.5, 331, 1800 }, + [7] = { 92.9, 39.5, 331, 1800 }, + [8] = { 92.9, 39.4, 331, 1800 }, + [9] = { 91.5, 39, 331, 1800 }, + [10] = { 91.6, 38.9, 331, 1800 }, + [11] = { 91.5, 38.9, 331, 1800 }, + [12] = { 90.4, 38.8, 331, 1800 }, + [13] = { 90.3, 38.8, 331, 1800 }, + [14] = { 90.4, 38.7, 331, 1800 }, + [15] = { 95.3, 37.3, 331, 1800 }, + [16] = { 95.2, 37.3, 331, 1800 }, + [17] = { 92.6, 37.2, 331, 1800 }, + [18] = { 92.7, 37.2, 331, 1800 }, + [19] = { 95.3, 37.2, 331, 1800 }, + [20] = { 92.6, 37.1, 331, 1800 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [12476] = { + ["coords"] = { + [1] = { 95, 39.9, 331, 1800 }, + [2] = { 94.9, 39.8, 331, 1800 }, + [3] = { 95, 39.8, 331, 1800 }, + [4] = { 89.5, 39.7, 331, 1800 }, + [5] = { 89.5, 39.6, 331, 1800 }, + [6] = { 92.8, 39.5, 331, 1800 }, + [7] = { 92.9, 39.5, 331, 1800 }, + [8] = { 92.9, 39.4, 331, 1800 }, + [9] = { 91.5, 39, 331, 1800 }, + [10] = { 91.6, 38.9, 331, 1800 }, + [11] = { 91.5, 38.9, 331, 1800 }, + [12] = { 90.4, 38.8, 331, 1800 }, + [13] = { 90.3, 38.8, 331, 1800 }, + [14] = { 90.4, 38.7, 331, 1800 }, + [15] = { 95.3, 37.3, 331, 1800 }, + [16] = { 95.2, 37.3, 331, 1800 }, + [17] = { 92.6, 37.2, 331, 1800 }, + [18] = { 92.7, 37.2, 331, 1800 }, + [19] = { 95.3, 37.2, 331, 1800 }, + [20] = { 92.6, 37.1, 331, 1800 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [12477] = { + ["coords"] = { + [1] = { 64.9, 33.7, 47, 1800 }, + [2] = { 64.9, 33.6, 47, 1800 }, + [3] = { 65, 33.5, 47, 1800 }, + [4] = { 60.7, 31.2, 47, 1800 }, + [5] = { 60.6, 31.2, 47, 1800 }, + [6] = { 60.7, 31.1, 47, 1800 }, + [7] = { 62.8, 30.8, 47, 1800 }, + [8] = { 67.6, 30.7, 47, 1800 }, + [9] = { 59, 30.7, 47, 1800 }, + [10] = { 67.5, 30.7, 47, 1800 }, + [11] = { 62.8, 30.7, 47, 1800 }, + [12] = { 58.9, 30.7, 47, 1800 }, + [13] = { 67.5, 30.6, 47, 1800 }, + [14] = { 59, 30.6, 47, 1800 }, + [15] = { 66.4, 28.2, 47, 1800 }, + [16] = { 66.4, 28.1, 47, 1800 }, + [17] = { 66.3, 28.1, 47, 1800 }, + [18] = { 68.5, 28.1, 47, 1800 }, + [19] = { 68.4, 27.9, 47, 1800 }, + [20] = { 68.5, 27.9, 47, 1800 }, + [21] = { 61.6, 27.8, 47, 1800 }, + [22] = { 61.6, 27.7, 47, 1800 }, + [23] = { 59.8, 25.6, 47, 1800 }, + [24] = { 59.8, 25.5, 47, 1800 }, + [25] = { 59.7, 25.5, 47, 1800 }, + [26] = { 65.4, 25, 47, 1800 }, + [27] = { 65.3, 24.9, 47, 1800 }, + [28] = { 65.4, 24.9, 47, 1800 }, + [29] = { 65.8, 23, 47, 1800 }, + [30] = { 65.7, 23, 47, 1800 }, + [31] = { 58.6, 18.4, 47, 1800 }, + [32] = { 66.7, 18, 47, 1800 }, + [33] = { 66.7, 17.9, 47, 1800 }, + [34] = { 66.6, 17.8, 47, 1800 }, + [35] = { 61.6, 15.9, 47, 1800 }, + [36] = { 61.5, 15.9, 47, 1800 }, + [37] = { 61.6, 15.8, 47, 1800 }, + [38] = { 69.7, 14.6, 47, 1800 }, + [39] = { 69.7, 14.5, 47, 1800 }, + [40] = { 69.7, 14.4, 47, 1800 }, + [41] = { 2.9, 98.7, 4012, 1800 }, + [42] = { 2.9, 98.6, 4012, 1800 }, + [43] = { 2.9, 98.5, 4012, 1800 }, + [44] = { 6.6, 94.6, 4012, 1800 }, + [45] = { 6.6, 94.4, 4012, 1800 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [12478] = { + ["coords"] = { + [1] = { 64.9, 33.7, 47, 1800 }, + [2] = { 64.9, 33.6, 47, 1800 }, + [3] = { 65, 33.5, 47, 1800 }, + [4] = { 60.7, 31.2, 47, 1800 }, + [5] = { 60.6, 31.2, 47, 1800 }, + [6] = { 60.7, 31.1, 47, 1800 }, + [7] = { 62.8, 30.8, 47, 1800 }, + [8] = { 67.6, 30.7, 47, 1800 }, + [9] = { 59, 30.7, 47, 1800 }, + [10] = { 67.5, 30.7, 47, 1800 }, + [11] = { 62.8, 30.7, 47, 1800 }, + [12] = { 58.9, 30.7, 47, 1800 }, + [13] = { 67.5, 30.6, 47, 1800 }, + [14] = { 59, 30.6, 47, 1800 }, + [15] = { 66.4, 28.2, 47, 1800 }, + [16] = { 66.4, 28.1, 47, 1800 }, + [17] = { 66.3, 28.1, 47, 1800 }, + [18] = { 68.5, 28.1, 47, 1800 }, + [19] = { 68.4, 27.9, 47, 1800 }, + [20] = { 68.5, 27.9, 47, 1800 }, + [21] = { 61.6, 27.8, 47, 1800 }, + [22] = { 61.6, 27.7, 47, 1800 }, + [23] = { 59.8, 25.6, 47, 1800 }, + [24] = { 59.8, 25.5, 47, 1800 }, + [25] = { 59.7, 25.5, 47, 1800 }, + [26] = { 65.4, 25, 47, 1800 }, + [27] = { 65.3, 24.9, 47, 1800 }, + [28] = { 65.4, 24.9, 47, 1800 }, + [29] = { 65.8, 23, 47, 1800 }, + [30] = { 65.7, 23, 47, 1800 }, + [31] = { 58.6, 18.4, 47, 1800 }, + [32] = { 66.7, 18, 47, 1800 }, + [33] = { 66.7, 17.9, 47, 1800 }, + [34] = { 66.6, 17.8, 47, 1800 }, + [35] = { 61.6, 15.9, 47, 1800 }, + [36] = { 61.5, 15.9, 47, 1800 }, + [37] = { 61.6, 15.8, 47, 1800 }, + [38] = { 69.7, 14.6, 47, 1800 }, + [39] = { 69.7, 14.5, 47, 1800 }, + [40] = { 69.7, 14.4, 47, 1800 }, + [41] = { 2.9, 98.7, 4012, 1800 }, + [42] = { 2.9, 98.6, 4012, 1800 }, + [43] = { 2.9, 98.5, 4012, 1800 }, + [44] = { 6.6, 94.6, 4012, 1800 }, + [45] = { 6.6, 94.4, 4012, 1800 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [12479] = { + ["coords"] = { + [1] = { 64.9, 33.7, 47, 1800 }, + [2] = { 64.9, 33.6, 47, 1800 }, + [3] = { 65, 33.5, 47, 1800 }, + [4] = { 60.7, 31.2, 47, 1800 }, + [5] = { 60.6, 31.2, 47, 1800 }, + [6] = { 60.7, 31.1, 47, 1800 }, + [7] = { 62.8, 30.8, 47, 1800 }, + [8] = { 67.6, 30.7, 47, 1800 }, + [9] = { 59, 30.7, 47, 1800 }, + [10] = { 67.5, 30.7, 47, 1800 }, + [11] = { 62.8, 30.7, 47, 1800 }, + [12] = { 58.9, 30.7, 47, 1800 }, + [13] = { 67.5, 30.6, 47, 1800 }, + [14] = { 59, 30.6, 47, 1800 }, + [15] = { 66.4, 28.2, 47, 1800 }, + [16] = { 66.4, 28.1, 47, 1800 }, + [17] = { 66.3, 28.1, 47, 1800 }, + [18] = { 68.5, 28.1, 47, 1800 }, + [19] = { 68.4, 27.9, 47, 1800 }, + [20] = { 68.5, 27.9, 47, 1800 }, + [21] = { 61.6, 27.8, 47, 1800 }, + [22] = { 61.6, 27.7, 47, 1800 }, + [23] = { 59.8, 25.6, 47, 1800 }, + [24] = { 59.8, 25.5, 47, 1800 }, + [25] = { 59.7, 25.5, 47, 1800 }, + [26] = { 65.4, 25, 47, 1800 }, + [27] = { 65.3, 24.9, 47, 1800 }, + [28] = { 65.4, 24.9, 47, 1800 }, + [29] = { 65.8, 23, 47, 1800 }, + [30] = { 65.7, 23, 47, 1800 }, + [31] = { 58.6, 18.4, 47, 1800 }, + [32] = { 66.7, 18, 47, 1800 }, + [33] = { 66.7, 17.9, 47, 1800 }, + [34] = { 66.6, 17.8, 47, 1800 }, + [35] = { 61.6, 15.9, 47, 1800 }, + [36] = { 61.5, 15.9, 47, 1800 }, + [37] = { 61.6, 15.8, 47, 1800 }, + [38] = { 69.7, 14.6, 47, 1800 }, + [39] = { 69.7, 14.5, 47, 1800 }, + [40] = { 69.7, 14.4, 47, 1800 }, + [41] = { 2.9, 98.7, 4012, 1800 }, + [42] = { 2.9, 98.6, 4012, 1800 }, + [43] = { 2.9, 98.5, 4012, 1800 }, + [44] = { 6.6, 94.6, 4012, 1800 }, + [45] = { 6.6, 94.4, 4012, 1800 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [12480] = { + ["coords"] = { + [1] = { 62.9, 71.6, 1519, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "58", + }, + [12481] = { + ["coords"] = { + [1] = { 62.9, 71.6, 1519, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "57", + }, + [12516] = "_", + [12517] = "_", + [12536] = "_", + [12557] = { + ["coords"] = { + [1] = { 35.7, 66.9, 2677, 604800 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [12577] = { + ["coords"] = { + [1] = { 11.9, 77.6, 16, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [12578] = { + ["coords"] = { + [1] = { 62.5, 24.2, 361, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [12579] = { + ["coords"] = { + [1] = { 36.6, 63.3, 406, 300 }, + }, + ["lvl"] = "26", + ["rnk"] = "1", + }, + [12596] = { + ["coords"] = { + [1] = { 42.9, 85.1, 28, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [12616] = { + ["coords"] = { + [1] = { 73.2, 61.6, 331, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [12617] = { + ["coords"] = { + [1] = { 81.6, 59.3, 139, 120 }, + [2] = { 41, 38.8, 4012, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [12636] = { + ["coords"] = { + [1] = { 80.2, 57, 139, 120 }, + [2] = { 39.3, 36, 4012, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [12678] = { + ["coords"] = { + [1] = { 42.1, 68.7, 331, 300 }, + [2] = { 77.7, 35.2, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [12696] = { + ["coords"] = { + [1] = { 73.8, 61.5, 331, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [12718] = { + ["coords"] = { + [1] = { 70, 71.2, 331, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [12719] = { + ["coords"] = { + [1] = { 11.7, 34.9, 331, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [12721] = { + ["coords"] = { + [1] = { 11.6, 34.9, 331, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "31", + }, + [12724] = { + ["coords"] = { + [1] = { 73.1, 61.5, 331, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "34", + }, + [12736] = { + ["coords"] = { + [1] = { 11.6, 34.3, 331, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [12738] = { + ["coords"] = { + [1] = { 25, 76, 1, 30 }, + [2] = { 52, 2, 5581, 30 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [12740] = { + ["coords"] = { + [1] = { 32.1, 66.6, 493, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [12741] = "_", + [12756] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [12759] = { + ["coords"] = { + [1] = { 48.7, 70.6, 331, 300 }, + [2] = { 84, 36.9, 406, 300 }, + }, + ["lvl"] = "27", + }, + [12777] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "55", + }, + [12782] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "55", + }, + [12783] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "55", + }, + [12804] = "_", + [12805] = { + ["coords"] = { + [1] = { 76.8, 65.9, 1519, 420 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [12806] = "_", + [12816] = { + ["coords"] = { + [1] = { 69.5, 90.2, 406, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [12836] = { + ["coords"] = { + [1] = { 65.5, 44, 331, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + ["rnk"] = "1", + }, + [12856] = { + ["coords"] = { + [1] = { 72.3, 76.4, 331, 240 }, + [2] = { 70, 76.2, 331, 240 }, + [3] = { 71, 76.1, 331, 240 }, + [4] = { 73.9, 75.1, 331, 240 }, + [5] = { 71.8, 74.6, 331, 240 }, + [6] = { 71.9, 73.7, 331, 240 }, + [7] = { 76.1, 73.1, 331, 240 }, + [8] = { 71, 72.6, 331, 240 }, + [9] = { 72.5, 72.5, 331, 240 }, + [10] = { 74.5, 72.4, 331, 240 }, + [11] = { 75.8, 71.4, 331, 240 }, + [12] = { 73.6, 70.8, 331, 240 }, + [13] = { 76.4, 70.7, 331, 240 }, + [14] = { 75.2, 70.6, 331, 240 }, + [15] = { 75.7, 70.4, 331, 240 }, + [16] = { 72.1, 70.3, 331, 240 }, + [17] = { 72.9, 70.2, 331, 240 }, + [18] = { 72.5, 69.5, 331, 240 }, + [19] = { 74.2, 69.5, 331, 240 }, + [20] = { 76.1, 69, 331, 240 }, + }, + ["fac"] = "A", + ["lvl"] = "23-24", + }, + [12857] = "_", + [12864] = { + ["coords"] = { + [1] = { 78.3, 55.8, 331, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [12899] = { + ["coords"] = { + [1] = { 81.5, 70.3, 11, 300 }, + [2] = { 31.3, 32.9, 5602, 300 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [12902] = { + ["coords"] = { + [1] = { 40.6, 63.8, 719, 604800 }, + [2] = { 46.8, 45.4, 719, 604800 }, + [3] = { 43, 43.2, 719, 604800 }, + }, + ["lvl"] = "26", + ["rnk"] = "1", + }, + [12903] = { + ["coords"] = { + [1] = { 69.7, 71.7, 331, 300 }, + [2] = { 70.1, 71.5, 331, 300 }, + [3] = { 69.8, 71.3, 331, 300 }, + [4] = { 71, 68.7, 331, 300 }, + [5] = { 70.7, 68.1, 331, 300 }, + [6] = { 71.3, 67.9, 331, 300 }, + [7] = { 71.6, 67.5, 331, 300 }, + [8] = { 73.3, 63.7, 331, 300 }, + [9] = { 73.7, 63.7, 331, 300 }, + [10] = { 73.4, 63.6, 331, 300 }, + [11] = { 73.6, 63.6, 331, 300 }, + [12] = { 72.9, 63.1, 331, 300 }, + [13] = { 74.2, 62.9, 331, 300 }, + [14] = { 73.1, 62.9, 331, 300 }, + [15] = { 74, 62.8, 331, 300 }, + [16] = { 72.8, 62.6, 331, 300 }, + [17] = { 74, 62.2, 331, 300 }, + [18] = { 73.2, 61.9, 331, 300 }, + [19] = { 73.7, 61.6, 331, 300 }, + [20] = { 73.7, 61.2, 331, 300 }, + [21] = { 73.2, 60.7, 331, 300 }, + [22] = { 73.3, 59.7, 331, 300 }, + [23] = { 73.4, 59.7, 331, 300 }, + [24] = { 73.3, 59.4, 331, 300 }, + [25] = { 72.5, 58.2, 331, 300 }, + [26] = { 72.9, 57.6, 331, 300 }, + [27] = { 73.3, 56.2, 331, 300 }, + [28] = { 12, 34.7, 331, 300 }, + [29] = { 11.8, 34.4, 331, 300 }, + [30] = { 12.2, 34.4, 331, 300 }, + [31] = { 11.9, 33.6, 331, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [12916] = "_", + [12917] = "_", + [12939] = { + ["coords"] = { + [1] = { 67.7, 48.9, 15, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "48", + }, + [12941] = { + ["coords"] = { + [1] = { 80.6, 57.6, 139, 345 }, + [2] = { 39.7, 36.7, 4012, 345 }, + }, + ["lvl"] = "56", + }, + [12944] = { + ["coords"] = { + [1] = { 53.4, 47.4, 1584, 18000 }, + }, + ["lvl"] = "60", + }, + [12957] = { + ["coords"] = { + [1] = { 45.2, 90.8, 16, 333 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [12960] = { + ["coords"] = { + [1] = { 66.6, 7, 405, 300 }, + [2] = { 45, 79.8, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [12996] = { + ["coords"] = { + [1] = { 71, 31.2, 1, 300 }, + [2] = { 70.3, 26.6, 1, 300 }, + [3] = { 69.1, 19.7, 1, 300 }, + [4] = { 69.7, 18.8, 1, 300 }, + [5] = { 24.5, 68.1, 11, 60 }, + [6] = { 25.1, 64.6, 11, 300 }, + [7] = { 22.5, 60.3, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [12997] = { + ["coords"] = { + [1] = { 47.7, 55.4, 5144, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "12", + }, + [13000] = { + ["coords"] = { + [1] = { 84.1, 41.5, 1, 855 }, + [2] = { 5, 65.2, 5602, 855 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [13016] = { + ["coords"] = { + [1] = { 53, 81.8, 5144, 5 }, + [2] = { 67.7, 80.8, 5144, 5 }, + [3] = { 56.8, 77, 5144, 5 }, + [4] = { 65.3, 73.3, 5144, 5 }, + [5] = { 47.1, 68.6, 5144, 5 }, + [6] = { 62.5, 66.6, 5144, 5 }, + [7] = { 71.3, 65.5, 5144, 5 }, + [8] = { 37.5, 61.8, 5144, 5 }, + [9] = { 34.6, 39.3, 5144, 5 }, + [10] = { 52.4, 35.7, 5144, 5 }, + [11] = { 60.2, 32.9, 5144, 5 }, + [12] = { 66.6, 32.3, 5144, 5 }, + [13] = { 55.5, 29, 5144, 5 }, + }, + ["lvl"] = "1", + }, + [13017] = { + ["coords"] = { + [1] = { 43.8, 43.2, 5144, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [13018] = { + ["coords"] = { + [1] = { 52.9, 55.7, 2257, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "12", + }, + [13019] = { + ["coords"] = { + [1] = { 55.2, 30.1, 405, 300 }, + }, + ["lvl"] = "33", + }, + [13020] = { + ["coords"] = { + [1] = { 34.6, 26.5, 2677, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [13021] = { + ["coords"] = { + [1] = { 97.6, 98, 2557, 18000 }, + [2] = { 99, 84.8, 2557, 18000 }, + }, + ["lvl"] = "55-56", + ["rnk"] = "1", + }, + [13036] = { + ["coords"] = { + [1] = { 67.8, 89, 2557, 18000 }, + [2] = { 48.2, 88.4, 2557, 18000 }, + [3] = { 47.9, 88.2, 2557, 18000 }, + [4] = { 66.5, 88.2, 2557, 18000 }, + [5] = { 55.2, 87.8, 2557, 18000 }, + [6] = { 47.7, 87.8, 2557, 18000 }, + [7] = { 55.8, 87.2, 2557, 18000 }, + [8] = { 55.5, 86, 2557, 18000 }, + [9] = { 41.7, 85.7, 2557, 18000 }, + [10] = { 42, 85.2, 2557, 18000 }, + [11] = { 41.8, 84.3, 2557, 18000 }, + [12] = { 74.5, 84.2, 2557, 18000 }, + [13] = { 75.2, 83.5, 2557, 18000 }, + [14] = { 74.7, 83.4, 2557, 18000 }, + [15] = { 72.7, 83.4, 2557, 18000 }, + [16] = { 73, 82.7, 2557, 18000 }, + [17] = { 72.4, 82.7, 2557, 18000 }, + [18] = { 60.2, 82.5, 2557, 18000 }, + [19] = { 75.1, 82.5, 2557, 18000 }, + [20] = { 60.4, 82.1, 2557, 18000 }, + [21] = { 72.8, 82.1, 2557, 18000 }, + [22] = { 72.8, 79.9, 2557, 18000 }, + [23] = { 72.6, 79.8, 2557, 18000 }, + [24] = { 72.7, 79.5, 2557, 18000 }, + [25] = { 74, 79.1, 2557, 18000 }, + [26] = { 73.8, 78.6, 2557, 18000 }, + [27] = { 74.4, 78.4, 2557, 18000 }, + [28] = { 74, 78, 2557, 18000 }, + [29] = { 61, 77.6, 2557, 18000 }, + [30] = { 61.2, 77.2, 2557, 18000 }, + [31] = { 61.5, 77, 2557, 18000 }, + [32] = { 55.9, 76.2, 2557, 18000 }, + [33] = { 43.8, 75.7, 2557, 18000 }, + [34] = { 43, 75.7, 2557, 18000 }, + [35] = { 56, 75.6, 2557, 18000 }, + [36] = { 43.4, 75.5, 2557, 18000 }, + [37] = { 67.7, 75.2, 2557, 18000 }, + [38] = { 55.6, 75.2, 2557, 18000 }, + [39] = { 73.2, 75, 2557, 18000 }, + [40] = { 72.8, 74.9, 2557, 18000 }, + [41] = { 68.3, 74.6, 2557, 18000 }, + [42] = { 64.1, 74.5, 2557, 18000 }, + [43] = { 63.7, 74.5, 2557, 18000 }, + [44] = { 73.5, 74.4, 2557, 18000 }, + [45] = { 67.4, 74.4, 2557, 18000 }, + [46] = { 73, 74.2, 2557, 18000 }, + [47] = { 67.8, 74.1, 2557, 18000 }, + [48] = { 64, 74, 2557, 18000 }, + [49] = { 63.6, 73.9, 2557, 18000 }, + [50] = { 45.9, 72.3, 2557, 18000 }, + [51] = { 41.4, 71.9, 2557, 18000 }, + [52] = { 46.5, 71.5, 2557, 18000 }, + [53] = { 45.9, 71.5, 2557, 18000 }, + [54] = { 45.3, 71.3, 2557, 18000 }, + [55] = { 42.6, 71.2, 2557, 18000 }, + [56] = { 45.8, 70.7, 2557, 18000 }, + [57] = { 41.4, 70.6, 2557, 18000 }, + [58] = { 42.7, 67.5, 2557, 18000 }, + [59] = { 42.9, 67.1, 2557, 18000 }, + [60] = { 34, 43.2, 2557, 18000 }, + [61] = { 33.7, 43, 2557, 18000 }, + [62] = { 33.9, 42.5, 2557, 18000 }, + [63] = { 32.8, 40.5, 2557, 18000 }, + [64] = { 31.1, 40.3, 2557, 18000 }, + [65] = { 32.2, 40, 2557, 18000 }, + [66] = { 30.6, 39.5, 2557, 18000 }, + [67] = { 31.6, 39.4, 2557, 18000 }, + [68] = { 33, 39.4, 2557, 18000 }, + }, + ["lvl"] = "57-59", + }, + [13056] = "_", + [13076] = { + ["coords"] = { + [1] = { 68.1, 56.2, 1, 250 }, + [2] = { 68, 56.1, 1, 250 }, + [3] = { 68.9, 55, 1, 250 }, + [4] = { 68, 55, 1, 250 }, + [5] = { 68.3, 54.9, 1, 250 }, + [6] = { 62.8, 54.6, 1, 250 }, + [7] = { 67.7, 53.7, 1, 250 }, + [8] = { 84.7, 51.3, 1, 250 }, + [9] = { 85.2, 50.5, 1, 250 }, + [10] = { 86.1, 50.5, 1, 250 }, + [11] = { 30.2, 46.3, 1, 250 }, + [12] = { 30.1, 45.9, 1, 250 }, + [13] = { 30.6, 45.8, 1, 250 }, + [14] = { 30.6, 45.2, 1, 250 }, + [15] = { 30, 45, 1, 250 }, + [16] = { 83, 40.1, 1, 250 }, + [17] = { 83.8, 39.6, 1, 250 }, + [18] = { 82.8, 37.3, 1, 250 }, + [19] = { 83.7, 36.2, 1, 250 }, + [20] = { 83.5, 35.1, 1, 250 }, + [21] = { 83.1, 34.3, 1, 250 }, + [22] = { 83.5, 34.2, 1, 250 }, + [23] = { 84.4, 32.7, 1, 250 }, + [24] = { 13, 25.3, 38, 250 }, + [25] = { 5.5, 74.1, 5602, 250 }, + [26] = { 5.9, 73.5, 5602, 250 }, + [27] = { 6.8, 73.4, 5602, 250 }, + [28] = { 3.9, 63.9, 5602, 250 }, + [29] = { 4.7, 63.4, 5602, 250 }, + [30] = { 3.8, 61.3, 5602, 250 }, + [31] = { 4.6, 60.3, 5602, 250 }, + [32] = { 4.4, 59.3, 5602, 250 }, + [33] = { 4.1, 58.5, 5602, 250 }, + [34] = { 4.5, 58.5, 5602, 250 }, + [35] = { 5.2, 57.1, 5602, 250 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [13078] = { + ["coords"] = { + [1] = { 52.5, 7.8, 2597, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "58", + ["rnk"] = "1", + }, + [13079] = { + ["coords"] = { + [1] = { 52.5, 7.8, 2597, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "58", + ["rnk"] = "1", + }, + [13080] = { + ["coords"] = { + [1] = { 52.8, 9.1, 2597, 300 }, + [2] = { 51.2, 9, 2597, 300 }, + [3] = { 50.6, 8.4, 2597, 300 }, + [4] = { 52.4, 8, 2597, 300 }, + [5] = { 52.6, 7.7, 2597, 300 }, + [6] = { 52.6, 6.5, 2597, 300 }, + [7] = { 49.7, 6.4, 2597, 300 }, + [8] = { 51.3, 5.1, 2597, 300 }, + [9] = { 49.9, 5.1, 2597, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "54-55", + ["rnk"] = "1", + }, + [13081] = { + ["coords"] = { + [1] = { 52.8, 9.1, 2597, 300 }, + [2] = { 51.2, 9, 2597, 300 }, + [3] = { 50.6, 8.4, 2597, 300 }, + [4] = { 52.4, 8, 2597, 300 }, + [5] = { 52.6, 7.7, 2597, 300 }, + [6] = { 52.6, 6.5, 2597, 300 }, + [7] = { 49.7, 6.4, 2597, 300 }, + [8] = { 51.3, 5.1, 2597, 300 }, + [9] = { 49.9, 5.1, 2597, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "54-55", + ["rnk"] = "1", + }, + [13086] = { + ["coords"] = { + [1] = { 44.2, 68.5, 2597, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "58", + ["rnk"] = "1", + }, + [13087] = { + ["coords"] = { + [1] = { 47.9, 73.1, 2597, 300 }, + [2] = { 47.3, 72.9, 2597, 300 }, + [3] = { 43.3, 72.1, 2597, 300 }, + [4] = { 43.4, 72.1, 2597, 300 }, + [5] = { 46.8, 72.1, 2597, 300 }, + [6] = { 48.2, 71.9, 2597, 300 }, + [7] = { 46.7, 71.9, 2597, 300 }, + [8] = { 47, 71.5, 2597, 300 }, + [9] = { 46.8, 71.3, 2597, 300 }, + [10] = { 45.3, 71.2, 2597, 300 }, + [11] = { 47.9, 70.9, 2597, 300 }, + [12] = { 47.5, 70.6, 2597, 300 }, + [13] = { 43.3, 70.2, 2597, 300 }, + [14] = { 45.6, 70.1, 2597, 300 }, + [15] = { 45.1, 69, 2597, 300 }, + [16] = { 43.7, 68.7, 2597, 300 }, + [17] = { 44.1, 68.6, 2597, 300 }, + [18] = { 45.4, 67.7, 2597, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "54-55", + ["rnk"] = "1", + }, + [13088] = { + ["coords"] = { + [1] = { 44.2, 68.5, 2597, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "58", + ["rnk"] = "1", + }, + [13089] = { + ["coords"] = { + [1] = { 47.9, 73.1, 2597, 300 }, + [2] = { 47.3, 72.9, 2597, 300 }, + [3] = { 43.3, 72.1, 2597, 300 }, + [4] = { 43.4, 72.1, 2597, 300 }, + [5] = { 46.8, 72.1, 2597, 300 }, + [6] = { 48.2, 71.9, 2597, 300 }, + [7] = { 46.7, 71.9, 2597, 300 }, + [8] = { 47, 71.5, 2597, 300 }, + [9] = { 46.8, 71.3, 2597, 300 }, + [10] = { 45.3, 71.2, 2597, 300 }, + [11] = { 47.9, 70.9, 2597, 300 }, + [12] = { 47.5, 70.6, 2597, 300 }, + [13] = { 43.3, 70.2, 2597, 300 }, + [14] = { 45.6, 70.1, 2597, 300 }, + [15] = { 43.9, 69.2, 2597, 300 }, + [16] = { 45.1, 69.1, 2597, 300 }, + [17] = { 43.7, 68.7, 2597, 300 }, + [18] = { 44.1, 68.6, 2597, 300 }, + [19] = { 45.4, 67.7, 2597, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "54-55", + ["rnk"] = "1", + }, + [13096] = { + ["coords"] = { + [1] = { 43.1, 73, 2597, 300 }, + [2] = { 44.1, 72.9, 2597, 300 }, + [3] = { 46.1, 72.4, 2597, 300 }, + [4] = { 46.4, 72.2, 2597, 300 }, + [5] = { 43.3, 72.1, 2597, 300 }, + [6] = { 46.7, 72.1, 2597, 300 }, + [7] = { 45.4, 71.7, 2597, 300 }, + [8] = { 45.8, 71.5, 2597, 300 }, + [9] = { 43, 71, 2597, 300 }, + [10] = { 45.6, 70.8, 2597, 300 }, + [11] = { 44.8, 70.4, 2597, 300 }, + [12] = { 44, 70.2, 2597, 300 }, + [13] = { 43.3, 70.2, 2597, 300 }, + [14] = { 44.7, 69.9, 2597, 300 }, + [15] = { 43, 69.4, 2597, 300 }, + [16] = { 43.5, 69.2, 2597, 300 }, + [17] = { 45.5, 69.2, 2597, 300 }, + [18] = { 43.9, 69.2, 2597, 300 }, + [19] = { 44.4, 69.1, 2597, 300 }, + [20] = { 45.5, 69.1, 2597, 300 }, + [21] = { 43.5, 69.1, 2597, 300 }, + [22] = { 42.5, 68.9, 2597, 300 }, + [23] = { 44.3, 68.4, 2597, 300 }, + [24] = { 45.6, 67.7, 2597, 300 }, + [25] = { 43.4, 67.7, 2597, 300 }, + [26] = { 43.6, 67.6, 2597, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "54-55", + ["rnk"] = "1", + }, + [13097] = { + ["coords"] = { + [1] = { 43.1, 73, 2597, 300 }, + [2] = { 44.1, 72.9, 2597, 300 }, + [3] = { 46.1, 72.4, 2597, 300 }, + [4] = { 46.4, 72.2, 2597, 300 }, + [5] = { 46.7, 72.1, 2597, 300 }, + [6] = { 45.4, 71.7, 2597, 300 }, + [7] = { 45.8, 71.5, 2597, 300 }, + [8] = { 43, 71, 2597, 300 }, + [9] = { 45.6, 70.8, 2597, 300 }, + [10] = { 44.8, 70.4, 2597, 300 }, + [11] = { 44, 70.2, 2597, 300 }, + [12] = { 44.7, 69.9, 2597, 300 }, + [13] = { 43, 69.4, 2597, 300 }, + [14] = { 45.5, 69.2, 2597, 300 }, + [15] = { 43.5, 69.2, 2597, 300 }, + [16] = { 44.4, 69.1, 2597, 300 }, + [17] = { 45.5, 69.1, 2597, 300 }, + [18] = { 43.5, 69.1, 2597, 300 }, + [19] = { 42.5, 68.9, 2597, 300 }, + [20] = { 44.3, 68.4, 2597, 300 }, + [21] = { 45.6, 67.7, 2597, 300 }, + [22] = { 43.4, 67.7, 2597, 300 }, + [23] = { 43.6, 67.6, 2597, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "54-55", + ["rnk"] = "1", + }, + [13098] = { + ["coords"] = { + [1] = { 49.7, 9.8, 2597, 300 }, + [2] = { 52.8, 9.4, 2597, 300 }, + [3] = { 49.6, 9.2, 2597, 300 }, + [4] = { 50.3, 9.2, 2597, 300 }, + [5] = { 51.8, 9.1, 2597, 300 }, + [6] = { 50.8, 8.7, 2597, 300 }, + [7] = { 50.2, 8.4, 2597, 300 }, + [8] = { 52.1, 7.5, 2597, 300 }, + [9] = { 50.1, 7.4, 2597, 300 }, + [10] = { 50.2, 7.2, 2597, 300 }, + [11] = { 51.5, 7.2, 2597, 300 }, + [12] = { 50, 6.7, 2597, 300 }, + [13] = { 52.2, 6.5, 2597, 300 }, + [14] = { 52.9, 6.2, 2597, 300 }, + [15] = { 51.4, 5.8, 2597, 300 }, + [16] = { 51.4, 5.7, 2597, 300 }, + [17] = { 51.5, 5.7, 2597, 300 }, + [18] = { 52.2, 5.4, 2597, 300 }, + [19] = { 50.3, 5.3, 2597, 300 }, + [20] = { 51, 5.2, 2597, 300 }, + [21] = { 49.9, 4.8, 2597, 300 }, + [22] = { 52.7, 4.4, 2597, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "54-55", + ["rnk"] = "1", + }, + [13099] = { + ["coords"] = { + [1] = { 49.7, 9.8, 2597, 300 }, + [2] = { 52.8, 9.4, 2597, 300 }, + [3] = { 49.6, 9.2, 2597, 300 }, + [4] = { 50.3, 9.2, 2597, 300 }, + [5] = { 51.8, 9.1, 2597, 300 }, + [6] = { 50.8, 8.7, 2597, 300 }, + [7] = { 50.2, 8.4, 2597, 300 }, + [8] = { 52.1, 7.5, 2597, 300 }, + [9] = { 50.1, 7.4, 2597, 300 }, + [10] = { 50.2, 7.2, 2597, 300 }, + [11] = { 51.5, 7.2, 2597, 300 }, + [12] = { 50, 6.7, 2597, 300 }, + [13] = { 52.2, 6.5, 2597, 300 }, + [14] = { 52.9, 6.2, 2597, 300 }, + [15] = { 51.4, 5.8, 2597, 300 }, + [16] = { 51.4, 5.7, 2597, 300 }, + [17] = { 51.6, 5.7, 2597, 300 }, + [18] = { 52.2, 5.4, 2597, 300 }, + [19] = { 50.3, 5.3, 2597, 300 }, + [20] = { 51, 5.2, 2597, 300 }, + [21] = { 49.9, 4.8, 2597, 300 }, + [22] = { 52.7, 4.4, 2597, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "54-55", + ["rnk"] = "1", + }, + [13116] = { + ["coords"] = { + [1] = { 33.1, 48.7, 33, 120 }, + [2] = { 31.3, 47.8, 33, 120 }, + [3] = { 49.6, 88.6, 2597, 120 }, + [4] = { 49, 76.9, 2597, 120 }, + [5] = { 51.6, 57.2, 2597, 120 }, + [6] = { 44.5, 45.7, 2597, 120 }, + [7] = { 51.8, 36.1, 2597, 120 }, + [8] = { 42.5, 15.7, 2597, 120 }, + [9] = { 49.3, 14.7, 2597, 120 }, + [10] = { 53.8, 7.5, 2597, 120 }, + [11] = { 53.5, 7.5, 2597, 86400 }, + [12] = { 42.5, 27.7, 3277, 86400 }, + [13] = { 37.1, 62.6, 3358, 86400 }, + [14] = { 60.7, 57.7, 3358, 86400 }, + [15] = { 51.1, 41.9, 3358, 86400 }, + [16] = { 39.1, 26.3, 3358, 86400 }, + [17] = { 61, 25.7, 3358, 86400 }, + [18] = { 32.9, 12.9, 3358, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [13117] = { + ["coords"] = { + [1] = { 30.9, 48.9, 33, 120 }, + [2] = { 33.1, 48.7, 33, 120 }, + [3] = { 49.6, 88.6, 2597, 120 }, + [4] = { 49, 76.9, 2597, 120 }, + [5] = { 56.6, 67.6, 2597, 120 }, + [6] = { 56.5, 67.5, 2597, 86400 }, + [7] = { 51.6, 57.2, 2597, 120 }, + [8] = { 44.5, 45.7, 2597, 120 }, + [9] = { 51.8, 36, 2597, 120 }, + [10] = { 42.5, 15.7, 2597, 120 }, + [11] = { 49.3, 14.7, 2597, 120 }, + [12] = { 57.1, 78.2, 3277, 86400 }, + [13] = { 69, 67.8, 3358, 86400 }, + [14] = { 37.1, 62.6, 3358, 86400 }, + [15] = { 60.7, 57.7, 3358, 86400 }, + [16] = { 51.1, 41.9, 3358, 86400 }, + [17] = { 39.1, 26.3, 3358, 86400 }, + [18] = { 61, 25.7, 3358, 86400 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [13118] = { + ["coords"] = { + [1] = { 59.1, 38.4, 139, 610 }, + [2] = { 59.1, 38.3, 139, 610 }, + [3] = { 58.9, 38, 139, 610 }, + [4] = { 58.8, 37.9, 139, 610 }, + [5] = { 13.4, 13.3, 4012, 610 }, + [6] = { 13.3, 13.1, 4012, 610 }, + [7] = { 13.1, 12.8, 4012, 610 }, + [8] = { 13, 12.6, 4012, 610 }, + }, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [13138] = { + ["coords"] = { + [1] = { 51.5, 34.5, 2597, 432000 }, + }, + ["fac"] = "A", + ["lvl"] = "59", + ["rnk"] = "1", + }, + [13141] = { + ["coords"] = { + [1] = { 39.5, 41, 2100, 7200 }, + [2] = { 35.3, 40.6, 2100, 7200 }, + [3] = { 30.9, 40.1, 2100, 7200 }, + [4] = { 32.5, 39.2, 2100, 7200 }, + [5] = { 30.2, 37.6, 2100, 7200 }, + [6] = { 45.2, 32.4, 2100, 7200 }, + [7] = { 40.7, 28.6, 2100, 7200 }, + [8] = { 40.8, 27.2, 2100, 7200 }, + [9] = { 44.2, 26.2, 2100, 7200 }, + [10] = { 41.1, 24.4, 2100, 7200 }, + [11] = { 40.4, 22.7, 2100, 7200 }, + [12] = { 42.1, 22.6, 2100, 7200 }, + }, + ["lvl"] = "43-44", + ["rnk"] = "1", + }, + [13142] = { + ["coords"] = { + [1] = { 32.8, 41.5, 2100, 7200 }, + [2] = { 39.8, 41.3, 2100, 7200 }, + [3] = { 35.4, 39.7, 2100, 7200 }, + [4] = { 30.6, 39.5, 2100, 7200 }, + [5] = { 39.5, 38.9, 2100, 7200 }, + [6] = { 33.7, 38.5, 2100, 7200 }, + [7] = { 30.8, 36.2, 2100, 7200 }, + [8] = { 35.6, 36, 2100, 7200 }, + [9] = { 40.6, 35.6, 2100, 7200 }, + [10] = { 39.7, 30.4, 2100, 7200 }, + }, + ["lvl"] = "43-45", + ["rnk"] = "1", + }, + [13149] = { + ["coords"] = { + [1] = { 57.1, 50.2, 2597, 490 }, + }, + ["lvl"] = "55-56", + ["rnk"] = "1", + }, + [13150] = { + ["coords"] = { + [1] = { 57.5, 51, 2597, 490 }, + [2] = { 57.6, 50.9, 2597, 490 }, + [3] = { 57.6, 50.8, 2597, 490 }, + [4] = { 56.7, 50, 2597, 490 }, + [5] = { 56.9, 49.7, 2597, 490 }, + }, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [13151] = { + ["coords"] = { + [1] = { 57.5, 50.8, 2597, 490 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [13152] = { + ["coords"] = { + [1] = { 50.3, 77.2, 2597, 432000 }, + }, + ["fac"] = "H", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [13153] = { + ["coords"] = { + [1] = { 49.4, 88.3, 2597, 432000 }, + }, + ["fac"] = "H", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [13156] = "_", + [13157] = { + ["coords"] = { + [1] = { 61.5, 66.3, 14, 120 }, + }, + ["lvl"] = "9-10", + }, + [13159] = { + ["coords"] = { + [1] = { 78.6, 67.1, 12, 120 }, + }, + ["lvl"] = "12", + }, + [13160] = { + ["coords"] = { + [1] = { 78.4, 77.1, 2557, 18000 }, + [2] = { 77.6, 77.1, 2557, 18000 }, + [3] = { 78, 76, 2557, 18000 }, + [4] = { 77.4, 75.8, 2557, 18000 }, + [5] = { 78.6, 75.5, 2557, 18000 }, + [6] = { 78.1, 74.7, 2557, 18000 }, + [7] = { 77.5, 74.6, 2557, 18000 }, + [8] = { 78.4, 74.2, 2557, 18000 }, + [9] = { 77.7, 73.2, 2557, 18000 }, + [10] = { 78.3, 73, 2557, 18000 }, + [11] = { 78.7, 71, 2557, 18000 }, + [12] = { 77.8, 70.7, 2557, 18000 }, + [13] = { 78.7, 69.9, 2557, 18000 }, + [14] = { 77.9, 69.6, 2557, 18000 }, + [15] = { 75.3, 69.3, 2557, 18000 }, + [16] = { 77.3, 69.3, 2557, 18000 }, + [17] = { 78.6, 69, 2557, 18000 }, + [18] = { 49.2, 69, 2557, 18000 }, + [19] = { 75.8, 68.9, 2557, 18000 }, + [20] = { 49.9, 68.9, 2557, 18000 }, + [21] = { 74.7, 68.9, 2557, 18000 }, + [22] = { 78, 68.7, 2557, 18000 }, + [23] = { 74, 68.6, 2557, 18000 }, + [24] = { 75.3, 68.3, 2557, 18000 }, + [25] = { 46.7, 68.3, 2557, 18000 }, + [26] = { 77.4, 68.3, 2557, 18000 }, + [27] = { 73.3, 68.3, 2557, 18000 }, + [28] = { 45, 68.2, 2557, 18000 }, + [29] = { 46.1, 68.1, 2557, 18000 }, + [30] = { 49.2, 68, 2557, 18000 }, + [31] = { 75.7, 67.9, 2557, 18000 }, + [32] = { 74.4, 67.9, 2557, 18000 }, + [33] = { 78.2, 67.9, 2557, 18000 }, + [34] = { 49.9, 67.8, 2557, 18000 }, + [35] = { 46.5, 67.8, 2557, 18000 }, + [36] = { 47.2, 67.7, 2557, 18000 }, + [37] = { 49.3, 67.6, 2557, 18000 }, + [38] = { 75, 67.5, 2557, 18000 }, + [39] = { 77.7, 67.5, 2557, 18000 }, + [40] = { 73.6, 67.3, 2557, 18000 }, + [41] = { 44.9, 67.2, 2557, 18000 }, + [42] = { 46.3, 67.1, 2557, 18000 }, + [43] = { 48.2, 67.1, 2557, 18000 }, + [44] = { 49.4, 67, 2557, 18000 }, + [45] = { 27.6, 67, 2557, 18000 }, + [46] = { 46.9, 67, 2557, 18000 }, + [47] = { 48.8, 67, 2557, 18000 }, + [48] = { 26.5, 66.9, 2557, 18000 }, + [49] = { 26.9, 66.5, 2557, 18000 }, + [50] = { 45.9, 66.5, 2557, 18000 }, + [51] = { 45.3, 66.5, 2557, 18000 }, + [52] = { 48, 66.4, 2557, 18000 }, + [53] = { 48.5, 66.3, 2557, 18000 }, + [54] = { 25.8, 66.1, 2557, 18000 }, + [55] = { 28, 65.9, 2557, 18000 }, + [56] = { 27.3, 65.7, 2557, 18000 }, + [57] = { 27.8, 65, 2557, 18000 }, + [58] = { 27, 64.8, 2557, 18000 }, + [59] = { 25.9, 64.7, 2557, 18000 }, + [60] = { 27.3, 64, 2557, 18000 }, + }, + ["lvl"] = "56-58", + }, + [13177] = { + ["coords"] = { + [1] = { 65.7, 24.2, 46, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [13180] = { + ["coords"] = { + [1] = { 53.9, 27.1, 2597, 432000 }, + }, + ["fac"] = "H", + ["lvl"] = "58", + ["rnk"] = "1", + }, + [13181] = { + ["coords"] = { + [1] = { 45.4, 14.5, 2597, 432000 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [13196] = { + ["coords"] = {}, + ["lvl"] = "53-55", + ["rnk"] = "1", + }, + [13197] = { + ["coords"] = {}, + ["lvl"] = "55-56", + ["rnk"] = "1", + }, + [13218] = { + ["coords"] = { + [1] = { 49.3, 82.5, 2597, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "54-58", + ["rnk"] = "1", + }, + [13256] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [13257] = { + ["coords"] = { + [1] = { 43.5, 15.5, 2597, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [13276] = { + ["coords"] = {}, + ["lvl"] = "55-56", + }, + [13278] = { + ["coords"] = { + [1] = { 79.3, 73.7, 16, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [13281] = "_", + [13282] = { + ["coords"] = { + [1] = { 32, 4.9, 2100, 604800 }, + }, + ["lvl"] = "48", + ["rnk"] = "1", + }, + [13283] = { + ["coords"] = { + [1] = { 80.3, 68.6, 1519, 490 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [13284] = { + ["coords"] = { + [1] = { 50.1, 85.2, 2597, 120 }, + [2] = { 50.2, 85.1, 2597, 120 }, + [3] = { 50.1, 85.1, 2597, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "58", + ["rnk"] = "1", + }, + [13305] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [13316] = { + ["coords"] = { + [1] = { 42.9, 73.1, 2597, 300 }, + [2] = { 42.9, 72.9, 2597, 300 }, + [3] = { 44.1, 72.5, 2597, 300 }, + [4] = { 46.5, 72.4, 2597, 300 }, + [5] = { 44.2, 72.4, 2597, 300 }, + [6] = { 46.3, 72.1, 2597, 300 }, + [7] = { 46.5, 72.1, 2597, 300 }, + [8] = { 44.7, 72.1, 2597, 300 }, + [9] = { 45.4, 72, 2597, 300 }, + [10] = { 43.5, 72, 2597, 300 }, + [11] = { 46.1, 72, 2597, 300 }, + [12] = { 45.3, 71.9, 2597, 300 }, + [13] = { 43.4, 71.8, 2597, 300 }, + [14] = { 45.7, 71.6, 2597, 300 }, + [15] = { 45.7, 71.4, 2597, 300 }, + [16] = { 45, 71.1, 2597, 300 }, + [17] = { 43.1, 70.9, 2597, 300 }, + [18] = { 45.2, 70.9, 2597, 300 }, + [19] = { 45.5, 70.8, 2597, 300 }, + [20] = { 43.1, 70.7, 2597, 300 }, + [21] = { 45.6, 70.5, 2597, 300 }, + [22] = { 45.5, 70.5, 2597, 300 }, + [23] = { 44, 70.5, 2597, 300 }, + [24] = { 44.2, 70.4, 2597, 300 }, + [25] = { 43.6, 70.4, 2597, 300 }, + [26] = { 43.5, 70.3, 2597, 300 }, + [27] = { 45, 70.1, 2597, 300 }, + [28] = { 45.8, 70.1, 2597, 300 }, + [29] = { 44.9, 70, 2597, 300 }, + [30] = { 44.4, 69.5, 2597, 300 }, + [31] = { 45.1, 69.5, 2597, 300 }, + [32] = { 43.4, 69.4, 2597, 300 }, + [33] = { 42.9, 69.4, 2597, 300 }, + [34] = { 45.6, 69.4, 2597, 300 }, + [35] = { 43.4, 69.3, 2597, 300 }, + [36] = { 45.6, 69.3, 2597, 300 }, + [37] = { 43.5, 69.2, 2597, 300 }, + [38] = { 45.6, 69.2, 2597, 300 }, + [39] = { 42.2, 69.2, 2597, 300 }, + [40] = { 44, 69.2, 2597, 300 }, + [41] = { 43, 69.1, 2597, 300 }, + [42] = { 43.9, 68.9, 2597, 300 }, + [43] = { 42.1, 68.6, 2597, 300 }, + [44] = { 45.6, 68.1, 2597, 300 }, + [45] = { 45.2, 68, 2597, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "52-53", + ["rnk"] = "1", + }, + [13317] = { + ["coords"] = { + [1] = { 42.9, 73.1, 2597, 300 }, + [2] = { 42.9, 72.9, 2597, 300 }, + [3] = { 44.1, 72.5, 2597, 300 }, + [4] = { 46.5, 72.4, 2597, 300 }, + [5] = { 44.2, 72.4, 2597, 300 }, + [6] = { 46.3, 72.1, 2597, 300 }, + [7] = { 46.5, 72.1, 2597, 300 }, + [8] = { 44.7, 72.1, 2597, 300 }, + [9] = { 45.4, 72, 2597, 300 }, + [10] = { 43.5, 72, 2597, 300 }, + [11] = { 46.1, 72, 2597, 300 }, + [12] = { 45.3, 71.9, 2597, 300 }, + [13] = { 43.4, 71.8, 2597, 300 }, + [14] = { 45.7, 71.6, 2597, 300 }, + [15] = { 45.7, 71.4, 2597, 300 }, + [16] = { 45, 71.1, 2597, 300 }, + [17] = { 43.1, 70.9, 2597, 300 }, + [18] = { 45.2, 70.9, 2597, 300 }, + [19] = { 45.5, 70.8, 2597, 300 }, + [20] = { 43.1, 70.7, 2597, 300 }, + [21] = { 45.6, 70.5, 2597, 300 }, + [22] = { 45.5, 70.5, 2597, 300 }, + [23] = { 44, 70.5, 2597, 300 }, + [24] = { 44.2, 70.4, 2597, 300 }, + [25] = { 43.6, 70.4, 2597, 300 }, + [26] = { 43.5, 70.3, 2597, 300 }, + [27] = { 45, 70.1, 2597, 300 }, + [28] = { 45.8, 70.1, 2597, 300 }, + [29] = { 44.9, 70, 2597, 300 }, + [30] = { 44.4, 69.5, 2597, 300 }, + [31] = { 45.1, 69.5, 2597, 300 }, + [32] = { 43.4, 69.4, 2597, 300 }, + [33] = { 42.9, 69.4, 2597, 300 }, + [34] = { 45.6, 69.4, 2597, 300 }, + [35] = { 43.4, 69.3, 2597, 300 }, + [36] = { 45.6, 69.3, 2597, 300 }, + [37] = { 43.5, 69.2, 2597, 300 }, + [38] = { 45.6, 69.2, 2597, 300 }, + [39] = { 42.2, 69.2, 2597, 300 }, + [40] = { 44, 69.2, 2597, 300 }, + [41] = { 43, 69.1, 2597, 300 }, + [42] = { 43.9, 68.9, 2597, 300 }, + [43] = { 42.1, 68.6, 2597, 300 }, + [44] = { 45.6, 68.1, 2597, 300 }, + [45] = { 45.2, 68, 2597, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "53-54", + ["rnk"] = "1", + }, + [13319] = { + ["coords"] = { + [1] = { 48.8, 14.7, 2597, 432000 }, + }, + ["fac"] = "A", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [13321] = { + ["coords"] = { + [1] = { 62.7, 24, 17, 300 }, + [2] = { 51.8, 52.6, 361, 300 }, + [3] = { 51.4, 51.7, 361, 300 }, + [4] = { 52.4, 51.4, 361, 300 }, + [5] = { 71.1, 74.7, 616, 300 }, + [6] = { 70.6, 74.6, 616, 300 }, + [7] = { 69.8, 74.4, 616, 300 }, + [8] = { 71.7, 73.7, 616, 300 }, + [9] = { 62, 73.6, 616, 300 }, + [10] = { 72.3, 73.5, 616, 300 }, + [11] = { 62.7, 73.5, 616, 300 }, + [12] = { 69.7, 73, 616, 300 }, + [13] = { 71.1, 72.6, 616, 300 }, + [14] = { 63.3, 72.6, 616, 300 }, + [15] = { 62.3, 72.2, 616, 300 }, + [16] = { 63.5, 71.8, 616, 300 }, + [17] = { 62.9, 71.5, 616, 300 }, + [18] = { 21.2, 65.2, 616, 300 }, + [19] = { 19.9, 64.5, 616, 300 }, + [20] = { 20.6, 62.9, 616, 300 }, + [21] = { 20.8, 62.8, 616, 300 }, + [22] = { 11.8, 47.9, 616, 300 }, + [23] = { 9.7, 47.1, 616, 300 }, + [24] = { 8, 47, 616, 300 }, + [25] = { 12.5, 45.9, 616, 300 }, + [26] = { 7.3, 45.5, 616, 300 }, + [27] = { 9.1, 45, 616, 300 }, + [28] = { 12.4, 43.4, 616, 300 }, + [29] = { 13.5, 43.3, 616, 300 }, + [30] = { 35, 42.7, 616, 300 }, + [31] = { 33.9, 42.6, 616, 300 }, + [32] = { 35.4, 41.7, 616, 300 }, + [33] = { 32.3, 41.1, 616, 300 }, + [34] = { 34.2, 40.9, 616, 300 }, + [35] = { 33.4, 40.2, 616, 300 }, + [36] = { 33.8, 39.7, 616, 300 }, + [37] = { 11.7, 39.5, 616, 300 }, + [38] = { 35.4, 39.3, 616, 300 }, + [39] = { 33.7, 38.3, 616, 300 }, + [40] = { 79.6, 37.1, 616, 300 }, + [41] = { 79.2, 36.6, 616, 300 }, + [42] = { 79.2, 34.9, 616, 300 }, + [43] = { 74.6, 34.2, 616, 300 }, + [44] = { 77.1, 33.8, 616, 300 }, + [45] = { 77.3, 32.8, 616, 300 }, + [46] = { 74.1, 31.4, 616, 300 }, + [47] = { 73.1, 30.1, 616, 300 }, + [48] = { 77.5, 29.4, 616, 300 }, + [49] = { 75.4, 27.9, 616, 300 }, + [50] = { 67.3, 33, 1637, 25 }, + [51] = { 68, 29.5, 1637, 25 }, + [52] = { 67.5, 29.4, 1637, 25 }, + [53] = { 52.5, 47.5, 1977, 7200 }, + [54] = { 50.6, 46.6, 1977, 7200 }, + [55] = { 54.2, 45.8, 1977, 7200 }, + [56] = { 54.1, 42.9, 1977, 7200 }, + [57] = { 42.3, 42.6, 1977, 7200 }, + [58] = { 41.5, 42.4, 1977, 7200 }, + [59] = { 33, 41.8, 1977, 7200 }, + [60] = { 36.3, 39.8, 1977, 7200 }, + [61] = { 37.8, 38.9, 1977, 7200 }, + [62] = { 32.5, 38.2, 1977, 7200 }, + [63] = { 35.6, 28.3, 1977, 7200 }, + [64] = { 33.9, 27.8, 1977, 7200 }, + [65] = { 29.5, 27.3, 1977, 7200 }, + [66] = { 36, 26.9, 1977, 7200 }, + [67] = { 37.3, 26.6, 1977, 7200 }, + [68] = { 34.5, 26.1, 1977, 7200 }, + [69] = { 29.4, 23.3, 1977, 7200 }, + [70] = { 21.1, 87.9, 2100, 7200 }, + [71] = { 23.4, 86.6, 2100, 7200 }, + [72] = { 18.5, 86.5, 2100, 7200 }, + [73] = { 17.5, 82.9, 2100, 7200 }, + [74] = { 23.3, 79.8, 2100, 7200 }, + [75] = { 19.3, 78.5, 2100, 7200 }, + [76] = { 21.3, 78, 2100, 7200 }, + [77] = { 23, 65.9, 2100, 7200 }, + [78] = { 20.3, 65.5, 2100, 7200 }, + [79] = { 21.8, 64.2, 2100, 7200 }, + [80] = { 19.8, 63.9, 2100, 7200 }, + [81] = { 24.1, 63.7, 2100, 7200 }, + [82] = { 16.6, 62.1, 2100, 7200 }, + [83] = { 20.6, 61.5, 2100, 7200 }, + [84] = { 27.2, 61.5, 2100, 7200 }, + [85] = { 22.4, 61, 2100, 7200 }, + [86] = { 16.1, 59.2, 2100, 7200 }, + [87] = { 19.1, 51.8, 2100, 7200 }, + [88] = { 23.1, 49.8, 2100, 7200 }, + [89] = { 21.9, 45, 2100, 7200 }, + [90] = { 17.8, 44.9, 2100, 7200 }, + [91] = { 21, 44.2, 2100, 7200 }, + [92] = { 21.7, 41.3, 2100, 7200 }, + }, + ["lvl"] = "1", + }, + [13322] = { + ["coords"] = { + [1] = { 79.5, 76.3, 16, 180 }, + [2] = { 78.2, 75.5, 16, 180 }, + [3] = { 80.1, 74.8, 16, 180 }, + [4] = { 78.2, 74.2, 16, 180 }, + [5] = { 78.3, 72.8, 16, 180 }, + [6] = { 80.2, 71.8, 16, 180 }, + [7] = { 79, 71.7, 16, 180 }, + }, + ["lvl"] = "57", + ["rnk"] = "1", + }, + [13323] = { + ["coords"] = { + [1] = { 34, 75.5, 2100, 7200 }, + [2] = { 40.5, 75.2, 2100, 7200 }, + [3] = { 33.5, 75.1, 2100, 7200 }, + [4] = { 33.8, 74.9, 2100, 7200 }, + [5] = { 40.2, 74.8, 2100, 7200 }, + [6] = { 41, 74.7, 2100, 7200 }, + [7] = { 34.4, 74.4, 2100, 7200 }, + [8] = { 40.6, 74.2, 2100, 7200 }, + [9] = { 39.9, 70.4, 2100, 7200 }, + [10] = { 33, 69.8, 2100, 7200 }, + [11] = { 40.6, 69.7, 2100, 7200 }, + [12] = { 27.7, 69.7, 2100, 7200 }, + [13] = { 31.4, 69.7, 2100, 7200 }, + [14] = { 39.8, 69.6, 2100, 7200 }, + [15] = { 27, 69.5, 2100, 7200 }, + [16] = { 33.3, 69.5, 2100, 7200 }, + [17] = { 40.1, 69.4, 2100, 7200 }, + [18] = { 31.7, 69.1, 2100, 7200 }, + [19] = { 33.6, 69.1, 2100, 7200 }, + [20] = { 31.2, 69.1, 2100, 7200 }, + [21] = { 27.4, 68.9, 2100, 7200 }, + [22] = { 35.5, 68.2, 2100, 7200 }, + [23] = { 35.9, 68.1, 2100, 7200 }, + [24] = { 41.5, 67.8, 2100, 7200 }, + [25] = { 41.9, 67.7, 2100, 7200 }, + [26] = { 35.8, 67.4, 2100, 7200 }, + [27] = { 41.4, 67.2, 2100, 7200 }, + [28] = { 42, 67.1, 2100, 7200 }, + [29] = { 31.2, 66.7, 2100, 7200 }, + [30] = { 31, 66.2, 2100, 7200 }, + [31] = { 30.5, 66.1, 2100, 7200 }, + }, + ["lvl"] = "46-48", + ["rnk"] = "1", + }, + [13324] = { + ["coords"] = { + [1] = { 51.3, 36.3, 2597, 120 }, + [2] = { 51.1, 34, 2597, 120 }, + [3] = { 51, 33.9, 2597, 120 }, + [4] = { 51.3, 25.8, 2597, 120 }, + [5] = { 52.3, 22.8, 2597, 120 }, + [6] = { 52.3, 22.7, 2597, 120 }, + [7] = { 50.9, 22.6, 2597, 120 }, + [8] = { 51.4, 19, 2597, 120 }, + [9] = { 42.5, 18.5, 2597, 120 }, + [10] = { 43, 18.5, 2597, 600 }, + [11] = { 50, 17.1, 2597, 120 }, + [12] = { 49.9, 17, 2597, 120 }, + [13] = { 42.9, 17, 2597, 600 }, + [14] = { 44.3, 16.9, 2597, 600 }, + [15] = { 45.6, 16.7, 2597, 600 }, + [16] = { 44.6, 16.6, 2597, 600 }, + [17] = { 44, 16.4, 2597, 600 }, + [18] = { 43.5, 16.4, 2597, 600 }, + [19] = { 42.9, 16.4, 2597, 600 }, + [20] = { 45.6, 16.3, 2597, 600 }, + [21] = { 48.5, 16.1, 2597, 120 }, + [22] = { 43.1, 15.9, 2597, 600 }, + [23] = { 43.2, 15.8, 2597, 600 }, + [24] = { 43.6, 15.8, 2597, 600 }, + [25] = { 48.5, 15.7, 2597, 120 }, + [26] = { 44.5, 15.4, 2597, 600 }, + [27] = { 42.6, 15.1, 2597, 600 }, + [28] = { 42.9, 14.9, 2597, 600 }, + [29] = { 52.3, 13.8, 2597, 120 }, + [30] = { 52.3, 13.7, 2597, 120 }, + [31] = { 42.1, 13, 2597, 120 }, + [32] = { 42.5, 12.8, 2597, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "58", + }, + [13325] = { + ["coords"] = { + [1] = { 55, 43.7, 2597, 120 }, + [2] = { 55.4, 43.5, 2597, 120 }, + [3] = { 44.6, 43.4, 2597, 120 }, + [4] = { 44.6, 43.3, 2597, 120 }, + [5] = { 50, 43.3, 2597, 120 }, + [6] = { 50, 42.9, 2597, 120 }, + [7] = { 54.2, 42.8, 2597, 120 }, + [8] = { 55.3, 42.7, 2597, 120 }, + [9] = { 54.2, 42.7, 2597, 120 }, + [10] = { 53.2, 42.6, 2597, 120 }, + [11] = { 50.1, 42.6, 2597, 120 }, + [12] = { 49.8, 42.6, 2597, 120 }, + [13] = { 48.2, 42.4, 2597, 120 }, + [14] = { 48.3, 42.4, 2597, 120 }, + [15] = { 54.8, 42.4, 2597, 120 }, + [16] = { 49.7, 42.2, 2597, 120 }, + [17] = { 54.9, 41.8, 2597, 120 }, + [18] = { 46.9, 41.7, 2597, 120 }, + [19] = { 50.2, 39.9, 2597, 120 }, + [20] = { 47.2, 39.7, 2597, 120 }, + [21] = { 51.8, 39.2, 2597, 120 }, + [22] = { 52.1, 39.1, 2597, 120 }, + [23] = { 47.4, 38.9, 2597, 120 }, + [24] = { 52.1, 38.2, 2597, 120 }, + [25] = { 50, 38, 2597, 120 }, + [26] = { 52.2, 37.9, 2597, 120 }, + [27] = { 51.2, 37.8, 2597, 120 }, + [28] = { 49.8, 37.8, 2597, 120 }, + [29] = { 52, 37.6, 2597, 120 }, + [30] = { 51.5, 37.4, 2597, 120 }, + [31] = { 49.8, 37.4, 2597, 120 }, + [32] = { 48.7, 37.3, 2597, 120 }, + [33] = { 51.1, 37.1, 2597, 120 }, + [34] = { 47.3, 36.8, 2597, 120 }, + [35] = { 47, 36.5, 2597, 120 }, + [36] = { 47.4, 36.5, 2597, 120 }, + [37] = { 46.8, 36.4, 2597, 120 }, + [38] = { 47.6, 36.1, 2597, 120 }, + [39] = { 47.1, 36, 2597, 120 }, + [40] = { 47.5, 35.7, 2597, 120 }, + [41] = { 51.3, 35, 2597, 120 }, + [42] = { 51.2, 35, 2597, 120 }, + [43] = { 50.3, 34.3, 2597, 120 }, + [44] = { 50.3, 34.2, 2597, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "58", + }, + [13326] = { + ["coords"] = { + [1] = { 49.4, 88.3, 2597, 120 }, + [2] = { 49.2, 88.2, 2597, 120 }, + [3] = { 49.2, 88, 2597, 120 }, + [4] = { 49.4, 88, 2597, 120 }, + [5] = { 50.1, 77, 2597, 120 }, + [6] = { 49.9, 76.7, 2597, 120 }, + [7] = { 50.2, 76.7, 2597, 120 }, + [8] = { 50.1, 76.6, 2597, 120 }, + [9] = { 51.4, 60.2, 2597, 120 }, + [10] = { 51.3, 60.2, 2597, 120 }, + [11] = { 51.5, 60, 2597, 120 }, + [12] = { 51.3, 60, 2597, 120 }, + [13] = { 44.6, 45.8, 2597, 120 }, + [14] = { 44.8, 45.6, 2597, 120 }, + [15] = { 44.6, 45.6, 2597, 120 }, + [16] = { 44.7, 45.4, 2597, 120 }, + [17] = { 49, 40.4, 2597, 120 }, + [18] = { 48.7, 40.3, 2597, 120 }, + [19] = { 49.4, 39.9, 2597, 120 }, + [20] = { 48.4, 39.7, 2597, 120 }, + [21] = { 49.1, 39.1, 2597, 120 }, + [22] = { 48.9, 39, 2597, 120 }, + [23] = { 49.2, 38, 2597, 120 }, + [24] = { 48.9, 38, 2597, 120 }, + [25] = { 51.5, 34.4, 2597, 120 }, + [26] = { 51.4, 34.2, 2597, 120 }, + [27] = { 51.6, 34.2, 2597, 120 }, + [28] = { 51.5, 34.1, 2597, 120 }, + [29] = { 42.7, 15.9, 2597, 600 }, + [30] = { 42.8, 15.9, 2597, 600 }, + [31] = { 42.7, 15.7, 2597, 600 }, + [32] = { 42.8, 15.7, 2597, 600 }, + [33] = { 49, 14.9, 2597, 120 }, + [34] = { 48.8, 14.8, 2597, 120 }, + [35] = { 49.1, 14.7, 2597, 120 }, + [36] = { 42.5, 14.7, 2597, 600 }, + [37] = { 42.5, 14.6, 2597, 600 }, + [38] = { 42.8, 14.6, 2597, 600 }, + [39] = { 48.9, 14.6, 2597, 120 }, + [40] = { 42.7, 14.5, 2597, 600 }, + [41] = { 42.4, 14, 2597, 600 }, + [42] = { 42.6, 13.9, 2597, 600 }, + [43] = { 41.9, 13.5, 2597, 120 }, + [44] = { 41.9, 13.3, 2597, 120 }, + [45] = { 42.8, 13.2, 2597, 120 }, + [46] = { 42.7, 13, 2597, 120 }, + [47] = { 42.3, 12.9, 2597, 120 }, + [48] = { 42.7, 12.8, 2597, 120 }, + [49] = { 42.2, 12.7, 2597, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "59", + }, + [13327] = { + ["coords"] = { + [1] = { 49.9, 43.2, 2597, 430 }, + [2] = { 55.4, 43, 2597, 430 }, + [3] = { 49.7, 43, 2597, 430 }, + [4] = { 54.9, 42.9, 2597, 430 }, + [5] = { 49.4, 42.8, 2597, 430 }, + [6] = { 46.8, 42.4, 2597, 430 }, + [7] = { 55.2, 42.3, 2597, 430 }, + [8] = { 47, 42, 2597, 430 }, + [9] = { 46.6, 42, 2597, 430 }, + [10] = { 46.7, 41.8, 2597, 430 }, + [11] = { 50.3, 39.9, 2597, 430 }, + [12] = { 50.4, 39.7, 2597, 430 }, + [13] = { 52.6, 39.1, 2597, 430 }, + [14] = { 51.4, 38.7, 2597, 430 }, + [15] = { 49.1, 38.6, 2597, 430 }, + [16] = { 48.9, 38.5, 2597, 430 }, + [17] = { 47.8, 38.4, 2597, 430 }, + [18] = { 51.6, 38.3, 2597, 120 }, + [19] = { 51.7, 38.2, 2597, 120 }, + [20] = { 50.2, 38, 2597, 430 }, + [21] = { 51.4, 37.9, 2597, 430 }, + [22] = { 51.9, 37.9, 2597, 430 }, + [23] = { 50.2, 37.5, 2597, 430 }, + [24] = { 47.7, 37.5, 2597, 430 }, + [25] = { 50, 37.4, 2597, 430 }, + [26] = { 48.7, 37.3, 2597, 430 }, + [27] = { 49.5, 37.3, 2597, 430 }, + [28] = { 51.6, 37.2, 2597, 430 }, + [29] = { 51.5, 37.1, 2597, 430 }, + [30] = { 51.1, 36.7, 2597, 430 }, + [31] = { 47.7, 36.6, 2597, 430 }, + [32] = { 48.1, 35.8, 2597, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "58", + }, + [13328] = { + ["coords"] = { + [1] = { 49.4, 88.3, 2597, 120 }, + [2] = { 49.2, 88.2, 2597, 120 }, + [3] = { 49.2, 88, 2597, 120 }, + [4] = { 49.4, 88, 2597, 120 }, + [5] = { 47.4, 87.5, 2597, 120 }, + [6] = { 47.6, 87.5, 2597, 120 }, + [7] = { 47.6, 87.3, 2597, 120 }, + [8] = { 47.1, 87.2, 2597, 120 }, + [9] = { 47.7, 86.9, 2597, 120 }, + [10] = { 47, 86.8, 2597, 120 }, + [11] = { 48.1, 86.6, 2597, 120 }, + [12] = { 47.6, 86.5, 2597, 120 }, + [13] = { 48.1, 86.4, 2597, 120 }, + [14] = { 48.9, 86.3, 2597, 120 }, + [15] = { 47.1, 86.2, 2597, 120 }, + [16] = { 47.4, 86.1, 2597, 120 }, + [17] = { 48.8, 86, 2597, 120 }, + [18] = { 49.5, 85.8, 2597, 120 }, + [19] = { 49.1, 85.7, 2597, 120 }, + [20] = { 49.6, 85.5, 2597, 120 }, + [21] = { 48.7, 85.4, 2597, 120 }, + [22] = { 46.5, 84, 2597, 120 }, + [23] = { 48.8, 83.9, 2597, 120 }, + [24] = { 48.9, 83.9, 2597, 120 }, + [25] = { 47.5, 83.4, 2597, 120 }, + [26] = { 48, 83.1, 2597, 120 }, + [27] = { 48, 82.9, 2597, 120 }, + [28] = { 47.9, 82.8, 2597, 120 }, + [29] = { 47.8, 82.7, 2597, 120 }, + [30] = { 48, 82.5, 2597, 120 }, + [31] = { 47.8, 82.5, 2597, 120 }, + [32] = { 48, 81.9, 2597, 120 }, + [33] = { 50.1, 77, 2597, 120 }, + [34] = { 49.9, 76.7, 2597, 120 }, + [35] = { 50.2, 76.7, 2597, 120 }, + [36] = { 50.1, 76.6, 2597, 120 }, + [37] = { 51.4, 60.2, 2597, 120 }, + [38] = { 51.3, 60.2, 2597, 120 }, + [39] = { 51.5, 60, 2597, 120 }, + [40] = { 51.3, 60, 2597, 120 }, + [41] = { 44.6, 45.8, 2597, 120 }, + [42] = { 44.8, 45.6, 2597, 120 }, + [43] = { 44.6, 45.6, 2597, 120 }, + [44] = { 44.7, 45.4, 2597, 120 }, + [45] = { 51.5, 34.4, 2597, 120 }, + [46] = { 51.4, 34.2, 2597, 120 }, + [47] = { 51.6, 34.2, 2597, 120 }, + [48] = { 51.5, 34.1, 2597, 120 }, + [49] = { 42.7, 15.9, 2597, 120 }, + [50] = { 42.8, 15.9, 2597, 120 }, + [51] = { 42.7, 15.7, 2597, 120 }, + [52] = { 42.8, 15.7, 2597, 120 }, + [53] = { 49, 14.9, 2597, 120 }, + [54] = { 48.8, 14.8, 2597, 120 }, + [55] = { 49.1, 14.7, 2597, 120 }, + [56] = { 48.9, 14.6, 2597, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "59", + }, + [13329] = { + ["coords"] = { + [1] = { 49.8, 86.7, 2597, 120 }, + [2] = { 48.9, 85.5, 2597, 120 }, + [3] = { 51, 83.7, 2597, 120 }, + [4] = { 50.7, 83.6, 2597, 120 }, + [5] = { 51.2, 83.5, 2597, 120 }, + [6] = { 50.9, 83.5, 2597, 120 }, + [7] = { 55.9, 83.3, 2597, 120 }, + [8] = { 56.9, 82.8, 2597, 120 }, + [9] = { 55.9, 82.8, 2597, 120 }, + [10] = { 50.2, 82.4, 2597, 120 }, + [11] = { 50.1, 82.3, 2597, 120 }, + [12] = { 57.2, 82.2, 2597, 120 }, + [13] = { 49.3, 81.8, 2597, 120 }, + [14] = { 50.6, 81.7, 2597, 120 }, + [15] = { 50.4, 81.6, 2597, 120 }, + [16] = { 48.1, 81.5, 2597, 120 }, + [17] = { 47.9, 81.4, 2597, 120 }, + [18] = { 50.6, 81.4, 2597, 120 }, + [19] = { 50.4, 81.3, 2597, 120 }, + [20] = { 50.1, 81.1, 2597, 120 }, + [21] = { 48.5, 81, 2597, 120 }, + [22] = { 50.9, 81, 2597, 120 }, + [23] = { 50.3, 80.7, 2597, 120 }, + [24] = { 48.2, 80.6, 2597, 120 }, + [25] = { 50.1, 80.5, 2597, 120 }, + [26] = { 50.3, 80.4, 2597, 120 }, + [27] = { 50.7, 80.1, 2597, 120 }, + [28] = { 50.1, 80, 2597, 120 }, + [29] = { 50.3, 79.5, 2597, 120 }, + [30] = { 50.5, 79.5, 2597, 120 }, + [31] = { 53.4, 78.8, 2597, 120 }, + [32] = { 53.3, 78.8, 2597, 120 }, + [33] = { 50.4, 78.5, 2597, 120 }, + [34] = { 50.3, 78.4, 2597, 120 }, + [35] = { 49.9, 76.4, 2597, 120 }, + [36] = { 51, 70.5, 2597, 120 }, + [37] = { 51.1, 70.4, 2597, 120 }, + [38] = { 51.7, 67.9, 2597, 120 }, + [39] = { 50, 65.9, 2597, 120 }, + [40] = { 50.1, 65.8, 2597, 120 }, + [41] = { 50.1, 65.1, 2597, 120 }, + [42] = { 52.7, 64.7, 2597, 120 }, + [43] = { 52.5, 63.6, 2597, 120 }, + [44] = { 48.4, 57.8, 2597, 120 }, + [45] = { 46.5, 57.6, 2597, 120 }, + [46] = { 46.4, 57.5, 2597, 120 }, + [47] = { 45.6, 57, 2597, 120 }, + [48] = { 45.7, 57, 2597, 120 }, + [49] = { 46.7, 54.1, 2597, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "58", + }, + [13330] = { + ["coords"] = { + [1] = { 50.6, 63.5, 2597, 120 }, + [2] = { 50.5, 63.4, 2597, 120 }, + [3] = { 51.4, 60.6, 2597, 120 }, + [4] = { 45.9, 59.3, 2597, 430 }, + [5] = { 45.2, 59.1, 2597, 430 }, + [6] = { 49.1, 58.9, 2597, 120 }, + [7] = { 49.5, 58.9, 2597, 120 }, + [8] = { 49.6, 58.9, 2597, 120 }, + [9] = { 49.2, 58.9, 2597, 120 }, + [10] = { 46.7, 58.8, 2597, 430 }, + [11] = { 45.3, 58.7, 2597, 430 }, + [12] = { 46.9, 58.2, 2597, 430 }, + [13] = { 44.9, 58.1, 2597, 430 }, + [14] = { 47.2, 57.5, 2597, 430 }, + [15] = { 47.6, 57.5, 2597, 120 }, + [16] = { 44.6, 57.4, 2597, 430 }, + [17] = { 47.6, 57.4, 2597, 430 }, + [18] = { 47.7, 57.4, 2597, 120 }, + [19] = { 45, 57.2, 2597, 430 }, + [20] = { 46.9, 56.6, 2597, 430 }, + [21] = { 51, 56.6, 2597, 430 }, + [22] = { 51.4, 56.4, 2597, 430 }, + [23] = { 47.4, 56.1, 2597, 430 }, + [24] = { 49.2, 56.1, 2597, 430 }, + [25] = { 47.1, 55.8, 2597, 430 }, + [26] = { 50.3, 55.8, 2597, 430 }, + [27] = { 48.7, 55.7, 2597, 120 }, + [28] = { 48.8, 55.6, 2597, 120 }, + [29] = { 46.4, 55.4, 2597, 430 }, + [30] = { 46.7, 55.4, 2597, 120 }, + [31] = { 46.9, 55.4, 2597, 430 }, + [32] = { 50.3, 55.3, 2597, 430 }, + [33] = { 51.5, 54.8, 2597, 430 }, + [34] = { 50.5, 54.7, 2597, 430 }, + [35] = { 50.9, 54.4, 2597, 430 }, + [36] = { 50.5, 54.2, 2597, 430 }, + [37] = { 48.3, 54, 2597, 430 }, + [38] = { 48.4, 54, 2597, 430 }, + [39] = { 44, 53.3, 2597, 430 }, + [40] = { 50.2, 52.5, 2597, 430 }, + [41] = { 48.4, 52.4, 2597, 430 }, + [42] = { 48.4, 52.3, 2597, 430 }, + [43] = { 49.8, 52.2, 2597, 430 }, + [44] = { 50.3, 52, 2597, 430 }, + [45] = { 49.9, 51.9, 2597, 430 }, + [46] = { 50.2, 51.7, 2597, 430 }, + [47] = { 46.4, 51.4, 2597, 430 }, + [48] = { 47, 51, 2597, 430 }, + [49] = { 47.4, 50.9, 2597, 430 }, + [50] = { 47.1, 50.7, 2597, 430 }, + [51] = { 46.8, 50.6, 2597, 430 }, + [52] = { 47, 50.6, 2597, 430 }, + [53] = { 47.3, 50.5, 2597, 430 }, + [54] = { 47.1, 50.3, 2597, 430 }, + [55] = { 51, 50.3, 2597, 430 }, + [56] = { 51, 50.2, 2597, 430 }, + [57] = { 45.7, 48.6, 2597, 430 }, + [58] = { 45.4, 48.2, 2597, 430 }, + [59] = { 45.7, 48.1, 2597, 430 }, + [60] = { 45.5, 47.9, 2597, 430 }, + [61] = { 45.3, 47.7, 2597, 430 }, + [62] = { 45.7, 47.6, 2597, 430 }, + }, + ["fac"] = "H", + ["lvl"] = "58", + }, + [13331] = { + ["coords"] = { + [1] = { 49.4, 88.3, 2597, 120 }, + [2] = { 49.2, 88.2, 2597, 120 }, + [3] = { 49.2, 88, 2597, 120 }, + [4] = { 49.4, 88, 2597, 120 }, + [5] = { 50.1, 77, 2597, 120 }, + [6] = { 49.9, 76.7, 2597, 120 }, + [7] = { 50.2, 76.7, 2597, 120 }, + [8] = { 50.1, 76.6, 2597, 120 }, + [9] = { 51.4, 60.2, 2597, 120 }, + [10] = { 51.3, 60.2, 2597, 120 }, + [11] = { 51.5, 60, 2597, 120 }, + [12] = { 51.3, 60, 2597, 120 }, + [13] = { 44.6, 45.8, 2597, 120 }, + [14] = { 44.8, 45.6, 2597, 120 }, + [15] = { 44.6, 45.6, 2597, 120 }, + [16] = { 44.7, 45.4, 2597, 120 }, + [17] = { 49, 40.4, 2597, 120 }, + [18] = { 48.7, 40.3, 2597, 120 }, + [19] = { 49.4, 39.9, 2597, 120 }, + [20] = { 48.4, 39.7, 2597, 120 }, + [21] = { 49.1, 39.1, 2597, 120 }, + [22] = { 48.9, 39, 2597, 120 }, + [23] = { 49.2, 38, 2597, 120 }, + [24] = { 48.9, 38, 2597, 120 }, + [25] = { 51.5, 34.4, 2597, 120 }, + [26] = { 51.4, 34.2, 2597, 120 }, + [27] = { 51.6, 34.2, 2597, 120 }, + [28] = { 51.5, 34.1, 2597, 120 }, + [29] = { 42.7, 15.9, 2597, 600 }, + [30] = { 42.8, 15.9, 2597, 600 }, + [31] = { 42.7, 15.7, 2597, 600 }, + [32] = { 42.8, 15.7, 2597, 600 }, + [33] = { 49, 14.9, 2597, 120 }, + [34] = { 48.8, 14.8, 2597, 120 }, + [35] = { 49.1, 14.7, 2597, 120 }, + [36] = { 42.5, 14.7, 2597, 600 }, + [37] = { 42.5, 14.6, 2597, 600 }, + [38] = { 42.8, 14.6, 2597, 600 }, + [39] = { 48.9, 14.6, 2597, 120 }, + [40] = { 42.7, 14.5, 2597, 600 }, + [41] = { 42.4, 14, 2597, 600 }, + [42] = { 42.6, 13.9, 2597, 600 }, + [43] = { 41.9, 13.5, 2597, 120 }, + [44] = { 41.9, 13.3, 2597, 120 }, + [45] = { 42.8, 13.2, 2597, 120 }, + [46] = { 42.7, 13, 2597, 120 }, + [47] = { 42.3, 12.9, 2597, 120 }, + [48] = { 42.7, 12.8, 2597, 120 }, + [49] = { 42.2, 12.7, 2597, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [13332] = { + ["coords"] = { + [1] = { 49.4, 88.3, 2597, 120 }, + [2] = { 49.2, 88.2, 2597, 120 }, + [3] = { 49.2, 88, 2597, 120 }, + [4] = { 49.4, 88, 2597, 120 }, + [5] = { 47.4, 87.5, 2597, 120 }, + [6] = { 47.6, 87.5, 2597, 120 }, + [7] = { 47.6, 87.3, 2597, 120 }, + [8] = { 47.1, 87.2, 2597, 120 }, + [9] = { 47.7, 86.9, 2597, 120 }, + [10] = { 47, 86.8, 2597, 120 }, + [11] = { 48.1, 86.6, 2597, 120 }, + [12] = { 47.6, 86.5, 2597, 120 }, + [13] = { 48.1, 86.4, 2597, 120 }, + [14] = { 48.9, 86.3, 2597, 120 }, + [15] = { 47.1, 86.2, 2597, 120 }, + [16] = { 47.4, 86.1, 2597, 120 }, + [17] = { 48.8, 86, 2597, 120 }, + [18] = { 49.5, 85.8, 2597, 120 }, + [19] = { 49.1, 85.7, 2597, 120 }, + [20] = { 49.6, 85.5, 2597, 120 }, + [21] = { 48.7, 85.4, 2597, 120 }, + [22] = { 46.5, 84, 2597, 120 }, + [23] = { 48.8, 83.9, 2597, 120 }, + [24] = { 48.9, 83.9, 2597, 120 }, + [25] = { 47.5, 83.4, 2597, 120 }, + [26] = { 48, 83.1, 2597, 120 }, + [27] = { 48, 82.9, 2597, 120 }, + [28] = { 47.9, 82.8, 2597, 120 }, + [29] = { 47.8, 82.7, 2597, 120 }, + [30] = { 48, 82.5, 2597, 120 }, + [31] = { 47.8, 82.5, 2597, 120 }, + [32] = { 48, 81.9, 2597, 120 }, + [33] = { 50.1, 77, 2597, 120 }, + [34] = { 49.9, 76.7, 2597, 120 }, + [35] = { 50.2, 76.7, 2597, 120 }, + [36] = { 50.1, 76.6, 2597, 120 }, + [37] = { 51.4, 60.2, 2597, 120 }, + [38] = { 51.3, 60.2, 2597, 120 }, + [39] = { 51.5, 60, 2597, 120 }, + [40] = { 51.3, 60, 2597, 120 }, + [41] = { 44.6, 45.8, 2597, 120 }, + [42] = { 44.8, 45.6, 2597, 120 }, + [43] = { 44.6, 45.6, 2597, 120 }, + [44] = { 44.7, 45.4, 2597, 120 }, + [45] = { 51.5, 34.4, 2597, 120 }, + [46] = { 51.4, 34.2, 2597, 120 }, + [47] = { 51.6, 34.2, 2597, 120 }, + [48] = { 51.5, 34.1, 2597, 120 }, + [49] = { 42.7, 15.9, 2597, 120 }, + [50] = { 42.8, 15.9, 2597, 120 }, + [51] = { 42.7, 15.7, 2597, 120 }, + [52] = { 42.8, 15.7, 2597, 120 }, + [53] = { 49, 14.9, 2597, 120 }, + [54] = { 48.8, 14.8, 2597, 120 }, + [55] = { 49.1, 14.7, 2597, 120 }, + [56] = { 48.9, 14.6, 2597, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [13333] = { + ["coords"] = { + [1] = { 51.3, 36.3, 2597, 120 }, + [2] = { 51.1, 34, 2597, 120 }, + [3] = { 51, 33.9, 2597, 120 }, + [4] = { 51.3, 25.8, 2597, 120 }, + [5] = { 52.3, 22.8, 2597, 120 }, + [6] = { 52.3, 22.7, 2597, 120 }, + [7] = { 50.9, 22.6, 2597, 120 }, + [8] = { 51.4, 19, 2597, 120 }, + [9] = { 42.5, 18.5, 2597, 120 }, + [10] = { 43, 18.5, 2597, 600 }, + [11] = { 50, 17.1, 2597, 120 }, + [12] = { 49.9, 17, 2597, 120 }, + [13] = { 42.9, 17, 2597, 600 }, + [14] = { 44.3, 16.9, 2597, 600 }, + [15] = { 45.6, 16.7, 2597, 600 }, + [16] = { 44.6, 16.6, 2597, 600 }, + [17] = { 44, 16.4, 2597, 600 }, + [18] = { 43.5, 16.4, 2597, 600 }, + [19] = { 42.9, 16.4, 2597, 600 }, + [20] = { 45.6, 16.3, 2597, 600 }, + [21] = { 48.5, 16.1, 2597, 120 }, + [22] = { 43.1, 15.9, 2597, 120 }, + [23] = { 43.2, 15.8, 2597, 600 }, + [24] = { 43.6, 15.8, 2597, 600 }, + [25] = { 48.5, 15.7, 2597, 120 }, + [26] = { 44.5, 15.4, 2597, 600 }, + [27] = { 42.6, 15.1, 2597, 600 }, + [28] = { 42.9, 14.9, 2597, 600 }, + [29] = { 52.3, 13.8, 2597, 120 }, + [30] = { 52.3, 13.7, 2597, 120 }, + [31] = { 42.1, 13, 2597, 120 }, + [32] = { 42.5, 12.8, 2597, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [13334] = { + ["coords"] = { + [1] = { 49.8, 86.7, 2597, 120 }, + [2] = { 48.9, 85.5, 2597, 120 }, + [3] = { 51, 83.7, 2597, 120 }, + [4] = { 50.7, 83.6, 2597, 120 }, + [5] = { 51.2, 83.5, 2597, 120 }, + [6] = { 50.9, 83.5, 2597, 120 }, + [7] = { 55.9, 83.3, 2597, 120 }, + [8] = { 56.9, 82.8, 2597, 120 }, + [9] = { 55.9, 82.8, 2597, 120 }, + [10] = { 50.2, 82.4, 2597, 120 }, + [11] = { 50.1, 82.3, 2597, 120 }, + [12] = { 57.2, 82.2, 2597, 120 }, + [13] = { 49.3, 81.8, 2597, 120 }, + [14] = { 50.6, 81.7, 2597, 120 }, + [15] = { 50.4, 81.6, 2597, 120 }, + [16] = { 48.1, 81.5, 2597, 120 }, + [17] = { 47.9, 81.4, 2597, 120 }, + [18] = { 50.6, 81.4, 2597, 120 }, + [19] = { 50.4, 81.3, 2597, 120 }, + [20] = { 50.1, 81.1, 2597, 120 }, + [21] = { 48.5, 81, 2597, 120 }, + [22] = { 50.9, 81, 2597, 120 }, + [23] = { 50.3, 80.7, 2597, 120 }, + [24] = { 48.2, 80.6, 2597, 120 }, + [25] = { 50.1, 80.5, 2597, 120 }, + [26] = { 50.3, 80.4, 2597, 120 }, + [27] = { 50.7, 80.1, 2597, 120 }, + [28] = { 50.1, 80, 2597, 120 }, + [29] = { 50.3, 79.5, 2597, 120 }, + [30] = { 50.5, 79.5, 2597, 120 }, + [31] = { 53.4, 78.8, 2597, 120 }, + [32] = { 53.3, 78.8, 2597, 120 }, + [33] = { 50.4, 78.5, 2597, 120 }, + [34] = { 50.3, 78.4, 2597, 120 }, + [35] = { 49.9, 76.4, 2597, 120 }, + [36] = { 51, 70.5, 2597, 120 }, + [37] = { 51.1, 70.4, 2597, 120 }, + [38] = { 51.7, 67.9, 2597, 120 }, + [39] = { 50, 65.9, 2597, 120 }, + [40] = { 50.1, 65.8, 2597, 120 }, + [41] = { 50.1, 65.1, 2597, 120 }, + [42] = { 52.7, 64.7, 2597, 120 }, + [43] = { 52.5, 63.6, 2597, 120 }, + [44] = { 48.4, 57.8, 2597, 120 }, + [45] = { 46.5, 57.6, 2597, 120 }, + [46] = { 46.4, 57.5, 2597, 120 }, + [47] = { 45.6, 57, 2597, 120 }, + [48] = { 45.7, 57, 2597, 120 }, + [49] = { 46.7, 54.1, 2597, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "58-59", + }, + [13335] = { + ["coords"] = { + [1] = { 55, 43.7, 2597, 120 }, + [2] = { 55.4, 43.5, 2597, 120 }, + [3] = { 44.6, 43.4, 2597, 120 }, + [4] = { 44.6, 43.3, 2597, 120 }, + [5] = { 50, 43.3, 2597, 120 }, + [6] = { 50, 42.9, 2597, 120 }, + [7] = { 54.2, 42.8, 2597, 120 }, + [8] = { 55.3, 42.7, 2597, 120 }, + [9] = { 54.2, 42.7, 2597, 120 }, + [10] = { 53.2, 42.6, 2597, 120 }, + [11] = { 50.1, 42.6, 2597, 120 }, + [12] = { 49.8, 42.6, 2597, 120 }, + [13] = { 48.2, 42.4, 2597, 120 }, + [14] = { 48.3, 42.4, 2597, 120 }, + [15] = { 54.8, 42.4, 2597, 120 }, + [16] = { 49.7, 42.2, 2597, 120 }, + [17] = { 54.9, 41.8, 2597, 120 }, + [18] = { 46.9, 41.7, 2597, 120 }, + [19] = { 50.2, 39.9, 2597, 120 }, + [20] = { 47.2, 39.7, 2597, 120 }, + [21] = { 51.8, 39.2, 2597, 120 }, + [22] = { 52.1, 39.1, 2597, 120 }, + [23] = { 47.4, 38.9, 2597, 120 }, + [24] = { 52.1, 38.2, 2597, 120 }, + [25] = { 50, 38, 2597, 120 }, + [26] = { 52.2, 37.9, 2597, 120 }, + [27] = { 51.2, 37.8, 2597, 120 }, + [28] = { 49.8, 37.8, 2597, 120 }, + [29] = { 52, 37.6, 2597, 120 }, + [30] = { 51.5, 37.4, 2597, 120 }, + [31] = { 49.8, 37.4, 2597, 120 }, + [32] = { 48.7, 37.3, 2597, 120 }, + [33] = { 51.1, 37.1, 2597, 120 }, + [34] = { 47.3, 36.8, 2597, 120 }, + [35] = { 47, 36.5, 2597, 120 }, + [36] = { 47.4, 36.5, 2597, 120 }, + [37] = { 46.8, 36.4, 2597, 120 }, + [38] = { 47.6, 36.1, 2597, 120 }, + [39] = { 47.1, 36, 2597, 120 }, + [40] = { 47.5, 35.7, 2597, 120 }, + [41] = { 51.3, 35, 2597, 120 }, + [42] = { 51.2, 35, 2597, 120 }, + [43] = { 50.3, 34.3, 2597, 120 }, + [44] = { 50.3, 34.2, 2597, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [13336] = { + ["coords"] = { + [1] = { 49.9, 43.2, 2597, 430 }, + [2] = { 55.4, 43, 2597, 430 }, + [3] = { 49.7, 43, 2597, 430 }, + [4] = { 54.9, 42.9, 2597, 430 }, + [5] = { 49.4, 42.8, 2597, 430 }, + [6] = { 46.8, 42.4, 2597, 430 }, + [7] = { 55.2, 42.3, 2597, 430 }, + [8] = { 47, 42, 2597, 430 }, + [9] = { 46.6, 42, 2597, 430 }, + [10] = { 46.7, 41.8, 2597, 430 }, + [11] = { 50.3, 39.9, 2597, 430 }, + [12] = { 50.4, 39.7, 2597, 430 }, + [13] = { 52.6, 39.1, 2597, 430 }, + [14] = { 51.4, 38.7, 2597, 430 }, + [15] = { 49.1, 38.6, 2597, 430 }, + [16] = { 48.9, 38.5, 2597, 430 }, + [17] = { 47.8, 38.4, 2597, 430 }, + [18] = { 51.6, 38.3, 2597, 120 }, + [19] = { 51.7, 38.2, 2597, 120 }, + [20] = { 50.2, 38, 2597, 430 }, + [21] = { 51.4, 37.9, 2597, 430 }, + [22] = { 51.9, 37.9, 2597, 430 }, + [23] = { 50.2, 37.5, 2597, 430 }, + [24] = { 47.7, 37.5, 2597, 430 }, + [25] = { 50, 37.4, 2597, 430 }, + [26] = { 48.7, 37.3, 2597, 430 }, + [27] = { 49.5, 37.3, 2597, 430 }, + [28] = { 51.6, 37.2, 2597, 430 }, + [29] = { 51.5, 37.1, 2597, 430 }, + [30] = { 51.1, 36.7, 2597, 430 }, + [31] = { 47.7, 36.6, 2597, 430 }, + [32] = { 48.1, 35.8, 2597, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [13337] = { + ["coords"] = { + [1] = { 50.6, 63.5, 2597, 120 }, + [2] = { 50.5, 63.4, 2597, 120 }, + [3] = { 51.4, 60.6, 2597, 120 }, + [4] = { 45.9, 59.3, 2597, 430 }, + [5] = { 45.2, 59.1, 2597, 430 }, + [6] = { 49.1, 58.9, 2597, 120 }, + [7] = { 49.5, 58.9, 2597, 120 }, + [8] = { 49.6, 58.9, 2597, 120 }, + [9] = { 49.2, 58.9, 2597, 120 }, + [10] = { 46.7, 58.8, 2597, 430 }, + [11] = { 45.3, 58.7, 2597, 430 }, + [12] = { 46.9, 58.2, 2597, 430 }, + [13] = { 44.9, 58.1, 2597, 430 }, + [14] = { 47.2, 57.5, 2597, 430 }, + [15] = { 47.6, 57.5, 2597, 120 }, + [16] = { 44.6, 57.4, 2597, 430 }, + [17] = { 47.6, 57.4, 2597, 430 }, + [18] = { 47.7, 57.4, 2597, 120 }, + [19] = { 45, 57.2, 2597, 430 }, + [20] = { 46.9, 56.6, 2597, 430 }, + [21] = { 51, 56.6, 2597, 430 }, + [22] = { 51.4, 56.4, 2597, 430 }, + [23] = { 47.4, 56.1, 2597, 430 }, + [24] = { 49.2, 56.1, 2597, 430 }, + [25] = { 47.1, 55.8, 2597, 430 }, + [26] = { 50.3, 55.8, 2597, 430 }, + [27] = { 48.7, 55.7, 2597, 120 }, + [28] = { 48.8, 55.6, 2597, 120 }, + [29] = { 46.4, 55.4, 2597, 430 }, + [30] = { 46.7, 55.4, 2597, 120 }, + [31] = { 46.9, 55.4, 2597, 430 }, + [32] = { 50.3, 55.3, 2597, 430 }, + [33] = { 51.5, 54.8, 2597, 430 }, + [34] = { 50.5, 54.7, 2597, 430 }, + [35] = { 50.9, 54.4, 2597, 430 }, + [36] = { 50.5, 54.2, 2597, 430 }, + [37] = { 48.3, 54, 2597, 430 }, + [38] = { 48.4, 54, 2597, 430 }, + [39] = { 44, 53.3, 2597, 430 }, + [40] = { 50.2, 52.5, 2597, 430 }, + [41] = { 48.4, 52.4, 2597, 430 }, + [42] = { 48.4, 52.3, 2597, 430 }, + [43] = { 49.8, 52.2, 2597, 430 }, + [44] = { 50.3, 52, 2597, 430 }, + [45] = { 49.9, 51.9, 2597, 430 }, + [46] = { 50.2, 51.7, 2597, 430 }, + [47] = { 46.4, 51.4, 2597, 430 }, + [48] = { 47, 51, 2597, 430 }, + [49] = { 47.4, 50.9, 2597, 430 }, + [50] = { 47.1, 50.7, 2597, 430 }, + [51] = { 46.8, 50.6, 2597, 430 }, + [52] = { 47, 50.6, 2597, 430 }, + [53] = { 47.3, 50.5, 2597, 430 }, + [54] = { 47.1, 50.3, 2597, 430 }, + [55] = { 51, 50.3, 2597, 430 }, + [56] = { 51, 50.2, 2597, 430 }, + [57] = { 45.7, 48.6, 2597, 430 }, + [58] = { 45.4, 48.2, 2597, 430 }, + [59] = { 45.7, 48.1, 2597, 430 }, + [60] = { 45.5, 47.9, 2597, 430 }, + [61] = { 45.3, 47.7, 2597, 430 }, + [62] = { 45.7, 47.6, 2597, 430 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [13339] = "_", + [13356] = { + ["coords"] = { + [1] = { 45.2, 16.3, 2597, 432000 }, + }, + ["fac"] = "A", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [13358] = { + ["coords"] = { + [1] = { 52.6, 44.5, 2597, 120 }, + [2] = { 52.3, 44.2, 2597, 120 }, + [3] = { 52.9, 43.5, 2597, 120 }, + [4] = { 52.7, 43.4, 2597, 120 }, + [5] = { 50.8, 31.6, 2597, 120 }, + [6] = { 50.5, 31.5, 2597, 120 }, + [7] = { 51.1, 31.2, 2597, 120 }, + [8] = { 50.9, 30.6, 2597, 120 }, + [9] = { 43.7, 19, 2597, 120 }, + [10] = { 44.5, 18.4, 2597, 120 }, + [11] = { 43.8, 18.3, 2597, 120 }, + [12] = { 44.1, 18.1, 2597, 120 }, + [13] = { 45.2, 15, 2597, 120 }, + [14] = { 45, 14.9, 2597, 120 }, + [15] = { 45.6, 14.7, 2597, 120 }, + [16] = { 44.9, 14.7, 2597, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "59-60", + }, + [13359] = { + ["coords"] = { + [1] = { 48.5, 84.5, 2597, 120 }, + [2] = { 49.3, 84.3, 2597, 120 }, + [3] = { 49.5, 84.2, 2597, 120 }, + [4] = { 48.5, 84.2, 2597, 120 }, + [5] = { 48.3, 84, 2597, 120 }, + [6] = { 50.4, 65.8, 2597, 120 }, + [7] = { 50.8, 65.8, 2597, 120 }, + [8] = { 50.8, 65.4, 2597, 120 }, + [9] = { 50.6, 65.3, 2597, 120 }, + [10] = { 48.5, 58.7, 2597, 120 }, + [11] = { 48, 58.6, 2597, 120 }, + [12] = { 48.4, 58.4, 2597, 120 }, + [13] = { 48.2, 58.3, 2597, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "59-60", + }, + [13377] = { + ["coords"] = { + [1] = { 40.3, 43.8, 2597, 6300 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [13396] = { + ["coords"] = { + [1] = { 49.8, 10.1, 2597, 300 }, + [2] = { 49.6, 10, 2597, 300 }, + [3] = { 52.6, 9.5, 2597, 300 }, + [4] = { 49.9, 9.3, 2597, 300 }, + [5] = { 51.2, 9.3, 2597, 300 }, + [6] = { 50.2, 9, 2597, 300 }, + [7] = { 50.9, 8.9, 2597, 300 }, + [8] = { 49.8, 8.9, 2597, 300 }, + [9] = { 50.4, 8.9, 2597, 300 }, + [10] = { 50.7, 8.9, 2597, 300 }, + [11] = { 52.7, 8.9, 2597, 300 }, + [12] = { 51, 8.9, 2597, 300 }, + [13] = { 51.7, 8.4, 2597, 300 }, + [14] = { 50.1, 8.3, 2597, 300 }, + [15] = { 50.8, 8.2, 2597, 300 }, + [16] = { 51.2, 8.1, 2597, 300 }, + [17] = { 50.3, 8.1, 2597, 300 }, + [18] = { 50.7, 8, 2597, 300 }, + [19] = { 50.1, 7.7, 2597, 300 }, + [20] = { 51.8, 7.5, 2597, 300 }, + [21] = { 50.2, 7.4, 2597, 300 }, + [22] = { 50.3, 7.4, 2597, 300 }, + [23] = { 50.2, 7.3, 2597, 300 }, + [24] = { 51.9, 7.2, 2597, 300 }, + [25] = { 50.1, 7.1, 2597, 300 }, + [26] = { 51.3, 7, 2597, 300 }, + [27] = { 49.9, 7, 2597, 300 }, + [28] = { 51.6, 6.9, 2597, 300 }, + [29] = { 50.1, 6.8, 2597, 300 }, + [30] = { 52.3, 6.7, 2597, 300 }, + [31] = { 52.1, 6.7, 2597, 300 }, + [32] = { 53.2, 6.6, 2597, 300 }, + [33] = { 53.2, 6.2, 2597, 300 }, + [34] = { 51.4, 6.1, 2597, 300 }, + [35] = { 51.3, 6, 2597, 300 }, + [36] = { 51.4, 5.9, 2597, 300 }, + [37] = { 51.4, 5.8, 2597, 300 }, + [38] = { 50.5, 5.8, 2597, 300 }, + [39] = { 51, 5.6, 2597, 300 }, + [40] = { 51.8, 5.5, 2597, 300 }, + [41] = { 50.5, 5.5, 2597, 300 }, + [42] = { 51.6, 5.4, 2597, 300 }, + [43] = { 52.4, 5.4, 2597, 300 }, + [44] = { 51.1, 5.3, 2597, 300 }, + [45] = { 52.2, 5.2, 2597, 300 }, + [46] = { 49.7, 4.5, 2597, 300 }, + [47] = { 49.9, 4.5, 2597, 300 }, + [48] = { 52.8, 4.1, 2597, 300 }, + [49] = { 52.5, 4, 2597, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "52-53", + ["rnk"] = "1", + }, + [13397] = { + ["coords"] = { + [1] = { 49.8, 10.1, 2597, 300 }, + [2] = { 49.6, 10, 2597, 300 }, + [3] = { 52.6, 9.5, 2597, 300 }, + [4] = { 49.9, 9.3, 2597, 300 }, + [5] = { 51.2, 9.3, 2597, 300 }, + [6] = { 50.2, 9, 2597, 300 }, + [7] = { 50.9, 8.9, 2597, 300 }, + [8] = { 49.8, 8.9, 2597, 300 }, + [9] = { 50.4, 8.9, 2597, 300 }, + [10] = { 50.7, 8.9, 2597, 300 }, + [11] = { 52.7, 8.9, 2597, 300 }, + [12] = { 51, 8.9, 2597, 300 }, + [13] = { 51.7, 8.4, 2597, 300 }, + [14] = { 50.1, 8.3, 2597, 300 }, + [15] = { 50.8, 8.2, 2597, 300 }, + [16] = { 51.2, 8.1, 2597, 300 }, + [17] = { 50.3, 8.1, 2597, 300 }, + [18] = { 50.7, 8, 2597, 300 }, + [19] = { 50.1, 7.7, 2597, 300 }, + [20] = { 51.8, 7.5, 2597, 300 }, + [21] = { 50.2, 7.4, 2597, 300 }, + [22] = { 50.3, 7.4, 2597, 300 }, + [23] = { 50.2, 7.3, 2597, 300 }, + [24] = { 51.9, 7.2, 2597, 300 }, + [25] = { 50.1, 7.1, 2597, 300 }, + [26] = { 51.3, 7, 2597, 300 }, + [27] = { 49.9, 7, 2597, 300 }, + [28] = { 51.6, 6.9, 2597, 300 }, + [29] = { 50.1, 6.8, 2597, 300 }, + [30] = { 52.3, 6.7, 2597, 300 }, + [31] = { 52.1, 6.7, 2597, 300 }, + [32] = { 53.2, 6.6, 2597, 300 }, + [33] = { 53.2, 6.2, 2597, 300 }, + [34] = { 51.4, 6.1, 2597, 300 }, + [35] = { 51.3, 6, 2597, 300 }, + [36] = { 51.4, 5.9, 2597, 300 }, + [37] = { 51.4, 5.8, 2597, 300 }, + [38] = { 50.5, 5.8, 2597, 300 }, + [39] = { 51, 5.6, 2597, 300 }, + [40] = { 51.8, 5.5, 2597, 300 }, + [41] = { 50.5, 5.5, 2597, 300 }, + [42] = { 51.6, 5.4, 2597, 300 }, + [43] = { 52.4, 5.4, 2597, 300 }, + [44] = { 51.1, 5.3, 2597, 300 }, + [45] = { 52.2, 5.2, 2597, 300 }, + [46] = { 49.7, 4.5, 2597, 300 }, + [47] = { 49.9, 4.5, 2597, 300 }, + [48] = { 52.8, 4.1, 2597, 300 }, + [49] = { 52.5, 4, 2597, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "52-53", + ["rnk"] = "1", + }, + [13419] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "63", + ["rnk"] = "1", + }, + [13421] = { + ["coords"] = { + [1] = { 49.4, 88.3, 2597, 120 }, + [2] = { 49.2, 88.2, 2597, 120 }, + [3] = { 49.2, 88, 2597, 120 }, + [4] = { 49.4, 88, 2597, 120 }, + [5] = { 47.4, 87.5, 2597, 120 }, + [6] = { 47.6, 87.5, 2597, 120 }, + [7] = { 47.6, 87.3, 2597, 120 }, + [8] = { 47.1, 87.2, 2597, 120 }, + [9] = { 47.7, 86.9, 2597, 120 }, + [10] = { 47, 86.8, 2597, 120 }, + [11] = { 48.1, 86.6, 2597, 120 }, + [12] = { 47.6, 86.5, 2597, 120 }, + [13] = { 48.1, 86.4, 2597, 120 }, + [14] = { 48.9, 86.3, 2597, 120 }, + [15] = { 47.1, 86.2, 2597, 120 }, + [16] = { 47.4, 86.1, 2597, 120 }, + [17] = { 48.8, 86, 2597, 120 }, + [18] = { 49.5, 85.8, 2597, 120 }, + [19] = { 49.1, 85.7, 2597, 120 }, + [20] = { 49.6, 85.5, 2597, 120 }, + [21] = { 48.7, 85.4, 2597, 120 }, + [22] = { 46.5, 84, 2597, 120 }, + [23] = { 48.8, 83.9, 2597, 120 }, + [24] = { 48.9, 83.9, 2597, 120 }, + [25] = { 47.5, 83.4, 2597, 120 }, + [26] = { 48, 83.1, 2597, 120 }, + [27] = { 48, 82.9, 2597, 120 }, + [28] = { 47.9, 82.8, 2597, 120 }, + [29] = { 47.8, 82.7, 2597, 120 }, + [30] = { 48, 82.5, 2597, 120 }, + [31] = { 47.8, 82.5, 2597, 120 }, + [32] = { 48, 81.9, 2597, 120 }, + [33] = { 50.1, 77, 2597, 120 }, + [34] = { 49.9, 76.7, 2597, 120 }, + [35] = { 50.2, 76.7, 2597, 120 }, + [36] = { 50.1, 76.6, 2597, 120 }, + [37] = { 51.4, 60.2, 2597, 120 }, + [38] = { 51.3, 60.2, 2597, 120 }, + [39] = { 51.5, 60, 2597, 120 }, + [40] = { 51.3, 60, 2597, 120 }, + [41] = { 44.6, 45.8, 2597, 120 }, + [42] = { 44.8, 45.6, 2597, 120 }, + [43] = { 44.6, 45.6, 2597, 120 }, + [44] = { 44.7, 45.4, 2597, 120 }, + [45] = { 51.5, 34.4, 2597, 120 }, + [46] = { 51.4, 34.2, 2597, 120 }, + [47] = { 51.6, 34.2, 2597, 120 }, + [48] = { 51.5, 34.1, 2597, 120 }, + [49] = { 42.7, 15.9, 2597, 120 }, + [50] = { 42.8, 15.9, 2597, 120 }, + [51] = { 42.7, 15.7, 2597, 120 }, + [52] = { 42.8, 15.7, 2597, 120 }, + [53] = { 49, 14.9, 2597, 120 }, + [54] = { 48.8, 14.8, 2597, 120 }, + [55] = { 49.1, 14.7, 2597, 120 }, + [56] = { 48.9, 14.6, 2597, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [13422] = { + ["coords"] = { + [1] = { 49.4, 88.3, 2597, 120 }, + [2] = { 49.2, 88.2, 2597, 120 }, + [3] = { 49.2, 88, 2597, 120 }, + [4] = { 49.4, 88, 2597, 120 }, + [5] = { 50.1, 77, 2597, 120 }, + [6] = { 49.9, 76.7, 2597, 120 }, + [7] = { 50.2, 76.7, 2597, 120 }, + [8] = { 50.1, 76.6, 2597, 120 }, + [9] = { 51.4, 60.2, 2597, 120 }, + [10] = { 51.3, 60.2, 2597, 120 }, + [11] = { 51.5, 60, 2597, 120 }, + [12] = { 51.3, 60, 2597, 120 }, + [13] = { 44.6, 45.8, 2597, 120 }, + [14] = { 44.8, 45.6, 2597, 120 }, + [15] = { 44.6, 45.6, 2597, 120 }, + [16] = { 44.7, 45.4, 2597, 120 }, + [17] = { 49, 40.4, 2597, 120 }, + [18] = { 48.7, 40.3, 2597, 120 }, + [19] = { 49.4, 39.9, 2597, 120 }, + [20] = { 48.4, 39.7, 2597, 120 }, + [21] = { 49.1, 39.1, 2597, 120 }, + [22] = { 48.9, 39, 2597, 120 }, + [23] = { 49.2, 38, 2597, 120 }, + [24] = { 48.9, 38, 2597, 120 }, + [25] = { 51.5, 34.4, 2597, 120 }, + [26] = { 51.4, 34.2, 2597, 120 }, + [27] = { 51.6, 34.2, 2597, 120 }, + [28] = { 51.5, 34.1, 2597, 120 }, + [29] = { 42.7, 15.9, 2597, 600 }, + [30] = { 42.8, 15.9, 2597, 600 }, + [31] = { 42.7, 15.7, 2597, 600 }, + [32] = { 42.8, 15.7, 2597, 600 }, + [33] = { 49, 14.9, 2597, 120 }, + [34] = { 48.8, 14.8, 2597, 120 }, + [35] = { 49.1, 14.7, 2597, 120 }, + [36] = { 42.5, 14.7, 2597, 600 }, + [37] = { 42.5, 14.6, 2597, 600 }, + [38] = { 42.8, 14.6, 2597, 600 }, + [39] = { 48.9, 14.6, 2597, 120 }, + [40] = { 42.7, 14.5, 2597, 600 }, + [41] = { 42.4, 14, 2597, 600 }, + [42] = { 42.6, 13.9, 2597, 600 }, + [43] = { 41.9, 13.5, 2597, 120 }, + [44] = { 41.9, 13.3, 2597, 120 }, + [45] = { 42.8, 13.2, 2597, 120 }, + [46] = { 42.7, 13, 2597, 120 }, + [47] = { 42.3, 12.9, 2597, 120 }, + [48] = { 42.7, 12.8, 2597, 120 }, + [49] = { 42.2, 12.7, 2597, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [13424] = { + ["coords"] = { + [1] = { 51.3, 36.3, 2597, 120 }, + [2] = { 51.1, 34, 2597, 120 }, + [3] = { 51, 33.9, 2597, 120 }, + [4] = { 51.3, 25.8, 2597, 120 }, + [5] = { 52.3, 22.8, 2597, 120 }, + [6] = { 52.3, 22.7, 2597, 120 }, + [7] = { 50.9, 22.6, 2597, 120 }, + [8] = { 51.4, 19, 2597, 120 }, + [9] = { 42.5, 18.5, 2597, 120 }, + [10] = { 43, 18.5, 2597, 600 }, + [11] = { 50, 17.1, 2597, 120 }, + [12] = { 49.9, 17, 2597, 120 }, + [13] = { 42.9, 17, 2597, 600 }, + [14] = { 44.3, 16.9, 2597, 600 }, + [15] = { 45.6, 16.7, 2597, 600 }, + [16] = { 44.6, 16.6, 2597, 600 }, + [17] = { 44, 16.4, 2597, 600 }, + [18] = { 43.5, 16.4, 2597, 600 }, + [19] = { 42.9, 16.4, 2597, 600 }, + [20] = { 45.6, 16.3, 2597, 600 }, + [21] = { 48.5, 16.1, 2597, 120 }, + [22] = { 43.1, 15.9, 2597, 600 }, + [23] = { 43.2, 15.8, 2597, 600 }, + [24] = { 43.6, 15.8, 2597, 600 }, + [25] = { 48.5, 15.7, 2597, 120 }, + [26] = { 44.5, 15.4, 2597, 600 }, + [27] = { 42.6, 15.1, 2597, 600 }, + [28] = { 42.9, 14.9, 2597, 600 }, + [29] = { 52.3, 13.8, 2597, 120 }, + [30] = { 52.3, 13.7, 2597, 120 }, + [31] = { 42.1, 13, 2597, 120 }, + [32] = { 42.5, 12.8, 2597, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [13425] = { + ["coords"] = { + [1] = { 49.8, 86.7, 2597, 120 }, + [2] = { 48.9, 85.5, 2597, 120 }, + [3] = { 51, 83.7, 2597, 120 }, + [4] = { 50.7, 83.6, 2597, 120 }, + [5] = { 51.2, 83.5, 2597, 120 }, + [6] = { 50.9, 83.5, 2597, 120 }, + [7] = { 55.9, 83.3, 2597, 120 }, + [8] = { 56.9, 82.8, 2597, 120 }, + [9] = { 55.9, 82.8, 2597, 120 }, + [10] = { 50.2, 82.4, 2597, 120 }, + [11] = { 50.1, 82.3, 2597, 120 }, + [12] = { 57.2, 82.2, 2597, 120 }, + [13] = { 49.3, 81.8, 2597, 120 }, + [14] = { 50.6, 81.7, 2597, 120 }, + [15] = { 50.4, 81.6, 2597, 120 }, + [16] = { 48.1, 81.5, 2597, 120 }, + [17] = { 47.9, 81.4, 2597, 120 }, + [18] = { 50.6, 81.4, 2597, 120 }, + [19] = { 50.4, 81.3, 2597, 120 }, + [20] = { 50.1, 81.1, 2597, 120 }, + [21] = { 48.5, 81, 2597, 120 }, + [22] = { 50.9, 81, 2597, 120 }, + [23] = { 50.3, 80.7, 2597, 120 }, + [24] = { 48.2, 80.6, 2597, 120 }, + [25] = { 50.1, 80.5, 2597, 120 }, + [26] = { 50.3, 80.4, 2597, 120 }, + [27] = { 50.7, 80.1, 2597, 120 }, + [28] = { 50.1, 80, 2597, 120 }, + [29] = { 50.3, 79.5, 2597, 120 }, + [30] = { 50.5, 79.5, 2597, 120 }, + [31] = { 53.4, 78.8, 2597, 120 }, + [32] = { 53.3, 78.8, 2597, 120 }, + [33] = { 50.4, 78.5, 2597, 120 }, + [34] = { 50.3, 78.4, 2597, 120 }, + [35] = { 49.9, 76.4, 2597, 120 }, + [36] = { 51, 70.5, 2597, 120 }, + [37] = { 51.1, 70.4, 2597, 120 }, + [38] = { 51.7, 67.9, 2597, 120 }, + [39] = { 50, 65.9, 2597, 120 }, + [40] = { 50.1, 65.8, 2597, 120 }, + [41] = { 50.1, 65.1, 2597, 120 }, + [42] = { 52.7, 64.7, 2597, 120 }, + [43] = { 52.5, 63.6, 2597, 120 }, + [44] = { 48.4, 57.8, 2597, 120 }, + [45] = { 46.5, 57.6, 2597, 120 }, + [46] = { 46.4, 57.5, 2597, 120 }, + [47] = { 45.6, 57, 2597, 120 }, + [48] = { 45.7, 57, 2597, 120 }, + [49] = { 46.7, 54.1, 2597, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [13426] = { + ["coords"] = { + [1] = { 55, 43.7, 2597, 120 }, + [2] = { 55.4, 43.5, 2597, 120 }, + [3] = { 44.6, 43.4, 2597, 120 }, + [4] = { 44.6, 43.3, 2597, 120 }, + [5] = { 50, 43.3, 2597, 120 }, + [6] = { 50, 42.9, 2597, 120 }, + [7] = { 54.2, 42.8, 2597, 120 }, + [8] = { 55.3, 42.7, 2597, 120 }, + [9] = { 54.2, 42.7, 2597, 120 }, + [10] = { 53.2, 42.6, 2597, 120 }, + [11] = { 50.1, 42.6, 2597, 120 }, + [12] = { 49.8, 42.6, 2597, 120 }, + [13] = { 48.2, 42.4, 2597, 120 }, + [14] = { 48.3, 42.4, 2597, 120 }, + [15] = { 54.8, 42.4, 2597, 120 }, + [16] = { 49.7, 42.2, 2597, 120 }, + [17] = { 54.9, 41.8, 2597, 120 }, + [18] = { 46.9, 41.7, 2597, 120 }, + [19] = { 50.2, 39.9, 2597, 120 }, + [20] = { 47.2, 39.7, 2597, 120 }, + [21] = { 51.8, 39.2, 2597, 120 }, + [22] = { 52.1, 39.1, 2597, 120 }, + [23] = { 47.4, 38.9, 2597, 120 }, + [24] = { 52.1, 38.2, 2597, 120 }, + [25] = { 50, 38, 2597, 120 }, + [26] = { 52.2, 37.9, 2597, 120 }, + [27] = { 51.2, 37.8, 2597, 120 }, + [28] = { 49.8, 37.8, 2597, 120 }, + [29] = { 52, 37.6, 2597, 120 }, + [30] = { 51.5, 37.4, 2597, 120 }, + [31] = { 49.8, 37.4, 2597, 120 }, + [32] = { 48.7, 37.3, 2597, 120 }, + [33] = { 51.1, 37.1, 2597, 120 }, + [34] = { 47.3, 36.8, 2597, 120 }, + [35] = { 47, 36.5, 2597, 120 }, + [36] = { 47.4, 36.5, 2597, 120 }, + [37] = { 46.8, 36.4, 2597, 120 }, + [38] = { 47.6, 36.1, 2597, 120 }, + [39] = { 47.1, 36, 2597, 120 }, + [40] = { 47.5, 35.7, 2597, 120 }, + [41] = { 51.3, 35, 2597, 120 }, + [42] = { 51.2, 35, 2597, 120 }, + [43] = { 50.3, 34.3, 2597, 120 }, + [44] = { 50.3, 34.2, 2597, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [13427] = { + ["coords"] = { + [1] = { 49.9, 43.2, 2597, 430 }, + [2] = { 55.4, 43, 2597, 430 }, + [3] = { 49.7, 43, 2597, 430 }, + [4] = { 54.9, 42.9, 2597, 430 }, + [5] = { 49.4, 42.8, 2597, 430 }, + [6] = { 46.8, 42.4, 2597, 430 }, + [7] = { 55.2, 42.3, 2597, 430 }, + [8] = { 47, 42, 2597, 430 }, + [9] = { 46.6, 42, 2597, 430 }, + [10] = { 46.7, 41.8, 2597, 430 }, + [11] = { 50.3, 39.9, 2597, 430 }, + [12] = { 50.4, 39.7, 2597, 430 }, + [13] = { 52.6, 39.1, 2597, 430 }, + [14] = { 51.4, 38.7, 2597, 430 }, + [15] = { 49.1, 38.6, 2597, 430 }, + [16] = { 48.9, 38.5, 2597, 430 }, + [17] = { 47.8, 38.4, 2597, 430 }, + [18] = { 51.6, 38.3, 2597, 120 }, + [19] = { 51.7, 38.2, 2597, 120 }, + [20] = { 50.2, 38, 2597, 430 }, + [21] = { 51.4, 37.9, 2597, 430 }, + [22] = { 51.9, 37.9, 2597, 430 }, + [23] = { 50.2, 37.5, 2597, 430 }, + [24] = { 47.7, 37.5, 2597, 430 }, + [25] = { 50, 37.4, 2597, 430 }, + [26] = { 48.7, 37.3, 2597, 430 }, + [27] = { 49.5, 37.3, 2597, 430 }, + [28] = { 51.6, 37.2, 2597, 430 }, + [29] = { 51.5, 37.1, 2597, 430 }, + [30] = { 51.1, 36.7, 2597, 430 }, + [31] = { 47.7, 36.6, 2597, 430 }, + [32] = { 48.1, 35.8, 2597, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [13428] = { + ["coords"] = { + [1] = { 50.6, 63.5, 2597, 120 }, + [2] = { 50.5, 63.4, 2597, 120 }, + [3] = { 51.4, 60.6, 2597, 120 }, + [4] = { 45.9, 59.3, 2597, 430 }, + [5] = { 45.2, 59.1, 2597, 430 }, + [6] = { 49.1, 58.9, 2597, 120 }, + [7] = { 49.5, 58.9, 2597, 120 }, + [8] = { 49.6, 58.9, 2597, 120 }, + [9] = { 49.2, 58.9, 2597, 120 }, + [10] = { 46.7, 58.8, 2597, 430 }, + [11] = { 45.3, 58.7, 2597, 430 }, + [12] = { 46.9, 58.2, 2597, 430 }, + [13] = { 44.9, 58.1, 2597, 430 }, + [14] = { 47.2, 57.5, 2597, 430 }, + [15] = { 47.6, 57.5, 2597, 120 }, + [16] = { 44.6, 57.4, 2597, 430 }, + [17] = { 47.6, 57.4, 2597, 430 }, + [18] = { 47.7, 57.4, 2597, 120 }, + [19] = { 45, 57.2, 2597, 430 }, + [20] = { 46.9, 56.6, 2597, 430 }, + [21] = { 51, 56.6, 2597, 430 }, + [22] = { 51.4, 56.4, 2597, 430 }, + [23] = { 47.4, 56.1, 2597, 430 }, + [24] = { 49.2, 56.1, 2597, 430 }, + [25] = { 47.1, 55.8, 2597, 430 }, + [26] = { 50.3, 55.8, 2597, 430 }, + [27] = { 48.7, 55.7, 2597, 120 }, + [28] = { 48.8, 55.6, 2597, 120 }, + [29] = { 46.4, 55.4, 2597, 430 }, + [30] = { 46.7, 55.4, 2597, 120 }, + [31] = { 46.9, 55.4, 2597, 430 }, + [32] = { 50.3, 55.3, 2597, 430 }, + [33] = { 51.5, 54.8, 2597, 430 }, + [34] = { 50.5, 54.7, 2597, 430 }, + [35] = { 50.9, 54.4, 2597, 430 }, + [36] = { 50.5, 54.2, 2597, 430 }, + [37] = { 48.3, 54, 2597, 430 }, + [38] = { 48.4, 54, 2597, 430 }, + [39] = { 44, 53.3, 2597, 430 }, + [40] = { 50.2, 52.5, 2597, 430 }, + [41] = { 48.4, 52.4, 2597, 430 }, + [42] = { 48.4, 52.3, 2597, 430 }, + [43] = { 49.8, 52.2, 2597, 430 }, + [44] = { 50.3, 52, 2597, 430 }, + [45] = { 49.9, 51.9, 2597, 430 }, + [46] = { 50.2, 51.7, 2597, 430 }, + [47] = { 46.4, 51.4, 2597, 430 }, + [48] = { 47, 51, 2597, 430 }, + [49] = { 47.4, 50.9, 2597, 430 }, + [50] = { 47.1, 50.7, 2597, 430 }, + [51] = { 46.8, 50.6, 2597, 430 }, + [52] = { 47, 50.6, 2597, 430 }, + [53] = { 47.3, 50.5, 2597, 430 }, + [54] = { 47.1, 50.3, 2597, 430 }, + [55] = { 51, 50.3, 2597, 430 }, + [56] = { 51, 50.2, 2597, 430 }, + [57] = { 45.7, 48.6, 2597, 430 }, + [58] = { 45.4, 48.2, 2597, 430 }, + [59] = { 45.7, 48.1, 2597, 430 }, + [60] = { 45.5, 47.9, 2597, 430 }, + [61] = { 45.3, 47.7, 2597, 430 }, + [62] = { 45.7, 47.6, 2597, 430 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [13431] = { + ["coords"] = { + [1] = { 38.4, 28.1, 215, 30 }, + [2] = { 42.5, 55.3, 1638, 30 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [13432] = { + ["coords"] = { + [1] = { 37.7, 29.3, 215, 1480 }, + [2] = { 39, 61.1, 1638, 1480 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [13435] = { + ["coords"] = { + [1] = { 62.2, 70.3, 1519, 840 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [13436] = { + ["coords"] = { + [1] = { 62.6, 70, 1519, 840 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [13437] = { + ["coords"] = { + [1] = { 48.4, 84.5, 2597, 432000 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [13438] = { + ["coords"] = { + [1] = { 50.6, 65.6, 2597, 432000 }, + }, + ["fac"] = "A", + ["lvl"] = "58", + ["rnk"] = "1", + }, + [13439] = { + ["coords"] = { + [1] = { 50.4, 81.6, 2597, 432000 }, + }, + ["fac"] = "A", + ["lvl"] = "59", + ["rnk"] = "1", + }, + [13445] = { + ["coords"] = { + [1] = { 52.5, 69.2, 1637, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [13447] = { + ["coords"] = { + [1] = { 44, 17.3, 2597, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [13496] = "_", + [13517] = { + ["coords"] = { + [1] = { 48.5, 84.5, 2597, 120 }, + [2] = { 49.3, 84.3, 2597, 120 }, + [3] = { 49.5, 84.2, 2597, 120 }, + [4] = { 48.5, 84.2, 2597, 120 }, + [5] = { 48.3, 84, 2597, 120 }, + [6] = { 50.4, 65.8, 2597, 120 }, + [7] = { 50.8, 65.8, 2597, 120 }, + [8] = { 50.8, 65.4, 2597, 120 }, + [9] = { 50.6, 65.3, 2597, 120 }, + [10] = { 48.5, 58.7, 2597, 120 }, + [11] = { 48, 58.6, 2597, 120 }, + [12] = { 48.4, 58.4, 2597, 120 }, + [13] = { 48.2, 58.3, 2597, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "57", + }, + [13518] = { + ["coords"] = { + [1] = { 48.5, 84.5, 2597, 120 }, + [2] = { 49.3, 84.3, 2597, 120 }, + [3] = { 49.5, 84.2, 2597, 120 }, + [4] = { 48.5, 84.2, 2597, 120 }, + [5] = { 48.3, 84, 2597, 120 }, + [6] = { 50.4, 65.8, 2597, 120 }, + [7] = { 50.8, 65.8, 2597, 120 }, + [8] = { 50.8, 65.4, 2597, 120 }, + [9] = { 50.6, 65.3, 2597, 120 }, + [10] = { 48.5, 58.7, 2597, 120 }, + [11] = { 48, 58.6, 2597, 120 }, + [12] = { 48.4, 58.4, 2597, 120 }, + [13] = { 48.2, 58.3, 2597, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "58", + }, + [13519] = { + ["coords"] = { + [1] = { 48.5, 84.5, 2597, 120 }, + [2] = { 49.3, 84.3, 2597, 120 }, + [3] = { 49.5, 84.2, 2597, 120 }, + [4] = { 48.5, 84.2, 2597, 120 }, + [5] = { 48.3, 84, 2597, 120 }, + [6] = { 50.4, 65.8, 2597, 120 }, + [7] = { 50.8, 65.8, 2597, 120 }, + [8] = { 50.8, 65.4, 2597, 120 }, + [9] = { 50.6, 65.3, 2597, 120 }, + [10] = { 48.5, 58.7, 2597, 120 }, + [11] = { 48, 58.6, 2597, 120 }, + [12] = { 48.4, 58.4, 2597, 120 }, + [13] = { 48.2, 58.3, 2597, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [13521] = { + ["coords"] = { + [1] = { 52.6, 44.5, 2597, 120 }, + [2] = { 52.3, 44.2, 2597, 120 }, + [3] = { 52.9, 43.5, 2597, 120 }, + [4] = { 52.7, 43.4, 2597, 120 }, + [5] = { 50.8, 31.6, 2597, 120 }, + [6] = { 50.5, 31.5, 2597, 120 }, + [7] = { 51.1, 31.2, 2597, 120 }, + [8] = { 50.9, 30.6, 2597, 120 }, + [9] = { 43.7, 19, 2597, 120 }, + [10] = { 44.5, 18.4, 2597, 120 }, + [11] = { 43.8, 18.3, 2597, 120 }, + [12] = { 44.1, 18.1, 2597, 120 }, + [13] = { 45.2, 15, 2597, 120 }, + [14] = { 45, 14.9, 2597, 120 }, + [15] = { 45.6, 14.7, 2597, 120 }, + [16] = { 44.9, 14.7, 2597, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "57", + }, + [13522] = { + ["coords"] = { + [1] = { 52.6, 44.5, 2597, 120 }, + [2] = { 52.3, 44.2, 2597, 120 }, + [3] = { 52.9, 43.5, 2597, 120 }, + [4] = { 52.7, 43.4, 2597, 120 }, + [5] = { 50.8, 31.6, 2597, 120 }, + [6] = { 50.5, 31.5, 2597, 120 }, + [7] = { 51.1, 31.2, 2597, 120 }, + [8] = { 50.9, 30.6, 2597, 120 }, + [9] = { 43.7, 19, 2597, 120 }, + [10] = { 44.5, 18.4, 2597, 120 }, + [11] = { 43.8, 18.3, 2597, 120 }, + [12] = { 44.1, 18.1, 2597, 120 }, + [13] = { 45.2, 15, 2597, 120 }, + [14] = { 45, 14.9, 2597, 120 }, + [15] = { 45.6, 14.7, 2597, 120 }, + [16] = { 44.9, 14.7, 2597, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "59", + }, + [13523] = { + ["coords"] = { + [1] = { 52.6, 44.5, 2597, 120 }, + [2] = { 52.3, 44.2, 2597, 120 }, + [3] = { 52.9, 43.5, 2597, 120 }, + [4] = { 52.7, 43.4, 2597, 120 }, + [5] = { 50.8, 31.6, 2597, 120 }, + [6] = { 50.5, 31.5, 2597, 120 }, + [7] = { 51.1, 31.2, 2597, 120 }, + [8] = { 50.9, 30.6, 2597, 120 }, + [9] = { 43.7, 19, 2597, 120 }, + [10] = { 44.5, 18.4, 2597, 120 }, + [11] = { 43.8, 18.3, 2597, 120 }, + [12] = { 44.1, 18.1, 2597, 120 }, + [13] = { 45.2, 15, 2597, 120 }, + [14] = { 45, 14.9, 2597, 120 }, + [15] = { 45.6, 14.7, 2597, 120 }, + [16] = { 44.9, 14.7, 2597, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [13533] = { + ["coords"] = { + [1] = { 40.8, 18.9, 2100, 7200 }, + }, + ["lvl"] = "45-47", + ["rnk"] = "1", + }, + [13534] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "57", + ["rnk"] = "1", + }, + [13535] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [13536] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [13537] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "56-57", + ["rnk"] = "1", + }, + [13538] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [13539] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [13540] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "56-57", + ["rnk"] = "1", + }, + [13541] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [13542] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [13543] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "56-57", + ["rnk"] = "1", + }, + [13544] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [13545] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [13546] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "56-57", + ["rnk"] = "1", + }, + [13547] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "54", + ["rnk"] = "1", + }, + [13548] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [13549] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "54", + ["rnk"] = "1", + }, + [13550] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [13551] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [13552] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "56-57", + ["rnk"] = "1", + }, + [13553] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [13554] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [13555] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "56-57", + ["rnk"] = "1", + }, + [13556] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [13557] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "52", + ["rnk"] = "1", + }, + [13596] = { + ["coords"] = { + [1] = { 26.1, 82.1, 2100, 604800 }, + }, + ["lvl"] = "50", + ["rnk"] = "1", + }, + [13597] = { + ["coords"] = { + [1] = { 48.3, 58.5, 2597, 430 }, + }, + ["fac"] = "H", + ["lvl"] = "59", + ["rnk"] = "1", + }, + [13598] = { + ["coords"] = { + [1] = { 52.7, 43.7, 2597, 432000 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [13599] = { + ["coords"] = { + [1] = { 20.2, 88.2, 2100, 7200 }, + [2] = { 22.5, 87.1, 2100, 7200 }, + [3] = { 18.4, 86.4, 2100, 7200 }, + [4] = { 17.4, 84.1, 2100, 7200 }, + [5] = { 17.6, 81.1, 2100, 7200 }, + [6] = { 22.6, 79, 2100, 7200 }, + [7] = { 19, 78.6, 2100, 7200 }, + [8] = { 20.8, 77.9, 2100, 7200 }, + [9] = { 25, 51.2, 2100, 7200 }, + [10] = { 25.1, 51, 2100, 7200 }, + [11] = { 25.3, 50.9, 2100, 7200 }, + [12] = { 25, 50.9, 2100, 7200 }, + [13] = { 25.1, 50.8, 2100, 7200 }, + [14] = { 19.6, 50.3, 2100, 7200 }, + [15] = { 24.6, 49.7, 2100, 7200 }, + [16] = { 22.2, 49.5, 2100, 7200 }, + [17] = { 22.3, 45.5, 2100, 7200 }, + [18] = { 17.9, 45.2, 2100, 7200 }, + [19] = { 19.7, 45.1, 2100, 7200 }, + [20] = { 19.9, 45.1, 2100, 7200 }, + [21] = { 17.7, 44.9, 2100, 7200 }, + [22] = { 19.6, 44.9, 2100, 7200 }, + [23] = { 19.7, 44.7, 2100, 7200 }, + [24] = { 21.1, 44.2, 2100, 7200 }, + [25] = { 23, 42.9, 2100, 7200 }, + [26] = { 21.7, 41.2, 2100, 7200 }, + }, + ["lvl"] = "46-47", + }, + [13601] = { + ["coords"] = { + [1] = { 37.8, 75.5, 2100, 604800 }, + }, + ["lvl"] = "50", + ["rnk"] = "1", + }, + [13602] = { + ["coords"] = { + [1] = { 40.8, 67.8, 36, 180 }, + [2] = { 44.6, 7.7, 267, 180 }, + }, + ["lvl"] = "36", + ["rnk"] = "1", + }, + [13617] = { + ["coords"] = { + [1] = { 42.6, 16.8, 2597, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [13696] = { + ["coords"] = {}, + ["lvl"] = "45-46", + ["rnk"] = "1", + }, + [13697] = { + ["coords"] = { + [1] = { 32, 63.7, 405, 550 }, + [2] = { 50.1, 65.9, 2100, 550 }, + }, + ["fac"] = "AH", + ["lvl"] = "45", + ["rnk"] = "1", + }, + [13698] = { + ["coords"] = { + [1] = { 63.8, 10.7, 405, 30 }, + [2] = { 43, 82.5, 406, 30 }, + }, + ["lvl"] = "43", + }, + [13716] = { + ["coords"] = { + [1] = { 19.3, 33.6, 2100, 60 }, + }, + ["fac"] = "AH", + ["lvl"] = "49", + ["rnk"] = "1", + }, + [13718] = { + ["coords"] = { + [1] = { 28.1, 62.4, 405, 550 }, + [2] = { 29, 58.5, 2100, 550 }, + }, + ["lvl"] = "41", + ["rnk"] = "1", + }, + [13737] = { + ["coords"] = { + [1] = { 26.8, 77.9, 405, 300 }, + [2] = { 27.1, 77.6, 405, 300 }, + [3] = { 26.9, 77.6, 405, 300 }, + [4] = { 64.1, 10.4, 405, 300 }, + [5] = { 64, 10.1, 405, 300 }, + [6] = { 43.2, 82.3, 406, 300 }, + [7] = { 43.1, 82.1, 406, 300 }, + }, + ["lvl"] = "36", + }, + [13743] = { + ["coords"] = { + [1] = { 19.2, 34.1, 2100, 604800 }, + [2] = { 19.6, 33.7, 2100, 604800 }, + [3] = { 18.9, 33.6, 2100, 604800 }, + }, + ["lvl"] = "44", + }, + [13760] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "61", + }, + [13761] = { + ["coords"] = { + [1] = { 63.9, 56.8, 440, 180 }, + [2] = { 69.2, 52.3, 1941, 180 }, + }, + ["lvl"] = "61", + }, + [13776] = { + ["coords"] = { + [1] = { 65.6, 55.1, 36, 600 }, + [2] = { 50.5, 82.1, 2597, 3600 }, + }, + ["fac"] = "H", + ["lvl"] = "56-57", + }, + [13777] = { + ["coords"] = { + [1] = { 36.8, 77.2, 36, 600 }, + [2] = { 41, 16, 267, 600 }, + [3] = { 43.3, 16.8, 2597, 3600 }, + }, + ["fac"] = "A", + ["lvl"] = "58", + ["rnk"] = "1", + }, + [13797] = { + ["coords"] = { + [1] = { 45.6, 16.7, 2597, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "60-61", + ["rnk"] = "1", + }, + [13838] = "_", + [13840] = { + ["coords"] = { + [1] = { 62.3, 58.9, 36, 600 }, + [2] = { 49.8, 83.2, 2597, 3600 }, + }, + ["fac"] = "H", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [13841] = { + ["coords"] = { + [1] = { 39.5, 81.2, 36, 600 }, + [2] = { 43.4, 19.5, 267, 600 }, + [3] = { 43.6, 16.7, 2597, 3600 }, + }, + ["fac"] = "A", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [13843] = { + ["coords"] = { + [1] = { 32.2, 63.3, 1537, 490 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [13856] = "_", + [13857] = "_", + [13896] = { + ["coords"] = { + [1] = { 52.6, 47.4, 16, 27000 }, + }, + ["lvl"] = "52", + ["rnk"] = "2", + }, + [13936] = { + ["coords"] = { + [1] = { 79.8, 79.3, 36, 300 }, + [2] = { 78.6, 17.8, 267, 300 }, + }, + ["lvl"] = "1", + }, + [13956] = { + ["coords"] = { + [1] = { 41.3, 51, 2597, 900 }, + [2] = { 41.2, 50.7, 2597, 900 }, + [3] = { 40.3, 46.5, 2597, 900 }, + [4] = { 37.6, 46.2, 2597, 900 }, + [5] = { 44.8, 45.6, 2597, 900 }, + [6] = { 35.7, 45.3, 2597, 900 }, + [7] = { 41.6, 44, 2597, 900 }, + [8] = { 41.7, 43.4, 2597, 900 }, + [9] = { 41.1, 42.8, 2597, 900 }, + [10] = { 37.1, 42.1, 2597, 900 }, + [11] = { 44.5, 38.4, 2597, 900 }, + [12] = { 44.8, 37.6, 2597, 900 }, + }, + ["lvl"] = "58", + }, + [13957] = { + ["coords"] = { + [1] = { 44.1, 47.5, 2597, 900 }, + [2] = { 37.8, 47.3, 2597, 900 }, + [3] = { 37.6, 46.3, 2597, 900 }, + [4] = { 39, 45.1, 2597, 900 }, + [5] = { 45.8, 44.6, 2597, 900 }, + [6] = { 38.7, 44.5, 2597, 900 }, + [7] = { 37.3, 44, 2597, 900 }, + [8] = { 38.2, 43.7, 2597, 900 }, + [9] = { 38.7, 43.3, 2597, 900 }, + [10] = { 39.2, 43.2, 2597, 900 }, + [11] = { 38.5, 43.1, 2597, 900 }, + }, + ["lvl"] = "60", + }, + [13958] = { + ["coords"] = { + [1] = { 37.6, 47.1, 2597, 900 }, + [2] = { 38.2, 46.5, 2597, 900 }, + [3] = { 38.8, 45.8, 2597, 900 }, + [4] = { 44.7, 45.7, 2597, 900 }, + [5] = { 37.9, 44.4, 2597, 900 }, + [6] = { 38.6, 43.8, 2597, 900 }, + [7] = { 38.1, 43.1, 2597, 900 }, + [8] = { 35.8, 43, 2597, 900 }, + }, + ["lvl"] = "59", + }, + [13977] = "_", + [13996] = { + ["coords"] = { + [1] = { 39.7, 47.3, 2677, 604800 }, + [2] = { 38.9, 47.2, 2677, 604800 }, + [3] = { 34, 47, 2677, 604800 }, + [4] = { 38.7, 46.8, 2677, 604800 }, + [5] = { 34.1, 46.1, 2677, 604800 }, + [6] = { 27.3, 44.8, 2677, 604800 }, + [7] = { 26.5, 44.2, 2677, 604800 }, + [8] = { 25.9, 43.9, 2677, 604800 }, + [9] = { 25.5, 41.9, 2677, 604800 }, + [10] = { 24.7, 40.9, 2677, 604800 }, + [11] = { 24.5, 39.9, 2677, 604800 }, + [12] = { 14.9, 39.9, 2677, 604800 }, + [13] = { 15.4, 39.6, 2677, 604800 }, + [14] = { 16, 39.5, 2677, 604800 }, + [15] = { 14.5, 39.1, 2677, 604800 }, + [16] = { 23.8, 38.8, 2677, 604800 }, + [17] = { 43.3, 38.8, 2677, 604800 }, + [18] = { 17, 38.8, 2677, 604800 }, + [19] = { 43, 38.1, 2677, 604800 }, + [20] = { 23.5, 37.7, 2677, 604800 }, + [21] = { 17.5, 37.6, 2677, 604800 }, + [22] = { 42, 36.2, 2677, 604800 }, + [23] = { 41.4, 35.7, 2677, 604800 }, + [24] = { 41.2, 34.4, 2677, 604800 }, + [25] = { 40.5, 34.3, 2677, 604800 }, + [26] = { 12.1, 34.1, 2677, 604800 }, + [27] = { 11.8, 33.4, 2677, 604800 }, + [28] = { 39.8, 33.2, 2677, 604800 }, + [29] = { 39.6, 32.4, 2677, 604800 }, + [30] = { 35.1, 32.2, 2677, 604800 }, + [31] = { 37.3, 31.1, 2677, 604800 }, + [32] = { 39.2, 29.9, 2677, 604800 }, + [33] = { 7.2, 28, 2677, 604800 }, + [34] = { 8, 27.3, 2677, 604800 }, + [35] = { 8.6, 26.7, 2677, 604800 }, + [36] = { 31.3, 23.9, 2677, 604800 }, + [37] = { 5.3, 23.2, 2677, 604800 }, + [38] = { 16.6, 21.6, 2677, 604800 }, + [39] = { 5.3, 21.4, 2677, 604800 }, + [40] = { 32.7, 21.3, 2677, 604800 }, + [41] = { 17.4, 21.1, 2677, 604800 }, + [42] = { 18.1, 20.6, 2677, 604800 }, + [43] = { 4.4, 20.6, 2677, 604800 }, + [44] = { 20.3, 19.6, 2677, 604800 }, + [45] = { 34.1, 18.6, 2677, 604800 }, + [46] = { 21.2, 18.5, 2677, 604800 }, + [47] = { 3.2, 17.9, 2677, 604800 }, + [48] = { 21.8, 17.5, 2677, 604800 }, + [49] = { 4.1, 17.3, 2677, 604800 }, + [50] = { 23.6, 14, 2677, 604800 }, + [51] = { 24.5, 13.3, 2677, 604800 }, + [52] = { 10.2, 7.6, 2677, 604800 }, + [53] = { 10.1, 5.8, 2677, 604800 }, + [54] = { 13.5, 5.4, 2677, 604800 }, + [55] = { 11.2, 5, 2677, 604800 }, + [56] = { 14.5, 4.4, 2677, 604800 }, + [57] = { 14.9, 3, 2677, 604800 }, + [58] = { 17, 1.4, 2677, 604800 }, + [59] = { 18.1, 0.7, 2677, 604800 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14016] = "_", + [14017] = "_", + [14018] = "_", + [14019] = "_", + [14020] = { + ["coords"] = { + [1] = { 37, 36.4, 2677, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [14021] = { + ["coords"] = { + [1] = { 38.4, 42.5, 2597, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + ["rnk"] = "1", + }, + [14022] = { + ["coords"] = { + [1] = { 46.8, 96.1, 2677, 30 }, + [2] = { 45.1, 95.1, 2677, 30 }, + [3] = { 34.2, 94.8, 2677, 30 }, + [4] = { 34.3, 94.1, 2677, 30 }, + [5] = { 31.8, 89.8, 2677, 30 }, + [6] = { 40.9, 88, 2677, 30 }, + [7] = { 55.7, 86.5, 2677, 30 }, + [8] = { 50.6, 85.2, 2677, 30 }, + [9] = { 38.1, 82.1, 2677, 30 }, + [10] = { 33.1, 81.9, 2677, 30 }, + [11] = { 28.2, 80.8, 2677, 30 }, + [12] = { 31.1, 77.4, 2677, 30 }, + [13] = { 52.2, 76.9, 2677, 30 }, + [14] = { 44.6, 76.8, 2677, 30 }, + [15] = { 51.6, 76.7, 2677, 30 }, + [16] = { 34.2, 74.1, 2677, 30 }, + [17] = { 29.4, 73.4, 2677, 30 }, + [18] = { 24.3, 72.4, 2677, 30 }, + [19] = { 50.1, 71.1, 2677, 30 }, + [20] = { 46.4, 68.4, 2677, 30 }, + [21] = { 40.5, 67.9, 2677, 30 }, + [22] = { 41.1, 67.8, 2677, 30 }, + [23] = { 30.4, 67.3, 2677, 30 }, + [24] = { 47.2, 61.2, 2677, 30 }, + [25] = { 44, 60.5, 2677, 30 }, + [26] = { 43.5, 54.5, 2677, 30 }, + }, + ["lvl"] = "60", + }, + [14023] = { + ["coords"] = { + [1] = { 45.3, 95.8, 2677, 30 }, + [2] = { 44.5, 95.7, 2677, 30 }, + [3] = { 43.5, 95.5, 2677, 30 }, + [4] = { 34.9, 94.9, 2677, 30 }, + [5] = { 37, 91.3, 2677, 30 }, + [6] = { 31.3, 89.7, 2677, 30 }, + [7] = { 52.6, 89.6, 2677, 30 }, + [8] = { 40.7, 88.5, 2677, 30 }, + [9] = { 56.2, 86, 2677, 30 }, + [10] = { 30.3, 85.8, 2677, 30 }, + [11] = { 35.2, 85.7, 2677, 30 }, + [12] = { 29.7, 84.7, 2677, 30 }, + [13] = { 50.4, 84.5, 2677, 30 }, + [14] = { 38.3, 82.7, 2677, 30 }, + [15] = { 32.9, 82.7, 2677, 30 }, + [16] = { 27.9, 81.9, 2677, 30 }, + [17] = { 54.1, 80.9, 2677, 30 }, + [18] = { 48.4, 80.7, 2677, 30 }, + [19] = { 35.6, 78.5, 2677, 30 }, + [20] = { 31.4, 78, 2677, 30 }, + [21] = { 51.5, 77.7, 2677, 30 }, + [22] = { 26.4, 77.6, 2677, 30 }, + [23] = { 44.1, 75.9, 2677, 30 }, + [24] = { 33.9, 75.1, 2677, 30 }, + [25] = { 34.6, 74.8, 2677, 30 }, + [26] = { 29.7, 74.3, 2677, 30 }, + [27] = { 24.3, 73.7, 2677, 30 }, + [28] = { 47.1, 73.5, 2677, 30 }, + [29] = { 47.1, 72.7, 2677, 30 }, + [30] = { 32.4, 71.3, 2677, 30 }, + [31] = { 27.1, 70.5, 2677, 30 }, + [32] = { 27.7, 70.3, 2677, 30 }, + [33] = { 43.6, 70.1, 2677, 30 }, + [34] = { 45.9, 68.1, 2677, 30 }, + [35] = { 40.9, 67.9, 2677, 30 }, + [36] = { 30.9, 66.8, 2677, 30 }, + [37] = { 40.1, 64.5, 2677, 30 }, + [38] = { 43.4, 64.2, 2677, 30 }, + [39] = { 37.5, 61.4, 2677, 30 }, + [40] = { 47.4, 60.2, 2677, 30 }, + [41] = { 44.2, 59.9, 2677, 30 }, + [42] = { 44, 53.2, 2677, 30 }, + }, + ["lvl"] = "60", + }, + [14024] = { + ["coords"] = { + [1] = { 46.4, 96.3, 2677, 30 }, + [2] = { 43.1, 95.1, 2677, 30 }, + [3] = { 36.8, 91.7, 2677, 30 }, + [4] = { 51.8, 89.7, 2677, 30 }, + [5] = { 31.9, 88.9, 2677, 30 }, + [6] = { 40.4, 87.4, 2677, 30 }, + [7] = { 34.5, 86.5, 2677, 30 }, + [8] = { 55.4, 85.7, 2677, 30 }, + [9] = { 55.7, 85.2, 2677, 30 }, + [10] = { 30.4, 84.9, 2677, 30 }, + [11] = { 32.4, 82.2, 2677, 30 }, + [12] = { 54, 81.9, 2677, 30 }, + [13] = { 48.1, 81.7, 2677, 30 }, + [14] = { 27.5, 81.4, 2677, 30 }, + [15] = { 36.1, 79.5, 2677, 30 }, + [16] = { 36.1, 78.2, 2677, 30 }, + [17] = { 30.7, 78.1, 2677, 30 }, + [18] = { 52.1, 77.7, 2677, 30 }, + [19] = { 26, 76.6, 2677, 30 }, + [20] = { 26.7, 76.6, 2677, 30 }, + [21] = { 44.8, 75.6, 2677, 30 }, + [22] = { 29, 74.3, 2677, 30 }, + [23] = { 47.6, 73.5, 2677, 30 }, + [24] = { 23.6, 73.2, 2677, 30 }, + [25] = { 43.2, 71, 2677, 30 }, + [26] = { 32, 70.4, 2677, 30 }, + [27] = { 27, 69.6, 2677, 30 }, + [28] = { 46.5, 67.5, 2677, 30 }, + [29] = { 46, 67.4, 2677, 30 }, + [30] = { 43.7, 65, 2677, 30 }, + [31] = { 40.6, 63.8, 2677, 30 }, + [32] = { 37.1, 61.4, 2677, 30 }, + [33] = { 46.8, 60.8, 2677, 30 }, + [34] = { 43.1, 53.7, 2677, 30 }, + }, + ["lvl"] = "60", + }, + [14025] = { + ["coords"] = { + [1] = { 46.3, 97, 2677, 30 }, + [2] = { 43.2, 96.5, 2677, 30 }, + [3] = { 45, 96.2, 2677, 30 }, + [4] = { 34.8, 94.2, 2677, 30 }, + [5] = { 37.6, 91, 2677, 30 }, + [6] = { 52, 89, 2677, 30 }, + [7] = { 40.1, 88.1, 2677, 30 }, + [8] = { 35.2, 86.4, 2677, 30 }, + [9] = { 50.3, 85.8, 2677, 30 }, + [10] = { 29.8, 85.6, 2677, 30 }, + [11] = { 34.8, 85.5, 2677, 30 }, + [12] = { 50, 85.5, 2677, 30 }, + [13] = { 37.6, 82.5, 2677, 30 }, + [14] = { 53.5, 81.8, 2677, 30 }, + [15] = { 47.8, 80.6, 2677, 30 }, + [16] = { 35.5, 78.9, 2677, 30 }, + [17] = { 31, 78.6, 2677, 30 }, + [18] = { 25.9, 77.4, 2677, 30 }, + [19] = { 47.7, 72.9, 2677, 30 }, + [20] = { 31.9, 71.3, 2677, 30 }, + [21] = { 43.7, 70.9, 2677, 30 }, + [22] = { 32.5, 70.6, 2677, 30 }, + [23] = { 50.6, 70.3, 2677, 30 }, + [24] = { 49.8, 69.8, 2677, 30 }, + [25] = { 27.7, 69.5, 2677, 30 }, + [26] = { 40.6, 68.2, 2677, 30 }, + [27] = { 30.3, 66.2, 2677, 30 }, + [28] = { 43.3, 65.3, 2677, 30 }, + [29] = { 39.5, 63.6, 2677, 30 }, + [30] = { 36.9, 61.1, 2677, 30 }, + [31] = { 43.6, 60.4, 2677, 30 }, + [32] = { 46.9, 60.1, 2677, 30 }, + }, + ["lvl"] = "60", + }, + [14026] = { + ["coords"] = { + [1] = { 50.4, 31, 2597, 432000 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14027] = { + ["coords"] = { + [1] = { 45.4, 14.5, 2597, 432000 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14028] = { + ["coords"] = { + [1] = { 53.9, 27.1, 2597, 432000 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14029] = { + ["coords"] = { + [1] = { 48.4, 84.5, 2597, 432000 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14030] = { + ["coords"] = { + [1] = { 50.6, 65.6, 2597, 432000 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14031] = { + ["coords"] = { + [1] = { 50.4, 81.6, 2597, 432000 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14041] = { + ["coords"] = { + [1] = { 66.2, 54.8, 5144, 190 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [14042] = "_", + [14123] = { + ["coords"] = { + [1] = { 73.3, 43, 440, 300 }, + [2] = { 72.5, 42.3, 440, 300 }, + [3] = { 73, 42.3, 440, 300 }, + [4] = { 71.8, 41.2, 440, 300 }, + [5] = { 70.8, 41.1, 440, 300 }, + [6] = { 71.5, 39.9, 440, 300 }, + [7] = { 68.3, 39.7, 440, 300 }, + [8] = { 70.4, 39.3, 440, 300 }, + [9] = { 67.3, 39.2, 440, 300 }, + [10] = { 68.6, 39.1, 440, 300 }, + [11] = { 67.9, 38.6, 440, 300 }, + [12] = { 67.2, 38, 440, 300 }, + [13] = { 68.1, 37.8, 440, 300 }, + [14] = { 67.7, 37.2, 440, 300 }, + [15] = { 68.4, 37, 440, 300 }, + [16] = { 67.5, 36.2, 440, 300 }, + [17] = { 68.3, 35.8, 440, 300 }, + [18] = { 68.5, 35.3, 440, 300 }, + [19] = { 68.1, 34.3, 440, 300 }, + [20] = { 68.5, 33.5, 440, 300 }, + [21] = { 68.5, 32.7, 440, 300 }, + [22] = { 67.4, 30.3, 440, 300 }, + [23] = { 68.5, 30.1, 440, 300 }, + [24] = { 67.7, 29.5, 440, 300 }, + [25] = { 67.9, 29.1, 440, 300 }, + [26] = { 67.1, 28.7, 440, 300 }, + [27] = { 68.1, 28.6, 440, 300 }, + [28] = { 67.1, 28.3, 440, 300 }, + [29] = { 66.5, 27.6, 440, 300 }, + [30] = { 65, 25.1, 440, 300 }, + [31] = { 67.5, 24.9, 440, 300 }, + [32] = { 68.1, 23.8, 440, 300 }, + [33] = { 65.8, 22.2, 440, 300 }, + [34] = { 68.2, 21.8, 440, 300 }, + [35] = { 67.8, 21.5, 440, 300 }, + [36] = { 66.2, 20.8, 440, 300 }, + [37] = { 67.3, 20.2, 440, 300 }, + [38] = { 68.2, 19.6, 440, 300 }, + [39] = { 67.8, 19.6, 440, 300 }, + [40] = { 67, 18.9, 440, 300 }, + [41] = { 67.2, 18.2, 440, 300 }, + [42] = { 67.3, 17.9, 440, 300 }, + [43] = { 67.7, 17.4, 440, 300 }, + [44] = { 3, 30.6, 5121, 300 }, + [45] = { 1.3, 29.1, 5121, 300 }, + [46] = { 2.4, 29.1, 5121, 300 }, + }, + ["lvl"] = "42-43", + }, + [14141] = "_", + [14142] = "_", + [14143] = "_", + [14144] = "_", + [14145] = "_", + [14146] = "_", + [14147] = "_", + [14148] = "_", + [14161] = "_", + [14162] = "_", + [14181] = "_", + [14187] = { + ["coords"] = { + [1] = { 43.6, 15.5, 2597, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [14188] = { + ["coords"] = { + [1] = { 43.6, 15.5, 2597, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "59", + }, + [14201] = "_", + [14221] = { + ["coords"] = { + [1] = { 58.2, 42, 36, 27000 }, + }, + ["lvl"] = "36", + ["rnk"] = "4", + }, + [14222] = { + ["coords"] = { + [1] = { 39, 91.2, 36, 115200 }, + [2] = { 31, 86, 36, 115200 }, + [3] = { 30.2, 72.1, 36, 115200 }, + [4] = { 43, 28.3, 267, 115200 }, + [5] = { 36, 23.7, 267, 115200 }, + [6] = { 35.3, 11.5, 267, 115200 }, + }, + ["lvl"] = "35", + ["rnk"] = "4", + }, + [14223] = { + ["coords"] = { + [1] = { 14.5, 54.1, 36, 180000 }, + [2] = { 20.9, 48, 36, 180000 }, + [3] = { 27.7, 41.2, 36, 180000 }, + [4] = { 36.7, 21.3, 36, 180000 }, + [5] = { 73.1, 42, 130, 180000 }, + [6] = { 77.5, 38, 130, 180000 }, + [7] = { 82, 33.4, 130, 180000 }, + }, + ["lvl"] = "32", + ["rnk"] = "4", + }, + [14224] = { + ["coords"] = { + [1] = { 55.1, 83.6, 3, 180000 }, + }, + ["lvl"] = "41", + ["rnk"] = "4", + }, + [14225] = { + ["coords"] = { + [1] = { 78.9, 21.2, 405, 108000 }, + [2] = { 54.2, 90.4, 406, 108000 }, + }, + ["lvl"] = "33", + ["rnk"] = "4", + }, + [14226] = { + ["coords"] = { + [1] = { 51.2, 86.1, 405, 180000 }, + }, + ["lvl"] = "40", + ["rnk"] = "4", + }, + [14227] = { + ["coords"] = { + [1] = { 52.9, 50.1, 405, 54000 }, + }, + ["lvl"] = "37", + ["rnk"] = "4", + }, + [14228] = { + ["coords"] = { + [1] = { 61.3, 28.9, 405, 54000 }, + }, + ["lvl"] = "34", + ["rnk"] = "4", + }, + [14229] = { + ["coords"] = { + [1] = { 42.2, 19, 405, 108000 }, + }, + ["lvl"] = "38", + ["rnk"] = "4", + }, + [14230] = { + ["coords"] = { + [1] = { 62.6, 19, 15, 27000 }, + [2] = { 59, 9.4, 15, 27000 }, + [3] = { 66.1, 58.8, 17, 27000 }, + }, + ["lvl"] = "38", + ["rnk"] = "4", + }, + [14231] = { + ["coords"] = { + [1] = { 41, 21.9, 15, 27000 }, + [2] = { 38.8, 16.4, 15, 27000 }, + }, + ["lvl"] = "37", + ["rnk"] = "4", + }, + [14232] = { + ["coords"] = { + [1] = { 48.1, 16, 15, 27000 }, + }, + ["lvl"] = "38", + ["rnk"] = "4", + }, + [14233] = { + ["coords"] = { + [1] = { 49.2, 57.4, 15, 38000 }, + [2] = { 42, 55.3, 15, 38000 }, + }, + ["lvl"] = "39", + ["rnk"] = "4", + }, + [14235] = { + ["coords"] = { + [1] = { 52.9, 57.4, 15, 108000 }, + }, + ["lvl"] = "44", + ["rnk"] = "4", + }, + [14236] = { + ["coords"] = { + [1] = { 54.7, 63.4, 15, 108000 }, + }, + ["lvl"] = "44", + ["rnk"] = "4", + }, + [14237] = { + ["coords"] = { + [1] = { 36.9, 62.1, 15, 180000 }, + [2] = { 54.6, 86.1, 17, 180000 }, + }, + ["lvl"] = "42", + ["rnk"] = "4", + }, + [14242] = "_", + [14266] = { + ["coords"] = { + [1] = { 78.1, 52.4, 38, 19800 }, + [2] = { 38.5, 71.1, 5602, 19800 }, + }, + ["lvl"] = "25", + ["rnk"] = "4", + }, + [14267] = { + ["coords"] = { + [1] = { 69.7, 25.9, 38, 38000 }, + [2] = { 34.2, 57.5, 5602, 38000 }, + }, + ["lvl"] = "19", + ["rnk"] = "2", + }, + [14268] = { + ["coords"] = { + [1] = { 68.6, 76.4, 38, 14400 }, + [2] = { 33.7, 83.4, 5602, 14400 }, + }, + ["lvl"] = "16", + ["rnk"] = "4", + }, + [14269] = { + ["coords"] = { + [1] = { 60.1, 56.2, 44, 72000 }, + }, + ["lvl"] = "21", + ["rnk"] = "4", + }, + [14270] = { + ["coords"] = { + [1] = { 38.7, 56.3, 44, 9000 }, + }, + ["lvl"] = "19", + ["rnk"] = "4", + }, + [14271] = { + ["coords"] = { + [1] = { 16.1, 65.3, 44, 9000 }, + }, + ["lvl"] = "17", + ["rnk"] = "4", + }, + [14272] = { + ["coords"] = { + [1] = { 42.5, 31, 44, 9000 }, + }, + ["lvl"] = "18", + ["rnk"] = "4", + }, + [14273] = { + ["coords"] = { + [1] = { 88.9, 66.8, 44, 38000 }, + }, + ["lvl"] = "25", + ["rnk"] = "4", + }, + [14275] = { + ["coords"] = { + [1] = { 10.1, 50.2, 45, 27000 }, + [2] = { 71.8, 81.5, 267, 27000 }, + }, + ["fac"] = "A", + ["lvl"] = "28", + ["rnk"] = "2", + }, + [14276] = { + ["coords"] = { + [1] = { 29.1, 73.6, 267, 27000 }, + [2] = { 85, 33.2, 5179, 27000 }, + }, + ["lvl"] = "30", + ["rnk"] = "4", + }, + [14277] = { + ["coords"] = { + [1] = { 6.5, 55.8, 45, 27000 }, + [2] = { 67.7, 87.8, 267, 27000 }, + }, + ["lvl"] = "33", + ["rnk"] = "4", + }, + [14278] = { + ["coords"] = { + [1] = { 65.6, 60, 267, 27000 }, + }, + ["lvl"] = "28", + ["rnk"] = "4", + }, + [14279] = { + ["coords"] = { + [1] = { 38.6, 58.4, 267, 38000 }, + [2] = { 93.3, 19.9, 5179, 38000 }, + }, + ["lvl"] = "24", + ["rnk"] = "4", + }, + [14280] = { + ["coords"] = { + [1] = { 86, 39.9, 267, 54000 }, + }, + ["lvl"] = "27", + ["rnk"] = "4", + }, + [14281] = { + ["coords"] = { + [1] = { 47.5, 82.4, 36, 108000 }, + [2] = { 58.6, 69.3, 36, 108000 }, + [3] = { 50.4, 20.5, 267, 108000 }, + [4] = { 60.1, 9.1, 267, 108000 }, + }, + ["lvl"] = "23", + ["rnk"] = "4", + }, + [14282] = { + ["coords"] = { + [1] = { 49.3, 81.8, 2597, 120 }, + [2] = { 49.3, 81.7, 2597, 120 }, + [3] = { 55.4, 69.2, 2597, 120 }, + [4] = { 55.3, 69.1, 2597, 120 }, + [5] = { 51.7, 67.9, 2597, 120 }, + [6] = { 51.7, 67.8, 2597, 120 }, + [7] = { 56.8, 67.5, 2597, 120 }, + [8] = { 56.8, 67.4, 2597, 120 }, + [9] = { 50.1, 64.7, 2597, 120 }, + [10] = { 50.2, 64.7, 2597, 120 }, + [11] = { 48.5, 57.9, 2597, 120 }, + [12] = { 48.5, 57.8, 2597, 120 }, + [13] = { 46.8, 54.1, 2597, 120 }, + [14] = { 46.7, 54.1, 2597, 120 }, + [15] = { 44.1, 53.3, 2597, 120 }, + [16] = { 44, 53.3, 2597, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "53-54", + }, + [14283] = { + ["coords"] = { + [1] = { 49.7, 42.2, 2597, 120 }, + [2] = { 49.7, 42.1, 2597, 120 }, + [3] = { 48.7, 37.4, 2597, 120 }, + [4] = { 48.7, 37.2, 2597, 120 }, + [5] = { 51.3, 25.8, 2597, 120 }, + [6] = { 51.2, 25.8, 2597, 120 }, + [7] = { 53.7, 7.3, 2597, 120 }, + [8] = { 53.7, 7.2, 2597, 120 }, + [9] = { 54.1, 5.4, 2597, 120 }, + [10] = { 54.2, 5.3, 2597, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "53-54", + }, + [14284] = { + ["coords"] = { + [1] = { 39.2, 80.2, 36, 600 }, + [2] = { 39.2, 80.1, 36, 600 }, + [3] = { 36.9, 78, 36, 600 }, + [4] = { 37, 77.2, 36, 600 }, + [5] = { 36.9, 77.2, 36, 600 }, + [6] = { 36.1, 77, 36, 600 }, + [7] = { 36.5, 77, 36, 600 }, + [8] = { 36.2, 76.9, 36, 600 }, + [9] = { 36.5, 76.8, 36, 600 }, + [10] = { 34.6, 75.2, 36, 600 }, + [11] = { 34.7, 75.2, 36, 600 }, + [12] = { 34.4, 74.7, 36, 600 }, + [13] = { 34.5, 74.6, 36, 600 }, + [14] = { 43.1, 18.6, 267, 600 }, + [15] = { 43.2, 18.6, 267, 600 }, + [16] = { 41.1, 16.7, 267, 600 }, + [17] = { 41.3, 16, 267, 600 }, + [18] = { 41.1, 16, 267, 600 }, + [19] = { 40.5, 15.8, 267, 600 }, + [20] = { 40.8, 15.8, 267, 600 }, + [21] = { 40.6, 15.7, 267, 600 }, + [22] = { 40.8, 15.6, 267, 600 }, + [23] = { 39.1, 14.3, 267, 600 }, + [24] = { 39.2, 14.2, 267, 600 }, + [25] = { 39, 13.8, 267, 600 }, + [26] = { 39.1, 13.7, 267, 600 }, + [27] = { 53.5, 11.1, 2597, 430 }, + [28] = { 53.8, 11, 2597, 430 }, + [29] = { 53.5, 10.9, 2597, 430 }, + [30] = { 53.7, 10.9, 2597, 430 }, + [31] = { 53.7, 8.2, 2597, 430 }, + [32] = { 53.6, 8.1, 2597, 430 }, + [33] = { 54, 7.9, 2597, 430 }, + [34] = { 54, 7.7, 2597, 430 }, + [35] = { 53.9, 7.4, 2597, 430 }, + [36] = { 54, 7.3, 2597, 600 }, + [37] = { 53.7, 7.3, 2597, 430 }, + [38] = { 53.8, 7.1, 2597, 600 }, + [39] = { 53.8, 7.1, 2597, 430 }, + [40] = { 54.1, 5.3, 2597, 430 }, + [41] = { 54, 5.3, 2597, 430 }, + [42] = { 53.9, 5.2, 2597, 430 }, + [43] = { 54.1, 4.9, 2597, 430 }, + [44] = { 54, 4.8, 2597, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [14285] = { + ["coords"] = { + [1] = { 64, 59, 36, 600 }, + [2] = { 63.9, 58.9, 36, 600 }, + [3] = { 65.5, 54.8, 36, 600 }, + [4] = { 65.6, 54.7, 36, 600 }, + [5] = { 65.5, 54.1, 36, 600 }, + [6] = { 65.5, 54, 36, 600 }, + [7] = { 66.6, 51.9, 36, 600 }, + [8] = { 66.6, 51.7, 36, 600 }, + [9] = { 66.9, 51.5, 36, 600 }, + [10] = { 66.9, 51.4, 36, 600 }, + [11] = { 54.7, 70, 2597, 430 }, + [12] = { 54.8, 69.9, 2597, 430 }, + [13] = { 54.6, 69.6, 2597, 430 }, + [14] = { 54.7, 69.5, 2597, 430 }, + [15] = { 55.4, 69.1, 2597, 430 }, + [16] = { 56.6, 68.2, 2597, 430 }, + [17] = { 56.7, 68, 2597, 430 }, + [18] = { 56.3, 68, 2597, 430 }, + [19] = { 56.3, 67.8, 2597, 430 }, + [20] = { 56.8, 67.5, 2597, 430 }, + [21] = { 57.5, 67.1, 2597, 600 }, + [22] = { 57.6, 67.1, 2597, 430 }, + [23] = { 58.1, 67, 2597, 600 }, + [24] = { 58.1, 66.8, 2597, 600 }, + [25] = { 58, 66.7, 2597, 600 }, + [26] = { 58, 66.5, 2597, 600 }, + [27] = { 58, 66.2, 2597, 430 }, + [28] = { 58, 66, 2597, 600 }, + [29] = { 58.2, 65.9, 2597, 600 }, + [30] = { 58.2, 65.8, 2597, 430 }, + [31] = { 58.6, 64.4, 2597, 430 }, + [32] = { 58.6, 64.3, 2597, 430 }, + [33] = { 58.5, 64.1, 2597, 430 }, + }, + ["fac"] = "H", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [14321] = { + ["coords"] = { + [1] = { 42.8, 78.3, 2557, 604800 }, + }, + ["lvl"] = "59", + ["rnk"] = "1", + }, + [14322] = { + ["coords"] = { + [1] = { 61.8, 65.4, 2557, 604800 }, + }, + ["lvl"] = "59", + ["rnk"] = "1", + }, + [14323] = { + ["coords"] = { + [1] = { 26.5, 57.7, 2557, 604800 }, + }, + ["lvl"] = "59", + ["rnk"] = "1", + }, + [14324] = { + ["coords"] = { + [1] = { 31.3, 25.3, 2557, 604800 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14325] = { + ["coords"] = { + [1] = { 31.8, 49.7, 2557, 604800 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [14326] = { + ["coords"] = { + [1] = { 70.3, 76.9, 2557, 604800 }, + }, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [14338] = { + ["coords"] = { + [1] = { 28.5, 56, 2557, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [14339] = { + ["coords"] = { + [1] = { 50, 77.1, 361, 108000 }, + [2] = { 4.8, 90.9, 616, 108000 }, + }, + ["lvl"] = "49", + ["rnk"] = "4", + }, + [14340] = { + ["coords"] = { + [1] = { 39.1, 16.8, 331, 27000 }, + [2] = { 38.2, 81, 361, 27000 }, + }, + ["lvl"] = "54", + ["rnk"] = "4", + }, + [14341] = "_", + [14342] = { + ["coords"] = { + [1] = { 47.7, 93.1, 361, 27000 }, + }, + ["lvl"] = "51", + ["rnk"] = "4", + }, + [14343] = { + ["coords"] = { + [1] = { 50.2, 32.8, 361, 108000 }, + [2] = { 5.1, 11.6, 616, 108000 }, + }, + ["lvl"] = "52", + ["rnk"] = "4", + }, + [14344] = { + ["coords"] = { + [1] = { 42.1, 75.2, 361, 180000 }, + }, + ["lvl"] = "50", + ["rnk"] = "4", + }, + [14345] = { + ["coords"] = { + [1] = { 42.2, 49.9, 361, 180000 }, + }, + ["lvl"] = "51", + ["rnk"] = "4", + }, + [14346] = "_", + [14348] = { + ["coords"] = { + [1] = { 95.7, 87.3, 616, 600 }, + [2] = { 54, 90.4, 618, 600 }, + }, + ["fac"] = "AH", + ["lvl"] = "62", + ["rnk"] = "1", + }, + [14352] = "_", + [14356] = { + ["coords"] = { + [1] = { 73.2, 60.5, 8, 300 }, + [2] = { 69.6, 60, 8, 300 }, + [3] = { 66.6, 57.3, 8, 300 }, + [4] = { 73.8, 56.3, 8, 300 }, + [5] = { 66.4, 52.4, 8, 300 }, + [6] = { 74.1, 51.9, 8, 300 }, + [7] = { 72.5, 47.5, 8, 300 }, + [8] = { 68.5, 45.9, 8, 300 }, + }, + ["lvl"] = "38-40", + }, + [14363] = { + ["coords"] = { + [1] = { 24.8, 43.6, 1537, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14364] = { + ["coords"] = {}, + ["lvl"] = "56", + ["rnk"] = "1", + }, + [14373] = { + ["coords"] = { + [1] = { 74.4, 44, 357, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "59", + }, + [14386] = { + ["coords"] = { + [1] = { 23.2, 68, 2557, 600 }, + [2] = { 23.3, 61.5, 2557, 600 }, + }, + ["lvl"] = "60", + }, + [14387] = { + ["coords"] = { + [1] = { 39.2, 38.6, 25, 900 }, + [2] = { 26.4, 24.5, 46, 900 }, + [3] = { 32.1, 94.7, 51, 900 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14388] = { + ["coords"] = { + [1] = { 7.9, 60.7, 46, 5 }, + [2] = { 7.4, 60.1, 46, 5 }, + [3] = { 10.6, 59.1, 46, 5 }, + [4] = { 9.3, 57.3, 46, 5 }, + [5] = { 85.1, 87.6, 5581, 5 }, + [6] = { 84.6, 87.1, 5581, 5 }, + [7] = { 87.5, 86.1, 5581, 5 }, + [8] = { 86.3, 84.5, 5581, 5 }, + }, + ["lvl"] = "50-52", + ["rnk"] = "1", + }, + [14390] = { + ["coords"] = { + [1] = { 7.4, 61.8, 46, 5 }, + [2] = { 7.4, 59.3, 46, 5 }, + [3] = { 11.2, 58.6, 46, 5 }, + [4] = { 9.9, 57.2, 46, 5 }, + [5] = { 84.6, 88.6, 5581, 5 }, + [6] = { 84.6, 86.3, 5581, 5 }, + [7] = { 88, 85.7, 5581, 5 }, + [8] = { 86.9, 84.4, 5581, 5 }, + }, + ["fac"] = "A", + ["lvl"] = "36-40", + ["rnk"] = "1", + }, + [14391] = "_", + [14393] = { + ["coords"] = { + [1] = { 7.2, 61.6, 46, 5 }, + [2] = { 7.7, 58.9, 46, 5 }, + [3] = { 11.5, 58, 46, 5 }, + [4] = { 10.3, 56.8, 46, 5 }, + [5] = { 84.4, 88.4, 5581, 5 }, + [6] = { 84.9, 86, 5581, 5 }, + [7] = { 88.3, 85.2, 5581, 5 }, + [8] = { 87.2, 84, 5581, 5 }, + }, + ["fac"] = "A", + ["lvl"] = "37-42", + ["rnk"] = "1", + }, + [14394] = { + ["coords"] = { + [1] = { 67.2, 85.5, 1519, 490 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14395] = { + ["coords"] = { + [1] = { 62, 30.1, 357, 300 }, + [2] = { 66.4, 41.6, 2557, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "57-58", + }, + [14399] = { + ["coords"] = {}, + ["lvl"] = "58-60", + ["rnk"] = "1", + }, + [14400] = { + ["coords"] = {}, + ["lvl"] = "56-60", + ["rnk"] = "1", + }, + [14401] = { + ["coords"] = { + [1] = { 24.5, 1.3, 2677, 86400 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14406] = "_", + [14423] = { + ["coords"] = { + [1] = { 67.8, 72.3, 1519, 350 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14424] = { + ["coords"] = { + [1] = { 22.3, 22, 11, 38000 }, + }, + ["lvl"] = "25", + ["rnk"] = "4", + }, + [14425] = { + ["coords"] = { + [1] = { 30.1, 30.7, 11, 72000 }, + }, + ["lvl"] = "25", + ["rnk"] = "4", + }, + [14426] = { + ["coords"] = { + [1] = { 46.3, 96.8, 17, 27000 }, + [2] = { 37.1, 32.8, 400, 27000 }, + }, + ["lvl"] = "27", + ["rnk"] = "4", + }, + [14427] = { + ["coords"] = { + [1] = { 55.6, 50.4, 400, 54000 }, + }, + ["lvl"] = "28", + ["rnk"] = "4", + }, + [14428] = { + ["coords"] = { + [1] = { 67.1, 58.6, 141, 9000 }, + }, + ["lvl"] = "7", + ["rnk"] = "4", + }, + [14429] = { + ["coords"] = { + [1] = { 42.5, 79.5, 141, 9000 }, + }, + ["lvl"] = "11", + ["rnk"] = "4", + }, + [14430] = { + ["coords"] = { + [1] = { 58.1, 76.6, 141, 9000 }, + }, + ["lvl"] = "9", + ["rnk"] = "4", + }, + [14431] = { + ["coords"] = { + [1] = { 34.8, 34.9, 141, 9000 }, + }, + ["lvl"] = "8", + ["rnk"] = "4", + }, + [14432] = { + ["coords"] = { + [1] = { 51.4, 50.6, 141, 9000 }, + }, + ["lvl"] = "6", + ["rnk"] = "4", + }, + [14433] = { + ["coords"] = { + [1] = { 12.6, 67.5, 11, 108000 }, + }, + ["lvl"] = "30", + ["rnk"] = "4", + }, + [14436] = { + ["coords"] = { + [1] = { 12.7, 31.6, 46, 500 }, + [2] = { 89.4, 61.3, 5581, 500 }, + }, + ["fac"] = "AH", + ["lvl"] = "61", + }, + [14437] = { + ["coords"] = { + [1] = { 12.4, 31.6, 46, 500 }, + [2] = { 89.1, 61.3, 5581, 500 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [14438] = { + ["coords"] = { + [1] = { 42.5, 65.3, 1519, 350 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14439] = { + ["coords"] = { + [1] = { 70.5, 53.7, 1519, 350 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14444] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "4", + }, + [14445] = { + ["coords"] = { + [1] = { 68.9, 38.9, 8, 27000 }, + }, + ["lvl"] = "45", + ["rnk"] = "2", + }, + [14446] = { + ["coords"] = { + [1] = { 71.4, 15, 4, 54000 }, + [2] = { 61.4, 83.7, 8, 54000 }, + }, + ["lvl"] = "43", + ["rnk"] = "4", + }, + [14447] = { + ["coords"] = { + [1] = { 95.9, 64.4, 8, 108000 }, + }, + ["lvl"] = "43", + ["rnk"] = "4", + }, + [14448] = { + ["coords"] = { + [1] = { 23.3, 49.2, 8, 108000 }, + }, + ["lvl"] = "42", + ["rnk"] = "4", + }, + [14450] = { + ["coords"] = { + [1] = { 56.3, 54, 1519, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [14456] = { + ["coords"] = { + [1] = { 35.5, 68.8, 2677, 604800 }, + [2] = { 34.5, 66.6, 2677, 604800 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [14467] = { + ["coords"] = { + [1] = { 45.7, 34.7, 361, 0 }, + }, + ["lvl"] = "55", + ["rnk"] = "1", + }, + [14471] = { + ["coords"] = { + [1] = { 29.6, 86.6, 1377, 252000 }, + }, + ["lvl"] = "61", + ["rnk"] = "2", + }, + [14472] = { + ["coords"] = { + [1] = { 39.3, 55.4, 1377, 180000 }, + }, + ["lvl"] = "57", + ["rnk"] = "4", + }, + [14473] = { + ["coords"] = { + [1] = { 63, 93.8, 1377, 180000 }, + [2] = { 86.7, 4.5, 3478, 180000 }, + }, + ["lvl"] = "60", + ["rnk"] = "2", + }, + [14474] = { + ["coords"] = { + [1] = { 23.6, 61.1, 1377, 108000 }, + }, + ["lvl"] = "59", + ["rnk"] = "2", + }, + [14475] = { + ["coords"] = { + [1] = { 45.7, 28.9, 1377, 108000 }, + }, + ["lvl"] = "57", + ["rnk"] = "2", + }, + [14476] = { + ["coords"] = { + [1] = { 63.2, 16.7, 1377, 54000 }, + }, + ["lvl"] = "56", + ["rnk"] = "4", + }, + [14478] = { + ["coords"] = { + [1] = { 21.9, 16.7, 1377, 27000 }, + }, + ["lvl"] = "58", + ["rnk"] = "4", + }, + [14479] = { + ["coords"] = { + [1] = { 18.2, 85.8, 1377, 27000 }, + }, + ["lvl"] = "60", + ["rnk"] = "4", + }, + [14480] = { + ["coords"] = { + [1] = { 50.7, 65.8, 1637, 25 }, + }, + ["fac"] = "H", + ["lvl"] = "10", + }, + [14481] = { + ["coords"] = { + [1] = { 62.2, 68.4, 1519, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [14482] = { + ["coords"] = {}, + ["lvl"] = "58-60", + }, + [14487] = { + ["coords"] = { + [1] = { 33.3, 22.5, 33, 54000 }, + }, + ["lvl"] = "37", + ["rnk"] = "4", + }, + [14488] = { + ["coords"] = { + [1] = { 37.4, 31.2, 33, 108000 }, + }, + ["lvl"] = "38", + ["rnk"] = "4", + }, + [14490] = { + ["coords"] = { + [1] = { 27.2, 57.1, 33, 180000 }, + }, + ["lvl"] = "44", + ["rnk"] = "4", + }, + [14491] = { + ["coords"] = { + [1] = { 35.4, 56.6, 33, 180000 }, + }, + ["lvl"] = "42", + ["rnk"] = "4", + }, + [14492] = { + ["coords"] = { + [1] = { 36.5, 57.1, 33, 108000 }, + }, + ["lvl"] = "42", + ["rnk"] = "4", + }, + [14494] = { + ["coords"] = { + [1] = { 20.9, 18.4, 139, 900 }, + [2] = { 64.6, 79, 5225, 900 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14496] = { + ["coords"] = { + [1] = { 55.9, 54.1, 1519, 270 }, + [2] = { 57.1, 53.7, 1519, 270 }, + [3] = { 56.6, 53.5, 1519, 270 }, + [4] = { 56.7, 53.4, 1519, 270 }, + [5] = { 56.4, 52.4, 1519, 270 }, + }, + ["fac"] = "A", + ["lvl"] = "1-3", + }, + [14497] = { + ["coords"] = { + [1] = { 57, 52.5, 1519, 285 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [14507] = { + ["coords"] = { + [1] = { 51.7, 56.9, 1977, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [14510] = { + ["coords"] = { + [1] = { 45.5, 77.9, 1977, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [14511] = { + ["coords"] = { + [1] = { 21, 80.8, 2057, 0 }, + [2] = { 24.6, 78.4, 2057, 0 }, + [3] = { 28.8, 81.2, 2057, 0 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14512] = { + ["coords"] = { + [1] = { 21, 80.8, 2057, 0 }, + [2] = { 24.6, 78.4, 2057, 0 }, + }, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [14513] = { + ["coords"] = { + [1] = { 21, 80.8, 2057, 0 }, + [2] = { 24.6, 78.4, 2057, 0 }, + }, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [14514] = { + ["coords"] = { + [1] = { 21, 80.8, 2057, 0 }, + [2] = { 24.6, 78.4, 2057, 0 }, + }, + ["lvl"] = "59-60", + }, + [14515] = { + ["coords"] = { + [1] = { 47.9, 22.3, 1977, 0 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [14516] = { + ["coords"] = { + [1] = { 30.1, 85.4, 2057, 0 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [14517] = { + ["coords"] = { + [1] = { 36.3, 75.3, 1977, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [14518] = { + ["coords"] = { + [1] = { 28.8, 81.2, 2057, 0 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14519] = { + ["coords"] = { + [1] = { 28.8, 81.2, 2057, 0 }, + }, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [14520] = { + ["coords"] = { + [1] = { 28.8, 81.2, 2057, 0 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14521] = { + ["coords"] = { + [1] = { 28.8, 81.2, 2057, 0 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14527] = { + ["coords"] = { + [1] = { 31.5, 47.4, 490, 900 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14529] = { + ["coords"] = { + [1] = { 24.6, 69.1, 46, 900 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14531] = { + ["coords"] = { + [1] = { 60.3, 13.2, 618, 900 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14532] = { + ["coords"] = { + [1] = { 49.5, 81.6, 1977, 7200 }, + [2] = { 47.4, 81.6, 1977, 7200 }, + [3] = { 47.1, 81.4, 1977, 7200 }, + [4] = { 49.3, 81.1, 1977, 7200 }, + [5] = { 49.7, 80.6, 1977, 7200 }, + [6] = { 49.5, 80.6, 1977, 7200 }, + [7] = { 50, 80.6, 1977, 7200 }, + [8] = { 47.8, 80.4, 1977, 7200 }, + [9] = { 49.8, 80.3, 1977, 7200 }, + [10] = { 47, 79.9, 1977, 7200 }, + [11] = { 49.8, 79.9, 1977, 7200 }, + [12] = { 47.4, 79.8, 1977, 7200 }, + [13] = { 46.9, 79.7, 1977, 7200 }, + [14] = { 50.6, 79.5, 1977, 7200 }, + [15] = { 46.7, 79.3, 1977, 7200 }, + [16] = { 46.3, 78.7, 1977, 7200 }, + [17] = { 50.6, 76.8, 1977, 7200 }, + [18] = { 50.9, 76.1, 1977, 7200 }, + [19] = { 50.3, 75.9, 1977, 7200 }, + [20] = { 47.9, 75.7, 1977, 7200 }, + [21] = { 50.5, 75.6, 1977, 7200 }, + [22] = { 48.6, 75.6, 1977, 7200 }, + [23] = { 47.7, 75.5, 1977, 7200 }, + [24] = { 50.5, 75.4, 1977, 7200 }, + [25] = { 48, 75.3, 1977, 7200 }, + [26] = { 48.6, 75.3, 1977, 7200 }, + [27] = { 48.3, 75.1, 1977, 7200 }, + [28] = { 48.9, 74.1, 1977, 7200 }, + [29] = { 48.7, 73.6, 1977, 7200 }, + [30] = { 40, 30.4, 1977, 7200 }, + [31] = { 39.5, 30.3, 1977, 7200 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14536] = { + ["coords"] = { + [1] = { 24.7, 76, 1377, 900 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14555] = { + ["coords"] = { + [1] = { 31, 62.2, 141, 120 }, + [2] = { 25.3, 50.2, 141, 300 }, + [3] = { 66.2, 73.4, 1657, 120 }, + [4] = { 38.8, 15.8, 1657, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [14560] = { + ["coords"] = { + [1] = { 84.9, 64.7, 12, 180 }, + [2] = { 65.3, 51.9, 15, 360 }, + [3] = { 52.3, 55.1, 267, 300 }, + [4] = { 63, 72.4, 5581, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [14599] = { + ["coords"] = { + [1] = { 65.4, 33.6, 1977, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [14604] = { + ["coords"] = {}, + ["lvl"] = "48", + }, + [14621] = { + ["coords"] = { + [1] = { 40.8, 35.9, 51, 500 }, + }, + ["lvl"] = "50", + ["rnk"] = "1", + }, + [14640] = { + ["coords"] = {}, + ["lvl"] = "49", + }, + [14641] = "_", + [14642] = "_", + [14643] = "_", + [14644] = "_", + [14646] = { + ["coords"] = { + [1] = { 35.5, 86.6, 2017, 18000 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [14682] = { + ["coords"] = { + [1] = { 34.9, 64.6, 209, 604800 }, + }, + ["lvl"] = "25", + ["rnk"] = "1", + }, + [14683] = "_", + [14684] = { + ["coords"] = { + [1] = { 70.9, 54.5, 2017, 604800 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14685] = "_", + [14686] = { + ["coords"] = { + [1] = { 65.3, 16.9, 722, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "40", + ["rnk"] = "1", + }, + [14687] = "_", + [14688] = "_", + [14689] = "_", + [14691] = "_", + [14692] = "_", + [14693] = { + ["coords"] = { + [1] = { 55.6, 56.2, 5136, 0 }, + }, + ["lvl"] = "34", + ["rnk"] = "1", + }, + [14694] = "_", + [14695] = { + ["coords"] = { + [1] = { 31.4, 55.1, 2057, 604800 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14696] = "_", + [14698] = "_", + [14699] = "_", + [14700] = "_", + [14701] = "_", + [14702] = "_", + [14703] = "_", + [14704] = "_", + [14705] = "_", + [14706] = "_", + [14707] = "_", + [14708] = "_", + [14709] = "_", + [14710] = "_", + [14711] = "_", + [14712] = "_", + [14713] = "_", + [14714] = "_", + [14719] = "_", + [14720] = { + ["coords"] = { + [1] = { 46, 6.9, 14, 600 }, + [2] = { 51, 75.7, 1637, 600 }, + }, + ["fac"] = "H", + ["lvl"] = "62", + ["rnk"] = "1", + }, + [14721] = { + ["coords"] = { + [1] = { 71.5, 80.5, 1519, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "62", + ["rnk"] = "1", + }, + [14722] = { + ["coords"] = { + [1] = { 53.9, 81.7, 1519, 325 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [14728] = { + ["coords"] = { + [1] = { 38.6, 25.5, 215, 250 }, + [2] = { 43.1, 42.7, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [14730] = { + ["coords"] = { + [1] = { 41.5, 8.7, 14, 25 }, + [2] = { 81.7, 82.2, 47, 350 }, + [3] = { 76.9, 82.2, 47, 350 }, + [4] = { 77.4, 82.1, 47, 350 }, + [5] = { 78.5, 81.9, 47, 350 }, + [6] = { 81, 81.8, 47, 350 }, + [7] = { 80.9, 81.8, 47, 350 }, + [8] = { 76.6, 81.4, 47, 350 }, + [9] = { 79.7, 81.2, 47, 350 }, + [10] = { 77.8, 80.8, 47, 350 }, + [11] = { 79.9, 80.7, 47, 350 }, + [12] = { 78.8, 80.4, 47, 350 }, + [13] = { 78.7, 80.3, 47, 350 }, + [14] = { 78.2, 79.9, 47, 350 }, + [15] = { 76.6, 79.6, 47, 350 }, + [16] = { 78.3, 79.5, 47, 350 }, + [17] = { 79.8, 79.5, 47, 350 }, + [18] = { 80.1, 79.3, 47, 350 }, + [19] = { 76.3, 79.1, 47, 350 }, + [20] = { 78.6, 79, 47, 350 }, + [21] = { 78.9, 77.4, 47, 350 }, + [22] = { 76.6, 77.3, 47, 350 }, + [23] = { 77.2, 77.2, 47, 350 }, + [24] = { 25.1, 16, 406, 25 }, + [25] = { 24.9, 16, 406, 25 }, + [26] = { 26.4, 14.6, 406, 25 }, + [27] = { 26.8, 14.3, 406, 25 }, + [28] = { 25, 14.1, 406, 25 }, + [29] = { 26.8, 14, 406, 25 }, + [30] = { 25, 13.9, 406, 25 }, + [31] = { 26.5, 13.8, 406, 25 }, + [32] = { 24.6, 13.5, 406, 25 }, + [33] = { 24.5, 13.1, 406, 25 }, + [34] = { 23.8, 13, 406, 25 }, + [35] = { 24.8, 12.6, 406, 25 }, + [36] = { 25.1, 12.5, 406, 25 }, + [37] = { 25.1, 12.4, 406, 25 }, + [38] = { 24.5, 12.2, 406, 25 }, + [39] = { 24.7, 12, 406, 25 }, + [40] = { 25, 11.9, 406, 25 }, + [41] = { 24.4, 11.9, 406, 25 }, + [42] = { 23.8, 9.4, 406, 25 }, + [43] = { 26, 7.3, 406, 25 }, + [44] = { 34.1, 82.7, 1637, 25 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [14731] = { + ["coords"] = { + [1] = { 78.1, 81.4, 47, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "48", + }, + [14734] = { + ["coords"] = { + [1] = { 79.5, 79.1, 47, 350 }, + [2] = { 79.4, 79, 47, 350 }, + [3] = { 79.4, 78.9, 47, 350 }, + [4] = { 24.7, 13.6, 406, 25 }, + [5] = { 24.6, 12.8, 406, 25 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [14735] = "_", + [14737] = { + ["coords"] = { + [1] = { 77.5, 80.4, 47, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "47", + }, + [14738] = { + ["coords"] = { + [1] = { 79.4, 79.1, 47, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "48", + }, + [14739] = { + ["coords"] = { + [1] = { 78.8, 78.2, 47, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "48", + }, + [14740] = { + ["coords"] = { + [1] = { 80.3, 81.5, 47, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "42", + }, + [14741] = { + ["coords"] = { + [1] = { 79.2, 79.5, 47, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [14746] = "_", + [14750] = { + ["coords"] = { + [1] = { 39.2, 74.7, 1977, 7200 }, + [2] = { 39.2, 74.4, 1977, 7200 }, + [3] = { 38.2, 72.1, 1977, 7200 }, + [4] = { 37.8, 71.6, 1977, 7200 }, + [5] = { 40.8, 70.4, 1977, 7200 }, + [6] = { 41.1, 70, 1977, 7200 }, + [7] = { 40.3, 66.8, 1977, 7200 }, + [8] = { 41.1, 65.6, 1977, 7200 }, + [9] = { 41.2, 65.5, 1977, 7200 }, + [10] = { 39.2, 58.7, 1977, 7200 }, + [11] = { 40.8, 53.4, 1977, 7200 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [14757] = { + ["coords"] = { + [1] = { 83.5, 16.6, 45, 30 }, + [2] = { 59.7, 77.8, 47, 30 }, + }, + ["fac"] = "H", + ["lvl"] = "48", + }, + [14758] = { + ["coords"] = { + [1] = { 48.1, 80.5, 1977, 7200 }, + [2] = { 35.9, 75.7, 1977, 7200 }, + [3] = { 64.7, 66.9, 1977, 7200 }, + [4] = { 47.5, 39.9, 1977, 7200 }, + [5] = { 48, 24.3, 1977, 7200 }, + [6] = { 44.4, 19.9, 1977, 7200 }, + }, + ["lvl"] = "60", + }, + [14762] = { + ["coords"] = { + [1] = { 42.4, 12.8, 2597, 432000 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14763] = { + ["coords"] = { + [1] = { 42.2, 12.9, 2597, 432000 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14764] = { + ["coords"] = { + [1] = { 42.1, 13.1, 2597, 432000 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14765] = { + ["coords"] = { + [1] = { 42.5, 12.9, 2597, 432000 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14772] = { + ["coords"] = { + [1] = { 47.2, 86.8, 2597, 432000 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14773] = { + ["coords"] = { + [1] = { 47.4, 87.1, 2597, 432000 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14774] = { + ["coords"] = { + [1] = { 47.3, 87.1, 2597, 432000 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14775] = { + ["coords"] = { + [1] = { 47.5, 87.1, 2597, 432000 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14776] = { + ["coords"] = { + [1] = { 47.2, 86.7, 2597, 432000 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14777] = { + ["coords"] = { + [1] = { 47.3, 87.1, 2597, 432000 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14801] = "_", + [14821] = { + ["coords"] = { + [1] = { 57.4, 83.2, 1977, 7200 }, + [2] = { 57.8, 83.2, 1977, 7200 }, + [3] = { 61.1, 82.7, 1977, 7200 }, + [4] = { 57.8, 82.4, 1977, 7200 }, + [5] = { 60.7, 81.9, 1977, 7200 }, + [6] = { 57.5, 80.9, 1977, 7200 }, + [7] = { 62.2, 80.8, 1977, 7200 }, + [8] = { 56.8, 80.5, 1977, 7200 }, + [9] = { 59.5, 80.4, 1977, 7200 }, + [10] = { 62.5, 80.1, 1977, 7200 }, + [11] = { 62.1, 79.5, 1977, 7200 }, + [12] = { 58.4, 75.9, 1977, 7200 }, + [13] = { 60.7, 72.5, 1977, 7200 }, + [14] = { 61.1, 72.4, 1977, 7200 }, + [15] = { 60.8, 72.2, 1977, 7200 }, + [16] = { 61.3, 72, 1977, 7200 }, + [17] = { 60.5, 71.9, 1977, 7200 }, + [18] = { 60.8, 71.7, 1977, 7200 }, + [19] = { 60.6, 68.4, 1977, 7200 }, + [20] = { 60.9, 67.9, 1977, 7200 }, + [21] = { 60.4, 67.9, 1977, 7200 }, + [22] = { 60.6, 67.5, 1977, 7200 }, + [23] = { 61, 67.5, 1977, 7200 }, + [24] = { 60.7, 67, 1977, 7200 }, + [25] = { 63.2, 66.1, 1977, 7200 }, + [26] = { 63.6, 65.9, 1977, 7200 }, + [27] = { 62.8, 65.8, 1977, 7200 }, + [28] = { 63.9, 65.7, 1977, 7200 }, + [29] = { 63, 65.7, 1977, 7200 }, + [30] = { 62.7, 65.2, 1977, 7200 }, + [31] = { 43.8, 30.6, 1977, 7200 }, + [32] = { 41.5, 21.6, 1977, 7200 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14823] = { + ["coords"] = { + [1] = { 41.9, 69.8, 12, 180 }, + [2] = { 37.1, 38, 215, 420 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [14824] = "_", + [14825] = { + ["coords"] = { + [1] = { 34.1, 28.5, 1977, 7200 }, + [2] = { 34.2, 28.4, 1977, 7200 }, + [3] = { 31.5, 27.8, 1977, 7200 }, + [4] = { 31.5, 27.6, 1977, 7200 }, + [5] = { 31.5, 27.5, 1977, 7200 }, + [6] = { 31.4, 27.4, 1977, 7200 }, + [7] = { 29.1, 26.9, 1977, 7200 }, + [8] = { 29.1, 26.7, 1977, 7200 }, + [9] = { 29, 26.6, 1977, 7200 }, + [10] = { 28.9, 26.5, 1977, 7200 }, + [11] = { 32.1, 25.1, 1977, 7200 }, + [12] = { 32.2, 24.9, 1977, 7200 }, + [13] = { 32, 24.9, 1977, 7200 }, + [14] = { 32.1, 24.7, 1977, 7200 }, + [15] = { 33.2, 24.5, 1977, 7200 }, + [16] = { 32.9, 24.4, 1977, 7200 }, + [17] = { 33.1, 24.4, 1977, 7200 }, + [18] = { 33, 24.3, 1977, 7200 }, + [19] = { 30, 23.1, 1977, 7200 }, + [20] = { 29.8, 23, 1977, 7200 }, + [21] = { 30.1, 22.8, 1977, 7200 }, + [22] = { 30.7, 22.7, 1977, 7200 }, + [23] = { 30.7, 22.6, 1977, 7200 }, + [24] = { 30.8, 22.5, 1977, 7200 }, + [25] = { 30.7, 22.4, 1977, 7200 }, + [26] = { 31.6, 21.5, 1977, 7200 }, + [27] = { 31, 21.5, 1977, 7200 }, + [28] = { 31.5, 21.1, 1977, 7200 }, + [29] = { 31.1, 21.1, 1977, 7200 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14826] = { + ["coords"] = { + [1] = { 30.1, 25.6, 1977, 10 }, + [2] = { 30.2, 25.5, 1977, 10 }, + [3] = { 30, 25.5, 1977, 10 }, + [4] = { 30.2, 25.4, 1977, 10 }, + [5] = { 30.3, 25.3, 1977, 10 }, + [6] = { 30.1, 25.3, 1977, 10 }, + [7] = { 30, 25.3, 1977, 10 }, + [8] = { 30.2, 25.2, 1977, 10 }, + [9] = { 30.3, 25.1, 1977, 10 }, + [10] = { 30.1, 25.1, 1977, 10 }, + }, + ["lvl"] = "60", + }, + [14828] = { + ["coords"] = { + [1] = { 41.5, 68.9, 12, 270 }, + [2] = { 37.2, 37.7, 215, 630 }, + }, + ["lvl"] = "25", + }, + [14830] = "_", + [14831] = "_", + [14832] = { + ["coords"] = { + [1] = { 40.5, 69.9, 12, 180 }, + [2] = { 37.8, 39.8, 215, 420 }, + }, + ["lvl"] = "55", + }, + [14834] = { + ["coords"] = { + [1] = { 48.9, 39.8, 1977, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [14841] = { + ["coords"] = { + [1] = { 41.7, 70.7, 12, 180 }, + [2] = { 37.1, 37.2, 215, 420 }, + }, + ["lvl"] = "55", + }, + [14845] = { + ["coords"] = { + [1] = { 42.2, 70.2, 12, 180 }, + [2] = { 36.7, 38.2, 215, 420 }, + }, + ["lvl"] = "35", + }, + [14846] = { + ["coords"] = { + [1] = { 41.2, 69.9, 12, 180 }, + [2] = { 36.5, 37.9, 215, 420 }, + }, + ["lvl"] = "35", + }, + [14847] = { + ["coords"] = { + [1] = { 41.3, 70.1, 12, 180 }, + [2] = { 36.5, 38, 215, 420 }, + }, + ["lvl"] = "35", + }, + [14849] = { + ["coords"] = { + [1] = { 42.5, 70.9, 12, 270 }, + [2] = { 41.6, 70.5, 12, 270 }, + [3] = { 40.4, 69.7, 12, 270 }, + [4] = { 42.1, 69.5, 12, 270 }, + [5] = { 40.7, 69.4, 12, 270 }, + [6] = { 40.9, 69.4, 12, 270 }, + [7] = { 42.1, 69.3, 12, 270 }, + [8] = { 42.2, 69, 12, 270 }, + [9] = { 42.3, 68.8, 12, 270 }, + [10] = { 41.5, 68.7, 12, 270 }, + [11] = { 41.6, 68.7, 12, 270 }, + [12] = { 38, 39.5, 215, 25 }, + [13] = { 37.3, 37.8, 215, 25 }, + [14] = { 36.5, 37.1, 215, 25 }, + [15] = { 36.8, 37, 215, 25 }, + [16] = { 35.6, 35.1, 215, 25 }, + [17] = { 36, 34.7, 215, 25 }, + }, + ["lvl"] = "25", + }, + [14851] = "_", + [14852] = "_", + [14853] = "_", + [14854] = "_", + [14855] = "_", + [14856] = "_", + [14858] = "_", + [14860] = { + ["coords"] = { + [1] = { 41.8, 68.1, 12, 270 }, + [2] = { 37.5, 38.8, 215, 630 }, + }, + ["lvl"] = "4", + }, + [14861] = { + ["coords"] = { + [1] = { 78.9, 71.6, 2057, 18000 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [14864] = { + ["coords"] = { + [1] = { 40.5, 69.4, 12, 270 }, + [2] = { 40.9, 69.2, 12, 270 }, + [3] = { 37.7, 39.8, 215, 630 }, + [4] = { 38.1, 39.4, 215, 630 }, + }, + ["lvl"] = "5", + }, + [14867] = { + ["coords"] = { + [1] = { 43.1, 69.5, 12, 300 }, + [2] = { 36.5, 35.5, 215, 300 }, + }, + ["lvl"] = "5", + }, + [14868] = { + ["coords"] = { + [1] = { 40.4, 69.1, 12, 270 }, + [2] = { 38, 39.7, 215, 630 }, + }, + ["lvl"] = "8", + }, + [14869] = { + ["coords"] = { + [1] = { 40.6, 69.8, 12, 270 }, + [2] = { 41, 69.6, 12, 270 }, + [3] = { 40.3, 69.5, 12, 270 }, + [4] = { 40.7, 69.2, 12, 270 }, + [5] = { 38.1, 39.5, 215, 630 }, + [6] = { 37.9, 39.5, 215, 630 }, + }, + ["lvl"] = "1", + }, + [14870] = "_", + [14871] = { + ["coords"] = { + [1] = { 43.3, 70.3, 12, 270 }, + [2] = { 35.9, 35.3, 215, 630 }, + }, + ["lvl"] = "12", + }, + [14873] = { + ["coords"] = { + [1] = { 55.8, 19.7, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "1", + }, + [14874] = { + ["coords"] = { + [1] = { 56, 19, 17, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "1", + }, + [14880] = { + ["coords"] = { + [1] = { 49.6, 80.2, 1977, 7200 }, + [2] = { 48.7, 78.5, 1977, 7200 }, + [3] = { 48.7, 75.2, 1977, 7200 }, + [4] = { 50.2, 75, 1977, 7200 }, + [5] = { 50.8, 67.6, 1977, 7200 }, + [6] = { 50.5, 67.6, 1977, 7200 }, + [7] = { 53.9, 63.3, 1977, 7200 }, + [8] = { 54.2, 63.2, 1977, 7200 }, + }, + ["lvl"] = "56-58", + ["rnk"] = "1", + }, + [14881] = { + ["coords"] = { + [1] = { 31.2, 92.1, 1, 120 }, + [2] = { 30.2, 91.5, 1, 120 }, + [3] = { 32.4, 90.4, 1, 120 }, + [4] = { 32, 89.5, 1, 120 }, + [5] = { 33, 88.6, 1, 120 }, + [6] = { 31.2, 88.5, 405, 120 }, + [7] = { 30.8, 88.3, 405, 120 }, + [8] = { 31.5, 88, 405, 120 }, + [9] = { 30.9, 87.9, 405, 120 }, + [10] = { 31.3, 87.8, 405, 120 }, + [11] = { 31.8, 86.6, 405, 120 }, + [12] = { 31.6, 86, 405, 120 }, + [13] = { 47.5, 79.3, 1977, 7200 }, + [14] = { 49.2, 79.3, 1977, 7200 }, + [15] = { 46.1, 77.6, 1977, 7200 }, + [16] = { 49.1, 76.9, 1977, 7200 }, + [17] = { 47.5, 76.9, 1977, 7200 }, + [18] = { 49.2, 75.3, 1977, 7200 }, + [19] = { 40.4, 67.3, 3456, 7200 }, + [20] = { 48.7, 61.8, 3456, 7200 }, + [21] = { 60, 56.5, 3456, 7200 }, + [22] = { 48.8, 54.2, 3456, 7200 }, + [23] = { 40.1, 53.1, 3456, 7200 }, + [24] = { 55, 47.2, 3456, 7200 }, + [25] = { 59.3, 44.2, 3456, 7200 }, + [26] = { 57.5, 43.1, 3456, 7200 }, + [27] = { 58.4, 42.9, 3456, 7200 }, + [28] = { 57.1, 40.5, 3456, 7200 }, + [29] = { 59.1, 40.2, 3456, 7200 }, + [30] = { 71.3, 39.4, 3456, 7200 }, + [31] = { 61.9, 37.8, 3456, 7200 }, + [32] = { 55.8, 37.8, 3456, 7200 }, + [33] = { 71, 37.5, 3456, 7200 }, + [34] = { 56.4, 37.3, 3456, 7200 }, + [35] = { 61.2, 36.7, 3456, 7200 }, + [36] = { 63, 36.2, 3456, 7200 }, + [37] = { 71.2, 35.8, 3456, 7200 }, + [38] = { 62.2, 34.7, 3456, 7200 }, + [39] = { 54.7, 34.6, 3456, 7200 }, + [40] = { 71, 33.1, 3456, 7200 }, + [41] = { 65.8, 32.6, 3456, 7200 }, + [42] = { 54.9, 32.4, 3456, 7200 }, + [43] = { 64.8, 32.3, 3456, 7200 }, + [44] = { 56.6, 30.5, 3456, 7200 }, + [45] = { 54.1, 30.5, 3456, 7200 }, + [46] = { 54, 28, 3456, 7200 }, + [47] = { 55.9, 27.5, 3456, 7200 }, + [48] = { 65.1, 26, 3456, 7200 }, + [49] = { 56, 24.2, 3456, 7200 }, + [50] = { 63.7, 23.8, 3456, 7200 }, + [51] = { 65.7, 22.3, 3456, 7200 }, + [52] = { 63.3, 21.9, 3456, 7200 }, + [53] = { 64.1, 20.7, 3456, 7200 }, + [54] = { 38.5, 66.5, 3457, 604800 }, + [55] = { 40.4, 65.2, 3457, 604800 }, + [56] = { 42.1, 62.4, 3457, 604800 }, + [57] = { 40.5, 60.7, 3457, 604800 }, + [58] = { 39.7, 59.6, 3457, 604800 }, + [59] = { 46.1, 50.3, 3457, 604800 }, + [60] = { 50.4, 50.1, 3457, 604800 }, + [61] = { 55.9, 47.9, 3457, 604800 }, + [62] = { 43.7, 47.7, 3457, 604800 }, + [63] = { 53.4, 92.4, 3457, 604800 }, + [64] = { 58.3, 92.3, 3457, 604800 }, + [65] = { 63.6, 47.3, 3457, 604800 }, + [66] = { 48.9, 89.9, 3457, 604800 }, + [67] = { 58.7, 88.6, 3457, 604800 }, + [68] = { 47.9, 84, 3457, 604800 }, + [69] = { 35.3, 38.3, 3457, 604800 }, + [70] = { 47.1, 78.9, 3457, 604800 }, + [71] = { 56.3, 78.6, 3457, 604800 }, + [72] = { 59, 36.9, 3457, 604800 }, + [73] = { 54.6, 36.8, 3457, 604800 }, + [74] = { 53.3, 34.8, 3457, 604800 }, + [75] = { 68.8, 73.3, 3457, 604800 }, + [76] = { 64.2, 73.3, 3457, 604800 }, + [77] = { 69.1, 33.6, 3457, 604800 }, + [78] = { 68.9, 71.7, 3457, 604800 }, + [79] = { 65.1, 71.7, 3457, 604800 }, + [80] = { 66.9, 71.3, 3457, 604800 }, + [81] = { 72.6, 31.6, 3457, 604800 }, + [82] = { 73, 31.4, 3457, 604800 }, + [83] = { 63.8, 69.7, 3457, 604800 }, + [84] = { 74.9, 31, 3457, 604800 }, + [85] = { 65.6, 68.9, 3457, 604800 }, + [86] = { 74.2, 30.5, 3457, 604800 }, + [87] = { 63.2, 68.8, 3457, 604800 }, + [88] = { 76.7, 30.4, 3457, 604800 }, + [89] = { 74, 30, 3457, 604800 }, + [90] = { 72.5, 29.8, 3457, 604800 }, + [91] = { 62.5, 29.6, 3457, 604800 }, + [92] = { 68.6, 29.4, 3457, 604800 }, + [93] = { 71.2, 29.3, 3457, 604800 }, + [94] = { 74.4, 29.1, 3457, 604800 }, + [95] = { 72.3, 29.1, 3457, 604800 }, + [96] = { 59.9, 28.7, 3457, 604800 }, + [97] = { 73.8, 28.6, 3457, 604800 }, + [98] = { 68.1, 26.6, 3457, 604800 }, + [99] = { 63.2, 61.3, 3457, 604800 }, + [100] = { 73.1, 24.9, 3457, 604800 }, + [101] = { 60.5, 60.2, 3457, 604800 }, + [102] = { 63.8, 60.2, 3457, 604800 }, + [103] = { 68.9, 24.3, 3457, 604800 }, + [104] = { 59, 59.3, 3457, 604800 }, + [105] = { 62.1, 57.6, 3457, 604800 }, + [106] = { 65.1, 22.1, 3457, 604800 }, + [107] = { 66.1, 53.8, 3457, 604800 }, + [108] = { 67.8, 53.8, 3457, 604800 }, + [109] = { 66, 53.6, 3457, 604800 }, + [110] = { 67.6, 19.4, 3457, 604800 }, + [111] = { 61.1, 53.2, 3457, 604800 }, + [112] = { 63.6, 52.8, 3457, 604800 }, + [113] = { 66.7, 52.7, 3457, 604800 }, + [114] = { 55.4, 51.6, 3457, 604800 }, + [115] = { 64.3, 17.9, 3457, 604800 }, + [116] = { 57.8, 51.1, 3457, 604800 }, + [117] = { 61.1, 50.8, 3457, 604800 }, + [118] = { 66.3, 50.8, 3457, 604800 }, + [119] = { 54.7, 50, 3457, 604800 }, + [120] = { 70.5, 46.5, 3457, 604800 }, + [121] = { 64.8, 46.2, 3457, 604800 }, + [122] = { 53.6, 45.2, 3457, 604800 }, + [123] = { 54.6, 45.1, 3457, 604800 }, + [124] = { 55.4, 44.6, 3457, 604800 }, + [125] = { 54.7, 44.4, 3457, 604800 }, + [126] = { 54.3, 44, 3457, 604800 }, + [127] = { 54.3, 43.6, 3457, 604800 }, + [128] = { 61.7, 11.2, 3457, 604800 }, + [129] = { 63.1, 41.7, 3457, 604800 }, + [130] = { 71, 41.6, 3457, 604800 }, + [131] = { 71.4, 41.3, 3457, 604800 }, + [132] = { 63.2, 41.1, 3457, 604800 }, + [133] = { 38.7, 40.9, 3457, 604800 }, + [134] = { 62.6, 40.6, 3457, 604800 }, + [135] = { 58.6, 40.5, 3457, 604800 }, + [136] = { 61.4, 40.3, 3457, 604800 }, + [137] = { 72.1, 39.7, 3457, 604800 }, + [138] = { 67.8, 37.9, 3457, 604800 }, + [139] = { 43.6, 37.8, 3457, 604800 }, + [140] = { 67.6, 35.9, 3457, 604800 }, + [141] = { 73.1, 35.7, 3457, 604800 }, + [142] = { 62, 35.7, 3457, 604800 }, + [143] = { 60.9, 35.4, 3457, 604800 }, + [144] = { 65.7, 33.3, 3457, 604800 }, + [145] = { 59.5, 33.2, 3457, 604800 }, + [146] = { 55.4, 32.6, 3457, 604800 }, + [147] = { 55.6, 32.4, 3457, 604800 }, + [148] = { 54.7, 32.4, 3457, 604800 }, + [149] = { 67.3, 29.1, 3457, 604800 }, + [150] = { 43.8, 22.1, 3457, 604800 }, + [151] = { 83.7, 86.5, 5086, 18000 }, + [152] = { 82.8, 85.8, 5086, 18000 }, + [153] = { 84.4, 85.3, 5086, 18000 }, + [154] = { 83.3, 84.9, 5086, 18000 }, + [155] = { 82.7, 83.6, 5086, 18000 }, + [156] = { 82.1, 83.5, 5086, 18000 }, + [157] = { 84, 83.1, 5086, 18000 }, + [158] = { 83, 82.9, 5086, 18000 }, + [159] = { 84.5, 82.7, 5086, 18000 }, + [160] = { 82.3, 82.1, 5086, 18000 }, + [161] = { 83.9, 81.8, 5086, 18000 }, + [162] = { 82.6, 78.7, 5086, 18000 }, + [163] = { 80.3, 78.6, 5086, 18000 }, + [164] = { 81, 75.6, 5086, 18000 }, + [165] = { 82.5, 75.4, 5086, 18000 }, + [166] = { 79.8, 75.4, 5086, 18000 }, + [167] = { 80.4, 73.3, 5086, 18000 }, + [168] = { 81.4, 73.1, 5086, 18000 }, + [169] = { 80.5, 70.7, 5086, 18000 }, + [170] = { 38.9, 60.9, 5561, 120 }, + [171] = { 50.1, 53.9, 5561, 120 }, + [172] = { 47.1, 53.7, 5561, 120 }, + [173] = { 36.7, 53.6, 5561, 120 }, + [174] = { 48.9, 53.5, 5561, 120 }, + [175] = { 51.1, 50.9, 5561, 120 }, + [176] = { 52.6, 50.5, 5561, 120 }, + [177] = { 51.8, 50.4, 5561, 120 }, + [178] = { 51.9, 50.4, 5561, 120 }, + [179] = { 34.7, 43.9, 5561, 120 }, + [180] = { 51.4, 43, 5561, 120 }, + [181] = { 36.1, 42.7, 5561, 120 }, + [182] = { 35.4, 42.3, 5561, 120 }, + [183] = { 52.5, 42.2, 5561, 120 }, + [184] = { 34.1, 39.7, 5561, 120 }, + [185] = { 34.4, 37.1, 5561, 120 }, + [186] = { 33.9, 35.3, 5561, 120 }, + [187] = { 34.1, 32.5, 5561, 120 }, + [188] = { 33, 30.4, 5561, 120 }, + [189] = { 61.8, 28.8, 5581, 120 }, + [190] = { 61.4, 26.6, 5581, 120 }, + [191] = { 63, 26.5, 5581, 120 }, + [192] = { 65.8, 25.7, 5581, 120 }, + [193] = { 60, 25.6, 5581, 120 }, + [194] = { 63.3, 24.1, 5581, 120 }, + [195] = { 62.7, 22.7, 5581, 120 }, + [196] = { 65.8, 22.6, 5581, 120 }, + [197] = { 64.2, 21.3, 5581, 120 }, + [198] = { 38.1, 64.4, 5601, 604800 }, + [199] = { 32.1, 54.1, 5601, 604800 }, + [200] = { 30.4, 53, 5601, 604800 }, + [201] = { 32.6, 52.7, 5601, 604800 }, + [202] = { 29.8, 52.6, 5601, 604800 }, + [203] = { 33, 52.2, 5601, 604800 }, + [204] = { 31.4, 52.1, 5601, 604800 }, + [205] = { 29.5, 50.8, 5601, 604800 }, + [206] = { 33.1, 50.7, 5601, 604800 }, + [207] = { 29.9, 50.5, 5601, 604800 }, + [208] = { 34.9, 50.2, 5601, 604800 }, + [209] = { 31.7, 49.5, 5601, 604800 }, + [210] = { 30.8, 48.9, 5601, 604800 }, + [211] = { 36.2, 47.6, 5601, 604800 }, + [212] = { 33.5, 47.4, 5601, 604800 }, + }, + ["lvl"] = "1", + }, + [14882] = { + ["coords"] = { + [1] = { 34, 28.4, 1977, 7200 }, + [2] = { 34.1, 28.3, 1977, 7200 }, + [3] = { 31.7, 27.7, 1977, 7200 }, + [4] = { 31.6, 27.6, 1977, 7200 }, + [5] = { 31.5, 27.3, 1977, 7200 }, + [6] = { 29.3, 27.1, 1977, 7200 }, + [7] = { 29.2, 27, 1977, 7200 }, + [8] = { 28.9, 26.5, 1977, 7200 }, + [9] = { 28.8, 26.4, 1977, 7200 }, + [10] = { 33.1, 24.5, 1977, 7200 }, + [11] = { 32.8, 24.5, 1977, 7200 }, + [12] = { 33, 24.5, 1977, 7200 }, + [13] = { 29.9, 22.6, 1977, 7200 }, + [14] = { 31.6, 21.7, 1977, 7200 }, + [15] = { 31, 21.7, 1977, 7200 }, + [16] = { 31, 21.2, 1977, 7200 }, + [17] = { 31.5, 21.2, 1977, 7200 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14883] = { + ["coords"] = { + [1] = { 31.7, 27.6, 1977, 7200 }, + [2] = { 31.6, 27.4, 1977, 7200 }, + [3] = { 29.2, 26.9, 1977, 7200 }, + [4] = { 29.2, 26.8, 1977, 7200 }, + [5] = { 33.1, 24.6, 1977, 7200 }, + [6] = { 33, 24.6, 1977, 7200 }, + [7] = { 33.3, 24.5, 1977, 7200 }, + [8] = { 31.6, 21.9, 1977, 7200 }, + [9] = { 31, 21.9, 1977, 7200 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14884] = { + ["coords"] = {}, + ["lvl"] = "1", + ["rnk"] = "3", + }, + [14885] = "_", + [14886] = "_", + [14887] = { + ["coords"] = { + [1] = { 62.3, 23.3, 47, 999999999 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [14891] = { + ["coords"] = { + [1] = { 44.5, 73.4, 331, 120 }, + [2] = { 80, 39.7, 406, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [14901] = { + ["coords"] = { + [1] = { 42, 59.5, 17, 413 }, + [2] = { 57.3, 33.3, 17, 413 }, + [3] = { 57.1, 33.2, 17, 413 }, + [4] = { 57.3, 33.2, 17, 413 }, + [5] = { 57.3, 33.1, 17, 413 }, + [6] = { 57.2, 33, 17, 413 }, + [7] = { 57, 32.4, 17, 413 }, + [8] = { 57, 32.1, 17, 413 }, + [9] = { 57.1, 32.1, 17, 413 }, + [10] = { 57.1, 31.9, 17, 413 }, + [11] = { 57, 31.7, 17, 413 }, + [12] = { 56.9, 31.6, 17, 413 }, + [13] = { 57.1, 31.4, 17, 413 }, + [14] = { 57, 31.4, 17, 413 }, + [15] = { 71.6, 62.3, 215, 413 }, + }, + ["fac"] = "H", + ["lvl"] = "4", + }, + [14906] = "_", + [14910] = { + ["coords"] = { + [1] = { 15.3, 15.5, 33, 1800 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14911] = { + ["coords"] = { + [1] = { 15.3, 15.3, 33, 1800 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14912] = { + ["coords"] = { + [1] = { 15.1, 15.7, 33, 1800 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [14913] = "_", + [14941] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + ["rnk"] = "3", + }, + [14981] = { + ["coords"] = { + [1] = { 59.8, 98.6, 5581, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [14986] = { + ["coords"] = {}, + ["lvl"] = "57-60", + ["rnk"] = "1", + }, + [14990] = { + ["coords"] = { + [1] = { 74.6, 14.8, 130, 120 }, + [2] = { 74.8, 14.7, 130, 120 }, + [3] = { 41.5, 32.7, 215, 120 }, + [4] = { 41.5, 32.5, 215, 120 }, + [5] = { 41.6, 32.5, 215, 120 }, + [6] = { 41.1, 32.4, 215, 120 }, + [7] = { 41.1, 32.3, 215, 120 }, + [8] = { 37.2, 29.3, 215, 120 }, + [9] = { 38.8, 28.5, 215, 120 }, + [10] = { 38.7, 28.4, 215, 120 }, + [11] = { 40.2, 23.9, 215, 120 }, + [12] = { 35.3, 22.7, 215, 120 }, + [13] = { 88.9, 50.1, 405, 120 }, + [14] = { 89, 50.1, 405, 120 }, + [15] = { 58.1, 97.7, 1497, 120 }, + [16] = { 59, 97.4, 1497, 120 }, + [17] = { 66.1, 55.7, 1497, 120 }, + [18] = { 65.8, 55.5, 1497, 120 }, + [19] = { 73.6, 44.5, 1497, 120 }, + [20] = { 58.1, 44.4, 1497, 120 }, + [21] = { 58.1, 44, 1497, 120 }, + [22] = { 73.9, 43.8, 1497, 120 }, + [23] = { 72, 38.3, 1497, 120 }, + [24] = { 72.2, 38.2, 1497, 120 }, + [25] = { 50.5, 65.7, 1637, 120 }, + [26] = { 50.3, 65.6, 1637, 120 }, + [27] = { 47.4, 65, 1637, 120 }, + [28] = { 47.5, 64.8, 1637, 120 }, + [29] = { 20.4, 56.7, 1637, 120 }, + [30] = { 20.3, 56.3, 1637, 120 }, + [31] = { 73.5, 36, 1637, 120 }, + [32] = { 73.2, 36, 1637, 120 }, + [33] = { 74.3, 34.4, 1637, 120 }, + [34] = { 74.3, 34.2, 1637, 120 }, + [35] = { 57.8, 78.2, 1638, 120 }, + [36] = { 57.7, 77.8, 1638, 120 }, + [37] = { 57.5, 76.9, 1638, 120 }, + [38] = { 57.9, 76.9, 1638, 120 }, + [39] = { 55.4, 76.4, 1638, 120 }, + [40] = { 55.4, 75.8, 1638, 120 }, + [41] = { 36.2, 61.5, 1638, 120 }, + [42] = { 36.5, 61.2, 1638, 120 }, + [43] = { 44.3, 57.2, 1638, 120 }, + [44] = { 43.9, 56.8, 1638, 120 }, + [45] = { 51.2, 34.7, 1638, 120 }, + [46] = { 51, 34.5, 1638, 120 }, + [47] = { 26.8, 28.9, 1638, 120 }, + [48] = { 27.1, 28.6, 1638, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [14991] = { + ["coords"] = { + [1] = { 55.4, 35.2, 1, 180 }, + [2] = { 24.9, 62.1, 141, 120 }, + [3] = { 25, 62, 141, 120 }, + [4] = { 33.9, 55.4, 141, 120 }, + [5] = { 26.1, 55.2, 141, 180 }, + [6] = { 32.1, 55.1, 141, 120 }, + [7] = { 26.1, 55.1, 141, 180 }, + [8] = { 32.2, 55.1, 141, 120 }, + [9] = { 28.8, 54.4, 141, 120 }, + [10] = { 28.9, 54.4, 141, 120 }, + [11] = { 67.9, 76.1, 1519, 300 }, + [12] = { 67.8, 75.8, 1519, 300 }, + [13] = { 65.4, 74, 1519, 300 }, + [14] = { 65.2, 73.8, 1519, 300 }, + [15] = { 61.6, 72.9, 1519, 300 }, + [16] = { 61.7, 72.8, 1519, 300 }, + [17] = { 68.3, 49.6, 1519, 120 }, + [18] = { 68.2, 49.5, 1519, 120 }, + [19] = { 66.1, 35.9, 1519, 120 }, + [20] = { 65.9, 35.7, 1519, 120 }, + [21] = { 69.3, 88.7, 1537, 300 }, + [22] = { 69.9, 88.1, 1537, 300 }, + [23] = { 27.5, 88, 1537, 180 }, + [24] = { 27, 87.9, 1537, 180 }, + [25] = { 58.7, 83, 1537, 120 }, + [26] = { 59, 81.8, 1537, 120 }, + [27] = { 17.5, 65.8, 1537, 180 }, + [28] = { 17, 65.8, 1537, 180 }, + [29] = { 57.6, 51.2, 1537, 300 }, + [30] = { 57.9, 50.7, 1537, 300 }, + [31] = { 34.3, 21.6, 1537, 300 }, + [32] = { 34.4, 21.1, 1537, 300 }, + [33] = { 37.2, 72.8, 1657, 120 }, + [34] = { 37.4, 72.4, 1657, 120 }, + [35] = { 80.2, 40.7, 1657, 120 }, + [36] = { 80.2, 40.5, 1657, 120 }, + [37] = { 42.9, 39.5, 1657, 180 }, + [38] = { 71.7, 39.3, 1657, 120 }, + [39] = { 42.6, 39.1, 1657, 180 }, + [40] = { 72.1, 39, 1657, 120 }, + [41] = { 55.6, 36.1, 1657, 120 }, + [42] = { 56, 36, 1657, 120 }, + [43] = { 51.9, 96.7, 5581, 120 }, + [44] = { 51.8, 96.5, 5581, 120 }, + [45] = { 60.8, 95.6, 5581, 120 }, + [46] = { 60.8, 95.5, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [15000] = { + ["coords"] = { + [1] = { 44.5, 73.7, 331, 120 }, + [2] = { 44.5, 73.6, 331, 120 }, + [3] = { 44.5, 73.5, 331, 120 }, + [4] = { 44.4, 73.5, 331, 120 }, + [5] = { 80, 39.9, 406, 120 }, + [6] = { 80, 39.8, 406, 120 }, + [7] = { 80.1, 39.7, 406, 120 }, + [8] = { 79.9, 39.7, 406, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15008] = { + ["coords"] = { + [1] = { 59.5, 97.1, 5581, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15042] = { + ["coords"] = { + [1] = { 56.3, 55.7, 1977, 7200 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15043] = { + ["coords"] = { + [1] = { 41.6, 48.6, 1977, 7200 }, + [2] = { 53.1, 48.3, 1977, 7200 }, + [3] = { 52.7, 48.2, 1977, 7200 }, + [4] = { 41.4, 47.9, 1977, 7200 }, + [5] = { 41.9, 47.9, 1977, 7200 }, + [6] = { 52.8, 47.8, 1977, 7200 }, + [7] = { 53.1, 47.8, 1977, 7200 }, + [8] = { 53.1, 47.5, 1977, 7200 }, + [9] = { 42, 47.4, 1977, 7200 }, + [10] = { 41.8, 47.2, 1977, 7200 }, + [11] = { 50.6, 46.4, 1977, 7200 }, + [12] = { 50.8, 46, 1977, 7200 }, + [13] = { 49.1, 45.9, 1977, 7200 }, + [14] = { 51.1, 45.9, 1977, 7200 }, + [15] = { 48.2, 45.8, 1977, 7200 }, + [16] = { 47.4, 45.8, 1977, 7200 }, + [17] = { 47.7, 45.8, 1977, 7200 }, + [18] = { 48.6, 45.7, 1977, 7200 }, + [19] = { 51.7, 45.6, 1977, 7200 }, + [20] = { 54.1, 43.4, 1977, 7200 }, + [21] = { 54.5, 43.1, 1977, 7200 }, + [22] = { 54.2, 43, 1977, 7200 }, + [23] = { 42.9, 42.8, 1977, 7200 }, + [24] = { 42, 42.6, 1977, 7200 }, + [25] = { 54.3, 42.3, 1977, 7200 }, + [26] = { 42.5, 41.9, 1977, 7200 }, + [27] = { 41.9, 41.7, 1977, 7200 }, + [28] = { 36.9, 39.9, 1977, 7200 }, + [29] = { 37.3, 39.6, 1977, 7200 }, + [30] = { 37, 39.3, 1977, 7200 }, + [31] = { 36.6, 39.2, 1977, 7200 }, + [32] = { 37.2, 39, 1977, 7200 }, + [33] = { 53.3, 35.7, 1977, 7200 }, + [34] = { 53, 35.4, 1977, 7200 }, + [35] = { 52.7, 35.2, 1977, 7200 }, + [36] = { 52.6, 34.4, 1977, 7200 }, + [37] = { 49.8, 33.8, 1977, 7200 }, + [38] = { 49.2, 33.6, 1977, 7200 }, + [39] = { 49.6, 33.5, 1977, 7200 }, + [40] = { 49.2, 33.1, 1977, 7200 }, + [41] = { 48.7, 32.8, 1977, 7200 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15047] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15067] = { + ["coords"] = { + [1] = { 49, 16.9, 1977, 7200 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15078] = { + ["coords"] = { + [1] = { 27.5, 76.8, 33, 550 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [15081] = "_", + [15084] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [15091] = { + ["coords"] = { + [1] = { 47.1, 20.8, 1977, 7200 }, + [2] = { 49.1, 20.7, 1977, 7200 }, + [3] = { 49, 20.7, 1977, 7200 }, + [4] = { 48.9, 20.7, 1977, 7200 }, + [5] = { 46.7, 20.6, 1977, 7200 }, + [6] = { 46.8, 20.6, 1977, 7200 }, + [7] = { 46.9, 20.6, 1977, 7200 }, + }, + ["lvl"] = "60", + }, + [15102] = { + ["coords"] = { + [1] = { 55.4, 35.2, 1, 300 }, + [2] = { 24.9, 62.1, 141, 300 }, + [3] = { 25, 62, 141, 300 }, + [4] = { 33.9, 55.4, 141, 120 }, + [5] = { 26.1, 55.2, 141, 300 }, + [6] = { 32.1, 55.1, 141, 300 }, + [7] = { 26.1, 55.1, 141, 300 }, + [8] = { 32.2, 55.1, 141, 300 }, + [9] = { 28.8, 54.4, 141, 300 }, + [10] = { 28.9, 54.4, 141, 300 }, + [11] = { 67.9, 76.1, 1519, 300 }, + [12] = { 67.8, 75.8, 1519, 300 }, + [13] = { 65.4, 74, 1519, 300 }, + [14] = { 65.2, 73.8, 1519, 300 }, + [15] = { 61.6, 72.9, 1519, 300 }, + [16] = { 61.7, 72.8, 1519, 300 }, + [17] = { 68.3, 49.6, 1519, 120 }, + [18] = { 68.2, 49.5, 1519, 120 }, + [19] = { 66.1, 35.9, 1519, 300 }, + [20] = { 65.9, 35.7, 1519, 300 }, + [21] = { 69.3, 88.7, 1537, 300 }, + [22] = { 69.9, 88.1, 1537, 300 }, + [23] = { 27.5, 88, 1537, 300 }, + [24] = { 27, 87.9, 1537, 300 }, + [25] = { 58.7, 83, 1537, 120 }, + [26] = { 59, 81.8, 1537, 120 }, + [27] = { 17.5, 65.8, 1537, 300 }, + [28] = { 17, 65.8, 1537, 300 }, + [29] = { 57.6, 51.2, 1537, 300 }, + [30] = { 57.9, 50.7, 1537, 300 }, + [31] = { 34.3, 21.6, 1537, 300 }, + [32] = { 34.4, 21.1, 1537, 300 }, + [33] = { 37.2, 72.8, 1657, 300 }, + [34] = { 37.4, 72.4, 1657, 300 }, + [35] = { 80.2, 40.7, 1657, 120 }, + [36] = { 80.2, 40.5, 1657, 120 }, + [37] = { 42.9, 39.5, 1657, 300 }, + [38] = { 71.7, 39.3, 1657, 300 }, + [39] = { 42.6, 39.1, 1657, 300 }, + [40] = { 72.1, 39, 1657, 300 }, + [41] = { 55.6, 36.1, 1657, 300 }, + [42] = { 56, 36, 1657, 300 }, + [43] = { 51.9, 96.7, 5581, 300 }, + [44] = { 51.8, 96.5, 5581, 300 }, + [45] = { 60.8, 95.6, 5581, 300 }, + [46] = { 60.8, 95.5, 5581, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "22-23", + }, + [15103] = { + ["coords"] = { + [1] = { 55.4, 35.2, 1, 300 }, + [2] = { 24.9, 62.1, 141, 300 }, + [3] = { 25, 62, 141, 300 }, + [4] = { 33.9, 55.4, 141, 120 }, + [5] = { 26.1, 55.2, 141, 300 }, + [6] = { 32.1, 55.1, 141, 120 }, + [7] = { 26.1, 55.1, 141, 300 }, + [8] = { 32.2, 55.1, 141, 120 }, + [9] = { 28.8, 54.4, 141, 120 }, + [10] = { 28.9, 54.4, 141, 120 }, + [11] = { 67.9, 76.1, 1519, 300 }, + [12] = { 67.8, 75.8, 1519, 300 }, + [13] = { 65.4, 74, 1519, 300 }, + [14] = { 65.2, 73.8, 1519, 300 }, + [15] = { 61.6, 72.9, 1519, 300 }, + [16] = { 61.7, 72.8, 1519, 300 }, + [17] = { 68.3, 49.6, 1519, 120 }, + [18] = { 68.2, 49.5, 1519, 120 }, + [19] = { 66.1, 35.9, 1519, 300 }, + [20] = { 65.9, 35.7, 1519, 300 }, + [21] = { 69.3, 88.7, 1537, 120 }, + [22] = { 69.9, 88.1, 1537, 120 }, + [23] = { 27.5, 88, 1537, 300 }, + [24] = { 27, 87.9, 1537, 300 }, + [25] = { 58.7, 83, 1537, 120 }, + [26] = { 59, 81.8, 1537, 120 }, + [27] = { 17.5, 65.8, 1537, 300 }, + [28] = { 17, 65.8, 1537, 300 }, + [29] = { 57.6, 51.2, 1537, 300 }, + [30] = { 57.9, 50.7, 1537, 300 }, + [31] = { 34.3, 21.6, 1537, 300 }, + [32] = { 34.4, 21.1, 1537, 300 }, + [33] = { 37.2, 72.8, 1657, 300 }, + [34] = { 37.4, 72.4, 1657, 300 }, + [35] = { 80.2, 40.7, 1657, 120 }, + [36] = { 80.2, 40.5, 1657, 120 }, + [37] = { 42.9, 39.5, 1657, 300 }, + [38] = { 71.7, 39.3, 1657, 120 }, + [39] = { 42.6, 39.1, 1657, 300 }, + [40] = { 72.1, 39, 1657, 120 }, + [41] = { 55.6, 36.1, 1657, 120 }, + [42] = { 56, 36, 1657, 120 }, + [43] = { 51.9, 96.7, 5581, 300 }, + [44] = { 51.8, 96.5, 5581, 300 }, + [45] = { 60.8, 95.6, 5581, 300 }, + [46] = { 60.8, 95.5, 5581, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [15105] = { + ["coords"] = { + [1] = { 74.6, 14.8, 130, 43200 }, + [2] = { 74.8, 14.7, 130, 43200 }, + [3] = { 74.8, 12, 130, 43200 }, + [4] = { 74.5, 11.9, 130, 43200 }, + [5] = { 41.4, 33.1, 215, 43200 }, + [6] = { 41.5, 32.9, 215, 43200 }, + [7] = { 38.8, 28.5, 215, 43200 }, + [8] = { 38.7, 28.4, 215, 43200 }, + [9] = { 44.2, 22.4, 215, 43200 }, + [10] = { 44.3, 22.2, 215, 43200 }, + [11] = { 35.1, 20.8, 215, 43200 }, + [12] = { 35.2, 20.7, 215, 43200 }, + [13] = { 88.8, 48, 405, 43200 }, + [14] = { 88.8, 47.8, 405, 43200 }, + [15] = { 58.1, 97.7, 1497, 43200 }, + [16] = { 59, 97.4, 1497, 43200 }, + [17] = { 58.7, 85.3, 1497, 43200 }, + [18] = { 57.8, 85.1, 1497, 43200 }, + [19] = { 69.9, 44.8, 1497, 43200 }, + [20] = { 62.1, 44.7, 1497, 43200 }, + [21] = { 69.9, 43.6, 1497, 43200 }, + [22] = { 62.1, 43.4, 1497, 43200 }, + [23] = { 50.3, 66.5, 1637, 43200 }, + [24] = { 50, 66, 1637, 43200 }, + [25] = { 47.1, 65.2, 1637, 43200 }, + [26] = { 47.5, 64.7, 1637, 43200 }, + [27] = { 73.3, 35.6, 1637, 43200 }, + [28] = { 73, 35.6, 1637, 43200 }, + [29] = { 57, 79.9, 1638, 43200 }, + [30] = { 57.4, 79.2, 1638, 43200 }, + [31] = { 44.3, 57.2, 1638, 43200 }, + [32] = { 43.9, 56.8, 1638, 43200 }, + [33] = { 70.8, 27.4, 1638, 43200 }, + [34] = { 71.3, 26.5, 1638, 43200 }, + [35] = { 26.3, 19.7, 1638, 43200 }, + [36] = { 26.5, 18.7, 1638, 43200 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [15106] = { + ["coords"] = { + [1] = { 74.6, 14.8, 130, 300 }, + [2] = { 74.8, 14.7, 130, 300 }, + [3] = { 41.5, 32.5, 215, 120 }, + [4] = { 41.6, 32.5, 215, 120 }, + [5] = { 41.1, 32.4, 215, 120 }, + [6] = { 41.1, 32.3, 215, 120 }, + [7] = { 37.2, 29.3, 215, 120 }, + [8] = { 38.8, 28.5, 215, 300 }, + [9] = { 38.7, 28.4, 215, 300 }, + [10] = { 40.2, 23.9, 215, 120 }, + [11] = { 35.3, 22.7, 215, 120 }, + [12] = { 88.9, 50.1, 405, 120 }, + [13] = { 89, 50.1, 405, 120 }, + [14] = { 58.1, 97.7, 1497, 300 }, + [15] = { 59, 97.4, 1497, 300 }, + [16] = { 66.1, 55.7, 1497, 120 }, + [17] = { 65.8, 55.5, 1497, 120 }, + [18] = { 73.6, 44.5, 1497, 120 }, + [19] = { 58.1, 44.4, 1497, 120 }, + [20] = { 58.1, 44, 1497, 120 }, + [21] = { 73.9, 43.8, 1497, 120 }, + [22] = { 50.5, 65.7, 1637, 120 }, + [23] = { 50.3, 65.6, 1637, 120 }, + [24] = { 47.4, 65, 1637, 120 }, + [25] = { 47.5, 64.8, 1637, 120 }, + [26] = { 20.4, 56.7, 1637, 120 }, + [27] = { 20.3, 56.3, 1637, 120 }, + [28] = { 73.5, 36, 1637, 120 }, + [29] = { 73.2, 36, 1637, 120 }, + [30] = { 57.5, 76.9, 1638, 120 }, + [31] = { 57.9, 76.9, 1638, 120 }, + [32] = { 55.4, 76.4, 1638, 120 }, + [33] = { 55.4, 75.8, 1638, 120 }, + [34] = { 36.2, 61.5, 1638, 120 }, + [35] = { 36.5, 61.2, 1638, 120 }, + [36] = { 44.3, 57.2, 1638, 300 }, + [37] = { 43.9, 56.8, 1638, 300 }, + [38] = { 51.2, 34.7, 1638, 120 }, + [39] = { 51, 34.5, 1638, 120 }, + [40] = { 26.8, 28.9, 1638, 120 }, + [41] = { 27.1, 28.6, 1638, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [15111] = { + ["coords"] = { + [1] = { 58, 52.5, 1977, 7200 }, + [2] = { 57.9, 52.3, 1977, 7200 }, + [3] = { 58, 52.3, 1977, 7200 }, + [4] = { 57.9, 50.9, 1977, 7200 }, + [5] = { 59.7, 47.3, 1977, 7200 }, + [6] = { 59.6, 47, 1977, 7200 }, + [7] = { 59.6, 46.9, 1977, 7200 }, + [8] = { 58.4, 46, 1977, 7200 }, + [9] = { 58.6, 46, 1977, 7200 }, + [10] = { 60.1, 46, 1977, 7200 }, + [11] = { 58.8, 45.9, 1977, 7200 }, + [12] = { 60.3, 45.7, 1977, 7200 }, + [13] = { 60.5, 45.7, 1977, 7200 }, + [14] = { 58.6, 45.7, 1977, 7200 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15114] = { + ["coords"] = { + [1] = { 52.5, 31.7, 1977, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15118] = "_", + [15119] = { + ["coords"] = { + [1] = { 28, 75, 1537, 550 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [15121] = "_", + [15123] = "_", + [15133] = "_", + [15134] = "_", + [15142] = "_", + [15143] = "_", + [15144] = "_", + [15145] = "_", + [15151] = "_", + [15152] = "_", + [15153] = "_", + [15154] = "_", + [15155] = "_", + [15156] = "_", + [15157] = "_", + [15158] = "_", + [15159] = "_", + [15160] = "_", + [15161] = "_", + [15162] = { + ["coords"] = { + [1] = { 80.6, 85.6, 139, 868 }, + [2] = { 80.7, 85.2, 139, 814 }, + [3] = { 39.7, 71, 4012, 868 }, + [4] = { 39.9, 70.5, 4012, 814 }, + }, + ["lvl"] = "61", + }, + [15166] = "_", + [15167] = "_", + [15168] = { + ["coords"] = { + [1] = { 63.8, 58.3, 3429, 347600 }, + [2] = { 50.4, 49.9, 3429, 347600 }, + [3] = { 52.4, 45.1, 3429, 347600 }, + [4] = { 44.9, 44.9, 3429, 347600 }, + [5] = { 36.2, 44.4, 3429, 347600 }, + [6] = { 59.8, 42.1, 3429, 347600 }, + [7] = { 47.8, 37.9, 3429, 347600 }, + [8] = { 36.1, 34, 3429, 347600 }, + [9] = { 40.3, 33.1, 3429, 347600 }, + [10] = { 56.5, 29.3, 3429, 347600 }, + [11] = { 64.7, 28.6, 3429, 347600 }, + [12] = { 60.4, 28.1, 3429, 347600 }, + [13] = { 55.8, 26.5, 3429, 347600 }, + [14] = { 58.4, 25.8, 3429, 347600 }, + [15] = { 64.3, 24.8, 3429, 347600 }, + [16] = { 67.4, 24.7, 3429, 347600 }, + [17] = { 62.5, 23.9, 3429, 347600 }, + [18] = { 57, 23, 3429, 347600 }, + [19] = { 68.4, 20.5, 3429, 347600 }, + [20] = { 64.1, 19.8, 3429, 347600 }, + [21] = { 62.5, 17.5, 3429, 347600 }, + }, + ["lvl"] = "55", + }, + [15169] = { + ["coords"] = { + [1] = { 70.2, 25.3, 1377, 300 }, + }, + ["lvl"] = "60", + }, + [15170] = { + ["coords"] = { + [1] = { 41.3, 88.5, 1377, 300 }, + [2] = { 68.4, 0.3, 3478, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15171] = { + ["coords"] = { + [1] = { 40.8, 88.9, 1377, 300 }, + [2] = { 68.1, 0.6, 3478, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15172] = { + ["coords"] = { + [1] = { 41, 88.3, 1377, 300 }, + [2] = { 68.2, 0.1, 3478, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "62", + }, + [15173] = "_", + [15177] = { + ["coords"] = { + [1] = { 50.6, 34.4, 1377, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [15178] = { + ["coords"] = { + [1] = { 48.7, 36.7, 1377, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [15184] = { + ["coords"] = { + [1] = { 51.2, 39.6, 1377, 600 }, + [2] = { 51.9, 39.6, 1377, 600 }, + [3] = { 52.1, 39.5, 1377, 600 }, + [4] = { 47.6, 39.3, 1377, 600 }, + [5] = { 47.8, 39.2, 1377, 600 }, + [6] = { 51.7, 39.1, 1377, 600 }, + [7] = { 51.6, 38.8, 1377, 600 }, + [8] = { 50.9, 38.5, 1377, 600 }, + [9] = { 51.3, 38.1, 1377, 600 }, + [10] = { 49.4, 38, 1377, 600 }, + [11] = { 51.7, 37.9, 1377, 600 }, + [12] = { 50.4, 37.5, 1377, 600 }, + [13] = { 48.7, 37.3, 1377, 600 }, + [14] = { 50.1, 37, 1377, 600 }, + [15] = { 50.6, 37, 1377, 600 }, + [16] = { 52.2, 37, 1377, 600 }, + [17] = { 52, 36.8, 1377, 600 }, + [18] = { 49.1, 36.5, 1377, 600 }, + [19] = { 52.1, 36.4, 1377, 600 }, + [20] = { 50.7, 36.3, 1377, 600 }, + [21] = { 50.3, 36.3, 1377, 600 }, + [22] = { 48.7, 36.2, 1377, 600 }, + [23] = { 49.6, 36, 1377, 600 }, + [24] = { 50.2, 35.6, 1377, 600 }, + [25] = { 49.2, 34.9, 1377, 600 }, + [26] = { 49.5, 34.7, 1377, 600 }, + [27] = { 51.1, 34.6, 1377, 600 }, + [28] = { 50.8, 34.5, 1377, 600 }, + [29] = { 51, 34.5, 1377, 600 }, + [30] = { 51, 34.4, 1377, 600 }, + [31] = { 51.2, 34.3, 1377, 600 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15185] = { + ["coords"] = { + [1] = { 13.5, 28.8, 490, 600 }, + [2] = { 51.6, 33.1, 1377, 600 }, + [3] = { 71.9, 31, 1377, 600 }, + }, + ["lvl"] = "62", + ["rnk"] = "2", + }, + [15187] = { + ["coords"] = { + [1] = { 58.5, 47.3, 1537, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [15188] = { + ["coords"] = { + [1] = { 47.6, 65.8, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [15192] = { + ["coords"] = { + [1] = { 61.1, 56.9, 440, 300 }, + [2] = { 54.7, 53, 1941, 300 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15193] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "63", + ["rnk"] = "1", + }, + [15195] = { + ["coords"] = { + [1] = { 55.8, 70.5, 85, 300 }, + [2] = { 55.6, 69.9, 85, 300 }, + [3] = { 55.8, 69.3, 85, 300 }, + [4] = { 37.7, 25.8, 1497, 300 }, + [5] = { 36.7, 22.8, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15196] = { + ["coords"] = { + [1] = { 45.1, 92.3, 1377, 600 }, + [2] = { 71.6, 3.3, 3478, 600 }, + }, + ["lvl"] = "59", + ["rnk"] = "1", + }, + [15197] = { + ["coords"] = { + [1] = { 55.8, 68.9, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "2", + }, + [15198] = "_", + [15199] = { + ["coords"] = { + [1] = { 50, 57.5, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15201] = { + ["coords"] = { + [1] = { 72.6, 14.5, 1377, 300 }, + [2] = { 71.9, 14.5, 1377, 300 }, + [3] = { 71, 14.4, 1377, 300 }, + [4] = { 70.1, 14.4, 1377, 300 }, + [5] = { 69.8, 14.3, 1377, 300 }, + [6] = { 72.5, 13.6, 1377, 300 }, + [7] = { 71.6, 13.2, 1377, 300 }, + [8] = { 73.1, 13, 1377, 300 }, + [9] = { 71.3, 12.8, 1377, 300 }, + [10] = { 72.8, 12.7, 1377, 300 }, + [11] = { 73, 12.6, 1377, 300 }, + [12] = { 74.1, 12.4, 1377, 300 }, + }, + ["lvl"] = "60", + }, + [15210] = "_", + [15213] = { + ["coords"] = { + [1] = { 66.2, 22.4, 1377, 300 }, + [2] = { 65.6, 22.1, 1377, 300 }, + [3] = { 66.7, 21.7, 1377, 300 }, + [4] = { 67.3, 21.3, 1377, 300 }, + [5] = { 65.8, 21.2, 1377, 300 }, + [6] = { 65.8, 19, 1377, 300 }, + [7] = { 68.4, 17.9, 1377, 300 }, + [8] = { 67.5, 17, 1377, 300 }, + [9] = { 65.7, 16.9, 1377, 300 }, + [10] = { 73.1, 15.8, 1377, 300 }, + [11] = { 64.9, 15.5, 1377, 300 }, + [12] = { 72.6, 15.3, 1377, 300 }, + [13] = { 66.5, 15.3, 1377, 300 }, + [14] = { 65.4, 15.2, 1377, 300 }, + [15] = { 70.9, 13.1, 1377, 300 }, + [16] = { 70.9, 12.9, 1377, 300 }, + [17] = { 71.3, 12.2, 1377, 300 }, + [18] = { 72.3, 12, 1377, 300 }, + [19] = { 74.3, 11.7, 1377, 300 }, + }, + ["lvl"] = "60-61", + }, + [15215] = { + ["coords"] = { + [1] = { 77.4, 10.9, 3478, 300 }, + }, + ["lvl"] = "61-62", + ["rnk"] = "1", + }, + [15219] = "_", + [15221] = { + ["coords"] = { + [1] = { 40.6, 89.2, 1377, 300 }, + [2] = { 67.9, 0.8, 3478, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15222] = { + ["coords"] = { + [1] = { 41.3, 88.8, 1377, 300 }, + [2] = { 68.5, 0.6, 3478, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15223] = "_", + [15224] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [15226] = "_", + [15227] = "_", + [15228] = "_", + [15229] = { + ["coords"] = { + [1] = { 88.2, 3.9, 3428, 600 }, + [2] = { 45.4, 22.6, 5147, 600 }, + [3] = { 49.3, 19.4, 5147, 600 }, + [4] = { 58.2, 17.1, 5147, 600 }, + [5] = { 49.1, 16.8, 5147, 600 }, + [6] = { 51.7, 14.1, 5147, 600 }, + [7] = { 54.4, 13.6, 5147, 600 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15230] = { + ["coords"] = { + [1] = { 42.3, 83.7, 3428, 3600 }, + [2] = { 42.7, 83.3, 3428, 3600 }, + [3] = { 42.2, 83.1, 3428, 3600 }, + [4] = { 77.7, 43.2, 3428, 3600 }, + [5] = { 76.7, 43, 3428, 3600 }, + [6] = { 77.1, 42, 3428, 3600 }, + [7] = { 29.3, 50.6, 5147, 3600 }, + [8] = { 29.4, 50.5, 5147, 3600 }, + [9] = { 29.3, 50.5, 5147, 3600 }, + [10] = { 41.7, 36.4, 5147, 3600 }, + [11] = { 41.4, 36.3, 5147, 3600 }, + [12] = { 41.5, 36, 5147, 3600 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15231] = "_", + [15232] = "_", + [15233] = { + ["coords"] = { + [1] = { 40.5, 90.2, 3428, 3600 }, + [2] = { 43.3, 89.8, 3428, 3600 }, + [3] = { 43, 88.2, 3428, 3600 }, + [4] = { 54.9, 84.4, 3428, 3600 }, + [5] = { 57.3, 83.7, 3428, 3600 }, + [6] = { 55.8, 81.4, 3428, 3600 }, + [7] = { 38.3, 75.9, 3428, 3600 }, + [8] = { 39.5, 75.7, 3428, 3600 }, + [9] = { 41.2, 75.7, 3428, 3600 }, + [10] = { 60.4, 55.5, 3428, 3600 }, + [11] = { 61.5, 54, 3428, 3600 }, + [12] = { 45.6, 53.9, 3428, 3600 }, + [13] = { 62.7, 53.4, 3428, 3600 }, + [14] = { 60.8, 52.9, 3428, 3600 }, + [15] = { 47.5, 52.8, 3428, 3600 }, + [16] = { 61.8, 51.5, 3428, 3600 }, + [17] = { 59.7, 51.4, 3428, 3600 }, + [18] = { 45.2, 51.1, 3428, 3600 }, + [19] = { 44, 51, 3428, 3600 }, + [20] = { 48.2, 50.6, 3428, 3600 }, + [21] = { 45.3, 48.7, 3428, 3600 }, + [22] = { 48.5, 48.4, 3428, 3600 }, + [23] = { 72.8, 48, 3428, 3600 }, + [24] = { 46.8, 47.8, 3428, 3600 }, + [25] = { 69.9, 47.6, 3428, 3600 }, + [26] = { 74.1, 47, 3428, 3600 }, + [27] = { 61, 47, 3428, 3600 }, + [28] = { 71.4, 46.6, 3428, 3600 }, + [29] = { 70.3, 44.8, 3428, 3600 }, + [30] = { 61.8, 44.4, 3428, 3600 }, + [31] = { 60.4, 44.2, 3428, 3600 }, + [32] = { 72.4, 44.1, 3428, 3600 }, + [33] = { 63.6, 43.3, 3428, 3600 }, + [34] = { 66.8, 42.6, 3428, 3600 }, + [35] = { 64.8, 41.3, 3428, 3600 }, + [36] = { 28.7, 52.9, 5147, 3600 }, + [37] = { 29.6, 52.8, 5147, 3600 }, + [38] = { 29.5, 52.2, 5147, 3600 }, + [39] = { 33.7, 50.9, 5147, 3600 }, + [40] = { 34.6, 50.6, 5147, 3600 }, + [41] = { 34, 49.9, 5147, 3600 }, + [42] = { 27.9, 47.9, 5147, 3600 }, + [43] = { 28.3, 47.8, 5147, 3600 }, + [44] = { 28.9, 47.8, 5147, 3600 }, + [45] = { 35.7, 40.7, 5147, 3600 }, + [46] = { 36.1, 40.2, 5147, 3600 }, + [47] = { 30.4, 40.2, 5147, 3600 }, + [48] = { 36.5, 40, 5147, 3600 }, + [49] = { 35.8, 39.8, 5147, 3600 }, + [50] = { 31.1, 39.8, 5147, 3600 }, + [51] = { 36.1, 39.3, 5147, 3600 }, + [52] = { 35.4, 39.3, 5147, 3600 }, + [53] = { 30.3, 39.2, 5147, 3600 }, + [54] = { 29.9, 39.1, 5147, 3600 }, + [55] = { 31.4, 39, 5147, 3600 }, + [56] = { 30.3, 38.3, 5147, 3600 }, + [57] = { 31.5, 38.2, 5147, 3600 }, + [58] = { 40, 38.1, 5147, 3600 }, + [59] = { 30.9, 38, 5147, 3600 }, + [60] = { 39, 37.9, 5147, 3600 }, + [61] = { 40.5, 37.7, 5147, 3600 }, + [62] = { 35.9, 37.7, 5147, 3600 }, + [63] = { 39.5, 37.6, 5147, 3600 }, + [64] = { 39.1, 37, 5147, 3600 }, + [65] = { 36.2, 36.8, 5147, 3600 }, + [66] = { 35.7, 36.7, 5147, 3600 }, + [67] = { 39.9, 36.7, 5147, 3600 }, + [68] = { 36.8, 36.4, 5147, 3600 }, + [69] = { 37.9, 36.2, 5147, 3600 }, + [70] = { 37.2, 35.7, 5147, 3600 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15234] = "_", + [15235] = { + ["coords"] = { + [1] = { 97.5, 87.6, 3428, 3520 }, + [2] = { 51.8, 55.7, 5147, 3520 }, + [3] = { 51.4, 55.4, 5147, 3520 }, + [4] = { 54.3, 55.1, 5147, 3520 }, + [5] = { 54.5, 55, 5147, 3520 }, + [6] = { 54.7, 54.9, 5147, 3520 }, + [7] = { 58.1, 52.3, 5147, 3520 }, + [8] = { 48.7, 52, 5147, 3520 }, + [9] = { 52.5, 51.1, 5147, 3520 }, + [10] = { 54.5, 50.5, 5147, 3520 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [15236] = { + ["coords"] = { + [1] = { 97.9, 88.4, 3428, 3520 }, + [2] = { 98.4, 87.8, 3428, 3520 }, + [3] = { 98.2, 86.8, 3428, 3520 }, + [4] = { 51.8, 55.5, 5147, 3520 }, + [5] = { 51.6, 55.3, 5147, 3520 }, + [6] = { 54.3, 54.8, 5147, 3520 }, + [7] = { 54.6, 54.7, 5147, 3520 }, + [8] = { 57.9, 52.4, 5147, 3520 }, + [9] = { 48.9, 52.3, 5147, 3520 }, + [10] = { 49, 52.1, 5147, 3520 }, + [11] = { 57.8, 52.1, 5147, 3520 }, + [12] = { 58, 51.8, 5147, 3520 }, + [13] = { 49, 51.8, 5147, 3520 }, + [14] = { 52.7, 51.4, 5147, 3520 }, + [15] = { 52.8, 51.1, 5147, 3520 }, + [16] = { 52.7, 50.9, 5147, 3520 }, + [17] = { 54.3, 50.4, 5147, 3520 }, + [18] = { 54.7, 50.2, 5147, 3520 }, + [19] = { 54.5, 50.1, 5147, 3520 }, + [20] = { 55.1, 48.1, 5147, 3520 }, + [21] = { 54.9, 48, 5147, 3520 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15237] = "_", + [15238] = "_", + [15239] = "_", + [15240] = { + ["coords"] = { + [1] = { 55.3, 44.1, 5147, 3600 }, + [2] = { 56, 43.7, 5147, 3600 }, + [3] = { 58.4, 31, 5147, 3600 }, + [4] = { 57.8, 30.5, 5147, 3600 }, + [5] = { 61.2, 28.5, 5147, 3600 }, + [6] = { 60.9, 28.2, 5147, 3600 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [15241] = "_", + [15242] = "_", + [15243] = "_", + [15244] = "_", + [15245] = "_", + [15246] = { + ["coords"] = { + [1] = { 47.9, 85, 5147, 604800 }, + [2] = { 47.8, 84.3, 5147, 604800 }, + [3] = { 48, 82, 5147, 604800 }, + [4] = { 48.5, 81.9, 5147, 604800 }, + [5] = { 42.1, 79.7, 5147, 604800 }, + [6] = { 41.8, 79.4, 5147, 604800 }, + [7] = { 42, 79, 5147, 604800 }, + [8] = { 53.7, 78, 5147, 604800 }, + [9] = { 40, 77.8, 5147, 604800 }, + [10] = { 53.4, 77.7, 5147, 604800 }, + [11] = { 53.9, 77.6, 5147, 604800 }, + [12] = { 39.8, 77.5, 5147, 604800 }, + [13] = { 55, 77, 5147, 604800 }, + [14] = { 54.7, 76.7, 5147, 604800 }, + [15] = { 55.2, 76.6, 5147, 604800 }, + [16] = { 54.9, 76.3, 5147, 604800 }, + [17] = { 38.2, 73.8, 5147, 604800 }, + [18] = { 38.1, 73.2, 5147, 604800 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15247] = { + ["coords"] = { + [1] = { 42.5, 89.6, 3428, 3520 }, + [2] = { 41.6, 88.6, 3428, 3520 }, + [3] = { 56.1, 84.6, 3428, 3520 }, + [4] = { 40.5, 76.4, 3428, 3520 }, + [5] = { 39.7, 76.1, 3428, 3520 }, + [6] = { 46.4, 52.6, 3428, 3520 }, + [7] = { 29.3, 52.7, 5147, 3520 }, + [8] = { 29, 52.4, 5147, 3520 }, + [9] = { 34.1, 51, 5147, 3520 }, + [10] = { 28.7, 48.1, 5147, 3520 }, + [11] = { 28.4, 48, 5147, 3520 }, + [12] = { 30.7, 39.7, 5147, 3520 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15248] = "_", + [15249] = { + ["coords"] = { + [1] = { 97.7, 86.9, 3428, 3520 }, + [2] = { 51.6, 55.8, 5147, 3520 }, + [3] = { 58.2, 52.1, 5147, 3520 }, + [4] = { 48.8, 51.8, 5147, 3520 }, + [5] = { 52.5, 51.3, 5147, 3520 }, + [6] = { 54.9, 48.3, 5147, 3520 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15250] = { + ["coords"] = { + [1] = { 47.6, 84.7, 5147, 604800 }, + [2] = { 48.1, 84.6, 5147, 604800 }, + [3] = { 48.3, 82.3, 5147, 604800 }, + [4] = { 48.2, 81.6, 5147, 604800 }, + [5] = { 42.3, 79.3, 5147, 604800 }, + [6] = { 56.4, 77.8, 5147, 604800 }, + [7] = { 56.1, 77.5, 5147, 604800 }, + [8] = { 56.6, 77.4, 5147, 604800 }, + [9] = { 40.2, 77.4, 5147, 604800 }, + [10] = { 53.6, 77.4, 5147, 604800 }, + [11] = { 56.3, 77.1, 5147, 604800 }, + [12] = { 40, 77.1, 5147, 604800 }, + [13] = { 37.9, 73.5, 5147, 604800 }, + [14] = { 38.4, 73.4, 5147, 604800 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15251] = "_", + [15252] = { + ["coords"] = { + [1] = { 47.8, 84.6, 5147, 604800 }, + [2] = { 48.2, 81.9, 5147, 604800 }, + [3] = { 42, 79.4, 5147, 604800 }, + [4] = { 53.6, 77.7, 5147, 604800 }, + [5] = { 56.3, 77.4, 5147, 604800 }, + [6] = { 40, 77.4, 5147, 604800 }, + [7] = { 55, 76.6, 5147, 604800 }, + [8] = { 38.2, 73.5, 5147, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [15253] = "_", + [15254] = "_", + [15255] = "_", + [15256] = "_", + [15257] = "_", + [15258] = "_", + [15259] = "_", + [15262] = { + ["coords"] = { + [1] = { 45.8, 49.7, 3428, 3600 }, + [2] = { 46.4, 34.3, 3428, 3600 }, + [3] = { 45.6, 21.6, 3428, 3600 }, + [4] = { 30.5, 38.7, 5147, 3600 }, + [5] = { 30.7, 33.3, 5147, 3600 }, + [6] = { 30.4, 28.8, 5147, 3600 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15263] = { + ["coords"] = { + [1] = { 44.2, 44.7, 3428, 604800 }, + [2] = { 30, 36.9, 5147, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15264] = { + ["coords"] = { + [1] = { 38.7, 41, 3428, 3600 }, + [2] = { 40.6, 40.5, 3428, 3600 }, + [3] = { 45.2, 38.3, 3428, 3600 }, + [4] = { 47, 36.9, 3428, 3600 }, + [5] = { 35.6, 23.1, 3428, 3600 }, + [6] = { 35.3, 20.3, 3428, 3600 }, + [7] = { 38.5, 15.9, 3428, 3600 }, + [8] = { 40.6, 15.7, 3428, 3600 }, + [9] = { 28, 35.6, 5147, 3600 }, + [10] = { 28.7, 35.4, 5147, 3600 }, + [11] = { 30.3, 34.7, 5147, 3600 }, + [12] = { 30.9, 34.2, 5147, 3600 }, + [13] = { 26.9, 29.3, 5147, 3600 }, + [14] = { 26.8, 28.3, 5147, 3600 }, + [15] = { 28, 26.8, 5147, 3600 }, + [16] = { 28.7, 26.7, 5147, 3600 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15275] = { + ["coords"] = { + [1] = { 62.5, 73.4, 5147, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15276] = { + ["coords"] = { + [1] = { 61.6, 65.6, 5147, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15277] = { + ["coords"] = { + [1] = { 53, 68.5, 5147, 43200 }, + [2] = { 55.5, 67.5, 5147, 43200 }, + [3] = { 53.2, 66.4, 5147, 43200 }, + [4] = { 50.6, 65.7, 5147, 43200 }, + [5] = { 46, 59.1, 5147, 43200 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [15286] = { + ["coords"] = { + [1] = { 49.1, 56, 1377, 0 }, + }, + ["lvl"] = "62", + ["rnk"] = "2", + }, + [15288] = { + ["coords"] = { + [1] = { 49.3, 54.5, 1377, 0 }, + }, + ["lvl"] = "62", + ["rnk"] = "2", + }, + [15290] = { + ["coords"] = { + [1] = { 47.6, 56.4, 1377, 0 }, + }, + ["lvl"] = "62", + ["rnk"] = "2", + }, + [15293] = { + ["coords"] = { + [1] = { 62.6, 49.8, 1377, 300 }, + [2] = { 50.7, 33.5, 1377, 300 }, + }, + ["lvl"] = "60", + }, + [15299] = { + ["coords"] = { + [1] = { 71.6, 18.1, 5147, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15300] = { + ["coords"] = { + [1] = { 91.1, 20.2, 3428, 20 }, + [2] = { 90.9, 19.5, 3428, 20 }, + [3] = { 86.3, 18.2, 3428, 20 }, + [4] = { 92.2, 18.2, 3428, 20 }, + [5] = { 89.7, 18.1, 3428, 20 }, + [6] = { 90.9, 17.1, 3428, 20 }, + [7] = { 89.2, 16.7, 3428, 20 }, + [8] = { 87.9, 16, 3428, 20 }, + [9] = { 92.3, 15.8, 3428, 20 }, + [10] = { 85.1, 15.4, 3428, 20 }, + [11] = { 88, 14.6, 3428, 20 }, + [12] = { 90.5, 14.6, 3428, 20 }, + [13] = { 85.4, 14.1, 3428, 20 }, + [14] = { 91.7, 13.8, 3428, 20 }, + [15] = { 88.1, 13.5, 3428, 20 }, + [16] = { 86.8, 13, 3428, 20 }, + [17] = { 90.4, 12.8, 3428, 20 }, + [18] = { 91.8, 12.5, 3428, 20 }, + [19] = { 87, 11, 3428, 20 }, + [20] = { 91.4, 10.9, 3428, 20 }, + [21] = { 88, 10.5, 3428, 20 }, + [22] = { 86.3, 10, 3428, 20 }, + [23] = { 86.9, 9.1, 3428, 20 }, + [24] = { 87.9, 9, 3428, 20 }, + [25] = { 91.8, 8.3, 3428, 20 }, + [26] = { 90.2, 8, 3428, 20 }, + [27] = { 93.7, 7.8, 3428, 20 }, + [28] = { 85.8, 7, 3428, 20 }, + [29] = { 88.9, 6.3, 3428, 20 }, + [30] = { 90.2, 6.2, 3428, 20 }, + [31] = { 87.4, 5.7, 3428, 20 }, + [32] = { 94.2, 5.4, 3428, 20 }, + [33] = { 89, 4.9, 3428, 20 }, + [34] = { 90.8, 4.9, 3428, 20 }, + [35] = { 86.2, 4.7, 3428, 20 }, + [36] = { 86.5, 3.4, 3428, 20 }, + [37] = { 93.2, 3.1, 3428, 20 }, + [38] = { 94.8, 2.2, 3428, 20 }, + [39] = { 88.9, 2.1, 3428, 20 }, + [40] = { 93.3, 1.1, 3428, 20 }, + [41] = { 87.8, 0.9, 3428, 20 }, + [42] = { 96.1, 0.7, 3428, 20 }, + [43] = { 94.3, 0.5, 3428, 20 }, + [44] = { 46.5, 28.3, 5147, 20 }, + [45] = { 46.4, 28.1, 5147, 20 }, + [46] = { 44.8, 27.6, 5147, 20 }, + [47] = { 46.9, 27.6, 5147, 20 }, + [48] = { 46, 27.6, 5147, 20 }, + [49] = { 46.4, 27.2, 5147, 20 }, + [50] = { 45.8, 27.1, 5147, 20 }, + [51] = { 45.3, 26.8, 5147, 20 }, + [52] = { 46.9, 26.7, 5147, 20 }, + [53] = { 44.4, 26.6, 5147, 20 }, + [54] = { 45.4, 26.3, 5147, 20 }, + [55] = { 46.3, 26.3, 5147, 20 }, + [56] = { 44.5, 26.2, 5147, 20 }, + [57] = { 46.7, 26, 5147, 20 }, + [58] = { 45.4, 26, 5147, 20 }, + [59] = { 44.9, 25.8, 5147, 20 }, + [60] = { 46.2, 25.7, 5147, 20 }, + [61] = { 46.7, 25.6, 5147, 20 }, + [62] = { 45, 25.1, 5147, 20 }, + [63] = { 46.6, 25, 5147, 20 }, + [64] = { 45.4, 24.9, 5147, 20 }, + [65] = { 44.8, 24.7, 5147, 20 }, + [66] = { 45, 24.4, 5147, 20 }, + [67] = { 45.3, 24.4, 5147, 20 }, + [68] = { 46.7, 24.1, 5147, 20 }, + [69] = { 46.2, 24, 5147, 20 }, + [70] = { 47.4, 23.9, 5147, 20 }, + [71] = { 44.6, 23.7, 5147, 20 }, + [72] = { 45.7, 23.4, 5147, 20 }, + [73] = { 46.2, 23.4, 5147, 20 }, + [74] = { 45.2, 23.2, 5147, 20 }, + [75] = { 47.6, 23.1, 5147, 20 }, + [76] = { 45.7, 22.9, 5147, 20 }, + [77] = { 46.4, 22.9, 5147, 20 }, + [78] = { 44.7, 22.8, 5147, 20 }, + [79] = { 44.8, 22.4, 5147, 20 }, + [80] = { 47.2, 22.3, 5147, 20 }, + [81] = { 47.8, 22, 5147, 20 }, + [82] = { 45.7, 21.9, 5147, 20 }, + [83] = { 47.2, 21.6, 5147, 20 }, + [84] = { 45.3, 21.5, 5147, 20 }, + [85] = { 48.2, 21.4, 5147, 20 }, + [86] = { 47.6, 21.4, 5147, 20 }, + [87] = { 45.7, 21.2, 5147, 20 }, + [88] = { 48, 20.9, 5147, 20 }, + [89] = { 46, 20.8, 5147, 20 }, + [90] = { 46.7, 20.5, 5147, 20 }, + [91] = { 49.1, 20.4, 5147, 20 }, + [92] = { 45.7, 20.3, 5147, 20 }, + [93] = { 47, 20.2, 5147, 20 }, + [94] = { 49.7, 20, 5147, 20 }, + [95] = { 49.6, 19.9, 5147, 20 }, + [96] = { 47.3, 19.8, 5147, 20 }, + [97] = { 46.5, 19.8, 5147, 20 }, + [98] = { 49.2, 19.6, 5147, 20 }, + [99] = { 49.6, 19.3, 5147, 20 }, + [100] = { 46.3, 19, 5147, 20 }, + [101] = { 48.9, 18.9, 5147, 20 }, + [102] = { 49.4, 18.8, 5147, 20 }, + [103] = { 59.7, 18.7, 5147, 20 }, + [104] = { 46.7, 18.7, 5147, 20 }, + [105] = { 47.5, 18.6, 5147, 20 }, + [106] = { 47.9, 18.6, 5147, 20 }, + [107] = { 59.2, 18.5, 5147, 20 }, + [108] = { 47.2, 18.4, 5147, 20 }, + [109] = { 58.9, 18.4, 5147, 20 }, + [110] = { 58.3, 18.1, 5147, 20 }, + [111] = { 58.2, 18, 5147, 20 }, + [112] = { 47.7, 17.9, 5147, 20 }, + [113] = { 58.7, 17.9, 5147, 20 }, + [114] = { 59.2, 17.9, 5147, 20 }, + [115] = { 48, 17.8, 5147, 20 }, + [116] = { 48.9, 17.8, 5147, 20 }, + [117] = { 57.9, 17.6, 5147, 20 }, + [118] = { 49.4, 17.6, 5147, 20 }, + [119] = { 59, 17.4, 5147, 20 }, + [120] = { 49.7, 17.2, 5147, 20 }, + [121] = { 58.5, 17.2, 5147, 20 }, + [122] = { 48.9, 16.9, 5147, 20 }, + [123] = { 58.2, 16.8, 5147, 20 }, + [124] = { 49.7, 16.7, 5147, 20 }, + [125] = { 59.1, 16.6, 5147, 20 }, + [126] = { 50.1, 16.6, 5147, 20 }, + [127] = { 57.7, 16.6, 5147, 20 }, + [128] = { 56.8, 16.3, 5147, 20 }, + [129] = { 57.9, 16.3, 5147, 20 }, + [130] = { 58.9, 16.3, 5147, 20 }, + [131] = { 57.5, 16.2, 5147, 20 }, + [132] = { 56.7, 16.1, 5147, 20 }, + [133] = { 49.9, 16.1, 5147, 20 }, + [134] = { 51, 16, 5147, 20 }, + [135] = { 49.5, 16, 5147, 20 }, + [136] = { 48.5, 16, 5147, 20 }, + [137] = { 58.7, 16, 5147, 20 }, + [138] = { 56.5, 16, 5147, 20 }, + [139] = { 48.8, 15.9, 5147, 20 }, + [140] = { 57.6, 15.7, 5147, 20 }, + [141] = { 51.5, 15.7, 5147, 20 }, + [142] = { 50.2, 15.7, 5147, 20 }, + [143] = { 57.1, 15.4, 5147, 20 }, + [144] = { 52.3, 15.1, 5147, 20 }, + [145] = { 56.1, 15.1, 5147, 20 }, + [146] = { 55.6, 15.1, 5147, 20 }, + [147] = { 50.7, 15, 5147, 20 }, + [148] = { 56.4, 15, 5147, 20 }, + [149] = { 51.2, 14.9, 5147, 20 }, + [150] = { 55.3, 14.9, 5147, 20 }, + [151] = { 49.9, 14.8, 5147, 20 }, + [152] = { 52.7, 14.8, 5147, 20 }, + [153] = { 57.4, 14.7, 5147, 20 }, + [154] = { 56.5, 14.6, 5147, 20 }, + [155] = { 51.9, 14.5, 5147, 20 }, + [156] = { 57.1, 14.5, 5147, 20 }, + [157] = { 54.9, 14.5, 5147, 20 }, + [158] = { 55.8, 14.5, 5147, 20 }, + [159] = { 51.6, 14.5, 5147, 20 }, + [160] = { 50.3, 14.5, 5147, 20 }, + [161] = { 54.1, 14.4, 5147, 20 }, + [162] = { 51.2, 14.3, 5147, 20 }, + [163] = { 56.2, 14.3, 5147, 20 }, + [164] = { 53.7, 14.3, 5147, 20 }, + [165] = { 54.6, 14.1, 5147, 20 }, + [166] = { 51.5, 14.1, 5147, 20 }, + [167] = { 50.9, 14.1, 5147, 20 }, + [168] = { 53.1, 14, 5147, 20 }, + [169] = { 55.4, 14, 5147, 20 }, + [170] = { 52.1, 13.9, 5147, 20 }, + [171] = { 52.6, 13.9, 5147, 20 }, + [172] = { 56.3, 13.9, 5147, 20 }, + [173] = { 54.9, 13.8, 5147, 20 }, + [174] = { 53.4, 13.6, 5147, 20 }, + [175] = { 54.6, 13.6, 5147, 20 }, + [176] = { 56, 13.6, 5147, 20 }, + [177] = { 54.3, 13.5, 5147, 20 }, + [178] = { 52.6, 13.5, 5147, 20 }, + [179] = { 53.1, 13.5, 5147, 20 }, + [180] = { 53.8, 13.4, 5147, 20 }, + [181] = { 54.8, 13.3, 5147, 20 }, + [182] = { 51.6, 13.3, 5147, 20 }, + [183] = { 51.8, 13.2, 5147, 20 }, + [184] = { 55.4, 13.1, 5147, 20 }, + [185] = { 52.6, 13, 5147, 20 }, + [186] = { 52.1, 12.9, 5147, 20 }, + [187] = { 54.2, 12.6, 5147, 20 }, + [188] = { 53.7, 12.6, 5147, 20 }, + [189] = { 53.3, 12.6, 5147, 20 }, + }, + ["lvl"] = "60", + }, + [15302] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [15303] = { + ["coords"] = { + [1] = { 44, 70.6, 12, 180 }, + [2] = { 38, 30.6, 215, 25 }, + [3] = { 40.3, 67.6, 1638, 25 }, + }, + ["lvl"] = "35", + }, + [15310] = { + ["coords"] = { + [1] = { 56.5, 51.8, 1519, 477 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [15311] = { + ["coords"] = { + [1] = { 39.6, 79.6, 5147, 604800 }, + [2] = { 41.3, 77, 5147, 604800 }, + [3] = { 36, 72.8, 5147, 604800 }, + [4] = { 38, 67.6, 5147, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [15312] = { + ["coords"] = { + [1] = { 40.1, 80, 5147, 604800 }, + [2] = { 39.8, 79, 5147, 604800 }, + [3] = { 41.6, 77.3, 5147, 604800 }, + [4] = { 40.9, 77.1, 5147, 604800 }, + [5] = { 35.8, 73.3, 5147, 604800 }, + [6] = { 36.4, 72.2, 5147, 604800 }, + [7] = { 38.5, 68, 5147, 604800 }, + [8] = { 37.5, 67.8, 5147, 604800 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15316] = { + ["coords"] = { + [1] = { 47.6, 85.4, 5147, 25 }, + [2] = { 48, 85.1, 5147, 25 }, + [3] = { 47.7, 84.7, 5147, 25 }, + [4] = { 47.3, 84.3, 5147, 25 }, + [5] = { 47.7, 84.1, 5147, 25 }, + [6] = { 49.6, 84, 5147, 25 }, + [7] = { 49.7, 83.1, 5147, 25 }, + [8] = { 49.4, 83, 5147, 25 }, + [9] = { 49.7, 82.8, 5147, 25 }, + [10] = { 45.7, 82.8, 5147, 25 }, + [11] = { 50, 82.6, 5147, 25 }, + [12] = { 46.3, 82.3, 5147, 25 }, + [13] = { 45.3, 82, 5147, 25 }, + [14] = { 45.8, 81.8, 5147, 25 }, + [15] = { 48.8, 81.8, 5147, 25 }, + [16] = { 50.3, 80.8, 5147, 25 }, + [17] = { 51.1, 78.1, 5147, 25 }, + [18] = { 51.3, 77.9, 5147, 25 }, + [19] = { 56.4, 77.8, 5147, 25 }, + [20] = { 56.1, 77.6, 5147, 25 }, + [21] = { 51.2, 77.6, 5147, 25 }, + [22] = { 50.9, 77.6, 5147, 25 }, + [23] = { 50.9, 77.4, 5147, 25 }, + [24] = { 56.6, 77.3, 5147, 25 }, + [25] = { 56.3, 77.2, 5147, 25 }, + [26] = { 55.2, 76.9, 5147, 25 }, + [27] = { 54.4, 76.6, 5147, 25 }, + [28] = { 54.8, 76.4, 5147, 25 }, + [29] = { 52.4, 75.8, 5147, 25 }, + [30] = { 54, 75.4, 5147, 25 }, + [31] = { 53.9, 75.3, 5147, 25 }, + [32] = { 54.2, 75, 5147, 25 }, + [33] = { 56.3, 74.8, 5147, 25 }, + [34] = { 53.8, 74.8, 5147, 25 }, + [35] = { 62.1, 74.7, 5147, 3600 }, + [36] = { 54.2, 74.6, 5147, 25 }, + [37] = { 62.6, 74.1, 5147, 25 }, + [38] = { 63, 73.9, 5147, 25 }, + [39] = { 60.5, 73.8, 5147, 3600 }, + [40] = { 63.4, 73.5, 5147, 25 }, + [41] = { 59.4, 73.2, 5147, 3600 }, + [42] = { 63, 73.1, 5147, 25 }, + [43] = { 60.4, 73.1, 5147, 25 }, + [44] = { 63.3, 73, 5147, 25 }, + [45] = { 60.8, 72.9, 5147, 3600 }, + [46] = { 60.1, 72.5, 5147, 25 }, + [47] = { 59.7, 72.4, 5147, 25 }, + [48] = { 61.8, 71.9, 5147, 3600 }, + [49] = { 59.3, 71.9, 5147, 3600 }, + [50] = { 57.5, 71.9, 5147, 3600 }, + [51] = { 56.9, 71.6, 5147, 25 }, + [52] = { 61.1, 71.5, 5147, 3600 }, + [53] = { 57.9, 71.3, 5147, 3600 }, + [54] = { 60, 71.3, 5147, 25 }, + [55] = { 60.6, 71.3, 5147, 3600 }, + [56] = { 58.9, 71.3, 5147, 25 }, + [57] = { 57.3, 71.2, 5147, 25 }, + [58] = { 61, 71, 5147, 25 }, + [59] = { 62, 70.8, 5147, 3600 }, + [60] = { 57.4, 70.7, 5147, 25 }, + [61] = { 60.5, 70.7, 5147, 25 }, + [62] = { 59, 70.7, 5147, 25 }, + [63] = { 57.2, 70.3, 5147, 25 }, + [64] = { 59.4, 70.3, 5147, 3600 }, + [65] = { 57.8, 70.3, 5147, 3600 }, + [66] = { 62.5, 70.3, 5147, 3600 }, + [67] = { 59, 70.1, 5147, 25 }, + [68] = { 63.2, 69.9, 5147, 25 }, + [69] = { 58.7, 69.6, 5147, 25 }, + [70] = { 62, 69.5, 5147, 3600 }, + [71] = { 62.6, 69.2, 5147, 3600 }, + [72] = { 50.2, 68.9, 5147, 25 }, + [73] = { 59.9, 68.9, 5147, 25 }, + [74] = { 52.1, 68.8, 5147, 25 }, + [75] = { 61.2, 68.8, 5147, 3600 }, + [76] = { 62.1, 68.5, 5147, 25 }, + [77] = { 59.2, 68.4, 5147, 3600 }, + [78] = { 58.5, 68.4, 5147, 3600 }, + [79] = { 60.4, 68.3, 5147, 25 }, + [80] = { 59.9, 68.2, 5147, 25 }, + [81] = { 53.6, 67.9, 5147, 25 }, + [82] = { 62.8, 67.9, 5147, 25 }, + [83] = { 59, 67.9, 5147, 25 }, + [84] = { 58.1, 67.9, 5147, 25 }, + [85] = { 58.5, 67.8, 5147, 25 }, + [86] = { 59.7, 67.7, 5147, 3600 }, + [87] = { 60.6, 67.5, 5147, 25 }, + [88] = { 60.9, 67.5, 5147, 25 }, + [89] = { 61.3, 67.4, 5147, 3600 }, + [90] = { 59.2, 67.1, 5147, 25 }, + [91] = { 60.3, 66.8, 5147, 25 }, + [92] = { 59.6, 66.3, 5147, 3600 }, + [93] = { 62.6, 66, 5147, 25 }, + [94] = { 53.7, 65.6, 5147, 25 }, + [95] = { 62.3, 65.2, 5147, 25 }, + [96] = { 61.1, 65.1, 5147, 25 }, + [97] = { 60.6, 64.9, 5147, 3600 }, + [98] = { 61.7, 64.9, 5147, 25 }, + [99] = { 61.2, 64.1, 5147, 25 }, + [100] = { 46.1, 57.6, 5147, 25 }, + }, + ["lvl"] = "60", + }, + [15317] = { + ["coords"] = { + [1] = { 48.5, 85, 5147, 3600 }, + [2] = { 48.1, 84.9, 5147, 25 }, + [3] = { 48.3, 84.3, 5147, 3600 }, + [4] = { 48.4, 84.1, 5147, 25 }, + [5] = { 48.2, 83.9, 5147, 3600 }, + [6] = { 45.4, 82.8, 5147, 3600 }, + [7] = { 44.7, 82.7, 5147, 3600 }, + [8] = { 45, 82.1, 5147, 3600 }, + [9] = { 51.6, 82.1, 5147, 3600 }, + [10] = { 51.9, 82, 5147, 3600 }, + [11] = { 51.7, 81.6, 5147, 3600 }, + [12] = { 51.9, 81.5, 5147, 3600 }, + [13] = { 54.5, 79, 5147, 3600 }, + [14] = { 52.9, 78, 5147, 3600 }, + [15] = { 51.4, 77.7, 5147, 25 }, + [16] = { 55.8, 77.7, 5147, 3600 }, + [17] = { 56.1, 77.7, 5147, 3600 }, + [18] = { 56.6, 77.6, 5147, 25 }, + [19] = { 51.5, 77.4, 5147, 25 }, + [20] = { 56.6, 77.4, 5147, 3600 }, + [21] = { 51.4, 77.4, 5147, 25 }, + [22] = { 51.1, 77.3, 5147, 25 }, + [23] = { 56.1, 77.3, 5147, 3600 }, + [24] = { 54.5, 77.2, 5147, 3600 }, + [25] = { 51.2, 77.2, 5147, 25 }, + [26] = { 56.5, 76.9, 5147, 25 }, + [27] = { 55.2, 76.6, 5147, 3600 }, + [28] = { 54.6, 76.5, 5147, 3600 }, + [29] = { 55, 76.3, 5147, 3600 }, + [30] = { 53.9, 75.3, 5147, 3600 }, + [31] = { 54.1, 75.2, 5147, 3600 }, + [32] = { 62.2, 74.9, 5147, 3600 }, + [33] = { 53.7, 74.9, 5147, 25 }, + [34] = { 54, 74.8, 5147, 3600 }, + [35] = { 62.5, 74.7, 5147, 3600 }, + [36] = { 53.9, 74.6, 5147, 3600 }, + [37] = { 61.8, 74.4, 5147, 3600 }, + [38] = { 57.3, 74.1, 5147, 3600 }, + [39] = { 63, 73.9, 5147, 3600 }, + [40] = { 60.2, 73.8, 5147, 25 }, + [41] = { 62.2, 73.8, 5147, 3600 }, + [42] = { 59.6, 73.5, 5147, 3600 }, + [43] = { 62.7, 73.4, 5147, 25 }, + [44] = { 59.5, 73.2, 5147, 3600 }, + [45] = { 59.1, 72.9, 5147, 3600 }, + [46] = { 60, 72.7, 5147, 3600 }, + [47] = { 57.3, 72.5, 5147, 3600 }, + [48] = { 59.3, 72.4, 5147, 3600 }, + [49] = { 63.2, 72.4, 5147, 25 }, + [50] = { 60.9, 72.1, 5147, 3600 }, + [51] = { 61.2, 72, 5147, 3600 }, + [52] = { 61.7, 71.8, 5147, 3600 }, + [53] = { 60.6, 71.8, 5147, 25 }, + [54] = { 59.3, 71.5, 5147, 3600 }, + [55] = { 61.4, 71.5, 5147, 3600 }, + [56] = { 61.8, 71.2, 5147, 3600 }, + [57] = { 59.5, 70.9, 5147, 3600 }, + [58] = { 63, 70.6, 5147, 3600 }, + [59] = { 56.8, 70.6, 5147, 3600 }, + [60] = { 58.8, 70.5, 5147, 25 }, + [61] = { 61.3, 70.4, 5147, 25 }, + [62] = { 62.6, 70.4, 5147, 3600 }, + [63] = { 59.8, 70.4, 5147, 3600 }, + [64] = { 61.8, 70.4, 5147, 3600 }, + [65] = { 59.6, 70.1, 5147, 3600 }, + [66] = { 63, 70, 5147, 3600 }, + [67] = { 56.6, 70, 5147, 3600 }, + [68] = { 60.5, 70, 5147, 3600 }, + [69] = { 57.3, 69.9, 5147, 3600 }, + [70] = { 62.3, 69.9, 5147, 3600 }, + [71] = { 58.7, 69.8, 5147, 3600 }, + [72] = { 57, 69.8, 5147, 3600 }, + [73] = { 61.4, 69.7, 5147, 3600 }, + [74] = { 60, 69.6, 5147, 3600 }, + [75] = { 62.4, 69.2, 5147, 3600 }, + [76] = { 59.3, 69.2, 5147, 25 }, + [77] = { 60.7, 69, 5147, 3600 }, + [78] = { 61.5, 68.7, 5147, 3600 }, + [79] = { 58.8, 68.5, 5147, 25 }, + [80] = { 55.6, 68.4, 5147, 3600 }, + [81] = { 62.8, 68.4, 5147, 25 }, + [82] = { 61, 68.4, 5147, 3600 }, + [83] = { 62.4, 68.3, 5147, 25 }, + [84] = { 60.3, 68.2, 5147, 25 }, + [85] = { 49.8, 68.1, 5147, 3600 }, + [86] = { 60.8, 68.1, 5147, 25 }, + [87] = { 61.2, 67.9, 5147, 3600 }, + [88] = { 61.5, 67.6, 5147, 3600 }, + [89] = { 58.4, 67.5, 5147, 25 }, + [90] = { 59.8, 67.5, 5147, 25 }, + [91] = { 58.7, 67.4, 5147, 3600 }, + [92] = { 59.6, 67.3, 5147, 3600 }, + [93] = { 61.2, 67.2, 5147, 3600 }, + [94] = { 60.6, 67.1, 5147, 25 }, + [95] = { 50, 67.1, 5147, 3600 }, + [96] = { 59.8, 67.1, 5147, 3600 }, + [97] = { 59.2, 66.7, 5147, 3600 }, + [98] = { 54.8, 66.7, 5147, 25 }, + [99] = { 50.5, 66.7, 5147, 3600 }, + [100] = { 49, 66.3, 5147, 25 }, + [101] = { 59.6, 66.2, 5147, 3600 }, + [102] = { 61.6, 65.7, 5147, 3600 }, + [103] = { 55.6, 65.6, 5147, 25 }, + [104] = { 62.3, 65.6, 5147, 3600 }, + [105] = { 61.3, 65.2, 5147, 3600 }, + [106] = { 62.5, 65, 5147, 3600 }, + [107] = { 62.1, 64.9, 5147, 3600 }, + [108] = { 60.6, 64.8, 5147, 25 }, + [109] = { 49.8, 63.7, 5147, 3600 }, + [110] = { 48, 62.6, 5147, 25 }, + [111] = { 50.5, 62.1, 5147, 25 }, + [112] = { 45.6, 56.5, 5147, 3600 }, + [113] = { 56.4, 36.5, 5147, 25 }, + }, + ["lvl"] = "60", + }, + [15318] = { + ["coords"] = { + [1] = { 64.2, 81.5, 3429, 347600 }, + [2] = { 61.7, 81.4, 3429, 347600 }, + [3] = { 63.8, 81.4, 3429, 347600 }, + [4] = { 61.1, 79.9, 3429, 347600 }, + [5] = { 65.8, 76.9, 3429, 347600 }, + [6] = { 66, 75.3, 3429, 347600 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15319] = { + ["coords"] = { + [1] = { 64.7, 81.5, 3429, 347600 }, + [2] = { 61.2, 80.8, 3429, 347600 }, + [3] = { 61.8, 80.5, 3429, 347600 }, + [4] = { 65.8, 80.5, 3429, 347600 }, + [5] = { 65.7, 75.8, 3429, 347600 }, + [6] = { 65.8, 74.8, 3429, 347600 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15320] = { + ["coords"] = { + [1] = { 64.9, 68.6, 3429, 347600 }, + [2] = { 73.3, 66, 3429, 347600 }, + [3] = { 73.6, 65.4, 3429, 347600 }, + [4] = { 65.3, 64.6, 3429, 347600 }, + [5] = { 65.7, 64.4, 3429, 347600 }, + [6] = { 65.2, 59.3, 3429, 347600 }, + [7] = { 63.1, 57.1, 3429, 347600 }, + [8] = { 69.4, 54.3, 3429, 347600 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15322] = "_", + [15323] = { + ["coords"] = { + [1] = { 65.4, 68.6, 3429, 347600 }, + [2] = { 65.6, 63.9, 3429, 347600 }, + [3] = { 64.9, 58.9, 3429, 347600 }, + [4] = { 65.2, 58.5, 3429, 347600 }, + [5] = { 62.6, 56.9, 3429, 347600 }, + [6] = { 62.8, 56.3, 3429, 347600 }, + [7] = { 69.6, 54.9, 3429, 347600 }, + [8] = { 68.9, 54.9, 3429, 347600 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15324] = { + ["coords"] = { + [1] = { 60.3, 55.4, 3429, 347600 }, + [2] = { 60.7, 54.6, 3429, 347600 }, + [3] = { 54.3, 49.8, 3429, 347600 }, + [4] = { 54.6, 49.1, 3429, 347600 }, + [5] = { 59.3, 28.3, 3429, 347600 }, + [6] = { 58.4, 27, 3429, 347600 }, + [7] = { 60.4, 17.9, 3429, 347600 }, + [8] = { 60.8, 16.7, 3429, 347600 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15325] = { + ["coords"] = { + [1] = { 61.2, 88.3, 3429, 347600 }, + [2] = { 61.4, 88, 3429, 347600 }, + [3] = { 59.2, 83.4, 3429, 347600 }, + [4] = { 59.3, 83.1, 3429, 347600 }, + [5] = { 59.2, 82.9, 3429, 347600 }, + [6] = { 58, 81.3, 3429, 347600 }, + [7] = { 57.7, 81.2, 3429, 347600 }, + [8] = { 57.8, 81.1, 3429, 347600 }, + [9] = { 57.9, 80.5, 3429, 347600 }, + [10] = { 58, 80.3, 3429, 347600 }, + [11] = { 57.9, 80.1, 3429, 347600 }, + [12] = { 55.4, 38.6, 3429, 347600 }, + [13] = { 55.4, 38, 3429, 347600 }, + [14] = { 55.6, 32.6, 3429, 347600 }, + [15] = { 55.9, 32.2, 3429, 347600 }, + [16] = { 55.7, 30.3, 3429, 347600 }, + [17] = { 57.9, 30, 3429, 347600 }, + [18] = { 55.7, 29.9, 3429, 347600 }, + [19] = { 58.2, 29.6, 3429, 347600 }, + [20] = { 61.9, 24, 3429, 347600 }, + [21] = { 61.6, 23.8, 3429, 347600 }, + [22] = { 60.1, 23.7, 3429, 347600 }, + [23] = { 57.7, 23.5, 3429, 347600 }, + [24] = { 57.3, 23.4, 3429, 347600 }, + [25] = { 60, 23.3, 3429, 347600 }, + [26] = { 61.9, 21.6, 3429, 347600 }, + [27] = { 62.1, 21.3, 3429, 347600 }, + [28] = { 66, 19.6, 3429, 347600 }, + [29] = { 66.4, 19.5, 3429, 347600 }, + [30] = { 61.9, 19, 3429, 347600 }, + [31] = { 62.2, 18.7, 3429, 347600 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15326] = "_", + [15327] = { + ["coords"] = { + [1] = { 61.3, 88.2, 3429, 347600 }, + [2] = { 61.1, 88.1, 3429, 347600 }, + [3] = { 61.2, 87.9, 3429, 347600 }, + [4] = { 59.1, 83.2, 3429, 347600 }, + [5] = { 59, 83, 3429, 347600 }, + [6] = { 57.8, 81.6, 3429, 347600 }, + [7] = { 57.7, 81.4, 3429, 347600 }, + [8] = { 57.8, 80.4, 3429, 347600 }, + [9] = { 57.8, 80.1, 3429, 347600 }, + [10] = { 55.6, 38.3, 3429, 347600 }, + [11] = { 55.9, 32.7, 3429, 347600 }, + [12] = { 55.8, 30.2, 3429, 347600 }, + [13] = { 57.9, 29.5, 3429, 347600 }, + [14] = { 61.9, 23.7, 3429, 347600 }, + [15] = { 60.3, 23.1, 3429, 347600 }, + [16] = { 57.5, 23, 3429, 347600 }, + [17] = { 62.3, 21.7, 3429, 347600 }, + [18] = { 66.2, 19.8, 3429, 347600 }, + [19] = { 62.3, 19.1, 3429, 347600 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15329] = "_", + [15330] = "_", + [15331] = "_", + [15332] = "_", + [15333] = { + ["coords"] = { + [1] = { 60.7, 90.3, 3429, 347600 }, + [2] = { 61.5, 89.9, 3429, 347600 }, + [3] = { 61.9, 89.3, 3429, 347600 }, + [4] = { 59.8, 86.7, 3429, 347600 }, + [5] = { 57.4, 86.5, 3429, 347600 }, + [6] = { 55.6, 86.4, 3429, 347600 }, + [7] = { 58.2, 85.8, 3429, 347600 }, + [8] = { 54.5, 85, 3429, 347600 }, + [9] = { 58.2, 84.7, 3429, 347600 }, + [10] = { 55.1, 84.1, 3429, 347600 }, + [11] = { 57, 83.8, 3429, 347600 }, + [12] = { 56, 83.7, 3429, 347600 }, + [13] = { 58.8, 83, 3429, 347600 }, + [14] = { 64.4, 81.2, 3429, 347600 }, + [15] = { 61.8, 81.1, 3429, 347600 }, + [16] = { 56.9, 81, 3429, 347600 }, + [17] = { 58, 81, 3429, 347600 }, + [18] = { 62.5, 80.8, 3429, 347600 }, + [19] = { 64.9, 80.5, 3429, 347600 }, + [20] = { 63.8, 80.3, 3429, 347600 }, + [21] = { 60.8, 80.3, 3429, 347600 }, + [22] = { 61.5, 79.9, 3429, 347600 }, + [23] = { 60, 79.5, 3429, 347600 }, + [24] = { 60.9, 79.5, 3429, 347600 }, + [25] = { 65.6, 79, 3429, 347600 }, + [26] = { 65, 78, 3429, 347600 }, + [27] = { 65.5, 77.7, 3429, 347600 }, + [28] = { 61.8, 76.1, 3429, 347600 }, + [29] = { 66.9, 75.9, 3429, 347600 }, + [30] = { 62.9, 75.8, 3429, 347600 }, + [31] = { 66.7, 75.1, 3429, 347600 }, + [32] = { 61.9, 75, 3429, 347600 }, + [33] = { 67.6, 74.8, 3429, 347600 }, + [34] = { 66, 74.6, 3429, 347600 }, + [35] = { 63.2, 74.3, 3429, 347600 }, + [36] = { 63.5, 73, 3429, 347600 }, + [37] = { 62.2, 72.9, 3429, 347600 }, + }, + ["lvl"] = "55", + }, + [15335] = { + ["coords"] = { + [1] = { 66.1, 69.2, 3429, 347600 }, + [2] = { 69.6, 65.1, 3429, 347600 }, + [3] = { 65.7, 64.3, 3429, 347600 }, + [4] = { 41.2, 42.5, 3429, 347600 }, + [5] = { 38, 42.5, 3429, 347600 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [15336] = { + ["coords"] = { + [1] = { 61.5, 80.9, 3429, 347600 }, + [2] = { 65, 80.8, 3429, 347600 }, + [3] = { 61.4, 80.2, 3429, 347600 }, + [4] = { 65.5, 80, 3429, 347600 }, + [5] = { 66.1, 76.1, 3429, 347600 }, + [6] = { 66.2, 75.6, 3429, 347600 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15337] = "_", + [15338] = { + ["coords"] = { + [1] = { 31.9, 52.5, 3429, 347600 }, + [2] = { 49.2, 51.2, 3429, 347600 }, + [3] = { 49.8, 51.2, 3429, 347600 }, + [4] = { 43.2, 45, 3429, 347600 }, + [5] = { 43.9, 44.8, 3429, 347600 }, + [6] = { 40.3, 44.6, 3429, 347600 }, + [7] = { 52.5, 42.4, 3429, 347600 }, + [8] = { 33.4, 35.4, 3429, 347600 }, + [9] = { 40.6, 33.1, 3429, 347600 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15339] = { + ["coords"] = { + [1] = { 40, 75.2, 3429, 347600 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15340] = { + ["coords"] = { + [1] = { 30.7, 36.9, 3429, 347600 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15341] = { + ["coords"] = { + [1] = { 29.1, 93.6, 1377, 25 }, + [2] = { 57.2, 53.7, 3429, 347600 }, + [3] = { 58.2, 4.3, 3478, 25 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15342] = "_", + [15343] = { + ["coords"] = { + [1] = { 60.4, 29.1, 3429, 347600 }, + [2] = { 58.5, 27.6, 3429, 347600 }, + [3] = { 64.8, 25.5, 3429, 347600 }, + [4] = { 63.2, 22.9, 3429, 347600 }, + [5] = { 61.7, 21.7, 3429, 347600 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15344] = { + ["coords"] = { + [1] = { 59.5, 53.5, 3429, 347600 }, + [2] = { 59.2, 52.5, 3429, 347600 }, + [3] = { 58.3, 52.1, 3429, 347600 }, + [4] = { 58, 51.7, 3429, 347600 }, + [5] = { 57.7, 51.4, 3429, 347600 }, + [6] = { 60.3, 51, 3429, 347600 }, + [7] = { 60, 50.6, 3429, 347600 }, + [8] = { 56.2, 50.5, 3429, 347600 }, + [9] = { 59.7, 50.2, 3429, 347600 }, + [10] = { 56.6, 50, 3429, 347600 }, + [11] = { 56.2, 50, 3429, 347600 }, + [12] = { 55.9, 50, 3429, 347600 }, + [13] = { 61.3, 47.8, 3429, 347600 }, + [14] = { 57.6, 47.4, 3429, 347600 }, + [15] = { 61, 47.3, 3429, 347600 }, + [16] = { 56.9, 47.3, 3429, 347600 }, + [17] = { 60.7, 46.9, 3429, 347600 }, + [18] = { 57.7, 46.8, 3429, 347600 }, + [19] = { 57, 46.7, 3429, 347600 }, + [20] = { 57.4, 46.6, 3429, 347600 }, + [21] = { 59.8, 46.3, 3429, 347600 }, + [22] = { 59.1, 45.3, 3429, 347600 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15345] = "_", + [15346] = "_", + [15347] = "_", + [15348] = { + ["coords"] = { + [1] = { 56.2, 36.4, 3429, 347600 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15350] = { + ["coords"] = { + [1] = { 46.7, 8.7, 17, 25 }, + [2] = { 63.1, 59.9, 36, 25 }, + [3] = { 73.5, 29.1, 45, 25 }, + [4] = { 74.7, 14.8, 130, 120 }, + [5] = { 41.6, 32.4, 215, 250 }, + [6] = { 64.1, 0.8, 267, 25 }, + [7] = { 58.3, 97.9, 1497, 120 }, + [8] = { 80.4, 29.5, 1637, 120 }, + [9] = { 57.8, 76.3, 1638, 250 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [15351] = { + ["coords"] = { + [1] = { 39.3, 82.3, 36, 25 }, + [2] = { 45.7, 45.7, 45, 300 }, + [3] = { 29.3, 54.1, 141, 300 }, + [4] = { 43.2, 20.5, 267, 25 }, + [5] = { 61.9, 83.8, 331, 25 }, + [6] = { 69.8, 89.7, 1537, 300 }, + [7] = { 58, 34.5, 1657, 300 }, + [8] = { 60.1, 98, 5581, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [15352] = "_", + [15355] = { + ["coords"] = { + [1] = { 47.1, 76.1, 3429, 347600 }, + [2] = { 50.3, 71.2, 3429, 347600 }, + [3] = { 47, 69.4, 3429, 347600 }, + [4] = { 40.8, 66.8, 3429, 347600 }, + [5] = { 52, 66.6, 3429, 347600 }, + [6] = { 45.8, 61.1, 3429, 347600 }, + [7] = { 41, 60.8, 3429, 347600 }, + [8] = { 45.8, 59.3, 3429, 347600 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [15356] = "_", + [15357] = "_", + [15358] = "_", + [15359] = "_", + [15360] = "_", + [15369] = { + ["coords"] = { + [1] = { 59.7, 87.5, 3429, 347600 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15370] = { + ["coords"] = { + [1] = { 71.8, 60.1, 3429, 347600 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15378] = { + ["coords"] = { + [1] = { 50.6, 92.1, 3428, 6380 }, + [2] = { 32.2, 53.6, 5147, 6380 }, + }, + ["fac"] = "AH", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15379] = { + ["coords"] = { + [1] = { 50.5, 93.4, 3428, 6380 }, + [2] = { 32.2, 54.1, 5147, 6380 }, + }, + ["fac"] = "AH", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15380] = { + ["coords"] = { + [1] = { 49.7, 93.8, 3428, 6380 }, + [2] = { 31.9, 54.2, 5147, 6380 }, + }, + ["fac"] = "AH", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15383] = { + ["coords"] = { + [1] = { 64.6, 67.5, 1537, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "56", + ["rnk"] = "1", + }, + [15384] = { + ["coords"] = { + [1] = { 46.4, 35.2, 10, 300 }, + [2] = { 46.8, 34.7, 10, 300 }, + [3] = { 46.1, 34.7, 10, 300 }, + [4] = { 46.6, 34.5, 10, 300 }, + [5] = { 5.8, 63.4, 11, 300 }, + [6] = { 5.2, 57.7, 11, 300 }, + [7] = { 71.6, 56.1, 15, 360 }, + [8] = { 63.7, 38.5, 17, 275 }, + [9] = { 32.3, 43.8, 148, 275 }, + [10] = { 30.8, 40.8, 148, 275 }, + [11] = { 33.3, 40.2, 148, 275 }, + [12] = { 43.3, 42.9, 357, 300 }, + [13] = { 30.9, 39.8, 357, 300 }, + [14] = { 37.9, 9.1, 1337, 18000 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15385] = { + ["coords"] = { + [1] = { 57.7, 52.3, 3429, 347600 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [15386] = { + ["coords"] = { + [1] = { 56.2, 50.8, 3429, 347600 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [15387] = { + ["coords"] = { + [1] = { 59.3, 53.7, 3429, 347600 }, + [2] = { 59.1, 53.1, 3429, 347600 }, + [3] = { 59.4, 53, 3429, 347600 }, + [4] = { 59, 52.6, 3429, 347600 }, + [5] = { 58.1, 52.4, 3429, 347600 }, + [6] = { 57.8, 52.1, 3429, 347600 }, + [7] = { 57.5, 51.7, 3429, 347600 }, + [8] = { 56.6, 50.5, 3429, 347600 }, + [9] = { 60.7, 50.5, 3429, 347600 }, + [10] = { 55.9, 50.5, 3429, 347600 }, + [11] = { 60.4, 50, 3429, 347600 }, + [12] = { 60.1, 49.6, 3429, 347600 }, + [13] = { 61.2, 48.3, 3429, 347600 }, + [14] = { 60.9, 47.9, 3429, 347600 }, + [15] = { 60.6, 47.4, 3429, 347600 }, + [16] = { 57.3, 47.1, 3429, 347600 }, + [17] = { 59.5, 46.6, 3429, 347600 }, + [18] = { 59.2, 46, 3429, 347600 }, + [19] = { 59.5, 45.7, 3429, 347600 }, + [20] = { 58.9, 45.5, 3429, 347600 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15388] = { + ["coords"] = { + [1] = { 58.8, 53.4, 3429, 347600 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [15389] = { + ["coords"] = { + [1] = { 57.2, 47.7, 3429, 347600 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [15390] = { + ["coords"] = { + [1] = { 59.8, 50.8, 3429, 347600 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [15391] = { + ["coords"] = { + [1] = { 58.9, 46.7, 3429, 347600 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [15392] = { + ["coords"] = { + [1] = { 60.5, 48.1, 3429, 347600 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [15393] = "_", + [15428] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15431] = { + ["coords"] = { + [1] = { 65.1, 65.5, 1537, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "58", + ["rnk"] = "1", + }, + [15432] = { + ["coords"] = { + [1] = { 64, 68.5, 1537, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15434] = { + ["coords"] = { + [1] = { 71, 72.6, 1537, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "56", + ["rnk"] = "1", + }, + [15435] = "_", + [15437] = { + ["coords"] = { + [1] = { 72, 70.1, 1537, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "58", + ["rnk"] = "1", + }, + [15441] = { + ["coords"] = { + [1] = { 32.9, 52.5, 1377, 300 }, + [2] = { 33, 52.2, 1377, 120 }, + [3] = { 32.5, 52.1, 1377, 300 }, + [4] = { 33.2, 52.1, 1377, 300 }, + [5] = { 33, 52, 1377, 300 }, + [6] = { 32.6, 51.9, 1377, 300 }, + [7] = { 32.9, 51.9, 1377, 300 }, + [8] = { 33, 51.9, 1377, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [15442] = { + ["coords"] = { + [1] = { 32.9, 52.3, 1377, 120 }, + [2] = { 33.2, 52.3, 1377, 600 }, + [3] = { 32.9, 52, 1377, 600 }, + [4] = { 33, 51.9, 1377, 600 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [15443] = { + ["coords"] = { + [1] = { 32.9, 52.5, 1377, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15444] = { + ["coords"] = { + [1] = { 32.5, 52, 1377, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15445] = { + ["coords"] = { + [1] = { 70.9, 71.4, 1537, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15446] = { + ["coords"] = { + [1] = { 57.4, 76.4, 1537, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "56", + ["rnk"] = "1", + }, + [15448] = { + ["coords"] = { + [1] = { 58.6, 75.3, 1537, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "58", + ["rnk"] = "1", + }, + [15450] = { + ["coords"] = { + [1] = { 59.3, 75.6, 1537, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15451] = { + ["coords"] = { + [1] = { 55.4, 76.2, 1537, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "56", + ["rnk"] = "1", + }, + [15452] = { + ["coords"] = { + [1] = { 54.9, 77.8, 1537, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "58", + ["rnk"] = "1", + }, + [15453] = { + ["coords"] = { + [1] = { 54, 77.4, 1537, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15454] = { + ["coords"] = { + [1] = { 29.1, 91.2, 1377, 300 }, + [2] = { 58.2, 2.4, 3478, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15455] = { + ["coords"] = { + [1] = { 71.1, 69.9, 1537, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "56", + ["rnk"] = "1", + }, + [15456] = { + ["coords"] = { + [1] = { 70.7, 69.7, 1537, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "58", + ["rnk"] = "1", + }, + [15457] = { + ["coords"] = { + [1] = { 71.6, 69.2, 1537, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15458] = { + ["coords"] = { + [1] = { 31.3, 68.3, 1637, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15459] = { + ["coords"] = { + [1] = { 31.1, 66.1, 1637, 25 }, + }, + ["fac"] = "H", + ["lvl"] = "56", + ["rnk"] = "1", + }, + [15460] = { + ["coords"] = { + [1] = { 31, 65.2, 1637, 25 }, + }, + ["fac"] = "H", + ["lvl"] = "58", + ["rnk"] = "1", + }, + [15461] = { + ["coords"] = { + [1] = { 62.3, 76, 3429, 347600 }, + [2] = { 33.2, 53, 3429, 347600 }, + [3] = { 34.5, 51.7, 3429, 347600 }, + [4] = { 33.1, 51.5, 3429, 347600 }, + [5] = { 32.3, 51.2, 3429, 347600 }, + [6] = { 33, 50.4, 3429, 347600 }, + [7] = { 46.4, 49.1, 3429, 347600 }, + [8] = { 47.5, 49, 3429, 347600 }, + [9] = { 46.9, 48.8, 3429, 347600 }, + [10] = { 48.4, 48.3, 3429, 347600 }, + [11] = { 46.3, 48.2, 3429, 347600 }, + [12] = { 40.7, 43.7, 3429, 347600 }, + [13] = { 41.7, 42.5, 3429, 347600 }, + [14] = { 40, 42.3, 3429, 347600 }, + [15] = { 40.6, 42.1, 3429, 347600 }, + [16] = { 41.3, 41.7, 3429, 347600 }, + [17] = { 50.7, 41.6, 3429, 347600 }, + [18] = { 50.1, 40.8, 3429, 347600 }, + [19] = { 52.2, 40.4, 3429, 347600 }, + [20] = { 49.2, 40.2, 3429, 347600 }, + [21] = { 51.4, 39.7, 3429, 347600 }, + [22] = { 50, 39.3, 3429, 347600 }, + [23] = { 44.2, 35, 3429, 347600 }, + [24] = { 43, 33.8, 3429, 347600 }, + [25] = { 44.1, 32.6, 3429, 347600 }, + [26] = { 42.9, 32.4, 3429, 347600 }, + [27] = { 42.3, 32.1, 3429, 347600 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15462] = { + ["coords"] = { + [1] = { 32.4, 52.8, 3429, 347600 }, + [2] = { 33.8, 52.1, 3429, 347600 }, + [3] = { 32.7, 51.9, 3429, 347600 }, + [4] = { 32.7, 50.8, 3429, 347600 }, + [5] = { 33.7, 50.7, 3429, 347600 }, + [6] = { 45.7, 48.7, 3429, 347600 }, + [7] = { 45.4, 48.1, 3429, 347600 }, + [8] = { 47.9, 47.4, 3429, 347600 }, + [9] = { 46.9, 46.9, 3429, 347600 }, + [10] = { 46.4, 46.7, 3429, 347600 }, + [11] = { 41, 45.1, 3429, 347600 }, + [12] = { 41.3, 45, 3429, 347600 }, + [13] = { 40, 43.9, 3429, 347600 }, + [14] = { 41.5, 43.3, 3429, 347600 }, + [15] = { 40.9, 43, 3429, 347600 }, + [16] = { 51.9, 42.2, 3429, 347600 }, + [17] = { 50.6, 41.2, 3429, 347600 }, + [18] = { 51.6, 40.8, 3429, 347600 }, + [19] = { 49.6, 39.9, 3429, 347600 }, + [20] = { 50.6, 39.7, 3429, 347600 }, + [21] = { 49.3, 37, 3429, 347600 }, + [22] = { 43.8, 34.3, 3429, 347600 }, + [23] = { 43.7, 33.4, 3429, 347600 }, + [24] = { 44.3, 33, 3429, 347600 }, + [25] = { 43.6, 32.6, 3429, 347600 }, + [26] = { 43.2, 32.4, 3429, 347600 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15466] = { + ["coords"] = { + [1] = { 64.5, 69.5, 493, 300 }, + [2] = { 60.9, 67.2, 493, 300 }, + [3] = { 63.7, 66.4, 493, 300 }, + [4] = { 60.8, 65.4, 493, 300 }, + [5] = { 64.8, 64.6, 493, 300 }, + [6] = { 66.2, 63.2, 493, 300 }, + [7] = { 65.4, 61.2, 493, 300 }, + [8] = { 65.1, 59.1, 493, 300 }, + [9] = { 65.4, 57.5, 493, 300 }, + [10] = { 66.4, 56.5, 493, 300 }, + [11] = { 67.5, 56.2, 493, 300 }, + [12] = { 66.2, 54.7, 493, 300 }, + [13] = { 64.8, 54.6, 493, 300 }, + [14] = { 65.2, 52.8, 493, 300 }, + [15] = { 66.4, 52.7, 493, 300 }, + [16] = { 66.1, 50.5, 493, 300 }, + [17] = { 64.9, 49.7, 493, 300 }, + [18] = { 63.9, 49.6, 493, 300 }, + [19] = { 65.5, 48.3, 493, 300 }, + [20] = { 63.1, 47.9, 493, 300 }, + [21] = { 63.5, 46.1, 493, 300 }, + [22] = { 65.4, 45.7, 493, 300 }, + [23] = { 62.4, 44.9, 493, 300 }, + }, + ["lvl"] = "59-60", + }, + [15469] = { + ["coords"] = { + [1] = { 31.4, 65.7, 1637, 25 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15471] = { + ["coords"] = { + [1] = { 61.6, 24.2, 3429, 347600 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15472] = "_", + [15473] = { + ["coords"] = { + [1] = { 61.8, 24.4, 3429, 347600 }, + [2] = { 61.8, 24.2, 3429, 347600 }, + [3] = { 61.8, 24, 3429, 347600 }, + [4] = { 61.6, 23.9, 3429, 347600 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15475] = { + ["coords"] = { + [1] = { 38, 75.3, 5147, 25 }, + }, + ["lvl"] = "1", + }, + [15477] = { + ["coords"] = { + [1] = { 32.9, 69.8, 1637, 25 }, + }, + ["fac"] = "H", + ["lvl"] = "56", + ["rnk"] = "1", + }, + [15502] = { + ["coords"] = { + [1] = { 54.3, 52.5, 876, 120 }, + [2] = { 59.7, 68.2, 3428, 3520 }, + [3] = { 35.4, 45.2, 5147, 3520 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15503] = { + ["coords"] = { + [1] = { 54.2, 52, 876, 120 }, + [2] = { 59.1, 68.8, 3428, 3520 }, + [3] = { 35.2, 45.4, 5147, 3520 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15504] = { + ["coords"] = { + [1] = { 54.1, 52.6, 876, 120 }, + [2] = { 59.6, 68.7, 3428, 3520 }, + [3] = { 35.4, 45.4, 5147, 3520 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15505] = { + ["coords"] = { + [1] = { 49.6, 45.2, 3429, 347600 }, + [2] = { 48.7, 44.1, 3429, 347600 }, + [3] = { 47.8, 43.8, 3429, 347600 }, + [4] = { 46.7, 43, 3429, 347600 }, + [5] = { 48.4, 42.6, 3429, 347600 }, + [6] = { 46, 42.6, 3429, 347600 }, + [7] = { 33.9, 42.5, 3429, 347600 }, + [8] = { 34.6, 41.8, 3429, 347600 }, + [9] = { 47.1, 41.3, 3429, 347600 }, + [10] = { 35.2, 40.5, 3429, 347600 }, + [11] = { 36.1, 39.7, 3429, 347600 }, + [12] = { 44, 38.9, 3429, 347600 }, + [13] = { 38.7, 38.9, 3429, 347600 }, + [14] = { 37.5, 38.8, 3429, 347600 }, + [15] = { 41.6, 38.7, 3429, 347600 }, + [16] = { 42.8, 38.3, 3429, 347600 }, + [17] = { 36.7, 37.9, 3429, 347600 }, + [18] = { 39.1, 37.2, 3429, 347600 }, + [19] = { 41.5, 36.9, 3429, 347600 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15506] = "_", + [15507] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + ["rnk"] = "3", + }, + [15508] = { + ["coords"] = { + [1] = { 32.8, 69.3, 1637, 25 }, + }, + ["fac"] = "H", + ["lvl"] = "58", + ["rnk"] = "1", + }, + [15509] = { + ["coords"] = { + [1] = { 83.8, 73.7, 3428, 604800 }, + [2] = { 43.9, 47.1, 5147, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15510] = { + ["coords"] = { + [1] = { 61.9, 23, 5147, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15511] = { + ["coords"] = { + [1] = { 34.9, 78.9, 3428, 604800 }, + [2] = { 26.7, 49, 5147, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15512] = { + ["coords"] = { + [1] = { 32.5, 68.8, 1637, 25 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15515] = { + ["coords"] = { + [1] = { 36.3, 73.1, 1637, 25 }, + }, + ["fac"] = "H", + ["lvl"] = "56", + ["rnk"] = "1", + }, + [15516] = { + ["coords"] = { + [1] = { 88.6, 43.6, 3428, 604800 }, + [2] = { 45.6, 36.5, 5147, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15518] = "_", + [15519] = "_", + [15522] = { + ["coords"] = { + [1] = { 35.3, 72.8, 1637, 25 }, + }, + ["fac"] = "H", + ["lvl"] = "56-58", + ["rnk"] = "1", + }, + [15525] = { + ["coords"] = { + [1] = { 35.8, 72.6, 1637, 25 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15526] = { + ["coords"] = { + [1] = { 59.4, 96, 440, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15528] = { + ["coords"] = { + [1] = { 31.8, 73.9, 1637, 25 }, + }, + ["fac"] = "H", + ["lvl"] = "56", + ["rnk"] = "1", + }, + [15530] = "_", + [15532] = { + ["coords"] = { + [1] = { 32.5, 74.8, 1637, 25 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15533] = { + ["coords"] = { + [1] = { 29, 67.8, 1637, 25 }, + }, + ["fac"] = "H", + ["lvl"] = "56", + ["rnk"] = "1", + }, + [15534] = { + ["coords"] = { + [1] = { 29.3, 69, 1637, 25 }, + }, + ["fac"] = "H", + ["lvl"] = "58", + ["rnk"] = "1", + }, + [15535] = { + ["coords"] = { + [1] = { 29, 68.5, 1637, 25 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15536] = "_", + [15539] = { + ["coords"] = { + [1] = { 63.1, 78.9, 1537, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15543] = { + ["coords"] = { + [1] = { 34.8, 82.1, 3428, 604800 }, + [2] = { 26.7, 50.1, 5147, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15544] = { + ["coords"] = { + [1] = { 35.4, 74, 3428, 604800 }, + [2] = { 26.9, 47.2, 5147, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15549] = { + ["coords"] = { + [1] = { 53.7, 72.6, 1584, 18000 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15552] = { + ["coords"] = { + [1] = { 77.9, 17.1, 15, 1200 }, + [2] = { 67.2, 72.8, 618, 0 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [15555] = { + ["coords"] = {}, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [15556] = { + ["coords"] = { + [1] = { 34.7, 85.6, 2100, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15557] = { + ["coords"] = { + [1] = { 83.1, 47.4, 46, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15558] = { + ["coords"] = { + [1] = { 32.9, 46.3, 38, 25 }, + [2] = { 15.4, 68, 5602, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15559] = { + ["coords"] = { + [1] = { 50, 48, 47, 350 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15560] = { + ["coords"] = { + [1] = { 46.4, 46.2, 1583, 18000 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15562] = { + ["coords"] = { + [1] = { 36.3, 66.1, 1519, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15563] = { + ["coords"] = { + [1] = { 57.9, 54.9, 4, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15564] = { + ["coords"] = { + [1] = { 66.6, 38.2, 1497, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15565] = { + ["coords"] = { + [1] = { 40.1, 62.7, 12, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15566] = { + ["coords"] = { + [1] = { 81.5, 60.5, 139, 345 }, + [2] = { 40.8, 40.3, 4012, 345 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15567] = { + ["coords"] = { + [1] = { 21.5, 79, 51, 120 }, + [2] = { 94.4, 43.9, 5581, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15568] = { + ["coords"] = { + [1] = { 61.9, 53.8, 85, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15569] = { + ["coords"] = { + [1] = { 46.7, 51.6, 1, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15570] = { + ["coords"] = { + [1] = { 21.1, 10.5, 1377, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15571] = { + ["coords"] = { + [1] = { 66.5, 52.6, 16, 0 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15572] = { + ["coords"] = { + [1] = { 53.2, 43.7, 14, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15573] = { + ["coords"] = { + [1] = { 36, 80.1, 440, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15574] = { + ["coords"] = { + [1] = { 61.5, 37.8, 618, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15575] = { + ["coords"] = { + [1] = { 48.5, 53.5, 215, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15576] = { + ["coords"] = { + [1] = { 26.5, 76.5, 33, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15577] = { + ["coords"] = { + [1] = { 56.7, 47.1, 40, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15578] = { + ["coords"] = { + [1] = { 34.5, 39.3, 1176, 18000 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15579] = { + ["coords"] = { + [1] = { 41.1, 33.8, 1637, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15580] = { + ["coords"] = { + [1] = { 44.6, 21.6, 215, 180 }, + [2] = { 73, 23.4, 1638, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15581] = { + ["coords"] = { + [1] = { 76.7, 37.9, 357, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15582] = { + ["coords"] = { + [1] = { 62.7, 36.7, 17, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15583] = { + ["coords"] = { + [1] = { 50.4, 76.1, 490, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15584] = { + ["coords"] = { + [1] = { 45.3, 50, 400, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15585] = { + ["coords"] = { + [1] = { 64.5, 24, 46, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15586] = { + ["coords"] = { + [1] = { 51.6, 27, 440, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15587] = { + ["coords"] = { + [1] = { 62.6, 31, 357, 25 }, + [2] = { 69.6, 46.1, 2557, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15588] = { + ["coords"] = { + [1] = { 45.1, 57.9, 17, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15592] = { + ["coords"] = { + [1] = { 39.7, 75.4, 139, 345 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15593] = { + ["coords"] = { + [1] = { 62.7, 34.5, 1477, 18000 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15594] = { + ["coords"] = { + [1] = { 69.2, 73.4, 28, 315 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15595] = { + ["coords"] = { + [1] = { 57.3, 60.8, 141, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15596] = { + ["coords"] = { + [1] = { 53.1, 18.4, 33, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15597] = { + ["coords"] = { + [1] = { 51.4, 30.7, 17, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15598] = { + ["coords"] = { + [1] = { 24.2, 49.9, 141, 25 }, + [2] = { 33.5, 14.3, 1657, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15599] = { + ["coords"] = { + [1] = { 49, 37.7, 1377, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15600] = { + ["coords"] = { + [1] = { 72.6, 85.2, 16, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15601] = { + ["coords"] = { + [1] = { 36.8, 46.8, 148, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15602] = { + ["coords"] = { + [1] = { 66, 47.8, 28, 315 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15603] = { + ["coords"] = { + [1] = { 37.6, 53, 361, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15604] = { + ["coords"] = { + [1] = { 79.7, 77.3, 400, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15605] = { + ["coords"] = { + [1] = { 34.7, 48.5, 331, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15606] = { + ["coords"] = { + [1] = { 55.6, 43.7, 618, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15607] = { + ["coords"] = { + [1] = { 68.4, 58.3, 2017, 18000 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15608] = "_", + [15609] = { + ["coords"] = { + [1] = { 53.7, 97.5, 1377, 600 }, + [2] = { 78.9, 7.4, 3478, 600 }, + }, + ["lvl"] = "60", + }, + [15612] = { + ["coords"] = { + [1] = { 52.2, 68.4, 1377, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15613] = { + ["coords"] = { + [1] = { 51.9, 68, 1377, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15615] = { + ["coords"] = { + [1] = { 51.3, 68.8, 1377, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15618] = "_", + [15619] = "_", + [15624] = { + ["coords"] = { + [1] = { 37.6, 47.9, 141, 300 }, + [2] = { 97.9, 4.7, 1657, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "8", + }, + [15626] = "_", + [15627] = "_", + [15632] = "_", + [15634] = { + ["coords"] = { + [1] = { 49, 38.1, 1377, 25 }, + [2] = { 48.7, 37.9, 1377, 25 }, + [3] = { 49.1, 37.9, 1377, 25 }, + [4] = { 48.8, 37.7, 1377, 25 }, + [5] = { 49.2, 37.6, 1377, 25 }, + [6] = { 48.7, 37.5, 1377, 25 }, + [7] = { 49.2, 37.4, 1377, 25 }, + [8] = { 49.2, 37.3, 1377, 25 }, + [9] = { 49.1, 37.3, 1377, 25 }, + [10] = { 48.9, 37.1, 1377, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15659] = { + ["coords"] = { + [1] = { 61.2, 70.7, 1519, 430 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [15661] = { + ["coords"] = { + [1] = { 66.2, 64.7, 440, 25 }, + [2] = { 67.9, 26.6, 440, 25 }, + [3] = { 67.9, 26.3, 440, 25 }, + [4] = { 67.7, 26.2, 440, 25 }, + [5] = { 80.9, 93, 1941, 25 }, + }, + ["lvl"] = "1", + }, + [15664] = { + ["coords"] = { + [1] = { 68.8, 34.2, 51, 60 }, + [2] = { 73.3, 48.1, 440, 60 }, + [3] = { 3.1, 41.2, 5121, 60 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [15680] = "_", + [15685] = { + ["coords"] = { + [1] = { 73.4, 47.9, 440, 180 }, + [2] = { 73.9, 47.6, 440, 180 }, + [3] = { 73.8, 47.6, 440, 180 }, + [4] = { 73, 47.4, 440, 180 }, + [5] = { 73.9, 47.4, 440, 180 }, + [6] = { 3.3, 40.8, 5121, 180 }, + [7] = { 4.3, 40.3, 5121, 180 }, + [8] = { 4.1, 40.2, 5121, 180 }, + [9] = { 2.5, 39.9, 5121, 180 }, + [10] = { 4.4, 39.9, 5121, 180 }, + }, + ["lvl"] = "45", + }, + [15692] = { + ["coords"] = { + [1] = { 67.9, 36.1, 51, 180 }, + [2] = { 69.4, 35.6, 51, 180 }, + [3] = { 68.8, 34.5, 51, 180 }, + [4] = { 68.5, 34.2, 51, 180 }, + [5] = { 69, 34.2, 51, 180 }, + [6] = { 68.7, 33.9, 51, 180 }, + [7] = { 70.1, 33.9, 51, 180 }, + [8] = { 69.2, 33.1, 51, 180 }, + [9] = { 69.6, 33, 51, 180 }, + [10] = { 67.8, 32.9, 51, 180 }, + }, + ["lvl"] = "42-45", + }, + [15693] = { + ["coords"] = { + [1] = { 25.9, 91, 1377, 600 }, + [2] = { 55.5, 2.2, 3478, 600 }, + }, + ["fac"] = "AH", + ["lvl"] = "61", + }, + [15694] = { + ["coords"] = { + [1] = { 35.7, 59.1, 493, 120 }, + [2] = { 35.8, 59, 493, 120 }, + [3] = { 35.5, 58.9, 493, 120 }, + [4] = { 35.8, 58.7, 493, 120 }, + [5] = { 35.6, 58.6, 493, 120 }, + [6] = { 70.3, 93.1, 1519, 120 }, + [7] = { 70.4, 92.9, 1519, 120 }, + [8] = { 70.3, 92.9, 1519, 120 }, + [9] = { 71.7, 88.5, 1519, 120 }, + [10] = { 71.8, 88.4, 1519, 120 }, + [11] = { 71.7, 88.4, 1519, 120 }, + [12] = { 72.5, 88.2, 1519, 120 }, + [13] = { 72.4, 88.1, 1519, 120 }, + [14] = { 76.4, 86.1, 1519, 120 }, + [15] = { 76.4, 86, 1519, 120 }, + [16] = { 76.6, 85.9, 1519, 120 }, + [17] = { 76.7, 84.9, 1519, 120 }, + [18] = { 76.7, 84.8, 1519, 120 }, + [19] = { 62.7, 73.5, 1519, 120 }, + [20] = { 62.5, 73.4, 1519, 120 }, + [21] = { 62.6, 72.1, 1519, 120 }, + [22] = { 62.7, 72.1, 1519, 120 }, + [23] = { 62.6, 72, 1519, 120 }, + [24] = { 62.5, 71.9, 1519, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "1-60", + }, + [15702] = { + ["coords"] = { + [1] = { 37.9, 27.3, 215, 25 }, + [2] = { 39.9, 51.6, 1638, 25 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15703] = { + ["coords"] = { + [1] = { 68.3, 39, 1497, 25 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15704] = { + ["coords"] = { + [1] = { 51.3, 65.8, 1637, 25 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15705] = { + ["coords"] = { + [1] = { 50.1, 45.8, 2040, 120 }, + [2] = { 57.5, 28.8, 5130, 300 }, + [3] = { 57.3, 27.1, 5130, 280 }, + [4] = { 61.6, 23.9, 5225, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15706] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15707] = { + ["coords"] = { + [1] = { 27.5, 73.4, 1537, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15708] = { + ["coords"] = { + [1] = { 61.5, 70.6, 1519, 3540 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [15709] = { + ["coords"] = { + [1] = { 25.9, 55.6, 141, 25 }, + [2] = { 41.8, 41.6, 1657, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15719] = { + ["coords"] = { + [1] = { 40.5, 34.3, 215, 120 }, + [2] = { 40.6, 34.3, 215, 120 }, + [3] = { 38.9, 30.8, 215, 120 }, + [4] = { 38.1, 30.8, 215, 120 }, + [5] = { 38, 30.6, 215, 120 }, + [6] = { 37.9, 30.5, 215, 120 }, + [7] = { 38, 30.5, 215, 120 }, + [8] = { 38.3, 30.4, 215, 120 }, + [9] = { 38.2, 30.3, 215, 120 }, + [10] = { 38, 29.5, 215, 120 }, + [11] = { 37.8, 29.4, 215, 120 }, + [12] = { 37.7, 29.4, 215, 120 }, + [13] = { 37.8, 29.3, 215, 120 }, + [14] = { 38.5, 28.9, 215, 120 }, + [15] = { 38.5, 28.4, 215, 120 }, + [16] = { 40.6, 27.3, 215, 120 }, + [17] = { 40.7, 27.3, 215, 120 }, + [18] = { 41.7, 27.1, 215, 120 }, + [19] = { 41.7, 27, 215, 120 }, + [20] = { 37.6, 25.6, 215, 120 }, + [21] = { 36, 58, 493, 120 }, + [22] = { 35.8, 58, 493, 120 }, + [23] = { 36.2, 57.7, 493, 120 }, + [24] = { 35.8, 57.6, 493, 120 }, + [25] = { 36, 57.5, 493, 120 }, + [26] = { 52.6, 86.1, 1638, 120 }, + [27] = { 52.7, 86.1, 1638, 120 }, + [28] = { 53, 86, 1638, 120 }, + [29] = { 52.9, 85.8, 1638, 120 }, + [30] = { 44.8, 68.8, 1638, 120 }, + [31] = { 40.7, 68.5, 1638, 120 }, + [32] = { 40.4, 67.5, 1638, 120 }, + [33] = { 40.1, 67.3, 1638, 120 }, + [34] = { 40.3, 67.3, 1638, 120 }, + [35] = { 41.6, 66.7, 1638, 120 }, + [36] = { 41.5, 66.4, 1638, 120 }, + [37] = { 40.6, 62.1, 1638, 120 }, + [38] = { 39.2, 61.8, 1638, 120 }, + [39] = { 39.1, 61.6, 1638, 120 }, + [40] = { 39.2, 61.5, 1638, 120 }, + [41] = { 42.6, 59.5, 1638, 120 }, + [42] = { 43, 56.7, 1638, 120 }, + [43] = { 53.4, 51.5, 1638, 120 }, + [44] = { 53.6, 51.5, 1638, 120 }, + [45] = { 53.4, 51.2, 1638, 120 }, + [46] = { 58.7, 50.4, 1638, 120 }, + [47] = { 58.8, 50.2, 1638, 120 }, + [48] = { 58.6, 50, 1638, 120 }, + [49] = { 38.2, 42.9, 1638, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "1-60", + }, + [15724] = { + ["coords"] = { + [1] = { 68, 26.8, 1637, 25 }, + }, + ["lvl"] = "57", + }, + [15727] = { + ["coords"] = { + [1] = { 54.1, 80.6, 3428, 604800 }, + [2] = { 33.4, 49.6, 5147, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15730] = { + ["coords"] = { + [1] = { 53.2, 35.7, 1, 25 }, + [2] = { 50, 13.5, 14, 25 }, + [3] = { 26.7, 73.5, 33, 25 }, + [4] = { 61.1, 59.3, 85, 25 }, + [5] = { 68.1, 71.5, 1519, 25 }, + }, + ["lvl"] = "60", + }, + [15731] = { + ["coords"] = { + [1] = { 61, 69.4, 1537, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [15732] = { + ["coords"] = { + [1] = { 53.2, 35.6, 1, 180 }, + [2] = { 50, 13.6, 14, 180 }, + [3] = { 26.7, 73.5, 33, 180 }, + [4] = { 61, 59.4, 85, 180 }, + [5] = { 67.9, 71.4, 1519, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [15733] = { + ["coords"] = { + [1] = { 58.8, 72.6, 1537, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [15734] = { + ["coords"] = { + [1] = { 60.9, 76.4, 1537, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [15735] = { + ["coords"] = { + [1] = { 63.2, 69.5, 1537, 25 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [15736] = { + ["coords"] = { + [1] = { 32.4, 74.2, 1637, 25 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [15737] = { + ["coords"] = { + [1] = { 30, 70.4, 1637, 25 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [15738] = { + ["coords"] = { + [1] = { 30.5, 65.5, 1637, 25 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [15739] = { + ["coords"] = { + [1] = { 33, 71.9, 1637, 25 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [15743] = { + ["coords"] = { + [1] = { 30.4, 99.8, 1377, 300 }, + [2] = { 28.9, 99.2, 1377, 300 }, + [3] = { 26.8, 99, 1377, 300 }, + [4] = { 31.7, 97.9, 1377, 300 }, + [5] = { 26.6, 95.7, 1377, 300 }, + [6] = { 29, 95.5, 1377, 300 }, + [7] = { 30, 92.4, 1377, 300 }, + [8] = { 28.2, 92.4, 1377, 300 }, + [9] = { 29.5, 90.3, 1377, 1200 }, + [10] = { 28.8, 90.3, 1377, 1200 }, + [11] = { 28.3, 90, 1377, 1200 }, + [12] = { 28.9, 88.2, 1377, 1200 }, + [13] = { 27.8, 87.9, 1377, 1200 }, + [14] = { 28.4, 87.2, 1377, 1200 }, + [15] = { 28, 85.2, 1377, 1200 }, + [16] = { 30.7, 84.3, 1377, 1200 }, + [17] = { 38.8, 79.3, 1377, 1200 }, + [18] = { 38.2, 79.1, 1377, 1200 }, + [19] = { 39.4, 79, 1377, 1200 }, + [20] = { 40, 78.3, 1377, 1200 }, + [21] = { 38.5, 78.1, 1377, 1200 }, + [22] = { 39, 77.7, 1377, 1200 }, + [23] = { 38.1, 77.4, 1377, 1200 }, + [24] = { 38.5, 77.2, 1377, 1200 }, + [25] = { 39.8, 77.1, 1377, 1200 }, + [26] = { 39, 76.2, 1377, 1200 }, + [27] = { 59.3, 9.2, 3478, 300 }, + [28] = { 58, 8.8, 3478, 300 }, + [29] = { 56.2, 8.6, 3478, 300 }, + [30] = { 60.4, 7.7, 3478, 300 }, + [31] = { 56.1, 6, 3478, 300 }, + [32] = { 58.1, 5.8, 3478, 300 }, + [33] = { 58.9, 3.4, 3478, 300 }, + [34] = { 57.4, 3.4, 3478, 300 }, + [35] = { 58.5, 1.7, 3478, 1200 }, + [36] = { 58, 1.7, 3478, 1200 }, + [37] = { 57.6, 1.5, 3478, 1200 }, + [38] = { 58, 0.1, 3478, 1200 }, + }, + ["lvl"] = "61-62", + ["rnk"] = "1", + }, + [15744] = { + ["coords"] = { + [1] = { 29.6, 92.6, 1377, 300 }, + [2] = { 28.6, 92.5, 1377, 300 }, + [3] = { 28.6, 91.9, 1377, 300 }, + [4] = { 28.2, 91.9, 1377, 25 }, + [5] = { 30, 91.8, 1377, 25 }, + [6] = { 29.5, 91.8, 1377, 300 }, + [7] = { 30.1, 90.7, 1377, 1200 }, + [8] = { 29.7, 89.5, 1377, 1200 }, + [9] = { 28, 88.8, 1377, 1200 }, + [10] = { 58.6, 3.5, 3478, 300 }, + [11] = { 57.8, 3.5, 3478, 300 }, + [12] = { 57.8, 3, 3478, 300 }, + [13] = { 57.4, 2.9, 3478, 25 }, + [14] = { 58.9, 2.9, 3478, 25 }, + [15] = { 58.5, 2.9, 3478, 300 }, + [16] = { 59.1, 2.1, 3478, 1200 }, + [17] = { 58.7, 1.1, 3478, 1200 }, + [18] = { 57.3, 0.5, 3478, 1200 }, + }, + ["lvl"] = "62-63", + ["rnk"] = "1", + }, + [15756] = { + ["coords"] = { + [1] = { 31, 44.5, 357, 600 }, + [2] = { 48.8, 33.6, 440, 600 }, + [3] = { 51.5, 28.3, 440, 600 }, + [4] = { 53.5, 72.9, 490, 600 }, + [5] = { 22.9, 82.2, 1377, 600 }, + [6] = { 25.9, 43.8, 1377, 600 }, + }, + ["lvl"] = "54-57", + ["rnk"] = "1", + }, + [15757] = { + ["coords"] = { + [1] = { 33.5, 55.8, 440, 900 }, + [2] = { 55.1, 58.2, 1377, 900 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [15760] = { + ["coords"] = { + [1] = { 47.3, 51.9, 1, 300 }, + [2] = { 47.2, 51.9, 1, 300 }, + [3] = { 3.6, 46.8, 3, 300 }, + [4] = { 3.6, 46.6, 3, 300 }, + [5] = { 44.7, 56.9, 8, 300 }, + [6] = { 44.8, 56.8, 8, 300 }, + [7] = { 73.9, 44.8, 10, 300 }, + [8] = { 74, 44.8, 10, 300 }, + [9] = { 10.5, 60.2, 11, 300 }, + [10] = { 10.6, 60.1, 11, 300 }, + [11] = { 43.5, 66, 12, 300 }, + [12] = { 43.5, 65.9, 12, 300 }, + [13] = { 51.6, 41.9, 14, 300 }, + [14] = { 51.5, 41.9, 14, 300 }, + [15] = { 66.4, 45.3, 15, 300 }, + [16] = { 45.4, 58.9, 17, 300 }, + [17] = { 62.1, 39.4, 17, 300 }, + [18] = { 62, 39.3, 17, 300 }, + [19] = { 52.1, 30, 17, 300 }, + [20] = { 27.1, 77.4, 33, 300 }, + [21] = { 31.5, 29.6, 33, 300 }, + [22] = { 61.3, 81, 36, 300 }, + [23] = { 61.3, 80.9, 36, 300 }, + [24] = { 35.3, 48.7, 38, 300 }, + [25] = { 35.3, 48.6, 38, 300 }, + [26] = { 52.6, 53.5, 40, 300 }, + [27] = { 52.5, 53.4, 40, 300 }, + [28] = { 26.9, 44.9, 44, 300 }, + [29] = { 26.9, 44.8, 44, 300 }, + [30] = { 74, 32.9, 45, 300 }, + [31] = { 73.9, 32.9, 45, 300 }, + [32] = { 78, 81.7, 47, 300 }, + [33] = { 77.9, 81.7, 47, 300 }, + [34] = { 13.5, 41.6, 47, 300 }, + [35] = { 82.7, 38, 51, 300 }, + [36] = { 82.8, 37.8, 51, 300 }, + [37] = { 61.8, 52.7, 85, 300 }, + [38] = { 61.8, 52.6, 85, 300 }, + [39] = { 43.1, 41.5, 130, 300 }, + [40] = { 43.1, 41.3, 130, 300 }, + [41] = { 56.1, 59.4, 141, 300 }, + [42] = { 56.1, 59.3, 141, 300 }, + [43] = { 31.3, 50.2, 141, 300 }, + [44] = { 31.4, 50.1, 141, 300 }, + [45] = { 37, 44.1, 148, 300 }, + [46] = { 46.6, 61.4, 215, 300 }, + [47] = { 46.5, 61.4, 215, 300 }, + [48] = { 39, 29.8, 215, 300 }, + [49] = { 38.9, 29.7, 215, 300 }, + [50] = { 50.8, 59, 267, 300 }, + [51] = { 62.5, 19.3, 267, 300 }, + [52] = { 62.5, 19.2, 267, 300 }, + [53] = { 74.2, 60.8, 331, 300 }, + [54] = { 74.2, 60.7, 331, 300 }, + [55] = { 36.8, 49.9, 331, 300 }, + [56] = { 36.7, 49.9, 331, 300 }, + [57] = { 74.7, 44.8, 357, 300 }, + [58] = { 31, 42.8, 357, 300 }, + [59] = { 45.9, 51, 400, 300 }, + [60] = { 23.9, 68, 405, 300 }, + [61] = { 66.2, 6.8, 405, 300 }, + [62] = { 66.1, 6.8, 405, 300 }, + [63] = { 44.7, 79.7, 406, 300 }, + [64] = { 44.7, 79.6, 406, 300 }, + [65] = { 50.4, 63.1, 406, 300 }, + [66] = { 52.5, 28, 440, 300 }, + [67] = { 52.6, 27.9, 440, 300 }, + [68] = { 61.4, 38.9, 618, 300 }, + [69] = { 51.7, 38.6, 1377, 300 }, + [70] = { 51.7, 38.5, 1377, 300 }, + [71] = { 66.7, 37.8, 1497, 300 }, + [72] = { 66.4, 37.6, 1497, 300 }, + [73] = { 60.2, 75.2, 1519, 300 }, + [74] = { 60.3, 75, 1519, 300 }, + [75] = { 19.8, 53.8, 1537, 300 }, + [76] = { 20.1, 53.8, 1537, 300 }, + [77] = { 54.1, 68.9, 1637, 300 }, + [78] = { 54, 68.8, 1637, 300 }, + [79] = { 45.1, 63.8, 1638, 300 }, + [80] = { 45, 63.5, 1638, 300 }, + [81] = { 68, 15.6, 1657, 300 }, + [82] = { 68.1, 15.3, 1657, 300 }, + [83] = { 6, 89.4, 2100, 300 }, + [84] = { 6.1, 89.1, 2100, 300 }, + [85] = { 16.6, 69.2, 5602, 300 }, + [86] = { 16.6, 69.1, 5602, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "30-40", + }, + [15776] = { + ["coords"] = {}, + ["lvl"] = "1", + ["rnk"] = "1", + }, + [15796] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + ["rnk"] = "2", + }, + [15797] = { + ["coords"] = { + [1] = { 49.4, 37.4, 1377, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15798] = { + ["coords"] = { + [1] = { 49.5, 37.2, 1377, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15801] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "2-10", + }, + [15808] = { + ["coords"] = { + [1] = { 44.7, 74.4, 17, 600 }, + }, + ["lvl"] = "21-23", + ["rnk"] = "1", + }, + [15835] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + ["rnk"] = "1", + }, + [15855] = { + ["coords"] = { + [1] = { 45.9, 44.2, 1377, 25 }, + [2] = { 45.9, 44, 1377, 25 }, + [3] = { 46, 43.9, 1377, 25 }, + [4] = { 46.1, 43.8, 1377, 25 }, + [5] = { 46.1, 43.6, 1377, 25 }, + [6] = { 46.2, 43.5, 1377, 25 }, + [7] = { 46.2, 43.4, 1377, 25 }, + [8] = { 46.3, 43.3, 1377, 25 }, + [9] = { 46.3, 43.2, 1377, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15859] = { + ["coords"] = { + [1] = { 54.5, 37.4, 1377, 25 }, + [2] = { 54.6, 35.7, 1377, 25 }, + [3] = { 64.4, 44.4, 1519, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "62", + ["rnk"] = "1", + }, + [15860] = { + ["coords"] = { + [1] = { 47.1, 41.4, 1377, 25 }, + [2] = { 47.7, 41.1, 1377, 25 }, + [3] = { 47.8, 40.6, 1377, 25 }, + [4] = { 48.3, 40.3, 1377, 25 }, + [5] = { 48.1, 40.1, 1377, 25 }, + [6] = { 48.8, 39.9, 1377, 25 }, + [7] = { 49, 39.5, 1377, 25 }, + [8] = { 49.9, 39.2, 1377, 25 }, + [9] = { 49.4, 39.1, 1377, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15864] = { + ["coords"] = { + [1] = { 53.7, 35.3, 493, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [15871] = { + ["coords"] = { + [1] = { 29.2, 17.1, 1537, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15891] = { + ["coords"] = { + [1] = { 37.6, 29.7, 215, 180 }, + [2] = { 44.4, 22.3, 215, 180 }, + [3] = { 44.2, 22.2, 215, 180 }, + [4] = { 44.4, 22, 215, 180 }, + [5] = { 66.7, 43.4, 1497, 180 }, + [6] = { 66, 37.5, 1497, 180 }, + [7] = { 66.4, 36.6, 1497, 180 }, + [8] = { 65.7, 36.6, 1497, 180 }, + [9] = { 51, 70.5, 1637, 180 }, + [10] = { 40.8, 31.7, 1637, 180 }, + [11] = { 41.5, 31, 1637, 180 }, + [12] = { 40.8, 30.5, 1637, 180 }, + [13] = { 38.4, 63.4, 1638, 180 }, + [14] = { 71.9, 26.8, 1638, 180 }, + [15] = { 71, 26.2, 1638, 180 }, + [16] = { 71.8, 25.4, 1638, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [15892] = { + ["coords"] = { + [1] = { 26, 56.1, 141, 180 }, + [2] = { 23.9, 49.7, 141, 300 }, + [3] = { 23.7, 49.5, 141, 300 }, + [4] = { 23.8, 49.4, 141, 300 }, + [5] = { 61.7, 75.7, 1519, 180 }, + [6] = { 37.2, 65.3, 1519, 180 }, + [7] = { 37.6, 64.9, 1519, 180 }, + [8] = { 37.1, 64.7, 1519, 180 }, + [9] = { 30.9, 61.6, 1537, 180 }, + [10] = { 31.1, 18.6, 1537, 180 }, + [11] = { 29.9, 17.9, 1537, 180 }, + [12] = { 30.9, 16.7, 1537, 180 }, + [13] = { 42.2, 44, 1657, 180 }, + [14] = { 32.1, 13.1, 1657, 300 }, + [15] = { 31.2, 12.5, 1657, 300 }, + [16] = { 31.9, 11.7, 1657, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [15893] = { + ["coords"] = { + [1] = { 23.8, 49.5, 141, 300 }, + [2] = { 31.8, 12.4, 1657, 300 }, + }, + ["lvl"] = "60", + }, + [15894] = { + ["coords"] = { + [1] = { 23.8, 49.5, 141, 300 }, + [2] = { 31.7, 12.4, 1657, 300 }, + }, + ["lvl"] = "60", + }, + [15895] = { + ["coords"] = { + [1] = { 24.3, 49.8, 141, 600 }, + [2] = { 44.3, 22.6, 215, 180 }, + [3] = { 65.6, 36, 1497, 180 }, + [4] = { 37.6, 65.6, 1519, 180 }, + [5] = { 28.8, 16.2, 1537, 180 }, + [6] = { 41.7, 32, 1637, 180 }, + [7] = { 71.1, 28.2, 1638, 180 }, + [8] = { 33.9, 13.9, 1657, 600 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [15896] = { + ["coords"] = { + [1] = { 53.6, 79.6, 3428, 3600 }, + [2] = { 33.3, 49.2, 5147, 3600 }, + }, + ["lvl"] = "63", + }, + [15897] = { + ["coords"] = { + [1] = { 23.8, 49.5, 141, 180 }, + [2] = { 44.3, 22.2, 215, 270 }, + [3] = { 36.4, 59.9, 493, 270 }, + [4] = { 37.2, 59.5, 493, 270 }, + [5] = { 35.7, 58.9, 493, 270 }, + [6] = { 37.5, 58.2, 493, 270 }, + [7] = { 36, 57.7, 493, 270 }, + [8] = { 36.7, 57.2, 493, 270 }, + [9] = { 66, 36.8, 1497, 270 }, + [10] = { 37.3, 65, 1519, 270 }, + [11] = { 30.7, 17.8, 1537, 270 }, + [12] = { 41, 31.1, 1637, 270 }, + [13] = { 71.6, 26.1, 1638, 270 }, + [14] = { 31.7, 12.5, 1657, 180 }, + }, + ["lvl"] = "60", + }, + [15898] = { + ["coords"] = { + [1] = { 23.8, 49.8, 141, 600 }, + [2] = { 44.1, 22.5, 215, 180 }, + [3] = { 36.3, 58.5, 493, 180 }, + [4] = { 36.6, 58.1, 493, 180 }, + [5] = { 66.5, 36, 1497, 180 }, + [6] = { 37.3, 64, 1519, 180 }, + [7] = { 29.9, 14.2, 1537, 180 }, + [8] = { 41.3, 32.4, 1637, 180 }, + [9] = { 70.6, 27.8, 1638, 180 }, + [10] = { 31.6, 13.7, 1657, 600 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [15899] = "_", + [15900] = "_", + [15903] = { + ["coords"] = { + [1] = { 32.6, 51.8, 1377, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [15909] = { + ["coords"] = { + [1] = { 53.8, 35.3, 493, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [15917] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [15928] = { + ["coords"] = { + [1] = { 27.7, 10.8, 3456, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15931] = { + ["coords"] = { + [1] = { 48.5, 34.2, 3456, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15932] = { + ["coords"] = { + [1] = { 39.2, 28.3, 3456, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15936] = { + ["coords"] = { + [1] = { 66.9, 65.4, 3456, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15952] = { + ["coords"] = { + [1] = { 77.5, 11.7, 3456, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15953] = { + ["coords"] = { + [1] = { 62.5, 23, 3456, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15954] = { + ["coords"] = { + [1] = { 56, 74.4, 3456, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15956] = { + ["coords"] = { + [1] = { 55.3, 25.8, 3456, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15957] = { + ["coords"] = { + [1] = { 29.7, 82.6, 5147, 604800 }, + }, + ["lvl"] = "60", + }, + [15961] = { + ["coords"] = { + [1] = { 36.5, 60.6, 493, 180 }, + [2] = { 35.7, 60.4, 493, 180 }, + [3] = { 37.6, 59.2, 493, 180 }, + [4] = { 36.4, 58.8, 493, 180 }, + [5] = { 35.3, 58.7, 493, 180 }, + [6] = { 35.6, 57.6, 493, 180 }, + [7] = { 37.9, 57.6, 493, 180 }, + [8] = { 36.7, 55.9, 493, 180 }, + [9] = { 54, 35.4, 493, 180 }, + [10] = { 53.5, 35.2, 493, 180 }, + }, + ["lvl"] = "60", + }, + [15962] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15963] = { + ["coords"] = { + [1] = { 60.5, 69.9, 5147, 3600 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15964] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [15974] = { + ["coords"] = { + [1] = { 58, 44.9, 3456, 7200 }, + [2] = { 58.7, 44.8, 3456, 7200 }, + [3] = { 70.7, 39.9, 3456, 7200 }, + [4] = { 70.9, 39.2, 3456, 7200 }, + [5] = { 58.7, 38.9, 3456, 7200 }, + [6] = { 57.9, 38.9, 3456, 7200 }, + [7] = { 70.4, 38.7, 3456, 7200 }, + [8] = { 70.7, 38.4, 3456, 7200 }, + [9] = { 55.5, 35.7, 3456, 7200 }, + [10] = { 55, 35.7, 3456, 7200 }, + [11] = { 71.8, 33.4, 3456, 7200 }, + [12] = { 71.4, 33.1, 3456, 7200 }, + [13] = { 71.2, 32.7, 3456, 7200 }, + [14] = { 71.3, 32.1, 3456, 7200 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15975] = { + ["coords"] = { + [1] = { 58.5, 45.3, 3456, 7200 }, + [2] = { 58.1, 44.1, 3456, 7200 }, + [3] = { 58.7, 44, 3456, 7200 }, + [4] = { 58.3, 39.4, 3456, 7200 }, + [5] = { 63.3, 39, 3456, 7200 }, + [6] = { 62.9, 38.8, 3456, 7200 }, + [7] = { 57.6, 38.4, 3456, 7200 }, + [8] = { 58.9, 38.3, 3456, 7200 }, + [9] = { 63.7, 38.2, 3456, 7200 }, + [10] = { 63, 37.9, 3456, 7200 }, + [11] = { 63.7, 37.4, 3456, 7200 }, + [12] = { 63.4, 37, 3456, 7200 }, + [13] = { 55, 36.5, 3456, 7200 }, + [14] = { 55.6, 36.3, 3456, 7200 }, + [15] = { 55.3, 36.2, 3456, 7200 }, + [16] = { 60.5, 35.3, 3456, 7200 }, + [17] = { 60.2, 34.8, 3456, 7200 }, + [18] = { 60.9, 34.5, 3456, 7200 }, + [19] = { 60.1, 34.3, 3456, 7200 }, + [20] = { 60.4, 33.4, 3456, 7200 }, + [21] = { 61, 33.4, 3456, 7200 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15976] = { + ["coords"] = { + [1] = { 59.2, 44.8, 3456, 7200 }, + [2] = { 58.3, 38.2, 3456, 7200 }, + [3] = { 55.3, 35, 3456, 7200 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15977] = { + ["coords"] = { + [1] = { 60.5, 42.6, 3456, 7200 }, + [2] = { 60, 42.5, 3456, 7200 }, + [3] = { 59.5, 42.4, 3456, 7200 }, + [4] = { 55.8, 42.3, 3456, 7200 }, + [5] = { 56.1, 42.1, 3456, 7200 }, + [6] = { 60.5, 42.1, 3456, 7200 }, + [7] = { 60, 42, 3456, 7200 }, + [8] = { 56.2, 41.8, 3456, 7200 }, + [9] = { 60.2, 41.8, 3456, 7200 }, + [10] = { 55.9, 41.7, 3456, 7200 }, + [11] = { 59.6, 41.6, 3456, 7200 }, + [12] = { 60.7, 41.5, 3456, 7200 }, + [13] = { 56.3, 41.4, 3456, 7200 }, + [14] = { 55.9, 41.3, 3456, 7200 }, + [15] = { 60, 41.1, 3456, 7200 }, + [16] = { 56.4, 41, 3456, 7200 }, + [17] = { 60.6, 41, 3456, 7200 }, + [18] = { 55.9, 40.5, 3456, 7200 }, + [19] = { 56.3, 40.4, 3456, 7200 }, + [20] = { 56.2, 39.8, 3456, 7200 }, + [21] = { 55, 36, 3456, 7200 }, + [22] = { 55.7, 36, 3456, 7200 }, + [23] = { 55.3, 36, 3456, 7200 }, + [24] = { 55.7, 35.6, 3456, 7200 }, + [25] = { 55, 35.6, 3456, 7200 }, + [26] = { 55.3, 35.5, 3456, 7200 }, + [27] = { 55.6, 35.2, 3456, 7200 }, + [28] = { 55.1, 35.1, 3456, 7200 }, + [29] = { 55.3, 35.1, 3456, 7200 }, + [30] = { 55.4, 35, 3456, 7200 }, + [31] = { 63.8, 33.9, 3456, 7200 }, + [32] = { 63.6, 33.7, 3456, 7200 }, + [33] = { 63.5, 33.6, 3456, 7200 }, + [34] = { 63.3, 33.6, 3456, 7200 }, + [35] = { 63.7, 33.5, 3456, 7200 }, + [36] = { 63.6, 33.5, 3456, 7200 }, + [37] = { 63.4, 33.4, 3456, 7200 }, + [38] = { 63.6, 33.3, 3456, 7200 }, + [39] = { 65.8, 32.3, 3456, 7200 }, + [40] = { 66, 32, 3456, 7200 }, + [41] = { 66.3, 31.9, 3456, 7200 }, + [42] = { 65.8, 31.8, 3456, 7200 }, + [43] = { 66, 31.5, 3456, 7200 }, + [44] = { 66.4, 31.3, 3456, 7200 }, + [45] = { 65.7, 31.2, 3456, 7200 }, + [46] = { 66.1, 31.1, 3456, 7200 }, + [47] = { 65.8, 31, 3456, 7200 }, + [48] = { 66.6, 29.4, 3456, 7200 }, + [49] = { 66.2, 29.1, 3456, 7200 }, + [50] = { 66.9, 28.9, 3456, 7200 }, + [51] = { 66.5, 28.8, 3456, 7200 }, + [52] = { 66.1, 28.7, 3456, 7200 }, + [53] = { 66.7, 28.7, 3456, 7200 }, + [54] = { 66.7, 28.2, 3456, 7200 }, + [55] = { 66.4, 28.2, 3456, 7200 }, + [56] = { 67.9, 27.5, 3456, 7200 }, + [57] = { 67.6, 27.4, 3456, 7200 }, + [58] = { 67.6, 27, 3456, 7200 }, + [59] = { 67.9, 26.9, 3456, 7200 }, + [60] = { 67.4, 26.7, 3456, 7200 }, + [61] = { 67.8, 26.4, 3456, 7200 }, + [62] = { 67.7, 26.2, 3456, 7200 }, + [63] = { 67.4, 26.2, 3456, 7200 }, + [64] = { 61.7, 23.8, 3456, 7200 }, + [65] = { 61.5, 23.7, 3456, 7200 }, + [66] = { 61.4, 23.7, 3456, 7200 }, + [67] = { 61.7, 23.6, 3456, 7200 }, + [68] = { 61.5, 23.4, 3456, 7200 }, + [69] = { 61.3, 23.3, 3456, 7200 }, + [70] = { 61.7, 23.3, 3456, 7200 }, + [71] = { 61.8, 23, 3456, 7200 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15978] = { + ["coords"] = { + [1] = { 62.5, 38.4, 3456, 7200 }, + [2] = { 61.3, 34, 3456, 7200 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15979] = { + ["coords"] = { + [1] = { 70.5, 39.3, 3456, 7200 }, + [2] = { 71.7, 32.8, 3456, 7200 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15980] = { + ["coords"] = { + [1] = { 64.9, 25.4, 3456, 7200 }, + [2] = { 64.7, 25.1, 3456, 7200 }, + [3] = { 65.1, 24.7, 3456, 7200 }, + [4] = { 64, 24.7, 3456, 7200 }, + [5] = { 63.8, 24.6, 3456, 7200 }, + [6] = { 64.9, 24.4, 3456, 7200 }, + [7] = { 64.2, 24.1, 3456, 7200 }, + [8] = { 63.9, 24, 3456, 7200 }, + [9] = { 66.1, 23.7, 3456, 7200 }, + [10] = { 65.8, 23.5, 3456, 7200 }, + [11] = { 66, 22.9, 3456, 7200 }, + [12] = { 65.8, 22.7, 3456, 7200 }, + [13] = { 65, 21.7, 3456, 7200 }, + [14] = { 63.8, 21.7, 3456, 7200 }, + [15] = { 64, 21.6, 3456, 7200 }, + [16] = { 65.1, 21.4, 3456, 7200 }, + [17] = { 66.1, 21.1, 3456, 7200 }, + [18] = { 66.4, 21.1, 3456, 7200 }, + [19] = { 63.6, 21.1, 3456, 7200 }, + [20] = { 63.8, 21.1, 3456, 7200 }, + [21] = { 64.8, 21, 3456, 7200 }, + [22] = { 64.9, 20.7, 3456, 7200 }, + [23] = { 66, 20.5, 3456, 7200 }, + [24] = { 65.8, 20.5, 3456, 7200 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15981] = { + ["coords"] = { + [1] = { 64.7, 25.4, 3456, 7200 }, + [2] = { 65, 25.1, 3456, 7200 }, + [3] = { 63.9, 25, 3456, 7200 }, + [4] = { 63.7, 24.9, 3456, 7200 }, + [5] = { 64.8, 24.7, 3456, 7200 }, + [6] = { 64.1, 24.4, 3456, 7200 }, + [7] = { 65.2, 24.3, 3456, 7200 }, + [8] = { 63.8, 24.3, 3456, 7200 }, + [9] = { 65.9, 23.8, 3456, 7200 }, + [10] = { 66, 23.3, 3456, 7200 }, + [11] = { 65.8, 23.1, 3456, 7200 }, + [12] = { 66, 22.5, 3456, 7200 }, + [13] = { 63.9, 21.9, 3456, 7200 }, + [14] = { 64.1, 21.9, 3456, 7200 }, + [15] = { 65.2, 21.7, 3456, 7200 }, + [16] = { 66.3, 21.4, 3456, 7200 }, + [17] = { 64.9, 21.4, 3456, 7200 }, + [18] = { 63.9, 21.4, 3456, 7200 }, + [19] = { 63.7, 21.4, 3456, 7200 }, + [20] = { 65, 21, 3456, 7200 }, + [21] = { 66, 20.8, 3456, 7200 }, + [22] = { 66.2, 20.8, 3456, 7200 }, + [23] = { 64.7, 20.7, 3456, 7200 }, + [24] = { 65.9, 20.2, 3456, 7200 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15982] = "_", + [15983] = "_", + [15984] = { + ["coords"] = { + [1] = { 88.2, 44.4, 3428, 3520 }, + [2] = { 88.9, 44.4, 3428, 3520 }, + [3] = { 89.3, 43.5, 3428, 3520 }, + [4] = { 45.4, 36.8, 5147, 3520 }, + [5] = { 45.7, 36.8, 5147, 3520 }, + [6] = { 45.8, 36.5, 5147, 3520 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [15985] = "_", + [15989] = { + ["coords"] = { + [1] = { 56.5, 67.2, 5148, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15990] = { + ["coords"] = { + [1] = { 37.4, 16, 5148, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [15991] = "_", + [15992] = "_", + [15993] = "_", + [15996] = "_", + [15997] = "_", + [15998] = "_", + [15999] = "_", + [16000] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [16002] = { + ["coords"] = { + [1] = { 61.7, 75.5, 1519, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [16003] = { + ["coords"] = { + [1] = { 60.7, 59.5, 85, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [16005] = { + ["coords"] = { + [1] = { 63.8, 70.6, 1519, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [16011] = { + ["coords"] = { + [1] = { 81.5, 56.7, 3456, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [16016] = { + ["coords"] = { + [1] = { 30.9, 16.8, 139, 250 }, + [2] = { 77.1, 76.9, 5225, 250 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [16017] = { + ["coords"] = { + [1] = { 40.7, 48.9, 3456, 7200 }, + [2] = { 40.2, 48.4, 3456, 7200 }, + [3] = { 40.9, 48.2, 3456, 7200 }, + [4] = { 40.4, 47.8, 3456, 7200 }, + [5] = { 49.2, 45.3, 3456, 7200 }, + [6] = { 49.2, 44.1, 3456, 7200 }, + [7] = { 46.4, 43.6, 3456, 7200 }, + [8] = { 50.6, 43.4, 3456, 7200 }, + [9] = { 49.7, 43.2, 3456, 7200 }, + [10] = { 45.3, 41.9, 3456, 7200 }, + [11] = { 49.4, 39.1, 3456, 7200 }, + [12] = { 44.6, 38.3, 3456, 7200 }, + [13] = { 44.8, 37.5, 3456, 7200 }, + [14] = { 48.3, 37.4, 3456, 7200 }, + [15] = { 45.3, 36.8, 3456, 7200 }, + [16] = { 45.7, 36.5, 3456, 7200 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16018] = { + ["coords"] = { + [1] = { 43.2, 47.6, 3456, 7200 }, + [2] = { 37.2, 47.2, 3456, 7200 }, + [3] = { 35.6, 43.6, 3456, 7200 }, + [4] = { 49.1, 43.1, 3456, 7200 }, + [5] = { 46.1, 42.4, 3456, 7200 }, + [6] = { 47.6, 40.9, 3456, 7200 }, + [7] = { 48.6, 38.7, 3456, 7200 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16019] = "_", + [16020] = { + ["coords"] = { + [1] = { 41.1, 51.2, 3456, 7200 }, + [2] = { 41.9, 51, 3456, 7200 }, + [3] = { 41.3, 50.8, 3456, 7200 }, + [4] = { 41.6, 50.6, 3456, 7200 }, + [5] = { 43.5, 50.3, 3456, 7200 }, + [6] = { 43.3, 50, 3456, 7200 }, + [7] = { 43.3, 49.5, 3456, 7200 }, + [8] = { 43.6, 49.3, 3456, 7200 }, + [9] = { 38.9, 48.1, 3456, 7200 }, + [10] = { 38.9, 47.6, 3456, 7200 }, + [11] = { 38.2, 47.5, 3456, 7200 }, + [12] = { 38.6, 47.3, 3456, 7200 }, + [13] = { 36.9, 45.5, 3456, 7200 }, + [14] = { 37, 45, 3456, 7200 }, + [15] = { 36.4, 44.7, 3456, 7200 }, + [16] = { 36.7, 44.5, 3456, 7200 }, + [17] = { 35.9, 42, 3456, 7200 }, + [18] = { 36.1, 41.5, 3456, 7200 }, + [19] = { 36.1, 41.1, 3456, 7200 }, + [20] = { 35.7, 40.7, 3456, 7200 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16021] = { + ["coords"] = { + [1] = { 41.5, 51.2, 3456, 7200 }, + [2] = { 43.6, 49.8, 3456, 7200 }, + [3] = { 38.5, 47.9, 3456, 7200 }, + [4] = { 36.6, 45.1, 3456, 7200 }, + [5] = { 35.7, 41.4, 3456, 7200 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [16022] = { + ["coords"] = { + [1] = { 41.8, 51.2, 3456, 7200 }, + [2] = { 41.2, 51.1, 3456, 7200 }, + [3] = { 41.7, 50.8, 3456, 7200 }, + [4] = { 41.5, 50.7, 3456, 7200 }, + [5] = { 43.4, 50.1, 3456, 7200 }, + [6] = { 43.3, 49.7, 3456, 7200 }, + [7] = { 43.5, 49.5, 3456, 7200 }, + [8] = { 43.7, 49.5, 3456, 7200 }, + [9] = { 38.8, 48.2, 3456, 7200 }, + [10] = { 38.9, 47.9, 3456, 7200 }, + [11] = { 38.8, 47.4, 3456, 7200 }, + [12] = { 38.4, 47.3, 3456, 7200 }, + [13] = { 36.8, 45.5, 3456, 7200 }, + [14] = { 36.9, 45.2, 3456, 7200 }, + [15] = { 36.8, 44.8, 3456, 7200 }, + [16] = { 36.6, 44.7, 3456, 7200 }, + [17] = { 35.7, 42, 3456, 7200 }, + [18] = { 36, 41.7, 3456, 7200 }, + [19] = { 36, 41.4, 3456, 7200 }, + [20] = { 35.9, 41, 3456, 7200 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16023] = "_", + [16024] = { + ["coords"] = { + [1] = { 42.1, 41, 3456, 180 }, + [2] = { 41.8, 40.9, 3456, 180 }, + [3] = { 42.7, 40.5, 3456, 180 }, + [4] = { 41.4, 40.4, 3456, 180 }, + [5] = { 42.4, 40.2, 3456, 180 }, + [6] = { 41.7, 40.1, 3456, 180 }, + [7] = { 41.2, 40, 3456, 180 }, + [8] = { 42.1, 39.9, 3456, 180 }, + [9] = { 42.8, 39.8, 3456, 180 }, + [10] = { 41.6, 39.4, 3456, 180 }, + [11] = { 42.5, 39.3, 3456, 180 }, + [12] = { 41.8, 39.3, 3456, 180 }, + [13] = { 41.3, 38.9, 3456, 180 }, + [14] = { 42.7, 38.8, 3456, 180 }, + [15] = { 42.3, 38.5, 3456, 180 }, + [16] = { 41.7, 38.4, 3456, 180 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16025] = { + ["coords"] = { + [1] = { 48.3, 34.9, 3456, 7200 }, + [2] = { 46.9, 34.6, 3456, 7200 }, + [3] = { 45.3, 34.6, 3456, 7200 }, + [4] = { 49.3, 29.7, 3456, 7200 }, + [5] = { 49.4, 27.9, 3456, 7200 }, + [6] = { 46.4, 24.7, 3456, 7200 }, + [7] = { 47.6, 24.7, 3456, 7200 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [16026] = "_", + [16028] = { + ["coords"] = { + [1] = { 43, 26.4, 3456, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [16029] = { + ["coords"] = { + [1] = { 43.6, 39.8, 3456, 7200 }, + [2] = { 40.4, 39.5, 3456, 7200 }, + [3] = { 46.5, 36.8, 3456, 7200 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [16030] = { + ["coords"] = { + [1] = { 30.7, 88.4, 405, 120 }, + [2] = { 31.2, 88, 405, 120 }, + [3] = { 31.9, 86.9, 405, 120 }, + [4] = { 31.7, 85.6, 405, 120 }, + [5] = { 54.6, 50.4, 3456, 7200 }, + [6] = { 51.6, 49.2, 3456, 7200 }, + [7] = { 38.8, 48.8, 3456, 7200 }, + [8] = { 55.2, 46.9, 3456, 7200 }, + [9] = { 53, 46.3, 3456, 7200 }, + [10] = { 43.4, 45.3, 3456, 7200 }, + [11] = { 47.1, 44.4, 3456, 7200 }, + [12] = { 47.4, 44.1, 3456, 7200 }, + [13] = { 47.2, 44, 3456, 7200 }, + [14] = { 47, 43.9, 3456, 7200 }, + [15] = { 47.2, 43.7, 3456, 7200 }, + [16] = { 46.1, 42, 3456, 7200 }, + [17] = { 44.7, 41.1, 3456, 7200 }, + [18] = { 49.8, 40.6, 3456, 7200 }, + [19] = { 49.6, 40.4, 3456, 7200 }, + [20] = { 34.7, 40.3, 3456, 7200 }, + [21] = { 49.7, 40.2, 3456, 7200 }, + [22] = { 49.9, 40.1, 3456, 7200 }, + [23] = { 49.7, 40, 3456, 7200 }, + [24] = { 47.8, 36.5, 3456, 7200 }, + [25] = { 47.1, 36.2, 3456, 7200 }, + [26] = { 49.3, 31.1, 3456, 7200 }, + [27] = { 48.9, 31, 3456, 7200 }, + [28] = { 49, 30.7, 3456, 7200 }, + [29] = { 49.2, 30.5, 3456, 7200 }, + [30] = { 48.8, 30.5, 3456, 7200 }, + [31] = { 44.9, 29.4, 3456, 7200 }, + [32] = { 45, 26.9, 3456, 7200 }, + [33] = { 48.8, 26.6, 3456, 7200 }, + [34] = { 48.5, 26, 3456, 7200 }, + [35] = { 48.9, 25.9, 3456, 7200 }, + [36] = { 48.2, 25.7, 3456, 7200 }, + [37] = { 48.6, 25.5, 3456, 7200 }, + [38] = { 42.7, 25.3, 3456, 7200 }, + }, + ["lvl"] = "1", + }, + [16033] = { + ["coords"] = { + [1] = { 63.3, 44.4, 25, 25 }, + [2] = { 32.2, 25.8, 46, 25 }, + [3] = { 39.8, 96.5, 51, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "2", + }, + [16034] = { + ["coords"] = { + [1] = { 61.6, 71.8, 3456, 240 }, + [2] = { 60.8, 67.2, 3456, 240 }, + [3] = { 62, 61.6, 3456, 240 }, + [4] = { 65.8, 61.1, 3456, 240 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16035] = "_", + [16036] = { + ["coords"] = { + [1] = { 61.8, 75.6, 3456, 30 }, + [2] = { 62.8, 74.7, 3456, 30 }, + [3] = { 62, 73.3, 3456, 30 }, + [4] = { 62.7, 72.8, 3456, 30 }, + [5] = { 60.7, 72.7, 3456, 30 }, + [6] = { 60.3, 71.1, 3456, 30 }, + [7] = { 62.3, 71, 3456, 30 }, + [8] = { 61.9, 69.9, 3456, 30 }, + [9] = { 61.3, 69, 3456, 30 }, + [10] = { 59.2, 68.5, 3456, 30 }, + [11] = { 58.5, 67.6, 3456, 30 }, + [12] = { 59.2, 67, 3456, 30 }, + [13] = { 59.8, 65.2, 3456, 30 }, + [14] = { 59, 65.1, 3456, 30 }, + [15] = { 62, 65, 3456, 30 }, + [16] = { 62.6, 65, 3456, 30 }, + [17] = { 60.1, 63.9, 3456, 30 }, + [18] = { 62, 63.5, 3456, 30 }, + [19] = { 62.8, 63, 3456, 30 }, + [20] = { 58.7, 62.9, 3456, 30 }, + [21] = { 60.7, 62.1, 3456, 30 }, + [22] = { 65.2, 61.4, 3456, 30 }, + [23] = { 63, 61.4, 3456, 30 }, + [24] = { 61.4, 61.2, 3456, 30 }, + [25] = { 62.8, 60.6, 3456, 30 }, + [26] = { 61.3, 60.2, 3456, 30 }, + [27] = { 64.8, 60, 3456, 30 }, + [28] = { 66.6, 59.2, 3456, 30 }, + [29] = { 64.8, 58.8, 3456, 30 }, + [30] = { 65.7, 58.7, 3456, 30 }, + [31] = { 62, 58.6, 3456, 30 }, + [32] = { 66.9, 57.8, 3456, 30 }, + [33] = { 60.6, 57.8, 3456, 30 }, + [34] = { 65.4, 57.5, 3456, 30 }, + [35] = { 62.7, 57.1, 3456, 30 }, + [36] = { 63.8, 56.6, 3456, 30 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16037] = { + ["coords"] = { + [1] = { 61.3, 74.2, 3456, 30 }, + [2] = { 62.1, 74.1, 3456, 30 }, + [3] = { 61.5, 72.8, 3456, 30 }, + [4] = { 60.1, 72.1, 3456, 30 }, + [5] = { 61.5, 71.5, 3456, 30 }, + [6] = { 61.2, 70.4, 3456, 30 }, + [7] = { 60.1, 68.8, 3456, 30 }, + [8] = { 62.2, 68.7, 3456, 30 }, + [9] = { 61.1, 68.3, 3456, 30 }, + [10] = { 60.3, 68, 3456, 30 }, + [11] = { 62, 67.5, 3456, 30 }, + [12] = { 60, 67, 3456, 30 }, + [13] = { 61.1, 64.6, 3456, 30 }, + [14] = { 61.6, 64.1, 3456, 30 }, + [15] = { 60.6, 63.7, 3456, 30 }, + [16] = { 59.3, 62.4, 3456, 30 }, + [17] = { 61.6, 61.9, 3456, 30 }, + [18] = { 60.3, 61.4, 3456, 30 }, + [19] = { 66.2, 61.1, 3456, 30 }, + [20] = { 67.4, 61.1, 3456, 30 }, + [21] = { 64.2, 60.7, 3456, 30 }, + [22] = { 60.7, 60.4, 3456, 30 }, + [23] = { 66.6, 60.2, 3456, 30 }, + [24] = { 63.7, 59.7, 3456, 30 }, + [25] = { 67.5, 59.7, 3456, 30 }, + [26] = { 67.7, 58.8, 3456, 30 }, + [27] = { 63.2, 58.4, 3456, 30 }, + [28] = { 61.1, 58.3, 3456, 30 }, + [29] = { 64.2, 57.9, 3456, 30 }, + [30] = { 62, 57.7, 3456, 30 }, + [31] = { 66.2, 57.4, 3456, 30 }, + [32] = { 67.3, 56.9, 3456, 30 }, + [33] = { 61.4, 56.8, 3456, 30 }, + [34] = { 60.6, 56.6, 3456, 30 }, + [35] = { 66, 56.3, 3456, 30 }, + [36] = { 64.7, 56.2, 3456, 30 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16038] = "_", + [16039] = "_", + [16040] = "_", + [16041] = "_", + [16042] = { + ["coords"] = { + [1] = { 61.5, 42.6, 1583, 604800 }, + [2] = { 61.5, 43, 1583, 25 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [16044] = { + ["coords"] = { + [1] = { 52.5, 54.5, 1583, 300 }, + }, + ["lvl"] = "60", + }, + [16046] = { + ["coords"] = { + [1] = { 35.1, 93.7, 2017, 7200 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [16048] = { + ["coords"] = { + [1] = { 61.5, 43, 1583, 25 }, + }, + ["lvl"] = "60", + }, + [16056] = { + ["coords"] = { + [1] = { 70, 68.2, 3456, 60 }, + [2] = { 70.6, 66.8, 3456, 60 }, + [3] = { 69.4, 66, 3456, 60 }, + [4] = { 69.5, 65, 3456, 60 }, + [5] = { 70.6, 64.7, 3456, 60 }, + [6] = { 69.3, 62.7, 3456, 60 }, + [7] = { 70.7, 62.6, 3456, 60 }, + [8] = { 69.2, 62.1, 3456, 60 }, + [9] = { 70.4, 61.5, 3456, 60 }, + [10] = { 69.7, 60.3, 3456, 60 }, + [11] = { 70.7, 59.9, 3456, 60 }, + [12] = { 70.3, 59.7, 3456, 60 }, + [13] = { 70.3, 57.8, 3456, 60 }, + [14] = { 69.2, 57.7, 3456, 60 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16057] = { + ["coords"] = { + [1] = { 70, 67.7, 3456, 60 }, + [2] = { 70.5, 67.4, 3456, 60 }, + [3] = { 70.7, 65.2, 3456, 60 }, + [4] = { 69.3, 65.2, 3456, 60 }, + [5] = { 70.2, 64.6, 3456, 60 }, + [6] = { 70.6, 63.6, 3456, 60 }, + [7] = { 69.3, 63.3, 3456, 60 }, + [8] = { 69.9, 62.2, 3456, 60 }, + [9] = { 69.9, 61.3, 3456, 60 }, + [10] = { 70.9, 60.9, 3456, 60 }, + [11] = { 69.3, 60.6, 3456, 60 }, + [12] = { 69.5, 59.3, 3456, 60 }, + [13] = { 70.6, 59.1, 3456, 60 }, + [14] = { 70.7, 58.1, 3456, 60 }, + [15] = { 69.6, 57.7, 3456, 60 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16060] = { + ["coords"] = { + [1] = { 50.9, 76.9, 3456, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [16061] = { + ["coords"] = { + [1] = { 36.3, 68.3, 3456, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [16062] = { + ["coords"] = { + [1] = { 28.7, 86.2, 3456, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [16063] = { + ["coords"] = { + [1] = { 28.6, 85.9, 3456, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [16064] = { + ["coords"] = { + [1] = { 29.1, 86.7, 3456, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [16065] = { + ["coords"] = { + [1] = { 28.9, 86.5, 3456, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [16067] = { + ["coords"] = { + [1] = { 39.1, 59.5, 3456, 7200 }, + [2] = { 39.1, 59.1, 3456, 7200 }, + [3] = { 42.4, 56.3, 3456, 7200 }, + [4] = { 39, 56.2, 3456, 7200 }, + [5] = { 42.4, 56, 3456, 7200 }, + [6] = { 39.1, 55.9, 3456, 7200 }, + [7] = { 40, 53.5, 3456, 7200 }, + [8] = { 41.4, 53.4, 3456, 7200 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16068] = { + ["coords"] = { + [1] = { 62.7, 74.6, 3456, 7200 }, + [2] = { 61.2, 73.4, 3456, 7200 }, + [3] = { 61.5, 72.3, 3456, 7200 }, + [4] = { 61.4, 69.9, 3456, 7200 }, + [5] = { 61, 68.4, 3456, 7200 }, + [6] = { 60.5, 67.6, 3456, 7200 }, + [7] = { 62.3, 67, 3456, 7200 }, + [8] = { 59.4, 66.9, 3456, 7200 }, + [9] = { 60.8, 65.7, 3456, 7200 }, + [10] = { 61, 64.8, 3456, 7200 }, + [11] = { 60.3, 64.1, 3456, 7200 }, + [12] = { 58.9, 62.5, 3456, 7200 }, + [13] = { 65.9, 61.4, 3456, 7200 }, + [14] = { 62.4, 60.7, 3456, 7200 }, + [15] = { 66.9, 60.4, 3456, 7200 }, + [16] = { 63.9, 60.4, 3456, 7200 }, + [17] = { 65.1, 60.2, 3456, 7200 }, + [18] = { 64.4, 60, 3456, 7200 }, + [19] = { 60.9, 59.7, 3456, 7200 }, + [20] = { 66.8, 59.2, 3456, 7200 }, + [21] = { 66.1, 59.1, 3456, 7200 }, + [22] = { 64, 58.9, 3456, 7200 }, + [23] = { 62.5, 58.8, 3456, 7200 }, + [24] = { 61.4, 58.5, 3456, 7200 }, + [25] = { 65.4, 58.2, 3456, 7200 }, + [26] = { 62.4, 57.8, 3456, 7200 }, + [27] = { 60.1, 57.7, 3456, 7200 }, + [28] = { 64.3, 57.7, 3456, 7200 }, + [29] = { 63.8, 57.6, 3456, 7200 }, + [30] = { 66.5, 57.4, 3456, 7200 }, + [31] = { 65.6, 57, 3456, 7200 }, + [32] = { 60.8, 56.4, 3456, 7200 }, + }, + ["lvl"] = "1", + }, + [16073] = { + ["coords"] = { + [1] = { 61.6, 43.9, 1583, 0 }, + }, + ["fac"] = "AH", + ["lvl"] = "63", + }, + [16075] = { + ["coords"] = { + [1] = { 74.2, 13.2, 130, 120 }, + [2] = { 74, 13, 130, 120 }, + [3] = { 25.5, 63.8, 141, 120 }, + [4] = { 25.1, 63.7, 141, 120 }, + [5] = { 41.8, 27.5, 215, 120 }, + [6] = { 42.2, 27.1, 215, 120 }, + [7] = { 56.4, 90.8, 1497, 120 }, + [8] = { 55.2, 89.9, 1497, 120 }, + [9] = { 40.3, 56.6, 1537, 120 }, + [10] = { 40.1, 56.4, 1537, 120 }, + [11] = { 32.7, 38, 1637, 120 }, + [12] = { 32.6, 36.8, 1637, 120 }, + [13] = { 59.2, 52.2, 1638, 120 }, + [14] = { 60.9, 50.3, 1638, 120 }, + [15] = { 39.7, 81.1, 1657, 120 }, + [16] = { 38.1, 80.5, 1657, 120 }, + [17] = { 59.3, 98.2, 5581, 120 }, + [18] = { 59.7, 97.7, 5581, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [16077] = "_", + [16078] = "_", + [16079] = { + ["coords"] = { + [1] = { 53.2, 72.7, 1584, 7200 }, + }, + ["lvl"] = "60", + }, + [16080] = { + ["coords"] = { + [1] = { 52.5, 54.2, 1583, 604800 }, + [2] = { 52.5, 54.5, 1583, 300 }, + }, + ["lvl"] = "58-60", + ["rnk"] = "1", + }, + [16081] = "_", + [16082] = { + ["coords"] = { + [1] = { 39, 40.5, 3456, 3600 }, + }, + ["lvl"] = "60", + }, + [16084] = "_", + [16089] = "_", + [16096] = { + ["coords"] = { + [1] = { 41.6, 18.7, 14, 300 }, + [2] = { 41.7, 18.6, 14, 300 }, + [3] = { 41.2, 18.3, 14, 300 }, + [4] = { 41.7, 18.1, 14, 300 }, + [5] = { 41.3, 18.1, 14, 300 }, + [6] = { 51.1, 13.3, 14, 600 }, + [7] = { 50.6, 13.3, 14, 600 }, + [8] = { 51, 12.9, 14, 600 }, + [9] = { 42.3, 74.2, 15, 25 }, + [10] = { 41.8, 73.9, 15, 25 }, + [11] = { 42.7, 73.7, 15, 25 }, + [12] = { 41.8, 73.1, 15, 25 }, + [13] = { 42.1, 72.8, 15, 25 }, + [14] = { 42.8, 72.6, 15, 25 }, + [15] = { 41.8, 72.4, 15, 25 }, + [16] = { 41.9, 72.3, 15, 25 }, + [17] = { 31.4, 29.8, 33, 1800 }, + [18] = { 31.7, 29.8, 33, 1800 }, + [19] = { 31.7, 29.4, 33, 1800 }, + [20] = { 61.8, 59.2, 85, 900 }, + [21] = { 61.8, 59.1, 85, 900 }, + [22] = { 61.9, 59, 85, 900 }, + [23] = { 60.7, 58.9, 85, 900 }, + [24] = { 60.7, 58.6, 85, 900 }, + [25] = { 42.8, 72.5, 15, 120 }, + }, + ["lvl"] = "55", + }, + [16099] = "_", + [16100] = { + ["coords"] = { + [1] = { 58.7, 15.4, 2017, 7200 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [16101] = { + ["coords"] = { + [1] = { 35.2, 93.8, 2017, 604800 }, + [2] = { 35.1, 93.7, 2017, 7200 }, + }, + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [16102] = { + ["coords"] = { + [1] = { 35, 93.6, 2017, 604800 }, + [2] = { 35.1, 93.7, 2017, 7200 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16105] = { + ["coords"] = { + [1] = { 61.9, 75, 1519, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [16106] = { + ["coords"] = { + [1] = { 50.5, 60.8, 1519, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [16112] = { + ["coords"] = { + [1] = { 81.8, 58.1, 139, 610 }, + [2] = { 41.2, 37.3, 4012, 610 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16113] = { + ["coords"] = { + [1] = { 81.5, 58.2, 139, 610 }, + [2] = { 40.8, 37.4, 4012, 610 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16114] = { + ["coords"] = { + [1] = { 81.4, 58.3, 139, 610 }, + [2] = { 40.8, 37.5, 4012, 610 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16115] = { + ["coords"] = { + [1] = { 81.5, 58.2, 139, 610 }, + [2] = { 40.9, 37.4, 4012, 610 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16116] = { + ["coords"] = { + [1] = { 81.5, 58.3, 139, 60 }, + [2] = { 40.9, 37.5, 4012, 60 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16117] = { + ["coords"] = { + [1] = { 18.1, 35.3, 139, 345 }, + [2] = { 17.9, 34.8, 139, 345 }, + [3] = { 17.7, 34.4, 139, 345 }, + [4] = { 18.9, 34.3, 139, 345 }, + [5] = { 18.8, 33.8, 139, 345 }, + [6] = { 14.1, 33.7, 139, 345 }, + [7] = { 14.7, 33.7, 139, 345 }, + [8] = { 15.5, 33.2, 139, 345 }, + [9] = { 18.2, 33.1, 139, 345 }, + [10] = { 15.1, 33, 139, 345 }, + [11] = { 13.8, 33, 139, 345 }, + [12] = { 18.3, 32.1, 139, 345 }, + [13] = { 14.9, 31.9, 139, 345 }, + [14] = { 17.1, 31.2, 139, 345 }, + [15] = { 17.9, 30.5, 139, 345 }, + [16] = { 16.2, 30.3, 139, 345 }, + [17] = { 16.4, 29.6, 139, 345 }, + [18] = { 60.8, 99.5, 5225, 345 }, + [19] = { 60.5, 99, 5225, 345 }, + [20] = { 62, 98.9, 5225, 345 }, + [21] = { 61.9, 98.3, 5225, 345 }, + [22] = { 56, 98.2, 5225, 345 }, + [23] = { 56.7, 98.1, 5225, 345 }, + [24] = { 57.8, 97.5, 5225, 345 }, + [25] = { 61.1, 97.3, 5225, 345 }, + [26] = { 57.2, 97.2, 5225, 345 }, + [27] = { 55.6, 97.2, 5225, 345 }, + [28] = { 61.2, 96.1, 5225, 345 }, + [29] = { 57, 95.9, 5225, 345 }, + [30] = { 59.8, 95, 5225, 345 }, + [31] = { 60.8, 94.1, 5225, 345 }, + [32] = { 58.7, 93.8, 5225, 345 }, + [33] = { 58.9, 92.9, 5225, 345 }, + }, + ["lvl"] = "60", + }, + [16128] = "_", + [16131] = { + ["coords"] = { + [1] = { 81.4, 58.5, 139, 610 }, + [2] = { 40.8, 37.8, 4012, 610 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16132] = { + ["coords"] = { + [1] = { 81.5, 58.6, 139, 610 }, + [2] = { 40.8, 37.9, 4012, 610 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16133] = { + ["coords"] = { + [1] = { 81.4, 58.2, 139, 610 }, + [2] = { 40.7, 37.5, 4012, 610 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16134] = { + ["coords"] = { + [1] = { 81.1, 59, 139, 610 }, + [2] = { 40.4, 38.4, 4012, 610 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16135] = { + ["coords"] = { + [1] = { 81.2, 59, 139, 610 }, + [2] = { 40.5, 38.4, 4012, 610 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16137] = { + ["coords"] = { + [1] = { 51.4, 76.8, 3456, 3600 }, + [2] = { 47.5, 76.8, 3456, 3600 }, + [3] = { 48.5, 75.2, 3456, 3600 }, + [4] = { 52.9, 74.9, 3456, 3600 }, + [5] = { 46.6, 73.8, 3456, 3600 }, + [6] = { 53, 73.2, 3456, 3600 }, + [7] = { 52.9, 73.2, 3456, 3600 }, + [8] = { 47.6, 72.5, 3456, 3600 }, + [9] = { 53, 71.5, 3456, 3600 }, + [10] = { 46.9, 70.6, 3456, 3600 }, + [11] = { 48.9, 70, 3456, 3600 }, + [12] = { 51.4, 69.5, 3456, 3600 }, + [13] = { 47.5, 69.5, 3456, 3600 }, + }, + ["lvl"] = "60", + }, + [16138] = "_", + [16140] = "_", + [16145] = { + ["coords"] = { + [1] = { 51.6, 65.7, 3456, 7200 }, + [2] = { 39.7, 65.5, 3456, 7200 }, + [3] = { 51.4, 65.2, 3456, 7200 }, + [4] = { 39.6, 63.3, 3456, 7200 }, + [5] = { 41.7, 62.2, 3456, 7200 }, + [6] = { 40.5, 61.2, 3456, 7200 }, + [7] = { 43.7, 59.3, 3456, 7200 }, + [8] = { 43.6, 59, 3456, 7200 }, + [9] = { 41.7, 58.9, 3456, 7200 }, + [10] = { 46.8, 58.8, 3456, 7200 }, + [11] = { 44.3, 58.4, 3456, 7200 }, + [12] = { 44.5, 58.2, 3456, 7200 }, + [13] = { 49.6, 55.6, 3456, 7200 }, + [14] = { 49, 54.7, 3456, 7200 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16146] = { + ["coords"] = { + [1] = { 39.7, 65, 3456, 7200 }, + [2] = { 40.3, 64.1, 3456, 7200 }, + [3] = { 39.3, 63.9, 3456, 7200 }, + [4] = { 39.3, 63.1, 3456, 7200 }, + [5] = { 41.8, 62.8, 3456, 7200 }, + [6] = { 42.1, 62.1, 3456, 7200 }, + [7] = { 40.4, 60.6, 3456, 7200 }, + [8] = { 40.8, 60.6, 3456, 7200 }, + [9] = { 43.9, 59.6, 3456, 7200 }, + [10] = { 41.5, 59.5, 3456, 7200 }, + [11] = { 47.1, 58.8, 3456, 7200 }, + [12] = { 43.9, 58.7, 3456, 7200 }, + [13] = { 50.6, 55.5, 3456, 7200 }, + [14] = { 49, 53.1, 3456, 7200 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16154] = { + ["coords"] = { + [1] = { 38.4, 61, 3456, 7200 }, + [2] = { 38.8, 60.3, 3456, 7200 }, + [3] = { 50.4, 55.7, 3456, 7200 }, + [4] = { 50.7, 55.3, 3456, 7200 }, + [5] = { 40.3, 53.8, 3456, 7200 }, + [6] = { 48.9, 53.5, 3456, 7200 }, + [7] = { 49.2, 52.9, 3456, 7200 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16156] = { + ["coords"] = { + [1] = { 38.7, 64.4, 3456, 7200 }, + [2] = { 38.5, 63.6, 3456, 7200 }, + [3] = { 37.9, 60.5, 3456, 7200 }, + [4] = { 41.9, 59.5, 3456, 7200 }, + [5] = { 47.2, 58.3, 3456, 7200 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16157] = { + ["coords"] = { + [1] = { 39.9, 65.5, 3456, 7200 }, + [2] = { 38.1, 64, 3456, 7200 }, + [3] = { 41.3, 58.9, 3456, 7200 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16158] = { + ["coords"] = { + [1] = { 40.5, 65.7, 3456, 7200 }, + [2] = { 39.4, 65.3, 3456, 7200 }, + [3] = { 40, 65.1, 3456, 7200 }, + [4] = { 40.1, 64.7, 3456, 7200 }, + [5] = { 40.4, 64.4, 3456, 7200 }, + [6] = { 40, 64.2, 3456, 7200 }, + [7] = { 46.8, 58.2, 3456, 7200 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16163] = { + ["coords"] = { + [1] = { 50.2, 66.1, 3456, 7200 }, + [2] = { 50.2, 65.6, 3456, 7200 }, + [3] = { 39.9, 65.5, 3456, 7200 }, + [4] = { 38.4, 64.2, 3456, 7200 }, + [5] = { 42.3, 63.2, 3456, 7200 }, + [6] = { 42.4, 62.6, 3456, 7200 }, + [7] = { 38.3, 60.3, 3456, 7200 }, + [8] = { 40, 55.7, 3456, 7200 }, + [9] = { 41.5, 55.7, 3456, 7200 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16164] = { + ["coords"] = { + [1] = { 45, 66, 3456, 7200 }, + [2] = { 45.1, 62.2, 3456, 7200 }, + [3] = { 44.6, 61.4, 3456, 7200 }, + [4] = { 46.1, 57.1, 3456, 7200 }, + [5] = { 48.7, 55.9, 3456, 7200 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16165] = { + ["coords"] = { + [1] = { 45.3, 66.3, 3456, 7200 }, + [2] = { 51.2, 65.7, 3456, 7200 }, + [3] = { 44.7, 65.6, 3456, 7200 }, + [4] = { 51, 65.2, 3456, 7200 }, + [5] = { 44.8, 61.9, 3456, 7200 }, + [6] = { 48.8, 56.2, 3456, 7200 }, + [7] = { 48.6, 55.9, 3456, 7200 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16166] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [16167] = { + ["coords"] = { + [1] = { 47.2, 62.8, 3456, 7200 }, + [2] = { 47.6, 62.7, 3456, 7200 }, + [3] = { 46.8, 62.3, 3456, 7200 }, + [4] = { 48.1, 62.2, 3456, 7200 }, + [5] = { 48.1, 61.7, 3456, 7200 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16168] = { + ["coords"] = { + [1] = { 55.6, 66.7, 3456, 7200 }, + [2] = { 56.3, 66.7, 3456, 7200 }, + [3] = { 55.6, 64.3, 3456, 7200 }, + [4] = { 56.3, 64.3, 3456, 7200 }, + [5] = { 56.4, 61.9, 3456, 7200 }, + [6] = { 55.6, 61.9, 3456, 7200 }, + [7] = { 55.9, 61.3, 3456, 7200 }, + [8] = { 57, 59.4, 3456, 7200 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16182] = "_", + [16184] = { + ["coords"] = { + [1] = { 67.8, 19.3, 28, 5191 }, + [2] = { 8.1, 38.2, 139, 5191 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [16188] = "_", + [16193] = { + ["coords"] = { + [1] = { 45.1, 57.4, 3456, 7200 }, + [2] = { 45.2, 56.7, 3456, 7200 }, + [3] = { 45.9, 56.3, 3456, 7200 }, + [4] = { 46, 55.6, 3456, 7200 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16194] = { + ["coords"] = { + [1] = { 42.2, 74, 3456, 7200 }, + [2] = { 37.8, 71.6, 3456, 7200 }, + [3] = { 40.4, 71.6, 3456, 7200 }, + [4] = { 38.2, 71.2, 3456, 7200 }, + [5] = { 42.4, 70.7, 3456, 7200 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16211] = { + ["coords"] = { + [1] = { 37.1, 68.3, 3456, 3600 }, + [2] = { 35.5, 67.9, 3456, 3600 }, + [3] = { 37.2, 66.5, 3456, 3600 }, + [4] = { 35.7, 66.2, 3456, 3600 }, + [5] = { 39.1, 63.9, 3456, 3600 }, + [6] = { 39.1, 63, 3456, 3600 }, + [7] = { 41.9, 62.9, 3456, 3600 }, + [8] = { 42.2, 62.3, 3456, 3600 }, + [9] = { 39.3, 61.6, 3456, 3600 }, + [10] = { 39.5, 61, 3456, 3600 }, + [11] = { 40.4, 60.5, 3456, 3600 }, + [12] = { 40.8, 60.4, 3456, 3600 }, + }, + ["lvl"] = "1", + }, + [16212] = { + ["coords"] = { + [1] = { 81.1, 57.5, 139, 345 }, + [2] = { 40.3, 36.6, 4012, 345 }, + }, + ["lvl"] = "60", + }, + [16214] = "_", + [16215] = { + ["coords"] = { + [1] = { 39.9, 75.3, 3456, 7200 }, + [2] = { 40.1, 75, 3456, 7200 }, + [3] = { 42.2, 73.2, 3456, 7200 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16216] = { + ["coords"] = { + [1] = { 40.1, 71.9, 3456, 7200 }, + [2] = { 43, 70.2, 3456, 7200 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16225] = { + ["coords"] = { + [1] = { 80.3, 58.1, 139, 518 }, + [2] = { 80.3, 58, 139, 518 }, + [3] = { 39.4, 37.4, 4012, 518 }, + [4] = { 39.3, 37.3, 4012, 518 }, + [5] = { 39.3, 37.2, 4012, 518 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [16226] = { + ["coords"] = { + [1] = { 80.1, 57.9, 139, 14400 }, + [2] = { 39.1, 37.1, 4012, 14400 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16227] = { + ["coords"] = { + [1] = { 63.1, 37.2, 17, 120 }, + }, + ["lvl"] = "55", + ["rnk"] = "1", + }, + [16228] = { + ["coords"] = { + [1] = { 47.5, 43.1, 139, 345 }, + [2] = { 47.6, 42.9, 139, 345 }, + [3] = { 47, 42.4, 139, 345 }, + [4] = { 47, 42.3, 139, 345 }, + [5] = { 48.8, 40.7, 139, 345 }, + [6] = { 47.9, 40.5, 139, 345 }, + [7] = { 0.8, 16, 4012, 345 }, + }, + ["lvl"] = "60", + }, + [16232] = { + ["coords"] = { + [1] = { 80.2, 57.9, 139, 14400 }, + [2] = { 80.3, 57.9, 139, 14400 }, + [3] = { 80.4, 57.8, 139, 14400 }, + [4] = { 80.2, 57.8, 139, 14400 }, + [5] = { 80.3, 57.7, 139, 14400 }, + [6] = { 39.3, 37.1, 4012, 14400 }, + [7] = { 39.4, 37, 4012, 14400 }, + [8] = { 39.5, 36.9, 4012, 14400 }, + [9] = { 39.3, 36.9, 4012, 14400 }, + [10] = { 39.4, 36.9, 4012, 14400 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [16233] = "_", + [16234] = "_", + [16235] = "_", + [16241] = { + ["coords"] = { + [1] = { 25.4, 56.4, 141, 120 }, + [2] = { 25.6, 56.3, 141, 120 }, + [3] = { 62.2, 72.3, 1519, 120 }, + [4] = { 34.1, 68.1, 1537, 120 }, + [5] = { 29.8, 61.6, 1537, 120 }, + [6] = { 39.5, 45.3, 1657, 120 }, + [7] = { 40.4, 45.2, 1657, 120 }, + }, + ["lvl"] = "60", + }, + [16243] = { + ["coords"] = { + [1] = { 58.1, 60, 3456, 7200 }, + [2] = { 58.9, 59.3, 3456, 7200 }, + [3] = { 55.5, 58.3, 3456, 7200 }, + [4] = { 55.7, 57.8, 3456, 7200 }, + [5] = { 57.8, 55.3, 3456, 7200 }, + [6] = { 57.5, 54.9, 3456, 7200 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16244] = { + ["coords"] = { + [1] = { 58.5, 60.1, 3456, 7200 }, + [2] = { 58.8, 59.9, 3456, 7200 }, + [3] = { 58.5, 59.3, 3456, 7200 }, + [4] = { 55.8, 58.2, 3456, 7200 }, + [5] = { 55.2, 57.9, 3456, 7200 }, + [6] = { 55.4, 57.4, 3456, 7200 }, + [7] = { 57.5, 55.4, 3456, 7200 }, + [8] = { 57.2, 55.1, 3456, 7200 }, + [9] = { 57.2, 54.5, 3456, 7200 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16256] = { + ["coords"] = { + [1] = { 81.6, 58.1, 139, 345 }, + [2] = { 41, 37.3, 4012, 345 }, + }, + ["lvl"] = "52", + }, + [16281] = { + ["coords"] = { + [1] = { 80.9, 60.3, 139, 120 }, + [2] = { 40.1, 40.1, 4012, 120 }, + }, + ["lvl"] = "55", + }, + [16283] = { + ["coords"] = { + [1] = { 80.4, 58, 139, 345 }, + [2] = { 39.5, 37.2, 4012, 345 }, + }, + ["lvl"] = "59", + }, + [16284] = { + ["coords"] = { + [1] = { 80.6, 57.7, 139, 345 }, + [2] = { 46.9, 43.5, 139, 345 }, + [3] = { 39.8, 36.9, 4012, 345 }, + }, + ["lvl"] = "57-58", + }, + [16285] = { + ["coords"] = { + [1] = { 80.9, 60.1, 139, 120 }, + [2] = { 25.5, 56.3, 141, 120 }, + [3] = { 62.3, 72.1, 1519, 120 }, + [4] = { 34.3, 68.4, 1537, 120 }, + [5] = { 30.1, 61.7, 1537, 120 }, + [6] = { 39.7, 45.3, 1657, 120 }, + [7] = { 40.1, 39.8, 4012, 120 }, + }, + ["lvl"] = "55", + }, + [16297] = { + ["coords"] = { + [1] = { 60, 74.2, 3456, 30 }, + [2] = { 60.5, 73.3, 3456, 30 }, + [3] = { 61.9, 71.6, 3456, 30 }, + [4] = { 61.7, 69.9, 3456, 30 }, + [5] = { 60.4, 67.7, 3456, 30 }, + [6] = { 60.7, 66.1, 3456, 30 }, + [7] = { 61, 62.4, 3456, 30 }, + [8] = { 62.3, 62, 3456, 30 }, + [9] = { 65.8, 61.8, 3456, 30 }, + [10] = { 65.7, 60.4, 3456, 30 }, + [11] = { 61.8, 59.4, 3456, 30 }, + [12] = { 60.7, 59.1, 3456, 30 }, + [13] = { 65, 58.3, 3456, 30 }, + [14] = { 65.9, 57.4, 3456, 30 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16356] = { + ["coords"] = { + [1] = { 61.3, 45.9, 4, 120 }, + [2] = { 60.2, 45.9, 4, 120 }, + [3] = { 59.6, 45.7, 4, 120 }, + [4] = { 60.7, 45.6, 4, 120 }, + [5] = { 61.8, 45.5, 4, 120 }, + [6] = { 60.1, 45.3, 4, 120 }, + [7] = { 61.1, 45.2, 4, 120 }, + [8] = { 60.6, 45, 4, 120 }, + [9] = { 61.9, 44.9, 4, 120 }, + [10] = { 59.6, 44.9, 4, 120 }, + [11] = { 60.1, 44.6, 4, 120 }, + [12] = { 61, 44.5, 4, 120 }, + [13] = { 61.5, 44.4, 4, 120 }, + [14] = { 60.5, 44.2, 4, 120 }, + [15] = { 62, 44, 4, 120 }, + [16] = { 59.8, 43.9, 4, 120 }, + [17] = { 60.3, 43.6, 4, 120 }, + [18] = { 60.7, 43.6, 4, 120 }, + [19] = { 61.1, 43.5, 4, 120 }, + [20] = { 61.6, 43.5, 4, 120 }, + [21] = { 62.3, 43.3, 4, 120 }, + [22] = { 60.9, 42.9, 4, 120 }, + [23] = { 61.9, 42.9, 4, 120 }, + [24] = { 59.8, 42.9, 4, 120 }, + [25] = { 60.4, 42.7, 4, 120 }, + [26] = { 61.4, 42.7, 4, 120 }, + [27] = { 61.9, 42.2, 4, 120 }, + [28] = { 61, 42.2, 4, 120 }, + [29] = { 47.6, 39.9, 4, 120 }, + [30] = { 46.3, 39.9, 4, 120 }, + [31] = { 46.8, 39.7, 4, 120 }, + [32] = { 48.3, 39.5, 4, 120 }, + [33] = { 46, 39.3, 4, 120 }, + [34] = { 47.3, 39.2, 4, 120 }, + [35] = { 47.8, 39.2, 4, 120 }, + [36] = { 46.9, 38.9, 4, 120 }, + [37] = { 47.3, 38.6, 4, 120 }, + [38] = { 46, 38.5, 4, 120 }, + [39] = { 46.6, 38.4, 4, 120 }, + [40] = { 47.7, 38.4, 4, 120 }, + [41] = { 48.3, 38.2, 4, 120 }, + [42] = { 46.3, 37.9, 4, 120 }, + [43] = { 47.5, 37.8, 4, 120 }, + [44] = { 46.7, 37.7, 4, 120 }, + [45] = { 45.8, 37.7, 4, 120 }, + [46] = { 47.9, 37.5, 4, 120 }, + [47] = { 47.3, 37.3, 4, 120 }, + [48] = { 46.2, 37, 4, 120 }, + [49] = { 46.9, 37, 4, 120 }, + [50] = { 47.6, 36.8, 4, 120 }, + [51] = { 48.2, 36.8, 4, 120 }, + [52] = { 45.8, 36.8, 4, 120 }, + [53] = { 47.2, 36.4, 4, 120 }, + [54] = { 58, 36.3, 4, 120 }, + [55] = { 56.2, 36.3, 4, 120 }, + [56] = { 56.6, 36.3, 4, 120 }, + [57] = { 46.1, 36.2, 4, 120 }, + [58] = { 57.5, 36.2, 4, 120 }, + [59] = { 47.8, 36.1, 4, 120 }, + [60] = { 46.7, 36.1, 4, 120 }, + [61] = { 57, 36.1, 4, 120 }, + [62] = { 55.7, 36, 4, 120 }, + [63] = { 56.4, 35.7, 4, 120 }, + [64] = { 57.7, 35.7, 4, 120 }, + [65] = { 56.8, 35.6, 4, 120 }, + [66] = { 57.2, 35.6, 4, 120 }, + [67] = { 58.2, 35.5, 4, 120 }, + [68] = { 56.1, 35.3, 4, 120 }, + [69] = { 56.5, 35.1, 4, 120 }, + [70] = { 57.6, 34.9, 4, 120 }, + [71] = { 58, 34.9, 4, 120 }, + [72] = { 55.8, 34.8, 4, 120 }, + [73] = { 56.3, 34.5, 4, 120 }, + [74] = { 57.1, 34.4, 4, 120 }, + [75] = { 58.3, 34.3, 4, 120 }, + [76] = { 57.7, 34.2, 4, 120 }, + [77] = { 56.7, 34.2, 4, 120 }, + [78] = { 55.9, 33.9, 4, 120 }, + [79] = { 56.3, 33.8, 4, 120 }, + [80] = { 57.4, 33.7, 4, 120 }, + [81] = { 58, 33.6, 4, 120 }, + [82] = { 56.8, 33.4, 4, 120 }, + [83] = { 56, 33.1, 4, 120 }, + [84] = { 57.2, 33.1, 4, 120 }, + [85] = { 63.1, 32.5, 4, 120 }, + [86] = { 64.1, 32.3, 4, 120 }, + [87] = { 62.7, 32.3, 4, 120 }, + [88] = { 63.6, 32.3, 4, 120 }, + [89] = { 63.2, 31.8, 4, 120 }, + [90] = { 62, 31.7, 4, 120 }, + [91] = { 62.8, 31.6, 4, 120 }, + [92] = { 64, 31.6, 4, 120 }, + [93] = { 63.5, 31.3, 4, 120 }, + [94] = { 63.1, 31.1, 4, 120 }, + [95] = { 64.3, 31, 4, 120 }, + [96] = { 62.6, 31, 4, 120 }, + [97] = { 62.2, 30.7, 4, 120 }, + [98] = { 63.8, 30.6, 4, 120 }, + [99] = { 63.3, 30.6, 4, 120 }, + [100] = { 62.6, 30.3, 4, 120 }, + [101] = { 64.2, 30.1, 4, 120 }, + [102] = { 61.6, 30.1, 4, 120 }, + [103] = { 63, 29.9, 4, 120 }, + [104] = { 63.5, 29.9, 4, 120 }, + [105] = { 62.1, 29.8, 4, 120 }, + [106] = { 62.6, 29.6, 4, 120 }, + [107] = { 50.9, 29.4, 4, 120 }, + [108] = { 52.6, 29.4, 4, 120 }, + [109] = { 52, 29.3, 4, 120 }, + [110] = { 53.2, 29.3, 4, 120 }, + [111] = { 63, 29.2, 4, 120 }, + [112] = { 64.2, 29.2, 4, 120 }, + [113] = { 61.7, 29.2, 4, 120 }, + [114] = { 63.6, 29.1, 4, 120 }, + [115] = { 62.2, 29.1, 4, 120 }, + [116] = { 51.1, 28.7, 4, 120 }, + [117] = { 52.9, 28.7, 4, 120 }, + [118] = { 52.3, 28.7, 4, 120 }, + [119] = { 62.7, 28.7, 4, 120 }, + [120] = { 51.6, 28.6, 4, 120 }, + [121] = { 53.2, 28.1, 4, 120 }, + [122] = { 52.6, 28, 4, 120 }, + [123] = { 51.8, 28, 4, 120 }, + [124] = { 51.4, 28, 4, 120 }, + [125] = { 50.9, 27.6, 4, 120 }, + [126] = { 51.7, 27.5, 4, 120 }, + [127] = { 52.8, 27.4, 4, 120 }, + [128] = { 53.3, 27.3, 4, 120 }, + [129] = { 52.4, 27.3, 4, 120 }, + [130] = { 51.9, 27, 4, 120 }, + [131] = { 51.4, 26.9, 4, 120 }, + [132] = { 52.8, 26.7, 4, 120 }, + [133] = { 50.7, 26.6, 4, 120 }, + [134] = { 52.4, 26.6, 4, 120 }, + [135] = { 52, 26.3, 4, 120 }, + [136] = { 51.4, 26.2, 4, 120 }, + [137] = { 52.9, 26, 4, 120 }, + [138] = { 51.1, 25.9, 4, 120 }, + [139] = { 52.3, 25.9, 4, 120 }, + [140] = { 51.7, 25.8, 4, 120 }, + [141] = { 46.1, 22.2, 4, 120 }, + [142] = { 47.2, 22.1, 4, 120 }, + [143] = { 46.6, 22, 4, 120 }, + [144] = { 45.4, 22, 4, 120 }, + [145] = { 45.9, 21.4, 4, 120 }, + [146] = { 47, 21.3, 4, 120 }, + [147] = { 45, 21.2, 4, 120 }, + [148] = { 46.4, 21, 4, 120 }, + [149] = { 45.5, 20.9, 4, 120 }, + [150] = { 46, 20.8, 4, 120 }, + [151] = { 46.8, 20.6, 4, 120 }, + [152] = { 47.2, 20.5, 4, 120 }, + [153] = { 46.3, 20.4, 4, 120 }, + [154] = { 45.7, 20.3, 4, 120 }, + [155] = { 45.1, 20.2, 4, 120 }, + [156] = { 44.7, 19.8, 4, 120 }, + [157] = { 47, 19.8, 4, 120 }, + [158] = { 45.4, 19.6, 4, 120 }, + [159] = { 45.9, 19.6, 4, 120 }, + [160] = { 46.4, 19.6, 4, 120 }, + [161] = { 47.4, 19.2, 4, 120 }, + [162] = { 45.2, 19, 4, 120 }, + [163] = { 45.7, 19, 4, 120 }, + [164] = { 46.3, 19, 4, 120 }, + [165] = { 46.9, 18.9, 4, 120 }, + [166] = { 45.4, 18.4, 4, 120 }, + [167] = { 46, 18.3, 4, 120 }, + [168] = { 46.7, 18.2, 4, 120 }, + [169] = { 18.6, 67.7, 16, 120 }, + [170] = { 18.1, 67.6, 16, 120 }, + [171] = { 18.3, 67.4, 16, 120 }, + [172] = { 18.8, 67.3, 16, 120 }, + [173] = { 17.8, 67.2, 16, 120 }, + [174] = { 18.6, 67.2, 16, 120 }, + [175] = { 18.1, 67.2, 16, 120 }, + [176] = { 18.4, 67, 16, 120 }, + [177] = { 19.3, 67, 16, 120 }, + [178] = { 19, 66.9, 16, 120 }, + [179] = { 18.7, 66.9, 16, 120 }, + [180] = { 17.8, 66.8, 16, 120 }, + [181] = { 18.2, 66.8, 16, 120 }, + [182] = { 18.9, 66.6, 16, 120 }, + [183] = { 18, 66.6, 16, 120 }, + [184] = { 19.2, 66.6, 16, 120 }, + [185] = { 18.3, 66.5, 16, 120 }, + [186] = { 18.7, 66.4, 16, 120 }, + [187] = { 18.9, 66.2, 16, 120 }, + [188] = { 18.5, 66.2, 16, 120 }, + [189] = { 19.2, 66.1, 16, 120 }, + [190] = { 17.9, 66.1, 16, 120 }, + [191] = { 18.2, 66.1, 16, 120 }, + [192] = { 18.7, 66, 16, 120 }, + [193] = { 19, 65.8, 16, 120 }, + [194] = { 18.4, 65.8, 16, 120 }, + [195] = { 18.2, 65.6, 16, 120 }, + [196] = { 18.7, 65.6, 16, 120 }, + [197] = { 24, 60.5, 16, 120 }, + [198] = { 24.9, 60.3, 16, 120 }, + [199] = { 24.3, 60.3, 16, 120 }, + [200] = { 23.8, 60, 16, 120 }, + [201] = { 25.1, 59.9, 16, 120 }, + [202] = { 23.5, 59.8, 16, 120 }, + [203] = { 24.1, 59.8, 16, 120 }, + [204] = { 24.5, 59.7, 16, 120 }, + [205] = { 24.8, 59.7, 16, 120 }, + [206] = { 23.8, 59.5, 16, 120 }, + [207] = { 24.3, 59.4, 16, 120 }, + [208] = { 45.3, 59.4, 16, 120 }, + [209] = { 24.6, 59.4, 16, 120 }, + [210] = { 25.1, 59.4, 16, 120 }, + [211] = { 45.1, 59.4, 16, 120 }, + [212] = { 24.1, 59.3, 16, 120 }, + [213] = { 23.5, 59.2, 16, 120 }, + [214] = { 24.8, 59.2, 16, 120 }, + [215] = { 25.4, 59.2, 16, 120 }, + [216] = { 24.3, 59.1, 16, 120 }, + [217] = { 44.9, 59.1, 16, 120 }, + [218] = { 45.5, 59.1, 16, 120 }, + [219] = { 45.3, 59.1, 16, 120 }, + [220] = { 24.5, 59.1, 16, 120 }, + [221] = { 45.1, 58.9, 16, 120 }, + [222] = { 25.1, 58.9, 16, 120 }, + [223] = { 44.7, 58.9, 16, 120 }, + [224] = { 45.7, 58.8, 16, 120 }, + [225] = { 24, 58.8, 16, 120 }, + [226] = { 45.5, 58.7, 16, 120 }, + [227] = { 24.4, 58.7, 16, 120 }, + [228] = { 45.3, 58.6, 16, 120 }, + [229] = { 24.8, 58.6, 16, 120 }, + [230] = { 44.5, 58.5, 16, 120 }, + [231] = { 25.6, 58.5, 16, 120 }, + [232] = { 44.8, 58.5, 16, 120 }, + [233] = { 25.1, 58.4, 16, 120 }, + [234] = { 45.4, 58.4, 16, 120 }, + [235] = { 45.6, 58.4, 16, 120 }, + [236] = { 45.9, 58.4, 16, 120 }, + [237] = { 45, 58.2, 16, 120 }, + [238] = { 44.6, 58.2, 16, 120 }, + [239] = { 45.3, 58.2, 16, 120 }, + [240] = { 24.2, 58.2, 16, 120 }, + [241] = { 24.5, 58.1, 16, 120 }, + [242] = { 45.5, 58.1, 16, 120 }, + [243] = { 45.7, 58.1, 16, 120 }, + [244] = { 24.9, 58, 16, 120 }, + [245] = { 45.1, 57.9, 16, 120 }, + [246] = { 44.9, 57.8, 16, 120 }, + [247] = { 44.6, 57.8, 16, 120 }, + [248] = { 45.3, 57.8, 16, 120 }, + [249] = { 45.5, 57.7, 16, 120 }, + [250] = { 44.9, 57.5, 16, 120 }, + [251] = { 45.1, 57.5, 16, 120 }, + [252] = { 45.3, 57.4, 16, 120 }, + [253] = { 16.9, 55.2, 16, 120 }, + [254] = { 17.7, 55, 16, 120 }, + [255] = { 17.4, 54.9, 16, 120 }, + [256] = { 48, 54.8, 16, 120 }, + [257] = { 16.8, 54.8, 16, 120 }, + [258] = { 48.4, 54.7, 16, 120 }, + [259] = { 47.5, 54.7, 16, 120 }, + [260] = { 47.8, 54.7, 16, 120 }, + [261] = { 48.3, 54.6, 16, 120 }, + [262] = { 17.1, 54.6, 16, 120 }, + [263] = { 17.9, 54.5, 16, 120 }, + [264] = { 17.6, 54.5, 16, 120 }, + [265] = { 48.1, 54.5, 16, 120 }, + [266] = { 17.3, 54.5, 16, 120 }, + [267] = { 48.4, 54.4, 16, 120 }, + [268] = { 48.6, 54.4, 16, 120 }, + [269] = { 47.6, 54.3, 16, 120 }, + [270] = { 16.9, 54.3, 16, 120 }, + [271] = { 47.9, 54.2, 16, 120 }, + [272] = { 16.7, 54.2, 16, 120 }, + [273] = { 47.3, 54.2, 16, 120 }, + [274] = { 17.1, 54.2, 16, 120 }, + [275] = { 48.2, 54.1, 16, 120 }, + [276] = { 17.8, 54.1, 16, 120 }, + [277] = { 18.1, 54.1, 16, 120 }, + [278] = { 17.4, 54.1, 16, 120 }, + [279] = { 48.5, 54.1, 16, 120 }, + [280] = { 47.6, 54, 16, 120 }, + [281] = { 16.9, 54, 16, 120 }, + [282] = { 48.8, 53.9, 16, 120 }, + [283] = { 16.6, 53.9, 16, 120 }, + [284] = { 17.6, 53.8, 16, 120 }, + [285] = { 48.4, 53.8, 16, 120 }, + [286] = { 17.1, 53.8, 16, 120 }, + [287] = { 47.3, 53.8, 16, 120 }, + [288] = { 17.9, 53.8, 16, 120 }, + [289] = { 17.4, 53.7, 16, 120 }, + [290] = { 47.8, 53.7, 16, 120 }, + [291] = { 47.6, 53.7, 16, 120 }, + [292] = { 16.8, 53.7, 16, 120 }, + [293] = { 48.6, 53.6, 16, 120 }, + [294] = { 17.7, 53.5, 16, 120 }, + [295] = { 17.2, 53.4, 16, 120 }, + [296] = { 48, 53.4, 16, 120 }, + [297] = { 47.5, 53.4, 16, 120 }, + [298] = { 47.7, 53.3, 16, 120 }, + [299] = { 16.8, 53.3, 16, 120 }, + [300] = { 17, 53.3, 16, 120 }, + [301] = { 17.4, 53.2, 16, 120 }, + [302] = { 48.4, 53.2, 16, 120 }, + [303] = { 48.7, 53.2, 16, 120 }, + [304] = { 17.7, 53.2, 16, 120 }, + [305] = { 48.2, 53.1, 16, 120 }, + [306] = { 47.8, 52.9, 16, 120 }, + [307] = { 17.2, 52.9, 16, 120 }, + [308] = { 48, 52.9, 16, 120 }, + [309] = { 44.6, 50.6, 16, 120 }, + [310] = { 44.3, 50.6, 16, 120 }, + [311] = { 44.8, 50.4, 16, 120 }, + [312] = { 44.6, 50.3, 16, 120 }, + [313] = { 44.4, 50.1, 16, 120 }, + [314] = { 44.1, 50.1, 16, 120 }, + [315] = { 44.9, 50, 16, 120 }, + [316] = { 45.1, 50, 16, 120 }, + [317] = { 44.7, 49.9, 16, 120 }, + [318] = { 44.3, 49.8, 16, 120 }, + [319] = { 44, 49.7, 16, 120 }, + [320] = { 45.1, 49.7, 16, 120 }, + [321] = { 44.8, 49.6, 16, 120 }, + [322] = { 45.3, 49.6, 16, 120 }, + [323] = { 44.1, 49.4, 16, 120 }, + [324] = { 43.8, 49.4, 16, 120 }, + [325] = { 44.7, 49.3, 16, 120 }, + [326] = { 45.1, 49.3, 16, 120 }, + [327] = { 44.4, 49.2, 16, 120 }, + [328] = { 44.9, 49.2, 16, 120 }, + [329] = { 44.1, 49.1, 16, 120 }, + [330] = { 44.5, 48.9, 16, 120 }, + [331] = { 44.7, 48.9, 16, 120 }, + [332] = { 44.3, 48.9, 16, 120 }, + [333] = { 44.9, 48.8, 16, 120 }, + [334] = { 44.1, 48.7, 16, 120 }, + [335] = { 44.5, 48.6, 16, 120 }, + [336] = { 44.8, 48.5, 16, 120 }, + [337] = { 80.1, 62.6, 28, 120 }, + [338] = { 79.8, 62.6, 28, 120 }, + [339] = { 80.4, 62.4, 28, 120 }, + [340] = { 80.6, 62.1, 28, 120 }, + [341] = { 80.8, 62.1, 28, 120 }, + [342] = { 80.3, 62, 28, 120 }, + [343] = { 80, 61.9, 28, 120 }, + [344] = { 80.7, 61.7, 28, 120 }, + [345] = { 80.9, 61.6, 28, 120 }, + [346] = { 81.3, 61.3, 28, 120 }, + [347] = { 80.7, 61.3, 28, 120 }, + [348] = { 79.9, 61.2, 28, 120 }, + [349] = { 80.5, 61.1, 28, 120 }, + [350] = { 80.2, 61, 28, 120 }, + [351] = { 80.7, 60.9, 28, 120 }, + [352] = { 80.4, 60.7, 28, 120 }, + [353] = { 80.1, 60.7, 28, 120 }, + [354] = { 81.1, 60.7, 28, 120 }, + [355] = { 80.7, 60.4, 28, 120 }, + [356] = { 80.2, 60.3, 28, 120 }, + [357] = { 75.3, 56.2, 28, 120 }, + [358] = { 75.7, 56.2, 28, 120 }, + [359] = { 76.1, 55.9, 28, 120 }, + [360] = { 76.4, 55.9, 28, 120 }, + [361] = { 75.6, 55.7, 28, 120 }, + [362] = { 75.9, 55.5, 28, 120 }, + [363] = { 76.3, 55.5, 28, 120 }, + [364] = { 74.7, 55.2, 28, 120 }, + [365] = { 75.4, 55.2, 28, 120 }, + [366] = { 76.1, 55.1, 28, 120 }, + [367] = { 75.1, 55, 28, 120 }, + [368] = { 76.4, 55, 28, 120 }, + [369] = { 75.7, 55, 28, 120 }, + [370] = { 76.7, 54.8, 28, 120 }, + [371] = { 76.2, 54.6, 28, 120 }, + [372] = { 77, 54.4, 28, 120 }, + [373] = { 76.5, 54.4, 28, 120 }, + [374] = { 75.1, 54.3, 28, 120 }, + [375] = { 76.7, 54.2, 28, 120 }, + [376] = { 74.6, 54, 28, 120 }, + [377] = { 76.4, 53.8, 28, 120 }, + [378] = { 75.2, 53.8, 28, 120 }, + [379] = { 75.8, 53.8, 28, 120 }, + [380] = { 74.8, 53.5, 28, 120 }, + [381] = { 75.4, 53.4, 28, 120 }, + [382] = { 75.9, 53.4, 28, 120 }, + [383] = { 76.3, 53.2, 28, 120 }, + [384] = { 75.7, 53, 28, 120 }, + [385] = { 33.6, 71.9, 46, 120 }, + [386] = { 33.1, 71.7, 46, 120 }, + [387] = { 32.9, 71.3, 46, 120 }, + [388] = { 33.6, 71.2, 46, 120 }, + [389] = { 24.4, 71, 46, 120 }, + [390] = { 33.3, 71, 46, 120 }, + [391] = { 34.2, 71, 46, 120 }, + [392] = { 32.7, 70.8, 46, 120 }, + [393] = { 33.9, 70.7, 46, 120 }, + [394] = { 23.9, 70.7, 46, 120 }, + [395] = { 23.4, 70.6, 46, 120 }, + [396] = { 33.1, 70.6, 46, 120 }, + [397] = { 33.6, 70.5, 46, 120 }, + [398] = { 25.4, 70.5, 46, 120 }, + [399] = { 34.3, 70.4, 46, 120 }, + [400] = { 24.7, 70.3, 46, 120 }, + [401] = { 33.8, 70.2, 46, 120 }, + [402] = { 24.2, 70.2, 46, 120 }, + [403] = { 32.9, 70.1, 46, 120 }, + [404] = { 23.2, 70, 46, 120 }, + [405] = { 32.4, 70, 46, 120 }, + [406] = { 23.7, 70, 46, 120 }, + [407] = { 34.1, 69.8, 46, 120 }, + [408] = { 33.7, 69.8, 46, 120 }, + [409] = { 33.2, 69.6, 46, 120 }, + [410] = { 24.5, 69.5, 46, 120 }, + [411] = { 32.8, 69.5, 46, 120 }, + [412] = { 24.1, 69.5, 46, 120 }, + [413] = { 32.4, 69.4, 46, 120 }, + [414] = { 23.7, 69.4, 46, 120 }, + [415] = { 34.4, 69.3, 46, 120 }, + [416] = { 33.6, 69.3, 46, 120 }, + [417] = { 23, 69.3, 46, 120 }, + [418] = { 34, 69.1, 46, 120 }, + [419] = { 23.3, 69.1, 46, 120 }, + [420] = { 33.3, 68.9, 46, 120 }, + [421] = { 24.7, 68.9, 46, 120 }, + [422] = { 24.2, 68.8, 46, 120 }, + [423] = { 34.9, 68.8, 46, 120 }, + [424] = { 32.8, 68.7, 46, 120 }, + [425] = { 23, 68.6, 46, 120 }, + [426] = { 22.6, 68.6, 46, 120 }, + [427] = { 33.8, 68.5, 46, 120 }, + [428] = { 23.4, 68.4, 46, 120 }, + [429] = { 24.3, 68.2, 46, 120 }, + [430] = { 33.3, 68.1, 46, 120 }, + [431] = { 24.8, 68, 46, 120 }, + [432] = { 34.4, 68, 46, 120 }, + [433] = { 23, 67.9, 46, 120 }, + [434] = { 23.9, 67.9, 46, 120 }, + [435] = { 22.5, 67.8, 46, 120 }, + [436] = { 23.5, 67.6, 46, 120 }, + [437] = { 24.3, 67.5, 46, 120 }, + [438] = { 24.7, 67.4, 46, 120 }, + [439] = { 23.8, 67.1, 46, 120 }, + [440] = { 24.2, 66.7, 46, 120 }, + [441] = { 25.6, 53.7, 46, 120 }, + [442] = { 24.9, 53.2, 46, 120 }, + [443] = { 24.8, 52.6, 46, 120 }, + [444] = { 25.3, 52.6, 46, 120 }, + [445] = { 24.3, 52.4, 46, 120 }, + [446] = { 26.3, 52, 46, 120 }, + [447] = { 23.7, 52, 46, 120 }, + [448] = { 25.7, 51.9, 46, 120 }, + [449] = { 24.9, 51.9, 46, 120 }, + [450] = { 23.2, 51.4, 46, 120 }, + [451] = { 23.6, 51.4, 46, 120 }, + [452] = { 25.4, 51.3, 46, 120 }, + [453] = { 24.9, 50.8, 46, 120 }, + [454] = { 74.4, 50.8, 46, 120 }, + [455] = { 74, 50.7, 46, 120 }, + [456] = { 24.5, 50.7, 46, 120 }, + [457] = { 73.4, 50.6, 46, 120 }, + [458] = { 25.9, 50.6, 46, 120 }, + [459] = { 73, 50.6, 46, 120 }, + [460] = { 24.1, 50.6, 46, 120 }, + [461] = { 23.3, 50.5, 46, 120 }, + [462] = { 74.6, 50.2, 46, 120 }, + [463] = { 74.2, 50.1, 46, 120 }, + [464] = { 73.7, 50.1, 46, 120 }, + [465] = { 73.2, 50, 46, 120 }, + [466] = { 23.7, 49.7, 46, 120 }, + [467] = { 24.5, 49.7, 46, 120 }, + [468] = { 25.5, 49.5, 46, 120 }, + [469] = { 74.3, 49.5, 46, 120 }, + [470] = { 73.9, 49.4, 46, 120 }, + [471] = { 73.5, 49.4, 46, 120 }, + [472] = { 74.7, 49.1, 46, 120 }, + [473] = { 73.2, 49.1, 46, 120 }, + [474] = { 24.9, 48.9, 46, 120 }, + [475] = { 75.1, 48.8, 46, 120 }, + [476] = { 74.4, 48.7, 46, 120 }, + [477] = { 23.6, 48.7, 46, 120 }, + [478] = { 73.6, 48.7, 46, 120 }, + [479] = { 72.9, 48.7, 46, 120 }, + [480] = { 24.4, 48.5, 46, 120 }, + [481] = { 74.7, 48.3, 46, 120 }, + [482] = { 73.2, 48.3, 46, 120 }, + [483] = { 74.4, 48, 46, 120 }, + [484] = { 73.6, 47.9, 46, 120 }, + [485] = { 74, 47.9, 46, 120 }, + [486] = { 73, 47.8, 46, 120 }, + [487] = { 74.7, 47.5, 46, 120 }, + [488] = { 74.2, 47.3, 46, 120 }, + [489] = { 73.2, 47.3, 46, 120 }, + [490] = { 73.7, 47.2, 46, 120 }, + [491] = { 74, 46.7, 46, 120 }, + [492] = { 67.5, 37.7, 46, 120 }, + [493] = { 67.1, 37.6, 46, 120 }, + [494] = { 67.9, 37.4, 46, 120 }, + [495] = { 66.4, 37.1, 46, 120 }, + [496] = { 67.5, 37.1, 46, 120 }, + [497] = { 66.7, 37, 46, 120 }, + [498] = { 68.4, 37, 46, 120 }, + [499] = { 67, 36.8, 46, 120 }, + [500] = { 67.8, 36.7, 46, 120 }, + [501] = { 66.4, 36.6, 46, 120 }, + [502] = { 66, 36.5, 46, 120 }, + [503] = { 67.4, 36.5, 46, 120 }, + [504] = { 66.8, 36.4, 46, 120 }, + [505] = { 68.2, 36.3, 46, 120 }, + [506] = { 67.7, 36.1, 46, 120 }, + [507] = { 66, 35.9, 46, 120 }, + [508] = { 66.5, 35.9, 46, 120 }, + [509] = { 68.3, 35.6, 46, 120 }, + [510] = { 67.4, 35.6, 46, 120 }, + [511] = { 67.8, 35.5, 46, 120 }, + [512] = { 66.8, 35.4, 46, 120 }, + [513] = { 65.9, 35.3, 46, 120 }, + [514] = { 66.4, 35.3, 46, 120 }, + [515] = { 67.1, 35.1, 46, 120 }, + [516] = { 67.4, 35, 46, 120 }, + [517] = { 67.9, 35, 46, 120 }, + [518] = { 66.7, 34.8, 46, 120 }, + [519] = { 67.1, 34.4, 46, 120 }, + [520] = { 80, 31.2, 46, 120 }, + [521] = { 79, 31.2, 46, 120 }, + [522] = { 79.6, 31.1, 46, 120 }, + [523] = { 78.5, 30.6, 46, 120 }, + [524] = { 80, 30.5, 46, 120 }, + [525] = { 79, 30.5, 46, 120 }, + [526] = { 79.5, 30.4, 46, 120 }, + [527] = { 80.8, 30.1, 46, 120 }, + [528] = { 80.3, 30, 46, 120 }, + [529] = { 79.8, 29.9, 46, 120 }, + [530] = { 78.6, 29.9, 46, 120 }, + [531] = { 79.1, 29.8, 46, 120 }, + [532] = { 81.2, 29.6, 46, 120 }, + [533] = { 80.1, 29.5, 46, 120 }, + [534] = { 80.7, 29.5, 46, 120 }, + [535] = { 78.8, 29.2, 46, 120 }, + [536] = { 78.2, 29.1, 46, 120 }, + [537] = { 79.9, 28.9, 46, 120 }, + [538] = { 80.4, 28.9, 46, 120 }, + [539] = { 80.9, 28.8, 46, 120 }, + [540] = { 79.2, 28.7, 46, 120 }, + [541] = { 79.6, 28.5, 46, 120 }, + [542] = { 78.7, 28.5, 46, 120 }, + [543] = { 80.5, 28.3, 46, 120 }, + [544] = { 80.1, 28.3, 46, 120 }, + [545] = { 79.1, 28, 46, 120 }, + [546] = { 79.6, 27.8, 46, 120 }, + [547] = { 78.7, 27.8, 46, 120 }, + [548] = { 21.8, 86.3, 139, 120 }, + [549] = { 21.5, 86.3, 139, 120 }, + [550] = { 22.1, 86.1, 139, 120 }, + [551] = { 22.3, 85.8, 139, 120 }, + [552] = { 22.5, 85.7, 139, 120 }, + [553] = { 22, 85.7, 139, 120 }, + [554] = { 21.7, 85.6, 139, 120 }, + [555] = { 22.4, 85.4, 139, 120 }, + [556] = { 22.7, 85.2, 139, 120 }, + [557] = { 23.1, 84.9, 139, 120 }, + [558] = { 22.5, 84.8, 139, 120 }, + [559] = { 21.6, 84.8, 139, 120 }, + [560] = { 22.2, 84.6, 139, 120 }, + [561] = { 21.9, 84.6, 139, 120 }, + [562] = { 22.4, 84.4, 139, 120 }, + [563] = { 22.1, 84.2, 139, 120 }, + [564] = { 21.7, 84.2, 139, 120 }, + [565] = { 22.8, 84.2, 139, 120 }, + [566] = { 22.4, 83.9, 139, 120 }, + [567] = { 21.9, 83.7, 139, 120 }, + [568] = { 16.5, 79.3, 139, 120 }, + [569] = { 16.9, 79.2, 139, 120 }, + [570] = { 17.3, 78.9, 139, 120 }, + [571] = { 17.7, 78.9, 139, 120 }, + [572] = { 16.7, 78.6, 139, 120 }, + [573] = { 17.1, 78.4, 139, 120 }, + [574] = { 17.5, 78.4, 139, 120 }, + [575] = { 15.8, 78.1, 139, 120 }, + [576] = { 16.6, 78.1, 139, 120 }, + [577] = { 17.3, 77.9, 139, 120 }, + [578] = { 16.2, 77.9, 139, 120 }, + [579] = { 17.7, 77.9, 139, 120 }, + [580] = { 16.9, 77.8, 139, 120 }, + [581] = { 18, 77.6, 139, 120 }, + [582] = { 17.4, 77.5, 139, 120 }, + [583] = { 18.3, 77.2, 139, 120 }, + [584] = { 17.7, 77.2, 139, 120 }, + [585] = { 16.2, 77.1, 139, 120 }, + [586] = { 18, 76.9, 139, 120 }, + [587] = { 15.7, 76.8, 139, 120 }, + [588] = { 17.7, 76.6, 139, 120 }, + [589] = { 16.3, 76.5, 139, 120 }, + [590] = { 16.9, 76.5, 139, 120 }, + [591] = { 15.9, 76.2, 139, 120 }, + [592] = { 16.6, 76.1, 139, 120 }, + [593] = { 17.1, 76.1, 139, 120 }, + [594] = { 17.6, 75.9, 139, 120 }, + [595] = { 16.8, 75.7, 139, 120 }, + [596] = { 66.9, 74.4, 139, 120 }, + [597] = { 66.8, 73.6, 139, 120 }, + [598] = { 67.7, 73.5, 139, 120 }, + [599] = { 66.4, 73.3, 139, 120 }, + [600] = { 67.7, 73.2, 139, 120 }, + [601] = { 66.7, 73, 139, 120 }, + [602] = { 67.6, 73, 139, 120 }, + [603] = { 75.4, 72.9, 139, 120 }, + [604] = { 65.7, 72.8, 139, 120 }, + [605] = { 66.4, 72.8, 139, 120 }, + [606] = { 23.4, 72.7, 139, 120 }, + [607] = { 67.5, 72.7, 139, 120 }, + [608] = { 76.5, 72.6, 139, 120 }, + [609] = { 24, 72.6, 139, 120 }, + [610] = { 66.9, 72.5, 139, 120 }, + [611] = { 67.2, 72.5, 139, 120 }, + [612] = { 67.8, 72.5, 139, 120 }, + [613] = { 24.4, 72.4, 139, 120 }, + [614] = { 66, 72.4, 139, 120 }, + [615] = { 23.8, 72.3, 139, 120 }, + [616] = { 75.5, 72.3, 139, 120 }, + [617] = { 23.4, 72.3, 139, 120 }, + [618] = { 23.1, 72.2, 139, 120 }, + [619] = { 75.9, 72.2, 139, 120 }, + [620] = { 76.2, 72.2, 139, 120 }, + [621] = { 77.1, 72.1, 139, 120 }, + [622] = { 65.7, 72.1, 139, 120 }, + [623] = { 76.7, 72.1, 139, 120 }, + [624] = { 75.1, 72.1, 139, 120 }, + [625] = { 67.1, 72, 139, 120 }, + [626] = { 23.9, 72, 139, 120 }, + [627] = { 67.5, 72, 139, 120 }, + [628] = { 23.6, 71.9, 139, 120 }, + [629] = { 66.2, 71.9, 139, 120 }, + [630] = { 24.1, 71.8, 139, 120 }, + [631] = { 75.7, 71.8, 139, 120 }, + [632] = { 23.2, 71.8, 139, 120 }, + [633] = { 76, 71.8, 139, 120 }, + [634] = { 76.4, 71.8, 139, 120 }, + [635] = { 22.8, 71.8, 139, 120 }, + [636] = { 24.4, 71.7, 139, 120 }, + [637] = { 75.4, 71.6, 139, 120 }, + [638] = { 77.4, 71.6, 139, 120 }, + [639] = { 66.7, 71.6, 139, 120 }, + [640] = { 76.7, 71.6, 139, 120 }, + [641] = { 24, 71.6, 139, 120 }, + [642] = { 23.1, 71.5, 139, 120 }, + [643] = { 75.2, 71.4, 139, 120 }, + [644] = { 77, 71.4, 139, 120 }, + [645] = { 24.3, 71.4, 139, 120 }, + [646] = { 75.7, 71.3, 139, 120 }, + [647] = { 66.4, 71.3, 139, 120 }, + [648] = { 76.4, 71.3, 139, 120 }, + [649] = { 23.3, 71.2, 139, 120 }, + [650] = { 66, 71.2, 139, 120 }, + [651] = { 24.1, 71.1, 139, 120 }, + [652] = { 75.4, 71.1, 139, 120 }, + [653] = { 65.4, 71, 139, 120 }, + [654] = { 76.7, 71, 139, 120 }, + [655] = { 24.4, 70.9, 139, 120 }, + [656] = { 75.7, 70.9, 139, 120 }, + [657] = { 23.8, 70.8, 139, 120 }, + [658] = { 75.2, 70.8, 139, 120 }, + [659] = { 23.5, 70.8, 139, 120 }, + [660] = { 77.1, 70.8, 139, 120 }, + [661] = { 76.4, 70.8, 139, 120 }, + [662] = { 23.2, 70.8, 139, 120 }, + [663] = { 24.1, 70.7, 139, 120 }, + [664] = { 66.3, 70.6, 139, 120 }, + [665] = { 75.4, 70.6, 139, 120 }, + [666] = { 76.7, 70.5, 139, 120 }, + [667] = { 24.4, 70.4, 139, 120 }, + [668] = { 23.8, 70.4, 139, 120 }, + [669] = { 67.6, 70.4, 139, 120 }, + [670] = { 65.8, 70.3, 139, 120 }, + [671] = { 76.3, 70.3, 139, 120 }, + [672] = { 23.4, 70.2, 139, 120 }, + [673] = { 22.9, 70.2, 139, 120 }, + [674] = { 66.2, 70.2, 139, 120 }, + [675] = { 24.1, 70, 139, 120 }, + [676] = { 66.7, 69.8, 139, 120 }, + [677] = { 23.6, 69.8, 139, 120 }, + [678] = { 66.2, 69.8, 139, 120 }, + [679] = { 70.5, 58.6, 139, 120 }, + [680] = { 70, 58.5, 139, 120 }, + [681] = { 71.1, 58.3, 139, 120 }, + [682] = { 72.5, 58.2, 139, 120 }, + [683] = { 70.4, 58.1, 139, 120 }, + [684] = { 70.8, 58, 139, 120 }, + [685] = { 71.4, 57.9, 139, 120 }, + [686] = { 69.9, 57.8, 139, 120 }, + [687] = { 70.6, 57.4, 139, 120 }, + [688] = { 72.6, 57.3, 139, 120 }, + [689] = { 71.6, 57.2, 139, 120 }, + [690] = { 72, 57.1, 139, 120 }, + [691] = { 71.1, 57, 139, 120 }, + [692] = { 70.7, 56.8, 139, 120 }, + [693] = { 70.3, 56.8, 139, 120 }, + [694] = { 71.5, 56.6, 139, 120 }, + [695] = { 71.8, 56.5, 139, 120 }, + [696] = { 71, 56.5, 139, 120 }, + [697] = { 72.3, 56.4, 139, 120 }, + [698] = { 70.5, 56.2, 139, 120 }, + [699] = { 70, 56.2, 139, 120 }, + [700] = { 71.4, 56, 139, 120 }, + [701] = { 71.8, 55.8, 139, 120 }, + [702] = { 70.7, 55.7, 139, 120 }, + [703] = { 70.3, 55.5, 139, 120 }, + [704] = { 34.6, 65.2, 440, 120 }, + [705] = { 34.9, 65, 440, 120 }, + [706] = { 34.7, 65, 440, 120 }, + [707] = { 34.4, 65, 440, 120 }, + [708] = { 34.5, 64.9, 440, 120 }, + [709] = { 34.2, 64.9, 440, 120 }, + [710] = { 34.4, 64.8, 440, 120 }, + [711] = { 34.9, 64.8, 440, 120 }, + [712] = { 34.7, 64.7, 440, 120 }, + [713] = { 34.5, 64.7, 440, 120 }, + [714] = { 34, 64.6, 440, 120 }, + [715] = { 35.1, 64.6, 440, 120 }, + [716] = { 34.2, 64.6, 440, 120 }, + [717] = { 34.4, 64.5, 440, 120 }, + [718] = { 34.9, 64.5, 440, 120 }, + [719] = { 34.7, 64.5, 440, 120 }, + [720] = { 34.8, 64.3, 440, 120 }, + [721] = { 35, 64.3, 440, 120 }, + [722] = { 34.2, 64.3, 440, 120 }, + [723] = { 34, 64.3, 440, 120 }, + [724] = { 34.9, 64.1, 440, 120 }, + [725] = { 34.7, 64.1, 440, 120 }, + [726] = { 34.3, 64.1, 440, 120 }, + [727] = { 34.1, 64, 440, 120 }, + [728] = { 34.5, 63.9, 440, 120 }, + [729] = { 34.7, 63.8, 440, 120 }, + [730] = { 34.3, 63.7, 440, 120 }, + [731] = { 34.5, 63.5, 440, 120 }, + [732] = { 29.9, 58.6, 440, 120 }, + [733] = { 30.3, 58.6, 440, 120 }, + [734] = { 36.1, 58.6, 440, 120 }, + [735] = { 35.9, 58.6, 440, 120 }, + [736] = { 30, 58.5, 440, 120 }, + [737] = { 30.5, 58.5, 440, 120 }, + [738] = { 35.7, 58.4, 440, 120 }, + [739] = { 29.9, 58.3, 440, 120 }, + [740] = { 30.3, 58.3, 440, 120 }, + [741] = { 36.3, 58.3, 440, 120 }, + [742] = { 30.1, 58.3, 440, 120 }, + [743] = { 36.1, 58.3, 440, 120 }, + [744] = { 29.7, 58.2, 440, 120 }, + [745] = { 30.5, 58.2, 440, 120 }, + [746] = { 35.9, 58.2, 440, 120 }, + [747] = { 35.6, 58.2, 440, 120 }, + [748] = { 30, 58.1, 440, 120 }, + [749] = { 30.2, 58.1, 440, 120 }, + [750] = { 30.4, 58.1, 440, 120 }, + [751] = { 29.6, 58, 440, 120 }, + [752] = { 29.8, 58, 440, 120 }, + [753] = { 36.3, 58, 440, 120 }, + [754] = { 35.8, 58, 440, 120 }, + [755] = { 36.6, 58, 440, 120 }, + [756] = { 36.1, 57.9, 440, 120 }, + [757] = { 30.5, 57.9, 440, 120 }, + [758] = { 35.7, 57.9, 440, 120 }, + [759] = { 29.9, 57.8, 440, 120 }, + [760] = { 35.4, 57.8, 440, 120 }, + [761] = { 30.3, 57.8, 440, 120 }, + [762] = { 30.7, 57.8, 440, 120 }, + [763] = { 36.2, 57.7, 440, 120 }, + [764] = { 29.7, 57.7, 440, 120 }, + [765] = { 36.5, 57.7, 440, 120 }, + [766] = { 30.5, 57.6, 440, 120 }, + [767] = { 35.8, 57.6, 440, 120 }, + [768] = { 36.1, 57.6, 440, 120 }, + [769] = { 29.9, 57.5, 440, 120 }, + [770] = { 35.6, 57.5, 440, 120 }, + [771] = { 30.3, 57.5, 440, 120 }, + [772] = { 30.1, 57.5, 440, 120 }, + [773] = { 36.5, 57.4, 440, 120 }, + [774] = { 29.7, 57.4, 440, 120 }, + [775] = { 36.3, 57.4, 440, 120 }, + [776] = { 36, 57.4, 440, 120 }, + [777] = { 30.5, 57.3, 440, 120 }, + [778] = { 30, 57.3, 440, 120 }, + [779] = { 52.4, 57.3, 440, 120 }, + [780] = { 30.3, 57.3, 440, 120 }, + [781] = { 35.5, 57.3, 440, 120 }, + [782] = { 35.8, 57.2, 440, 120 }, + [783] = { 36.2, 57.1, 440, 120 }, + [784] = { 52.2, 57.1, 440, 120 }, + [785] = { 36.4, 57.1, 440, 120 }, + [786] = { 52.3, 57, 440, 120 }, + [787] = { 52.5, 57, 440, 120 }, + [788] = { 52, 57, 440, 120 }, + [789] = { 30.2, 57, 440, 120 }, + [790] = { 36, 56.9, 440, 120 }, + [791] = { 35.8, 56.9, 440, 120 }, + [792] = { 52.2, 56.8, 440, 120 }, + [793] = { 36.2, 56.8, 440, 120 }, + [794] = { 51.8, 56.8, 440, 120 }, + [795] = { 52.4, 56.7, 440, 120 }, + [796] = { 52.6, 56.7, 440, 120 }, + [797] = { 52, 56.7, 440, 120 }, + [798] = { 52.8, 56.6, 440, 120 }, + [799] = { 52.5, 56.5, 440, 120 }, + [800] = { 52.7, 56.4, 440, 120 }, + [801] = { 51.9, 56.4, 440, 120 }, + [802] = { 52.1, 56.4, 440, 120 }, + [803] = { 51.7, 56.4, 440, 120 }, + [804] = { 52.9, 56.3, 440, 120 }, + [805] = { 52.4, 56.3, 440, 120 }, + [806] = { 52.6, 56.2, 440, 120 }, + [807] = { 52.2, 56.1, 440, 120 }, + [808] = { 52, 56.1, 440, 120 }, + [809] = { 51.8, 56.1, 440, 120 }, + [810] = { 52.8, 56, 440, 120 }, + [811] = { 52.4, 55.9, 440, 120 }, + [812] = { 52.6, 55.8, 440, 120 }, + [813] = { 52, 55.8, 440, 120 }, + [814] = { 52.2, 55.7, 440, 120 }, + [815] = { 52.4, 55.6, 440, 120 }, + [816] = { 58, 54.3, 440, 120 }, + [817] = { 57.8, 54.3, 440, 120 }, + [818] = { 57.4, 54.1, 440, 120 }, + [819] = { 57.6, 54, 440, 120 }, + [820] = { 58, 54, 440, 120 }, + [821] = { 57.8, 53.9, 440, 120 }, + [822] = { 57.2, 53.8, 440, 120 }, + [823] = { 57.4, 53.8, 440, 120 }, + [824] = { 57.6, 53.7, 440, 120 }, + [825] = { 58.1, 53.7, 440, 120 }, + [826] = { 57.9, 53.6, 440, 120 }, + [827] = { 57.2, 53.5, 440, 120 }, + [828] = { 57.4, 53.5, 440, 120 }, + [829] = { 58, 53.4, 440, 120 }, + [830] = { 58.3, 53.4, 440, 120 }, + [831] = { 57.6, 53.3, 440, 120 }, + [832] = { 57.4, 53.2, 440, 120 }, + [833] = { 57, 53.2, 440, 120 }, + [834] = { 57.9, 53.2, 440, 120 }, + [835] = { 58.1, 53.1, 440, 120 }, + [836] = { 57.7, 53, 440, 120 }, + [837] = { 57.5, 53, 440, 120 }, + [838] = { 57.2, 52.9, 440, 120 }, + [839] = { 57.9, 52.9, 440, 120 }, + [840] = { 58.1, 52.8, 440, 120 }, + [841] = { 57.6, 52.7, 440, 120 }, + [842] = { 57.4, 52.6, 440, 120 }, + [843] = { 57.8, 52.5, 440, 120 }, + [844] = { 52, 50.6, 440, 120 }, + [845] = { 51.6, 50.4, 440, 120 }, + [846] = { 52.4, 50.4, 440, 120 }, + [847] = { 51.8, 50.4, 440, 120 }, + [848] = { 52.2, 50.3, 440, 120 }, + [849] = { 52, 50.3, 440, 120 }, + [850] = { 51.7, 50.2, 440, 120 }, + [851] = { 51.8, 50.1, 440, 120 }, + [852] = { 52.3, 50.1, 440, 120 }, + [853] = { 52.1, 50, 440, 120 }, + [854] = { 51.7, 49.9, 440, 120 }, + [855] = { 51.5, 49.9, 440, 120 }, + [856] = { 52.2, 49.8, 440, 120 }, + [857] = { 52.5, 49.8, 440, 120 }, + [858] = { 51.8, 49.7, 440, 120 }, + [859] = { 52.1, 49.6, 440, 120 }, + [860] = { 51.6, 49.6, 440, 120 }, + [861] = { 51.4, 49.6, 440, 120 }, + [862] = { 52.3, 49.5, 440, 120 }, + [863] = { 52.5, 49.5, 440, 120 }, + [864] = { 51.9, 49.5, 440, 120 }, + [865] = { 51.8, 49.4, 440, 120 }, + [866] = { 52.1, 49.3, 440, 120 }, + [867] = { 51.5, 49.3, 440, 120 }, + [868] = { 52.3, 49.2, 440, 120 }, + [869] = { 51.9, 49.1, 440, 120 }, + [870] = { 51.7, 49.1, 440, 120 }, + [871] = { 52.1, 48.9, 440, 120 }, + [872] = { 50.9, 38.8, 440, 120 }, + [873] = { 51, 38.8, 440, 120 }, + [874] = { 50.7, 38.7, 440, 120 }, + [875] = { 50.8, 38.7, 440, 120 }, + [876] = { 51.3, 38.6, 440, 120 }, + [877] = { 51.1, 38.6, 440, 120 }, + [878] = { 51, 38.6, 440, 120 }, + [879] = { 50.4, 38.5, 440, 120 }, + [880] = { 50.6, 38.5, 440, 120 }, + [881] = { 50.8, 38.4, 440, 120 }, + [882] = { 51.2, 38.4, 440, 120 }, + [883] = { 51.1, 38.4, 440, 120 }, + [884] = { 50.7, 38.2, 440, 120 }, + [885] = { 50.4, 38.2, 440, 120 }, + [886] = { 51.2, 38.1, 440, 120 }, + [887] = { 51.4, 38.1, 440, 120 }, + [888] = { 50.8, 38, 440, 120 }, + [889] = { 50.6, 37.9, 440, 120 }, + [890] = { 51.1, 37.9, 440, 120 }, + [891] = { 51.2, 37.8, 440, 120 }, + [892] = { 51.4, 37.8, 440, 120 }, + [893] = { 50.9, 37.7, 440, 120 }, + [894] = { 50.7, 37.7, 440, 120 }, + [895] = { 50.6, 37.6, 440, 120 }, + [896] = { 51.1, 37.6, 440, 120 }, + [897] = { 51.3, 37.5, 440, 120 }, + [898] = { 50.9, 37.3, 440, 120 }, + [899] = { 51.1, 37.3, 440, 120 }, + [900] = { 54.5, 32.2, 440, 120 }, + [901] = { 54.2, 32.2, 440, 120 }, + [902] = { 54.3, 32.2, 440, 120 }, + [903] = { 54.6, 32.1, 440, 120 }, + [904] = { 54, 32, 440, 120 }, + [905] = { 54.5, 32, 440, 120 }, + [906] = { 54.2, 32, 440, 120 }, + [907] = { 54.3, 31.9, 440, 120 }, + [908] = { 53.9, 31.9, 440, 120 }, + [909] = { 54.1, 31.8, 440, 120 }, + [910] = { 54.8, 31.8, 440, 120 }, + [911] = { 54.7, 31.8, 440, 120 }, + [912] = { 54.2, 31.8, 440, 120 }, + [913] = { 54.5, 31.8, 440, 120 }, + [914] = { 53.9, 31.7, 440, 120 }, + [915] = { 54.1, 31.6, 440, 120 }, + [916] = { 54.6, 31.6, 440, 120 }, + [917] = { 54.8, 31.6, 440, 120 }, + [918] = { 54.5, 31.4, 440, 120 }, + [919] = { 54.6, 31.4, 440, 120 }, + [920] = { 53.9, 31.4, 440, 120 }, + [921] = { 54.2, 31.4, 440, 120 }, + [922] = { 54.1, 31.4, 440, 120 }, + [923] = { 54.3, 31.2, 440, 120 }, + [924] = { 54.5, 31.2, 440, 120 }, + [925] = { 54.2, 31.2, 440, 120 }, + [926] = { 54.1, 31.1, 440, 120 }, + [927] = { 54.4, 31, 440, 120 }, + [928] = { 48.3, 30.5, 440, 120 }, + [929] = { 48, 30.4, 440, 120 }, + [930] = { 48.2, 30.4, 440, 120 }, + [931] = { 48.5, 30.3, 440, 120 }, + [932] = { 48.3, 30.3, 440, 120 }, + [933] = { 47.9, 30.2, 440, 120 }, + [934] = { 48, 30.2, 440, 120 }, + [935] = { 48.2, 30.1, 440, 120 }, + [936] = { 48.6, 30.1, 440, 120 }, + [937] = { 48.5, 30.1, 440, 120 }, + [938] = { 47.8, 30, 440, 120 }, + [939] = { 47.9, 30, 440, 120 }, + [940] = { 48.1, 30, 440, 120 }, + [941] = { 48.3, 30, 440, 120 }, + [942] = { 48.6, 29.9, 440, 120 }, + [943] = { 48.4, 29.9, 440, 120 }, + [944] = { 48, 29.8, 440, 120 }, + [945] = { 47.8, 29.8, 440, 120 }, + [946] = { 48.6, 29.7, 440, 120 }, + [947] = { 48.5, 29.6, 440, 120 }, + [948] = { 48.3, 29.6, 440, 120 }, + [949] = { 48.1, 29.6, 440, 120 }, + [950] = { 47.9, 29.5, 440, 120 }, + [951] = { 48.2, 29.5, 440, 120 }, + [952] = { 48.3, 29.4, 440, 120 }, + [953] = { 48.5, 29.4, 440, 120 }, + [954] = { 48, 29.4, 440, 120 }, + [955] = { 48.2, 29.2, 440, 120 }, + [956] = { 62.2, 53.1, 618, 120 }, + [957] = { 62.5, 53.1, 618, 120 }, + [958] = { 62.8, 53, 618, 120 }, + [959] = { 66.7, 53, 618, 120 }, + [960] = { 66.9, 52.9, 618, 120 }, + [961] = { 66.4, 52.9, 618, 120 }, + [962] = { 62.4, 52.9, 618, 120 }, + [963] = { 63.1, 52.9, 618, 120 }, + [964] = { 62.6, 52.8, 618, 120 }, + [965] = { 66.2, 52.8, 618, 120 }, + [966] = { 66.7, 52.7, 618, 120 }, + [967] = { 62.1, 52.6, 618, 120 }, + [968] = { 66.4, 52.6, 618, 120 }, + [969] = { 61.9, 52.5, 618, 120 }, + [970] = { 62.6, 52.5, 618, 120 }, + [971] = { 66.9, 52.5, 618, 120 }, + [972] = { 66, 52.5, 618, 120 }, + [973] = { 66.6, 52.4, 618, 120 }, + [974] = { 66.2, 52.3, 618, 120 }, + [975] = { 66.5, 52.3, 618, 120 }, + [976] = { 62.3, 52.2, 618, 120 }, + [977] = { 65.9, 52.2, 618, 120 }, + [978] = { 62.9, 52.2, 618, 120 }, + [979] = { 67, 52.1, 618, 120 }, + [980] = { 66.7, 52.1, 618, 120 }, + [981] = { 66.3, 52, 618, 120 }, + [982] = { 62.1, 51.9, 618, 120 }, + [983] = { 62.8, 51.9, 618, 120 }, + [984] = { 66.1, 51.9, 618, 120 }, + [985] = { 67.2, 51.8, 618, 120 }, + [986] = { 62.6, 51.8, 618, 120 }, + [987] = { 63, 51.7, 618, 120 }, + [988] = { 62, 51.7, 618, 120 }, + [989] = { 62.8, 51.6, 618, 120 }, + [990] = { 62.4, 51.5, 618, 120 }, + [991] = { 66, 51.5, 618, 120 }, + [992] = { 62.6, 51.5, 618, 120 }, + [993] = { 66.5, 51.4, 618, 120 }, + [994] = { 66.6, 51.4, 618, 120 }, + [995] = { 66.2, 51.2, 618, 120 }, + [996] = { 67, 51.2, 618, 120 }, + [997] = { 66.5, 51.1, 618, 120 }, + [998] = { 66.7, 51.1, 618, 120 }, + [999] = { 62.9, 48.4, 618, 120 }, + [1000] = { 63.5, 48.4, 618, 120 }, + [1001] = { 63.2, 48.3, 618, 120 }, + [1002] = { 62.5, 48.3, 618, 120 }, + [1003] = { 63.1, 48, 618, 120 }, + [1004] = { 63.4, 48, 618, 120 }, + [1005] = { 62.8, 47.9, 618, 120 }, + [1006] = { 62.6, 47.9, 618, 120 }, + [1007] = { 62.3, 47.9, 618, 120 }, + [1008] = { 63, 47.7, 618, 120 }, + [1009] = { 62.8, 47.7, 618, 120 }, + [1010] = { 63.5, 47.6, 618, 120 }, + [1011] = { 63.2, 47.6, 618, 120 }, + [1012] = { 63.3, 47.3, 618, 120 }, + [1013] = { 63.5, 47.2, 618, 120 }, + [1014] = { 62.4, 47.2, 618, 120 }, + [1015] = { 62.8, 46.9, 618, 120 }, + [1016] = { 63.5, 46.8, 618, 120 }, + [1017] = { 63.1, 46.7, 618, 120 }, + [1018] = { 63.3, 46.6, 618, 120 }, + [1019] = { 45.1, 42.8, 618, 120 }, + [1020] = { 44.7, 42.6, 618, 120 }, + [1021] = { 44.5, 42.4, 618, 120 }, + [1022] = { 44.8, 42.4, 618, 120 }, + [1023] = { 45.1, 42.3, 618, 120 }, + [1024] = { 44, 42.3, 618, 120 }, + [1025] = { 44.7, 42.2, 618, 120 }, + [1026] = { 44.9, 42.1, 618, 120 }, + [1027] = { 44.1, 42, 618, 120 }, + [1028] = { 45.2, 42, 618, 120 }, + [1029] = { 44.3, 41.9, 618, 120 }, + [1030] = { 44.4, 41.8, 618, 120 }, + [1031] = { 44.8, 41.8, 618, 120 }, + [1032] = { 44.9, 41.8, 618, 120 }, + [1033] = { 44, 41.8, 618, 120 }, + [1034] = { 45.1, 41.6, 618, 120 }, + [1035] = { 44.8, 41.6, 618, 120 }, + [1036] = { 44.4, 41.5, 618, 120 }, + [1037] = { 44.6, 41.4, 618, 120 }, + [1038] = { 44.8, 41.2, 618, 120 }, + [1039] = { 44.5, 41.2, 618, 120 }, + [1040] = { 44.7, 41, 618, 120 }, + [1041] = { 42.8, 38.8, 618, 120 }, + [1042] = { 43.1, 38.6, 618, 120 }, + [1043] = { 42.5, 38.5, 618, 120 }, + [1044] = { 42.3, 38.5, 618, 120 }, + [1045] = { 42.9, 38.4, 618, 120 }, + [1046] = { 43.3, 38.3, 618, 120 }, + [1047] = { 42.7, 38.3, 618, 120 }, + [1048] = { 42.5, 38.2, 618, 120 }, + [1049] = { 42.3, 38.2, 618, 120 }, + [1050] = { 43, 38.1, 618, 120 }, + [1051] = { 42.8, 38, 618, 120 }, + [1052] = { 45.9, 38, 618, 120 }, + [1053] = { 42.6, 38, 618, 120 }, + [1054] = { 42.4, 37.9, 618, 120 }, + [1055] = { 43.3, 37.9, 618, 120 }, + [1056] = { 42.1, 37.8, 618, 120 }, + [1057] = { 46.6, 37.8, 618, 120 }, + [1058] = { 46.3, 37.8, 618, 120 }, + [1059] = { 43.1, 37.8, 618, 120 }, + [1060] = { 42.9, 37.8, 618, 120 }, + [1061] = { 45.7, 37.8, 618, 120 }, + [1062] = { 45.9, 37.7, 618, 120 }, + [1063] = { 46.2, 37.7, 618, 120 }, + [1064] = { 42.6, 37.6, 618, 120 }, + [1065] = { 45.4, 37.6, 618, 120 }, + [1066] = { 42.8, 37.6, 618, 120 }, + [1067] = { 46.4, 37.5, 618, 120 }, + [1068] = { 42.4, 37.5, 618, 120 }, + [1069] = { 43.2, 37.5, 618, 120 }, + [1070] = { 46.1, 37.5, 618, 120 }, + [1071] = { 43, 37.4, 618, 120 }, + [1072] = { 42.2, 37.3, 618, 120 }, + [1073] = { 46.2, 37.3, 618, 120 }, + [1074] = { 42.6, 37.3, 618, 120 }, + [1075] = { 46.4, 37.3, 618, 120 }, + [1076] = { 45.7, 37.3, 618, 120 }, + [1077] = { 45.9, 37.3, 618, 120 }, + [1078] = { 45.4, 37.2, 618, 120 }, + [1079] = { 46.5, 37.2, 618, 120 }, + [1080] = { 42.9, 37.2, 618, 120 }, + [1081] = { 42.4, 37.1, 618, 120 }, + [1082] = { 43.3, 37, 618, 120 }, + [1083] = { 45.9, 37, 618, 120 }, + [1084] = { 46.3, 37, 618, 120 }, + [1085] = { 42.5, 36.8, 618, 120 }, + [1086] = { 46, 36.8, 618, 120 }, + [1087] = { 46.6, 36.7, 618, 120 }, + [1088] = { 46.2, 36.7, 618, 120 }, + [1089] = { 45.8, 36.6, 618, 120 }, + [1090] = { 46.4, 36.6, 618, 120 }, + [1091] = { 46.1, 36.4, 618, 120 }, + [1092] = { 46.5, 36.2, 618, 120 }, + [1093] = { 45.8, 36.2, 618, 120 }, + [1094] = { 50.3, 18.8, 618, 120 }, + [1095] = { 50, 18.7, 618, 120 }, + [1096] = { 49.8, 18.7, 618, 120 }, + [1097] = { 50.5, 18.6, 618, 120 }, + [1098] = { 50.2, 18.5, 618, 120 }, + [1099] = { 50, 18.4, 618, 120 }, + [1100] = { 49.8, 18.4, 618, 120 }, + [1101] = { 50.6, 18.3, 618, 120 }, + [1102] = { 50.3, 18.3, 618, 120 }, + [1103] = { 49.9, 18.1, 618, 120 }, + [1104] = { 49.6, 18.1, 618, 120 }, + [1105] = { 50.7, 18.1, 618, 120 }, + [1106] = { 50.1, 18, 618, 120 }, + [1107] = { 50.3, 18, 618, 120 }, + [1108] = { 50.4, 17.9, 618, 120 }, + [1109] = { 49.7, 17.8, 618, 120 }, + [1110] = { 50, 17.8, 618, 120 }, + [1111] = { 49.8, 17.7, 618, 120 }, + [1112] = { 50.2, 17.7, 618, 120 }, + [1113] = { 50.8, 17.7, 618, 120 }, + [1114] = { 49.8, 17.5, 618, 120 }, + [1115] = { 50.3, 17.5, 618, 120 }, + [1116] = { 50.6, 17.4, 618, 120 }, + [1117] = { 50.1, 17.4, 618, 120 }, + [1118] = { 49.6, 17.4, 618, 120 }, + [1119] = { 50.2, 17.2, 618, 120 }, + [1120] = { 50, 17.1, 618, 120 }, + [1121] = { 50.5, 17.1, 618, 120 }, + [1122] = { 54.6, 15.7, 618, 120 }, + [1123] = { 55, 15.7, 618, 120 }, + [1124] = { 55.4, 15.6, 618, 120 }, + [1125] = { 54.8, 15.6, 618, 120 }, + [1126] = { 55.2, 15.6, 618, 120 }, + [1127] = { 55, 15.4, 618, 120 }, + [1128] = { 55.4, 15.4, 618, 120 }, + [1129] = { 55.5, 15.3, 618, 120 }, + [1130] = { 54.7, 15.3, 618, 120 }, + [1131] = { 55.2, 15.3, 618, 120 }, + [1132] = { 54.5, 15.3, 618, 120 }, + [1133] = { 54.9, 15.2, 618, 120 }, + [1134] = { 55.1, 15.1, 618, 120 }, + [1135] = { 55.5, 15.1, 618, 120 }, + [1136] = { 54.5, 15, 618, 120 }, + [1137] = { 55.2, 15, 618, 120 }, + [1138] = { 54.7, 15, 618, 120 }, + [1139] = { 54.9, 14.9, 618, 120 }, + [1140] = { 55.1, 14.9, 618, 120 }, + [1141] = { 55.4, 14.8, 618, 120 }, + [1142] = { 55.6, 14.8, 618, 120 }, + [1143] = { 54.6, 14.8, 618, 120 }, + [1144] = { 54.8, 14.7, 618, 120 }, + [1145] = { 55.2, 14.6, 618, 120 }, + [1146] = { 55, 14.5, 618, 120 }, + [1147] = { 55.4, 14.5, 618, 120 }, + [1148] = { 54.8, 14.2, 618, 120 }, + [1149] = { 55.1, 14.2, 618, 120 }, + [1150] = { 50.2, 13.4, 618, 120 }, + [1151] = { 50, 13.3, 618, 120 }, + [1152] = { 50.4, 13.1, 618, 120 }, + [1153] = { 50.1, 13, 618, 120 }, + [1154] = { 49.9, 13, 618, 120 }, + [1155] = { 49.6, 12.8, 618, 120 }, + [1156] = { 50.4, 12.8, 618, 120 }, + [1157] = { 50, 12.7, 618, 120 }, + [1158] = { 50.2, 12.7, 618, 120 }, + [1159] = { 49.8, 12.6, 618, 120 }, + [1160] = { 50.6, 12.6, 618, 120 }, + [1161] = { 49.4, 12.5, 618, 120 }, + [1162] = { 49.6, 12.5, 618, 120 }, + [1163] = { 50.4, 12.5, 618, 120 }, + [1164] = { 49.9, 12.4, 618, 120 }, + [1165] = { 49.8, 12.4, 618, 120 }, + [1166] = { 50.1, 12.3, 618, 120 }, + [1167] = { 49.5, 12.3, 618, 120 }, + [1168] = { 50.5, 12.2, 618, 120 }, + [1169] = { 49.4, 12.2, 618, 120 }, + [1170] = { 50.3, 12.2, 618, 120 }, + [1171] = { 49.7, 12.2, 618, 120 }, + [1172] = { 50, 12.2, 618, 120 }, + [1173] = { 49.8, 12.1, 618, 120 }, + [1174] = { 50.2, 12.1, 618, 120 }, + [1175] = { 49.5, 12, 618, 120 }, + [1176] = { 50.5, 12, 618, 120 }, + [1177] = { 49.9, 12, 618, 120 }, + [1178] = { 10.1, 54.8, 1941, 120 }, + [1179] = { 9, 54, 1941, 120 }, + [1180] = { 9.9, 53.4, 1941, 120 }, + [1181] = { 10.9, 53.4, 1941, 120 }, + [1182] = { 8.1, 53.2, 1941, 120 }, + [1183] = { 9.1, 52.5, 1941, 120 }, + [1184] = { 7.1, 52.1, 1941, 120 }, + [1185] = { 10.5, 51.9, 1941, 120 }, + [1186] = { 11.3, 51.7, 1941, 120 }, + [1187] = { 8.2, 51.7, 1941, 120 }, + [1188] = { 12.1, 51.3, 1941, 120 }, + [1189] = { 10.8, 50.8, 1941, 120 }, + [1190] = { 11.7, 50.3, 1941, 120 }, + [1191] = { 7.7, 50.2, 1941, 120 }, + [1192] = { 8.7, 50.1, 1941, 120 }, + [1193] = { 6.6, 50.1, 1941, 120 }, + [1194] = { 13, 49.6, 1941, 120 }, + [1195] = { 10.2, 49.6, 1941, 120 }, + [1196] = { 11.2, 49, 1941, 120 }, + [1197] = { 9.3, 48.7, 1941, 120 }, + [1198] = { 8.4, 48.6, 1941, 120 }, + [1199] = { 7.4, 48.5, 1941, 120 }, + [1200] = { 12.3, 48.2, 1941, 120 }, + [1201] = { 10.2, 47.8, 1941, 120 }, + [1202] = { 11.4, 47, 1941, 120 }, + [1203] = { 8.3, 47, 1941, 120 }, + [1204] = { 9.5, 46.8, 1941, 120 }, + [1205] = { 10.3, 45.9, 1941, 120 }, + [1206] = { 39.1, 39.4, 1941, 120 }, + [1207] = { 38.1, 39.3, 1941, 120 }, + [1208] = { 35.9, 38.6, 1941, 120 }, + [1209] = { 37, 37.8, 1941, 120 }, + [1210] = { 38.9, 37.6, 1941, 120 }, + [1211] = { 38, 37.1, 1941, 120 }, + [1212] = { 35.1, 36.9, 1941, 120 }, + [1213] = { 36.1, 36.6, 1941, 120 }, + [1214] = { 37, 36.3, 1941, 120 }, + [1215] = { 39.7, 36.2, 1941, 120 }, + [1216] = { 38.6, 35.9, 1941, 120 }, + [1217] = { 34.9, 35.4, 1941, 120 }, + [1218] = { 36.1, 35.2, 1941, 120 }, + [1219] = { 39.1, 34.7, 1941, 120 }, + [1220] = { 40.4, 34.7, 1941, 120 }, + [1221] = { 36.7, 34.1, 1941, 120 }, + [1222] = { 35.7, 33.9, 1941, 120 }, + [1223] = { 33.8, 33.7, 1941, 120 }, + [1224] = { 38.2, 33.6, 1941, 120 }, + [1225] = { 39.3, 33.2, 1941, 120 }, + [1226] = { 37.4, 32.8, 1941, 120 }, + [1227] = { 36.3, 32.6, 1941, 120 }, + [1228] = { 34.6, 32.3, 1941, 120 }, + [1229] = { 38.2, 32, 1941, 120 }, + [1230] = { 39.4, 31.6, 1941, 120 }, + [1231] = { 37.1, 31.1, 1941, 120 }, + [1232] = { 35.8, 30.6, 1941, 120 }, + [1233] = { 38, 30.1, 1941, 120 }, + [1234] = { 8, 20.2, 1941, 120 }, + [1235] = { 6.3, 19.4, 1941, 120 }, + [1236] = { 10.1, 19.1, 1941, 120 }, + [1237] = { 7.2, 18.9, 1941, 120 }, + [1238] = { 9.2, 18.7, 1941, 120 }, + [1239] = { 8.3, 18.4, 1941, 120 }, + [1240] = { 6.5, 18.1, 1941, 120 }, + [1241] = { 7.3, 17.6, 1941, 120 }, + [1242] = { 9.9, 17.5, 1941, 120 }, + [1243] = { 8.9, 17.3, 1941, 120 }, + [1244] = { 6.5, 16.7, 1941, 120 }, + [1245] = { 5.5, 16.6, 1941, 120 }, + [1246] = { 9.5, 16.1, 1941, 120 }, + [1247] = { 10.7, 15.9, 1941, 120 }, + [1248] = { 7.2, 15.4, 1941, 120 }, + [1249] = { 8.7, 15.2, 1941, 120 }, + [1250] = { 6.2, 15.2, 1941, 120 }, + [1251] = { 5.2, 15, 1941, 120 }, + [1252] = { 9.6, 14.6, 1941, 120 }, + [1253] = { 10.6, 14.4, 1941, 120 }, + [1254] = { 7.9, 14.4, 1941, 120 }, + [1255] = { 7, 13.9, 1941, 120 }, + [1256] = { 8.9, 13.6, 1941, 120 }, + [1257] = { 5.9, 13.5, 1941, 120 }, + [1258] = { 9.8, 12.9, 1941, 120 }, + [1259] = { 8, 12.4, 1941, 120 }, + [1260] = { 6.9, 12.3, 1941, 120 }, + [1261] = { 9, 11.3, 1941, 120 }, + [1262] = { 23, 57.3, 4012, 120 }, + [1263] = { 22.8, 56.3, 4012, 120 }, + [1264] = { 23.9, 56.2, 4012, 120 }, + [1265] = { 22.4, 55.9, 4012, 120 }, + [1266] = { 23.9, 55.8, 4012, 120 }, + [1267] = { 22.7, 55.6, 4012, 120 }, + [1268] = { 23.7, 55.5, 4012, 120 }, + [1269] = { 33.4, 55.4, 4012, 120 }, + [1270] = { 21.4, 55.4, 4012, 120 }, + [1271] = { 22.3, 55.3, 4012, 120 }, + [1272] = { 23.6, 55.2, 4012, 120 }, + [1273] = { 34.7, 55.1, 4012, 120 }, + [1274] = { 23, 55, 4012, 120 }, + [1275] = { 23.4, 55, 4012, 120 }, + [1276] = { 24.1, 54.9, 4012, 120 }, + [1277] = { 21.8, 54.8, 4012, 120 }, + [1278] = { 33.4, 54.7, 4012, 120 }, + [1279] = { 33.9, 54.6, 4012, 120 }, + [1280] = { 34.4, 54.5, 4012, 120 }, + [1281] = { 35.4, 54.5, 4012, 120 }, + [1282] = { 21.5, 54.5, 4012, 120 }, + [1283] = { 34.9, 54.5, 4012, 120 }, + [1284] = { 33, 54.4, 4012, 120 }, + [1285] = { 23.2, 54.3, 4012, 120 }, + [1286] = { 23.7, 54.3, 4012, 120 }, + [1287] = { 22, 54.2, 4012, 120 }, + [1288] = { 33.8, 54.1, 4012, 120 }, + [1289] = { 34.2, 54.1, 4012, 120 }, + [1290] = { 34.6, 54.1, 4012, 120 }, + [1291] = { 33.4, 53.9, 4012, 120 }, + [1292] = { 35.9, 53.9, 4012, 120 }, + [1293] = { 22.7, 53.8, 4012, 120 }, + [1294] = { 35, 53.8, 4012, 120 }, + [1295] = { 33.1, 53.6, 4012, 120 }, + [1296] = { 35.3, 53.6, 4012, 120 }, + [1297] = { 33.7, 53.5, 4012, 120 }, + [1298] = { 22.3, 53.4, 4012, 120 }, + [1299] = { 34.7, 53.4, 4012, 120 }, + [1300] = { 21.8, 53.3, 4012, 120 }, + [1301] = { 33.4, 53.2, 4012, 120 }, + [1302] = { 21.1, 53.2, 4012, 120 }, + [1303] = { 35, 53.1, 4012, 120 }, + [1304] = { 33.8, 52.9, 4012, 120 }, + [1305] = { 33.1, 52.9, 4012, 120 }, + [1306] = { 35.4, 52.8, 4012, 120 }, + [1307] = { 34.6, 52.8, 4012, 120 }, + [1308] = { 22.2, 52.7, 4012, 120 }, + [1309] = { 33.4, 52.6, 4012, 120 }, + [1310] = { 35, 52.5, 4012, 120 }, + [1311] = { 23.8, 52.3, 4012, 120 }, + [1312] = { 21.6, 52.3, 4012, 120 }, + [1313] = { 34.4, 52.2, 4012, 120 }, + [1314] = { 22.1, 52.1, 4012, 120 }, + [1315] = { 22.7, 51.7, 4012, 120 }, + [1316] = { 22.1, 51.6, 4012, 120 }, + [1317] = { 27.3, 37.9, 4012, 120 }, + [1318] = { 26.7, 37.8, 4012, 120 }, + [1319] = { 28.1, 37.5, 4012, 120 }, + [1320] = { 29.8, 37.5, 4012, 120 }, + [1321] = { 27.2, 37.3, 4012, 120 }, + [1322] = { 27.7, 37.2, 4012, 120 }, + [1323] = { 28.5, 37.1, 4012, 120 }, + [1324] = { 26.6, 37, 4012, 120 }, + [1325] = { 27.5, 36.5, 4012, 120 }, + [1326] = { 29.9, 36.4, 4012, 120 }, + [1327] = { 28.7, 36.3, 4012, 120 }, + [1328] = { 29.2, 36.1, 4012, 120 }, + [1329] = { 28.1, 36, 4012, 120 }, + [1330] = { 27.6, 35.8, 4012, 120 }, + [1331] = { 27.1, 35.7, 4012, 120 }, + [1332] = { 28.5, 35.5, 4012, 120 }, + [1333] = { 29, 35.3, 4012, 120 }, + [1334] = { 27.9, 35.3, 4012, 120 }, + [1335] = { 29.6, 35.3, 4012, 120 }, + [1336] = { 27.3, 35, 4012, 120 }, + [1337] = { 26.8, 35, 4012, 120 }, + [1338] = { 28.4, 34.8, 4012, 120 }, + [1339] = { 29, 34.5, 4012, 120 }, + [1340] = { 27.6, 34.4, 4012, 120 }, + [1341] = { 27.2, 34.2, 4012, 120 }, + [1342] = { 100, 96.9, 5581, 120 }, + [1343] = { 99.5, 96.6, 5581, 120 }, + [1344] = { 99, 96.6, 5581, 120 }, + [1345] = { 99.8, 96.2, 5581, 120 }, + [1346] = { 98.8, 96, 5581, 120 }, + [1347] = { 99.3, 96, 5581, 120 }, + [1348] = { 99.7, 95.5, 5581, 120 }, + [1349] = { 99.3, 95.4, 5581, 120 }, + [1350] = { 98.7, 95.3, 5581, 120 }, + [1351] = { 99, 95.2, 5581, 120 }, + [1352] = { 99.7, 94.9, 5581, 120 }, + [1353] = { 98.7, 94.8, 5581, 120 }, + [1354] = { 98.3, 94.8, 5581, 120 }, + [1355] = { 99, 94.6, 5581, 120 }, + [1356] = { 99.8, 94.4, 5581, 120 }, + [1357] = { 98.7, 94.1, 5581, 120 }, + [1358] = { 99.5, 94.1, 5581, 120 }, + [1359] = { 98.2, 94, 5581, 120 }, + [1360] = { 99.1, 93.8, 5581, 120 }, + [1361] = { 99.8, 93.7, 5581, 120 }, + [1362] = { 99.4, 93.4, 5581, 120 }, + [1363] = { 99.8, 93, 5581, 120 }, + [1364] = { 99.8, 80, 5581, 120 }, + [1365] = { 99.4, 79.7, 5581, 120 }, + [1366] = { 98.9, 79.2, 5581, 120 }, + [1367] = { 99.3, 79.1, 5581, 120 }, + [1368] = { 99.7, 78.4, 5581, 120 }, + [1369] = { 99, 78.3, 5581, 120 }, + [1370] = { 99.3, 77.7, 5581, 120 }, + [1371] = { 99.3, 76.7, 5581, 120 }, + [1372] = { 99.9, 76.6, 5581, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [16361] = { + ["coords"] = { + [1] = { 80.9, 60.4, 139, 120 }, + [2] = { 40.1, 40.1, 4012, 120 }, + }, + ["lvl"] = "55", + }, + [16365] = { + ["coords"] = { + [1] = { 44, 60.9, 3456, 3520 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16368] = { + ["coords"] = { + [1] = { 61, 84.3, 3456, 7200 }, + [2] = { 65.4, 84.3, 3456, 7200 }, + [3] = { 40.9, 84.3, 3456, 7200 }, + [4] = { 45.3, 84.3, 3456, 7200 }, + [5] = { 61, 82.6, 3456, 7200 }, + [6] = { 45.3, 82.6, 3456, 7200 }, + [7] = { 41, 82.6, 3456, 7200 }, + [8] = { 65.4, 82.5, 3456, 7200 }, + [9] = { 35.1, 81, 3456, 7200 }, + [10] = { 71.1, 80.8, 3456, 7200 }, + [11] = { 70.3, 79.5, 3456, 7200 }, + [12] = { 36.3, 79.3, 3456, 7200 }, + [13] = { 32.3, 76.7, 3456, 7200 }, + [14] = { 73.9, 76.4, 3456, 7200 }, + [15] = { 73.1, 75.2, 3456, 7200 }, + [16] = { 33.4, 75, 3456, 7200 }, + [17] = { 31.2, 68, 3456, 7200 }, + [18] = { 30.1, 67.9, 3456, 7200 }, + [19] = { 76.3, 67.9, 3456, 7200 }, + [20] = { 75.1, 67.9, 3456, 7200 }, + [21] = { 31.2, 61.3, 3456, 7200 }, + [22] = { 75.1, 61.3, 3456, 7200 }, + [23] = { 76.3, 61.3, 3456, 7200 }, + [24] = { 30.1, 61.3, 3456, 7200 }, + [25] = { 76.3, 37.6, 3456, 7200 }, + [26] = { 75.1, 37.6, 3456, 7200 }, + [27] = { 31.2, 37.6, 3456, 7200 }, + [28] = { 30.1, 37.5, 3456, 7200 }, + [29] = { 31.2, 30.9, 3456, 7200 }, + [30] = { 30.1, 30.9, 3456, 7200 }, + [31] = { 75.1, 30.9, 3456, 7200 }, + [32] = { 76.2, 30.9, 3456, 7200 }, + [33] = { 73.1, 23.6, 3456, 7200 }, + [34] = { 33.2, 23.6, 3456, 7200 }, + [35] = { 32.4, 22.4, 3456, 7200 }, + [36] = { 73.9, 22.4, 3456, 7200 }, + [37] = { 70.2, 19.3, 3456, 7200 }, + [38] = { 36.1, 19.3, 3456, 7200 }, + [39] = { 71.1, 18.1, 3456, 7200 }, + [40] = { 35.3, 18.1, 3456, 7200 }, + [41] = { 40.9, 16.3, 3456, 7200 }, + [42] = { 65.4, 16.3, 3456, 7200 }, + [43] = { 61.1, 16.3, 3456, 7200 }, + [44] = { 45.3, 16.2, 3456, 7200 }, + [45] = { 61.1, 14.6, 3456, 7200 }, + [46] = { 40.9, 14.6, 3456, 7200 }, + [47] = { 65.4, 14.6, 3456, 7200 }, + [48] = { 45.3, 14.6, 3456, 7200 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [16376] = { + ["coords"] = { + [1] = { 81, 59.6, 139, 345 }, + [2] = { 40.2, 39.2, 4012, 345 }, + }, + ["lvl"] = "57", + }, + [16378] = { + ["coords"] = { + [1] = { 80.6, 62.7, 139, 610 }, + [2] = { 80.7, 61.4, 139, 610 }, + [3] = { 81.9, 61.1, 139, 610 }, + [4] = { 80.3, 61, 139, 610 }, + [5] = { 81.5, 60.2, 139, 610 }, + [6] = { 81.7, 59.5, 139, 610 }, + [7] = { 82.4, 59.2, 139, 610 }, + [8] = { 80, 59.2, 139, 610 }, + [9] = { 81.5, 59.1, 139, 610 }, + [10] = { 82.9, 59.1, 139, 610 }, + [11] = { 80.3, 58.9, 139, 610 }, + [12] = { 81.1, 58.8, 139, 610 }, + [13] = { 80.3, 58.7, 139, 610 }, + [14] = { 80, 58.6, 139, 610 }, + [15] = { 81, 58.5, 139, 610 }, + [16] = { 81.8, 58.2, 139, 610 }, + [17] = { 81.7, 57.8, 139, 610 }, + [18] = { 80.2, 57.5, 139, 610 }, + [19] = { 80.3, 57.3, 139, 610 }, + [20] = { 81.1, 57.2, 139, 610 }, + [21] = { 80.5, 56.9, 139, 610 }, + [22] = { 82.3, 56.5, 139, 610 }, + [23] = { 80.9, 56, 139, 610 }, + [24] = { 39.7, 42.9, 4012, 610 }, + [25] = { 39.8, 41.4, 4012, 610 }, + [26] = { 41.4, 41, 4012, 610 }, + [27] = { 39.3, 40.8, 4012, 610 }, + [28] = { 40.9, 39.9, 4012, 610 }, + [29] = { 41, 39.1, 4012, 610 }, + [30] = { 42, 38.7, 4012, 610 }, + [31] = { 39, 38.6, 4012, 610 }, + [32] = { 40.8, 38.5, 4012, 610 }, + [33] = { 42.6, 38.5, 4012, 610 }, + [34] = { 39.3, 38.3, 4012, 610 }, + [35] = { 40.3, 38.2, 4012, 610 }, + [36] = { 39.3, 38.1, 4012, 610 }, + [37] = { 39, 37.9, 4012, 610 }, + [38] = { 40.2, 37.9, 4012, 610 }, + [39] = { 41.2, 37.4, 4012, 610 }, + [40] = { 41, 37, 4012, 610 }, + [41] = { 39.2, 36.5, 4012, 610 }, + [42] = { 39.4, 36.4, 4012, 610 }, + [43] = { 40.4, 36.2, 4012, 610 }, + [44] = { 39.7, 35.9, 4012, 610 }, + [45] = { 41.8, 35.3, 4012, 610 }, + [46] = { 40.1, 34.7, 4012, 610 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16381] = { + ["coords"] = { + [1] = { 55.8, 49.4, 3456, 3520 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16386] = { + ["coords"] = { + [1] = { 61.3, 41.7, 4, 120 }, + [2] = { 59.1, 36, 4, 120 }, + [3] = { 47.3, 35.6, 4, 120 }, + [4] = { 62.6, 32.7, 4, 120 }, + [5] = { 50.4, 28.4, 4, 120 }, + [6] = { 46.6, 23.5, 4, 120 }, + [7] = { 19.1, 64.3, 16, 120 }, + [8] = { 22.8, 60, 16, 120 }, + [9] = { 45.6, 56.4, 16, 120 }, + [10] = { 18, 56, 16, 120 }, + [11] = { 47.4, 53.6, 16, 120 }, + [12] = { 45.1, 51.1, 16, 120 }, + [13] = { 80.2, 59.7, 28, 120 }, + [14] = { 77.1, 54.9, 28, 120 }, + [15] = { 32.4, 66.7, 46, 120 }, + [16] = { 25.1, 66.1, 46, 120 }, + [17] = { 26.2, 54.8, 46, 120 }, + [18] = { 74, 44.5, 46, 120 }, + [19] = { 69.4, 36, 46, 120 }, + [20] = { 77.9, 31.5, 46, 120 }, + [21] = { 21.9, 83.1, 139, 120 }, + [22] = { 18.5, 77.8, 139, 120 }, + [23] = { 23.3, 73.6, 139, 120 }, + [24] = { 68.2, 69.7, 139, 120 }, + [25] = { 73.9, 69.5, 139, 120 }, + [26] = { 71, 60.7, 139, 120 }, + [27] = { 34, 62.9, 440, 120 }, + [28] = { 31.1, 58.5, 440, 120 }, + [29] = { 35, 58.5, 440, 120 }, + [30] = { 52.9, 55.6, 440, 120 }, + [31] = { 56.7, 53.4, 440, 120 }, + [32] = { 52.7, 51.1, 440, 120 }, + [33] = { 50.9, 36.8, 440, 120 }, + [34] = { 53.2, 32.2, 440, 120 }, + [35] = { 49.1, 30.7, 440, 120 }, + [36] = { 63.3, 51.3, 618, 120 }, + [37] = { 66, 51.3, 618, 120 }, + [38] = { 63.8, 48.5, 618, 120 }, + [39] = { 44.3, 40.9, 618, 120 }, + [40] = { 43.1, 38.4, 618, 120 }, + [41] = { 45.6, 37.6, 618, 120 }, + [42] = { 50.7, 17.5, 618, 120 }, + [43] = { 53.9, 15.5, 618, 120 }, + [44] = { 50.8, 13.8, 618, 120 }, + [45] = { 12.6, 46.2, 1941, 120 }, + [46] = { 32.5, 34.9, 1941, 120 }, + [47] = { 12, 22.6, 1941, 120 }, + [48] = { 24.5, 51.5, 4012, 120 }, + [49] = { 31.5, 51.2, 4012, 120 }, + [50] = { 28, 40.5, 4012, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [16387] = { + ["coords"] = { + [1] = { 70.4, 65.8, 2017, 0 }, + }, + ["lvl"] = "61", + ["rnk"] = "3", + }, + [16395] = { + ["coords"] = { + [1] = { 80.7, 60, 139, 120 }, + [2] = { 25.4, 56.6, 141, 120 }, + [3] = { 62.2, 72.4, 1519, 120 }, + [4] = { 29.4, 60.5, 1537, 120 }, + [5] = { 39.4, 46.7, 1657, 120 }, + [6] = { 39.9, 39.6, 4012, 120 }, + }, + ["lvl"] = "55", + }, + [16398] = { + ["coords"] = { + [1] = { 61.5, 40.6, 4, 120 }, + [2] = { 61.4, 37.1, 4, 120 }, + [3] = { 62.4, 34.8, 4, 120 }, + [4] = { 47.5, 32.7, 4, 120 }, + [5] = { 49.2, 29.1, 4, 120 }, + [6] = { 47.2, 26.7, 4, 120 }, + [7] = { 19.5, 62.3, 16, 120 }, + [8] = { 21.3, 60.4, 16, 120 }, + [9] = { 18.8, 58.5, 16, 120 }, + [10] = { 45.8, 54.8, 16, 120 }, + [11] = { 46.7, 53.4, 16, 120 }, + [12] = { 45.7, 52.6, 16, 120 }, + [13] = { 80.2, 57.6, 28, 120 }, + [14] = { 30.7, 63.3, 46, 120 }, + [15] = { 27.3, 63.3, 46, 120 }, + [16] = { 27.5, 58.7, 46, 120 }, + [17] = { 74, 40.2, 46, 120 }, + [18] = { 71.7, 36, 46, 120 }, + [19] = { 75.9, 33.9, 46, 120 }, + [20] = { 21.9, 80.7, 139, 120 }, + [21] = { 20.2, 78.4, 139, 120 }, + [22] = { 22.8, 76.2, 139, 120 }, + [23] = { 69.8, 67.5, 139, 120 }, + [24] = { 71.9, 67.4, 139, 120 }, + [25] = { 71, 64, 139, 120 }, + [26] = { 33.6, 61.4, 440, 120 }, + [27] = { 34, 59.2, 440, 120 }, + [28] = { 32.1, 59.2, 440, 120 }, + [29] = { 53.5, 54.6, 440, 120 }, + [30] = { 55.5, 53.5, 440, 120 }, + [31] = { 53.6, 52.3, 440, 120 }, + [32] = { 50.9, 35, 440, 120 }, + [33] = { 52.1, 32.7, 440, 120 }, + [34] = { 50, 31.7, 440, 120 }, + [35] = { 65.4, 50.5, 618, 120 }, + [36] = { 64.3, 50.2, 618, 120 }, + [37] = { 64.2, 49, 618, 120 }, + [38] = { 44.3, 40.5, 618, 120 }, + [39] = { 43.6, 39.2, 618, 120 }, + [40] = { 44.8, 38.7, 618, 120 }, + [41] = { 51.2, 17.1, 618, 120 }, + [42] = { 53.1, 16, 618, 120 }, + [43] = { 51.6, 15.2, 618, 120 }, + [44] = { 16.1, 41, 1941, 120 }, + [45] = { 26.3, 35, 1941, 120 }, + [46] = { 16.4, 29.2, 1941, 120 }, + [47] = { 26.5, 48.9, 4012, 120 }, + [48] = { 29.1, 48.7, 4012, 120 }, + [49] = { 28, 44.5, 4012, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [16400] = { + ["coords"] = { + [1] = { 44.6, 36.3, 3456, 7200 }, + [2] = { 44, 35.4, 3456, 7200 }, + [3] = { 43.1, 34, 3456, 7200 }, + [4] = { 42.7, 33.3, 3456, 7200 }, + [5] = { 42.3, 32.9, 3456, 7200 }, + [6] = { 41.8, 31.8, 3456, 7200 }, + [7] = { 41.1, 31.1, 3456, 7200 }, + }, + ["lvl"] = "60", + }, + [16401] = { + ["coords"] = { + [1] = { 61.9, 37.4, 4, 120 }, + [2] = { 47.8, 29.9, 4, 120 }, + [3] = { 20.2, 60.4, 16, 120 }, + [4] = { 46, 53.1, 16, 120 }, + [5] = { 28.4, 61.6, 46, 120 }, + [6] = { 73.9, 36, 46, 120 }, + [7] = { 21.9, 78.8, 139, 120 }, + [8] = { 70.9, 65.8, 139, 120 }, + [9] = { 33.1, 60, 440, 120 }, + [10] = { 54.3, 53.4, 440, 120 }, + [11] = { 50.9, 33.2, 440, 120 }, + [12] = { 64.7, 49.6, 618, 120 }, + [13] = { 44, 39.9, 618, 120 }, + [14] = { 52.3, 16.4, 618, 120 }, + [15] = { 20.1, 35, 1941, 120 }, + [16] = { 27.9, 46.7, 4012, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [16421] = { + ["coords"] = { + [1] = { 61.9, 37.4, 4, 120 }, + [2] = { 47.8, 29.9, 4, 120 }, + [3] = { 20.2, 60.4, 16, 120 }, + [4] = { 46, 53.1, 16, 120 }, + [5] = { 28.4, 61.6, 46, 120 }, + [6] = { 73.9, 36, 46, 120 }, + [7] = { 21.9, 78.8, 139, 120 }, + [8] = { 70.9, 65.8, 139, 120 }, + [9] = { 33.1, 60, 440, 120 }, + [10] = { 54.3, 53.4, 440, 120 }, + [11] = { 50.9, 33.2, 440, 120 }, + [12] = { 64.7, 49.6, 618, 120 }, + [13] = { 44, 39.9, 618, 120 }, + [14] = { 52.3, 16.4, 618, 120 }, + [15] = { 20.1, 35, 1941, 120 }, + [16] = { 27.9, 46.7, 4012, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [16422] = { + ["coords"] = { + [1] = { 34, 55.6, 12, 120 }, + [2] = { 36.9, 55.5, 12, 120 }, + [3] = { 34.9, 55.4, 12, 120 }, + [4] = { 33.8, 55.1, 12, 120 }, + [5] = { 34, 54.9, 12, 120 }, + [6] = { 34.9, 54.8, 12, 120 }, + [7] = { 36.9, 54.8, 12, 120 }, + [8] = { 32, 54.7, 12, 120 }, + [9] = { 32, 54, 12, 120 }, + [10] = { 32.5, 53.3, 12, 120 }, + [11] = { 32.5, 52.6, 12, 120 }, + [12] = { 32.4, 52.4, 12, 120 }, + [13] = { 34.4, 52, 12, 120 }, + [14] = { 35.4, 51.3, 12, 120 }, + [15] = { 34, 50.5, 12, 120 }, + [16] = { 34.8, 50.5, 12, 120 }, + [17] = { 34.4, 50.5, 12, 120 }, + [18] = { 35.4, 49.9, 12, 120 }, + [19] = { 34, 49.1, 12, 120 }, + [20] = { 35.5, 49, 12, 120 }, + [21] = { 34.4, 49, 12, 120 }, + [22] = { 34.9, 48.7, 12, 120 }, + [23] = { 34.4, 48.4, 12, 120 }, + [24] = { 60.3, 62.4, 85, 120 }, + [25] = { 59.5, 61.8, 85, 120 }, + [26] = { 59.9, 61.8, 85, 120 }, + [27] = { 60.7, 61.3, 85, 120 }, + [28] = { 60.3, 60.7, 85, 120 }, + [29] = { 61, 60.7, 85, 120 }, + [30] = { 60, 60.6, 85, 120 }, + [31] = { 59.5, 60.6, 85, 120 }, + [32] = { 60.3, 60.2, 85, 120 }, + [33] = { 60.7, 60.2, 85, 120 }, + }, + ["lvl"] = "6-7", + }, + [16423] = { + ["coords"] = { + [1] = { 34.9, 56.2, 12, 120 }, + [2] = { 35.4, 55.6, 12, 120 }, + [3] = { 33.4, 55.6, 12, 120 }, + [4] = { 32.5, 55.5, 12, 120 }, + [5] = { 34.5, 55.4, 12, 120 }, + [6] = { 33.7, 55.3, 12, 120 }, + [7] = { 35.4, 54.8, 12, 120 }, + [8] = { 34.4, 54.8, 12, 120 }, + [9] = { 34, 54.2, 12, 120 }, + [10] = { 33.5, 54.1, 12, 120 }, + [11] = { 33, 53.3, 12, 120 }, + [12] = { 34.9, 51.4, 12, 120 }, + [13] = { 34.5, 51.3, 12, 120 }, + [14] = { 34, 51.2, 12, 120 }, + [15] = { 35.4, 50.4, 12, 120 }, + [16] = { 34.4, 49.8, 12, 120 }, + [17] = { 34.8, 49.8, 12, 120 }, + [18] = { 33.9, 48.4, 12, 120 }, + [19] = { 34.4, 48, 12, 120 }, + [20] = { 34, 47.8, 12, 120 }, + [21] = { 34.9, 47.8, 12, 120 }, + [22] = { 59.6, 62.5, 85, 120 }, + [23] = { 59.9, 62.4, 85, 120 }, + [24] = { 60.3, 61.8, 85, 120 }, + [25] = { 60.7, 61.7, 85, 120 }, + [26] = { 61, 61.3, 85, 120 }, + [27] = { 59.4, 61.3, 85, 120 }, + [28] = { 60.3, 61.3, 85, 120 }, + [29] = { 60.5, 61.1, 85, 120 }, + [30] = { 59.8, 60.9, 85, 120 }, + [31] = { 60.7, 60.6, 85, 120 }, + [32] = { 59.9, 60.2, 85, 120 }, + [33] = { 59.9, 59.7, 85, 120 }, + }, + ["lvl"] = "6-7", + }, + [16433] = { + ["coords"] = { + [1] = { 80.7, 60, 139, 120 }, + [2] = { 25.4, 56.6, 141, 120 }, + [3] = { 62.2, 72.4, 1519, 120 }, + [4] = { 29.4, 60.5, 1537, 120 }, + [5] = { 39.4, 46.7, 1657, 120 }, + [6] = { 39.9, 39.6, 4012, 120 }, + }, + ["lvl"] = "55", + }, + [16434] = { + ["coords"] = { + [1] = { 80.7, 60, 139, 120 }, + [2] = { 25.4, 56.6, 141, 120 }, + [3] = { 62.2, 72.4, 1519, 120 }, + [4] = { 29.4, 60.5, 1537, 120 }, + [5] = { 39.4, 46.7, 1657, 120 }, + [6] = { 39.9, 39.6, 4012, 120 }, + }, + ["lvl"] = "55", + }, + [16437] = { + ["coords"] = { + [1] = { 48.3, 40.6, 1, 120 }, + [2] = { 48.9, 40.1, 1, 120 }, + [3] = { 49.5, 40.1, 1, 120 }, + [4] = { 47.9, 40.1, 1, 120 }, + [5] = { 48.3, 40.1, 1, 120 }, + [6] = { 49.3, 39.5, 1, 120 }, + [7] = { 50.1, 39.4, 1, 120 }, + [8] = { 50, 39, 1, 120 }, + [9] = { 48.9, 39, 1, 120 }, + [10] = { 48.5, 39, 1, 120 }, + [11] = { 49.2, 38.6, 1, 120 }, + [12] = { 49.6, 38.5, 1, 120 }, + [13] = { 50.2, 38.1, 1, 120 }, + [14] = { 48.2, 38, 1, 120 }, + [15] = { 48.9, 38, 1, 120 }, + [16] = { 44.6, 18.7, 14, 120 }, + [17] = { 45, 18.5, 14, 120 }, + [18] = { 44.4, 18, 14, 120 }, + [19] = { 45.1, 18, 14, 120 }, + [20] = { 44.6, 17.6, 14, 120 }, + [21] = { 43.9, 17.6, 14, 120 }, + [22] = { 45.3, 17.5, 14, 120 }, + [23] = { 45, 17.1, 14, 120 }, + [24] = { 44, 17, 14, 120 }, + [25] = { 44.6, 16.9, 14, 120 }, + [26] = { 44.8, 16.7, 14, 120 }, + [27] = { 44.7, 16.5, 14, 120 }, + [28] = { 44.4, 16.5, 14, 120 }, + [29] = { 45.1, 16.4, 14, 120 }, + [30] = { 45.3, 16.1, 14, 120 }, + [31] = { 44.4, 16.1, 14, 120 }, + [32] = { 45.6, 15.6, 14, 120 }, + [33] = { 37.9, 57.7, 141, 120 }, + [34] = { 38.4, 57.7, 141, 120 }, + [35] = { 38.1, 57.1, 141, 120 }, + [36] = { 38.7, 56.7, 141, 120 }, + [37] = { 37.8, 56.7, 141, 120 }, + [38] = { 37.4, 56.2, 141, 120 }, + [39] = { 39.2, 56.2, 141, 120 }, + [40] = { 38.1, 56.1, 141, 120 }, + [41] = { 38.4, 56.1, 141, 120 }, + [42] = { 36.5, 55.8, 141, 120 }, + [43] = { 37.1, 55.8, 141, 120 }, + [44] = { 36.8, 55.7, 141, 120 }, + [45] = { 37.8, 55.6, 141, 120 }, + [46] = { 36.8, 55.3, 141, 120 }, + [47] = { 37.1, 55.2, 141, 120 }, + [48] = { 39, 38.1, 215, 120 }, + [49] = { 38.3, 38.1, 215, 120 }, + [50] = { 39.4, 38.1, 215, 120 }, + [51] = { 39.1, 37.5, 215, 120 }, + [52] = { 40.3, 37.5, 215, 120 }, + [53] = { 38.8, 37.1, 215, 120 }, + [54] = { 38.1, 37.1, 215, 120 }, + [55] = { 39.4, 37.1, 215, 120 }, + [56] = { 38.8, 36.5, 215, 120 }, + [57] = { 39, 36.5, 215, 120 }, + [58] = { 38.1, 36.1, 215, 120 }, + [59] = { 38.4, 36, 215, 120 }, + [60] = { 38.7, 35.6, 215, 120 }, + [61] = { 38.1, 35.5, 215, 120 }, + [62] = { 39.7, 35.1, 215, 120 }, + [63] = { 99.6, 51.8, 1657, 120 }, + [64] = { 98.9, 46.7, 1657, 120 }, + [65] = { 97.3, 44.8, 1657, 120 }, + [66] = { 92.9, 42.5, 1657, 120 }, + [67] = { 95.8, 42.4, 1657, 120 }, + [68] = { 94.4, 42.1, 1657, 120 }, + [69] = { 99.2, 41.8, 1657, 120 }, + [70] = { 94, 40.2, 1657, 120 }, + [71] = { 95.8, 39.8, 1657, 120 }, + }, + ["lvl"] = "9-10", + }, + [16438] = { + ["coords"] = { + [1] = { 49, 40.6, 1, 120 }, + [2] = { 48.6, 40.1, 1, 120 }, + [3] = { 49.3, 40.1, 1, 120 }, + [4] = { 50, 40, 1, 120 }, + [5] = { 48.6, 39.6, 1, 120 }, + [6] = { 47.8, 39.6, 1, 120 }, + [7] = { 49.7, 39.6, 1, 120 }, + [8] = { 48.3, 39.5, 1, 120 }, + [9] = { 48.9, 39.5, 1, 120 }, + [10] = { 49.7, 39, 1, 120 }, + [11] = { 48.2, 39, 1, 120 }, + [12] = { 49.2, 38.9, 1, 120 }, + [13] = { 48.5, 38.6, 1, 120 }, + [14] = { 49, 38.6, 1, 120 }, + [15] = { 49.9, 38.5, 1, 120 }, + [16] = { 44.4, 18.6, 14, 120 }, + [17] = { 44.7, 18, 14, 120 }, + [18] = { 43.9, 18, 14, 120 }, + [19] = { 45.3, 17.9, 14, 120 }, + [20] = { 45, 17.6, 14, 120 }, + [21] = { 44.4, 17.5, 14, 120 }, + [22] = { 45.3, 17, 14, 120 }, + [23] = { 44.4, 17, 14, 120 }, + [24] = { 45.3, 16.6, 14, 120 }, + [25] = { 45, 16.6, 14, 120 }, + [26] = { 44, 16.6, 14, 120 }, + [27] = { 45.6, 16.5, 14, 120 }, + [28] = { 44.9, 16.4, 14, 120 }, + [29] = { 44.7, 16.1, 14, 120 }, + [30] = { 45.7, 16, 14, 120 }, + [31] = { 45.8, 16, 14, 120 }, + [32] = { 38.2, 57.7, 141, 120 }, + [33] = { 38.4, 57.2, 141, 120 }, + [34] = { 38.7, 57.2, 141, 120 }, + [35] = { 38.1, 56.7, 141, 120 }, + [36] = { 38.4, 56.7, 141, 120 }, + [37] = { 37.8, 56.3, 141, 120 }, + [38] = { 36.4, 56.2, 141, 120 }, + [39] = { 36.8, 56.1, 141, 120 }, + [40] = { 38.8, 56.1, 141, 120 }, + [41] = { 38.1, 55.7, 141, 120 }, + [42] = { 38.4, 55.7, 141, 120 }, + [43] = { 37.5, 55.2, 141, 120 }, + [44] = { 38.1, 55.2, 141, 120 }, + [45] = { 37.1, 54.8, 141, 120 }, + [46] = { 36.8, 54.8, 141, 120 }, + [47] = { 36.8, 54.7, 141, 120 }, + [48] = { 39.4, 38.5, 215, 120 }, + [49] = { 38.8, 38.5, 215, 120 }, + [50] = { 39, 38.5, 215, 120 }, + [51] = { 38.7, 38, 215, 120 }, + [52] = { 39.4, 37.5, 215, 120 }, + [53] = { 38.8, 37.5, 215, 120 }, + [54] = { 38.3, 37.4, 215, 120 }, + [55] = { 39, 37.2, 215, 120 }, + [56] = { 40.3, 37, 215, 120 }, + [57] = { 38.3, 37, 215, 120 }, + [58] = { 38.4, 36.6, 215, 120 }, + [59] = { 39.4, 36.5, 215, 120 }, + [60] = { 39, 36.2, 215, 120 }, + [61] = { 38.7, 36.1, 215, 120 }, + [62] = { 38.3, 35.4, 215, 120 }, + [63] = { 98.9, 45, 1657, 120 }, + [64] = { 92.5, 44.5, 1657, 120 }, + [65] = { 94.2, 44.2, 1657, 120 }, + [66] = { 97.5, 39.8, 1657, 120 }, + [67] = { 95.8, 37.9, 1657, 120 }, + [68] = { 94.1, 37.6, 1657, 120 }, + [69] = { 94.1, 37.1, 1657, 120 }, + }, + ["lvl"] = "9-10", + }, + [16440] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + ["rnk"] = "1", + }, + [16446] = { + ["coords"] = { + [1] = { 44.2, 85.3, 3456, 7200 }, + [2] = { 44, 84.9, 3456, 7200 }, + [3] = { 74.6, 62.2, 3456, 7200 }, + [4] = { 74.8, 61.9, 3456, 7200 }, + [5] = { 76.7, 32.7, 3456, 7200 }, + [6] = { 77, 32.4, 3456, 7200 }, + [7] = { 75.8, 29, 3456, 7200 }, + [8] = { 75.5, 28.7, 3456, 7200 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16447] = { + ["coords"] = { + [1] = { 48.3, 85.6, 3456, 7200 }, + [2] = { 37.8, 85.6, 3456, 7200 }, + [3] = { 57.9, 85.6, 3456, 7200 }, + [4] = { 68.4, 85.6, 3456, 7200 }, + [5] = { 48.1, 85.6, 3456, 7200 }, + [6] = { 37.6, 85.5, 3456, 7200 }, + [7] = { 57.7, 85.5, 3456, 7200 }, + [8] = { 68.2, 85.5, 3456, 7200 }, + [9] = { 48.4, 85.4, 3456, 7200 }, + [10] = { 37.8, 85.4, 3456, 7200 }, + [11] = { 57.9, 85.4, 3456, 7200 }, + [12] = { 48.2, 85.3, 3456, 7200 }, + [13] = { 68.5, 85.3, 3456, 7200 }, + [14] = { 37.6, 85.3, 3456, 7200 }, + [15] = { 57.7, 85.3, 3456, 7200 }, + [16] = { 68.3, 85.3, 3456, 7200 }, + [17] = { 67.2, 83.8, 3456, 7200 }, + [18] = { 39.2, 83.7, 3456, 7200 }, + [19] = { 67.2, 83.2, 3456, 7200 }, + [20] = { 39.2, 83.1, 3456, 7200 }, + [21] = { 36.7, 82.4, 3456, 7200 }, + [22] = { 69.5, 82.2, 3456, 7200 }, + [23] = { 69.2, 81.9, 3456, 7200 }, + [24] = { 37.1, 81.9, 3456, 7200 }, + [25] = { 48.2, 81.8, 3456, 7200 }, + [26] = { 37.6, 81.7, 3456, 7200 }, + [27] = { 57.7, 81.7, 3456, 7200 }, + [28] = { 68.3, 81.7, 3456, 7200 }, + [29] = { 48.2, 81.6, 3456, 7200 }, + [30] = { 37.6, 81.6, 3456, 7200 }, + [31] = { 57.7, 81.6, 3456, 7200 }, + [32] = { 48.4, 81.5, 3456, 7200 }, + [33] = { 37.8, 81.5, 3456, 7200 }, + [34] = { 68.3, 81.5, 3456, 7200 }, + [35] = { 58, 81.5, 3456, 7200 }, + [36] = { 68.5, 81.5, 3456, 7200 }, + [37] = { 48.4, 81.3, 3456, 7200 }, + [38] = { 37.8, 81.3, 3456, 7200 }, + [39] = { 58, 81.3, 3456, 7200 }, + [40] = { 68.5, 81.2, 3456, 7200 }, + [41] = { 30.6, 74.7, 3456, 7200 }, + [42] = { 75.7, 74.7, 3456, 7200 }, + [43] = { 30.4, 74.7, 3456, 7200 }, + [44] = { 75.4, 74.6, 3456, 7200 }, + [45] = { 30.6, 74.5, 3456, 7200 }, + [46] = { 75.7, 74.5, 3456, 7200 }, + [47] = { 31.6, 74.4, 3456, 7200 }, + [48] = { 30.4, 74.4, 3456, 7200 }, + [49] = { 75.5, 74.4, 3456, 7200 }, + [50] = { 32, 74.2, 3456, 7200 }, + [51] = { 75, 74.2, 3456, 7200 }, + [52] = { 74.7, 73.7, 3456, 7200 }, + [53] = { 30.4, 70.9, 3456, 7200 }, + [54] = { 75.5, 70.8, 3456, 7200 }, + [55] = { 30.4, 70.7, 3456, 7200 }, + [56] = { 75.5, 70.7, 3456, 7200 }, + [57] = { 30.6, 70.6, 3456, 7200 }, + [58] = { 75.7, 70.6, 3456, 7200 }, + [59] = { 76, 70.6, 3456, 7200 }, + [60] = { 30.1, 70.5, 3456, 7200 }, + [61] = { 75.5, 70.5, 3456, 7200 }, + [62] = { 30.6, 70.4, 3456, 7200 }, + [63] = { 75.7, 70.4, 3456, 7200 }, + [64] = { 30.6, 70.2, 3456, 7200 }, + [65] = { 75.7, 59, 3456, 7200 }, + [66] = { 75.4, 58.9, 3456, 7200 }, + [67] = { 30.6, 58.8, 3456, 7200 }, + [68] = { 30.4, 58.7, 3456, 7200 }, + [69] = { 75.7, 58.7, 3456, 7200 }, + [70] = { 75.5, 58.7, 3456, 7200 }, + [71] = { 30.6, 58.6, 3456, 7200 }, + [72] = { 30.4, 58.5, 3456, 7200 }, + [73] = { 75.5, 55.1, 3456, 7200 }, + [74] = { 30.4, 54.9, 3456, 7200 }, + [75] = { 75.5, 54.9, 3456, 7200 }, + [76] = { 75.7, 54.9, 3456, 7200 }, + [77] = { 30.4, 54.8, 3456, 7200 }, + [78] = { 30.7, 54.7, 3456, 7200 }, + [79] = { 75.7, 54.6, 3456, 7200 }, + [80] = { 30.7, 54.5, 3456, 7200 }, + [81] = { 30.6, 44.2, 3456, 7200 }, + [82] = { 30.4, 44.1, 3456, 7200 }, + [83] = { 30.6, 43.9, 3456, 7200 }, + [84] = { 30.4, 43.9, 3456, 7200 }, + [85] = { 74.1, 42.3, 3456, 7200 }, + [86] = { 77.1, 42.2, 3456, 7200 }, + [87] = { 74.1, 41.9, 3456, 7200 }, + [88] = { 74.4, 41.9, 3456, 7200 }, + [89] = { 76.8, 41.7, 3456, 7200 }, + [90] = { 77.1, 41.7, 3456, 7200 }, + [91] = { 77.3, 41.7, 3456, 7200 }, + [92] = { 30.4, 40.3, 3456, 7200 }, + [93] = { 30.4, 40.1, 3456, 7200 }, + [94] = { 30.6, 40.1, 3456, 7200 }, + [95] = { 30.6, 39.8, 3456, 7200 }, + [96] = { 30.8, 28.4, 3456, 7200 }, + [97] = { 75.5, 28.4, 3456, 7200 }, + [98] = { 75.8, 28.4, 3456, 7200 }, + [99] = { 30.6, 28.3, 3456, 7200 }, + [100] = { 30.7, 28.3, 3456, 7200 }, + [101] = { 31, 28.3, 3456, 7200 }, + [102] = { 30.8, 28.2, 3456, 7200 }, + [103] = { 30.7, 28.1, 3456, 7200 }, + [104] = { 74.4, 25.9, 3456, 7200 }, + [105] = { 74.7, 25.5, 3456, 7200 }, + [106] = { 74.5, 25.4, 3456, 7200 }, + [107] = { 74.7, 25.1, 3456, 7200 }, + [108] = { 31.9, 25, 3456, 7200 }, + [109] = { 76.9, 24.9, 3456, 7200 }, + [110] = { 76.4, 24.8, 3456, 7200 }, + [111] = { 74.9, 24.7, 3456, 7200 }, + [112] = { 31.6, 24.7, 3456, 7200 }, + [113] = { 30.6, 24.5, 3456, 7200 }, + [114] = { 76.6, 24.5, 3456, 7200 }, + [115] = { 30.6, 24.4, 3456, 7200 }, + [116] = { 30.9, 24.3, 3456, 7200 }, + [117] = { 76.8, 24.3, 3456, 7200 }, + [118] = { 30.9, 24.1, 3456, 7200 }, + [119] = { 58.1, 17.6, 3456, 7200 }, + [120] = { 48.3, 17.6, 3456, 7200 }, + [121] = { 37.8, 17.6, 3456, 7200 }, + [122] = { 58.4, 17.5, 3456, 7200 }, + [123] = { 48.1, 17.5, 3456, 7200 }, + [124] = { 37.6, 17.5, 3456, 7200 }, + [125] = { 48.4, 17.3, 3456, 7200 }, + [126] = { 58.1, 17.3, 3456, 7200 }, + [127] = { 37.8, 17.3, 3456, 7200 }, + [128] = { 48.2, 17.3, 3456, 7200 }, + [129] = { 58.4, 17.3, 3456, 7200 }, + [130] = { 37.6, 17.3, 3456, 7200 }, + [131] = { 37, 17.1, 3456, 7200 }, + [132] = { 69.3, 17.1, 3456, 7200 }, + [133] = { 69.6, 16.8, 3456, 7200 }, + [134] = { 36.8, 16.8, 3456, 7200 }, + [135] = { 67.2, 16, 3456, 7200 }, + [136] = { 39.1, 15.5, 3456, 7200 }, + [137] = { 67.2, 15.2, 3456, 7200 }, + [138] = { 39.1, 14.9, 3456, 7200 }, + [139] = { 69.2, 13.9, 3456, 7200 }, + [140] = { 69, 13.7, 3456, 7200 }, + [141] = { 48.2, 13.7, 3456, 7200 }, + [142] = { 37.6, 13.7, 3456, 7200 }, + [143] = { 69.3, 13.6, 3456, 7200 }, + [144] = { 48.2, 13.5, 3456, 7200 }, + [145] = { 37.6, 13.5, 3456, 7200 }, + [146] = { 48.4, 13.5, 3456, 7200 }, + [147] = { 69.1, 13.5, 3456, 7200 }, + [148] = { 37.8, 13.5, 3456, 7200 }, + [149] = { 48.4, 13.2, 3456, 7200 }, + [150] = { 37.8, 13.2, 3456, 7200 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16448] = { + ["coords"] = { + [1] = { 66.7, 84.1, 3456, 7200 }, + [2] = { 39.5, 84, 3456, 7200 }, + [3] = { 67.5, 83.4, 3456, 7200 }, + [4] = { 38.8, 83.4, 3456, 7200 }, + [5] = { 66.8, 83, 3456, 7200 }, + [6] = { 39.5, 82.8, 3456, 7200 }, + [7] = { 37.1, 82.4, 3456, 7200 }, + [8] = { 69.2, 82.4, 3456, 7200 }, + [9] = { 36.3, 82.3, 3456, 7200 }, + [10] = { 69.9, 82, 3456, 7200 }, + [11] = { 36.9, 81.2, 3456, 7200 }, + [12] = { 69.4, 81.1, 3456, 7200 }, + [13] = { 31.5, 75.1, 3456, 7200 }, + [14] = { 74.8, 74.8, 3456, 7200 }, + [15] = { 32.3, 74.1, 3456, 7200 }, + [16] = { 74.3, 73.9, 3456, 7200 }, + [17] = { 31.5, 73.9, 3456, 7200 }, + [18] = { 75, 73.7, 3456, 7200 }, + [19] = { 75.7, 71, 3456, 7200 }, + [20] = { 30.7, 70.7, 3456, 7200 }, + [21] = { 76.2, 70, 3456, 7200 }, + [22] = { 75.4, 69.9, 3456, 7200 }, + [23] = { 30.9, 69.8, 3456, 7200 }, + [24] = { 30.3, 69.8, 3456, 7200 }, + [25] = { 31.2, 28.8, 3456, 7200 }, + [26] = { 30.4, 28.8, 3456, 7200 }, + [27] = { 75.3, 28.7, 3456, 7200 }, + [28] = { 76, 28.7, 3456, 7200 }, + [29] = { 75.7, 28.1, 3456, 7200 }, + [30] = { 30.8, 27.7, 3456, 7200 }, + [31] = { 75, 25.2, 3456, 7200 }, + [32] = { 31.6, 25.1, 3456, 7200 }, + [33] = { 74.2, 24.9, 3456, 7200 }, + [34] = { 32.2, 24.8, 3456, 7200 }, + [35] = { 74.8, 24.1, 3456, 7200 }, + [36] = { 31.7, 24.1, 3456, 7200 }, + [37] = { 69.3, 17.8, 3456, 7200 }, + [38] = { 37, 17.8, 3456, 7200 }, + [39] = { 70.1, 16.9, 3456, 7200 }, + [40] = { 36.4, 16.8, 3456, 7200 }, + [41] = { 69.3, 16.6, 3456, 7200 }, + [42] = { 37.1, 16.5, 3456, 7200 }, + [43] = { 66.9, 16.2, 3456, 7200 }, + [44] = { 39.4, 15.9, 3456, 7200 }, + [45] = { 67.5, 15.6, 3456, 7200 }, + [46] = { 38.9, 15.4, 3456, 7200 }, + [47] = { 66.8, 15, 3456, 7200 }, + [48] = { 39.4, 14.7, 3456, 7200 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16449] = { + ["coords"] = { + [1] = { 48.4, 83.5, 3456, 7200 }, + [2] = { 37.8, 83.5, 3456, 7200 }, + [3] = { 57.9, 83.5, 3456, 7200 }, + [4] = { 68.5, 83.4, 3456, 7200 }, + [5] = { 30.6, 72.6, 3456, 7200 }, + [6] = { 75.7, 72.6, 3456, 7200 }, + [7] = { 30.6, 56.7, 3456, 7200 }, + [8] = { 75.7, 42.1, 3456, 7200 }, + [9] = { 30.6, 42, 3456, 7200 }, + [10] = { 75.7, 26.3, 3456, 7200 }, + [11] = { 30.8, 26.3, 3456, 7200 }, + [12] = { 48.4, 15.4, 3456, 7200 }, + [13] = { 68.5, 15.4, 3456, 7200 }, + [14] = { 58, 15.4, 3456, 7200 }, + [15] = { 37.8, 15.4, 3456, 7200 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16450] = "_", + [16451] = { + ["coords"] = { + [1] = { 45.4, 83.5, 3456, 7200 }, + [2] = { 30.6, 61.2, 3456, 7200 }, + [3] = { 30.6, 30.8, 3456, 7200 }, + [4] = { 40.8, 15.5, 3456, 7200 }, + [5] = { 65.5, 15.4, 3456, 7200 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [16452] = { + ["coords"] = { + [1] = { 45.5, 83.6, 3456, 7200 }, + [2] = { 45.4, 83.2, 3456, 7200 }, + [3] = { 30.7, 61, 3456, 7200 }, + [4] = { 30.5, 61, 3456, 7200 }, + [5] = { 30.5, 30.8, 3456, 7200 }, + [6] = { 30.8, 30.7, 3456, 7200 }, + [7] = { 40.8, 15.7, 3456, 7200 }, + [8] = { 65.5, 15.7, 3456, 7200 }, + [9] = { 40.8, 15.2, 3456, 7200 }, + [10] = { 65.5, 15.2, 3456, 7200 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [16453] = { + ["coords"] = { + [1] = { 75.7, 41.1, 3456, 7200 }, + [2] = { 75.3, 40.9, 3456, 7200 }, + [3] = { 75.9, 33.1, 3456, 7200 }, + [4] = { 75.5, 33.1, 3456, 7200 }, + [5] = { 67.8, 29.5, 3456, 7200 }, + [6] = { 68.2, 29.3, 3456, 7200 }, + [7] = { 66.5, 28.9, 3456, 7200 }, + [8] = { 66.1, 28.6, 3456, 7200 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16454] = "_", + [16455] = "_", + [16456] = { + ["coords"] = { + [1] = { 56.4, 37.4, 5130, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [16457] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [16458] = { + ["coords"] = { + [1] = { 40.7, 17.7, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [16478] = { + ["coords"] = { + [1] = { 69, 82.8, 1519, 120 }, + }, + ["lvl"] = "10", + }, + [16536] = "_", + [16547] = { + ["coords"] = { + [1] = { 54.7, 0.7, 17, 120 }, + [2] = { 80.1, 80.8, 331, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [16549] = { + ["coords"] = { + [1] = { 77.4, 53.8, 1519, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [16592] = { + ["coords"] = { + [1] = { 56.6, 92.3, 141, 300 }, + [2] = { 54.9, 60.5, 141, 300 }, + [3] = { 64.6, 24.8, 1537, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [16604] = "_", + [16606] = { + ["coords"] = { + [1] = { 54.1, 31.4, 4, 120 }, + [2] = { 51.2, 17.1, 11, 120 }, + [3] = { 41.5, 43.2, 16, 120 }, + [4] = { 59.8, 39.3, 17, 120 }, + [5] = { 52, 97.6, 36, 120 }, + [6] = { 34, 80.4, 40, 120 }, + [7] = { 62.1, 53.4, 47, 120 }, + [8] = { 32.9, 73.1, 51, 120 }, + [9] = { 54.2, 69.8, 130, 120 }, + [10] = { 57.5, 72.7, 139, 120 }, + [11] = { 56.7, 92.3, 141, 120 }, + [12] = { 41.5, 90.7, 148, 120 }, + [13] = { 34.1, 22.3, 215, 120 }, + [14] = { 54.4, 33.8, 267, 120 }, + [15] = { 64.8, 71.7, 331, 120 }, + [16] = { 87.6, 49.6, 405, 120 }, + [17] = { 60, 71.9, 406, 120 }, + [18] = { 70.3, 75.9, 490, 120 }, + [19] = { 19.3, 17.4, 490, 120 }, + [20] = { 30.7, 43.1, 618, 120 }, + [21] = { 78, 18.8, 1377, 120 }, + [22] = { 66, 36.8, 1497, 120 }, + [23] = { 49.7, 72.2, 1519, 120 }, + [24] = { 64.6, 24.8, 1537, 120 }, + [25] = { 42.1, 34.2, 1637, 120 }, + [26] = { 21, 26.7, 1638, 120 }, + [27] = { 11.4, 55.2, 4012, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [16609] = "_", + [16781] = { + ["coords"] = { + [1] = { 54, 31.8, 4, 120 }, + [2] = { 54.3, 31.5, 4, 120 }, + [3] = { 54.3, 31.4, 4, 120 }, + [4] = { 51.4, 17.4, 11, 120 }, + [5] = { 51.4, 17.3, 11, 120 }, + [6] = { 41.3, 43.3, 16, 120 }, + [7] = { 41.6, 43.1, 16, 120 }, + [8] = { 41.5, 43, 16, 120 }, + [9] = { 59.8, 39.4, 17, 120 }, + [10] = { 52.3, 97.6, 36, 120 }, + [11] = { 52.2, 97.4, 36, 120 }, + [12] = { 34, 80.7, 40, 120 }, + [13] = { 34.1, 80.6, 40, 120 }, + [14] = { 34.2, 80.3, 40, 120 }, + [15] = { 61.9, 53.2, 47, 120 }, + [16] = { 61.9, 53.1, 47, 120 }, + [17] = { 32.6, 73.3, 51, 120 }, + [18] = { 33, 72.6, 51, 120 }, + [19] = { 32.8, 72.6, 51, 120 }, + [20] = { 54.3, 69.8, 130, 120 }, + [21] = { 54.3, 69.7, 130, 120 }, + [22] = { 54.5, 69.4, 130, 120 }, + [23] = { 57.5, 73, 139, 120 }, + [24] = { 57.4, 72.9, 139, 120 }, + [25] = { 57.5, 72.4, 139, 120 }, + [26] = { 57.6, 72.3, 139, 120 }, + [27] = { 41.6, 90.7, 148, 120 }, + [28] = { 41.4, 90.7, 148, 120 }, + [29] = { 41.6, 90.6, 148, 120 }, + [30] = { 54.6, 33.8, 267, 120 }, + [31] = { 54.5, 33.6, 267, 120 }, + [32] = { 64.7, 71.5, 331, 120 }, + [33] = { 64.8, 71.5, 331, 120 }, + [34] = { 64.7, 71.3, 331, 120 }, + [35] = { 60, 72.1, 406, 120 }, + [36] = { 60.1, 72, 406, 120 }, + [37] = { 59.9, 72, 406, 120 }, + [38] = { 59.9, 71.9, 406, 120 }, + [39] = { 70.1, 76, 490, 120 }, + [40] = { 70.1, 75.9, 490, 120 }, + [41] = { 19.4, 17.4, 490, 120 }, + [42] = { 19.5, 17.3, 490, 120 }, + [43] = { 30.8, 43.1, 618, 120 }, + [44] = { 30.8, 43, 618, 120 }, + [45] = { 78.2, 18.8, 1377, 120 }, + [46] = { 11.4, 55.5, 4012, 120 }, + [47] = { 11.3, 55.4, 4012, 120 }, + [48] = { 11.5, 54.8, 4012, 120 }, + [49] = { 11.6, 54.7, 4012, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-60", + }, + [16786] = { + ["coords"] = { + [1] = { 80.7, 59.9, 139, 120 }, + [2] = { 81, 59.7, 139, 120 }, + [3] = { 25.4, 56.7, 141, 120 }, + [4] = { 25.3, 56.4, 141, 120 }, + [5] = { 61.9, 72.6, 1519, 120 }, + [6] = { 62.1, 72.5, 1519, 120 }, + [7] = { 33.9, 67.8, 1537, 120 }, + [8] = { 29.6, 61.4, 1537, 120 }, + [9] = { 29.4, 60, 1537, 120 }, + [10] = { 39.5, 46.9, 1657, 120 }, + [11] = { 39.1, 45.4, 1657, 120 }, + [12] = { 39.9, 39.5, 4012, 120 }, + [13] = { 40.3, 39.3, 4012, 120 }, + }, + ["lvl"] = "55", + }, + [16787] = { + ["coords"] = { + [1] = { 80.8, 59.5, 139, 120 }, + [2] = { 38.4, 28.7, 215, 120 }, + [3] = { 38.6, 28.7, 215, 120 }, + [4] = { 65.5, 46.6, 1497, 120 }, + [5] = { 65, 45.6, 1497, 120 }, + [6] = { 52.1, 73.8, 1637, 120 }, + [7] = { 53.1, 73.5, 1637, 120 }, + [8] = { 42.1, 58.5, 1638, 120 }, + [9] = { 43.1, 58.3, 1638, 120 }, + [10] = { 40, 39.1, 4012, 120 }, + }, + ["lvl"] = "55", + }, + [16788] = { + ["coords"] = { + [1] = { 56.5, 92, 141, 120 }, + [2] = { 34.2, 22.1, 215, 120 }, + [3] = { 87.7, 49.4, 405, 120 }, + [4] = { 65.5, 36.3, 1497, 120 }, + [5] = { 49.5, 71.9, 1519, 120 }, + [6] = { 63.6, 24.7, 1537, 120 }, + [7] = { 42.6, 34.3, 1637, 120 }, + [8] = { 21.5, 25.9, 1638, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [16817] = { + ["coords"] = { + [1] = { 56.6, 92.3, 141, 120 }, + [2] = { 50, 72, 1519, 120 }, + [3] = { 63.8, 25.5, 1537, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [16861] = { + ["coords"] = { + [1] = { 40.8, 55, 3456, 7200 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [16889] = "_", + [16890] = "_", + [16891] = "_", + [16892] = "_", + [16893] = "_", + [16894] = "_", + [16895] = "_", + [16995] = { + ["coords"] = { + [1] = { 46.4, 9.1, 14, 120 }, + [2] = { 61.8, 67.4, 85, 120 }, + [3] = { 30.8, 55.3, 141, 120 }, + [4] = { 36.5, 30, 215, 120 }, + [5] = { 66.2, 11.3, 1497, 120 }, + [6] = { 66.3, 82.9, 1519, 120 }, + [7] = { 21.8, 77.6, 1537, 120 }, + [8] = { 52.4, 84, 1637, 120 }, + [9] = { 32.9, 64.7, 1638, 120 }, + [10] = { 65.4, 40.4, 1657, 120 }, + }, + ["lvl"] = "60", + }, + [16998] = { + ["coords"] = { + [1] = { 53.2, 49.4, 3456, 21600 }, + }, + ["lvl"] = "5", + }, + [16999] = "_", + [17031] = "_", + [17032] = "_", + [17038] = { + ["coords"] = { + [1] = { 49.7, 72.8, 1519, 120 }, + [2] = { 49.5, 72.7, 1519, 120 }, + [3] = { 49, 72.1, 1519, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "1-60", + }, + [17066] = { + ["coords"] = { + [1] = { 53.9, 32, 4, 120 }, + [2] = { 51, 17.3, 11, 120 }, + [3] = { 41.7, 42.7, 16, 120 }, + [4] = { 59.8, 39.1, 17, 120 }, + [5] = { 51.7, 97.2, 36, 120 }, + [6] = { 34.3, 80, 40, 120 }, + [7] = { 62.3, 53.1, 47, 120 }, + [8] = { 32.7, 73.9, 51, 120 }, + [9] = { 54.2, 69.2, 130, 120 }, + [10] = { 57.8, 72.6, 139, 120 }, + [11] = { 56.6, 91.5, 141, 120 }, + [12] = { 41.6, 90.8, 148, 120 }, + [13] = { 33.8, 22.3, 215, 120 }, + [14] = { 54.1, 33.5, 267, 120 }, + [15] = { 64.9, 71.1, 331, 120 }, + [16] = { 87.2, 49.6, 405, 120 }, + [17] = { 60.1, 72.1, 406, 120 }, + [18] = { 69.8, 75.3, 490, 120 }, + [19] = { 19.7, 17.4, 490, 120 }, + [20] = { 30.4, 43.3, 618, 120 }, + [21] = { 78.4, 18.8, 1377, 120 }, + [22] = { 67.2, 35.6, 1497, 120 }, + [23] = { 50.2, 72.8, 1519, 120 }, + [24] = { 66.2, 25.4, 1537, 120 }, + [25] = { 42.2, 32.6, 1637, 120 }, + [26] = { 19.7, 26.7, 1638, 120 }, + [27] = { 11.8, 55.1, 4012, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [17069] = { + ["coords"] = { + [1] = { 81.3, 59.4, 139, 345 }, + [2] = { 40.6, 38.9, 4012, 345 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [17072] = { + ["coords"] = { + [1] = { 80, 57.4, 139, 345 }, + [2] = { 39.1, 36.5, 4012, 345 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [17075] = "_", + [17078] = "_", + [17163] = "_", + [17231] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [17239] = "_", + [17249] = "_", + [17252] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [17254] = { + ["coords"] = { + [1] = { 29.3, 61.3, 876, 120 }, + }, + ["lvl"] = "1", + }, + [17258] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [17284] = "_", + [17293] = "_", + [17313] = "_", + [17415] = "_", + [17466] = "_", + [17685] = "_", + [17690] = { + ["coords"] = { + [1] = { 67.4, 48, 139, 518 }, + [2] = { 23.6, 24.9, 4012, 518 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [17698] = { + ["coords"] = { + [1] = { 22, 32, 139, 518 }, + [2] = { 65.9, 96, 5225, 518 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [17719] = "_", + [17720] = "_", + [17804] = { + ["coords"] = { + [1] = { 74.2, 90.3, 1519, 420 }, + }, + ["fac"] = "A", + ["lvl"] = "52", + }, + [17869] = "_", + [18078] = "_", + [18153] = "_", + [18199] = "_", + [18533] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [19000] = { + ["coords"] = { + [1] = { 61.9, 74.2, 1519, 120 }, + [2] = { 54.5, 70.3, 1637, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [19001] = { + ["coords"] = { + [1] = { 62, 74.2, 1519, 120 }, + [2] = { 54.4, 70.5, 1637, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [20115] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [20116] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [20120] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [20121] = { + ["coords"] = { + [1] = { 55.4, 35.2, 1, 43200 }, + [2] = { 24.9, 62.1, 141, 43200 }, + [3] = { 25, 62, 141, 43200 }, + [4] = { 33.9, 55.4, 141, 43200 }, + [5] = { 26.1, 55.2, 141, 43200 }, + [6] = { 32.1, 55.1, 141, 43200 }, + [7] = { 26.1, 55.1, 141, 43200 }, + [8] = { 32.2, 55.1, 141, 43200 }, + [9] = { 28.8, 54.4, 141, 43200 }, + [10] = { 28.9, 54.4, 141, 43200 }, + [11] = { 67.9, 76.1, 1519, 43200 }, + [12] = { 67.8, 75.8, 1519, 43200 }, + [13] = { 65.4, 74, 1519, 43200 }, + [14] = { 65.2, 73.8, 1519, 43200 }, + [15] = { 61.6, 72.9, 1519, 43200 }, + [16] = { 61.7, 72.8, 1519, 43200 }, + [17] = { 68.2, 49.5, 1519, 43200 }, + [18] = { 66.1, 35.9, 1519, 43200 }, + [19] = { 65.9, 35.7, 1519, 43200 }, + [20] = { 69.3, 88.7, 1537, 43200 }, + [21] = { 69.9, 88.1, 1537, 43200 }, + [22] = { 27.5, 88, 1537, 43200 }, + [23] = { 27, 87.9, 1537, 43200 }, + [24] = { 59, 81.8, 1537, 43200 }, + [25] = { 17.5, 65.8, 1537, 43200 }, + [26] = { 17, 65.8, 1537, 43200 }, + [27] = { 57.6, 51.2, 1537, 43200 }, + [28] = { 57.9, 50.7, 1537, 43200 }, + [29] = { 34.3, 21.6, 1537, 43200 }, + [30] = { 34.4, 21.1, 1537, 43200 }, + [31] = { 37.2, 72.8, 1657, 43200 }, + [32] = { 37.4, 72.4, 1657, 43200 }, + [33] = { 80.2, 40.7, 1657, 43200 }, + [34] = { 42.9, 39.5, 1657, 43200 }, + [35] = { 71.7, 39.3, 1657, 43200 }, + [36] = { 42.6, 39.1, 1657, 43200 }, + [37] = { 72.1, 39, 1657, 43200 }, + [38] = { 55.6, 36.1, 1657, 43200 }, + [39] = { 56, 36, 1657, 43200 }, + [40] = { 51.9, 96.7, 5581, 43200 }, + [41] = { 51.8, 96.5, 5581, 43200 }, + [42] = { 60.8, 95.6, 5581, 43200 }, + [43] = { 60.8, 95.5, 5581, 43200 }, + }, + ["lvl"] = "30", + }, + [20122] = { + ["coords"] = { + [1] = { 74.6, 14.8, 130, 43200 }, + [2] = { 74.8, 14.7, 130, 43200 }, + [3] = { 74.8, 12, 130, 43200 }, + [4] = { 74.5, 11.9, 130, 43200 }, + [5] = { 41.4, 33.1, 215, 43200 }, + [6] = { 41.5, 32.9, 215, 43200 }, + [7] = { 38.8, 28.5, 215, 43200 }, + [8] = { 38.7, 28.4, 215, 43200 }, + [9] = { 44.2, 22.4, 215, 43200 }, + [10] = { 44.3, 22.2, 215, 43200 }, + [11] = { 35.1, 20.8, 215, 43200 }, + [12] = { 35.2, 20.7, 215, 43200 }, + [13] = { 88.8, 48, 405, 43200 }, + [14] = { 88.8, 47.8, 405, 43200 }, + [15] = { 58.1, 97.7, 1497, 43200 }, + [16] = { 59, 97.4, 1497, 43200 }, + [17] = { 58.7, 85.3, 1497, 43200 }, + [18] = { 57.8, 85.1, 1497, 43200 }, + [19] = { 69.9, 44.8, 1497, 43200 }, + [20] = { 62.1, 44.7, 1497, 43200 }, + [21] = { 69.9, 43.6, 1497, 43200 }, + [22] = { 62.1, 43.4, 1497, 43200 }, + [23] = { 50.3, 66.5, 1637, 43200 }, + [24] = { 50, 66, 1637, 43200 }, + [25] = { 47.1, 65.2, 1637, 43200 }, + [26] = { 47.5, 64.7, 1637, 43200 }, + [27] = { 73.3, 35.6, 1637, 43200 }, + [28] = { 73, 35.6, 1637, 43200 }, + [29] = { 57, 79.9, 1638, 43200 }, + [30] = { 57.4, 79.2, 1638, 43200 }, + [31] = { 44.3, 57.2, 1638, 43200 }, + [32] = { 43.9, 56.8, 1638, 43200 }, + [33] = { 70.8, 27.4, 1638, 43200 }, + [34] = { 71.3, 26.5, 1638, 43200 }, + [35] = { 26.3, 19.7, 1638, 43200 }, + [36] = { 26.5, 18.7, 1638, 43200 }, + }, + ["lvl"] = "30", + }, + [20123] = { + ["coords"] = { + [1] = { 55.4, 35.2, 1, 43200 }, + [2] = { 74.6, 14.8, 130, 43200 }, + [3] = { 74.8, 14.7, 130, 43200 }, + [4] = { 74.8, 12, 130, 43200 }, + [5] = { 74.5, 11.9, 130, 43200 }, + [6] = { 24.9, 62.1, 141, 43200 }, + [7] = { 25, 62, 141, 43200 }, + [8] = { 33.9, 55.4, 141, 43200 }, + [9] = { 26.1, 55.2, 141, 43200 }, + [10] = { 32.1, 55.1, 141, 43200 }, + [11] = { 26.1, 55.1, 141, 43200 }, + [12] = { 32.2, 55.1, 141, 43200 }, + [13] = { 28.8, 54.4, 141, 43200 }, + [14] = { 28.9, 54.4, 141, 43200 }, + [15] = { 41.4, 33.1, 215, 43200 }, + [16] = { 41.5, 32.9, 215, 43200 }, + [17] = { 38.8, 28.5, 215, 43200 }, + [18] = { 38.7, 28.4, 215, 43200 }, + [19] = { 44.2, 22.4, 215, 43200 }, + [20] = { 44.3, 22.2, 215, 43200 }, + [21] = { 35.1, 20.8, 215, 43200 }, + [22] = { 35.2, 20.7, 215, 43200 }, + [23] = { 88.8, 48, 405, 43200 }, + [24] = { 88.8, 47.8, 405, 43200 }, + [25] = { 55.1, 53.1, 876, 120 }, + [26] = { 58.1, 97.7, 1497, 43200 }, + [27] = { 59, 97.4, 1497, 43200 }, + [28] = { 58.7, 85.3, 1497, 43200 }, + [29] = { 57.8, 85.1, 1497, 43200 }, + [30] = { 69.9, 44.8, 1497, 43200 }, + [31] = { 62.1, 44.7, 1497, 43200 }, + [32] = { 69.9, 43.6, 1497, 43200 }, + [33] = { 62.1, 43.4, 1497, 43200 }, + [34] = { 67.9, 76.1, 1519, 43200 }, + [35] = { 67.8, 75.8, 1519, 43200 }, + [36] = { 65.4, 74, 1519, 43200 }, + [37] = { 65.2, 73.8, 1519, 43200 }, + [38] = { 61.6, 72.9, 1519, 43200 }, + [39] = { 61.7, 72.8, 1519, 43200 }, + [40] = { 68.2, 49.5, 1519, 43200 }, + [41] = { 66.1, 35.9, 1519, 43200 }, + [42] = { 65.9, 35.7, 1519, 43200 }, + [43] = { 69.3, 88.7, 1537, 43200 }, + [44] = { 69.9, 88.1, 1537, 43200 }, + [45] = { 27.5, 88, 1537, 43200 }, + [46] = { 27, 87.9, 1537, 43200 }, + [47] = { 59, 81.8, 1537, 43200 }, + [48] = { 17.5, 65.8, 1537, 43200 }, + [49] = { 17, 65.8, 1537, 43200 }, + [50] = { 57.6, 51.2, 1537, 43200 }, + [51] = { 57.9, 50.7, 1537, 43200 }, + [52] = { 34.3, 21.6, 1537, 43200 }, + [53] = { 34.4, 21.1, 1537, 43200 }, + [54] = { 50.3, 66.5, 1637, 43200 }, + [55] = { 50, 66, 1637, 43200 }, + [56] = { 47.1, 65.2, 1637, 43200 }, + [57] = { 47.5, 64.7, 1637, 43200 }, + [58] = { 73.3, 35.6, 1637, 43200 }, + [59] = { 73, 35.6, 1637, 43200 }, + [60] = { 57, 79.9, 1638, 43200 }, + [61] = { 57.4, 79.2, 1638, 43200 }, + [62] = { 44.3, 57.2, 1638, 43200 }, + [63] = { 43.9, 56.8, 1638, 43200 }, + [64] = { 70.8, 27.4, 1638, 43200 }, + [65] = { 71.3, 26.5, 1638, 43200 }, + [66] = { 26.3, 19.7, 1638, 43200 }, + [67] = { 26.5, 18.7, 1638, 43200 }, + [68] = { 37.2, 72.8, 1657, 43200 }, + [69] = { 37.4, 72.4, 1657, 43200 }, + [70] = { 80.2, 40.7, 1657, 43200 }, + [71] = { 42.9, 39.5, 1657, 43200 }, + [72] = { 71.7, 39.3, 1657, 43200 }, + [73] = { 42.6, 39.1, 1657, 43200 }, + [74] = { 72.1, 39, 1657, 43200 }, + [75] = { 55.6, 36.1, 1657, 43200 }, + [76] = { 56, 36, 1657, 43200 }, + [77] = { 51.9, 96.7, 5581, 43200 }, + [78] = { 51.8, 96.5, 5581, 43200 }, + [79] = { 60.8, 95.6, 5581, 43200 }, + [80] = { 60.8, 95.5, 5581, 43200 }, + }, + ["lvl"] = "30", + }, + [20124] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [20125] = { + ["coords"] = { + [1] = { 47.3, 50.4, 1, 1200 }, + [2] = { 42, 68.4, 12, 1200 }, + [3] = { 49.8, 45.3, 14, 1200 }, + [4] = { 61, 54.4, 85, 1200 }, + [5] = { 56.6, 58.1, 141, 1200 }, + [6] = { 48.7, 55.5, 215, 1200 }, + }, + ["lvl"] = "10", + ["rnk"] = "4", + }, + [20200] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "60", + }, + [21001] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [21002] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [22000] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "30", + }, + [22001] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "30", + }, + [22200] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [22201] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [22202] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [22203] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [22204] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [22205] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [22206] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [22207] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [22208] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [22209] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [22210] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [22211] = { + ["coords"] = { + [1] = { 56.4, 27.9, 5130, 280 }, + [2] = { 84.9, 74.2, 5208, 18000 }, + [3] = { 84.9, 74.1, 5208, 18000 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [22212] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [22213] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [22214] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [22215] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [22216] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [22217] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [22218] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [22220] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "29", + }, + [23000] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23001] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23002] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23003] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23004] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23005] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23006] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23007] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23008] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23009] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23010] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23011] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23012] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23013] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23014] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23015] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23016] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23017] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23018] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23019] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23020] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23021] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23022] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23023] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23024] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23025] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23026] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23050] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23051] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23052] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23053] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23054] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23055] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23056] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23057] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23058] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23059] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23060] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23061] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23062] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23063] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23064] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23065] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23066] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23067] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23068] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23069] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23070] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23071] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23072] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23073] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23074] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23075] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23076] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23077] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23078] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23079] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23080] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23081] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23082] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23083] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23084] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23085] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23086] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23087] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23088] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23089] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23090] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23091] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23092] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23093] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23094] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23095] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23096] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23097] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23098] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23099] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23100] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23101] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23102] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23103] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23104] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23105] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23106] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23107] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23108] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23109] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23110] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23111] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23112] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23113] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23114] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23115] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23116] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23117] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23118] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23119] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23120] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23121] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23122] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [23123] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [29000] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "40", + }, + [29001] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [29002] = { + ["coords"] = { + [1] = { 42.5, 15.7, 2597, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [29477] = { + ["coords"] = {}, + ["lvl"] = "58", + ["rnk"] = "1", + }, + [29478] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [30000] = { + ["coords"] = {}, + ["lvl"] = "57-59", + }, + [30001] = { + ["coords"] = {}, + ["lvl"] = "57-59", + }, + [30002] = { + ["coords"] = {}, + ["lvl"] = "57-59", + }, + [30003] = { + ["coords"] = {}, + ["lvl"] = "57-59", + }, + [30004] = { + ["coords"] = {}, + ["lvl"] = "57-59", + }, + [30005] = { + ["coords"] = {}, + ["lvl"] = "57-59", + }, + [30008] = { + ["coords"] = {}, + ["lvl"] = "63", + }, + [30040] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [33000] = { + ["coords"] = { + [1] = { 35.5, 55, 5581, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [33001] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [33002] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [33003] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [33004] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [33005] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [33006] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [33007] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [33008] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [33009] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [33010] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [33011] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [33012] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [33013] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [33014] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [33015] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [33016] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [33017] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [33018] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [33019] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [33020] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [33021] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [33022] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [33023] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [33024] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [33025] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [33026] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [36500] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [36501] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [36502] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [36503] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [36504] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [36505] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [36506] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [36507] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [36508] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [36509] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [36510] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [36511] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [36512] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [36513] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [36514] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [36515] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [36516] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [36518] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [37000] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [37001] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [37002] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [37003] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [37004] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [37005] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [37006] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [37007] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [37008] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [37009] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [37010] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [37011] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [37012] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [37013] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [37014] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [39998] = { + ["coords"] = { + [1] = { 41.2, 51, 2597, 900 }, + [2] = { 44.9, 38, 2597, 900 }, + }, + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [39999] = { + ["coords"] = { + [1] = { 38.3, 44.6, 2597, 1800 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [40000] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [40001] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [40002] = { + ["coords"] = { + [1] = { 21.1, 54.6, 331, 300 }, + [2] = { 21.7, 54.4, 331, 300 }, + [3] = { 22.2, 54.4, 331, 300 }, + [4] = { 21.1, 54.1, 331, 300 }, + [5] = { 22.4, 53.4, 331, 300 }, + [6] = { 20.7, 53.2, 331, 300 }, + [7] = { 23.3, 52.9, 331, 300 }, + [8] = { 23.5, 52.9, 331, 300 }, + [9] = { 21.1, 52.7, 331, 300 }, + [10] = { 22.3, 52.4, 331, 300 }, + [11] = { 22.8, 52.2, 331, 300 }, + [12] = { 21.5, 51.5, 331, 300 }, + [13] = { 57.6, 21.6, 406, 300 }, + [14] = { 58.2, 21.4, 406, 300 }, + [15] = { 58.7, 21.4, 406, 300 }, + [16] = { 57.6, 21.1, 406, 300 }, + [17] = { 58.8, 20.4, 406, 300 }, + [18] = { 57.2, 20.3, 406, 300 }, + [19] = { 59.7, 20, 406, 300 }, + [20] = { 59.8, 19.9, 406, 300 }, + [21] = { 57.6, 19.8, 406, 300 }, + [22] = { 58.7, 19.5, 406, 300 }, + [23] = { 59.2, 19.3, 406, 300 }, + [24] = { 58, 18.7, 406, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [40003] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [40004] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [40005] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [40006] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [40007] = { + ["coords"] = { + [1] = { 23.9, 13.2, 406, 462 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [40008] = { + ["coords"] = { + [1] = { 82.2, 62.7, 38, 300 }, + [2] = { 40.6, 76.4, 5602, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [40009] = { + ["coords"] = { + [1] = { 78.2, 80.4, 47, 100 }, + [2] = { 24.9, 13, 406, 100 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [40010] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [40011] = { + ["coords"] = { + [1] = { 24.1, 13, 406, 386 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [40012] = { + ["coords"] = { + [1] = { 82.2, 63.8, 38, 100 }, + [2] = { 26.8, 70.4, 2040, 100 }, + [3] = { 41.1, 70, 2040, 100 }, + [4] = { 40.7, 68.4, 2040, 100 }, + [5] = { 40.8, 68.3, 2040, 100 }, + [6] = { 41.5, 68.1, 2040, 300 }, + [7] = { 26.1, 67.1, 2040, 100 }, + [8] = { 50.5, 35.5, 5225, 100 }, + [9] = { 57.3, 35.3, 5225, 100 }, + [10] = { 57.2, 34.6, 5225, 100 }, + [11] = { 57.2, 34.5, 5225, 100 }, + [12] = { 57.5, 34.4, 5225, 300 }, + [13] = { 50.2, 33.9, 5225, 100 }, + [14] = { 40.6, 76.9, 5602, 100 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [40013] = { + ["coords"] = { + [1] = { 15.6, 98.3, 2040, 300 }, + [2] = { 29.5, 94.2, 2040, 300 }, + [3] = { 26.6, 91.9, 2040, 300 }, + [4] = { 33.3, 89.9, 2040, 300 }, + [5] = { 36.5, 87.9, 2040, 300 }, + [6] = { 28, 87.8, 2040, 300 }, + [7] = { 31.9, 85, 2040, 300 }, + [8] = { 40.5, 84.3, 2040, 300 }, + [9] = { 27.8, 83, 2040, 300 }, + [10] = { 35.7, 78.2, 2040, 300 }, + [11] = { 37.7, 74.5, 2040, 300 }, + [12] = { 37.1, 68, 2040, 100 }, + [13] = { 36.5, 67.6, 2040, 143 }, + [14] = { 36.8, 64.9, 2040, 100 }, + [15] = { 37.2, 64.8, 2040, 100 }, + [16] = { 43.3, 61.6, 2040, 300 }, + [17] = { 64, 58.4, 2040, 300 }, + [18] = { 64.3, 58.2, 2040, 300 }, + [19] = { 65.1, 57.4, 2040, 300 }, + [20] = { 63.2, 57.4, 2040, 300 }, + [21] = { 65.3, 56.6, 2040, 300 }, + [22] = { 63.1, 56.6, 2040, 300 }, + [23] = { 56.6, 55, 2040, 300 }, + [24] = { 65.1, 54.7, 2040, 300 }, + [25] = { 47.8, 58.2, 5225, 300 }, + [26] = { 49.4, 56.9, 5225, 300 }, + [27] = { 44.9, 54.8, 5225, 300 }, + [28] = { 50.5, 54.5, 5225, 300 }, + [29] = { 51.8, 52.4, 5225, 300 }, + [30] = { 45.2, 48.7, 5225, 300 }, + [31] = { 51.8, 46.8, 5225, 300 }, + [32] = { 50.4, 45.7, 5225, 300 }, + [33] = { 53.6, 44.8, 5225, 300 }, + [34] = { 55.1, 43.8, 5225, 300 }, + [35] = { 51.1, 43.7, 5225, 300 }, + [36] = { 53, 42.4, 5225, 300 }, + [37] = { 57, 42.1, 5225, 300 }, + [38] = { 51, 41.5, 5225, 300 }, + [39] = { 54.8, 39.2, 5225, 300 }, + [40] = { 55.7, 37.4, 5225, 300 }, + [41] = { 55.4, 34.4, 5225, 100 }, + [42] = { 55.2, 34.2, 5225, 143 }, + [43] = { 55.3, 32.9, 5225, 100 }, + [44] = { 55.5, 32.9, 5225, 100 }, + [45] = { 58.4, 31.3, 5225, 300 }, + [46] = { 68.2, 29.8, 5225, 300 }, + [47] = { 68.4, 29.8, 5225, 300 }, + [48] = { 68.8, 29.4, 5225, 300 }, + [49] = { 67.9, 29.4, 5225, 300 }, + [50] = { 68.9, 29, 5225, 300 }, + [51] = { 67.8, 29, 5225, 300 }, + [52] = { 64.7, 28.2, 5225, 300 }, + [53] = { 68.8, 28.1, 5225, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [40014] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [40015] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [40016] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [40017] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [40018] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [40019] = { + ["coords"] = { + [1] = { 41.2, 64.2, 2040, 147 }, + [2] = { 57.4, 32.6, 5225, 147 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [40020] = { + ["coords"] = { + [1] = { 44.4, 50.6, 5225, 300 }, + [2] = { 44.3, 49.9, 5225, 300 }, + [3] = { 44.3, 49.8, 5225, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [40021] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [40023] = { + ["coords"] = { + [1] = { 56.7, 41.8, 4012, 180 }, + [2] = { 58, 41.5, 4012, 180 }, + [3] = { 58.2, 41.3, 4012, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [40024] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [40025] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [40026] = { + ["coords"] = { + [1] = { 43.8, 87.3, 3457, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [40027] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [40028] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [40029] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [40030] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [40031] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [40032] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [40033] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [40034] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [40035] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [40036] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [40037] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [40038] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [40039] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [40040] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [40041] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [40043] = { + ["coords"] = { + [1] = { 41.3, 62.1, 2040, 300 }, + [2] = { 57.4, 31.6, 5225, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [40044] = { + ["coords"] = { + [1] = { 41.7, 62, 2040, 300 }, + [2] = { 57.6, 31.5, 5225, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [40045] = { + ["coords"] = { + [1] = { 14.4, 74.5, 85, 300 }, + [2] = { 37.3, 70.1, 1519, 300 }, + [3] = { 41.5, 62, 2040, 300 }, + [4] = { 57.5, 31.5, 5225, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [40046] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [40047] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [40048] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [40049] = { + ["coords"] = { + [1] = { 31.5, 48.9, 33, 180 }, + }, + ["lvl"] = "11", + }, + [40050] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [40051] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [40052] = { + ["coords"] = { + [1] = { 67.3, 82.6, 130, 3600 }, + [2] = { 13.9, 49.1, 267, 3600 }, + [3] = { 71.7, 11.8, 5179, 3600 }, + }, + ["fac"] = "AH", + ["lvl"] = "38", + }, + [40053] = { + ["coords"] = { + [1] = { 67.7, 81.8, 130, 3600 }, + [2] = { 14.4, 48, 267, 3600 }, + [3] = { 72.2, 10.8, 5179, 3600 }, + }, + ["fac"] = "AH", + ["lvl"] = "24", + }, + [40054] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "61", + }, + [41000] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [48600] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [48601] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [48602] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [48603] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [48604] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [48605] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [48606] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [48607] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [48608] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [48609] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [48610] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [48611] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [48612] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [48613] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [48614] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [48615] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [48616] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [48617] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [48618] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [48619] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [48620] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [48621] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [48622] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [48623] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [48624] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [48625] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [48626] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [48627] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [48628] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [48629] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [48630] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [48631] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [48632] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [48633] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [48634] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [48635] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [48636] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [48637] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [48638] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [48639] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [48640] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [48641] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [48642] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [48643] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [48644] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [48645] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [48646] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [48647] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [48648] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [48649] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [49001] = { + ["coords"] = { + [1] = { 41.9, 79.9, 16, 54000 }, + }, + ["lvl"] = "56", + ["rnk"] = "2", + }, + [49002] = { + ["coords"] = { + [1] = { 45.2, 31.9, 46, 54000 }, + }, + ["lvl"] = "59", + ["rnk"] = "2", + }, + [49003] = { + ["coords"] = { + [1] = { 53.2, 29, 361, 54000 }, + [2] = { 10.6, 4.9, 616, 54000 }, + }, + ["lvl"] = "53", + ["rnk"] = "2", + }, + [49004] = { + ["coords"] = { + [1] = { 57.3, 60.9, 618, 54000 }, + }, + ["lvl"] = "58", + ["rnk"] = "2", + }, + [49005] = { + ["coords"] = { + [1] = { 58.5, 71.1, 357, 54000 }, + }, + ["lvl"] = "47", + ["rnk"] = "2", + }, + [49006] = { + ["coords"] = { + [1] = { 67.4, 25.7, 1377, 300 }, + }, + ["lvl"] = "61", + }, + [49007] = { + ["coords"] = { + [1] = { 64.1, 73.4, 28, 54000 }, + }, + ["lvl"] = "55", + ["rnk"] = "2", + }, + [49008] = { + ["coords"] = { + [1] = { 47.5, 59.8, 139, 54000 }, + }, + ["lvl"] = "61", + ["rnk"] = "2", + }, + [49009] = { + ["coords"] = { + [1] = { 55.1, 59.2, 4, 54000 }, + }, + ["lvl"] = "57", + ["rnk"] = "2", + }, + [49010] = { + ["coords"] = { + [1] = { 53.4, 34.3, 47, 54000 }, + }, + ["lvl"] = "50", + ["rnk"] = "2", + }, + [49011] = { + ["coords"] = { + [1] = { 71.4, 18, 51, 54000 }, + }, + ["lvl"] = "49", + ["rnk"] = "2", + }, + [49012] = { + ["coords"] = { + [1] = { 60.9, 30.3, 3457, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [49013] = { + ["coords"] = { + [1] = { 61.8, 31.9, 3457, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [49014] = { + ["coords"] = { + [1] = { 63.4, 35.1, 3457, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [49015] = { + ["coords"] = { + [1] = { 63.4, 36.5, 3457, 604800 }, + [2] = { 62.9, 35.6, 3457, 604800 }, + [3] = { 62.5, 34.9, 3457, 604800 }, + [4] = { 62.1, 34.2, 3457, 604800 }, + [5] = { 61.7, 33.3, 3457, 604800 }, + [6] = { 61.2, 32.6, 3457, 604800 }, + [7] = { 60.9, 31.7, 3457, 604800 }, + [8] = { 60.4, 30.9, 3457, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [50002] = { + ["coords"] = { + [1] = { 51.2, 69.8, 1497, 260 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [50003] = { + ["coords"] = { + [1] = { 73.4, 9.6, 130, 260 }, + [2] = { 52.8, 75.1, 1497, 260 }, + }, + ["lvl"] = "5", + }, + [50004] = { + ["coords"] = { + [1] = { 53.5, 11.8, 1537, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [50005] = { + ["coords"] = { + [1] = { 53.6, 13.4, 1537, 260 }, + }, + ["lvl"] = "5", + }, + [50006] = { + ["coords"] = { + [1] = { 43, 73.1, 40, 260 }, + [2] = { 62.6, 17.1, 1581, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "15", + }, + [50007] = { + ["coords"] = { + [1] = { 48.8, 16.7, 11, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [50008] = { + ["coords"] = { + [1] = { 6.6, 59.9, 11, 260 }, + [2] = { 63.3, 43.5, 17, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "15", + }, + [50009] = { + ["coords"] = { + [1] = { 58.7, 77.5, 130, 260 }, + [2] = { 61.9, 5.9, 5179, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "20", + }, + [50010] = { + ["coords"] = { + [1] = { 26.9, 55.6, 38, 260 }, + [2] = { 12.3, 72.7, 5602, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "15", + }, + [50011] = { + ["coords"] = { + [1] = { 34.1, 27.3, 45, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [50012] = { + ["coords"] = { + [1] = { 82.8, 78.2, 36, 260 }, + [2] = { 81.3, 16.9, 267, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "58", + }, + [50013] = { + ["coords"] = { + [1] = { 81.9, 23.5, 1497, 260 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [50014] = { + ["coords"] = { + [1] = { 49.6, 87.3, 1519, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [50015] = { + ["coords"] = { + [1] = { 31.2, 48.7, 33, 300 }, + }, + ["lvl"] = "60", + }, + [50017] = { + ["coords"] = { + [1] = { 30.6, 49, 33, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [50018] = { + ["coords"] = { + [1] = { 30.4, 49, 33, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [50019] = { + ["coords"] = { + [1] = { 30.1, 48.8, 33, 260 }, + [2] = { 31, 47.1, 33, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [50020] = { + ["coords"] = { + [1] = { 29.8, 48.1, 33, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [50021] = { + ["coords"] = { + [1] = { 29.8, 47.7, 33, 260 }, + [2] = { 31.2, 47.4, 33, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [50022] = { + ["coords"] = { + [1] = { 29.9, 47.3, 33, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [50023] = { + ["coords"] = { + [1] = { 30, 47, 33, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [50024] = { + ["coords"] = { + [1] = { 30.2, 46.8, 33, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [50025] = { + ["coords"] = { + [1] = { 30.8, 46.8, 33, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [50027] = { + ["coords"] = { + [1] = { 54.4, 68.6, 1637, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [50028] = { + ["coords"] = { + [1] = { 62.8, 73.6, 1519, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [50031] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [50032] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [50033] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [50034] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [50035] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [50036] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [50037] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [50038] = { + ["coords"] = { + [1] = { 49.7, 89.4, 45, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [50039] = { + ["coords"] = { + [1] = { 82.3, 55.9, 400, 260 }, + [2] = { 82.4, 55.8, 400, 260 }, + [3] = { 82.3, 55.8, 400, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [50040] = { + ["coords"] = { + [1] = { 32.8, 47.9, 10, 300 }, + [2] = { 48.9, 61.3, 11, 300 }, + [3] = { 29.8, 70.6, 16, 300 }, + [4] = { 43.2, 99.2, 28, 3600 }, + [5] = { 80.3, 62.7, 28, 260 }, + [6] = { 29.2, 44.6, 28, 300 }, + [7] = { 34, 21.5, 28, 300 }, + [8] = { 79.4, 52.3, 36, 3600 }, + [9] = { 19.9, 66.5, 46, 300 }, + [10] = { 85.7, 58.1, 85, 300 }, + [11] = { 90.3, 36.1, 85, 300 }, + [12] = { 67.9, 82.5, 130, 300 }, + [13] = { 22, 86.4, 139, 260 }, + [14] = { 42.7, 53.1, 267, 300 }, + [15] = { 14.7, 48.9, 267, 300 }, + [16] = { 96, 22.4, 331, 300 }, + [17] = { 50.8, 58.9, 357, 300 }, + [18] = { 43.7, 16.8, 357, 120 }, + [19] = { 30.9, 90.2, 405, 300 }, + [20] = { 39.4, 11.2, 490, 300 }, + [21] = { 37.3, 69.6, 1519, 260 }, + [22] = { 97, 15.3, 5179, 300 }, + [23] = { 72.4, 11.6, 5179, 300 }, + [24] = { 95.9, 92.8, 5581, 300 }, + [25] = { 6.3, 26, 5602, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [50041] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [50042] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [50043] = { + ["coords"] = { + [1] = { 57.8, 33.9, 5130, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [50044] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [50045] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [50050] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [50051] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [50052] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [50053] = { + ["coords"] = { + [1] = { 61.6, 64.6, 1519, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [50054] = { + ["coords"] = { + [1] = { 42.2, 61.1, 1637, 120 }, + }, + ["lvl"] = "20", + }, + [50055] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [50057] = { + ["coords"] = { + [1] = { 31.7, 20.7, 357, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [50058] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "63", + }, + [50059] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [50060] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [50070] = { + ["coords"] = { + [1] = { 35.6, 10.6, 33, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "40", + }, + [50073] = { + ["coords"] = { + [1] = { 54.9, 67.9, 1637, 260 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [50074] = { + ["coords"] = { + [1] = { 77.3, 53.9, 1519, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [50075] = { + ["coords"] = { + [1] = { 62.7, 37.7, 17, 260 }, + }, + ["lvl"] = "50", + }, + [50077] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [50079] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [50080] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [50088] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [50089] = { + ["coords"] = { + [1] = { 62.9, 69.5, 1519, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [50090] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [50091] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [50092] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [50093] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [50094] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [50095] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [50096] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [50097] = { + ["coords"] = { + [1] = { 30.8, 74.9, 33, 280 }, + [2] = { 31, 74.8, 33, 280 }, + [3] = { 35.8, 67.6, 1519, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [50098] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [50099] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [50100] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [50101] = { + ["coords"] = { + [1] = { 80.9, 63.1, 28, 300 }, + [2] = { 22.6, 86.9, 139, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "38", + }, + [50102] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [50103] = { + ["coords"] = { + [1] = { 48.9, 10.9, 17, 4800 }, + }, + ["lvl"] = "40", + ["rnk"] = "4", + }, + [50104] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "4-7", + }, + [50105] = { + ["coords"] = { + [1] = { 48.7, 77.9, 2366, 18000 }, + [2] = { 16.9, 96.9, 5204, 18000 }, + }, + ["fac"] = "AH", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [50106] = { + ["coords"] = { + [1] = { 92.1, 22.4, 2366, 18000 }, + [2] = { 51.1, 10.9, 2366, 18000 }, + [3] = { 50.1, 9.2, 2366, 18000 }, + [4] = { 50.5, 5.4, 2366, 18000 }, + [5] = { 58.8, 2.5, 2366, 18000 }, + [6] = { 49.3, 1, 2366, 18000 }, + [7] = { 54, 49.2, 5204, 18000 }, + [8] = { 19, 39.3, 5204, 18000 }, + [9] = { 18.1, 37.8, 5204, 18000 }, + [10] = { 18.4, 34.6, 5204, 18000 }, + [11] = { 25.6, 32.1, 5204, 18000 }, + [12] = { 17.4, 30.8, 5204, 18000 }, + [13] = { 26.5, 29.9, 5204, 18000 }, + [14] = { 24.3, 27.9, 5204, 18000 }, + [15] = { 17.7, 27, 5204, 18000 }, + [16] = { 29.4, 27, 5204, 18000 }, + [17] = { 31.8, 26.8, 5204, 18000 }, + [18] = { 20.5, 26.5, 5204, 18000 }, + [19] = { 30.1, 26.4, 5204, 18000 }, + [20] = { 24.2, 26.2, 5204, 18000 }, + [21] = { 26.3, 25.1, 5204, 18000 }, + [22] = { 30.3, 24, 5204, 18000 }, + [23] = { 29.2, 24, 5204, 18000 }, + [24] = { 19.6, 23.5, 5204, 18000 }, + [25] = { 35, 23.5, 5204, 18000 }, + [26] = { 33.6, 23.4, 5204, 18000 }, + [27] = { 34.7, 21.8, 5204, 18000 }, + [28] = { 36.4, 21.7, 5204, 18000 }, + [29] = { 18.1, 21.7, 5204, 18000 }, + [30] = { 21.2, 21.5, 5204, 18000 }, + [31] = { 33.3, 21, 5204, 18000 }, + [32] = { 23.8, 20.4, 5204, 18000 }, + [33] = { 20.2, 20.1, 5204, 18000 }, + [34] = { 20.9, 20, 5204, 18000 }, + [35] = { 29.3, 19.2, 5204, 18000 }, + [36] = { 20.9, 19, 5204, 18000 }, + [37] = { 19.2, 18.8, 5204, 18000 }, + [38] = { 28.6, 18.3, 5204, 18000 }, + [39] = { 18.5, 17.7, 5204, 18000 }, + [40] = { 33.1, 16.8, 5204, 18000 }, + [41] = { 21.5, 16.3, 5204, 18000 }, + [42] = { 19.3, 16.3, 5204, 18000 }, + [43] = { 35.9, 16, 5204, 18000 }, + [44] = { 20.3, 15.4, 5204, 18000 }, + [45] = { 19.1, 15.3, 5204, 18000 }, + [46] = { 30.8, 14.1, 5204, 18000 }, + [47] = { 34.8, 14.1, 5204, 18000 }, + [48] = { 32.3, 12.3, 5204, 18000 }, + [49] = { 20.7, 11.6, 5204, 18000 }, + [50] = { 22.2, 11, 5204, 18000 }, + [51] = { 25.7, 9.6, 5204, 18000 }, + [52] = { 33.5, 9.2, 5204, 18000 }, + [53] = { 27.2, 9.2, 5204, 18000 }, + [54] = { 31.1, 8.8, 5204, 18000 }, + [55] = { 21.9, 8.4, 5204, 18000 }, + }, + ["lvl"] = "58-61", + }, + [50107] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [50108] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [50109] = { + ["coords"] = {}, + ["lvl"] = "55-61", + ["rnk"] = "1", + }, + [50110] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "58-63", + ["rnk"] = "1", + }, + [50111] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [50112] = { + ["coords"] = { + [1] = { 59.2, 75, 5130, 1800 }, + [2] = { 63.6, 67.4, 5130, 1800 }, + [3] = { 46.3, 59.7, 5130, 1800 }, + [4] = { 31.9, 56.4, 5130, 1800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [50113] = { + ["coords"] = { + [1] = { 65, 50.7, 440, 300 }, + [2] = { 65.1, 49.4, 440, 300 }, + [3] = { 74.5, 20.6, 1941, 300 }, + [4] = { 75.2, 13.7, 1941, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "63", + }, + [50114] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [50115] = { + ["coords"] = { + [1] = { 35, 49.7, 12, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [50116] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [50117] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [50122] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [50123] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [50124] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [50125] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [50140] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "15", + }, + [50141] = { + ["coords"] = { + [1] = { 29.3, 69.9, 16, 300 }, + [2] = { 29, 69.8, 16, 300 }, + [3] = { 29.5, 69.7, 16, 300 }, + [4] = { 28.9, 69.4, 16, 300 }, + [5] = { 62.7, 24.4, 17, 300 }, + }, + ["lvl"] = "1", + }, + [50506] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "4-7", + }, + [50507] = { + ["coords"] = {}, + ["lvl"] = "4-7", + }, + [50508] = { + ["coords"] = { + [1] = { 62.9, 10.1, 130, 260 }, + [2] = { 62.7, 10.1, 130, 260 }, + [3] = { 63, 10.1, 130, 260 }, + [4] = { 62.8, 10.1, 130, 260 }, + }, + ["fac"] = "H", + ["lvl"] = "5-7", + }, + [50509] = { + ["coords"] = {}, + ["lvl"] = "4-7", + }, + [50510] = { + ["coords"] = { + [1] = { 83.5, 30.5, 85, 260 }, + [2] = { 39.1, 22, 796, 260 }, + }, + ["lvl"] = "30", + }, + [50511] = { + ["coords"] = { + [1] = { 29.3, 70.7, 16, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "4-7", + }, + [50512] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "30", + }, + [50513] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [50514] = { + ["coords"] = { + [1] = { 67.2, 47.2, 15, 260 }, + [2] = { 68.7, 48.2, 17, 120 }, + [3] = { 79.9, 60.3, 28, 260 }, + [4] = { 52.8, 21.8, 38, 120 }, + [5] = { 61, 66.1, 85, 260 }, + [6] = { 21.5, 83.8, 139, 260 }, + [7] = { 30.7, 56.8, 141, 260 }, + [8] = { 68.8, 23.2, 148, 260 }, + [9] = { 41.2, 33.8, 215, 260 }, + [10] = { 95.9, 22.2, 331, 300 }, + [11] = { 50.2, 59.7, 357, 120 }, + [12] = { 32, 91.3, 405, 120 }, + [13] = { 40.9, 55.2, 876, 120 }, + [14] = { 51.5, 46.3, 876, 120 }, + [15] = { 61.9, 4.8, 1497, 260 }, + [16] = { 80.5, 62.2, 1519, 260 }, + [17] = { 50.1, 65.5, 1537, 260 }, + [18] = { 70.8, 44.9, 1637, 260 }, + [19] = { 56.1, 83.6, 1638, 260 }, + [20] = { 64.9, 47.6, 1657, 260 }, + [21] = { 41.6, 83.7, 5121, 120 }, + [22] = { 25.6, 55.4, 5602, 120 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [50515] = { + ["coords"] = { + [1] = { 49.5, 48.3, 8, 300 }, + [2] = { 49.5, 48, 8, 300 }, + [3] = { 33.6, 50, 10, 300 }, + [4] = { 39.2, 65.1, 11, 120 }, + [5] = { 48.2, 61.7, 11, 300 }, + [6] = { 38, 71.8, 14, 300 }, + [7] = { 76.9, 56.3, 15, 120 }, + [8] = { 67.4, 48.6, 15, 260 }, + [9] = { 29.1, 71.2, 16, 300 }, + [10] = { 65.1, 34.6, 17, 300 }, + [11] = { 61.3, 24.7, 17, 300 }, + [12] = { 48.9, 9.9, 17, 300 }, + [13] = { 53.9, 1.3, 17, 300 }, + [14] = { 43.3, 98.4, 28, 3600 }, + [15] = { 31.1, 29.7, 33, 260 }, + [16] = { 79.7, 51.1, 36, 3600 }, + [17] = { 19.3, 67.6, 46, 300 }, + [18] = { 60.7, 69.1, 85, 260 }, + [19] = { 66.9, 82.2, 130, 300 }, + [20] = { 30.4, 56.1, 141, 260 }, + [21] = { 68.8, 23.2, 148, 260 }, + [22] = { 41.7, 33, 215, 260 }, + [23] = { 42.6, 51.6, 267, 300 }, + [24] = { 13.3, 48.5, 267, 300 }, + [25] = { 78.6, 82, 331, 300 }, + [26] = { 95.8, 22.1, 331, 300 }, + [27] = { 50.2, 59.5, 357, 120 }, + [28] = { 83.3, 56.6, 400, 300 }, + [29] = { 31.8, 91.3, 405, 120 }, + [30] = { 25, 82.3, 440, 300 }, + [31] = { 51.1, 29.6, 618, 300 }, + [32] = { 39.8, 57.8, 876, 120 }, + [33] = { 41.3, 54.6, 876, 120 }, + [34] = { 48.3, 51.1, 876, 120 }, + [35] = { 48.1, 51.1, 876, 120 }, + [36] = { 47.9, 51.1, 876, 120 }, + [37] = { 48.4, 50.6, 876, 120 }, + [38] = { 48.1, 50.5, 876, 120 }, + [39] = { 47.9, 50.5, 876, 120 }, + [40] = { 48.4, 50, 876, 120 }, + [41] = { 48.2, 50, 876, 120 }, + [42] = { 48, 49.9, 876, 120 }, + [43] = { 51.1, 45.4, 876, 120 }, + [44] = { 66.5, 32.2, 876, 120 }, + [45] = { 56.2, 39, 1497, 120 }, + [46] = { 70.5, 32.6, 1497, 120 }, + [47] = { 70.1, 32.3, 1497, 120 }, + [48] = { 62.8, 29.2, 1497, 120 }, + [49] = { 61, 18.9, 1497, 260 }, + [50] = { 71.2, 18.8, 1497, 260 }, + [51] = { 36.7, 77, 1519, 260 }, + [52] = { 79, 61.4, 1519, 260 }, + [53] = { 57.4, 71.4, 1537, 260 }, + [54] = { 69.7, 42.3, 1637, 260 }, + [55] = { 58.5, 79.6, 1638, 260 }, + [56] = { 63.7, 44.3, 1657, 260 }, + [57] = { 96.8, 14, 5179, 300 }, + [58] = { 71.3, 11.3, 5179, 300 }, + [59] = { 95.3, 93.8, 5581, 300 }, + [60] = { 5.8, 26.4, 5602, 300 }, + }, + ["lvl"] = "1", + }, + [50516] = { + ["coords"] = { + [1] = { 39.1, 65, 11, 120 }, + [2] = { 37.9, 71.6, 14, 300 }, + [3] = { 67.3, 47.4, 15, 260 }, + [4] = { 65.1, 34.5, 17, 300 }, + [5] = { 61.4, 24.6, 17, 300 }, + [6] = { 49, 9.8, 17, 300 }, + [7] = { 43.5, 98.3, 28, 3600 }, + [8] = { 80, 60.2, 28, 260 }, + [9] = { 31.1, 29.2, 33, 260 }, + [10] = { 79.8, 50.9, 36, 3600 }, + [11] = { 19.1, 67.4, 46, 300 }, + [12] = { 62.8, 66.1, 85, 260 }, + [13] = { 66.9, 81.9, 130, 300 }, + [14] = { 21.6, 83.6, 139, 260 }, + [15] = { 30.4, 54.6, 141, 260 }, + [16] = { 68.9, 23.2, 148, 260 }, + [17] = { 41.4, 33.4, 215, 260 }, + [18] = { 42.3, 51.6, 267, 300 }, + [19] = { 13.3, 48.2, 267, 300 }, + [20] = { 95.7, 22, 331, 300 }, + [21] = { 50.3, 59.2, 357, 120 }, + [22] = { 31.9, 91.4, 405, 120 }, + [23] = { 52.1, 61.1, 876, 300 }, + [24] = { 50.8, 50.7, 876, 120 }, + [25] = { 50.6, 50.7, 876, 120 }, + [26] = { 50.4, 50.7, 876, 120 }, + [27] = { 50.8, 50.2, 876, 120 }, + [28] = { 50.4, 50.2, 876, 120 }, + [29] = { 50.6, 49.8, 876, 120 }, + [30] = { 50.8, 49.7, 876, 120 }, + [31] = { 50.4, 49.7, 876, 120 }, + [32] = { 52.2, 46.9, 876, 120 }, + [33] = { 70.6, 5, 1497, 260 }, + [34] = { 37, 76.8, 1519, 260 }, + [35] = { 79.7, 63.4, 1519, 260 }, + [36] = { 60.3, 67.4, 1537, 260 }, + [37] = { 70.3, 43.6, 1637, 260 }, + [38] = { 56.9, 81.5, 1638, 260 }, + [39] = { 63.6, 36.7, 1657, 260 }, + [40] = { 96.6, 14, 5179, 300 }, + [41] = { 71.3, 11, 5179, 300 }, + [42] = { 95.1, 93.7, 5581, 300 }, + }, + ["lvl"] = "60", + }, + [50517] = { + ["coords"] = { + [1] = { 48.4, 61.5, 11, 300 }, + [2] = { 61.7, 23.8, 17, 300 }, + [3] = { 61.9, 35, 85, 120 }, + [4] = { 5.9, 26.2, 5602, 300 }, + }, + ["lvl"] = "1", + }, + [50519] = { + ["coords"] = { + [1] = { 44.4, 81.6, 1519, 120 }, + [2] = { 74, 34.9, 1637, 120 }, + }, + ["lvl"] = "1", + }, + [50520] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [50521] = { + ["coords"] = { + [1] = { 80, 76.8, 400, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [50522] = { + ["coords"] = { + [1] = { 78.1, 77.1, 400, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [50523] = { + ["coords"] = { + [1] = { 80.9, 77.4, 400, 260 }, + [2] = { 81.7, 77.4, 400, 260 }, + [3] = { 80.8, 77.1, 400, 260 }, + [4] = { 81.7, 76.9, 400, 260 }, + [5] = { 81.8, 76.7, 400, 260 }, + [6] = { 81.8, 76.6, 400, 260 }, + [7] = { 80.8, 76.5, 400, 260 }, + [8] = { 80.8, 76.4, 400, 260 }, + [9] = { 78.3, 75.6, 400, 260 }, + [10] = { 79.3, 75.5, 400, 260 }, + [11] = { 79.3, 75.3, 400, 260 }, + [12] = { 79.3, 75.2, 400, 260 }, + [13] = { 78.3, 75.1, 400, 260 }, + [14] = { 79.3, 75.1, 400, 260 }, + [15] = { 79.3, 74.8, 400, 260 }, + [16] = { 78.3, 74.8, 400, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [50524] = { + ["coords"] = { + [1] = { 80.9, 77.8, 400, 260 }, + [2] = { 80.8, 77.5, 400, 260 }, + [3] = { 81.7, 77.5, 400, 260 }, + [4] = { 80.8, 77.2, 400, 260 }, + [5] = { 78.3, 75.5, 400, 260 }, + [6] = { 79.3, 75.4, 400, 260 }, + [7] = { 78.3, 75.3, 400, 260 }, + [8] = { 78.3, 75, 400, 260 }, + [9] = { 79.3, 75, 400, 260 }, + [10] = { 79.3, 74.7, 400, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [50525] = { + ["coords"] = { + [1] = { 80.9, 77.7, 400, 260 }, + [2] = { 81.7, 77.6, 400, 260 }, + [3] = { 80.9, 77.3, 400, 260 }, + [4] = { 81.7, 77.1, 400, 260 }, + [5] = { 80.8, 76.7, 400, 260 }, + [6] = { 79.3, 75.4, 400, 260 }, + [7] = { 78.3, 75.4, 400, 260 }, + [8] = { 79.3, 75.2, 400, 260 }, + [9] = { 79.3, 75, 400, 260 }, + [10] = { 78.3, 74.9, 400, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [50526] = { + ["coords"] = { + [1] = { 80.9, 77.7, 400, 260 }, + [2] = { 80.9, 77, 400, 260 }, + [3] = { 81.7, 76.9, 400, 260 }, + [4] = { 80.9, 76.8, 400, 260 }, + [5] = { 81.8, 76.5, 400, 260 }, + [6] = { 78.3, 75.5, 400, 260 }, + [7] = { 78.3, 75.2, 400, 260 }, + [8] = { 78.3, 75.1, 400, 260 }, + [9] = { 79.3, 74.9, 400, 260 }, + [10] = { 78.3, 74.8, 400, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [50527] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [50528] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [50529] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [50530] = { + ["coords"] = { + [1] = { 53.6, 65.6, 1637, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [50531] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [50533] = { + ["coords"] = { + [1] = { 81.3, 78, 400, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "15", + }, + [50534] = { + ["coords"] = { + [1] = { 79.4, 74.5, 400, 260 }, + [2] = { 67.5, 26.7, 440, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [50535] = { + ["coords"] = { + [1] = { 78.3, 75.8, 400, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [50537] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [50538] = { + ["coords"] = { + [1] = { 36.4, 67.5, 1519, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [50539] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "4-7", + }, + [50540] = { + ["coords"] = { + [1] = { 80.8, 30.6, 1637, 120 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [50541] = { + ["coords"] = { + [1] = { 80.8, 31.4, 1637, 120 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [50542] = { + ["coords"] = { + [1] = { 61.3, 96.7, 5581, 120 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [50543] = { + ["coords"] = { + [1] = { 61.4, 96.5, 5581, 3600 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [50550] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "61", + ["rnk"] = "3", + }, + [50555] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "34", + }, + [50556] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "34", + }, + [50557] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "34", + }, + [50559] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "34", + }, + [50560] = { + ["coords"] = { + [1] = { 80.5, 61.3, 28, 300 }, + [2] = { 22.2, 84.9, 139, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "34", + }, + [50561] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [50562] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [50563] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [50564] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [50565] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [50566] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [50580] = { + ["coords"] = { + [1] = { 77.8, 77.3, 400, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [50581] = { + ["coords"] = { + [1] = { 77.7, 76.6, 400, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [50582] = { + ["coords"] = { + [1] = { 78.3, 76.1, 400, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [50583] = { + ["coords"] = { + [1] = { 77.7, 77.9, 400, 260 }, + [2] = { 78.4, 74.7, 400, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [50584] = { + ["coords"] = { + [1] = { 77.6, 76.9, 400, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [50585] = { + ["coords"] = { + [1] = { 80.2, 76.1, 400, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [50586] = { + ["coords"] = { + [1] = { 79.8, 76.5, 400, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [50587] = { + ["coords"] = { + [1] = { 80.2, 76.2, 400, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [50588] = { + ["coords"] = { + [1] = { 80.5, 76.6, 400, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [50589] = { + ["coords"] = { + [1] = { 79.7, 75.9, 400, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [50590] = { + ["coords"] = { + [1] = { 79.3, 74.6, 400, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [50591] = { + ["coords"] = { + [1] = { 79.5, 75.8, 400, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [50592] = { + ["coords"] = { + [1] = { 79.6, 77, 400, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [50593] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [50594] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [50595] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [50597] = { + ["coords"] = { + [1] = { 63.7, 82.3, 5536, 300 }, + }, + ["lvl"] = "55", + }, + [50598] = { + ["coords"] = { + [1] = { 57.6, 28.1, 14, 300 }, + }, + ["lvl"] = "55", + }, + [50600] = { + ["coords"] = {}, + ["lvl"] = "50-63", + ["rnk"] = "3", + }, + [50604] = { + ["coords"] = { + [1] = { 42.2, 62.7, 12, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [50605] = { + ["coords"] = { + [1] = { 42.4, 62.8, 12, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [50607] = { + ["coords"] = { + [1] = { 42.3, 62.5, 12, 260 }, + [2] = { 42.4, 62.5, 12, 260 }, + [3] = { 42.6, 62.3, 12, 260 }, + [4] = { 42.4, 62.3, 12, 260 }, + }, + ["lvl"] = "3", + }, + [50608] = { + ["coords"] = { + [1] = { 42.4, 63.1, 12, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "3", + }, + [50609] = { + ["coords"] = {}, + ["lvl"] = "3", + }, + [50610] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "3", + }, + [50611] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "3", + }, + [50612] = { + ["coords"] = {}, + ["lvl"] = "59", + }, + [50620] = { + ["coords"] = {}, + ["lvl"] = "30-43", + }, + [50621] = { + ["coords"] = {}, + ["lvl"] = "30-43", + }, + [50622] = { + ["coords"] = {}, + ["lvl"] = "30-43", + }, + [50623] = { + ["coords"] = {}, + ["lvl"] = "30-43", + }, + [50624] = { + ["coords"] = {}, + ["lvl"] = "30-43", + }, + [50625] = { + ["coords"] = {}, + ["lvl"] = "30-43", + }, + [50626] = { + ["coords"] = {}, + ["lvl"] = "30-43", + }, + [50627] = { + ["coords"] = {}, + ["lvl"] = "30-43", + }, + [50628] = { + ["coords"] = {}, + ["lvl"] = "30-43", + }, + [50629] = { + ["coords"] = {}, + ["lvl"] = "30-43", + }, + [50630] = { + ["coords"] = {}, + ["lvl"] = "30-43", + }, + [50631] = { + ["coords"] = {}, + ["lvl"] = "30-43", + }, + [50632] = { + ["coords"] = {}, + ["lvl"] = "50-53", + }, + [50635] = { + ["coords"] = {}, + ["lvl"] = "3", + }, + [50636] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [50637] = { + ["coords"] = { + [1] = { 16.3, 30.5, 1, 260 }, + [2] = { 5, 18.7, 721, 260 }, + [3] = { 51.6, 76.3, 5130, 300 }, + [4] = { 48.1, 63.8, 5130, 300 }, + [5] = { 35.8, 63.2, 5130, 300 }, + [6] = { 58.1, 61.2, 5130, 300 }, + [7] = { 54.3, 57.7, 5130, 300 }, + [8] = { 44.8, 56.4, 5130, 300 }, + [9] = { 60.7, 55.4, 5130, 300 }, + [10] = { 32.8, 54.2, 5130, 300 }, + [11] = { 40.5, 49.8, 5130, 300 }, + [12] = { 45.7, 48.1, 5130, 300 }, + [13] = { 51.8, 44.9, 5130, 300 }, + [14] = { 65.7, 41.6, 5130, 300 }, + [15] = { 59.9, 41.6, 5130, 300 }, + [16] = { 37.7, 41.3, 5130, 300 }, + [17] = { 49, 33.9, 5130, 300 }, + [18] = { 42.6, 29, 5130, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "20", + }, + [50638] = { + ["coords"] = { + [1] = { 54.1, 35.2, 5130, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "30-40", + }, + [50639] = { + ["coords"] = { + [1] = { 56.8, 30.5, 5130, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "30-40", + }, + [50640] = { + ["coords"] = { + [1] = { 57.8, 33.7, 5130, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "30-40", + }, + [50641] = { + ["coords"] = { + [1] = { 50.9, 28.3, 5130, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "30-40", + }, + [50642] = { + ["coords"] = { + [1] = { 53.7, 30.1, 5130, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "30-40", + }, + [50643] = { + ["coords"] = { + [1] = { 54, 35.9, 5130, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "30-40", + }, + [50644] = { + ["coords"] = { + [1] = { 54.2, 31.6, 5130, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "30-40", + }, + [50645] = { + ["coords"] = { + [1] = { 56.7, 30.3, 5130, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "30-40", + }, + [50646] = { + ["coords"] = { + [1] = { 54.1, 31.6, 5130, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "30-40", + }, + [50647] = { + ["coords"] = { + [1] = { 55.2, 36.9, 5130, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "30-40", + }, + [50648] = { + ["coords"] = { + [1] = { 54.4, 36.1, 5130, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "30-40", + }, + [50649] = { + ["coords"] = { + [1] = { 52.6, 40.1, 5130, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "30-40", + }, + [50650] = { + ["coords"] = { + [1] = { 55.6, 30.6, 5130, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "30-40", + }, + [50651] = { + ["coords"] = { + [1] = { 54.6, 36, 5130, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "30-40", + }, + [50652] = { + ["coords"] = { + [1] = { 50.9, 28.6, 5130, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "30-40", + }, + [50653] = { + ["coords"] = { + [1] = { 55.5, 35.8, 5130, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "30-40", + }, + [50654] = { + ["coords"] = { + [1] = { 54.2, 27.8, 5130, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [50660] = { + ["coords"] = { + [1] = { 56.5, 37.2, 5130, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "30-40", + }, + [50661] = { + ["coords"] = { + [1] = { 25.3, 56.1, 141, 120 }, + [2] = { 38.6, 28.8, 215, 120 }, + [3] = { 66.4, 37.6, 1497, 120 }, + [4] = { 55.5, 55.8, 1519, 120 }, + [5] = { 31.6, 61.8, 1537, 120 }, + [6] = { 55.1, 71.9, 1637, 120 }, + [7] = { 43.4, 58.6, 1638, 120 }, + [8] = { 38.9, 44, 1657, 120 }, + [9] = { 50.1, 45, 2040, 120 }, + [10] = { 61.6, 23.5, 5225, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [50662] = { + ["coords"] = { + [1] = { 55.1, 27.7, 5130, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [50663] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [50665] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [50666] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [50667] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [50668] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [50669] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [50670] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [50671] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [50672] = { + ["coords"] = { + [1] = { 51.2, 27.6, 11, 300 }, + [2] = { 51.5, 27.1, 11, 300 }, + [3] = { 8, 0.1, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [50673] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [50674] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [50675] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [50676] = { + ["coords"] = { + [1] = { 10.1, 57.6, 11, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [50677] = { + ["coords"] = { + [1] = { 81.3, 82, 139, 600 }, + [2] = { 40.6, 66.6, 4012, 600 }, + }, + ["lvl"] = "60", + ["rnk"] = "2", + }, + [50680] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [50681] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [50682] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [50683] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [50684] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [50685] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [50686] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [50760] = { + ["coords"] = { + [1] = { 64.9, 73.1, 1519, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [51234] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "55", + }, + [51235] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [51236] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [51237] = { + ["coords"] = { + [1] = { 74.9, 15.9, 1637, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "30-40", + }, + [51238] = { + ["coords"] = { + [1] = { 77.2, 10.4, 1637, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "30-40", + }, + [51239] = { + ["coords"] = { + [1] = { 78.8, 7.4, 1637, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "18-19", + }, + [51240] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [51241] = { + ["coords"] = { + [1] = { 27.8, 77.1, 33, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "30-40", + }, + [51242] = { + ["coords"] = { + [1] = { 46.2, 45.7, 1637, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [51243] = { + ["coords"] = { + [1] = { 45.6, 45.7, 1637, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [51244] = { + ["coords"] = { + [1] = { 27.8, 77.3, 33, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "18-19", + }, + [51245] = { + ["coords"] = { + [1] = { 27.8, 77.3, 33, 120 }, + [2] = { 27.8, 77, 33, 120 }, + }, + ["lvl"] = "18-19", + }, + [51246] = { + ["coords"] = { + [1] = { 27.8, 77.3, 33, 120 }, + [2] = { 27.8, 77, 33, 120 }, + }, + ["lvl"] = "60", + }, + [51247] = { + ["coords"] = { + [1] = { 27.7, 77.2, 33, 120 }, + [2] = { 27.7, 77.1, 33, 120 }, + [3] = { 27.8, 76.9, 33, 120 }, + }, + ["lvl"] = "30-40", + }, + [51248] = { + ["coords"] = { + [1] = { 27.7, 77.1, 33, 300 }, + }, + ["lvl"] = "10", + }, + [51249] = { + ["coords"] = { + [1] = { 47, 75.2, 5130, 300 }, + [2] = { 50.4, 68.4, 5130, 300 }, + [3] = { 65.7, 65.2, 5130, 300 }, + [4] = { 56.7, 63, 5130, 300 }, + [5] = { 61.1, 56.9, 5130, 300 }, + [6] = { 50.8, 55.4, 5130, 300 }, + [7] = { 55.9, 54.2, 5130, 300 }, + [8] = { 65.6, 53.8, 5130, 300 }, + [9] = { 42.4, 50.1, 5130, 300 }, + [10] = { 59.5, 49.5, 5130, 300 }, + [11] = { 36.5, 49.4, 5130, 300 }, + [12] = { 56.9, 43.7, 5130, 300 }, + [13] = { 67.5, 43.7, 5130, 300 }, + [14] = { 41.3, 43.5, 5130, 300 }, + [15] = { 47.3, 39.3, 5130, 300 }, + [16] = { 58.5, 38.6, 5130, 300 }, + [17] = { 61.7, 35, 5130, 300 }, + [18] = { 44.1, 34.4, 5130, 300 }, + [19] = { 51.7, 21.1, 5130, 300 }, + [20] = { 58.3, 20.3, 5130, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "5-10", + }, + [51250] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "60", + }, + [51251] = { + ["coords"] = { + [1] = { 27.7, 77.1, 33, 300 }, + }, + ["lvl"] = "60", + }, + [51252] = { + ["coords"] = { + [1] = { 27.8, 77.2, 33, 600 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [51253] = { + ["coords"] = { + [1] = { 52.6, 33, 5130, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [51254] = { + ["coords"] = { + [1] = { 52.3, 32.7, 5130, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [51260] = { + ["coords"] = { + [1] = { 59.9, 28.9, 12, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [51261] = { + ["coords"] = { + [1] = { 41, 63.4, 12, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [51264] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [51266] = { + ["coords"] = { + [1] = { 52.3, 28.1, 440, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "45", + }, + [51270] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "50", + }, + [51271] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "50", + }, + [51275] = { + ["coords"] = {}, + ["lvl"] = "30", + ["rnk"] = "1", + }, + [51276] = { + ["coords"] = {}, + ["lvl"] = "25", + ["rnk"] = "1", + }, + [51277] = { + ["coords"] = {}, + ["lvl"] = "30", + ["rnk"] = "1", + }, + [51278] = { + ["coords"] = {}, + ["lvl"] = "25", + ["rnk"] = "1", + }, + [51279] = { + ["coords"] = {}, + ["lvl"] = "35", + ["rnk"] = "1", + }, + [51280] = { + ["coords"] = { + [1] = { 25.5, 54.7, 357, 300 }, + }, + ["lvl"] = "49-50", + ["rnk"] = "1", + }, + [51290] = { + ["coords"] = { + [1] = { 64.2, 75.5, 1519, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [51291] = { + ["coords"] = { + [1] = { 51.2, 73.8, 1637, 180 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [51292] = { + ["coords"] = { + [1] = { 64.6, 75.6, 1519, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [51293] = { + ["coords"] = { + [1] = { 51, 73.7, 1637, 260 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [51295] = { + ["coords"] = { + [1] = { 54.2, 55.7, 876, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [51299] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [51300] = { + ["coords"] = { + [1] = { 51.4, 47.7, 8, 300 }, + [2] = { 61.6, 24, 17, 300 }, + [3] = { 54.1, 0.6, 17, 300 }, + [4] = { 79.1, 80.7, 331, 300 }, + [5] = { 83.4, 55.5, 400, 300 }, + [6] = { 58.2, 22.5, 440, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [51301] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [51302] = { + ["coords"] = { + [1] = { 46.4, 46.9, 12, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [51303] = { + ["coords"] = { + [1] = { 42.9, 66.5, 12, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "24", + }, + [51305] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [51308] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "24", + }, + [51510] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "30", + }, + [51511] = { + ["coords"] = { + [1] = { 80.2, 61.5, 28, 260 }, + [2] = { 21.9, 85.1, 139, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [51513] = { + ["coords"] = {}, + ["lvl"] = "30", + }, + [51520] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "30", + }, + [51521] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "30", + }, + [51523] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [51525] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [51526] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [51530] = { + ["coords"] = { + [1] = { 35.3, 50.2, 12, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [51531] = { + ["coords"] = { + [1] = { 35.4, 50.3, 12, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [51532] = { + ["coords"] = { + [1] = { 44.3, 58.6, 215, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [51533] = { + ["coords"] = { + [1] = { 44.6, 58.5, 215, 260 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [51536] = { + ["coords"] = { + [1] = { 71.7, 50.2, 28, 260 }, + [2] = { 12.4, 72.5, 139, 260 }, + }, + ["lvl"] = "25", + }, + [51537] = { + ["coords"] = { + [1] = { 71.5, 50.3, 28, 260 }, + [2] = { 12.2, 72.6, 139, 260 }, + }, + ["lvl"] = "25", + }, + [51538] = { + ["coords"] = { + [1] = { 71.7, 50.3, 28, 260 }, + [2] = { 12.4, 72.7, 139, 260 }, + }, + ["lvl"] = "25", + }, + [51539] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [51550] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [51560] = { + ["coords"] = { + [1] = { 66.6, 21.4, 4, 300 }, + [2] = { 74.1, 46.1, 10, 300 }, + [3] = { 8.8, 54.8, 11, 300 }, + [4] = { 43, 66, 12, 260 }, + [5] = { 60, 29.6, 12, 260 }, + [6] = { 81.2, 61.8, 28, 300 }, + [7] = { 81.2, 61.5, 28, 300 }, + [8] = { 34.4, 21.1, 28, 300 }, + [9] = { 30.5, 46.8, 44, 300 }, + [10] = { 90.6, 35.7, 85, 300 }, + [11] = { 22.9, 85.4, 139, 300 }, + [12] = { 23, 85.1, 139, 300 }, + [13] = { 42.8, 52.9, 267, 300 }, + [14] = { 37.4, 70, 1519, 260 }, + [15] = { 30.4, 13.3, 1519, 300 }, + [16] = { 97, 15.1, 5179, 300 }, + [17] = { 32.8, 84.5, 5581, 300 }, + [18] = { 41.4, 69.4, 5581, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [51561] = { + ["coords"] = { + [1] = { 66.6, 21.9, 4, 300 }, + [2] = { 8, 54.3, 11, 300 }, + [3] = { 41.6, 64.6, 12, 260 }, + [4] = { 42.9, 62.9, 12, 260 }, + [5] = { 60, 29.5, 12, 260 }, + [6] = { 37.7, 71.4, 14, 300 }, + [7] = { 64.9, 34.3, 17, 300 }, + [8] = { 81, 61.6, 28, 300 }, + [9] = { 58.1, 53.2, 40, 300 }, + [10] = { 30.8, 46.3, 44, 300 }, + [11] = { 22.8, 85.2, 139, 300 }, + [12] = { 51.1, 26.4, 440, 300 }, + [13] = { 29.8, 13.4, 1519, 300 }, + [14] = { 32.5, 84.6, 5581, 300 }, + [15] = { 40.1, 68.2, 5581, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [51562] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "29", + }, + [51563] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "50", + }, + [51564] = { + ["coords"] = { + [1] = { 43.3, 64.5, 12, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [51566] = { + ["coords"] = { + [1] = { 14.8, 44.4, 47, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [51567] = { + ["coords"] = { + [1] = { 79.3, 41.7, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [51568] = { + ["coords"] = { + [1] = { 30, 71, 16, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [51569] = { + ["coords"] = { + [1] = { 48.7, 61.4, 11, 300 }, + [2] = { 50.9, 60.1, 357, 300 }, + [3] = { 32.3, 90.9, 405, 300 }, + [4] = { 25.3, 81.7, 440, 300 }, + [5] = { 38.2, 11.1, 490, 300 }, + [6] = { 6.1, 26.1, 5602, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "29", + }, + [51570] = { + ["coords"] = { + [1] = { 51.5, 41.2, 14, 260 }, + [2] = { 60.8, 58.6, 85, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "40-55", + }, + [51571] = { + ["coords"] = { + [1] = { 61.7, 71.7, 1519, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "40-55", + }, + [51572] = { + ["coords"] = { + [1] = { 50.6, 66.1, 1637, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "40-55", + }, + [51573] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "40-55", + }, + [51574] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "40-55", + }, + [51575] = { + ["coords"] = {}, + ["lvl"] = "30", + }, + [51576] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [51577] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [51578] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "30-40", + }, + [51579] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "40-55", + }, + [51580] = { + ["coords"] = { + [1] = { 3.6, 47.8, 3, 300 }, + [2] = { 45.4, 52.7, 8, 300 }, + [3] = { 51.3, 47.1, 8, 300 }, + [4] = { 51.5, 42.4, 14, 300 }, + [5] = { 44.7, 12.7, 14, 300 }, + [6] = { 51.8, 29.5, 17, 300 }, + [7] = { 31.9, 29.6, 33, 300 }, + [8] = { 82.8, 39.2, 51, 300 }, + [9] = { 70.9, 68.2, 331, 300 }, + [10] = { 50.1, 63, 406, 300 }, + [11] = { 50.6, 26.5, 440, 300 }, + [12] = { 46.2, 97.8, 1637, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [51581] = { + ["coords"] = { + [1] = { 45.4, 52.6, 8, 300 }, + [2] = { 51.5, 42.4, 14, 300 }, + [3] = { 44.7, 12.8, 14, 300 }, + [4] = { 43.8, 91.9, 17, 300 }, + [5] = { 51.7, 29.6, 17, 300 }, + [6] = { 61.8, 24, 17, 300 }, + [7] = { 31.9, 29.4, 33, 300 }, + [8] = { 70.9, 68.3, 331, 300 }, + [9] = { 31.5, 21.5, 400, 300 }, + [10] = { 50.2, 62.9, 406, 300 }, + [11] = { 50.4, 26.6, 440, 300 }, + [12] = { 45.8, 98, 1637, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [51582] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [51583] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [51584] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [51585] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [51587] = { + ["coords"] = { + [1] = { 59.8, 52.5, 85, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [51588] = { + ["coords"] = { + [1] = { 60.6, 89.2, 36, 300 }, + [2] = { 60, 52.7, 85, 300 }, + [3] = { 61.8, 26.5, 267, 300 }, + [4] = { 50.4, 26.6, 440, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [51589] = { + ["coords"] = { + [1] = { 59.9, 52.9, 85, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [51590] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [51591] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [51592] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [51593] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "30", + }, + [51594] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "40", + }, + [51595] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "40", + }, + [51596] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "40", + }, + [51598] = { + ["coords"] = { + [1] = { 43.5, 39.7, 405, 260 }, + }, + ["lvl"] = "38-39", + ["rnk"] = "1", + }, + [51599] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "38-39", + }, + [51600] = { + ["coords"] = { + [1] = { 50.3, 26.6, 12, 120 }, + }, + ["lvl"] = "4-5", + }, + [51601] = { + ["coords"] = { + [1] = { 63, 37.2, 17, 260 }, + }, + ["lvl"] = "42", + ["rnk"] = "1", + }, + [51605] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [51607] = { + ["coords"] = { + [1] = { 32.4, 82.1, 33, 325 }, + }, + ["fac"] = "AH", + ["lvl"] = "43-44", + }, + [51620] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "30", + }, + [51621] = { + ["coords"] = { + [1] = { 48, 8.6, 17, 260 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [51622] = { + ["coords"] = { + [1] = { 48.3, 9.1, 17, 260 }, + [2] = { 48, 8.7, 17, 260 }, + [3] = { 48.2, 8.7, 17, 260 }, + [4] = { 48.2, 8.3, 17, 260 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [51623] = { + ["coords"] = { + [1] = { 48, 8.6, 17, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [51650] = { + ["coords"] = { + [1] = { 68.2, 17.9, 148, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [51651] = { + ["coords"] = { + [1] = { 68.3, 18.8, 148, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "30-40", + }, + [51652] = { + ["coords"] = { + [1] = { 69, 20, 148, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "40", + }, + [51653] = { + ["coords"] = { + [1] = { 68, 20.6, 148, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [51654] = { + ["coords"] = { + [1] = { 68.2, 18.8, 148, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "14", + }, + [51655] = { + ["coords"] = { + [1] = { 68.6, 18.8, 148, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [51656] = { + ["coords"] = { + [1] = { 68.2, 19.1, 148, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "14", + }, + [51657] = { + ["coords"] = { + [1] = { 68.4, 18.8, 148, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "24", + }, + [51658] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [51660] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "33", + }, + [51661] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [51662] = { + ["coords"] = { + [1] = { 37.1, 74.4, 1519, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [51663] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "33", + }, + [51664] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [51665] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [51666] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "30", + }, + [51667] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [51668] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [51680] = { + ["coords"] = {}, + ["lvl"] = "50", + }, + [51681] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [51682] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [51685] = { + ["coords"] = { + [1] = { 30.4, 73.8, 16, 120 }, + [2] = { 42.3, 93.7, 17, 300 }, + [3] = { 68, 19.2, 148, 300 }, + [4] = { 27.9, 25.6, 400, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "29", + }, + [51686] = { + ["coords"] = { + [1] = { 43.4, 16.3, 357, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "29", + }, + [51688] = { + ["coords"] = { + [1] = { 65.9, 67.3, 85, 260 }, + [2] = { 85.2, 10.8, 1497, 260 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [51689] = { + ["coords"] = { + [1] = { 35.4, 92, 3478, 260 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [51690] = { + ["coords"] = { + [1] = { 30.9, 15, 5557, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [52000] = { + ["coords"] = { + [1] = { 35.5, 62.4, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52001] = { + ["coords"] = { + [1] = { 35.6, 61.9, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52002] = { + ["coords"] = { + [1] = { 35.7, 62.3, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52003] = { + ["coords"] = { + [1] = { 35.9, 60.7, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52004] = { + ["coords"] = { + [1] = { 36, 61.4, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52005] = { + ["coords"] = { + [1] = { 34.2, 65.4, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52006] = { + ["coords"] = { + [1] = { 34.7, 65.3, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52007] = { + ["coords"] = { + [1] = { 36.2, 67.6, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52008] = { + ["coords"] = { + [1] = { 35.4, 68.5, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52009] = { + ["coords"] = { + [1] = { 35.5, 61.9, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52010] = { + ["coords"] = { + [1] = { 35.4, 61.2, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52011] = { + ["coords"] = { + [1] = { 36.3, 68.4, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52012] = { + ["coords"] = { + [1] = { 36.2, 68.2, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52013] = { + ["coords"] = { + [1] = { 36.4, 68.4, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52014] = { + ["coords"] = { + [1] = { 34.9, 63, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52015] = { + ["coords"] = { + [1] = { 31, 64.3, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52016] = { + ["coords"] = { + [1] = { 36.6, 66, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52017] = { + ["coords"] = { + [1] = { 37.2, 64.7, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52018] = { + ["coords"] = { + [1] = { 36.7, 65.7, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52019] = { + ["coords"] = { + [1] = { 23.5, 69.4, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52020] = { + ["coords"] = { + [1] = { 36.6, 62.7, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52021] = { + ["coords"] = { + [1] = { 39.4, 61.3, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52022] = { + ["coords"] = { + [1] = { 39.9, 62.1, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52023] = { + ["coords"] = { + [1] = { 36.5, 67.2, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52024] = { + ["coords"] = { + [1] = { 36.4, 67.3, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52025] = { + ["coords"] = { + [1] = { 34.4, 66.1, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52026] = { + ["coords"] = { + [1] = { 34.7, 65.5, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52027] = { + ["coords"] = { + [1] = { 39.2, 65.3, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52028] = { + ["coords"] = { + [1] = { 36.4, 64.3, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52029] = { + ["coords"] = { + [1] = { 35.7, 61.1, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52030] = { + ["coords"] = { + [1] = { 37.6, 65.7, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52031] = { + ["coords"] = { + [1] = { 35.5, 62.7, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52032] = { + ["coords"] = { + [1] = { 35.7, 61.5, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52033] = { + ["coords"] = { + [1] = { 36.4, 68.3, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52034] = { + ["coords"] = { + [1] = { 30.7, 66.7, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52035] = { + ["coords"] = { + [1] = { 35.9, 65.1, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52036] = { + ["coords"] = { + [1] = { 35, 62.5, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52037] = { + ["coords"] = { + [1] = { 35.9, 65.1, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52038] = { + ["coords"] = { + [1] = { 38.7, 65.2, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52039] = { + ["coords"] = { + [1] = { 39.2, 65.4, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52040] = { + ["coords"] = { + [1] = { 35.8, 61.6, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52041] = { + ["coords"] = { + [1] = { 35.7, 64, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52042] = { + ["coords"] = { + [1] = { 30.2, 62.8, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52043] = { + ["coords"] = { + [1] = { 35.8, 62.7, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52044] = { + ["coords"] = { + [1] = { 35.6, 61.5, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52045] = { + ["coords"] = { + [1] = { 35.1, 64.4, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52046] = { + ["coords"] = { + [1] = { 35.1, 67.9, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52047] = { + ["coords"] = { + [1] = { 39.9, 62, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52048] = { + ["coords"] = { + [1] = { 34.5, 65.6, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52049] = { + ["coords"] = { + [1] = { 35.8, 64.4, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52050] = { + ["coords"] = { + [1] = { 36.3, 68.2, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52051] = { + ["coords"] = { + [1] = { 36.3, 68.4, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52052] = { + ["coords"] = { + [1] = { 36.1, 67.9, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52053] = { + ["coords"] = { + [1] = { 30.1, 65.9, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52054] = { + ["coords"] = { + [1] = { 23.7, 67, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52055] = { + ["coords"] = { + [1] = { 35.9, 64.8, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52056] = { + ["coords"] = { + [1] = { 34.3, 65.5, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52057] = { + ["coords"] = { + [1] = { 38.9, 65.6, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52058] = { + ["coords"] = { + [1] = { 36, 68.7, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52059] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52060] = { + ["coords"] = { + [1] = { 35.8, 61, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52061] = { + ["coords"] = { + [1] = { 39, 61.9, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52062] = { + ["coords"] = { + [1] = { 30.4, 60.6, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52063] = { + ["coords"] = { + [1] = { 30.1, 60.7, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52064] = { + ["coords"] = { + [1] = { 35.9, 67, 11, 120 }, + [2] = { 36.1, 67, 11, 120 }, + [3] = { 29.3, 66, 11, 120 }, + [4] = { 29.2, 66, 11, 120 }, + [5] = { 29.4, 65.4, 11, 120 }, + [6] = { 29.2, 64.2, 11, 120 }, + [7] = { 29.8, 63.6, 11, 120 }, + [8] = { 29.8, 63.5, 11, 120 }, + [9] = { 29.3, 63.3, 11, 120 }, + [10] = { 29.3, 63.2, 11, 120 }, + [11] = { 28.6, 63.1, 11, 120 }, + [12] = { 28.8, 63, 11, 120 }, + [13] = { 29.5, 62.7, 11, 120 }, + [14] = { 25.8, 62.3, 11, 120 }, + [15] = { 29.5, 61.9, 11, 120 }, + [16] = { 28.6, 61.5, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "35-38", + }, + [52065] = { + ["coords"] = { + [1] = { 29.7, 65, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "35-38", + }, + [52066] = { + ["coords"] = { + [1] = { 39.5, 65.4, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52067] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52068] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52069] = { + ["coords"] = { + [1] = { 24.8, 63.8, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52070] = { + ["coords"] = { + [1] = { 35.7, 61.5, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52071] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52072] = { + ["coords"] = { + [1] = { 36.6, 68.5, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52073] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52074] = { + ["coords"] = { + [1] = { 23.8, 67, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52075] = { + ["coords"] = { + [1] = { 23.1, 65.3, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52076] = { + ["coords"] = { + [1] = { 23.1, 65.4, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52077] = { + ["coords"] = { + [1] = { 16.9, 70.2, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52078] = { + ["coords"] = { + [1] = { 27.2, 66.7, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52079] = { + ["coords"] = { + [1] = { 29.7, 61.2, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52080] = { + ["coords"] = { + [1] = { 68.8, 26, 1, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52081] = { + ["coords"] = { + [1] = { 36.3, 68.3, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52082] = { + ["coords"] = { + [1] = { 67.9, 34.7, 1, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52083] = { + ["coords"] = { + [1] = { 36, 64.6, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52084] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52085] = { + ["coords"] = { + [1] = { 22.4, 68.7, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52086] = { + ["coords"] = { + [1] = { 36, 64.6, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52087] = { + ["coords"] = { + [1] = { 28, 66.6, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52088] = { + ["coords"] = { + [1] = { 39.4, 65.2, 11, 120 }, + [2] = { 35.9, 62.7, 11, 120 }, + [3] = { 35, 62.6, 11, 120 }, + [4] = { 36.8, 62.5, 11, 120 }, + [5] = { 34.7, 62.5, 11, 120 }, + [6] = { 39.5, 62.3, 11, 120 }, + [7] = { 35.6, 62.3, 11, 120 }, + [8] = { 35.4, 62.2, 11, 120 }, + [9] = { 39.1, 61.8, 11, 120 }, + [10] = { 35.8, 61.1, 11, 120 }, + [11] = { 35.6, 61, 11, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [52090] = { + ["coords"] = { + [1] = { 71.4, 21.8, 1, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52091] = { + ["coords"] = { + [1] = { 30, 64.6, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52092] = { + ["coords"] = { + [1] = { 30.9, 61.7, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52093] = { + ["coords"] = { + [1] = { 68.6, 18.7, 1, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [52094] = { + ["coords"] = { + [1] = { 22.7, 65.4, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [52095] = { + ["coords"] = { + [1] = { 27.4, 66.5, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52096] = { + ["coords"] = { + [1] = { 29.7, 66.2, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52097] = { + ["coords"] = { + [1] = { 22.7, 65.8, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52099] = { + ["coords"] = {}, + ["lvl"] = "63", + }, + [52100] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52101] = { + ["coords"] = { + [1] = { 22.7, 65.9, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52102] = { + ["coords"] = { + [1] = { 71.4, 21.4, 1, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52103] = { + ["coords"] = { + [1] = { 21.4, 68.1, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52104] = { + ["coords"] = { + [1] = { 36.4, 68.1, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52105] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52106] = { + ["coords"] = { + [1] = { 27, 68.1, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52107] = { + ["coords"] = { + [1] = { 16.2, 72.4, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52108] = { + ["coords"] = { + [1] = { 22, 67.1, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52109] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52111] = { + ["coords"] = { + [1] = { 26.2, 62.8, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52112] = { + ["coords"] = { + [1] = { 23.3, 65.7, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52114] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52115] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52116] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52117] = { + ["coords"] = { + [1] = { 36.4, 68.3, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52118] = { + ["coords"] = { + [1] = { 35.9, 61.9, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [52119] = { + ["coords"] = { + [1] = { 33, 61.8, 11, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "24", + ["rnk"] = "1", + }, + [52120] = { + ["coords"] = { + [1] = { 27.7, 77.1, 33, 120 }, + [2] = { 60.8, 57.2, 1519, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "40", + }, + [52121] = { + ["coords"] = { + [1] = { 27.9, 77.2, 33, 120 }, + [2] = { 60.7, 56.8, 1519, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "25", + }, + [52122] = { + ["coords"] = { + [1] = { 60.4, 57.6, 1519, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [52123] = { + ["coords"] = { + [1] = { 35, 65.8, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "6-12", + }, + [52124] = { + ["coords"] = { + [1] = { 35, 65.8, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "6-12", + }, + [52125] = { + ["coords"] = { + [1] = { 34.2, 65.5, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "6-12", + }, + [52126] = { + ["coords"] = { + [1] = { 35, 65.7, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "6-12", + }, + [52127] = { + ["coords"] = { + [1] = { 35.1, 65.7, 11, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "6-12", + }, + [52128] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "20-38", + }, + [52129] = { + ["coords"] = { + [1] = { 46.4, 47.3, 1637, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [52130] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [52140] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [52141] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [52142] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [52143] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [52144] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [52145] = { + ["coords"] = { + [1] = { 55, 10.4, 2717, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [52146] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [52147] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [52148] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [52149] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [52150] = { + ["coords"] = { + [1] = { 71.4, 52.6, 2717, 604800 }, + [2] = { 71.6, 52.4, 2717, 604800 }, + [3] = { 69.4, 51.7, 2717, 604800 }, + [4] = { 73.8, 51.1, 2717, 604800 }, + [5] = { 73.7, 50.4, 2717, 604800 }, + [6] = { 78.4, 49.5, 2717, 604800 }, + [7] = { 77.9, 48.9, 2717, 604800 }, + [8] = { 78.7, 45.7, 2717, 604800 }, + [9] = { 78.5, 45.7, 2717, 604800 }, + [10] = { 69.1, 39.7, 2717, 604800 }, + [11] = { 77.1, 38.9, 2717, 604800 }, + [12] = { 77.3, 38.8, 2717, 604800 }, + [13] = { 70.2, 37.8, 2717, 604800 }, + [14] = { 69.8, 37.3, 2717, 604800 }, + [15] = { 73.7, 35.1, 2717, 604800 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [52151] = { + ["coords"] = { + [1] = { 75.8, 50.8, 2717, 604800 }, + [2] = { 75.5, 50.8, 2717, 604800 }, + [3] = { 75.7, 50.3, 2717, 604800 }, + [4] = { 78.4, 45.5, 2717, 604800 }, + [5] = { 78.9, 45.5, 2717, 604800 }, + [6] = { 67.6, 44.8, 2717, 604800 }, + [7] = { 73.7, 35.8, 2717, 604800 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [52152] = { + ["coords"] = { + [1] = { 71.4, 52.3, 2717, 604800 }, + [2] = { 68.8, 39.6, 2717, 604800 }, + [3] = { 68.9, 39.3, 2717, 604800 }, + [4] = { 77.1, 39.3, 2717, 604800 }, + [5] = { 77.5, 38.9, 2717, 604800 }, + [6] = { 71.6, 36.2, 2717, 604800 }, + [7] = { 72, 36, 2717, 604800 }, + [8] = { 71.6, 35.2, 2717, 604800 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [57640] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [57641] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [57642] = { + ["coords"] = { + [1] = { 88.9, 45.8, 2717, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [57643] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [57644] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [57645] = { + ["coords"] = {}, + ["lvl"] = "63", + }, + [59810] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [59811] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [59812] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [59813] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [59814] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [59815] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "63", + ["rnk"] = "1", + }, + [59901] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [59952] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [59953] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [59954] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [59955] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [59956] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [59957] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [59958] = { + ["coords"] = {}, + ["lvl"] = "63", + }, + [59959] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [59960] = { + ["coords"] = { + [1] = { 49.2, 24.3, 5557, 604800 }, + [2] = { 49.5, 24.1, 5557, 604800 }, + [3] = { 49.1, 23.9, 5557, 604800 }, + [4] = { 49.4, 23.7, 5557, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [59961] = { + ["coords"] = { + [1] = { 49.3, 24, 5557, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [59962] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [59963] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [59964] = { + ["coords"] = {}, + ["lvl"] = "63", + }, + [59965] = { + ["coords"] = {}, + ["lvl"] = "56-58", + }, + [59966] = { + ["coords"] = {}, + ["lvl"] = "57-58", + }, + [59967] = { + ["coords"] = { + [1] = { 62.2, 32.7, 3457, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [59968] = { + ["coords"] = { + [1] = { 61.3, 31.1, 3457, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [59969] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [59970] = { + ["coords"] = { + [1] = { 63.8, 35.8, 3457, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [59971] = { + ["coords"] = { + [1] = { 63, 34.3, 3457, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [59972] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [59973] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [59974] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [59975] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [59976] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [59977] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [59978] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [59979] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [59980] = { + ["coords"] = { + [1] = { 44.3, 34.8, 5557, 604800 }, + [2] = { 44.6, 34.5, 5557, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [59981] = { + ["coords"] = { + [1] = { 44.6, 34.9, 5557, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [59982] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [59983] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [59984] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [59985] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [59986] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [59987] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [59988] = { + ["coords"] = { + [1] = { 59, 83.3, 3457, 604800 }, + [2] = { 58.8, 81.8, 3457, 604800 }, + [3] = { 57.8, 81.5, 3457, 604800 }, + [4] = { 55.3, 76.8, 3457, 604800 }, + [5] = { 56.7, 76.5, 3457, 604800 }, + [6] = { 55.2, 75.7, 3457, 604800 }, + [7] = { 43.8, 73.7, 3457, 604800 }, + [8] = { 42.9, 73.3, 3457, 604800 }, + [9] = { 44.5, 72.4, 3457, 604800 }, + [10] = { 46.6, 71.9, 3457, 604800 }, + [11] = { 42.9, 71.2, 3457, 604800 }, + [12] = { 51.7, 71.2, 3457, 604800 }, + [13] = { 56.4, 71.1, 3457, 604800 }, + [14] = { 45.2, 70.7, 3457, 604800 }, + [15] = { 59.5, 70.6, 3457, 604800 }, + [16] = { 60.3, 70.2, 3457, 604800 }, + [17] = { 59.7, 70.1, 3457, 604800 }, + [18] = { 44.9, 69.7, 3457, 604800 }, + [19] = { 43.6, 69.4, 3457, 604800 }, + [20] = { 56.7, 69.3, 3457, 604800 }, + [21] = { 55.9, 69.2, 3457, 604800 }, + [22] = { 54.9, 68.8, 3457, 604800 }, + [23] = { 60.8, 65.5, 3457, 604800 }, + [24] = { 59.7, 65.3, 3457, 604800 }, + [25] = { 60.2, 65.3, 3457, 604800 }, + [26] = { 60.1, 64.6, 3457, 604800 }, + [27] = { 39.4, 64.5, 3457, 604800 }, + [28] = { 52.7, 64.4, 3457, 604800 }, + [29] = { 59.2, 64.4, 3457, 604800 }, + [30] = { 59.6, 64, 3457, 604800 }, + [31] = { 60.7, 63.9, 3457, 604800 }, + [32] = { 53.6, 63.7, 3457, 604800 }, + [33] = { 60.2, 63.5, 3457, 604800 }, + [34] = { 51.9, 63.4, 3457, 604800 }, + [35] = { 60.9, 63, 3457, 604800 }, + [36] = { 38.3, 62.7, 3457, 604800 }, + [37] = { 38.9, 62.7, 3457, 604800 }, + [38] = { 44.5, 62.3, 3457, 604800 }, + [39] = { 43.9, 62.2, 3457, 604800 }, + [40] = { 52.7, 62.2, 3457, 604800 }, + [41] = { 51.9, 62.1, 3457, 604800 }, + [42] = { 53.4, 61.9, 3457, 604800 }, + [43] = { 44.3, 61.7, 3457, 604800 }, + [44] = { 40.2, 61.7, 3457, 604800 }, + [45] = { 51.1, 61.1, 3457, 604800 }, + [46] = { 52.6, 61.1, 3457, 604800 }, + [47] = { 39.1, 61, 3457, 604800 }, + [48] = { 47.6, 60.7, 3457, 604800 }, + [49] = { 52, 60.4, 3457, 604800 }, + [50] = { 47.3, 60.4, 3457, 604800 }, + [51] = { 47.6, 59.9, 3457, 604800 }, + [52] = { 47.4, 59.9, 3457, 604800 }, + [53] = { 51.3, 59.7, 3457, 604800 }, + [54] = { 43.5, 57.8, 3457, 604800 }, + [55] = { 44.7, 57.4, 3457, 604800 }, + [56] = { 44.4, 55.6, 3457, 604800 }, + [57] = { 56.3, 54, 3457, 604800 }, + [58] = { 55.8, 53.8, 3457, 604800 }, + [59] = { 56.5, 53.3, 3457, 604800 }, + [60] = { 47.4, 53.3, 3457, 604800 }, + [61] = { 56.1, 53.2, 3457, 604800 }, + [62] = { 55.7, 53, 3457, 604800 }, + [63] = { 48.2, 52.9, 3457, 604800 }, + [64] = { 56.3, 52.6, 3457, 604800 }, + [65] = { 57.3, 52.5, 3457, 604800 }, + [66] = { 56.6, 52.1, 3457, 604800 }, + [67] = { 49.5, 51.9, 3457, 604800 }, + [68] = { 47.5, 51.5, 3457, 604800 }, + [69] = { 56.8, 51.4, 3457, 604800 }, + [70] = { 49.5, 50.9, 3457, 604800 }, + [71] = { 48.7, 50.7, 3457, 604800 }, + [72] = { 47.5, 50.3, 3457, 604800 }, + }, + ["lvl"] = "60", + }, + [59989] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [59990] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [59991] = { + ["coords"] = { + [1] = { 49.8, 74.4, 5557, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [59992] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [59993] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [59994] = { + ["coords"] = {}, + ["lvl"] = "63", + }, + [59995] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [59996] = { + ["coords"] = {}, + ["lvl"] = "63", + }, + [59997] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [59998] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [59999] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [60000] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60001] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60002] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60003] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60004] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60005] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60006] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60007] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60008] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60009] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60010] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60011] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60012] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60013] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60014] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60015] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60016] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60017] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60018] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60019] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60020] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60021] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60022] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60023] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60024] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60025] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60026] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60027] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "20", + }, + [60028] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60029] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60030] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60031] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60032] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60033] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60034] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60035] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60036] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60037] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60038] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60039] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60040] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60041] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60042] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60043] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60044] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60045] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60046] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60047] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60048] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60049] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60050] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60051] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60052] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60053] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60054] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60055] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60056] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60057] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60058] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60059] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60060] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60061] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [60062] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [60063] = { + ["coords"] = { + [1] = { 27.2, 40, 3457, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [60064] = { + ["coords"] = { + [1] = { 27.2, 40, 3457, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [60065] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60066] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60067] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60068] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60069] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60070] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60071] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60072] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60073] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60074] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60075] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60076] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60077] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60078] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60079] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60080] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60081] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60150] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "42", + ["rnk"] = "1", + }, + [60300] = { + ["coords"] = { + [1] = { 45, 59.9, 215, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "9", + }, + [60301] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60302] = { + ["coords"] = { + [1] = { 45, 59.8, 215, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "9", + }, + [60310] = { + ["coords"] = { + [1] = { 17.9, 49.8, 331, 300 }, + [2] = { 54.5, 17, 406, 300 }, + }, + ["lvl"] = "60", + }, + [60311] = { + ["coords"] = { + [1] = { 28.2, 44.5, 15, 300 }, + [2] = { 50.1, 77, 17, 300 }, + }, + ["lvl"] = "60", + }, + [60312] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60313] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60314] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60315] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60316] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60317] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60318] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60319] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60320] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60321] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60322] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60323] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60324] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60325] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60326] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60327] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60328] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60329] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60330] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60331] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60332] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60333] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60334] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60335] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60336] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60337] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60338] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60339] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60340] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60341] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60342] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60343] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60344] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60345] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60347] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60348] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60349] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60350] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60351] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60352] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60353] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60354] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60355] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60356] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60369] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [60370] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60373] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60374] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60375] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60376] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60377] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60378] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60379] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60380] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60381] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60382] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60383] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60384] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60385] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60386] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60387] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60388] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60389] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60390] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60391] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60392] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60393] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60394] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60395] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60396] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60397] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60398] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60399] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60400] = { + ["coords"] = { + [1] = { 26.9, 77.1, 33, 300 }, + }, + ["lvl"] = "50", + }, + [60401] = { + ["coords"] = { + [1] = { 40, 84.5, 33, 300 }, + }, + ["lvl"] = "60", + }, + [60403] = { + ["coords"] = { + [1] = { 71.8, 82.9, 8, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [60404] = { + ["coords"] = { + [1] = { 70.2, 40.6, 8, 300 }, + }, + ["lvl"] = "60", + }, + [60405] = { + ["coords"] = { + [1] = { 70, 40.6, 8, 300 }, + }, + ["lvl"] = "60", + }, + [60406] = { + ["coords"] = { + [1] = { 69.7, 40.8, 8, 300 }, + }, + ["lvl"] = "60", + }, + [60407] = { + ["coords"] = { + [1] = { 70.1, 40.8, 8, 300 }, + }, + ["lvl"] = "60", + }, + [60408] = { + ["coords"] = { + [1] = { 58.8, 5.8, 17, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [60409] = { + ["coords"] = { + [1] = { 81.1, 75, 331, 300 }, + }, + ["lvl"] = "60", + }, + [60410] = { + ["coords"] = { + [1] = { 72.1, 84.4, 8, 300 }, + }, + ["lvl"] = "55", + }, + [60411] = { + ["coords"] = { + [1] = { 58.7, 6, 17, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [60412] = { + ["coords"] = { + [1] = { 58.7, 6, 17, 300 }, + }, + ["lvl"] = "20", + }, + [60413] = { + ["coords"] = { + [1] = { 81.1, 75, 331, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "20", + }, + [60414] = { + ["coords"] = { + [1] = { 72.1, 83.5, 8, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [60415] = { + ["coords"] = { + [1] = { 72, 83, 8, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [60416] = { + ["coords"] = { + [1] = { 71.7, 83.5, 8, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [60417] = { + ["coords"] = { + [1] = { 72, 83.7, 8, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [60418] = { + ["coords"] = { + [1] = { 72.2, 84.2, 8, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [60420] = { + ["coords"] = { + [1] = { 16.2, 37, 331, 300 }, + [2] = { 58.4, 35.5, 331, 300 }, + [3] = { 57.5, 99.7, 361, 300 }, + }, + ["lvl"] = "22", + }, + [60421] = { + ["coords"] = { + [1] = { 26, 30.9, 8, 300 }, + }, + ["lvl"] = "42", + }, + [60422] = { + ["coords"] = { + [1] = { 25.5, 31.9, 8, 300 }, + }, + ["lvl"] = "42", + }, + [60423] = { + ["coords"] = { + [1] = { 25.2, 31.2, 8, 300 }, + }, + ["lvl"] = "42", + }, + [60424] = { + ["coords"] = { + [1] = { 25.5, 32.6, 8, 300 }, + }, + ["lvl"] = "42", + }, + [60425] = { + ["coords"] = {}, + ["lvl"] = "25", + ["rnk"] = "1", + }, + [60426] = { + ["coords"] = {}, + ["lvl"] = "24-25", + }, + [60427] = { + ["coords"] = {}, + ["lvl"] = "24-25", + }, + [60428] = { + ["coords"] = { + [1] = { 42.1, 53.3, 267, 120 }, + [2] = { 96.4, 15.5, 5179, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "38", + }, + [60429] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "27-28", + }, + [60430] = { + ["coords"] = {}, + ["lvl"] = "40", + }, + [60431] = { + ["coords"] = {}, + ["lvl"] = "45", + }, + [60432] = { + ["coords"] = { + [1] = { 71, 85.2, 16, 300 }, + }, + ["lvl"] = "57", + ["rnk"] = "1", + }, + [60433] = { + ["coords"] = { + [1] = { 45.4, 56.5, 16, 300 }, + }, + ["lvl"] = "53", + ["rnk"] = "1", + }, + [60434] = { + ["coords"] = { + [1] = { 44.1, 65.8, 2040, 300 }, + [2] = { 44.1, 64.7, 2040, 300 }, + [3] = { 43.4, 64.6, 2040, 300 }, + [4] = { 44.2, 63.7, 2040, 300 }, + [5] = { 43.5, 63.6, 2040, 300 }, + [6] = { 58.8, 33.4, 5225, 300 }, + [7] = { 58.8, 32.8, 5225, 300 }, + [8] = { 58.5, 32.8, 5225, 300 }, + [9] = { 58.8, 32.4, 5225, 300 }, + [10] = { 58.5, 32.3, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [60435] = { + ["coords"] = { + [1] = { 43.7, 64.9, 2040, 300 }, + [2] = { 58.6, 32.9, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [60436] = { + ["coords"] = { + [1] = { 44.3, 65.1, 2040, 300 }, + [2] = { 58.9, 33, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [60437] = { + ["coords"] = { + [1] = { 44.5, 64.7, 2040, 300 }, + [2] = { 59, 32.8, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [60438] = { + ["coords"] = { + [1] = { 43.2, 65.3, 2040, 300 }, + [2] = { 58.3, 33.1, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [60439] = { + ["coords"] = { + [1] = { 43.4, 65.3, 2040, 300 }, + [2] = { 58.4, 33.1, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [60440] = { + ["coords"] = { + [1] = { 43.4, 65.8, 2040, 300 }, + [2] = { 58.5, 33.3, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [60441] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "25", + }, + [60442] = { + ["coords"] = {}, + ["lvl"] = "19-20", + }, + [60443] = { + ["coords"] = { + [1] = { 45.6, 83.6, 17, 180 }, + }, + ["lvl"] = "25", + }, + [60444] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [60445] = { + ["coords"] = { + [1] = { 45.7, 83.6, 17, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [60446] = { + ["coords"] = { + [1] = { 56.2, 16.2, 408, 5 }, + [2] = { 77.1, 94.8, 409, 5 }, + }, + ["fac"] = "AH", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [60447] = { + ["coords"] = { + [1] = { 42.4, 79.1, 33, 180 }, + }, + ["lvl"] = "25", + }, + [60448] = { + ["coords"] = { + [1] = { 42.7, 79.6, 33, 180 }, + }, + ["lvl"] = "30", + }, + [60449] = { + ["coords"] = { + [1] = { 43.3, 79.3, 33, 300 }, + }, + ["lvl"] = "50", + }, + [60450] = { + ["coords"] = { + [1] = { 43.2, 80.1, 33, 300 }, + }, + ["lvl"] = "46", + }, + [60451] = { + ["coords"] = { + [1] = { 43.4, 80.3, 33, 180 }, + }, + ["lvl"] = "49", + }, + [60452] = { + ["coords"] = { + [1] = { 43.3, 79.9, 33, 180 }, + }, + ["lvl"] = "52", + }, + [60453] = { + ["coords"] = { + [1] = { 26.6, 73.8, 33, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "54", + ["rnk"] = "1", + }, + [60454] = { + ["coords"] = { + [1] = { 43.3, 80.5, 33, 180 }, + }, + ["lvl"] = "52", + }, + [60455] = { + ["coords"] = { + [1] = { 43.3, 79.6, 33, 180 }, + }, + ["lvl"] = "30", + }, + [60456] = { + ["coords"] = { + [1] = { 42, 79.2, 33, 180 }, + }, + ["lvl"] = "45", + }, + [60457] = { + ["coords"] = { + [1] = { 42, 79.7, 33, 180 }, + }, + ["lvl"] = "48", + }, + [60458] = { + ["coords"] = { + [1] = { 43.3, 80.3, 33, 180 }, + }, + ["lvl"] = "43", + }, + [60459] = { + ["coords"] = { + [1] = { 43.2, 80.4, 33, 180 }, + }, + ["lvl"] = "45", + }, + [60460] = { + ["coords"] = { + [1] = { 42.1, 79.7, 33, 180 }, + }, + ["lvl"] = "42", + }, + [60461] = { + ["coords"] = { + [1] = { 36.8, 68.8, 361, 180 }, + }, + ["lvl"] = "53", + }, + [60462] = { + ["coords"] = { + [1] = { 43.8, 18.1, 33, 180 }, + }, + ["lvl"] = "36", + }, + [60463] = { + ["coords"] = {}, + ["lvl"] = "50", + }, + [60464] = { + ["coords"] = {}, + ["lvl"] = "50", + }, + [60465] = { + ["coords"] = { + [1] = { 51.3, 45.7, 141, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + ["rnk"] = "1", + }, + [60466] = { + ["coords"] = { + [1] = { 51.4, 45.7, 141, 300 }, + [2] = { 51.3, 45.7, 141, 300 }, + [3] = { 51.4, 44.5, 141, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [60467] = { + ["coords"] = { + [1] = { 59.8, 32.6, 409, 180 }, + }, + ["lvl"] = "55", + ["rnk"] = "1", + }, + [60468] = { + ["coords"] = { + [1] = { 59.1, 35.2, 409, 300 }, + [2] = { 59.6, 34.7, 409, 300 }, + [3] = { 60, 34.5, 409, 180 }, + [4] = { 59.1, 34.2, 409, 300 }, + [5] = { 60.5, 33.9, 409, 180 }, + [6] = { 61.1, 33.5, 409, 180 }, + [7] = { 61.9, 33.2, 409, 180 }, + [8] = { 60.8, 33.1, 409, 300 }, + [9] = { 60.2, 33.1, 409, 300 }, + [10] = { 60.3, 33, 409, 180 }, + [11] = { 60.1, 32.9, 409, 300 }, + [12] = { 59.5, 32.8, 409, 300 }, + [13] = { 60.1, 32.7, 409, 300 }, + [14] = { 60.6, 32.6, 409, 300 }, + [15] = { 60.3, 32.3, 409, 300 }, + [16] = { 59.9, 32.3, 409, 300 }, + [17] = { 60.1, 32.2, 409, 300 }, + [18] = { 60.9, 32.2, 409, 300 }, + [19] = { 61.1, 32.2, 409, 300 }, + [20] = { 60.1, 32, 409, 300 }, + [21] = { 59.6, 31.8, 409, 300 }, + [22] = { 60.4, 31.8, 409, 300 }, + [23] = { 60.4, 31.7, 409, 300 }, + [24] = { 61.4, 31.5, 409, 300 }, + [25] = { 60.4, 30.8, 409, 300 }, + [26] = { 59.8, 30.1, 409, 300 }, + }, + ["lvl"] = "53-54", + ["rnk"] = "1", + }, + [60469] = { + ["coords"] = { + [1] = { 36.6, 45.6, 331, 300 }, + }, + ["lvl"] = "19", + }, + [60470] = { + ["coords"] = { + [1] = { 43, 97.8, 148, 180 }, + [2] = { 27.3, 15.8, 331, 180 }, + }, + ["lvl"] = "20", + }, + [60471] = { + ["coords"] = { + [1] = { 37.7, 50.1, 331, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [60472] = { + ["coords"] = { + [1] = { 27.2, 36.9, 331, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [60473] = { + ["coords"] = { + [1] = { 35.3, 54.4, 141, 180 }, + [2] = { 87, 35.7, 1657, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [60474] = { + ["coords"] = { + [1] = { 36.8, 54.1, 141, 180 }, + [2] = { 94, 34.6, 1657, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [60475] = { + ["coords"] = { + [1] = { 46.1, 33.8, 141, 120 }, + }, + ["lvl"] = "11", + }, + [60476] = { + ["coords"] = { + [1] = { 58.2, 83.2, 408, 180 }, + }, + ["fac"] = "H", + ["lvl"] = "54", + }, + [60477] = { + ["coords"] = { + [1] = { 68, 72.4, 408, 180 }, + }, + ["fac"] = "H", + ["lvl"] = "54", + }, + [60478] = { + ["coords"] = { + [1] = { 68.6, 73.6, 408, 180 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [60479] = { + ["coords"] = { + [1] = { 24.6, 54, 33, 180 }, + }, + ["lvl"] = "45", + }, + [60480] = { + ["coords"] = { + [1] = { 24.5, 53.8, 33, 180 }, + }, + ["lvl"] = "42", + }, + [60481] = { + ["coords"] = { + [1] = { 24.4, 54.1, 33, 180 }, + }, + ["lvl"] = "44", + }, + [60482] = { + ["coords"] = { + [1] = { 48.4, 37.2, 141, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + ["rnk"] = "1", + }, + [60483] = { + ["coords"] = { + [1] = { 31, 64.3, 85, 180 }, + }, + ["fac"] = "H", + ["lvl"] = "5", + }, + [60484] = { + ["coords"] = { + [1] = { 60.1, 51.5, 85, 180 }, + }, + ["fac"] = "H", + ["lvl"] = "15", + }, + [60485] = { + ["coords"] = { + [1] = { 61.4, 24.8, 1497, 180 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [60486] = { + ["coords"] = { + [1] = { 58.7, 30.9, 1497, 180 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [60487] = { + ["coords"] = { + [1] = { 62, 26.2, 1497, 180 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [60488] = { + ["coords"] = { + [1] = { 54.6, 37.2, 1497, 180 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [60489] = { + ["coords"] = { + [1] = { 31, 64.3, 85, 180 }, + }, + ["fac"] = "H", + ["lvl"] = "2", + }, + [60490] = { + ["coords"] = { + [1] = { 60.1, 51.5, 85, 211 }, + }, + ["fac"] = "H", + ["lvl"] = "10", + }, + [60491] = { + ["coords"] = { + [1] = { 62.2, 26.2, 1497, 180 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [60492] = { + ["coords"] = { + [1] = { 61.3, 24.6, 1497, 180 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [60493] = { + ["coords"] = { + [1] = { 58.9, 30.7, 1497, 180 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [60494] = { + ["coords"] = { + [1] = { 70.6, 31.4, 8, 300 }, + }, + ["lvl"] = "41", + ["rnk"] = "1", + }, + [60495] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "48", + }, + [60496] = { + ["coords"] = { + [1] = { 43.4, 80.6, 33, 180 }, + }, + ["lvl"] = "54", + ["rnk"] = "1", + }, + [60497] = { + ["coords"] = { + [1] = { 18.4, 15.8, 408, 180 }, + [2] = { 36.8, 94.4, 409, 180 }, + }, + ["lvl"] = "52", + }, + [60498] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "62", + ["rnk"] = "1", + }, + [60499] = { + ["coords"] = {}, + ["lvl"] = "55", + ["rnk"] = "1", + }, + [60500] = { + ["coords"] = { + [1] = { 60.8, 39.7, 17, 300 }, + }, + ["lvl"] = "15", + }, + [60501] = { + ["coords"] = { + [1] = { 65.7, 73.7, 408, 300 }, + }, + ["lvl"] = "53", + }, + [60502] = { + ["coords"] = { + [1] = { 28.1, 76.7, 33, 180 }, + }, + ["lvl"] = "42", + }, + [60503] = { + ["coords"] = { + [1] = { 80.9, 76.6, 405, 180 }, + }, + ["lvl"] = "50", + ["rnk"] = "1", + }, + [60504] = { + ["coords"] = { + [1] = { 60.6, 39.2, 17, 300 }, + }, + ["lvl"] = "14", + }, + [60505] = { + ["coords"] = { + [1] = { 15.6, 40.5, 45, 180 }, + [2] = { 77.9, 70.5, 267, 180 }, + }, + ["lvl"] = "32", + }, + [60506] = { + ["coords"] = { + [1] = { 57.3, 46.1, 36, 180 }, + }, + ["lvl"] = "36", + }, + [60507] = { + ["coords"] = { + [1] = { 41, 18.8, 406, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [60508] = { + ["coords"] = { + [1] = { 57.9, 68.7, 139, 300 }, + [2] = { 11.9, 50.3, 4012, 300 }, + }, + ["lvl"] = "58", + }, + [60509] = { + ["coords"] = { + [1] = { 50, 63.8, 16, 180 }, + }, + ["lvl"] = "53", + }, + [60510] = { + ["coords"] = { + [1] = { 37, 22.5, 14, 180 }, + [2] = { 64.6, 8.8, 17, 180 }, + }, + ["fac"] = "H", + ["lvl"] = "12", + }, + [60511] = { + ["coords"] = { + [1] = { 37.1, 22.8, 14, 180 }, + [2] = { 64.6, 9, 17, 180 }, + }, + ["fac"] = "H", + ["lvl"] = "15", + }, + [60512] = { + ["coords"] = { + [1] = { 44.1, 45.4, 16, 180 }, + }, + ["lvl"] = "58", + }, + [60513] = { + ["coords"] = { + [1] = { 77.3, 59.5, 85, 120 }, + }, + ["lvl"] = "12", + }, + [60516] = { + ["coords"] = { + [1] = { 28.9, 66.3, 1, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [60518] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [60519] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [60520] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [60521] = { + ["coords"] = { + [1] = { 90.9, 85.7, 139, 180 }, + [2] = { 52.4, 71.1, 4012, 180 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [60522] = { + ["coords"] = { + [1] = { 62.9, 68.3, 4012, 180 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [60523] = { + ["coords"] = { + [1] = { 66.2, 47.5, 4012, 600 }, + [2] = { 65.5, 46.8, 4012, 600 }, + [3] = { 66.9, 44.8, 4012, 600 }, + [4] = { 65.1, 44.5, 4012, 600 }, + [5] = { 65.4, 43.1, 4012, 600 }, + [6] = { 65.3, 42.1, 4012, 600 }, + [7] = { 66.7, 41.6, 4012, 600 }, + [8] = { 64.4, 41.2, 4012, 600 }, + [9] = { 64.6, 39.3, 4012, 600 }, + [10] = { 66.5, 38.8, 4012, 600 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [60524] = { + ["coords"] = { + [1] = { 66.5, 46.3, 4012, 600 }, + [2] = { 65.5, 45.2, 4012, 600 }, + [3] = { 64.6, 43.4, 4012, 600 }, + [4] = { 66.2, 43.1, 4012, 600 }, + [5] = { 65.4, 41.3, 4012, 600 }, + [6] = { 67.2, 40.5, 4012, 600 }, + [7] = { 66.3, 40.5, 4012, 600 }, + [8] = { 66.2, 39.6, 4012, 600 }, + [9] = { 66, 36.7, 4012, 600 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [60525] = { + ["coords"] = { + [1] = { 66.3, 42.2, 4012, 75600 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [60526] = { + ["coords"] = { + [1] = { 62.8, 34.7, 4012, 180 }, + }, + ["lvl"] = "58", + }, + [60527] = { + ["coords"] = { + [1] = { 62.1, 34.9, 4012, 180 }, + }, + ["lvl"] = "59", + }, + [60528] = { + ["coords"] = { + [1] = { 62.6, 35.6, 4012, 180 }, + }, + ["lvl"] = "61", + }, + [60529] = { + ["coords"] = { + [1] = { 63.2, 33.7, 4012, 180 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [60530] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [60531] = { + ["coords"] = { + [1] = { 65.5, 84.4, 4012, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [60532] = { + ["coords"] = { + [1] = { 66.3, 80.7, 4012, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [60533] = { + ["coords"] = { + [1] = { 92.5, 95.6, 139, 180 }, + [2] = { 54.3, 83.3, 4012, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "51", + }, + [60534] = { + ["coords"] = { + [1] = { 65.1, 85.6, 4012, 300 }, + [2] = { 67, 84.9, 4012, 300 }, + [3] = { 64.8, 84.3, 4012, 300 }, + [4] = { 67.6, 84, 4012, 300 }, + [5] = { 65.4, 83.6, 4012, 180 }, + [6] = { 65.2, 83.5, 4012, 300 }, + [7] = { 65.4, 83.3, 4012, 180 }, + [8] = { 65.9, 83.2, 4012, 300 }, + [9] = { 65.8, 82.2, 4012, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "52-54", + }, + [60535] = { + ["coords"] = { + [1] = { 92.4, 95.9, 139, 300 }, + [2] = { 91.9, 95.7, 139, 300 }, + [3] = { 91.6, 95.4, 139, 300 }, + [4] = { 91.9, 95.3, 139, 180 }, + [5] = { 92.5, 95.1, 139, 300 }, + [6] = { 91.5, 95, 139, 300 }, + [7] = { 54.2, 83.6, 4012, 300 }, + [8] = { 53.6, 83.4, 4012, 300 }, + [9] = { 53.2, 83, 4012, 300 }, + [10] = { 53.6, 82.8, 4012, 180 }, + [11] = { 54.3, 82.6, 4012, 300 }, + [12] = { 53.1, 82.5, 4012, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [60536] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [60537] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [60538] = { + ["coords"] = { + [1] = { 53.1, 41.5, 14, 180 }, + }, + ["fac"] = "H", + ["lvl"] = "58", + }, + [60539] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "58", + }, + [60540] = { + ["coords"] = { + [1] = { 56.1, 65.5, 5024, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "38", + }, + [60541] = { + ["coords"] = { + [1] = { 57.7, 64.9, 5024, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "38", + }, + [60542] = { + ["coords"] = { + [1] = { 55.7, 64.2, 5024, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "39", + }, + [60543] = { + ["coords"] = { + [1] = { 47.4, 67.8, 5024, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "33", + }, + [60544] = { + ["coords"] = { + [1] = { 45.6, 50.1, 5024, 180 }, + }, + ["lvl"] = "48", + }, + [60545] = { + ["coords"] = { + [1] = { 60.7, 52.6, 5024, 285 }, + [2] = { 59.7, 49.2, 5024, 186 }, + [3] = { 57.3, 48.4, 5024, 232 }, + [4] = { 52.2, 47.3, 5024, 223 }, + [5] = { 54.5, 47, 5024, 219 }, + [6] = { 42, 45, 5024, 191 }, + [7] = { 56.4, 44.9, 5024, 190 }, + [8] = { 49.3, 43.8, 5024, 185 }, + [9] = { 51, 42.8, 5024, 254 }, + [10] = { 44, 41, 5024, 196 }, + [11] = { 55, 40.3, 5024, 282 }, + [12] = { 53.5, 39.2, 5024, 198 }, + [13] = { 54.8, 36.6, 5024, 257 }, + [14] = { 44.6, 35.9, 5024, 197 }, + [15] = { 47.7, 34.2, 5024, 188 }, + }, + ["lvl"] = "44-46", + }, + [60546] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "27", + }, + [60547] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "27", + }, + [60548] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "55", + }, + [60549] = { + ["coords"] = { + [1] = { 22.4, 55.6, 1519, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [60550] = { + ["coords"] = { + [1] = { 28.5, 27.9, 1519, 180 }, + [2] = { 31.8, 92.3, 5581, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [60551] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "55", + }, + [60552] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "55", + }, + [60553] = { + ["coords"] = { + [1] = { 45, 47.2, 1519, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [60554] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "55", + }, + [60555] = { + ["coords"] = { + [1] = { 41.1, 49.4, 1519, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [60556] = { + ["coords"] = { + [1] = { 23.9, 44.4, 1519, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [60557] = { + ["coords"] = { + [1] = { 24.1, 44.4, 1519, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [60558] = { + ["coords"] = { + [1] = { 20.4, 44.6, 1519, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "42", + }, + [60559] = { + ["coords"] = { + [1] = { 34.8, 38.2, 1519, 180 }, + [2] = { 35.2, 97.9, 5581, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [60560] = { + ["coords"] = { + [1] = { 22.9, 45.3, 1519, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "27", + }, + [60561] = { + ["coords"] = { + [1] = { 28.1, 20.7, 1519, 180 }, + [2] = { 31.6, 88.5, 5581, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "42", + }, + [60562] = { + ["coords"] = { + [1] = { 28.2, 25.4, 1519, 180 }, + [2] = { 31.6, 91, 5581, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [60563] = { + ["coords"] = { + [1] = { 40.3, 52.7, 1519, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [60564] = { + ["coords"] = { + [1] = { 22.3, 45.4, 1519, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "49", + }, + [60565] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [60566] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "30", + }, + [60567] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "7", + }, + [60568] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "55", + }, + [60569] = { + ["coords"] = { + [1] = { 35.4, 29.2, 1519, 180 }, + [2] = { 35.5, 93.1, 5581, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "2", + }, + [60570] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "25", + }, + [60571] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "3", + }, + [60572] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [60573] = { + ["coords"] = { + [1] = { 23.8, 40.7, 1519, 180 }, + [2] = { 29.2, 99.2, 5581, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [60574] = { + ["coords"] = { + [1] = { 27.2, 38.8, 1519, 180 }, + [2] = { 31.1, 98.2, 5581, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [60575] = { + ["coords"] = { + [1] = { 27.2, 30.6, 1519, 300 }, + [2] = { 31.1, 93.8, 5581, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [60576] = { + ["coords"] = { + [1] = { 29.5, 22.8, 1519, 180 }, + [2] = { 32.3, 89.6, 5581, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [60577] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [60578] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [60579] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [60580] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "35", + }, + [60581] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "35", + }, + [60582] = { + ["coords"] = { + [1] = { 40.4, 48.5, 1519, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [60583] = { + ["coords"] = { + [1] = { 40.5, 48.4, 1519, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [60584] = { + ["coords"] = { + [1] = { 40.4, 48.3, 1519, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [60585] = { + ["coords"] = { + [1] = { 40.3, 48.3, 1519, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [60586] = { + ["coords"] = { + [1] = { 41.1, 49.5, 1519, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [60587] = { + ["coords"] = { + [1] = { 28.3, 20.7, 1519, 180 }, + [2] = { 31.7, 88.5, 5581, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "22", + }, + [60588] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "22", + }, + [60589] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "22", + }, + [60590] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "22", + }, + [60591] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "22", + }, + [60592] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "25", + }, + [60593] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "25", + }, + [60594] = { + ["coords"] = { + [1] = { 28.5, 14.7, 1519, 180 }, + [2] = { 31.8, 85.3, 5581, 180 }, + }, + ["lvl"] = "1", + }, + [60595] = { + ["coords"] = { + [1] = { 30.2, 15.5, 1519, 180 }, + [2] = { 32.7, 85.7, 5581, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [60596] = { + ["coords"] = { + [1] = { 80.1, 78, 5087, 18000 }, + [2] = { 60, 64.1, 5087, 18000 }, + [3] = { 60.3, 60.1, 5087, 18000 }, + [4] = { 69.4, 58.4, 5087, 18000 }, + [5] = { 65.7, 54.8, 5087, 18000 }, + [6] = { 64.4, 51.6, 5087, 18000 }, + [7] = { 60.2, 51.4, 5087, 18000 }, + [8] = { 67.8, 51, 5087, 18000 }, + [9] = { 65.1, 43.4, 5087, 18000 }, + [10] = { 69.7, 38.7, 5087, 18000 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [60597] = { + ["coords"] = { + [1] = { 44.9, 56.1, 5087, 18000 }, + [2] = { 61.5, 45.3, 5087, 18000 }, + [3] = { 67.1, 45.1, 5087, 18000 }, + [4] = { 69.8, 45.1, 5087, 18000 }, + [5] = { 66.1, 44.4, 5087, 18000 }, + [6] = { 66, 42.5, 5087, 18000 }, + [7] = { 61.4, 41.7, 5087, 18000 }, + [8] = { 56.2, 40.5, 5087, 18000 }, + [9] = { 37.5, 40.5, 5087, 18000 }, + [10] = { 65.5, 40.4, 5087, 18000 }, + [11] = { 60.6, 40.1, 5087, 18000 }, + [12] = { 72, 39.8, 5087, 18000 }, + [13] = { 62.2, 38.7, 5087, 18000 }, + [14] = { 52.4, 37.3, 5087, 18000 }, + [15] = { 72.1, 37.2, 5087, 18000 }, + [16] = { 60.6, 37.1, 5087, 18000 }, + [17] = { 56.3, 36.7, 5087, 18000 }, + [18] = { 34.3, 36.5, 5087, 18000 }, + [19] = { 65.5, 36.5, 5087, 18000 }, + [20] = { 40.5, 36.5, 5087, 18000 }, + [21] = { 67.2, 34.2, 5087, 18000 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [60598] = { + ["coords"] = { + [1] = { 46.4, 56.3, 5087, 18000 }, + [2] = { 45.1, 52.6, 5087, 18000 }, + [3] = { 47.8, 47.7, 5087, 18000 }, + [4] = { 44, 41.8, 5087, 18000 }, + [5] = { 49.1, 38.6, 5087, 18000 }, + [6] = { 52.4, 37.3, 5087, 18000 }, + [7] = { 44.2, 34.7, 5087, 18000 }, + [8] = { 45.1, 28.9, 5087, 18000 }, + [9] = { 45, 21, 5087, 18000 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [60599] = { + ["coords"] = { + [1] = { 47.9, 56.2, 5087, 18000 }, + [2] = { 48.3, 49.8, 5087, 18000 }, + [3] = { 45.9, 48.8, 5087, 18000 }, + [4] = { 44.3, 43.3, 5087, 18000 }, + [5] = { 43.1, 41.5, 5087, 18000 }, + [6] = { 50.3, 40.5, 5087, 18000 }, + [7] = { 51.7, 40.1, 5087, 18000 }, + [8] = { 62.9, 37.5, 5087, 18000 }, + [9] = { 61.6, 37.3, 5087, 18000 }, + [10] = { 50.5, 36.9, 5087, 18000 }, + [11] = { 43, 35.4, 5087, 18000 }, + [12] = { 44.8, 33.5, 5087, 18000 }, + [13] = { 47.8, 27.5, 5087, 18000 }, + [14] = { 45.3, 25, 5087, 18000 }, + [15] = { 47.9, 21.1, 5087, 18000 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [60600] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [60601] = { + ["coords"] = { + [1] = { 65.4, 79.9, 5087, 18000 }, + [2] = { 71.6, 79.8, 5087, 18000 }, + [3] = { 71.9, 74.4, 5087, 18000 }, + [4] = { 74.3, 74.2, 5087, 18000 }, + [5] = { 80.5, 74.1, 5087, 18000 }, + [6] = { 65.1, 73.6, 5087, 18000 }, + [7] = { 67.3, 68.1, 5087, 18000 }, + [8] = { 64.8, 63.7, 5087, 18000 }, + [9] = { 63.2, 60.8, 5087, 18000 }, + [10] = { 67.3, 59.1, 5087, 18000 }, + [11] = { 74.3, 54.8, 5087, 18000 }, + [12] = { 76.8, 54.3, 5087, 18000 }, + [13] = { 71.7, 54.3, 5087, 18000 }, + [14] = { 69.5, 53.8, 5087, 18000 }, + [15] = { 76, 52.8, 5087, 18000 }, + [16] = { 76.9, 51.4, 5087, 18000 }, + [17] = { 71.9, 50.7, 5087, 18000 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [60602] = { + ["coords"] = { + [1] = { 70.6, 81.8, 5087, 18000 }, + [2] = { 66.3, 81.4, 5087, 18000 }, + [3] = { 78, 79, 5087, 18000 }, + [4] = { 74.5, 78.6, 5087, 18000 }, + [5] = { 59.2, 77.9, 5087, 18000 }, + [6] = { 77.8, 75, 5087, 18000 }, + [7] = { 62.9, 74.5, 5087, 18000 }, + [8] = { 70.5, 71.8, 5087, 18000 }, + [9] = { 66.8, 71.4, 5087, 18000 }, + [10] = { 69.6, 68.3, 5087, 18000 }, + [11] = { 74.7, 64.5, 5087, 18000 }, + [12] = { 77.1, 64.4, 5087, 18000 }, + [13] = { 63, 63.6, 5087, 18000 }, + [14] = { 71.2, 62.8, 5087, 18000 }, + [15] = { 64.9, 61, 5087, 18000 }, + [16] = { 74.5, 60.9, 5087, 18000 }, + [17] = { 72.4, 60.2, 5087, 18000 }, + [18] = { 77.3, 60, 5087, 18000 }, + [19] = { 55.9, 46.9, 5087, 18000 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [60603] = { + ["coords"] = { + [1] = { 70.8, 80.4, 5087, 18000 }, + [2] = { 66.3, 80.4, 5087, 18000 }, + [3] = { 56.7, 79.1, 5087, 18000 }, + [4] = { 80.1, 78.6, 5087, 18000 }, + [5] = { 63, 78.2, 5087, 18000 }, + [6] = { 80.6, 76.6, 5087, 18000 }, + [7] = { 57, 74.3, 5087, 18000 }, + [8] = { 59.6, 64.4, 5087, 18000 }, + [9] = { 59.7, 60.3, 5087, 18000 }, + [10] = { 69.7, 58.6, 5087, 18000 }, + [11] = { 65.8, 55.3, 5087, 18000 }, + [12] = { 62.2, 54.3, 5087, 18000 }, + [13] = { 68, 50.9, 5087, 18000 }, + [14] = { 64.3, 50.6, 5087, 18000 }, + [15] = { 60, 50.6, 5087, 18000 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [60604] = { + ["coords"] = { + [1] = { 63.1, 25.9, 5087, 18000 }, + [2] = { 72.3, 25.8, 5087, 18000 }, + [3] = { 52.3, 23, 5087, 18000 }, + [4] = { 59, 22.7, 5087, 18000 }, + [5] = { 54.9, 18.7, 5087, 18000 }, + [6] = { 69.5, 18.6, 5087, 18000 }, + [7] = { 67.5, 18.6, 5087, 18000 }, + [8] = { 56.9, 18.5, 5087, 18000 }, + [9] = { 54.2, 15.5, 5087, 18000 }, + [10] = { 67.3, 14.1, 5087, 18000 }, + [11] = { 69.4, 10.8, 5087, 18000 }, + [12] = { 55.9, 10.3, 5087, 18000 }, + [13] = { 68.4, 6.6, 5087, 18000 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [60605] = { + ["coords"] = { + [1] = { 56.4, 73.5, 5024, 300 }, + [2] = { 54.5, 71.8, 5024, 198 }, + [3] = { 58.1, 71.1, 5024, 205 }, + [4] = { 60.7, 71, 5024, 276 }, + [5] = { 51.8, 69.9, 5024, 222 }, + [6] = { 49.7, 69.9, 5024, 277 }, + [7] = { 54.5, 68.9, 5024, 180 }, + [8] = { 63.2, 65.4, 5024, 206 }, + [9] = { 64.4, 62.8, 5024, 239 }, + [10] = { 66.8, 59.5, 5024, 270 }, + [11] = { 68.7, 58.5, 5024, 180 }, + [12] = { 66.8, 55.1, 5024, 180 }, + [13] = { 69.1, 54.5, 5024, 227 }, + [14] = { 69, 51, 5024, 233 }, + [15] = { 69.1, 49.9, 5024, 228 }, + }, + ["lvl"] = "41-43", + }, + [60606] = { + ["coords"] = { + [1] = { 52.4, 34.3, 41, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [60607] = { + ["coords"] = { + [1] = { 44.5, 54.6, 8, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [60608] = { + ["coords"] = { + [1] = { 41.5, 63.9, 41, 300 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [60609] = { + ["coords"] = { + [1] = { 27.3, 37.1, 4, 300 }, + [2] = { 68.6, 5.3, 33, 300 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [60610] = { + ["coords"] = { + [1] = { 37, 27, 4, 300 }, + }, + ["lvl"] = "60", + }, + [60611] = { + ["coords"] = { + [1] = { 61.5, 69.9, 5024, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "37", + }, + [60612] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [60613] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [60614] = { + ["coords"] = { + [1] = { 42.1, 79.6, 33, 180 }, + }, + ["lvl"] = "60", + }, + [60615] = { + ["coords"] = { + [1] = { 29.4, 24.6, 28, 300 }, + [2] = { 30.3, 24.5, 28, 180 }, + [3] = { 30.9, 24.2, 28, 180 }, + [4] = { 30.2, 23.7, 28, 300 }, + [5] = { 29.9, 23.1, 28, 300 }, + [6] = { 85.9, 39, 85, 300 }, + [7] = { 86.7, 39, 85, 180 }, + [8] = { 87.3, 38.7, 85, 180 }, + [9] = { 86.6, 38.2, 85, 300 }, + [10] = { 86.4, 37.6, 85, 300 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [60616] = { + ["coords"] = { + [1] = { 29.6, 24.6, 28, 180 }, + [2] = { 30.7, 24.5, 28, 180 }, + [3] = { 28.9, 24.3, 28, 300 }, + [4] = { 30.3, 24.1, 28, 180 }, + [5] = { 30.5, 23.3, 28, 180 }, + [6] = { 31.2, 23, 28, 300 }, + [7] = { 86.1, 39, 85, 180 }, + [8] = { 87.1, 38.9, 85, 180 }, + [9] = { 85.4, 38.7, 85, 300 }, + [10] = { 86.7, 38.5, 85, 180 }, + [11] = { 86.9, 37.8, 85, 180 }, + [12] = { 87.6, 37.5, 85, 300 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [60617] = { + ["coords"] = { + [1] = { 29.5, 25, 28, 180 }, + [2] = { 29.8, 24.8, 28, 180 }, + [3] = { 29.1, 24.7, 28, 300 }, + [4] = { 29.7, 24.6, 28, 180 }, + [5] = { 30.3, 24.1, 28, 180 }, + [6] = { 30.3, 24, 28, 180 }, + [7] = { 30.4, 23.4, 28, 180 }, + [8] = { 30.1, 23.2, 28, 180 }, + [9] = { 30.7, 23, 28, 180 }, + [10] = { 30.3, 22.7, 28, 180 }, + [11] = { 30.4, 22.6, 28, 180 }, + [12] = { 86, 39.4, 85, 180 }, + [13] = { 86.3, 39.3, 85, 180 }, + [14] = { 85.6, 39.1, 85, 300 }, + [15] = { 86.2, 39, 85, 180 }, + [16] = { 86.8, 38.5, 85, 180 }, + [17] = { 86.9, 37.9, 85, 180 }, + [18] = { 86.6, 37.7, 85, 180 }, + [19] = { 87.1, 37.5, 85, 180 }, + [20] = { 86.8, 37.2, 85, 180 }, + [21] = { 86.9, 37.2, 85, 180 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [60618] = { + ["coords"] = { + [1] = { 29.6, 24.4, 28, 180 }, + [2] = { 86.1, 38.9, 85, 180 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [60619] = { + ["coords"] = { + [1] = { 31.2, 23.9, 28, 300 }, + [2] = { 87.6, 38.4, 85, 300 }, + }, + ["lvl"] = "45", + ["rnk"] = "1", + }, + [60620] = { + ["coords"] = { + [1] = { 30.5, 24.5, 28, 180 }, + [2] = { 86.9, 39, 85, 180 }, + }, + ["lvl"] = "45", + }, + [60621] = { + ["coords"] = { + [1] = { 32.4, 43.8, 148, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [60622] = { + ["coords"] = { + [1] = { 59.2, 60.2, 440, 180 }, + [2] = { 44.9, 69.7, 1941, 180 }, + }, + ["lvl"] = "55", + }, + [60623] = { + ["coords"] = { + [1] = { 81.6, 82.4, 47, 180 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [60624] = { + ["coords"] = { + [1] = { 6, 46.9, 3, 180 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [60625] = { + ["coords"] = { + [1] = { 41.4, 17.7, 14, 180 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [60626] = { + ["coords"] = { + [1] = { 41.4, 19, 14, 180 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [60627] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "45", + }, + [60628] = { + ["coords"] = { + [1] = { 26.9, 6.7, 1537, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [60629] = { + ["coords"] = { + [1] = { 27.3, 7.5, 1537, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [60630] = { + ["coords"] = { + [1] = { 73, 53.5, 1, 120 }, + }, + ["lvl"] = "12", + }, + [60631] = { + ["coords"] = { + [1] = { 36.2, 12.7, 15, 180 }, + [2] = { 54.3, 60.5, 17, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "40", + }, + [60632] = { + ["coords"] = { + [1] = { 50.5, 53.1, 15, 300 }, + }, + ["lvl"] = "44", + }, + [60633] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [60634] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [60635] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [60636] = { + ["coords"] = { + [1] = { 61.4, 24, 17, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "14", + }, + [60637] = { + ["coords"] = { + [1] = { 61.2, 24, 17, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "20", + }, + [60638] = { + ["coords"] = { + [1] = { 61.5, 24, 17, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "40", + }, + [60639] = { + ["coords"] = { + [1] = { 61.8, 38.5, 17, 300 }, + [2] = { 61.2, 24.6, 17, 300 }, + [3] = { 61.3, 24.5, 17, 300 }, + [4] = { 62.6, 24.3, 17, 300 }, + [5] = { 61.8, 24.2, 17, 300 }, + [6] = { 61.3, 23.9, 17, 300 }, + [7] = { 61.9, 23.7, 17, 300 }, + [8] = { 61.4, 23.5, 17, 300 }, + [9] = { 61.6, 23.4, 17, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "40", + }, + [60640] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [60641] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "24", + }, + [60642] = { + ["coords"] = { + [1] = { 24.9, 52.5, 33, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "48", + }, + [60643] = { + ["coords"] = { + [1] = { 57.9, 69.2, 357, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "47", + }, + [60644] = { + ["coords"] = { + [1] = { 43.4, 80.5, 33, 300 }, + }, + ["lvl"] = "55", + }, + [60645] = { + ["coords"] = { + [1] = { 37.5, 71.8, 14, 300 }, + [2] = { 64.8, 34.5, 17, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "20", + }, + [60646] = { + ["coords"] = { + [1] = { 37.9, 72, 14, 300 }, + [2] = { 65, 34.7, 17, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "18", + }, + [60647] = { + ["coords"] = { + [1] = { 37.5, 71.4, 14, 300 }, + [2] = { 37.6, 71.1, 14, 300 }, + [3] = { 64.7, 34.4, 17, 300 }, + [4] = { 64.8, 34.4, 17, 300 }, + [5] = { 64.9, 34.2, 17, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [60648] = { + ["coords"] = { + [1] = { 54.3, 1, 17, 300 }, + [2] = { 79.5, 81.4, 331, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [60649] = { + ["coords"] = { + [1] = { 54.2, 1.3, 17, 300 }, + [2] = { 79.3, 81.8, 331, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [60650] = { + ["coords"] = { + [1] = { 54.3, 1, 17, 300 }, + [2] = { 79.4, 81.4, 331, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [60651] = { + ["coords"] = { + [1] = { 54.2, 1.3, 17, 300 }, + [2] = { 79.3, 81.9, 331, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [60652] = { + ["coords"] = { + [1] = { 46.8, 61, 215, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [60653] = { + ["coords"] = { + [1] = { 29, 45, 28, 300 }, + [2] = { 85.5, 58.5, 85, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [60654] = { + ["coords"] = { + [1] = { 26.1, 46.8, 28, 300 }, + [2] = { 28.6, 45.4, 28, 300 }, + [3] = { 29.4, 44.5, 28, 300 }, + [4] = { 82.7, 60.2, 85, 300 }, + [5] = { 85.1, 58.8, 85, 300 }, + [6] = { 85.9, 57.9, 85, 300 }, + [7] = { 86.5, 57.5, 85, 300 }, + [8] = { 85.8, 57.3, 85, 300 }, + [9] = { 85.9, 57.1, 85, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [60655] = { + ["coords"] = { + [1] = { 86.3, 57.9, 85, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [60656] = { + ["coords"] = { + [1] = { 26.1, 46.6, 28, 300 }, + [2] = { 82.8, 59.9, 85, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [60657] = { + ["coords"] = { + [1] = { 58, 40.9, 409, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "7-8", + }, + [60658] = { + ["coords"] = { + [1] = { 37.4, 50.3, 408, 300 }, + }, + ["lvl"] = "51", + }, + [60659] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [60660] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [60661] = { + ["coords"] = { + [1] = { 29.6, 71.3, 16, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [60662] = { + ["coords"] = { + [1] = { 49.8, 48.5, 8, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [60663] = { + ["coords"] = { + [1] = { 48.9, 47.8, 8, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [60664] = { + ["coords"] = { + [1] = { 50.1, 50.4, 8, 120 }, + [2] = { 49.4, 49.9, 8, 120 }, + [3] = { 50.9, 48.8, 8, 120 }, + [4] = { 48.6, 47.2, 8, 120 }, + [5] = { 48.8, 46.2, 8, 120 }, + [6] = { 49.7, 44.7, 8, 120 }, + [7] = { 50.7, 44.1, 8, 120 }, + [8] = { 50.9, 44.1, 8, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [60665] = { + ["coords"] = { + [1] = { 50.7, 47.7, 8, 120 }, + [2] = { 50.5, 47.5, 8, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [60666] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "55", + }, + [60667] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [60668] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [60669] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [60670] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [60671] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "60", + }, + [60672] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "60", + }, + [60673] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [60674] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [60675] = { + ["coords"] = {}, + ["lvl"] = "58-59", + }, + [60676] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [60677] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [60678] = { + ["coords"] = { + [1] = { 61.8, 38.6, 17, 300 }, + [2] = { 61.6, 24.5, 17, 300 }, + [3] = { 61.8, 24.1, 17, 317 }, + [4] = { 61.9, 23.9, 17, 300 }, + [5] = { 61.6, 23.6, 17, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "4", + }, + [60679] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "62", + ["rnk"] = "1", + }, + [60680] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "62", + ["rnk"] = "1", + }, + [60681] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "62", + ["rnk"] = "1", + }, + [60682] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "62", + ["rnk"] = "1", + }, + [60683] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "62", + ["rnk"] = "1", + }, + [60697] = { + ["coords"] = { + [1] = { 94.1, 62.8, 46, 480 }, + [2] = { 96.3, 58.3, 46, 480 }, + [3] = { 93.7, 58.1, 46, 480 }, + [4] = { 93.7, 57.2, 46, 480 }, + [5] = { 97.1, 51.2, 46, 480 }, + }, + ["lvl"] = "51-52", + }, + [60698] = { + ["coords"] = {}, + ["lvl"] = "52", + ["rnk"] = "1", + }, + [60700] = { + ["coords"] = { + [1] = { 44.8, 14.4, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "14", + }, + [60701] = { + ["coords"] = { + [1] = { 82.4, 55.6, 400, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "25", + }, + [60702] = { + ["coords"] = { + [1] = { 45.3, 14.8, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "12", + }, + [60703] = { + ["coords"] = { + [1] = { 45.2, 14.8, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "15", + }, + [60704] = { + ["coords"] = { + [1] = { 33.2, 50.1, 10, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [60705] = { + ["coords"] = { + [1] = { 32.2, 48.4, 10, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "28", + }, + [60706] = { + ["coords"] = { + [1] = { 34.9, 47.9, 10, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "32", + }, + [60707] = { + ["coords"] = { + [1] = { 32.5, 49.5, 10, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "32", + }, + [60708] = { + ["coords"] = { + [1] = { 43.3, 39, 14, 300 }, + }, + ["lvl"] = "10", + }, + [60709] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "20", + ["rnk"] = "1", + }, + [60710] = { + ["coords"] = { + [1] = { 39.8, 29.6, 361, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [60711] = { + ["coords"] = { + [1] = { 48.7, 37.1, 361, 300 }, + [2] = { 2.4, 19.3, 616, 300 }, + }, + ["lvl"] = "54", + }, + [60712] = { + ["coords"] = { + [1] = { 55.6, 43.7, 5103, 18000 }, + [2] = { 56.6, 41, 5103, 18000 }, + [3] = { 52.4, 40.3, 5103, 18000 }, + [4] = { 60.1, 39, 5103, 18000 }, + }, + ["lvl"] = "48", + }, + [60713] = { + ["coords"] = { + [1] = { 88.6, 59.5, 46, 300 }, + [2] = { 91.2, 58.2, 46, 300 }, + [3] = { 92.3, 58, 46, 300 }, + [4] = { 84.6, 56.3, 46, 300 }, + [5] = { 92, 54.9, 46, 300 }, + [6] = { 90.6, 54.6, 46, 300 }, + [7] = { 92.6, 53.5, 46, 300 }, + [8] = { 92.2, 52.9, 46, 300 }, + [9] = { 90.6, 52.1, 46, 300 }, + [10] = { 87.9, 48.5, 46, 300 }, + [11] = { 88.6, 42.8, 46, 300 }, + [12] = { 92.5, 42, 46, 300 }, + [13] = { 89.4, 41.7, 46, 300 }, + [14] = { 85.2, 40.2, 46, 300 }, + [15] = { 87.7, 36.5, 46, 300 }, + [16] = { 85.1, 33.7, 46, 300 }, + [17] = { 93.8, 33.4, 46, 300 }, + [18] = { 81.4, 32, 46, 300 }, + [19] = { 82.3, 28.6, 46, 300 }, + [20] = { 86.1, 28, 46, 300 }, + [21] = { 85.2, 23.4, 46, 300 }, + [22] = { 84.4, 22.6, 46, 300 }, + [23] = { 85.3, 21.6, 46, 300 }, + }, + ["lvl"] = "50-51", + }, + [60714] = { + ["coords"] = { + [1] = { 56.6, 16.9, 15, 300 }, + }, + ["lvl"] = "40", + }, + [60715] = { + ["coords"] = { + [1] = { 57.8, 45.2, 5103, 604800 }, + }, + ["lvl"] = "52", + ["rnk"] = "1", + }, + [60716] = { + ["coords"] = { + [1] = { 90.4, 65.9, 46, 480 }, + [2] = { 94.3, 65.6, 46, 480 }, + [3] = { 93.3, 64.4, 46, 480 }, + [4] = { 92, 63.2, 46, 480 }, + [5] = { 90.1, 62.8, 46, 480 }, + [6] = { 90.7, 62.7, 46, 300 }, + [7] = { 89.8, 62.6, 46, 480 }, + [8] = { 93.3, 61.7, 46, 480 }, + [9] = { 97.1, 58.4, 46, 480 }, + [10] = { 96.3, 58.2, 46, 480 }, + [11] = { 93.7, 58, 46, 480 }, + [12] = { 93.7, 57.3, 46, 480 }, + [13] = { 95.4, 56.4, 46, 480 }, + [14] = { 96, 56.4, 46, 480 }, + [15] = { 96.7, 55.7, 46, 480 }, + [16] = { 98.3, 52.7, 46, 480 }, + [17] = { 98.3, 52.6, 46, 480 }, + [18] = { 96.5, 51, 46, 480 }, + [19] = { 97.2, 49, 46, 480 }, + }, + ["lvl"] = "48-49", + ["rnk"] = "1", + }, + [60717] = { + ["coords"] = { + [1] = { 71.5, 81.1, 5103, 18000 }, + [2] = { 71.9, 80.9, 5103, 18000 }, + [3] = { 73.6, 77, 5103, 18000 }, + [4] = { 66.4, 72.1, 5103, 18000 }, + [5] = { 88.5, 69.7, 5103, 18000 }, + [6] = { 63.5, 66.4, 5103, 18000 }, + [7] = { 63.9, 66.3, 5103, 18000 }, + [8] = { 64.7, 63.7, 5103, 18000 }, + [9] = { 52.4, 63.1, 5103, 18000 }, + [10] = { 52.1, 62.9, 5103, 18000 }, + [11] = { 63.5, 62.2, 5103, 18000 }, + [12] = { 44.6, 60.9, 5103, 18000 }, + [13] = { 88.8, 60.9, 5103, 18000 }, + [14] = { 71.4, 59.7, 5103, 18000 }, + [15] = { 79.1, 59.7, 5103, 18000 }, + [16] = { 71.9, 59.5, 5103, 18000 }, + [17] = { 78.9, 59.2, 5103, 18000 }, + [18] = { 71.8, 58.7, 5103, 18000 }, + [19] = { 41.2, 58.3, 5103, 18000 }, + [20] = { 64.8, 57.5, 5103, 18000 }, + [21] = { 41.5, 57.5, 5103, 18000 }, + [22] = { 65.1, 57.1, 5103, 18000 }, + [23] = { 83.5, 56.1, 5103, 18000 }, + [24] = { 83.3, 56.1, 5103, 18000 }, + [25] = { 83.6, 55.2, 5103, 18000 }, + [26] = { 65.4, 52.8, 5103, 18000 }, + [27] = { 65.5, 52.4, 5103, 18000 }, + [28] = { 66.3, 51.4, 5103, 18000 }, + [29] = { 81.1, 39.9, 5103, 18000 }, + [30] = { 80.7, 39.9, 5103, 18000 }, + [31] = { 80.3, 23.4, 5103, 18000 }, + }, + ["lvl"] = "52-53", + ["rnk"] = "1", + }, + [60718] = { + ["coords"] = { + [1] = { 46.4, 87.7, 5103, 18000 }, + [2] = { 47.7, 85.7, 5103, 18000 }, + [3] = { 43.7, 83.8, 5103, 18000 }, + [4] = { 53.6, 82.6, 5103, 18000 }, + [5] = { 46.3, 80.4, 5103, 18000 }, + [6] = { 50.4, 78.4, 5103, 18000 }, + [7] = { 88.6, 70.3, 5103, 18000 }, + [8] = { 63.8, 66.8, 5103, 18000 }, + [9] = { 39.1, 66.2, 5103, 18000 }, + [10] = { 70, 65.3, 5103, 18000 }, + [11] = { 67.3, 61.7, 5103, 18000 }, + [12] = { 60.3, 60.1, 5103, 18000 }, + [13] = { 24.7, 59.2, 5103, 18000 }, + [14] = { 80.9, 51.1, 5103, 18000 }, + [15] = { 29.1, 44.4, 5103, 18000 }, + [16] = { 38.8, 41.8, 5103, 18000 }, + }, + ["lvl"] = "51-52", + ["rnk"] = "1", + }, + [60719] = { + ["coords"] = { + [1] = { 43.1, 88.4, 5103, 18000 }, + [2] = { 43.1, 87.2, 5103, 18000 }, + [3] = { 37.1, 86.9, 5103, 18000 }, + [4] = { 37.6, 86.9, 5103, 18000 }, + [5] = { 47.5, 86.2, 5103, 18000 }, + [6] = { 58.1, 80.8, 5103, 18000 }, + [7] = { 53.8, 67.5, 5103, 18000 }, + [8] = { 39, 66.9, 5103, 18000 }, + [9] = { 63.3, 62.5, 5103, 18000 }, + [10] = { 60, 60.4, 5103, 18000 }, + [11] = { 24.9, 58.5, 5103, 18000 }, + [12] = { 78.1, 54.9, 5103, 18000 }, + [13] = { 84.8, 52.8, 5103, 18000 }, + [14] = { 42.1, 43.7, 5103, 18000 }, + [15] = { 57, 42.7, 5103, 18000 }, + [16] = { 39.1, 42, 5103, 18000 }, + [17] = { 45.3, 40.9, 5103, 18000 }, + [18] = { 60.4, 40.4, 5103, 18000 }, + [19] = { 57.7, 36.3, 5103, 18000 }, + [20] = { 43, 35.9, 5103, 18000 }, + [21] = { 50.4, 32.5, 5103, 18000 }, + [22] = { 50, 32.2, 5103, 18000 }, + }, + ["lvl"] = "50-52", + ["rnk"] = "1", + }, + [60720] = { + ["coords"] = { + [1] = { 66.4, 72.5, 5103, 18000 }, + [2] = { 66.2, 72.3, 5103, 18000 }, + [3] = { 69.8, 64.9, 5103, 18000 }, + [4] = { 74.3, 63.2, 5103, 18000 }, + [5] = { 61.5, 62.4, 5103, 18000 }, + [6] = { 61.3, 62.1, 5103, 18000 }, + [7] = { 63.2, 61.9, 5103, 18000 }, + [8] = { 45, 61.2, 5103, 18000 }, + [9] = { 83.9, 60.7, 5103, 18000 }, + [10] = { 84.3, 60.7, 5103, 18000 }, + [11] = { 44.9, 60.5, 5103, 18000 }, + [12] = { 83.9, 60.4, 5103, 18000 }, + [13] = { 72.8, 58.5, 5103, 18000 }, + [14] = { 40.3, 58.1, 5103, 18000 }, + [15] = { 40.7, 57.9, 5103, 18000 }, + [16] = { 40.4, 57.6, 5103, 18000 }, + [17] = { 78, 54.4, 5103, 18000 }, + [18] = { 81.2, 51.2, 5103, 18000 }, + [19] = { 81.3, 50.8, 5103, 18000 }, + [20] = { 81, 50.6, 5103, 18000 }, + [21] = { 42.2, 44.1, 5103, 18000 }, + [22] = { 42.4, 43.6, 5103, 18000 }, + [23] = { 56.8, 43, 5103, 18000 }, + [24] = { 56.3, 42.9, 5103, 18000 }, + [25] = { 56.6, 42.5, 5103, 18000 }, + [26] = { 45.6, 41.3, 5103, 18000 }, + [27] = { 45.7, 40.8, 5103, 18000 }, + [28] = { 59.9, 40.7, 5103, 18000 }, + [29] = { 59.5, 40.3, 5103, 18000 }, + [30] = { 60, 39.9, 5103, 18000 }, + [31] = { 57.3, 36.6, 5103, 18000 }, + [32] = { 56.8, 36.4, 5103, 18000 }, + [33] = { 39.4, 36.3, 5103, 18000 }, + [34] = { 42.7, 36.2, 5103, 18000 }, + [35] = { 39, 36.1, 5103, 18000 }, + [36] = { 42.7, 35.7, 5103, 18000 }, + [37] = { 39.4, 35.7, 5103, 18000 }, + [38] = { 39, 35.6, 5103, 18000 }, + [39] = { 50.1, 32.9, 5103, 18000 }, + [40] = { 45.2, 32.8, 5103, 18000 }, + [41] = { 80.3, 22.7, 5103, 18000 }, + }, + ["lvl"] = "51-52", + ["rnk"] = "1", + }, + [60721] = { + ["coords"] = { + [1] = { 36.4, 90, 5103, 18000 }, + [2] = { 40.4, 89.4, 5103, 18000 }, + [3] = { 34.6, 89, 5103, 18000 }, + [4] = { 58.2, 87, 5103, 18000 }, + [5] = { 33.8, 86.9, 5103, 18000 }, + [6] = { 52.7, 86.2, 5103, 18000 }, + [7] = { 67.5, 82.3, 5103, 18000 }, + [8] = { 65.5, 82, 5103, 18000 }, + [9] = { 26.3, 80.5, 5103, 18000 }, + [10] = { 65.3, 79.9, 5103, 18000 }, + [11] = { 63.1, 79.6, 5103, 18000 }, + [12] = { 40.6, 78.9, 5103, 18000 }, + [13] = { 27.8, 78.4, 5103, 18000 }, + [14] = { 63.2, 77.8, 5103, 18000 }, + [15] = { 41.6, 77.8, 5103, 18000 }, + [16] = { 40.5, 77.7, 5103, 18000 }, + [17] = { 26.7, 77.6, 5103, 18000 }, + [18] = { 45.2, 76.8, 5103, 18000 }, + [19] = { 73.9, 76.7, 5103, 18000 }, + [20] = { 73.5, 76.5, 5103, 18000 }, + [21] = { 45.9, 76.3, 5103, 18000 }, + [22] = { 45.4, 76.2, 5103, 18000 }, + [23] = { 27.9, 76.1, 5103, 18000 }, + [24] = { 53.9, 75.8, 5103, 18000 }, + [25] = { 28.4, 75.5, 5103, 18000 }, + [26] = { 52.1, 74.9, 5103, 18000 }, + [27] = { 63.3, 74.5, 5103, 18000 }, + [28] = { 53.5, 74, 5103, 18000 }, + [29] = { 28.1, 73.6, 5103, 18000 }, + [30] = { 58.9, 73.2, 5103, 18000 }, + [31] = { 47.3, 73, 5103, 18000 }, + [32] = { 58.5, 72.3, 5103, 18000 }, + [33] = { 46, 72.3, 5103, 18000 }, + [34] = { 48.4, 71.8, 5103, 18000 }, + [35] = { 59.3, 71.6, 5103, 18000 }, + [36] = { 63.4, 71.1, 5103, 18000 }, + [37] = { 46.3, 70.3, 5103, 18000 }, + [38] = { 35.1, 70.1, 5103, 18000 }, + [39] = { 36.3, 67.8, 5103, 18000 }, + [40] = { 46.2, 67.8, 5103, 18000 }, + [41] = { 32.3, 66.9, 5103, 18000 }, + [42] = { 64.3, 66.7, 5103, 18000 }, + [43] = { 59.6, 66.5, 5103, 18000 }, + [44] = { 35.9, 66.4, 5103, 18000 }, + [45] = { 36.6, 66, 5103, 18000 }, + [46] = { 26.1, 65.4, 5103, 18000 }, + [47] = { 60.6, 65.2, 5103, 18000 }, + [48] = { 25.5, 64.4, 5103, 18000 }, + [49] = { 63.8, 64.2, 5103, 18000 }, + [50] = { 31, 63.8, 5103, 18000 }, + [51] = { 61.1, 63.7, 5103, 18000 }, + [52] = { 34.2, 63.3, 5103, 18000 }, + [53] = { 25.3, 63.1, 5103, 18000 }, + [54] = { 30.9, 62.8, 5103, 18000 }, + [55] = { 34.4, 62.5, 5103, 18000 }, + [56] = { 34.4, 61.2, 5103, 18000 }, + [57] = { 64.4, 60, 5103, 18000 }, + [58] = { 62.1, 59.5, 5103, 18000 }, + [59] = { 61.5, 59.1, 5103, 18000 }, + [60] = { 29.5, 58.3, 5103, 18000 }, + [61] = { 32.3, 57.7, 5103, 18000 }, + [62] = { 21.2, 57.5, 5103, 18000 }, + [63] = { 64.8, 56.6, 5103, 18000 }, + [64] = { 23.2, 56.3, 5103, 18000 }, + [65] = { 31, 56.3, 5103, 18000 }, + [66] = { 23.8, 56, 5103, 18000 }, + [67] = { 61.8, 54.5, 5103, 18000 }, + [68] = { 45.7, 54, 5103, 18000 }, + [69] = { 34.3, 54, 5103, 18000 }, + [70] = { 35.1, 53.8, 5103, 18000 }, + [71] = { 32.9, 51, 5103, 18000 }, + [72] = { 29, 51, 5103, 18000 }, + [73] = { 29.2, 50.2, 5103, 18000 }, + [74] = { 29.6, 49.6, 5103, 18000 }, + [75] = { 37.1, 49.1, 5103, 18000 }, + [76] = { 19.6, 48.8, 5103, 18000 }, + [77] = { 87.8, 48.7, 5103, 18000 }, + [78] = { 20.4, 48.5, 5103, 18000 }, + [79] = { 88.9, 48.3, 5103, 18000 }, + [80] = { 52.3, 48.2, 5103, 18000 }, + [81] = { 37, 48.1, 5103, 18000 }, + [82] = { 89.9, 47.3, 5103, 18000 }, + [83] = { 22.8, 47, 5103, 18000 }, + [84] = { 44.7, 46.9, 5103, 18000 }, + [85] = { 62.5, 46.2, 5103, 18000 }, + [86] = { 63.2, 44.8, 5103, 18000 }, + [87] = { 24.6, 44.2, 5103, 18000 }, + [88] = { 26.9, 43.3, 5103, 18000 }, + [89] = { 50.1, 42.8, 5103, 18000 }, + [90] = { 50, 42.3, 5103, 18000 }, + [91] = { 46.5, 42.3, 5103, 18000 }, + [92] = { 46, 41.8, 5103, 18000 }, + [93] = { 30.6, 41, 5103, 18000 }, + [94] = { 80.9, 40.6, 5103, 18000 }, + [95] = { 48.6, 40.5, 5103, 18000 }, + [96] = { 49, 40.4, 5103, 18000 }, + [97] = { 30.2, 40, 5103, 18000 }, + [98] = { 24.9, 38.9, 5103, 18000 }, + [99] = { 84.9, 38.6, 5103, 18000 }, + [100] = { 25.1, 38.3, 5103, 18000 }, + [101] = { 83.7, 37.2, 5103, 18000 }, + [102] = { 47.6, 36.7, 5103, 18000 }, + [103] = { 23.1, 36.4, 5103, 18000 }, + [104] = { 31.1, 35.8, 5103, 18000 }, + [105] = { 47.9, 35.7, 5103, 18000 }, + [106] = { 36.9, 35.4, 5103, 18000 }, + [107] = { 28, 35, 5103, 18000 }, + [108] = { 35.8, 34.4, 5103, 18000 }, + [109] = { 59.6, 34.1, 5103, 18000 }, + [110] = { 34, 33.7, 5103, 18000 }, + [111] = { 61.5, 33.2, 5103, 18000 }, + [112] = { 34.5, 32.8, 5103, 18000 }, + [113] = { 41.3, 31.9, 5103, 18000 }, + [114] = { 61.8, 31.7, 5103, 18000 }, + [115] = { 80.9, 31.3, 5103, 18000 }, + [116] = { 38.1, 31, 5103, 18000 }, + [117] = { 81.9, 30.2, 5103, 18000 }, + [118] = { 80.5, 30.1, 5103, 18000 }, + [119] = { 52, 28.5, 5103, 18000 }, + [120] = { 80, 23, 5103, 18000 }, + [121] = { 78.1, 19.2, 5103, 18000 }, + [122] = { 78, 17, 5103, 18000 }, + }, + ["lvl"] = "49-50", + ["rnk"] = "1", + }, + [60722] = { + ["coords"] = { + [1] = { 58.1, 84.3, 5103, 18000 }, + [2] = { 53.2, 82.5, 5103, 18000 }, + [3] = { 53.1, 79.8, 5103, 18000 }, + [4] = { 57.8, 65.2, 5103, 18000 }, + [5] = { 43.1, 65.1, 5103, 18000 }, + [6] = { 28.8, 63.2, 5103, 18000 }, + [7] = { 67.7, 62, 5103, 18000 }, + [8] = { 76, 60.8, 5103, 18000 }, + [9] = { 60.4, 60.5, 5103, 18000 }, + [10] = { 75.5, 59.4, 5103, 18000 }, + [11] = { 77.7, 57.8, 5103, 18000 }, + [12] = { 75, 57.4, 5103, 18000 }, + [13] = { 55.3, 54.9, 5103, 18000 }, + [14] = { 57.1, 42, 5103, 18000 }, + [15] = { 34.7, 41.1, 5103, 18000 }, + }, + ["lvl"] = "53", + ["rnk"] = "1", + }, + [60723] = { + ["coords"] = { + [1] = { 55.9, 86.4, 5103, 18000 }, + [2] = { 47.3, 85.7, 5103, 18000 }, + [3] = { 43.2, 83.9, 5103, 18000 }, + [4] = { 65.2, 81.1, 5103, 18000 }, + [5] = { 46.8, 80.1, 5103, 18000 }, + [6] = { 73.4, 80, 5103, 18000 }, + [7] = { 46.3, 79.8, 5103, 18000 }, + [8] = { 41.7, 79, 5103, 18000 }, + [9] = { 49.8, 78.6, 5103, 18000 }, + [10] = { 27.3, 78.2, 5103, 18000 }, + [11] = { 46.9, 71.9, 5103, 18000 }, + [12] = { 31.7, 68.4, 5103, 18000 }, + [13] = { 26.6, 65.9, 5103, 18000 }, + [14] = { 70.4, 65, 5103, 18000 }, + [15] = { 70.2, 64.5, 5103, 18000 }, + [16] = { 60, 63.8, 5103, 18000 }, + [17] = { 34.5, 63.6, 5103, 18000 }, + [18] = { 67.3, 62.3, 5103, 18000 }, + [19] = { 75.3, 60.7, 5103, 18000 }, + [20] = { 88.9, 60.4, 5103, 18000 }, + [21] = { 25.5, 59.2, 5103, 18000 }, + [22] = { 62, 58.4, 5103, 18000 }, + [23] = { 75, 58.3, 5103, 18000 }, + [24] = { 40.7, 57.1, 5103, 18000 }, + [25] = { 53.2, 55.3, 5103, 18000 }, + [26] = { 54.4, 52.9, 5103, 18000 }, + [27] = { 84.5, 52.9, 5103, 18000 }, + [28] = { 83.9, 48.4, 5103, 18000 }, + [29] = { 83, 48, 5103, 18000 }, + [30] = { 28.8, 44.5, 5103, 18000 }, + [31] = { 34.8, 44.2, 5103, 18000 }, + [32] = { 28.8, 44.2, 5103, 18000 }, + [33] = { 38.7, 42.2, 5103, 18000 }, + [34] = { 34.7, 42, 5103, 18000 }, + [35] = { 34.7, 40.2, 5103, 18000 }, + [36] = { 48.4, 36.6, 5103, 18000 }, + [37] = { 31.9, 35.9, 5103, 18000 }, + [38] = { 43, 35.4, 5103, 18000 }, + [39] = { 45.5, 32.3, 5103, 18000 }, + [40] = { 81, 29.2, 5103, 18000 }, + }, + ["lvl"] = "52-53", + ["rnk"] = "1", + }, + [60724] = { + ["coords"] = { + [1] = { 44.8, 88.5, 5103, 18000 }, + [2] = { 44, 87.9, 5103, 18000 }, + [3] = { 37.5, 87.3, 5103, 18000 }, + [4] = { 41, 87, 5103, 18000 }, + [5] = { 41.2, 85.6, 5103, 18000 }, + [6] = { 56.9, 85.6, 5103, 18000 }, + [7] = { 43.6, 84.5, 5103, 18000 }, + [8] = { 53.3, 83.1, 5103, 18000 }, + [9] = { 34.8, 82.8, 5103, 18000 }, + [10] = { 36.3, 81.6, 5103, 18000 }, + [11] = { 50.2, 79.2, 5103, 18000 }, + [12] = { 53.5, 79.2, 5103, 18000 }, + [13] = { 57.6, 78.3, 5103, 18000 }, + [14] = { 58.7, 78.2, 5103, 18000 }, + [15] = { 37.4, 75.1, 5103, 18000 }, + [16] = { 36.9, 73.5, 5103, 18000 }, + [17] = { 39.4, 66.7, 5103, 18000 }, + [18] = { 85.9, 66.2, 5103, 18000 }, + [19] = { 58.2, 66.1, 5103, 18000 }, + [20] = { 58, 64.2, 5103, 18000 }, + [21] = { 76.3, 61.1, 5103, 18000 }, + [22] = { 76.1, 60.4, 5103, 18000 }, + [23] = { 71.3, 59.3, 5103, 18000 }, + [24] = { 75.3, 57.7, 5103, 18000 }, + [25] = { 56.8, 57.7, 5103, 18000 }, + [26] = { 75.1, 56.9, 5103, 18000 }, + [27] = { 57.3, 56.4, 5103, 18000 }, + [28] = { 53.2, 55.5, 5103, 18000 }, + [29] = { 53.4, 55.2, 5103, 18000 }, + [30] = { 54.4, 53.1, 5103, 18000 }, + [31] = { 54.6, 52.8, 5103, 18000 }, + }, + ["lvl"] = "53", + ["rnk"] = "1", + }, + [60725] = { + ["coords"] = { + [1] = { 92.4, 78, 5103, 18000 }, + [2] = { 89.3, 76.7, 5103, 18000 }, + [3] = { 89.2, 76.1, 5103, 18000 }, + [4] = { 92.9, 76, 5103, 18000 }, + [5] = { 88.2, 70.1, 5103, 18000 }, + [6] = { 85.9, 65.6, 5103, 18000 }, + [7] = { 84.2, 60.3, 5103, 18000 }, + [8] = { 78.4, 54.5, 5103, 18000 }, + }, + ["lvl"] = "54", + ["rnk"] = "1", + }, + [60726] = { + ["coords"] = { + [1] = { 92.3, 77.7, 5103, 18000 }, + [2] = { 92.7, 77.1, 5103, 18000 }, + [3] = { 89.6, 76.4, 5103, 18000 }, + [4] = { 92.6, 76.2, 5103, 18000 }, + [5] = { 86.3, 66, 5103, 18000 }, + [6] = { 88.6, 60.5, 5103, 18000 }, + [7] = { 87.6, 56, 5103, 18000 }, + [8] = { 87.4, 55.5, 5103, 18000 }, + [9] = { 84.6, 52.4, 5103, 18000 }, + }, + ["lvl"] = "54", + ["rnk"] = "1", + }, + [60727] = { + ["coords"] = { + [1] = { 65.3, 47.3, 15, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [60728] = { + ["coords"] = { + [1] = { 72.2, 47, 15, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [60729] = { + ["coords"] = { + [1] = { 59.6, 41.1, 15, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [60730] = { + ["coords"] = { + [1] = { 46.5, 23.8, 15, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [60731] = { + ["coords"] = { + [1] = { 66, 49.2, 15, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [60732] = { + ["coords"] = { + [1] = { 67.2, 51, 15, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [60733] = { + ["coords"] = { + [1] = { 70.3, 50.6, 15, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [60734] = { + ["coords"] = { + [1] = { 74.1, 20, 5103, 604800 }, + }, + ["lvl"] = "55", + ["rnk"] = "1", + }, + [60735] = { + ["coords"] = { + [1] = { 55.6, 81.6, 5103, 604800 }, + }, + ["lvl"] = "54", + ["rnk"] = "1", + }, + [60736] = { + ["coords"] = { + [1] = { 58.3, 45.3, 5103, 604800 }, + }, + ["lvl"] = "54", + ["rnk"] = "1", + }, + [60737] = { + ["coords"] = { + [1] = { 95.4, 82.1, 5103, 604800 }, + }, + ["lvl"] = "57", + ["rnk"] = "1", + }, + [60738] = { + ["coords"] = {}, + ["lvl"] = "53", + ["rnk"] = "1", + }, + [60739] = { + ["coords"] = { + [1] = { 33.7, 17.6, 28, 300 }, + [2] = { 89.9, 32.4, 85, 300 }, + }, + ["lvl"] = "15", + }, + [60740] = { + ["coords"] = { + [1] = { 34.2, 21.2, 28, 300 }, + [2] = { 90.5, 35.8, 85, 300 }, + }, + ["lvl"] = "10", + }, + [60741] = { + ["coords"] = { + [1] = { 33.4, 22.2, 28, 300 }, + [2] = { 33.3, 22, 28, 300 }, + [3] = { 34, 20.7, 28, 300 }, + [4] = { 33.4, 17.9, 28, 300 }, + [5] = { 89.7, 36.8, 85, 300 }, + [6] = { 89.6, 36.5, 85, 300 }, + [7] = { 90.2, 35.4, 85, 300 }, + [8] = { 89.7, 32.6, 85, 300 }, + }, + ["lvl"] = "35", + }, + [60742] = { + ["coords"] = { + [1] = { 68.9, 81.4, 5097, 604800 }, + [2] = { 68.6, 81.3, 5097, 604800 }, + [3] = { 69.2, 80.9, 5097, 604800 }, + [4] = { 68.8, 80.9, 5097, 604800 }, + [5] = { 68.2, 80.8, 5097, 604800 }, + [6] = { 69.3, 80.6, 5097, 604800 }, + [7] = { 69, 80.4, 5097, 604800 }, + [8] = { 68.6, 80.4, 5097, 604800 }, + [9] = { 68.3, 80.2, 5097, 604800 }, + [10] = { 73, 76.1, 5097, 604800 }, + [11] = { 73.9, 76, 5097, 604800 }, + [12] = { 73.3, 75.8, 5097, 604800 }, + [13] = { 73.6, 75.7, 5097, 604800 }, + [14] = { 71.7, 70.8, 5097, 604800 }, + [15] = { 72.3, 69.4, 5097, 604800 }, + [16] = { 71.4, 69.3, 5097, 604800 }, + [17] = { 67.9, 59.9, 5097, 604800 }, + [18] = { 67.1, 59.5, 5097, 604800 }, + [19] = { 67.9, 59.4, 5097, 604800 }, + [20] = { 66.5, 59, 5097, 604800 }, + [21] = { 67.5, 58.8, 5097, 604800 }, + [22] = { 68.5, 58.7, 5097, 604800 }, + [23] = { 66.6, 58.4, 5097, 604800 }, + [24] = { 67.9, 58.1, 5097, 604800 }, + [25] = { 67.2, 57.7, 5097, 604800 }, + [26] = { 68, 56.8, 5097, 604800 }, + [27] = { 66.5, 47, 5097, 604800 }, + [28] = { 65.3, 46.6, 5097, 604800 }, + [29] = { 67.2, 45.5, 5097, 604800 }, + [30] = { 65.2, 45.1, 5097, 604800 }, + [31] = { 71.5, 44.3, 5097, 604800 }, + [32] = { 72.2, 44.3, 5097, 604800 }, + [33] = { 76.2, 43.9, 5097, 604800 }, + [34] = { 77.2, 43.6, 5097, 604800 }, + [35] = { 71.3, 43.6, 5097, 604800 }, + [36] = { 71.2, 43.6, 5097, 604800 }, + [37] = { 71.7, 43.6, 5097, 604800 }, + [38] = { 72, 43.1, 5097, 604800 }, + [39] = { 76.2, 42.9, 5097, 604800 }, + [40] = { 71.8, 42.7, 5097, 604800 }, + [41] = { 77.1, 42.3, 5097, 604800 }, + [42] = { 76.6, 41.9, 5097, 604800 }, + [43] = { 71, 35.6, 5097, 604800 }, + [44] = { 70.2, 35.3, 5097, 604800 }, + [45] = { 69.6, 35, 5097, 604800 }, + [46] = { 71.3, 34.5, 5097, 604800 }, + [47] = { 70.1, 33.9, 5097, 604800 }, + [48] = { 70.8, 33.7, 5097, 604800 }, + [49] = { 71.4, 33.5, 5097, 604800 }, + [50] = { 70.1, 33.4, 5097, 604800 }, + [51] = { 70.5, 33.2, 5097, 604800 }, + [52] = { 70.9, 32.7, 5097, 604800 }, + [53] = { 59.3, 30.9, 5097, 604800 }, + [54] = { 60.2, 30.9, 5097, 604800 }, + [55] = { 60.9, 30, 5097, 604800 }, + [56] = { 59.1, 29.8, 5097, 604800 }, + [57] = { 60.6, 29, 5097, 604800 }, + [58] = { 59, 28.6, 5097, 604800 }, + [59] = { 59.9, 28.4, 5097, 604800 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [60743] = { + ["coords"] = { + [1] = { 73.7, 76.7, 5097, 604800 }, + [2] = { 73.2, 76.6, 5097, 604800 }, + [3] = { 71.5, 69.9, 5097, 604800 }, + [4] = { 61.2, 54, 5097, 604800 }, + [5] = { 60.9, 53.5, 5097, 604800 }, + [6] = { 76.6, 42.7, 5097, 604800 }, + [7] = { 70.7, 34.9, 5097, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [60744] = { + ["coords"] = { + [1] = { 70.7, 78.8, 5097, 604800 }, + [2] = { 66.2, 44.6, 5097, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [60745] = { + ["coords"] = { + [1] = { 72.1, 70.4, 5097, 604800 }, + [2] = { 71.9, 69.3, 5097, 604800 }, + [3] = { 66.6, 57.9, 5097, 604800 }, + [4] = { 60.6, 54.1, 5097, 604800 }, + [5] = { 66.4, 45.9, 5097, 604800 }, + [6] = { 65.6, 45.8, 5097, 604800 }, + [7] = { 59.8, 30.2, 5097, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [60746] = { + ["coords"] = { + [1] = { 60.9, 54.6, 5097, 604800 }, + [2] = { 72.1, 54.3, 5097, 604800 }, + [3] = { 65.1, 53, 5097, 604800 }, + [4] = { 76.4, 43.1, 5097, 604800 }, + [5] = { 77.1, 43, 5097, 604800 }, + [6] = { 60.2, 29.6, 5097, 604800 }, + [7] = { 59.6, 29, 5097, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [60747] = { + ["coords"] = { + [1] = { 63.6, 26.5, 5097, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [60748] = { + ["coords"] = { + [1] = { 70.4, 23.4, 5097, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [60749] = { + ["coords"] = { + [1] = { 85.7, 91, 400, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + ["rnk"] = "1", + }, + [60750] = { + ["coords"] = { + [1] = { 91, 85.7, 400, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "42", + }, + [60751] = { + ["coords"] = { + [1] = { 86.1, 91.9, 400, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [60752] = { + ["coords"] = { + [1] = { 87.8, 91.9, 400, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "48", + }, + [60753] = { + ["coords"] = { + [1] = { 86.1, 90.6, 400, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "43", + }, + [60754] = { + ["coords"] = { + [1] = { 86.4, 91.3, 400, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "48", + }, + [60755] = { + ["coords"] = { + [1] = { 90.8, 86.1, 400, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [60757] = { + ["coords"] = { + [1] = { 62.8, 64, 15, 300 }, + [2] = { 64.6, 62.2, 15, 300 }, + [3] = { 67.2, 60.3, 15, 300 }, + [4] = { 65.1, 59.5, 15, 300 }, + [5] = { 63.2, 58.2, 15, 300 }, + [6] = { 67.2, 58.2, 15, 300 }, + [7] = { 63.8, 55.3, 15, 300 }, + [8] = { 62.7, 54.4, 15, 300 }, + [9] = { 62.7, 51.7, 15, 300 }, + [10] = { 61.6, 51, 15, 300 }, + [11] = { 61.5, 49.7, 15, 300 }, + [12] = { 61.1, 47.4, 15, 300 }, + }, + ["lvl"] = "37-39", + }, + [60758] = { + ["coords"] = { + [1] = { 38.9, 32, 15, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [60759] = { + ["coords"] = { + [1] = { 51.3, 48.5, 4, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "58", + }, + [60760] = { + ["coords"] = { + [1] = { 51.5, 48.6, 4, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "54", + }, + [60761] = { + ["coords"] = { + [1] = { 51.1, 48.5, 4, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "54", + }, + [60762] = { + ["coords"] = { + [1] = { 89.3, 22.7, 46, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "51", + }, + [60763] = { + ["coords"] = { + [1] = { 88.7, 23.2, 46, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "52", + }, + [60764] = { + ["coords"] = { + [1] = { 88.2, 20, 46, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "51", + }, + [60765] = { + ["coords"] = { + [1] = { 93.7, 23.1, 46, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "53", + ["rnk"] = "1", + }, + [60766] = { + ["coords"] = { + [1] = { 93.2, 23, 46, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [60767] = { + ["coords"] = { + [1] = { 92, 29.6, 46, 300 }, + [2] = { 92.1, 27.7, 46, 300 }, + [3] = { 91.9, 24.7, 46, 300 }, + [4] = { 89.6, 23.6, 46, 300 }, + [5] = { 95, 23.2, 46, 300 }, + [6] = { 95, 22.9, 46, 300 }, + [7] = { 95.3, 22.9, 46, 300 }, + [8] = { 90.7, 22.7, 46, 300 }, + [9] = { 91, 22.5, 46, 300 }, + [10] = { 90.7, 22.4, 46, 300 }, + [11] = { 89.4, 22.3, 46, 300 }, + [12] = { 89.6, 22.3, 46, 300 }, + [13] = { 89.7, 21.6, 46, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [60768] = { + ["coords"] = { + [1] = { 93, 23.9, 46, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "48", + }, + [60769] = { + ["coords"] = { + [1] = { 90.1, 22.4, 46, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "54", + }, + [60770] = { + ["coords"] = { + [1] = { 90.1, 22.6, 46, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "57", + ["rnk"] = "1", + }, + [60771] = { + ["coords"] = { + [1] = { 92.9, 22.8, 46, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "47", + }, + [60772] = { + ["coords"] = { + [1] = { 90.1, 22.8, 46, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "54", + }, + [60773] = { + ["coords"] = { + [1] = { 90, 23, 46, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "49", + }, + [60774] = { + ["coords"] = { + [1] = { 95.1, 22.8, 46, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "52", + }, + [60775] = { + ["coords"] = { + [1] = { 89.4, 24.5, 46, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "54", + ["rnk"] = "1", + }, + [60776] = { + ["coords"] = { + [1] = { 89.4, 24.5, 46, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "52", + }, + [60777] = { + ["coords"] = { + [1] = { 88.4, 24, 46, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [60778] = { + ["coords"] = { + [1] = { 40.5, 60.5, 45, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "45", + }, + [60779] = { + ["coords"] = { + [1] = { 20.2, 54.7, 45, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [60780] = { + ["coords"] = { + [1] = { 20.6, 55.8, 45, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [60781] = { + ["coords"] = { + [1] = { 20, 56.5, 45, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [60782] = { + ["coords"] = { + [1] = { 20.6, 61.7, 45, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [60783] = { + ["coords"] = { + [1] = { 20.4, 61.8, 45, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [60784] = { + ["coords"] = { + [1] = { 20.6, 61.7, 45, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [60785] = { + ["coords"] = { + [1] = { 21.9, 63.1, 45, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [60786] = { + ["coords"] = { + [1] = { 21.9, 62.6, 45, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [60787] = { + ["coords"] = { + [1] = { 21, 61.3, 45, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [60788] = { + ["coords"] = { + [1] = { 21.3, 62.1, 45, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [60789] = { + ["coords"] = { + [1] = { 20.9, 63.7, 45, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [60790] = { + ["coords"] = { + [1] = { 21.4, 63.4, 45, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [60791] = { + ["coords"] = { + [1] = { 67.2, 18.7, 4, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "52", + }, + [60792] = { + ["coords"] = { + [1] = { 61.6, 22.6, 4, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "54", + ["rnk"] = "1", + }, + [60793] = { + ["coords"] = { + [1] = { 63.4, 20, 4, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "56", + ["rnk"] = "1", + }, + [60794] = { + ["coords"] = { + [1] = { 65.7, 23.4, 4, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "48", + }, + [60795] = { + ["coords"] = { + [1] = { 64.6, 18.3, 4, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "54", + ["rnk"] = "1", + }, + [60796] = { + ["coords"] = { + [1] = { 65.9, 23.4, 4, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [60797] = { + ["coords"] = { + [1] = { 65.7, 23.7, 4, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [60798] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [60799] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "15", + }, + [60800] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [60801] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "20", + }, + [60802] = { + ["coords"] = { + [1] = { 17.9, 65.9, 46, 300 }, + [2] = { 94.1, 92.3, 5581, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [60803] = { + ["coords"] = { + [1] = { 19.5, 65.8, 46, 300 }, + [2] = { 95.5, 92.2, 5581, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [60804] = { + ["coords"] = { + [1] = { 20.7, 65.8, 46, 300 }, + [2] = { 96.6, 92.2, 5581, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [60805] = { + ["coords"] = { + [1] = { 19.8, 67.4, 46, 300 }, + [2] = { 18.2, 66.9, 46, 300 }, + [3] = { 16.5, 64.5, 46, 300 }, + [4] = { 95.8, 93.6, 5581, 300 }, + [5] = { 94.3, 93.2, 5581, 300 }, + [6] = { 92.8, 91, 5581, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [60806] = { + ["coords"] = { + [1] = { 48.9, 8.7, 33, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [60807] = { + ["coords"] = { + [1] = { 58.3, 22.6, 440, 300 }, + [2] = { 58.4, 22.4, 440, 300 }, + [3] = { 58.1, 22, 440, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [60808] = { + ["coords"] = { + [1] = { 58.4, 22.3, 440, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "40", + }, + [60809] = { + ["coords"] = { + [1] = { 58.2, 22.4, 440, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [60810] = { + ["coords"] = { + [1] = { 37.7, 68.4, 1519, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [60811] = { + ["coords"] = { + [1] = { 36.4, 76.6, 1519, 300 }, + [2] = { 37.3, 74, 1519, 300 }, + [3] = { 37.2, 72.2, 1519, 300 }, + [4] = { 37.2, 72.1, 1519, 300 }, + [5] = { 36.4, 71.2, 1519, 300 }, + [6] = { 37.1, 69, 1519, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [60812] = { + ["coords"] = { + [1] = { 36.4, 75.5, 1519, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [60813] = { + ["coords"] = { + [1] = { 40, 78.2, 215, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [60814] = { + ["coords"] = { + [1] = { 39.9, 79.8, 215, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [60815] = { + ["coords"] = { + [1] = { 37.7, 77.1, 215, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [60816] = { + ["coords"] = { + [1] = { 39.3, 79, 215, 480 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [60817] = { + ["coords"] = { + [1] = { 39.1, 77.5, 215, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [60818] = { + ["coords"] = { + [1] = { 38.4, 78.5, 215, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [60819] = { + ["coords"] = { + [1] = { 38.8, 77.9, 215, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [60820] = { + ["coords"] = { + [1] = { 38.6, 79.3, 215, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "14", + }, + [60821] = { + ["coords"] = { + [1] = { 39.6, 80.4, 215, 1 }, + }, + ["fac"] = "H", + ["lvl"] = "8", + }, + [60822] = { + ["coords"] = { + [1] = { 36.6, 34.4, 17, 300 }, + [2] = { 60.9, 12.8, 215, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [60823] = { + ["coords"] = { + [1] = { 36.5, 34.4, 17, 300 }, + [2] = { 60.7, 12.9, 215, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [60824] = { + ["coords"] = { + [1] = { 35.1, 32, 17, 300 }, + [2] = { 58.1, 8, 215, 300 }, + [3] = { 81.2, 99.4, 406, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [60825] = { + ["coords"] = { + [1] = { 35.7, 33.6, 17, 300 }, + [2] = { 59.3, 11.2, 215, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [60826] = { + ["coords"] = { + [1] = { 36, 31.4, 17, 300 }, + [2] = { 59.8, 6.9, 215, 300 }, + [3] = { 82.7, 98.5, 406, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [60827] = { + ["coords"] = { + [1] = { 21.9, 61.5, 45, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [60828] = { + ["coords"] = { + [1] = { 94.4, 64.5, 46, 64800 }, + }, + ["lvl"] = "52", + ["rnk"] = "1", + }, + [60829] = { + ["coords"] = { + [1] = { 72.9, 70.6, 5103, 604800 }, + }, + ["lvl"] = "52", + ["rnk"] = "1", + }, + [60830] = { + ["coords"] = { + [1] = { 88.2, 71.2, 46, 480 }, + [2] = { 87.4, 71.2, 46, 480 }, + [3] = { 88.4, 70.7, 46, 480 }, + [4] = { 89, 70.5, 46, 480 }, + [5] = { 87.9, 69.8, 46, 480 }, + [6] = { 89.3, 69, 46, 480 }, + [7] = { 90.3, 68.3, 46, 480 }, + [8] = { 88.9, 68.2, 46, 480 }, + [9] = { 89.8, 67.9, 46, 480 }, + [10] = { 90.3, 67.4, 46, 480 }, + [11] = { 89.8, 67.1, 46, 480 }, + [12] = { 89.8, 66.8, 46, 480 }, + [13] = { 91.4, 66.6, 46, 480 }, + [14] = { 93, 66.5, 46, 480 }, + [15] = { 91.1, 66.5, 46, 480 }, + [16] = { 91.1, 66.4, 46, 480 }, + [17] = { 89.4, 66.2, 46, 480 }, + [18] = { 90.4, 66.1, 46, 480 }, + [19] = { 94.1, 66.1, 46, 480 }, + [20] = { 90, 66, 46, 480 }, + [21] = { 92.8, 65.8, 46, 480 }, + [22] = { 90.9, 65.6, 46, 480 }, + [23] = { 94.5, 65.3, 46, 480 }, + [24] = { 93.6, 65.1, 46, 480 }, + [25] = { 89.2, 64.9, 46, 480 }, + [26] = { 91.6, 64.9, 46, 480 }, + [27] = { 89.6, 64.6, 46, 480 }, + [28] = { 95.2, 64.5, 46, 480 }, + [29] = { 95.5, 64.2, 46, 480 }, + [30] = { 91.4, 63.8, 46, 480 }, + [31] = { 89.6, 63.7, 46, 480 }, + [32] = { 94.8, 62.2, 46, 480 }, + [33] = { 93.2, 62, 46, 480 }, + [34] = { 96.5, 50, 46, 480 }, + [35] = { 97.8, 50, 46, 480 }, + [36] = { 96.9, 49.9, 46, 480 }, + [37] = { 95.8, 49.1, 46, 480 }, + [38] = { 98.1, 48.3, 46, 480 }, + [39] = { 97.4, 48.1, 46, 480 }, + [40] = { 96.3, 47.6, 46, 480 }, + }, + ["lvl"] = "47-48", + ["rnk"] = "1", + }, + [60831] = { + ["coords"] = { + [1] = { 87.9, 70.6, 46, 480 }, + [2] = { 88.7, 69.4, 46, 480 }, + [3] = { 89.9, 67.3, 46, 480 }, + [4] = { 90.4, 66.9, 46, 480 }, + [5] = { 89.9, 66.4, 46, 480 }, + [6] = { 91.8, 65.8, 46, 300 }, + [7] = { 91.7, 65.8, 46, 300 }, + [8] = { 92.5, 64.4, 46, 480 }, + [9] = { 94.6, 64.3, 46, 480 }, + [10] = { 94.5, 64.3, 46, 480 }, + [11] = { 91.9, 63.5, 46, 480 }, + [12] = { 90.7, 62.8, 46, 300 }, + [13] = { 90.3, 61.8, 46, 480 }, + [14] = { 96.1, 49.6, 46, 480 }, + [15] = { 97.1, 48.9, 46, 480 }, + [16] = { 97.2, 48.9, 46, 300 }, + }, + ["lvl"] = "49-51", + ["rnk"] = "1", + }, + [60832] = { + ["coords"] = { + [1] = { 75.6, 68.3, 46, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [60833] = { + ["coords"] = { + [1] = { 76, 68.2, 46, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "52", + ["rnk"] = "1", + }, + [60834] = { + ["coords"] = { + [1] = { 76.1, 67.6, 46, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "45", + }, + [60835] = { + ["coords"] = { + [1] = { 55.4, 53.9, 46, 300 }, + }, + ["lvl"] = "57", + }, + [60836] = { + ["coords"] = { + [1] = { 88, 71.6, 46, 600 }, + }, + ["lvl"] = "51-52", + ["rnk"] = "1", + }, + [60837] = { + ["coords"] = {}, + ["lvl"] = "53", + ["rnk"] = "1", + }, + [60838] = { + ["coords"] = { + [1] = { 55.6, 8.7, 4, 300 }, + [2] = { 68, 8.6, 4, 300 }, + [3] = { 67.2, 8.5, 4, 300 }, + [4] = { 63.7, 8.4, 4, 300 }, + [5] = { 56.3, 8.2, 4, 300 }, + [6] = { 68.3, 7.2, 4, 300 }, + [7] = { 38.4, 74.5, 8, 300 }, + [8] = { 56.6, 74.4, 8, 300 }, + [9] = { 55.4, 74.2, 8, 300 }, + [10] = { 50.2, 74.1, 8, 300 }, + [11] = { 39.5, 73.9, 8, 300 }, + [12] = { 57, 72.3, 8, 300 }, + [13] = { 41.1, 68.9, 8, 300 }, + [14] = { 48.6, 68.6, 8, 300 }, + [15] = { 43.6, 67.5, 8, 300 }, + [16] = { 46.7, 67.2, 8, 300 }, + [17] = { 50.6, 66.6, 8, 300 }, + [18] = { 44.3, 65.6, 8, 300 }, + [19] = { 53.3, 58.9, 8, 300 }, + }, + ["lvl"] = "47-48", + }, + [60839] = { + ["coords"] = { + [1] = { 56.8, 6.6, 4, 300 }, + [2] = { 61.5, 73.9, 8, 300 }, + [3] = { 40.2, 71.5, 8, 300 }, + [4] = { 47, 70.4, 8, 300 }, + [5] = { 56.7, 69.7, 8, 300 }, + [6] = { 48.2, 68.3, 8, 300 }, + [7] = { 54.1, 66.8, 8, 300 }, + [8] = { 47.3, 65.8, 8, 300 }, + [9] = { 54.3, 64.4, 8, 300 }, + [10] = { 60.3, 63.2, 8, 300 }, + [11] = { 46.8, 61.8, 8, 300 }, + [12] = { 41.5, 61.8, 8, 300 }, + [13] = { 54.2, 59.6, 8, 300 }, + }, + ["lvl"] = "49-50", + }, + [60840] = { + ["coords"] = { + [1] = { 61.9, 8.6, 4, 300 }, + [2] = { 69, 7.8, 4, 300 }, + [3] = { 64.8, 7.1, 4, 300 }, + [4] = { 47.6, 74.4, 8, 300 }, + [5] = { 58, 73.3, 8, 300 }, + [6] = { 51.9, 72.2, 8, 300 }, + [7] = { 51.5, 70.5, 8, 300 }, + [8] = { 61.4, 69.9, 8, 300 }, + [9] = { 46, 66.5, 8, 300 }, + [10] = { 43.8, 66.3, 8, 300 }, + [11] = { 41.5, 63.7, 8, 300 }, + [12] = { 52.8, 62.3, 8, 300 }, + [13] = { 45.9, 59.5, 8, 300 }, + [14] = { 43.2, 58.3, 8, 300 }, + }, + ["lvl"] = "47-48", + }, + [60841] = { + ["coords"] = { + [1] = { 65.7, 8.5, 4, 300 }, + [2] = { 62.4, 7.4, 4, 300 }, + [3] = { 60.2, 75.3, 8, 300 }, + [4] = { 53.2, 74.3, 8, 300 }, + [5] = { 48.4, 72.6, 8, 300 }, + [6] = { 58.4, 70.9, 8, 300 }, + [7] = { 49.7, 70.6, 8, 300 }, + [8] = { 53.2, 68.4, 8, 300 }, + [9] = { 50.2, 67.2, 8, 300 }, + [10] = { 52.6, 66.5, 8, 300 }, + [11] = { 58.2, 64.6, 8, 300 }, + [12] = { 51.7, 61.7, 8, 300 }, + [13] = { 42.9, 61.6, 8, 300 }, + [14] = { 56.9, 61.2, 8, 300 }, + [15] = { 47.4, 59.6, 8, 300 }, + }, + ["lvl"] = "50-51", + }, + [60842] = { + ["coords"] = { + [1] = { 69.9, 11.1, 4, 300 }, + [2] = { 59.3, 78, 8, 300 }, + [3] = { 62.3, 68.8, 8, 300 }, + [4] = { 43, 68.4, 8, 300 }, + [5] = { 37.4, 68.3, 8, 300 }, + [6] = { 39.4, 68.1, 8, 300 }, + [7] = { 55.1, 67.7, 8, 300 }, + [8] = { 42.3, 67.4, 8, 300 }, + [9] = { 59.5, 67.2, 8, 300 }, + [10] = { 61.3, 66.4, 8, 300 }, + [11] = { 48.9, 65.9, 8, 300 }, + [12] = { 40.1, 65.5, 8, 300 }, + [13] = { 38.4, 65.5, 8, 300 }, + [14] = { 59.6, 65.1, 8, 300 }, + [15] = { 55.8, 63.1, 8, 300 }, + [16] = { 45.9, 62.7, 8, 300 }, + [17] = { 48.5, 61.6, 8, 300 }, + [18] = { 54.5, 61.3, 8, 300 }, + [19] = { 43.9, 60.5, 8, 300 }, + }, + ["lvl"] = "48-50", + }, + [60843] = { + ["coords"] = { + [1] = { 66.3, 10.3, 4, 300 }, + [2] = { 54.1, 76.9, 8, 300 }, + }, + ["lvl"] = "53", + }, + [60844] = { + ["coords"] = { + [1] = { 38.8, 66.8, 8, 300 }, + }, + ["lvl"] = "54", + }, + [60845] = { + ["coords"] = { + [1] = { 58.3, 64.1, 14, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "11", + }, + [60846] = { + ["coords"] = { + [1] = { 58.2, 63, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "10", + }, + [60847] = { + ["coords"] = { + [1] = { 37.3, 35.6, 17, 300 }, + [2] = { 37.3, 35.3, 17, 300 }, + [3] = { 36.8, 35.2, 17, 300 }, + [4] = { 36.4, 35, 17, 300 }, + [5] = { 37, 34.9, 17, 300 }, + [6] = { 37.2, 34.9, 17, 300 }, + [7] = { 36.3, 34.7, 17, 300 }, + [8] = { 36.6, 34.4, 17, 300 }, + [9] = { 36.3, 34.4, 17, 300 }, + [10] = { 62.3, 15.1, 215, 300 }, + [11] = { 62.4, 14.5, 215, 300 }, + [12] = { 61.4, 14.4, 215, 300 }, + [13] = { 60.6, 14, 215, 300 }, + [14] = { 61.7, 13.8, 215, 300 }, + [15] = { 62.1, 13.7, 215, 300 }, + [16] = { 60.3, 13.4, 215, 300 }, + [17] = { 61.1, 12.9, 215, 300 }, + [18] = { 60.4, 12.8, 215, 300 }, + }, + ["lvl"] = "10-11", + }, + [60848] = { + ["coords"] = { + [1] = { 38, 35.7, 17, 300 }, + [2] = { 37.7, 35.7, 17, 300 }, + [3] = { 37.5, 35.2, 17, 300 }, + [4] = { 36.5, 35.2, 17, 300 }, + [5] = { 37.2, 35.2, 17, 300 }, + [6] = { 63.7, 15.4, 215, 300 }, + [7] = { 63.1, 15.4, 215, 300 }, + [8] = { 62.7, 14.5, 215, 300 }, + [9] = { 60.9, 14.4, 215, 300 }, + [10] = { 62.1, 14.4, 215, 300 }, + }, + ["lvl"] = "9-10", + }, + [60849] = { + ["coords"] = { + [1] = { 37.6, 36.6, 17, 300 }, + [2] = { 37.4, 36.2, 17, 300 }, + [3] = { 38.2, 36.1, 17, 300 }, + [4] = { 37.6, 35.9, 17, 300 }, + [5] = { 37, 35, 17, 300 }, + [6] = { 37.8, 34.9, 17, 300 }, + [7] = { 38, 34.9, 17, 300 }, + [8] = { 37.4, 34.8, 17, 300 }, + [9] = { 37.2, 34.8, 17, 300 }, + [10] = { 62.9, 17.1, 215, 300 }, + [11] = { 62.5, 16.3, 215, 300 }, + [12] = { 64.2, 16.1, 215, 300 }, + [13] = { 63, 15.8, 215, 300 }, + [14] = { 61.8, 14.1, 215, 300 }, + [15] = { 63.4, 13.9, 215, 300 }, + [16] = { 63.8, 13.7, 215, 300 }, + [17] = { 62.6, 13.6, 215, 300 }, + [18] = { 62.2, 13.6, 215, 300 }, + }, + ["lvl"] = "11-12", + }, + [60850] = { + ["coords"] = { + [1] = { 53, 45.1, 4, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "54", + }, + [60851] = { + ["coords"] = { + [1] = { 36.3, 72.8, 1519, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [60852] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [60853] = { + ["coords"] = {}, + ["lvl"] = "49", + ["rnk"] = "1", + }, + [60854] = { + ["coords"] = { + [1] = { 77.6, 52, 10, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [60855] = { + ["coords"] = { + [1] = { 58.4, 15.1, 4, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [60856] = { + ["coords"] = { + [1] = { 40.6, 72.5, 440, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "42", + }, + [60857] = { + ["coords"] = { + [1] = { 86.4, 90.8, 400, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "44", + }, + [60858] = { + ["coords"] = { + [1] = { 31.3, 37.6, 40, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [60859] = { + ["coords"] = { + [1] = { 77.6, 52.1, 10, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "24", + }, + [60860] = { + ["coords"] = { + [1] = { 65.2, 54.5, 17, 120 }, + [2] = { 25.3, 82.3, 440, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [60861] = { + ["coords"] = { + [1] = { 65.3, 54.5, 17, 120 }, + [2] = { 65.2, 54.5, 17, 120 }, + [3] = { 65.2, 54.4, 17, 120 }, + [4] = { 65.2, 54.3, 17, 120 }, + [5] = { 65.1, 54.3, 17, 120 }, + [6] = { 65.2, 54.2, 17, 120 }, + [7] = { 65.1, 54.2, 17, 120 }, + [8] = { 65, 54.2, 17, 120 }, + [9] = { 65.1, 54.1, 17, 120 }, + [10] = { 64.9, 54.1, 17, 120 }, + [11] = { 64.9, 54, 17, 120 }, + [12] = { 65.1, 54, 17, 120 }, + [13] = { 64.9, 53.8, 17, 120 }, + [14] = { 25.4, 82.1, 440, 300 }, + [15] = { 25.7, 82, 440, 300 }, + [16] = { 25.4, 82, 440, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "40", + }, + [60862] = { + ["coords"] = { + [1] = { 48.5, 42.3, 4, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "49", + }, + [60863] = { + ["coords"] = { + [1] = { 34.3, 20.7, 215, 300 }, + [2] = { 87.8, 47.9, 405, 300 }, + [3] = { 21.9, 19.1, 1638, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [60864] = { + ["coords"] = { + [1] = { 34.6, 20.8, 215, 300 }, + [2] = { 88.2, 47.9, 405, 300 }, + [3] = { 23.7, 19.3, 1638, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [60865] = { + ["coords"] = { + [1] = { 34.4, 21.2, 215, 300 }, + [2] = { 87.9, 48.3, 405, 300 }, + [3] = { 22.4, 21.2, 1638, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [60866] = { + ["coords"] = { + [1] = { 36.6, 12.7, 15, 180 }, + [2] = { 54.5, 60.5, 17, 180 }, + }, + ["lvl"] = "1", + }, + [60867] = { + ["coords"] = { + [1] = { 36.6, 12.9, 15, 180 }, + [2] = { 54.5, 60.7, 17, 180 }, + }, + ["lvl"] = "1", + }, + [60868] = { + ["coords"] = { + [1] = { 36.3, 13, 15, 180 }, + [2] = { 54.3, 60.7, 17, 180 }, + }, + ["lvl"] = "1", + }, + [60869] = { + ["coords"] = { + [1] = { 85.2, 67.9, 46, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [60870] = { + ["coords"] = { + [1] = { 85.1, 67.7, 46, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "48", + }, + [60871] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "17-18", + }, + [60872] = { + ["coords"] = { + [1] = { 67.9, 46.4, 1537, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "38", + }, + [60873] = { + ["coords"] = { + [1] = { 49.2, 58.2, 46, 300 }, + [2] = { 48.7, 58.2, 46, 300 }, + [3] = { 49.2, 57.9, 46, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [60874] = { + ["coords"] = { + [1] = { 26.7, 17.2, 1537, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [60875] = { + ["coords"] = { + [1] = { 24.2, 20, 1537, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [60876] = { + ["coords"] = { + [1] = { 24.3, 19.5, 1537, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "13", + }, + [60877] = { + ["coords"] = { + [1] = { 26.2, 17.4, 1537, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "28", + }, + [60878] = { + ["coords"] = { + [1] = { 60.6, 58.2, 40, 300 }, + }, + ["lvl"] = "21", + ["rnk"] = "1", + }, + [60879] = { + ["coords"] = { + [1] = { 77.9, 53, 1519, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [60880] = { + ["coords"] = { + [1] = { 49.2, 11, 17, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [60881] = { + ["coords"] = { + [1] = { 31.5, 36.5, 440, 300 }, + [2] = { 79.1, 64.3, 490, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "42", + }, + [60882] = { + ["coords"] = { + [1] = { 30.9, 36.8, 440, 300 }, + [2] = { 77.9, 65, 490, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "48", + }, + [60883] = { + ["coords"] = { + [1] = { 30.8, 37.7, 440, 300 }, + [2] = { 77.8, 66.5, 490, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "47", + }, + [60884] = { + ["coords"] = { + [1] = { 31, 37.5, 440, 300 }, + [2] = { 78.1, 66.2, 490, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "45", + }, + [60885] = { + ["coords"] = { + [1] = { 49.3, 60.2, 11, 300 }, + [2] = { 6.6, 25.2, 5602, 300 }, + }, + ["lvl"] = "32", + }, + [60886] = { + ["coords"] = { + [1] = { 48.3, 62.4, 11, 300 }, + [2] = { 48.5, 62.3, 11, 300 }, + [3] = { 48.7, 62.2, 11, 300 }, + [4] = { 48.8, 62.1, 11, 300 }, + [5] = { 48.8, 61.9, 11, 300 }, + [6] = { 48.3, 61.7, 11, 300 }, + [7] = { 49.2, 60.4, 11, 120 }, + [8] = { 5.8, 26.9, 5602, 300 }, + [9] = { 6, 26.8, 5602, 300 }, + [10] = { 6.2, 26.7, 5602, 300 }, + [11] = { 6.2, 26.5, 5602, 300 }, + [12] = { 5.9, 26.3, 5602, 300 }, + [13] = { 6.6, 25.3, 5602, 120 }, + }, + ["lvl"] = "35", + }, + [60887] = { + ["coords"] = {}, + ["lvl"] = "50", + }, + [60888] = { + ["coords"] = { + [1] = { 48.8, 61.4, 11, 300 }, + [2] = { 6.2, 26.1, 5602, 300 }, + }, + ["lvl"] = "34", + }, + [60889] = { + ["coords"] = { + [1] = { 48.5, 61.7, 11, 300 }, + [2] = { 6, 26.4, 5602, 300 }, + }, + ["lvl"] = "28", + }, + [60890] = { + ["coords"] = { + [1] = { 42.8, 52, 267, 300 }, + [2] = { 97, 14.3, 5179, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "32", + }, + [60891] = { + ["coords"] = { + [1] = { 42.8, 52.8, 267, 300 }, + [2] = { 97, 15, 5179, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "25", + }, + [60892] = { + ["coords"] = { + [1] = { 43.3, 52.4, 267, 300 }, + [2] = { 97.4, 14.7, 5179, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "24", + }, + [60893] = { + ["coords"] = { + [1] = { 62.5, 97.7, 14, 300 }, + [2] = { 62.6, 97, 14, 300 }, + [3] = { 62.4, 96.9, 14, 300 }, + [4] = { 62.3, 96.8, 14, 300 }, + [5] = { 61.9, 95.7, 14, 300 }, + [6] = { 63.2, 95.3, 14, 300 }, + [7] = { 62.4, 95.2, 14, 300 }, + [8] = { 58.9, 90.8, 14, 300 }, + [9] = { 59.7, 90.7, 14, 300 }, + [10] = { 60.8, 90.5, 14, 300 }, + [11] = { 59, 90.2, 14, 300 }, + [12] = { 59.3, 89.7, 14, 300 }, + [13] = { 60.3, 88.8, 14, 300 }, + [14] = { 77.9, 48.1, 17, 300 }, + [15] = { 77.9, 47.7, 17, 300 }, + [16] = { 77.8, 47.7, 17, 300 }, + [17] = { 77.8, 47.6, 17, 300 }, + [18] = { 77.5, 47, 17, 300 }, + [19] = { 78.2, 46.8, 17, 300 }, + [20] = { 77.8, 46.8, 17, 300 }, + [21] = { 76, 44.5, 17, 300 }, + [22] = { 76.4, 44.4, 17, 300 }, + [23] = { 77, 44.3, 17, 300 }, + [24] = { 76.1, 44.1, 17, 300 }, + [25] = { 76.2, 43.9, 17, 300 }, + [26] = { 76.7, 43.4, 17, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "9-11", + }, + [60894] = { + ["coords"] = { + [1] = { 54.9, 100, 14, 300 }, + [2] = { 58, 99.6, 14, 3600 }, + [3] = { 55.9, 98.8, 14, 300 }, + [4] = { 54.6, 98.7, 14, 300 }, + [5] = { 56.6, 98.6, 14, 3600 }, + [6] = { 55.2, 98.1, 14, 3600 }, + [7] = { 73.9, 49.8, 17, 300 }, + [8] = { 73.7, 49.7, 17, 300 }, + [9] = { 73.8, 49.7, 17, 300 }, + [10] = { 74.1, 49.5, 17, 300 }, + [11] = { 73.6, 49.4, 17, 300 }, + [12] = { 74.8, 49.3, 17, 300 }, + [13] = { 73.9, 49.3, 17, 300 }, + [14] = { 75.5, 49, 17, 3600 }, + [15] = { 74.4, 48.7, 17, 300 }, + [16] = { 73.7, 48.6, 17, 300 }, + [17] = { 74.8, 48.6, 17, 3600 }, + [18] = { 74, 48.3, 17, 3600 }, + }, + ["fac"] = "A", + ["lvl"] = "15-17", + }, + [60895] = { + ["coords"] = { + [1] = { 55.4, 98.6, 14, 300 }, + [2] = { 54.9, 98, 14, 300 }, + [3] = { 56.8, 97.8, 14, 300 }, + [4] = { 56.2, 97.4, 14, 3600 }, + [5] = { 56.3, 95.8, 14, 300 }, + [6] = { 74.4, 51.5, 17, 300 }, + [7] = { 74.5, 51.5, 17, 300 }, + [8] = { 74.6, 51.4, 17, 300 }, + [9] = { 74.5, 51.4, 17, 300 }, + [10] = { 74.7, 51.4, 17, 300 }, + [11] = { 74.5, 51.1, 17, 300 }, + [12] = { 74.7, 51, 17, 300 }, + [13] = { 74.1, 50.7, 17, 3600 }, + [14] = { 74.6, 50.6, 17, 300 }, + [15] = { 74.3, 50.6, 17, 300 }, + [16] = { 73.9, 50.3, 17, 300 }, + [17] = { 74.4, 50.2, 17, 3600 }, + [18] = { 74.4, 50.1, 17, 3600 }, + [19] = { 74.9, 50, 17, 300 }, + [20] = { 74.4, 49.9, 17, 300 }, + [21] = { 73.1, 49.7, 17, 300 }, + [22] = { 75.2, 49.7, 17, 300 }, + [23] = { 73.1, 49.6, 17, 300 }, + [24] = { 73.3, 49.5, 17, 300 }, + [25] = { 73.1, 49.3, 17, 300 }, + [26] = { 74.1, 48.5, 17, 300 }, + [27] = { 73.9, 48.2, 17, 300 }, + [28] = { 74.9, 48.1, 17, 300 }, + [29] = { 74.6, 47.9, 17, 3600 }, + [30] = { 74.6, 47.1, 17, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "14-16", + }, + [60896] = { + ["coords"] = { + [1] = { 57.7, 99.9, 14, 300 }, + [2] = { 57.9, 99.7, 14, 300 }, + [3] = { 58.1, 99.5, 14, 300 }, + [4] = { 57, 99, 14, 300 }, + [5] = { 56.7, 98.7, 14, 300 }, + [6] = { 74.1, 50.3, 17, 300 }, + [7] = { 75.5, 49.4, 17, 300 }, + [8] = { 75.3, 49.3, 17, 300 }, + [9] = { 75.5, 49.3, 17, 300 }, + [10] = { 75.3, 49.2, 17, 300 }, + [11] = { 75.5, 49.1, 17, 300 }, + [12] = { 75.6, 49, 17, 300 }, + [13] = { 75, 48.8, 17, 300 }, + [14] = { 74.8, 48.6, 17, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "18", + }, + [60897] = { + ["coords"] = { + [1] = { 56.1, 99.6, 14, 300 }, + [2] = { 56.8, 99.2, 14, 3600 }, + [3] = { 57.5, 98.9, 14, 300 }, + [4] = { 54.5, 98.9, 14, 3600 }, + [5] = { 56.5, 98.8, 14, 3600 }, + [6] = { 57, 98.6, 14, 300 }, + [7] = { 54.5, 98.6, 14, 3600 }, + [8] = { 54.9, 98.3, 14, 3600 }, + [9] = { 55.1, 98.2, 14, 3600 }, + [10] = { 55, 97.6, 14, 3600 }, + [11] = { 56.1, 97.3, 14, 3600 }, + [12] = { 56.9, 97.3, 14, 3600 }, + [13] = { 56.8, 97.1, 14, 3600 }, + [14] = { 55.5, 97.1, 14, 300 }, + [15] = { 55.7, 96.9, 14, 300 }, + [16] = { 55.6, 96.5, 14, 3600 }, + [17] = { 55.8, 96.5, 14, 3600 }, + [18] = { 56.7, 96.5, 14, 300 }, + [19] = { 74.1, 50.8, 17, 3600 }, + [20] = { 74.7, 50.4, 17, 3600 }, + [21] = { 75.3, 50, 17, 300 }, + [22] = { 74.2, 49.9, 17, 3600 }, + [23] = { 74.1, 49.8, 17, 3600 }, + [24] = { 74.9, 49.7, 17, 300 }, + [25] = { 74.9, 49.3, 17, 300 }, + [26] = { 74.5, 49.1, 17, 300 }, + [27] = { 74.9, 48.9, 17, 3600 }, + [28] = { 75.3, 48.7, 17, 300 }, + [29] = { 73.7, 48.7, 17, 3600 }, + [30] = { 74.7, 48.6, 17, 3600 }, + [31] = { 75, 48.5, 17, 300 }, + [32] = { 73.7, 48.5, 17, 3600 }, + [33] = { 73.9, 48.4, 17, 3600 }, + [34] = { 74, 48.3, 17, 3600 }, + [35] = { 73.9, 48, 17, 3600 }, + [36] = { 74.5, 47.9, 17, 3600 }, + [37] = { 75, 47.9, 17, 3600 }, + [38] = { 74.9, 47.8, 17, 3600 }, + [39] = { 74.2, 47.8, 17, 300 }, + [40] = { 74.3, 47.7, 17, 300 }, + [41] = { 74.3, 47.5, 17, 3600 }, + [42] = { 74.4, 47.4, 17, 3600 }, + [43] = { 74.8, 47.4, 17, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "15-17", + }, + [60898] = { + ["coords"] = { + [1] = { 63.2, 97.5, 14, 300 }, + [2] = { 61.8, 97.3, 14, 300 }, + [3] = { 62.1, 96.8, 14, 300 }, + [4] = { 61.6, 96.5, 14, 300 }, + [5] = { 62.9, 96.4, 14, 300 }, + [6] = { 64, 96.3, 14, 300 }, + [7] = { 62.5, 96.3, 14, 300 }, + [8] = { 62.3, 95.1, 14, 300 }, + [9] = { 60.8, 91.4, 14, 300 }, + [10] = { 60.6, 90.8, 14, 300 }, + [11] = { 59.1, 90.6, 14, 300 }, + [12] = { 59, 90.6, 14, 300 }, + [13] = { 58.7, 90.4, 14, 300 }, + [14] = { 60.5, 90.2, 14, 300 }, + [15] = { 59.6, 88.6, 14, 300 }, + [16] = { 53.3, 87.5, 14, 280 }, + [17] = { 53.2, 86.8, 14, 300 }, + [18] = { 78.2, 48, 17, 300 }, + [19] = { 77.5, 47.9, 17, 300 }, + [20] = { 77.6, 47.6, 17, 300 }, + [21] = { 77.4, 47.4, 17, 300 }, + [22] = { 78.1, 47.4, 17, 300 }, + [23] = { 78.7, 47.3, 17, 300 }, + [24] = { 77.8, 47.3, 17, 300 }, + [25] = { 77.8, 46.7, 17, 300 }, + [26] = { 77, 44.8, 17, 300 }, + [27] = { 76.8, 44.5, 17, 300 }, + [28] = { 76.1, 44.4, 17, 300 }, + [29] = { 76, 44.4, 17, 300 }, + [30] = { 75.9, 44.3, 17, 300 }, + [31] = { 76.8, 44.2, 17, 300 }, + [32] = { 76.4, 43.3, 17, 300 }, + [33] = { 73, 42.7, 17, 280 }, + [34] = { 73, 42.4, 17, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "8-10", + }, + [60899] = { + ["coords"] = { + [1] = { 55.3, 97.4, 14, 300 }, + [2] = { 74.1, 47.9, 17, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "17", + }, + [60900] = { + ["coords"] = { + [1] = { 74.8, 51.5, 17, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "19", + }, + [60901] = { + ["coords"] = { + [1] = { 75.5, 49.6, 17, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + ["rnk"] = "1", + }, + [60902] = { + ["coords"] = { + [1] = { 75.6, 49.3, 17, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "18", + ["rnk"] = "1", + }, + [60903] = { + ["coords"] = { + [1] = { 88.4, 40.4, 3, 300 }, + [2] = { 87.7, 38.6, 3, 300 }, + [3] = { 88.3, 38.4, 3, 300 }, + [4] = { 88.9, 37.9, 3, 300 }, + [5] = { 87.9, 35.1, 3, 300 }, + [6] = { 41.3, 99.6, 5602, 300 }, + [7] = { 40.7, 99.6, 5602, 300 }, + [8] = { 41.5, 99.3, 5602, 300 }, + [9] = { 41, 98.9, 5602, 300 }, + [10] = { 40.6, 98.3, 5602, 300 }, + }, + ["lvl"] = "41-42", + }, + [60904] = { + ["coords"] = { + [1] = { 87.7, 38.9, 3, 300 }, + [2] = { 89.3, 38.4, 3, 300 }, + [3] = { 88, 35.9, 3, 300 }, + [4] = { 86.6, 35.6, 3, 300 }, + [5] = { 87.8, 33.8, 3, 300 }, + [6] = { 40.8, 99.9, 5602, 300 }, + [7] = { 40.1, 99.8, 5602, 300 }, + [8] = { 40.7, 99, 5602, 300 }, + [9] = { 41.3, 98.6, 5602, 300 }, + [10] = { 40.5, 98.4, 5602, 300 }, + [11] = { 40.7, 97.8, 5602, 300 }, + [12] = { 40.9, 97.4, 5602, 300 }, + [13] = { 39.8, 96.7, 5602, 300 }, + }, + ["lvl"] = "41-42", + }, + [60905] = { + ["coords"] = { + [1] = { 89.1, 37.8, 3, 300 }, + [2] = { 88.1, 37.8, 3, 300 }, + [3] = { 88.6, 35.8, 3, 300 }, + [4] = { 89.2, 35.6, 3, 300 }, + [5] = { 86.8, 35.4, 3, 300 }, + [6] = { 86, 29.5, 3, 300 }, + [7] = { 41, 99.9, 5602, 300 }, + [8] = { 41.3, 99.8, 5602, 300 }, + [9] = { 40.2, 99.7, 5602, 300 }, + [10] = { 40.6, 98.5, 5602, 300 }, + [11] = { 40.4, 97.3, 5602, 300 }, + [12] = { 39.9, 97, 5602, 300 }, + [13] = { 40.5, 96.5, 5602, 300 }, + }, + ["lvl"] = "44", + }, + [60906] = { + ["coords"] = { + [1] = { 40.7, 96.5, 5602, 300 }, + }, + ["lvl"] = "44", + ["rnk"] = "1", + }, + [60907] = { + ["coords"] = { + [1] = { 47.5, 27.6, 3, 300 }, + [2] = { 46.5, 24.6, 3, 300 }, + [3] = { 46.3, 22.8, 3, 300 }, + [4] = { 47, 22.3, 3, 300 }, + [5] = { 45.4, 21.7, 3, 300 }, + [6] = { 46.6, 20.6, 3, 300 }, + [7] = { 44.8, 19.9, 3, 300 }, + [8] = { 47.6, 19.9, 3, 300 }, + [9] = { 44.2, 18.5, 3, 300 }, + [10] = { 47.5, 18.3, 3, 300 }, + [11] = { 44.6, 17, 3, 300 }, + [12] = { 86.6, 91.5, 1337, 300 }, + [13] = { 85.8, 83.4, 1337, 300 }, + [14] = { 88.8, 81.3, 1337, 300 }, + [15] = { 81.9, 78.8, 1337, 300 }, + [16] = { 87.3, 74, 1337, 300 }, + [17] = { 79.3, 70.9, 1337, 300 }, + [18] = { 91.8, 70.6, 1337, 300 }, + [19] = { 76.8, 64.8, 1337, 300 }, + [20] = { 91, 63.5, 1337, 300 }, + [21] = { 78.4, 58, 1337, 300 }, + [22] = { 22.1, 96.1, 5602, 300 }, + [23] = { 21.6, 94.7, 5602, 300 }, + [24] = { 21.5, 93.8, 5602, 300 }, + [25] = { 21.8, 93.6, 5602, 300 }, + [26] = { 21.1, 93.3, 5602, 300 }, + [27] = { 21.7, 92.8, 5602, 300 }, + [28] = { 20.8, 92.5, 5602, 300 }, + [29] = { 22.1, 92.5, 5602, 300 }, + [30] = { 20.6, 91.9, 5602, 300 }, + [31] = { 22, 91.7, 5602, 300 }, + [32] = { 20.7, 91.2, 5602, 300 }, + }, + ["lvl"] = "36-37", + }, + [60908] = { + ["coords"] = { + [1] = { 44.6, 17.9, 3, 300 }, + [2] = { 78.5, 61.8, 1337, 300 }, + [3] = { 20.7, 91.6, 5602, 300 }, + }, + ["lvl"] = "41", + }, + [60909] = { + ["coords"] = { + [1] = { 67.8, 71.2, 3, 300 }, + [2] = { 67.7, 70.2, 3, 300 }, + [3] = { 68.7, 69.3, 3, 300 }, + [4] = { 69.5, 65.8, 3, 300 }, + [5] = { 68.5, 62.2, 3, 300 }, + [6] = { 69.9, 62.2, 3, 300 }, + [7] = { 66.8, 61.6, 3, 300 }, + [8] = { 68.9, 59.5, 3, 300 }, + }, + ["lvl"] = "37-38", + }, + [60910] = { + ["coords"] = { + [1] = { 69.2, 67.7, 3, 300 }, + [2] = { 68.1, 63.7, 3, 300 }, + [3] = { 71.1, 61.7, 3, 300 }, + [4] = { 67.5, 60, 3, 300 }, + [5] = { 76.9, 43.6, 3, 300 }, + [6] = { 75.2, 43.1, 3, 300 }, + [7] = { 76, 42.5, 3, 300 }, + }, + ["lvl"] = "39-41", + }, + [60911] = { + ["coords"] = { + [1] = { 74.9, 46.7, 3, 300 }, + }, + ["lvl"] = "44", + }, + [60912] = { + ["coords"] = { + [1] = { 56.5, 41, 3, 300 }, + [2] = { 61.8, 18.7, 3, 300 }, + [3] = { 60.9, 16.5, 3, 300 }, + [4] = { 28.7, 91.9, 5602, 300 }, + [5] = { 28.3, 91, 5602, 300 }, + }, + ["lvl"] = "36-39", + }, + [60913] = { + ["coords"] = { + [1] = { 55.8, 41, 3, 300 }, + [2] = { 56.6, 39.6, 3, 300 }, + [3] = { 61.5, 17.2, 3, 300 }, + [4] = { 61.3, 15.6, 3, 300 }, + [5] = { 28.5, 91.3, 5602, 300 }, + [6] = { 28.4, 90.5, 5602, 300 }, + }, + ["lvl"] = "36-39", + }, + [60914] = { + ["coords"] = { + [1] = { 57.1, 41.5, 3, 300 }, + [2] = { 56.7, 40.8, 3, 300 }, + [3] = { 55.6, 39.9, 3, 300 }, + [4] = { 60.6, 15.7, 3, 300 }, + [5] = { 28.1, 90.6, 5602, 300 }, + }, + ["lvl"] = "36-39", + }, + [60915] = { + ["coords"] = { + [1] = { 57.7, 40.7, 3, 300 }, + [2] = { 60.3, 16.6, 3, 300 }, + [3] = { 28, 91, 5602, 300 }, + }, + ["lvl"] = "36-39", + }, + [60916] = { + ["coords"] = { + [1] = { 60.9, 15.5, 3, 300 }, + [2] = { 28.2, 90.5, 5602, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [60917] = { + ["coords"] = { + [1] = { 57, 40.1, 3, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "48", + ["rnk"] = "1", + }, + [60918] = { + ["coords"] = { + [1] = { 69.3, 81.2, 3, 300 }, + [2] = { 74.3, 73.4, 3, 300 }, + [3] = { 75, 72.8, 3, 300 }, + }, + ["lvl"] = "41-42", + }, + [60919] = { + ["coords"] = { + [1] = { 75.7, 72.4, 3, 300 }, + [2] = { 75.5, 72, 3, 300 }, + }, + ["lvl"] = "43-44", + }, + [60920] = { + ["coords"] = { + [1] = { 25.5, 38.2, 3, 300 }, + [2] = { 25.4, 38, 3, 300 }, + [3] = { 25.2, 36.1, 3, 300 }, + [4] = { 31.5, 34.4, 3, 300 }, + [5] = { 30.7, 34, 3, 300 }, + [6] = { 35.2, 29.7, 3, 300 }, + [7] = { 1, 99, 1337, 300 }, + [8] = { 14.7, 99.2, 5602, 300 }, + [9] = { 14.3, 99, 5602, 300 }, + [10] = { 16.4, 97, 5602, 300 }, + [11] = { 14.8, 96.4, 5602, 300 }, + [12] = { 13.4, 96.2, 5602, 300 }, + [13] = { 16.1, 96, 5602, 300 }, + [14] = { 12.6, 95.5, 5602, 300 }, + }, + ["lvl"] = "41-42", + }, + [60921] = { + ["coords"] = { + [1] = { 27.3, 38.4, 3, 300 }, + [2] = { 25.3, 38.2, 3, 300 }, + [3] = { 27.3, 36.7, 3, 300 }, + [4] = { 28.3, 36.1, 3, 300 }, + [5] = { 32.2, 35.6, 3, 300 }, + [6] = { 32.9, 35.3, 3, 300 }, + [7] = { 32.2, 34.4, 3, 300 }, + [8] = { 35.7, 30.2, 3, 300 }, + [9] = { 36.7, 29.2, 3, 300 }, + [10] = { 23.8, 97.9, 1337, 300 }, + [11] = { 17, 93.3, 1337, 300 }, + [12] = { 13.2, 100, 5602, 300 }, + [13] = { 15, 99.8, 5602, 300 }, + [14] = { 15.3, 99.6, 5602, 300 }, + [15] = { 15, 99.2, 5602, 300 }, + [16] = { 12.1, 98.6, 5602, 300 }, + [17] = { 12.5, 97.4, 5602, 300 }, + [18] = { 16.6, 97.3, 5602, 300 }, + [19] = { 15.3, 97.2, 5602, 300 }, + [20] = { 17.1, 96.8, 5602, 300 }, + [21] = { 13.2, 96.7, 5602, 300 }, + [22] = { 12.7, 96.6, 5602, 300 }, + [23] = { 16.7, 96.3, 5602, 300 }, + [24] = { 14.2, 95.7, 5602, 300 }, + [25] = { 15, 95.4, 5602, 300 }, + [26] = { 14.3, 94.9, 5602, 300 }, + }, + ["lvl"] = "39-41", + }, + [60922] = { + ["coords"] = { + [1] = { 37.9, 29.6, 3, 300 }, + [2] = { 17.6, 97, 5602, 300 }, + }, + ["lvl"] = "45", + }, + [60923] = { + ["coords"] = { + [1] = { 62.3, 81, 3, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "42", + }, + [60924] = { + ["coords"] = { + [1] = { 20, 26.9, 1537, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "36", + }, + [60925] = { + ["coords"] = { + [1] = { 20.5, 25.4, 1537, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "51", + }, + [60926] = { + ["coords"] = { + [1] = { 29.5, 11.3, 1519, 300 }, + [2] = { 32.3, 83.5, 5581, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "51", + ["rnk"] = "1", + }, + [60927] = { + ["coords"] = { + [1] = { 30.6, 12, 1519, 300 }, + [2] = { 32.9, 83.8, 5581, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [60928] = { + ["coords"] = { + [1] = { 27, 20.7, 1519, 300 }, + [2] = { 31, 88.5, 5581, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [60929] = { + ["coords"] = { + [1] = { 29.6, 13.9, 1519, 300 }, + [2] = { 32.4, 84.8, 5581, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [60930] = { + ["coords"] = { + [1] = { 29.7, 10.4, 1519, 300 }, + [2] = { 32.4, 83, 5581, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "52", + }, + [60931] = { + ["coords"] = { + [1] = { 28, 12.1, 1519, 300 }, + [2] = { 31.5, 83.9, 5581, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "41", + }, + [60932] = { + ["coords"] = { + [1] = { 23.6, 36.9, 1519, 300 }, + [2] = { 29.2, 97.2, 5581, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "41", + }, + [60933] = { + ["coords"] = { + [1] = { 30.3, 12.1, 1519, 300 }, + [2] = { 32.8, 83.8, 5581, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [60934] = { + ["coords"] = { + [1] = { 29.2, 10.1, 1519, 300 }, + [2] = { 32.1, 82.8, 5581, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [60935] = { + ["coords"] = { + [1] = { 30.6, 12.4, 1519, 300 }, + [2] = { 32.9, 84, 5581, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [60936] = { + ["coords"] = { + [1] = { 28.9, 11.8, 1519, 300 }, + [2] = { 32, 83.7, 5581, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [60937] = { + ["coords"] = { + [1] = { 29.1, 11.9, 1519, 300 }, + [2] = { 32.1, 83.8, 5581, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [60938] = { + ["coords"] = { + [1] = { 21.8, 36.9, 1519, 300 }, + [2] = { 28.2, 97.2, 5581, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "48", + }, + [60939] = { + ["coords"] = { + [1] = { 46.3, 51, 15, 300 }, + [2] = { 46, 50.8, 15, 300 }, + [3] = { 46.7, 48.7, 15, 300 }, + [4] = { 47.2, 48.7, 15, 300 }, + [5] = { 47, 48.1, 15, 300 }, + [6] = { 47.5, 47.9, 15, 300 }, + [7] = { 47.4, 47.6, 15, 300 }, + [8] = { 46.2, 47.5, 15, 300 }, + [9] = { 46.9, 47.4, 15, 300 }, + [10] = { 46, 47.2, 15, 300 }, + [11] = { 46.1, 46.4, 15, 300 }, + [12] = { 46.5, 46.2, 15, 300 }, + [13] = { 46.6, 46.1, 15, 300 }, + [14] = { 46.7, 45.7, 15, 300 }, + [15] = { 45.7, 45.5, 15, 300 }, + }, + ["lvl"] = "39-41", + }, + [60940] = { + ["coords"] = { + [1] = { 46.3, 49.9, 15, 300 }, + [2] = { 47.2, 49.4, 15, 300 }, + [3] = { 46.8, 49, 15, 300 }, + [4] = { 46.6, 48.8, 15, 300 }, + [5] = { 46.5, 48.1, 15, 300 }, + [6] = { 47.5, 47.5, 15, 300 }, + [7] = { 46.6, 46.9, 15, 300 }, + [8] = { 47.6, 46.8, 15, 300 }, + [9] = { 45.9, 46.7, 15, 300 }, + [10] = { 47.1, 46.2, 15, 300 }, + [11] = { 46.5, 46, 15, 300 }, + [12] = { 46.2, 45, 15, 300 }, + }, + ["lvl"] = "40-42", + }, + [60941] = { + ["coords"] = { + [1] = { 47.3, 46.6, 15, 300 }, + }, + ["lvl"] = "43", + ["rnk"] = "1", + }, + [60942] = { + ["coords"] = { + [1] = { 42.8, 14.9, 15, 300 }, + [2] = { 43.1, 14.7, 15, 300 }, + [3] = { 42.5, 14.4, 15, 300 }, + [4] = { 42.9, 13.8, 15, 300 }, + [5] = { 41.7, 13.2, 15, 300 }, + [6] = { 41.6, 13.2, 15, 300 }, + [7] = { 41.5, 11.9, 15, 300 }, + [8] = { 40.7, 11.7, 15, 300 }, + [9] = { 40.7, 10.9, 15, 300 }, + [10] = { 41, 10.9, 15, 300 }, + [11] = { 41.4, 10.5, 15, 300 }, + [12] = { 57, 60.1, 17, 300 }, + [13] = { 56.6, 60, 17, 300 }, + [14] = { 56.6, 59.6, 17, 300 }, + [15] = { 56.7, 59.6, 17, 300 }, + [16] = { 56.9, 59.4, 17, 300 }, + }, + ["lvl"] = "36-37", + }, + [60943] = { + ["coords"] = { + [1] = { 44.9, 17.9, 15, 300 }, + [2] = { 44.8, 17.7, 15, 300 }, + [3] = { 44.2, 16.8, 15, 300 }, + [4] = { 43.6, 15.9, 15, 300 }, + [5] = { 43.3, 15.6, 15, 300 }, + [6] = { 43.1, 15.6, 15, 300 }, + [7] = { 43.3, 14.8, 15, 300 }, + [8] = { 43.4, 14, 15, 300 }, + [9] = { 42.3, 14, 15, 300 }, + [10] = { 42.5, 13.1, 15, 300 }, + [11] = { 41.5, 12.5, 15, 300 }, + [12] = { 40.7, 12.2, 15, 300 }, + [13] = { 41.6, 11.7, 15, 300 }, + [14] = { 41.4, 11.7, 15, 300 }, + [15] = { 42.5, 11.5, 15, 300 }, + [16] = { 41.1, 11.2, 15, 300 }, + [17] = { 40.8, 11, 15, 300 }, + [18] = { 41.3, 11, 15, 300 }, + [19] = { 41.9, 11, 15, 300 }, + [20] = { 57, 60.4, 17, 300 }, + [21] = { 56.6, 60.3, 17, 300 }, + [22] = { 57, 60, 17, 300 }, + [23] = { 57.5, 59.9, 17, 300 }, + [24] = { 56.8, 59.7, 17, 300 }, + [25] = { 56.6, 59.7, 17, 300 }, + [26] = { 56.9, 59.7, 17, 300 }, + [27] = { 57.2, 59.6, 17, 300 }, + }, + ["lvl"] = "37-38", + }, + [60944] = { + ["coords"] = { + [1] = { 41, 10.6, 15, 300 }, + [2] = { 56.8, 59.4, 17, 300 }, + }, + ["lvl"] = "41", + }, + [60945] = { + ["coords"] = { + [1] = { 57.3, 72.8, 3, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "32", + }, + [60946] = { + ["coords"] = { + [1] = { 79.7, 62.6, 47, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [60947] = { + ["coords"] = { + [1] = { 48.6, 82, 17, 300 }, + [2] = { 48.3, 81.9, 17, 300 }, + }, + ["lvl"] = "37-38", + }, + [60948] = { + ["coords"] = { + [1] = { 48.4, 82.1, 17, 280 }, + }, + ["lvl"] = "40", + }, + [60949] = { + ["coords"] = { + [1] = { 60, 40.6, 15, 280 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [60950] = { + ["coords"] = { + [1] = { 59.9, 41.1, 15, 280 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [60951] = { + ["coords"] = { + [1] = { 46.6, 24.5, 15, 280 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [60952] = { + ["coords"] = {}, + ["lvl"] = "35", + }, + [60953] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [60954] = { + ["coords"] = {}, + ["lvl"] = "25", + ["rnk"] = "1", + }, + [60955] = { + ["coords"] = { + [1] = { 66.4, 24.3, 440, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "46", + }, + [60956] = { + ["coords"] = { + [1] = { 66.6, 24, 440, 300 }, + }, + ["lvl"] = "50", + }, + [60957] = { + ["coords"] = { + [1] = { 66.8, 24.1, 440, 300 }, + }, + ["lvl"] = "44", + }, + [60958] = { + ["coords"] = { + [1] = { 66.7, 24, 440, 300 }, + }, + ["lvl"] = "49", + }, + [60959] = { + ["coords"] = { + [1] = { 37, 52.2, 406, 300 }, + }, + ["lvl"] = "25", + }, + [60960] = { + ["coords"] = { + [1] = { 37.2, 51.8, 406, 300 }, + }, + ["lvl"] = "25", + }, + [60961] = { + ["coords"] = { + [1] = { 37.2, 52.1, 406, 300 }, + }, + ["lvl"] = "45", + }, + [60962] = { + ["coords"] = { + [1] = { 36.4, 52, 406, 300 }, + }, + ["lvl"] = "50", + }, + [60963] = { + ["coords"] = { + [1] = { 37.3, 51.6, 406, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "36", + }, + [60964] = { + ["coords"] = { + [1] = { 37.2, 51.5, 406, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "36", + }, + [60965] = { + ["coords"] = { + [1] = { 36.4, 52.2, 406, 300 }, + }, + ["lvl"] = "25", + }, + [60966] = { + ["coords"] = { + [1] = { 37, 51.3, 406, 300 }, + }, + ["lvl"] = "25", + }, + [60967] = { + ["coords"] = { + [1] = { 37.3, 51.2, 406, 300 }, + }, + ["lvl"] = "21", + }, + [60968] = { + ["coords"] = { + [1] = { 36.9, 51.4, 406, 300 }, + }, + ["lvl"] = "39", + }, + [60969] = { + ["coords"] = { + [1] = { 37.1, 51.6, 406, 300 }, + }, + ["lvl"] = "22", + }, + [60970] = { + ["coords"] = { + [1] = { 36.4, 51.4, 406, 300 }, + }, + ["lvl"] = "55", + }, + [60971] = { + ["coords"] = { + [1] = { 36.8, 52.4, 406, 300 }, + [2] = { 36.6, 52.4, 406, 300 }, + [3] = { 36.8, 51.9, 406, 300 }, + [4] = { 36.6, 51.8, 406, 300 }, + [5] = { 36.5, 51.6, 406, 300 }, + }, + ["lvl"] = "55", + }, + [60972] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "22", + }, + [60973] = { + ["coords"] = { + [1] = { 55.4, 35.7, 11, 300 }, + [2] = { 11.3, 6.4, 5602, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "19", + }, + [60974] = { + ["coords"] = { + [1] = { 54.9, 35.2, 11, 300 }, + [2] = { 10.9, 6, 5602, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "20", + }, + [60975] = { + ["coords"] = { + [1] = { 55.1, 36, 11, 300 }, + [2] = { 11.1, 6.6, 5602, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "8", + }, + [60976] = { + ["coords"] = { + [1] = { 58.8, 25.5, 14, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "9", + }, + [60977] = { + ["coords"] = { + [1] = { 59.1, 54.3, 215, 280 }, + }, + ["lvl"] = "8", + }, + [60978] = { + ["coords"] = { + [1] = { 59.1, 54.3, 215, 280 }, + }, + ["lvl"] = "6", + }, + [60979] = { + ["coords"] = { + [1] = { 35.5, 20.2, 17, 300 }, + [2] = { 34.6, 19.7, 17, 300 }, + [3] = { 34, 19.2, 17, 300 }, + [4] = { 34.9, 19.1, 17, 300 }, + [5] = { 34.9, 19, 17, 300 }, + [6] = { 34.6, 18.9, 17, 300 }, + [7] = { 33.4, 18.6, 17, 300 }, + [8] = { 30.8, 18, 17, 300 }, + [9] = { 33.4, 17.5, 17, 300 }, + [10] = { 67.4, 81.6, 406, 300 }, + [11] = { 71.3, 80.8, 406, 300 }, + [12] = { 81.8, 79.6, 406, 300 }, + [13] = { 80.3, 78.8, 406, 300 }, + [14] = { 72.4, 78, 406, 300 }, + [15] = { 72.1, 77.9, 406, 300 }, + [16] = { 79.2, 77.9, 406, 300 }, + [17] = { 80.8, 77.7, 406, 300 }, + [18] = { 80.8, 77.5, 406, 300 }, + [19] = { 80.4, 77.4, 406, 300 }, + [20] = { 78.2, 77, 406, 300 }, + [21] = { 73.9, 75.8, 406, 300 }, + [22] = { 78.3, 75, 406, 300 }, + }, + ["lvl"] = "15-16", + }, + [60980] = { + ["coords"] = { + [1] = { 35.8, 19.9, 17, 300 }, + [2] = { 30.6, 19.8, 17, 300 }, + [3] = { 35.1, 19.6, 17, 300 }, + [4] = { 32.1, 19.5, 17, 300 }, + [5] = { 33.6, 19.3, 17, 300 }, + [6] = { 34.6, 19.2, 17, 300 }, + [7] = { 31.6, 18.5, 17, 300 }, + [8] = { 33.4, 17.9, 17, 300 }, + [9] = { 32.5, 17.8, 17, 300 }, + [10] = { 33.4, 17.2, 17, 300 }, + [11] = { 31.4, 16.5, 17, 300 }, + [12] = { 82.3, 79.1, 406, 300 }, + [13] = { 73.6, 79, 406, 300 }, + [14] = { 81.1, 78.6, 406, 300 }, + [15] = { 76.1, 78.4, 406, 300 }, + [16] = { 78.6, 78.1, 406, 300 }, + [17] = { 80.3, 77.9, 406, 300 }, + [18] = { 73, 77.1, 406, 300 }, + [19] = { 75.3, 76.7, 406, 300 }, + [20] = { 78.4, 75.7, 406, 300 }, + [21] = { 76.7, 75.7, 406, 300 }, + [22] = { 78.3, 74.6, 406, 300 }, + [23] = { 74.9, 73.4, 406, 300 }, + }, + ["lvl"] = "15-16", + }, + [60981] = { + ["coords"] = { + [1] = { 32.5, 19.4, 17, 300 }, + [2] = { 32.6, 19.2, 17, 300 }, + [3] = { 33.4, 19.1, 17, 300 }, + [4] = { 31.4, 19, 17, 300 }, + [5] = { 31.7, 19, 17, 300 }, + [6] = { 32.2, 18.8, 17, 300 }, + [7] = { 31.4, 18, 17, 300 }, + [8] = { 31.3, 17.7, 17, 300 }, + [9] = { 32, 17.6, 17, 300 }, + [10] = { 33.6, 17.5, 17, 300 }, + [11] = { 33, 17, 17, 300 }, + [12] = { 32.6, 16.7, 17, 300 }, + [13] = { 69.5, 81.4, 406, 300 }, + [14] = { 72.4, 79.4, 406, 300 }, + [15] = { 76.7, 78.4, 406, 300 }, + [16] = { 76.9, 77.9, 406, 300 }, + [17] = { 78.2, 77.7, 406, 300 }, + [18] = { 74.9, 77.6, 406, 300 }, + [19] = { 75.5, 77.5, 406, 300 }, + [20] = { 76.3, 77.3, 406, 300 }, + [21] = { 74.9, 75.9, 406, 300 }, + [22] = { 74.7, 75.4, 406, 300 }, + [23] = { 75.9, 75.3, 406, 300 }, + [24] = { 78.7, 75.1, 406, 300 }, + [25] = { 77.7, 74.2, 406, 300 }, + [26] = { 77, 73.8, 406, 300 }, + }, + ["lvl"] = "16-17", + }, + [60982] = { + ["coords"] = { + [1] = { 33.8, 19.9, 17, 300 }, + [2] = { 32.3, 19.7, 17, 300 }, + [3] = { 32.5, 19.5, 17, 300 }, + [4] = { 32.3, 19.3, 17, 300 }, + [5] = { 30.8, 18.6, 17, 300 }, + [6] = { 32.8, 17.4, 17, 300 }, + [7] = { 32.9, 17.4, 17, 300 }, + [8] = { 31.5, 17.4, 17, 300 }, + [9] = { 32.5, 17.4, 17, 300 }, + [10] = { 32.2, 17.1, 17, 300 }, + [11] = { 78.9, 79.1, 406, 300 }, + [12] = { 76.4, 78.8, 406, 300 }, + [13] = { 76.7, 78.5, 406, 300 }, + [14] = { 73.3, 78.4, 406, 300 }, + [15] = { 76.4, 78.1, 406, 300 }, + [16] = { 73.9, 77, 406, 300 }, + [17] = { 77.2, 75, 406, 300 }, + [18] = { 77.4, 75, 406, 300 }, + [19] = { 75.1, 74.9, 406, 300 }, + [20] = { 76.7, 74.8, 406, 300 }, + [21] = { 76.2, 74.4, 406, 300 }, + }, + ["lvl"] = "16-18", + }, + [60983] = { + ["coords"] = { + [1] = { 30.9, 18.4, 17, 300 }, + [2] = { 31.1, 18.3, 17, 300 }, + [3] = { 30.9, 18.2, 17, 300 }, + [4] = { 30.7, 17.4, 17, 300 }, + [5] = { 30.8, 17.3, 17, 300 }, + [6] = { 74.1, 76.5, 406, 300 }, + [7] = { 74.3, 76.4, 406, 300 }, + [8] = { 74.1, 76.2, 406, 300 }, + [9] = { 73.7, 75, 406, 300 }, + [10] = { 73.9, 74.8, 406, 300 }, + }, + ["lvl"] = "17-19", + }, + [60984] = { + ["coords"] = { + [1] = { 32.2, 12.7, 17, 300 }, + [2] = { 72.3, 71.8, 406, 300 }, + [3] = { 72.9, 70.9, 406, 300 }, + [4] = { 73.5, 69.6, 406, 300 }, + [5] = { 72.6, 69.3, 406, 300 }, + [6] = { 73.9, 69.2, 406, 300 }, + [7] = { 74.6, 68.5, 406, 300 }, + [8] = { 74, 68.3, 406, 300 }, + [9] = { 72, 68.3, 406, 300 }, + [10] = { 71.2, 67.7, 406, 120 }, + [11] = { 76.2, 66.9, 406, 300 }, + [12] = { 73.4, 66.9, 406, 300 }, + [13] = { 73.2, 65.6, 406, 300 }, + [14] = { 74.3, 65.5, 406, 300 }, + [15] = { 75, 65.2, 406, 300 }, + [16] = { 76.1, 64.7, 406, 300 }, + [17] = { 74.9, 64.1, 406, 300 }, + }, + ["lvl"] = "16-18", + }, + [60985] = { + ["coords"] = { + [1] = { 74.6, 69.1, 406, 300 }, + [2] = { 73.8, 68.7, 406, 300 }, + [3] = { 72.8, 68.5, 406, 300 }, + [4] = { 71.2, 67.9, 406, 120 }, + [5] = { 74.5, 67.8, 406, 300 }, + [6] = { 74.1, 66.7, 406, 300 }, + [7] = { 73.9, 66, 406, 300 }, + [8] = { 75.4, 66, 406, 300 }, + [9] = { 73.8, 64.8, 406, 300 }, + }, + ["lvl"] = "16-18", + }, + [60986] = { + ["coords"] = { + [1] = { 32.6, 13.6, 17, 300 }, + [2] = { 76.9, 68.6, 406, 300 }, + }, + ["lvl"] = "20", + }, + [60987] = { + ["coords"] = { + [1] = { 32.6, 20, 17, 300 }, + [2] = { 76.9, 79.2, 406, 300 }, + }, + ["lvl"] = "20", + }, + [60988] = { + ["coords"] = { + [1] = { 33.1, 11.3, 17, 300 }, + [2] = { 33.9, 11, 17, 300 }, + [3] = { 34.3, 10.8, 17, 300 }, + [4] = { 33, 10.6, 17, 300 }, + [5] = { 33.6, 10.3, 17, 300 }, + [6] = { 33.5, 9.8, 17, 300 }, + [7] = { 33.6, 9.7, 17, 300 }, + [8] = { 77.7, 64.7, 406, 300 }, + [9] = { 79.1, 64.1, 406, 300 }, + [10] = { 79.7, 63.8, 406, 300 }, + [11] = { 77.6, 63.5, 406, 300 }, + [12] = { 78.6, 62.9, 406, 300 }, + [13] = { 78.4, 62.1, 406, 300 }, + [14] = { 78.6, 61.9, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [60989] = { + ["coords"] = { + [1] = { 34, 10, 17, 300 }, + [2] = { 79.3, 62.4, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [60990] = { + ["coords"] = { + [1] = { 33.1, 10.8, 17, 300 }, + [2] = { 77.7, 63.7, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "36", + }, + [60991] = { + ["coords"] = { + [1] = { 34, 10.1, 17, 300 }, + [2] = { 79.3, 62.6, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [60992] = { + ["coords"] = { + [1] = { 34.2, 10.1, 17, 300 }, + [2] = { 79.6, 62.7, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [60993] = { + ["coords"] = { + [1] = { 34, 11.4, 17, 300 }, + [2] = { 79.3, 64.8, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "46", + }, + [60994] = { + ["coords"] = { + [1] = { 33.9, 10.6, 17, 300 }, + [2] = { 79.1, 63.4, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "58", + }, + [60995] = { + ["coords"] = { + [1] = { 34, 11.3, 17, 300 }, + [2] = { 79.2, 64.6, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "26", + }, + [60996] = { + ["coords"] = { + [1] = { 34.3, 10, 17, 300 }, + [2] = { 79.7, 62.5, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "37", + }, + [60997] = { + ["coords"] = { + [1] = { 33, 10.8, 17, 300 }, + [2] = { 77.6, 63.7, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [60998] = { + ["coords"] = { + [1] = { 34.1, 10.3, 17, 300 }, + [2] = { 79.5, 62.9, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "23", + }, + [60999] = { + ["coords"] = { + [1] = { 34.1, 9.9, 17, 300 }, + [2] = { 79.4, 62.3, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "24", + }, + [61000] = { + ["coords"] = { + [1] = { 33, 10.5, 17, 300 }, + [2] = { 77.5, 63.3, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [61001] = { + ["coords"] = { + [1] = { 34, 10.6, 17, 300 }, + [2] = { 79.4, 63.5, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "17", + }, + [61002] = { + ["coords"] = { + [1] = { 33.8, 10.3, 17, 300 }, + [2] = { 79, 63, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [61003] = { + ["coords"] = { + [1] = { 33.6, 10.8, 17, 300 }, + [2] = { 78.5, 63.8, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "18", + }, + [61004] = { + ["coords"] = { + [1] = { 34.4, 10.8, 17, 300 }, + [2] = { 80, 63.8, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [61005] = { + ["coords"] = { + [1] = { 34.5, 10.6, 17, 300 }, + [2] = { 80.1, 63.5, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [61006] = { + ["coords"] = { + [1] = { 33.7, 10.2, 17, 300 }, + [2] = { 78.8, 62.8, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "32", + }, + [61007] = { + ["coords"] = { + [1] = { 18.9, 22, 1537, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "41", + }, + [61008] = { + ["coords"] = { + [1] = { 21.7, 21.9, 1537, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [61009] = { + ["coords"] = { + [1] = { 21.8, 25.6, 1537, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "56", + ["rnk"] = "1", + }, + [61010] = { + ["coords"] = { + [1] = { 19.6, 26.4, 1537, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "44", + }, + [61011] = { + ["coords"] = { + [1] = { 19.1, 21, 1537, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "56", + ["rnk"] = "1", + }, + [61012] = { + ["coords"] = { + [1] = { 19, 20.6, 1537, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "56", + ["rnk"] = "1", + }, + [61013] = { + ["coords"] = { + [1] = { 76.3, 53.1, 1519, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [61014] = { + ["coords"] = { + [1] = { 21.9, 33.9, 1519, 300 }, + [2] = { 28.3, 95.6, 5581, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "12", + }, + [61015] = { + ["coords"] = { + [1] = { 42.9, 72.3, 1519, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "14", + }, + [61016] = { + ["coords"] = { + [1] = { 41.8, 82.6, 1519, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "13", + }, + [61017] = { + ["coords"] = { + [1] = { 76.9, 47, 1519, 3600 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [61018] = { + ["coords"] = { + [1] = { 32.8, 9.9, 17, 120 }, + [2] = { 76.6, 62.7, 406, 120 }, + [3] = { 77.2, 62.3, 406, 120 }, + [4] = { 76.3, 62.2, 406, 120 }, + [5] = { 75.3, 62.2, 406, 120 }, + [6] = { 75.9, 61.9, 406, 120 }, + [7] = { 75.6, 61.6, 406, 120 }, + [8] = { 75, 61.3, 406, 120 }, + [9] = { 76.1, 61.2, 406, 120 }, + [10] = { 76.9, 60.6, 406, 120 }, + }, + ["lvl"] = "17-19", + }, + [61019] = { + ["coords"] = { + [1] = { 64.9, 66.1, 15, 3600 }, + }, + ["fac"] = "AH", + ["lvl"] = "36", + }, + [61020] = { + ["coords"] = { + [1] = { 65.5, 82.3, 15, 300 }, + }, + ["lvl"] = "42", + }, + [61021] = { + ["coords"] = { + [1] = { 66.2, 82.5, 15, 300 }, + [2] = { 66.5, 82.3, 15, 300 }, + [3] = { 66.9, 82.1, 15, 300 }, + [4] = { 66.8, 81.8, 15, 300 }, + [5] = { 64.7, 80.9, 15, 300 }, + [6] = { 66.6, 80.2, 15, 300 }, + [7] = { 66.1, 80.1, 15, 300 }, + [8] = { 63.8, 79, 15, 300 }, + [9] = { 67, 78.9, 15, 300 }, + [10] = { 67, 78.3, 15, 3600 }, + [11] = { 64.5, 78.1, 15, 300 }, + [12] = { 64.8, 77.5, 15, 300 }, + [13] = { 63.9, 77.4, 15, 300 }, + [14] = { 66.8, 76.6, 15, 300 }, + [15] = { 63.9, 75.5, 15, 300 }, + }, + ["lvl"] = "37-38", + }, + [61022] = { + ["coords"] = { + [1] = { 67.4, 82.4, 15, 300 }, + [2] = { 66.2, 81.7, 15, 300 }, + [3] = { 65.6, 81.7, 15, 300 }, + [4] = { 65.6, 81.3, 15, 300 }, + [5] = { 65.3, 79.8, 15, 300 }, + [6] = { 64.5, 79.8, 15, 300 }, + [7] = { 66.3, 79.7, 15, 300 }, + [8] = { 65.6, 79.2, 15, 300 }, + [9] = { 66.4, 79, 15, 300 }, + [10] = { 64.1, 78.1, 15, 300 }, + [11] = { 67.7, 77.9, 15, 300 }, + [12] = { 64.2, 77.9, 15, 300 }, + [13] = { 66, 77.5, 15, 300 }, + [14] = { 66.1, 77.3, 15, 300 }, + [15] = { 64.8, 75.9, 15, 300 }, + [16] = { 64.9, 74.8, 15, 300 }, + [17] = { 67.3, 74.3, 15, 300 }, + [18] = { 66.8, 72.7, 15, 300 }, + }, + ["lvl"] = "38-39", + }, + [61023] = { + ["coords"] = { + [1] = { 67.2, 83, 15, 300 }, + [2] = { 66.6, 82.8, 15, 300 }, + [3] = { 66, 82.8, 15, 300 }, + [4] = { 66.4, 81.5, 15, 300 }, + [5] = { 66.6, 81.2, 15, 300 }, + [6] = { 66.6, 79.4, 15, 300 }, + [7] = { 67.3, 78.9, 15, 300 }, + [8] = { 64.9, 78.3, 15, 300 }, + [9] = { 63.9, 78.3, 15, 300 }, + [10] = { 65.4, 77.4, 15, 300 }, + [11] = { 65.9, 76.3, 15, 300 }, + [12] = { 66.4, 74.6, 15, 300 }, + [13] = { 67, 73.9, 15, 300 }, + [14] = { 66.8, 70.9, 15, 300 }, + }, + ["lvl"] = "35-37", + }, + [61024] = { + ["coords"] = { + [1] = { 36.3, 51.5, 406, 3600 }, + }, + ["lvl"] = "56", + ["rnk"] = "1", + }, + [61025] = { + ["coords"] = { + [1] = { 36.3, 51.6, 406, 3600 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [61026] = { + ["coords"] = { + [1] = { 52.7, 41.6, 14, 3600 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + ["rnk"] = "1", + }, + [61027] = { + ["coords"] = { + [1] = { 30.9, 41, 406, 180 }, + [2] = { 31.4, 40.8, 406, 180 }, + [3] = { 31.9, 40.7, 406, 180 }, + [4] = { 31, 40.7, 406, 300 }, + [5] = { 30.7, 40.6, 406, 180 }, + [6] = { 31.7, 40.6, 406, 180 }, + [7] = { 31.1, 40.6, 406, 300 }, + [8] = { 32, 40.4, 406, 180 }, + [9] = { 30.4, 40.4, 406, 300 }, + [10] = { 31.3, 40.4, 406, 300 }, + [11] = { 31, 40.3, 406, 180 }, + [12] = { 31.7, 40.2, 406, 180 }, + [13] = { 30.7, 40.2, 406, 300 }, + [14] = { 31.4, 40, 406, 180 }, + [15] = { 31.7, 39.9, 406, 180 }, + [16] = { 31.1, 39.9, 406, 180 }, + [17] = { 30.6, 39.8, 406, 300 }, + [18] = { 32.1, 39.7, 406, 300 }, + [19] = { 31.3, 39.6, 406, 300 }, + [20] = { 31.5, 39.5, 406, 180 }, + [21] = { 30.8, 39.5, 406, 300 }, + [22] = { 30.1, 36.7, 406, 300 }, + [23] = { 30.3, 36.5, 406, 300 }, + [24] = { 30.3, 36.4, 406, 300 }, + }, + ["lvl"] = "23-24", + }, + [61028] = { + ["coords"] = { + [1] = { 28.3, 28.9, 406, 300 }, + }, + ["lvl"] = "26", + }, + [61029] = { + ["coords"] = { + [1] = { 22, 38.1, 406, 3600 }, + [2] = { 22.7, 37.7, 406, 300 }, + [3] = { 30.9, 36.7, 406, 3600 }, + [4] = { 29.6, 36.1, 406, 3600 }, + [5] = { 29.7, 36.1, 406, 3600 }, + [6] = { 30.3, 35.2, 406, 3600 }, + [7] = { 28, 33, 406, 300 }, + [8] = { 27.6, 32.4, 406, 3600 }, + [9] = { 27.9, 31.2, 406, 3600 }, + [10] = { 27.5, 31.1, 406, 3600 }, + [11] = { 27.6, 31.1, 406, 3600 }, + [12] = { 27.2, 30.1, 406, 3600 }, + [13] = { 27.7, 29.5, 406, 3600 }, + }, + ["lvl"] = "23-24", + }, + [61030] = { + ["coords"] = { + [1] = { 23.2, 39.4, 406, 3600 }, + [2] = { 22.2, 39.1, 406, 3600 }, + [3] = { 30.5, 38.2, 406, 300 }, + [4] = { 23.1, 38.1, 406, 300 }, + [5] = { 31.4, 37.7, 406, 3600 }, + [6] = { 30.9, 37.6, 406, 300 }, + [7] = { 31, 36.8, 406, 3600 }, + [8] = { 30.5, 36.6, 406, 300 }, + [9] = { 31.4, 36.6, 406, 300 }, + [10] = { 30.8, 36.2, 406, 300 }, + [11] = { 30, 36, 406, 300 }, + [12] = { 30.4, 35.7, 406, 300 }, + [13] = { 29.6, 35.2, 406, 300 }, + [14] = { 30.6, 34.2, 406, 300 }, + [15] = { 29.6, 34.2, 406, 300 }, + [16] = { 29.2, 33.5, 406, 300 }, + [17] = { 27.7, 32.5, 406, 300 }, + [18] = { 29.4, 32.3, 406, 300 }, + [19] = { 29.1, 31, 406, 300 }, + [20] = { 28.7, 30.9, 406, 300 }, + [21] = { 27.7, 30.8, 406, 300 }, + [22] = { 29.2, 30.4, 406, 300 }, + [23] = { 28.3, 29.9, 406, 300 }, + }, + ["lvl"] = "22-23", + }, + [61031] = { + ["coords"] = { + [1] = { 22.8, 39.1, 406, 3600 }, + [2] = { 29.6, 37.2, 406, 300 }, + [3] = { 27.8, 30.3, 406, 3600 }, + [4] = { 28, 29.8, 406, 3600 }, + [5] = { 26.8, 29.4, 406, 300 }, + [6] = { 24.5, 25.5, 406, 300 }, + [7] = { 24.7, 25.2, 406, 3600 }, + [8] = { 24.2, 25.1, 406, 3600 }, + }, + ["lvl"] = "24-26", + }, + [61032] = { + ["coords"] = { + [1] = { 25.7, 29, 406, 300 }, + [2] = { 26, 28.5, 406, 300 }, + [3] = { 26.2, 28.3, 406, 300 }, + [4] = { 25.8, 27.7, 406, 300 }, + [5] = { 26.1, 27.2, 406, 300 }, + [6] = { 27.3, 26.9, 406, 300 }, + [7] = { 25.1, 25.8, 406, 300 }, + [8] = { 24.5, 25.8, 406, 300 }, + [9] = { 24.7, 25.6, 406, 300 }, + [10] = { 24.1, 25.6, 406, 300 }, + [11] = { 24.3, 25.1, 406, 300 }, + [12] = { 25.1, 24.8, 406, 300 }, + [13] = { 23.9, 24.7, 406, 300 }, + [14] = { 24.8, 24.5, 406, 300 }, + }, + ["lvl"] = "25-26", + }, + [61033] = { + ["coords"] = { + [1] = { 28.2, 28.8, 406, 3600 }, + [2] = { 27.9, 28.5, 406, 300 }, + [3] = { 27, 28.2, 406, 300 }, + [4] = { 26.9, 27.6, 406, 3600 }, + [5] = { 27.1, 27.6, 406, 300 }, + [6] = { 25.3, 27.3, 406, 300 }, + [7] = { 26.6, 27.1, 406, 3600 }, + [8] = { 26.4, 26.4, 406, 300 }, + [9] = { 25.6, 25.9, 406, 300 }, + [10] = { 25, 25.9, 406, 3600 }, + [11] = { 25, 25.8, 406, 300 }, + [12] = { 25.1, 25.5, 406, 300 }, + [13] = { 24.9, 25.3, 406, 300 }, + [14] = { 25.4, 25.3, 406, 300 }, + }, + ["lvl"] = "24-26", + }, + [61034] = { + ["coords"] = { + [1] = { 28.7, 33.1, 406, 300 }, + [2] = { 28.8, 32.8, 406, 3600 }, + [3] = { 28.6, 31.2, 406, 300 }, + [4] = { 26.7, 30.9, 406, 300 }, + [5] = { 27.2, 30.9, 406, 300 }, + [6] = { 28.4, 30.7, 406, 300 }, + [7] = { 26.6, 30.6, 406, 300 }, + [8] = { 27.1, 30.6, 406, 300 }, + [9] = { 27.4, 30.4, 406, 300 }, + [10] = { 26.3, 30.3, 406, 300 }, + [11] = { 25.7, 29.9, 406, 3600 }, + }, + ["lvl"] = "23-25", + }, + [61035] = { + ["coords"] = { + [1] = { 26.7, 27.3, 406, 3600 }, + }, + ["lvl"] = "25", + }, + [61036] = { + ["coords"] = { + [1] = { 24.9, 24.9, 406, 300 }, + }, + ["lvl"] = "30", + }, + [61037] = { + ["coords"] = { + [1] = { 27.5, 29.9, 406, 300 }, + }, + ["lvl"] = "27", + }, + [61038] = { + ["coords"] = { + [1] = { 33, 58.4, 406, 300 }, + [2] = { 34.2, 58.3, 406, 300 }, + [3] = { 34.9, 57.8, 406, 300 }, + [4] = { 33.4, 57.1, 406, 300 }, + [5] = { 34.7, 56.9, 406, 300 }, + [6] = { 34.1, 56.8, 406, 300 }, + [7] = { 35.3, 56.5, 406, 300 }, + [8] = { 32.6, 55.9, 406, 300 }, + [9] = { 33.2, 55.8, 406, 300 }, + [10] = { 34.1, 55.6, 406, 300 }, + [11] = { 32.3, 55, 406, 300 }, + [12] = { 31.8, 54.4, 406, 300 }, + [13] = { 35.1, 52.6, 406, 300 }, + [14] = { 32.8, 51.4, 406, 300 }, + [15] = { 32.6, 50.4, 406, 300 }, + [16] = { 31.6, 50.2, 406, 300 }, + [17] = { 32, 49.8, 406, 300 }, + [18] = { 32.1, 48.7, 406, 300 }, + [19] = { 32.3, 47.4, 406, 300 }, + [20] = { 31.8, 46.7, 406, 300 }, + [21] = { 32.7, 44.5, 406, 300 }, + [22] = { 33.6, 44.1, 406, 300 }, + [23] = { 31.9, 43.5, 406, 300 }, + [24] = { 32.5, 43, 406, 300 }, + [25] = { 32.8, 41.9, 406, 300 }, + }, + ["lvl"] = "22-23", + }, + [61039] = { + ["coords"] = { + [1] = { 29.5, 40, 406, 300 }, + [2] = { 29.1, 39.5, 406, 300 }, + [3] = { 28.5, 39.1, 406, 300 }, + [4] = { 29.7, 38.9, 406, 300 }, + [5] = { 29.3, 38.8, 406, 300 }, + [6] = { 28.3, 38.2, 406, 300 }, + [7] = { 29, 38.1, 406, 300 }, + [8] = { 28.3, 37.4, 406, 300 }, + [9] = { 29.1, 37, 406, 300 }, + [10] = { 28.9, 36.4, 406, 300 }, + [11] = { 28.5, 35.7, 406, 300 }, + }, + ["lvl"] = "23-24", + }, + [61040] = { + ["coords"] = { + [1] = { 73.8, 74.1, 405, 3600 }, + }, + ["lvl"] = "36", + }, + [61041] = { + ["coords"] = { + [1] = { 73.9, 74, 405, 3600 }, + }, + ["lvl"] = "40", + }, + [61042] = { + ["coords"] = { + [1] = { 49.6, 8.1, 405, 300 }, + [2] = { 32.3, 80.6, 406, 300 }, + }, + ["lvl"] = "40", + ["rnk"] = "1", + }, + [61043] = { + ["coords"] = { + [1] = { 53.8, 85, 405, 300 }, + }, + ["lvl"] = "41", + ["rnk"] = "1", + }, + [61044] = { + ["coords"] = { + [1] = { 36.3, 81.3, 405, 3600 }, + }, + ["fac"] = "AH", + ["lvl"] = "40", + }, + [61045] = { + ["coords"] = { + [1] = { 35.7, 81.6, 405, 3600 }, + }, + ["lvl"] = "42", + ["rnk"] = "1", + }, + [61046] = { + ["coords"] = { + [1] = { 44.9, 17.2, 405, 300 }, + }, + ["lvl"] = "41", + ["rnk"] = "1", + }, + [61048] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [61049] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [61050] = { + ["coords"] = { + [1] = { 61.6, 60.3, 4012, 3600 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [61051] = { + ["coords"] = { + [1] = { 41.4, 50.2, 1537, 280 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [61052] = { + ["coords"] = { + [1] = { 62, 39.3, 17, 3600 }, + }, + ["fac"] = "AH", + ["lvl"] = "45", + }, + [61053] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [61054] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "25", + }, + [61055] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "25", + }, + [61056] = { + ["coords"] = { + [1] = { 32.4, 47.5, 15, 280 }, + [2] = { 52.3, 78.6, 17, 280 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [61057] = { + ["coords"] = { + [1] = { 36.3, 22.4, 17, 3600 }, + [2] = { 83.2, 83.3, 406, 3600 }, + }, + ["lvl"] = "26", + }, + [61058] = { + ["coords"] = { + [1] = { 36.2, 22.5, 17, 3600 }, + [2] = { 83, 83.5, 406, 3600 }, + }, + ["fac"] = "AH", + ["lvl"] = "19", + }, + [61059] = { + ["coords"] = { + [1] = { 36.3, 22.2, 17, 3600 }, + [2] = { 83.2, 83, 406, 3600 }, + }, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [61060] = { + ["coords"] = { + [1] = { 36.3, 22.2, 17, 3600 }, + [2] = { 83.2, 83.1, 406, 3600 }, + }, + ["lvl"] = "19", + }, + [61061] = { + ["coords"] = { + [1] = { 34.6, 26.1, 17, 300 }, + [2] = { 34.2, 25.9, 17, 300 }, + [3] = { 35, 25.8, 17, 300 }, + [4] = { 33.7, 25.8, 17, 300 }, + [5] = { 34.8, 25.4, 17, 300 }, + [6] = { 34, 25.3, 17, 300 }, + [7] = { 34.5, 25, 17, 300 }, + [8] = { 34.7, 24.5, 17, 300 }, + [9] = { 35.1, 24.5, 17, 300 }, + [10] = { 34.8, 23.8, 17, 300 }, + [11] = { 35.4, 23.7, 17, 300 }, + [12] = { 35.6, 23.1, 17, 300 }, + [13] = { 35.9, 23.1, 17, 300 }, + [14] = { 35.8, 22.8, 17, 300 }, + [15] = { 35.5, 22.2, 17, 300 }, + [16] = { 80.3, 89.7, 406, 300 }, + [17] = { 79.6, 89.3, 406, 300 }, + [18] = { 81, 89.1, 406, 300 }, + [19] = { 78.8, 89, 406, 300 }, + [20] = { 80.6, 88.4, 406, 300 }, + [21] = { 79.2, 88.3, 406, 300 }, + [22] = { 80.2, 87.7, 406, 300 }, + [23] = { 80.5, 86.9, 406, 300 }, + [24] = { 81.1, 86.8, 406, 300 }, + [25] = { 80.7, 85.7, 406, 300 }, + [26] = { 81.6, 85.6, 406, 300 }, + [27] = { 82, 84.6, 406, 300 }, + [28] = { 82.6, 84.6, 406, 300 }, + [29] = { 82.4, 84, 406, 300 }, + [30] = { 81.8, 83, 406, 300 }, + }, + ["lvl"] = "14-16", + }, + [61062] = { + ["coords"] = { + [1] = { 36.3, 65.1, 331, 300 }, + }, + ["lvl"] = "20", + }, + [61063] = { + ["coords"] = { + [1] = { 40.6, 18.9, 406, 280 }, + }, + ["fac"] = "A", + ["lvl"] = "26", + }, + [61064] = { + ["coords"] = { + [1] = { 18.9, 78.3, 36, 120 }, + [2] = { 25.4, 16.9, 267, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [61065] = { + ["coords"] = { + [1] = { 18.8, 78.3, 36, 300 }, + [2] = { 25.3, 16.9, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "44", + }, + [61066] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "48", + ["rnk"] = "1", + }, + [61067] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "37", + }, + [61068] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "38", + }, + [61069] = { + ["coords"] = { + [1] = { 17.8, 74.4, 3, 300 }, + }, + ["lvl"] = "44", + ["rnk"] = "1", + }, + [61070] = { + ["coords"] = { + [1] = { 44.2, 99, 28, 280 }, + [2] = { 81, 52, 36, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "24", + }, + [61071] = { + ["coords"] = { + [1] = { 44.6, 98.5, 28, 280 }, + [2] = { 81.5, 51.3, 36, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "27", + }, + [61072] = { + ["coords"] = { + [1] = { 89, 40.2, 440, 280 }, + [2] = { 45.6, 93.9, 5121, 300 }, + [3] = { 36.5, 81.5, 5121, 300 }, + [4] = { 66.6, 64.9, 5121, 300 }, + [5] = { 67.6, 60.5, 5121, 300 }, + [6] = { 38.1, 49, 5121, 280 }, + [7] = { 67.8, 48.2, 5121, 300 }, + [8] = { 39.6, 45.6, 5121, 300 }, + [9] = { 66.4, 44.5, 5121, 300 }, + [10] = { 36.2, 32.5, 5121, 300 }, + [11] = { 36.6, 24.7, 5121, 280 }, + [12] = { 41.4, 21.9, 5121, 300 }, + [13] = { 63, 15.5, 5121, 300 }, + [14] = { 52.1, 9.9, 5121, 300 }, + }, + ["lvl"] = "56-57", + }, + [61073] = { + ["coords"] = { + [1] = { 39.5, 50, 5121, 280 }, + [2] = { 40.8, 46.3, 5121, 280 }, + [3] = { 40.7, 43.8, 5121, 280 }, + [4] = { 41.2, 41.8, 5121, 280 }, + [5] = { 44.4, 31.7, 5121, 288 }, + [6] = { 59.5, 31.2, 5121, 280 }, + [7] = { 50.7, 30.1, 5121, 280 }, + [8] = { 48.4, 29.5, 5121, 280 }, + [9] = { 55.2, 28.3, 5121, 280 }, + [10] = { 53.3, 27.9, 5121, 280 }, + [11] = { 46.7, 27.9, 5121, 300 }, + [12] = { 44.1, 25.3, 5121, 280 }, + [13] = { 53.6, 24.6, 5121, 280 }, + [14] = { 51.8, 23.5, 5121, 300 }, + [15] = { 45.9, 16, 5121, 280 }, + }, + ["lvl"] = "56-57", + }, + [61074] = { + ["coords"] = { + [1] = { 49.7, 58, 5121, 280 }, + [2] = { 47.7, 58, 5121, 280 }, + [3] = { 46.1, 57, 5121, 280 }, + [4] = { 48.1, 56.2, 5121, 280 }, + [5] = { 42.6, 55.3, 5121, 280 }, + [6] = { 45.1, 54.6, 5121, 280 }, + [7] = { 46.4, 54.5, 5121, 280 }, + [8] = { 41, 54.4, 5121, 280 }, + [9] = { 39.9, 53.9, 5121, 280 }, + [10] = { 48.7, 53.1, 5121, 280 }, + [11] = { 45.9, 52.7, 5121, 280 }, + [12] = { 43.6, 52.6, 5121, 300 }, + [13] = { 41.6, 52.1, 5121, 280 }, + [14] = { 47.1, 51.7, 5121, 280 }, + [15] = { 45.5, 50.8, 5121, 280 }, + [16] = { 41, 50.5, 5121, 280 }, + [17] = { 48.8, 50, 5121, 280 }, + [18] = { 43.9, 49.6, 5121, 280 }, + [19] = { 46.5, 48.3, 5121, 280 }, + [20] = { 44, 47.7, 5121, 280 }, + [21] = { 45.6, 47.2, 5121, 280 }, + [22] = { 48.8, 45.7, 5121, 280 }, + [23] = { 47.5, 44.2, 5121, 280 }, + [24] = { 48.6, 43.4, 5121, 280 }, + [25] = { 51.3, 40.8, 5121, 280 }, + [26] = { 50, 40.2, 5121, 280 }, + [27] = { 56.1, 37.4, 5121, 280 }, + [28] = { 53.9, 36.7, 5121, 280 }, + [29] = { 52.8, 35.9, 5121, 280 }, + [30] = { 55.9, 34.6, 5121, 280 }, + [31] = { 48.6, 33.9, 5121, 280 }, + }, + ["lvl"] = "56-57", + }, + [61075] = { + ["coords"] = { + [1] = { 36.9, 53.5, 5121, 280 }, + [2] = { 38.5, 51.3, 5121, 280 }, + [3] = { 39.1, 47, 5121, 280 }, + [4] = { 62.5, 46.2, 5121, 300 }, + [5] = { 38.2, 45.3, 5121, 280 }, + [6] = { 40.8, 44.6, 5121, 280 }, + [7] = { 63.1, 44.3, 5121, 300 }, + [8] = { 39.6, 44, 5121, 285 }, + [9] = { 41.3, 42.7, 5121, 280 }, + [10] = { 63.1, 40.8, 5121, 300 }, + [11] = { 38.2, 40.1, 5121, 280 }, + [12] = { 39.3, 39.9, 5121, 280 }, + [13] = { 61.3, 37.3, 5121, 300 }, + [14] = { 58.9, 36.4, 5121, 280 }, + [15] = { 39.1, 34.2, 5121, 280 }, + [16] = { 58.2, 33.7, 5121, 300 }, + [17] = { 57, 33.7, 5121, 300 }, + [18] = { 55.9, 33.1, 5121, 300 }, + [19] = { 53.9, 32.9, 5121, 280 }, + [20] = { 54.9, 32.5, 5121, 300 }, + [21] = { 45.7, 32.5, 5121, 285 }, + [22] = { 56.9, 32.5, 5121, 284 }, + [23] = { 49.4, 31.7, 5121, 300 }, + [24] = { 42.8, 31.6, 5121, 295 }, + [25] = { 55, 31.3, 5121, 300 }, + [26] = { 47.7, 31.2, 5121, 280 }, + [27] = { 57.6, 30.7, 5121, 300 }, + [28] = { 53, 30.6, 5121, 296 }, + [29] = { 52, 30.5, 5121, 300 }, + [30] = { 49.4, 29.8, 5121, 300 }, + [31] = { 56.4, 28.9, 5121, 300 }, + [32] = { 45.7, 27.9, 5121, 300 }, + [33] = { 48.6, 27.5, 5121, 300 }, + [34] = { 42.1, 26.7, 5121, 280 }, + [35] = { 51.4, 25.9, 5121, 280 }, + [36] = { 51.4, 22.7, 5121, 300 }, + [37] = { 43.2, 22.4, 5121, 300 }, + [38] = { 43.1, 20.9, 5121, 300 }, + [39] = { 52.8, 17.2, 5121, 300 }, + [40] = { 54.7, 14.6, 5121, 300 }, + [41] = { 52.5, 13.8, 5121, 300 }, + [42] = { 48.8, 12.9, 5121, 300 }, + [43] = { 53.3, 12.9, 5121, 300 }, + [44] = { 53.3, 12.3, 5121, 300 }, + [45] = { 58.7, 10.1, 5121, 300 }, + [46] = { 54.5, 8.4, 5121, 300 }, + [47] = { 56.2, 7.5, 5121, 300 }, + [48] = { 55.1, 7.3, 5121, 300 }, + }, + ["lvl"] = "56-57", + }, + [61076] = { + ["coords"] = { + [1] = { 46.9, 89.9, 5121, 280 }, + [2] = { 47, 88.7, 5121, 280 }, + [3] = { 45.1, 88.4, 5121, 280 }, + [4] = { 53, 87.2, 5121, 280 }, + [5] = { 39.7, 85.6, 5121, 280 }, + [6] = { 53.8, 85, 5121, 280 }, + [7] = { 39.6, 81.6, 5121, 280 }, + [8] = { 57.4, 79.8, 5121, 280 }, + [9] = { 60.5, 78.5, 5121, 280 }, + [10] = { 53.4, 76.7, 5121, 280 }, + [11] = { 40.2, 75.9, 5121, 280 }, + [12] = { 60.9, 74.7, 5121, 280 }, + [13] = { 55.3, 72.9, 5121, 280 }, + [14] = { 40.5, 71.1, 5121, 280 }, + [15] = { 40.6, 67.1, 5121, 280 }, + [16] = { 63.8, 66.7, 5121, 280 }, + [17] = { 39.5, 62.5, 5121, 280 }, + [18] = { 42.3, 62.5, 5121, 280 }, + [19] = { 64.2, 60, 5121, 280 }, + [20] = { 65.5, 58, 5121, 280 }, + [21] = { 63.4, 51.9, 5121, 280 }, + }, + ["lvl"] = "53-54", + }, + [61077] = { + ["coords"] = { + [1] = { 51.9, 58.2, 5121, 280 }, + [2] = { 54.6, 56.5, 5121, 280 }, + [3] = { 57.3, 55.2, 5121, 280 }, + [4] = { 50.7, 55.2, 5121, 280 }, + [5] = { 52, 54.8, 5121, 280 }, + [6] = { 52.7, 54.6, 5121, 280 }, + [7] = { 57.4, 54.6, 5121, 280 }, + [8] = { 52.4, 53.9, 5121, 280 }, + [9] = { 41.6, 53.9, 5121, 280 }, + [10] = { 40.5, 53.4, 5121, 280 }, + [11] = { 40.7, 53.1, 5121, 280 }, + [12] = { 41.1, 52.6, 5121, 280 }, + [13] = { 55.9, 51.6, 5121, 280 }, + [14] = { 57.3, 50.4, 5121, 280 }, + [15] = { 53.1, 50.1, 5121, 280 }, + [16] = { 55.1, 49.1, 5121, 280 }, + [17] = { 58.4, 43.4, 5121, 280 }, + [18] = { 57.4, 40.2, 5121, 280 }, + }, + ["lvl"] = "53-54", + }, + [61078] = { + ["coords"] = { + [1] = { 51.3, 85.8, 5121, 280 }, + [2] = { 50.6, 84.7, 5121, 280 }, + [3] = { 51.2, 84.4, 5121, 280 }, + [4] = { 42.9, 82.6, 5121, 280 }, + [5] = { 48.7, 78.6, 5121, 280 }, + [6] = { 49.2, 78.3, 5121, 280 }, + [7] = { 54.4, 55.2, 5121, 280 }, + [8] = { 52, 54.5, 5121, 280 }, + [9] = { 50.7, 54.4, 5121, 280 }, + [10] = { 57.7, 53.9, 5121, 280 }, + [11] = { 40.9, 53.7, 5121, 280 }, + [12] = { 41.4, 53.2, 5121, 280 }, + [13] = { 41.9, 53.1, 5121, 280 }, + [14] = { 40.5, 52.8, 5121, 280 }, + [15] = { 52.3, 52.7, 5121, 280 }, + [16] = { 41.3, 52, 5121, 280 }, + [17] = { 55.2, 51.4, 5121, 280 }, + [18] = { 44, 51, 5121, 280 }, + [19] = { 57.7, 50.9, 5121, 280 }, + [20] = { 55.4, 49.2, 5121, 280 }, + [21] = { 53.7, 48.1, 5121, 280 }, + [22] = { 56.4, 40, 5121, 280 }, + [23] = { 55.3, 39.9, 5121, 280 }, + }, + ["lvl"] = "53-54", + }, + [61079] = { + ["coords"] = { + [1] = { 54.1, 91.4, 5121, 280 }, + [2] = { 56.7, 90.9, 5121, 280 }, + [3] = { 58.1, 90.5, 5121, 280 }, + [4] = { 53.6, 89, 5121, 280 }, + [5] = { 54.9, 88.5, 5121, 280 }, + [6] = { 56.3, 88.1, 5121, 280 }, + [7] = { 57.6, 87.6, 5121, 280 }, + [8] = { 53.8, 86.3, 5121, 280 }, + [9] = { 56.3, 86, 5121, 280 }, + [10] = { 57.3, 85.8, 5121, 280 }, + [11] = { 55.3, 85.7, 5121, 280 }, + [12] = { 57.7, 83.8, 5121, 280 }, + [13] = { 39.8, 83.1, 5121, 288 }, + [14] = { 64.2, 79.9, 5121, 280 }, + [15] = { 58.9, 78.9, 5121, 280 }, + [16] = { 61.1, 78.8, 5121, 280 }, + [17] = { 65.6, 78.4, 5121, 280 }, + [18] = { 63.7, 77.5, 5121, 280 }, + [19] = { 61.7, 76.6, 5121, 280 }, + [20] = { 64.1, 76.6, 5121, 280 }, + [21] = { 64.2, 64.3, 5121, 280 }, + }, + ["lvl"] = "54-55", + }, + [61080] = { + ["coords"] = { + [1] = { 53.3, 58.6, 5121, 280 }, + [2] = { 52, 57, 5121, 280 }, + [3] = { 56.8, 56.5, 5121, 280 }, + [4] = { 55.2, 56.4, 5121, 280 }, + [5] = { 52.9, 55.6, 5121, 280 }, + [6] = { 55.6, 54.8, 5121, 280 }, + [7] = { 56.2, 54.5, 5121, 300 }, + [8] = { 50.1, 54.3, 5121, 280 }, + [9] = { 59.4, 53.8, 5121, 280 }, + [10] = { 54.1, 53.8, 5121, 280 }, + [11] = { 54.4, 53.3, 5121, 280 }, + [12] = { 54.5, 52.6, 5121, 280 }, + [13] = { 50.7, 52.4, 5121, 280 }, + [14] = { 57.2, 51.6, 5121, 300 }, + [15] = { 59.5, 51.5, 5121, 280 }, + [16] = { 55.6, 51.4, 5121, 280 }, + [17] = { 57.1, 51, 5121, 280 }, + [18] = { 55.4, 50.3, 5121, 280 }, + [19] = { 56.7, 50, 5121, 280 }, + [20] = { 55, 49.9, 5121, 280 }, + [21] = { 51, 49.2, 5121, 280 }, + [22] = { 53.2, 49, 5121, 280 }, + [23] = { 57, 48.2, 5121, 280 }, + [24] = { 49.9, 47.9, 5121, 280 }, + [25] = { 55, 47.8, 5121, 280 }, + [26] = { 51.3, 47.6, 5121, 280 }, + [27] = { 52.8, 47.2, 5121, 280 }, + [28] = { 50.1, 46.2, 5121, 280 }, + [29] = { 51.6, 44.7, 5121, 280 }, + [30] = { 55.9, 44.6, 5121, 280 }, + [31] = { 53.5, 43.5, 5121, 280 }, + [32] = { 56.6, 43.4, 5121, 280 }, + [33] = { 52.4, 43.1, 5121, 280 }, + [34] = { 53.5, 42.6, 5121, 280 }, + [35] = { 57.2, 42.2, 5121, 280 }, + }, + ["lvl"] = "57-59", + }, + [61081] = { + ["coords"] = { + [1] = { 62.8, 18.7, 5121, 300 }, + }, + ["lvl"] = "58", + ["rnk"] = "1", + }, + [61082] = { + ["coords"] = { + [1] = { 55.2, 58.2, 5121, 280 }, + [2] = { 56.1, 54.3, 5121, 280 }, + [3] = { 52.6, 54.3, 5121, 280 }, + [4] = { 52.2, 54.2, 5121, 280 }, + [5] = { 54.3, 54.2, 5121, 280 }, + [6] = { 56.5, 54, 5121, 280 }, + [7] = { 53.4, 54, 5121, 280 }, + [8] = { 55.3, 53, 5121, 280 }, + [9] = { 57.2, 52.7, 5121, 280 }, + [10] = { 58.9, 52.5, 5121, 280 }, + [11] = { 56.9, 52.2, 5121, 280 }, + [12] = { 55, 51.4, 5121, 280 }, + [13] = { 57.3, 51, 5121, 280 }, + [14] = { 53.9, 50.4, 5121, 280 }, + [15] = { 52.7, 49.3, 5121, 280 }, + [16] = { 54.8, 48.9, 5121, 300 }, + [17] = { 55.1, 48.8, 5121, 280 }, + [18] = { 55.4, 48.4, 5121, 280 }, + [19] = { 53.2, 47.9, 5121, 280 }, + [20] = { 54.3, 47.2, 5121, 280 }, + [21] = { 56.8, 46, 5121, 280 }, + [22] = { 55.5, 42.6, 5121, 300 }, + [23] = { 55.1, 41.8, 5121, 280 }, + }, + ["lvl"] = "56-58", + }, + [61083] = { + ["coords"] = { + [1] = { 49.1, 91.5, 5121, 280 }, + [2] = { 50.5, 91.4, 5121, 280 }, + [3] = { 42, 91.1, 5121, 280 }, + [4] = { 41, 90.9, 5121, 280 }, + [5] = { 50, 89.8, 5121, 280 }, + [6] = { 42.9, 89.6, 5121, 280 }, + [7] = { 49, 89.5, 5121, 280 }, + [8] = { 41, 89.2, 5121, 280 }, + [9] = { 51.2, 88.6, 5121, 280 }, + [10] = { 43.9, 88.5, 5121, 280 }, + [11] = { 50, 88.2, 5121, 280 }, + [12] = { 49, 87.7, 5121, 300 }, + [13] = { 42, 87.3, 5121, 280 }, + [14] = { 43, 86.9, 5121, 280 }, + [15] = { 42.5, 85.6, 5121, 280 }, + [16] = { 41.8, 85, 5121, 280 }, + [17] = { 55.5, 83.2, 5121, 280 }, + [18] = { 56.1, 82.6, 5121, 280 }, + [19] = { 54.7, 81.1, 5121, 280 }, + [20] = { 55.7, 81, 5121, 280 }, + [21] = { 56.8, 80.7, 5121, 280 }, + [22] = { 54.4, 79.6, 5121, 280 }, + [23] = { 55.3, 79.3, 5121, 280 }, + [24] = { 40.6, 72.2, 5121, 280 }, + [25] = { 39, 72.2, 5121, 280 }, + [26] = { 40, 70.8, 5121, 280 }, + [27] = { 37.9, 69.9, 5121, 280 }, + [28] = { 39.5, 69.5, 5121, 280 }, + [29] = { 39.6, 68.2, 5121, 281 }, + [30] = { 38.2, 67.3, 5121, 280 }, + [31] = { 39.8, 66.3, 5121, 293 }, + [32] = { 40.3, 64.8, 5121, 280 }, + [33] = { 41.2, 64.3, 5121, 280 }, + [34] = { 42, 64.3, 5121, 280 }, + [35] = { 39.1, 64, 5121, 280 }, + [36] = { 40.8, 62.7, 5121, 280 }, + [37] = { 37.4, 62.4, 5121, 280 }, + [38] = { 41.1, 61.7, 5121, 280 }, + [39] = { 39.5, 61.3, 5121, 280 }, + }, + ["lvl"] = "53-54", + }, + [61084] = { + ["coords"] = { + [1] = { 48.8, 90.1, 5121, 280 }, + [2] = { 48.8, 89.5, 5121, 280 }, + [3] = { 49.6, 89.1, 5121, 280 }, + [4] = { 43.1, 87.3, 5121, 280 }, + [5] = { 43.6, 86.3, 5121, 280 }, + [6] = { 54.6, 83.5, 5121, 280 }, + [7] = { 55.2, 82.5, 5121, 280 }, + [8] = { 54.7, 78.8, 5121, 280 }, + [9] = { 39.9, 69.3, 5121, 280 }, + [10] = { 40.4, 67.6, 5121, 280 }, + [11] = { 41.6, 66.1, 5121, 280 }, + [12] = { 40, 64.5, 5121, 280 }, + [13] = { 41.2, 62.7, 5121, 280 }, + [14] = { 40.6, 59.8, 5121, 280 }, + [15] = { 40.1, 58.4, 5121, 280 }, + }, + ["lvl"] = "55-56", + }, + [61085] = { + ["coords"] = { + [1] = { 48, 89.5, 5121, 280 }, + [2] = { 42.6, 86.4, 5121, 280 }, + [3] = { 54.3, 82.7, 5121, 280 }, + [4] = { 55.3, 80.6, 5121, 280 }, + [5] = { 55.6, 80.5, 5121, 280 }, + [6] = { 39.6, 69, 5121, 280 }, + [7] = { 40.8, 66.5, 5121, 280 }, + [8] = { 40.9, 66.2, 5121, 280 }, + [9] = { 43, 65.9, 5121, 280 }, + [10] = { 42.9, 65.3, 5121, 280 }, + [11] = { 41.2, 63.8, 5121, 280 }, + [12] = { 40.5, 58.6, 5121, 280 }, + }, + ["lvl"] = "54-55", + }, + [61086] = { + ["coords"] = { + [1] = { 38.8, 43.6, 5121, 280 }, + [2] = { 37.1, 39.6, 5121, 280 }, + [3] = { 40.3, 38.6, 5121, 280 }, + [4] = { 39.4, 36.4, 5121, 280 }, + [5] = { 37.2, 36.2, 5121, 280 }, + [6] = { 40.7, 35.6, 5121, 280 }, + [7] = { 38.7, 34.9, 5121, 280 }, + [8] = { 38.4, 33.4, 5121, 280 }, + [9] = { 37.3, 31.6, 5121, 280 }, + [10] = { 38.6, 30.6, 5121, 280 }, + [11] = { 42.1, 30.1, 5121, 298 }, + [12] = { 40, 29.7, 5121, 280 }, + [13] = { 40.9, 29.4, 5121, 288 }, + [14] = { 40.1, 28.8, 5121, 280 }, + [15] = { 40.1, 28.7, 5121, 280 }, + [16] = { 40.7, 28.6, 5121, 289 }, + [17] = { 51.9, 21.6, 5121, 300 }, + [18] = { 57.8, 20.1, 5121, 280 }, + [19] = { 55.6, 19.7, 5121, 280 }, + [20] = { 55.7, 17.9, 5121, 280 }, + [21] = { 58.8, 17.3, 5121, 280 }, + [22] = { 56, 17.1, 5121, 280 }, + [23] = { 56.3, 16.7, 5121, 280 }, + [24] = { 57.3, 16.3, 5121, 280 }, + [25] = { 59.5, 16, 5121, 280 }, + [26] = { 57.4, 15.3, 5121, 280 }, + [27] = { 53.1, 15.2, 5121, 300 }, + [28] = { 58.1, 15, 5121, 280 }, + [29] = { 59.9, 14.9, 5121, 280 }, + [30] = { 59, 14.7, 5121, 280 }, + [31] = { 60.5, 14.3, 5121, 280 }, + [32] = { 60.5, 13.3, 5121, 280 }, + [33] = { 51.4, 12.7, 5121, 300 }, + }, + ["lvl"] = "57-58", + }, + [61087] = { + ["coords"] = { + [1] = { 39.5, 38.1, 5121, 280 }, + [2] = { 39.3, 35.7, 5121, 280 }, + [3] = { 40.1, 33.4, 5121, 280 }, + [4] = { 39, 32.8, 5121, 280 }, + [5] = { 39.3, 31.6, 5121, 280 }, + [6] = { 40.5, 30.6, 5121, 280 }, + [7] = { 39.2, 28.6, 5121, 280 }, + [8] = { 54.3, 19.7, 5121, 280 }, + [9] = { 53.1, 18.6, 5121, 300 }, + [10] = { 56.9, 17.3, 5121, 280 }, + [11] = { 58.2, 17.2, 5121, 280 }, + [12] = { 57.9, 16.1, 5121, 280 }, + [13] = { 58, 15.7, 5121, 280 }, + }, + ["lvl"] = "56-57", + }, + [61088] = { + ["coords"] = { + [1] = { 40.4, 37, 5121, 280 }, + [2] = { 39.3, 34, 5121, 280 }, + [3] = { 39, 30.6, 5121, 280 }, + [4] = { 38.8, 29.2, 5121, 280 }, + [5] = { 57.2, 16.2, 5121, 280 }, + [6] = { 59.6, 15.7, 5121, 280 }, + [7] = { 57.6, 15.2, 5121, 280 }, + }, + ["lvl"] = "56-58", + }, + [61089] = { + ["coords"] = { + [1] = { 56.4, 13.9, 5121, 280 }, + }, + ["lvl"] = "59", + }, + [61090] = { + ["coords"] = { + [1] = { 55.9, 69.3, 5121, 280 }, + [2] = { 56.9, 68.3, 5121, 280 }, + [3] = { 57.4, 66.8, 5121, 280 }, + [4] = { 56.4, 66.3, 5121, 280 }, + [5] = { 54.1, 66.1, 5121, 280 }, + [6] = { 55.4, 65.2, 5121, 280 }, + [7] = { 60.9, 64.9, 5121, 280 }, + [8] = { 62.5, 64.7, 5121, 280 }, + [9] = { 51.2, 63.8, 5121, 280 }, + [10] = { 59.7, 63.4, 5121, 280 }, + [11] = { 60.7, 63, 5121, 280 }, + [12] = { 52.4, 62.9, 5121, 280 }, + [13] = { 51.1, 62.4, 5121, 280 }, + [14] = { 62.6, 62.4, 5121, 280 }, + [15] = { 57.8, 62.3, 5121, 280 }, + [16] = { 59.4, 62, 5121, 280 }, + [17] = { 44.7, 61.8, 5121, 280 }, + [18] = { 60, 61.3, 5121, 280 }, + [19] = { 49, 61, 5121, 280 }, + [20] = { 61.7, 60.3, 5121, 280 }, + [21] = { 45.2, 60.2, 5121, 280 }, + [22] = { 56.1, 60.1, 5121, 280 }, + [23] = { 58.6, 59.5, 5121, 280 }, + [24] = { 43.5, 58.7, 5121, 280 }, + [25] = { 63, 58.6, 5121, 280 }, + [26] = { 42.5, 57.7, 5121, 280 }, + [27] = { 62.5, 57.5, 5121, 280 }, + [28] = { 43.6, 57.2, 5121, 280 }, + [29] = { 61.4, 56.9, 5121, 280 }, + [30] = { 62.7, 54.4, 5121, 280 }, + [31] = { 62.3, 50.4, 5121, 280 }, + [32] = { 62.5, 49, 5121, 280 }, + [33] = { 61.7, 46.5, 5121, 280 }, + }, + ["lvl"] = "55-56", + }, + [61091] = { + ["coords"] = { + [1] = { 49.4, 86.4, 5121, 280 }, + [2] = { 47.6, 85.6, 5121, 280 }, + [3] = { 46.3, 85.3, 5121, 280 }, + [4] = { 44.1, 85, 5121, 280 }, + [5] = { 52.8, 84.4, 5121, 280 }, + [6] = { 49, 84.2, 5121, 280 }, + [7] = { 46.4, 82.9, 5121, 280 }, + [8] = { 41.7, 81.8, 5121, 280 }, + [9] = { 50.8, 78.6, 5121, 280 }, + [10] = { 47.3, 78.4, 5121, 280 }, + [11] = { 52.6, 78.1, 5121, 280 }, + [12] = { 51.6, 75.3, 5121, 280 }, + [13] = { 46.6, 74.9, 5121, 280 }, + [14] = { 49.5, 74.5, 5121, 280 }, + [15] = { 42.4, 72.6, 5121, 280 }, + }, + ["lvl"] = "53-54", + }, + [61092] = { + ["coords"] = { + [1] = { 57.6, 77.2, 5121, 280 }, + [2] = { 53.6, 75.9, 5121, 280 }, + [3] = { 56.8, 73.8, 5121, 280 }, + [4] = { 51.2, 73, 5121, 280 }, + [5] = { 61.2, 72.8, 5121, 280 }, + [6] = { 55.5, 72.4, 5121, 280 }, + [7] = { 44, 71.4, 5121, 280 }, + [8] = { 54.2, 71.3, 5121, 280 }, + [9] = { 62.6, 70.8, 5121, 280 }, + [10] = { 41.4, 69.8, 5121, 280 }, + [11] = { 47.8, 69.5, 5121, 280 }, + [12] = { 49.6, 69, 5121, 280 }, + [13] = { 50.7, 65.6, 5121, 280 }, + [14] = { 47.5, 65, 5121, 280 }, + [15] = { 46.2, 61.9, 5121, 280 }, + }, + ["lvl"] = "54-56", + }, + [61093] = { + ["coords"] = { + [1] = { 58.9, 73.5, 5121, 280 }, + [2] = { 47.9, 72.6, 5121, 280 }, + [3] = { 58.1, 71.5, 5121, 280 }, + [4] = { 50.5, 71.3, 5121, 280 }, + [5] = { 53.6, 69.6, 5121, 280 }, + [6] = { 60.8, 69.2, 5121, 280 }, + [7] = { 51.1, 69, 5121, 280 }, + [8] = { 57.7, 68.9, 5121, 280 }, + [9] = { 58.6, 67.4, 5121, 280 }, + [10] = { 52.7, 67, 5121, 280 }, + [11] = { 60, 66.8, 5121, 280 }, + [12] = { 61.1, 66.7, 5121, 280 }, + [13] = { 52, 65.7, 5121, 280 }, + }, + ["lvl"] = "56-57", + }, + [61094] = { + ["coords"] = { + [1] = { 62.9, 41.3, 5121, 300 }, + [2] = { 60.8, 40.7, 5121, 300 }, + [3] = { 60.4, 39.5, 5121, 280 }, + [4] = { 61.9, 39.2, 5121, 300 }, + [5] = { 61.4, 37.9, 5121, 280 }, + [6] = { 60.5, 37.8, 5121, 280 }, + [7] = { 59.4, 37.4, 5121, 280 }, + [8] = { 60.9, 36.8, 5121, 285 }, + [9] = { 58.1, 36.7, 5121, 300 }, + [10] = { 60.4, 35.9, 5121, 300 }, + [11] = { 59.8, 35.5, 5121, 292 }, + [12] = { 59, 34.3, 5121, 300 }, + }, + ["lvl"] = "55-56", + }, + [61095] = { + ["coords"] = { + [1] = { 47.3, 87.3, 5121, 280 }, + [2] = { 44.5, 82.4, 5121, 280 }, + [3] = { 51, 80.6, 5121, 280 }, + [4] = { 49.1, 80.2, 5121, 280 }, + [5] = { 47.5, 76.9, 5121, 280 }, + [6] = { 45.9, 76.5, 5121, 280 }, + [7] = { 44.9, 74.8, 5121, 280 }, + [8] = { 48.2, 74.5, 5121, 300 }, + }, + ["lvl"] = "53-55", + }, + [61096] = { + ["coords"] = { + [1] = { 45.2, 42.4, 5121, 280 }, + [2] = { 44.5, 41.6, 5121, 280 }, + [3] = { 47.3, 40.1, 5121, 280 }, + [4] = { 42.6, 39.1, 5121, 280 }, + [5] = { 45.5, 38, 5121, 280 }, + [6] = { 44.1, 37.2, 5121, 280 }, + [7] = { 46.3, 37.1, 5121, 280 }, + [8] = { 43.5, 36.1, 5121, 280 }, + [9] = { 47, 35.3, 5121, 280 }, + [10] = { 42, 34.6, 5121, 280 }, + [11] = { 45.3, 33.7, 5121, 280 }, + [12] = { 41.5, 32.1, 5121, 280 }, + [13] = { 47.8, 21, 5121, 280 }, + [14] = { 50.2, 20.7, 5121, 280 }, + [15] = { 47.6, 20.1, 5121, 280 }, + [16] = { 47.3, 18.8, 5121, 280 }, + [17] = { 49.4, 18.2, 5121, 280 }, + }, + ["lvl"] = "57-58", + }, + [61097] = { + ["coords"] = { + [1] = { 89.6, 70.5, 440, 300 }, + [2] = { 38, 88.4, 5121, 300 }, + [3] = { 67.5, 54.7, 5121, 300 }, + }, + ["lvl"] = "56-58", + }, + [61098] = { + ["coords"] = { + [1] = { 53.9, 48.6, 5121, 280 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [61099] = { + ["coords"] = { + [1] = { 52.5, 80.7, 5121, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [61100] = { + ["coords"] = { + [1] = { 52.7, 80.7, 5121, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [61101] = { + ["coords"] = { + [1] = { 51.3, 34.5, 5121, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "48", + }, + [61102] = { + ["coords"] = { + [1] = { 43.3, 77.6, 5121, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "58", + ["rnk"] = "1", + }, + [61103] = { + ["coords"] = { + [1] = { 43.6, 78.8, 5121, 280 }, + [2] = { 44, 78.6, 5121, 300 }, + [3] = { 40.6, 78.4, 5121, 280 }, + [4] = { 43.7, 78.3, 5121, 280 }, + [5] = { 40.6, 77.7, 5121, 280 }, + [6] = { 42.1, 77.6, 5121, 280 }, + [7] = { 42.1, 77.3, 5121, 280 }, + [8] = { 42, 75.8, 5121, 300 }, + [9] = { 42.1, 75.6, 5121, 280 }, + [10] = { 41.9, 75.5, 5121, 280 }, + [11] = { 39.4, 78, 5121, 120 }, + }, + ["lvl"] = "55", + ["rnk"] = "1", + }, + [61104] = { + ["coords"] = { + [1] = { 41.1, 80, 5121, 280 }, + [2] = { 43.2, 79.6, 5121, 280 }, + [3] = { 42.2, 79.1, 5121, 280 }, + [4] = { 42, 79, 5121, 280 }, + [5] = { 42.2, 78.8, 5121, 280 }, + [6] = { 41.7, 78.8, 5121, 280 }, + [7] = { 41, 78.6, 5121, 280 }, + [8] = { 43.8, 77.3, 5121, 280 }, + [9] = { 40.6, 77.3, 5121, 280 }, + [10] = { 42.7, 76.2, 5121, 280 }, + [11] = { 42.6, 76.1, 5121, 280 }, + [12] = { 42.3, 75.9, 5121, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [61105] = { + ["coords"] = { + [1] = { 50.9, 34.3, 5121, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "56", + }, + [61106] = { + ["coords"] = { + [1] = { 51.6, 34.2, 5121, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "53", + }, + [61107] = { + ["coords"] = { + [1] = { 43.3, 78.9, 5121, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "40", + }, + [61108] = { + ["coords"] = { + [1] = { 42.9, 79.5, 5121, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [61109] = { + ["coords"] = { + [1] = { 42.6, 77.1, 5121, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "40", + }, + [61110] = { + ["coords"] = { + [1] = { 41.1, 76.1, 5121, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "46", + }, + [61111] = { + ["coords"] = { + [1] = { 43, 76.5, 5121, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "51", + }, + [61112] = { + ["coords"] = { + [1] = { 41.1, 79.2, 5121, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "59", + }, + [61113] = { + ["coords"] = { + [1] = { 43.3, 77.4, 5121, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [61114] = { + ["coords"] = { + [1] = { 43.2, 77.6, 5121, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "58", + ["rnk"] = "1", + }, + [61115] = { + ["coords"] = { + [1] = { 42.9, 79.3, 5121, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [61116] = { + ["coords"] = { + [1] = { 42.6, 77.6, 5121, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "49", + }, + [61117] = { + ["coords"] = { + [1] = { 40.9, 78.4, 5121, 280 }, + }, + ["lvl"] = "48", + }, + [61118] = { + ["coords"] = {}, + ["lvl"] = "57", + }, + [61119] = { + ["coords"] = {}, + ["lvl"] = "56", + }, + [61120] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [61121] = { + ["coords"] = { + [1] = { 70.4, 56.5, 5130, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "45", + }, + [61122] = { + ["coords"] = { + [1] = { 67.9, 48.8, 5130, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [61123] = { + ["coords"] = { + [1] = { 66.8, 62.2, 5130, 280 }, + [2] = { 70.3, 61.9, 5130, 280 }, + [3] = { 71.7, 61.3, 5130, 280 }, + [4] = { 71.2, 59.3, 5130, 280 }, + [5] = { 71.1, 58.7, 5130, 280 }, + [6] = { 65.6, 58.4, 5130, 280 }, + [7] = { 69.5, 57.8, 5130, 280 }, + [8] = { 70.6, 57.7, 5130, 300 }, + [9] = { 64.5, 56.6, 5130, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "15", + }, + [61124] = { + ["coords"] = { + [1] = { 67, 62, 5130, 280 }, + [2] = { 69.6, 61.9, 5130, 280 }, + [3] = { 71.5, 61.4, 5130, 280 }, + [4] = { 65.4, 58.3, 5130, 280 }, + [5] = { 69.7, 57.6, 5130, 280 }, + [6] = { 64.4, 56.9, 5130, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "15", + }, + [61125] = { + ["coords"] = { + [1] = { 71.1, 61.9, 5130, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [61126] = { + ["coords"] = { + [1] = { 50.6, 17.3, 5121, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "56", + }, + [61127] = { + ["coords"] = { + [1] = { 37.6, 74.8, 5130, 10 }, + [2] = { 35, 74.6, 5130, 10 }, + [3] = { 45.5, 73.8, 5130, 10 }, + [4] = { 38.3, 73.8, 5130, 10 }, + [5] = { 42.4, 73.3, 5130, 10 }, + [6] = { 38.4, 70, 5130, 10 }, + [7] = { 38.2, 69.4, 5130, 10 }, + [8] = { 36.8, 69.3, 5130, 10 }, + [9] = { 48.5, 68.1, 5130, 10 }, + [10] = { 38, 65.9, 5130, 10 }, + [11] = { 40.7, 65.2, 5130, 10 }, + [12] = { 47.3, 61.5, 5130, 10 }, + [13] = { 50.1, 60.2, 5130, 10 }, + [14] = { 41, 56, 5130, 10 }, + }, + ["lvl"] = "10", + }, + [61128] = { + ["coords"] = { + [1] = { 37.9, 78.5, 5130, 10 }, + [2] = { 39.7, 76.3, 5130, 10 }, + [3] = { 37.8, 75.3, 5130, 10 }, + [4] = { 37.5, 75.2, 5130, 10 }, + [5] = { 36.8, 74.5, 5130, 10 }, + [6] = { 36.6, 74, 5130, 10 }, + [7] = { 41.8, 73.1, 5130, 10 }, + [8] = { 47.9, 71.1, 5130, 10 }, + [9] = { 35.8, 70.9, 5130, 10 }, + [10] = { 41.8, 70.5, 5130, 10 }, + [11] = { 45.7, 70.3, 5130, 10 }, + [12] = { 38.4, 69.1, 5130, 10 }, + [13] = { 34.9, 66.2, 5130, 10 }, + [14] = { 43.6, 66, 5130, 10 }, + [15] = { 38.5, 62.3, 5130, 10 }, + [16] = { 45.8, 58.5, 5130, 10 }, + }, + ["lvl"] = "10", + }, + [61129] = { + ["coords"] = { + [1] = { 60.9, 88.1, 5121, 300 }, + [2] = { 59.2, 87.3, 5121, 300 }, + [3] = { 61.9, 86.1, 5121, 300 }, + [4] = { 63.5, 85.9, 5121, 300 }, + [5] = { 61.3, 84.3, 5121, 300 }, + [6] = { 63.5, 83.4, 5121, 300 }, + [7] = { 60.9, 81.8, 5121, 300 }, + [8] = { 62.5, 81.5, 5121, 300 }, + }, + ["lvl"] = "54-55", + }, + [61130] = { + ["coords"] = { + [1] = { 63, 37, 5121, 300 }, + [2] = { 63.5, 31.2, 5121, 300 }, + [3] = { 61.5, 30.9, 5121, 300 }, + [4] = { 56.7, 29.5, 5121, 300 }, + [5] = { 59.9, 29.5, 5121, 300 }, + [6] = { 61.2, 28.2, 5121, 300 }, + [7] = { 57.7, 27.4, 5121, 300 }, + [8] = { 56.2, 27.2, 5121, 300 }, + [9] = { 59, 26.9, 5121, 300 }, + [10] = { 57.7, 26.3, 5121, 300 }, + [11] = { 62.6, 25.7, 5121, 300 }, + [12] = { 57.6, 25.6, 5121, 300 }, + [13] = { 55.7, 25.5, 5121, 300 }, + [14] = { 54.8, 24.8, 5121, 300 }, + [15] = { 59.4, 24.4, 5121, 300 }, + [16] = { 63.8, 24.3, 5121, 300 }, + [17] = { 58.5, 23.5, 5121, 300 }, + [18] = { 62.2, 23.3, 5121, 300 }, + [19] = { 53.8, 22.9, 5121, 300 }, + [20] = { 62.3, 22.3, 5121, 300 }, + [21] = { 59.6, 20.4, 5121, 300 }, + [22] = { 63.2, 20, 5121, 300 }, + [23] = { 61.2, 19.5, 5121, 300 }, + [24] = { 60.4, 18.9, 5121, 300 }, + }, + ["lvl"] = "57-58", + }, + [61131] = { + ["coords"] = { + [1] = { 65.6, 39.6, 5121, 300 }, + [2] = { 66.4, 38.6, 5121, 300 }, + [3] = { 64.8, 37.4, 5121, 300 }, + [4] = { 63.6, 36.7, 5121, 300 }, + [5] = { 64.5, 35.4, 5121, 300 }, + [6] = { 64.2, 33.6, 5121, 300 }, + [7] = { 61.3, 32.6, 5121, 300 }, + [8] = { 57.8, 29.8, 5121, 300 }, + [9] = { 62, 28.9, 5121, 300 }, + [10] = { 64.7, 28.3, 5121, 300 }, + [11] = { 59.7, 28, 5121, 300 }, + [12] = { 62.7, 27.6, 5121, 300 }, + [13] = { 61, 25.7, 5121, 300 }, + [14] = { 59.5, 25.1, 5121, 300 }, + [15] = { 56.4, 24.2, 5121, 300 }, + [16] = { 55.9, 22.9, 5121, 300 }, + [17] = { 57.7, 22.5, 5121, 300 }, + [18] = { 60.7, 21.8, 5121, 300 }, + [19] = { 63.7, 20.6, 5121, 300 }, + [20] = { 58.5, 19.3, 5121, 300 }, + }, + ["lvl"] = "58-59", + }, + [61132] = { + ["coords"] = { + [1] = { 39.4, 78, 5121, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [61133] = { + ["coords"] = { + [1] = { 42.8, 72.5, 15, 120 }, + }, + ["lvl"] = "55", + ["rnk"] = "1", + }, + [61134] = { + ["coords"] = { + [1] = { 50.9, 17.6, 5121, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "49", + }, + [61135] = { + ["coords"] = { + [1] = { 59.3, 99.9, 5130, 300 }, + [2] = { 57.8, 99.4, 5130, 300 }, + [3] = { 63.3, 99, 5130, 300 }, + [4] = { 60.3, 98.4, 5130, 300 }, + [5] = { 69.1, 98.2, 5130, 300 }, + [6] = { 61.1, 97.7, 5130, 300 }, + [7] = { 58, 97.7, 5130, 300 }, + [8] = { 67.7, 97.5, 5130, 300 }, + [9] = { 67, 96.8, 5130, 300 }, + [10] = { 69.1, 95.4, 5130, 300 }, + [11] = { 58.8, 94.4, 5130, 300 }, + [12] = { 59.4, 93.5, 5130, 300 }, + [13] = { 63.2, 93, 5130, 300 }, + [14] = { 61.6, 92.8, 5130, 300 }, + [15] = { 60.5, 92.3, 5130, 300 }, + [16] = { 68.2, 92, 5130, 300 }, + [17] = { 59.4, 91.2, 5130, 300 }, + [18] = { 60.6, 90.2, 5130, 300 }, + [19] = { 61.7, 89.7, 5130, 300 }, + [20] = { 65.2, 89.6, 5130, 300 }, + [21] = { 63.7, 88.4, 5130, 300 }, + }, + ["lvl"] = "58-60", + }, + [61136] = { + ["coords"] = { + [1] = { 44, 13.3, 5130, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "40", + }, + [61137] = { + ["coords"] = { + [1] = { 71.1, 73.2, 15, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [61138] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "62", + ["rnk"] = "1", + }, + [61139] = { + ["coords"] = { + [1] = { 60, 57.7, 1584, 604800 }, + }, + ["lvl"] = "56", + ["rnk"] = "1", + }, + [61140] = { + ["coords"] = { + [1] = { 87.3, 45.7, 331, 280 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [61141] = { + ["coords"] = { + [1] = { 87.2, 45.9, 331, 280 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [61142] = { + ["coords"] = { + [1] = { 86.9, 44.6, 331, 280 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [61143] = { + ["coords"] = { + [1] = { 86.7, 43.2, 331, 280 }, + }, + ["fac"] = "A", + ["lvl"] = "52", + ["rnk"] = "1", + }, + [61144] = { + ["coords"] = { + [1] = { 86.3, 45.7, 331, 280 }, + }, + ["fac"] = "A", + ["lvl"] = "36", + }, + [61145] = { + ["coords"] = { + [1] = { 85.3, 44.3, 331, 280 }, + }, + ["fac"] = "A", + ["lvl"] = "33", + }, + [61146] = { + ["coords"] = { + [1] = { 84.5, 46.6, 331, 280 }, + }, + ["fac"] = "A", + ["lvl"] = "26", + }, + [61147] = { + ["coords"] = { + [1] = { 86.1, 45.9, 331, 280 }, + }, + ["fac"] = "A", + ["lvl"] = "48", + ["rnk"] = "1", + }, + [61148] = { + ["coords"] = { + [1] = { 60.5, 23.6, 361, 280 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [61149] = { + ["coords"] = { + [1] = { 61.7, 25.5, 361, 280 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [61150] = { + ["coords"] = { + [1] = { 60.7, 25.4, 361, 280 }, + }, + ["fac"] = "A", + ["lvl"] = "58", + ["rnk"] = "1", + }, + [61151] = { + ["coords"] = { + [1] = { 88.7, 44.9, 357, 280 }, + [2] = { 6.5, 16.5, 400, 280 }, + }, + ["fac"] = "A", + ["lvl"] = "42", + }, + [61152] = { + ["coords"] = { + [1] = { 61.1, 23.8, 361, 280 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [61153] = { + ["coords"] = { + [1] = { 89.2, 44.2, 357, 280 }, + [2] = { 7.4, 15.3, 400, 280 }, + }, + ["fac"] = "A", + ["lvl"] = "42", + }, + [61154] = { + ["coords"] = { + [1] = { 89.5, 44.8, 357, 280 }, + [2] = { 7.8, 16.2, 400, 280 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [61155] = { + ["coords"] = { + [1] = { 61, 25.1, 361, 280 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [61156] = { + ["coords"] = { + [1] = { 59.4, 23.1, 361, 280 }, + }, + ["fac"] = "A", + ["lvl"] = "52", + }, + [61157] = { + ["coords"] = { + [1] = { 57.7, 15, 5121, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [61158] = { + ["coords"] = { + [1] = { 56.4, 28, 5130, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [61159] = { + ["coords"] = { + [1] = { 56.3, 28.3, 5130, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [61160] = { + ["coords"] = { + [1] = { 56.2, 27.9, 5130, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [61161] = { + ["coords"] = { + [1] = { 56.2, 28.2, 5130, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [61162] = { + ["coords"] = { + [1] = { 46.2, 40.5, 361, 300 }, + [2] = { 46.9, 40.2, 361, 300 }, + [3] = { 47.3, 40, 361, 280 }, + [4] = { 48.3, 40, 361, 300 }, + [5] = { 47.4, 39.9, 361, 280 }, + [6] = { 47.9, 39.7, 361, 300 }, + [7] = { 47.4, 39.6, 361, 300 }, + [8] = { 46.9, 39.5, 361, 300 }, + [9] = { 46.6, 39.5, 361, 300 }, + [10] = { 47.6, 39.4, 361, 300 }, + [11] = { 48.4, 39.3, 361, 300 }, + [12] = { 47.6, 39.3, 361, 300 }, + [13] = { 48.1, 38.9, 361, 280 }, + [14] = { 47, 38.9, 361, 300 }, + [15] = { 48.1, 38.8, 361, 280 }, + [16] = { 47.7, 38.8, 361, 300 }, + [17] = { 48.6, 38.4, 361, 300 }, + [18] = { 47.4, 38.4, 361, 300 }, + [19] = { 48.1, 37.9, 361, 300 }, + [20] = { 1.7, 24.5, 616, 300 }, + [21] = { 0.1, 24.4, 616, 280 }, + [22] = { 1, 24, 616, 300 }, + [23] = { 0.1, 23.8, 616, 300 }, + [24] = { 0.4, 23.5, 616, 300 }, + [25] = { 1.9, 23.3, 616, 300 }, + [26] = { 0.4, 23.2, 616, 300 }, + [27] = { 1.4, 22.6, 616, 280 }, + [28] = { 1.3, 22.4, 616, 280 }, + [29] = { 0.6, 22.3, 616, 300 }, + [30] = { 2.2, 21.7, 616, 300 }, + [31] = { 0.2, 21.6, 616, 300 }, + [32] = { 1.4, 20.8, 616, 300 }, + }, + ["lvl"] = "52-54", + }, + [61163] = { + ["coords"] = { + [1] = { 89.2, 85.4, 616, 300 }, + [2] = { 51, 89.5, 618, 300 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [61164] = { + ["coords"] = { + [1] = { 47.6, 39.3, 361, 280 }, + [2] = { 0.5, 23.3, 616, 280 }, + }, + ["lvl"] = "57", + ["rnk"] = "1", + }, + [61165] = { + ["coords"] = { + [1] = { 61.8, 25.7, 361, 280 }, + [2] = { 61.6, 25.6, 361, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [61166] = { + ["coords"] = { + [1] = { 50.1, 74.4, 148, 280 }, + [2] = { 34.5, 53.5, 361, 280 }, + }, + ["fac"] = "H", + ["lvl"] = "56", + }, + [61167] = { + ["coords"] = { + [1] = { 50.4, 73.9, 148, 280 }, + [2] = { 34.8, 52.8, 361, 280 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [61168] = { + ["coords"] = { + [1] = { 30.3, 59.7, 1, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [61169] = { + ["coords"] = { + [1] = { 53.9, 11.2, 618, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [61170] = { + ["coords"] = { + [1] = { 30.3, 56.2, 331, 280 }, + [2] = { 66.4, 23.1, 406, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [61171] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [61172] = { + ["coords"] = { + [1] = { 57.3, 94.4, 215, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [61173] = { + ["coords"] = { + [1] = { 54.6, 27.5, 5130, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [61174] = { + ["coords"] = { + [1] = { 49.2, 28, 5130, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [61175] = { + ["coords"] = { + [1] = { 55.9, 33.3, 5130, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [61176] = { + ["coords"] = { + [1] = { 54.1, 31.7, 5130, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [61177] = { + ["coords"] = { + [1] = { 52.9, 36, 5130, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [61178] = { + ["coords"] = { + [1] = { 53.8, 37.4, 5130, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [61179] = { + ["coords"] = { + [1] = { 53.8, 36.5, 5130, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [61180] = { + ["coords"] = { + [1] = { 54.8, 37.6, 5130, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [61181] = { + ["coords"] = { + [1] = { 53.7, 36.5, 5130, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [61182] = { + ["coords"] = { + [1] = { 53.9, 37.5, 5130, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [61183] = { + ["coords"] = { + [1] = { 53.1, 36, 5130, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [61184] = { + ["coords"] = { + [1] = { 54.9, 37.4, 5130, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [61185] = { + ["coords"] = { + [1] = { 54.9, 37.5, 5130, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [61186] = { + ["coords"] = { + [1] = { 53.7, 36.4, 5130, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [61187] = { + ["coords"] = { + [1] = { 53.9, 37.3, 5130, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [61188] = { + ["coords"] = { + [1] = { 53.8, 36.4, 5130, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [61189] = { + ["coords"] = { + [1] = { 53.8, 35.5, 5130, 280 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [61190] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "30", + }, + [61191] = { + ["coords"] = { + [1] = { 49.3, 59.4, 3457, 604800 }, + [2] = { 66.2, 38.1, 3457, 604800 }, + [3] = { 51.5, 32.9, 3457, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [61192] = { + ["coords"] = { + [1] = { 46.7, 59.9, 3457, 604800 }, + [2] = { 53.5, 57.8, 3457, 604800 }, + [3] = { 44.7, 56.8, 3457, 604800 }, + [4] = { 68.1, 55, 3457, 604800 }, + [5] = { 65.8, 54.6, 3457, 604800 }, + [6] = { 54.8, 52.6, 3457, 604800 }, + [7] = { 71.2, 50.6, 3457, 604800 }, + [8] = { 67.9, 49, 3457, 604800 }, + [9] = { 71.5, 47.6, 3457, 604800 }, + [10] = { 67.7, 47.3, 3457, 604800 }, + [11] = { 60.2, 47.3, 3457, 604800 }, + [12] = { 61.2, 46.8, 3457, 604800 }, + [13] = { 53.4, 44.1, 3457, 604800 }, + [14] = { 48.6, 43.5, 3457, 604800 }, + [15] = { 46.6, 42.9, 3457, 604800 }, + [16] = { 54.1, 41.4, 3457, 604800 }, + [17] = { 63.1, 40.2, 3457, 604800 }, + [18] = { 54.8, 40, 3457, 604800 }, + [19] = { 62.2, 39.8, 3457, 604800 }, + [20] = { 50.9, 32.9, 3457, 604800 }, + [21] = { 27, 32.3, 3457, 604800 }, + [22] = { 16.8, 17.5, 3457, 604800 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [61193] = { + ["coords"] = { + [1] = { 44.7, 59.7, 3457, 604800 }, + [2] = { 44, 58.9, 3457, 604800 }, + [3] = { 52.6, 57.9, 3457, 604800 }, + [4] = { 66.9, 55.2, 3457, 604800 }, + [5] = { 66.9, 47.4, 3457, 604800 }, + [6] = { 71.1, 46.6, 3457, 604800 }, + [7] = { 61.3, 45.5, 3457, 604800 }, + [8] = { 46.6, 45.3, 3457, 604800 }, + [9] = { 53.9, 40.3, 3457, 604800 }, + [10] = { 46.9, 39.3, 3457, 604800 }, + [11] = { 62.4, 38.4, 3457, 604800 }, + [12] = { 26.5, 30.8, 3457, 604800 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [61194] = { + ["coords"] = { + [1] = { 44.6, 58.5, 3457, 604800 }, + [2] = { 53, 56.5, 3457, 604800 }, + [3] = { 65.6, 55.3, 3457, 604800 }, + [4] = { 48.4, 51.5, 3457, 604800 }, + [5] = { 66.6, 49, 3457, 604800 }, + [6] = { 71, 49, 3457, 604800 }, + [7] = { 67.5, 48.4, 3457, 604800 }, + [8] = { 61.6, 48, 3457, 604800 }, + [9] = { 53.9, 47.1, 3457, 604800 }, + [10] = { 62.5, 46.9, 3457, 604800 }, + [11] = { 53.3, 45.8, 3457, 604800 }, + [12] = { 54.4, 45.6, 3457, 604800 }, + [13] = { 45.8, 43.8, 3457, 604800 }, + [14] = { 47.5, 40.4, 3457, 604800 }, + [15] = { 64.1, 38.7, 3457, 604800 }, + [16] = { 47.7, 38.4, 3457, 604800 }, + [17] = { 63.2, 38.3, 3457, 604800 }, + [18] = { 51.2, 34.1, 3457, 604800 }, + [19] = { 51.3, 31.4, 3457, 604800 }, + [20] = { 30.5, 24.3, 3457, 604800 }, + [21] = { 17.1, 15.7, 3457, 604800 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [61195] = { + ["coords"] = { + [1] = { 74.4, 32.4, 3457, 604800 }, + [2] = { 68.7, 28.3, 3457, 604800 }, + [3] = { 66.8, 27.3, 3457, 604800 }, + [4] = { 68.3, 26.8, 3457, 604800 }, + [5] = { 30.1, 26.1, 3457, 604800 }, + [6] = { 61, 25.3, 3457, 604800 }, + [7] = { 29.6, 24.3, 3457, 604800 }, + [8] = { 82.5, 19.2, 3457, 604800 }, + [9] = { 62.8, 18.6, 3457, 604800 }, + [10] = { 80.5, 17.1, 3457, 604800 }, + [11] = { 70, 17, 3457, 604800 }, + [12] = { 58.6, 14.7, 3457, 604800 }, + [13] = { 65.3, 12.6, 3457, 604800 }, + [14] = { 64.3, 12.6, 3457, 604800 }, + [15] = { 58.1, 12, 3457, 604800 }, + [16] = { 64.2, 11.5, 3457, 604800 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [61196] = { + ["coords"] = { + [1] = { 73.3, 32.7, 3457, 604800 }, + [2] = { 73.6, 31.9, 3457, 604800 }, + [3] = { 73.3, 31.5, 3457, 604800 }, + [4] = { 67.5, 28.4, 3457, 604800 }, + [5] = { 61.7, 26.3, 3457, 604800 }, + [6] = { 82, 19.5, 3457, 604800 }, + [7] = { 63.2, 19.4, 3457, 604800 }, + [8] = { 80.6, 18.1, 3457, 604800 }, + [9] = { 68.9, 16.7, 3457, 604800 }, + [10] = { 69.6, 16, 3457, 604800 }, + [11] = { 69.2, 14.2, 3457, 604800 }, + [12] = { 59.2, 13, 3457, 604800 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [61197] = { + ["coords"] = { + [1] = { 74.1, 31.2, 3457, 604800 }, + [2] = { 77.4, 29.9, 3457, 604800 }, + [3] = { 77.8, 29, 3457, 604800 }, + [4] = { 78.3, 28.1, 3457, 604800 }, + [5] = { 78.4, 27.6, 3457, 604800 }, + [6] = { 62, 25.9, 3457, 604800 }, + [7] = { 64, 18.8, 3457, 604800 }, + [8] = { 81.2, 18.7, 3457, 604800 }, + [9] = { 69.5, 17.9, 3457, 604800 }, + [10] = { 57.6, 14.9, 3457, 604800 }, + [11] = { 58.8, 13.7, 3457, 604800 }, + [12] = { 65.1, 11.7, 3457, 604800 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [61198] = { + ["coords"] = { + [1] = { 54.9, 96.2, 3457, 604800 }, + [2] = { 52.2, 94.8, 3457, 604800 }, + [3] = { 52.7, 94.4, 3457, 604800 }, + [4] = { 52.3, 93.6, 3457, 604800 }, + [5] = { 47.9, 91.6, 3457, 604800 }, + [6] = { 47.3, 89.7, 3457, 604800 }, + [7] = { 55.9, 88.2, 3457, 604800 }, + [8] = { 56.6, 87.9, 3457, 604800 }, + [9] = { 46.7, 86.4, 3457, 604800 }, + [10] = { 47.1, 86.3, 3457, 604800 }, + [11] = { 46.5, 85.8, 3457, 604800 }, + [12] = { 45.9, 82.1, 3457, 604800 }, + [13] = { 50.3, 81.3, 3457, 604800 }, + [14] = { 46.5, 80.3, 3457, 604800 }, + [15] = { 51, 80.2, 3457, 604800 }, + [16] = { 27.6, 32.9, 3457, 604800 }, + [17] = { 28, 31.2, 3457, 604800 }, + [18] = { 17.8, 31, 3457, 604800 }, + [19] = { 17.5, 30.6, 3457, 604800 }, + [20] = { 17.5, 29.9, 3457, 604800 }, + [21] = { 17.4, 16.9, 3457, 604800 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [61199] = { + ["coords"] = { + [1] = { 47, 85.6, 3457, 604800 }, + [2] = { 18.9, 34.7, 3457, 604800 }, + [3] = { 44.2, 33.6, 3457, 604800 }, + [4] = { 43.4, 33.3, 3457, 604800 }, + [5] = { 43.3, 31.5, 3457, 604800 }, + [6] = { 43.6, 29.8, 3457, 604800 }, + [7] = { 33.3, 18.1, 3457, 604800 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [61200] = { + ["coords"] = { + [1] = { 55.1, 96.7, 3457, 604800 }, + [2] = { 54.5, 96.3, 3457, 604800 }, + [3] = { 55.2, 96.1, 3457, 604800 }, + [4] = { 58.1, 92.5, 3457, 604800 }, + [5] = { 46.9, 90.6, 3457, 604800 }, + [6] = { 57.3, 89.6, 3457, 604800 }, + [7] = { 56.2, 88.9, 3457, 604800 }, + [8] = { 55.8, 87.6, 3457, 604800 }, + [9] = { 59, 84.5, 3457, 604800 }, + [10] = { 58.7, 83.7, 3457, 604800 }, + [11] = { 50.4, 83.6, 3457, 604800 }, + [12] = { 51.3, 82.9, 3457, 604800 }, + [13] = { 46.5, 81.8, 3457, 604800 }, + [14] = { 45.5, 81.5, 3457, 604800 }, + [15] = { 51.2, 80.8, 3457, 604800 }, + [16] = { 45.8, 80.7, 3457, 604800 }, + [17] = { 50.5, 78.8, 3457, 604800 }, + [18] = { 60, 66.4, 3457, 604800 }, + [19] = { 58.7, 66.2, 3457, 604800 }, + [20] = { 63.8, 65.2, 3457, 604800 }, + [21] = { 60.5, 59.7, 3457, 604800 }, + [22] = { 59.2, 59.5, 3457, 604800 }, + [23] = { 61, 52.9, 3457, 604800 }, + [24] = { 59.7, 52.7, 3457, 604800 }, + [25] = { 68, 42.4, 3457, 604800 }, + [26] = { 66.9, 42.1, 3457, 604800 }, + [27] = { 33.2, 41.9, 3457, 604800 }, + [28] = { 43.6, 41.4, 3457, 604800 }, + [29] = { 44.2, 40.6, 3457, 604800 }, + [30] = { 38.8, 39.4, 3457, 604800 }, + [31] = { 71.8, 37.6, 3457, 604800 }, + [32] = { 20, 35, 3457, 604800 }, + [33] = { 26.9, 33.8, 3457, 604800 }, + [34] = { 58.8, 30.4, 3457, 604800 }, + [35] = { 57.8, 30.3, 3457, 604800 }, + [36] = { 20.5, 29, 3457, 604800 }, + [37] = { 57, 25.2, 3457, 604800 }, + [38] = { 57.2, 23.7, 3457, 604800 }, + [39] = { 43.1, 22.2, 3457, 604800 }, + [40] = { 19.2, 20.8, 3457, 604800 }, + [41] = { 31.8, 17.9, 3457, 604800 }, + [42] = { 32.9, 17.2, 3457, 604800 }, + [43] = { 29.4, 17.2, 3457, 604800 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [61201] = { + ["coords"] = { + [1] = { 54.7, 95.9, 3457, 604800 }, + [2] = { 47.5, 91.8, 3457, 604800 }, + [3] = { 53.7, 91.3, 3457, 604800 }, + [4] = { 47.4, 91.3, 3457, 604800 }, + [5] = { 54.1, 90.7, 3457, 604800 }, + [6] = { 52.1, 88.8, 3457, 604800 }, + [7] = { 57.6, 88.1, 3457, 604800 }, + [8] = { 58.2, 85.2, 3457, 604800 }, + [9] = { 58.1, 84.6, 3457, 604800 }, + [10] = { 53.1, 80.7, 3457, 604800 }, + [11] = { 52.8, 79.6, 3457, 604800 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [61202] = { + ["coords"] = { + [1] = { 56.3, 87.3, 3457, 604800 }, + [2] = { 58.3, 84.3, 3457, 604800 }, + [3] = { 50.9, 81.4, 3457, 604800 }, + [4] = { 47.7, 80.5, 3457, 604800 }, + [5] = { 48.4, 79.7, 3457, 604800 }, + [6] = { 49.8, 78.3, 3457, 604800 }, + [7] = { 50.9, 78.3, 3457, 604800 }, + [8] = { 50.4, 78.1, 3457, 604800 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [61203] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [61204] = { + ["coords"] = { + [1] = { 48.4, 92.5, 3457, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [61205] = { + ["coords"] = { + [1] = { 68.2, 72.6, 3457, 604800 }, + [2] = { 67.7, 72.1, 3457, 604800 }, + [3] = { 68.3, 71.7, 3457, 604800 }, + [4] = { 64.8, 69.2, 3457, 604800 }, + [5] = { 69.5, 68, 3457, 604800 }, + [6] = { 66.2, 51.6, 3457, 604800 }, + [7] = { 62.6, 45.4, 3457, 604800 }, + [8] = { 36.9, 44, 3457, 604800 }, + [9] = { 63.3, 37.9, 3457, 604800 }, + [10] = { 72.2, 37.7, 3457, 604800 }, + [11] = { 72.1, 37.1, 3457, 604800 }, + [12] = { 20.7, 28.1, 3457, 604800 }, + [13] = { 20.8, 27.6, 3457, 604800 }, + [14] = { 20.9, 26.4, 3457, 604800 }, + [15] = { 21.1, 22.6, 3457, 604800 }, + [16] = { 43.6, 22.1, 3457, 604800 }, + [17] = { 43.2, 21.6, 3457, 604800 }, + [18] = { 29.3, 19.5, 3457, 604800 }, + [19] = { 19, 19.1, 3457, 604800 }, + [20] = { 29.2, 18.9, 3457, 604800 }, + [21] = { 17.4, 18.5, 3457, 604800 }, + [22] = { 19.1, 18.3, 3457, 604800 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [61206] = { + ["coords"] = { + [1] = { 65.3, 66.4, 3457, 604800 }, + [2] = { 58.9, 61.2, 3457, 604800 }, + [3] = { 58.9, 59, 3457, 604800 }, + [4] = { 66.7, 52.3, 3457, 604800 }, + [5] = { 55.1, 45.6, 3457, 604800 }, + [6] = { 54.6, 45.6, 3457, 604800 }, + [7] = { 59.5, 45.1, 3457, 604800 }, + [8] = { 54, 45, 3457, 604800 }, + [9] = { 54.6, 44.5, 3457, 604800 }, + [10] = { 55.3, 44.5, 3457, 604800 }, + [11] = { 59.6, 40.1, 3457, 604800 }, + [12] = { 60, 39.8, 3457, 604800 }, + [13] = { 72.4, 39.5, 3457, 604800 }, + [14] = { 59.2, 39.2, 3457, 604800 }, + [15] = { 67.1, 34.4, 3457, 604800 }, + [16] = { 60.8, 33.3, 3457, 604800 }, + [17] = { 54.5, 32.6, 3457, 604800 }, + [18] = { 59.8, 32.1, 3457, 604800 }, + [19] = { 55.5, 31.6, 3457, 604800 }, + [20] = { 18.2, 23.1, 3457, 604800 }, + [21] = { 18.8, 22.4, 3457, 604800 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [61207] = { + ["coords"] = { + [1] = { 62.7, 67.8, 3457, 604800 }, + [2] = { 59.3, 60, 3457, 604800 }, + [3] = { 66.3, 53.9, 3457, 604800 }, + [4] = { 55.2, 52.1, 3457, 604800 }, + [5] = { 54.2, 51.1, 3457, 604800 }, + [6] = { 53.7, 50.1, 3457, 604800 }, + [7] = { 62, 45.4, 3457, 604800 }, + [8] = { 72.7, 36.8, 3457, 604800 }, + [9] = { 67.9, 35.2, 3457, 604800 }, + [10] = { 60.2, 33.7, 3457, 604800 }, + [11] = { 59.3, 32.6, 3457, 604800 }, + [12] = { 64.7, 26.5, 3457, 604800 }, + [13] = { 64.9, 25.5, 3457, 604800 }, + [14] = { 69.1, 25.4, 3457, 604800 }, + [15] = { 66, 24.1, 3457, 604800 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [61208] = { + ["coords"] = { + [1] = { 61.5, 59.4, 3457, 604800 }, + [2] = { 71.9, 41.3, 3457, 604800 }, + [3] = { 71.9, 38.6, 3457, 604800 }, + [4] = { 54.3, 38.4, 3457, 604800 }, + [5] = { 73.2, 31.4, 3457, 604800 }, + [6] = { 73.3, 26, 3457, 604800 }, + [7] = { 55.1, 24.2, 3457, 604800 }, + [8] = { 27.7, 17.8, 3457, 604800 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [61209] = { + ["coords"] = { + [1] = { 64.4, 59.8, 3457, 604800 }, + [2] = { 66, 52.6, 3457, 604800 }, + [3] = { 60.5, 45, 3457, 604800 }, + [4] = { 60, 44.5, 3457, 604800 }, + [5] = { 59.3, 41, 3457, 604800 }, + [6] = { 70.7, 40.9, 3457, 604800 }, + [7] = { 54.7, 40.3, 3457, 604800 }, + [8] = { 60.3, 40.1, 3457, 604800 }, + [9] = { 66.7, 35.7, 3457, 604800 }, + [10] = { 18.3, 22.5, 3457, 604800 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [61210] = { + ["coords"] = { + [1] = { 63.2, 73.6, 3457, 604800 }, + [2] = { 63.8, 73.6, 3457, 604800 }, + [3] = { 50.8, 71.5, 3457, 604800 }, + [4] = { 56.5, 71, 3457, 604800 }, + [5] = { 59, 71, 3457, 604800 }, + [6] = { 59, 70.3, 3457, 604800 }, + [7] = { 56.2, 70.1, 3457, 604800 }, + [8] = { 66.2, 68.5, 3457, 604800 }, + [9] = { 68.9, 68, 3457, 604800 }, + [10] = { 65.8, 67.9, 3457, 604800 }, + [11] = { 61.9, 67.8, 3457, 604800 }, + [12] = { 66.4, 67.7, 3457, 604800 }, + [13] = { 62.1, 67.4, 3457, 604800 }, + [14] = { 61.6, 67.4, 3457, 604800 }, + [15] = { 43.6, 39.2, 3457, 604800 }, + [16] = { 29.2, 25.5, 3457, 604800 }, + [17] = { 38.3, 23.1, 3457, 604800 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [61211] = { + ["coords"] = { + [1] = { 53.4, 80, 3457, 604800 }, + [2] = { 54.1, 76.6, 3457, 604800 }, + [3] = { 55.2, 72, 3457, 604800 }, + [4] = { 59.9, 70.5, 3457, 604800 }, + [5] = { 64.7, 68.7, 3457, 604800 }, + [6] = { 52.7, 68.1, 3457, 604800 }, + [7] = { 52, 67.7, 3457, 604800 }, + [8] = { 53, 67.2, 3457, 604800 }, + [9] = { 52.2, 65.7, 3457, 604800 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [61212] = { + ["coords"] = { + [1] = { 60.5, 53.6, 5097, 604800 }, + [2] = { 76.7, 43.6, 5097, 604800 }, + [3] = { 69.7, 34.7, 5097, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [61213] = { + ["coords"] = { + [1] = { 95.1, 27.1, 331, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [61214] = { + ["coords"] = { + [1] = { 95.2, 25.1, 331, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [61215] = { + ["coords"] = { + [1] = { 95.3, 26.6, 331, 300 }, + [2] = { 95.4, 25.7, 331, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [61216] = { + ["coords"] = { + [1] = { 95.9, 26.6, 331, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [61217] = { + ["coords"] = { + [1] = { 94, 22.5, 331, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [61218] = { + ["coords"] = { + [1] = { 45.9, 36.2, 17, 300 }, + [2] = { 46.8, 34.7, 17, 120 }, + [3] = { 22.9, 89.5, 718, 300 }, + [4] = { 39, 63.3, 718, 120 }, + [5] = { 86, 77.4, 718, 300 }, + }, + ["lvl"] = "11", + ["rnk"] = "1", + }, + [61219] = { + ["coords"] = { + [1] = { 94.9, 26.5, 331, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [61220] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [61221] = { + ["coords"] = { + [1] = { 78.2, 29.9, 3457, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [61222] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [61223] = { + ["coords"] = { + [1] = { 59.7, 60.6, 3457, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [61224] = { + ["coords"] = { + [1] = { 81.9, 41.7, 3457, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [61225] = { + ["coords"] = { + [1] = { 22.9, 27.9, 3457, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [61226] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [61227] = { + ["coords"] = { + [1] = { 47, 91.4, 130, 300 }, + [2] = { 46, 91, 130, 300 }, + [3] = { 52.4, 41.3, 5179, 300 }, + [4] = { 46.9, 40.2, 5179, 300 }, + [5] = { 51.4, 40.2, 5179, 300 }, + [6] = { 37.4, 40.1, 5179, 300 }, + [7] = { 48.9, 39.9, 5179, 300 }, + [8] = { 52.7, 39.9, 5179, 300 }, + [9] = { 46.3, 39.6, 5179, 300 }, + [10] = { 43.9, 39.6, 5179, 300 }, + [11] = { 45.3, 39.6, 5179, 300 }, + [12] = { 51.9, 39.5, 5179, 300 }, + [13] = { 50.1, 37.9, 5179, 300 }, + [14] = { 51.1, 37.8, 5179, 300 }, + [15] = { 49.4, 37.8, 5179, 300 }, + [16] = { 37, 37.3, 5179, 300 }, + [17] = { 50.3, 37, 5179, 300 }, + [18] = { 50, 36.3, 5179, 300 }, + [19] = { 50.8, 36.2, 5179, 300 }, + [20] = { 36.7, 35.5, 5179, 300 }, + [21] = { 55.8, 35.4, 5179, 300 }, + [22] = { 35.5, 35, 5179, 300 }, + [23] = { 46.5, 34.4, 5179, 300 }, + [24] = { 42, 34.2, 5179, 300 }, + [25] = { 47.8, 34, 5179, 300 }, + [26] = { 43.1, 33.7, 5179, 300 }, + [27] = { 56.6, 33.1, 5179, 300 }, + [28] = { 46.8, 32.8, 5179, 300 }, + [29] = { 42.6, 32.5, 5179, 300 }, + [30] = { 38.7, 31.2, 5179, 300 }, + [31] = { 42.4, 29.1, 5179, 300 }, + [32] = { 40.9, 29, 5179, 300 }, + [33] = { 46.3, 28, 5179, 300 }, + [34] = { 40.3, 27.7, 5179, 300 }, + [35] = { 48.5, 27.1, 5179, 300 }, + [36] = { 44.8, 25.7, 5179, 300 }, + [37] = { 47.3, 25.1, 5179, 300 }, + [38] = { 48.8, 24.5, 5179, 300 }, + [39] = { 44.2, 24.5, 5179, 300 }, + [40] = { 46.8, 23.7, 5179, 300 }, + [41] = { 48.5, 21.9, 5179, 300 }, + [42] = { 47.4, 21.4, 5179, 300 }, + [43] = { 30.9, 33, 5208, 18000 }, + [44] = { 28.1, 30, 5208, 18000 }, + [45] = { 34.8, 27.6, 5208, 18000 }, + [46] = { 24.5, 27, 5208, 18000 }, + [47] = { 33.9, 25.6, 5208, 18000 }, + [48] = { 23.1, 24.5, 5208, 18000 }, + [49] = { 24.2, 23.7, 5208, 18000 }, + [50] = { 36, 23.4, 5208, 18000 }, + [51] = { 32.5, 21.5, 5208, 18000 }, + [52] = { 26.1, 17.8, 5208, 18000 }, + [53] = { 26.9, 15.3, 5208, 18000 }, + }, + ["lvl"] = "39-41", + }, + [61228] = { + ["coords"] = { + [1] = { 56.5, 76.1, 5179, 300 }, + [2] = { 53.1, 75.6, 5179, 300 }, + [3] = { 54.8, 75.5, 5179, 300 }, + [4] = { 51.2, 74.6, 5179, 300 }, + [5] = { 53, 73.6, 5179, 300 }, + [6] = { 48.3, 72.8, 5179, 300 }, + [7] = { 54.7, 71.1, 5179, 300 }, + [8] = { 56.7, 70.9, 5179, 300 }, + [9] = { 46.1, 70.5, 5179, 300 }, + [10] = { 48, 70.4, 5179, 300 }, + [11] = { 56.2, 69.4, 5179, 300 }, + [12] = { 41, 63.5, 5179, 300 }, + [13] = { 36.7, 63.3, 5179, 300 }, + [14] = { 50.1, 62.5, 5179, 300 }, + [15] = { 40.8, 61.2, 5179, 300 }, + [16] = { 36.8, 61.1, 5179, 300 }, + [17] = { 39.2, 61, 5179, 300 }, + [18] = { 35.6, 60.7, 5179, 300 }, + [19] = { 42.6, 58.5, 5179, 300 }, + [20] = { 41.4, 58.2, 5179, 300 }, + [21] = { 37.8, 57.8, 5179, 300 }, + [22] = { 36.1, 56.9, 5179, 300 }, + [23] = { 51, 56.6, 5179, 300 }, + [24] = { 39.6, 56.6, 5179, 300 }, + [25] = { 36.3, 55.3, 5179, 300 }, + [26] = { 42.3, 55.2, 5179, 300 }, + [27] = { 31.5, 55.1, 5179, 300 }, + [28] = { 51.3, 53.7, 5179, 300 }, + [29] = { 37.4, 52.9, 5179, 300 }, + }, + ["lvl"] = "41-43", + }, + [61229] = { + ["coords"] = { + [1] = { 26.4, 74.1, 5179, 300 }, + [2] = { 27.4, 73.5, 5179, 300 }, + [3] = { 24.5, 73, 5179, 300 }, + [4] = { 26, 73, 5179, 300 }, + [5] = { 31.6, 72.1, 5179, 300 }, + [6] = { 21.2, 71.5, 5179, 300 }, + [7] = { 22, 71.2, 5179, 300 }, + [8] = { 30.6, 71, 5179, 300 }, + [9] = { 24.9, 70.7, 5179, 300 }, + [10] = { 31.7, 70.3, 5179, 300 }, + [11] = { 20.9, 69.8, 5179, 300 }, + [12] = { 27.9, 69.7, 5179, 300 }, + [13] = { 24.9, 69.5, 5179, 300 }, + [14] = { 27.1, 68.7, 5179, 300 }, + [15] = { 28.1, 67.9, 5179, 300 }, + [16] = { 27, 67.4, 5179, 300 }, + [17] = { 19.6, 66.7, 5179, 300 }, + [18] = { 28.8, 66.4, 5179, 300 }, + [19] = { 17.9, 64.8, 5179, 300 }, + [20] = { 26.3, 63.7, 5179, 300 }, + [21] = { 17.9, 63.1, 5179, 300 }, + [22] = { 17, 62.9, 5179, 300 }, + [23] = { 24.7, 60.6, 5179, 300 }, + [24] = { 23.4, 56.8, 5179, 300 }, + [25] = { 22.6, 56.2, 5179, 300 }, + [26] = { 21.1, 53.8, 5179, 300 }, + [27] = { 14.7, 52.9, 5179, 300 }, + [28] = { 15.4, 51.5, 5179, 300 }, + [29] = { 14.8, 50.6, 5179, 300 }, + [30] = { 13.8, 49.8, 5179, 300 }, + [31] = { 14.9, 49.6, 5179, 300 }, + [32] = { 14.6, 47.9, 5179, 300 }, + [33] = { 13.3, 47.1, 5179, 300 }, + [34] = { 12.3, 46.2, 5179, 300 }, + [35] = { 13.8, 45.9, 5179, 300 }, + [36] = { 12, 44.3, 5179, 300 }, + [37] = { 15.6, 43.7, 5179, 300 }, + [38] = { 14.7, 43.5, 5179, 300 }, + [39] = { 12.6, 42.4, 5179, 300 }, + [40] = { 13.9, 40.9, 5179, 300 }, + [41] = { 14.7, 39.8, 5179, 300 }, + }, + ["lvl"] = "43-45", + }, + [61230] = { + ["coords"] = { + [1] = { 44.3, 90.1, 130, 300 }, + [2] = { 44.3, 88.5, 130, 300 }, + [3] = { 51.2, 44.7, 5179, 300 }, + [4] = { 49.2, 43.4, 5179, 300 }, + [5] = { 52.9, 43, 5179, 300 }, + [6] = { 50.1, 41.8, 5179, 300 }, + [7] = { 32.1, 41.5, 5179, 300 }, + [8] = { 33.5, 41, 5179, 300 }, + [9] = { 39.6, 40.4, 5179, 300 }, + [10] = { 32.5, 39.7, 5179, 300 }, + [11] = { 34, 39.5, 5179, 300 }, + [12] = { 46.6, 38.7, 5179, 300 }, + [13] = { 44.2, 38.6, 5179, 300 }, + [14] = { 52.8, 38.3, 5179, 300 }, + [15] = { 53.5, 38.1, 5179, 300 }, + [16] = { 54.2, 37.2, 5179, 300 }, + [17] = { 53.8, 36.2, 5179, 300 }, + [18] = { 54.7, 36.2, 5179, 300 }, + [19] = { 45.4, 36.2, 5179, 300 }, + [20] = { 46, 36.1, 5179, 300 }, + [21] = { 43.3, 35.9, 5179, 300 }, + [22] = { 36.9, 34.4, 5179, 300 }, + [23] = { 56.4, 34.2, 5179, 300 }, + [24] = { 44.4, 34.2, 5179, 300 }, + [25] = { 49.7, 33.7, 5179, 300 }, + [26] = { 48.7, 33.6, 5179, 300 }, + [27] = { 49.8, 32.9, 5179, 300 }, + [28] = { 47.9, 32.9, 5179, 300 }, + [29] = { 37, 32.4, 5179, 300 }, + [30] = { 50.2, 32.1, 5179, 300 }, + [31] = { 48.9, 32.1, 5179, 300 }, + [32] = { 48.3, 31.8, 5179, 300 }, + [33] = { 47.8, 31, 5179, 300 }, + [34] = { 48.7, 30.8, 5179, 300 }, + [35] = { 47.9, 30, 5179, 300 }, + [36] = { 49.4, 29.9, 5179, 300 }, + [37] = { 32.3, 29.9, 5179, 300 }, + [38] = { 48.6, 29.7, 5179, 300 }, + [39] = { 46.8, 29.7, 5179, 300 }, + [40] = { 48.9, 29, 5179, 300 }, + [41] = { 48.1, 28.7, 5179, 300 }, + [42] = { 47.3, 28.3, 5179, 300 }, + [43] = { 47.4, 27.1, 5179, 300 }, + [44] = { 41.8, 26.8, 5179, 300 }, + [45] = { 46.4, 26.1, 5179, 300 }, + [46] = { 34.7, 26, 5179, 300 }, + [47] = { 48.4, 25.2, 5179, 300 }, + [48] = { 47.7, 23.5, 5179, 300 }, + [49] = { 45.4, 20.3, 5179, 300 }, + [50] = { 45.4, 18.6, 5179, 300 }, + }, + ["lvl"] = "39-40", + }, + [61231] = { + ["coords"] = { + [1] = { 40.3, 65.4, 5179, 300 }, + [2] = { 31.9, 64.4, 5179, 300 }, + [3] = { 39.7, 63.5, 5179, 300 }, + [4] = { 35.4, 63.1, 5179, 300 }, + [5] = { 38.2, 62.7, 5179, 300 }, + [6] = { 33, 61.3, 5179, 300 }, + [7] = { 42.5, 60.3, 5179, 300 }, + [8] = { 40.5, 59.5, 5179, 300 }, + [9] = { 39.4, 58.5, 5179, 300 }, + [10] = { 37.1, 58.2, 5179, 300 }, + [11] = { 32.9, 57.8, 5179, 300 }, + [12] = { 43.9, 56.5, 5179, 300 }, + [13] = { 38.2, 56.1, 5179, 300 }, + [14] = { 33.9, 52.2, 5179, 300 }, + [15] = { 58.1, 49.5, 5179, 300 }, + [16] = { 55.9, 49, 5179, 300 }, + [17] = { 56.8, 47.4, 5179, 300 }, + [18] = { 54.2, 46.4, 5179, 300 }, + [19] = { 57.5, 46.3, 5179, 300 }, + [20] = { 56.5, 45.8, 5179, 300 }, + }, + ["lvl"] = "42-44", + }, + [61232] = { + ["coords"] = { + [1] = { 46.7, 78.2, 5179, 300 }, + [2] = { 41.7, 77.2, 5179, 300 }, + [3] = { 40.3, 76.8, 5179, 300 }, + [4] = { 45.7, 76.7, 5179, 300 }, + [5] = { 38.1, 76.6, 5179, 300 }, + [6] = { 44, 76.3, 5179, 300 }, + [7] = { 34.6, 76, 5179, 300 }, + [8] = { 36.3, 75.6, 5179, 300 }, + [9] = { 41.6, 74.8, 5179, 300 }, + [10] = { 45.8, 74.4, 5179, 300 }, + [11] = { 42.9, 74, 5179, 300 }, + [12] = { 47.2, 73.9, 5179, 300 }, + [13] = { 39.7, 73.3, 5179, 300 }, + [14] = { 41.3, 73.3, 5179, 300 }, + [15] = { 38.7, 72.9, 5179, 300 }, + [16] = { 43.7, 71.6, 5179, 300 }, + }, + ["lvl"] = "42-44", + }, + [61233] = { + ["coords"] = { + [1] = { 43.4, 77.8, 5179, 300 }, + [2] = { 39.5, 77.7, 5179, 300 }, + [3] = { 34.8, 77.6, 5179, 300 }, + [4] = { 46.6, 76.6, 5179, 300 }, + [5] = { 37.9, 74.8, 5179, 300 }, + [6] = { 40.1, 74.5, 5179, 300 }, + [7] = { 43.9, 74.1, 5179, 300 }, + [8] = { 35.6, 73.7, 5179, 300 }, + [9] = { 43.9, 72.6, 5179, 300 }, + [10] = { 45.6, 72.4, 5179, 300 }, + }, + ["lvl"] = "42-45", + }, + [61234] = { + ["coords"] = { + [1] = { 35.3, 51.8, 5179, 300 }, + [2] = { 35.5, 51.3, 5179, 300 }, + [3] = { 35.7, 51.3, 5179, 300 }, + [4] = { 35.9, 51.3, 5179, 300 }, + [5] = { 35.4, 50.7, 5179, 300 }, + [6] = { 30.4, 50.5, 5179, 300 }, + [7] = { 31.3, 50.1, 5179, 300 }, + [8] = { 36.2, 49.9, 5179, 300 }, + [9] = { 32.7, 49.6, 5179, 300 }, + [10] = { 30.1, 49, 5179, 300 }, + [11] = { 34.3, 48.6, 5179, 300 }, + [12] = { 35, 48.4, 5179, 300 }, + [13] = { 36.3, 48.2, 5179, 300 }, + [14] = { 34.5, 47.4, 5179, 300 }, + [15] = { 34.8, 47.4, 5179, 300 }, + [16] = { 36.7, 47.4, 5179, 300 }, + [17] = { 29.9, 47.3, 5179, 300 }, + [18] = { 34.7, 47.3, 5179, 300 }, + [19] = { 35.1, 46.9, 5179, 300 }, + [20] = { 33.8, 46.7, 5179, 300 }, + [21] = { 30.9, 46.6, 5179, 300 }, + [22] = { 33.2, 45.6, 5179, 300 }, + [23] = { 35.1, 45.6, 5179, 300 }, + [24] = { 36, 44.8, 5179, 300 }, + [25] = { 37.2, 44.7, 5179, 300 }, + [26] = { 36.7, 44.4, 5179, 300 }, + [27] = { 35.2, 43.7, 5179, 300 }, + [28] = { 33.2, 43.5, 5179, 300 }, + [29] = { 34.1, 43.3, 5179, 300 }, + }, + ["lvl"] = "40-42", + }, + [61235] = { + ["coords"] = { + [1] = { 36.1, 51.9, 5179, 300 }, + [2] = { 31, 51.2, 5179, 300 }, + [3] = { 35.7, 50.9, 5179, 300 }, + [4] = { 32, 50.1, 5179, 300 }, + [5] = { 30.8, 49, 5179, 300 }, + [6] = { 29.5, 49, 5179, 300 }, + [7] = { 32.3, 48.6, 5179, 300 }, + [8] = { 37.7, 48.4, 5179, 300 }, + [9] = { 31.5, 48.2, 5179, 300 }, + [10] = { 35.3, 47.8, 5179, 300 }, + [11] = { 30.7, 47.6, 5179, 300 }, + [12] = { 34, 47.6, 5179, 300 }, + [13] = { 34.7, 46.9, 5179, 300 }, + [14] = { 34.7, 46.7, 5179, 300 }, + [15] = { 36.1, 46.5, 5179, 300 }, + [16] = { 31.8, 46.5, 5179, 300 }, + [17] = { 36.7, 46.2, 5179, 300 }, + [18] = { 34.6, 45.5, 5179, 300 }, + [19] = { 35.3, 45.1, 5179, 300 }, + [20] = { 34.2, 44.9, 5179, 300 }, + [21] = { 31.1, 44.8, 5179, 300 }, + [22] = { 35.3, 44.7, 5179, 300 }, + [23] = { 32.8, 44.5, 5179, 300 }, + [24] = { 34.7, 44.3, 5179, 300 }, + [25] = { 36.1, 43.8, 5179, 300 }, + }, + ["lvl"] = "39-41", + }, + [61236] = { + ["coords"] = { + [1] = { 38.5, 90.4, 130, 300 }, + [2] = { 39.2, 89.3, 130, 300 }, + [3] = { 38.8, 88, 130, 300 }, + [4] = { 38.4, 87.9, 130, 300 }, + [5] = { 39.4, 85.7, 130, 300 }, + [6] = { 38.7, 85.5, 130, 300 }, + [7] = { 39.4, 85, 130, 300 }, + [8] = { 37.6, 83.8, 130, 300 }, + [9] = { 38.8, 83.5, 130, 300 }, + [10] = { 37.8, 83.2, 130, 300 }, + [11] = { 39, 82, 130, 300 }, + [12] = { 37.7, 81.5, 130, 300 }, + [13] = { 38, 80.6, 130, 300 }, + [14] = { 48.9, 36.8, 5179, 300 }, + [15] = { 47.6, 36.5, 5179, 300 }, + [16] = { 48.4, 36.3, 5179, 300 }, + [17] = { 48.1, 36.2, 5179, 300 }, + [18] = { 47.7, 35.7, 5179, 300 }, + [19] = { 48.9, 35.3, 5179, 300 }, + [20] = { 47, 35.2, 5179, 300 }, + [21] = { 47.7, 35.1, 5179, 300 }, + [22] = { 44.2, 30.4, 5179, 300 }, + [23] = { 43.7, 29.2, 5179, 300 }, + [24] = { 44.3, 28.1, 5179, 300 }, + [25] = { 42.9, 27.7, 5179, 300 }, + [26] = { 43.3, 26.8, 5179, 300 }, + [27] = { 44.3, 26.4, 5179, 300 }, + [28] = { 40.1, 25.1, 5179, 300 }, + [29] = { 38.8, 23.2, 5179, 300 }, + [30] = { 40.5, 23.1, 5179, 300 }, + [31] = { 40.7, 22.9, 5179, 300 }, + [32] = { 38.7, 20.7, 5179, 300 }, + [33] = { 39.6, 19.4, 5179, 300 }, + [34] = { 39.1, 17.9, 5179, 300 }, + [35] = { 38.6, 17.8, 5179, 300 }, + [36] = { 39.7, 15.3, 5179, 300 }, + [37] = { 39, 15.1, 5179, 300 }, + [38] = { 39.8, 14.5, 5179, 300 }, + [39] = { 37.7, 13.2, 5179, 300 }, + [40] = { 39.1, 12.8, 5179, 300 }, + [41] = { 37.9, 12.4, 5179, 300 }, + [42] = { 39.3, 11, 5179, 300 }, + [43] = { 37.8, 10.5, 5179, 300 }, + [44] = { 38.2, 9.4, 5179, 300 }, + }, + ["lvl"] = "41-43", + }, + [61237] = { + ["coords"] = { + [1] = { 38.3, 87.9, 130, 300 }, + [2] = { 38.4, 85.9, 130, 120 }, + [3] = { 40, 85.2, 130, 120 }, + [4] = { 38.9, 85, 130, 300 }, + [5] = { 40.7, 23.3, 5179, 120 }, + [6] = { 38.5, 17.9, 5179, 300 }, + [7] = { 38.6, 15.6, 5179, 120 }, + [8] = { 40.4, 14.8, 5179, 120 }, + [9] = { 39.1, 14.5, 5179, 300 }, + }, + ["lvl"] = "44-45", + }, + [61238] = { + ["coords"] = { + [1] = { 39.3, 89.9, 130, 300 }, + [2] = { 39.4, 88.1, 130, 300 }, + [3] = { 39.9, 85.5, 130, 120 }, + [4] = { 39.8, 85.1, 130, 120 }, + [5] = { 48.1, 35.7, 5179, 120 }, + [6] = { 39.7, 26.1, 5179, 120 }, + [7] = { 40.6, 22.2, 5179, 300 }, + [8] = { 39.6, 20.1, 5179, 300 }, + [9] = { 39.7, 18, 5179, 300 }, + [10] = { 40.4, 15, 5179, 120 }, + [11] = { 40.3, 14.6, 5179, 120 }, + }, + ["lvl"] = "42-43", + }, + [61239] = { + ["coords"] = { + [1] = { 61.2, 87.7, 5179, 300 }, + [2] = { 60.2, 86.5, 5179, 300 }, + [3] = { 63.1, 86.4, 5179, 300 }, + [4] = { 61.8, 85.8, 5179, 300 }, + [5] = { 61.7, 84, 5179, 300 }, + [6] = { 59.3, 83.9, 5179, 300 }, + [7] = { 63.3, 83.6, 5179, 300 }, + [8] = { 60.7, 82.7, 5179, 300 }, + [9] = { 66.6, 82.3, 5179, 300 }, + [10] = { 65.4, 82.3, 5179, 300 }, + [11] = { 66.6, 81, 5179, 300 }, + [12] = { 63, 81, 5179, 300 }, + [13] = { 67, 80.3, 5179, 300 }, + [14] = { 66, 80.2, 5179, 300 }, + [15] = { 66.2, 80.1, 5179, 300 }, + [16] = { 65.8, 80, 5179, 300 }, + [17] = { 63.9, 79.4, 5179, 300 }, + [18] = { 64.7, 78.7, 5179, 300 }, + [19] = { 65.2, 78.2, 5179, 300 }, + }, + ["lvl"] = "44-45", + }, + [61240] = { + ["coords"] = { + [1] = { 60.2, 87.3, 5179, 300 }, + [2] = { 64.1, 86.3, 5179, 300 }, + [3] = { 62.7, 85.6, 5179, 300 }, + [4] = { 60.7, 85.6, 5179, 300 }, + [5] = { 64.6, 84.3, 5179, 300 }, + [6] = { 60.6, 84.3, 5179, 300 }, + [7] = { 66.2, 83.9, 5179, 300 }, + [8] = { 67.4, 82, 5179, 300 }, + [9] = { 61.8, 81.4, 5179, 300 }, + [10] = { 63.8, 81.4, 5179, 300 }, + [11] = { 65.8, 81.1, 5179, 300 }, + [12] = { 66.1, 81.1, 5179, 300 }, + [13] = { 66.1, 80.4, 5179, 300 }, + [14] = { 66.4, 79.9, 5179, 300 }, + [15] = { 66.5, 78.2, 5179, 300 }, + [16] = { 63.5, 77.3, 5179, 300 }, + }, + ["lvl"] = "44-45", + }, + [61241] = { + ["coords"] = { + [1] = { 64.9, 80.2, 5179, 300 }, + }, + ["lvl"] = "44", + ["rnk"] = "1", + }, + [61242] = { + ["coords"] = { + [1] = { 65.6, 80.4, 5179, 300 }, + }, + ["lvl"] = "46", + ["rnk"] = "1", + }, + [61243] = { + ["coords"] = { + [1] = { 54.6, 66.9, 5179, 300 }, + [2] = { 51.6, 66.5, 5179, 300 }, + [3] = { 55.2, 65.5, 5179, 300 }, + [4] = { 56.3, 64.4, 5179, 300 }, + [5] = { 51.6, 64.3, 5179, 300 }, + [6] = { 53.4, 61.5, 5179, 300 }, + [7] = { 54.4, 61.4, 5179, 300 }, + [8] = { 52.1, 61.1, 5179, 300 }, + [9] = { 52.7, 60, 5179, 300 }, + [10] = { 52.2, 58.4, 5179, 300 }, + }, + ["lvl"] = "41-42", + }, + [61244] = { + ["coords"] = { + [1] = { 53.5, 67.6, 5179, 300 }, + [2] = { 56.3, 66.2, 5179, 300 }, + [3] = { 52.6, 65.8, 5179, 300 }, + [4] = { 50.8, 63.7, 5179, 300 }, + [5] = { 56.9, 63, 5179, 300 }, + [6] = { 51.1, 62, 5179, 300 }, + [7] = { 53.1, 60.6, 5179, 300 }, + [8] = { 51.1, 60.3, 5179, 300 }, + }, + ["lvl"] = "42-43", + }, + [61245] = { + ["coords"] = { + [1] = { 50.8, 65.9, 5179, 300 }, + [2] = { 53.9, 64.5, 5179, 300 }, + [3] = { 53.9, 64, 5179, 300 }, + [4] = { 55, 63.9, 5179, 300 }, + [5] = { 54.6, 59.5, 5179, 300 }, + [6] = { 56.5, 58.3, 5179, 300 }, + [7] = { 54.3, 57.5, 5179, 300 }, + [8] = { 54.6, 56.1, 5179, 300 }, + [9] = { 56.5, 55.7, 5179, 300 }, + }, + ["lvl"] = "42-43", + }, + [61246] = { + ["coords"] = { + [1] = { 56.3, 62.4, 5179, 300 }, + [2] = { 55.5, 60.9, 5179, 300 }, + [3] = { 55.3, 59.9, 5179, 300 }, + [4] = { 55.8, 57.8, 5179, 300 }, + [5] = { 55, 57.7, 5179, 300 }, + [6] = { 55.7, 56.6, 5179, 300 }, + [7] = { 56, 55.6, 5179, 300 }, + }, + ["lvl"] = "44-45", + }, + [61247] = { + ["coords"] = { + [1] = { 56, 54.5, 5179, 300 }, + }, + ["lvl"] = "47", + }, + [61248] = { + ["coords"] = { + [1] = { 41.9, 68.8, 5179, 300 }, + [2] = { 41.8, 68.2, 5179, 300 }, + [3] = { 42.7, 67.9, 5179, 300 }, + [4] = { 43.9, 67.8, 5179, 300 }, + [5] = { 41.8, 67.5, 5179, 300 }, + [6] = { 46.5, 67.2, 5179, 300 }, + [7] = { 44.2, 66.5, 5179, 300 }, + [8] = { 47, 66.1, 5179, 300 }, + [9] = { 47, 65.9, 5179, 300 }, + [10] = { 45.5, 65.3, 5179, 300 }, + [11] = { 42.4, 64.1, 5179, 300 }, + [12] = { 45.1, 63.7, 5179, 300 }, + [13] = { 45.3, 63.7, 5179, 300 }, + [14] = { 44.4, 62.9, 5179, 300 }, + }, + ["lvl"] = "43-44", + }, + [61249] = { + ["coords"] = { + [1] = { 41.8, 67.8, 5179, 300 }, + [2] = { 45.8, 67.7, 5179, 300 }, + [3] = { 43.1, 66.6, 5179, 300 }, + [4] = { 45.2, 66.4, 5179, 300 }, + [5] = { 43.8, 64.7, 5179, 300 }, + [6] = { 41.4, 64.4, 5179, 300 }, + [7] = { 43.1, 63.9, 5179, 300 }, + [8] = { 46.6, 63.4, 5179, 300 }, + [9] = { 44.6, 63.1, 5179, 300 }, + [10] = { 41.6, 62.6, 5179, 300 }, + [11] = { 44.7, 62.5, 5179, 300 }, + [12] = { 43.8, 62.5, 5179, 300 }, + [13] = { 42.5, 62.3, 5179, 300 }, + [14] = { 45.1, 62, 5179, 300 }, + [15] = { 44.4, 60.4, 5179, 300 }, + }, + ["lvl"] = "39-40", + }, + [61250] = { + ["coords"] = { + [1] = { 41.8, 68.3, 5179, 300 }, + [2] = { 44.8, 68.2, 5179, 300 }, + [3] = { 47.2, 68.1, 5179, 300 }, + [4] = { 41.9, 68.1, 5179, 300 }, + [5] = { 44.2, 66.1, 5179, 300 }, + [6] = { 47.2, 66, 5179, 300 }, + [7] = { 42.6, 65.5, 5179, 300 }, + [8] = { 44.5, 65, 5179, 300 }, + [9] = { 45.5, 63.9, 5179, 300 }, + }, + ["lvl"] = "39-41", + }, + [61251] = { + ["coords"] = { + [1] = { 47.3, 60, 5179, 300 }, + [2] = { 46.5, 58.6, 5179, 300 }, + [3] = { 48.8, 58.5, 5179, 300 }, + [4] = { 48, 58.5, 5179, 300 }, + [5] = { 48.6, 57.1, 5179, 300 }, + [6] = { 46.6, 56.4, 5179, 300 }, + [7] = { 47.8, 56, 5179, 300 }, + [8] = { 47, 55, 5179, 300 }, + [9] = { 48, 55, 5179, 300 }, + [10] = { 48.1, 54.7, 5179, 300 }, + [11] = { 38.4, 39.6, 5179, 300 }, + [12] = { 39.1, 38.8, 5179, 300 }, + [13] = { 40.9, 38, 5179, 300 }, + [14] = { 43.2, 37.7, 5179, 300 }, + [15] = { 39.6, 36.7, 5179, 300 }, + [16] = { 41.3, 36.4, 5179, 300 }, + [17] = { 39.3, 36.1, 5179, 300 }, + [18] = { 42.3, 35.3, 5179, 300 }, + [19] = { 39.3, 35.2, 5179, 300 }, + [20] = { 38.3, 34.8, 5179, 300 }, + [21] = { 40.6, 34.7, 5179, 300 }, + [22] = { 38.4, 33.3, 5179, 300 }, + }, + ["lvl"] = "41-43", + }, + [61252] = { + ["coords"] = { + [1] = { 40.4, 46.8, 5179, 300 }, + [2] = { 40.1, 46.1, 5179, 300 }, + [3] = { 41.9, 45.4, 5179, 300 }, + [4] = { 40.5, 44.9, 5179, 300 }, + [5] = { 42.1, 44.8, 5179, 300 }, + [6] = { 41.3, 44.6, 5179, 300 }, + [7] = { 41.7, 44.1, 5179, 300 }, + [8] = { 43.3, 43.7, 5179, 300 }, + [9] = { 41.8, 43.3, 5179, 300 }, + [10] = { 43.9, 42.9, 5179, 300 }, + [11] = { 42.5, 42.9, 5179, 300 }, + [12] = { 42.3, 42.7, 5179, 300 }, + [13] = { 40.9, 42.7, 5179, 300 }, + [14] = { 41.7, 42.7, 5179, 300 }, + [15] = { 41.4, 42.1, 5179, 300 }, + [16] = { 42.3, 42, 5179, 300 }, + [17] = { 41, 41.9, 5179, 300 }, + [18] = { 41.9, 41.6, 5179, 300 }, + [19] = { 41.5, 41.6, 5179, 300 }, + [20] = { 43.8, 40.8, 5179, 300 }, + [21] = { 41, 40.7, 5179, 300 }, + }, + ["lvl"] = "44-45", + }, + [61253] = { + ["coords"] = { + [1] = { 48.8, 54.9, 5179, 300 }, + [2] = { 48.4, 53.2, 5179, 300 }, + [3] = { 48.8, 52.1, 5179, 300 }, + [4] = { 49, 51.9, 5179, 300 }, + [5] = { 41.9, 39.4, 5179, 300 }, + [6] = { 40.4, 38.9, 5179, 300 }, + [7] = { 38.2, 38.2, 5179, 300 }, + [8] = { 39, 37.4, 5179, 300 }, + [9] = { 39.6, 37.3, 5179, 300 }, + [10] = { 40.4, 36.7, 5179, 300 }, + [11] = { 38.6, 36.6, 5179, 300 }, + [12] = { 40, 35.9, 5179, 300 }, + }, + ["lvl"] = "42-43", + }, + [61254] = { + ["coords"] = { + [1] = { 28.6, 35.8, 3457, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [61255] = { + ["coords"] = { + [1] = { 45.3, 51, 3457, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [61256] = { + ["coords"] = { + [1] = { 43.8, 51.5, 3457, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "49", + }, + [61257] = { + ["coords"] = { + [1] = { 58.4, 67.8, 5179, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [61258] = { + ["coords"] = { + [1] = { 64.4, 57.3, 5179, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "36", + }, + [61259] = { + ["coords"] = { + [1] = { 58.4, 67.6, 5179, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + ["rnk"] = "1", + }, + [61260] = { + ["coords"] = { + [1] = { 32.7, 75.4, 5179, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + ["rnk"] = "1", + }, + [61261] = { + ["coords"] = { + [1] = { 59.4, 73.1, 5179, 300 }, + [2] = { 58.6, 69.5, 5179, 300 }, + [3] = { 58.5, 69, 5179, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [61262] = { + ["coords"] = { + [1] = { 59.8, 73.2, 5179, 300 }, + [2] = { 62.5, 72.6, 5179, 300 }, + [3] = { 58.4, 72.6, 5179, 300 }, + [4] = { 62.6, 71.9, 5179, 300 }, + [5] = { 58.4, 69.1, 5179, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [61263] = { + ["coords"] = { + [1] = { 27.3, 24.1, 5208, 604800 }, + }, + ["lvl"] = "47", + ["rnk"] = "1", + }, + [61264] = { + ["coords"] = { + [1] = { 26.6, 23.4, 5208, 604800 }, + }, + ["lvl"] = "47", + ["rnk"] = "1", + }, + [61265] = { + ["coords"] = { + [1] = { 57.6, 72.9, 5179, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "52", + ["rnk"] = "1", + }, + [61266] = { + ["coords"] = { + [1] = { 57.8, 69.5, 5179, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [61267] = { + ["coords"] = { + [1] = { 57.6, 69.9, 5179, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [61268] = { + ["coords"] = { + [1] = { 57.7, 69.5, 5179, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [61269] = { + ["coords"] = { + [1] = { 58.4, 68.4, 5179, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "42", + }, + [61270] = { + ["coords"] = { + [1] = { 59.1, 76.1, 5179, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "37", + }, + [61271] = { + ["coords"] = { + [1] = { 57.7, 68.6, 5179, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [61272] = { + ["coords"] = { + [1] = { 59.6, 71.7, 5179, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [61273] = { + ["coords"] = { + [1] = { 59.5, 71.4, 5179, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [61274] = { + ["coords"] = { + [1] = { 64.1, 72.1, 5179, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "43", + }, + [61275] = { + ["coords"] = { + [1] = { 62, 73.3, 5179, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "39", + }, + [61276] = { + ["coords"] = { + [1] = { 58.2, 72.5, 5179, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [61277] = { + ["coords"] = { + [1] = { 58.1, 72.2, 5179, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [61278] = { + ["coords"] = { + [1] = { 57, 74.1, 5179, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "36", + }, + [61279] = { + ["coords"] = { + [1] = { 57.1, 74.3, 5179, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [61280] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "34", + }, + [61281] = { + ["coords"] = { + [1] = { 57.7, 39.6, 5179, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "52", + ["rnk"] = "1", + }, + [61282] = { + ["coords"] = { + [1] = { 57.3, 39.6, 5179, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [61283] = { + ["coords"] = { + [1] = { 56.9, 39.4, 5179, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [61284] = { + ["coords"] = { + [1] = { 56.6, 39.6, 5179, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "41", + }, + [61285] = { + ["coords"] = { + [1] = { 57.5, 39.8, 5179, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "48", + }, + [61286] = { + ["coords"] = { + [1] = { 31.2, 47, 5179, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "48", + }, + [61287] = { + ["coords"] = { + [1] = { 38.1, 60.8, 5179, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "43", + }, + [61288] = { + ["coords"] = { + [1] = { 56.8, 38.8, 5179, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "36", + }, + [61289] = { + ["coords"] = { + [1] = { 57.7, 39.3, 5179, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "46", + }, + [61290] = { + ["coords"] = { + [1] = { 49.6, 31.1, 5179, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [61291] = { + ["coords"] = { + [1] = { 56.5, 38.7, 5179, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [61292] = { + ["coords"] = { + [1] = { 85, 43.6, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + ["rnk"] = "1", + }, + [61293] = { + ["coords"] = { + [1] = { 50.8, 62.2, 357, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [61294] = { + ["coords"] = { + [1] = { 50.8, 60.6, 357, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "47", + }, + [61295] = { + ["coords"] = { + [1] = { 50.7, 62.1, 357, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "32", + }, + [61296] = { + ["coords"] = { + [1] = { 50.8, 58.8, 357, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "57", + }, + [61297] = { + ["coords"] = { + [1] = { 50.8, 61.7, 357, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "59", + }, + [61298] = { + ["coords"] = { + [1] = { 50.9, 62.4, 357, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "7", + }, + [61299] = { + ["coords"] = { + [1] = { 42.7, 93.1, 17, 300 }, + [2] = { 28.9, 24.2, 400, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "37", + }, + [61300] = { + ["coords"] = { + [1] = { 42.4, 93.8, 17, 300 }, + [2] = { 28.1, 25.7, 400, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "47", + }, + [61301] = { + ["coords"] = { + [1] = { 42.8, 93.2, 17, 300 }, + [2] = { 29.1, 24.5, 400, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "41", + }, + [61302] = { + ["coords"] = { + [1] = { 42.8, 93.5, 17, 300 }, + [2] = { 29, 25.2, 400, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [61303] = { + ["coords"] = { + [1] = { 42.6, 93.1, 17, 300 }, + [2] = { 28.5, 24.2, 400, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "34", + }, + [61304] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "32", + }, + [61305] = { + ["coords"] = { + [1] = { 42.5, 93.9, 17, 300 }, + [2] = { 42.6, 93.9, 17, 300 }, + [3] = { 28.5, 26.1, 400, 300 }, + [4] = { 28.6, 26.1, 400, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "7", + }, + [61306] = { + ["coords"] = { + [1] = { 42.5, 93.9, 17, 300 }, + [2] = { 28.5, 26.1, 400, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "14", + }, + [61307] = { + ["coords"] = { + [1] = { 31.1, 88.3, 405, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "51", + }, + [61308] = { + ["coords"] = { + [1] = { 30.9, 89.8, 405, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "52", + }, + [61309] = { + ["coords"] = { + [1] = { 31.6, 88.3, 405, 300 }, + [2] = { 30.9, 88.3, 405, 300 }, + [3] = { 31.3, 87.9, 405, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "59", + }, + [61310] = { + ["coords"] = { + [1] = { 39.4, 11.4, 490, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "25", + }, + [61311] = { + ["coords"] = { + [1] = { 38.5, 12.8, 490, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "32", + }, + [61312] = { + ["coords"] = { + [1] = { 39.1, 10.2, 490, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "37", + }, + [61313] = { + ["coords"] = { + [1] = { 38.6, 10.8, 490, 300 }, + }, + ["lvl"] = "34", + }, + [61314] = { + ["coords"] = { + [1] = { 39.4, 10.1, 490, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "32", + }, + [61315] = { + ["coords"] = { + [1] = { 39.1, 10.9, 490, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "43", + }, + [61316] = { + ["coords"] = { + [1] = { 32.8, 10.9, 5204, 604800 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [61317] = { + ["coords"] = { + [1] = { 22, 27.3, 5204, 18000 }, + [2] = { 22.8, 26.7, 5204, 18000 }, + [3] = { 20.2, 24.6, 5204, 18000 }, + [4] = { 19.7, 23.7, 5204, 18000 }, + [5] = { 33.3, 23.5, 5204, 18000 }, + [6] = { 20.3, 23.5, 5204, 18000 }, + [7] = { 34, 19.6, 5204, 18000 }, + [8] = { 34.7, 19, 5204, 18000 }, + [9] = { 19.3, 16.4, 5204, 18000 }, + [10] = { 19.7, 16.2, 5204, 18000 }, + [11] = { 19.4, 15.6, 5204, 18000 }, + [12] = { 21.1, 10.3, 5204, 18000 }, + [13] = { 25.3, 9.2, 5204, 18000 }, + [14] = { 24.6, 9.1, 5204, 18000 }, + [15] = { 25, 8.7, 5204, 18000 }, + [16] = { 25.8, 8.6, 5204, 18000 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [61318] = { + ["coords"] = { + [1] = { 24.6, 26.9, 5204, 18000 }, + [2] = { 21.6, 20.9, 5204, 18000 }, + [3] = { 34, 20.4, 5204, 18000 }, + [4] = { 34.3, 19.1, 5204, 18000 }, + [5] = { 28.1, 9.1, 5204, 18000 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [61319] = { + ["coords"] = { + [1] = { 53.9, 86.5, 3457, 604800 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [61320] = { + ["coords"] = { + [1] = { 55, 52.3, 3457, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "53", + }, + [61321] = { + ["coords"] = { + [1] = { 33.1, 38.7, 3457, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "44", + ["rnk"] = "1", + }, + [61322] = { + ["coords"] = { + [1] = { 66.2, 29.5, 3457, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "58", + }, + [61323] = { + ["coords"] = { + [1] = { 41.7, 31.2, 3457, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "51", + }, + [61324] = { + ["coords"] = { + [1] = { 59.5, 78.8, 3457, 604800 }, + [2] = { 59.1, 78.5, 3457, 604800 }, + [3] = { 53.9, 59.2, 3457, 604800 }, + [4] = { 42.5, 49.4, 3457, 604800 }, + [5] = { 33.6, 44, 3457, 604800 }, + [6] = { 33.3, 43.7, 3457, 604800 }, + [7] = { 32.2, 43.5, 3457, 604800 }, + [8] = { 33.6, 43.4, 3457, 604800 }, + [9] = { 37, 43.4, 3457, 604800 }, + [10] = { 33.1, 43.3, 3457, 604800 }, + [11] = { 42.8, 40.1, 3457, 604800 }, + [12] = { 32.6, 39.5, 3457, 604800 }, + [13] = { 32.9, 39.5, 3457, 604800 }, + [14] = { 44.1, 37.7, 3457, 604800 }, + [15] = { 37.5, 37.5, 3457, 604800 }, + [16] = { 37.9, 37.3, 3457, 604800 }, + [17] = { 46.1, 32.8, 3457, 604800 }, + [18] = { 46.2, 32, 3457, 604800 }, + [19] = { 62.5, 31.1, 3457, 604800 }, + [20] = { 62.1, 31.1, 3457, 604800 }, + [21] = { 46.3, 30.4, 3457, 604800 }, + [22] = { 46.6, 29.9, 3457, 604800 }, + [23] = { 42.8, 26.3, 3457, 604800 }, + [24] = { 40.8, 25.8, 3457, 604800 }, + [25] = { 42.8, 25.3, 3457, 604800 }, + [26] = { 42.1, 25, 3457, 604800 }, + [27] = { 34.7, 21.1, 3457, 604800 }, + [28] = { 34.4, 20.8, 3457, 604800 }, + [29] = { 34.9, 20.2, 3457, 604800 }, + [30] = { 34.4, 20.1, 3457, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [61325] = { + ["coords"] = { + [1] = { 83, 30.5, 616, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "58", + }, + [61326] = { + ["coords"] = { + [1] = { 81.6, 27.5, 616, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [61327] = { + ["coords"] = { + [1] = { 81.4, 29, 616, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "56", + }, + [61328] = { + ["coords"] = { + [1] = { 46.9, 52.9, 3457, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "54", + }, + [61329] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "62", + ["rnk"] = "3", + }, + [61330] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "54", + }, + [61331] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "54", + }, + [61332] = { + ["coords"] = { + [1] = { 39.7, 48.5, 616, 300 }, + [2] = { 73.2, 45.7, 616, 300 }, + [3] = { 69.7, 42.4, 616, 300 }, + [4] = { 80, 39.5, 616, 300 }, + [5] = { 70.3, 38.5, 616, 300 }, + [6] = { 74.8, 36.5, 616, 300 }, + [7] = { 82.1, 36.2, 616, 300 }, + [8] = { 74.3, 34.6, 616, 300 }, + [9] = { 85, 34.1, 616, 300 }, + [10] = { 73.3, 31.7, 616, 300 }, + [11] = { 74.6, 28.2, 616, 300 }, + [12] = { 43.8, 25.2, 616, 300 }, + [13] = { 79.6, 24.4, 616, 300 }, + [14] = { 82.3, 23, 616, 300 }, + [15] = { 75.1, 20.8, 616, 300 }, + }, + ["lvl"] = "60-61", + }, + [61333] = { + ["coords"] = { + [1] = { 57.9, 87.7, 616, 300 }, + [2] = { 56, 87.1, 616, 300 }, + [3] = { 48.6, 86.9, 616, 300 }, + [4] = { 58.9, 86, 616, 300 }, + [5] = { 61, 85.4, 616, 300 }, + [6] = { 53.8, 84.1, 616, 300 }, + [7] = { 57.7, 83.8, 616, 300 }, + [8] = { 63.9, 80.9, 616, 300 }, + [9] = { 71.4, 80.8, 616, 300 }, + [10] = { 61.4, 79.9, 616, 300 }, + [11] = { 28.8, 79.7, 616, 300 }, + [12] = { 65.6, 79.1, 616, 300 }, + [13] = { 75.8, 78.8, 616, 300 }, + [14] = { 68.9, 77.7, 616, 300 }, + [15] = { 26.6, 77.2, 616, 300 }, + [16] = { 67.3, 76.7, 616, 300 }, + [17] = { 22.4, 75.6, 616, 300 }, + [18] = { 29.1, 75, 616, 300 }, + [19] = { 73.2, 74.7, 616, 300 }, + [20] = { 31.9, 74.6, 616, 300 }, + [21] = { 69.3, 74.3, 616, 300 }, + [22] = { 62.1, 74.2, 616, 300 }, + [23] = { 77.4, 73.7, 616, 300 }, + [24] = { 64, 73.2, 616, 300 }, + [25] = { 70.3, 72.3, 616, 300 }, + [26] = { 24.8, 72, 616, 300 }, + [27] = { 35.1, 69, 616, 300 }, + [28] = { 30.2, 67.1, 616, 300 }, + [29] = { 33.8, 64.6, 616, 300 }, + [30] = { 38.1, 63, 616, 300 }, + [31] = { 55.2, 59.2, 616, 300 }, + [32] = { 13.9, 57.1, 616, 300 }, + [33] = { 16.6, 56.4, 616, 300 }, + [34] = { 46.8, 55.8, 616, 300 }, + [35] = { 44, 55.7, 616, 300 }, + [36] = { 11.7, 55.1, 616, 300 }, + [37] = { 55.5, 53.3, 616, 300 }, + [38] = { 47.1, 52.4, 616, 300 }, + [39] = { 45.7, 84.2, 618, 300 }, + }, + ["lvl"] = "58-60", + }, + [61334] = { + ["coords"] = { + [1] = { 43.5, 89.2, 616, 300 }, + [2] = { 57.2, 88.9, 616, 300 }, + [3] = { 51.5, 88.2, 616, 300 }, + [4] = { 72.1, 83.9, 616, 300 }, + [5] = { 55.9, 83.9, 616, 300 }, + [6] = { 43.9, 83.8, 616, 300 }, + [7] = { 60.3, 83.5, 616, 300 }, + [8] = { 51, 82.9, 616, 300 }, + [9] = { 38.2, 82.9, 616, 300 }, + [10] = { 57.8, 82.5, 616, 300 }, + [11] = { 65.5, 82.3, 616, 300 }, + [12] = { 64.5, 81.8, 616, 300 }, + [13] = { 66.7, 81.3, 616, 300 }, + [14] = { 58.6, 80.5, 616, 300 }, + [15] = { 75.6, 80, 616, 300 }, + [16] = { 72.3, 79.9, 616, 300 }, + [17] = { 47.3, 79.5, 616, 300 }, + [18] = { 30.3, 78.8, 616, 300 }, + [19] = { 32.5, 78.3, 616, 300 }, + [20] = { 70.8, 78.3, 616, 300 }, + [21] = { 67.7, 78.1, 616, 300 }, + [22] = { 60.2, 77.6, 616, 300 }, + [23] = { 48.1, 76, 616, 300 }, + [24] = { 68.7, 75.9, 616, 300 }, + [25] = { 70.9, 75.7, 616, 300 }, + [26] = { 41.3, 73.6, 616, 300 }, + [27] = { 63, 73.4, 616, 300 }, + [28] = { 43.1, 73.1, 616, 300 }, + [29] = { 68.4, 72.7, 616, 300 }, + [30] = { 71.3, 72.3, 616, 300 }, + [31] = { 33.3, 72.2, 616, 300 }, + [32] = { 69.6, 71.7, 616, 300 }, + [33] = { 62.3, 71.5, 616, 300 }, + [34] = { 40.7, 69.6, 616, 300 }, + [35] = { 44.6, 68.7, 616, 300 }, + [36] = { 33.3, 68.6, 616, 300 }, + [37] = { 17, 68.3, 616, 300 }, + [38] = { 42.9, 66.4, 616, 300 }, + [39] = { 16.3, 65.4, 616, 300 }, + [40] = { 45.9, 64, 616, 300 }, + [41] = { 32.5, 63.6, 616, 300 }, + [42] = { 45.2, 54.1, 616, 300 }, + [43] = { 50.4, 52.2, 616, 300 }, + [44] = { 44.3, 49.8, 616, 300 }, + }, + ["lvl"] = "59-60", + }, + [61335] = { + ["coords"] = { + [1] = { 50.8, 68, 616, 300 }, + [2] = { 70.3, 47, 616, 300 }, + [3] = { 41.9, 46.3, 616, 300 }, + [4] = { 32, 45, 616, 300 }, + [5] = { 30.8, 44.5, 616, 300 }, + [6] = { 36, 43.7, 616, 300 }, + [7] = { 34, 43.3, 616, 300 }, + [8] = { 30.8, 41.8, 616, 300 }, + [9] = { 82.9, 40, 616, 300 }, + [10] = { 28.6, 39.8, 616, 300 }, + [11] = { 28.9, 36.9, 616, 300 }, + [12] = { 84.3, 36.4, 616, 300 }, + [13] = { 31.4, 36.3, 616, 300 }, + [14] = { 77.2, 35.6, 616, 300 }, + [15] = { 34.3, 35.4, 616, 300 }, + [16] = { 84.7, 33.7, 616, 300 }, + [17] = { 72.9, 32.9, 616, 300 }, + [18] = { 71, 27.5, 616, 300 }, + [19] = { 77.7, 27.1, 616, 300 }, + [20] = { 71.4, 25.4, 616, 300 }, + [21] = { 75.6, 22.7, 616, 300 }, + }, + ["lvl"] = "60-61", + }, + [61336] = { + ["coords"] = { + [1] = { 63, 87.6, 616, 300 }, + [2] = { 53.5, 87.5, 616, 300 }, + [3] = { 71.2, 83.3, 616, 300 }, + [4] = { 61.8, 82.6, 616, 300 }, + [5] = { 67.2, 82.2, 616, 300 }, + [6] = { 55.6, 81.9, 616, 300 }, + [7] = { 31.1, 81.3, 616, 300 }, + [8] = { 68.8, 81.1, 616, 300 }, + [9] = { 33.5, 79.9, 616, 300 }, + [10] = { 64.5, 75.7, 616, 300 }, + [11] = { 26.1, 74.7, 616, 300 }, + [12] = { 28, 73.1, 616, 300 }, + [13] = { 83.2, 70.9, 616, 300 }, + [14] = { 64.2, 70.6, 616, 300 }, + [15] = { 29.5, 70.4, 616, 300 }, + [16] = { 81.3, 70.2, 616, 300 }, + [17] = { 78.5, 69.4, 616, 300 }, + [18] = { 87.7, 68.5, 616, 300 }, + [19] = { 77.9, 68.2, 616, 300 }, + [20] = { 15.7, 67.8, 616, 300 }, + [21] = { 78.8, 67.2, 616, 300 }, + [22] = { 80.9, 66.5, 616, 300 }, + [23] = { 33.9, 66.5, 616, 300 }, + [24] = { 82.7, 66.4, 616, 300 }, + [25] = { 78.1, 66.3, 616, 300 }, + [26] = { 88.1, 66, 616, 300 }, + [27] = { 82, 65.7, 616, 300 }, + [28] = { 15, 65.3, 616, 300 }, + [29] = { 78.8, 65.3, 616, 300 }, + [30] = { 82.3, 64.5, 616, 300 }, + [31] = { 80.4, 64, 616, 300 }, + [32] = { 35.2, 63.9, 616, 300 }, + [33] = { 83.4, 63.9, 616, 300 }, + [34] = { 56.5, 55.2, 616, 300 }, + [35] = { 53.3, 51.1, 616, 300 }, + [36] = { 49.3, 50.9, 616, 300 }, + [37] = { 46.3, 50.4, 616, 300 }, + [38] = { 48.3, 82.9, 618, 300 }, + [39] = { 47.5, 82.7, 618, 300 }, + [40] = { 46.2, 82.3, 618, 300 }, + [41] = { 50.4, 81.9, 618, 300 }, + [42] = { 45.9, 81.7, 618, 300 }, + [43] = { 47.3, 81, 618, 300 }, + [44] = { 48.1, 80.9, 618, 300 }, + [45] = { 50.5, 80.8, 618, 300 }, + [46] = { 47.8, 80.6, 618, 300 }, + [47] = { 47.9, 80.1, 618, 300 }, + [48] = { 47, 79.8, 618, 300 }, + [49] = { 48.4, 79.8, 618, 300 }, + }, + ["lvl"] = "58-60", + }, + [61337] = { + ["coords"] = { + [1] = { 71.2, 48.7, 616, 300 }, + [2] = { 67.9, 43.3, 616, 300 }, + [3] = { 79.1, 42.3, 616, 300 }, + [4] = { 24.4, 38.8, 616, 300 }, + [5] = { 73.2, 35.6, 616, 300 }, + [6] = { 79.6, 34.8, 616, 300 }, + [7] = { 42.2, 34.2, 616, 300 }, + [8] = { 42.9, 32.7, 616, 300 }, + [9] = { 42.3, 32.3, 616, 300 }, + [10] = { 41.4, 32, 616, 300 }, + [11] = { 86.7, 31, 616, 300 }, + [12] = { 42, 30.6, 616, 300 }, + [13] = { 71.5, 29.8, 616, 300 }, + [14] = { 87.9, 28.3, 616, 300 }, + [15] = { 73.2, 27.7, 616, 300 }, + [16] = { 84.2, 23.3, 616, 300 }, + }, + ["lvl"] = "60-61", + }, + [61338] = { + ["coords"] = { + [1] = { 23, 57.9, 616, 300 }, + [2] = { 24.4, 55.7, 616, 300 }, + [3] = { 22.2, 52.3, 616, 300 }, + [4] = { 19.4, 50.5, 616, 300 }, + [5] = { 20.9, 49.4, 616, 300 }, + [6] = { 20.1, 48.2, 616, 300 }, + [7] = { 18.9, 48.1, 616, 300 }, + [8] = { 23.3, 47.6, 616, 300 }, + [9] = { 19.9, 46.8, 616, 300 }, + [10] = { 19.1, 46.3, 616, 300 }, + [11] = { 20.7, 45.8, 616, 300 }, + [12] = { 20.7, 42.2, 616, 300 }, + [13] = { 19.7, 41.8, 616, 300 }, + [14] = { 19.5, 40.8, 616, 300 }, + }, + ["lvl"] = "58-59", + }, + [61339] = { + ["coords"] = { + [1] = { 24.9, 54.5, 616, 120 }, + [2] = { 23.7, 54.1, 616, 120 }, + [3] = { 20.5, 53.8, 616, 120 }, + [4] = { 24.6, 52.8, 616, 120 }, + [5] = { 29.8, 52, 616, 120 }, + [6] = { 29.7, 51.6, 616, 120 }, + [7] = { 31.4, 51.2, 616, 120 }, + [8] = { 30.2, 50.6, 616, 120 }, + [9] = { 30.5, 49.6, 616, 120 }, + [10] = { 20.2, 49.3, 616, 120 }, + [11] = { 20.3, 48.9, 616, 120 }, + [12] = { 21.9, 45.9, 616, 120 }, + [13] = { 21.1, 44.5, 616, 120 }, + [14] = { 72.6, 22.4, 616, 120 }, + [15] = { 70.8, 20.8, 616, 120 }, + [16] = { 70.4, 19.1, 616, 120 }, + [17] = { 69.3, 18.6, 616, 120 }, + [18] = { 72.2, 18, 616, 120 }, + [19] = { 72, 17.2, 616, 120 }, + [20] = { 71.6, 16.7, 616, 120 }, + }, + ["lvl"] = "60-61", + }, + [61340] = { + ["coords"] = { + [1] = { 24.3, 57.8, 616, 120 }, + [2] = { 20.6, 53.5, 616, 120 }, + [3] = { 30.6, 52, 616, 120 }, + [4] = { 31.2, 51.1, 616, 120 }, + [5] = { 33.4, 50.9, 616, 120 }, + [6] = { 21.2, 47.4, 616, 120 }, + [7] = { 21.3, 44.7, 616, 120 }, + [8] = { 71.3, 22.3, 616, 120 }, + [9] = { 70.3, 20.3, 616, 120 }, + [10] = { 69.7, 19.8, 616, 120 }, + [11] = { 69.2, 17.8, 616, 120 }, + }, + ["lvl"] = "60-61", + }, + [61341] = { + ["coords"] = { + [1] = { 24.7, 53.1, 616, 120 }, + [2] = { 22.3, 52.5, 616, 120 }, + [3] = { 23.5, 52.1, 616, 120 }, + [4] = { 24.7, 51.7, 616, 120 }, + [5] = { 34.1, 50.1, 616, 120 }, + [6] = { 32.1, 49.7, 616, 120 }, + [7] = { 70.4, 20.6, 616, 120 }, + [8] = { 73, 19.5, 616, 120 }, + [9] = { 69.4, 19, 616, 120 }, + [10] = { 69.6, 18.6, 616, 120 }, + [11] = { 71.2, 18.3, 616, 120 }, + [12] = { 70.4, 17.8, 616, 120 }, + [13] = { 71.8, 17.2, 616, 120 }, + [14] = { 69.3, 16.7, 616, 120 }, + }, + ["lvl"] = "61-62", + }, + [61342] = { + ["coords"] = { + [1] = { 57.7, 71.8, 616, 300 }, + [2] = { 66.1, 71.4, 616, 300 }, + [3] = { 59.9, 67.7, 616, 300 }, + [4] = { 61.7, 67.6, 616, 300 }, + [5] = { 63.3, 67.1, 616, 300 }, + [6] = { 67.8, 66.5, 616, 300 }, + [7] = { 61.4, 64, 616, 300 }, + [8] = { 61.9, 63.9, 616, 300 }, + [9] = { 61.5, 60.9, 616, 300 }, + [10] = { 53.7, 59.8, 616, 300 }, + [11] = { 62.8, 59, 616, 300 }, + [12] = { 62.1, 57.5, 616, 300 }, + [13] = { 65.1, 57.4, 616, 300 }, + [14] = { 64.1, 56.3, 616, 300 }, + [15] = { 63.1, 56.3, 616, 300 }, + [16] = { 62.2, 56.1, 616, 300 }, + [17] = { 63.7, 55.9, 616, 300 }, + [18] = { 64.8, 55.7, 616, 300 }, + [19] = { 62.1, 54.4, 616, 300 }, + [20] = { 62.5, 53.7, 616, 300 }, + [21] = { 64.8, 53.6, 616, 300 }, + [22] = { 50.8, 53.5, 616, 300 }, + [23] = { 51.6, 53.3, 616, 300 }, + }, + ["lvl"] = "61-62", + ["rnk"] = "1", + }, + [61343] = { + ["coords"] = { + [1] = { 58, 76, 616, 300 }, + [2] = { 58.7, 74.1, 616, 300 }, + [3] = { 66.2, 72, 616, 300 }, + [4] = { 73, 71.4, 616, 300 }, + [5] = { 60, 70.3, 616, 300 }, + [6] = { 58.2, 70.1, 616, 300 }, + [7] = { 71.2, 69.6, 616, 300 }, + [8] = { 66.9, 69, 616, 300 }, + [9] = { 61.9, 67.5, 616, 300 }, + [10] = { 68.7, 65.6, 616, 300 }, + [11] = { 61.2, 61.4, 616, 300 }, + [12] = { 64.4, 59.4, 616, 300 }, + [13] = { 63.8, 59.2, 616, 300 }, + [14] = { 62.8, 58.2, 616, 300 }, + [15] = { 51.3, 56.8, 616, 300 }, + [16] = { 50.3, 56.1, 616, 300 }, + [17] = { 54.9, 55.4, 616, 300 }, + [18] = { 49.2, 55.4, 616, 300 }, + [19] = { 64.1, 55.3, 616, 300 }, + [20] = { 46.1, 55.2, 616, 300 }, + [21] = { 61.8, 55.1, 616, 300 }, + [22] = { 51.1, 54.7, 616, 300 }, + [23] = { 54.6, 54.1, 616, 300 }, + [24] = { 51.4, 53, 616, 300 }, + [25] = { 48, 51.4, 616, 300 }, + }, + ["lvl"] = "61-62", + }, + [61344] = { + ["coords"] = { + [1] = { 65.9, 71.8, 616, 300 }, + [2] = { 58.7, 68.3, 616, 300 }, + [3] = { 66.7, 68.1, 616, 300 }, + [4] = { 71.2, 67.3, 616, 300 }, + [5] = { 59.4, 66.3, 616, 300 }, + [6] = { 62.2, 60.1, 616, 300 }, + [7] = { 61.7, 59.5, 616, 300 }, + [8] = { 61.3, 59.1, 616, 300 }, + [9] = { 52.4, 58.6, 616, 300 }, + [10] = { 54.5, 57.4, 616, 300 }, + [11] = { 52.5, 57.2, 616, 300 }, + [12] = { 61.6, 56.4, 616, 300 }, + [13] = { 52, 55.8, 616, 300 }, + [14] = { 62, 55.4, 616, 300 }, + [15] = { 49.2, 53.2, 616, 300 }, + [16] = { 64.1, 53, 616, 300 }, + }, + ["lvl"] = "61-62", + }, + [61345] = { + ["coords"] = { + [1] = { 58.4, 68.8, 616, 300 }, + [2] = { 68.7, 68.2, 616, 300 }, + [3] = { 71.1, 67, 616, 300 }, + [4] = { 66.3, 66.4, 616, 300 }, + [5] = { 63.8, 65.4, 616, 300 }, + [6] = { 64.2, 64.9, 616, 300 }, + [7] = { 62.8, 63.8, 616, 300 }, + [8] = { 53.7, 59.1, 616, 300 }, + [9] = { 61.1, 58.4, 616, 300 }, + [10] = { 51.1, 58.2, 616, 300 }, + [11] = { 62, 57.1, 616, 300 }, + [12] = { 61.3, 57.1, 616, 300 }, + [13] = { 64.6, 56.9, 616, 300 }, + [14] = { 52.8, 56.6, 616, 300 }, + [15] = { 65.4, 56.5, 616, 300 }, + [16] = { 55, 55.8, 616, 300 }, + [17] = { 63, 54.5, 616, 300 }, + [18] = { 53.2, 54.1, 616, 300 }, + [19] = { 47.8, 54.1, 616, 300 }, + [20] = { 63.6, 53.5, 616, 300 }, + }, + ["lvl"] = "61-62", + }, + [61346] = { + ["coords"] = { + [1] = { 65.1, 68, 616, 300 }, + [2] = { 65.7, 67, 616, 300 }, + [3] = { 66.2, 66.6, 616, 300 }, + [4] = { 60, 66.1, 616, 300 }, + [5] = { 63.3, 64.1, 616, 300 }, + [6] = { 62.7, 58.7, 616, 300 }, + [7] = { 62.9, 58.4, 616, 300 }, + [8] = { 62.9, 56.5, 616, 300 }, + [9] = { 65.3, 56.4, 616, 300 }, + [10] = { 61.6, 56.2, 616, 300 }, + [11] = { 61.8, 55.5, 616, 300 }, + [12] = { 65.4, 54.8, 616, 300 }, + [13] = { 64, 52.3, 616, 300 }, + [14] = { 63.1, 52.3, 616, 300 }, + [15] = { 62.8, 51.3, 616, 300 }, + }, + ["lvl"] = "61-62", + }, + [61347] = { + ["coords"] = { + [1] = { 59, 69.8, 616, 300 }, + [2] = { 60.9, 66.6, 616, 300 }, + [3] = { 60.2, 65.9, 616, 300 }, + [4] = { 65.3, 65.5, 616, 300 }, + [5] = { 62.3, 59.8, 616, 300 }, + [6] = { 54.1, 59.6, 616, 300 }, + [7] = { 64.2, 58.1, 616, 300 }, + [8] = { 63.9, 56.9, 616, 300 }, + [9] = { 62.7, 56.4, 616, 300 }, + [10] = { 53.5, 55.8, 616, 300 }, + [11] = { 48.8, 55.4, 616, 300 }, + [12] = { 48.4, 55.2, 616, 300 }, + [13] = { 63.5, 53.7, 616, 300 }, + [14] = { 64.6, 50.4, 616, 300 }, + }, + ["lvl"] = "61-62", + ["rnk"] = "1", + }, + [61348] = { + ["coords"] = { + [1] = { 63.7, 50.3, 616, 300 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [61349] = { + ["coords"] = { + [1] = { 53.6, 41.9, 616, 300 }, + [2] = { 51.7, 41.5, 616, 300 }, + [3] = { 48, 40.6, 616, 300 }, + [4] = { 50.3, 40.1, 616, 300 }, + [5] = { 52.5, 39.7, 616, 300 }, + [6] = { 59.9, 38.3, 616, 300 }, + [7] = { 50.5, 37.6, 616, 300 }, + [8] = { 46.7, 35.9, 616, 300 }, + [9] = { 53.8, 35.5, 616, 300 }, + [10] = { 60.2, 32.1, 616, 300 }, + [11] = { 46.6, 28, 616, 300 }, + [12] = { 64.4, 27.1, 616, 300 }, + [13] = { 53.7, 25.9, 616, 300 }, + [14] = { 51, 25.8, 616, 300 }, + [15] = { 56, 25.2, 616, 300 }, + [16] = { 48.7, 24.2, 616, 300 }, + [17] = { 53.3, 22.8, 616, 300 }, + [18] = { 63.1, 19.7, 616, 300 }, + }, + ["lvl"] = "62", + }, + [61350] = { + ["coords"] = { + [1] = { 43.9, 87.8, 616, 300 }, + [2] = { 45, 86.4, 616, 300 }, + [3] = { 47.7, 84, 616, 300 }, + [4] = { 40, 83.5, 616, 300 }, + [5] = { 47.4, 82.4, 616, 300 }, + [6] = { 38.6, 80.7, 616, 300 }, + [7] = { 43.3, 77.8, 616, 300 }, + [8] = { 49.9, 76.6, 616, 300 }, + [9] = { 41, 76.6, 616, 300 }, + [10] = { 42.7, 75.8, 616, 300 }, + [11] = { 44.9, 75.4, 616, 300 }, + [12] = { 38.9, 74.4, 616, 300 }, + [13] = { 48.4, 73, 616, 300 }, + [14] = { 50.6, 71.3, 616, 300 }, + [15] = { 43, 69.8, 616, 300 }, + [16] = { 47, 67.6, 616, 300 }, + [17] = { 49.4, 66.9, 616, 300 }, + [18] = { 43.7, 64.9, 616, 300 }, + [19] = { 58.1, 42.5, 616, 300 }, + [20] = { 52.8, 41.8, 616, 300 }, + [21] = { 54.7, 37, 616, 300 }, + [22] = { 51.8, 36.1, 616, 300 }, + [23] = { 57, 33.8, 616, 300 }, + [24] = { 64.7, 31.3, 616, 300 }, + [25] = { 58.5, 30.4, 616, 300 }, + [26] = { 52.6, 27, 616, 300 }, + [27] = { 59.5, 19.9, 616, 300 }, + [28] = { 60.9, 19, 616, 300 }, + }, + ["lvl"] = "60-61", + }, + [61351] = { + ["coords"] = {}, + ["lvl"] = "62", + }, + [61352] = { + ["coords"] = { + [1] = { 59.6, 45.1, 616, 300 }, + [2] = { 56.4, 38.7, 616, 300 }, + [3] = { 47.7, 37.5, 616, 300 }, + [4] = { 55.7, 35.8, 616, 300 }, + [5] = { 48.7, 34.3, 616, 300 }, + [6] = { 65.3, 32.8, 616, 300 }, + [7] = { 50.5, 30.6, 616, 300 }, + [8] = { 56.1, 29.5, 616, 300 }, + [9] = { 64.1, 24.6, 616, 300 }, + [10] = { 61.2, 22.2, 616, 300 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [61353] = { + ["coords"] = { + [1] = { 46.7, 39.3, 616, 300 }, + [2] = { 51.1, 34.9, 616, 300 }, + [3] = { 58.5, 34.7, 616, 300 }, + [4] = { 51.6, 28.4, 616, 300 }, + [5] = { 53.4, 27.9, 616, 300 }, + [6] = { 61.8, 26.6, 616, 300 }, + [7] = { 62.4, 24, 616, 300 }, + [8] = { 59.6, 22.9, 616, 300 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [61354] = { + ["coords"] = { + [1] = { 47.7, 87.4, 616, 300 }, + [2] = { 41.4, 85.6, 616, 300 }, + [3] = { 40, 81.3, 616, 300 }, + [4] = { 44, 78.5, 616, 300 }, + [5] = { 45.9, 77.8, 616, 300 }, + [6] = { 37.8, 76.8, 616, 300 }, + [7] = { 47.7, 71, 616, 300 }, + [8] = { 45.1, 65.7, 616, 300 }, + [9] = { 58, 37.8, 616, 300 }, + [10] = { 48.6, 37.6, 616, 300 }, + [11] = { 59.9, 34.7, 616, 300 }, + [12] = { 63, 34.7, 616, 300 }, + [13] = { 50, 34.3, 616, 300 }, + [14] = { 56.8, 33.1, 616, 300 }, + [15] = { 57.1, 32.5, 616, 300 }, + [16] = { 63.1, 31.6, 616, 300 }, + [17] = { 47.4, 30.5, 616, 300 }, + [18] = { 54.5, 28.1, 616, 300 }, + [19] = { 60.5, 27.9, 616, 300 }, + [20] = { 58.4, 26.4, 616, 300 }, + [21] = { 49.2, 25.8, 616, 300 }, + [22] = { 45.9, 25.4, 616, 300 }, + [23] = { 58.7, 22.7, 616, 300 }, + [24] = { 62.5, 21, 616, 300 }, + }, + ["lvl"] = "62", + }, + [61355] = { + ["coords"] = { + [1] = { 82.5, 29.9, 616, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "54", + }, + [61356] = { + ["coords"] = { + [1] = { 54.1, 45.4, 361, 300 }, + [2] = { 56.1, 43.7, 361, 300 }, + [3] = { 57.1, 41.9, 361, 300 }, + [4] = { 12, 52.3, 616, 300 }, + [5] = { 10.2, 50.9, 616, 300 }, + [6] = { 9.3, 50.1, 616, 300 }, + [7] = { 10.7, 48.7, 616, 300 }, + [8] = { 9.2, 48.6, 616, 300 }, + [9] = { 12.3, 46.2, 616, 300 }, + [10] = { 10.4, 46.1, 616, 300 }, + [11] = { 11.8, 43.9, 616, 300 }, + [12] = { 9.9, 43.2, 616, 300 }, + [13] = { 10.1, 43.2, 616, 300 }, + [14] = { 12.8, 39.9, 616, 300 }, + [15] = { 16.5, 36.4, 616, 300 }, + [16] = { 16.6, 36.4, 616, 300 }, + [17] = { 20.1, 35.1, 616, 300 }, + [18] = { 12.1, 34.1, 616, 300 }, + [19] = { 15.2, 33.5, 616, 300 }, + [20] = { 16.1, 32.6, 616, 300 }, + [21] = { 15.8, 31.1, 616, 300 }, + [22] = { 17.5, 28, 616, 300 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [61357] = { + ["coords"] = { + [1] = { 56.6, 42.6, 361, 300 }, + [2] = { 55.6, 41.8, 361, 300 }, + [3] = { 55.6, 41.7, 361, 300 }, + [4] = { 11.2, 48.3, 616, 300 }, + [5] = { 14.2, 39.2, 616, 300 }, + [6] = { 14, 38.9, 616, 300 }, + [7] = { 18.1, 36.9, 616, 300 }, + [8] = { 16.4, 33.7, 616, 300 }, + [9] = { 16, 32.5, 616, 300 }, + [10] = { 16.7, 29.2, 616, 300 }, + [11] = { 14.9, 27.7, 616, 300 }, + [12] = { 14.9, 27.6, 616, 300 }, + }, + ["lvl"] = "61-62", + ["rnk"] = "1", + }, + [61358] = { + ["coords"] = { + [1] = { 52.1, 53.8, 361, 300 }, + [2] = { 49.8, 49.6, 361, 300 }, + [3] = { 54.2, 45.4, 361, 300 }, + [4] = { 54.1, 45.3, 361, 300 }, + [5] = { 55.4, 43.5, 361, 300 }, + [6] = { 54.6, 43.1, 361, 300 }, + [7] = { 55, 40.1, 361, 300 }, + [8] = { 55.1, 40.1, 361, 300 }, + [9] = { 8.6, 49.2, 616, 300 }, + [10] = { 12.7, 47.7, 616, 300 }, + [11] = { 9.6, 43.9, 616, 300 }, + [12] = { 12.4, 43.3, 616, 300 }, + [13] = { 4.5, 41.7, 616, 300 }, + [14] = { 15.9, 38.1, 616, 300 }, + [15] = { 16.1, 35.6, 616, 300 }, + [16] = { 19, 35.1, 616, 300 }, + [17] = { 12.3, 34.2, 616, 300 }, + [18] = { 12.2, 33.9, 616, 300 }, + [19] = { 17, 33.2, 616, 300 }, + [20] = { 16.1, 32.5, 616, 300 }, + [21] = { 19.4, 31.7, 616, 300 }, + [22] = { 14.5, 30.8, 616, 300 }, + [23] = { 13.1, 30, 616, 300 }, + [24] = { 13.8, 24.8, 616, 300 }, + [25] = { 13.8, 24.6, 616, 300 }, + }, + ["lvl"] = "61-62", + ["rnk"] = "1", + }, + [61359] = { + ["coords"] = { + [1] = { 51.7, 52.9, 361, 300 }, + [2] = { 51.8, 52.9, 361, 300 }, + [3] = { 51.7, 52, 361, 300 }, + [4] = { 52, 51, 361, 300 }, + [5] = { 52.3, 50.8, 361, 300 }, + [6] = { 52.3, 50.7, 361, 300 }, + [7] = { 50.9, 50.5, 361, 300 }, + [8] = { 54.6, 43.1, 361, 300 }, + [9] = { 54.6, 42.6, 361, 300 }, + [10] = { 56.4, 42.4, 361, 300 }, + [11] = { 11.7, 52.6, 616, 300 }, + [12] = { 10.7, 51.7, 616, 300 }, + [13] = { 10.2, 51.6, 616, 300 }, + [14] = { 12.3, 50.5, 616, 300 }, + [15] = { 9.9, 49.7, 616, 300 }, + [16] = { 11.5, 48.5, 616, 300 }, + [17] = { 7.8, 47.6, 616, 300 }, + [18] = { 12.7, 47.6, 616, 300 }, + [19] = { 7.9, 47.5, 616, 300 }, + [20] = { 12.4, 47.2, 616, 300 }, + [21] = { 10.1, 46.8, 616, 300 }, + [22] = { 10.7, 46.6, 616, 300 }, + [23] = { 10.3, 46.1, 616, 300 }, + [24] = { 7.9, 46.1, 616, 300 }, + [25] = { 8.3, 44.1, 616, 300 }, + [26] = { 8.9, 43.8, 616, 300 }, + [27] = { 8.8, 43.8, 616, 300 }, + [28] = { 9, 43.7, 616, 300 }, + [29] = { 6.4, 43.3, 616, 300 }, + [30] = { 13.7, 42.4, 616, 300 }, + [31] = { 10, 41.9, 616, 300 }, + [32] = { 11.6, 41.6, 616, 300 }, + [33] = { 12, 40.1, 616, 300 }, + [34] = { 20.1, 35, 616, 300 }, + [35] = { 17, 33.3, 616, 300 }, + [36] = { 13, 30, 616, 300 }, + [37] = { 13, 29.2, 616, 300 }, + [38] = { 16.2, 28.8, 616, 300 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [61360] = { + ["coords"] = { + [1] = { 18, 32, 616, 300 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [61361] = { + ["coords"] = { + [1] = { 10, 46.8, 616, 300 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [61362] = { + ["coords"] = { + [1] = { 27.5, 37.2, 5179, 300 }, + [2] = { 30.9, 35.8, 5179, 300 }, + [3] = { 30.6, 35.3, 5179, 300 }, + [4] = { 32.4, 34.2, 5179, 300 }, + [5] = { 27.6, 32.7, 5179, 300 }, + [6] = { 26.7, 32, 5179, 300 }, + [7] = { 28.9, 31.4, 5179, 300 }, + }, + ["lvl"] = "41-43", + }, + [61363] = { + ["coords"] = { + [1] = { 66.1, 66.5, 5179, 300 }, + [2] = { 64.2, 66.3, 5179, 300 }, + [3] = { 66.4, 66.2, 5179, 300 }, + [4] = { 66.2, 65.9, 5179, 300 }, + [5] = { 64.3, 65.8, 5179, 300 }, + [6] = { 65.7, 65.5, 5179, 300 }, + [7] = { 66.5, 65.5, 5179, 300 }, + [8] = { 64.4, 65.5, 5179, 300 }, + [9] = { 65.6, 65.4, 5179, 300 }, + [10] = { 66.3, 65.3, 5179, 300 }, + [11] = { 66.3, 65.2, 5179, 300 }, + [12] = { 65.9, 65.1, 5179, 300 }, + [13] = { 62.4, 63.9, 5179, 300 }, + [14] = { 61.4, 63.6, 5179, 300 }, + [15] = { 63.8, 63.3, 5179, 300 }, + [16] = { 63.9, 63.2, 5179, 300 }, + [17] = { 64, 63, 5179, 300 }, + [18] = { 61.3, 62.1, 5179, 300 }, + [19] = { 60.9, 60.7, 5179, 300 }, + [20] = { 61.8, 60, 5179, 300 }, + [21] = { 61.1, 59.1, 5179, 300 }, + [22] = { 60.6, 57.7, 5179, 300 }, + [23] = { 61.8, 53.8, 5179, 300 }, + [24] = { 58.7, 53.3, 5179, 300 }, + [25] = { 60.8, 53.1, 5179, 300 }, + [26] = { 62.7, 51.1, 5179, 300 }, + [27] = { 62, 51, 5179, 300 }, + }, + ["lvl"] = "43-44", + }, + [61364] = { + ["coords"] = { + [1] = { 73, 84.7, 5208, 18000 }, + [2] = { 71.7, 82.5, 5208, 18000 }, + [3] = { 70.1, 81.6, 5208, 18000 }, + [4] = { 80.5, 81.3, 5208, 18000 }, + [5] = { 80.7, 81.1, 5208, 18000 }, + [6] = { 70.5, 80.9, 5208, 18000 }, + [7] = { 78.5, 80.2, 5208, 18000 }, + [8] = { 78.3, 75, 5208, 18000 }, + [9] = { 77.2, 71.9, 5208, 18000 }, + [10] = { 82.1, 71.6, 5208, 18000 }, + [11] = { 79.8, 71.3, 5208, 18000 }, + [12] = { 66.2, 71.1, 5208, 18000 }, + [13] = { 63.4, 70.7, 5208, 18000 }, + [14] = { 73.6, 69.9, 5208, 18000 }, + [15] = { 75.9, 68.1, 5208, 18000 }, + [16] = { 75.3, 67.9, 5208, 18000 }, + [17] = { 60.5, 67.7, 5208, 18000 }, + [18] = { 57.1, 61.2, 5208, 18000 }, + [19] = { 72, 46.6, 5208, 18000 }, + [20] = { 71.9, 43.6, 5208, 18000 }, + [21] = { 74.4, 42, 5208, 18000 }, + [22] = { 74.2, 41.9, 5208, 18000 }, + [23] = { 73.3, 40.4, 5208, 18000 }, + }, + ["lvl"] = "43-44", + ["rnk"] = "1", + }, + [61365] = { + ["coords"] = { + [1] = { 52.1, 52.3, 5208, 18000 }, + [2] = { 52.7, 51.2, 5208, 18000 }, + [3] = { 50.1, 50.8, 5208, 18000 }, + [4] = { 51.2, 48.4, 5208, 18000 }, + [5] = { 44, 44.9, 5208, 18000 }, + [6] = { 41.3, 38.4, 5208, 18000 }, + [7] = { 41.1, 38.1, 5208, 18000 }, + [8] = { 25.9, 26.3, 5208, 18000 }, + [9] = { 25.5, 25.8, 5208, 18000 }, + [10] = { 28.3, 25, 5208, 18000 }, + [11] = { 27.5, 24.8, 5208, 18000 }, + [12] = { 28.7, 24.3, 5208, 18000 }, + [13] = { 24.7, 22.4, 5208, 18000 }, + [14] = { 25, 22.1, 5208, 18000 }, + [15] = { 28.3, 21.6, 5208, 18000 }, + [16] = { 28.5, 21.3, 5208, 18000 }, + [17] = { 27, 20.8, 5208, 18000 }, + [18] = { 30.1, 20.6, 5208, 18000 }, + [19] = { 28.9, 20.1, 5208, 18000 }, + [20] = { 28.2, 19.2, 5208, 18000 }, + }, + ["lvl"] = "45-46", + ["rnk"] = "1", + }, + [61366] = { + ["coords"] = { + [1] = { 57.2, 58.3, 5179, 300 }, + [2] = { 56.4, 58.3, 5179, 300 }, + [3] = { 55.6, 55.4, 5179, 300 }, + [4] = { 54.7, 55.2, 5179, 300 }, + [5] = { 56.2, 53.8, 5179, 300 }, + [6] = { 54.6, 53.6, 5179, 300 }, + [7] = { 54.3, 52.9, 5179, 300 }, + [8] = { 55.1, 52.8, 5179, 300 }, + [9] = { 53.1, 51.8, 5179, 300 }, + [10] = { 52.4, 51.6, 5179, 300 }, + [11] = { 55.8, 51.5, 5179, 300 }, + [12] = { 53.6, 51.3, 5179, 300 }, + [13] = { 55.3, 50.5, 5179, 300 }, + [14] = { 56.5, 49.8, 5179, 300 }, + [15] = { 54, 49.3, 5179, 300 }, + [16] = { 54, 49.1, 5179, 300 }, + [17] = { 53.1, 48.8, 5179, 300 }, + }, + ["lvl"] = "39-40", + }, + [61367] = { + ["coords"] = { + [1] = { 52.4, 53.9, 361, 300 }, + [2] = { 51.9, 53.3, 361, 300 }, + [3] = { 52.3, 53, 361, 300 }, + [4] = { 52, 52.6, 361, 300 }, + [5] = { 51.6, 51.8, 361, 300 }, + [6] = { 52.2, 51.6, 361, 300 }, + [7] = { 51.4, 50.8, 361, 300 }, + [8] = { 10.1, 51, 616, 300 }, + [9] = { 10.1, 50.9, 616, 300 }, + [10] = { 9.1, 49.4, 616, 300 }, + [11] = { 11, 49.2, 616, 300 }, + [12] = { 10.3, 49.1, 616, 300 }, + [13] = { 10.2, 49, 616, 300 }, + [14] = { 10.6, 48.7, 616, 300 }, + [15] = { 10.7, 48.5, 616, 300 }, + [16] = { 12.5, 48.2, 616, 300 }, + [17] = { 8.2, 48.2, 616, 300 }, + [18] = { 8.9, 47.8, 616, 300 }, + [19] = { 8.3, 47.1, 616, 300 }, + [20] = { 11.9, 46.1, 616, 300 }, + [21] = { 12.3, 46.1, 616, 300 }, + [22] = { 10.8, 46, 616, 300 }, + [23] = { 7.7, 45.5, 616, 300 }, + [24] = { 12.1, 45.5, 616, 300 }, + [25] = { 8.7, 45.2, 616, 300 }, + [26] = { 10.9, 45.1, 616, 300 }, + [27] = { 10.2, 45, 616, 300 }, + [28] = { 10.9, 44.5, 616, 300 }, + [29] = { 7.3, 43.9, 616, 300 }, + [30] = { 12, 40.4, 616, 300 }, + [31] = { 11.9, 40.3, 616, 300 }, + [32] = { 12.1, 40.3, 616, 300 }, + [33] = { 11.9, 40.2, 616, 300 }, + }, + ["lvl"] = "60-61", + }, + [61368] = { + ["coords"] = { + [1] = { 14.2, 34.6, 5179, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [61369] = { + ["coords"] = { + [1] = { 14.6, 34.8, 5179, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [61370] = { + ["coords"] = { + [1] = { 58, 73.6, 5179, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [61371] = { + ["coords"] = { + [1] = { 14.6, 34.1, 5179, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [61372] = { + ["coords"] = { + [1] = { 33.2, 54, 5179, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "32", + }, + [61373] = { + ["coords"] = { + [1] = { 33.5, 53.7, 5179, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "33", + }, + [61374] = { + ["coords"] = { + [1] = { 65.9, 42.5, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [61375] = { + ["coords"] = { + [1] = { 14, 33.7, 5179, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [61376] = { + ["coords"] = { + [1] = { 14.1, 34.3, 5179, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "42", + }, + [61377] = { + ["coords"] = { + [1] = { 14.1, 33.7, 5179, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "43", + }, + [61378] = { + ["coords"] = { + [1] = { 14.8, 36, 5179, 120 }, + [2] = { 14.6, 36, 5179, 120 }, + [3] = { 13.9, 35, 5179, 120 }, + [4] = { 13, 34.9, 5179, 120 }, + [5] = { 14.4, 34.9, 5179, 120 }, + [6] = { 15.2, 34.7, 5179, 120 }, + [7] = { 15.2, 34.6, 5179, 120 }, + [8] = { 13.5, 34.5, 5179, 120 }, + [9] = { 14.5, 34.3, 5179, 120 }, + [10] = { 14.4, 34.1, 5179, 120 }, + [11] = { 15.2, 34.1, 5179, 120 }, + [12] = { 14.9, 33.9, 5179, 120 }, + [13] = { 15.4, 33.3, 5179, 120 }, + [14] = { 14.3, 32.9, 5179, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "42", + }, + [61379] = { + ["coords"] = { + [1] = { 32.9, 52.8, 5179, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "15", + }, + [61380] = { + ["coords"] = { + [1] = { 33.1, 53.7, 5179, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [61381] = { + ["coords"] = { + [1] = { 33.1, 54, 5179, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "38", + }, + [61382] = { + ["coords"] = { + [1] = { 33.3, 52.9, 5179, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [61383] = { + ["coords"] = { + [1] = { 33.2, 53.4, 5179, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "36", + }, + [61384] = { + ["coords"] = { + [1] = { 44.4, 35.6, 5179, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "36", + }, + [61385] = { + ["coords"] = { + [1] = { 33.3, 53.3, 5179, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "47", + }, + [61386] = { + ["coords"] = { + [1] = { 33.7, 54.1, 5179, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [61387] = { + ["coords"] = { + [1] = { 33.5, 54.2, 5179, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [61388] = { + ["coords"] = { + [1] = { 76.5, 82.1, 5208, 18000 }, + [2] = { 77.1, 81.8, 5208, 18000 }, + [3] = { 76.1, 80.1, 5208, 18000 }, + [4] = { 76.7, 79.8, 5208, 18000 }, + [5] = { 60.2, 78.3, 5208, 18000 }, + [6] = { 68.7, 76.6, 5208, 18000 }, + [7] = { 68.7, 75.8, 5208, 18000 }, + [8] = { 69.1, 75.6, 5208, 18000 }, + [9] = { 67, 74.7, 5208, 18000 }, + [10] = { 64.7, 72.1, 5208, 18000 }, + [11] = { 66.4, 71.6, 5208, 18000 }, + [12] = { 63.2, 70.8, 5208, 18000 }, + [13] = { 60.3, 67.5, 5208, 18000 }, + [14] = { 59.8, 64.1, 5208, 18000 }, + [15] = { 57.4, 60.6, 5208, 18000 }, + [16] = { 56.8, 56.5, 5208, 18000 }, + [17] = { 56.8, 56.3, 5208, 18000 }, + [18] = { 54.8, 54.9, 5208, 18000 }, + [19] = { 54.4, 54.6, 5208, 18000 }, + [20] = { 54.7, 54.3, 5208, 18000 }, + [21] = { 48.5, 51, 5208, 18000 }, + [22] = { 48, 50.3, 5208, 18000 }, + [23] = { 44.4, 49.2, 5208, 18000 }, + [24] = { 43.6, 48, 5208, 18000 }, + [25] = { 51.4, 47.5, 5208, 18000 }, + [26] = { 51.3, 47.2, 5208, 18000 }, + [27] = { 44.2, 45.5, 5208, 18000 }, + [28] = { 41, 42, 5208, 18000 }, + [29] = { 40.7, 41.6, 5208, 18000 }, + [30] = { 49.5, 40.2, 5208, 18000 }, + [31] = { 24.8, 22.6, 5208, 18000 }, + [32] = { 24.9, 22.1, 5208, 18000 }, + }, + ["lvl"] = "45-46", + ["rnk"] = "1", + }, + [61389] = { + ["coords"] = { + [1] = { 73.5, 84.8, 5208, 18000 }, + [2] = { 80.6, 81, 5208, 18000 }, + [3] = { 78.7, 80.3, 5208, 18000 }, + [4] = { 73.1, 79.1, 5208, 18000 }, + [5] = { 73.2, 78.8, 5208, 18000 }, + [6] = { 63, 77.6, 5208, 18000 }, + [7] = { 62.9, 77.3, 5208, 18000 }, + [8] = { 81.5, 76.8, 5208, 18000 }, + [9] = { 71.1, 76.1, 5208, 18000 }, + [10] = { 71.3, 75.9, 5208, 18000 }, + [11] = { 78.3, 75.4, 5208, 18000 }, + [12] = { 64.1, 75.4, 5208, 18000 }, + [13] = { 78.1, 75, 5208, 18000 }, + [14] = { 66.8, 74.8, 5208, 18000 }, + [15] = { 73.7, 73.6, 5208, 18000 }, + [16] = { 72.7, 73.4, 5208, 18000 }, + [17] = { 62.8, 73.2, 5208, 18000 }, + [18] = { 80.2, 72.3, 5208, 18000 }, + [19] = { 77, 71.8, 5208, 18000 }, + [20] = { 77.1, 71.7, 5208, 18000 }, + [21] = { 82.3, 70, 5208, 18000 }, + [22] = { 73.8, 70, 5208, 18000 }, + [23] = { 73.7, 69.6, 5208, 18000 }, + [24] = { 76, 68, 5208, 18000 }, + [25] = { 75.2, 67.7, 5208, 18000 }, + [26] = { 60.5, 67.4, 5208, 18000 }, + [27] = { 59.8, 63.8, 5208, 18000 }, + [28] = { 57.2, 60.4, 5208, 18000 }, + [29] = { 56.9, 56.4, 5208, 18000 }, + [30] = { 71.7, 48, 5208, 18000 }, + [31] = { 72.6, 47, 5208, 18000 }, + [32] = { 72, 43.4, 5208, 18000 }, + [33] = { 71.8, 43.3, 5208, 18000 }, + [34] = { 73.5, 39.3, 5208, 18000 }, + }, + ["lvl"] = "43-44", + ["rnk"] = "1", + }, + [61390] = { + ["coords"] = { + [1] = { 62.8, 77.5, 5208, 18000 }, + [2] = { 65.9, 71.3, 5208, 18000 }, + [3] = { 60, 64.2, 5208, 18000 }, + [4] = { 44.4, 45, 5208, 18000 }, + [5] = { 43.9, 41.5, 5208, 18000 }, + [6] = { 27.7, 26.6, 5208, 18000 }, + [7] = { 27.4, 26.5, 5208, 18000 }, + [8] = { 27.3, 22.3, 5208, 18000 }, + [9] = { 28, 22, 5208, 18000 }, + [10] = { 27.7, 21.9, 5208, 18000 }, + [11] = { 28.5, 21.9, 5208, 18000 }, + [12] = { 28.7, 21.5, 5208, 18000 }, + [13] = { 26.8, 20.9, 5208, 18000 }, + [14] = { 27.5, 20.8, 5208, 18000 }, + [15] = { 27.6, 20.7, 5208, 18000 }, + [16] = { 30.5, 18.6, 5208, 18000 }, + [17] = { 30.4, 18.4, 5208, 18000 }, + }, + ["lvl"] = "45-47", + ["rnk"] = "1", + }, + [61391] = { + ["coords"] = { + [1] = { 72.5, 83.5, 5208, 18000 }, + [2] = { 69.9, 81.5, 5208, 18000 }, + [3] = { 80.4, 81.2, 5208, 18000 }, + [4] = { 78, 79.7, 5208, 18000 }, + [5] = { 72.9, 78.9, 5208, 18000 }, + [6] = { 80.2, 76.9, 5208, 18000 }, + [7] = { 68.5, 76.2, 5208, 18000 }, + [8] = { 68.8, 75.5, 5208, 18000 }, + [9] = { 75.1, 75.4, 5208, 18000 }, + [10] = { 71, 74.9, 5208, 18000 }, + [11] = { 66.7, 74.5, 5208, 18000 }, + [12] = { 73.7, 73.9, 5208, 18000 }, + [13] = { 65.5, 73.3, 5208, 18000 }, + [14] = { 82.3, 72.3, 5208, 18000 }, + [15] = { 83.6, 72, 5208, 18000 }, + [16] = { 82.2, 71.7, 5208, 18000 }, + [17] = { 63.2, 70.4, 5208, 18000 }, + [18] = { 82.2, 69.8, 5208, 18000 }, + [19] = { 60, 63.9, 5208, 18000 }, + [20] = { 57.2, 61.4, 5208, 18000 }, + [21] = { 48.5, 50.5, 5208, 18000 }, + [22] = { 49.1, 47.7, 5208, 18000 }, + [23] = { 51.2, 47.5, 5208, 18000 }, + [24] = { 49.2, 47.4, 5208, 18000 }, + [25] = { 49.4, 43.7, 5208, 18000 }, + [26] = { 49.2, 43.6, 5208, 18000 }, + [27] = { 43.9, 41.9, 5208, 18000 }, + [28] = { 43.3, 38.3, 5208, 18000 }, + [29] = { 30.3, 18.7, 5208, 18000 }, + }, + ["lvl"] = "45-46", + ["rnk"] = "1", + }, + [61392] = { + ["coords"] = { + [1] = { 28.4, 37.3, 5179, 300 }, + [2] = { 32.3, 36.3, 5179, 300 }, + [3] = { 27.3, 35.5, 5179, 300 }, + [4] = { 28.5, 34.2, 5179, 300 }, + [5] = { 25.6, 33.8, 5179, 300 }, + [6] = { 29.1, 32.8, 5179, 300 }, + [7] = { 28.1, 32.5, 5179, 300 }, + }, + ["lvl"] = "42", + }, + [61393] = { + ["coords"] = { + [1] = { 21.1, 64.7, 5179, 300 }, + [2] = { 22.4, 64.4, 5179, 300 }, + [3] = { 20.3, 63.3, 5179, 300 }, + [4] = { 21.7, 63.1, 5179, 300 }, + [5] = { 20.1, 61.3, 5179, 300 }, + [6] = { 19.2, 60.9, 5179, 300 }, + [7] = { 19.6, 60.5, 5179, 300 }, + [8] = { 21, 60.3, 5179, 300 }, + [9] = { 18.6, 46.8, 5179, 300 }, + [10] = { 18.3, 45.4, 5179, 300 }, + [11] = { 20.1, 45.1, 5179, 300 }, + [12] = { 18.2, 44.9, 5179, 300 }, + [13] = { 18.4, 44.3, 5179, 300 }, + [14] = { 25.1, 44.1, 5179, 300 }, + [15] = { 22.7, 43.8, 5179, 300 }, + }, + ["lvl"] = "40-41", + }, + [61394] = { + ["coords"] = { + [1] = { 65.6, 66.6, 5179, 300 }, + [2] = { 65.4, 65.5, 5179, 300 }, + [3] = { 66.3, 64.8, 5179, 300 }, + [4] = { 20.9, 63.3, 5179, 300 }, + [5] = { 21, 62.6, 5179, 300 }, + [6] = { 20.4, 62.6, 5179, 300 }, + [7] = { 19.5, 62.4, 5179, 300 }, + [8] = { 20.2, 62, 5179, 300 }, + [9] = { 20.5, 61.9, 5179, 300 }, + [10] = { 19.7, 61.9, 5179, 300 }, + [11] = { 21.4, 61.8, 5179, 300 }, + [12] = { 21, 61.1, 5179, 300 }, + [13] = { 20.2, 60.4, 5179, 300 }, + [14] = { 20, 60.1, 5179, 300 }, + [15] = { 22, 60, 5179, 300 }, + [16] = { 19.9, 60, 5179, 300 }, + [17] = { 21.1, 59.3, 5179, 300 }, + [18] = { 19.1, 59.1, 5179, 300 }, + [19] = { 13.8, 58.3, 5179, 300 }, + [20] = { 14.8, 58, 5179, 300 }, + [21] = { 14.4, 56.8, 5179, 300 }, + [22] = { 19.1, 56.6, 5179, 300 }, + [23] = { 12.8, 56.4, 5179, 300 }, + [24] = { 18, 55.8, 5179, 300 }, + [25] = { 16.8, 55.6, 5179, 300 }, + [26] = { 15.3, 55.4, 5179, 300 }, + [27] = { 17.5, 54.9, 5179, 300 }, + [28] = { 13.3, 54.6, 5179, 300 }, + [29] = { 17.5, 53.7, 5179, 300 }, + [30] = { 18.3, 53.2, 5179, 300 }, + [31] = { 13.3, 53.1, 5179, 300 }, + [32] = { 19, 53, 5179, 300 }, + [33] = { 72.6, 85.1, 5208, 18000 }, + [34] = { 72.4, 84.6, 5208, 18000 }, + [35] = { 61.1, 63.8, 5208, 18000 }, + [36] = { 61.2, 63.6, 5208, 18000 }, + [37] = { 61.4, 63.6, 5208, 18000 }, + [38] = { 60.2, 62.5, 5208, 18000 }, + [39] = { 59.1, 61.1, 5208, 18000 }, + [40] = { 59.2, 60.5, 5208, 18000 }, + [41] = { 60, 60.4, 5208, 18000 }, + [42] = { 59.1, 60.4, 5208, 18000 }, + [43] = { 59.3, 60.3, 5208, 18000 }, + [44] = { 58.8, 59.4, 5208, 18000 }, + [45] = { 59.2, 58.8, 5208, 18000 }, + [46] = { 58.4, 57.5, 5208, 18000 }, + [47] = { 55.2, 57.2, 5208, 18000 }, + [48] = { 52, 55.1, 5208, 18000 }, + [49] = { 55.1, 52.5, 5208, 18000 }, + [50] = { 55, 51.9, 5208, 18000 }, + [51] = { 46.4, 44.9, 5208, 18000 }, + [52] = { 47.2, 44.1, 5208, 18000 }, + [53] = { 50.4, 42.9, 5208, 18000 }, + [54] = { 50.3, 42.6, 5208, 18000 }, + [55] = { 50.6, 42.6, 5208, 18000 }, + [56] = { 51, 42.6, 5208, 18000 }, + [57] = { 49.8, 41.7, 5208, 18000 }, + [58] = { 49.9, 40.8, 5208, 18000 }, + [59] = { 46.5, 40.5, 5208, 18000 }, + [60] = { 46.7, 40.5, 5208, 18000 }, + [61] = { 46.5, 40.3, 5208, 18000 }, + [62] = { 38.7, 39.9, 5208, 18000 }, + [63] = { 38.2, 39.2, 5208, 18000 }, + [64] = { 48.6, 39.1, 5208, 18000 }, + [65] = { 47.7, 38.4, 5208, 18000 }, + }, + ["lvl"] = "42-44", + }, + [61395] = { + ["coords"] = { + [1] = { 20.7, 65.5, 5179, 300 }, + [2] = { 19.8, 64.6, 5179, 300 }, + [3] = { 21, 64.1, 5179, 300 }, + [4] = { 18.8, 62.2, 5179, 300 }, + [5] = { 18.8, 61.2, 5179, 300 }, + [6] = { 19.5, 60.2, 5179, 300 }, + [7] = { 19.4, 46.5, 5179, 300 }, + [8] = { 19.6, 45.3, 5179, 300 }, + [9] = { 18.8, 45.3, 5179, 300 }, + [10] = { 24.5, 45, 5179, 300 }, + [11] = { 20.8, 45, 5179, 300 }, + [12] = { 25.1, 44.7, 5179, 300 }, + [13] = { 21.3, 44.3, 5179, 300 }, + [14] = { 22, 44.3, 5179, 300 }, + [15] = { 24.7, 43.9, 5179, 300 }, + [16] = { 18, 43.9, 5179, 300 }, + [17] = { 23.4, 43.6, 5179, 300 }, + [18] = { 24.1, 43.6, 5179, 300 }, + [19] = { 24.3, 43.1, 5179, 300 }, + [20] = { 24.2, 42.9, 5179, 300 }, + [21] = { 21.9, 42.6, 5179, 300 }, + [22] = { 22.7, 42.6, 5179, 300 }, + [23] = { 21.3, 42, 5179, 300 }, + [24] = { 21.5, 41.9, 5179, 300 }, + }, + ["lvl"] = "39-40", + }, + [61396] = { + ["coords"] = { + [1] = { 22.2, 64.3, 5179, 300 }, + [2] = { 21.1, 63.6, 5179, 300 }, + [3] = { 21.9, 62.6, 5179, 300 }, + [4] = { 20.4, 61.2, 5179, 300 }, + [5] = { 20, 60.8, 5179, 300 }, + [6] = { 19.9, 60.6, 5179, 300 }, + [7] = { 19.1, 59, 5179, 300 }, + [8] = { 13.6, 56.7, 5179, 300 }, + [9] = { 15.2, 56.3, 5179, 300 }, + [10] = { 19.4, 56.1, 5179, 300 }, + [11] = { 16.9, 55.8, 5179, 300 }, + [12] = { 18.9, 54.5, 5179, 300 }, + [13] = { 18.7, 46.2, 5179, 300 }, + [14] = { 24.6, 44.5, 5179, 300 }, + [15] = { 18.1, 44.3, 5179, 300 }, + [16] = { 23.6, 43.9, 5179, 300 }, + [17] = { 22.6, 43.8, 5179, 300 }, + [18] = { 22, 43.4, 5179, 300 }, + }, + ["lvl"] = "44", + }, + [61397] = { + ["coords"] = { + [1] = { 54, 56.7, 5179, 300 }, + [2] = { 55.2, 56.6, 5179, 300 }, + [3] = { 57.1, 54.2, 5179, 300 }, + [4] = { 54.6, 53.7, 5179, 300 }, + [5] = { 54.5, 53.6, 5179, 300 }, + [6] = { 55.5, 53.5, 5179, 300 }, + [7] = { 58.1, 51.4, 5179, 300 }, + [8] = { 53.8, 51.2, 5179, 300 }, + [9] = { 54.4, 50.8, 5179, 300 }, + [10] = { 55.9, 50.7, 5179, 300 }, + [11] = { 53.8, 50.4, 5179, 300 }, + [12] = { 54.4, 49.9, 5179, 300 }, + [13] = { 52.6, 49.8, 5179, 300 }, + }, + ["lvl"] = "41-42", + }, + [61398] = { + ["coords"] = { + [1] = { 66.6, 65.7, 5179, 300 }, + }, + ["lvl"] = "42", + }, + [61399] = { + ["coords"] = { + [1] = { 27.1, 38.4, 5179, 300 }, + [2] = { 26.9, 38.1, 5179, 300 }, + [3] = { 28.4, 36.4, 5179, 300 }, + [4] = { 27.3, 36.3, 5179, 300 }, + [5] = { 31.6, 36.2, 5179, 300 }, + [6] = { 29.2, 36.2, 5179, 300 }, + [7] = { 29.8, 36.1, 5179, 300 }, + [8] = { 26.8, 35.6, 5179, 300 }, + [9] = { 30.3, 35.6, 5179, 300 }, + [10] = { 29.9, 35.5, 5179, 300 }, + [11] = { 31.5, 35.4, 5179, 300 }, + [12] = { 30.6, 35.4, 5179, 300 }, + [13] = { 29.3, 35.3, 5179, 300 }, + [14] = { 28.9, 35.1, 5179, 300 }, + [15] = { 32.2, 35.1, 5179, 300 }, + [16] = { 29.7, 34.8, 5179, 300 }, + [17] = { 27.1, 34.6, 5179, 300 }, + [18] = { 26.3, 34.3, 5179, 300 }, + [19] = { 27.8, 34.2, 5179, 300 }, + [20] = { 29.4, 34.2, 5179, 300 }, + [21] = { 31.2, 33.9, 5179, 300 }, + [22] = { 29.7, 33.7, 5179, 300 }, + [23] = { 28, 33.7, 5179, 300 }, + [24] = { 25.1, 33.6, 5179, 300 }, + [25] = { 29, 33.3, 5179, 300 }, + [26] = { 27.1, 32.9, 5179, 300 }, + [27] = { 26.5, 32.1, 5179, 300 }, + [28] = { 28.4, 31.1, 5179, 300 }, + [29] = { 29.3, 31, 5179, 300 }, + }, + ["lvl"] = "39-40", + }, + [61400] = { + ["coords"] = { + [1] = { 20.1, 65.5, 5179, 300 }, + [2] = { 19.1, 65, 5179, 300 }, + [3] = { 20.3, 64.5, 5179, 300 }, + [4] = { 20.5, 64.4, 5179, 300 }, + [5] = { 21.6, 63.7, 5179, 300 }, + [6] = { 18.7, 63.7, 5179, 300 }, + [7] = { 18.8, 62.8, 5179, 300 }, + [8] = { 21.4, 60.7, 5179, 300 }, + [9] = { 20.9, 60, 5179, 300 }, + [10] = { 20.4, 59.8, 5179, 300 }, + [11] = { 20.2, 59.8, 5179, 300 }, + [12] = { 19.8, 59.5, 5179, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [61401] = { + ["coords"] = { + [1] = { 54, 89.8, 5179, 300 }, + [2] = { 52.4, 89.8, 5179, 300 }, + [3] = { 50.8, 88.5, 5179, 300 }, + [4] = { 56.2, 88.3, 5179, 300 }, + [5] = { 54.2, 87.3, 5179, 300 }, + [6] = { 51.5, 86.1, 5179, 300 }, + [7] = { 55.1, 85.1, 5179, 300 }, + [8] = { 52.7, 84.9, 5179, 300 }, + [9] = { 57.4, 83.4, 5179, 300 }, + [10] = { 51.3, 83.3, 5179, 300 }, + [11] = { 49.8, 82.3, 5179, 300 }, + [12] = { 57, 79.4, 5179, 300 }, + [13] = { 49.4, 79.2, 5179, 300 }, + [14] = { 52.4, 78.1, 5179, 300 }, + [15] = { 51.1, 77.9, 5179, 300 }, + [16] = { 50.1, 75.2, 5179, 300 }, + }, + ["lvl"] = "43-45", + }, + [61402] = { + ["coords"] = { + [1] = { 53.6, 99.8, 5179, 300 }, + [2] = { 56.5, 97.9, 5179, 300 }, + [3] = { 60.7, 97.7, 5179, 300 }, + [4] = { 54.8, 97.4, 5179, 300 }, + [5] = { 50.4, 96.8, 5179, 300 }, + [6] = { 53.5, 94.9, 5179, 300 }, + [7] = { 56.6, 94.6, 5179, 300 }, + [8] = { 58.4, 93.5, 5179, 300 }, + [9] = { 64.7, 93.1, 5179, 300 }, + [10] = { 52.7, 92.6, 5179, 300 }, + [11] = { 63.2, 92.6, 5179, 300 }, + [12] = { 57.6, 92.1, 5179, 300 }, + [13] = { 61.9, 91.6, 5179, 300 }, + [14] = { 59.9, 91.5, 5179, 300 }, + [15] = { 56.9, 91.5, 5179, 300 }, + [16] = { 65.4, 90.1, 5179, 300 }, + [17] = { 65, 87.5, 5179, 300 }, + [18] = { 58.7, 86.7, 5179, 300 }, + }, + ["lvl"] = "44-45", + }, + [61403] = { + ["coords"] = { + [1] = { 58.6, 98.5, 5179, 300 }, + [2] = { 51.9, 97.7, 5179, 300 }, + [3] = { 57.9, 96.5, 5179, 300 }, + [4] = { 60.7, 95.3, 5179, 300 }, + [5] = { 58.8, 94.9, 5179, 300 }, + [6] = { 53.2, 94.6, 5179, 300 }, + [7] = { 51.5, 94.5, 5179, 300 }, + [8] = { 53.7, 94.2, 5179, 300 }, + [9] = { 55.4, 93, 5179, 300 }, + [10] = { 50.5, 91.8, 5179, 300 }, + [11] = { 56, 91.6, 5179, 300 }, + [12] = { 64.2, 90.7, 5179, 300 }, + [13] = { 58.2, 89.9, 5179, 300 }, + [14] = { 49.7, 89.4, 5179, 300 }, + [15] = { 62.7, 88.9, 5179, 300 }, + [16] = { 59.5, 88.5, 5179, 300 }, + }, + ["lvl"] = "44-46", + }, + [61404] = { + ["coords"] = { + [1] = { 31.3, 78.3, 5179, 300 }, + }, + ["lvl"] = "47", + }, + [61405] = { + ["coords"] = { + [1] = { 41.6, 45.1, 5179, 300 }, + }, + ["lvl"] = "47", + ["rnk"] = "1", + }, + [61406] = { + ["coords"] = { + [1] = { 59.4, 93.7, 5179, 300 }, + }, + ["lvl"] = "47", + }, + [61407] = { + ["coords"] = { + [1] = { 40.1, 86.5, 5179, 300 }, + [2] = { 35.8, 86.3, 5179, 300 }, + [3] = { 42.8, 85.6, 5179, 300 }, + [4] = { 32.8, 85.1, 5179, 300 }, + [5] = { 40.6, 84.3, 5179, 300 }, + [6] = { 37, 83.7, 5179, 300 }, + [7] = { 32, 82.7, 5179, 300 }, + [8] = { 41.1, 81.8, 5179, 300 }, + [9] = { 32.4, 81.6, 5179, 300 }, + [10] = { 33, 81.3, 5179, 300 }, + [11] = { 36.9, 80.8, 5179, 300 }, + [12] = { 34.3, 80.7, 5179, 300 }, + [13] = { 30.9, 80.6, 5179, 300 }, + [14] = { 39.6, 80.3, 5179, 300 }, + [15] = { 37.8, 79.1, 5179, 300 }, + [16] = { 33.4, 78.9, 5179, 300 }, + }, + ["lvl"] = "43-44", + }, + [61408] = { + ["coords"] = { + [1] = { 41.6, 87.6, 5179, 300 }, + [2] = { 38.6, 86.2, 5179, 300 }, + [3] = { 38.8, 84.2, 5179, 300 }, + [4] = { 42.1, 83.7, 5179, 300 }, + [5] = { 31.4, 81.8, 5179, 300 }, + [6] = { 31.7, 81.2, 5179, 300 }, + [7] = { 38.1, 81.1, 5179, 300 }, + [8] = { 35.5, 80.8, 5179, 300 }, + [9] = { 32.9, 80.5, 5179, 300 }, + [10] = { 32.2, 80.2, 5179, 300 }, + [11] = { 35.1, 79.3, 5179, 300 }, + [12] = { 19.9, 72.4, 5179, 300 }, + [13] = { 18.3, 69.1, 5179, 300 }, + [14] = { 16.7, 67.1, 5179, 300 }, + [15] = { 16.2, 65, 5179, 300 }, + [16] = { 14.8, 64.7, 5179, 300 }, + [17] = { 14.7, 61.7, 5179, 300 }, + [18] = { 11, 52.2, 5179, 300 }, + [19] = { 11, 47.1, 5179, 300 }, + [20] = { 11.2, 40.4, 5179, 300 }, + [21] = { 11.9, 38.7, 5179, 300 }, + [22] = { 11.9, 35.3, 5179, 300 }, + [23] = { 14, 30, 5179, 300 }, + [24] = { 15.5, 28.4, 5179, 300 }, + [25] = { 14.5, 28.2, 5179, 300 }, + }, + ["lvl"] = "43-44", + }, + [61409] = { + ["coords"] = { + [1] = { 48, 87.4, 5179, 300 }, + [2] = { 49.3, 86.5, 5179, 300 }, + [3] = { 47.2, 86.3, 5179, 300 }, + [4] = { 44, 85.8, 5179, 300 }, + [5] = { 48.2, 84.9, 5179, 300 }, + [6] = { 47, 84.3, 5179, 300 }, + [7] = { 44, 84.2, 5179, 300 }, + [8] = { 45.9, 84.2, 5179, 300 }, + [9] = { 48.8, 84.1, 5179, 300 }, + [10] = { 46.1, 82.6, 5179, 300 }, + [11] = { 44.9, 82.3, 5179, 300 }, + [12] = { 39.5, 81.9, 5179, 300 }, + [13] = { 39.1, 81.9, 5179, 300 }, + [14] = { 46.7, 81.5, 5179, 300 }, + [15] = { 48, 81.3, 5179, 300 }, + [16] = { 39.4, 81.1, 5179, 300 }, + [17] = { 43.4, 80.8, 5179, 300 }, + [18] = { 46.3, 80.4, 5179, 300 }, + [19] = { 44.5, 80.3, 5179, 300 }, + [20] = { 41.9, 79.7, 5179, 300 }, + [21] = { 43, 79.2, 5179, 300 }, + }, + ["lvl"] = "42-43", + }, + [61416] = { + ["coords"] = { + [1] = { 28.9, 75.2, 33, 300 }, + }, + ["lvl"] = "44", + }, + [61417] = { + ["coords"] = { + [1] = { 52.7, 52, 5208, 18000 }, + [2] = { 44, 48.6, 5208, 18000 }, + [3] = { 49.3, 43.9, 5208, 18000 }, + [4] = { 47.1, 43.3, 5208, 18000 }, + [5] = { 43.7, 41.7, 5208, 18000 }, + [6] = { 43.5, 38.7, 5208, 18000 }, + [7] = { 41.3, 37.9, 5208, 18000 }, + [8] = { 38.6, 36.5, 5208, 18000 }, + [9] = { 38.7, 35.8, 5208, 18000 }, + [10] = { 39.1, 35.5, 5208, 18000 }, + [11] = { 27.5, 26.8, 5208, 18000 }, + [12] = { 28, 21.1, 5208, 18000 }, + [13] = { 25.3, 21, 5208, 18000 }, + [14] = { 25.5, 20.8, 5208, 18000 }, + [15] = { 25.4, 20.6, 5208, 18000 }, + }, + ["lvl"] = "47-48", + ["rnk"] = "1", + }, + [61418] = { + ["coords"] = { + [1] = { 25.7, 21.7, 5208, 604800 }, + }, + ["lvl"] = "49", + ["rnk"] = "1", + }, + [61419] = { + ["coords"] = { + [1] = { 76.6, 40.6, 5208, 604800 }, + }, + ["lvl"] = "44", + ["rnk"] = "1", + }, + [61420] = { + ["coords"] = { + [1] = { 85.5, 63, 5208, 604800 }, + }, + ["lvl"] = "44", + ["rnk"] = "1", + }, + [61421] = { + ["coords"] = { + [1] = { 77.5, 85.3, 5208, 604800 }, + }, + ["lvl"] = "46", + ["rnk"] = "1", + }, + [61422] = { + ["coords"] = { + [1] = { 57.9, 82.4, 5208, 604800 }, + }, + ["lvl"] = "46", + ["rnk"] = "1", + }, + [61423] = { + ["coords"] = { + [1] = { 38.8, 36, 5208, 604800 }, + }, + ["lvl"] = "47", + ["rnk"] = "1", + }, + [61424] = { + ["coords"] = { + [1] = { 79, 65.5, 5208, 18000 }, + [2] = { 79.2, 64.4, 5208, 18000 }, + [3] = { 73.9, 60.2, 5208, 18000 }, + [4] = { 84.4, 59.3, 5208, 18000 }, + [5] = { 85.4, 59, 5208, 18000 }, + [6] = { 84.5, 57.9, 5208, 18000 }, + [7] = { 74.4, 56.8, 5208, 18000 }, + [8] = { 84.6, 56.7, 5208, 18000 }, + [9] = { 83.7, 54, 5208, 18000 }, + [10] = { 84.2, 50, 5208, 18000 }, + [11] = { 84.4, 49.2, 5208, 18000 }, + [12] = { 77.4, 49.1, 5208, 18000 }, + [13] = { 77, 48.5, 5208, 18000 }, + [14] = { 80, 48.1, 5208, 18000 }, + [15] = { 79.5, 46.7, 5208, 18000 }, + }, + ["lvl"] = "44", + ["rnk"] = "1", + }, + [61425] = { + ["coords"] = { + [1] = { 82.9, 65.7, 5208, 18000 }, + [2] = { 78.8, 64.8, 5208, 18000 }, + [3] = { 85.6, 63.3, 5208, 18000 }, + [4] = { 74.5, 51.9, 5208, 18000 }, + }, + ["lvl"] = "43", + ["rnk"] = "1", + }, + [61426] = { + ["coords"] = { + [1] = { 79.4, 64.8, 5208, 18000 }, + [2] = { 81.4, 63.9, 5208, 18000 }, + [3] = { 75.7, 59.8, 5208, 18000 }, + [4] = { 74.8, 57.3, 5208, 18000 }, + [5] = { 74.4, 57.2, 5208, 18000 }, + [6] = { 85, 54.2, 5208, 18000 }, + [7] = { 85, 53.1, 5208, 18000 }, + [8] = { 77.1, 49.3, 5208, 18000 }, + [9] = { 84.8, 49.3, 5208, 18000 }, + [10] = { 80.1, 48.9, 5208, 18000 }, + [11] = { 80.5, 48.7, 5208, 18000 }, + }, + ["lvl"] = "41-42", + ["rnk"] = "1", + }, + [61427] = { + ["coords"] = { + [1] = { 89.2, 77.4, 331, 300 }, + }, + ["lvl"] = "34", + }, + [61428] = { + ["coords"] = { + [1] = { 24.4, 33.1, 1, 300 }, + [2] = { 75, 41.9, 721, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "28", + }, + [61429] = { + ["coords"] = { + [1] = { 24.6, 28.9, 1, 300 }, + [2] = { 76.3, 5.1, 721, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "28", + }, + [61430] = { + ["coords"] = { + [1] = { 24.9, 31.9, 1, 300 }, + [2] = { 78.9, 31.4, 721, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "29", + }, + [61431] = { + ["coords"] = { + [1] = { 26.2, 35.1, 1, 300 }, + [2] = { 26.4, 34.9, 1, 300 }, + [3] = { 25.4, 33.4, 1, 300 }, + [4] = { 25.6, 33.1, 1, 300 }, + [5] = { 24.9, 32.5, 1, 300 }, + [6] = { 25.6, 31.8, 1, 300 }, + [7] = { 24.6, 30.9, 1, 300 }, + [8] = { 24.8, 30.7, 1, 300 }, + [9] = { 23.3, 29.3, 1, 300 }, + [10] = { 23.7, 28.7, 1, 300 }, + [11] = { 23.8, 28.6, 1, 300 }, + [12] = { 24.3, 28.4, 1, 300 }, + [13] = { 90.2, 58.8, 721, 300 }, + [14] = { 91.7, 57.4, 721, 300 }, + [15] = { 83.1, 43.8, 721, 300 }, + [16] = { 85.2, 41.6, 721, 300 }, + [17] = { 79.1, 36.1, 721, 300 }, + [18] = { 85.2, 29.9, 721, 300 }, + [19] = { 76.7, 22.3, 721, 300 }, + [20] = { 78, 21, 721, 300 }, + [21] = { 65.6, 8.7, 721, 300 }, + [22] = { 68.7, 3.8, 721, 300 }, + [23] = { 69.6, 2.9, 721, 300 }, + [24] = { 73.7, 0.5, 721, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [61432] = { + ["coords"] = { + [1] = { 25.4, 33, 1, 300 }, + [2] = { 26.3, 31, 1, 300 }, + [3] = { 24.7, 30.8, 1, 300 }, + [4] = { 23.7, 28.4, 1, 300 }, + [5] = { 83.2, 40.7, 721, 300 }, + [6] = { 91.2, 23, 721, 300 }, + [7] = { 77.4, 21.9, 721, 300 }, + [8] = { 69, 0.5, 721, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [61433] = { + ["coords"] = { + [1] = { 27.5, 30.3, 1, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "29", + }, + [61434] = { + ["coords"] = { + [1] = { 24.2, 33.1, 1, 300 }, + [2] = { 72.7, 41.3, 721, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [61435] = { + ["coords"] = { + [1] = { 24.2, 31.5, 1, 300 }, + [2] = { 73.5, 27.9, 721, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "36", + }, + [61436] = { + ["coords"] = { + [1] = { 24.1, 33.5, 1, 300 }, + [2] = { 72.3, 44.6, 721, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "57", + }, + [61437] = { + ["coords"] = { + [1] = { 26.7, 31.2, 1, 300 }, + [2] = { 95.1, 25, 721, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "57", + }, + [61438] = { + ["coords"] = { + [1] = { 23.5, 28.4, 1, 300 }, + [2] = { 67.3, 1.3, 721, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "18", + }, + [61439] = { + ["coords"] = { + [1] = { 23.7, 28.2, 1, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "28", + }, + [61440] = { + ["coords"] = { + [1] = { 25.2, 30.7, 1, 300 }, + [2] = { 81.5, 20.3, 721, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "29", + }, + [61441] = { + ["coords"] = { + [1] = { 25.2, 31.6, 1, 300 }, + [2] = { 81.5, 28.8, 721, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [61442] = { + ["coords"] = { + [1] = { 24.1, 31.8, 1, 300 }, + [2] = { 72.6, 30, 721, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "32", + }, + [61443] = { + ["coords"] = { + [1] = { 25.4, 30.6, 1, 300 }, + [2] = { 83.7, 19.9, 721, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "32", + }, + [61444] = { + ["coords"] = { + [1] = { 25.3, 30.3, 1, 300 }, + [2] = { 82.5, 17.5, 721, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "34", + }, + [61445] = { + ["coords"] = { + [1] = { 25.4, 30.7, 1, 300 }, + [2] = { 83.5, 21.1, 721, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "36", + }, + [61446] = { + ["coords"] = { + [1] = { 23.9, 30.7, 1, 300 }, + [2] = { 70.6, 21, 721, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "38", + }, + [61447] = { + ["coords"] = { + [1] = { 32.9, 75.6, 5179, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "36", + }, + [61448] = { + ["coords"] = { + [1] = { 44.1, 43.1, 5179, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "38", + }, + [61449] = { + ["coords"] = { + [1] = { 45.7, 43.7, 5179, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [61450] = { + ["coords"] = { + [1] = { 44.1, 43.3, 5179, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "41", + }, + [61451] = { + ["coords"] = {}, + ["lvl"] = "41-42", + }, + [61452] = { + ["coords"] = { + [1] = { 42.6, 43.4, 5179, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "42", + }, + [61453] = { + ["coords"] = {}, + ["lvl"] = "42-43", + }, + [61454] = { + ["coords"] = { + [1] = { 45.7, 46, 5179, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "44", + }, + [61455] = { + ["coords"] = { + [1] = { 33.1, 76, 5179, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "44", + }, + [61456] = { + ["coords"] = { + [1] = { 23, 29, 1, 300 }, + [2] = { 63.1, 6.2, 721, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [61457] = { + ["coords"] = { + [1] = { 25.3, 43.7, 5179, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [61458] = { + ["coords"] = { + [1] = { 58.5, 68, 5179, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [61459] = { + ["coords"] = { + [1] = { 46.6, 46.8, 5179, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [61460] = { + ["coords"] = { + [1] = { 33.1, 76, 5179, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "46", + }, + [61461] = { + ["coords"] = { + [1] = { 24.2, 27.8, 1, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [61462] = { + ["coords"] = {}, + ["lvl"] = "41-42", + ["rnk"] = "1", + }, + [61463] = { + ["coords"] = { + [1] = { 32.4, 46, 1, 300 }, + [2] = { 34.1, 45.8, 1, 300 }, + [3] = { 35, 45, 1, 300 }, + [4] = { 33.7, 44.7, 1, 300 }, + [5] = { 32.1, 44, 1, 300 }, + [6] = { 35.7, 42.9, 1, 300 }, + [7] = { 33, 42.4, 1, 300 }, + [8] = { 31.8, 41.9, 1, 300 }, + [9] = { 34.7, 40.4, 1, 300 }, + [10] = { 37.2, 39.8, 1, 300 }, + [11] = { 33.3, 39.3, 1, 300 }, + [12] = { 35.1, 38, 1, 300 }, + }, + ["lvl"] = "8-10", + }, + [61464] = { + ["coords"] = { + [1] = { 28.6, 30, 1, 300 }, + [2] = { 27.5, 29.7, 1, 300 }, + [3] = { 29.4, 29.6, 1, 300 }, + [4] = { 27.8, 29.2, 1, 300 }, + [5] = { 32.7, 28.6, 1, 300 }, + [6] = { 29.9, 28.2, 1, 300 }, + [7] = { 28, 28.1, 1, 300 }, + [8] = { 32.3, 28.1, 1, 300 }, + [9] = { 29.9, 27.6, 1, 300 }, + [10] = { 31.9, 27.5, 1, 300 }, + [11] = { 30, 27.5, 1, 300 }, + [12] = { 27.6, 27.3, 1, 300 }, + [13] = { 33.3, 27.2, 1, 300 }, + [14] = { 30.8, 27.1, 1, 300 }, + [15] = { 28.8, 27, 1, 300 }, + [16] = { 32.7, 26.7, 1, 300 }, + [17] = { 29.8, 26.4, 1, 300 }, + [18] = { 30.9, 26.2, 1, 300 }, + [19] = { 33.3, 25.9, 1, 300 }, + [20] = { 33, 25.9, 1, 300 }, + [21] = { 32.7, 25.4, 1, 300 }, + [22] = { 33.1, 25.3, 1, 300 }, + [23] = { 30.6, 25.2, 1, 300 }, + [24] = { 31.9, 24.9, 1, 300 }, + [25] = { 30.9, 24.2, 1, 300 }, + [26] = { 32.2, 24.1, 1, 300 }, + [27] = { 32, 23.6, 1, 300 }, + [28] = { 32.3, 23.5, 1, 300 }, + [29] = { 30.2, 23.4, 1, 300 }, + [30] = { 31.1, 22.8, 1, 300 }, + }, + ["lvl"] = "10", + }, + [61465] = { + ["coords"] = { + [1] = { 29, 30.7, 1, 300 }, + [2] = { 28.2, 30.7, 1, 300 }, + [3] = { 27.9, 30.5, 1, 300 }, + [4] = { 29.5, 30.4, 1, 300 }, + [5] = { 28.1, 29.7, 1, 300 }, + [6] = { 30, 29.2, 1, 300 }, + [7] = { 27.4, 29, 1, 300 }, + [8] = { 29.4, 28.7, 1, 300 }, + [9] = { 32, 28.5, 1, 300 }, + [10] = { 33.3, 28.2, 1, 300 }, + [11] = { 30.5, 28.1, 1, 300 }, + [12] = { 29.2, 27.9, 1, 300 }, + [13] = { 31.3, 27.8, 1, 300 }, + [14] = { 32.7, 27.6, 1, 300 }, + [15] = { 28.2, 27.4, 1, 300 }, + [16] = { 32.3, 26.9, 1, 300 }, + [17] = { 29.2, 26.9, 1, 300 }, + [18] = { 28.1, 26.6, 1, 300 }, + [19] = { 33.4, 26.5, 1, 300 }, + [20] = { 32.9, 26.4, 1, 300 }, + [21] = { 30.8, 26.3, 1, 300 }, + [22] = { 30.3, 25.9, 1, 300 }, + [23] = { 32.3, 25.8, 1, 300 }, + [24] = { 31.2, 25.2, 1, 300 }, + [25] = { 33, 25, 1, 300 }, + [26] = { 30.5, 24.5, 1, 300 }, + [27] = { 32.3, 24.4, 1, 300 }, + [28] = { 31.7, 24.3, 1, 300 }, + [29] = { 30.1, 24.2, 1, 300 }, + [30] = { 31.3, 23.8, 1, 300 }, + [31] = { 30.6, 22.8, 1, 300 }, + }, + ["lvl"] = "11-12", + }, + [61466] = { + ["coords"] = { + [1] = { 32.8, 24.7, 1, 300 }, + }, + ["lvl"] = "14", + }, + [61467] = { + ["coords"] = { + [1] = { 68.8, 49, 1537, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [61468] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [61469] = { + ["coords"] = {}, + ["lvl"] = "22", + }, + [61470] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [61471] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [61472] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [61473] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [61474] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [61475] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [61476] = { + ["coords"] = {}, + ["lvl"] = "62", + }, + [61477] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [61478] = { + ["coords"] = {}, + ["lvl"] = "48", + }, + [61479] = { + ["coords"] = {}, + ["lvl"] = "52", + }, + [61480] = { + ["coords"] = { + [1] = { 33, 62.3, 215, 300 }, + }, + ["lvl"] = "58", + }, + [61481] = { + ["coords"] = { + [1] = { 53.8, 64.2, 5179, 300 }, + }, + ["lvl"] = "45", + }, + [61482] = { + ["coords"] = { + [1] = { 27.9, 41, 1, 300 }, + }, + ["lvl"] = "13", + }, + [61483] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [61484] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [61485] = { + ["coords"] = { + [1] = { 84.8, 29.1, 616, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "63", + ["rnk"] = "1", + }, + [61486] = { + ["coords"] = { + [1] = { 28.4, 74.8, 33, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [61487] = { + ["coords"] = { + [1] = { 65.9, 53.2, 616, 108000 }, + }, + ["lvl"] = "60", + ["rnk"] = "4", + }, + [61488] = { + ["coords"] = { + [1] = { 23, 37.1, 616, 108000 }, + }, + ["lvl"] = "60", + ["rnk"] = "2", + }, + [61489] = { + ["coords"] = { + [1] = { 75.3, 54, 1, 300 }, + }, + ["lvl"] = "13", + }, + [61490] = { + ["coords"] = { + [1] = { 42.2, 69.2, 46, 120 }, + }, + ["lvl"] = "61", + ["rnk"] = "2", + }, + [61491] = { + ["coords"] = { + [1] = { 81.8, 29.2, 616, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "58", + ["rnk"] = "1", + }, + [61492] = { + ["coords"] = { + [1] = { 82, 30.2, 616, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "58", + ["rnk"] = "1", + }, + [61493] = { + ["coords"] = { + [1] = { 82.1, 30.7, 616, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "58", + ["rnk"] = "1", + }, + [61494] = { + ["coords"] = { + [1] = { 82, 27, 616, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [61495] = { + ["coords"] = { + [1] = { 82.4, 27.2, 616, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [61496] = { + ["coords"] = { + [1] = { 51.6, 30.2, 618, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "54", + }, + [61497] = { + ["coords"] = { + [1] = { 85.2, 28.8, 616, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "58", + }, + [61498] = { + ["coords"] = { + [1] = { 53.7, 39.8, 5024, 86400 }, + }, + ["lvl"] = "47", + ["rnk"] = "4", + }, + [61499] = { + ["coords"] = { + [1] = { 15.7, 68.5, 85, 108000 }, + }, + ["lvl"] = "17", + ["rnk"] = "4", + }, + [61500] = { + ["coords"] = { + [1] = { 56.7, 48.3, 5121, 108000 }, + }, + ["lvl"] = "58", + ["rnk"] = "4", + }, + [61501] = { + ["coords"] = { + [1] = { 39.3, 47.4, 5121, 108000 }, + }, + ["lvl"] = "56", + ["rnk"] = "4", + }, + [61502] = { + ["coords"] = { + [1] = { 44.1, 13.5, 45, 108000 }, + [2] = { 22.8, 74.9, 47, 108000 }, + }, + ["lvl"] = "35", + ["rnk"] = "4", + }, + [61503] = { + ["coords"] = { + [1] = { 28.8, 36.8, 406, 86400 }, + }, + ["lvl"] = "24", + ["rnk"] = "4", + }, + [61504] = { + ["coords"] = { + [1] = { 72.3, 77.8, 406, 108000 }, + }, + ["lvl"] = "18", + ["rnk"] = "4", + }, + [61505] = { + ["coords"] = { + [1] = { 85, 29.6, 616, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "58", + }, + [61506] = { + ["coords"] = { + [1] = { 73, 38.9, 616, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [61507] = { + ["coords"] = { + [1] = { 73.4, 38.6, 616, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "57", + }, + [61508] = { + ["coords"] = { + [1] = { 73.3, 39.7, 616, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "57", + }, + [61509] = { + ["coords"] = { + [1] = { 72.9, 39.5, 616, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [61510] = { + ["coords"] = { + [1] = { 61.9, 57.5, 616, 300 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [61511] = { + ["coords"] = { + [1] = { 63.7, 52.1, 616, 300 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [61512] = { + ["coords"] = { + [1] = { 84.8, 29.3, 616, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "62", + ["rnk"] = "1", + }, + [61513] = { + ["coords"] = { + [1] = { 50.2, 48.2, 5179, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [61514] = { + ["coords"] = {}, + ["lvl"] = "44", + }, + [61515] = { + ["coords"] = { + [1] = { 55.6, 21.3, 409, 86400 }, + }, + ["lvl"] = "51", + ["rnk"] = "2", + }, + [61516] = { + ["coords"] = { + [1] = { 66.6, 69.2, 408, 43200 }, + }, + ["lvl"] = "51", + ["rnk"] = "4", + }, + [61517] = { + ["coords"] = { + [1] = { 43.2, 28.7, 409, 108000 }, + }, + ["lvl"] = "51", + ["rnk"] = "4", + }, + [61518] = { + ["coords"] = { + [1] = { 27.6, 69.6, 408, 108000 }, + }, + ["lvl"] = "56", + ["rnk"] = "2", + }, + [61519] = { + ["coords"] = { + [1] = { 82.6, 28.3, 616, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [61520] = { + ["coords"] = { + [1] = { 83.6, 28, 616, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "58", + }, + [61521] = { + ["coords"] = { + [1] = { 82, 32.9, 616, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "57", + }, + [61522] = { + ["coords"] = { + [1] = { 82.8, 28.5, 616, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "58", + }, + [61523] = { + ["coords"] = { + [1] = { 82.8, 29.2, 616, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [61524] = { + ["coords"] = { + [1] = { 84.8, 28.7, 616, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [61525] = { + ["coords"] = { + [1] = { 81.7, 29.3, 616, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "56", + }, + [61526] = { + ["coords"] = { + [1] = { 82.4, 31.1, 616, 300 }, + [2] = { 84.8, 29.6, 616, 300 }, + [3] = { 84.7, 29.2, 616, 300 }, + [4] = { 84.4, 29.1, 616, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "62", + ["rnk"] = "1", + }, + [61527] = { + ["coords"] = { + [1] = { 82.5, 31.8, 616, 300 }, + [2] = { 82.2, 31, 616, 300 }, + [3] = { 83.2, 29.7, 616, 300 }, + [4] = { 84.9, 29.6, 616, 300 }, + [5] = { 84.4, 29.4, 616, 300 }, + [6] = { 83.2, 29.3, 616, 300 }, + [7] = { 84.3, 29.2, 616, 300 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [61528] = { + ["coords"] = { + [1] = { 82, 35.2, 616, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [61529] = { + ["coords"] = { + [1] = { 81.7, 30.3, 616, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "62", + ["rnk"] = "1", + }, + [61530] = { + ["coords"] = { + [1] = { 85.3, 29.1, 616, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [61531] = { + ["coords"] = { + [1] = { 82, 32.1, 616, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "58", + }, + [61532] = { + ["coords"] = { + [1] = { 81.4, 29.2, 616, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [61533] = { + ["coords"] = { + [1] = { 9.8, 44.3, 616, 172800 }, + }, + ["lvl"] = "61", + ["rnk"] = "2", + }, + [61534] = { + ["coords"] = { + [1] = { 44.2, 22, 5179, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "42", + }, + [61535] = { + ["coords"] = { + [1] = { 44, 22.5, 5179, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "42", + }, + [61536] = { + ["coords"] = { + [1] = { 43.8, 22.1, 5179, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [61537] = { + ["coords"] = { + [1] = { 43.2, 91.4, 130, 300 }, + [2] = { 44.1, 21.8, 5179, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [61538] = { + ["coords"] = { + [1] = { 43, 91.4, 130, 300 }, + [2] = { 43.5, 91.4, 130, 300 }, + [3] = { 43.7, 91.2, 130, 300 }, + [4] = { 44.2, 23, 5179, 300 }, + [5] = { 43.9, 22.8, 5179, 300 }, + [6] = { 44.3, 22.7, 5179, 300 }, + [7] = { 44.7, 22.4, 5179, 300 }, + [8] = { 43.9, 22.3, 5179, 300 }, + [9] = { 43.9, 21.9, 5179, 300 }, + [10] = { 44.4, 21.8, 5179, 300 }, + [11] = { 44.6, 21.7, 5179, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "38", + }, + [61539] = { + ["coords"] = { + [1] = { 57.7, 68.1, 5179, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "38", + }, + [61540] = { + ["coords"] = { + [1] = { 59.5, 72.6, 5179, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [61541] = { + ["coords"] = { + [1] = { 71.3, 52.6, 15, 300 }, + [2] = { 69.3, 52.5, 15, 300 }, + [3] = { 71.3, 52.3, 15, 300 }, + [4] = { 72.3, 51.3, 15, 300 }, + [5] = { 70.2, 51.1, 15, 300 }, + [6] = { 68.4, 51.1, 15, 300 }, + [7] = { 68.3, 51, 15, 300 }, + [8] = { 72.3, 50.9, 15, 300 }, + [9] = { 72.1, 50.8, 15, 300 }, + [10] = { 72.2, 50.8, 15, 300 }, + [11] = { 62, 73.7, 5179, 300 }, + [12] = { 57.4, 72.4, 5179, 300 }, + [13] = { 58.7, 69.4, 5179, 300 }, + [14] = { 58.2, 68.8, 5179, 300 }, + [15] = { 58, 68.5, 5179, 300 }, + [16] = { 33.5, 55, 5179, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [61542] = { + ["coords"] = { + [1] = { 20.3, 60.8, 5179, 300 }, + }, + ["lvl"] = "45", + }, + [61543] = { + ["coords"] = { + [1] = { 18.2, 44, 5179, 300 }, + }, + ["lvl"] = "45", + }, + [61544] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [61545] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [61546] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [61547] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [61548] = { + ["coords"] = { + [1] = { 57.1, 38.4, 5179, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [61549] = { + ["coords"] = { + [1] = { 62, 74, 5179, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [61550] = { + ["coords"] = { + [1] = { 66.7, 80.2, 5179, 43200 }, + }, + ["lvl"] = "45", + ["rnk"] = "4", + }, + [61551] = { + ["coords"] = { + [1] = { 47.9, 57.4, 5179, 86400 }, + }, + ["lvl"] = "43", + ["rnk"] = "2", + }, + [61552] = { + ["coords"] = { + [1] = { 45.6, 78, 5179, 43200 }, + }, + ["lvl"] = "44", + ["rnk"] = "4", + }, + [61553] = { + ["coords"] = { + [1] = { 30.2, 50.1, 5179, 86400 }, + }, + ["lvl"] = "40", + ["rnk"] = "2", + }, + [61554] = { + ["coords"] = { + [1] = { 47.4, 92.2, 130, 43200 }, + [2] = { 48.9, 22.7, 5179, 43200 }, + }, + ["lvl"] = "40", + ["rnk"] = "4", + }, + [61555] = { + ["coords"] = { + [1] = { 54.3, 56.3, 5179, 43200 }, + }, + ["lvl"] = "44", + ["rnk"] = "4", + }, + [61556] = { + ["coords"] = { + [1] = { 61.7, 20.1, 616, 120 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [61557] = { + ["coords"] = { + [1] = { 68.3, 51, 15, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [61558] = { + ["coords"] = { + [1] = { 39.8, 37.1, 5179, 86400 }, + }, + ["lvl"] = "55", + ["rnk"] = "2", + }, + [61559] = { + ["coords"] = { + [1] = { 50.8, 96.7, 130, 300 }, + [2] = { 52.9, 27.9, 5179, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "41", + }, + [61560] = { + ["coords"] = { + [1] = { 87.3, 71, 616, 300 }, + [2] = { 50.2, 83, 618, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "58", + }, + [61561] = { + ["coords"] = { + [1] = { 64.8, 77.1, 616, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [61562] = { + ["coords"] = { + [1] = { 64.5, 77.1, 616, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [61563] = { + ["coords"] = { + [1] = { 54.9, 85.4, 616, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [61564] = { + ["coords"] = { + [1] = { 66.5, 31.9, 618, 300 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [61565] = { + ["coords"] = { + [1] = { 19.8, 43.9, 616, 300 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [61566] = { + ["coords"] = { + [1] = { 66.5, 65.9, 5179, 300 }, + }, + ["lvl"] = "45", + }, + [61567] = { + ["coords"] = { + [1] = { 16.5, 96, 5602, 300 }, + }, + ["lvl"] = "40", + }, + [61568] = { + ["coords"] = { + [1] = { 40.9, 79.3, 41, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [61569] = { + ["coords"] = { + [1] = { 46.5, 13.7, 28, 300 }, + [2] = { 18.8, 95.9, 5225, 300 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [61570] = { + ["coords"] = { + [1] = { 23, 74.7, 5179, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "62", + ["rnk"] = "1", + }, + [61571] = { + ["coords"] = { + [1] = { 59, 71.4, 3457, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "58", + }, + [61572] = { + ["coords"] = { + [1] = { 80.7, 58.2, 139, 300 }, + [2] = { 39.9, 37.5, 4012, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "58", + }, + [61573] = { + ["coords"] = { + [1] = { 66.9, 24, 440, 300 }, + }, + ["lvl"] = "41", + }, + [61574] = { + ["coords"] = { + [1] = { 50.8, 39.5, 5179, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "44", + }, + [61575] = { + ["coords"] = { + [1] = { 26.3, 18.7, 5204, 604800 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [61576] = { + ["coords"] = { + [1] = { 60.3, 75.3, 139, 300 }, + [2] = { 14.9, 58.3, 4012, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "56", + }, + [61577] = { + ["coords"] = { + [1] = { 80.4, 31.7, 616, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "63", + ["rnk"] = "1", + }, + [61578] = { + ["coords"] = { + [1] = { 96.9, 80.3, 616, 300 }, + [2] = { 54.5, 87.2, 618, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "61", + }, + [61579] = { + ["coords"] = { + [1] = { 54.5, 85.3, 616, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "58", + }, + [61580] = { + ["coords"] = { + [1] = { 80.2, 71.4, 616, 300 }, + [2] = { 47, 83.2, 618, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [61581] = { + ["coords"] = { + [1] = { 97, 80.2, 616, 300 }, + [2] = { 54.5, 87.2, 618, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "61", + }, + [61582] = { + ["coords"] = { + [1] = { 54.8, 83, 616, 300 }, + [2] = { 30.2, 80.8, 616, 300 }, + [3] = { 49.8, 70, 616, 300 }, + [4] = { 37.3, 64.4, 616, 300 }, + [5] = { 70.4, 41.8, 616, 300 }, + [6] = { 75, 41.8, 616, 300 }, + [7] = { 76, 39.7, 616, 300 }, + [8] = { 35.7, 39.2, 616, 300 }, + [9] = { 78.4, 33.7, 616, 300 }, + [10] = { 82.9, 31.4, 616, 300 }, + [11] = { 81.5, 28.6, 616, 300 }, + [12] = { 40.2, 28.4, 616, 300 }, + [13] = { 81.5, 28.4, 616, 300 }, + [14] = { 80.2, 27.4, 616, 300 }, + [15] = { 76.3, 26.6, 616, 300 }, + [16] = { 79.7, 23.6, 616, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [61583] = { + ["coords"] = { + [1] = { 88.3, 45.9, 357, 300 }, + [2] = { 6, 17.9, 400, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [61584] = { + ["coords"] = { + [1] = { 89.1, 43.6, 357, 300 }, + [2] = { 7.1, 14.3, 400, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [61585] = { + ["coords"] = { + [1] = { 88.9, 45.7, 357, 300 }, + [2] = { 7, 17.7, 400, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [61586] = { + ["coords"] = { + [1] = { 83.4, 33.5, 357, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "2", + }, + [61587] = { + ["coords"] = { + [1] = { 88.7, 44, 357, 300 }, + [2] = { 6.6, 15, 400, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "2", + }, + [61588] = { + ["coords"] = { + [1] = { 82, 62.4, 357, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [61589] = { + ["coords"] = { + [1] = { 82, 62.2, 357, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [61590] = { + ["coords"] = { + [1] = { 81.4, 62.7, 357, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [61591] = { + ["coords"] = { + [1] = { 51.4, 82, 361, 300 }, + [2] = { 7.4, 99.7, 616, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [61592] = { + ["coords"] = { + [1] = { 59.4, 23, 361, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [61593] = { + ["coords"] = { + [1] = { 48.2, 21.9, 361, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [61594] = { + ["coords"] = { + [1] = { 56.6, 11.3, 5121, 300 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [61595] = { + ["coords"] = { + [1] = { 58.1, 73.2, 493, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [61596] = { + ["coords"] = { + [1] = { 82, 66.2, 357, 300 }, + [2] = { 83.1, 65.4, 357, 300 }, + [3] = { 82.6, 65.3, 357, 300 }, + [4] = { 81.4, 65.2, 357, 300 }, + [5] = { 82.2, 65.2, 357, 300 }, + [6] = { 82.2, 64.5, 357, 300 }, + [7] = { 83.4, 64.1, 357, 300 }, + [8] = { 82.6, 63.3, 357, 300 }, + [9] = { 83.6, 63, 357, 300 }, + [10] = { 82.9, 62.4, 357, 300 }, + [11] = { 83, 61.6, 357, 300 }, + [12] = { 83.7, 60.8, 357, 300 }, + [13] = { 82.3, 59.7, 357, 300 }, + [14] = { 84.2, 59.2, 357, 300 }, + [15] = { 81.7, 58.4, 357, 300 }, + [16] = { 82.8, 57.9, 357, 300 }, + [17] = { 83.5, 50.1, 357, 300 }, + [18] = { 84.5, 49.6, 357, 300 }, + [19] = { 83.3, 48.9, 357, 300 }, + }, + ["lvl"] = "42-44", + }, + [61597] = { + ["coords"] = { + [1] = { 82, 65.4, 357, 300 }, + [2] = { 82, 65, 357, 300 }, + [3] = { 82.8, 64.6, 357, 300 }, + [4] = { 81.4, 64.4, 357, 300 }, + [5] = { 83.2, 62.8, 357, 300 }, + [6] = { 82.9, 62.8, 357, 300 }, + [7] = { 82, 60.2, 357, 300 }, + [8] = { 82.9, 60.2, 357, 300 }, + [9] = { 83.7, 57.2, 357, 300 }, + [10] = { 82.8, 56.4, 357, 300 }, + [11] = { 83.4, 55.4, 357, 300 }, + [12] = { 83.9, 50, 357, 300 }, + }, + ["lvl"] = "42-44", + }, + [61598] = { + ["coords"] = { + [1] = { 66.7, 39.3, 357, 300 }, + [2] = { 91.3, 90.3, 2557, 300 }, + }, + ["lvl"] = "45", + }, + [61599] = { + ["coords"] = { + [1] = { 84, 38.4, 357, 300 }, + [2] = { 84.7, 37.6, 357, 300 }, + [3] = { 84.4, 37.1, 357, 300 }, + [4] = { 83.6, 35.5, 357, 300 }, + [5] = { 84, 35.2, 357, 300 }, + [6] = { 85, 34.9, 357, 300 }, + [7] = { 83.2, 34.8, 357, 300 }, + [8] = { 84.3, 34.8, 357, 300 }, + [9] = { 83.7, 34, 357, 300 }, + [10] = { 83.1, 33.7, 357, 300 }, + [11] = { 85, 33.4, 357, 300 }, + [12] = { 83.9, 32.9, 357, 300 }, + [13] = { 84.6, 32.3, 357, 300 }, + }, + ["lvl"] = "42-44", + }, + [61600] = { + ["coords"] = { + [1] = { 89.6, 47.1, 357, 300 }, + [2] = { 89.3, 46.3, 357, 300 }, + [3] = { 89.3, 46.2, 357, 300 }, + [4] = { 89.1, 45.9, 357, 300 }, + [5] = { 88.3, 45.8, 357, 300 }, + [6] = { 88.4, 45.8, 357, 300 }, + [7] = { 88.6, 45.5, 357, 300 }, + [8] = { 88.5, 45.4, 357, 300 }, + [9] = { 89.8, 45.4, 357, 300 }, + [10] = { 89.2, 45.2, 357, 300 }, + [11] = { 88.4, 44.8, 357, 300 }, + [12] = { 89.4, 44.7, 357, 300 }, + [13] = { 88.9, 44.7, 357, 300 }, + [14] = { 89.2, 44.7, 357, 300 }, + [15] = { 88.7, 43.5, 357, 300 }, + [16] = { 8, 19.9, 400, 300 }, + [17] = { 7.5, 18.6, 400, 300 }, + [18] = { 7.5, 18.5, 400, 300 }, + [19] = { 7.2, 18, 400, 300 }, + [20] = { 5.9, 17.8, 400, 300 }, + [21] = { 6.1, 17.7, 400, 300 }, + [22] = { 6.5, 17.4, 400, 300 }, + [23] = { 6.2, 17.2, 400, 300 }, + [24] = { 8.3, 17.1, 400, 300 }, + [25] = { 7.3, 16.8, 400, 300 }, + [26] = { 6, 16.3, 400, 300 }, + [27] = { 7.7, 16.1, 400, 300 }, + [28] = { 6.8, 16, 400, 300 }, + [29] = { 7.3, 16, 400, 300 }, + [30] = { 6.6, 14.1, 400, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [61601] = { + ["coords"] = { + [1] = { 60.8, 38.9, 47, 300 }, + }, + ["lvl"] = "48", + }, + [61602] = { + ["coords"] = { + [1] = { 49.9, 29, 5179, 300 }, + }, + ["lvl"] = "43", + }, + [61603] = { + ["coords"] = { + [1] = { 49.9, 28.9, 5179, 300 }, + }, + ["lvl"] = "41", + }, + [61604] = { + ["coords"] = { + [1] = { 27.3, 21.5, 5208, 604800 }, + [2] = { 28.8, 20.9, 5208, 604800 }, + }, + ["lvl"] = "41", + ["rnk"] = "1", + }, + [61605] = { + ["coords"] = { + [1] = { 29, 22.3, 5208, 604800 }, + }, + ["lvl"] = "47", + ["rnk"] = "1", + }, + [61606] = { + ["coords"] = { + [1] = { 96.6, 80, 616, 300 }, + [2] = { 54.4, 87.1, 618, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "59-60", + ["rnk"] = "1", + }, + [61607] = { + ["coords"] = { + [1] = { 85, 28.7, 616, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [61608] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [61609] = { + ["coords"] = { + [1] = { 53.9, 32, 616, 300 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [61610] = { + ["coords"] = { + [1] = { 40.3, 77.3, 41, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [61611] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "50", + }, + [61612] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "50", + }, + [61613] = { + ["coords"] = { + [1] = { 53.7, 29.8, 361, 300 }, + [2] = { 11.5, 6.2, 616, 300 }, + }, + ["lvl"] = "60", + }, + [61614] = { + ["coords"] = { + [1] = { 77.4, 49, 1519, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + ["rnk"] = "1", + }, + [61615] = { + ["coords"] = { + [1] = { 19.7, 59.7, 5179, 300 }, + }, + ["lvl"] = "44", + }, + [61616] = { + ["coords"] = { + [1] = { 31.6, 49.1, 33, 300 }, + }, + ["lvl"] = "58", + }, + [61617] = { + ["coords"] = { + [1] = { 31.8, 48.4, 33, 300 }, + }, + ["lvl"] = "58", + }, + [61618] = { + ["coords"] = { + [1] = { 31.8, 48.4, 33, 300 }, + }, + ["lvl"] = "58", + }, + [61619] = { + ["coords"] = { + [1] = { 31.9, 48.5, 33, 300 }, + }, + ["lvl"] = "58", + }, + [61620] = { + ["coords"] = { + [1] = { 31.7, 48.4, 33, 300 }, + }, + ["lvl"] = "58", + }, + [61621] = { + ["coords"] = { + [1] = { 65, 47.9, 1519, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [61622] = { + ["coords"] = { + [1] = { 59.1, 24, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [61623] = { + ["coords"] = { + [1] = { 34.1, 10.9, 17, 120 }, + [2] = { 79.4, 63.9, 406, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [61624] = { + ["coords"] = { + [1] = { 34.1, 72.1, 1519, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "12", + }, + [61625] = { + ["coords"] = { + [1] = { 40.9, 65.9, 12, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [61626] = { + ["coords"] = { + [1] = { 34.1, 56.5, 5179, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [61627] = { + ["coords"] = { + [1] = { 50.8, 40, 12, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [61628] = { + ["coords"] = { + [1] = { 34.1, 71.2, 1519, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [61629] = { + ["coords"] = { + [1] = { 33.5, 71.8, 1519, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [61630] = { + ["coords"] = { + [1] = { 33.6, 71.9, 1519, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [61631] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "20", + }, + [61632] = { + ["coords"] = { + [1] = { 56.3, 75.2, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "12", + }, + [61633] = { + ["coords"] = { + [1] = { 54.3, 41.2, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [61634] = { + ["coords"] = { + [1] = { 40.7, 68.4, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "5", + }, + [61635] = { + ["coords"] = { + [1] = { 48.8, 45.6, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [61636] = { + ["coords"] = { + [1] = { 78.8, 78.8, 47, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [61637] = { + ["coords"] = { + [1] = { 47.5, 47, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [61638] = { + ["coords"] = { + [1] = { 31.4, 48.8, 33, 300 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [61639] = { + ["coords"] = { + [1] = { 31.6, 49, 33, 300 }, + }, + ["lvl"] = "55", + }, + [61640] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "48", + }, + [61641] = { + ["coords"] = { + [1] = { 61.2, 36.9, 618, 300 }, + }, + ["lvl"] = "42", + }, + [61642] = { + ["coords"] = { + [1] = { 61.2, 36.9, 618, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [61643] = { + ["coords"] = { + [1] = { 50.6, 97.3, 130, 300 }, + [2] = { 43.5, 90.6, 130, 300 }, + [3] = { 74.2, 30.1, 3457, 604800 }, + [4] = { 74.9, 29.7, 3457, 604800 }, + [5] = { 36.9, 76.5, 5179, 300 }, + [6] = { 42.9, 76.1, 5179, 300 }, + [7] = { 33.3, 76, 5179, 300 }, + [8] = { 58.8, 75.6, 5179, 300 }, + [9] = { 23, 74.9, 5179, 300 }, + [10] = { 60.9, 74.8, 5179, 300 }, + [11] = { 57.2, 74.1, 5179, 300 }, + [12] = { 52.1, 73.9, 5179, 300 }, + [13] = { 59.1, 72.8, 5179, 300 }, + [14] = { 57.9, 72.4, 5179, 300 }, + [15] = { 52.7, 72.4, 5179, 300 }, + [16] = { 59.5, 71.8, 5179, 300 }, + [17] = { 25.4, 71.2, 5179, 300 }, + [18] = { 57.9, 70, 5179, 300 }, + [19] = { 44.6, 69.7, 5179, 300 }, + [20] = { 58, 68.9, 5179, 300 }, + [21] = { 58.1, 68.9, 5179, 300 }, + [22] = { 42.3, 67.6, 5179, 300 }, + [23] = { 41.9, 67.3, 5179, 300 }, + [24] = { 66.2, 66.1, 5179, 300 }, + [25] = { 21.6, 65.1, 5179, 300 }, + [26] = { 55.8, 65, 5179, 300 }, + [27] = { 65.9, 65, 5179, 300 }, + [28] = { 43.5, 64.6, 5179, 300 }, + [29] = { 61.7, 63.9, 5179, 300 }, + [30] = { 35.9, 63.8, 5179, 300 }, + [31] = { 46.1, 63.7, 5179, 300 }, + [32] = { 20.9, 62.4, 5179, 300 }, + [33] = { 20, 62.4, 5179, 300 }, + [34] = { 38.3, 62.4, 5179, 300 }, + [35] = { 19.9, 62.1, 5179, 300 }, + [36] = { 50, 61.1, 5179, 300 }, + [37] = { 55.1, 61.1, 5179, 300 }, + [38] = { 61.2, 60.1, 5179, 300 }, + [39] = { 40, 60, 5179, 300 }, + [40] = { 53.6, 58.8, 5179, 300 }, + [41] = { 46.9, 58.1, 5179, 300 }, + [42] = { 63.9, 57.4, 5179, 300 }, + [43] = { 45.2, 57.4, 5179, 300 }, + [44] = { 49, 56.8, 5179, 300 }, + [45] = { 34.1, 56.3, 5179, 300 }, + [46] = { 47.9, 55, 5179, 300 }, + [47] = { 48.1, 54.9, 5179, 300 }, + [48] = { 48.3, 54.9, 5179, 300 }, + [49] = { 33.3, 54.3, 5179, 300 }, + [50] = { 33.2, 54.3, 5179, 300 }, + [51] = { 33.1, 54.3, 5179, 300 }, + [52] = { 49, 53.8, 5179, 300 }, + [53] = { 30.4, 52.9, 5179, 300 }, + [54] = { 36, 51.5, 5179, 300 }, + [55] = { 33.3, 51.5, 5179, 300 }, + [56] = { 36.1, 50.4, 5179, 300 }, + [57] = { 30.6, 50.3, 5179, 300 }, + [58] = { 46.4, 49.4, 5179, 300 }, + [59] = { 48.9, 49.2, 5179, 300 }, + [60] = { 31, 48.5, 5179, 300 }, + [61] = { 53.4, 48.4, 5179, 300 }, + [62] = { 30.1, 48, 5179, 300 }, + [63] = { 34.9, 47.2, 5179, 300 }, + [64] = { 33.4, 46.4, 5179, 300 }, + [65] = { 46.8, 46.4, 5179, 300 }, + [66] = { 49.3, 46.4, 5179, 300 }, + [67] = { 51.5, 45.8, 5179, 300 }, + [68] = { 35.9, 45.7, 5179, 300 }, + [69] = { 35, 45.5, 5179, 300 }, + [70] = { 50.9, 44.9, 5179, 300 }, + [71] = { 20.2, 44.9, 5179, 300 }, + [72] = { 18.6, 44.4, 5179, 300 }, + [73] = { 36.9, 44.2, 5179, 300 }, + [74] = { 55.6, 40.3, 5179, 300 }, + [75] = { 56.5, 40.3, 5179, 300 }, + [76] = { 57.1, 39.6, 5179, 300 }, + [77] = { 50.9, 39.4, 5179, 300 }, + [78] = { 48.4, 39.4, 5179, 300 }, + [79] = { 50.2, 39.2, 5179, 300 }, + [80] = { 55.8, 38, 5179, 300 }, + [81] = { 47.8, 36.2, 5179, 300 }, + [82] = { 47.2, 36.1, 5179, 300 }, + [83] = { 31.9, 35.9, 5179, 300 }, + [84] = { 32.4, 35.7, 5179, 300 }, + [85] = { 31.3, 35.1, 5179, 300 }, + [86] = { 14.1, 34.9, 5179, 300 }, + [87] = { 14.7, 34.5, 5179, 300 }, + [88] = { 14, 33.6, 5179, 300 }, + [89] = { 44.4, 32.6, 5179, 300 }, + [90] = { 52.4, 30.3, 5179, 300 }, + [91] = { 52.6, 30.1, 5179, 300 }, + [92] = { 28.3, 30.1, 5179, 300 }, + [93] = { 28.2, 30, 5179, 300 }, + [94] = { 28.2, 29.9, 5179, 300 }, + [95] = { 36, 29.3, 5179, 300 }, + [96] = { 52.2, 29.2, 5179, 300 }, + [97] = { 49.9, 28.9, 5179, 300 }, + [98] = { 52.1, 28.8, 5179, 300 }, + [99] = { 52.6, 28.7, 5179, 300 }, + [100] = { 52.3, 28.4, 5179, 300 }, + [101] = { 28.1, 28.3, 5179, 300 }, + [102] = { 52.2, 28, 5179, 300 }, + [103] = { 34.7, 26.8, 5179, 300 }, + [104] = { 46.9, 25, 5179, 300 }, + [105] = { 44.5, 20.9, 5179, 300 }, + [106] = { 72.1, 84, 5208, 36000 }, + [107] = { 56.8, 83.4, 5208, 36000 }, + [108] = { 80.1, 82, 5208, 36000 }, + [109] = { 68.8, 79.8, 5208, 36000 }, + [110] = { 77.9, 76.3, 5208, 36000 }, + [111] = { 64, 75.7, 5208, 36000 }, + [112] = { 81.1, 75.2, 5208, 36000 }, + [113] = { 61.8, 73.7, 5208, 36000 }, + [114] = { 72.7, 70.1, 5208, 36000 }, + [115] = { 62.1, 65.2, 5208, 36000 }, + [116] = { 86.4, 64.5, 5208, 36000 }, + [117] = { 80, 63.6, 5208, 36000 }, + [118] = { 76.4, 62.9, 5208, 36000 }, + [119] = { 83.6, 62.3, 5208, 36000 }, + [120] = { 83.6, 62.1, 5208, 36000 }, + [121] = { 59.7, 59.9, 5208, 36000 }, + [122] = { 73.7, 56.3, 5208, 36000 }, + [123] = { 54.1, 50.7, 5208, 36000 }, + [124] = { 79, 49.9, 5208, 36000 }, + [125] = { 85.8, 49.4, 5208, 36000 }, + [126] = { 82.5, 49.3, 5208, 36000 }, + [127] = { 74.8, 48.7, 5208, 36000 }, + [128] = { 77.4, 48, 5208, 36000 }, + [129] = { 72, 47.7, 5208, 36000 }, + [130] = { 80.7, 46.5, 5208, 36000 }, + [131] = { 84.2, 45.4, 5208, 36000 }, + [132] = { 84.5, 44.6, 5208, 36000 }, + [133] = { 82, 42.9, 5208, 36000 }, + [134] = { 76.6, 42.2, 5208, 36000 }, + [135] = { 74, 40.4, 5208, 36000 }, + [136] = { 47.1, 38.4, 5208, 36000 }, + [137] = { 27.4, 27.1, 5208, 36000 }, + [138] = { 27.7, 27, 5208, 36000 }, + [139] = { 26.2, 25.8, 5208, 36000 }, + [140] = { 28.7, 25, 5208, 36000 }, + [141] = { 24.6, 23.5, 5208, 36000 }, + [142] = { 24.6, 23.2, 5208, 36000 }, + [143] = { 29.7, 22.8, 5208, 36000 }, + [144] = { 29.6, 22.5, 5208, 36000 }, + [145] = { 27.9, 20.5, 5208, 36000 }, + [146] = { 27, 19.6, 5208, 36000 }, + }, + ["lvl"] = "1", + }, + [61644] = { + ["coords"] = { + [1] = { 24.2, 31.4, 1, 300 }, + [2] = { 72.7, 26.6, 721, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [61645] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "45", + ["rnk"] = "1", + }, + [61646] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "39", + }, + [61647] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "42", + }, + [61648] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "32", + }, + [61649] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "2", + }, + [61650] = { + ["coords"] = { + [1] = { 72.5, 58.4, 331, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "32", + }, + [61651] = { + ["coords"] = { + [1] = { 73, 58.1, 331, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "34", + }, + [61652] = { + ["coords"] = { + [1] = { 73, 56.8, 331, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "37", + }, + [61653] = { + ["coords"] = { + [1] = { 73.2, 55.8, 331, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "37", + }, + [61654] = { + ["coords"] = { + [1] = { 72.3, 57.7, 331, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "31", + }, + [61655] = { + ["coords"] = { + [1] = { 72.2, 56.6, 331, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "39", + }, + [61656] = { + ["coords"] = { + [1] = { 99.9, 53.5, 14, 300 }, + [2] = { 99.6, 51.3, 14, 300 }, + [3] = { 44.2, 61.6, 5536, 300 }, + [4] = { 52.2, 61.5, 5536, 300 }, + [5] = { 51.6, 58.5, 5536, 300 }, + [6] = { 55, 57.9, 5536, 300 }, + [7] = { 56.5, 56.1, 5536, 300 }, + [8] = { 50.3, 55.3, 5536, 300 }, + [9] = { 39.4, 52.6, 5536, 300 }, + [10] = { 42.8, 52.4, 5536, 300 }, + [11] = { 42.2, 50.3, 5536, 300 }, + [12] = { 48.7, 50.1, 5536, 300 }, + [13] = { 38.6, 47.9, 5536, 300 }, + [14] = { 53.6, 47.2, 5536, 300 }, + [15] = { 51.5, 45.8, 5536, 300 }, + [16] = { 40.5, 44.3, 5536, 300 }, + [17] = { 45.5, 41.8, 5536, 300 }, + [18] = { 49.8, 39.8, 5536, 300 }, + [19] = { 48.9, 39.1, 5536, 300 }, + [20] = { 50.6, 38.1, 5536, 300 }, + [21] = { 45, 37.3, 5536, 300 }, + [22] = { 48.3, 33.8, 5536, 300 }, + [23] = { 44.7, 31.2, 5536, 300 }, + }, + ["lvl"] = "4-6", + }, + [61657] = { + ["coords"] = { + [1] = { 57, 72.7, 5536, 300 }, + [2] = { 58.1, 72.7, 5536, 300 }, + [3] = { 56.2, 72.1, 5536, 300 }, + [4] = { 57.4, 71, 5536, 300 }, + [5] = { 55.4, 67.5, 5536, 300 }, + [6] = { 57.7, 64.8, 5536, 300 }, + [7] = { 55.6, 62.6, 5536, 300 }, + [8] = { 59, 55.5, 5536, 300 }, + [9] = { 59.1, 55.1, 5536, 300 }, + [10] = { 57, 53, 5536, 300 }, + [11] = { 60.3, 51.7, 5536, 300 }, + [12] = { 60.9, 50.3, 5536, 300 }, + [13] = { 59.8, 49.5, 5536, 300 }, + [14] = { 59.3, 48.8, 5536, 300 }, + [15] = { 60.6, 48.5, 5536, 300 }, + [16] = { 61.6, 47.9, 5536, 300 }, + [17] = { 60.7, 47.7, 5536, 300 }, + [18] = { 55.6, 44.4, 5536, 300 }, + [19] = { 55.6, 43.5, 5536, 300 }, + [20] = { 54.6, 43.4, 5536, 300 }, + [21] = { 58.6, 41.8, 5536, 300 }, + [22] = { 63.6, 39.8, 5536, 300 }, + [23] = { 58.5, 39.2, 5536, 300 }, + [24] = { 61.6, 38.8, 5536, 300 }, + [25] = { 63.6, 37.3, 5536, 300 }, + [26] = { 63.9, 34.8, 5536, 300 }, + [27] = { 63, 32.8, 5536, 300 }, + [28] = { 61.9, 31.4, 5536, 300 }, + [29] = { 63, 31, 5536, 300 }, + [30] = { 51.7, 26.8, 5536, 300 }, + [31] = { 57.1, 26.7, 5536, 300 }, + [32] = { 54.2, 24, 5536, 300 }, + }, + ["lvl"] = "5-7", + }, + [61658] = { + ["coords"] = { + [1] = { 45.1, 46.4, 5536, 300 }, + [2] = { 52.8, 44.5, 5536, 300 }, + [3] = { 51.5, 42.8, 5536, 300 }, + [4] = { 55, 42.5, 5536, 300 }, + [5] = { 53.6, 42.2, 5536, 300 }, + [6] = { 42.5, 40.9, 5536, 300 }, + [7] = { 47.5, 40.8, 5536, 300 }, + [8] = { 45.9, 39.2, 5536, 300 }, + [9] = { 52.2, 39.1, 5536, 300 }, + [10] = { 41.6, 38.6, 5536, 300 }, + [11] = { 43.2, 37.5, 5536, 300 }, + [12] = { 48.2, 36.8, 5536, 300 }, + [13] = { 46.1, 36.2, 5536, 300 }, + [14] = { 45, 34.5, 5536, 300 }, + [15] = { 43.9, 33.9, 5536, 300 }, + }, + ["lvl"] = "5-6", + }, + [61659] = { + ["coords"] = { + [1] = { 59.8, 52.4, 5536, 300 }, + [2] = { 63, 51.4, 5536, 300 }, + [3] = { 58.9, 48.1, 5536, 300 }, + [4] = { 63.2, 47.1, 5536, 300 }, + [5] = { 57.6, 47.1, 5536, 300 }, + [6] = { 59.1, 44.6, 5536, 300 }, + [7] = { 57.2, 43.4, 5536, 300 }, + [8] = { 46.2, 31.5, 5536, 300 }, + [9] = { 52, 23.5, 5536, 300 }, + [10] = { 53.7, 21.6, 5536, 300 }, + [11] = { 55.4, 21.4, 5536, 300 }, + }, + ["lvl"] = "7-8", + }, + [61660] = { + ["coords"] = { + [1] = { 99.4, 53, 14, 300 }, + [2] = { 99.9, 52.3, 14, 300 }, + [3] = { 99.7, 50.1, 14, 300 }, + [4] = { 43.6, 75, 5536, 300 }, + [5] = { 50, 58.2, 5536, 300 }, + [6] = { 52.2, 57.5, 5536, 300 }, + [7] = { 49.2, 57.3, 5536, 300 }, + [8] = { 54.2, 56.3, 5536, 300 }, + [9] = { 48.2, 54, 5536, 300 }, + [10] = { 47.3, 52, 5536, 300 }, + [11] = { 38.2, 51.6, 5536, 300 }, + [12] = { 43.6, 50.4, 5536, 300 }, + [13] = { 39.3, 50.2, 5536, 300 }, + [14] = { 41.4, 49.5, 5536, 300 }, + [15] = { 50.4, 48.3, 5536, 300 }, + [16] = { 43.3, 48.2, 5536, 300 }, + [17] = { 48.3, 47.8, 5536, 300 }, + [18] = { 40.8, 47.4, 5536, 300 }, + [19] = { 38.9, 45.4, 5536, 300 }, + [20] = { 43.7, 43.8, 5536, 300 }, + [21] = { 39.5, 42.3, 5536, 300 }, + }, + ["lvl"] = "4-6", + }, + [61661] = { + ["coords"] = { + [1] = { 46.9, 76.6, 5536, 300 }, + [2] = { 45.5, 74.7, 5536, 300 }, + [3] = { 48.6, 73.5, 5536, 300 }, + [4] = { 56.3, 51.7, 5536, 300 }, + }, + ["lvl"] = "6-7", + }, + [61662] = { + ["coords"] = { + [1] = { 55.9, 75.6, 5536, 300 }, + [2] = { 51.3, 73.3, 5536, 300 }, + [3] = { 53.2, 72.2, 5536, 300 }, + [4] = { 58.2, 71.3, 5536, 300 }, + [5] = { 56.7, 70.4, 5536, 300 }, + [6] = { 56.4, 68.7, 5536, 300 }, + [7] = { 59.6, 68.1, 5536, 300 }, + [8] = { 56.5, 65.5, 5536, 300 }, + [9] = { 54.9, 64.7, 5536, 300 }, + [10] = { 54.9, 60.8, 5536, 300 }, + [11] = { 53.2, 60.1, 5536, 300 }, + [12] = { 56.4, 58.2, 5536, 300 }, + }, + ["lvl"] = "7-8", + }, + [61663] = { + ["coords"] = { + [1] = { 66.1, 54.4, 5536, 300 }, + [2] = { 67.7, 52.8, 5536, 300 }, + [3] = { 66.9, 50.7, 5536, 300 }, + [4] = { 68.2, 50.5, 5536, 300 }, + [5] = { 68.3, 50.2, 5536, 300 }, + [6] = { 68.2, 49, 5536, 300 }, + [7] = { 66.9, 48.7, 5536, 300 }, + [8] = { 68.3, 43.9, 5536, 300 }, + [9] = { 66.3, 42.9, 5536, 300 }, + [10] = { 67.9, 41.6, 5536, 300 }, + [11] = { 66, 38.9, 5536, 300 }, + [12] = { 68.3, 38.5, 5536, 300 }, + [13] = { 66.1, 37.6, 5536, 300 }, + [14] = { 69.5, 37, 5536, 300 }, + [15] = { 67.7, 34.9, 5536, 300 }, + [16] = { 67.7, 31.5, 5536, 300 }, + [17] = { 68.1, 28.2, 5536, 300 }, + [18] = { 64.7, 27.9, 5536, 300 }, + [19] = { 63.3, 26.6, 5536, 300 }, + [20] = { 65.4, 26.4, 5536, 300 }, + [21] = { 66.2, 23.6, 5536, 300 }, + }, + ["lvl"] = "8-9", + }, + [61664] = { + ["coords"] = { + [1] = { 64.1, 54.7, 5536, 300 }, + [2] = { 66.9, 52.6, 5536, 300 }, + [3] = { 65.7, 51.8, 5536, 300 }, + [4] = { 68.8, 51.8, 5536, 300 }, + [5] = { 67.7, 51.3, 5536, 300 }, + [6] = { 66.5, 50.6, 5536, 300 }, + [7] = { 68.5, 50, 5536, 300 }, + [8] = { 49.7, 49.7, 5536, 300 }, + [9] = { 52.2, 48.9, 5536, 300 }, + [10] = { 65.9, 48.8, 5536, 300 }, + [11] = { 67, 48.5, 5536, 300 }, + [12] = { 67.1, 46.8, 5536, 300 }, + [13] = { 55.9, 46.6, 5536, 300 }, + }, + ["lvl"] = "5-7", + }, + [61665] = { + ["coords"] = { + [1] = { 57.9, 41.3, 5536, 300 }, + [2] = { 59.3, 39.7, 5536, 300 }, + [3] = { 61.4, 38.8, 5536, 300 }, + [4] = { 58.4, 38.6, 5536, 300 }, + [5] = { 57.6, 37.7, 5536, 300 }, + [6] = { 59.4, 36.9, 5536, 300 }, + [7] = { 57.1, 35.5, 5536, 300 }, + [8] = { 62.3, 34.6, 5536, 300 }, + [9] = { 64, 32.9, 5536, 300 }, + [10] = { 65.6, 29.8, 5536, 300 }, + [11] = { 66.5, 28.5, 5536, 300 }, + [12] = { 69.4, 28.4, 5536, 300 }, + [13] = { 65.3, 26, 5536, 300 }, + [14] = { 63.3, 24.8, 5536, 300 }, + [15] = { 64.5, 22.3, 5536, 300 }, + }, + ["lvl"] = "9-10", + }, + [61666] = { + ["coords"] = { + [1] = { 57.1, 40.1, 5536, 300 }, + [2] = { 60, 38.6, 5536, 300 }, + [3] = { 62.1, 37.9, 5536, 300 }, + [4] = { 67, 37.8, 5536, 300 }, + [5] = { 58.3, 37, 5536, 300 }, + [6] = { 62.6, 36.3, 5536, 300 }, + [7] = { 63.3, 34.5, 5536, 300 }, + [8] = { 57.8, 33.8, 5536, 300 }, + [9] = { 66, 33, 5536, 300 }, + [10] = { 60.4, 32, 5536, 300 }, + [11] = { 64.9, 31.8, 5536, 300 }, + [12] = { 62, 27.8, 5536, 300 }, + [13] = { 67.8, 27.7, 5536, 300 }, + [14] = { 62.9, 26.4, 5536, 300 }, + [15] = { 65.6, 26.1, 5536, 300 }, + }, + ["lvl"] = "9-10", + }, + [61667] = { + ["coords"] = { + [1] = { 65.5, 74.5, 5536, 300 }, + [2] = { 64.4, 70.3, 5536, 300 }, + [3] = { 61.7, 69.7, 5536, 300 }, + [4] = { 68.5, 61.5, 5536, 300 }, + [5] = { 69.5, 55.4, 5536, 300 }, + [6] = { 68.4, 54.9, 5536, 300 }, + [7] = { 69.7, 54, 5536, 300 }, + [8] = { 70.8, 48.7, 5536, 300 }, + [9] = { 72.3, 48.3, 5536, 300 }, + [10] = { 73.3, 44.5, 5536, 300 }, + [11] = { 72.7, 33.9, 5536, 300 }, + [12] = { 74.2, 30.9, 5536, 300 }, + [13] = { 72.5, 28.9, 5536, 300 }, + [14] = { 70.4, 24.7, 5536, 300 }, + [15] = { 67.7, 20.7, 5536, 300 }, + [16] = { 64.4, 19.5, 5536, 300 }, + [17] = { 65.2, 17.1, 5536, 300 }, + }, + ["lvl"] = "7-8", + }, + [61668] = { + ["coords"] = { + [1] = { 55.9, 60.2, 5536, 300 }, + [2] = { 57.4, 60.1, 5536, 300 }, + [3] = { 59, 59.8, 5536, 300 }, + [4] = { 60.6, 59.7, 5536, 300 }, + [5] = { 56.8, 59.6, 5536, 300 }, + [6] = { 61.3, 59.2, 5536, 300 }, + [7] = { 59.3, 58.8, 5536, 300 }, + [8] = { 60.1, 58.1, 5536, 300 }, + [9] = { 59, 57.6, 5536, 300 }, + [10] = { 61.3, 57, 5536, 300 }, + [11] = { 56.8, 56.1, 5536, 300 }, + [12] = { 52.9, 54.7, 5536, 300 }, + [13] = { 55, 54.5, 5536, 300 }, + [14] = { 51.4, 53.5, 5536, 300 }, + [15] = { 50.2, 53.1, 5536, 300 }, + [16] = { 58.3, 52.2, 5536, 300 }, + [17] = { 55, 51.6, 5536, 300 }, + [18] = { 49.5, 51.5, 5536, 300 }, + [19] = { 50.9, 51.5, 5536, 300 }, + [20] = { 57.1, 50.4, 5536, 300 }, + [21] = { 54.5, 48.5, 5536, 300 }, + [22] = { 56.1, 48.4, 5536, 300 }, + }, + ["lvl"] = "5-6", + }, + [61669] = { + ["coords"] = { + [1] = { 56, 60, 5536, 300 }, + [2] = { 56.3, 59.1, 5536, 300 }, + [3] = { 61.1, 58.3, 5536, 300 }, + [4] = { 55.6, 55.7, 5536, 300 }, + [5] = { 53.7, 53.8, 5536, 300 }, + [6] = { 51.8, 51.9, 5536, 300 }, + [7] = { 53.7, 50.5, 5536, 300 }, + }, + ["lvl"] = "6-7", + }, + [61670] = { + ["coords"] = { + [1] = { 53.2, 29.3, 5536, 300 }, + }, + ["lvl"] = "11", + ["rnk"] = "1", + }, + [61671] = { + ["coords"] = { + [1] = { 62, 57.9, 5536, 300 }, + }, + ["lvl"] = "8", + }, + [61672] = { + ["coords"] = { + [1] = { 56.7, 40.8, 5536, 300 }, + [2] = { 54.1, 37.8, 5536, 300 }, + [3] = { 53.6, 35.6, 5536, 300 }, + [4] = { 62.6, 35.5, 5536, 300 }, + [5] = { 53.5, 32.8, 5536, 300 }, + [6] = { 61.8, 32.2, 5536, 300 }, + [7] = { 55.6, 31.8, 5536, 300 }, + [8] = { 55.3, 30, 5536, 300 }, + [9] = { 54.1, 29.8, 5536, 300 }, + }, + ["lvl"] = "7-8", + }, + [61673] = { + ["coords"] = { + [1] = { 52.5, 36.4, 5536, 300 }, + [2] = { 59.5, 36, 5536, 300 }, + [3] = { 53.3, 35.1, 5536, 300 }, + [4] = { 51.8, 34.1, 5536, 300 }, + [5] = { 53.2, 32.5, 5536, 300 }, + [6] = { 55.6, 32.3, 5536, 300 }, + [7] = { 55.9, 29.7, 5536, 300 }, + [8] = { 52.9, 29.6, 5536, 300 }, + [9] = { 56.3, 29.3, 5536, 300 }, + [10] = { 53.1, 29.3, 5536, 300 }, + }, + ["lvl"] = "9-10", + }, + [61674] = { + ["coords"] = { + [1] = { 62.7, 43, 5536, 300 }, + [2] = { 57.5, 38.4, 5536, 300 }, + [3] = { 64.8, 35, 5536, 300 }, + [4] = { 53.7, 34.8, 5536, 300 }, + [5] = { 55.2, 33.9, 5536, 300 }, + [6] = { 55.2, 33.6, 5536, 300 }, + [7] = { 52.6, 32.8, 5536, 300 }, + [8] = { 54.8, 32.3, 5536, 300 }, + [9] = { 53.5, 32.1, 5536, 300 }, + [10] = { 55.9, 29.3, 5536, 300 }, + [11] = { 54.2, 28.7, 5536, 300 }, + [12] = { 52.7, 28.5, 5536, 300 }, + }, + ["lvl"] = "8-9", + }, + [61675] = { + ["coords"] = { + [1] = { 59.6, 65.9, 5536, 300 }, + [2] = { 64.1, 65.3, 5536, 300 }, + [3] = { 63.3, 64.8, 5536, 300 }, + [4] = { 61.8, 64.4, 5536, 300 }, + [5] = { 61.8, 62.5, 5536, 300 }, + [6] = { 60.3, 61.7, 5536, 300 }, + [7] = { 63.8, 61.4, 5536, 300 }, + [8] = { 61.2, 60.9, 5536, 300 }, + [9] = { 61.7, 59.7, 5536, 300 }, + [10] = { 58.5, 59.5, 5536, 300 }, + [11] = { 62, 59.5, 5536, 300 }, + [12] = { 60.7, 59.4, 5536, 300 }, + [13] = { 62.7, 59.3, 5536, 300 }, + [14] = { 61.9, 59, 5536, 300 }, + [15] = { 61.8, 58.7, 5536, 300 }, + [16] = { 60.6, 58.6, 5536, 300 }, + [17] = { 62.9, 57.7, 5536, 300 }, + [18] = { 59.5, 56.9, 5536, 300 }, + [19] = { 58.7, 56.2, 5536, 300 }, + [20] = { 63.8, 56, 5536, 300 }, + [21] = { 60.6, 53.4, 5536, 300 }, + }, + ["lvl"] = "5-6", + }, + [61676] = { + ["coords"] = {}, + ["lvl"] = "7-8", + }, + [61677] = { + ["coords"] = { + [1] = { 59.9, 64.1, 5536, 300 }, + [2] = { 59, 62, 5536, 300 }, + [3] = { 59.2, 60.9, 5536, 300 }, + [4] = { 60.4, 60.4, 5536, 300 }, + [5] = { 61.3, 59.5, 5536, 300 }, + [6] = { 63.8, 58.2, 5536, 300 }, + [7] = { 62.3, 54, 5536, 300 }, + [8] = { 44, 45.8, 5536, 300 }, + [9] = { 43.6, 45.1, 5536, 300 }, + [10] = { 55.2, 36.7, 5536, 300 }, + [11] = { 55.4, 32.5, 5536, 300 }, + [12] = { 52.8, 31.2, 5536, 300 }, + [13] = { 53.3, 29.5, 5536, 300 }, + [14] = { 55.1, 28.3, 5536, 300 }, + }, + ["lvl"] = "6-7", + }, + [61678] = { + ["coords"] = { + [1] = { 96.2, 71.3, 14, 300 }, + [2] = { 97.6, 71.1, 14, 300 }, + [3] = { 99.8, 70.4, 14, 300 }, + [4] = { 95.4, 69.7, 14, 300 }, + [5] = { 98.7, 69.1, 14, 300 }, + [6] = { 95.3, 68.8, 14, 300 }, + [7] = { 99.2, 68.3, 14, 300 }, + [8] = { 97.4, 68, 14, 300 }, + [9] = { 98.3, 67.8, 14, 300 }, + [10] = { 96.2, 67.7, 14, 300 }, + [11] = { 95.4, 67.6, 14, 300 }, + [12] = { 96.2, 66.9, 14, 300 }, + [13] = { 97.1, 66.9, 14, 300 }, + [14] = { 98.2, 66.8, 14, 300 }, + [15] = { 99.4, 66.6, 14, 300 }, + [16] = { 97.5, 66.1, 14, 300 }, + [17] = { 94.8, 66, 14, 300 }, + [18] = { 95, 65.7, 14, 300 }, + [19] = { 96.6, 65.6, 14, 300 }, + [20] = { 96.3, 64.8, 14, 300 }, + [21] = { 95.5, 64.5, 14, 300 }, + [22] = { 95, 63.8, 14, 300 }, + [23] = { 91.2, 63.2, 14, 300 }, + [24] = { 92.7, 62.8, 14, 300 }, + [25] = { 94.3, 62.7, 14, 300 }, + [26] = { 96.4, 62.4, 14, 300 }, + [27] = { 91.2, 61.6, 14, 300 }, + [28] = { 94.8, 61.4, 14, 300 }, + [29] = { 92.6, 61.2, 14, 300 }, + [30] = { 95.6, 60.8, 14, 300 }, + [31] = { 96.3, 59.9, 14, 300 }, + [32] = { 95.1, 58.1, 14, 300 }, + [33] = { 95.9, 56.7, 14, 300 }, + [34] = { 94.3, 55.6, 14, 300 }, + [35] = { 93.5, 55.4, 14, 300 }, + [36] = { 97.3, 53.3, 14, 300 }, + [37] = { 96.1, 53.2, 14, 300 }, + [38] = { 93.3, 53, 14, 300 }, + [39] = { 31.4, 90.2, 5536, 300 }, + [40] = { 34.3, 90, 5536, 300 }, + [41] = { 39.2, 88.3, 5536, 300 }, + [42] = { 40.6, 88.1, 5536, 300 }, + [43] = { 29.5, 87, 5536, 300 }, + [44] = { 41.7, 86.8, 5536, 300 }, + [45] = { 36.7, 85.7, 5536, 300 }, + [46] = { 29.5, 85, 5536, 300 }, + [47] = { 37.7, 84, 5536, 300 }, + [48] = { 33.9, 83.3, 5536, 300 }, + [49] = { 39.9, 83, 5536, 300 }, + [50] = { 35.8, 82.8, 5536, 300 }, + [51] = { 31.4, 82.7, 5536, 300 }, + [52] = { 29.7, 82.4, 5536, 300 }, + [53] = { 31.4, 81.1, 5536, 300 }, + [54] = { 33.3, 81.1, 5536, 300 }, + [55] = { 35.6, 80.9, 5536, 300 }, + [56] = { 38.3, 80.4, 5536, 300 }, + [57] = { 40.4, 80.3, 5536, 300 }, + [58] = { 34, 79.3, 5536, 300 }, + [59] = { 28.4, 79.2, 5536, 300 }, + [60] = { 28.7, 78.4, 5536, 300 }, + [61] = { 32.1, 78.3, 5536, 300 }, + [62] = { 31.5, 76.6, 5536, 300 }, + [63] = { 29.9, 76, 5536, 300 }, + [64] = { 28.8, 74.4, 5536, 300 }, + [65] = { 20.6, 73.2, 5536, 300 }, + [66] = { 23.9, 72.4, 5536, 300 }, + [67] = { 27.3, 72.1, 5536, 300 }, + [68] = { 31.7, 71.6, 5536, 300 }, + [69] = { 20.8, 69.8, 5536, 300 }, + [70] = { 28.4, 69.5, 5536, 300 }, + [71] = { 23.7, 69, 5536, 300 }, + [72] = { 30.1, 68.1, 5536, 300 }, + [73] = { 31.6, 66.1, 5536, 300 }, + [74] = { 28.9, 62.5, 5536, 300 }, + [75] = { 30.7, 59.3, 5536, 300 }, + [76] = { 27.4, 57.1, 5536, 300 }, + [77] = { 25.6, 56.7, 5536, 300 }, + [78] = { 33.6, 52.2, 5536, 300 }, + [79] = { 31.2, 52, 5536, 300 }, + [80] = { 25.2, 51.5, 5536, 300 }, + }, + ["lvl"] = "3-4", + }, + [61679] = { + ["coords"] = { + [1] = { 95.6, 72.2, 14, 300 }, + [2] = { 93.8, 71.7, 14, 300 }, + [3] = { 97.3, 71.7, 14, 300 }, + [4] = { 96.5, 71.6, 14, 300 }, + [5] = { 94.4, 71.3, 14, 300 }, + [6] = { 95.7, 71.3, 14, 300 }, + [7] = { 97.5, 70.8, 14, 300 }, + [8] = { 96.9, 70.7, 14, 300 }, + [9] = { 96.8, 70.6, 14, 300 }, + [10] = { 94.7, 70.5, 14, 300 }, + [11] = { 98.3, 70.4, 14, 300 }, + [12] = { 99.3, 70.4, 14, 300 }, + [13] = { 96.8, 70.4, 14, 300 }, + [14] = { 93.1, 70.3, 14, 300 }, + [15] = { 93.8, 70.2, 14, 300 }, + [16] = { 95.8, 70.2, 14, 300 }, + [17] = { 97.9, 70, 14, 300 }, + [18] = { 93.4, 69.7, 14, 300 }, + [19] = { 96.4, 69.6, 14, 300 }, + [20] = { 93.7, 69.5, 14, 300 }, + [21] = { 97.4, 69.5, 14, 300 }, + [22] = { 94.7, 69.5, 14, 300 }, + [23] = { 92, 68.8, 14, 300 }, + [24] = { 92.8, 68.8, 14, 300 }, + [25] = { 93.9, 68.7, 14, 300 }, + [26] = { 91.6, 67.8, 14, 300 }, + [27] = { 93.4, 67.7, 14, 300 }, + [28] = { 92.2, 67.1, 14, 300 }, + [29] = { 30, 92.3, 5536, 300 }, + [30] = { 26.3, 91.3, 5536, 300 }, + [31] = { 33.8, 91.1, 5536, 300 }, + [32] = { 31.9, 91, 5536, 300 }, + [33] = { 27.5, 90.4, 5536, 300 }, + [34] = { 30.2, 90.3, 5536, 300 }, + [35] = { 34.1, 89.4, 5536, 300 }, + [36] = { 32.8, 89, 5536, 300 }, + [37] = { 32.6, 88.8, 5536, 300 }, + [38] = { 28.1, 88.6, 5536, 300 }, + [39] = { 35.8, 88.5, 5536, 300 }, + [40] = { 38, 88.5, 5536, 300 }, + [41] = { 32.6, 88.5, 5536, 300 }, + [42] = { 24.8, 88.1, 5536, 300 }, + [43] = { 26.1, 88.1, 5536, 300 }, + [44] = { 30.4, 88.1, 5536, 300 }, + [45] = { 35, 87.7, 5536, 300 }, + [46] = { 25.3, 86.9, 5536, 300 }, + [47] = { 31.8, 86.8, 5536, 300 }, + [48] = { 26, 86.6, 5536, 300 }, + [49] = { 34, 86.5, 5536, 300 }, + [50] = { 28.2, 86.4, 5536, 300 }, + [51] = { 40.3, 85.7, 5536, 300 }, + [52] = { 22.4, 85.1, 5536, 300 }, + [53] = { 24.1, 85, 5536, 300 }, + [54] = { 26.5, 84.9, 5536, 300 }, + [55] = { 21.6, 83, 5536, 300 }, + [56] = { 25.3, 82.7, 5536, 300 }, + [57] = { 22.9, 81.5, 5536, 300 }, + }, + ["lvl"] = "4-5", + }, + [61680] = { + ["coords"] = { + [1] = { 98.8, 37.9, 14, 300 }, + [2] = { 54.6, 91.8, 5536, 300 }, + [3] = { 57.7, 90.9, 5536, 300 }, + [4] = { 50.6, 90.1, 5536, 300 }, + [5] = { 47.5, 87.5, 5536, 300 }, + [6] = { 44.9, 82.9, 5536, 300 }, + [7] = { 49.8, 82.6, 5536, 300 }, + [8] = { 53.1, 81.2, 5536, 300 }, + [9] = { 46, 80, 5536, 300 }, + [10] = { 56.3, 79.5, 5536, 300 }, + [11] = { 63.9, 75.7, 5536, 300 }, + [12] = { 61, 73.4, 5536, 300 }, + [13] = { 63.1, 69.3, 5536, 300 }, + [14] = { 60.9, 69.1, 5536, 300 }, + [15] = { 67.1, 68.9, 5536, 300 }, + [16] = { 71.2, 65.9, 5536, 300 }, + [17] = { 66.5, 65.2, 5536, 300 }, + [18] = { 72.5, 65, 5536, 300 }, + [19] = { 70, 62.9, 5536, 300 }, + [20] = { 70.4, 57.4, 5536, 300 }, + [21] = { 68.4, 56, 5536, 300 }, + [22] = { 77.2, 54, 5536, 300 }, + [23] = { 72.1, 51.5, 5536, 300 }, + [24] = { 75.8, 48.1, 5536, 300 }, + [25] = { 78.2, 46.5, 5536, 300 }, + [26] = { 69, 46.1, 5536, 300 }, + [27] = { 71.9, 43.1, 5536, 300 }, + [28] = { 79.1, 41.7, 5536, 300 }, + [29] = { 69.5, 40.9, 5536, 300 }, + [30] = { 72.8, 39.9, 5536, 300 }, + [31] = { 78.9, 37.5, 5536, 300 }, + [32] = { 73.5, 35.6, 5536, 300 }, + [33] = { 71.3, 34.5, 5536, 300 }, + [34] = { 76.1, 33.9, 5536, 300 }, + [35] = { 69.2, 33.6, 5536, 300 }, + [36] = { 71.4, 31.4, 5536, 300 }, + [37] = { 78.5, 30.5, 5536, 300 }, + [38] = { 46.6, 29, 5536, 300 }, + [39] = { 73.9, 26.6, 5536, 300 }, + [40] = { 78, 25.5, 5536, 300 }, + [41] = { 41.6, 25.1, 5536, 300 }, + [42] = { 45.5, 24, 5536, 300 }, + [43] = { 69, 23.6, 5536, 300 }, + [44] = { 43.2, 22.6, 5536, 300 }, + [45] = { 48.1, 21.8, 5536, 300 }, + [46] = { 69.8, 20.9, 5536, 300 }, + [47] = { 76.5, 20.8, 5536, 300 }, + [48] = { 37, 19.6, 5536, 300 }, + [49] = { 63, 19.5, 5536, 300 }, + [50] = { 48, 19.3, 5536, 300 }, + [51] = { 53.1, 17.7, 5536, 300 }, + [52] = { 67.5, 17.4, 5536, 300 }, + [53] = { 70.6, 16.8, 5536, 300 }, + [54] = { 55.1, 16.8, 5536, 300 }, + [55] = { 44.2, 16.8, 5536, 300 }, + [56] = { 62.2, 16.2, 5536, 300 }, + [57] = { 46, 16, 5536, 300 }, + [58] = { 51.7, 15.3, 5536, 300 }, + [59] = { 48.8, 15.1, 5536, 300 }, + [60] = { 45.4, 13.4, 5536, 300 }, + [61] = { 55.3, 13.1, 5536, 300 }, + [62] = { 40.8, 12.8, 5536, 300 }, + [63] = { 69.8, 12, 5536, 300 }, + [64] = { 44.2, 11.7, 5536, 300 }, + [65] = { 60.4, 11.6, 5536, 300 }, + [66] = { 46.6, 10.5, 5536, 300 }, + [67] = { 63, 10.4, 5536, 300 }, + [68] = { 51.8, 10.3, 5536, 300 }, + [69] = { 49.5, 8.7, 5536, 300 }, + [70] = { 59, 7.9, 5536, 300 }, + }, + ["lvl"] = "7-8", + }, + [61681] = { + ["coords"] = { + [1] = { 95.8, 67.9, 14, 300 }, + [2] = { 96.8, 67.6, 14, 300 }, + [3] = { 99.7, 67.5, 14, 300 }, + [4] = { 98.3, 67.3, 14, 300 }, + [5] = { 95.2, 66.9, 14, 300 }, + [6] = { 97.3, 66.8, 14, 300 }, + [7] = { 97, 64.7, 14, 300 }, + [8] = { 95.4, 63.5, 14, 300 }, + [9] = { 94.6, 61.8, 14, 300 }, + [10] = { 95.2, 60.1, 14, 300 }, + [11] = { 93.5, 60, 14, 300 }, + [12] = { 94.2, 59.3, 14, 300 }, + [13] = { 94.9, 58.7, 14, 300 }, + [14] = { 93.7, 58.5, 14, 300 }, + [15] = { 95.5, 57.5, 14, 300 }, + [16] = { 94, 56.9, 14, 300 }, + [17] = { 96.3, 56.3, 14, 300 }, + [18] = { 95.2, 55.2, 14, 300 }, + [19] = { 94.2, 55, 14, 300 }, + [20] = { 94, 53.8, 14, 300 }, + [21] = { 94.6, 52.5, 14, 300 }, + [22] = { 96.7, 51.8, 14, 300 }, + [23] = { 98.2, 48.8, 14, 300 }, + [24] = { 95.7, 48.7, 14, 300 }, + [25] = { 99.9, 46.1, 14, 300 }, + [26] = { 96.5, 45.5, 14, 300 }, + [27] = { 98.7, 45.4, 14, 300 }, + [28] = { 98, 44.1, 14, 300 }, + [29] = { 97.4, 42.2, 14, 300 }, + [30] = { 97.2, 40.3, 14, 300 }, + [31] = { 99.7, 37.8, 14, 300 }, + [32] = { 98.2, 36.4, 14, 300 }, + [33] = { 99.6, 35.3, 14, 300 }, + [34] = { 30.6, 83.1, 5536, 300 }, + [35] = { 32.7, 82.6, 5536, 300 }, + [36] = { 38.8, 82.2, 5536, 300 }, + [37] = { 35.9, 82, 5536, 300 }, + [38] = { 29.2, 81, 5536, 300 }, + [39] = { 33.6, 80.8, 5536, 300 }, + [40] = { 39.7, 79.5, 5536, 300 }, + [41] = { 33, 76.4, 5536, 300 }, + [42] = { 29.7, 73.9, 5536, 300 }, + [43] = { 28, 70.2, 5536, 300 }, + [44] = { 29.2, 66.7, 5536, 300 }, + [45] = { 25.7, 66.3, 5536, 300 }, + [46] = { 27.1, 65, 5536, 300 }, + [47] = { 28.6, 63.7, 5536, 300 }, + [48] = { 26, 63.2, 5536, 300 }, + [49] = { 30, 61.2, 5536, 300 }, + [50] = { 26.6, 59.8, 5536, 300 }, + [51] = { 31.5, 58.6, 5536, 300 }, + [52] = { 29.3, 56.2, 5536, 300 }, + [53] = { 27.1, 55.9, 5536, 300 }, + [54] = { 26.6, 53.2, 5536, 300 }, + [55] = { 27.9, 50.5, 5536, 300 }, + [56] = { 32.5, 49, 5536, 300 }, + [57] = { 35.6, 42.8, 5536, 300 }, + [58] = { 30.3, 42.4, 5536, 300 }, + [59] = { 39.2, 37, 5536, 300 }, + [60] = { 41.8, 35.9, 5536, 300 }, + [61] = { 31.9, 35.6, 5536, 300 }, + [62] = { 36.7, 35.5, 5536, 300 }, + [63] = { 35.2, 32.8, 5536, 300 }, + [64] = { 40.6, 32, 5536, 300 }, + [65] = { 41.6, 31.5, 5536, 300 }, + [66] = { 33.9, 28.7, 5536, 300 }, + [67] = { 33.4, 24.6, 5536, 300 }, + [68] = { 40, 23.4, 5536, 300 }, + [69] = { 38.8, 19.5, 5536, 300 }, + [70] = { 35.6, 16.4, 5536, 300 }, + [71] = { 38.7, 14.1, 5536, 300 }, + }, + ["lvl"] = "3-4", + }, + [61682] = { + ["coords"] = { + [1] = { 96.6, 52.8, 14, 300 }, + [2] = { 98, 51.1, 14, 300 }, + [3] = { 96.8, 50.5, 14, 300 }, + [4] = { 96.7, 49.9, 14, 300 }, + [5] = { 97.7, 49.6, 14, 300 }, + [6] = { 94.9, 48.8, 14, 300 }, + [7] = { 98.5, 48.2, 14, 300 }, + [8] = { 96.2, 47.6, 14, 300 }, + [9] = { 96.6, 47.5, 14, 300 }, + [10] = { 98, 47.3, 14, 300 }, + [11] = { 99.4, 47.3, 14, 300 }, + [12] = { 97.8, 47.3, 14, 300 }, + [13] = { 98.4, 46.5, 14, 300 }, + [14] = { 99.5, 46.3, 14, 300 }, + [15] = { 98.8, 46.3, 14, 300 }, + [16] = { 99.1, 46.1, 14, 300 }, + [17] = { 98.1, 45.9, 14, 300 }, + [18] = { 99.2, 45.6, 14, 300 }, + [19] = { 98.6, 45.4, 14, 300 }, + [20] = { 98.9, 44.8, 14, 300 }, + [21] = { 97.9, 43.8, 14, 300 }, + [22] = { 98.7, 42.8, 14, 300 }, + [23] = { 99.8, 42.7, 14, 300 }, + [24] = { 99.1, 40.8, 14, 300 }, + [25] = { 97.3, 38.6, 14, 300 }, + [26] = { 62.2, 94, 5536, 300 }, + [27] = { 56.2, 91.9, 5536, 300 }, + [28] = { 52.2, 90.2, 5536, 300 }, + [29] = { 67.7, 89.3, 5536, 300 }, + [30] = { 46, 88.9, 5536, 300 }, + [31] = { 59.2, 86.4, 5536, 300 }, + [32] = { 43.5, 86.2, 5536, 300 }, + [33] = { 52.7, 85.4, 5536, 300 }, + [34] = { 69, 84.9, 5536, 300 }, + [35] = { 52.8, 84.6, 5536, 300 }, + [36] = { 50.8, 84, 5536, 300 }, + [37] = { 45.6, 83.7, 5536, 300 }, + [38] = { 54.4, 83.7, 5536, 300 }, + [39] = { 51.7, 83.5, 5536, 300 }, + [40] = { 55.6, 83.4, 5536, 300 }, + [41] = { 41.3, 83.4, 5536, 300 }, + [42] = { 58.7, 83.2, 5536, 300 }, + [43] = { 57.3, 83.2, 5536, 300 }, + [44] = { 48.3, 82.6, 5536, 300 }, + [45] = { 57.1, 82.2, 5536, 300 }, + [46] = { 50.8, 82.1, 5536, 300 }, + [47] = { 40.6, 79, 5536, 300 }, + [48] = { 54.4, 78.9, 5536, 300 }, + [49] = { 54.9, 78, 5536, 300 }, + [50] = { 73.4, 68.8, 5536, 300 }, + [51] = { 75.9, 67.2, 5536, 300 }, + [52] = { 74.7, 65.9, 5536, 300 }, + [53] = { 76.1, 65.3, 5536, 300 }, + [54] = { 76.1, 64, 5536, 300 }, + [55] = { 74.9, 62.8, 5536, 300 }, + [56] = { 72.6, 62.3, 5536, 300 }, + [57] = { 76.3, 59.6, 5536, 300 }, + [58] = { 32.2, 51.2, 5536, 300 }, + [59] = { 35.2, 47.5, 5536, 300 }, + [60] = { 32.6, 46.4, 5536, 300 }, + [61] = { 32.3, 45.1, 5536, 300 }, + [62] = { 34.5, 44.3, 5536, 300 }, + [63] = { 28.6, 42.7, 5536, 300 }, + [64] = { 74.1, 42.4, 5536, 300 }, + [65] = { 73.3, 42.2, 5536, 300 }, + [66] = { 36.3, 41.5, 5536, 300 }, + [67] = { 31.3, 40.1, 5536, 300 }, + [68] = { 32.2, 39.9, 5536, 300 }, + [69] = { 35.1, 39.6, 5536, 300 }, + [70] = { 38.1, 39.5, 5536, 300 }, + [71] = { 34.8, 39.4, 5536, 300 }, + [72] = { 36.1, 37.9, 5536, 300 }, + [73] = { 38.3, 37.5, 5536, 300 }, + [74] = { 36.8, 37.3, 5536, 300 }, + [75] = { 37.6, 37, 5536, 300 }, + [76] = { 35.4, 36.6, 5536, 300 }, + [77] = { 37.8, 36, 5536, 300 }, + [78] = { 36.4, 35.6, 5536, 300 }, + [79] = { 40.5, 35.3, 5536, 300 }, + [80] = { 37.1, 34.3, 5536, 300 }, + [81] = { 35.1, 32.1, 5536, 300 }, + [82] = { 43.4, 31, 5536, 300 }, + [83] = { 36.8, 30.1, 5536, 300 }, + [84] = { 39.1, 29.8, 5536, 300 }, + [85] = { 46.4, 26.3, 5536, 300 }, + [86] = { 37.5, 25.8, 5536, 300 }, + [87] = { 33.7, 21, 5536, 300 }, + [88] = { 48.5, 20.5, 5536, 300 }, + [89] = { 52.2, 20.3, 5536, 300 }, + [90] = { 62.2, 20.2, 5536, 300 }, + [91] = { 41.9, 19.9, 5536, 300 }, + [92] = { 58.8, 18.7, 5536, 300 }, + [93] = { 57.4, 18.4, 5536, 300 }, + [94] = { 54.9, 18.1, 5536, 300 }, + [95] = { 39.8, 18, 5536, 300 }, + [96] = { 56.2, 17.7, 5536, 300 }, + [97] = { 59.9, 17.2, 5536, 300 }, + [98] = { 57.9, 17.1, 5536, 300 }, + [99] = { 53, 16.8, 5536, 300 }, + [100] = { 57.6, 13, 5536, 300 }, + [101] = { 66.4, 9.1, 5536, 300 }, + }, + ["lvl"] = "5-6", + }, + [61683] = { + ["coords"] = { + [1] = { 98.9, 47.9, 14, 300 }, + [2] = { 98.2, 46.1, 14, 300 }, + [3] = { 99.4, 46.1, 14, 300 }, + [4] = { 99.5, 45.6, 14, 300 }, + [5] = { 99.4, 38.9, 14, 300 }, + [6] = { 64.8, 91, 5536, 300 }, + [7] = { 48.8, 89.4, 5536, 300 }, + [8] = { 54.6, 83.6, 5536, 300 }, + [9] = { 57.5, 83.1, 5536, 300 }, + [10] = { 52.9, 83, 5536, 300 }, + [11] = { 53.5, 81.5, 5536, 300 }, + [12] = { 55, 81.3, 5536, 300 }, + [13] = { 70.9, 80.8, 5536, 300 }, + [14] = { 43.3, 80.8, 5536, 300 }, + [15] = { 48.9, 80.4, 5536, 300 }, + [16] = { 57.9, 77.5, 5536, 300 }, + [17] = { 74.9, 62.6, 5536, 300 }, + [18] = { 76.4, 62.3, 5536, 300 }, + [19] = { 74, 60.5, 5536, 300 }, + [20] = { 37.2, 40.7, 5536, 300 }, + [21] = { 35.6, 37, 5536, 300 }, + [22] = { 38.1, 37, 5536, 300 }, + [23] = { 38.4, 36, 5536, 300 }, + [24] = { 43.4, 26.9, 5536, 300 }, + [25] = { 38.3, 21.7, 5536, 300 }, + [26] = { 57.3, 20, 5536, 300 }, + [27] = { 51.2, 13.3, 5536, 300 }, + }, + ["lvl"] = "6-7", + }, + [61684] = { + ["coords"] = { + [1] = { 96.5, 46.2, 14, 300 }, + [2] = { 56.9, 80.6, 5536, 300 }, + [3] = { 32.1, 37.1, 5536, 300 }, + [4] = { 39.6, 34.8, 5536, 300 }, + [5] = { 41.6, 31.9, 5536, 300 }, + }, + ["lvl"] = "7-8", + }, + [61685] = { + ["coords"] = { + [1] = { 99, 47.9, 14, 300 }, + [2] = { 98.4, 46.9, 14, 300 }, + [3] = { 99, 46.8, 14, 300 }, + [4] = { 95.9, 46.5, 14, 300 }, + [5] = { 99.3, 46.4, 14, 300 }, + [6] = { 98.3, 45.9, 14, 300 }, + [7] = { 97.2, 44.2, 14, 300 }, + [8] = { 99.8, 40.6, 14, 300 }, + [9] = { 98.8, 35.7, 14, 300 }, + [10] = { 59.5, 92.2, 5536, 300 }, + [11] = { 52.9, 85.2, 5536, 300 }, + [12] = { 57.4, 84.5, 5536, 300 }, + [13] = { 50.6, 84.3, 5536, 300 }, + [14] = { 52.4, 80.8, 5536, 300 }, + [15] = { 75.8, 65.2, 5536, 300 }, + [16] = { 74, 62.4, 5536, 300 }, + [17] = { 74.8, 58.9, 5536, 300 }, + [18] = { 73.9, 41, 5536, 300 }, + [19] = { 37.4, 40.9, 5536, 300 }, + [20] = { 39.9, 38.7, 5536, 300 }, + [21] = { 36.1, 38.7, 5536, 300 }, + [22] = { 37.4, 38.5, 5536, 300 }, + [23] = { 30.8, 37.8, 5536, 300 }, + [24] = { 38, 37.7, 5536, 300 }, + [25] = { 35.9, 36.7, 5536, 300 }, + [26] = { 78.4, 33.5, 5536, 300 }, + [27] = { 33.5, 32.9, 5536, 300 }, + [28] = { 39.5, 32.5, 5536, 300 }, + [29] = { 41.7, 29.8, 5536, 300 }, + [30] = { 39, 25.4, 5536, 300 }, + [31] = { 46, 20.7, 5536, 300 }, + [32] = { 50.4, 19.3, 5536, 300 }, + [33] = { 56.4, 19, 5536, 300 }, + [34] = { 60, 18.8, 5536, 300 }, + [35] = { 36.9, 15, 5536, 300 }, + [36] = { 59.7, 14.5, 5536, 300 }, + [37] = { 52.7, 14, 5536, 300 }, + [38] = { 43.2, 13.2, 5536, 300 }, + [39] = { 47.7, 12.2, 5536, 300 }, + [40] = { 55.9, 9.4, 5536, 300 }, + }, + ["lvl"] = "6-7", + }, + [61686] = { + ["coords"] = { + [1] = { 99.4, 65.2, 14, 300 }, + [2] = { 98, 65.2, 14, 300 }, + [3] = { 98.4, 63.1, 14, 300 }, + [4] = { 96.8, 63.1, 14, 300 }, + [5] = { 99.1, 63, 14, 300 }, + [6] = { 100, 62.8, 14, 300 }, + [7] = { 99, 62.2, 14, 300 }, + [8] = { 98, 62.2, 14, 300 }, + [9] = { 99.9, 61.5, 14, 300 }, + [10] = { 98.1, 61, 14, 300 }, + [11] = { 96.5, 59.3, 14, 300 }, + [12] = { 97.3, 59, 14, 300 }, + [13] = { 96.8, 57.5, 14, 300 }, + [14] = { 97.8, 56, 14, 300 }, + [15] = { 96.9, 55.6, 14, 300 }, + [16] = { 99.9, 55.5, 14, 300 }, + [17] = { 99.7, 54.8, 14, 300 }, + [18] = { 38.2, 77.5, 5536, 300 }, + [19] = { 35.2, 77.3, 5536, 300 }, + [20] = { 36.1, 73.1, 5536, 300 }, + [21] = { 32.7, 73, 5536, 300 }, + [22] = { 37.6, 72.8, 5536, 300 }, + [23] = { 39.5, 72.3, 5536, 300 }, + [24] = { 41.8, 72.2, 5536, 300 }, + [25] = { 37.2, 71, 5536, 300 }, + [26] = { 35.1, 71, 5536, 300 }, + [27] = { 40.7, 70.3, 5536, 300 }, + [28] = { 39.2, 69.6, 5536, 300 }, + [29] = { 35.5, 68.6, 5536, 300 }, + [30] = { 31.9, 65, 5536, 300 }, + [31] = { 33.7, 64.3, 5536, 300 }, + [32] = { 32.6, 61.2, 5536, 300 }, + [33] = { 41.5, 58.6, 5536, 300 }, + [34] = { 34.8, 57.8, 5536, 300 }, + [35] = { 40.2, 57.2, 5536, 300 }, + [36] = { 32.9, 57, 5536, 300 }, + [37] = { 39.2, 56.9, 5536, 300 }, + [38] = { 38.8, 55.3, 5536, 300 }, + }, + ["lvl"] = "3", + }, + [61687] = { + ["coords"] = { + [1] = { 97.6, 63.5, 14, 300 }, + [2] = { 99.4, 61.2, 14, 300 }, + [3] = { 99.7, 59.8, 14, 300 }, + [4] = { 34.3, 73.8, 5536, 300 }, + [5] = { 38.1, 69, 5536, 300 }, + [6] = { 41.8, 67.5, 5536, 300 }, + [7] = { 38.9, 66, 5536, 300 }, + [8] = { 42.7, 62.3, 5536, 300 }, + [9] = { 56.4, 61.8, 5536, 300 }, + [10] = { 55.7, 59.8, 5536, 300 }, + [11] = { 43.3, 59.6, 5536, 300 }, + [12] = { 59.9, 59.5, 5536, 300 }, + [13] = { 55.9, 59.2, 5536, 300 }, + [14] = { 59.8, 58.5, 5536, 300 }, + [15] = { 56.9, 58.3, 5536, 300 }, + [16] = { 58.1, 58.2, 5536, 300 }, + [17] = { 48.2, 57.9, 5536, 300 }, + [18] = { 60.1, 57.4, 5536, 300 }, + [19] = { 56.5, 56.7, 5536, 300 }, + [20] = { 44.5, 55.9, 5536, 300 }, + [21] = { 46.4, 55.3, 5536, 300 }, + [22] = { 54, 52.7, 5536, 300 }, + [23] = { 50.2, 52.2, 5536, 300 }, + [24] = { 52.9, 52, 5536, 300 }, + [25] = { 57.9, 50.5, 5536, 300 }, + [26] = { 46.4, 50.4, 5536, 300 }, + [27] = { 54.5, 50.3, 5536, 300 }, + [28] = { 52.7, 50.2, 5536, 300 }, + [29] = { 40.3, 50.1, 5536, 300 }, + [30] = { 51.3, 49.7, 5536, 300 }, + [31] = { 55.5, 49, 5536, 300 }, + [32] = { 42.1, 45.5, 5536, 300 }, + [33] = { 55.1, 45.2, 5536, 300 }, + [34] = { 40.8, 41.7, 5536, 300 }, + [35] = { 50.8, 36.6, 5536, 300 }, + }, + ["lvl"] = "3-4", + }, + [61688] = { + ["coords"] = { + [1] = { 44.9, 78.1, 5536, 300 }, + [2] = { 47, 77.9, 5536, 300 }, + [3] = { 42.9, 77.7, 5536, 300 }, + [4] = { 50.1, 77, 5536, 300 }, + [5] = { 48.3, 76.7, 5536, 300 }, + [6] = { 44, 76.2, 5536, 300 }, + [7] = { 45.5, 76.1, 5536, 300 }, + [8] = { 42.1, 75.9, 5536, 300 }, + [9] = { 51.7, 75.9, 5536, 300 }, + [10] = { 48.6, 74.5, 5536, 300 }, + [11] = { 44.6, 73.9, 5536, 300 }, + [12] = { 47.4, 72.9, 5536, 300 }, + [13] = { 46.2, 72.7, 5536, 300 }, + [14] = { 42.8, 72.7, 5536, 300 }, + [15] = { 50.2, 72.1, 5536, 300 }, + [16] = { 44.9, 72, 5536, 300 }, + [17] = { 54.1, 69.5, 5536, 300 }, + [18] = { 58.3, 69.1, 5536, 300 }, + [19] = { 53.8, 62, 5536, 300 }, + [20] = { 53.6, 57.2, 5536, 300 }, + [21] = { 55.8, 55.6, 5536, 300 }, + [22] = { 49.2, 54.3, 5536, 300 }, + [23] = { 56.1, 35.1, 5536, 300 }, + }, + ["lvl"] = "4-6", + }, + [61689] = { + ["coords"] = { + [1] = { 6, 27.9, 139, 300 }, + [2] = { 6.9, 27.6, 139, 300 }, + [3] = { 6.1, 27.6, 139, 300 }, + [4] = { 7.9, 27.2, 139, 300 }, + [5] = { 5.2, 26.7, 139, 300 }, + [6] = { 8.2, 26.6, 139, 300 }, + [7] = { 5.6, 26.3, 139, 300 }, + [8] = { 6.3, 26.3, 139, 300 }, + [9] = { 9.4, 26.1, 139, 300 }, + [10] = { 7.9, 26, 139, 300 }, + [11] = { 7.5, 25.7, 139, 300 }, + [12] = { 10, 25.6, 139, 300 }, + [13] = { 9.6, 25.5, 139, 300 }, + [14] = { 7.9, 25.1, 139, 300 }, + [15] = { 7.6, 25.1, 139, 300 }, + [16] = { 10.1, 25, 139, 300 }, + [17] = { 10.7, 23.9, 139, 300 }, + [18] = { 10.7, 23.4, 139, 300 }, + [19] = { 10.3, 22.5, 139, 300 }, + [20] = { 11, 22.4, 139, 300 }, + [21] = { 9.9, 21.5, 139, 300 }, + [22] = { 10.8, 21.5, 139, 300 }, + [23] = { 11.4, 20.8, 139, 300 }, + [24] = { 8.7, 20.1, 139, 300 }, + [25] = { 8, 20.1, 139, 300 }, + [26] = { 8.3, 19.9, 139, 300 }, + [27] = { 10.6, 19.8, 139, 300 }, + [28] = { 10.2, 19.8, 139, 300 }, + [29] = { 9.8, 19.7, 139, 300 }, + [30] = { 11.7, 19.7, 139, 300 }, + [31] = { 9.7, 19.2, 139, 300 }, + [32] = { 9.3, 18.5, 139, 300 }, + [33] = { 9.5, 18, 139, 300 }, + [34] = { 45.8, 90.8, 5225, 300 }, + [35] = { 47, 90.5, 5225, 300 }, + [36] = { 46, 90.4, 5225, 300 }, + [37] = { 48.2, 90, 5225, 300 }, + [38] = { 44.9, 89.3, 5225, 300 }, + [39] = { 48.6, 89.2, 5225, 300 }, + [40] = { 45.3, 88.9, 5225, 300 }, + [41] = { 46.3, 88.9, 5225, 300 }, + [42] = { 50.1, 88.6, 5225, 300 }, + [43] = { 48.2, 88.4, 5225, 300 }, + [44] = { 43.8, 88.2, 5225, 300 }, + [45] = { 47.8, 88.1, 5225, 300 }, + [46] = { 50.8, 88, 5225, 300 }, + [47] = { 50.4, 87.9, 5225, 300 }, + [48] = { 48.2, 87.3, 5225, 300 }, + [49] = { 47.8, 87.3, 5225, 300 }, + [50] = { 44.9, 87.3, 5225, 300 }, + [51] = { 50.9, 87.2, 5225, 300 }, + [52] = { 44.4, 87, 5225, 300 }, + [53] = { 51.7, 85.9, 5225, 300 }, + [54] = { 45, 85.3, 5225, 300 }, + [55] = { 43.9, 85.2, 5225, 300 }, + [56] = { 51.7, 85.2, 5225, 300 }, + [57] = { 44.2, 84.6, 5225, 300 }, + [58] = { 51.2, 84, 5225, 300 }, + [59] = { 52.1, 84, 5225, 300 }, + [60] = { 44.9, 83, 5225, 300 }, + [61] = { 50.7, 82.9, 5225, 300 }, + [62] = { 51.8, 82.9, 5225, 300 }, + [63] = { 46, 82.4, 5225, 300 }, + [64] = { 45.5, 82.2, 5225, 300 }, + [65] = { 44.8, 82.2, 5225, 300 }, + [66] = { 52.6, 81.9, 5225, 300 }, + [67] = { 47.5, 81.3, 5225, 300 }, + [68] = { 49.3, 81.1, 5225, 300 }, + [69] = { 48.3, 81, 5225, 300 }, + [70] = { 48.7, 80.8, 5225, 300 }, + [71] = { 51.6, 80.7, 5225, 300 }, + [72] = { 51.1, 80.7, 5225, 300 }, + [73] = { 50.6, 80.6, 5225, 300 }, + [74] = { 52.9, 80.6, 5225, 300 }, + [75] = { 47.5, 80.4, 5225, 300 }, + [76] = { 46.1, 80.3, 5225, 300 }, + [77] = { 45.3, 80.1, 5225, 300 }, + [78] = { 50.5, 79.9, 5225, 300 }, + [79] = { 45.2, 79.6, 5225, 300 }, + [80] = { 50, 79.1, 5225, 300 }, + [81] = { 50.3, 78.4, 5225, 300 }, + [82] = { 48.2, 78.4, 5225, 300 }, + [83] = { 46.8, 77.1, 5225, 300 }, + [84] = { 45.8, 77, 5225, 300 }, + [85] = { 46.9, 75.3, 5225, 300 }, + [86] = { 45.8, 75, 5225, 300 }, + [87] = { 49.7, 75, 5225, 300 }, + [88] = { 48.9, 73, 5225, 300 }, + [89] = { 46.9, 72.4, 5225, 300 }, + [90] = { 49.7, 72, 5225, 300 }, + [91] = { 47.8, 71.8, 5225, 300 }, + }, + ["lvl"] = "1-2", + }, + [61690] = { + ["coords"] = { + [1] = { 8.9, 27.7, 139, 300 }, + [2] = { 7.8, 27.6, 139, 300 }, + [3] = { 5.4, 27.3, 139, 300 }, + [4] = { 8.6, 27.1, 139, 300 }, + [5] = { 5.5, 27, 139, 300 }, + [6] = { 7.4, 26.8, 139, 300 }, + [7] = { 4.6, 26.5, 139, 300 }, + [8] = { 6.9, 26.5, 139, 300 }, + [9] = { 9.7, 26.3, 139, 300 }, + [10] = { 7.1, 26, 139, 300 }, + [11] = { 10.2, 25.6, 139, 300 }, + [12] = { 7.8, 24.9, 139, 300 }, + [13] = { 5.6, 24, 139, 300 }, + [14] = { 10.5, 23.9, 139, 300 }, + [15] = { 9.7, 23.8, 139, 300 }, + [16] = { 10.4, 23.1, 139, 300 }, + [17] = { 11.4, 22.7, 139, 300 }, + [18] = { 9.8, 22.1, 139, 300 }, + [19] = { 11.2, 21.9, 139, 300 }, + [20] = { 10.3, 21.8, 139, 300 }, + [21] = { 10.6, 20.6, 139, 300 }, + [22] = { 7.8, 20.4, 139, 300 }, + [23] = { 9.3, 19.8, 139, 300 }, + [24] = { 11.1, 19.6, 139, 300 }, + [25] = { 10.1, 19.2, 139, 300 }, + [26] = { 10, 18.6, 139, 300 }, + [27] = { 9.7, 18.2, 139, 300 }, + [28] = { 9.6, 16.6, 139, 300 }, + [29] = { 49.4, 90.6, 5225, 300 }, + [30] = { 48.1, 90.5, 5225, 300 }, + [31] = { 45.1, 90.1, 5225, 300 }, + [32] = { 49.1, 89.8, 5225, 300 }, + [33] = { 45.2, 89.8, 5225, 300 }, + [34] = { 47.6, 89.5, 5225, 300 }, + [35] = { 44.1, 89.1, 5225, 300 }, + [36] = { 47, 89, 5225, 300 }, + [37] = { 50.5, 88.8, 5225, 300 }, + [38] = { 47.2, 88.5, 5225, 300 }, + [39] = { 51.2, 87.9, 5225, 300 }, + [40] = { 48.1, 87, 5225, 300 }, + [41] = { 43.8, 86.3, 5225, 300 }, + [42] = { 44, 86.2, 5225, 300 }, + [43] = { 45.3, 86, 5225, 300 }, + [44] = { 51.4, 85.8, 5225, 300 }, + [45] = { 50.5, 85.7, 5225, 300 }, + [46] = { 51.4, 84.8, 5225, 300 }, + [47] = { 52.7, 84.4, 5225, 300 }, + [48] = { 50.6, 83.6, 5225, 300 }, + [49] = { 44.4, 83.4, 5225, 300 }, + [50] = { 52.4, 83.3, 5225, 300 }, + [51] = { 51.2, 83.2, 5225, 300 }, + [52] = { 45.1, 82.8, 5225, 300 }, + [53] = { 47.2, 82, 5225, 300 }, + [54] = { 51.6, 81.7, 5225, 300 }, + [55] = { 48.1, 81.4, 5225, 300 }, + [56] = { 47, 81.1, 5225, 300 }, + [57] = { 49.9, 80.7, 5225, 300 }, + [58] = { 45.5, 80.5, 5225, 300 }, + [59] = { 52.2, 80.5, 5225, 300 }, + [60] = { 51, 80, 5225, 300 }, + [61] = { 50.8, 79.1, 5225, 300 }, + [62] = { 50.5, 78.7, 5225, 300 }, + [63] = { 45.7, 78.1, 5225, 300 }, + [64] = { 50.3, 76.7, 5225, 300 }, + [65] = { 48, 76.5, 5225, 300 }, + [66] = { 46.6, 76.3, 5225, 300 }, + [67] = { 50, 76.1, 5225, 300 }, + [68] = { 45.6, 75.8, 5225, 300 }, + [69] = { 49.4, 75.6, 5225, 300 }, + [70] = { 50.1, 75.1, 5225, 300 }, + [71] = { 47.5, 74.3, 5225, 300 }, + [72] = { 49.8, 74.1, 5225, 300 }, + [73] = { 48.1, 74.1, 5225, 300 }, + [74] = { 45.2, 74, 5225, 300 }, + [75] = { 46.1, 73.8, 5225, 300 }, + [76] = { 47.9, 73.1, 5225, 300 }, + [77] = { 48.4, 72.2, 5225, 300 }, + }, + ["lvl"] = "1-2", + }, + [61691] = { + ["coords"] = { + [1] = { 10.7, 18.5, 139, 300 }, + [2] = { 45.5, 79.6, 5225, 300 }, + [3] = { 51.7, 79, 5225, 300 }, + [4] = { 46.1, 76.1, 5225, 300 }, + [5] = { 47.6, 75.9, 5225, 300 }, + [6] = { 48.6, 75.2, 5225, 300 }, + [7] = { 44.6, 73.7, 5225, 300 }, + [8] = { 47.4, 73.7, 5225, 300 }, + [9] = { 50.5, 72.9, 5225, 300 }, + [10] = { 42.7, 71.9, 5225, 300 }, + [11] = { 46.8, 71.2, 5225, 300 }, + [12] = { 51.7, 71.1, 5225, 300 }, + [13] = { 48.6, 71, 5225, 300 }, + [14] = { 42.1, 70.8, 5225, 300 }, + [15] = { 50.2, 70.7, 5225, 300 }, + [16] = { 46.2, 70.5, 5225, 300 }, + [17] = { 47.9, 69.9, 5225, 300 }, + [18] = { 45.1, 69.4, 5225, 300 }, + [19] = { 44.2, 68.5, 5225, 300 }, + [20] = { 49.1, 67.8, 5225, 300 }, + [21] = { 50.9, 67.6, 5225, 300 }, + [22] = { 45.4, 67.1, 5225, 300 }, + [23] = { 43, 66.9, 5225, 300 }, + [24] = { 47.4, 66.2, 5225, 300 }, + }, + ["lvl"] = "3-4", + }, + [61692] = { + ["coords"] = { + [1] = { 48.7, 76, 5225, 300 }, + [2] = { 45.3, 74.8, 5225, 300 }, + [3] = { 50.1, 73.6, 5225, 300 }, + [4] = { 44.6, 73.5, 5225, 300 }, + [5] = { 49.4, 73.1, 5225, 300 }, + [6] = { 44.2, 72.9, 5225, 300 }, + [7] = { 47, 72.8, 5225, 300 }, + [8] = { 43.1, 71.8, 5225, 300 }, + [9] = { 43.8, 71.5, 5225, 300 }, + [10] = { 41.3, 70.4, 5225, 300 }, + [11] = { 49.6, 70.4, 5225, 300 }, + [12] = { 43.7, 70.2, 5225, 300 }, + [13] = { 51.7, 70.2, 5225, 300 }, + [14] = { 50.5, 69.6, 5225, 300 }, + [15] = { 42.6, 69.4, 5225, 300 }, + [16] = { 51.8, 69.1, 5225, 300 }, + [17] = { 48.6, 69, 5225, 300 }, + [18] = { 48.5, 68.2, 5225, 300 }, + [19] = { 47.3, 68.1, 5225, 300 }, + [20] = { 44, 67.2, 5225, 300 }, + [21] = { 44.4, 66.4, 5225, 300 }, + [22] = { 45.6, 65.5, 5225, 300 }, + }, + ["lvl"] = "2-3", + }, + [61693] = { + ["coords"] = { + [1] = { 9.7, 16.2, 139, 300 }, + [2] = { 47.5, 76.6, 5225, 300 }, + [3] = { 50.4, 76.2, 5225, 300 }, + [4] = { 48.7, 74, 5225, 300 }, + [5] = { 42.4, 73.1, 5225, 300 }, + [6] = { 48.4, 72.9, 5225, 300 }, + [7] = { 44.6, 72.7, 5225, 300 }, + [8] = { 51.1, 71.3, 5225, 300 }, + [9] = { 52.7, 70.6, 5225, 300 }, + [10] = { 48.3, 70.5, 5225, 300 }, + [11] = { 52.4, 70.4, 5225, 300 }, + [12] = { 46.9, 69.5, 5225, 300 }, + [13] = { 41.8, 69.3, 5225, 300 }, + [14] = { 52.5, 69.3, 5225, 300 }, + [15] = { 49.2, 68.8, 5225, 300 }, + [16] = { 43.3, 68.7, 5225, 300 }, + [17] = { 43.1, 68.4, 5225, 300 }, + [18] = { 50.9, 68.4, 5225, 300 }, + [19] = { 42.6, 67.4, 5225, 300 }, + [20] = { 45.9, 67.2, 5225, 300 }, + [21] = { 44.8, 66.3, 5225, 300 }, + [22] = { 46.2, 65.3, 5225, 300 }, + }, + ["lvl"] = "3-4", + }, + [61694] = { + ["coords"] = { + [1] = { 17.4, 11.9, 139, 300 }, + [2] = { 14.5, 10.5, 139, 300 }, + [3] = { 13.8, 97, 2040, 300 }, + [4] = { 39.4, 74.4, 5225, 300 }, + [5] = { 39.4, 73.4, 5225, 300 }, + [6] = { 60.1, 70.8, 5225, 300 }, + [7] = { 38.9, 69.2, 5225, 300 }, + [8] = { 56.5, 69, 5225, 300 }, + [9] = { 58.3, 68.8, 5225, 300 }, + [10] = { 58.9, 67.7, 5225, 300 }, + [11] = { 40.8, 67.5, 5225, 300 }, + [12] = { 39, 67, 5225, 300 }, + [13] = { 57.7, 66.3, 5225, 300 }, + [14] = { 41.4, 66.2, 5225, 300 }, + [15] = { 47.7, 65.2, 5225, 300 }, + [16] = { 41.4, 65, 5225, 300 }, + [17] = { 53.5, 64.7, 5225, 300 }, + [18] = { 47, 64.5, 5225, 300 }, + [19] = { 51.1, 64.1, 5225, 300 }, + [20] = { 47.4, 62.3, 5225, 300 }, + [21] = { 47, 62.3, 5225, 300 }, + [22] = { 43.7, 62.1, 5225, 300 }, + [23] = { 45.9, 61.7, 5225, 300 }, + [24] = { 51.1, 61.5, 5225, 300 }, + [25] = { 52.1, 60.8, 5225, 300 }, + [26] = { 48.3, 59.3, 5225, 300 }, + [27] = { 49.4, 58.8, 5225, 300 }, + [28] = { 51.6, 57.6, 5225, 300 }, + [29] = { 46.9, 57.1, 5225, 300 }, + [30] = { 49.9, 56, 5225, 300 }, + [31] = { 48.3, 55.4, 5225, 300 }, + [32] = { 47.4, 55.4, 5225, 300 }, + [33] = { 45.5, 54.2, 5225, 300 }, + [34] = { 51, 53.6, 5225, 300 }, + [35] = { 48.8, 52.9, 5225, 300 }, + [36] = { 53.8, 51.6, 5225, 300 }, + [37] = { 44.3, 48.1, 5225, 300 }, + }, + ["lvl"] = "5-7", + }, + [61695] = { + ["coords"] = { + [1] = { 16.9, 12.5, 139, 300 }, + [2] = { 18.8, 11.4, 139, 300 }, + [3] = { 20.5, 9.7, 139, 300 }, + [4] = { 19.9, 7.5, 139, 300 }, + [5] = { 16.8, 94.9, 2040, 300 }, + [6] = { 31.5, 94.4, 2040, 300 }, + [7] = { 28.7, 94, 2040, 300 }, + [8] = { 20.8, 92.3, 2040, 300 }, + [9] = { 12, 91.8, 2040, 300 }, + [10] = { 28.9, 91.5, 2040, 300 }, + [11] = { 39.9, 90.7, 2040, 300 }, + [12] = { 23.6, 89.9, 2040, 300 }, + [13] = { 14.4, 89, 2040, 300 }, + [14] = { 22.9, 88.7, 2040, 300 }, + [15] = { 28, 85.6, 2040, 300 }, + [16] = { 28.8, 82.4, 2040, 300 }, + [17] = { 39.2, 71.6, 5225, 300 }, + [18] = { 59.5, 71.6, 5225, 300 }, + [19] = { 61.9, 70.2, 5225, 300 }, + [20] = { 54.9, 69.8, 5225, 300 }, + [21] = { 53.3, 68.6, 5225, 300 }, + [22] = { 64, 68.1, 5225, 300 }, + [23] = { 51.7, 68, 5225, 300 }, + [24] = { 56, 66.4, 5225, 300 }, + [25] = { 51.5, 66.2, 5225, 300 }, + [26] = { 60.4, 65.9, 5225, 300 }, + [27] = { 48.2, 65.8, 5225, 300 }, + [28] = { 49.2, 65.8, 5225, 300 }, + [29] = { 63.3, 65.3, 5225, 300 }, + [30] = { 42.2, 64.8, 5225, 300 }, + [31] = { 57.6, 64.7, 5225, 300 }, + [32] = { 45.2, 64, 5225, 300 }, + [33] = { 46, 63.7, 5225, 300 }, + [34] = { 49.6, 62.8, 5225, 300 }, + [35] = { 51.4, 62.5, 5225, 300 }, + [36] = { 45.5, 61, 5225, 300 }, + [37] = { 50.1, 59.7, 5225, 300 }, + [38] = { 43.6, 59.2, 5225, 300 }, + [39] = { 47.4, 57.1, 5225, 300 }, + [40] = { 52.3, 56, 5225, 300 }, + [41] = { 43.8, 55.6, 5225, 300 }, + [42] = { 46.8, 55.2, 5225, 300 }, + [43] = { 48.6, 54.9, 5225, 300 }, + [44] = { 51.7, 53.3, 5225, 300 }, + [45] = { 45.4, 53.1, 5225, 300 }, + [46] = { 43.3, 50, 5225, 300 }, + [47] = { 50.6, 50, 5225, 300 }, + [48] = { 45.8, 47.1, 5225, 300 }, + [49] = { 52.8, 46.9, 5225, 300 }, + [50] = { 51.5, 46.7, 5225, 300 }, + [51] = { 47.7, 45.9, 5225, 300 }, + [52] = { 43.5, 45.6, 5225, 300 }, + [53] = { 51.5, 45.5, 5225, 300 }, + [54] = { 56.8, 45.1, 5225, 300 }, + [55] = { 49, 44.8, 5225, 300 }, + [56] = { 44.6, 44.3, 5225, 300 }, + [57] = { 48.7, 44.2, 5225, 300 }, + [58] = { 51.1, 42.7, 5225, 300 }, + [59] = { 51.5, 41.2, 5225, 300 }, + }, + ["lvl"] = "5-7", + }, + [61696] = { + ["coords"] = { + [1] = { 13.5, 12.9, 139, 300 }, + [2] = { 14.5, 12.1, 139, 300 }, + [3] = { 15.9, 11.8, 139, 300 }, + [4] = { 12.8, 98.8, 2040, 300 }, + [5] = { 9.8, 97.3, 2040, 300 }, + [6] = { 15.5, 96.6, 2040, 300 }, + [7] = { 18.4, 94.9, 2040, 300 }, + [8] = { 15.6, 92.8, 2040, 300 }, + [9] = { 34, 76.4, 5225, 300 }, + [10] = { 37.7, 73.5, 5225, 300 }, + [11] = { 55.3, 72, 5225, 300 }, + [12] = { 54.2, 71.4, 5225, 300 }, + [13] = { 36.8, 71.3, 5225, 300 }, + [14] = { 56.5, 71.1, 5225, 300 }, + [15] = { 58.3, 70.7, 5225, 300 }, + [16] = { 34.3, 70.2, 5225, 300 }, + [17] = { 34.3, 68.3, 5225, 300 }, + [18] = { 56, 68.1, 5225, 300 }, + [19] = { 41.8, 67.9, 5225, 300 }, + [20] = { 54, 67.9, 5225, 300 }, + [21] = { 40, 67.4, 5225, 300 }, + [22] = { 37, 66.7, 5225, 300 }, + [23] = { 56.5, 65.8, 5225, 300 }, + [24] = { 39.7, 65.7, 5225, 300 }, + [25] = { 58.8, 65.3, 5225, 300 }, + [26] = { 39, 65.1, 5225, 300 }, + [27] = { 42.8, 65.1, 5225, 300 }, + [28] = { 54.9, 65, 5225, 300 }, + [29] = { 43.6, 64.4, 5225, 300 }, + [30] = { 50.5, 63.8, 5225, 300 }, + [31] = { 55.3, 63.3, 5225, 300 }, + [32] = { 47.5, 63.1, 5225, 300 }, + [33] = { 52.1, 63, 5225, 300 }, + [34] = { 42.2, 63, 5225, 300 }, + [35] = { 45, 62.7, 5225, 300 }, + [36] = { 53.5, 61.8, 5225, 300 }, + [37] = { 48.4, 60.8, 5225, 300 }, + [38] = { 44.6, 60.8, 5225, 300 }, + [39] = { 49.3, 60.4, 5225, 300 }, + [40] = { 45.4, 58.5, 5225, 300 }, + [41] = { 46.6, 58.3, 5225, 300 }, + [42] = { 50.8, 58.1, 5225, 300 }, + [43] = { 53.2, 55.2, 5225, 300 }, + [44] = { 50.2, 55, 5225, 300 }, + [45] = { 44.9, 54.9, 5225, 300 }, + [46] = { 49.7, 54.2, 5225, 300 }, + [47] = { 48, 53.9, 5225, 300 }, + [48] = { 53.3, 53.2, 5225, 300 }, + [49] = { 46.8, 53.2, 5225, 300 }, + [50] = { 46.2, 53.1, 5225, 300 }, + [51] = { 50.2, 51.6, 5225, 300 }, + [52] = { 43.6, 51.6, 5225, 300 }, + [53] = { 45.3, 51.2, 5225, 300 }, + [54] = { 46, 50, 5225, 300 }, + [55] = { 43.9, 49, 5225, 300 }, + [56] = { 42.4, 48.3, 5225, 300 }, + [57] = { 45.2, 47.9, 5225, 300 }, + [58] = { 46.5, 47.1, 5225, 300 }, + [59] = { 45.2, 46.1, 5225, 300 }, + }, + ["lvl"] = "5-7", + }, + [61697] = { + ["coords"] = { + [1] = { 18.9, 12.2, 139, 300 }, + [2] = { 16.6, 11.9, 139, 300 }, + [3] = { 20.2, 11.4, 139, 300 }, + [4] = { 17.4, 11.2, 139, 300 }, + [5] = { 19.9, 10.4, 139, 300 }, + [6] = { 17.3, 10.3, 139, 300 }, + [7] = { 18.1, 10, 139, 300 }, + [8] = { 18.6, 9.8, 139, 300 }, + [9] = { 18.5, 9.7, 139, 300 }, + [10] = { 16.9, 9.7, 139, 300 }, + [11] = { 19.7, 9.4, 139, 300 }, + [12] = { 21.1, 8.9, 139, 300 }, + [13] = { 19.2, 8.9, 139, 300 }, + [14] = { 19.4, 8.2, 139, 300 }, + [15] = { 20.8, 7.8, 139, 300 }, + [16] = { 62, 71.2, 5225, 300 }, + [17] = { 59.1, 70.8, 5225, 300 }, + [18] = { 63.7, 70.1, 5225, 300 }, + [19] = { 60.2, 69.9, 5225, 300 }, + [20] = { 63.3, 68.9, 5225, 300 }, + [21] = { 60.1, 68.8, 5225, 300 }, + [22] = { 61.1, 68.4, 5225, 300 }, + [23] = { 57.2, 68.3, 5225, 300 }, + [24] = { 61.6, 68.2, 5225, 300 }, + [25] = { 61.5, 68, 5225, 300 }, + [26] = { 59.5, 68, 5225, 300 }, + [27] = { 63, 67.6, 5225, 300 }, + [28] = { 64.8, 67, 5225, 300 }, + [29] = { 62.5, 67, 5225, 300 }, + [30] = { 56.8, 66.9, 5225, 300 }, + [31] = { 58.7, 66.9, 5225, 300 }, + [32] = { 60.6, 66.4, 5225, 300 }, + [33] = { 62.7, 66.2, 5225, 300 }, + [34] = { 64.4, 65.7, 5225, 300 }, + [35] = { 58.1, 65.3, 5225, 300 }, + [36] = { 60.9, 65.2, 5225, 300 }, + [37] = { 62.2, 64.7, 5225, 300 }, + [38] = { 58.5, 64.4, 5225, 300 }, + [39] = { 59.6, 64.3, 5225, 300 }, + [40] = { 60.5, 63.8, 5225, 300 }, + }, + ["lvl"] = "5-6", + }, + [61698] = { + ["coords"] = { + [1] = { 18.2, 11.5, 139, 300 }, + [2] = { 20.1, 10.9, 139, 300 }, + [3] = { 17.5, 10.7, 139, 300 }, + [4] = { 20.3, 9.4, 139, 300 }, + [5] = { 17.9, 8.9, 139, 300 }, + [6] = { 20.4, 8.4, 139, 300 }, + [7] = { 19.2, 7.7, 139, 300 }, + [8] = { 61.1, 70.2, 5225, 300 }, + [9] = { 63.5, 69.5, 5225, 300 }, + [10] = { 60.2, 69.3, 5225, 300 }, + [11] = { 63.7, 67.6, 5225, 300 }, + [12] = { 60.7, 67, 5225, 300 }, + [13] = { 63.9, 66.4, 5225, 300 }, + [14] = { 62.4, 65.5, 5225, 300 }, + [15] = { 63.2, 63.8, 5225, 300 }, + }, + ["lvl"] = "6-7", + }, + [61699] = { + ["coords"] = { + [1] = { 20.6, 8.9, 139, 150 }, + [2] = { 64.2, 67, 5225, 150 }, + }, + ["lvl"] = "8", + }, + [61700] = { + ["coords"] = { + [1] = { 35.2, 98.1, 2040, 300 }, + [2] = { 24.7, 94.6, 2040, 300 }, + [3] = { 21.6, 94.5, 2040, 300 }, + [4] = { 0.3, 94.3, 2040, 300 }, + [5] = { 27.5, 93.5, 2040, 300 }, + [6] = { 17.8, 92.3, 2040, 300 }, + [7] = { 5, 90.3, 2040, 300 }, + [8] = { 37.3, 88.7, 2040, 300 }, + [9] = { 39.6, 87.8, 2040, 300 }, + [10] = { 26.1, 87.2, 2040, 300 }, + [11] = { 9.7, 85.8, 2040, 300 }, + [12] = { 26.7, 60.3, 5225, 300 }, + [13] = { 30.1, 55.5, 5225, 300 }, + [14] = { 33, 52.4, 5225, 300 }, + [15] = { 29.3, 52.2, 5225, 300 }, + [16] = { 53.4, 52.1, 5225, 300 }, + [17] = { 34.1, 51.1, 5225, 300 }, + [18] = { 37, 50.3, 5225, 300 }, + [19] = { 53.2, 50.2, 5225, 300 }, + [20] = { 54.5, 48.6, 5225, 300 }, + [21] = { 36.8, 48.5, 5225, 300 }, + [22] = { 30.1, 48.5, 5225, 300 }, + [23] = { 49.5, 47, 5225, 300 }, + [24] = { 48.1, 47, 5225, 300 }, + [25] = { 37.9, 46.8, 5225, 300 }, + [26] = { 33.8, 46.6, 5225, 300 }, + [27] = { 50.9, 46.5, 5225, 300 }, + [28] = { 46.2, 45.9, 5225, 300 }, + [29] = { 40.1, 44.9, 5225, 300 }, + [30] = { 55.6, 44.2, 5225, 300 }, + [31] = { 56.6, 43.8, 5225, 300 }, + [32] = { 50.2, 43.5, 5225, 300 }, + [33] = { 42.4, 42.8, 5225, 300 }, + }, + ["lvl"] = "6-8", + }, + [61701] = { + ["coords"] = { + [1] = { 32.7, 99.8, 2040, 300 }, + [2] = { 21.6, 98.3, 2040, 300 }, + [3] = { 39.2, 97.1, 2040, 300 }, + [4] = { 38, 96.7, 2040, 300 }, + [5] = { 6.8, 95.5, 2040, 300 }, + [6] = { 34.5, 95.3, 2040, 300 }, + [7] = { 23.3, 95.2, 2040, 300 }, + [8] = { 30.3, 94.7, 2040, 300 }, + [9] = { 24.6, 94.1, 2040, 300 }, + [10] = { 39.8, 93.5, 2040, 300 }, + [11] = { 18.2, 92.8, 2040, 300 }, + [12] = { 29.7, 92.5, 2040, 300 }, + [13] = { 36.5, 91.2, 2040, 300 }, + [14] = { 24, 91.1, 2040, 300 }, + [15] = { 31.3, 91.1, 2040, 300 }, + [16] = { 33, 90.8, 2040, 300 }, + [17] = { 41.4, 90.6, 2040, 300 }, + [18] = { 36.7, 89.9, 2040, 300 }, + [19] = { 31.5, 89.4, 2040, 300 }, + [20] = { 38.3, 89.3, 2040, 300 }, + [21] = { 28, 88.3, 2040, 300 }, + [22] = { 24.8, 87.6, 2040, 300 }, + [23] = { 32.6, 86.9, 2040, 300 }, + [24] = { 37.2, 86.3, 2040, 300 }, + [25] = { 28.9, 85.9, 2040, 300 }, + [26] = { 34.1, 85, 2040, 300 }, + [27] = { 27.5, 82.7, 2040, 300 }, + [28] = { 49.5, 55.3, 5225, 300 }, + [29] = { 54.4, 50.7, 5225, 300 }, + [30] = { 33.5, 50.1, 5225, 300 }, + [31] = { 55.4, 49.8, 5225, 300 }, + [32] = { 47.3, 49.7, 5225, 300 }, + [33] = { 53.3, 49.5, 5225, 300 }, + [34] = { 48, 48.7, 5225, 300 }, + [35] = { 56.5, 48.2, 5225, 300 }, + [36] = { 55.9, 48, 5225, 300 }, + [37] = { 41, 47.4, 5225, 300 }, + [38] = { 54.2, 47.3, 5225, 300 }, + [39] = { 48.9, 47.3, 5225, 300 }, + [40] = { 52.2, 47, 5225, 300 }, + [41] = { 49.5, 46.7, 5225, 300 }, + [42] = { 36.9, 46.6, 5225, 300 }, + [43] = { 56.7, 46.5, 5225, 300 }, + [44] = { 46.4, 46.1, 5225, 300 }, + [45] = { 51.9, 46, 5225, 300 }, + [46] = { 55.2, 45.4, 5225, 300 }, + [47] = { 49.2, 45.3, 5225, 300 }, + [48] = { 52.7, 45.3, 5225, 300 }, + [49] = { 53.5, 45.2, 5225, 300 }, + [50] = { 57.5, 45.1, 5225, 300 }, + [51] = { 55.2, 44.8, 5225, 300 }, + [52] = { 52.8, 44.5, 5225, 300 }, + [53] = { 56, 44.5, 5225, 300 }, + [54] = { 51.1, 44, 5225, 300 }, + [55] = { 49.6, 43.7, 5225, 300 }, + [56] = { 53.3, 43.4, 5225, 300 }, + [57] = { 55.5, 43, 5225, 300 }, + [58] = { 51.5, 42.9, 5225, 300 }, + [59] = { 54, 42.4, 5225, 300 }, + [60] = { 50.9, 41.4, 5225, 300 }, + }, + ["lvl"] = "7", + }, + [61702] = { + ["coords"] = { + [1] = { 11.7, 83, 2040, 300 }, + [2] = { 2.1, 82.7, 2040, 300 }, + [3] = { 1.9, 82.6, 2040, 300 }, + [4] = { 6.3, 79.4, 2040, 300 }, + [5] = { 6.1, 66.3, 2040, 300 }, + [6] = { 6.6, 63.5, 2040, 300 }, + [7] = { 7.4, 59.1, 2040, 300 }, + [8] = { 28.7, 50.4, 5225, 300 }, + [9] = { 28.9, 48.3, 5225, 300 }, + [10] = { 30.1, 46.5, 5225, 300 }, + [11] = { 32.4, 45.2, 5225, 300 }, + [12] = { 34.5, 43.3, 5225, 300 }, + [13] = { 36.8, 42.3, 5225, 300 }, + [14] = { 32.5, 41.6, 5225, 300 }, + [15] = { 43.3, 41.5, 5225, 300 }, + [16] = { 38.8, 41.3, 5225, 300 }, + [17] = { 38.7, 41.3, 5225, 300 }, + [18] = { 33.9, 40.6, 5225, 300 }, + [19] = { 40.8, 39.8, 5225, 300 }, + [20] = { 34.6, 39.5, 5225, 300 }, + [21] = { 36.3, 37.4, 5225, 300 }, + [22] = { 36.6, 36.9, 5225, 300 }, + [23] = { 40.7, 33.6, 5225, 300 }, + [24] = { 40.9, 32.2, 5225, 300 }, + [25] = { 41.3, 30.2, 5225, 300 }, + }, + ["lvl"] = "6-8", + }, + [61703] = { + ["coords"] = { + [1] = { 18.6, 87.3, 2040, 300 }, + [2] = { 14.8, 85.4, 2040, 300 }, + [3] = { 1, 84, 2040, 300 }, + [4] = { 5.1, 82, 2040, 300 }, + [5] = { 3.4, 82, 2040, 300 }, + [6] = { 10.8, 81.2, 2040, 300 }, + [7] = { 7.9, 81.2, 2040, 300 }, + [8] = { 28.6, 48.6, 5225, 300 }, + [9] = { 30, 47.7, 5225, 300 }, + [10] = { 31.1, 46.4, 5225, 300 }, + [11] = { 32.6, 44.7, 5225, 300 }, + [12] = { 33.2, 44.6, 5225, 300 }, + [13] = { 32.8, 44.3, 5225, 300 }, + [14] = { 46.6, 43.5, 5225, 300 }, + [15] = { 35.2, 42.9, 5225, 300 }, + [16] = { 34.2, 42.8, 5225, 300 }, + [17] = { 36, 42.8, 5225, 300 }, + [18] = { 44.8, 42.6, 5225, 300 }, + [19] = { 37.6, 42.1, 5225, 300 }, + [20] = { 37.1, 42, 5225, 300 }, + [21] = { 38.2, 42, 5225, 300 }, + [22] = { 33.5, 41.7, 5225, 300 }, + [23] = { 40.2, 41, 5225, 300 }, + [24] = { 39.4, 41, 5225, 300 }, + [25] = { 42.9, 40.6, 5225, 300 }, + [26] = { 41.5, 40.6, 5225, 300 }, + [27] = { 35.7, 38.9, 5225, 300 }, + }, + ["lvl"] = "6-8", + }, + [61704] = { + ["coords"] = { + [1] = { 17.7, 86.9, 2040, 300 }, + [2] = { 13.5, 84.2, 2040, 300 }, + [3] = { 11.6, 83.2, 2040, 300 }, + [4] = { 5.2, 82.4, 2040, 300 }, + [5] = { 0.9, 82, 2040, 300 }, + [6] = { 9.1, 80, 2040, 300 }, + [7] = { 2.1, 68.7, 2040, 300 }, + [8] = { 6.4, 64.9, 2040, 300 }, + [9] = { 7.3, 60.5, 2040, 300 }, + [10] = { 28, 50.2, 5225, 300 }, + [11] = { 28.1, 48.9, 5225, 300 }, + [12] = { 30.7, 47.2, 5225, 300 }, + [13] = { 29.1, 46.7, 5225, 300 }, + [14] = { 31, 45.8, 5225, 300 }, + [15] = { 31.6, 45.8, 5225, 300 }, + [16] = { 31.9, 45.1, 5225, 300 }, + [17] = { 33.7, 44.2, 5225, 300 }, + [18] = { 46.2, 43.3, 5225, 300 }, + [19] = { 35.2, 43.3, 5225, 300 }, + [20] = { 32.7, 43.2, 5225, 300 }, + [21] = { 34.3, 43.2, 5225, 300 }, + [22] = { 36.1, 42.3, 5225, 300 }, + [23] = { 44.2, 42, 5225, 300 }, + [24] = { 43.3, 41.6, 5225, 300 }, + [25] = { 32.9, 41.4, 5225, 300 }, + [26] = { 32.1, 41.4, 5225, 300 }, + [27] = { 31.5, 41.3, 5225, 300 }, + [28] = { 40.3, 41.2, 5225, 300 }, + [29] = { 38.2, 41, 5225, 300 }, + [30] = { 35.6, 40.5, 5225, 300 }, + [31] = { 42.1, 40.1, 5225, 300 }, + [32] = { 30.5, 39.9, 5225, 300 }, + [33] = { 30.2, 39.7, 5225, 300 }, + [34] = { 37.2, 39.5, 5225, 300 }, + [35] = { 34.9, 39.2, 5225, 300 }, + [36] = { 29.7, 39, 5225, 300 }, + [37] = { 28.7, 38.1, 5225, 300 }, + [38] = { 27.9, 37.9, 5225, 300 }, + [39] = { 35.8, 37.2, 5225, 300 }, + [40] = { 27.1, 37, 5225, 300 }, + [41] = { 37.1, 36.2, 5225, 300 }, + [42] = { 38.8, 34.7, 5225, 300 }, + [43] = { 40.8, 32.9, 5225, 300 }, + [44] = { 41.2, 30.8, 5225, 300 }, + }, + ["lvl"] = "6-8", + }, + [61705] = { + ["coords"] = { + [1] = { 33.5, 67.2, 5225, 300 }, + [2] = { 35.2, 66.1, 5225, 300 }, + [3] = { 33.5, 65.7, 5225, 300 }, + [4] = { 36.4, 65.6, 5225, 300 }, + [5] = { 38.2, 63.8, 5225, 300 }, + [6] = { 38.5, 61.2, 5225, 300 }, + [7] = { 32.9, 60.8, 5225, 300 }, + [8] = { 35.7, 60.2, 5225, 300 }, + [9] = { 38.4, 59.6, 5225, 300 }, + [10] = { 33.1, 57.4, 5225, 300 }, + }, + ["lvl"] = "9", + }, + [61706] = { + ["coords"] = { + [1] = { 34.3, 65.6, 5225, 300 }, + [2] = { 36.1, 65.2, 5225, 300 }, + [3] = { 34.1, 63.7, 5225, 300 }, + [4] = { 36.2, 63.6, 5225, 300 }, + [5] = { 37.2, 63.5, 5225, 300 }, + [6] = { 35.6, 62.5, 5225, 300 }, + [7] = { 36.8, 62.2, 5225, 300 }, + [8] = { 39, 62.1, 5225, 300 }, + [9] = { 35.1, 61.7, 5225, 300 }, + [10] = { 34.3, 61.6, 5225, 300 }, + [11] = { 38.2, 60.7, 5225, 300 }, + [12] = { 36.9, 60.6, 5225, 300 }, + [13] = { 34, 60.5, 5225, 300 }, + [14] = { 38.7, 60.4, 5225, 300 }, + [15] = { 34.7, 60.3, 5225, 300 }, + [16] = { 36.6, 59.8, 5225, 300 }, + [17] = { 34.3, 59.7, 5225, 300 }, + [18] = { 33.3, 58.5, 5225, 300 }, + [19] = { 37.8, 58.4, 5225, 300 }, + [20] = { 32.6, 55.1, 5225, 300 }, + [21] = { 31.4, 54.6, 5225, 300 }, + [22] = { 31.9, 54.1, 5225, 300 }, + }, + ["lvl"] = "9", + }, + [61707] = { + ["coords"] = { + [1] = { 34.6, 66.6, 5225, 300 }, + [2] = { 34, 66.4, 5225, 300 }, + [3] = { 35.9, 65.7, 5225, 300 }, + [4] = { 33.7, 64.6, 5225, 300 }, + [5] = { 37.4, 63.8, 5225, 300 }, + [6] = { 39.1, 63.1, 5225, 300 }, + [7] = { 38.7, 63.1, 5225, 300 }, + [8] = { 38.1, 62.8, 5225, 300 }, + [9] = { 38.3, 62.2, 5225, 300 }, + [10] = { 33.9, 62.1, 5225, 300 }, + [11] = { 32.9, 61.4, 5225, 300 }, + [12] = { 37.5, 61.4, 5225, 300 }, + }, + ["lvl"] = "9", + }, + [61708] = { + ["coords"] = { + [1] = { 39, 62.3, 5225, 300 }, + }, + ["lvl"] = "11", + }, + [61709] = { + ["coords"] = { + [1] = { 23.5, 58.9, 5225, 300 }, + [2] = { 25.9, 55.7, 5225, 300 }, + [3] = { 23.1, 54.3, 5225, 300 }, + [4] = { 27.7, 53.5, 5225, 300 }, + [5] = { 22.2, 52.6, 5225, 300 }, + [6] = { 19.1, 52.5, 5225, 300 }, + [7] = { 28.3, 51.4, 5225, 300 }, + [8] = { 21.7, 50.5, 5225, 300 }, + [9] = { 24.9, 50.1, 5225, 300 }, + [10] = { 16, 50.1, 5225, 300 }, + [11] = { 20.3, 49.8, 5225, 300 }, + [12] = { 17.8, 49.2, 5225, 300 }, + [13] = { 19.2, 48.8, 5225, 300 }, + [14] = { 16.3, 48.7, 5225, 300 }, + [15] = { 17.8, 47.6, 5225, 300 }, + [16] = { 29.2, 46.2, 5225, 300 }, + [17] = { 17.2, 45.9, 5225, 300 }, + [18] = { 28, 45.6, 5225, 300 }, + [19] = { 22.6, 45.1, 5225, 300 }, + [20] = { 26.2, 43.7, 5225, 300 }, + [21] = { 18.8, 43.7, 5225, 300 }, + [22] = { 16.6, 42.8, 5225, 300 }, + [23] = { 19.2, 41.5, 5225, 300 }, + [24] = { 16.9, 41.1, 5225, 300 }, + [25] = { 16, 40.2, 5225, 300 }, + [26] = { 21.6, 39.5, 5225, 300 }, + [27] = { 14.7, 38.8, 5225, 300 }, + [28] = { 19.8, 38.2, 5225, 300 }, + }, + ["lvl"] = "9-10", + }, + [61710] = { + ["coords"] = { + [1] = { 25.3, 57.5, 5225, 300 }, + [2] = { 24.2, 57, 5225, 300 }, + [3] = { 26.5, 55.3, 5225, 300 }, + [4] = { 26, 55.1, 5225, 300 }, + [5] = { 25.6, 54.5, 5225, 300 }, + [6] = { 20.4, 54.1, 5225, 300 }, + [7] = { 26.5, 53.4, 5225, 300 }, + [8] = { 26.9, 53.4, 5225, 300 }, + [9] = { 14.2, 52.6, 5225, 300 }, + [10] = { 18.2, 51.8, 5225, 300 }, + [11] = { 13.4, 50.4, 5225, 300 }, + [12] = { 27.9, 50.4, 5225, 300 }, + [13] = { 16.9, 50.3, 5225, 300 }, + [14] = { 14.3, 50.2, 5225, 300 }, + [15] = { 14.1, 49.9, 5225, 300 }, + [16] = { 29.1, 48.9, 5225, 300 }, + [17] = { 20.2, 48.6, 5225, 300 }, + [18] = { 21.2, 47.9, 5225, 300 }, + [19] = { 16.8, 46.9, 5225, 300 }, + [20] = { 22.8, 46.6, 5225, 300 }, + [21] = { 23.9, 46.4, 5225, 300 }, + [22] = { 17.5, 46.3, 5225, 300 }, + [23] = { 27.4, 46.1, 5225, 300 }, + [24] = { 25.8, 45.3, 5225, 300 }, + [25] = { 21.2, 45.3, 5225, 300 }, + [26] = { 17.3, 44.1, 5225, 300 }, + [27] = { 21.8, 42.5, 5225, 300 }, + [28] = { 14.9, 41.9, 5225, 300 }, + [29] = { 18, 41.8, 5225, 300 }, + [30] = { 14.7, 41, 5225, 300 }, + [31] = { 21.1, 40.5, 5225, 300 }, + [32] = { 19.5, 40.1, 5225, 300 }, + }, + ["lvl"] = "9-10", + }, + [61711] = { + ["coords"] = { + [1] = { 21.5, 53.8, 5225, 300 }, + [2] = { 16.3, 51.5, 5225, 300 }, + [3] = { 24.5, 49.7, 5225, 300 }, + [4] = { 21.2, 49.2, 5225, 300 }, + [5] = { 22.9, 48.2, 5225, 300 }, + [6] = { 21.5, 46.3, 5225, 300 }, + [7] = { 16.9, 46, 5225, 300 }, + [8] = { 18.6, 46, 5225, 300 }, + [9] = { 15.7, 45.6, 5225, 300 }, + [10] = { 21.1, 44.2, 5225, 300 }, + [11] = { 15.3, 44, 5225, 300 }, + [12] = { 14.6, 42.6, 5225, 300 }, + [13] = { 21.3, 42.4, 5225, 300 }, + [14] = { 15.9, 42.1, 5225, 300 }, + [15] = { 12.4, 42, 5225, 300 }, + [16] = { 20.2, 41.6, 5225, 300 }, + [17] = { 16.6, 40.4, 5225, 300 }, + [18] = { 18.2, 40.1, 5225, 300 }, + [19] = { 13.1, 40, 5225, 300 }, + [20] = { 18.5, 38.5, 5225, 300 }, + [21] = { 14.8, 38, 5225, 300 }, + }, + ["lvl"] = "9-11", + }, + [61712] = { + ["coords"] = { + [1] = { 13.7, 50.8, 5225, 300 }, + }, + ["lvl"] = "12", + ["rnk"] = "1", + }, + [61713] = { + ["coords"] = { + [1] = { 16.8, 42.1, 5225, 300 }, + }, + ["lvl"] = "11", + }, + [61714] = { + ["coords"] = { + [1] = { 3.6, 59.2, 2040, 300 }, + [2] = { 1.2, 57.7, 2040, 300 }, + [3] = { 3.2, 53.1, 2040, 300 }, + [4] = { 5.4, 49.5, 2040, 300 }, + [5] = { 1.3, 47.3, 2040, 300 }, + [6] = { 5.4, 46.2, 2040, 300 }, + [7] = { 2.7, 43.1, 2040, 300 }, + [8] = { 6.4, 43.1, 2040, 300 }, + [9] = { 32.4, 37.4, 5225, 300 }, + [10] = { 32.4, 35.5, 5225, 300 }, + [11] = { 27.5, 35.1, 5225, 300 }, + [12] = { 35.5, 34.1, 5225, 300 }, + [13] = { 28.4, 33.6, 5225, 300 }, + [14] = { 36.7, 33.3, 5225, 300 }, + [15] = { 27.4, 32.9, 5225, 300 }, + [16] = { 30.3, 32.8, 5225, 300 }, + [17] = { 37, 30.8, 5225, 300 }, + [18] = { 26, 30.4, 5225, 300 }, + [19] = { 39.5, 30.2, 5225, 300 }, + [20] = { 38.3, 29.5, 5225, 300 }, + [21] = { 29.1, 29.4, 5225, 300 }, + [22] = { 37.1, 28.4, 5225, 300 }, + [23] = { 34.1, 27.6, 5225, 300 }, + [24] = { 37, 27.6, 5225, 300 }, + [25] = { 39.3, 27.3, 5225, 300 }, + [26] = { 36.5, 27, 5225, 300 }, + [27] = { 30.3, 26.3, 5225, 300 }, + [28] = { 40.3, 25.6, 5225, 300 }, + [29] = { 38.4, 24.6, 5225, 300 }, + [30] = { 37, 24.1, 5225, 300 }, + [31] = { 40.3, 24.1, 5225, 300 }, + [32] = { 27.4, 23.8, 5225, 300 }, + [33] = { 35.3, 23.8, 5225, 300 }, + [34] = { 29, 22.7, 5225, 300 }, + [35] = { 33.1, 22.7, 5225, 300 }, + [36] = { 39.1, 22.6, 5225, 300 }, + [37] = { 40.8, 22.6, 5225, 300 }, + }, + ["lvl"] = "7-8", + }, + [61715] = { + ["coords"] = { + [1] = { 3, 98.1, 2040, 300 }, + [2] = { 10.6, 93.3, 2040, 300 }, + [3] = { 2.3, 93.1, 2040, 300 }, + [4] = { 3.4, 87.8, 2040, 300 }, + [5] = { 0.1, 60.1, 2040, 300 }, + [6] = { 5.6, 58.1, 2040, 300 }, + [7] = { 4, 48.1, 2040, 300 }, + [8] = { 26, 58.9, 5225, 300 }, + [9] = { 27.9, 58.1, 5225, 300 }, + [10] = { 27.3, 57.3, 5225, 300 }, + [11] = { 28.5, 55.6, 5225, 300 }, + [12] = { 30.5, 54.8, 5225, 300 }, + [13] = { 27.8, 54.3, 5225, 300 }, + [14] = { 29.8, 54.1, 5225, 300 }, + [15] = { 29.7, 52.9, 5225, 300 }, + [16] = { 35.7, 51.4, 5225, 300 }, + [17] = { 30.4, 50.9, 5225, 300 }, + [18] = { 33.7, 50.4, 5225, 300 }, + [19] = { 34.8, 49.7, 5225, 300 }, + [20] = { 30.4, 49.5, 5225, 300 }, + [21] = { 39.2, 48.6, 5225, 300 }, + [22] = { 31.5, 47.9, 5225, 300 }, + [23] = { 42.8, 46.4, 5225, 300 }, + [24] = { 38.9, 46.3, 5225, 300 }, + [25] = { 33.8, 45.9, 5225, 300 }, + [26] = { 39.4, 43.7, 5225, 300 }, + [27] = { 31.9, 39.6, 5225, 300 }, + [28] = { 32.6, 38.7, 5225, 300 }, + [29] = { 33.3, 37.4, 5225, 300 }, + [30] = { 34, 36.6, 5225, 300 }, + [31] = { 30.6, 36.3, 5225, 300 }, + [32] = { 29.3, 35.6, 5225, 300 }, + [33] = { 36, 35, 5225, 300 }, + [34] = { 34.4, 35, 5225, 300 }, + [35] = { 28.8, 34.9, 5225, 300 }, + [36] = { 27.2, 34, 5225, 300 }, + [37] = { 31, 33.2, 5225, 300 }, + [38] = { 36.6, 32.3, 5225, 300 }, + [39] = { 26.1, 32, 5225, 300 }, + [40] = { 26.5, 31.5, 5225, 300 }, + [41] = { 37.8, 30.6, 5225, 300 }, + [42] = { 30.8, 30, 5225, 300 }, + [43] = { 40.4, 29.7, 5225, 300 }, + [44] = { 27.2, 29.6, 5225, 300 }, + [45] = { 28.6, 28.5, 5225, 300 }, + [46] = { 30, 27.5, 5225, 300 }, + [47] = { 36.9, 25.8, 5225, 300 }, + [48] = { 28.6, 25.6, 5225, 300 }, + [49] = { 29.4, 25.4, 5225, 300 }, + [50] = { 39.7, 25, 5225, 300 }, + [51] = { 31.9, 24.2, 5225, 300 }, + [52] = { 34, 22.8, 5225, 300 }, + [53] = { 26.8, 22.5, 5225, 300 }, + [54] = { 33.5, 21.5, 5225, 300 }, + [55] = { 29, 21.1, 5225, 300 }, + [56] = { 31.1, 20.9, 5225, 300 }, + }, + ["lvl"] = "7-8", + }, + [61716] = { + ["coords"] = { + [1] = { 0.5, 88.8, 2040, 300 }, + [2] = { 6.4, 86.5, 2040, 300 }, + [3] = { 2.2, 85.7, 2040, 300 }, + [4] = { 0.8, 61.7, 2040, 300 }, + [5] = { 4.7, 60.2, 2040, 300 }, + [6] = { 5.3, 53.7, 2040, 300 }, + [7] = { 0.9, 45.7, 2040, 300 }, + [8] = { 3.1, 41.1, 2040, 300 }, + [9] = { 29.4, 58.9, 5225, 300 }, + [10] = { 27.2, 56.2, 5225, 300 }, + [11] = { 32.4, 51.5, 5225, 300 }, + [12] = { 34.8, 51.4, 5225, 300 }, + [13] = { 29.5, 50.8, 5225, 300 }, + [14] = { 31, 50.1, 5225, 300 }, + [15] = { 37.7, 49.2, 5225, 300 }, + [16] = { 31.8, 48.4, 5225, 300 }, + [17] = { 33.7, 47.9, 5225, 300 }, + [18] = { 35.1, 45.5, 5225, 300 }, + [19] = { 38, 44.2, 5225, 300 }, + [20] = { 36.7, 43.5, 5225, 300 }, + [21] = { 40.8, 43.1, 5225, 300 }, + [22] = { 38.8, 42.8, 5225, 300 }, + [23] = { 29.2, 37, 5225, 300 }, + [24] = { 31.1, 34.6, 5225, 300 }, + [25] = { 34.4, 34.1, 5225, 300 }, + [26] = { 33.5, 33.9, 5225, 300 }, + [27] = { 29.3, 32.8, 5225, 300 }, + [28] = { 38.1, 31.4, 5225, 300 }, + [29] = { 32.8, 30.8, 5225, 300 }, + [30] = { 40, 30.7, 5225, 300 }, + [31] = { 26.8, 30.2, 5225, 300 }, + [32] = { 25.5, 29.3, 5225, 300 }, + [33] = { 40.3, 27.6, 5225, 300 }, + [34] = { 32, 27.4, 5225, 300 }, + [35] = { 28.8, 27.4, 5225, 300 }, + [36] = { 35, 27.3, 5225, 300 }, + [37] = { 32, 25.5, 5225, 300 }, + [38] = { 31.3, 24.6, 5225, 300 }, + [39] = { 38.2, 23.8, 5225, 300 }, + [40] = { 32.4, 22.5, 5225, 300 }, + [41] = { 39.2, 21.6, 5225, 300 }, + }, + ["lvl"] = "7-8", + }, + [61717] = { + ["coords"] = { + [1] = { 0.2, 64.3, 2040, 300 }, + [2] = { 0.7, 56.6, 2040, 300 }, + [3] = { 4.4, 50.6, 2040, 300 }, + [4] = { 0.4, 48.2, 2040, 300 }, + [5] = { 5.1, 41.9, 2040, 300 }, + [6] = { 34.7, 36.7, 5225, 300 }, + [7] = { 32.8, 36.5, 5225, 300 }, + [8] = { 37.5, 33.6, 5225, 300 }, + [9] = { 37.9, 32.7, 5225, 300 }, + [10] = { 27.7, 31.3, 5225, 300 }, + [11] = { 29.9, 30.8, 5225, 300 }, + [12] = { 29.1, 30.6, 5225, 300 }, + [13] = { 38.1, 29, 5225, 300 }, + [14] = { 27.8, 28.4, 5225, 300 }, + [15] = { 39.8, 26.2, 5225, 300 }, + [16] = { 37.9, 25, 5225, 300 }, + [17] = { 36.1, 25, 5225, 300 }, + [18] = { 28.9, 23.9, 5225, 300 }, + [19] = { 31.4, 22.3, 5225, 300 }, + [20] = { 40.2, 22, 5225, 300 }, + [21] = { 28.3, 21.4, 5225, 300 }, + }, + ["lvl"] = "7-8", + }, + [61718] = { + ["coords"] = { + [1] = { 1.5, 53.3, 2040, 300 }, + [2] = { 1.1, 50.9, 2040, 300 }, + [3] = { 28.9, 36.2, 5225, 300 }, + [4] = { 29.2, 32.8, 5225, 300 }, + [5] = { 31.2, 32.1, 5225, 300 }, + [6] = { 32.9, 31.8, 5225, 300 }, + [7] = { 30.3, 31.8, 5225, 300 }, + [8] = { 31, 31.7, 5225, 300 }, + [9] = { 28.8, 31.7, 5225, 300 }, + [10] = { 31.9, 31.3, 5225, 300 }, + [11] = { 32.3, 29.9, 5225, 300 }, + [12] = { 30.2, 29.9, 5225, 300 }, + [13] = { 29.6, 29.6, 5225, 300 }, + [14] = { 33.3, 29, 5225, 300 }, + [15] = { 32.6, 29, 5225, 300 }, + [16] = { 30.1, 28.9, 5225, 300 }, + [17] = { 30.7, 28.6, 5225, 300 }, + [18] = { 31.4, 27.9, 5225, 300 }, + [19] = { 38.5, 27.4, 5225, 300 }, + [20] = { 38.3, 26.3, 5225, 300 }, + [21] = { 29.8, 24.8, 5225, 300 }, + [22] = { 30.3, 24.3, 5225, 300 }, + [23] = { 29.4, 23.5, 5225, 300 }, + [24] = { 30.5, 23.5, 5225, 300 }, + }, + ["lvl"] = "9", + }, + [61719] = { + ["coords"] = { + [1] = { 30.9, 29.3, 5225, 150 }, + }, + ["lvl"] = "10", + }, + [61720] = { + ["coords"] = { + [1] = { 49.8, 63.9, 5536, 300 }, + }, + ["lvl"] = "10", + }, + [61721] = { + ["coords"] = { + [1] = { 49.7, 63.4, 5536, 300 }, + }, + ["lvl"] = "15", + }, + [61722] = { + ["coords"] = { + [1] = { 48.5, 65.7, 5536, 300 }, + }, + ["lvl"] = "35", + }, + [61723] = { + ["coords"] = { + [1] = { 98.9, 57.9, 14, 300 }, + [2] = { 47.6, 69.1, 5536, 300 }, + [3] = { 47.3, 69, 5536, 300 }, + [4] = { 47.9, 68.8, 5536, 300 }, + [5] = { 48.1, 68.4, 5536, 300 }, + [6] = { 48.4, 67, 5536, 300 }, + [7] = { 37.2, 62, 5536, 300 }, + }, + ["lvl"] = "55", + ["rnk"] = "1", + }, + [61724] = { + ["coords"] = { + [1] = { 47.5, 68.7, 5536, 300 }, + }, + ["lvl"] = "25", + }, + [61725] = { + ["coords"] = { + [1] = { 99.1, 60.7, 14, 300 }, + [2] = { 37.5, 67.9, 5536, 300 }, + }, + ["lvl"] = "20", + }, + [61726] = { + ["coords"] = { + [1] = { 47.7, 68.1, 5536, 300 }, + }, + ["lvl"] = "15", + }, + [61727] = { + ["coords"] = { + [1] = { 47.6, 69.2, 5536, 300 }, + }, + ["lvl"] = "15", + }, + [61728] = { + ["coords"] = { + [1] = { 48.5, 69.2, 5536, 300 }, + }, + ["lvl"] = "20", + }, + [61729] = { + ["coords"] = { + [1] = { 48.2, 67.6, 5536, 300 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [61730] = { + ["coords"] = { + [1] = { 47.5, 68.5, 5536, 300 }, + }, + ["lvl"] = "40", + }, + [61731] = { + ["coords"] = { + [1] = { 59.4, 26.1, 5536, 300 }, + }, + ["lvl"] = "20", + }, + [61732] = { + ["coords"] = { + [1] = { 58.3, 24.4, 5536, 300 }, + }, + ["lvl"] = "15", + }, + [61733] = { + ["coords"] = { + [1] = { 48.9, 64.2, 5536, 300 }, + }, + ["lvl"] = "35", + }, + [61734] = { + ["coords"] = { + [1] = { 99.7, 61, 14, 300 }, + [2] = { 99.1, 60.3, 14, 300 }, + [3] = { 99.9, 59.7, 14, 300 }, + [4] = { 99.1, 59.6, 14, 300 }, + [5] = { 98.1, 57.6, 14, 300 }, + [6] = { 99.1, 56.4, 14, 300 }, + [7] = { 99.6, 56.2, 14, 300 }, + [8] = { 99, 56, 14, 300 }, + [9] = { 38.9, 68.5, 5536, 300 }, + [10] = { 37.6, 67, 5536, 300 }, + [11] = { 39.4, 65.8, 5536, 300 }, + [12] = { 37.5, 65.6, 5536, 300 }, + [13] = { 35.5, 61.3, 5536, 300 }, + [14] = { 39.9, 59, 5536, 300 }, + [15] = { 37.6, 58.8, 5536, 300 }, + [16] = { 38.6, 58.3, 5536, 300 }, + [17] = { 37.4, 57.9, 5536, 300 }, + [18] = { 41.8, 56.2, 5536, 300 }, + }, + ["lvl"] = "5", + }, + [61735] = { + ["coords"] = { + [1] = { 48.3, 69, 5536, 300 }, + [2] = { 47.5, 68.6, 5536, 300 }, + [3] = { 48.5, 68.3, 5536, 300 }, + }, + ["lvl"] = "5", + }, + [61736] = { + ["coords"] = { + [1] = { 48.4, 68.1, 5536, 300 }, + [2] = { 48.4, 68, 5536, 300 }, + [3] = { 48.1, 67.9, 5536, 300 }, + [4] = { 49.4, 63.2, 5536, 300 }, + [5] = { 49.5, 63.2, 5536, 300 }, + }, + ["lvl"] = "5", + }, + [61737] = { + ["coords"] = { + [1] = { 98.2, 58.4, 14, 300 }, + [2] = { 35.6, 63, 5536, 300 }, + }, + ["lvl"] = "40", + }, + [61738] = { + ["coords"] = { + [1] = { 47.5, 67.1, 5536, 300 }, + }, + ["lvl"] = "20", + }, + [61739] = { + ["coords"] = { + [1] = { 49.1, 63.5, 5536, 300 }, + }, + ["lvl"] = "20", + }, + [61740] = { + ["coords"] = { + [1] = { 47.9, 63.6, 5536, 300 }, + }, + ["lvl"] = "20", + }, + [61741] = { + ["coords"] = { + [1] = { 99.1, 58.3, 14, 300 }, + [2] = { 37.5, 62.8, 5536, 300 }, + }, + ["lvl"] = "15", + }, + [61742] = { + ["coords"] = { + [1] = { 49.7, 64.3, 5536, 300 }, + }, + ["lvl"] = "15", + }, + [61743] = { + ["coords"] = { + [1] = { 48.4, 69.2, 5536, 300 }, + }, + ["lvl"] = "25", + }, + [61744] = { + ["coords"] = { + [1] = { 49.5, 24.8, 5536, 300 }, + }, + ["lvl"] = "8", + }, + [61745] = { + ["coords"] = { + [1] = { 58, 24.8, 5536, 300 }, + }, + ["lvl"] = "7", + }, + [61746] = { + ["coords"] = { + [1] = { 58.5, 25, 5536, 300 }, + }, + ["lvl"] = "15", + }, + [61747] = { + ["coords"] = { + [1] = { 57.7, 25.4, 5536, 300 }, + }, + ["lvl"] = "30", + }, + [61748] = { + ["coords"] = { + [1] = { 61.3, 84.5, 5536, 300 }, + }, + ["lvl"] = "55", + }, + [61749] = { + ["coords"] = { + [1] = { 64.3, 83.1, 5536, 300 }, + }, + ["lvl"] = "22", + }, + [61750] = { + ["coords"] = { + [1] = { 61.7, 84.3, 5536, 300 }, + }, + ["lvl"] = "24", + }, + [61751] = { + ["coords"] = { + [1] = { 61.4, 81.6, 5536, 300 }, + }, + ["lvl"] = "15", + }, + [61752] = { + ["coords"] = { + [1] = { 62, 83.5, 5536, 300 }, + }, + ["lvl"] = "55", + }, + [61753] = { + ["coords"] = {}, + ["lvl"] = "13", + }, + [61754] = { + ["coords"] = { + [1] = { 97.8, 65.6, 14, 300 }, + [2] = { 34.8, 78.3, 5536, 300 }, + }, + ["lvl"] = "16", + }, + [61755] = { + ["coords"] = { + [1] = { 98, 65.5, 14, 300 }, + [2] = { 35.1, 78.1, 5536, 300 }, + }, + ["lvl"] = "15", + }, + [61756] = { + ["coords"] = { + [1] = { 10, 48.7, 47, 300 }, + [2] = { 94.6, 8.6, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "44", + }, + [61757] = { + ["coords"] = { + [1] = { 9.8, 48.7, 47, 300 }, + [2] = { 94.3, 8.6, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "46", + }, + [61758] = { + ["coords"] = { + [1] = { 10, 49.3, 47, 300 }, + [2] = { 94.6, 9.3, 267, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + ["rnk"] = "1", + }, + [61759] = { + ["coords"] = { + [1] = { 42.7, 47.5, 5536, 300 }, + }, + ["lvl"] = "5", + }, + [61760] = { + ["coords"] = { + [1] = { 48.9, 65.4, 5536, 300 }, + }, + ["lvl"] = "20", + }, + [61761] = { + ["coords"] = { + [1] = { 49.6, 63.1, 5536, 300 }, + }, + ["lvl"] = "15", + }, + [61762] = { + ["coords"] = { + [1] = { 63, 77.7, 5536, 300 }, + }, + ["lvl"] = "10", + }, + [61763] = { + ["coords"] = { + [1] = { 70.5, 21, 28, 300 }, + [2] = { 11.1, 40.2, 139, 300 }, + }, + ["lvl"] = "58", + ["rnk"] = "1", + }, + [61764] = { + ["coords"] = { + [1] = { 20.2, 52.5, 139, 300 }, + }, + ["lvl"] = "58", + ["rnk"] = "1", + }, + [61765] = { + ["coords"] = { + [1] = { 73.2, 31.8, 28, 300 }, + [2] = { 14.1, 52.1, 139, 300 }, + }, + ["lvl"] = "58", + ["rnk"] = "1", + }, + [61766] = { + ["coords"] = { + [1] = { 73.4, 31.3, 28, 300 }, + [2] = { 73, 31.3, 28, 300 }, + [3] = { 73.5, 30.8, 28, 300 }, + [4] = { 71.9, 30.2, 28, 300 }, + [5] = { 71.3, 29.9, 28, 300 }, + [6] = { 70.5, 29.4, 28, 300 }, + [7] = { 71.3, 29.3, 28, 300 }, + [8] = { 74.7, 28.5, 28, 300 }, + [9] = { 75.7, 28.4, 28, 300 }, + [10] = { 74.2, 27.2, 28, 300 }, + [11] = { 73.3, 27, 28, 300 }, + [12] = { 71.2, 24.9, 28, 300 }, + [13] = { 70.6, 22.2, 28, 300 }, + [14] = { 70.8, 20.8, 28, 300 }, + [15] = { 70.5, 20.5, 28, 300 }, + [16] = { 70.3, 20.1, 28, 300 }, + [17] = { 70.7, 19.8, 28, 300 }, + [18] = { 70.6, 19.7, 28, 300 }, + [19] = { 72.1, 19.2, 28, 300 }, + [20] = { 14.4, 51.6, 139, 300 }, + [21] = { 13.9, 51.6, 139, 300 }, + [22] = { 14.4, 51, 139, 300 }, + [23] = { 12.6, 50.3, 139, 300 }, + [24] = { 12, 50, 139, 300 }, + [25] = { 11.1, 49.4, 139, 300 }, + [26] = { 12, 49.3, 139, 300 }, + [27] = { 15.7, 48.4, 139, 300 }, + [28] = { 16.9, 48.3, 139, 300 }, + [29] = { 15.2, 47, 139, 300 }, + [30] = { 14.2, 46.8, 139, 300 }, + [31] = { 11.9, 44.5, 139, 300 }, + [32] = { 14.3, 42.9, 139, 300 }, + [33] = { 14.1, 42.6, 139, 300 }, + [34] = { 13.7, 42.3, 139, 300 }, + [35] = { 18.4, 42.3, 139, 300 }, + [36] = { 18.6, 42.2, 139, 300 }, + [37] = { 18.4, 42, 139, 300 }, + [38] = { 11.2, 41.4, 139, 300 }, + [39] = { 11.5, 39.9, 139, 300 }, + [40] = { 13.9, 39.8, 139, 300 }, + [41] = { 11.1, 39.5, 139, 300 }, + [42] = { 13.6, 39.5, 139, 300 }, + [43] = { 10.8, 39.2, 139, 300 }, + [44] = { 11.4, 38.8, 139, 300 }, + [45] = { 11.2, 38.7, 139, 300 }, + [46] = { 12.9, 38.1, 139, 300 }, + }, + ["lvl"] = "55-56", + }, + [61767] = { + ["coords"] = { + [1] = { 71.4, 30.6, 28, 300 }, + [2] = { 73, 30.5, 28, 300 }, + [3] = { 73.4, 30.5, 28, 300 }, + [4] = { 71.5, 30.2, 28, 300 }, + [5] = { 71.2, 30.2, 28, 300 }, + [6] = { 70.9, 29.8, 28, 300 }, + [7] = { 76.2, 29.6, 28, 300 }, + [8] = { 71.4, 29.5, 28, 300 }, + [9] = { 71.6, 29.3, 28, 300 }, + [10] = { 71.1, 29.2, 28, 300 }, + [11] = { 76.2, 29.2, 28, 300 }, + [12] = { 71.8, 29.2, 28, 300 }, + [13] = { 73.4, 28.8, 28, 300 }, + [14] = { 71.8, 28.7, 28, 300 }, + [15] = { 73.7, 28.5, 28, 300 }, + [16] = { 71.6, 28.5, 28, 300 }, + [17] = { 72, 28.3, 28, 300 }, + [18] = { 74.7, 28, 28, 300 }, + [19] = { 71.8, 28, 28, 300 }, + [20] = { 72.5, 28, 28, 300 }, + [21] = { 71.6, 25.9, 28, 300 }, + [22] = { 71.5, 25.1, 28, 300 }, + [23] = { 70.9, 21.4, 28, 300 }, + [24] = { 71, 21.3, 28, 300 }, + [25] = { 70.5, 21, 28, 300 }, + [26] = { 70.8, 21, 28, 300 }, + [27] = { 70.5, 20.9, 28, 300 }, + [28] = { 70.2, 20.8, 28, 300 }, + [29] = { 70.3, 20.8, 28, 300 }, + [30] = { 70.8, 20.6, 28, 300 }, + [31] = { 70.9, 20.3, 28, 300 }, + [32] = { 70.4, 20.2, 28, 300 }, + [33] = { 70.9, 20.1, 28, 300 }, + [34] = { 70.3, 19.9, 28, 300 }, + [35] = { 12.1, 50.8, 139, 300 }, + [36] = { 13.9, 50.7, 139, 300 }, + [37] = { 14.3, 50.7, 139, 300 }, + [38] = { 12.2, 50.4, 139, 300 }, + [39] = { 11.9, 50.3, 139, 300 }, + [40] = { 11.5, 49.8, 139, 300 }, + [41] = { 17.4, 49.6, 139, 300 }, + [42] = { 12.1, 49.6, 139, 300 }, + [43] = { 12.3, 49.3, 139, 300 }, + [44] = { 11.8, 49.2, 139, 300 }, + [45] = { 17.4, 49.2, 139, 300 }, + [46] = { 12.5, 49.2, 139, 300 }, + [47] = { 14.3, 48.8, 139, 300 }, + [48] = { 12.5, 48.6, 139, 300 }, + [49] = { 14.7, 48.5, 139, 300 }, + [50] = { 12.4, 48.4, 139, 300 }, + [51] = { 12.8, 48.2, 139, 300 }, + [52] = { 15.7, 47.9, 139, 300 }, + [53] = { 12.6, 47.9, 139, 300 }, + [54] = { 13.3, 47.9, 139, 300 }, + [55] = { 15, 45.8, 139, 300 }, + [56] = { 12.4, 45.5, 139, 300 }, + [57] = { 12.2, 44.7, 139, 300 }, + [58] = { 15.4, 43.5, 139, 300 }, + [59] = { 14.3, 43.4, 139, 300 }, + [60] = { 15.1, 43.1, 139, 300 }, + [61] = { 13.6, 42.9, 139, 300 }, + [62] = { 18.7, 42.9, 139, 300 }, + [63] = { 15.5, 42.8, 139, 300 }, + [64] = { 18.1, 42.5, 139, 300 }, + [65] = { 18.7, 42.3, 139, 300 }, + [66] = { 18.4, 42.1, 139, 300 }, + [67] = { 19.1, 42.1, 139, 300 }, + [68] = { 18.7, 42, 139, 300 }, + [69] = { 18.8, 41.9, 139, 300 }, + [70] = { 18.1, 41.4, 139, 300 }, + [71] = { 18.4, 41.2, 139, 300 }, + [72] = { 11.5, 40.5, 139, 300 }, + [73] = { 11.7, 40.4, 139, 300 }, + [74] = { 11, 40.2, 139, 300 }, + [75] = { 11.4, 40.1, 139, 300 }, + [76] = { 11, 40, 139, 300 }, + [77] = { 10.8, 39.9, 139, 300 }, + [78] = { 10.9, 39.9, 139, 300 }, + [79] = { 11.5, 39.6, 139, 300 }, + [80] = { 13.7, 39.6, 139, 300 }, + [81] = { 17.7, 39.5, 139, 300 }, + [82] = { 16.4, 39.4, 139, 300 }, + [83] = { 11.5, 39.3, 139, 300 }, + [84] = { 10.9, 39.2, 139, 300 }, + [85] = { 11.5, 39.2, 139, 300 }, + [86] = { 11.6, 39.1, 139, 300 }, + [87] = { 10.9, 38.9, 139, 300 }, + [88] = { 16.2, 35.9, 139, 300 }, + [89] = { 15.4, 34.9, 139, 300 }, + [90] = { 57.6, 99.6, 5225, 300 }, + }, + ["lvl"] = "55-56", + }, + [61768] = { + ["coords"] = { + [1] = { 77.2, 29.8, 28, 300 }, + [2] = { 20.8, 52.6, 139, 300 }, + [3] = { 20.5, 52.3, 139, 300 }, + [4] = { 21.1, 52.2, 139, 300 }, + [5] = { 20.4, 51.5, 139, 300 }, + [6] = { 21.7, 51.2, 139, 300 }, + [7] = { 19.4, 50.8, 139, 300 }, + [8] = { 19.9, 50.7, 139, 300 }, + [9] = { 20.1, 50.6, 139, 300 }, + [10] = { 21.2, 50.5, 139, 300 }, + [11] = { 19.2, 50.1, 139, 300 }, + [12] = { 18.6, 49.9, 139, 300 }, + [13] = { 19.8, 49.8, 139, 300 }, + [14] = { 18.9, 49.6, 139, 300 }, + [15] = { 20.3, 49.5, 139, 300 }, + [16] = { 18.1, 49.5, 139, 300 }, + [17] = { 20.7, 49.4, 139, 300 }, + [18] = { 20.9, 49.4, 139, 300 }, + [19] = { 19.5, 49.3, 139, 300 }, + [20] = { 18.5, 48.7, 139, 300 }, + }, + ["lvl"] = "55-56", + }, + [61769] = { + ["coords"] = { + [1] = { 72.7, 31.9, 28, 300 }, + [2] = { 73.1, 31.7, 28, 300 }, + [3] = { 73.4, 31.7, 28, 300 }, + [4] = { 72.5, 31.2, 28, 300 }, + [5] = { 71.6, 31.1, 28, 300 }, + [6] = { 73.9, 31, 28, 300 }, + [7] = { 74.4, 30.2, 28, 300 }, + [8] = { 73.6, 30.2, 28, 300 }, + [9] = { 71.3, 30.1, 28, 300 }, + [10] = { 72.4, 30.1, 28, 300 }, + [11] = { 72.9, 29.9, 28, 300 }, + [12] = { 71.7, 29.6, 28, 300 }, + [13] = { 71.2, 29.3, 28, 300 }, + [14] = { 75.2, 29.1, 28, 300 }, + [15] = { 70.6, 29, 28, 300 }, + [16] = { 74.2, 28.9, 28, 300 }, + [17] = { 71.4, 28.8, 28, 300 }, + [18] = { 72.6, 28.7, 28, 300 }, + [19] = { 75.4, 28.5, 28, 300 }, + [20] = { 74.1, 28, 28, 300 }, + [21] = { 71.8, 27.5, 28, 300 }, + [22] = { 72.8, 27.2, 28, 300 }, + [23] = { 73, 27.2, 28, 300 }, + [24] = { 73, 27.1, 28, 300 }, + [25] = { 74.3, 26.8, 28, 300 }, + [26] = { 73.1, 26.8, 28, 300 }, + [27] = { 72.9, 26.7, 28, 300 }, + [28] = { 71.6, 26.7, 28, 300 }, + [29] = { 71.3, 25.8, 28, 300 }, + [30] = { 71.3, 25.2, 28, 300 }, + [31] = { 73.4, 25, 28, 300 }, + [32] = { 71.4, 24.9, 28, 300 }, + [33] = { 71.6, 23.3, 28, 300 }, + [34] = { 70.7, 22.6, 28, 300 }, + [35] = { 70.7, 21.8, 28, 300 }, + [36] = { 71.8, 21.3, 28, 300 }, + [37] = { 70.7, 20.9, 28, 300 }, + [38] = { 70.8, 20.8, 28, 300 }, + [39] = { 71, 20.7, 28, 300 }, + [40] = { 70.2, 20.7, 28, 300 }, + [41] = { 71, 20.5, 28, 300 }, + [42] = { 70.1, 20.4, 28, 300 }, + [43] = { 70.1, 20.3, 28, 300 }, + [44] = { 70.6, 20, 28, 300 }, + [45] = { 13.5, 52.2, 139, 300 }, + [46] = { 13.9, 52, 139, 300 }, + [47] = { 14.3, 52, 139, 300 }, + [48] = { 13.3, 51.4, 139, 300 }, + [49] = { 12.3, 51.3, 139, 300 }, + [50] = { 14.9, 51.3, 139, 300 }, + [51] = { 15.4, 50.4, 139, 300 }, + [52] = { 14.5, 50.3, 139, 300 }, + [53] = { 11.9, 50.2, 139, 300 }, + [54] = { 13.2, 50.2, 139, 300 }, + [55] = { 13.7, 49.9, 139, 300 }, + [56] = { 12.5, 49.7, 139, 300 }, + [57] = { 11.8, 49.3, 139, 300 }, + [58] = { 16.3, 49.1, 139, 300 }, + [59] = { 11.2, 49, 139, 300 }, + [60] = { 15.2, 48.9, 139, 300 }, + [61] = { 12.1, 48.8, 139, 300 }, + [62] = { 13.4, 48.7, 139, 300 }, + [63] = { 16.5, 48.4, 139, 300 }, + [64] = { 15.1, 47.9, 139, 300 }, + [65] = { 12.5, 47.3, 139, 300 }, + [66] = { 13.7, 47, 139, 300 }, + [67] = { 13.8, 46.9, 139, 300 }, + [68] = { 13.9, 46.9, 139, 300 }, + [69] = { 15.3, 46.5, 139, 300 }, + [70] = { 14, 46.5, 139, 300 }, + [71] = { 13.7, 46.4, 139, 300 }, + [72] = { 12.3, 46.4, 139, 300 }, + [73] = { 12, 45.4, 139, 300 }, + [74] = { 12, 44.8, 139, 300 }, + [75] = { 14.3, 44.6, 139, 300 }, + [76] = { 12.1, 44.4, 139, 300 }, + [77] = { 12.4, 42.7, 139, 300 }, + [78] = { 11.3, 41.9, 139, 300 }, + [79] = { 13.9, 41.3, 139, 300 }, + [80] = { 11.4, 41, 139, 300 }, + [81] = { 12.5, 40.4, 139, 300 }, + [82] = { 11.4, 40, 139, 300 }, + [83] = { 11.4, 39.9, 139, 300 }, + [84] = { 11.7, 39.8, 139, 300 }, + [85] = { 10.8, 39.8, 139, 300 }, + [86] = { 11.7, 39.5, 139, 300 }, + [87] = { 10.6, 39.5, 139, 300 }, + [88] = { 10.7, 39.3, 139, 300 }, + [89] = { 11.2, 39, 139, 300 }, + }, + ["lvl"] = "54-55", + }, + [61770] = { + ["coords"] = { + [1] = { 8.7, 24.6, 139, 300 }, + [2] = { 9.1, 24.5, 139, 300 }, + [3] = { 8.6, 23.8, 139, 300 }, + [4] = { 8.8, 23.7, 139, 300 }, + [5] = { 6.3, 23.7, 139, 300 }, + [6] = { 9.1, 23.6, 139, 300 }, + [7] = { 8.7, 22.4, 139, 300 }, + [8] = { 8.4, 20.9, 139, 300 }, + [9] = { 8.7, 20.8, 139, 300 }, + [10] = { 8.3, 19.1, 139, 300 }, + [11] = { 16.2, 15.5, 139, 300 }, + [12] = { 16.2, 15.4, 139, 300 }, + [13] = { 16.3, 15.4, 139, 300 }, + [14] = { 15.6, 14.4, 139, 300 }, + [15] = { 15.2, 14.4, 139, 300 }, + [16] = { 15.2, 14.3, 139, 300 }, + [17] = { 15, 14.3, 139, 300 }, + [18] = { 14.9, 14.2, 139, 300 }, + [19] = { 15.3, 14, 139, 300 }, + [20] = { 30.5, 98.9, 2040, 300 }, + [21] = { 34.6, 92.2, 2040, 300 }, + [22] = { 34.8, 91.5, 2040, 300 }, + [23] = { 49.3, 86.7, 5225, 300 }, + [24] = { 49.8, 86.6, 5225, 300 }, + [25] = { 49.1, 85.7, 5225, 300 }, + [26] = { 49.4, 85.6, 5225, 300 }, + [27] = { 46.2, 85.6, 5225, 300 }, + [28] = { 49.7, 85.5, 5225, 300 }, + [29] = { 49.3, 83.9, 5225, 300 }, + [30] = { 48.8, 82, 5225, 300 }, + [31] = { 49.2, 81.9, 5225, 300 }, + [32] = { 48.7, 79.9, 5225, 300 }, + [33] = { 58.6, 75.3, 5225, 300 }, + [34] = { 58.7, 75.2, 5225, 300 }, + [35] = { 58.8, 75.1, 5225, 300 }, + [36] = { 57.9, 73.9, 5225, 300 }, + [37] = { 57.4, 73.9, 5225, 300 }, + [38] = { 57.4, 73.8, 5225, 300 }, + [39] = { 57.2, 73.8, 5225, 300 }, + [40] = { 57.1, 73.7, 5225, 300 }, + [41] = { 57.6, 73.5, 5225, 300 }, + [42] = { 38.5, 69, 5225, 300 }, + [43] = { 41.1, 68.4, 5225, 300 }, + [44] = { 52, 64.7, 5225, 300 }, + [45] = { 46.4, 64.6, 5225, 300 }, + [46] = { 46.3, 64.5, 5225, 300 }, + [47] = { 46.5, 64.3, 5225, 300 }, + [48] = { 49.2, 54.2, 5225, 300 }, + [49] = { 47.9, 52.8, 5225, 300 }, + [50] = { 45, 50.1, 5225, 300 }, + [51] = { 52.3, 49, 5225, 300 }, + [52] = { 54.3, 45.8, 5225, 300 }, + [53] = { 54.4, 45.5, 5225, 300 }, + [54] = { 73.4, 1.9, 5225, 300 }, + [55] = { 72.8, 1.6, 5225, 300 }, + [56] = { 73.5, 1.5, 5225, 300 }, + [57] = { 72.8, 1.4, 5225, 300 }, + [58] = { 72.5, 0.9, 5225, 300 }, + [59] = { 73, 0.5, 5225, 300 }, + [60] = { 72.3, 0.3, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [61771] = { + ["coords"] = { + [1] = { 37.4, 82.2, 2040, 300 }, + [2] = { 36.9, 82, 2040, 300 }, + [3] = { 27.6, 78.6, 2040, 300 }, + [4] = { 26.2, 77.5, 2040, 300 }, + [5] = { 25.1, 77.3, 2040, 300 }, + [6] = { 28.3, 76.6, 2040, 300 }, + [7] = { 27, 75.5, 2040, 300 }, + [8] = { 38, 71.2, 2040, 300 }, + [9] = { 29.1, 71.1, 2040, 300 }, + [10] = { 38.4, 71, 2040, 300 }, + [11] = { 34.8, 70.6, 2040, 300 }, + [12] = { 24.9, 70, 2040, 300 }, + [13] = { 25.2, 70, 2040, 300 }, + [14] = { 34.6, 69.3, 2040, 300 }, + [15] = { 24.9, 67, 2040, 300 }, + [16] = { 25.9, 66.2, 2040, 300 }, + [17] = { 41, 66, 2040, 300 }, + [18] = { 42.1, 65.9, 2040, 300 }, + [19] = { 28.5, 63.8, 2040, 300 }, + [20] = { 45.4, 63.6, 2040, 300 }, + [21] = { 24, 63.1, 2040, 300 }, + [22] = { 57.8, 61.7, 2040, 300 }, + [23] = { 47, 61.4, 2040, 300 }, + [24] = { 62.8, 61.1, 2040, 300 }, + [25] = { 61.1, 61, 2040, 300 }, + [26] = { 46.6, 60.6, 2040, 300 }, + [27] = { 62.8, 60.4, 2040, 300 }, + [28] = { 47.4, 60.2, 2040, 300 }, + [29] = { 59.1, 58.3, 2040, 300 }, + [30] = { 59.5, 58.2, 2040, 300 }, + [31] = { 59, 57, 2040, 300 }, + [32] = { 59.5, 57, 2040, 300 }, + [33] = { 52.6, 55.5, 2040, 300 }, + [34] = { 52.5, 54.7, 2040, 300 }, + [35] = { 59.4, 54.2, 2040, 300 }, + [36] = { 59, 54.2, 2040, 300 }, + [37] = { 49.1, 53.4, 2040, 300 }, + [38] = { 49.1, 52.4, 2040, 300 }, + [39] = { 40.5, 51.1, 2040, 300 }, + [40] = { 52.4, 50.6, 2040, 300 }, + [41] = { 48.3, 48.1, 2040, 300 }, + [42] = { 66.2, 48.1, 2040, 300 }, + [43] = { 66.2, 47.6, 2040, 300 }, + [44] = { 66.1, 47.2, 2040, 300 }, + [45] = { 46.6, 45.6, 2040, 300 }, + [46] = { 58.3, 44.8, 2040, 300 }, + [47] = { 43.4, 40, 2040, 300 }, + [48] = { 43.9, 39.7, 2040, 300 }, + [49] = { 53.6, 38.6, 2040, 300 }, + [50] = { 42.6, 38.2, 2040, 300 }, + [51] = { 43, 37.9, 2040, 300 }, + [52] = { 47.6, 36.6, 2040, 300 }, + [53] = { 51.3, 34, 2040, 300 }, + [54] = { 49.9, 32.9, 2040, 300 }, + [55] = { 52.3, 32.7, 2040, 300 }, + [56] = { 51.1, 32.4, 2040, 300 }, + [57] = { 53.2, 24.7, 2040, 300 }, + [58] = { 55.1, 22.1, 2040, 300 }, + [59] = { 52.9, 20.7, 2040, 300 }, + [60] = { 57.5, 15.8, 2040, 300 }, + [61] = { 54.2, 13.8, 2040, 300 }, + [62] = { 61.8, 10, 2040, 300 }, + [63] = { 53.3, 6.2, 2040, 300 }, + [64] = { 54, 5.2, 2040, 300 }, + [65] = { 55.6, 41.1, 5225, 300 }, + [66] = { 55.3, 41, 5225, 300 }, + [67] = { 50.9, 39.4, 5225, 300 }, + [68] = { 50.3, 38.9, 5225, 300 }, + [69] = { 49.7, 38.8, 5225, 300 }, + [70] = { 51.2, 38.5, 5225, 300 }, + [71] = { 50.6, 37.9, 5225, 300 }, + [72] = { 55.8, 35.9, 5225, 300 }, + [73] = { 51.6, 35.9, 5225, 300 }, + [74] = { 56.1, 35.8, 5225, 300 }, + [75] = { 54.3, 35.6, 5225, 300 }, + [76] = { 49.6, 35.3, 5225, 300 }, + [77] = { 49.8, 35.3, 5225, 300 }, + [78] = { 54.3, 35, 5225, 300 }, + [79] = { 49.6, 33.9, 5225, 300 }, + [80] = { 50.1, 33.5, 5225, 300 }, + [81] = { 57.3, 33.5, 5225, 300 }, + [82] = { 57.8, 33.4, 5225, 300 }, + [83] = { 51.4, 32.4, 5225, 300 }, + [84] = { 59.4, 32.3, 5225, 300 }, + [85] = { 49.2, 32.1, 5225, 300 }, + [86] = { 65.3, 31.4, 5225, 300 }, + [87] = { 60.1, 31.2, 5225, 300 }, + [88] = { 67.7, 31.1, 5225, 300 }, + [89] = { 66.9, 31, 5225, 300 }, + [90] = { 60, 30.9, 5225, 300 }, + [91] = { 67.7, 30.8, 5225, 300 }, + [92] = { 60.3, 30.7, 5225, 300 }, + [93] = { 65.9, 29.8, 5225, 300 }, + [94] = { 66.1, 29.7, 5225, 300 }, + [95] = { 65.9, 29.2, 5225, 300 }, + [96] = { 66.1, 29.2, 5225, 300 }, + [97] = { 62.8, 28.5, 5225, 300 }, + [98] = { 62.8, 28.1, 5225, 300 }, + [99] = { 66.1, 27.9, 5225, 300 }, + [100] = { 65.9, 27.8, 5225, 300 }, + [101] = { 61.2, 27.5, 5225, 300 }, + [102] = { 61.2, 27, 5225, 300 }, + [103] = { 57, 26.4, 5225, 300 }, + [104] = { 62.7, 26.1, 5225, 300 }, + [105] = { 60.8, 25, 5225, 300 }, + [106] = { 69.3, 24.9, 5225, 300 }, + [107] = { 69.3, 24.7, 5225, 300 }, + [108] = { 69.2, 24.5, 5225, 300 }, + [109] = { 60, 23.8, 5225, 300 }, + [110] = { 65.5, 23.4, 5225, 300 }, + [111] = { 58.5, 21.1, 5225, 300 }, + [112] = { 58.7, 21, 5225, 300 }, + [113] = { 63.3, 20.4, 5225, 300 }, + [114] = { 58.1, 20.3, 5225, 300 }, + [115] = { 58.3, 20.1, 5225, 300 }, + [116] = { 60.5, 19.5, 5225, 300 }, + [117] = { 62.2, 18.3, 5225, 300 }, + [118] = { 61.5, 17.7, 5225, 300 }, + [119] = { 62.7, 17.7, 5225, 300 }, + [120] = { 62.1, 17.5, 5225, 300 }, + [121] = { 63.1, 13.9, 5225, 300 }, + [122] = { 64, 12.6, 5225, 300 }, + [123] = { 63, 12, 5225, 300 }, + [124] = { 65.1, 9.7, 5225, 300 }, + [125] = { 63.6, 8.7, 5225, 300 }, + [126] = { 67.2, 6.9, 5225, 300 }, + [127] = { 63.2, 5.1, 5225, 300 }, + [128] = { 63.5, 4.6, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [61772] = { + ["coords"] = { + [1] = { 72, 47.1, 2040, 300 }, + [2] = { 72.1, 24.5, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "2", + }, + [61773] = { + ["coords"] = { + [1] = { 6.5, 24.8, 139, 300 }, + [2] = { 6.6, 24.7, 139, 300 }, + [3] = { 9.2, 22.9, 139, 300 }, + [4] = { 9.1, 22.8, 139, 300 }, + [5] = { 9.1, 22.5, 139, 300 }, + [6] = { 9.3, 22.5, 139, 300 }, + [7] = { 9.2, 22.4, 139, 300 }, + [8] = { 9.1, 22.3, 139, 300 }, + [9] = { 9, 22.3, 139, 300 }, + [10] = { 9.2, 22.2, 139, 300 }, + [11] = { 9.2, 22.1, 139, 300 }, + [12] = { 70.4, 49.5, 2040, 300 }, + [13] = { 69.7, 49.3, 2040, 300 }, + [14] = { 71, 48.5, 2040, 300 }, + [15] = { 69, 48.4, 2040, 300 }, + [16] = { 69.5, 48.4, 2040, 300 }, + [17] = { 71.4, 48.3, 2040, 300 }, + [18] = { 71.6, 48.2, 2040, 300 }, + [19] = { 67, 47.8, 2040, 300 }, + [20] = { 70.5, 47.8, 2040, 300 }, + [21] = { 69.8, 47.5, 2040, 300 }, + [22] = { 71.5, 47.5, 2040, 300 }, + [23] = { 66.9, 47.5, 2040, 300 }, + [24] = { 71.6, 47.4, 2040, 300 }, + [25] = { 71.7, 47.3, 2040, 300 }, + [26] = { 66.9, 47.1, 2040, 300 }, + [27] = { 70.4, 46.9, 2040, 300 }, + [28] = { 71.7, 46.8, 2040, 300 }, + [29] = { 69.2, 46.7, 2040, 300 }, + [30] = { 71.5, 46.1, 2040, 300 }, + [31] = { 69.5, 45.7, 2040, 300 }, + [32] = { 69.6, 45.6, 2040, 300 }, + [33] = { 72.1, 45.4, 2040, 300 }, + [34] = { 72.1, 45.3, 2040, 300 }, + [35] = { 70.7, 45.3, 2040, 300 }, + [36] = { 70.7, 45.1, 2040, 300 }, + [37] = { 70.3, 42.2, 2040, 300 }, + [38] = { 46.5, 87, 5225, 300 }, + [39] = { 46.5, 86.9, 5225, 300 }, + [40] = { 49.8, 84.6, 5225, 300 }, + [41] = { 49.7, 84.4, 5225, 300 }, + [42] = { 49.7, 84.1, 5225, 300 }, + [43] = { 50, 84.1, 5225, 300 }, + [44] = { 49.9, 83.9, 5225, 300 }, + [45] = { 49.8, 83.9, 5225, 300 }, + [46] = { 49.6, 83.9, 5225, 300 }, + [47] = { 49.8, 83.7, 5225, 300 }, + [48] = { 49.8, 83.6, 5225, 300 }, + [49] = { 71.3, 25.6, 5225, 300 }, + [50] = { 71, 25.5, 5225, 300 }, + [51] = { 71.6, 25.1, 5225, 300 }, + [52] = { 70.6, 25.1, 5225, 300 }, + [53] = { 70.9, 25.1, 5225, 300 }, + [54] = { 71.8, 25.1, 5225, 300 }, + [55] = { 71.9, 25, 5225, 300 }, + [56] = { 69.7, 24.8, 5225, 300 }, + [57] = { 71.4, 24.8, 5225, 300 }, + [58] = { 71, 24.7, 5225, 300 }, + [59] = { 71.8, 24.7, 5225, 300 }, + [60] = { 69.6, 24.7, 5225, 300 }, + [61] = { 71.9, 24.6, 5225, 300 }, + [62] = { 69.7, 24.5, 5225, 300 }, + [63] = { 71.3, 24.4, 5225, 300 }, + [64] = { 71.9, 24.4, 5225, 300 }, + [65] = { 70.7, 24.3, 5225, 300 }, + [66] = { 71.8, 24, 5225, 300 }, + [67] = { 70.9, 23.8, 5225, 300 }, + [68] = { 72.1, 23.7, 5225, 300 }, + [69] = { 72.1, 23.6, 5225, 300 }, + [70] = { 71.5, 23.6, 5225, 300 }, + [71] = { 71.4, 23.5, 5225, 300 }, + [72] = { 71.3, 22.2, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [61774] = { + ["coords"] = { + [1] = { 11, 97.4, 2040, 300 }, + [2] = { 18.3, 97, 2040, 300 }, + [3] = { 19.4, 95.1, 2040, 300 }, + [4] = { 19.5, 92.5, 2040, 300 }, + [5] = { 18.6, 89.2, 2040, 300 }, + [6] = { 53.1, 69.3, 5225, 300 }, + [7] = { 38.2, 67.5, 5225, 300 }, + [8] = { 54.5, 67.5, 5225, 300 }, + [9] = { 53.1, 66.5, 5225, 300 }, + [10] = { 42.3, 66.2, 5225, 300 }, + [11] = { 38.3, 65.5, 5225, 300 }, + [12] = { 56.3, 64.9, 5225, 300 }, + [13] = { 40.8, 64.7, 5225, 300 }, + [14] = { 44, 64.1, 5225, 300 }, + [15] = { 42, 63.9, 5225, 300 }, + [16] = { 46.5, 62.3, 5225, 300 }, + [17] = { 42.7, 62.2, 5225, 300 }, + [18] = { 52.8, 60.3, 5225, 300 }, + [19] = { 45.3, 60.2, 5225, 300 }, + [20] = { 46.1, 59.8, 5225, 300 }, + [21] = { 47.4, 59.1, 5225, 300 }, + [22] = { 50.1, 58.5, 5225, 300 }, + [23] = { 51.8, 57.1, 5225, 300 }, + [24] = { 47.9, 55.9, 5225, 300 }, + [25] = { 52.7, 55.6, 5225, 300 }, + [26] = { 51, 55, 5225, 300 }, + [27] = { 44, 54.6, 5225, 300 }, + [28] = { 47, 53.8, 5225, 300 }, + [29] = { 44.9, 53, 5225, 300 }, + [30] = { 50.8, 52.8, 5225, 300 }, + [31] = { 45.9, 51.8, 5225, 300 }, + [32] = { 49.5, 51.7, 5225, 300 }, + [33] = { 49.7, 49.9, 5225, 300 }, + [34] = { 43, 48.3, 5225, 300 }, + [35] = { 46.5, 48.1, 5225, 300 }, + [36] = { 47, 47.2, 5225, 300 }, + [37] = { 47.1, 46, 5225, 300 }, + [38] = { 46.6, 44.4, 5225, 300 }, + }, + ["lvl"] = "6-7", + }, + [61775] = { + ["coords"] = { + [1] = { 1.3, 95.4, 2040, 300 }, + [2] = { 7.1, 93, 2040, 300 }, + [3] = { 9.1, 87.8, 2040, 300 }, + [4] = { 4.6, 85.1, 2040, 300 }, + [5] = { 7.4, 84.7, 2040, 300 }, + [6] = { 26.1, 59.4, 5225, 300 }, + [7] = { 28.6, 58.5, 5225, 300 }, + [8] = { 25.8, 56.8, 5225, 300 }, + [9] = { 29, 55.1, 5225, 300 }, + [10] = { 29.4, 53.7, 5225, 300 }, + [11] = { 31.5, 52.8, 5225, 300 }, + [12] = { 30.7, 51.9, 5225, 300 }, + [13] = { 28.8, 51.6, 5225, 300 }, + [14] = { 36.4, 51.5, 5225, 300 }, + [15] = { 36, 49, 5225, 300 }, + [16] = { 31, 48.7, 5225, 300 }, + [17] = { 29.7, 48.5, 5225, 300 }, + [18] = { 38.4, 47.3, 5225, 300 }, + [19] = { 32.5, 47.3, 5225, 300 }, + [20] = { 32.6, 46.4, 5225, 300 }, + [21] = { 41.1, 46.2, 5225, 300 }, + [22] = { 36.2, 44.9, 5225, 300 }, + [23] = { 42.1, 43.8, 5225, 300 }, + [24] = { 40, 42.5, 5225, 300 }, + [25] = { 41.3, 42.3, 5225, 300 }, + }, + ["lvl"] = "6-7", + }, + [61776] = { + ["coords"] = { + [1] = { 35.7, 76.6, 5225, 300 }, + [2] = { 33.9, 75.4, 5225, 300 }, + [3] = { 36.6, 75.1, 5225, 300 }, + [4] = { 35, 74.9, 5225, 300 }, + [5] = { 35.2, 74.2, 5225, 300 }, + [6] = { 34.2, 73.6, 5225, 300 }, + [7] = { 37.6, 73.2, 5225, 300 }, + [8] = { 38, 72.5, 5225, 300 }, + [9] = { 33.9, 71.6, 5225, 300 }, + [10] = { 37.8, 71.4, 5225, 300 }, + [11] = { 33.9, 70.5, 5225, 300 }, + [12] = { 37.9, 70.2, 5225, 300 }, + [13] = { 36, 70.1, 5225, 300 }, + [14] = { 33.9, 69.1, 5225, 300 }, + [15] = { 32.4, 68.5, 5225, 300 }, + [16] = { 37.5, 68.5, 5225, 300 }, + [17] = { 33.4, 67.9, 5225, 300 }, + [18] = { 36.1, 67, 5225, 300 }, + }, + ["lvl"] = "8", + }, + [61777] = { + ["coords"] = { + [1] = { 42.5, 80.1, 5225, 300 }, + [2] = { 41.4, 79.9, 5225, 300 }, + [3] = { 42.2, 79, 5225, 300 }, + [4] = { 40.5, 78.9, 5225, 300 }, + [5] = { 40.4, 77.8, 5225, 300 }, + [6] = { 42.2, 77.1, 5225, 300 }, + [7] = { 41.3, 76.5, 5225, 300 }, + [8] = { 41.1, 72.1, 5225, 300 }, + }, + ["lvl"] = "4", + }, + [61778] = { + ["coords"] = { + [1] = { 40.7, 89, 5225, 300 }, + [2] = { 40.3, 87.3, 5225, 300 }, + [3] = { 39.4, 84.4, 5225, 300 }, + [4] = { 39.9, 84.3, 5225, 300 }, + [5] = { 40.7, 83.5, 5225, 300 }, + [6] = { 38.9, 82.7, 5225, 300 }, + [7] = { 41.7, 80.7, 5225, 300 }, + [8] = { 42.8, 78.6, 5225, 300 }, + [9] = { 42.5, 78.1, 5225, 300 }, + [10] = { 41, 75.3, 5225, 300 }, + [11] = { 41, 73.6, 5225, 300 }, + }, + ["lvl"] = "4", + }, + [61779] = { + ["coords"] = { + [1] = { 40.9, 88.4, 5225, 300 }, + [2] = { 41.1, 87, 5225, 300 }, + [3] = { 40, 85.8, 5225, 300 }, + [4] = { 40.3, 83.8, 5225, 300 }, + [5] = { 37.7, 83.2, 5225, 300 }, + [6] = { 38.1, 82.2, 5225, 300 }, + [7] = { 41.1, 81.8, 5225, 300 }, + [8] = { 43.1, 80.3, 5225, 300 }, + [9] = { 38.6, 79.6, 5225, 300 }, + }, + ["lvl"] = "5", + }, + [61780] = { + ["coords"] = { + [1] = { 54.4, 6.3, 28, 300 }, + [2] = { 54.9, 5.9, 28, 300 }, + [3] = { 54.3, 5.5, 28, 300 }, + [4] = { 53.5, 5.3, 28, 300 }, + [5] = { 29.8, 85.7, 5225, 300 }, + [6] = { 30.5, 85.1, 5225, 300 }, + [7] = { 29.6, 84.5, 5225, 300 }, + [8] = { 28.5, 84.3, 5225, 300 }, + [9] = { 31.1, 84.1, 5225, 300 }, + [10] = { 31, 82.5, 5225, 300 }, + [11] = { 28.2, 82.3, 5225, 300 }, + [12] = { 30.7, 81.2, 5225, 300 }, + [13] = { 30.3, 80, 5225, 300 }, + [14] = { 28, 78.3, 5225, 300 }, + [15] = { 29.8, 78.1, 5225, 300 }, + [16] = { 32, 77.5, 5225, 300 }, + [17] = { 31.5, 77.2, 5225, 300 }, + [18] = { 29.1, 76.9, 5225, 300 }, + [19] = { 34.9, 76.2, 5225, 300 }, + [20] = { 32, 75.8, 5225, 300 }, + [21] = { 36.2, 75.7, 5225, 300 }, + [22] = { 31, 74.7, 5225, 300 }, + [23] = { 35.8, 74.7, 5225, 300 }, + [24] = { 26.8, 74.7, 5225, 300 }, + [25] = { 30.9, 74.4, 5225, 300 }, + [26] = { 37.3, 74.3, 5225, 300 }, + [27] = { 34.8, 74, 5225, 300 }, + [28] = { 28.3, 73.9, 5225, 300 }, + [29] = { 32.2, 73.6, 5225, 300 }, + [30] = { 30.1, 73.4, 5225, 300 }, + [31] = { 32.2, 73.1, 5225, 300 }, + [32] = { 31.6, 73.1, 5225, 300 }, + [33] = { 33.1, 73, 5225, 300 }, + [34] = { 31.6, 73, 5225, 300 }, + [35] = { 36.2, 72.7, 5225, 300 }, + [36] = { 30.1, 72.1, 5225, 300 }, + [37] = { 29.2, 72.1, 5225, 300 }, + [38] = { 34.3, 71.9, 5225, 300 }, + [39] = { 37, 71.4, 5225, 300 }, + [40] = { 35, 71.1, 5225, 300 }, + [41] = { 31.5, 70.4, 5225, 300 }, + [42] = { 33.2, 69.9, 5225, 300 }, + [43] = { 35.6, 69.7, 5225, 300 }, + [44] = { 36.7, 69.5, 5225, 300 }, + [45] = { 37, 67.8, 5225, 300 }, + [46] = { 35, 67, 5225, 300 }, + }, + ["lvl"] = "8-9", + }, + [61781] = { + ["coords"] = { + [1] = { 30.4, 83.4, 5225, 300 }, + [2] = { 28.7, 82.2, 5225, 300 }, + [3] = { 27.3, 81.6, 5225, 300 }, + [4] = { 26.5, 81.4, 5225, 300 }, + [5] = { 26.9, 79.9, 5225, 300 }, + [6] = { 29.9, 79.2, 5225, 300 }, + [7] = { 32.1, 78.9, 5225, 300 }, + [8] = { 30.9, 78.8, 5225, 300 }, + [9] = { 28.3, 78.4, 5225, 300 }, + [10] = { 26.6, 78.3, 5225, 300 }, + [11] = { 27.7, 78, 5225, 300 }, + [12] = { 27.7, 76.9, 5225, 300 }, + [13] = { 32.6, 76.1, 5225, 300 }, + [14] = { 31.1, 74.9, 5225, 300 }, + [15] = { 28.8, 74.9, 5225, 300 }, + [16] = { 27.3, 74.7, 5225, 300 }, + [17] = { 29.4, 74, 5225, 300 }, + [18] = { 28.7, 73.1, 5225, 300 }, + [19] = { 33.8, 73, 5225, 300 }, + [20] = { 30.7, 73, 5225, 300 }, + [21] = { 31.7, 72.5, 5225, 300 }, + [22] = { 30.6, 71.2, 5225, 300 }, + [23] = { 32.4, 71.1, 5225, 300 }, + }, + ["lvl"] = "8-10", + }, + [61782] = { + ["coords"] = { + [1] = { 53.7, 4.6, 28, 300 }, + [2] = { 54.3, 4.5, 28, 300 }, + [3] = { 28.7, 83.4, 5225, 300 }, + [4] = { 29.7, 83.2, 5225, 300 }, + [5] = { 27.4, 83.1, 5225, 300 }, + [6] = { 27.8, 82.9, 5225, 300 }, + [7] = { 31.6, 82.2, 5225, 300 }, + [8] = { 30.8, 81.3, 5225, 300 }, + [9] = { 28.1, 81.1, 5225, 300 }, + [10] = { 29.3, 81, 5225, 300 }, + [11] = { 29.7, 80.9, 5225, 300 }, + [12] = { 26.6, 80.8, 5225, 300 }, + [13] = { 29.9, 80.7, 5225, 300 }, + [14] = { 27.7, 80.5, 5225, 300 }, + [15] = { 27.1, 80.3, 5225, 300 }, + [16] = { 29.5, 80.3, 5225, 300 }, + [17] = { 28.7, 80.3, 5225, 300 }, + [18] = { 28.5, 79.8, 5225, 300 }, + [19] = { 31.5, 79.5, 5225, 300 }, + [20] = { 31.3, 79.4, 5225, 300 }, + [21] = { 30.3, 78.6, 5225, 300 }, + [22] = { 29.1, 78.6, 5225, 300 }, + [23] = { 27.7, 78.3, 5225, 300 }, + [24] = { 31.5, 77.6, 5225, 300 }, + [25] = { 29.2, 77.5, 5225, 300 }, + [26] = { 28.3, 77.1, 5225, 300 }, + [27] = { 29.4, 76.2, 5225, 300 }, + [28] = { 31.2, 75.7, 5225, 300 }, + [29] = { 27.8, 75.7, 5225, 300 }, + [30] = { 32.7, 75.4, 5225, 300 }, + [31] = { 31.7, 74.1, 5225, 300 }, + [32] = { 31.7, 69.6, 5225, 300 }, + }, + ["lvl"] = "8-10", + }, + [61783] = { + ["coords"] = { + [1] = { 29.3, 80.8, 5225, 300 }, + [2] = { 28.8, 74.9, 5225, 300 }, + [3] = { 29.5, 74, 5225, 300 }, + [4] = { 31.7, 72.4, 5225, 300 }, + }, + ["lvl"] = "8", + }, + [61784] = { + ["coords"] = { + [1] = { 27.5, 76, 5225, 300 }, + }, + ["lvl"] = "10", + }, + [61785] = { + ["coords"] = { + [1] = { 52.1, 3.9, 28, 300 }, + [2] = { 26.5, 82.4, 5225, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "10", + }, + [61786] = { + ["coords"] = { + [1] = { 12, 19.1, 139, 300 }, + [2] = { 12, 18.1, 139, 300 }, + [3] = { 11.2, 17.5, 139, 300 }, + [4] = { 12.3, 17.3, 139, 300 }, + [5] = { 10.6, 16.8, 139, 120 }, + [6] = { 11.6, 16.7, 139, 300 }, + [7] = { 12.8, 16.5, 139, 300 }, + [8] = { 11, 16, 139, 300 }, + [9] = { 12.3, 16, 139, 300 }, + [10] = { 11.6, 15.6, 139, 300 }, + [11] = { 10.7, 15.5, 139, 300 }, + [12] = { 11.9, 14.8, 139, 300 }, + [13] = { 11, 14.7, 139, 300 }, + [14] = { 12, 14.2, 139, 300 }, + [15] = { 53.3, 79.8, 5225, 300 }, + [16] = { 53.4, 78.6, 5225, 300 }, + [17] = { 52.3, 77.8, 5225, 300 }, + [18] = { 53.7, 77.5, 5225, 300 }, + [19] = { 51.6, 76.9, 5225, 120 }, + [20] = { 52.9, 76.8, 5225, 300 }, + [21] = { 54.4, 76.5, 5225, 300 }, + [22] = { 52.1, 76, 5225, 300 }, + [23] = { 53.8, 75.9, 5225, 300 }, + [24] = { 52.9, 75.5, 5225, 300 }, + [25] = { 51.7, 75.3, 5225, 300 }, + [26] = { 53.3, 74.4, 5225, 300 }, + [27] = { 52.2, 74.4, 5225, 300 }, + [28] = { 53.3, 73.7, 5225, 300 }, + [29] = { 52.1, 73.3, 5225, 300 }, + }, + ["lvl"] = "4", + }, + [61787] = { + ["coords"] = { + [1] = { 11.5, 15, 139, 300 }, + [2] = { 52.8, 74.7, 5225, 300 }, + }, + ["lvl"] = "5", + }, + [61788] = { + ["coords"] = { + [1] = { 52.2, 4, 28, 300 }, + [2] = { 26.7, 82.5, 5225, 300 }, + }, + ["lvl"] = "11", + ["rnk"] = "1", + }, + [61789] = { + ["coords"] = { + [1] = { 26.5, 58.4, 5225, 7300 }, + [2] = { 35.3, 48.2, 5225, 10000 }, + }, + ["lvl"] = "9", + ["rnk"] = "4", + }, + [61790] = { + ["coords"] = { + [1] = { 28.1, 21.1, 5225, 43200 }, + }, + ["lvl"] = "10", + ["rnk"] = "4", + }, + [61791] = { + ["coords"] = { + [1] = { 27.5, 80.3, 5225, 43200 }, + }, + ["lvl"] = "12", + ["rnk"] = "4", + }, + [61792] = { + ["coords"] = { + [1] = { 92.8, 68.1, 14, 43200 }, + [2] = { 24.1, 83.6, 5536, 43200 }, + }, + ["lvl"] = "9", + ["rnk"] = "4", + }, + [61793] = { + ["coords"] = { + [1] = { 64.8, 56.9, 5536, 43200 }, + }, + ["lvl"] = "10", + ["rnk"] = "4", + }, + [61794] = { + ["coords"] = { + [1] = { 54.8, 28.8, 5536, 43200 }, + }, + ["lvl"] = "12", + ["rnk"] = "4", + }, + [61795] = { + ["coords"] = { + [1] = { 55.6, 32.5, 5536, 300 }, + }, + ["lvl"] = "10", + }, + [61796] = { + ["coords"] = { + [1] = { 63.9, 55.7, 2040, 300 }, + [2] = { 68.2, 28.6, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [61797] = { + ["coords"] = { + [1] = { 26.8, 25.4, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [61798] = { + ["coords"] = { + [1] = { 26.1, 27.4, 5225, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "45", + }, + [61799] = { + ["coords"] = { + [1] = { 59.5, 61.6, 2040, 300 }, + [2] = { 66.1, 31.3, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [61800] = { + ["coords"] = { + [1] = { 61.2, 60.9, 2040, 300 }, + [2] = { 66.9, 31, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [61801] = { + ["coords"] = { + [1] = { 15.4, 14.3, 139, 300 }, + [2] = { 57.6, 73.8, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [61802] = { + ["coords"] = { + [1] = { 59.4, 61.1, 2040, 300 }, + [2] = { 66, 31.1, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [61803] = { + ["coords"] = { + [1] = { 40.4, 35.9, 2040, 300 }, + [2] = { 57, 19.2, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [61804] = { + ["coords"] = { + [1] = { 41.1, 32.9, 2040, 300 }, + [2] = { 57.4, 17.8, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [61805] = { + ["coords"] = { + [1] = { 41, 32.7, 2040, 300 }, + [2] = { 57.3, 17.7, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [61806] = { + ["coords"] = { + [1] = { 44.3, 50.6, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [61807] = { + ["coords"] = { + [1] = { 7.9, 22.7, 139, 300 }, + [2] = { 48.3, 84.3, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [61808] = { + ["coords"] = { + [1] = { 36.8, 77.2, 2040, 120 }, + [2] = { 55.3, 38.8, 5225, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [61809] = { + ["coords"] = { + [1] = { 47.2, 79.1, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [61810] = { + ["coords"] = { + [1] = { 46.3, 63.4, 2040, 300 }, + [2] = { 59.8, 32.2, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [61811] = { + ["coords"] = { + [1] = { 36.6, 94.4, 2040, 300 }, + [2] = { 55.2, 46.9, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [61812] = { + ["coords"] = { + [1] = { 53.6, 51.2, 2040, 300 }, + [2] = { 63.3, 26.4, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [61813] = { + ["coords"] = { + [1] = { 53, 55.7, 2040, 300 }, + [2] = { 63, 28.6, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [61814] = { + ["coords"] = { + [1] = { 51.9, 51, 2040, 300 }, + [2] = { 62.5, 26.3, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [61815] = { + ["coords"] = { + [1] = { 52.5, 63.9, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [61816] = { + ["coords"] = { + [1] = { 44, 50.2, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [61817] = { + ["coords"] = { + [1] = { 47.3, 78.5, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [61818] = { + ["coords"] = { + [1] = { 51.4, 58, 2040, 300 }, + [2] = { 62.3, 29.7, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [61819] = { + ["coords"] = { + [1] = { 51.4, 58, 2040, 300 }, + [2] = { 62.2, 29.7, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [61820] = { + ["coords"] = { + [1] = { 36.2, 76.2, 2040, 300 }, + [2] = { 55, 38.3, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [61821] = { + ["coords"] = { + [1] = { 52.4, 64.4, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [61822] = { + ["coords"] = { + [1] = { 43.4, 82.9, 2040, 300 }, + [2] = { 58.4, 41.5, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [61823] = { + ["coords"] = { + [1] = { 46.3, 63.3, 2040, 300 }, + [2] = { 59.8, 32.2, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [61824] = { + ["coords"] = { + [1] = { 41.5, 35.4, 2040, 300 }, + [2] = { 57.6, 18.9, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [61825] = { + ["coords"] = { + [1] = { 41.5, 34.9, 2040, 300 }, + [2] = { 57.5, 18.7, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [61826] = { + ["coords"] = { + [1] = { 47, 67, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [61827] = { + ["coords"] = { + [1] = { 51.5, 33.2, 2040, 300 }, + [2] = { 62.3, 17.9, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [61828] = { + ["coords"] = { + [1] = { 41.3, 33.6, 2040, 300 }, + [2] = { 57.5, 18.1, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [61829] = { + ["coords"] = { + [1] = { 7.6, 22.5, 139, 300 }, + [2] = { 47.8, 84.1, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [61830] = { + ["coords"] = { + [1] = { 62.6, 46.9, 2040, 300 }, + [2] = { 67.6, 24.4, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [61831] = { + ["coords"] = { + [1] = { 36.4, 76.8, 2040, 300 }, + [2] = { 55.1, 38.6, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [61832] = { + ["coords"] = { + [1] = { 44.9, 46.9, 2040, 300 }, + [2] = { 59.1, 24.4, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [61833] = { + ["coords"] = { + [1] = { 44.5, 50, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [61834] = { + ["coords"] = { + [1] = { 66.2, 50.4, 2040, 300 }, + [2] = { 69.3, 26.1, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [61835] = { + ["coords"] = { + [1] = { 38.9, 64.4, 2040, 300 }, + [2] = { 56.3, 32.7, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [61836] = { + ["coords"] = { + [1] = { 62.3, 46.7, 2040, 300 }, + [2] = { 67.4, 24.3, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [61837] = { + ["coords"] = { + [1] = { 42.9, 84, 2040, 300 }, + [2] = { 58.2, 42, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [61838] = { + ["coords"] = { + [1] = { 16.2, 85.4, 2040, 300 }, + [2] = { 45.5, 42.6, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [61839] = { + ["coords"] = { + [1] = { 46.2, 44.7, 2040, 300 }, + [2] = { 59.8, 23.4, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [61840] = { + ["coords"] = { + [1] = { 45.3, 46.2, 2040, 300 }, + [2] = { 59.3, 24.1, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [61841] = { + ["coords"] = { + [1] = { 43.6, 82.2, 2040, 300 }, + [2] = { 58.6, 41.1, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [61842] = { + ["coords"] = { + [1] = { 63.6, 56, 2040, 300 }, + [2] = { 68.1, 28.7, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [61843] = { + ["coords"] = { + [1] = { 62.7, 55.8, 2040, 300 }, + [2] = { 67.6, 28.6, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [61844] = { + ["coords"] = { + [1] = { 34.9, 32.3, 5225, 300 }, + [2] = { 35.4, 32.2, 5225, 300 }, + [3] = { 36.1, 31.5, 5225, 300 }, + [4] = { 36.7, 30.7, 5225, 300 }, + [5] = { 36.1, 29.7, 5225, 300 }, + [6] = { 36.1, 29.4, 5225, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "25", + }, + [61845] = { + ["coords"] = { + [1] = { 34.9, 30.3, 5225, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "25", + }, + [61846] = { + ["coords"] = { + [1] = { 16.5, 85.6, 2040, 300 }, + [2] = { 45.6, 42.7, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [61847] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [61848] = { + ["coords"] = { + [1] = { 44.4, 57.8, 5225, 300 }, + [2] = { 44.8, 57.8, 5225, 300 }, + [3] = { 44.2, 57.7, 5225, 300 }, + [4] = { 44.6, 57.5, 5225, 300 }, + [5] = { 44.6, 57.2, 5225, 300 }, + [6] = { 44.4, 57.1, 5225, 300 }, + [7] = { 44.3, 56.8, 5225, 300 }, + [8] = { 44.3, 56.3, 5225, 300 }, + [9] = { 44.2, 56.2, 5225, 300 }, + [10] = { 44.4, 56.2, 5225, 300 }, + [11] = { 44.4, 56.1, 5225, 300 }, + [12] = { 44.8, 56.1, 5225, 300 }, + [13] = { 44.3, 55.9, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [61849] = { + ["coords"] = { + [1] = { 44.2, 57.7, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [61850] = { + ["coords"] = { + [1] = { 6.6, 24.8, 139, 300 }, + [2] = { 46.6, 87, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [61851] = { + ["coords"] = { + [1] = { 8.2, 22.2, 139, 300 }, + [2] = { 48.6, 83.6, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [61852] = { + ["coords"] = { + [1] = { 70.5, 48.8, 2040, 300 }, + [2] = { 71.4, 25.3, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [61853] = { + ["coords"] = { + [1] = { 71.1, 29.8, 28, 86400 }, + [2] = { 11.8, 49.9, 139, 86400 }, + }, + ["lvl"] = "59", + ["rnk"] = "2", + }, + [61854] = { + ["coords"] = { + [1] = { 37.4, 45.4, 406, 300 }, + [2] = { 38.1, 44.5, 406, 300 }, + [3] = { 38.5, 44.3, 406, 300 }, + [4] = { 37.9, 44.1, 406, 300 }, + [5] = { 38.2, 44, 406, 300 }, + [6] = { 43.3, 39.3, 406, 300 }, + [7] = { 42.4, 39.2, 406, 300 }, + [8] = { 41.9, 39.1, 406, 300 }, + [9] = { 42.2, 38.5, 406, 300 }, + [10] = { 43.3, 38.1, 406, 300 }, + }, + ["lvl"] = "24-25", + }, + [61855] = { + ["coords"] = { + [1] = { 38.3, 45.2, 406, 300 }, + [2] = { 39, 44.9, 406, 300 }, + [3] = { 37.2, 44.4, 406, 300 }, + [4] = { 39.2, 44.1, 406, 300 }, + [5] = { 37.1, 43.9, 406, 300 }, + [6] = { 39.9, 42.3, 406, 300 }, + [7] = { 43, 40.9, 406, 300 }, + [8] = { 40.2, 40.2, 406, 300 }, + [9] = { 41.1, 39.6, 406, 300 }, + [10] = { 39.8, 39.4, 406, 300 }, + [11] = { 43, 39.2, 406, 300 }, + [12] = { 39.4, 38.7, 406, 300 }, + }, + ["lvl"] = "24-25", + }, + [61856] = { + ["coords"] = { + [1] = { 37.8, 45.9, 406, 300 }, + [2] = { 39.2, 42.8, 406, 300 }, + [3] = { 39.5, 42.2, 406, 300 }, + [4] = { 43.4, 40.5, 406, 300 }, + [5] = { 40.1, 38.9, 406, 300 }, + [6] = { 40.7, 38.8, 406, 300 }, + [7] = { 43.5, 37.5, 406, 300 }, + [8] = { 43.8, 36.5, 406, 300 }, + }, + ["lvl"] = "25-26", + }, + [61857] = { + ["coords"] = { + [1] = { 38.7, 46.4, 406, 300 }, + [2] = { 37.1, 46, 406, 300 }, + [3] = { 38, 45.1, 406, 300 }, + [4] = { 38.8, 45.1, 406, 300 }, + [5] = { 37.5, 44.9, 406, 300 }, + [6] = { 39.4, 43.7, 406, 300 }, + [7] = { 38.7, 43.1, 406, 300 }, + [8] = { 40, 43, 406, 300 }, + [9] = { 40.2, 41.4, 406, 300 }, + [10] = { 42.4, 40.4, 406, 300 }, + [11] = { 42.7, 40.1, 406, 300 }, + [12] = { 43.3, 40.1, 406, 300 }, + [13] = { 41.9, 39.9, 406, 300 }, + [14] = { 42.7, 39.7, 406, 300 }, + [15] = { 42, 39.6, 406, 300 }, + [16] = { 43.3, 39.5, 406, 300 }, + [17] = { 41.4, 39.1, 406, 300 }, + [18] = { 43.3, 39.1, 406, 300 }, + [19] = { 42.9, 37.5, 406, 300 }, + }, + ["lvl"] = "22-24", + }, + [61858] = { + ["coords"] = { + [1] = { 37.8, 44.7, 406, 300 }, + [2] = { 37.7, 44.3, 406, 300 }, + [3] = { 43.7, 43.1, 406, 300 }, + [4] = { 39.5, 42.2, 406, 300 }, + [5] = { 39.8, 41.7, 406, 300 }, + [6] = { 40, 38.7, 406, 300 }, + }, + ["lvl"] = "25-26", + }, + [61859] = { + ["coords"] = { + [1] = { 45.4, 37.9, 406, 300 }, + [2] = { 45.8, 37.7, 406, 300 }, + [3] = { 45.3, 37.2, 406, 300 }, + [4] = { 46, 37, 406, 300 }, + [5] = { 45.6, 37, 406, 300 }, + [6] = { 46.4, 36.9, 406, 300 }, + [7] = { 45.9, 36.3, 406, 300 }, + [8] = { 45.1, 36.2, 406, 300 }, + [9] = { 45.5, 36.2, 406, 300 }, + [10] = { 46.2, 36, 406, 300 }, + [11] = { 46.6, 35.9, 406, 300 }, + [12] = { 44.7, 35.8, 406, 300 }, + [13] = { 47.5, 35.8, 406, 300 }, + [14] = { 47.1, 35.7, 406, 300 }, + [15] = { 46.4, 35.5, 406, 300 }, + [16] = { 45.8, 35.3, 406, 300 }, + [17] = { 45.5, 34.9, 406, 300 }, + [18] = { 45.1, 34.8, 406, 300 }, + [19] = { 45, 34.2, 406, 300 }, + [20] = { 45.3, 34.1, 406, 300 }, + [21] = { 45, 33.9, 406, 300 }, + }, + ["lvl"] = "21-23", + }, + [61860] = { + ["coords"] = { + [1] = { 37.4, 44.6, 406, 300 }, + }, + ["lvl"] = "28", + }, + [61861] = { + ["coords"] = { + [1] = { 36.7, 51.3, 406, 300 }, + }, + ["lvl"] = "30", + }, + [61862] = { + ["coords"] = { + [1] = { 59, 28.9, 5536, 300 }, + }, + ["lvl"] = "11", + }, + [61863] = { + ["coords"] = { + [1] = { 58.6, 37.7, 5536, 300 }, + }, + ["lvl"] = "12", + }, + [61864] = { + ["coords"] = { + [1] = { 16.3, 14, 139, 300 }, + [2] = { 16.3, 13.8, 139, 300 }, + [3] = { 16.2, 13.7, 139, 300 }, + [4] = { 58.7, 73.4, 5225, 300 }, + [5] = { 58.8, 73.2, 5225, 300 }, + [6] = { 58.7, 73.1, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [61865] = { + ["coords"] = { + [1] = { 16, 13.9, 139, 300 }, + [2] = { 15.9, 13.6, 139, 300 }, + [3] = { 16.1, 13.6, 139, 300 }, + [4] = { 58.5, 73.3, 5225, 300 }, + [5] = { 58.3, 73, 5225, 300 }, + [6] = { 58.5, 72.9, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [61866] = { + ["coords"] = { + [1] = { 16.3, 14.3, 139, 300 }, + [2] = { 16.3, 14.2, 139, 300 }, + [3] = { 16.1, 14, 139, 300 }, + [4] = { 49.1, 25.5, 2040, 300 }, + [5] = { 47.1, 24.4, 2040, 300 }, + [6] = { 48.2, 23.9, 2040, 300 }, + [7] = { 48.5, 22.9, 2040, 300 }, + [8] = { 47.6, 22.8, 2040, 300 }, + [9] = { 58.8, 73.8, 5225, 300 }, + [10] = { 58.8, 73.7, 5225, 300 }, + [11] = { 58.5, 73.4, 5225, 300 }, + [12] = { 61.2, 14.3, 5225, 300 }, + [13] = { 60.2, 13.7, 5225, 300 }, + [14] = { 60.7, 13.5, 5225, 300 }, + [15] = { 60.8, 13, 5225, 300 }, + [16] = { 60.4, 13, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [61867] = { + ["coords"] = { + [1] = { 24.1, 66.2, 2040, 300 }, + [2] = { 49.2, 33.5, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [61868] = { + ["coords"] = { + [1] = { 24, 66, 2040, 300 }, + [2] = { 49.2, 33.5, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [61869] = { + ["coords"] = { + [1] = { 24, 65.9, 2040, 300 }, + [2] = { 49.2, 33.4, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [61870] = { + ["coords"] = { + [1] = { 23.9, 65.5, 2040, 300 }, + [2] = { 49.2, 33.2, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [61871] = { + ["coords"] = { + [1] = { 23.9, 65.3, 2040, 300 }, + [2] = { 49.1, 33.1, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [61872] = { + ["coords"] = { + [1] = { 47.2, 26, 2040, 300 }, + [2] = { 60.2, 14.5, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [61873] = { + ["coords"] = { + [1] = { 63.4, 56.2, 2040, 300 }, + [2] = { 68, 28.8, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [61874] = { + ["coords"] = { + [1] = { 8.5, 22.7, 139, 300 }, + [2] = { 9.2, 22.5, 139, 300 }, + [3] = { 7.7, 22, 139, 300 }, + [4] = { 45.9, 57.1, 2040, 300 }, + [5] = { 41.4, 49.4, 2040, 300 }, + [6] = { 41.5, 49.2, 2040, 300 }, + [7] = { 70.6, 49.1, 2040, 300 }, + [8] = { 70.1, 47.4, 2040, 300 }, + [9] = { 61, 47.4, 2040, 300 }, + [10] = { 70.2, 42.3, 2040, 300 }, + [11] = { 49, 84.3, 5225, 300 }, + [12] = { 49.8, 84.1, 5225, 300 }, + [13] = { 47.9, 83.4, 5225, 300 }, + [14] = { 35, 30, 5225, 300 }, + [15] = { 59.6, 29.2, 5225, 300 }, + [16] = { 57.5, 25.6, 5225, 300 }, + [17] = { 57.5, 25.5, 5225, 300 }, + [18] = { 71.4, 25.4, 5225, 300 }, + [19] = { 71.2, 24.6, 5225, 300 }, + [20] = { 66.8, 24.6, 5225, 300 }, + [21] = { 71.2, 22.2, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "7", + }, + [61875] = { + ["coords"] = { + [1] = { 46.2, 65.7, 2040, 300 }, + [2] = { 59.8, 33.3, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [61876] = { + ["coords"] = { + [1] = { 45.8, 66.1, 2040, 300 }, + [2] = { 59.6, 33.5, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [61877] = { + ["coords"] = { + [1] = { 51.7, 57.5, 2040, 300 }, + [2] = { 62.4, 29.4, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [61878] = { + ["coords"] = { + [1] = { 8.4, 19.5, 139, 300 }, + [2] = { 48.8, 80.4, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [61879] = { + ["coords"] = { + [1] = { 47.9, 52.1, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [61880] = { + ["coords"] = { + [1] = { 29.9, 69.6, 2040, 300 }, + [2] = { 52, 35.2, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [61881] = { + ["coords"] = { + [1] = { 7.2, 22.6, 139, 300 }, + [2] = { 47.3, 84.2, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [61882] = { + ["coords"] = { + [1] = { 42.7, 67.8, 2040, 300 }, + [2] = { 58.1, 34.3, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [61883] = { + ["coords"] = { + [1] = { 36.2, 76.1, 2040, 300 }, + [2] = { 55, 38.2, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [61884] = { + ["coords"] = { + [1] = { 52.2, 63.8, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [61885] = { + ["coords"] = { + [1] = { 22.9, 74.3, 2040, 300 }, + [2] = { 23.1, 74, 2040, 300 }, + [3] = { 22, 72.3, 2040, 300 }, + [4] = { 26.2, 68.8, 2040, 300 }, + [5] = { 27.4, 68.1, 2040, 300 }, + [6] = { 48.7, 37.3, 5225, 300 }, + [7] = { 48.7, 37.2, 5225, 300 }, + [8] = { 48.3, 36.4, 5225, 300 }, + [9] = { 50.2, 34.7, 5225, 300 }, + [10] = { 50.8, 34.4, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [61886] = { + ["coords"] = { + [1] = { 72.8, 27.1, 28, 300 }, + [2] = { 13.7, 46.9, 139, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "40", + }, + [61887] = { + ["coords"] = { + [1] = { 40.8, 18.4, 406, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [61888] = { + ["coords"] = { + [1] = { 35.7, 32.1, 5225, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "25", + }, + [61889] = { + ["coords"] = { + [1] = { 73.8, 76.7, 11, 300 }, + [2] = { 71.5, 76.5, 11, 300 }, + [3] = { 71.3, 74.8, 11, 300 }, + [4] = { 72.3, 74.8, 11, 300 }, + [5] = { 75.3, 74.7, 11, 300 }, + [6] = { 79.6, 72.6, 11, 300 }, + [7] = { 78.4, 71.9, 11, 300 }, + [8] = { 74.5, 70, 11, 300 }, + [9] = { 73.9, 69.4, 11, 300 }, + [10] = { 74.8, 62.5, 11, 300 }, + [11] = { 25.5, 37.9, 5602, 300 }, + [12] = { 23.7, 37.7, 5602, 300 }, + [13] = { 23.5, 36.4, 5602, 300 }, + [14] = { 24.2, 36.4, 5602, 300 }, + [15] = { 26.5, 36.4, 5602, 300 }, + [16] = { 29.8, 34.8, 5602, 300 }, + [17] = { 29, 34.2, 5602, 300 }, + [18] = { 26, 32.7, 5602, 300 }, + [19] = { 25.5, 32.3, 5602, 300 }, + [20] = { 26.2, 26.9, 5602, 300 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [61890] = { + ["coords"] = { + [1] = { 70.6, 79.4, 11, 300 }, + [2] = { 72.8, 78.5, 11, 300 }, + [3] = { 71.7, 77.6, 11, 300 }, + [4] = { 73.9, 75.3, 11, 300 }, + [5] = { 76.4, 73.7, 11, 300 }, + [6] = { 78, 73.6, 11, 300 }, + [7] = { 71.2, 73.5, 11, 300 }, + [8] = { 80.2, 70.7, 11, 300 }, + [9] = { 72.8, 64.1, 11, 300 }, + [10] = { 73.6, 62.9, 11, 300 }, + [11] = { 75.1, 61.5, 11, 300 }, + [12] = { 72.7, 60.9, 11, 300 }, + [13] = { 72.6, 55.8, 11, 300 }, + [14] = { 23, 40, 5602, 300 }, + [15] = { 24.7, 39.3, 5602, 300 }, + [16] = { 23.8, 38.6, 5602, 300 }, + [17] = { 25.5, 36.9, 5602, 300 }, + [18] = { 27.4, 35.6, 5602, 300 }, + [19] = { 28.7, 35.5, 5602, 300 }, + [20] = { 23.4, 35.4, 5602, 300 }, + [21] = { 30.3, 33.2, 5602, 300 }, + [22] = { 24.6, 28.2, 5602, 300 }, + [23] = { 25.3, 27.3, 5602, 300 }, + [24] = { 26.4, 26.2, 5602, 300 }, + [25] = { 24.6, 25.8, 5602, 300 }, + [26] = { 24.5, 21.8, 5602, 300 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [61891] = { + ["coords"] = { + [1] = { 71.6, 57.2, 11, 300 }, + [2] = { 23.7, 22.9, 5602, 300 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [61892] = { + ["coords"] = { + [1] = { 74.8, 64.1, 11, 300 }, + [2] = { 72, 63.6, 11, 300 }, + [3] = { 74, 62.5, 11, 300 }, + [4] = { 72.5, 61.6, 11, 300 }, + [5] = { 26.2, 28.2, 5602, 300 }, + [6] = { 24, 27.8, 5602, 300 }, + [7] = { 25.6, 27, 5602, 300 }, + [8] = { 24.4, 26.3, 5602, 300 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [61893] = { + ["coords"] = { + [1] = { 80.9, 71.1, 11, 300 }, + [2] = { 74, 69.3, 11, 300 }, + [3] = { 72.1, 67.5, 11, 300 }, + [4] = { 71.5, 63.6, 11, 300 }, + [5] = { 72.3, 61.9, 11, 300 }, + [6] = { 72.6, 61.7, 11, 300 }, + [7] = { 30.9, 33.6, 5602, 300 }, + [8] = { 25.6, 32.2, 5602, 300 }, + [9] = { 24.1, 30.8, 5602, 300 }, + [10] = { 23.7, 27.8, 5602, 300 }, + [11] = { 24.3, 26.5, 5602, 300 }, + [12] = { 24.5, 26.4, 5602, 300 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [61894] = { + ["coords"] = { + [1] = { 26.9, 68.3, 2040, 300 }, + [2] = { 50.6, 34.5, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [61895] = { + ["coords"] = { + [1] = { 6.9, 40.7, 2040, 300 }, + [2] = { 41.1, 21.5, 5225, 300 }, + }, + ["lvl"] = "12", + }, + [61896] = { + ["coords"] = { + [1] = { 41.3, 66.8, 1519, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [61897] = { + ["coords"] = { + [1] = { 41.5, 67.5, 1519, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [61898] = { + ["coords"] = { + [1] = { 41.7, 67.7, 1519, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [61899] = { + ["coords"] = { + [1] = { 57.3, 28.4, 5130, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "20", + }, + [61900] = { + ["coords"] = { + [1] = { 61.6, 58.4, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [61901] = { + ["coords"] = { + [1] = { 61.7, 58.7, 1497, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [61902] = { + ["coords"] = { + [1] = { 61.1, 58.4, 1497, 300 }, + }, + ["lvl"] = "45", + }, + [61903] = { + ["coords"] = { + [1] = { 57.3, 28.6, 5130, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [61904] = { + ["coords"] = { + [1] = { 57.2, 28.2, 5130, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [61905] = { + ["coords"] = { + [1] = { 49.4, 74.2, 1519, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [61906] = { + ["coords"] = { + [1] = { 49.9, 73.1, 1519, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [61907] = { + ["coords"] = { + [1] = { 49.6, 75, 1519, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [61908] = { + ["coords"] = { + [1] = { 50.1, 74.3, 1519, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "28", + }, + [61909] = { + ["coords"] = { + [1] = { 58.5, 24.1, 1537, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [61910] = { + ["coords"] = { + [1] = { 58, 25.4, 1537, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [61911] = { + ["coords"] = { + [1] = { 59, 24.1, 1537, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [61912] = { + ["coords"] = { + [1] = { 58.9, 25.7, 1537, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [61913] = { + ["coords"] = { + [1] = { 67.2, 22.5, 440, 120 }, + }, + ["lvl"] = "57", + }, + [61914] = { + ["coords"] = { + [1] = { 66.8, 22.2, 440, 120 }, + }, + ["lvl"] = "35", + }, + [61915] = { + ["coords"] = { + [1] = { 53.9, 53.4, 2040, 120 }, + [2] = { 63.4, 27.5, 5225, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [61916] = { + ["coords"] = { + [1] = { 53.8, 53.8, 2040, 120 }, + [2] = { 63.4, 27.6, 5225, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "31", + }, + [61917] = { + ["coords"] = { + [1] = { 53.9, 54.3, 2040, 120 }, + [2] = { 63.4, 27.9, 5225, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [61918] = { + ["coords"] = { + [1] = { 45.7, 40.9, 1637, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [61919] = { + ["coords"] = { + [1] = { 45.7, 40.2, 1637, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [61920] = { + ["coords"] = { + [1] = { 45.7, 41.9, 1637, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [61921] = { + ["coords"] = { + [1] = { 78.1, 76.4, 1497, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [61922] = { + ["coords"] = { + [1] = { 78.5, 77.6, 1497, 120 }, + }, + ["lvl"] = "28", + }, + [61923] = { + ["coords"] = { + [1] = { 78, 77.4, 1497, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [61924] = { + ["coords"] = { + [1] = { 76.8, 76.5, 1497, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "41", + }, + [61925] = { + ["coords"] = { + [1] = { 57.4, 26.3, 14, 120 }, + }, + ["lvl"] = "30", + }, + [61926] = { + ["coords"] = { + [1] = { 57.5, 26.4, 14, 120 }, + }, + ["lvl"] = "32", + }, + [61927] = { + ["coords"] = { + [1] = { 57.3, 26.5, 14, 120 }, + }, + ["lvl"] = "35", + }, + [61928] = { + ["coords"] = { + [1] = { 70.8, 29.8, 3, 300 }, + [2] = { 32.8, 97.1, 5602, 300 }, + }, + ["lvl"] = "42", + }, + [61929] = { + ["coords"] = { + [1] = { 44.1, 23.3, 4, 300 }, + }, + ["lvl"] = "52", + }, + [61930] = { + ["coords"] = { + [1] = { 25.6, 50.1, 1537, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "48", + }, + [61931] = { + ["coords"] = { + [1] = { 26.2, 50.3, 1537, 120 }, + [2] = { 26.2, 49.5, 1537, 120 }, + [3] = { 26.6, 49.1, 1537, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "53", + ["rnk"] = "1", + }, + [61932] = { + ["coords"] = { + [1] = { 69.3, 32.1, 3457, 604800 }, + [2] = { 64.2, 20.9, 3457, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [61933] = { + ["coords"] = { + [1] = { 71.1, 34.2, 3457, 604800 }, + [2] = { 70.4, 33.6, 3457, 604800 }, + [3] = { 77.4, 32, 3457, 604800 }, + [4] = { 71.3, 27.6, 3457, 604800 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [61934] = { + ["coords"] = { + [1] = { 71.9, 38.2, 3457, 604800 }, + [2] = { 71.6, 37.7, 3457, 604800 }, + [3] = { 72, 37.6, 3457, 604800 }, + [4] = { 70, 34.9, 3457, 604800 }, + [5] = { 74.3, 30.5, 3457, 604800 }, + [6] = { 75.1, 29.9, 3457, 604800 }, + [7] = { 71.8, 27.5, 3457, 604800 }, + [8] = { 71, 27.2, 3457, 604800 }, + [9] = { 70.5, 24.8, 3457, 604800 }, + [10] = { 73.1, 22, 3457, 604800 }, + [11] = { 72.5, 21.9, 3457, 604800 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [61935] = { + ["coords"] = { + [1] = { 72.5, 33.2, 3457, 604800 }, + [2] = { 77.8, 32.9, 3457, 604800 }, + [3] = { 68.5, 25.5, 3457, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [61936] = { + ["coords"] = { + [1] = { 55.6, 38.1, 3457, 604800 }, + [2] = { 56.5, 36, 3457, 604800 }, + [3] = { 57.8, 34.6, 3457, 604800 }, + [4] = { 79.7, 32.3, 3457, 604800 }, + [5] = { 74.1, 29.9, 3457, 604800 }, + [6] = { 63.7, 27.6, 3457, 604800 }, + [7] = { 72.5, 26.8, 3457, 604800 }, + [8] = { 58, 25.3, 3457, 604800 }, + [9] = { 60.3, 23.9, 3457, 604800 }, + [10] = { 64.9, 21.9, 3457, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [61937] = { + ["coords"] = { + [1] = { 56.9, 35.9, 3457, 604800 }, + [2] = { 54.3, 35.6, 3457, 604800 }, + [3] = { 70.2, 34.5, 3457, 604800 }, + [4] = { 70.8, 33.7, 3457, 604800 }, + [5] = { 79, 33.6, 3457, 604800 }, + [6] = { 69.8, 32.8, 3457, 604800 }, + [7] = { 80.1, 32, 3457, 604800 }, + [8] = { 79.1, 31.6, 3457, 604800 }, + [9] = { 79.1, 31.5, 3457, 604800 }, + [10] = { 75.8, 31.5, 3457, 604800 }, + [11] = { 75.6, 30.7, 3457, 604800 }, + [12] = { 52.4, 29.4, 3457, 604800 }, + [13] = { 74, 29, 3457, 604800 }, + [14] = { 73.4, 28.6, 3457, 604800 }, + [15] = { 69.2, 27, 3457, 604800 }, + [16] = { 65.2, 26.1, 3457, 604800 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [61938] = { + ["coords"] = { + [1] = { 58.5, 36.8, 3457, 604800 }, + [2] = { 56.2, 35.4, 3457, 604800 }, + [3] = { 80.2, 32.5, 3457, 604800 }, + [4] = { 77.2, 31.8, 3457, 604800 }, + [5] = { 71, 31.8, 3457, 604800 }, + [6] = { 73.3, 29.7, 3457, 604800 }, + [7] = { 73.2, 28.8, 3457, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [61939] = { + ["coords"] = { + [1] = { 61.7, 46.3, 3457, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [61940] = { + ["coords"] = { + [1] = { 53.8, 92.6, 3457, 604800 }, + [2] = { 50.5, 62.9, 3457, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [61941] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [61942] = { + ["coords"] = { + [1] = { 54.7, 93.9, 3457, 604800 }, + [2] = { 53.2, 91.1, 3457, 604800 }, + [3] = { 43.2, 73.1, 3457, 604800 }, + [4] = { 43.3, 71.2, 3457, 604800 }, + [5] = { 55.4, 69.9, 3457, 604800 }, + [6] = { 38.7, 63.6, 3457, 604800 }, + [7] = { 38, 62, 3457, 604800 }, + [8] = { 57, 61.1, 3457, 604800 }, + [9] = { 41.2, 59.8, 3457, 604800 }, + [10] = { 44.1, 57.8, 3457, 604800 }, + [11] = { 51.3, 55.2, 3457, 604800 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [61943] = { + ["coords"] = { + [1] = { 54.8, 92.7, 3457, 604800 }, + [2] = { 50.8, 84.1, 3457, 604800 }, + [3] = { 43.8, 72.8, 3457, 604800 }, + [4] = { 43.9, 71.6, 3457, 604800 }, + [5] = { 58.6, 70.2, 3457, 604800 }, + [6] = { 53, 68.5, 3457, 604800 }, + [7] = { 38.1, 63.3, 3457, 604800 }, + [8] = { 55, 62.4, 3457, 604800 }, + [9] = { 56.2, 59.4, 3457, 604800 }, + [10] = { 43.5, 57, 3457, 604800 }, + [11] = { 43.8, 56.2, 3457, 604800 }, + [12] = { 48.9, 51.5, 3457, 604800 }, + [13] = { 48.1, 50.6, 3457, 604800 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [61944] = { + ["coords"] = { + [1] = { 53.9, 91.1, 3457, 604800 }, + [2] = { 42.9, 72.1, 3457, 604800 }, + [3] = { 59.8, 70.9, 3457, 604800 }, + [4] = { 56, 70.6, 3457, 604800 }, + [5] = { 56.4, 69.8, 3457, 604800 }, + [6] = { 38.9, 60.7, 3457, 604800 }, + [7] = { 38.5, 60.6, 3457, 604800 }, + [8] = { 57.6, 60.3, 3457, 604800 }, + [9] = { 44.4, 56.5, 3457, 604800 }, + [10] = { 60.6, 55.7, 3457, 604800 }, + [11] = { 52.3, 55.2, 3457, 604800 }, + [12] = { 51.8, 54.5, 3457, 604800 }, + [13] = { 52.7, 54.4, 3457, 604800 }, + [14] = { 58.6, 52.7, 3457, 604800 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [61945] = { + ["coords"] = { + [1] = { 43.3, 73.7, 3457, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [61946] = { + ["coords"] = { + [1] = { 49.2, 81.5, 3457, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [61947] = { + ["coords"] = { + [1] = { 54.7, 93.6, 3457, 604800 }, + [2] = { 53.7, 92.4, 3457, 604800 }, + [3] = { 54.6, 92.3, 3457, 604800 }, + [4] = { 47.6, 83.2, 3457, 604800 }, + [5] = { 50.7, 77.8, 3457, 604800 }, + [6] = { 68.9, 72.9, 3457, 604800 }, + [7] = { 70.6, 72.5, 3457, 604800 }, + [8] = { 69, 70, 3457, 604800 }, + [9] = { 63.1, 67.3, 3457, 604800 }, + [10] = { 54.6, 64.4, 3457, 604800 }, + [11] = { 55.7, 64.2, 3457, 604800 }, + [12] = { 39.4, 63.2, 3457, 604800 }, + [13] = { 55.2, 60.9, 3457, 604800 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [61948] = { + ["coords"] = { + [1] = { 54.1, 91.5, 3457, 604800 }, + [2] = { 69.7, 71.7, 3457, 604800 }, + [3] = { 70.5, 71.5, 3457, 604800 }, + [4] = { 54.7, 63.1, 3457, 604800 }, + [5] = { 56.4, 62.7, 3457, 604800 }, + [6] = { 48, 52.2, 3457, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [61949] = { + ["coords"] = { + [1] = { 53.9, 93.6, 3457, 604800 }, + [2] = { 69.7, 72.7, 3457, 604800 }, + [3] = { 37.6, 61.3, 3457, 604800 }, + [4] = { 38.6, 59.1, 3457, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [61950] = { + ["coords"] = { + [1] = { 54, 93.1, 3457, 604800 }, + [2] = { 38.2, 66, 3457, 604800 }, + [3] = { 65.1, 64.9, 3457, 604800 }, + [4] = { 45.9, 55.6, 3457, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [61951] = { + ["coords"] = { + [1] = { 63.2, 78.6, 3457, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [61952] = { + ["coords"] = { + [1] = { 37.9, 65, 3457, 604800 }, + [2] = { 38.9, 64.4, 3457, 604800 }, + [3] = { 38.5, 59.8, 3457, 604800 }, + [4] = { 48.6, 51, 3457, 604800 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [61953] = { + ["coords"] = { + [1] = { 44.1, 73.7, 3457, 604800 }, + [2] = { 44.8, 72.9, 3457, 604800 }, + [3] = { 39.4, 63.5, 3457, 604800 }, + [4] = { 49.4, 51.5, 3457, 604800 }, + [5] = { 48.7, 50, 3457, 604800 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [61954] = { + ["coords"] = { + [1] = { 45.9, 83.2, 3457, 604800 }, + [2] = { 46.1, 82.7, 3457, 604800 }, + [3] = { 51.4, 79.2, 3457, 604800 }, + [4] = { 38.2, 66.7, 3457, 604800 }, + [5] = { 41.2, 64.9, 3457, 604800 }, + [6] = { 41.5, 64.8, 3457, 604800 }, + [7] = { 38.6, 58.7, 3457, 604800 }, + [8] = { 47.8, 51.6, 3457, 604800 }, + [9] = { 69.3, 27, 3457, 604800 }, + [10] = { 66.6, 25.9, 3457, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [61955] = { + ["coords"] = { + [1] = { 51, 79.2, 3457, 604800 }, + [2] = { 50.4, 76.1, 3457, 604800 }, + [3] = { 41.6, 65.2, 3457, 604800 }, + [4] = { 38.8, 60.4, 3457, 604800 }, + [5] = { 47.9, 50.9, 3457, 604800 }, + [6] = { 68.9, 27.3, 3457, 604800 }, + [7] = { 67, 25.7, 3457, 604800 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [61956] = { + ["coords"] = { + [1] = { 45.7, 82.5, 3457, 604800 }, + [2] = { 51.2, 79.8, 3457, 604800 }, + [3] = { 41.2, 65.4, 3457, 604800 }, + [4] = { 39, 63.6, 3457, 604800 }, + [5] = { 39.1, 60, 3457, 604800 }, + [6] = { 39, 59.1, 3457, 604800 }, + [7] = { 69.5, 27.5, 3457, 604800 }, + [8] = { 67, 26.1, 3457, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [61957] = { + ["coords"] = { + [1] = { 47.7, 86.3, 3457, 604800 }, + [2] = { 45.5, 82.9, 3457, 604800 }, + [3] = { 41.5, 65.5, 3457, 604800 }, + [4] = { 39.5, 63.9, 3457, 604800 }, + [5] = { 39.4, 60.5, 3457, 604800 }, + [6] = { 69.1, 27.8, 3457, 604800 }, + [7] = { 66.7, 26.3, 3457, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [61958] = { + ["coords"] = { + [1] = { 27.2, 40, 3457, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [61959] = { + ["coords"] = { + [1] = { 26.5, 31.7, 5138, 18000 }, + [2] = { 29.2, 31.2, 5138, 18000 }, + [3] = { 27.8, 29.3, 5138, 18000 }, + }, + ["lvl"] = "17-18", + ["rnk"] = "1", + }, + [61960] = { + ["coords"] = { + [1] = { 27.9, 33.5, 5138, 18000 }, + [2] = { 30.3, 31.5, 5138, 18000 }, + [3] = { 25.4, 30.8, 5138, 18000 }, + [4] = { 27.4, 28.4, 5138, 18000 }, + [5] = { 17.1, 26.1, 5138, 18000 }, + }, + ["lvl"] = "17-18", + ["rnk"] = "1", + }, + [61961] = { + ["coords"] = { + [1] = { 30.9, 28, 5138, 604800 }, + }, + ["lvl"] = "19", + ["rnk"] = "1", + }, + [61962] = { + ["coords"] = { + [1] = { 32, 51.7, 5138, 18000 }, + [2] = { 31.3, 50.8, 5138, 18000 }, + [3] = { 35.6, 35.2, 5138, 18000 }, + [4] = { 39.3, 34.8, 5138, 18000 }, + [5] = { 39.7, 27.3, 5138, 18000 }, + [6] = { 35.4, 27.1, 5138, 18000 }, + }, + ["lvl"] = "18", + ["rnk"] = "1", + }, + [61963] = { + ["coords"] = { + [1] = { 37.6, 23.9, 5138, 604800 }, + }, + ["lvl"] = "20", + ["rnk"] = "1", + }, + [61964] = { + ["coords"] = { + [1] = { 79.5, 94.4, 718, 18000 }, + [2] = { 74.5, 94.3, 718, 18000 }, + [3] = { 81.3, 91.3, 718, 18000 }, + [4] = { 70.4, 91, 718, 18000 }, + [5] = { 83, 86.5, 718, 18000 }, + [6] = { 83.6, 86.1, 718, 18000 }, + [7] = { 83, 85.9, 718, 18000 }, + [8] = { 67.5, 81.7, 718, 18000 }, + [9] = { 67.1, 81.4, 718, 18000 }, + }, + ["lvl"] = "22", + ["rnk"] = "1", + }, + [61965] = { + ["coords"] = { + [1] = { 86.2, 80.8, 718, 604800 }, + }, + ["lvl"] = "22", + ["rnk"] = "1", + }, + [61966] = { + ["coords"] = { + [1] = { 70.6, 25.6, 718, 18000 }, + [2] = { 70.6, 23.6, 718, 18000 }, + [3] = { 68.1, 19.1, 718, 18000 }, + [4] = { 70.1, 18.9, 718, 18000 }, + [5] = { 66.7, 17.9, 718, 18000 }, + }, + ["lvl"] = "22-23", + ["rnk"] = "1", + }, + [61967] = { + ["coords"] = { + [1] = { 70.7, 26.5, 718, 18000 }, + [2] = { 69.1, 23.9, 718, 18000 }, + [3] = { 69.1, 22.7, 718, 18000 }, + [4] = { 65.7, 15.7, 718, 18000 }, + [5] = { 67.8, 15, 718, 18000 }, + [6] = { 70, 14.9, 718, 18000 }, + }, + ["lvl"] = "21-22", + ["rnk"] = "1", + }, + [61968] = { + ["coords"] = { + [1] = { 65.2, 17, 718, 604800 }, + }, + ["lvl"] = "23", + ["rnk"] = "1", + }, + [61969] = { + ["coords"] = { + [1] = { 11.9, 64.5, 209, 604800 }, + }, + ["lvl"] = "22", + ["rnk"] = "1", + }, + [61970] = { + ["coords"] = { + [1] = { 24.1, 74.4, 209, 18000 }, + [2] = { 13.9, 73.5, 209, 18000 }, + [3] = { 20.4, 72.2, 209, 18000 }, + [4] = { 16.5, 71.6, 209, 18000 }, + [5] = { 16.9, 70.4, 209, 18000 }, + [6] = { 15.4, 69.5, 209, 18000 }, + [7] = { 20.9, 66.9, 209, 18000 }, + [8] = { 17.5, 65, 209, 18000 }, + [9] = { 19.2, 64.3, 209, 18000 }, + }, + ["lvl"] = "20-21", + ["rnk"] = "1", + }, + [61971] = { + ["coords"] = { + [1] = { 72.1, 49.8, 5136, 18000 }, + [2] = { 72.5, 47.6, 5136, 18000 }, + [3] = { 71.6, 47.6, 5136, 18000 }, + [4] = { 79, 44.8, 5136, 18000 }, + [5] = { 77.8, 43.4, 5136, 18000 }, + [6] = { 72.1, 40.6, 5136, 18000 }, + [7] = { 74.9, 39, 5136, 18000 }, + [8] = { 66.8, 38.5, 5136, 18000 }, + [9] = { 77, 38.2, 5136, 18000 }, + [10] = { 77.9, 38.1, 5136, 18000 }, + [11] = { 66.3, 37.9, 5136, 18000 }, + [12] = { 73.8, 37.8, 5136, 18000 }, + [13] = { 78.3, 36.3, 5136, 18000 }, + [14] = { 73.4, 35.1, 5136, 18000 }, + }, + ["lvl"] = "31-32", + ["rnk"] = "1", + }, + [61972] = { + ["coords"] = { + [1] = { 77.5, 35.9, 5136, 604800 }, + }, + ["lvl"] = "32", + ["rnk"] = "1", + }, + [61973] = { + ["coords"] = { + [1] = { 64.7, 45, 17, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "36", + }, + [61974] = { + ["coords"] = { + [1] = { 64.6, 45.1, 17, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [61975] = { + ["coords"] = { + [1] = { 20.8, 54.9, 45, 300 }, + [2] = { 20.4, 54.8, 45, 300 }, + [3] = { 19.9, 54.4, 45, 300 }, + [4] = { 20.8, 54.3, 45, 300 }, + [5] = { 20.9, 53.7, 45, 300 }, + [6] = { 19.8, 53.5, 45, 300 }, + [7] = { 19.4, 53.4, 45, 300 }, + [8] = { 20.5, 53.2, 45, 300 }, + [9] = { 20.9, 52.8, 45, 300 }, + [10] = { 19.3, 52.7, 45, 300 }, + [11] = { 19.6, 52.3, 45, 300 }, + [12] = { 20.1, 52.3, 45, 300 }, + [13] = { 20.8, 52.2, 45, 300 }, + }, + ["lvl"] = "33-34", + }, + [61976] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [61977] = { + ["coords"] = { + [1] = { 61.8, 38.4, 17, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "40", + }, + [61978] = { + ["coords"] = { + [1] = { 64, 79.5, 618, 600 }, + }, + ["lvl"] = "60", + ["rnk"] = "3", + }, + [61979] = { + ["coords"] = { + [1] = { 34.6, 40.9, 16, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "52", + }, + [61980] = { + ["coords"] = {}, + ["lvl"] = "50", + }, + [61981] = { + ["coords"] = {}, + ["lvl"] = "50", + }, + [61982] = { + ["coords"] = { + [1] = { 56.9, 38.9, 5153, 604800 }, + }, + ["lvl"] = "38", + ["rnk"] = "1", + }, + [61983] = { + ["coords"] = { + [1] = { 74.7, 45.9, 5135, 604800 }, + }, + ["lvl"] = "36", + ["rnk"] = "1", + }, + [61984] = { + ["coords"] = { + [1] = { 58.5, 57.1, 4, 120 }, + }, + ["lvl"] = "57", + ["rnk"] = "2", + }, + [61985] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [61986] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "54", + }, + [61987] = { + ["coords"] = { + [1] = { 26.4, 32, 8, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "54", + }, + [61988] = { + ["coords"] = { + [1] = { 31.7, 70.9, 616, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "63", + ["rnk"] = "1", + }, + [61989] = { + ["coords"] = { + [1] = { 61.3, 29.9, 618, 120 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [61990] = { + ["coords"] = { + [1] = { 50.2, 50.5, 3457, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "48", + }, + [61991] = { + ["coords"] = { + [1] = { 34.9, 25.8, 1519, 120 }, + [2] = { 35.2, 91.2, 5581, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [61992] = { + ["coords"] = { + [1] = { 67.2, 24, 130, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [61994] = { + ["coords"] = {}, + ["lvl"] = "58", + ["rnk"] = "1", + }, + [61995] = { + ["coords"] = {}, + ["lvl"] = "58", + ["rnk"] = "1", + }, + [61996] = { + ["coords"] = { + [1] = { 41.2, 79.2, 41, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "58", + ["rnk"] = "1", + }, + [61997] = { + ["coords"] = { + [1] = { 63.5, 40, 3457, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "49", + }, + [61998] = { + ["coords"] = { + [1] = { 70, 33.3, 3457, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "52", + }, + [61999] = { + ["coords"] = { + [1] = { 69.7, 32.3, 3457, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [62000] = { + ["coords"] = { + [1] = { 67.1, 22.9, 3457, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "58", + }, + [62001] = { + ["coords"] = { + [1] = { 65.4, 54, 3457, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "52", + }, + [62002] = { + ["coords"] = { + [1] = { 68, 31.1, 3457, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "45", + }, + [62003] = { + ["coords"] = { + [1] = { 58.4, 58.3, 3457, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "40", + }, + [62004] = { + ["coords"] = { + [1] = { 48.7, 71.2, 331, 86400 }, + [2] = { 84, 37.6, 406, 86400 }, + }, + ["lvl"] = "59", + ["rnk"] = "1", + }, + [62005] = { + ["coords"] = {}, + ["lvl"] = "55-56", + }, + [62006] = { + ["coords"] = {}, + ["lvl"] = "7-8", + }, + [62007] = { + ["coords"] = { + [1] = { 56.2, 44.6, 618, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [62008] = { + ["coords"] = { + [1] = { 25.5, 55.8, 141, 120 }, + [2] = { 40.1, 42.8, 1657, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [62009] = { + ["coords"] = { + [1] = { 23.1, 29.2, 1, 120 }, + [2] = { 63.2, 7.8, 721, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [62010] = { + ["coords"] = { + [1] = { 39.2, 28.7, 215, 120 }, + [2] = { 46.2, 58.3, 1638, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [62011] = { + ["coords"] = { + [1] = { 35.4, 63.6, 1537, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [62012] = { + ["coords"] = { + [1] = { 65.2, 42.4, 1497, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [62014] = { + ["coords"] = { + [1] = { 13.4, 59.3, 85, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [62015] = { + ["coords"] = { + [1] = { 53.2, 71.7, 5557, 604800 }, + [2] = { 56.2, 67.8, 5557, 604800 }, + [3] = { 53.6, 65, 5557, 604800 }, + [4] = { 49.4, 64.3, 5557, 604800 }, + [5] = { 55.8, 61.8, 5557, 604800 }, + [6] = { 50.4, 59, 5557, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [62016] = { + ["coords"] = { + [1] = { 50.7, 52.5, 5557, 604800 }, + [2] = { 50.9, 52.3, 5557, 604800 }, + [3] = { 51.5, 42.4, 5557, 604800 }, + [4] = { 51, 39.3, 5557, 604800 }, + [5] = { 42.4, 22.8, 5557, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [62017] = { + ["coords"] = { + [1] = { 50.4, 50.3, 5557, 604800 }, + [2] = { 51, 48.6, 5557, 604800 }, + [3] = { 50.7, 30.4, 5557, 604800 }, + [4] = { 45.6, 30, 5557, 604800 }, + [5] = { 38.2, 28, 5557, 604800 }, + [6] = { 44.5, 25.2, 5557, 604800 }, + [7] = { 49.6, 19.9, 5557, 604800 }, + [8] = { 33, 15.4, 5557, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [62018] = { + ["coords"] = { + [1] = { 50.4, 50.4, 5557, 604800 }, + [2] = { 50.3, 50.4, 5557, 604800 }, + [3] = { 50.2, 50.2, 5557, 604800 }, + [4] = { 50.3, 50.2, 5557, 604800 }, + [5] = { 53.2, 25.3, 5557, 604800 }, + [6] = { 53, 25.1, 5557, 604800 }, + [7] = { 53.2, 24.9, 5557, 604800 }, + [8] = { 36.7, 24.6, 5557, 604800 }, + [9] = { 36.7, 24.5, 5557, 604800 }, + [10] = { 36.8, 24.4, 5557, 604800 }, + [11] = { 42.6, 23, 5557, 604800 }, + [12] = { 42.6, 22.7, 5557, 604800 }, + [13] = { 52, 21.8, 5557, 604800 }, + [14] = { 51.9, 21.5, 5557, 604800 }, + [15] = { 45, 21.3, 5557, 604800 }, + [16] = { 44.8, 21.2, 5557, 604800 }, + [17] = { 45.1, 21.2, 5557, 604800 }, + [18] = { 45, 21.1, 5557, 604800 }, + [19] = { 54.3, 21, 5557, 604800 }, + [20] = { 54.2, 20.9, 5557, 604800 }, + [21] = { 44.9, 20.9, 5557, 604800 }, + [22] = { 54.4, 20.8, 5557, 604800 }, + [23] = { 54.3, 20.7, 5557, 604800 }, + [24] = { 37, 20.5, 5557, 604800 }, + [25] = { 36.9, 20.4, 5557, 604800 }, + [26] = { 37.2, 20.4, 5557, 604800 }, + [27] = { 36.8, 20.2, 5557, 604800 }, + [28] = { 37, 20.2, 5557, 604800 }, + [29] = { 47.2, 19.6, 5557, 604800 }, + [30] = { 46.9, 19.4, 5557, 604800 }, + [31] = { 47, 19.2, 5557, 604800 }, + [32] = { 38.3, 15.8, 5557, 604800 }, + [33] = { 38.2, 15.7, 5557, 604800 }, + [34] = { 38.3, 15.6, 5557, 604800 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [62019] = { + ["coords"] = { + [1] = { 50.8, 52.3, 5557, 604800 }, + [2] = { 50.6, 38.7, 5557, 604800 }, + [3] = { 39.8, 24, 5557, 604800 }, + [4] = { 38.8, 20.1, 5557, 604800 }, + [5] = { 38.6, 20.1, 5557, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [62020] = { + ["coords"] = { + [1] = { 51.6, 42.5, 5557, 604800 }, + [2] = { 50.7, 38.6, 5557, 604800 }, + [3] = { 52.1, 38.1, 5557, 604800 }, + [4] = { 51.7, 37.1, 5557, 604800 }, + [5] = { 43, 34.1, 5557, 604800 }, + [6] = { 43, 33.2, 5557, 604800 }, + [7] = { 44.6, 32.4, 5557, 604800 }, + [8] = { 42, 29.8, 5557, 604800 }, + [9] = { 42.3, 29.5, 5557, 604800 }, + [10] = { 36.3, 16.1, 5557, 604800 }, + }, + ["lvl"] = "61-62", + ["rnk"] = "1", + }, + [62021] = { + ["coords"] = { + [1] = { 51.5, 42.6, 5557, 604800 }, + [2] = { 50.5, 38.7, 5557, 604800 }, + [3] = { 50.5, 38.5, 5557, 604800 }, + [4] = { 51.6, 37.6, 5557, 604800 }, + [5] = { 52.3, 37.4, 5557, 604800 }, + [6] = { 51.8, 37, 5557, 604800 }, + [7] = { 43.1, 34.1, 5557, 604800 }, + [8] = { 43, 34, 5557, 604800 }, + [9] = { 44.6, 32.6, 5557, 604800 }, + [10] = { 44.6, 32.3, 5557, 604800 }, + [11] = { 42.4, 30.2, 5557, 604800 }, + [12] = { 41.7, 29.4, 5557, 604800 }, + [13] = { 40.5, 27.5, 5557, 604800 }, + [14] = { 40.7, 27.4, 5557, 604800 }, + [15] = { 40.9, 25, 5557, 604800 }, + [16] = { 39.2, 24.5, 5557, 604800 }, + [17] = { 41.3, 24.2, 5557, 604800 }, + [18] = { 39.8, 24.1, 5557, 604800 }, + [19] = { 41.1, 23.9, 5557, 604800 }, + [20] = { 41, 23.8, 5557, 604800 }, + [21] = { 39.9, 23.7, 5557, 604800 }, + [22] = { 38.9, 21.4, 5557, 604800 }, + [23] = { 35.9, 17.6, 5557, 604800 }, + [24] = { 35.7, 17.1, 5557, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [62022] = { + ["coords"] = { + [1] = { 50.6, 38.5, 5557, 604800 }, + [2] = { 51.8, 37.2, 5557, 604800 }, + [3] = { 43.1, 34.2, 5557, 604800 }, + [4] = { 42.9, 34, 5557, 604800 }, + [5] = { 43.6, 33.5, 5557, 604800 }, + [6] = { 43.7, 33.2, 5557, 604800 }, + [7] = { 43.5, 33.1, 5557, 604800 }, + [8] = { 44, 33, 5557, 604800 }, + [9] = { 43.7, 32.9, 5557, 604800 }, + [10] = { 43.5, 32.9, 5557, 604800 }, + [11] = { 44, 32.7, 5557, 604800 }, + [12] = { 44.6, 32.6, 5557, 604800 }, + [13] = { 43.5, 32.6, 5557, 604800 }, + [14] = { 43.7, 32.6, 5557, 604800 }, + [15] = { 44.6, 32.2, 5557, 604800 }, + [16] = { 41.8, 29.7, 5557, 604800 }, + [17] = { 42.2, 29.2, 5557, 604800 }, + [18] = { 41.1, 28.3, 5557, 604800 }, + [19] = { 41.1, 28.2, 5557, 604800 }, + [20] = { 41, 28.2, 5557, 604800 }, + [21] = { 41.1, 28.1, 5557, 604800 }, + [22] = { 40.8, 25.1, 5557, 604800 }, + [23] = { 41.1, 25.1, 5557, 604800 }, + [24] = { 40.8, 24.9, 5557, 604800 }, + [25] = { 40.6, 24.4, 5557, 604800 }, + [26] = { 40.7, 24.2, 5557, 604800 }, + [27] = { 41.2, 24.2, 5557, 604800 }, + [28] = { 41.3, 24.1, 5557, 604800 }, + [29] = { 41, 24, 5557, 604800 }, + [30] = { 40.8, 23.9, 5557, 604800 }, + [31] = { 40.9, 23.8, 5557, 604800 }, + [32] = { 40.8, 23.7, 5557, 604800 }, + [33] = { 30.5, 17, 5557, 604800 }, + [34] = { 30.6, 16.9, 5557, 604800 }, + [35] = { 30.5, 16.9, 5557, 604800 }, + [36] = { 31.2, 16.5, 5557, 604800 }, + [37] = { 31.9, 16.5, 5557, 604800 }, + [38] = { 30.3, 15.9, 5557, 604800 }, + [39] = { 30, 14.4, 5557, 604800 }, + [40] = { 30, 14.2, 5557, 604800 }, + [41] = { 32.6, 14.2, 5557, 604800 }, + [42] = { 32, 13.4, 5557, 604800 }, + [43] = { 30.4, 13.4, 5557, 604800 }, + [44] = { 30.5, 13.1, 5557, 604800 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [62023] = { + ["coords"] = { + [1] = { 40.2, 25.4, 5557, 604800 }, + [2] = { 40.1, 25.4, 5557, 604800 }, + [3] = { 38.1, 24, 5557, 604800 }, + [4] = { 38.1, 23.9, 5557, 604800 }, + [5] = { 39.8, 22.6, 5557, 604800 }, + [6] = { 39.2, 22.4, 5557, 604800 }, + [7] = { 39.4, 22.3, 5557, 604800 }, + [8] = { 38.5, 20.3, 5557, 604800 }, + }, + ["lvl"] = "58", + }, + [62024] = { + ["coords"] = { + [1] = { 43.9, 29.4, 5557, 604800 }, + [2] = { 41.3, 25.1, 5557, 604800 }, + [3] = { 37.7, 25.1, 5557, 604800 }, + [4] = { 38.3, 24.6, 5557, 604800 }, + [5] = { 41, 23.8, 5557, 604800 }, + [6] = { 37.1, 22.8, 5557, 604800 }, + }, + ["lvl"] = "52", + }, + [62025] = { + ["coords"] = { + [1] = { 39.5, 30.4, 5557, 604800 }, + [2] = { 43.3, 26.8, 5557, 604800 }, + [3] = { 35.6, 26, 5557, 604800 }, + [4] = { 43.9, 19.6, 5557, 604800 }, + [5] = { 39.1, 16.3, 5557, 604800 }, + }, + ["lvl"] = "58", + ["rnk"] = "1", + }, + [62026] = { + ["coords"] = { + [1] = { 38.5, 24.9, 5557, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [62027] = { + ["coords"] = { + [1] = { 41.5, 24.6, 5557, 604800 }, + }, + ["lvl"] = "64", + ["rnk"] = "1", + }, + [62028] = { + ["coords"] = { + [1] = { 38, 22.2, 5557, 604800 }, + }, + ["lvl"] = "60", + }, + [62029] = { + ["coords"] = { + [1] = { 40.5, 22.7, 5557, 604800 }, + }, + ["lvl"] = "58", + }, + [62030] = { + ["coords"] = { + [1] = { 71.2, 29.7, 3457, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "52", + }, + [62031] = { + ["coords"] = { + [1] = { 69, 48.2, 17, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "62", + ["rnk"] = "1", + }, + [62032] = { + ["coords"] = { + [1] = { 69, 48.4, 17, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "52", + }, + [62033] = { + ["coords"] = { + [1] = { 69.1, 48.1, 17, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "48", + }, + [62034] = { + ["coords"] = { + [1] = { 69, 48, 17, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [62035] = { + ["coords"] = { + [1] = { 66.7, 84.6, 11, 120 }, + [2] = { 64.6, 83.3, 11, 120 }, + [3] = { 65.9, 83, 11, 120 }, + [4] = { 64.3, 81.8, 11, 120 }, + [5] = { 33.7, 81.9, 5601, 604800 }, + [6] = { 29.9, 80.1, 5601, 604800 }, + [7] = { 31.1, 77.2, 5601, 604800 }, + [8] = { 31, 76.9, 5601, 604800 }, + [9] = { 28, 76.3, 5601, 604800 }, + [10] = { 29, 73.5, 5601, 604800 }, + [11] = { 30.3, 73.4, 5601, 604800 }, + [12] = { 25.1, 71.1, 5601, 604800 }, + [13] = { 39, 67.4, 5601, 604800 }, + [14] = { 27.1, 66.1, 5601, 604800 }, + [15] = { 37.8, 65.4, 5601, 604800 }, + [16] = { 36.1, 64.5, 5601, 604800 }, + [17] = { 28.7, 62.7, 5601, 604800 }, + [18] = { 37.6, 62.5, 5601, 604800 }, + [19] = { 31.1, 61.7, 5601, 604800 }, + [20] = { 20, 43.9, 5602, 120 }, + [21] = { 18.4, 42.9, 5602, 120 }, + [22] = { 19.3, 42.8, 5602, 120 }, + [23] = { 18.1, 41.8, 5602, 120 }, + }, + ["lvl"] = "25-26", + ["rnk"] = "1", + }, + [62036] = { + ["coords"] = { + [1] = { 32.5, 87, 5601, 604800 }, + [2] = { 35.7, 77, 5601, 604800 }, + [3] = { 28, 75.9, 5601, 604800 }, + [4] = { 34.2, 74.3, 5601, 604800 }, + [5] = { 40.2, 72.5, 5601, 604800 }, + [6] = { 26.9, 70.7, 5601, 604800 }, + [7] = { 34.9, 69.5, 5601, 604800 }, + [8] = { 55.7, 69, 5601, 604800 }, + [9] = { 35.3, 69, 5601, 604800 }, + [10] = { 41.5, 68.3, 5601, 604800 }, + [11] = { 49.5, 66, 5601, 604800 }, + [12] = { 52, 65.1, 5601, 604800 }, + [13] = { 33.4, 64.5, 5601, 604800 }, + [14] = { 50.9, 63.6, 5601, 604800 }, + [15] = { 48.3, 63.5, 5601, 604800 }, + [16] = { 56.6, 63.2, 5601, 604800 }, + [17] = { 37.4, 62.5, 5601, 604800 }, + [18] = { 38.7, 62, 5601, 604800 }, + [19] = { 54.6, 61.9, 5601, 604800 }, + [20] = { 30.9, 61.8, 5601, 604800 }, + [21] = { 39.3, 61.7, 5601, 604800 }, + [22] = { 24.3, 61.5, 5601, 604800 }, + [23] = { 39.5, 61.5, 5601, 604800 }, + [24] = { 51.3, 59.8, 5601, 604800 }, + [25] = { 50.2, 58.8, 5601, 604800 }, + [26] = { 57.2, 58.2, 5601, 604800 }, + [27] = { 25, 54.3, 5601, 604800 }, + [28] = { 36.7, 50.6, 5601, 604800 }, + [29] = { 47.1, 42.3, 5601, 604800 }, + [30] = { 57.3, 36.9, 5601, 604800 }, + [31] = { 66.3, 36.8, 5601, 604800 }, + [32] = { 66.4, 34.6, 5601, 604800 }, + [33] = { 47.6, 34.4, 5601, 604800 }, + [34] = { 50.7, 30.9, 5601, 604800 }, + [35] = { 52.3, 28.9, 5601, 604800 }, + [36] = { 58.5, 28.5, 5601, 604800 }, + [37] = { 52.5, 28.5, 5601, 604800 }, + [38] = { 54.5, 26.6, 5601, 604800 }, + }, + ["lvl"] = "26-28", + ["rnk"] = "1", + }, + [62037] = { + ["coords"] = { + [1] = { 41.3, 47.1, 5601, 604800 }, + }, + ["lvl"] = "32", + ["rnk"] = "1", + }, + [62038] = { + ["coords"] = { + [1] = { 56.7, 53.2, 5601, 604800 }, + }, + ["lvl"] = "32", + ["rnk"] = "1", + }, + [62039] = { + ["coords"] = { + [1] = { 36, 88, 5601, 604800 }, + [2] = { 41.2, 87.5, 5601, 604800 }, + [3] = { 50.2, 68.7, 5601, 604800 }, + [4] = { 53.4, 68.1, 5601, 604800 }, + [5] = { 41.4, 68.1, 5601, 604800 }, + [6] = { 53.3, 67.8, 5601, 604800 }, + [7] = { 50.9, 67.6, 5601, 604800 }, + [8] = { 42, 65.9, 5601, 604800 }, + [9] = { 41.8, 65.9, 5601, 604800 }, + [10] = { 57.8, 65.8, 5601, 604800 }, + [11] = { 43.1, 64.9, 5601, 604800 }, + [12] = { 50.2, 64.8, 5601, 604800 }, + [13] = { 43.2, 64.6, 5601, 604800 }, + [14] = { 43.5, 63.8, 5601, 604800 }, + [15] = { 42, 63, 5601, 604800 }, + [16] = { 56.5, 62.7, 5601, 604800 }, + [17] = { 52.5, 62.3, 5601, 604800 }, + [18] = { 53.9, 61.8, 5601, 604800 }, + [19] = { 43.1, 61.7, 5601, 604800 }, + [20] = { 51, 59.2, 5601, 604800 }, + [21] = { 54.4, 58.7, 5601, 604800 }, + [22] = { 57.4, 58, 5601, 604800 }, + [23] = { 57.2, 57.8, 5601, 604800 }, + [24] = { 56, 55.6, 5601, 604800 }, + [25] = { 55.9, 55.3, 5601, 604800 }, + [26] = { 45, 48.5, 5601, 604800 }, + [27] = { 51.8, 40.9, 5601, 604800 }, + [28] = { 52, 37.2, 5601, 604800 }, + [29] = { 62.8, 36, 5601, 604800 }, + [30] = { 45.8, 35.6, 5601, 604800 }, + [31] = { 43.4, 35.4, 5601, 604800 }, + [32] = { 43.7, 35.3, 5601, 604800 }, + [33] = { 66.4, 34.3, 5601, 604800 }, + [34] = { 47.4, 34.2, 5601, 604800 }, + [35] = { 54.7, 30.9, 5601, 604800 }, + [36] = { 49.5, 28.6, 5601, 604800 }, + [37] = { 52.2, 28.5, 5601, 604800 }, + }, + ["lvl"] = "29-30", + ["rnk"] = "1", + }, + [62040] = { + ["coords"] = { + [1] = { 35.6, 87.9, 5601, 604800 }, + [2] = { 41.2, 72.4, 5601, 604800 }, + [3] = { 39, 69.6, 5601, 604800 }, + [4] = { 39.2, 61.4, 5601, 604800 }, + [5] = { 45.2, 48.3, 5601, 604800 }, + [6] = { 54.9, 44.5, 5601, 604800 }, + [7] = { 54.7, 44.3, 5601, 604800 }, + [8] = { 49, 44.1, 5601, 604800 }, + [9] = { 58.7, 43.4, 5601, 604800 }, + [10] = { 47.2, 42, 5601, 604800 }, + [11] = { 51.7, 41.2, 5601, 604800 }, + [12] = { 45.8, 39.9, 5601, 604800 }, + [13] = { 59.4, 39.9, 5601, 604800 }, + [14] = { 57.4, 37.3, 5601, 604800 }, + [15] = { 51.8, 37.2, 5601, 604800 }, + [16] = { 66.2, 37.1, 5601, 604800 }, + [17] = { 51.9, 36.9, 5601, 604800 }, + [18] = { 43.7, 35.7, 5601, 604800 }, + [19] = { 64.4, 35.3, 5601, 604800 }, + [20] = { 56, 34.1, 5601, 604800 }, + [21] = { 46.6, 31, 5601, 604800 }, + [22] = { 54.8, 30.6, 5601, 604800 }, + [23] = { 49.4, 29, 5601, 604800 }, + [24] = { 58.6, 28.8, 5601, 604800 }, + [25] = { 50.7, 26.9, 5601, 604800 }, + [26] = { 50.5, 26.9, 5601, 604800 }, + [27] = { 54.8, 26.7, 5601, 604800 }, + [28] = { 50.6, 26.6, 5601, 604800 }, + }, + ["lvl"] = "27-28", + ["rnk"] = "1", + }, + [62041] = { + ["coords"] = { + [1] = { 35.5, 87.8, 5601, 604800 }, + [2] = { 41.2, 72.5, 5601, 604800 }, + [3] = { 39.1, 69.7, 5601, 604800 }, + [4] = { 39.1, 61.4, 5601, 604800 }, + [5] = { 45.3, 48.2, 5601, 604800 }, + [6] = { 54.8, 44.7, 5601, 604800 }, + [7] = { 54.6, 44.2, 5601, 604800 }, + [8] = { 48.4, 44.1, 5601, 604800 }, + [9] = { 48.9, 44.1, 5601, 604800 }, + [10] = { 58.5, 43.6, 5601, 604800 }, + [11] = { 55.9, 43.5, 5601, 604800 }, + [12] = { 58.7, 43, 5601, 604800 }, + [13] = { 56, 42.4, 5601, 604800 }, + [14] = { 47.3, 41.9, 5601, 604800 }, + [15] = { 46.5, 40.7, 5601, 604800 }, + [16] = { 55.2, 40.7, 5601, 604800 }, + [17] = { 46.7, 40.2, 5601, 604800 }, + [18] = { 50.5, 40.1, 5601, 604800 }, + [19] = { 58.8, 40, 5601, 604800 }, + [20] = { 59.8, 39.9, 5601, 604800 }, + [21] = { 53.2, 39.9, 5601, 604800 }, + [22] = { 57.3, 37.4, 5601, 604800 }, + [23] = { 51.7, 37.1, 5601, 604800 }, + [24] = { 66.1, 37.1, 5601, 604800 }, + [25] = { 52, 36.8, 5601, 604800 }, + [26] = { 48.4, 36.7, 5601, 604800 }, + [27] = { 43.7, 35.8, 5601, 604800 }, + [28] = { 64.6, 35.3, 5601, 604800 }, + [29] = { 58.6, 34.9, 5601, 604800 }, + [30] = { 49.2, 34.2, 5601, 604800 }, + [31] = { 52.7, 34.2, 5601, 604800 }, + [32] = { 55.8, 34.1, 5601, 604800 }, + [33] = { 55.9, 34, 5601, 604800 }, + [34] = { 46.1, 31.2, 5601, 604800 }, + [35] = { 52.8, 31, 5601, 604800 }, + [36] = { 59.3, 31, 5601, 604800 }, + [37] = { 54.9, 30.7, 5601, 604800 }, + [38] = { 50.9, 30.7, 5601, 604800 }, + [39] = { 53.7, 30, 5601, 604800 }, + [40] = { 47.1, 29.7, 5601, 604800 }, + [41] = { 51.7, 29.2, 5601, 604800 }, + [42] = { 49.4, 29.1, 5601, 604800 }, + [43] = { 58.5, 29, 5601, 604800 }, + [44] = { 56, 28.8, 5601, 604800 }, + [45] = { 47.3, 28.5, 5601, 604800 }, + [46] = { 57.1, 27.1, 5601, 604800 }, + [47] = { 50.7, 27.1, 5601, 604800 }, + [48] = { 50.4, 26.9, 5601, 604800 }, + [49] = { 50.7, 26.6, 5601, 604800 }, + [50] = { 54.9, 26.5, 5601, 604800 }, + [51] = { 51.1, 25, 5601, 604800 }, + [52] = { 54.3, 24.9, 5601, 604800 }, + }, + ["lvl"] = "27-28", + ["rnk"] = "1", + }, + [62042] = { + ["coords"] = { + [1] = { 65.8, 66.4, 11, 300 }, + [2] = { 65.9, 65.2, 11, 120 }, + [3] = { 74, 64.4, 11, 120 }, + [4] = { 64.4, 64.3, 11, 300 }, + [5] = { 68.6, 64, 11, 300 }, + [6] = { 65.2, 64, 11, 120 }, + [7] = { 70.9, 63.6, 11, 300 }, + [8] = { 67.3, 63.5, 11, 120 }, + [9] = { 67.4, 63.4, 11, 300 }, + [10] = { 65.6, 62.2, 11, 300 }, + [11] = { 65.5, 61.4, 11, 120 }, + [12] = { 76.8, 60.3, 11, 300 }, + [13] = { 65.5, 59.9, 11, 120 }, + [14] = { 65.1, 59.7, 11, 300 }, + [15] = { 19.2, 30, 5602, 300 }, + [16] = { 19.4, 29.1, 5602, 120 }, + [17] = { 25.6, 28.4, 5602, 120 }, + [18] = { 18.2, 28.4, 5602, 300 }, + [19] = { 21.4, 28.1, 5602, 300 }, + [20] = { 18.9, 28.1, 5602, 120 }, + [21] = { 23.2, 27.8, 5602, 300 }, + [22] = { 20.4, 27.7, 5602, 120 }, + [23] = { 20.5, 27.6, 5602, 300 }, + [24] = { 19.1, 26.7, 5602, 300 }, + [25] = { 19, 26.1, 5602, 120 }, + [26] = { 27.7, 25.3, 5602, 300 }, + [27] = { 19, 25, 5602, 120 }, + [28] = { 18.7, 24.8, 5602, 300 }, + }, + ["lvl"] = "22-23", + ["rnk"] = "1", + }, + [62043] = { + ["coords"] = {}, + ["lvl"] = "22", + }, + [62044] = { + ["coords"] = { + [1] = { 74.3, 65.5, 11, 120 }, + [2] = { 74.8, 64.9, 11, 120 }, + [3] = { 74.8, 64.8, 11, 120 }, + [4] = { 69, 64.4, 11, 120 }, + [5] = { 73.9, 64.2, 11, 120 }, + [6] = { 74.6, 64.2, 11, 120 }, + [7] = { 72.4, 63.7, 11, 120 }, + [8] = { 71.5, 63.4, 11, 120 }, + [9] = { 72.4, 63.2, 11, 120 }, + [10] = { 70.8, 63.1, 11, 120 }, + [11] = { 73.8, 62.6, 11, 120 }, + [12] = { 70.9, 62.4, 11, 120 }, + [13] = { 70.7, 62.4, 11, 120 }, + [14] = { 73.9, 61.3, 11, 120 }, + [15] = { 76.2, 60.4, 11, 120 }, + [16] = { 77.1, 60, 11, 120 }, + [17] = { 76.4, 59.8, 11, 120 }, + [18] = { 75.8, 59.7, 11, 120 }, + [19] = { 75.4, 59.2, 11, 120 }, + [20] = { 75.6, 58.6, 11, 120 }, + [21] = { 75.3, 58.4, 11, 120 }, + [22] = { 25.8, 29.3, 5602, 120 }, + [23] = { 26.2, 28.8, 5602, 120 }, + [24] = { 21.7, 28.5, 5602, 120 }, + [25] = { 25.5, 28.3, 5602, 120 }, + [26] = { 26.1, 28.2, 5602, 120 }, + [27] = { 24.3, 27.9, 5602, 120 }, + [28] = { 23.7, 27.7, 5602, 120 }, + [29] = { 24.4, 27.5, 5602, 120 }, + [30] = { 23.1, 27.4, 5602, 120 }, + [31] = { 25.4, 27, 5602, 120 }, + [32] = { 23.2, 26.9, 5602, 120 }, + [33] = { 23.1, 26.9, 5602, 120 }, + [34] = { 25.5, 26, 5602, 120 }, + [35] = { 27.2, 25.4, 5602, 120 }, + [36] = { 27.9, 25, 5602, 120 }, + [37] = { 27.4, 24.9, 5602, 120 }, + [38] = { 27, 24.8, 5602, 120 }, + [39] = { 26.7, 24.4, 5602, 120 }, + [40] = { 26.8, 24, 5602, 120 }, + [41] = { 26.6, 23.8, 5602, 120 }, + }, + ["lvl"] = "22-24", + }, + [62045] = { + ["coords"] = { + [1] = { 52.4, 75.5, 5601, 604800 }, + [2] = { 52.9, 75.4, 5601, 604800 }, + [3] = { 50, 69.1, 5601, 604800 }, + [4] = { 55.5, 68.8, 5601, 604800 }, + [5] = { 49.2, 65.9, 5601, 604800 }, + [6] = { 51.2, 65.7, 5601, 604800 }, + [7] = { 50.5, 65, 5601, 604800 }, + [8] = { 48.2, 63.9, 5601, 604800 }, + [9] = { 48.1, 63, 5601, 604800 }, + [10] = { 57.3, 63, 5601, 604800 }, + [11] = { 53.9, 62.6, 5601, 604800 }, + [12] = { 54.7, 62.3, 5601, 604800 }, + [13] = { 53.3, 62, 5601, 604800 }, + [14] = { 54.8, 61.8, 5601, 604800 }, + [15] = { 49.7, 61.7, 5601, 604800 }, + [16] = { 52.5, 61.5, 5601, 604800 }, + [17] = { 49.8, 61.4, 5601, 604800 }, + [18] = { 51.4, 61.2, 5601, 604800 }, + [19] = { 54.5, 58.3, 5601, 604800 }, + [20] = { 54.9, 44.2, 5601, 604800 }, + [21] = { 65.4, 39.1, 5601, 604800 }, + [22] = { 64.8, 39, 5601, 604800 }, + [23] = { 66.4, 37, 5601, 604800 }, + [24] = { 62.8, 36.3, 5601, 604800 }, + [25] = { 64.3, 35.6, 5601, 604800 }, + [26] = { 66.1, 34.5, 5601, 604800 }, + [27] = { 54.6, 30.6, 5601, 604800 }, + }, + ["lvl"] = "29", + ["rnk"] = "1", + }, + [62046] = { + ["coords"] = { + [1] = { 40.8, 87.5, 5601, 604800 }, + [2] = { 30.1, 73.1, 5601, 604800 }, + [3] = { 40, 72.5, 5601, 604800 }, + [4] = { 35.3, 71.6, 5601, 604800 }, + [5] = { 41.4, 70.7, 5601, 604800 }, + [6] = { 40.3, 69.8, 5601, 604800 }, + [7] = { 37.8, 65.1, 5601, 604800 }, + [8] = { 28.9, 63, 5601, 604800 }, + [9] = { 37.2, 62.6, 5601, 604800 }, + [10] = { 30.7, 61.7, 5601, 604800 }, + [11] = { 24.9, 60.3, 5601, 604800 }, + [12] = { 37, 57.4, 5601, 604800 }, + [13] = { 14.6, 55.1, 5601, 604800 }, + [14] = { 35.2, 53.1, 5601, 604800 }, + }, + ["lvl"] = "26", + ["rnk"] = "1", + }, + [62047] = { + ["coords"] = { + [1] = { 45.2, 48.9, 5601, 604800 }, + [2] = { 51.9, 41.3, 5601, 604800 }, + [3] = { 43.6, 39, 5601, 604800 }, + [4] = { 43.9, 38.5, 5601, 604800 }, + [5] = { 43.3, 38.4, 5601, 604800 }, + [6] = { 46.1, 36.2, 5601, 604800 }, + [7] = { 61.2, 36.1, 5601, 604800 }, + [8] = { 68.5, 36, 5601, 604800 }, + [9] = { 67.2, 35.5, 5601, 604800 }, + [10] = { 46, 35.1, 5601, 604800 }, + [11] = { 61.3, 35, 5601, 604800 }, + [12] = { 68.5, 34.9, 5601, 604800 }, + [13] = { 49.4, 34.2, 5601, 604800 }, + }, + ["lvl"] = "32", + ["rnk"] = "1", + }, + [62048] = { + ["coords"] = { + [1] = { 28.3, 76.1, 5601, 604800 }, + [2] = { 34.1, 74.7, 5601, 604800 }, + [3] = { 34.4, 74.6, 5601, 604800 }, + [4] = { 35.1, 69.6, 5601, 604800 }, + [5] = { 41.6, 69.1, 5601, 604800 }, + [6] = { 49.5, 65.7, 5601, 604800 }, + [7] = { 37.9, 65.5, 5601, 604800 }, + [8] = { 32.6, 61.3, 5601, 604800 }, + [9] = { 36.7, 54.1, 5601, 604800 }, + }, + ["lvl"] = "25", + ["rnk"] = "1", + }, + [62049] = { + ["coords"] = { + [1] = { 65.5, 60, 11, 300 }, + [2] = { 19.1, 25, 5602, 300 }, + }, + ["lvl"] = "25", + ["rnk"] = "1", + }, + [62050] = { + ["coords"] = { + [1] = { 74.7, 65.2, 11, 120 }, + [2] = { 66.1, 64.8, 11, 120 }, + [3] = { 65.5, 64.5, 11, 120 }, + [4] = { 74.2, 63.7, 11, 120 }, + [5] = { 67.3, 63.2, 11, 120 }, + [6] = { 64.8, 63.1, 11, 300 }, + [7] = { 73.7, 62.3, 11, 300 }, + [8] = { 64.9, 62.3, 11, 120 }, + [9] = { 66.1, 62, 11, 120 }, + [10] = { 65.4, 61.5, 11, 120 }, + [11] = { 65.4, 59.9, 11, 300 }, + [12] = { 65.8, 59.9, 11, 300 }, + [13] = { 65.6, 59.8, 11, 120 }, + [14] = { 66.2, 59.4, 11, 300 }, + [15] = { 75.3, 58.6, 11, 120 }, + [16] = { 26.1, 29.1, 5602, 120 }, + [17] = { 19.5, 28.7, 5602, 120 }, + [18] = { 19, 28.5, 5602, 120 }, + [19] = { 25.7, 27.9, 5602, 120 }, + [20] = { 20.4, 27.5, 5602, 120 }, + [21] = { 18.5, 27.4, 5602, 300 }, + [22] = { 25.3, 26.8, 5602, 300 }, + [23] = { 18.6, 26.8, 5602, 120 }, + [24] = { 19.5, 26.6, 5602, 120 }, + [25] = { 19, 26.2, 5602, 120 }, + [26] = { 19, 24.9, 5602, 300 }, + [27] = { 19.2, 24.9, 5602, 300 }, + [28] = { 19.1, 24.9, 5602, 120 }, + [29] = { 19.6, 24.6, 5602, 300 }, + [30] = { 26.6, 24, 5602, 120 }, + }, + ["lvl"] = "22-23", + ["rnk"] = "1", + }, + [62051] = { + ["coords"] = { + [1] = { 36.1, 87.6, 5601, 604800 }, + [2] = { 33.9, 87.5, 5601, 604800 }, + [3] = { 33.3, 87.4, 5601, 604800 }, + [4] = { 52.7, 75.3, 5601, 604800 }, + [5] = { 40.9, 73.4, 5601, 604800 }, + [6] = { 40.7, 70.7, 5601, 604800 }, + [7] = { 49.9, 68.7, 5601, 604800 }, + [8] = { 53.5, 67.8, 5601, 604800 }, + [9] = { 50.4, 66.8, 5601, 604800 }, + [10] = { 51.6, 66.3, 5601, 604800 }, + [11] = { 58.9, 65.8, 5601, 604800 }, + [12] = { 49.3, 65.6, 5601, 604800 }, + [13] = { 54.5, 65.5, 5601, 604800 }, + [14] = { 52.3, 64.3, 5601, 604800 }, + [15] = { 48.2, 63.5, 5601, 604800 }, + [16] = { 57, 62.5, 5601, 604800 }, + [17] = { 52.5, 61.8, 5601, 604800 }, + [18] = { 51.3, 59.1, 5601, 604800 }, + [19] = { 49.9, 58.9, 5601, 604800 }, + [20] = { 54.2, 58.4, 5601, 604800 }, + [21] = { 59.7, 56.6, 5601, 604800 }, + [22] = { 45.4, 48.5, 5601, 604800 }, + [23] = { 43.5, 47.3, 5601, 604800 }, + [24] = { 43.7, 47.1, 5601, 604800 }, + [25] = { 46.2, 44.9, 5601, 604800 }, + [26] = { 46.1, 44.6, 5601, 604800 }, + [27] = { 57.5, 37, 5601, 604800 }, + [28] = { 63, 36.2, 5601, 604800 }, + [29] = { 43.5, 35.7, 5601, 604800 }, + [30] = { 64.2, 35.1, 5601, 604800 }, + [31] = { 47.6, 34.1, 5601, 604800 }, + [32] = { 50.7, 30.6, 5601, 604800 }, + [33] = { 58.4, 28.8, 5601, 604800 }, + [34] = { 49.3, 28.6, 5601, 604800 }, + [35] = { 54.6, 26.9, 5601, 604800 }, + }, + ["lvl"] = "28-29", + ["rnk"] = "1", + }, + [62052] = { + ["coords"] = { + [1] = { 12.4, 60.1, 5601, 604800 }, + [2] = { 14.9, 59.8, 5601, 604800 }, + [3] = { 13.2, 58.5, 5601, 604800 }, + [4] = { 13, 58.3, 5601, 604800 }, + [5] = { 15.8, 57.4, 5601, 604800 }, + [6] = { 13.7, 56.5, 5601, 604800 }, + [7] = { 11.1, 56, 5601, 604800 }, + [8] = { 12.2, 55.8, 5601, 604800 }, + [9] = { 14.8, 55.7, 5601, 604800 }, + [10] = { 13.8, 55.7, 5601, 604800 }, + [11] = { 14.4, 55.4, 5601, 604800 }, + [12] = { 12.3, 55.1, 5601, 604800 }, + [13] = { 16.2, 54.9, 5601, 604800 }, + [14] = { 14.9, 54.6, 5601, 604800 }, + [15] = { 13.4, 53.7, 5601, 604800 }, + [16] = { 11.8, 53.4, 5601, 604800 }, + [17] = { 11.4, 52.6, 5601, 604800 }, + [18] = { 12.7, 41.8, 5601, 604800 }, + [19] = { 13.9, 38.1, 5601, 604800 }, + [20] = { 13.8, 35.3, 5601, 604800 }, + [21] = { 14.6, 34.7, 5601, 604800 }, + }, + ["lvl"] = "24-25", + ["rnk"] = "1", + }, + [62053] = { + ["coords"] = { + [1] = { 12.5, 59.8, 5601, 604800 }, + [2] = { 14.9, 59.8, 5601, 604800 }, + [3] = { 11.1, 56.7, 5601, 604800 }, + [4] = { 13.4, 56.2, 5601, 604800 }, + [5] = { 13.7, 56.1, 5601, 604800 }, + [6] = { 12.2, 45.1, 5601, 604800 }, + [7] = { 10.5, 40.3, 5601, 604800 }, + [8] = { 11.5, 36.9, 5601, 604800 }, + [9] = { 13.4, 34.3, 5601, 604800 }, + }, + ["lvl"] = "24-25", + ["rnk"] = "1", + }, + [62054] = { + ["coords"] = { + [1] = { 12.2, 59.8, 5601, 604800 }, + [2] = { 14.9, 59.8, 5601, 604800 }, + [3] = { 13.2, 52.8, 5601, 604800 }, + [4] = { 13.1, 52.4, 5601, 604800 }, + [5] = { 11.6, 43.6, 5601, 604800 }, + [6] = { 10.8, 40.3, 5601, 604800 }, + [7] = { 12.4, 38.9, 5601, 604800 }, + [8] = { 12.8, 36.7, 5601, 604800 }, + }, + ["lvl"] = "25-26", + ["rnk"] = "1", + }, + [62055] = { + ["coords"] = { + [1] = { 12.5, 45.3, 5601, 604800 }, + [2] = { 11.8, 45.2, 5601, 604800 }, + [3] = { 12.2, 44.5, 5601, 604800 }, + [4] = { 10.5, 39.9, 5601, 604800 }, + }, + ["lvl"] = "26", + ["rnk"] = "1", + }, + [62056] = { + ["coords"] = { + [1] = { 11.9, 34.2, 5601, 604800 }, + }, + ["lvl"] = "26", + ["rnk"] = "1", + }, + [62057] = { + ["coords"] = { + [1] = { 12.1, 34.1, 5601, 604800 }, + }, + ["lvl"] = "28", + ["rnk"] = "1", + }, + [62058] = { + ["coords"] = { + [1] = { 70.3, 27.9, 3457, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "48", + ["rnk"] = "1", + }, + [62059] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [62060] = { + ["coords"] = {}, + ["lvl"] = "61", + }, + [62061] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [62062] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [62063] = { + ["coords"] = { + [1] = { 51.3, 27.3, 440, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "48", + }, + [62064] = { + ["coords"] = { + [1] = { 11.7, 75.5, 10, 120 }, + [2] = { 71.4, 71.8, 40, 120 }, + }, + ["lvl"] = "21", + }, + [62065] = { + ["coords"] = { + [1] = { 50.5, 26.1, 46, 60 }, + [2] = { 63.8, 96.8, 51, 60 }, + }, + ["lvl"] = "57", + ["rnk"] = "1", + }, + [62066] = { + ["coords"] = { + [1] = { 33.6, 44.3, 5601, 604800 }, + }, + ["lvl"] = "27", + ["rnk"] = "1", + }, + [62067] = { + ["coords"] = { + [1] = { 39.2, 64.6, 5601, 604800 }, + }, + ["lvl"] = "29", + ["rnk"] = "1", + }, + [62068] = { + ["coords"] = { + [1] = { 45.1, 90.6, 5601, 604800 }, + }, + ["lvl"] = "30", + ["rnk"] = "1", + }, + [62069] = { + ["coords"] = { + [1] = { 34.5, 92.8, 5601, 604800 }, + }, + ["lvl"] = "31", + ["rnk"] = "1", + }, + [62070] = { + ["coords"] = { + [1] = { 54.4, 65.9, 5601, 604800 }, + }, + ["lvl"] = "31", + ["rnk"] = "1", + }, + [62071] = { + ["coords"] = { + [1] = { 40.9, 64.7, 5601, 604800 }, + }, + ["lvl"] = "31", + ["rnk"] = "1", + }, + [62072] = { + ["coords"] = { + [1] = { 57, 35.5, 5601, 604800 }, + }, + ["lvl"] = "32", + ["rnk"] = "1", + }, + [62073] = { + ["coords"] = { + [1] = { 29, 60, 5601, 604800 }, + [2] = { 27.5, 58.8, 5601, 604800 }, + [3] = { 31.9, 57.4, 5601, 604800 }, + [4] = { 27.9, 55.1, 5601, 604800 }, + [5] = { 32, 53.6, 5601, 604800 }, + [6] = { 31.7, 51.6, 5601, 604800 }, + [7] = { 31.9, 50.2, 5601, 604800 }, + [8] = { 35.3, 47.3, 5601, 604800 }, + }, + ["lvl"] = "26-27", + ["rnk"] = "1", + }, + [62074] = { + ["coords"] = { + [1] = { 39.3, 64.8, 5601, 604800 }, + [2] = { 39.3, 64.5, 5601, 604800 }, + [3] = { 28.7, 57.7, 5601, 604800 }, + [4] = { 34, 50.9, 5601, 604800 }, + [5] = { 30.3, 48.6, 5601, 604800 }, + [6] = { 33.2, 47, 5601, 604800 }, + }, + ["lvl"] = "26-27", + ["rnk"] = "1", + }, + [62075] = { + ["coords"] = { + [1] = { 30.5, 53.7, 5601, 604800 }, + [2] = { 30.3, 50.6, 5601, 604800 }, + [3] = { 36.3, 48.3, 5601, 604800 }, + }, + ["lvl"] = "27-28", + ["rnk"] = "1", + }, + [62076] = { + ["coords"] = { + [1] = { 44.3, 90, 5601, 604800 }, + [2] = { 45.7, 88.5, 5601, 604800 }, + [3] = { 52.5, 81.7, 5601, 604800 }, + }, + ["lvl"] = "29-30", + ["rnk"] = "1", + }, + [62077] = { + ["coords"] = { + [1] = { 45.2, 92.4, 5601, 604800 }, + [2] = { 46.4, 91.5, 5601, 604800 }, + [3] = { 46.1, 88.6, 5601, 604800 }, + [4] = { 52.3, 82.3, 5601, 604800 }, + [5] = { 52, 81.9, 5601, 604800 }, + [6] = { 52, 80, 5601, 604800 }, + }, + ["lvl"] = "29-30", + ["rnk"] = "1", + }, + [62078] = { + ["coords"] = { + [1] = { 35.7, 93.1, 5601, 604800 }, + [2] = { 43.5, 91.9, 5601, 604800 }, + [3] = { 46, 89.2, 5601, 604800 }, + [4] = { 48.8, 86.4, 5601, 604800 }, + [5] = { 50.4, 83.5, 5601, 604800 }, + [6] = { 53.7, 79.1, 5601, 604800 }, + [7] = { 59.4, 69.4, 5601, 604800 }, + [8] = { 58.4, 68.9, 5601, 604800 }, + [9] = { 59.9, 59.5, 5601, 604800 }, + [10] = { 60, 56.7, 5601, 604800 }, + [11] = { 59.3, 56.7, 5601, 604800 }, + [12] = { 59.3, 49.7, 5601, 604800 }, + [13] = { 60.3, 46.6, 5601, 604800 }, + [14] = { 60.4, 46.4, 5601, 604800 }, + [15] = { 63.8, 43.2, 5601, 604800 }, + [16] = { 65.1, 38.9, 5601, 604800 }, + }, + ["lvl"] = "27-28", + ["rnk"] = "1", + }, + [62079] = { + ["coords"] = { + [1] = { 71.3, 27.4, 3457, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "52", + }, + [62080] = { + ["coords"] = { + [1] = { 66.5, 9, 16, 120 }, + }, + ["lvl"] = "55", + }, + [62081] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "30", + }, + [62082] = { + ["coords"] = { + [1] = { 44.9, 46.6, 2040, 120 }, + [2] = { 59.2, 24.3, 5225, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [62083] = { + ["coords"] = { + [1] = { 43.2, 82.4, 2040, 120 }, + [2] = { 58.3, 41.2, 5225, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [62084] = { + ["coords"] = { + [1] = { 38.7, 64.7, 2040, 120 }, + [2] = { 56.2, 32.8, 5225, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [62085] = { + ["coords"] = { + [1] = { 61.8, 47, 2040, 120 }, + [2] = { 67.2, 24.5, 5225, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [62086] = { + ["coords"] = { + [1] = { 51.8, 53.7, 2040, 120 }, + [2] = { 62.4, 27.6, 5225, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [62087] = { + ["coords"] = { + [1] = { 52.7, 48.9, 2040, 120 }, + [2] = { 62.9, 25.3, 5225, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [62088] = { + ["coords"] = { + [1] = { 40.9, 68.1, 2040, 120 }, + [2] = { 57.3, 34.4, 5225, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [62089] = { + ["coords"] = { + [1] = { 54.5, 50.3, 2040, 120 }, + [2] = { 63.7, 26, 5225, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [62090] = { + ["coords"] = { + [1] = { 45.9, 46.9, 2040, 120 }, + [2] = { 59.6, 24.4, 5225, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [62091] = { + ["coords"] = { + [1] = { 50.6, 58.1, 2040, 120 }, + [2] = { 61.9, 29.7, 5225, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [62092] = { + ["coords"] = { + [1] = { 48.4, 59.4, 2040, 120 }, + [2] = { 60.8, 30.3, 5225, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [62093] = { + ["coords"] = { + [1] = { 40.5, 50.9, 2040, 120 }, + [2] = { 57.1, 26.3, 5225, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [62094] = { + ["coords"] = { + [1] = { 47, 66.9, 5225, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [62095] = { + ["coords"] = { + [1] = { 29.9, 68.7, 2040, 120 }, + [2] = { 52, 34.7, 5225, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [62096] = { + ["coords"] = { + [1] = { 51.6, 64.6, 5225, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [62097] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "10", + }, + [62098] = { + ["coords"] = { + [1] = { 42.4, 77.3, 5121, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "51", + }, + [62099] = { + ["coords"] = { + [1] = { 37, 51.7, 406, 120 }, + }, + ["lvl"] = "35", + }, + [62100] = { + ["coords"] = { + [1] = { 26.9, 35.6, 1, 120 }, + [2] = { 96.8, 63.6, 721, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [62101] = { + ["coords"] = { + [1] = { 4.1, 60.7, 85, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [62102] = { + ["coords"] = { + [1] = { 4.6, 60, 85, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [62103] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "62", + ["rnk"] = "1", + }, + [62104] = { + ["coords"] = { + [1] = { 6.7, 90.2, 4012, 120 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [62105] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "64", + ["rnk"] = "3", + }, + [62106] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [62107] = { + ["coords"] = { + [1] = { 51.6, 55.7, 25, 120 }, + [2] = { 29.4, 28.6, 46, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [62108] = { + ["coords"] = { + [1] = { 51.8, 58.2, 25, 120 }, + [2] = { 29.5, 29.2, 46, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [62109] = { + ["coords"] = { + [1] = { 47.7, 57.5, 25, 120 }, + [2] = { 28.5, 29, 46, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [62110] = { + ["coords"] = {}, + ["lvl"] = "26", + }, + [62111] = { + ["coords"] = { + [1] = { 82.8, 79, 331, 120 }, + }, + ["lvl"] = "57", + ["rnk"] = "1", + }, + [62112] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "3", + }, + [62113] = { + ["coords"] = { + [1] = { 30.7, 44.6, 5581, 120 }, + [2] = { 30.9, 44.5, 5581, 120 }, + [3] = { 31.2, 44.4, 5581, 120 }, + [4] = { 31.1, 44.3, 5581, 120 }, + [5] = { 31.1, 44.2, 5581, 120 }, + [6] = { 30.9, 44.2, 5581, 120 }, + [7] = { 30.5, 44.2, 5581, 120 }, + [8] = { 30.4, 43.8, 5581, 120 }, + [9] = { 31.2, 43.8, 5581, 120 }, + [10] = { 30.3, 43.6, 5581, 120 }, + [11] = { 30.9, 43.6, 5581, 120 }, + [12] = { 30.6, 43.5, 5581, 120 }, + [13] = { 31, 43.2, 5581, 120 }, + [14] = { 30.8, 43.2, 5581, 120 }, + [15] = { 30.4, 43.1, 5581, 120 }, + [16] = { 29.8, 43, 5581, 120 }, + [17] = { 30.4, 42.4, 5581, 120 }, + [18] = { 29.8, 42.3, 5581, 120 }, + }, + ["lvl"] = "28-30", + }, + [62114] = { + ["coords"] = { + [1] = { 80.2, 94, 5581, 300 }, + [2] = { 76.3, 85.1, 5581, 300 }, + [3] = { 72.5, 84.8, 5581, 300 }, + [4] = { 74.5, 84.1, 5581, 300 }, + [5] = { 72.4, 80.6, 5581, 300 }, + [6] = { 52.6, 55.6, 5581, 300 }, + [7] = { 37.6, 49.7, 5581, 300 }, + [8] = { 39.3, 47.7, 5581, 300 }, + [9] = { 36.8, 47.2, 5581, 300 }, + [10] = { 37.9, 46.8, 5581, 300 }, + [11] = { 40.7, 45.9, 5581, 300 }, + [12] = { 41.9, 44.7, 5581, 300 }, + [13] = { 37.4, 44.7, 5581, 300 }, + [14] = { 36.5, 44.5, 5581, 300 }, + [15] = { 37.6, 43.2, 5581, 300 }, + [16] = { 39.3, 42.8, 5581, 300 }, + [17] = { 37.3, 42.7, 5581, 300 }, + [18] = { 50, 42.1, 5581, 300 }, + [19] = { 39.6, 41.6, 5581, 300 }, + [20] = { 41.1, 41.2, 5581, 300 }, + [21] = { 51.9, 40.3, 5581, 300 }, + [22] = { 45, 38.3, 5581, 300 }, + [23] = { 37.7, 38.1, 5581, 300 }, + [24] = { 36.2, 37.7, 5581, 300 }, + [25] = { 40.1, 37.3, 5581, 300 }, + [26] = { 37.1, 36.7, 5581, 300 }, + [27] = { 37.5, 35.5, 5581, 300 }, + }, + ["lvl"] = "29-30", + }, + [62115] = { + ["coords"] = { + [1] = { 80.9, 94.1, 5581, 300 }, + [2] = { 75.3, 85.7, 5581, 300 }, + [3] = { 73.1, 83.9, 5581, 300 }, + [4] = { 75.3, 82.2, 5581, 300 }, + [5] = { 37, 48.9, 5581, 300 }, + [6] = { 38.5, 47.7, 5581, 300 }, + [7] = { 36.5, 45.4, 5581, 300 }, + [8] = { 39.8, 45.3, 5581, 300 }, + [9] = { 39.3, 44.1, 5581, 300 }, + [10] = { 38.4, 44, 5581, 300 }, + [11] = { 37.7, 43.8, 5581, 300 }, + [12] = { 50.5, 43.2, 5581, 300 }, + [13] = { 42, 43.1, 5581, 300 }, + [14] = { 39.9, 42.6, 5581, 300 }, + [15] = { 38.1, 42.4, 5581, 300 }, + [16] = { 50.6, 42.2, 5581, 300 }, + [17] = { 52.1, 41.6, 5581, 300 }, + [18] = { 38.8, 41.2, 5581, 300 }, + [19] = { 52, 40.5, 5581, 300 }, + [20] = { 39, 40.4, 5581, 300 }, + [21] = { 45.2, 38.2, 5581, 300 }, + [22] = { 39.6, 37.5, 5581, 300 }, + [23] = { 37.1, 37.5, 5581, 300 }, + [24] = { 36.8, 35.9, 5581, 300 }, + }, + ["lvl"] = "30-31", + }, + [62116] = { + ["coords"] = { + [1] = { 74.3, 87.9, 5581, 300 }, + [2] = { 73, 82.5, 5581, 300 }, + [3] = { 76.2, 81, 5581, 300 }, + [4] = { 72.6, 80.3, 5581, 300 }, + [5] = { 52.8, 55.6, 5581, 300 }, + [6] = { 38.5, 48.9, 5581, 300 }, + [7] = { 37.4, 47.9, 5581, 300 }, + [8] = { 39.1, 46.5, 5581, 300 }, + [9] = { 37.1, 44.6, 5581, 300 }, + [10] = { 36.3, 44.4, 5581, 300 }, + [11] = { 41, 44.1, 5581, 300 }, + [12] = { 37.1, 43.8, 5581, 300 }, + [13] = { 38.6, 43.1, 5581, 300 }, + [14] = { 51.3, 42.3, 5581, 300 }, + [15] = { 52, 41.2, 5581, 300 }, + [16] = { 50.8, 41.1, 5581, 300 }, + [17] = { 38.2, 40.9, 5581, 300 }, + [18] = { 39.8, 40.6, 5581, 300 }, + [19] = { 37.2, 38.6, 5581, 300 }, + [20] = { 40.2, 37.1, 5581, 300 }, + [21] = { 36.5, 36.6, 5581, 300 }, + [22] = { 38.4, 36.2, 5581, 300 }, + }, + ["lvl"] = "30-31", + }, + [62117] = { + ["coords"] = { + [1] = { 37.2, 43.6, 5581, 300 }, + }, + ["lvl"] = "31", + }, + [62118] = { + ["coords"] = { + [1] = { 80.2, 92.4, 5581, 300 }, + [2] = { 75.2, 91.5, 5581, 300 }, + [3] = { 72.8, 89.7, 5581, 300 }, + [4] = { 72.1, 89.3, 5581, 300 }, + [5] = { 75.8, 87.8, 5581, 300 }, + [6] = { 76.7, 86.1, 5581, 300 }, + [7] = { 73.2, 81.7, 5581, 300 }, + [8] = { 37.6, 36.7, 5581, 300 }, + }, + ["lvl"] = "31-32", + }, + [62119] = { + ["coords"] = { + [1] = { 80.3, 92.8, 5581, 300 }, + [2] = { 74.3, 90.6, 5581, 300 }, + [3] = { 71.6, 87.9, 5581, 300 }, + [4] = { 77.9, 83, 5581, 300 }, + [5] = { 74.2, 82.3, 5581, 300 }, + [6] = { 37.5, 36.7, 5581, 300 }, + }, + ["lvl"] = "31-32", + }, + [62120] = { + ["coords"] = { + [1] = { 80.1, 92.7, 5581, 300 }, + }, + ["lvl"] = "32", + }, + [62121] = { + ["coords"] = { + [1] = { 40.5, 71.7, 5581, 120 }, + [2] = { 38.6, 71.6, 5581, 120 }, + [3] = { 50.9, 71.3, 5581, 120 }, + [4] = { 52.1, 70.8, 5581, 120 }, + [5] = { 41.6, 70.6, 5581, 120 }, + [6] = { 47.7, 69.3, 5581, 120 }, + [7] = { 54.6, 68.6, 5581, 120 }, + [8] = { 56.2, 68.3, 5581, 120 }, + [9] = { 39, 68.1, 5581, 120 }, + [10] = { 59.5, 67.9, 5581, 120 }, + [11] = { 62.8, 67.9, 5581, 120 }, + [12] = { 51.1, 67.7, 5581, 120 }, + [13] = { 60.7, 67.4, 5581, 120 }, + [14] = { 44.6, 67, 5581, 120 }, + [15] = { 47.3, 67, 5581, 120 }, + [16] = { 61.6, 66.9, 5581, 120 }, + [17] = { 47, 65.5, 5581, 120 }, + [18] = { 45.6, 65.3, 5581, 120 }, + [19] = { 49.7, 65.1, 5581, 120 }, + [20] = { 47.4, 64.8, 5581, 120 }, + [21] = { 54.8, 64.1, 5581, 120 }, + [22] = { 52.3, 63.8, 5581, 120 }, + [23] = { 51.1, 62.7, 5581, 120 }, + [24] = { 52.9, 61.8, 5581, 120 }, + [25] = { 54.7, 61.1, 5581, 120 }, + [26] = { 52.4, 57.5, 5581, 120 }, + [27] = { 50.8, 56.3, 5581, 120 }, + [28] = { 51, 53, 5581, 120 }, + [29] = { 42.2, 48.1, 5581, 120 }, + [30] = { 34.1, 48.1, 5581, 120 }, + [31] = { 41, 47.7, 5581, 120 }, + [32] = { 42.9, 46.4, 5581, 120 }, + [33] = { 44.7, 45.4, 5581, 120 }, + [34] = { 43.5, 45.1, 5581, 120 }, + [35] = { 33.5, 44, 5581, 120 }, + [36] = { 43.2, 43.5, 5581, 120 }, + [37] = { 44.3, 42.8, 5581, 120 }, + [38] = { 34.9, 42.6, 5581, 120 }, + [39] = { 43.5, 41.5, 5581, 120 }, + [40] = { 25.6, 39.8, 5581, 120 }, + [41] = { 33.3, 37.5, 5581, 120 }, + }, + ["lvl"] = "29-30", + }, + [62122] = { + ["coords"] = { + [1] = { 23.9, 93.4, 1, 120 }, + [2] = { 20.8, 93.2, 1, 120 }, + [3] = { 57.5, 75.5, 5581, 120 }, + [4] = { 75, 73.5, 5581, 120 }, + [5] = { 74, 72.7, 5581, 120 }, + [6] = { 72.6, 71.6, 5581, 120 }, + [7] = { 73.9, 71.3, 5581, 120 }, + [8] = { 32.9, 69.8, 5581, 120 }, + [9] = { 72.8, 69.6, 5581, 120 }, + [10] = { 34.7, 69.1, 5581, 120 }, + [11] = { 31.2, 68, 5581, 120 }, + [12] = { 33.6, 67.7, 5581, 120 }, + [13] = { 76.8, 67.6, 5581, 120 }, + [14] = { 29, 66, 5581, 120 }, + [15] = { 73.8, 65.9, 5581, 120 }, + [16] = { 70.4, 64.4, 5581, 120 }, + [17] = { 71.6, 63.8, 5581, 120 }, + [18] = { 35.8, 63.4, 5581, 120 }, + [19] = { 37.3, 63.1, 5581, 120 }, + [20] = { 74.3, 62.7, 5581, 120 }, + [21] = { 76, 62.5, 5581, 120 }, + [22] = { 63.8, 62, 5581, 120 }, + [23] = { 76.7, 61.1, 5581, 120 }, + [24] = { 61.7, 60.6, 5581, 120 }, + [25] = { 68.8, 59.7, 5581, 120 }, + [26] = { 74.7, 58.3, 5581, 120 }, + [27] = { 60, 58.2, 5581, 120 }, + [28] = { 73.5, 57, 5581, 120 }, + [29] = { 67.4, 56.6, 5581, 120 }, + [30] = { 70.8, 55.6, 5581, 120 }, + [31] = { 55, 54.6, 5581, 120 }, + [32] = { 61.5, 53.1, 5581, 120 }, + [33] = { 75.1, 51.9, 5581, 300 }, + [34] = { 67.8, 51.8, 5581, 120 }, + [35] = { 76.6, 51.3, 5581, 300 }, + [36] = { 71.8, 50.4, 5581, 120 }, + [37] = { 64.5, 50.1, 5581, 120 }, + [38] = { 79.3, 49.8, 5581, 300 }, + [39] = { 65.7, 48.5, 5581, 120 }, + [40] = { 57.2, 48.1, 5581, 120 }, + [41] = { 81.1, 48.1, 5581, 300 }, + [42] = { 77.1, 47.6, 5581, 120 }, + [43] = { 72.2, 45.3, 5581, 120 }, + [44] = { 76.8, 44.9, 5581, 120 }, + [45] = { 49.5, 44.6, 5581, 120 }, + [46] = { 75.3, 44.5, 5581, 120 }, + [47] = { 78.6, 44, 5581, 120 }, + [48] = { 47, 43.9, 5581, 120 }, + [49] = { 74.6, 42.9, 5581, 120 }, + [50] = { 71.3, 42.3, 5581, 120 }, + [51] = { 76.2, 41.3, 5581, 120 }, + [52] = { 49.4, 40.9, 5581, 120 }, + [53] = { 45.9, 40.3, 5581, 120 }, + [54] = { 50.6, 39.3, 5581, 120 }, + [55] = { 66, 39.2, 5581, 120 }, + [56] = { 72.9, 39, 5581, 120 }, + [57] = { 58, 38.9, 5581, 120 }, + [58] = { 64.3, 37.8, 5581, 120 }, + [59] = { 77.2, 37.3, 5581, 120 }, + [60] = { 60.3, 37.2, 5581, 120 }, + [61] = { 78.2, 36.7, 5581, 120 }, + [62] = { 55.3, 36.6, 5581, 120 }, + [63] = { 72.9, 36.1, 5581, 120 }, + [64] = { 68.5, 35.8, 5581, 120 }, + [65] = { 53.4, 35.1, 5581, 120 }, + [66] = { 63.1, 34.8, 5581, 120 }, + [67] = { 48.1, 34.5, 5581, 120 }, + [68] = { 57.4, 34.4, 5581, 120 }, + [69] = { 61, 33.8, 5581, 120 }, + [70] = { 47.7, 31.7, 5581, 120 }, + [71] = { 45.4, 31.6, 5581, 120 }, + [72] = { 70.8, 31.3, 5581, 120 }, + [73] = { 49.2, 30.4, 5581, 120 }, + [74] = { 44.4, 29, 5581, 120 }, + [75] = { 47.5, 28.8, 5581, 120 }, + [76] = { 50.4, 28.6, 5581, 120 }, + [77] = { 45.6, 28.3, 5581, 120 }, + [78] = { 69, 27.6, 5581, 120 }, + [79] = { 71.2, 26.1, 5581, 120 }, + }, + ["lvl"] = "29-30", + }, + [62123] = { + ["coords"] = { + [1] = { 41.7, 72.5, 5581, 120 }, + [2] = { 56.3, 71.7, 5581, 120 }, + [3] = { 43.2, 71, 5581, 120 }, + [4] = { 55.2, 70.2, 5581, 120 }, + [5] = { 60, 70.1, 5581, 120 }, + [6] = { 45.3, 69.7, 5581, 120 }, + [7] = { 38.4, 69.2, 5581, 120 }, + [8] = { 36.6, 69.1, 5581, 120 }, + [9] = { 52.9, 68.7, 5581, 120 }, + [10] = { 58.4, 67.3, 5581, 120 }, + [11] = { 63, 66.5, 5581, 120 }, + [12] = { 53.4, 66.2, 5581, 120 }, + [13] = { 61.3, 64.9, 5581, 120 }, + [14] = { 53.8, 62.9, 5581, 120 }, + [15] = { 53.3, 59.1, 5581, 120 }, + [16] = { 32.3, 48.6, 5581, 120 }, + [17] = { 29, 47.6, 5581, 120 }, + [18] = { 35.7, 41.1, 5581, 120 }, + [19] = { 33.6, 40.2, 5581, 120 }, + [20] = { 32.6, 39.1, 5581, 120 }, + }, + ["lvl"] = "28-30", + }, + [62124] = { + ["coords"] = { + [1] = { 56, 75.9, 5581, 120 }, + [2] = { 58.3, 74.8, 5581, 120 }, + [3] = { 54.4, 73.5, 5581, 120 }, + [4] = { 32.4, 68.3, 5581, 120 }, + [5] = { 75.1, 68.3, 5581, 120 }, + [6] = { 30, 68, 5581, 120 }, + [7] = { 71.8, 67.9, 5581, 120 }, + [8] = { 72.8, 66.2, 5581, 120 }, + [9] = { 28, 66.1, 5581, 120 }, + [10] = { 30.1, 66, 5581, 120 }, + [11] = { 75, 64.5, 5581, 120 }, + [12] = { 62.5, 62.6, 5581, 120 }, + [13] = { 71.9, 61.9, 5581, 120 }, + [14] = { 74.5, 60, 5581, 120 }, + [15] = { 71.8, 59.7, 5581, 120 }, + [16] = { 65.8, 59.3, 5581, 120 }, + [17] = { 72.7, 58.4, 5581, 120 }, + [18] = { 61.7, 58.4, 5581, 120 }, + [19] = { 69.9, 58.2, 5581, 120 }, + [20] = { 69.6, 56.6, 5581, 120 }, + [21] = { 55, 56, 5581, 120 }, + [22] = { 57.7, 54.5, 5581, 120 }, + [23] = { 75.8, 54.1, 5581, 300 }, + [24] = { 53.1, 53.9, 5581, 120 }, + [25] = { 77.1, 52.7, 5581, 300 }, + [26] = { 62, 51.9, 5581, 120 }, + [27] = { 69.1, 51.6, 5581, 120 }, + [28] = { 66.5, 50.7, 5581, 120 }, + [29] = { 57.8, 50, 5581, 120 }, + [30] = { 72.6, 49.3, 5581, 120 }, + [31] = { 59.6, 49, 5581, 120 }, + [32] = { 74.8, 48.5, 5581, 120 }, + [33] = { 70.9, 47.4, 5581, 120 }, + [34] = { 61.3, 47.1, 5581, 120 }, + [35] = { 55.9, 46.9, 5581, 120 }, + [36] = { 69.6, 46.1, 5581, 120 }, + [37] = { 62.6, 45.6, 5581, 120 }, + [38] = { 79.1, 45.5, 5581, 120 }, + [39] = { 77.5, 45.4, 5581, 120 }, + [40] = { 59.1, 44.4, 5581, 120 }, + [41] = { 79.5, 43.8, 5581, 120 }, + [42] = { 48.6, 42.6, 5581, 120 }, + [43] = { 76, 42.5, 5581, 120 }, + [44] = { 72.5, 42.4, 5581, 120 }, + [45] = { 60.3, 42.3, 5581, 120 }, + [46] = { 67.4, 42.3, 5581, 120 }, + [47] = { 57.6, 42.1, 5581, 120 }, + [48] = { 64, 41.8, 5581, 120 }, + [49] = { 61.4, 41.6, 5581, 120 }, + [50] = { 47.6, 41.4, 5581, 120 }, + [51] = { 55.5, 40.7, 5581, 120 }, + [52] = { 71.7, 39.8, 5581, 120 }, + [53] = { 69.9, 39.2, 5581, 120 }, + [54] = { 53, 39.2, 5581, 120 }, + [55] = { 75.2, 38.9, 5581, 120 }, + [56] = { 77, 38.6, 5581, 120 }, + [57] = { 46.7, 38.5, 5581, 120 }, + [58] = { 56.9, 38.1, 5581, 120 }, + [59] = { 67, 38, 5581, 120 }, + [60] = { 48, 37.3, 5581, 120 }, + [61] = { 70.5, 36.8, 5581, 120 }, + [62] = { 78.9, 35.9, 5581, 120 }, + [63] = { 28.9, 35.2, 5581, 120 }, + [64] = { 58.8, 35.2, 5581, 120 }, + [65] = { 31.5, 34.6, 5581, 120 }, + [66] = { 32.3, 34.1, 5581, 120 }, + [67] = { 33.6, 34, 5581, 120 }, + [68] = { 30.8, 33.6, 5581, 120 }, + [69] = { 63.7, 32.9, 5581, 120 }, + [70] = { 59.6, 32.9, 5581, 120 }, + [71] = { 29.2, 32.7, 5581, 120 }, + [72] = { 34.1, 32.6, 5581, 120 }, + [73] = { 35, 31.8, 5581, 120 }, + [74] = { 27.7, 31.5, 5581, 300 }, + [75] = { 57.5, 31.4, 5581, 120 }, + [76] = { 68.7, 30.7, 5581, 120 }, + [77] = { 33.7, 30.7, 5581, 120 }, + [78] = { 71.1, 28.3, 5581, 120 }, + [79] = { 68.9, 25.3, 5581, 120 }, + [80] = { 72.6, 23.7, 5581, 120 }, + [81] = { 69.1, 20.6, 5581, 120 }, + [82] = { 71.2, 20.2, 5581, 120 }, + }, + ["lvl"] = "31-32", + }, + [62125] = { + ["coords"] = { + [1] = { 57.7, 72.1, 5581, 120 }, + [2] = { 53.5, 71.3, 5581, 120 }, + [3] = { 53.8, 69.7, 5581, 120 }, + [4] = { 58.1, 68.9, 5581, 120 }, + [5] = { 61.5, 68.6, 5581, 120 }, + [6] = { 35.4, 67.8, 5581, 120 }, + [7] = { 56.7, 66.7, 5581, 120 }, + [8] = { 37.6, 66.5, 5581, 120 }, + [9] = { 36.4, 66.2, 5581, 120 }, + [10] = { 51, 66, 5581, 120 }, + [11] = { 59.2, 64.7, 5581, 120 }, + [12] = { 53.2, 64.5, 5581, 120 }, + [13] = { 53.8, 61, 5581, 120 }, + [14] = { 52.6, 60.6, 5581, 120 }, + [15] = { 34.2, 50.3, 5581, 120 }, + [16] = { 31.3, 49.5, 5581, 120 }, + [17] = { 28.9, 49.3, 5581, 120 }, + [18] = { 33.6, 41.5, 5581, 120 }, + [19] = { 35.9, 39.4, 5581, 120 }, + [20] = { 32, 37.1, 5581, 120 }, + [21] = { 42.1, 35.8, 5581, 120 }, + [22] = { 43, 35.7, 5581, 120 }, + [23] = { 41.4, 34.7, 5581, 120 }, + [24] = { 40.8, 34.3, 5581, 120 }, + [25] = { 40.7, 33, 5581, 120 }, + [26] = { 39.9, 33, 5581, 120 }, + [27] = { 38.5, 32.5, 5581, 120 }, + [28] = { 37.4, 32, 5581, 120 }, + [29] = { 39.1, 31.7, 5581, 120 }, + [30] = { 40, 31.7, 5581, 120 }, + [31] = { 38.1, 31.3, 5581, 120 }, + [32] = { 39.2, 30.9, 5581, 120 }, + }, + ["lvl"] = "29-30", + }, + [62126] = { + ["coords"] = { + [1] = { 58.9, 76.3, 5581, 120 }, + [2] = { 54.9, 76.1, 5581, 120 }, + [3] = { 31.8, 69.8, 5581, 120 }, + [4] = { 30.2, 69.3, 5581, 120 }, + [5] = { 72.8, 68, 5581, 120 }, + [6] = { 70.9, 66.6, 5581, 120 }, + [7] = { 38.4, 64.5, 5581, 120 }, + [8] = { 28.9, 64.4, 5581, 120 }, + [9] = { 73.2, 64.4, 5581, 120 }, + [10] = { 64.2, 64.3, 5581, 120 }, + [11] = { 60.3, 62.7, 5581, 120 }, + [12] = { 73.4, 61.7, 5581, 120 }, + [13] = { 73.5, 60.2, 5581, 120 }, + [14] = { 79.1, 58.9, 5581, 300 }, + [15] = { 71.3, 57.7, 5581, 120 }, + [16] = { 79.1, 57.2, 5581, 300 }, + [17] = { 54, 56.9, 5581, 120 }, + [18] = { 59.3, 56.1, 5581, 120 }, + [19] = { 72.6, 55.6, 5581, 120 }, + [20] = { 77.5, 55.5, 5581, 300 }, + [21] = { 67.2, 54.7, 5581, 120 }, + [22] = { 71.2, 54.2, 5581, 120 }, + [23] = { 55.6, 52.3, 5581, 120 }, + [24] = { 63.6, 51.8, 5581, 120 }, + [25] = { 78.7, 51.2, 5581, 300 }, + [26] = { 69.8, 50.2, 5581, 120 }, + [27] = { 62.6, 49.9, 5581, 120 }, + [28] = { 56.1, 49.3, 5581, 120 }, + [29] = { 68.4, 48.4, 5581, 120 }, + [30] = { 82.3, 48.2, 5581, 300 }, + [31] = { 58.5, 47.7, 5581, 120 }, + [32] = { 72.3, 47.5, 5581, 120 }, + [33] = { 78.9, 47, 5581, 120 }, + [34] = { 74.8, 46.8, 5581, 120 }, + [35] = { 76.2, 46.7, 5581, 120 }, + [36] = { 60.3, 45.6, 5581, 120 }, + [37] = { 57.3, 44.3, 5581, 120 }, + [38] = { 63.4, 44.1, 5581, 120 }, + [39] = { 61.9, 43.5, 5581, 120 }, + [40] = { 68.6, 43, 5581, 120 }, + [41] = { 55.5, 42.2, 5581, 120 }, + [42] = { 58.8, 42.1, 5581, 120 }, + [43] = { 65.2, 41.6, 5581, 120 }, + [44] = { 75.1, 41.2, 5581, 120 }, + [45] = { 62.7, 40.8, 5581, 120 }, + [46] = { 74.5, 39.9, 5581, 120 }, + [47] = { 68.6, 39.3, 5581, 120 }, + [48] = { 44, 38.7, 5581, 120 }, + [49] = { 71.9, 37.6, 5581, 120 }, + [50] = { 75.8, 37.3, 5581, 120 }, + [51] = { 80.1, 36.6, 5581, 120 }, + [52] = { 71.8, 35.4, 5581, 120 }, + [53] = { 69.9, 33.5, 5581, 120 }, + [54] = { 67, 32, 5581, 120 }, + [55] = { 37.9, 31.1, 5581, 120 }, + [56] = { 39.4, 30.8, 5581, 120 }, + [57] = { 38.7, 30.8, 5581, 120 }, + [58] = { 65.1, 30.6, 5581, 120 }, + [59] = { 67.6, 28.8, 5581, 120 }, + [60] = { 68.9, 22.4, 5581, 120 }, + [61] = { 67.7, 21.8, 5581, 120 }, + }, + ["lvl"] = "31-32", + }, + [62127] = { + ["coords"] = { + [1] = { 34.5, 23.2, 5581, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [62128] = { + ["coords"] = { + [1] = { 65.5, 70.8, 5581, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [62129] = { + ["coords"] = { + [1] = { 65.8, 71.5, 5581, 120 }, + [2] = { 66, 71.4, 5581, 120 }, + [3] = { 66, 70.4, 5581, 120 }, + [4] = { 65.6, 68.9, 5581, 120 }, + [5] = { 65.9, 64.8, 5581, 120 }, + [6] = { 66.3, 63.7, 5581, 120 }, + [7] = { 65.8, 63.1, 5581, 120 }, + [8] = { 65.5, 62, 5581, 120 }, + [9] = { 29.6, 57, 5581, 120 }, + [10] = { 42.7, 56, 5581, 120 }, + [11] = { 32.3, 55.2, 5581, 120 }, + [12] = { 32.3, 55, 5581, 120 }, + [13] = { 61, 54.2, 5581, 120 }, + [14] = { 61.2, 54.1, 5581, 120 }, + [15] = { 59.4, 52.9, 5581, 120 }, + [16] = { 59.5, 52.7, 5581, 120 }, + [17] = { 36.4, 52.6, 5581, 120 }, + [18] = { 28.4, 52.6, 5581, 120 }, + [19] = { 26.9, 51.5, 5581, 120 }, + [20] = { 53.8, 50.9, 5581, 120 }, + [21] = { 53.5, 50.6, 5581, 120 }, + [22] = { 53.5, 50.5, 5581, 120 }, + [23] = { 42.9, 49.9, 5581, 120 }, + [24] = { 23.8, 47.6, 5581, 120 }, + [25] = { 21.9, 44.1, 5581, 120 }, + [26] = { 21.8, 44.1, 5581, 120 }, + }, + ["lvl"] = "5", + }, + [62130] = { + ["coords"] = { + [1] = { 42.6, 56.1, 5581, 120 }, + [2] = { 42.7, 56.1, 5581, 120 }, + [3] = { 42.7, 56, 5581, 120 }, + [4] = { 59.5, 52.9, 5581, 120 }, + [5] = { 59.4, 52.7, 5581, 120 }, + [6] = { 36.5, 52.7, 5581, 120 }, + [7] = { 42.9, 49.9, 5581, 120 }, + [8] = { 42.9, 49.8, 5581, 120 }, + [9] = { 23.8, 47.6, 5581, 120 }, + [10] = { 22, 44.2, 5581, 120 }, + [11] = { 21.9, 44.2, 5581, 120 }, + [12] = { 22, 44.1, 5581, 120 }, + }, + ["lvl"] = "1", + }, + [62131] = { + ["coords"] = { + [1] = { 52.8, 5.5, 1519, 120 }, + [2] = { 55.2, 3.5, 1519, 120 }, + [3] = { 44.8, 80.3, 5581, 120 }, + [4] = { 35.7, 80.1, 5581, 120 }, + [5] = { 36.4, 79.5, 5581, 120 }, + [6] = { 39.7, 79.3, 5581, 120 }, + [7] = { 46.1, 79.3, 5581, 120 }, + [8] = { 43.2, 79.3, 5581, 120 }, + [9] = { 40.1, 78.9, 5581, 120 }, + [10] = { 40.2, 77.8, 5581, 120 }, + [11] = { 43, 77.8, 5581, 120 }, + [12] = { 36.1, 77.2, 5581, 120 }, + [13] = { 37.3, 76.3, 5581, 120 }, + [14] = { 44.8, 76.3, 5581, 120 }, + [15] = { 36.5, 75.9, 5581, 120 }, + [16] = { 40.7, 74, 5581, 120 }, + [17] = { 39.3, 73.7, 5581, 120 }, + [18] = { 34.2, 72.6, 5581, 120 }, + [19] = { 37.5, 71.5, 5581, 120 }, + [20] = { 34.4, 71.1, 5581, 120 }, + [21] = { 35.5, 70.1, 5581, 120 }, + [22] = { 66.4, 56.2, 5581, 120 }, + [23] = { 64.6, 55.1, 5581, 120 }, + [24] = { 62.8, 53.8, 5581, 120 }, + [25] = { 65.3, 53.6, 5581, 120 }, + [26] = { 64.2, 53.4, 5581, 120 }, + }, + ["lvl"] = "28-29", + }, + [62132] = { + ["coords"] = { + [1] = { 40.1, 80, 5581, 120 }, + [2] = { 34.6, 79.5, 5581, 120 }, + [3] = { 41.2, 79.3, 5581, 120 }, + [4] = { 39.5, 78.9, 5581, 120 }, + [5] = { 36.8, 78.5, 5581, 120 }, + [6] = { 38.6, 78.1, 5581, 120 }, + [7] = { 42.3, 77, 5581, 120 }, + [8] = { 35.6, 75.9, 5581, 120 }, + [9] = { 38.2, 75, 5581, 120 }, + [10] = { 34.3, 72.9, 5581, 120 }, + [11] = { 39.6, 72, 5581, 120 }, + [12] = { 34.5, 70.8, 5581, 120 }, + [13] = { 64.5, 56.4, 5581, 120 }, + [14] = { 66.6, 54.5, 5581, 120 }, + [15] = { 64.3, 53.8, 5581, 120 }, + [16] = { 64.6, 52.1, 5581, 120 }, + }, + ["lvl"] = "29-30", + }, + [62133] = { + ["coords"] = { + [1] = { 57, 1.4, 1519, 120 }, + [2] = { 35.4, 81, 5581, 120 }, + [3] = { 44.3, 78.9, 5581, 120 }, + [4] = { 47, 78.1, 5581, 120 }, + [5] = { 41.3, 77.6, 5581, 120 }, + [6] = { 44.2, 77.1, 5581, 120 }, + [7] = { 39.3, 76.9, 5581, 120 }, + [8] = { 36.1, 76.7, 5581, 120 }, + [9] = { 36.3, 75.9, 5581, 300 }, + [10] = { 38.1, 73.4, 5581, 120 }, + [11] = { 43.7, 73.3, 5581, 120 }, + [12] = { 34.8, 72.8, 5581, 120 }, + [13] = { 35.2, 71.8, 5581, 120 }, + [14] = { 47, 70.4, 5581, 120 }, + [15] = { 34, 69.7, 5581, 120 }, + [16] = { 44.3, 69.1, 5581, 120 }, + [17] = { 45.4, 68, 5581, 120 }, + [18] = { 46.9, 67.6, 5581, 120 }, + [19] = { 64.9, 57.6, 5581, 120 }, + [20] = { 65.4, 56.5, 5581, 120 }, + [21] = { 63.6, 55.4, 5581, 120 }, + [22] = { 65.1, 54.6, 5581, 120 }, + [23] = { 66.1, 52.9, 5581, 120 }, + }, + ["lvl"] = "28-29", + }, + [62134] = { + ["coords"] = { + [1] = { 34.6, 80.5, 5581, 120 }, + [2] = { 34.5, 79.4, 5581, 300 }, + [3] = { 39.5, 79.2, 5581, 120 }, + [4] = { 34.8, 78.7, 5581, 120 }, + [5] = { 38.6, 77.7, 5581, 120 }, + [6] = { 39.6, 77, 5581, 120 }, + [7] = { 41.4, 74.5, 5581, 120 }, + [8] = { 34.9, 72.7, 5581, 120 }, + [9] = { 64.7, 55.4, 5581, 120 }, + [10] = { 63.6, 55.1, 5581, 120 }, + [11] = { 63.7, 53.8, 5581, 120 }, + }, + ["lvl"] = "30-31", + }, + [62135] = { + ["coords"] = { + [1] = { 70.6, 84.2, 5581, 120 }, + [2] = { 69.8, 82, 5581, 120 }, + [3] = { 71.2, 81.9, 5581, 120 }, + [4] = { 73.4, 81.6, 5581, 120 }, + [5] = { 72.2, 80.6, 5581, 120 }, + [6] = { 72.3, 79.9, 5581, 120 }, + [7] = { 72.7, 79.6, 5581, 120 }, + [8] = { 74.4, 79.1, 5581, 120 }, + [9] = { 71.1, 78.8, 5581, 120 }, + [10] = { 74.5, 78.1, 5581, 120 }, + [11] = { 71.3, 76.7, 5581, 120 }, + [12] = { 71, 75.7, 5581, 120 }, + [13] = { 70.4, 73.8, 5581, 120 }, + [14] = { 71.9, 72.5, 5581, 120 }, + [15] = { 69.9, 71.3, 5581, 120 }, + [16] = { 71.6, 70.9, 5581, 120 }, + [17] = { 69.5, 69.6, 5581, 120 }, + [18] = { 69.9, 69.5, 5581, 120 }, + [19] = { 29.3, 57.6, 5581, 300 }, + [20] = { 29.1, 56.6, 5581, 120 }, + [21] = { 31.2, 55.1, 5581, 300 }, + [22] = { 30.5, 54.8, 5581, 120 }, + [23] = { 26.4, 54.4, 5581, 120 }, + }, + ["lvl"] = "31-32", + }, + [62136] = { + ["coords"] = { + [1] = { 69.8, 83.4, 5581, 120 }, + [2] = { 69.4, 83, 5581, 120 }, + [3] = { 71.5, 82.8, 5581, 120 }, + [4] = { 70.8, 82.4, 5581, 120 }, + [5] = { 74.6, 80.9, 5581, 120 }, + [6] = { 73.8, 80.8, 5581, 120 }, + [7] = { 70.8, 80.6, 5581, 120 }, + [8] = { 73.9, 79.5, 5581, 120 }, + [9] = { 71.4, 79.1, 5581, 120 }, + [10] = { 71.4, 77.8, 5581, 120 }, + [11] = { 71.3, 74.4, 5581, 120 }, + [12] = { 69.9, 72.8, 5581, 120 }, + [13] = { 71.1, 72.3, 5581, 120 }, + [14] = { 69.1, 71.2, 5581, 120 }, + [15] = { 70, 69.7, 5581, 120 }, + [16] = { 71.3, 69.7, 5581, 120 }, + [17] = { 69.9, 68, 5581, 120 }, + [18] = { 30.3, 56.8, 5581, 120 }, + [19] = { 26.7, 53.3, 5581, 120 }, + }, + ["lvl"] = "32-33", + }, + [62137] = { + ["coords"] = { + [1] = { 70.9, 83.4, 5581, 120 }, + [2] = { 71.4, 82.2, 5581, 120 }, + [3] = { 72, 82, 5581, 120 }, + [4] = { 73.6, 81.7, 5581, 120 }, + [5] = { 70.5, 80.8, 5581, 120 }, + [6] = { 71.5, 80.2, 5581, 120 }, + [7] = { 73.2, 80.2, 5581, 120 }, + [8] = { 75.1, 79.5, 5581, 120 }, + [9] = { 72.3, 78.6, 5581, 120 }, + [10] = { 70.6, 73, 5581, 120 }, + [11] = { 69.4, 72.5, 5581, 120 }, + [12] = { 71, 72.5, 5581, 120 }, + [13] = { 70.7, 70.4, 5581, 120 }, + [14] = { 69.8, 70.3, 5581, 120 }, + [15] = { 69.1, 67.7, 5581, 120 }, + [16] = { 29.9, 57.3, 5581, 300 }, + [17] = { 28.8, 56.6, 5581, 120 }, + [18] = { 29.5, 54.9, 5581, 120 }, + [19] = { 27.8, 54.1, 5581, 120 }, + }, + ["lvl"] = "32-33", + }, + [62138] = { + ["coords"] = { + [1] = { 66.2, 43.6, 5581, 120 }, + [2] = { 68.9, 42.7, 5581, 120 }, + [3] = { 66.7, 42.6, 5581, 120 }, + [4] = { 69.7, 41.8, 5581, 120 }, + [5] = { 67.6, 41.8, 5581, 120 }, + [6] = { 67.9, 41.4, 5581, 120 }, + [7] = { 69.5, 41, 5581, 120 }, + [8] = { 70.1, 40.7, 5581, 120 }, + [9] = { 66.3, 40.1, 5581, 120 }, + [10] = { 69.1, 39.8, 5581, 120 }, + [11] = { 64.8, 39.6, 5581, 120 }, + [12] = { 67.5, 39.2, 5581, 120 }, + [13] = { 66.3, 38.8, 5581, 120 }, + [14] = { 67.4, 38.4, 5581, 120 }, + [15] = { 67.2, 37.8, 5581, 120 }, + [16] = { 65.2, 37.6, 5581, 120 }, + [17] = { 68, 37.4, 5581, 120 }, + [18] = { 65.7, 36.8, 5581, 120 }, + [19] = { 69.1, 36.3, 5581, 120 }, + }, + ["lvl"] = "31-32", + }, + [62139] = { + ["coords"] = { + [1] = { 66.9, 46.3, 5581, 120 }, + [2] = { 66.4, 45.9, 5581, 120 }, + [3] = { 66.4, 44.8, 5581, 120 }, + [4] = { 68.2, 43.3, 5581, 120 }, + [5] = { 67.4, 43.2, 5581, 120 }, + [6] = { 66.1, 41.8, 5581, 120 }, + [7] = { 67.5, 40.8, 5581, 120 }, + [8] = { 65.5, 40.6, 5581, 120 }, + [9] = { 66.9, 40.2, 5581, 120 }, + [10] = { 69.8, 39.3, 5581, 120 }, + [11] = { 69.7, 38.5, 5581, 120 }, + [12] = { 67.7, 38.1, 5581, 120 }, + [13] = { 69.5, 37.3, 5581, 120 }, + [14] = { 66.4, 36.8, 5581, 120 }, + [15] = { 68.4, 36.6, 5581, 120 }, + }, + ["lvl"] = "30-31", + }, + [62140] = { + ["coords"] = { + [1] = { 67.3, 41.3, 5581, 120 }, + [2] = { 68.9, 40.9, 5581, 120 }, + [3] = { 65.6, 38.6, 5581, 120 }, + [4] = { 66.7, 38.5, 5581, 120 }, + [5] = { 66.3, 37.9, 5581, 120 }, + [6] = { 69.1, 37.2, 5581, 120 }, + }, + ["lvl"] = "31-32", + }, + [62141] = { + ["coords"] = { + [1] = { 21.4, 46.2, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "42", + }, + [62142] = { + ["coords"] = { + [1] = { 21.5, 46.8, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "38", + }, + [62143] = { + ["coords"] = { + [1] = { 46.8, 53.7, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [62144] = { + ["coords"] = { + [1] = { 44.4, 52.8, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "46", + }, + [62145] = { + ["coords"] = { + [1] = { 50.4, 60.3, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [62146] = { + ["coords"] = { + [1] = { 50.4, 61.8, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [62147] = { + ["coords"] = { + [1] = { 45.5, 57.8, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [62148] = { + ["coords"] = { + [1] = { 46.1, 60.6, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "46", + }, + [62149] = { + ["coords"] = { + [1] = { 46.4, 60.7, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "44", + }, + [62150] = { + ["coords"] = { + [1] = { 45.4, 60.3, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [62151] = { + ["coords"] = { + [1] = { 46.8, 56, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "34", + }, + [62152] = { + ["coords"] = { + [1] = { 46.7, 56.6, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "39", + }, + [62153] = { + ["coords"] = { + [1] = { 48.8, 56, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [62154] = { + ["coords"] = { + [1] = { 44.1, 59.8, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "48", + }, + [62155] = { + ["coords"] = { + [1] = { 49.6, 56.8, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [62156] = { + ["coords"] = { + [1] = { 65.6, 70.6, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "28", + }, + [62157] = { + ["coords"] = { + [1] = { 65.6, 70.6, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "28", + }, + [62158] = { + ["coords"] = { + [1] = { 63.3, 73.7, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "32", + }, + [62159] = { + ["coords"] = { + [1] = { 62.9, 73.4, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "32", + }, + [62160] = { + ["coords"] = { + [1] = { 33.7, 45.3, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [62161] = { + ["coords"] = { + [1] = { 45.7, 58.4, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [62162] = { + ["coords"] = { + [1] = { 37.9, 57.4, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + ["rnk"] = "1", + }, + [62163] = { + ["coords"] = { + [1] = { 32.8, 61, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + ["rnk"] = "1", + }, + [62164] = { + ["coords"] = { + [1] = { 37.8, 54.9, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + ["rnk"] = "1", + }, + [62165] = { + ["coords"] = { + [1] = { 32.4, 61.7, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [62166] = { + ["coords"] = { + [1] = { 31.6, 63.2, 5581, 120 }, + [2] = { 32.8, 62.6, 5581, 120 }, + [3] = { 32.1, 62.5, 5581, 120 }, + [4] = { 34.1, 62.3, 5581, 120 }, + [5] = { 33.8, 62.3, 5581, 120 }, + [6] = { 32.8, 61.7, 5581, 120 }, + [7] = { 32.5, 61.5, 5581, 120 }, + [8] = { 32.6, 61.5, 5581, 120 }, + [9] = { 43.4, 61.2, 5581, 120 }, + [10] = { 33.2, 61.1, 5581, 120 }, + [11] = { 32.4, 61.1, 5581, 120 }, + [12] = { 32.2, 60.7, 5581, 120 }, + [13] = { 32, 60.6, 5581, 120 }, + [14] = { 32.6, 60.6, 5581, 120 }, + [15] = { 34.3, 60.5, 5581, 120 }, + [16] = { 34.3, 60.2, 5581, 120 }, + [17] = { 32.6, 60.1, 5581, 120 }, + [18] = { 32.8, 60, 5581, 120 }, + [19] = { 44.5, 60, 5581, 120 }, + [20] = { 47.2, 59.8, 5581, 120 }, + [21] = { 34.6, 59.6, 5581, 120 }, + [22] = { 45.9, 59.1, 5581, 120 }, + [23] = { 31.8, 58.7, 5581, 120 }, + [24] = { 31.3, 58.7, 5581, 300 }, + [25] = { 32.6, 58.4, 5581, 120 }, + [26] = { 49.6, 58.3, 5581, 120 }, + [27] = { 34.4, 58.3, 5581, 120 }, + [28] = { 33.2, 58.3, 5581, 120 }, + [29] = { 37.4, 57.8, 5581, 120 }, + [30] = { 39.2, 57.6, 5581, 120 }, + [31] = { 38, 57.5, 5581, 120 }, + [32] = { 36.5, 57.3, 5581, 120 }, + [33] = { 47.6, 57.3, 5581, 120 }, + [34] = { 38.1, 57.2, 5581, 120 }, + [35] = { 49.2, 56.7, 5581, 120 }, + [36] = { 49.7, 56.4, 5581, 120 }, + [37] = { 36.6, 55.1, 5581, 120 }, + [38] = { 38.2, 54.9, 5581, 120 }, + [39] = { 37.8, 54.8, 5581, 120 }, + [40] = { 37.6, 54.5, 5581, 120 }, + [41] = { 37.7, 54.4, 5581, 120 }, + [42] = { 39.5, 54.4, 5581, 120 }, + [43] = { 45.7, 54.2, 5581, 120 }, + [44] = { 46, 52.4, 5581, 120 }, + [45] = { 45.9, 51.4, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [62167] = { + ["coords"] = { + [1] = { 32.8, 59.6, 5581, 120 }, + [2] = { 32.6, 59.6, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [62168] = { + ["coords"] = { + [1] = { 34.3, 61.4, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "42", + }, + [62169] = { + ["coords"] = { + [1] = { 11.6, 62.7, 51, 120 }, + [2] = { 8.2, 59.1, 51, 120 }, + [3] = { 8.3, 58.2, 51, 120 }, + [4] = { 7.6, 53.1, 51, 120 }, + [5] = { 9.1, 43.6, 51, 120 }, + [6] = { 12.5, 39.8, 51, 120 }, + [7] = { 9.7, 24.7, 51, 120 }, + [8] = { 87.6, 32.7, 5581, 120 }, + [9] = { 85.3, 30.3, 5581, 120 }, + [10] = { 85.4, 29.6, 5581, 120 }, + [11] = { 75.6, 27.4, 5581, 120 }, + [12] = { 81.7, 27.2, 5581, 120 }, + [13] = { 84.8, 26.1, 5581, 120 }, + [14] = { 74.7, 25.8, 5581, 120 }, + [15] = { 74.7, 25.6, 5581, 120 }, + [16] = { 75.6, 24.7, 5581, 120 }, + [17] = { 80.6, 22.8, 5581, 120 }, + [18] = { 78.1, 22.5, 5581, 120 }, + [19] = { 85.9, 19.6, 5581, 120 }, + [20] = { 84.6, 18.3, 5581, 120 }, + [21] = { 81.7, 18.2, 5581, 120 }, + [22] = { 84.6, 17.9, 5581, 120 }, + [23] = { 88.2, 16.9, 5581, 120 }, + [24] = { 80.2, 14.2, 5581, 120 }, + [25] = { 85.1, 11.6, 5581, 120 }, + [26] = { 79.5, 11.6, 5581, 120 }, + [27] = { 82.5, 10.4, 5581, 120 }, + [28] = { 83.9, 9.4, 5581, 120 }, + [29] = { 83.6, 6.8, 5581, 120 }, + [30] = { 86.3, 6.5, 5581, 120 }, + [31] = { 83.7, 4.9, 5581, 120 }, + }, + ["lvl"] = "32-33", + }, + [62170] = { + ["coords"] = { + [1] = { 8.2, 60.8, 51, 120 }, + [2] = { 8, 57.3, 51, 120 }, + [3] = { 9.7, 54.7, 51, 120 }, + [4] = { 8.5, 34.6, 51, 120 }, + [5] = { 9, 28.9, 51, 120 }, + [6] = { 9.6, 22.6, 51, 120 }, + [7] = { 85.3, 31.4, 5581, 120 }, + [8] = { 73.8, 29.1, 5581, 120 }, + [9] = { 85.1, 29, 5581, 120 }, + [10] = { 73.2, 28.3, 5581, 120 }, + [11] = { 86.3, 27.2, 5581, 120 }, + [12] = { 75.1, 26.8, 5581, 120 }, + [13] = { 76, 25.7, 5581, 120 }, + [14] = { 79.8, 24.2, 5581, 120 }, + [15] = { 81.1, 23.5, 5581, 120 }, + [16] = { 77.7, 22.4, 5581, 120 }, + [17] = { 83.5, 20.2, 5581, 120 }, + [18] = { 84, 17.6, 5581, 120 }, + [19] = { 83.9, 17, 5581, 120 }, + [20] = { 84.3, 15.7, 5581, 120 }, + [21] = { 81, 13.8, 5581, 120 }, + [22] = { 85.5, 13.3, 5581, 120 }, + [23] = { 81.8, 11.2, 5581, 120 }, + [24] = { 83.6, 11, 5581, 120 }, + [25] = { 80, 10.8, 5581, 120 }, + [26] = { 79.6, 10.3, 5581, 120 }, + [27] = { 85.8, 9.4, 5581, 120 }, + [28] = { 84.5, 8.1, 5581, 120 }, + [29] = { 86.2, 5.1, 5581, 120 }, + [30] = { 84.1, 4.5, 5581, 120 }, + }, + ["lvl"] = "32-33", + }, + [62171] = { + ["coords"] = { + [1] = { 15.9, 65.2, 51, 120 }, + [2] = { 14.5, 63.4, 51, 120 }, + [3] = { 10.1, 62.5, 51, 120 }, + [4] = { 15.9, 62.1, 51, 120 }, + [5] = { 17.6, 60.4, 51, 120 }, + [6] = { 7.5, 59, 51, 120 }, + [7] = { 16.9, 58.2, 51, 120 }, + [8] = { 12.8, 55, 51, 120 }, + [9] = { 11.8, 52.3, 51, 120 }, + [10] = { 9.1, 49.6, 51, 120 }, + [11] = { 8.8, 42.2, 51, 120 }, + [12] = { 7.8, 41.8, 51, 120 }, + [13] = { 12.4, 40.4, 51, 120 }, + [14] = { 13.3, 40, 51, 120 }, + [15] = { 9.5, 36.8, 51, 120 }, + [16] = { 14.1, 36.5, 51, 120 }, + [17] = { 12.3, 30.1, 51, 120 }, + [18] = { 3.9, 27.8, 51, 120 }, + [19] = { 9, 27.7, 51, 120 }, + [20] = { 11.4, 25.8, 51, 120 }, + [21] = { 90.6, 34.5, 5581, 120 }, + [22] = { 89.6, 33.2, 5581, 120 }, + [23] = { 86.6, 32.6, 5581, 120 }, + [24] = { 90.6, 32.3, 5581, 120 }, + [25] = { 84.4, 31.9, 5581, 120 }, + [26] = { 91.8, 31.1, 5581, 120 }, + [27] = { 82.6, 30.9, 5581, 120 }, + [28] = { 73.1, 30.2, 5581, 120 }, + [29] = { 84.8, 30.2, 5581, 120 }, + [30] = { 91.3, 29.6, 5581, 120 }, + [31] = { 83.9, 28.8, 5581, 120 }, + [32] = { 74.7, 28.7, 5581, 120 }, + [33] = { 75.8, 28.5, 5581, 120 }, + [34] = { 88.4, 27.4, 5581, 120 }, + [35] = { 75.8, 26.7, 5581, 120 }, + [36] = { 74, 25.9, 5581, 120 }, + [37] = { 87.7, 25.6, 5581, 120 }, + [38] = { 81.6, 24.2, 5581, 120 }, + [39] = { 85.9, 23.7, 5581, 120 }, + [40] = { 78.9, 23.2, 5581, 120 }, + [41] = { 82.2, 22, 5581, 120 }, + [42] = { 85.7, 18.6, 5581, 120 }, + [43] = { 85, 18.3, 5581, 120 }, + [44] = { 83.2, 17.6, 5581, 120 }, + [45] = { 88.2, 17.4, 5581, 120 }, + [46] = { 88.8, 17.1, 5581, 120 }, + [47] = { 78.5, 16.6, 5581, 120 }, + [48] = { 79.5, 16.1, 5581, 120 }, + [49] = { 82.9, 15, 5581, 120 }, + [50] = { 86.2, 14.9, 5581, 120 }, + [51] = { 79.5, 14.8, 5581, 120 }, + [52] = { 89.3, 14.6, 5581, 120 }, + [53] = { 81.7, 13.1, 5581, 120 }, + [54] = { 79.9, 12, 5581, 120 }, + [55] = { 79, 11.1, 5581, 120 }, + [56] = { 79.3, 10.6, 5581, 120 }, + [57] = { 79.7, 10.3, 5581, 120 }, + [58] = { 88.1, 10.3, 5581, 120 }, + [59] = { 84.1, 10, 5581, 120 }, + [60] = { 82.3, 8.6, 5581, 120 }, + [61] = { 85.9, 8.6, 5581, 120 }, + [62] = { 82, 7.7, 5581, 120 }, + [63] = { 87.5, 7.3, 5581, 120 }, + [64] = { 84.1, 5.2, 5581, 120 }, + }, + ["lvl"] = "33-34", + }, + [62172] = { + ["coords"] = { + [1] = { 15.8, 64.9, 51, 120 }, + [2] = { 13.5, 64.4, 51, 120 }, + [3] = { 16.5, 63.6, 51, 120 }, + [4] = { 10.1, 62.9, 51, 120 }, + [5] = { 15.1, 62.3, 51, 120 }, + [6] = { 13.4, 62.2, 51, 120 }, + [7] = { 13.9, 62.2, 51, 120 }, + [8] = { 12.5, 61.3, 51, 120 }, + [9] = { 16.6, 60.2, 51, 120 }, + [10] = { 16.4, 59.6, 51, 120 }, + [11] = { 9.4, 58.8, 51, 120 }, + [12] = { 11.3, 58.1, 51, 120 }, + [13] = { 7.6, 56.7, 51, 120 }, + [14] = { 11.5, 40.4, 51, 120 }, + [15] = { 10.1, 40.2, 51, 120 }, + [16] = { 8.6, 34.9, 51, 120 }, + [17] = { 8.5, 30.3, 51, 120 }, + [18] = { 90.5, 34.2, 5581, 120 }, + [19] = { 88.9, 33.9, 5581, 120 }, + [20] = { 91, 33.3, 5581, 120 }, + [21] = { 86.6, 32.9, 5581, 120 }, + [22] = { 84.2, 32.8, 5581, 120 }, + [23] = { 90, 32.4, 5581, 120 }, + [24] = { 88.8, 32.4, 5581, 120 }, + [25] = { 89.2, 32.4, 5581, 120 }, + [26] = { 88.3, 31.8, 5581, 120 }, + [27] = { 91.1, 31, 5581, 120 }, + [28] = { 90.9, 30.6, 5581, 120 }, + [29] = { 86.1, 30, 5581, 120 }, + [30] = { 87.4, 29.5, 5581, 120 }, + [31] = { 74.4, 29.4, 5581, 120 }, + [32] = { 84.8, 28.6, 5581, 120 }, + [33] = { 74.5, 26.9, 5581, 120 }, + [34] = { 75.7, 25, 5581, 120 }, + [35] = { 79.7, 24.1, 5581, 120 }, + [36] = { 84.5, 17.6, 5581, 120 }, + [37] = { 87.6, 17.4, 5581, 120 }, + [38] = { 86.6, 17.2, 5581, 120 }, + [39] = { 84.6, 15.7, 5581, 120 }, + [40] = { 84.4, 15.4, 5581, 120 }, + [41] = { 85.5, 13.5, 5581, 120 }, + [42] = { 83, 13.4, 5581, 120 }, + [43] = { 83.8, 12.3, 5581, 120 }, + [44] = { 79.7, 10.6, 5581, 120 }, + [45] = { 79.3, 10.5, 5581, 120 }, + [46] = { 85.5, 10.4, 5581, 120 }, + [47] = { 81.6, 9.8, 5581, 120 }, + [48] = { 81.9, 9.4, 5581, 120 }, + [49] = { 83.2, 7.8, 5581, 120 }, + [50] = { 84.8, 5.5, 5581, 120 }, + [51] = { 84.7, 4.7, 5581, 120 }, + }, + ["lvl"] = "33-34", + }, + [62173] = { + ["coords"] = { + [1] = { 15.2, 63.6, 51, 120 }, + [2] = { 12.5, 63.6, 51, 120 }, + [3] = { 16.5, 62.4, 51, 120 }, + [4] = { 16.3, 61.7, 51, 120 }, + [5] = { 14.2, 61.4, 51, 120 }, + [6] = { 10.8, 60.4, 51, 120 }, + [7] = { 13, 60, 51, 120 }, + [8] = { 14.6, 59.1, 51, 120 }, + [9] = { 16.1, 57.9, 51, 120 }, + [10] = { 8, 39.7, 51, 120 }, + [11] = { 9, 39.5, 51, 120 }, + [12] = { 90.1, 33.3, 5581, 120 }, + [13] = { 88.2, 33.3, 5581, 120 }, + [14] = { 91, 32.5, 5581, 120 }, + [15] = { 90.8, 32, 5581, 120 }, + [16] = { 89.4, 31.8, 5581, 120 }, + [17] = { 87.1, 31.1, 5581, 120 }, + [18] = { 88.6, 30.9, 5581, 120 }, + [19] = { 89.7, 30.3, 5581, 120 }, + [20] = { 90.7, 29.4, 5581, 120 }, + [21] = { 84.1, 19.3, 5581, 120 }, + [22] = { 85.1, 16.8, 5581, 120 }, + [23] = { 85.9, 16.7, 5581, 120 }, + [24] = { 84.3, 14.9, 5581, 120 }, + [25] = { 84.2, 13, 5581, 120 }, + [26] = { 84, 12.3, 5581, 120 }, + [27] = { 82, 9.1, 5581, 120 }, + [28] = { 85.4, 8.9, 5581, 120 }, + [29] = { 84.4, 6.9, 5581, 120 }, + }, + ["lvl"] = "33-34", + }, + [62174] = { + ["coords"] = { + [1] = { 11.3, 39.6, 51, 300 }, + [2] = { 87.4, 16.8, 5581, 300 }, + }, + ["lvl"] = "33", + }, + [62175] = { + ["coords"] = { + [1] = { 27.4, 93.5, 1, 120 }, + [2] = { 26.8, 93.4, 1, 120 }, + [3] = { 3.2, 28.4, 46, 120 }, + [4] = { 5.7, 27.8, 46, 120 }, + [5] = { 3.8, 26.1, 46, 120 }, + [6] = { 5.7, 24.5, 46, 120 }, + [7] = { 8.7, 24.4, 46, 120 }, + [8] = { 6.6, 23.2, 46, 120 }, + [9] = { 3.9, 22.6, 46, 120 }, + [10] = { 10.9, 20.8, 46, 120 }, + [11] = { 11, 19.6, 46, 120 }, + [12] = { 80.7, 58.4, 5581, 120 }, + [13] = { 83.1, 57.8, 5581, 120 }, + [14] = { 81.4, 56.2, 5581, 120 }, + [15] = { 83.1, 54.9, 5581, 120 }, + [16] = { 85.8, 54.7, 5581, 120 }, + [17] = { 83.9, 53.7, 5581, 120 }, + [18] = { 81.4, 53.1, 5581, 120 }, + [19] = { 87.8, 51.5, 5581, 120 }, + [20] = { 87.8, 50.4, 5581, 120 }, + [21] = { 82.4, 44, 5581, 120 }, + [22] = { 78.5, 40.8, 5581, 120 }, + [23] = { 77.4, 40.7, 5581, 120 }, + [24] = { 82, 40.1, 5581, 120 }, + [25] = { 78.6, 39.1, 5581, 120 }, + [26] = { 82.9, 36.2, 5581, 120 }, + [27] = { 75.2, 35.5, 5581, 120 }, + [28] = { 77.5, 34.4, 5581, 120 }, + [29] = { 76.5, 34.3, 5581, 120 }, + [30] = { 74.9, 32.2, 5581, 120 }, + [31] = { 54.2, 32.1, 5581, 120 }, + [32] = { 73.3, 31.4, 5581, 120 }, + [33] = { 55.3, 31.2, 5581, 120 }, + [34] = { 77.3, 29.7, 5581, 120 }, + [35] = { 55.7, 28.8, 5581, 120 }, + [36] = { 54.9, 28.6, 5581, 120 }, + }, + ["lvl"] = "33-34", + }, + [62176] = { + ["coords"] = { + [1] = { 57.3, 62.6, 5581, 300 }, + [2] = { 57.8, 62.5, 5581, 300 }, + [3] = { 58.1, 62.3, 5581, 300 }, + [4] = { 55.9, 62.2, 5581, 300 }, + [5] = { 57.1, 62.2, 5581, 300 }, + [6] = { 58.5, 61.9, 5581, 300 }, + [7] = { 57.8, 61.8, 5581, 300 }, + [8] = { 58.4, 61.7, 5581, 300 }, + [9] = { 58, 61.4, 5581, 300 }, + [10] = { 58.2, 61.1, 5581, 300 }, + [11] = { 59.2, 60.5, 5581, 300 }, + [12] = { 56.6, 60.3, 5581, 300 }, + [13] = { 57.4, 60.2, 5581, 300 }, + [14] = { 58.3, 60.2, 5581, 300 }, + [15] = { 55.7, 60.2, 5581, 300 }, + [16] = { 58.2, 59.2, 5581, 300 }, + [17] = { 59, 59.2, 5581, 300 }, + [18] = { 56, 59.2, 5581, 300 }, + [19] = { 57.4, 58.9, 5581, 300 }, + [20] = { 56.7, 58.7, 5581, 300 }, + [21] = { 55.4, 57.8, 5581, 300 }, + [22] = { 58.4, 57.8, 5581, 300 }, + [23] = { 56.1, 57.8, 5581, 300 }, + [24] = { 57.7, 57.6, 5581, 300 }, + [25] = { 56.9, 57.6, 5581, 300 }, + [26] = { 56.8, 56.5, 5581, 300 }, + [27] = { 57.6, 56.1, 5581, 300 }, + }, + ["lvl"] = "28-29", + }, + [62177] = { + ["coords"] = { + [1] = { 28, 94, 1, 300 }, + [2] = { 25, 93.2, 1, 300 }, + [3] = { 25.9, 92.8, 1, 300 }, + [4] = { 5.8, 28.6, 46, 300 }, + [5] = { 5.9, 26.8, 46, 300 }, + [6] = { 5.5, 25.7, 46, 300 }, + [7] = { 8.5, 23.2, 46, 300 }, + [8] = { 7.3, 22.7, 46, 300 }, + [9] = { 8.6, 21.8, 46, 300 }, + [10] = { 10.7, 21.8, 46, 300 }, + [11] = { 83.1, 58.5, 5581, 300 }, + [12] = { 83.2, 56.9, 5581, 300 }, + [13] = { 82.9, 55.9, 5581, 300 }, + [14] = { 85.6, 53.6, 5581, 300 }, + [15] = { 84.5, 53.2, 5581, 300 }, + [16] = { 85.7, 52.4, 5581, 300 }, + [17] = { 87.5, 52.3, 5581, 300 }, + [18] = { 82.9, 42.2, 5581, 300 }, + [19] = { 79, 41.7, 5581, 300 }, + [20] = { 77.7, 39.9, 5581, 300 }, + [21] = { 82.9, 37.2, 5581, 300 }, + [22] = { 82.2, 35.5, 5581, 300 }, + [23] = { 76.1, 35.3, 5581, 300 }, + [24] = { 78.3, 34.3, 5581, 300 }, + [25] = { 74.9, 34.3, 5581, 300 }, + [26] = { 74, 32.2, 5581, 300 }, + [27] = { 54.3, 31.7, 5581, 300 }, + [28] = { 54.3, 31.5, 5581, 300 }, + [29] = { 55.5, 30.9, 5581, 300 }, + [30] = { 78, 30.8, 5581, 300 }, + [31] = { 56.6, 29.5, 5581, 300 }, + [32] = { 52, 28.3, 5581, 300 }, + [33] = { 53.4, 27.7, 5581, 300 }, + }, + ["lvl"] = "34-35", + }, + [62178] = { + ["coords"] = { + [1] = { 26.4, 92.7, 1, 300 }, + [2] = { 4.7, 28.4, 46, 300 }, + [3] = { 5.6, 27.9, 46, 300 }, + [4] = { 5, 26.9, 46, 300 }, + [5] = { 4.3, 23.8, 46, 300 }, + [6] = { 7.7, 23.8, 46, 300 }, + [7] = { 5.9, 22.3, 46, 300 }, + [8] = { 10.2, 22.1, 46, 300 }, + [9] = { 8.4, 20.9, 46, 300 }, + [10] = { 9.3, 20.1, 46, 300 }, + [11] = { 10.3, 19.9, 46, 300 }, + [12] = { 82.2, 58.3, 5581, 300 }, + [13] = { 82.9, 57.9, 5581, 300 }, + [14] = { 82.4, 57, 5581, 300 }, + [15] = { 81.8, 54.2, 5581, 300 }, + [16] = { 84.9, 54.2, 5581, 300 }, + [17] = { 83.2, 52.8, 5581, 300 }, + [18] = { 87.2, 52.6, 5581, 300 }, + [19] = { 85.5, 51.5, 5581, 300 }, + [20] = { 86.3, 50.8, 5581, 300 }, + [21] = { 87.2, 50.7, 5581, 300 }, + [22] = { 81.9, 45.1, 5581, 300 }, + [23] = { 82.7, 44.7, 5581, 300 }, + [24] = { 83, 42, 5581, 300 }, + [25] = { 82.8, 40.4, 5581, 300 }, + [26] = { 79, 38.1, 5581, 300 }, + [27] = { 81.6, 35, 5581, 300 }, + [28] = { 75.4, 34.3, 5581, 300 }, + [29] = { 77.8, 33.1, 5581, 300 }, + [30] = { 54.1, 32.8, 5581, 300 }, + [31] = { 75.8, 32.7, 5581, 300 }, + [32] = { 54, 32.1, 5581, 300 }, + [33] = { 54.6, 31.9, 5581, 300 }, + [34] = { 54.7, 31.3, 5581, 300 }, + [35] = { 53.3, 31.1, 5581, 300 }, + [36] = { 53.4, 30.6, 5581, 300 }, + [37] = { 53.8, 30.4, 5581, 300 }, + [38] = { 76.5, 30.1, 5581, 300 }, + [39] = { 54.2, 27.6, 5581, 300 }, + }, + ["lvl"] = "34-35", + }, + [62179] = { + ["coords"] = { + [1] = { 22.8, 93.6, 1, 300 }, + [2] = { 22.8, 93.4, 1, 300 }, + [3] = { 25.7, 92.8, 1, 300 }, + [4] = { 21.1, 92.3, 1, 300 }, + [5] = { 5.3, 28.9, 46, 300 }, + [6] = { 6, 27, 46, 300 }, + [7] = { 4.5, 25.3, 46, 300 }, + [8] = { 4.8, 23.3, 46, 300 }, + [9] = { 3.5, 19.7, 46, 300 }, + [10] = { 73.8, 68.7, 5581, 300 }, + [11] = { 76.2, 65.9, 5581, 300 }, + [12] = { 74.9, 65.8, 5581, 300 }, + [13] = { 71.8, 65.8, 5581, 300 }, + [14] = { 75.8, 63.4, 5581, 300 }, + [15] = { 72.5, 63.2, 5581, 300 }, + [16] = { 77.3, 62.4, 5581, 300 }, + [17] = { 75.4, 61.1, 5581, 300 }, + [18] = { 82.7, 58.8, 5581, 300 }, + [19] = { 83.3, 57.1, 5581, 300 }, + [20] = { 79.9, 55.8, 5581, 300 }, + [21] = { 81.9, 55.6, 5581, 300 }, + [22] = { 82.3, 53.7, 5581, 300 }, + [23] = { 79.6, 52.3, 5581, 300 }, + [24] = { 81.1, 50.5, 5581, 300 }, + [25] = { 82.5, 44.1, 5581, 300 }, + [26] = { 77.4, 42.1, 5581, 300 }, + [27] = { 79.2, 41.5, 5581, 300 }, + [28] = { 82.9, 40.9, 5581, 300 }, + [29] = { 79.5, 39.4, 5581, 300 }, + [30] = { 82.2, 36.5, 5581, 300 }, + [31] = { 51.9, 34.5, 5581, 300 }, + [32] = { 77.2, 33.7, 5581, 300 }, + [33] = { 46.3, 33.6, 5581, 300 }, + [34] = { 48.8, 33.1, 5581, 300 }, + [35] = { 51.9, 32.7, 5581, 300 }, + [36] = { 51.8, 32.5, 5581, 300 }, + [37] = { 54.5, 32.2, 5581, 300 }, + [38] = { 53.3, 31.8, 5581, 300 }, + [39] = { 77.3, 31.7, 5581, 300 }, + [40] = { 50.7, 31.3, 5581, 300 }, + [41] = { 55.1, 31.1, 5581, 300 }, + [42] = { 74.4, 30.8, 5581, 300 }, + [43] = { 46.4, 30.4, 5581, 300 }, + [44] = { 48.7, 28.9, 5581, 300 }, + [45] = { 48.7, 28.6, 5581, 300 }, + [46] = { 53.1, 27.7, 5581, 300 }, + [47] = { 46.2, 27, 5581, 300 }, + }, + ["lvl"] = "33-34", + }, + [62180] = { + ["coords"] = { + [1] = { 75.8, 34, 5581, 600 }, + }, + ["lvl"] = "35", + ["rnk"] = "1", + }, + [62181] = { + ["coords"] = { + [1] = { 54.2, 32.4, 5581, 600 }, + }, + ["lvl"] = "35", + ["rnk"] = "1", + }, + [62182] = { + ["coords"] = { + [1] = { 6.4, 28.3, 46, 600 }, + [2] = { 83.7, 58.2, 5581, 600 }, + }, + ["lvl"] = "35", + ["rnk"] = "1", + }, + [62183] = { + ["coords"] = { + [1] = { 40.8, 67.8, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [62184] = { + ["coords"] = { + [1] = { 41.4, 68.8, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "38", + }, + [62185] = { + ["coords"] = { + [1] = { 42.9, 68.4, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "26", + }, + [62186] = { + ["coords"] = { + [1] = { 39.9, 55.6, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [62187] = { + ["coords"] = { + [1] = { 39.9, 56.2, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [62188] = { + ["coords"] = { + [1] = { 30.8, 91.3, 1, 172800 }, + [2] = { 60.9, 25.4, 5581, 172800 }, + }, + ["lvl"] = "35", + ["rnk"] = "2", + }, + [62189] = { + ["coords"] = { + [1] = { 67.9, 69.9, 5581, 50400 }, + }, + ["lvl"] = "34", + ["rnk"] = "4", + }, + [62190] = { + ["coords"] = { + [1] = { 27.9, 29.1, 5581, 50400 }, + }, + ["lvl"] = "34", + ["rnk"] = "4", + }, + [62191] = { + ["coords"] = { + [1] = { 75.3, 73.3, 5581, 50400 }, + }, + ["lvl"] = "34", + ["rnk"] = "4", + }, + [62192] = { + ["coords"] = { + [1] = { 34.9, 78.5, 5581, 70727 }, + }, + ["lvl"] = "33", + ["rnk"] = "4", + }, + [62193] = { + ["coords"] = { + [1] = { 37.7, 37.1, 5581, 50400 }, + }, + ["lvl"] = "33", + ["rnk"] = "4", + }, + [62194] = { + ["coords"] = { + [1] = { 49.1, 73.1, 406, 120 }, + [2] = { 48.6, 72.5, 406, 120 }, + [3] = { 49.2, 72.2, 406, 120 }, + [4] = { 47.8, 72.2, 406, 120 }, + [5] = { 47.1, 71.8, 406, 120 }, + [6] = { 48.2, 71.7, 406, 120 }, + [7] = { 49.3, 71.2, 406, 120 }, + [8] = { 47.5, 71.2, 406, 120 }, + [9] = { 51.1, 70.9, 406, 120 }, + [10] = { 51.7, 70.7, 406, 120 }, + [11] = { 50.8, 70.6, 406, 120 }, + [12] = { 48.1, 70.5, 406, 120 }, + [13] = { 50.4, 70.5, 406, 120 }, + [14] = { 49.5, 70.4, 406, 120 }, + [15] = { 48.6, 70, 406, 120 }, + [16] = { 50.5, 69.9, 406, 120 }, + [17] = { 47.3, 69.8, 406, 120 }, + [18] = { 50.1, 69.8, 406, 120 }, + [19] = { 47.9, 69.8, 406, 120 }, + [20] = { 51.6, 69.6, 406, 120 }, + [21] = { 51.2, 69.6, 406, 120 }, + [22] = { 49.3, 69.5, 406, 120 }, + [23] = { 48.4, 69.3, 406, 120 }, + [24] = { 46.8, 69.2, 406, 120 }, + [25] = { 51.7, 69.1, 406, 120 }, + [26] = { 52, 69, 406, 120 }, + [27] = { 48.3, 69, 406, 120 }, + [28] = { 48.8, 68.8, 406, 120 }, + [29] = { 51.1, 68.7, 406, 120 }, + [30] = { 51.6, 68.5, 406, 120 }, + [31] = { 52, 68.5, 406, 120 }, + [32] = { 49.2, 68.2, 406, 120 }, + [33] = { 50.8, 67.7, 406, 120 }, + [34] = { 51.7, 67.6, 406, 120 }, + [35] = { 49.5, 67.5, 406, 120 }, + }, + ["lvl"] = "24-25", + }, + [62195] = { + ["coords"] = { + [1] = { 48.6, 71.1, 406, 120 }, + }, + ["lvl"] = "26", + }, + [62196] = { + ["coords"] = { + [1] = { 50.2, 65.9, 406, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [62197] = { + ["coords"] = { + [1] = { 50.3, 66, 406, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [62198] = { + ["coords"] = { + [1] = { 50.3, 65.8, 406, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [62199] = { + ["coords"] = { + [1] = { 86, 50, 1, 300 }, + [2] = { 6.7, 72.9, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [62200] = { + ["coords"] = { + [1] = { 4.1, 92, 5602, 300 }, + }, + ["lvl"] = "11", + ["rnk"] = "1", + }, + [62201] = { + ["coords"] = { + [1] = { 62.6, 38.2, 17, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [62202] = { + ["coords"] = { + [1] = { 62.8, 38.1, 17, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [62203] = { + ["coords"] = { + [1] = { 62.9, 38.1, 17, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [62204] = { + ["coords"] = { + [1] = { 62.6, 38.4, 17, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [62205] = { + ["coords"] = { + [1] = { 62.5, 38.2, 17, 120 }, + [2] = { 62.7, 37.9, 17, 120 }, + [3] = { 62.4, 37.8, 17, 120 }, + [4] = { 60.9, 74.3, 1519, 120 }, + [5] = { 50.7, 70, 1637, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [62206] = { + ["coords"] = { + [1] = { 62.5, 38.3, 17, 120 }, + [2] = { 62.5, 38.2, 17, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [62207] = { + ["coords"] = { + [1] = { 44.6, 39.7, 440, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [62208] = { + ["coords"] = { + [1] = { 63, 38, 17, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [62209] = { + ["coords"] = { + [1] = { 40.5, 78.5, 41, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [62210] = { + ["coords"] = { + [1] = { 50.2, 46.8, 5602, 300 }, + [2] = { 49.7, 46.1, 5602, 300 }, + [3] = { 50.5, 44.4, 5602, 120 }, + [4] = { 43.8, 44.2, 5602, 120 }, + [5] = { 43.5, 44, 5602, 120 }, + [6] = { 44.8, 43.4, 5602, 120 }, + [7] = { 52.4, 43.4, 5602, 120 }, + [8] = { 51.7, 43.1, 5602, 120 }, + [9] = { 45.7, 42.5, 5602, 120 }, + [10] = { 52.8, 42.3, 5602, 120 }, + [11] = { 45.4, 42.2, 5602, 120 }, + [12] = { 42.8, 42, 5602, 120 }, + [13] = { 51.8, 42, 5602, 120 }, + [14] = { 52.1, 41.8, 5602, 120 }, + [15] = { 46.3, 41.5, 5602, 120 }, + [16] = { 46.6, 41.5, 5602, 120 }, + [17] = { 51.9, 41.4, 5602, 120 }, + [18] = { 45.6, 41.3, 5602, 120 }, + [19] = { 47, 41.1, 5602, 120 }, + [20] = { 44.1, 41, 5602, 120 }, + [21] = { 51.4, 40.1, 5602, 120 }, + [22] = { 43, 39.6, 5602, 120 }, + [23] = { 44.5, 31.8, 5602, 120 }, + [24] = { 44.9, 31.2, 5602, 120 }, + [25] = { 44.9, 30.1, 5602, 120 }, + }, + ["lvl"] = "32-33", + }, + [62211] = { + ["coords"] = { + [1] = { 51.4, 44.4, 5602, 120 }, + [2] = { 44.1, 44.3, 5602, 120 }, + [3] = { 43.3, 43.2, 5602, 120 }, + [4] = { 46, 42.9, 5602, 120 }, + [5] = { 52, 42.2, 5602, 120 }, + [6] = { 46.1, 41.8, 5602, 120 }, + [7] = { 51.9, 41.8, 5602, 120 }, + [8] = { 46.2, 40.9, 5602, 120 }, + [9] = { 51.9, 40.8, 5602, 120 }, + [10] = { 50.4, 40.6, 5602, 120 }, + [11] = { 41.7, 40.5, 5602, 120 }, + [12] = { 43.5, 40.4, 5602, 120 }, + [13] = { 52.4, 39.9, 5602, 120 }, + [14] = { 45.3, 31.8, 5602, 120 }, + [15] = { 44.4, 30.7, 5602, 120 }, + [16] = { 44.6, 29.6, 5602, 120 }, + }, + ["lvl"] = "32-33", + }, + [62212] = { + ["coords"] = { + [1] = { 96.5, 65.2, 11, 120 }, + [2] = { 96.9, 56.2, 11, 120 }, + [3] = { 43.8, 43.7, 5602, 120 }, + [4] = { 51, 43.5, 5602, 120 }, + [5] = { 45.4, 42.6, 5602, 120 }, + [6] = { 51.4, 41.4, 5602, 120 }, + [7] = { 45, 40.8, 5602, 120 }, + [8] = { 52.5, 40.8, 5602, 120 }, + [9] = { 51.2, 40.8, 5602, 120 }, + [10] = { 46.6, 40.7, 5602, 120 }, + [11] = { 42.4, 40.5, 5602, 120 }, + [12] = { 41.7, 39.9, 5602, 120 }, + [13] = { 50.5, 39.9, 5602, 120 }, + [14] = { 55.7, 39.5, 5602, 120 }, + [15] = { 47, 38.3, 5602, 120 }, + [16] = { 48.1, 38, 5602, 120 }, + [17] = { 45.4, 37.8, 5602, 120 }, + [18] = { 59.3, 37.1, 5602, 120 }, + [19] = { 51.1, 37, 5602, 120 }, + [20] = { 44, 35.2, 5602, 120 }, + [21] = { 44.7, 32.7, 5602, 120 }, + [22] = { 47.5, 31.8, 5602, 120 }, + [23] = { 43.6, 31.6, 5602, 120 }, + [24] = { 45.4, 30.4, 5602, 120 }, + [25] = { 42.8, 29.1, 5602, 120 }, + [26] = { 47.4, 28.9, 5602, 120 }, + [27] = { 44.1, 27.3, 5602, 120 }, + [28] = { 43.8, 25, 5602, 120 }, + [29] = { 43.1, 22.1, 5602, 120 }, + [30] = { 47.4, 20.7, 5602, 120 }, + }, + ["lvl"] = "31-33", + }, + [62213] = { + ["coords"] = { + [1] = { 92.9, 52.6, 11, 300 }, + [2] = { 93.9, 52.3, 11, 300 }, + [3] = { 94.8, 52.2, 11, 300 }, + [4] = { 94.3, 51.6, 11, 300 }, + [5] = { 93.5, 51.6, 11, 300 }, + [6] = { 96.1, 51.5, 11, 300 }, + [7] = { 95.3, 51.4, 11, 300 }, + [8] = { 92.4, 51.4, 11, 300 }, + [9] = { 92.9, 51.3, 11, 300 }, + [10] = { 92.9, 51.2, 11, 300 }, + [11] = { 96.1, 51.1, 11, 300 }, + [12] = { 93, 50.7, 11, 300 }, + [13] = { 92.4, 50.7, 11, 300 }, + [14] = { 94.2, 50.6, 11, 300 }, + [15] = { 94.7, 50.6, 11, 300 }, + [16] = { 93.9, 50.4, 11, 300 }, + [17] = { 92.9, 50.3, 11, 300 }, + [18] = { 48.7, 22, 5602, 300 }, + [19] = { 49.9, 21.5, 5602, 300 }, + [20] = { 49.6, 21.5, 5602, 300 }, + [21] = { 50, 20.9, 5602, 300 }, + [22] = { 49.8, 20.7, 5602, 300 }, + [23] = { 52, 19.6, 5602, 300 }, + [24] = { 48.9, 19.4, 5602, 300 }, + [25] = { 40.1, 19.4, 5602, 300 }, + [26] = { 40.8, 19.1, 5602, 300 }, + [27] = { 49.9, 19, 5602, 300 }, + [28] = { 41.6, 19, 5602, 300 }, + [29] = { 50, 19, 5602, 300 }, + [30] = { 41.2, 18.6, 5602, 300 }, + [31] = { 40.6, 18.6, 5602, 300 }, + [32] = { 42.5, 18.5, 5602, 300 }, + [33] = { 41.9, 18.4, 5602, 300 }, + [34] = { 39.7, 18.4, 5602, 300 }, + [35] = { 40.1, 18.4, 5602, 300 }, + [36] = { 40.1, 18.3, 5602, 300 }, + [37] = { 42.5, 18.2, 5602, 300 }, + [38] = { 40.1, 17.9, 5602, 300 }, + [39] = { 39.7, 17.9, 5602, 300 }, + [40] = { 41.1, 17.8, 5602, 300 }, + [41] = { 51.9, 17.8, 5602, 300 }, + [42] = { 51.3, 17.8, 5602, 300 }, + [43] = { 41.5, 17.8, 5602, 300 }, + [44] = { 40.8, 17.7, 5602, 300 }, + [45] = { 40.1, 17.6, 5602, 300 }, + [46] = { 51.1, 16.3, 5602, 300 }, + }, + ["lvl"] = "34-35", + }, + [62214] = { + ["coords"] = { + [1] = { 92.9, 52.5, 11, 300 }, + [2] = { 92.8, 52.2, 11, 300 }, + [3] = { 94.8, 52, 11, 300 }, + [4] = { 92.8, 51.4, 11, 300 }, + [5] = { 96.2, 51.3, 11, 300 }, + [6] = { 95.2, 51.1, 11, 300 }, + [7] = { 94.1, 51.1, 11, 300 }, + [8] = { 94.7, 51, 11, 300 }, + [9] = { 95.2, 50.8, 11, 300 }, + [10] = { 94.7, 50.7, 11, 300 }, + [11] = { 92.8, 50.2, 11, 300 }, + [12] = { 49.9, 21.6, 5602, 300 }, + [13] = { 49.4, 21.3, 5602, 300 }, + [14] = { 49.8, 21.2, 5602, 300 }, + [15] = { 48.2, 21.1, 5602, 300 }, + [16] = { 49.8, 21.1, 5602, 300 }, + [17] = { 50.1, 20.7, 5602, 300 }, + [18] = { 51, 20.1, 5602, 300 }, + [19] = { 50.4, 19.7, 5602, 300 }, + [20] = { 40.1, 19.3, 5602, 300 }, + [21] = { 40, 19, 5602, 300 }, + [22] = { 41.6, 18.9, 5602, 300 }, + [23] = { 49.9, 18.8, 5602, 300 }, + [24] = { 42.9, 18.5, 5602, 300 }, + [25] = { 40, 18.4, 5602, 300 }, + [26] = { 42.6, 18.4, 5602, 300 }, + [27] = { 41.9, 18.2, 5602, 300 }, + [28] = { 41, 18.2, 5602, 300 }, + [29] = { 41.5, 18.1, 5602, 300 }, + [30] = { 41.9, 17.9, 5602, 300 }, + [31] = { 41.5, 17.9, 5602, 300 }, + [32] = { 40, 17.5, 5602, 300 }, + [33] = { 48.8, 16.4, 5602, 300 }, + [34] = { 49.4, 16.4, 5602, 300 }, + }, + ["lvl"] = "34-35", + }, + [62215] = { + ["coords"] = { + [1] = { 97.4, 54.2, 11, 300 }, + [2] = { 94.1, 52.2, 11, 300 }, + [3] = { 95.1, 51.9, 11, 300 }, + [4] = { 93.4, 50.5, 11, 300 }, + [5] = { 93.9, 48.9, 11, 300 }, + [6] = { 49.3, 21.6, 5602, 300 }, + [7] = { 43.6, 20.6, 5602, 300 }, + [8] = { 45.3, 19.9, 5602, 300 }, + [9] = { 51.4, 19.2, 5602, 300 }, + [10] = { 41, 19, 5602, 300 }, + [11] = { 44.3, 18.8, 5602, 300 }, + [12] = { 41.8, 18.8, 5602, 300 }, + [13] = { 43.6, 18.5, 5602, 300 }, + [14] = { 52.1, 18.1, 5602, 300 }, + [15] = { 52.1, 17.9, 5602, 300 }, + [16] = { 44.9, 17.8, 5602, 300 }, + [17] = { 40.5, 17.8, 5602, 300 }, + [18] = { 49.1, 17.3, 5602, 300 }, + [19] = { 44.9, 16.9, 5602, 300 }, + [20] = { 44.4, 16.9, 5602, 300 }, + [21] = { 49, 16.8, 5602, 300 }, + [22] = { 40.8, 16.5, 5602, 300 }, + [23] = { 51.4, 13.4, 5602, 300 }, + [24] = { 43.6, 13, 5602, 300 }, + [25] = { 42.2, 12.6, 5602, 300 }, + [26] = { 42.6, 12.6, 5602, 300 }, + [27] = { 46.7, 12.6, 5602, 300 }, + [28] = { 42.5, 12.1, 5602, 300 }, + [29] = { 46.6, 11.5, 5602, 300 }, + [30] = { 50.3, 11, 5602, 300 }, + [31] = { 50.4, 10.9, 5602, 300 }, + [32] = { 50.2, 10.6, 5602, 300 }, + [33] = { 50, 10.5, 5602, 300 }, + [34] = { 50.3, 10.5, 5602, 300 }, + [35] = { 50.6, 10.5, 5602, 300 }, + [36] = { 50.1, 10.1, 5602, 300 }, + [37] = { 50.5, 9.6, 5602, 300 }, + [38] = { 51.2, 9.3, 5602, 300 }, + }, + ["lvl"] = "33-34", + }, + [62216] = { + ["coords"] = { + [1] = { 95.2, 52.2, 11, 300 }, + [2] = { 94.7, 52.2, 11, 300 }, + [3] = { 93.4, 51.4, 11, 300 }, + [4] = { 92.8, 51.2, 11, 300 }, + [5] = { 94.7, 50.6, 11, 300 }, + [6] = { 94, 49, 11, 300 }, + [7] = { 41.8, 19, 5602, 300 }, + [8] = { 41.4, 19, 5602, 300 }, + [9] = { 40.5, 18.4, 5602, 300 }, + [10] = { 40, 18.3, 5602, 300 }, + [11] = { 50.8, 18, 5602, 300 }, + [12] = { 41.4, 17.8, 5602, 300 }, + [13] = { 52.2, 17.6, 5602, 300 }, + [14] = { 44.3, 17.3, 5602, 300 }, + [15] = { 44.5, 17.1, 5602, 300 }, + [16] = { 43.7, 16.9, 5602, 300 }, + [17] = { 49, 16.9, 5602, 300 }, + [18] = { 40.9, 16.6, 5602, 300 }, + [19] = { 44.3, 14.2, 5602, 300 }, + [20] = { 51.3, 13.8, 5602, 300 }, + [21] = { 42.8, 12.8, 5602, 300 }, + [22] = { 42.7, 12.4, 5602, 300 }, + [23] = { 47.2, 12.4, 5602, 300 }, + [24] = { 43.3, 11.7, 5602, 300 }, + [25] = { 49.9, 11.3, 5602, 300 }, + [26] = { 50.7, 10.9, 5602, 300 }, + [27] = { 50.5, 10.5, 5602, 300 }, + [28] = { 49.8, 10.4, 5602, 300 }, + [29] = { 51.1, 10.3, 5602, 300 }, + [30] = { 50.5, 10.3, 5602, 300 }, + [31] = { 50.6, 10.3, 5602, 300 }, + [32] = { 50.8, 9.8, 5602, 300 }, + }, + ["lvl"] = "33-34", + }, + [62217] = { + ["coords"] = { + [1] = { 95, 51.9, 11, 120 }, + [2] = { 41.7, 18.8, 5602, 120 }, + }, + ["lvl"] = "36", + }, + [62218] = { + ["coords"] = { + [1] = { 49.7, 21.5, 5602, 120 }, + }, + ["lvl"] = "36", + }, + [62219] = { + ["coords"] = { + [1] = { 56.1, 11.4, 5602, 600 }, + }, + ["lvl"] = "39", + ["rnk"] = "1", + }, + [62220] = { + ["coords"] = { + [1] = { 54.3, 17.8, 5602, 600 }, + [2] = { 54.7, 16.9, 5602, 600 }, + [3] = { 53.8, 15.3, 5602, 600 }, + [4] = { 54.3, 15.1, 5602, 600 }, + [5] = { 55.5, 14.4, 5602, 600 }, + [6] = { 54.5, 13.7, 5602, 600 }, + [7] = { 52.7, 13.2, 5602, 600 }, + [8] = { 57.7, 13.1, 5602, 600 }, + [9] = { 55.5, 13, 5602, 600 }, + [10] = { 56.5, 12.9, 5602, 600 }, + [11] = { 53.6, 12.6, 5602, 600 }, + [12] = { 57.3, 12.6, 5602, 600 }, + [13] = { 55.1, 12.4, 5602, 600 }, + [14] = { 53.5, 11.7, 5602, 600 }, + [15] = { 55.6, 11.7, 5602, 600 }, + [16] = { 54, 11.3, 5602, 600 }, + }, + ["lvl"] = "37-38", + ["rnk"] = "1", + }, + [62221] = { + ["coords"] = { + [1] = { 55.1, 18, 5602, 600 }, + [2] = { 54, 15.3, 5602, 600 }, + [3] = { 55, 15.1, 5602, 600 }, + [4] = { 56.4, 15, 5602, 600 }, + [5] = { 55.9, 14.6, 5602, 600 }, + [6] = { 54, 13.5, 5602, 600 }, + [7] = { 55.6, 13, 5602, 600 }, + [8] = { 53.3, 12.9, 5602, 600 }, + [9] = { 57.1, 12.8, 5602, 600 }, + [10] = { 55.8, 12.5, 5602, 600 }, + [11] = { 55.7, 12.4, 5602, 600 }, + [12] = { 56.2, 12, 5602, 600 }, + [13] = { 55.6, 11.7, 5602, 600 }, + [14] = { 54.5, 11.6, 5602, 600 }, + [15] = { 54, 11.1, 5602, 600 }, + [16] = { 55.4, 10.7, 5602, 600 }, + }, + ["lvl"] = "36-37", + ["rnk"] = "1", + }, + [62222] = { + ["coords"] = { + [1] = { 55.7, 15.8, 5602, 600 }, + [2] = { 54.9, 15.2, 5602, 600 }, + [3] = { 54.1, 15.1, 5602, 600 }, + [4] = { 55.3, 14.8, 5602, 600 }, + [5] = { 53.2, 14.6, 5602, 600 }, + [6] = { 54.7, 14, 5602, 600 }, + [7] = { 55.7, 13.1, 5602, 600 }, + [8] = { 53.4, 12.8, 5602, 600 }, + [9] = { 57.3, 12.6, 5602, 600 }, + [10] = { 56.2, 12, 5602, 600 }, + [11] = { 56.2, 11.9, 5602, 600 }, + [12] = { 55.6, 11.7, 5602, 600 }, + [13] = { 54.4, 11.6, 5602, 600 }, + [14] = { 55, 11.4, 5602, 600 }, + [15] = { 54.5, 10.6, 5602, 600 }, + }, + ["lvl"] = "37-39", + ["rnk"] = "1", + }, + [62223] = { + ["coords"] = { + [1] = { 49.8, 67.5, 5602, 300 }, + [2] = { 48.5, 67.5, 5602, 300 }, + [3] = { 49.3, 66.9, 5602, 300 }, + [4] = { 49.4, 65.5, 5602, 300 }, + [5] = { 48.1, 65, 5602, 300 }, + [6] = { 47.6, 64.9, 5602, 300 }, + [7] = { 47.1, 64.5, 5602, 300 }, + [8] = { 48, 64, 5602, 300 }, + [9] = { 48.8, 63.8, 5602, 300 }, + [10] = { 49.3, 62.7, 5602, 300 }, + [11] = { 47.5, 62.4, 5602, 300 }, + [12] = { 48.8, 62.3, 5602, 300 }, + [13] = { 49.6, 61.4, 5602, 300 }, + [14] = { 48.2, 60.1, 5602, 300 }, + [15] = { 49.1, 60, 5602, 300 }, + [16] = { 48.2, 59.9, 5602, 300 }, + [17] = { 48.8, 59.6, 5602, 300 }, + [18] = { 49.2, 59.4, 5602, 300 }, + [19] = { 46.6, 59.3, 5602, 300 }, + [20] = { 46.6, 59.2, 5602, 300 }, + [21] = { 47, 58.8, 5602, 300 }, + [22] = { 48.4, 58.2, 5602, 300 }, + [23] = { 48.7, 57.8, 5602, 300 }, + [24] = { 46.9, 55.8, 5602, 300 }, + [25] = { 57.8, 55.6, 5602, 300 }, + [26] = { 49.4, 55.1, 5602, 300 }, + [27] = { 52.4, 52.5, 5602, 300 }, + }, + ["lvl"] = "31-33", + }, + [62224] = { + ["coords"] = { + [1] = { 49.4, 66.9, 5602, 300 }, + [2] = { 47.7, 66.1, 5602, 300 }, + [3] = { 47.7, 66, 5602, 300 }, + [4] = { 49.5, 65.5, 5602, 300 }, + [5] = { 48.9, 64.6, 5602, 300 }, + [6] = { 48.9, 64.5, 5602, 300 }, + [7] = { 47.9, 64, 5602, 300 }, + [8] = { 47.3, 63, 5602, 300 }, + [9] = { 49.8, 62.7, 5602, 300 }, + [10] = { 48.2, 62, 5602, 300 }, + [11] = { 48.7, 60.6, 5602, 300 }, + [12] = { 49.2, 59.3, 5602, 300 }, + [13] = { 48.1, 58.9, 5602, 300 }, + [14] = { 46.6, 58.1, 5602, 300 }, + }, + ["lvl"] = "33-34", + }, + [62225] = { + ["coords"] = { + [1] = { 55.1, 37.7, 5602, 300 }, + [2] = { 53.9, 37.4, 5602, 300 }, + [3] = { 55.3, 35.6, 5602, 300 }, + [4] = { 56.1, 35.4, 5602, 300 }, + [5] = { 55.4, 35.2, 5602, 300 }, + [6] = { 51.9, 34.2, 5602, 300 }, + [7] = { 52.7, 33.3, 5602, 300 }, + [8] = { 52.6, 33.1, 5602, 300 }, + [9] = { 54.2, 33, 5602, 300 }, + [10] = { 51.3, 32.5, 5602, 300 }, + [11] = { 53.5, 32.1, 5602, 300 }, + [12] = { 55, 31.8, 5602, 300 }, + [13] = { 56.4, 31.7, 5602, 300 }, + [14] = { 52.1, 30.5, 5602, 300 }, + [15] = { 55.4, 30.3, 5602, 300 }, + [16] = { 54.3, 30.2, 5602, 300 }, + [17] = { 52.6, 29.6, 5602, 300 }, + [18] = { 55.5, 29.5, 5602, 300 }, + [19] = { 55.5, 29.3, 5602, 300 }, + [20] = { 48.9, 27.2, 5602, 300 }, + [21] = { 50.5, 26.6, 5602, 300 }, + [22] = { 49.5, 26.4, 5602, 300 }, + [23] = { 52, 26.2, 5602, 300 }, + [24] = { 49.6, 26.1, 5602, 300 }, + [25] = { 57, 25.8, 5602, 300 }, + [26] = { 53.5, 23.9, 5602, 300 }, + [27] = { 56.1, 23.8, 5602, 300 }, + }, + ["lvl"] = "35-36", + }, + [62226] = { + ["coords"] = { + [1] = { 95.4, 68.5, 11, 300 }, + [2] = { 95.9, 65.9, 11, 300 }, + [3] = { 97.2, 63.7, 11, 300 }, + [4] = { 95.2, 56.2, 11, 300 }, + [5] = { 56.7, 65.2, 5602, 300 }, + [6] = { 57.7, 64.8, 5602, 300 }, + [7] = { 52.3, 63.9, 5602, 300 }, + [8] = { 50.6, 61.9, 5602, 300 }, + [9] = { 55.7, 61.4, 5602, 300 }, + [10] = { 54.7, 60.6, 5602, 300 }, + [11] = { 51, 60, 5602, 300 }, + [12] = { 57.6, 59.5, 5602, 300 }, + [13] = { 45.7, 59.1, 5602, 300 }, + [14] = { 50.4, 57.9, 5602, 300 }, + [15] = { 58.1, 57.3, 5602, 300 }, + [16] = { 45.2, 56.8, 5602, 300 }, + [17] = { 50.7, 55.3, 5602, 300 }, + [18] = { 45.8, 55.3, 5602, 300 }, + [19] = { 56.6, 55.1, 5602, 300 }, + [20] = { 54.1, 54.9, 5602, 300 }, + [21] = { 48.1, 54.6, 5602, 300 }, + [22] = { 58.4, 54.3, 5602, 300 }, + [23] = { 51.8, 53.8, 5602, 300 }, + [24] = { 46.6, 53.6, 5602, 300 }, + [25] = { 56.3, 52.8, 5602, 300 }, + [26] = { 48.2, 52.6, 5602, 300 }, + [27] = { 49.3, 51.9, 5602, 300 }, + [28] = { 47.1, 51.8, 5602, 300 }, + [29] = { 55.2, 51.5, 5602, 300 }, + [30] = { 51, 51.4, 5602, 300 }, + [31] = { 61.2, 51.3, 5602, 300 }, + [32] = { 45.4, 50.4, 5602, 300 }, + [33] = { 46.6, 50, 5602, 300 }, + [34] = { 61, 49.6, 5602, 300 }, + [35] = { 63.1, 49.2, 5602, 300 }, + [36] = { 62, 49.1, 5602, 300 }, + [37] = { 47.7, 48.9, 5602, 300 }, + [38] = { 62.4, 48.1, 5602, 300 }, + [39] = { 59.5, 47.7, 5602, 300 }, + [40] = { 58.8, 47.1, 5602, 300 }, + [41] = { 59.2, 45.9, 5602, 300 }, + [42] = { 48.7, 44.9, 5602, 300 }, + [43] = { 58.6, 44.8, 5602, 300 }, + [44] = { 64.4, 44.8, 5602, 300 }, + [45] = { 50.3, 43.6, 5602, 300 }, + [46] = { 57.7, 43.4, 5602, 300 }, + [47] = { 53.6, 43.2, 5602, 300 }, + [48] = { 47.7, 43.2, 5602, 300 }, + [49] = { 54.5, 43.2, 5602, 300 }, + [50] = { 48.4, 43.1, 5602, 300 }, + [51] = { 55.8, 42, 5602, 300 }, + [52] = { 55, 41.1, 5602, 300 }, + [53] = { 56.8, 40.3, 5602, 300 }, + [54] = { 53.3, 40.2, 5602, 300 }, + [55] = { 49.1, 39.8, 5602, 300 }, + [56] = { 54.6, 39.8, 5602, 300 }, + [57] = { 44.4, 39.5, 5602, 300 }, + [58] = { 48.2, 39.4, 5602, 300 }, + [59] = { 46.4, 38.9, 5602, 300 }, + [60] = { 50.5, 38.3, 5602, 300 }, + [61] = { 51.8, 38.2, 5602, 300 }, + [62] = { 49.8, 37.1, 5602, 300 }, + [63] = { 49.1, 37, 5602, 300 }, + [64] = { 47.6, 36.6, 5602, 300 }, + [65] = { 44.2, 36.5, 5602, 300 }, + [66] = { 45.6, 35.9, 5602, 300 }, + [67] = { 43.5, 34.6, 5602, 300 }, + [68] = { 44.5, 34.3, 5602, 300 }, + [69] = { 43.9, 33.4, 5602, 300 }, + [70] = { 46.8, 33.2, 5602, 300 }, + [71] = { 42, 31.6, 5602, 300 }, + [72] = { 43.2, 30.6, 5602, 300 }, + [73] = { 47.1, 30.1, 5602, 300 }, + [74] = { 42.4, 29.6, 5602, 300 }, + [75] = { 45.8, 28.2, 5602, 300 }, + [76] = { 43.4, 27.9, 5602, 300 }, + [77] = { 44.7, 27.6, 5602, 300 }, + [78] = { 44.5, 26, 5602, 300 }, + [79] = { 46.7, 24.8, 5602, 300 }, + [80] = { 47.5, 22.5, 5602, 300 }, + [81] = { 41.8, 22.1, 5602, 300 }, + [82] = { 45.4, 18.4, 5602, 300 }, + }, + ["lvl"] = "32-34", + }, + [62227] = { + ["coords"] = { + [1] = { 63.2, 77, 5602, 300 }, + [2] = { 62.3, 76.6, 5602, 300 }, + [3] = { 61.7, 75.1, 5602, 300 }, + [4] = { 59.3, 74, 5602, 300 }, + [5] = { 60.6, 73.8, 5602, 300 }, + [6] = { 54.3, 73.4, 5602, 300 }, + [7] = { 61.1, 72.9, 5602, 300 }, + [8] = { 57.5, 72.6, 5602, 300 }, + [9] = { 53.7, 72.2, 5602, 300 }, + [10] = { 56.6, 71.6, 5602, 300 }, + [11] = { 55.5, 71.3, 5602, 300 }, + [12] = { 52.3, 71.2, 5602, 300 }, + [13] = { 57.5, 70.8, 5602, 300 }, + [14] = { 50.5, 70.3, 5602, 300 }, + [15] = { 51.9, 69.5, 5602, 300 }, + [16] = { 52.6, 69.2, 5602, 300 }, + [17] = { 54.2, 68.5, 5602, 300 }, + [18] = { 48.9, 68.4, 5602, 300 }, + [19] = { 50.3, 68, 5602, 300 }, + [20] = { 54.9, 67.7, 5602, 300 }, + [21] = { 51.1, 67.6, 5602, 300 }, + [22] = { 50.5, 67.1, 5602, 300 }, + [23] = { 52.6, 66, 5602, 300 }, + [24] = { 51.3, 65, 5602, 300 }, + [25] = { 65, 41, 5602, 300 }, + [26] = { 58.4, 39.2, 5602, 300 }, + [27] = { 54.6, 38.3, 5602, 300 }, + [28] = { 64.5, 38.1, 5602, 300 }, + [29] = { 60.6, 38.1, 5602, 300 }, + [30] = { 61.5, 37.6, 5602, 300 }, + [31] = { 58.5, 37.2, 5602, 300 }, + [32] = { 57.5, 37, 5602, 300 }, + [33] = { 55.6, 36.8, 5602, 300 }, + [34] = { 63.5, 36.4, 5602, 300 }, + [35] = { 60.2, 36.3, 5602, 300 }, + [36] = { 59.1, 34.8, 5602, 300 }, + [37] = { 53.1, 34.4, 5602, 300 }, + [38] = { 54.1, 34.4, 5602, 300 }, + [39] = { 63.4, 33.9, 5602, 300 }, + [40] = { 55.8, 33.6, 5602, 300 }, + [41] = { 62.2, 33.5, 5602, 300 }, + [42] = { 59.7, 32.3, 5602, 300 }, + [43] = { 59.1, 31.6, 5602, 300 }, + [44] = { 49.9, 31.6, 5602, 300 }, + [45] = { 63.1, 31.5, 5602, 300 }, + [46] = { 61.5, 31.3, 5602, 300 }, + [47] = { 53.1, 30.9, 5602, 300 }, + [48] = { 49.2, 30.5, 5602, 300 }, + [49] = { 50.7, 30.5, 5602, 300 }, + [50] = { 56.6, 29.8, 5602, 300 }, + [51] = { 50.1, 29.4, 5602, 300 }, + [52] = { 57.7, 29, 5602, 300 }, + [53] = { 61.6, 28.5, 5602, 300 }, + [54] = { 58.6, 28.3, 5602, 300 }, + [55] = { 55.3, 27.8, 5602, 300 }, + [56] = { 51.5, 27.8, 5602, 300 }, + [57] = { 60, 27.5, 5602, 300 }, + [58] = { 56.5, 27.4, 5602, 300 }, + [59] = { 59.2, 27.1, 5602, 300 }, + [60] = { 49.9, 27.1, 5602, 300 }, + [61] = { 62.1, 27.1, 5602, 300 }, + [62] = { 55.2, 26.5, 5602, 300 }, + [63] = { 61.2, 25.8, 5602, 300 }, + [64] = { 52.4, 24.1, 5602, 300 }, + [65] = { 60.9, 23.9, 5602, 300 }, + [66] = { 57, 23.4, 5602, 300 }, + [67] = { 61.3, 22, 5602, 300 }, + [68] = { 61.4, 20.8, 5602, 300 }, + [69] = { 59.4, 20.1, 5602, 300 }, + [70] = { 56, 19.6, 5602, 300 }, + [71] = { 56.3, 18.6, 5602, 300 }, + [72] = { 58.5, 17.6, 5602, 300 }, + [73] = { 57.9, 16.3, 5602, 300 }, + [74] = { 58.2, 14.4, 5602, 300 }, + [75] = { 58.8, 12.8, 5602, 300 }, + [76] = { 59.8, 11.5, 5602, 300 }, + }, + ["lvl"] = "37-38", + }, + [62228] = { + ["coords"] = { + [1] = { 58.5, 67.5, 5602, 120 }, + [2] = { 63.6, 67.2, 5602, 120 }, + [3] = { 59.4, 66.9, 5602, 120 }, + [4] = { 59.9, 66.5, 5602, 120 }, + [5] = { 63.2, 66.1, 5602, 120 }, + [6] = { 57.9, 66, 5602, 120 }, + [7] = { 63.8, 65.8, 5602, 120 }, + [8] = { 59.2, 65.6, 5602, 120 }, + [9] = { 57.5, 64.9, 5602, 120 }, + [10] = { 60.6, 64.8, 5602, 120 }, + [11] = { 59.1, 64.4, 5602, 120 }, + [12] = { 64, 64.2, 5602, 120 }, + [13] = { 60.2, 64.2, 5602, 120 }, + [14] = { 63.3, 64, 5602, 120 }, + [15] = { 59.7, 63.9, 5602, 120 }, + [16] = { 63.1, 62.8, 5602, 120 }, + [17] = { 59.6, 62.7, 5602, 120 }, + [18] = { 61.1, 62.1, 5602, 120 }, + [19] = { 63.7, 61.9, 5602, 120 }, + [20] = { 60.6, 61.9, 5602, 120 }, + [21] = { 59.3, 61.8, 5602, 120 }, + [22] = { 59.7, 61.2, 5602, 120 }, + }, + ["lvl"] = "33-35", + }, + [62230] = { + ["coords"] = { + [1] = { 62.2, 71.3, 5602, 120 }, + [2] = { 63.8, 68.3, 5602, 120 }, + [3] = { 60.1, 68, 5602, 120 }, + [4] = { 62.3, 65.8, 5602, 120 }, + [5] = { 59.5, 65.7, 5602, 120 }, + [6] = { 62.9, 64.9, 5602, 120 }, + [7] = { 59.9, 64.9, 5602, 120 }, + [8] = { 58.5, 64.5, 5602, 120 }, + [9] = { 59.1, 63.3, 5602, 120 }, + }, + ["lvl"] = "34-35", + }, + [62231] = { + ["coords"] = { + [1] = { 60.4, 73, 5602, 120 }, + [2] = { 62.5, 72.2, 5602, 120 }, + [3] = { 60.6, 72, 5602, 120 }, + [4] = { 62, 71.8, 5602, 120 }, + [5] = { 62.4, 70.9, 5602, 120 }, + [6] = { 60.9, 70.8, 5602, 120 }, + [7] = { 60.1, 70.6, 5602, 120 }, + [8] = { 60.5, 70, 5602, 120 }, + [9] = { 61.5, 69.8, 5602, 120 }, + [10] = { 61.1, 69.8, 5602, 120 }, + [11] = { 61.3, 69.2, 5602, 120 }, + [12] = { 62, 68.6, 5602, 120 }, + [13] = { 61.8, 68.2, 5602, 120 }, + }, + ["lvl"] = "36-37", + }, + [62232] = { + ["coords"] = { + [1] = { 61.8, 72.4, 5602, 120 }, + [2] = { 58.9, 70.3, 5602, 120 }, + [3] = { 62, 69.7, 5602, 120 }, + [4] = { 63.6, 69.6, 5602, 120 }, + [5] = { 62.8, 69.4, 5602, 120 }, + [6] = { 59.1, 69, 5602, 120 }, + [7] = { 58.5, 68.8, 5602, 120 }, + [8] = { 61.1, 68.7, 5602, 120 }, + [9] = { 62.9, 68.4, 5602, 120 }, + [10] = { 59.3, 67.9, 5602, 120 }, + [11] = { 61.1, 67.2, 5602, 120 }, + [12] = { 62.1, 67.1, 5602, 120 }, + [13] = { 60.8, 66.2, 5602, 120 }, + [14] = { 58.6, 65.8, 5602, 120 }, + [15] = { 61.2, 65.2, 5602, 120 }, + [16] = { 60.3, 65.2, 5602, 120 }, + [17] = { 61.8, 65, 5602, 120 }, + [18] = { 61.9, 63.7, 5602, 120 }, + }, + ["lvl"] = "35-36", + }, + [62233] = { + ["coords"] = { + [1] = { 60.3, 73.4, 5602, 120 }, + [2] = { 61.1, 72, 5602, 120 }, + [3] = { 59.8, 71.7, 5602, 120 }, + [4] = { 61.5, 71.7, 5602, 120 }, + [5] = { 60.5, 71.4, 5602, 120 }, + [6] = { 62, 70.3, 5602, 120 }, + [7] = { 61.9, 69.5, 5602, 120 }, + [8] = { 60, 69.4, 5602, 120 }, + [9] = { 61.2, 69.3, 5602, 120 }, + [10] = { 60.7, 69.2, 5602, 120 }, + [11] = { 59.5, 69.1, 5602, 120 }, + [12] = { 60.5, 68.8, 5602, 120 }, + [13] = { 61.8, 68.8, 5602, 120 }, + [14] = { 62, 68.1, 5602, 120 }, + [15] = { 62, 67.5, 5602, 120 }, + [16] = { 61.1, 64.5, 5602, 120 }, + [17] = { 60.4, 62.5, 5602, 120 }, + [18] = { 61.3, 61.9, 5602, 120 }, + [19] = { 61.1, 61.7, 5602, 120 }, + }, + ["lvl"] = "35-36", + }, + [62234] = { + ["coords"] = { + [1] = { 63.8, 75.8, 5602, 300 }, + [2] = { 54.8, 73.6, 5602, 300 }, + [3] = { 58.3, 70.3, 5602, 300 }, + [4] = { 50.8, 67.9, 5602, 300 }, + [5] = { 52.5, 67.1, 5602, 300 }, + [6] = { 49.6, 65.1, 5602, 300 }, + [7] = { 50.9, 62.1, 5602, 300 }, + [8] = { 48.8, 61.3, 5602, 300 }, + [9] = { 46.8, 60.6, 5602, 300 }, + [10] = { 51, 60.5, 5602, 300 }, + [11] = { 63.5, 60.4, 5602, 300 }, + [12] = { 55.6, 58.9, 5602, 300 }, + [13] = { 47.3, 55, 5602, 300 }, + [14] = { 49.1, 50.4, 5602, 300 }, + [15] = { 62.6, 49.8, 5602, 300 }, + [16] = { 59.1, 47.9, 5602, 300 }, + [17] = { 64.4, 47.6, 5602, 300 }, + [18] = { 57.5, 45.3, 5602, 300 }, + [19] = { 54, 43.7, 5602, 300 }, + [20] = { 55.7, 43, 5602, 300 }, + [21] = { 48.4, 36.5, 5602, 300 }, + [22] = { 64.2, 35.6, 5602, 300 }, + [23] = { 52.6, 35.4, 5602, 300 }, + [24] = { 60.9, 34.5, 5602, 300 }, + [25] = { 56.8, 34.2, 5602, 300 }, + [26] = { 43.5, 32.6, 5602, 300 }, + [27] = { 58, 31.8, 5602, 300 }, + [28] = { 51, 28.2, 5602, 300 }, + [29] = { 55.9, 27, 5602, 300 }, + [30] = { 56, 27, 5602, 300 }, + [31] = { 51.3, 25.1, 5602, 300 }, + [32] = { 47.4, 23.6, 5602, 300 }, + [33] = { 56.4, 23.2, 5602, 300 }, + }, + ["lvl"] = "40-42", + }, + [62235] = { + ["coords"] = { + [1] = { 48, 91.8, 5602, 120 }, + [2] = { 55.8, 89.2, 5602, 120 }, + [3] = { 46.6, 88.7, 5602, 120 }, + [4] = { 50.4, 86, 5602, 300 }, + [5] = { 53.1, 85.5, 5602, 300 }, + [6] = { 52.3, 85.1, 5602, 300 }, + [7] = { 53.8, 84.4, 5602, 300 }, + [8] = { 52.1, 83.9, 5602, 300 }, + [9] = { 50.9, 83.8, 5602, 300 }, + [10] = { 54.5, 83.5, 5602, 300 }, + [11] = { 51.8, 83.1, 5602, 300 }, + [12] = { 55.3, 81.2, 5602, 300 }, + [13] = { 56.5, 81.1, 5602, 300 }, + [14] = { 61.9, 80.7, 5602, 300 }, + [15] = { 51.6, 80.7, 5602, 300 }, + [16] = { 51.5, 79.7, 5602, 120 }, + [17] = { 57, 79.4, 5602, 300 }, + [18] = { 52.8, 79.3, 5602, 120 }, + [19] = { 52.2, 79.1, 5602, 300 }, + [20] = { 50.6, 78.9, 5602, 300 }, + [21] = { 51.8, 78.8, 5602, 300 }, + [22] = { 51.3, 78.8, 5602, 300 }, + [23] = { 49.6, 78.7, 5602, 300 }, + [24] = { 55.8, 78.4, 5602, 300 }, + [25] = { 51.5, 78.2, 5602, 120 }, + [26] = { 60.9, 77.9, 5602, 300 }, + [27] = { 52.8, 77.3, 5602, 120 }, + [28] = { 50.6, 77.2, 5602, 300 }, + [29] = { 49.6, 77, 5602, 300 }, + [30] = { 58.1, 76.7, 5602, 120 }, + [31] = { 58.6, 75.9, 5602, 120 }, + [32] = { 53.9, 75.8, 5602, 300 }, + [33] = { 53.3, 74.6, 5602, 300 }, + }, + ["lvl"] = "37-38", + }, + [62236] = { + ["coords"] = { + [1] = { 56, 87.2, 5602, 120 }, + [2] = { 61.7, 80.6, 5602, 300 }, + [3] = { 52.1, 79.9, 5602, 120 }, + [4] = { 50, 79.6, 5602, 300 }, + [5] = { 50.1, 79.5, 5602, 300 }, + [6] = { 54.6, 79.1, 5602, 300 }, + [7] = { 55.7, 79.1, 5602, 120 }, + [8] = { 51.2, 79.1, 5602, 120 }, + [9] = { 52.7, 78.8, 5602, 300 }, + [10] = { 56.4, 78.4, 5602, 300 }, + [11] = { 52.5, 78.4, 5602, 120 }, + [12] = { 53.2, 78.2, 5602, 120 }, + [13] = { 49.8, 78.2, 5602, 300 }, + [14] = { 53.8, 78.1, 5602, 120 }, + [15] = { 52.5, 77.7, 5602, 300 }, + [16] = { 52, 77.6, 5602, 120 }, + [17] = { 59.1, 77.5, 5602, 300 }, + [18] = { 53.1, 77.4, 5602, 300 }, + [19] = { 50.8, 77.3, 5602, 300 }, + [20] = { 49.6, 77.2, 5602, 300 }, + [21] = { 58.4, 76.9, 5602, 120 }, + [22] = { 50.1, 76.9, 5602, 300 }, + [23] = { 54.6, 76.3, 5602, 300 }, + [24] = { 53.2, 76.2, 5602, 300 }, + [25] = { 52.9, 75.1, 5602, 300 }, + [26] = { 53.9, 75, 5602, 300 }, + }, + ["lvl"] = "36-37", + }, + [62237] = { + ["coords"] = { + [1] = { 49.1, 91.6, 5602, 300 }, + [2] = { 46.7, 90.3, 5602, 300 }, + [3] = { 50.6, 89.4, 5602, 300 }, + [4] = { 55.1, 87.6, 5602, 300 }, + [5] = { 57.2, 85.6, 5602, 300 }, + [6] = { 56.8, 85.2, 5602, 300 }, + [7] = { 57.6, 85, 5602, 300 }, + [8] = { 51.7, 84.8, 5602, 300 }, + [9] = { 55.9, 84.8, 5602, 300 }, + [10] = { 56.4, 84.6, 5602, 300 }, + [11] = { 52.4, 84.3, 5602, 300 }, + [12] = { 57.3, 84, 5602, 300 }, + [13] = { 51.2, 83.9, 5602, 300 }, + [14] = { 57.7, 83.7, 5602, 300 }, + [15] = { 56.5, 83.6, 5602, 300 }, + [16] = { 52.1, 83.4, 5602, 300 }, + [17] = { 52.7, 83.2, 5602, 300 }, + [18] = { 51.5, 83.1, 5602, 300 }, + [19] = { 57, 83.1, 5602, 300 }, + [20] = { 56.7, 82.8, 5602, 300 }, + [21] = { 54.5, 82.3, 5602, 300 }, + [22] = { 55.4, 82.1, 5602, 300 }, + [23] = { 59.8, 82.1, 5602, 300 }, + [24] = { 59.4, 81.8, 5602, 300 }, + [25] = { 60.2, 81.8, 5602, 300 }, + [26] = { 54.3, 81.7, 5602, 300 }, + [27] = { 59.6, 81.2, 5602, 300 }, + [28] = { 54.8, 81.2, 5602, 300 }, + [29] = { 58.5, 81.2, 5602, 300 }, + [30] = { 54.3, 81.1, 5602, 300 }, + [31] = { 58.1, 80.8, 5602, 300 }, + [32] = { 59.2, 80.7, 5602, 300 }, + [33] = { 58.8, 80.6, 5602, 300 }, + [34] = { 54.6, 80.5, 5602, 300 }, + [35] = { 54.3, 80.5, 5602, 300 }, + }, + ["lvl"] = "34-35", + }, + [62238] = { + ["coords"] = { + [1] = { 56.1, 85, 5602, 300 }, + [2] = { 51, 83.8, 5602, 300 }, + [3] = { 56.7, 83.1, 5602, 300 }, + [4] = { 54.7, 82.2, 5602, 300 }, + [5] = { 58.8, 80.5, 5602, 300 }, + }, + ["lvl"] = "37-38", + ["rnk"] = "1", + }, + [62239] = { + ["coords"] = { + [1] = { 59.4, 81.6, 5602, 300 }, + [2] = { 54.6, 81, 5602, 300 }, + }, + ["lvl"] = "37-38", + ["rnk"] = "1", + }, + [62240] = { + ["coords"] = { + [1] = { 59.4, 89.1, 5602, 120 }, + [2] = { 59.7, 88.9, 5602, 120 }, + [3] = { 60.1, 88.8, 5602, 120 }, + [4] = { 60.5, 88.4, 5602, 120 }, + [5] = { 59.9, 88.4, 5602, 120 }, + [6] = { 60.9, 88, 5602, 120 }, + [7] = { 60.3, 87.7, 5602, 120 }, + [8] = { 61.3, 87.7, 5602, 120 }, + [9] = { 59.7, 87.7, 5602, 120 }, + [10] = { 61.7, 87.6, 5602, 120 }, + [11] = { 61, 87.4, 5602, 120 }, + [12] = { 61.5, 87.3, 5602, 120 }, + [13] = { 62.1, 86.6, 5602, 120 }, + [14] = { 61.8, 86.3, 5602, 120 }, + [15] = { 62.6, 86, 5602, 120 }, + [16] = { 61.1, 86, 5602, 120 }, + [17] = { 62.3, 85.5, 5602, 120 }, + [18] = { 61.6, 85.4, 5602, 120 }, + [19] = { 61.4, 85.1, 5602, 120 }, + [20] = { 61, 84.9, 5602, 120 }, + [21] = { 62.7, 84.5, 5602, 120 }, + [22] = { 61.5, 84.5, 5602, 120 }, + [23] = { 62.1, 84.3, 5602, 120 }, + [24] = { 61.7, 83.8, 5602, 120 }, + [25] = { 63, 83.5, 5602, 120 }, + [26] = { 62.3, 83.2, 5602, 120 }, + }, + ["lvl"] = "37-38", + }, + [62241] = { + ["coords"] = { + [1] = { 62.4, 60.1, 5602, 120 }, + [2] = { 63.3, 59.9, 5602, 120 }, + [3] = { 61.3, 59.2, 5602, 120 }, + [4] = { 62.3, 59.1, 5602, 120 }, + [5] = { 60.2, 58.8, 5602, 120 }, + [6] = { 62.2, 58.3, 5602, 120 }, + [7] = { 63, 58.2, 5602, 120 }, + [8] = { 60.9, 58.1, 5602, 120 }, + [9] = { 62.1, 57.6, 5602, 120 }, + [10] = { 62.6, 57.4, 5602, 120 }, + [11] = { 63.5, 56.9, 5602, 120 }, + [12] = { 60.6, 56.8, 5602, 120 }, + [13] = { 62.1, 56.3, 5602, 120 }, + [14] = { 63.4, 56, 5602, 120 }, + [15] = { 62.8, 56, 5602, 120 }, + [16] = { 60.6, 55.9, 5602, 120 }, + [17] = { 61.9, 55.7, 5602, 120 }, + [18] = { 63.2, 55.4, 5602, 120 }, + [19] = { 59.4, 55.3, 5602, 120 }, + [20] = { 63.3, 54.7, 5602, 120 }, + [21] = { 63.2, 54.5, 5602, 120 }, + [22] = { 61.4, 54.4, 5602, 120 }, + [23] = { 62, 54.3, 5602, 120 }, + [24] = { 61.2, 54.1, 5602, 120 }, + [25] = { 58.7, 54, 5602, 120 }, + [26] = { 62.6, 53.4, 5602, 120 }, + [27] = { 61.2, 52.8, 5602, 120 }, + [28] = { 60.1, 52.6, 5602, 120 }, + [29] = { 60, 52.5, 5602, 120 }, + [30] = { 59.1, 52.3, 5602, 120 }, + [31] = { 60, 52.1, 5602, 120 }, + [32] = { 60.6, 51.7, 5602, 120 }, + }, + ["lvl"] = "32-34", + }, + [62242] = { + ["coords"] = { + [1] = { 63.4, 60.1, 5602, 120 }, + [2] = { 61.1, 59.5, 5602, 120 }, + [3] = { 61.9, 58.4, 5602, 120 }, + [4] = { 60.8, 58.3, 5602, 120 }, + [5] = { 61.9, 58.1, 5602, 120 }, + [6] = { 61.6, 57.9, 5602, 120 }, + [7] = { 63.4, 57.7, 5602, 120 }, + [8] = { 62.7, 55.9, 5602, 120 }, + [9] = { 61.3, 55.6, 5602, 120 }, + [10] = { 60.1, 55.4, 5602, 120 }, + [11] = { 62.1, 55.2, 5602, 120 }, + [12] = { 63.5, 54.5, 5602, 120 }, + [13] = { 61.5, 54, 5602, 120 }, + [14] = { 62.1, 52.8, 5602, 120 }, + [15] = { 59.7, 52.2, 5602, 120 }, + [16] = { 59.7, 51.4, 5602, 120 }, + }, + ["lvl"] = "34-35", + }, + [62243] = { + ["coords"] = { + [1] = { 62.7, 60.6, 5602, 120 }, + [2] = { 62.5, 59.5, 5602, 120 }, + [3] = { 61, 59.2, 5602, 120 }, + [4] = { 62.7, 58.3, 5602, 120 }, + [5] = { 61, 57.3, 5602, 120 }, + [6] = { 63.6, 56.1, 5602, 120 }, + [7] = { 61.4, 56.1, 5602, 120 }, + [8] = { 60, 55.4, 5602, 120 }, + [9] = { 61.2, 55.1, 5602, 120 }, + [10] = { 62.1, 54.2, 5602, 120 }, + [11] = { 62.9, 54.2, 5602, 120 }, + [12] = { 61, 53.9, 5602, 120 }, + [13] = { 60.6, 52.8, 5602, 120 }, + }, + ["lvl"] = "34-35", + }, + [62244] = { + ["coords"] = { + [1] = { 62.3, 60.3, 5602, 120 }, + }, + ["lvl"] = "35", + }, + [62245] = { + ["coords"] = { + [1] = { 95, 69.3, 11, 300 }, + [2] = { 97.2, 62, 11, 300 }, + [3] = { 97.2, 58.2, 11, 300 }, + [4] = { 55.9, 63.3, 5602, 300 }, + [5] = { 56.7, 60.7, 5602, 300 }, + [6] = { 59.9, 60.3, 5602, 300 }, + [7] = { 58.9, 59.1, 5602, 300 }, + [8] = { 53.6, 53.9, 5602, 300 }, + [9] = { 55.4, 53.9, 5602, 300 }, + [10] = { 62.4, 51.1, 5602, 300 }, + [11] = { 49.7, 51, 5602, 300 }, + [12] = { 48.3, 50.5, 5602, 300 }, + [13] = { 49.2, 49.4, 5602, 300 }, + [14] = { 64.2, 48.5, 5602, 300 }, + [15] = { 58.1, 45.7, 5602, 300 }, + [16] = { 49.5, 43.8, 5602, 300 }, + [17] = { 56.1, 43.5, 5602, 300 }, + [18] = { 53.6, 41.7, 5602, 300 }, + [19] = { 49.5, 38.6, 5602, 300 }, + [20] = { 43.2, 37.2, 5602, 300 }, + [21] = { 46.5, 36.7, 5602, 300 }, + [22] = { 45.2, 33.8, 5602, 300 }, + [23] = { 47.5, 32.8, 5602, 300 }, + [24] = { 43, 32.6, 5602, 300 }, + [25] = { 41.7, 32.2, 5602, 300 }, + [26] = { 46.7, 28.5, 5602, 300 }, + [27] = { 46.5, 27.6, 5602, 300 }, + [28] = { 43.4, 26.6, 5602, 300 }, + [29] = { 43.4, 23.7, 5602, 300 }, + [30] = { 44.7, 20.7, 5602, 300 }, + [31] = { 53.1, 19.6, 5602, 300 }, + [32] = { 52.5, 15.7, 5602, 300 }, + [33] = { 45.8, 15.4, 5602, 300 }, + [34] = { 48.4, 14.1, 5602, 300 }, + [35] = { 46.3, 13.7, 5602, 300 }, + [36] = { 45, 13.6, 5602, 300 }, + [37] = { 46, 12.8, 5602, 300 }, + [38] = { 48.2, 11, 5602, 300 }, + [39] = { 49.3, 9.2, 5602, 300 }, + }, + ["lvl"] = "32-34", + }, + [62246] = { + ["coords"] = { + [1] = { 59.2, 40, 5602, 300 }, + [2] = { 62.7, 37.9, 5602, 300 }, + [3] = { 53.3, 35.6, 5602, 300 }, + [4] = { 61.2, 33.3, 5602, 300 }, + [5] = { 58.1, 32.7, 5602, 300 }, + [6] = { 50.6, 31.9, 5602, 300 }, + [7] = { 62.4, 30.5, 5602, 300 }, + [8] = { 51, 29.4, 5602, 300 }, + [9] = { 57, 28.4, 5602, 300 }, + [10] = { 60.9, 28.1, 5602, 300 }, + [11] = { 53.7, 25.6, 5602, 300 }, + [12] = { 55.2, 24.7, 5602, 300 }, + [13] = { 61.7, 23.7, 5602, 300 }, + [14] = { 61.7, 19.5, 5602, 300 }, + [15] = { 61.1, 18.9, 5602, 300 }, + [16] = { 60.7, 17.4, 5602, 300 }, + [17] = { 60.2, 17.4, 5602, 300 }, + [18] = { 61.8, 17.3, 5602, 300 }, + [19] = { 59.7, 17.2, 5602, 300 }, + [20] = { 62.4, 17.1, 5602, 300 }, + [21] = { 61.3, 16.9, 5602, 300 }, + [22] = { 60.2, 16.8, 5602, 300 }, + [23] = { 61.2, 16.2, 5602, 300 }, + [24] = { 61.9, 16.2, 5602, 300 }, + [25] = { 60.6, 16.2, 5602, 300 }, + [26] = { 59.4, 16.1, 5602, 300 }, + [27] = { 58.6, 15.5, 5602, 300 }, + [28] = { 60.7, 15.4, 5602, 300 }, + [29] = { 59.7, 15.3, 5602, 300 }, + [30] = { 62, 15.1, 5602, 300 }, + [31] = { 61.3, 14.9, 5602, 300 }, + [32] = { 60.3, 14.9, 5602, 300 }, + [33] = { 60, 13.7, 5602, 300 }, + [34] = { 61.3, 13.6, 5602, 300 }, + [35] = { 59.7, 13.1, 5602, 300 }, + [36] = { 60.6, 12.7, 5602, 300 }, + }, + ["lvl"] = "36-37", + }, + [62247] = { + ["coords"] = { + [1] = { 54.6, 66, 5602, 120 }, + [2] = { 51.1, 63.5, 5602, 120 }, + [3] = { 56.6, 58.8, 5602, 120 }, + [4] = { 45, 57.3, 5602, 120 }, + [5] = { 59.2, 56.7, 5602, 120 }, + [6] = { 49.3, 56.6, 5602, 120 }, + [7] = { 53.9, 52.7, 5602, 120 }, + [8] = { 48.6, 52.6, 5602, 120 }, + [9] = { 45.1, 51.6, 5602, 120 }, + [10] = { 56.4, 50.8, 5602, 120 }, + [11] = { 63.8, 50.7, 5602, 120 }, + [12] = { 60.6, 48.4, 5602, 120 }, + [13] = { 64.4, 46.4, 5602, 120 }, + [14] = { 57, 44.3, 5602, 120 }, + [15] = { 58.6, 43.6, 5602, 120 }, + [16] = { 54.5, 42.2, 5602, 120 }, + [17] = { 57.9, 41.5, 5602, 120 }, + [18] = { 48.6, 41.4, 5602, 120 }, + [19] = { 59.7, 38.7, 5602, 120 }, + [20] = { 53.2, 38.3, 5602, 120 }, + [21] = { 61.9, 36.2, 5602, 300 }, + [22] = { 50.6, 35.9, 5602, 120 }, + [23] = { 49, 35.3, 5602, 120 }, + [24] = { 62.9, 35.3, 5602, 120 }, + [25] = { 60.3, 34.8, 5602, 300 }, + [26] = { 57.9, 34.6, 5602, 120 }, + [27] = { 60.6, 32.2, 5602, 120 }, + [28] = { 62.9, 31.6, 5602, 300 }, + [29] = { 58.3, 30, 5602, 300 }, + [30] = { 61.4, 29.5, 5602, 120 }, + [31] = { 60.2, 21.5, 5602, 120 }, + [32] = { 57.9, 20.1, 5602, 120 }, + [33] = { 58.8, 11, 5602, 120 }, + }, + ["lvl"] = "35-36", + }, + [62248] = { + ["coords"] = { + [1] = { 46.6, 93.9, 5602, 120 }, + [2] = { 48.2, 92.9, 5602, 120 }, + [3] = { 45.8, 92.9, 5602, 120 }, + [4] = { 46.9, 92.6, 5602, 120 }, + [5] = { 50.1, 90.5, 5602, 120 }, + [6] = { 48.3, 90.5, 5602, 120 }, + [7] = { 49, 89.8, 5602, 120 }, + [8] = { 57, 89.8, 5602, 120 }, + [9] = { 46.2, 89.7, 5602, 120 }, + [10] = { 58.1, 89.6, 5602, 120 }, + [11] = { 47.1, 89.4, 5602, 120 }, + [12] = { 58.6, 88.7, 5602, 120 }, + [13] = { 51.6, 88.3, 5602, 120 }, + [14] = { 52.8, 87.9, 5602, 120 }, + [15] = { 57.5, 87.7, 5602, 120 }, + [16] = { 46.2, 87.4, 5602, 120 }, + [17] = { 49.9, 87.3, 5602, 120 }, + [18] = { 58.9, 86.7, 5602, 120 }, + [19] = { 53.2, 86.5, 5602, 120 }, + [20] = { 49.4, 86.3, 5602, 120 }, + [21] = { 48.5, 86.3, 5602, 120 }, + [22] = { 50.1, 84.7, 5602, 120 }, + [23] = { 54.5, 84.1, 5602, 120 }, + [24] = { 61.4, 83, 5602, 120 }, + [25] = { 56.7, 80.7, 5602, 120 }, + [26] = { 55.9, 80.6, 5602, 120 }, + [27] = { 60.8, 80.5, 5602, 120 }, + [28] = { 63.4, 79.9, 5602, 120 }, + [29] = { 62, 79, 5602, 120 }, + [30] = { 56.9, 78.6, 5602, 120 }, + [31] = { 56.1, 78, 5602, 120 }, + [32] = { 54.2, 76.8, 5602, 120 }, + [33] = { 59.3, 76.4, 5602, 120 }, + [34] = { 55.3, 73.9, 5602, 120 }, + [35] = { 58.6, 72.4, 5602, 120 }, + [36] = { 54.8, 71.9, 5602, 120 }, + [37] = { 51.4, 70.6, 5602, 120 }, + [38] = { 50.9, 69.4, 5602, 120 }, + [39] = { 49.7, 69.1, 5602, 120 }, + [40] = { 51.9, 68.1, 5602, 120 }, + [41] = { 54.1, 67, 5602, 120 }, + [42] = { 51.4, 66.2, 5602, 120 }, + }, + ["lvl"] = "39-40", + }, + [62249] = { + ["coords"] = {}, + ["lvl"] = "41", + ["rnk"] = "1", + }, + [62250] = { + ["coords"] = { + [1] = { 54.6, 27.4, 5602, 120 }, + [2] = { 55.5, 27.1, 5602, 120 }, + [3] = { 56.7, 27, 5602, 120 }, + [4] = { 58.8, 26.5, 5602, 120 }, + [5] = { 59.6, 26.5, 5602, 120 }, + [6] = { 57.6, 25.9, 5602, 120 }, + [7] = { 60.4, 25.6, 5602, 120 }, + [8] = { 56, 25.2, 5602, 120 }, + [9] = { 58.1, 25.2, 5602, 120 }, + [10] = { 59.2, 25, 5602, 120 }, + [11] = { 58.3, 25, 5602, 120 }, + [12] = { 56.9, 24.9, 5602, 120 }, + [13] = { 59.8, 24.9, 5602, 120 }, + [14] = { 55.1, 24.9, 5602, 120 }, + [15] = { 60.4, 24.2, 5602, 120 }, + [16] = { 59.1, 24.1, 5602, 120 }, + [17] = { 60.1, 23.4, 5602, 120 }, + [18] = { 59.5, 23, 5602, 120 }, + [19] = { 59.5, 22.1, 5602, 120 }, + [20] = { 59.8, 21.2, 5602, 120 }, + }, + ["lvl"] = "35-36", + }, + [62251] = { + ["coords"] = { + [1] = { 55.9, 27.3, 5602, 300 }, + [2] = { 56.3, 26.8, 5602, 120 }, + [3] = { 54.4, 26.6, 5602, 120 }, + [4] = { 56.3, 25.9, 5602, 120 }, + [5] = { 54.7, 25.2, 5602, 120 }, + [6] = { 58.7, 24.7, 5602, 300 }, + [7] = { 56.6, 24.6, 5602, 120 }, + [8] = { 53.7, 24.3, 5602, 120 }, + [9] = { 56.9, 24, 5602, 120 }, + [10] = { 56.4, 23.6, 5602, 300 }, + [11] = { 56.2, 23.5, 5602, 120 }, + [12] = { 55.9, 23, 5602, 120 }, + [13] = { 56.5, 22.5, 5602, 120 }, + }, + ["lvl"] = "36-37", + }, + [62252] = { + ["coords"] = { + [1] = { 63.4, 47.3, 5602, 300 }, + [2] = { 63.2, 47.2, 5602, 300 }, + [3] = { 63.5, 46.5, 5602, 300 }, + [4] = { 62, 46, 5602, 300 }, + [5] = { 62.2, 45.8, 5602, 300 }, + [6] = { 61.8, 44.7, 5602, 300 }, + [7] = { 61.9, 44.3, 5602, 300 }, + [8] = { 63.3, 44, 5602, 300 }, + [9] = { 62.5, 42.7, 5602, 300 }, + [10] = { 60.7, 42.7, 5602, 300 }, + [11] = { 60.7, 42.6, 5602, 300 }, + [12] = { 60.7, 42.5, 5602, 300 }, + [13] = { 60.7, 42.3, 5602, 300 }, + [14] = { 64.1, 41.8, 5602, 300 }, + [15] = { 60.4, 41, 5602, 300 }, + [16] = { 63.7, 40.5, 5602, 300 }, + [17] = { 62.5, 40, 5602, 300 }, + [18] = { 61.7, 39.8, 5602, 300 }, + [19] = { 60.5, 39.7, 5602, 300 }, + [20] = { 64.3, 38.9, 5602, 300 }, + [21] = { 63.6, 38.4, 5602, 300 }, + }, + ["lvl"] = "35-36", + }, + [62253] = { + ["coords"] = { + [1] = { 62.8, 47.9, 5602, 300 }, + [2] = { 61.6, 47.6, 5602, 300 }, + [3] = { 60.3, 46, 5602, 300 }, + [4] = { 62.3, 46, 5602, 300 }, + [5] = { 61.4, 45.6, 5602, 300 }, + [6] = { 60.4, 45.4, 5602, 300 }, + [7] = { 61.4, 45.3, 5602, 300 }, + [8] = { 62.7, 44.7, 5602, 300 }, + [9] = { 61.6, 44.6, 5602, 300 }, + [10] = { 59.9, 44, 5602, 300 }, + [11] = { 63.2, 42.9, 5602, 300 }, + [12] = { 63.9, 42.5, 5602, 300 }, + [13] = { 64.1, 41.9, 5602, 300 }, + [14] = { 62.1, 41.8, 5602, 300 }, + [15] = { 61.2, 41, 5602, 300 }, + [16] = { 60.2, 40.7, 5602, 300 }, + [17] = { 60.3, 40.6, 5602, 300 }, + [18] = { 61.9, 40.6, 5602, 300 }, + [19] = { 63.5, 40.2, 5602, 300 }, + [20] = { 61.6, 40.2, 5602, 300 }, + [21] = { 62.6, 40, 5602, 300 }, + [22] = { 62.8, 39.8, 5602, 300 }, + [23] = { 63.8, 39.7, 5602, 300 }, + [24] = { 63.9, 39.6, 5602, 300 }, + [25] = { 62.6, 39.2, 5602, 300 }, + [26] = { 63.1, 39.1, 5602, 300 }, + [27] = { 61.6, 38.5, 5602, 300 }, + }, + ["lvl"] = "35-36", + }, + [62254] = { + ["coords"] = { + [1] = { 63.4, 47.9, 5602, 300 }, + [2] = { 63.2, 47.1, 5602, 300 }, + [3] = { 61.9, 45.9, 5602, 300 }, + [4] = { 62.2, 45.7, 5602, 300 }, + [5] = { 61.8, 45.5, 5602, 300 }, + [6] = { 62.1, 44.9, 5602, 300 }, + [7] = { 61.9, 44.5, 5602, 300 }, + [8] = { 59.6, 44, 5602, 300 }, + [9] = { 63.2, 43.3, 5602, 300 }, + [10] = { 64.6, 43.2, 5602, 300 }, + [11] = { 61.5, 42.8, 5602, 300 }, + [12] = { 61.4, 42.1, 5602, 300 }, + [13] = { 64.1, 41.6, 5602, 300 }, + [14] = { 60.6, 41.1, 5602, 300 }, + [15] = { 59.8, 40.8, 5602, 300 }, + [16] = { 64.2, 40.6, 5602, 300 }, + [17] = { 61.8, 39.9, 5602, 300 }, + [18] = { 63.4, 39.9, 5602, 300 }, + [19] = { 63.8, 39.5, 5602, 300 }, + [20] = { 62.1, 39.1, 5602, 300 }, + }, + ["lvl"] = "37-38", + }, + [62255] = { + ["coords"] = { + [1] = { 61.7, 46.2, 5602, 300 }, + [2] = { 60.4, 45.9, 5602, 300 }, + [3] = { 60.1, 45.7, 5602, 300 }, + [4] = { 62.3, 45.5, 5602, 300 }, + [5] = { 63, 45.3, 5602, 300 }, + [6] = { 62.3, 44.6, 5602, 300 }, + [7] = { 62.8, 44, 5602, 300 }, + [8] = { 60.5, 43.9, 5602, 300 }, + [9] = { 61.4, 43.6, 5602, 300 }, + [10] = { 60.9, 43.6, 5602, 300 }, + [11] = { 61.1, 43.5, 5602, 300 }, + [12] = { 63.5, 43.1, 5602, 300 }, + [13] = { 60.8, 43.1, 5602, 300 }, + [14] = { 62.5, 42.9, 5602, 300 }, + [15] = { 63.4, 42.9, 5602, 300 }, + [16] = { 60.6, 42.6, 5602, 300 }, + [17] = { 61.1, 42.5, 5602, 300 }, + [18] = { 60.6, 42.2, 5602, 300 }, + [19] = { 59.7, 41.9, 5602, 300 }, + }, + ["lvl"] = "34-35", + }, + [62256] = { + ["coords"] = { + [1] = { 58.4, 53.2, 5602, 120 }, + [2] = { 53.1, 51.8, 5602, 120 }, + [3] = { 54.6, 51.7, 5602, 120 }, + [4] = { 57.6, 51.2, 5602, 120 }, + [5] = { 51.8, 51.2, 5602, 120 }, + [6] = { 58.5, 51.1, 5602, 120 }, + [7] = { 59.4, 50.4, 5602, 120 }, + [8] = { 55.6, 50.3, 5602, 120 }, + [9] = { 53.1, 49.9, 5602, 120 }, + [10] = { 56.6, 49.7, 5602, 120 }, + [11] = { 55, 49.4, 5602, 120 }, + [12] = { 57.9, 49.3, 5602, 120 }, + [13] = { 51.8, 48.9, 5602, 120 }, + [14] = { 55.3, 48, 5602, 120 }, + [15] = { 44.6, 47.5, 5602, 300 }, + [16] = { 53.7, 47.4, 5602, 120 }, + [17] = { 52, 47.3, 5602, 120 }, + [18] = { 47.8, 47.1, 5602, 300 }, + [19] = { 45.4, 47, 5602, 300 }, + [20] = { 44.7, 46.7, 5602, 300 }, + [21] = { 49.7, 46.7, 5602, 300 }, + [22] = { 48.6, 46.4, 5602, 300 }, + [23] = { 52.9, 46.2, 5602, 120 }, + [24] = { 54.7, 46.2, 5602, 120 }, + [25] = { 55.9, 46, 5602, 120 }, + [26] = { 46.8, 45.3, 5602, 300 }, + [27] = { 45.9, 45.3, 5602, 300 }, + [28] = { 46.2, 44.2, 5602, 300 }, + }, + ["lvl"] = "32-33", + }, + [62257] = { + ["coords"] = { + [1] = { 46.2, 91.7, 5602, 120 }, + [2] = { 48.1, 88.3, 5602, 120 }, + [3] = { 49.3, 88.1, 5602, 120 }, + [4] = { 58, 87.3, 5602, 120 }, + [5] = { 47.1, 86.9, 5602, 120 }, + [6] = { 56.9, 86.4, 5602, 120 }, + [7] = { 51.4, 86.3, 5602, 120 }, + [8] = { 50.3, 85.5, 5602, 120 }, + [9] = { 48.6, 85.4, 5602, 120 }, + [10] = { 58.5, 84.7, 5602, 120 }, + [11] = { 55.4, 84.1, 5602, 120 }, + [12] = { 62.2, 83.7, 5602, 120 }, + [13] = { 53.4, 83.1, 5602, 120 }, + [14] = { 57.7, 82.5, 5602, 120 }, + [15] = { 56.5, 82.2, 5602, 120 }, + [16] = { 61.1, 81.5, 5602, 120 }, + [17] = { 63, 81.2, 5602, 120 }, + [18] = { 53.5, 80.1, 5602, 120 }, + [19] = { 58.3, 79.6, 5602, 120 }, + [20] = { 54.1, 79.1, 5602, 120 }, + [21] = { 59.2, 78.7, 5602, 120 }, + [22] = { 63.1, 78.4, 5602, 120 }, + [23] = { 54.4, 78.1, 5602, 120 }, + [24] = { 57.2, 77.1, 5602, 120 }, + [25] = { 60.1, 77, 5602, 120 }, + [26] = { 55.8, 76.9, 5602, 120 }, + [27] = { 61.7, 76.9, 5602, 120 }, + [28] = { 54.9, 75.6, 5602, 120 }, + [29] = { 58.5, 75.6, 5602, 120 }, + [30] = { 59.3, 74.7, 5602, 120 }, + [31] = { 57.2, 74.6, 5602, 120 }, + [32] = { 52.9, 73.9, 5602, 120 }, + }, + ["lvl"] = "35-36", + }, + [62258] = { + ["coords"] = { + [1] = { 59.4, 51.5, 5602, 120 }, + [2] = { 54.7, 51.1, 5602, 120 }, + [3] = { 52.4, 51.1, 5602, 120 }, + [4] = { 57.3, 50.2, 5602, 120 }, + [5] = { 58.7, 49.5, 5602, 120 }, + [6] = { 52.4, 49.1, 5602, 120 }, + [7] = { 54.4, 49.1, 5602, 120 }, + [8] = { 56, 48.7, 5602, 120 }, + [9] = { 49.9, 47.9, 5602, 300 }, + [10] = { 52.9, 47.6, 5602, 120 }, + [11] = { 55.3, 46, 5602, 120 }, + [12] = { 46.1, 45.8, 5602, 300 }, + [13] = { 47.6, 45.6, 5602, 300 }, + [14] = { 45.2, 45.5, 5602, 300 }, + [15] = { 53.7, 45.2, 5602, 120 }, + }, + ["lvl"] = "33-34", + }, + [62259] = { + ["coords"] = { + [1] = { 50.7, 87.8, 5602, 120 }, + [2] = { 54.1, 86.4, 5602, 120 }, + [3] = { 47.1, 85.4, 5602, 120 }, + [4] = { 53.1, 84.4, 5602, 120 }, + [5] = { 54.6, 83.2, 5602, 120 }, + [6] = { 58.7, 82.7, 5602, 120 }, + [7] = { 53.6, 81.5, 5602, 120 }, + [8] = { 57.4, 81.2, 5602, 120 }, + [9] = { 60, 80.6, 5602, 120 }, + [10] = { 58.1, 78.1, 5602, 120 }, + [11] = { 62, 77.6, 5602, 120 }, + [12] = { 55, 77.6, 5602, 120 }, + [13] = { 56.4, 76.6, 5602, 120 }, + [14] = { 59.6, 76.2, 5602, 120 }, + [15] = { 61, 76.1, 5602, 120 }, + [16] = { 57.2, 76, 5602, 120 }, + [17] = { 57.8, 74.3, 5602, 120 }, + [18] = { 53.9, 73.8, 5602, 120 }, + }, + ["lvl"] = "36-37", + }, + [62260] = { + ["coords"] = { + [1] = { 63.4, 99.3, 36, 300 }, + [2] = { 36, 99.3, 36, 300 }, + [3] = { 45.6, 95.2, 36, 300 }, + [4] = { 27.7, 93.3, 36, 300 }, + [5] = { 53.4, 92.5, 36, 300 }, + [6] = { 41.4, 61.3, 267, 300 }, + [7] = { 33.2, 60.8, 267, 120 }, + [8] = { 24.2, 54.9, 267, 300 }, + [9] = { 39.6, 54.1, 267, 300 }, + [10] = { 72.7, 45.9, 267, 300 }, + [11] = { 43.4, 45.7, 267, 120 }, + [12] = { 48.8, 44.9, 267, 120 }, + [13] = { 64.3, 35.3, 267, 300 }, + [14] = { 40.4, 35.3, 267, 300 }, + [15] = { 48.7, 31.7, 267, 300 }, + [16] = { 33.1, 30.1, 267, 300 }, + [17] = { 55.6, 29.4, 267, 300 }, + [18] = { 95.8, 22.5, 5179, 300 }, + [19] = { 88.7, 22.1, 5179, 120 }, + [20] = { 80.8, 16.9, 5179, 300 }, + [21] = { 94.2, 16.2, 5179, 300 }, + [22] = { 97.5, 8.9, 5179, 120 }, + }, + ["lvl"] = "23-25", + }, + [62261] = { + ["coords"] = { + [1] = { 7.5, 52.2, 45, 300 }, + [2] = { 68.9, 83.7, 267, 300 }, + [3] = { 67.9, 77, 267, 120 }, + [4] = { 71.4, 71.2, 267, 300 }, + [5] = { 62.3, 67.3, 267, 300 }, + [6] = { 72.8, 63.8, 267, 300 }, + [7] = { 56.4, 58.3, 267, 300 }, + [8] = { 22.5, 43.2, 267, 300 }, + [9] = { 79.3, 6.6, 5179, 300 }, + }, + ["lvl"] = "26-27", + }, + [62262] = { + ["coords"] = { + [1] = { 42.5, 94.8, 17, 300 }, + [2] = { 44.8, 93.7, 17, 300 }, + [3] = { 41.4, 92.8, 17, 300 }, + [4] = { 28.5, 28.1, 400, 300 }, + [5] = { 33.7, 25.6, 400, 300 }, + [6] = { 26, 23.6, 400, 300 }, + }, + ["lvl"] = "21-23", + }, + [62263] = { + ["coords"] = { + [1] = { 35.5, 77.3, 5601, 604800 }, + [2] = { 35.1, 69.1, 5601, 604800 }, + [3] = { 39.1, 66.9, 5601, 604800 }, + [4] = { 24.6, 61.7, 5601, 604800 }, + [5] = { 34.7, 57, 5601, 604800 }, + [6] = { 34.5, 56.4, 5601, 604800 }, + [7] = { 24.4, 55.1, 5601, 604800 }, + [8] = { 34.7, 53.7, 5601, 604800 }, + }, + ["lvl"] = "25-26", + ["rnk"] = "1", + }, + [62264] = { + ["coords"] = { + [1] = { 35.7, 70.6, 5601, 604800 }, + [2] = { 38.9, 70.2, 5601, 604800 }, + [3] = { 34.8, 69.1, 5601, 604800 }, + [4] = { 38.9, 69, 5601, 604800 }, + [5] = { 24.5, 61.6, 5601, 604800 }, + [6] = { 24.2, 60.7, 5601, 604800 }, + [7] = { 36.1, 59.6, 5601, 604800 }, + [8] = { 35.2, 59.4, 5601, 604800 }, + [9] = { 35.1, 57.9, 5601, 604800 }, + [10] = { 37, 57, 5601, 604800 }, + [11] = { 34.5, 56.7, 5601, 604800 }, + [12] = { 20.8, 55.2, 5601, 604800 }, + [13] = { 24.9, 54.8, 5601, 604800 }, + [14] = { 24.4, 54.8, 5601, 604800 }, + [15] = { 20.8, 54.7, 5601, 604800 }, + [16] = { 25.3, 54.3, 5601, 604800 }, + [17] = { 34.8, 53.5, 5601, 604800 }, + [18] = { 35.7, 53.3, 5601, 604800 }, + }, + ["lvl"] = "25-26", + ["rnk"] = "1", + }, + [62265] = { + ["coords"] = { + [1] = { 24.5, 52.4, 5581, 120 }, + [2] = { 22.7, 52, 5581, 120 }, + [3] = { 22.9, 51.9, 5581, 120 }, + [4] = { 23.8, 51.8, 5581, 120 }, + }, + ["lvl"] = "34", + }, + [62266] = { + ["coords"] = { + [1] = { 30.3, 92.5, 1, 600 }, + [2] = { 30.8, 91.7, 1, 600 }, + [3] = { 31.4, 91.7, 1, 600 }, + [4] = { 31.5, 91.4, 1, 600 }, + [5] = { 31.5, 91.1, 1, 600 }, + [6] = { 60.9, 30.1, 5581, 600 }, + [7] = { 62.6, 27.7, 5581, 600 }, + [8] = { 60.2, 27.2, 5581, 600 }, + [9] = { 63.7, 26.5, 5581, 600 }, + [10] = { 62.3, 26.1, 5581, 600 }, + [11] = { 60.8, 26, 5581, 600 }, + [12] = { 61.7, 26, 5581, 600 }, + [13] = { 61.9, 25.6, 5581, 600 }, + [14] = { 63.6, 25.4, 5581, 300 }, + [15] = { 63.7, 25.4, 5581, 600 }, + [16] = { 61.9, 25.1, 5581, 600 }, + [17] = { 65.8, 24.8, 5581, 600 }, + [18] = { 64.2, 22.9, 5581, 600 }, + }, + ["lvl"] = "30-33", + ["rnk"] = "1", + }, + [62267] = { + ["coords"] = { + [1] = { 31, 91.7, 1, 600 }, + [2] = { 30.4, 91.4, 1, 600 }, + [3] = { 30.7, 91.2, 1, 600 }, + [4] = { 30.8, 91.2, 1, 600 }, + [5] = { 32.2, 91.1, 1, 600 }, + [6] = { 31.6, 90.6, 1, 600 }, + [7] = { 60.2, 28.7, 5581, 600 }, + [8] = { 61.1, 28.4, 5581, 600 }, + [9] = { 64.3, 28.3, 5581, 600 }, + [10] = { 62.3, 26.2, 5581, 600 }, + [11] = { 61.1, 26, 5581, 600 }, + [12] = { 62.3, 25.8, 5581, 600 }, + [13] = { 60.3, 25.6, 5581, 600 }, + [14] = { 60.7, 25.3, 5581, 600 }, + [15] = { 60.9, 25.3, 5581, 600 }, + [16] = { 63, 25.2, 5581, 600 }, + [17] = { 63.6, 24.7, 5581, 300 }, + [18] = { 62.1, 24.4, 5581, 600 }, + [19] = { 65, 21.4, 5581, 600 }, + }, + ["lvl"] = "30-33", + ["rnk"] = "1", + }, + [62268] = { + ["coords"] = { + [1] = { 63.7, 24.7, 5581, 600 }, + }, + ["lvl"] = "33", + ["rnk"] = "1", + }, + [62269] = { + ["coords"] = { + [1] = { 31.1, 92.3, 1, 600 }, + [2] = { 31.2, 91.6, 1, 600 }, + [3] = { 30.8, 91.4, 1, 600 }, + [4] = { 32.4, 91.4, 1, 600 }, + [5] = { 32.3, 91.4, 1, 300 }, + [6] = { 31.7, 91, 1, 600 }, + [7] = { 32.6, 88.9, 1, 600 }, + [8] = { 61.4, 26.9, 5581, 600 }, + [9] = { 63.1, 26.8, 5581, 600 }, + [10] = { 64.5, 26.1, 5581, 600 }, + [11] = { 61.5, 25.9, 5581, 600 }, + [12] = { 60.8, 25.6, 5581, 600 }, + [13] = { 63.2, 25.5, 5581, 600 }, + [14] = { 63.2, 25.5, 5581, 300 }, + [15] = { 62.2, 24.9, 5581, 600 }, + [16] = { 64.1, 24.4, 5581, 600 }, + [17] = { 63.7, 21.8, 5581, 600 }, + }, + ["lvl"] = "30-33", + ["rnk"] = "1", + }, + [62270] = { + ["coords"] = { + [1] = { 31.7, 91.4, 1, 600 }, + [2] = { 31, 91.2, 1, 600 }, + [3] = { 33.2, 88.5, 1, 600 }, + [4] = { 66.2, 27.7, 5581, 600 }, + [5] = { 62.3, 25.5, 5581, 600 }, + [6] = { 61.2, 25.2, 5581, 600 }, + [7] = { 63.5, 24.7, 5581, 600 }, + [8] = { 65.4, 24, 5581, 600 }, + [9] = { 63.6, 23.5, 5581, 600 }, + [10] = { 65.7, 22.5, 5581, 600 }, + [11] = { 64.5, 21.1, 5581, 600 }, + }, + ["lvl"] = "30-33", + ["rnk"] = "1", + }, + [62271] = { + ["coords"] = { + [1] = { 60.1, 14.4, 1519, 120 }, + [2] = { 56.9, 14.2, 1519, 120 }, + [3] = { 66.4, 12.7, 1519, 120 }, + [4] = { 53.8, 12.3, 1519, 120 }, + [5] = { 57.6, 11.8, 1519, 120 }, + [6] = { 69.8, 11.5, 1519, 120 }, + [7] = { 62, 11.2, 1519, 120 }, + [8] = { 59.2, 8.5, 1519, 120 }, + [9] = { 69.5, 7.2, 1519, 120 }, + [10] = { 67.6, 6.4, 1519, 120 }, + [11] = { 64.9, 6.2, 1519, 120 }, + [12] = { 61.5, 2.8, 1519, 120 }, + [13] = { 64.9, 2.2, 1519, 120 }, + [14] = { 48.7, 85.1, 5581, 120 }, + [15] = { 47, 85, 5581, 120 }, + [16] = { 52.1, 84.2, 5581, 120 }, + [17] = { 45.4, 84, 5581, 120 }, + [18] = { 47.4, 83.7, 5581, 120 }, + [19] = { 53.9, 83.5, 5581, 120 }, + [20] = { 49.7, 83.4, 5581, 120 }, + [21] = { 48.3, 82, 5581, 120 }, + [22] = { 53.8, 81.2, 5581, 120 }, + [23] = { 52.7, 80.8, 5581, 120 }, + [24] = { 51.3, 80.7, 5581, 120 }, + [25] = { 49.5, 78.9, 5581, 120 }, + [26] = { 51.3, 78.5, 5581, 120 }, + }, + ["lvl"] = "26-28", + }, + [62272] = { + ["coords"] = { + [1] = { 64.1, 11.4, 1519, 120 }, + [2] = { 60.2, 11.4, 1519, 120 }, + [3] = { 67.9, 9.7, 1519, 120 }, + [4] = { 65.6, 8.4, 1519, 120 }, + [5] = { 50.8, 8.1, 1519, 120 }, + [6] = { 62.8, 7.1, 1519, 120 }, + [7] = { 61.1, 4.9, 1519, 120 }, + [8] = { 67.9, 4.2, 1519, 120 }, + [9] = { 66.2, 3.7, 1519, 120 }, + [10] = { 50.9, 83.5, 5581, 120 }, + [11] = { 48.8, 83.5, 5581, 120 }, + [12] = { 52.9, 82.6, 5581, 120 }, + [13] = { 51.7, 81.9, 5581, 120 }, + [14] = { 43.7, 81.7, 5581, 120 }, + [15] = { 50.2, 81.2, 5581, 120 }, + [16] = { 49.3, 80, 5581, 120 }, + [17] = { 52.9, 79.6, 5581, 120 }, + [18] = { 52, 79.4, 5581, 120 }, + }, + ["lvl"] = "26-28", + }, + [62273] = { + ["coords"] = { + [1] = { 31.8, 89.1, 1, 120 }, + [2] = { 62.3, 22.1, 5581, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + ["rnk"] = "1", + }, + [62274] = { + ["coords"] = { + [1] = { 21.7, 91.8, 1, 120 }, + [2] = { 47.1, 26.2, 5581, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + ["rnk"] = "1", + }, + [62275] = { + ["coords"] = { + [1] = { 49.6, 67.5, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [62276] = { + ["coords"] = { + [1] = { 50.1, 68.6, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [62277] = { + ["coords"] = { + [1] = { 50, 67.4, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [62278] = { + ["coords"] = { + [1] = { 50.1, 67.7, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "32", + }, + [62279] = { + ["coords"] = { + [1] = { 43.8, 60.7, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "26", + }, + [62280] = { + ["coords"] = { + [1] = { 48.7, 46.5, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "48", + }, + [62281] = { + ["coords"] = { + [1] = { 32.7, 60.4, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "36", + }, + [62282] = { + ["coords"] = { + [1] = { 32.4, 60.8, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "36", + }, + [62283] = { + ["coords"] = { + [1] = { 32.4, 60.6, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [62284] = { + ["coords"] = { + [1] = { 32.3, 62.2, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [62285] = { + ["coords"] = { + [1] = { 33.2, 60, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [62286] = { + ["coords"] = { + [1] = { 71.1, 8.8, 1519, 120 }, + [2] = { 54.6, 82.1, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "24", + }, + [62287] = { + ["coords"] = { + [1] = { 34.1, 59.2, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "24", + }, + [62288] = { + ["coords"] = { + [1] = { 31.9, 59.3, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "28", + }, + [62289] = { + ["coords"] = { + [1] = { 31.6, 62.6, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "24", + }, + [62290] = { + ["coords"] = { + [1] = { 24.3, 39.5, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [62291] = { + ["coords"] = { + [1] = { 23.8, 39.1, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [62292] = { + ["coords"] = { + [1] = { 22.3, 46.7, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [62293] = { + ["coords"] = { + [1] = { 22.7, 47.3, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "32", + }, + [62294] = { + ["coords"] = { + [1] = { 22.4, 47.2, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [62295] = { + ["coords"] = { + [1] = { 48.5, 58, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "31", + }, + [62296] = { + ["coords"] = { + [1] = { 51.5, 48.5, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [62297] = { + ["coords"] = { + [1] = { 51.5, 48.3, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [62298] = { + ["coords"] = { + [1] = { 52.2, 41.1, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "34", + }, + [62299] = { + ["coords"] = { + [1] = { 34.4, 23.6, 5581, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + ["rnk"] = "1", + }, + [62300] = { + ["coords"] = { + [1] = { 51.3, 48.2, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [62301] = { + ["coords"] = { + [1] = { 51.3, 48.6, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [62302] = { + ["coords"] = { + [1] = { 51.2, 48.7, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [62303] = { + ["coords"] = { + [1] = { 51, 48.5, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [62304] = { + ["coords"] = { + [1] = { 50.4, 47.9, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [62305] = { + ["coords"] = { + [1] = { 50.1, 47.6, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "1", + }, + [62306] = { + ["coords"] = { + [1] = { 50.3, 47.4, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [62307] = { + ["coords"] = { + [1] = { 33.6, 58.8, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "31", + }, + [62308] = { + ["coords"] = { + [1] = { 63.4, 74.5, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [62309] = { + ["coords"] = { + [1] = { 63.2, 72.8, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [62310] = { + ["coords"] = { + [1] = { 63, 73.3, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [62311] = { + ["coords"] = { + [1] = { 63.1, 72.9, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "24", + }, + [62312] = { + ["coords"] = { + [1] = { 63.3, 73.3, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "34", + }, + [62313] = { + ["coords"] = { + [1] = { 63.2, 72.8, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "48", + }, + [62314] = { + ["coords"] = { + [1] = { 36.9, 78.6, 5561, 300 }, + [2] = { 37.4, 78.1, 5561, 300 }, + [3] = { 38.3, 77.6, 5561, 300 }, + [4] = { 32.6, 75.8, 5561, 300 }, + [5] = { 36.6, 75.7, 5561, 300 }, + [6] = { 34.7, 75.4, 5561, 300 }, + [7] = { 34.8, 74.6, 5561, 300 }, + [8] = { 35.3, 74.4, 5561, 300 }, + [9] = { 37.6, 74.1, 5561, 300 }, + [10] = { 35.3, 73.5, 5561, 300 }, + [11] = { 34.5, 73.3, 5561, 300 }, + [12] = { 36.1, 72.3, 5561, 300 }, + [13] = { 33.5, 72.1, 5561, 300 }, + [14] = { 34.4, 72, 5561, 300 }, + [15] = { 33.4, 71.1, 5561, 300 }, + [16] = { 34.6, 70.1, 5561, 300 }, + }, + ["lvl"] = "30-32", + }, + [62315] = { + ["coords"] = { + [1] = { 38, 78.6, 5561, 300 }, + [2] = { 37.1, 76.8, 5561, 300 }, + [3] = { 33.3, 76, 5561, 300 }, + [4] = { 33.5, 75.1, 5561, 300 }, + [5] = { 35.1, 75, 5561, 300 }, + [6] = { 35.8, 74.8, 5561, 300 }, + [7] = { 33.8, 73.8, 5561, 300 }, + [8] = { 33.2, 73.1, 5561, 300 }, + [9] = { 35, 72.7, 5561, 300 }, + [10] = { 35.2, 71.6, 5561, 300 }, + [11] = { 35.2, 70.1, 5561, 300 }, + [12] = { 33.6, 69.1, 5561, 300 }, + [13] = { 32.2, 69.1, 5561, 300 }, + [14] = { 29.7, 58.2, 5561, 300 }, + [15] = { 30, 57.6, 5561, 300 }, + [16] = { 30.6, 57.4, 5561, 300 }, + [17] = { 31, 57.2, 5561, 300 }, + }, + ["lvl"] = "31-33", + }, + [62316] = { + ["coords"] = { + [1] = { 34.6, 75.7, 5561, 300 }, + [2] = { 35.4, 75.1, 5561, 300 }, + [3] = { 32.8, 74.8, 5561, 300 }, + [4] = { 34.1, 74.8, 5561, 300 }, + [5] = { 36.5, 74.8, 5561, 300 }, + [6] = { 35.9, 73.3, 5561, 300 }, + [7] = { 33.8, 72.9, 5561, 300 }, + [8] = { 34.6, 71.5, 5561, 300 }, + [9] = { 34.2, 70.9, 5561, 300 }, + [10] = { 32.7, 69.2, 5561, 300 }, + }, + ["lvl"] = "32-33", + }, + [62317] = { + ["coords"] = { + [1] = { 33.9, 72.5, 5561, 300 }, + }, + ["lvl"] = "33", + }, + [62318] = { + ["coords"] = { + [1] = { 48.2, 83.5, 5561, 300 }, + [2] = { 47.3, 83.1, 5561, 300 }, + [3] = { 45.7, 82.6, 5561, 300 }, + [4] = { 44.1, 82.4, 5561, 300 }, + [5] = { 43.7, 81.3, 5561, 120 }, + [6] = { 46.7, 81, 5561, 300 }, + [7] = { 49.5, 81, 5561, 300 }, + [8] = { 47.7, 80.8, 5561, 300 }, + [9] = { 47.6, 80.5, 5561, 300 }, + [10] = { 45.9, 80.4, 5561, 300 }, + [11] = { 48.1, 80, 5561, 300 }, + [12] = { 49.9, 79.9, 5561, 300 }, + [13] = { 46.1, 79.5, 5561, 300 }, + [14] = { 45.9, 78.5, 5561, 300 }, + [15] = { 47.5, 77.1, 5561, 300 }, + [16] = { 48.4, 76.8, 5561, 300 }, + }, + ["lvl"] = "30-32", + }, + [62319] = { + ["coords"] = { + [1] = { 45, 83.4, 5561, 300 }, + [2] = { 44.6, 82.6, 5561, 300 }, + [3] = { 46.4, 82.3, 5561, 300 }, + [4] = { 43.5, 82.1, 5561, 300 }, + [5] = { 48.4, 82.1, 5561, 300 }, + [6] = { 46, 81.5, 5561, 300 }, + [7] = { 47.4, 81.1, 5561, 300 }, + [8] = { 48.7, 81, 5561, 300 }, + [9] = { 47.9, 80.8, 5561, 300 }, + [10] = { 46.8, 80.1, 5561, 300 }, + [11] = { 47.7, 79, 5561, 300 }, + [12] = { 49.7, 78.9, 5561, 300 }, + [13] = { 48.6, 78.4, 5561, 300 }, + [14] = { 46.6, 77.6, 5561, 300 }, + [15] = { 48.9, 77.5, 5561, 300 }, + [16] = { 47.5, 77.1, 5561, 300 }, + }, + ["lvl"] = "31-33", + }, + [62320] = { + ["coords"] = { + [1] = { 49.2, 78.2, 5561, 300 }, + }, + ["lvl"] = "33", + }, + [62321] = { + ["coords"] = { + [1] = { 64.2, 87.2, 5561, 300 }, + [2] = { 64.6, 86.4, 5561, 300 }, + [3] = { 65.3, 86.1, 5561, 300 }, + [4] = { 64.2, 85.7, 5561, 300 }, + [5] = { 64.5, 85, 5561, 300 }, + [6] = { 65.6, 84.9, 5561, 300 }, + [7] = { 64.7, 83.7, 5561, 300 }, + [8] = { 46.1, 56.9, 5561, 300 }, + [9] = { 52.4, 53.8, 5561, 300 }, + [10] = { 52.8, 53.3, 5561, 300 }, + [11] = { 53.8, 52.3, 5561, 300 }, + [12] = { 55.3, 51.5, 5561, 300 }, + [13] = { 55.1, 50.5, 5561, 300 }, + [14] = { 53.5, 50.5, 5561, 300 }, + [15] = { 55.6, 48.2, 5561, 300 }, + [16] = { 53.8, 47.9, 5561, 300 }, + [17] = { 33.8, 31, 5561, 300 }, + [18] = { 32.6, 30.8, 5561, 300 }, + [19] = { 33, 29.8, 5561, 300 }, + }, + ["lvl"] = "27-29", + }, + [62322] = { + ["coords"] = { + [1] = { 49.7, 52.9, 5561, 300 }, + [2] = { 49.1, 52.4, 5561, 300 }, + [3] = { 50.1, 52, 5561, 300 }, + [4] = { 49.3, 51.2, 5561, 300 }, + [5] = { 49, 51.1, 5561, 300 }, + [6] = { 48.1, 51, 5561, 300 }, + [7] = { 50.4, 50.7, 5561, 300 }, + [8] = { 48.4, 50.2, 5561, 300 }, + [9] = { 48, 49.8, 5561, 300 }, + [10] = { 46.1, 49.5, 5561, 300 }, + [11] = { 48.4, 49.4, 5561, 300 }, + [12] = { 48.5, 49, 5561, 300 }, + [13] = { 46.5, 48.9, 5561, 300 }, + [14] = { 48.8, 48.8, 5561, 300 }, + [15] = { 44.9, 48.6, 5561, 300 }, + [16] = { 44.2, 48.5, 5561, 300 }, + [17] = { 48.2, 48.5, 5561, 300 }, + [18] = { 47.6, 48.4, 5561, 300 }, + [19] = { 45.2, 47.6, 5561, 300 }, + [20] = { 48.4, 47.6, 5561, 300 }, + [21] = { 47.7, 47.2, 5561, 300 }, + [22] = { 49.3, 47.2, 5561, 300 }, + [23] = { 48.8, 46.9, 5561, 300 }, + [24] = { 46.9, 46.7, 5561, 300 }, + [25] = { 45.3, 46.5, 5561, 300 }, + [26] = { 49.6, 46.1, 5561, 300 }, + [27] = { 47.6, 45.9, 5561, 300 }, + [28] = { 45.7, 45.8, 5561, 300 }, + [29] = { 46.4, 45.6, 5561, 300 }, + [30] = { 48.7, 45.3, 5561, 300 }, + [31] = { 50.3, 45.1, 5561, 300 }, + [32] = { 46.2, 44.7, 5561, 300 }, + [33] = { 48.4, 44.7, 5561, 300 }, + [34] = { 49.8, 44.4, 5561, 300 }, + [35] = { 46.9, 44, 5561, 300 }, + [36] = { 45.9, 43.8, 5561, 300 }, + [37] = { 47.4, 43.7, 5561, 300 }, + [38] = { 46.1, 42.9, 5561, 300 }, + [39] = { 45.2, 42.7, 5561, 300 }, + [40] = { 47.5, 42.6, 5561, 300 }, + [41] = { 45.5, 42.3, 5561, 300 }, + }, + ["lvl"] = "28-30", + }, + [62323] = { + ["coords"] = { + [1] = { 49.6, 51.9, 5561, 300 }, + [2] = { 48.7, 50.6, 5561, 300 }, + [3] = { 45.5, 49, 5561, 300 }, + [4] = { 47.8, 48.4, 5561, 300 }, + [5] = { 47.4, 46.4, 5561, 300 }, + [6] = { 48.2, 45.7, 5561, 300 }, + [7] = { 49.9, 45.1, 5561, 300 }, + [8] = { 45.6, 43, 5561, 300 }, + }, + ["lvl"] = "28-30", + }, + [62324] = { + ["coords"] = { + [1] = { 35.5, 68, 5561, 300 }, + [2] = { 36, 67.3, 5561, 300 }, + [3] = { 35.4, 67.2, 5561, 300 }, + [4] = { 34.9, 66.1, 5561, 300 }, + [5] = { 35.7, 66.1, 5561, 300 }, + [6] = { 35.4, 65.1, 5561, 300 }, + [7] = { 36, 65.1, 5561, 300 }, + [8] = { 34.6, 65.1, 5561, 300 }, + [9] = { 34.9, 64.6, 5561, 300 }, + [10] = { 34.8, 64.4, 5561, 300 }, + [11] = { 35, 64.4, 5561, 300 }, + [12] = { 34.6, 64.4, 5561, 300 }, + [13] = { 34.5, 64.2, 5561, 300 }, + [14] = { 35.1, 64, 5561, 300 }, + [15] = { 35.4, 63.9, 5561, 300 }, + [16] = { 52.2, 54, 5561, 300 }, + [17] = { 51.9, 51.4, 5561, 300 }, + [18] = { 52.3, 50.3, 5561, 300 }, + [19] = { 51.8, 50.2, 5561, 300 }, + [20] = { 51.7, 50, 5561, 300 }, + }, + ["lvl"] = "27-29", + }, + [62325] = { + ["coords"] = { + [1] = { 48.2, 59.7, 5561, 300 }, + [2] = { 49.2, 58.4, 5561, 300 }, + [3] = { 48.7, 58.3, 5561, 300 }, + [4] = { 50.3, 57.4, 5561, 300 }, + [5] = { 50.7, 57.1, 5561, 300 }, + [6] = { 51.4, 57, 5561, 300 }, + [7] = { 51.1, 56.4, 5561, 300 }, + [8] = { 50.6, 56.1, 5561, 300 }, + [9] = { 51.5, 55.6, 5561, 300 }, + [10] = { 50.4, 55.4, 5561, 300 }, + [11] = { 51, 55.3, 5561, 300 }, + [12] = { 57.3, 51.5, 5561, 300 }, + [13] = { 56, 50.8, 5561, 300 }, + [14] = { 57, 50.7, 5561, 300 }, + [15] = { 55.2, 48.9, 5561, 300 }, + [16] = { 52.8, 47.1, 5561, 300 }, + [17] = { 53.6, 46.9, 5561, 300 }, + [18] = { 52.6, 46.2, 5561, 300 }, + [19] = { 53.5, 46.1, 5561, 300 }, + [20] = { 52.8, 45.5, 5561, 300 }, + [21] = { 51.9, 45.4, 5561, 300 }, + [22] = { 52.3, 45.3, 5561, 300 }, + [23] = { 52.3, 44.1, 5561, 300 }, + [24] = { 51.6, 43.9, 5561, 300 }, + [25] = { 50.9, 43.5, 5561, 300 }, + [26] = { 50.7, 43, 5561, 300 }, + [27] = { 51.7, 42.3, 5561, 300 }, + [28] = { 52.7, 42, 5561, 300 }, + }, + ["lvl"] = "27-29", + }, + [62326] = { + ["coords"] = { + [1] = { 65.8, 86.7, 5561, 300 }, + [2] = { 66.1, 85.6, 5561, 300 }, + [3] = { 65, 84.7, 5561, 300 }, + [4] = { 65.7, 83.8, 5561, 300 }, + [5] = { 64, 72.1, 5561, 300 }, + [6] = { 63.8, 72, 5561, 300 }, + [7] = { 63.7, 71.3, 5561, 300 }, + [8] = { 63.5, 70.7, 5561, 300 }, + [9] = { 64.1, 70.6, 5561, 300 }, + [10] = { 63.5, 70.5, 5561, 300 }, + [11] = { 63.8, 69.8, 5561, 300 }, + [12] = { 47.6, 59.7, 5561, 300 }, + [13] = { 48.7, 59.3, 5561, 300 }, + [14] = { 48.1, 58.6, 5561, 300 }, + [15] = { 46.3, 57.5, 5561, 300 }, + [16] = { 46.5, 57, 5561, 300 }, + [17] = { 53.3, 53.6, 5561, 300 }, + [18] = { 53.7, 52.8, 5561, 300 }, + [19] = { 56.7, 51.3, 5561, 300 }, + [20] = { 54.8, 51.3, 5561, 300 }, + [21] = { 51.5, 51, 5561, 300 }, + [22] = { 54.3, 50.9, 5561, 300 }, + [23] = { 52, 50.6, 5561, 300 }, + [24] = { 52, 43.9, 5561, 300 }, + [25] = { 52.7, 43.2, 5561, 300 }, + [26] = { 52.4, 43.1, 5561, 300 }, + [27] = { 52.7, 42.9, 5561, 300 }, + [28] = { 53.3, 42.9, 5561, 300 }, + [29] = { 53.1, 42.7, 5561, 300 }, + }, + ["lvl"] = "29-31", + }, + [62327] = { + ["coords"] = { + [1] = { 37.9, 71.4, 5561, 120 }, + [2] = { 40.1, 71.4, 5561, 120 }, + [3] = { 38.9, 71.3, 5561, 120 }, + [4] = { 38.3, 71, 5561, 120 }, + [5] = { 39.6, 70.5, 5561, 120 }, + [6] = { 38.9, 70, 5561, 120 }, + [7] = { 39, 69.9, 5561, 120 }, + [8] = { 37.9, 69.6, 5561, 120 }, + }, + ["lvl"] = "30-32", + }, + [62328] = { + ["coords"] = { + [1] = { 38.6, 71.7, 5561, 120 }, + [2] = { 39.1, 71, 5561, 120 }, + [3] = { 37.7, 70.7, 5561, 120 }, + [4] = { 38.5, 70.5, 5561, 120 }, + [5] = { 38.1, 69.9, 5561, 120 }, + [6] = { 38.2, 69.5, 5561, 120 }, + }, + ["lvl"] = "30-32", + }, + [62329] = { + ["coords"] = { + [1] = { 39.7, 23.2, 5561, 300 }, + [2] = { 38.8, 22.7, 5561, 300 }, + [3] = { 37.1, 21.7, 5561, 300 }, + [4] = { 38.1, 20.3, 5561, 300 }, + [5] = { 36.7, 20.3, 5561, 300 }, + [6] = { 36.7, 20.1, 5561, 300 }, + [7] = { 41.1, 19.9, 5561, 300 }, + [8] = { 36.8, 19.5, 5561, 300 }, + [9] = { 40.1, 19.4, 5561, 300 }, + [10] = { 39.3, 19.3, 5561, 300 }, + [11] = { 40.8, 19.2, 5561, 300 }, + [12] = { 37, 19.2, 5561, 300 }, + [13] = { 40.8, 17.5, 5561, 300 }, + }, + ["lvl"] = "29-31", + }, + [62330] = { + ["coords"] = { + [1] = { 40.2, 22.1, 5561, 300 }, + [2] = { 38.1, 21.5, 5561, 300 }, + [3] = { 39.4, 21.1, 5561, 300 }, + [4] = { 37, 20.9, 5561, 300 }, + [5] = { 40.2, 20.3, 5561, 300 }, + [6] = { 37.1, 20.2, 5561, 300 }, + [7] = { 36.8, 20.1, 5561, 300 }, + [8] = { 41.4, 19.9, 5561, 300 }, + [9] = { 36.7, 19.6, 5561, 300 }, + [10] = { 40.5, 18.4, 5561, 300 }, + [11] = { 41.5, 18.3, 5561, 300 }, + [12] = { 39.5, 18.1, 5561, 300 }, + }, + ["lvl"] = "29-31", + }, + [62331] = { + ["coords"] = { + [1] = { 37, 20.9, 5561, 300 }, + [2] = { 37, 20.8, 5561, 300 }, + [3] = { 37.1, 20.1, 5561, 300 }, + [4] = { 39.6, 19.9, 5561, 300 }, + [5] = { 41.6, 19.1, 5561, 300 }, + [6] = { 41.1, 18.7, 5561, 300 }, + [7] = { 40.3, 17.6, 5561, 300 }, + }, + ["lvl"] = "30-32", + }, + [62332] = { + ["coords"] = { + [1] = { 41.4, 19.4, 5561, 300 }, + }, + ["lvl"] = "32", + }, + [62333] = { + ["coords"] = { + [1] = { 36.6, 19.3, 5561, 300 }, + }, + ["lvl"] = "32", + }, + [62334] = { + ["coords"] = { + [1] = { 36.8, 18.8, 5561, 300 }, + }, + ["lvl"] = "32", + }, + [62335] = { + ["coords"] = { + [1] = { 52.5, 78.8, 5561, 300 }, + [2] = { 54.1, 78.8, 5561, 300 }, + [3] = { 53.7, 77.6, 5561, 300 }, + [4] = { 53, 76.5, 5561, 300 }, + [5] = { 51.7, 74.9, 5561, 300 }, + [6] = { 51.2, 74.7, 5561, 300 }, + [7] = { 52.8, 74, 5561, 300 }, + [8] = { 50.1, 73.8, 5561, 300 }, + [9] = { 53.3, 73.2, 5561, 300 }, + [10] = { 54.4, 72.1, 5561, 300 }, + [11] = { 53.3, 71.5, 5561, 300 }, + [12] = { 53.9, 70.4, 5561, 300 }, + }, + ["lvl"] = "31-33", + }, + [62336] = { + ["coords"] = { + [1] = { 53.5, 79.4, 5561, 300 }, + [2] = { 53.6, 76.9, 5561, 300 }, + [3] = { 53.8, 76.8, 5561, 300 }, + [4] = { 51.7, 76.4, 5561, 300 }, + [5] = { 52.5, 76.3, 5561, 300 }, + [6] = { 53.1, 75.8, 5561, 300 }, + [7] = { 52.5, 75.1, 5561, 300 }, + [8] = { 50.6, 74.1, 5561, 300 }, + [9] = { 52.8, 74.1, 5561, 300 }, + [10] = { 51.5, 73.8, 5561, 300 }, + [11] = { 52.3, 73.3, 5561, 300 }, + [12] = { 54.3, 73, 5561, 300 }, + }, + ["lvl"] = "31-33", + }, + [62337] = { + ["coords"] = { + [1] = { 18.7, 20.9, 139, 300 }, + [2] = { 18, 20.3, 139, 300 }, + [3] = { 18.3, 20.1, 139, 300 }, + [4] = { 17.4, 19.5, 139, 300 }, + [5] = { 17.1, 18, 139, 300 }, + [6] = { 16.7, 17.5, 139, 300 }, + [7] = { 16.8, 17.5, 139, 300 }, + [8] = { 16.4, 17.1, 139, 300 }, + [9] = { 16.4, 17, 139, 300 }, + [10] = { 16.5, 17, 139, 300 }, + [11] = { 16.3, 17, 139, 300 }, + [12] = { 16.5, 16.9, 139, 300 }, + [13] = { 16.7, 16.8, 139, 300 }, + [14] = { 16.3, 16.7, 139, 300 }, + [15] = { 61.8, 82, 5225, 300 }, + [16] = { 60.9, 81.3, 5225, 300 }, + [17] = { 61.2, 81, 5225, 300 }, + [18] = { 60.2, 80.3, 5225, 300 }, + [19] = { 59.7, 78.5, 5225, 300 }, + [20] = { 59.3, 77.8, 5225, 300 }, + [21] = { 59.4, 77.8, 5225, 300 }, + [22] = { 58.9, 77.3, 5225, 300 }, + [23] = { 58.9, 77.2, 5225, 300 }, + [24] = { 59.1, 77.2, 5225, 300 }, + [25] = { 58.8, 77.1, 5225, 300 }, + [26] = { 59, 77, 5225, 300 }, + [27] = { 59.2, 76.9, 5225, 300 }, + [28] = { 58.8, 76.8, 5225, 300 }, + }, + ["lvl"] = "53-54", + }, + [62338] = { + ["coords"] = { + [1] = { 33.3, 79, 5561, 300 }, + [2] = { 32.8, 76.6, 5561, 300 }, + [3] = { 31.2, 76, 5561, 300 }, + [4] = { 29.9, 73.2, 5561, 300 }, + [5] = { 31.1, 71, 5561, 300 }, + [6] = { 30, 69.8, 5561, 300 }, + [7] = { 46.1, 49, 5561, 300 }, + [8] = { 47.1, 48.2, 5561, 300 }, + [9] = { 47.9, 46.8, 5561, 300 }, + [10] = { 49.6, 46.6, 5561, 300 }, + [11] = { 45.4, 46.6, 5561, 300 }, + [12] = { 46.1, 46.2, 5561, 300 }, + [13] = { 48.6, 45.7, 5561, 300 }, + [14] = { 44.3, 45.5, 5561, 300 }, + [15] = { 47.7, 44.9, 5561, 300 }, + [16] = { 44.9, 44.8, 5561, 300 }, + [17] = { 43.5, 44.5, 5561, 300 }, + [18] = { 48.9, 44.5, 5561, 300 }, + [19] = { 45.3, 43, 5561, 300 }, + [20] = { 48.9, 42.7, 5561, 300 }, + [21] = { 48, 42.6, 5561, 300 }, + [22] = { 46.5, 42, 5561, 300 }, + }, + ["lvl"] = "27-30", + }, + [62339] = { + ["coords"] = { + [1] = { 29.1, 60.9, 5561, 300 }, + [2] = { 28.8, 58.7, 5561, 300 }, + [3] = { 29.4, 57.4, 5561, 300 }, + [4] = { 27.9, 53.3, 5561, 300 }, + [5] = { 28.7, 52.4, 5561, 300 }, + [6] = { 48.8, 46.7, 5561, 300 }, + [7] = { 47.5, 43.5, 5561, 300 }, + [8] = { 46.3, 43.2, 5561, 300 }, + }, + ["lvl"] = "29-31", + }, + [62340] = { + ["coords"] = { + [1] = { 47.2, 91.2, 5561, 300 }, + [2] = { 46.4, 90.6, 5561, 300 }, + [3] = { 52.7, 90.5, 5561, 300 }, + [4] = { 50.8, 90.2, 5561, 300 }, + [5] = { 54.2, 89.7, 5561, 300 }, + [6] = { 49, 87.5, 5561, 300 }, + [7] = { 45.1, 87.5, 5561, 300 }, + [8] = { 45.4, 87.3, 5561, 300 }, + [9] = { 51.4, 87.2, 5561, 300 }, + [10] = { 47.9, 87, 5561, 300 }, + [11] = { 55.4, 86.3, 5561, 300 }, + [12] = { 52.7, 86.2, 5561, 300 }, + [13] = { 47.3, 86.1, 5561, 300 }, + [14] = { 51.8, 85.4, 5561, 300 }, + [15] = { 50.3, 84.8, 5561, 300 }, + [16] = { 54.1, 84.7, 5561, 300 }, + }, + ["lvl"] = "28-31", + }, + [62341] = { + ["coords"] = { + [1] = { 0.7, 1.8, 40, 300 }, + [2] = { 46.1, 90.8, 5561, 300 }, + [3] = { 56, 90.2, 5561, 300 }, + [4] = { 45.5, 90, 5561, 300 }, + [5] = { 49.4, 89.8, 5561, 300 }, + [6] = { 48, 89.3, 5561, 300 }, + [7] = { 46.4, 89, 5561, 300 }, + [8] = { 47.8, 88.8, 5561, 300 }, + [9] = { 45.7, 88.5, 5561, 300 }, + [10] = { 47.3, 87.5, 5561, 300 }, + [11] = { 49.2, 87.2, 5561, 300 }, + [12] = { 56.7, 87.2, 5561, 300 }, + [13] = { 50.9, 87.1, 5561, 300 }, + [14] = { 46.9, 84.9, 5561, 300 }, + [15] = { 48.3, 64, 5561, 120 }, + [16] = { 50.2, 63.3, 5561, 120 }, + [17] = { 52.1, 61.9, 5561, 120 }, + [18] = { 52.9, 60.9, 5561, 120 }, + [19] = { 53.6, 60.9, 5561, 120 }, + [20] = { 54.1, 59.9, 5561, 120 }, + [21] = { 55.2, 59.5, 5561, 120 }, + }, + ["lvl"] = "30-32", + }, + [62342] = { + ["coords"] = { + [1] = { 31.8, 56, 5561, 300 }, + [2] = { 31, 55.9, 5561, 300 }, + [3] = { 31.3, 53.8, 5561, 300 }, + [4] = { 32.4, 53, 5561, 300 }, + [5] = { 29.9, 52.7, 5561, 300 }, + [6] = { 31.3, 52.4, 5561, 300 }, + [7] = { 29.4, 51.7, 5561, 300 }, + [8] = { 29.5, 50.2, 5561, 300 }, + [9] = { 30.8, 50, 5561, 300 }, + [10] = { 33.6, 50, 5561, 300 }, + [11] = { 32.3, 48.8, 5561, 300 }, + [12] = { 30.4, 48.7, 5561, 300 }, + [13] = { 33.8, 46.5, 5561, 300 }, + [14] = { 35.9, 45.7, 5561, 300 }, + [15] = { 34.1, 45.5, 5561, 300 }, + [16] = { 34, 44.6, 5561, 300 }, + [17] = { 37.9, 44.2, 5561, 300 }, + [18] = { 35.3, 44, 5561, 300 }, + [19] = { 36.3, 43.5, 5561, 300 }, + [20] = { 37.1, 43, 5561, 300 }, + [21] = { 35.6, 41.8, 5561, 300 }, + [22] = { 34.8, 41.6, 5561, 300 }, + [23] = { 34.1, 40.1, 5561, 300 }, + [24] = { 34.3, 38, 5561, 300 }, + [25] = { 33.5, 37, 5561, 300 }, + [26] = { 33.8, 35.5, 5561, 300 }, + [27] = { 34.2, 34.5, 5561, 300 }, + [28] = { 33.6, 33.5, 5561, 300 }, + }, + ["lvl"] = "29-31", + }, + [62343] = { + ["coords"] = { + [1] = { 30.6, 54.7, 5561, 300 }, + [2] = { 32.1, 54.6, 5561, 300 }, + [3] = { 30.5, 53.2, 5561, 300 }, + [4] = { 31.8, 53.1, 5561, 300 }, + [5] = { 33.4, 52.5, 5561, 300 }, + [6] = { 33.8, 51.5, 5561, 300 }, + [7] = { 31.4, 51.2, 5561, 300 }, + [8] = { 30.2, 50.6, 5561, 300 }, + [9] = { 33.2, 49, 5561, 300 }, + [10] = { 31, 48.5, 5561, 300 }, + [11] = { 31.8, 48.1, 5561, 300 }, + [12] = { 33.9, 47.8, 5561, 300 }, + [13] = { 34.6, 39.2, 5561, 300 }, + }, + ["lvl"] = "30-32", + }, + [62344] = { + ["coords"] = { + [1] = { 31.2, 53.2, 5561, 300 }, + }, + ["lvl"] = "32", + }, + [62345] = { + ["coords"] = { + [1] = { 41.7, 65, 5561, 300 }, + [2] = { 41.7, 62.9, 5561, 300 }, + [3] = { 40.9, 62, 5561, 300 }, + [4] = { 39.9, 59.6, 5561, 300 }, + [5] = { 38.9, 57.8, 5561, 300 }, + [6] = { 37.6, 57.7, 5561, 300 }, + [7] = { 40.1, 57.7, 5561, 300 }, + [8] = { 41, 57.2, 5561, 300 }, + [9] = { 37.3, 57.1, 5561, 300 }, + [10] = { 39.9, 56.9, 5561, 300 }, + [11] = { 40.9, 56.6, 5561, 300 }, + [12] = { 39, 56.4, 5561, 300 }, + [13] = { 39.7, 56.2, 5561, 300 }, + [14] = { 41.3, 56, 5561, 300 }, + [15] = { 41.9, 55, 5561, 300 }, + [16] = { 42, 53.6, 5561, 300 }, + [17] = { 38.9, 53, 5561, 300 }, + [18] = { 42.5, 52.5, 5561, 300 }, + [19] = { 38.8, 52.3, 5561, 300 }, + [20] = { 41.5, 51.6, 5561, 300 }, + [21] = { 43, 51.3, 5561, 300 }, + [22] = { 38.9, 50.9, 5561, 300 }, + [23] = { 39.5, 50.8, 5561, 300 }, + [24] = { 42.1, 50.6, 5561, 300 }, + [25] = { 43, 50.3, 5561, 300 }, + [26] = { 44, 50.2, 5561, 300 }, + [27] = { 40.6, 50, 5561, 300 }, + [28] = { 39.5, 49.4, 5561, 300 }, + [29] = { 41.8, 49.3, 5561, 300 }, + [30] = { 43, 49, 5561, 300 }, + [31] = { 40.5, 48.8, 5561, 300 }, + [32] = { 42.5, 48.8, 5561, 300 }, + [33] = { 41.1, 48.5, 5561, 300 }, + [34] = { 38.7, 48.2, 5561, 300 }, + [35] = { 37.7, 48, 5561, 300 }, + [36] = { 42.3, 47.9, 5561, 300 }, + [37] = { 41.5, 47.8, 5561, 300 }, + [38] = { 40.4, 47.1, 5561, 300 }, + [39] = { 39.2, 46.8, 5561, 300 }, + [40] = { 38.5, 46.8, 5561, 300 }, + [41] = { 41.3, 24.9, 5561, 300 }, + [42] = { 40.6, 23.7, 5561, 300 }, + [43] = { 42.2, 22.7, 5561, 300 }, + [44] = { 40.9, 22.5, 5561, 300 }, + [45] = { 41.5, 21.8, 5561, 300 }, + }, + ["lvl"] = "29-31", + }, + [62346] = { + ["coords"] = { + [1] = { 12.1, 2.4, 40, 300 }, + [2] = { 11.4, 1.8, 40, 300 }, + [3] = { 2.5, 1.3, 40, 300 }, + [4] = { 12.2, 1.2, 40, 300 }, + [5] = { 3, 1.2, 40, 300 }, + [6] = { 14.2, 0.7, 40, 300 }, + [7] = { 68.9, 90.8, 5561, 300 }, + [8] = { 68.1, 90.2, 5561, 300 }, + [9] = { 58.1, 89.6, 5561, 300 }, + [10] = { 69.1, 89.5, 5561, 300 }, + [11] = { 58.7, 89.5, 5561, 300 }, + [12] = { 71.3, 89, 5561, 300 }, + [13] = { 72, 87.8, 5561, 300 }, + [14] = { 72.8, 87, 5561, 300 }, + [15] = { 71.4, 87, 5561, 300 }, + [16] = { 59.5, 86.6, 5561, 300 }, + [17] = { 60.4, 86.3, 5561, 300 }, + [18] = { 73.6, 86.3, 5561, 300 }, + [19] = { 74.1, 85.8, 5561, 300 }, + [20] = { 74.3, 84.2, 5561, 300 }, + [21] = { 61.5, 83.7, 5561, 300 }, + [22] = { 68.1, 83.6, 5561, 300 }, + [23] = { 62.2, 83, 5561, 300 }, + [24] = { 67.4, 82.9, 5561, 300 }, + [25] = { 68.6, 82.4, 5561, 300 }, + [26] = { 66.3, 80.9, 5561, 300 }, + [27] = { 67.6, 80.7, 5561, 300 }, + [28] = { 65.8, 79.7, 5561, 300 }, + [29] = { 67.1, 66.7, 5561, 300 }, + [30] = { 65.9, 66.1, 5561, 300 }, + [31] = { 67.6, 65.7, 5561, 300 }, + [32] = { 65.6, 64.7, 5561, 300 }, + [33] = { 66.2, 63.3, 5561, 300 }, + [34] = { 67, 58.3, 5561, 300 }, + [35] = { 68, 58.1, 5561, 300 }, + [36] = { 67.3, 56.3, 5561, 300 }, + [37] = { 71.4, 52, 5561, 300 }, + [38] = { 70.6, 51.9, 5561, 300 }, + [39] = { 73.8, 49.9, 5561, 300 }, + [40] = { 71.6, 49.9, 5561, 300 }, + [41] = { 71.5, 49.4, 5561, 300 }, + [42] = { 73.9, 49.1, 5561, 300 }, + [43] = { 72.5, 48.2, 5561, 300 }, + [44] = { 46.6, 34.8, 5561, 300 }, + [45] = { 45.9, 34.1, 5561, 300 }, + [46] = { 44.3, 33.6, 5561, 300 }, + [47] = { 43.1, 28.6, 5561, 300 }, + [48] = { 44.6, 25.4, 5561, 300 }, + [49] = { 43.4, 24.6, 5561, 300 }, + [50] = { 47.8, 20.4, 5561, 300 }, + [51] = { 49.1, 16.1, 5561, 300 }, + [52] = { 56.5, 13.1, 5561, 300 }, + [53] = { 56.9, 12.4, 5561, 300 }, + [54] = { 49.6, 7, 5561, 300 }, + }, + ["lvl"] = "29-31", + }, + [62347] = { + ["coords"] = { + [1] = { 11.4, 2, 40, 300 }, + [2] = { 12.8, 1.8, 40, 300 }, + [3] = { 3.1, 1.1, 40, 300 }, + [4] = { 13.1, 0.6, 40, 300 }, + [5] = { 14.4, 0.6, 40, 300 }, + [6] = { 68.2, 90.4, 5561, 300 }, + [7] = { 69.7, 90.2, 5561, 300 }, + [8] = { 58.8, 89.4, 5561, 300 }, + [9] = { 70.1, 88.8, 5561, 300 }, + [10] = { 71.5, 88.8, 5561, 300 }, + [11] = { 59.2, 88.1, 5561, 300 }, + [12] = { 73, 87, 5561, 300 }, + [13] = { 73.1, 86.8, 5561, 300 }, + [14] = { 72.3, 86.6, 5561, 300 }, + [15] = { 60.6, 85.4, 5561, 300 }, + [16] = { 73.4, 85.3, 5561, 300 }, + [17] = { 74.8, 84.7, 5561, 300 }, + [18] = { 61.4, 83.2, 5561, 300 }, + [19] = { 61.8, 83.1, 5561, 300 }, + [20] = { 66.9, 83.1, 5561, 300 }, + [21] = { 66.3, 82.8, 5561, 300 }, + [22] = { 69.3, 82.3, 5561, 300 }, + [23] = { 67, 82, 5561, 300 }, + [24] = { 68.8, 81.4, 5561, 300 }, + [25] = { 66.9, 79.8, 5561, 300 }, + [26] = { 66.8, 78, 5561, 300 }, + [27] = { 67.5, 67.5, 5561, 300 }, + [28] = { 66.4, 66.1, 5561, 300 }, + [29] = { 65.8, 66, 5561, 300 }, + [30] = { 66.8, 64.5, 5561, 300 }, + [31] = { 66.5, 63.3, 5561, 300 }, + [32] = { 65.6, 63.2, 5561, 300 }, + [33] = { 67.4, 58, 5561, 300 }, + [34] = { 67.6, 57.2, 5561, 300 }, + [35] = { 71.8, 52.7, 5561, 300 }, + [36] = { 69.3, 51.7, 5561, 300 }, + [37] = { 69.9, 51.1, 5561, 300 }, + [38] = { 71.9, 50.8, 5561, 300 }, + [39] = { 70.5, 50.8, 5561, 300 }, + [40] = { 73.2, 50.2, 5561, 300 }, + [41] = { 71.9, 48.6, 5561, 300 }, + [42] = { 73.1, 48.6, 5561, 300 }, + [43] = { 73.9, 48, 5561, 300 }, + [44] = { 46.8, 34.9, 5561, 300 }, + [45] = { 44.5, 34.7, 5561, 300 }, + [46] = { 47.1, 34.3, 5561, 300 }, + [47] = { 44, 33.9, 5561, 300 }, + [48] = { 46.5, 33.7, 5561, 300 }, + [49] = { 43.9, 28.2, 5561, 300 }, + [50] = { 41.5, 27.8, 5561, 300 }, + [51] = { 40.7, 27.7, 5561, 300 }, + [52] = { 44.4, 27.4, 5561, 300 }, + [53] = { 42, 27, 5561, 300 }, + [54] = { 47.6, 18.5, 5561, 300 }, + [55] = { 56.1, 13.1, 5561, 300 }, + [56] = { 50.3, 10.8, 5561, 300 }, + [57] = { 58.1, 10.8, 5561, 300 }, + [58] = { 50.7, 7.9, 5561, 300 }, + }, + ["lvl"] = "29-31", + }, + [62348] = { + ["coords"] = { + [1] = { 62.2, 83.2, 5561, 300 }, + [2] = { 45.3, 35.2, 5561, 300 }, + [3] = { 40.9, 27.9, 5561, 300 }, + [4] = { 43.2, 27.8, 5561, 300 }, + [5] = { 43.8, 27.4, 5561, 300 }, + [6] = { 44.4, 26.3, 5561, 300 }, + [7] = { 42.7, 25.5, 5561, 300 }, + [8] = { 41.8, 25.5, 5561, 300 }, + [9] = { 45.4, 25.1, 5561, 300 }, + [10] = { 48.9, 19.8, 5561, 300 }, + [11] = { 54.9, 19.5, 5561, 300 }, + [12] = { 54.6, 18.5, 5561, 300 }, + [13] = { 49.6, 17.2, 5561, 300 }, + [14] = { 56.8, 12.5, 5561, 300 }, + [15] = { 56.6, 10.9, 5561, 300 }, + [16] = { 50.4, 7.3, 5561, 300 }, + }, + ["lvl"] = "30-32", + }, + [62349] = { + ["coords"] = { + [1] = { 40.9, 28.3, 5561, 300 }, + [2] = { 43.5, 27.5, 5561, 300 }, + [3] = { 45.1, 26.2, 5561, 300 }, + [4] = { 41.3, 26.1, 5561, 300 }, + [5] = { 41.9, 25.6, 5561, 300 }, + [6] = { 42.9, 25.3, 5561, 300 }, + [7] = { 45.3, 24.9, 5561, 300 }, + [8] = { 47.9, 20.1, 5561, 300 }, + [9] = { 54.8, 19.7, 5561, 300 }, + [10] = { 54.5, 19, 5561, 300 }, + [11] = { 55, 18.8, 5561, 300 }, + [12] = { 50.2, 16.4, 5561, 300 }, + [13] = { 48.9, 15.8, 5561, 300 }, + [14] = { 58, 13.3, 5561, 300 }, + [15] = { 57.8, 13.1, 5561, 300 }, + [16] = { 51, 8.3, 5561, 300 }, + }, + ["lvl"] = "31-33", + }, + [62350] = { + ["coords"] = { + [1] = { 54.9, 18.5, 5561, 300 }, + }, + ["lvl"] = "34", + ["rnk"] = "1", + }, + [62351] = { + ["coords"] = { + [1] = { 63.6, 60.2, 5561, 300 }, + [2] = { 64.1, 59, 5561, 300 }, + [3] = { 63.8, 48.3, 5561, 300 }, + [4] = { 60.7, 48, 5561, 300 }, + [5] = { 61.3, 46.1, 5561, 300 }, + [6] = { 64, 45.7, 5561, 300 }, + [7] = { 60.5, 44.8, 5561, 300 }, + [8] = { 59, 44.5, 5561, 300 }, + [9] = { 58.2, 35.5, 5561, 300 }, + [10] = { 59, 33.9, 5561, 300 }, + [11] = { 51.7, 31.1, 5561, 300 }, + [12] = { 53.4, 30.1, 5561, 300 }, + [13] = { 37.7, 28.2, 5561, 300 }, + [14] = { 36.6, 27.8, 5561, 300 }, + [15] = { 50.7, 27.2, 5561, 300 }, + [16] = { 48.6, 27.1, 5561, 300 }, + [17] = { 52.5, 27.1, 5561, 300 }, + [18] = { 36.4, 26.9, 5561, 300 }, + [19] = { 38.4, 26.5, 5561, 300 }, + [20] = { 53, 26.4, 5561, 300 }, + [21] = { 37.8, 26.2, 5561, 300 }, + [22] = { 53.8, 25.8, 5561, 300 }, + [23] = { 32, 24.7, 5561, 300 }, + [24] = { 31.1, 24.6, 5561, 300 }, + [25] = { 31.4, 24.6, 5561, 300 }, + [26] = { 30.7, 24.3, 5561, 300 }, + [27] = { 35.2, 20.1, 5561, 300 }, + [28] = { 31.7, 18.6, 5561, 300 }, + [29] = { 28.4, 18.2, 5561, 300 }, + [30] = { 33.9, 18.2, 5561, 300 }, + [31] = { 27.5, 18, 5561, 300 }, + [32] = { 34.8, 17.9, 5561, 300 }, + [33] = { 34.9, 17.1, 5561, 300 }, + [34] = { 26.8, 16.5, 5561, 300 }, + [35] = { 33.4, 15.8, 5561, 300 }, + [36] = { 32, 15.7, 5561, 300 }, + [37] = { 36.7, 15.1, 5561, 300 }, + [38] = { 34.6, 14.9, 5561, 300 }, + [39] = { 29.2, 14.7, 5561, 300 }, + [40] = { 26.3, 14.6, 5561, 300 }, + [41] = { 33, 13.9, 5561, 300 }, + [42] = { 31.2, 13.8, 5561, 300 }, + [43] = { 25.5, 12.9, 5561, 300 }, + [44] = { 34, 12, 5561, 300 }, + [45] = { 31.3, 10.4, 5561, 300 }, + [46] = { 30.5, 7.7, 5561, 300 }, + [47] = { 31.7, 7.7, 5561, 300 }, + [48] = { 29.7, 5.9, 5561, 300 }, + [49] = { 31.7, 5.2, 5561, 300 }, + [50] = { 30.3, 4, 5561, 300 }, + [51] = { 33, 2.3, 5561, 300 }, + }, + ["lvl"] = "30-32", + }, + [62352] = { + ["coords"] = { + [1] = { 64, 61.1, 5561, 300 }, + [2] = { 63.8, 60.5, 5561, 300 }, + [3] = { 63.4, 58.5, 5561, 300 }, + [4] = { 63.8, 49.6, 5561, 300 }, + [5] = { 64.9, 48.9, 5561, 300 }, + [6] = { 60, 46.2, 5561, 300 }, + [7] = { 60.7, 44.2, 5561, 300 }, + [8] = { 59.3, 42.8, 5561, 300 }, + [9] = { 58.3, 37.6, 5561, 300 }, + [10] = { 56.8, 35.9, 5561, 300 }, + [11] = { 57.9, 33.2, 5561, 300 }, + [12] = { 50.8, 33, 5561, 300 }, + [13] = { 48.3, 29.7, 5561, 300 }, + [14] = { 50, 29.2, 5561, 300 }, + [15] = { 53.6, 28.4, 5561, 300 }, + [16] = { 52.1, 28.1, 5561, 300 }, + [17] = { 52.1, 28, 5561, 300 }, + [18] = { 37.5, 26.5, 5561, 300 }, + [19] = { 51.7, 26.5, 5561, 300 }, + [20] = { 37.4, 26.2, 5561, 300 }, + [21] = { 32.1, 25.9, 5561, 300 }, + [22] = { 35.3, 25.5, 5561, 300 }, + [23] = { 36.6, 25.1, 5561, 300 }, + [24] = { 29.5, 25.1, 5561, 300 }, + [25] = { 30.8, 24.5, 5561, 300 }, + [26] = { 37.7, 24, 5561, 300 }, + [27] = { 32.5, 23.6, 5561, 300 }, + [28] = { 34, 20.7, 5561, 300 }, + [29] = { 32.9, 19.6, 5561, 300 }, + [30] = { 34.3, 18.7, 5561, 300 }, + [31] = { 26.6, 18.2, 5561, 300 }, + [32] = { 32.7, 17.2, 5561, 300 }, + [33] = { 35.8, 16.7, 5561, 300 }, + [34] = { 29.1, 16.3, 5561, 300 }, + [35] = { 27.7, 15.9, 5561, 300 }, + [36] = { 25.6, 15.8, 5561, 300 }, + [37] = { 34.5, 14.8, 5561, 300 }, + [38] = { 36, 13.8, 5561, 300 }, + [39] = { 24.4, 13.4, 5561, 300 }, + [40] = { 32.3, 12.6, 5561, 300 }, + [41] = { 35.2, 11.1, 5561, 300 }, + [42] = { 32.8, 10.1, 5561, 300 }, + [43] = { 30.2, 6.2, 5561, 300 }, + [44] = { 32.4, 3.5, 5561, 300 }, + [45] = { 30.6, 2.6, 5561, 300 }, + [46] = { 32.7, 1.4, 5561, 300 }, + }, + ["lvl"] = "31-33", + }, + [62353] = { + ["coords"] = { + [1] = { 32.9, 1.8, 5561, 300 }, + }, + ["lvl"] = "34", + ["rnk"] = "1", + }, + [62354] = { + ["coords"] = { + [1] = { 76, 59.3, 5561, 300 }, + [2] = { 66.4, 33.7, 5561, 300 }, + [3] = { 50.5, 15.9, 5561, 300 }, + [4] = { 46.6, 14.3, 5561, 300 }, + [5] = { 38, 9.7, 5561, 300 }, + [6] = { 56.6, 6, 5561, 300 }, + }, + ["lvl"] = "34", + ["rnk"] = "1", + }, + [62355] = { + ["coords"] = {}, + ["lvl"] = "32-33", + }, + [62356] = { + ["coords"] = { + [1] = { 38.6, 61.3, 5561, 300 }, + [2] = { 39.1, 61.2, 5561, 300 }, + [3] = { 51, 57.1, 5561, 300 }, + [4] = { 50.7, 57, 5561, 300 }, + [5] = { 50.4, 56.9, 5561, 300 }, + [6] = { 51.2, 56.1, 5561, 300 }, + [7] = { 51.7, 47.6, 5561, 300 }, + [8] = { 53.2, 47.4, 5561, 300 }, + [9] = { 51.8, 45.2, 5561, 300 }, + [10] = { 52.6, 44.7, 5561, 300 }, + [11] = { 53.6, 44.2, 5561, 300 }, + [12] = { 51.4, 42.9, 5561, 300 }, + [13] = { 51.2, 42.7, 5561, 300 }, + [14] = { 52.3, 42, 5561, 300 }, + [15] = { 64.7, 40.1, 5561, 300 }, + [16] = { 63.6, 39.5, 5561, 300 }, + [17] = { 62.3, 39.2, 5561, 300 }, + [18] = { 61.3, 38.9, 5561, 300 }, + [19] = { 64, 38.7, 5561, 300 }, + [20] = { 60.6, 38.7, 5561, 300 }, + [21] = { 61.8, 38.3, 5561, 300 }, + [22] = { 61, 37.2, 5561, 300 }, + [23] = { 62.1, 36.8, 5561, 300 }, + [24] = { 62.8, 36.1, 5561, 300 }, + }, + ["lvl"] = "28-30", + }, + [62357] = { + ["coords"] = { + [1] = { 47.2, 49.1, 5561, 300 }, + [2] = { 48.5, 48.3, 5561, 300 }, + [3] = { 45.9, 46.5, 5561, 300 }, + [4] = { 49.1, 46.3, 5561, 300 }, + [5] = { 47.9, 44.6, 5561, 300 }, + [6] = { 47.5, 43.1, 5561, 300 }, + }, + ["lvl"] = "28-30", + }, + [62358] = { + ["coords"] = { + [1] = { 42.8, 64.7, 5561, 300 }, + [2] = { 44.8, 63.6, 5561, 300 }, + [3] = { 46.2, 61.9, 5561, 300 }, + [4] = { 47.1, 61.9, 5561, 300 }, + [5] = { 45.5, 61.6, 5561, 300 }, + [6] = { 45.6, 55.6, 5561, 300 }, + [7] = { 37.8, 55.1, 5561, 300 }, + [8] = { 40.2, 54.9, 5561, 300 }, + [9] = { 36.9, 54, 5561, 300 }, + [10] = { 36.3, 52.1, 5561, 300 }, + [11] = { 44.2, 52, 5561, 300 }, + }, + ["lvl"] = "29-31", + }, + [62359] = { + ["coords"] = { + [1] = { 46, 65.1, 5561, 300 }, + [2] = { 42.8, 64.4, 5561, 300 }, + [3] = { 46.5, 63.9, 5561, 300 }, + [4] = { 45.3, 63.2, 5561, 300 }, + [5] = { 38.7, 61.6, 5561, 300 }, + [6] = { 38.4, 56, 5561, 300 }, + [7] = { 36.4, 55.8, 5561, 300 }, + [8] = { 37.3, 55.7, 5561, 300 }, + [9] = { 36.1, 55.5, 5561, 300 }, + [10] = { 37.5, 54.9, 5561, 300 }, + [11] = { 37.4, 54.9, 5561, 300 }, + [12] = { 38.1, 53.3, 5561, 300 }, + [13] = { 40, 53.2, 5561, 300 }, + [14] = { 37.1, 52.8, 5561, 300 }, + }, + ["lvl"] = "29-31", + }, + [62360] = { + ["coords"] = { + [1] = { 37, 55.5, 5561, 120 }, + [2] = { 36.9, 55.4, 5561, 120 }, + [3] = { 36.4, 55.4, 5561, 120 }, + [4] = { 37.5, 55.4, 5561, 120 }, + [5] = { 36.4, 54.7, 5561, 120 }, + [6] = { 36.1, 53.2, 5561, 120 }, + }, + ["lvl"] = "30-32", + }, + [62361] = { + ["coords"] = { + [1] = { 41.5, 75.6, 5561, 300 }, + [2] = { 43.4, 75.1, 5561, 300 }, + [3] = { 48.7, 74, 5561, 300 }, + [4] = { 45, 73.1, 5561, 300 }, + [5] = { 42.5, 73, 5561, 300 }, + [6] = { 44.3, 73, 5561, 300 }, + [7] = { 46.1, 72.3, 5561, 300 }, + [8] = { 45.7, 70.6, 5561, 300 }, + [9] = { 47.3, 70.2, 5561, 300 }, + [10] = { 46.4, 67.3, 5561, 300 }, + [11] = { 47.1, 67.3, 5561, 300 }, + [12] = { 48.1, 66.8, 5561, 300 }, + [13] = { 43.9, 66.1, 5561, 300 }, + [14] = { 49.2, 65.5, 5561, 300 }, + [15] = { 45.6, 64.3, 5561, 300 }, + [16] = { 45.5, 63.6, 5561, 300 }, + }, + ["lvl"] = "30-32", + }, + [62362] = { + ["coords"] = { + [1] = { 40.1, 76.6, 5561, 300 }, + [2] = { 41.2, 76, 5561, 300 }, + [3] = { 45.7, 75.8, 5561, 300 }, + [4] = { 44.1, 73.9, 5561, 300 }, + [5] = { 45.3, 72.9, 5561, 300 }, + [6] = { 45.1, 72.4, 5561, 300 }, + [7] = { 44.7, 70.1, 5561, 300 }, + [8] = { 46.2, 69.9, 5561, 300 }, + [9] = { 46.8, 69.2, 5561, 300 }, + [10] = { 48.6, 68.8, 5561, 300 }, + [11] = { 43.5, 68.8, 5561, 300 }, + [12] = { 45.6, 68.6, 5561, 300 }, + [13] = { 47.8, 68.6, 5561, 300 }, + [14] = { 49.7, 68.1, 5561, 300 }, + [15] = { 46.8, 66, 5561, 300 }, + [16] = { 49.4, 65.8, 5561, 300 }, + [17] = { 46.1, 63.7, 5561, 300 }, + }, + ["lvl"] = "31-33", + }, + [62363] = { + ["coords"] = { + [1] = { 52.9, 79.9, 5561, 300 }, + [2] = { 53.1, 77.5, 5561, 300 }, + [3] = { 52, 77.1, 5561, 300 }, + [4] = { 53.6, 76, 5561, 300 }, + [5] = { 49.3, 74.7, 5561, 300 }, + [6] = { 52.2, 74.2, 5561, 300 }, + [7] = { 49.5, 72.9, 5561, 300 }, + [8] = { 53.9, 71.5, 5561, 300 }, + [9] = { 52.9, 70.5, 5561, 300 }, + }, + ["lvl"] = "31-33", + }, + [62364] = { + ["coords"] = { + [1] = { 42.8, 76.1, 5561, 300 }, + [2] = { 44.8, 75.4, 5561, 300 }, + [3] = { 45.9, 73.3, 5561, 300 }, + [4] = { 44.8, 71.3, 5561, 300 }, + [5] = { 46.7, 70.3, 5561, 300 }, + [6] = { 47.5, 69.4, 5561, 300 }, + [7] = { 44.3, 68.1, 5561, 300 }, + [8] = { 49.5, 67.7, 5561, 300 }, + [9] = { 45.9, 67.5, 5561, 300 }, + [10] = { 42.8, 67.2, 5561, 300 }, + [11] = { 47.9, 66, 5561, 300 }, + [12] = { 46.1, 63.4, 5561, 300 }, + }, + ["lvl"] = "31-33", + }, + [62365] = { + ["coords"] = { + [1] = { 53.6, 77, 5561, 600 }, + [2] = { 53.4, 77, 5561, 600 }, + [3] = { 53.1, 76.9, 5561, 600 }, + [4] = { 54.4, 76.7, 5561, 600 }, + [5] = { 53.5, 75.4, 5561, 600 }, + [6] = { 58.2, 74.5, 5561, 600 }, + [7] = { 56.2, 74.2, 5561, 600 }, + [8] = { 55.9, 73.9, 5561, 600 }, + [9] = { 58.3, 73.9, 5561, 600 }, + [10] = { 57.1, 73.2, 5561, 600 }, + [11] = { 56.8, 73.1, 5561, 600 }, + [12] = { 58.3, 72.5, 5561, 600 }, + [13] = { 54.6, 70.7, 5561, 600 }, + [14] = { 59.7, 68.8, 5561, 600 }, + [15] = { 59.2, 68.7, 5561, 600 }, + [16] = { 59.6, 68.7, 5561, 600 }, + [17] = { 59.2, 68.5, 5561, 600 }, + [18] = { 56.7, 68.3, 5561, 600 }, + [19] = { 59.1, 68.3, 5561, 600 }, + [20] = { 56.6, 68.1, 5561, 600 }, + [21] = { 57.6, 67.9, 5561, 600 }, + [22] = { 54.9, 67.3, 5561, 600 }, + [23] = { 59.1, 66.7, 5561, 600 }, + [24] = { 57.4, 64.7, 5561, 600 }, + [25] = { 55, 64.3, 5561, 600 }, + [26] = { 59, 62.4, 5561, 600 }, + [27] = { 53.8, 62.3, 5561, 600 }, + [28] = { 54.1, 62.2, 5561, 600 }, + [29] = { 56.5, 62.1, 5561, 600 }, + [30] = { 58, 61.7, 5561, 600 }, + [31] = { 57.4, 60.8, 5561, 600 }, + [32] = { 60.7, 60.1, 5561, 600 }, + [33] = { 56.5, 59.4, 5561, 600 }, + [34] = { 60.4, 58.1, 5561, 600 }, + [35] = { 56.7, 57.5, 5561, 600 }, + [36] = { 59.3, 56.4, 5561, 600 }, + [37] = { 58.8, 56, 5561, 600 }, + [38] = { 58, 55.9, 5561, 600 }, + }, + ["lvl"] = "33-35", + ["rnk"] = "1", + }, + [62366] = { + ["coords"] = { + [1] = { 53, 77, 5561, 600 }, + [2] = { 54.2, 76.7, 5561, 600 }, + [3] = { 52.7, 76.1, 5561, 600 }, + [4] = { 57.1, 74.5, 5561, 600 }, + [5] = { 56.2, 74, 5561, 600 }, + [6] = { 59, 73.5, 5561, 600 }, + [7] = { 59.2, 68.4, 5561, 600 }, + [8] = { 56.4, 68.1, 5561, 600 }, + [9] = { 54.1, 67.4, 5561, 600 }, + [10] = { 60, 67.4, 5561, 600 }, + [11] = { 56.5, 66.8, 5561, 600 }, + [12] = { 57.8, 66.5, 5561, 600 }, + [13] = { 53.2, 66.1, 5561, 600 }, + [14] = { 58.9, 65.8, 5561, 600 }, + [15] = { 55.2, 64.7, 5561, 600 }, + [16] = { 59.1, 62.7, 5561, 600 }, + [17] = { 53.8, 62.6, 5561, 600 }, + [18] = { 60.7, 62.2, 5561, 600 }, + [19] = { 55, 61.7, 5561, 600 }, + [20] = { 57.4, 61.1, 5561, 600 }, + [21] = { 60.3, 59.9, 5561, 600 }, + [22] = { 60.6, 59.8, 5561, 600 }, + [23] = { 57.3, 59.1, 5561, 600 }, + [24] = { 60.4, 58.2, 5561, 600 }, + [25] = { 56.8, 57.5, 5561, 600 }, + [26] = { 58.7, 56, 5561, 600 }, + }, + ["lvl"] = "33-35", + ["rnk"] = "1", + }, + [62367] = { + ["coords"] = { + [1] = { 55.4, 9.4, 1519, 120 }, + [2] = { 46.2, 82.4, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "28", + }, + [62368] = { + ["coords"] = { + [1] = { 55.7, 9.2, 1519, 120 }, + [2] = { 46.3, 82.3, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "29", + }, + [62369] = { + ["coords"] = { + [1] = { 55.7, 9.4, 1519, 120 }, + [2] = { 46.4, 82.4, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [62370] = { + ["coords"] = { + [1] = { 49.8, 70.8, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "27", + }, + [62371] = { + ["coords"] = { + [1] = { 49.8, 70.8, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "27", + }, + [62372] = { + ["coords"] = { + [1] = { 49.8, 70.7, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "27", + }, + [62373] = { + ["coords"] = { + [1] = { 49.3, 69.2, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "29", + }, + [62374] = { + ["coords"] = { + [1] = { 48.4, 62.8, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "29", + }, + [62375] = { + ["coords"] = { + [1] = { 50.8, 60.4, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [62376] = { + ["coords"] = { + [1] = { 50.6, 60.1, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "31", + }, + [62377] = { + ["coords"] = { + [1] = { 46.5, 58.8, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [62378] = { + ["coords"] = { + [1] = { 46.2, 61.3, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "27", + }, + [62379] = { + ["coords"] = { + [1] = { 46.2, 60.1, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "29", + }, + [62380] = { + ["coords"] = { + [1] = { 43.5, 58.5, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [62381] = { + ["coords"] = { + [1] = { 46.1, 56.7, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "29", + }, + [62382] = { + ["coords"] = { + [1] = { 46.1, 56.1, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "28", + }, + [62383] = { + ["coords"] = { + [1] = { 54, 41.7, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + ["rnk"] = "1", + }, + [62384] = { + ["coords"] = { + [1] = { 46.8, 59.7, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [62385] = { + ["coords"] = { + [1] = { 55.6, 70.9, 5602, 300 }, + [2] = { 56, 70.6, 5602, 120 }, + [3] = { 45.5, 60, 5602, 120 }, + [4] = { 53.8, 60, 5602, 120 }, + [5] = { 45.2, 59.9, 5602, 120 }, + [6] = { 53.9, 59.2, 5602, 300 }, + [7] = { 45.5, 59, 5602, 300 }, + [8] = { 54.6, 58.6, 5602, 300 }, + [9] = { 54, 57.8, 5602, 120 }, + [10] = { 52.6, 57.5, 5602, 120 }, + [11] = { 52.6, 57.4, 5602, 300 }, + [12] = { 52.3, 57.3, 5602, 120 }, + [13] = { 51.5, 57, 5602, 300 }, + [14] = { 51.2, 56.3, 5602, 120 }, + [15] = { 51.6, 56.3, 5602, 120 }, + [16] = { 48.6, 53.5, 5602, 300 }, + [17] = { 46.5, 51.6, 5602, 300 }, + [18] = { 46.4, 48.6, 5602, 120 }, + [19] = { 46.8, 48.5, 5602, 120 }, + [20] = { 45.2, 48.5, 5602, 120 }, + [21] = { 45.1, 48.2, 5602, 120 }, + [22] = { 46.8, 48.2, 5602, 120 }, + [23] = { 46.1, 48.2, 5602, 120 }, + [24] = { 45.8, 48.2, 5602, 120 }, + [25] = { 47.4, 35.5, 5602, 120 }, + [26] = { 46.5, 35.3, 5602, 300 }, + [27] = { 46.5, 35.1, 5602, 120 }, + [28] = { 46.8, 35.1, 5602, 120 }, + [29] = { 46.9, 35.1, 5602, 120 }, + [30] = { 47.2, 35, 5602, 300 }, + [31] = { 47.5, 34.7, 5602, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [62386] = { + ["coords"] = { + [1] = { 46.5, 35.3, 5602, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "57", + }, + [62387] = { + ["coords"] = { + [1] = { 46.7, 35.7, 5602, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [62388] = { + ["coords"] = { + [1] = { 45.8, 48.5, 5602, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "58", + }, + [62389] = { + ["coords"] = { + [1] = { 51.1, 57, 5602, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "36", + }, + [62390] = { + ["coords"] = { + [1] = { 50.7, 56, 5602, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [62391] = { + ["coords"] = { + [1] = { 51.4, 56.3, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [62392] = { + ["coords"] = { + [1] = { 51.5, 56.9, 5602, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [62393] = { + ["coords"] = { + [1] = { 51.2, 57.2, 5602, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "34", + }, + [62394] = { + ["coords"] = { + [1] = { 51.1, 57.6, 5602, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [62395] = { + ["coords"] = { + [1] = { 51, 57.6, 5602, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + ["rnk"] = "1", + }, + [62396] = { + ["coords"] = { + [1] = { 50.9, 57.6, 5602, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [62397] = { + ["coords"] = { + [1] = { 51, 57, 5602, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "58", + ["rnk"] = "1", + }, + [62398] = { + ["coords"] = { + [1] = { 53, 57.9, 5602, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "32", + }, + [62399] = { + ["coords"] = { + [1] = { 54.7, 56.2, 5602, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "44", + }, + [62400] = { + ["coords"] = { + [1] = { 54, 58.8, 5602, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [62401] = { + ["coords"] = { + [1] = { 52.9, 57.7, 5602, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [62402] = { + ["coords"] = { + [1] = { 53.6, 57.3, 5602, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [62403] = { + ["coords"] = { + [1] = { 52.1, 58.7, 5602, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "33", + }, + [62404] = { + ["coords"] = { + [1] = { 52.1, 58.9, 5602, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "23", + }, + [62405] = { + ["coords"] = { + [1] = { 53.4, 57.8, 5602, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [62406] = { + ["coords"] = { + [1] = { 53.5, 57.8, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "34", + }, + [62407] = { + ["coords"] = { + [1] = { 53.2, 57.7, 5602, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "32", + }, + [62408] = { + ["coords"] = { + [1] = { 55.1, 58.8, 5602, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [62409] = { + ["coords"] = { + [1] = { 54.8, 56.1, 5602, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "28", + }, + [62410] = { + ["coords"] = { + [1] = { 53.2, 57.8, 5602, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "28", + }, + [62411] = { + ["coords"] = { + [1] = { 51.1, 56.5, 5602, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "44", + }, + [62412] = { + ["coords"] = { + [1] = { 48, 34, 5602, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [62413] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "28", + }, + [62414] = { + ["coords"] = { + [1] = { 54, 55.1, 5602, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [62415] = { + ["coords"] = { + [1] = { 51.7, 56.8, 5602, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [62416] = { + ["coords"] = { + [1] = { 69.8, 21.1, 1537, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [62417] = { + ["coords"] = { + [1] = { 56.3, 69.7, 5602, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [62418] = { + ["coords"] = { + [1] = { 56, 69.6, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [62419] = { + ["coords"] = { + [1] = { 56.1, 69.5, 5602, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "37", + }, + [62420] = { + ["coords"] = { + [1] = { 55.7, 70.1, 5602, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "32", + }, + [62421] = { + ["coords"] = { + [1] = { 59.5, 85.4, 5602, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "52", + ["rnk"] = "1", + }, + [62422] = { + ["coords"] = { + [1] = { 43.3, 34.2, 5602, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "40", + }, + [62423] = { + ["coords"] = { + [1] = { 43.3, 34, 5602, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "38", + }, + [62424] = { + ["coords"] = { + [1] = { 59.8, 31.6, 5602, 120 }, + [2] = { 59.5, 31.1, 5602, 120 }, + [3] = { 60, 31.1, 5602, 120 }, + [4] = { 60.5, 30.4, 5602, 120 }, + [5] = { 59.5, 29.9, 5602, 300 }, + [6] = { 59.1, 29.8, 5602, 120 }, + [7] = { 59.7, 29.2, 5602, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [62425] = { + ["coords"] = { + [1] = { 59.5, 30, 5602, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [62426] = { + ["coords"] = { + [1] = { 59, 30.1, 5602, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [62427] = { + ["coords"] = { + [1] = { 59.1, 30.1, 5602, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [62428] = { + ["coords"] = { + [1] = { 59, 29.4, 5602, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [62429] = { + ["coords"] = { + [1] = { 59.9, 29.7, 5602, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [62430] = { + ["coords"] = { + [1] = { 59.9, 29.8, 5602, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "32", + }, + [62431] = { + ["coords"] = { + [1] = { 59.9, 30.5, 5602, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "48", + ["rnk"] = "1", + }, + [62432] = { + ["coords"] = { + [1] = { 59.3, 29, 5602, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "51", + }, + [62433] = { + ["coords"] = { + [1] = { 58.8, 29.5, 5602, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "58", + ["rnk"] = "1", + }, + [62434] = { + ["coords"] = { + [1] = { 58.9, 29.8, 5602, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [62435] = { + ["coords"] = { + [1] = { 59.6, 31.1, 5602, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [62436] = { + ["coords"] = { + [1] = { 59.3, 29.4, 5602, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "28", + }, + [62437] = { + ["coords"] = { + [1] = { 60.2, 30.2, 5602, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "34", + }, + [62438] = { + ["coords"] = { + [1] = { 60, 30.9, 5602, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [62439] = { + ["coords"] = { + [1] = { 59.1, 30.1, 5602, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "36", + }, + [62440] = { + ["coords"] = { + [1] = { 59.2, 29.4, 5602, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [62441] = { + ["coords"] = { + [1] = { 53.9, 27.8, 5602, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "28", + }, + [62442] = { + ["coords"] = { + [1] = { 54, 27.9, 5602, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [62443] = { + ["coords"] = { + [1] = { 24.2, 39.5, 5581, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [62444] = { + ["coords"] = { + [1] = { 50.1, 61.6, 5581, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "3", + }, + [62445] = { + ["coords"] = { + [1] = { 46.1, 56, 5581, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "3", + }, + [62446] = { + ["coords"] = { + [1] = { 46.4, 56.3, 5581, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "3", + }, + [62447] = { + ["coords"] = { + [1] = { 51.4, 48.8, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "12", + }, + [62448] = { + ["coords"] = { + [1] = { 40.3, 68.4, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "11", + }, + [62449] = { + ["coords"] = { + [1] = { 41.1, 66.7, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [62450] = { + ["coords"] = { + [1] = { 39, 54.9, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [62451] = { + ["coords"] = { + [1] = { 39.1, 57.6, 5581, 120 }, + [2] = { 37.1, 57.6, 5581, 120 }, + [3] = { 38.8, 57.5, 5581, 120 }, + [4] = { 37.2, 57.4, 5581, 120 }, + [5] = { 36.2, 56.5, 5581, 120 }, + [6] = { 36.3, 56.3, 5581, 120 }, + [7] = { 39.7, 56, 5581, 120 }, + [8] = { 39.5, 55.9, 5581, 120 }, + [9] = { 40, 55.6, 5581, 120 }, + [10] = { 37.3, 54.8, 5581, 120 }, + [11] = { 38.8, 54.8, 5581, 120 }, + [12] = { 36.8, 54.5, 5581, 120 }, + [13] = { 36.8, 54.2, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "29", + }, + [62452] = { + ["coords"] = { + [1] = { 37.1, 57.8, 5581, 120 }, + [2] = { 38.5, 57.7, 5581, 120 }, + [3] = { 38.8, 57.5, 5581, 120 }, + [4] = { 37.1, 57.4, 5581, 120 }, + [5] = { 39.5, 56.4, 5581, 120 }, + [6] = { 39.6, 56.4, 5581, 120 }, + [7] = { 36.3, 56.4, 5581, 120 }, + [8] = { 40, 55.7, 5581, 120 }, + [9] = { 37.3, 54.8, 5581, 120 }, + [10] = { 38.5, 54.7, 5581, 120 }, + [11] = { 36.9, 54.5, 5581, 120 }, + [12] = { 38.5, 54.4, 5581, 120 }, + [13] = { 37, 54.2, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "29", + }, + [62453] = { + ["coords"] = { + [1] = { 52.7, 45.5, 5601, 604800 }, + [2] = { 48.3, 39.4, 5601, 604800 }, + [3] = { 57.1, 39.4, 5601, 604800 }, + [4] = { 48.3, 31.9, 5601, 604800 }, + [5] = { 57.1, 31.8, 5601, 604800 }, + [6] = { 52.7, 25.7, 5601, 604800 }, + }, + ["lvl"] = "31", + ["rnk"] = "1", + }, + [62454] = { + ["coords"] = { + [1] = { 39.9, 67.5, 5561, 300 }, + [2] = { 40.4, 67.3, 5561, 300 }, + [3] = { 39.4, 66.6, 5561, 300 }, + [4] = { 40.1, 66.1, 5561, 300 }, + [5] = { 40.8, 65.5, 5561, 300 }, + [6] = { 40.2, 64.8, 5561, 300 }, + [7] = { 39.8, 63.8, 5561, 300 }, + [8] = { 40.7, 63.8, 5561, 300 }, + [9] = { 40.3, 62.7, 5561, 300 }, + [10] = { 38.4, 62.5, 5561, 300 }, + [11] = { 38.2, 62.3, 5561, 300 }, + [12] = { 38.5, 60.9, 5561, 300 }, + [13] = { 38.9, 60, 5561, 300 }, + [14] = { 39.1, 58.9, 5561, 300 }, + }, + ["lvl"] = "30-31", + }, + [62455] = { + ["coords"] = { + [1] = { 69.3, 77.3, 5561, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + ["rnk"] = "1", + }, + [62456] = { + ["coords"] = { + [1] = { 69.5, 76.8, 5561, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [62457] = { + ["coords"] = { + [1] = { 69.5, 77.7, 5561, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "34", + }, + [62458] = { + ["coords"] = { + [1] = { 69.6, 76.6, 5561, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "36", + }, + [62459] = { + ["coords"] = { + [1] = { 69.4, 77.8, 5561, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "42", + }, + [62460] = { + ["coords"] = { + [1] = { 69.4, 77.2, 5561, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "46", + }, + [62461] = { + ["coords"] = { + [1] = { 72.7, 81.1, 5561, 120 }, + [2] = { 70.8, 79.5, 5561, 120 }, + [3] = { 71.1, 79.4, 5561, 120 }, + [4] = { 72.9, 79.3, 5561, 120 }, + [5] = { 72.3, 79.1, 5561, 120 }, + [6] = { 70.1, 78.9, 5561, 120 }, + [7] = { 70.8, 78.4, 5561, 120 }, + [8] = { 70.4, 77.7, 5561, 120 }, + [9] = { 69.2, 76.9, 5561, 120 }, + [10] = { 69.5, 76.6, 5561, 120 }, + [11] = { 70.5, 76.4, 5561, 120 }, + [12] = { 69.6, 75.2, 5561, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [62462] = { + ["coords"] = { + [1] = { 70.9, 76.9, 5561, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [62463] = { + ["coords"] = { + [1] = { 70.8, 76.9, 5561, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [62464] = { + ["coords"] = { + [1] = { 69.9, 78.8, 5561, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [62465] = { + ["coords"] = { + [1] = { 69.6, 78.4, 5561, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [62466] = { + ["coords"] = { + [1] = { 35.3, 65.1, 5561, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "45", + }, + [62467] = { + ["coords"] = { + [1] = { 35.6, 66, 5561, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "36", + }, + [62468] = { + ["coords"] = { + [1] = { 27.9, 10.2, 5561, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [62469] = { + ["coords"] = { + [1] = { 28.5, 10.5, 5561, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [62470] = { + ["coords"] = { + [1] = { 29.5, 51.1, 5561, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [62471] = { + ["coords"] = { + [1] = { 30, 52.8, 5561, 120 }, + }, + ["lvl"] = "55", + }, + [62472] = { + ["coords"] = { + [1] = { 36.1, 57.8, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "46", + }, + [62473] = { + ["coords"] = { + [1] = { 36.3, 57.9, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "46", + }, + [62474] = { + ["coords"] = { + [1] = { 36, 57.3, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [62475] = { + ["coords"] = { + [1] = { 39, 53.8, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "46", + }, + [62476] = { + ["coords"] = { + [1] = { 39.3, 53.6, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "46", + }, + [62477] = { + ["coords"] = { + [1] = { 39.6, 53.3, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [62478] = { + ["coords"] = { + [1] = { 39.4, 57.5, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "46", + }, + [62479] = { + ["coords"] = { + [1] = { 39.9, 58.8, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "46", + }, + [62480] = { + ["coords"] = { + [1] = { 40.3, 58.3, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [62481] = { + ["coords"] = { + [1] = { 41, 55.4, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "46", + }, + [62482] = { + ["coords"] = { + [1] = { 41, 56.3, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "46", + }, + [62483] = { + ["coords"] = { + [1] = { 40.6, 55.8, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [62484] = { + ["coords"] = { + [1] = { 63.3, 73.3, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "46", + }, + [62485] = { + ["coords"] = { + [1] = { 35.9, 54.2, 5581, 30 }, + }, + ["fac"] = "AH", + ["lvl"] = "31", + }, + [62486] = { + ["coords"] = { + [1] = { 22.4, 48, 5581, 120 }, + [2] = { 22.5, 47.9, 5581, 120 }, + [3] = { 22.2, 47.8, 5581, 120 }, + [4] = { 22.5, 47.8, 5581, 300 }, + [5] = { 22.2, 47.7, 5581, 120 }, + [6] = { 22.2, 47.4, 5581, 120 }, + [7] = { 22, 47, 5581, 300 }, + [8] = { 22.6, 46.7, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [62487] = { + ["coords"] = { + [1] = { 36.3, 58.2, 5581, 120 }, + [2] = { 41.1, 56.4, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [62488] = { + ["coords"] = { + [1] = { 49.4, 56, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [62489] = { + ["coords"] = { + [1] = { 49.4, 55.5, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "38", + }, + [62490] = { + ["coords"] = { + [1] = { 22.9, 52.3, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "22", + }, + [62491] = { + ["coords"] = { + [1] = { 16.1, 64.4, 51, 300 }, + [2] = { 14.5, 64.4, 51, 300 }, + [3] = { 12.3, 64.2, 51, 300 }, + [4] = { 16.7, 64, 51, 300 }, + [5] = { 13.8, 63.8, 51, 300 }, + [6] = { 15.5, 63.8, 51, 300 }, + [7] = { 15.2, 63.1, 51, 300 }, + [8] = { 13.7, 62.9, 51, 300 }, + [9] = { 16.3, 62.8, 51, 300 }, + [10] = { 13.1, 62.7, 51, 300 }, + [11] = { 12.9, 62.6, 51, 300 }, + [12] = { 16.1, 62.3, 51, 300 }, + [13] = { 15.6, 62.1, 51, 300 }, + [14] = { 16, 62, 51, 300 }, + [15] = { 14, 61.9, 51, 300 }, + [16] = { 12.1, 61.4, 51, 300 }, + [17] = { 15.4, 61.4, 51, 300 }, + [18] = { 17.5, 61.4, 51, 300 }, + [19] = { 13.5, 61.3, 51, 300 }, + [20] = { 15.3, 61.2, 51, 300 }, + [21] = { 16.3, 61, 51, 300 }, + [22] = { 17.9, 60.9, 51, 300 }, + [23] = { 14.8, 60.8, 51, 300 }, + [24] = { 12.8, 60.5, 51, 300 }, + [25] = { 16.7, 60.2, 51, 300 }, + [26] = { 13.6, 60.1, 51, 300 }, + [27] = { 17.5, 59.6, 51, 300 }, + [28] = { 14.7, 59.4, 51, 300 }, + [29] = { 16.4, 59.2, 51, 300 }, + [30] = { 15.4, 58.3, 51, 300 }, + [31] = { 16.3, 57.6, 51, 300 }, + [32] = { 90.8, 33.9, 5581, 300 }, + [33] = { 89.6, 33.9, 5581, 300 }, + [34] = { 88.1, 33.8, 5581, 300 }, + [35] = { 91.1, 33.6, 5581, 300 }, + [36] = { 89.1, 33.5, 5581, 300 }, + [37] = { 90.3, 33.5, 5581, 300 }, + [38] = { 90.1, 33, 5581, 300 }, + [39] = { 89, 32.8, 5581, 300 }, + [40] = { 90.9, 32.8, 5581, 300 }, + [41] = { 88.6, 32.7, 5581, 300 }, + [42] = { 88.5, 32.7, 5581, 300 }, + [43] = { 90.7, 32.5, 5581, 300 }, + [44] = { 90.4, 32.3, 5581, 300 }, + [45] = { 90.6, 32.2, 5581, 300 }, + [46] = { 89.3, 32.2, 5581, 300 }, + [47] = { 88, 31.9, 5581, 300 }, + [48] = { 90.2, 31.8, 5581, 300 }, + [49] = { 91.7, 31.8, 5581, 300 }, + [50] = { 88.9, 31.8, 5581, 300 }, + [51] = { 90.2, 31.7, 5581, 300 }, + [52] = { 90.8, 31.5, 5581, 300 }, + [53] = { 91.9, 31.4, 5581, 300 }, + [54] = { 89.8, 31.4, 5581, 300 }, + [55] = { 88.4, 31.2, 5581, 300 }, + [56] = { 91.1, 31, 5581, 300 }, + [57] = { 89, 30.9, 5581, 300 }, + [58] = { 91.7, 30.6, 5581, 300 }, + [59] = { 89.7, 30.4, 5581, 300 }, + [60] = { 90.9, 30.3, 5581, 300 }, + [61] = { 90.2, 29.7, 5581, 300 }, + [62] = { 90.8, 29.2, 5581, 300 }, + }, + ["lvl"] = "28-30", + }, + [62492] = { + ["coords"] = { + [1] = { 36.2, 44.2, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "32", + }, + [62493] = { + ["coords"] = { + [1] = { 68.2, 77.6, 5581, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [62494] = { + ["coords"] = { + [1] = { 32.5, 62.6, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [62495] = { + ["coords"] = { + [1] = { 13.5, 31.2, 1176, 432000 }, + }, + ["lvl"] = "46", + ["rnk"] = "1", + }, + [62496] = { + ["coords"] = { + [1] = { 45.6, 60.8, 1176, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "44", + ["rnk"] = "1", + }, + [62497] = { + ["coords"] = { + [1] = { 43.1, 61.4, 1176, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "45", + ["rnk"] = "1", + }, + [62498] = { + ["coords"] = { + [1] = { 44.4, 61.7, 1176, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "46", + ["rnk"] = "1", + }, + [62499] = { + ["coords"] = {}, + ["lvl"] = "45", + }, + [62500] = { + ["coords"] = { + [1] = { 22.1, 46.8, 1176, 18000 }, + [2] = { 17.7, 46.1, 1176, 18000 }, + [3] = { 19.3, 45.9, 1176, 18000 }, + [4] = { 16.2, 45.5, 1176, 18000 }, + [5] = { 23.7, 45.3, 1176, 18000 }, + [6] = { 18.3, 42.6, 1176, 18000 }, + [7] = { 19.7, 39.4, 1176, 18000 }, + [8] = { 14.7, 38.7, 1176, 18000 }, + [9] = { 18.1, 36.9, 1176, 18000 }, + [10] = { 17.6, 36.4, 1176, 18000 }, + [11] = { 18.1, 36, 1176, 18000 }, + }, + ["lvl"] = "46", + ["rnk"] = "1", + }, + [62501] = { + ["coords"] = { + [1] = { 35.1, 76.8, 491, 18000 }, + [2] = { 48.7, 75.5, 491, 18000 }, + [3] = { 48.3, 74.9, 491, 18000 }, + [4] = { 39.3, 73.1, 491, 18000 }, + [5] = { 39, 72.7, 491, 18000 }, + [6] = { 32.8, 72.5, 491, 18000 }, + [7] = { 35.4, 71.4, 491, 18000 }, + [8] = { 35, 70.9, 491, 18000 }, + [9] = { 51.6, 70.6, 491, 18000 }, + }, + ["lvl"] = "29-30", + ["rnk"] = "1", + }, + [62502] = { + ["coords"] = { + [1] = { 45, 74.7, 491, 18000 }, + [2] = { 41.4, 74.2, 491, 18000 }, + [3] = { 39.3, 73.2, 491, 18000 }, + [4] = { 33.8, 72.5, 491, 18000 }, + [5] = { 35.2, 71.9, 491, 18000 }, + }, + ["lvl"] = "30-31", + ["rnk"] = "1", + }, + [62503] = { + ["coords"] = { + [1] = { 31, 76.5, 491, 18000 }, + }, + ["lvl"] = "32", + ["rnk"] = "1", + }, + [62504] = { + ["coords"] = { + [1] = { 47.8, 51.9, 5561, 50400 }, + }, + ["lvl"] = "31", + ["rnk"] = "4", + }, + [62505] = { + ["coords"] = { + [1] = { 47.2, 45.4, 5561, 50400 }, + }, + ["lvl"] = "30", + ["rnk"] = "4", + }, + [62506] = { + ["coords"] = { + [1] = { 39.7, 67.6, 5561, 50400 }, + }, + ["lvl"] = "33", + ["rnk"] = "4", + }, + [62507] = { + ["coords"] = { + [1] = { 57.7, 13, 5561, 50400 }, + }, + ["lvl"] = "34", + ["rnk"] = "4", + }, + [62508] = { + ["coords"] = { + [1] = { 59.1, 68.5, 5561, 172800 }, + }, + ["lvl"] = "35", + ["rnk"] = "2", + }, + [62509] = { + ["coords"] = { + [1] = { 55.7, 10.8, 5561, 172800 }, + }, + ["lvl"] = "41", + ["rnk"] = "2", + }, + [62510] = { + ["coords"] = { + [1] = { 61.7, 12.5, 16, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [62511] = { + ["coords"] = { + [1] = { 54.5, 36.2, 493, 120 }, + [2] = { 54.5, 36, 493, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [62512] = { + ["coords"] = { + [1] = { 50.8, 39.2, 493, 120 }, + [2] = { 50.8, 39, 493, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [62513] = { + ["coords"] = { + [1] = { 35, 61.2, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [62514] = { + ["coords"] = { + [1] = { 35.1, 61.3, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "44", + }, + [62515] = { + ["coords"] = { + [1] = { 33.3, 60.2, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [62516] = { + ["coords"] = { + [1] = { 33.2, 60.2, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "49", + }, + [62517] = { + ["coords"] = { + [1] = { 31.6, 89.4, 1, 120 }, + [2] = { 62.1, 22.5, 5581, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [62518] = { + ["coords"] = { + [1] = { 45.5, 58.6, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [62519] = { + ["coords"] = { + [1] = { 27.3, 10.2, 5561, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "40", + }, + [62520] = { + ["coords"] = { + [1] = { 28.6, 11.2, 5561, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "40", + }, + [62521] = { + ["coords"] = { + [1] = { 28.1, 10.8, 5561, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "40", + }, + [62522] = { + ["coords"] = { + [1] = { 53, 77.3, 5561, 600 }, + [2] = { 52.8, 77, 5561, 600 }, + [3] = { 54, 76.7, 5561, 600 }, + [4] = { 55, 74.7, 5561, 600 }, + [5] = { 57.5, 74.6, 5561, 600 }, + [6] = { 58.2, 73.7, 5561, 600 }, + [7] = { 57.6, 73.5, 5561, 600 }, + [8] = { 56.7, 68.2, 5561, 600 }, + [9] = { 58, 68.1, 5561, 600 }, + [10] = { 56.4, 67.7, 5561, 600 }, + [11] = { 52.8, 67.6, 5561, 600 }, + [12] = { 53.2, 65.2, 5561, 600 }, + [13] = { 57, 63.8, 5561, 600 }, + [14] = { 52.8, 63.2, 5561, 600 }, + [15] = { 58.4, 62.9, 5561, 600 }, + [16] = { 57.1, 62.5, 5561, 600 }, + [17] = { 60.4, 62.4, 5561, 600 }, + [18] = { 57, 62.1, 5561, 600 }, + [19] = { 57.4, 61.9, 5561, 600 }, + [20] = { 54.8, 61.8, 5561, 600 }, + [21] = { 58.1, 61.1, 5561, 600 }, + [22] = { 60.5, 60, 5561, 600 }, + [23] = { 56.6, 59.6, 5561, 600 }, + [24] = { 60.3, 58.3, 5561, 600 }, + [25] = { 56.8, 58.2, 5561, 600 }, + [26] = { 57.3, 58.1, 5561, 600 }, + [27] = { 59.2, 57.6, 5561, 600 }, + [28] = { 56.7, 57.4, 5561, 600 }, + [29] = { 57.8, 55.7, 5561, 600 }, + [30] = { 58.6, 55.4, 5561, 600 }, + }, + ["lvl"] = "33-35", + ["rnk"] = "1", + }, + [62523] = { + ["coords"] = { + [1] = { 36.3, 55.6, 5561, 300 }, + }, + ["lvl"] = "29", + }, + [62524] = { + ["coords"] = { + [1] = { 53.9, 73.6, 5561, 300 }, + }, + ["lvl"] = "32", + ["rnk"] = "1", + }, + [62525] = { + ["coords"] = { + [1] = { 69.4, 57.7, 5561, 300 }, + [2] = { 69.8, 56.2, 5561, 300 }, + [3] = { 69.6, 54.9, 5561, 300 }, + [4] = { 69.5, 53.6, 5561, 300 }, + [5] = { 68.4, 48.6, 5561, 300 }, + [6] = { 74.9, 47.3, 5561, 300 }, + [7] = { 68.2, 47, 5561, 300 }, + [8] = { 67.8, 46.1, 5561, 120 }, + [9] = { 74.4, 45.2, 5561, 300 }, + [10] = { 68.3, 44.7, 5561, 300 }, + [11] = { 73.6, 44.4, 5561, 300 }, + [12] = { 69.8, 44.2, 5561, 300 }, + [13] = { 68.2, 43.6, 5561, 300 }, + [14] = { 70.6, 43.4, 5561, 300 }, + [15] = { 72.4, 43.3, 5561, 300 }, + [16] = { 68.6, 42.5, 5561, 300 }, + [17] = { 71.7, 42.4, 5561, 300 }, + [18] = { 70.6, 42, 5561, 300 }, + [19] = { 70.7, 40.5, 5561, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "27-29", + }, + [62526] = { + ["coords"] = { + [1] = { 53.7, 55.6, 876, 120 }, + [2] = { 61, 64.2, 1519, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [62527] = { + ["coords"] = { + [1] = { 71.6, 47.9, 1497, 120 }, + [2] = { 71.5, 47.9, 1497, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [62528] = { + ["coords"] = { + [1] = { 41.9, 70.2, 719, 18000 }, + [2] = { 42.5, 70.1, 719, 18000 }, + [3] = { 52, 65.7, 719, 18000 }, + [4] = { 48.8, 64.4, 719, 18000 }, + [5] = { 56.2, 64.3, 719, 18000 }, + [6] = { 50.9, 63.6, 719, 18000 }, + }, + ["lvl"] = "25-26", + ["rnk"] = "1", + }, + [62529] = { + ["coords"] = { + [1] = { 45.9, 68.9, 719, 18000 }, + [2] = { 46.1, 68.4, 719, 18000 }, + [3] = { 43.4, 67.4, 719, 18000 }, + [4] = { 43.2, 67.4, 719, 18000 }, + [5] = { 52.5, 65.8, 719, 18000 }, + [6] = { 48.9, 64.8, 719, 18000 }, + [7] = { 46.2, 64.2, 719, 18000 }, + [8] = { 48.9, 64, 719, 18000 }, + [9] = { 50.9, 63.1, 719, 18000 }, + }, + ["lvl"] = "24-25", + ["rnk"] = "1", + }, + [62530] = { + ["coords"] = { + [1] = { 55.9, 64.4, 719, 432000 }, + }, + ["lvl"] = "26", + ["rnk"] = "1", + }, + [62531] = { + ["coords"] = { + [1] = { 54.7, 64.3, 719, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "25", + }, + [62532] = { + ["coords"] = { + [1] = { 49.4, 19, 5628, 604800 }, + [2] = { 47.8, 17.4, 5628, 604800 }, + [3] = { 48.7, 17.4, 5628, 604800 }, + [4] = { 46.1, 17.1, 5628, 604800 }, + [5] = { 47.6, 17.1, 5628, 604800 }, + [6] = { 48.9, 16.9, 5628, 604800 }, + [7] = { 50, 16.9, 5628, 604800 }, + [8] = { 48.8, 15.9, 5628, 604800 }, + [9] = { 48.8, 15.6, 5628, 604800 }, + [10] = { 49.5, 14.4, 5628, 604800 }, + [11] = { 47.5, 14.2, 5628, 604800 }, + [12] = { 47.8, 14.1, 5628, 604800 }, + [13] = { 48.7, 14, 5628, 604800 }, + [14] = { 49.4, 12.8, 5628, 604800 }, + [15] = { 49.5, 12.5, 5628, 604800 }, + }, + ["lvl"] = "32-33", + ["rnk"] = "1", + }, + [62533] = { + ["coords"] = { + [1] = { 44.2, 19.1, 5628, 604800 }, + [2] = { 49.6, 19, 5628, 604800 }, + [3] = { 49.5, 18.8, 5628, 604800 }, + [4] = { 47.8, 18.7, 5628, 604800 }, + [5] = { 47.6, 16.8, 5628, 604800 }, + [6] = { 49.4, 12.5, 5628, 604800 }, + }, + ["lvl"] = "32-33", + ["rnk"] = "1", + }, + [62534] = { + ["coords"] = { + [1] = { 47.9, 30.2, 5628, 604800 }, + [2] = { 47.2, 28.3, 5628, 604800 }, + [3] = { 48.4, 28.2, 5628, 604800 }, + [4] = { 47.1, 26.7, 5628, 604800 }, + [5] = { 47, 26.2, 5628, 604800 }, + [6] = { 47.5, 23.1, 5628, 604800 }, + [7] = { 50.2, 22.8, 5628, 604800 }, + [8] = { 49, 22.4, 5628, 604800 }, + [9] = { 49.1, 22.4, 5628, 604800 }, + [10] = { 47.9, 22, 5628, 604800 }, + [11] = { 46.3, 18.9, 5628, 604800 }, + [12] = { 44.3, 18.9, 5628, 604800 }, + [13] = { 47.7, 18.5, 5628, 604800 }, + [14] = { 49.9, 17.1, 5628, 604800 }, + [15] = { 48.6, 15.8, 5628, 604800 }, + [16] = { 47.4, 14.5, 5628, 604800 }, + [17] = { 45.1, 14.2, 5628, 604800 }, + }, + ["lvl"] = "33-34", + ["rnk"] = "1", + }, + [62535] = { + ["coords"] = { + [1] = { 46, 39.4, 5628, 604800 }, + [2] = { 45.2, 39.1, 5628, 604800 }, + [3] = { 45.2, 38.8, 5628, 604800 }, + [4] = { 44.4, 37, 5628, 604800 }, + [5] = { 43.8, 36.1, 5628, 604800 }, + [6] = { 45.4, 30.7, 5628, 604800 }, + [7] = { 47.7, 30.2, 5628, 604800 }, + [8] = { 47.3, 28.3, 5628, 604800 }, + [9] = { 47.1, 26.3, 5628, 604800 }, + [10] = { 50.1, 22.7, 5628, 604800 }, + [11] = { 45.3, 20.9, 5628, 604800 }, + [12] = { 46.2, 19.1, 5628, 604800 }, + [13] = { 46.2, 18.8, 5628, 604800 }, + [14] = { 47.7, 18.7, 5628, 604800 }, + [15] = { 45.7, 15.7, 5628, 604800 }, + [16] = { 45.3, 14.2, 5628, 604800 }, + }, + ["lvl"] = "33-34", + ["rnk"] = "1", + }, + [62536] = { + ["coords"] = { + [1] = { 42.2, 52.1, 5628, 604800 }, + [2] = { 42.5, 51.7, 5628, 604800 }, + [3] = { 39.4, 50.6, 5628, 604800 }, + [4] = { 45.8, 48.9, 5628, 604800 }, + [5] = { 47.1, 48.8, 5628, 604800 }, + [6] = { 45.8, 48.6, 5628, 604800 }, + [7] = { 47.1, 48.6, 5628, 604800 }, + [8] = { 48, 47.8, 5628, 604800 }, + [9] = { 44.4, 47.8, 5628, 604800 }, + [10] = { 44.6, 47.6, 5628, 604800 }, + [11] = { 48, 47.5, 5628, 604800 }, + [12] = { 41.8, 47.4, 5628, 604800 }, + [13] = { 46, 46.8, 5628, 604800 }, + [14] = { 39.6, 44.9, 5628, 604800 }, + [15] = { 42.7, 44, 5628, 604800 }, + }, + ["lvl"] = "35-36", + ["rnk"] = "1", + }, + [62537] = { + ["coords"] = { + [1] = { 42.5, 52.1, 5628, 604800 }, + [2] = { 37.6, 48.2, 5628, 604800 }, + [3] = { 41.8, 47.9, 5628, 604800 }, + [4] = { 42.6, 47.9, 5628, 604800 }, + [5] = { 44.6, 47.8, 5628, 604800 }, + [6] = { 40.7, 47.7, 5628, 604800 }, + [7] = { 33.1, 47.7, 5628, 604800 }, + [8] = { 47.9, 47.7, 5628, 604800 }, + [9] = { 41.6, 47.7, 5628, 604800 }, + [10] = { 43, 47.7, 5628, 604800 }, + [11] = { 42.6, 47.5, 5628, 604800 }, + [12] = { 37.6, 47.2, 5628, 604800 }, + [13] = { 45.9, 46.5, 5628, 604800 }, + [14] = { 46.8, 45.9, 5628, 604800 }, + [15] = { 46.4, 45.9, 5628, 604800 }, + [16] = { 39.3, 44.9, 5628, 604800 }, + [17] = { 41.9, 44.1, 5628, 604800 }, + [18] = { 42.5, 43.6, 5628, 604800 }, + [19] = { 42.7, 43.6, 5628, 604800 }, + [20] = { 48, 40.9, 5628, 604800 }, + [21] = { 47.7, 40.7, 5628, 604800 }, + [22] = { 48, 40.5, 5628, 604800 }, + [23] = { 45.2, 33.2, 5628, 604800 }, + [24] = { 45, 32.8, 5628, 604800 }, + [25] = { 44.9, 32.6, 5628, 604800 }, + }, + ["lvl"] = "35-36", + ["rnk"] = "1", + }, + [62538] = { + ["coords"] = { + [1] = { 47.8, 30.3, 5628, 604800 }, + [2] = { 48.5, 27.2, 5628, 604800 }, + [3] = { 47.8, 26.9, 5628, 604800 }, + [4] = { 48.5, 26.6, 5628, 604800 }, + [5] = { 47, 26.4, 5628, 604800 }, + [6] = { 47.5, 23.4, 5628, 604800 }, + [7] = { 50.2, 22.6, 5628, 604800 }, + [8] = { 48.1, 21.8, 5628, 604800 }, + [9] = { 45.1, 21.1, 5628, 604800 }, + [10] = { 44.1, 18.8, 5628, 604800 }, + [11] = { 45.5, 17.4, 5628, 604800 }, + [12] = { 44.9, 17.4, 5628, 604800 }, + [13] = { 45.7, 16.2, 5628, 604800 }, + [14] = { 44.7, 16.1, 5628, 604800 }, + [15] = { 44.7, 15.2, 5628, 604800 }, + [16] = { 45.7, 15.2, 5628, 604800 }, + }, + ["lvl"] = "33-34", + ["rnk"] = "1", + }, + [62539] = { + ["coords"] = { + [1] = { 42.8, 52.1, 5628, 604800 }, + [2] = { 39.2, 50.6, 5628, 604800 }, + [3] = { 39.6, 50.6, 5628, 604800 }, + [4] = { 47, 48.6, 5628, 604800 }, + [5] = { 42, 47.7, 5628, 604800 }, + [6] = { 42.5, 47.7, 5628, 604800 }, + [7] = { 44.4, 47.6, 5628, 604800 }, + [8] = { 45.8, 46.8, 5628, 604800 }, + [9] = { 39.4, 44.6, 5628, 604800 }, + [10] = { 42.4, 43.9, 5628, 604800 }, + [11] = { 47.8, 40.7, 5628, 604800 }, + [12] = { 45.9, 39.2, 5628, 604800 }, + [13] = { 45.1, 38.9, 5628, 604800 }, + [14] = { 45.4, 38.9, 5628, 604800 }, + [15] = { 47.9, 38.9, 5628, 604800 }, + [16] = { 47.9, 38.4, 5628, 604800 }, + [17] = { 45.2, 38.2, 5628, 604800 }, + [18] = { 44.6, 37.4, 5628, 604800 }, + [19] = { 44.4, 37.4, 5628, 604800 }, + [20] = { 44.5, 37.2, 5628, 604800 }, + [21] = { 46, 37, 5628, 604800 }, + [22] = { 46.1, 36.9, 5628, 604800 }, + [23] = { 44.9, 36.6, 5628, 604800 }, + [24] = { 45.9, 36.2, 5628, 604800 }, + [25] = { 45.8, 36, 5628, 604800 }, + [26] = { 44.4, 36, 5628, 604800 }, + [27] = { 45.9, 35.9, 5628, 604800 }, + [28] = { 43.7, 35.8, 5628, 604800 }, + [29] = { 45.5, 34.6, 5628, 604800 }, + [30] = { 44.9, 32.3, 5628, 604800 }, + [31] = { 45.2, 30.7, 5628, 604800 }, + }, + ["lvl"] = "34-35", + ["rnk"] = "1", + }, + [62540] = { + ["coords"] = { + [1] = { 33, 57.7, 5628, 604800 }, + [2] = { 33.3, 57.2, 5628, 604800 }, + [3] = { 31.8, 56.7, 5628, 604800 }, + [4] = { 32.7, 45.5, 5628, 604800 }, + [5] = { 32.2, 45.5, 5628, 604800 }, + [6] = { 44.5, 39.8, 5628, 604800 }, + [7] = { 45.8, 39.4, 5628, 604800 }, + [8] = { 46, 38.6, 5628, 604800 }, + [9] = { 44.4, 37.4, 5628, 604800 }, + [10] = { 45.4, 30.9, 5628, 604800 }, + [11] = { 45.4, 28.6, 5628, 604800 }, + [12] = { 45.1, 28.6, 5628, 604800 }, + [13] = { 46, 26.7, 5628, 604800 }, + [14] = { 46.1, 25.3, 5628, 604800 }, + [15] = { 44.4, 24.5, 5628, 604800 }, + [16] = { 45.2, 24.5, 5628, 604800 }, + [17] = { 45.2, 24.2, 5628, 604800 }, + [18] = { 45.8, 23.4, 5628, 604800 }, + [19] = { 45.3, 21.1, 5628, 604800 }, + [20] = { 44.4, 21, 5628, 604800 }, + [21] = { 46.1, 21, 5628, 604800 }, + [22] = { 45.1, 20.8, 5628, 604800 }, + }, + ["lvl"] = "33-34", + ["rnk"] = "1", + }, + [62541] = { + ["coords"] = { + [1] = { 49.2, 42.6, 5628, 604800 }, + [2] = { 49.4, 42.5, 5628, 604800 }, + [3] = { 51.4, 42, 5628, 604800 }, + [4] = { 50.2, 41.1, 5628, 604800 }, + [5] = { 50.1, 40.2, 5628, 604800 }, + [6] = { 51.2, 39.7, 5628, 604800 }, + [7] = { 50, 38.9, 5628, 604800 }, + [8] = { 50.7, 37.4, 5628, 604800 }, + [9] = { 49.6, 36.9, 5628, 604800 }, + [10] = { 49.3, 35.2, 5628, 604800 }, + [11] = { 49.8, 34.8, 5628, 604800 }, + [12] = { 50, 34.7, 5628, 604800 }, + [13] = { 51.5, 34.7, 5628, 604800 }, + [14] = { 50.7, 33.4, 5628, 604800 }, + }, + ["lvl"] = "34-35", + ["rnk"] = "1", + }, + [62542] = { + ["coords"] = { + [1] = { 30.6, 70.6, 5628, 604800 }, + [2] = { 29.7, 70.1, 5628, 604800 }, + [3] = { 32.4, 68.2, 5628, 604800 }, + [4] = { 22.4, 66.6, 5628, 604800 }, + [5] = { 32.4, 64.7, 5628, 604800 }, + [6] = { 35.1, 63.4, 5628, 604800 }, + [7] = { 32.5, 60.3, 5628, 604800 }, + }, + ["lvl"] = "35-36", + ["rnk"] = "1", + }, + [62543] = { + ["coords"] = { + [1] = { 51.6, 42.5, 5628, 604800 }, + [2] = { 49.3, 42.3, 5628, 604800 }, + [3] = { 51.6, 42, 5628, 604800 }, + [4] = { 50.6, 41.1, 5628, 604800 }, + [5] = { 50.4, 41.1, 5628, 604800 }, + [6] = { 51.5, 40.8, 5628, 604800 }, + [7] = { 51.6, 40.7, 5628, 604800 }, + [8] = { 49.5, 39.8, 5628, 604800 }, + [9] = { 50.9, 39.7, 5628, 604800 }, + [10] = { 50.2, 38.9, 5628, 604800 }, + [11] = { 50.1, 38.6, 5628, 604800 }, + [12] = { 49.5, 37.1, 5628, 604800 }, + [13] = { 50.7, 37, 5628, 604800 }, + [14] = { 49, 36.6, 5628, 604800 }, + [15] = { 51.3, 34.8, 5628, 604800 }, + [16] = { 50.8, 33.7, 5628, 604800 }, + [17] = { 50.9, 33.4, 5628, 604800 }, + }, + ["lvl"] = "34-35", + ["rnk"] = "1", + }, + [62544] = { + ["coords"] = { + [1] = { 29.2, 71.2, 5628, 604800 }, + [2] = { 35.7, 70.4, 5628, 604800 }, + [3] = { 29.6, 69.7, 5628, 604800 }, + [4] = { 29.9, 69.2, 5628, 604800 }, + [5] = { 23.6, 66.6, 5628, 604800 }, + [6] = { 23.4, 66.4, 5628, 604800 }, + [7] = { 35.3, 63.6, 5628, 604800 }, + [8] = { 29.7, 62, 5628, 604800 }, + [9] = { 29.4, 61.9, 5628, 604800 }, + [10] = { 35.2, 61.8, 5628, 604800 }, + [11] = { 33.1, 56.8, 5628, 604800 }, + [12] = { 32.2, 56.7, 5628, 604800 }, + [13] = { 32.5, 45.5, 5628, 604800 }, + }, + ["lvl"] = "33-34", + ["rnk"] = "1", + }, + [62545] = { + ["coords"] = { + [1] = { 29.6, 71.8, 5628, 604800 }, + [2] = { 29.6, 71.4, 5628, 604800 }, + [3] = { 35.8, 70.8, 5628, 604800 }, + [4] = { 30.5, 70.4, 5628, 604800 }, + [5] = { 29.6, 69.1, 5628, 604800 }, + [6] = { 23.5, 66.7, 5628, 604800 }, + [7] = { 23.4, 65.5, 5628, 604800 }, + [8] = { 29.8, 63.6, 5628, 604800 }, + [9] = { 29.7, 63.4, 5628, 604800 }, + [10] = { 35.1, 63.4, 5628, 604800 }, + [11] = { 35.1, 62, 5628, 604800 }, + [12] = { 29.8, 61.4, 5628, 604800 }, + [13] = { 33.2, 57.7, 5628, 604800 }, + [14] = { 31.9, 57.2, 5628, 604800 }, + }, + ["lvl"] = "33-34", + ["rnk"] = "1", + }, + [62546] = { + ["coords"] = { + [1] = { 34.9, 71.7, 5628, 604800 }, + [2] = { 35.3, 71.6, 5628, 604800 }, + [3] = { 36, 70.5, 5628, 604800 }, + [4] = { 34.5, 70.4, 5628, 604800 }, + [5] = { 23.7, 66.5, 5628, 604800 }, + [6] = { 35.1, 63.6, 5628, 604800 }, + [7] = { 29.7, 63.6, 5628, 604800 }, + [8] = { 23.2, 61.2, 5628, 604800 }, + [9] = { 23.5, 61.2, 5628, 604800 }, + [10] = { 23.4, 61.1, 5628, 604800 }, + [11] = { 23.4, 60.9, 5628, 604800 }, + [12] = { 32.4, 48, 5628, 604800 }, + [13] = { 32.3, 47.6, 5628, 604800 }, + }, + ["lvl"] = "33-34", + ["rnk"] = "1", + }, + [62547] = { + ["coords"] = { + [1] = { 50.6, 27.3, 5628, 604800 }, + }, + ["lvl"] = "34", + ["rnk"] = "1", + }, + [62548] = { + ["coords"] = { + [1] = { 45.2, 26.9, 5628, 604800 }, + }, + ["lvl"] = "34", + ["rnk"] = "1", + }, + [62549] = { + ["coords"] = { + [1] = { 50.4, 42.2, 5628, 604800 }, + }, + ["lvl"] = "36", + ["rnk"] = "1", + }, + [62550] = { + ["coords"] = { + [1] = { 32.4, 66.7, 5628, 604800 }, + }, + ["lvl"] = "38", + ["rnk"] = "1", + }, + [62551] = { + ["coords"] = { + [1] = { 39.8, 47.7, 5628, 604800 }, + }, + ["lvl"] = "36", + ["rnk"] = "1", + }, + [62552] = { + ["coords"] = { + [1] = { 47.4, 36, 5628, 604800 }, + }, + ["lvl"] = "35", + ["rnk"] = "1", + }, + [62553] = { + ["coords"] = { + [1] = { 71.1, 82.2, 5581, 300 }, + }, + ["lvl"] = "33", + }, + [62554] = { + ["coords"] = { + [1] = { 72.6, 31, 5581, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + ["rnk"] = "1", + }, + [62555] = { + ["coords"] = { + [1] = { 81.9, 34.9, 5581, 600 }, + [2] = { 76.7, 33.9, 5581, 600 }, + }, + ["lvl"] = "33", + ["rnk"] = "1", + }, + [62556] = { + ["coords"] = { + [1] = { 36.1, 55.1, 5561, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [62557] = { + ["coords"] = { + [1] = { 53.3, 77.1, 5561, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [62558] = { + ["coords"] = { + [1] = { 53.3, 77, 5561, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "40", + }, + [62559] = { + ["coords"] = { + [1] = { 53.8, 73.9, 5561, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [62560] = { + ["coords"] = { + [1] = { 38.6, 69.5, 5561, 120 }, + }, + ["lvl"] = "32", + }, + [62561] = { + ["coords"] = { + [1] = { 40.2, 69.5, 5561, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "29", + }, + [62562] = { + ["coords"] = { + [1] = { 33.9, 6.2, 33, 300 }, + }, + ["lvl"] = "32", + }, + [62563] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "28-29", + }, + [62564] = { + ["coords"] = { + [1] = { 52.9, 77.1, 5561, 600 }, + [2] = { 52.9, 76.9, 5561, 600 }, + [3] = { 54.1, 74.9, 5561, 600 }, + [4] = { 58.4, 73.7, 5561, 600 }, + [5] = { 57.1, 73.2, 5561, 600 }, + [6] = { 57.7, 72.1, 5561, 600 }, + [7] = { 54.7, 70.9, 5561, 600 }, + [8] = { 59.1, 69, 5561, 600 }, + [9] = { 56.5, 68.4, 5561, 600 }, + [10] = { 58.6, 68.2, 5561, 600 }, + [11] = { 56.6, 68.1, 5561, 600 }, + [12] = { 54.3, 67.5, 5561, 600 }, + [13] = { 55.6, 66.7, 5561, 600 }, + [14] = { 55.7, 65.6, 5561, 600 }, + [15] = { 51.7, 64.7, 5561, 600 }, + [16] = { 52.5, 63.7, 5561, 600 }, + [17] = { 58.4, 63.1, 5561, 600 }, + [18] = { 58.5, 63, 5561, 600 }, + [19] = { 57.9, 61.9, 5561, 600 }, + [20] = { 59.4, 61.3, 5561, 600 }, + [21] = { 59.6, 61.1, 5561, 600 }, + [22] = { 60.2, 59.8, 5561, 600 }, + [23] = { 57.3, 59.6, 5561, 600 }, + [24] = { 59.2, 57.8, 5561, 600 }, + [25] = { 57.2, 57.6, 5561, 600 }, + [26] = { 58, 55.6, 5561, 600 }, + }, + ["lvl"] = "33-35", + ["rnk"] = "1", + }, + [62565] = { + ["coords"] = { + [1] = { 57.9, 55.6, 5561, 600 }, + }, + ["lvl"] = "34", + ["rnk"] = "1", + }, + [62566] = { + ["coords"] = { + [1] = { 52.9, 77, 5561, 600 }, + }, + ["lvl"] = "34", + ["rnk"] = "1", + }, + [62567] = { + ["coords"] = { + [1] = { 42.2, 66.5, 5581, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [62568] = { + ["coords"] = { + [1] = { 43.3, 34.4, 5602, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "40", + }, + [62569] = { + ["coords"] = { + [1] = { 58.9, 35.4, 5602, 120 }, + }, + ["lvl"] = "40", + }, + [62570] = { + ["coords"] = { + [1] = { 71.1, 47.6, 5561, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [62571] = { + ["coords"] = { + [1] = { 70.8, 46, 5561, 120 }, + }, + ["lvl"] = "45", + }, + [62572] = { + ["coords"] = { + [1] = { 70.6, 48.7, 5561, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [62573] = { + ["coords"] = { + [1] = { 71.9, 49.6, 5561, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [62574] = { + ["coords"] = { + [1] = { 71, 46.2, 5561, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [62575] = { + ["coords"] = { + [1] = { 70.9, 48.2, 5561, 120 }, + [2] = { 69.5, 47.7, 5561, 120 }, + [3] = { 70.3, 47.6, 5561, 120 }, + [4] = { 71, 47.1, 5561, 120 }, + [5] = { 70.5, 46.2, 5561, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [62576] = { + ["coords"] = { + [1] = { 49.2, 54.8, 5581, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [62577] = { + ["coords"] = { + [1] = { 49.1, 54.7, 5581, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [62578] = { + ["coords"] = { + [1] = { 71.2, 9.6, 1519, 300 }, + [2] = { 54.7, 82.5, 5581, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [62579] = { + ["coords"] = { + [1] = { 24.2, 39.1, 5581, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [62580] = { + ["coords"] = { + [1] = { 32, 60.3, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "34", + }, + [62581] = { + ["coords"] = { + [1] = { 38, 65.9, 3457, 604800 }, + [2] = { 41.5, 62.9, 3457, 604800 }, + [3] = { 39.1, 58.8, 3457, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "45", + }, + [62582] = { + ["coords"] = { + [1] = { 38.9, 63.3, 3457, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [62583] = { + ["coords"] = { + [1] = { 21.4, 41.5, 1519, 120 }, + [2] = { 28, 99.7, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [62584] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [62585] = { + ["coords"] = {}, + ["lvl"] = "40", + ["rnk"] = "1", + }, + [62586] = { + ["coords"] = { + [1] = { 71.2, 45.5, 5561, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "31", + }, + [62587] = { + ["coords"] = { + [1] = { 71.9, 49.8, 5561, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [62588] = { + ["coords"] = { + [1] = { 70.8, 47.8, 5561, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "29", + }, + [62589] = { + ["coords"] = { + [1] = { 70.3, 48.4, 5561, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [62590] = { + ["coords"] = { + [1] = { 71, 46.6, 5561, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [62591] = { + ["coords"] = { + [1] = { 63.6, 52.3, 3457, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [62592] = { + ["coords"] = { + [1] = { 37.7, 63.1, 3457, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [62593] = { + ["coords"] = { + [1] = { 37.7, 62.5, 3457, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [62594] = { + ["coords"] = { + [1] = { 70.6, 34.6, 3457, 604800 }, + [2] = { 70.3, 34.2, 3457, 604800 }, + [3] = { 74.7, 33.6, 3457, 604800 }, + [4] = { 72.4, 32.4, 3457, 604800 }, + [5] = { 62.7, 31.5, 3457, 604800 }, + [6] = { 62.8, 31, 3457, 604800 }, + [7] = { 70.7, 30.3, 3457, 604800 }, + [8] = { 58.1, 27, 3457, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [62595] = { + ["coords"] = { + [1] = { 69.1, 33.3, 3457, 604800 }, + [2] = { 71.8, 29.4, 3457, 604800 }, + [3] = { 68.4, 26.7, 3457, 604800 }, + [4] = { 68.6, 21, 3457, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [62596] = { + ["coords"] = { + [1] = { 70.1, 34.7, 3457, 604800 }, + [2] = { 75, 30.4, 3457, 604800 }, + [3] = { 71.6, 30.3, 3457, 604800 }, + [4] = { 71.5, 29.8, 3457, 604800 }, + [5] = { 57.9, 26.4, 3457, 604800 }, + [6] = { 59.5, 25.3, 3457, 604800 }, + [7] = { 59.3, 24.7, 3457, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [62597] = { + ["coords"] = { + [1] = { 55.6, 31.1, 3457, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [62598] = { + ["coords"] = { + [1] = { 31.3, 51.2, 3457, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [62599] = { + ["coords"] = { + [1] = { 68.3, 23.7, 3457, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [62600] = { + ["coords"] = { + [1] = { 70, 31.1, 3457, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [62601] = { + ["coords"] = { + [1] = { 48.8, 85, 3457, 604800 }, + [2] = { 39.6, 63.4, 3457, 604800 }, + [3] = { 28, 55.3, 3457, 604800 }, + [4] = { 65.8, 53.6, 3457, 604800 }, + [5] = { 65, 49.7, 3457, 604800 }, + [6] = { 47.5, 49.5, 3457, 604800 }, + [7] = { 70.7, 31.9, 3457, 604800 }, + [8] = { 62.1, 29.9, 3457, 604800 }, + [9] = { 66.6, 23.4, 3457, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [62602] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [62603] = { + ["coords"] = { + [1] = { 57.3, 91.8, 3457, 604800 }, + [2] = { 55.4, 88.6, 3457, 604800 }, + [3] = { 52.1, 87.7, 3457, 604800 }, + [4] = { 47.8, 85.6, 3457, 604800 }, + [5] = { 66.9, 80.6, 3457, 604800 }, + [6] = { 47.2, 74.4, 3457, 604800 }, + [7] = { 70, 70.9, 3457, 604800 }, + [8] = { 64.8, 69.7, 3457, 604800 }, + [9] = { 61.7, 69.4, 3457, 604800 }, + [10] = { 65.1, 65, 3457, 604800 }, + [11] = { 55.3, 64.4, 3457, 604800 }, + [12] = { 37.4, 64, 3457, 604800 }, + [13] = { 37.6, 62.6, 3457, 604800 }, + [14] = { 54.5, 61.5, 3457, 604800 }, + [15] = { 27.9, 57, 3457, 604800 }, + [16] = { 66.6, 54.6, 3457, 604800 }, + [17] = { 61.5, 54.1, 3457, 604800 }, + [18] = { 46.2, 49.7, 3457, 604800 }, + [19] = { 37.8, 46.1, 3457, 604800 }, + }, + ["lvl"] = "1", + }, + [62604] = { + ["coords"] = { + [1] = { 70.1, 25, 3457, 604800 }, + [2] = { 69.5, 24.7, 3457, 604800 }, + [3] = { 77, 18.4, 3457, 604800 }, + [4] = { 76.8, 17.8, 3457, 604800 }, + [5] = { 72.5, 17, 3457, 604800 }, + [6] = { 73.2, 16.7, 3457, 604800 }, + [7] = { 75.5, 11.6, 3457, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [62605] = { + ["coords"] = { + [1] = { 70, 24, 3457, 604800 }, + [2] = { 77.4, 17.6, 3457, 604800 }, + [3] = { 72.8, 16.6, 3457, 604800 }, + [4] = { 72.3, 15.8, 3457, 604800 }, + [5] = { 76.2, 12, 3457, 604800 }, + [6] = { 75.2, 10.7, 3457, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [62606] = { + ["coords"] = { + [1] = { 76.8, 9, 3457, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [62607] = { + ["coords"] = { + [1] = { 74, 33.9, 3457, 604800 }, + [2] = { 74.4, 33.7, 3457, 604800 }, + [3] = { 74, 33.2, 3457, 604800 }, + [4] = { 60.6, 32.7, 3457, 604800 }, + [5] = { 61.3, 32.7, 3457, 604800 }, + [6] = { 70.4, 31.5, 3457, 604800 }, + [7] = { 70.1, 31.2, 3457, 604800 }, + [8] = { 67.4, 24.9, 3457, 604800 }, + [9] = { 66.8, 24.7, 3457, 604800 }, + [10] = { 58.6, 23.4, 3457, 604800 }, + [11] = { 66, 22.8, 3457, 604800 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [62608] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [62609] = { + ["coords"] = { + [1] = { 69.4, 22.3, 3457, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [62610] = { + ["coords"] = {}, + ["lvl"] = "50", + }, + [62611] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [62612] = { + ["coords"] = { + [1] = { 28.3, 86.6, 440, 300 }, + [2] = { 29, 86.5, 440, 300 }, + [3] = { 29, 86.4, 440, 300 }, + [4] = { 27, 79.5, 440, 300 }, + [5] = { 26.7, 79.5, 440, 300 }, + [6] = { 26.5, 79.1, 440, 300 }, + [7] = { 26.7, 78.9, 440, 300 }, + [8] = { 27.1, 78.8, 440, 300 }, + [9] = { 25.4, 77.9, 440, 300 }, + [10] = { 27.1, 77.8, 440, 300 }, + [11] = { 25, 77.5, 440, 300 }, + [12] = { 25, 77, 440, 300 }, + [13] = { 26.3, 77, 440, 300 }, + [14] = { 24.8, 76.9, 440, 300 }, + [15] = { 25.9, 76.9, 440, 300 }, + [16] = { 26, 76.5, 440, 300 }, + [17] = { 24.1, 76.3, 440, 300 }, + [18] = { 24.2, 76.1, 440, 300 }, + [19] = { 25.9, 76, 440, 300 }, + }, + ["lvl"] = "49-51", + }, + [62613] = { + ["coords"] = { + [1] = { 28.4, 86.7, 440, 300 }, + [2] = { 28.9, 86.6, 440, 300 }, + [3] = { 28.8, 86, 440, 300 }, + [4] = { 28.7, 84.9, 440, 300 }, + [5] = { 29.2, 84.6, 440, 300 }, + [6] = { 22.5, 79.8, 440, 300 }, + }, + ["lvl"] = "49-51", + }, + [62614] = { + ["coords"] = { + [1] = { 29, 86.9, 440, 300 }, + [2] = { 28.6, 86.6, 440, 300 }, + [3] = { 28.4, 85.9, 440, 300 }, + [4] = { 28.2, 85, 440, 300 }, + [5] = { 29.3, 84.3, 440, 300 }, + [6] = { 29, 84.2, 440, 300 }, + [7] = { 22.3, 80.2, 440, 300 }, + [8] = { 22.1, 79.8, 440, 300 }, + }, + ["lvl"] = "49-51", + }, + [62615] = { + ["coords"] = { + [1] = { 23, 82.7, 440, 300 }, + [2] = { 22.8, 82.4, 440, 300 }, + [3] = { 22.7, 82.2, 440, 300 }, + [4] = { 22.6, 82.1, 440, 300 }, + [5] = { 23.7, 81.7, 440, 300 }, + [6] = { 23.5, 80.8, 440, 300 }, + [7] = { 22, 80.2, 440, 300 }, + }, + ["lvl"] = "50-52", + }, + [62616] = { + ["coords"] = { + [1] = { 23.1, 82.7, 440, 300 }, + [2] = { 22.8, 82.3, 440, 300 }, + [3] = { 22.6, 82.3, 440, 300 }, + [4] = { 22.6, 82.2, 440, 300 }, + [5] = { 23.4, 82.1, 440, 300 }, + [6] = { 22.4, 80.9, 440, 300 }, + [7] = { 23.4, 80.9, 440, 300 }, + }, + ["lvl"] = "50-52", + }, + [62617] = { + ["coords"] = { + [1] = { 28.9, 87.1, 440, 300 }, + [2] = { 28.9, 86.5, 440, 300 }, + [3] = { 29.1, 85.3, 440, 300 }, + [4] = { 29.5, 84.6, 440, 300 }, + [5] = { 22.9, 82.8, 440, 300 }, + [6] = { 22.9, 82.4, 440, 300 }, + [7] = { 22.6, 82.2, 440, 300 }, + [8] = { 23, 81.7, 440, 300 }, + [9] = { 23.3, 81.4, 440, 300 }, + [10] = { 23.2, 80.8, 440, 300 }, + }, + ["lvl"] = "49-51", + }, + [62618] = { + ["coords"] = { + [1] = { 22.2, 79.6, 440, 120 }, + }, + ["lvl"] = "53", + }, + [62619] = { + ["coords"] = { + [1] = { 26.7, 78.4, 440, 120 }, + [2] = { 26.5, 77.6, 440, 120 }, + [3] = { 25.3, 76.9, 440, 120 }, + [4] = { 24.5, 76.5, 440, 120 }, + [5] = { 25.4, 76, 440, 120 }, + [6] = { 24.6, 75.7, 440, 120 }, + [7] = { 25.2, 75.3, 440, 120 }, + [8] = { 24.4, 73.7, 440, 120 }, + [9] = { 25.3, 73.3, 440, 120 }, + [10] = { 24.6, 73.1, 440, 120 }, + [11] = { 24, 73.1, 440, 120 }, + }, + ["lvl"] = "48-50", + }, + [62620] = { + ["coords"] = { + [1] = { 25.3, 72.6, 440, 120 }, + }, + ["lvl"] = "45", + }, + [62621] = { + ["coords"] = { + [1] = { 25.4, 72.7, 440, 120 }, + }, + ["lvl"] = "45", + }, + [62622] = { + ["coords"] = { + [1] = { 25, 74, 440, 120 }, + [2] = { 25.1, 73.9, 440, 120 }, + [3] = { 25.2, 73.5, 440, 120 }, + [4] = { 23.8, 73.5, 440, 120 }, + [5] = { 24.2, 73.2, 440, 300 }, + [6] = { 25.1, 72.7, 440, 120 }, + [7] = { 25.2, 72.6, 440, 120 }, + [8] = { 24.8, 72.1, 440, 120 }, + }, + ["lvl"] = "55", + ["rnk"] = "1", + }, + [62623] = { + ["coords"] = { + [1] = { 24.8, 73.5, 440, 120 }, + }, + ["lvl"] = "30", + }, + [62624] = { + ["coords"] = { + [1] = { 24.6, 74.2, 440, 120 }, + }, + ["lvl"] = "55", + ["rnk"] = "1", + }, + [62625] = { + ["coords"] = { + [1] = { 23.9, 73.3, 440, 120 }, + }, + ["lvl"] = "40", + }, + [62626] = { + ["coords"] = { + [1] = { 23.9, 73.5, 440, 120 }, + }, + ["lvl"] = "50", + }, + [62627] = { + ["coords"] = { + [1] = { 24.3, 72.8, 440, 120 }, + }, + ["lvl"] = "35", + }, + [62628] = { + ["coords"] = { + [1] = { 25.3, 73.4, 440, 120 }, + }, + ["lvl"] = "43", + }, + [62629] = { + ["coords"] = { + [1] = { 39.1, 27.3, 16, 120 }, + }, + ["lvl"] = "58", + ["rnk"] = "1", + }, + [62630] = { + ["coords"] = { + [1] = { 66.3, 86, 618, 120 }, + }, + ["lvl"] = "56", + }, + [62631] = { + ["coords"] = { + [1] = { 66.5, 84.6, 618, 120 }, + }, + ["lvl"] = "58", + }, + [62632] = { + ["coords"] = { + [1] = { 35.1, 30.7, 16, 120 }, + [2] = { 66.8, 89.4, 618, 120 }, + }, + ["lvl"] = "52", + }, + [62633] = { + ["coords"] = { + [1] = { 64.2, 72.3, 12, 300 }, + [2] = { 66.8, 71.2, 12, 300 }, + [3] = { 63.3, 70.2, 12, 300 }, + [4] = { 61.5, 69.1, 12, 300 }, + [5] = { 66.7, 68.8, 12, 300 }, + [6] = { 65.9, 68.6, 12, 300 }, + [7] = { 62.5, 68.3, 12, 300 }, + [8] = { 64.5, 67.5, 12, 300 }, + [9] = { 65.4, 66.8, 12, 300 }, + [10] = { 62.6, 66.7, 12, 300 }, + [11] = { 67, 65.7, 12, 300 }, + [12] = { 62.8, 64.9, 12, 300 }, + [13] = { 64.2, 64.7, 12, 300 }, + }, + ["lvl"] = "8-9", + }, + [62634] = { + ["coords"] = { + [1] = { 64.9, 69.9, 12, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "12", + }, + [62635] = { + ["coords"] = { + [1] = { 73.9, 49, 12, 300 }, + }, + ["lvl"] = "13", + }, + [62636] = { + ["coords"] = { + [1] = { 55.2, 35.2, 11, 120 }, + [2] = { 11.2, 6, 5602, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "40", + }, + [62637] = { + ["coords"] = { + [1] = { 74.1, 47.7, 11, 120 }, + [2] = { 25.6, 15.6, 5602, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "40", + ["rnk"] = "1", + }, + [62638] = { + ["coords"] = { + [1] = { 73.9, 34.2, 45, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "27", + }, + [62639] = { + ["coords"] = { + [1] = { 59.5, 63.3, 5602, 50400 }, + }, + ["lvl"] = "37", + ["rnk"] = "4", + }, + [62640] = { + ["coords"] = { + [1] = { 46.1, 88.8, 5602, 50400 }, + }, + ["lvl"] = "40", + ["rnk"] = "4", + }, + [62641] = { + ["coords"] = { + [1] = { 56.8, 77.7, 5602, 172800 }, + }, + ["lvl"] = "38", + ["rnk"] = "2", + }, + [62642] = { + ["coords"] = { + [1] = { 49.1, 67.2, 5602, 50400 }, + }, + ["lvl"] = "35", + ["rnk"] = "4", + }, + [62643] = { + ["coords"] = { + [1] = { 93.4, 52.2, 11, 50400 }, + [2] = { 40.5, 19, 5602, 50400 }, + }, + ["lvl"] = "36", + ["rnk"] = "4", + }, + [62644] = { + ["coords"] = { + [1] = { 61.2, 44.7, 5602, 50400 }, + }, + ["lvl"] = "38", + ["rnk"] = "4", + }, + [62645] = { + ["coords"] = { + [1] = { 29.5, 91.1, 5628, 604800 }, + [2] = { 34.4, 90.6, 5628, 604800 }, + [3] = { 10, 77.3, 5628, 604800 }, + [4] = { 9.8, 76.2, 5628, 604800 }, + [5] = { 8.5, 70.7, 5628, 604800 }, + [6] = { 13.9, 64.6, 5628, 604800 }, + [7] = { 26, 54.6, 5628, 604800 }, + [8] = { 28.4, 52.4, 5628, 604800 }, + [9] = { 28.5, 52.2, 5628, 604800 }, + [10] = { 21.6, 50.9, 5628, 604800 }, + [11] = { 21.2, 43.7, 5628, 604800 }, + [12] = { 21, 41.6, 5628, 604800 }, + [13] = { 21.1, 38, 5628, 604800 }, + [14] = { 18.9, 31.3, 5628, 604800 }, + [15] = { 19, 30.8, 5628, 604800 }, + [16] = { 30.2, 29, 5628, 604800 }, + [17] = { 27.1, 27.1, 5628, 604800 }, + [18] = { 27.2, 26.8, 5628, 604800 }, + }, + ["lvl"] = "34-35", + ["rnk"] = "1", + }, + [62646] = { + ["coords"] = { + [1] = { 34, 95.2, 5628, 604800 }, + [2] = { 34.5, 95.2, 5628, 604800 }, + [3] = { 30.8, 95.2, 5628, 604800 }, + [4] = { 31.1, 95.2, 5628, 604800 }, + [5] = { 31, 95, 5628, 604800 }, + [6] = { 34.3, 94.8, 5628, 604800 }, + [7] = { 29.3, 91.7, 5628, 604800 }, + [8] = { 24.8, 91.5, 5628, 604800 }, + [9] = { 24.8, 84.2, 5628, 604800 }, + [10] = { 30.1, 84.1, 5628, 604800 }, + [11] = { 28.7, 83.3, 5628, 604800 }, + [12] = { 8.4, 71.3, 5628, 604800 }, + [13] = { 9.3, 70.8, 5628, 604800 }, + [14] = { 9.4, 70.2, 5628, 604800 }, + [15] = { 15.4, 65.7, 5628, 604800 }, + [16] = { 25.7, 54.7, 5628, 604800 }, + [17] = { 25.8, 54.3, 5628, 604800 }, + [18] = { 27.2, 54, 5628, 604800 }, + [19] = { 26.8, 53.8, 5628, 604800 }, + [20] = { 28.2, 51.8, 5628, 604800 }, + [21] = { 20.8, 50.7, 5628, 604800 }, + [22] = { 21.5, 50.4, 5628, 604800 }, + [23] = { 21.2, 46.7, 5628, 604800 }, + [24] = { 24.2, 40.1, 5628, 604800 }, + [25] = { 21.1, 38.4, 5628, 604800 }, + [26] = { 24, 38.2, 5628, 604800 }, + [27] = { 19.2, 31.2, 5628, 604800 }, + [28] = { 27.9, 29.4, 5628, 604800 }, + [29] = { 27.7, 26.7, 5628, 604800 }, + [30] = { 20.4, 23.5, 5628, 604800 }, + [31] = { 30.2, 21.6, 5628, 604800 }, + }, + ["lvl"] = "34-35", + ["rnk"] = "1", + }, + [62647] = { + ["coords"] = { + [1] = { 28, 28.5, 5628, 604800 }, + [2] = { 30.3, 28, 5628, 604800 }, + [3] = { 31.6, 22, 5628, 604800 }, + [4] = { 29.4, 19.9, 5628, 604800 }, + [5] = { 29.3, 15.8, 5628, 604800 }, + [6] = { 31.6, 15.8, 5628, 604800 }, + [7] = { 30.6, 14.8, 5628, 604800 }, + [8] = { 30.4, 14.8, 5628, 604800 }, + [9] = { 31.8, 12.8, 5628, 604800 }, + [10] = { 30.5, 10.8, 5628, 604800 }, + }, + ["lvl"] = "36-37", + ["rnk"] = "1", + }, + [62648] = { + ["coords"] = { + [1] = { 21.1, 29.5, 5628, 604800 }, + [2] = { 21, 29.2, 5628, 604800 }, + [3] = { 20.7, 29.2, 5628, 604800 }, + [4] = { 19.1, 28.2, 5628, 604800 }, + [5] = { 19.4, 27.8, 5628, 604800 }, + [6] = { 22.8, 27.6, 5628, 604800 }, + [7] = { 23.2, 27.4, 5628, 604800 }, + [8] = { 19.1, 27.3, 5628, 604800 }, + [9] = { 22.8, 27.1, 5628, 604800 }, + [10] = { 19.5, 27.1, 5628, 604800 }, + [11] = { 23.2, 26.7, 5628, 604800 }, + [12] = { 21.4, 26.2, 5628, 604800 }, + [13] = { 20.9, 26.2, 5628, 604800 }, + [14] = { 20.9, 25.6, 5628, 604800 }, + [15] = { 21.2, 25.5, 5628, 604800 }, + [16] = { 23.1, 24.1, 5628, 604800 }, + [17] = { 23.3, 23.7, 5628, 604800 }, + [18] = { 21.5, 23.6, 5628, 604800 }, + [19] = { 22.7, 23.4, 5628, 604800 }, + [20] = { 23.2, 23.2, 5628, 604800 }, + [21] = { 21.2, 23.1, 5628, 604800 }, + [22] = { 21.5, 23, 5628, 604800 }, + }, + ["lvl"] = "34-35", + }, + [62649] = { + ["coords"] = { + [1] = { 25.3, 56.2, 5628, 604800 }, + [2] = { 25.2, 56, 5628, 604800 }, + [3] = { 23.5, 54.9, 5628, 604800 }, + [4] = { 24.7, 54.9, 5628, 604800 }, + [5] = { 28.7, 48.4, 5628, 604800 }, + [6] = { 31.6, 47.9, 5628, 604800 }, + [7] = { 28.7, 47.4, 5628, 604800 }, + [8] = { 20.4, 39.2, 5628, 604800 }, + [9] = { 23.1, 38.8, 5628, 604800 }, + [10] = { 23.4, 36.7, 5628, 604800 }, + [11] = { 17.7, 27.7, 5628, 604800 }, + [12] = { 24.4, 22.1, 5628, 604800 }, + }, + ["lvl"] = "34-35", + ["rnk"] = "1", + }, + [62650] = { + ["coords"] = { + [1] = { 23, 55.4, 5628, 604800 }, + [2] = { 23.4, 55.3, 5628, 604800 }, + [3] = { 26.6, 54.7, 5628, 604800 }, + [4] = { 21.2, 50.9, 5628, 604800 }, + [5] = { 29, 48, 5628, 604800 }, + [6] = { 28.9, 47.8, 5628, 604800 }, + [7] = { 21.2, 42.3, 5628, 604800 }, + [8] = { 22.9, 38.6, 5628, 604800 }, + [9] = { 23.2, 38.4, 5628, 604800 }, + [10] = { 19.5, 31.1, 5628, 604800 }, + [11] = { 24.7, 22.7, 5628, 604800 }, + }, + ["lvl"] = "34-35", + ["rnk"] = "1", + }, + [62651] = { + ["coords"] = { + [1] = { 33.3, 92.3, 5628, 604800 }, + [2] = { 32, 92.3, 5628, 604800 }, + [3] = { 33.2, 92.2, 5628, 604800 }, + [4] = { 31.7, 92.1, 5628, 604800 }, + [5] = { 33.4, 92, 5628, 604800 }, + [6] = { 31.9, 91.9, 5628, 604800 }, + [7] = { 29.5, 91.6, 5628, 604800 }, + [8] = { 29.2, 91.2, 5628, 604800 }, + [9] = { 24.9, 91.2, 5628, 604800 }, + [10] = { 24.7, 91.2, 5628, 604800 }, + [11] = { 34.5, 90.9, 5628, 604800 }, + [12] = { 34.6, 90.6, 5628, 604800 }, + [13] = { 21.1, 88.6, 5628, 604800 }, + [14] = { 20.9, 87.2, 5628, 604800 }, + [15] = { 36.6, 86.9, 5628, 604800 }, + [16] = { 36.3, 86.6, 5628, 604800 }, + [17] = { 36.7, 86.5, 5628, 604800 }, + [18] = { 24.8, 84.7, 5628, 604800 }, + [19] = { 24.5, 84.5, 5628, 604800 }, + [20] = { 29.9, 84.4, 5628, 604800 }, + }, + ["lvl"] = "34-35", + ["rnk"] = "1", + }, + [62652] = { + ["coords"] = { + [1] = { 32.6, 90.5, 5628, 604800 }, + }, + ["lvl"] = "37", + ["rnk"] = "1", + }, + [62653] = { + ["coords"] = { + [1] = { 22.6, 87.8, 5628, 604800 }, + [2] = { 29.1, 87.5, 5628, 604800 }, + [3] = { 33.3, 87.3, 5628, 604800 }, + [4] = { 23.4, 86.5, 5628, 604800 }, + [5] = { 28.7, 84.3, 5628, 604800 }, + [6] = { 26.9, 84.1, 5628, 604800 }, + [7] = { 35.4, 83.9, 5628, 604800 }, + }, + ["lvl"] = "36-37", + ["rnk"] = "1", + }, + [62654] = { + ["coords"] = { + [1] = { 27.2, 91, 5628, 604800 }, + [2] = { 23.2, 88.5, 5628, 604800 }, + [3] = { 33.7, 87.4, 5628, 604800 }, + [4] = { 27.3, 87.4, 5628, 604800 }, + [5] = { 24.2, 86.9, 5628, 604800 }, + [6] = { 23.9, 28.7, 5628, 604800 }, + [7] = { 18.4, 25.3, 5628, 604800 }, + [8] = { 22, 21.1, 5628, 604800 }, + }, + ["lvl"] = "35-36", + ["rnk"] = "1", + }, + [62655] = { + ["coords"] = { + [1] = { 25.1, 51.1, 5628, 300 }, + [2] = { 23, 49, 5628, 300 }, + [3] = { 27, 48.9, 5628, 300 }, + [4] = { 25.6, 48.4, 5628, 300 }, + [5] = { 22.6, 45.9, 5628, 300 }, + [6] = { 26.4, 44.7, 5628, 300 }, + [7] = { 24.5, 42.6, 5628, 300 }, + [8] = { 22.6, 42.5, 5628, 300 }, + }, + ["lvl"] = "36-37", + ["rnk"] = "1", + }, + [62656] = { + ["coords"] = { + [1] = { 15.2, 86.4, 5628, 604800 }, + [2] = { 14.9, 85.9, 5628, 604800 }, + [3] = { 15, 85.6, 5628, 604800 }, + [4] = { 9.5, 75.6, 5628, 604800 }, + [5] = { 8.9, 70.8, 5628, 604800 }, + [6] = { 11.9, 65.2, 5628, 604800 }, + [7] = { 17.1, 65, 5628, 604800 }, + [8] = { 15.7, 64.8, 5628, 604800 }, + }, + ["lvl"] = "35-36", + ["rnk"] = "1", + }, + [62657] = { + ["coords"] = { + [1] = { 15.3, 86.8, 5628, 604800 }, + [2] = { 14.8, 86.3, 5628, 604800 }, + [3] = { 15.3, 85.9, 5628, 604800 }, + [4] = { 14.8, 85.4, 5628, 604800 }, + [5] = { 10.1, 80.7, 5628, 604800 }, + [6] = { 10, 80.4, 5628, 604800 }, + [7] = { 9.8, 80.3, 5628, 604800 }, + [8] = { 9.9, 80, 5628, 604800 }, + [9] = { 9.6, 76.1, 5628, 604800 }, + [10] = { 9.2, 75.6, 5628, 604800 }, + [11] = { 9.8, 75.5, 5628, 604800 }, + [12] = { 9.4, 73.1, 5628, 604800 }, + [13] = { 8.9, 72.6, 5628, 604800 }, + [14] = { 9.6, 69.3, 5628, 604800 }, + [15] = { 10, 69, 5628, 604800 }, + [16] = { 9.9, 68.6, 5628, 604800 }, + [17] = { 9.8, 68.1, 5628, 604800 }, + [18] = { 10.1, 68, 5628, 604800 }, + [19] = { 11.2, 66.2, 5628, 604800 }, + [20] = { 11.6, 66, 5628, 604800 }, + [21] = { 11, 66, 5628, 604800 }, + [22] = { 11.3, 65.8, 5628, 604800 }, + [23] = { 11.5, 65.6, 5628, 604800 }, + [24] = { 15.6, 65.5, 5628, 604800 }, + [25] = { 17.2, 65.4, 5628, 604800 }, + [26] = { 15.3, 65.1, 5628, 604800 }, + [27] = { 16.9, 65, 5628, 604800 }, + [28] = { 17.4, 64.7, 5628, 604800 }, + [29] = { 17.9, 28.2, 5628, 604800 }, + [30] = { 17.5, 28.1, 5628, 604800 }, + [31] = { 17.4, 27.8, 5628, 604800 }, + [32] = { 17.7, 27.7, 5628, 604800 }, + [33] = { 18, 27.7, 5628, 604800 }, + [34] = { 20.3, 24.1, 5628, 604800 }, + [35] = { 19.9, 23.7, 5628, 604800 }, + [36] = { 20.4, 23.3, 5628, 604800 }, + [37] = { 24.5, 22.4, 5628, 604800 }, + [38] = { 24.7, 22.1, 5628, 604800 }, + [39] = { 22.6, 20.2, 5628, 604800 }, + [40] = { 22.8, 20, 5628, 604800 }, + [41] = { 22.6, 20, 5628, 604800 }, + }, + ["lvl"] = "36-37", + }, + [62658] = { + ["coords"] = { + [1] = { 17.2, 79.1, 5628, 604800 }, + [2] = { 15.3, 76, 5628, 604800 }, + [3] = { 17.3, 74.2, 5628, 604800 }, + [4] = { 15.9, 71.6, 5628, 604800 }, + [5] = { 20.7, 69.8, 5628, 604800 }, + [6] = { 16.3, 68.4, 5628, 604800 }, + [7] = { 11.9, 68.3, 5628, 604800 }, + [8] = { 20.1, 23.7, 5628, 604800 }, + [9] = { 24.4, 22.6, 5628, 604800 }, + }, + ["lvl"] = "35-36", + ["rnk"] = "1", + }, + [62659] = { + ["coords"] = { + [1] = { 30.7, 29.9, 5628, 604800 }, + [2] = { 30.3, 29.9, 5628, 604800 }, + [3] = { 31.1, 28.2, 5628, 604800 }, + [4] = { 28.1, 28.1, 5628, 604800 }, + [5] = { 30.5, 28, 5628, 604800 }, + [6] = { 24.4, 27.9, 5628, 604800 }, + [7] = { 28.1, 27.7, 5628, 604800 }, + [8] = { 31.1, 27.6, 5628, 604800 }, + [9] = { 29.2, 12.8, 5628, 604800 }, + [10] = { 29.1, 12.6, 5628, 604800 }, + [11] = { 31.9, 12.5, 5628, 604800 }, + [12] = { 28.9, 10.4, 5628, 604800 }, + [13] = { 32.1, 10.4, 5628, 604800 }, + [14] = { 32.1, 10, 5628, 604800 }, + [15] = { 28.9, 9.9, 5628, 604800 }, + [16] = { 30.3, 8.6, 5628, 604800 }, + [17] = { 30.7, 8.6, 5628, 604800 }, + }, + ["lvl"] = "36-37", + ["rnk"] = "1", + }, + [62660] = { + ["coords"] = { + [1] = { 15.2, 81, 5628, 604800 }, + [2] = { 13.1, 79.6, 5628, 604800 }, + [3] = { 10.8, 77.1, 5628, 604800 }, + [4] = { 19.2, 72.6, 5628, 604800 }, + [5] = { 10.9, 71.9, 5628, 604800 }, + [6] = { 14.6, 70.9, 5628, 604800 }, + [7] = { 17.5, 70.9, 5628, 604800 }, + [8] = { 20.5, 69.3, 5628, 604800 }, + [9] = { 18.4, 24.4, 5628, 604800 }, + }, + ["lvl"] = "35-36", + ["rnk"] = "1", + }, + [62661] = { + ["coords"] = { + [1] = { 22.7, 22.8, 5628, 604800 }, + }, + ["lvl"] = "37", + ["rnk"] = "1", + }, + [62662] = { + ["coords"] = { + [1] = { 26, 26.9, 5628, 604800 }, + [2] = { 30.4, 26.6, 5628, 604800 }, + [3] = { 26.1, 26.5, 5628, 604800 }, + [4] = { 30.5, 26.2, 5628, 604800 }, + [5] = { 26.1, 11.9, 5628, 604800 }, + [6] = { 27.1, 11.4, 5628, 604800 }, + [7] = { 29.9, 10.2, 5628, 604800 }, + [8] = { 31.1, 10.1, 5628, 604800 }, + [9] = { 29.7, 9.9, 5628, 604800 }, + [10] = { 26.1, 9, 5628, 604800 }, + [11] = { 27.3, 9, 5628, 604800 }, + [12] = { 26.2, 9, 5628, 604800 }, + }, + ["lvl"] = "35-36", + ["rnk"] = "1", + }, + [62663] = { + ["coords"] = { + [1] = { 31.3, 22.5, 5628, 604800 }, + [2] = { 29.7, 20.2, 5628, 604800 }, + [3] = { 29.8, 17.2, 5628, 604800 }, + [4] = { 31.3, 16.4, 5628, 604800 }, + }, + ["lvl"] = "35-36", + ["rnk"] = "1", + }, + [62664] = { + ["coords"] = { + [1] = { 24.1, 39.8, 5628, 604800 }, + }, + ["lvl"] = "36", + ["rnk"] = "1", + }, + [62665] = { + ["coords"] = { + [1] = { 30.5, 24.1, 5628, 604800 }, + }, + ["lvl"] = "38", + ["rnk"] = "1", + }, + [62666] = { + ["coords"] = { + [1] = { 30.7, 14.9, 5628, 604800 }, + [2] = { 30.3, 14.9, 5628, 604800 }, + [3] = { 31.9, 12.9, 5628, 604800 }, + [4] = { 29.1, 12.9, 5628, 604800 }, + [5] = { 31.7, 12.6, 5628, 604800 }, + [6] = { 31.6, 11.3, 5628, 604800 }, + [7] = { 31.9, 9, 5628, 604800 }, + [8] = { 31.8, 7.3, 5628, 604800 }, + [9] = { 29.2, 7.2, 5628, 604800 }, + }, + ["lvl"] = "36-37", + ["rnk"] = "1", + }, + [62667] = { + ["coords"] = { + [1] = { 29.8, 24.6, 5628, 604800 }, + [2] = { 30, 24.5, 5628, 604800 }, + [3] = { 30.1, 24.3, 5628, 604800 }, + [4] = { 29.8, 24.1, 5628, 604800 }, + [5] = { 30, 24.1, 5628, 604800 }, + [6] = { 30, 24, 5628, 604800 }, + [7] = { 29.7, 23.9, 5628, 604800 }, + [8] = { 31.2, 22.7, 5628, 604800 }, + [9] = { 30.9, 22.4, 5628, 604800 }, + [10] = { 31, 22.1, 5628, 604800 }, + [11] = { 29.9, 20, 5628, 604800 }, + [12] = { 29.8, 19.8, 5628, 604800 }, + [13] = { 30, 19.8, 5628, 604800 }, + [14] = { 29.8, 19.5, 5628, 604800 }, + [15] = { 29.8, 17.5, 5628, 604800 }, + [16] = { 30, 17.2, 5628, 604800 }, + [17] = { 29.7, 17.1, 5628, 604800 }, + [18] = { 31.1, 16.4, 5628, 604800 }, + [19] = { 31, 16.1, 5628, 604800 }, + [20] = { 31.2, 16.1, 5628, 604800 }, + [21] = { 31.1, 15.9, 5628, 604800 }, + [22] = { 29.8, 15.7, 5628, 604800 }, + [23] = { 29.8, 15.6, 5628, 604800 }, + }, + ["lvl"] = "36-37", + }, + [62668] = { + ["coords"] = { + [1] = { 31, 27.9, 5628, 604800 }, + [2] = { 29.8, 24.5, 5628, 604800 }, + [3] = { 31.2, 23.9, 5628, 604800 }, + [4] = { 31.1, 15.5, 5628, 604800 }, + [5] = { 29.9, 15.4, 5628, 604800 }, + [6] = { 26, 11.7, 5628, 604800 }, + [7] = { 31.2, 10, 5628, 604800 }, + [8] = { 26.5, 10, 5628, 604800 }, + [9] = { 30, 9.8, 5628, 604800 }, + [10] = { 31, 9.7, 5628, 604800 }, + [11] = { 26, 9, 5628, 604800 }, + [12] = { 31.2, 7.5, 5628, 604800 }, + [13] = { 29.8, 7.4, 5628, 604800 }, + [14] = { 29.6, 7, 5628, 604800 }, + [15] = { 31.4, 7, 5628, 604800 }, + }, + ["lvl"] = "37-38", + ["rnk"] = "1", + }, + [62669] = { + ["coords"] = { + [1] = { 27.3, 29.2, 5628, 604800 }, + [2] = { 30.3, 27.6, 5628, 604800 }, + [3] = { 27.9, 26.9, 5628, 604800 }, + [4] = { 29.3, 24.1, 5628, 604800 }, + [5] = { 31.6, 24.1, 5628, 604800 }, + [6] = { 29.3, 17.9, 5628, 604800 }, + [7] = { 31.7, 12.5, 5628, 604800 }, + [8] = { 29.3, 12.5, 5628, 604800 }, + }, + ["lvl"] = "37-38", + ["rnk"] = "1", + }, + [62670] = { + ["coords"] = { + [1] = { 25.4, 10.2, 5628, 604800 }, + }, + ["lvl"] = "38", + ["rnk"] = "1", + }, + [62671] = { + ["coords"] = { + [1] = { 30.5, 5.2, 5628, 604800 }, + }, + ["lvl"] = "38", + ["rnk"] = "1", + }, + [62672] = { + ["coords"] = {}, + ["lvl"] = "38", + }, + [62673] = { + ["coords"] = { + [1] = { 42.2, 56, 876, 120 }, + }, + ["lvl"] = "40", + ["rnk"] = "1", + }, + [62674] = { + ["coords"] = {}, + ["lvl"] = "35-36", + ["rnk"] = "1", + }, + [62675] = { + ["coords"] = {}, + ["lvl"] = "36", + }, + [62676] = { + ["coords"] = { + [1] = { 50, 87.1, 722, 18000 }, + [2] = { 42.1, 85.2, 722, 18000 }, + [3] = { 45.4, 82.9, 722, 18000 }, + [4] = { 45.7, 82.5, 722, 18000 }, + [5] = { 45.9, 81.9, 722, 18000 }, + [6] = { 45.7, 81.3, 722, 18000 }, + [7] = { 49.6, 80.3, 722, 18000 }, + [8] = { 37.6, 65, 722, 18000 }, + }, + ["lvl"] = "36-37", + ["rnk"] = "1", + }, + [62677] = { + ["coords"] = { + [1] = { 48.3, 91.2, 722, 18000 }, + [2] = { 48, 90.6, 722, 18000 }, + [3] = { 45.8, 88.8, 722, 18000 }, + [4] = { 41.4, 85.2, 722, 18000 }, + [5] = { 48.3, 83.9, 722, 18000 }, + [6] = { 52.6, 82.9, 722, 18000 }, + [7] = { 50, 82.4, 722, 18000 }, + [8] = { 39.4, 81.3, 722, 18000 }, + [9] = { 49.3, 79, 722, 18000 }, + [10] = { 39.4, 76.9, 722, 18000 }, + [11] = { 42.3, 73.8, 722, 18000 }, + [12] = { 42.3, 73.4, 722, 18000 }, + [13] = { 37.5, 72.8, 722, 18000 }, + [14] = { 37.2, 68.6, 722, 18000 }, + }, + ["lvl"] = "36-37", + ["rnk"] = "1", + }, + [62678] = { + ["coords"] = { + [1] = { 48.5, 90.6, 722, 18000 }, + [2] = { 43.9, 87, 722, 18000 }, + [3] = { 43.4, 86.8, 722, 18000 }, + [4] = { 43.6, 85.8, 722, 18000 }, + [5] = { 52.5, 81.9, 722, 18000 }, + [6] = { 49.7, 79.1, 722, 18000 }, + [7] = { 45.3, 73.3, 722, 18000 }, + [8] = { 45, 72.4, 722, 18000 }, + [9] = { 37.6, 72.3, 722, 18000 }, + [10] = { 37, 65.3, 722, 18000 }, + [11] = { 38.3, 64.7, 722, 18000 }, + }, + ["lvl"] = "37-38", + ["rnk"] = "1", + }, + [62679] = { + ["coords"] = { + [1] = { 43.9, 81.2, 722, 432000 }, + }, + ["lvl"] = "39", + ["rnk"] = "1", + }, + [62680] = { + ["coords"] = { + [1] = { 22.1, 52.5, 331, 120 }, + [2] = { 58.5, 19.6, 406, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [62681] = { + ["coords"] = { + [1] = { 24.6, 71.9, 440, 120 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [62682] = { + ["coords"] = { + [1] = { 24.6, 72, 440, 120 }, + }, + ["lvl"] = "50", + }, + [62683] = { + ["coords"] = { + [1] = { 52.6, 27.8, 440, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [62684] = { + ["coords"] = { + [1] = { 51.1, 28.3, 440, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [62685] = { + ["coords"] = { + [1] = { 38.8, 57.7, 5581, 120 }, + [2] = { 37, 57.6, 5581, 120 }, + [3] = { 36.9, 57.5, 5581, 120 }, + [4] = { 38.8, 57.3, 5581, 120 }, + [5] = { 36.1, 56.2, 5581, 120 }, + [6] = { 39.7, 55.8, 5581, 120 }, + [7] = { 40.1, 55.8, 5581, 120 }, + [8] = { 38.6, 54.7, 5581, 120 }, + [9] = { 36.8, 54.7, 5581, 120 }, + [10] = { 38.6, 54.6, 5581, 120 }, + [11] = { 36.9, 54, 5581, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "29", + }, + [62686] = { + ["coords"] = { + [1] = { 36.8, 57.7, 5581, 120 }, + [2] = { 38.6, 57.6, 5581, 120 }, + [3] = { 36.1, 56.4, 5581, 120 }, + [4] = { 36, 56.3, 5581, 120 }, + [5] = { 39.7, 56.3, 5581, 120 }, + [6] = { 40.1, 56, 5581, 120 }, + [7] = { 39.5, 55.9, 5581, 120 }, + [8] = { 36.8, 54.9, 5581, 120 }, + [9] = { 38.6, 54.6, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "29", + }, + [62687] = { + ["coords"] = { + [1] = { 38.6, 57.4, 5581, 120 }, + [2] = { 37, 57.4, 5581, 120 }, + [3] = { 36, 56.3, 5581, 120 }, + [4] = { 40.1, 55.9, 5581, 120 }, + [5] = { 39.6, 55.7, 5581, 120 }, + [6] = { 36.3, 55.7, 5581, 120 }, + [7] = { 37, 54.8, 5581, 120 }, + [8] = { 39, 54.6, 5581, 120 }, + [9] = { 37.2, 54.4, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "29", + }, + [62688] = { + ["coords"] = { + [1] = { 37.1, 57.8, 5581, 120 }, + [2] = { 37.3, 57.6, 5581, 120 }, + [3] = { 39, 57.5, 5581, 120 }, + [4] = { 39, 57.3, 5581, 120 }, + [5] = { 39.5, 56.2, 5581, 120 }, + [6] = { 36.3, 56, 5581, 120 }, + [7] = { 37, 54.6, 5581, 120 }, + [8] = { 38.9, 54.4, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "29", + }, + [62689] = { + ["coords"] = { + [1] = { 38.8, 57.7, 5581, 120 }, + [2] = { 36.9, 57.5, 5581, 120 }, + [3] = { 40, 56.3, 5581, 120 }, + [4] = { 39.6, 56.1, 5581, 120 }, + [5] = { 36, 56, 5581, 120 }, + [6] = { 36.1, 55.9, 5581, 120 }, + [7] = { 37, 54.6, 5581, 120 }, + [8] = { 38.9, 54.6, 5581, 120 }, + [9] = { 38.8, 54.4, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "29", + }, + [62690] = { + ["coords"] = { + [1] = { 38.5, 57.4, 5581, 120 }, + [2] = { 36.8, 57.3, 5581, 120 }, + [3] = { 40, 56.3, 5581, 120 }, + [4] = { 39.6, 56.1, 5581, 120 }, + [5] = { 38.8, 54.8, 5581, 120 }, + [6] = { 37.2, 54.6, 5581, 120 }, + [7] = { 38.7, 54.4, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "29", + }, + [62691] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [62692] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [62693] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [62694] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [62695] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [62696] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [62697] = { + ["coords"] = { + [1] = { 63.2, 74.4, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "26", + }, + [62698] = { + ["coords"] = { + [1] = { 53.8, 51.2, 5602, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "26", + }, + [62699] = { + ["coords"] = { + [1] = { 53.8, 51.3, 5602, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "26", + }, + [62700] = { + ["coords"] = { + [1] = { 70.9, 76.1, 490, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [62701] = { + ["coords"] = { + [1] = { 39.3, 54.5, 5581, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [62702] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [62703] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [62704] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [62705] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [62706] = { + ["coords"] = { + [1] = { 24.2, 73.5, 440, 120 }, + }, + ["lvl"] = "30", + }, + [62707] = { + ["coords"] = { + [1] = { 63.4, 36.9, 5561, 120 }, + }, + ["lvl"] = "31", + }, + [62708] = { + ["coords"] = { + [1] = { 28.5, 75.4, 33, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [62709] = { + ["coords"] = { + [1] = { 45.8, 49.3, 5581, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [62710] = { + ["coords"] = { + [1] = { 54.7, 19, 5561, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [62711] = { + ["coords"] = { + [1] = { 34.7, 79.5, 141, 300 }, + [2] = { 33.8, 78.9, 141, 300 }, + [3] = { 34.9, 77.6, 141, 120 }, + [4] = { 33.2, 77.3, 141, 300 }, + [5] = { 35.7, 75.6, 141, 120 }, + [6] = { 33.8, 75.5, 141, 120 }, + [7] = { 36.9, 75.2, 141, 300 }, + [8] = { 36, 74.9, 141, 120 }, + [9] = { 31.3, 74.6, 141, 300 }, + [10] = { 30.8, 74.2, 141, 300 }, + [11] = { 32.9, 73.7, 141, 300 }, + [12] = { 33.7, 73.6, 141, 300 }, + [13] = { 34.4, 73.1, 141, 300 }, + [14] = { 36.4, 72.9, 141, 300 }, + [15] = { 33.7, 72.8, 141, 300 }, + [16] = { 35.2, 72.7, 141, 300 }, + [17] = { 36.8, 71.1, 141, 120 }, + [18] = { 36, 71, 141, 300 }, + [19] = { 37.8, 68.8, 141, 300 }, + [20] = { 37.4, 68.2, 141, 300 }, + }, + ["lvl"] = "9-11", + }, + [62712] = { + ["coords"] = { + [1] = { 35.4, 77.4, 141, 300 }, + [2] = { 33.3, 76.1, 141, 120 }, + [3] = { 31.6, 75.6, 141, 300 }, + [4] = { 33.6, 75.4, 141, 120 }, + [5] = { 36.7, 74.4, 141, 120 }, + [6] = { 37, 73.9, 141, 120 }, + [7] = { 29.5, 73.7, 141, 300 }, + [8] = { 30.8, 73.4, 141, 300 }, + [9] = { 33.3, 73.3, 141, 300 }, + [10] = { 33.9, 72.8, 141, 300 }, + [11] = { 35.2, 71.4, 141, 300 }, + [12] = { 35.5, 71.3, 141, 300 }, + }, + ["lvl"] = "10-11", + }, + [62713] = { + ["coords"] = { + [1] = { 33.7, 79.6, 141, 300 }, + [2] = { 31.9, 76.4, 141, 300 }, + [3] = { 33.8, 76.4, 141, 300 }, + [4] = { 31.4, 75.1, 141, 300 }, + [5] = { 36.7, 74.2, 141, 120 }, + [6] = { 36.1, 74.2, 141, 300 }, + [7] = { 36.9, 74.1, 141, 120 }, + [8] = { 34.8, 73.6, 141, 120 }, + [9] = { 35.7, 73.5, 141, 300 }, + [10] = { 33.4, 73.2, 141, 300 }, + [11] = { 33.7, 73.1, 141, 120 }, + [12] = { 34.7, 72.5, 141, 300 }, + [13] = { 35.9, 72.4, 141, 300 }, + [14] = { 35.4, 72, 141, 120 }, + [15] = { 36.6, 70.5, 141, 300 }, + [16] = { 37.2, 70.4, 141, 300 }, + [17] = { 37.5, 69.3, 141, 300 }, + }, + ["lvl"] = "9-11", + }, + [62714] = { + ["coords"] = { + [1] = { 35.1, 78.5, 141, 300 }, + [2] = { 34, 76.4, 141, 300 }, + [3] = { 31.7, 76, 141, 300 }, + [4] = { 31.9, 75.4, 141, 300 }, + [5] = { 33.7, 74.8, 141, 300 }, + [6] = { 31.6, 74.4, 141, 300 }, + [7] = { 36.4, 73.9, 141, 300 }, + [8] = { 32, 73.6, 141, 300 }, + [9] = { 33.4, 73.6, 141, 300 }, + [10] = { 36.7, 73.3, 141, 300 }, + [11] = { 34, 72.9, 141, 300 }, + [12] = { 34.1, 72.5, 141, 300 }, + [13] = { 35.3, 71.8, 141, 300 }, + [14] = { 35, 71.8, 141, 300 }, + [15] = { 35.7, 71.5, 141, 300 }, + }, + ["lvl"] = "9-10", + }, + [62715] = { + ["coords"] = { + [1] = { 33.8, 75.6, 141, 120 }, + }, + ["lvl"] = "12", + ["rnk"] = "1", + }, + [62716] = { + ["coords"] = { + [1] = { 33.7, 75.7, 141, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [62717] = { + ["coords"] = { + [1] = { 29.9, 74.3, 141, 300 }, + [2] = { 29.1, 73.7, 141, 300 }, + [3] = { 31, 72.8, 141, 300 }, + [4] = { 30.4, 72.5, 141, 300 }, + [5] = { 29.4, 72.3, 141, 300 }, + [6] = { 29.9, 72, 141, 300 }, + }, + ["lvl"] = "10", + }, + [62718] = { + ["coords"] = { + [1] = { 30.7, 70.7, 141, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [62719] = { + ["coords"] = { + [1] = { 66, 52.1, 15, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [62720] = { + ["coords"] = { + [1] = { 51.5, 57.8, 1519, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "38", + }, + [62721] = { + ["coords"] = { + [1] = { 51.4, 58.1, 1519, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [62722] = { + ["coords"] = { + [1] = { 51.6, 58.2, 1519, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [62723] = { + ["coords"] = { + [1] = { 38.8, 28.1, 51, 120 }, + }, + ["lvl"] = "52", + }, + [62724] = { + ["coords"] = { + [1] = { 80.8, 59.5, 139, 120 }, + [2] = { 40, 39.1, 4012, 120 }, + }, + ["lvl"] = "54", + ["rnk"] = "1", + }, + [62725] = { + ["coords"] = { + [1] = { 49.4, 78.2, 5602, 300 }, + }, + ["lvl"] = "44", + ["rnk"] = "1", + }, + [62726] = { + ["coords"] = { + [1] = { 38.9, 34.4, 440, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "46", + }, + [62727] = { + ["coords"] = { + [1] = { 17.3, 26, 331, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "26", + }, + [62728] = { + ["coords"] = { + [1] = { 73.3, 50.4, 5561, 300 }, + }, + ["lvl"] = "31", + }, + [62729] = { + ["coords"] = { + [1] = { 68, 76.4, 11, 120 }, + [2] = { 21, 37.6, 5602, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "33", + ["rnk"] = "1", + }, + [62730] = { + ["coords"] = { + [1] = { 49.5, 42.1, 5628, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [62731] = { + ["coords"] = { + [1] = { 30.5, 8.3, 5628, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [62732] = { + ["coords"] = { + [1] = { 53.4, 56.6, 5602, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [62733] = { + ["coords"] = { + [1] = { 53.4, 56.6, 5602, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [62734] = { + ["coords"] = { + [1] = { 53.5, 56.5, 5602, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [62735] = { + ["coords"] = { + [1] = { 46.7, 49.7, 5628, 120 }, + [2] = { 46.6, 49.7, 5628, 120 }, + [3] = { 45.4, 48.8, 5628, 120 }, + [4] = { 45.9, 47.9, 5628, 120 }, + [5] = { 46, 47.8, 5628, 120 }, + [6] = { 47.3, 47.6, 5628, 604800 }, + [7] = { 46, 47.6, 5628, 604800 }, + [8] = { 47.3, 47.3, 5628, 604800 }, + [9] = { 45.4, 46.8, 5628, 604800 }, + [10] = { 45.4, 46.6, 5628, 120 }, + [11] = { 45.2, 46.6, 5628, 120 }, + [12] = { 47.9, 46.5, 5628, 120 }, + [13] = { 45.2, 46.4, 5628, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "25", + }, + [62736] = { + ["coords"] = { + [1] = { 47.3, 47.9, 5628, 120 }, + [2] = { 47.2, 47.8, 5628, 120 }, + [3] = { 47.8, 46.7, 5628, 604800 }, + [4] = { 45.6, 46.6, 5628, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "25", + }, + [62737] = { + ["coords"] = { + [1] = { 35.8, 25.6, 16, 120 }, + [2] = { 67.2, 85.7, 618, 120 }, + }, + ["lvl"] = "52", + }, + [62738] = { + ["coords"] = { + [1] = { 66.3, 85.1, 618, 120 }, + }, + ["lvl"] = "55", + }, + [62739] = { + ["coords"] = { + [1] = { 66.6, 85.7, 618, 120 }, + }, + ["lvl"] = "51", + }, + [62740] = { + ["coords"] = { + [1] = { 66.6, 86, 618, 120 }, + }, + ["lvl"] = "58", + ["rnk"] = "1", + }, + [62741] = { + ["coords"] = { + [1] = { 65.6, 46.5, 493, 60 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [62742] = { + ["coords"] = {}, + ["lvl"] = "35", + ["rnk"] = "1", + }, + [62743] = { + ["coords"] = { + [1] = { 92.4, 52.1, 11, 300 }, + [2] = { 39.7, 19, 5602, 300 }, + }, + ["lvl"] = "35", + }, + [62744] = { + ["coords"] = { + [1] = { 91, 74, 11, 300 }, + [2] = { 92.5, 73.8, 11, 300 }, + [3] = { 90.7, 72.2, 11, 300 }, + [4] = { 92.6, 72.2, 11, 300 }, + [5] = { 92, 71.9, 11, 300 }, + [6] = { 90.7, 71.3, 11, 120 }, + [7] = { 91.8, 70.6, 11, 300 }, + [8] = { 91.4, 70.5, 11, 300 }, + [9] = { 90.8, 70.4, 11, 300 }, + [10] = { 91.1, 70.3, 11, 120 }, + [11] = { 90.7, 69.9, 11, 120 }, + [12] = { 38.6, 35.8, 5602, 300 }, + [13] = { 39.8, 35.6, 5602, 300 }, + [14] = { 38.4, 34.5, 5602, 300 }, + [15] = { 39.9, 34.4, 5602, 300 }, + [16] = { 39.4, 34.2, 5602, 300 }, + [17] = { 38.4, 33.7, 5602, 120 }, + [18] = { 39.3, 33.2, 5602, 300 }, + [19] = { 39, 33.1, 5602, 300 }, + [20] = { 38.5, 33.1, 5602, 300 }, + [21] = { 38.7, 32.9, 5602, 120 }, + [22] = { 38.4, 32.6, 5602, 120 }, + }, + ["lvl"] = "32-33", + }, + [62745] = { + ["coords"] = { + [1] = { 91.4, 75.2, 11, 300 }, + [2] = { 91.8, 74.5, 11, 120 }, + [3] = { 91.6, 73.9, 11, 120 }, + [4] = { 92, 73.7, 11, 300 }, + [5] = { 90.6, 73.2, 11, 300 }, + [6] = { 92.1, 72.8, 11, 300 }, + [7] = { 91.3, 72.7, 11, 120 }, + [8] = { 90.8, 72.1, 11, 300 }, + [9] = { 90.7, 71.5, 11, 300 }, + [10] = { 90.6, 71.4, 11, 120 }, + [11] = { 91.6, 71.1, 11, 300 }, + [12] = { 90.8, 69.7, 11, 120 }, + [13] = { 91.7, 69.7, 11, 120 }, + [14] = { 91.9, 69.6, 11, 120 }, + [15] = { 90.6, 69.4, 11, 120 }, + [16] = { 39, 36.7, 5602, 300 }, + [17] = { 39.3, 36.2, 5602, 120 }, + [18] = { 39.1, 35.7, 5602, 120 }, + [19] = { 39.4, 35.6, 5602, 300 }, + [20] = { 38.3, 35.2, 5602, 300 }, + [21] = { 39.5, 34.9, 5602, 300 }, + [22] = { 38.9, 34.8, 5602, 120 }, + [23] = { 38.5, 34.4, 5602, 300 }, + [24] = { 38.4, 33.9, 5602, 300 }, + [25] = { 38.3, 33.8, 5602, 120 }, + [26] = { 39.1, 33.6, 5602, 300 }, + [27] = { 38.5, 32.5, 5602, 120 }, + [28] = { 39.2, 32.5, 5602, 120 }, + [29] = { 39.3, 32.4, 5602, 120 }, + [30] = { 38.3, 32.3, 5602, 120 }, + }, + ["lvl"] = "32-33", + }, + [62746] = { + ["coords"] = { + [1] = { 91.5, 74.9, 11, 300 }, + [2] = { 39, 36.5, 5602, 300 }, + }, + ["lvl"] = "34", + }, + [62747] = { + ["coords"] = { + [1] = { 94, 67.4, 11, 300 }, + [2] = { 96.2, 67.2, 11, 300 }, + [3] = { 58.1, 71.5, 5602, 300 }, + [4] = { 50.2, 69.4, 5602, 300 }, + [5] = { 54.8, 67.2, 5602, 300 }, + [6] = { 49.9, 65.3, 5602, 300 }, + [7] = { 56.5, 64.3, 5602, 300 }, + [8] = { 48, 62.7, 5602, 300 }, + [9] = { 55.8, 61, 5602, 300 }, + [10] = { 57.4, 60.4, 5602, 300 }, + [11] = { 47, 59.4, 5602, 300 }, + [12] = { 61, 58.9, 5602, 300 }, + [13] = { 47.6, 55.8, 5602, 300 }, + [14] = { 45.7, 53.9, 5602, 300 }, + [15] = { 45.4, 51, 5602, 300 }, + [16] = { 62.9, 50.6, 5602, 300 }, + [17] = { 61.8, 49.6, 5602, 300 }, + [18] = { 64.2, 46.6, 5602, 300 }, + [19] = { 58.8, 45.9, 5602, 300 }, + [20] = { 57.5, 44.3, 5602, 300 }, + [21] = { 64.2, 44.2, 5602, 300 }, + [22] = { 50.3, 43.9, 5602, 300 }, + [23] = { 46.6, 43.3, 5602, 300 }, + [24] = { 54.4, 42.8, 5602, 300 }, + [25] = { 57.3, 41.5, 5602, 300 }, + [26] = { 54.3, 40.1, 5602, 300 }, + [27] = { 51.2, 39.1, 5602, 300 }, + [28] = { 57.6, 38.9, 5602, 300 }, + [29] = { 57.2, 37.8, 5602, 300 }, + [30] = { 47.9, 37.4, 5602, 300 }, + [31] = { 52.8, 37.1, 5602, 300 }, + [32] = { 64.2, 36.3, 5602, 300 }, + [33] = { 62.7, 34.2, 5602, 300 }, + [34] = { 55, 33.9, 5602, 300 }, + [35] = { 52.1, 33.3, 5602, 300 }, + [36] = { 44.4, 33, 5602, 300 }, + [37] = { 62.6, 32.3, 5602, 300 }, + [38] = { 41, 30.8, 5602, 300 }, + [39] = { 42.6, 30.6, 5602, 300 }, + [40] = { 51.5, 29.7, 5602, 300 }, + [41] = { 62.4, 28.6, 5602, 300 }, + [42] = { 44.3, 25.6, 5602, 300 }, + [43] = { 54.4, 25.2, 5602, 300 }, + [44] = { 50, 25.1, 5602, 300 }, + [45] = { 61.5, 24.6, 5602, 300 }, + [46] = { 60.8, 20.9, 5602, 300 }, + [47] = { 55.4, 20, 5602, 300 }, + [48] = { 58.6, 19.5, 5602, 300 }, + [49] = { 45.3, 11, 5602, 300 }, + [50] = { 48.2, 9.7, 5602, 300 }, + [51] = { 44.3, 9.4, 5602, 300 }, + [52] = { 45.3, 8.4, 5602, 300 }, + }, + ["lvl"] = "10", + }, + [62748] = { + ["coords"] = { + [1] = { 44.3, 5.5, 5602, 300 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [62749] = { + ["coords"] = { + [1] = { 45.9, 6.8, 5602, 300 }, + [2] = { 44.4, 6.5, 5602, 300 }, + [3] = { 45.2, 5.9, 5602, 300 }, + [4] = { 43.7, 5.8, 5602, 300 }, + [5] = { 47.2, 5.6, 5602, 300 }, + [6] = { 46.5, 5.4, 5602, 300 }, + [7] = { 45.6, 4.7, 5602, 300 }, + [8] = { 46.6, 4.6, 5602, 300 }, + [9] = { 44.4, 4.1, 5602, 300 }, + [10] = { 43.7, 3.4, 5602, 300 }, + }, + ["lvl"] = "36-37", + }, + [62750] = { + ["coords"] = { + [1] = { 74.4, 89.4, 2717, 604800 }, + [2] = { 58.6, 87.7, 2717, 604800 }, + [3] = { 76.9, 37.4, 2717, 604800 }, + [4] = { 57.4, 19.6, 2717, 604800 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [62751] = { + ["coords"] = { + [1] = { 30.9, 57.2, 5561, 120 }, + }, + ["lvl"] = "33", + }, + [62752] = { + ["coords"] = { + [1] = { 61.2, 78.4, 5602, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [62753] = { + ["coords"] = { + [1] = { 2.8, 89.9, 5602, 85000 }, + }, + ["lvl"] = "11", + ["rnk"] = "4", + }, + [62754] = { + ["coords"] = { + [1] = { 22.6, 82, 440, 50400 }, + }, + ["lvl"] = "52", + ["rnk"] = "4", + }, + [62755] = { + ["coords"] = { + [1] = { 25.3, 67.1, 405, 120 }, + [2] = { 13.5, 84.3, 2100, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "32", + }, + [62756] = { + ["coords"] = { + [1] = { 55.6, 58.2, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [64898] = { + ["coords"] = { + [1] = { 31.3, 48.3, 33, 120 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [64899] = { + ["coords"] = { + [1] = { 31.4, 48.2, 33, 120 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [64900] = { + ["coords"] = { + [1] = { 71.4, 29.3, 3457, 604800 }, + }, + ["fac"] = "AH", + ["lvl"] = "64", + }, + [65000] = { + ["coords"] = { + [1] = { 66, 50, 440, 300 }, + [2] = { 80.1, 17.1, 1941, 300 }, + }, + ["lvl"] = "63", + }, + [65001] = { + ["coords"] = { + [1] = { 58.3, 62.6, 440, 300 }, + [2] = { 57.8, 61.1, 440, 300 }, + [3] = { 60.5, 60.4, 440, 300 }, + [4] = { 59.7, 60.4, 440, 300 }, + [5] = { 57.9, 60, 440, 300 }, + [6] = { 61, 59.4, 440, 300 }, + [7] = { 61.9, 58.1, 440, 300 }, + [8] = { 63.3, 57.7, 440, 300 }, + [9] = { 57.6, 57.5, 440, 300 }, + [10] = { 64.6, 57.1, 440, 300 }, + [11] = { 57.2, 56.4, 440, 300 }, + [12] = { 57.4, 54.6, 440, 300 }, + [13] = { 64.5, 54.2, 440, 300 }, + [14] = { 60.7, 54, 440, 300 }, + [15] = { 58.3, 53.4, 440, 300 }, + [16] = { 62.9, 52.4, 440, 300 }, + [17] = { 64.1, 48.6, 440, 300 }, + [18] = { 68.2, 48.2, 440, 300 }, + [19] = { 67.6, 47.8, 440, 300 }, + [20] = { 67.1, 47.4, 440, 300 }, + [21] = { 40.2, 82.6, 1941, 300 }, + [22] = { 38, 74.8, 1941, 300 }, + [23] = { 51.9, 71.2, 1941, 300 }, + [24] = { 47.5, 70.9, 1941, 300 }, + [25] = { 38.2, 69.1, 1941, 300 }, + [26] = { 54.4, 65.8, 1941, 300 }, + [27] = { 59.1, 59, 1941, 300 }, + [28] = { 66.3, 56.8, 1941, 300 }, + [29] = { 37, 55.9, 1941, 300 }, + [30] = { 72.5, 53.8, 1941, 300 }, + [31] = { 34.9, 50.2, 1941, 300 }, + [32] = { 36, 41.2, 1941, 300 }, + [33] = { 72.3, 38.9, 1941, 300 }, + [34] = { 52.6, 37.8, 1941, 300 }, + [35] = { 40.3, 34.7, 1941, 300 }, + [36] = { 64.1, 29.5, 1941, 300 }, + [37] = { 70.3, 9.9, 1941, 300 }, + [38] = { 90.9, 7.9, 1941, 300 }, + [39] = { 88, 5.7, 1941, 300 }, + [40] = { 85.5, 3.8, 1941, 300 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [65002] = { + ["coords"] = { + [1] = { 63.8, 57.5, 440, 300 }, + [2] = { 68.8, 55.7, 1941, 300 }, + }, + ["lvl"] = "57", + }, + [65003] = { + ["coords"] = { + [1] = { 63.8, 57.7, 440, 300 }, + [2] = { 68.4, 56.8, 1941, 300 }, + }, + ["lvl"] = "52", + }, + [65004] = { + ["coords"] = { + [1] = { 57.5, 59.2, 440, 300 }, + [2] = { 36.5, 64.6, 1941, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [65005] = { + ["coords"] = { + [1] = { 57.5, 59.1, 440, 300 }, + [2] = { 36.5, 64.3, 1941, 300 }, + }, + ["lvl"] = "63", + }, + [65006] = { + ["coords"] = { + [1] = { 59.9, 52.7, 440, 300 }, + [2] = { 48.7, 31.3, 1941, 300 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [65007] = { + ["coords"] = { + [1] = { 59.8, 52.8, 440, 300 }, + [2] = { 48.2, 31.6, 1941, 300 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [65008] = { + ["coords"] = { + [1] = { 59.8, 52.7, 440, 300 }, + [2] = { 48.3, 31.1, 1941, 300 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [65009] = { + ["coords"] = { + [1] = { 59.9, 52.8, 440, 300 }, + [2] = { 48.5, 31.8, 1941, 300 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [65010] = { + ["coords"] = { + [1] = { 57.3, 55.5, 440, 300 }, + [2] = { 35.3, 45.7, 1941, 300 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [65011] = { + ["coords"] = { + [1] = { 57.4, 55.4, 440, 300 }, + [2] = { 35.7, 44.8, 1941, 300 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [65012] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "57", + }, + [65013] = { + ["coords"] = { + [1] = { 57.4, 56.9, 440, 300 }, + [2] = { 36, 52.8, 1941, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "47", + }, + [65014] = { + ["coords"] = { + [1] = { 59.3, 60, 440, 300 }, + [2] = { 45.7, 69.1, 1941, 300 }, + }, + ["lvl"] = "57", + }, + [65015] = { + ["coords"] = { + [1] = { 66, 49.6, 440, 300 }, + [2] = { 79.8, 15, 1941, 300 }, + }, + ["lvl"] = "63", + }, + [65016] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "62", + ["rnk"] = "1", + }, + [65017] = { + ["coords"] = { + [1] = { 59.6, 58.3, 440, 300 }, + [2] = { 58.5, 58, 440, 300 }, + [3] = { 60.1, 55.8, 440, 300 }, + [4] = { 58.8, 55.4, 440, 300 }, + [5] = { 59.4, 55.3, 440, 300 }, + [6] = { 47.1, 59.9, 1941, 300 }, + [7] = { 41.7, 58.6, 1941, 300 }, + [8] = { 49.6, 47.2, 1941, 300 }, + [9] = { 42.9, 44.9, 1941, 300 }, + [10] = { 46.3, 44.5, 1941, 300 }, + }, + ["lvl"] = "50-52", + ["rnk"] = "1", + }, + [65018] = { + ["coords"] = { + [1] = { 66.1, 49.6, 440, 300 }, + [2] = { 80.2, 15.3, 1941, 300 }, + }, + ["lvl"] = "63", + }, + [65019] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "63", + }, + [65020] = { + ["coords"] = { + [1] = { 67.2, 47.1, 2717, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [65021] = { + ["coords"] = { + [1] = { 68.2, 50.6, 2717, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [65100] = { + ["coords"] = { + [1] = { 89.4, 41.1, 2366, 18000 }, + [2] = { 88.2, 40.4, 2366, 18000 }, + [3] = { 90.6, 32.8, 2366, 18000 }, + [4] = { 87.2, 25.9, 2366, 18000 }, + [5] = { 90.4, 25.3, 2366, 18000 }, + [6] = { 87.9, 25.1, 2366, 18000 }, + [7] = { 91.2, 25, 2366, 18000 }, + [8] = { 84.8, 19.6, 2366, 18000 }, + [9] = { 85, 18.7, 2366, 18000 }, + [10] = { 85.5, 17.8, 2366, 18000 }, + [11] = { 86.2, 17.7, 2366, 18000 }, + [12] = { 79.9, 14.8, 2366, 18000 }, + [13] = { 80.3, 13.9, 2366, 18000 }, + [14] = { 82.2, 12.4, 2366, 18000 }, + [15] = { 82.7, 11.5, 2366, 18000 }, + [16] = { 77.4, 11.1, 2366, 18000 }, + [17] = { 78.6, 8.9, 2366, 18000 }, + [18] = { 51.7, 65.3, 5204, 18000 }, + [19] = { 50.7, 64.6, 5204, 18000 }, + [20] = { 52.7, 58.1, 5204, 18000 }, + [21] = { 49.8, 52.1, 5204, 18000 }, + [22] = { 52.5, 51.7, 5204, 18000 }, + [23] = { 50.4, 51.5, 5204, 18000 }, + [24] = { 53.2, 51.4, 5204, 18000 }, + [25] = { 47.8, 46.8, 5204, 18000 }, + [26] = { 47.9, 45.9, 5204, 18000 }, + [27] = { 48.3, 45.2, 5204, 18000 }, + [28] = { 48.9, 45.1, 5204, 18000 }, + [29] = { 43.6, 42.7, 5204, 18000 }, + [30] = { 43.9, 41.8, 5204, 18000 }, + [31] = { 45.6, 40.6, 5204, 18000 }, + [32] = { 46, 39.8, 5204, 18000 }, + [33] = { 41.5, 39.5, 5204, 18000 }, + [34] = { 42.4, 37.5, 5204, 18000 }, + [35] = { 32.6, 28.7, 5204, 18000 }, + [36] = { 32.5, 27.9, 5204, 18000 }, + [37] = { 26.4, 27.1, 5204, 18000 }, + [38] = { 29, 24.2, 5204, 18000 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [65101] = { + ["coords"] = { + [1] = { 84.8, 17.8, 2366, 18000 }, + [2] = { 80.5, 14.6, 2366, 18000 }, + [3] = { 77.5, 8.6, 2366, 18000 }, + [4] = { 47.7, 45.2, 5204, 18000 }, + [5] = { 44.1, 42.5, 5204, 18000 }, + [6] = { 41.5, 37.3, 5204, 18000 }, + [7] = { 29.4, 23.5, 5204, 18000 }, + [8] = { 28.8, 23.3, 5204, 18000 }, + [9] = { 22.8, 18.4, 5204, 18000 }, + [10] = { 28.8, 12.3, 5204, 18000 }, + [11] = { 28.9, 11.3, 5204, 18000 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [65102] = { + ["coords"] = { + [1] = { 82.2, 11.7, 2366, 18000 }, + [2] = { 77, 9.6, 2366, 18000 }, + [3] = { 45.5, 40, 5204, 18000 }, + [4] = { 41.1, 38.1, 5204, 18000 }, + [5] = { 33, 28, 5204, 18000 }, + [6] = { 21.3, 23.1, 5204, 18000 }, + [7] = { 23.8, 20.1, 5204, 18000 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [65103] = { + ["coords"] = { + [1] = { 89.4, 40.1, 2366, 18000 }, + [2] = { 88.7, 39.7, 2366, 18000 }, + [3] = { 51.7, 64.4, 5204, 18000 }, + [4] = { 51, 64, 5204, 18000 }, + [5] = { 21.7, 22.8, 5204, 18000 }, + [6] = { 21.7, 22.5, 5204, 18000 }, + [7] = { 21.5, 22.4, 5204, 18000 }, + [8] = { 29.3, 12.4, 5204, 18000 }, + [9] = { 29.6, 11.6, 5204, 18000 }, + [10] = { 29.3, 10.6, 5204, 18000 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [65104] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [65105] = { + ["coords"] = { + [1] = { 70.6, 1.8, 2366, 18000 }, + [2] = { 35.6, 31.4, 5204, 18000 }, + [3] = { 19.9, 17.4, 5204, 18000 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [65106] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [65107] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [65108] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [65109] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [65110] = { + ["coords"] = { + [1] = { 53.9, 89.2, 2366, 18000 }, + [2] = { 74.1, 85.6, 2366, 18000 }, + [3] = { 78.2, 83.8, 2366, 18000 }, + [4] = { 68.3, 83.8, 2366, 18000 }, + [5] = { 30.2, 82.4, 2366, 18000 }, + [6] = { 66.5, 80.3, 2366, 18000 }, + [7] = { 25.7, 79.4, 2366, 18000 }, + [8] = { 77.6, 77.1, 2366, 18000 }, + [9] = { 23.3, 75.6, 2366, 18000 }, + [10] = { 37.9, 74, 2366, 18000 }, + [11] = { 54.6, 72.7, 2366, 18000 }, + [12] = { 59.4, 72.2, 2366, 18000 }, + [13] = { 23.4, 71.6, 2366, 18000 }, + [14] = { 68.5, 71.3, 2366, 18000 }, + [15] = { 74.1, 71, 2366, 18000 }, + [16] = { 40.3, 68.7, 2366, 18000 }, + [17] = { 70.3, 66.5, 2366, 18000 }, + [18] = { 37.8, 65.7, 2366, 18000 }, + [19] = { 22.3, 64.6, 2366, 18000 }, + [20] = { 63.2, 63.5, 2366, 18000 }, + [21] = { 71.1, 63, 2366, 18000 }, + [22] = { 58.3, 62.1, 2366, 18000 }, + [23] = { 38.6, 61.3, 2366, 18000 }, + [24] = { 22.2, 59.7, 2366, 18000 }, + [25] = { 62.1, 59, 2366, 18000 }, + [26] = { 69.4, 58.3, 2366, 18000 }, + [27] = { 38.3, 54.2, 2366, 18000 }, + [28] = { 58, 52.2, 2366, 18000 }, + [29] = { 38.7, 51.7, 2366, 18000 }, + [30] = { 49.1, 51.1, 2366, 18000 }, + [31] = { 22.4, 50.4, 2366, 18000 }, + [32] = { 27.4, 50, 2366, 18000 }, + [33] = { 53.1, 49.5, 2366, 18000 }, + [34] = { 39, 49.3, 2366, 18000 }, + [35] = { 69.4, 48.9, 2366, 18000 }, + [36] = { 25.8, 48.5, 2366, 18000 }, + [37] = { 28.2, 47.1, 2366, 18000 }, + [38] = { 57.3, 46.6, 2366, 18000 }, + [39] = { 26.5, 45.2, 2366, 18000 }, + [40] = { 78.3, 45, 2366, 18000 }, + [41] = { 57.4, 42.7, 2366, 18000 }, + [42] = { 19.7, 42.6, 2366, 18000 }, + [43] = { 66, 42.2, 2366, 18000 }, + [44] = { 37.9, 41.5, 2366, 18000 }, + [45] = { 33.4, 41.3, 2366, 18000 }, + [46] = { 41.8, 40.6, 2366, 18000 }, + [47] = { 18.3, 40.6, 2366, 18000 }, + [48] = { 44.3, 39.3, 2366, 18000 }, + [49] = { 34.8, 38.4, 2366, 18000 }, + [50] = { 31.4, 37.1, 2366, 18000 }, + [51] = { 19.9, 35.8, 2366, 18000 }, + [52] = { 32.2, 34.7, 2366, 18000 }, + [53] = { 36.1, 34.2, 2366, 18000 }, + [54] = { 41.9, 33.5, 2366, 18000 }, + [55] = { 25.4, 33.2, 2366, 18000 }, + [56] = { 33.8, 32.9, 2366, 18000 }, + [57] = { 65, 30.9, 2366, 18000 }, + [58] = { 49.7, 30.5, 2366, 18000 }, + [59] = { 44.5, 28.9, 2366, 18000 }, + [60] = { 28.6, 28.1, 2366, 18000 }, + [61] = { 40.3, 27.1, 2366, 18000 }, + [62] = { 59.8, 26.1, 2366, 18000 }, + [63] = { 57.6, 22.6, 2366, 18000 }, + [64] = { 68.1, 22.2, 2366, 18000 }, + [65] = { 42.4, 21.4, 2366, 18000 }, + [66] = { 74.5, 21.1, 2366, 18000 }, + [67] = { 41.5, 19.6, 2366, 18000 }, + [68] = { 55.4, 18.6, 2366, 18000 }, + [69] = { 32.1, 98.9, 5204, 18000 }, + [70] = { 41.6, 96.1, 5204, 18000 }, + [71] = { 7.7, 93.6, 5204, 18000 }, + [72] = { 22, 92.4, 5204, 18000 }, + [73] = { 26, 92, 5204, 18000 }, + [74] = { 33.8, 91.2, 5204, 18000 }, + [75] = { 38.6, 90.9, 5204, 18000 }, + [76] = { 9.7, 89, 5204, 18000 }, + [77] = { 35.4, 87, 5204, 18000 }, + [78] = { 7.7, 86.4, 5204, 18000 }, + [79] = { 29.3, 84.5, 5204, 18000 }, + [80] = { 36.1, 84.1, 5204, 18000 }, + [81] = { 25.1, 83.3, 5204, 18000 }, + [82] = { 8.3, 82.6, 5204, 18000 }, + [83] = { 28.4, 80.6, 5204, 18000 }, + [84] = { 34.6, 80, 5204, 18000 }, + [85] = { 8.1, 76.5, 5204, 18000 }, + [86] = { 24.9, 74.8, 5204, 18000 }, + [87] = { 8.4, 74.3, 5204, 18000 }, + [88] = { 17.3, 73.9, 5204, 18000 }, + [89] = { 20.7, 72.5, 5204, 18000 }, + [90] = { 8.7, 72.2, 5204, 18000 }, + [91] = { 34.6, 72, 5204, 18000 }, + [92] = { 24.3, 70, 5204, 18000 }, + [93] = { 42.2, 68.6, 5204, 18000 }, + [94] = { 24.4, 66.7, 5204, 18000 }, + [95] = { 31.7, 66.2, 5204, 18000 }, + [96] = { 7.7, 65.6, 5204, 18000 }, + [97] = { 3.9, 65.4, 5204, 18000 }, + [98] = { 11, 64.8, 5204, 18000 }, + [99] = { 13.2, 63.7, 5204, 18000 }, + [100] = { 5.1, 62.9, 5204, 18000 }, + [101] = { 2.2, 61.8, 5204, 18000 }, + [102] = { 2.9, 59.7, 5204, 18000 }, + [103] = { 6.2, 59.3, 5204, 18000 }, + [104] = { 11.1, 58.7, 5204, 18000 }, + [105] = { 4.3, 58.2, 5204, 18000 }, + [106] = { 30.8, 56.4, 5204, 18000 }, + [107] = { 17.8, 56.1, 5204, 18000 }, + [108] = { 13.4, 54.8, 5204, 18000 }, + [109] = { 9.7, 53.2, 5204, 18000 }, + [110] = { 26.4, 52.4, 5204, 18000 }, + [111] = { 24.5, 49.4, 5204, 18000 }, + [112] = { 33.5, 49, 5204, 18000 }, + [113] = { 11.6, 48.3, 5204, 18000 }, + [114] = { 39, 48, 5204, 18000 }, + [115] = { 10.8, 46.8, 5204, 18000 }, + [116] = { 22.7, 45.9, 5204, 18000 }, + }, + ["lvl"] = "61", + }, + [65111] = { + ["coords"] = { + [1] = { 39.5, 80.4, 2366, 18000 }, + [2] = { 42.4, 79.9, 2366, 18000 }, + [3] = { 58.9, 79.9, 2366, 18000 }, + [4] = { 57.2, 78, 2366, 18000 }, + [5] = { 37.8, 77.3, 2366, 18000 }, + [6] = { 41.6, 76, 2366, 18000 }, + [7] = { 62, 75.1, 2366, 18000 }, + [8] = { 44.3, 74, 2366, 18000 }, + [9] = { 31.7, 73.7, 2366, 18000 }, + [10] = { 35.4, 73.7, 2366, 18000 }, + [11] = { 65.3, 72.8, 2366, 18000 }, + [12] = { 61.3, 71.7, 2366, 18000 }, + [13] = { 70, 69.8, 2366, 18000 }, + [14] = { 33.8, 69.7, 2366, 18000 }, + [15] = { 62.4, 68.2, 2366, 18000 }, + [16] = { 49.1, 68.1, 2366, 18000 }, + [17] = { 52.3, 64.8, 2366, 18000 }, + [18] = { 49.5, 62.5, 2366, 18000 }, + [19] = { 23.5, 61.2, 2366, 18000 }, + [20] = { 25.7, 58.9, 2366, 18000 }, + [21] = { 52.8, 58.9, 2366, 18000 }, + [22] = { 63.6, 58.7, 2366, 18000 }, + [23] = { 68.2, 57, 2366, 18000 }, + [24] = { 24.5, 56.1, 2366, 18000 }, + [25] = { 58.9, 56, 2366, 18000 }, + [26] = { 44.6, 55.4, 2366, 18000 }, + [27] = { 42.7, 54.4, 2366, 18000 }, + [28] = { 55, 53.2, 2366, 18000 }, + [29] = { 23.9, 52.5, 2366, 18000 }, + [30] = { 64.1, 52, 2366, 18000 }, + [31] = { 45.8, 50.6, 2366, 18000 }, + [32] = { 41.7, 50.2, 2366, 18000 }, + [33] = { 59.1, 47.8, 2366, 18000 }, + [34] = { 54.9, 47.4, 2366, 18000 }, + [35] = { 50.9, 47.3, 2366, 18000 }, + [36] = { 36.8, 46.5, 2366, 18000 }, + [37] = { 38.7, 46.3, 2366, 18000 }, + [38] = { 47.6, 44.9, 2366, 18000 }, + [39] = { 73.4, 44.7, 2366, 18000 }, + [40] = { 36.6, 44.6, 2366, 18000 }, + [41] = { 38.3, 44, 2366, 18000 }, + [42] = { 37.3, 43.6, 2366, 18000 }, + [43] = { 25.5, 42.9, 2366, 18000 }, + [44] = { 75.2, 40.3, 2366, 18000 }, + [45] = { 36.3, 40.2, 2366, 18000 }, + [46] = { 52.6, 40, 2366, 18000 }, + [47] = { 57.6, 39.7, 2366, 18000 }, + [48] = { 23, 39.5, 2366, 18000 }, + [49] = { 72.2, 38.7, 2366, 18000 }, + [50] = { 39.4, 38.3, 2366, 18000 }, + [51] = { 49.9, 37.3, 2366, 18000 }, + [52] = { 35.4, 36.9, 2366, 18000 }, + [53] = { 24, 36.8, 2366, 18000 }, + [54] = { 62.7, 36.5, 2366, 18000 }, + [55] = { 41.4, 36.2, 2366, 18000 }, + [56] = { 54, 35.8, 2366, 18000 }, + [57] = { 72.5, 33.8, 2366, 18000 }, + [58] = { 49.9, 32.4, 2366, 18000 }, + [59] = { 37.9, 32.1, 2366, 18000 }, + [60] = { 30.5, 32, 2366, 18000 }, + [61] = { 38.1, 27.4, 2366, 18000 }, + [62] = { 48.7, 27.1, 2366, 18000 }, + [63] = { 43.8, 24.7, 2366, 18000 }, + [64] = { 47.4, 24.1, 2366, 18000 }, + [65] = { 41.5, 23.2, 2366, 18000 }, + [66] = { 9.1, 99, 5204, 18000 }, + [67] = { 11.6, 98.6, 5204, 18000 }, + [68] = { 25.6, 98.6, 5204, 18000 }, + [69] = { 24.2, 97, 5204, 18000 }, + [70] = { 7.7, 96.4, 5204, 18000 }, + [71] = { 10.9, 95.2, 5204, 18000 }, + [72] = { 28.3, 94.5, 5204, 18000 }, + [73] = { 13.2, 93.5, 5204, 18000 }, + [74] = { 2.4, 93.3, 5204, 18000 }, + [75] = { 5.6, 93.2, 5204, 18000 }, + [76] = { 31.1, 92.5, 5204, 18000 }, + [77] = { 27.7, 91.6, 5204, 18000 }, + [78] = { 35.2, 89.9, 5204, 18000 }, + [79] = { 4.2, 89.8, 5204, 18000 }, + [80] = { 28.6, 88.5, 5204, 18000 }, + [81] = { 17.3, 88.4, 5204, 18000 }, + [82] = { 20, 85.6, 5204, 18000 }, + [83] = { 17.6, 83.6, 5204, 18000 }, + [84] = { 20.4, 80.5, 5204, 18000 }, + [85] = { 29.7, 80.4, 5204, 18000 }, + [86] = { 33.6, 78.9, 5204, 18000 }, + [87] = { 25.6, 78, 5204, 18000 }, + [88] = { 13.4, 77.5, 5204, 18000 }, + [89] = { 11.8, 76.7, 5204, 18000 }, + [90] = { 22.3, 75.7, 5204, 18000 }, + [91] = { 30.1, 74.6, 5204, 18000 }, + [92] = { 14.5, 73.4, 5204, 18000 }, + [93] = { 10.9, 73.1, 5204, 18000 }, + [94] = { 25.8, 71, 5204, 18000 }, + [95] = { 22.2, 70.6, 5204, 18000 }, + [96] = { 18.8, 70.5, 5204, 18000 }, + [97] = { 6.8, 69.9, 5204, 18000 }, + [98] = { 8.4, 69.7, 5204, 18000 }, + [99] = { 16, 68.5, 5204, 18000 }, + [100] = { 38, 68.3, 5204, 18000 }, + [101] = { 6.6, 68.3, 5204, 18000 }, + [102] = { 8.1, 67.8, 5204, 18000 }, + [103] = { 7.2, 67.4, 5204, 18000 }, + [104] = { 39.6, 64.5, 5204, 18000 }, + [105] = { 6.4, 64.4, 5204, 18000 }, + [106] = { 20.3, 64.2, 5204, 18000 }, + [107] = { 24.5, 64, 5204, 18000 }, + [108] = { 37, 63.2, 5204, 18000 }, + [109] = { 9, 62.8, 5204, 18000 }, + [110] = { 18, 62, 5204, 18000 }, + [111] = { 5.6, 61.6, 5204, 18000 }, + [112] = { 28.9, 61.3, 5204, 18000 }, + [113] = { 10.7, 61, 5204, 18000 }, + [114] = { 21.4, 60.7, 5204, 18000 }, + [115] = { 37.2, 59, 5204, 18000 }, + [116] = { 18, 57.7, 5204, 18000 }, + [117] = { 7.8, 57.5, 5204, 18000 }, + [118] = { 1.4, 57.4, 5204, 18000 }, + [119] = { 7.9, 53.5, 5204, 18000 }, + [120] = { 17, 53.2, 5204, 18000 }, + [121] = { 12.8, 51.2, 5204, 18000 }, + [122] = { 15.9, 50.6, 5204, 18000 }, + [123] = { 10.8, 49.9, 5204, 18000 }, + }, + ["lvl"] = "61", + }, + [65112] = { + ["coords"] = { + [1] = { 69.2, 87.8, 2366, 18000 }, + [2] = { 71.5, 87.7, 2366, 18000 }, + [3] = { 56.2, 86.1, 2366, 18000 }, + [4] = { 54.7, 82.3, 2366, 18000 }, + [5] = { 79.1, 81.2, 2366, 18000 }, + [6] = { 64.1, 79.9, 2366, 18000 }, + [7] = { 64.2, 76.2, 2366, 18000 }, + [8] = { 55.5, 75.2, 2366, 18000 }, + [9] = { 76.9, 73.8, 2366, 18000 }, + [10] = { 41.7, 72.3, 2366, 18000 }, + [11] = { 39.3, 71.8, 2366, 18000 }, + [12] = { 56.8, 71.4, 2366, 18000 }, + [13] = { 75.9, 66, 2366, 18000 }, + [14] = { 44.3, 65.5, 2366, 18000 }, + [15] = { 66.5, 64.4, 2366, 18000 }, + [16] = { 78.7, 63.4, 2366, 18000 }, + [17] = { 44.4, 61.2, 2366, 18000 }, + [18] = { 55.7, 60.6, 2366, 18000 }, + [19] = { 76.3, 60.4, 2366, 18000 }, + [20] = { 71.7, 58.8, 2366, 18000 }, + [21] = { 43, 57.4, 2366, 18000 }, + [22] = { 56.7, 48.6, 2366, 18000 }, + [23] = { 65.7, 48, 2366, 18000 }, + [24] = { 20.7, 46.4, 2366, 18000 }, + [25] = { 63.5, 44.8, 2366, 18000 }, + [26] = { 70.5, 44.3, 2366, 18000 }, + [27] = { 27.7, 44, 2366, 18000 }, + [28] = { 81.2, 42.9, 2366, 18000 }, + [29] = { 53.3, 42.3, 2366, 18000 }, + [30] = { 30.8, 41.8, 2366, 18000 }, + [31] = { 28.6, 40.3, 2366, 18000 }, + [32] = { 45.8, 32.2, 2366, 18000 }, + [33] = { 74.7, 31, 2366, 18000 }, + [34] = { 75.6, 25.7, 2366, 18000 }, + [35] = { 64.2, 24.6, 2366, 18000 }, + [36] = { 28.7, 24.4, 2366, 18000 }, + [37] = { 26.8, 20.9, 2366, 18000 }, + [38] = { 33.2, 18.9, 2366, 18000 }, + [39] = { 28.7, 18.2, 2366, 18000 }, + [40] = { 31.4, 17.5, 2366, 18000 }, + [41] = { 71.7, 17.2, 2366, 18000 }, + [42] = { 30.4, 13.2, 2366, 18000 }, + [43] = { 42.9, 99.7, 5204, 18000 }, + [44] = { 30.1, 98.6, 5204, 18000 }, + [45] = { 30.2, 95.4, 5204, 18000 }, + [46] = { 22.7, 94.5, 5204, 18000 }, + [47] = { 41, 93.3, 5204, 18000 }, + [48] = { 11, 92, 5204, 18000 }, + [49] = { 8.9, 91.6, 5204, 18000 }, + [50] = { 23.9, 91.3, 5204, 18000 }, + [51] = { 40.1, 86.6, 5204, 18000 }, + [52] = { 13.2, 86.2, 5204, 18000 }, + [53] = { 32.1, 85.3, 5204, 18000 }, + [54] = { 42.6, 84.4, 5204, 18000 }, + [55] = { 13.2, 82.5, 5204, 18000 }, + [56] = { 22.9, 82, 5204, 18000 }, + [57] = { 40.5, 81.8, 5204, 18000 }, + [58] = { 36.5, 80.5, 5204, 18000 }, + [59] = { 12, 79.3, 5204, 18000 }, + [60] = { 23.8, 71.7, 5204, 18000 }, + [61] = { 31.5, 71.1, 5204, 18000 }, + [62] = { 29.5, 68.4, 5204, 18000 }, + [63] = { 35.6, 68, 5204, 18000 }, + [64] = { 44.7, 66.8, 5204, 18000 }, + [65] = { 20.9, 66.3, 5204, 18000 }, + [66] = { 1.7, 65.8, 5204, 18000 }, + [67] = { 14.5, 57.6, 5204, 18000 }, + [68] = { 39.1, 56.6, 5204, 18000 }, + [69] = { 39.9, 52, 5204, 18000 }, + [70] = { 30.2, 51.1, 5204, 18000 }, + [71] = { 3.7, 46.2, 5204, 18000 }, + [72] = { 2.2, 45, 5204, 18000 }, + [73] = { 36.5, 44.7, 5204, 18000 }, + [74] = { 1.3, 41.3, 5204, 18000 }, + }, + ["lvl"] = "61", + }, + [65113] = { + ["coords"] = { + [1] = { 28.2, 23.6, 5204, 604800 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [65114] = { + ["coords"] = {}, + ["lvl"] = "62", + }, + [65115] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "2", + }, + [65116] = { + ["coords"] = { + [1] = { 27.9, 23, 5204, 604800 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [65117] = { + ["coords"] = {}, + ["lvl"] = "62", + }, + [65118] = { + ["coords"] = {}, + ["lvl"] = "62", + }, + [65119] = { + ["coords"] = {}, + ["lvl"] = "62", + }, + [65120] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [65121] = { + ["coords"] = {}, + ["lvl"] = "62", + }, + [65122] = { + ["coords"] = { + [1] = { 22.2, 81.9, 2366, 604800 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [65123] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [65124] = { + ["coords"] = { + [1] = { 68.9, 52.3, 2366, 604800 }, + [2] = { 34.2, 74.8, 5204, 604800 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [65125] = { + ["coords"] = { + [1] = { 48.8, 72.4, 2366, 604800 }, + [2] = { 17, 92.2, 5204, 604800 }, + }, + ["lvl"] = "62", + ["rnk"] = "3", + }, + [65126] = { + ["coords"] = { + [1] = { 87.8, 50.6, 2366, 18000 }, + [2] = { 89.4, 46.6, 2366, 18000 }, + [3] = { 87.2, 45.5, 2366, 18000 }, + [4] = { 50.4, 73.4, 5204, 18000 }, + [5] = { 51.7, 70, 5204, 18000 }, + [6] = { 49.8, 69, 5204, 18000 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [65127] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [65128] = { + ["coords"] = { + [1] = { 89.8, 50, 2366, 18000 }, + [2] = { 52, 72.9, 5204, 18000 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [65129] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "37", + }, + [65130] = { + ["coords"] = { + [1] = { 58, 56.5, 440, 180 }, + [2] = { 38.8, 50.5, 1941, 180 }, + [3] = { 49.5, 4.4, 2366, 18000 }, + [4] = { 17.6, 33.7, 5204, 18000 }, + }, + ["lvl"] = "57", + }, + [65131] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "1-3", + }, + [65132] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "49-50", + ["rnk"] = "4", + }, + [65133] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [65134] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "15", + }, + [65135] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "12-13", + }, + [65137] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [65138] = { + ["coords"] = { + [1] = { 60.6, 82, 36, 300 }, + [2] = { 61.9, 20.2, 267, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [65139] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [65140] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [65142] = { + ["coords"] = { + [1] = { 21.7, 79.6, 36, 300 }, + [2] = { 27.8, 18.1, 267, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [65143] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [65144] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [65145] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [65146] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [65147] = { + ["coords"] = { + [1] = { 46.1, 46.5, 5130, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [66000] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "25", + }, + [66001] = { + ["coords"] = { + [1] = { 34.6, 64.7, 11, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "38", + }, + [66002] = { + ["coords"] = { + [1] = { 58.4, 58.8, 215, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [66003] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [66004] = { + ["coords"] = { + [1] = { 78.7, 48.8, 357, 10 }, + }, + ["fac"] = "AH", + ["lvl"] = "44", + }, + [66005] = { + ["coords"] = { + [1] = { 76.3, 42.2, 357, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [68000] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "42", + ["rnk"] = "1", + }, + [70000] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [70001] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [70002] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [70003] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [70004] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [70005] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [70006] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [70007] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [70008] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [70009] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [70010] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [70011] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [70012] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [70013] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [70014] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [70015] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [70018] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [70019] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [70020] = { + ["coords"] = { + [1] = { 78.4, 68.2, 331, 260 }, + }, + ["fac"] = "H", + ["lvl"] = "24-29", + }, + [70022] = { + ["coords"] = { + [1] = { 78.4, 68.3, 331, 260 }, + }, + ["fac"] = "H", + ["lvl"] = "25-34", + }, + [70023] = { + ["coords"] = { + [1] = { 87.2, 64.7, 331, 260 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + ["rnk"] = "1", + }, + [70025] = { + ["coords"] = { + [1] = { 88.5, 64.8, 331, 260 }, + [2] = { 88.4, 64.5, 331, 260 }, + [3] = { 88.5, 64.3, 331, 260 }, + [4] = { 88, 64.2, 331, 260 }, + [5] = { 87.9, 64.2, 331, 260 }, + [6] = { 86.5, 63.6, 331, 260 }, + [7] = { 88.2, 63.5, 331, 260 }, + [8] = { 87.3, 63.4, 331, 260 }, + [9] = { 86.6, 63.2, 331, 260 }, + [10] = { 84.8, 62.9, 331, 260 }, + [11] = { 88.5, 62.9, 331, 260 }, + [12] = { 84.4, 62.9, 331, 260 }, + [13] = { 83.8, 62.8, 331, 260 }, + [14] = { 85.3, 62.8, 331, 260 }, + [15] = { 87, 62.7, 331, 260 }, + [16] = { 89.3, 62.2, 331, 260 }, + [17] = { 84.4, 62.1, 331, 260 }, + [18] = { 87.5, 62.1, 331, 260 }, + [19] = { 83.6, 62.1, 331, 260 }, + [20] = { 88.9, 62, 331, 260 }, + [21] = { 83.5, 61.9, 331, 260 }, + [22] = { 85.5, 61.9, 331, 260 }, + [23] = { 88, 61.5, 331, 260 }, + [24] = { 83.5, 61.5, 331, 260 }, + [25] = { 83.7, 61.3, 331, 260 }, + [26] = { 83.6, 60.9, 331, 260 }, + [27] = { 87.1, 60.5, 331, 260 }, + [28] = { 84.2, 60.3, 331, 260 }, + [29] = { 83.2, 60.3, 331, 260 }, + [30] = { 84, 59.7, 331, 260 }, + [31] = { 84.9, 59.6, 331, 260 }, + [32] = { 85, 59.5, 331, 260 }, + [33] = { 84.3, 59.4, 331, 260 }, + [34] = { 85.6, 59.3, 331, 260 }, + [35] = { 83.3, 59.2, 331, 260 }, + [36] = { 83.2, 59.2, 331, 260 }, + [37] = { 84.5, 59.1, 331, 260 }, + [38] = { 85.9, 58.9, 331, 260 }, + [39] = { 84.3, 58.7, 331, 260 }, + [40] = { 83.8, 58.5, 331, 260 }, + [41] = { 83.1, 58.4, 331, 260 }, + [42] = { 85.6, 58.4, 331, 260 }, + [43] = { 83.7, 58.3, 331, 260 }, + [44] = { 85.7, 58.2, 331, 260 }, + [45] = { 86.3, 58, 331, 260 }, + [46] = { 85.8, 58, 331, 260 }, + [47] = { 83.7, 58, 331, 260 }, + [48] = { 86.1, 57.9, 331, 260 }, + [49] = { 85.9, 57.8, 331, 260 }, + [50] = { 85.9, 57.5, 331, 260 }, + [51] = { 85.7, 57.5, 331, 260 }, + [52] = { 83.6, 57.4, 331, 260 }, + [53] = { 86.3, 57.1, 331, 260 }, + [54] = { 85, 56.9, 331, 260 }, + [55] = { 86.4, 56.9, 331, 260 }, + [56] = { 84.8, 56.7, 331, 260 }, + [57] = { 83.6, 56.6, 331, 260 }, + [58] = { 85.5, 56.6, 331, 260 }, + [59] = { 83.2, 56.4, 331, 260 }, + [60] = { 85.7, 56.1, 331, 260 }, + [61] = { 85.8, 55.6, 331, 260 }, + [62] = { 86, 54.9, 331, 260 }, + [63] = { 86.7, 54.6, 331, 260 }, + [64] = { 86.4, 54.5, 331, 260 }, + [65] = { 88.2, 53.8, 331, 260 }, + [66] = { 88, 53.6, 331, 260 }, + [67] = { 87.3, 53.4, 331, 260 }, + [68] = { 88.3, 53, 331, 260 }, + [69] = { 87.6, 53, 331, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "27", + }, + [70027] = { + ["coords"] = { + [1] = { 90.7, 58.1, 331, 260 }, + }, + ["fac"] = "H", + ["lvl"] = "31", + ["rnk"] = "1", + }, + [70028] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "35-38", + ["rnk"] = "1", + }, + [70040] = { + ["coords"] = { + [1] = { 51.1, 69.4, 5024, 344 }, + [2] = { 49.4, 64.4, 5024, 262 }, + [3] = { 44.9, 61.2, 5024, 260 }, + [4] = { 45, 61.1, 5024, 205 }, + [5] = { 66.1, 60.6, 5024, 180 }, + [6] = { 61, 60.6, 5024, 180 }, + [7] = { 66.4, 60.3, 5024, 180 }, + [8] = { 66.1, 60.2, 5024, 180 }, + [9] = { 52.9, 58.2, 5024, 300 }, + [10] = { 52.9, 57.7, 5024, 300 }, + [11] = { 50.8, 57.7, 5024, 180 }, + [12] = { 62.6, 54.9, 5024, 180 }, + [13] = { 68.3, 48.7, 5024, 180 }, + [14] = { 68.4, 48.5, 5024, 180 }, + [15] = { 68.2, 48.5, 5024, 180 }, + [16] = { 30.1, 33.8, 5024, 300 }, + [17] = { 29.7, 32.7, 5024, 300 }, + [18] = { 30.1, 32.1, 5024, 300 }, + }, + ["lvl"] = "5", + }, + [70060] = { + ["coords"] = { + [1] = { 53.2, 43.4, 14, 260 }, + }, + ["lvl"] = "5", + }, + [70067] = { + ["coords"] = { + [1] = { 71.2, 27.5, 1, 300 }, + [2] = { 70, 26.7, 1, 300 }, + [3] = { 71.3, 26.6, 1, 300 }, + [4] = { 71.2, 26.6, 1, 300 }, + [5] = { 71.2, 26.3, 1, 300 }, + [6] = { 71.1, 25.3, 1, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [70891] = { + ["coords"] = {}, + ["lvl"] = "30", + ["rnk"] = "1", + }, + [73000] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [73001] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [73002] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [73003] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [73004] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [73005] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [73006] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [73010] = { + ["coords"] = { + [1] = { 29.4, 61.1, 876, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [73101] = { + ["coords"] = { + [1] = { 38.1, 30, 405, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "58", + }, + [73102] = { + ["coords"] = { + [1] = { 5, 88.5, 1337, 120 }, + [2] = { 13.1, 94.4, 5602, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "58", + }, + [73103] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [73104] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [80007] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [80008] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "57", + }, + [80100] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [80101] = { + ["coords"] = {}, + ["lvl"] = "3", + }, + [80102] = { + ["coords"] = { + [1] = { 98.6, 57.7, 14, 300 }, + [2] = { 36.5, 61.6, 5536, 300 }, + }, + ["lvl"] = "3", + }, + [80103] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [80104] = { + ["coords"] = { + [1] = { 48.1, 64.5, 5536, 300 }, + }, + ["lvl"] = "11", + }, + [80105] = { + ["coords"] = { + [1] = { 49.3, 63.1, 5536, 300 }, + }, + ["lvl"] = "8", + }, + [80106] = { + ["coords"] = { + [1] = { 48.5, 68.7, 5536, 300 }, + }, + ["lvl"] = "8", + }, + [80107] = { + ["coords"] = { + [1] = { 49.4, 65.5, 5536, 300 }, + }, + ["lvl"] = "9", + }, + [80108] = { + ["coords"] = { + [1] = { 47.3, 68.7, 5536, 300 }, + }, + ["lvl"] = "10", + }, + [80109] = { + ["coords"] = { + [1] = { 98.7, 57.7, 14, 300 }, + [2] = { 36.7, 61.5, 5536, 300 }, + }, + ["lvl"] = "11", + }, + [80110] = { + ["coords"] = { + [1] = { 99.1, 58.1, 14, 300 }, + [2] = { 37.6, 62.5, 5536, 300 }, + }, + ["lvl"] = "10", + }, + [80111] = { + ["coords"] = { + [1] = { 98.4, 57.8, 14, 300 }, + [2] = { 36.1, 61.6, 5536, 300 }, + }, + ["lvl"] = "14", + }, + [80112] = { + ["coords"] = { + [1] = { 97.6, 60.6, 14, 300 }, + [2] = { 98.4, 60.6, 14, 300 }, + [3] = { 99.8, 60.6, 14, 300 }, + [4] = { 99.2, 59.8, 14, 300 }, + [5] = { 98.3, 59.5, 14, 300 }, + [6] = { 97.7, 59.3, 14, 300 }, + [7] = { 98.8, 59.2, 14, 300 }, + [8] = { 99.5, 58.7, 14, 300 }, + [9] = { 98.9, 58.6, 14, 300 }, + [10] = { 98, 57.3, 14, 300 }, + [11] = { 99.1, 57.2, 14, 300 }, + [12] = { 98.6, 56.6, 14, 300 }, + [13] = { 98.6, 56.2, 14, 300 }, + [14] = { 99.3, 56.2, 14, 300 }, + [15] = { 98.8, 55.6, 14, 300 }, + [16] = { 99.5, 55.4, 14, 300 }, + [17] = { 34.4, 67.7, 5536, 300 }, + [18] = { 36, 67.7, 5536, 300 }, + [19] = { 39, 67.6, 5536, 300 }, + [20] = { 37.8, 66, 5536, 300 }, + [21] = { 35.8, 65.4, 5536, 300 }, + [22] = { 34.6, 64.9, 5536, 300 }, + [23] = { 40.1, 64.9, 5536, 300 }, + [24] = { 36.9, 64.8, 5536, 300 }, + [25] = { 39.8, 63.6, 5536, 300 }, + [26] = { 38.4, 63.6, 5536, 300 }, + [27] = { 37, 63.4, 5536, 300 }, + [28] = { 35.2, 60.7, 5536, 300 }, + [29] = { 37.6, 60.4, 5536, 300 }, + [30] = { 40.3, 60.3, 5536, 300 }, + [31] = { 36.6, 59.1, 5536, 300 }, + [32] = { 36.5, 58.4, 5536, 300 }, + [33] = { 38, 58.3, 5536, 300 }, + [34] = { 36.8, 57.1, 5536, 300 }, + [35] = { 40.7, 56.6, 5536, 300 }, + [36] = { 38.5, 56.6, 5536, 300 }, + [37] = { 40.1, 55.7, 5536, 300 }, + [38] = { 41.1, 55.5, 5536, 300 }, + [39] = { 42, 55.4, 5536, 300 }, + }, + ["lvl"] = "1", + }, + [80113] = { + ["coords"] = {}, + ["lvl"] = "2-3", + }, + [80114] = { + ["coords"] = {}, + ["lvl"] = "3", + }, + [80115] = { + ["coords"] = {}, + ["lvl"] = "3", + }, + [80116] = { + ["coords"] = {}, + ["lvl"] = "4", + }, + [80117] = { + ["coords"] = { + [1] = { 97, 60.4, 14, 300 }, + [2] = { 98.9, 60.3, 14, 300 }, + [3] = { 97.1, 58.8, 14, 300 }, + [4] = { 99.6, 58.5, 14, 300 }, + [5] = { 97.7, 57.9, 14, 300 }, + [6] = { 99.5, 57.3, 14, 300 }, + [7] = { 98.7, 56.9, 14, 300 }, + [8] = { 99.8, 56.8, 14, 300 }, + [9] = { 99.1, 55.3, 14, 300 }, + [10] = { 33, 67.2, 5536, 300 }, + [11] = { 37.1, 67, 5536, 300 }, + [12] = { 40.5, 65.3, 5536, 300 }, + [13] = { 33.3, 63.8, 5536, 300 }, + [14] = { 38.7, 63.2, 5536, 300 }, + [15] = { 34.6, 62, 5536, 300 }, + [16] = { 39.7, 61.3, 5536, 300 }, + [17] = { 38.5, 60.8, 5536, 300 }, + [18] = { 36.6, 59.9, 5536, 300 }, + [19] = { 40.7, 59.8, 5536, 300 }, + [20] = { 39.1, 59.7, 5536, 300 }, + [21] = { 39.7, 57.8, 5536, 300 }, + [22] = { 37.6, 56.5, 5536, 300 }, + }, + ["lvl"] = "2", + }, + [80118] = { + ["coords"] = {}, + ["lvl"] = "5", + }, + [80119] = { + ["coords"] = {}, + ["lvl"] = "4", + }, + [80120] = { + ["coords"] = {}, + ["lvl"] = "6", + }, + [80121] = { + ["coords"] = {}, + ["lvl"] = "5", + }, + [80122] = { + ["coords"] = { + [1] = { 49.8, 35.8, 14, 60 }, + }, + ["lvl"] = "3", + }, + [80123] = { + ["coords"] = { + [1] = { 49.7, 35.9, 14, 60 }, + }, + ["lvl"] = "14", + }, + [80124] = { + ["coords"] = {}, + ["lvl"] = "11", + }, + [80125] = { + ["coords"] = {}, + ["lvl"] = "8", + }, + [80126] = { + ["coords"] = {}, + ["lvl"] = "8", + }, + [80127] = { + ["coords"] = {}, + ["lvl"] = "9", + }, + [80128] = { + ["coords"] = {}, + ["lvl"] = "10", + }, + [80129] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [80130] = { + ["coords"] = { + [1] = { 48.3, 64.4, 5536, 300 }, + }, + ["lvl"] = "50", + ["rnk"] = "1", + }, + [80131] = { + ["coords"] = { + [1] = { 98.6, 58.4, 14, 300 }, + [2] = { 36.5, 62.9, 5536, 300 }, + }, + ["lvl"] = "5", + }, + [80132] = { + ["coords"] = { + [1] = { 52.9, 40.4, 14, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [80133] = { + ["coords"] = { + [1] = { 51.6, 41.9, 14, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "10", + }, + [80135] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [80136] = { + ["coords"] = { + [1] = { 58.7, 28.1, 14, 300 }, + }, + ["lvl"] = "10", + }, + [80137] = { + ["coords"] = { + [1] = { 58.8, 28, 14, 300 }, + }, + ["lvl"] = "11", + }, + [80140] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [80141] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [80142] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [80143] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [80145] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [80146] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [80147] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [80148] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [80149] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [80150] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [80151] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [80152] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [80153] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [80154] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [80155] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [80156] = { + ["coords"] = { + [1] = { 63.6, 57.7, 440, 300 }, + [2] = { 67.5, 57.2, 1941, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [80157] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [80158] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [80159] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [80160] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [80161] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [80162] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [80163] = { + ["coords"] = { + [1] = { 21.5, 41.8, 1519, 120 }, + [2] = { 28, 99.8, 5581, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [80164] = { + ["coords"] = { + [1] = { 14.1, 44.6, 47, 260 }, + [2] = { 99.6, 3.6, 267, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [80165] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [80166] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [80167] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [80168] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [80178] = { + ["coords"] = { + [1] = { 58.7, 26.4, 14, 180 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [80179] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [80200] = { + ["coords"] = { + [1] = { 51.7, 53.7, 2040, 300 }, + [2] = { 62.4, 27.6, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "8", + }, + [80201] = { + ["coords"] = {}, + ["lvl"] = "1-2", + }, + [80202] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "2", + }, + [80203] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [80204] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [80205] = { + ["coords"] = { + [1] = { 78.4, 76.5, 38, 30 }, + [2] = { 38.7, 83.5, 5602, 30 }, + }, + ["lvl"] = "19", + }, + [80206] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [80207] = { + ["coords"] = { + [1] = { 77.9, 76.8, 38, 300 }, + [2] = { 78.4, 76, 38, 300 }, + [3] = { 79, 75.6, 38, 300 }, + [4] = { 76, 75.5, 38, 300 }, + [5] = { 77.7, 75.4, 38, 300 }, + [6] = { 75.9, 75.3, 38, 300 }, + [7] = { 76, 75.3, 38, 300 }, + [8] = { 77.1, 74.8, 38, 300 }, + [9] = { 78.1, 74.8, 38, 300 }, + [10] = { 77, 74.5, 38, 300 }, + [11] = { 78.2, 74.5, 38, 300 }, + [12] = { 77.5, 74.4, 38, 300 }, + [13] = { 75.9, 74, 38, 300 }, + [14] = { 76.4, 73.8, 38, 300 }, + [15] = { 76.5, 73.4, 38, 300 }, + [16] = { 78.2, 73.4, 38, 300 }, + [17] = { 77.8, 73.4, 38, 300 }, + [18] = { 77, 73.3, 38, 300 }, + [19] = { 38.4, 83.6, 5602, 300 }, + [20] = { 38.7, 83.2, 5602, 300 }, + [21] = { 39, 83, 5602, 300 }, + [22] = { 37.5, 82.9, 5602, 300 }, + [23] = { 38.3, 82.9, 5602, 300 }, + [24] = { 37.4, 82.9, 5602, 300 }, + [25] = { 37.5, 82.8, 5602, 300 }, + [26] = { 38, 82.6, 5602, 300 }, + [27] = { 38.6, 82.6, 5602, 300 }, + [28] = { 38, 82.4, 5602, 300 }, + [29] = { 38.6, 82.4, 5602, 300 }, + [30] = { 38.2, 82.4, 5602, 300 }, + [31] = { 37.4, 82.2, 5602, 300 }, + [32] = { 37.7, 82, 5602, 300 }, + [33] = { 37.7, 81.9, 5602, 300 }, + [34] = { 38.6, 81.9, 5602, 300 }, + [35] = { 38.4, 81.9, 5602, 300 }, + [36] = { 38, 81.8, 5602, 300 }, + }, + ["lvl"] = "17-18", + }, + [80208] = { + ["coords"] = { + [1] = { 75.9, 75.4, 38, 100 }, + [2] = { 83.3, 64.7, 38, 100 }, + [3] = { 83, 64.5, 38, 100 }, + [4] = { 83.3, 64.4, 38, 100 }, + [5] = { 83.2, 64.2, 38, 100 }, + [6] = { 84.5, 62.3, 38, 100 }, + [7] = { 79.5, 59.2, 38, 100 }, + [8] = { 79.4, 58.9, 38, 100 }, + [9] = { 8.8, 25, 139, 300 }, + [10] = { 6.1, 24.4, 139, 300 }, + [11] = { 9.2, 24.3, 139, 300 }, + [12] = { 6, 24.2, 139, 300 }, + [13] = { 9.1, 24.1, 139, 300 }, + [14] = { 5.7, 24.1, 139, 300 }, + [15] = { 8.5, 24, 139, 300 }, + [16] = { 9.1, 23.8, 139, 300 }, + [17] = { 8.7, 23.7, 139, 300 }, + [18] = { 8.1, 23.6, 139, 300 }, + [19] = { 8.6, 23.3, 139, 300 }, + [20] = { 8.7, 23.2, 139, 300 }, + [21] = { 8, 23.2, 139, 300 }, + [22] = { 7.2, 22.9, 139, 300 }, + [23] = { 8.4, 22.8, 139, 300 }, + [24] = { 8.3, 22.8, 139, 300 }, + [25] = { 7.3, 22.4, 139, 300 }, + [26] = { 7.8, 22.2, 139, 300 }, + [27] = { 8.6, 22.2, 139, 300 }, + [28] = { 7.9, 21.9, 139, 300 }, + [29] = { 67.8, 47.7, 1519, 100 }, + [30] = { 65.5, 47.2, 1519, 100 }, + [31] = { 65.3, 47, 1519, 100 }, + [32] = { 68.1, 46.8, 1519, 100 }, + [33] = { 35, 46.4, 1519, 180 }, + [34] = { 64.2, 45.3, 1519, 100 }, + [35] = { 36.6, 93.5, 2040, 300 }, + [36] = { 36.9, 92.8, 2040, 300 }, + [37] = { 37.4, 81.1, 2040, 300 }, + [38] = { 40, 79.9, 2040, 300 }, + [39] = { 42.6, 78.7, 2040, 300 }, + [40] = { 42.7, 78.6, 2040, 300 }, + [41] = { 36.9, 77.6, 2040, 300 }, + [42] = { 36.3, 77.4, 2040, 300 }, + [43] = { 36.9, 76.6, 2040, 300 }, + [44] = { 37, 76.5, 2040, 300 }, + [45] = { 37.1, 76.4, 2040, 300 }, + [46] = { 36.5, 75.9, 2040, 300 }, + [47] = { 41.8, 67.9, 2040, 260 }, + [48] = { 39.6, 66.2, 2040, 300 }, + [49] = { 39.9, 66.2, 2040, 300 }, + [50] = { 43.9, 65.2, 2040, 300 }, + [51] = { 44.2, 65.1, 2040, 300 }, + [52] = { 42.9, 64.2, 2040, 100 }, + [53] = { 42.8, 63.3, 2040, 100 }, + [54] = { 49.6, 56.7, 2040, 300 }, + [55] = { 52.7, 55.9, 2040, 300 }, + [56] = { 55.1, 53.8, 2040, 300 }, + [57] = { 51, 50, 2040, 300 }, + [58] = { 51.2, 49.9, 2040, 300 }, + [59] = { 49.3, 87.2, 5225, 300 }, + [60] = { 46, 86.5, 5225, 300 }, + [61] = { 49.8, 86.3, 5225, 300 }, + [62] = { 45.8, 86.2, 5225, 300 }, + [63] = { 49.8, 86.1, 5225, 300 }, + [64] = { 45.4, 86.1, 5225, 300 }, + [65] = { 49, 86, 5225, 300 }, + [66] = { 49.8, 85.8, 5225, 300 }, + [67] = { 49.2, 85.6, 5225, 300 }, + [68] = { 48.4, 85.4, 5225, 300 }, + [69] = { 49.1, 85.1, 5225, 300 }, + [70] = { 49.2, 85, 5225, 300 }, + [71] = { 48.3, 84.9, 5225, 300 }, + [72] = { 45.8, 84.7, 5225, 300 }, + [73] = { 47.4, 84.5, 5225, 300 }, + [74] = { 48.9, 84.5, 5225, 300 }, + [75] = { 48.7, 84.4, 5225, 300 }, + [76] = { 47.4, 84, 5225, 300 }, + [77] = { 48.1, 83.7, 5225, 300 }, + [78] = { 49.1, 83.7, 5225, 300 }, + [79] = { 48.3, 83.3, 5225, 300 }, + [80] = { 46.4, 79.3, 5225, 300 }, + [81] = { 46.5, 78.6, 5225, 300 }, + [82] = { 46.9, 66.7, 5225, 300 }, + [83] = { 46.9, 66.6, 5225, 300 }, + [84] = { 48.2, 51.3, 5225, 300 }, + [85] = { 47.8, 51.3, 5225, 300 }, + [86] = { 47.8, 51.2, 5225, 300 }, + [87] = { 45.2, 49.9, 5225, 300 }, + [88] = { 55.2, 46.5, 5225, 300 }, + [89] = { 55.3, 46.1, 5225, 300 }, + [90] = { 55.6, 40.6, 5225, 300 }, + [91] = { 56.8, 40, 5225, 300 }, + [92] = { 58.1, 39.4, 5225, 300 }, + [93] = { 55.3, 38.9, 5225, 300 }, + [94] = { 55, 38.8, 5225, 300 }, + [95] = { 55.3, 38.5, 5225, 300 }, + [96] = { 55.4, 38.4, 5225, 300 }, + [97] = { 55.4, 38.3, 5225, 300 }, + [98] = { 55.2, 38.1, 5225, 300 }, + [99] = { 57.7, 34.3, 5225, 260 }, + [100] = { 56.6, 33.5, 5225, 300 }, + [101] = { 56.8, 33.5, 5225, 300 }, + [102] = { 58.7, 33.1, 5225, 300 }, + [103] = { 58.8, 33, 5225, 300 }, + [104] = { 58.2, 32.6, 5225, 100 }, + [105] = { 58.2, 32.2, 5225, 100 }, + [106] = { 61.4, 29, 5225, 300 }, + [107] = { 62.9, 28.7, 5225, 300 }, + [108] = { 64, 27.7, 5225, 300 }, + [109] = { 62.1, 25.9, 5225, 300 }, + [110] = { 62.2, 25.8, 5225, 300 }, + [111] = { 37.4, 82.9, 5602, 100 }, + [112] = { 41.2, 77.4, 5602, 100 }, + [113] = { 41, 77.3, 5602, 100 }, + [114] = { 41.2, 77.2, 5602, 100 }, + [115] = { 41.2, 77.1, 5602, 100 }, + [116] = { 41.8, 76.2, 5602, 100 }, + [117] = { 39.3, 74.6, 5602, 100 }, + [118] = { 39.2, 74.4, 5602, 100 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [80209] = { + ["coords"] = { + [1] = { 83.4, 65.3, 38, 100 }, + [2] = { 83.2, 65.1, 38, 100 }, + [3] = { 82.9, 64.3, 38, 100 }, + [4] = { 84.6, 62.7, 38, 100 }, + [5] = { 84.6, 62.4, 38, 100 }, + [6] = { 79.8, 59.1, 38, 260 }, + [7] = { 9.1, 24.8, 139, 300 }, + [8] = { 6.2, 24.5, 139, 300 }, + [9] = { 9.2, 24.4, 139, 300 }, + [10] = { 8.5, 24.3, 139, 300 }, + [11] = { 5.7, 24, 139, 300 }, + [12] = { 8.9, 23.9, 139, 300 }, + [13] = { 6.6, 23.5, 139, 300 }, + [14] = { 8.2, 23.5, 139, 300 }, + [15] = { 8.4, 23.5, 139, 300 }, + [16] = { 8, 23.2, 139, 300 }, + [17] = { 7, 22.9, 139, 300 }, + [18] = { 7.2, 22.9, 139, 300 }, + [19] = { 8.2, 22.8, 139, 300 }, + [20] = { 7.9, 22.2, 139, 300 }, + [21] = { 7.4, 22.2, 139, 300 }, + [22] = { 8.6, 21.9, 139, 300 }, + [23] = { 61.8, 70.9, 1519, 260 }, + [24] = { 67.1, 46.9, 1519, 100 }, + [25] = { 67, 46.8, 1519, 100 }, + [26] = { 65.3, 46.7, 1519, 100 }, + [27] = { 34.8, 46.1, 1519, 180 }, + [28] = { 35, 46, 1519, 180 }, + [29] = { 35.1, 45.7, 1519, 180 }, + [30] = { 39.8, 79.1, 2040, 300 }, + [31] = { 42.7, 78.1, 2040, 300 }, + [32] = { 37.1, 77.3, 2040, 300 }, + [33] = { 37, 76.4, 2040, 300 }, + [34] = { 38.3, 76.2, 2040, 300 }, + [35] = { 36.6, 75.9, 2040, 300 }, + [36] = { 38.2, 68.1, 2040, 300 }, + [37] = { 44.1, 65.7, 2040, 300 }, + [38] = { 43.8, 65.1, 2040, 300 }, + [39] = { 42, 64.8, 2040, 100 }, + [40] = { 42.8, 64.2, 2040, 100 }, + [41] = { 43.2, 63.7, 2040, 100 }, + [42] = { 43.1, 63.6, 2040, 100 }, + [43] = { 52.8, 55.9, 2040, 300 }, + [44] = { 52.1, 54.5, 2040, 300 }, + [45] = { 63.6, 51, 2040, 300 }, + [46] = { 51.1, 50.1, 2040, 300 }, + [47] = { 50.8, 46.3, 2040, 300 }, + [48] = { 45.9, 44.7, 2040, 300 }, + [49] = { 52.1, 44.6, 2040, 300 }, + [50] = { 49.8, 87, 5225, 300 }, + [51] = { 46.1, 86.5, 5225, 300 }, + [52] = { 49.8, 86.5, 5225, 300 }, + [53] = { 49, 86.4, 5225, 300 }, + [54] = { 45.5, 86, 5225, 300 }, + [55] = { 49.5, 85.8, 5225, 300 }, + [56] = { 46.6, 85.4, 5225, 300 }, + [57] = { 48.6, 85.3, 5225, 300 }, + [58] = { 48.7, 85.3, 5225, 300 }, + [59] = { 48.8, 85.3, 5225, 300 }, + [60] = { 48.4, 84.9, 5225, 300 }, + [61] = { 47.1, 84.6, 5225, 300 }, + [62] = { 47.3, 84.5, 5225, 300 }, + [63] = { 46.1, 84.5, 5225, 300 }, + [64] = { 48.6, 84.5, 5225, 300 }, + [65] = { 48.2, 83.7, 5225, 300 }, + [66] = { 47.6, 83.7, 5225, 300 }, + [67] = { 49.1, 83.4, 5225, 300 }, + [68] = { 46.3, 79.4, 5225, 300 }, + [69] = { 46.5, 78.5, 5225, 300 }, + [70] = { 46.5, 78.4, 5225, 300 }, + [71] = { 47.1, 67, 5225, 300 }, + [72] = { 51.5, 64.7, 5225, 300 }, + [73] = { 48.7, 51.9, 5225, 300 }, + [74] = { 56.7, 39.6, 5225, 300 }, + [75] = { 58.1, 39.2, 5225, 300 }, + [76] = { 55.5, 38.8, 5225, 300 }, + [77] = { 55.4, 38.4, 5225, 300 }, + [78] = { 56, 38.3, 5225, 300 }, + [79] = { 55.2, 38.1, 5225, 300 }, + [80] = { 56, 34.5, 5225, 300 }, + [81] = { 58.8, 33.3, 5225, 300 }, + [82] = { 58.6, 33, 5225, 300 }, + [83] = { 57.8, 32.9, 5225, 100 }, + [84] = { 58.2, 32.6, 5225, 100 }, + [85] = { 58.3, 32.4, 5225, 100 }, + [86] = { 58.3, 32.3, 5225, 100 }, + [87] = { 62.9, 28.6, 5225, 300 }, + [88] = { 62.6, 28, 5225, 300 }, + [89] = { 68.1, 26.3, 5225, 300 }, + [90] = { 62.1, 25.9, 5225, 300 }, + [91] = { 62, 24.1, 5225, 300 }, + [92] = { 59.7, 23.3, 5225, 300 }, + [93] = { 62.6, 23.3, 5225, 300 }, + [94] = { 41.2, 77.7, 5602, 100 }, + [95] = { 41.1, 77.6, 5602, 100 }, + [96] = { 41, 77.2, 5602, 100 }, + [97] = { 41.8, 76.4, 5602, 100 }, + [98] = { 41.8, 76.2, 5602, 100 }, + [99] = { 39.4, 74.5, 5602, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [80210] = { + ["coords"] = { + [1] = { 51.7, 53.8, 2040, 300 }, + [2] = { 62.4, 27.7, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [80211] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [80212] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [80213] = { + ["coords"] = { + [1] = { 9.2, 23.7, 139, 300 }, + [2] = { 37.8, 69.6, 2040, 300 }, + [3] = { 49.9, 85.6, 5225, 300 }, + [4] = { 55.8, 35.2, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "6-7", + }, + [80214] = { + ["coords"] = { + [1] = { 7.2, 22.5, 139, 300 }, + [2] = { 47.4, 84.1, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "3", + }, + [80215] = { + ["coords"] = { + [1] = { 8.1, 23.1, 139, 300 }, + [2] = { 48.5, 84.9, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "11", + }, + [80216] = { + ["coords"] = { + [1] = { 83.1, 63.2, 38, 300 }, + [2] = { 83.6, 63, 38, 100 }, + [3] = { 83.4, 62.5, 38, 100 }, + [4] = { 84.3, 62.5, 38, 100 }, + [5] = { 81.8, 62, 38, 100 }, + [6] = { 79.6, 59.5, 38, 100 }, + [7] = { 79.4, 58.9, 38, 100 }, + [8] = { 79.7, 58.8, 38, 135 }, + [9] = { 14.6, 78.1, 85, 300 }, + [10] = { 15.4, 77.2, 85, 300 }, + [11] = { 15.1, 76.4, 85, 300 }, + [12] = { 14.6, 75.6, 85, 300 }, + [13] = { 14.7, 75.5, 85, 300 }, + [14] = { 13.5, 75.2, 85, 300 }, + [15] = { 14.5, 74.8, 85, 300 }, + [16] = { 25.7, 6.5, 130, 300 }, + [17] = { 26.5, 5.5, 130, 300 }, + [18] = { 63.6, 47.7, 1519, 100 }, + [19] = { 66.6, 46.7, 1519, 100 }, + [20] = { 64.8, 46.3, 1519, 100 }, + [21] = { 37.7, 70.2, 2040, 300 }, + [22] = { 41.3, 69.3, 2040, 100 }, + [23] = { 40.8, 68.7, 2040, 300 }, + [24] = { 41, 68.5, 2040, 300 }, + [25] = { 42.5, 68.1, 2040, 300 }, + [26] = { 55.7, 35.4, 5225, 300 }, + [27] = { 57.5, 35, 5225, 100 }, + [28] = { 57.2, 34.7, 5225, 300 }, + [29] = { 57.3, 34.6, 5225, 300 }, + [30] = { 58, 34.4, 5225, 300 }, + [31] = { 41.1, 76.6, 5602, 300 }, + [32] = { 41.4, 76.5, 5602, 100 }, + [33] = { 41.3, 76.3, 5602, 100 }, + [34] = { 41.7, 76.3, 5602, 100 }, + [35] = { 40.4, 76, 5602, 100 }, + [36] = { 39.3, 74.7, 5602, 100 }, + [37] = { 39.2, 74.4, 5602, 100 }, + [38] = { 39.3, 74.4, 5602, 135 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [80217] = { + ["coords"] = { + [1] = { 6.4, 24.5, 139, 300 }, + [2] = { 46.3, 86.6, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "11", + }, + [80218] = { + ["coords"] = { + [1] = { 9.1, 23.5, 139, 300 }, + [2] = { 49.8, 85.3, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [80219] = { + ["coords"] = { + [1] = { 6.6, 22.7, 139, 300 }, + [2] = { 46.5, 84.4, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "8", + }, + [80220] = { + ["coords"] = { + [1] = { 8.5, 24.1, 139, 300 }, + [2] = { 49, 86.1, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [80221] = { + ["coords"] = { + [1] = { 8.6, 24.2, 139, 300 }, + [2] = { 49.1, 86.2, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [80222] = { + ["coords"] = { + [1] = { 6.4, 24.3, 139, 300 }, + [2] = { 46.3, 86.3, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [80223] = { + ["coords"] = { + [1] = { 6.3, 24.6, 139, 300 }, + [2] = { 46.3, 86.7, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "8", + }, + [80224] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [80225] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [80226] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "55", + }, + [80227] = { + ["coords"] = { + [1] = { 9, 24.3, 139, 300 }, + [2] = { 49.6, 86.4, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [80228] = { + ["coords"] = { + [1] = { 6.3, 24.7, 139, 300 }, + [2] = { 46.2, 86.8, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + ["rnk"] = "1", + }, + [80229] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [80230] = { + ["coords"] = { + [1] = { 43, 66.3, 12, 260 }, + [2] = { 63.1, 73.5, 1519, 260 }, + [3] = { 29.9, 59.6, 1537, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "46-47", + }, + [80231] = { + ["coords"] = { + [1] = { 43.8, 82.8, 2040, 260 }, + [2] = { 58.6, 41.4, 5225, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "62", + }, + [80232] = { + ["coords"] = { + [1] = { 41, 68.8, 2040, 260 }, + [2] = { 57.3, 34.8, 5225, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [80233] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [80234] = { + ["coords"] = { + [1] = { 43.9, 82.9, 2040, 300 }, + [2] = { 43.7, 82.8, 2040, 300 }, + [3] = { 43.3, 82.5, 2040, 300 }, + [4] = { 43.5, 82.4, 2040, 300 }, + [5] = { 26.1, 70.6, 2040, 260 }, + [6] = { 26.3, 70.5, 2040, 260 }, + [7] = { 27.2, 70.2, 2040, 260 }, + [8] = { 27.1, 70, 2040, 260 }, + [9] = { 27.3, 69.9, 2040, 260 }, + [10] = { 25.1, 68.9, 2040, 260 }, + [11] = { 40.6, 68.5, 2040, 260 }, + [12] = { 28.7, 62, 2040, 300 }, + [13] = { 58.7, 41.5, 5225, 300 }, + [14] = { 58.6, 41.4, 5225, 300 }, + [15] = { 58.4, 41.2, 5225, 300 }, + [16] = { 58.5, 41.2, 5225, 300 }, + [17] = { 50.2, 35.6, 5225, 260 }, + [18] = { 50.3, 35.6, 5225, 260 }, + [19] = { 50.7, 35.4, 5225, 260 }, + [20] = { 50.7, 35.3, 5225, 260 }, + [21] = { 50.8, 35.3, 5225, 260 }, + [22] = { 49.7, 34.8, 5225, 260 }, + [23] = { 57.1, 34.6, 5225, 260 }, + [24] = { 51.4, 31.6, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "57-58", + ["rnk"] = "1", + }, + [80235] = { + ["coords"] = { + [1] = { 15.1, 77.7, 85, 300 }, + [2] = { 13.5, 75.3, 85, 300 }, + [3] = { 14.4, 75.1, 85, 300 }, + [4] = { 14.6, 75, 85, 300 }, + [5] = { 26.2, 6.1, 130, 300 }, + [6] = { 40.4, 69.6, 2040, 260 }, + [7] = { 40.5, 69.6, 2040, 260 }, + [8] = { 40.3, 69.4, 2040, 260 }, + [9] = { 42.2, 68.1, 2040, 260 }, + [10] = { 41, 68.1, 2040, 260 }, + [11] = { 42.3, 68, 2040, 260 }, + [12] = { 41.1, 67.9, 2040, 260 }, + [13] = { 41.3, 67.8, 2040, 260 }, + [14] = { 41.2, 67.8, 2040, 260 }, + [15] = { 39.5, 66.7, 2040, 260 }, + [16] = { 37.3, 66.6, 2040, 260 }, + [17] = { 37.4, 66.5, 2040, 260 }, + [18] = { 34.6, 62, 2040, 260 }, + [19] = { 51.2, 57.7, 2040, 300 }, + [20] = { 54.7, 54.3, 2040, 300 }, + [21] = { 54.8, 54.1, 2040, 300 }, + [22] = { 49.7, 53, 2040, 300 }, + [23] = { 49.6, 52.8, 2040, 300 }, + [24] = { 49.8, 52.7, 2040, 300 }, + [25] = { 52.6, 52.5, 2040, 300 }, + [26] = { 52.8, 52.2, 2040, 300 }, + [27] = { 53.4, 51.9, 2040, 300 }, + [28] = { 53.7, 50.8, 2040, 300 }, + [29] = { 51.6, 50.7, 2040, 300 }, + [30] = { 43.4, 50.6, 2040, 300 }, + [31] = { 43.6, 50.5, 2040, 300 }, + [32] = { 57.6, 50.4, 2040, 300 }, + [33] = { 45.3, 47.1, 2040, 300 }, + [34] = { 49.1, 44.4, 2040, 300 }, + [35] = { 46.7, 41.7, 2040, 300 }, + [36] = { 50.2, 41.5, 2040, 300 }, + [37] = { 47.3, 40.4, 2040, 300 }, + [38] = { 47.4, 40.2, 2040, 300 }, + [39] = { 48.5, 39.8, 2040, 300 }, + [40] = { 48.6, 39.5, 2040, 300 }, + [41] = { 50.1, 37.1, 2040, 300 }, + [42] = { 57, 35.1, 5225, 260 }, + [43] = { 57.9, 34.5, 5225, 260 }, + [44] = { 57.3, 34.4, 5225, 260 }, + [45] = { 57.9, 34.4, 5225, 260 }, + [46] = { 57.3, 34.3, 5225, 260 }, + [47] = { 57.5, 34.3, 5225, 260 }, + [48] = { 57.4, 34.3, 5225, 260 }, + [49] = { 56.6, 33.8, 5225, 260 }, + [50] = { 55.5, 33.7, 5225, 260 }, + [51] = { 55.6, 33.7, 5225, 260 }, + [52] = { 54.2, 31.5, 5225, 260 }, + [53] = { 62.2, 29.5, 5225, 300 }, + [54] = { 63.8, 27.9, 5225, 300 }, + [55] = { 63.9, 27.8, 5225, 300 }, + [56] = { 61.4, 27.3, 5225, 300 }, + [57] = { 61.4, 27.2, 5225, 300 }, + [58] = { 61.5, 27.1, 5225, 300 }, + [59] = { 62.8, 27, 5225, 300 }, + [60] = { 62.9, 26.9, 5225, 300 }, + [61] = { 63.2, 26.8, 5225, 300 }, + [62] = { 63.4, 26.3, 5225, 300 }, + [63] = { 62.4, 26.2, 5225, 300 }, + [64] = { 58.5, 26.1, 5225, 300 }, + [65] = { 58.6, 26.1, 5225, 300 }, + [66] = { 65.2, 26, 5225, 300 }, + [67] = { 59.3, 24.5, 5225, 300 }, + [68] = { 61.2, 23.2, 5225, 300 }, + [69] = { 60, 21.9, 5225, 300 }, + [70] = { 61.7, 21.8, 5225, 300 }, + [71] = { 60.3, 21.3, 5225, 300 }, + [72] = { 60.4, 21.2, 5225, 300 }, + [73] = { 60.8, 21, 5225, 300 }, + [74] = { 60.9, 20.9, 5225, 300 }, + [75] = { 61.6, 19.7, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [80236] = { + ["coords"] = { + [1] = { 83.3, 64.6, 38, 300 }, + [2] = { 7.3, 22.9, 139, 300 }, + [3] = { 8.3, 22.6, 139, 300 }, + [4] = { 7.9, 22.6, 139, 300 }, + [5] = { 61.9, 71.1, 1519, 260 }, + [6] = { 57.4, 53.1, 1519, 260 }, + [7] = { 66.2, 47.4, 1519, 300 }, + [8] = { 41, 46.9, 1519, 180 }, + [9] = { 39.9, 36.7, 1519, 300 }, + [10] = { 42, 64.8, 2040, 260 }, + [11] = { 34.6, 61.4, 2040, 260 }, + [12] = { 48.4, 60.6, 2040, 300 }, + [13] = { 49.6, 56.8, 2040, 300 }, + [14] = { 51.2, 54.8, 2040, 300 }, + [15] = { 54.4, 51.4, 2040, 300 }, + [16] = { 62.8, 47.9, 2040, 300 }, + [17] = { 46.9, 41.8, 2040, 300 }, + [18] = { 41.4, 34.2, 2040, 300 }, + [19] = { 46, 84.9, 5225, 300 }, + [20] = { 47.5, 84.6, 5225, 300 }, + [21] = { 48.7, 84.2, 5225, 300 }, + [22] = { 48.2, 84.1, 5225, 300 }, + [23] = { 51.6, 64.6, 5225, 300 }, + [24] = { 57.8, 32.9, 5225, 260 }, + [25] = { 54.2, 31.3, 5225, 260 }, + [26] = { 60.8, 30.9, 5225, 300 }, + [27] = { 61.4, 29.1, 5225, 300 }, + [28] = { 62.2, 28.1, 5225, 300 }, + [29] = { 63.7, 26.5, 5225, 300 }, + [30] = { 67.7, 24.8, 5225, 300 }, + [31] = { 60.1, 22, 5225, 300 }, + [32] = { 57.5, 18.4, 5225, 300 }, + [33] = { 37.9, 97.1, 5581, 300 }, + [34] = { 41.2, 77.3, 5602, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [80237] = { + ["coords"] = { + [1] = { 44.2, 49.9, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [80238] = { + ["coords"] = { + [1] = { 42, 70.1, 2040, 260 }, + [2] = { 57.8, 35.4, 5225, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [80239] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "50", + }, + [80240] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "11", + }, + [80241] = { + ["coords"] = {}, + ["lvl"] = "10-11", + }, + [80242] = { + ["coords"] = { + [1] = { 25.7, 56.2, 141, 260 }, + [2] = { 40.7, 44.3, 1657, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "46-47", + }, + [80243] = { + ["coords"] = { + [1] = { 44.3, 50.3, 5225, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [80244] = { + ["coords"] = { + [1] = { 44.2, 50, 5225, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [80245] = { + ["coords"] = { + [1] = { 40.7, 68.5, 2040, 260 }, + [2] = { 57.2, 34.6, 5225, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + }, + [80246] = { + ["coords"] = { + [1] = { 43.6, 83.8, 2040, 260 }, + [2] = { 58.5, 41.9, 5225, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [80247] = { + ["coords"] = { + [1] = { 44.2, 56.7, 5225, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [80248] = { + ["coords"] = { + [1] = { 51.7, 57.7, 2040, 300 }, + [2] = { 62.4, 29.5, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [80249] = { + ["coords"] = { + [1] = { 38.7, 64.4, 2040, 260 }, + [2] = { 56.2, 32.7, 5225, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [80250] = { + ["coords"] = {}, + ["lvl"] = "10", + }, + [80252] = { + ["coords"] = { + [1] = { 75.7, 60.2, 1, 300 }, + [2] = { 65.7, 60.1, 1, 300 }, + [3] = { 79.4, 58.9, 1, 300 }, + [4] = { 66.2, 57.7, 1, 300 }, + [5] = { 66.6, 57.7, 1, 300 }, + [6] = { 76.3, 57.4, 1, 300 }, + [7] = { 67, 56.5, 1, 300 }, + [8] = { 74.1, 55.9, 1, 300 }, + [9] = { 71.9, 55.9, 1, 300 }, + [10] = { 74.8, 55.3, 1, 300 }, + [11] = { 78.9, 54.4, 1, 300 }, + [12] = { 66.9, 53.9, 1, 300 }, + [13] = { 70.4, 53.5, 1, 300 }, + [14] = { 74.3, 52.5, 1, 300 }, + [15] = { 65.5, 52, 1, 300 }, + [16] = { 71.1, 51.7, 1, 300 }, + [17] = { 68.2, 50.7, 1, 300 }, + [18] = { 74.6, 50.5, 1, 300 }, + [19] = { 77.7, 50.3, 1, 300 }, + [20] = { 76.9, 50.3, 1, 300 }, + [21] = { 75.8, 50.1, 1, 300 }, + [22] = { 74.5, 48.4, 1, 300 }, + [23] = { 75.4, 48, 1, 300 }, + [24] = { 78.8, 46.5, 1, 300 }, + [25] = { 56.3, 69.9, 5130, 280 }, + [26] = { 62.4, 67.8, 5130, 280 }, + [27] = { 33.7, 48.2, 5130, 280 }, + [28] = { 0.7, 81.1, 5602, 300 }, + [29] = { 0.2, 77, 5602, 300 }, + [30] = { 0.1, 69.7, 5602, 300 }, + }, + ["lvl"] = "7-8", + }, + [80254] = { + ["coords"] = { + [1] = { 21.6, 88.9, 12, 300 }, + [2] = { 21.2, 87.3, 12, 300 }, + [3] = { 20, 85.3, 12, 300 }, + [4] = { 18.1, 79.2, 12, 300 }, + [5] = { 18.1, 76.8, 12, 300 }, + [6] = { 66.8, 51.6, 40, 300 }, + [7] = { 65.6, 49.3, 40, 300 }, + [8] = { 64.7, 47.6, 40, 300 }, + [9] = { 63.8, 44.8, 40, 300 }, + [10] = { 63.8, 42.2, 40, 300 }, + [11] = { 63.4, 41.8, 40, 300 }, + [12] = { 63.1, 40.7, 40, 300 }, + [13] = { 64.1, 40.6, 40, 300 }, + [14] = { 62.4, 37.6, 40, 300 }, + [15] = { 62.5, 30.6, 40, 300 }, + [16] = { 63, 29.5, 40, 300 }, + [17] = { 63.5, 26.3, 40, 300 }, + [18] = { 63.8, 25.6, 40, 300 }, + [19] = { 63.3, 24, 40, 300 }, + [20] = { 62.2, 22, 40, 300 }, + [21] = { 60.3, 16, 40, 300 }, + [22] = { 60.3, 13.6, 40, 300 }, + }, + ["lvl"] = "10-11", + }, + [80255] = { + ["coords"] = {}, + ["lvl"] = "41-42", + }, + [80256] = { + ["coords"] = { + [1] = { 44.1, 76.7, 10, 300 }, + [2] = { 48.2, 76.3, 10, 300 }, + [3] = { 47, 74.8, 10, 300 }, + [4] = { 43.5, 73.6, 10, 300 }, + [5] = { 42.3, 71, 10, 300 }, + [6] = { 45.3, 70.5, 10, 300 }, + [7] = { 45.8, 68.6, 10, 300 }, + [8] = { 42.9, 68.6, 10, 300 }, + [9] = { 47.8, 68.6, 10, 300 }, + [10] = { 27.4, 68.4, 10, 300 }, + [11] = { 40.1, 67.3, 10, 300 }, + [12] = { 28.1, 66.5, 10, 300 }, + [13] = { 40.1, 65.7, 10, 300 }, + [14] = { 35.6, 65.4, 10, 300 }, + [15] = { 31.6, 64.7, 10, 300 }, + [16] = { 36.9, 64.5, 10, 300 }, + [17] = { 38.9, 64, 10, 300 }, + [18] = { 27.3, 63.2, 10, 300 }, + [19] = { 33.2, 62, 10, 300 }, + [20] = { 30.8, 60.5, 10, 300 }, + }, + ["lvl"] = "27-28", + }, + [80257] = { + ["coords"] = { + [1] = { 19.7, 83.7, 38, 300 }, + [2] = { 22.3, 75.6, 38, 300 }, + [3] = { 20.5, 71.3, 38, 300 }, + [4] = { 28.6, 66.4, 38, 300 }, + [5] = { 29.6, 58.5, 38, 300 }, + [6] = { 42.7, 57.3, 38, 300 }, + [7] = { 28.3, 56.2, 38, 300 }, + [8] = { 32.7, 55.2, 38, 300 }, + [9] = { 35.4, 52.9, 38, 300 }, + [10] = { 41, 50.2, 38, 300 }, + [11] = { 27.9, 49.9, 38, 300 }, + [12] = { 30.2, 42.9, 38, 300 }, + [13] = { 26.9, 41.7, 38, 300 }, + [14] = { 35.4, 37.9, 38, 300 }, + [15] = { 36.3, 37.5, 38, 300 }, + [16] = { 33.7, 31.1, 38, 300 }, + [17] = { 26.8, 31, 38, 300 }, + [18] = { 38.6, 30.5, 38, 300 }, + [19] = { 36, 29.4, 38, 300 }, + [20] = { 32.5, 29, 38, 300 }, + [21] = { 35.5, 28.1, 38, 300 }, + [22] = { 8.6, 87.2, 5602, 300 }, + [23] = { 10, 83, 5602, 300 }, + [24] = { 9.1, 80.8, 5602, 300 }, + [25] = { 13.2, 78.3, 5602, 300 }, + [26] = { 13.7, 74.2, 5602, 300 }, + [27] = { 20.4, 73.6, 5602, 300 }, + [28] = { 13, 73, 5602, 300 }, + [29] = { 15.3, 72.5, 5602, 300 }, + [30] = { 16.7, 71.3, 5602, 300 }, + [31] = { 19.5, 70, 5602, 300 }, + [32] = { 12.8, 69.8, 5602, 300 }, + [33] = { 14, 66.2, 5602, 300 }, + [34] = { 12.3, 65.6, 5602, 300 }, + [35] = { 16.7, 63.6, 5602, 300 }, + [36] = { 17.1, 63.4, 5602, 300 }, + [37] = { 15.8, 60.1, 5602, 300 }, + [38] = { 12.3, 60.1, 5602, 300 }, + [39] = { 18.3, 59.8, 5602, 300 }, + [40] = { 17, 59.3, 5602, 300 }, + [41] = { 15.2, 59.1, 5602, 300 }, + [42] = { 16.7, 58.6, 5602, 300 }, + }, + ["lvl"] = "10-11", + }, + [80258] = { + ["coords"] = { + [1] = { 39.1, 29.9, 85, 120 }, + [2] = { 50.6, 28.8, 130, 300 }, + [3] = { 49.2, 28.4, 130, 300 }, + [4] = { 53.7, 27.1, 130, 300 }, + [5] = { 50, 24.3, 130, 300 }, + [6] = { 53.8, 24, 130, 300 }, + [7] = { 51.9, 23.8, 130, 300 }, + [8] = { 52.8, 23.8, 130, 300 }, + [9] = { 49.2, 23.4, 130, 300 }, + [10] = { 52.2, 23.1, 130, 300 }, + [11] = { 51, 22.8, 130, 300 }, + }, + ["lvl"] = "10-11", + }, + [80259] = { + ["coords"] = { + [1] = { 46.5, 79, 41, 300 }, + [2] = { 50, 77.8, 41, 300 }, + [3] = { 52.4, 36.6, 41, 300 }, + }, + ["lvl"] = "50-51", + }, + [80260] = { + ["coords"] = { + [1] = { 63.6, 15.8, 618, 172800 }, + }, + ["lvl"] = "53", + ["rnk"] = "4", + }, + [80265] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [80266] = { + ["coords"] = { + [1] = { 60, 61.6, 2040, 260 }, + [2] = { 66.4, 31.4, 5225, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "11", + }, + [80267] = { + ["coords"] = { + [1] = { 7.3, 22.9, 139, 260 }, + [2] = { 47.4, 84.6, 5225, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "3", + }, + [80268] = { + ["coords"] = { + [1] = { 42.7, 67.7, 2040, 260 }, + [2] = { 58.1, 34.3, 5225, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [80269] = { + ["coords"] = { + [1] = { 26.8, 55.3, 33, 54000 }, + }, + ["lvl"] = "45", + ["rnk"] = "2", + }, + [80270] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [80271] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [80272] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [80273] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [80274] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [80275] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [80276] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [80277] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [80278] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [80279] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [80280] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [80281] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [80282] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [80283] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [80284] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [80285] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [80286] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [80287] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [80288] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [80289] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [80300] = { + ["coords"] = { + [1] = { 58.6, 28, 14, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [80301] = { + ["coords"] = { + [1] = { 58.8, 27.8, 14, 300 }, + [2] = { 83.2, 56.3, 400, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [80302] = { + ["coords"] = { + [1] = { 58.7, 27.9, 14, 300 }, + [2] = { 83.2, 56.2, 400, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [80303] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [80304] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [80305] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [80306] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [80307] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [80308] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [80309] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [80310] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [80311] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [80312] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [80313] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [80314] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [80319] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [80320] = { + ["coords"] = { + [1] = { 77.8, 31.3, 616, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [80321] = { + ["coords"] = { + [1] = { 77.8, 31.2, 616, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [80400] = { + ["coords"] = { + [1] = { 67.5, 46.7, 1519, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [80401] = { + ["coords"] = { + [1] = { 65.6, 47.3, 1519, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "5", + }, + [80402] = { + ["coords"] = { + [1] = { 64.5, 44.3, 1519, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [80403] = { + ["coords"] = { + [1] = { 66.5, 46, 1519, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "11", + }, + [80404] = { + ["coords"] = { + [1] = { 66.6, 46, 1519, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "3", + }, + [80405] = { + ["coords"] = { + [1] = { 63.9, 46.1, 1519, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "36", + }, + [80450] = { + ["coords"] = { + [1] = { 61.8, 61, 1519, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [80451] = { + ["coords"] = { + [1] = { 61.8, 60.9, 1519, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [80452] = { + ["coords"] = { + [1] = { 41.4, 62.9, 2040, 260 }, + [2] = { 57.5, 32, 5225, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "10", + }, + [80453] = { + ["coords"] = { + [1] = { 41, 63.2, 2040, 260 }, + [2] = { 57.3, 32.1, 5225, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "11", + }, + [80454] = { + ["coords"] = { + [1] = { 84.4, 62.2, 38, 260 }, + [2] = { 79.8, 59, 38, 260 }, + [3] = { 41.8, 76.1, 5602, 260 }, + [4] = { 39.4, 74.5, 5602, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [80455] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [80457] = { + ["coords"] = { + [1] = { 40.7, 68.3, 2040, 300 }, + [2] = { 57.2, 34.5, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [80458] = { + ["coords"] = { + [1] = { 65.2, 45.4, 1519, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [80459] = { + ["coords"] = { + [1] = { 44.8, 46.1, 2040, 260 }, + [2] = { 59.1, 24, 5225, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "11", + }, + [80460] = { + ["coords"] = { + [1] = { 65.9, 46.1, 1519, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [80466] = { + ["coords"] = { + [1] = { 62.6, 58.9, 85, 180 }, + [2] = { 65.4, 58.1, 85, 180 }, + [3] = { 59.9, 58, 85, 180 }, + [4] = { 69.8, 57.8, 85, 180 }, + [5] = { 58.9, 57.5, 85, 180 }, + [6] = { 71.3, 57.4, 85, 180 }, + [7] = { 67.6, 56.6, 85, 180 }, + [8] = { 57.8, 56.2, 85, 180 }, + [9] = { 71.6, 55.6, 85, 180 }, + [10] = { 56.6, 55.2, 85, 180 }, + [11] = { 71, 53.8, 85, 180 }, + [12] = { 55.8, 53.4, 85, 180 }, + [13] = { 55.5, 51, 85, 180 }, + [14] = { 71, 50.5, 85, 180 }, + [15] = { 54.8, 49.3, 85, 180 }, + [16] = { 71.9, 47.9, 85, 180 }, + [17] = { 55.6, 47.7, 85, 180 }, + [18] = { 56.7, 47, 85, 180 }, + [19] = { 56.2, 47, 85, 180 }, + [20] = { 57.5, 46.3, 85, 180 }, + [21] = { 58.1, 46, 85, 180 }, + [22] = { 72.1, 45.8, 85, 180 }, + [23] = { 61.4, 44.9, 85, 180 }, + [24] = { 59.3, 44.6, 85, 180 }, + [25] = { 61.3, 43, 85, 180 }, + [26] = { 73.6, 42.4, 85, 180 }, + [27] = { 63.4, 42.4, 85, 180 }, + [28] = { 62.3, 42.3, 85, 180 }, + [29] = { 62.9, 42.3, 85, 180 }, + [30] = { 63.4, 41.5, 85, 180 }, + [31] = { 63.3, 40.9, 85, 180 }, + [32] = { 73.7, 39.3, 85, 180 }, + [33] = { 64.2, 38.1, 85, 180 }, + [34] = { 65, 36.9, 85, 180 }, + [35] = { 63.3, 36.5, 85, 180 }, + [36] = { 72.3, 35.5, 85, 180 }, + [37] = { 74.6, 34.5, 85, 180 }, + [38] = { 76.1, 32.8, 85, 180 }, + [39] = { 77, 30.3, 85, 180 }, + }, + ["lvl"] = "7-9", + }, + [80467] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [80500] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [80501] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [80502] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [80503] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [80504] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [80505] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [80506] = { + ["coords"] = { + [1] = { 25.5, 70.1, 2040, 260 }, + [2] = { 30.3, 69, 2040, 260 }, + [3] = { 27.6, 67, 2040, 260 }, + [4] = { 44.4, 63.9, 2040, 130 }, + [5] = { 63.4, 52.7, 2040, 300 }, + [6] = { 58.3, 44.8, 2040, 300 }, + [7] = { 49.9, 35.4, 5225, 260 }, + [8] = { 52.2, 34.9, 5225, 260 }, + [9] = { 50.9, 33.9, 5225, 260 }, + [10] = { 58.9, 32.5, 5225, 130 }, + [11] = { 68, 27.1, 5225, 300 }, + [12] = { 65.5, 23.4, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [80507] = { + ["coords"] = {}, + ["lvl"] = "1-2", + }, + [80508] = { + ["coords"] = {}, + ["lvl"] = "1-2", + }, + [80600] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [80601] = { + ["coords"] = { + [1] = { 68.5, 25.8, 1637, 260 }, + }, + ["lvl"] = "37", + }, + [80602] = { + ["coords"] = { + [1] = { 68.3, 26.1, 1637, 300 }, + }, + ["lvl"] = "37", + }, + [80603] = { + ["coords"] = { + [1] = { 68.8, 26.5, 1637, 260 }, + }, + ["lvl"] = "37", + }, + [80604] = { + ["coords"] = { + [1] = { 67.8, 26.6, 1637, 260 }, + }, + ["lvl"] = "37", + }, + [80605] = { + ["coords"] = { + [1] = { 69.6, 26.3, 1637, 260 }, + }, + ["lvl"] = "37", + }, + [80606] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [80607] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [80608] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [80609] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [80799] = { + ["coords"] = { + [1] = { 32.4, 39.6, 1637, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [80800] = { + ["coords"] = { + [1] = { 52.6, 42.6, 14, 260 }, + [2] = { 41.5, 8.6, 14, 260 }, + [3] = { 78.6, 79.6, 47, 260 }, + [4] = { 61.8, 67.2, 85, 260 }, + [5] = { 38.8, 28.3, 215, 260 }, + [6] = { 66, 10.1, 1497, 260 }, + [7] = { 34.1, 82.1, 1637, 260 }, + [8] = { 44.1, 56.4, 1638, 260 }, + }, + ["fac"] = "H", + ["lvl"] = "46-47", + }, + [80801] = { + ["coords"] = { + [1] = { 24.5, 13.8, 406, 260 }, + }, + ["fac"] = "H", + ["lvl"] = "62", + }, + [80802] = { + ["coords"] = { + [1] = { 25.8, 10.9, 406, 260 }, + }, + ["fac"] = "H", + ["lvl"] = "62", + }, + [80803] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [80804] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "5", + }, + [80805] = { + ["coords"] = { + [1] = { 25.6, 14.2, 406, 260 }, + [2] = { 24.5, 13.4, 406, 260 }, + [3] = { 25, 13, 406, 260 }, + [4] = { 25, 12.9, 406, 260 }, + [5] = { 24.5, 12.5, 406, 260 }, + }, + ["fac"] = "H", + ["lvl"] = "10", + }, + [80806] = { + ["coords"] = { + [1] = { 26.4, 20.7, 406, 260 }, + [2] = { 26.4, 20.5, 406, 260 }, + [3] = { 26.9, 20.4, 406, 260 }, + [4] = { 26.9, 20.3, 406, 260 }, + [5] = { 26.6, 20.1, 406, 260 }, + [6] = { 26.8, 19.9, 406, 260 }, + [7] = { 26.4, 19.8, 406, 260 }, + [8] = { 27, 19.7, 406, 260 }, + [9] = { 26, 19.1, 406, 260 }, + [10] = { 26.3, 19, 406, 260 }, + [11] = { 27.4, 18.5, 406, 260 }, + [12] = { 27.2, 18.4, 406, 260 }, + [13] = { 26.2, 18.3, 406, 260 }, + [14] = { 25.2, 18.3, 406, 260 }, + [15] = { 25.2, 18.1, 406, 260 }, + [16] = { 26.6, 17.9, 406, 260 }, + [17] = { 25.9, 17.8, 406, 260 }, + [18] = { 26.7, 17.8, 406, 260 }, + [19] = { 26.3, 17.5, 406, 260 }, + [20] = { 25.4, 17.4, 406, 260 }, + [21] = { 25.8, 17.1, 406, 260 }, + [22] = { 25.3, 16.9, 406, 260 }, + [23] = { 25.5, 16.9, 406, 260 }, + [24] = { 25.1, 16.9, 406, 260 }, + }, + ["lvl"] = "11-12", + }, + [80807] = { + ["coords"] = { + [1] = { 25, 12.2, 406, 260 }, + }, + ["fac"] = "H", + ["lvl"] = "11", + }, + [80808] = { + ["coords"] = { + [1] = { 25.2, 13.9, 406, 260 }, + }, + ["fac"] = "H", + ["lvl"] = "3", + }, + [80809] = { + ["coords"] = { + [1] = { 25.2, 13.9, 406, 260 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [80810] = { + ["coords"] = { + [1] = { 24.4, 12.8, 406, 260 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [80811] = { + ["coords"] = { + [1] = { 24.1, 13.2, 406, 260 }, + }, + ["fac"] = "H", + ["lvl"] = "11", + }, + [80812] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [80813] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [80814] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [80815] = { + ["coords"] = { + [1] = { 36.4, 18.3, 406, 2500 }, + [2] = { 24.5, 15.3, 406, 300 }, + [3] = { 25.4, 12.9, 406, 300 }, + [4] = { 23.7, 12.7, 406, 300 }, + [5] = { 22.6, 11.9, 406, 300 }, + [6] = { 23.2, 10.8, 406, 300 }, + [7] = { 26.1, 7.4, 406, 1393 }, + }, + ["lvl"] = "10-12", + }, + [80816] = { + ["coords"] = { + [1] = { 21.2, 56.8, 47, 300 }, + [2] = { 27.5, 56.3, 47, 300 }, + [3] = { 20.7, 51.8, 47, 300 }, + [4] = { 29.5, 50.7, 47, 300 }, + }, + ["lvl"] = "35-40", + }, + [80830] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [80831] = { + ["coords"] = { + [1] = { 62.4, 10.8, 17, 260 }, + }, + ["fac"] = "H", + ["lvl"] = "10", + }, + [80850] = { + ["coords"] = { + [1] = { 55.9, 6.9, 5087, 604800 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [80851] = { + ["coords"] = { + [1] = { 74, 43.4, 5087, 604800 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [80852] = { + ["coords"] = { + [1] = { 68.5, 94, 5087, 604800 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [80853] = { + ["coords"] = { + [1] = { 34.8, 38.6, 5087, 604800 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [80854] = { + ["coords"] = { + [1] = { 46.3, 43.5, 5087, 604800 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [80855] = { + ["coords"] = { + [1] = { 46.7, 54, 1, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "8", + }, + [80856] = { + ["coords"] = { + [1] = { 42.4, 72.9, 15, 260 }, + }, + ["lvl"] = "8", + }, + [80857] = { + ["coords"] = { + [1] = { 42.4, 9.4, 14, 260 }, + [2] = { 37.2, 85.2, 1637, 260 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [80860] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [80861] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [80862] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [80863] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [80864] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [80865] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [80866] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [80867] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "3", + }, + [80868] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [80869] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [80870] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [80871] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [80872] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [80873] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [80874] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [80875] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [80876] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [80877] = { + ["coords"] = { + [1] = { 59.7, 61.5, 2040, 300 }, + [2] = { 66.2, 31.3, 5225, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [80900] = { + ["coords"] = { + [1] = { 36.4, 67.6, 1519, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + }, + [80901] = { + ["coords"] = { + [1] = { 51.9, 24.4, 14, 120 }, + }, + ["lvl"] = "12", + }, + [80902] = { + ["coords"] = { + [1] = { 51.3, 16, 14, 260 }, + }, + ["lvl"] = "5", + }, + [80903] = { + ["coords"] = {}, + ["lvl"] = "16", + }, + [80912] = { + ["coords"] = { + [1] = { 24.4, 13.2, 406, 260 }, + }, + ["fac"] = "H", + ["lvl"] = "11", + }, + [80915] = { + ["coords"] = { + [1] = { 25.1, 12, 406, 180 }, + }, + ["fac"] = "H", + ["lvl"] = "11", + }, + [80917] = { + ["coords"] = { + [1] = { 62.9, 80.6, 1519, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [80918] = { + ["coords"] = { + [1] = { 50.2, 69.6, 1637, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [80920] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [80925] = { + ["coords"] = { + [1] = { 64, 76.5, 1519, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [80926] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "60", + }, + [80927] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "60", + }, + [80930] = { + ["coords"] = { + [1] = { 41.7, 73.2, 15, 180 }, + }, + ["lvl"] = "30-39", + }, + [80931] = { + ["coords"] = { + [1] = { 41.6, 72.7, 15, 260 }, + }, + ["lvl"] = "30", + }, + [80932] = { + ["coords"] = { + [1] = { 41.9, 72.4, 15, 260 }, + }, + ["lvl"] = "40", + }, + [80933] = { + ["coords"] = { + [1] = { 41.5, 73, 15, 260 }, + }, + ["lvl"] = "40", + }, + [80934] = { + ["coords"] = { + [1] = { 42.6, 73.2, 15, 260 }, + }, + ["lvl"] = "40", + }, + [80935] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [80936] = { + ["coords"] = { + [1] = { 47.1, 75.2, 41, 205941 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [80937] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [80938] = { + ["coords"] = {}, + ["lvl"] = "61", + }, + [80939] = { + ["coords"] = {}, + ["lvl"] = "61", + }, + [80940] = { + ["coords"] = { + [1] = { 23.5, 29.2, 1, 300 }, + [2] = { 67.5, 7.5, 721, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "11", + }, + [80941] = { + ["coords"] = { + [1] = { 36.5, 81.2, 405, 260 }, + }, + ["lvl"] = "11", + }, + [80942] = { + ["coords"] = { + [1] = { 73.9, 73.8, 405, 260 }, + }, + ["lvl"] = "11", + }, + [80943] = { + ["coords"] = { + [1] = { 63.5, 57.7, 440, 300 }, + [2] = { 67.2, 56.8, 1941, 300 }, + }, + ["lvl"] = "57", + }, + [80944] = { + ["coords"] = { + [1] = { 66.2, 49.2, 15, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "11", + }, + [80945] = { + ["coords"] = {}, + ["lvl"] = "11", + }, + [80946] = { + ["coords"] = { + [1] = { 39.2, 15.9, 36, 260 }, + }, + ["lvl"] = "11", + }, + [80947] = { + ["coords"] = { + [1] = { 14.2, 44.6, 47, 260 }, + [2] = { 99.6, 3.7, 267, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "11", + }, + [80948] = { + ["coords"] = { + [1] = { 38.8, 28.6, 215, 260 }, + [2] = { 44.5, 57.8, 1638, 260 }, + }, + ["fac"] = "H", + ["lvl"] = "11", + }, + [80949] = { + ["coords"] = { + [1] = { 56.3, 73.7, 14, 260 }, + }, + ["fac"] = "H", + ["lvl"] = "11", + }, + [80951] = { + ["coords"] = { + [1] = { 69.9, 43.7, 1497, 260 }, + }, + ["fac"] = "H", + ["lvl"] = "11", + }, + [80952] = { + ["coords"] = { + [1] = { 32, 62.4, 1537, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "11", + }, + [80953] = { + ["coords"] = { + [1] = { 62.5, 64.9, 130, 260 }, + [2] = { 7.5, 25.8, 267, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "11", + }, + [80954] = { + ["coords"] = { + [1] = { 77.6, 65.4, 1519, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "11", + }, + [80955] = { + ["coords"] = { + [1] = { 41.6, 67.9, 1637, 260 }, + }, + ["fac"] = "H", + ["lvl"] = "11", + }, + [80956] = { + ["coords"] = { + [1] = { 86, 80.6, 36, 260 }, + [2] = { 1.3, 57.3, 47, 260 }, + [3] = { 84.1, 19, 267, 260 }, + }, + ["lvl"] = "11", + }, + [80957] = { + ["coords"] = { + [1] = { 30.6, 90.6, 33, 260 }, + }, + ["lvl"] = "11", + }, + [80958] = { + ["coords"] = {}, + ["lvl"] = "11", + }, + [80959] = { + ["coords"] = { + [1] = { 29.4, 54.6, 141, 260 }, + [2] = { 58.6, 37.1, 1657, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "11", + }, + [80960] = { + ["coords"] = { + [1] = { 41.9, 74.2, 15, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [80961] = { + ["coords"] = { + [1] = { 58.6, 26.4, 14, 180 }, + }, + ["lvl"] = "11", + }, + [80962] = { + ["coords"] = { + [1] = { 79.1, 73.8, 16, 260 }, + }, + ["lvl"] = "11", + }, + [80963] = { + ["coords"] = { + [1] = { 61.9, 71.4, 1519, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [80964] = { + ["coords"] = { + [1] = { 47.7, 55.4, 1637, 260 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [80965] = { + ["coords"] = { + [1] = { 52.1, 73.2, 331, 300 }, + [2] = { 52.3, 72.8, 331, 300 }, + [3] = { 52.6, 72.3, 331, 300 }, + [4] = { 49.6, 72.1, 331, 120 }, + [5] = { 53.1, 71.7, 331, 300 }, + [6] = { 52.6, 71.3, 331, 300 }, + [7] = { 48.7, 71.2, 331, 120 }, + [8] = { 48.7, 71.1, 331, 120 }, + [9] = { 53, 71.1, 331, 300 }, + [10] = { 47.3, 70.7, 331, 300 }, + [11] = { 44.3, 70.5, 331, 120 }, + [12] = { 44.4, 70.3, 331, 120 }, + [13] = { 49.1, 70.2, 331, 300 }, + [14] = { 47.4, 70.2, 331, 120 }, + [15] = { 48.8, 70.1, 331, 300 }, + [16] = { 48.3, 70, 331, 120 }, + [17] = { 48.2, 70, 331, 120 }, + [18] = { 49.2, 69.8, 331, 300 }, + [19] = { 44.7, 69.7, 331, 300 }, + [20] = { 48.7, 69.5, 331, 120 }, + [21] = { 49.1, 69.3, 331, 300 }, + [22] = { 52.4, 69.3, 331, 300 }, + [23] = { 48.3, 69.2, 331, 300 }, + [24] = { 48.9, 69.1, 331, 300 }, + [25] = { 47.9, 69.1, 331, 300 }, + [26] = { 45.1, 69.1, 331, 120 }, + [27] = { 44.7, 69, 331, 300 }, + [28] = { 50.8, 68.8, 331, 120 }, + [29] = { 45.4, 68.6, 331, 300 }, + [30] = { 51.7, 68.5, 331, 120 }, + [31] = { 50.9, 68.4, 331, 120 }, + [32] = { 46.3, 68.3, 331, 120 }, + [33] = { 45.7, 68.3, 331, 120 }, + [34] = { 46.8, 68.2, 331, 120 }, + [35] = { 47.5, 68, 331, 120 }, + [36] = { 48.5, 67.9, 331, 300 }, + [37] = { 50.8, 67.8, 331, 120 }, + [38] = { 50.2, 67.8, 331, 300 }, + [39] = { 49.6, 67.7, 331, 300 }, + [40] = { 50.7, 67.6, 331, 120 }, + [41] = { 49.9, 67.6, 331, 300 }, + [42] = { 51.2, 67.6, 331, 300 }, + [43] = { 49.2, 67.6, 331, 300 }, + [44] = { 51.7, 67.5, 331, 120 }, + [45] = { 51.2, 67.2, 331, 120 }, + [46] = { 87.3, 39.5, 406, 300 }, + [47] = { 84.9, 38.4, 406, 120 }, + [48] = { 84, 37.6, 406, 120 }, + [49] = { 84, 37.5, 406, 120 }, + [50] = { 82.7, 37, 406, 300 }, + [51] = { 79.9, 36.8, 406, 120 }, + [52] = { 79.9, 36.6, 406, 120 }, + [53] = { 84.4, 36.6, 406, 300 }, + [54] = { 82.8, 36.6, 406, 120 }, + [55] = { 84.2, 36.5, 406, 300 }, + [56] = { 83.7, 36.4, 406, 120 }, + [57] = { 83.6, 36.3, 406, 120 }, + [58] = { 80.2, 36.1, 406, 300 }, + [59] = { 84.1, 35.9, 406, 120 }, + [60] = { 83.7, 35.6, 406, 300 }, + [61] = { 84.2, 35.5, 406, 300 }, + [62] = { 83.3, 35.5, 406, 300 }, + [63] = { 80.6, 35.5, 406, 120 }, + [64] = { 80.2, 35.4, 406, 300 }, + [65] = { 80.9, 35, 406, 300 }, + [66] = { 81.7, 34.7, 406, 120 }, + [67] = { 81.2, 34.7, 406, 120 }, + [68] = { 82.2, 34.7, 406, 120 }, + }, + ["lvl"] = "1", + }, + [80966] = { + ["coords"] = { + [1] = { 44.2, 50.8, 5225, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "3", + }, + [80967] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "11", + }, + [80968] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "11", + }, + [80969] = { + ["coords"] = { + [1] = { 37.6, 81.4, 440, 25 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [80970] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [80975] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [80976] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [80977] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [80978] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [80990] = { + ["coords"] = { + [1] = { 67.7, 26.6, 440, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "51", + }, + [80991] = { + ["coords"] = { + [1] = { 67.7, 26.8, 440, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "51", + }, + [80992] = { + ["coords"] = { + [1] = { 67.7, 27.4, 440, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "51", + }, + [80993] = { + ["coords"] = { + [1] = { 67.8, 26.7, 440, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "51", + }, + [80994] = { + ["coords"] = { + [1] = { 67.5, 27.5, 440, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "51", + }, + [80995] = { + ["coords"] = { + [1] = { 67.9, 26.5, 440, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "51", + }, + [80996] = { + ["coords"] = { + [1] = { 67.7, 27.3, 440, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "51", + }, + [80997] = { + ["coords"] = { + [1] = { 67.8, 26.4, 440, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "51", + }, + [81000] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "51", + }, + [81001] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "51", + }, + [81002] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "51", + }, + [81005] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [81006] = { + ["coords"] = { + [1] = { 69.4, 29.9, 440, 260 }, + [2] = { 68.9, 27.1, 440, 260 }, + [3] = { 69.1, 25, 440, 260 }, + }, + ["lvl"] = "30-45", + }, + [81008] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [81009] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [81010] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [81012] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [81013] = { + ["coords"] = { + [1] = { 24.1, 13.3, 406, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [81014] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [81015] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [81016] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [81017] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [81019] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [81020] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [81022] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [81023] = { + ["coords"] = { + [1] = { 82.6, 55.2, 400, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "40", + }, + [81024] = { + ["coords"] = { + [1] = { 58.8, 25, 14, 300 }, + }, + ["lvl"] = "37", + }, + [81025] = { + ["coords"] = { + [1] = { 83.1, 54.4, 400, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "40", + }, + [81026] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [81027] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "33", + }, + [81028] = { + ["coords"] = { + [1] = { 83.4, 55.1, 400, 397 }, + }, + ["fac"] = "AH", + ["lvl"] = "24", + }, + [81031] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [81033] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [81034] = { + ["coords"] = {}, + ["lvl"] = "30", + }, + [81035] = { + ["coords"] = { + [1] = { 61.2, 52.7, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "15", + }, + [81041] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [81042] = { + ["coords"] = { + [1] = { 31.1, 48.4, 47, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [81043] = { + ["coords"] = { + [1] = { 14, 44.5, 47, 260 }, + [2] = { 99.4, 3.6, 267, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "32", + }, + [81044] = { + ["coords"] = { + [1] = { 30.5, 47.1, 47, 260 }, + }, + ["fac"] = "A", + ["lvl"] = "44", + }, + [81046] = { + ["coords"] = { + [1] = { 56.7, 11.6, 148, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "37", + }, + [81048] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "37", + }, + [81049] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [81050] = { + ["coords"] = { + [1] = { 60.7, 53.5, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "24", + }, + [81051] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "37", + }, + [81055] = { + ["coords"] = { + [1] = { 43.6, 16.2, 357, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "33", + }, + [81056] = { + ["coords"] = { + [1] = { 43.6, 17, 357, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "40", + }, + [81057] = { + ["coords"] = { + [1] = { 43.8, 15.9, 357, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [81058] = { + ["coords"] = { + [1] = { 43.6, 17, 357, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "5", + }, + [81060] = { + ["coords"] = { + [1] = { 56.2, 82.3, 3, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "45", + }, + [81061] = { + ["coords"] = { + [1] = { 56.5, 82, 3, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "45", + }, + [81063] = { + ["coords"] = { + [1] = { 65.3, 68.2, 1519, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [81100] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [81102] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [81250] = { + ["coords"] = { + [1] = { 54.1, 55.8, 15, 260 }, + }, + ["lvl"] = "35-43", + }, + [81252] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [81258] = { + ["coords"] = { + [1] = { 42, 72.8, 15, 260 }, + }, + ["lvl"] = "35-43", + }, + [81259] = { + ["coords"] = { + [1] = { 42.6, 73.4, 15, 260 }, + }, + ["lvl"] = "35-43", + }, + [81260] = { + ["coords"] = { + [1] = { 42.6, 73.5, 15, 260 }, + }, + ["lvl"] = "35-43", + }, + [81261] = { + ["coords"] = { + [1] = { 43.6, 16, 357, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [81264] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [81265] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "2", + }, + [81266] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [81267] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "37", + }, + [83100] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [83101] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [83102] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [83103] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [83104] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [83105] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [83106] = { + ["coords"] = { + [1] = { 39.4, 57.6, 5581, 120 }, + [2] = { 40.3, 53, 5581, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [83107] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [83108] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [83109] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [83110] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [89000] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [89001] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [89002] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [89003] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [89004] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [89005] = { + ["coords"] = { + [1] = { 29.6, 61.1, 876, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [89006] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [89020] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [89021] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [90150] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "42", + ["rnk"] = "1", + }, + [90974] = { + ["coords"] = { + [1] = { 50.6, 14.3, 11, 60 }, + }, + ["fac"] = "AH", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [90975] = { + ["coords"] = { + [1] = { 40.6, 52.9, 5581, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [90976] = { + ["coords"] = { + [1] = { 40.5, 52.8, 5581, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "1-2", + }, + [90977] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [90978] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [90979] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [90980] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [90981] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [90985] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [90986] = { + ["coords"] = { + [1] = { 86, 57.9, 85, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [90987] = { + ["coords"] = { + [1] = { 56.3, 8.9, 409, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "45", + }, + [90989] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [90990] = { + ["coords"] = { + [1] = { 65.9, 56.8, 876, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [91000] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [91001] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "37", + }, + [91002] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [91003] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [91190] = { + ["coords"] = { + [1] = { 34.3, 10.2, 45, 461 }, + [2] = { 13.7, 71.9, 47, 461 }, + }, + ["fac"] = "A", + ["lvl"] = "42", + }, + [91191] = { + ["coords"] = { + [1] = { 58.5, 49.5, 1519, 469 }, + }, + ["lvl"] = "20-30", + }, + [91193] = { + ["coords"] = { + [1] = { 63.7, 26.2, 14, 300 }, + [2] = { 64.3, 26, 14, 300 }, + [3] = { 62.5, 25.8, 14, 300 }, + [4] = { 63.1, 25.6, 14, 300 }, + [5] = { 63.5, 24.8, 14, 300 }, + [6] = { 62.2, 24.8, 14, 300 }, + [7] = { 62.8, 24.5, 14, 300 }, + [8] = { 64, 23.9, 14, 300 }, + [9] = { 62.6, 23.6, 14, 180 }, + [10] = { 63.3, 23.5, 14, 300 }, + [11] = { 63, 23.1, 14, 300 }, + }, + ["lvl"] = "7-8", + }, + [91194] = { + ["coords"] = { + [1] = { 63.4, 28.9, 14, 300 }, + [2] = { 63.7, 27.3, 14, 300 }, + [3] = { 63, 27.2, 14, 300 }, + [4] = { 64.1, 26.8, 14, 300 }, + [5] = { 62.6, 25.1, 14, 300 }, + [6] = { 61.5, 24.2, 14, 300 }, + [7] = { 64.7, 24, 14, 300 }, + [8] = { 63.8, 22.8, 14, 300 }, + [9] = { 62.7, 22.7, 14, 300 }, + [10] = { 64.7, 22.1, 14, 300 }, + [11] = { 63.8, 22.1, 14, 300 }, + [12] = { 62.4, 21.9, 14, 300 }, + }, + ["lvl"] = "8-9", + }, + [91195] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [91200] = { + ["coords"] = { + [1] = { 58.3, 25.7, 14, 300 }, + }, + ["lvl"] = "36", + }, + [91201] = { + ["coords"] = { + [1] = { 57.4, 26.8, 14, 300 }, + }, + ["lvl"] = "5", + }, + [91202] = { + ["coords"] = { + [1] = { 58.4, 27.5, 14, 300 }, + }, + ["lvl"] = "23", + }, + [91203] = { + ["coords"] = { + [1] = { 58, 26.6, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [91204] = { + ["coords"] = { + [1] = { 58.6, 25.1, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [91205] = { + ["coords"] = { + [1] = { 58.5, 24.6, 14, 300 }, + }, + ["lvl"] = "25", + }, + [91206] = { + ["coords"] = { + [1] = { 60.6, 26.6, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [91207] = { + ["coords"] = { + [1] = { 57.7, 26.2, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [91208] = { + ["coords"] = { + [1] = { 59.5, 24.6, 14, 300 }, + }, + ["lvl"] = "5", + }, + [91209] = { + ["coords"] = { + [1] = { 58.9, 24.5, 14, 300 }, + }, + ["lvl"] = "5", + }, + [91210] = { + ["coords"] = { + [1] = { 59.4, 25.2, 14, 300 }, + }, + ["lvl"] = "5", + }, + [91211] = { + ["coords"] = { + [1] = { 59.3, 25, 14, 300 }, + }, + ["lvl"] = "5", + }, + [91212] = { + ["coords"] = { + [1] = { 58.9, 24.7, 14, 300 }, + }, + ["lvl"] = "5", + }, + [91213] = { + ["coords"] = { + [1] = { 59.9, 25.5, 14, 300 }, + }, + ["lvl"] = "5", + }, + [91214] = { + ["coords"] = { + [1] = { 57.4, 25.8, 14, 300 }, + }, + ["lvl"] = "5", + }, + [91215] = { + ["coords"] = { + [1] = { 58.9, 25.7, 14, 300 }, + }, + ["lvl"] = "36", + }, + [91216] = { + ["coords"] = { + [1] = { 57.7, 27.6, 14, 300 }, + }, + ["lvl"] = "12", + }, + [91217] = { + ["coords"] = { + [1] = { 57.3, 27.4, 14, 300 }, + }, + ["lvl"] = "16", + }, + [91218] = { + ["coords"] = { + [1] = { 57.4, 27.5, 14, 300 }, + }, + ["lvl"] = "12", + }, + [91219] = { + ["coords"] = { + [1] = { 57.5, 26.7, 14, 300 }, + }, + ["lvl"] = "12-14", + }, + [91220] = { + ["coords"] = { + [1] = { 58.2, 25.9, 14, 300 }, + }, + ["lvl"] = "12-14", + }, + [91221] = { + ["coords"] = { + [1] = { 58.6, 24.8, 14, 300 }, + }, + ["lvl"] = "10-12", + }, + [91222] = { + ["coords"] = { + [1] = { 59.7, 24.5, 14, 300 }, + }, + ["lvl"] = "16", + }, + [91223] = { + ["coords"] = { + [1] = { 59.4, 24.4, 14, 300 }, + }, + ["lvl"] = "12", + }, + [91224] = { + ["coords"] = { + [1] = { 57.2, 27.1, 14, 300 }, + }, + ["lvl"] = "12-14", + }, + [91225] = { + ["coords"] = { + [1] = { 58.2, 25.6, 14, 300 }, + }, + ["lvl"] = "16-18", + }, + [91226] = { + ["coords"] = {}, + ["lvl"] = "16-18", + }, + [91227] = { + ["coords"] = { + [1] = { 59.1, 24.6, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "13-14", + }, + [91228] = { + ["coords"] = {}, + ["lvl"] = "13-14", + }, + [91229] = { + ["coords"] = { + [1] = { 60.5, 26.4, 14, 300 }, + }, + ["lvl"] = "13-14", + }, + [91230] = { + ["coords"] = { + [1] = { 59.8, 24.5, 14, 300 }, + }, + ["lvl"] = "13-14", + }, + [91231] = { + ["coords"] = { + [1] = { 59.8, 24.4, 14, 300 }, + }, + ["lvl"] = "13-14", + }, + [91232] = { + ["coords"] = { + [1] = { 58.5, 27.4, 14, 300 }, + }, + ["lvl"] = "13-14", + }, + [91233] = { + ["coords"] = { + [1] = { 57.4, 25.6, 14, 300 }, + }, + ["lvl"] = "13-14", + }, + [91234] = { + ["coords"] = { + [1] = { 57.4, 25.7, 14, 300 }, + }, + ["lvl"] = "13-14", + }, + [91235] = { + ["coords"] = { + [1] = { 57.3, 25.8, 14, 300 }, + }, + ["lvl"] = "13-14", + }, + [91236] = { + ["coords"] = { + [1] = { 58, 28.2, 14, 300 }, + [2] = { 57.9, 28.2, 14, 300 }, + [3] = { 58, 28.1, 14, 300 }, + [4] = { 57.9, 26.7, 14, 300 }, + [5] = { 59.6, 26.6, 14, 300 }, + [6] = { 59.5, 26.5, 14, 300 }, + [7] = { 59.5, 26.1, 14, 300 }, + [8] = { 58.4, 26.1, 14, 300 }, + [9] = { 57.9, 24.8, 14, 300 }, + [10] = { 58.2, 24.6, 14, 300 }, + }, + ["lvl"] = "55", + }, + [91237] = { + ["coords"] = { + [1] = { 58.5, 25.7, 14, 300 }, + }, + ["lvl"] = "52", + }, + [91238] = { + ["coords"] = { + [1] = { 58.7, 25.2, 14, 300 }, + }, + ["lvl"] = "16", + }, + [91239] = { + ["coords"] = { + [1] = { 57.9, 25.6, 14, 300 }, + }, + ["lvl"] = "7-8", + }, + [91240] = { + ["coords"] = { + [1] = { 58.8, 25.3, 14, 300 }, + }, + ["lvl"] = "10-12", + }, + [91241] = { + ["coords"] = { + [1] = { 58.9, 25.1, 14, 300 }, + }, + ["lvl"] = "10-12", + }, + [91242] = { + ["coords"] = { + [1] = { 59.1, 25.1, 14, 300 }, + }, + ["lvl"] = "10-12", + }, + [91243] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "26", + ["rnk"] = "1", + }, + [91244] = { + ["coords"] = { + [1] = { 58.9, 25.1, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "3-5", + }, + [91245] = { + ["coords"] = { + [1] = { 59.1, 25.2, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "5-6", + }, + [91246] = { + ["coords"] = { + [1] = { 58.9, 26.3, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "13", + }, + [91247] = { + ["coords"] = { + [1] = { 59, 25.6, 14, 300 }, + }, + ["lvl"] = "8-9", + }, + [91248] = { + ["coords"] = { + [1] = { 58.4, 25.1, 14, 300 }, + }, + ["lvl"] = "10", + }, + [91249] = { + ["coords"] = { + [1] = { 58, 29, 14, 300 }, + }, + ["lvl"] = "13-14", + }, + [91250] = { + ["coords"] = { + [1] = { 61, 26.6, 14, 180 }, + }, + ["lvl"] = "55", + }, + [91251] = { + ["coords"] = { + [1] = { 58.1, 26.7, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [91252] = { + ["coords"] = { + [1] = { 59, 25.2, 14, 300 }, + }, + ["lvl"] = "13-14", + }, + [91253] = { + ["coords"] = { + [1] = { 57.4, 28, 14, 300 }, + }, + ["lvl"] = "7-8", + }, + [91254] = { + ["coords"] = { + [1] = { 22.4, 51.9, 16, 300 }, + }, + ["lvl"] = "35-38", + }, + [91255] = { + ["coords"] = { + [1] = { 21.2, 61.4, 16, 300 }, + }, + ["lvl"] = "7-8", + }, + [91256] = { + ["coords"] = { + [1] = { 58.7, 27.3, 14, 300 }, + }, + ["lvl"] = "7-8", + }, + [91257] = { + ["coords"] = { + [1] = { 57, 26.2, 14, 300 }, + }, + ["lvl"] = "5-10", + }, + [91258] = { + ["coords"] = { + [1] = { 56.9, 26.8, 14, 300 }, + }, + ["lvl"] = "5-10", + }, + [91259] = { + ["coords"] = { + [1] = { 59.1, 26, 14, 300 }, + }, + ["lvl"] = "10-13", + }, + [91260] = { + ["coords"] = { + [1] = { 58.7, 24.7, 14, 300 }, + }, + ["lvl"] = "10", + }, + [91261] = { + ["coords"] = { + [1] = { 57, 27.1, 14, 300 }, + }, + ["lvl"] = "5-10", + }, + [91262] = { + ["coords"] = { + [1] = { 57, 25.9, 14, 300 }, + }, + ["lvl"] = "5-10", + }, + [91263] = { + ["coords"] = { + [1] = { 56.9, 26.9, 14, 300 }, + }, + ["lvl"] = "5-10", + }, + [91264] = { + ["coords"] = { + [1] = { 57.2, 29.3, 14, 300 }, + }, + ["lvl"] = "5-10", + }, + [91265] = { + ["coords"] = { + [1] = { 56.3, 28.9, 14, 300 }, + }, + ["lvl"] = "5-10", + }, + [91266] = { + ["coords"] = { + [1] = { 57, 29.2, 14, 300 }, + }, + ["lvl"] = "10-13", + }, + [91267] = { + ["coords"] = { + [1] = { 56.7, 28.4, 14, 300 }, + }, + ["lvl"] = "11-12", + }, + [91268] = { + ["coords"] = { + [1] = { 56.3, 26.3, 14, 300 }, + }, + ["lvl"] = "5-12", + }, + [91269] = { + ["coords"] = { + [1] = { 56, 26.8, 14, 300 }, + }, + ["lvl"] = "5-12", + }, + [91270] = { + ["coords"] = { + [1] = { 55.7, 26.9, 14, 300 }, + }, + ["lvl"] = "5-12", + }, + [91271] = { + ["coords"] = { + [1] = { 55.3, 26.5, 14, 300 }, + }, + ["lvl"] = "5-12", + }, + [91272] = { + ["coords"] = { + [1] = { 56, 25.4, 14, 300 }, + }, + ["lvl"] = "8-12", + }, + [91273] = { + ["coords"] = { + [1] = { 56.1, 27.3, 14, 300 }, + }, + ["lvl"] = "8-12", + }, + [91274] = { + ["coords"] = { + [1] = { 56.2, 27.1, 14, 300 }, + }, + ["lvl"] = "8-12", + }, + [91275] = { + ["coords"] = { + [1] = { 57.5, 25.9, 14, 300 }, + }, + ["lvl"] = "8-12", + }, + [91276] = { + ["coords"] = {}, + ["lvl"] = "8-12", + }, + [91277] = { + ["coords"] = { + [1] = { 55.3, 26.7, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "8-12", + }, + [91278] = { + ["coords"] = { + [1] = { 58.4, 27.5, 14, 300 }, + }, + ["lvl"] = "45", + }, + [91279] = { + ["coords"] = { + [1] = { 56.9, 29.5, 14, 300 }, + }, + ["lvl"] = "8-12", + }, + [91280] = { + ["coords"] = { + [1] = { 28.2, 76.8, 33, 300 }, + }, + ["lvl"] = "10-14", + }, + [91281] = { + ["coords"] = { + [1] = { 28.2, 76.7, 33, 300 }, + }, + ["lvl"] = "10-14", + }, + [91282] = { + ["coords"] = { + [1] = { 28.2, 76.7, 33, 300 }, + }, + ["lvl"] = "10-14", + }, + [91283] = { + ["coords"] = { + [1] = { 40.7, 81.5, 16, 300 }, + }, + ["lvl"] = "54", + ["rnk"] = "1", + }, + [91284] = { + ["coords"] = { + [1] = { 32.7, 56.4, 33, 300 }, + }, + ["lvl"] = "45", + }, + [91285] = { + ["coords"] = { + [1] = { 56.1, 59.2, 331, 300 }, + }, + ["lvl"] = "25", + }, + [91286] = { + ["coords"] = { + [1] = { 56.4, 29.3, 14, 300 }, + }, + ["lvl"] = "10-12", + }, + [91287] = { + ["coords"] = { + [1] = { 26.4, 21.9, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25-29", + }, + [91288] = { + ["coords"] = { + [1] = { 26.7, 22, 331, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25-29", + }, + [91289] = { + ["coords"] = { + [1] = { 48.9, 29, 45, 510 }, + }, + ["lvl"] = "42-44", + }, + [91290] = { + ["coords"] = { + [1] = { 51.3, 25, 45, 300 }, + [2] = { 29.5, 85.7, 47, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [91291] = { + ["coords"] = { + [1] = { 63.8, 73.3, 11, 300 }, + [2] = { 17.8, 35.3, 5602, 300 }, + }, + ["lvl"] = "23-24", + }, + [91292] = { + ["coords"] = { + [1] = { 58.4, 86.8, 36, 300 }, + [2] = { 59.9, 24.4, 267, 300 }, + }, + ["lvl"] = "20-25", + }, + [91293] = { + ["coords"] = { + [1] = { 28.7, 88.2, 36, 520 }, + [2] = { 33.9, 25.6, 267, 520 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [91294] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [91295] = { + ["coords"] = {}, + ["lvl"] = "20-25", + }, + [91296] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [91297] = { + ["coords"] = { + [1] = { 61.5, 19, 17, 15 }, + }, + ["lvl"] = "14-15", + }, + [91298] = { + ["coords"] = { + [1] = { 61.8, 3.9, 17, 300 }, + }, + ["lvl"] = "18", + }, + [91299] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "1-3", + }, + [91300] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [91301] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [91302] = { + ["coords"] = { + [1] = { 65.5, 55.4, 406, 300 }, + }, + ["lvl"] = "21-22", + }, + [91303] = { + ["coords"] = { + [1] = { 32.4, 78.8, 440, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "54", + ["rnk"] = "1", + }, + [91320] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [91350] = { + ["coords"] = { + [1] = { 37.5, 65.6, 16, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [91351] = { + ["coords"] = { + [1] = { 12.2, 56.1, 85, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "21", + }, + [91352] = { + ["coords"] = { + [1] = { 13.5, 56.2, 85, 300 }, + [2] = { 13.1, 56.2, 85, 300 }, + [3] = { 12.5, 56, 85, 300 }, + [4] = { 13.9, 55.7, 85, 300 }, + [5] = { 11.9, 55.6, 85, 300 }, + [6] = { 12, 55.5, 85, 300 }, + [7] = { 12.2, 55.4, 85, 300 }, + [8] = { 12.2, 55.2, 85, 300 }, + [9] = { 13.1, 55, 85, 300 }, + [10] = { 12.4, 53.5, 85, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "18-20", + ["rnk"] = "1", + }, + [91353] = { + ["coords"] = { + [1] = { 13.3, 56, 85, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "18-20", + ["rnk"] = "1", + }, + [91354] = { + ["coords"] = { + [1] = { 78.7, 47.7, 1519, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [91400] = { + ["coords"] = { + [1] = { 47.1, 23.6, 45, 300 }, + [2] = { 25.6, 84.4, 47, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40-50", + }, + [91401] = { + ["coords"] = { + [1] = { 47.1, 26.8, 45, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40-50", + }, + [91402] = { + ["coords"] = { + [1] = { 48.4, 25.7, 45, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40-50", + }, + [91403] = { + ["coords"] = { + [1] = { 48.1, 26.4, 45, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40-50", + }, + [91404] = { + ["coords"] = { + [1] = { 47.4, 25.6, 45, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40-50", + }, + [91405] = { + ["coords"] = { + [1] = { 48, 26.8, 45, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40-50", + }, + [91406] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "55", + }, + [91407] = { + ["coords"] = { + [1] = { 50.4, 25.1, 45, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [91408] = { + ["coords"] = { + [1] = { 46.3, 24.5, 45, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [91409] = { + ["coords"] = { + [1] = { 47.8, 25.6, 45, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [91410] = { + ["coords"] = { + [1] = { 46.6, 24.6, 45, 416 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [91411] = { + ["coords"] = { + [1] = { 49.4, 29, 45, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40-50", + }, + [91412] = { + ["coords"] = { + [1] = { 51.4, 25.5, 45, 300 }, + [2] = { 29.7, 86.2, 47, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40-50", + }, + [91413] = { + ["coords"] = { + [1] = { 51.2, 24.7, 45, 300 }, + [2] = { 29.5, 85.5, 47, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40-50", + }, + [91414] = { + ["coords"] = { + [1] = { 51.6, 25, 45, 300 }, + [2] = { 29.8, 85.7, 47, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "48", + }, + [91415] = { + ["coords"] = { + [1] = { 47.6, 25, 45, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40-50", + }, + [91710] = { + ["coords"] = { + [1] = { 34.7, 9.3, 45, 300 }, + [2] = { 14.1, 71, 47, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [91711] = { + ["coords"] = { + [1] = { 42, 10.2, 130, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [91712] = { + ["coords"] = { + [1] = { 20.9, 68.9, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [91713] = { + ["coords"] = { + [1] = { 27.7, 76.7, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [91714] = { + ["coords"] = { + [1] = { 17.2, 49.1, 85, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "17", + }, + [91715] = { + ["coords"] = { + [1] = { 23.1, 78.3, 85, 300 }, + }, + ["lvl"] = "18", + }, + [91716] = { + ["coords"] = { + [1] = { 7.9, 64.6, 85, 300 }, + }, + ["lvl"] = "20", + }, + [91717] = { + ["coords"] = { + [1] = { 10, 63, 85, 300 }, + }, + ["lvl"] = "18", + }, + [91718] = { + ["coords"] = { + [1] = { 23.1, 49.9, 85, 305 }, + }, + ["lvl"] = "19", + }, + [91719] = { + ["coords"] = { + [1] = { 23.6, 58.4, 85, 552 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + ["rnk"] = "1", + }, + [91720] = { + ["coords"] = { + [1] = { 4.8, 61.6, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "41", + }, + [91721] = { + ["coords"] = { + [1] = { 12, 53.2, 85, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "19", + ["rnk"] = "1", + }, + [91722] = { + ["coords"] = { + [1] = { 89.8, 33.7, 16, 300 }, + }, + ["lvl"] = "58", + }, + [91723] = { + ["coords"] = { + [1] = { 51, 26.7, 45, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "38", + }, + [91724] = { + ["coords"] = { + [1] = { 48.4, 23.5, 45, 300 }, + [2] = { 26.9, 84.3, 47, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [91725] = { + ["coords"] = { + [1] = { 22, 69.2, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "15", + }, + [91726] = { + ["coords"] = { + [1] = { 20.8, 68.7, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "32", + }, + [91727] = { + ["coords"] = { + [1] = { 21.7, 67.6, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "30", + }, + [91728] = { + ["coords"] = { + [1] = { 22, 68.4, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "14", + }, + [91729] = { + ["coords"] = { + [1] = { 21.7, 69, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "24", + }, + [91730] = { + ["coords"] = { + [1] = { 21.5, 68.1, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [91731] = { + ["coords"] = { + [1] = { 22.3, 69.2, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [91732] = { + ["coords"] = { + [1] = { 27.4, 80.2, 85, 300 }, + [2] = { 39.3, 8.8, 130, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [91733] = { + ["coords"] = { + [1] = { 27.6, 77, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [91734] = { + ["coords"] = { + [1] = { 41.8, 10.9, 130, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [91735] = { + ["coords"] = { + [1] = { 10.8, 67.7, 85, 300 }, + [2] = { 10.3, 67.2, 85, 300 }, + [3] = { 11, 67, 85, 300 }, + [4] = { 10.6, 65.5, 85, 300 }, + [5] = { 11.2, 65.3, 85, 300 }, + [6] = { 13.3, 64.7, 85, 300 }, + [7] = { 10.5, 64.5, 85, 300 }, + [8] = { 13.2, 64.4, 85, 300 }, + [9] = { 9.7, 64.1, 85, 300 }, + [10] = { 14, 63.8, 85, 300 }, + [11] = { 11.4, 63.6, 85, 300 }, + [12] = { 10.8, 63.5, 85, 300 }, + [13] = { 12.6, 63, 85, 300 }, + [14] = { 9.6, 62.4, 85, 300 }, + [15] = { 11.2, 62.3, 85, 300 }, + [16] = { 9.8, 61.9, 85, 300 }, + [17] = { 12.4, 61.8, 85, 300 }, + [18] = { 11.5, 61.5, 85, 300 }, + [19] = { 10.1, 60.8, 85, 300 }, + [20] = { 11.6, 60.8, 85, 300 }, + [21] = { 10.6, 60.6, 85, 300 }, + [22] = { 13.5, 60.4, 85, 300 }, + }, + ["lvl"] = "15-16", + }, + [91736] = { + ["coords"] = { + [1] = { 10.3, 67.2, 85, 300 }, + [2] = { 9.4, 66.5, 85, 300 }, + [3] = { 9.2, 65.7, 85, 300 }, + [4] = { 8.7, 65.3, 85, 300 }, + [5] = { 9.9, 65.2, 85, 300 }, + [6] = { 8.5, 64.7, 85, 300 }, + [7] = { 7.6, 63.8, 85, 180 }, + [8] = { 9.1, 63.7, 85, 300 }, + [9] = { 9.5, 63.2, 85, 300 }, + [10] = { 9.5, 63.1, 85, 300 }, + }, + ["lvl"] = "16-18", + }, + [91737] = { + ["coords"] = { + [1] = { 9.4, 66.2, 85, 300 }, + [2] = { 9.9, 66, 85, 300 }, + [3] = { 8, 65, 85, 300 }, + [4] = { 8.4, 64.6, 85, 300 }, + [5] = { 8, 64.3, 85, 300 }, + [6] = { 8.3, 64.3, 85, 300 }, + [7] = { 8.3, 63, 85, 300 }, + }, + ["lvl"] = "17-19", + }, + [91738] = { + ["coords"] = { + [1] = { 10.2, 67.1, 85, 300 }, + [2] = { 8.3, 66.2, 85, 300 }, + [3] = { 9.4, 64.9, 85, 180 }, + [4] = { 12.5, 64.7, 85, 180 }, + [5] = { 11.2, 64.5, 85, 180 }, + [6] = { 10.5, 64.3, 85, 300 }, + [7] = { 10.6, 63.7, 85, 300 }, + [8] = { 10.2, 63.5, 85, 300 }, + [9] = { 10.8, 62.6, 85, 300 }, + }, + ["lvl"] = "16-18", + }, + [91739] = { + ["coords"] = { + [1] = { 22.9, 76.1, 85, 300 }, + [2] = { 23.1, 75.1, 85, 300 }, + [3] = { 22.7, 75, 85, 300 }, + [4] = { 22.1, 74.7, 85, 300 }, + }, + ["lvl"] = "14-16", + }, + [91740] = { + ["coords"] = { + [1] = { 27.4, 77.5, 85, 300 }, + [2] = { 27.3, 77.4, 85, 300 }, + [3] = { 25.3, 77.1, 85, 300 }, + [4] = { 26.3, 77, 85, 300 }, + [5] = { 25.8, 76.9, 85, 300 }, + [6] = { 25.7, 76, 85, 300 }, + [7] = { 26.6, 75.8, 85, 300 }, + [8] = { 25.2, 75.6, 85, 300 }, + [9] = { 26.5, 75.4, 85, 300 }, + [10] = { 26.6, 75.3, 85, 300 }, + [11] = { 27.1, 75.1, 85, 300 }, + [12] = { 26.3, 74.6, 85, 300 }, + }, + ["lvl"] = "14-15", + }, + [91741] = { + ["coords"] = { + [1] = { 24.7, 77.5, 85, 180 }, + [2] = { 24.7, 76.6, 85, 300 }, + [3] = { 25.8, 76, 85, 300 }, + [4] = { 26.4, 76, 85, 300 }, + [5] = { 26.7, 75.5, 85, 300 }, + [6] = { 26.2, 75.4, 85, 300 }, + [7] = { 27.7, 74.6, 85, 300 }, + [8] = { 26.8, 73.8, 85, 300 }, + }, + ["lvl"] = "14", + }, + [91742] = { + ["coords"] = { + [1] = { 42, 10.5, 130, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [91743] = { + ["coords"] = { + [1] = { 41.7, 10.2, 130, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "10", + }, + [91744] = { + ["coords"] = { + [1] = { 20.8, 68.9, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "40", + }, + [91745] = { + ["coords"] = { + [1] = { 41.7, 10.1, 130, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "15", + }, + [91746] = { + ["coords"] = { + [1] = { 41.8, 10.2, 130, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "15", + }, + [91747] = { + ["coords"] = { + [1] = { 42.2, 10.2, 130, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "8", + }, + [91748] = { + ["coords"] = { + [1] = { 4.5, 62.3, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [91749] = { + ["coords"] = { + [1] = { 4.5, 61.8, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "34", + }, + [91750] = { + ["coords"] = { + [1] = { 4.2, 61.2, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "20", + }, + [91751] = { + ["coords"] = { + [1] = { 4.9, 62.5, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [91752] = { + ["coords"] = { + [1] = { 4.9, 60.2, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [91753] = { + ["coords"] = { + [1] = { 4.7, 62.1, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [91754] = { + ["coords"] = { + [1] = { 4.5, 62, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "35", + }, + [91755] = { + ["coords"] = { + [1] = { 3.5, 60.6, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "15", + }, + [91756] = { + ["coords"] = { + [1] = { 12.5, 69.5, 85, 300 }, + [2] = { 13.4, 69.5, 85, 300 }, + [3] = { 15.6, 68.6, 85, 300 }, + [4] = { 15.5, 68.4, 85, 300 }, + [5] = { 15.3, 68.4, 85, 300 }, + [6] = { 14.2, 68.3, 85, 300 }, + [7] = { 16.1, 68.1, 85, 300 }, + [8] = { 13.7, 68.1, 85, 300 }, + [9] = { 15.5, 67.2, 85, 300 }, + [10] = { 13.4, 67.1, 85, 300 }, + [11] = { 14.4, 66.8, 85, 300 }, + [12] = { 12.8, 66.6, 85, 300 }, + [13] = { 15.8, 66, 85, 300 }, + [14] = { 13.7, 65.8, 85, 300 }, + [15] = { 13.1, 65.8, 85, 300 }, + [16] = { 12.8, 64.7, 85, 300 }, + }, + ["lvl"] = "15-17", + }, + [91757] = { + ["coords"] = { + [1] = { 15.3, 70.6, 85, 300 }, + [2] = { 13.5, 70.4, 85, 300 }, + [3] = { 13.7, 70, 85, 300 }, + [4] = { 15.7, 69.4, 85, 300 }, + [5] = { 16.4, 69.4, 85, 300 }, + [6] = { 14.9, 69.1, 85, 540 }, + [7] = { 14, 68.9, 85, 300 }, + [8] = { 12.3, 68.9, 85, 300 }, + [9] = { 12.9, 67.9, 85, 300 }, + [10] = { 14, 66.7, 85, 300 }, + [11] = { 13.4, 66.4, 85, 300 }, + [12] = { 14.7, 66.1, 85, 300 }, + [13] = { 14.4, 65.3, 85, 300 }, + }, + ["lvl"] = "16-18", + }, + [91758] = { + ["coords"] = { + [1] = { 12.1, 67.7, 85, 300 }, + [2] = { 12.1, 67.5, 85, 300 }, + }, + ["lvl"] = "18", + }, + [91759] = { + ["coords"] = { + [1] = { 12.1, 67.6, 85, 300 }, + }, + ["lvl"] = "20", + }, + [91760] = { + ["coords"] = { + [1] = { 23.2, 78.4, 85, 300 }, + [2] = { 23, 78.3, 85, 300 }, + [3] = { 23.4, 77.4, 85, 300 }, + [4] = { 23.5, 76.9, 85, 300 }, + [5] = { 23.1, 76.8, 85, 300 }, + [6] = { 21.9, 75.8, 85, 300 }, + [7] = { 21.7, 74.4, 85, 300 }, + [8] = { 23.1, 73.7, 85, 300 }, + [9] = { 22.1, 73.7, 85, 300 }, + }, + ["lvl"] = "16", + }, + [91761] = { + ["coords"] = { + [1] = { 24.9, 59.8, 85, 300 }, + [2] = { 23.9, 56.1, 85, 300 }, + [3] = { 26.2, 52.7, 85, 300 }, + [4] = { 22.7, 52.3, 85, 300 }, + [5] = { 25.4, 52.1, 85, 300 }, + [6] = { 24.6, 51.6, 85, 300 }, + [7] = { 22.4, 51.1, 85, 300 }, + [8] = { 23.4, 50.7, 85, 300 }, + [9] = { 19.9, 45.5, 85, 300 }, + [10] = { 20.1, 45.2, 85, 300 }, + [11] = { 19.9, 44.8, 85, 300 }, + }, + ["lvl"] = "15-17", + }, + [91762] = { + ["coords"] = { + [1] = { 24, 56.8, 85, 300 }, + [2] = { 25.4, 56.8, 85, 300 }, + [3] = { 24.7, 56.4, 85, 300 }, + [4] = { 24.2, 56.3, 85, 300 }, + [5] = { 26.2, 55.3, 85, 300 }, + [6] = { 25.8, 54.5, 85, 300 }, + [7] = { 26.1, 54.4, 85, 300 }, + [8] = { 26.5, 53.5, 85, 300 }, + [9] = { 26.9, 52.4, 85, 300 }, + [10] = { 26.7, 52.1, 85, 300 }, + [11] = { 25.5, 50.5, 85, 300 }, + }, + ["lvl"] = "16-18", + }, + [91763] = { + ["coords"] = { + [1] = { 24.8, 60.6, 85, 300 }, + [2] = { 23.9, 60.1, 85, 300 }, + [3] = { 23.8, 59.2, 85, 300 }, + [4] = { 25.3, 57.8, 85, 300 }, + }, + ["lvl"] = "17-19", + }, + [91765] = { + ["coords"] = { + [1] = { 34.9, 10.2, 45, 300 }, + [2] = { 14.2, 71.8, 47, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [91766] = { + ["coords"] = { + [1] = { 41.5, 29.8, 3, 300 }, + [2] = { 19.3, 97.1, 5602, 300 }, + }, + ["lvl"] = "40", + }, + [91767] = { + ["coords"] = { + [1] = { 53.6, 43.2, 3, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [91768] = { + ["coords"] = { + [1] = { 45.3, 90.9, 16, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "57", + }, + [91769] = { + ["coords"] = { + [1] = { 45.1, 91.4, 16, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "57", + }, + [91770] = { + ["coords"] = { + [1] = { 45.3, 90.6, 16, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "57", + }, + [91771] = { + ["coords"] = { + [1] = { 54.6, 20.2, 17, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "12", + }, + [91772] = { + ["coords"] = { + [1] = { 15.6, 63, 85, 300 }, + [2] = { 15.4, 62.9, 85, 300 }, + [3] = { 17, 62.3, 85, 300 }, + [4] = { 15.6, 60.4, 85, 300 }, + [5] = { 15.5, 59.6, 85, 300 }, + [6] = { 15, 59.6, 85, 300 }, + [7] = { 16, 59.2, 85, 300 }, + [8] = { 15.6, 59, 85, 300 }, + [9] = { 16.3, 59, 85, 300 }, + [10] = { 15.6, 58.4, 85, 300 }, + [11] = { 13.4, 58.2, 85, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "15-17", + }, + [91773] = { + ["coords"] = { + [1] = { 18.5, 67.6, 85, 300 }, + [2] = { 19.2, 67, 85, 300 }, + [3] = { 17.8, 66.2, 85, 300 }, + [4] = { 20, 66.2, 85, 300 }, + [5] = { 21.4, 65.8, 85, 300 }, + [6] = { 17.8, 65.3, 85, 180 }, + [7] = { 20.9, 65.1, 85, 180 }, + [8] = { 19.3, 64.7, 85, 180 }, + [9] = { 18.8, 64.3, 85, 300 }, + [10] = { 20.6, 63.7, 85, 300 }, + [11] = { 21.5, 61.7, 85, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "15-17", + }, + [91774] = { + ["coords"] = { + [1] = { 77.9, 91.5, 16, 499 }, + }, + ["lvl"] = "55", + }, + [91775] = { + ["coords"] = { + [1] = { 64.8, 95, 16, 300 }, + }, + ["lvl"] = "50", + }, + [91776] = { + ["coords"] = { + [1] = { 62.2, 93.5, 16, 300 }, + }, + ["lvl"] = "55", + ["rnk"] = "1", + }, + [91777] = { + ["coords"] = { + [1] = { 61.9, 93, 16, 300 }, + }, + ["lvl"] = "55", + }, + [91778] = { + ["coords"] = { + [1] = { 61.2, 92.5, 16, 300 }, + }, + ["lvl"] = "49", + }, + [91779] = { + ["coords"] = { + [1] = { 62.5, 93.3, 16, 300 }, + }, + ["lvl"] = "53", + }, + [91780] = { + ["coords"] = { + [1] = { 62.8, 93.5, 16, 300 }, + }, + ["lvl"] = "51", + }, + [91781] = { + ["coords"] = { + [1] = { 25.2, 30.3, 8, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "45", + }, + [91782] = { + ["coords"] = { + [1] = { 51.5, 37.5, 16, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "54", + }, + [91783] = { + ["coords"] = {}, + ["lvl"] = "58", + }, + [91784] = { + ["coords"] = { + [1] = { 42.5, 22.4, 45, 300 }, + [2] = { 41.1, 20.7, 45, 300 }, + [3] = { 45.4, 20.1, 45, 300 }, + [4] = { 46.9, 20, 45, 300 }, + [5] = { 47.2, 20, 45, 300 }, + [6] = { 43.9, 19.8, 45, 300 }, + [7] = { 45, 19.5, 45, 520 }, + [8] = { 47.3, 19.1, 45, 300 }, + [9] = { 44.1, 18.9, 45, 300 }, + [10] = { 43.6, 18.3, 45, 300 }, + [11] = { 43.2, 18.2, 45, 300 }, + [12] = { 45.3, 18.1, 45, 300 }, + [13] = { 47.1, 17.9, 45, 539 }, + [14] = { 46, 17.8, 45, 571 }, + [15] = { 42.1, 17.4, 45, 300 }, + [16] = { 45.1, 17.3, 45, 300 }, + [17] = { 44.7, 17.2, 45, 373 }, + [18] = { 42.6, 16.3, 45, 300 }, + [19] = { 46.1, 16.2, 45, 300 }, + [20] = { 39.7, 15.9, 45, 300 }, + [21] = { 40.9, 15.8, 45, 408 }, + [22] = { 45.3, 15.1, 45, 300 }, + [23] = { 44.8, 14.7, 45, 300 }, + [24] = { 45, 14.5, 45, 300 }, + [25] = { 42.8, 13.9, 45, 388 }, + [26] = { 43.7, 11.5, 45, 300 }, + [27] = { 21.4, 83.3, 47, 300 }, + [28] = { 20.1, 81.7, 47, 300 }, + [29] = { 24, 81.2, 47, 300 }, + [30] = { 25.4, 81, 47, 300 }, + [31] = { 25.7, 81, 47, 300 }, + [32] = { 22.6, 80.9, 47, 300 }, + [33] = { 23.7, 80.6, 47, 520 }, + [34] = { 25.8, 80.2, 47, 300 }, + [35] = { 22.8, 80, 47, 300 }, + [36] = { 22.4, 79.4, 47, 300 }, + [37] = { 22, 79.4, 47, 300 }, + [38] = { 23.9, 79.3, 47, 300 }, + [39] = { 25.6, 79.1, 47, 539 }, + [40] = { 24.6, 79, 47, 571 }, + [41] = { 20.9, 78.6, 47, 300 }, + [42] = { 23.8, 78.5, 47, 300 }, + [43] = { 23.4, 78.4, 47, 373 }, + [44] = { 21.5, 77.5, 47, 300 }, + [45] = { 24.7, 77.5, 47, 300 }, + [46] = { 18.7, 77.2, 47, 300 }, + [47] = { 19.8, 77.1, 47, 408 }, + [48] = { 23.9, 76.5, 47, 300 }, + [49] = { 23.5, 76.1, 47, 300 }, + [50] = { 23.7, 75.9, 47, 300 }, + [51] = { 21.6, 75.3, 47, 388 }, + [52] = { 22.4, 73.1, 47, 300 }, + }, + ["lvl"] = "34-36", + }, + [91785] = { + ["coords"] = { + [1] = { 46.4, 20.6, 45, 589 }, + [2] = { 46.4, 19.8, 45, 300 }, + [3] = { 46, 19.3, 45, 444 }, + [4] = { 41.6, 18.6, 45, 300 }, + [5] = { 44.1, 18.4, 45, 304 }, + [6] = { 47.5, 18.1, 45, 300 }, + [7] = { 44.5, 17.5, 45, 439 }, + [8] = { 46.4, 16.8, 45, 349 }, + [9] = { 40, 16.4, 45, 300 }, + [10] = { 39.8, 12.9, 45, 511 }, + [11] = { 42, 12.3, 45, 300 }, + [12] = { 25, 81.6, 47, 589 }, + [13] = { 25, 80.9, 47, 300 }, + [14] = { 24.6, 80.4, 47, 444 }, + [15] = { 20.5, 79.8, 47, 300 }, + [16] = { 22.9, 79.6, 47, 304 }, + [17] = { 26, 79.3, 47, 300 }, + [18] = { 23.2, 78.7, 47, 439 }, + [19] = { 24.9, 78, 47, 349 }, + [20] = { 19, 77.7, 47, 300 }, + [21] = { 18.8, 74.4, 47, 511 }, + [22] = { 20.9, 73.9, 47, 300 }, + }, + ["lvl"] = "35-37", + }, + [91786] = { + ["coords"] = { + [1] = { 48, 19.5, 45, 300 }, + [2] = { 48, 19.4, 45, 300 }, + [3] = { 46.4, 19, 45, 300 }, + [4] = { 45, 18.7, 45, 300 }, + [5] = { 45.6, 18.7, 45, 567 }, + [6] = { 47.4, 18.6, 45, 300 }, + [7] = { 42.7, 16.1, 45, 300 }, + [8] = { 44, 14.5, 45, 419 }, + [9] = { 42.7, 12.4, 45, 300 }, + [10] = { 43.5, 12.3, 45, 433 }, + [11] = { 26.4, 80.6, 47, 300 }, + [12] = { 26.5, 80.5, 47, 300 }, + [13] = { 25, 80.1, 47, 300 }, + [14] = { 23.7, 79.8, 47, 300 }, + [15] = { 24.2, 79.8, 47, 567 }, + [16] = { 25.9, 79.7, 47, 300 }, + [17] = { 21.5, 77.4, 47, 300 }, + [18] = { 22.8, 75.9, 47, 419 }, + [19] = { 21.5, 73.9, 47, 300 }, + [20] = { 22.3, 73.9, 47, 433 }, + [21] = { 25.4, 70.6, 47, 300 }, + }, + ["lvl"] = "34-36", + }, + [91787] = { + ["coords"] = { + [1] = { 43.7, 10.4, 45, 300 }, + [2] = { 22.4, 72.1, 47, 300 }, + [3] = { 24.9, 70.5, 47, 300 }, + [4] = { 23.1, 64.8, 47, 300 }, + [5] = { 25.2, 61.9, 47, 180 }, + }, + ["lvl"] = "38-40", + }, + [91788] = { + ["coords"] = { + [1] = { 44.5, 20, 45, 374 }, + [2] = { 47.2, 19.3, 45, 300 }, + [3] = { 44.5, 19, 45, 300 }, + [4] = { 44.4, 17.6, 45, 582 }, + [5] = { 42.9, 16.8, 45, 557 }, + [6] = { 45.1, 16.7, 45, 546 }, + [7] = { 43.7, 15.1, 45, 300 }, + [8] = { 43.8, 13.4, 45, 300 }, + [9] = { 40.9, 13.2, 45, 521 }, + [10] = { 40.9, 12.9, 45, 562 }, + [11] = { 23.2, 81, 47, 374 }, + [12] = { 25.7, 80.3, 47, 300 }, + [13] = { 23.2, 80.1, 47, 300 }, + [14] = { 23.2, 78.8, 47, 582 }, + [15] = { 21.7, 78, 47, 557 }, + [16] = { 23.8, 78, 47, 546 }, + [17] = { 22.5, 76.5, 47, 300 }, + [18] = { 22.5, 74.9, 47, 300 }, + [19] = { 19.9, 74.7, 47, 521 }, + [20] = { 19.8, 74.4, 47, 562 }, + [21] = { 25.4, 70.5, 47, 300 }, + }, + ["lvl"] = "33-35", + }, + [91789] = { + ["coords"] = { + [1] = { 47.4, 20.8, 45, 410 }, + [2] = { 25.9, 81.8, 47, 410 }, + }, + ["lvl"] = "40", + }, + [91790] = { + ["coords"] = { + [1] = { 39.5, 16.4, 45, 358 }, + [2] = { 18.5, 77.7, 47, 358 }, + }, + ["lvl"] = "36", + }, + [91791] = { + ["coords"] = { + [1] = { 57.2, 59.3, 45, 300 }, + }, + ["lvl"] = "39", + }, + [91794] = { + ["coords"] = { + [1] = { 67, 73.5, 16, 300 }, + }, + ["lvl"] = "55", + }, + [91795] = { + ["coords"] = { + [1] = { 24.7, 31.2, 8, 300 }, + }, + ["lvl"] = "43", + }, + [91796] = { + ["coords"] = { + [1] = { 24.6, 31.7, 8, 300 }, + }, + ["lvl"] = "42", + }, + [91797] = { + ["coords"] = { + [1] = { 44.2, 66.4, 12, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [91798] = { + ["coords"] = { + [1] = { 74.5, 50.9, 12, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [91799] = { + ["coords"] = { + [1] = { 51, 54.9, 5053, 345600 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [91800] = { + ["coords"] = { + [1] = { 50, 50.3, 5053, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [91801] = { + ["coords"] = { + [1] = { 59.6, 65.6, 5053, 249 }, + }, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [91802] = { + ["coords"] = { + [1] = { 45.8, 42, 5053, 181 }, + }, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [91803] = { + ["coords"] = { + [1] = { 60.6, 36.5, 5053, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [91804] = { + ["coords"] = { + [1] = { 44.3, 70.3, 5053, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [91805] = { + ["coords"] = { + [1] = { 60.5, 43.7, 409, 300 }, + }, + ["lvl"] = "5", + }, + [91806] = { + ["coords"] = { + [1] = { 14.6, 75.6, 85, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [91807] = { + ["coords"] = { + [1] = { 13.3, 79.4, 85, 300 }, + [2] = { 12.6, 79.4, 85, 300 }, + [3] = { 13.2, 79.4, 85, 300 }, + [4] = { 13.4, 79.3, 85, 300 }, + [5] = { 12.8, 79.2, 85, 300 }, + [6] = { 13.1, 79.1, 85, 300 }, + [7] = { 12.8, 78.9, 85, 300 }, + [8] = { 13.3, 78.8, 85, 300 }, + [9] = { 13, 78.8, 85, 300 }, + [10] = { 13.1, 78.6, 85, 300 }, + [11] = { 12.5, 78.5, 85, 300 }, + [12] = { 13.5, 78.4, 85, 300 }, + [13] = { 13, 78.4, 85, 300 }, + [14] = { 13.3, 78.4, 85, 300 }, + [15] = { 12.8, 78.3, 85, 300 }, + [16] = { 12.6, 78.2, 85, 300 }, + [17] = { 13.5, 78.1, 85, 300 }, + [18] = { 14.7, 78.1, 85, 300 }, + [19] = { 12.8, 78.1, 85, 300 }, + [20] = { 12.6, 78.1, 85, 300 }, + [21] = { 13.2, 78.1, 85, 300 }, + [22] = { 13.1, 78, 85, 300 }, + [23] = { 13.3, 77.8, 85, 300 }, + [24] = { 12.9, 77.8, 85, 300 }, + [25] = { 12.7, 77.8, 85, 300 }, + [26] = { 14.1, 77.8, 85, 300 }, + [27] = { 12.4, 77.8, 85, 300 }, + [28] = { 13.6, 77.7, 85, 300 }, + [29] = { 13.8, 77.6, 85, 300 }, + [30] = { 23.6, 8.5, 130, 300 }, + [31] = { 23.8, 8.3, 130, 300 }, + [32] = { 23.4, 8.3, 130, 300 }, + [33] = { 23.6, 8.3, 130, 300 }, + [34] = { 24.2, 8.3, 130, 300 }, + [35] = { 24.1, 8.2, 130, 300 }, + [36] = { 24.5, 8, 130, 300 }, + [37] = { 24.3, 8, 130, 300 }, + [38] = { 24.2, 7.9, 130, 300 }, + [39] = { 23.5, 7.9, 130, 300 }, + [40] = { 24.1, 7.9, 130, 300 }, + [41] = { 24.3, 7.8, 130, 300 }, + [42] = { 23.7, 7.7, 130, 300 }, + [43] = { 24, 7.6, 130, 300 }, + [44] = { 24.5, 7.5, 130, 300 }, + [45] = { 24.4, 7.5, 130, 300 }, + [46] = { 24.9, 7.4, 130, 300 }, + [47] = { 23.7, 7.3, 130, 300 }, + [48] = { 24.7, 7.3, 130, 300 }, + [49] = { 24.2, 7.3, 130, 300 }, + [50] = { 23.9, 7.3, 130, 300 }, + [51] = { 24, 7, 130, 300 }, + [52] = { 26.1, 7, 130, 300 }, + [53] = { 24.7, 6.9, 130, 300 }, + [54] = { 23.4, 6.9, 130, 300 }, + [55] = { 24.4, 6.9, 130, 300 }, + [56] = { 24.4, 6.8, 130, 300 }, + [57] = { 23.9, 6.8, 130, 300 }, + [58] = { 24.3, 6.8, 130, 300 }, + [59] = { 23.7, 6.7, 130, 300 }, + [60] = { 23.5, 6.6, 130, 300 }, + [61] = { 24.4, 6.5, 130, 300 }, + [62] = { 25.7, 6.5, 130, 300 }, + [63] = { 23.7, 6.5, 130, 300 }, + [64] = { 23.5, 6.5, 130, 300 }, + [65] = { 24.2, 6.5, 130, 300 }, + [66] = { 24.1, 6.4, 130, 300 }, + [67] = { 24.2, 6.2, 130, 300 }, + [68] = { 23.8, 6.2, 130, 300 }, + [69] = { 23.6, 6.2, 130, 300 }, + [70] = { 25.1, 6.2, 130, 300 }, + [71] = { 23.3, 6.1, 130, 300 }, + [72] = { 24.5, 6, 130, 300 }, + [73] = { 24.8, 6, 130, 300 }, + }, + ["lvl"] = "30", + }, + [91808] = { + ["coords"] = {}, + ["lvl"] = "30", + ["rnk"] = "1", + }, + [91809] = { + ["coords"] = { + [1] = { 29.1, 6.5, 408, 300 }, + [2] = { 28.4, 6.4, 408, 300 }, + [3] = { 27.8, 6.4, 408, 300 }, + [4] = { 28.3, 6.4, 408, 300 }, + [5] = { 27.2, 5.7, 408, 300 }, + [6] = { 28.8, 5, 408, 300 }, + [7] = { 29, 5, 408, 300 }, + [8] = { 26.2, 4.5, 408, 300 }, + [9] = { 26.2, 4.4, 408, 300 }, + [10] = { 30, 4.1, 408, 300 }, + [11] = { 25.1, 4.1, 408, 300 }, + [12] = { 25, 4, 408, 300 }, + [13] = { 28.1, 2.6, 408, 300 }, + [14] = { 25.8, 1.8, 408, 300 }, + [15] = { 30.1, 1.5, 408, 300 }, + [16] = { 30.1, 1.4, 408, 300 }, + [17] = { 24.3, 0.8, 408, 300 }, + [18] = { 26.1, 0.8, 408, 300 }, + [19] = { 25.2, 0.8, 408, 300 }, + [20] = { 28.8, 0.2, 408, 300 }, + [21] = { 48.2, 84.4, 409, 300 }, + [22] = { 47.4, 84.4, 409, 300 }, + [23] = { 46.8, 84.3, 409, 300 }, + [24] = { 47.3, 84.3, 409, 300 }, + [25] = { 46.1, 83.6, 409, 300 }, + [26] = { 47.9, 82.9, 409, 300 }, + [27] = { 48, 82.9, 409, 300 }, + [28] = { 45.1, 82.3, 409, 300 }, + [29] = { 45, 82.3, 409, 300 }, + [30] = { 49.1, 81.9, 409, 300 }, + [31] = { 43.9, 81.9, 409, 300 }, + [32] = { 43.8, 81.8, 409, 300 }, + [33] = { 47, 80.3, 409, 300 }, + [34] = { 47.1, 80.3, 409, 300 }, + [35] = { 44.7, 79.5, 409, 300 }, + [36] = { 49.2, 79.1, 409, 300 }, + [37] = { 49.2, 79, 409, 300 }, + [38] = { 43, 78.4, 409, 300 }, + [39] = { 44.9, 78.4, 409, 300 }, + [40] = { 44, 78.3, 409, 300 }, + [41] = { 47.8, 77.8, 409, 300 }, + [42] = { 47.7, 77, 409, 300 }, + [43] = { 46.5, 75.3, 409, 300 }, + [44] = { 43.2, 74.4, 409, 300 }, + [45] = { 43, 74.3, 409, 300 }, + [46] = { 44.6, 74.2, 409, 300 }, + [47] = { 44.7, 74.2, 409, 300 }, + [48] = { 50.7, 73.8, 409, 300 }, + [49] = { 44.6, 73.5, 409, 300 }, + [50] = { 45.9, 73.2, 409, 300 }, + [51] = { 43.6, 71, 409, 300 }, + [52] = { 47.7, 70.3, 409, 300 }, + [53] = { 47.8, 70.1, 409, 300 }, + [54] = { 48, 69.5, 409, 300 }, + [55] = { 47.9, 69.5, 409, 300 }, + [56] = { 47.9, 68.3, 409, 300 }, + }, + ["lvl"] = "48-49", + }, + [91810] = { + ["coords"] = { + [1] = { 27.7, 6.3, 408, 300 }, + [2] = { 29.5, 4.1, 408, 300 }, + [3] = { 29.5, 4, 408, 300 }, + [4] = { 27.1, 3.9, 408, 300 }, + [5] = { 25.5, 2.7, 408, 300 }, + [6] = { 28.9, 2.6, 408, 300 }, + [7] = { 26, 0.7, 408, 300 }, + [8] = { 24.8, 0.7, 408, 300 }, + [9] = { 24.8, 0.6, 408, 300 }, + [10] = { 25.2, 0.2, 408, 300 }, + [11] = { 46.7, 84.2, 409, 300 }, + [12] = { 48.5, 82, 409, 300 }, + [13] = { 48.6, 81.8, 409, 300 }, + [14] = { 46, 81.7, 409, 300 }, + [15] = { 44.3, 80.4, 409, 300 }, + [16] = { 47.9, 80.3, 409, 300 }, + [17] = { 44.8, 78.3, 409, 300 }, + [18] = { 43.6, 78.3, 409, 300 }, + [19] = { 43.6, 78.1, 409, 300 }, + [20] = { 44, 77.8, 409, 300 }, + [21] = { 47.8, 77, 409, 300 }, + [22] = { 49.1, 75.8, 409, 300 }, + [23] = { 48.1, 75.5, 409, 300 }, + [24] = { 44.6, 74.8, 409, 300 }, + [25] = { 44.6, 74.7, 409, 300 }, + [26] = { 50.6, 73.9, 409, 300 }, + [27] = { 38.6, 73.8, 409, 300 }, + [28] = { 48.5, 73.5, 409, 300 }, + [29] = { 42.6, 73.4, 409, 300 }, + [30] = { 50.5, 73.2, 409, 300 }, + [31] = { 46, 73.1, 409, 300 }, + [32] = { 46.9, 73, 409, 300 }, + [33] = { 41.7, 72.9, 409, 300 }, + [34] = { 41.3, 72.7, 409, 300 }, + [35] = { 41.7, 72.4, 409, 300 }, + [36] = { 36.6, 71.6, 409, 300 }, + [37] = { 37.9, 71.2, 409, 300 }, + [38] = { 66, 71.2, 409, 300 }, + [39] = { 43.6, 70.8, 409, 300 }, + [40] = { 37.1, 70.7, 409, 300 }, + [41] = { 46.3, 70.1, 409, 300 }, + [42] = { 38.3, 69.8, 409, 300 }, + [43] = { 37.9, 69.8, 409, 300 }, + [44] = { 47.1, 69.7, 409, 300 }, + [45] = { 38.7, 69.3, 409, 300 }, + [46] = { 48.2, 68.9, 409, 300 }, + [47] = { 48.3, 68.7, 409, 300 }, + [48] = { 48.2, 68.7, 409, 300 }, + [49] = { 46.3, 68.7, 409, 300 }, + [50] = { 54.7, 65.3, 409, 300 }, + [51] = { 55.2, 63.8, 409, 300 }, + [52] = { 53.8, 63.2, 409, 300 }, + [53] = { 52.6, 62.7, 409, 300 }, + [54] = { 54.5, 62.7, 409, 300 }, + [55] = { 53.1, 62, 409, 300 }, + [56] = { 52.1, 61.4, 409, 300 }, + [57] = { 52.1, 61.1, 409, 300 }, + [58] = { 52.9, 60.7, 409, 300 }, + [59] = { 49.1, 60.6, 409, 300 }, + [60] = { 49.4, 60, 409, 300 }, + [61] = { 52.1, 59.6, 409, 300 }, + [62] = { 48.4, 58.6, 409, 300 }, + [63] = { 50.1, 57.7, 409, 300 }, + }, + ["lvl"] = "52-53", + }, + [91811] = { + ["coords"] = { + [1] = { 29.2, 6.5, 408, 300 }, + [2] = { 29.9, 6, 408, 300 }, + [3] = { 27.2, 5.9, 408, 300 }, + [4] = { 28.6, 5.4, 408, 300 }, + [5] = { 25, 4.1, 408, 300 }, + [6] = { 25.4, 2.6, 408, 300 }, + [7] = { 25.7, 1.7, 408, 300 }, + [8] = { 25.2, 0.9, 408, 300 }, + [9] = { 24.4, 0.8, 408, 300 }, + [10] = { 48.3, 84.4, 409, 300 }, + [11] = { 49, 83.9, 409, 300 }, + [12] = { 46.1, 83.8, 409, 300 }, + [13] = { 47.6, 83.3, 409, 300 }, + [14] = { 43.7, 81.9, 409, 300 }, + [15] = { 44.2, 80.3, 409, 300 }, + [16] = { 44.6, 79.3, 409, 300 }, + [17] = { 44, 78.5, 409, 300 }, + [18] = { 43.1, 78.4, 409, 300 }, + [19] = { 44, 73.5, 409, 300 }, + [20] = { 48, 72.1, 409, 300 }, + [21] = { 44.2, 71.7, 409, 300 }, + [22] = { 38.7, 71.4, 409, 300 }, + [23] = { 38, 71.4, 409, 300 }, + [24] = { 48, 70.8, 409, 300 }, + [25] = { 37.3, 70.6, 409, 300 }, + [26] = { 45.5, 69.1, 409, 300 }, + [27] = { 47.2, 69.1, 409, 300 }, + [28] = { 47.7, 68.2, 409, 300 }, + [29] = { 55.9, 66, 409, 300 }, + [30] = { 53.9, 63.2, 409, 300 }, + [31] = { 55.8, 63, 409, 300 }, + [32] = { 52, 61.4, 409, 300 }, + [33] = { 48.6, 59.6, 409, 300 }, + }, + ["lvl"] = "50-51", + }, + [91812] = { + ["coords"] = { + [1] = { 29.8, 5.4, 408, 300 }, + [2] = { 28.4, 0.3, 408, 458 }, + [3] = { 48.9, 83.2, 409, 300 }, + [4] = { 47.4, 77.8, 409, 458 }, + [5] = { 44.9, 76.8, 409, 300 }, + [6] = { 48.2, 75.6, 409, 300 }, + [7] = { 50, 73.2, 409, 300 }, + [8] = { 46.9, 71.7, 409, 300 }, + [9] = { 47, 71.1, 409, 300 }, + [10] = { 54.4, 70.6, 409, 300 }, + [11] = { 52.1, 70.4, 409, 300 }, + [12] = { 52.2, 69.4, 409, 300 }, + [13] = { 52.4, 69.3, 409, 300 }, + [14] = { 52.4, 68.9, 409, 300 }, + [15] = { 51.2, 68, 409, 300 }, + [16] = { 52.4, 67.7, 409, 300 }, + [17] = { 48.8, 67.6, 409, 300 }, + [18] = { 49.1, 67.6, 409, 300 }, + [19] = { 49.7, 65.9, 409, 300 }, + [20] = { 50.1, 64.9, 409, 300 }, + }, + ["lvl"] = "53-54", + ["rnk"] = "1", + }, + [91813] = { + ["coords"] = { + [1] = { 53.3, 70.4, 409, 300 }, + }, + ["lvl"] = "54", + ["rnk"] = "1", + }, + [91814] = { + ["coords"] = { + [1] = { 27.1, 4.1, 408, 300 }, + [2] = { 28.5, 3.5, 408, 300 }, + [3] = { 24.4, 3.2, 408, 300 }, + [4] = { 24.3, 2.8, 408, 300 }, + [5] = { 27.2, 1.7, 408, 300 }, + [6] = { 27.2, 1.2, 408, 300 }, + [7] = { 29.2, 0.8, 408, 300 }, + [8] = { 26.6, 0.2, 408, 300 }, + [9] = { 46, 81.9, 409, 300 }, + [10] = { 47.5, 81.2, 409, 300 }, + [11] = { 43.2, 81, 409, 300 }, + [12] = { 43, 80.5, 409, 300 }, + [13] = { 46.1, 79.3, 409, 300 }, + [14] = { 46.1, 78.8, 409, 300 }, + [15] = { 48.2, 78.4, 409, 300 }, + [16] = { 45.5, 77.7, 409, 300 }, + [17] = { 49, 76.8, 409, 300 }, + [18] = { 46.7, 76.6, 409, 300 }, + [19] = { 43.7, 76.1, 409, 300 }, + [20] = { 44, 76.1, 409, 300 }, + [21] = { 46.5, 75.5, 409, 300 }, + [22] = { 47.8, 75, 409, 300 }, + [23] = { 45.3, 74.3, 409, 300 }, + [24] = { 49.4, 73.7, 409, 300 }, + [25] = { 44.4, 73, 409, 300 }, + [26] = { 49.4, 73, 409, 300 }, + [27] = { 46.8, 72.8, 409, 300 }, + [28] = { 47, 72.4, 409, 300 }, + [29] = { 49.7, 72.4, 409, 300 }, + [30] = { 50.3, 72.4, 409, 300 }, + [31] = { 44.9, 71.6, 409, 300 }, + [32] = { 48.1, 71, 409, 300 }, + [33] = { 50.3, 70.8, 409, 300 }, + [34] = { 49.6, 70.7, 409, 300 }, + [35] = { 49.3, 70.1, 409, 300 }, + [36] = { 47.2, 69.6, 409, 300 }, + [37] = { 50.3, 69.2, 409, 300 }, + [38] = { 49.7, 69.1, 409, 300 }, + [39] = { 49.6, 67.5, 409, 300 }, + [40] = { 52.3, 67.5, 409, 300 }, + [41] = { 50.3, 67.5, 409, 300 }, + [42] = { 53.4, 67.3, 409, 300 }, + [43] = { 53.1, 66.9, 409, 300 }, + [44] = { 51, 66.6, 409, 300 }, + [45] = { 51, 65.9, 409, 300 }, + [46] = { 48.7, 63.2, 409, 300 }, + [47] = { 49.1, 63.2, 409, 300 }, + }, + ["lvl"] = "53-54", + ["rnk"] = "1", + }, + [91815] = { + ["coords"] = { + [1] = { 28.7, 5.4, 408, 300 }, + [2] = { 26.3, 5, 408, 300 }, + [3] = { 26.7, 4.6, 408, 300 }, + [4] = { 28.5, 4.5, 408, 300 }, + [5] = { 28.8, 4.3, 408, 300 }, + [6] = { 27.6, 4.3, 408, 300 }, + [7] = { 28.9, 4.2, 408, 300 }, + [8] = { 28.8, 4, 408, 300 }, + [9] = { 25.8, 3.7, 408, 300 }, + [10] = { 27.5, 2.6, 408, 300 }, + [11] = { 25.8, 1.7, 408, 300 }, + [12] = { 29.4, 1.6, 408, 300 }, + [13] = { 28.7, 0.3, 408, 300 }, + [14] = { 47.7, 83.3, 409, 300 }, + [15] = { 45.2, 82.8, 409, 300 }, + [16] = { 45.6, 82.4, 409, 300 }, + [17] = { 47.5, 82.3, 409, 300 }, + [18] = { 47.8, 82.1, 409, 300 }, + [19] = { 46.6, 82.1, 409, 300 }, + [20] = { 48, 82, 409, 300 }, + [21] = { 47.9, 81.8, 409, 300 }, + [22] = { 44.6, 81.5, 409, 300 }, + [23] = { 46.4, 80.3, 409, 300 }, + [24] = { 44.7, 79.3, 409, 300 }, + [25] = { 48.4, 79.2, 409, 300 }, + [26] = { 47.8, 77.9, 409, 300 }, + [27] = { 45.9, 77.1, 409, 300 }, + [28] = { 48.9, 76.8, 409, 300 }, + [29] = { 43.1, 75.7, 409, 300 }, + [30] = { 49.1, 75.1, 409, 300 }, + [31] = { 45.9, 74.6, 409, 300 }, + [32] = { 44.7, 73.4, 409, 300 }, + [33] = { 48.5, 73.3, 409, 300 }, + [34] = { 42.8, 72.9, 409, 300 }, + [35] = { 49.3, 72.5, 409, 300 }, + [36] = { 48.8, 71.5, 409, 300 }, + [37] = { 47, 71, 409, 300 }, + [38] = { 45.7, 70.7, 409, 300 }, + }, + ["lvl"] = "54-55", + ["rnk"] = "1", + }, + [91816] = { + ["coords"] = { + [1] = { 25.8, 3.8, 408, 300 }, + [2] = { 44.6, 81.6, 409, 300 }, + [3] = { 43.5, 75, 409, 300 }, + [4] = { 46.1, 73.1, 409, 300 }, + [5] = { 48.1, 72.2, 409, 300 }, + [6] = { 39.9, 72.1, 409, 300 }, + [7] = { 48, 71, 409, 300 }, + }, + ["lvl"] = "51-52", + }, + [91817] = { + ["coords"] = { + [1] = { 43, 77.4, 409, 300 }, + }, + ["lvl"] = "54", + ["rnk"] = "1", + }, + [91818] = { + ["coords"] = { + [1] = { 28.3, 1.5, 408, 300 }, + [2] = { 47.3, 79.1, 409, 300 }, + }, + ["lvl"] = "55", + ["rnk"] = "1", + }, + [91819] = { + ["coords"] = { + [1] = { 30, 6, 408, 354 }, + [2] = { 30.1, 4.2, 408, 300 }, + [3] = { 49.1, 83.9, 409, 354 }, + [4] = { 49.3, 82, 409, 300 }, + [5] = { 45.8, 76.6, 409, 300 }, + [6] = { 44.5, 76.3, 409, 300 }, + [7] = { 46, 74.8, 409, 300 }, + [8] = { 46.8, 74.4, 409, 594 }, + [9] = { 40.1, 73.8, 409, 300 }, + [10] = { 47.4, 73.6, 409, 300 }, + }, + ["lvl"] = "50", + }, + [91820] = { + ["coords"] = { + [1] = { 48.1, 75.6, 409, 300 }, + [2] = { 43.5, 71.6, 409, 300 }, + }, + ["lvl"] = "49-50", + }, + [91821] = { + ["coords"] = { + [1] = { 30, 5.9, 408, 300 }, + [2] = { 30.1, 4.1, 408, 300 }, + [3] = { 49.1, 83.8, 409, 300 }, + [4] = { 49.2, 81.9, 409, 300 }, + [5] = { 45.8, 76.6, 409, 300 }, + [6] = { 44.6, 76.4, 409, 300 }, + [7] = { 46, 74.7, 409, 300 }, + [8] = { 46.8, 74.5, 409, 300 }, + [9] = { 40, 73.8, 409, 300 }, + [10] = { 47.4, 73.7, 409, 300 }, + }, + ["lvl"] = "51-52", + }, + [91822] = { + ["coords"] = { + [1] = { 24.1, 6.3, 408, 300 }, + [2] = { 22.2, 5.7, 408, 300 }, + [3] = { 23.8, 4.9, 408, 300 }, + [4] = { 23, 4.3, 408, 300 }, + [5] = { 42.8, 84.2, 409, 300 }, + [6] = { 40.7, 83.6, 409, 300 }, + [7] = { 42.5, 82.7, 409, 300 }, + [8] = { 41.7, 82.1, 409, 300 }, + [9] = { 38.7, 77.3, 409, 300 }, + [10] = { 50.9, 75.8, 409, 300 }, + [11] = { 51.6, 75.2, 409, 300 }, + [12] = { 45.1, 68.2, 409, 300 }, + [13] = { 39.9, 67.4, 409, 300 }, + [14] = { 41.9, 66.8, 409, 300 }, + [15] = { 52, 62.8, 409, 300 }, + }, + ["lvl"] = "51-52", + }, + [91823] = { + ["coords"] = { + [1] = { 29, 4.6, 408, 300 }, + [2] = { 27, 4.1, 408, 300 }, + [3] = { 25.3, 0.3, 408, 571 }, + [4] = { 48.1, 82.5, 409, 300 }, + [5] = { 45.9, 81.9, 409, 300 }, + [6] = { 44.1, 77.8, 409, 571 }, + [7] = { 43.5, 74.9, 409, 300 }, + [8] = { 53.1, 72.7, 409, 300 }, + [9] = { 53.8, 72.4, 409, 300 }, + [10] = { 49.3, 72.3, 409, 300 }, + [11] = { 54.3, 72.2, 409, 300 }, + [12] = { 54.4, 72.2, 409, 300 }, + [13] = { 53.9, 71.4, 409, 300 }, + [14] = { 52.7, 71.3, 409, 300 }, + [15] = { 54, 71.2, 409, 300 }, + [16] = { 52.6, 71.2, 409, 300 }, + [17] = { 52.2, 70.9, 409, 300 }, + [18] = { 51.6, 70.3, 409, 300 }, + [19] = { 51.6, 70.2, 409, 300 }, + [20] = { 48.7, 69.6, 409, 547 }, + [21] = { 54.1, 69.3, 409, 300 }, + [22] = { 51.2, 69.3, 409, 300 }, + [23] = { 48.7, 69.2, 409, 300 }, + [24] = { 49.2, 68.9, 409, 300 }, + [25] = { 49.2, 68.7, 409, 300 }, + [26] = { 51.3, 68.6, 409, 300 }, + [27] = { 52.9, 68.6, 409, 300 }, + [28] = { 53.5, 68.5, 409, 300 }, + [29] = { 48.8, 64.7, 409, 300 }, + [30] = { 48.7, 64.6, 409, 300 }, + }, + ["lvl"] = "52-53", + }, + [91824] = { + ["coords"] = { + [1] = { 36.5, 73.5, 409, 300 }, + [2] = { 36.6, 73.2, 409, 300 }, + [3] = { 38, 72.6, 409, 300 }, + [4] = { 42.5, 72.4, 409, 352 }, + [5] = { 42.8, 70.4, 409, 300 }, + [6] = { 56.2, 68.5, 409, 300 }, + [7] = { 56.9, 67.3, 409, 300 }, + [8] = { 57.3, 65.8, 409, 300 }, + [9] = { 60, 64.6, 409, 300 }, + [10] = { 58.3, 63.4, 409, 300 }, + [11] = { 48.7, 59.4, 409, 300 }, + [12] = { 48.1, 57.3, 409, 300 }, + [13] = { 48.6, 55.8, 409, 300 }, + [14] = { 49.2, 55.5, 409, 300 }, + [15] = { 47.3, 54.2, 409, 300 }, + [16] = { 47, 52.7, 409, 300 }, + }, + ["lvl"] = "50-51", + }, + [91825] = { + ["coords"] = { + [1] = { 59.6, 68.5, 409, 300 }, + [2] = { 68.7, 65.3, 409, 300 }, + [3] = { 67.9, 65.1, 409, 300 }, + [4] = { 66.6, 64, 409, 300 }, + [5] = { 68.1, 63.6, 409, 300 }, + [6] = { 67.4, 63.4, 409, 300 }, + [7] = { 64.6, 62.8, 409, 300 }, + [8] = { 63.8, 62.7, 409, 300 }, + [9] = { 68.5, 62.6, 409, 300 }, + [10] = { 63.5, 61.5, 409, 300 }, + [11] = { 62.5, 61.4, 409, 300 }, + [12] = { 65.1, 61.3, 409, 300 }, + [13] = { 67, 60.3, 409, 300 }, + [14] = { 62.5, 60.2, 409, 300 }, + [15] = { 65.4, 60.1, 409, 300 }, + [16] = { 67.9, 59.6, 409, 300 }, + [17] = { 65.9, 59.2, 409, 300 }, + [18] = { 62.6, 58.5, 409, 300 }, + [19] = { 49.7, 45.4, 409, 300 }, + [20] = { 51.1, 44.9, 409, 300 }, + [21] = { 53.1, 42, 409, 300 }, + }, + ["lvl"] = "48-49", + }, + [91826] = { + ["coords"] = { + [1] = { 39.6, 56.6, 409, 300 }, + [2] = { 40.9, 54.8, 409, 300 }, + [3] = { 39.2, 53.4, 409, 300 }, + [4] = { 40.4, 52.5, 409, 300 }, + }, + ["lvl"] = "49-51", + }, + [91827] = { + ["coords"] = { + [1] = { 59.7, 71.8, 409, 300 }, + [2] = { 58.5, 71.3, 409, 300 }, + [3] = { 59, 69.9, 409, 300 }, + [4] = { 57.3, 69.7, 409, 300 }, + [5] = { 59.5, 68.4, 409, 300 }, + [6] = { 58.6, 66.4, 409, 300 }, + [7] = { 59.3, 65.2, 409, 300 }, + [8] = { 57.7, 63.4, 409, 300 }, + [9] = { 49.6, 56.6, 409, 300 }, + [10] = { 46.6, 55.2, 409, 300 }, + [11] = { 45.7, 53.5, 409, 300 }, + [12] = { 44.7, 53.4, 409, 300 }, + [13] = { 43.7, 51.2, 409, 300 }, + [14] = { 48.1, 48.2, 409, 300 }, + [15] = { 47.7, 46.4, 409, 300 }, + }, + ["lvl"] = "52-53", + }, + [91828] = { + ["coords"] = { + [1] = { 41.4, 59.9, 409, 300 }, + [2] = { 40.5, 58.6, 409, 300 }, + [3] = { 37.1, 57.4, 409, 300 }, + [4] = { 38.7, 57.3, 409, 300 }, + [5] = { 42.6, 53.6, 409, 300 }, + [6] = { 37.4, 51.7, 409, 300 }, + [7] = { 38.5, 51.7, 409, 300 }, + [8] = { 40.5, 50.8, 409, 300 }, + }, + ["lvl"] = "53-54", + }, + [91829] = { + ["coords"] = { + [1] = { 62, 64.9, 409, 300 }, + [2] = { 63.1, 64.8, 409, 300 }, + [3] = { 63.7, 64.6, 409, 300 }, + [4] = { 62.6, 64.3, 409, 300 }, + [5] = { 62.1, 63.9, 409, 300 }, + [6] = { 44.5, 49.8, 409, 300 }, + [7] = { 46.1, 49.7, 409, 300 }, + [8] = { 45.3, 49, 409, 300 }, + [9] = { 46.4, 47.7, 409, 300 }, + [10] = { 45.1, 47.6, 409, 300 }, + [11] = { 46.9, 47.5, 409, 300 }, + }, + ["lvl"] = "50-51", + }, + [91830] = { + ["coords"] = { + [1] = { 40.4, 63.7, 409, 300 }, + [2] = { 39.3, 61.5, 409, 300 }, + [3] = { 38.5, 59.3, 409, 300 }, + [4] = { 41.2, 56.9, 409, 300 }, + [5] = { 37.9, 55.1, 409, 300 }, + }, + ["lvl"] = "52-53", + }, + [91831] = { + ["coords"] = { + [1] = { 29.6, 70.3, 409, 300 }, + [2] = { 32.6, 69.1, 409, 300 }, + [3] = { 32.4, 66.7, 409, 300 }, + [4] = { 30.4, 66.5, 409, 300 }, + [5] = { 34.8, 66.2, 409, 300 }, + [6] = { 26.8, 64.9, 409, 300 }, + [7] = { 29.2, 64.3, 409, 300 }, + [8] = { 34, 63.9, 409, 300 }, + [9] = { 32.3, 63.7, 409, 300 }, + [10] = { 32.6, 61.8, 409, 300 }, + [11] = { 33.7, 61.6, 409, 300 }, + [12] = { 35.3, 61.4, 409, 300 }, + [13] = { 32.3, 60, 409, 300 }, + [14] = { 32.6, 58.7, 409, 300 }, + [15] = { 31.6, 58.3, 409, 300 }, + [16] = { 30.9, 57.3, 409, 300 }, + [17] = { 31.4, 55.7, 409, 300 }, + [18] = { 32.7, 55.5, 409, 300 }, + [19] = { 27.1, 55.3, 409, 300 }, + [20] = { 29.3, 55.2, 409, 300 }, + [21] = { 30.3, 54.2, 409, 300 }, + [22] = { 33.1, 53.8, 409, 300 }, + [23] = { 31.7, 53, 409, 300 }, + [24] = { 27.5, 52.4, 409, 300 }, + [25] = { 29.4, 52, 409, 300 }, + [26] = { 31, 51.6, 409, 300 }, + [27] = { 32.2, 51.6, 409, 300 }, + [28] = { 33.1, 50.2, 409, 300 }, + [29] = { 26.7, 48.8, 409, 300 }, + [30] = { 30.5, 43.6, 409, 300 }, + [31] = { 28.6, 42.1, 409, 300 }, + [32] = { 27.8, 38.7, 409, 300 }, + }, + ["lvl"] = "52-53", + }, + [91832] = { + ["coords"] = { + [1] = { 62.1, 17.8, 409, 300 }, + [2] = { 64.3, 17.6, 409, 300 }, + [3] = { 59.4, 17.5, 409, 300 }, + [4] = { 55.8, 17, 409, 300 }, + [5] = { 52.9, 16.2, 409, 300 }, + [6] = { 50.9, 15.6, 409, 300 }, + [7] = { 54.3, 15.5, 409, 300 }, + [8] = { 54.9, 13.8, 409, 300 }, + [9] = { 50.1, 13.6, 409, 300 }, + [10] = { 51.4, 13.2, 409, 300 }, + [11] = { 52.7, 13, 409, 300 }, + [12] = { 50.8, 11.1, 409, 300 }, + [13] = { 52.8, 10, 409, 300 }, + }, + ["lvl"] = "48-50", + }, + [91833] = { + ["coords"] = { + [1] = { 3.9, 97, 40, 300 }, + [2] = { 4.9, 96.6, 40, 300 }, + [3] = { 4.1, 95.8, 40, 300 }, + [4] = { 4.6, 95.5, 40, 300 }, + [5] = { 3.4, 95.4, 40, 300 }, + [6] = { 3.4, 94.1, 40, 300 }, + [7] = { 4.6, 93.6, 40, 300 }, + [8] = { 5.2, 92.6, 40, 300 }, + [9] = { 5.4, 92.2, 40, 300 }, + [10] = { 2.9, 92, 40, 300 }, + [11] = { 6.5, 91.5, 40, 300 }, + [12] = { 7.1, 91.3, 40, 300 }, + [13] = { 4.4, 91, 40, 300 }, + [14] = { 70.8, 32.4, 409, 300 }, + [15] = { 71.9, 31.9, 409, 300 }, + [16] = { 71, 30.9, 409, 300 }, + [17] = { 71.6, 30.5, 409, 300 }, + [18] = { 70.2, 30.4, 409, 300 }, + [19] = { 70.1, 28.8, 409, 300 }, + [20] = { 71.7, 28.3, 409, 300 }, + [21] = { 72.3, 27, 409, 300 }, + [22] = { 72.6, 26.5, 409, 300 }, + [23] = { 69.6, 26.3, 409, 300 }, + [24] = { 73.9, 25.6, 409, 300 }, + [25] = { 74.6, 25.4, 409, 300 }, + [26] = { 71.4, 25, 409, 300 }, + }, + ["lvl"] = "49-51", + }, + [91834] = { + ["coords"] = {}, + ["lvl"] = "48-50", + }, + [91835] = { + ["coords"] = { + [1] = { 1.1, 65.3, 33, 300 }, + [2] = { 0.8, 63.1, 33, 300 }, + [3] = { 0.8, 60.1, 33, 300 }, + [4] = { 0.5, 58.3, 33, 300 }, + [5] = { 1, 58.2, 33, 300 }, + [6] = { 0.7, 57, 33, 300 }, + [7] = { 0.6, 56, 33, 300 }, + [8] = { 0.7, 54.4, 33, 300 }, + [9] = { 74, 69.4, 408, 300 }, + [10] = { 73.3, 64.7, 408, 300 }, + [11] = { 70.5, 60.5, 408, 300 }, + [12] = { 72.3, 59.6, 408, 300 }, + [13] = { 73.3, 58.5, 408, 300 }, + [14] = { 71.6, 57.5, 408, 300 }, + [15] = { 72.7, 54.7, 408, 300 }, + [16] = { 73.7, 54.4, 408, 300 }, + [17] = { 67.7, 52.4, 408, 300 }, + [18] = { 71.3, 52.3, 408, 300 }, + [19] = { 73.1, 52, 408, 300 }, + [20] = { 71.4, 50.1, 408, 300 }, + [21] = { 72.8, 50, 408, 300 }, + [22] = { 69.1, 49.1, 408, 300 }, + [23] = { 65.4, 48.4, 408, 300 }, + [24] = { 70.3, 48.3, 408, 300 }, + [25] = { 69.5, 47.3, 408, 300 }, + [26] = { 73, 46.7, 408, 300 }, + [27] = { 65.6, 45.6, 408, 300 }, + [28] = { 63.5, 44.4, 408, 300 }, + [29] = { 67.6, 43.7, 408, 300 }, + [30] = { 65.3, 43.1, 408, 300 }, + [31] = { 64.2, 43.1, 408, 300 }, + [32] = { 63.6, 41.4, 408, 300 }, + [33] = { 27.5, 67.6, 409, 300 }, + [34] = { 29.6, 67.6, 409, 300 }, + [35] = { 33.8, 66.1, 409, 300 }, + [36] = { 26.1, 62.9, 409, 300 }, + [37] = { 27.6, 62.2, 409, 300 }, + [38] = { 29.3, 61.6, 409, 300 }, + [39] = { 30.3, 58.2, 409, 300 }, + [40] = { 27.5, 57.2, 409, 300 }, + [41] = { 29.4, 57.1, 409, 300 }, + [42] = { 30.4, 56.3, 409, 300 }, + [43] = { 30.7, 54.8, 409, 300 }, + [44] = { 27.8, 53.9, 409, 300 }, + [45] = { 28.6, 51.9, 409, 300 }, + [46] = { 27, 51.7, 409, 300 }, + [47] = { 30.4, 50.9, 409, 300 }, + [48] = { 28.5, 50.7, 409, 300 }, + [49] = { 31, 50.1, 409, 300 }, + [50] = { 31.8, 49.3, 409, 300 }, + [51] = { 32.1, 48.6, 409, 300 }, + [52] = { 32.5, 48.4, 409, 300 }, + [53] = { 31.9, 47.8, 409, 300 }, + [54] = { 60.9, 26.1, 409, 300 }, + [55] = { 60.6, 23.7, 409, 300 }, + [56] = { 60.5, 23.5, 409, 300 }, + [57] = { 60.1, 22.9, 409, 300 }, + [58] = { 59.3, 21.8, 409, 300 }, + }, + ["lvl"] = "49-51", + }, + [91836] = { + ["coords"] = {}, + ["lvl"] = "52-53", + }, + [91837] = { + ["coords"] = { + [1] = { 55.8, 29.2, 409, 180 }, + [2] = { 64.5, 28.9, 409, 180 }, + [3] = { 57.1, 28.1, 409, 180 }, + [4] = { 64.1, 27.2, 409, 180 }, + [5] = { 62.7, 26.6, 409, 180 }, + [6] = { 56.8, 26.3, 409, 180 }, + [7] = { 59.2, 26.3, 409, 180 }, + [8] = { 58.5, 26.1, 409, 180 }, + [9] = { 55.9, 25.9, 409, 180 }, + [10] = { 65.8, 25.8, 409, 180 }, + [11] = { 64.2, 24.8, 409, 180 }, + [12] = { 63.8, 24.3, 409, 180 }, + [13] = { 61.8, 23.8, 409, 180 }, + [14] = { 53.6, 22.4, 409, 180 }, + [15] = { 55.7, 22.2, 409, 180 }, + [16] = { 63, 22.1, 409, 180 }, + [17] = { 58.3, 21, 409, 180 }, + [18] = { 53.2, 20.5, 409, 180 }, + [19] = { 65.8, 20.3, 409, 180 }, + [20] = { 51.4, 18.3, 409, 180 }, + [21] = { 53.4, 17.4, 409, 180 }, + }, + ["lvl"] = "49-51", + }, + [91838] = { + ["coords"] = { + [1] = { 41.8, 89.3, 408, 300 }, + [2] = { 44.2, 85.9, 408, 300 }, + [3] = { 42.9, 84.8, 408, 300 }, + [4] = { 45.9, 84, 408, 300 }, + [5] = { 45.4, 82.3, 408, 300 }, + [6] = { 42.6, 82.1, 408, 300 }, + [7] = { 47.5, 80.3, 408, 300 }, + [8] = { 40, 80.2, 408, 300 }, + [9] = { 52.4, 80.2, 408, 300 }, + [10] = { 44.7, 79.7, 408, 300 }, + [11] = { 35.5, 79.3, 408, 300 }, + [12] = { 41.5, 79.2, 408, 300 }, + [13] = { 42.8, 78.9, 408, 300 }, + [14] = { 46.6, 78.6, 408, 300 }, + [15] = { 49.5, 78, 408, 300 }, + [16] = { 48, 76.9, 408, 300 }, + }, + ["lvl"] = "51-52", + }, + [91839] = { + ["coords"] = { + [1] = { 29.8, 40.6, 409, 172800 }, + }, + ["lvl"] = "54-55", + ["rnk"] = "1", + }, + [91840] = { + ["coords"] = { + [1] = { 33.8, 89.3, 408, 300 }, + [2] = { 34.5, 89, 408, 300 }, + [3] = { 32.7, 88.7, 408, 300 }, + [4] = { 32.6, 87.9, 408, 300 }, + [5] = { 35, 87.4, 408, 300 }, + [6] = { 32.1, 87.4, 408, 300 }, + [7] = { 30.1, 87.2, 408, 300 }, + [8] = { 29.5, 87.2, 408, 300 }, + [9] = { 31.5, 86.7, 408, 300 }, + [10] = { 31.6, 85.4, 408, 300 }, + [11] = { 33.6, 83.9, 408, 300 }, + }, + ["lvl"] = "52-53", + }, + [91841] = { + ["coords"] = { + [1] = { 35, 90, 408, 300 }, + [2] = { 32.1, 89.3, 408, 300 }, + [3] = { 33.1, 88.2, 408, 300 }, + [4] = { 34.2, 87.3, 408, 300 }, + [5] = { 30.7, 87.2, 408, 300 }, + [6] = { 29, 87.1, 408, 300 }, + [7] = { 30.6, 84.8, 408, 300 }, + }, + ["lvl"] = "50-51", + }, + [91842] = { + ["coords"] = { + [1] = { 36.7, 88, 408, 300 }, + [2] = { 33.9, 85.1, 408, 300 }, + [3] = { 37, 84.5, 408, 300 }, + [4] = { 32.1, 84.5, 408, 300 }, + [5] = { 34, 82.5, 408, 300 }, + [6] = { 35.4, 82.3, 408, 300 }, + }, + ["lvl"] = "51-52", + }, + [91843] = { + ["coords"] = { + [1] = { 33.9, 90.3, 408, 300 }, + [2] = { 30.4, 90, 408, 300 }, + [3] = { 35.8, 89.6, 408, 300 }, + [4] = { 33.3, 89, 408, 300 }, + [5] = { 27.2, 88.7, 408, 300 }, + [6] = { 31.7, 88.2, 408, 300 }, + }, + ["lvl"] = "52-53", + }, + [91844] = { + ["coords"] = { + [1] = { 35.9, 65.8, 409, 300 }, + [2] = { 36.7, 65.1, 409, 300 }, + [3] = { 37, 64.4, 409, 300 }, + [4] = { 38.2, 64.3, 409, 300 }, + [5] = { 36.3, 64.2, 409, 300 }, + [6] = { 37, 62.3, 409, 300 }, + [7] = { 36.6, 61.1, 409, 300 }, + [8] = { 34, 60.1, 409, 300 }, + [9] = { 33.5, 59.2, 409, 300 }, + [10] = { 33.8, 58.8, 409, 300 }, + [11] = { 35.3, 58.8, 409, 300 }, + [12] = { 35, 52.7, 409, 300 }, + [13] = { 34.5, 52.7, 409, 300 }, + [14] = { 35.5, 52, 409, 300 }, + [15] = { 34.6, 51.8, 409, 300 }, + [16] = { 36.3, 51.7, 409, 300 }, + [17] = { 48.5, 43.5, 409, 300 }, + [18] = { 48.6, 42.3, 409, 300 }, + [19] = { 47.9, 41.8, 409, 300 }, + [20] = { 47.3, 41.2, 409, 300 }, + [21] = { 48.3, 41, 409, 300 }, + [22] = { 47.6, 41, 409, 300 }, + [23] = { 47.8, 40.9, 409, 300 }, + [24] = { 48.1, 40.4, 409, 300 }, + }, + ["lvl"] = "50-51", + }, + [91845] = { + ["coords"] = { + [1] = { 25.8, 30.8, 408, 300 }, + [2] = { 36.8, 63.6, 409, 300 }, + [3] = { 35.8, 61.6, 409, 300 }, + [4] = { 33.7, 58.7, 409, 300 }, + [5] = { 32.9, 58.5, 409, 300 }, + [6] = { 33.2, 57.7, 409, 300 }, + [7] = { 36.1, 54, 409, 300 }, + [8] = { 34.4, 53.8, 409, 300 }, + [9] = { 35, 53.1, 409, 300 }, + [10] = { 35.2, 51.3, 409, 300 }, + }, + ["lvl"] = "52-53", + }, + [91846] = { + ["coords"] = { + [1] = { 34.9, 52.7, 409, 300 }, + }, + ["lvl"] = "54", + }, + [91847] = { + ["coords"] = { + [1] = { 22.6, 33.2, 408, 300 }, + [2] = { 26.4, 31.4, 408, 300 }, + [3] = { 20.8, 30.9, 408, 300 }, + [4] = { 26.1, 29.6, 408, 300 }, + [5] = { 23.1, 25.6, 408, 300 }, + [6] = { 22.2, 24.5, 408, 300 }, + [7] = { 26, 23.4, 408, 300 }, + [8] = { 22.8, 21.4, 408, 300 }, + [9] = { 20.7, 18.7, 408, 300 }, + [10] = { 20.1, 17.7, 408, 300 }, + [11] = { 22.4, 16.5, 408, 300 }, + [12] = { 23.8, 12.2, 408, 300 }, + [13] = { 39.2, 97.5, 409, 300 }, + [14] = { 38.5, 96.4, 409, 300 }, + [15] = { 41, 95.2, 409, 300 }, + [16] = { 42.5, 90.6, 409, 300 }, + [17] = { 37.2, 64.5, 409, 300 }, + [18] = { 37.1, 64.3, 409, 300 }, + [19] = { 36.1, 62.9, 409, 300 }, + [20] = { 38.3, 62.6, 409, 300 }, + [21] = { 32.5, 59.7, 409, 300 }, + [22] = { 33.7, 58.9, 409, 300 }, + [23] = { 34.7, 58.3, 409, 300 }, + [24] = { 47.5, 41.1, 409, 300 }, + [25] = { 48.3, 40.4, 409, 300 }, + }, + ["lvl"] = "51-52", + }, + [91848] = { + ["coords"] = { + [1] = { 60.5, 75.7, 409, 300 }, + [2] = { 60.8, 74.7, 409, 300 }, + [3] = { 63.9, 74.3, 409, 300 }, + [4] = { 59.3, 74.1, 409, 300 }, + [5] = { 61.8, 73.5, 409, 300 }, + [6] = { 62.7, 73.1, 409, 300 }, + [7] = { 61.6, 72.5, 409, 300 }, + [8] = { 63.1, 71.6, 409, 300 }, + [9] = { 64.2, 71.6, 409, 300 }, + [10] = { 62.5, 71.3, 409, 300 }, + [11] = { 65.3, 71.2, 409, 300 }, + [12] = { 63.3, 69.5, 409, 300 }, + [13] = { 45.3, 58.2, 409, 300 }, + [14] = { 44.6, 56.2, 409, 300 }, + [15] = { 43.8, 56, 409, 300 }, + [16] = { 45.4, 55.4, 409, 300 }, + [17] = { 44.4, 55.2, 409, 300 }, + [18] = { 40.7, 44.1, 409, 465 }, + [19] = { 41.9, 43.2, 409, 300 }, + [20] = { 53.3, 39.4, 409, 300 }, + [21] = { 40.3, 38.9, 409, 300 }, + [22] = { 53.2, 38.1, 409, 300 }, + [23] = { 54.2, 36.9, 409, 300 }, + [24] = { 52.4, 36.6, 409, 300 }, + [25] = { 51.2, 36, 409, 300 }, + [26] = { 48.5, 36, 409, 300 }, + [27] = { 53.1, 35.4, 409, 300 }, + [28] = { 48.4, 35.4, 409, 300 }, + [29] = { 44.2, 34.7, 409, 300 }, + [30] = { 43.6, 33.4, 409, 300 }, + [31] = { 42.8, 32.1, 409, 300 }, + [32] = { 45.4, 29.8, 409, 300 }, + [33] = { 46.6, 29.8, 409, 300 }, + [34] = { 44.1, 29.2, 409, 300 }, + }, + ["lvl"] = "49-50", + }, + [91849] = { + ["coords"] = { + [1] = { 39.4, 43.9, 409, 300 }, + [2] = { 37.4, 43.2, 409, 300 }, + [3] = { 38.7, 42.8, 409, 300 }, + [4] = { 43.1, 42.6, 409, 300 }, + [5] = { 39.6, 42.5, 409, 300 }, + [6] = { 35.1, 41.9, 409, 300 }, + [7] = { 40.3, 41.8, 409, 300 }, + [8] = { 39.1, 41.2, 409, 300 }, + [9] = { 36.9, 41, 409, 300 }, + [10] = { 35.9, 40.7, 409, 300 }, + [11] = { 43.4, 40.2, 409, 300 }, + [12] = { 37.8, 40, 409, 300 }, + [13] = { 41.8, 39.6, 409, 300 }, + [14] = { 43.3, 38.9, 409, 300 }, + [15] = { 39.2, 38, 409, 300 }, + [16] = { 43.1, 36.5, 409, 300 }, + [17] = { 35.6, 36.4, 409, 300 }, + [18] = { 38.6, 35.9, 409, 300 }, + [19] = { 35.9, 34.6, 409, 300 }, + [20] = { 38.7, 34.5, 409, 300 }, + [21] = { 42.6, 34.4, 409, 300 }, + [22] = { 40, 33.9, 409, 300 }, + [23] = { 33.9, 33.6, 409, 300 }, + [24] = { 37.7, 32.8, 409, 300 }, + [25] = { 36.5, 32.8, 409, 300 }, + [26] = { 33.7, 32, 409, 300 }, + [27] = { 40.6, 30.2, 409, 300 }, + [28] = { 38.7, 29.7, 409, 300 }, + [29] = { 43, 29.6, 409, 300 }, + [30] = { 37.5, 29.3, 409, 300 }, + [31] = { 41.7, 28.8, 409, 300 }, + [32] = { 36.2, 28.4, 409, 300 }, + [33] = { 39, 28.3, 409, 300 }, + [34] = { 46, 28.2, 409, 300 }, + [35] = { 37, 28, 409, 300 }, + [36] = { 46.6, 27.9, 409, 300 }, + [37] = { 38.5, 26.7, 409, 300 }, + [38] = { 36.1, 26.6, 409, 300 }, + [39] = { 39.3, 26.3, 409, 300 }, + [40] = { 37.8, 23.5, 409, 300 }, + }, + ["lvl"] = "50-51", + }, + [91850] = { + ["coords"] = { + [1] = { 40.4, 44.1, 409, 300 }, + [2] = { 38.8, 44.1, 409, 300 }, + [3] = { 43.2, 28.1, 409, 300 }, + [4] = { 37.9, 27.7, 409, 300 }, + [5] = { 38.4, 27.1, 409, 300 }, + }, + ["lvl"] = "49-50", + }, + [91851] = { + ["coords"] = { + [1] = { 63.8, 74.3, 409, 300 }, + [2] = { 63, 72, 409, 300 }, + [3] = { 65.9, 71.6, 409, 300 }, + [4] = { 61.4, 71.4, 409, 300 }, + [5] = { 62.7, 70.1, 409, 300 }, + [6] = { 63.7, 69.4, 409, 300 }, + [7] = { 45.6, 58.2, 409, 300 }, + [8] = { 40.1, 44.2, 409, 300 }, + [9] = { 39.8, 44.2, 409, 300 }, + [10] = { 38.3, 43.9, 409, 300 }, + [11] = { 35.6, 43, 409, 300 }, + [12] = { 41.6, 42.1, 409, 300 }, + [13] = { 41.6, 40.6, 409, 377 }, + [14] = { 39.8, 40.3, 409, 300 }, + [15] = { 34.3, 36.7, 409, 300 }, + [16] = { 37.6, 34.4, 409, 300 }, + [17] = { 32.9, 32.4, 409, 300 }, + [18] = { 37.1, 30.5, 409, 300 }, + [19] = { 42.2, 30.2, 409, 300 }, + [20] = { 47, 28.9, 409, 300 }, + [21] = { 36.3, 28.8, 409, 300 }, + [22] = { 39.9, 28.4, 409, 300 }, + [23] = { 43, 27.9, 409, 433 }, + [24] = { 37.5, 26.9, 409, 300 }, + [25] = { 37.9, 26.5, 409, 300 }, + [26] = { 36.8, 26.1, 409, 300 }, + [27] = { 37.1, 25, 409, 300 }, + }, + ["lvl"] = "50-51", + }, + [91852] = { + ["coords"] = { + [1] = { 38.6, 44.1, 409, 300 }, + [2] = { 43.3, 41.3, 409, 300 }, + [3] = { 41.4, 40.7, 409, 300 }, + [4] = { 35.9, 38.9, 409, 300 }, + [5] = { 37.6, 38.3, 409, 300 }, + [6] = { 41.9, 37.3, 409, 300 }, + [7] = { 35.1, 33.2, 409, 300 }, + [8] = { 40.8, 31.7, 409, 300 }, + [9] = { 43.4, 28.2, 409, 300 }, + [10] = { 38.4, 25.6, 409, 300 }, + [11] = { 37.3, 22.7, 409, 300 }, + }, + ["lvl"] = "50-51", + }, + [91853] = { + ["coords"] = { + [1] = { 34.5, 26.8, 409, 300 }, + }, + ["lvl"] = "53", + }, + [91854] = { + ["coords"] = { + [1] = { 32.6, 25.9, 409, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "55", + }, + [91855] = { + ["coords"] = { + [1] = { 66, 70.2, 409, 300 }, + }, + ["lvl"] = "52", + }, + [91856] = { + ["coords"] = { + [1] = { 65.9, 70.1, 409, 300 }, + }, + ["lvl"] = "51-52", + }, + [91857] = { + ["coords"] = { + [1] = { 72.6, 68.2, 409, 300 }, + [2] = { 73, 66.2, 409, 300 }, + [3] = { 70.7, 66, 409, 300 }, + [4] = { 74.2, 65.6, 409, 300 }, + [5] = { 71.6, 65.6, 409, 300 }, + [6] = { 69.8, 65, 409, 300 }, + [7] = { 70.8, 64.3, 409, 300 }, + [8] = { 72.1, 64.2, 409, 300 }, + [9] = { 72.4, 63.7, 409, 300 }, + [10] = { 70.5, 62.4, 409, 300 }, + [11] = { 74.7, 62.2, 409, 300 }, + [12] = { 74.3, 60.5, 409, 300 }, + [13] = { 73.5, 58.8, 409, 300 }, + [14] = { 74.5, 57.9, 409, 300 }, + [15] = { 71.3, 57.2, 409, 300 }, + [16] = { 74, 57.1, 409, 300 }, + [17] = { 69.6, 54.8, 409, 300 }, + [18] = { 68.6, 54.3, 409, 300 }, + [19] = { 68.3, 54.1, 409, 300 }, + [20] = { 67.8, 53.6, 409, 300 }, + [21] = { 69.3, 53.5, 409, 300 }, + [22] = { 71.4, 53.4, 409, 300 }, + [23] = { 67.1, 53.3, 409, 300 }, + [24] = { 61.2, 18.4, 409, 300 }, + [25] = { 63, 17.9, 409, 300 }, + [26] = { 60.9, 16.7, 409, 300 }, + [27] = { 64.3, 16.7, 409, 300 }, + [28] = { 60.3, 15.3, 409, 300 }, + [29] = { 62.4, 14.9, 409, 300 }, + [30] = { 64.4, 14.8, 409, 300 }, + [31] = { 63.9, 14.3, 409, 300 }, + [32] = { 60.8, 14.2, 409, 300 }, + [33] = { 63, 14.2, 409, 300 }, + [34] = { 62.1, 14.1, 409, 300 }, + [35] = { 63.5, 14, 409, 300 }, + [36] = { 61.3, 13.8, 409, 300 }, + [37] = { 62.8, 13.3, 409, 300 }, + [38] = { 63.7, 12.4, 409, 300 }, + [39] = { 61.2, 12.1, 409, 300 }, + [40] = { 62.4, 12, 409, 300 }, + }, + ["lvl"] = "51-52", + }, + [91858] = { + ["coords"] = { + [1] = { 72.1, 63.3, 409, 300 }, + [2] = { 70.5, 57, 409, 300 }, + [3] = { 69.1, 55.9, 409, 300 }, + [4] = { 71.3, 55.2, 409, 300 }, + [5] = { 70.5, 53, 409, 300 }, + [6] = { 65.5, 52.6, 409, 300 }, + [7] = { 61.6, 15.4, 409, 300 }, + [8] = { 61.5, 15, 409, 300 }, + }, + ["lvl"] = "48-49", + }, + [91860] = { + ["coords"] = { + [1] = { 72.5, 63.2, 409, 300 }, + [2] = { 72.6, 62.1, 409, 300 }, + [3] = { 71.8, 61.1, 409, 300 }, + [4] = { 73.1, 58.1, 409, 300 }, + [5] = { 71.5, 57, 409, 300 }, + [6] = { 71.3, 56.6, 409, 300 }, + [7] = { 68.5, 53.8, 409, 300 }, + [8] = { 63.1, 13.8, 409, 300 }, + [9] = { 63.7, 13.7, 409, 300 }, + [10] = { 61.6, 13.5, 409, 300 }, + }, + ["lvl"] = "49-50", + }, + [91861] = { + ["coords"] = { + [1] = { 73.3, 61.6, 409, 300 }, + [2] = { 69.4, 57.3, 409, 300 }, + }, + ["lvl"] = "49-51", + }, + [91862] = { + ["coords"] = { + [1] = { 71.7, 64.3, 409, 300 }, + [2] = { 72.1, 62.4, 409, 300 }, + [3] = { 69.9, 60.8, 409, 300 }, + [4] = { 72.5, 57.9, 409, 300 }, + [5] = { 70.5, 56, 409, 300 }, + [6] = { 71.9, 55.9, 409, 300 }, + [7] = { 70.4, 54.1, 409, 300 }, + [8] = { 69.5, 52.9, 409, 300 }, + }, + ["lvl"] = "49-50", + }, + [91863] = { + ["coords"] = { + [1] = { 70.8, 67.8, 409, 408 }, + }, + ["lvl"] = "53", + }, + [91864] = { + ["coords"] = {}, + ["lvl"] = "55", + }, + [91865] = { + ["coords"] = { + [1] = { 52.9, 49.4, 409, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "52", + }, + [91866] = { + ["coords"] = { + [1] = { 53.4, 50.5, 409, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "52", + ["rnk"] = "1", + }, + [91867] = { + ["coords"] = { + [1] = { 52.9, 50.6, 409, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "53", + ["rnk"] = "1", + }, + [91868] = { + ["coords"] = { + [1] = { 53.4, 49.4, 409, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "51", + ["rnk"] = "1", + }, + [91869] = { + ["coords"] = { + [1] = { 51.9, 51.9, 409, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "51", + ["rnk"] = "1", + }, + [91870] = { + ["coords"] = { + [1] = { 53.1, 52.5, 409, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "52", + ["rnk"] = "1", + }, + [91871] = { + ["coords"] = { + [1] = { 52.7, 49.7, 409, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "54", + ["rnk"] = "1", + }, + [91872] = { + ["coords"] = { + [1] = { 61.5, 44.6, 409, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45-53", + }, + [91873] = { + ["coords"] = { + [1] = { 60.7, 44.5, 409, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45-53", + }, + [91874] = { + ["coords"] = { + [1] = { 61, 44.3, 409, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45-53", + }, + [91875] = { + ["coords"] = { + [1] = { 60.4, 44.5, 409, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45-53", + }, + [91876] = { + ["coords"] = { + [1] = { 59.3, 41.5, 409, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45-53", + }, + [91877] = { + ["coords"] = { + [1] = { 59, 40, 409, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45-53", + }, + [91878] = { + ["coords"] = { + [1] = { 59.5, 39.7, 409, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45-53", + }, + [91879] = { + ["coords"] = { + [1] = { 59.6, 40.2, 409, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45-53", + }, + [91880] = { + ["coords"] = { + [1] = { 62.7, 40.1, 409, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45-53", + }, + [91881] = { + ["coords"] = { + [1] = { 62.3, 41.7, 409, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45-53", + }, + [91882] = { + ["coords"] = { + [1] = { 60.8, 42.6, 409, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45-53", + }, + [91883] = { + ["coords"] = { + [1] = { 61.6, 43.6, 409, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45-53", + }, + [91884] = { + ["coords"] = { + [1] = { 62.3, 38.6, 409, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45-53", + }, + [91885] = { + ["coords"] = { + [1] = { 62.4, 39.5, 409, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45-53", + }, + [91886] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "45-53", + }, + [91887] = { + ["coords"] = { + [1] = { 62.7, 39, 409, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45-53", + }, + [91888] = { + ["coords"] = { + [1] = { 60.9, 44.2, 409, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45-53", + }, + [91889] = { + ["coords"] = { + [1] = { 60.5, 42.8, 409, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45-53", + }, + [91890] = { + ["coords"] = { + [1] = { 58.1, 40.9, 409, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45-53", + }, + [91891] = { + ["coords"] = { + [1] = { 65.7, 24.1, 46, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [91892] = { + ["coords"] = {}, + ["lvl"] = "48-49", + }, + [91893] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [91900] = { + ["coords"] = { + [1] = { 55.2, 37, 5053, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [91901] = { + ["coords"] = { + [1] = { 36.4, 48, 5053, 268 }, + }, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [91902] = { + ["coords"] = { + [1] = { 39.9, 60.2, 5053, 183 }, + }, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [91903] = { + ["coords"] = { + [1] = { 41.3, 67.8, 5053, 298 }, + }, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [91904] = { + ["coords"] = { + [1] = { 55.5, 66.2, 5053, 180 }, + }, + ["fac"] = "AH", + ["lvl"] = "35", + }, + [91905] = { + ["coords"] = { + [1] = { 60.4, 45.2, 409, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45-53", + }, + [91906] = { + ["coords"] = {}, + ["lvl"] = "53", + ["rnk"] = "1", + }, + [91910] = { + ["coords"] = { + [1] = { 27.6, 89.4, 5086, 18000 }, + [2] = { 27.2, 66.8, 5086, 18000 }, + [3] = { 39.4, 46.1, 5086, 18000 }, + [4] = { 58.8, 45.4, 5086, 18000 }, + [5] = { 41.4, 37.9, 5086, 18000 }, + [6] = { 41.7, 29.6, 5086, 18000 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [91911] = { + ["coords"] = { + [1] = { 31.1, 78.1, 5086, 18000 }, + [2] = { 56.8, 45.4, 5086, 18000 }, + [3] = { 58.7, 37.3, 5086, 18000 }, + [4] = { 56.6, 29.3, 5086, 18000 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [91912] = { + ["coords"] = { + [1] = { 74.3, 85.3, 5086, 18000 }, + [2] = { 85.4, 84.9, 5086, 18000 }, + [3] = { 70.3, 80.2, 5086, 18000 }, + [4] = { 70.1, 73.5, 5086, 18000 }, + [5] = { 73.9, 68.2, 5086, 18000 }, + [6] = { 85, 67.6, 5086, 18000 }, + [7] = { 44.3, 47.6, 5086, 18000 }, + [8] = { 44.1, 44.3, 5086, 18000 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [91913] = { + ["coords"] = { + [1] = { 41.4, 46, 5086, 18000 }, + [2] = { 58.5, 29.1, 5086, 18000 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [91914] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [91915] = { + ["coords"] = { + [1] = { 79.8, 85.3, 5086, 18000 }, + [2] = { 90.6, 82.1, 5086, 18000 }, + [3] = { 90.3, 70.9, 5086, 18000 }, + [4] = { 79.5, 67.7, 5086, 18000 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [91916] = { + ["coords"] = { + [1] = { 89.4, 69.4, 5086, 604800 }, + }, + ["lvl"] = "62", + ["rnk"] = "3", + }, + [91917] = { + ["coords"] = { + [1] = { 19, 78.4, 5086, 604800 }, + }, + ["lvl"] = "62", + ["rnk"] = "3", + }, + [91918] = { + ["coords"] = { + [1] = { 61.7, 77.3, 5086, 18000 }, + [2] = { 38.7, 37.9, 5086, 18000 }, + [3] = { 56.6, 37.3, 5086, 18000 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [91919] = { + ["coords"] = { + [1] = { 43.7, 37.8, 5086, 604800 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [91920] = { + ["coords"] = { + [1] = { 91, 76.1, 5086, 604800 }, + }, + ["lvl"] = "62", + ["rnk"] = "3", + }, + [91922] = { + ["coords"] = { + [1] = { 64, 64.3, 5086, 18000 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [91923] = { + ["coords"] = { + [1] = { 32.8, 89.1, 5086, 18000 }, + [2] = { 64.6, 83.1, 5086, 18000 }, + [3] = { 76, 76.8, 5086, 18000 }, + [4] = { 87, 76.3, 5086, 18000 }, + [5] = { 32.3, 66.8, 5086, 18000 }, + [6] = { 80.4, 65.6, 5086, 18000 }, + [7] = { 92.7, 64.8, 5086, 18000 }, + [8] = { 77.7, 62.6, 5086, 18000 }, + [9] = { 82.6, 62.3, 5086, 18000 }, + [10] = { 72, 62.1, 5086, 18000 }, + [11] = { 71.8, 57.9, 5086, 18000 }, + [12] = { 75.4, 55.1, 5086, 18000 }, + [13] = { 76.4, 54.3, 5086, 18000 }, + [14] = { 40.2, 50.1, 5086, 18000 }, + [15] = { 59.1, 49.4, 5086, 18000 }, + [16] = { 77.7, 48.8, 5086, 18000 }, + [17] = { 80.5, 48.8, 5086, 18000 }, + [18] = { 39.5, 42, 5086, 18000 }, + [19] = { 59.2, 41.3, 5086, 18000 }, + [20] = { 51.9, 41, 5086, 18000 }, + [21] = { 80.1, 36.6, 5086, 18000 }, + [22] = { 39.1, 34, 5086, 18000 }, + [23] = { 59.3, 33.2, 5086, 18000 }, + [24] = { 38, 28.8, 5086, 18000 }, + [25] = { 38.1, 25.8, 5086, 18000 }, + [26] = { 58.7, 25, 5086, 18000 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [91924] = { + ["coords"] = { + [1] = { 34.8, 73.9, 41, 10800 }, + [2] = { 36.5, 73.8, 41, 10800 }, + [3] = { 21.7, 87.8, 5086, 18000 }, + [4] = { 16.8, 87.6, 5086, 18000 }, + [5] = { 24.1, 86.4, 5086, 18000 }, + [6] = { 89.1, 84.5, 5086, 18000 }, + [7] = { 25.7, 84.1, 5086, 18000 }, + [8] = { 70.8, 83.8, 5086, 18000 }, + [9] = { 92.6, 83.7, 5086, 18000 }, + [10] = { 89.9, 83.1, 5086, 18000 }, + [11] = { 93.4, 82.9, 5086, 18000 }, + [12] = { 29, 82, 5086, 18000 }, + [13] = { 64.7, 81.2, 5086, 18000 }, + [14] = { 67.7, 78.8, 5086, 18000 }, + [15] = { 60, 75.9, 5086, 18000 }, + [16] = { 29.2, 74.9, 5086, 18000 }, + [17] = { 25.8, 74.4, 5086, 18000 }, + [18] = { 70, 73.9, 5086, 18000 }, + [19] = { 60.2, 72.2, 5086, 18000 }, + [20] = { 24.9, 70.7, 5086, 18000 }, + [21] = { 64, 70.2, 5086, 18000 }, + [22] = { 16.9, 70.1, 5086, 18000 }, + [23] = { 67.6, 69.9, 5086, 18000 }, + [24] = { 22.9, 69, 5086, 18000 }, + [25] = { 58.3, 68.6, 5086, 18000 }, + [26] = { 70.1, 67.9, 5086, 18000 }, + [27] = { 19.5, 67.7, 5086, 18000 }, + [28] = { 92.4, 66.9, 5086, 18000 }, + [29] = { 94.7, 66.9, 5086, 18000 }, + [30] = { 90.3, 66.7, 5086, 18000 }, + [31] = { 60.4, 65.8, 5086, 18000 }, + [32] = { 68.9, 65.3, 5086, 18000 }, + [33] = { 68, 64.3, 5086, 18000 }, + [34] = { 91.9, 63.6, 5086, 18000 }, + [35] = { 68.5, 63.3, 5086, 18000 }, + [36] = { 90.2, 63.2, 5086, 18000 }, + [37] = { 64, 63.1, 5086, 18000 }, + [38] = { 57.9, 60.8, 5086, 18000 }, + [39] = { 68.3, 60.8, 5086, 18000 }, + [40] = { 68.9, 59.9, 5086, 18000 }, + [41] = { 69.5, 58.9, 5086, 18000 }, + [42] = { 60.5, 57.4, 5086, 18000 }, + [43] = { 45.2, 57.1, 5086, 18000 }, + [44] = { 68.8, 56.8, 5086, 18000 }, + [45] = { 90.8, 56.7, 5086, 18000 }, + [46] = { 84.4, 56.5, 5086, 18000 }, + [47] = { 92.5, 56.4, 5086, 18000 }, + [48] = { 52.3, 55.2, 5086, 18000 }, + [49] = { 68.7, 54.8, 5086, 18000 }, + [50] = { 67, 54.5, 5086, 18000 }, + [51] = { 57.8, 53.7, 5086, 18000 }, + [52] = { 48.2, 53.3, 5086, 18000 }, + [53] = { 82.6, 52.1, 5086, 18000 }, + [54] = { 85.7, 52.1, 5086, 18000 }, + [55] = { 63.5, 51.7, 5086, 18000 }, + [56] = { 85.7, 49.8, 5086, 18000 }, + [57] = { 33.4, 49.8, 5086, 18000 }, + [58] = { 46.9, 49.7, 5086, 18000 }, + [59] = { 76, 49.6, 5086, 18000 }, + [60] = { 49.5, 49.3, 5086, 18000 }, + [61] = { 61.3, 48.1, 5086, 18000 }, + [62] = { 71.7, 47.7, 5086, 18000 }, + [63] = { 57.3, 47.6, 5086, 18000 }, + [64] = { 67.8, 47.3, 5086, 18000 }, + [65] = { 35.3, 45.7, 5086, 18000 }, + [66] = { 30.9, 45.2, 5086, 18000 }, + [67] = { 78, 45, 5086, 18000 }, + [68] = { 68.5, 44.5, 5086, 18000 }, + [69] = { 74.2, 44, 5086, 18000 }, + [70] = { 50.4, 42.6, 5086, 18000 }, + [71] = { 47.1, 41.1, 5086, 18000 }, + [72] = { 76.4, 40.3, 5086, 18000 }, + [73] = { 35.3, 40, 5086, 18000 }, + [74] = { 33.1, 39.4, 5086, 18000 }, + [75] = { 80.4, 38.8, 5086, 18000 }, + [76] = { 60.3, 38.6, 5086, 18000 }, + [77] = { 50.7, 36.2, 5086, 18000 }, + [78] = { 60.2, 35.6, 5086, 18000 }, + [79] = { 34, 35.5, 5086, 18000 }, + [80] = { 82, 34.8, 5086, 18000 }, + [81] = { 70.5, 34.3, 5086, 18000 }, + [82] = { 79.9, 32.3, 5086, 18000 }, + [83] = { 69.1, 31.8, 5086, 18000 }, + [84] = { 47.2, 31.5, 5086, 18000 }, + [85] = { 42.7, 30.6, 5086, 18000 }, + [86] = { 33.8, 30.6, 5086, 18000 }, + [87] = { 40.6, 30.4, 5086, 18000 }, + [88] = { 82.1, 29.5, 5086, 18000 }, + [89] = { 51, 29.3, 5086, 18000 }, + [90] = { 41, 28.8, 5086, 18000 }, + [91] = { 78.3, 27.9, 5086, 18000 }, + [92] = { 46.9, 25.8, 5086, 18000 }, + [93] = { 50.4, 25.3, 5086, 18000 }, + [94] = { 31.7, 25.3, 5086, 18000 }, + [95] = { 76.7, 24.9, 5086, 18000 }, + [96] = { 53, 21.7, 5086, 18000 }, + [97] = { 46.8, 20.3, 5086, 18000 }, + [98] = { 51.6, 18.8, 5086, 18000 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [91925] = { + ["coords"] = { + [1] = { 73.2, 86.9, 5086, 18000 }, + [2] = { 55.3, 83, 5086, 18000 }, + [3] = { 73.1, 82.5, 5086, 18000 }, + [4] = { 86.8, 80.6, 5086, 18000 }, + [5] = { 61.5, 80.1, 5086, 18000 }, + [6] = { 95.2, 79.6, 5086, 18000 }, + [7] = { 78, 78.4, 5086, 18000 }, + [8] = { 83.5, 78.2, 5086, 18000 }, + [9] = { 77.8, 75, 5086, 18000 }, + [10] = { 83.4, 74.9, 5086, 18000 }, + [11] = { 61.3, 74.7, 5086, 18000 }, + [12] = { 55.3, 72.2, 5086, 18000 }, + [13] = { 86.7, 72.1, 5086, 18000 }, + [14] = { 72.9, 71.3, 5086, 18000 }, + [15] = { 93.7, 68.5, 5086, 18000 }, + [16] = { 72.8, 56.4, 5086, 18000 }, + [17] = { 64.5, 54.6, 5086, 18000 }, + [18] = { 80, 51.2, 5086, 18000 }, + [19] = { 72.6, 50.2, 5086, 18000 }, + [20] = { 75.8, 49.4, 5086, 18000 }, + [21] = { 54.5, 48, 5086, 18000 }, + [22] = { 67.3, 47.8, 5086, 18000 }, + [23] = { 82.1, 47.7, 5086, 18000 }, + [24] = { 76.6, 46.8, 5086, 18000 }, + [25] = { 81.3, 44.7, 5086, 18000 }, + [26] = { 59.9, 44.5, 5086, 18000 }, + [27] = { 81.7, 44.2, 5086, 18000 }, + [28] = { 66.9, 44, 5086, 18000 }, + [29] = { 72.4, 44, 5086, 18000 }, + [30] = { 54.2, 43.9, 5086, 18000 }, + [31] = { 79.5, 43.8, 5086, 18000 }, + [32] = { 79.6, 39.6, 5086, 18000 }, + [33] = { 67.3, 37, 5086, 18000 }, + [34] = { 54, 35.7, 5086, 18000 }, + [35] = { 67.2, 28.8, 5086, 18000 }, + [36] = { 53.7, 27.6, 5086, 18000 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [91926] = { + ["coords"] = { + [1] = { 20.1, 87.9, 5086, 18000 }, + [2] = { 24.1, 87.4, 5086, 18000 }, + [3] = { 27.3, 83, 5086, 18000 }, + [4] = { 60.6, 78.9, 5086, 18000 }, + [5] = { 27.1, 75.6, 5086, 18000 }, + [6] = { 64.2, 75.4, 5086, 18000 }, + [7] = { 67.5, 72.9, 5086, 18000 }, + [8] = { 18.1, 70, 5086, 18000 }, + [9] = { 59.3, 69.7, 5086, 18000 }, + [10] = { 24.2, 69.3, 5086, 18000 }, + [11] = { 64.1, 65.8, 5086, 18000 }, + [12] = { 63.3, 63.1, 5086, 18000 }, + [13] = { 60.1, 51.6, 5086, 18000 }, + [14] = { 68.5, 51.4, 5086, 18000 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [91927] = { + ["coords"] = { + [1] = { 90.4, 68.7, 5086, 18000 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [91928] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "3", + }, + [91929] = { + ["coords"] = { + [1] = { 80.8, 86.5, 5086, 604800 }, + }, + ["lvl"] = "62", + ["rnk"] = "3", + }, + [91930] = { + ["coords"] = { + [1] = { 84.7, 83.7, 5086, 18000 }, + [2] = { 82.2, 82.9, 5086, 18000 }, + [3] = { 81.3, 79.8, 5086, 18000 }, + [4] = { 82.6, 75.9, 5086, 18000 }, + [5] = { 79.6, 75.6, 5086, 18000 }, + [6] = { 81.5, 72.9, 5086, 18000 }, + [7] = { 79.3, 72.1, 5086, 18000 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [91931] = { + ["coords"] = { + [1] = { 86.4, 43.8, 5086, 18000 }, + }, + ["fac"] = "AH", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [91932] = { + ["coords"] = { + [1] = { 40.1, 86.8, 5086, 18000 }, + [2] = { 43.7, 85.6, 5086, 18000 }, + [3] = { 40.8, 84.2, 5086, 18000 }, + [4] = { 46, 82.1, 5086, 18000 }, + [5] = { 41.9, 81.5, 5086, 18000 }, + [6] = { 55.5, 80.8, 5086, 18000 }, + [7] = { 50, 77.4, 5086, 18000 }, + [8] = { 38.3, 77.4, 5086, 18000 }, + [9] = { 45.2, 75.9, 5086, 18000 }, + [10] = { 43.7, 75.1, 5086, 18000 }, + [11] = { 55.3, 75, 5086, 18000 }, + [12] = { 42.7, 74.6, 5086, 18000 }, + [13] = { 45.9, 74.4, 5086, 18000 }, + [14] = { 40.9, 72.3, 5086, 18000 }, + [15] = { 44.1, 70.2, 5086, 18000 }, + [16] = { 48.2, 68.9, 5086, 18000 }, + }, + ["lvl"] = "60-61", + ["rnk"] = "1", + }, + [91950] = { + ["coords"] = { + [1] = { 60.3, 44.3, 409, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [91951] = { + ["coords"] = { + [1] = { 60.2, 44.1, 409, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [91952] = { + ["coords"] = { + [1] = { 61, 43.6, 409, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "45", + }, + [91953] = { + ["coords"] = { + [1] = { 57.1, 43.1, 409, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "44", + }, + [91954] = { + ["coords"] = { + [1] = { 63.9, 43.2, 409, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "43", + }, + [91955] = { + ["coords"] = { + [1] = { 58.5, 42.6, 409, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [91956] = { + ["coords"] = { + [1] = { 60.1, 39.6, 409, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "47", + }, + [91957] = { + ["coords"] = { + [1] = { 60.8, 44.3, 409, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [91958] = { + ["coords"] = { + [1] = { 48.1, 39.8, 409, 300 }, + }, + ["lvl"] = "50", + }, + [91959] = { + ["coords"] = { + [1] = { 60.3, 45, 409, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "48", + }, + [91960] = { + ["coords"] = { + [1] = { 66.1, 63.4, 408, 300 }, + [2] = { 67.7, 62.6, 408, 300 }, + [3] = { 65.4, 62.3, 408, 300 }, + [4] = { 66.8, 62.2, 408, 300 }, + [5] = { 68.7, 62.1, 408, 300 }, + [6] = { 68.4, 60.9, 408, 300 }, + [7] = { 65.2, 60, 408, 300 }, + [8] = { 65.8, 59.1, 408, 300 }, + [9] = { 67.6, 57.8, 408, 300 }, + [10] = { 63.3, 57, 408, 300 }, + [11] = { 66.3, 56.5, 408, 300 }, + [12] = { 65.6, 56.4, 408, 300 }, + [13] = { 67.6, 56, 408, 300 }, + [14] = { 61.2, 55.6, 408, 300 }, + [15] = { 64.3, 55.5, 408, 300 }, + [16] = { 62.5, 54.2, 408, 300 }, + [17] = { 61.3, 54.2, 408, 300 }, + [18] = { 66.4, 53.6, 408, 300 }, + [19] = { 62.9, 53, 408, 300 }, + [20] = { 64, 52.1, 408, 300 }, + [21] = { 62.1, 52, 408, 300 }, + [22] = { 66.3, 51.7, 408, 300 }, + [23] = { 64.8, 51.5, 408, 300 }, + [24] = { 60.8, 51.5, 408, 300 }, + [25] = { 65.6, 51.3, 408, 300 }, + [26] = { 62.2, 50.9, 408, 300 }, + [27] = { 61.5, 50.3, 408, 300 }, + [28] = { 66.2, 50.1, 408, 300 }, + [29] = { 61.1, 48.2, 408, 300 }, + }, + ["lvl"] = "48-50", + }, + [91961] = { + ["coords"] = { + [1] = { 52.9, 78.4, 408, 300 }, + [2] = { 52.8, 77, 408, 300 }, + [3] = { 51.1, 76.5, 408, 300 }, + [4] = { 54.6, 75.5, 408, 300 }, + [5] = { 52.6, 74.9, 408, 300 }, + [6] = { 51.4, 74.8, 408, 300 }, + [7] = { 54.5, 74.5, 408, 300 }, + [8] = { 50.9, 74, 408, 300 }, + [9] = { 51.6, 73.1, 408, 300 }, + [10] = { 55, 71.9, 408, 300 }, + [11] = { 53.1, 71.5, 408, 300 }, + [12] = { 55.9, 71.2, 408, 300 }, + [13] = { 54.3, 70.3, 408, 300 }, + [14] = { 50.7, 69.8, 408, 300 }, + [15] = { 53.2, 69.6, 408, 300 }, + [16] = { 55.9, 69.6, 408, 300 }, + [17] = { 51.6, 68.9, 408, 300 }, + [18] = { 58, 68.6, 408, 300 }, + [19] = { 56.1, 67.4, 408, 300 }, + [20] = { 57.7, 66.3, 408, 300 }, + [21] = { 57.4, 64.3, 408, 300 }, + [22] = { 57.1, 64, 408, 300 }, + [23] = { 43.1, 46.5, 408, 300 }, + [24] = { 49.1, 45.5, 408, 300 }, + [25] = { 43.3, 45, 408, 300 }, + [26] = { 49.2, 44.2, 408, 300 }, + [27] = { 44.2, 43.2, 408, 300 }, + [28] = { 47.1, 41.8, 408, 300 }, + }, + ["lvl"] = "52-53", + }, + [91962] = { + ["coords"] = { + [1] = { 72.6, 67.4, 408, 300 }, + [2] = { 72, 65.6, 408, 300 }, + [3] = { 72.6, 62.3, 408, 300 }, + [4] = { 71.4, 60.8, 408, 300 }, + [5] = { 69.8, 59.3, 408, 300 }, + [6] = { 69.8, 56.9, 408, 300 }, + [7] = { 69.7, 53.6, 408, 300 }, + [8] = { 68.6, 53.4, 408, 300 }, + [9] = { 67.7, 50.8, 408, 300 }, + [10] = { 67.6, 48.4, 408, 300 }, + [11] = { 64.5, 48.2, 408, 300 }, + [12] = { 63.6, 46.3, 408, 300 }, + }, + ["lvl"] = "49-51", + }, + [91963] = { + ["coords"] = { + [1] = { 61.1, 83, 408, 300 }, + [2] = { 60.1, 82.4, 408, 300 }, + [3] = { 61.2, 81.1, 408, 300 }, + [4] = { 59.5, 81.1, 408, 300 }, + [5] = { 60.2, 80, 408, 300 }, + [6] = { 61, 79.6, 408, 300 }, + [7] = { 59.4, 79.6, 408, 300 }, + [8] = { 59.9, 79.1, 408, 300 }, + [9] = { 61.3, 78.3, 408, 300 }, + [10] = { 60.4, 77.9, 408, 300 }, + [11] = { 61.3, 77, 408, 300 }, + [12] = { 59.4, 76.9, 408, 300 }, + [13] = { 60.9, 75.7, 408, 300 }, + }, + ["lvl"] = "52-53", + }, + [91964] = { + ["coords"] = { + [1] = { 65.5, 76.2, 408, 300 }, + [2] = { 64.9, 75.6, 408, 300 }, + [3] = { 66.2, 75.5, 408, 300 }, + [4] = { 68.2, 75.3, 408, 300 }, + [5] = { 68.9, 74.8, 408, 300 }, + [6] = { 66.8, 74.7, 408, 300 }, + [7] = { 67.3, 74.6, 408, 300 }, + [8] = { 65, 74.2, 408, 300 }, + [9] = { 65.9, 74.1, 408, 300 }, + [10] = { 69.4, 73.7, 408, 300 }, + [11] = { 66.7, 73.6, 408, 300 }, + [12] = { 70.6, 72.2, 408, 300 }, + [13] = { 69.7, 72.2, 408, 300 }, + [14] = { 68.3, 71.9, 408, 300 }, + [15] = { 67.3, 71.8, 408, 300 }, + [16] = { 65.7, 71.8, 408, 300 }, + [17] = { 71.2, 70.9, 408, 300 }, + [18] = { 65.3, 70.7, 408, 300 }, + [19] = { 72, 70.6, 408, 300 }, + [20] = { 69.5, 70.6, 408, 300 }, + [21] = { 66.6, 70.2, 408, 300 }, + [22] = { 67.5, 70.2, 408, 300 }, + [23] = { 66, 70.1, 408, 300 }, + [24] = { 72, 69.4, 408, 300 }, + [25] = { 68, 69.1, 408, 300 }, + }, + ["lvl"] = "49-51", + }, + [91965] = { + ["coords"] = { + [1] = { 69.3, 66.6, 408, 300 }, + [2] = { 69.7, 66.1, 408, 300 }, + [3] = { 62.9, 65.6, 408, 300 }, + [4] = { 69.4, 65.4, 408, 300 }, + [5] = { 63.6, 65.3, 408, 300 }, + [6] = { 64.2, 62.4, 408, 300 }, + [7] = { 66.3, 62.1, 408, 300 }, + [8] = { 65.5, 61, 408, 300 }, + [9] = { 64.2, 60.2, 408, 300 }, + [10] = { 63.8, 59.1, 408, 300 }, + [11] = { 63, 58.7, 408, 300 }, + [12] = { 66.9, 57, 408, 300 }, + [13] = { 61.9, 56.8, 408, 300 }, + [14] = { 61.9, 54.9, 408, 300 }, + [15] = { 67.2, 54, 408, 300 }, + [16] = { 61.3, 52.7, 408, 300 }, + [17] = { 61.7, 49.5, 408, 300 }, + }, + ["lvl"] = "49-51", + }, + [91966] = { + ["coords"] = { + [1] = { 56.7, 57.4, 408, 300 }, + [2] = { 54.4, 57.1, 408, 300 }, + [3] = { 59.6, 56.3, 408, 300 }, + [4] = { 52.8, 56, 408, 300 }, + [5] = { 55, 54.8, 408, 525 }, + [6] = { 53.7, 54.8, 408, 300 }, + [7] = { 55.4, 54.4, 408, 300 }, + [8] = { 53.9, 53.8, 408, 300 }, + [9] = { 54.1, 52.9, 408, 300 }, + [10] = { 52.6, 52.7, 408, 300 }, + [11] = { 55.1, 52, 408, 300 }, + [12] = { 53.8, 51.9, 408, 300 }, + [13] = { 53.9, 51, 408, 300 }, + [14] = { 54.8, 50.2, 408, 300 }, + [15] = { 54, 49.9, 408, 300 }, + [16] = { 55.1, 49.6, 408, 300 }, + [17] = { 54.6, 48.9, 408, 300 }, + [18] = { 48, 45, 408, 300 }, + [19] = { 45.5, 44.9, 408, 300 }, + [20] = { 44.9, 44.9, 408, 300 }, + [21] = { 47.1, 44.3, 408, 300 }, + [22] = { 44.4, 44.2, 408, 300 }, + [23] = { 46.3, 43.7, 408, 300 }, + [24] = { 46.8, 43.3, 408, 300 }, + }, + ["lvl"] = "51-52", + }, + [91967] = { + ["coords"] = { + [1] = { 28.2, 78.2, 408, 300 }, + [2] = { 27.5, 75, 408, 300 }, + [3] = { 28.8, 74.6, 408, 300 }, + [4] = { 31, 74, 408, 300 }, + [5] = { 28.9, 72.5, 408, 300 }, + [6] = { 35.4, 72, 408, 300 }, + [7] = { 32.5, 71.4, 408, 300 }, + [8] = { 27.6, 71.1, 408, 300 }, + [9] = { 34.2, 71.1, 408, 300 }, + [10] = { 36.4, 70.6, 408, 300 }, + [11] = { 32.1, 70.1, 408, 300 }, + [12] = { 28.3, 69.2, 408, 300 }, + [13] = { 33.3, 69.1, 408, 300 }, + [14] = { 34.9, 68.7, 408, 300 }, + [15] = { 31.2, 68.6, 408, 300 }, + [16] = { 27, 68.4, 408, 300 }, + [17] = { 35.8, 68.3, 408, 300 }, + [18] = { 32.6, 68, 408, 300 }, + [19] = { 28.4, 67.2, 408, 300 }, + [20] = { 36.2, 66.8, 408, 300 }, + [21] = { 35.4, 65.9, 408, 300 }, + [22] = { 31.8, 65.1, 408, 300 }, + [23] = { 33.5, 64.9, 408, 300 }, + [24] = { 27.9, 64.9, 408, 300 }, + [25] = { 34.8, 64.7, 408, 300 }, + [26] = { 32.8, 63.6, 408, 300 }, + [27] = { 33.8, 63.6, 408, 300 }, + [28] = { 31.4, 63.3, 408, 300 }, + [29] = { 27.2, 63.3, 408, 300 }, + [30] = { 29, 63, 408, 300 }, + [31] = { 35.7, 62.8, 408, 300 }, + [32] = { 34.1, 62.6, 408, 300 }, + [33] = { 30.5, 62.2, 408, 300 }, + [34] = { 35.6, 61.7, 408, 300 }, + [35] = { 35.4, 60.7, 408, 300 }, + }, + ["lvl"] = "53-54", + }, + [91968] = { + ["coords"] = { + [1] = { 23.7, 28.3, 408, 300 }, + }, + ["lvl"] = "53", + ["rnk"] = "1", + }, + [91969] = { + ["coords"] = { + [1] = { 22.2, 69.7, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "15", + }, + [91970] = { + ["coords"] = { + [1] = { 22.2, 69.4, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "17", + }, + [91971] = { + ["coords"] = { + [1] = { 22.3, 69.7, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "16", + }, + [91972] = { + ["coords"] = { + [1] = { 4.6, 61.8, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [91973] = { + ["coords"] = { + [1] = { 4.6, 62.4, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "45", + }, + [91974] = { + ["coords"] = { + [1] = { 12, 53.3, 85, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "20", + ["rnk"] = "1", + }, + [91975] = { + ["coords"] = { + [1] = { 11.9, 55.4, 85, 300 }, + [2] = { 12.4, 55, 85, 300 }, + [3] = { 11.8, 54.7, 85, 300 }, + [4] = { 12, 54.1, 85, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "18-20", + ["rnk"] = "1", + }, + [91976] = { + ["coords"] = { + [1] = { 12, 55.2, 85, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [91977] = { + ["coords"] = { + [1] = { 13.9, 55.1, 85, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "15", + }, + [91978] = { + ["coords"] = { + [1] = { 13.1, 54.4, 85, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "14", + }, + [91979] = { + ["coords"] = { + [1] = { 13.8, 53, 85, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "14", + }, + [91980] = { + ["coords"] = { + [1] = { 16.3, 54.2, 85, 300 }, + [2] = { 16.7, 54.1, 85, 230 }, + [3] = { 16.5, 54.1, 85, 300 }, + [4] = { 16.2, 53.2, 85, 439 }, + [5] = { 17, 52.8, 85, 354 }, + [6] = { 15.7, 52.3, 85, 410 }, + [7] = { 17.2, 52, 85, 316 }, + [8] = { 16.6, 51.9, 85, 356 }, + [9] = { 16.2, 51.5, 85, 345 }, + [10] = { 16.9, 51.3, 85, 366 }, + }, + ["fac"] = "A", + ["lvl"] = "14-15", + }, + [91981] = { + ["coords"] = { + [1] = { 17.3, 52.9, 85, 300 }, + [2] = { 17.8, 51.4, 85, 481 }, + [3] = { 17.2, 49.8, 85, 300 }, + [4] = { 16.8, 49.7, 85, 180 }, + [5] = { 17.4, 49.6, 85, 300 }, + [6] = { 17, 49.5, 85, 300 }, + [7] = { 17.3, 49.2, 85, 300 }, + [8] = { 17.5, 49.1, 85, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "15-17", + }, + [91982] = { + ["coords"] = { + [1] = { 4.7, 61.3, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [91983] = { + ["coords"] = { + [1] = { 4.6, 61.3, 85, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "18", + }, + [91984] = { + ["coords"] = { + [1] = { 23.6, 68, 85, 300 }, + [2] = { 22.8, 67.2, 85, 300 }, + [3] = { 24.6, 66.6, 85, 300 }, + [4] = { 16.5, 64.8, 85, 300 }, + [5] = { 21.6, 64.6, 85, 300 }, + [6] = { 23.4, 64.5, 85, 300 }, + [7] = { 22.4, 64.5, 85, 300 }, + [8] = { 23.2, 62.6, 85, 300 }, + [9] = { 17.8, 60, 85, 300 }, + [10] = { 17.9, 57.4, 85, 300 }, + [11] = { 17.2, 55.7, 85, 300 }, + }, + ["lvl"] = "15-18", + }, + [91985] = { + ["coords"] = { + [1] = { 23.7, 68.1, 85, 300 }, + [2] = { 23.3, 62.7, 85, 300 }, + [3] = { 17.2, 55.9, 85, 300 }, + }, + ["lvl"] = "13-14", + }, + [91986] = { + ["coords"] = { + [1] = { 18.1, 73.1, 85, 300 }, + [2] = { 15.7, 72.7, 85, 300 }, + [3] = { 17, 72.6, 85, 300 }, + [4] = { 13.6, 71.8, 85, 300 }, + [5] = { 18.8, 70.4, 85, 300 }, + [6] = { 17.5, 67.7, 85, 300 }, + }, + ["lvl"] = "17-18", + }, + [91987] = { + ["coords"] = { + [1] = { 23.9, 79.6, 85, 300 }, + [2] = { 22.9, 78.2, 85, 300 }, + [3] = { 20.7, 74.9, 85, 300 }, + [4] = { 20, 74.2, 85, 300 }, + [5] = { 21.1, 73.8, 85, 300 }, + [6] = { 21.2, 72.3, 85, 300 }, + [7] = { 19.4, 72.1, 85, 300 }, + [8] = { 20.1, 71.9, 85, 300 }, + [9] = { 20.6, 71.2, 85, 300 }, + [10] = { 21.5, 71.1, 85, 300 }, + [11] = { 20.1, 69.7, 85, 300 }, + [12] = { 19.6, 68.5, 85, 300 }, + [13] = { 17.6, 64.4, 85, 300 }, + [14] = { 16.4, 63.6, 85, 300 }, + [15] = { 16.3, 63.4, 85, 300 }, + [16] = { 19.5, 62.3, 85, 300 }, + [17] = { 13.9, 62.3, 85, 300 }, + [18] = { 18.1, 61.2, 85, 300 }, + [19] = { 14.3, 61.1, 85, 300 }, + [20] = { 18.4, 58.5, 85, 300 }, + [21] = { 18.6, 56.7, 85, 300 }, + [22] = { 17.7, 54.9, 85, 300 }, + [23] = { 18.8, 54, 85, 300 }, + [24] = { 20.1, 52.5, 85, 300 }, + [25] = { 21.4, 51.8, 85, 300 }, + [26] = { 19.1, 50.5, 85, 300 }, + [27] = { 21.1, 50.4, 85, 300 }, + [28] = { 21, 49, 85, 300 }, + [29] = { 19.5, 49, 85, 300 }, + [30] = { 20.5, 47.3, 85, 300 }, + }, + ["lvl"] = "14-17", + }, + [91988] = { + ["coords"] = {}, + ["lvl"] = "17-18", + }, + [91989] = { + ["coords"] = { + [1] = { 19.9, 76.4, 85, 300 }, + [2] = { 19.3, 76.4, 85, 300 }, + [3] = { 19.6, 75.9, 85, 300 }, + [4] = { 20.5, 61.1, 85, 300 }, + [5] = { 26, 60, 85, 300 }, + [6] = { 21.5, 59.6, 85, 300 }, + [7] = { 26.8, 59.5, 85, 300 }, + [8] = { 27.8, 59, 85, 300 }, + [9] = { 25, 58.7, 85, 300 }, + [10] = { 20.4, 58.6, 85, 300 }, + [11] = { 28.4, 58.3, 85, 300 }, + [12] = { 25.9, 58.3, 85, 300 }, + [13] = { 26.7, 58, 85, 300 }, + [14] = { 28.1, 57.7, 85, 300 }, + [15] = { 27.4, 57.6, 85, 300 }, + [16] = { 24.8, 57.5, 85, 300 }, + [17] = { 22.4, 57.3, 85, 300 }, + [18] = { 26.9, 56.9, 85, 300 }, + [19] = { 25.3, 56, 85, 300 }, + [20] = { 25.3, 55.8, 85, 300 }, + [21] = { 21.1, 55.8, 85, 300 }, + [22] = { 22.2, 55.5, 85, 300 }, + [23] = { 24.3, 55.2, 85, 300 }, + [24] = { 23.7, 54.6, 85, 300 }, + [25] = { 22.6, 54.4, 85, 300 }, + [26] = { 23.7, 53.2, 85, 300 }, + [27] = { 22.2, 49.1, 85, 300 }, + [28] = { 20.5, 48.2, 85, 300 }, + }, + ["lvl"] = "16-18", + }, + [91990] = { + ["coords"] = { + [1] = { 27, 58.4, 85, 19200 }, + }, + ["lvl"] = "18", + ["rnk"] = "4", + }, + [91991] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [91992] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [91993] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [92000] = { + ["coords"] = { + [1] = { 59, 43.3, 409, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [92001] = { + ["coords"] = { + [1] = { 59.2, 43.8, 409, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "56", + }, + [92002] = { + ["coords"] = { + [1] = { 61.2, 41.4, 409, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "58", + ["rnk"] = "1", + }, + [92003] = { + ["coords"] = { + [1] = { 62.4, 41.1, 409, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "57", + }, + [92004] = { + ["coords"] = { + [1] = { 60.5, 41.6, 409, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [92005] = { + ["coords"] = { + [1] = { 58.3, 42.2, 409, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [92006] = { + ["coords"] = { + [1] = { 53.8, 44.4, 409, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [92007] = { + ["coords"] = { + [1] = { 55.6, 43.3, 409, 462 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [92008] = { + ["coords"] = { + [1] = { 61.8, 43.9, 409, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [92009] = { + ["coords"] = { + [1] = { 61.6, 43.7, 409, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "52", + }, + [92010] = { + ["coords"] = { + [1] = { 60.2, 45.3, 409, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "52", + }, + [92011] = { + ["coords"] = { + [1] = { 58.2, 41.6, 409, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [92012] = { + ["coords"] = { + [1] = { 57.4, 33.7, 41, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "52", + }, + [92013] = { + ["coords"] = { + [1] = { 58.2, 29.6, 41, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "52", + }, + [92014] = { + ["coords"] = { + [1] = { 57, 31.8, 41, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [92015] = { + ["coords"] = { + [1] = { 58.8, 31.9, 41, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [92016] = { + ["coords"] = { + [1] = { 58.3, 30.2, 41, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [92017] = { + ["coords"] = { + [1] = { 57.8, 31.7, 41, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [92018] = { + ["coords"] = { + [1] = { 57, 31.4, 41, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [92019] = { + ["coords"] = { + [1] = { 56.4, 30.6, 41, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [92020] = { + ["coords"] = { + [1] = { 57, 31.1, 41, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "35", + }, + [92021] = { + ["coords"] = { + [1] = { 57.4, 33, 41, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [92022] = { + ["coords"] = { + [1] = { 58.9, 30.8, 41, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "25", + }, + [92023] = { + ["coords"] = { + [1] = { 58.8, 31.7, 41, 300 }, + }, + ["fac"] = "A", + ["lvl"] = "40", + }, + [92024] = { + ["coords"] = { + [1] = { 53.9, 10.4, 16, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "58", + ["rnk"] = "1", + }, + [92025] = { + ["coords"] = { + [1] = { 61.6, 42.7, 409, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [92100] = { + ["coords"] = { + [1] = { 51.7, 74.8, 331, 300 }, + [2] = { 52.2, 74.3, 331, 180 }, + [3] = { 86.9, 40.9, 406, 300 }, + [4] = { 87.4, 40.5, 406, 180 }, + [5] = { 52.5, 30, 5077, 18000 }, + [6] = { 51.8, 27.7, 5077, 18000 }, + [7] = { 49, 27.2, 5077, 18000 }, + [8] = { 48.9, 26.7, 5077, 18000 }, + [9] = { 47.8, 25.9, 5077, 18000 }, + [10] = { 40.5, 24.6, 5077, 18000 }, + [11] = { 45.8, 24.2, 5077, 18000 }, + [12] = { 40.4, 24.1, 5077, 18000 }, + [13] = { 48, 24, 5077, 18000 }, + [14] = { 40.8, 24, 5077, 18000 }, + [15] = { 45.6, 23.8, 5077, 18000 }, + [16] = { 51.4, 23.4, 5077, 18000 }, + [17] = { 50.9, 23, 5077, 18000 }, + [18] = { 43.2, 22, 5077, 18000 }, + [19] = { 49.5, 21.8, 5077, 18000 }, + [20] = { 42.6, 21.8, 5077, 18000 }, + [21] = { 50.5, 20.9, 5077, 18000 }, + [22] = { 47.3, 20.6, 5077, 18000 }, + [23] = { 49.1, 19.8, 5077, 18000 }, + [24] = { 49, 19.7, 5077, 18000 }, + [25] = { 48.9, 19.6, 5077, 18000 }, + [26] = { 46.5, 18.9, 5077, 18000 }, + [27] = { 45.5, 18.9, 5077, 18000 }, + [28] = { 45.4, 18.8, 5077, 18000 }, + }, + ["lvl"] = "30-31", + ["rnk"] = "1", + }, + [92101] = { + ["coords"] = { + [1] = { 50.9, 75.1, 331, 300 }, + [2] = { 86.1, 41.3, 406, 300 }, + [3] = { 52.7, 37.6, 5077, 18000 }, + [4] = { 49.3, 33.5, 5077, 18000 }, + [5] = { 48.3, 31.9, 5077, 18000 }, + [6] = { 49.7, 31.7, 5077, 18000 }, + [7] = { 52.4, 30.2, 5077, 18000 }, + [8] = { 48.7, 27.2, 5077, 18000 }, + [9] = { 51.7, 26.1, 5077, 18000 }, + [10] = { 47.5, 26.1, 5077, 18000 }, + [11] = { 51.6, 26.1, 5077, 18000 }, + [12] = { 51.5, 25.8, 5077, 18000 }, + [13] = { 45.6, 24, 5077, 18000 }, + [14] = { 47.9, 23.8, 5077, 18000 }, + [15] = { 42.2, 23.7, 5077, 18000 }, + [16] = { 50.9, 23.4, 5077, 18000 }, + [17] = { 48.7, 22.3, 5077, 18000 }, + [18] = { 50.4, 21.6, 5077, 18000 }, + [19] = { 49.3, 21.2, 5077, 18000 }, + [20] = { 44.4, 20.4, 5077, 18000 }, + [21] = { 50.2, 20.2, 5077, 18000 }, + }, + ["lvl"] = "32-33", + ["rnk"] = "1", + }, + [92102] = { + ["coords"] = { + [1] = { 52.3, 40.9, 5077, 18000 }, + [2] = { 52, 38.2, 5077, 18000 }, + [3] = { 53, 37.1, 5077, 18000 }, + [4] = { 53.1, 34.6, 5077, 18000 }, + [5] = { 47, 32, 5077, 18000 }, + [6] = { 52.9, 31.4, 5077, 18000 }, + [7] = { 47.4, 30.5, 5077, 18000 }, + [8] = { 51.5, 29.7, 5077, 18000 }, + [9] = { 50, 29.5, 5077, 18000 }, + [10] = { 47.6, 29.4, 5077, 18000 }, + [11] = { 53.5, 28.8, 5077, 18000 }, + [12] = { 46.7, 28.3, 5077, 18000 }, + [13] = { 47.8, 27.6, 5077, 18000 }, + [14] = { 54.5, 26.8, 5077, 18000 }, + [15] = { 49.8, 26.1, 5077, 18000 }, + [16] = { 52.5, 25.8, 5077, 18000 }, + [17] = { 53.6, 25.5, 5077, 18000 }, + [18] = { 46.5, 25.2, 5077, 18000 }, + [19] = { 50.6, 24.8, 5077, 18000 }, + [20] = { 52.5, 23, 5077, 18000 }, + [21] = { 47, 22.9, 5077, 18000 }, + [22] = { 48.9, 22.5, 5077, 18000 }, + [23] = { 48.6, 21, 5077, 18000 }, + }, + ["lvl"] = "32-33", + ["rnk"] = "1", + }, + [92103] = { + ["coords"] = { + [1] = { 52.7, 37.8, 5077, 18000 }, + [2] = { 52.8, 37.5, 5077, 18000 }, + [3] = { 46.3, 34.7, 5077, 18000 }, + [4] = { 49.4, 33.5, 5077, 18000 }, + [5] = { 47.2, 33, 5077, 18000 }, + [6] = { 46.8, 32.7, 5077, 18000 }, + [7] = { 52.4, 32.4, 5077, 18000 }, + [8] = { 48.2, 32.2, 5077, 18000 }, + [9] = { 49.9, 31.8, 5077, 18000 }, + [10] = { 51, 31.2, 5077, 18000 }, + [11] = { 52.5, 30.2, 5077, 18000 }, + [12] = { 53.6, 28.6, 5077, 18000 }, + [13] = { 51.9, 27.6, 5077, 18000 }, + [14] = { 49.1, 26.9, 5077, 18000 }, + [15] = { 47.5, 26.4, 5077, 18000 }, + [16] = { 53.7, 25.8, 5077, 18000 }, + [17] = { 47.5, 25.8, 5077, 18000 }, + [18] = { 53.4, 25.3, 5077, 18000 }, + [19] = { 49, 24.3, 5077, 18000 }, + [20] = { 51.7, 21.6, 5077, 18000 }, + [21] = { 49.9, 21.2, 5077, 18000 }, + [22] = { 50.6, 20.3, 5077, 18000 }, + }, + ["lvl"] = "32-33", + ["rnk"] = "1", + }, + [92104] = { + ["coords"] = { + [1] = { 49.4, 33.7, 5077, 18000 }, + [2] = { 50.4, 33.1, 5077, 18000 }, + [3] = { 51.1, 32.8, 5077, 18000 }, + [4] = { 52.5, 32.6, 5077, 18000 }, + [5] = { 48.3, 32.1, 5077, 18000 }, + [6] = { 49.7, 31.9, 5077, 18000 }, + [7] = { 51, 31.4, 5077, 18000 }, + [8] = { 50.9, 31.3, 5077, 18000 }, + [9] = { 53.5, 28.7, 5077, 18000 }, + [10] = { 51.9, 27.9, 5077, 18000 }, + [11] = { 51.1, 23.6, 5077, 18000 }, + }, + ["lvl"] = "32-33", + ["rnk"] = "1", + }, + [92105] = { + ["coords"] = { + [1] = { 51.7, 35.2, 5077, 604800 }, + }, + ["lvl"] = "32", + ["rnk"] = "1", + }, + [92106] = { + ["coords"] = { + [1] = { 50.9, 35.4, 5077, 604800 }, + }, + ["lvl"] = "32", + ["rnk"] = "1", + }, + [92107] = { + ["coords"] = { + [1] = { 51.3, 35.5, 5077, 604800 }, + }, + ["lvl"] = "34", + ["rnk"] = "1", + }, + [92108] = { + ["coords"] = { + [1] = { 57.3, 68.1, 5077, 604800 }, + }, + ["lvl"] = "36", + ["rnk"] = "1", + }, + [92109] = { + ["coords"] = { + [1] = { 43.1, 43.4, 5077, 604800 }, + }, + ["lvl"] = "35", + ["rnk"] = "1", + }, + [92110] = { + ["coords"] = { + [1] = { 60.5, 88.1, 5077, 604800 }, + }, + ["lvl"] = "38", + ["rnk"] = "1", + }, + [92111] = { + ["coords"] = { + [1] = { 43.3, 79.6, 5077, 604800 }, + }, + ["lvl"] = "37", + ["rnk"] = "1", + }, + [92112] = { + ["coords"] = { + [1] = { 38.1, 39.1, 5077, 18000 }, + [2] = { 39.6, 38.7, 5077, 18000 }, + [3] = { 38.8, 36.2, 5077, 18000 }, + [4] = { 36.2, 33.9, 5077, 18000 }, + [5] = { 43.5, 33.4, 5077, 18000 }, + [6] = { 36, 32.6, 5077, 18000 }, + [7] = { 42.4, 30.4, 5077, 18000 }, + [8] = { 41.5, 30.2, 5077, 18000 }, + [9] = { 38.8, 26.8, 5077, 18000 }, + }, + ["lvl"] = "33-34", + ["rnk"] = "1", + }, + [92113] = { + ["coords"] = { + [1] = { 48.6, 60.7, 5077, 18000 }, + [2] = { 47.8, 60.6, 5077, 18000 }, + [3] = { 48.3, 59.7, 5077, 18000 }, + [4] = { 47.7, 59, 5077, 18000 }, + [5] = { 39.1, 39.9, 5077, 18000 }, + [6] = { 40, 39.5, 5077, 18000 }, + [7] = { 38.3, 39.4, 5077, 18000 }, + [8] = { 37.5, 38.9, 5077, 18000 }, + [9] = { 39.7, 38.9, 5077, 18000 }, + [10] = { 38.3, 38.8, 5077, 18000 }, + [11] = { 37.9, 38.7, 5077, 18000 }, + [12] = { 39.7, 38.6, 5077, 18000 }, + [13] = { 39.4, 38.6, 5077, 18000 }, + [14] = { 37.4, 38.2, 5077, 18000 }, + [15] = { 38.8, 38, 5077, 18000 }, + [16] = { 40, 37.9, 5077, 18000 }, + [17] = { 39.4, 37.4, 5077, 18000 }, + [18] = { 38.2, 37.2, 5077, 18000 }, + [19] = { 38.7, 36.4, 5077, 18000 }, + [20] = { 39, 36.2, 5077, 18000 }, + [21] = { 39.8, 36.1, 5077, 18000 }, + [22] = { 38.8, 35.9, 5077, 18000 }, + [23] = { 36.7, 35, 5077, 18000 }, + [24] = { 39.4, 34.9, 5077, 18000 }, + [25] = { 36, 34.3, 5077, 18000 }, + [26] = { 35.2, 34.2, 5077, 18000 }, + [27] = { 43.4, 34.1, 5077, 18000 }, + [28] = { 42.8, 34, 5077, 18000 }, + [29] = { 36.4, 34, 5077, 18000 }, + [30] = { 36, 33.8, 5077, 18000 }, + [31] = { 43.6, 33.6, 5077, 18000 }, + [32] = { 37.1, 33.4, 5077, 18000 }, + [33] = { 35.3, 33.3, 5077, 18000 }, + [34] = { 43.5, 33.2, 5077, 18000 }, + [35] = { 42.4, 33.1, 5077, 18000 }, + [36] = { 43.2, 33.1, 5077, 18000 }, + [37] = { 44.2, 33, 5077, 18000 }, + [38] = { 35.8, 32.6, 5077, 18000 }, + [39] = { 36.1, 32.6, 5077, 18000 }, + [40] = { 35.9, 32.4, 5077, 18000 }, + [41] = { 44.1, 32.4, 5077, 18000 }, + [42] = { 36.9, 32.2, 5077, 18000 }, + [43] = { 35.5, 32.1, 5077, 18000 }, + [44] = { 42.8, 32, 5077, 18000 }, + [45] = { 41.7, 31.9, 5077, 18000 }, + [46] = { 42.1, 31.7, 5077, 18000 }, + [47] = { 40.7, 31.3, 5077, 18000 }, + [48] = { 43.3, 31.2, 5077, 18000 }, + [49] = { 43.7, 31.1, 5077, 18000 }, + [50] = { 42.4, 30.7, 5077, 18000 }, + [51] = { 41.5, 30.5, 5077, 18000 }, + [52] = { 41.2, 30.4, 5077, 18000 }, + [53] = { 42.6, 30.4, 5077, 18000 }, + [54] = { 42.2, 30.3, 5077, 18000 }, + [55] = { 39.7, 30.2, 5077, 18000 }, + [56] = { 41.6, 30.1, 5077, 18000 }, + [57] = { 40.3, 30, 5077, 18000 }, + [58] = { 42.4, 30, 5077, 18000 }, + [59] = { 39, 29.6, 5077, 18000 }, + [60] = { 43.6, 29.3, 5077, 18000 }, + [61] = { 41.1, 29.3, 5077, 18000 }, + [62] = { 42.8, 29.1, 5077, 18000 }, + [63] = { 38.3, 29, 5077, 18000 }, + [64] = { 42.1, 28.7, 5077, 18000 }, + [65] = { 39.6, 28.7, 5077, 18000 }, + [66] = { 40.5, 28.4, 5077, 18000 }, + [67] = { 41.3, 28.3, 5077, 18000 }, + [68] = { 38.2, 27.6, 5077, 18000 }, + [69] = { 39.5, 26.8, 5077, 18000 }, + [70] = { 38.9, 26.8, 5077, 18000 }, + [71] = { 38.4, 26.4, 5077, 18000 }, + [72] = { 38.9, 26.1, 5077, 18000 }, + [73] = { 39.8, 26, 5077, 18000 }, + [74] = { 38.2, 25.5, 5077, 18000 }, + }, + ["lvl"] = "32", + }, + [92114] = { + ["coords"] = { + [1] = { 44.3, 48.2, 5077, 18000 }, + [2] = { 45.8, 48, 5077, 18000 }, + [3] = { 40.9, 46.4, 5077, 18000 }, + [4] = { 46.5, 45.8, 5077, 18000 }, + [5] = { 39.9, 44.1, 5077, 18000 }, + [6] = { 37.9, 42.7, 5077, 18000 }, + [7] = { 47.3, 42.4, 5077, 18000 }, + [8] = { 46.2, 38.4, 5077, 18000 }, + [9] = { 47.2, 38.2, 5077, 18000 }, + [10] = { 34.5, 38.2, 5077, 18000 }, + [11] = { 43.4, 36.1, 5077, 18000 }, + }, + ["lvl"] = "33", + ["rnk"] = "1", + }, + [92115] = { + ["coords"] = { + [1] = { 47, 48.9, 5077, 18000 }, + [2] = { 44.6, 47.5, 5077, 18000 }, + [3] = { 47.1, 47.3, 5077, 18000 }, + [4] = { 40.1, 44.9, 5077, 18000 }, + [5] = { 46.6, 44.3, 5077, 18000 }, + [6] = { 38.2, 43.7, 5077, 18000 }, + [7] = { 47.8, 43.3, 5077, 18000 }, + [8] = { 39.9, 42.7, 5077, 18000 }, + [9] = { 36.2, 42.3, 5077, 18000 }, + [10] = { 38.1, 42.3, 5077, 18000 }, + [11] = { 35.5, 41.4, 5077, 18000 }, + [12] = { 36, 41.3, 5077, 18000 }, + [13] = { 47.9, 41.1, 5077, 18000 }, + [14] = { 46.6, 40.3, 5077, 18000 }, + [15] = { 36.2, 40.2, 5077, 18000 }, + [16] = { 47.5, 39.6, 5077, 18000 }, + [17] = { 47.7, 38.1, 5077, 18000 }, + [18] = { 35.9, 37.7, 5077, 18000 }, + [19] = { 47.4, 37.6, 5077, 18000 }, + [20] = { 34.7, 36.9, 5077, 18000 }, + [21] = { 46, 36.8, 5077, 18000 }, + [22] = { 44.7, 36.3, 5077, 18000 }, + [23] = { 41.7, 34.9, 5077, 18000 }, + [24] = { 41.7, 22.3, 5077, 18000 }, + }, + ["lvl"] = "33", + ["rnk"] = "1", + }, + [92116] = { + ["coords"] = { + [1] = { 42.5, 45.6, 5077, 18000 }, + [2] = { 44.7, 43.9, 5077, 18000 }, + [3] = { 41.6, 41.4, 5077, 18000 }, + [4] = { 44.2, 41.2, 5077, 18000 }, + [5] = { 40.7, 39, 5077, 18000 }, + [6] = { 40.6, 36.3, 5077, 18000 }, + [7] = { 40.5, 33.8, 5077, 18000 }, + [8] = { 39.5, 32.2, 5077, 18000 }, + [9] = { 37.2, 29.4, 5077, 18000 }, + [10] = { 36.4, 26.4, 5077, 18000 }, + }, + ["lvl"] = "32", + ["rnk"] = "1", + }, + [92117] = { + ["coords"] = { + [1] = { 43.1, 47.6, 5077, 18000 }, + [2] = { 45.6, 45.5, 5077, 18000 }, + [3] = { 46, 41.9, 5077, 18000 }, + [4] = { 39.7, 41.3, 5077, 18000 }, + [5] = { 45.7, 40, 5077, 18000 }, + [6] = { 42.8, 38.2, 5077, 18000 }, + }, + ["lvl"] = "34", + ["rnk"] = "1", + }, + [92118] = { + ["coords"] = { + [1] = { 57.7, 82.4, 5077, 18000 }, + [2] = { 55.1, 82.4, 5077, 18000 }, + [3] = { 56.1, 82.1, 5077, 18000 }, + [4] = { 53.9, 80.4, 5077, 18000 }, + [5] = { 56.6, 80.2, 5077, 18000 }, + [6] = { 55.3, 80.1, 5077, 18000 }, + [7] = { 53.5, 79.5, 5077, 18000 }, + [8] = { 54.8, 73.4, 5077, 18000 }, + [9] = { 54.4, 72.4, 5077, 18000 }, + [10] = { 55.9, 72.3, 5077, 18000 }, + [11] = { 58.3, 70.5, 5077, 18000 }, + [12] = { 52.3, 69.7, 5077, 18000 }, + [13] = { 55.9, 69.2, 5077, 18000 }, + [14] = { 54.3, 69, 5077, 18000 }, + [15] = { 49.6, 68.7, 5077, 18000 }, + [16] = { 55.7, 68.5, 5077, 18000 }, + [17] = { 48.9, 68.3, 5077, 18000 }, + [18] = { 53.7, 67.9, 5077, 18000 }, + [19] = { 59, 67.5, 5077, 18000 }, + [20] = { 55.8, 66.8, 5077, 18000 }, + [21] = { 48.7, 66.2, 5077, 18000 }, + [22] = { 53.6, 66, 5077, 18000 }, + [23] = { 53.8, 65.9, 5077, 18000 }, + [24] = { 57.9, 65.2, 5077, 18000 }, + [25] = { 54.3, 64.6, 5077, 18000 }, + [26] = { 48.4, 64.4, 5077, 18000 }, + [27] = { 45.9, 64.2, 5077, 18000 }, + [28] = { 50.2, 63.3, 5077, 18000 }, + [29] = { 56.1, 63.3, 5077, 18000 }, + [30] = { 58, 63, 5077, 18000 }, + [31] = { 53.4, 62.2, 5077, 18000 }, + [32] = { 57.5, 61.8, 5077, 18000 }, + [33] = { 48.5, 58.9, 5077, 18000 }, + }, + ["lvl"] = "33", + ["rnk"] = "1", + }, + [92119] = { + ["coords"] = { + [1] = { 54.4, 74.4, 5077, 18000 }, + [2] = { 56.5, 74.2, 5077, 18000 }, + [3] = { 53.8, 73.5, 5077, 18000 }, + [4] = { 56.8, 70.6, 5077, 18000 }, + [5] = { 55.2, 70.5, 5077, 18000 }, + [6] = { 59.2, 70.5, 5077, 18000 }, + [7] = { 53.6, 70, 5077, 18000 }, + [8] = { 58.9, 69.2, 5077, 18000 }, + [9] = { 55.8, 68.8, 5077, 18000 }, + [10] = { 55.2, 67.2, 5077, 18000 }, + [11] = { 53.5, 65.8, 5077, 18000 }, + [12] = { 56.6, 65.4, 5077, 18000 }, + [13] = { 59.6, 63.8, 5077, 18000 }, + [14] = { 52.6, 63.4, 5077, 18000 }, + [15] = { 55.4, 63.2, 5077, 18000 }, + [16] = { 51.1, 62.8, 5077, 18000 }, + [17] = { 58.5, 61.5, 5077, 18000 }, + }, + ["lvl"] = "35", + ["rnk"] = "1", + }, + [92120] = { + ["coords"] = { + [1] = { 56.1, 91.6, 5077, 18000 }, + [2] = { 53.4, 91.1, 5077, 18000 }, + [3] = { 57.4, 89.9, 5077, 18000 }, + [4] = { 59, 89.7, 5077, 18000 }, + [5] = { 53.6, 89.6, 5077, 18000 }, + [6] = { 53.2, 89.5, 5077, 18000 }, + [7] = { 54.6, 89.3, 5077, 18000 }, + [8] = { 57.2, 89.2, 5077, 18000 }, + [9] = { 58.9, 89.1, 5077, 18000 }, + [10] = { 54.9, 89, 5077, 18000 }, + [11] = { 54.7, 88.5, 5077, 18000 }, + [12] = { 56, 87.3, 5077, 18000 }, + [13] = { 56.1, 86.9, 5077, 18000 }, + [14] = { 51.1, 85.3, 5077, 18000 }, + [15] = { 51.3, 85.2, 5077, 18000 }, + [16] = { 52.6, 85, 5077, 18000 }, + [17] = { 52.2, 85, 5077, 18000 }, + [18] = { 53.8, 84.2, 5077, 18000 }, + [19] = { 54.1, 83.9, 5077, 18000 }, + [20] = { 50.5, 76.9, 5077, 18000 }, + [21] = { 49.7, 74.3, 5077, 18000 }, + [22] = { 51.4, 74.2, 5077, 18000 }, + [23] = { 49.3, 74.2, 5077, 18000 }, + [24] = { 49.5, 74, 5077, 18000 }, + [25] = { 52.7, 73.9, 5077, 18000 }, + [26] = { 52.8, 73.3, 5077, 18000 }, + [27] = { 48.8, 72.5, 5077, 18000 }, + [28] = { 56.7, 72.3, 5077, 18000 }, + [29] = { 50.1, 71.3, 5077, 18000 }, + [30] = { 47.4, 71, 5077, 18000 }, + [31] = { 50.1, 70.8, 5077, 18000 }, + [32] = { 48.5, 70.3, 5077, 18000 }, + [33] = { 46.1, 69.5, 5077, 18000 }, + [34] = { 52.5, 69.5, 5077, 18000 }, + [35] = { 47.4, 68.7, 5077, 18000 }, + [36] = { 54.5, 68, 5077, 18000 }, + [37] = { 45.9, 66.7, 5077, 18000 }, + [38] = { 45.8, 66.5, 5077, 18000 }, + [39] = { 56, 63.8, 5077, 18000 }, + [40] = { 47.8, 63.3, 5077, 18000 }, + [41] = { 48.4, 62.2, 5077, 18000 }, + [42] = { 47.3, 62.2, 5077, 18000 }, + [43] = { 48.7, 60.4, 5077, 18000 }, + }, + ["lvl"] = "35-36", + ["rnk"] = "1", + }, + [92121] = { + ["coords"] = { + [1] = { 53.4, 87.9, 5077, 18000 }, + [2] = { 56.1, 87.2, 5077, 18000 }, + [3] = { 52.6, 70.7, 5077, 18000 }, + [4] = { 47.4, 68.9, 5077, 18000 }, + [5] = { 47.2, 66.4, 5077, 18000 }, + [6] = { 47.3, 66.3, 5077, 18000 }, + [7] = { 47.9, 63.5, 5077, 18000 }, + [8] = { 47.7, 63.5, 5077, 18000 }, + [9] = { 47.4, 62.4, 5077, 18000 }, + [10] = { 48.5, 62.1, 5077, 18000 }, + }, + ["lvl"] = "34-36", + ["rnk"] = "1", + }, + [92122] = { + ["coords"] = { + [1] = { 59.1, 89.5, 5077, 18000 }, + [2] = { 59, 89.2, 5077, 18000 }, + [3] = { 52.9, 73.6, 5077, 18000 }, + [4] = { 52.6, 73.5, 5077, 18000 }, + [5] = { 46.2, 69.6, 5077, 18000 }, + [6] = { 46, 69.6, 5077, 18000 }, + [7] = { 47.6, 68.7, 5077, 18000 }, + [8] = { 47.3, 66.5, 5077, 18000 }, + }, + ["lvl"] = "33-34", + ["rnk"] = "1", + }, + [92123] = { + ["coords"] = { + [1] = { 50.9, 90.6, 5077, 18000 }, + [2] = { 47.6, 89.4, 5077, 18000 }, + [3] = { 46.2, 89.3, 5077, 18000 }, + [4] = { 48.6, 87.9, 5077, 18000 }, + [5] = { 52, 87.8, 5077, 18000 }, + [6] = { 45.3, 87, 5077, 18000 }, + [7] = { 49.8, 85.9, 5077, 18000 }, + [8] = { 48.7, 85.9, 5077, 18000 }, + [9] = { 49.7, 85, 5077, 18000 }, + [10] = { 47.2, 84.5, 5077, 18000 }, + [11] = { 52, 82.8, 5077, 18000 }, + [12] = { 51.7, 82.7, 5077, 18000 }, + [13] = { 46.8, 82.3, 5077, 18000 }, + [14] = { 50.2, 82.2, 5077, 18000 }, + [15] = { 49.6, 80.9, 5077, 18000 }, + [16] = { 46.8, 80.1, 5077, 18000 }, + [17] = { 49.4, 79.3, 5077, 18000 }, + [18] = { 50.9, 79, 5077, 18000 }, + [19] = { 49.7, 78.9, 5077, 18000 }, + [20] = { 44.5, 77.4, 5077, 18000 }, + [21] = { 46.9, 77.4, 5077, 18000 }, + [22] = { 43.9, 76.7, 5077, 18000 }, + [23] = { 47.2, 76, 5077, 18000 }, + [24] = { 43.4, 75.3, 5077, 18000 }, + [25] = { 48.6, 74.9, 5077, 18000 }, + [26] = { 43.7, 74.6, 5077, 18000 }, + [27] = { 47.5, 74.2, 5077, 18000 }, + [28] = { 42.4, 74.1, 5077, 18000 }, + [29] = { 46.8, 73.4, 5077, 18000 }, + [30] = { 46.8, 72, 5077, 18000 }, + [31] = { 45.4, 71.1, 5077, 18000 }, + }, + ["lvl"] = "33-35", + ["rnk"] = "1", + }, + [92124] = { + ["coords"] = { + [1] = { 51.5, 89.2, 5077, 18000 }, + [2] = { 48.5, 87.4, 5077, 18000 }, + [3] = { 49.1, 84.3, 5077, 18000 }, + [4] = { 50.5, 84.1, 5077, 18000 }, + [5] = { 51.9, 83.2, 5077, 18000 }, + [6] = { 48.5, 82.9, 5077, 18000 }, + [7] = { 45.2, 79.8, 5077, 18000 }, + [8] = { 48.4, 79.2, 5077, 18000 }, + [9] = { 48.6, 79.1, 5077, 18000 }, + [10] = { 47.8, 78.7, 5077, 18000 }, + [11] = { 48.1, 77.8, 5077, 18000 }, + [12] = { 48.6, 77.8, 5077, 18000 }, + [13] = { 45.8, 77.7, 5077, 18000 }, + [14] = { 45.5, 77.6, 5077, 18000 }, + [15] = { 46.2, 74.9, 5077, 18000 }, + [16] = { 45.7, 74.6, 5077, 18000 }, + [17] = { 46, 73.8, 5077, 18000 }, + }, + ["lvl"] = "33-36", + ["rnk"] = "1", + }, + [92125] = { + ["coords"] = { + [1] = { 51.9, 91.2, 5077, 18000 }, + [2] = { 52.3, 90.2, 5077, 18000 }, + [3] = { 45.2, 88.9, 5077, 18000 }, + [4] = { 45.5, 88.2, 5077, 18000 }, + [5] = { 50.5, 87.8, 5077, 18000 }, + [6] = { 50.7, 87.8, 5077, 18000 }, + [7] = { 54.1, 87, 5077, 18000 }, + [8] = { 49.5, 86.4, 5077, 18000 }, + [9] = { 46.1, 84.9, 5077, 18000 }, + [10] = { 49.3, 83.7, 5077, 18000 }, + [11] = { 49, 83.5, 5077, 18000 }, + [12] = { 46.3, 81.1, 5077, 18000 }, + [13] = { 45.4, 80, 5077, 18000 }, + [14] = { 48, 79.1, 5077, 18000 }, + [15] = { 47.8, 79, 5077, 18000 }, + [16] = { 43.1, 77, 5077, 18000 }, + [17] = { 46.3, 75.9, 5077, 18000 }, + [18] = { 46.3, 74.5, 5077, 18000 }, + }, + ["lvl"] = "35", + ["rnk"] = "1", + }, + [92126] = { + ["coords"] = { + [1] = { 52.1, 91.1, 5077, 18000 }, + [2] = { 50.5, 87.5, 5077, 18000 }, + [3] = { 54.3, 87.2, 5077, 18000 }, + [4] = { 53.9, 86.7, 5077, 18000 }, + [5] = { 48.9, 83.8, 5077, 18000 }, + [6] = { 50.7, 83.5, 5077, 18000 }, + [7] = { 47.4, 82.9, 5077, 18000 }, + [8] = { 45.3, 80.1, 5077, 18000 }, + [9] = { 42.9, 77.2, 5077, 18000 }, + [10] = { 43, 76.9, 5077, 18000 }, + [11] = { 43, 75.1, 5077, 18000 }, + [12] = { 45.5, 74.9, 5077, 18000 }, + }, + ["lvl"] = "35", + ["rnk"] = "1", + }, + [92127] = { + ["coords"] = { + [1] = { 54.2, 81.6, 5077, 604800 }, + [2] = { 55.5, 81.2, 5077, 604800 }, + [3] = { 54.6, 80.6, 5077, 604800 }, + [4] = { 57.1, 80.3, 5077, 604800 }, + [5] = { 53.4, 78.7, 5077, 604800 }, + [6] = { 53.8, 78.3, 5077, 604800 }, + [7] = { 46, 55.7, 5077, 604800 }, + [8] = { 47.2, 55.5, 5077, 604800 }, + [9] = { 45.3, 53.9, 5077, 604800 }, + [10] = { 49.1, 53.6, 5077, 604800 }, + [11] = { 44.5, 53.4, 5077, 300 }, + [12] = { 44.8, 53.3, 5077, 300 }, + [13] = { 49.2, 52, 5077, 604800 }, + [14] = { 49.2, 50.9, 5077, 300 }, + [15] = { 49.6, 50.7, 5077, 300 }, + }, + ["lvl"] = "35", + ["rnk"] = "1", + }, + [92128] = { + ["coords"] = { + [1] = { 49.4, 50.7, 5077, 18000 }, + }, + ["lvl"] = "35", + ["rnk"] = "1", + }, + [92129] = { + ["coords"] = { + [1] = { 44.7, 53.3, 5077, 604800 }, + }, + ["lvl"] = "35", + ["rnk"] = "1", + }, + [92130] = { + ["coords"] = { + [1] = { 48.9, 29.5, 5077, 18000 }, + }, + ["lvl"] = "32", + ["rnk"] = "1", + }, + [92131] = { + ["coords"] = {}, + ["lvl"] = "32", + ["rnk"] = "1", + }, + [92132] = { + ["coords"] = { + [1] = { 60.7, 80.4, 5077, 18000 }, + }, + ["fac"] = "AH", + ["lvl"] = "35", + ["rnk"] = "1", + }, + [92133] = { + ["coords"] = { + [1] = { 60.8, 80.3, 5077, 18000 }, + }, + ["fac"] = "AH", + ["lvl"] = "40", + ["rnk"] = "1", + }, + [92134] = { + ["coords"] = { + [1] = { 57.4, 51.9, 408, 300 }, + [2] = { 56.7, 51.5, 408, 300 }, + [3] = { 58.1, 51.5, 408, 300 }, + [4] = { 57.8, 51.3, 408, 300 }, + [5] = { 57, 50.9, 408, 300 }, + [6] = { 58.2, 50.7, 408, 300 }, + [7] = { 57.9, 50.1, 408, 300 }, + [8] = { 58.2, 49.9, 408, 300 }, + }, + ["lvl"] = "48-49", + }, + [92135] = { + ["coords"] = { + [1] = { 26.2, 36.9, 408, 300 }, + [2] = { 27.3, 36.7, 408, 300 }, + [3] = { 25.8, 36.3, 408, 300 }, + [4] = { 26.5, 36.2, 408, 300 }, + [5] = { 25.8, 36.2, 408, 300 }, + [6] = { 26.1, 36, 408, 300 }, + [7] = { 25.3, 35.8, 408, 300 }, + [8] = { 25.9, 35.1, 408, 300 }, + }, + ["lvl"] = "48-49", + }, + [92136] = { + ["coords"] = { + [1] = { 25.9, 37.3, 408, 300 }, + [2] = { 26.5, 37.1, 408, 300 }, + [3] = { 25.9, 36.5, 408, 300 }, + [4] = { 26.2, 35.9, 408, 300 }, + [5] = { 26.4, 34.9, 408, 300 }, + }, + ["lvl"] = "48-49", + }, + [92137] = { + ["coords"] = { + [1] = { 26.4, 36.4, 408, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [92138] = { + ["coords"] = { + [1] = { 30.7, 39.6, 408, 300 }, + [2] = { 29.8, 39.2, 408, 300 }, + [3] = { 27, 38.8, 408, 300 }, + [4] = { 24.8, 38.5, 408, 300 }, + [5] = { 26.2, 38.5, 408, 300 }, + [6] = { 24.2, 37.9, 408, 300 }, + [7] = { 27.9, 37.8, 408, 300 }, + [8] = { 24.4, 37.7, 408, 322 }, + [9] = { 24.2, 37.4, 408, 300 }, + [10] = { 25.9, 31.7, 408, 300 }, + [11] = { 21.8, 31.6, 408, 300 }, + [12] = { 21.7, 31.3, 408, 300 }, + [13] = { 23.8, 31.3, 408, 300 }, + [14] = { 20.5, 31.2, 408, 300 }, + [15] = { 28, 30.5, 408, 300 }, + [16] = { 25.9, 30.5, 408, 300 }, + [17] = { 21.9, 29.5, 408, 300 }, + [18] = { 23, 29.2, 408, 300 }, + [19] = { 22.4, 28.9, 408, 300 }, + [20] = { 25.3, 25.7, 408, 300 }, + [21] = { 22.2, 25.3, 408, 300 }, + [22] = { 21.1, 24.7, 408, 300 }, + [23] = { 27.3, 23.1, 408, 300 }, + [24] = { 22.4, 22.9, 408, 300 }, + [25] = { 23.9, 21.5, 408, 300 }, + [26] = { 22.1, 21, 408, 300 }, + [27] = { 23.8, 19.6, 408, 300 }, + [28] = { 21.8, 19.6, 408, 300 }, + [29] = { 24.8, 18.9, 408, 300 }, + [30] = { 19.7, 18.4, 408, 300 }, + [31] = { 20.3, 17.7, 408, 300 }, + [32] = { 18.5, 17.6, 408, 474 }, + [33] = { 18.7, 17.5, 408, 300 }, + [34] = { 22.7, 17.2, 408, 300 }, + [35] = { 20.3, 17.1, 408, 300 }, + [36] = { 20.8, 17, 408, 300 }, + [37] = { 18.3, 16.2, 408, 300 }, + [38] = { 25.3, 15.8, 408, 300 }, + [39] = { 24.8, 13.7, 408, 300 }, + [40] = { 22.9, 13.5, 408, 300 }, + [41] = { 21.6, 12.4, 408, 300 }, + [42] = { 40.7, 100, 409, 300 }, + [43] = { 42.5, 98.5, 409, 300 }, + [44] = { 40.4, 98.4, 409, 300 }, + [45] = { 43.6, 97.7, 409, 300 }, + [46] = { 38.1, 97.2, 409, 300 }, + [47] = { 38.7, 96.4, 409, 300 }, + [48] = { 36.9, 96.4, 409, 474 }, + [49] = { 37.1, 96.2, 409, 300 }, + [50] = { 41.3, 95.9, 409, 300 }, + [51] = { 38.8, 95.8, 409, 300 }, + [52] = { 39.3, 95.7, 409, 300 }, + [53] = { 36.6, 94.8, 409, 300 }, + [54] = { 44.1, 94.4, 409, 300 }, + [55] = { 43.6, 92.1, 409, 300 }, + [56] = { 41.5, 91.9, 409, 300 }, + [57] = { 40.1, 90.8, 409, 300 }, + }, + ["lvl"] = "51-52", + }, + [92139] = { + ["coords"] = { + [1] = { 57.9, 51.7, 408, 300 }, + [2] = { 58.4, 49.2, 408, 300 }, + [3] = { 59.1, 48.4, 408, 300 }, + [4] = { 58.9, 47.8, 408, 300 }, + [5] = { 58.2, 47.3, 408, 300 }, + [6] = { 58.8, 47.2, 408, 300 }, + [7] = { 57.9, 46.7, 408, 300 }, + [8] = { 30.4, 40.8, 408, 300 }, + [9] = { 28.5, 38.7, 408, 300 }, + [10] = { 29.4, 38.3, 408, 300 }, + [11] = { 23.6, 32.7, 408, 300 }, + [12] = { 24.9, 32.1, 408, 300 }, + [13] = { 25, 31, 408, 300 }, + [14] = { 25.8, 30.4, 408, 300 }, + [15] = { 26.6, 30.2, 408, 300 }, + [16] = { 25.1, 29.9, 408, 300 }, + [17] = { 27.6, 29.2, 408, 300 }, + [18] = { 24.9, 28.5, 408, 300 }, + [19] = { 25.9, 28.2, 408, 300 }, + [20] = { 24, 28, 408, 300 }, + [21] = { 24.5, 26.8, 408, 300 }, + [22] = { 21.8, 25.4, 408, 300 }, + [23] = { 22.2, 25.1, 408, 300 }, + [24] = { 22.9, 24.2, 408, 300 }, + [25] = { 24.2, 22.9, 408, 300 }, + [26] = { 25.1, 22.5, 408, 300 }, + [27] = { 22.4, 19.2, 408, 300 }, + [28] = { 20.3, 18.9, 408, 300 }, + [29] = { 22, 18.3, 408, 300 }, + [30] = { 20.2, 18, 408, 300 }, + [31] = { 19.7, 16.9, 408, 300 }, + [32] = { 26.4, 16.9, 408, 300 }, + [33] = { 19.9, 16.2, 408, 300 }, + [34] = { 20.5, 16.2, 408, 300 }, + [35] = { 23.6, 15.2, 408, 300 }, + [36] = { 41, 98, 409, 300 }, + [37] = { 38.7, 97.7, 409, 300 }, + [38] = { 40.6, 97, 409, 300 }, + [39] = { 38.7, 96.8, 409, 300 }, + [40] = { 38.1, 95.6, 409, 300 }, + [41] = { 45.3, 95.6, 409, 300 }, + [42] = { 38.4, 94.9, 409, 300 }, + [43] = { 38.9, 94.9, 409, 300 }, + [44] = { 42.3, 93.8, 409, 300 }, + }, + ["lvl"] = "51-52", + }, + [92140] = { + ["coords"] = { + [1] = { 25.2, 39.5, 408, 300 }, + [2] = { 25.1, 39.3, 408, 300 }, + [3] = { 25.1, 39.1, 408, 300 }, + [4] = { 25.1, 38.7, 408, 300 }, + [5] = { 24.6, 38.6, 408, 300 }, + [6] = { 24.7, 38.6, 408, 300 }, + [7] = { 24.3, 38.1, 408, 532 }, + [8] = { 24.5, 38, 408, 300 }, + [9] = { 24.3, 37.7, 408, 300 }, + [10] = { 21.8, 31.7, 408, 539 }, + [11] = { 20.7, 31.4, 408, 300 }, + [12] = { 21.3, 31.2, 408, 358 }, + [13] = { 21.2, 31.2, 408, 309 }, + [14] = { 20.7, 31.2, 408, 316 }, + [15] = { 20.5, 31.1, 408, 300 }, + [16] = { 21.1, 31, 408, 300 }, + [17] = { 22.4, 23.1, 408, 300 }, + [18] = { 18.8, 18.6, 408, 300 }, + [19] = { 18.8, 18.2, 408, 300 }, + [20] = { 18.5, 18, 408, 329 }, + [21] = { 18.5, 18, 408, 300 }, + [22] = { 18.6, 17.2, 408, 300 }, + [23] = { 18.6, 17, 408, 322 }, + [24] = { 18.7, 16.8, 408, 300 }, + [25] = { 18.5, 16.4, 408, 300 }, + [26] = { 18.4, 16.3, 408, 300 }, + [27] = { 18.4, 16.1, 408, 448 }, + [28] = { 18.3, 16, 408, 300 }, + [29] = { 37.1, 97.4, 409, 300 }, + [30] = { 37.1, 96.9, 409, 300 }, + [31] = { 36.9, 96.8, 409, 329 }, + [32] = { 36.9, 96.7, 409, 300 }, + [33] = { 36.9, 95.9, 409, 300 }, + [34] = { 37, 95.7, 409, 322 }, + [35] = { 37.1, 95.5, 409, 300 }, + [36] = { 36.9, 95.1, 409, 300 }, + [37] = { 36.7, 94.9, 409, 300 }, + [38] = { 36.8, 94.7, 409, 448 }, + [39] = { 36.6, 94.7, 409, 300 }, + }, + ["lvl"] = "52-53", + }, + [92141] = { + ["coords"] = { + [1] = { 56.9, 51.9, 408, 300 }, + }, + ["lvl"] = "52-53", + }, + [92142] = { + ["coords"] = { + [1] = { 20.3, 30.9, 408, 352 }, + }, + ["lvl"] = "54", + }, + [92143] = { + ["coords"] = { + [1] = { 18.4, 15.5, 408, 496 }, + [2] = { 36.7, 94.1, 409, 496 }, + }, + ["lvl"] = "54", + }, + [92144] = { + ["coords"] = { + [1] = { 24.1, 37.4, 408, 300 }, + }, + ["lvl"] = "54", + }, + [92145] = { + ["coords"] = { + [1] = { 47.4, 75.3, 408, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "48", + }, + [92146] = { + ["coords"] = { + [1] = { 0.9, 66.3, 33, 300 }, + [2] = { 1.1, 64.9, 33, 300 }, + [3] = { 0.8, 64.7, 33, 300 }, + [4] = { 1, 63.9, 33, 300 }, + [5] = { 1.1, 62.8, 33, 300 }, + [6] = { 0.7, 61.7, 33, 300 }, + [7] = { 1.1, 61.5, 33, 300 }, + [8] = { 0.8, 61.1, 33, 300 }, + [9] = { 0.6, 59.5, 33, 300 }, + [10] = { 1, 59.4, 33, 300 }, + [11] = { 0.9, 58.8, 33, 300 }, + [12] = { 1.1, 57.5, 33, 300 }, + [13] = { 0.9, 56.6, 33, 300 }, + [14] = { 0.5, 56.5, 33, 300 }, + [15] = { 0.8, 55.3, 33, 300 }, + [16] = { 73.5, 71.4, 408, 300 }, + [17] = { 73.8, 68.5, 408, 300 }, + [18] = { 73.3, 68.1, 408, 300 }, + [19] = { 72.1, 66.9, 408, 300 }, + [20] = { 73.7, 66.3, 408, 300 }, + [21] = { 72.2, 65.3, 408, 300 }, + [22] = { 73.9, 64, 408, 300 }, + [23] = { 72, 63.8, 408, 300 }, + [24] = { 70.7, 62.7, 408, 300 }, + [25] = { 73, 61.9, 408, 300 }, + [26] = { 73.8, 61.4, 408, 300 }, + [27] = { 73.4, 60.6, 408, 300 }, + [28] = { 70.3, 58.6, 408, 300 }, + [29] = { 72.4, 58.2, 408, 300 }, + [30] = { 72.8, 57.3, 408, 300 }, + [31] = { 73.6, 57, 408, 300 }, + [32] = { 72.1, 56.3, 408, 300 }, + [33] = { 73.5, 55.8, 408, 300 }, + [34] = { 69.5, 55.7, 408, 300 }, + [35] = { 71.2, 54.5, 408, 300 }, + [36] = { 71.9, 53.6, 408, 300 }, + [37] = { 74, 53.1, 408, 300 }, + [38] = { 68.6, 52, 408, 300 }, + [39] = { 70.2, 51.5, 408, 300 }, + [40] = { 73.5, 51.2, 408, 300 }, + [41] = { 72.6, 50.9, 408, 300 }, + [42] = { 68.8, 50.2, 408, 300 }, + [43] = { 67.2, 49.4, 408, 300 }, + [44] = { 72.3, 49.4, 408, 300 }, + [45] = { 68, 49.3, 408, 300 }, + [46] = { 70.8, 49.3, 408, 300 }, + [47] = { 66.7, 48.5, 408, 300 }, + [48] = { 73.3, 48.4, 408, 300 }, + [49] = { 64.1, 48, 408, 300 }, + [50] = { 70.6, 47.6, 408, 300 }, + [51] = { 68.3, 47.3, 408, 300 }, + [52] = { 71.8, 47.2, 408, 300 }, + [53] = { 65.3, 47.1, 408, 300 }, + [54] = { 64.1, 46.7, 408, 300 }, + [55] = { 68.1, 45.7, 408, 300 }, + [56] = { 65.5, 44.6, 408, 300 }, + [57] = { 64.4, 44.5, 408, 300 }, + [58] = { 63.1, 44, 408, 300 }, + [59] = { 63.4, 42.4, 408, 300 }, + [60] = { 65.8, 41.9, 408, 300 }, + [61] = { 64.6, 40.5, 408, 300 }, + }, + ["lvl"] = "48-49", + }, + [92147] = { + ["coords"] = { + [1] = { 42.5, 85.6, 408, 300 }, + [2] = { 40, 85.3, 408, 300 }, + [3] = { 40.9, 85.2, 408, 300 }, + [4] = { 42.1, 84.9, 408, 300 }, + [5] = { 37.5, 84.8, 408, 300 }, + [6] = { 43.8, 83.4, 408, 300 }, + [7] = { 39.1, 83.4, 408, 300 }, + [8] = { 40.9, 82.9, 408, 300 }, + [9] = { 36, 82.2, 408, 300 }, + [10] = { 44.6, 81.8, 408, 300 }, + [11] = { 43.8, 81.6, 408, 300 }, + [12] = { 39.5, 81.5, 408, 300 }, + [13] = { 37.5, 80.6, 408, 300 }, + [14] = { 41.5, 80.5, 408, 300 }, + [15] = { 45.2, 79.4, 408, 300 }, + [16] = { 34.6, 79, 408, 300 }, + [17] = { 38.8, 78.8, 408, 300 }, + [18] = { 35.3, 76.9, 408, 300 }, + [19] = { 33.3, 75.6, 408, 300 }, + [20] = { 29, 74.4, 408, 300 }, + [21] = { 34.5, 73.9, 408, 300 }, + [22] = { 32.6, 72.9, 408, 300 }, + [23] = { 30.3, 72.6, 408, 300 }, + [24] = { 33.8, 72.1, 408, 300 }, + [25] = { 35.6, 70.4, 408, 300 }, + [26] = { 34, 68.9, 408, 300 }, + [27] = { 28.8, 66.8, 408, 300 }, + [28] = { 34.5, 66.7, 408, 300 }, + [29] = { 35.7, 66.2, 408, 300 }, + [30] = { 32.8, 66.1, 408, 300 }, + [31] = { 29, 64, 408, 300 }, + [32] = { 33.7, 62.8, 408, 300 }, + [33] = { 31.5, 60.9, 408, 300 }, + [34] = { 35.4, 59.5, 408, 300 }, + [35] = { 34.7, 57, 408, 300 }, + [36] = { 36.2, 56.8, 408, 300 }, + }, + ["lvl"] = "51-52", + }, + [92148] = { + ["coords"] = { + [1] = { 43.7, 59.3, 408, 300 }, + [2] = { 43.9, 55.8, 408, 300 }, + [3] = { 46.5, 54.6, 408, 300 }, + [4] = { 46.4, 54.5, 408, 300 }, + [5] = { 43.6, 54.3, 408, 300 }, + [6] = { 45, 53.8, 408, 300 }, + [7] = { 43.6, 53.3, 408, 300 }, + [8] = { 46.3, 49.8, 408, 300 }, + [9] = { 46.7, 48.2, 408, 300 }, + }, + ["lvl"] = "51-52", + }, + [92149] = { + ["coords"] = { + [1] = { 44, 60.8, 408, 300 }, + [2] = { 43.6, 60.1, 408, 300 }, + [3] = { 45.1, 59.8, 408, 300 }, + [4] = { 45.2, 58.7, 408, 437 }, + [5] = { 48.4, 56.9, 408, 300 }, + [6] = { 48.9, 56.3, 408, 300 }, + [7] = { 44.7, 56.3, 408, 300 }, + [8] = { 49.6, 55.7, 408, 300 }, + [9] = { 45, 55.6, 408, 300 }, + [10] = { 48.2, 55.6, 408, 300 }, + [11] = { 47.6, 55.1, 408, 300 }, + [12] = { 49, 55, 408, 300 }, + [13] = { 45.3, 54.7, 408, 300 }, + [14] = { 43.5, 54.5, 408, 300 }, + [15] = { 47.1, 54.5, 408, 300 }, + [16] = { 49, 54.2, 408, 300 }, + [17] = { 45.5, 54.1, 408, 300 }, + [18] = { 45.7, 53.4, 408, 300 }, + [19] = { 43.1, 53.3, 408, 300 }, + [20] = { 46.7, 53.2, 408, 300 }, + [21] = { 45.4, 52.1, 408, 300 }, + [22] = { 44, 51.5, 408, 300 }, + [23] = { 46.5, 50.5, 408, 300 }, + [24] = { 49.1, 49.9, 408, 300 }, + [25] = { 48.6, 49.3, 408, 300 }, + [26] = { 48.4, 47.4, 408, 300 }, + [27] = { 46.9, 47.1, 408, 300 }, + [28] = { 49.5, 45.6, 408, 300 }, + }, + ["lvl"] = "49-50", + }, + [92150] = { + ["coords"] = { + [1] = { 44.6, 64.8, 408, 300 }, + [2] = { 45.4, 63.9, 408, 300 }, + [3] = { 46.3, 62.7, 408, 300 }, + [4] = { 45.3, 62.1, 408, 328 }, + [5] = { 44.2, 61.3, 408, 551 }, + [6] = { 45.1, 60.9, 408, 300 }, + [7] = { 44.9, 59.6, 408, 460 }, + [8] = { 44.9, 59.3, 408, 300 }, + [9] = { 44.6, 58.1, 408, 300 }, + [10] = { 43, 57.9, 408, 378 }, + [11] = { 42.4, 57.8, 408, 515 }, + [12] = { 42.7, 57.6, 408, 455 }, + [13] = { 45, 57.3, 408, 498 }, + [14] = { 44.8, 57.3, 408, 300 }, + [15] = { 43.9, 56.9, 408, 300 }, + [16] = { 43.8, 56.6, 408, 300 }, + [17] = { 42.3, 56.6, 408, 300 }, + [18] = { 43.2, 56.1, 408, 300 }, + [19] = { 42.7, 55.7, 408, 300 }, + [20] = { 44.1, 54.2, 408, 300 }, + [21] = { 43.2, 52.4, 408, 300 }, + }, + ["lvl"] = "49-50", + }, + [92151] = { + ["coords"] = { + [1] = { 45.9, 65.2, 408, 300 }, + [2] = { 45.6, 65.1, 408, 300 }, + [3] = { 45.3, 64.5, 408, 300 }, + [4] = { 45, 64, 408, 300 }, + [5] = { 46.3, 63.5, 408, 300 }, + [6] = { 44.6, 63, 408, 300 }, + [7] = { 43.4, 62.9, 408, 300 }, + [8] = { 44.6, 62.2, 408, 300 }, + [9] = { 45.6, 61.6, 408, 300 }, + [10] = { 45.9, 61.6, 408, 300 }, + [11] = { 45.1, 60.7, 408, 300 }, + [12] = { 45.9, 60.1, 408, 300 }, + [13] = { 45.1, 59.9, 408, 300 }, + [14] = { 43.7, 59.5, 408, 566 }, + [15] = { 43.9, 58.7, 408, 300 }, + [16] = { 43.4, 58.5, 408, 300 }, + [17] = { 43.2, 57.2, 408, 558 }, + [18] = { 45.8, 56.9, 408, 300 }, + [19] = { 46.8, 55.7, 408, 300 }, + [20] = { 43.1, 55, 408, 300 }, + [21] = { 47.2, 52.9, 408, 300 }, + [22] = { 47.4, 51.4, 408, 300 }, + [23] = { 44.5, 51.1, 408, 300 }, + [24] = { 48.4, 50, 408, 300 }, + [25] = { 47.9, 49.3, 408, 300 }, + [26] = { 47.8, 48.6, 408, 300 }, + [27] = { 47.9, 47.9, 408, 300 }, + [28] = { 48.6, 46.7, 408, 300 }, + [29] = { 49, 45.9, 408, 300 }, + }, + ["lvl"] = "52-53", + }, + [92152] = { + ["coords"] = { + [1] = { 45.7, 65, 408, 300 }, + [2] = { 44.6, 61.4, 408, 300 }, + [3] = { 45.7, 60.9, 408, 300 }, + [4] = { 47, 48.9, 408, 300 }, + }, + ["lvl"] = "54", + }, + [92153] = { + ["coords"] = { + [1] = { 59.6, 75.3, 408, 300 }, + [2] = { 45.7, 66.1, 408, 300 }, + [3] = { 56.2, 65.9, 408, 300 }, + [4] = { 46.3, 65.1, 408, 408 }, + }, + ["lvl"] = "47-48", + }, + [92154] = { + ["coords"] = { + [1] = { 44.7, 64.2, 408, 300 }, + [2] = { 46.3, 63.7, 408, 300 }, + [3] = { 44.1, 62.9, 408, 300 }, + [4] = { 44, 62.9, 408, 300 }, + [5] = { 44.6, 62.7, 408, 300 }, + [6] = { 44.1, 62.4, 408, 300 }, + [7] = { 44.1, 62.3, 408, 300 }, + [8] = { 44.6, 61.9, 408, 300 }, + [9] = { 45.2, 58.8, 408, 300 }, + [10] = { 43.6, 56.4, 408, 300 }, + [11] = { 46.9, 56.3, 408, 300 }, + [12] = { 46.5, 55.9, 408, 300 }, + [13] = { 43.7, 53.2, 408, 300 }, + [14] = { 47.6, 52.2, 408, 300 }, + [15] = { 47.1, 50.7, 408, 300 }, + [16] = { 47.9, 50.7, 408, 300 }, + [17] = { 46.4, 48.9, 408, 300 }, + [18] = { 48.3, 48.4, 408, 300 }, + [19] = { 49.3, 47, 408, 300 }, + [20] = { 47.3, 46.5, 408, 300 }, + [21] = { 47.1, 46.4, 408, 300 }, + [22] = { 49.7, 46.1, 408, 300 }, + }, + ["lvl"] = "48-49", + }, + [92155] = { + ["coords"] = { + [1] = { 46.6, 54.4, 408, 300 }, + }, + ["lvl"] = "53", + }, + [92156] = { + ["coords"] = { + [1] = { 48.9, 44.9, 408, 300 }, + }, + ["lvl"] = "53", + }, + [92157] = { + ["coords"] = { + [1] = { 42.7, 62.7, 408, 300 }, + }, + ["lvl"] = "53", + }, + [92158] = { + ["coords"] = { + [1] = { 40.2, 83.2, 408, 300 }, + [2] = { 41.6, 82.8, 408, 300 }, + [3] = { 49, 82.3, 408, 300 }, + [4] = { 52.1, 82.2, 408, 300 }, + [5] = { 51.4, 81.9, 408, 300 }, + [6] = { 48, 81.7, 408, 300 }, + [7] = { 38.7, 79.5, 408, 300 }, + [8] = { 33.7, 77.8, 408, 300 }, + [9] = { 36.2, 77.4, 408, 300 }, + [10] = { 35.7, 77.4, 408, 300 }, + [11] = { 33.4, 76.1, 408, 300 }, + }, + ["lvl"] = "49-50", + }, + [92159] = { + ["coords"] = { + [1] = { 50.4, 86.7, 408, 300 }, + [2] = { 37.9, 86.7, 408, 300 }, + [3] = { 34.9, 86.3, 408, 300 }, + [4] = { 51.9, 86.1, 408, 300 }, + [5] = { 37.5, 85.9, 408, 300 }, + [6] = { 49.4, 85.2, 408, 300 }, + [7] = { 40.5, 84.9, 408, 300 }, + [8] = { 34.3, 84.8, 408, 300 }, + [9] = { 47.3, 84, 408, 300 }, + [10] = { 42.8, 84, 408, 300 }, + [11] = { 35.6, 83.9, 408, 300 }, + [12] = { 38.1, 83.5, 408, 300 }, + [13] = { 37, 83.4, 408, 300 }, + [14] = { 32.6, 83.2, 408, 300 }, + [15] = { 51.3, 82.9, 408, 300 }, + [16] = { 46.6, 82.4, 408, 300 }, + [17] = { 50.6, 82.1, 408, 300 }, + [18] = { 50, 82.1, 408, 300 }, + [19] = { 50.2, 81.9, 408, 300 }, + [20] = { 38, 81.2, 408, 300 }, + [21] = { 35.3, 80.7, 408, 300 }, + [22] = { 48, 80.6, 408, 300 }, + [23] = { 50, 79.5, 408, 300 }, + [24] = { 33.8, 74.5, 408, 300 }, + [25] = { 33.4, 74.2, 408, 300 }, + [26] = { 33.7, 74, 408, 300 }, + }, + ["lvl"] = "49-50", + }, + [92160] = { + ["coords"] = { + [1] = { 35.4, 87.2, 408, 300 }, + [2] = { 39, 85, 408, 300 }, + [3] = { 48.5, 84.9, 408, 300 }, + [4] = { 51.3, 84.8, 408, 300 }, + [5] = { 41.7, 84.6, 408, 300 }, + [6] = { 33.3, 84, 408, 300 }, + [7] = { 51.9, 83.5, 408, 300 }, + [8] = { 31.5, 83.4, 408, 300 }, + [9] = { 50.1, 82.5, 408, 300 }, + [10] = { 34.6, 82.4, 408, 300 }, + [11] = { 49.2, 81.8, 408, 300 }, + [12] = { 50.1, 81.2, 408, 300 }, + [13] = { 49, 80.4, 408, 300 }, + [14] = { 33.9, 73.7, 408, 300 }, + [15] = { 33.6, 73.4, 408, 300 }, + }, + ["lvl"] = "50-51", + }, + [92161] = { + ["coords"] = { + [1] = { 31.8, 89.2, 408, 300 }, + }, + ["lvl"] = "55", + }, + [92162] = { + ["coords"] = { + [1] = { 36.4, 89.3, 408, 300 }, + }, + ["lvl"] = "54", + }, + [92163] = { + ["coords"] = { + [1] = { 29.5, 88.8, 408, 172800 }, + }, + ["lvl"] = "55", + ["rnk"] = "1", + }, + [92164] = { + ["coords"] = { + [1] = { 36.4, 58.5, 408, 300 }, + [2] = { 38.3, 57.4, 408, 300 }, + [3] = { 35.8, 56.9, 408, 300 }, + [4] = { 39.7, 56.3, 408, 300 }, + [5] = { 37.4, 55.9, 408, 300 }, + [6] = { 40.1, 54.8, 408, 300 }, + [7] = { 38.6, 54, 408, 300 }, + [8] = { 37, 53.9, 408, 300 }, + [9] = { 40.4, 53.3, 408, 300 }, + [10] = { 37.1, 52.3, 408, 300 }, + [11] = { 40.9, 51.5, 408, 300 }, + [12] = { 36.5, 51.2, 408, 300 }, + [13] = { 41.5, 50.7, 408, 300 }, + [14] = { 40.7, 49.6, 408, 300 }, + [15] = { 39.7, 49.4, 408, 300 }, + [16] = { 37, 49.4, 408, 300 }, + [17] = { 37.7, 47.7, 408, 300 }, + }, + ["lvl"] = "51-52", + }, + [92165] = { + ["coords"] = { + [1] = { 37.1, 58.3, 408, 300 }, + [2] = { 39.3, 58, 408, 300 }, + [3] = { 37.1, 57, 408, 300 }, + [4] = { 38.1, 55.7, 408, 300 }, + [5] = { 40.7, 54.7, 408, 300 }, + [6] = { 41.5, 53.7, 408, 300 }, + [7] = { 41.7, 52.7, 408, 300 }, + [8] = { 39.8, 52.6, 408, 300 }, + [9] = { 38.7, 52, 408, 300 }, + [10] = { 37.5, 51, 408, 300 }, + [11] = { 38.4, 50.4, 408, 300 }, + [12] = { 38.7, 49.2, 408, 300 }, + }, + ["lvl"] = "51-52", + }, + [92166] = { + ["coords"] = { + [1] = { 36.4, 59.6, 408, 300 }, + [2] = { 38.2, 58.5, 408, 300 }, + [3] = { 40.1, 57.5, 408, 300 }, + [4] = { 39.3, 57.3, 408, 300 }, + [5] = { 36.7, 57, 408, 300 }, + [6] = { 39.5, 54, 408, 300 }, + [7] = { 38.1, 52.2, 408, 300 }, + [8] = { 42.1, 51.6, 408, 300 }, + [9] = { 38, 48.7, 408, 300 }, + }, + ["lvl"] = "52-53", + }, + [92167] = { + ["coords"] = { + [1] = { 37.2, 59.7, 408, 300 }, + }, + ["lvl"] = "54", + }, + [92168] = { + ["coords"] = { + [1] = { 49.9, 39.2, 408, 300 }, + }, + ["lvl"] = "55", + }, + [92169] = { + ["coords"] = { + [1] = { 50.3, 40.7, 408, 300 }, + }, + ["lvl"] = "50", + }, + [92170] = { + ["coords"] = { + [1] = { 49.5, 40.4, 408, 300 }, + }, + ["lvl"] = "53", + }, + [92171] = { + ["coords"] = { + [1] = { 50.3, 39.2, 408, 300 }, + }, + ["lvl"] = "54", + }, + [92172] = { + ["coords"] = { + [1] = { 49.5, 39.9, 408, 300 }, + }, + ["lvl"] = "50", + }, + [92173] = { + ["coords"] = {}, + ["lvl"] = "53", + }, + [92174] = { + ["coords"] = { + [1] = { 49.4, 41.6, 408, 300 }, + }, + ["lvl"] = "53", + }, + [92175] = { + ["coords"] = { + [1] = { 68.5, 80.6, 408, 300 }, + [2] = { 69.9, 78.1, 408, 300 }, + [3] = { 70.6, 77.6, 408, 300 }, + [4] = { 70.5, 75.5, 408, 300 }, + [5] = { 68.6, 74.1, 408, 300 }, + [6] = { 69.2, 73.9, 408, 300 }, + [7] = { 70, 72.4, 408, 300 }, + [8] = { 69.7, 72.4, 408, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [92176] = { + ["coords"] = { + [1] = { 69.6, 75.3, 408, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "52", + }, + [92177] = { + ["coords"] = { + [1] = { 69, 76.4, 408, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "52", + }, + [92178] = { + ["coords"] = { + [1] = { 70.5, 76.5, 408, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [92179] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "56", + }, + [92180] = { + ["coords"] = { + [1] = { 71.3, 79.1, 408, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [92181] = { + ["coords"] = { + [1] = { 70.7, 76, 408, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "48", + }, + [92182] = { + ["coords"] = { + [1] = { 70.7, 75.7, 408, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [92183] = { + ["coords"] = { + [1] = { 68.8, 75.6, 408, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "44", + }, + [92184] = { + ["coords"] = { + [1] = { 0.6, 71.8, 33, 300 }, + [2] = { 72.9, 82.8, 408, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "53", + ["rnk"] = "1", + }, + [92185] = { + ["coords"] = { + [1] = { 0.7, 72.8, 33, 300 }, + [2] = { 73.2, 84.8, 408, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [92186] = { + ["coords"] = { + [1] = { 0.8, 70.3, 33, 300 }, + [2] = { 73.3, 79.7, 408, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [92187] = { + ["coords"] = { + [1] = { 69.8, 76.4, 408, 300 }, + }, + ["lvl"] = "46", + }, + [92188] = { + ["coords"] = { + [1] = { 69.6, 76.4, 408, 300 }, + }, + ["lvl"] = "47", + }, + [92189] = { + ["coords"] = { + [1] = { 69.5, 78.9, 408, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "49", + }, + [92190] = { + ["coords"] = { + [1] = { 69.7, 78.8, 408, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "51", + }, + [92191] = { + ["coords"] = { + [1] = { 56.4, 83.4, 408, 300 }, + }, + ["lvl"] = "48", + }, + [92192] = { + ["coords"] = { + [1] = { 54.1, 84.4, 408, 180 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [92193] = { + ["coords"] = { + [1] = { 53.5, 13.3, 16, 300 }, + [2] = { 53.7, 11.3, 16, 300 }, + [3] = { 54, 11.1, 16, 300 }, + [4] = { 53.1, 10.8, 16, 300 }, + [5] = { 54.5, 10.6, 16, 300 }, + [6] = { 54.3, 10.4, 16, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [92194] = { + ["coords"] = { + [1] = { 53.8, 10.5, 16, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + }, + [92195] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "45", + }, + [92196] = { + ["coords"] = { + [1] = { 52.3, 10.6, 16, 300 }, + [2] = { 79, 75, 618, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "58", + }, + [92197] = { + ["coords"] = { + [1] = { 54.6, 10.3, 16, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "57", + }, + [92198] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "55", + }, + [92199] = { + ["coords"] = { + [1] = { 53.6, 11, 16, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [92200] = { + ["coords"] = { + [1] = { 53.4, 10.9, 16, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "50", + }, + [92201] = { + ["coords"] = { + [1] = { 53.6, 10.4, 16, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "52", + }, + [92202] = { + ["coords"] = { + [1] = { 53.2, 10.5, 16, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "52", + }, + [92203] = { + ["coords"] = { + [1] = { 43, 70.7, 408, 300 }, + [2] = { 44.8, 70.4, 408, 300 }, + [3] = { 46, 70.4, 408, 300 }, + [4] = { 43.5, 70, 408, 300 }, + [5] = { 42.5, 69.9, 408, 300 }, + [6] = { 41.8, 69.6, 408, 300 }, + [7] = { 49.1, 69.5, 408, 300 }, + [8] = { 45.5, 69.5, 408, 300 }, + [9] = { 41, 69.4, 408, 180 }, + [10] = { 48.1, 69.2, 408, 300 }, + [11] = { 43.2, 69.2, 408, 300 }, + [12] = { 46.7, 69.1, 408, 300 }, + [13] = { 47.4, 69, 408, 300 }, + [14] = { 44.5, 68.7, 408, 300 }, + [15] = { 42.4, 68.6, 408, 300 }, + [16] = { 47.9, 67.4, 408, 300 }, + [17] = { 48.8, 67, 408, 300 }, + }, + ["lvl"] = "50-52", + }, + [92204] = { + ["coords"] = { + [1] = { 44.1, 72.3, 408, 300 }, + }, + ["lvl"] = "53", + ["rnk"] = "1", + }, + [92210] = { + ["coords"] = { + [1] = { 29.1, 49.2, 215, 474022 }, + [2] = { 81.8, 80.4, 405, 474022 }, + }, + ["lvl"] = "60", + ["rnk"] = "4", + }, + [92211] = { + ["coords"] = { + [1] = { 29.2, 49.1, 215, 346104 }, + [2] = { 82, 80.3, 405, 346104 }, + }, + ["lvl"] = "60", + ["rnk"] = "4", + }, + [92212] = { + ["coords"] = { + [1] = { 29.1, 49.4, 215, 595251 }, + [2] = { 81.9, 80.6, 405, 595251 }, + }, + ["lvl"] = "60", + ["rnk"] = "4", + }, + [92213] = { + ["coords"] = { + [1] = { 29.2, 49.3, 215, 300 }, + [2] = { 82, 80.6, 405, 300 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [92214] = { + ["coords"] = {}, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [92215] = { + ["coords"] = {}, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [92216] = { + ["coords"] = {}, + ["lvl"] = "58-59", + ["rnk"] = "1", + }, + [92217] = { + ["coords"] = { + [1] = { 45.1, 91.3, 16, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "52", + }, + [92218] = { + ["coords"] = { + [1] = { 44.8, 92.1, 16, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "54", + }, + [92219] = { + ["coords"] = { + [1] = { 44.9, 91.9, 16, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [92220] = { + ["coords"] = { + [1] = { 45.6, 91.1, 16, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "56", + }, + [92221] = { + ["coords"] = { + [1] = { 50.9, 29.3, 17, 180 }, + }, + ["fac"] = "H", + ["lvl"] = "25", + }, + [92222] = { + ["coords"] = { + [1] = { 22.4, 25.3, 408, 180 }, + }, + ["lvl"] = "53", + }, + [92223] = { + ["coords"] = { + [1] = { 35.9, 51.6, 331, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "30", + }, + [92224] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "35", + }, + [92935] = { + ["coords"] = { + [1] = { 72.1, 76.8, 5086, 604800 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [92936] = { + ["coords"] = { + [1] = { 50.9, 58.4, 267, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "32", + }, + [92937] = { + ["coords"] = { + [1] = { 10.6, 2.1, 408, 300 }, + [2] = { 28.5, 79.7, 409, 300 }, + }, + ["lvl"] = "51", + ["rnk"] = "1", + }, + [92938] = { + ["coords"] = { + [1] = { 54.5, 58.2, 409, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [92939] = { + ["coords"] = { + [1] = { 54.4, 58.5, 409, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "58", + }, + [92940] = { + ["coords"] = { + [1] = { 6.1, 95.7, 40, 180 }, + [2] = { 73.5, 30.8, 409, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + }, + [92941] = { + ["coords"] = { + [1] = { 6.5, 94.7, 40, 180 }, + [2] = { 73.9, 29.6, 409, 180 }, + }, + ["fac"] = "A", + ["lvl"] = "50", + }, + [92942] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [92943] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [93000] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [93001] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [93002] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [93003] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [93004] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [93005] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [93006] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [93007] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [93008] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [93009] = { + ["coords"] = {}, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [93100] = { + ["coords"] = { + [1] = { 43.4, 60.4, 2040, 120 }, + [2] = { 58.4, 30.8, 5225, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [93101] = { + ["coords"] = { + [1] = { 60.2, 43, 409, 120 }, + }, + ["fac"] = "A", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [93102] = { + ["coords"] = { + [1] = { 70.1, 76.2, 408, 120 }, + }, + ["fac"] = "H", + ["lvl"] = "55", + ["rnk"] = "1", + }, + [93105] = { + ["coords"] = { + [1] = { 62.1, 47.1, 5087, 18000 }, + [2] = { 54.7, 35.1, 5087, 18000 }, + [3] = { 56.6, 34.2, 5087, 18000 }, + [4] = { 67.8, 28.3, 5087, 18000 }, + [5] = { 69.5, 28.3, 5087, 18000 }, + [6] = { 59.2, 26, 5087, 18000 }, + [7] = { 52.2, 25.6, 5087, 18000 }, + [8] = { 63.2, 22.7, 5087, 18000 }, + [9] = { 69.9, 16.2, 5087, 18000 }, + [10] = { 57.2, 15.9, 5087, 18000 }, + [11] = { 66.9, 7.2, 5087, 18000 }, + [12] = { 70, 6.9, 5087, 18000 }, + }, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [93106] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [93107] = { + ["coords"] = { + [1] = { 46.2, 80.7, 5087, 604800 }, + }, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [93108] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "1", + }, + [93115] = { + ["coords"] = { + [1] = { 65.1, 54.2, 17, 120 }, + [2] = { 25.1, 81.9, 440, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "30", + }, + [93116] = { + ["coords"] = {}, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [93117] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [93118] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [93119] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [93200] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [93201] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [93202] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [93203] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [93204] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [93205] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [93206] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [93207] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [93208] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [93210] = { + ["coords"] = {}, + ["lvl"] = "3", + }, + [93211] = { + ["coords"] = {}, + ["lvl"] = "40", + }, + [93332] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [93333] = { + ["coords"] = { + [1] = { 52.1, 68.2, 5557, 604800 }, + }, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [93334] = { + ["coords"] = {}, + ["lvl"] = "62", + }, + [93335] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [93336] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [93337] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [93338] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [93340] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [93341] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [93342] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [93343] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [93344] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [93345] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [93346] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [93347] = { + ["coords"] = { + [1] = { 70.8, 75.9, 490, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "1", + }, + [112180] = { + ["coords"] = { + [1] = { 40.6, 87.4, 148, 120 }, + [2] = { 26.9, 37.3, 331, 120 }, + [3] = { 25.7, 28.9, 331, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [131313] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [131314] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "50", + }, + [160016] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [160018] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [160100] = { + ["coords"] = { + [1] = { 44.3, 67.7, 14, 300 }, + [2] = { 44.2, 67.6, 14, 300 }, + [3] = { 44.1, 67.4, 14, 300 }, + [4] = { 44, 67.4, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "1-3", + }, + [160101] = { + ["coords"] = { + [1] = { 44.3, 67.6, 14, 300 }, + [2] = { 44.2, 67.5, 14, 300 }, + [3] = { 44.1, 67.4, 14, 300 }, + [4] = { 44, 67.4, 14, 300 }, + }, + ["lvl"] = "1-3", + }, + [160102] = { + ["coords"] = { + [1] = { 44, 67.5, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [160103] = { + ["coords"] = { + [1] = { 44.5, 67.6, 14, 300 }, + }, + ["lvl"] = "1-3", + }, + [160104] = { + ["coords"] = { + [1] = { 44.5, 67.3, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "1-3", + }, + [160105] = { + ["coords"] = { + [1] = { 44.6, 67.5, 14, 300 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + }, + [161207] = { + ["coords"] = { + [1] = { 55.1, 74.5, 5023, 86400 }, + [2] = { 29.9, 23, 5023, 86400 }, + }, + ["fac"] = "AH", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [161208] = { + ["coords"] = { + [1] = { 85.6, 46.4, 5023, 86400 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [161209] = { + ["coords"] = { + [1] = { 13.3, 48.3, 5023, 86400 }, + }, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [161210] = { + ["coords"] = { + [1] = { 34.9, 68.1, 5023, 86400 }, + }, + ["fac"] = "H", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [161211] = { + ["coords"] = { + [1] = { 65.7, 31.3, 5023, 86400 }, + }, + ["fac"] = "A", + ["lvl"] = "60", + ["rnk"] = "1", + }, + [161212] = { + ["coords"] = {}, + ["lvl"] = "60", + }, + [533001] = { + ["coords"] = {}, + ["lvl"] = "63", + }, + [533002] = { + ["coords"] = {}, + ["lvl"] = "63", + }, + [533003] = { + ["coords"] = {}, + ["lvl"] = "63", + }, + [533004] = { + ["coords"] = { + [1] = { 64.9, 24.9, 3456, 3520 }, + [2] = { 63.9, 24.5, 3456, 3520 }, + [3] = { 65.9, 23.1, 3456, 3520 }, + [4] = { 63.8, 21.6, 3456, 3520 }, + [5] = { 64.9, 21.2, 3456, 3520 }, + [6] = { 66.1, 20.8, 3456, 3520 }, + }, + ["lvl"] = "63", + }, + [604250] = { + ["coords"] = { + [1] = { 56.7, 29.4, 331, 120 }, + [2] = { 55.9, 93.7, 361, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [987000] = { + ["coords"] = { + [1] = { 49.5, 35.1, 1377, 260 }, + }, + ["fac"] = "AH", + ["lvl"] = "62", + ["rnk"] = "1", + }, + [987800] = { + ["coords"] = { + [1] = { 65.9, 54.1, 16, 0 }, + }, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [988001] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [988002] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [988003] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [988004] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [988005] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [988006] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [990000] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + }, + [1000002] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "54-55", + ["rnk"] = "1", + }, + [1001000] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "63", + }, + [2000000] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [2000001] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [2000002] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [2000003] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [2000004] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "63", + ["rnk"] = "3", + }, + [2000005] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "3", + }, + [2000006] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "3", + }, + [2000007] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "3", + }, + [2000008] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "3", + }, + [2000009] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "3", + }, + [2000010] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "3", + }, + [2000011] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "3", + }, + [2000012] = { + ["coords"] = {}, + ["fac"] = "AH", + ["lvl"] = "60", + ["rnk"] = "3", + }, + [2000013] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "3", + }, + [2000014] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [2000015] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [2000016] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [2000017] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [2000018] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [2000019] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [2000020] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [2000021] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [2000022] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [2000023] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [2000024] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [2000025] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [2000026] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [2000027] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [2000028] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [2000029] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [2000030] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [2000031] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [2000032] = { + ["coords"] = {}, + ["lvl"] = "1", + }, + [2000033] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [2000034] = { + ["coords"] = {}, + ["lvl"] = "61", + ["rnk"] = "1", + }, + [2000035] = { + ["coords"] = {}, + ["lvl"] = "60", + ["rnk"] = "1", + }, + [2000036] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [2000037] = { + ["coords"] = {}, + ["lvl"] = "62", + ["rnk"] = "1", + }, + [2000090] = { + ["coords"] = { + [1] = { 52.1, 83.4, 28, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "61", + ["rnk"] = "1", + }, + [2000091] = { + ["coords"] = { + [1] = { 52.1, 83.5, 28, 300 }, + }, + ["fac"] = "AH", + ["lvl"] = "83", + ["rnk"] = "3", + }, + [2000092] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [2000093] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [2000094] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [2000095] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [2000096] = { + ["coords"] = {}, + ["lvl"] = "63", + ["rnk"] = "3", + }, + [2509000] = { + ["coords"] = { + [1] = { 32.5, 52.7, 1377, 120 }, + }, + ["fac"] = "AH", + ["lvl"] = "54-55", + ["rnk"] = "1", + }, +} + diff --git a/RelationshipsQuestAndItemBrowserData_Zones.lua b/RelationshipsQuestAndItemBrowserData_Zones.lua new file mode 100644 index 0000000..b8431b3 --- /dev/null +++ b/RelationshipsQuestAndItemBrowserData_Zones.lua @@ -0,0 +1,2217 @@ +-- Relationships Quest And Item Browser bundled quest database. +-- Source data: pfQuest and pfQuest-turtle (MIT). + +-- Source: https://raw.githubusercontent.com/shagu/pfQuest/master/db/enUS/zones.lua +RelationshipsQuestAndItemBrowserData["zones"]["enUS"] = { + [1] = "Dun Morogh", + [2] = "Longshore", + [3] = "Badlands", + [4] = "Blasted Lands", + [7] = "Blackwater Cove", + [8] = "Swamp of Sorrows", + [9] = "Northshire Valley", + [10] = "Duskwood", + [11] = "Wetlands", + [12] = "Elwynn Forest", + [13] = "The World Tree", + [14] = "Durotar", + [15] = "Dustwallow Marsh", + [16] = "Azshara", + [17] = "The Barrens", + [18] = "Crystal Lake", + [19] = "Zul\'Gurub", + [20] = "Moonbrook", + [21] = "Kul Tiras", + [22] = "Programmer Isle", + [23] = "Northshire River", + [24] = "Northshire Abbey", + [25] = "Blackrock Mountain", + [26] = "Lighthouse", + [28] = "Western Plaguelands", + [30] = "Nine", + [32] = "The Cemetary", + [33] = "Stranglethorn Vale", + [34] = "Echo Ridge Mine", + [35] = "Booty Bay", + [36] = "Alterac Mountains", + [37] = "Lake Nazferiti", + [38] = "Loch Modan", + [40] = "Westfall", + [41] = "Deadwind Pass", + [42] = "Darkshire", + [43] = "Wild Shore", + [44] = "Redridge Mountains", + [45] = "Arathi Highlands", + [46] = "Burning Steppes", + [47] = "The Hinterlands", + [49] = "Dead Man\'s Hole", + [51] = "Searing Gorge", + [53] = "Thieves Camp", + [54] = "Jasperlode Mine", + [55] = "Valley of Heroes UNUSED", + [56] = "Heroes\' Vigil", + [57] = "Fargodeep Mine", + [59] = "Northshire Vineyards", + [60] = "Forest\'s Edge", + [61] = "Thunder Falls", + [62] = "Brackwell Pumpkin Patch", + [63] = "The Stonefield Farm", + [64] = "The Maclure Vineyards", + [65] = "***On Map Dungeon***", + [66] = "***On Map Dungeon***", + [67] = "***On Map Dungeon***", + [68] = "Lake Everstill", + [69] = "Lakeshire", + [70] = "Stonewatch", + [71] = "Stonewatch Falls", + [72] = "The Dark Portal", + [73] = "The Tainted Scar", + [74] = "Pool of Tears", + [75] = "Stonard", + [76] = "Fallow Sanctuary", + [77] = "Anvilmar", + [80] = "Stormwind Mountains", + [81] = "Jeff NE Quadrant Changed", + [82] = "Jeff NW Quadrant", + [83] = "Jeff SE Quadrant", + [84] = "Jeff SW Quadrant", + [85] = "Tirisfal Glades", + [86] = "Stone Cairn Lake", + [87] = "Goldshire", + [88] = "Eastvale Logging Camp", + [89] = "Mirror Lake Orchard", + [91] = "Tower of Azora", + [92] = "Mirror Lake", + [93] = "Vul\'Gol Ogre Mound", + [94] = "Raven Hill", + [95] = "Redridge Canyons", + [96] = "Tower of Ilgalar", + [97] = "Alther\'s Mill", + [98] = "Rethban Caverns", + [99] = "Rebel Camp", + [100] = "Nesingwary\'s Expedition", + [101] = "Kurzen\'s Compound", + [102] = "Ruins of Zul\'Kunda", + [103] = "Ruins of Zul\'Mamwe", + [104] = "The Vile Reef", + [105] = "Mosh\'Ogg Ogre Mound", + [106] = "The Stockpile", + [107] = "Saldean\'s Farm", + [108] = "Sentinel Hill", + [109] = "Furlbrow\'s Pumpkin Farm", + [111] = "Jangolode Mine", + [113] = "Gold Coast Quarry", + [115] = "Westfall Lighthouse", + [116] = "Misty Valley", + [117] = "Grom\'gol Base Camp", + [118] = "Whelgar\'s Excavation Site", + [120] = "Westbrook Garrison", + [121] = "Tranquil Gardens Cemetery", + [122] = "Zuuldaia Ruins", + [123] = "Bal\'lal Ruins", + [125] = "Kal\'ai Ruins", + [126] = "Tkashi Ruins", + [127] = "Balia\'mah Ruins", + [128] = "Ziata\'jai Ruins", + [129] = "Mizjah Ruins", + [130] = "Silverpine Forest", + [131] = "Kharanos", + [132] = "Coldridge Valley", + [133] = "Gnomeregan", + [134] = "Gol\'Bolar Quarry", + [135] = "Frostmane Hold", + [136] = "The Grizzled Den", + [137] = "Brewnall Village", + [138] = "Misty Pine Refuge", + [139] = "Eastern Plaguelands", + [141] = "Teldrassil", + [142] = "Ironband\'s Excavation Site", + [143] = "Mo\'grosh Stronghold", + [144] = "Thelsamar", + [145] = "Algaz Gate", + [146] = "Stonewrought Dam", + [147] = "The Farstrider Lodge", + [148] = "Darkshore", + [149] = "Silver Stream Mine", + [150] = "Menethil Harbor", + [151] = "Designer Island", + [152] = "The Bulwark", + [153] = "Ruins of Lordaeron", + [154] = "Deathknell", + [155] = "Night Web\'s Hollow", + [156] = "Solliden Farmstead", + [157] = "Agamand Mills", + [158] = "Agamand Family Crypt", + [159] = "Brill", + [160] = "Whispering Gardens", + [161] = "Terrace of Repose", + [162] = "Brightwater Lake", + [163] = "Gunther\'s Retreat", + [164] = "Garren\'s Haunt", + [165] = "Balnir Farmstead", + [166] = "Cold Hearth Manor", + [167] = "Crusader Outpost", + [168] = "The North Coast", + [169] = "Whispering Shore", + [170] = "Lordamere Lake", + [172] = "Fenris Isle", + [173] = "Faol\'s Rest", + [186] = "Dolanaar", + [187] = "Darnassus UNUSED", + [188] = "Shadowglen", + [189] = "Steelgrill\'s Depot", + [190] = "Hearthglen", + [192] = "Northridge Lumber Camp", + [193] = "Ruins of Andorhal", + [195] = "School of Necromancy", + [196] = "Uther\'s Tomb", + [197] = "Sorrow Hill", + [198] = "The Weeping Cave", + [199] = "Felstone Field", + [200] = "Dalson\'s Tears", + [201] = "Gahrron\'s Withering", + [202] = "The Writhing Haunt", + [203] = "Mardenholde Keep", + [204] = "Pyrewood Village", + [205] = "Dun Modr", + [206] = "Westfall", + [207] = "The Great Sea", + [208] = "Unused Ironcladcove", + [209] = "Shadowfang Keep", + [210] = "***On Map Dungeon***", + [211] = "Iceflow Lake", + [212] = "Helm\'s Bed Lake", + [213] = "Deep Elem Mine", + [214] = "The Great Sea", + [215] = "Mulgore", + [219] = "Alexston Farmstead", + [220] = "Red Cloud Mesa", + [221] = "Camp Narache", + [222] = "Bloodhoof Village", + [223] = "Stonebull Lake", + [224] = "Ravaged Caravan", + [225] = "Red Rocks", + [226] = "The Skittering Dark", + [227] = "Valgan\'s Field", + [228] = "The Sepulcher", + [229] = "Olsen\'s Farthing", + [230] = "The Greymane Wall", + [231] = "Beren\'s Peril", + [232] = "The Dawning Isles", + [233] = "Ambermill", + [235] = "Fenris Keep", + [236] = "Shadowfang Keep", + [237] = "The Decrepit Ferry", + [238] = "Malden\'s Orchard", + [239] = "The Ivar Patch", + [240] = "The Dead Field", + [241] = "The Rotting Orchard", + [242] = "Brightwood Grove", + [243] = "Forlorn Rowe", + [244] = "The Whipple Estate", + [245] = "The Yorgen Farmstead", + [246] = "The Cauldron", + [247] = "Grimesilt Dig Site", + [249] = "Dreadmaul Rock", + [250] = "Ruins of Thaurissan", + [251] = "Flame Crest", + [252] = "Blackrock Stronghold", + [253] = "The Pillar of Ash", + [254] = "Blackrock Mountain", + [255] = "Altar of Storms", + [256] = "Aldrassil", + [257] = "Shadowthread Cave", + [258] = "Fel Rock", + [259] = "Lake Al\'Ameth", + [260] = "Starbreeze Village", + [261] = "Gnarlpine Hold", + [262] = "Ban\'ethil Barrow Den", + [263] = "The Cleft", + [264] = "The Oracle Glade", + [265] = "Wellspring River", + [266] = "Wellspring Lake", + [267] = "Hillsbrad Foothills", + [268] = "Azshara Crater", + [269] = "Dun Algaz", + [271] = "Southshore", + [272] = "Tarren Mill", + [275] = "Durnholde Keep", + [276] = "UNUSED Stonewrought Pass", + [277] = "The Foothill Caverns", + [278] = "Lordamere Internment Camp", + [279] = "Dalaran", + [280] = "Strahnbrad", + [281] = "Ruins of Alterac", + [282] = "Crushridge Hold", + [283] = "Slaughter Hollow", + [284] = "The Uplands", + [285] = "Southpoint Tower", + [286] = "Hillsbrad Fields", + [287] = "Hillsbrad", + [288] = "Azurelode Mine", + [289] = "Nethander Stead", + [290] = "Dun Garok", + [293] = "Thoradin\'s Wall", + [294] = "Eastern Strand", + [295] = "Western Strand", + [296] = "South Seas UNUSED", + [297] = "Jaguero Isle", + [298] = "Baradin Bay", + [299] = "Menethil Bay", + [300] = "Misty Reed Strand", + [301] = "The Savage Coast", + [302] = "The Crystal Shore", + [303] = "Shell Beach", + [305] = "North Tide\'s Run", + [306] = "South Tide\'s Run", + [307] = "The Overlook Cliffs", + [308] = "The Forbidding Sea", + [309] = "Ironbeard\'s Tomb", + [310] = "Crystalvein Mine", + [311] = "Ruins of Aboraz", + [312] = "Janeiro\'s Point", + [313] = "Northfold Manor", + [314] = "Go\'Shek Farm", + [315] = "Dabyrie\'s Farmstead", + [316] = "Boulderfist Hall", + [317] = "Witherbark Village", + [318] = "Drywhisker Gorge", + [320] = "Refuge Pointe", + [321] = "Hammerfall", + [322] = "Blackwater Shipwrecks", + [323] = "O\'Breen\'s Camp", + [324] = "Stromgarde Keep", + [325] = "The Tower of Arathor", + [326] = "The Sanctum", + [327] = "Faldir\'s Cove", + [328] = "The Drowned Reef", + [330] = "Thandol Span", + [331] = "Ashenvale", + [332] = "The Great Sea", + [333] = "Circle of East Binding", + [334] = "Circle of West Binding", + [335] = "Circle of Inner Binding", + [336] = "Circle of Outer Binding", + [337] = "Apocryphan\'s Rest", + [338] = "Angor Fortress", + [339] = "Lethlor Ravine", + [340] = "Kargath", + [341] = "Camp Kosh", + [342] = "Camp Boff", + [343] = "Camp Wurg", + [344] = "Camp Cagg", + [345] = "Agmond\'s End", + [346] = "Hammertoe\'s Digsite", + [347] = "Dustbelch Grotto", + [348] = "Aerie Peak", + [349] = "Wildhammer Keep", + [350] = "Quel\'Danil Lodge", + [351] = "Skulk Rock", + [352] = "Zun\'watha", + [353] = "Shadra\'Alor", + [354] = "Jintha\'Alor", + [355] = "The Altar of Zul", + [356] = "Seradane", + [357] = "Feralas", + [358] = "Brambleblade Ravine", + [359] = "Bael Modan", + [360] = "The Venture Co. Mine", + [361] = "Felwood", + [362] = "Razor Hill", + [363] = "Valley of Trials", + [364] = "The Den", + [365] = "Burning Blade Coven", + [366] = "Kolkar Crag", + [367] = "Sen\'jin Village", + [368] = "Echo Isles", + [369] = "Thunder Ridge", + [370] = "Drygulch Ravine", + [371] = "Dustwind Cave", + [372] = "Tiragarde Keep", + [373] = "Scuttle Coast", + [374] = "Bladefist Bay", + [375] = "Deadeye Shore", + [377] = "Southfury River", + [378] = "Camp Taurajo", + [379] = "Far Watch Post", + [380] = "The Crossroads", + [381] = "Boulder Lode Mine", + [382] = "The Sludge Fen", + [383] = "The Dry Hills", + [384] = "Dreadmist Peak", + [385] = "Northwatch Hold", + [386] = "The Forgotten Pools", + [387] = "Lushwater Oasis", + [388] = "The Stagnant Oasis", + [390] = "Field of Giants", + [391] = "The Merchant Coast", + [392] = "Ratchet", + [393] = "Darkspear Strand", + [394] = "Darrowmere Lake UNUSED", + [395] = "Caer Darrow UNUSED", + [396] = "Winterhoof Water Well", + [397] = "Thunderhorn Water Well", + [398] = "Wildmane Water Well", + [399] = "Skyline Ridge", + [400] = "Thousand Needles", + [401] = "The Tidus Stair", + [403] = "Shady Rest Inn", + [404] = "Bael\'dun Digsite", + [405] = "Desolace", + [406] = "Stonetalon Mountains", + [407] = "Orgrimmar UNUSED", + [408] = "Gillijim\'s Isle", + [409] = "Island of Doctor Lapidis", + [410] = "Razorwind Canyon", + [411] = "Bathran\'s Haunt", + [412] = "The Ruins of Ordil\'Aran", + [413] = "Maestra\'s Post", + [414] = "The Zoram Strand", + [415] = "Astranaar", + [416] = "The Shrine of Aessina", + [417] = "Fire Scar Shrine", + [418] = "The Ruins of Stardust", + [419] = "The Howling Vale", + [420] = "Silverwind Refuge", + [421] = "Mystral Lake", + [422] = "Fallen Sky Lake", + [424] = "Iris Lake", + [425] = "Moonwell", + [426] = "Raynewood Retreat", + [427] = "The Shady Nook", + [428] = "Night Run", + [429] = "Xavian", + [430] = "Satyrnaar", + [431] = "Splintertree Post", + [432] = "The Dor\'Danil Barrow Den", + [433] = "Falfarren River", + [434] = "Felfire Hill", + [435] = "Demon Fall Canyon", + [436] = "Demon Fall Ridge", + [437] = "Warsong Lumber Camp", + [438] = "Bough Shadow", + [439] = "The Shimmering Flats", + [440] = "Tanaris", + [441] = "Lake Falathim", + [442] = "Auberdine", + [443] = "Ruins of Mathystra", + [444] = "Tower of Althalaxx", + [445] = "Cliffspring Falls", + [446] = "Bashal\'Aran", + [447] = "Ameth\'Aran", + [448] = "Grove of the Ancients", + [449] = "The Master\'s Glaive", + [450] = "Remtravel\'s Excavation", + [452] = "Mist\'s Edge", + [453] = "The Long Wash", + [454] = "Wildbend River", + [455] = "Blackwood Den", + [456] = "Cliffspring River", + [457] = "The Veiled Sea", + [458] = "Gold Road", + [459] = "Scarlet Watch Post", + [460] = "Sun Rock Retreat", + [461] = "Windshear Crag", + [463] = "Cragpool Lake", + [464] = "Mirkfallon Lake", + [465] = "The Charred Vale", + [466] = "Valley of the Bloodfuries", + [467] = "Stonetalon Peak", + [468] = "The Talon Den", + [469] = "Greatwood Vale", + [470] = "Thunder Bluff UNUSED", + [471] = "Brave Wind Mesa", + [472] = "Fire Stone Mesa", + [473] = "Mantle Rock", + [474] = "Hunter Rise UNUSED", + [475] = "Spirit RiseUNUSED", + [476] = "Elder RiseUNUSED", + [477] = "Ruins of Jubuwal", + [478] = "Pools of Arlithrien", + [479] = "The Rustmaul Dig Site", + [480] = "Camp E\'thok", + [481] = "Splithoof Crag", + [482] = "Highperch", + [483] = "The Screeching Canyon", + [484] = "Freewind Post", + [485] = "The Great Lift", + [486] = "Galak Hold", + [487] = "Roguefeather Den", + [488] = "The Weathered Nook", + [489] = "Thalanaar", + [490] = "Un\'Goro Crater", + [491] = "Razorfen Kraul", + [492] = "Raven Hill Cemetery", + [493] = "Moonglade", + [495] = "DELETE ME", + [496] = "Brackenwall Village", + [497] = "Swamplight Manor", + [498] = "Bloodfen Burrow", + [499] = "Darkmist Cavern", + [500] = "Moggle Point", + [501] = "Beezil\'s Wreck", + [502] = "Witch Hill", + [503] = "Sentry Point", + [504] = "North Point Tower", + [505] = "West Point Tower", + [506] = "Lost Point", + [507] = "Bluefen", + [508] = "Stonemaul Ruins", + [509] = "The Den of Flame", + [510] = "The Dragonmurk", + [511] = "Wyrmbog", + [512] = "Onyxia\'s Lair UNUSED", + [513] = "Theramore Isle", + [514] = "Foothold Citadel", + [515] = "Ironclad Prison", + [516] = "Dustwallow Bay", + [517] = "Tidefury Cove", + [518] = "Dreadmurk Shore", + [536] = "Addle\'s Stead", + [537] = "Fire Plume Ridge", + [538] = "Lakkari Tar Pits", + [539] = "Terror Run", + [540] = "The Slithering Scar", + [541] = "Marshal\'s Refuge", + [542] = "Fungal Rock", + [543] = "Golakka Hot Springs", + [556] = "The Loch", + [576] = "Beggar\'s Haunt", + [596] = "Kodo Graveyard", + [597] = "Ghost Walker Post", + [598] = "Sar\'theris Strand", + [599] = "Thunder Axe Fortress", + [600] = "Bolgan\'s Hole", + [602] = "Mannoroc Coven", + [603] = "Sargeron", + [604] = "Magram Village", + [606] = "Gelkis Village", + [607] = "Valley of Spears", + [608] = "Nijel\'s Point", + [609] = "Kolkar Village", + [616] = "Hyjal", + [618] = "Winterspring", + [636] = "Blackwolf River", + [637] = "Kodo Rock", + [638] = "Hidden Path", + [639] = "Spirit Rock", + [640] = "Shrine of the Dormant Flame", + [656] = "Lake Elune\'ara", + [657] = "The Harborage", + [676] = "Outland", + [696] = "Craftsmen\'s Terrace UNUSED", + [697] = "Tradesmen\'s Terrace UNUSED", + [698] = "The Temple Gardens UNUSED", + [699] = "Temple of Elune UNUSED", + [700] = "Cenarion Enclave UNUSED", + [701] = "Warrior\'s Terrace UNUSED", + [702] = "Rut\'theran Village", + [716] = "Ironband\'s Compound", + [717] = "The Stockade", + [718] = "Wailing Caverns", + [719] = "Blackfathom Deeps", + [720] = "Fray Island", + [721] = "Gnomeregan", + [722] = "Razorfen Downs", + [736] = "Ban\'ethil Hollow", + [796] = "Scarlet Monastery", + [797] = "Jerod\'s Landing", + [798] = "Ridgepoint Tower", + [799] = "The Darkened Bank", + [800] = "Coldridge Pass", + [801] = "Chill Breeze Valley", + [802] = "Shimmer Ridge", + [803] = "Amberstill Ranch", + [804] = "The Tundrid Hills", + [805] = "South Gate Pass", + [806] = "South Gate Outpost", + [807] = "North Gate Pass", + [808] = "North Gate Outpost", + [809] = "Gates of Ironforge", + [810] = "Stillwater Pond", + [811] = "Nightmare Vale", + [812] = "Venomweb Vale", + [813] = "The Bulwark", + [814] = "Southfury River", + [815] = "Southfury River", + [816] = "Razormane Grounds", + [817] = "Skull Rock", + [818] = "Palemane Rock", + [819] = "Windfury Ridge", + [820] = "The Golden Plains", + [821] = "The Rolling Plains", + [836] = "Dun Algaz", + [837] = "Dun Algaz", + [838] = "North Gate Pass", + [839] = "South Gate Pass", + [856] = "Twilight Grove", + [876] = "GM Island", + [877] = "Delete ME", + [878] = "Southfury River", + [879] = "Southfury River", + [880] = "Thandol Span", + [881] = "Thandol Span", + [896] = "Purgation Isle", + [916] = "The Jansen Stead", + [917] = "The Dead Acre", + [918] = "The Molsen Farm", + [919] = "Stendel\'s Pond", + [920] = "The Dagger Hills", + [921] = "Demont\'s Place", + [922] = "The Dust Plains", + [923] = "Stonesplinter Valley", + [924] = "Valley of Kings", + [925] = "Algaz Station", + [926] = "Bucklebree Farm", + [927] = "The Shining Strand", + [928] = "North Tide\'s Hollow", + [936] = "Grizzlepaw Ridge", + [956] = "The Verdant Fields", + [976] = "Gadgetzan", + [977] = "Steamwheedle Port", + [978] = "Zul\'Farrak", + [979] = "Sandsorrow Watch", + [980] = "Thistleshrub Valley", + [981] = "The Gaping Chasm", + [982] = "The Noxious Lair", + [983] = "Dunemaul Compound", + [984] = "Eastmoon Ruins", + [985] = "Waterspring Field", + [986] = "Zalashji\'s Den", + [987] = "Land\'s End Beach", + [988] = "Wavestrider Beach", + [989] = "Uldum", + [990] = "Valley of the Watchers", + [991] = "Gunstan\'s Post", + [992] = "Southmoon Ruins", + [996] = "Render\'s Camp", + [997] = "Render\'s Valley", + [998] = "Render\'s Rock", + [999] = "Stonewatch Tower", + [1000] = "Galardell Valley", + [1001] = "Lakeridge Highway", + [1002] = "Three Corners", + [1016] = "Direforge Hill", + [1017] = "Raptor Ridge", + [1018] = "Black Channel Marsh", + [1019] = "The Green Belt", + [1020] = "Mosshide Fen", + [1021] = "Thelgen Rock", + [1022] = "Bluegill Marsh", + [1023] = "Saltspray Glen", + [1024] = "Sundown Marsh", + [1025] = "The Green Belt", + [1036] = "Angerfang Encampment", + [1037] = "Grim Batol", + [1038] = "Dragonmaw Gates", + [1039] = "The Lost Fleet", + [1056] = "Darrow Hill", + [1057] = "Thoradin\'s Wall", + [1076] = "Webwinder Path", + [1097] = "The Hushed Bank", + [1098] = "Manor Mistmantle", + [1099] = "Camp Mojache", + [1100] = "Grimtotem Compound", + [1101] = "The Writhing Deep", + [1102] = "Wildwind Lake", + [1103] = "Gordunni Outpost", + [1104] = "Mok\'Gordun", + [1105] = "Feral Scar Vale", + [1106] = "Frayfeather Highlands", + [1107] = "Idlewind Lake", + [1108] = "The Forgotten Coast", + [1109] = "East Pillar", + [1110] = "West Pillar", + [1111] = "Dream Bough", + [1112] = "Jademir Lake", + [1113] = "Oneiros", + [1114] = "Ruins of Ravenwind", + [1115] = "Rage Scar Hold", + [1116] = "Feathermoon Stronghold", + [1117] = "Ruins of Solarsal", + [1118] = "Lower Wilds UNUSED", + [1119] = "The Twin Colossals", + [1120] = "Sardor Isle", + [1121] = "Isle of Dread", + [1136] = "High Wilderness", + [1137] = "Lower Wilds", + [1156] = "Southern Barrens", + [1157] = "Southern Gold Road", + [1176] = "Zul\'Farrak", + [1196] = "UNUSEDAlcaz Island", + [1216] = "Timbermaw Hold", + [1217] = "Vanndir Encampment", + [1218] = "TESTAzshara", + [1219] = "Legash Encampment", + [1220] = "Thalassian Base Camp", + [1221] = "Ruins of Eldarath ", + [1222] = "Hetaera\'s Clutch", + [1223] = "Temple of Zin-Malor", + [1224] = "Bear\'s Head", + [1225] = "Ursolan", + [1226] = "Temple of Arkkoran", + [1227] = "Bay of Storms", + [1228] = "The Shattered Strand", + [1229] = "Tower of Eldara", + [1230] = "Jagged Reef", + [1231] = "Southridge Beach", + [1232] = "Ravencrest Monument", + [1233] = "Forlorn Ridge", + [1234] = "Lake Mennar", + [1235] = "Shadowsong Shrine", + [1236] = "Haldarr Encampment", + [1237] = "Valormok", + [1256] = "The Ruined Reaches", + [1276] = "The Talondeep Path", + [1277] = "The Talondeep Path", + [1296] = "Rocktusk Farm", + [1297] = "Jaggedswine Farm", + [1316] = "Razorfen Downs", + [1336] = "Lost Rigger Cove", + [1337] = "Uldaman", + [1338] = "Lordamere Lake", + [1339] = "Lordamere Lake", + [1357] = "Gallows\' Corner", + [1377] = "Silithus", + [1397] = "Emerald Forest", + [1417] = "Sunken Temple", + [1437] = "Dreadmaul Hold", + [1438] = "Nethergarde Keep", + [1439] = "Dreadmaul Post", + [1440] = "Serpent\'s Coil", + [1441] = "Altar of Storms", + [1442] = "Firewatch Ridge", + [1443] = "The Slag Pit", + [1444] = "The Sea of Cinders", + [1445] = "Blackrock Mountain", + [1446] = "Thorium Point", + [1457] = "Garrison Armory", + [1477] = "The Temple of Atal\'Hakkar", + [1497] = "Undercity", + [1517] = "Uldaman", + [1518] = "Not Used Deadmines", + [1519] = "Stormwind City", + [1537] = "Ironforge", + [1557] = "Splithoof Hold", + [1577] = "The Cape of Stranglethorn", + [1578] = "Southern Savage Coast", + [1579] = "Unused The Deadmines 002", + [1580] = "Unused Ironclad Cove 003", + [1581] = "The Deadmines", + [1582] = "Ironclad Cove", + [1583] = "Blackrock Spire", + [1584] = "Blackrock Depths", + [1597] = "Raptor Grounds UNUSED", + [1598] = "Grol\'dom Farm UNUSED", + [1599] = "Mor\'shan Base Camp", + [1600] = "Honor\'s Stand UNUSED", + [1601] = "Blackthorn Ridge UNUSED", + [1602] = "Bramblescar UNUSED", + [1603] = "Agama\'gor UNUSED", + [1617] = "Valley of Heroes", + [1637] = "Orgrimmar", + [1638] = "Thunder Bluff", + [1639] = "Elder Rise", + [1640] = "Spirit Rise", + [1641] = "Hunter Rise", + [1657] = "Darnassus", + [1658] = "Cenarion Enclave", + [1659] = "Craftsmen\'s Terrace", + [1660] = "Warrior\'s Terrace", + [1661] = "The Temple Gardens", + [1662] = "Tradesmen\'s Terrace", + [1677] = "Gavin\'s Naze", + [1678] = "Sofera\'s Naze", + [1679] = "Corrahn\'s Dagger", + [1680] = "The Headland", + [1681] = "Misty Shore", + [1682] = "Dandred\'s Fold", + [1683] = "Growless Cave", + [1684] = "Chillwind Point", + [1697] = "Raptor Grounds", + [1698] = "Bramblescar", + [1699] = "Thorn Hill", + [1700] = "Agama\'gor", + [1701] = "Blackthorn Ridge", + [1702] = "Honor\'s Stand", + [1703] = "The Mor\'shan Rampart", + [1704] = "Grol\'dom Farm", + [1717] = "Razorfen Kraul", + [1718] = "The Great Lift", + [1737] = "Mistvale Valley", + [1738] = "Nek\'mani Wellspring", + [1739] = "Bloodsail Compound", + [1740] = "Venture Co. Base Camp", + [1741] = "Gurubashi Arena", + [1742] = "Spirit Den", + [1757] = "The Crimson Veil", + [1758] = "The Riptide", + [1759] = "The Damsel\'s Luck", + [1760] = "Venture Co. Operations Center", + [1761] = "Deadwood Village", + [1762] = "Felpaw Village", + [1763] = "Jaedenar", + [1764] = "Bloodvenom River", + [1765] = "Bloodvenom Falls", + [1766] = "Shatter Scar Vale", + [1767] = "Irontree Woods", + [1768] = "Irontree Cavern", + [1769] = "Timbermaw Hold", + [1770] = "Shadow Hold", + [1771] = "Shrine of the Deceiver", + [1777] = "Itharius\'s Cave", + [1778] = "Sorrowmurk", + [1779] = "Draenil\'dur Village", + [1780] = "Splinterspear Junction", + [1797] = "Stagalbog", + [1798] = "The Shifting Mire", + [1817] = "Stagalbog Cave", + [1837] = "Witherbark Caverns", + [1857] = "Thoradin\'s Wall", + [1858] = "Boulder\'gor", + [1877] = "Valley of Fangs", + [1878] = "The Dustbowl", + [1879] = "Mirage Flats", + [1880] = "Featherbeard\'s Hovel", + [1881] = "Shindigger\'s Camp", + [1882] = "Plaguemist Ravine", + [1883] = "Valorwind Lake", + [1884] = "Agol\'watha", + [1885] = "Hiri\'watha", + [1886] = "The Creeping Ruin", + [1887] = "Bogen\'s Ledge", + [1897] = "The Maker\'s Terrace", + [1898] = "Dustwind Gulch", + [1917] = "Shaol\'watha", + [1937] = "Noonshade Ruins", + [1938] = "Broken Pillar", + [1939] = "Abyssal Sands", + [1940] = "Southbreak Shore", + [1941] = "Caverns of Time", + [1942] = "The Marshlands", + [1943] = "Ironstone Plateau", + [1957] = "Blackchar Cave", + [1958] = "Tanner Camp", + [1959] = "Dustfire Valley", + [1977] = "Zul\'Gurub", + [1978] = "Misty Reed Post", + [1997] = "Bloodvenom Post ", + [1998] = "Talonbranch Glade ", + [2017] = "Stratholme", + [2037] = "UNUSEDShadowfang Keep 003", + [2057] = "Scholomance", + [2077] = "Twilight Vale", + [2078] = "Twilight Shore", + [2079] = "Alcaz Island", + [2097] = "Darkcloud Pinnacle", + [2098] = "Dawning Wood Catacombs", + [2099] = "Stonewatch Keep", + [2100] = "Maraudon", + [2101] = "Stoutlager Inn", + [2102] = "Thunderbrew Distillery", + [2103] = "Menethil Keep", + [2104] = "Deepwater Tavern", + [2117] = "Shadow Grave", + [2118] = "Brill Town Hall", + [2119] = "Gallows\' End Tavern", + [2137] = "The Pools of VisionUNUSED", + [2138] = "Dreadmist Den", + [2157] = "Bael\'dun Keep", + [2158] = "Emberstrife\'s Den", + [2159] = "Onyxia\'s Lair", + [2160] = "Windshear Mine", + [2161] = "Roland\'s Doom", + [2177] = "Battle Ring", + [2197] = "The Pools of Vision", + [2198] = "Shadowbreak Ravine", + [2217] = "Broken Spear Village", + [2237] = "Whitereach Post", + [2238] = "Gornia", + [2239] = "Zane\'s Eye Crater", + [2240] = "Mirage Raceway", + [2241] = "Frostsaber Rock", + [2242] = "The Hidden Grove", + [2243] = "Timbermaw Post", + [2244] = "Winterfall Village", + [2245] = "Mazthoril", + [2246] = "Frostfire Hot Springs", + [2247] = "Ice Thistle Hills", + [2248] = "Dun Mandarr", + [2249] = "Frostwhisper Gorge", + [2250] = "Owl Wing Thicket", + [2251] = "Lake Kel\'Theril", + [2252] = "The Ruins of Kel\'Theril", + [2253] = "Starfall Village", + [2254] = "Ban\'Thallow Barrow Den", + [2255] = "Everlook", + [2256] = "Darkwhisper Gorge", + [2257] = "Deeprun Tram", + [2258] = "The Fungal Vale", + [2259] = "UNUSEDThe Marris Stead", + [2260] = "The Marris Stead", + [2261] = "The Undercroft", + [2262] = "Darrowshire", + [2263] = "Crown Guard Tower", + [2264] = "Corin\'s Crossing", + [2265] = "Scarlet Base Camp", + [2266] = "Tyr\'s Hand", + [2267] = "The Scarlet Basilica", + [2268] = "Light\'s Hope Chapel", + [2269] = "Browman Mill", + [2270] = "The Noxious Glade", + [2271] = "Eastwall Tower", + [2272] = "Northdale", + [2273] = "Zul\'Mashar", + [2274] = "Mazra\'Alor", + [2275] = "Northpass Tower", + [2276] = "Quel\'Lithien Lodge", + [2277] = "Plaguewood", + [2278] = "Scourgehold", + [2279] = "Stratholme", + [2280] = "UNUSED Stratholme", + [2297] = "Darrowmere Lake", + [2298] = "Caer Darrow", + [2299] = "Darrowmere Lake", + [2300] = "Caverns of Time", + [2301] = "Thistlefur Village", + [2302] = "The Quagmire", + [2303] = "Windbreak Canyon", + [2317] = "South Seas", + [2318] = "The Great Sea", + [2319] = "The Great Sea", + [2320] = "The Great Sea", + [2321] = "The Great Sea", + [2322] = "The Veiled Sea", + [2323] = "The Veiled Sea", + [2324] = "The Veiled Sea", + [2325] = "The Veiled Sea", + [2326] = "The Veiled Sea", + [2337] = "Razor Hill Barracks", + [2338] = "South Seas", + [2339] = "The Great Sea", + [2357] = "Bloodtooth Camp", + [2358] = "Forest Song", + [2359] = "Greenpaw Village", + [2360] = "Silverwing Outpost", + [2361] = "Nighthaven", + [2362] = "Shrine of Remulos", + [2363] = "Stormrage Barrow Dens", + [2364] = "The Great Sea", + [2365] = "The Great Sea", + [2366] = "The Black Morass", + [2367] = "Old Hillsbrad Foothills", + [2368] = "Tarren Mill", + [2369] = "Southshore", + [2370] = "Durnholde Keep", + [2371] = "Dun Garok", + [2372] = "Hillsbrad Fields", + [2373] = "Eastern Strand", + [2374] = "Nethander Stead", + [2375] = "Darrow Hill", + [2376] = "Southpoint Tower", + [2377] = "Thoradin\'s Wall", + [2378] = "Western Strand", + [2379] = "Azurelode Mine", + [2397] = "The Great Sea", + [2398] = "The Great Sea", + [2399] = "The Great Sea", + [2400] = "The Forbidding Sea", + [2401] = "The Forbidding Sea", + [2402] = "The Forbidding Sea", + [2403] = "The Forbidding Sea", + [2404] = "Tethris Aran", + [2405] = "Ethel Rethor", + [2406] = "Ranazjar Isle", + [2407] = "Kormek\'s Hut", + [2408] = "Shadowprey Village", + [2417] = "Blackrock Pass", + [2418] = "Morgan\'s Vigil", + [2419] = "Slither Rock", + [2420] = "Terror Wing Path", + [2421] = "Draco\'dar", + [2437] = "Ragefire Chasm", + [2457] = "Nightsong Woods", + [2477] = "The Veiled Sea", + [2478] = "Morlos\'Aran", + [2479] = "Emerald Sanctuary", + [2480] = "Jadefire Glen", + [2481] = "Ruins of Constellas", + [2497] = "Bitter Reaches", + [2517] = "Rise of the Defiler", + [2518] = "Lariss Pavilion", + [2519] = "Woodpaw Hills", + [2520] = "Woodpaw Den", + [2521] = "Verdantis River", + [2522] = "Ruins of Isildien", + [2537] = "Grimtotem Post", + [2538] = "Camp Aparaje", + [2539] = "Malaka\'jin", + [2540] = "Boulderslide Ravine", + [2541] = "Sishir Canyon", + [2557] = "Dire Maul", + [2558] = "Deadwind Ravine", + [2559] = "Diamondhead River", + [2560] = "Ariden\'s Camp", + [2561] = "The Vice", + [2562] = "Karazhan", + [2563] = "Morgan\'s Plot", + [2577] = "Dire Maul", + [2597] = "Alterac Valley", + [2617] = "Scrabblescrew\'s Camp", + [2618] = "Jadefire Run", + [2619] = "Thondroril River", + [2620] = "Thondroril River", + [2621] = "Lake Mereldar", + [2622] = "Pestilent Scar", + [2623] = "The Infectis Scar", + [2624] = "Blackwood Lake", + [2625] = "Eastwall Gate", + [2626] = "Terrorweb Tunnel", + [2627] = "Terrordale", + [2637] = "Kargathia Keep", + [2657] = "Valley of Bones", + [2677] = "Blackwing Lair", + [2697] = "Deadman\'s Crossing", + [2717] = "Molten Core", + [2737] = "The Scarab Wall", + [2738] = "Southwind Village", + [2739] = "Twilight Base Camp", + [2740] = "The Crystal Vale", + [2741] = "The Scarab Dais", + [2742] = "Hive\'Ashi", + [2743] = "Hive\'Zora", + [2744] = "Hive\'Regal", + [2757] = "Shrine of the Fallen Warrior", + [2777] = "UNUSED Alterac Valley", + [2797] = "Blackfathom Deeps", + [2817] = "***On Map Dungeon***", + [2837] = "The Master\'s Cellar", + [2838] = "Stonewrought Pass", + [2839] = "Alterac Valley", + [2857] = "The Rumble Cage", + [2877] = "Chunk Test", + [2897] = "Zoram\'gar Outpost", + [2917] = "Hall of Legends", + [2918] = "Champions\' Hall", + [2937] = "Grosh\'gok Compound", + [2938] = "Sleeping Gorge", + [2957] = "Irondeep Mine", + [2958] = "Stonehearth Outpost", + [2959] = "Dun Baldar", + [2960] = "Icewing Pass", + [2961] = "Frostwolf Village", + [2962] = "Tower Point", + [2963] = "Coldtooth Mine", + [2964] = "Winterax Hold", + [2977] = "Iceblood Garrison", + [2978] = "Frostwolf Keep", + [2979] = "Tor\'kren Farm", + [3017] = "Frost Dagger Pass", + [3037] = "Ironstone Camp", + [3038] = "Weazel\'s Crater", + [3039] = "Tahonda Ruins", + [3057] = "Field of Strife", + [3058] = "Icewing Cavern", + [3077] = "Valor\'s Rest", + [3097] = "The Swarming Pillar", + [3098] = "Twilight Post", + [3099] = "Twilight Outpost", + [3100] = "Ravaged Twilight Camp", + [3117] = "Shalzaru\'s Lair", + [3137] = "Talrendis Point", + [3138] = "Rethress Sanctum", + [3139] = "Moon Horror Den", + [3140] = "Scalebeard\'s Cave", + [3157] = "Boulderslide Cavern", + [3177] = "Warsong Labor Camp", + [3197] = "Chillwind Camp", + [3217] = "The Maul", + [3237] = "The Maul UNUSED", + [3257] = "Bones of Grakkarond", + [3277] = "Warsong Gulch", + [3297] = "Frostwolf Graveyard", + [3298] = "Frostwolf Pass", + [3299] = "Dun Baldar Pass", + [3300] = "Iceblood Graveyard", + [3301] = "Snowfall Graveyard", + [3302] = "Stonehearth Graveyard", + [3303] = "Stormpike Graveyard", + [3304] = "Icewing Bunker", + [3305] = "Stonehearth Bunker", + [3306] = "Wildpaw Ridge", + [3317] = "Revantusk Village", + [3318] = "Rock of Durotan", + [3319] = "Silverwing Grove", + [3320] = "Warsong Lumber Mill", + [3321] = "Silverwing Hold", + [3337] = "Wildpaw Cavern", + [3338] = "The Veiled Cleft", + [3357] = "Yojamba Isle", + [3358] = "Arathi Basin", + [3377] = "The Coil", + [3378] = "Altar of Hir\'eek", + [3379] = "Shadra\'zaar", + [3380] = "Hakkari Grounds", + [3381] = "Naze of Shirvallah", + [3382] = "Temple of Bethekk", + [3383] = "The Bloodfire Pit", + [3384] = "Altar of the Blood God", + [3397] = "Zanza\'s Rise", + [3398] = "Edge of Madness", + [3417] = "Trollbane Hall", + [3418] = "Defiler\'s Den", + [3419] = "Pagle\'s Pointe", + [3420] = "Farm", + [3421] = "Blacksmith", + [3422] = "Lumber Mill", + [3423] = "Gold Mine", + [3424] = "Stables", + [3425] = "Cenarion Hold", + [3426] = "Staghelm Point", + [3427] = "Bronzebeard Encampment", + [3428] = "Ahn\'Qiraj", + [3429] = "Ruins of Ahn\'Qiraj", + [3446] = "Twilight\'s Run", + [3447] = "Ortell\'s Hideout", + [3448] = "Scarab Terrace", + [3449] = "General\'s Terrace", + [3450] = "The Reservoir", + [3451] = "The Hatchery", + [3452] = "The Comb", + [3453] = "Watchers\' Terrace", + [3454] = "Ruins of Ahn\'Qiraj", + [3456] = "Naxxramas", + [3459] = "City", + [3478] = "Gates of Ahn\'Qiraj", + [3486] = "Ravenholdt Manor", +} + +-- Source: https://raw.githubusercontent.com/shagu/pfQuest/master/db/zones.lua +RelationshipsQuestAndItemBrowserData["zones"]["data"] = { + [9] = { 12, 17.47, 27.69, 51.15, 42.29 }, + [18] = { 12, 15.47, 14.22, 52.64, 64 }, + [19] = { 33, 14.97, 22.46, 59.88, 18.71 }, + [20] = { 40, 10.48, 20.21, 44.16, 65.49 }, + [35] = { 33, 8.48, 10.48, 26.2, 74.1 }, + [37] = { 33, 5.99, 7.49, 40.42, 18.71 }, + [42] = { 10, 12.48, 14.97, 77.1, 44.91 }, + [43] = { 33, 4.99, 7.49, 32.44, 79.34 }, + [57] = { 12, 16.97, 15.72, 38.42, 84.21 }, + [60] = { 12, 9.98, 29.94, 24.95, 81.59 }, + [62] = { 12, 11.98, 10.48, 67.37, 79.34 }, + [68] = { 44, 34.93, 20.96, 41.92, 59.13 }, + [69] = { 44, 17.96, 11.98, 25.45, 43.41 }, + [70] = { 44, 13.47, 20.21, 66.12, 55.01 }, + [71] = { 44, 18.46, 12.72, 74.6, 66.99 }, + [72] = { 4, 12.97, 15.72, 58.38, 56.51 }, + [73] = { 4, 22.95, 36.68, 37.92, 62.5 }, + [74] = { 8, 18.46, 26.2, 71.11, 52.77 }, + [75] = { 8, 21.46, 20.21, 47.65, 55.01 }, + [76] = { 8, 22.46, 26.95, 65.12, 22.46 }, + [86] = { 12, 15.47, 24.7, 75.1, 49.78 }, + [87] = { 12, 8.48, 9.73, 41.17, 64.75 }, + [88] = { 12, 12.48, 12.72, 83.58, 66.24 }, + [91] = { 12, 13.47, 13.47, 67.61, 66.62 }, + [93] = { 10, 15.47, 16.47, 36.18, 73.35 }, + [94] = { 10, 10.48, 10.48, 20.71, 56.14 }, + [95] = { 44, 22.46, 18.71, 28.69, 28.07 }, + [97] = { 44, 11.98, 18.71, 53.39, 42.29 }, + [99] = { 33, 7.98, 5.24, 37.43, 5.61 }, + [100] = { 33, 7.49, 8.23, 34.18, 13.1 }, + [101] = { 33, 7.98, 8.23, 45.41, 9.36 }, + [102] = { 33, 7.98, 8.23, 25.95, 12.35 }, + [103] = { 33, 6.49, 9.73, 46.66, 42.29 }, + [104] = { 33, 12.48, 14.97, 24.2, 27.69 }, + [105] = { 33, 7.98, 11.98, 49.4, 29.94 }, + [107] = { 40, 9.98, 11.23, 55.39, 32.56 }, + [108] = { 40, 8.98, 15.72, 55.89, 49.78 }, + [109] = { 40, 8.98, 12.72, 50.9, 21.33 }, + [111] = { 40, 8.48, 11.23, 44.66, 24.33 }, + [113] = { 40, 11.98, 14.22, 31.44, 41.54 }, + [115] = { 40, 11.98, 13.47, 31.94, 86.08 }, + [116] = { 8, 16.47, 14.97, 13.22, 35.93 }, + [117] = { 33, 6.49, 6.74, 31.69, 27.32 }, + [118] = { 11, 9.98, 9.73, 35.93, 49.03 }, + [121] = { 10, 9.48, 11.23, 80.09, 69.99 }, + [122] = { 33, 4.49, 5.99, 21.21, 14.97 }, + [123] = { 33, 4.99, 5.24, 29.44, 19.84 }, + [125] = { 33, 4.99, 5.99, 34.43, 20.96 }, + [127] = { 33, 5.49, 6.74, 41.67, 31.06 }, + [128] = { 33, 4.49, 11.98, 40.67, 41.17 }, + [129] = { 33, 3.99, 5.24, 36.93, 29.57 }, + [131] = { 1, 10.98, -18.71, 49.9, 67.74 }, + [132] = { 1, 14.97, 17.22, 26.45, 75.22 }, + [133] = { 1, 7.49, 11.98, 24.2, 38.17 }, + [134] = { 1, 9.48, 13.47, 68.61, 57.63 }, + [135] = { 1, 4.49, 8.98, 28.19, 51.65 }, + [136] = { 1, 5.99, 11.23, 40.92, 58.01 }, + [137] = { 1, 4.99, 9.73, 30.44, 46.03 }, + [138] = { 1, 5.99, 11.98, 57.39, 42.66 }, + [142] = { 38, 13.97, 17.22, 69.36, 65.49 }, + [143] = { 38, 17.96, 18.71, 70.86, 25.07 }, + [144] = { 38, 9.98, 12.72, 34.93, 46.03 }, + [146] = { 38, 19.96, 11.98, 47.9, 12.72 }, + [147] = { 38, 8.48, 11.98, 83.08, 62.87 }, + [149] = { 38, 10.98, 16.47, 34.43, 21.71 }, + [150] = { 11, 6.49, 10.48, 10.23, 56.89 }, + [152] = { 85, 13.47, 25.45, 83.58, 69.61 }, + [154] = { 85, 13.17, 18.26, 34.43, 63.92 }, + [156] = { 85, 15.27, 12.13, 35.98, 49.48 }, + [157] = { 85, 13.77, 17.96, 45.21, 36.38 }, + [159] = { 85, 7.49, 14.67, 59.63, 55.24 }, + [160] = { 85, 16.67, 22.6, 84.78, 32.86 }, + [162] = { 85, 10.18, 34.88, 68.26, 42.14 }, + [164] = { 85, 9.58, 21.86, 57.78, 38.17 }, + [165] = { 85, 13.07, 23.05, 72.8, 61.68 }, + [166] = { 85, 7.29, 10.63, 53.74, 59.96 }, + [167] = { 85, 14.47, 15.42, 77.89, 51.42 }, + [172] = { 130, 18.96, 20.21, 71.86, 28.82 }, + [186] = { 141, 11.48, 11.98, 55.14, 56.89 }, + [188] = { 141, 12.48, 18.71, 59.63, 40.04 }, + [190] = { 28, 21.46, 19.46, 47.16, 17.96 }, + [192] = { 28, 9.98, 14.22, 47.41, 36.3 }, + [193] = { 28, 11.48, 12.72, 43.66, 69.24 }, + [197] = { 28, 9.48, 13.47, 51.65, 79.34 }, + [198] = { 28, 7.49, 12.72, 65.12, 42.29 }, + [199] = { 28, 7.98, 9.73, 37.43, 55.76 }, + [200] = { 28, 8.98, 11.23, 46.41, 52.77 }, + [201] = { 28, 9.98, 11.23, 62.87, 57.26 }, + [202] = { 28, 6.99, 9.73, 53.39, 65.49 }, + [204] = { 130, 7.98, 8.23, 44.91, 73.73 }, + [205] = { 11, 9.98, 9.73, 49.4, 16.84 }, + [211] = { 1, 6.99, 18.71, 34.93, 38.55 }, + [212] = { 1, 7.98, 14.22, 76.85, 54.27 }, + [213] = { 130, 6.49, 11.23, 56.14, 48.28 }, + [219] = { 40, 11.48, 16.47, 38.17, 52.4 }, + [220] = { 215, 21.96, 21.71, 44.91, 82.71 }, + [222] = { 215, 11.98, 14.97, 47.41, 59.13 }, + [224] = { 215, 7.98, 8.98, 54.39, 47.16 }, + [225] = { 215, 11.48, 17.96, 61.13, 20.21 }, + [226] = { 130, 9.98, 10.48, 37.43, 15.72 }, + [228] = { 130, 8.48, 9.73, 44.66, 40.79 }, + [229] = { 130, 7.98, 8.98, 46.91, 53.89 }, + [230] = { 130, 8.98, 13.47, 46.41, 86.08 }, + [231] = { 130, 7.98, 9.73, 58.88, 72.23 }, + [233] = { 130, 10.98, 14.97, 63.37, 62.87 }, + [236] = { 130, 10.48, 9.73, 44.16, 66.24 }, + [237] = { 130, 8.98, 11.23, 55.39, 36.3 }, + [238] = { 130, 6.49, 5.99, 56.64, 10.48 }, + [240] = { 130, 6.99, 8.98, 46.41, 21.71 }, + [241] = { 10, 12.48, 17.22, 64.12, 72.98 }, + [242] = { 10, 11.48, 32.19, 62.62, 40.79 }, + [245] = { 10, 9.48, 14.97, 49.15, 73.35 }, + [246] = { 51, 29.44, 20.96, 46.16, 49.4 }, + [247] = { 51, 17.96, 14.22, 64.87, 58.76 }, + [249] = { 46, 13.97, 21.71, 81.34, 41.54 }, + [250] = { 46, 20.46, 25.45, 65.12, 34.43 }, + [252] = { 46, 13.47, 22.46, 43.66, 35.18 }, + [253] = { 46, 17.47, 15.72, 50.15, 56.51 }, + [254] = { 46, 15.97, 20.21, 29.94, 31.81 }, + [255] = { 46, 11.48, 19.46, 15.72, 32.19 }, + [259] = { 141, 16.47, 14.97, 57.63, 71.11 }, + [260] = { 141, 10.48, 11.98, 65.62, 57.63 }, + [261] = { 141, 7.98, 10.48, 43.91, 74.85 }, + [264] = { 141, 5.99, 21.71, 37.92, 36.3 }, + [266] = { 141, 10.98, 21.71, 46.91, 35.55 }, + [271] = { 267, 10.48, 17.96, 49.65, 55.39 }, + [272] = { 267, 13.47, 21.71, 61.13, 25.82 }, + [275] = { 267, 12.97, 15.72, 76.85, 40.79 }, + [278] = { 36, 8.98, 12.72, 20.46, 84.96 }, + [279] = { 36, 15.47, 23.95, 15.22, 65.87 }, + [280] = { 36, 12.97, 14.22, 63.37, 45.28 }, + [281] = { 36, 13.97, 18.71, 39.92, 53.52 }, + [282] = { 36, 9.98, 19.46, 48.4, 41.92 }, + [284] = { 36, 12.97, 18.71, 56.39, 27.32 }, + [285] = { 267, 15.97, 18.71, 15.47, 46.03 }, + [286] = { 267, 19.96, 29.94, 34.93, 44.91 }, + [288] = { 267, 9.48, 11.23, 26.2, 57.26 }, + [289] = { 267, 11.98, 23.95, 63.87, 55.39 }, + [290] = { 267, 9.48, 21.71, 72.11, 71.48 }, + [294] = { 267, 13.97, 17.22, 61.88, 74.48 }, + [295] = { 267, 23.45, 11.98, 35.68, 68.11 }, + [297] = { 33, 7.98, 11.98, 38.92, 82.34 }, + [300] = { 8, 13.97, 83.08, 88.32, 52.77 }, + [307] = { 47, 7.98, 32.93, 79.34, 68.86 }, + [309] = { 11, 12.48, 17.22, 44.66, 31.06 }, + [310] = { 33, 5.99, 8.23, 40.92, 50.52 }, + [311] = { 33, 4.49, 5.99, 39.67, 59.13 }, + [313] = { 45, 8.48, 17.96, 31.69, 31.44 }, + [314] = { 45, 7.98, 11.23, 61.38, 56.51 }, + [315] = { 45, 9.48, 10.48, 55.14, 39.67 }, + [316] = { 45, 13.47, 20.21, 54.14, 73.73 }, + [317] = { 45, 14.47, 11.23, 66.62, 66.99 }, + [320] = { 45, 7.98, 16.47, 45.91, 47.16 }, + [321] = { 45, 12.48, 16.47, 75.1, 36.68 }, + [324] = { 45, 17.47, 22.46, 22.7, 62.13 }, + [327] = { 45, 18.96, 17.22, 30.94, 79.72 }, + [333] = { 45, 8.48, 15.72, 63.62, 34.06 }, + [334] = { 45, 10.48, 17.96, 22.21, 25.45 }, + [335] = { 45, 10.48, 14.22, 36.68, 61.75 }, + [336] = { 45, 8.48, 9.73, 52.64, 52.77 }, + [337] = { 3, 11.48, 15.72, 15.72, 61.75 }, + [338] = { 3, 13.97, 15.72, 42.91, 33.31 }, + [339] = { 3, 19.96, 34.43, 78.34, 50.9 }, + [340] = { 3, 15.47, 15.72, 8.73, 47.53 }, + [341] = { 3, 12.48, 14.97, 66.12, 22.46 }, + [342] = { 3, 13.97, 25.45, 61.38, 72.6 }, + [344] = { 3, 18.46, 20.96, 13.22, 81.59 }, + [345] = { 3, 14.47, 22.46, 47.16, 74.1 }, + [346] = { 3, 13.47, 15.72, 56.64, 36.3 }, + [348] = { 47, 12.48, 15.72, 14.72, 50.52 }, + [350] = { 47, 11.98, 18.71, 31.44, 43.04 }, + [351] = { 47, 8.48, 11.23, 59.13, 43.04 }, + [353] = { 47, 10.48, 14.22, 34.68, 71.48 }, + [354] = { 47, 14.97, 31.44, 62.38, 69.61 }, + [355] = { 47, 9.48, 11.23, 48.65, 66.24 }, + [356] = { 47, 16.47, 23.95, 64.12, 25.45 }, + [359] = { 17, 5.49, 8.98, 47.65, 83.83 }, + [360] = { 215, 6.49, 16.47, 61.63, 50.15 }, + [362] = { 14, 9.48, 11.98, 54.64, 42.66 }, + [363] = { 14, 9.98, 15.72, 44.41, 66.99 }, + [366] = { 14, 5.99, 8.98, 48.9, 79.34 }, + [367] = { 14, 7.49, 11.23, 56.14, 72.98 }, + [368] = { 14, 10.98, 28.44, 65.37, 84.58 }, + [369] = { 14, 10.48, 17.22, 40.67, 24.33 }, + [370] = { 14, 9.98, 13.47, 52.4, 24.7 }, + [372] = { 14, 8.48, 14.97, 57.63, 56.14 }, + [378] = { 17, 6.49, 8.23, 45.66, 61 }, + [379] = { 17, 4.49, 8.23, 61.13, 21.33 }, + [380] = { 17, 6.49, 7.49, 51.65, 28.44 }, + [381] = { 17, 4.99, 10.48, 61.88, 6.74 }, + [382] = { 17, 9.98, 8.98, 55.39, 7.49 }, + [383] = { 17, 9.48, 11.23, 39.67, 14.6 }, + [384] = { 17, 6.99, 8.23, 48.4, 18.34 }, + [385] = { 17, 7.49, 8.98, 61.13, 55.39 }, + [386] = { 17, 6.99, 9.73, 45.41, 23.58 }, + [387] = { 17, 6.49, 10.48, 46.66, 38.92 }, + [388] = { 17, 5.49, 8.98, 55.64, 42.66 }, + [390] = { 17, 7.49, 8.23, 46.16, 70.73 }, + [391] = { 17, 4.49, 9.73, 63.62, 45.28 }, + [392] = { 17, 5.49, 7.49, 62.62, 37.43 }, + [396] = { 215, 7.49, 8.98, 54.14, 65.87 }, + [397] = { 215, 6.49, 10.48, 44.66, 45.66 }, + [398] = { 215, 12.97, 9.73, 39.42, 12.35 }, + [404] = { 215, 9.48, 14.97, 33.68, 46.41 }, + [413] = { 331, 8.48, 24.7, 29.19, 25.82 }, + [414] = { 331, 16.97, 26.2, 12.97, 22.08 }, + [415] = { 331, 12.48, 14.97, 37.18, 51.65 }, + [416] = { 331, 9.48, 14.22, 22.21, 52.77 }, + [417] = { 331, 6.49, 10.48, 26.7, 63.62 }, + [418] = { 331, 7.98, 13.47, 33.43, 67.37 }, + [419] = { 331, 12.48, 14.22, 56.14, 37.05 }, + [421] = { 331, 14.97, 17.96, 49.4, 73.35 }, + [422] = { 331, 11.48, 12.72, 69.11, 81.96 }, + [424] = { 331, 6.99, 11.23, 46.41, 46.78 }, + [426] = { 331, 9.98, 11.98, 60.88, 51.65 }, + [428] = { 331, 11.48, 16.47, 71.61, 59.13 }, + [430] = { 331, 13.97, 9.73, 81.84, 48.28 }, + [434] = { 331, 16.47, 15.72, 83.08, 77.47 }, + [437] = { 331, 11.48, 11.98, 91.07, 59.13 }, + [438] = { 331, 8.98, 12.72, 93.81, 36.3 }, + [439] = { 400, 24.95, 48.65, 78.34, 72.98 }, + [441] = { 331, 5.99, 11.98, 20.46, 40.42 }, + [442] = { 148, 7.49, 11.23, 39.17, 43.79 }, + [443] = { 148, 6.49, 14.97, 58.63, 16.47 }, + [444] = { 148, 8.98, 8.98, 56.39, 26.2 }, + [446] = { 148, 6.99, 8.23, 44.91, 36.3 }, + [447] = { 148, 6.49, 10.48, 42.66, 57.63 }, + [448] = { 148, 8.98, 11.98, 42.91, 77.1 }, + [449] = { 148, 8.98, 11.23, 41.42, 88.7 }, + [450] = { 148, 5.99, 8.98, 34.93, 85.33 }, + [456] = { 148, 10.48, 9.73, 53.64, 33.31 }, + [459] = { 85, 7.98, 31.59, 77.84, 32.86 }, + [460] = { 406, 10.98, 13.47, 46.41, 58.38 }, + [461] = { 406, 25.95, 29.19, 69.86, 50.52 }, + [464] = { 406, 13.47, 15.72, 49.15, 40.79 }, + [465] = { 406, 14.97, 21.71, 31.94, 66.99 }, + [467] = { 406, 20.46, 17.96, 37.18, 13.47 }, + [477] = { 33, 4.49, 5.99, 35.68, 51.65 }, + [478] = { 141, 5.99, 13.47, 40.42, 63.62 }, + [480] = { 400, 19.46, 23.2, 16.22, 17.59 }, + [481] = { 400, 15.97, 14.97, 47.9, 41.17 }, + [482] = { 400, 12.97, 23.2, 13.47, 34.06 }, + [483] = { 400, 16.47, 24.7, 30.69, 47.53 }, + [484] = { 400, 12.48, 15.72, 46.16, 52.77 }, + [485] = { 400, 9.48, 10.48, 32.19, 22.46 }, + [492] = { 10, 11.48, 20.96, 20.21, 41.92 }, + [496] = { 15, 12.97, 24.7, 36.93, 22.83 }, + [502] = { 15, 18.96, 27.69, 53.89, 22.83 }, + [509] = { 15, 10.98, 19.46, 36.93, 61.38 }, + [511] = { 15, 17.47, 20.21, 52.64, 75.22 }, + [513] = { 15, 13.47, 18.71, 68.11, 51.27 }, + [536] = { 10, 11.48, 14.22, 21.71, 69.24 }, + [537] = { 490, 17.96, 24.7, 50.4, 49.78 }, + [538] = { 490, 30.44, 33.68, 50.65, 20.58 }, + [539] = { 490, 14.47, 23.95, 37.18, 74.1 }, + [540] = { 490, 15.47, 19.46, 51.65, 80.09 }, + [543] = { 490, 17.47, 29.94, 30.19, 50.15 }, + [556] = { 38, 19.46, 50.15, 50.15, 42.29 }, + [596] = { 405, 14.47, 18.71, 50.65, 58.01 }, + [599] = { 405, 10.98, 11.23, 54.39, 28.07 }, + [602] = { 405, 15.97, 17.96, 53.39, 79.34 }, + [603] = { 405, 12.97, 17.22, 75.85, 22.83 }, + [604] = { 405, 12.48, 18.71, 71.11, 72.98 }, + [606] = { 405, 12.97, 16.47, 38.42, 89.07 }, + [607] = { 405, 16.47, 27.69, 33.18, 52.02 }, + [608] = { 405, 9.98, 11.23, 64.87, 9.36 }, + [609] = { 405, 9.98, 14.97, 74.35, 48.65 }, + [656] = { 493, 28.44, 38.92, 50.65, 54.64 }, + [657] = { 8, 12.48, 14.97, 27.69, 35.93 }, + [702] = { 141, 1.5, 2.25, 55.64, 90.94 }, + [736] = { 141, 8.98, 23.2, 46.41, 57.26 }, + [797] = { 12, 15.47, 17.96, 53.64, 83.08 }, + [798] = { 12, 12.48, 9.73, 85.08, 80.46 }, + [799] = { 10, 84.33, 17.22, 54.64, 21.33 }, + [800] = { 1, 5.99, 10.48, 34.93, 68.11 }, + [801] = { 1, 7.98, 10.48, 35.93, 53.14 }, + [802] = { 1, 5.99, 14.22, 40.92, 40.04 }, + [803] = { 1, 5.99, 6.74, 63.37, 50.52 }, + [804] = { 1, 8.98, 8.23, 59.88, 57.26 }, + [806] = { 1, 5.99, 10.48, 85.33, 50.9 }, + [808] = { 1, 5.99, 14.22, 82.83, 37.8 }, + [809] = { 1, 10.98, 13.47, 49.4, 37.43 }, + [810] = { 85, 10.28, 10.63, 47.95, 51.27 }, + [811] = { 85, 14.57, 14.07, 47.31, 66.32 }, + [812] = { 85, 19.26, 25.15, 87.18, 48.5 }, + [813] = { 28, 11.98, 11.23, 26.45, 58.01 }, + [816] = { 14, 12.48, 17.96, 41.17, 43.41 }, + [817] = { 14, 7.49, 7.49, 53.64, 11.98 }, + [818] = { 215, 6.99, 17.96, 36.43, 62.13 }, + [819] = { 215, 10.48, 10.48, 50.15, 11.98 }, + [820] = { 215, 8.98, 23.95, 52.89, 29.94 }, + [821] = { 215, 10.98, 12.72, 62.87, 67.74 }, + [838] = { 38, 12.97, 17.22, 22.46, 15.34 }, + [856] = { 10, 21.46, 37.43, 47.65, 40.42 }, + [880] = { 45, 11.98, 20.96, 45.91, 83.08 }, + [896] = { 267, 12.48, 15.72, 17.22, 79.72 }, + [916] = { 40, 9.48, 12.72, 56.64, 17.59 }, + [917] = { 40, 9.98, 11.98, 62.38, 61.38 }, + [918] = { 40, 10.98, 12.72, 44.91, 36.3 }, + [920] = { 40, 17.96, 11.23, 46.91, 78.97 }, + [921] = { 40, 10.48, 13.47, 31.19, 69.61 }, + [922] = { 40, 14.97, 10.48, 63.37, 72.6 }, + [923] = { 38, 14.97, 26.95, 34.93, 77.84 }, + [924] = { 38, 10.98, 27.69, 20.46, 73.73 }, + [927] = { 130, 6.49, 11.23, 54.14, 22.83 }, + [928] = { 130, 7.98, 8.98, 40.42, 28.44 }, + [936] = { 38, 11.48, 19.46, 45.16, 68.86 }, + [976] = { 440, 10.48, 12.72, 51.15, 27.32 }, + [977] = { 440, 7.98, 9.73, 66.87, 21.33 }, + [978] = { 440, 14.97, 17.96, 37.43, 12.72 }, + [979] = { 440, 6.99, 10.48, 39.92, 28.44 }, + [980] = { 440, 12.48, 17.22, 30.69, 62.5 }, + [981] = { 440, 10.98, 17.22, 54.39, 70.73 }, + [982] = { 440, 7.49, 14.97, 34.68, 45.66 }, + [983] = { 440, 7.98, 11.98, 41.92, 56.14 }, + [984] = { 440, 6.49, 7.49, 46.66, 65.12 }, + [985] = { 440, 9.48, 12.72, 59.63, 37.8 }, + [986] = { 440, 5.99, 9.73, 66.87, 33.31 }, + [987] = { 440, 13.97, 14.22, 54.89, 91.69 }, + [990] = { 440, 7.98, 14.22, 36.93, 80.46 }, + [992] = { 440, 7.49, 9.73, 40.17, 71.48 }, + [996] = { 44, 19.46, 26.2, 40.17, 16.84 }, + [997] = { 44, 39.42, 14.97, 73.1, 77.84 }, + [1000] = { 44, 16.47, 26.95, 78.09, 42.66 }, + [1001] = { 44, 32.44, 13.47, 38.17, 73.35 }, + [1002] = { 44, 17.96, 26.2, 18.46, 69.24 }, + [1016] = { 11, 11.48, 20.21, 60.63, 32.56 }, + [1017] = { 11, 11.48, 13.47, 72.11, 38.17 }, + [1018] = { 11, 14.97, 12.72, 19.96, 49.03 }, + [1020] = { 11, 10.98, 17.96, 61.88, 54.64 }, + [1021] = { 11, 11.98, 16.47, 56.39, 68.86 }, + [1022] = { 11, 14.47, 11.23, 19.21, 36.3 }, + [1023] = { 11, 13.47, 20.21, 34.18, 24.33 }, + [1024] = { 11, 18.46, 14.97, 23.2, 28.44 }, + [1025] = { 11, 10.48, 22.46, 53.64, 36.68 }, + [1036] = { 11, 14.97, 15.72, 47.41, 48.28 }, + [1038] = { 11, 21.96, 43.41, 81.84, 63.62 }, + [1056] = { 267, 14.97, 10.48, 50.9, 33.68 }, + [1076] = { 406, 20.96, 42.66, 60.38, 68.49 }, + [1097] = { 10, 8.88, 31.74, 10.03, 44.46 }, + [1098] = { 10, 9.98, 8.98, 74.35, 33.68 }, + [1099] = { 357, 7.98, 9.73, 75.35, 42.29 }, + [1100] = { 357, 5.99, 14.97, 67.86, 40.42 }, + [1101] = { 357, 16.97, 20.21, 72.85, 61 }, + [1103] = { 357, 9.98, 9.73, 77.35, 31.06 }, + [1105] = { 357, 6.99, 8.98, 54.39, 56.89 }, + [1106] = { 357, 6.49, 17.96, 53.64, 71.11 }, + [1108] = { 357, 6.99, 41.92, 46.41, 62.13 }, + [1111] = { 357, 4.99, 8.23, 51.4, 10.1 }, + [1113] = { 357, 5.49, 5.24, 54.64, 16.84 }, + [1114] = { 357, 7.49, 8.23, 39.67, 10.85 }, + [1119] = { 357, 15.47, 20.96, 47.16, 25.45 }, + [1120] = { 357, 13.47, 16.47, 30.19, 50.15 }, + [1121] = { 357, 14.47, 35.18, 29.69, 78.97 }, + [1137] = { 357, 12.48, 14.22, 86.08, 43.04 }, + [1216] = { 16, 10.48, 15.72, 37.18, 33.31 }, + [1219] = { 16, 16.97, 8.98, 57.88, 17.96 }, + [1220] = { 16, 14.97, 9.73, 60.88, 28.82 }, + [1221] = { 16, 12.48, 15.72, 36.68, 54.27 }, + [1225] = { 16, 7.98, 11.98, 46.91, 28.44 }, + [1226] = { 16, 10.48, 14.97, 76.6, 41.17 }, + [1227] = { 16, 16.97, 32.93, 58.88, 54.64 }, + [1228] = { 16, 5.49, 18.71, 45.66, 46.03 }, + [1229] = { 16, 6.99, 12.72, 88.32, 30.31 }, + [1230] = { 16, 47.9, 11.98, 63.87, 11.23 }, + [1231] = { 16, 28.94, 17.96, 58.38, 71.86 }, + [1232] = { 16, 9.48, 9.73, 70.61, 84.96 }, + [1233] = { 16, 14.97, 15.72, 29.44, 71.48 }, + [1234] = { 16, 11.48, 13.47, 43.16, 80.09 }, + [1235] = { 16, 9.98, 13.47, 17.47, 74.85 }, + [1236] = { 16, 8.48, 9.73, 20.71, 60.25 }, + [1237] = { 16, 9.98, 8.23, 21.46, 50.52 }, + [1256] = { 16, 28.44, 9.73, 58.13, 91.69 }, + [1316] = { 17, 8.98, 9.73, 48.9, 91.69 }, + [1336] = { 440, 8.48, 17.96, 71.61, 47.16 }, + [1357] = { 36, 8.48, 11.23, 50.15, 58.76 }, + [1437] = { 4, 9.48, 8.98, 43.16, 14.22 }, + [1438] = { 4, 9.98, 11.23, 64.37, 18.34 }, + [1439] = { 4, 10.98, 11.98, 50.4, 44.16 }, + [1440] = { 4, 10.98, 9.73, 62.87, 33.31 }, + [1441] = { 4, 6.49, 9.73, 39.67, 31.81 }, + [1442] = { 51, 23.95, 28.44, 27.94, 33.68 }, + [1444] = { 51, 23.95, 30.69, 44.91, 84.21 }, + [1457] = { 4, 7.98, 8.23, 55.89, 13.85 }, + [1497] = { 0, 14.57, 21.71, 61.88, 71.63 }, + [1519] = { 0, 25.45, 35.18, 24.2, 35.55 }, + [1637] = { 0, 22.95, 7.49, 46.91, 5.24 }, + [1638] = { 0, 18.46, 23.95, 38.67, 27.69 }, + [1657] = { 0, 14.97, 28.44, 27.45, 57.63 }, + [1677] = { 36, 7.49, 14.22, 30.69, 85.7 }, + [1678] = { 36, 8.98, 13.47, 58.38, 68.86 }, + [1679] = { 36, 9.48, 19.46, 48.15, 83.83 }, + [1680] = { 36, 8.98, 17.22, 38.92, 90.19 }, + [1681] = { 36, 12.48, 18.71, 28.19, 37.8 }, + [1682] = { 36, 6.99, 13.47, 40.42, 17.22 }, + [1683] = { 36, 10.48, 12.72, 39.67, 69.24 }, + [1684] = { 36, 18.46, 34.43, 82.09, 66.62 }, + [1697] = { 17, 5.99, 6.74, 55.89, 51.27 }, + [1698] = { 17, 4.49, 10.48, 50.65, 58.38 }, + [1699] = { 17, 5.99, 7.49, 56.89, 28.44 }, + [1700] = { 17, 8.48, 14.22, 43.16, 48.28 }, + [1701] = { 17, 6.49, 11.23, 41.67, 78.97 }, + [1702] = { 17, 7.98, 10.48, 37.43, 28.44 }, + [1703] = { 17, 7.98, 8.98, 47.9, 6.74 }, + [1704] = { 17, 5.49, 6.74, 55.64, 19.09 }, + [1717] = { 17, 7.98, 10.48, 40.92, 88.32 }, + [1737] = { 33, 3.49, 10.48, 33.68, 64.37 }, + [1738] = { 33, 5.49, 9.73, 25.7, 62.5 }, + [1739] = { 33, 9.98, 9.73, 26.95, 53.52 }, + [1740] = { 33, 4.49, 9.73, 44.16, 19.84 }, + [1741] = { 33, 8.98, 11.98, 29.44, 44.16 }, + [1761] = { 361, 8.48, 8.98, 49.15, 91.32 }, + [1762] = { 361, 9.98, 11.23, 63.37, 10.85 }, + [1763] = { 361, 12.97, 7.49, 36.43, 59.88 }, + [1765] = { 361, 12.97, 8.98, 42.42, 48.65 }, + [1766] = { 361, 10.48, 17.96, 42.17, 35.18 }, + [1767] = { 361, 9.48, 11.23, 50.15, 23.58 }, + [1777] = { 8, 9.98, 20.96, 14.97, 62.87 }, + [1778] = { 8, 12.97, 40.42, 83.83, 46.41 }, + [1780] = { 8, 18.96, 17.96, 24.45, 52.4 }, + [1797] = { 8, 17.96, 21.71, 70.36, 78.97 }, + [1798] = { 8, 23.95, 21.71, 43.91, 34.81 }, + [1857] = { 45, 10.48, 21.71, 17.71, 37.8 }, + [1858] = { 45, 5.49, 18.71, 37.67, 41.54 }, + [1877] = { 3, 12.97, 17.96, 46.41, 56.89 }, + [1878] = { 3, 16.97, 20.96, 30.44, 51.65 }, + [1879] = { 3, 18.46, 24.7, 30.69, 75.22 }, + [1882] = { 47, 7.49, 22.46, 22.7, 38.17 }, + [1883] = { 47, 7.49, 10.48, 40.17, 58.38 }, + [1884] = { 47, 11.48, 12.72, 49.65, 37.05 }, + [1885] = { 47, 10.48, 14.22, 28.19, 61.75 }, + [1886] = { 47, 9.48, 12.72, 50.15, 53.52 }, + [1897] = { 3, 18.46, 17.96, 49.15, 16.47 }, + [1898] = { 3, 12.48, 18.71, 62.62, 46.03 }, + [1917] = { 47, 13.47, 15.72, 70.11, 50.52 }, + [1937] = { 440, 5.99, 7.49, 59.88, 24.7 }, + [1938] = { 440, 6.49, 8.98, 53.14, 45.66 }, + [1939] = { 440, 9.48, 13.47, 45.66, 42.66 }, + [1940] = { 440, 10.98, 9.73, 62.38, 59.51 }, + [1942] = { 490, 16.47, 35.18, 69.61, 63.25 }, + [1943] = { 490, 19.96, 26.2, 72.36, 34.81 }, + [1957] = { 51, 14.97, 22.46, 22.95, 73.35 }, + [1958] = { 51, 17.96, 20.96, 69.36, 76.35 }, + [1959] = { 51, 28.94, 40.42, 67.37, 29.19 }, + [1998] = { 361, 7.49, 9.73, 62.13, 24.33 }, + [2079] = { 15, 12.48, 18.71, 75.6, 17.59 }, + [2097] = { 400, 8.98, 15.72, 34.93, 36.3 }, + [2198] = { 405, 8.98, 13.47, 80.34, 79.34 }, + [2241] = { 618, 10.98, 8.98, 49.4, 12.72 }, + [2242] = { 618, 9.48, 10.48, 64.62, 17.22 }, + [2243] = { 618, 7.49, 5.99, 40.17, 43.41 }, + [2244] = { 618, 6.99, 7.49, 68.36, 36.68 }, + [2245] = { 618, 5.99, 8.23, 58.38, 58.01 }, + [2246] = { 618, 11.98, 7.49, 33.43, 36.68 }, + [2247] = { 618, 6.49, 11.98, 68.11, 45.66 }, + [2249] = { 618, 8.98, 11.23, 61.88, 68.49 }, + [2250] = { 618, 6.99, 9.73, 65.37, 61.75 }, + [2251] = { 618, 9.48, 11.98, 53.14, 43.41 }, + [2253] = { 618, 10.48, 8.98, 49.65, 28.44 }, + [2255] = { 618, 8.98, 9.73, 60.88, 37.8 }, + [2256] = { 618, 17.96, 16.47, 57.88, 83.08 }, + [2258] = { 139, 9.98, 14.22, 40.42, 52.02 }, + [2260] = { 139, 10.48, 10.48, 26.7, 73.35 }, + [2261] = { 139, 7.98, 13.47, 28.44, 84.58 }, + [2262] = { 139, 11.98, 11.98, 39.92, 89.82 }, + [2263] = { 139, 8.48, 11.98, 38.67, 75.6 }, + [2264] = { 139, 9.48, 11.98, 59.63, 70.36 }, + [2266] = { 139, 16.97, 14.97, 84.83, 83.08 }, + [2268] = { 139, 7.49, 11.98, 82.09, 58.38 }, + [2270] = { 139, 11.98, 15.72, 84.33, 41.54 }, + [2271] = { 139, 6.99, 12.72, 67.86, 49.78 }, + [2272] = { 139, 8.48, 12.72, 70.61, 31.81 }, + [2273] = { 139, 12.48, 11.23, 73.1, 14.6 }, + [2275] = { 139, 12.97, 13.47, 57.88, 28.44 }, + [2276] = { 139, 8.98, 8.98, 52.89, 16.47 }, + [2277] = { 139, 25.95, 19.46, 36.43, 33.68 }, + [2279] = { 139, 13.47, 20.21, 31.19, 15.34 }, + [2297] = { 28, 25.95, 24.7, 68.36, 73.73 }, + [2298] = { 28, 9.98, 14.22, 68.86, 75.22 }, + [2300] = { 440, 9.48, 10.48, 64.12, 49.4 }, + [2301] = { 331, 6.99, 8.98, 36.93, 36.68 }, + [2302] = { 15, 24.95, 25.45, 44.41, 48.65 }, + [2303] = { 400, 14.97, 24.7, 62.38, 55.01 }, + [2404] = { 405, 9.98, 9.73, 54.39, 12.35 }, + [2405] = { 405, 12.97, 20.96, 40.92, 30.69 }, + [2406] = { 405, 6.99, 8.98, 28.94, 8.23 }, + [2407] = { 405, 10.98, 11.98, 64.37, 40.42 }, + [2408] = { 405, 11.98, 14.97, 25.45, 70.36 }, + [2417] = { 46, 14.47, 21.71, 75.1, 68.49 }, + [2418] = { 46, 16.47, 24.7, 88.57, 64.75 }, + [2420] = { 46, 21.46, 37.43, 88.57, 35.93 }, + [2421] = { 46, 30.94, 32.19, 27.94, 65.49 }, + [2478] = { 361, 7.49, 8.23, 57.63, 87.95 }, + [2479] = { 361, 9.48, 8.23, 51.65, 79.72 }, + [2480] = { 361, 8.48, 12.72, 41.17, 82.71 }, + [2481] = { 361, 8.98, 11.23, 37.92, 69.24 }, + [2497] = { 16, 16.47, 14.97, 76.6, 19.46 }, + [2517] = { 4, 8.48, 11.98, 48.65, 29.94 }, + [2522] = { 357, 9.98, 21.71, 61.38, 66.99 }, + [2537] = { 406, 11.48, 7.49, 75.6, 86.83 }, + [2538] = { 406, 5.99, 5.24, 77.35, 92.44 }, + [2539] = { 406, 6.99, 8.23, 72.85, 94.69 }, + [2540] = { 406, 9.98, 11.98, 64.87, 92.81 }, + [2541] = { 406, 8.98, 10.48, 54.39, 74.85 }, + [2561] = { 41, 15.47, 32.19, 58.63, 64.75 }, + [2562] = { 41, 18.46, 23.95, 42.66, 68.86 }, + [2577] = { 357, 12.97, 13.47, 58.88, 41.92 }, + [2618] = { 361, 8.48, 10.48, 41.17, 17.96 }, + [2619] = { 139, 10.48, 44.16, 7.73, 60.25 }, + [2620] = { 28, 10.48, 41.17, 67.61, 38.55 }, + [2621] = { 139, 12.48, 13.47, 62.62, 80.09 }, + [2622] = { 139, 9.48, 18.71, 74.1, 62.5 }, + [2623] = { 139, 10.48, 11.98, 52.64, 66.62 }, + [2624] = { 139, 8.98, 12.72, 51.9, 49.78 }, + [2627] = { 139, 12.48, 10.48, 17.71, 32.19 }, + [2697] = { 41, 27.45, 34.43, 45.16, 35.93 }, + [2737] = { 1377, 13.97, 5.99, 28.94, 95.06 }, + [2738] = { 1377, 7.98, 11.98, 62.38, 53.14 }, + [2740] = { 1377, 16.47, 20.21, 23.2, 17.59 }, + [2742] = { 1377, 12.97, 18.71, 44.91, 24.33 }, + [2743] = { 1377, 16.47, 23.95, 24.7, 58.38 }, + [2744] = { 1377, 16.47, 33.68, 57.14, 80.46 }, + [2959] = { 2597, 28.94, 26.2, 41.92, 20.58 }, + [2977] = { 2597, 21.96, 29.94, 48.9, 49.4 }, + [2978] = { 2597, 16.97, 29.19, 51.9, 78.22 }, + [3425] = { 1377, 6.49, 10.48, 50.65, 37.43 }, +} + +-- Source: https://raw.githubusercontent.com/shagu/pfQuest-turtle/master/db/enUS/zones-turtle.lua +RelationshipsQuestAndItemBrowserData["zones"]["enUS-turtle"] = { + [65] = "_", + [296] = "South Seas", + [409] = "Lapidis Isle", + [2037] = "Quel\'Thalas", + [2038] = "UNUSEDShadowfang Keep 003", + [2040] = "Alah\'Thalas", + [2041] = "Amani\'Alor", + [2137] = "Windswept Heights", + [3430] = "Eversong Woods", + [3431] = "Sunstrider Isle", + [3432] = "Shrine of Dath\'Remar", + [3433] = "Ghostlands", + [3434] = "Scarab Terrace", + [3435] = "General\'s Terrace", + [3436] = "The Reservoir", + [3437] = "The Hatchery", + [3438] = "The Comb", + [3439] = "Watchers\' Terrace", + [3440] = "Scarab Terrace", + [3441] = "General\'s Terrace", + [3442] = "The Reservoir", + [3443] = "The Hatchery", + [3444] = "The Comb", + [3445] = "Watchers\' Terrace", + [3455] = "The North Sea", + [3457] = "Tower of Karazhan", + [3460] = "Golden Strand", + [3461] = "Sunsail Anchorage", + [3462] = "Fairbreeze Village", + [3463] = "Magisters Gate", + [3464] = "Farstrider Retreat", + [3465] = "North Sanctum", + [3466] = "West Sanctum", + [3467] = "East Sanctum", + [3468] = "Saltheril\'s Haven", + [3469] = "Thuron\'s Livery", + [3470] = "Stillwhisper Pond", + [3471] = "The Living Wood", + [3472] = "Azurebreeze Coast", + [3473] = "Lake Elrendar", + [3474] = "The Scorched Grove", + [3475] = "Zeb\'Watha", + [3476] = "Tor\'Watha", + [3479] = "The Veiled Sea", + [3480] = "Duskwither Grounds", + [3481] = "Duskwither Spire", + [3482] = "The Dead Scar", + [3484] = "The Sunspire", + [3485] = "Falthrien Academy", + [3487] = "Silvermoon City", + [3488] = "Tranquillien", + [3489] = "Suncrown Village", + [3490] = "Goldenmist Village", + [3491] = "Windrunner Village", + [3492] = "Windrunner Spire", + [3493] = "Sanctum of the Sun", + [3494] = "Sanctum of the Moon", + [3495] = "Dawnstar Spire", + [3496] = "Farstrider Enclave", + [3497] = "An\'daroth", + [3498] = "An\'telas", + [3499] = "An\'owyn", + [3500] = "Deatholme", + [3501] = "Bleeding Ziggurat", + [3502] = "Howling Ziggurat", + [3503] = "Shalandis Isle", + [3504] = "Toryl Estate", + [3505] = "Underlight Mines", + [3506] = "Andilien Estate", + [3507] = "Hatchet Hills", + [3508] = "Amani Pass", + [3509] = "Sungraze Peak", + [3510] = "Amani Catacombs", + [3511] = "Tower of the Damned", + [3512] = "Zeb\'Sora", + [3513] = "Lake Elrendar", + [3514] = "The Dead Scar", + [3515] = "Elrendar River", + [3516] = "Zeb\'Tela", + [3517] = "Zeb\'Nowa", + [3531] = "Murder Row", + [3532] = "Dawning Lane", + [3533] = "Ruins of Silvermoon", + [3534] = "Feth\'s Way", + [3558] = "Elrendar Falls", + [3805] = "Zul\'Aman", + [3881] = "Silver Sun Mine", + [3882] = "Citadel of the Sun", + [3883] = "Golden Dawn Institute", + [4010] = "Mudsprocket", + [4011] = "Venture Company Camp", + [4012] = "Scarlet Enclave", + [4013] = "Lordaeron Arena", + [4014] = "Blood Ring", + [4015] = "Isle of the Spirits", + [4016] = "Kamio", + [4017] = "Kontsuma", + [4018] = "Hawk\'s Vigil", + [4019] = "Dun Agrath", + [4020] = "Ironforge Airfields", + [4021] = "Sparkwater Port", + [4022] = "Scarlet Citadel", + [4046] = "Direhorn Post", + [4047] = "Nat\'s Landing", + [4067] = "Plaguewood Tower", + [4298] = "Plaguelands", + [4343] = "New Avalon", + [4346] = "New Avalon Town Hall", + [4347] = "Havenshire", + [4354] = "Light\'s Point", + [4356] = "Gloom Hill", + [4358] = "Tyr\'s Hand", + [4359] = "King\'s Harbor", + [4365] = "Havenshire Mine", + [4381] = "Waygate", + [4382] = "Shaper\'s Terrace", + [4411] = "Stormwind Harbor", + [4636] = "The Noxious Pass", + [4688] = "The Turtle Farm", + [5000] = "Thrallmar", + [5001] = "Honor Hold", + [5002] = "Sha\'naar", + [5003] = "Illidari Point", + [5004] = "Forge Camp: Rage", + [5005] = "Watcher\'s Rise", + [5006] = "Dark Portal", + [5007] = "Pools of Aggonar", + [5008] = "Devouring Flats", + [5009] = "Shattered Wastes", + [5010] = "Tanaan Crag", + [5011] = "Farwell Stead", + [5012] = "Wildtusk Village", + [5013] = "Ruins of Zul\'Rasaz", + [5014] = "The Rasaz Trails", + [5015] = "The Highlands", + [5016] = "The Grim Reaches", + [5017] = "Dun Galar", + [5018] = "Flickerlode Mine", + [5019] = "Grimstone Field", + [5020] = "The Parched Basin", + [5021] = "The Grim Batol Memorial", + [5022] = "Karfang Retreat", + [5023] = "Sunnyglade Valley", + [5024] = "Icepoint Rock", + [5025] = "The Hidden Grove", + [5026] = "The Perch", + [5027] = "North Sea", + [5028] = "Steepcliff Port", + [5029] = "The Whispering Forest", + [5030] = "The Rogue Heights", + [5031] = "The Lafford House", + [5032] = "The Garrick Stead", + [5033] = "Crumblepoint Tower", + [5034] = "Shatteridge Tower", + [5035] = "The Remnants Camp", + [5036] = "The Blacktower Inn", + [5037] = "The Corinth Farmstead", + [5038] = "The Jagged Hills", + [5039] = "Gracestone Mine", + [5040] = "Glenshire", + [5041] = "Ishnu\'Danil", + [5042] = "Shalla\'Aran", + [5043] = "Shank\'s Reef", + [5044] = "Crown Island", + [5045] = "The Rock", + [5046] = "Bright Coast", + [5047] = "Zul\'Hazu", + [5048] = "The Wallowing Coast", + [5049] = "Hazzuri Glade", + [5050] = "Gor\'dosh Heights", + [5051] = "Caelan\'s Rest", + [5052] = "Kaneq\'nuun", + [5053] = "Moomoo Grove", + [5054] = "The Broken Reef", + [5055] = "Deeptide Sanctum", + [5056] = "The Silver Coast", + [5057] = "The Silver Sandbar", + [5058] = "Zul\'Razar", + [5059] = "The Tangled Wood", + [5060] = "The Jade Mine", + [5061] = "Ruins of Zul\'Razar", + [5062] = "Gillijim Strand", + [5063] = "Deepneck Cove", + [5064] = "Gillijim Canyon", + [5065] = "Maul\'ogg Refuge", + [5066] = "Maul\'ogg Post", + [5067] = "Kalkor Point", + [5068] = "Kazon Island", + [5069] = "The Southsea Sandbar", + [5070] = "Distillery Island", + [5071] = "Faelon\'s Folly", + [5072] = "The Tower of Lapidis", + [5073] = "Flaxwhisker Front", + [5074] = "Bloodfist Point", + [5075] = "Sorrowguard Keep", + [5076] = "Tamatsune Shrine", + [5077] = "Crescent Grove", + [5078] = "Vilethorn Scar", + [5079] = "Nalash\'ir Ruins", + [5080] = "Tsatsuri Wilds", + [5081] = "Kontsuma Logging Camp", + [5082] = "Umikari Strand", + [5083] = "Konko Depths", + [5084] = "Bloodsail Retreat", + [5085] = "Kontsuma Market", + [5086] = "Karazhan Crypt", + [5087] = "Stormwind Vault", + [5088] = "Everwinter Vale", + [5089] = "Kontsuma Harbor", + [5090] = "The Dungeon", + [5091] = "Frostmane Retreat", + [5092] = "Zul\'Drakash", + [5093] = "Karfang Hold", + [5094] = "Gallant Square", + [5095] = "Livingstone Croft", + [5096] = "Red Cloud Roost", + [5097] = "Emerald Sanctum", + [5098] = "Hateforge Quarry", + [5099] = "Sandmoon Village", + [5100] = "Suntail Pass", + [5101] = "Hateforge Excavation", + [5102] = "Gartside Plot", + [5103] = "Hateforge Quarry", + [5104] = "Ruins of Corthan", + [5105] = "Temple of Corthan", + [5106] = "Angor Digsite", + [5107] = "Ruins of Zeth", + [5108] = "Crystalline Oasis", + [5109] = "Crystalline Pinnacle", + [5110] = "Redbrand\'s Digsite", + [5111] = "Scalebane Ridge", + [5112] = "Blackhorn Village", + [5113] = "Deserter\'s Hideout", + [5114] = "Westhaven Hollow", + [5115] = "Davenburg", + [5116] = "Anchor\'s Edge", + [5117] = "Blacksand Oil Fields", + [5118] = "Powder Town", + [5119] = "Bramblethorn Pass", + [5120] = "Bael Hardul", + [5121] = "Tel\'Abim", + [5122] = "The Shallow Strand", + [5123] = "Tel Co. Basecamp", + [5124] = "Bixxle\'s Storehouse", + [5125] = "Highvale Rise", + [5126] = "The Derelict Camp", + [5127] = "Tazzo\'s Shack", + [5128] = "The Jagged Isles", + [5129] = "The Washing Shore", + [5130] = "Winter Veil Vale", + [5131] = "Icepaw Village", + [5132] = "Shadowfang Keep", + [5134] = "Gnomeregan", + [5135] = "Scarlet Monastery Library", + [5136] = "Scarlet Monastery Graveyard", + [5137] = "The Temple of Atal\'Hakkar", + [5138] = "The Deadmines", + [5139] = "Blackrock Spire", + [5140] = "Blackrock Depths", + [5142] = "Scholomance", + [5144] = "Deeprun Tram", + [5145] = "Dire Maul", + [5146] = "Blackwing Lair", + [5147] = "Ahn\'Qiraj", + [5148] = "The Upper Necropolis", + [5150] = "Shadowfang Keep", + [5152] = "Gnomeregan", + [5153] = "Scarlet Monastery Armory", + [5154] = "The Temple of Atal\'Hakkar", + [5155] = "Blackrock Spire", + [5156] = "Scholomance", + [5157] = "Dire Maul", + [5158] = "Blackwing Lair", + [5161] = "Shadowfang Keep", + [5162] = "Gnomeregan", + [5163] = "Scarlet Monastery Cathedral", + [5164] = "Blackrock Spire", + [5165] = "Scholomance", + [5166] = "Dire Maul", + [5167] = "Blackwing Lair", + [5169] = "Shadowfang Keep", + [5170] = "Blackrock Spire", + [5171] = "Dire Maul", + [5173] = "Shadowfang Keep", + [5174] = "Blackrock Spire", + [5175] = "Dire Maul", + [5177] = "Shadowfang Keep", + [5178] = "Blackrock Spire", + [5179] = "Gilneas", + [5180] = "Gilneas City", + [5181] = "Ravenshire", + [5182] = "Ravenwood Keep", + [5183] = "Brol\'ok Mound", + [5184] = "Southmire Orchard", + [5185] = "Hollow Web Woods", + [5186] = "Hollow Web Cemetery", + [5187] = "Shademore Tavern", + [5188] = "Ruins of Greyshire", + [5189] = "Northgate Tower", + [5190] = "Westgate Tower", + [5191] = "Rosewick Plantation", + [5192] = "Glaymore Stead", + [5193] = "Vagrant Encampment", + [5194] = "Ebonmere Farm", + [5195] = "The Overgrown Acre", + [5196] = "The Dryrock Pit", + [5197] = "The Dryrock Mine", + [5198] = "Freyshear Keep", + [5199] = "Greymane\'s Watch", + [5200] = "Oldrock Pass", + [5201] = "Stillward Church", + [5202] = "Mossgrove Farm", + [5203] = "The Greymane Wall", + [5204] = "The Black Morass", + [5205] = "Dryrock Valley", + [5206] = "Blackthorn\'s Camp", + [5207] = "Dawnstone Mine", + [5208] = "Gilneas City", + [5209] = "Greymane Tower", + [5210] = "Chimaera Roost Vale", + [5211] = "Gnomeregan Reclamation Facility", + [5212] = "Bleakhollow Crater", + [5213] = "Nordrassil Glade", + [5214] = "Nordanaar", + [5215] = "Barkskin Plateau", + [5216] = "Barkskin Village", + [5217] = "Circle of Power", + [5218] = "The Ruins of Telennas", + [5219] = "Zul\'Hatha", + [5220] = "Darkhollow Pass", + [5221] = "The Emerald Gateway", + [5222] = "Darkroot Cave", + [5223] = "Barkskin Hold", + [5224] = "Shrine of the Betrayer", + [5225] = "Thalassian Highlands", + [5526] = "Wretched Ghetto", + [5527] = "Ballador\'s Chapel", + [5528] = "Felstrider Retreat", + [5529] = "The Farstride", + [5530] = "Deepmurk Cave", + [5531] = "Isle of Eternal Autumn", + [5532] = "Anasterian Park", + [5533] = "Brinthilien", + [5534] = "Ruins of Nashal\'aran", + [5535] = "The Scourged Pass", + [5536] = "Blackstone Island", + [5537] = "Rustgate Ridge", + [5538] = "Black Ash Coalpits", + [5539] = "Black Ash Mine", + [5540] = "The Water Hole", + [5541] = "Gazzik\'s Workshop", + [5542] = "Venture Co. Slums", + [5543] = "Rustgate Lumber Yard", + [5544] = "Thaumarium", + [5545] = "Silver Covenant Camp", + [5546] = "The Last Runestone", + [5547] = "Forlorn Summit", + [5548] = "Broken Cliff Mine", + [5550] = "Ruins of Grim Batol", + [5552] = "The Bazaar", + [5553] = "Windrunner Pier", + [5554] = "Sunsworn Mansion", + [5555] = "Regency Spire", + [5556] = "Feralkin Cave", + [5557] = "The Rock of Desolation", + [5558] = "The Rock of Desolation", + [5559] = "Sanv Tribe Village", + [5560] = "The Seat of Desolation", + [5561] = "Balor", + [5562] = "Gullwing Wreckage", + [5563] = "Bilgerat Compound", + [5564] = "SI:7 Outpost", + [5565] = "Ruins of Breezehaven", + [5566] = "Croaking Plateau", + [5567] = "Langston Orchard", + [5568] = "Sorrowmore Lake", + [5569] = "Scurrying Thicket", + [5570] = "Stormwrought Castle", + [5571] = "Stormreaver Spire", + [5572] = "Windrock Cliffs", + [5573] = "Treacherous Crags", + [5574] = "Vander Farmstead", + [5575] = "Grahan Estate", + [5576] = "Stormbreaker Point", + [5579] = "Temple of Aka\'Sha", + [5580] = "Redwall Keep", + [5581] = "Northwind", + [5582] = "Merchant\'s Highroad", + [5583] = "Ambershire", + [5584] = "Jousting Grounds", + [5585] = "Amberwood Keep", + [5586] = "Auburn Forest", + [5587] = "Crystal Falls", + [5588] = "Crawford Winery", + [5589] = "Northwind Logging Camp", + [5590] = "Witch Coven", + [5591] = "Ruins of Birkhaven", + [5592] = "Mildenhall Horse Farm", + [5593] = "Sherwood Quarry", + [5594] = "Blackrock Breach", + [5595] = "Grimmen Lake", + [5596] = "Abbey Gardens", + [5597] = "Stillheart Port", + [5598] = "Earthen Ring", + [5599] = "Rugford\'s Mountain Rest", + [5600] = "Dragonmaw Retreat", + [5601] = "Dragonmaw Retreat", + [5602] = "Grim Reaches", + [5603] = "Dun Kithas", + [5604] = "Grim Batol Burial Grounds", + [5605] = "Davingrad\'s Camp", + [5606] = "The Grim Hollow", + [5607] = "Lake Kithas", + [5608] = "Slatebeard\'s Forge", + [5609] = "The High Pass", + [5610] = "Baggoth\'s Wall", + [5611] = "Sal\'Galaz Mines", + [5612] = "East Ridge Outpost", + [5613] = "Baggoth\'s Rampart", + [5614] = "Ruins of Stolgaz Keep", + [5615] = "Groldan\'s Excavation", + [5616] = "Zarm\'geth Stronghold", + [5617] = "Geth\'kar", + [5618] = "Zarm\'geth Point", + [5619] = "Shatterblade Post", + [5620] = "Grim Batol Memorial", + [5621] = "Brangar\'s Folly", + [5622] = "Tower of Magilou", + [5623] = "Bristlewhisker Cavern", + [5624] = "Amberpaw Hideout", + [5625] = "Northridge Point", + [5626] = "Cinderfall Pass", + [5627] = "Ursan Heights", + [5628] = "Stormwrought Ruins", + [5629] = "Hand of Mephistroth", + [5630] = "Barleycrest Farmstead", + [5631] = "Incindis\' Lair", + [5632] = "Old Shadowforge", + [5633] = "Maw of Ursoc", + [5634] = "Zuluhed\'s Terrace", + [5635] = "Slickwick Oil Rig", + [5638] = "Sunstrider Court", + [5639] = "Ruins of Grim Batol", +} + +-- Source: https://raw.githubusercontent.com/shagu/pfQuest-turtle/master/db/zones-turtle.lua +RelationshipsQuestAndItemBrowserData["zones"]["data-turtle"] = { + [460] = { 406, 7.49, 7.49, 49.55, 61.98 }, + [461] = { 406, 14.47, 18.71, 66.32, 51.57 }, + [464] = { 406, 8.88, 10.33, 51.05, 45.88 }, + [465] = { 406, 10.28, 11.83, 38.27, 68.64 }, + [467] = { 406, 12.67, 13.47, 41.67, 22.16 }, + [1076] = { 406, 15.17, 30.54, 60.88, 70.36 }, + [2040] = { 0, 0, 0, 0, 0 }, + [2041] = { 406, 5.99, 9.28, 24.05, 12.13 }, + [2537] = { 406, 9.28, 5.84, 75.3, 83.16 }, + [2538] = { 406, 4.69, 5.99, 75.1, 88.47 }, + [2539] = { 406, 6.29, 5.99, 71.21, 90.87 }, + [2540] = { 406, 6.19, 6.89, 63.47, 88.62 }, + [2541] = { 406, 5.49, 7.63, 56.04, 72.83 }, + [3881] = { 5225, 3.19, 3.14, 41.42, 74.33 }, + [4011] = { 406, 7.19, 7.49, 41.12, 40.27 }, + [5043] = { 409, 10.58, 9.58, 57.19, 22.31 }, + [5044] = { 409, 9.98, 9.13, 57.58, 12.35 }, + [5045] = { 409, 5.09, 8.23, 72.21, 28.22 }, + [5046] = { 409, 12.28, 14.82, 33.68, 58.31 }, + [5047] = { 409, 14.17, 14.37, 47.5, 75.45 }, + [5048] = { 409, 6.29, 14.22, 69.81, 61.6 }, + [5049] = { 409, 6.09, 7.63, 52.94, 52.02 }, + [5050] = { 409, 11.68, 23.8, 37.87, 33.91 }, + [5051] = { 409, 7.58, 9.13, 59.98, 43.94 }, + [5052] = { 5024, 9.28, 8.83, 55.34, 64.45 }, + [5055] = { 408, 16.27, 10.48, 29.69, 87.28 }, + [5056] = { 408, 13.27, 7.04, 45.16, 80.16 }, + [5057] = { 408, 3.39, 15.42, 27.84, 69.39 }, + [5058] = { 408, 6.39, 12.13, 45.61, 57.11 }, + [5059] = { 408, 7.98, 12.87, 64.27, 57.19 }, + [5060] = { 408, 4.19, 5.09, 58.48, 48.2 }, + [5061] = { 408, 7.78, 6.14, 45.51, 69.99 }, + [5062] = { 408, 6.89, 21.11, 70.81, 56.36 }, + [5065] = { 408, 9.58, 14.07, 69.46, 78.74 }, + [5066] = { 408, 3.79, 5.09, 59.08, 82.04 }, + [5067] = { 408, 4.29, 6.44, 49.75, 38.1 }, + [5068] = { 408, 17.27, 14.22, 52.45, 15.49 }, + [5069] = { 408, 10.78, 22.16, 24.35, 22.01 }, + [5070] = { 408, 7.29, 7.34, 27.69, 37.5 }, + [5071] = { 408, 6.99, 10.18, 37.62, 52.1 }, + [5072] = { 409, 5.29, 7.34, 60.03, 31.81 }, + [5117] = { 406, 13.27, 20.51, 28.19, 32.41 }, + [5118] = { 406, 6.49, 6.14, 36.98, 50.07 }, + [5119] = { 406, 13.27, 13.62, 75, 72.38 }, + [5120] = { 406, 6.19, 7.49, 77.84, 61.83 }, + [5123] = { 5121, 7.58, 6.59, 42.12, 79.04 }, + [5124] = { 5121, 5.49, 4.94, 51.35, 33.76 }, + [5125] = { 5121, 9.58, 17.81, 55.19, 50.37 }, + [5126] = { 5121, 3.69, 4.94, 41.57, 52.77 }, + [5127] = { 5121, 4.59, 6.59, 53.09, 81.44 }, + [5128] = { 5121, 19.26, 23.2, 53.84, 19.54 }, + [5180] = { 5179, 11.78, 23.95, 23.15, 36.23 }, + [5181] = { 5179, 6.69, 7.34, 58.63, 72.23 }, + [5182] = { 5179, 7.19, 12.43, 63.67, 83.61 }, + [5183] = { 5179, 7.29, 7.04, 54.84, 63.55 }, + [5184] = { 5179, 5.79, 5.09, 44.61, 65.57 }, + [5185] = { 5179, 11.78, 7.63, 42.91, 75.37 }, + [5186] = { 5179, 3.09, 3.44, 33.38, 76.27 }, + [5187] = { 5179, 2, 2.54, 33.53, 53.67 }, + [5188] = { 5179, 7.49, 6.14, 33.68, 47.68 }, + [5189] = { 5179, 2.5, 2.99, 47.95, 35.63 }, + [5191] = { 5179, 2.4, 3.74, 43.81, 27.77 }, + [5192] = { 5179, 2.99, 3.74, 53.39, 29.27 }, + [5195] = { 5179, 3.09, 4.34, 48.05, 56.66 }, + [5196] = { 5179, 4.19, 10.48, 20.26, 64.67 }, + [5197] = { 5179, 0, 0, 0, 0 }, + [5198] = { 5179, 2.79, 4.04, 66.17, 65.19 }, + [5199] = { 5179, 2.59, 4.34, 64.97, 57.86 }, + [5200] = { 5179, 4.79, 16.32, 39.62, 15.94 }, + [5201] = { 5179, 4.89, 5.84, 56.94, 40.04 }, + [5203] = { 5179, 5.09, 6.59, 46.76, 17.07 }, + [5206] = { 5179, 3.29, 4.64, 14.32, 33.76 }, + [5207] = { 5179, 0, 0, 0, 0 }, + [5212] = { 616, 22.16, 30.39, 55.49, 32.11 }, + [5213] = { 616, 14.77, 33.53, 73.95, 31.89 }, + [5214] = { 616, 5.49, 7.19, 84.08, 28.89 }, + [5215] = { 616, 13.37, 12.72, 50.7, 55.46 }, + [5216] = { 616, 13.27, 7.78, 63.52, 67.07 }, + [5217] = { 616, 8.28, 9.13, 33.68, 40.94 }, + [5218] = { 616, 11.18, 18.11, 21.76, 49.33 }, + [5219] = { 616, 10.08, 12.13, 9.93, 44.84 }, + [5220] = { 616, 9.08, 11.98, 43.26, 76.5 }, + [5221] = { 616, 5.59, 6.59, 20.56, 60.48 }, + [5528] = { 5225, 13.37, 20.21, 27.74, 78.82 }, + [5529] = { 5225, 16.77, 10.03, 32.24, 48.13 }, + [5531] = { 5225, 16.07, 19.01, 33.38, 28.97 }, + [5532] = { 5225, 11.08, 12.43, 52.05, 49.48 }, + [5533] = { 5225, 10.48, 12.87, 48.65, 85.48 }, + [5534] = { 5225, 13.67, 16.32, 16.92, 44.99 }, + [5537] = { 5536, 9.78, 10.33, 48.3, 65.79 }, + [5538] = { 5536, 8.48, 9.73, 35.78, 61.15 }, + [5539] = { 5536, 9.18, 9.43, 53.29, 50.22 }, + [5540] = { 5536, 5.29, 6.59, 57.83, 24.1 }, + [5541] = { 5536, 9.28, 11.23, 62.62, 82.41 }, + [5542] = { 5536, 5.19, 8.08, 54.89, 32.34 }, + [5543] = { 5536, 8.68, 10.33, 62.33, 58.46 }, + [5546] = { 5225, 7.58, 8.83, 57.19, 71.33 }, + [5548] = { 406, 5.29, 6.44, 47.55, 34.96 }, + [5558] = { 5557, 9.28, 8.83, 55.34, 64.45 }, + [5562] = { 5561, 6.29, 8.53, 27.3, 12.8 }, + [5563] = { 5561, 7.58, 13.02, 41.42, 21.63 }, + [5564] = { 5561, 6.49, 5.84, 70.11, 77.32 }, + [5565] = { 5561, 8.28, 8.08, 53.64, 49.25 }, + [5566] = { 5561, 5.69, 7.49, 46.96, 45.36 }, + [5567] = { 5561, 5.49, 5.69, 47.85, 57.93 }, + [5568] = { 5561, 8.88, 10.93, 39.07, 52.62 }, + [5569] = { 5561, 7.19, 16.92, 35.03, 37.05 }, + [5570] = { 5561, 9.68, 13.32, 56.94, 63.4 }, + [5571] = { 5561, 7.68, 7.78, 55.34, 74.55 }, + [5572] = { 5561, 6.99, 32.78, 30.14, 65.34 }, + [5573] = { 5561, 13.57, 7.49, 52.69, 86.68 }, + [5574] = { 5561, 5.09, 8.53, 39.87, 62.95 }, + [5575] = { 5561, 4.39, 7.78, 35.63, 66.17 }, + [5576] = { 5561, 5.69, 9.88, 71.11, 47.6 }, + [5582] = { 5581, 9.98, 6.44, 47.01, 81.96 }, + [5583] = { 5581, 7.39, 7.63, 46.71, 58.61 }, + [5585] = { 5581, 4.89, 5.54, 32.88, 60.55 }, + [5587] = { 5581, 9.78, 11.08, 76.35, 86.38 }, + [5588] = { 5581, 4.39, 6.29, 56.99, 58.83 }, + [5589] = { 5581, 5.09, 7.93, 38.77, 43.34 }, + [5590] = { 5581, 5.89, 6.59, 32.88, 26.05 }, + [5591] = { 5581, 5.29, 9.13, 74, 31.06 }, + [5593] = { 5581, 13.47, 30.39, 84.18, 19.69 }, + [5594] = { 5581, 5.49, 21.26, 82.98, 47.9 }, + [5595] = { 5581, 5.69, 13.62, 67.91, 69.24 }, + [5596] = { 5581, 8.28, 9.88, 62.23, 23.8 }, + [5597] = { 5581, 6.39, 8.08, 21.26, 44.16 }, + [5598] = { 406, 5.79, 8.68, 49.6, 71.56 }, + [5603] = { 5602, 5.89, 5.84, 53.74, 56.81 }, + [5606] = { 5602, 19.26, 18.26, 55.14, 83.08 }, + [5607] = { 5602, 5.99, 7.63, 54.19, 48.13 }, + [5608] = { 5602, 3.99, 5.54, 56.19, 70.13 }, + [5609] = { 5602, 2.59, 9.58, 45.21, 56.29 }, + [5611] = { 5602, 6.49, 10.03, 60.03, 66.24 }, + [5612] = { 5602, 3.99, 5.09, 46.91, 35.33 }, + [5613] = { 5602, 5.39, 4.19, 44.51, 42.22 }, + [5614] = { 5602, 6.09, 5.24, 42.76, 17.14 }, + [5615] = { 5602, 4.99, 7.49, 61.78, 44.16 }, + [5616] = { 5602, 5.89, 7.49, 54.64, 15.42 }, + [5617] = { 5602, 3.29, 4.49, 50.05, 21.26 }, + [5618] = { 5602, 2.99, 4.34, 50.4, 10.4 }, + [5619] = { 5602, 5.59, 5.69, 59.48, 32.04 }, + [5621] = { 5602, 3.09, 5.99, 60.73, 14.97 }, + [5622] = { 5581, 4.89, 6.29, 30.39, 42.96 }, + [5623] = { 5581, 3.99, 4.79, 66.67, 45.36 }, + [5625] = { 5581, 3.89, 4.79, 54.24, 32.04 }, + [5626] = { 5581, 9.58, 15.42, 83.73, 70.43 }, + [5630] = { 5602, 3.09, 5.54, 57.44, 39.45 }, +} +